From 96ff415bef085dfbf440438a33b0c220edb71d33 Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Wed, 28 Sep 2022 18:34:36 +0530 Subject: [PATCH 1/5] Use scancode --get-license-data option Modifies makefile to use scancode-toolkit option a=instead of app.py and removes code that has been moved to scancode-toolkit. Signed-off-by: Ayan Sinha Mahapatra --- Makefile | 4 +- app.py | 124 ----------- .../jquery.dataTables-1.10.22.min.css | 1 - .../jquery.dataTables-1.10.22.min.js | 184 ---------------- static/images/sort_asc.png | Bin 160 -> 0 bytes static/images/sort_asc_disabled.png | Bin 148 -> 0 bytes static/images/sort_both.png | Bin 201 -> 0 bytes static/images/sort_desc.png | Bin 158 -> 0 bytes static/images/sort_desc_disabled.png | Bin 146 -> 0 bytes static/jquery-3.5.1.slim.min.js | 2 - static/jquery-3.5.1.slim.min.js.ABOUT | 16 -- static/jquery.dataTables-1.10.22.ABOUT | 15 -- static/jquery.mark-8.11.1.min.js | 7 - static/jquery.mark-8.11.1.min.js.ABOUT | 12 -- static/mit.LICENSE | 5 - static/spectre-0.5.9.min.css | 1 - static/spectre-0.5.9.min.css.ABOUT | 13 -- templates/base.html | 31 --- templates/footer.html | 12 -- templates/header.html | 17 -- templates/help.html | 199 ------------------ templates/license_details.html | 62 ------ templates/license_list.html | 120 ----------- 23 files changed, 1 insertion(+), 824 deletions(-) delete mode 100644 app.py delete mode 100644 static/datatables/jquery.dataTables-1.10.22.min.css delete mode 100644 static/datatables/jquery.dataTables-1.10.22.min.js delete mode 100644 static/images/sort_asc.png delete mode 100644 static/images/sort_asc_disabled.png delete mode 100644 static/images/sort_both.png delete mode 100644 static/images/sort_desc.png delete mode 100644 static/images/sort_desc_disabled.png delete mode 100644 static/jquery-3.5.1.slim.min.js delete mode 100644 static/jquery-3.5.1.slim.min.js.ABOUT delete mode 100644 static/jquery.dataTables-1.10.22.ABOUT delete mode 100644 static/jquery.mark-8.11.1.min.js delete mode 100644 static/jquery.mark-8.11.1.min.js.ABOUT delete mode 100644 static/mit.LICENSE delete mode 100644 static/spectre-0.5.9.min.css delete mode 100644 static/spectre-0.5.9.min.css.ABOUT delete mode 100644 templates/base.html delete mode 100644 templates/footer.html delete mode 100644 templates/header.html delete mode 100644 templates/help.html delete mode 100644 templates/license_details.html delete mode 100644 templates/license_list.html diff --git a/Makefile b/Makefile index 9d1b40c9a4..b6ccd43c32 100644 --- a/Makefile +++ b/Makefile @@ -60,9 +60,7 @@ valid: isort black html: @echo "-> Generate the HTML content" - @bin/python app.py - @echo "-> Copy the static assets" - @cp -R static/ docs/static/ + @${ACTIVATE} scancode --get-license-data docs/ @echo "Available at docs/index.html" build: conf html diff --git a/app.py b/app.py deleted file mode 100644 index 4a1f25b533..0000000000 --- a/app.py +++ /dev/null @@ -1,124 +0,0 @@ -# SPDX-License-Identifier: CC-BY-4.0 AND Apache-2.0 -# -# https://github.com/nexB/scancode-licensedb -# Copyright 2020 nexB Inc. and others. -# ScanCode is a trademark of nexB Inc. -# -# ScanCode LicenseDB data is licensed under the Creative Commons Attribution -# License 4.0 (CC-BY-4.0). -# Some licenses, such as the GNU GENERAL PUBLIC LICENSE, are subject to other licenses. -# See the corresponding license text for the specific license conditions. -# -# ScanCode LicenseDB software is licensed under the Apache License version 2.0. -# You may not use this software except in compliance with the License. -# You may obtain a copy of the License at: http://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. -# -# ScanCode LicenseDB is generated with ScanCode Toolkit. The database and its contents -# are provided on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, -# either express or implied. -# No content from ScanCode LicenseDB should be considered or used as legal advice. -# Consult an attorney for any legal advice. -# -# Visit https://github.com/nexB/scancode-licensedb for support. -# -# ScanCode Toolkit is a free Software Composition Analysis tool from nexB Inc. and -# others. -# Visit https://github.com/nexB/scancode-toolkit for support and download. - -import json -import pathlib -from datetime import datetime - -import saneyaml -from jinja2 import Environment, PackageLoader -from licensedcode.models import load_licenses -from scancode_config import __version__ as scancode_version - -licenses = dict(sorted(load_licenses(with_deprecated=True).items())) - -# GitHub Pages support only /(root) or docs/ for the source -BUILD_LOCATION = "docs" - -env = Environment( - loader=PackageLoader("app", "templates"), - autoescape=True, -) - - -def write_file(path, filename, content): - path.joinpath(filename).open("w").write(content) - - -def now(): - return datetime.now().strftime("%b %d, %Y") - - -base_context = { - "scancode_version": scancode_version, - "now": now(), -} - - -def generate_indexes(output_path): - license_list_template = env.get_template("license_list.html") - index_html = license_list_template.render( - **base_context, - licenses=licenses, - ) - write_file(output_path, "index.html", index_html) - - index = [ - { - "license_key": key, - "spdx_license_key": license.spdx_license_key, - "other_spdx_license_keys": license.other_spdx_license_keys, - "is_exception": license.is_exception, - "is_deprecated": license.is_deprecated, - "category": license.category, - "json": f"{key}.json", - "yml": f"{key}.yml", - "html": f"{key}.html", - "text": f"{key}.LICENSE", - } - for key, license in licenses.items() - ] - write_file(output_path, "index.json", json.dumps(index)) - write_file(output_path, "index.yml", saneyaml.dump(index)) - - -def generate_details(output_path): - license_details_template = env.get_template("license_details.html") - for license in licenses.values(): - license_data = license.to_dict() - html = license_details_template.render( - **base_context, - license=license, - license_data=license_data, - ) - write_file(output_path, f"{license.key}.html", html) - write_file(output_path, f"{license.key}.yml", saneyaml.dump(license_data)) - write_file(output_path, f"{license.key}.json", json.dumps(license_data)) - write_file(output_path, f"{license.key}.LICENSE", license.text) - - -def generate_help(output_path): - template = env.get_template("help.html") - html = template.render(**base_context) - write_file(output_path, "help.html", html) - - -def generate(): - root_path = pathlib.Path(BUILD_LOCATION) - root_path.mkdir(parents=False, exist_ok=True) - - generate_indexes(root_path) - generate_details(root_path) - generate_help(root_path) - - -if __name__ == "__main__": - generate() diff --git a/static/datatables/jquery.dataTables-1.10.22.min.css b/static/datatables/jquery.dataTables-1.10.22.min.css deleted file mode 100644 index 8a3f2767c5..0000000000 --- a/static/datatables/jquery.dataTables-1.10.22.min.css +++ /dev/null @@ -1 +0,0 @@ -table.dataTable{width:100%;margin:0 auto;clear:both;border-collapse:separate;border-spacing:0}table.dataTable thead th,table.dataTable tfoot th{font-weight:bold}table.dataTable thead th,table.dataTable thead td{padding:10px 18px;border-bottom:1px solid #111}table.dataTable thead th:active,table.dataTable thead td:active{outline:none}table.dataTable tfoot th,table.dataTable tfoot td{padding:10px 18px 6px 18px;border-top:1px solid #111}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;*cursor:hand;background-repeat:no-repeat;background-position:center right}table.dataTable thead .sorting{background-image:url("../images/sort_both.png")}table.dataTable thead .sorting_asc{background-image:url("../images/sort_asc.png")}table.dataTable thead .sorting_desc{background-image:url("../images/sort_desc.png")}table.dataTable thead .sorting_asc_disabled{background-image:url("../images/sort_asc_disabled.png")}table.dataTable thead .sorting_desc_disabled{background-image:url("../images/sort_desc_disabled.png")}table.dataTable tbody tr{background-color:#ffffff}table.dataTable tbody tr.selected{background-color:#B0BED9}table.dataTable tbody th,table.dataTable tbody td{padding:8px 10px}table.dataTable.row-border tbody th,table.dataTable.row-border tbody td,table.dataTable.display tbody th,table.dataTable.display tbody td{border-top:1px solid #ddd}table.dataTable.row-border tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.display tbody tr:first-child th,table.dataTable.display tbody tr:first-child td{border-top:none}table.dataTable.cell-border tbody th,table.dataTable.cell-border tbody td{border-top:1px solid #ddd;border-right:1px solid #ddd}table.dataTable.cell-border tbody tr th:first-child,table.dataTable.cell-border tbody tr td:first-child{border-left:1px solid #ddd}table.dataTable.cell-border tbody tr:first-child th,table.dataTable.cell-border tbody tr:first-child td{border-top:none}table.dataTable.stripe tbody tr.odd,table.dataTable.display tbody tr.odd{background-color:#f9f9f9}table.dataTable.stripe tbody tr.odd.selected,table.dataTable.display tbody tr.odd.selected{background-color:#acbad4}table.dataTable.hover tbody tr:hover,table.dataTable.display tbody tr:hover{background-color:#f6f6f6}table.dataTable.hover tbody tr:hover.selected,table.dataTable.display tbody tr:hover.selected{background-color:#aab7d1}table.dataTable.order-column tbody tr>.sorting_1,table.dataTable.order-column tbody tr>.sorting_2,table.dataTable.order-column tbody tr>.sorting_3,table.dataTable.display tbody tr>.sorting_1,table.dataTable.display tbody tr>.sorting_2,table.dataTable.display tbody tr>.sorting_3{background-color:#fafafa}table.dataTable.order-column tbody tr.selected>.sorting_1,table.dataTable.order-column tbody tr.selected>.sorting_2,table.dataTable.order-column tbody tr.selected>.sorting_3,table.dataTable.display tbody tr.selected>.sorting_1,table.dataTable.display tbody tr.selected>.sorting_2,table.dataTable.display tbody tr.selected>.sorting_3{background-color:#acbad5}table.dataTable.display tbody tr.odd>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd>.sorting_1{background-color:#f1f1f1}table.dataTable.display tbody tr.odd>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd>.sorting_2{background-color:#f3f3f3}table.dataTable.display tbody tr.odd>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd>.sorting_3{background-color:whitesmoke}table.dataTable.display tbody tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1{background-color:#a6b4cd}table.dataTable.display tbody tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2{background-color:#a8b5cf}table.dataTable.display tbody tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3{background-color:#a9b7d1}table.dataTable.display tbody tr.even>.sorting_1,table.dataTable.order-column.stripe tbody tr.even>.sorting_1{background-color:#fafafa}table.dataTable.display tbody tr.even>.sorting_2,table.dataTable.order-column.stripe tbody tr.even>.sorting_2{background-color:#fcfcfc}table.dataTable.display tbody tr.even>.sorting_3,table.dataTable.order-column.stripe tbody tr.even>.sorting_3{background-color:#fefefe}table.dataTable.display tbody tr.even.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1{background-color:#acbad5}table.dataTable.display tbody tr.even.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2{background-color:#aebcd6}table.dataTable.display tbody tr.even.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3{background-color:#afbdd8}table.dataTable.display tbody tr:hover>.sorting_1,table.dataTable.order-column.hover tbody tr:hover>.sorting_1{background-color:#eaeaea}table.dataTable.display tbody tr:hover>.sorting_2,table.dataTable.order-column.hover tbody tr:hover>.sorting_2{background-color:#ececec}table.dataTable.display tbody tr:hover>.sorting_3,table.dataTable.order-column.hover tbody tr:hover>.sorting_3{background-color:#efefef}table.dataTable.display tbody tr:hover.selected>.sorting_1,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1{background-color:#a2aec7}table.dataTable.display tbody tr:hover.selected>.sorting_2,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2{background-color:#a3b0c9}table.dataTable.display tbody tr:hover.selected>.sorting_3,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3{background-color:#a5b2cb}table.dataTable.no-footer{border-bottom:1px solid #111}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable.compact thead th,table.dataTable.compact thead td{padding:4px 17px}table.dataTable.compact tfoot th,table.dataTable.compact tfoot td{padding:4px}table.dataTable.compact tbody th,table.dataTable.compact tbody td{padding:4px}table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}table.dataTable,table.dataTable th,table.dataTable td{box-sizing:content-box}.dataTables_wrapper{position:relative;clear:both;*zoom:1;zoom:1}.dataTables_wrapper .dataTables_length{float:left}.dataTables_wrapper .dataTables_length select{border:1px solid #aaa;border-radius:3px;padding:5px;background-color:transparent;padding:4px}.dataTables_wrapper .dataTables_filter{float:right;text-align:right}.dataTables_wrapper .dataTables_filter input{border:1px solid #aaa;border-radius:3px;padding:5px;background-color:transparent;margin-left:3px}.dataTables_wrapper .dataTables_info{clear:both;float:left;padding-top:0.755em}.dataTables_wrapper .dataTables_paginate{float:right;text-align:right;padding-top:0.25em}.dataTables_wrapper .dataTables_paginate .paginate_button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:0.5em 1em;margin-left:2px;text-align:center;text-decoration:none !important;cursor:pointer;*cursor:hand;color:#333 !important;border:1px solid transparent;border-radius:2px}.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{color:#333 !important;border:1px solid #979797;background-color:white;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #dcdcdc));background:-webkit-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-moz-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-ms-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-o-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:linear-gradient(to bottom, #fff 0%, #dcdcdc 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{cursor:default;color:#666 !important;border:1px solid transparent;background:transparent;box-shadow:none}.dataTables_wrapper .dataTables_paginate .paginate_button:hover{color:white !important;border:1px solid #111;background-color:#585858;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));background:-webkit-linear-gradient(top, #585858 0%, #111 100%);background:-moz-linear-gradient(top, #585858 0%, #111 100%);background:-ms-linear-gradient(top, #585858 0%, #111 100%);background:-o-linear-gradient(top, #585858 0%, #111 100%);background:linear-gradient(to bottom, #585858 0%, #111 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button:active{outline:none;background-color:#2b2b2b;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));background:-webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);box-shadow:inset 0 0 3px #111}.dataTables_wrapper .dataTables_paginate .ellipsis{padding:0 1em}.dataTables_wrapper .dataTables_processing{position:absolute;top:50%;left:50%;width:100%;height:40px;margin-left:-50%;margin-top:-25px;padding-top:20px;text-align:center;font-size:1.2em;background-color:white;background:-webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(25%, rgba(255,255,255,0.9)), color-stop(75%, rgba(255,255,255,0.9)), color-stop(100%, rgba(255,255,255,0)));background:-webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%)}.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter,.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_processing,.dataTables_wrapper .dataTables_paginate{color:#333}.dataTables_wrapper .dataTables_scroll{clear:both}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody{*margin-top:-1px;-webkit-overflow-scrolling:touch}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td{vertical-align:middle}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing{height:0;overflow:hidden;margin:0 !important;padding:0 !important}.dataTables_wrapper.no-footer .dataTables_scrollBody{border-bottom:1px solid #111}.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,.dataTables_wrapper.no-footer div.dataTables_scrollBody>table{border-bottom:none}.dataTables_wrapper:after{visibility:hidden;display:block;content:"";clear:both;height:0}@media screen and (max-width: 767px){.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_paginate{float:none;text-align:center}.dataTables_wrapper .dataTables_paginate{margin-top:0.5em}}@media screen and (max-width: 640px){.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter{float:none;text-align:center}.dataTables_wrapper .dataTables_filter{margin-top:0.5em}} diff --git a/static/datatables/jquery.dataTables-1.10.22.min.js b/static/datatables/jquery.dataTables-1.10.22.min.js deleted file mode 100644 index 89f7ba0b68..0000000000 --- a/static/datatables/jquery.dataTables-1.10.22.min.js +++ /dev/null @@ -1,184 +0,0 @@ -/*! - Copyright 2008-2020 SpryMedia Ltd. - - This source file is free software, available under the following license: - MIT license - http://datatables.net/license - - 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. - - For details please refer to: http://www.datatables.net - DataTables 1.10.22 - ©2008-2020 SpryMedia Ltd - datatables.net/license -*/ -var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(k,y,z){k instanceof String&&(k=String(k));for(var q=k.length,G=0;G").css({position:"fixed",top:0,left:-1*k(y).scrollLeft(),height:1, -width:1,overflow:"hidden"}).append(k("
").css({position:"absolute",top:1,left:1,width:100,overflow:"scroll"}).append(k("
").css({width:"100%",height:10}))).appendTo("body"),d=c.children(),f=d.children();b.barWidth=d[0].offsetWidth-d[0].clientWidth;b.bScrollOversize=100===f[0].offsetWidth&&100!==d[0].clientWidth;b.bScrollbarLeft=1!==Math.round(f.offset().left);b.bBounding=c[0].getBoundingClientRect().width?!0:!1;c.remove()}k.extend(a.oBrowser,u.__browser);a.oScroll.iBarWidth=u.__browser.barWidth} -function Bb(a,b,c,d,f,e){var g=!1;if(c!==q){var h=c;g=!0}for(;d!==f;)a.hasOwnProperty(d)&&(h=g?b(h,a[d],d,a):a[d],g=!0,d+=e);return h}function Wa(a,b){var c=u.defaults.column,d=a.aoColumns.length;c=k.extend({},u.models.oColumn,c,{nTh:b?b:z.createElement("th"),sTitle:c.sTitle?c.sTitle:b?b.innerHTML:"",aDataSort:c.aDataSort?c.aDataSort:[d],mData:c.mData?c.mData:d,idx:d});a.aoColumns.push(c);c=a.aoPreSearchCols;c[d]=k.extend({},u.models.oSearch,c[d]);Da(a,d,k(b).data())}function Da(a,b,c){b=a.aoColumns[b]; -var d=a.oClasses,f=k(b.nTh);if(!b.sWidthOrig){b.sWidthOrig=f.attr("width")||null;var e=(f.attr("style")||"").match(/width:\s*(\d+[pxem%]+)/);e&&(b.sWidthOrig=e[1])}c!==q&&null!==c&&(zb(c),O(u.defaults.column,c,!0),c.mDataProp===q||c.mData||(c.mData=c.mDataProp),c.sType&&(b._sManualType=c.sType),c.className&&!c.sClass&&(c.sClass=c.className),c.sClass&&f.addClass(c.sClass),k.extend(b,c),V(b,c,"sWidth","sWidthOrig"),c.iDataSort!==q&&(b.aDataSort=[c.iDataSort]),V(b,c,"aDataSort"));var g=b.mData,h=ia(g), -l=b.mRender?ia(b.mRender):null;c=function(n){return"string"===typeof n&&-1!==n.indexOf("@")};b._bAttrSrc=k.isPlainObject(g)&&(c(g.sort)||c(g.type)||c(g.filter));b._setter=null;b.fnGetData=function(n,m,p){var t=h(n,m,q,p);return l&&m?l(t,m,n,p):t};b.fnSetData=function(n,m,p){return da(g)(n,m,p)};"number"!==typeof g&&(a._rowReadObject=!0);a.oFeatures.bSort||(b.bSortable=!1,f.addClass(d.sSortableNone));a=-1!==k.inArray("asc",b.asSorting);c=-1!==k.inArray("desc",b.asSorting);b.bSortable&&(a||c)?a&&!c? -(b.sSortingClass=d.sSortableAsc,b.sSortingClassJUI=d.sSortJUIAscAllowed):!a&&c?(b.sSortingClass=d.sSortableDesc,b.sSortingClassJUI=d.sSortJUIDescAllowed):(b.sSortingClass=d.sSortable,b.sSortingClassJUI=d.sSortJUI):(b.sSortingClass=d.sSortableNone,b.sSortingClassJUI="")}function ra(a){if(!1!==a.oFeatures.bAutoWidth){var b=a.aoColumns;Xa(a);for(var c=0,d=b.length;cn[m])d(h.length+n[m],l);else if("string"===typeof n[m]){var p=0;for(g=h.length;pb&&a[f]--; -1!=d&&c===q&&a.splice(d,1)}function va(a,b,c,d){var f=a.aoData[b],e,g=function(l,n){for(;l.childNodes.length;)l.removeChild(l.firstChild);l.innerHTML=S(a,b,n,"display")};if("dom"!==c&&(c&&"auto"!==c||"dom"!==f.src)){var h=f.anCells;if(h)if(d!==q)g(h[d],d);else for(c=0,e=h.length;c").appendTo(d));var l=0;for(b=h.length;l=a.fnRecordsDisplay()?0:g,a.iInitDisplayStart=-1);g=a._iDisplayStart;var n=a.fnDisplayEnd();if(a.bDeferLoading)a.bDeferLoading=!1,a.iDraw++,U(a,!1);else if(!h)a.iDraw++;else if(!a.bDestroying&&!Fb(a))return;if(0!==l.length)for(e= -h?a.aoData.length:n,h=h?0:g;h",{"class":f?d[0]:""}).append(k("",{valign:"top",colSpan:na(a),"class":a.oClasses.sRowEmpty}).html(c))[0]; -I(a,"aoHeaderCallback","header",[k(a.nTHead).children("tr")[0],bb(a),g,n,l]);I(a,"aoFooterCallback","footer",[k(a.nTFoot).children("tr")[0],bb(a),g,n,l]);d=k(a.nTBody);d.children().detach();d.append(k(b));I(a,"aoDrawCallback","draw",[a]);a.bSorted=!1;a.bFiltered=!1;a.bDrawing=!1}}function ja(a,b){var c=a.oFeatures,d=c.bFilter;c.bSort&&Gb(a);d?ya(a,a.oPreviousSearch):a.aiDisplay=a.aiDisplayMaster.slice();!0!==b&&(a._iDisplayStart=0);a._drawHold=b;fa(a);a._drawHold=!1}function Hb(a){var b=a.oClasses, -c=k(a.nTable);c=k("
").insertBefore(c);var d=a.oFeatures,f=k("
",{id:a.sTableId+"_wrapper","class":b.sWrapper+(a.nTFoot?"":" "+b.sNoFooter)});a.nHolding=c[0];a.nTableWrapper=f[0];a.nTableReinsertBefore=a.nTable.nextSibling;for(var e=a.sDom.split(""),g,h,l,n,m,p,t=0;t")[0];n=e[t+1];if("'"==n||'"'==n){m="";for(p=2;e[t+p]!=n;)m+=e[t+p],p++;"H"==m?m=b.sJUIHeader:"F"==m&&(m=b.sJUIFooter);-1!=m.indexOf(".")?(n=m.split("."),l.id=n[0].substr(1, -n[0].length-1),l.className=n[1]):"#"==m.charAt(0)?l.id=m.substr(1,m.length-1):l.className=m;t+=p}f.append(l);f=k(l)}else if(">"==h)f=f.parent();else if("l"==h&&d.bPaginate&&d.bLengthChange)g=Ib(a);else if("f"==h&&d.bFilter)g=Jb(a);else if("r"==h&&d.bProcessing)g=Kb(a);else if("t"==h)g=Lb(a);else if("i"==h&&d.bInfo)g=Mb(a);else if("p"==h&&d.bPaginate)g=Nb(a);else if(0!==u.ext.feature.length)for(l=u.ext.feature,p=0,n=l.length;p',h=d.sSearch;h=h.match(/_INPUT_/)?h.replace("_INPUT_",g):h+g;b=k("
",{id:e.f?null:c+"_filter","class":b.sFilter}).append(k("
").addClass(b.sLength);a.aanFeatures.l||(l[0].id=c+"_length");l.children().append(a.oLanguage.sLengthMenu.replace("_MENU_",f[0].outerHTML));k("select",l).val(a._iDisplayLength).on("change.DT",function(n){ib(a,k(this).val());fa(a)});k(a.nTable).on("length.dt.DT",function(n,m,p){a===m&&k("select",l).val(p)});return l[0]}function Nb(a){var b=a.sPaginationType,c=u.ext.pager[b],d="function"===typeof c,f=function(g){fa(g)};b=k("
").addClass(a.oClasses.sPaging+ -b)[0];var e=a.aanFeatures;d||c.fnInit(a,b,f);e.p||(b.id=a.sTableId+"_paginate",a.aoDrawCallback.push({fn:function(g){if(d){var h=g._iDisplayStart,l=g._iDisplayLength,n=g.fnRecordsDisplay(),m=-1===l;h=m?0:Math.ceil(h/l);l=m?1:Math.ceil(n/l);n=c(h,l);var p;m=0;for(p=e.p.length;me&&(d=0)):"first"==b?d=0:"previous"==b?(d=0<=f?d-f:0,0>d&&(d=0)):"next"==b?d+f",{id:a.aanFeatures.r?null:a.sTableId+"_processing","class":a.oClasses.sProcessing}).html(a.oLanguage.sProcessing).insertBefore(a.nTable)[0]}function U(a,b){a.oFeatures.bProcessing&&k(a.aanFeatures.r).css("display",b?"block": -"none");I(a,null,"processing",[a,b])}function Lb(a){var b=k(a.nTable);b.attr("role","grid");var c=a.oScroll;if(""===c.sX&&""===c.sY)return a.nTable;var d=c.sX,f=c.sY,e=a.oClasses,g=b.children("caption"),h=g.length?g[0]._captionSide:null,l=k(b[0].cloneNode(!1)),n=k(b[0].cloneNode(!1)),m=b.children("tfoot");m.length||(m=null);l=k("
",{"class":e.sScrollWrapper}).append(k("
",{"class":e.sScrollHead}).css({overflow:"hidden",position:"relative",border:0,width:d?d?K(d):null:"100%"}).append(k("
", -{"class":e.sScrollHeadInner}).css({"box-sizing":"content-box",width:c.sXInner||"100%"}).append(l.removeAttr("id").css("margin-left",0).append("top"===h?g:null).append(b.children("thead"))))).append(k("
",{"class":e.sScrollBody}).css({position:"relative",overflow:"auto",width:d?K(d):null}).append(b));m&&l.append(k("
",{"class":e.sScrollFoot}).css({overflow:"hidden",border:0,width:d?d?K(d):null:"100%"}).append(k("
",{"class":e.sScrollFootInner}).append(n.removeAttr("id").css("margin-left", -0).append("bottom"===h?g:null).append(b.children("tfoot")))));b=l.children();var p=b[0];e=b[1];var t=m?b[2]:null;if(d)k(e).on("scroll.DT",function(v){v=this.scrollLeft;p.scrollLeft=v;m&&(t.scrollLeft=v)});k(e).css("max-height",f);c.bCollapse||k(e).css("height",f);a.nScrollHead=p;a.nScrollBody=e;a.nScrollFoot=t;a.aoDrawCallback.push({fn:Ea,sName:"scrolling"});return l[0]}function Ea(a){var b=a.oScroll,c=b.sX,d=b.sXInner,f=b.sY;b=b.iBarWidth;var e=k(a.nScrollHead),g=e[0].style,h=e.children("div"),l= -h[0].style,n=h.children("table");h=a.nScrollBody;var m=k(h),p=h.style,t=k(a.nScrollFoot).children("div"),v=t.children("table"),x=k(a.nTHead),r=k(a.nTable),A=r[0],E=A.style,H=a.nTFoot?k(a.nTFoot):null,W=a.oBrowser,M=W.bScrollOversize,C=T(a.aoColumns,"nTh"),B=[],ba=[],X=[],lb=[],Aa,Yb=function(F){F=F.style;F.paddingTop="0";F.paddingBottom="0";F.borderTopWidth="0";F.borderBottomWidth="0";F.height=0};var ha=h.scrollHeight>h.clientHeight;if(a.scrollBarVis!==ha&&a.scrollBarVis!==q)a.scrollBarVis=ha,ra(a); -else{a.scrollBarVis=ha;r.children("thead, tfoot").remove();if(H){var ka=H.clone().prependTo(r);var la=H.find("tr");ka=ka.find("tr")}var mb=x.clone().prependTo(r);x=x.find("tr");ha=mb.find("tr");mb.find("th, td").removeAttr("tabindex");c||(p.width="100%",e[0].style.width="100%");k.each(Ka(a,mb),function(F,Y){Aa=sa(a,F);Y.style.width=a.aoColumns[Aa].sWidth});H&&Z(function(F){F.style.width=""},ka);e=r.outerWidth();""===c?(E.width="100%",M&&(r.find("tbody").height()>h.offsetHeight||"scroll"==m.css("overflow-y"))&& -(E.width=K(r.outerWidth()-b)),e=r.outerWidth()):""!==d&&(E.width=K(d),e=r.outerWidth());Z(Yb,ha);Z(function(F){X.push(F.innerHTML);B.push(K(k(F).css("width")))},ha);Z(function(F,Y){-1!==k.inArray(F,C)&&(F.style.width=B[Y])},x);k(ha).height(0);H&&(Z(Yb,ka),Z(function(F){lb.push(F.innerHTML);ba.push(K(k(F).css("width")))},ka),Z(function(F,Y){F.style.width=ba[Y]},la),k(ka).height(0));Z(function(F,Y){F.innerHTML='
'+X[Y]+"
";F.childNodes[0].style.height="0";F.childNodes[0].style.overflow= -"hidden";F.style.width=B[Y]},ha);H&&Z(function(F,Y){F.innerHTML='
'+lb[Y]+"
";F.childNodes[0].style.height="0";F.childNodes[0].style.overflow="hidden";F.style.width=ba[Y]},ka);r.outerWidth()h.offsetHeight||"scroll"==m.css("overflow-y")?e+b:e,M&&(h.scrollHeight>h.offsetHeight||"scroll"==m.css("overflow-y"))&&(E.width=K(la-b)),""!==c&&""===d||aa(a,1,"Possible column misalignment",6)):la="100%";p.width=K(la);g.width=K(la);H&&(a.nScrollFoot.style.width= -K(la));!f&&M&&(p.height=K(A.offsetHeight+b));c=r.outerWidth();n[0].style.width=K(c);l.width=K(c);d=r.height()>h.clientHeight||"scroll"==m.css("overflow-y");f="padding"+(W.bScrollbarLeft?"Left":"Right");l[f]=d?b+"px":"0px";H&&(v[0].style.width=K(c),t[0].style.width=K(c),t[0].style[f]=d?b+"px":"0px");r.children("colgroup").insertBefore(r.children("thead"));m.trigger("scroll");!a.bSorted&&!a.bFiltered||a._drawHold||(h.scrollTop=0)}}function Z(a,b,c){for(var d=0,f=0,e=b.length,g,h;f").appendTo(h.find("tbody"));h.find("thead, tfoot").remove();h.append(k(a.nTHead).clone()).append(k(a.nTFoot).clone());h.find("tfoot th, tfoot td").css("width","");n=Ka(a,h.find("thead")[0]);for(v=0;v").css({width:r.sWidthOrig, -margin:0,padding:0,border:0,height:1}));if(a.aoData.length)for(v=0;v").css(e||f?{position:"absolute",top:0,left:0,height:1,right:0,overflow:"hidden"}:{}).append(h).appendTo(p);e&&g?h.width(g):e?(h.css("width","auto"),h.removeAttr("width"),h.width()").css("width",K(a)).appendTo(b||z.body);b=a[0].offsetWidth;a.remove();return b}function $b(a,b){var c=ac(a,b);if(0>c)return null;var d=a.aoData[c];return d.nTr?d.anCells[b]: -k("").html(S(a,c,b,"display"))[0]}function ac(a,b){for(var c,d=-1,f=-1,e=0,g=a.aoData.length;ed&&(d=c.length,f=e);return f}function K(a){return null===a?"0px":"number"==typeof a?0>a?"0px":a+"px":a.match(/\d$/)?a+"px":a}function pa(a){var b=[],c=a.aoColumns;var d=a.aaSortingFixed;var f=k.isPlainObject(d);var e=[];var g=function(m){m.length&&!Array.isArray(m[0])?e.push(m):k.merge(e,m)};Array.isArray(d)&&g(d); -f&&d.pre&&g(d.pre);g(a.aaSorting);f&&d.post&&g(d.post);for(a=0;aH?1:0;if(0!==E)return"asc"===A.dir?E:-E}E=c[m];H=c[p];return EH?1:0}):g.sort(function(m,p){var t,v=h.length,x=f[m]._aSortData,r=f[p]._aSortData;for(t=0;tH?1:0})}a.bSorted=!0}function cc(a){var b=a.aoColumns,c=pa(a);a=a.oLanguage.oAria;for(var d=0,f=b.length;d/g,"");var l=e.nTh;l.removeAttribute("aria-sort");e.bSortable&&(0f?f+1:3))}f=0;for(e=d.length;ff?f+1:3))}a.aLastSort= -d}function bc(a,b){var c=a.aoColumns[b],d=u.ext.order[c.sSortDataType],f;d&&(f=d.call(a.oInstance,a,b,ta(a,b)));for(var e,g=u.ext.type.order[c.sType+"-pre"],h=0,l=a.aoData.length;h=e.length?[0,m[1]]:m)}));h.search!==q&&k.extend(a.oPreviousSearch,Vb(h.search));if(h.columns)for(d=0,f=h.columns.length;d=c&&(b=c-d);b-=b%d;if(-1===d||0>b)b=0;a._iDisplayStart=b}function eb(a,b){a=a.renderer;var c=u.ext.renderer[b];return k.isPlainObject(a)&&a[b]?c[a[b]]||c._:"string"===typeof a?c[a]|| -c._:c._}function P(a){return a.oFeatures.bServerSide?"ssp":a.ajax||a.sAjaxSource?"ajax":"dom"}function Ba(a,b){var c=ec.numbers_length,d=Math.floor(c/2);b<=c?a=qa(0,b):a<=d?(a=qa(0,c-2),a.push("ellipsis"),a.push(b-1)):(a>=b-1-d?a=qa(b-(c-2),b):(a=qa(a-d+2,a+d-1),a.push("ellipsis"),a.push(b-1)),a.splice(0,0,"ellipsis"),a.splice(0,0,0));a.DT_el="span";return a}function Va(a){k.each({num:function(b){return Sa(b,a)},"num-fmt":function(b){return Sa(b,a,qb)},"html-num":function(b){return Sa(b,a,Ta)},"html-num-fmt":function(b){return Sa(b, -a,Ta,qb)}},function(b,c){L.type.order[b+a+"-pre"]=c;b.match(/^html\-/)&&(L.type.search[b+a]=L.type.search.html)})}function fc(a){return function(){var b=[Ra(this[u.ext.iApiIndex])].concat(Array.prototype.slice.call(arguments));return u.ext.internal[a].apply(this,b)}}var u=function(a){this.$=function(e,g){return this.api(!0).$(e,g)};this._=function(e,g){return this.api(!0).rows(e,g).data()};this.api=function(e){return e?new D(Ra(this[L.iApiIndex])):new D(this)};this.fnAddData=function(e,g){var h=this.api(!0); -e=Array.isArray(e)&&(Array.isArray(e[0])||k.isPlainObject(e[0]))?h.rows.add(e):h.row.add(e);(g===q||g)&&h.draw();return e.flatten().toArray()};this.fnAdjustColumnSizing=function(e){var g=this.api(!0).columns.adjust(),h=g.settings()[0],l=h.oScroll;e===q||e?g.draw(!1):(""!==l.sX||""!==l.sY)&&Ea(h)};this.fnClearTable=function(e){var g=this.api(!0).clear();(e===q||e)&&g.draw()};this.fnClose=function(e){this.api(!0).row(e).child.hide()};this.fnDeleteRow=function(e,g,h){var l=this.api(!0);e=l.rows(e);var n= -e.settings()[0],m=n.aoData[e[0][0]];e.remove();g&&g.call(this,n,m);(h===q||h)&&l.draw();return m};this.fnDestroy=function(e){this.api(!0).destroy(e)};this.fnDraw=function(e){this.api(!0).draw(e)};this.fnFilter=function(e,g,h,l,n,m){n=this.api(!0);null===g||g===q?n.search(e,h,l,m):n.column(g).search(e,h,l,m);n.draw()};this.fnGetData=function(e,g){var h=this.api(!0);if(e!==q){var l=e.nodeName?e.nodeName.toLowerCase():"";return g!==q||"td"==l||"th"==l?h.cell(e,g).data():h.row(e).data()||null}return h.data().toArray()}; -this.fnGetNodes=function(e){var g=this.api(!0);return e!==q?g.row(e).node():g.rows().nodes().flatten().toArray()};this.fnGetPosition=function(e){var g=this.api(!0),h=e.nodeName.toUpperCase();return"TR"==h?g.row(e).index():"TD"==h||"TH"==h?(e=g.cell(e).index(),[e.row,e.columnVisible,e.column]):null};this.fnIsOpen=function(e){return this.api(!0).row(e).child.isShown()};this.fnOpen=function(e,g,h){return this.api(!0).row(e).child(g,h).show().child()[0]};this.fnPageChange=function(e,g){e=this.api(!0).page(e); -(g===q||g)&&e.draw(!1)};this.fnSetColumnVis=function(e,g,h){e=this.api(!0).column(e).visible(g);(h===q||h)&&e.columns.adjust().draw()};this.fnSettings=function(){return Ra(this[L.iApiIndex])};this.fnSort=function(e){this.api(!0).order(e).draw()};this.fnSortListener=function(e,g,h){this.api(!0).order.listener(e,g,h)};this.fnUpdate=function(e,g,h,l,n){var m=this.api(!0);h===q||null===h?m.row(g).data(e):m.cell(g,h).data(e);(n===q||n)&&m.columns.adjust();(l===q||l)&&m.draw();return 0};this.fnVersionCheck= -L.fnVersionCheck;var b=this,c=a===q,d=this.length;c&&(a={});this.oApi=this.internal=L.internal;for(var f in u.ext.internal)f&&(this[f]=fc(f));this.each(function(){var e={},g=1").appendTo(p));r.nTHead=B[0]; -B=p.children("tbody");0===B.length&&(B=k("").appendTo(p));r.nTBody=B[0];B=p.children("tfoot");0===B.length&&0").appendTo(p));0===B.length||0===B.children().length?p.addClass(A.sNoFooter):0/g,tc=/^\d{2,4}[\.\/\-]\d{1,2}[\.\/\-]\d{1,2}([T ]{1}\d{1,2}[:\.]\d{2}([\.:]\d{2})?)?$/,uc=/(\/|\.|\*|\+|\?|\||\(|\)|\[|\]|\{|\}|\\|\$|\^|\-)/g,qb=/['\u00A0,$£€¥%\u2009\u202F\u20BD\u20a9\u20BArfkɃΞ]/gi,ca=function(a){return a&&!0!==a&&"-"!==a?!1:!0},hc=function(a){var b=parseInt(a,10);return!isNaN(b)&&isFinite(a)?b:null},ic=function(a,b){rb[b]|| -(rb[b]=new RegExp(hb(b),"g"));return"string"===typeof a&&"."!==b?a.replace(/\./g,"").replace(rb[b],"."):a},sb=function(a,b,c){var d="string"===typeof a;if(ca(a))return!0;b&&d&&(a=ic(a,b));c&&d&&(a=a.replace(qb,""));return!isNaN(parseFloat(a))&&isFinite(a)},jc=function(a,b,c){return ca(a)?!0:ca(a)||"string"===typeof a?sb(a.replace(Ta,""),b,c)?!0:null:null},T=function(a,b,c){var d=[],f=0,e=a.length;if(c!==q)for(;fa.length)){var b=a.slice().sort();for(var c=b[0],d=1,f=b.length;d")[0],rc=Oa.textContent!==q,sc=/<.*?>/g,fb=u.util.throttle,mc=[],N=Array.prototype,vc=function(a){var b,c=u.settings,d=k.map(c,function(e,g){return e.nTable});if(a){if(a.nTable&&a.oApi)return[a];if(a.nodeName&&"table"===a.nodeName.toLowerCase()){var f= -k.inArray(a,d);return-1!==f?[c[f]]:null}if(a&&"function"===typeof a.settings)return a.settings().toArray();"string"===typeof a?b=k(a):a instanceof k&&(b=a)}else return[];if(b)return b.map(function(e){f=k.inArray(this,d);return-1!==f?c[f]:null}).toArray()};var D=function(a,b){if(!(this instanceof D))return new D(a,b);var c=[],d=function(g){(g=vc(g))&&c.push.apply(c,g)};if(Array.isArray(a))for(var f=0,e=a.length;fa?new D(b[a],this[a]):null},filter:function(a){var b=[];if(N.filter)b=N.filter.call(this,a,this);else for(var c=0,d=this.length;c").addClass(h),k("td",l).addClass(h).html(g)[0].colSpan=na(a),f.push(l[0]))};e(c,d);b._details&&b._details.detach();b._details=k(f);b._detailsShow&& -b._details.insertAfter(b.nTr)},wb=function(a,b){var c=a.context;c.length&&(a=c[0].aoData[b!==q?b:a[0]])&&a._details&&(a._details.remove(),a._detailsShow=q,a._details=q)},pc=function(a,b){var c=a.context;c.length&&a.length&&(a=c[0].aoData[a[0]],a._details&&((a._detailsShow=b)?a._details.insertAfter(a.nTr):a._details.detach(),yc(c[0])))},yc=function(a){var b=new D(a),c=a.aoData;b.off("draw.dt.DT_details column-visibility.dt.DT_details destroy.dt.DT_details");0h){var m=k.map(d,function(p,t){return p.bVisible?t:null});return[m[m.length+h]]}return[sa(a,h)];case "name":return k.map(f,function(p,t){return p===n[1]?t:null});default:return[]}if(g.nodeName&&g._DT_CellIndex)return[g._DT_CellIndex.column];h=k(e).filter(g).map(function(){return k.inArray(this,e)}).toArray();if(h.length||!g.nodeName)return h;h=k(g).closest("*[data-dt-column]");return h.length?[h.data("dt-column")]:[]},a,c)};w("columns()",function(a,b){a===q?a="":k.isPlainObject(a)&&(b=a, -a="");b=ub(b);var c=this.iterator("table",function(d){return Ac(d,a,b)},1);c.selector.cols=a;c.selector.opts=b;return c});J("columns().header()","column().header()",function(a,b){return this.iterator("column",function(c,d){return c.aoColumns[d].nTh},1)});J("columns().footer()","column().footer()",function(a,b){return this.iterator("column",function(c,d){return c.aoColumns[d].nTf},1)});J("columns().data()","column().data()",function(){return this.iterator("column-rows",qc,1)});J("columns().dataSrc()", -"column().dataSrc()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].mData},1)});J("columns().cache()","column().cache()",function(a){return this.iterator("column-rows",function(b,c,d,f,e){return Ca(b.aoData,e,"search"===a?"_aFilterData":"_aSortData",c)},1)});J("columns().nodes()","column().nodes()",function(){return this.iterator("column-rows",function(a,b,c,d,f){return Ca(a.aoData,f,"anCells",b)},1)});J("columns().visible()","column().visible()",function(a,b){var c= -this,d=this.iterator("column",function(f,e){if(a===q)return f.aoColumns[e].bVisible;var g=f.aoColumns,h=g[e],l=f.aoData,n;if(a!==q&&h.bVisible!==a){if(a){var m=k.inArray(!0,T(g,"bVisible"),e+1);g=0;for(n=l.length;gd;return!0};u.isDataTable=u.fnIsDataTable=function(a){var b=k(a).get(0),c=!1;if(a instanceof u.Api)return!0;k.each(u.settings,function(d,f){d=f.nScrollHead?k("table",f.nScrollHead)[0]:null;var e=f.nScrollFoot?k("table",f.nScrollFoot)[0]:null;if(f.nTable===b||d===b||e===b)c=!0});return c};u.tables=u.fnTables=function(a){var b= -!1;k.isPlainObject(a)&&(b=a.api,a=a.visible);var c=k.map(u.settings,function(d){if(!a||a&&k(d.nTable).is(":visible"))return d.nTable});return b?new D(c):c};u.camelToHungarian=O;w("$()",function(a,b){b=this.rows(b).nodes();b=k(b);return k([].concat(b.filter(a).toArray(),b.find(a).toArray()))});k.each(["on","one","off"],function(a,b){w(b+"()",function(){var c=Array.prototype.slice.call(arguments);c[0]=k.map(c[0].split(/\s/),function(f){return f.match(/\.dt\b/)?f:f+".dt"}).join(" ");var d=k(this.tables().nodes()); -d[b].apply(d,c);return this})});w("clear()",function(){return this.iterator("table",function(a){Ha(a)})});w("settings()",function(){return new D(this.context,this.context)});w("init()",function(){var a=this.context;return a.length?a[0].oInit:null});w("data()",function(){return this.iterator("table",function(a){return T(a.aoData,"_aData")}).flatten()});w("destroy()",function(a){a=a||!1;return this.iterator("table",function(b){var c=b.nTableWrapper.parentNode,d=b.oClasses,f=b.nTable,e=b.nTBody,g=b.nTHead, -h=b.nTFoot,l=k(f);e=k(e);var n=k(b.nTableWrapper),m=k.map(b.aoData,function(t){return t.nTr}),p;b.bDestroying=!0;I(b,"aoDestroyCallback","destroy",[b]);a||(new D(b)).columns().visible(!0);n.off(".DT").find(":not(tbody *)").off(".DT");k(y).off(".DT-"+b.sInstance);f!=g.parentNode&&(l.children("thead").detach(),l.append(g));h&&f!=h.parentNode&&(l.children("tfoot").detach(),l.append(h));b.aaSorting=[];b.aaSortingFixed=[];Pa(b);k(m).removeClass(b.asStripeClasses.join(" "));k("th, td",g).removeClass(d.sSortable+ -" "+d.sSortableAsc+" "+d.sSortableDesc+" "+d.sSortableNone);e.children().detach();e.append(m);g=a?"remove":"detach";l[g]();n[g]();!a&&c&&(c.insertBefore(f,b.nTableReinsertBefore),l.css("width",b.sDestroyWidth).removeClass(d.sTable),(p=b.asDestroyStripes.length)&&e.children().each(function(t){k(this).addClass(b.asDestroyStripes[t%p])}));c=k.inArray(b,u.settings);-1!==c&&u.settings.splice(c,1)})});k.each(["column","row","cell"],function(a,b){w(b+"s().every()",function(c){var d=this.selector.opts,f= -this;return this.iterator(b,function(e,g,h,l,n){c.call(f[b](g,"cell"===b?h:d,"cell"===b?d:q),g,h,l,n)})})});w("i18n()",function(a,b,c){var d=this.context[0];a=ia(a)(d.oLanguage);a===q&&(a=b);c!==q&&k.isPlainObject(a)&&(a=a[c]!==q?a[c]:a._);return a.replace("%d",c)});u.version="1.10.22";u.settings=[];u.models={};u.models.oSearch={bCaseInsensitive:!0,sSearch:"",bRegex:!1,bSmart:!0};u.models.oRow={nTr:null,anCells:null,_aData:[],_aSortData:null,_aFilterData:null,_sFilterRow:null,_sRowStripe:"",src:null, -idx:-1};u.models.oColumn={idx:null,aDataSort:null,asSorting:null,bSearchable:null,bSortable:null,bVisible:null,_sManualType:null,_bAttrSrc:!1,fnCreatedCell:null,fnGetData:null,fnSetData:null,mData:null,mRender:null,nTh:null,nTf:null,sClass:null,sContentPadding:null,sDefaultContent:null,sName:null,sSortDataType:"std",sSortingClass:null,sSortingClassJUI:null,sTitle:null,sType:null,sWidth:null,sWidthOrig:null};u.defaults={aaData:null,aaSorting:[[0,"asc"]],aaSortingFixed:[],ajax:null,aLengthMenu:[10, -25,50,100],aoColumns:null,aoColumnDefs:null,aoSearchCols:[],asStripeClasses:null,bAutoWidth:!0,bDeferRender:!1,bDestroy:!1,bFilter:!0,bInfo:!0,bLengthChange:!0,bPaginate:!0,bProcessing:!1,bRetrieve:!1,bScrollCollapse:!1,bServerSide:!1,bSort:!0,bSortMulti:!0,bSortCellsTop:!1,bSortClasses:!0,bStateSave:!1,fnCreatedRow:null,fnDrawCallback:null,fnFooterCallback:null,fnFormatNumber:function(a){return a.toString().replace(/\B(?=(\d{3})+(?!\d))/g,this.oLanguage.sThousands)},fnHeaderCallback:null,fnInfoCallback:null, -fnInitComplete:null,fnPreDrawCallback:null,fnRowCallback:null,fnServerData:null,fnServerParams:null,fnStateLoadCallback:function(a){try{return JSON.parse((-1===a.iStateDuration?sessionStorage:localStorage).getItem("DataTables_"+a.sInstance+"_"+location.pathname))}catch(b){return{}}},fnStateLoadParams:null,fnStateLoaded:null,fnStateSaveCallback:function(a,b){try{(-1===a.iStateDuration?sessionStorage:localStorage).setItem("DataTables_"+a.sInstance+"_"+location.pathname,JSON.stringify(b))}catch(c){}}, -fnStateSaveParams:null,iStateDuration:7200,iDeferLoading:null,iDisplayLength:10,iDisplayStart:0,iTabIndex:0,oClasses:{},oLanguage:{oAria:{sSortAscending:": activate to sort column ascending",sSortDescending:": activate to sort column descending"},oPaginate:{sFirst:"First",sLast:"Last",sNext:"Next",sPrevious:"Previous"},sEmptyTable:"No data available in table",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)", -sInfoPostFix:"",sDecimal:"",sThousands:",",sLengthMenu:"Show _MENU_ entries",sLoadingRecords:"Loading...",sProcessing:"Processing...",sSearch:"Search:",sSearchPlaceholder:"",sUrl:"",sZeroRecords:"No matching records found"},oSearch:k.extend({},u.models.oSearch),sAjaxDataProp:"data",sAjaxSource:null,sDom:"lfrtip",searchDelay:null,sPaginationType:"simple_numbers",sScrollX:"",sScrollXInner:"",sScrollY:"",sServerMethod:"GET",renderer:null,rowId:"DT_RowId"};G(u.defaults);u.defaults.column={aDataSort:null, -iDataSort:-1,asSorting:["asc","desc"],bSearchable:!0,bSortable:!0,bVisible:!0,fnCreatedCell:null,mData:null,mRender:null,sCellType:"td",sClass:"",sContentPadding:"",sDefaultContent:null,sName:"",sSortDataType:"std",sTitle:null,sType:null,sWidth:null};G(u.defaults.column);u.models.oSettings={oFeatures:{bAutoWidth:null,bDeferRender:null,bFilter:null,bInfo:null,bLengthChange:null,bPaginate:null,bProcessing:null,bServerSide:null,bSort:null,bSortMulti:null,bSortClasses:null,bStateSave:null},oScroll:{bCollapse:null, -iBarWidth:0,sX:null,sXInner:null,sY:null},oLanguage:{fnInfoCallback:null},oBrowser:{bScrollOversize:!1,bScrollbarLeft:!1,bBounding:!1,barWidth:0},ajax:null,aanFeatures:[],aoData:[],aiDisplay:[],aiDisplayMaster:[],aIds:{},aoColumns:[],aoHeader:[],aoFooter:[],oPreviousSearch:{},aoPreSearchCols:[],aaSorting:null,aaSortingFixed:[],asStripeClasses:null,asDestroyStripes:[],sDestroyWidth:0,aoRowCallback:[],aoHeaderCallback:[],aoFooterCallback:[],aoDrawCallback:[],aoRowCreatedCallback:[],aoPreDrawCallback:[], -aoInitComplete:[],aoStateSaveParams:[],aoStateLoadParams:[],aoStateLoaded:[],sTableId:"",nTable:null,nTHead:null,nTFoot:null,nTBody:null,nTableWrapper:null,bDeferLoading:!1,bInitialised:!1,aoOpenRows:[],sDom:null,searchDelay:null,sPaginationType:"two_button",iStateDuration:0,aoStateSave:[],aoStateLoad:[],oSavedState:null,oLoadedState:null,sAjaxSource:null,sAjaxDataProp:null,bAjaxDataGet:!0,jqXHR:null,json:q,oAjaxData:q,fnServerData:null,aoServerParams:[],sServerMethod:null,fnFormatNumber:null,aLengthMenu:null, -iDraw:0,bDrawing:!1,iDrawError:-1,_iDisplayLength:10,_iDisplayStart:0,_iRecordsTotal:0,_iRecordsDisplay:0,oClasses:{},bFiltered:!1,bSorted:!1,bSortCellsTop:null,oInit:null,aoDestroyCallback:[],fnRecordsTotal:function(){return"ssp"==P(this)?1*this._iRecordsTotal:this.aiDisplayMaster.length},fnRecordsDisplay:function(){return"ssp"==P(this)?1*this._iRecordsDisplay:this.aiDisplay.length},fnDisplayEnd:function(){var a=this._iDisplayLength,b=this._iDisplayStart,c=b+a,d=this.aiDisplay.length,f=this.oFeatures, -e=f.bPaginate;return f.bServerSide?!1===e||-1===a?b+d:Math.min(b+a,this._iRecordsDisplay):!e||c>d||-1===a?d:c},oInstance:null,sInstance:null,iTabIndex:0,nScrollHead:null,nScrollFoot:null,aLastSort:[],oPlugins:{},rowIdFn:null,rowId:null};u.ext=L={buttons:{},classes:{},builder:"-source-",errMode:"alert",feature:[],search:[],selector:{cell:[],column:[],row:[]},internal:{},legacy:{ajax:null},pager:{},renderer:{pageButton:{},header:{}},order:{},type:{detect:[],search:{},order:{}},_unique:0,fnVersionCheck:u.fnVersionCheck, -iApiIndex:0,oJUIClasses:{},sVersion:u.version};k.extend(L,{afnFiltering:L.search,aTypes:L.type.detect,ofnSearch:L.type.search,oSort:L.type.order,afnSortData:L.order,aoFeatures:L.feature,oApi:L.internal,oStdClasses:L.classes,oPagination:L.pager});k.extend(u.ext.classes,{sTable:"dataTable",sNoFooter:"no-footer",sPageButton:"paginate_button",sPageButtonActive:"current",sPageButtonDisabled:"disabled",sStripeOdd:"odd",sStripeEven:"even",sRowEmpty:"dataTables_empty",sWrapper:"dataTables_wrapper",sFilter:"dataTables_filter", -sInfo:"dataTables_info",sPaging:"dataTables_paginate paging_",sLength:"dataTables_length",sProcessing:"dataTables_processing",sSortAsc:"sorting_asc",sSortDesc:"sorting_desc",sSortable:"sorting",sSortableAsc:"sorting_asc_disabled",sSortableDesc:"sorting_desc_disabled",sSortableNone:"sorting_disabled",sSortColumn:"sorting_",sFilterInput:"",sLengthSelect:"",sScrollWrapper:"dataTables_scroll",sScrollHead:"dataTables_scrollHead",sScrollHeadInner:"dataTables_scrollHeadInner",sScrollBody:"dataTables_scrollBody", -sScrollFoot:"dataTables_scrollFoot",sScrollFootInner:"dataTables_scrollFootInner",sHeaderTH:"",sFooterTH:"",sSortJUIAsc:"",sSortJUIDesc:"",sSortJUI:"",sSortJUIAscAllowed:"",sSortJUIDescAllowed:"",sSortJUIWrapper:"",sSortIcon:"",sJUIHeader:"",sJUIFooter:""});var ec=u.ext.pager;k.extend(ec,{simple:function(a,b){return["previous","next"]},full:function(a,b){return["first","previous","next","last"]},numbers:function(a,b){return[Ba(a,b)]},simple_numbers:function(a,b){return["previous",Ba(a,b),"next"]}, -full_numbers:function(a,b){return["first","previous",Ba(a,b),"next","last"]},first_last_numbers:function(a,b){return["first",Ba(a,b),"last"]},_numbers:Ba,numbers_length:7});k.extend(!0,u.ext.renderer,{pageButton:{_:function(a,b,c,d,f,e){var g=a.oClasses,h=a.oLanguage.oPaginate,l=a.oLanguage.oAria.paginate||{},n,m,p=0,t=function(x,r){var A,E=g.sPageButtonDisabled,H=function(B){kb(a,B.data.action,!0)};var W=0;for(A=r.length;W").appendTo(x); -t(C,M)}else{n=null;m=M;C=a.iTabIndex;switch(M){case "ellipsis":x.append('');break;case "first":n=h.sFirst;0===f&&(C=-1,m+=" "+E);break;case "previous":n=h.sPrevious;0===f&&(C=-1,m+=" "+E);break;case "next":n=h.sNext;if(0===e||f===e-1)C=-1,m+=" "+E;break;case "last":n=h.sLast;if(0===e||f===e-1)C=-1,m+=" "+E;break;default:n=a.fnFormatNumber(M+1),m=f===M?g.sPageButtonActive:""}null!==n&&(C=k("",{"class":g.sPageButton+" "+m,"aria-controls":a.sTableId,"aria-label":l[M], -"data-dt-idx":p,tabindex:C,id:0===c&&"string"===typeof M?a.sTableId+"_"+M:null}).html(n).appendTo(x),ob(C,{action:M},H),p++)}}};try{var v=k(b).find(z.activeElement).data("dt-idx")}catch(x){}t(k(b).empty(),d);v!==q&&k(b).find("[data-dt-idx="+v+"]").trigger("focus")}}});k.extend(u.ext.type.detect,[function(a,b){b=b.oLanguage.sDecimal;return sb(a,b)?"num"+b:null},function(a,b){if(a&&!(a instanceof Date)&&!tc.test(a))return null;b=Date.parse(a);return null!==b&&!isNaN(b)||ca(a)?"date":null},function(a, -b){b=b.oLanguage.sDecimal;return sb(a,b,!0)?"num-fmt"+b:null},function(a,b){b=b.oLanguage.sDecimal;return jc(a,b)?"html-num"+b:null},function(a,b){b=b.oLanguage.sDecimal;return jc(a,b,!0)?"html-num-fmt"+b:null},function(a,b){return ca(a)||"string"===typeof a&&-1!==a.indexOf("<")?"html":null}]);k.extend(u.ext.type.search,{html:function(a){return ca(a)?a:"string"===typeof a?a.replace(gc," ").replace(Ta,""):""},string:function(a){return ca(a)?a:"string"===typeof a?a.replace(gc," "):a}});var Sa=function(a, -b,c,d){if(0!==a&&(!a||"-"===a))return-Infinity;b&&(a=ic(a,b));a.replace&&(c&&(a=a.replace(c,"")),d&&(a=a.replace(d,"")));return 1*a};k.extend(L.type.order,{"date-pre":function(a){a=Date.parse(a);return isNaN(a)?-Infinity:a},"html-pre":function(a){return ca(a)?"":a.replace?a.replace(/<.*?>/g,"").toLowerCase():a+""},"string-pre":function(a){return ca(a)?"":"string"===typeof a?a.toLowerCase():a.toString?a.toString():""},"string-asc":function(a,b){return ab?1:0},"string-desc":function(a,b){return a< -b?1:a>b?-1:0}});Va("");k.extend(!0,u.ext.renderer,{header:{_:function(a,b,c,d){k(a.nTable).on("order.dt.DT",function(f,e,g,h){a===e&&(f=c.idx,b.removeClass(c.sSortingClass+" "+d.sSortAsc+" "+d.sSortDesc).addClass("asc"==h[f]?d.sSortAsc:"desc"==h[f]?d.sSortDesc:c.sSortingClass))})},jqueryui:function(a,b,c,d){k("
").addClass(d.sSortJUIWrapper).append(b.contents()).append(k("").addClass(d.sSortIcon+" "+c.sSortingClassJUI)).appendTo(b);k(a.nTable).on("order.dt.DT",function(f,e,g,h){a===e&& -(f=c.idx,b.removeClass(d.sSortAsc+" "+d.sSortDesc).addClass("asc"==h[f]?d.sSortAsc:"desc"==h[f]?d.sSortDesc:c.sSortingClass),b.find("span."+d.sSortIcon).removeClass(d.sSortJUIAsc+" "+d.sSortJUIDesc+" "+d.sSortJUI+" "+d.sSortJUIAscAllowed+" "+d.sSortJUIDescAllowed).addClass("asc"==h[f]?d.sSortJUIAsc:"desc"==h[f]?d.sSortJUIDesc:c.sSortingClassJUI))})}}});var xb=function(a){return"string"===typeof a?a.replace(/&/g,"&").replace(//g,">").replace(/"/g,"""):a};u.render= -{number:function(a,b,c,d,f){return{display:function(e){if("number"!==typeof e&&"string"!==typeof e)return e;var g=0>e?"-":"",h=parseFloat(e);if(isNaN(h))return xb(e);h=h.toFixed(c);e=Math.abs(h);h=parseInt(e,10);e=c?b+(e-h).toFixed(c).substring(2):"";return g+(d||"")+h.toString().replace(/\B(?=(\d{3})+(?!\d))/g,a)+e+(f||"")}}},text:function(){return{display:xb,filter:xb}}};k.extend(u.ext.internal,{_fnExternApiFunc:fc,_fnBuildAjax:La,_fnAjaxUpdate:Fb,_fnAjaxParameters:Ob,_fnAjaxUpdateDraw:Pb,_fnAjaxDataSrc:Ma, -_fnAddColumn:Wa,_fnColumnOptions:Da,_fnAdjustColumnSizing:ra,_fnVisibleToColumnIndex:sa,_fnColumnIndexToVisible:ta,_fnVisbleColumns:na,_fnGetColumns:Fa,_fnColumnTypes:Ya,_fnApplyColumnDefs:Cb,_fnHungarianMap:G,_fnCamelToHungarian:O,_fnLanguageCompat:ma,_fnBrowserDetect:Ab,_fnAddData:ea,_fnAddTr:Ga,_fnNodeToDataIndex:function(a,b){return b._DT_RowIndex!==q?b._DT_RowIndex:null},_fnNodeToColumnIndex:function(a,b,c){return k.inArray(c,a.aoData[b].anCells)},_fnGetCellData:S,_fnSetCellData:Db,_fnSplitObjNotation:ab, -_fnGetObjectDataFn:ia,_fnSetObjectDataFn:da,_fnGetDataMaster:bb,_fnClearTable:Ha,_fnDeleteIndex:Ia,_fnInvalidate:va,_fnGetRowElements:$a,_fnCreateTr:Za,_fnBuildHead:Eb,_fnDrawHead:xa,_fnDraw:fa,_fnReDraw:ja,_fnAddOptionsHtml:Hb,_fnDetectHeader:wa,_fnGetUniqueThs:Ka,_fnFeatureHtmlFilter:Jb,_fnFilterComplete:ya,_fnFilterCustom:Sb,_fnFilterColumn:Rb,_fnFilter:Qb,_fnFilterCreateSearch:gb,_fnEscapeRegex:hb,_fnFilterData:Tb,_fnFeatureHtmlInfo:Mb,_fnUpdateInfo:Wb,_fnInfoMacros:Xb,_fnInitialise:za,_fnInitComplete:Na, -_fnLengthChange:ib,_fnFeatureHtmlLength:Ib,_fnFeatureHtmlPaginate:Nb,_fnPageChange:kb,_fnFeatureHtmlProcessing:Kb,_fnProcessingDisplay:U,_fnFeatureHtmlTable:Lb,_fnScrollDraw:Ea,_fnApplyToChildren:Z,_fnCalculateColumnWidths:Xa,_fnThrottle:fb,_fnConvertToWidth:Zb,_fnGetWidestNode:$b,_fnGetMaxLenString:ac,_fnStringToCss:K,_fnSortFlatten:pa,_fnSort:Gb,_fnSortAria:cc,_fnSortListener:nb,_fnSortAttachListener:db,_fnSortingClasses:Pa,_fnSortData:bc,_fnSaveState:Qa,_fnLoadState:dc,_fnSettingsFromNode:Ra,_fnLog:aa, -_fnMap:V,_fnBindAction:ob,_fnCallbackReg:Q,_fnCallbackFire:I,_fnLengthOverflow:jb,_fnRenderer:eb,_fnDataSource:P,_fnRowAttributes:cb,_fnExtend:pb,_fnCalculateEnd:function(){}});k.fn.dataTable=u;u.$=k;k.fn.dataTableSettings=u.settings;k.fn.dataTableExt=u.ext;k.fn.DataTable=function(a){return k(this).dataTable(a).api()};k.each(u,function(a,b){k.fn.DataTable[a]=b});return k.fn.dataTable}); diff --git a/static/images/sort_asc.png b/static/images/sort_asc.png deleted file mode 100644 index e1ba61a8055fcb18273f2468d335572204667b1f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^!XV7S1|*9D%+3I*bWaz@5R22v2@;zYta_*?F5u6Q zWR@in#&u+WgT?Hi<}D3B3}GOXuX|8Oj3tosHiJ3*4TN zC7>_x-r1O=t(?KoTC+`+>7&2GzdqLHBg&F)2Q?&EGZ+}|Rpsc~9`m>jw35No)z4*} HQ$iB}HK{Sd diff --git a/static/images/sort_asc_disabled.png b/static/images/sort_asc_disabled.png deleted file mode 100644 index fb11dfe24a6c564cb7ddf8bc96703ebb121df1e7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^!XV7S0wixl{&NRX(Vi}jAsXkC6BcOhI9!^3NY?Do zDX;f`c1`y6n0RgO@$!H7chZT&|Jn0dmaqO^XNm-CGtk!Ur<_=Jws3;%W$<+Mb6Mw<&;$T1GdZXL diff --git a/static/images/sort_both.png b/static/images/sort_both.png deleted file mode 100644 index af5bc7c5a10b9d6d57cb641aeec752428a07f0ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^!XV7S0wixl{&NRX6FglULp08Bycxyy87-Q;~nRxO8@-UU*I^KVWyN+&SiMHu5xDOu|HNvwzODfTdXjhVyNu1 z#7^XbGKZ7LW3XeONb$RKLeE*WhqbYpIXPIqK@r4)v+qN8um%99%MPpS9d#7Ed7SL@Bp00i_>zopr0H-Zb Aj{pDw diff --git a/static/images/sort_desc.png b/static/images/sort_desc.png deleted file mode 100644 index 0e156deb5f61d18f9e2ec5da4f6a8c94a5b4fb41..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^!XV7S1|*9D%+3I*R8JSj5R22v2@yo z(czD9$NuDl3Ljm9c#_#4$vXUz=f1~&WY3aa=h!;z7fOEN>ySP9QA=6C-^Dmb&tuM= z4Z&=WZU;2WF>e%GI&mWJk^K!jrbro{W;-I>FeCfLGJl3}+Z^2)3Kw?+EoAU?^>bP0 Hl+XkKC^j|Q{b@g3TV7E(Grjn^aLC2o)_ptHrtUEoT$S@q)~)7U@V;W{6)!%@ u>N?4t-1qslpJw9!O?PJ&w0Cby+~]|"+R+")"+R+"*"),U=new RegExp(R+"|>"),V=new RegExp(W),X=new RegExp("^"+B+"$"),Q={ID:new RegExp("^#("+B+")"),CLASS:new RegExp("^\\.("+B+")"),TAG:new RegExp("^("+B+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+W),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+R+"*(even|odd|(([+-]|)(\\d*)n|)"+R+"*(?:([+-]|)"+R+"*(\\d+)|))"+R+"*\\)|)","i"),bool:new RegExp("^(?:"+I+")$","i"),needsContext:new RegExp("^"+R+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+R+"*((?:-\\d)?\\d*)"+R+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,G=/^(?:input|select|textarea|button)$/i,K=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+R+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){C()},ae=xe(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{O.apply(t=P.call(d.childNodes),d.childNodes),t[d.childNodes.length].nodeType}catch(e){O={apply:t.length?function(e,t){q.apply(e,P.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,d=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==d&&9!==d&&11!==d)return n;if(!r&&(C(e),e=e||T,E)){if(11!==d&&(u=Z.exec(t)))if(i=u[1]){if(9===d){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return O.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&p.getElementsByClassName&&e.getElementsByClassName)return O.apply(n,e.getElementsByClassName(i)),n}if(p.qsa&&!k[t+" "]&&(!v||!v.test(t))&&(1!==d||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===d&&(U.test(t)||_.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&p.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=A)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+be(l[o]);c=l.join(",")}try{return O.apply(n,f.querySelectorAll(c)),n}catch(e){k(t,!0)}finally{s===A&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>x.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[A]=!0,e}function ce(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)x.attrHandle[n[r]]=t}function de(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function pe(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in p=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},C=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:d;return r!=T&&9===r.nodeType&&r.documentElement&&(a=(T=r).documentElement,E=!i(T),d!=T&&(n=T.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),p.scope=ce(function(e){return a.appendChild(e).appendChild(T.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),p.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),p.getElementsByTagName=ce(function(e){return e.appendChild(T.createComment("")),!e.getElementsByTagName("*").length}),p.getElementsByClassName=J.test(T.getElementsByClassName),p.getById=ce(function(e){return a.appendChild(e).id=A,!T.getElementsByName||!T.getElementsByName(A).length}),p.getById?(x.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(x.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),x.find.TAG=p.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):p.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},x.find.CLASS=p.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(p.qsa=J.test(T.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+R+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+R+"*(?:value|"+I+")"),e.querySelectorAll("[id~="+A+"-]").length||v.push("~="),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+R+"*name"+R+"*="+R+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+A+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=T.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+R+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(p.matchesSelector=J.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){p.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",W)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=J.test(a.compareDocumentPosition),y=t||J.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!p.sortDetached&&t.compareDocumentPosition(e)===n?e==T||e.ownerDocument==d&&y(d,e)?-1:t==T||t.ownerDocument==d&&y(d,t)?1:u?H(u,e)-H(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==T?-1:t==T?1:i?-1:o?1:u?H(u,e)-H(u,t):0;if(i===o)return de(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?de(a[r],s[r]):a[r]==d?-1:s[r]==d?1:0}),T},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(C(e),p.matchesSelector&&E&&!k[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||p.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){k(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&V.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+R+")"+e+"("+R+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return b(n)?E.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?E.grep(e,function(e){return e===n!==r}):"string"!=typeof n?E.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(E.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||L,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:j.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof E?t[0]:t,E.merge(this,E.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:w,!0)),k.test(r[1])&&E.isPlainObject(t))for(r in t)b(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=w.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):b(e)?void 0!==n.ready?n.ready(e):e(E):E.makeArray(e,this)}).prototype=E.fn,L=E(w);var q=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}E.fn.extend({has:function(e){var t=E(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,pe=/^$|^module$|\/(?:java|ecma)script/i;le=w.createDocumentFragment().appendChild(w.createElement("div")),(ce=w.createElement("input")).setAttribute("type","radio"),ce.setAttribute("checked","checked"),ce.setAttribute("name","t"),le.appendChild(ce),m.checkClone=le.cloneNode(!0).cloneNode(!0).lastChild.checked,le.innerHTML="",m.noCloneChecked=!!le.cloneNode(!0).lastChild.defaultValue,le.innerHTML="",m.option=!!le.lastChild;var he={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ge(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&S(e,t)?E.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var ye=/<|&#?\w+;/;function me(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),d=[],p=0,h=e.length;p\s*$/g;function Le(e,t){return S(e,"table")&&S(11!==t.nodeType?t:t.firstChild,"tr")&&E(e).children("tbody")[0]||e}function je(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n
",2===ft.childNodes.length),E.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(m.createHTMLDocument?((r=(t=w.implementation.createHTMLDocument("")).createElement("base")).href=w.location.href,t.head.appendChild(r)):t=w),o=!n&&[],(i=k.exec(e))?[t.createElement(i[1])]:(i=me([e],t,o),o&&o.length&&E(o).remove(),E.merge([],i.childNodes)));var r,i,o},E.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=E.css(e,"position"),c=E(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=E.css(e,"top"),u=E.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),b(t)&&(t=t.call(e,n,E.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},E.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){E.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===E.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===E.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=E(e).offset()).top+=E.css(e,"borderTopWidth",!0),i.left+=E.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-E.css(r,"marginTop",!0),left:t.left-i.left-E.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===E.css(e,"position"))e=e.offsetParent;return e||re})}}),E.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;E.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),E.each(["top","left"],function(e,n){E.cssHooks[n]=Fe(m.pixelPosition,function(e,t){if(t)return t=We(e,n),Ie.test(t)?E(e).position()[n]+"px":t})}),E.each({Height:"height",Width:"width"},function(a,s){E.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){E.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?E.css(e,t,i):E.style(e,t,n,i)},s,n?e:void 0,n)}})}),E.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),E.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){E.fn[n]=function(e,t){return 01&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:5e3;n(this,e),this.ctx=t,this.iframes=r,this.exclude=i,this.iframesTimeout=o}return r(e,[{key:"getContexts",value:function(){var e=[];return(void 0!==this.ctx&&this.ctx?NodeList.prototype.isPrototypeOf(this.ctx)?Array.prototype.slice.call(this.ctx):Array.isArray(this.ctx)?this.ctx:"string"==typeof this.ctx?Array.prototype.slice.call(document.querySelectorAll(this.ctx)):[this.ctx]:[]).forEach(function(t){var n=e.filter(function(e){return e.contains(t)}).length>0;-1!==e.indexOf(t)||n||e.push(t)}),e}},{key:"getIframeContents",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){},r=void 0;try{var i=e.contentWindow;if(r=i.document,!i||!r)throw new Error("iframe inaccessible")}catch(e){n()}r&&t(r)}},{key:"isIframeBlank",value:function(e){var t=e.getAttribute("src").trim();return"about:blank"===e.contentWindow.location.href&&"about:blank"!==t&&t}},{key:"observeIframeLoad",value:function(e,t,n){var r=this,i=!1,o=null,a=function a(){if(!i){i=!0,clearTimeout(o);try{r.isIframeBlank(e)||(e.removeEventListener("load",a),r.getIframeContents(e,t,n))}catch(e){n()}}};e.addEventListener("load",a),o=setTimeout(a,this.iframesTimeout)}},{key:"onIframeReady",value:function(e,t,n){try{"complete"===e.contentWindow.document.readyState?this.isIframeBlank(e)?this.observeIframeLoad(e,t,n):this.getIframeContents(e,t,n):this.observeIframeLoad(e,t,n)}catch(e){n()}}},{key:"waitForIframes",value:function(e,t){var n=this,r=0;this.forEachIframe(e,function(){return!0},function(e){r++,n.waitForIframes(e.querySelector("html"),function(){--r||t()})},function(e){e||t()})}},{key:"forEachIframe",value:function(t,n,r){var i=this,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){},a=t.querySelectorAll("iframe"),s=a.length,c=0;a=Array.prototype.slice.call(a);var u=function(){--s<=0&&o(c)};s||u(),a.forEach(function(t){e.matches(t,i.exclude)?u():i.onIframeReady(t,function(e){n(t)&&(c++,r(e)),u()},u)})}},{key:"createIterator",value:function(e,t,n){return document.createNodeIterator(e,t,n,!1)}},{key:"createInstanceOnIframe",value:function(t){return new e(t.querySelector("html"),this.iframes)}},{key:"compareNodeIframe",value:function(e,t,n){if(e.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_PRECEDING){if(null===t)return!0;if(t.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_FOLLOWING)return!0}return!1}},{key:"getIteratorNode",value:function(e){var t=e.previousNode();return{prevNode:t,node:null===t?e.nextNode():e.nextNode()&&e.nextNode()}}},{key:"checkIframeFilter",value:function(e,t,n,r){var i=!1,o=!1;return r.forEach(function(e,t){e.val===n&&(i=t,o=e.handled)}),this.compareNodeIframe(e,t,n)?(!1!==i||o?!1===i||o||(r[i].handled=!0):r.push({val:n,handled:!0}),!0):(!1===i&&r.push({val:n,handled:!1}),!1)}},{key:"handleOpenIframes",value:function(e,t,n,r){var i=this;e.forEach(function(e){e.handled||i.getIframeContents(e.val,function(e){i.createInstanceOnIframe(e).forEachNode(t,n,r)})})}},{key:"iterateThroughNodes",value:function(e,t,n,r,i){for(var o,a=this,s=this.createIterator(t,e,r),c=[],u=[],l=void 0,h=void 0;void 0,o=a.getIteratorNode(s),h=o.prevNode,l=o.node;)this.iframes&&this.forEachIframe(t,function(e){return a.checkIframeFilter(l,h,e,c)},function(t){a.createInstanceOnIframe(t).forEachNode(e,function(e){return u.push(e)},r)}),u.push(l);u.forEach(function(e){n(e)}),this.iframes&&this.handleOpenIframes(c,e,n,r),i()}},{key:"forEachNode",value:function(e,t,n){var r=this,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){},o=this.getContexts(),a=o.length;a||i(),o.forEach(function(o){var s=function(){r.iterateThroughNodes(e,o,t,n,function(){--a<=0&&i()})};r.iframes?r.waitForIframes(o,s):s()})}}],[{key:"matches",value:function(e,t){var n="string"==typeof t?[t]:t,r=e.matches||e.matchesSelector||e.msMatchesSelector||e.mozMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector;if(r){var i=!1;return n.every(function(t){return!r.call(e,t)||(i=!0,!1)}),i}return!1}}]),e}(),a=function(){function e(t){n(this,e),this.ctx=t,this.ie=!1;var r=window.navigator.userAgent;(r.indexOf("MSIE")>-1||r.indexOf("Trident")>-1)&&(this.ie=!0)}return r(e,[{key:"log",value:function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"debug",r=this.opt.log;this.opt.debug&&"object"===(void 0===r?"undefined":t(r))&&"function"==typeof r[n]&&r[n]("mark.js: "+e)}},{key:"escapeStr",value:function(e){return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}},{key:"createRegExp",value:function(e){return"disabled"!==this.opt.wildcards&&(e=this.setupWildcardsRegExp(e)),e=this.escapeStr(e),Object.keys(this.opt.synonyms).length&&(e=this.createSynonymsRegExp(e)),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),this.opt.diacritics&&(e=this.createDiacriticsRegExp(e)),e=this.createMergedBlanksRegExp(e),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.createJoinersRegExp(e)),"disabled"!==this.opt.wildcards&&(e=this.createWildcardsRegExp(e)),e=this.createAccuracyRegExp(e)}},{key:"createSynonymsRegExp",value:function(e){var t=this.opt.synonyms,n=this.opt.caseSensitive?"":"i",r=this.opt.ignoreJoiners||this.opt.ignorePunctuation.length?"\0":"";for(var i in t)if(t.hasOwnProperty(i)){var o=t[i],a="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(i):this.escapeStr(i),s="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(o):this.escapeStr(o);""!==a&&""!==s&&(e=e.replace(new RegExp("("+this.escapeStr(a)+"|"+this.escapeStr(s)+")","gm"+n),r+"("+this.processSynomyms(a)+"|"+this.processSynomyms(s)+")"+r))}return e}},{key:"processSynomyms",value:function(e){return(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),e}},{key:"setupWildcardsRegExp",value:function(e){return(e=e.replace(/(?:\\)*\?/g,function(e){return"\\"===e.charAt(0)?"?":""})).replace(/(?:\\)*\*/g,function(e){return"\\"===e.charAt(0)?"*":""})}},{key:"createWildcardsRegExp",value:function(e){var t="withSpaces"===this.opt.wildcards;return e.replace(/\u0001/g,t?"[\\S\\s]?":"\\S?").replace(/\u0002/g,t?"[\\S\\s]*?":"\\S*")}},{key:"setupIgnoreJoinersRegExp",value:function(e){return e.replace(/[^(|)\\]/g,function(e,t,n){var r=n.charAt(t+1);return/[(|)\\]/.test(r)||""===r?e:e+"\0"})}},{key:"createJoinersRegExp",value:function(e){var t=[],n=this.opt.ignorePunctuation;return Array.isArray(n)&&n.length&&t.push(this.escapeStr(n.join(""))),this.opt.ignoreJoiners&&t.push("\\u00ad\\u200b\\u200c\\u200d"),t.length?e.split(/\u0000+/).join("["+t.join("")+"]*"):e}},{key:"createDiacriticsRegExp",value:function(e){var t=this.opt.caseSensitive?"":"i",n=this.opt.caseSensitive?["aàáảãạăằắẳẵặâầấẩẫậäåāą","AÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćč","CÇĆČ","dđď","DĐĎ","eèéẻẽẹêềếểễệëěēę","EÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïī","IÌÍỈĨỊÎÏĪ","lł","LŁ","nñňń","NÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøō","OÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rř","RŘ","sšśșş","SŠŚȘŞ","tťțţ","TŤȚŢ","uùúủũụưừứửữựûüůū","UÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿ","YÝỲỶỸỴŸ","zžżź","ZŽŻŹ"]:["aàáảãạăằắẳẵặâầấẩẫậäåāąAÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćčCÇĆČ","dđďDĐĎ","eèéẻẽẹêềếểễệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïīIÌÍỈĨỊÎÏĪ","lłLŁ","nñňńNÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøōOÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rřRŘ","sšśșşSŠŚȘŞ","tťțţTŤȚŢ","uùúủũụưừứửữựûüůūUÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿYÝỲỶỸỴŸ","zžżźZŽŻŹ"],r=[];return e.split("").forEach(function(i){n.every(function(n){if(-1!==n.indexOf(i)){if(r.indexOf(n)>-1)return!1;e=e.replace(new RegExp("["+n+"]","gm"+t),"["+n+"]"),r.push(n)}return!0})}),e}},{key:"createMergedBlanksRegExp",value:function(e){return e.replace(/[\s]+/gim,"[\\s]+")}},{key:"createAccuracyRegExp",value:function(e){var t=this,n=this.opt.accuracy,r="string"==typeof n?n:n.value,i="";switch(("string"==typeof n?[]:n.limiters).forEach(function(e){i+="|"+t.escapeStr(e)}),r){case"partially":default:return"()("+e+")";case"complementary":return"()([^"+(i="\\s"+(i||this.escapeStr("!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~¡¿")))+"]*"+e+"[^"+i+"]*)";case"exactly":return"(^|\\s"+i+")("+e+")(?=$|\\s"+i+")"}}},{key:"getSeparatedKeywords",value:function(e){var t=this,n=[];return e.forEach(function(e){t.opt.separateWordSearch?e.split(" ").forEach(function(e){e.trim()&&-1===n.indexOf(e)&&n.push(e)}):e.trim()&&-1===n.indexOf(e)&&n.push(e)}),{keywords:n.sort(function(e,t){return t.length-e.length}),length:n.length}}},{key:"isNumeric",value:function(e){return Number(parseFloat(e))==e}},{key:"checkRanges",value:function(e){var t=this;if(!Array.isArray(e)||"[object Object]"!==Object.prototype.toString.call(e[0]))return this.log("markRanges() will only accept an array of objects"),this.opt.noMatch(e),[];var n=[],r=0;return e.sort(function(e,t){return e.start-t.start}).forEach(function(e){var i=t.callNoMatchOnInvalidRanges(e,r),o=i.start,a=i.end;i.valid&&(e.start=o,e.length=a-o,n.push(e),r=a)}),n}},{key:"callNoMatchOnInvalidRanges",value:function(e,t){var n=void 0,r=void 0,i=!1;return e&&void 0!==e.start?(r=(n=parseInt(e.start,10))+parseInt(e.length,10),this.isNumeric(e.start)&&this.isNumeric(e.length)&&r-t>0&&r-n>0?i=!0:(this.log("Ignoring invalid or overlapping range: "+JSON.stringify(e)),this.opt.noMatch(e))):(this.log("Ignoring invalid range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:n,end:r,valid:i}}},{key:"checkWhitespaceRanges",value:function(e,t,n){var r=void 0,i=!0,o=n.length,a=t-o,s=parseInt(e.start,10)-a;return(r=(s=s>o?o:s)+parseInt(e.length,10))>o&&(r=o,this.log("End range automatically set to the max value of "+o)),s<0||r-s<0||s>o||r>o?(i=!1,this.log("Invalid range: "+JSON.stringify(e)),this.opt.noMatch(e)):""===n.substring(s,r).replace(/\s+/g,"")&&(i=!1,this.log("Skipping whitespace only range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:s,end:r,valid:i}}},{key:"getTextNodes",value:function(e){var t=this,n="",r=[];this.iterator.forEachNode(NodeFilter.SHOW_TEXT,function(e){r.push({start:n.length,end:(n+=e.textContent).length,node:e})},function(e){return t.matchesExclude(e.parentNode)?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT},function(){e({value:n,nodes:r})})}},{key:"matchesExclude",value:function(e){return o.matches(e,this.opt.exclude.concat(["script","style","title","head","html"]))}},{key:"wrapRangeInTextNode",value:function(e,t,n){var r=this.opt.element?this.opt.element:"mark",i=e.splitText(t),o=i.splitText(n-t),a=document.createElement(r);return a.setAttribute("data-markjs","true"),this.opt.className&&a.setAttribute("class",this.opt.className),a.textContent=i.textContent,i.parentNode.replaceChild(a,i),o}},{key:"wrapRangeInMappedTextNode",value:function(e,t,n,r,i){var o=this;e.nodes.every(function(a,s){var c=e.nodes[s+1];if(void 0===c||c.start>t){if(!r(a.node))return!1;var u=t-a.start,l=(n>a.end?a.end:n)-a.start,h=e.value.substr(0,a.start),f=e.value.substr(l+a.start);if(a.node=o.wrapRangeInTextNode(a.node,u,l),e.value=h+f,e.nodes.forEach(function(t,n){n>=s&&(e.nodes[n].start>0&&n!==s&&(e.nodes[n].start-=l),e.nodes[n].end-=l)}),n-=l,i(a.node.previousSibling,a.start),!(n>a.end))return!1;t=a.end}return!0})}},{key:"wrapMatches",value:function(e,t,n,r,i){var o=this,a=0===t?0:t+1;this.getTextNodes(function(t){t.nodes.forEach(function(t){t=t.node;for(var i=void 0;null!==(i=e.exec(t.textContent))&&""!==i[a];)if(n(i[a],t)){var s=i.index;if(0!==a)for(var c=1;c.column,.columns.col-gapless>.column{padding-left:0;padding-right:0}.cols.col-oneline,.columns.col-oneline{-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto}.column,[class~=col-]{-ms-flex:1;flex:1;max-width:100%;padding-left:.4rem;padding-right:.4rem}.column.col-1,.column.col-10,.column.col-11,.column.col-12,.column.col-2,.column.col-3,.column.col-4,.column.col-5,.column.col-6,.column.col-7,.column.col-8,.column.col-9,.column.col-auto,[class~=col-].col-1,[class~=col-].col-10,[class~=col-].col-11,[class~=col-].col-12,[class~=col-].col-2,[class~=col-].col-3,[class~=col-].col-4,[class~=col-].col-5,[class~=col-].col-6,[class~=col-].col-7,[class~=col-].col-8,[class~=col-].col-9,[class~=col-].col-auto{-ms-flex:none;flex:none}.col-12{width:100%}.col-11{width:91.66666667%}.col-10{width:83.33333333%}.col-9{width:75%}.col-8{width:66.66666667%}.col-7{width:58.33333333%}.col-6{width:50%}.col-5{width:41.66666667%}.col-4{width:33.33333333%}.col-3{width:25%}.col-2{width:16.66666667%}.col-1{width:8.33333333%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;max-width:none;width:auto}.col-mx-auto{margin-left:auto;margin-right:auto}.col-ml-auto{margin-left:auto}.col-mr-auto{margin-right:auto}@media (max-width:1280px){.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{-ms-flex:none;flex:none}.col-xl-12{width:100%}.col-xl-11{width:91.66666667%}.col-xl-10{width:83.33333333%}.col-xl-9{width:75%}.col-xl-8{width:66.66666667%}.col-xl-7{width:58.33333333%}.col-xl-6{width:50%}.col-xl-5{width:41.66666667%}.col-xl-4{width:33.33333333%}.col-xl-3{width:25%}.col-xl-2{width:16.66666667%}.col-xl-1{width:8.33333333%}.col-xl-auto{width:auto}.hide-xl{display:none!important}.show-xl{display:block!important}}@media (max-width:960px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto{-ms-flex:none;flex:none}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-auto{width:auto}.hide-lg{display:none!important}.show-lg{display:block!important}}@media (max-width:840px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto{-ms-flex:none;flex:none}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-auto{width:auto}.hide-md{display:none!important}.show-md{display:block!important}}@media (max-width:600px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto{-ms-flex:none;flex:none}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-auto{width:auto}.hide-sm{display:none!important}.show-sm{display:block!important}}@media (max-width:480px){.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-auto{-ms-flex:none;flex:none}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-auto{width:auto}.hide-xs{display:none!important}.show-xs{display:block!important}}.hero{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:4rem;padding-top:4rem}.hero.hero-sm{padding-bottom:2rem;padding-top:2rem}.hero.hero-lg{padding-bottom:8rem;padding-top:8rem}.hero .hero-body{padding:.4rem}.navbar{align-items:stretch;display:-ms-flexbox;display:flex;-ms-flex-align:stretch;-ms-flex-pack:justify;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:space-between}.navbar .navbar-section{align-items:center;display:-ms-flexbox;display:flex;-ms-flex:1 0 0;flex:1 0 0;-ms-flex-align:center}.navbar .navbar-section:not(:first-child):last-child{-ms-flex-pack:end;justify-content:flex-end}.navbar .navbar-center{align-items:center;display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-align:center}.navbar .navbar-brand{font-size:.9rem;text-decoration:none}.accordion input:checked~.accordion-header>.icon:first-child,.accordion[open] .accordion-header>.icon:first-child{transform:rotate(90deg)}.accordion input:checked~.accordion-body,.accordion[open] .accordion-body{max-height:50rem}.accordion .accordion-header{display:block;padding:.2rem .4rem}.accordion .accordion-header .icon{transition:transform .25s}.accordion .accordion-body{margin-bottom:.4rem;max-height:0;overflow:hidden;transition:max-height .25s}summary.accordion-header::-webkit-details-marker{display:none}.avatar{background:#5755d9;border-radius:50%;color:rgba(255,255,255,.85);display:inline-block;font-size:.8rem;font-weight:300;height:1.6rem;line-height:1.25;margin:0;position:relative;vertical-align:middle;width:1.6rem}.avatar.avatar-xs{font-size:.4rem;height:.8rem;width:.8rem}.avatar.avatar-sm{font-size:.6rem;height:1.2rem;width:1.2rem}.avatar.avatar-lg{font-size:1.2rem;height:2.4rem;width:2.4rem}.avatar.avatar-xl{font-size:1.6rem;height:3.2rem;width:3.2rem}.avatar img{border-radius:50%;height:100%;position:relative;width:100%;z-index:1}.avatar .avatar-icon,.avatar .avatar-presence{background:#fff;bottom:14.64%;height:50%;padding:.1rem;position:absolute;right:14.64%;transform:translate(50%,50%);width:50%;z-index:2}.avatar .avatar-presence{background:#bcc3ce;border-radius:50%;box-shadow:0 0 0 .1rem #fff;height:.5em;width:.5em}.avatar .avatar-presence.online{background:#32b643}.avatar .avatar-presence.busy{background:#e85600}.avatar .avatar-presence.away{background:#ffb700}.avatar[data-initial]::before{color:currentColor;content:attr(data-initial);left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);z-index:1}.badge{position:relative;white-space:nowrap}.badge:not([data-badge])::after,.badge[data-badge]::after{background:#5755d9;background-clip:padding-box;border-radius:.5rem;box-shadow:0 0 0 .1rem #fff;color:#fff;content:attr(data-badge);display:inline-block;transform:translate(-.05rem,-.5rem)}.badge[data-badge]::after{font-size:.7rem;height:.9rem;line-height:1;min-width:.9rem;padding:.1rem .2rem;text-align:center;white-space:nowrap}.badge:not([data-badge])::after,.badge[data-badge=""]::after{height:6px;min-width:6px;padding:0;width:6px}.badge.btn::after{position:absolute;right:0;top:0;transform:translate(50%,-50%)}.badge.avatar::after{position:absolute;right:14.64%;top:14.64%;transform:translate(50%,-50%);z-index:100}.breadcrumb{list-style:none;margin:.2rem 0;padding:.2rem 0}.breadcrumb .breadcrumb-item{color:#66758c;display:inline-block;margin:0;padding:.2rem 0}.breadcrumb .breadcrumb-item:not(:last-child){margin-right:.2rem}.breadcrumb .breadcrumb-item:not(:last-child) a{color:#66758c}.breadcrumb .breadcrumb-item:not(:first-child)::before{color:#66758c;content:"/";padding-right:.4rem}.bar{background:#eef0f3;border-radius:.1rem;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:.8rem;width:100%}.bar.bar-sm{height:.2rem}.bar .bar-item{background:#5755d9;color:#fff;display:block;-ms-flex-negative:0;flex-shrink:0;font-size:.7rem;height:100%;line-height:.8rem;position:relative;text-align:center;width:0}.bar .bar-item:first-child{border-bottom-left-radius:.1rem;border-top-left-radius:.1rem}.bar .bar-item:last-child{border-bottom-right-radius:.1rem;border-top-right-radius:.1rem;-ms-flex-negative:1;flex-shrink:1}.bar-slider{height:.1rem;margin:.4rem 0;position:relative}.bar-slider .bar-item{left:0;padding:0;position:absolute}.bar-slider .bar-item:not(:last-child):first-child{background:#eef0f3;z-index:1}.bar-slider .bar-slider-btn{background:#5755d9;border:0;border-radius:50%;height:.6rem;padding:0;position:absolute;right:0;top:50%;transform:translate(50%,-50%);width:.6rem}.bar-slider .bar-slider-btn:active{box-shadow:0 0 0 .1rem #5755d9}.card{background:#fff;border:.05rem solid #dadee4;border-radius:.1rem;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card .card-body,.card .card-footer,.card .card-header{padding:.8rem;padding-bottom:0}.card .card-body:last-child,.card .card-footer:last-child,.card .card-header:last-child{padding-bottom:.8rem}.card .card-body{-ms-flex:1 1 auto;flex:1 1 auto}.card .card-image{padding-top:.8rem}.card .card-image:first-child{padding-top:0}.card .card-image:first-child img{border-top-left-radius:.1rem;border-top-right-radius:.1rem}.card .card-image:last-child img{border-bottom-left-radius:.1rem;border-bottom-right-radius:.1rem}.chip{align-items:center;background:#eef0f3;border-radius:5rem;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;font-size:90%;height:1.2rem;line-height:.8rem;margin:.1rem;max-width:320px;overflow:hidden;padding:.2rem .4rem;text-decoration:none;text-overflow:ellipsis;vertical-align:middle;white-space:nowrap}.chip.active{background:#5755d9;color:#fff}.chip .avatar{margin-left:-.4rem;margin-right:.2rem}.chip .btn-clear{border-radius:50%;transform:scale(.75)}.dropdown{display:inline-block;position:relative}.dropdown .menu{animation:slide-down .15s ease 1;display:none;left:0;max-height:50vh;overflow-y:auto;position:absolute;top:100%}.dropdown.dropdown-right .menu{left:auto;right:0}.dropdown .dropdown-toggle:focus+.menu,.dropdown .menu:hover,.dropdown.active .menu{display:block}.dropdown .btn-group .dropdown-toggle:nth-last-child(2){border-bottom-right-radius:.1rem;border-top-right-radius:.1rem}.empty{background:#f7f8f9;border-radius:.1rem;color:#66758c;padding:3.2rem 1.6rem;text-align:center}.empty .empty-icon{margin-bottom:.8rem}.empty .empty-subtitle,.empty .empty-title{margin:.4rem auto}.empty .empty-action{margin-top:.8rem}.menu{background:#fff;border-radius:.1rem;box-shadow:0 .05rem .2rem rgba(48,55,66,.3);list-style:none;margin:0;min-width:180px;padding:.4rem;transform:translateY(.2rem);z-index:300}.menu.menu-nav{background:0 0;box-shadow:none}.menu .menu-item{margin-top:0;padding:0 .4rem;position:relative;text-decoration:none}.menu .menu-item>a{border-radius:.1rem;color:inherit;display:block;margin:0 -.4rem;padding:.2rem .4rem;text-decoration:none}.menu .menu-item>a:focus,.menu .menu-item>a:hover{background:#f1f1fc;color:#5755d9}.menu .menu-item>a.active,.menu .menu-item>a:active{background:#f1f1fc;color:#5755d9}.menu .menu-item .form-checkbox,.menu .menu-item .form-radio,.menu .menu-item .form-switch{margin:.1rem 0}.menu .menu-item+.menu-item{margin-top:.2rem}.menu .menu-badge{align-items:center;display:-ms-flexbox;display:flex;-ms-flex-align:center;height:100%;position:absolute;right:0;top:0}.menu .menu-badge .label{margin-right:.4rem}.modal{align-items:center;bottom:0;display:none;-ms-flex-align:center;-ms-flex-pack:center;justify-content:center;left:0;opacity:0;overflow:hidden;padding:.4rem;position:fixed;right:0;top:0}.modal.active,.modal:target{display:-ms-flexbox;display:flex;opacity:1;z-index:400}.modal.active .modal-overlay,.modal:target .modal-overlay{background:rgba(247,248,249,.75);bottom:0;cursor:default;display:block;left:0;position:absolute;right:0;top:0}.modal.active .modal-container,.modal:target .modal-container{animation:slide-down .2s ease 1;z-index:1}.modal.modal-sm .modal-container{max-width:320px;padding:0 .4rem}.modal.modal-lg .modal-overlay{background:#fff}.modal.modal-lg .modal-container{box-shadow:none;max-width:960px}.modal-container{background:#fff;border-radius:.1rem;box-shadow:0 .2rem .5rem rgba(48,55,66,.3);display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;max-height:75vh;max-width:640px;padding:0 .8rem;width:100%}.modal-container.modal-fullheight{max-height:100vh}.modal-container .modal-header{color:#303742;padding:.8rem}.modal-container .modal-body{overflow-y:auto;padding:.8rem;position:relative}.modal-container .modal-footer{padding:.8rem;text-align:right}.nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;list-style:none;margin:.2rem 0}.nav .nav-item a{color:#66758c;padding:.2rem .4rem;text-decoration:none}.nav .nav-item a:focus,.nav .nav-item a:hover{color:#5755d9}.nav .nav-item.active>a{color:#505c6e;font-weight:700}.nav .nav-item.active>a:focus,.nav .nav-item.active>a:hover{color:#5755d9}.nav .nav{margin-bottom:.4rem;margin-left:.8rem}.pagination{display:-ms-flexbox;display:flex;list-style:none;margin:.2rem 0;padding:.2rem 0}.pagination .page-item{margin:.2rem .05rem}.pagination .page-item span{display:inline-block;padding:.2rem .2rem}.pagination .page-item a{border-radius:.1rem;display:inline-block;padding:.2rem .4rem;text-decoration:none}.pagination .page-item a:focus,.pagination .page-item a:hover{color:#5755d9}.pagination .page-item.disabled a{cursor:default;opacity:.5;pointer-events:none}.pagination .page-item.active a{background:#5755d9;color:#fff}.pagination .page-item.page-next,.pagination .page-item.page-prev{-ms-flex:1 0 50%;flex:1 0 50%}.pagination .page-item.page-next{text-align:right}.pagination .page-item .page-item-title{margin:0}.pagination .page-item .page-item-subtitle{margin:0;opacity:.5}.panel{border:.05rem solid #dadee4;border-radius:.1rem;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.panel .panel-footer,.panel .panel-header{-ms-flex:0 0 auto;flex:0 0 auto;padding:.8rem}.panel .panel-nav{-ms-flex:0 0 auto;flex:0 0 auto}.panel .panel-body{-ms-flex:1 1 auto;flex:1 1 auto;overflow-y:auto;padding:0 .8rem}.popover{display:inline-block;position:relative}.popover .popover-container{left:50%;opacity:0;padding:.4rem;position:absolute;top:0;transform:translate(-50%,-50%) scale(0);transition:transform .2s;width:320px;z-index:300}.popover :focus+.popover-container,.popover:hover .popover-container{display:block;opacity:1;transform:translate(-50%,-100%) scale(1)}.popover.popover-right .popover-container{left:100%;top:50%}.popover.popover-right :focus+.popover-container,.popover.popover-right:hover .popover-container{transform:translate(0,-50%) scale(1)}.popover.popover-bottom .popover-container{left:50%;top:100%}.popover.popover-bottom :focus+.popover-container,.popover.popover-bottom:hover .popover-container{transform:translate(-50%,0) scale(1)}.popover.popover-left .popover-container{left:0;top:50%}.popover.popover-left :focus+.popover-container,.popover.popover-left:hover .popover-container{transform:translate(-100%,-50%) scale(1)}.popover .card{border:0;box-shadow:0 .2rem .5rem rgba(48,55,66,.3)}.step{display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;list-style:none;margin:.2rem 0;width:100%}.step .step-item{-ms-flex:1 1 0;flex:1 1 0;margin-top:0;min-height:1rem;position:relative;text-align:center}.step .step-item:not(:first-child)::before{background:#5755d9;content:"";height:2px;left:-50%;position:absolute;top:9px;width:100%}.step .step-item a{color:#5755d9;display:inline-block;padding:20px 10px 0;text-decoration:none}.step .step-item a::before{background:#5755d9;border:.1rem solid #fff;border-radius:50%;content:"";display:block;height:.6rem;left:50%;position:absolute;top:.2rem;transform:translateX(-50%);width:.6rem;z-index:1}.step .step-item.active a::before{background:#fff;border:.1rem solid #5755d9}.step .step-item.active~.step-item::before{background:#dadee4}.step .step-item.active~.step-item a{color:#bcc3ce}.step .step-item.active~.step-item a::before{background:#dadee4}.tab{align-items:center;border-bottom:.05rem solid #dadee4;display:-ms-flexbox;display:flex;-ms-flex-align:center;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style:none;margin:.2rem 0 .15rem 0}.tab .tab-item{margin-top:0}.tab .tab-item a{border-bottom:.1rem solid transparent;color:inherit;display:block;margin:0 .4rem 0 0;padding:.4rem .2rem .3rem .2rem;text-decoration:none}.tab .tab-item a:focus,.tab .tab-item a:hover{color:#5755d9}.tab .tab-item a.active,.tab .tab-item.active a{border-bottom-color:#5755d9;color:#5755d9}.tab .tab-item.tab-action{-ms-flex:1 0 auto;flex:1 0 auto;text-align:right}.tab .tab-item .btn-clear{margin-top:-.2rem}.tab.tab-block .tab-item{-ms-flex:1 0 0;flex:1 0 0;text-align:center}.tab.tab-block .tab-item a{margin:0}.tab.tab-block .tab-item .badge[data-badge]::after{position:absolute;right:.1rem;top:.1rem;transform:translate(0,0)}.tab:not(.tab-block) .badge{padding-right:0}.tile{align-content:space-between;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex-align:start;-ms-flex-line-pack:justify}.tile .tile-action,.tile .tile-icon{-ms-flex:0 0 auto;flex:0 0 auto}.tile .tile-content{-ms-flex:1 1 auto;flex:1 1 auto}.tile .tile-content:not(:first-child){padding-left:.4rem}.tile .tile-content:not(:last-child){padding-right:.4rem}.tile .tile-subtitle,.tile .tile-title{line-height:1.2rem}.tile.tile-centered{align-items:center;-ms-flex-align:center}.tile.tile-centered .tile-content{overflow:hidden}.tile.tile-centered .tile-subtitle,.tile.tile-centered .tile-title{margin-bottom:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.toast{background:rgba(48,55,66,.95);border:.05rem solid #303742;border-color:#303742;border-radius:.1rem;color:#fff;display:block;padding:.4rem;width:100%}.toast.toast-primary{background:rgba(87,85,217,.95);border-color:#5755d9}.toast.toast-success{background:rgba(50,182,67,.95);border-color:#32b643}.toast.toast-warning{background:rgba(255,183,0,.95);border-color:#ffb700}.toast.toast-error{background:rgba(232,86,0,.95);border-color:#e85600}.toast a{color:#fff;text-decoration:underline}.toast a.active,.toast a:active,.toast a:focus,.toast a:hover{opacity:.75}.toast .btn-clear{margin:.1rem}.toast p:last-child{margin-bottom:0}.tooltip{position:relative}.tooltip::after{background:rgba(48,55,66,.95);border-radius:.1rem;bottom:100%;color:#fff;content:attr(data-tooltip);display:block;font-size:.7rem;left:50%;max-width:320px;opacity:0;overflow:hidden;padding:.2rem .4rem;pointer-events:none;position:absolute;text-overflow:ellipsis;transform:translate(-50%,.4rem);transition:opacity .2s,transform .2s;white-space:pre;z-index:300}.tooltip:focus::after,.tooltip:hover::after{opacity:1;transform:translate(-50%,-.2rem)}.tooltip.disabled,.tooltip[disabled]{pointer-events:auto}.tooltip.tooltip-right::after{bottom:50%;left:100%;transform:translate(-.2rem,50%)}.tooltip.tooltip-right:focus::after,.tooltip.tooltip-right:hover::after{transform:translate(.2rem,50%)}.tooltip.tooltip-bottom::after{bottom:auto;top:100%;transform:translate(-50%,-.4rem)}.tooltip.tooltip-bottom:focus::after,.tooltip.tooltip-bottom:hover::after{transform:translate(-50%,.2rem)}.tooltip.tooltip-left::after{bottom:50%;left:auto;right:100%;transform:translate(.4rem,50%)}.tooltip.tooltip-left:focus::after,.tooltip.tooltip-left:hover::after{transform:translate(-.2rem,50%)}@keyframes loading{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes slide-down{0%{opacity:0;transform:translateY(-1.6rem)}100%{opacity:1;transform:translateY(0)}}.text-primary{color:#5755d9!important}a.text-primary:focus,a.text-primary:hover{color:#4240d4}a.text-primary:visited{color:#6c6ade}.text-secondary{color:#e5e5f9!important}a.text-secondary:focus,a.text-secondary:hover{color:#d1d0f4}a.text-secondary:visited{color:#fafafe}.text-gray{color:#bcc3ce!important}a.text-gray:focus,a.text-gray:hover{color:#adb6c4}a.text-gray:visited{color:#cbd0d9}.text-light{color:#fff!important}a.text-light:focus,a.text-light:hover{color:#f2f2f2}a.text-light:visited{color:#fff}.text-dark{color:#3b4351!important}a.text-dark:focus,a.text-dark:hover{color:#303742}a.text-dark:visited{color:#455060}.text-success{color:#32b643!important}a.text-success:focus,a.text-success:hover{color:#2da23c}a.text-success:visited{color:#39c94b}.text-warning{color:#ffb700!important}a.text-warning:focus,a.text-warning:hover{color:#e6a500}a.text-warning:visited{color:#ffbe1a}.text-error{color:#e85600!important}a.text-error:focus,a.text-error:hover{color:#cf4d00}a.text-error:visited{color:#ff6003}.bg-primary{background:#5755d9!important;color:#fff}.bg-secondary{background:#f1f1fc!important}.bg-dark{background:#303742!important;color:#fff}.bg-gray{background:#f7f8f9!important}.bg-success{background:#32b643!important;color:#fff}.bg-warning{background:#ffb700!important;color:#fff}.bg-error{background:#e85600!important;color:#fff}.c-hand{cursor:pointer}.c-move{cursor:move}.c-zoom-in{cursor:zoom-in}.c-zoom-out{cursor:zoom-out}.c-not-allowed{cursor:not-allowed}.c-auto{cursor:auto}.d-block{display:block}.d-inline{display:inline}.d-inline-block{display:inline-block}.d-flex{display:-ms-flexbox;display:flex}.d-inline-flex{display:-ms-inline-flexbox;display:inline-flex}.d-hide,.d-none{display:none!important}.d-visible{visibility:visible}.d-invisible{visibility:hidden}.text-hide{background:0 0;border:0;color:transparent;font-size:0;line-height:0;text-shadow:none}.text-assistive{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.divider,.divider-vert{display:block;position:relative}.divider-vert[data-content]::after,.divider[data-content]::after{background:#fff;color:#bcc3ce;content:attr(data-content);display:inline-block;font-size:.7rem;padding:0 .4rem;transform:translateY(-.65rem)}.divider{border-top:.05rem solid #f1f3f5;height:.05rem;margin:.4rem 0}.divider[data-content]{margin:.8rem 0}.divider-vert{display:block;padding:.8rem}.divider-vert::before{border-left:.05rem solid #dadee4;bottom:.4rem;content:"";display:block;left:50%;position:absolute;top:.4rem;transform:translateX(-50%)}.divider-vert[data-content]::after{left:50%;padding:.2rem 0;position:absolute;top:50%;transform:translate(-50%,-50%)}.loading{color:transparent!important;min-height:.8rem;pointer-events:none;position:relative}.loading::after{animation:loading .5s infinite linear;background:0 0;border:.1rem solid #5755d9;border-radius:50%;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:.8rem;left:50%;margin-left:-.4rem;margin-top:-.4rem;opacity:1;padding:0;position:absolute;top:50%;width:.8rem;z-index:1}.loading.loading-lg{min-height:2rem}.loading.loading-lg::after{height:1.6rem;margin-left:-.8rem;margin-top:-.8rem;width:1.6rem}.clearfix::after{clear:both;content:"";display:table}.float-left{float:left!important}.float-right{float:right!important}.p-relative{position:relative!important}.p-absolute{position:absolute!important}.p-fixed{position:fixed!important}.p-sticky{position:-webkit-sticky!important;position:sticky!important}.p-centered{display:block;float:none;margin-left:auto;margin-right:auto}.flex-centered{align-items:center;display:-ms-flexbox;display:flex;-ms-flex-align:center;-ms-flex-pack:center;justify-content:center}.m-0{margin:0!important}.mb-0{margin-bottom:0!important}.ml-0{margin-left:0!important}.mr-0{margin-right:0!important}.mt-0{margin-top:0!important}.mx-0{margin-left:0!important;margin-right:0!important}.my-0{margin-bottom:0!important;margin-top:0!important}.m-1{margin:.2rem!important}.mb-1{margin-bottom:.2rem!important}.ml-1{margin-left:.2rem!important}.mr-1{margin-right:.2rem!important}.mt-1{margin-top:.2rem!important}.mx-1{margin-left:.2rem!important;margin-right:.2rem!important}.my-1{margin-bottom:.2rem!important;margin-top:.2rem!important}.m-2{margin:.4rem!important}.mb-2{margin-bottom:.4rem!important}.ml-2{margin-left:.4rem!important}.mr-2{margin-right:.4rem!important}.mt-2{margin-top:.4rem!important}.mx-2{margin-left:.4rem!important;margin-right:.4rem!important}.my-2{margin-bottom:.4rem!important;margin-top:.4rem!important}.p-0{padding:0!important}.pb-0{padding-bottom:0!important}.pl-0{padding-left:0!important}.pr-0{padding-right:0!important}.pt-0{padding-top:0!important}.px-0{padding-left:0!important;padding-right:0!important}.py-0{padding-bottom:0!important;padding-top:0!important}.p-1{padding:.2rem!important}.pb-1{padding-bottom:.2rem!important}.pl-1{padding-left:.2rem!important}.pr-1{padding-right:.2rem!important}.pt-1{padding-top:.2rem!important}.px-1{padding-left:.2rem!important;padding-right:.2rem!important}.py-1{padding-bottom:.2rem!important;padding-top:.2rem!important}.p-2{padding:.4rem!important}.pb-2{padding-bottom:.4rem!important}.pl-2{padding-left:.4rem!important}.pr-2{padding-right:.4rem!important}.pt-2{padding-top:.4rem!important}.px-2{padding-left:.4rem!important;padding-right:.4rem!important}.py-2{padding-bottom:.4rem!important;padding-top:.4rem!important}.s-rounded{border-radius:.1rem}.s-circle{border-radius:50%}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-normal{font-weight:400}.text-bold{font-weight:700}.text-italic{font-style:italic}.text-large{font-size:1.2em}.text-small{font-size:.9em}.text-tiny{font-size:.8em}.text-muted{opacity:.8}.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-clip{overflow:hidden;text-overflow:clip;white-space:nowrap}.text-break{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word} \ No newline at end of file diff --git a/static/spectre-0.5.9.min.css.ABOUT b/static/spectre-0.5.9.min.css.ABOUT deleted file mode 100644 index 97475b5737..0000000000 --- a/static/spectre-0.5.9.min.css.ABOUT +++ /dev/null @@ -1,13 +0,0 @@ -about_resource: spectre-0.5.9.min.css -name: spectre.css -version: 0.5.9 -download_url: https://github.com/picturepan2/spectre/archive/v0.5.9.zip -description: 'Spectre.css: A lightweight, responsive and modern CSS framework' -homepage_url: http://picturepan2.github.io/spectre -license_expression: mit -attribute: yes -package_url: pkg:npm/spectre.css@0.5.9 -licenses: - - key: mit - name: MIT License - file: mit.LICENSE diff --git a/templates/base.html b/templates/base.html deleted file mode 100644 index 55d2803c87..0000000000 --- a/templates/base.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - {% block title %}{% endblock %} - - - - {% block extrahead %}{% endblock %} - - - {% include 'header.html' %} - {% block content %}{% endblock %} - {% include 'footer.html' %} - {% block scripts %}{% endblock %} - - \ No newline at end of file diff --git a/templates/footer.html b/templates/footer.html deleted file mode 100644 index 43eec32c6f..0000000000 --- a/templates/footer.html +++ /dev/null @@ -1,12 +0,0 @@ -
- -
\ No newline at end of file diff --git a/templates/header.html b/templates/header.html deleted file mode 100644 index d350fd3bea..0000000000 --- a/templates/header.html +++ /dev/null @@ -1,17 +0,0 @@ -
- -
\ No newline at end of file diff --git a/templates/help.html b/templates/help.html deleted file mode 100644 index 6e7edf2f8a..0000000000 --- a/templates/help.html +++ /dev/null @@ -1,199 +0,0 @@ -{% extends "base.html" %} - -{% block title %}LicenseDB: Help{% endblock %} - -{% block content %} -
- - -

- Field Definitions -

-
-
key
-
- The unique identifier for the license in the ScanCode LicenseDB as assigned by scancode-toolkit. - Note that this identifier is permanent and never changes and never goes away once published: no license key is ever deleted. - Instead a license can be marked as deprecated. -
- -
short_name
-
A short descriptive name (title) for the license in the ScanCode LicenseDB as assigned by scancode-toolkit.
- -
name
-
A long name for the license in the ScanCode LicenseDB as assigned by scancode-toolkit.
- -
is_deprecated
-
- When this is “yes”, the license is no longer used. For deprecated licenses, the notes may contain commentaries - and the license key that this license may be replaced by when relevant. -
- -
spdx_license_key
-
- The SPDX Short Identifier for the license if it exists in the SPDX license list at - https://spdx.org/licenses/. - Otherwise this is an SPDX license reference in the form of LicenseRef-scancode-<license key>. -
- -
other_spdx_license_keys
-
Alternative (or older, deprecated or obsolete) SPDX Short Identifiers or LicenseRef for the license.
- -
text_urls
-
URLs to the standard text of the license.
- -
notes
-
Notes and comments about the license.
- -
category
-
- A license category code, assigned by scancode-toolkit, that provides a major grouping for licenses, - generally describing the relationship between the licensor and the licensee. These license categories are not - legally precise, and are only intended to support Software Composition Analysis and usage policy implementations. -
- -
owner
-
- An owner is an entity that is the original author or custodian of a software license, and which may be responsible - for the text of the license. This is mandatory and should be set to "Unspecified" if it cannot be determined. -
- -
homepage_url
-
The homepage URL where the license is described.
- -
other_urls
-
- Other URLs that identify or are related to this license, such as URLs to this license in different open-source projects. - Obsolete links may be kept here, as they may be useful for historical analysis purposes. -
- -
osi_license_key
-
The identifier assigned by the OSI to a license for OSI-approved licenses.
- -
osi_url
-
A URL on the OSI website http://opensource.org for OSI-approved licenses.
- -
faq_url
-
A URL that provides answers to frequently asked questions about the license.
- -
is_exception
-
- When this is "yes", indicates that this license is actually an exception applied to another license in order to - modify specific conditions of that other license. -
- -
standard_notice
-
The standard text to provide in source or documentation that identifies the license or exception that applies to the software.
-
- -
These fields are used only to support certain technical aspects of code scanning:
-
-
ignorable_urls
-
URLs found in the license text but that can be ignored when scanning for URLs.
- -
ignorable_emails
-
Email addresses found in the license text but that can be ignored when scanning for emails.
- -
ignorable_copyrights
-
Copyright statements found in the license text but that can be ignored when scanning for copyright.
- -
ignorable_holders
-
Copyright holders found in the license text but that can be ignored when scanning for copyright holders.
- -
ignorable_authors
-
Author names found in the license text but that can be ignored when scanning for authors.
- -
minimum_coverage
-
Minimum percentage of the license text words that need to be matched to consider a license detection as a valid match.
-
- -
-

- License Categories -

-
-
Commercial
-
- A direct commercial license between a supplier and a customer. - Further fact-finding by a Product Team will be necessary to determine how the license conditions apply to use of the software. - This is a Proprietary license that is not Open Source. -
- -
Copyleft
-
- A license that offers irrevocable permission to the public to copy and redistribute the work in the same or modified form, - but with the conditions that all such redistributions make the work available in a form that facilitates further modification - and uses the same license terms. A Copyleft license can require code interacting with Copyleft-licensed code to be licensed under - the same license or a compatible license. This is an Open Source license. This category may be described as “Strong Copyleft”. -
- -
Copyleft Limited
-
- A license that requires you to redistribute source code, including your changes, and to provide attribution for the software authors. - Your obligation to redistribute source code, including proprietary code linked with code under this license, - is limited according to license-specific rules. This is an Open Source license. This category may be described as “Weak Copyleft”. -
- -
Free Restricted
-
- A Permissive-style license that contains restrictions regarding the usage of the software (e.g. where the software is not - intended for use in nuclear power plants) or the redistribution of the software (e.g. where commercial redistribution of - the software is not allowed or allowed only with express permission). The Free Software Foundation (FSF) says that a license - with this kind of restriction is not really open source, although the OSI point of view is not that strict. - This is a Proprietary license that is not Open Source. -
- -
Patent License
-
- A license that applies to patents rather than specific software. May be used in conjunction with other software license(s) that - apply to a software component. -
- -
Permissive
-
- A license that requires you to provide attribution for the software authors and may include other conditions. - This is an Open Source license. -
- -
Proprietary Free
-
- A license that does not require a supplier-customer contract, but has specific terms and conditions which a Product Team - is obligated to follow. These terms and conditions may be documented in the code and/or from a webpage where you must accept - the license (i.e. click-through). This is a Proprietary license that is not Open Source. -
- -
Public Domain
-
- “Public Domain” as a license category means software that is not restricted by copyright. - This is most often applicable to a software component because the person entitled to control the copyright has disclaimed that - right in a notice (“dedication”) that appears similar to a license. It is possible for software to be in the public domain - because the copyright has expired, but this is rarely relevant for software due to the long duration of copyrights in most jurisdictions. - The rules for disclaiming copyright and copyright expiration dates vary widely by jurisdiction. - A public domain dedication may apply to software code examples on a website, published public domain specifications or - another type of publication. Public Domain is typically treated as similar to an Open Source license even though it is not an - Open Source license. -
- -
Source-available
-
- A license where the software is released through a source code distribution model that includes conditions where the source - can be viewed, and in some cases modified, but without meeting the criteria to be called Open Source. - The most common restriction is for “field of use”. This is a Proprietary license that is not Open Source. -
- -
Unstated License
-
- “Unstated License” as a license category means third-party software that has a copyright notice, but no stated license. - Common examples include code snippets from publications and websites. The absence of a license poses a risk that the copyright - owner may assert license conditions at some future time. A Product Team may need to contact the copyright owner to determine the - license conditions, if any. -
-
-
-{% endblock %} \ No newline at end of file diff --git a/templates/license_details.html b/templates/license_details.html deleted file mode 100644 index 687df86de7..0000000000 --- a/templates/license_details.html +++ /dev/null @@ -1,62 +0,0 @@ -{% extends "base.html" %} - -{% block title %}LicenseDB: {{ license.key }}{% endblock %} - -{% block extrahead %} - - -{% endblock %} - -{% block content %} -
-
- back to list - - yml - - json - - text - - edit text - - edit data -
-
- {% for label, value in license_data.items() %} -
{{ label }}
-
- {% if value is iterable and value is not string %} -
    - {% for item in value %}
  • {{ item|urlize(target='_blank') }}
  • {% endfor %} -
- {% else %} - {{ value|urlize(target='_blank') }} - {% endif %} -
- {% endfor %} -
-
license_text
-
{{ license.text }}
-
-{% endblock %} - -{% block scripts %} - -{% endblock %} \ No newline at end of file diff --git a/templates/license_list.html b/templates/license_list.html deleted file mode 100644 index d6c789a47d..0000000000 --- a/templates/license_list.html +++ /dev/null @@ -1,120 +0,0 @@ -{% extends "base.html" %} - -{% block title %}LicenseDB{% endblock %} - -{% block extrahead %} - - -{% endblock %} - -{% block content %} -
-
- - - - - - - - - - - - {% for key, license in licenses.items() %} - - - - - - - - {% endfor %} - - -
-{% endblock %} - -{% block scripts %} - -{% endblock %} \ No newline at end of file From d65142d6612d3c439dfd8747c4cd6d313f3b710c Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Tue, 10 Jan 2023 02:03:36 +0530 Subject: [PATCH 2/5] Update makefile to use develop branch * update makefile to generate licensedb website from scancode-toolkit develop instead of latest release Signed-off-by: Ayan Sinha Mahapatra --- Makefile | 26 ++++++-------------------- 1 file changed, 6 insertions(+), 20 deletions(-) diff --git a/Makefile b/Makefile index 06278e5087..42decf265f 100644 --- a/Makefile +++ b/Makefile @@ -34,34 +34,20 @@ ACTIVATE=. bin/activate; BLACK_ARGS=--exclude="docs" . conf: - @echo "-> Configure the Python venv and install dependencies" + @echo "-> Configure the Python venv, clone and install scancode-toolkit" ${PYTHON_EXE} -m venv venv + @git clone git@github.com:nexB/scancode-toolkit.git @venv/bin/pip install --upgrade pip - @venv/bin/pip install scancode-toolkit - -upgrade: - @echo "-> Configure the Python venv and install dependencies" - @venv/bin/pip install --upgrade scancode-toolkit + @venv/bin/pip install -e ./scancode-toolkit/ clean: # Remove the whole content of docs/ except for the CNAME file find docs/* ! -name 'CNAME' -exec git rm -r {} + - -isort: - @echo "-> Apply isort changes to ensure proper imports ordering" - @venv/bin/pip install isort==5.6.4 - @venv/bin/isort app.py - -black: - @echo "-> Apply black code formatter" - @venv/bin/pip install black==20.8b1 isort - @venv/bin/black ${BLACK_ARGS} - -valid: isort black + find scancode-toolkit/* -exec git rm -r {} + html: @echo "-> Generate the HTML content" - @${ACTIVATE} scancode --get-license-data docs/ + @venv/bin/scancode --dump-license-data docs/ @echo "Available at docs/index.html" build: conf html @@ -73,4 +59,4 @@ publish: @echo "-> Push changes to main repo" @git push -.PHONY: conf clean isort black valid html build publish +.PHONY: conf clean html build publish From 0f8852e9effbf155f3e9d83585daec2835363d02 Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Wed, 11 Jan 2023 00:59:24 +0530 Subject: [PATCH 3/5] Add scripts to access and update last commit hash for scancode Signed-off-by: Ayan Sinha Mahapatra --- Makefile | 7 +++ etc/last_commit.json | 3 ++ etc/scripts/check_commit.py | 61 ++++++++++++++++++++++++++ etc/scripts/check_commit_run_update.sh | 25 +++++++++++ 4 files changed, 96 insertions(+) create mode 100644 etc/last_commit.json create mode 100644 etc/scripts/check_commit.py create mode 100755 etc/scripts/check_commit_run_update.sh diff --git a/Makefile b/Makefile index 42decf265f..13e072a968 100644 --- a/Makefile +++ b/Makefile @@ -40,8 +40,15 @@ conf: @venv/bin/pip install --upgrade pip @venv/bin/pip install -e ./scancode-toolkit/ +restore: + # Restores the repository to a clean state + git clean -fd + rm -rf scancode-toolkit/ + git restore --worktree docs/ + clean: # Remove the whole content of docs/ except for the CNAME file + # Remove the whole content of scancode-toolkit/ find docs/* ! -name 'CNAME' -exec git rm -r {} + find scancode-toolkit/* -exec git rm -r {} + diff --git a/etc/last_commit.json b/etc/last_commit.json new file mode 100644 index 0000000000..238e57c1ee --- /dev/null +++ b/etc/last_commit.json @@ -0,0 +1,3 @@ +{ + "commit_hash": "0aa964e00d" +} \ No newline at end of file diff --git a/etc/scripts/check_commit.py b/etc/scripts/check_commit.py new file mode 100644 index 0000000000..1b8e77a2c4 --- /dev/null +++ b/etc/scripts/check_commit.py @@ -0,0 +1,61 @@ +# -*- coding: utf-8 -*- +# +# Copyright (c) nexB Inc. and others. All rights reserved. +# ScanCode is a trademark of nexB Inc. +# SPDX-License-Identifier: Apache-2.0 +# See http://www.apache.org/licenses/LICENSE-2.0 for the license text. +# See https://github.com/nexB/scancode-toolkit for support or download. +# See https://aboutcode.org for more information about nexB OSS projects. +# + +import click +import json +import os + + +def load_json(path): + with open(path, 'r') as file_handler: + data = json.load(file_handler) + return data + + +def write_json(data, path): + with open(path, 'w') as file_handler: + json.dump(data, file_handler, indent=2) + + +class NoNewCommitException(Exception): + pass + + +@click.command() +@click.option('--commit', + type=click.STRING, + default=None, + metavar='FILE', +) +def cli(commit): + """ + Check if the commit `commit` at which the licensedb was last generated + and verify whether there are new commits. + + - If there are new commits, write the last commit has to last_commit.json + - If there are no new commits, fail loudly. + """ + path = os.path.join( + os.path.dirname(os.path.dirname(os.path.abspath(__file__))), + "last_commit.json" + ) + + data_commit_old = load_json(path=path) + commit_old = data_commit_old["commit_hash"] + + if commit == commit_old: + raise NoNewCommitException("There are no new commits in scancode-toolkit develop") + else: + data_commit_old["commit_hash"] = commit + write_json(data=data_commit_old, path=path) + + +if __name__ == '__main__': + cli() diff --git a/etc/scripts/check_commit_run_update.sh b/etc/scripts/check_commit_run_update.sh new file mode 100755 index 0000000000..5c3507f266 --- /dev/null +++ b/etc/scripts/check_commit_run_update.sh @@ -0,0 +1,25 @@ +#! /bin/bash +# Halt script on error +set -e + +# Clear the repository +make restore + +# Create a virtualenv and clone scancode +make conf + +# Get the latest commit +cd scancode-toolkit +COMMIT_LATEST="$(git log -1 --format=format:'%h' --abbrev-commit)" +cd ../ + +# Check if scancode develop has new commits +# if yes, update latest commit and continue +# if no, fail here +python3 ./etc/scripts/check_commit.py --commit "$COMMIT_LATEST" + +# build docs +make html + +# delete cloned scancode as only the doc updates should be commited +rm -rf scancode-toolkit/ From 43086a6d5a622eace3cc28d431d01d3e97d490fe Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Thu, 12 Jan 2023 21:25:23 +0530 Subject: [PATCH 4/5] Add CI to run daily from scancode develop * Use https for git clone * Add github actions to build licenseDB from scancode develop daily and push to repository Signed-off-by: Ayan Sinha Mahapatra --- .github/workflows/daily-update.yml | 34 ++++++++++++++++++++++++++ Makefile | 8 +++--- README.rst | 18 ++++++-------- etc/scripts/check_commit.py | 8 +++++- etc/scripts/check_commit_run_update.sh | 2 +- 5 files changed, 53 insertions(+), 17 deletions(-) create mode 100644 .github/workflows/daily-update.yml diff --git a/.github/workflows/daily-update.yml b/.github/workflows/daily-update.yml new file mode 100644 index 0000000000..d5031ff227 --- /dev/null +++ b/.github/workflows/daily-update.yml @@ -0,0 +1,34 @@ +name: Update LicenseDB with latest updates from scancode-toolkit develop daily +on: + schedule: + - cron: '0 16 * * 0-6' + +jobs: + update_licenseDB: + name: Daily LicenseDB Update + runs-on: ubuntu-latest + + defaults: + run: + shell: bash + + steps: + - uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v1 + with: + python-version: 3.8 + + - name: Give execute access to the script + run: chmod u+x ./etc/scripts/check_commit_run_update.sh + + - name: Run script + run: ./etc/scripts/check_commit_run_update.sh + + - name: Commit and Push to Publish + run: | + git config --global user.name 'LicenseDB Update GitHub Action' + git config --global user.email 'asmahapatra@nexb.com' + git commit -am "Automated LicenseDB update with latest from scancode-toolkit develop" + git push diff --git a/Makefile b/Makefile index 13e072a968..b77c895026 100644 --- a/Makefile +++ b/Makefile @@ -36,12 +36,12 @@ BLACK_ARGS=--exclude="docs" . conf: @echo "-> Configure the Python venv, clone and install scancode-toolkit" ${PYTHON_EXE} -m venv venv - @git clone git@github.com:nexB/scancode-toolkit.git + @git clone https://github.com/nexB/scancode-toolkit.git @venv/bin/pip install --upgrade pip @venv/bin/pip install -e ./scancode-toolkit/ restore: - # Restores the repository to a clean state + @echo "-> Restoring the repository to a clean state" git clean -fd rm -rf scancode-toolkit/ git restore --worktree docs/ @@ -54,7 +54,7 @@ clean: html: @echo "-> Generate the HTML content" - @venv/bin/scancode --dump-license-data docs/ + @venv/bin/scancode-license-data --path docs/ @echo "Available at docs/index.html" build: conf html @@ -62,7 +62,7 @@ build: conf html publish: @echo "-> Add changes to git" @git add . - git commit -m "Upgrade ScanCode-toolkit to latest version" + git commit -m "Upgrade with latest updates from ScanCode-toolkit develop" @echo "-> Push changes to main repo" @git push diff --git a/README.rst b/README.rst index 97b2b84823..1a01bb578b 100644 --- a/README.rst +++ b/README.rst @@ -28,6 +28,9 @@ Browse The web site is published at: https://scancode-licensedb.aboutcode.org/ You can search the licenses by name, key and other attributes. +This is updated daily by a GitHub action with updates from scancode-toolkit +develop, if any. + API ------ @@ -51,7 +54,9 @@ license details and texts using this license key as an identifier: This index and the static website is also available offline with ScanCode Toolkit as a -command line option `--get-license-data`. +console script available at configure/install. Sample command:: + + scancode-license-data --path PATH Git @@ -82,16 +87,7 @@ Build To re/generate the HTML and API content use this command:: - $ make build - - -Upgrade -------- - -To upgrade to the latest scancode-toolkit and generate the HTML and API content -run this command:: - - $ make clean upgrade build publish + $ make restore conf html License diff --git a/etc/scripts/check_commit.py b/etc/scripts/check_commit.py index 1b8e77a2c4..f2bf8578f9 100644 --- a/etc/scripts/check_commit.py +++ b/etc/scripts/check_commit.py @@ -50,9 +50,15 @@ def cli(commit): data_commit_old = load_json(path=path) commit_old = data_commit_old["commit_hash"] + msg = ( + f"There are no new commits in scancode-toolkit develop after {commit_old}." + "Aborting LicenseDB update." + ) + if commit == commit_old: - raise NoNewCommitException("There are no new commits in scancode-toolkit develop") + raise NoNewCommitException(msg) else: + click.secho(f" -> There are new commits in scancode-toolkit develop, updating last commit to {commit}.") data_commit_old["commit_hash"] = commit write_json(data=data_commit_old, path=path) diff --git a/etc/scripts/check_commit_run_update.sh b/etc/scripts/check_commit_run_update.sh index 5c3507f266..3e10d60c06 100755 --- a/etc/scripts/check_commit_run_update.sh +++ b/etc/scripts/check_commit_run_update.sh @@ -16,7 +16,7 @@ cd ../ # Check if scancode develop has new commits # if yes, update latest commit and continue # if no, fail here -python3 ./etc/scripts/check_commit.py --commit "$COMMIT_LATEST" +venv/bin/python ./etc/scripts/check_commit.py --commit "$COMMIT_LATEST" # build docs make html From 38ce06a431ae68a37af2d60702be15e6a0c131b5 Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Thu, 12 Jan 2023 21:58:00 +0530 Subject: [PATCH 5/5] Add updates from latest scancode develop `0aa964e00d` Signed-off-by: Ayan Sinha Mahapatra --- docs/389-exception.LICENSE | 46 + docs/389-exception.html | 5 +- docs/389-exception.json | 20 +- docs/389-exception.yml | 1 + docs/3com-microcode.LICENSE | 11 +- docs/3com-microcode.html | 9 +- docs/3com-microcode.json | 10 +- docs/3dslicer-1.0.LICENSE | 18 + docs/3dslicer-1.0.html | 3 +- docs/3dslicer-1.0.json | 21 +- docs/4suite-1.1.LICENSE | 21 + docs/4suite-1.1.html | 3 +- docs/4suite-1.1.json | 26 +- docs/996-icu-1.0.LICENSE | 13 + docs/996-icu-1.0.html | 3 +- docs/996-icu-1.0.json | 14 +- docs/abrms.LICENSE | 12 +- docs/abrms.html | 6 +- docs/abrms.json | 10 +- docs/abstyles.LICENSE | 13 +- docs/abstyles.html | 6 +- docs/abstyles.json | 11 +- docs/ac3filter.LICENSE | 20 + docs/ac3filter.html | 3 +- docs/ac3filter.json | 16 +- docs/accellera-systemc.LICENSE | 24 + docs/accellera-systemc.html | 3 +- docs/accellera-systemc.json | 29 +- docs/acdl-1.0.LICENSE | 25 + docs/acdl-1.0.html | 3 +- docs/acdl-1.0.json | 31 +- docs/ace-tao.LICENSE | 23 + docs/ace-tao.html | 3 +- docs/ace-tao.json | 26 +- docs/acroname-bdk.LICENSE | 18 + docs/acroname-bdk.html | 3 +- docs/acroname-bdk.json | 22 +- docs/activestate-community-2012.LICENSE | 20 + docs/activestate-community-2012.html | 3 +- docs/activestate-community-2012.json | 17 +- docs/activestate-community.LICENSE | 19 + docs/activestate-community.html | 3 +- docs/activestate-community.json | 21 +- docs/activestate-komodo-edit.LICENSE | 16 + docs/activestate-komodo-edit.html | 3 +- docs/activestate-komodo-edit.json | 19 +- docs/actuate-birt-ihub-ftype-sla.LICENSE | 16 + docs/actuate-birt-ihub-ftype-sla.html | 3 +- docs/actuate-birt-ihub-ftype-sla.json | 19 +- docs/ada-linking-exception.LICENSE | 40 + docs/ada-linking-exception.html | 3 +- docs/ada-linking-exception.json | 15 +- docs/adapt-1.0.LICENSE | 18 + docs/adapt-1.0.html | 3 +- docs/adapt-1.0.json | 20 +- docs/adaptec-downloadable.LICENSE | 12 + docs/adaptec-downloadable.html | 3 +- docs/adaptec-downloadable.json | 13 +- docs/adaptec-eula.LICENSE | 10 + docs/adaptec-eula.html | 3 +- docs/adaptec-eula.json | 10 +- docs/adcolony-tos-2022.LICENSE | 462 + docs/adcolony-tos-2022.html | 614 + docs/adcolony-tos-2022.json | 16 + docs/adcolony-tos-2022.yml | 12 + docs/addthis-mobile-sdk-1.0.LICENSE | 17 + docs/addthis-mobile-sdk-1.0.html | 3 +- docs/addthis-mobile-sdk-1.0.json | 20 +- docs/adi-bsd.LICENSE | 22 + docs/adi-bsd.html | 3 +- docs/adi-bsd.json | 14 +- docs/adobe-acrobat-reader-eula.LICENSE | 13 + docs/adobe-acrobat-reader-eula.html | 3 +- docs/adobe-acrobat-reader-eula.json | 15 +- docs/adobe-air-sdk-2014.LICENSE | 19 + docs/adobe-air-sdk-2014.html | 3 +- docs/adobe-air-sdk-2014.json | 21 +- docs/adobe-air-sdk.LICENSE | 18 + docs/adobe-air-sdk.html | 3 +- docs/adobe-air-sdk.json | 20 +- docs/adobe-color-profile-bundling.LICENSE | 13 + docs/adobe-color-profile-bundling.html | 3 +- docs/adobe-color-profile-bundling.json | 14 +- docs/adobe-color-profile-license.LICENSE | 10 + docs/adobe-color-profile-license.html | 3 +- docs/adobe-color-profile-license.json | 10 +- docs/adobe-dng-sdk.LICENSE | 15 + docs/adobe-dng-sdk.html | 3 +- docs/adobe-dng-sdk.json | 17 +- docs/adobe-dng-spec-patent.LICENSE | 13 + docs/adobe-dng-spec-patent.html | 3 +- docs/adobe-dng-spec-patent.json | 14 +- docs/adobe-eula.LICENSE | 16 + docs/adobe-eula.html | 3 +- docs/adobe-eula.json | 15 +- docs/adobe-flash-player-eula-21.0.LICENSE | 29 + docs/adobe-flash-player-eula-21.0.html | 3 +- docs/adobe-flash-player-eula-21.0.json | 30 +- docs/adobe-flex-4-sdk.LICENSE | 17 + docs/adobe-flex-4-sdk.html | 3 +- docs/adobe-flex-4-sdk.json | 19 +- docs/adobe-flex-sdk.LICENSE | 12 + docs/adobe-flex-sdk.html | 3 +- docs/adobe-flex-sdk.json | 13 +- docs/adobe-general-tou.LICENSE | 24 + docs/adobe-general-tou.html | 3 +- docs/adobe-general-tou.json | 27 +- docs/adobe-glyph.LICENSE | 10 + docs/adobe-glyph.html | 3 +- docs/adobe-glyph.json | 10 +- docs/adobe-indesign-sdk.LICENSE | 13 + docs/adobe-indesign-sdk.html | 3 +- docs/adobe-indesign-sdk.json | 14 +- docs/adobe-postscript.LICENSE | 12 +- docs/adobe-postscript.html | 6 +- docs/adobe-postscript.json | 10 +- docs/adobe-scl.LICENSE | 14 + docs/adobe-scl.html | 3 +- docs/adobe-scl.json | 16 +- docs/adrian.LICENSE | 13 + docs/adrian.html | 3 +- docs/adrian.json | 15 +- docs/adsl.LICENSE | 10 + docs/adsl.html | 3 +- docs/adsl.json | 10 +- docs/aes-128-3.0.LICENSE | 12 +- docs/aes-128-3.0.html | 6 +- docs/aes-128-3.0.json | 10 +- docs/afl-1.1.LICENSE | 25 + docs/afl-1.1.html | 3 +- docs/afl-1.1.json | 29 +- docs/afl-1.2.LICENSE | 27 +- docs/afl-1.2.html | 7 +- docs/afl-1.2.json | 26 +- docs/afl-2.0.LICENSE | 17 + docs/afl-2.0.html | 3 +- docs/afl-2.0.json | 19 +- docs/afl-2.1.LICENSE | 22 + docs/afl-2.1.html | 3 +- docs/afl-2.1.json | 26 +- docs/afl-3.0.LICENSE | 25 + docs/afl-3.0.html | 3 +- docs/afl-3.0.json | 29 +- docs/afmparse.LICENSE | 10 + docs/afmparse.html | 3 +- docs/afmparse.json | 10 +- docs/afpl-8.0.LICENSE | 20 +- docs/afpl-8.0.html | 6 +- docs/afpl-8.0.json | 20 +- docs/afpl-9.0.LICENSE | 19 +- docs/afpl-9.0.html | 6 +- docs/afpl-9.0.json | 19 +- docs/agentxpp.LICENSE | 12 + docs/agentxpp.html | 3 +- docs/agentxpp.json | 13 +- docs/agere-bsd.LICENSE | 31 +- docs/agere-bsd.html | 6 +- docs/agere-bsd.json | 15 +- docs/agere-sla.LICENSE | 12 + docs/agere-sla.html | 3 +- docs/agere-sla.json | 13 +- docs/ago-private-1.0.LICENSE | 11 + docs/ago-private-1.0.html | 3 +- docs/ago-private-1.0.json | 12 +- docs/agpl-1.0-plus.LICENSE | 29 + docs/agpl-1.0-plus.html | 3 +- docs/agpl-1.0-plus.json | 29 +- docs/agpl-1.0.LICENSE | 24 + docs/agpl-1.0.html | 3 +- docs/agpl-1.0.json | 28 +- docs/agpl-2.0.LICENSE | 17 + docs/agpl-2.0.html | 3 +- docs/agpl-2.0.json | 20 +- docs/agpl-3.0-bacula.LICENSE | 13 + docs/agpl-3.0-bacula.html | 3 +- docs/agpl-3.0-bacula.json | 14 +- docs/agpl-3.0-linking-exception.LICENSE | 14 +- docs/agpl-3.0-linking-exception.html | 6 +- docs/agpl-3.0-linking-exception.json | 12 +- docs/agpl-3.0-openssl.LICENSE | 10 + docs/agpl-3.0-openssl.html | 6 +- docs/agpl-3.0-openssl.json | 11 +- docs/agpl-3.0-plus.LICENSE | 37 +- docs/agpl-3.0-plus.html | 6 +- docs/agpl-3.0-plus.json | 39 +- docs/agpl-3.0.LICENSE | 36 +- docs/agpl-3.0.html | 6 +- docs/agpl-3.0.json | 38 +- docs/agpl-generic-additional-terms.LICENSE | 12 + docs/agpl-generic-additional-terms.html | 3 +- docs/agpl-generic-additional-terms.json | 12 +- docs/aladdin-md5.LICENSE | 12 +- docs/aladdin-md5.html | 6 +- docs/aladdin-md5.json | 10 +- docs/alasir.LICENSE | 10 + docs/alasir.html | 3 +- docs/alasir.json | 10 +- docs/alexisisaac-freeware.LICENSE | 12 + docs/alexisisaac-freeware.html | 3 +- docs/alexisisaac-freeware.json | 13 +- docs/alfresco-exception-0.5.LICENSE | 16 +- docs/alfresco-exception-0.5.html | 6 +- docs/alfresco-exception-0.5.json | 15 +- docs/allegro-4.LICENSE | 15 + docs/allegro-4.html | 3 +- docs/allegro-4.json | 14 +- docs/allen-institute-software-2018.LICENSE | 20 + docs/allen-institute-software-2018.html | 3 +- docs/allen-institute-software-2018.json | 17 +- docs/altermime.LICENSE | 18 + docs/altermime.html | 3 +- docs/altermime.json | 22 +- docs/altova-eula.LICENSE | 19 + docs/altova-eula.html | 3 +- docs/altova-eula.json | 22 +- docs/amazon-redshift-jdbc.LICENSE | 10 + docs/amazon-redshift-jdbc.html | 3 +- docs/amazon-redshift-jdbc.json | 10 +- docs/amazon-sl.LICENSE | 19 + docs/amazon-sl.html | 3 +- docs/amazon-sl.json | 23 +- docs/amd-historical.LICENSE | 9 + docs/amd-historical.html | 6 +- docs/amd-historical.json | 10 +- docs/amd-linux-firmware-export.LICENSE | 14 + docs/amd-linux-firmware-export.html | 3 +- docs/amd-linux-firmware-export.json | 16 +- docs/amd-linux-firmware.LICENSE | 10 + docs/amd-linux-firmware.html | 3 +- docs/amd-linux-firmware.json | 10 +- docs/amdplpa.LICENSE | 10 + docs/amdplpa.html | 3 +- docs/amdplpa.json | 10 +- docs/aml.LICENSE | 10 + docs/aml.html | 3 +- docs/aml.json | 10 +- docs/amlogic-linux-firmware.LICENSE | 10 + docs/amlogic-linux-firmware.html | 3 +- docs/amlogic-linux-firmware.json | 10 +- docs/ampas.LICENSE | 12 + docs/ampas.html | 3 +- docs/ampas.json | 13 +- docs/ams-fonts.LICENSE | 14 +- docs/ams-fonts.html | 5 +- docs/ams-fonts.json | 13 +- docs/android-sdk-2009.LICENSE | 10 + docs/android-sdk-2009.html | 3 +- docs/android-sdk-2009.json | 10 +- docs/android-sdk-2012.LICENSE | 14 +- docs/android-sdk-2012.html | 6 +- docs/android-sdk-2012.json | 13 +- docs/android-sdk-2021.LICENSE | 16 + docs/android-sdk-2021.html | 3 +- docs/android-sdk-2021.json | 17 +- docs/android-sdk-license.LICENSE | 13 + docs/android-sdk-license.html | 3 +- docs/android-sdk-license.json | 14 +- docs/android-sdk-preview-2015.LICENSE | 13 + docs/android-sdk-preview-2015.html | 3 +- docs/android-sdk-preview-2015.json | 14 +- docs/anepokis-1.0.LICENSE | 20 + docs/anepokis-1.0.html | 3 +- docs/anepokis-1.0.json | 24 +- docs/anti-capitalist-1.4.LICENSE | 12 +- docs/anti-capitalist-1.4.html | 6 +- docs/anti-capitalist-1.4.json | 10 +- docs/antlr-pd-fallback.LICENSE | 17 + docs/antlr-pd-fallback.html | 3 +- docs/antlr-pd-fallback.json | 17 +- docs/antlr-pd.LICENSE | 23 + docs/antlr-pd.html | 3 +- docs/antlr-pd.json | 25 +- docs/anu-license.LICENSE | 12 + docs/anu-license.html | 3 +- docs/anu-license.json | 13 +- docs/aop-pd.LICENSE | 11 +- docs/aop-pd.html | 6 +- docs/aop-pd.json | 9 +- docs/apache-1.0.LICENSE | 20 + docs/apache-1.0.html | 3 +- docs/apache-1.0.json | 24 +- docs/apache-1.1.LICENSE | 32 +- docs/apache-1.1.html | 6 +- docs/apache-1.1.json | 35 +- docs/apache-2.0-linking-exception.LICENSE | 13 +- docs/apache-2.0-linking-exception.html | 6 +- docs/apache-2.0-linking-exception.json | 11 +- ...ache-2.0-runtime-library-exception.LICENSE | 13 + .../apache-2.0-runtime-library-exception.html | 3 +- .../apache-2.0-runtime-library-exception.json | 14 +- docs/apache-2.0.LICENSE | 28 + docs/apache-2.0.html | 3 +- docs/apache-2.0.json | 30 +- docs/apache-due-credit.LICENSE | 18 +- docs/apache-due-credit.html | 6 +- docs/apache-due-credit.json | 17 +- docs/apache-exception-llvm.LICENSE | 16 +- docs/apache-exception-llvm.html | 6 +- docs/apache-exception-llvm.json | 15 +- docs/apache-patent-exception.LICENSE | 13 + docs/apache-patent-exception.html | 3 +- docs/apache-patent-exception.json | 14 +- .../apache-patent-provision-exception.LICENSE | 11 + docs/apache-patent-provision-exception.html | 3 +- docs/apache-patent-provision-exception.json | 11 +- docs/apafml.LICENSE | 10 + docs/apafml.html | 3 +- docs/apafml.json | 10 +- docs/apl-1.1.LICENSE | 18 + docs/apl-1.1.html | 3 +- docs/apl-1.1.json | 22 +- docs/app-s2p.LICENSE | 12 + docs/app-s2p.html | 3 +- docs/app-s2p.json | 13 +- docs/appfire-eula.LICENSE | 21 + docs/appfire-eula.html | 3 +- docs/appfire-eula.json | 23 +- docs/apple-attribution-1997.LICENSE | 12 +- docs/apple-attribution-1997.html | 6 +- docs/apple-attribution-1997.json | 10 +- docs/apple-attribution.LICENSE | 12 +- docs/apple-attribution.html | 6 +- docs/apple-attribution.json | 10 +- docs/apple-excl.LICENSE | 9 + docs/apple-excl.html | 3 +- docs/apple-excl.json | 9 +- docs/apple-mfi-license.LICENSE | 9 + docs/apple-mfi-license.html | 3 +- docs/apple-mfi-license.json | 9 +- docs/apple-mpeg-4.LICENSE | 15 +- docs/apple-mpeg-4.html | 6 +- docs/apple-mpeg-4.json | 15 +- docs/apple-runtime-library-exception.LICENSE | 31 + docs/apple-runtime-library-exception.html | 3 +- docs/apple-runtime-library-exception.json | 19 +- docs/apple-sscl.LICENSE | 9 + docs/apple-sscl.html | 3 +- docs/apple-sscl.json | 9 +- docs/appsflyer-framework.LICENSE | 15 + docs/appsflyer-framework.html | 3 +- docs/appsflyer-framework.json | 17 +- docs/apsl-1.0.LICENSE | 23 + docs/apsl-1.0.html | 3 +- docs/apsl-1.0.json | 28 +- docs/apsl-1.1.LICENSE | 26 + docs/apsl-1.1.html | 3 +- docs/apsl-1.1.json | 31 +- docs/apsl-1.2.LICENSE | 29 + docs/apsl-1.2.html | 3 +- docs/apsl-1.2.json | 32 +- docs/apsl-2.0.LICENSE | 25 + docs/apsl-2.0.html | 3 +- docs/apsl-2.0.json | 27 +- docs/aptana-1.0.LICENSE | 12 + docs/aptana-1.0.html | 3 +- docs/aptana-1.0.json | 13 +- docs/aptana-exception-3.0.LICENSE | 87 + docs/aptana-exception-3.0.html | 3 +- docs/aptana-exception-3.0.json | 19 +- docs/arachni-psl-1.0.LICENSE | 17 + docs/arachni-psl-1.0.html | 3 +- docs/arachni-psl-1.0.json | 20 +- docs/aravindan-premkumar.LICENSE | 11 + docs/aravindan-premkumar.html | 3 +- docs/aravindan-premkumar.json | 12 +- docs/argouml.LICENSE | 15 + docs/argouml.html | 3 +- docs/argouml.json | 18 +- docs/arm-cortex-mx.LICENSE | 11 + docs/arm-cortex-mx.html | 3 +- docs/arm-cortex-mx.json | 12 +- docs/arm-llvm-sga.LICENSE | 14 +- docs/arm-llvm-sga.html | 6 +- docs/arm-llvm-sga.json | 13 +- docs/arphic-public.LICENSE | 21 +- docs/arphic-public.html | 6 +- docs/arphic-public.json | 22 +- docs/array-input-method-pl.LICENSE | 17 + docs/array-input-method-pl.html | 3 +- docs/array-input-method-pl.json | 20 +- docs/artistic-1.0-cl8.LICENSE | 21 + docs/artistic-1.0-cl8.html | 3 +- docs/artistic-1.0-cl8.json | 22 +- docs/artistic-1.0.LICENSE | 22 + docs/artistic-1.0.html | 3 +- docs/artistic-1.0.json | 25 +- docs/artistic-2.0.LICENSE | 32 +- docs/artistic-2.0.html | 6 +- docs/artistic-2.0.json | 33 +- docs/artistic-clarified.LICENSE | 16 +- docs/artistic-clarified.html | 6 +- docs/artistic-clarified.json | 16 +- docs/artistic-dist-1.0.LICENSE | 18 +- docs/artistic-dist-1.0.html | 6 +- docs/artistic-dist-1.0.json | 17 +- docs/artistic-perl-1.0.LICENSE | 16 +- docs/artistic-perl-1.0.html | 7 +- docs/artistic-perl-1.0.json | 14 +- docs/aslp.LICENSE | 10 + docs/aslp.html | 3 +- docs/aslp.json | 10 +- docs/aslr.LICENSE | 10 + docs/aslr.html | 3 +- docs/aslr.json | 10 +- docs/asmus.LICENSE | 13 +- docs/asmus.html | 6 +- docs/asmus.json | 12 +- docs/asn1.LICENSE | 33 + docs/asn1.html | 3 +- docs/asn1.json | 38 +- docs/aswf-digital-assets-1.0.LICENSE | 28 + docs/aswf-digital-assets-1.0.html | 173 + docs/aswf-digital-assets-1.0.json | 10 + docs/aswf-digital-assets-1.0.yml | 8 + docs/aswf-digital-assets-1.1.LICENSE | 29 + docs/aswf-digital-assets-1.1.html | 174 + docs/aswf-digital-assets-1.1.json | 10 + docs/aswf-digital-assets-1.1.yml | 8 + docs/ati-eula.LICENSE | 12 + docs/ati-eula.html | 3 +- docs/ati-eula.json | 13 +- docs/atkinson-hyperlegible-font.LICENSE | 14 + docs/atkinson-hyperlegible-font.html | 3 +- docs/atkinson-hyperlegible-font.json | 16 +- docs/atlassian-marketplace-tou.LICENSE | 15 + docs/atlassian-marketplace-tou.html | 3 +- docs/atlassian-marketplace-tou.json | 17 +- docs/atmel-firmware.LICENSE | 10 + docs/atmel-firmware.html | 3 +- docs/atmel-firmware.json | 10 +- docs/atmel-linux-firmware.LICENSE | 10 + docs/atmel-linux-firmware.html | 3 +- docs/atmel-linux-firmware.json | 10 +- docs/atmel-microcontroller.LICENSE | 10 + docs/atmel-microcontroller.html | 3 +- docs/atmel-microcontroller.json | 10 +- docs/atmosphere-0.4.LICENSE | 11 +- docs/atmosphere-0.4.html | 9 +- docs/atmosphere-0.4.json | 10 +- docs/attribution.LICENSE | 19 + docs/attribution.html | 3 +- docs/attribution.json | 19 +- docs/autoconf-exception-2.0.LICENSE | 33 +- docs/autoconf-exception-2.0.html | 6 +- docs/autoconf-exception-2.0.json | 18 +- docs/autoconf-exception-3.0.LICENSE | 64 + docs/autoconf-exception-3.0.html | 3 +- docs/autoconf-exception-3.0.json | 27 +- docs/autoconf-macro-exception.LICENSE | 16 +- docs/autoconf-macro-exception.html | 6 +- docs/autoconf-macro-exception.json | 12 +- docs/autoconf-simple-exception-2.0.LICENSE | 14 +- docs/autoconf-simple-exception-2.0.html | 5 +- docs/autoconf-simple-exception-2.0.json | 12 +- docs/autoconf-simple-exception.LICENSE | 16 +- docs/autoconf-simple-exception.html | 6 +- docs/autoconf-simple-exception.json | 12 +- docs/autodesk-3d-sft-3.0.LICENSE | 102 + docs/autodesk-3d-sft-3.0.html | 252 + docs/autodesk-3d-sft-3.0.json | 18 + docs/autodesk-3d-sft-3.0.yml | 14 + docs/autoit-eula.LICENSE | 14 + docs/autoit-eula.html | 3 +- docs/autoit-eula.json | 16 +- docs/autoopts-exception-2.0.LICENSE | 43 + docs/autoopts-exception-2.0.html | 3 +- docs/autoopts-exception-2.0.json | 12 +- docs/avisynth-c-interface-exception.LICENSE | 11 + docs/avisynth-c-interface-exception.html | 3 +- docs/avisynth-c-interface-exception.json | 11 +- docs/avisynth-linking-exception.LICENSE | 11 + docs/avisynth-linking-exception.html | 3 +- docs/avisynth-linking-exception.json | 11 +- docs/bacula-exception.LICENSE | 18 + docs/bacula-exception.html | 3 +- docs/bacula-exception.json | 21 +- docs/baekmuk-fonts.LICENSE | 17 + docs/baekmuk-fonts.html | 3 +- docs/baekmuk-fonts.json | 21 +- docs/bahyph.LICENSE | 16 + docs/bahyph.html | 3 +- docs/bahyph.json | 19 +- docs/bakoma-fonts-1995.LICENSE | 24 +- docs/bakoma-fonts-1995.html | 10 +- docs/bakoma-fonts-1995.json | 27 +- docs/bapl-1.0.LICENSE | 14 + docs/bapl-1.0.html | 3 +- docs/bapl-1.0.json | 16 +- docs/barr-tex.LICENSE | 12 + docs/barr-tex.html | 3 +- docs/barr-tex.json | 13 +- docs/bash-exception-gpl.LICENSE | 13 + docs/bash-exception-gpl.html | 3 +- docs/bash-exception-gpl.json | 14 +- docs/bea-2.1.LICENSE | 13 + docs/bea-2.1.html | 3 +- docs/bea-2.1.json | 15 +- docs/beal-screamer.LICENSE | 12 + docs/beal-screamer.html | 3 +- docs/beal-screamer.json | 13 +- docs/beerware.LICENSE | 19 +- docs/beerware.html | 6 +- docs/beerware.json | 20 +- docs/beri-hw-sw-1.0.LICENSE | 239 + docs/beri-hw-sw-1.0.html | 391 + docs/beri-hw-sw-1.0.json | 16 + docs/beri-hw-sw-1.0.yml | 12 + docs/bigdigits.LICENSE | 30 + docs/bigdigits.html | 3 +- docs/bigdigits.json | 29 +- docs/bigelow-holmes.LICENSE | 18 + docs/bigelow-holmes.html | 3 +- docs/bigelow-holmes.json | 21 +- docs/bigscience-rail-1.0.LICENSE | 92 + docs/bigscience-rail-1.0.html | 231 + docs/bigscience-rail-1.0.json | 9 + docs/bigscience-rail-1.0.yml | 7 + docs/binary-linux-firmware-patent.LICENSE | 12 + docs/binary-linux-firmware-patent.html | 3 +- docs/binary-linux-firmware-patent.json | 13 +- docs/binary-linux-firmware.LICENSE | 10 + docs/binary-linux-firmware.html | 3 +- docs/binary-linux-firmware.json | 10 +- docs/biopython.LICENSE | 10 + docs/biopython.html | 3 +- docs/biopython.json | 10 +- docs/biosl-4.0.LICENSE | 9 + docs/biosl-4.0.html | 3 +- docs/biosl-4.0.json | 10 +- docs/bison-exception-2.0.LICENSE | 27 + docs/bison-exception-2.0.html | 3 +- docs/bison-exception-2.0.json | 12 +- docs/bison-exception-2.2.LICENSE | 37 + docs/bison-exception-2.2.html | 3 +- docs/bison-exception-2.2.json | 15 +- docs/bitstream.LICENSE | 18 + docs/bitstream.html | 12 +- docs/bitstream.json | 21 +- docs/bitstream.yml | 3 + docs/bittorrent-1.0.LICENSE | 21 +- docs/bittorrent-1.0.html | 7 +- docs/bittorrent-1.0.json | 21 +- docs/bittorrent-1.1.LICENSE | 22 +- docs/bittorrent-1.1.html | 6 +- docs/bittorrent-1.1.json | 20 +- docs/bittorrent-1.2.LICENSE | 12 + docs/bittorrent-1.2.html | 3 +- docs/bittorrent-1.2.json | 13 +- docs/bittorrent-eula.LICENSE | 15 + docs/bittorrent-eula.html | 3 +- docs/bittorrent-eula.json | 17 +- docs/bitwarden-1.0.LICENSE | 11 + docs/bitwarden-1.0.html | 3 +- docs/bitwarden-1.0.json | 11 +- docs/bitzi-pd.LICENSE | 14 + docs/bitzi-pd.html | 3 +- docs/bitzi-pd.json | 16 +- docs/blas-2017.LICENSE | 14 + docs/blas-2017.html | 3 +- docs/blas-2017.json | 16 +- docs/blessing.LICENSE | 13 + docs/blessing.html | 3 +- docs/blessing.json | 14 +- docs/blitz-artistic.LICENSE | 15 +- docs/blitz-artistic.html | 6 +- docs/blitz-artistic.json | 14 +- docs/bloomberg-blpapi.LICENSE | 12 + docs/bloomberg-blpapi.html | 3 +- docs/bloomberg-blpapi.json | 13 +- docs/blueoak-1.0.0.LICENSE | 14 + docs/blueoak-1.0.0.html | 3 +- docs/blueoak-1.0.0.json | 16 +- docs/bohl-0.2.LICENSE | 19 +- docs/bohl-0.2.html | 6 +- docs/bohl-0.2.json | 21 +- docs/boost-1.0.LICENSE | 20 + docs/boost-1.0.html | 3 +- docs/boost-1.0.json | 20 +- docs/boost-original.LICENSE | 20 + docs/boost-original.html | 3 +- docs/boost-original.json | 18 +- docs/bootloader-exception.LICENSE | 71 + docs/bootloader-exception.html | 3 +- docs/bootloader-exception.json | 15 +- docs/borceux.LICENSE | 14 + docs/borceux.html | 3 +- docs/borceux.json | 16 +- docs/boutell-libgd-2021.LICENSE | 19 + docs/boutell-libgd-2021.html | 158 + docs/boutell-libgd-2021.json | 9 + docs/boutell-libgd-2021.yml | 7 + docs/bpel4ws-spec.LICENSE | 25 +- docs/bpel4ws-spec.html | 6 +- docs/bpel4ws-spec.json | 24 +- docs/bpmn-io.LICENSE | 14 +- docs/bpmn-io.html | 6 +- docs/bpmn-io.json | 13 +- docs/brad-martinez-vb-32.LICENSE | 10 + docs/brad-martinez-vb-32.html | 3 +- docs/brad-martinez-vb-32.json | 10 +- docs/brankas-open-license-1.0.LICENSE | 95 + docs/brankas-open-license-1.0.html | 240 + docs/brankas-open-license-1.0.json | 10 + docs/brankas-open-license-1.0.yml | 8 + docs/brent-corkum.LICENSE | 15 + docs/brent-corkum.html | 3 +- docs/brent-corkum.json | 18 +- docs/brian-clapper.LICENSE | 14 + docs/brian-clapper.html | 3 +- docs/brian-clapper.json | 16 +- docs/brian-gladman-3-clause.LICENSE | 11 +- docs/brian-gladman-3-clause.html | 6 +- docs/brian-gladman-3-clause.json | 9 +- docs/brian-gladman-dual.LICENSE | 26 + docs/brian-gladman-dual.html | 3 +- docs/brian-gladman-dual.json | 20 +- docs/brian-gladman.LICENSE | 14 +- docs/brian-gladman.html | 6 +- docs/brian-gladman.json | 13 +- docs/broadcom-cfe.LICENSE | 9 + docs/broadcom-cfe.html | 3 +- docs/broadcom-cfe.json | 9 +- docs/broadcom-commercial.LICENSE | 11 +- docs/broadcom-commercial.html | 6 +- docs/broadcom-commercial.json | 9 +- docs/broadcom-confidential.LICENSE | 11 +- docs/broadcom-confidential.html | 6 +- docs/broadcom-confidential.json | 9 +- docs/broadcom-dual.LICENSE | 10 + docs/broadcom-dual.html | 3 +- docs/broadcom-dual.json | 10 +- docs/broadcom-linking-exception-2.0.LICENSE | 29 + docs/broadcom-linking-exception-2.0.html | 3 +- docs/broadcom-linking-exception-2.0.json | 11 +- docs/broadcom-linking-unmodified.LICENSE | 15 +- docs/broadcom-linking-unmodified.html | 14 +- docs/broadcom-linking-unmodified.json | 12 +- docs/broadcom-linking-unmodified.yml | 1 + docs/broadcom-linux-firmware.LICENSE | 10 + docs/broadcom-linux-firmware.html | 3 +- docs/broadcom-linux-firmware.json | 10 +- docs/broadcom-linux-timer.LICENSE | 13 + docs/broadcom-linux-timer.html | 3 +- docs/broadcom-linux-timer.json | 15 +- docs/broadcom-proprietary.LICENSE | 9 + docs/broadcom-proprietary.html | 3 +- docs/broadcom-proprietary.json | 9 +- docs/broadcom-raspberry-pi.LICENSE | 10 + docs/broadcom-raspberry-pi.html | 3 +- docs/broadcom-raspberry-pi.json | 10 +- docs/broadcom-standard-terms.LICENSE | 9 + docs/broadcom-standard-terms.html | 3 +- docs/broadcom-standard-terms.json | 9 +- docs/broadcom-unmodified-exception.LICENSE | 19 + docs/broadcom-unmodified-exception.html | 158 + docs/broadcom-unmodified-exception.json | 9 + docs/broadcom-unmodified-exception.yml | 7 + docs/broadcom-unpublished-source.LICENSE | 12 +- docs/broadcom-unpublished-source.html | 5 +- docs/broadcom-unpublished-source.json | 10 +- docs/broadcom-wiced.LICENSE | 11 + docs/broadcom-wiced.html | 3 +- docs/broadcom-wiced.json | 12 +- docs/broadleaf-fair-use.LICENSE | 12 + docs/broadleaf-fair-use.html | 3 +- docs/broadleaf-fair-use.json | 13 +- docs/brocade-firmware.LICENSE | 10 + docs/brocade-firmware.html | 3 +- docs/brocade-firmware.json | 10 +- docs/bruno-podetti.LICENSE | 10 + docs/bruno-podetti.html | 3 +- docs/bruno-podetti.json | 10 +- docs/bsd-1-clause-build.LICENSE | 12 +- docs/bsd-1-clause-build.html | 6 +- docs/bsd-1-clause-build.json | 10 +- docs/bsd-1-clause.LICENSE | 15 +- docs/bsd-1-clause.html | 6 +- docs/bsd-1-clause.json | 14 +- docs/bsd-1988.LICENSE | 13 + docs/bsd-1988.html | 3 +- docs/bsd-1988.json | 15 +- docs/bsd-2-clause-freebsd.LICENSE | 21 + docs/bsd-2-clause-freebsd.html | 3 +- docs/bsd-2-clause-freebsd.json | 21 +- docs/bsd-2-clause-netbsd.LICENSE | 20 +- docs/bsd-2-clause-netbsd.html | 6 +- docs/bsd-2-clause-netbsd.json | 14 +- docs/bsd-2-clause-plus-advertizing.LICENSE | 14 + docs/bsd-2-clause-plus-advertizing.html | 3 +- docs/bsd-2-clause-plus-advertizing.json | 16 +- docs/bsd-2-clause-views.LICENSE | 20 + docs/bsd-2-clause-views.html | 3 +- docs/bsd-2-clause-views.json | 21 +- docs/bsd-3-clause-devine.LICENSE | 14 +- docs/bsd-3-clause-devine.html | 6 +- docs/bsd-3-clause-devine.json | 10 +- docs/bsd-3-clause-fda.LICENSE | 11 + docs/bsd-3-clause-fda.html | 3 +- docs/bsd-3-clause-fda.json | 11 +- docs/bsd-3-clause-jtag.LICENSE | 17 +- docs/bsd-3-clause-jtag.html | 6 +- docs/bsd-3-clause-jtag.json | 14 +- docs/bsd-3-clause-no-change.LICENSE | 16 +- docs/bsd-3-clause-no-change.html | 7 +- docs/bsd-3-clause-no-change.json | 14 +- docs/bsd-3-clause-no-military.LICENSE | 15 + docs/bsd-3-clause-no-military.html | 3 +- docs/bsd-3-clause-no-military.json | 17 +- docs/bsd-3-clause-no-nuclear-warranty.LICENSE | 16 + docs/bsd-3-clause-no-nuclear-warranty.html | 3 +- docs/bsd-3-clause-no-nuclear-warranty.json | 14 +- docs/bsd-3-clause-no-trademark.LICENSE | 16 +- docs/bsd-3-clause-no-trademark.html | 6 +- docs/bsd-3-clause-no-trademark.json | 14 +- docs/bsd-3-clause-open-mpi.LICENSE | 13 + docs/bsd-3-clause-open-mpi.html | 3 +- docs/bsd-3-clause-open-mpi.json | 14 +- docs/bsd-3-clause-sun.LICENSE | 12 + docs/bsd-3-clause-sun.html | 3 +- docs/bsd-3-clause-sun.json | 11 +- docs/bsd-4-clause-shortened.LICENSE | 13 + docs/bsd-4-clause-shortened.html | 3 +- docs/bsd-4-clause-shortened.json | 15 +- docs/bsd-ack-carrot2.LICENSE | 13 + docs/bsd-ack-carrot2.html | 3 +- docs/bsd-ack-carrot2.json | 14 +- docs/bsd-ack.LICENSE | 15 + docs/bsd-ack.html | 3 +- docs/bsd-ack.json | 17 +- docs/bsd-artwork.LICENSE | 15 +- docs/bsd-artwork.html | 6 +- docs/bsd-artwork.json | 14 +- docs/bsd-atmel.LICENSE | 14 +- docs/bsd-atmel.html | 6 +- docs/bsd-atmel.json | 12 +- docs/bsd-axis-nomod.LICENSE | 15 +- docs/bsd-axis-nomod.html | 6 +- docs/bsd-axis-nomod.json | 11 +- docs/bsd-axis.LICENSE | 11 + docs/bsd-axis.html | 3 +- docs/bsd-axis.json | 10 +- docs/bsd-credit.LICENSE | 11 +- docs/bsd-credit.html | 6 +- docs/bsd-credit.json | 9 +- docs/bsd-dpt.LICENSE | 12 +- docs/bsd-dpt.html | 6 +- docs/bsd-dpt.json | 10 +- docs/bsd-export.LICENSE | 11 + docs/bsd-export.html | 3 +- docs/bsd-export.json | 12 +- docs/bsd-innosys.LICENSE | 18 +- docs/bsd-innosys.html | 6 +- docs/bsd-innosys.json | 16 +- docs/bsd-intel.LICENSE | 11 +- docs/bsd-intel.html | 6 +- docs/bsd-intel.json | 9 +- docs/bsd-mylex.LICENSE | 16 +- docs/bsd-mylex.html | 6 +- docs/bsd-mylex.json | 16 +- docs/bsd-new-derivative.LICENSE | 12 + docs/bsd-new-derivative.html | 3 +- docs/bsd-new-derivative.json | 12 +- docs/bsd-new-far-manager.LICENSE | 10 + docs/bsd-new-far-manager.html | 3 +- docs/bsd-new-far-manager.json | 10 +- docs/bsd-new-nomod.LICENSE | 12 + docs/bsd-new-nomod.html | 3 +- docs/bsd-new-nomod.json | 11 +- docs/bsd-new-tcpdump.LICENSE | 10 + docs/bsd-new-tcpdump.html | 3 +- docs/bsd-new-tcpdump.json | 10 +- docs/bsd-new.LICENSE | 21 + docs/bsd-new.html | 5 +- docs/bsd-new.json | 24 +- docs/bsd-new.yml | 1 + docs/bsd-no-disclaimer-unmodified.LICENSE | 11 + docs/bsd-no-disclaimer-unmodified.html | 3 +- docs/bsd-no-disclaimer-unmodified.json | 10 +- docs/bsd-no-disclaimer.LICENSE | 14 +- docs/bsd-no-disclaimer.html | 6 +- docs/bsd-no-disclaimer.json | 13 +- docs/bsd-no-mod.LICENSE | 12 + docs/bsd-no-mod.html | 3 +- docs/bsd-no-mod.json | 13 +- docs/bsd-original-muscle.LICENSE | 17 + docs/bsd-original-muscle.html | 3 +- docs/bsd-original-muscle.json | 20 +- docs/bsd-original-uc-1986.LICENSE | 11 +- docs/bsd-original-uc-1986.html | 6 +- docs/bsd-original-uc-1986.json | 9 +- docs/bsd-original-uc-1990.LICENSE | 12 +- docs/bsd-original-uc-1990.html | 6 +- docs/bsd-original-uc-1990.json | 10 +- docs/bsd-original-uc.LICENSE | 33 + docs/bsd-original-uc.html | 3 +- docs/bsd-original-uc.json | 33 +- docs/bsd-original-voices.LICENSE | 13 + docs/bsd-original-voices.html | 3 +- docs/bsd-original-voices.json | 14 +- docs/bsd-original.LICENSE | 18 + docs/bsd-original.html | 3 +- docs/bsd-original.json | 20 +- docs/bsd-plus-mod-notice.LICENSE | 9 + docs/bsd-plus-mod-notice.html | 3 +- docs/bsd-plus-mod-notice.json | 9 +- docs/bsd-plus-patent.LICENSE | 17 + docs/bsd-plus-patent.html | 3 +- docs/bsd-plus-patent.json | 15 +- docs/bsd-protection.LICENSE | 12 + docs/bsd-protection.html | 3 +- docs/bsd-protection.json | 13 +- docs/bsd-simplified-darwin.LICENSE | 9 + docs/bsd-simplified-darwin.html | 3 +- docs/bsd-simplified-darwin.json | 9 +- docs/bsd-simplified-intel.LICENSE | 15 +- docs/bsd-simplified-intel.html | 6 +- docs/bsd-simplified-intel.json | 11 +- docs/bsd-simplified-source.LICENSE | 12 + docs/bsd-simplified-source.html | 3 +- docs/bsd-simplified-source.json | 10 +- docs/bsd-simplified.LICENSE | 21 + docs/bsd-simplified.html | 3 +- docs/bsd-simplified.json | 24 +- docs/bsd-source-code.LICENSE | 13 + docs/bsd-source-code.html | 3 +- docs/bsd-source-code.json | 14 +- docs/bsd-top-gpl-addition.LICENSE | 13 +- docs/bsd-top-gpl-addition.html | 6 +- docs/bsd-top-gpl-addition.json | 11 +- docs/bsd-top.LICENSE | 15 +- docs/bsd-top.html | 6 +- docs/bsd-top.json | 11 +- docs/bsd-unchanged.LICENSE | 16 +- docs/bsd-unchanged.html | 6 +- docs/bsd-unchanged.json | 11 +- docs/bsd-unmodified.LICENSE | 15 +- docs/bsd-unmodified.html | 6 +- docs/bsd-unmodified.json | 11 +- docs/bsd-x11.LICENSE | 13 +- docs/bsd-x11.html | 6 +- docs/bsd-x11.json | 10 +- docs/bsd-zero.LICENSE | 13 + docs/bsd-zero.html | 3 +- docs/bsd-zero.json | 14 +- docs/bsl-1.0.LICENSE | 20 + docs/bsl-1.0.html | 3 +- docs/bsl-1.0.json | 24 +- docs/bsl-1.1.LICENSE | 22 +- docs/bsl-1.1.html | 6 +- docs/bsl-1.1.json | 24 +- docs/bsla-no-advert.LICENSE | 18 +- docs/bsla-no-advert.html | 6 +- docs/bsla-no-advert.json | 16 +- docs/bsla.LICENSE | 13 +- docs/bsla.html | 6 +- docs/bsla.json | 12 +- docs/bugsense-sdk.LICENSE | 18 + docs/bugsense-sdk.html | 3 +- docs/bugsense-sdk.json | 22 +- docs/bytemark.LICENSE | 9 + docs/bytemark.html | 3 +- docs/bytemark.json | 9 +- docs/bzip2-libbzip-1.0.5.LICENSE | 14 + docs/bzip2-libbzip-1.0.5.html | 3 +- docs/bzip2-libbzip-1.0.5.json | 15 +- docs/bzip2-libbzip-2010.LICENSE | 20 +- docs/bzip2-libbzip-2010.html | 6 +- docs/bzip2-libbzip-2010.json | 19 +- docs/c-fsl-1.1.LICENSE | 20 +- docs/c-fsl-1.1.html | 8 +- docs/c-fsl-1.1.json | 19 +- docs/c-uda-1.0.LICENSE | 12 + docs/c-uda-1.0.html | 3 +- docs/c-uda-1.0.json | 13 +- docs/ca-tosl-1.1.LICENSE | 22 + docs/ca-tosl-1.1.html | 3 +- docs/ca-tosl-1.1.json | 26 +- docs/cadence-linux-firmware.LICENSE | 10 + docs/cadence-linux-firmware.html | 3 +- docs/cadence-linux-firmware.json | 10 +- docs/cal-1.0-combined-work-exception.LICENSE | 18 +- docs/cal-1.0-combined-work-exception.html | 6 +- docs/cal-1.0-combined-work-exception.json | 14 +- docs/cal-1.0.LICENSE | 20 +- docs/cal-1.0.html | 6 +- docs/cal-1.0.json | 14 +- docs/caldera.LICENSE | 14 + docs/caldera.html | 3 +- docs/caldera.json | 16 +- docs/can-ogl-2.0-en.LICENSE | 11 + docs/can-ogl-2.0-en.html | 6 +- docs/can-ogl-2.0-en.json | 13 +- docs/can-ogl-alberta-2.1.LICENSE | 12 +- docs/can-ogl-alberta-2.1.html | 10 +- docs/can-ogl-alberta-2.1.json | 10 +- docs/can-ogl-british-columbia-2.0.LICENSE | 12 +- docs/can-ogl-british-columbia-2.0.html | 6 +- docs/can-ogl-british-columbia-2.0.json | 10 +- docs/can-ogl-nova-scotia-1.0.LICENSE | 11 +- docs/can-ogl-nova-scotia-1.0.html | 9 +- docs/can-ogl-nova-scotia-1.0.json | 10 +- docs/can-ogl-ontario-1.0.LICENSE | 14 +- docs/can-ogl-ontario-1.0.html | 8 +- docs/can-ogl-ontario-1.0.json | 10 +- docs/can-ogl-toronto-1.0.LICENSE | 10 + docs/can-ogl-toronto-1.0.html | 3 +- docs/can-ogl-toronto-1.0.json | 10 +- docs/careware.LICENSE | 12 +- docs/careware.html | 6 +- docs/careware.json | 10 +- docs/carnegie-mellon-contributors.LICENSE | 11 + docs/carnegie-mellon-contributors.html | 3 +- docs/carnegie-mellon-contributors.json | 12 +- docs/carnegie-mellon.LICENSE | 9 + docs/carnegie-mellon.html | 3 +- docs/carnegie-mellon.json | 9 +- docs/cavium-linux-firmware.LICENSE | 12 + docs/cavium-linux-firmware.html | 3 +- docs/cavium-linux-firmware.json | 13 +- docs/cavium-malloc.LICENSE | 9 + docs/cavium-malloc.html | 3 +- docs/cavium-malloc.json | 9 +- docs/cavium-targeted-hardware.LICENSE | 13 +- docs/cavium-targeted-hardware.html | 6 +- docs/cavium-targeted-hardware.json | 12 +- docs/cc-by-1.0.LICENSE | 16 + docs/cc-by-1.0.html | 3 +- docs/cc-by-1.0.json | 19 +- docs/cc-by-2.0-uk.LICENSE | 18 + docs/cc-by-2.0-uk.html | 3 +- docs/cc-by-2.0-uk.json | 21 +- docs/cc-by-2.0.LICENSE | 16 + docs/cc-by-2.0.html | 3 +- docs/cc-by-2.0.json | 19 +- docs/cc-by-2.5-au.LICENSE | 14 + docs/cc-by-2.5-au.html | 3 +- docs/cc-by-2.5-au.json | 16 +- docs/cc-by-2.5.LICENSE | 16 + docs/cc-by-2.5.html | 3 +- docs/cc-by-2.5.json | 19 +- docs/cc-by-3.0-at.LICENSE | 18 +- docs/cc-by-3.0-at.html | 6 +- docs/cc-by-3.0-at.json | 18 +- docs/cc-by-3.0-de.LICENSE | 16 +- docs/cc-by-3.0-de.html | 6 +- docs/cc-by-3.0-de.json | 16 +- docs/cc-by-3.0-igo.LICENSE | 116 + docs/cc-by-3.0-igo.html | 275 + docs/cc-by-3.0-igo.json | 16 + docs/cc-by-3.0-igo.yml | 12 + docs/cc-by-3.0-nl.LICENSE | 14 + docs/cc-by-3.0-nl.html | 3 +- docs/cc-by-3.0-nl.json | 16 +- docs/cc-by-3.0-us.LICENSE | 15 + docs/cc-by-3.0-us.html | 3 +- docs/cc-by-3.0-us.json | 17 +- docs/cc-by-3.0.LICENSE | 19 +- docs/cc-by-3.0.html | 6 +- docs/cc-by-3.0.json | 20 +- docs/cc-by-4.0.LICENSE | 16 +- docs/cc-by-4.0.html | 6 +- docs/cc-by-4.0.json | 16 +- docs/cc-by-nc-1.0.LICENSE | 16 + docs/cc-by-nc-1.0.html | 3 +- docs/cc-by-nc-1.0.json | 19 +- docs/cc-by-nc-2.0.LICENSE | 16 + docs/cc-by-nc-2.0.html | 3 +- docs/cc-by-nc-2.0.json | 19 +- docs/cc-by-nc-2.5.LICENSE | 16 + docs/cc-by-nc-2.5.html | 3 +- docs/cc-by-nc-2.5.json | 19 +- docs/cc-by-nc-3.0-de.LICENSE | 16 +- docs/cc-by-nc-3.0-de.html | 6 +- docs/cc-by-nc-3.0-de.json | 16 +- docs/cc-by-nc-3.0.LICENSE | 19 +- docs/cc-by-nc-3.0.html | 6 +- docs/cc-by-nc-3.0.json | 20 +- docs/cc-by-nc-4.0.LICENSE | 16 +- docs/cc-by-nc-4.0.html | 6 +- docs/cc-by-nc-4.0.json | 16 +- docs/cc-by-nc-nd-1.0.LICENSE | 17 + docs/cc-by-nc-nd-1.0.html | 3 +- docs/cc-by-nc-nd-1.0.json | 20 +- docs/cc-by-nc-nd-2.0-at.LICENSE | 16 +- docs/cc-by-nc-nd-2.0-at.html | 11 +- docs/cc-by-nc-nd-2.0-at.json | 14 +- docs/cc-by-nc-nd-2.0-au.LICENSE | 15 +- docs/cc-by-nc-nd-2.0-au.html | 7 +- docs/cc-by-nc-nd-2.0-au.json | 13 +- docs/cc-by-nc-nd-2.0.LICENSE | 16 + docs/cc-by-nc-nd-2.0.html | 3 +- docs/cc-by-nc-nd-2.0.json | 19 +- docs/cc-by-nc-nd-2.5.LICENSE | 16 + docs/cc-by-nc-nd-2.5.html | 3 +- docs/cc-by-nc-nd-2.5.json | 19 +- docs/cc-by-nc-nd-3.0-de.LICENSE | 16 +- docs/cc-by-nc-nd-3.0-de.html | 6 +- docs/cc-by-nc-nd-3.0-de.json | 16 +- docs/cc-by-nc-nd-3.0-igo.LICENSE | 14 + docs/cc-by-nc-nd-3.0-igo.html | 3 +- docs/cc-by-nc-nd-3.0-igo.json | 16 +- docs/cc-by-nc-nd-3.0.LICENSE | 18 +- docs/cc-by-nc-nd-3.0.html | 6 +- docs/cc-by-nc-nd-3.0.json | 19 +- docs/cc-by-nc-nd-4.0.LICENSE | 16 +- docs/cc-by-nc-nd-4.0.html | 6 +- docs/cc-by-nc-nd-4.0.json | 16 +- docs/cc-by-nc-sa-1.0.LICENSE | 16 + docs/cc-by-nc-sa-1.0.html | 3 +- docs/cc-by-nc-sa-1.0.json | 19 +- docs/cc-by-nc-sa-2.0-fr.LICENSE | 14 + docs/cc-by-nc-sa-2.0-fr.html | 3 +- docs/cc-by-nc-sa-2.0-fr.json | 16 +- docs/cc-by-nc-sa-2.0-uk.LICENSE | 14 + docs/cc-by-nc-sa-2.0-uk.html | 3 +- docs/cc-by-nc-sa-2.0-uk.json | 16 +- docs/cc-by-nc-sa-2.0.LICENSE | 16 + docs/cc-by-nc-sa-2.0.html | 3 +- docs/cc-by-nc-sa-2.0.json | 19 +- docs/cc-by-nc-sa-2.5.LICENSE | 16 + docs/cc-by-nc-sa-2.5.html | 3 +- docs/cc-by-nc-sa-2.5.json | 19 +- docs/cc-by-nc-sa-3.0-de.LICENSE | 16 +- docs/cc-by-nc-sa-3.0-de.html | 6 +- docs/cc-by-nc-sa-3.0-de.json | 16 +- docs/cc-by-nc-sa-3.0-igo.LICENSE | 16 + docs/cc-by-nc-sa-3.0-igo.html | 3 +- docs/cc-by-nc-sa-3.0-igo.json | 19 +- docs/cc-by-nc-sa-3.0-us.LICENSE | 18 +- docs/cc-by-nc-sa-3.0-us.html | 6 +- docs/cc-by-nc-sa-3.0-us.json | 19 +- docs/cc-by-nc-sa-3.0.LICENSE | 18 +- docs/cc-by-nc-sa-3.0.html | 6 +- docs/cc-by-nc-sa-3.0.json | 19 +- docs/cc-by-nc-sa-4.0.LICENSE | 16 +- docs/cc-by-nc-sa-4.0.html | 6 +- docs/cc-by-nc-sa-4.0.json | 16 +- docs/cc-by-nd-1.0.LICENSE | 17 + docs/cc-by-nd-1.0.html | 3 +- docs/cc-by-nd-1.0.json | 20 +- docs/cc-by-nd-2.0.LICENSE | 16 + docs/cc-by-nd-2.0.html | 3 +- docs/cc-by-nd-2.0.json | 19 +- docs/cc-by-nd-2.5.LICENSE | 16 + docs/cc-by-nd-2.5.html | 3 +- docs/cc-by-nd-2.5.json | 19 +- docs/cc-by-nd-3.0-de.LICENSE | 16 +- docs/cc-by-nd-3.0-de.html | 6 +- docs/cc-by-nd-3.0-de.json | 16 +- docs/cc-by-nd-3.0.LICENSE | 18 +- docs/cc-by-nd-3.0.html | 6 +- docs/cc-by-nd-3.0.json | 19 +- docs/cc-by-nd-4.0.LICENSE | 16 +- docs/cc-by-nd-4.0.html | 6 +- docs/cc-by-nd-4.0.json | 16 +- docs/cc-by-sa-1.0.LICENSE | 16 + docs/cc-by-sa-1.0.html | 3 +- docs/cc-by-sa-1.0.json | 19 +- docs/cc-by-sa-2.0-uk.LICENSE | 15 + docs/cc-by-sa-2.0-uk.html | 3 +- docs/cc-by-sa-2.0-uk.json | 17 +- docs/cc-by-sa-2.0.LICENSE | 16 + docs/cc-by-sa-2.0.html | 3 +- docs/cc-by-sa-2.0.json | 19 +- docs/cc-by-sa-2.1-jp.LICENSE | 14 + docs/cc-by-sa-2.1-jp.html | 3 +- docs/cc-by-sa-2.1-jp.json | 16 +- docs/cc-by-sa-2.5.LICENSE | 16 + docs/cc-by-sa-2.5.html | 3 +- docs/cc-by-sa-2.5.json | 19 +- docs/cc-by-sa-3.0-at.LICENSE | 15 + docs/cc-by-sa-3.0-at.html | 3 +- docs/cc-by-sa-3.0-at.json | 16 +- docs/cc-by-sa-3.0-de.LICENSE | 17 +- docs/cc-by-sa-3.0-de.html | 6 +- docs/cc-by-sa-3.0-de.json | 17 +- docs/cc-by-sa-3.0.LICENSE | 20 +- docs/cc-by-sa-3.0.html | 6 +- docs/cc-by-sa-3.0.json | 21 +- docs/cc-by-sa-4.0.LICENSE | 16 +- docs/cc-by-sa-4.0.html | 6 +- docs/cc-by-sa-4.0.json | 16 +- docs/cc-devnations-2.0.LICENSE | 10 + docs/cc-devnations-2.0.html | 3 +- docs/cc-devnations-2.0.json | 10 +- docs/cc-gpl-2.0-pt.LICENSE | 21 +- docs/cc-gpl-2.0-pt.html | 12 +- docs/cc-gpl-2.0-pt.json | 20 +- docs/cc-lgpl-2.1-pt.LICENSE | 20 +- docs/cc-lgpl-2.1-pt.html | 11 +- docs/cc-lgpl-2.1-pt.json | 20 +- docs/cc-nc-sampling-plus-1.0.LICENSE | 10 + docs/cc-nc-sampling-plus-1.0.html | 3 +- docs/cc-nc-sampling-plus-1.0.json | 10 +- docs/cc-pd.LICENSE | 12 + docs/cc-pd.html | 3 +- docs/cc-pd.json | 13 +- docs/cc-pdm-1.0.LICENSE | 13 +- docs/cc-pdm-1.0.html | 10 +- docs/cc-pdm-1.0.json | 11 +- docs/cc-sampling-1.0.LICENSE | 10 + docs/cc-sampling-1.0.html | 3 +- docs/cc-sampling-1.0.json | 10 +- docs/cc-sampling-plus-1.0.LICENSE | 10 + docs/cc-sampling-plus-1.0.html | 3 +- docs/cc-sampling-plus-1.0.json | 10 +- docs/cc0-1.0.LICENSE | 17 +- docs/cc0-1.0.html | 6 +- docs/cc0-1.0.json | 17 +- docs/cclrc.LICENSE | 12 + docs/cclrc.html | 3 +- docs/cclrc.json | 13 +- docs/ccrc-1.0.LICENSE | 64 + docs/ccrc-1.0.html | 50 +- docs/ccrc-1.0.json | 19 +- docs/cddl-1.0.LICENSE | 25 + docs/cddl-1.0.html | 3 +- docs/cddl-1.0.json | 25 +- docs/cddl-1.1.LICENSE | 18 + docs/cddl-1.1.html | 3 +- docs/cddl-1.1.json | 18 +- docs/cdla-permissive-1.0.LICENSE | 12 + docs/cdla-permissive-1.0.html | 3 +- docs/cdla-permissive-1.0.json | 13 +- docs/cdla-permissive-2.0.LICENSE | 15 + docs/cdla-permissive-2.0.html | 3 +- docs/cdla-permissive-2.0.json | 17 +- docs/cdla-sharing-1.0.LICENSE | 12 + docs/cdla-sharing-1.0.html | 3 +- docs/cdla-sharing-1.0.json | 13 +- docs/cecill-1.0-en.LICENSE | 25 +- docs/cecill-1.0-en.html | 17 +- docs/cecill-1.0-en.json | 13 +- docs/cecill-1.0.LICENSE | 18 +- docs/cecill-1.0.html | 6 +- docs/cecill-1.0.json | 18 +- docs/cecill-1.1.LICENSE | 30 +- docs/cecill-1.1.html | 17 +- docs/cecill-1.1.json | 17 +- docs/cecill-2.0-fr.LICENSE | 17 +- docs/cecill-2.0-fr.html | 9 +- docs/cecill-2.0-fr.json | 17 +- docs/cecill-2.0.LICENSE | 18 + docs/cecill-2.0.html | 3 +- docs/cecill-2.0.json | 17 +- docs/cecill-2.1-fr.LICENSE | 25 +- docs/cecill-2.1-fr.html | 11 +- docs/cecill-2.1-fr.json | 25 +- docs/cecill-2.1.LICENSE | 23 +- docs/cecill-2.1.html | 10 +- docs/cecill-2.1.json | 24 +- docs/cecill-b-en.LICENSE | 19 +- docs/cecill-b-en.html | 9 +- docs/cecill-b-en.json | 20 +- docs/cecill-b.LICENSE | 20 +- docs/cecill-b.html | 9 +- docs/cecill-b.json | 21 +- docs/cecill-c-en.LICENSE | 15 +- docs/cecill-c-en.html | 9 +- docs/cecill-c-en.json | 15 +- docs/cecill-c.LICENSE | 20 +- docs/cecill-c.html | 9 +- docs/cecill-c.json | 19 +- docs/cern-attribution-1995.LICENSE | 11 + docs/cern-attribution-1995.html | 3 +- docs/cern-attribution-1995.json | 11 +- docs/cern-ohl-1.1.LICENSE | 18 + docs/cern-ohl-1.1.html | 3 +- docs/cern-ohl-1.1.json | 22 +- docs/cern-ohl-1.2.LICENSE | 16 + docs/cern-ohl-1.2.html | 3 +- docs/cern-ohl-1.2.json | 19 +- docs/cern-ohl-p-2.0.LICENSE | 27 +- docs/cern-ohl-p-2.0.html | 6 +- docs/cern-ohl-p-2.0.json | 29 +- docs/cern-ohl-s-2.0.LICENSE | 26 +- docs/cern-ohl-s-2.0.html | 6 +- docs/cern-ohl-s-2.0.json | 28 +- docs/cern-ohl-w-2.0.LICENSE | 26 +- docs/cern-ohl-w-2.0.html | 6 +- docs/cern-ohl-w-2.0.json | 28 +- docs/cgic.LICENSE | 14 + docs/cgic.html | 3 +- docs/cgic.json | 15 +- docs/chartdirector-6.0.LICENSE | 20 + docs/chartdirector-6.0.html | 3 +- docs/chartdirector-6.0.json | 25 +- docs/checkmk.LICENSE | 18 + docs/checkmk.html | 158 + docs/checkmk.json | 11 + docs/checkmk.yml | 8 + docs/chelsio-linux-firmware.LICENSE | 10 + docs/chelsio-linux-firmware.html | 3 +- docs/chelsio-linux-firmware.json | 10 +- docs/chicken-dl-0.2.LICENSE | 12 + docs/chicken-dl-0.2.html | 3 +- docs/chicken-dl-0.2.json | 13 +- docs/chris-maunder.LICENSE | 12 + docs/chris-maunder.html | 3 +- docs/chris-maunder.json | 13 +- docs/chris-stoy.LICENSE | 9 + docs/chris-stoy.html | 3 +- docs/chris-stoy.json | 9 +- docs/christopher-velazquez.LICENSE | 10 + docs/christopher-velazquez.html | 3 +- docs/christopher-velazquez.json | 10 +- docs/classic-vb.LICENSE | 12 + docs/classic-vb.html | 3 +- docs/classic-vb.json | 13 +- docs/classpath-exception-2.0.LICENSE | 18 +- docs/classpath-exception-2.0.html | 6 +- docs/classpath-exception-2.0.json | 18 +- docs/classworlds.LICENSE | 15 + docs/classworlds.html | 3 +- docs/classworlds.json | 14 +- docs/clause-6-exception-lgpl-2.1.LICENSE | 11 + docs/clause-6-exception-lgpl-2.1.html | 3 +- docs/clause-6-exception-lgpl-2.1.json | 11 +- docs/clear-bsd-1-clause.LICENSE | 15 +- docs/clear-bsd-1-clause.html | 7 +- docs/clear-bsd-1-clause.json | 12 +- docs/clear-bsd.LICENSE | 13 + docs/clear-bsd.html | 3 +- docs/clear-bsd.json | 14 +- docs/click-license.LICENSE | 11 + docs/click-license.html | 3 +- docs/click-license.json | 11 +- docs/clips-2017.LICENSE | 30 + docs/clips-2017.html | 183 + docs/clips-2017.json | 15 + docs/clips-2017.yml | 11 + docs/clisp-exception-2.0.LICENSE | 15 + docs/clisp-exception-2.0.html | 3 +- docs/clisp-exception-2.0.json | 17 +- docs/cloudera-express.LICENSE | 14 +- docs/cloudera-express.html | 6 +- docs/cloudera-express.json | 13 +- docs/cmigemo.LICENSE | 19 + docs/cmigemo.html | 3 +- docs/cmigemo.json | 23 +- docs/cmr-no.LICENSE | 12 +- docs/cmr-no.html | 6 +- docs/cmr-no.json | 10 +- docs/cmu-computing-services.LICENSE | 19 + docs/cmu-computing-services.html | 3 +- docs/cmu-computing-services.json | 23 +- docs/cmu-mit.LICENSE | 11 +- docs/cmu-mit.html | 6 +- docs/cmu-mit.json | 9 +- docs/cmu-simple.LICENSE | 13 +- docs/cmu-simple.html | 6 +- docs/cmu-simple.json | 10 +- docs/cmu-template.LICENSE | 12 + docs/cmu-template.html | 3 +- docs/cmu-template.json | 13 +- docs/cmu-uc.LICENSE | 14 +- docs/cmu-uc.html | 6 +- docs/cmu-uc.json | 13 +- docs/cncf-corporate-cla-1.0.LICENSE | 15 +- docs/cncf-corporate-cla-1.0.html | 8 +- docs/cncf-corporate-cla-1.0.json | 14 +- docs/cncf-corporate-cla-1.0.yml | 2 +- docs/cncf-individual-cla-1.0.LICENSE | 16 +- docs/cncf-individual-cla-1.0.html | 9 +- docs/cncf-individual-cla-1.0.json | 14 +- docs/cncf-individual-cla-1.0.yml | 2 +- docs/cnri-jython.LICENSE | 15 + docs/cnri-jython.html | 6 +- docs/cnri-jython.json | 19 +- docs/cnri-python-1.6.1.LICENSE | 16 + docs/cnri-python-1.6.1.html | 3 +- docs/cnri-python-1.6.1.json | 19 +- docs/cnri-python-1.6.LICENSE | 25 + docs/cnri-python-1.6.html | 3 +- docs/cnri-python-1.6.json | 30 +- docs/cockroach.LICENSE | 18 +- docs/cockroach.html | 6 +- docs/cockroach.json | 18 +- .../cockroachdb-use-grant-for-bsl-1.1.LICENSE | 20 + docs/cockroachdb-use-grant-for-bsl-1.1.html | 3 +- docs/cockroachdb-use-grant-for-bsl-1.1.json | 24 +- docs/code-credit-license-1.0.1.LICENSE | 17 + docs/code-credit-license-1.0.1.html | 3 +- docs/code-credit-license-1.0.1.json | 19 +- docs/codeguru-permissions.LICENSE | 12 + docs/codeguru-permissions.html | 3 +- docs/codeguru-permissions.json | 13 +- docs/codesourcery-2004.LICENSE | 10 + docs/codesourcery-2004.html | 3 +- docs/codesourcery-2004.json | 10 +- docs/codexia.LICENSE | 21 +- docs/codexia.html | 6 +- docs/codexia.json | 23 +- docs/cognitive-web-osl-1.1.LICENSE | 24 +- docs/cognitive-web-osl-1.1.html | 6 +- docs/cognitive-web-osl-1.1.json | 26 +- docs/coil-1.0.LICENSE | 15 + docs/coil-1.0.html | 3 +- docs/coil-1.0.json | 17 +- docs/colt.LICENSE | 22 + docs/colt.html | 3 +- docs/colt.json | 26 +- docs/com-oreilly-servlet.LICENSE | 17 + docs/com-oreilly-servlet.html | 3 +- docs/com-oreilly-servlet.json | 20 +- docs/commercial-license.LICENSE | 11 + docs/commercial-license.html | 3 +- docs/commercial-license.json | 11 +- docs/commercial-option.LICENSE | 11 + docs/commercial-option.html | 3 +- docs/commercial-option.json | 11 +- docs/commonj-timer.LICENSE | 17 + docs/commonj-timer.html | 3 +- docs/commonj-timer.json | 19 +- docs/commons-clause.LICENSE | 21 + docs/commons-clause.html | 3 +- docs/commons-clause.json | 22 +- docs/compass.LICENSE | 10 + docs/compass.html | 3 +- docs/compass.json | 10 +- docs/componentace-jcraft.LICENSE | 24 +- docs/componentace-jcraft.html | 6 +- docs/componentace-jcraft.json | 26 +- docs/compuphase-linking-exception.LICENSE | 30 + docs/compuphase-linking-exception.html | 3 +- docs/compuphase-linking-exception.json | 12 +- docs/concursive-pl-1.0.LICENSE | 9 + docs/concursive-pl-1.0.html | 3 +- docs/concursive-pl-1.0.json | 9 +- docs/condor-1.1.LICENSE | 28 + docs/condor-1.1.html | 3 +- docs/condor-1.1.json | 34 +- docs/confluent-community-1.0.LICENSE | 16 + docs/confluent-community-1.0.html | 3 +- docs/confluent-community-1.0.json | 18 +- docs/cooperative-non-violent-4.0.LICENSE | 12 + docs/cooperative-non-violent-4.0.html | 3 +- docs/cooperative-non-violent-4.0.json | 13 +- docs/copyheart.LICENSE | 14 +- docs/copyheart.html | 6 +- docs/copyheart.json | 13 +- docs/copyleft-next-0.3.0.LICENSE | 15 + docs/copyleft-next-0.3.0.html | 3 +- docs/copyleft-next-0.3.0.json | 17 +- docs/copyleft-next-0.3.1.LICENSE | 14 + docs/copyleft-next-0.3.1.html | 3 +- docs/copyleft-next-0.3.1.json | 16 +- docs/corporate-accountability-1.1.LICENSE | 14 +- docs/corporate-accountability-1.1.html | 6 +- docs/corporate-accountability-1.1.json | 13 +- ...rate-accountability-commercial-1.1.LICENSE | 18 +- ...rporate-accountability-commercial-1.1.html | 6 +- ...rporate-accountability-commercial-1.1.json | 18 +- docs/cosl.LICENSE | 10 + docs/cosl.html | 3 +- docs/cosl.json | 10 +- docs/cosli.LICENSE | 27 +- docs/cosli.html | 7 +- docs/cosli.json | 29 +- docs/couchbase-community.LICENSE | 17 + docs/couchbase-community.html | 3 +- docs/couchbase-community.json | 20 +- docs/couchbase-enterprise.LICENSE | 14 + docs/couchbase-enterprise.html | 3 +- docs/couchbase-enterprise.json | 15 +- docs/cpal-1.0.LICENSE | 18 + docs/cpal-1.0.html | 3 +- docs/cpal-1.0.json | 20 +- docs/cpl-0.5.LICENSE | 15 + docs/cpl-0.5.html | 3 +- docs/cpl-0.5.json | 17 +- docs/cpl-1.0.LICENSE | 23 + docs/cpl-1.0.html | 3 +- docs/cpl-1.0.json | 25 +- docs/cpm-2022.LICENSE | 10 + docs/cpm-2022.html | 3 +- docs/cpm-2022.json | 10 +- docs/cpol-1.0.LICENSE | 17 + docs/cpol-1.0.html | 3 +- docs/cpol-1.0.json | 17 +- docs/cpol-1.02.LICENSE | 13 + docs/cpol-1.02.html | 3 +- docs/cpol-1.02.json | 14 +- docs/cpp-core-guidelines.LICENSE | 12 + docs/cpp-core-guidelines.html | 3 +- docs/cpp-core-guidelines.json | 13 +- docs/crapl-0.1.LICENSE | 16 +- docs/crapl-0.1.html | 6 +- docs/crapl-0.1.json | 16 +- docs/crashlytics-agreement-2018.LICENSE | 18 + docs/crashlytics-agreement-2018.html | 3 +- docs/crashlytics-agreement-2018.json | 22 +- docs/crcalc.LICENSE | 17 +- docs/crcalc.html | 6 +- docs/crcalc.json | 16 +- docs/crossword.LICENSE | 14 + docs/crossword.html | 3 +- docs/crossword.json | 16 +- docs/crypto-keys-redistribution.LICENSE | 19 +- docs/crypto-keys-redistribution.html | 6 +- docs/crypto-keys-redistribution.json | 13 +- docs/cryptopp.LICENSE | 13 + docs/cryptopp.html | 3 +- docs/cryptopp.json | 15 +- docs/crystal-stacker.LICENSE | 11 + docs/crystal-stacker.html | 3 +- docs/crystal-stacker.json | 11 +- docs/csl-1.0.LICENSE | 26 + docs/csl-1.0.html | 3 +- docs/csl-1.0.json | 33 +- docs/csla.LICENSE | 18 + docs/csla.html | 3 +- docs/csla.json | 21 +- docs/csprng.LICENSE | 11 + docs/csprng.html | 3 +- docs/csprng.json | 12 +- docs/ctl-linux-firmware.LICENSE | 12 + docs/ctl-linux-firmware.html | 3 +- docs/ctl-linux-firmware.json | 13 +- docs/cua-opl-1.0.LICENSE | 20 + docs/cua-opl-1.0.html | 3 +- docs/cua-opl-1.0.json | 23 +- docs/cube.LICENSE | 14 + docs/cube.html | 3 +- docs/cube.json | 16 +- docs/cubiware-software-1.0.LICENSE | 11 + docs/cubiware-software-1.0.html | 3 +- docs/cubiware-software-1.0.json | 12 +- docs/cups-apple-os-exception.LICENSE | 11 + docs/cups-apple-os-exception.html | 3 +- docs/cups-apple-os-exception.json | 11 +- docs/cups.LICENSE | 23 + docs/cups.html | 3 +- docs/cups.json | 28 +- docs/curl.LICENSE | 18 + docs/curl.html | 3 +- docs/curl.json | 20 +- docs/cve-tou.LICENSE | 10 + docs/cve-tou.html | 3 +- docs/cve-tou.json | 10 +- docs/cvwl.LICENSE | 21 +- docs/cvwl.html | 6 +- docs/cvwl.json | 23 +- docs/cwe-tou.LICENSE | 10 + docs/cwe-tou.html | 3 +- docs/cwe-tou.json | 10 +- docs/cximage.LICENSE | 19 + docs/cximage.html | 3 +- docs/cximage.json | 22 +- docs/cygwin-exception-2.0.LICENSE | 43 + docs/cygwin-exception-2.0.html | 3 +- docs/cygwin-exception-2.0.json | 15 +- docs/cygwin-exception-3.0.LICENSE | 70 + docs/cygwin-exception-3.0.html | 3 +- docs/cygwin-exception-3.0.json | 21 +- docs/cygwin-exception-lgpl-3.0-plus.LICENSE | 25 + docs/cygwin-exception-lgpl-3.0-plus.html | 3 +- docs/cygwin-exception-lgpl-3.0-plus.json | 15 +- docs/cypress-linux-firmware.LICENSE | 12 + docs/cypress-linux-firmware.html | 3 +- docs/cypress-linux-firmware.json | 13 +- docs/d-fsl-1.0-de.LICENSE | 38 + docs/d-fsl-1.0-de.html | 3 +- docs/d-fsl-1.0-de.json | 38 +- docs/d-fsl-1.0-en.LICENSE | 28 + docs/d-fsl-1.0-en.html | 3 +- docs/d-fsl-1.0-en.json | 33 +- docs/d-zlib.LICENSE | 9 + docs/d-zlib.html | 3 +- docs/d-zlib.json | 9 +- docs/damail.LICENSE | 10 + docs/damail.html | 3 +- docs/damail.json | 10 +- docs/dante-treglia.LICENSE | 13 + docs/dante-treglia.html | 3 +- docs/dante-treglia.json | 15 +- docs/datamekanix-license.LICENSE | 10 + docs/datamekanix-license.html | 3 +- docs/datamekanix-license.json | 10 +- docs/day-spec.LICENSE | 20 +- docs/day-spec.html | 6 +- docs/day-spec.json | 21 +- docs/dbad-1.1.LICENSE | 10 + docs/dbad-1.1.html | 3 +- docs/dbad-1.1.json | 10 +- docs/dbad.LICENSE | 13 +- docs/dbad.html | 6 +- docs/dbad.json | 11 +- docs/dbcl-1.0.LICENSE | 12 + docs/dbcl-1.0.html | 3 +- docs/dbcl-1.0.json | 13 +- docs/dco-1.1.LICENSE | 20 +- docs/dco-1.1.html | 13 +- docs/dco-1.1.json | 20 +- docs/dco-1.1.yml | 2 +- docs/defensive-patent-1.1.LICENSE | 16 +- docs/defensive-patent-1.1.html | 6 +- docs/defensive-patent-1.1.json | 16 +- docs/dejavu-font.LICENSE | 11 + docs/dejavu-font.html | 3 +- docs/dejavu-font.json | 11 +- docs/delorie-historical.LICENSE | 14 +- docs/delorie-historical.html | 7 +- docs/delorie-historical.json | 10 +- docs/dennis-ferguson.LICENSE | 12 + docs/dennis-ferguson.html | 3 +- docs/dennis-ferguson.json | 13 +- docs/devblocks-1.0.LICENSE | 13 +- docs/devblocks-1.0.html | 9 +- docs/devblocks-1.0.json | 13 +- docs/dgraph-cla.LICENSE | 20 + docs/dgraph-cla.html | 3 +- docs/dgraph-cla.json | 24 +- docs/dhtmlab-public.LICENSE | 15 + docs/dhtmlab-public.html | 3 +- docs/dhtmlab-public.json | 18 +- docs/diffmark.LICENSE | 19 + docs/diffmark.html | 3 +- docs/diffmark.json | 11 +- docs/digia-qt-commercial.LICENSE | 16 +- docs/digia-qt-commercial.html | 6 +- docs/digia-qt-commercial.json | 15 +- docs/digia-qt-exception-lgpl-2.1.LICENSE | 46 + docs/digia-qt-exception-lgpl-2.1.html | 4 +- docs/digia-qt-exception-lgpl-2.1.json | 14 +- docs/digia-qt-preview.LICENSE | 16 +- docs/digia-qt-preview.html | 9 +- docs/digia-qt-preview.json | 11 +- docs/digirule-foss-exception.LICENSE | 80 + docs/digirule-foss-exception.html | 3 +- docs/digirule-foss-exception.json | 18 +- docs/divx-open-1.0.LICENSE | 16 + docs/divx-open-1.0.html | 3 +- docs/divx-open-1.0.json | 19 +- docs/divx-open-2.1.LICENSE | 15 + docs/divx-open-2.1.html | 3 +- docs/divx-open-2.1.json | 18 +- docs/dl-de-by-1-0-de.LICENSE | 13 + docs/dl-de-by-1-0-de.html | 3 +- docs/dl-de-by-1-0-de.json | 14 +- docs/dl-de-by-1-0-en.LICENSE | 12 + docs/dl-de-by-1-0-en.html | 3 +- docs/dl-de-by-1-0-en.json | 13 +- docs/dl-de-by-2-0-de.LICENSE | 18 + docs/dl-de-by-2-0-de.html | 3 +- docs/dl-de-by-2-0-de.json | 21 +- docs/dl-de-by-2-0-en.LICENSE | 14 + docs/dl-de-by-2-0-en.html | 3 +- docs/dl-de-by-2-0-en.json | 16 +- docs/dl-de-by-nc-1-0-de.LICENSE | 13 + docs/dl-de-by-nc-1-0-de.html | 3 +- docs/dl-de-by-nc-1-0-de.json | 14 +- docs/dl-de-by-nc-1-0-en.LICENSE | 12 + docs/dl-de-by-nc-1-0-en.html | 3 +- docs/dl-de-by-nc-1-0-en.json | 13 +- docs/dmalloc.LICENSE | 15 +- docs/dmalloc.html | 7 +- docs/dmalloc.json | 13 +- docs/dmtf-2017.LICENSE | 77 + docs/dmtf-2017.html | 249 + docs/dmtf-2017.json | 23 + docs/dmtf-2017.yml | 17 + docs/do-no-harm-0.1.LICENSE | 14 +- docs/do-no-harm-0.1.html | 6 +- docs/do-no-harm-0.1.json | 13 +- docs/docbook.LICENSE | 15 +- docs/docbook.html | 6 +- docs/docbook.json | 13 +- docs/dom4j.LICENSE | 35 +- docs/dom4j.html | 7 +- docs/dom4j.json | 30 +- docs/dos32a-extender.LICENSE | 14 + docs/dos32a-extender.html | 3 +- docs/dos32a-extender.json | 16 +- docs/dotseqn.LICENSE | 10 + docs/dotseqn.html | 3 +- docs/dotseqn.json | 10 +- docs/doug-lea.LICENSE | 10 + docs/doug-lea.html | 3 +- docs/doug-lea.json | 10 +- docs/douglas-young.LICENSE | 10 + docs/douglas-young.html | 3 +- docs/douglas-young.json | 10 +- docs/dpl-1.1.LICENSE | 12 + docs/dpl-1.1.html | 3 +- docs/dpl-1.1.json | 13 +- docs/dr-john-maddock.LICENSE | 12 +- docs/dr-john-maddock.html | 6 +- docs/dr-john-maddock.json | 10 +- docs/drl-1.0.LICENSE | 14 +- docs/drl-1.0.html | 6 +- docs/drl-1.0.json | 13 +- docs/dropbear-2016.LICENSE | 42 + docs/dropbear-2016.html | 3 +- docs/dropbear-2016.json | 45 +- docs/dropbear.LICENSE | 46 + docs/dropbear.html | 3 +- docs/dropbear.json | 48 +- docs/dsdp.LICENSE | 19 + docs/dsdp.html | 3 +- docs/dsdp.json | 23 +- docs/dtree.LICENSE | 16 + docs/dtree.html | 3 +- docs/dtree.json | 19 +- docs/dual-bsd-gpl.LICENSE | 10 + docs/dual-bsd-gpl.html | 3 +- docs/dual-bsd-gpl.json | 10 +- docs/dual-commercial-gpl.LICENSE | 11 + docs/dual-commercial-gpl.html | 3 +- docs/dual-commercial-gpl.json | 12 +- docs/duende-sla-2022.LICENSE | 16 + docs/duende-sla-2022.html | 3 +- docs/duende-sla-2022.json | 18 +- docs/dune-exception.LICENSE | 15 +- docs/dune-exception.html | 6 +- docs/dune-exception.json | 14 +- docs/dvipdfm.LICENSE | 13 + docs/dvipdfm.html | 3 +- docs/dvipdfm.json | 11 +- docs/dwtfnmfpl-3.0.LICENSE | 11 + docs/dwtfnmfpl-3.0.html | 3 +- docs/dwtfnmfpl-3.0.json | 11 +- docs/dynamic-drive-tou.LICENSE | 15 + docs/dynamic-drive-tou.html | 3 +- docs/dynamic-drive-tou.json | 18 +- docs/dynarch-developer.LICENSE | 16 + docs/dynarch-developer.html | 3 +- docs/dynarch-developer.json | 19 +- docs/dynarch-linkware.LICENSE | 18 + docs/dynarch-linkware.html | 3 +- docs/dynarch-linkware.json | 22 +- docs/ecfonts-1.0.LICENSE | 14 +- docs/ecfonts-1.0.html | 6 +- docs/ecfonts-1.0.json | 13 +- docs/ecl-1.0.LICENSE | 18 + docs/ecl-1.0.html | 3 +- docs/ecl-1.0.json | 20 +- docs/ecl-2.0.LICENSE | 27 + docs/ecl-2.0.html | 3 +- docs/ecl-2.0.json | 25 +- docs/eclipse-sua-2001.LICENSE | 10 + docs/eclipse-sua-2001.html | 3 +- docs/eclipse-sua-2001.json | 10 +- docs/eclipse-sua-2002.LICENSE | 12 + docs/eclipse-sua-2002.html | 3 +- docs/eclipse-sua-2002.json | 13 +- docs/eclipse-sua-2003.LICENSE | 16 + docs/eclipse-sua-2003.html | 3 +- docs/eclipse-sua-2003.json | 17 +- docs/eclipse-sua-2004.LICENSE | 17 + docs/eclipse-sua-2004.html | 3 +- docs/eclipse-sua-2004.json | 18 +- docs/eclipse-sua-2005.LICENSE | 19 +- docs/eclipse-sua-2005.html | 8 +- docs/eclipse-sua-2005.json | 19 +- docs/eclipse-sua-2010.LICENSE | 19 +- docs/eclipse-sua-2010.html | 9 +- docs/eclipse-sua-2010.json | 19 +- docs/eclipse-sua-2011.LICENSE | 20 +- docs/eclipse-sua-2011.html | 9 +- docs/eclipse-sua-2011.json | 20 +- docs/eclipse-sua-2014-11.LICENSE | 20 +- docs/eclipse-sua-2014-11.html | 9 +- docs/eclipse-sua-2014-11.json | 20 +- docs/eclipse-sua-2014.LICENSE | 19 +- docs/eclipse-sua-2014.html | 9 +- docs/eclipse-sua-2014.json | 19 +- docs/eclipse-sua-2017.LICENSE | 22 +- docs/eclipse-sua-2017.html | 9 +- docs/eclipse-sua-2017.json | 23 +- docs/ecma-documentation.LICENSE | 11 +- docs/ecma-documentation.html | 9 +- docs/ecma-documentation.json | 10 +- docs/ecma-no-patent.LICENSE | 15 +- docs/ecma-no-patent.html | 6 +- docs/ecma-no-patent.json | 14 +- docs/ecma-patent-coc-0.LICENSE | 11 + docs/ecma-patent-coc-0.html | 3 +- docs/ecma-patent-coc-0.json | 11 +- docs/ecma-patent-coc-1.LICENSE | 12 +- docs/ecma-patent-coc-1.html | 6 +- docs/ecma-patent-coc-1.json | 10 +- docs/ecma-patent-coc-2.LICENSE | 10 + docs/ecma-patent-coc-2.html | 3 +- docs/ecma-patent-coc-2.json | 10 +- docs/ecos-exception-2.0.LICENSE | 20 +- docs/ecos-exception-2.0.html | 6 +- docs/ecos-exception-2.0.json | 17 +- docs/ecos.LICENSE | 19 + docs/ecos.html | 3 +- docs/ecos.json | 18 +- docs/ecosrh-1.0.LICENSE | 26 + docs/ecosrh-1.0.html | 3 +- docs/ecosrh-1.0.json | 27 +- docs/ecosrh-1.1.LICENSE | 23 + docs/ecosrh-1.1.html | 3 +- docs/ecosrh-1.1.json | 28 +- docs/edrdg-2000.LICENSE | 193 + docs/edrdg-2000.html | 359 + docs/edrdg-2000.json | 22 + docs/edrdg-2000.yml | 16 + docs/efl-1.0.LICENSE | 21 + docs/efl-1.0.html | 3 +- docs/efl-1.0.json | 21 +- docs/efl-2.0.LICENSE | 23 + docs/efl-2.0.html | 3 +- docs/efl-2.0.json | 25 +- docs/efsl-1.0.LICENSE | 26 +- docs/efsl-1.0.html | 6 +- docs/efsl-1.0.json | 28 +- docs/egenix-1.0.0.LICENSE | 13 +- docs/egenix-1.0.0.html | 5 +- docs/egenix-1.0.0.json | 11 +- docs/egenix-1.1.0.LICENSE | 12 + docs/egenix-1.1.0.html | 3 +- docs/egenix-1.1.0.json | 13 +- docs/egrappler.LICENSE | 10 + docs/egrappler.html | 3 +- docs/egrappler.json | 10 +- docs/ej-technologies-eula.LICENSE | 17 + docs/ej-technologies-eula.html | 3 +- docs/ej-technologies-eula.json | 20 +- docs/ekiga-exception-2.0-plus.LICENSE | 33 + docs/ekiga-exception-2.0-plus.html | 3 +- docs/ekiga-exception-2.0-plus.json | 15 +- docs/ekioh.LICENSE | 15 + docs/ekioh.html | 3 +- docs/ekioh.json | 10 +- docs/elastic-license-2018.LICENSE | 24 + docs/elastic-license-2018.html | 3 +- docs/elastic-license-2018.json | 26 +- docs/elastic-license-v2.LICENSE | 22 +- docs/elastic-license-v2.html | 6 +- docs/elastic-license-v2.json | 24 +- docs/elib-gpl.LICENSE | 17 + docs/elib-gpl.html | 3 +- docs/elib-gpl.json | 20 +- docs/ellis-lab.LICENSE | 10 + docs/ellis-lab.html | 3 +- docs/ellis-lab.json | 10 +- docs/emit.LICENSE | 18 +- docs/emit.html | 6 +- docs/emit.json | 18 +- docs/emx-library.LICENSE | 12 + docs/emx-library.html | 3 +- docs/emx-library.json | 13 +- docs/energyplus-bsd.LICENSE | 12 + docs/energyplus-bsd.html | 3 +- docs/energyplus-bsd.json | 13 +- docs/enhydra-1.1.LICENSE | 26 + docs/enhydra-1.1.html | 3 +- docs/enhydra-1.1.json | 32 +- docs/enlightenment.LICENSE | 23 +- docs/enlightenment.html | 6 +- docs/enlightenment.json | 14 +- docs/enna.LICENSE | 10 + docs/enna.html | 3 +- docs/enna.json | 10 +- docs/entessa-1.0.LICENSE | 31 + docs/entessa-1.0.html | 3 +- docs/entessa-1.0.json | 38 +- docs/epaperpress.LICENSE | 10 + docs/epaperpress.html | 3 +- docs/epaperpress.json | 10 +- docs/epics.LICENSE | 14 + docs/epics.html | 3 +- docs/epics.json | 16 +- docs/epl-1.0.LICENSE | 21 + docs/epl-1.0.html | 3 +- docs/epl-1.0.json | 21 +- docs/epl-2.0.LICENSE | 16 + docs/epl-2.0.html | 3 +- docs/epl-2.0.json | 18 +- docs/epo-osl-2005.1.LICENSE | 12 + docs/epo-osl-2005.1.html | 3 +- docs/epo-osl-2005.1.json | 13 +- docs/eric-glass.LICENSE | 20 + docs/eric-glass.html | 3 +- docs/eric-glass.json | 11 +- docs/erlangpl-1.1.LICENSE | 18 + docs/erlangpl-1.1.html | 3 +- docs/erlangpl-1.1.json | 22 +- docs/errbot-exception.LICENSE | 14 + docs/errbot-exception.html | 3 +- docs/errbot-exception.json | 15 +- docs/esri-devkit.LICENSE | 15 +- docs/esri-devkit.html | 6 +- docs/esri-devkit.json | 15 +- docs/esri.LICENSE | 30 + docs/esri.html | 3 +- docs/esri.json | 33 +- docs/etalab-2.0-en.LICENSE | 21 +- docs/etalab-2.0-en.html | 6 +- docs/etalab-2.0-en.json | 22 +- docs/etalab-2.0-fr.LICENSE | 22 +- docs/etalab-2.0-fr.html | 6 +- docs/etalab-2.0-fr.json | 23 +- docs/etalab-2.0.LICENSE | 25 +- docs/etalab-2.0.html | 6 +- docs/etalab-2.0.json | 27 +- docs/eu-datagrid.LICENSE | 30 + docs/eu-datagrid.html | 3 +- docs/eu-datagrid.json | 37 +- docs/eupl-1.0.LICENSE | 18 + docs/eupl-1.0.html | 3 +- docs/eupl-1.0.json | 22 +- docs/eupl-1.1.LICENSE | 29 + docs/eupl-1.1.html | 3 +- docs/eupl-1.1.json | 30 +- docs/eupl-1.2.LICENSE | 28 + docs/eupl-1.2.html | 3 +- docs/eupl-1.2.json | 32 +- docs/eurosym.LICENSE | 14 +- docs/eurosym.html | 6 +- docs/eurosym.json | 13 +- docs/examdiff.LICENSE | 10 + docs/examdiff.html | 3 +- docs/examdiff.json | 10 +- docs/excelsior-jet-runtime.LICENSE | 13 + docs/excelsior-jet-runtime.html | 3 +- docs/excelsior-jet-runtime.json | 14 +- docs/fabien-tassin.LICENSE | 10 + docs/fabien-tassin.html | 3 +- docs/fabien-tassin.json | 10 +- docs/fabric-agreement-2017.LICENSE | 9 + docs/fabric-agreement-2017.html | 3 +- docs/fabric-agreement-2017.json | 9 +- docs/facebook-nuclide.LICENSE | 14 +- docs/facebook-nuclide.html | 6 +- docs/facebook-nuclide.json | 13 +- docs/facebook-patent-rights-2.LICENSE | 22 +- docs/facebook-patent-rights-2.html | 6 +- docs/facebook-patent-rights-2.json | 18 +- docs/facebook-software-license.LICENSE | 17 + docs/facebook-software-license.html | 3 +- docs/facebook-software-license.json | 19 +- docs/fair-source-0.9.LICENSE | 16 + docs/fair-source-0.9.html | 3 +- docs/fair-source-0.9.json | 18 +- docs/fair.LICENSE | 21 +- docs/fair.html | 6 +- docs/fair.json | 21 +- docs/fancyzoom.LICENSE | 13 + docs/fancyzoom.html | 3 +- docs/fancyzoom.json | 15 +- docs/far-manager-exception.LICENSE | 40 + docs/far-manager-exception.html | 3 +- docs/far-manager-exception.json | 11 +- docs/fastbuild-2012-2020.LICENSE | 16 + docs/fastbuild-2012-2020.html | 3 +- docs/fastbuild-2012-2020.json | 18 +- docs/fastcgi-devkit.LICENSE | 21 + docs/fastcgi-devkit.html | 3 +- docs/fastcgi-devkit.json | 20 +- docs/fatfs.LICENSE | 10 + docs/fatfs.html | 3 +- docs/fatfs.json | 10 +- docs/fawkes-runtime-exception.LICENSE | 14 + docs/fawkes-runtime-exception.html | 3 +- docs/fawkes-runtime-exception.json | 15 +- docs/fftpack-2004.LICENSE | 20 + docs/fftpack-2004.html | 3 +- docs/fftpack-2004.json | 17 +- docs/filament-group-mit.LICENSE | 17 + docs/filament-group-mit.html | 3 +- docs/filament-group-mit.json | 20 +- docs/first-works-appreciative-1.2.LICENSE | 16 + docs/first-works-appreciative-1.2.html | 3 +- docs/first-works-appreciative-1.2.json | 19 +- docs/flex-2.5.LICENSE | 17 +- docs/flex-2.5.html | 6 +- docs/flex-2.5.json | 17 +- docs/flex2sdk.LICENSE | 16 + docs/flex2sdk.html | 3 +- docs/flex2sdk.json | 18 +- docs/flora-1.1.LICENSE | 23 +- docs/flora-1.1.html | 13 +- docs/flora-1.1.json | 20 +- docs/flowplayer-gpl-3.0.LICENSE | 16 + docs/flowplayer-gpl-3.0.html | 3 +- docs/flowplayer-gpl-3.0.json | 19 +- docs/fltk-exception-lgpl-2.0.LICENSE | 44 + docs/fltk-exception-lgpl-2.0.html | 3 +- docs/fltk-exception-lgpl-2.0.json | 21 +- docs/font-alias.LICENSE | 19 + docs/font-alias.html | 3 +- docs/font-alias.json | 13 +- docs/font-exception-gpl.LICENSE | 34 + docs/font-exception-gpl.html | 3 +- docs/font-exception-gpl.json | 15 +- docs/foobar2000.LICENSE | 10 + docs/foobar2000.html | 3 +- docs/foobar2000.json | 10 +- docs/fpl.LICENSE | 12 + docs/fpl.html | 3 +- docs/fpl.json | 13 +- docs/fplot.LICENSE | 10 + docs/fplot.html | 3 +- docs/fplot.json | 10 +- docs/frameworx-1.0.LICENSE | 27 + docs/frameworx-1.0.html | 3 +- docs/frameworx-1.0.json | 31 +- docs/fraunhofer-fdk-aac-codec.LICENSE | 31 + docs/fraunhofer-fdk-aac-codec.html | 3 +- docs/fraunhofer-fdk-aac-codec.json | 37 +- docs/fraunhofer-iso-14496-10.LICENSE | 22 +- docs/fraunhofer-iso-14496-10.html | 6 +- docs/fraunhofer-iso-14496-10.json | 24 +- docs/free-art-1.3.LICENSE | 15 + docs/free-art-1.3.html | 3 +- docs/free-art-1.3.json | 17 +- docs/free-fork.LICENSE | 15 + docs/free-fork.html | 3 +- docs/free-fork.json | 18 +- docs/free-unknown.LICENSE | 11 + docs/free-unknown.html | 3 +- docs/free-unknown.json | 11 +- docs/freebsd-boot.LICENSE | 16 +- docs/freebsd-boot.html | 6 +- docs/freebsd-boot.json | 16 +- docs/freebsd-doc.LICENSE | 19 + docs/freebsd-doc.html | 3 +- docs/freebsd-doc.json | 22 +- docs/freebsd-first.LICENSE | 14 + docs/freebsd-first.html | 3 +- docs/freebsd-first.json | 15 +- docs/freeimage-1.0.LICENSE | 14 + docs/freeimage-1.0.html | 3 +- docs/freeimage-1.0.json | 16 +- docs/freemarker.LICENSE | 24 + docs/freemarker.html | 3 +- docs/freemarker.json | 30 +- docs/freertos-exception-2.0.LICENSE | 95 + docs/freertos-exception-2.0.html | 3 +- docs/freertos-exception-2.0.json | 18 +- docs/freetts.LICENSE | 19 + docs/freetts.html | 3 +- docs/freetts.json | 22 +- docs/freetype-patent.LICENSE | 15 +- docs/freetype-patent.html | 5 +- docs/freetype-patent.json | 12 +- docs/freetype.LICENSE | 31 + docs/freetype.html | 3 +- docs/freetype.json | 37 +- docs/froala-owdl-1.0.LICENSE | 16 + docs/froala-owdl-1.0.html | 3 +- docs/froala-owdl-1.0.json | 14 +- docs/frontier-1.0.LICENSE | 18 + docs/frontier-1.0.html | 3 +- docs/frontier-1.0.json | 22 +- docs/fsf-ap.LICENSE | 23 +- docs/fsf-ap.html | 6 +- docs/fsf-ap.json | 18 +- docs/fsf-free.LICENSE | 12 + docs/fsf-free.html | 3 +- docs/fsf-free.json | 13 +- docs/fsf-notice.LICENSE | 15 +- docs/fsf-notice.html | 6 +- docs/fsf-notice.json | 11 +- docs/fsf-unlimited-no-warranty.LICENSE | 16 + docs/fsf-unlimited-no-warranty.html | 7 +- docs/fsf-unlimited-no-warranty.json | 18 +- docs/fsf-unlimited-no-warranty.yml | 3 +- docs/fsf-unlimited.LICENSE | 12 +- docs/fsf-unlimited.html | 6 +- docs/fsf-unlimited.json | 10 +- docs/ftdi.LICENSE | 13 + docs/ftdi.html | 3 +- docs/ftdi.json | 14 +- docs/ftpbean.LICENSE | 20 +- docs/ftpbean.html | 6 +- docs/ftpbean.json | 22 +- docs/gareth-mccaughan.LICENSE | 14 + docs/gareth-mccaughan.html | 3 +- docs/gareth-mccaughan.json | 16 +- docs/gary-s-brown.LICENSE | 11 +- docs/gary-s-brown.html | 5 +- docs/gary-s-brown.json | 9 +- docs/gcc-compiler-exception-2.0.LICENSE | 31 + docs/gcc-compiler-exception-2.0.html | 3 +- docs/gcc-compiler-exception-2.0.json | 14 +- docs/gcc-exception-3.0.LICENSE | 24 +- docs/gcc-exception-3.0.html | 9 +- docs/gcc-exception-3.0.json | 28 +- docs/gcc-exception-3.1.LICENSE | 90 +- docs/gcc-exception-3.1.html | 6 +- docs/gcc-exception-3.1.json | 28 +- docs/gcc-linking-exception-2.0.LICENSE | 33 + docs/gcc-linking-exception-2.0.html | 3 +- docs/gcc-linking-exception-2.0.json | 15 +- docs/gcel-2022.LICENSE | 15 + docs/gcel-2022.html | 3 +- docs/gcel-2022.json | 17 +- docs/gco-v3.0.LICENSE | 10 + docs/gco-v3.0.html | 3 +- docs/gco-v3.0.json | 10 +- docs/gdcl.LICENSE | 14 +- docs/gdcl.html | 6 +- docs/gdcl.json | 13 +- docs/generic-cla.LICENSE | 10 + docs/generic-cla.html | 5 +- docs/generic-cla.json | 11 +- docs/generic-cla.yml | 2 +- docs/generic-exception.LICENSE | 13 + docs/generic-exception.html | 3 +- docs/generic-exception.json | 12 +- docs/generic-export-compliance.LICENSE | 11 + docs/generic-export-compliance.html | 3 +- docs/generic-export-compliance.json | 11 +- docs/generic-tos.LICENSE | 11 + docs/generic-tos.html | 3 +- docs/generic-tos.json | 11 +- docs/generic-trademark.LICENSE | 13 + docs/generic-trademark.html | 3 +- docs/generic-trademark.json | 14 +- docs/genivia-gsoap.LICENSE | 16 + docs/genivia-gsoap.html | 3 +- docs/genivia-gsoap.json | 19 +- docs/genode-agpl-3.0-exception.LICENSE | 19 +- docs/genode-agpl-3.0-exception.html | 10 +- docs/genode-agpl-3.0-exception.json | 19 +- docs/geoff-kuenning-1993.LICENSE | 16 + docs/geoff-kuenning-1993.html | 3 +- docs/geoff-kuenning-1993.json | 19 +- docs/geoserver-exception-2.0-plus.LICENSE | 46 + docs/geoserver-exception-2.0-plus.html | 3 +- docs/geoserver-exception-2.0-plus.json | 20 +- docs/gfdl-1.1-invariants-only.LICENSE | 36 + docs/gfdl-1.1-invariants-only.html | 3 +- docs/gfdl-1.1-invariants-only.json | 31 +- docs/gfdl-1.1-invariants-or-later.LICENSE | 38 + docs/gfdl-1.1-invariants-or-later.html | 3 +- docs/gfdl-1.1-invariants-or-later.json | 31 +- docs/gfdl-1.1-no-invariants-only.LICENSE | 35 + docs/gfdl-1.1-no-invariants-only.html | 3 +- docs/gfdl-1.1-no-invariants-only.json | 31 +- docs/gfdl-1.1-no-invariants-or-later.LICENSE | 36 + docs/gfdl-1.1-no-invariants-or-later.html | 3 +- docs/gfdl-1.1-no-invariants-or-later.json | 31 +- docs/gfdl-1.1-plus.LICENSE | 27 + docs/gfdl-1.1-plus.html | 3 +- docs/gfdl-1.1-plus.json | 33 +- docs/gfdl-1.1.LICENSE | 27 + docs/gfdl-1.1.html | 3 +- docs/gfdl-1.1.json | 33 +- docs/gfdl-1.2-invariants-only.LICENSE | 33 +- docs/gfdl-1.2-invariants-only.html | 6 +- docs/gfdl-1.2-invariants-only.json | 30 +- docs/gfdl-1.2-invariants-or-later.LICENSE | 34 +- docs/gfdl-1.2-invariants-or-later.html | 6 +- docs/gfdl-1.2-invariants-or-later.json | 30 +- docs/gfdl-1.2-no-invariants-only.LICENSE | 32 +- docs/gfdl-1.2-no-invariants-only.html | 6 +- docs/gfdl-1.2-no-invariants-only.json | 30 +- docs/gfdl-1.2-no-invariants-or-later.LICENSE | 33 +- docs/gfdl-1.2-no-invariants-or-later.html | 6 +- docs/gfdl-1.2-no-invariants-or-later.json | 30 +- docs/gfdl-1.2-plus.LICENSE | 28 +- docs/gfdl-1.2-plus.html | 6 +- docs/gfdl-1.2-plus.json | 32 +- docs/gfdl-1.2.LICENSE | 28 +- docs/gfdl-1.2.html | 6 +- docs/gfdl-1.2.json | 32 +- docs/gfdl-1.3-invariants-only.LICENSE | 32 +- docs/gfdl-1.3-invariants-only.html | 6 +- docs/gfdl-1.3-invariants-only.json | 29 +- docs/gfdl-1.3-invariants-or-later.LICENSE | 33 +- docs/gfdl-1.3-invariants-or-later.html | 6 +- docs/gfdl-1.3-invariants-or-later.json | 29 +- docs/gfdl-1.3-no-invariants-only.LICENSE | 31 +- docs/gfdl-1.3-no-invariants-only.html | 6 +- docs/gfdl-1.3-no-invariants-only.json | 29 +- docs/gfdl-1.3-no-invariants-or-later.LICENSE | 32 +- docs/gfdl-1.3-no-invariants-or-later.html | 6 +- docs/gfdl-1.3-no-invariants-or-later.json | 29 +- docs/gfdl-1.3-plus.LICENSE | 27 +- docs/gfdl-1.3-plus.html | 6 +- docs/gfdl-1.3-plus.json | 31 +- docs/gfdl-1.3.LICENSE | 25 +- docs/gfdl-1.3.html | 9 +- docs/gfdl-1.3.json | 30 +- docs/ghostpdl-permissive.LICENSE | 10 + docs/ghostpdl-permissive.html | 3 +- docs/ghostpdl-permissive.json | 10 +- docs/ghostscript-1988.LICENSE | 22 + docs/ghostscript-1988.html | 3 +- docs/ghostscript-1988.json | 22 +- docs/gitlab-ee.LICENSE | 17 + docs/gitlab-ee.html | 3 +- docs/gitlab-ee.json | 20 +- docs/gitpod-self-hosted-free-2020.LICENSE | 126 + docs/gitpod-self-hosted-free-2020.html | 271 + docs/gitpod-self-hosted-free-2020.json | 10 + docs/gitpod-self-hosted-free-2020.yml | 8 + docs/gl2ps.LICENSE | 16 + docs/gl2ps.html | 3 +- docs/gl2ps.json | 19 +- docs/gladman-older-rijndael-code-use.LICENSE | 12 + docs/gladman-older-rijndael-code-use.html | 3 +- docs/gladman-older-rijndael-code-use.json | 13 +- docs/glide.LICENSE | 21 + docs/glide.html | 3 +- docs/glide.json | 25 +- docs/glulxe.LICENSE | 10 + docs/glulxe.html | 3 +- docs/glulxe.json | 10 +- docs/glut.LICENSE | 11 +- docs/glut.html | 6 +- docs/glut.json | 9 +- docs/glwtpl.LICENSE | 16 + docs/glwtpl.html | 3 +- docs/glwtpl.json | 19 +- docs/gnu-emacs-gpl-1988.LICENSE | 18 + docs/gnu-emacs-gpl-1988.html | 3 +- docs/gnu-emacs-gpl-1988.json | 21 +- docs/gnu-javamail-exception.LICENSE | 20 + docs/gnu-javamail-exception.html | 3 +- docs/gnu-javamail-exception.json | 16 +- docs/gnuplot.LICENSE | 12 + docs/gnuplot.html | 3 +- docs/gnuplot.json | 13 +- docs/goahead.LICENSE | 21 + docs/goahead.html | 3 +- docs/goahead.json | 26 +- docs/good-boy.LICENSE | 12 + docs/good-boy.html | 3 +- docs/good-boy.json | 13 +- docs/google-analytics-tos-2015.LICENSE | 21 +- docs/google-analytics-tos-2015.html | 6 +- docs/google-analytics-tos-2015.json | 21 +- docs/google-analytics-tos-2016.LICENSE | 21 + docs/google-analytics-tos-2016.html | 3 +- docs/google-analytics-tos-2016.json | 23 +- docs/google-analytics-tos-2019.LICENSE | 23 +- docs/google-analytics-tos-2019.html | 9 +- docs/google-analytics-tos-2019.json | 24 +- docs/google-analytics-tos.LICENSE | 20 + docs/google-analytics-tos.html | 3 +- docs/google-analytics-tos.json | 23 +- docs/google-apis-tos-2021.LICENSE | 16 + docs/google-apis-tos-2021.html | 3 +- docs/google-apis-tos-2021.json | 19 +- docs/google-cla.LICENSE | 10 + docs/google-cla.html | 5 +- docs/google-cla.json | 10 +- docs/google-cla.yml | 2 +- docs/google-corporate-cla.LICENSE | 10 + docs/google-corporate-cla.html | 5 +- docs/google-corporate-cla.json | 10 +- docs/google-corporate-cla.yml | 2 +- docs/google-maps-tos-2018-02-07.LICENSE | 28 +- docs/google-maps-tos-2018-02-07.html | 5 +- docs/google-maps-tos-2018-02-07.json | 31 +- docs/google-maps-tos-2018-05-01.LICENSE | 38 + docs/google-maps-tos-2018-05-01.html | 3 +- docs/google-maps-tos-2018-05-01.json | 42 +- docs/google-maps-tos-2018-06-07.LICENSE | 37 + docs/google-maps-tos-2018-06-07.html | 3 +- docs/google-maps-tos-2018-06-07.json | 41 +- docs/google-maps-tos-2018-07-09.LICENSE | 38 + docs/google-maps-tos-2018-07-09.html | 3 +- docs/google-maps-tos-2018-07-09.json | 42 +- docs/google-maps-tos-2018-07-19.LICENSE | 37 + docs/google-maps-tos-2018-07-19.html | 3 +- docs/google-maps-tos-2018-07-19.json | 41 +- docs/google-maps-tos-2018-10-01.LICENSE | 37 + docs/google-maps-tos-2018-10-01.html | 3 +- docs/google-maps-tos-2018-10-01.json | 41 +- docs/google-maps-tos-2018-10-31.LICENSE | 37 + docs/google-maps-tos-2018-10-31.html | 3 +- docs/google-maps-tos-2018-10-31.json | 41 +- docs/google-maps-tos-2019-05-02.LICENSE | 36 + docs/google-maps-tos-2019-05-02.html | 3 +- docs/google-maps-tos-2019-05-02.json | 40 +- docs/google-maps-tos-2019-11-21.LICENSE | 40 +- docs/google-maps-tos-2019-11-21.html | 7 +- docs/google-maps-tos-2019-11-21.json | 40 +- docs/google-maps-tos-2020-04-02.LICENSE | 38 +- docs/google-maps-tos-2020-04-02.html | 5 +- docs/google-maps-tos-2020-04-02.json | 40 +- docs/google-maps-tos-2020-04-27.LICENSE | 38 +- docs/google-maps-tos-2020-04-27.html | 5 +- docs/google-maps-tos-2020-04-27.json | 40 +- docs/google-maps-tos-2020-05-06.LICENSE | 39 +- docs/google-maps-tos-2020-05-06.html | 5 +- docs/google-maps-tos-2020-05-06.json | 41 +- docs/google-ml-kit-tos-2022.LICENSE | 14 + docs/google-ml-kit-tos-2022.html | 3 +- docs/google-ml-kit-tos-2022.json | 15 +- docs/google-patent-license-fuchsia.LICENSE | 15 +- docs/google-patent-license-fuchsia.html | 6 +- docs/google-patent-license-fuchsia.json | 14 +- docs/google-patent-license-fuschia.LICENSE | 14 +- docs/google-patent-license-fuschia.html | 6 +- docs/google-patent-license-fuschia.json | 12 +- docs/google-patent-license-golang.LICENSE | 12 +- docs/google-patent-license-golang.html | 6 +- docs/google-patent-license-golang.json | 10 +- docs/google-patent-license-webm.LICENSE | 12 +- docs/google-patent-license-webm.html | 6 +- docs/google-patent-license-webm.json | 10 +- docs/google-patent-license-webrtc.LICENSE | 10 + docs/google-patent-license-webrtc.html | 3 +- docs/google-patent-license-webrtc.json | 10 +- docs/google-patent-license.LICENSE | 11 +- docs/google-patent-license.html | 6 +- docs/google-patent-license.json | 9 +- docs/google-playcore-sdk-tos-2020.LICENSE | 15 + docs/google-playcore-sdk-tos-2020.html | 3 +- docs/google-playcore-sdk-tos-2020.json | 17 +- docs/google-tos-2013.LICENSE | 10 + docs/google-tos-2013.html | 3 +- docs/google-tos-2013.json | 10 +- docs/google-tos-2014.LICENSE | 10 + docs/google-tos-2014.html | 3 +- docs/google-tos-2014.json | 10 +- docs/google-tos-2017.LICENSE | 10 + docs/google-tos-2017.html | 3 +- docs/google-tos-2017.json | 10 +- docs/google-tos-2019.LICENSE | 10 + docs/google-tos-2019.html | 3 +- docs/google-tos-2019.json | 10 +- docs/google-tos-2020.LICENSE | 10 + docs/google-tos-2020.html | 3 +- docs/google-tos-2020.json | 10 +- docs/gpl-1.0-plus.LICENSE | 27 +- docs/gpl-1.0-plus.html | 6 +- docs/gpl-1.0-plus.json | 30 +- docs/gpl-1.0.LICENSE | 26 +- docs/gpl-1.0.html | 9 +- docs/gpl-1.0.json | 30 +- docs/gpl-2.0-adaptec.LICENSE | 13 +- docs/gpl-2.0-adaptec.html | 6 +- docs/gpl-2.0-adaptec.json | 11 +- docs/gpl-2.0-autoconf.LICENSE | 14 + docs/gpl-2.0-autoconf.html | 3 +- docs/gpl-2.0-autoconf.json | 15 +- docs/gpl-2.0-autoopts.LICENSE | 11 + docs/gpl-2.0-autoopts.html | 3 +- docs/gpl-2.0-autoopts.json | 11 +- docs/gpl-2.0-bison-2.2.LICENSE | 13 + docs/gpl-2.0-bison-2.2.html | 3 +- docs/gpl-2.0-bison-2.2.json | 12 +- docs/gpl-2.0-bison.LICENSE | 14 + docs/gpl-2.0-bison.html | 3 +- docs/gpl-2.0-bison.json | 15 +- docs/gpl-2.0-broadcom-linking.LICENSE | 11 + docs/gpl-2.0-broadcom-linking.html | 3 +- docs/gpl-2.0-broadcom-linking.json | 11 +- docs/gpl-2.0-classpath.LICENSE | 26 + docs/gpl-2.0-classpath.html | 13 +- docs/gpl-2.0-classpath.json | 19 +- docs/gpl-2.0-cygwin.LICENSE | 14 + docs/gpl-2.0-cygwin.html | 3 +- docs/gpl-2.0-cygwin.json | 15 +- docs/gpl-2.0-djvu.LICENSE | 18 + docs/gpl-2.0-djvu.html | 3 +- docs/gpl-2.0-djvu.json | 22 +- docs/gpl-2.0-font.LICENSE | 14 + docs/gpl-2.0-font.html | 6 +- docs/gpl-2.0-font.json | 16 +- docs/gpl-2.0-freertos.LICENSE | 14 + docs/gpl-2.0-freertos.html | 3 +- docs/gpl-2.0-freertos.json | 15 +- docs/gpl-2.0-gcc-compiler-exception.LICENSE | 13 + docs/gpl-2.0-gcc-compiler-exception.html | 3 +- docs/gpl-2.0-gcc-compiler-exception.json | 14 +- docs/gpl-2.0-gcc.LICENSE | 15 + docs/gpl-2.0-gcc.html | 3 +- docs/gpl-2.0-gcc.json | 16 +- docs/gpl-2.0-glibc.LICENSE | 16 +- docs/gpl-2.0-glibc.html | 6 +- docs/gpl-2.0-glibc.json | 15 +- docs/gpl-2.0-guile.LICENSE | 11 + docs/gpl-2.0-guile.html | 3 +- docs/gpl-2.0-guile.json | 11 +- docs/gpl-2.0-ice.LICENSE | 14 + docs/gpl-2.0-ice.html | 3 +- docs/gpl-2.0-ice.json | 15 +- ...gpl-2.0-independent-module-linking.LICENSE | 52 + docs/gpl-2.0-independent-module-linking.html | 44 +- docs/gpl-2.0-independent-module-linking.json | 12 +- docs/gpl-2.0-iolib.LICENSE | 11 + docs/gpl-2.0-iolib.html | 3 +- docs/gpl-2.0-iolib.json | 11 +- docs/gpl-2.0-iso-cpp.LICENSE | 16 +- docs/gpl-2.0-iso-cpp.html | 6 +- docs/gpl-2.0-iso-cpp.json | 15 +- docs/gpl-2.0-javascript.LICENSE | 14 + docs/gpl-2.0-javascript.html | 3 +- docs/gpl-2.0-javascript.json | 15 +- docs/gpl-2.0-kernel.LICENSE | 11 + docs/gpl-2.0-kernel.html | 3 +- docs/gpl-2.0-kernel.json | 11 +- docs/gpl-2.0-koterov.LICENSE | 16 + docs/gpl-2.0-koterov.html | 3 +- docs/gpl-2.0-koterov.json | 19 +- docs/gpl-2.0-libgit2.LICENSE | 24 +- docs/gpl-2.0-libgit2.html | 8 +- docs/gpl-2.0-libgit2.json | 13 +- docs/gpl-2.0-library.LICENSE | 38 + docs/gpl-2.0-library.html | 27 +- docs/gpl-2.0-library.json | 14 +- docs/gpl-2.0-libtool.LICENSE | 11 + docs/gpl-2.0-libtool.html | 3 +- docs/gpl-2.0-libtool.json | 11 +- docs/gpl-2.0-lmbench.LICENSE | 11 + docs/gpl-2.0-lmbench.html | 3 +- docs/gpl-2.0-lmbench.json | 11 +- docs/gpl-2.0-mysql-connector-odbc.LICENSE | 14 + docs/gpl-2.0-mysql-connector-odbc.html | 3 +- docs/gpl-2.0-mysql-connector-odbc.json | 15 +- docs/gpl-2.0-mysql-floss.LICENSE | 14 + docs/gpl-2.0-mysql-floss.html | 3 +- docs/gpl-2.0-mysql-floss.json | 15 +- docs/gpl-2.0-openjdk.LICENSE | 52 + docs/gpl-2.0-openjdk.html | 43 +- docs/gpl-2.0-openjdk.json | 12 +- docs/gpl-2.0-openssl.LICENSE | 17 + docs/gpl-2.0-openssl.html | 3 +- docs/gpl-2.0-openssl.json | 19 +- docs/gpl-2.0-oracle-mysql-foss.LICENSE | 12 + docs/gpl-2.0-oracle-mysql-foss.html | 3 +- docs/gpl-2.0-oracle-mysql-foss.json | 12 +- docs/gpl-2.0-oracle-openjdk.LICENSE | 42 + docs/gpl-2.0-oracle-openjdk.html | 33 +- docs/gpl-2.0-oracle-openjdk.json | 12 +- docs/gpl-2.0-plus-ada.LICENSE | 15 +- docs/gpl-2.0-plus-ada.html | 6 +- docs/gpl-2.0-plus-ada.json | 14 +- docs/gpl-2.0-plus-ekiga.LICENSE | 11 + docs/gpl-2.0-plus-ekiga.html | 3 +- docs/gpl-2.0-plus-ekiga.json | 11 +- docs/gpl-2.0-plus-gcc.LICENSE | 12 + docs/gpl-2.0-plus-gcc.html | 3 +- docs/gpl-2.0-plus-gcc.json | 13 +- docs/gpl-2.0-plus-geoserver.LICENSE | 16 + docs/gpl-2.0-plus-geoserver.html | 3 +- docs/gpl-2.0-plus-geoserver.json | 18 +- docs/gpl-2.0-plus-linking.LICENSE | 11 + docs/gpl-2.0-plus-linking.html | 3 +- docs/gpl-2.0-plus-linking.json | 11 +- docs/gpl-2.0-plus-nant.LICENSE | 10 + docs/gpl-2.0-plus-nant.html | 3 +- docs/gpl-2.0-plus-nant.json | 10 +- docs/gpl-2.0-plus-openmotif.LICENSE | 14 + docs/gpl-2.0-plus-openmotif.html | 3 +- docs/gpl-2.0-plus-openmotif.json | 15 +- docs/gpl-2.0-plus-openssl.LICENSE | 12 + docs/gpl-2.0-plus-openssl.html | 3 +- docs/gpl-2.0-plus-openssl.json | 12 +- docs/gpl-2.0-plus-sane.LICENSE | 13 + docs/gpl-2.0-plus-sane.html | 3 +- docs/gpl-2.0-plus-sane.json | 14 +- docs/gpl-2.0-plus-subcommander.LICENSE | 11 + docs/gpl-2.0-plus-subcommander.html | 3 +- docs/gpl-2.0-plus-subcommander.json | 11 +- docs/gpl-2.0-plus-syntext.LICENSE | 11 + docs/gpl-2.0-plus-syntext.html | 3 +- docs/gpl-2.0-plus-syntext.json | 11 +- docs/gpl-2.0-plus-upx.LICENSE | 15 + docs/gpl-2.0-plus-upx.html | 3 +- docs/gpl-2.0-plus-upx.json | 16 +- docs/gpl-2.0-plus.LICENSE | 31 +- docs/gpl-2.0-plus.html | 6 +- docs/gpl-2.0-plus.json | 32 +- docs/gpl-2.0-proguard.LICENSE | 14 +- docs/gpl-2.0-proguard.html | 6 +- docs/gpl-2.0-proguard.json | 12 +- docs/gpl-2.0-qt-qca.LICENSE | 12 + docs/gpl-2.0-qt-qca.html | 3 +- docs/gpl-2.0-qt-qca.json | 13 +- docs/gpl-2.0-redhat.LICENSE | 14 + docs/gpl-2.0-redhat.html | 3 +- docs/gpl-2.0-redhat.json | 15 +- docs/gpl-2.0-rrdtool-floss.LICENSE | 12 + docs/gpl-2.0-rrdtool-floss.html | 3 +- docs/gpl-2.0-rrdtool-floss.json | 12 +- docs/gpl-2.0-uboot.LICENSE | 14 + docs/gpl-2.0-uboot.html | 3 +- docs/gpl-2.0-uboot.json | 15 +- docs/gpl-2.0.LICENSE | 46 +- docs/gpl-2.0.html | 6 +- docs/gpl-2.0.json | 41 +- docs/gpl-3.0-aptana.LICENSE | 14 + docs/gpl-3.0-aptana.html | 3 +- docs/gpl-3.0-aptana.json | 15 +- docs/gpl-3.0-autoconf.LICENSE | 15 + docs/gpl-3.0-autoconf.html | 3 +- docs/gpl-3.0-autoconf.json | 16 +- docs/gpl-3.0-bison.LICENSE | 15 +- docs/gpl-3.0-bison.html | 6 +- docs/gpl-3.0-bison.json | 14 +- docs/gpl-3.0-cygwin.LICENSE | 17 + docs/gpl-3.0-cygwin.html | 3 +- docs/gpl-3.0-cygwin.json | 19 +- docs/gpl-3.0-font.LICENSE | 12 + docs/gpl-3.0-font.html | 3 +- docs/gpl-3.0-font.json | 12 +- docs/gpl-3.0-gcc.LICENSE | 16 + docs/gpl-3.0-gcc.html | 3 +- docs/gpl-3.0-gcc.json | 17 +- docs/gpl-3.0-linking-exception.LICENSE | 11 + docs/gpl-3.0-linking-exception.html | 3 +- docs/gpl-3.0-linking-exception.json | 11 +- docs/gpl-3.0-linking-source-exception.LICENSE | 13 + docs/gpl-3.0-linking-source-exception.html | 3 +- docs/gpl-3.0-linking-source-exception.json | 14 +- docs/gpl-3.0-openbd.LICENSE | 17 + docs/gpl-3.0-openbd.html | 4 +- docs/gpl-3.0-openbd.json | 12 +- docs/gpl-3.0-plus-openssl.LICENSE | 11 + docs/gpl-3.0-plus-openssl.html | 3 +- docs/gpl-3.0-plus-openssl.json | 11 +- docs/gpl-3.0-plus.LICENSE | 34 +- docs/gpl-3.0-plus.html | 6 +- docs/gpl-3.0-plus.json | 36 +- docs/gpl-3.0.LICENSE | 37 +- docs/gpl-3.0.html | 6 +- docs/gpl-3.0.json | 39 +- docs/gpl-generic-additional-terms.LICENSE | 12 + docs/gpl-generic-additional-terms.html | 3 +- docs/gpl-generic-additional-terms.json | 12 +- docs/gplcc-1.0.LICENSE | 25 + docs/gplcc-1.0.html | 3 +- docs/gplcc-1.0.json | 27 +- docs/graphics-gems.LICENSE | 12 + docs/graphics-gems.html | 3 +- docs/graphics-gems.json | 13 +- docs/greg-roelofs.LICENSE | 13 + docs/greg-roelofs.html | 3 +- docs/greg-roelofs.json | 15 +- docs/gregory-pietsch.LICENSE | 9 + docs/gregory-pietsch.html | 3 +- docs/gregory-pietsch.json | 9 +- docs/gsoap-1.3a.LICENSE | 18 + docs/gsoap-1.3a.html | 3 +- docs/gsoap-1.3a.json | 22 +- docs/gsoap-1.3b.LICENSE | 22 + docs/gsoap-1.3b.html | 3 +- docs/gsoap-1.3b.json | 27 +- docs/gstreamer-exception-2.0.LICENSE | 17 + docs/gstreamer-exception-2.0.html | 3 +- docs/gstreamer-exception-2.0.json | 12 +- docs/gstreamer-exception-2005.LICENSE | 16 + docs/gstreamer-exception-2005.html | 162 + docs/gstreamer-exception-2005.json | 12 + docs/gstreamer-exception-2005.yml | 9 + docs/gstreamer-exception-2008.LICENSE | 18 + docs/gstreamer-exception-2008.html | 164 + docs/gstreamer-exception-2008.json | 12 + docs/gstreamer-exception-2008.yml | 9 + docs/guile-exception-2.0.LICENSE | 42 + docs/guile-exception-2.0.html | 3 +- docs/guile-exception-2.0.json | 14 +- docs/gust-font-1.0.LICENSE | 15 + docs/gust-font-1.0.html | 3 +- docs/gust-font-1.0.json | 16 +- docs/gust-font-2006-09-30.LICENSE | 15 + docs/gust-font-2006-09-30.html | 3 +- docs/gust-font-2006-09-30.json | 16 +- docs/gutenberg-2020.LICENSE | 18 + docs/gutenberg-2020.html | 3 +- docs/gutenberg-2020.json | 20 +- docs/h2-1.0.LICENSE | 18 +- docs/h2-1.0.html | 6 +- docs/h2-1.0.json | 15 +- docs/hacos-1.2.LICENSE | 16 + docs/hacos-1.2.html | 3 +- docs/hacos-1.2.json | 19 +- docs/happy-bunny.LICENSE | 14 + docs/happy-bunny.html | 3 +- docs/happy-bunny.json | 16 +- docs/haskell-report.LICENSE | 10 + docs/haskell-report.html | 3 +- docs/haskell-report.json | 10 +- docs/hauppauge-firmware-eula.LICENSE | 10 + docs/hauppauge-firmware-eula.html | 3 +- docs/hauppauge-firmware-eula.json | 10 +- docs/hauppauge-firmware-oem.LICENSE | 10 + docs/hauppauge-firmware-oem.html | 3 +- docs/hauppauge-firmware-oem.json | 10 +- docs/hazelcast-community-1.0.LICENSE | 12 + docs/hazelcast-community-1.0.html | 3 +- docs/hazelcast-community-1.0.json | 13 +- docs/hdf4.LICENSE | 58 + docs/hdf4.html | 3 +- docs/hdf4.json | 17 +- docs/hdf5.LICENSE | 17 +- docs/hdf5.html | 7 +- docs/hdf5.json | 11 +- docs/hdparm.LICENSE | 12 + docs/hdparm.html | 3 +- docs/hdparm.json | 13 +- docs/helios-eula.LICENSE | 12 + docs/helios-eula.html | 3 +- docs/helios-eula.json | 13 +- docs/helix.LICENSE | 18 + docs/helix.html | 3 +- docs/helix.json | 22 +- docs/help.html | 3 +- docs/henry-spencer-1999.LICENSE | 14 +- docs/henry-spencer-1999.html | 6 +- docs/henry-spencer-1999.json | 13 +- docs/here-disclaimer.LICENSE | 11 +- docs/here-disclaimer.html | 6 +- docs/here-disclaimer.json | 9 +- docs/here-proprietary.LICENSE | 13 +- docs/here-proprietary.html | 6 +- docs/here-proprietary.json | 12 +- docs/hessla.LICENSE | 14 +- docs/hessla.html | 6 +- docs/hessla.json | 13 +- docs/hidapi.LICENSE | 10 + docs/hidapi.html | 3 +- docs/hidapi.json | 10 +- docs/hippocratic-1.0.LICENSE | 12 +- docs/hippocratic-1.0.html | 6 +- docs/hippocratic-1.0.json | 10 +- docs/hippocratic-1.1.LICENSE | 12 +- docs/hippocratic-1.1.html | 6 +- docs/hippocratic-1.1.json | 10 +- docs/hippocratic-1.2.LICENSE | 20 +- docs/hippocratic-1.2.html | 7 +- docs/hippocratic-1.2.json | 19 +- docs/hippocratic-2.0.LICENSE | 22 +- docs/hippocratic-2.0.html | 6 +- docs/hippocratic-2.0.json | 23 +- docs/hippocratic-2.1.LICENSE | 20 +- docs/hippocratic-2.1.html | 6 +- docs/hippocratic-2.1.json | 21 +- docs/hippocratic-3.0.LICENSE | 22 +- docs/hippocratic-3.0.html | 7 +- docs/hippocratic-3.0.json | 21 +- docs/historical-ntp.LICENSE | 12 + docs/historical-ntp.html | 3 +- docs/historical-ntp.json | 10 +- docs/historical-sell-variant.LICENSE | 13 + docs/historical-sell-variant.html | 3 +- docs/historical-sell-variant.json | 14 +- docs/historical.LICENSE | 19 + docs/historical.html | 3 +- docs/historical.json | 19 +- docs/homebrewed.LICENSE | 12 + docs/homebrewed.html | 3 +- docs/homebrewed.json | 13 +- docs/hot-potato.LICENSE | 12 +- docs/hot-potato.html | 6 +- docs/hot-potato.json | 10 +- docs/hp-enterprise-eula.LICENSE | 18 + docs/hp-enterprise-eula.html | 3 +- docs/hp-enterprise-eula.json | 22 +- docs/hp-netperf.LICENSE | 16 + docs/hp-netperf.html | 3 +- docs/hp-netperf.json | 19 +- docs/hp-proliant-essentials.LICENSE | 17 + docs/hp-proliant-essentials.html | 3 +- docs/hp-proliant-essentials.json | 19 +- docs/hp-snmp-pp.LICENSE | 25 + docs/hp-snmp-pp.html | 3 +- docs/hp-snmp-pp.json | 11 +- docs/hp-software-eula.LICENSE | 14 + docs/hp-software-eula.html | 3 +- docs/hp-software-eula.json | 16 +- docs/hp-ux-java.LICENSE | 16 + docs/hp-ux-java.html | 3 +- docs/hp-ux-java.json | 19 +- docs/hp-ux-jre.LICENSE | 13 + docs/hp-ux-jre.html | 3 +- docs/hp-ux-jre.json | 15 +- docs/hp.LICENSE | 16 + docs/hp.html | 3 +- docs/hp.json | 19 +- docs/hs-regexp-orig.LICENSE | 15 +- docs/hs-regexp-orig.html | 6 +- docs/hs-regexp-orig.json | 13 +- docs/hs-regexp.LICENSE | 20 + docs/hs-regexp.html | 3 +- docs/hs-regexp.json | 22 +- docs/html5.LICENSE | 14 + docs/html5.html | 3 +- docs/html5.json | 10 +- docs/httpget.LICENSE | 18 +- docs/httpget.html | 6 +- docs/httpget.json | 15 +- docs/hugo.LICENSE | 15 + docs/hugo.html | 3 +- docs/hugo.json | 18 +- docs/hxd.LICENSE | 12 + docs/hxd.html | 3 +- docs/hxd.json | 13 +- docs/i2p-gpl-java-exception.LICENSE | 33 + docs/i2p-gpl-java-exception.html | 3 +- docs/i2p-gpl-java-exception.json | 16 +- docs/ian-kaplan.LICENSE | 11 +- docs/ian-kaplan.html | 6 +- docs/ian-kaplan.json | 9 +- docs/ian-piumarta.LICENSE | 12 +- docs/ian-piumarta.html | 6 +- docs/ian-piumarta.json | 10 +- docs/ibm-as-is.LICENSE | 15 +- docs/ibm-as-is.html | 6 +- docs/ibm-as-is.json | 15 +- docs/ibm-data-server-2011.LICENSE | 18 + docs/ibm-data-server-2011.html | 3 +- docs/ibm-data-server-2011.json | 20 +- ...-developerworks-community-download.LICENSE | 14 + ...ibm-developerworks-community-download.html | 3 +- ...ibm-developerworks-community-download.json | 16 +- docs/ibm-dhcp.LICENSE | 13 +- docs/ibm-dhcp.html | 6 +- docs/ibm-dhcp.json | 12 +- docs/ibm-icu.LICENSE | 51 + docs/ibm-icu.html | 3 +- docs/ibm-icu.json | 54 +- docs/ibm-java-portlet-spec-2.0.LICENSE | 18 + docs/ibm-java-portlet-spec-2.0.html | 3 +- docs/ibm-java-portlet-spec-2.0.json | 22 +- docs/ibm-jre.LICENSE | 16 + docs/ibm-jre.html | 3 +- docs/ibm-jre.json | 19 +- docs/ibm-nwsc.LICENSE | 10 + docs/ibm-nwsc.html | 3 +- docs/ibm-nwsc.json | 10 +- docs/ibm-pibs.LICENSE | 18 +- docs/ibm-pibs.html | 6 +- docs/ibm-pibs.json | 19 +- docs/ibm-sample.LICENSE | 13 +- docs/ibm-sample.html | 6 +- docs/ibm-sample.json | 12 +- docs/ibmpl-1.0.LICENSE | 24 + docs/ibmpl-1.0.html | 3 +- docs/ibmpl-1.0.json | 26 +- docs/ibpp.LICENSE | 10 + docs/ibpp.html | 3 +- docs/ibpp.json | 10 +- docs/ic-1.0.LICENSE | 16 + docs/ic-1.0.html | 3 +- docs/ic-1.0.json | 19 +- docs/ic-shared-1.0.LICENSE | 16 + docs/ic-shared-1.0.html | 3 +- docs/ic-shared-1.0.json | 19 +- docs/icann-public.LICENSE | 10 + docs/icann-public.html | 3 +- docs/icann-public.json | 10 +- docs/ice-exception-2.0.LICENSE | 54 + docs/ice-exception-2.0.html | 3 +- docs/ice-exception-2.0.json | 15 +- docs/icot-free.LICENSE | 12 +- docs/icot-free.html | 6 +- docs/icot-free.json | 10 +- docs/idt-notice.LICENSE | 9 + docs/idt-notice.html | 3 +- docs/idt-notice.json | 9 +- docs/ietf-trust.LICENSE | 35 + docs/ietf-trust.html | 3 +- docs/ietf-trust.json | 42 +- docs/ietf.LICENSE | 13 + docs/ietf.html | 3 +- docs/ietf.json | 14 +- docs/ijg.LICENSE | 27 + docs/ijg.html | 3 +- docs/ijg.json | 31 +- docs/ilmid.LICENSE | 12 + docs/ilmid.html | 3 +- docs/ilmid.json | 13 +- docs/imagemagick.LICENSE | 20 + docs/imagemagick.html | 3 +- docs/imagemagick.json | 24 +- docs/imagen.LICENSE | 9 + docs/imagen.html | 3 +- docs/imagen.json | 9 +- docs/imlib2.LICENSE | 14 + docs/imlib2.html | 3 +- docs/imlib2.json | 16 +- ...dependent-module-linking-exception.LICENSE | 15 +- .../independent-module-linking-exception.html | 6 +- .../independent-module-linking-exception.json | 14 +- docs/index.html | 1051 +- docs/index.json | 26912 ++- docs/index.yml | 175895 ++++++++++++++- docs/indiana-extreme-1.2.LICENSE | 21 + docs/indiana-extreme-1.2.html | 3 +- docs/indiana-extreme-1.2.json | 26 +- docs/indiana-extreme.LICENSE | 19 + docs/indiana-extreme.html | 3 +- docs/indiana-extreme.json | 24 +- docs/infineon-free.LICENSE | 11 +- docs/infineon-free.html | 6 +- docs/infineon-free.json | 9 +- docs/info-zip-1997-10.LICENSE | 40 +- docs/info-zip-1997-10.html | 6 +- docs/info-zip-1997-10.json | 44 +- docs/info-zip-2001-01.LICENSE | 20 +- docs/info-zip-2001-01.html | 6 +- docs/info-zip-2001-01.json | 22 +- docs/info-zip-2002-02.LICENSE | 21 +- docs/info-zip-2002-02.html | 6 +- docs/info-zip-2002-02.json | 23 +- docs/info-zip-2003-05.LICENSE | 21 +- docs/info-zip-2003-05.html | 6 +- docs/info-zip-2003-05.json | 23 +- docs/info-zip-2004-05.LICENSE | 18 + docs/info-zip-2004-05.html | 3 +- docs/info-zip-2004-05.json | 22 +- docs/info-zip-2005-02.LICENSE | 19 + docs/info-zip-2005-02.html | 3 +- docs/info-zip-2005-02.json | 23 +- docs/info-zip-2007-03.LICENSE | 19 + docs/info-zip-2007-03.html | 3 +- docs/info-zip-2007-03.json | 23 +- docs/info-zip-2009-01.LICENSE | 19 + docs/info-zip-2009-01.html | 3 +- docs/info-zip-2009-01.json | 23 +- docs/info-zip.LICENSE | 18 + docs/info-zip.html | 3 +- docs/info-zip.json | 22 +- docs/infonode-1.1.LICENSE | 19 + docs/infonode-1.1.html | 3 +- docs/infonode-1.1.json | 23 +- docs/initial-developer-public.LICENSE | 14 + docs/initial-developer-public.html | 3 +- docs/initial-developer-public.json | 16 +- docs/inner-net-2.0.LICENSE | 13 + docs/inner-net-2.0.html | 3 +- docs/inner-net-2.0.json | 14 +- docs/inno-setup.LICENSE | 21 + docs/inno-setup.html | 3 +- docs/inno-setup.json | 25 +- docs/inria-linking-exception.LICENSE | 20 + docs/inria-linking-exception.html | 3 +- docs/inria-linking-exception.json | 15 +- docs/installsite.LICENSE | 12 +- docs/installsite.html | 6 +- docs/installsite.json | 10 +- docs/intel-acpi.LICENSE | 18 + docs/intel-acpi.html | 3 +- docs/intel-acpi.json | 17 +- docs/intel-bcl.LICENSE | 11 +- docs/intel-bcl.html | 6 +- docs/intel-bcl.json | 9 +- docs/intel-bsd-2-clause.LICENSE | 16 +- docs/intel-bsd-2-clause.html | 6 +- docs/intel-bsd-2-clause.json | 13 +- docs/intel-bsd-export-control.LICENSE | 18 + docs/intel-bsd-export-control.html | 3 +- docs/intel-bsd-export-control.json | 18 +- docs/intel-bsd.LICENSE | 17 +- docs/intel-bsd.html | 6 +- docs/intel-bsd.json | 14 +- docs/intel-code-samples.LICENSE | 12 + docs/intel-code-samples.html | 3 +- docs/intel-code-samples.json | 13 +- docs/intel-confidential.LICENSE | 9 + docs/intel-confidential.html | 3 +- docs/intel-confidential.json | 9 +- docs/intel-firmware.LICENSE | 14 + docs/intel-firmware.html | 3 +- docs/intel-firmware.json | 16 +- docs/intel-master-eula-sw-dev-2016.LICENSE | 16 + docs/intel-master-eula-sw-dev-2016.html | 3 +- docs/intel-master-eula-sw-dev-2016.json | 18 +- docs/intel-material.LICENSE | 9 + docs/intel-material.html | 3 +- docs/intel-material.json | 9 +- docs/intel-mcu-2018.LICENSE | 10 + docs/intel-mcu-2018.html | 3 +- docs/intel-mcu-2018.json | 10 +- docs/intel-microcode.LICENSE | 11 + docs/intel-microcode.html | 3 +- docs/intel-microcode.json | 12 +- docs/intel-osl-1989.LICENSE | 13 + docs/intel-osl-1989.html | 3 +- docs/intel-osl-1989.json | 15 +- docs/intel-osl-1993.LICENSE | 11 +- docs/intel-osl-1993.html | 6 +- docs/intel-osl-1993.json | 9 +- docs/intel-royalty-free.LICENSE | 14 +- docs/intel-royalty-free.html | 6 +- docs/intel-royalty-free.json | 13 +- docs/intel-sample-source-code-2015.LICENSE | 12 + docs/intel-sample-source-code-2015.html | 3 +- docs/intel-sample-source-code-2015.json | 13 +- docs/intel-scl.LICENSE | 11 + docs/intel-scl.html | 3 +- docs/intel-scl.json | 12 +- docs/intel.LICENSE | 16 + docs/intel.html | 3 +- docs/intel.json | 19 +- docs/interbase-1.0.LICENSE | 24 + docs/interbase-1.0.html | 3 +- docs/interbase-1.0.json | 30 +- docs/iolib-exception-2.0.LICENSE | 31 + docs/iolib-exception-2.0.html | 3 +- docs/iolib-exception-2.0.json | 14 +- docs/iozone.LICENSE | 10 + docs/iozone.html | 3 +- docs/iozone.json | 10 +- docs/ipa-font.LICENSE | 17 + docs/ipa-font.html | 3 +- docs/ipa-font.json | 19 +- docs/iptc-2006.LICENSE | 12 + docs/iptc-2006.html | 3 +- docs/iptc-2006.json | 13 +- docs/irfanview-eula.LICENSE | 19 + docs/irfanview-eula.html | 3 +- docs/irfanview-eula.json | 23 +- docs/isc.LICENSE | 27 +- docs/isc.html | 6 +- docs/isc.json | 27 +- docs/iso-14496-10.LICENSE | 11 +- docs/iso-14496-10.html | 6 +- docs/iso-14496-10.json | 9 +- docs/iso-8879.LICENSE | 11 +- docs/iso-8879.html | 6 +- docs/iso-8879.json | 9 +- docs/iso-recorder.LICENSE | 12 + docs/iso-recorder.html | 3 +- docs/iso-recorder.json | 13 +- docs/isotope-cla.LICENSE | 10 + docs/isotope-cla.html | 3 +- docs/isotope-cla.json | 10 +- docs/issl-2018.LICENSE | 17 + docs/issl-2018.html | 3 +- docs/issl-2018.json | 20 +- docs/itc-eula.LICENSE | 12 + docs/itc-eula.html | 3 +- docs/itc-eula.json | 13 +- docs/itu-t-gpl.LICENSE | 12 + docs/itu-t-gpl.html | 3 +- docs/itu-t-gpl.json | 13 +- docs/itu-t.LICENSE | 11 + docs/itu-t.html | 3 +- docs/itu-t.json | 12 +- docs/itu.LICENSE | 18 + docs/itu.html | 3 +- docs/itu.json | 22 +- docs/itunes.LICENSE | 14 + docs/itunes.html | 3 +- docs/itunes.json | 16 +- docs/ja-sig.LICENSE | 21 +- docs/ja-sig.html | 7 +- docs/ja-sig.json | 17 +- docs/jahia-1.3.1.LICENSE | 17 + docs/jahia-1.3.1.html | 3 +- docs/jahia-1.3.1.json | 19 +- docs/jam-stapl.LICENSE | 10 + docs/jam-stapl.html | 3 +- docs/jam-stapl.json | 10 +- docs/jam.LICENSE | 14 + docs/jam.html | 3 +- docs/jam.json | 16 +- docs/jamon.LICENSE | 17 + docs/jamon.html | 3 +- docs/jamon.json | 20 +- docs/jason-mayes.LICENSE | 18 +- docs/jason-mayes.html | 6 +- docs/jason-mayes.json | 18 +- docs/jasper-1.0.LICENSE | 20 + docs/jasper-1.0.html | 3 +- docs/jasper-1.0.json | 25 +- docs/jasper-2.0.LICENSE | 21 + docs/jasper-2.0.html | 3 +- docs/jasper-2.0.json | 24 +- docs/java-app-stub.LICENSE | 13 + docs/java-app-stub.html | 3 +- docs/java-app-stub.json | 15 +- docs/java-research-1.5.LICENSE | 13 + docs/java-research-1.5.html | 3 +- docs/java-research-1.5.json | 14 +- docs/java-research-1.6.LICENSE | 15 +- docs/java-research-1.6.html | 6 +- docs/java-research-1.6.json | 14 +- docs/javascript-exception-2.0.LICENSE | 34 + docs/javascript-exception-2.0.html | 3 +- docs/javascript-exception-2.0.json | 14 +- docs/jboss-eula.LICENSE | 21 + docs/jboss-eula.html | 3 +- docs/jboss-eula.json | 25 +- docs/jdbm-1.00.LICENSE | 14 + docs/jdbm-1.00.html | 3 +- docs/jdbm-1.00.json | 16 +- docs/jdom.LICENSE | 18 + docs/jdom.html | 3 +- docs/jdom.json | 20 +- docs/jelurida-public-1.1.LICENSE | 15 + docs/jelurida-public-1.1.html | 3 +- docs/jelurida-public-1.1.json | 14 +- docs/jetbrains-purchase-terms.LICENSE | 13 + docs/jetbrains-purchase-terms.html | 3 +- docs/jetbrains-purchase-terms.json | 14 +- docs/jetbrains-toolbox-open-source-3.LICENSE | 18 + docs/jetbrains-toolbox-open-source-3.html | 3 +- docs/jetbrains-toolbox-open-source-3.json | 21 +- docs/jetty-ccla-1.1.LICENSE | 20 +- docs/jetty-ccla-1.1.html | 9 +- docs/jetty-ccla-1.1.json | 20 +- docs/jetty-ccla-1.1.yml | 2 +- docs/jetty.LICENSE | 25 + docs/jetty.html | 3 +- docs/jetty.json | 29 +- docs/jgraph-general.LICENSE | 12 + docs/jgraph-general.html | 3 +- docs/jgraph-general.json | 13 +- docs/jgraph.LICENSE | 15 +- docs/jgraph.html | 6 +- docs/jgraph.json | 14 +- docs/jide-sla.LICENSE | 15 +- docs/jide-sla.html | 7 +- docs/jide-sla.json | 13 +- docs/jj2000.LICENSE | 13 + docs/jj2000.html | 3 +- docs/jj2000.json | 13 +- docs/jmagnetic.LICENSE | 13 + docs/jmagnetic.html | 3 +- docs/jmagnetic.json | 15 +- docs/josl-1.0.LICENSE | 23 + docs/josl-1.0.html | 3 +- docs/josl-1.0.json | 27 +- docs/jpnic-idnkit.LICENSE | 22 +- docs/jpnic-idnkit.html | 7 +- docs/jpnic-idnkit.json | 23 +- docs/jpnic-mdnkit.LICENSE | 21 +- docs/jpnic-mdnkit.html | 7 +- docs/jpnic-mdnkit.json | 20 +- docs/jprs-oscl-1.1.LICENSE | 23 +- docs/jprs-oscl-1.1.html | 6 +- docs/jprs-oscl-1.1.json | 25 +- docs/jpython-1.1.LICENSE | 19 + docs/jpython-1.1.html | 3 +- docs/jpython-1.1.json | 23 +- docs/jquery-pd.LICENSE | 10 + docs/jquery-pd.html | 3 +- docs/jquery-pd.json | 10 +- docs/jrunner.LICENSE | 14 + docs/jrunner.html | 3 +- docs/jrunner.json | 16 +- docs/jscheme.LICENSE | 12 + docs/jscheme.html | 3 +- docs/jscheme.json | 13 +- docs/jsfromhell.LICENSE | 10 + docs/jsfromhell.html | 3 +- docs/jsfromhell.json | 10 +- docs/json-js-pd.LICENSE | 18 +- docs/json-js-pd.html | 6 +- docs/json-js-pd.json | 18 +- docs/json-pd.LICENSE | 16 + docs/json-pd.html | 3 +- docs/json-pd.json | 18 +- docs/json.LICENSE | 17 +- docs/json.html | 6 +- docs/json.json | 17 +- docs/jsr-107-jcache-spec-2013.LICENSE | 22 + docs/jsr-107-jcache-spec-2013.html | 3 +- docs/jsr-107-jcache-spec-2013.json | 21 +- docs/jsr-107-jcache-spec.LICENSE | 18 + docs/jsr-107-jcache-spec.html | 3 +- docs/jsr-107-jcache-spec.json | 18 +- docs/jython.LICENSE | 27 + docs/jython.html | 3 +- docs/jython.json | 32 +- docs/kalle-kaukonen.LICENSE | 14 +- docs/kalle-kaukonen.html | 6 +- docs/kalle-kaukonen.json | 13 +- docs/karl-peterson.LICENSE | 12 + docs/karl-peterson.html | 3 +- docs/karl-peterson.json | 13 +- docs/katharos-0.1.0.LICENSE | 16 + docs/katharos-0.1.0.html | 3 +- docs/katharos-0.1.0.json | 18 +- docs/kde-accepted-gpl.LICENSE | 15 +- docs/kde-accepted-gpl.html | 6 +- docs/kde-accepted-gpl.json | 14 +- docs/kde-accepted-lgpl.LICENSE | 13 + docs/kde-accepted-lgpl.html | 3 +- docs/kde-accepted-lgpl.json | 14 +- docs/keith-rule.LICENSE | 11 +- docs/keith-rule.html | 6 +- docs/keith-rule.json | 9 +- docs/kerberos.LICENSE | 27 +- docs/kerberos.html | 6 +- docs/kerberos.json | 28 +- docs/kevan-stannard.LICENSE | 43 + docs/kevan-stannard.html | 3 +- docs/kevan-stannard.json | 11 +- docs/kevlin-henney.LICENSE | 11 +- docs/kevlin-henney.html | 6 +- docs/kevlin-henney.json | 9 +- docs/kfqf-accepted-gpl.LICENSE | 17 + docs/kfqf-accepted-gpl.html | 3 +- docs/kfqf-accepted-gpl.json | 19 +- docs/khronos.LICENSE | 18 +- docs/khronos.html | 6 +- docs/khronos.json | 13 +- docs/kicad-libraries-exception.LICENSE | 15 + docs/kicad-libraries-exception.html | 10 +- docs/kicad-libraries-exception.json | 14 +- docs/kicad-libraries-exception.yml | 1 + docs/knuth-ctan.LICENSE | 16 + docs/knuth-ctan.html | 156 + docs/knuth-ctan.json | 11 + docs/knuth-ctan.yml | 8 + ...kreative-relay-fonts-free-use-1.2f.LICENSE | 14 + docs/kreative-relay-fonts-free-use-1.2f.html | 3 +- docs/kreative-relay-fonts-free-use-1.2f.json | 16 +- docs/kumar-robotics.LICENSE | 22 + docs/kumar-robotics.html | 3 +- docs/kumar-robotics.json | 14 +- docs/lal-1.2.LICENSE | 15 + docs/lal-1.2.html | 3 +- docs/lal-1.2.json | 16 +- docs/lal-1.3.LICENSE | 14 + docs/lal-1.3.html | 3 +- docs/lal-1.3.json | 15 +- docs/larabie.LICENSE | 16 + docs/larabie.html | 3 +- docs/larabie.json | 18 +- docs/latex2e.LICENSE | 11 + docs/latex2e.html | 3 +- docs/latex2e.json | 11 +- docs/lattice-osl-2017.LICENSE | 49 + docs/lattice-osl-2017.html | 202 + docs/lattice-osl-2017.json | 15 + docs/lattice-osl-2017.yml | 11 + docs/lavantech.LICENSE | 14 + docs/lavantech.html | 3 +- docs/lavantech.json | 16 +- docs/lbnl-bsd.LICENSE | 20 +- docs/lbnl-bsd.html | 6 +- docs/lbnl-bsd.json | 20 +- docs/lcs-telegraphics.LICENSE | 11 +- docs/lcs-telegraphics.html | 6 +- docs/lcs-telegraphics.json | 9 +- docs/ldap-sdk-free-use.LICENSE | 10 + docs/ldap-sdk-free-use.html | 3 +- docs/ldap-sdk-free-use.json | 10 +- docs/ldpc-1994.LICENSE | 14 +- docs/ldpc-1994.html | 6 +- docs/ldpc-1994.json | 13 +- docs/ldpc-1997.LICENSE | 16 +- docs/ldpc-1997.html | 5 +- docs/ldpc-1997.json | 16 +- docs/ldpc-1999.LICENSE | 13 +- docs/ldpc-1999.html | 10 +- docs/ldpc-1999.json | 12 +- docs/ldpgpl-1.LICENSE | 11 + docs/ldpgpl-1.html | 3 +- docs/ldpgpl-1.json | 12 +- docs/ldpgpl-1a.LICENSE | 11 + docs/ldpgpl-1a.html | 3 +- docs/ldpgpl-1a.json | 12 +- docs/ldpl-2.0.LICENSE | 17 +- docs/ldpl-2.0.html | 9 +- docs/ldpl-2.0.json | 19 +- docs/ldpm-1998.LICENSE | 12 +- docs/ldpm-1998.html | 5 +- docs/ldpm-1998.json | 10 +- docs/leap-motion-sdk-2019.LICENSE | 16 + docs/leap-motion-sdk-2019.html | 3 +- docs/leap-motion-sdk-2019.json | 18 +- docs/leptonica.LICENSE | 10 + docs/leptonica.html | 3 +- docs/leptonica.json | 10 +- docs/lgpl-2.0-fltk.LICENSE | 14 +- docs/lgpl-2.0-fltk.html | 6 +- docs/lgpl-2.0-fltk.json | 12 +- docs/lgpl-2.0-plus-gcc.LICENSE | 12 + docs/lgpl-2.0-plus-gcc.html | 3 +- docs/lgpl-2.0-plus-gcc.json | 13 +- docs/lgpl-2.0-plus.LICENSE | 29 +- docs/lgpl-2.0-plus.html | 6 +- docs/lgpl-2.0-plus.json | 30 +- docs/lgpl-2.0.LICENSE | 34 +- docs/lgpl-2.0.html | 6 +- docs/lgpl-2.0.json | 35 +- docs/lgpl-2.1-digia-qt.LICENSE | 12 + docs/lgpl-2.1-digia-qt.html | 3 +- docs/lgpl-2.1-digia-qt.json | 12 +- docs/lgpl-2.1-nokia-qt-1.0.LICENSE | 13 +- docs/lgpl-2.1-nokia-qt-1.0.html | 6 +- docs/lgpl-2.1-nokia-qt-1.0.json | 11 +- docs/lgpl-2.1-nokia-qt-1.1.LICENSE | 13 + docs/lgpl-2.1-nokia-qt-1.1.html | 3 +- docs/lgpl-2.1-nokia-qt-1.1.json | 14 +- docs/lgpl-2.1-nokia-qt.LICENSE | 16 +- docs/lgpl-2.1-nokia-qt.html | 6 +- docs/lgpl-2.1-nokia-qt.json | 16 +- docs/lgpl-2.1-plus-linking.LICENSE | 15 + docs/lgpl-2.1-plus-linking.html | 3 +- docs/lgpl-2.1-plus-linking.json | 17 +- docs/lgpl-2.1-plus-unlimited-linking.LICENSE | 14 + docs/lgpl-2.1-plus-unlimited-linking.html | 3 +- docs/lgpl-2.1-plus-unlimited-linking.json | 15 +- docs/lgpl-2.1-plus.LICENSE | 29 + docs/lgpl-2.1-plus.html | 3 +- docs/lgpl-2.1-plus.json | 32 +- docs/lgpl-2.1-qt-company-2017.LICENSE | 31 + docs/lgpl-2.1-qt-company-2017.html | 4 +- docs/lgpl-2.1-qt-company-2017.json | 11 +- docs/lgpl-2.1-qt-company.LICENSE | 12 + docs/lgpl-2.1-qt-company.html | 3 +- docs/lgpl-2.1-qt-company.json | 12 +- docs/lgpl-2.1-rxtx.LICENSE | 14 + docs/lgpl-2.1-rxtx.html | 3 +- docs/lgpl-2.1-rxtx.json | 15 +- docs/lgpl-2.1-spell-checker.LICENSE | 25 + docs/lgpl-2.1-spell-checker.html | 4 +- docs/lgpl-2.1-spell-checker.json | 18 +- docs/lgpl-2.1.LICENSE | 37 + docs/lgpl-2.1.html | 3 +- docs/lgpl-2.1.json | 40 +- docs/lgpl-3-plus-linking.LICENSE | 14 + docs/lgpl-3-plus-linking.html | 3 +- docs/lgpl-3-plus-linking.json | 15 +- docs/lgpl-3.0-cygwin.LICENSE | 13 + docs/lgpl-3.0-cygwin.html | 3 +- docs/lgpl-3.0-cygwin.json | 14 +- docs/lgpl-3.0-linking-exception.LICENSE | 18 + docs/lgpl-3.0-linking-exception.html | 3 +- docs/lgpl-3.0-linking-exception.json | 20 +- docs/lgpl-3.0-plus-openssl.LICENSE | 12 + docs/lgpl-3.0-plus-openssl.html | 3 +- docs/lgpl-3.0-plus-openssl.json | 12 +- docs/lgpl-3.0-plus.LICENSE | 32 +- docs/lgpl-3.0-plus.html | 6 +- docs/lgpl-3.0-plus.json | 34 +- docs/lgpl-3.0-zeromq.LICENSE | 13 + docs/lgpl-3.0-zeromq.html | 6 +- docs/lgpl-3.0-zeromq.json | 15 +- docs/lgpl-3.0.LICENSE | 35 +- docs/lgpl-3.0.html | 6 +- docs/lgpl-3.0.json | 37 +- docs/lgpllr.LICENSE | 12 + docs/lgpllr.html | 3 +- docs/lgpllr.json | 13 +- docs/lha.LICENSE | 15 +- docs/lha.html | 6 +- docs/lha.json | 14 +- docs/libcap.LICENSE | 14 + docs/libcap.html | 3 +- docs/libcap.json | 14 +- docs/liberation-font-exception.LICENSE | 20 +- docs/liberation-font-exception.html | 6 +- docs/liberation-font-exception.json | 21 +- docs/libgd-2018.LICENSE | 48 + docs/libgd-2018.html | 3 +- docs/libgd-2018.json | 50 +- docs/libgeotiff.LICENSE | 18 + docs/libgeotiff.html | 3 +- docs/libgeotiff.json | 20 +- docs/libmib.LICENSE | 17 + docs/libmib.html | 3 +- docs/libmib.json | 20 +- docs/libmng-2007.LICENSE | 51 + docs/libmng-2007.html | 3 +- docs/libmng-2007.json | 13 +- docs/libpbm.LICENSE | 17 +- docs/libpbm.html | 7 +- docs/libpbm.json | 16 +- docs/libpng-v2.LICENSE | 26 +- docs/libpng-v2.html | 7 +- docs/libpng-v2.json | 25 +- docs/libpng.LICENSE | 24 + docs/libpng.html | 3 +- docs/libpng.json | 28 +- docs/librato-exception.LICENSE | 10 + docs/librato-exception.html | 3 +- docs/librato-exception.json | 10 +- docs/libselinux-pd.LICENSE | 12 + docs/libselinux-pd.html | 3 +- docs/libselinux-pd.json | 13 +- docs/libsrv-1.0.2.LICENSE | 15 + docs/libsrv-1.0.2.html | 3 +- docs/libsrv-1.0.2.json | 14 +- docs/libtool-exception-2.0.LICENSE | 31 + docs/libtool-exception-2.0.html | 3 +- docs/libtool-exception-2.0.json | 15 +- docs/libtool-exception.LICENSE | 13 + docs/libtool-exception.html | 3 +- docs/libtool-exception.json | 14 +- docs/libutil-david-nugent.LICENSE | 27 + docs/libutil-david-nugent.html | 166 + docs/libutil-david-nugent.json | 12 + docs/libutil-david-nugent.yml | 9 + docs/libwebsockets-exception.LICENSE | 56 + docs/libwebsockets-exception.html | 3 +- docs/libwebsockets-exception.json | 20 +- docs/libzip.LICENSE | 11 + docs/libzip.html | 3 +- docs/libzip.json | 11 +- docs/license-file-reference.LICENSE | 10 + docs/license-file-reference.html | 3 +- docs/license-file-reference.json | 11 +- docs/lil-1.LICENSE | 15 +- docs/lil-1.html | 6 +- docs/lil-1.json | 14 +- docs/liliq-p-1.1.LICENSE | 15 + docs/liliq-p-1.1.html | 3 +- docs/liliq-p-1.1.json | 16 +- docs/liliq-r-1.1.LICENSE | 15 + docs/liliq-r-1.1.html | 3 +- docs/liliq-r-1.1.json | 16 +- docs/liliq-rplus-1.1.LICENSE | 14 + docs/liliq-rplus-1.1.html | 3 +- docs/liliq-rplus-1.1.json | 15 +- docs/lilo.LICENSE | 15 +- docs/lilo.html | 6 +- docs/lilo.json | 14 +- docs/linking-exception-2.0-plus.LICENSE | 30 + docs/linking-exception-2.0-plus.html | 3 +- docs/linking-exception-2.0-plus.json | 14 +- docs/linking-exception-2.1-plus.LICENSE | 32 + docs/linking-exception-2.1-plus.html | 3 +- docs/linking-exception-2.1-plus.json | 14 +- docs/linking-exception-agpl-3.0.LICENSE | 11 + docs/linking-exception-agpl-3.0.html | 3 +- docs/linking-exception-agpl-3.0.json | 11 +- docs/linking-exception-lgpl-2.0-plus.LICENSE | 30 + docs/linking-exception-lgpl-2.0-plus.html | 3 +- docs/linking-exception-lgpl-2.0-plus.json | 17 +- docs/linking-exception-lgpl-3.0.LICENSE | 42 + docs/linking-exception-lgpl-3.0.html | 3 +- docs/linking-exception-lgpl-3.0.json | 16 +- docs/linotype-eula.LICENSE | 10 + docs/linotype-eula.html | 3 +- docs/linotype-eula.json | 10 +- docs/linum.LICENSE | 10 + docs/linum.html | 3 +- docs/linum.json | 10 +- docs/linux-device-drivers.LICENSE | 9 + docs/linux-device-drivers.html | 3 +- docs/linux-device-drivers.json | 9 +- docs/linux-openib.LICENSE | 20 +- docs/linux-openib.html | 6 +- docs/linux-openib.json | 18 +- docs/linux-syscall-exception-gpl.LICENSE | 40 + docs/linux-syscall-exception-gpl.html | 3 +- docs/linux-syscall-exception-gpl.json | 23 +- docs/linuxbios.LICENSE | 12 +- docs/linuxbios.html | 6 +- docs/linuxbios.json | 10 +- docs/linuxhowtos.LICENSE | 11 + docs/linuxhowtos.html | 3 +- docs/linuxhowtos.json | 11 +- docs/llgpl.LICENSE | 14 + docs/llgpl.html | 3 +- docs/llgpl.json | 15 +- docs/llnl.LICENSE | 12 + docs/llnl.html | 3 +- docs/llnl.json | 10 +- docs/llvm-exception.LICENSE | 32 + docs/llvm-exception.html | 3 +- docs/llvm-exception.json | 16 +- docs/lmbench-exception-2.0.LICENSE | 27 + docs/lmbench-exception-2.0.html | 3 +- docs/lmbench-exception-2.0.json | 15 +- docs/logica-1.0.LICENSE | 16 + docs/logica-1.0.html | 3 +- docs/logica-1.0.json | 19 +- docs/lontium-linux-firmware.LICENSE | 10 + docs/lontium-linux-firmware.html | 3 +- docs/lontium-linux-firmware.json | 10 +- docs/losla.LICENSE | 19 + docs/losla.html | 3 +- docs/losla.json | 23 +- docs/lppl-1.0.LICENSE | 17 + docs/lppl-1.0.html | 3 +- docs/lppl-1.0.json | 20 +- docs/lppl-1.1.LICENSE | 19 + docs/lppl-1.1.html | 3 +- docs/lppl-1.1.json | 23 +- docs/lppl-1.2.LICENSE | 19 + docs/lppl-1.2.html | 3 +- docs/lppl-1.2.json | 23 +- docs/lppl-1.3a.LICENSE | 19 + docs/lppl-1.3a.html | 3 +- docs/lppl-1.3a.json | 23 +- docs/lppl-1.3c.LICENSE | 28 +- docs/lppl-1.3c.html | 7 +- docs/lppl-1.3c.json | 28 +- docs/lsi-proprietary-eula.LICENSE | 12 + docs/lsi-proprietary-eula.html | 3 +- docs/lsi-proprietary-eula.json | 13 +- docs/lucent-pl-1.0.LICENSE | 17 + docs/lucent-pl-1.0.html | 3 +- docs/lucent-pl-1.0.json | 19 +- docs/lucent-pl-1.02.LICENSE | 21 + docs/lucent-pl-1.02.html | 3 +- docs/lucent-pl-1.02.json | 25 +- docs/lucre.LICENSE | 15 + docs/lucre.html | 3 +- docs/lucre.json | 15 +- docs/lumisoft-mail-server.LICENSE | 12 + docs/lumisoft-mail-server.html | 3 +- docs/lumisoft-mail-server.json | 13 +- docs/luxi.LICENSE | 18 + docs/luxi.html | 3 +- docs/luxi.json | 21 +- docs/lyubinskiy-dropdown.LICENSE | 14 + docs/lyubinskiy-dropdown.html | 3 +- docs/lyubinskiy-dropdown.json | 16 +- docs/lyubinskiy-popup-window.LICENSE | 14 + docs/lyubinskiy-popup-window.html | 3 +- docs/lyubinskiy-popup-window.json | 16 +- docs/lzma-cpl-exception.LICENSE | 11 + docs/lzma-cpl-exception.html | 3 +- docs/lzma-cpl-exception.json | 11 +- docs/lzma-sdk-2006-exception.LICENSE | 14 + docs/lzma-sdk-2006-exception.html | 3 +- docs/lzma-sdk-2006-exception.json | 15 +- docs/lzma-sdk-2006.LICENSE | 15 + docs/lzma-sdk-2006.html | 3 +- docs/lzma-sdk-2006.json | 18 +- docs/lzma-sdk-2008.LICENSE | 14 + docs/lzma-sdk-2008.html | 3 +- docs/lzma-sdk-2008.json | 16 +- docs/lzma-sdk-9.11-to-9.20.LICENSE | 20 + docs/lzma-sdk-9.11-to-9.20.html | 159 + docs/lzma-sdk-9.11-to-9.20.json | 12 + docs/lzma-sdk-9.11-to-9.20.yml | 9 + docs/lzma-sdk-9.22.LICENSE | 27 + docs/lzma-sdk-9.22.html | 166 + docs/lzma-sdk-9.22.json | 12 + docs/lzma-sdk-9.22.yml | 9 + docs/lzma-sdk-original.LICENSE | 19 + docs/lzma-sdk-original.html | 3 +- docs/lzma-sdk-original.json | 22 +- docs/lzma-sdk-pd.LICENSE | 9 + docs/lzma-sdk-pd.html | 3 +- docs/lzma-sdk-pd.json | 9 +- docs/m-plus.LICENSE | 19 +- docs/m-plus.html | 5 +- docs/m-plus.json | 19 +- docs/madwifi-dual.LICENSE | 11 + docs/madwifi-dual.html | 3 +- docs/madwifi-dual.json | 11 +- docs/magpie-exception-1.0.LICENSE | 11 + docs/magpie-exception-1.0.html | 3 +- docs/magpie-exception-1.0.json | 11 +- docs/make-human-exception.LICENSE | 14 + docs/make-human-exception.html | 6 +- docs/make-human-exception.json | 17 +- docs/makeindex.LICENSE | 13 + docs/makeindex.html | 3 +- docs/makeindex.json | 11 +- docs/mame.LICENSE | 10 + docs/mame.html | 3 +- docs/mame.json | 10 +- docs/manfred-klein-fonts-tos.LICENSE | 11 + docs/manfred-klein-fonts-tos.html | 3 +- docs/manfred-klein-fonts-tos.json | 12 +- docs/mapbox-tos-2021.LICENSE | 15 + docs/mapbox-tos-2021.html | 3 +- docs/mapbox-tos-2021.json | 17 +- docs/markus-kuhn-license.LICENSE | 14 + docs/markus-kuhn-license.html | 3 +- docs/markus-kuhn-license.json | 16 +- docs/martin-birgmeier.LICENSE | 12 + docs/martin-birgmeier.html | 3 +- docs/martin-birgmeier.json | 13 +- docs/marvell-firmware-2019.LICENSE | 10 + docs/marvell-firmware-2019.html | 3 +- docs/marvell-firmware-2019.json | 10 +- docs/marvell-firmware.LICENSE | 10 + docs/marvell-firmware.html | 3 +- docs/marvell-firmware.json | 10 +- docs/matt-gallagher-attribution.LICENSE | 12 + docs/matt-gallagher-attribution.html | 3 +- docs/matt-gallagher-attribution.json | 13 +- docs/matthew-kwan.LICENSE | 15 +- docs/matthew-kwan.html | 6 +- docs/matthew-kwan.json | 14 +- docs/matthew-welch-font-license.LICENSE | 10 + docs/matthew-welch-font-license.html | 3 +- docs/matthew-welch-font-license.json | 10 +- docs/mattkruse.LICENSE | 12 + docs/mattkruse.html | 3 +- docs/mattkruse.json | 13 +- docs/maxmind-geolite2-eula-2019.LICENSE | 20 + docs/maxmind-geolite2-eula-2019.html | 3 +- docs/maxmind-geolite2-eula-2019.json | 22 +- docs/maxmind-odl.LICENSE | 14 + docs/maxmind-odl.html | 3 +- docs/maxmind-odl.json | 14 +- docs/mcafee-tou.LICENSE | 10 + docs/mcafee-tou.html | 3 +- docs/mcafee-tou.json | 10 +- docs/mcrae-pl-4-r53.LICENSE | 14 + docs/mcrae-pl-4-r53.html | 3 +- docs/mcrae-pl-4-r53.json | 15 +- docs/mediainfo-lib.LICENSE | 17 + docs/mediainfo-lib.html | 3 +- docs/mediainfo-lib.json | 20 +- docs/melange.LICENSE | 17 + docs/melange.html | 3 +- docs/melange.json | 21 +- docs/mentalis.LICENSE | 13 + docs/mentalis.html | 3 +- docs/mentalis.json | 14 +- docs/merit-network-derivative.LICENSE | 71 + docs/merit-network-derivative.html | 3 +- docs/merit-network-derivative.json | 15 +- docs/metageek-inssider-eula.LICENSE | 17 + docs/metageek-inssider-eula.html | 3 +- docs/metageek-inssider-eula.json | 20 +- docs/metrolink-1.0.LICENSE | 16 + docs/metrolink-1.0.html | 3 +- docs/metrolink-1.0.json | 19 +- docs/mgopen-font-license.LICENSE | 13 + docs/mgopen-font-license.html | 3 +- docs/mgopen-font-license.json | 14 +- docs/michael-barr.LICENSE | 9 + docs/michael-barr.html | 3 +- docs/michael-barr.json | 9 +- docs/michigan-disclaimer.LICENSE | 12 +- docs/michigan-disclaimer.html | 6 +- docs/michigan-disclaimer.json | 10 +- docs/microchip-linux-firmware.LICENSE | 10 + docs/microchip-linux-firmware.html | 3 +- docs/microchip-linux-firmware.json | 10 +- docs/microchip-products-2018.LICENSE | 32 + docs/microchip-products-2018.html | 179 + docs/microchip-products-2018.json | 14 + docs/microchip-products-2018.yml | 10 + .../microsoft-enterprise-library-eula.LICENSE | 16 + docs/microsoft-enterprise-library-eula.html | 3 +- docs/microsoft-enterprise-library-eula.json | 19 +- docs/microsoft-windows-rally-devkit.LICENSE | 13 + docs/microsoft-windows-rally-devkit.html | 3 +- docs/microsoft-windows-rally-devkit.json | 14 +- docs/mif-exception.LICENSE | 25 + docs/mif-exception.html | 3 +- docs/mif-exception.json | 18 +- docs/mike95.LICENSE | 16 + docs/mike95.html | 3 +- docs/mike95.json | 19 +- docs/minecraft-mod.LICENSE | 13 +- docs/minecraft-mod.html | 6 +- docs/minecraft-mod.json | 11 +- docs/mini-xml-exception-lgpl-2.0.LICENSE | 44 + docs/mini-xml-exception-lgpl-2.0.html | 3 +- docs/mini-xml-exception-lgpl-2.0.json | 18 +- docs/mini-xml.LICENSE | 14 + docs/mini-xml.html | 3 +- docs/mini-xml.json | 15 +- docs/minpack.LICENSE | 20 + docs/minpack.html | 34 +- docs/minpack.json | 22 +- docs/minpack.yml | 7 +- docs/mir-os.LICENSE | 20 +- docs/mir-os.html | 6 +- docs/mir-os.json | 20 +- docs/mit-0.LICENSE | 20 + docs/mit-0.html | 3 +- docs/mit-0.json | 19 +- docs/mit-1995.LICENSE | 14 + docs/mit-1995.html | 3 +- docs/mit-1995.json | 16 +- docs/mit-ack.LICENSE | 12 + docs/mit-ack.html | 3 +- docs/mit-ack.json | 13 +- docs/mit-addition.LICENSE | 13 + docs/mit-addition.html | 3 +- docs/mit-addition.json | 14 +- docs/mit-export-control.LICENSE | 15 + docs/mit-export-control.html | 3 +- docs/mit-export-control.json | 14 +- docs/mit-license-1998.LICENSE | 11 +- docs/mit-license-1998.html | 6 +- docs/mit-license-1998.json | 9 +- docs/mit-modern.LICENSE | 18 + docs/mit-modern.html | 3 +- docs/mit-modern.json | 21 +- docs/mit-nagy.LICENSE | 12 + docs/mit-nagy.html | 3 +- docs/mit-nagy.json | 13 +- docs/mit-no-advert-export-control.LICENSE | 16 +- docs/mit-no-advert-export-control.html | 6 +- docs/mit-no-advert-export-control.json | 12 +- docs/mit-no-false-attribs.LICENSE | 14 + docs/mit-no-false-attribs.html | 3 +- docs/mit-no-false-attribs.json | 11 +- docs/mit-no-trademarks.LICENSE | 16 +- docs/mit-no-trademarks.html | 6 +- docs/mit-no-trademarks.json | 16 +- docs/mit-old-style-no-advert.LICENSE | 15 + docs/mit-old-style-no-advert.html | 3 +- docs/mit-old-style-no-advert.json | 16 +- docs/mit-old-style-sparse.LICENSE | 15 +- docs/mit-old-style-sparse.html | 6 +- docs/mit-old-style-sparse.json | 14 +- docs/mit-old-style.LICENSE | 14 +- docs/mit-old-style.html | 6 +- docs/mit-old-style.json | 13 +- docs/mit-readme.LICENSE | 11 +- docs/mit-readme.html | 6 +- docs/mit-readme.json | 9 +- docs/mit-specification-disclaimer.LICENSE | 11 + docs/mit-specification-disclaimer.html | 3 +- docs/mit-specification-disclaimer.json | 12 +- docs/mit-synopsys.LICENSE | 12 +- docs/mit-synopsys.html | 6 +- docs/mit-synopsys.json | 10 +- docs/mit-taylor-variant.LICENSE | 9 + docs/mit-taylor-variant.html | 3 +- docs/mit-taylor-variant.json | 9 +- docs/mit-veillard-variant.LICENSE | 13 + docs/mit-veillard-variant.html | 3 +- docs/mit-veillard-variant.json | 13 +- .../mit-with-modification-obligations.LICENSE | 12 + docs/mit-with-modification-obligations.html | 3 +- docs/mit-with-modification-obligations.json | 13 +- docs/mit-xfig.LICENSE | 20 +- docs/mit-xfig.html | 6 +- docs/mit-xfig.json | 14 +- docs/mit.LICENSE | 19 + docs/mit.html | 3 +- docs/mit.json | 21 +- docs/mod-dav-1.0.LICENSE | 22 + docs/mod-dav-1.0.html | 3 +- docs/mod-dav-1.0.json | 28 +- docs/monetdb-1.1.LICENSE | 12 + docs/monetdb-1.1.html | 3 +- docs/monetdb-1.1.json | 13 +- docs/mongodb-sspl-1.0.LICENSE | 33 +- docs/mongodb-sspl-1.0.html | 6 +- docs/mongodb-sspl-1.0.json | 22 +- docs/monkeysaudio.LICENSE | 46 + docs/monkeysaudio.html | 185 + docs/monkeysaudio.json | 9 + docs/monkeysaudio.yml | 7 + docs/motorola.LICENSE | 9 + docs/motorola.html | 3 +- docs/motorola.json | 9 +- docs/motosoto-0.9.1.LICENSE | 17 + docs/motosoto-0.9.1.html | 3 +- docs/motosoto-0.9.1.json | 19 +- docs/moxa-linux-firmware.LICENSE | 10 + docs/moxa-linux-firmware.html | 3 +- docs/moxa-linux-firmware.json | 10 +- docs/mozilla-gc.LICENSE | 14 + docs/mozilla-gc.html | 3 +- docs/mozilla-gc.json | 16 +- docs/mozilla-ospl-1.0.LICENSE | 15 +- docs/mozilla-ospl-1.0.html | 6 +- docs/mozilla-ospl-1.0.json | 14 +- docs/mpeg-7.LICENSE | 16 +- docs/mpeg-7.html | 6 +- docs/mpeg-7.json | 16 +- docs/mpeg-iso.LICENSE | 15 + docs/mpeg-iso.html | 3 +- docs/mpeg-iso.json | 18 +- docs/mpeg-ssg.LICENSE | 10 + docs/mpeg-ssg.html | 3 +- docs/mpeg-ssg.json | 10 +- docs/mpi-permissive.LICENSE | 21 + docs/mpi-permissive.html | 161 + docs/mpi-permissive.json | 11 + docs/mpi-permissive.yml | 8 + docs/mpich.LICENSE | 17 + docs/mpich.html | 3 +- docs/mpich.json | 17 +- docs/mpl-1.0.LICENSE | 28 + docs/mpl-1.0.html | 3 +- docs/mpl-1.0.json | 29 +- docs/mpl-1.1.LICENSE | 26 + docs/mpl-1.1.html | 3 +- docs/mpl-1.1.json | 29 +- docs/mpl-2.0-no-copyleft-exception.LICENSE | 21 +- docs/mpl-2.0-no-copyleft-exception.html | 6 +- docs/mpl-2.0-no-copyleft-exception.json | 17 +- docs/mpl-2.0.LICENSE | 27 + docs/mpl-2.0.html | 3 +- docs/mpl-2.0.json | 27 +- ...ms-asp-net-ajax-supplemental-terms.LICENSE | 16 + docs/ms-asp-net-ajax-supplemental-terms.html | 3 +- docs/ms-asp-net-ajax-supplemental-terms.json | 19 +- docs/ms-asp-net-mvc3.LICENSE | 16 +- docs/ms-asp-net-mvc3.html | 7 +- docs/ms-asp-net-mvc3.json | 14 +- docs/ms-asp-net-mvc4-extensions.LICENSE | 12 + docs/ms-asp-net-mvc4-extensions.html | 3 +- docs/ms-asp-net-mvc4-extensions.json | 13 +- docs/ms-asp-net-mvc4.LICENSE | 14 +- docs/ms-asp-net-mvc4.html | 6 +- docs/ms-asp-net-mvc4.json | 13 +- docs/ms-asp-net-software.LICENSE | 17 +- docs/ms-asp-net-software.html | 7 +- docs/ms-asp-net-software.json | 14 +- docs/ms-asp-net-tools-pre-release.LICENSE | 13 + docs/ms-asp-net-tools-pre-release.html | 3 +- docs/ms-asp-net-tools-pre-release.json | 14 +- ...asp-net-web-optimization-framework.LICENSE | 16 +- ...ms-asp-net-web-optimization-framework.html | 6 +- ...ms-asp-net-web-optimization-framework.json | 16 +- docs/ms-asp-net-web-pages-2.LICENSE | 13 + docs/ms-asp-net-web-pages-2.html | 3 +- docs/ms-asp-net-web-pages-2.json | 14 +- docs/ms-asp-net-web-pages-templates.LICENSE | 17 +- docs/ms-asp-net-web-pages-templates.html | 6 +- docs/ms-asp-net-web-pages-templates.json | 17 +- docs/ms-azure-data-studio.LICENSE | 10 + docs/ms-azure-data-studio.html | 3 +- docs/ms-azure-data-studio.json | 10 +- docs/ms-azure-spatialanchors-2.9.0.LICENSE | 14 + docs/ms-azure-spatialanchors-2.9.0.html | 3 +- docs/ms-azure-spatialanchors-2.9.0.json | 15 +- docs/ms-capicom.LICENSE | 13 + docs/ms-capicom.html | 3 +- docs/ms-capicom.json | 14 +- docs/ms-cl.LICENSE | 10 + docs/ms-cl.html | 3 +- docs/ms-cl.json | 10 +- docs/ms-cla.LICENSE | 15 + docs/ms-cla.html | 3 +- docs/ms-cla.json | 17 +- docs/ms-control-spy-2.0.LICENSE | 13 + docs/ms-control-spy-2.0.html | 3 +- docs/ms-control-spy-2.0.json | 14 +- docs/ms-data-tier-af-2022.LICENSE | 13 + docs/ms-data-tier-af-2022.html | 3 +- docs/ms-data-tier-af-2022.json | 14 +- ...veloper-services-agreement-2018-06.LICENSE | 18 + ...-developer-services-agreement-2018-06.html | 3 +- ...-developer-services-agreement-2018-06.json | 20 +- docs/ms-developer-services-agreement.LICENSE | 29 + docs/ms-developer-services-agreement.html | 3 +- docs/ms-developer-services-agreement.json | 34 +- docs/ms-device-emulator-3.0.LICENSE | 11 + docs/ms-device-emulator-3.0.html | 3 +- docs/ms-device-emulator-3.0.json | 12 +- docs/ms-direct3d-d3d120n7-1.1.0.LICENSE | 14 + docs/ms-direct3d-d3d120n7-1.1.0.html | 3 +- docs/ms-direct3d-d3d120n7-1.1.0.json | 15 +- docs/ms-directx-sdk-eula.LICENSE | 13 + docs/ms-directx-sdk-eula.html | 3 +- docs/ms-directx-sdk-eula.json | 15 +- docs/ms-dxsdk-d3dx-9.29.952.3.LICENSE | 15 + docs/ms-dxsdk-d3dx-9.29.952.3.html | 3 +- docs/ms-dxsdk-d3dx-9.29.952.3.json | 16 +- docs/ms-entity-framework-4.1.LICENSE | 15 +- docs/ms-entity-framework-4.1.html | 6 +- docs/ms-entity-framework-4.1.json | 14 +- docs/ms-entity-framework-5.LICENSE | 14 + docs/ms-entity-framework-5.html | 3 +- docs/ms-entity-framework-5.json | 16 +- docs/ms-eula-win-script-host.LICENSE | 9 + docs/ms-eula-win-script-host.html | 3 +- docs/ms-eula-win-script-host.json | 9 +- docs/ms-exchange-server-2010-sp2-sdk.LICENSE | 14 + docs/ms-exchange-server-2010-sp2-sdk.html | 3 +- docs/ms-exchange-server-2010-sp2-sdk.json | 16 +- .../ms-iis-container-images-eula-2020.LICENSE | 13 + docs/ms-iis-container-images-eula-2020.html | 3 +- docs/ms-iis-container-images-eula-2020.json | 14 +- docs/ms-ilmerge.LICENSE | 14 + docs/ms-ilmerge.html | 3 +- docs/ms-ilmerge.json | 16 +- docs/ms-invisible-eula-1.0.LICENSE | 14 + docs/ms-invisible-eula-1.0.html | 3 +- docs/ms-invisible-eula-1.0.json | 16 +- docs/ms-jdbc-driver-40-sql-server.LICENSE | 12 + docs/ms-jdbc-driver-40-sql-server.html | 3 +- docs/ms-jdbc-driver-40-sql-server.json | 13 +- docs/ms-jdbc-driver-41-sql-server.LICENSE | 12 + docs/ms-jdbc-driver-41-sql-server.html | 3 +- docs/ms-jdbc-driver-41-sql-server.json | 13 +- docs/ms-jdbc-driver-60-sql-server.LICENSE | 12 + docs/ms-jdbc-driver-60-sql-server.html | 3 +- docs/ms-jdbc-driver-60-sql-server.json | 13 +- docs/ms-kinext-win-sdk.LICENSE | 15 + docs/ms-kinext-win-sdk.html | 3 +- docs/ms-kinext-win-sdk.json | 17 +- docs/ms-limited-community.LICENSE | 13 + docs/ms-limited-community.html | 3 +- docs/ms-limited-community.json | 14 +- docs/ms-limited-public.LICENSE | 15 + docs/ms-limited-public.html | 3 +- docs/ms-limited-public.json | 17 +- docs/ms-lpl.LICENSE | 20 + docs/ms-lpl.html | 23 +- docs/ms-lpl.json | 23 +- docs/ms-lpl.yml | 8 +- docs/ms-msn-webgrease.LICENSE | 14 + docs/ms-msn-webgrease.html | 3 +- docs/ms-msn-webgrease.json | 15 +- ...net-framework-4-supplemental-terms.LICENSE | 17 + ...ms-net-framework-4-supplemental-terms.html | 3 +- ...ms-net-framework-4-supplemental-terms.json | 20 +- docs/ms-net-framework-deployment.LICENSE | 9 + docs/ms-net-framework-deployment.html | 3 +- docs/ms-net-framework-deployment.json | 9 +- docs/ms-net-library-2016-05.LICENSE | 18 + docs/ms-net-library-2016-05.html | 14 +- docs/ms-net-library-2016-05.json | 19 +- docs/ms-net-library-2016-05.yml | 5 +- docs/ms-net-library-2018-11.LICENSE | 19 +- docs/ms-net-library-2018-11.html | 6 +- docs/ms-net-library-2018-11.json | 16 +- docs/ms-net-library-2019-06.LICENSE | 21 +- docs/ms-net-library-2019-06.html | 12 +- docs/ms-net-library-2019-06.json | 16 +- docs/ms-net-library-2020-09.LICENSE | 17 + docs/ms-net-library-2020-09.html | 3 +- docs/ms-net-library-2020-09.json | 17 +- docs/ms-net-library.LICENSE | 16 +- docs/ms-net-library.html | 6 +- docs/ms-net-library.json | 14 +- docs/ms-nt-resource-kit.LICENSE | 9 + docs/ms-nt-resource-kit.html | 3 +- docs/ms-nt-resource-kit.json | 9 +- docs/ms-nuget-package-manager.LICENSE | 15 + docs/ms-nuget-package-manager.html | 3 +- docs/ms-nuget-package-manager.json | 16 +- docs/ms-nuget.LICENSE | 12 + docs/ms-nuget.html | 3 +- docs/ms-nuget.json | 10 +- docs/ms-office-extensible-file.LICENSE | 15 + docs/ms-office-extensible-file.html | 3 +- docs/ms-office-extensible-file.json | 17 +- docs/ms-office-system-programs-eula.LICENSE | 13 + docs/ms-office-system-programs-eula.html | 3 +- docs/ms-office-system-programs-eula.json | 14 +- docs/ms-patent-promise-mono.LICENSE | 12 + docs/ms-patent-promise-mono.html | 3 +- docs/ms-patent-promise-mono.json | 13 +- docs/ms-patent-promise.LICENSE | 16 + docs/ms-patent-promise.html | 3 +- docs/ms-patent-promise.json | 18 +- docs/ms-permissive-1.1.LICENSE | 11 + docs/ms-permissive-1.1.html | 3 +- docs/ms-permissive-1.1.json | 11 +- docs/ms-pl.LICENSE | 19 + docs/ms-pl.html | 3 +- docs/ms-pl.json | 21 +- docs/ms-platform-sdk.LICENSE | 15 + docs/ms-platform-sdk.html | 3 +- docs/ms-platform-sdk.json | 18 +- docs/ms-programsynthesis-7.22.0.LICENSE | 13 + docs/ms-programsynthesis-7.22.0.html | 3 +- docs/ms-programsynthesis-7.22.0.json | 14 +- docs/ms-python-vscode-pylance-2021.LICENSE | 17 + docs/ms-python-vscode-pylance-2021.html | 3 +- docs/ms-python-vscode-pylance-2021.json | 19 +- docs/ms-reactive-extensions-eula.LICENSE | 12 + docs/ms-reactive-extensions-eula.html | 3 +- docs/ms-reactive-extensions-eula.json | 13 +- docs/ms-refl.LICENSE | 36 + docs/ms-refl.html | 29 +- docs/ms-refl.json | 11 +- docs/ms-remote-ndis-usb-kit.LICENSE | 11 + docs/ms-remote-ndis-usb-kit.html | 3 +- docs/ms-remote-ndis-usb-kit.json | 12 +- docs/ms-research-shared-source.LICENSE | 18 + docs/ms-research-shared-source.html | 3 +- docs/ms-research-shared-source.json | 22 +- docs/ms-rl.LICENSE | 19 + docs/ms-rl.html | 3 +- docs/ms-rl.json | 21 +- docs/ms-rsl.LICENSE | 16 + docs/ms-rsl.html | 3 +- docs/ms-rsl.json | 14 +- docs/ms-silverlight-3.LICENSE | 15 +- docs/ms-silverlight-3.html | 6 +- docs/ms-silverlight-3.json | 14 +- docs/ms-sql-server-compact-4.0.LICENSE | 12 + docs/ms-sql-server-compact-4.0.html | 3 +- docs/ms-sql-server-compact-4.0.json | 13 +- docs/ms-sql-server-data-tools.LICENSE | 14 + docs/ms-sql-server-data-tools.html | 3 +- docs/ms-sql-server-data-tools.json | 15 +- docs/ms-sspl.LICENSE | 9 + docs/ms-sspl.html | 3 +- docs/ms-sspl.json | 9 +- docs/ms-sysinternals-sla.LICENSE | 11 + docs/ms-sysinternals-sla.html | 3 +- docs/ms-sysinternals-sla.json | 12 +- docs/ms-testplatform-17.0.0.LICENSE | 13 + docs/ms-testplatform-17.0.0.html | 3 +- docs/ms-testplatform-17.0.0.json | 14 +- docs/ms-ttf-eula.LICENSE | 9 + docs/ms-ttf-eula.html | 3 +- docs/ms-ttf-eula.json | 9 +- docs/ms-typescript-msbuild-4.1.4.LICENSE | 15 + docs/ms-typescript-msbuild-4.1.4.html | 3 +- docs/ms-typescript-msbuild-4.1.4.json | 16 +- docs/ms-visual-2008-runtime.LICENSE | 13 + docs/ms-visual-2008-runtime.html | 3 +- docs/ms-visual-2008-runtime.json | 15 +- docs/ms-visual-2010-runtime.LICENSE | 14 + docs/ms-visual-2010-runtime.html | 3 +- docs/ms-visual-2010-runtime.json | 16 +- docs/ms-visual-2015-sdk.LICENSE | 15 + docs/ms-visual-2015-sdk.html | 3 +- docs/ms-visual-2015-sdk.json | 17 +- docs/ms-visual-cpp-2015-runtime.LICENSE | 12 + docs/ms-visual-cpp-2015-runtime.html | 3 +- docs/ms-visual-cpp-2015-runtime.json | 13 +- docs/ms-visual-studio-2017-tools.LICENSE | 17 +- docs/ms-visual-studio-2017-tools.html | 5 +- docs/ms-visual-studio-2017-tools.json | 16 +- docs/ms-visual-studio-2017.LICENSE | 23 + docs/ms-visual-studio-2017.html | 3 +- docs/ms-visual-studio-2017.json | 25 +- docs/ms-visual-studio-code-2018.LICENSE | 14 + docs/ms-visual-studio-code-2018.html | 3 +- docs/ms-visual-studio-code-2018.json | 15 +- docs/ms-visual-studio-code-2022.LICENSE | 18 + docs/ms-visual-studio-code-2022.html | 3 +- docs/ms-visual-studio-code-2022.json | 19 +- docs/ms-visual-studio-code.LICENSE | 18 +- docs/ms-visual-studio-code.html | 6 +- docs/ms-visual-studio-code.json | 17 +- docs/ms-vs-addons-ext-17.2.0.LICENSE | 16 + docs/ms-vs-addons-ext-17.2.0.html | 3 +- docs/ms-vs-addons-ext-17.2.0.json | 18 +- docs/ms-web-developer-tools-1.0.LICENSE | 14 +- docs/ms-web-developer-tools-1.0.html | 6 +- docs/ms-web-developer-tools-1.0.json | 13 +- ...ows-container-base-image-eula-2020.LICENSE | 15 + ...indows-container-base-image-eula-2020.html | 3 +- ...indows-container-base-image-eula-2020.json | 17 +- docs/ms-windows-driver-kit.LICENSE | 11 + docs/ms-windows-driver-kit.html | 3 +- docs/ms-windows-driver-kit.json | 12 +- docs/ms-windows-identity-foundation.LICENSE | 14 + docs/ms-windows-identity-foundation.html | 3 +- docs/ms-windows-identity-foundation.json | 16 +- docs/ms-windows-os-2018.LICENSE | 11 + docs/ms-windows-os-2018.html | 3 +- docs/ms-windows-os-2018.json | 12 +- ...ms-windows-sdk-server-2008-net-3.5.LICENSE | 19 + docs/ms-windows-sdk-server-2008-net-3.5.html | 3 +- docs/ms-windows-sdk-server-2008-net-3.5.json | 23 +- docs/ms-windows-sdk-win10.LICENSE | 18 + docs/ms-windows-sdk-win10.html | 3 +- docs/ms-windows-sdk-win10.json | 19 +- docs/ms-windows-sdk-win7-net-4.LICENSE | 18 + docs/ms-windows-sdk-win7-net-4.html | 3 +- docs/ms-windows-sdk-win7-net-4.json | 21 +- docs/ms-windows-server-2003-ddk.LICENSE | 11 + docs/ms-windows-server-2003-ddk.html | 3 +- docs/ms-windows-server-2003-ddk.json | 12 +- docs/ms-windows-server-2003-sdk.LICENSE | 15 + docs/ms-windows-server-2003-sdk.html | 3 +- docs/ms-windows-server-2003-sdk.json | 18 +- docs/ms-ws-routing-spec.LICENSE | 13 + docs/ms-ws-routing-spec.html | 3 +- docs/ms-ws-routing-spec.json | 15 +- docs/ms-xamarin-uitest3.2.0.LICENSE | 12 + docs/ms-xamarin-uitest3.2.0.html | 3 +- docs/ms-xamarin-uitest3.2.0.json | 13 +- docs/ms-xml-core-4.0.LICENSE | 11 + docs/ms-xml-core-4.0.html | 3 +- docs/ms-xml-core-4.0.json | 12 +- docs/msj-sample-code.LICENSE | 9 + docs/msj-sample-code.html | 3 +- docs/msj-sample-code.json | 9 +- docs/msntp.LICENSE | 23 + docs/msntp.html | 3 +- docs/msntp.json | 27 +- docs/msppl.LICENSE | 10 + docs/msppl.html | 3 +- docs/msppl.json | 10 +- docs/mtll.LICENSE | 18 + docs/mtll.html | 3 +- docs/mtll.json | 15 +- docs/mtx-licensing-statement.LICENSE | 14 + docs/mtx-licensing-statement.html | 3 +- docs/mtx-licensing-statement.json | 16 +- docs/mulanpsl-1.0-en.LICENSE | 33 +- docs/mulanpsl-1.0-en.html | 10 +- docs/mulanpsl-1.0-en.json | 27 +- docs/mulanpsl-1.0.LICENSE | 19 + docs/mulanpsl-1.0.html | 3 +- docs/mulanpsl-1.0.json | 23 +- docs/mulanpsl-2.0-en.LICENSE | 26 +- docs/mulanpsl-2.0-en.html | 10 +- docs/mulanpsl-2.0-en.json | 18 +- docs/mulanpsl-2.0.LICENSE | 17 + docs/mulanpsl-2.0.html | 3 +- docs/mulanpsl-2.0.json | 20 +- docs/mule-source-1.1.3.LICENSE | 24 +- docs/mule-source-1.1.3.html | 6 +- docs/mule-source-1.1.3.json | 26 +- docs/mule-source-1.1.4.LICENSE | 26 +- docs/mule-source-1.1.4.html | 6 +- docs/mule-source-1.1.4.json | 28 +- docs/mulle-kybernetik.LICENSE | 10 + docs/mulle-kybernetik.html | 3 +- docs/mulle-kybernetik.json | 10 +- docs/multics.LICENSE | 26 + docs/multics.html | 3 +- docs/multics.json | 29 +- docs/mup.LICENSE | 16 + docs/mup.html | 6 +- docs/mup.json | 14 +- docs/musl-exception.LICENSE | 13 +- docs/musl-exception.html | 6 +- docs/musl-exception.json | 11 +- docs/mvt-1.1.LICENSE | 12 + docs/mvt-1.1.html | 3 +- docs/mvt-1.1.json | 13 +- docs/mx4j.LICENSE | 23 +- docs/mx4j.html | 6 +- docs/mx4j.json | 27 +- ...mysql-connector-odbc-exception-2.0.LICENSE | 20 + docs/mysql-connector-odbc-exception-2.0.html | 3 +- docs/mysql-connector-odbc-exception-2.0.json | 17 +- docs/mysql-floss-exception-2.0.LICENSE | 18 +- docs/mysql-floss-exception-2.0.html | 6 +- docs/mysql-floss-exception-2.0.json | 18 +- docs/mysql-linking-exception-2018.LICENSE | 14 + docs/mysql-linking-exception-2018.html | 3 +- docs/mysql-linking-exception-2018.json | 15 +- docs/naist-2003.LICENSE | 15 + docs/naist-2003.html | 3 +- docs/naist-2003.json | 17 +- docs/nant-exception-2.0-plus.LICENSE | 46 + docs/nant-exception-2.0-plus.html | 3 +- docs/nant-exception-2.0-plus.json | 14 +- docs/nasa-1.3.LICENSE | 24 + docs/nasa-1.3.html | 3 +- docs/nasa-1.3.json | 28 +- docs/naughter.LICENSE | 9 + docs/naughter.html | 3 +- docs/naughter.json | 9 +- docs/naumen.LICENSE | 21 + docs/naumen.html | 3 +- docs/naumen.json | 25 +- docs/nbpl-1.0.LICENSE | 19 + docs/nbpl-1.0.html | 3 +- docs/nbpl-1.0.json | 20 +- docs/ncbi.LICENSE | 12 + docs/ncbi.html | 3 +- docs/ncbi.json | 13 +- docs/ncgl-uk-2.0.LICENSE | 13 + docs/ncgl-uk-2.0.html | 3 +- docs/ncgl-uk-2.0.json | 14 +- docs/nero-eula.LICENSE | 65 + docs/nero-eula.html | 3 +- docs/nero-eula.json | 66 +- docs/net-snmp.LICENSE | 38 + docs/net-snmp.html | 3 +- docs/net-snmp.json | 41 +- docs/netapp-sdk-aug2020.LICENSE | 12 + docs/netapp-sdk-aug2020.html | 3 +- docs/netapp-sdk-aug2020.json | 13 +- docs/netcat.LICENSE | 12 + docs/netcat.html | 3 +- docs/netcat.json | 13 +- docs/netcdf.LICENSE | 11 + docs/netcdf.html | 6 +- docs/netcdf.json | 13 +- docs/netcomponents.LICENSE | 16 + docs/netcomponents.html | 3 +- docs/netcomponents.json | 19 +- docs/netron.LICENSE | 13 + docs/netron.html | 3 +- docs/netron.json | 15 +- docs/netronome-firmware.LICENSE | 10 + docs/netronome-firmware.html | 3 +- docs/netronome-firmware.json | 10 +- docs/network-time-protocol.LICENSE | 13 + docs/network-time-protocol.html | 3 +- docs/network-time-protocol.json | 14 +- docs/new-relic.LICENSE | 14 + docs/new-relic.html | 3 +- docs/new-relic.json | 16 +- docs/newlib-historical.LICENSE | 13 +- docs/newlib-historical.html | 6 +- docs/newlib-historical.json | 10 +- docs/newran.LICENSE | 10 + docs/newran.html | 3 +- docs/newran.json | 10 +- docs/newsletr.LICENSE | 14 + docs/newsletr.html | 3 +- docs/newsletr.json | 12 +- docs/newton-king-cla.LICENSE | 11 + docs/newton-king-cla.html | 5 +- docs/newton-king-cla.json | 11 +- docs/newton-king-cla.yml | 2 +- docs/nexb-eula-saas-1.1.0.LICENSE | 13 + docs/nexb-eula-saas-1.1.0.html | 3 +- docs/nexb-eula-saas-1.1.0.json | 15 +- docs/nexb-ssla-1.1.0.LICENSE | 11 + docs/nexb-ssla-1.1.0.html | 3 +- docs/nexb-ssla-1.1.0.json | 12 +- docs/ngpl.LICENSE | 22 + docs/ngpl.html | 3 +- docs/ngpl.json | 26 +- docs/nice.LICENSE | 12 +- docs/nice.html | 6 +- docs/nice.json | 10 +- docs/nicta-exception.LICENSE | 13 +- docs/nicta-exception.html | 6 +- docs/nicta-exception.json | 11 +- docs/nicta-psl.LICENSE | 21 + docs/nicta-psl.html | 16 +- docs/nicta-psl.json | 26 +- docs/nicta-psl.yml | 5 +- docs/niels-ferguson.LICENSE | 15 +- docs/niels-ferguson.html | 6 +- docs/niels-ferguson.json | 15 +- docs/nilsson-historical.LICENSE | 12 +- docs/nilsson-historical.html | 6 +- docs/nilsson-historical.json | 10 +- docs/nist-pd-fallback.LICENSE | 12 + docs/nist-pd-fallback.html | 3 +- docs/nist-pd-fallback.json | 13 +- docs/nist-pd.LICENSE | 16 + docs/nist-pd.html | 3 +- docs/nist-pd.json | 18 +- docs/nist-srd.LICENSE | 12 + docs/nist-srd.html | 3 +- docs/nist-srd.json | 13 +- docs/nlod-1.0.LICENSE | 12 + docs/nlod-1.0.html | 3 +- docs/nlod-1.0.json | 13 +- docs/nlod-2.0.LICENSE | 12 + docs/nlod-2.0.html | 3 +- docs/nlod-2.0.json | 13 +- docs/nlpl.LICENSE | 19 + docs/nlpl.html | 3 +- docs/nlpl.json | 15 +- docs/no-license.LICENSE | 10 + docs/no-license.html | 10 +- docs/no-license.json | 11 +- docs/no-license.yml | 1 + docs/node-js.LICENSE | 75 + docs/node-js.html | 3 +- docs/node-js.json | 81 +- docs/nokia-qt-exception-1.1.LICENSE | 36 + docs/nokia-qt-exception-1.1.html | 4 +- docs/nokia-qt-exception-1.1.json | 16 +- docs/nokos-1.0a.LICENSE | 21 + docs/nokos-1.0a.html | 3 +- docs/nokos-1.0a.json | 25 +- docs/non-violent-4.0.LICENSE | 12 + docs/non-violent-4.0.html | 3 +- docs/non-violent-4.0.json | 13 +- docs/nonexclusive.LICENSE | 11 +- docs/nonexclusive.html | 6 +- docs/nonexclusive.json | 9 +- docs/nortel-dasa.LICENSE | 15 +- docs/nortel-dasa.html | 15 +- docs/nortel-dasa.json | 15 +- docs/nortel-dasa.yml | 2 + docs/northwoods-sla-2021.LICENSE | 20 + docs/northwoods-sla-2021.html | 3 +- docs/northwoods-sla-2021.json | 25 +- docs/nosl-1.0.LICENSE | 14 + docs/nosl-1.0.html | 3 +- docs/nosl-1.0.json | 16 +- docs/nosl-3.0.LICENSE | 22 + docs/nosl-3.0.html | 3 +- docs/nosl-3.0.json | 26 +- docs/notre-dame.LICENSE | 16 + docs/notre-dame.html | 3 +- docs/notre-dame.json | 19 +- docs/noweb.LICENSE | 12 + docs/noweb.html | 3 +- docs/noweb.json | 13 +- docs/npl-1.0.LICENSE | 21 + docs/npl-1.0.html | 3 +- docs/npl-1.0.json | 26 +- docs/npl-1.1.LICENSE | 21 + docs/npl-1.1.html | 3 +- docs/npl-1.1.json | 26 +- docs/npsl-exception-0.92.LICENSE | 591 + docs/npsl-exception-0.92.html | 764 + docs/npsl-exception-0.92.json | 32 + docs/npsl-exception-0.92.yml | 25 + docs/npsl-exception-0.93.LICENSE | 30 + docs/npsl-exception-0.93.html | 5 +- docs/npsl-exception-0.93.json | 35 +- docs/npsl-exception-0.93.yml | 2 +- docs/npsl-exception-0.94.LICENSE | 593 + docs/npsl-exception-0.94.html | 766 + docs/npsl-exception-0.94.json | 29 + docs/npsl-exception-0.94.yml | 23 + docs/nrl-permission.LICENSE | 12 +- docs/nrl-permission.html | 6 +- docs/nrl-permission.json | 10 +- docs/nrl.LICENSE | 16 + docs/nrl.html | 3 +- docs/nrl.json | 19 +- docs/ntlm.LICENSE | 23 + docs/ntlm.html | 3 +- docs/ntlm.json | 26 +- docs/ntp-0.LICENSE | 11 + docs/ntp-0.html | 3 +- docs/ntp-0.json | 11 +- docs/ntpl-origin.LICENSE | 13 +- docs/ntpl-origin.html | 6 +- docs/ntpl-origin.json | 11 +- docs/ntpl.LICENSE | 18 + docs/ntpl.html | 3 +- docs/ntpl.json | 20 +- docs/numerical-recipes-notice.LICENSE | 13 + docs/numerical-recipes-notice.html | 3 +- docs/numerical-recipes-notice.json | 15 +- docs/nunit-v2.LICENSE | 29 + docs/nunit-v2.html | 17 +- docs/nunit-v2.json | 18 +- docs/nvidia-2002.LICENSE | 9 + docs/nvidia-2002.html | 3 +- docs/nvidia-2002.json | 9 +- docs/nvidia-apex-sdk-eula-2011.LICENSE | 21 + docs/nvidia-apex-sdk-eula-2011.html | 3 +- docs/nvidia-apex-sdk-eula-2011.json | 26 +- docs/nvidia-cuda-supplement-2020.LICENSE | 77 + docs/nvidia-cuda-supplement-2020.html | 3 +- docs/nvidia-cuda-supplement-2020.json | 81 +- docs/nvidia-gov.LICENSE | 13 + docs/nvidia-gov.html | 3 +- docs/nvidia-gov.json | 15 +- docs/nvidia-isaac-eula-2019.1.LICENSE | 13 + docs/nvidia-isaac-eula-2019.1.html | 3 +- docs/nvidia-isaac-eula-2019.1.json | 14 +- docs/nvidia-ngx-eula-2019.LICENSE | 21 + docs/nvidia-ngx-eula-2019.html | 3 +- docs/nvidia-ngx-eula-2019.json | 25 +- docs/nvidia-sdk-eula-v0.11.LICENSE | 47 + docs/nvidia-sdk-eula-v0.11.html | 3 +- docs/nvidia-sdk-eula-v0.11.json | 14 +- docs/nvidia-video-codec-agreement.LICENSE | 10 + docs/nvidia-video-codec-agreement.html | 3 +- docs/nvidia-video-codec-agreement.json | 10 +- docs/nvidia.LICENSE | 16 + docs/nvidia.html | 3 +- docs/nvidia.json | 19 +- docs/nwhm.LICENSE | 13 +- docs/nwhm.html | 6 +- docs/nwhm.json | 11 +- docs/nxp-firmware-patent.LICENSE | 12 + docs/nxp-firmware-patent.html | 3 +- docs/nxp-firmware-patent.json | 13 +- docs/nxp-linux-firmware.LICENSE | 10 + docs/nxp-linux-firmware.html | 3 +- docs/nxp-linux-firmware.json | 10 +- docs/nxp-mc-firmware.LICENSE | 16 + docs/nxp-mc-firmware.html | 3 +- docs/nxp-mc-firmware.json | 18 +- docs/nxp-microcontroller-proprietary.LICENSE | 11 + docs/nxp-microcontroller-proprietary.html | 3 +- docs/nxp-microcontroller-proprietary.json | 12 +- docs/nxp-warranty-disclaimer.LICENSE | 9 + docs/nxp-warranty-disclaimer.html | 3 +- docs/nxp-warranty-disclaimer.json | 9 +- docs/nysl-0.9982-jp.LICENSE | 19 +- docs/nysl-0.9982-jp.html | 6 +- docs/nysl-0.9982-jp.json | 19 +- docs/nysl-0.9982.LICENSE | 21 +- docs/nysl-0.9982.html | 6 +- docs/nysl-0.9982.json | 19 +- docs/o-uda-1.0.LICENSE | 12 + docs/o-uda-1.0.html | 3 +- docs/o-uda-1.0.json | 13 +- docs/o-young-jong.LICENSE | 9 + docs/o-young-jong.html | 3 +- docs/o-young-jong.json | 9 +- docs/oasis-ipr-2013.LICENSE | 21 + docs/oasis-ipr-2013.html | 3 +- docs/oasis-ipr-2013.json | 25 +- docs/oasis-ipr-policy-2014.LICENSE | 18 +- docs/oasis-ipr-policy-2014.html | 9 +- docs/oasis-ipr-policy-2014.json | 20 +- docs/oasis-ws-security-spec.LICENSE | 16 + docs/oasis-ws-security-spec.html | 3 +- docs/oasis-ws-security-spec.json | 19 +- docs/ocaml-lgpl-linking-exception.LICENSE | 13 + docs/ocaml-lgpl-linking-exception.html | 3 +- docs/ocaml-lgpl-linking-exception.json | 14 +- docs/ocb-non-military-2013.LICENSE | 15 +- docs/ocb-non-military-2013.html | 7 +- docs/ocb-non-military-2013.json | 13 +- docs/ocb-open-source-2013.LICENSE | 14 +- docs/ocb-open-source-2013.html | 6 +- docs/ocb-open-source-2013.json | 13 +- docs/ocb-patent-openssl-2013.LICENSE | 15 +- docs/ocb-patent-openssl-2013.html | 7 +- docs/ocb-patent-openssl-2013.json | 13 +- docs/occt-exception-1.0.LICENSE | 25 + docs/occt-exception-1.0.html | 3 +- docs/occt-exception-1.0.json | 16 +- docs/occt-pl.LICENSE | 16 + docs/occt-pl.html | 3 +- docs/occt-pl.json | 18 +- docs/oclc-1.0.LICENSE | 21 + docs/oclc-1.0.html | 3 +- docs/oclc-1.0.json | 25 +- docs/oclc-2.0.LICENSE | 31 + docs/oclc-2.0.html | 3 +- docs/oclc-2.0.json | 33 +- docs/ocsl-1.0.LICENSE | 18 +- docs/ocsl-1.0.html | 8 +- docs/ocsl-1.0.json | 16 +- docs/oculus-sdk-2020.LICENSE | 20 + docs/oculus-sdk-2020.html | 3 +- docs/oculus-sdk-2020.json | 24 +- docs/oculus-sdk-3.5.LICENSE | 30 + docs/oculus-sdk-3.5.html | 3 +- docs/oculus-sdk-3.5.json | 22 +- docs/oculus-sdk.LICENSE | 19 + docs/oculus-sdk.html | 3 +- docs/oculus-sdk.json | 23 +- docs/odbl-1.0.LICENSE | 14 + docs/odbl-1.0.html | 3 +- docs/odbl-1.0.json | 16 +- docs/odc-1.0.LICENSE | 15 +- docs/odc-1.0.html | 6 +- docs/odc-1.0.json | 14 +- docs/odc-by-1.0.LICENSE | 17 + docs/odc-by-1.0.html | 3 +- docs/odc-by-1.0.json | 17 +- docs/odl.LICENSE | 17 + docs/odl.html | 3 +- docs/odl.json | 20 +- docs/odmg.LICENSE | 14 + docs/odmg.html | 3 +- docs/odmg.json | 16 +- docs/ofl-1.0-no-rfn.LICENSE | 19 + docs/ofl-1.0-no-rfn.html | 6 +- docs/ofl-1.0-no-rfn.json | 21 +- docs/ofl-1.0-rfn.LICENSE | 20 + docs/ofl-1.0-rfn.html | 3 +- docs/ofl-1.0-rfn.json | 21 +- docs/ofl-1.0.LICENSE | 17 + docs/ofl-1.0.html | 3 +- docs/ofl-1.0.json | 17 +- docs/ofl-1.1-no-rfn.LICENSE | 26 + docs/ofl-1.1-no-rfn.html | 3 +- docs/ofl-1.1-no-rfn.json | 27 +- docs/ofl-1.1-rfn.LICENSE | 26 + docs/ofl-1.1-rfn.html | 3 +- docs/ofl-1.1-rfn.json | 27 +- docs/ofl-1.1.LICENSE | 23 + docs/ofl-1.1.html | 3 +- docs/ofl-1.1.json | 23 +- docs/ofrak-community-1.0.LICENSE | 233 + docs/ofrak-community-1.0.html | 398 + docs/ofrak-community-1.0.json | 20 + docs/ofrak-community-1.0.yml | 15 + docs/ogc-1.0.LICENSE | 16 + docs/ogc-1.0.html | 3 +- docs/ogc-1.0.json | 19 +- docs/ogc-2006.LICENSE | 21 +- docs/ogc-2006.html | 6 +- docs/ogc-2006.json | 23 +- docs/ogc-document-2020.LICENSE | 19 + docs/ogc-document-2020.html | 3 +- docs/ogc-document-2020.json | 23 +- docs/ogc.LICENSE | 12 + docs/ogc.html | 3 +- docs/ogc.json | 13 +- docs/ogdl-taiwan-1.0.LICENSE | 14 + docs/ogdl-taiwan-1.0.html | 3 +- docs/ogdl-taiwan-1.0.json | 16 +- docs/ogl-1.0a.LICENSE | 18 + docs/ogl-1.0a.html | 3 +- docs/ogl-1.0a.json | 21 +- docs/ogl-canada-2.0-fr.LICENSE | 10 + docs/ogl-canada-2.0-fr.html | 6 +- docs/ogl-canada-2.0-fr.json | 11 +- docs/ogl-uk-1.0.LICENSE | 14 +- docs/ogl-uk-1.0.html | 6 +- docs/ogl-uk-1.0.json | 13 +- docs/ogl-uk-2.0.LICENSE | 13 + docs/ogl-uk-2.0.html | 3 +- docs/ogl-uk-2.0.json | 14 +- docs/ogl-uk-3.0.LICENSE | 13 + docs/ogl-uk-3.0.html | 3 +- docs/ogl-uk-3.0.json | 14 +- docs/ogl-wpd-3.0.LICENSE | 15 +- docs/ogl-wpd-3.0.html | 6 +- docs/ogl-wpd-3.0.json | 14 +- docs/ohdl-1.0.LICENSE | 13 + docs/ohdl-1.0.html | 3 +- docs/ohdl-1.0.json | 14 +- docs/okl.LICENSE | 11 + docs/okl.html | 3 +- docs/okl.json | 11 +- docs/olf-ccla-1.0.LICENSE | 147 + docs/olf-ccla-1.0.html | 307 + docs/olf-ccla-1.0.json | 18 + docs/olf-ccla-1.0.yml | 13 + docs/oll-1.0.LICENSE | 249 + docs/oll-1.0.html | 395 + docs/oll-1.0.json | 12 + docs/oll-1.0.yml | 9 + docs/ooura-2001.LICENSE | 15 + docs/ooura-2001.html | 160 + docs/ooura-2001.json | 13 + docs/ooura-2001.yml | 10 + docs/open-diameter.LICENSE | 15 + docs/open-diameter.html | 3 +- docs/open-diameter.json | 18 +- docs/open-group.LICENSE | 12 + docs/open-group.html | 3 +- docs/open-group.json | 13 +- docs/open-public.LICENSE | 14 + docs/open-public.html | 3 +- docs/open-public.json | 16 +- docs/openbd-exception-3.0.LICENSE | 143 + docs/openbd-exception-3.0.html | 3 +- docs/openbd-exception-3.0.json | 14 +- docs/opengroup.LICENSE | 19 + docs/opengroup.html | 3 +- docs/opengroup.json | 21 +- docs/openi-pl-1.0.LICENSE | 19 + docs/openi-pl-1.0.html | 3 +- docs/openi-pl-1.0.json | 23 +- docs/openjdk-assembly-exception-1.0.LICENSE | 39 + docs/openjdk-assembly-exception-1.0.html | 3 +- docs/openjdk-assembly-exception-1.0.json | 19 +- docs/openjdk-classpath-exception-2.0.LICENSE | 93 + docs/openjdk-classpath-exception-2.0.html | 3 +- docs/openjdk-classpath-exception-2.0.json | 22 +- docs/openjdk-exception.LICENSE | 25 +- docs/openjdk-exception.html | 6 +- docs/openjdk-exception.json | 24 +- docs/openldap-1.1.LICENSE | 18 + docs/openldap-1.1.html | 3 +- docs/openldap-1.1.json | 21 +- docs/openldap-1.2.LICENSE | 20 + docs/openldap-1.2.html | 3 +- docs/openldap-1.2.json | 21 +- docs/openldap-1.3.LICENSE | 21 + docs/openldap-1.3.html | 3 +- docs/openldap-1.3.json | 21 +- docs/openldap-1.4.LICENSE | 18 + docs/openldap-1.4.html | 3 +- docs/openldap-1.4.json | 21 +- docs/openldap-2.0.1.LICENSE | 25 + docs/openldap-2.0.1.html | 3 +- docs/openldap-2.0.1.json | 27 +- docs/openldap-2.0.LICENSE | 22 + docs/openldap-2.0.html | 3 +- docs/openldap-2.0.json | 27 +- docs/openldap-2.1.LICENSE | 22 + docs/openldap-2.1.html | 3 +- docs/openldap-2.1.json | 27 +- docs/openldap-2.2.1.LICENSE | 20 + docs/openldap-2.2.1.html | 3 +- docs/openldap-2.2.1.json | 24 +- docs/openldap-2.2.2.LICENSE | 20 + docs/openldap-2.2.2.html | 3 +- docs/openldap-2.2.2.json | 24 +- docs/openldap-2.2.LICENSE | 20 + docs/openldap-2.2.html | 3 +- docs/openldap-2.2.json | 24 +- docs/openldap-2.3.LICENSE | 20 + docs/openldap-2.3.html | 3 +- docs/openldap-2.3.json | 24 +- docs/openldap-2.4.LICENSE | 18 + docs/openldap-2.4.html | 3 +- docs/openldap-2.4.json | 21 +- docs/openldap-2.5.LICENSE | 18 + docs/openldap-2.5.html | 3 +- docs/openldap-2.5.json | 21 +- docs/openldap-2.6.LICENSE | 18 + docs/openldap-2.6.html | 3 +- docs/openldap-2.6.json | 21 +- docs/openldap-2.7.LICENSE | 18 + docs/openldap-2.7.html | 3 +- docs/openldap-2.7.json | 21 +- docs/openldap-2.8.LICENSE | 17 + docs/openldap-2.8.html | 3 +- docs/openldap-2.8.json | 20 +- docs/openmap.LICENSE | 12 + docs/openmap.html | 3 +- docs/openmap.json | 12 +- docs/openmarket-fastcgi.LICENSE | 16 + docs/openmarket-fastcgi.html | 3 +- docs/openmarket-fastcgi.json | 19 +- docs/openmotif-exception-2.0-plus.LICENSE | 35 + docs/openmotif-exception-2.0-plus.html | 3 +- docs/openmotif-exception-2.0-plus.json | 16 +- docs/opennetcf-shared-source.LICENSE | 14 + docs/opennetcf-shared-source.html | 3 +- docs/opennetcf-shared-source.json | 16 +- docs/openorb-1.0.LICENSE | 21 + docs/openorb-1.0.html | 3 +- docs/openorb-1.0.json | 26 +- docs/openpbs-2.3.LICENSE | 26 + docs/openpbs-2.3.html | 3 +- docs/openpbs-2.3.json | 32 +- docs/openpub.LICENSE | 22 + docs/openpub.html | 3 +- docs/openpub.json | 26 +- docs/opensaml-1.0.LICENSE | 21 + docs/opensaml-1.0.html | 3 +- docs/opensaml-1.0.json | 27 +- ...nsc-openssl-openpace-exception-gpl.LICENSE | 16 + ...opensc-openssl-openpace-exception-gpl.html | 3 +- ...opensc-openssl-openpace-exception-gpl.json | 18 +- docs/openssh.LICENSE | 44 + docs/openssh.html | 3 +- docs/openssh.json | 50 +- docs/openssl-exception-agpl-3.0-monit.LICENSE | 13 + docs/openssl-exception-agpl-3.0-monit.html | 3 +- docs/openssl-exception-agpl-3.0-monit.json | 14 +- docs/openssl-exception-agpl-3.0-plus.LICENSE | 14 +- docs/openssl-exception-agpl-3.0-plus.html | 6 +- docs/openssl-exception-agpl-3.0-plus.json | 13 +- docs/openssl-exception-agpl-3.0.LICENSE | 40 + docs/openssl-exception-agpl-3.0.html | 3 +- docs/openssl-exception-agpl-3.0.json | 11 +- docs/openssl-exception-gpl-2.0-plus.LICENSE | 31 + docs/openssl-exception-gpl-2.0-plus.html | 3 +- docs/openssl-exception-gpl-2.0-plus.json | 15 +- docs/openssl-exception-gpl-2.0.LICENSE | 44 + docs/openssl-exception-gpl-2.0.html | 14 +- docs/openssl-exception-gpl-2.0.json | 21 +- docs/openssl-exception-gpl-2.0.yml | 4 +- docs/openssl-exception-gpl-3.0-plus.LICENSE | 35 + docs/openssl-exception-gpl-3.0-plus.html | 3 +- docs/openssl-exception-gpl-3.0-plus.json | 14 +- docs/openssl-exception-lgpl-2.0-plus.LICENSE | 26 + docs/openssl-exception-lgpl-2.0-plus.html | 3 +- docs/openssl-exception-lgpl-2.0-plus.json | 15 +- docs/openssl-exception-lgpl-3.0-plus.LICENSE | 38 + docs/openssl-exception-lgpl-3.0-plus.html | 3 +- docs/openssl-exception-lgpl-3.0-plus.json | 18 +- docs/openssl-exception-lgpl.LICENSE | 11 + docs/openssl-exception-lgpl.html | 3 +- docs/openssl-exception-lgpl.json | 11 +- docs/openssl-exception-mongodb-sspl.LICENSE | 10 + docs/openssl-exception-mongodb-sspl.html | 3 +- docs/openssl-exception-mongodb-sspl.json | 10 +- docs/openssl-nokia-psk-contribution.LICENSE | 15 +- docs/openssl-nokia-psk-contribution.html | 6 +- docs/openssl-nokia-psk-contribution.json | 14 +- docs/openssl-ssleay.LICENSE | 35 + docs/openssl-ssleay.html | 3 +- docs/openssl-ssleay.json | 38 +- docs/openssl.LICENSE | 26 +- docs/openssl.html | 6 +- docs/openssl.json | 25 +- docs/openvpn-as-eula.LICENSE | 20 +- docs/openvpn-as-eula.html | 6 +- docs/openvpn-as-eula.json | 22 +- docs/openvpn-openssl-exception.LICENSE | 14 + docs/openvpn-openssl-exception.html | 3 +- docs/openvpn-openssl-exception.json | 15 +- docs/opera-eula-2018.LICENSE | 17 + docs/opera-eula-2018.html | 3 +- docs/opera-eula-2018.json | 19 +- docs/opera-eula-eea-2018.LICENSE | 17 + docs/opera-eula-eea-2018.html | 3 +- docs/opera-eula-eea-2018.json | 19 +- docs/opera-widget-1.0.LICENSE | 14 + docs/opera-widget-1.0.html | 3 +- docs/opera-widget-1.0.json | 16 +- docs/opl-1.0.LICENSE | 16 + docs/opl-1.0.html | 3 +- docs/opl-1.0.json | 19 +- docs/opml-1.0.LICENSE | 10 + docs/opml-1.0.html | 3 +- docs/opml-1.0.json | 10 +- docs/opnl-1.0.LICENSE | 18 + docs/opnl-1.0.html | 3 +- docs/opnl-1.0.json | 21 +- docs/opnl-2.0.LICENSE | 18 + docs/opnl-2.0.html | 3 +- docs/opnl-2.0.json | 21 +- docs/oracle-bcl-javaee.LICENSE | 13 + docs/oracle-bcl-javaee.html | 3 +- docs/oracle-bcl-javaee.json | 14 +- docs/oracle-bcl-javase-javafx-2012.LICENSE | 23 + docs/oracle-bcl-javase-javafx-2012.html | 3 +- docs/oracle-bcl-javase-javafx-2012.json | 28 +- docs/oracle-bcl-javase-javafx-2013.LICENSE | 14 + docs/oracle-bcl-javase-javafx-2013.html | 3 +- docs/oracle-bcl-javase-javafx-2013.json | 15 +- ...le-bcl-javase-platform-javafx-2013.LICENSE | 20 + ...racle-bcl-javase-platform-javafx-2013.html | 3 +- ...racle-bcl-javase-platform-javafx-2013.json | 24 +- ...le-bcl-javase-platform-javafx-2017.LICENSE | 23 + ...racle-bcl-javase-platform-javafx-2017.html | 3 +- ...racle-bcl-javase-platform-javafx-2017.json | 28 +- docs/oracle-bcl-jsse-1.0.3.LICENSE | 13 + docs/oracle-bcl-jsse-1.0.3.html | 3 +- docs/oracle-bcl-jsse-1.0.3.json | 14 +- docs/oracle-bsd-no-nuclear.LICENSE | 14 + docs/oracle-bsd-no-nuclear.html | 3 +- docs/oracle-bsd-no-nuclear.json | 15 +- docs/oracle-code-samples-bsd.LICENSE | 11 +- docs/oracle-code-samples-bsd.html | 6 +- docs/oracle-code-samples-bsd.json | 9 +- docs/oracle-commercial-database-11g2.LICENSE | 15 + docs/oracle-commercial-database-11g2.html | 3 +- docs/oracle-commercial-database-11g2.json | 17 +- docs/oracle-devtools-vsnet-dev.LICENSE | 16 + docs/oracle-devtools-vsnet-dev.html | 3 +- docs/oracle-devtools-vsnet-dev.json | 18 +- docs/oracle-entitlement-05-15.LICENSE | 15 +- docs/oracle-entitlement-05-15.html | 6 +- docs/oracle-entitlement-05-15.json | 14 +- docs/oracle-java-ee-sdk-2010.LICENSE | 16 + docs/oracle-java-ee-sdk-2010.html | 3 +- docs/oracle-java-ee-sdk-2010.json | 18 +- docs/oracle-master-agreement.LICENSE | 12 + docs/oracle-master-agreement.html | 3 +- docs/oracle-master-agreement.json | 13 +- docs/oracle-mysql-foss-exception-2.0.LICENSE | 42 +- docs/oracle-mysql-foss-exception-2.0.html | 7 +- docs/oracle-mysql-foss-exception-2.0.json | 20 +- docs/oracle-nftc-2021.LICENSE | 23 + docs/oracle-nftc-2021.html | 3 +- docs/oracle-nftc-2021.json | 20 +- ...le-openjdk-classpath-exception-2.0.LICENSE | 51 + ...racle-openjdk-classpath-exception-2.0.html | 3 +- ...racle-openjdk-classpath-exception-2.0.json | 18 +- docs/oracle-otn-javase-2019.LICENSE | 22 + docs/oracle-otn-javase-2019.html | 3 +- docs/oracle-otn-javase-2019.json | 24 +- docs/oracle-sql-developer.LICENSE | 17 + docs/oracle-sql-developer.html | 3 +- docs/oracle-sql-developer.json | 19 +- docs/oracle-web-sites-tou.LICENSE | 21 + docs/oracle-web-sites-tou.html | 3 +- docs/oracle-web-sites-tou.json | 26 +- docs/oreilly-notice.LICENSE | 12 + docs/oreilly-notice.html | 3 +- docs/oreilly-notice.json | 13 +- docs/oset-pl-2.1.LICENSE | 21 + docs/oset-pl-2.1.html | 3 +- docs/oset-pl-2.1.json | 25 +- docs/osetpl-2.1.LICENSE | 124 + docs/osetpl-2.1.html | 117 +- docs/osetpl-2.1.json | 11 +- docs/osf-1990.LICENSE | 12 + docs/osf-1990.html | 3 +- docs/osf-1990.json | 13 +- docs/osgi-spec-2.0.LICENSE | 14 +- docs/osgi-spec-2.0.html | 10 +- docs/osgi-spec-2.0.json | 13 +- docs/osl-1.0.LICENSE | 25 + docs/osl-1.0.html | 3 +- docs/osl-1.0.json | 27 +- docs/osl-1.1.LICENSE | 17 + docs/osl-1.1.html | 3 +- docs/osl-1.1.json | 20 +- docs/osl-2.0.LICENSE | 20 + docs/osl-2.0.html | 3 +- docs/osl-2.0.json | 24 +- docs/osl-2.1.LICENSE | 26 + docs/osl-2.1.html | 3 +- docs/osl-2.1.json | 28 +- docs/osl-3.0.LICENSE | 25 + docs/osl-3.0.html | 3 +- docs/osl-3.0.json | 29 +- docs/ossn-3.0.LICENSE | 21 +- docs/ossn-3.0.html | 6 +- docs/ossn-3.0.json | 23 +- docs/oswego-concurrent.LICENSE | 21 + docs/oswego-concurrent.html | 3 +- docs/oswego-concurrent.json | 25 +- docs/other-copyleft.LICENSE | 15 +- docs/other-copyleft.html | 6 +- docs/other-copyleft.json | 11 +- docs/other-permissive.LICENSE | 13 + docs/other-permissive.html | 3 +- docs/other-permissive.json | 11 +- docs/otn-dev-dist-2009.LICENSE | 17 + docs/otn-dev-dist-2009.html | 3 +- docs/otn-dev-dist-2009.json | 19 +- docs/otn-dev-dist-2014.LICENSE | 15 + docs/otn-dev-dist-2014.html | 3 +- docs/otn-dev-dist-2014.json | 17 +- docs/otn-dev-dist-2016.LICENSE | 15 + docs/otn-dev-dist-2016.html | 3 +- docs/otn-dev-dist-2016.json | 16 +- docs/otn-dev-dist.LICENSE | 19 + docs/otn-dev-dist.html | 3 +- docs/otn-dev-dist.json | 22 +- docs/otn-early-adopter-2018.LICENSE | 17 + docs/otn-early-adopter-2018.html | 3 +- docs/otn-early-adopter-2018.json | 19 +- docs/otn-early-adopter-development.LICENSE | 16 + docs/otn-early-adopter-development.html | 3 +- docs/otn-early-adopter-development.json | 19 +- docs/otn-standard-2014-09.LICENSE | 17 +- docs/otn-standard-2014-09.html | 10 +- docs/otn-standard-2014-09.json | 16 +- docs/owal-1.0.LICENSE | 14 + docs/owal-1.0.html | 3 +- docs/owal-1.0.json | 16 +- docs/owf-cla-1.0-copyright-patent.LICENSE | 11 + docs/owf-cla-1.0-copyright-patent.html | 5 +- docs/owf-cla-1.0-copyright-patent.json | 11 +- docs/owf-cla-1.0-copyright-patent.yml | 2 +- docs/owf-cla-1.0-copyright.LICENSE | 15 + docs/owf-cla-1.0-copyright.html | 5 +- docs/owf-cla-1.0-copyright.json | 17 +- docs/owf-cla-1.0-copyright.yml | 2 +- docs/owfa-1-0-patent-only.LICENSE | 11 + docs/owfa-1-0-patent-only.html | 3 +- docs/owfa-1-0-patent-only.json | 11 +- docs/owfa-1.0.LICENSE | 13 + docs/owfa-1.0.html | 3 +- docs/owfa-1.0.json | 14 +- docs/owtchart.LICENSE | 29 + docs/owtchart.html | 3 +- docs/owtchart.json | 33 +- docs/oxygen-xml-webhelp-eula.LICENSE | 17 + docs/oxygen-xml-webhelp-eula.html | 3 +- docs/oxygen-xml-webhelp-eula.json | 19 +- docs/ozplb-1.0.LICENSE | 22 + docs/ozplb-1.0.html | 3 +- docs/ozplb-1.0.json | 28 +- docs/ozplb-1.1.LICENSE | 21 + docs/ozplb-1.1.html | 3 +- docs/ozplb-1.1.json | 26 +- docs/paint-net.LICENSE | 15 + docs/paint-net.html | 3 +- docs/paint-net.json | 16 +- docs/paolo-messina-2000.LICENSE | 9 + docs/paolo-messina-2000.html | 3 +- docs/paolo-messina-2000.json | 9 +- docs/paraview-1.2.LICENSE | 29 + docs/paraview-1.2.html | 3 +- docs/paraview-1.2.json | 29 +- docs/parity-6.0.0.LICENSE | 12 + docs/parity-6.0.0.html | 3 +- docs/parity-6.0.0.json | 13 +- docs/parity-7.0.0.LICENSE | 10 + docs/parity-7.0.0.html | 3 +- docs/parity-7.0.0.json | 10 +- docs/passive-aggressive.LICENSE | 12 +- docs/passive-aggressive.html | 6 +- docs/passive-aggressive.json | 10 +- docs/patent-disclaimer.LICENSE | 9 + docs/patent-disclaimer.html | 10 +- docs/patent-disclaimer.json | 10 +- docs/patent-disclaimer.yml | 1 + docs/paul-hsieh-derivative.LICENSE | 16 +- docs/paul-hsieh-derivative.html | 6 +- docs/paul-hsieh-derivative.json | 16 +- docs/paul-hsieh-exposition.LICENSE | 14 + docs/paul-hsieh-exposition.html | 3 +- docs/paul-hsieh-exposition.json | 16 +- docs/paul-mackerras-binary.LICENSE | 14 + docs/paul-mackerras-binary.html | 3 +- docs/paul-mackerras-binary.json | 16 +- docs/paul-mackerras-new.LICENSE | 10 + docs/paul-mackerras-new.html | 3 +- docs/paul-mackerras-new.json | 10 +- docs/paul-mackerras-simplified.LICENSE | 10 + docs/paul-mackerras-simplified.html | 3 +- docs/paul-mackerras-simplified.json | 10 +- docs/paul-mackerras.LICENSE | 15 + docs/paul-mackerras.html | 3 +- docs/paul-mackerras.json | 16 +- docs/paulo-soares.LICENSE | 11 + docs/paulo-soares.html | 3 +- docs/paulo-soares.json | 12 +- docs/paypal-sdk-2013-2016.LICENSE | 18 + docs/paypal-sdk-2013-2016.html | 3 +- docs/paypal-sdk-2013-2016.json | 17 +- docs/pbl-1.0.LICENSE | 14 +- docs/pbl-1.0.html | 6 +- docs/pbl-1.0.json | 13 +- docs/pcre.LICENSE | 24 + docs/pcre.html | 3 +- docs/pcre.json | 30 +- docs/pd-mit.LICENSE | 12 + docs/pd-mit.html | 3 +- docs/pd-mit.json | 13 +- docs/pd-programming.LICENSE | 12 +- docs/pd-programming.html | 9 +- docs/pd-programming.json | 12 +- docs/pddl-1.0.LICENSE | 15 + docs/pddl-1.0.html | 3 +- docs/pddl-1.0.json | 17 +- docs/pdf-creator-pilot.LICENSE | 16 + docs/pdf-creator-pilot.html | 3 +- docs/pdf-creator-pilot.json | 19 +- docs/pdl-1.0.LICENSE | 16 +- docs/pdl-1.0.html | 6 +- docs/pdl-1.0.json | 15 +- docs/perl-1.0.LICENSE | 13 + docs/perl-1.0.html | 3 +- docs/perl-1.0.json | 15 +- docs/peter-deutsch-document.LICENSE | 12 + docs/peter-deutsch-document.html | 3 +- docs/peter-deutsch-document.json | 13 +- docs/pfe-proprietary-notice.LICENSE | 10 + docs/pfe-proprietary-notice.html | 3 +- docs/pfe-proprietary-notice.json | 10 +- docs/pftijah-1.1.LICENSE | 12 + docs/pftijah-1.1.html | 3 +- docs/pftijah-1.1.json | 13 +- docs/pftus-1.1.LICENSE | 12 +- docs/pftus-1.1.html | 6 +- docs/pftus-1.1.json | 10 +- docs/phil-bunce.LICENSE | 10 + docs/phil-bunce.html | 3 +- docs/phil-bunce.json | 10 +- docs/philippe-de-muyter.LICENSE | 10 + docs/philippe-de-muyter.html | 3 +- docs/philippe-de-muyter.json | 10 +- docs/philips-proprietary-notice-2000.LICENSE | 12 +- docs/philips-proprietary-notice-2000.html | 6 +- docs/philips-proprietary-notice-2000.json | 12 +- docs/phorum-2.0.LICENSE | 30 +- docs/phorum-2.0.html | 6 +- docs/phorum-2.0.json | 35 +- docs/php-2.0.2.LICENSE | 24 +- docs/php-2.0.2.html | 6 +- docs/php-2.0.2.json | 26 +- docs/php-3.0.LICENSE | 29 + docs/php-3.0.html | 3 +- docs/php-3.0.json | 35 +- docs/php-3.01.LICENSE | 30 + docs/php-3.01.html | 3 +- docs/php-3.01.json | 33 +- docs/pine.LICENSE | 18 + docs/pine.html | 3 +- docs/pine.json | 22 +- docs/pivotal-tou.LICENSE | 13 + docs/pivotal-tou.html | 3 +- docs/pivotal-tou.json | 14 +- docs/pixabay-content.LICENSE | 10 + docs/pixabay-content.html | 3 +- docs/pixabay-content.json | 10 +- docs/planet-source-code.LICENSE | 9 + docs/planet-source-code.html | 3 +- docs/planet-source-code.json | 9 +- docs/plural-20211124.LICENSE | 936 + docs/plural-20211124.html | 1098 + docs/plural-20211124.json | 26 + docs/plural-20211124.yml | 20 + docs/pml-2020.LICENSE | 12 + docs/pml-2020.html | 3 +- docs/pml-2020.json | 13 +- docs/pngsuite.LICENSE | 11 +- docs/pngsuite.html | 6 +- docs/pngsuite.json | 9 +- docs/politepix-pl-1.0.LICENSE | 14 + docs/politepix-pl-1.0.html | 3 +- docs/politepix-pl-1.0.json | 15 +- docs/polyform-defensive-1.0.0.LICENSE | 17 + docs/polyform-defensive-1.0.0.html | 3 +- docs/polyform-defensive-1.0.0.json | 20 +- docs/polyform-free-trial-1.0.0.LICENSE | 14 + docs/polyform-free-trial-1.0.0.html | 3 +- docs/polyform-free-trial-1.0.0.json | 16 +- docs/polyform-internal-use-1.0.0.LICENSE | 14 + docs/polyform-internal-use-1.0.0.html | 3 +- docs/polyform-internal-use-1.0.0.json | 16 +- docs/polyform-noncommercial-1.0.0.LICENSE | 20 + docs/polyform-noncommercial-1.0.0.html | 3 +- docs/polyform-noncommercial-1.0.0.json | 25 +- docs/polyform-perimeter-1.0.0.LICENSE | 18 + docs/polyform-perimeter-1.0.0.html | 3 +- docs/polyform-perimeter-1.0.0.json | 22 +- docs/polyform-shield-1.0.0.LICENSE | 22 +- docs/polyform-shield-1.0.0.html | 6 +- docs/polyform-shield-1.0.0.json | 25 +- docs/polyform-small-business-1.0.0.LICENSE | 20 + docs/polyform-small-business-1.0.0.html | 3 +- docs/polyform-small-business-1.0.0.json | 25 +- docs/polyform-strict-1.0.0.LICENSE | 14 + docs/polyform-strict-1.0.0.html | 3 +- docs/polyform-strict-1.0.0.json | 16 +- docs/postgresql.LICENSE | 24 + docs/postgresql.html | 3 +- docs/postgresql.json | 28 +- docs/powervr-tools-software-eula.LICENSE | 13 + docs/powervr-tools-software-eula.html | 3 +- docs/powervr-tools-software-eula.json | 11 +- docs/ppp.LICENSE | 12 +- docs/ppp.html | 6 +- docs/ppp.json | 10 +- docs/proguard-exception-2.0.LICENSE | 37 + docs/proguard-exception-2.0.html | 3 +- docs/proguard-exception-2.0.json | 15 +- docs/proprietary-license.LICENSE | 16 + docs/proprietary-license.html | 3 +- docs/proprietary-license.json | 15 +- docs/proprietary.LICENSE | 10 + docs/proprietary.html | 3 +- docs/proprietary.json | 11 +- docs/prosperity-1.0.1.LICENSE | 14 + docs/prosperity-1.0.1.html | 3 +- docs/prosperity-1.0.1.json | 16 +- docs/prosperity-2.0.LICENSE | 14 +- docs/prosperity-2.0.html | 6 +- docs/prosperity-2.0.json | 13 +- docs/prosperity-3.0.LICENSE | 19 +- docs/prosperity-3.0.html | 6 +- docs/prosperity-3.0.json | 19 +- docs/protobuf.LICENSE | 11 + docs/protobuf.html | 3 +- docs/protobuf.json | 11 +- .../ps-or-pdf-font-exception-20170817.LICENSE | 13 + docs/ps-or-pdf-font-exception-20170817.html | 3 +- docs/ps-or-pdf-font-exception-20170817.json | 14 +- docs/psf-2.0.LICENSE | 14 + docs/psf-2.0.html | 3 +- docs/psf-2.0.json | 16 +- docs/psf-3.7.2.LICENSE | 14 + docs/psf-3.7.2.html | 3 +- docs/psf-3.7.2.json | 16 +- docs/psfrag.LICENSE | 13 + docs/psfrag.html | 3 +- docs/psfrag.json | 11 +- docs/psutils.LICENSE | 16 + docs/psutils.html | 3 +- docs/psutils.json | 19 +- docs/psytec-freesoft.LICENSE | 12 + docs/psytec-freesoft.html | 3 +- docs/psytec-freesoft.json | 13 +- docs/public-domain-disclaimer.LICENSE | 14 +- docs/public-domain-disclaimer.html | 6 +- docs/public-domain-disclaimer.json | 11 +- docs/public-domain.LICENSE | 17 + docs/public-domain.html | 3 +- docs/public-domain.json | 20 +- docs/purdue-bsd.LICENSE | 11 + docs/purdue-bsd.html | 3 +- docs/purdue-bsd.json | 11 +- docs/pybench.LICENSE | 19 + docs/pybench.html | 3 +- docs/pybench.json | 22 +- docs/pycrypto.LICENSE | 12 +- docs/pycrypto.html | 6 +- docs/pycrypto.json | 10 +- docs/pygres-2.2.LICENSE | 23 +- docs/pygres-2.2.html | 6 +- docs/pygres-2.2.json | 25 +- docs/python-2.0.1.LICENSE | 233 + docs/python-2.0.1.html | 392 + docs/python-2.0.1.json | 28 + docs/python-2.0.1.yml | 23 + docs/python-cwi.LICENSE | 17 +- docs/python-cwi.html | 6 +- docs/python-cwi.json | 11 +- docs/python.LICENSE | 30 +- docs/python.html | 6 +- docs/python.json | 33 +- docs/qaplug.LICENSE | 10 + docs/qaplug.html | 3 +- docs/qaplug.json | 10 +- docs/qca-linux-firmware.LICENSE | 14 + docs/qca-linux-firmware.html | 3 +- docs/qca-linux-firmware.json | 16 +- docs/qca-technology.LICENSE | 10 + docs/qca-technology.html | 3 +- docs/qca-technology.json | 10 +- docs/qcad-exception-gpl.LICENSE | 11 + docs/qcad-exception-gpl.html | 3 +- docs/qcad-exception-gpl.json | 11 +- docs/qhull.LICENSE | 24 + docs/qhull.html | 3 +- docs/qhull.json | 26 +- docs/qlogic-firmware.LICENSE | 12 + docs/qlogic-firmware.html | 3 +- docs/qlogic-firmware.json | 13 +- docs/qlogic-microcode.LICENSE | 12 +- docs/qlogic-microcode.html | 6 +- docs/qlogic-microcode.json | 10 +- docs/qpl-1.0.LICENSE | 24 + docs/qpl-1.0.html | 3 +- docs/qpl-1.0.json | 28 +- docs/qpopper.LICENSE | 20 + docs/qpopper.html | 3 +- docs/qpopper.json | 24 +- docs/qt-commercial-1.1.LICENSE | 19 + docs/qt-commercial-1.1.html | 3 +- docs/qt-commercial-1.1.json | 21 +- docs/qt-commercial-agreement-4.4.1.LICENSE | 435 + docs/qt-commercial-agreement-4.4.1.html | 594 + docs/qt-commercial-agreement-4.4.1.json | 19 + docs/qt-commercial-agreement-4.4.1.yml | 14 + ...qt-company-exception-2017-lgpl-2.1.LICENSE | 33 + docs/qt-company-exception-2017-lgpl-2.1.html | 24 +- docs/qt-company-exception-2017-lgpl-2.1.json | 14 +- docs/qt-company-exception-lgpl-2.1.LICENSE | 34 + docs/qt-company-exception-lgpl-2.1.html | 3 +- docs/qt-company-exception-lgpl-2.1.json | 16 +- docs/qt-gpl-exception-1.0.LICENSE | 11 + docs/qt-gpl-exception-1.0.html | 3 +- docs/qt-gpl-exception-1.0.json | 11 +- docs/qt-kde-linking-exception.LICENSE | 27 + docs/qt-kde-linking-exception.html | 3 +- docs/qt-kde-linking-exception.json | 14 +- docs/qt-lgpl-exception-1.1.LICENSE | 13 + docs/qt-lgpl-exception-1.1.html | 3 +- docs/qt-lgpl-exception-1.1.json | 14 +- docs/qt-qca-exception-2.0.LICENSE | 35 + docs/qt-qca-exception-2.0.html | 3 +- docs/qt-qca-exception-2.0.json | 15 +- docs/qti-linux-firmware.LICENSE | 10 + docs/qti-linux-firmware.html | 3 +- docs/qti-linux-firmware.json | 10 +- docs/qualcomm-iso.LICENSE | 17 + docs/qualcomm-iso.html | 3 +- docs/qualcomm-iso.json | 21 +- docs/qualcomm-turing.LICENSE | 14 + docs/qualcomm-turing.html | 3 +- docs/qualcomm-turing.json | 16 +- docs/quickfix-1.0.LICENSE | 16 + docs/quickfix-1.0.html | 3 +- docs/quickfix-1.0.json | 19 +- docs/quicktime.LICENSE | 12 + docs/quicktime.html | 3 +- docs/quicktime.json | 13 +- docs/quin-street.LICENSE | 22 + docs/quin-street.html | 3 +- docs/quin-street.json | 27 +- docs/quirksmode.LICENSE | 13 + docs/quirksmode.html | 3 +- docs/quirksmode.json | 14 +- docs/qwt-1.0.LICENSE | 11 + docs/qwt-1.0.html | 3 +- docs/qwt-1.0.json | 11 +- docs/qwt-exception-1.0.LICENSE | 43 + docs/qwt-exception-1.0.html | 3 +- docs/qwt-exception-1.0.json | 18 +- docs/rackspace.LICENSE | 9 + docs/rackspace.html | 3 +- docs/rackspace.json | 9 +- docs/radvd.LICENSE | 14 + docs/radvd.html | 3 +- docs/radvd.json | 15 +- docs/ralf-corsepius.LICENSE | 9 + docs/ralf-corsepius.html | 3 +- docs/ralf-corsepius.json | 9 +- docs/ralink-firmware.LICENSE | 12 + docs/ralink-firmware.html | 3 +- docs/ralink-firmware.json | 13 +- docs/rar-winrar-eula.LICENSE | 10 + docs/rar-winrar-eula.html | 3 +- docs/rar-winrar-eula.json | 10 +- docs/rcsl-2.0.LICENSE | 16 + docs/rcsl-2.0.html | 3 +- docs/rcsl-2.0.json | 19 +- docs/rcsl-3.0.LICENSE | 22 + docs/rcsl-3.0.html | 3 +- docs/rcsl-3.0.json | 27 +- docs/rdisc.LICENSE | 17 +- docs/rdisc.html | 6 +- docs/rdisc.json | 14 +- docs/realm-platform-extension-2017.LICENSE | 17 + docs/realm-platform-extension-2017.html | 3 +- docs/realm-platform-extension-2017.json | 20 +- docs/red-hat-attribution.LICENSE | 10 + docs/red-hat-attribution.html | 3 +- docs/red-hat-attribution.json | 10 +- docs/red-hat-bsd-simplified.LICENSE | 12 + docs/red-hat-bsd-simplified.html | 3 +- docs/red-hat-bsd-simplified.json | 13 +- docs/red-hat-logos.LICENSE | 12 +- docs/red-hat-logos.html | 6 +- docs/red-hat-logos.json | 10 +- docs/red-hat-trademarks.LICENSE | 9 + docs/red-hat-trademarks.html | 3 +- docs/red-hat-trademarks.json | 9 +- docs/redis-source-available-1.0.LICENSE | 16 +- docs/redis-source-available-1.0.html | 6 +- docs/redis-source-available-1.0.json | 15 +- docs/regexp.LICENSE | 15 +- docs/regexp.html | 6 +- docs/regexp.json | 14 +- docs/reportbug.LICENSE | 14 + docs/reportbug.html | 3 +- docs/reportbug.json | 15 +- docs/repoze.LICENSE | 18 + docs/repoze.html | 3 +- docs/repoze.json | 21 +- docs/rh-eula-lgpl.LICENSE | 17 + docs/rh-eula-lgpl.html | 3 +- docs/rh-eula-lgpl.json | 20 +- docs/rh-eula.LICENSE | 20 + docs/rh-eula.html | 3 +- docs/rh-eula.json | 24 +- docs/ricebsd.LICENSE | 20 + docs/ricebsd.html | 3 +- docs/ricebsd.json | 23 +- docs/richard-black.LICENSE | 14 + docs/richard-black.html | 3 +- docs/richard-black.json | 16 +- docs/ricoh-1.0.LICENSE | 24 + docs/ricoh-1.0.html | 3 +- docs/ricoh-1.0.json | 29 +- docs/riverbank-sip.LICENSE | 13 + docs/riverbank-sip.html | 3 +- docs/riverbank-sip.json | 15 +- docs/robert-hubley.LICENSE | 10 + docs/robert-hubley.html | 3 +- docs/robert-hubley.json | 10 +- docs/rogue-wave.LICENSE | 17 +- docs/rogue-wave.html | 6 +- docs/rogue-wave.json | 18 +- docs/rpl-1.1.LICENSE | 27 + docs/rpl-1.1.html | 3 +- docs/rpl-1.1.json | 30 +- docs/rpl-1.5.LICENSE | 25 + docs/rpl-1.5.html | 3 +- docs/rpl-1.5.json | 27 +- docs/rpsl-1.0.LICENSE | 30 + docs/rpsl-1.0.html | 3 +- docs/rpsl-1.0.json | 35 +- docs/rrdtool-floss-exception-2.0.LICENSE | 15 + docs/rrdtool-floss-exception-2.0.html | 3 +- docs/rrdtool-floss-exception-2.0.json | 17 +- docs/rsa-1990.LICENSE | 14 +- docs/rsa-1990.html | 6 +- docs/rsa-1990.json | 13 +- docs/rsa-cryptoki.LICENSE | 12 + docs/rsa-cryptoki.html | 3 +- docs/rsa-cryptoki.json | 13 +- docs/rsa-demo.LICENSE | 11 +- docs/rsa-demo.html | 6 +- docs/rsa-demo.json | 9 +- docs/rsa-md2.LICENSE | 9 + docs/rsa-md2.html | 3 +- docs/rsa-md2.json | 9 +- docs/rsa-md4.LICENSE | 9 + docs/rsa-md4.html | 3 +- docs/rsa-md4.json | 9 +- docs/rsa-md5.LICENSE | 16 +- docs/rsa-md5.html | 6 +- docs/rsa-md5.json | 16 +- docs/rsa-proprietary.LICENSE | 14 + docs/rsa-proprietary.html | 3 +- docs/rsa-proprietary.json | 16 +- docs/rtools-util.LICENSE | 11 + docs/rtools-util.html | 3 +- docs/rtools-util.json | 12 +- docs/ruby.LICENSE | 22 + docs/ruby.html | 8 +- docs/ruby.json | 18 +- docs/ruby.yml | 1 + docs/rubyencoder-commercial.LICENSE | 16 + docs/rubyencoder-commercial.html | 3 +- docs/rubyencoder-commercial.json | 19 +- docs/rubyencoder-loader.LICENSE | 19 + docs/rubyencoder-loader.html | 3 +- docs/rubyencoder-loader.json | 23 +- docs/rute.LICENSE | 19 +- docs/rute.html | 6 +- docs/rute.json | 18 +- docs/rxtx-exception-lgpl-2.1.LICENSE | 53 + docs/rxtx-exception-lgpl-2.1.html | 3 +- docs/rxtx-exception-lgpl-2.1.json | 15 +- docs/ryszard-szopa.LICENSE | 9 + docs/ryszard-szopa.html | 3 +- docs/ryszard-szopa.json | 9 +- docs/saas-mit.LICENSE | 13 +- docs/saas-mit.html | 6 +- docs/saas-mit.json | 11 +- docs/saf.LICENSE | 13 + docs/saf.html | 3 +- docs/saf.json | 15 +- docs/safecopy-eula.LICENSE | 10 + docs/safecopy-eula.html | 3 +- docs/safecopy-eula.json | 10 +- docs/san-francisco-font.LICENSE | 10 + docs/san-francisco-font.html | 3 +- docs/san-francisco-font.json | 10 +- docs/sandeep.LICENSE | 16 + docs/sandeep.html | 3 +- docs/sandeep.json | 19 +- docs/sane-exception-2.0-plus.LICENSE | 44 + docs/sane-exception-2.0-plus.html | 3 +- docs/sane-exception-2.0-plus.json | 18 +- docs/sash.LICENSE | 12 +- docs/sash.html | 6 +- docs/sash.json | 10 +- docs/sata.LICENSE | 23 + docs/sata.html | 3 +- docs/sata.json | 28 +- docs/sax-pd.LICENSE | 12 + docs/sax-pd.html | 3 +- docs/sax-pd.json | 13 +- docs/saxpath.LICENSE | 23 +- docs/saxpath.html | 6 +- docs/saxpath.json | 21 +- docs/sbia-b.LICENSE | 13 +- docs/sbia-b.html | 6 +- docs/sbia-b.json | 11 +- docs/scancode-acknowledgment.LICENSE | 15 +- docs/scancode-acknowledgment.html | 6 +- docs/scancode-acknowledgment.json | 14 +- docs/scanlogd-license.LICENSE | 11 + docs/scanlogd-license.html | 3 +- docs/scanlogd-license.json | 12 +- docs/scansoft-1.2.LICENSE | 19 + docs/scansoft-1.2.html | 3 +- docs/scansoft-1.2.json | 23 +- docs/scea-1.0.LICENSE | 16 + docs/scea-1.0.html | 3 +- docs/scea-1.0.json | 19 +- docs/schemereport.LICENSE | 11 +- docs/schemereport.html | 6 +- docs/schemereport.json | 9 +- docs/scilab-en-2005.LICENSE | 22 +- docs/scilab-en-2005.html | 6 +- docs/scilab-en-2005.json | 25 +- docs/scilab-fr.LICENSE | 25 +- docs/scilab-fr.html | 6 +- docs/scilab-fr.json | 26 +- docs/scintilla.LICENSE | 10 + docs/scintilla.html | 3 +- docs/scintilla.json | 10 +- docs/scola-en.LICENSE | 13 +- docs/scola-en.html | 9 +- docs/scola-en.json | 13 +- docs/scola-fr.LICENSE | 14 +- docs/scola-fr.html | 9 +- docs/scola-fr.json | 14 +- docs/scribbles.LICENSE | 11 +- docs/scribbles.html | 6 +- docs/scribbles.json | 9 +- docs/script-asylum.LICENSE | 10 + docs/script-asylum.html | 3 +- docs/script-asylum.json | 10 +- docs/script-nikhilk.LICENSE | 15 + docs/script-nikhilk.html | 3 +- docs/script-nikhilk.json | 17 +- docs/scrub.LICENSE | 14 + docs/scrub.html | 3 +- docs/scrub.json | 16 +- docs/scsl-3.0.LICENSE | 13 + docs/scsl-3.0.html | 3 +- docs/scsl-3.0.json | 15 +- docs/secret-labs-2011.LICENSE | 12 +- docs/secret-labs-2011.html | 6 +- docs/secret-labs-2011.json | 10 +- docs/see-license.LICENSE | 10 + docs/see-license.html | 3 +- docs/see-license.json | 11 +- docs/selinux-nsa-declaration-1.0.LICENSE | 10 + docs/selinux-nsa-declaration-1.0.html | 3 +- docs/selinux-nsa-declaration-1.0.json | 10 +- docs/sencha-app-floss-exception.LICENSE | 16 +- docs/sencha-app-floss-exception.html | 9 +- docs/sencha-app-floss-exception.json | 16 +- docs/sencha-commercial-3.17.LICENSE | 13 + docs/sencha-commercial-3.17.html | 3 +- docs/sencha-commercial-3.17.json | 14 +- docs/sencha-commercial-3.9.LICENSE | 12 + docs/sencha-commercial-3.9.html | 3 +- docs/sencha-commercial-3.9.json | 13 +- docs/sencha-commercial.LICENSE | 12 + docs/sencha-commercial.html | 3 +- docs/sencha-commercial.json | 13 +- docs/sencha-dev-floss-exception.LICENSE | 16 + docs/sencha-dev-floss-exception.html | 6 +- docs/sencha-dev-floss-exception.json | 19 +- docs/sendmail-8.23.LICENSE | 22 + docs/sendmail-8.23.html | 3 +- docs/sendmail-8.23.json | 26 +- docs/sendmail.LICENSE | 25 + docs/sendmail.html | 3 +- docs/sendmail.json | 29 +- docs/service-comp-arch.LICENSE | 13 + docs/service-comp-arch.html | 3 +- docs/service-comp-arch.json | 13 +- docs/sfl-license.LICENSE | 23 + docs/sfl-license.html | 3 +- docs/sfl-license.json | 28 +- docs/sgi-cid-1.0.LICENSE | 20 + docs/sgi-cid-1.0.html | 3 +- docs/sgi-cid-1.0.json | 25 +- docs/sgi-freeb-1.1.LICENSE | 19 + docs/sgi-freeb-1.1.html | 3 +- docs/sgi-freeb-1.1.json | 23 +- docs/sgi-freeb-2.0.LICENSE | 19 +- docs/sgi-freeb-2.0.html | 6 +- docs/sgi-freeb-2.0.json | 20 +- docs/sgi-fslb-1.0.LICENSE | 15 +- docs/sgi-fslb-1.0.html | 10 +- docs/sgi-fslb-1.0.json | 14 +- docs/sgi-glx-1.0.LICENSE | 20 + docs/sgi-glx-1.0.html | 3 +- docs/sgi-glx-1.0.json | 25 +- docs/sglib.LICENSE | 13 + docs/sglib.html | 3 +- docs/sglib.json | 15 +- docs/shavlik-eula.LICENSE | 12 + docs/shavlik-eula.html | 3 +- docs/shavlik-eula.json | 13 +- docs/shital-shah.LICENSE | 11 + docs/shital-shah.html | 6 +- docs/shital-shah.json | 13 +- docs/shl-0.5.LICENSE | 25 + docs/shl-0.5.html | 3 +- docs/shl-0.5.json | 18 +- docs/shl-0.51.LICENSE | 25 + docs/shl-0.51.html | 3 +- docs/shl-0.51.json | 18 +- docs/shl-2.0.LICENSE | 13 + docs/shl-2.0.html | 3 +- docs/shl-2.0.json | 14 +- docs/shl-2.1.LICENSE | 14 + docs/shl-2.1.html | 3 +- docs/shl-2.1.json | 15 +- docs/signal-gpl-3.0-exception.LICENSE | 13 + docs/signal-gpl-3.0-exception.html | 3 +- docs/signal-gpl-3.0-exception.json | 14 +- docs/simpl-1.1.LICENSE | 17 + docs/simpl-1.1.html | 3 +- docs/simpl-1.1.json | 20 +- docs/simpl-2.0.LICENSE | 17 + docs/simpl-2.0.html | 3 +- docs/simpl-2.0.json | 19 +- docs/six-labors-split-1.0.LICENSE | 59 + docs/six-labors-split-1.0.html | 219 + docs/six-labors-split-1.0.json | 18 + docs/six-labors-split-1.0.yml | 13 + docs/skip-2014.LICENSE | 56 + docs/skip-2014.html | 223 + docs/skip-2014.json | 21 + docs/skip-2014.yml | 15 + docs/sleepycat.LICENSE | 19 + docs/sleepycat.html | 3 +- docs/sleepycat.json | 21 +- docs/slf4j-2005.LICENSE | 11 + docs/slf4j-2005.html | 3 +- docs/slf4j-2005.json | 12 +- docs/slf4j-2008.LICENSE | 11 + docs/slf4j-2008.html | 3 +- docs/slf4j-2008.json | 11 +- docs/slysoft-eula.LICENSE | 10 + docs/slysoft-eula.html | 3 +- docs/slysoft-eula.json | 10 +- docs/smail-gpl.LICENSE | 20 +- docs/smail-gpl.html | 6 +- docs/smail-gpl.json | 21 +- docs/smartlabs-freeware.LICENSE | 12 + docs/smartlabs-freeware.html | 3 +- docs/smartlabs-freeware.json | 13 +- docs/smppl.LICENSE | 16 + docs/smppl.html | 3 +- docs/smppl.json | 19 +- docs/smsc-non-commercial-2012.LICENSE | 27 + docs/smsc-non-commercial-2012.html | 174 + docs/smsc-non-commercial-2012.json | 14 + docs/smsc-non-commercial-2012.yml | 10 + docs/snapeda-design-exception-1.0.LICENSE | 15 + docs/snapeda-design-exception-1.0.html | 3 +- docs/snapeda-design-exception-1.0.json | 16 +- docs/snia.LICENSE | 35 + docs/snia.html | 3 +- docs/snia.json | 15 +- docs/snmp4j-smi.LICENSE | 16 + docs/snmp4j-smi.html | 3 +- docs/snmp4j-smi.json | 18 +- docs/snprintf.LICENSE | 9 + docs/snprintf.html | 3 +- docs/snprintf.json | 9 +- docs/softerra-ldap-browser-eula.LICENSE | 10 + docs/softerra-ldap-browser-eula.html | 3 +- docs/softerra-ldap-browser-eula.json | 10 +- docs/softfloat-2.0.LICENSE | 19 +- docs/softfloat-2.0.html | 6 +- docs/softfloat-2.0.json | 18 +- docs/softfloat.LICENSE | 14 + docs/softfloat.html | 3 +- docs/softfloat.json | 15 +- docs/softsurfer.LICENSE | 12 + docs/softsurfer.html | 3 +- docs/softsurfer.json | 13 +- docs/solace-software-eula-2020.LICENSE | 20 + docs/solace-software-eula-2020.html | 3 +- docs/solace-software-eula-2020.json | 23 +- docs/spark-jive.LICENSE | 11 + docs/spark-jive.html | 3 +- docs/spark-jive.json | 11 +- docs/sparky.LICENSE | 18 + docs/sparky.html | 3 +- docs/sparky.json | 22 +- docs/speechworks-1.1.LICENSE | 19 + docs/speechworks-1.1.html | 3 +- docs/speechworks-1.1.json | 23 +- ...ll-checker-exception-lgpl-2.1-plus.LICENSE | 39 + ...spell-checker-exception-lgpl-2.1-plus.html | 3 +- ...spell-checker-exception-lgpl-2.1-plus.json | 21 +- docs/spl-1.0.LICENSE | 23 + docs/spl-1.0.html | 3 +- docs/spl-1.0.json | 26 +- docs/splunk-3pp-eula.LICENSE | 12 + docs/splunk-3pp-eula.html | 3 +- docs/splunk-3pp-eula.json | 13 +- docs/splunk-mint-tos-2018.LICENSE | 18 + docs/splunk-mint-tos-2018.html | 3 +- docs/splunk-mint-tos-2018.json | 20 +- docs/splunk-sla.LICENSE | 19 + docs/splunk-sla.html | 3 +- docs/splunk-sla.json | 21 +- docs/square-cla.LICENSE | 10 + docs/square-cla.html | 5 +- docs/square-cla.json | 10 +- docs/square-cla.yml | 2 +- docs/squeak.LICENSE | 12 + docs/squeak.html | 3 +- docs/squeak.json | 13 +- docs/srgb.LICENSE | 12 + docs/srgb.html | 3 +- docs/srgb.json | 13 +- docs/ssleay-windows.LICENSE | 24 + docs/ssleay-windows.html | 3 +- docs/ssleay-windows.json | 30 +- docs/ssleay.LICENSE | 21 + docs/ssleay.html | 3 +- docs/ssleay.json | 26 +- docs/st-bsd-restricted.LICENSE | 12 +- docs/st-bsd-restricted.html | 6 +- docs/st-bsd-restricted.json | 10 +- docs/st-mcd-2.0.LICENSE | 48 +- docs/st-mcd-2.0.html | 8 +- docs/st-mcd-2.0.json | 21 +- docs/stable-diffusion-2022-08-22.LICENSE | 93 + docs/stable-diffusion-2022-08-22.html | 246 + docs/stable-diffusion-2022-08-22.json | 15 + docs/stable-diffusion-2022-08-22.yml | 11 + docs/standard-ml-nj.LICENSE | 29 + docs/standard-ml-nj.html | 3 +- docs/standard-ml-nj.json | 25 +- docs/stanford-mrouted.LICENSE | 15 + docs/stanford-mrouted.html | 3 +- docs/stanford-mrouted.json | 17 +- docs/stanford-pvrg.LICENSE | 10 + docs/stanford-pvrg.html | 3 +- docs/stanford-pvrg.json | 10 +- docs/statewizard.LICENSE | 24 +- docs/statewizard.html | 6 +- docs/statewizard.json | 21 +- docs/static/jquery.mark-8.11.1.min.js.ABOUT | 5 + docs/stax.LICENSE | 16 + docs/stax.html | 3 +- docs/stax.json | 19 +- docs/stlport-2000.LICENSE | 20 + docs/stlport-2000.html | 3 +- docs/stlport-2000.json | 22 +- docs/stlport-4.5.LICENSE | 10 + docs/stlport-4.5.html | 3 +- docs/stlport-4.5.json | 10 +- docs/stmicroelectronics-centrallabs.LICENSE | 12 + docs/stmicroelectronics-centrallabs.html | 3 +- docs/stmicroelectronics-centrallabs.json | 13 +- .../stmicroelectronics-linux-firmware.LICENSE | 14 + docs/stmicroelectronics-linux-firmware.html | 3 +- docs/stmicroelectronics-linux-firmware.json | 16 +- docs/stream-benchmark.LICENSE | 18 + docs/stream-benchmark.html | 3 +- docs/stream-benchmark.json | 22 +- docs/strongswan-exception.LICENSE | 12 +- docs/strongswan-exception.html | 6 +- docs/strongswan-exception.json | 10 +- docs/stu-nicholls.LICENSE | 17 + docs/stu-nicholls.html | 3 +- docs/stu-nicholls.json | 21 +- docs/subcommander-exception-2.0-plus.LICENSE | 39 +- docs/subcommander-exception-2.0-plus.html | 6 +- docs/subcommander-exception-2.0-plus.json | 18 +- docs/sugarcrm-1.1.3.LICENSE | 23 + docs/sugarcrm-1.1.3.html | 3 +- docs/sugarcrm-1.1.3.json | 28 +- docs/sun-bcl-11-06.LICENSE | 11 + docs/sun-bcl-11-06.html | 3 +- docs/sun-bcl-11-06.json | 12 +- docs/sun-bcl-11-07.LICENSE | 11 + docs/sun-bcl-11-07.html | 3 +- docs/sun-bcl-11-07.json | 12 +- docs/sun-bcl-11-08.LICENSE | 15 + docs/sun-bcl-11-08.html | 3 +- docs/sun-bcl-11-08.json | 17 +- docs/sun-bcl-j2re-1.2.x.LICENSE | 11 + docs/sun-bcl-j2re-1.2.x.html | 3 +- docs/sun-bcl-j2re-1.2.x.json | 12 +- docs/sun-bcl-j2re-1.4.2.LICENSE | 11 + docs/sun-bcl-j2re-1.4.2.html | 3 +- docs/sun-bcl-j2re-1.4.2.json | 12 +- docs/sun-bcl-j2re-1.4.x.LICENSE | 12 + docs/sun-bcl-j2re-1.4.x.html | 3 +- docs/sun-bcl-j2re-1.4.x.json | 13 +- docs/sun-bcl-j2re-5.0.LICENSE | 14 + docs/sun-bcl-j2re-5.0.html | 3 +- docs/sun-bcl-j2re-5.0.json | 16 +- docs/sun-bcl-java-servlet-imp-2.1.1.LICENSE | 11 + docs/sun-bcl-java-servlet-imp-2.1.1.html | 3 +- docs/sun-bcl-java-servlet-imp-2.1.1.json | 12 +- docs/sun-bcl-javahelp.LICENSE | 12 + docs/sun-bcl-javahelp.html | 3 +- docs/sun-bcl-javahelp.json | 13 +- docs/sun-bcl-jimi-sdk.LICENSE | 11 + docs/sun-bcl-jimi-sdk.html | 3 +- docs/sun-bcl-jimi-sdk.json | 12 +- docs/sun-bcl-jre6.LICENSE | 12 + docs/sun-bcl-jre6.html | 3 +- docs/sun-bcl-jre6.json | 13 +- docs/sun-bcl-jsmq.LICENSE | 11 + docs/sun-bcl-jsmq.html | 3 +- docs/sun-bcl-jsmq.json | 12 +- docs/sun-bcl-opendmk.LICENSE | 10 + docs/sun-bcl-opendmk.html | 3 +- docs/sun-bcl-opendmk.json | 10 +- docs/sun-bcl-openjdk.LICENSE | 16 +- docs/sun-bcl-openjdk.html | 6 +- docs/sun-bcl-openjdk.json | 11 +- docs/sun-bcl-sdk-1.3.LICENSE | 11 + docs/sun-bcl-sdk-1.3.html | 3 +- docs/sun-bcl-sdk-1.3.json | 12 +- docs/sun-bcl-sdk-1.4.2.LICENSE | 15 + docs/sun-bcl-sdk-1.4.2.html | 3 +- docs/sun-bcl-sdk-1.4.2.json | 18 +- docs/sun-bcl-sdk-5.0.LICENSE | 18 + docs/sun-bcl-sdk-5.0.html | 3 +- docs/sun-bcl-sdk-5.0.json | 22 +- docs/sun-bcl-sdk-6.0.LICENSE | 16 + docs/sun-bcl-sdk-6.0.html | 3 +- docs/sun-bcl-sdk-6.0.json | 19 +- docs/sun-bcl-web-start.LICENSE | 11 + docs/sun-bcl-web-start.html | 3 +- docs/sun-bcl-web-start.json | 12 +- docs/sun-bsd-extra.LICENSE | 10 + docs/sun-bsd-extra.html | 3 +- docs/sun-bsd-extra.json | 10 +- docs/sun-bsd-no-nuclear.LICENSE | 13 + docs/sun-bsd-no-nuclear.html | 3 +- docs/sun-bsd-no-nuclear.json | 14 +- docs/sun-communications-api.LICENSE | 15 + docs/sun-communications-api.html | 3 +- docs/sun-communications-api.json | 18 +- docs/sun-ejb-spec-2.1.LICENSE | 15 + docs/sun-ejb-spec-2.1.html | 3 +- docs/sun-ejb-spec-2.1.json | 16 +- docs/sun-ejb-spec-3.0.LICENSE | 16 +- docs/sun-ejb-spec-3.0.html | 6 +- docs/sun-ejb-spec-3.0.json | 15 +- docs/sun-entitlement-03-15.LICENSE | 13 + docs/sun-entitlement-03-15.html | 3 +- docs/sun-entitlement-03-15.json | 14 +- docs/sun-entitlement-jaf.LICENSE | 12 + docs/sun-entitlement-jaf.html | 3 +- docs/sun-entitlement-jaf.json | 13 +- docs/sun-glassfish.LICENSE | 15 + docs/sun-glassfish.html | 3 +- docs/sun-glassfish.json | 17 +- docs/sun-iiop.LICENSE | 11 +- docs/sun-iiop.html | 6 +- docs/sun-iiop.json | 9 +- docs/sun-java-transaction-api.LICENSE | 12 + docs/sun-java-transaction-api.html | 3 +- docs/sun-java-transaction-api.json | 13 +- ...sun-java-web-services-dev-pack-1.6.LICENSE | 14 + docs/sun-java-web-services-dev-pack-1.6.html | 3 +- docs/sun-java-web-services-dev-pack-1.6.json | 16 +- docs/sun-javamail.LICENSE | 11 + docs/sun-javamail.html | 3 +- docs/sun-javamail.json | 12 +- docs/sun-jsr-spec-04-2006.LICENSE | 15 + docs/sun-jsr-spec-04-2006.html | 3 +- docs/sun-jsr-spec-04-2006.json | 16 +- docs/sun-jta-spec-1.0.1.LICENSE | 17 + docs/sun-jta-spec-1.0.1.html | 3 +- docs/sun-jta-spec-1.0.1.json | 19 +- docs/sun-jta-spec-1.0.1b.LICENSE | 17 +- docs/sun-jta-spec-1.0.1b.html | 6 +- docs/sun-jta-spec-1.0.1b.json | 17 +- docs/sun-no-high-risk-activities.LICENSE | 13 + docs/sun-no-high-risk-activities.html | 3 +- docs/sun-no-high-risk-activities.json | 14 +- docs/sun-project-x.LICENSE | 9 + docs/sun-project-x.html | 3 +- docs/sun-project-x.json | 9 +- docs/sun-prop-non-commercial.LICENSE | 11 +- docs/sun-prop-non-commercial.html | 6 +- docs/sun-prop-non-commercial.json | 9 +- docs/sun-proprietary-jdk.LICENSE | 10 + docs/sun-proprietary-jdk.html | 5 +- docs/sun-proprietary-jdk.json | 9 +- docs/sun-rpc.LICENSE | 12 + docs/sun-rpc.html | 3 +- docs/sun-rpc.json | 13 +- docs/sun-sdk-spec-1.1.LICENSE | 15 + docs/sun-sdk-spec-1.1.html | 3 +- docs/sun-sdk-spec-1.1.json | 16 +- docs/sun-sissl-1.0.LICENSE | 13 + docs/sun-sissl-1.0.html | 3 +- docs/sun-sissl-1.0.json | 15 +- docs/sun-sissl-1.1.LICENSE | 19 + docs/sun-sissl-1.1.html | 3 +- docs/sun-sissl-1.1.json | 22 +- docs/sun-sissl-1.2.LICENSE | 17 + docs/sun-sissl-1.2.html | 3 +- docs/sun-sissl-1.2.json | 20 +- docs/sun-source.LICENSE | 19 +- docs/sun-source.html | 6 +- docs/sun-source.json | 16 +- docs/sun-ssscfr-1.1.LICENSE | 14 +- docs/sun-ssscfr-1.1.html | 6 +- docs/sun-ssscfr-1.1.json | 13 +- docs/sunpro.LICENSE | 11 +- docs/sunpro.html | 6 +- docs/sunpro.json | 9 +- docs/sunsoft.LICENSE | 13 +- docs/sunsoft.html | 7 +- docs/sunsoft.json | 10 +- docs/supervisor.LICENSE | 33 + docs/supervisor.html | 3 +- docs/supervisor.json | 38 +- docs/sustainable-use-1.0.LICENSE | 13 + docs/sustainable-use-1.0.html | 3 +- docs/sustainable-use-1.0.json | 14 +- docs/svndiff.LICENSE | 10 + docs/svndiff.html | 3 +- docs/svndiff.json | 10 +- docs/swig.LICENSE | 19 +- docs/swig.html | 6 +- docs/swig.json | 17 +- docs/swl.LICENSE | 20 + docs/swl.html | 3 +- docs/swl.json | 17 +- docs/sybase.LICENSE | 24 + docs/sybase.html | 3 +- docs/sybase.json | 29 +- docs/symphonysoft.LICENSE | 18 +- docs/symphonysoft.html | 6 +- docs/symphonysoft.json | 19 +- docs/synopsys-attribution.LICENSE | 9 + docs/synopsys-attribution.html | 3 +- docs/synopsys-attribution.json | 9 +- docs/synopsys-mit.LICENSE | 12 +- docs/synopsys-mit.html | 6 +- docs/synopsys-mit.json | 10 +- docs/syntext-serna-exception-1.0.LICENSE | 108 + docs/syntext-serna-exception-1.0.html | 3 +- docs/syntext-serna-exception-1.0.json | 16 +- docs/synthesis-toolkit.LICENSE | 14 + docs/synthesis-toolkit.html | 3 +- docs/synthesis-toolkit.json | 12 +- docs/takao-abe.LICENSE | 9 + docs/takao-abe.html | 3 +- docs/takao-abe.json | 9 +- docs/takuya-ooura.LICENSE | 10 + docs/takuya-ooura.html | 5 +- docs/takuya-ooura.json | 10 +- docs/takuya-ooura.yml | 2 +- docs/taligent-jdk.LICENSE | 11 + docs/taligent-jdk.html | 3 +- docs/taligent-jdk.json | 11 +- docs/tanuki-community-sla-1.0.LICENSE | 19 + docs/tanuki-community-sla-1.0.html | 3 +- docs/tanuki-community-sla-1.0.json | 21 +- docs/tanuki-community-sla-1.1.LICENSE | 21 + docs/tanuki-community-sla-1.1.html | 3 +- docs/tanuki-community-sla-1.1.json | 24 +- docs/tanuki-community-sla-1.2.LICENSE | 21 + docs/tanuki-community-sla-1.2.html | 3 +- docs/tanuki-community-sla-1.2.json | 24 +- docs/tanuki-community-sla-1.3.LICENSE | 24 + docs/tanuki-community-sla-1.3.html | 3 +- docs/tanuki-community-sla-1.3.json | 28 +- docs/tanuki-development.LICENSE | 17 + docs/tanuki-development.html | 3 +- docs/tanuki-development.json | 20 +- docs/tanuki-maintenance.LICENSE | 12 + docs/tanuki-maintenance.html | 3 +- docs/tanuki-maintenance.json | 13 +- docs/tapr-ohl-1.0.LICENSE | 18 + docs/tapr-ohl-1.0.html | 3 +- docs/tapr-ohl-1.0.json | 22 +- docs/tatu-ylonen.LICENSE | 15 +- docs/tatu-ylonen.html | 6 +- docs/tatu-ylonen.json | 14 +- docs/tcl.LICENSE | 21 + docs/tcl.html | 3 +- docs/tcl.json | 23 +- docs/tcp-wrappers.LICENSE | 16 + docs/tcp-wrappers.html | 3 +- docs/tcp-wrappers.json | 19 +- docs/teamdev-services.LICENSE | 19 + docs/teamdev-services.html | 3 +- docs/teamdev-services.json | 21 +- docs/tekhvc.LICENSE | 11 + docs/tekhvc.html | 3 +- docs/tekhvc.json | 12 +- docs/telerik-eula.LICENSE | 16 + docs/telerik-eula.html | 3 +- docs/telerik-eula.json | 17 +- docs/tenable-nessus.LICENSE | 19 + docs/tenable-nessus.html | 3 +- docs/tenable-nessus.json | 23 +- docs/term-readkey.LICENSE | 9 + docs/term-readkey.html | 3 +- docs/term-readkey.json | 9 +- docs/tested-software.LICENSE | 11 +- docs/tested-software.html | 6 +- docs/tested-software.json | 9 +- docs/tex-exception.LICENSE | 12 +- docs/tex-exception.html | 6 +- docs/tex-exception.json | 10 +- docs/tex-live.LICENSE | 22 + docs/tex-live.html | 3 +- docs/tex-live.json | 24 +- docs/tfl.LICENSE | 15 + docs/tfl.html | 3 +- docs/tfl.json | 17 +- docs/tgppl-1.0.LICENSE | 17 + docs/tgppl-1.0.html | 3 +- docs/tgppl-1.0.json | 20 +- docs/things-i-made-public-license.LICENSE | 19 +- docs/things-i-made-public-license.html | 6 +- docs/things-i-made-public-license.json | 20 +- docs/thomas-bandt.LICENSE | 12 +- docs/thomas-bandt.html | 6 +- docs/thomas-bandt.json | 10 +- docs/thor-pl.LICENSE | 10 + docs/thor-pl.html | 3 +- docs/thor-pl.json | 10 +- docs/ti-broadband-apps.LICENSE | 11 + docs/ti-broadband-apps.html | 3 +- docs/ti-broadband-apps.json | 12 +- docs/ti-linux-firmware.LICENSE | 14 + docs/ti-linux-firmware.html | 3 +- docs/ti-linux-firmware.json | 15 +- docs/ti-restricted.LICENSE | 12 +- docs/ti-restricted.html | 6 +- docs/ti-restricted.json | 10 +- docs/tidy.LICENSE | 12 +- docs/tidy.html | 6 +- docs/tidy.json | 10 +- docs/tiger-crypto.LICENSE | 14 + docs/tiger-crypto.html | 3 +- docs/tiger-crypto.json | 16 +- docs/tigra-calendar-3.2.LICENSE | 10 + docs/tigra-calendar-3.2.html | 3 +- docs/tigra-calendar-3.2.json | 10 +- docs/tigra-calendar-4.0.LICENSE | 12 + docs/tigra-calendar-4.0.html | 3 +- docs/tigra-calendar-4.0.json | 13 +- docs/tim-janik-2003.LICENSE | 10 + docs/tim-janik-2003.html | 3 +- docs/tim-janik-2003.json | 10 +- docs/timestamp-picker.LICENSE | 9 + docs/timestamp-picker.html | 3 +- docs/timestamp-picker.json | 9 +- docs/tizen-sdk.LICENSE | 10 + docs/tizen-sdk.html | 3 +- docs/tizen-sdk.json | 10 +- docs/tmate.LICENSE | 18 + docs/tmate.html | 3 +- docs/tmate.json | 22 +- docs/torque-1.1.LICENSE | 39 + docs/torque-1.1.html | 3 +- docs/torque-1.1.json | 31 +- docs/tosl.LICENSE | 29 +- docs/tosl.html | 6 +- docs/tosl.json | 17 +- docs/tpl-1.0.LICENSE | 17 + docs/tpl-1.0.html | 3 +- docs/tpl-1.0.json | 20 +- docs/tpl-2.0.LICENSE | 440 + docs/tpl-2.0.html | 612 + docs/tpl-2.0.json | 23 + docs/tpl-2.0.yml | 27 + docs/trademark-notice.LICENSE | 9 + docs/trademark-notice.html | 3 +- docs/trademark-notice.json | 10 +- docs/trca-odl-1.0.LICENSE | 13 +- docs/trca-odl-1.0.html | 9 +- docs/trca-odl-1.0.json | 13 +- docs/treeview-developer.LICENSE | 19 + docs/treeview-developer.html | 3 +- docs/treeview-developer.json | 23 +- docs/treeview-distributor.LICENSE | 19 + docs/treeview-distributor.html | 3 +- docs/treeview-distributor.json | 23 +- docs/triptracker.LICENSE | 12 + docs/triptracker.html | 3 +- docs/triptracker.json | 13 +- docs/trolltech-gpl-exception-1.0.LICENSE | 14 +- docs/trolltech-gpl-exception-1.0.html | 6 +- docs/trolltech-gpl-exception-1.0.json | 12 +- docs/trolltech-gpl-exception-1.1.LICENSE | 12 + docs/trolltech-gpl-exception-1.1.html | 3 +- docs/trolltech-gpl-exception-1.1.json | 12 +- docs/trolltech-gpl-exception-1.2.LICENSE | 14 +- docs/trolltech-gpl-exception-1.2.html | 11 +- docs/trolltech-gpl-exception-1.2.json | 11 +- docs/truecrypt-3.1.LICENSE | 26 +- docs/truecrypt-3.1.html | 6 +- docs/truecrypt-3.1.json | 27 +- docs/tsl-2018.LICENSE | 16 + docs/tsl-2018.html | 3 +- docs/tsl-2018.json | 18 +- docs/tsl-2020.LICENSE | 13 + docs/tsl-2020.html | 3 +- docs/tsl-2020.json | 14 +- docs/tso-license.LICENSE | 14 +- docs/tso-license.html | 7 +- docs/tso-license.json | 10 +- docs/ttcl.LICENSE | 15 + docs/ttcl.html | 3 +- docs/ttcl.json | 17 +- docs/ttf2pt1.LICENSE | 11 + docs/ttf2pt1.html | 3 +- docs/ttf2pt1.json | 11 +- docs/ttyp0.LICENSE | 15 +- docs/ttyp0.html | 6 +- docs/ttyp0.json | 14 +- docs/tu-berlin-2.0.LICENSE | 12 + docs/tu-berlin-2.0.html | 3 +- docs/tu-berlin-2.0.json | 13 +- docs/tu-berlin.LICENSE | 15 +- docs/tu-berlin.html | 6 +- docs/tu-berlin.json | 14 +- docs/tumbolia.LICENSE | 19 + docs/tumbolia.html | 3 +- docs/tumbolia.json | 23 +- docs/twisted-snmp.LICENSE | 11 + docs/twisted-snmp.html | 3 +- docs/twisted-snmp.json | 12 +- docs/txl-10.5.LICENSE | 17 + docs/txl-10.5.html | 3 +- docs/txl-10.5.json | 20 +- docs/u-boot-exception-2.0.LICENSE | 44 + docs/u-boot-exception-2.0.html | 3 +- docs/u-boot-exception-2.0.json | 23 +- docs/ubc.LICENSE | 14 +- docs/ubc.html | 6 +- docs/ubc.json | 13 +- docs/ubdl.LICENSE | 16 +- docs/ubdl.html | 6 +- docs/ubdl.json | 15 +- docs/ubuntu-font-1.0.LICENSE | 21 +- docs/ubuntu-font-1.0.html | 6 +- docs/ubuntu-font-1.0.json | 19 +- docs/ucl-1.0.LICENSE | 24 +- docs/ucl-1.0.html | 6 +- docs/ucl-1.0.json | 26 +- docs/unbuntu-font-1.0.LICENSE | 15 + docs/unbuntu-font-1.0.html | 3 +- docs/unbuntu-font-1.0.json | 18 +- docs/unicode-data-software.LICENSE | 15 +- docs/unicode-data-software.html | 6 +- docs/unicode-data-software.json | 14 +- docs/unicode-dfs-2015.LICENSE | 22 + docs/unicode-dfs-2015.html | 3 +- docs/unicode-dfs-2015.json | 26 +- docs/unicode-dfs-2016.LICENSE | 25 + docs/unicode-dfs-2016.html | 3 +- docs/unicode-dfs-2016.json | 29 +- docs/unicode-icu-58.LICENSE | 51 + docs/unicode-icu-58.html | 3 +- docs/unicode-icu-58.json | 53 +- docs/unicode-mappings.LICENSE | 9 + docs/unicode-mappings.html | 3 +- docs/unicode-mappings.json | 9 +- docs/unicode-tou.LICENSE | 14 + docs/unicode-tou.html | 3 +- docs/unicode-tou.json | 16 +- docs/unicode.LICENSE | 23 + docs/unicode.html | 3 +- docs/unicode.json | 27 +- docs/universal-foss-exception-1.0.LICENSE | 15 +- docs/universal-foss-exception-1.0.html | 6 +- docs/universal-foss-exception-1.0.json | 14 +- docs/unknown-license-reference.LICENSE | 12 + docs/unknown-license-reference.html | 3 +- docs/unknown-license-reference.json | 11 +- docs/unknown-spdx.LICENSE | 10 + docs/unknown-spdx.html | 3 +- docs/unknown-spdx.json | 11 +- docs/unknown.LICENSE | 11 + docs/unknown.html | 3 +- docs/unknown.json | 11 +- docs/unlicense.LICENSE | 16 + docs/unlicense.html | 3 +- docs/unlicense.json | 18 +- docs/unlimited-binary-linking.LICENSE | 13 +- docs/unlimited-binary-linking.html | 13 +- docs/unlimited-binary-linking.json | 11 +- docs/unlimited-binary-linking.yml | 1 + docs/unlimited-binary-use-exception.LICENSE | 13 + docs/unlimited-binary-use-exception.html | 152 + docs/unlimited-binary-use-exception.json | 9 + docs/unlimited-binary-use-exception.yml | 7 + docs/unlimited-linking-exception-gpl.LICENSE | 13 + docs/unlimited-linking-exception-gpl.html | 3 +- docs/unlimited-linking-exception-gpl.json | 14 +- docs/unlimited-linking-exception-lgpl.LICENSE | 40 + docs/unlimited-linking-exception-lgpl.html | 3 +- docs/unlimited-linking-exception-lgpl.json | 18 +- docs/unpbook.LICENSE | 10 + docs/unpbook.html | 3 +- docs/unpbook.json | 10 +- docs/unpublished-source.LICENSE | 10 + docs/unpublished-source.html | 3 +- docs/unpublished-source.json | 10 +- docs/unrar.LICENSE | 11 + docs/unrar.html | 3 +- docs/unrar.json | 11 +- docs/unsplash.LICENSE | 11 + docs/unsplash.html | 3 +- docs/unsplash.json | 11 +- docs/uofu-rfpl.LICENSE | 18 + docs/uofu-rfpl.html | 3 +- docs/uofu-rfpl.json | 22 +- docs/uoi-ncsa.LICENSE | 23 +- docs/uoi-ncsa.html | 6 +- docs/uoi-ncsa.json | 23 +- docs/upl-1.0.LICENSE | 16 + docs/upl-1.0.html | 3 +- docs/upl-1.0.json | 17 +- docs/upx-exception-2.0-plus.LICENSE | 97 + docs/upx-exception-2.0-plus.html | 3 +- docs/upx-exception-2.0-plus.json | 20 +- docs/us-govt-public-domain.LICENSE | 17 + docs/us-govt-public-domain.html | 3 +- docs/us-govt-public-domain.json | 16 +- docs/us-govt-unlimited-rights.LICENSE | 14 + docs/us-govt-unlimited-rights.html | 3 +- docs/us-govt-unlimited-rights.json | 16 +- docs/usrobotics-permissive.LICENSE | 28 + docs/usrobotics-permissive.html | 3 +- docs/usrobotics-permissive.json | 11 +- docs/utopia.LICENSE | 19 + docs/utopia.html | 3 +- docs/utopia.json | 23 +- docs/vbaccelerator.LICENSE | 12 +- docs/vbaccelerator.html | 6 +- docs/vbaccelerator.json | 10 +- docs/vcalendar.LICENSE | 12 +- docs/vcalendar.html | 5 +- docs/vcalendar.json | 10 +- docs/verbatim-manual.LICENSE | 20 +- docs/verbatim-manual.html | 6 +- docs/verbatim-manual.json | 21 +- docs/verisign.LICENSE | 19 +- docs/verisign.html | 6 +- docs/verisign.json | 21 +- docs/vhfpl-1.1.LICENSE | 20 + docs/vhfpl-1.1.html | 3 +- docs/vhfpl-1.1.json | 22 +- docs/vic-metcalfe-pd.LICENSE | 18 +- docs/vic-metcalfe-pd.html | 6 +- docs/vic-metcalfe-pd.json | 19 +- docs/vicomsoft-software.LICENSE | 10 + docs/vicomsoft-software.html | 3 +- docs/vicomsoft-software.json | 10 +- docs/viewflow-agpl-3.0-exception.LICENSE | 17 + docs/viewflow-agpl-3.0-exception.html | 3 +- docs/viewflow-agpl-3.0-exception.json | 20 +- docs/vim.LICENSE | 17 + docs/vim.html | 3 +- docs/vim.json | 20 +- docs/visual-idiot.LICENSE | 12 +- docs/visual-idiot.html | 6 +- docs/visual-idiot.json | 10 +- docs/visual-numerics.LICENSE | 11 + docs/visual-numerics.html | 3 +- docs/visual-numerics.json | 12 +- docs/vita-nuova-liberal.LICENSE | 17 + docs/vita-nuova-liberal.html | 3 +- docs/vita-nuova-liberal.json | 20 +- docs/vitesse-prop.LICENSE | 9 + docs/vitesse-prop.html | 3 +- docs/vitesse-prop.json | 9 +- docs/vixie-cron.LICENSE | 11 + docs/vixie-cron.html | 3 +- docs/vixie-cron.json | 12 +- docs/vnc-viewer-ios.LICENSE | 12 + docs/vnc-viewer-ios.html | 3 +- docs/vnc-viewer-ios.json | 13 +- docs/volatility-vsl-v1.0.LICENSE | 18 + docs/volatility-vsl-v1.0.html | 3 +- docs/volatility-vsl-v1.0.json | 22 +- docs/vostrom.LICENSE | 18 + docs/vostrom.html | 3 +- docs/vostrom.json | 22 +- docs/vpl-1.1.LICENSE | 19 + docs/vpl-1.1.html | 3 +- docs/vpl-1.1.json | 23 +- docs/vpl-1.2.LICENSE | 17 + docs/vpl-1.2.html | 3 +- docs/vpl-1.2.json | 21 +- docs/vs10x-code-map.LICENSE | 10 + docs/vs10x-code-map.html | 3 +- docs/vs10x-code-map.json | 10 +- docs/vsl-1.0.LICENSE | 27 + docs/vsl-1.0.html | 3 +- docs/vsl-1.0.json | 33 +- docs/vuforia-2013-07-29.LICENSE | 17 + docs/vuforia-2013-07-29.html | 3 +- docs/vuforia-2013-07-29.json | 19 +- docs/w3c-docs-19990405.LICENSE | 20 + docs/w3c-docs-19990405.html | 3 +- docs/w3c-docs-19990405.json | 22 +- docs/w3c-docs-20021231.LICENSE | 18 + docs/w3c-docs-20021231.html | 3 +- docs/w3c-docs-20021231.json | 19 +- docs/w3c-documentation.LICENSE | 22 + docs/w3c-documentation.html | 3 +- docs/w3c-documentation.json | 21 +- docs/w3c-software-19980720.LICENSE | 23 + docs/w3c-software-19980720.html | 3 +- docs/w3c-software-19980720.json | 24 +- docs/w3c-software-20021231.LICENSE | 72 + docs/w3c-software-20021231.html | 66 +- docs/w3c-software-20021231.json | 10 +- docs/w3c-software-doc-20150513.LICENSE | 25 +- docs/w3c-software-doc-20150513.html | 6 +- docs/w3c-software-doc-20150513.json | 17 +- docs/w3c-test-suite.LICENSE | 21 + docs/w3c-test-suite.html | 3 +- docs/w3c-test-suite.json | 26 +- docs/w3c.LICENSE | 21 + docs/w3c.html | 3 +- docs/w3c.json | 21 +- docs/warranty-disclaimer.LICENSE | 12 + docs/warranty-disclaimer.html | 3 +- docs/warranty-disclaimer.json | 11 +- docs/waterfall-feed-parser.LICENSE | 10 + docs/waterfall-feed-parser.html | 3 +- docs/waterfall-feed-parser.json | 10 +- docs/westhawk.LICENSE | 12 + docs/westhawk.html | 3 +- docs/westhawk.json | 13 +- docs/whistle.LICENSE | 11 +- docs/whistle.html | 6 +- docs/whistle.json | 9 +- docs/whitecat.LICENSE | 10 + docs/whitecat.html | 3 +- docs/whitecat.json | 10 +- docs/wide-license.LICENSE | 13 +- docs/wide-license.html | 6 +- docs/wide-license.json | 12 +- docs/wifi-alliance.LICENSE | 11 + docs/wifi-alliance.html | 3 +- docs/wifi-alliance.json | 12 +- docs/william-alexander.LICENSE | 14 + docs/william-alexander.html | 3 +- docs/william-alexander.json | 16 +- docs/wince-50-shared-source.LICENSE | 12 + docs/wince-50-shared-source.html | 3 +- docs/wince-50-shared-source.json | 13 +- docs/windriver-commercial.LICENSE | 12 + docs/windriver-commercial.html | 3 +- docs/windriver-commercial.json | 13 +- docs/wingo.LICENSE | 21 +- docs/wingo.html | 6 +- docs/wingo.json | 23 +- docs/wink.LICENSE | 10 + docs/wink.html | 3 +- docs/wink.json | 10 +- docs/winzip-eula.LICENSE | 23 + docs/winzip-eula.html | 3 +- docs/winzip-eula.json | 28 +- docs/winzip-self-extractor.LICENSE | 10 + docs/winzip-self-extractor.html | 3 +- docs/winzip-self-extractor.json | 10 +- docs/wol.LICENSE | 12 + docs/wol.html | 3 +- docs/wol.json | 13 +- docs/woodruff-2002.LICENSE | 58 + docs/woodruff-2002.html | 204 + docs/woodruff-2002.json | 12 + docs/woodruff-2002.yml | 9 + docs/wordnet.LICENSE | 18 +- docs/wordnet.html | 5 +- docs/wordnet.json | 19 +- docs/wrox-download.LICENSE | 11 + docs/wrox-download.html | 3 +- docs/wrox-download.json | 11 +- docs/wrox.LICENSE | 19 + docs/wrox.html | 3 +- docs/wrox.json | 23 +- docs/ws-addressing-spec.LICENSE | 15 + docs/ws-addressing-spec.html | 3 +- docs/ws-addressing-spec.json | 15 +- docs/ws-policy-specification.LICENSE | 12 + docs/ws-policy-specification.html | 3 +- docs/ws-policy-specification.json | 13 +- docs/ws-trust-specification.LICENSE | 12 + docs/ws-trust-specification.html | 3 +- docs/ws-trust-specification.json | 13 +- docs/wsuipa.LICENSE | 13 + docs/wsuipa.html | 3 +- docs/wsuipa.json | 11 +- docs/wtfnmfpl-1.0.LICENSE | 29 +- docs/wtfnmfpl-1.0.html | 6 +- docs/wtfnmfpl-1.0.json | 23 +- docs/wtfpl-1.0.LICENSE | 30 +- docs/wtfpl-1.0.html | 6 +- docs/wtfpl-1.0.json | 23 +- docs/wtfpl-2.0.LICENSE | 19 + docs/wtfpl-2.0.html | 3 +- docs/wtfpl-2.0.json | 23 +- docs/wthpl-1.0.LICENSE | 14 +- docs/wthpl-1.0.html | 6 +- docs/wthpl-1.0.json | 12 +- docs/wxwidgets.LICENSE | 18 + docs/wxwidgets.html | 3 +- docs/wxwidgets.json | 22 +- docs/wxwindows-exception-3.1.LICENSE | 57 +- docs/wxwindows-exception-3.1.html | 6 +- docs/wxwindows-exception-3.1.json | 18 +- docs/wxwindows-r-3.0.LICENSE | 17 + docs/wxwindows-r-3.0.html | 3 +- docs/wxwindows-r-3.0.json | 20 +- docs/wxwindows-u-3.0.LICENSE | 18 + docs/wxwindows-u-3.0.html | 3 +- docs/wxwindows-u-3.0.json | 21 +- docs/wxwindows.LICENSE | 71 + docs/wxwindows.html | 55 +- docs/wxwindows.json | 21 +- docs/x11-acer.LICENSE | 12 + docs/x11-acer.html | 3 +- docs/x11-acer.json | 13 +- docs/x11-adobe-dec.LICENSE | 10 + docs/x11-adobe-dec.html | 3 +- docs/x11-adobe-dec.json | 10 +- docs/x11-adobe.LICENSE | 12 + docs/x11-adobe.html | 3 +- docs/x11-adobe.json | 13 +- docs/x11-bitstream.LICENSE | 14 + docs/x11-bitstream.html | 3 +- docs/x11-bitstream.json | 16 +- docs/x11-dec1.LICENSE | 13 + docs/x11-dec1.html | 3 +- docs/x11-dec1.json | 14 +- docs/x11-dec2.LICENSE | 13 + docs/x11-dec2.html | 3 +- docs/x11-dec2.json | 14 +- docs/x11-doc.LICENSE | 16 + docs/x11-doc.html | 3 +- docs/x11-doc.json | 18 +- docs/x11-dsc.LICENSE | 16 + docs/x11-dsc.html | 3 +- docs/x11-dsc.json | 18 +- docs/x11-fsf.LICENSE | 15 + docs/x11-fsf.html | 3 +- docs/x11-fsf.json | 17 +- docs/x11-hanson.LICENSE | 13 +- docs/x11-hanson.html | 6 +- docs/x11-hanson.json | 11 +- docs/x11-ibm.LICENSE | 13 + docs/x11-ibm.html | 3 +- docs/x11-ibm.json | 14 +- docs/x11-keith-packard.LICENSE | 12 + docs/x11-keith-packard.html | 3 +- docs/x11-keith-packard.json | 13 +- docs/x11-lucent-variant.LICENSE | 10 + docs/x11-lucent-variant.html | 3 +- docs/x11-lucent-variant.json | 10 +- docs/x11-lucent.LICENSE | 12 +- docs/x11-lucent.html | 6 +- docs/x11-lucent.json | 10 +- docs/x11-oar.LICENSE | 12 + docs/x11-oar.html | 3 +- docs/x11-oar.json | 13 +- docs/x11-opengl.LICENSE | 10 + docs/x11-opengl.html | 3 +- docs/x11-opengl.json | 10 +- docs/x11-opengroup.LICENSE | 20 + docs/x11-opengroup.html | 3 +- docs/x11-opengroup.json | 23 +- docs/x11-quarterdeck.LICENSE | 10 + docs/x11-quarterdeck.html | 3 +- docs/x11-quarterdeck.json | 10 +- docs/x11-r75.LICENSE | 19 +- docs/x11-r75.html | 6 +- docs/x11-r75.json | 16 +- docs/x11-realmode.LICENSE | 14 + docs/x11-realmode.html | 3 +- docs/x11-realmode.json | 15 +- docs/x11-sg.LICENSE | 13 + docs/x11-sg.html | 3 +- docs/x11-sg.json | 14 +- docs/x11-stanford.LICENSE | 12 + docs/x11-stanford.html | 3 +- docs/x11-stanford.json | 12 +- docs/x11-tektronix.LICENSE | 13 + docs/x11-tektronix.html | 3 +- docs/x11-tektronix.json | 14 +- docs/x11-tiff.LICENSE | 12 + docs/x11-tiff.html | 3 +- docs/x11-tiff.json | 13 +- docs/x11-x11r5.LICENSE | 13 + docs/x11-x11r5.html | 3 +- docs/x11-x11r5.json | 14 +- docs/x11-xconsortium-veillard.LICENSE | 17 + docs/x11-xconsortium-veillard.html | 3 +- docs/x11-xconsortium-veillard.json | 14 +- docs/x11-xconsortium.LICENSE | 15 + docs/x11-xconsortium.html | 3 +- docs/x11-xconsortium.json | 17 +- docs/x11-xconsortium_veillard.LICENSE | 14 + docs/x11-xconsortium_veillard.html | 3 +- docs/x11-xconsortium_veillard.json | 10 +- docs/x11.LICENSE | 17 + docs/x11.html | 3 +- docs/x11.json | 19 +- docs/x11r5-authors.LICENSE | 12 + docs/x11r5-authors.html | 3 +- docs/x11r5-authors.json | 13 +- docs/xceed-community-2021.LICENSE | 17 + docs/xceed-community-2021.html | 3 +- docs/xceed-community-2021.json | 20 +- docs/xenomai-gpl-exception.LICENSE | 11 + docs/xenomai-gpl-exception.html | 3 +- docs/xenomai-gpl-exception.json | 11 +- docs/xfree86-1.0.LICENSE | 13 + docs/xfree86-1.0.html | 3 +- docs/xfree86-1.0.json | 14 +- docs/xfree86-1.1.LICENSE | 18 + docs/xfree86-1.1.html | 3 +- docs/xfree86-1.1.json | 21 +- docs/xilinx-2016.LICENSE | 9 + docs/xilinx-2016.html | 3 +- docs/xilinx-2016.json | 9 +- docs/xinetd.LICENSE | 20 + docs/xinetd.html | 3 +- docs/xinetd.json | 23 +- docs/xming.LICENSE | 10 + docs/xming.html | 3 +- docs/xming.json | 10 +- docs/xmldb-1.0.LICENSE | 25 + docs/xmldb-1.0.html | 3 +- docs/xmldb-1.0.json | 32 +- docs/xnet.LICENSE | 20 + docs/xnet.html | 3 +- docs/xnet.json | 20 +- docs/xskat.LICENSE | 22 + docs/xskat.html | 3 +- docs/xskat.json | 11 +- docs/xxd.LICENSE | 10 + docs/xxd.html | 3 +- docs/xxd.json | 10 +- docs/yahoo-browserplus-eula.LICENSE | 16 + docs/yahoo-browserplus-eula.html | 3 +- docs/yahoo-browserplus-eula.json | 17 +- docs/yahoo-messenger-eula.LICENSE | 14 + docs/yahoo-messenger-eula.html | 3 +- docs/yahoo-messenger-eula.json | 15 +- docs/yale-cas.LICENSE | 12 + docs/yale-cas.html | 3 +- docs/yale-cas.json | 13 +- docs/yensdesign.LICENSE | 12 +- docs/yensdesign.html | 6 +- docs/yensdesign.json | 10 +- docs/yolo-1.0.LICENSE | 14 +- docs/yolo-1.0.html | 6 +- docs/yolo-1.0.json | 13 +- docs/yolo-2.0.LICENSE | 10 + docs/yolo-2.0.html | 3 +- docs/yolo-2.0.json | 10 +- docs/ypl-1.0.LICENSE | 12 + docs/ypl-1.0.html | 3 +- docs/ypl-1.0.json | 13 +- docs/ypl-1.1.LICENSE | 14 + docs/ypl-1.1.html | 3 +- docs/ypl-1.1.json | 16 +- docs/zapatec-calendar.LICENSE | 18 + docs/zapatec-calendar.html | 3 +- docs/zapatec-calendar.json | 22 +- docs/zed.LICENSE | 12 + docs/zed.html | 3 +- docs/zed.json | 13 +- docs/zend-2.0.LICENSE | 20 + docs/zend-2.0.html | 3 +- docs/zend-2.0.json | 25 +- docs/zeromq-exception-lgpl-3.0.LICENSE | 36 + docs/zeromq-exception-lgpl-3.0.html | 3 +- docs/zeromq-exception-lgpl-3.0.json | 15 +- docs/zeusbench.LICENSE | 11 +- docs/zeusbench.html | 6 +- docs/zeusbench.json | 9 +- docs/zhorn-stickies.LICENSE | 10 + docs/zhorn-stickies.html | 3 +- docs/zhorn-stickies.json | 10 +- docs/zimbra-1.3.LICENSE | 14 + docs/zimbra-1.3.html | 3 +- docs/zimbra-1.3.json | 16 +- docs/zimbra-1.4.LICENSE | 10 + docs/zimbra-1.4.html | 3 +- docs/zimbra-1.4.json | 10 +- docs/zipeg.LICENSE | 14 +- docs/zipeg.html | 6 +- docs/zipeg.json | 13 +- ...list5-geocode-duplication-addendum.LICENSE | 15 + ...ziplist5-geocode-duplication-addendum.html | 3 +- ...ziplist5-geocode-duplication-addendum.json | 17 +- ...plist5-geocode-end-user-enterprise.LICENSE | 15 + .../ziplist5-geocode-end-user-enterprise.html | 3 +- .../ziplist5-geocode-end-user-enterprise.json | 17 +- ...list5-geocode-end-user-workstation.LICENSE | 15 + ...ziplist5-geocode-end-user-workstation.html | 3 +- ...ziplist5-geocode-end-user-workstation.json | 17 +- docs/zlib-acknowledgement.LICENSE | 29 + docs/zlib-acknowledgement.html | 3 +- docs/zlib-acknowledgement.json | 28 +- docs/zlib.LICENSE | 22 +- docs/zlib.html | 6 +- docs/zlib.json | 22 +- docs/zpl-1.0.LICENSE | 23 +- docs/zpl-1.0.html | 8 +- docs/zpl-1.0.json | 24 +- docs/zpl-1.1.LICENSE | 23 + docs/zpl-1.1.html | 3 +- docs/zpl-1.1.json | 29 +- docs/zpl-2.0.LICENSE | 21 + docs/zpl-2.0.html | 3 +- docs/zpl-2.0.json | 24 +- docs/zpl-2.1.LICENSE | 17 + docs/zpl-2.1.html | 3 +- docs/zpl-2.1.json | 19 +- docs/zrythm-exception-agpl-3.0.LICENSE | 198 + docs/zrythm-exception-agpl-3.0.html | 385 + docs/zrythm-exception-agpl-3.0.json | 35 + docs/zrythm-exception-agpl-3.0.yml | 37 + docs/zsh.LICENSE | 17 + docs/zsh.html | 3 +- docs/zsh.json | 17 +- docs/zuora-software.LICENSE | 10 + docs/zuora-software.html | 3 +- docs/zuora-software.json | 10 +- docs/zveno-research.LICENSE | 11 + docs/zveno-research.html | 3 +- docs/zveno-research.json | 12 +- 6229 files changed, 289792 insertions(+), 11930 deletions(-) create mode 100644 docs/adcolony-tos-2022.LICENSE create mode 100644 docs/adcolony-tos-2022.html create mode 100644 docs/adcolony-tos-2022.json create mode 100644 docs/adcolony-tos-2022.yml create mode 100644 docs/aswf-digital-assets-1.0.LICENSE create mode 100644 docs/aswf-digital-assets-1.0.html create mode 100644 docs/aswf-digital-assets-1.0.json create mode 100644 docs/aswf-digital-assets-1.0.yml create mode 100644 docs/aswf-digital-assets-1.1.LICENSE create mode 100644 docs/aswf-digital-assets-1.1.html create mode 100644 docs/aswf-digital-assets-1.1.json create mode 100644 docs/aswf-digital-assets-1.1.yml create mode 100644 docs/autodesk-3d-sft-3.0.LICENSE create mode 100644 docs/autodesk-3d-sft-3.0.html create mode 100644 docs/autodesk-3d-sft-3.0.json create mode 100644 docs/autodesk-3d-sft-3.0.yml create mode 100644 docs/beri-hw-sw-1.0.LICENSE create mode 100644 docs/beri-hw-sw-1.0.html create mode 100644 docs/beri-hw-sw-1.0.json create mode 100644 docs/beri-hw-sw-1.0.yml create mode 100644 docs/bigscience-rail-1.0.LICENSE create mode 100644 docs/bigscience-rail-1.0.html create mode 100644 docs/bigscience-rail-1.0.json create mode 100644 docs/bigscience-rail-1.0.yml create mode 100644 docs/boutell-libgd-2021.LICENSE create mode 100644 docs/boutell-libgd-2021.html create mode 100644 docs/boutell-libgd-2021.json create mode 100644 docs/boutell-libgd-2021.yml create mode 100644 docs/brankas-open-license-1.0.LICENSE create mode 100644 docs/brankas-open-license-1.0.html create mode 100644 docs/brankas-open-license-1.0.json create mode 100644 docs/brankas-open-license-1.0.yml create mode 100644 docs/broadcom-unmodified-exception.LICENSE create mode 100644 docs/broadcom-unmodified-exception.html create mode 100644 docs/broadcom-unmodified-exception.json create mode 100644 docs/broadcom-unmodified-exception.yml create mode 100644 docs/cc-by-3.0-igo.LICENSE create mode 100644 docs/cc-by-3.0-igo.html create mode 100644 docs/cc-by-3.0-igo.json create mode 100644 docs/cc-by-3.0-igo.yml create mode 100644 docs/checkmk.LICENSE create mode 100644 docs/checkmk.html create mode 100644 docs/checkmk.json create mode 100644 docs/checkmk.yml create mode 100644 docs/clips-2017.LICENSE create mode 100644 docs/clips-2017.html create mode 100644 docs/clips-2017.json create mode 100644 docs/clips-2017.yml create mode 100644 docs/dmtf-2017.LICENSE create mode 100644 docs/dmtf-2017.html create mode 100644 docs/dmtf-2017.json create mode 100644 docs/dmtf-2017.yml create mode 100644 docs/edrdg-2000.LICENSE create mode 100644 docs/edrdg-2000.html create mode 100644 docs/edrdg-2000.json create mode 100644 docs/edrdg-2000.yml create mode 100644 docs/gitpod-self-hosted-free-2020.LICENSE create mode 100644 docs/gitpod-self-hosted-free-2020.html create mode 100644 docs/gitpod-self-hosted-free-2020.json create mode 100644 docs/gitpod-self-hosted-free-2020.yml create mode 100644 docs/gstreamer-exception-2005.LICENSE create mode 100644 docs/gstreamer-exception-2005.html create mode 100644 docs/gstreamer-exception-2005.json create mode 100644 docs/gstreamer-exception-2005.yml create mode 100644 docs/gstreamer-exception-2008.LICENSE create mode 100644 docs/gstreamer-exception-2008.html create mode 100644 docs/gstreamer-exception-2008.json create mode 100644 docs/gstreamer-exception-2008.yml create mode 100644 docs/knuth-ctan.LICENSE create mode 100644 docs/knuth-ctan.html create mode 100644 docs/knuth-ctan.json create mode 100644 docs/knuth-ctan.yml create mode 100644 docs/lattice-osl-2017.LICENSE create mode 100644 docs/lattice-osl-2017.html create mode 100644 docs/lattice-osl-2017.json create mode 100644 docs/lattice-osl-2017.yml create mode 100644 docs/libutil-david-nugent.LICENSE create mode 100644 docs/libutil-david-nugent.html create mode 100644 docs/libutil-david-nugent.json create mode 100644 docs/libutil-david-nugent.yml create mode 100644 docs/lzma-sdk-9.11-to-9.20.LICENSE create mode 100644 docs/lzma-sdk-9.11-to-9.20.html create mode 100644 docs/lzma-sdk-9.11-to-9.20.json create mode 100644 docs/lzma-sdk-9.11-to-9.20.yml create mode 100644 docs/lzma-sdk-9.22.LICENSE create mode 100644 docs/lzma-sdk-9.22.html create mode 100644 docs/lzma-sdk-9.22.json create mode 100644 docs/lzma-sdk-9.22.yml create mode 100644 docs/microchip-products-2018.LICENSE create mode 100644 docs/microchip-products-2018.html create mode 100644 docs/microchip-products-2018.json create mode 100644 docs/microchip-products-2018.yml create mode 100644 docs/monkeysaudio.LICENSE create mode 100644 docs/monkeysaudio.html create mode 100644 docs/monkeysaudio.json create mode 100644 docs/monkeysaudio.yml create mode 100644 docs/mpi-permissive.LICENSE create mode 100644 docs/mpi-permissive.html create mode 100644 docs/mpi-permissive.json create mode 100644 docs/mpi-permissive.yml create mode 100644 docs/npsl-exception-0.92.LICENSE create mode 100644 docs/npsl-exception-0.92.html create mode 100644 docs/npsl-exception-0.92.json create mode 100644 docs/npsl-exception-0.92.yml create mode 100644 docs/npsl-exception-0.94.LICENSE create mode 100644 docs/npsl-exception-0.94.html create mode 100644 docs/npsl-exception-0.94.json create mode 100644 docs/npsl-exception-0.94.yml create mode 100644 docs/ofrak-community-1.0.LICENSE create mode 100644 docs/ofrak-community-1.0.html create mode 100644 docs/ofrak-community-1.0.json create mode 100644 docs/ofrak-community-1.0.yml create mode 100644 docs/olf-ccla-1.0.LICENSE create mode 100644 docs/olf-ccla-1.0.html create mode 100644 docs/olf-ccla-1.0.json create mode 100644 docs/olf-ccla-1.0.yml create mode 100644 docs/oll-1.0.LICENSE create mode 100644 docs/oll-1.0.html create mode 100644 docs/oll-1.0.json create mode 100644 docs/oll-1.0.yml create mode 100644 docs/ooura-2001.LICENSE create mode 100644 docs/ooura-2001.html create mode 100644 docs/ooura-2001.json create mode 100644 docs/ooura-2001.yml create mode 100644 docs/plural-20211124.LICENSE create mode 100644 docs/plural-20211124.html create mode 100644 docs/plural-20211124.json create mode 100644 docs/plural-20211124.yml create mode 100644 docs/python-2.0.1.LICENSE create mode 100644 docs/python-2.0.1.html create mode 100644 docs/python-2.0.1.json create mode 100644 docs/python-2.0.1.yml create mode 100644 docs/qt-commercial-agreement-4.4.1.LICENSE create mode 100644 docs/qt-commercial-agreement-4.4.1.html create mode 100644 docs/qt-commercial-agreement-4.4.1.json create mode 100644 docs/qt-commercial-agreement-4.4.1.yml create mode 100644 docs/six-labors-split-1.0.LICENSE create mode 100644 docs/six-labors-split-1.0.html create mode 100644 docs/six-labors-split-1.0.json create mode 100644 docs/six-labors-split-1.0.yml create mode 100644 docs/skip-2014.LICENSE create mode 100644 docs/skip-2014.html create mode 100644 docs/skip-2014.json create mode 100644 docs/skip-2014.yml create mode 100644 docs/smsc-non-commercial-2012.LICENSE create mode 100644 docs/smsc-non-commercial-2012.html create mode 100644 docs/smsc-non-commercial-2012.json create mode 100644 docs/smsc-non-commercial-2012.yml create mode 100644 docs/stable-diffusion-2022-08-22.LICENSE create mode 100644 docs/stable-diffusion-2022-08-22.html create mode 100644 docs/stable-diffusion-2022-08-22.json create mode 100644 docs/stable-diffusion-2022-08-22.yml create mode 100644 docs/tpl-2.0.LICENSE create mode 100644 docs/tpl-2.0.html create mode 100644 docs/tpl-2.0.json create mode 100644 docs/tpl-2.0.yml create mode 100644 docs/unlimited-binary-use-exception.LICENSE create mode 100644 docs/unlimited-binary-use-exception.html create mode 100644 docs/unlimited-binary-use-exception.json create mode 100644 docs/unlimited-binary-use-exception.yml create mode 100644 docs/woodruff-2002.LICENSE create mode 100644 docs/woodruff-2002.html create mode 100644 docs/woodruff-2002.json create mode 100644 docs/woodruff-2002.yml create mode 100644 docs/zrythm-exception-agpl-3.0.LICENSE create mode 100644 docs/zrythm-exception-agpl-3.0.html create mode 100644 docs/zrythm-exception-agpl-3.0.json create mode 100644 docs/zrythm-exception-agpl-3.0.yml diff --git a/docs/389-exception.LICENSE b/docs/389-exception.LICENSE index 25a38e5924..af8bbe21ea 100644 --- a/docs/389-exception.LICENSE +++ b/docs/389-exception.LICENSE @@ -1,3 +1,49 @@ +--- +key: 389-exception +short_name: 389 Directory Server Exception to GPL 2.0 +name: 389 Directory Server Exception to GPL 2.0 +category: Copyleft Limited +owner: Fedora +homepage_url: https://spdx.org/licenses/389-exception.html +is_exception: yes +spdx_license_key: 389-exception +text_urls: + - http://www.directory.fedora.redhat.com/wiki/GPL_Exception_License_Text +other_urls: + - http://directory.fedoraproject.org/wiki/GPL_Exception_License_Text + - http://www.gnu.org/licenses/gpl-2.0.txt + - https://web.archive.org/web/20080828121337/http://directory.fedoraproject.org/wiki/GPL_Exception_License_Text +standard_notice: | + 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; version 2 of the License. + 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, write to the Free Software Foundation, Inc., 59 + Temple Place, Suite 330, Boston, MA 02111-1307 USA. + In addition, as a special exception, Red Hat, Inc. gives You the additional + right to link the code of this Program with code not covered under the GNU + General Public License ("Non-GPL Code") and to distribute linked + combinations including the two, subject to the limitations in this + paragraph. Non-GPL Code permitted under this exception must only link to + the code of this Program through those well defined interfaces identified + in the file named EXCEPTION found in the source code files (the "Approved + Interfaces"). The files of Non-GPL Code may instantiate templates or use + macros or inline functions from the Approved Interfaces without causing the + resulting work to be covered by the GNU General Public License. Only Red + Hat, Inc. may make changes or additions to the list of Approved Interfaces. + You must obey the GNU General Public License in all respects for all of the + Program code and other code used in conjunction with the Program except the + Non-GPL Code covered by this exception. If you modify this file, you may + extend this exception to your version of the file, but you are not + obligated to do so. If you do not wish to provide this exception without + modification, you must delete this exception statement from your version + and license this file solely under the GPL without exception. +--- + In addition, as a special exception, Red Hat, Inc. gives You the additional right to link the code of this Program with code not covered under the GNU General Public License ("Non-GPL Code") and to distribute linked combinations diff --git a/docs/389-exception.html b/docs/389-exception.html index aaa4fbfc7b..e0419322c6 100644 --- a/docs/389-exception.html +++ b/docs/389-exception.html @@ -133,7 +133,7 @@
@@ -203,7 +203,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/389-exception.json b/docs/389-exception.json index ee2d154cc1..97db84bc2d 100644 --- a/docs/389-exception.json +++ b/docs/389-exception.json @@ -1 +1,19 @@ -{"key": "389-exception", "short_name": "389 Directory Server Exception to GPL 2.0", "name": "389 Directory Server Exception to GPL 2.0", "category": "Copyleft Limited", "owner": "Fedora", "homepage_url": "https://spdx.org/licenses/389-exception.html", "is_exception": true, "spdx_license_key": "389-exception", "text_urls": ["http://www.directory.fedora.redhat.com/wiki/GPL_Exception_License_Text"], "other_urls": ["http://directory.fedoraproject.org/wiki/GPL_Exception_License_Text", "http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "This Program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; version 2 of the License.\nThis Program is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this Program; if not, write to the Free Software Foundation, Inc., 59\nTemple Place, Suite 330, Boston, MA 02111-1307 USA.\nIn addition, as a special exception, Red Hat, Inc. gives You the additional\nright to link the code of this Program with code not covered under the GNU\nGeneral Public License (\"Non-GPL Code\") and to distribute linked\ncombinations including the two, subject to the limitations in this\nparagraph. Non-GPL Code permitted under this exception must only link to\nthe code of this Program through those well defined interfaces identified\nin the file named EXCEPTION found in the source code files (the \"Approved\nInterfaces\"). The files of Non-GPL Code may instantiate templates or use\nmacros or inline functions from the Approved Interfaces without causing the\nresulting work to be covered by the GNU General Public License. Only Red\nHat, Inc. may make changes or additions to the list of Approved Interfaces.\nYou must obey the GNU General Public License in all respects for all of the\nProgram code and other code used in conjunction with the Program except the\nNon-GPL Code covered by this exception. If you modify this file, you may\nextend this exception to your version of the file, but you are not\nobligated to do so. If you do not wish to provide this exception without\nmodification, you must delete this exception statement from your version\nand license this file solely under the GPL without exception.\n"} \ No newline at end of file +{ + "key": "389-exception", + "short_name": "389 Directory Server Exception to GPL 2.0", + "name": "389 Directory Server Exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "Fedora", + "homepage_url": "https://spdx.org/licenses/389-exception.html", + "is_exception": true, + "spdx_license_key": "389-exception", + "text_urls": [ + "http://www.directory.fedora.redhat.com/wiki/GPL_Exception_License_Text" + ], + "other_urls": [ + "http://directory.fedoraproject.org/wiki/GPL_Exception_License_Text", + "http://www.gnu.org/licenses/gpl-2.0.txt", + "https://web.archive.org/web/20080828121337/http://directory.fedoraproject.org/wiki/GPL_Exception_License_Text" + ], + "standard_notice": "This Program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; version 2 of the License.\nThis Program is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this Program; if not, write to the Free Software Foundation, Inc., 59\nTemple Place, Suite 330, Boston, MA 02111-1307 USA.\nIn addition, as a special exception, Red Hat, Inc. gives You the additional\nright to link the code of this Program with code not covered under the GNU\nGeneral Public License (\"Non-GPL Code\") and to distribute linked\ncombinations including the two, subject to the limitations in this\nparagraph. Non-GPL Code permitted under this exception must only link to\nthe code of this Program through those well defined interfaces identified\nin the file named EXCEPTION found in the source code files (the \"Approved\nInterfaces\"). The files of Non-GPL Code may instantiate templates or use\nmacros or inline functions from the Approved Interfaces without causing the\nresulting work to be covered by the GNU General Public License. Only Red\nHat, Inc. may make changes or additions to the list of Approved Interfaces.\nYou must obey the GNU General Public License in all respects for all of the\nProgram code and other code used in conjunction with the Program except the\nNon-GPL Code covered by this exception. If you modify this file, you may\nextend this exception to your version of the file, but you are not\nobligated to do so. If you do not wish to provide this exception without\nmodification, you must delete this exception statement from your version\nand license this file solely under the GPL without exception.\n" +} \ No newline at end of file diff --git a/docs/389-exception.yml b/docs/389-exception.yml index c4f49cd0b5..63e3446935 100644 --- a/docs/389-exception.yml +++ b/docs/389-exception.yml @@ -11,6 +11,7 @@ text_urls: other_urls: - http://directory.fedoraproject.org/wiki/GPL_Exception_License_Text - http://www.gnu.org/licenses/gpl-2.0.txt + - https://web.archive.org/web/20080828121337/http://directory.fedoraproject.org/wiki/GPL_Exception_License_Text standard_notice: | 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 diff --git a/docs/3com-microcode.LICENSE b/docs/3com-microcode.LICENSE index d4263e3e84..64557030f6 100644 --- a/docs/3com-microcode.LICENSE +++ b/docs/3com-microcode.LICENSE @@ -1,3 +1,12 @@ +--- +key: 3com-microcode +short_name: 3Com Microcode +name: 3Com Microcode +category: Permissive +owner: HP - Hewlett Packard +notes: this is a Linux firmware BSD-like license with some weird extra terms +spdx_license_key: LicenseRef-scancode-3com-microcode +--- Redistribution and use in source and binary forms of the microcode software are permitted provided that the following conditions @@ -26,4 +35,4 @@ MICROCODE SOFTWARE WILL NOT CREATE OR GIVE GROUNDS FOR A LICENSE BY IMPLICATION, ESTOPPEL, OR OTHERWISE IN ANY INTELLECTUAL PROPERTY RIGHTS (PATENT, COPYRIGHT, TRADE SECRET, MASK WORK, OR OTHER PROPRIETARY RIGHT) EMBODIED IN ANY OTHER 3COM HARDWARE OR SOFTWARE EITHER SOLELY OR IN -COMBINATION WITH THE MICROCODE SOFTWARE +COMBINATION WITH THE MICROCODE SOFTWARE \ No newline at end of file diff --git a/docs/3com-microcode.html b/docs/3com-microcode.html index 84533561cf..e7597b26c0 100644 --- a/docs/3com-microcode.html +++ b/docs/3com-microcode.html @@ -115,8 +115,7 @@
license_text
-

-Redistribution and use in source and binary forms of the 
+    
Redistribution and use in source and binary forms of the 
 microcode software are permitted provided that the following conditions
 are met:
 1. Redistribution of source code must retain the above copyright
@@ -143,8 +142,7 @@
 IMPLICATION, ESTOPPEL, OR OTHERWISE IN ANY INTELLECTUAL PROPERTY RIGHTS
 (PATENT, COPYRIGHT, TRADE SECRET, MASK WORK, OR OTHER PROPRIETARY RIGHT)
 EMBODIED IN ANY OTHER 3COM HARDWARE OR SOFTWARE EITHER SOLELY OR IN
-COMBINATION WITH THE MICROCODE SOFTWARE
-
+COMBINATION WITH THE MICROCODE SOFTWARE
@@ -156,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/3com-microcode.json b/docs/3com-microcode.json index b312fef1ff..26d8962713 100644 --- a/docs/3com-microcode.json +++ b/docs/3com-microcode.json @@ -1 +1,9 @@ -{"key": "3com-microcode", "short_name": "3Com Microcode", "name": "3Com Microcode", "category": "Permissive", "owner": "HP - Hewlett Packard", "notes": "this is a Linux firmware BSD-like license with some weird extra terms", "spdx_license_key": "LicenseRef-scancode-3com-microcode"} \ No newline at end of file +{ + "key": "3com-microcode", + "short_name": "3Com Microcode", + "name": "3Com Microcode", + "category": "Permissive", + "owner": "HP - Hewlett Packard", + "notes": "this is a Linux firmware BSD-like license with some weird extra terms", + "spdx_license_key": "LicenseRef-scancode-3com-microcode" +} \ No newline at end of file diff --git a/docs/3dslicer-1.0.LICENSE b/docs/3dslicer-1.0.LICENSE index 4697d38f0e..ffa357f173 100644 --- a/docs/3dslicer-1.0.LICENSE +++ b/docs/3dslicer-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: 3dslicer-1.0 +short_name: 3D Slicer License 1.0 +name: 3D Slicer Contribution and Software License Agreement v1.0 +category: Permissive +owner: Slicer Project +homepage_url: https://www.slicer.org/wiki/License +spdx_license_key: LicenseRef-scancode-3dslicer-1.0 +text_urls: + - https://github.com/Slicer/Slicer/blob/v4.6.2/COPYRIGHT.txt +faq_url: https://www.slicer.org/wiki/CommercialUse +other_urls: + - http://www.slicer.org + - http://wiki.na-mic.org/Wiki/index.php/Slicer3 +ignorable_authors: + - The Brigham and Women's Hospital, Inc. +--- + 3D Slicer Contribution and Software License Agreement ("Agreement") Version 1.0 (December 20, 2005) diff --git a/docs/3dslicer-1.0.html b/docs/3dslicer-1.0.html index 094f145790..8d0cbbb8ef 100644 --- a/docs/3dslicer-1.0.html +++ b/docs/3dslicer-1.0.html @@ -350,7 +350,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/3dslicer-1.0.json b/docs/3dslicer-1.0.json index 908d6bd47b..65d9ad91b0 100644 --- a/docs/3dslicer-1.0.json +++ b/docs/3dslicer-1.0.json @@ -1 +1,20 @@ -{"key": "3dslicer-1.0", "short_name": "3D Slicer License 1.0", "name": "3D Slicer Contribution and Software License Agreement v1.0", "category": "Permissive", "owner": "Slicer Project", "homepage_url": "https://www.slicer.org/wiki/License", "spdx_license_key": "LicenseRef-scancode-3dslicer-1.0", "text_urls": ["https://github.com/Slicer/Slicer/blob/v4.6.2/COPYRIGHT.txt"], "faq_url": "https://www.slicer.org/wiki/CommercialUse", "other_urls": ["http://www.slicer.org", "http://wiki.na-mic.org/Wiki/index.php/Slicer3"], "ignorable_authors": ["The Brigham and Women's Hospital, Inc."]} \ No newline at end of file +{ + "key": "3dslicer-1.0", + "short_name": "3D Slicer License 1.0", + "name": "3D Slicer Contribution and Software License Agreement v1.0", + "category": "Permissive", + "owner": "Slicer Project", + "homepage_url": "https://www.slicer.org/wiki/License", + "spdx_license_key": "LicenseRef-scancode-3dslicer-1.0", + "text_urls": [ + "https://github.com/Slicer/Slicer/blob/v4.6.2/COPYRIGHT.txt" + ], + "faq_url": "https://www.slicer.org/wiki/CommercialUse", + "other_urls": [ + "http://www.slicer.org", + "http://wiki.na-mic.org/Wiki/index.php/Slicer3" + ], + "ignorable_authors": [ + "The Brigham and Women's Hospital, Inc." + ] +} \ No newline at end of file diff --git a/docs/4suite-1.1.LICENSE b/docs/4suite-1.1.LICENSE index 7cf5f540e7..5b36a8c556 100644 --- a/docs/4suite-1.1.LICENSE +++ b/docs/4suite-1.1.LICENSE @@ -1,3 +1,24 @@ +--- +key: 4suite-1.1 +short_name: 4Suite 1.1 +name: 4Suite License v1.1 +category: Permissive +owner: Fourthought, Inc. +spdx_license_key: LicenseRef-scancode-4suite-1.1 +ignorable_copyrights: + - Copyright (c) 2000 Fourthought, Inc. + - Copyright (c) 2000 The Apache Software Foundation +ignorable_holders: + - Fourthought, Inc. + - The Apache Software Foundation +ignorable_authors: + - Fourthought, Inc. (http://www.fourthought.com) +ignorable_urls: + - http://www.fourthought.com/ +ignorable_emails: + - info@fourthought.com +--- + License and copyright info for 4Suite software ===================================== diff --git a/docs/4suite-1.1.html b/docs/4suite-1.1.html index 0abdb20725..a6401ed570 100644 --- a/docs/4suite-1.1.html +++ b/docs/4suite-1.1.html @@ -228,7 +228,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/4suite-1.1.json b/docs/4suite-1.1.json index 17349aa87a..7a8f142a78 100644 --- a/docs/4suite-1.1.json +++ b/docs/4suite-1.1.json @@ -1 +1,25 @@ -{"key": "4suite-1.1", "short_name": "4Suite 1.1", "name": "4Suite License v1.1", "category": "Permissive", "owner": "Fourthought, Inc.", "spdx_license_key": "LicenseRef-scancode-4suite-1.1", "ignorable_copyrights": ["Copyright (c) 2000 Fourthought, Inc.", "Copyright (c) 2000 The Apache Software Foundation"], "ignorable_holders": ["Fourthought, Inc.", "The Apache Software Foundation"], "ignorable_authors": ["Fourthought, Inc. (http://www.fourthought.com)"], "ignorable_urls": ["http://www.fourthought.com/"], "ignorable_emails": ["info@fourthought.com"]} \ No newline at end of file +{ + "key": "4suite-1.1", + "short_name": "4Suite 1.1", + "name": "4Suite License v1.1", + "category": "Permissive", + "owner": "Fourthought, Inc.", + "spdx_license_key": "LicenseRef-scancode-4suite-1.1", + "ignorable_copyrights": [ + "Copyright (c) 2000 Fourthought, Inc.", + "Copyright (c) 2000 The Apache Software Foundation" + ], + "ignorable_holders": [ + "Fourthought, Inc.", + "The Apache Software Foundation" + ], + "ignorable_authors": [ + "Fourthought, Inc. (http://www.fourthought.com)" + ], + "ignorable_urls": [ + "http://www.fourthought.com/" + ], + "ignorable_emails": [ + "info@fourthought.com" + ] +} \ No newline at end of file diff --git a/docs/996-icu-1.0.LICENSE b/docs/996-icu-1.0.LICENSE index b56eebcb70..36fa699b3c 100644 --- a/docs/996-icu-1.0.LICENSE +++ b/docs/996-icu-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: 996-icu-1.0 +short_name: Anti 996 License 1.0 +name: Anti 996 License Version 1.0 (Draft) +category: Free Restricted +owner: 996icu +homepage_url: https://github.com/996icu/996.ICU +notes: this is based on the still draft text as of 2019-04-17 +spdx_license_key: LicenseRef-scancode-996-icu-1.0 +text_urls: + - https://github.com/996icu/996.ICU/blob/dd185162b9d56b629e52c5726995cd7505326b06/LICENSE +--- + "Anti 996" License Version 1.0 (Draft) Permission is hereby granted to any individual or legal entity diff --git a/docs/996-icu-1.0.html b/docs/996-icu-1.0.html index ac98f8aeaa..1da6b97a50 100644 --- a/docs/996-icu-1.0.html +++ b/docs/996-icu-1.0.html @@ -186,7 +186,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/996-icu-1.0.json b/docs/996-icu-1.0.json index 518ba92447..fdebfacf35 100644 --- a/docs/996-icu-1.0.json +++ b/docs/996-icu-1.0.json @@ -1 +1,13 @@ -{"key": "996-icu-1.0", "short_name": "Anti 996 License 1.0", "name": "Anti 996 License Version 1.0 (Draft)", "category": "Free Restricted", "owner": "996icu", "homepage_url": "https://github.com/996icu/996.ICU", "notes": "this is based on the still draft text as of 2019-04-17", "spdx_license_key": "LicenseRef-scancode-996-icu-1.0", "text_urls": ["https://github.com/996icu/996.ICU/blob/dd185162b9d56b629e52c5726995cd7505326b06/LICENSE"]} \ No newline at end of file +{ + "key": "996-icu-1.0", + "short_name": "Anti 996 License 1.0", + "name": "Anti 996 License Version 1.0 (Draft)", + "category": "Free Restricted", + "owner": "996icu", + "homepage_url": "https://github.com/996icu/996.ICU", + "notes": "this is based on the still draft text as of 2019-04-17", + "spdx_license_key": "LicenseRef-scancode-996-icu-1.0", + "text_urls": [ + "https://github.com/996icu/996.ICU/blob/dd185162b9d56b629e52c5726995cd7505326b06/LICENSE" + ] +} \ No newline at end of file diff --git a/docs/abrms.LICENSE b/docs/abrms.LICENSE index 9c03c59893..eacf1494b5 100644 --- a/docs/abrms.LICENSE +++ b/docs/abrms.LICENSE @@ -1,3 +1,13 @@ +--- +key: abrms +short_name: ABRMS +name: Anyone But Richard Stallman License +category: Proprietary Free +owner: Unspecified +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-abrms +--- + The "Anyone But Richard M Stallman" license Do anything you want with this program, with the exceptions listed below under "EXCEPTIONS". @@ -6,4 +16,4 @@ THIS SOFTWARE IS PROVIDED "AS IS" WITH NO WARRANTY OF ANY KIND. In the unlikely event that you happen to make a zillion bucks off of this, then good for you; consider buying a homeless person a meal. EXCEPTIONS -Richard M Stallman (the guy behind GNU, etc.) may not make use of or redistribute this program or any of its derivatives. +Richard M Stallman (the guy behind GNU, etc.) may not make use of or redistribute this program or any of its derivatives. \ No newline at end of file diff --git a/docs/abrms.html b/docs/abrms.html index 9254f4a8f0..11d06e5ad7 100644 --- a/docs/abrms.html +++ b/docs/abrms.html @@ -123,8 +123,7 @@ In the unlikely event that you happen to make a zillion bucks off of this, then good for you; consider buying a homeless person a meal. EXCEPTIONS -Richard M Stallman (the guy behind GNU, etc.) may not make use of or redistribute this program or any of its derivatives. - +Richard M Stallman (the guy behind GNU, etc.) may not make use of or redistribute this program or any of its derivatives.
@@ -136,7 +135,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/abrms.json b/docs/abrms.json index 5c6f658326..339276e445 100644 --- a/docs/abrms.json +++ b/docs/abrms.json @@ -1 +1,9 @@ -{"key": "abrms", "short_name": "ABRMS", "name": "Anyone But Richard Stallman License", "category": "Proprietary Free", "owner": "Unspecified", "notes": "From https://github.com/ErikMcClure/bad-licenses", "spdx_license_key": "LicenseRef-scancode-abrms"} \ No newline at end of file +{ + "key": "abrms", + "short_name": "ABRMS", + "name": "Anyone But Richard Stallman License", + "category": "Proprietary Free", + "owner": "Unspecified", + "notes": "From https://github.com/ErikMcClure/bad-licenses", + "spdx_license_key": "LicenseRef-scancode-abrms" +} \ No newline at end of file diff --git a/docs/abstyles.LICENSE b/docs/abstyles.LICENSE index 6c0f437990..96c1e20b7b 100644 --- a/docs/abstyles.LICENSE +++ b/docs/abstyles.LICENSE @@ -1,3 +1,14 @@ +--- +key: abstyles +short_name: Abstyles License +name: Abstyles License +category: Permissive +owner: CTAN +homepage_url: https://fedoraproject.org/wiki/Licensing/Abstyles +notes: the latext2e, verbatim-manual and abstyles are similar licenses +spdx_license_key: Abstyles +--- + This program is distributed WITHOUT ANY WARRANTY, express or implied. Permission is granted to make and distribute verbatim copies of this @@ -7,4 +18,4 @@ preserved on all copies. Permission is granted to copy and distribute modified versions of this document under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a -permission notice identical to this one. +permission notice identical to this one. \ No newline at end of file diff --git a/docs/abstyles.html b/docs/abstyles.html index 5f748e4031..4d38f83d94 100644 --- a/docs/abstyles.html +++ b/docs/abstyles.html @@ -131,8 +131,7 @@ Permission is granted to copy and distribute modified versions of this document under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a -permission notice identical to this one. - +permission notice identical to this one.
@@ -144,7 +143,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/abstyles.json b/docs/abstyles.json index 166c4f2c2a..fdbd5e655c 100644 --- a/docs/abstyles.json +++ b/docs/abstyles.json @@ -1 +1,10 @@ -{"key": "abstyles", "short_name": "Abstyles License", "name": "Abstyles License", "category": "Permissive", "owner": "CTAN", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Abstyles", "notes": "the latext2e, verbatim-manual and abstyles are similar licenses", "spdx_license_key": "Abstyles"} \ No newline at end of file +{ + "key": "abstyles", + "short_name": "Abstyles License", + "name": "Abstyles License", + "category": "Permissive", + "owner": "CTAN", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Abstyles", + "notes": "the latext2e, verbatim-manual and abstyles are similar licenses", + "spdx_license_key": "Abstyles" +} \ No newline at end of file diff --git a/docs/ac3filter.LICENSE b/docs/ac3filter.LICENSE index 19f8ff5a02..20d6e75365 100644 --- a/docs/ac3filter.LICENSE +++ b/docs/ac3filter.LICENSE @@ -1,3 +1,23 @@ +--- +key: ac3filter +short_name: AC3Filter License +name: AC3Filter License +category: Copyleft +owner: Alexander Vigovsky +homepage_url: http://www.ac3filter.net/wiki/Download_AC3Filter +notes: | + The license text contains terms that contradict, and are completely + incompatible with, the terms of GPL 2.0. "This application may solely be + used for demonstration and educational purposes. Any other use may be + prohibited by law in some coutries." The typo "coutries" is in the original + license text. +spdx_license_key: LicenseRef-scancode-ac3filter +other_urls: + - http://ac3filter.net + - http://ac3filter.net/forum +minimum_coverage: 95 +--- + License: ======== diff --git a/docs/ac3filter.html b/docs/ac3filter.html index 0fa08b8bc8..25cd7ed27a 100644 --- a/docs/ac3filter.html +++ b/docs/ac3filter.html @@ -173,7 +173,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ac3filter.json b/docs/ac3filter.json index d9275ef579..0dd0bdb7fd 100644 --- a/docs/ac3filter.json +++ b/docs/ac3filter.json @@ -1 +1,15 @@ -{"key": "ac3filter", "short_name": "AC3Filter License", "name": "AC3Filter License", "category": "Copyleft", "owner": "Alexander Vigovsky", "homepage_url": "http://www.ac3filter.net/wiki/Download_AC3Filter", "notes": "The license text contains terms that contradict, and are completely\nincompatible with, the terms of GPL 2.0. \"This application may solely be\nused for demonstration and educational purposes. Any other use may be\nprohibited by law in some coutries.\" The typo \"coutries\" is in the original\nlicense text.\n", "spdx_license_key": "LicenseRef-scancode-ac3filter", "other_urls": ["http://ac3filter.net", "http://ac3filter.net/forum"], "minimum_coverage": 95} \ No newline at end of file +{ + "key": "ac3filter", + "short_name": "AC3Filter License", + "name": "AC3Filter License", + "category": "Copyleft", + "owner": "Alexander Vigovsky", + "homepage_url": "http://www.ac3filter.net/wiki/Download_AC3Filter", + "notes": "The license text contains terms that contradict, and are completely\nincompatible with, the terms of GPL 2.0. \"This application may solely be\nused for demonstration and educational purposes. Any other use may be\nprohibited by law in some coutries.\" The typo \"coutries\" is in the original\nlicense text.\n", + "spdx_license_key": "LicenseRef-scancode-ac3filter", + "other_urls": [ + "http://ac3filter.net", + "http://ac3filter.net/forum" + ], + "minimum_coverage": 95 +} \ No newline at end of file diff --git a/docs/accellera-systemc.LICENSE b/docs/accellera-systemc.LICENSE index 4f17cc5a2d..1078dff880 100644 --- a/docs/accellera-systemc.LICENSE +++ b/docs/accellera-systemc.LICENSE @@ -1,3 +1,27 @@ +--- +key: accellera-systemc +short_name: SystemC Open Source License Agreement +name: SystemC Open Source License Agreement +category: Permissive +owner: Accellera +homepage_url: https://www.accellera.org/images/about/policies/SystemC_Open_Source_License_v3.3.pdf +spdx_license_key: LicenseRef-scancode-accellera-systemc +faq_url: https://accellera.org/about/policies-and-procedures +ignorable_copyrights: + - (c) 1996- current year here + - (c) 1996- current year here by all Contributors + - Copyright (c) 1996- current year here by all Contributors +ignorable_holders: + - here + - here by all Contributors +ignorable_authors: + - through the Accellera working group process +ignorable_urls: + - http://www.accellera.org/ +ignorable_emails: + - info@accellera.org +--- + SystemC Open Source License Agreement (Download, Use and Contribution License Agreement Version 3.3) diff --git a/docs/accellera-systemc.html b/docs/accellera-systemc.html index f5fbe107b3..b226f9a673 100644 --- a/docs/accellera-systemc.html +++ b/docs/accellera-systemc.html @@ -714,7 +714,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/accellera-systemc.json b/docs/accellera-systemc.json index 187eaacca1..c797cd6bc2 100644 --- a/docs/accellera-systemc.json +++ b/docs/accellera-systemc.json @@ -1 +1,28 @@ -{"key": "accellera-systemc", "short_name": "SystemC Open Source License Agreement", "name": "SystemC Open Source License Agreement", "category": "Permissive", "owner": "Accellera", "homepage_url": "https://www.accellera.org/images/about/policies/SystemC_Open_Source_License_v3.3.pdf", "spdx_license_key": "LicenseRef-scancode-accellera-systemc", "faq_url": "https://accellera.org/about/policies-and-procedures", "ignorable_copyrights": ["(c) 1996- current year here", "(c) 1996- current year here by all Contributors", "Copyright (c) 1996- current year here by all Contributors"], "ignorable_holders": ["here", "here by all Contributors"], "ignorable_authors": ["through the Accellera working group process"], "ignorable_urls": ["http://www.accellera.org/"], "ignorable_emails": ["info@accellera.org"]} \ No newline at end of file +{ + "key": "accellera-systemc", + "short_name": "SystemC Open Source License Agreement", + "name": "SystemC Open Source License Agreement", + "category": "Permissive", + "owner": "Accellera", + "homepage_url": "https://www.accellera.org/images/about/policies/SystemC_Open_Source_License_v3.3.pdf", + "spdx_license_key": "LicenseRef-scancode-accellera-systemc", + "faq_url": "https://accellera.org/about/policies-and-procedures", + "ignorable_copyrights": [ + "(c) 1996- current year here", + "(c) 1996- current year here by all Contributors", + "Copyright (c) 1996- current year here by all Contributors" + ], + "ignorable_holders": [ + "here", + "here by all Contributors" + ], + "ignorable_authors": [ + "through the Accellera working group process" + ], + "ignorable_urls": [ + "http://www.accellera.org/" + ], + "ignorable_emails": [ + "info@accellera.org" + ] +} \ No newline at end of file diff --git a/docs/acdl-1.0.LICENSE b/docs/acdl-1.0.LICENSE index b8de0a2138..df474e25d4 100644 --- a/docs/acdl-1.0.LICENSE +++ b/docs/acdl-1.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: acdl-1.0 +short_name: ACDL 1.0 +name: Apple Common Documentation License v1.0 +category: Copyleft Limited +owner: Apple +homepage_url: http://fedoraproject.org/wiki/Licensing/Common_Documentation_License +spdx_license_key: CDL-1.0 +other_spdx_license_keys: + - LicenseRef-scancode-acdl-1.0 +text_urls: + - http://www.opensource.apple.com/cdl/ +faq_url: http://fedoraproject.org/wiki/Licensing/Common_Documentation_License +other_urls: + - http://fedoraproject.org/wiki/Licensing/Common_Documentation_License + - https://fedoraproject.org/wiki/Licensing/Common_Documentation_License + - https://www.gnu.org/licenses/license-list.html#ACDL +ignorable_copyrights: + - Copyright (c) 2001 Apple Computer, Inc. +ignorable_holders: + - Apple Computer, Inc. +ignorable_urls: + - http://www.opensource.apple.com/cdl/ +--- + Version 1.0 - February 16, 2001 Copyright (C) 2001 Apple Computer, Inc. diff --git a/docs/acdl-1.0.html b/docs/acdl-1.0.html index 796ab99dbb..c747a8cacd 100644 --- a/docs/acdl-1.0.html +++ b/docs/acdl-1.0.html @@ -240,7 +240,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/acdl-1.0.json b/docs/acdl-1.0.json index 1d042c933e..f526239996 100644 --- a/docs/acdl-1.0.json +++ b/docs/acdl-1.0.json @@ -1 +1,30 @@ -{"key": "acdl-1.0", "short_name": "ACDL 1.0", "name": "Apple Common Documentation License v1.0", "category": "Copyleft Limited", "owner": "Apple", "homepage_url": "http://fedoraproject.org/wiki/Licensing/Common_Documentation_License", "spdx_license_key": "CDL-1.0", "other_spdx_license_keys": ["LicenseRef-scancode-acdl-1.0"], "text_urls": ["http://www.opensource.apple.com/cdl/"], "faq_url": "http://fedoraproject.org/wiki/Licensing/Common_Documentation_License", "other_urls": ["http://fedoraproject.org/wiki/Licensing/Common_Documentation_License", "https://fedoraproject.org/wiki/Licensing/Common_Documentation_License", "https://www.gnu.org/licenses/license-list.html#ACDL"], "ignorable_copyrights": ["Copyright (c) 2001 Apple Computer, Inc."], "ignorable_holders": ["Apple Computer, Inc."], "ignorable_urls": ["http://www.opensource.apple.com/cdl/"]} \ No newline at end of file +{ + "key": "acdl-1.0", + "short_name": "ACDL 1.0", + "name": "Apple Common Documentation License v1.0", + "category": "Copyleft Limited", + "owner": "Apple", + "homepage_url": "http://fedoraproject.org/wiki/Licensing/Common_Documentation_License", + "spdx_license_key": "CDL-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-acdl-1.0" + ], + "text_urls": [ + "http://www.opensource.apple.com/cdl/" + ], + "faq_url": "http://fedoraproject.org/wiki/Licensing/Common_Documentation_License", + "other_urls": [ + "http://fedoraproject.org/wiki/Licensing/Common_Documentation_License", + "https://fedoraproject.org/wiki/Licensing/Common_Documentation_License", + "https://www.gnu.org/licenses/license-list.html#ACDL" + ], + "ignorable_copyrights": [ + "Copyright (c) 2001 Apple Computer, Inc." + ], + "ignorable_holders": [ + "Apple Computer, Inc." + ], + "ignorable_urls": [ + "http://www.opensource.apple.com/cdl/" + ] +} \ No newline at end of file diff --git a/docs/ace-tao.LICENSE b/docs/ace-tao.LICENSE index cdd175d9d5..a2e040fc93 100644 --- a/docs/ace-tao.LICENSE +++ b/docs/ace-tao.LICENSE @@ -1,3 +1,26 @@ +--- +key: ace-tao +short_name: ACE TAO License +name: ACE TAO License +category: Permissive +owner: Douglas Schmidt +homepage_url: http://www.cs.wustl.edu/~schmidt/ +spdx_license_key: DOC +text_urls: + - http://www.cs.wustl.edu/~schmidt/ACE-copying.html +other_urls: + - https://www.dre.vanderbilt.edu/~schmidt/ACE-copying.html +minimum_coverage: 30 +ignorable_copyrights: + - copyrighted by Douglas C. Schmidt and his research group at Washington University, University + of California, Irvine, and Vanderbilt University, Copyright (c) 1993-2009 +ignorable_holders: + - Douglas C. Schmidt and his research group at Washington University, University of California, + Irvine, and Vanderbilt University +ignorable_authors: + - the DOC Group at the Institute for Software Integrated Systems (ISIS) and the Center +--- + Copyright and Licensing Information for ACE(TM), TAO(TM), CIAO(TM), and CoSMIC(TM) ACE(TM),TAO(TM),CIAO(TM),andCoSMIC(TM) (henceforth referred to as "DOC software") are copyrighted by Douglas C. Schmidt and his research group at Washington University, University of California, Irvine, and Vanderbilt University, Copyright (c) 1993-2009, all rights reserved. Since DOC software is open-source, freely available software, you are free to use, modify, copy, and distribute--perpetually and irrevocably--the DOC software source code and object code produced from the source, as well as copy and distribute modified versions of this software. You must, however, include this copyright statement along with any code built using DOC software that you release. No copyright statement needs to be provided if you just ship binary executables of your software products. diff --git a/docs/ace-tao.html b/docs/ace-tao.html index fb056c6d80..7890734d48 100644 --- a/docs/ace-tao.html +++ b/docs/ace-tao.html @@ -193,7 +193,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ace-tao.json b/docs/ace-tao.json index 10fe21e84f..54c8f38f91 100644 --- a/docs/ace-tao.json +++ b/docs/ace-tao.json @@ -1 +1,25 @@ -{"key": "ace-tao", "short_name": "ACE TAO License", "name": "ACE TAO License", "category": "Permissive", "owner": "Douglas Schmidt", "homepage_url": "http://www.cs.wustl.edu/~schmidt/", "spdx_license_key": "DOC", "text_urls": ["http://www.cs.wustl.edu/~schmidt/ACE-copying.html"], "other_urls": ["https://www.dre.vanderbilt.edu/~schmidt/ACE-copying.html"], "minimum_coverage": 30, "ignorable_copyrights": ["copyrighted by Douglas C. Schmidt and his research group at Washington University, University of California, Irvine, and Vanderbilt University, Copyright (c) 1993-2009"], "ignorable_holders": ["Douglas C. Schmidt and his research group at Washington University, University of California, Irvine, and Vanderbilt University"], "ignorable_authors": ["the DOC Group at the Institute for Software Integrated Systems (ISIS) and the Center"]} \ No newline at end of file +{ + "key": "ace-tao", + "short_name": "ACE TAO License", + "name": "ACE TAO License", + "category": "Permissive", + "owner": "Douglas Schmidt", + "homepage_url": "http://www.cs.wustl.edu/~schmidt/", + "spdx_license_key": "DOC", + "text_urls": [ + "http://www.cs.wustl.edu/~schmidt/ACE-copying.html" + ], + "other_urls": [ + "https://www.dre.vanderbilt.edu/~schmidt/ACE-copying.html" + ], + "minimum_coverage": 30, + "ignorable_copyrights": [ + "copyrighted by Douglas C. Schmidt and his research group at Washington University, University of California, Irvine, and Vanderbilt University, Copyright (c) 1993-2009" + ], + "ignorable_holders": [ + "Douglas C. Schmidt and his research group at Washington University, University of California, Irvine, and Vanderbilt University" + ], + "ignorable_authors": [ + "the DOC Group at the Institute for Software Integrated Systems (ISIS) and the Center" + ] +} \ No newline at end of file diff --git a/docs/acroname-bdk.LICENSE b/docs/acroname-bdk.LICENSE index 1f47d53a3c..cc8447e2f2 100644 --- a/docs/acroname-bdk.LICENSE +++ b/docs/acroname-bdk.LICENSE @@ -1,3 +1,21 @@ +--- +key: acroname-bdk +short_name: Acroname BDK +name: Acroname Brainstem Development Kit license +category: Proprietary Free +owner: Acroname +homepage_url: https://acroname.com/software-license +spdx_license_key: LicenseRef-scancode-acroname-bdk +ignorable_copyrights: + - Copyright (c) 1994-2020 Acroname Inc. +ignorable_holders: + - Acroname Inc. +ignorable_urls: + - https://libusb.info/ +ignorable_emails: + - support@acroname.com +--- + BRAINSTEM DEVELOPMENT KIT SOFTWARE PACKAGE LICENSE AGREEMENT: PLEASE READ THIS SOFTWARE LICENSE AGREEMENT CAREFULLY BEFORE DOWNLOADING OR USING THE SOFTWARE. diff --git a/docs/acroname-bdk.html b/docs/acroname-bdk.html index 1e7e99d5dd..d931dbb625 100644 --- a/docs/acroname-bdk.html +++ b/docs/acroname-bdk.html @@ -193,7 +193,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/acroname-bdk.json b/docs/acroname-bdk.json index 1d7f2277f9..0efae218d1 100644 --- a/docs/acroname-bdk.json +++ b/docs/acroname-bdk.json @@ -1 +1,21 @@ -{"key": "acroname-bdk", "short_name": "Acroname BDK", "name": "Acroname Brainstem Development Kit license", "category": "Proprietary Free", "owner": "Acroname", "homepage_url": "https://acroname.com/software-license", "spdx_license_key": "LicenseRef-scancode-acroname-bdk", "ignorable_copyrights": ["Copyright (c) 1994-2020 Acroname Inc."], "ignorable_holders": ["Acroname Inc."], "ignorable_urls": ["https://libusb.info/"], "ignorable_emails": ["support@acroname.com"]} \ No newline at end of file +{ + "key": "acroname-bdk", + "short_name": "Acroname BDK", + "name": "Acroname Brainstem Development Kit license", + "category": "Proprietary Free", + "owner": "Acroname", + "homepage_url": "https://acroname.com/software-license", + "spdx_license_key": "LicenseRef-scancode-acroname-bdk", + "ignorable_copyrights": [ + "Copyright (c) 1994-2020 Acroname Inc." + ], + "ignorable_holders": [ + "Acroname Inc." + ], + "ignorable_urls": [ + "https://libusb.info/" + ], + "ignorable_emails": [ + "support@acroname.com" + ] +} \ No newline at end of file diff --git a/docs/activestate-community-2012.LICENSE b/docs/activestate-community-2012.LICENSE index 7aa8d1c570..f84dd6708c 100644 --- a/docs/activestate-community-2012.LICENSE +++ b/docs/activestate-community-2012.LICENSE @@ -1,3 +1,23 @@ +--- +key: activestate-community-2012 +short_name: ActiveState Community License 2012 +name: ActiveState Community License 2012 +category: Proprietary Free +owner: ActiveState Software, Inc. +homepage_url: https://web.archive.org/web/20130420143215/http://www.activestate.com/activeperl/license-agreement +spdx_license_key: LicenseRef-scancode-activestate-community-2012 +standard_notice: | + ActivePerl is covered by the ActiveState Community License. + Please note: + If you plan to redistribute ActivePerl you will need a different license. + For more information please visit ActivePerl OEM Licensing or contact us + directly. +ignorable_urls: + - http://www.activestate.com/ +ignorable_emails: + - sales@activestate.com +--- + ACTIVESTATE COMMUNITY EDITION SOFTWARE LICENSE AGREEMENT Version effective date: August 2, 2012 diff --git a/docs/activestate-community-2012.html b/docs/activestate-community-2012.html index 1b52b8b4fd..2eb6f08a29 100644 --- a/docs/activestate-community-2012.html +++ b/docs/activestate-community-2012.html @@ -230,7 +230,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/activestate-community-2012.json b/docs/activestate-community-2012.json index 208173255f..5332d0b30d 100644 --- a/docs/activestate-community-2012.json +++ b/docs/activestate-community-2012.json @@ -1 +1,16 @@ -{"key": "activestate-community-2012", "short_name": "ActiveState Community License 2012", "name": "ActiveState Community License 2012", "category": "Proprietary Free", "owner": "ActiveState Software, Inc.", "homepage_url": "https://web.archive.org/web/20130420143215/http://www.activestate.com/activeperl/license-agreement", "spdx_license_key": "LicenseRef-scancode-activestate-community-2012", "standard_notice": "ActivePerl is covered by the ActiveState Community License.\nPlease note:\nIf you plan to redistribute ActivePerl you will need a different license.\nFor more information please visit ActivePerl OEM Licensing or contact us\ndirectly.\n", "ignorable_urls": ["http://www.activestate.com/"], "ignorable_emails": ["sales@activestate.com"]} \ No newline at end of file +{ + "key": "activestate-community-2012", + "short_name": "ActiveState Community License 2012", + "name": "ActiveState Community License 2012", + "category": "Proprietary Free", + "owner": "ActiveState Software, Inc.", + "homepage_url": "https://web.archive.org/web/20130420143215/http://www.activestate.com/activeperl/license-agreement", + "spdx_license_key": "LicenseRef-scancode-activestate-community-2012", + "standard_notice": "ActivePerl is covered by the ActiveState Community License.\nPlease note:\nIf you plan to redistribute ActivePerl you will need a different license.\nFor more information please visit ActivePerl OEM Licensing or contact us\ndirectly.\n", + "ignorable_urls": [ + "http://www.activestate.com/" + ], + "ignorable_emails": [ + "sales@activestate.com" + ] +} \ No newline at end of file diff --git a/docs/activestate-community.LICENSE b/docs/activestate-community.LICENSE index 6c40af834b..a790db556b 100644 --- a/docs/activestate-community.LICENSE +++ b/docs/activestate-community.LICENSE @@ -1,3 +1,22 @@ +--- +key: activestate-community +short_name: ActiveState Community License +name: ActiveState Community License +category: Proprietary Free +owner: ActiveState Software, Inc. +spdx_license_key: LicenseRef-scancode-activestate-community +ignorable_copyrights: + - Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) 2000 BeOpen.com + - Copyright (c) 2001 Python Software Foundation +ignorable_holders: + - BeOpen.com + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum, Amsterdam +--- + ActiveState Community License Preamble: The intent of this document is to state the conditions under which the Package may be copied and distributed, such that ActiveState maintains control over the development and distribution of the Package, while allowing the users of the Package to use the Package in a variety of ways. diff --git a/docs/activestate-community.html b/docs/activestate-community.html index 39269acf21..bc0eb7cae7 100644 --- a/docs/activestate-community.html +++ b/docs/activestate-community.html @@ -168,7 +168,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/activestate-community.json b/docs/activestate-community.json index 35b58f7f59..474a0b3fb9 100644 --- a/docs/activestate-community.json +++ b/docs/activestate-community.json @@ -1 +1,20 @@ -{"key": "activestate-community", "short_name": "ActiveState Community License", "name": "ActiveState Community License", "category": "Proprietary Free", "owner": "ActiveState Software, Inc.", "spdx_license_key": "LicenseRef-scancode-activestate-community", "ignorable_copyrights": ["Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam", "Copyright (c) 1995-2001 Corporation for National Research Initiatives", "Copyright (c) 2000 BeOpen.com", "Copyright (c) 2001 Python Software Foundation"], "ignorable_holders": ["BeOpen.com", "Corporation for National Research Initiatives", "Python Software Foundation", "Stichting Mathematisch Centrum, Amsterdam"]} \ No newline at end of file +{ + "key": "activestate-community", + "short_name": "ActiveState Community License", + "name": "ActiveState Community License", + "category": "Proprietary Free", + "owner": "ActiveState Software, Inc.", + "spdx_license_key": "LicenseRef-scancode-activestate-community", + "ignorable_copyrights": [ + "Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam", + "Copyright (c) 1995-2001 Corporation for National Research Initiatives", + "Copyright (c) 2000 BeOpen.com", + "Copyright (c) 2001 Python Software Foundation" + ], + "ignorable_holders": [ + "BeOpen.com", + "Corporation for National Research Initiatives", + "Python Software Foundation", + "Stichting Mathematisch Centrum, Amsterdam" + ] +} \ No newline at end of file diff --git a/docs/activestate-komodo-edit.LICENSE b/docs/activestate-komodo-edit.LICENSE index b1b6025d85..515b3db3b4 100644 --- a/docs/activestate-komodo-edit.LICENSE +++ b/docs/activestate-komodo-edit.LICENSE @@ -1,3 +1,19 @@ +--- +key: activestate-komodo-edit +short_name: ActiveState Komodo Edit EULA +name: ActiveState Komodo Edit EULA +category: Proprietary Free +owner: ActiveState Software, Inc. +homepage_url: http://www.activestate.com/komodo-edit/license-agreement +spdx_license_key: LicenseRef-scancode-activestate-komodo-edit +other_urls: + - https://www.mozilla.org/en-US/MPL/1.1/ +ignorable_urls: + - http://www.activestate.com/ +ignorable_emails: + - license@activestate.com +--- + ACTIVESTATE® KOMODO® EDIT LICENSE AGREEMENT Please read carefully: THIS IS A LICENSE AND NOT AN AGREEMENT FOR SALE. By using and installing ActiveState's Software or, where applicable, choosing the "I ACCEPT..." option at the end of the License you indicate that you have read, understood, and accepted the terms and conditions of the License. IF YOU DO NOT AGREE WITH THE TERMS AND CONDITIONS, YOU SHOULD NOT ATTEMPT TO INSTALL THE SOFTWARE. If the Software is already downloaded or installed, you should promptly cease using the Software in any manner and destroy all copies of the Software in your possession. You, the user, assume all responsibility for the selection of the Software to achieve your intended results and for the installation, use and results obtained from the Software. If you have any questions concerning this, you may contact ActiveState via license@activestate.com. diff --git a/docs/activestate-komodo-edit.html b/docs/activestate-komodo-edit.html index 0c124c1c85..a0041725c4 100644 --- a/docs/activestate-komodo-edit.html +++ b/docs/activestate-komodo-edit.html @@ -180,7 +180,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/activestate-komodo-edit.json b/docs/activestate-komodo-edit.json index f8973b1538..530fe45bdc 100644 --- a/docs/activestate-komodo-edit.json +++ b/docs/activestate-komodo-edit.json @@ -1 +1,18 @@ -{"key": "activestate-komodo-edit", "short_name": "ActiveState Komodo Edit EULA", "name": "ActiveState Komodo Edit EULA", "category": "Proprietary Free", "owner": "ActiveState Software, Inc.", "homepage_url": "http://www.activestate.com/komodo-edit/license-agreement", "spdx_license_key": "LicenseRef-scancode-activestate-komodo-edit", "other_urls": ["https://www.mozilla.org/en-US/MPL/1.1/"], "ignorable_urls": ["http://www.activestate.com/"], "ignorable_emails": ["license@activestate.com"]} \ No newline at end of file +{ + "key": "activestate-komodo-edit", + "short_name": "ActiveState Komodo Edit EULA", + "name": "ActiveState Komodo Edit EULA", + "category": "Proprietary Free", + "owner": "ActiveState Software, Inc.", + "homepage_url": "http://www.activestate.com/komodo-edit/license-agreement", + "spdx_license_key": "LicenseRef-scancode-activestate-komodo-edit", + "other_urls": [ + "https://www.mozilla.org/en-US/MPL/1.1/" + ], + "ignorable_urls": [ + "http://www.activestate.com/" + ], + "ignorable_emails": [ + "license@activestate.com" + ] +} \ No newline at end of file diff --git a/docs/actuate-birt-ihub-ftype-sla.LICENSE b/docs/actuate-birt-ihub-ftype-sla.LICENSE index 4a1749442f..ec685711e9 100644 --- a/docs/actuate-birt-ihub-ftype-sla.LICENSE +++ b/docs/actuate-birt-ihub-ftype-sla.LICENSE @@ -1,3 +1,19 @@ +--- +key: actuate-birt-ihub-ftype-sla +short_name: BIRT iHub F-Type Software License Agreement +name: Actuate Corporation BIRT iHub F-Type Software License Agreement +category: Proprietary Free +owner: Actuate +homepage_url: http://spp.actuate.com/DM/DownloadOpenFile.aspx?docId=4637 +spdx_license_key: LicenseRef-scancode-actuate-birt-ihub-ftype-sla +ignorable_copyrights: + - copyrighted by Actuate +ignorable_holders: + - Actuate +ignorable_urls: + - http://www.actuate.com/documentation/ihubftype3/license +--- + Actuate Corporation BIRT iHub F-Type Software License Agreement IMPORTANT – READ CAREFULLY. diff --git a/docs/actuate-birt-ihub-ftype-sla.html b/docs/actuate-birt-ihub-ftype-sla.html index e363d51826..a6ff008866 100644 --- a/docs/actuate-birt-ihub-ftype-sla.html +++ b/docs/actuate-birt-ihub-ftype-sla.html @@ -189,7 +189,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/actuate-birt-ihub-ftype-sla.json b/docs/actuate-birt-ihub-ftype-sla.json index 551d2ba5d8..b5802972fc 100644 --- a/docs/actuate-birt-ihub-ftype-sla.json +++ b/docs/actuate-birt-ihub-ftype-sla.json @@ -1 +1,18 @@ -{"key": "actuate-birt-ihub-ftype-sla", "short_name": "BIRT iHub F-Type Software License Agreement", "name": "Actuate Corporation BIRT iHub F-Type Software License Agreement", "category": "Proprietary Free", "owner": "Actuate", "homepage_url": "http://spp.actuate.com/DM/DownloadOpenFile.aspx?docId=4637", "spdx_license_key": "LicenseRef-scancode-actuate-birt-ihub-ftype-sla", "ignorable_copyrights": ["copyrighted by Actuate"], "ignorable_holders": ["Actuate"], "ignorable_urls": ["http://www.actuate.com/documentation/ihubftype3/license"]} \ No newline at end of file +{ + "key": "actuate-birt-ihub-ftype-sla", + "short_name": "BIRT iHub F-Type Software License Agreement", + "name": "Actuate Corporation BIRT iHub F-Type Software License Agreement", + "category": "Proprietary Free", + "owner": "Actuate", + "homepage_url": "http://spp.actuate.com/DM/DownloadOpenFile.aspx?docId=4637", + "spdx_license_key": "LicenseRef-scancode-actuate-birt-ihub-ftype-sla", + "ignorable_copyrights": [ + "copyrighted by Actuate" + ], + "ignorable_holders": [ + "Actuate" + ], + "ignorable_urls": [ + "http://www.actuate.com/documentation/ihubftype3/license" + ] +} \ No newline at end of file diff --git a/docs/ada-linking-exception.LICENSE b/docs/ada-linking-exception.LICENSE index 7b99c1109e..e374043f0e 100644 --- a/docs/ada-linking-exception.LICENSE +++ b/docs/ada-linking-exception.LICENSE @@ -1,3 +1,43 @@ +--- +key: ada-linking-exception +short_name: Ada linking exception to GPL 2.0 or later +name: Ada linking exception to GPL 2.0 or later +category: Copyleft Limited +owner: Dmitriy Anisimkov +is_exception: yes +spdx_license_key: LicenseRef-scancode-ada-linking-exception +other_urls: + - http://zlib-ada.sourceforge.net/ + - http://ada-ru.org/ +standard_notice: | + --------------------------------------------------------------------------- + --- + -- This library 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 2 of the License, or (at -- + -- your option) any later version. -- + -- -- + -- This library is distributed in the hope that it will be useful, but -- + -- WITHOUT ANY WARRANTY; without even the implied warranty of -- + -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- + -- General Public License for more details. -- + -- -- + -- You should have received a copy of the GNU 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. -- + -- -- + -- As a special exception, if other files instantiate generics from this -- + -- unit, or you link this unit with other files to produce an executable, + -- + -- this unit does not by itself cause the resulting executable to be -- + -- covered by the GNU General Public License. This exception does not -- + -- however invalidate any other reasons why the executable file might be -- + -- covered by the GNU Public License. -- + --------------------------------------------------------------------------- + --- +--- + As a special exception, if other files instantiate generics from this unit, or you link this unit with other files to produce an executable, this unit does not by itself cause the resulting executable to be diff --git a/docs/ada-linking-exception.html b/docs/ada-linking-exception.html index 8238069e46..08526eacc9 100644 --- a/docs/ada-linking-exception.html +++ b/docs/ada-linking-exception.html @@ -174,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ada-linking-exception.json b/docs/ada-linking-exception.json index 41824ac9da..1dd4f62c9e 100644 --- a/docs/ada-linking-exception.json +++ b/docs/ada-linking-exception.json @@ -1 +1,14 @@ -{"key": "ada-linking-exception", "short_name": "Ada linking exception to GPL 2.0 or later", "name": "Ada linking exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "Dmitriy Anisimkov", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-ada-linking-exception", "other_urls": ["http://zlib-ada.sourceforge.net/", "http://ada-ru.org/"], "standard_notice": "---------------------------------------------------------------------------\n---\n-- This library is free software; you can redistribute it and/or modify --\n-- it under the terms of the GNU General Public License as published by --\n-- the Free Software Foundation; either version 2 of the License, or (at --\n-- your option) any later version. --\n-- --\n-- This library is distributed in the hope that it will be useful, but --\n-- WITHOUT ANY WARRANTY; without even the implied warranty of --\n-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU --\n-- General Public License for more details. --\n-- --\n-- You should have received a copy of the GNU General Public License --\n-- along with this library; if not, write to the Free Software Foundation,\n--\n-- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --\n-- --\n-- As a special exception, if other files instantiate generics from this --\n-- unit, or you link this unit with other files to produce an executable,\n--\n-- this unit does not by itself cause the resulting executable to be --\n-- covered by the GNU General Public License. This exception does not --\n-- however invalidate any other reasons why the executable file might be --\n-- covered by the GNU Public License. --\n---------------------------------------------------------------------------\n---\n"} \ No newline at end of file +{ + "key": "ada-linking-exception", + "short_name": "Ada linking exception to GPL 2.0 or later", + "name": "Ada linking exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "Dmitriy Anisimkov", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-ada-linking-exception", + "other_urls": [ + "http://zlib-ada.sourceforge.net/", + "http://ada-ru.org/" + ], + "standard_notice": "---------------------------------------------------------------------------\n---\n-- This library is free software; you can redistribute it and/or modify --\n-- it under the terms of the GNU General Public License as published by --\n-- the Free Software Foundation; either version 2 of the License, or (at --\n-- your option) any later version. --\n-- --\n-- This library is distributed in the hope that it will be useful, but --\n-- WITHOUT ANY WARRANTY; without even the implied warranty of --\n-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU --\n-- General Public License for more details. --\n-- --\n-- You should have received a copy of the GNU General Public License --\n-- along with this library; if not, write to the Free Software Foundation,\n--\n-- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --\n-- --\n-- As a special exception, if other files instantiate generics from this --\n-- unit, or you link this unit with other files to produce an executable,\n--\n-- this unit does not by itself cause the resulting executable to be --\n-- covered by the GNU General Public License. This exception does not --\n-- however invalidate any other reasons why the executable file might be --\n-- covered by the GNU Public License. --\n---------------------------------------------------------------------------\n---\n" +} \ No newline at end of file diff --git a/docs/adapt-1.0.LICENSE b/docs/adapt-1.0.LICENSE index 5ad83aae67..12e487ccc6 100644 --- a/docs/adapt-1.0.LICENSE +++ b/docs/adapt-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: adapt-1.0 +short_name: APL 1.0 +name: Adaptive Public License +category: Copyleft +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/apl1.0.php +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: APL-1.0 +osi_license_key: APL-1.0 +text_urls: + - http://www.opensource.org/licenses/apl1.0.php +osi_url: http://www.opensource.org/licenses/apl1.0.php +other_urls: + - http://www.opensource.org/licenses/APL-1.0 + - https://opensource.org/licenses/APL-1.0 +--- + ADAPTIVE PUBLIC LICENSE Version 1.0 THE LICENSED WORK IS PROVIDED UNDER THE TERMS OF THIS ADAPTIVE PUBLIC LICENSE diff --git a/docs/adapt-1.0.html b/docs/adapt-1.0.html index 6f912850c0..e8da18f874 100644 --- a/docs/adapt-1.0.html +++ b/docs/adapt-1.0.html @@ -508,7 +508,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adapt-1.0.json b/docs/adapt-1.0.json index e61266e57f..7ac8d6cc78 100644 --- a/docs/adapt-1.0.json +++ b/docs/adapt-1.0.json @@ -1 +1,19 @@ -{"key": "adapt-1.0", "short_name": "APL 1.0", "name": "Adaptive Public License", "category": "Copyleft", "owner": "OSI - Open Source Initiative", "homepage_url": "http://www.opensource.org/licenses/apl1.0.php", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "APL-1.0", "osi_license_key": "APL-1.0", "text_urls": ["http://www.opensource.org/licenses/apl1.0.php"], "osi_url": "http://www.opensource.org/licenses/apl1.0.php", "other_urls": ["http://www.opensource.org/licenses/APL-1.0", "https://opensource.org/licenses/APL-1.0"]} \ No newline at end of file +{ + "key": "adapt-1.0", + "short_name": "APL 1.0", + "name": "Adaptive Public License", + "category": "Copyleft", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://www.opensource.org/licenses/apl1.0.php", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "APL-1.0", + "osi_license_key": "APL-1.0", + "text_urls": [ + "http://www.opensource.org/licenses/apl1.0.php" + ], + "osi_url": "http://www.opensource.org/licenses/apl1.0.php", + "other_urls": [ + "http://www.opensource.org/licenses/APL-1.0", + "https://opensource.org/licenses/APL-1.0" + ] +} \ No newline at end of file diff --git a/docs/adaptec-downloadable.LICENSE b/docs/adaptec-downloadable.LICENSE index b154249197..9c818ecbcc 100644 --- a/docs/adaptec-downloadable.LICENSE +++ b/docs/adaptec-downloadable.LICENSE @@ -1,3 +1,15 @@ +--- +key: adaptec-downloadable +short_name: Adaptec Downloadable Software License +name: Adaptec Downloadable Software License +category: Proprietary Free +owner: Adaptec +homepage_url: https://github.com/gooselinux/aic94xx-firmware/blob/master/LICENSE.aic94xx +spdx_license_key: LicenseRef-scancode-adaptec-downloadable +other_urls: + - https://lists.fedoraproject.org/pipermail/scm-commits/2010-March/408246.html +--- + ADAPTEC, INC. DOWNLOADABLE SOFTWARE LICENSE Directions to Obtain Your File: Please read the downloadable software license and answer the required question below. diff --git a/docs/adaptec-downloadable.html b/docs/adaptec-downloadable.html index 0bddeeec70..48ecd48535 100644 --- a/docs/adaptec-downloadable.html +++ b/docs/adaptec-downloadable.html @@ -171,7 +171,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adaptec-downloadable.json b/docs/adaptec-downloadable.json index b7188ec101..8d12b4e9a1 100644 --- a/docs/adaptec-downloadable.json +++ b/docs/adaptec-downloadable.json @@ -1 +1,12 @@ -{"key": "adaptec-downloadable", "short_name": "Adaptec Downloadable Software License", "name": "Adaptec Downloadable Software License", "category": "Proprietary Free", "owner": "Adaptec", "homepage_url": "https://github.com/gooselinux/aic94xx-firmware/blob/master/LICENSE.aic94xx", "spdx_license_key": "LicenseRef-scancode-adaptec-downloadable", "other_urls": ["https://lists.fedoraproject.org/pipermail/scm-commits/2010-March/408246.html"]} \ No newline at end of file +{ + "key": "adaptec-downloadable", + "short_name": "Adaptec Downloadable Software License", + "name": "Adaptec Downloadable Software License", + "category": "Proprietary Free", + "owner": "Adaptec", + "homepage_url": "https://github.com/gooselinux/aic94xx-firmware/blob/master/LICENSE.aic94xx", + "spdx_license_key": "LicenseRef-scancode-adaptec-downloadable", + "other_urls": [ + "https://lists.fedoraproject.org/pipermail/scm-commits/2010-March/408246.html" + ] +} \ No newline at end of file diff --git a/docs/adaptec-eula.LICENSE b/docs/adaptec-eula.LICENSE index ccf2fa64d2..b83349e3b5 100644 --- a/docs/adaptec-eula.LICENSE +++ b/docs/adaptec-eula.LICENSE @@ -1,3 +1,13 @@ +--- +key: adaptec-eula +short_name: Adaptec EULA +name: Adaptec EULA +category: Proprietary Free +owner: Adaptec +homepage_url: https://www.adaptec.com/en-us/support/_eula/license.php +spdx_license_key: LicenseRef-scancode-adaptec-eula +--- + PMC-Sierra Inc. Adaptec by PMC Downloadable Files: diff --git a/docs/adaptec-eula.html b/docs/adaptec-eula.html index a77e418b7b..3f09021656 100644 --- a/docs/adaptec-eula.html +++ b/docs/adaptec-eula.html @@ -306,7 +306,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adaptec-eula.json b/docs/adaptec-eula.json index 4c0db8572f..cf13666ae8 100644 --- a/docs/adaptec-eula.json +++ b/docs/adaptec-eula.json @@ -1 +1,9 @@ -{"key": "adaptec-eula", "short_name": "Adaptec EULA", "name": "Adaptec EULA", "category": "Proprietary Free", "owner": "Adaptec", "homepage_url": "https://www.adaptec.com/en-us/support/_eula/license.php", "spdx_license_key": "LicenseRef-scancode-adaptec-eula"} \ No newline at end of file +{ + "key": "adaptec-eula", + "short_name": "Adaptec EULA", + "name": "Adaptec EULA", + "category": "Proprietary Free", + "owner": "Adaptec", + "homepage_url": "https://www.adaptec.com/en-us/support/_eula/license.php", + "spdx_license_key": "LicenseRef-scancode-adaptec-eula" +} \ No newline at end of file diff --git a/docs/adcolony-tos-2022.LICENSE b/docs/adcolony-tos-2022.LICENSE new file mode 100644 index 0000000000..3d27e8772f --- /dev/null +++ b/docs/adcolony-tos-2022.LICENSE @@ -0,0 +1,462 @@ +--- +key: adcolony-tos-2022 +short_name: AdColony TOS for Publishers 2022 +name: AdColony Terms of Service for Publishers 2022 +category: Proprietary Free +owner: AdColony +homepage_url: https://support.adcolony.com/helpdesk/terms-of-service-for-publishers/ +spdx_license_key: LicenseRef-scancode-adcolony-tos-2022 +ignorable_urls: + - http://www.aboutads.info/principles + - https://www.adcolony.com/privacy-policy/ +ignorable_emails: + - support@adcolony.com +--- + +Terms of Service for Publishers + +AdColony publishing and monetization partners must sign, acknowledge, and agree +to their own terms of service document within the AdColony portal. The version +below is for general reference purposes and does not serve as a legal or binding +agreement with any entity. + +Additional agreements and terms of service may be required on a per client basis +to comply with regulatory needs. Contact support@adcolony.com for more details. + + + +SDK License and Publisher Terms + +These AdColony SDK License and Publisher Terms (this “Agreement”) is made +available by AdColony, Inc. (“AdColony”). By downloading or using the AdColony +SDK, you and any company, entity, or organization on behalf of which you are +accepting this Agreement (“Developer”) hereby agrees to be bound by all terms +and conditions of this Agreement, and you represent and warrant that you are an +authorized representative of Developer with the authority to bind Developer to +this Agreement. IF YOU DO NOT AGREE TO ALL TERMS AND CONDITIONS OF THIS +AGREEMENT, DO NOT DOWNLOAD OR USE THE ADCOLONY SDK. + +1. Definitions + + 1. “Advertisers” means third-party advertisers. + + 2. “Developer Apps” means the mobile applications owned and/or controlled by + Developer, including all content images, music and text contained therein, + that Developer wishes to use with the AdColony SDK and AdColony Platform. + + 3. “I/O” means a fully executed insertion order containing advertising + campaign details for user acquisitions and campaigns run by Developer on + AdColony’s Platform. + + 4. “AdColony Ads” means video, playable, display, or any type of media + advertisements, sourced by or on behalf of AdColony, which are routed and/or + served by the AdColony Platform to the Developer Apps. + + 5. “AdColony Platform” means AdColony’s advertising system or network, which + supports advertisement insertion within mobile applications, and related + advertisement reporting tools. + + 6. “AdColony SDK” means the software development kit and any other software + and documentation that may be provided by AdColony to Developer with the + software development kit, including any updates thereto. + + 7. “Personally Identifiable Information” or “PII” means information that + specifically identifies or locates a particular person or entity such as + name, postal address, telephone number, and email address. + + 8. “Pseudonymous Identifiers” means data that is linked or reasonably + linkable to a particular computer or device resettable device identifiers + such as Google Advertising ID, Apple Identifier for Advertisers, IP address, + or other similar identifiers. Pseudoymous Identifiers may not be utilized to + identify a particular person. + +2. AdColony SDK License + + 1. License Grant. Subject to the terms and conditions of this Agreement, + AdColony grants Developer a non-exclusive, non-transferable, non- + sublicenseable, worldwide license to: (a) integrate the AdColony SDK with + Developer Apps solely for internal use; (b) use, reproduce and distribute + certain portions of the AdColony SDK as required for Developer’s + distribution of Developer Apps, solely as enabled by, and in accordance with + documentation provided by AdColony; and (c) use the AdColony SDK and + AdColony Platform to have advertisements, including AdColony Ads, + distributed and presented within Developer Apps. + + 2. SDK Updates. AdColony periodically releases new versions of the AdColony + SDK which may contain new features and fixes, and AdColony may sunset + versions of the AdColony SDK. Developer is encouraged to check the AdColony + website (or AdColony-designated distribution site) from time to time for the + latest version releases, and to download and integrate such new versions + within the Developer Apps, subject to this Agreement (including any + amendments). + + C. License Restrictions. Except as expressly provided in this Agreement, + Developer shall not (and shall not allow any third party to): (a) decompile, + reverse engineer, disassemble, modify, adapt, create derivative works of, + copy or distribute the AdColony SDK or AdColony Platform, (b) modify, + remove, or obscure any copyright, trademark, patent or other proprietary + notices or legends from the AdColony SDK or AdColony Platform; (c) copy, + distribute, rent, lease, lend, sublicense, transfer or make the AdColony SDK + or AdColony Platform available to any third party, and (d) use the AdColony + SDK or AdColony Platform to develop, upload, or transmit any software + viruses or other computer code, files or programs designed to interrupt, + destroy, or limit the functionality of any software or hardware. + + 3. Intellectual Property. All ownership rights, title, and interest in and + to the AdColony SDK and AdColony Platform, including all intellectual + property rights therein, as such may be modified, upgraded, or enhanced from + time to time (“AdColony Property”) will remain and belong exclusively to + AdColony. AdColony reserves all rights not expressly granted to Developer + herein. Developer shall retain all ownership rights, title and interest in + and to the Developer Apps, including all intellectual property rights + therein, as such may be modified, upgraded or enhanced from time to time. + + 4. Advertising via The AdColony Platform + + 1. AdColony Insertion & Sale of Ads. Developer hereby grants AdColony + the right to sell, and have sold, advertisement inventory in the + Developer Apps, and to insert AdColony Ads within such inventory. In + addition, Developer hereby grants AdColony the non-exclusive, worldwide + right and license to use, reproduce, distribute and display Developer’s + and the Developer Apps’ trademarks, logos, and images of the Developer + Apps, in connection with the sale of AdColony Ads hereunder, including: + (a) listing the Developer Apps and inventory in pitch materials to + prospective Advertisers; (b) reporting the inclusion of Developer Apps + and inventory as part of AdColony’s advertising network; and (c) + identifying the Developer as a publishing partner on AdColony’s website + and other marketing materials. AdColony also reserves the right to + utilize publisher results (both specific and aggregate) in case studies + and white papers for promotional purposes. + + 2. Developer Ad Campaigns. For user acquisitions and other campaigns run + by Developer on the AdColony Platform, Developer shall provide AdColony + with a signed I/O. The terms of the I/O, including the Interactive + Advertising Bureau terms and conditions incorporated into the I/O (the + “IAB Terms”) shall govern such advertising campaigns. In the event of + any conflict between the I/O and such IAB Terms, the I/O shall govern + and control with respect to such campaign. + + 3. Developer Apps Content Policy. The Developer Apps will not contain, + consist of, or promote discrimination, illegal activities, hate speech, + defamation, graphic violence, firearms, tobacco, illegal drugs, + pornography, profanity, obscenity or sexually explicit material + (“Developer Apps Content Policy”). Developer will notify AdColony + immediately of any Developer Apps relating to alcohol or gambling or + that are child-directed as defined under COPPA. Developer agrees that + AdColony has no responsibility for the Developer Apps, including any + content therein, and AdColony has no obligation or ability to monitor or + edit the Developer Apps. Developer will provide as much advance written + notice as reasonably practicable, but in no event less than fifteen (15) + days’ notice, regarding any material changes to the nature or design of + any Developer App, including without limitation, changes to the + placement of AdColony Ad inventory, any action that will increase or + reduce expected AdColony Ad inventory within the Developer Apps, the + type of content contained within the Developer Apps, or the target + audience of the Developer Apps. + + + 4. Ad Restrictions. Developer may not, and may not authorize or encourage + any third party to: (a) generate fraudulent impressions of, or fraudulent + clicks on any AdColony Ads, including through repeated manual clicks, the + use of robots or other automated tools or any other method that may lead to + artificially high numbers of impressions, clicks, downloads, installs, app- + opens, installed app user activity; or (b) edit, modify, filter, or change + the order of the information contained in any AdColony Ad, or remove, + obscure or minimize any AdColony Ad in any way. Developer shall promptly + notify AdColony if it suspects that any third party may be tampering with, + abusing or manipulating the AdColony Platform or the AdColony Ads within the + Developer App. AdColony may suspend Developer’s use of the AdColony Platform + and/or terminate this Agreement immediately should Developer violate the + foregoing provisions of this Section as determined by AdColony’s sole + discretion upon evaluating its fraud detection and reporting systems, and + Developer shall not be entitled to any revenue associated with the + applicable campaign(s). + + 5. Data & Privacy + + 1. Collection of Data. Developer acknowledges and agrees that + Pseudonymous Identifiers may be used in connection with the performance + of this Agreement in order to collect and use data from end users and + their devices (“App Data”) in connection with advertisement performance, + targeting, and end user interests (“Performance Data”), and to display + AdColony Ads to end users. Developer agrees that in connection with + AdColony Ads, AdColony may access or call to the Developer Apps, or the + servers that make them available, and cause the routing, transmission, + reproduction, and presentation of AdColony Ads as contemplated herein. + Additionally, Developer agrees that AdColony may collect App Data and + Performance Data, including Pseudonymous Identifiers , usage data, and + streaming data, with regard to the Developer Apps (and included content) + within which AdColony Ads are routed and/or served and (i) disclose such + information to third parties (including Advertisers and attribution + partners) as reasonably necessary in connection with the operation of + the AdColony Platform, (ii) disclose such data if required by any court + order, process, law or governmental agency; (iii) disclose such data + generally when it is aggregated, such that the specific information + relating to Developer is not identified as such; and (iv) use such + information for AdColony’s internal business purposes, including to + develop and improve the AdColony SDK and AdColony Platform. AdColony + will collect and use the data in accordance with the Digital Advertising + Alliance Self-Regulatory Principles (“DAA Codes”), which are available + at http://www.aboutads.info/principles and AdColony Privacy Policy, + which is available at https://www.adcolony.com/privacy-policy/ (as + updated from time to time) and is hereby incorporated by reference. + + 2. Compliance with Laws. Developer agrees to comply with all Privacy + Requirements (as defined below), including conspicuously posting a + privacy policy that accurately describes the Developer’s and third + parties’ collection, use, and disclosure of end user data from the + Developer Apps, which include disclosure that third parties may collect + or receive information and use that information to provide measurement + services and targeted ads, and disclosure of how and where users can + opt-out of collection and use of information for ad targeting. Developer + will not pass any PII to AdColony unless expressly permitted in writing, + and as permitted under any Privacy Requirements. Developer represents + and warrants that any data Developer provides to AdColony regarding + devices, location, or users, and the ability for AdColony to collect the + App Data and Performance Data, is permitted and provided in compliance + with all Privacy Requirements including Developer’s posted privacy + policy. Developer further represents and warrants that it has made any + and all disclosures and obtained any and all consents or permissions + required by law with respect to Developer’s privacy practices, including + without limitation: (a) any end user data Developer collects, uses, + and/or discloses, (b) the use and disclosure of App Data and Performance + Data to AdColony via the AdColony SDK and AdColony Platform, and (c) + notice and parental consent required by the Children’s Online Privacy + Protection Act (“COPPA”). AdColony reserves the right to modify, + suspend, or terminate this Agreement should Developer violate this + Section, and/or to remain compliant with law. + + C. “Privacy Requirements” means all (i) applicable laws (including + COPPA), governmental regulations, court or government agency orders, and + decrees relating in any manner to the collection, use, or dissemination + of information from or about users, user traffic, or otherwise relating + to privacy rights; (ii) the DAA Codes; and (iii) Developer’s posted + privacy policy. + + 6. Developer Payments + + 1. Developer Payment. Subject to the terms and conditions of this + Agreement, AdColony shall pay to Developer Net Revenue amounts + determined by AdColony. All revenue received from activities that + AdColony deems to be fraudulent may be refunded to the Advertiser(s) in + AdColony’s sole discretion. + + 2. Payment Terms. AdColony will pay any Developer Payment due to + Developer sixty (60) days after the completion of the month in which + such AdColony Ad campaign runs; provided that, AdColony may withhold + payment until the following month for Developer Payment amounts less + than $100 U.S. Developer shall be responsible for any bank, transfer or + transaction fees (e.g., PayPal). AdColony may deduct any withholding, + sales, value added, and other applicable taxes (other than its net + income taxes) as required by law. Developer is responsible for paying + any other taxes, duties, or fees for which Developer is legally + responsible. + + 3. Earnings are forfeited by publisher if a) the publisher’s lifetime + earnings are less than $100 and it has been more than 12 months since + the publisher had earnings or b) the publisher has not provided payment + information, outstanding earnings are less than $1,000 and it has been + more than 12 months since the publisher had earnings. + + + 7. Term and Termination + + 1. Term. This Agreement is effective until terminated in accordance with + this Agreement. + + 2. Termination by AdColony. AdColony may terminate this Agreement at any + time by providing sixty (60) days’ notice to Developer. Additionally, + AdColony may terminate this Agreement immediately if Developer breaches + any provision of this Agreement. + + 3. Termination by Developer. Developer may terminate this Agreement at + any time by providing written notice to AdColony (email to suffice), + ceasing all use of the AdColony Platform and AdColony Property, and + destroying or removing from all hard drives, networks, and other storage + media all copies of the AdColony Property. + + 4. Effect of Termination. Upon termination of this Agreement by + Developer, the Agreement (including all rights and licenses granted and + obligations assumed hereunder) will remain in force and effect until the + completion of all AdColony Ad campaigns associated with the Developer + Apps in effect on the date of such termination (“Sell-Off Period”). + AdColony’s payment obligations will remain in effect during the Sell-Off + Period. Upon any termination of this Agreement, each party will promptly + return or destroy all copies of any Confidential Information in its + possession or control. Sections 3, 7(D) through 13 shall survive any + expiration or termination of this Agreement. + + 8. Confidentiality + + A. Definition. “Confidential Information” means any and all business, + technical and financial information or material of a party, whether + revealed orally, visually, or in tangible or electronic form, that is + not generally known to the public, which is disclosed to or made + available by one party (the “Disclosing Party”) to the other, or which + one party becomes aware of pursuant to this Agreement (the “Receiving + Party”). The AdColony SDK is AdColony’s Confidential Information, and + the terms and conditions of this Agreement shall remain confidential. + The failure of a Disclosing Party to designate as “confidential” any + such information or material at the time of disclosure shall not result + in a loss of status as Confidential Information to the Disclosing Party. + Confidential Information shall not include information which: (i) is in + or has entered the public domain through no breach of this Agreement or + other act by a Receiving Party; (ii) a Receiving Party rightfully knew + prior to the time that it was disclosed to a Receiving Party hereunder; + (iii) a Receiving Party received without restriction from a third-party + lawfully possessing and lawfully entitled to disclose such information + without breach of this Agreement; or (iv) was independently developed by + employees of the Receiving Party who had no access to such information. + + B. Use and Disclosure Restrictions. The Receiving Party shall not use + the Confidential Information except as necessary to exercise its rights + or perform its obligations under this Agreement, and shall not disclose + the Confidential Information to any third party, except to those of its + employees, subcontractors, and advisers that need to know such + Confidential Information for the purposes of this Agreement, provided + that each such employee, subcontractor, and advisor is subject to a + written agreement that includes binding use and disclosure restrictions + that are at least as protective of the Confidential Information as those + set forth herein. The Receiving Party will use at least the efforts such + party ordinarily uses with respect to its own confidential information + of similar nature and importance to maintain the confidentiality of all + Confidential Information in its possession or control, but in no event + less than reasonable efforts. The foregoing obligations will not + restrict the Receiving Party from disclosing any Confidential + Information required by applicable law; provided that, the Receiving + Party must use reasonable efforts to give the Disclosing Party advance + notice thereof (i.e., so as to afford Disclosing Party an opportunity to + intervene and seek an order or other relief for protecting its + Confidential Information from any unauthorized use or disclosure) and + the Confidential Information is only disclosed to the extent required by + law. The Receiving Party shall return all of the Disclosing Party’s + Confidential Information to the Disclosing Party or destroy the same, no + later than fifteen (15) days after Disclosing Party’s request, or when + Receiving Party no longer needs Confidential Information for its + authorized purposes hereunder. + + 9. Representations and Warranties of Developer. Developer represents, + warrants and covenants to AdColony that: (a) it has all necessary rights, + title, and interest in and to the Developer Apps, and it has obtained all + necessary rights, releases, and permissions to grant the rights granted to + AdColony in this Agreement, including to allow AdColony to sell and insert + the AdColony Ads as contemplated herein; (b) it shall not use the AdColony + Platform to collect or discern any personally identifiable information of + end users, or use the data received through the AdColony Platform to re- + identify an individual; and (c) the Developer Apps will comply with the + Developer Apps Content Policy, and will not infringe upon, violate, or + misappropriate any third party right, including any intellectual property, + privacy, or publicity rights. + + 10. Warranty Disclaimer. THE ADCOLONY SDK AND ADCOLONY PLATFORM ARE PROVIDED + “AS IS”. ADCOLONY DOES NOT MAKE ANY WARRANTIES, EXPRESS, IMPLIED, STATUTORY + OR OTHERWISE, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, + NON-INFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, AND ANY IMPLIED + WARRANTIES ARISING FROM COURSE OF DEALING OR PERFORMANCE. ADCOLONY AND ITS + SUPPLIERS, LICENSORS, AND PARTNERS DO NOT WARRANT THAT THE ADCOLONY PLATFORM + OR ADCOLONY SDK WILL BE CORRECT, UNINTERRUPTED OR ERROR-FREE, THAT DEFECTS + WILL BE CORRECTED, OR THAT THE ADCOLONY PLATFORM OR ADCOLONY SDK ARE FREE OF + VIRUSES OR OTHER HARMFUL COMPONENTS. ADCOLONY DOES NOT WARRANT THE RESULTS + OF USE OF THE ADCOLONY PLATFORM OR ADCOLONY SDK. DEVELOPER ACKNOWLEDGES THAT + ADCOLONY MAY MODIFY OR SUSPEND THE ADCOLONY PLATFORM AT ANY TIME IN ITS SOLE + DISCRETION AND WITHOUT NOTICE. + + 11. Indemnification. + + 1. Developer Indemnification. Developer agrees to indemnify, defend, and + hold harmless AdColony and its affiliates, and their directors, + officers, employees, and agents from and against any liabilities, + damages, costs and expenses (including reasonable attorneys’ fees) + arising out of any claim, demand, action, or proceeding initiated by a + third party arising from or in connection with any breach of Developer’s + obligations, representations or warranties set forth in this Agreement; + provided that, AdColony: (a) promptly notifies Developer in writing of + the claim, except that any failure to provide this notice promptly only + relieves Developer of its responsibility to the extent its defense is + materially prejudiced by the delay; (b) grants Developer sole control of + the defense and/or settlement of the claim; and (c) reasonably + cooperates with Developer in connection with such claim at Developer’s + cost and expense. + + 2. AdColony Indemnification. AdColony agrees to indemnify, reimburse and + hold harmless, Developer, its officers, directors, employees, and agents + from and against any and all third party claims, liabilities, demands, + causes of action, damages, losses and expenses, including, without + limitation, reasonable attorneys’ fees and costs of suit, arising out of + or in connection with AdColony’s infringement or misappropriation of a + third party U.S. copyright, trademark or trade secret by the use of the + AdColony Platform and/or the AdColony SDK by Developer as permitted + hereunder; provided that, Developer: (a) promptly notifies AdColony in + writing of the claim, except that any failure to provide this notice + promptly only relieves AdColony of its responsibility to the extent its + defense is materially prejudiced by the delay; (b) grants AdColony sole + control of the defense and/or settlement of the claim; and (c) + reasonably cooperates with AdColony in connection with such claim at + AdColony’s cost and expense. In addition, if the use of the AdColony + Property by Developer has become, or in AdColony’s opinion is likely to + become, the subject of any claim of infringement, AdColony may at its + option and expense (i) procure for Developer the right to continue using + the AdColony Property as set forth hereunder; (ii) replace or modify the + AdColony Property to make it non- infringing so long as the AdColony + Property has substantially equivalent functionality; or (iii) if options + (i) or (ii) are not reasonably practicable, terminate this Agreement. + AdColony shall have no liability or obligation under this Section with + respect to any claim if such claim is caused in whole or in part by (x) + compliance with designs, data, instructions, or specifications provided + by Developer; (y) modification of the AdColony Property by any party + other than AdColony without AdColony’s express consent; or (z) the + combination, operation, or use of the AdColony Property with other + applications, portions of applications, product(s), data or services + where the AdColony Property would not by itself be infringing unless + AdColony has required or expressly allowed such combination, operation, + or use. THE INDEMNIFICATION RIGHTS CONTAINED IN THIS SECTION 11 ARE + DEVELOPER’S SOLE REMEDY FOR THIRD PARTY INFRINGEMENT CLAIMS RELATING TO + ADCOLONY’S SDK AND THE ADCOLONY PLATFORM. + + 12. Limitation of Liability. EXCEPT WITH RESPECT TO INDEMNIFICATION + OBLIGATIONS HEREIN AND BREACHES OF SECTIONS 2 and 8, NEITHER PARTY SHALL BE + LIABLE TO OTHER PARTY FOR ANY PUNITIVE, INCIDENTAL, INDIRECT, SPECIAL, + RELIANCE OR CONSEQUENTIAL DAMAGES, INCLUDING LOST BUSINESS, DATA, REVENUE, + OR ANTICIPATED PROFITS, WHETHER BASED ON BREACH OF CONTRACT, TORT (INCLUDING + NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT A PARTY WAS ADVISED OF THE + POSSIBILITY OF SUCH LOSS OR DAMAGES. EXCEPT WITH RESPECT TO INDEMNIFICATION + OBLIGATIONS HEREIN AND BREACHES OF SECTIONS 2 and 8, IN NO EVENT WILL EITHER + PARTY’S AGGREGATE LIABILITY UNDER THIS AGREEMENT EXCEED THE TOTAL DEVELOPER + PAYMENT PAYABLE TO DEVELOPER UNDER THIS AGREEMENT BY ADCOLONY IN THE TWELVE + (12) MONTH PERIOD IMMEDIATELY PRECEDING THE DATE OF THE CLAIM. + + 13. General. + + 1. Relationship of the Parties. Each Party shall be and act as an + independent contractor and not as partner, joint venturer, or agent of + the other. No party shall have any right to obligate or bind any other + party. + + 2. Assignment. Neither party may assign any of its rights or obligations + under this Agreement without the prior written consent of the other + party, except in connection with any merger (by operation of law or + otherwise), consolidation, reorganization, change in control or sale of + all or substantially all of its assets related to this Agreement or + similar transaction. Notwithstanding the foregoing, Developer may not + assign this Agreement to a direct competitor of AdColony without + AdColony’s prior written consent. This Agreement inures to the benefit + of and shall be binding on the parties’ permitted assignees, transferees + and successors. + + 3. Amendments; Waiver. No changes or modifications or waivers are to be + made to this Agreement unless evidenced in writing and signed for and on + behalf of both parties. The failure by either party to insist upon the + strict performance of this Agreement, or to exercise any term hereof, + will not act as a waiver of any right, promise or term, which will + continue in full force and effect. + + 4. Governing Law; Jurisdiction. This Agreement shall be governed by, and + construed in accordance with, the laws of the State of California, + without reference to conflicts of laws principles. The parties agree + that the federal and state courts in Los Angeles County, California will + have exclusive jurisdiction and venue under this Agreement, and the + parties hereby agree to submit to such jurisdiction exclusively. + + 5. Entire Agreement. This Agreement contains the entire understanding of + the parties regarding its subject matter and supersedes all other + agreements and understandings, whether oral or written. \ No newline at end of file diff --git a/docs/adcolony-tos-2022.html b/docs/adcolony-tos-2022.html new file mode 100644 index 0000000000..197d56dee7 --- /dev/null +++ b/docs/adcolony-tos-2022.html @@ -0,0 +1,614 @@ + + + + + + LicenseDB: adcolony-tos-2022 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + adcolony-tos-2022 + +
+ +
short_name
+
+ + AdColony TOS for Publishers 2022 + +
+ +
name
+
+ + AdColony Terms of Service for Publishers 2022 + +
+ +
category
+
+ + Proprietary Free + +
+ +
owner
+
+ + AdColony + +
+ +
homepage_url
+
+ + https://support.adcolony.com/helpdesk/terms-of-service-for-publishers/ + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-adcolony-tos-2022 + +
+ +
ignorable_urls
+
+ + + +
+ +
ignorable_emails
+
+ + + +
+ +
+
license_text
+
Terms of Service for Publishers
+
+AdColony publishing and monetization partners must sign, acknowledge, and agree
+to their own terms of service document within the AdColony portal. The version
+below is for general reference purposes and does not serve as a legal or binding
+agreement with any entity.
+
+Additional agreements and terms of service may be required on a per client basis
+to comply with regulatory needs. Contact support@adcolony.com for more details.
+
+ 
+
+SDK License and Publisher Terms
+
+These AdColony SDK License and Publisher Terms (this “Agreement”) is made
+available by AdColony, Inc. (“AdColony”). By downloading or using the AdColony
+SDK, you and any company, entity, or organization on behalf of which you are
+accepting this Agreement (“Developer”) hereby agrees to be bound by all terms
+and conditions of this Agreement, and you represent and warrant that you are an
+authorized representative of Developer with the authority to bind Developer to
+this Agreement. IF YOU DO NOT AGREE TO ALL TERMS AND CONDITIONS OF THIS
+AGREEMENT, DO NOT DOWNLOAD OR USE THE ADCOLONY SDK.
+
+1. Definitions
+
+    1. “Advertisers” means third-party advertisers.
+
+    2. “Developer Apps” means the mobile applications owned and/or controlled by
+    Developer, including all content images, music and text contained therein,
+    that Developer wishes to use with the AdColony SDK and AdColony Platform.
+
+    3. “I/O” means a fully executed insertion order containing advertising
+    campaign details for user acquisitions and campaigns run by Developer on
+    AdColony’s Platform.
+
+    4. “AdColony Ads” means video, playable, display, or any type of media
+    advertisements, sourced by or on behalf of AdColony, which are routed and/or
+    served by the AdColony Platform to the Developer Apps.
+    
+    5. “AdColony Platform” means AdColony’s advertising system or network, which
+    supports advertisement insertion within mobile applications, and related
+    advertisement reporting tools.
+    
+    6. “AdColony SDK” means the software development kit and any other software
+    and documentation that may be provided by AdColony to Developer with the
+    software development kit, including any updates thereto.
+    
+    7. “Personally Identifiable Information” or “PII” means information that
+    specifically identifies or locates a particular person or entity such as
+    name, postal address, telephone number, and email address.
+    
+    8. “Pseudonymous Identifiers” means data that is linked or reasonably
+    linkable to a particular computer or device resettable device identifiers
+    such as Google Advertising ID, Apple Identifier for Advertisers, IP address,
+    or other similar identifiers. Pseudoymous Identifiers may not be utilized to
+    identify a particular person.
+
+2. AdColony SDK License
+
+    1. License Grant. Subject to the terms and conditions of this Agreement,
+    AdColony grants Developer a non-exclusive, non-transferable, non-
+    sublicenseable, worldwide license to: (a) integrate the AdColony SDK with
+    Developer Apps solely for internal use; (b) use, reproduce and distribute
+    certain portions of the AdColony SDK as required for Developer’s
+    distribution of Developer Apps, solely as enabled by, and in accordance with
+    documentation provided by AdColony; and (c) use the AdColony SDK and
+    AdColony Platform to have advertisements, including AdColony Ads,
+    distributed and presented within Developer Apps.
+
+    2. SDK Updates. AdColony periodically releases new versions of the AdColony
+    SDK which may contain new features and fixes, and AdColony may sunset
+    versions of the AdColony SDK. Developer is encouraged to check the AdColony
+    website (or AdColony-designated distribution site) from time to time for the
+    latest version releases, and to download and integrate such new versions
+    within the Developer Apps, subject to this Agreement (including any
+    amendments).
+
+    C. License Restrictions. Except as expressly provided in this Agreement,
+    Developer shall not (and shall not allow any third party to): (a) decompile,
+    reverse engineer, disassemble, modify, adapt, create derivative works of,
+    copy or distribute the AdColony SDK or AdColony Platform, (b) modify,
+    remove, or obscure any copyright, trademark, patent or other proprietary
+    notices or legends from the AdColony SDK or AdColony Platform; (c) copy,
+    distribute, rent, lease, lend, sublicense, transfer or make the AdColony SDK
+    or AdColony Platform available to any third party, and (d) use the AdColony
+    SDK or AdColony Platform to develop, upload, or transmit any software
+    viruses or other computer code, files or programs designed to interrupt,
+    destroy, or limit the functionality of any software or hardware.
+
+    3. Intellectual Property. All ownership rights, title, and interest in and
+    to the AdColony SDK and AdColony Platform, including all intellectual
+    property rights therein, as such may be modified, upgraded, or enhanced from
+    time to time (“AdColony Property”) will remain and belong exclusively to
+    AdColony. AdColony reserves all rights not expressly granted to Developer
+    herein. Developer shall retain all ownership rights, title and interest in
+    and to the Developer Apps, including all intellectual property rights
+    therein, as such may be modified, upgraded or enhanced from time to time.
+
+    4. Advertising via The AdColony Platform
+
+        1. AdColony Insertion & Sale of Ads. Developer hereby grants AdColony
+        the right to sell, and have sold, advertisement inventory in the
+        Developer Apps, and to insert AdColony Ads within such inventory. In
+        addition, Developer hereby grants AdColony the non-exclusive, worldwide
+        right and license to use, reproduce, distribute and display Developer’s
+        and the Developer Apps’ trademarks, logos, and images of the Developer
+        Apps, in connection with the sale of AdColony Ads hereunder, including:
+        (a) listing the Developer Apps and inventory in pitch materials to
+        prospective Advertisers; (b) reporting the inclusion of Developer Apps
+        and inventory as part of AdColony’s advertising network; and (c)
+        identifying the Developer as a publishing partner on AdColony’s website
+        and other marketing materials. AdColony also reserves the right to
+        utilize publisher results (both specific and aggregate) in case studies
+        and white papers for promotional purposes.
+
+        2. Developer Ad Campaigns. For user acquisitions and other campaigns run
+        by Developer on the AdColony Platform, Developer shall provide AdColony
+        with a signed I/O. The terms of the I/O, including the Interactive
+        Advertising Bureau terms and conditions incorporated into the I/O (the
+        “IAB Terms”) shall govern such advertising campaigns. In the event of
+        any conflict between the I/O and such IAB Terms, the I/O shall govern
+        and control with respect to such campaign.
+
+        3. Developer Apps Content Policy. The Developer Apps will not contain,
+        consist of, or promote discrimination, illegal activities, hate speech,
+        defamation, graphic violence, firearms, tobacco, illegal drugs,
+        pornography, profanity, obscenity or sexually explicit material
+        (“Developer Apps Content Policy”). Developer will notify AdColony
+        immediately of any Developer Apps relating to alcohol or gambling or
+        that are child-directed as defined under COPPA. Developer agrees that
+        AdColony has no responsibility for the Developer Apps, including any
+        content therein, and AdColony has no obligation or ability to monitor or
+        edit the Developer Apps. Developer will provide as much advance written
+        notice as reasonably practicable, but in no event less than fifteen (15)
+        days’ notice, regarding any material changes to the nature or design of
+        any Developer App, including without limitation, changes to the
+        placement of AdColony Ad inventory, any action that will increase or
+        reduce expected AdColony Ad inventory within the Developer Apps, the
+        type of content contained within the Developer Apps, or the target
+        audience of the Developer Apps.
+
+
+    4. Ad Restrictions. Developer may not, and may not authorize or encourage
+    any third party to: (a) generate fraudulent impressions of, or fraudulent
+    clicks on any AdColony Ads, including through repeated manual clicks, the
+    use of robots or other automated tools or any other method that may lead to
+    artificially high numbers of impressions, clicks, downloads, installs, app-
+    opens, installed app user activity; or (b) edit, modify, filter, or change
+    the order of the information contained in any AdColony Ad, or remove,
+    obscure or minimize any AdColony Ad in any way. Developer shall promptly
+    notify AdColony if it suspects that any third party may be tampering with,
+    abusing or manipulating the AdColony Platform or the AdColony Ads within the
+    Developer App. AdColony may suspend Developer’s use of the AdColony Platform
+    and/or terminate this Agreement immediately should Developer violate the
+    foregoing provisions of this Section as determined by AdColony’s sole
+    discretion upon evaluating its fraud detection and reporting systems, and
+    Developer shall not be entitled to any revenue associated with the
+    applicable campaign(s).
+
+    5. Data & Privacy
+
+        1. Collection of Data. Developer acknowledges and agrees that
+        Pseudonymous Identifiers may be used in connection with the performance
+        of this Agreement in order to collect and use data from end users and
+        their devices (“App Data”) in connection with advertisement performance,
+        targeting, and end user interests (“Performance Data”), and to display
+        AdColony Ads to end users. Developer agrees that in connection with
+        AdColony Ads, AdColony may access or call to the Developer Apps, or the
+        servers that make them available, and cause the routing, transmission,
+        reproduction, and presentation of AdColony Ads as contemplated herein.
+        Additionally, Developer agrees that AdColony may collect App Data and
+        Performance Data, including Pseudonymous Identifiers , usage data, and
+        streaming data, with regard to the Developer Apps (and included content)
+        within which AdColony Ads are routed and/or served and (i) disclose such
+        information to third parties (including Advertisers and attribution
+        partners) as reasonably necessary in connection with the operation of
+        the AdColony Platform, (ii) disclose such data if required by any court
+        order, process, law or governmental agency; (iii) disclose such data
+        generally when it is aggregated, such that the specific information
+        relating to Developer is not identified as such; and (iv) use such
+        information for AdColony’s internal business purposes, including to
+        develop and improve the AdColony SDK and AdColony Platform. AdColony
+        will collect and use the data in accordance with the Digital Advertising
+        Alliance Self-Regulatory Principles (“DAA Codes”), which are available
+        at http://www.aboutads.info/principles and AdColony Privacy Policy,
+        which is available at https://www.adcolony.com/privacy-policy/ (as
+        updated from time to time) and is hereby incorporated by reference.
+    
+        2. Compliance with Laws. Developer agrees to comply with all Privacy
+        Requirements (as defined below), including conspicuously posting a
+        privacy policy that accurately describes the Developer’s and third
+        parties’ collection, use, and disclosure of end user data from the
+        Developer Apps, which include disclosure that third parties may collect
+        or receive information and use that information to provide measurement
+        services and targeted ads, and disclosure of how and where users can
+        opt-out of collection and use of information for ad targeting. Developer
+        will not pass any PII to AdColony unless expressly permitted in writing,
+        and as permitted under any Privacy Requirements. Developer represents
+        and warrants that any data Developer provides to AdColony regarding
+        devices, location, or users, and the ability for AdColony to collect the
+        App Data and Performance Data, is permitted and provided in compliance
+        with all Privacy Requirements including Developer’s posted privacy
+        policy. Developer further represents and warrants that it has made any
+        and all disclosures and obtained any and all consents or permissions
+        required by law with respect to Developer’s privacy practices, including
+        without limitation: (a) any end user data Developer collects, uses,
+        and/or discloses, (b) the use and disclosure of App Data and Performance
+        Data to AdColony via the AdColony SDK and AdColony Platform, and (c)
+        notice and parental consent required by the Children’s Online Privacy
+        Protection Act (“COPPA”). AdColony reserves the right to modify,
+        suspend, or terminate this Agreement should Developer violate this
+        Section, and/or to remain compliant with law.
+
+        C. “Privacy Requirements” means all (i) applicable laws (including
+        COPPA), governmental regulations, court or government agency orders, and
+        decrees relating in any manner to the collection, use, or dissemination
+        of information from or about users, user traffic, or otherwise relating
+        to privacy rights; (ii) the DAA Codes; and (iii) Developer’s posted
+        privacy policy.
+
+    6. Developer Payments
+
+        1. Developer Payment. Subject to the terms and conditions of this
+        Agreement, AdColony shall pay to Developer Net Revenue amounts
+        determined by AdColony. All revenue received from activities that
+        AdColony deems to be fraudulent may be refunded to the Advertiser(s) in
+        AdColony’s sole discretion.
+
+        2. Payment Terms. AdColony will pay any Developer Payment due to
+        Developer sixty (60) days after the completion of the month in which
+        such AdColony Ad campaign runs; provided that, AdColony may withhold
+        payment until the following month for Developer Payment amounts less
+        than $100 U.S. Developer shall be responsible for any bank, transfer or
+        transaction fees (e.g., PayPal). AdColony may deduct any withholding,
+        sales, value added, and other applicable taxes (other than its net
+        income taxes) as required by law. Developer is responsible for paying
+        any other taxes, duties, or fees for which Developer is legally
+        responsible.
+
+        3. Earnings are forfeited by publisher if a) the publisher’s lifetime
+        earnings are less than $100 and it has been more than 12 months since
+        the publisher had earnings or b) the publisher has not provided payment
+        information, outstanding earnings are less than $1,000 and it has been
+        more than 12 months since the publisher had earnings.
+
+
+    7. Term and Termination
+
+        1. Term. This Agreement is effective until terminated in accordance with
+        this Agreement.
+
+        2. Termination by AdColony. AdColony may terminate this Agreement at any
+        time by providing sixty (60) days’ notice to Developer. Additionally,
+        AdColony may terminate this Agreement immediately if Developer breaches
+        any provision of this Agreement.
+
+        3. Termination by Developer. Developer may terminate this Agreement at
+        any time by providing written notice to AdColony (email to suffice),
+        ceasing all use of the AdColony Platform and AdColony Property, and
+        destroying or removing from all hard drives, networks, and other storage
+        media all copies of the AdColony Property.
+
+        4. Effect of Termination. Upon termination of this Agreement by
+        Developer, the Agreement (including all rights and licenses granted and
+        obligations assumed hereunder) will remain in force and effect until the
+        completion of all AdColony Ad campaigns associated with the Developer
+        Apps in effect on the date of such termination (“Sell-Off Period”).
+        AdColony’s payment obligations will remain in effect during the Sell-Off
+        Period. Upon any termination of this Agreement, each party will promptly
+        return or destroy all copies of any Confidential Information in its
+        possession or control. Sections 3, 7(D) through 13 shall survive any
+        expiration or termination of this Agreement.
+
+    8. Confidentiality
+
+        A. Definition. “Confidential Information” means any and all business,
+        technical and financial information or material of a party, whether
+        revealed orally, visually, or in tangible or electronic form, that is
+        not generally known to the public, which is disclosed to or made
+        available by one party (the “Disclosing Party”) to the other, or which
+        one party becomes aware of pursuant to this Agreement (the “Receiving
+        Party”). The AdColony SDK is AdColony’s Confidential Information, and
+        the terms and conditions of this Agreement shall remain confidential.
+        The failure of a Disclosing Party to designate as “confidential” any
+        such information or material at the time of disclosure shall not result
+        in a loss of status as Confidential Information to the Disclosing Party.
+        Confidential Information shall not include information which: (i) is in
+        or has entered the public domain through no breach of this Agreement or
+        other act by a Receiving Party; (ii) a Receiving Party rightfully knew
+        prior to the time that it was disclosed to a Receiving Party hereunder;
+        (iii) a Receiving Party received without restriction from a third-party
+        lawfully possessing and lawfully entitled to disclose such information
+        without breach of this Agreement; or (iv) was independently developed by
+        employees of the Receiving Party who had no access to such information.
+
+        B. Use and Disclosure Restrictions. The Receiving Party shall not use
+        the Confidential Information except as necessary to exercise its rights
+        or perform its obligations under this Agreement, and shall not disclose
+        the Confidential Information to any third party, except to those of its
+        employees, subcontractors, and advisers that need to know such
+        Confidential Information for the purposes of this Agreement, provided
+        that each such employee, subcontractor, and advisor is subject to a
+        written agreement that includes binding use and disclosure restrictions
+        that are at least as protective of the Confidential Information as those
+        set forth herein. The Receiving Party will use at least the efforts such
+        party ordinarily uses with respect to its own confidential information
+        of similar nature and importance to maintain the confidentiality of all
+        Confidential Information in its possession or control, but in no event
+        less than reasonable efforts. The foregoing obligations will not
+        restrict the Receiving Party from disclosing any Confidential
+        Information required by applicable law; provided that, the Receiving
+        Party must use reasonable efforts to give the Disclosing Party advance
+        notice thereof (i.e., so as to afford Disclosing Party an opportunity to
+        intervene and seek an order or other relief for protecting its
+        Confidential Information from any unauthorized use or disclosure) and
+        the Confidential Information is only disclosed to the extent required by
+        law. The Receiving Party shall return all of the Disclosing Party’s
+        Confidential Information to the Disclosing Party or destroy the same, no
+        later than fifteen (15) days after Disclosing Party’s request, or when
+        Receiving Party no longer needs Confidential Information for its
+        authorized purposes hereunder.
+
+    9. Representations and Warranties of Developer. Developer represents,
+    warrants and covenants to AdColony that: (a) it has all necessary rights,
+    title, and interest in and to the Developer Apps, and it has obtained all
+    necessary rights, releases, and permissions to grant the rights granted to
+    AdColony in this Agreement, including to allow AdColony to sell and insert
+    the AdColony Ads as contemplated herein; (b) it shall not use the AdColony
+    Platform to collect or discern any personally identifiable information of
+    end users, or use the data received through the AdColony Platform to re-
+    identify an individual; and (c) the Developer Apps will comply with the
+    Developer Apps Content Policy, and will not infringe upon, violate, or
+    misappropriate any third party right, including any intellectual property,
+    privacy, or publicity rights.
+
+    10. Warranty Disclaimer. THE ADCOLONY SDK AND ADCOLONY PLATFORM ARE PROVIDED
+    “AS IS”. ADCOLONY DOES NOT MAKE ANY WARRANTIES, EXPRESS, IMPLIED, STATUTORY
+    OR OTHERWISE, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY,
+    NON-INFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, AND ANY IMPLIED
+    WARRANTIES ARISING FROM COURSE OF DEALING OR PERFORMANCE. ADCOLONY AND ITS
+    SUPPLIERS, LICENSORS, AND PARTNERS DO NOT WARRANT THAT THE ADCOLONY PLATFORM
+    OR ADCOLONY SDK WILL BE CORRECT, UNINTERRUPTED OR ERROR-FREE, THAT DEFECTS
+    WILL BE CORRECTED, OR THAT THE ADCOLONY PLATFORM OR ADCOLONY SDK ARE FREE OF
+    VIRUSES OR OTHER HARMFUL COMPONENTS. ADCOLONY DOES NOT WARRANT THE RESULTS
+    OF USE OF THE ADCOLONY PLATFORM OR ADCOLONY SDK. DEVELOPER ACKNOWLEDGES THAT
+    ADCOLONY MAY MODIFY OR SUSPEND THE ADCOLONY PLATFORM AT ANY TIME IN ITS SOLE
+    DISCRETION AND WITHOUT NOTICE.
+
+    11. Indemnification.
+
+        1. Developer Indemnification. Developer agrees to indemnify, defend, and
+        hold harmless AdColony and its affiliates, and their directors,
+        officers, employees, and agents from and against any liabilities,
+        damages, costs and expenses (including reasonable attorneys’ fees)
+        arising out of any claim, demand, action, or proceeding initiated by a
+        third party arising from or in connection with any breach of Developer’s
+        obligations, representations or warranties set forth in this Agreement;
+        provided that, AdColony: (a) promptly notifies Developer in writing of
+        the claim, except that any failure to provide this notice promptly only
+        relieves Developer of its responsibility to the extent its defense is
+        materially prejudiced by the delay; (b) grants Developer sole control of
+        the defense and/or settlement of the claim; and (c) reasonably
+        cooperates with Developer in connection with such claim at Developer’s
+        cost and expense.
+
+        2. AdColony Indemnification. AdColony agrees to indemnify, reimburse and
+        hold harmless, Developer, its officers, directors, employees, and agents
+        from and against any and all third party claims, liabilities, demands,
+        causes of action, damages, losses and expenses, including, without
+        limitation, reasonable attorneys’ fees and costs of suit, arising out of
+        or in connection with AdColony’s infringement or misappropriation of a
+        third party U.S. copyright, trademark or trade secret by the use of the
+        AdColony Platform and/or the AdColony SDK by Developer as permitted
+        hereunder; provided that, Developer: (a) promptly notifies AdColony in
+        writing of the claim, except that any failure to provide this notice
+        promptly only relieves AdColony of its responsibility to the extent its
+        defense is materially prejudiced by the delay; (b) grants AdColony sole
+        control of the defense and/or settlement of the claim; and (c)
+        reasonably cooperates with AdColony in connection with such claim at
+        AdColony’s cost and expense. In addition, if the use of the AdColony
+        Property by Developer has become, or in AdColony’s opinion is likely to
+        become, the subject of any claim of infringement, AdColony may at its
+        option and expense (i) procure for Developer the right to continue using
+        the AdColony Property as set forth hereunder; (ii) replace or modify the
+        AdColony Property to make it non- infringing so long as the AdColony
+        Property has substantially equivalent functionality; or (iii) if options
+        (i) or (ii) are not reasonably practicable, terminate this Agreement.
+        AdColony shall have no liability or obligation under this Section with
+        respect to any claim if such claim is caused in whole or in part by (x)
+        compliance with designs, data, instructions, or specifications provided
+        by Developer; (y) modification of the AdColony Property by any party
+        other than AdColony without AdColony’s express consent; or (z) the
+        combination, operation, or use of the AdColony Property with other
+        applications, portions of applications, product(s), data or services
+        where the AdColony Property would not by itself be infringing unless
+        AdColony has required or expressly allowed such combination, operation,
+        or use. THE INDEMNIFICATION RIGHTS CONTAINED IN THIS SECTION 11 ARE
+        DEVELOPER’S SOLE REMEDY FOR THIRD PARTY INFRINGEMENT CLAIMS RELATING TO
+        ADCOLONY’S SDK AND THE ADCOLONY PLATFORM.
+
+    12. Limitation of Liability. EXCEPT WITH RESPECT TO INDEMNIFICATION
+    OBLIGATIONS HEREIN AND BREACHES OF SECTIONS 2 and 8, NEITHER PARTY SHALL BE
+    LIABLE TO OTHER PARTY FOR ANY PUNITIVE, INCIDENTAL, INDIRECT, SPECIAL,
+    RELIANCE OR CONSEQUENTIAL DAMAGES, INCLUDING LOST BUSINESS, DATA, REVENUE,
+    OR ANTICIPATED PROFITS, WHETHER BASED ON BREACH OF CONTRACT, TORT (INCLUDING
+    NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT A PARTY WAS ADVISED OF THE
+    POSSIBILITY OF SUCH LOSS OR DAMAGES. EXCEPT WITH RESPECT TO INDEMNIFICATION
+    OBLIGATIONS HEREIN AND BREACHES OF SECTIONS 2 and 8, IN NO EVENT WILL EITHER
+    PARTY’S AGGREGATE LIABILITY UNDER THIS AGREEMENT EXCEED THE TOTAL DEVELOPER
+    PAYMENT PAYABLE TO DEVELOPER UNDER THIS AGREEMENT BY ADCOLONY IN THE TWELVE
+    (12) MONTH PERIOD IMMEDIATELY PRECEDING THE DATE OF THE CLAIM.
+
+    13. General.
+
+        1. Relationship of the Parties. Each Party shall be and act as an
+        independent contractor and not as partner, joint venturer, or agent of
+        the other. No party shall have any right to obligate or bind any other
+        party.
+
+        2. Assignment. Neither party may assign any of its rights or obligations
+        under this Agreement without the prior written consent of the other
+        party, except in connection with any merger (by operation of law or
+        otherwise), consolidation, reorganization, change in control or sale of
+        all or substantially all of its assets related to this Agreement or
+        similar transaction. Notwithstanding the foregoing, Developer may not
+        assign this Agreement to a direct competitor of AdColony without
+        AdColony’s prior written consent. This Agreement inures to the benefit
+        of and shall be binding on the parties’ permitted assignees, transferees
+        and successors.
+
+        3. Amendments; Waiver. No changes or modifications or waivers are to be
+        made to this Agreement unless evidenced in writing and signed for and on
+        behalf of both parties. The failure by either party to insist upon the
+        strict performance of this Agreement, or to exercise any term hereof,
+        will not act as a waiver of any right, promise or term, which will
+        continue in full force and effect.
+
+        4. Governing Law; Jurisdiction. This Agreement shall be governed by, and
+        construed in accordance with, the laws of the State of California,
+        without reference to conflicts of laws principles. The parties agree
+        that the federal and state courts in Los Angeles County, California will
+        have exclusive jurisdiction and venue under this Agreement, and the
+        parties hereby agree to submit to such jurisdiction exclusively.
+
+        5. Entire Agreement. This Agreement contains the entire understanding of
+        the parties regarding its subject matter and supersedes all other
+        agreements and understandings, whether oral or written.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/adcolony-tos-2022.json b/docs/adcolony-tos-2022.json new file mode 100644 index 0000000000..605a6299b9 --- /dev/null +++ b/docs/adcolony-tos-2022.json @@ -0,0 +1,16 @@ +{ + "key": "adcolony-tos-2022", + "short_name": "AdColony TOS for Publishers 2022", + "name": "AdColony Terms of Service for Publishers 2022", + "category": "Proprietary Free", + "owner": "AdColony", + "homepage_url": "https://support.adcolony.com/helpdesk/terms-of-service-for-publishers/", + "spdx_license_key": "LicenseRef-scancode-adcolony-tos-2022", + "ignorable_urls": [ + "http://www.aboutads.info/principles", + "https://www.adcolony.com/privacy-policy/" + ], + "ignorable_emails": [ + "support@adcolony.com" + ] +} \ No newline at end of file diff --git a/docs/adcolony-tos-2022.yml b/docs/adcolony-tos-2022.yml new file mode 100644 index 0000000000..4cc9ea079d --- /dev/null +++ b/docs/adcolony-tos-2022.yml @@ -0,0 +1,12 @@ +key: adcolony-tos-2022 +short_name: AdColony TOS for Publishers 2022 +name: AdColony Terms of Service for Publishers 2022 +category: Proprietary Free +owner: AdColony +homepage_url: https://support.adcolony.com/helpdesk/terms-of-service-for-publishers/ +spdx_license_key: LicenseRef-scancode-adcolony-tos-2022 +ignorable_urls: + - http://www.aboutads.info/principles + - https://www.adcolony.com/privacy-policy/ +ignorable_emails: + - support@adcolony.com diff --git a/docs/addthis-mobile-sdk-1.0.LICENSE b/docs/addthis-mobile-sdk-1.0.LICENSE index 42a9afb385..be40656f78 100644 --- a/docs/addthis-mobile-sdk-1.0.LICENSE +++ b/docs/addthis-mobile-sdk-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: addthis-mobile-sdk-1.0 +short_name: AddThis Mobile Application SDK License 1.0 +name: AddThis Mobile Application SDK License 1.0 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: https://www.addthis.com/appsdk-license-agreement#.VvMVkRIrJZ1 +spdx_license_key: LicenseRef-scancode-addthis-mobile-sdk-1.0 +other_urls: + - http://www.addthis.com/about +minimum_coverage: 80 +ignorable_urls: + - http://www.addthis.com/tos +ignorable_emails: + - SUPPORT@ADDTHIS.COM +--- + License Agreement ADDTHIS MOBILE APPLICATION SDK LICENSE AGREEMENT diff --git a/docs/addthis-mobile-sdk-1.0.html b/docs/addthis-mobile-sdk-1.0.html index 0a54d5a7aa..dab5a1ff0a 100644 --- a/docs/addthis-mobile-sdk-1.0.html +++ b/docs/addthis-mobile-sdk-1.0.html @@ -184,7 +184,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/addthis-mobile-sdk-1.0.json b/docs/addthis-mobile-sdk-1.0.json index 75789447a1..7f0508f6fc 100644 --- a/docs/addthis-mobile-sdk-1.0.json +++ b/docs/addthis-mobile-sdk-1.0.json @@ -1 +1,19 @@ -{"key": "addthis-mobile-sdk-1.0", "short_name": "AddThis Mobile Application SDK License 1.0", "name": "AddThis Mobile Application SDK License 1.0", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "https://www.addthis.com/appsdk-license-agreement#.VvMVkRIrJZ1", "spdx_license_key": "LicenseRef-scancode-addthis-mobile-sdk-1.0", "other_urls": ["http://www.addthis.com/about"], "minimum_coverage": 80, "ignorable_urls": ["http://www.addthis.com/tos"], "ignorable_emails": ["SUPPORT@ADDTHIS.COM"]} \ No newline at end of file +{ + "key": "addthis-mobile-sdk-1.0", + "short_name": "AddThis Mobile Application SDK License 1.0", + "name": "AddThis Mobile Application SDK License 1.0", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "https://www.addthis.com/appsdk-license-agreement#.VvMVkRIrJZ1", + "spdx_license_key": "LicenseRef-scancode-addthis-mobile-sdk-1.0", + "other_urls": [ + "http://www.addthis.com/about" + ], + "minimum_coverage": 80, + "ignorable_urls": [ + "http://www.addthis.com/tos" + ], + "ignorable_emails": [ + "SUPPORT@ADDTHIS.COM" + ] +} \ No newline at end of file diff --git a/docs/adi-bsd.LICENSE b/docs/adi-bsd.LICENSE index ad117a48e3..b0474785f9 100644 --- a/docs/adi-bsd.LICENSE +++ b/docs/adi-bsd.LICENSE @@ -1,3 +1,25 @@ +--- +key: adi-bsd +short_name: ADI BSD +name: ADI BSD License +category: Permissive +owner: Analog Devices +homepage_url: https://docs.blackfin.uclinux.org/doku.php?id=adi_bsd +notes: | + the home page contains these comments This is a slightly modified version + of the three clause BSD license. It adds a clause to explicitly state the + patent protection that this license provides (which is none). The ADI BSD + License is similar to the Clear BSD License, which the Free Software + Foundation indicates is compatible with both GPLv2 and GPLv3. If you have + any questions about license compatibility - consult your nearest lawyer. + Before incorporating code licensed under the ADI BSD license into projects + which you are going to ship in a end product, you must ensure that you have + the patent rights to do. +spdx_license_key: LicenseRef-scancode-adi-bsd +text_urls: + - https://docs.blackfin.uclinux.org/doku.php?id=adi_bsd +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/adi-bsd.html b/docs/adi-bsd.html index c30bc136da..384aa7fca5 100644 --- a/docs/adi-bsd.html +++ b/docs/adi-bsd.html @@ -179,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adi-bsd.json b/docs/adi-bsd.json index fde57097c1..3fb529b84a 100644 --- a/docs/adi-bsd.json +++ b/docs/adi-bsd.json @@ -1 +1,13 @@ -{"key": "adi-bsd", "short_name": "ADI BSD", "name": "ADI BSD License", "category": "Permissive", "owner": "Analog Devices", "homepage_url": "https://docs.blackfin.uclinux.org/doku.php?id=adi_bsd", "notes": "the home page contains these comments This is a slightly modified version\nof the three clause BSD license. It adds a clause to explicitly state the\npatent protection that this license provides (which is none). The ADI BSD\nLicense is similar to the Clear BSD License, which the Free Software\nFoundation indicates is compatible with both GPLv2 and GPLv3. If you have\nany questions about license compatibility - consult your nearest lawyer.\nBefore incorporating code licensed under the ADI BSD license into projects\nwhich you are going to ship in a end product, you must ensure that you have\nthe patent rights to do.\n", "spdx_license_key": "LicenseRef-scancode-adi-bsd", "text_urls": ["https://docs.blackfin.uclinux.org/doku.php?id=adi_bsd"]} \ No newline at end of file +{ + "key": "adi-bsd", + "short_name": "ADI BSD", + "name": "ADI BSD License", + "category": "Permissive", + "owner": "Analog Devices", + "homepage_url": "https://docs.blackfin.uclinux.org/doku.php?id=adi_bsd", + "notes": "the home page contains these comments This is a slightly modified version\nof the three clause BSD license. It adds a clause to explicitly state the\npatent protection that this license provides (which is none). The ADI BSD\nLicense is similar to the Clear BSD License, which the Free Software\nFoundation indicates is compatible with both GPLv2 and GPLv3. If you have\nany questions about license compatibility - consult your nearest lawyer.\nBefore incorporating code licensed under the ADI BSD license into projects\nwhich you are going to ship in a end product, you must ensure that you have\nthe patent rights to do.\n", + "spdx_license_key": "LicenseRef-scancode-adi-bsd", + "text_urls": [ + "https://docs.blackfin.uclinux.org/doku.php?id=adi_bsd" + ] +} \ No newline at end of file diff --git a/docs/adobe-acrobat-reader-eula.LICENSE b/docs/adobe-acrobat-reader-eula.LICENSE index c347a246a1..86e5f3f33f 100644 --- a/docs/adobe-acrobat-reader-eula.LICENSE +++ b/docs/adobe-acrobat-reader-eula.LICENSE @@ -1,3 +1,16 @@ +--- +key: adobe-acrobat-reader-eula +short_name: Adobe Acrobat Reader EULA +name: Adobe Acrobat Reader EULA +category: Proprietary Free +owner: Adobe Systems +spdx_license_key: LicenseRef-scancode-adobe-acrobat-reader-eula +other_urls: + - http://www.adobe.com/products/reader/distribution.html +ignorable_urls: + - http://www.adobe.com/ +--- + Adobe Acrobat Reader EULA ADOBE diff --git a/docs/adobe-acrobat-reader-eula.html b/docs/adobe-acrobat-reader-eula.html index 3e081d7af3..b80324de5f 100644 --- a/docs/adobe-acrobat-reader-eula.html +++ b/docs/adobe-acrobat-reader-eula.html @@ -215,7 +215,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adobe-acrobat-reader-eula.json b/docs/adobe-acrobat-reader-eula.json index ba5904648b..63385910c2 100644 --- a/docs/adobe-acrobat-reader-eula.json +++ b/docs/adobe-acrobat-reader-eula.json @@ -1 +1,14 @@ -{"key": "adobe-acrobat-reader-eula", "short_name": "Adobe Acrobat Reader EULA", "name": "Adobe Acrobat Reader EULA", "category": "Proprietary Free", "owner": "Adobe Systems", "spdx_license_key": "LicenseRef-scancode-adobe-acrobat-reader-eula", "other_urls": ["http://www.adobe.com/products/reader/distribution.html"], "ignorable_urls": ["http://www.adobe.com/"]} \ No newline at end of file +{ + "key": "adobe-acrobat-reader-eula", + "short_name": "Adobe Acrobat Reader EULA", + "name": "Adobe Acrobat Reader EULA", + "category": "Proprietary Free", + "owner": "Adobe Systems", + "spdx_license_key": "LicenseRef-scancode-adobe-acrobat-reader-eula", + "other_urls": [ + "http://www.adobe.com/products/reader/distribution.html" + ], + "ignorable_urls": [ + "http://www.adobe.com/" + ] +} \ No newline at end of file diff --git a/docs/adobe-air-sdk-2014.LICENSE b/docs/adobe-air-sdk-2014.LICENSE index 16bc552109..9b964c56fb 100644 --- a/docs/adobe-air-sdk-2014.LICENSE +++ b/docs/adobe-air-sdk-2014.LICENSE @@ -1,3 +1,22 @@ +--- +key: adobe-air-sdk-2014 +short_name: Adobe Air SDK EULA - 2014 +name: Adobe Air SDK EULA - 2014 +category: Proprietary Free +owner: Adobe Systems +homepage_url: http://www.adobe.com/products/air/sdk-eula.html +spdx_license_key: LicenseRef-scancode-adobe-air-sdk-2014 +other_urls: + - www.adobe.com/go/redistributeairsdk + - http://www.adobe.com/products/air/sdk-agreement.html +ignorable_urls: + - http://www.adobe.com/go/air_developer_privacy + - http://www.adobe.com/go/redistributeairsdk + - http://www.adobe.com/go/thirdparty + - http://www.adobe.com/products/air/crosspromotion-program-agreement.html + - http://www.mpegla.com/ +--- + Adobe AIR SDK - Warranty disclaimer and license agreement ADOBE SYSTEMS INCORPORATED SDK LICENSE AGREEMENT diff --git a/docs/adobe-air-sdk-2014.html b/docs/adobe-air-sdk-2014.html index a25ede57c7..359d91b5a1 100644 --- a/docs/adobe-air-sdk-2014.html +++ b/docs/adobe-air-sdk-2014.html @@ -250,7 +250,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adobe-air-sdk-2014.json b/docs/adobe-air-sdk-2014.json index b47b440db1..f556a4bed4 100644 --- a/docs/adobe-air-sdk-2014.json +++ b/docs/adobe-air-sdk-2014.json @@ -1 +1,20 @@ -{"key": "adobe-air-sdk-2014", "short_name": "Adobe Air SDK EULA - 2014", "name": "Adobe Air SDK EULA - 2014", "category": "Proprietary Free", "owner": "Adobe Systems", "homepage_url": "http://www.adobe.com/products/air/sdk-eula.html", "spdx_license_key": "LicenseRef-scancode-adobe-air-sdk-2014", "other_urls": ["www.adobe.com/go/redistributeairsdk", "http://www.adobe.com/products/air/sdk-agreement.html"], "ignorable_urls": ["http://www.adobe.com/go/air_developer_privacy", "http://www.adobe.com/go/redistributeairsdk", "http://www.adobe.com/go/thirdparty", "http://www.adobe.com/products/air/crosspromotion-program-agreement.html", "http://www.mpegla.com/"]} \ No newline at end of file +{ + "key": "adobe-air-sdk-2014", + "short_name": "Adobe Air SDK EULA - 2014", + "name": "Adobe Air SDK EULA - 2014", + "category": "Proprietary Free", + "owner": "Adobe Systems", + "homepage_url": "http://www.adobe.com/products/air/sdk-eula.html", + "spdx_license_key": "LicenseRef-scancode-adobe-air-sdk-2014", + "other_urls": [ + "www.adobe.com/go/redistributeairsdk", + "http://www.adobe.com/products/air/sdk-agreement.html" + ], + "ignorable_urls": [ + "http://www.adobe.com/go/air_developer_privacy", + "http://www.adobe.com/go/redistributeairsdk", + "http://www.adobe.com/go/thirdparty", + "http://www.adobe.com/products/air/crosspromotion-program-agreement.html", + "http://www.mpegla.com/" + ] +} \ No newline at end of file diff --git a/docs/adobe-air-sdk.LICENSE b/docs/adobe-air-sdk.LICENSE index 54e799d1d5..2a6026a29f 100644 --- a/docs/adobe-air-sdk.LICENSE +++ b/docs/adobe-air-sdk.LICENSE @@ -1,3 +1,21 @@ +--- +key: adobe-air-sdk +short_name: Adobe AIR SDK EULA - 2008 +name: Adobe AIR SDK EULA - 2008 +category: Proprietary Free +owner: Adobe Systems +homepage_url: http://www.adobe.com/products/eulas/ +spdx_license_key: LicenseRef-scancode-adobe-air-sdk +faq_url: http://www.adobe.com/products/eulas/ +other_urls: + - http://www.adobe.com/products/eulas/ +ignorable_urls: + - http://www.adobe.com/go/redistributeairsdk + - http://www.adobe.com/go/thirdparty + - http://www.adobe.com/products/eulas/ + - http://www.mpegla.com/ +--- + Adobe AIR SDK License http://www.adobe.com/products/eulas/ diff --git a/docs/adobe-air-sdk.html b/docs/adobe-air-sdk.html index c66d5fe5c7..ab1f191360 100644 --- a/docs/adobe-air-sdk.html +++ b/docs/adobe-air-sdk.html @@ -223,7 +223,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adobe-air-sdk.json b/docs/adobe-air-sdk.json index c1e468c4b8..ef6184daa3 100644 --- a/docs/adobe-air-sdk.json +++ b/docs/adobe-air-sdk.json @@ -1 +1,19 @@ -{"key": "adobe-air-sdk", "short_name": "Adobe AIR SDK EULA - 2008", "name": "Adobe AIR SDK EULA - 2008", "category": "Proprietary Free", "owner": "Adobe Systems", "homepage_url": "http://www.adobe.com/products/eulas/", "spdx_license_key": "LicenseRef-scancode-adobe-air-sdk", "faq_url": "http://www.adobe.com/products/eulas/", "other_urls": ["http://www.adobe.com/products/eulas/"], "ignorable_urls": ["http://www.adobe.com/go/redistributeairsdk", "http://www.adobe.com/go/thirdparty", "http://www.adobe.com/products/eulas/", "http://www.mpegla.com/"]} \ No newline at end of file +{ + "key": "adobe-air-sdk", + "short_name": "Adobe AIR SDK EULA - 2008", + "name": "Adobe AIR SDK EULA - 2008", + "category": "Proprietary Free", + "owner": "Adobe Systems", + "homepage_url": "http://www.adobe.com/products/eulas/", + "spdx_license_key": "LicenseRef-scancode-adobe-air-sdk", + "faq_url": "http://www.adobe.com/products/eulas/", + "other_urls": [ + "http://www.adobe.com/products/eulas/" + ], + "ignorable_urls": [ + "http://www.adobe.com/go/redistributeairsdk", + "http://www.adobe.com/go/thirdparty", + "http://www.adobe.com/products/eulas/", + "http://www.mpegla.com/" + ] +} \ No newline at end of file diff --git a/docs/adobe-color-profile-bundling.LICENSE b/docs/adobe-color-profile-bundling.LICENSE index 5fd55f1ad5..4b072d6bae 100644 --- a/docs/adobe-color-profile-bundling.LICENSE +++ b/docs/adobe-color-profile-bundling.LICENSE @@ -1,3 +1,16 @@ +--- +key: adobe-color-profile-bundling +short_name: Adobe Color Profile Bundling agreement +name: Adobe Color Profile Bundling agreement +category: Proprietary Free +owner: Adobe Systems +homepage_url: https://www.adobe.com/support/downloads/iccprofiles/icc_eula_win_dist.html +spdx_license_key: LicenseRef-scancode-adobe-color-profile-bundling +ignorable_urls: + - http://partners.adobe.com/ + - http://www.adobe.com/ +--- + ADOBE SYSTEMS INCORPORATED COLOR PROFILE BUNDLING AGREEMENT NOTICE TO USER: PLEASE READ THIS CONTRACT CAREFULLY. BY USING ALL OR ANY PORTION OF THE SOFTWARE YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT. YOU AGREE THAT THIS AGREEMENT IS ENFORCEABLE LIKE ANY WRITTEN NEGOTIATED AGREEMENT SIGNED BY YOU. IF YOU DO NOT AGREE WITH THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE. diff --git a/docs/adobe-color-profile-bundling.html b/docs/adobe-color-profile-bundling.html index e7396ebf33..16bd932606 100644 --- a/docs/adobe-color-profile-bundling.html +++ b/docs/adobe-color-profile-bundling.html @@ -195,7 +195,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adobe-color-profile-bundling.json b/docs/adobe-color-profile-bundling.json index 4dee9850a9..7b5105a7bb 100644 --- a/docs/adobe-color-profile-bundling.json +++ b/docs/adobe-color-profile-bundling.json @@ -1 +1,13 @@ -{"key": "adobe-color-profile-bundling", "short_name": "Adobe Color Profile Bundling agreement", "name": "Adobe Color Profile Bundling agreement", "category": "Proprietary Free", "owner": "Adobe Systems", "homepage_url": "https://www.adobe.com/support/downloads/iccprofiles/icc_eula_win_dist.html", "spdx_license_key": "LicenseRef-scancode-adobe-color-profile-bundling", "ignorable_urls": ["http://partners.adobe.com/", "http://www.adobe.com/"]} \ No newline at end of file +{ + "key": "adobe-color-profile-bundling", + "short_name": "Adobe Color Profile Bundling agreement", + "name": "Adobe Color Profile Bundling agreement", + "category": "Proprietary Free", + "owner": "Adobe Systems", + "homepage_url": "https://www.adobe.com/support/downloads/iccprofiles/icc_eula_win_dist.html", + "spdx_license_key": "LicenseRef-scancode-adobe-color-profile-bundling", + "ignorable_urls": [ + "http://partners.adobe.com/", + "http://www.adobe.com/" + ] +} \ No newline at end of file diff --git a/docs/adobe-color-profile-license.LICENSE b/docs/adobe-color-profile-license.LICENSE index bb02a885e3..9e1d05073d 100644 --- a/docs/adobe-color-profile-license.LICENSE +++ b/docs/adobe-color-profile-license.LICENSE @@ -1,3 +1,13 @@ +--- +key: adobe-color-profile-license +short_name: Adobe Color Profile License agreement +name: Adobe Color Profile License agreement +category: Proprietary Free +owner: Adobe Systems +homepage_url: https://www.adobe.com/support/downloads/iccprofiles/icc_eula_win_end.html +spdx_license_key: LicenseRef-scancode-adobe-color-profile-license +--- + Color Profile License agreement NOTICE TO USER: PLEASE READ THIS CONTRACT CAREFULLY. BY USING ALL OR ANY PORTION OF THE SOFTWARE, YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE WITH THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE. diff --git a/docs/adobe-color-profile-license.html b/docs/adobe-color-profile-license.html index 27c9202b95..8dd0cf773d 100644 --- a/docs/adobe-color-profile-license.html +++ b/docs/adobe-color-profile-license.html @@ -149,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adobe-color-profile-license.json b/docs/adobe-color-profile-license.json index 3985d554c9..7edcd43154 100644 --- a/docs/adobe-color-profile-license.json +++ b/docs/adobe-color-profile-license.json @@ -1 +1,9 @@ -{"key": "adobe-color-profile-license", "short_name": "Adobe Color Profile License agreement", "name": "Adobe Color Profile License agreement", "category": "Proprietary Free", "owner": "Adobe Systems", "homepage_url": "https://www.adobe.com/support/downloads/iccprofiles/icc_eula_win_end.html", "spdx_license_key": "LicenseRef-scancode-adobe-color-profile-license"} \ No newline at end of file +{ + "key": "adobe-color-profile-license", + "short_name": "Adobe Color Profile License agreement", + "name": "Adobe Color Profile License agreement", + "category": "Proprietary Free", + "owner": "Adobe Systems", + "homepage_url": "https://www.adobe.com/support/downloads/iccprofiles/icc_eula_win_end.html", + "spdx_license_key": "LicenseRef-scancode-adobe-color-profile-license" +} \ No newline at end of file diff --git a/docs/adobe-dng-sdk.LICENSE b/docs/adobe-dng-sdk.LICENSE index a1e177cad0..4d09a2b7de 100644 --- a/docs/adobe-dng-sdk.LICENSE +++ b/docs/adobe-dng-sdk.LICENSE @@ -1,3 +1,18 @@ +--- +key: adobe-dng-sdk +short_name: Adobe DNG SDK License Agreement +name: Adobe DNG SDK License Agreement +category: Proprietary Free +owner: Adobe Systems +homepage_url: https://www.adobe.com/support/downloads/dng/dng_sdk.html +spdx_license_key: LicenseRef-scancode-adobe-dng-sdk +text_urls: + - https://www.adobe.com/support/downloads/dng/dng_sdk_eula_mac.html +ignorable_urls: + - http://www.adobe.com/ + - http://www.adobe.com/products/dng/license.html +--- + DNG SDK License Agreement NOTICE TO USER: diff --git a/docs/adobe-dng-sdk.html b/docs/adobe-dng-sdk.html index ca37b2d849..dd8c7f6bbe 100644 --- a/docs/adobe-dng-sdk.html +++ b/docs/adobe-dng-sdk.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adobe-dng-sdk.json b/docs/adobe-dng-sdk.json index bec76c214b..e8fc1fc0c5 100644 --- a/docs/adobe-dng-sdk.json +++ b/docs/adobe-dng-sdk.json @@ -1 +1,16 @@ -{"key": "adobe-dng-sdk", "short_name": "Adobe DNG SDK License Agreement", "name": "Adobe DNG SDK License Agreement", "category": "Proprietary Free", "owner": "Adobe Systems", "homepage_url": "https://www.adobe.com/support/downloads/dng/dng_sdk.html", "spdx_license_key": "LicenseRef-scancode-adobe-dng-sdk", "text_urls": ["https://www.adobe.com/support/downloads/dng/dng_sdk_eula_mac.html"], "ignorable_urls": ["http://www.adobe.com/", "http://www.adobe.com/products/dng/license.html"]} \ No newline at end of file +{ + "key": "adobe-dng-sdk", + "short_name": "Adobe DNG SDK License Agreement", + "name": "Adobe DNG SDK License Agreement", + "category": "Proprietary Free", + "owner": "Adobe Systems", + "homepage_url": "https://www.adobe.com/support/downloads/dng/dng_sdk.html", + "spdx_license_key": "LicenseRef-scancode-adobe-dng-sdk", + "text_urls": [ + "https://www.adobe.com/support/downloads/dng/dng_sdk_eula_mac.html" + ], + "ignorable_urls": [ + "http://www.adobe.com/", + "http://www.adobe.com/products/dng/license.html" + ] +} \ No newline at end of file diff --git a/docs/adobe-dng-spec-patent.LICENSE b/docs/adobe-dng-spec-patent.LICENSE index c2a82249c6..6548614b25 100644 --- a/docs/adobe-dng-spec-patent.LICENSE +++ b/docs/adobe-dng-spec-patent.LICENSE @@ -1,3 +1,16 @@ +--- +key: adobe-dng-spec-patent +short_name: Adobe DNG Specification patent license +name: Adobe Digital Negative (DNG) Specification patent license +category: Patent License +owner: Adobe Systems +homepage_url: https://helpx.adobe.com/camera-raw/digital-negative.html#dng +spdx_license_key: LicenseRef-scancode-adobe-dng-spec-patent +other_urls: + - https://www.adobe.com/support/downloads/dng/dng_sdk_eula_win.html + - https://android.googlesource.com/platform/external/dng_sdk/+/refs/heads/master/PATENTS +--- + DNG Specification patent license Digital Negative (DNG) Specification patent license diff --git a/docs/adobe-dng-spec-patent.html b/docs/adobe-dng-spec-patent.html index 3fb06d58ae..0e99ab6344 100644 --- a/docs/adobe-dng-spec-patent.html +++ b/docs/adobe-dng-spec-patent.html @@ -164,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adobe-dng-spec-patent.json b/docs/adobe-dng-spec-patent.json index 1aa4c00d32..737176ba55 100644 --- a/docs/adobe-dng-spec-patent.json +++ b/docs/adobe-dng-spec-patent.json @@ -1 +1,13 @@ -{"key": "adobe-dng-spec-patent", "short_name": "Adobe DNG Specification patent license", "name": "Adobe Digital Negative (DNG) Specification patent license", "category": "Patent License", "owner": "Adobe Systems", "homepage_url": "https://helpx.adobe.com/camera-raw/digital-negative.html#dng", "spdx_license_key": "LicenseRef-scancode-adobe-dng-spec-patent", "other_urls": ["https://www.adobe.com/support/downloads/dng/dng_sdk_eula_win.html", "https://android.googlesource.com/platform/external/dng_sdk/+/refs/heads/master/PATENTS"]} \ No newline at end of file +{ + "key": "adobe-dng-spec-patent", + "short_name": "Adobe DNG Specification patent license", + "name": "Adobe Digital Negative (DNG) Specification patent license", + "category": "Patent License", + "owner": "Adobe Systems", + "homepage_url": "https://helpx.adobe.com/camera-raw/digital-negative.html#dng", + "spdx_license_key": "LicenseRef-scancode-adobe-dng-spec-patent", + "other_urls": [ + "https://www.adobe.com/support/downloads/dng/dng_sdk_eula_win.html", + "https://android.googlesource.com/platform/external/dng_sdk/+/refs/heads/master/PATENTS" + ] +} \ No newline at end of file diff --git a/docs/adobe-eula.LICENSE b/docs/adobe-eula.LICENSE index ec43660847..eac01aa011 100644 --- a/docs/adobe-eula.LICENSE +++ b/docs/adobe-eula.LICENSE @@ -1,3 +1,19 @@ +--- +key: adobe-eula +short_name: Adobe EULA +name: Adobe End User License Agreement +category: Commercial +owner: Adobe Systems +homepage_url: http://www.adobe.com/products/eulas/ +notes: | + This is a generic license for a large number of Adobe EULAs that are very + long and proprietary. +spdx_license_key: LicenseRef-scancode-adobe-eula +minimum_coverage: 70 +ignorable_urls: + - http://www.adobe.com/products/eulas/ +--- + Patents pending in the United States and other countries. Adobe and Flash are either trademarks or registered trademarks in the United States and/or other countries. diff --git a/docs/adobe-eula.html b/docs/adobe-eula.html index 4645f8c828..f63e5f3e76 100644 --- a/docs/adobe-eula.html +++ b/docs/adobe-eula.html @@ -158,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adobe-eula.json b/docs/adobe-eula.json index 226f16714e..d2158698a3 100644 --- a/docs/adobe-eula.json +++ b/docs/adobe-eula.json @@ -1 +1,14 @@ -{"key": "adobe-eula", "short_name": "Adobe EULA", "name": "Adobe End User License Agreement", "category": "Commercial", "owner": "Adobe Systems", "homepage_url": "http://www.adobe.com/products/eulas/", "notes": "This is a generic license for a large number of Adobe EULAs that are very\nlong and proprietary.\n", "spdx_license_key": "LicenseRef-scancode-adobe-eula", "minimum_coverage": 70, "ignorable_urls": ["http://www.adobe.com/products/eulas/"]} \ No newline at end of file +{ + "key": "adobe-eula", + "short_name": "Adobe EULA", + "name": "Adobe End User License Agreement", + "category": "Commercial", + "owner": "Adobe Systems", + "homepage_url": "http://www.adobe.com/products/eulas/", + "notes": "This is a generic license for a large number of Adobe EULAs that are very\nlong and proprietary.\n", + "spdx_license_key": "LicenseRef-scancode-adobe-eula", + "minimum_coverage": 70, + "ignorable_urls": [ + "http://www.adobe.com/products/eulas/" + ] +} \ No newline at end of file diff --git a/docs/adobe-flash-player-eula-21.0.LICENSE b/docs/adobe-flash-player-eula-21.0.LICENSE index a4ae0b643e..ce7fb3754b 100644 --- a/docs/adobe-flash-player-eula-21.0.LICENSE +++ b/docs/adobe-flash-player-eula-21.0.LICENSE @@ -1,3 +1,32 @@ +--- +key: adobe-flash-player-eula-21.0 +short_name: Adobe Flash Player EULA 21.0 +name: Adobe Flash Player EULA 21.0 +category: Proprietary Free +owner: Adobe Systems +homepage_url: http://wwwimages.adobe.com/content/dam/acom/en/legal/licenses-terms/pdf/Flash_Player_21_0.pdf +spdx_license_key: LicenseRef-scancode-adobe-flash-player-eula-21.0 +ignorable_urls: + - http://www.adobe.com/ + - http://www.adobe.com/go/RTMFP + - http://www.adobe.com/go/aatl + - http://www.adobe.com/go/acrobat_distribute + - http://www.adobe.com/go/air_update_details + - http://www.adobe.com/go/flashplayer_security + - http://www.adobe.com/go/licensing + - http://www.adobe.com/go/mpegla + - http://www.adobe.com/go/partners_cds + - http://www.adobe.com/go/privacy + - http://www.adobe.com/go/protected_content + - http://www.adobe.com/go/readerextensions + - http://www.adobe.com/go/rikla_program + - http://www.adobe.com/go/runtime_mobile_EULA + - http://www.adobe.com/go/settingsmanager + - http://www.adobe.com/go/terms + - http://www.adobe.com/go/thirdparty + - http://www.adobe.com/go/update_details_url +--- + ADOBE Personal Computer Software License Agreement diff --git a/docs/adobe-flash-player-eula-21.0.html b/docs/adobe-flash-player-eula-21.0.html index d0630bef4f..844aa177d8 100644 --- a/docs/adobe-flash-player-eula-21.0.html +++ b/docs/adobe-flash-player-eula-21.0.html @@ -595,7 +595,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adobe-flash-player-eula-21.0.json b/docs/adobe-flash-player-eula-21.0.json index e3e27089aa..cdd5cd6e74 100644 --- a/docs/adobe-flash-player-eula-21.0.json +++ b/docs/adobe-flash-player-eula-21.0.json @@ -1 +1,29 @@ -{"key": "adobe-flash-player-eula-21.0", "short_name": "Adobe Flash Player EULA 21.0", "name": "Adobe Flash Player EULA 21.0", "category": "Proprietary Free", "owner": "Adobe Systems", "homepage_url": "http://wwwimages.adobe.com/content/dam/acom/en/legal/licenses-terms/pdf/Flash_Player_21_0.pdf", "spdx_license_key": "LicenseRef-scancode-adobe-flash-player-eula-21.0", "ignorable_urls": ["http://www.adobe.com/", "http://www.adobe.com/go/RTMFP", "http://www.adobe.com/go/aatl", "http://www.adobe.com/go/acrobat_distribute", "http://www.adobe.com/go/air_update_details", "http://www.adobe.com/go/flashplayer_security", "http://www.adobe.com/go/licensing", "http://www.adobe.com/go/mpegla", "http://www.adobe.com/go/partners_cds", "http://www.adobe.com/go/privacy", "http://www.adobe.com/go/protected_content", "http://www.adobe.com/go/readerextensions", "http://www.adobe.com/go/rikla_program", "http://www.adobe.com/go/runtime_mobile_EULA", "http://www.adobe.com/go/settingsmanager", "http://www.adobe.com/go/terms", "http://www.adobe.com/go/thirdparty", "http://www.adobe.com/go/update_details_url"]} \ No newline at end of file +{ + "key": "adobe-flash-player-eula-21.0", + "short_name": "Adobe Flash Player EULA 21.0", + "name": "Adobe Flash Player EULA 21.0", + "category": "Proprietary Free", + "owner": "Adobe Systems", + "homepage_url": "http://wwwimages.adobe.com/content/dam/acom/en/legal/licenses-terms/pdf/Flash_Player_21_0.pdf", + "spdx_license_key": "LicenseRef-scancode-adobe-flash-player-eula-21.0", + "ignorable_urls": [ + "http://www.adobe.com/", + "http://www.adobe.com/go/RTMFP", + "http://www.adobe.com/go/aatl", + "http://www.adobe.com/go/acrobat_distribute", + "http://www.adobe.com/go/air_update_details", + "http://www.adobe.com/go/flashplayer_security", + "http://www.adobe.com/go/licensing", + "http://www.adobe.com/go/mpegla", + "http://www.adobe.com/go/partners_cds", + "http://www.adobe.com/go/privacy", + "http://www.adobe.com/go/protected_content", + "http://www.adobe.com/go/readerextensions", + "http://www.adobe.com/go/rikla_program", + "http://www.adobe.com/go/runtime_mobile_EULA", + "http://www.adobe.com/go/settingsmanager", + "http://www.adobe.com/go/terms", + "http://www.adobe.com/go/thirdparty", + "http://www.adobe.com/go/update_details_url" + ] +} \ No newline at end of file diff --git a/docs/adobe-flex-4-sdk.LICENSE b/docs/adobe-flex-4-sdk.LICENSE index 0344028d6e..20317d4484 100644 --- a/docs/adobe-flex-4-sdk.LICENSE +++ b/docs/adobe-flex-4-sdk.LICENSE @@ -1,3 +1,20 @@ +--- +key: adobe-flex-4-sdk +short_name: Adobe Flex 4 SDK SLA +name: Adobe Flex 4 SDK Software License Agreement +category: Proprietary Free +owner: Adobe Systems +homepage_url: https://wwwimages2.adobe.com/content/dam/acom/en/legal/licenses-terms/pdf/Adobe%20Flex%20SDK_4.0.pdf +spdx_license_key: LicenseRef-scancode-adobe-flex-4-sdk +text_urls: + - https://wwwimages2.adobe.com/content/dam/acom/en/legal/licenses-terms/pdf/Adobe%20Flex%20SDK_4.5.pdf +ignorable_urls: + - http://opensource.adobe.com/wiki/display/flexsdk/Legal+Stuff + - http://www.adobe.com/go/redistributeairsdk + - http://www.adobe.com/go/thirdparty + - http://www.mpegla.com/ +--- + ADOBE SYSTEMS INCORPORATED SOFTWARE DEVELOPMENT KIT LICENSE AGREEMENT diff --git a/docs/adobe-flex-4-sdk.html b/docs/adobe-flex-4-sdk.html index 8e76147fa4..69df439be8 100644 --- a/docs/adobe-flex-4-sdk.html +++ b/docs/adobe-flex-4-sdk.html @@ -255,7 +255,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adobe-flex-4-sdk.json b/docs/adobe-flex-4-sdk.json index 0166ecc076..bef0599dd9 100644 --- a/docs/adobe-flex-4-sdk.json +++ b/docs/adobe-flex-4-sdk.json @@ -1 +1,18 @@ -{"key": "adobe-flex-4-sdk", "short_name": "Adobe Flex 4 SDK SLA", "name": "Adobe Flex 4 SDK Software License Agreement", "category": "Proprietary Free", "owner": "Adobe Systems", "homepage_url": "https://wwwimages2.adobe.com/content/dam/acom/en/legal/licenses-terms/pdf/Adobe%20Flex%20SDK_4.0.pdf", "spdx_license_key": "LicenseRef-scancode-adobe-flex-4-sdk", "text_urls": ["https://wwwimages2.adobe.com/content/dam/acom/en/legal/licenses-terms/pdf/Adobe%20Flex%20SDK_4.5.pdf"], "ignorable_urls": ["http://opensource.adobe.com/wiki/display/flexsdk/Legal+Stuff", "http://www.adobe.com/go/redistributeairsdk", "http://www.adobe.com/go/thirdparty", "http://www.mpegla.com/"]} \ No newline at end of file +{ + "key": "adobe-flex-4-sdk", + "short_name": "Adobe Flex 4 SDK SLA", + "name": "Adobe Flex 4 SDK Software License Agreement", + "category": "Proprietary Free", + "owner": "Adobe Systems", + "homepage_url": "https://wwwimages2.adobe.com/content/dam/acom/en/legal/licenses-terms/pdf/Adobe%20Flex%20SDK_4.0.pdf", + "spdx_license_key": "LicenseRef-scancode-adobe-flex-4-sdk", + "text_urls": [ + "https://wwwimages2.adobe.com/content/dam/acom/en/legal/licenses-terms/pdf/Adobe%20Flex%20SDK_4.5.pdf" + ], + "ignorable_urls": [ + "http://opensource.adobe.com/wiki/display/flexsdk/Legal+Stuff", + "http://www.adobe.com/go/redistributeairsdk", + "http://www.adobe.com/go/thirdparty", + "http://www.mpegla.com/" + ] +} \ No newline at end of file diff --git a/docs/adobe-flex-sdk.LICENSE b/docs/adobe-flex-sdk.LICENSE index f805954a24..b3e0273698 100644 --- a/docs/adobe-flex-sdk.LICENSE +++ b/docs/adobe-flex-sdk.LICENSE @@ -1,3 +1,15 @@ +--- +key: adobe-flex-sdk +short_name: Adobe Flex SDK SLA +name: Adobe Flex SDK SLA +category: Proprietary Free +owner: Adobe Systems +homepage_url: https://raw.githubusercontent.com/nginadfoundation/flexsdk/master/license-adobesdk.htm +spdx_license_key: LicenseRef-scancode-adobe-flex-sdk +ignorable_urls: + - http://www.adobe.com/go/thirdparty +--- + ADOBE SYSTEMS INCORPORATED ADOBE FLEX SOFTWARE DEVELOPMENT KIT Software License Agreement. diff --git a/docs/adobe-flex-sdk.html b/docs/adobe-flex-sdk.html index 36002b6334..dc93d85965 100644 --- a/docs/adobe-flex-sdk.html +++ b/docs/adobe-flex-sdk.html @@ -264,7 +264,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adobe-flex-sdk.json b/docs/adobe-flex-sdk.json index 719f3ef1c1..d261488267 100644 --- a/docs/adobe-flex-sdk.json +++ b/docs/adobe-flex-sdk.json @@ -1 +1,12 @@ -{"key": "adobe-flex-sdk", "short_name": "Adobe Flex SDK SLA", "name": "Adobe Flex SDK SLA", "category": "Proprietary Free", "owner": "Adobe Systems", "homepage_url": "https://raw.githubusercontent.com/nginadfoundation/flexsdk/master/license-adobesdk.htm", "spdx_license_key": "LicenseRef-scancode-adobe-flex-sdk", "ignorable_urls": ["http://www.adobe.com/go/thirdparty"]} \ No newline at end of file +{ + "key": "adobe-flex-sdk", + "short_name": "Adobe Flex SDK SLA", + "name": "Adobe Flex SDK SLA", + "category": "Proprietary Free", + "owner": "Adobe Systems", + "homepage_url": "https://raw.githubusercontent.com/nginadfoundation/flexsdk/master/license-adobesdk.htm", + "spdx_license_key": "LicenseRef-scancode-adobe-flex-sdk", + "ignorable_urls": [ + "http://www.adobe.com/go/thirdparty" + ] +} \ No newline at end of file diff --git a/docs/adobe-general-tou.LICENSE b/docs/adobe-general-tou.LICENSE index 735bcd1740..128e6dc941 100644 --- a/docs/adobe-general-tou.LICENSE +++ b/docs/adobe-general-tou.LICENSE @@ -1,3 +1,27 @@ +--- +key: adobe-general-tou +short_name: Adobe General TOU +name: Adobe General Terms of Use +category: Commercial +owner: Adobe Systems +homepage_url: http://www.adobe.com/legal/general-terms.html +spdx_license_key: LicenseRef-scancode-adobe-general-tou +text_urls: + - http://www.adobe.com/legal/general-terms.html +ignorable_urls: + - http://www.adobe.com/go/activation + - http://www.adobe.com/go/edu_purchasing + - http://www.adobe.com/go/font_licensing + - http://www.adobe.com/go/licensing + - http://www.adobe.com/go/mpegla + - http://www.adobe.com/go/privacy + - http://www.adobe.com/go/restricted_fonts + - http://www.adobe.com/go/thirdparty + - http://www.chillingeffects.org/ +ignorable_emails: + - copyright@adobe.com +--- + Adobe General Terms of Use Last updated June 18, 2014. Replaces the October 16, 2012 version in its entirety. diff --git a/docs/adobe-general-tou.html b/docs/adobe-general-tou.html index 055d995095..266e0acc15 100644 --- a/docs/adobe-general-tou.html +++ b/docs/adobe-general-tou.html @@ -510,7 +510,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adobe-general-tou.json b/docs/adobe-general-tou.json index 8c2c02ae98..b7ab275abe 100644 --- a/docs/adobe-general-tou.json +++ b/docs/adobe-general-tou.json @@ -1 +1,26 @@ -{"key": "adobe-general-tou", "short_name": "Adobe General TOU", "name": "Adobe General Terms of Use", "category": "Commercial", "owner": "Adobe Systems", "homepage_url": "http://www.adobe.com/legal/general-terms.html", "spdx_license_key": "LicenseRef-scancode-adobe-general-tou", "text_urls": ["http://www.adobe.com/legal/general-terms.html"], "ignorable_urls": ["http://www.adobe.com/go/activation", "http://www.adobe.com/go/edu_purchasing", "http://www.adobe.com/go/font_licensing", "http://www.adobe.com/go/licensing", "http://www.adobe.com/go/mpegla", "http://www.adobe.com/go/privacy", "http://www.adobe.com/go/restricted_fonts", "http://www.adobe.com/go/thirdparty", "http://www.chillingeffects.org/"], "ignorable_emails": ["copyright@adobe.com"]} \ No newline at end of file +{ + "key": "adobe-general-tou", + "short_name": "Adobe General TOU", + "name": "Adobe General Terms of Use", + "category": "Commercial", + "owner": "Adobe Systems", + "homepage_url": "http://www.adobe.com/legal/general-terms.html", + "spdx_license_key": "LicenseRef-scancode-adobe-general-tou", + "text_urls": [ + "http://www.adobe.com/legal/general-terms.html" + ], + "ignorable_urls": [ + "http://www.adobe.com/go/activation", + "http://www.adobe.com/go/edu_purchasing", + "http://www.adobe.com/go/font_licensing", + "http://www.adobe.com/go/licensing", + "http://www.adobe.com/go/mpegla", + "http://www.adobe.com/go/privacy", + "http://www.adobe.com/go/restricted_fonts", + "http://www.adobe.com/go/thirdparty", + "http://www.chillingeffects.org/" + ], + "ignorable_emails": [ + "copyright@adobe.com" + ] +} \ No newline at end of file diff --git a/docs/adobe-glyph.LICENSE b/docs/adobe-glyph.LICENSE index 6d8cc6a1d7..981323d225 100644 --- a/docs/adobe-glyph.LICENSE +++ b/docs/adobe-glyph.LICENSE @@ -1,3 +1,13 @@ +--- +key: adobe-glyph +short_name: Adobe Glyph License +name: Adobe Glyph License +category: Permissive +owner: Adobe Systems +homepage_url: https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph +spdx_license_key: Adobe-Glyph +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this documentation file to use, copy, publish, distribute, sublicense, and/or sell copies of the documentation, and to permit others to do the same, provided that: - No modification, editing or other alteration of this document is allowed; and - The above copyright notice and this permission notice shall be included in all copies of the documentation. diff --git a/docs/adobe-glyph.html b/docs/adobe-glyph.html index 0c7bf87073..5f33b89704 100644 --- a/docs/adobe-glyph.html +++ b/docs/adobe-glyph.html @@ -133,7 +133,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adobe-glyph.json b/docs/adobe-glyph.json index 37f99b47d5..d1f8d0ffc2 100644 --- a/docs/adobe-glyph.json +++ b/docs/adobe-glyph.json @@ -1 +1,9 @@ -{"key": "adobe-glyph", "short_name": "Adobe Glyph License", "name": "Adobe Glyph License", "category": "Permissive", "owner": "Adobe Systems", "homepage_url": "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", "spdx_license_key": "Adobe-Glyph"} \ No newline at end of file +{ + "key": "adobe-glyph", + "short_name": "Adobe Glyph License", + "name": "Adobe Glyph License", + "category": "Permissive", + "owner": "Adobe Systems", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph", + "spdx_license_key": "Adobe-Glyph" +} \ No newline at end of file diff --git a/docs/adobe-indesign-sdk.LICENSE b/docs/adobe-indesign-sdk.LICENSE index 595a280492..33c3cb0885 100644 --- a/docs/adobe-indesign-sdk.LICENSE +++ b/docs/adobe-indesign-sdk.LICENSE @@ -1,3 +1,16 @@ +--- +key: adobe-indesign-sdk +short_name: Adobe InDesign SDK License +name: Adobe SDK License for INDESIGN, INDESIGN SERVER and INCOPY Software +category: Proprietary Free +owner: Adobe Systems +homepage_url: http://www.adobe.com/devnet/indesign/sdk/eula_cs55.html +spdx_license_key: LicenseRef-scancode-adobe-indesign-sdk +ignorable_urls: + - http://support.adobe.com/devsup/devsup.nsf/docs/50093.htm + - http://www.adobe.com/go/thirdparty +--- + ADOBE SOFTWARE DEVELOPMENT KIT LICENSE FOR INDESIGN, INDESIGN SERVER AND INCOPY SOFTWARE. NOTICE TO USER: THIS IS A LICENSE BETWEEN YOU AND ADOBE. BY INDICATING YOUR ACCEPTANCE BELOW, YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS LICENSE. THIS LICENSE ACCOMPANIES THE SOFTWARE DEVELOPMENT KIT(S) FOR ADOBE INDESIGN, INDESIGN SERVER AND/OR INCOPY SOFTWARE AND RELATED EXPLANATORY MATERIALS (COLLECTIVELY, THE "SDK") AND INCLUDES ANY UPGRADES, MODIFIED VERSIONS, UPDATES, ADDITIONS, AND COPIES OF THE SDK LICENSED TO YOU BY ADOBE. diff --git a/docs/adobe-indesign-sdk.html b/docs/adobe-indesign-sdk.html index 7fdebb8e70..6b98d8510c 100644 --- a/docs/adobe-indesign-sdk.html +++ b/docs/adobe-indesign-sdk.html @@ -255,7 +255,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adobe-indesign-sdk.json b/docs/adobe-indesign-sdk.json index 9e222d47c2..8e2eb65c84 100644 --- a/docs/adobe-indesign-sdk.json +++ b/docs/adobe-indesign-sdk.json @@ -1 +1,13 @@ -{"key": "adobe-indesign-sdk", "short_name": "Adobe InDesign SDK License", "name": "Adobe SDK License for INDESIGN, INDESIGN SERVER and INCOPY Software", "category": "Proprietary Free", "owner": "Adobe Systems", "homepage_url": "http://www.adobe.com/devnet/indesign/sdk/eula_cs55.html", "spdx_license_key": "LicenseRef-scancode-adobe-indesign-sdk", "ignorable_urls": ["http://support.adobe.com/devsup/devsup.nsf/docs/50093.htm", "http://www.adobe.com/go/thirdparty"]} \ No newline at end of file +{ + "key": "adobe-indesign-sdk", + "short_name": "Adobe InDesign SDK License", + "name": "Adobe SDK License for INDESIGN, INDESIGN SERVER and INCOPY Software", + "category": "Proprietary Free", + "owner": "Adobe Systems", + "homepage_url": "http://www.adobe.com/devnet/indesign/sdk/eula_cs55.html", + "spdx_license_key": "LicenseRef-scancode-adobe-indesign-sdk", + "ignorable_urls": [ + "http://support.adobe.com/devsup/devsup.nsf/docs/50093.htm", + "http://www.adobe.com/go/thirdparty" + ] +} \ No newline at end of file diff --git a/docs/adobe-postscript.LICENSE b/docs/adobe-postscript.LICENSE index c50a2dd656..66f1d1498b 100644 --- a/docs/adobe-postscript.LICENSE +++ b/docs/adobe-postscript.LICENSE @@ -1,3 +1,13 @@ +--- +key: adobe-postscript +short_name: Adobe PostScript License +name: Adobe PostScript License +category: Proprietary Free +owner: Adobe Systems +spdx_license_key: LicenseRef-scancode-adobe-postscript +minimum_coverage: 25 +--- + Patents Pending NOTICE: All information contained herein is the property @@ -10,4 +20,4 @@ way from its original form. PostScript and Display PostScript are trademarks of Adobe Systems Incorporated which may be registered in -certain jurisdictions. +certain jurisdictions. \ No newline at end of file diff --git a/docs/adobe-postscript.html b/docs/adobe-postscript.html index 05b7efe7d5..56e8795809 100644 --- a/docs/adobe-postscript.html +++ b/docs/adobe-postscript.html @@ -127,8 +127,7 @@ PostScript and Display PostScript are trademarks of Adobe Systems Incorporated which may be registered in -certain jurisdictions. - +certain jurisdictions.
@@ -140,7 +139,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adobe-postscript.json b/docs/adobe-postscript.json index f3b8c5a9c5..8b567e984b 100644 --- a/docs/adobe-postscript.json +++ b/docs/adobe-postscript.json @@ -1 +1,9 @@ -{"key": "adobe-postscript", "short_name": "Adobe PostScript License", "name": "Adobe PostScript License", "category": "Proprietary Free", "owner": "Adobe Systems", "spdx_license_key": "LicenseRef-scancode-adobe-postscript", "minimum_coverage": 25} \ No newline at end of file +{ + "key": "adobe-postscript", + "short_name": "Adobe PostScript License", + "name": "Adobe PostScript License", + "category": "Proprietary Free", + "owner": "Adobe Systems", + "spdx_license_key": "LicenseRef-scancode-adobe-postscript", + "minimum_coverage": 25 +} \ No newline at end of file diff --git a/docs/adobe-scl.LICENSE b/docs/adobe-scl.LICENSE index 5871e591b2..10c56385fe 100644 --- a/docs/adobe-scl.LICENSE +++ b/docs/adobe-scl.LICENSE @@ -1,3 +1,17 @@ +--- +key: adobe-scl +short_name: Adobe Source Code License 2006 +name: Adobe Systems Incorporated Source Code License Agreement +category: Permissive +owner: Adobe Systems +homepage_url: http://fedoraproject.org/wiki/Licensing/AdobeLicense +spdx_license_key: Adobe-2006 +text_urls: + - http://fedoraproject.org/wiki/Licensing/AdobeLicense +other_urls: + - https://fedoraproject.org/wiki/Licensing/AdobeLicense +--- + Please read this Source Code License Agreement carefully before using the source code. diff --git a/docs/adobe-scl.html b/docs/adobe-scl.html index 056aeb6617..8c76069ca3 100644 --- a/docs/adobe-scl.html +++ b/docs/adobe-scl.html @@ -171,7 +171,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adobe-scl.json b/docs/adobe-scl.json index d14f820fc4..138a8c13b7 100644 --- a/docs/adobe-scl.json +++ b/docs/adobe-scl.json @@ -1 +1,15 @@ -{"key": "adobe-scl", "short_name": "Adobe Source Code License 2006", "name": "Adobe Systems Incorporated Source Code License Agreement", "category": "Permissive", "owner": "Adobe Systems", "homepage_url": "http://fedoraproject.org/wiki/Licensing/AdobeLicense", "spdx_license_key": "Adobe-2006", "text_urls": ["http://fedoraproject.org/wiki/Licensing/AdobeLicense"], "other_urls": ["https://fedoraproject.org/wiki/Licensing/AdobeLicense"]} \ No newline at end of file +{ + "key": "adobe-scl", + "short_name": "Adobe Source Code License 2006", + "name": "Adobe Systems Incorporated Source Code License Agreement", + "category": "Permissive", + "owner": "Adobe Systems", + "homepage_url": "http://fedoraproject.org/wiki/Licensing/AdobeLicense", + "spdx_license_key": "Adobe-2006", + "text_urls": [ + "http://fedoraproject.org/wiki/Licensing/AdobeLicense" + ], + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/AdobeLicense" + ] +} \ No newline at end of file diff --git a/docs/adrian.LICENSE b/docs/adrian.LICENSE index 1ca6372a9d..e26e000b42 100644 --- a/docs/adrian.LICENSE +++ b/docs/adrian.LICENSE @@ -1,3 +1,16 @@ +--- +key: adrian +short_name: Andre Adrian DFS license +name: Andre Adrian DFS license +category: Permissive +owner: DFS Deutsche Flugsicherung +spdx_license_key: LicenseRef-scancode-adrian +text_urls: + - https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/blob/81c24738d5b62a5f092ce34ea06efab72eefbb9e/src/modules/echo-cancel/adrian-license.txt +other_urls: + - https://mailarchive.ietf.org/arch/msg/avt/6erDp7-srszwgBNbFxcD_zSFMS0/ +--- + You are allowed to use this source code in any open source or closed source software you want. You are allowed to use the algorithms for a hardware solution. You are allowed to modify the source code. diff --git a/docs/adrian.html b/docs/adrian.html index 0062597708..72694f3d42 100644 --- a/docs/adrian.html +++ b/docs/adrian.html @@ -145,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adrian.json b/docs/adrian.json index ac94210a8e..b7c37808a7 100644 --- a/docs/adrian.json +++ b/docs/adrian.json @@ -1 +1,14 @@ -{"key": "adrian", "short_name": "Andre Adrian DFS license", "name": "Andre Adrian DFS license", "category": "Permissive", "owner": "DFS Deutsche Flugsicherung", "spdx_license_key": "LicenseRef-scancode-adrian", "text_urls": ["https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/blob/81c24738d5b62a5f092ce34ea06efab72eefbb9e/src/modules/echo-cancel/adrian-license.txt"], "other_urls": ["https://mailarchive.ietf.org/arch/msg/avt/6erDp7-srszwgBNbFxcD_zSFMS0/"]} \ No newline at end of file +{ + "key": "adrian", + "short_name": "Andre Adrian DFS license", + "name": "Andre Adrian DFS license", + "category": "Permissive", + "owner": "DFS Deutsche Flugsicherung", + "spdx_license_key": "LicenseRef-scancode-adrian", + "text_urls": [ + "https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/blob/81c24738d5b62a5f092ce34ea06efab72eefbb9e/src/modules/echo-cancel/adrian-license.txt" + ], + "other_urls": [ + "https://mailarchive.ietf.org/arch/msg/avt/6erDp7-srszwgBNbFxcD_zSFMS0/" + ] +} \ No newline at end of file diff --git a/docs/adsl.LICENSE b/docs/adsl.LICENSE index b6397cc08b..8c6d97fb92 100644 --- a/docs/adsl.LICENSE +++ b/docs/adsl.LICENSE @@ -1,3 +1,13 @@ +--- +key: adsl +short_name: Amazon Digital Services License +name: Amazon Digital Services License +category: Permissive +owner: Amazon Web Services +homepage_url: https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense +spdx_license_key: ADSL +--- + This software code is made available "AS IS" without warranties of any kind. You may copy, display, modify and redistribute the software code either by diff --git a/docs/adsl.html b/docs/adsl.html index 4cad76c6ca..96cdccaae7 100644 --- a/docs/adsl.html +++ b/docs/adsl.html @@ -135,7 +135,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/adsl.json b/docs/adsl.json index 676ded04ca..16439183f1 100644 --- a/docs/adsl.json +++ b/docs/adsl.json @@ -1 +1,9 @@ -{"key": "adsl", "short_name": "Amazon Digital Services License", "name": "Amazon Digital Services License", "category": "Permissive", "owner": "Amazon Web Services", "homepage_url": "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense", "spdx_license_key": "ADSL"} \ No newline at end of file +{ + "key": "adsl", + "short_name": "Amazon Digital Services License", + "name": "Amazon Digital Services License", + "category": "Permissive", + "owner": "Amazon Web Services", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense", + "spdx_license_key": "ADSL" +} \ No newline at end of file diff --git a/docs/aes-128-3.0.LICENSE b/docs/aes-128-3.0.LICENSE index a555023dfe..67fce66d67 100644 --- a/docs/aes-128-3.0.LICENSE +++ b/docs/aes-128-3.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: aes-128-3.0 +short_name: AES-128 3.0 License +name: AES-128 v3.0 License +category: Public Domain +owner: Unspecified +spdx_license_key: LicenseRef-scancode-aes-128-3.0 +minimum_coverage: 90 +--- + All code contained in this distributed is placed in the public domain. ============================================================= Disclaimer: @@ -12,4 +22,4 @@ 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. -============================================================= +============================================================= \ No newline at end of file diff --git a/docs/aes-128-3.0.html b/docs/aes-128-3.0.html index 66567758cb..42e5bbe37f 100644 --- a/docs/aes-128-3.0.html +++ b/docs/aes-128-3.0.html @@ -129,8 +129,7 @@ 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. -============================================================= - +=============================================================
@@ -142,7 +141,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/aes-128-3.0.json b/docs/aes-128-3.0.json index 106fe5ab0a..5bf8696e57 100644 --- a/docs/aes-128-3.0.json +++ b/docs/aes-128-3.0.json @@ -1 +1,9 @@ -{"key": "aes-128-3.0", "short_name": "AES-128 3.0 License", "name": "AES-128 v3.0 License", "category": "Public Domain", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-aes-128-3.0", "minimum_coverage": 90} \ No newline at end of file +{ + "key": "aes-128-3.0", + "short_name": "AES-128 3.0 License", + "name": "AES-128 v3.0 License", + "category": "Public Domain", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-aes-128-3.0", + "minimum_coverage": 90 +} \ No newline at end of file diff --git a/docs/afl-1.1.LICENSE b/docs/afl-1.1.LICENSE index 90d746d6b6..cb86e81a39 100644 --- a/docs/afl-1.1.LICENSE +++ b/docs/afl-1.1.LICENSE @@ -1,3 +1,28 @@ +--- +key: afl-1.1 +short_name: AFL 1.1 +name: Academic Free License 1.1 +category: Permissive +owner: Lawrence Rosen +homepage_url: https://spdx.org/licenses/AFL-1.1 +notes: Per SPDX.org, this license has been superseded by later versions. +spdx_license_key: AFL-1.1 +text_urls: + - http://open2.mirrors-r-us.net/licenses/afl-1.1.txt + - http://opensource.linux-mirror.org/licenses/afl-1.1.txt + - http://spdx.org/licenses/AFL-1.1 + - http://web.archive.org/web/20060924134536/http://www.opensource.org/licenses/afl-1.1.txt + - http://www.opensource.org/licenses/afl-1.1.txt +osi_url: http://web.archive.org/web/20060924134536/http://www.opensource.org/licenses/afl-1.1.txt +other_urls: + - http://wayback.archive.org/web/20021004124254/http://www.opensource.org/licenses/academic.php + - http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense +ignorable_copyrights: + - Copyright (c) 2002 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + Academic Free License Version 1.1 diff --git a/docs/afl-1.1.html b/docs/afl-1.1.html index 8fea6a8229..f34b8f2c71 100644 --- a/docs/afl-1.1.html +++ b/docs/afl-1.1.html @@ -261,7 +261,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/afl-1.1.json b/docs/afl-1.1.json index 6103879e4e..3a0e057c02 100644 --- a/docs/afl-1.1.json +++ b/docs/afl-1.1.json @@ -1 +1,28 @@ -{"key": "afl-1.1", "short_name": "AFL 1.1", "name": "Academic Free License 1.1", "category": "Permissive", "owner": "Lawrence Rosen", "homepage_url": "https://spdx.org/licenses/AFL-1.1", "notes": "Per SPDX.org, this license has been superseded by later versions.", "spdx_license_key": "AFL-1.1", "text_urls": ["http://open2.mirrors-r-us.net/licenses/afl-1.1.txt", "http://opensource.linux-mirror.org/licenses/afl-1.1.txt", "http://spdx.org/licenses/AFL-1.1", "http://web.archive.org/web/20060924134536/http://www.opensource.org/licenses/afl-1.1.txt", "http://www.opensource.org/licenses/afl-1.1.txt"], "osi_url": "http://web.archive.org/web/20060924134536/http://www.opensource.org/licenses/afl-1.1.txt", "other_urls": ["http://wayback.archive.org/web/20021004124254/http://www.opensource.org/licenses/academic.php", "http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense"], "ignorable_copyrights": ["Copyright (c) 2002 Lawrence E. Rosen"], "ignorable_holders": ["Lawrence E. Rosen"]} \ No newline at end of file +{ + "key": "afl-1.1", + "short_name": "AFL 1.1", + "name": "Academic Free License 1.1", + "category": "Permissive", + "owner": "Lawrence Rosen", + "homepage_url": "https://spdx.org/licenses/AFL-1.1", + "notes": "Per SPDX.org, this license has been superseded by later versions.", + "spdx_license_key": "AFL-1.1", + "text_urls": [ + "http://open2.mirrors-r-us.net/licenses/afl-1.1.txt", + "http://opensource.linux-mirror.org/licenses/afl-1.1.txt", + "http://spdx.org/licenses/AFL-1.1", + "http://web.archive.org/web/20060924134536/http://www.opensource.org/licenses/afl-1.1.txt", + "http://www.opensource.org/licenses/afl-1.1.txt" + ], + "osi_url": "http://web.archive.org/web/20060924134536/http://www.opensource.org/licenses/afl-1.1.txt", + "other_urls": [ + "http://wayback.archive.org/web/20021004124254/http://www.opensource.org/licenses/academic.php", + "http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense" + ], + "ignorable_copyrights": [ + "Copyright (c) 2002 Lawrence E. Rosen" + ], + "ignorable_holders": [ + "Lawrence E. Rosen" + ] +} \ No newline at end of file diff --git a/docs/afl-1.2.LICENSE b/docs/afl-1.2.LICENSE index 203ed5bf00..3b5b58d4e2 100644 --- a/docs/afl-1.2.LICENSE +++ b/docs/afl-1.2.LICENSE @@ -1,3 +1,27 @@ +--- +key: afl-1.2 +short_name: AFL 1.2 +name: Academic Free License 1.2 +category: Permissive +owner: Lawrence Rosen +homepage_url: https://spdx.org/licenses/AFL-1.2.html +notes: | + Per SPDX.org, this license has been superseded by later versions. This + license was OSI certified. +spdx_license_key: AFL-1.2 +text_urls: + - http://opensource-definition.org/licenses/afl-1.2.txt + - http://opensource.linux-mirror.org/licenses/afl-1.2.txt + - https://spdx.org/licenses/AFL-1.2.html +other_urls: + - http://wayback.archive.org/web/20021204204652/http://www.opensource.org/licenses/academic.php + - http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense +ignorable_copyrights: + - Copyright (c) 2002 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + Academic Free License Version 1.2 @@ -83,5 +107,4 @@ not to interfere with or be responsible for such uses by You. This license is Copyright (C) 2002 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written -permission of its copyright owner. - +permission of its copyright owner. \ No newline at end of file diff --git a/docs/afl-1.2.html b/docs/afl-1.2.html index 999a26f647..77275ec65c 100644 --- a/docs/afl-1.2.html +++ b/docs/afl-1.2.html @@ -245,9 +245,7 @@ This license is Copyright (C) 2002 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written -permission of its copyright owner. - - +permission of its copyright owner.
@@ -259,7 +257,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/afl-1.2.json b/docs/afl-1.2.json index 603eecb246..415748a8db 100644 --- a/docs/afl-1.2.json +++ b/docs/afl-1.2.json @@ -1 +1,25 @@ -{"key": "afl-1.2", "short_name": "AFL 1.2", "name": "Academic Free License 1.2", "category": "Permissive", "owner": "Lawrence Rosen", "homepage_url": "https://spdx.org/licenses/AFL-1.2.html", "notes": "Per SPDX.org, this license has been superseded by later versions. This\nlicense was OSI certified.\n", "spdx_license_key": "AFL-1.2", "text_urls": ["http://opensource-definition.org/licenses/afl-1.2.txt", "http://opensource.linux-mirror.org/licenses/afl-1.2.txt", "https://spdx.org/licenses/AFL-1.2.html"], "other_urls": ["http://wayback.archive.org/web/20021204204652/http://www.opensource.org/licenses/academic.php", "http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense"], "ignorable_copyrights": ["Copyright (c) 2002 Lawrence E. Rosen"], "ignorable_holders": ["Lawrence E. Rosen"]} \ No newline at end of file +{ + "key": "afl-1.2", + "short_name": "AFL 1.2", + "name": "Academic Free License 1.2", + "category": "Permissive", + "owner": "Lawrence Rosen", + "homepage_url": "https://spdx.org/licenses/AFL-1.2.html", + "notes": "Per SPDX.org, this license has been superseded by later versions. This\nlicense was OSI certified.\n", + "spdx_license_key": "AFL-1.2", + "text_urls": [ + "http://opensource-definition.org/licenses/afl-1.2.txt", + "http://opensource.linux-mirror.org/licenses/afl-1.2.txt", + "https://spdx.org/licenses/AFL-1.2.html" + ], + "other_urls": [ + "http://wayback.archive.org/web/20021204204652/http://www.opensource.org/licenses/academic.php", + "http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense" + ], + "ignorable_copyrights": [ + "Copyright (c) 2002 Lawrence E. Rosen" + ], + "ignorable_holders": [ + "Lawrence E. Rosen" + ] +} \ No newline at end of file diff --git a/docs/afl-2.0.LICENSE b/docs/afl-2.0.LICENSE index 5dea3d315d..fbe5037f9f 100644 --- a/docs/afl-2.0.LICENSE +++ b/docs/afl-2.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: afl-2.0 +short_name: AFL 2.0 +name: Academic Free License 2.0 +category: Permissive +owner: Lawrence Rosen +homepage_url: http://opensource.linux-mirror.org/licenses/afl-2.0.txt +notes: Per SPDX.org, this license was OSI certified. +spdx_license_key: AFL-2.0 +text_urls: + - http://flashlinux.org.uk/licenses/licenses/AFL-2.0.txt +osi_url: http://opensource-definition.org/licenses/afl-2.0.html +other_urls: + - http://wayback.archive.org/web/20060924134533/http://www.opensource.org/licenses/afl-2.0.txt + - http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense +--- + Academic Free License v. 2.0 diff --git a/docs/afl-2.0.html b/docs/afl-2.0.html index d6deae1088..2f92be0c5f 100644 --- a/docs/afl-2.0.html +++ b/docs/afl-2.0.html @@ -203,7 +203,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/afl-2.0.json b/docs/afl-2.0.json index c162f9ec42..d3a1d37fbe 100644 --- a/docs/afl-2.0.json +++ b/docs/afl-2.0.json @@ -1 +1,18 @@ -{"key": "afl-2.0", "short_name": "AFL 2.0", "name": "Academic Free License 2.0", "category": "Permissive", "owner": "Lawrence Rosen", "homepage_url": "http://opensource.linux-mirror.org/licenses/afl-2.0.txt", "notes": "Per SPDX.org, this license was OSI certified.", "spdx_license_key": "AFL-2.0", "text_urls": ["http://flashlinux.org.uk/licenses/licenses/AFL-2.0.txt"], "osi_url": "http://opensource-definition.org/licenses/afl-2.0.html", "other_urls": ["http://wayback.archive.org/web/20060924134533/http://www.opensource.org/licenses/afl-2.0.txt", "http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense"]} \ No newline at end of file +{ + "key": "afl-2.0", + "short_name": "AFL 2.0", + "name": "Academic Free License 2.0", + "category": "Permissive", + "owner": "Lawrence Rosen", + "homepage_url": "http://opensource.linux-mirror.org/licenses/afl-2.0.txt", + "notes": "Per SPDX.org, this license was OSI certified.", + "spdx_license_key": "AFL-2.0", + "text_urls": [ + "http://flashlinux.org.uk/licenses/licenses/AFL-2.0.txt" + ], + "osi_url": "http://opensource-definition.org/licenses/afl-2.0.html", + "other_urls": [ + "http://wayback.archive.org/web/20060924134533/http://www.opensource.org/licenses/afl-2.0.txt", + "http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense" + ] +} \ No newline at end of file diff --git a/docs/afl-2.1.LICENSE b/docs/afl-2.1.LICENSE index 1c7338de2f..cd35b88816 100644 --- a/docs/afl-2.1.LICENSE +++ b/docs/afl-2.1.LICENSE @@ -1,3 +1,25 @@ +--- +key: afl-2.1 +short_name: AFL 2.1 +name: Academic Free License 2.1 +category: Permissive +owner: Lawrence Rosen +homepage_url: http://www.rosenlaw.com/afl21.htm +notes: Per SPDX.org, this license was OSI certified. +spdx_license_key: AFL-2.1 +text_urls: + - http://opensource.linux-mirror.org/licenses/afl-2.1.txt + - http://web.archive.org/web/20060423052359/http://opensource.org/licenses/afl-2.1.php +osi_url: http://opensource.org/licenses/afl-2.1.php +faq_url: http://www.rosenlaw.com/afl21.htm +other_urls: + - http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense +ignorable_copyrights: + - Copyright (c) 2003-2004 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + The Academic Free License v. 2.1 diff --git a/docs/afl-2.1.html b/docs/afl-2.1.html index 789f01c105..bc01042e11 100644 --- a/docs/afl-2.1.html +++ b/docs/afl-2.1.html @@ -231,7 +231,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/afl-2.1.json b/docs/afl-2.1.json index 4d1545be1b..751ed747bd 100644 --- a/docs/afl-2.1.json +++ b/docs/afl-2.1.json @@ -1 +1,25 @@ -{"key": "afl-2.1", "short_name": "AFL 2.1", "name": "Academic Free License 2.1", "category": "Permissive", "owner": "Lawrence Rosen", "homepage_url": "http://www.rosenlaw.com/afl21.htm", "notes": "Per SPDX.org, this license was OSI certified.", "spdx_license_key": "AFL-2.1", "text_urls": ["http://opensource.linux-mirror.org/licenses/afl-2.1.txt", "http://web.archive.org/web/20060423052359/http://opensource.org/licenses/afl-2.1.php"], "osi_url": "http://opensource.org/licenses/afl-2.1.php", "faq_url": "http://www.rosenlaw.com/afl21.htm", "other_urls": ["http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense"], "ignorable_copyrights": ["Copyright (c) 2003-2004 Lawrence E. Rosen"], "ignorable_holders": ["Lawrence E. Rosen"]} \ No newline at end of file +{ + "key": "afl-2.1", + "short_name": "AFL 2.1", + "name": "Academic Free License 2.1", + "category": "Permissive", + "owner": "Lawrence Rosen", + "homepage_url": "http://www.rosenlaw.com/afl21.htm", + "notes": "Per SPDX.org, this license was OSI certified.", + "spdx_license_key": "AFL-2.1", + "text_urls": [ + "http://opensource.linux-mirror.org/licenses/afl-2.1.txt", + "http://web.archive.org/web/20060423052359/http://opensource.org/licenses/afl-2.1.php" + ], + "osi_url": "http://opensource.org/licenses/afl-2.1.php", + "faq_url": "http://www.rosenlaw.com/afl21.htm", + "other_urls": [ + "http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense" + ], + "ignorable_copyrights": [ + "Copyright (c) 2003-2004 Lawrence E. Rosen" + ], + "ignorable_holders": [ + "Lawrence E. Rosen" + ] +} \ No newline at end of file diff --git a/docs/afl-3.0.LICENSE b/docs/afl-3.0.LICENSE index 7d7665048a..54c2f94ef7 100644 --- a/docs/afl-3.0.LICENSE +++ b/docs/afl-3.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: afl-3.0 +short_name: AFL 3.0 +name: Academic Free License 3.0 +category: Permissive +owner: Lawrence Rosen +homepage_url: http://opensource.org/licenses/afl-3.0.php +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: AFL-3.0 +osi_license_key: AFL-3.0 +text_urls: + - http://www.opensource.org/licenses/afl-3.0.php + - http://www.rosenlaw.com/AFL3.0.htm +osi_url: http://opensource.org/licenses/afl-3.0.php +faq_url: http://www.rosenlaw.com/OSL3.0-explained.pdf +other_urls: + - http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense + - http://www.opensource.org/licenses/afl-3.0 + - https://opensource.org/licenses/afl-3.0 +ignorable_copyrights: + - Copyright (c) 2005 Lawrence Rosen +ignorable_holders: + - Lawrence Rosen +--- + This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: Licensed under the Academic Free License version 3.0 diff --git a/docs/afl-3.0.html b/docs/afl-3.0.html index 8100304d3f..6e20963bcb 100644 --- a/docs/afl-3.0.html +++ b/docs/afl-3.0.html @@ -235,7 +235,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/afl-3.0.json b/docs/afl-3.0.json index a858df701a..6148023e1a 100644 --- a/docs/afl-3.0.json +++ b/docs/afl-3.0.json @@ -1 +1,28 @@ -{"key": "afl-3.0", "short_name": "AFL 3.0", "name": "Academic Free License 3.0", "category": "Permissive", "owner": "Lawrence Rosen", "homepage_url": "http://opensource.org/licenses/afl-3.0.php", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "AFL-3.0", "osi_license_key": "AFL-3.0", "text_urls": ["http://www.opensource.org/licenses/afl-3.0.php", "http://www.rosenlaw.com/AFL3.0.htm"], "osi_url": "http://opensource.org/licenses/afl-3.0.php", "faq_url": "http://www.rosenlaw.com/OSL3.0-explained.pdf", "other_urls": ["http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense", "http://www.opensource.org/licenses/afl-3.0", "https://opensource.org/licenses/afl-3.0"], "ignorable_copyrights": ["Copyright (c) 2005 Lawrence Rosen"], "ignorable_holders": ["Lawrence Rosen"]} \ No newline at end of file +{ + "key": "afl-3.0", + "short_name": "AFL 3.0", + "name": "Academic Free License 3.0", + "category": "Permissive", + "owner": "Lawrence Rosen", + "homepage_url": "http://opensource.org/licenses/afl-3.0.php", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "AFL-3.0", + "osi_license_key": "AFL-3.0", + "text_urls": [ + "http://www.opensource.org/licenses/afl-3.0.php", + "http://www.rosenlaw.com/AFL3.0.htm" + ], + "osi_url": "http://opensource.org/licenses/afl-3.0.php", + "faq_url": "http://www.rosenlaw.com/OSL3.0-explained.pdf", + "other_urls": [ + "http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense", + "http://www.opensource.org/licenses/afl-3.0", + "https://opensource.org/licenses/afl-3.0" + ], + "ignorable_copyrights": [ + "Copyright (c) 2005 Lawrence Rosen" + ], + "ignorable_holders": [ + "Lawrence Rosen" + ] +} \ No newline at end of file diff --git a/docs/afmparse.LICENSE b/docs/afmparse.LICENSE index 20b4615aa4..e657b36714 100644 --- a/docs/afmparse.LICENSE +++ b/docs/afmparse.LICENSE @@ -1,3 +1,13 @@ +--- +key: afmparse +short_name: afmparse License +name: afmparse License +category: Permissive +owner: Adobe Systems +homepage_url: https://fedoraproject.org/wiki/Licensing/Afmparse +spdx_license_key: Afmparse +--- + This file may be freely copied and redistributed as long as: 1) This entire notice continues to be included in the file, diff --git a/docs/afmparse.html b/docs/afmparse.html index 5479ca11bb..da1664e052 100644 --- a/docs/afmparse.html +++ b/docs/afmparse.html @@ -143,7 +143,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/afmparse.json b/docs/afmparse.json index 61f2d52349..7554cec8f0 100644 --- a/docs/afmparse.json +++ b/docs/afmparse.json @@ -1 +1,9 @@ -{"key": "afmparse", "short_name": "afmparse License", "name": "afmparse License", "category": "Permissive", "owner": "Adobe Systems", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Afmparse", "spdx_license_key": "Afmparse"} \ No newline at end of file +{ + "key": "afmparse", + "short_name": "afmparse License", + "name": "afmparse License", + "category": "Permissive", + "owner": "Adobe Systems", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Afmparse", + "spdx_license_key": "Afmparse" +} \ No newline at end of file diff --git a/docs/afpl-8.0.LICENSE b/docs/afpl-8.0.LICENSE index 43e1b609d8..f65959cf24 100644 --- a/docs/afpl-8.0.LICENSE +++ b/docs/afpl-8.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: afpl-8.0 +short_name: Aladdin FPL v8 +name: Aladdin Free Public License v8 +category: Copyleft +owner: Aladdin Enterprises +homepage_url: http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm +notes: Per SPDX.org, this license was released 18 Nov 1999 +spdx_license_key: Aladdin +text_urls: + - http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm +ignorable_copyrights: + - Copyright (c) 1994, 1995, 1997, 1998, 1999 Aladdin Enterprises, Menlo Park, California, + U.S.A. +ignorable_holders: + - Aladdin Enterprises, Menlo Park, California, U.S.A. +--- + Aladdin Free Public License (Version 8, November 18, 1999) @@ -210,4 +228,4 @@ accordance with the terms of this License. If the unit or agency is other than DOD, the Program and its documentation are classified as "commercial computer software" and "commercial computer software documentation" respectively and, pursuant to FAR Section 12.212, the Government is acquiring the Program and its -documentation in accordance with the terms of this License. +documentation in accordance with the terms of this License. \ No newline at end of file diff --git a/docs/afpl-8.0.html b/docs/afpl-8.0.html index 859a64f068..b3e8fed07c 100644 --- a/docs/afpl-8.0.html +++ b/docs/afpl-8.0.html @@ -361,8 +361,7 @@ DOD, the Program and its documentation are classified as "commercial computer software" and "commercial computer software documentation" respectively and, pursuant to FAR Section 12.212, the Government is acquiring the Program and its -documentation in accordance with the terms of this License. - +documentation in accordance with the terms of this License.
@@ -374,7 +373,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/afpl-8.0.json b/docs/afpl-8.0.json index ebc0f075b8..e765ba699a 100644 --- a/docs/afpl-8.0.json +++ b/docs/afpl-8.0.json @@ -1 +1,19 @@ -{"key": "afpl-8.0", "short_name": "Aladdin FPL v8", "name": "Aladdin Free Public License v8", "category": "Copyleft", "owner": "Aladdin Enterprises", "homepage_url": "http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm", "notes": "Per SPDX.org, this license was released 18 Nov 1999", "spdx_license_key": "Aladdin", "text_urls": ["http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm"], "ignorable_copyrights": ["Copyright (c) 1994, 1995, 1997, 1998, 1999 Aladdin Enterprises, Menlo Park, California, U.S.A."], "ignorable_holders": ["Aladdin Enterprises, Menlo Park, California, U.S.A."]} \ No newline at end of file +{ + "key": "afpl-8.0", + "short_name": "Aladdin FPL v8", + "name": "Aladdin Free Public License v8", + "category": "Copyleft", + "owner": "Aladdin Enterprises", + "homepage_url": "http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm", + "notes": "Per SPDX.org, this license was released 18 Nov 1999", + "spdx_license_key": "Aladdin", + "text_urls": [ + "http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm" + ], + "ignorable_copyrights": [ + "Copyright (c) 1994, 1995, 1997, 1998, 1999 Aladdin Enterprises, Menlo Park, California, U.S.A." + ], + "ignorable_holders": [ + "Aladdin Enterprises, Menlo Park, California, U.S.A." + ] +} \ No newline at end of file diff --git a/docs/afpl-9.0.LICENSE b/docs/afpl-9.0.LICENSE index 37de9af60f..e4e4daaabb 100644 --- a/docs/afpl-9.0.LICENSE +++ b/docs/afpl-9.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: afpl-9.0 +short_name: Aladdin FPL v9 +name: Aladdin Free Public License v9 +category: Copyleft +owner: Aladdin Enterprises +homepage_url: http://www.artifex.com/downloads/doc/Public.htm +spdx_license_key: LicenseRef-scancode-afpl-9.0 +text_urls: + - http://www.artifex.com/downloads/doc/Public.htm +ignorable_copyrights: + - Copyright (c) 1994, 1995, 1997, 1998, 1999, 2000 Aladdin Enterprises, Menlo Park, California, + U.S.A. +ignorable_holders: + - Aladdin Enterprises, Menlo Park, California, U.S.A. +--- + Aladdin Free Public License (Version 9, September 18, 2000) @@ -225,4 +242,4 @@ accordance with the terms of this License. If the unit or agency is other than DOD, the Program and its documentation are classified as "commercial computer software" and "commercial computer software documentation" respectively and, pursuant to FAR Section 12.212, the Government is acquiring the Program and its -documentation in accordance with the terms of this License. +documentation in accordance with the terms of this License. \ No newline at end of file diff --git a/docs/afpl-9.0.html b/docs/afpl-9.0.html index 9a2af23ab4..86755b4a03 100644 --- a/docs/afpl-9.0.html +++ b/docs/afpl-9.0.html @@ -369,8 +369,7 @@ DOD, the Program and its documentation are classified as "commercial computer software" and "commercial computer software documentation" respectively and, pursuant to FAR Section 12.212, the Government is acquiring the Program and its -documentation in accordance with the terms of this License. - +documentation in accordance with the terms of this License.
@@ -382,7 +381,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/afpl-9.0.json b/docs/afpl-9.0.json index 0abcce04f7..03a3e28bf9 100644 --- a/docs/afpl-9.0.json +++ b/docs/afpl-9.0.json @@ -1 +1,18 @@ -{"key": "afpl-9.0", "short_name": "Aladdin FPL v9", "name": "Aladdin Free Public License v9", "category": "Copyleft", "owner": "Aladdin Enterprises", "homepage_url": "http://www.artifex.com/downloads/doc/Public.htm", "spdx_license_key": "LicenseRef-scancode-afpl-9.0", "text_urls": ["http://www.artifex.com/downloads/doc/Public.htm"], "ignorable_copyrights": ["Copyright (c) 1994, 1995, 1997, 1998, 1999, 2000 Aladdin Enterprises, Menlo Park, California, U.S.A."], "ignorable_holders": ["Aladdin Enterprises, Menlo Park, California, U.S.A."]} \ No newline at end of file +{ + "key": "afpl-9.0", + "short_name": "Aladdin FPL v9", + "name": "Aladdin Free Public License v9", + "category": "Copyleft", + "owner": "Aladdin Enterprises", + "homepage_url": "http://www.artifex.com/downloads/doc/Public.htm", + "spdx_license_key": "LicenseRef-scancode-afpl-9.0", + "text_urls": [ + "http://www.artifex.com/downloads/doc/Public.htm" + ], + "ignorable_copyrights": [ + "Copyright (c) 1994, 1995, 1997, 1998, 1999, 2000 Aladdin Enterprises, Menlo Park, California, U.S.A." + ], + "ignorable_holders": [ + "Aladdin Enterprises, Menlo Park, California, U.S.A." + ] +} \ No newline at end of file diff --git a/docs/agentxpp.LICENSE b/docs/agentxpp.LICENSE index 141bbbdc6a..7078dfcdca 100644 --- a/docs/agentxpp.LICENSE +++ b/docs/agentxpp.LICENSE @@ -1,3 +1,15 @@ +--- +key: agentxpp +short_name: AgentX++ License Agreement +name: AgentX++ License Agreement +category: Commercial +owner: agentpp +homepage_url: https://agentpp.com/licenses/LICENSE_AgentX++.txt +spdx_license_key: LicenseRef-scancode-agentxpp +ignorable_urls: + - http://www.agentpp.com/ +--- + AGENTX++ LICENSE AGREEMENT ========================== diff --git a/docs/agentxpp.html b/docs/agentxpp.html index 6beaee2a93..cd6813bdd3 100644 --- a/docs/agentxpp.html +++ b/docs/agentxpp.html @@ -446,7 +446,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/agentxpp.json b/docs/agentxpp.json index d9fa20bc77..7fca47468e 100644 --- a/docs/agentxpp.json +++ b/docs/agentxpp.json @@ -1 +1,12 @@ -{"key": "agentxpp", "short_name": "AgentX++ License Agreement", "name": "AgentX++ License Agreement", "category": "Commercial", "owner": "agentpp", "homepage_url": "https://agentpp.com/licenses/LICENSE_AgentX++.txt", "spdx_license_key": "LicenseRef-scancode-agentxpp", "ignorable_urls": ["http://www.agentpp.com/"]} \ No newline at end of file +{ + "key": "agentxpp", + "short_name": "AgentX++ License Agreement", + "name": "AgentX++ License Agreement", + "category": "Commercial", + "owner": "agentpp", + "homepage_url": "https://agentpp.com/licenses/LICENSE_AgentX++.txt", + "spdx_license_key": "LicenseRef-scancode-agentxpp", + "ignorable_urls": [ + "http://www.agentpp.com/" + ] +} \ No newline at end of file diff --git a/docs/agere-bsd.LICENSE b/docs/agere-bsd.LICENSE index ed14385a0a..39f3b1df34 100644 --- a/docs/agere-bsd.LICENSE +++ b/docs/agere-bsd.LICENSE @@ -1,3 +1,32 @@ +--- +key: agere-bsd +short_name: Agere BSD +name: Agere Systems BSD Software license +category: Permissive +owner: LSI Corporation +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.agere +notes: | + commonly found in Linux The driver is coverred by the following copyright + and software license. ... license text ... The following statement from + Agere clarifies the status of the firmware. I would like to confirm that + the two drivers; Linux LKM Wireless Driver Source Code, Version 7.18 and + Linux LKM Wireless Driver Source Code, Version 7.22 comply with Open Source + BSD License. Therefore the source code can be distributed in unmodified or + modified form consistent with the terms of the license. The Linux driver + architecture was based on two modules, the MSF (Module specific functions) + and the HCF (Hardware Control Functions). Included in the HCF is run-time + firmware (binary format) which is downloaded into the RAM of the Hermes + 1/2/2.5 WMAC. This hex coded firmware is not based on any open source + software and hence it is not subject to any Open Source License. The + firmware was developed by Agere and runs on the DISC processor embedded + within the Hermes 1/2/2.5 Wireless MAC devices. Hope this helps. Sincerely, + Viren Pathare Intellectual Property Licensing Manager Agere +spdx_license_key: LicenseRef-scancode-agere-bsd +other_urls: + - https://github.com/mdamt/linux-firmware/blob/bf9f8648fdf1d1d63db471554781f897d219bd62/LICENCE.agere +minimum_coverage: 80 +--- + SOFTWARE LICENSE This software is provided subject to the following terms and conditions, @@ -34,4 +63,4 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, INCLUDING, BUT NOT LIMITED TO, 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. +DAMAGE. \ No newline at end of file diff --git a/docs/agere-bsd.html b/docs/agere-bsd.html index 72c6fbcdc7..b244b8c0b4 100644 --- a/docs/agere-bsd.html +++ b/docs/agere-bsd.html @@ -189,8 +189,7 @@ ON ANY THEORY OF LIABILITY, INCLUDING, BUT NOT LIMITED TO, 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. - +DAMAGE.
@@ -202,7 +201,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/agere-bsd.json b/docs/agere-bsd.json index c2c6a0b552..d92b2c64b1 100644 --- a/docs/agere-bsd.json +++ b/docs/agere-bsd.json @@ -1 +1,14 @@ -{"key": "agere-bsd", "short_name": "Agere BSD", "name": "Agere Systems BSD Software license", "category": "Permissive", "owner": "LSI Corporation", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.agere", "notes": "commonly found in Linux The driver is coverred by the following copyright\nand software license. ... license text ... The following statement from\nAgere clarifies the status of the firmware. I would like to confirm that\nthe two drivers; Linux LKM Wireless Driver Source Code, Version 7.18 and\nLinux LKM Wireless Driver Source Code, Version 7.22 comply with Open Source\nBSD License. Therefore the source code can be distributed in unmodified or\nmodified form consistent with the terms of the license. The Linux driver\narchitecture was based on two modules, the MSF (Module specific functions)\nand the HCF (Hardware Control Functions). Included in the HCF is run-time\nfirmware (binary format) which is downloaded into the RAM of the Hermes\n1/2/2.5 WMAC. This hex coded firmware is not based on any open source\nsoftware and hence it is not subject to any Open Source License. The\nfirmware was developed by Agere and runs on the DISC processor embedded\nwithin the Hermes 1/2/2.5 Wireless MAC devices. Hope this helps. Sincerely,\nViren Pathare Intellectual Property Licensing Manager Agere\n", "spdx_license_key": "LicenseRef-scancode-agere-bsd", "other_urls": ["https://github.com/mdamt/linux-firmware/blob/bf9f8648fdf1d1d63db471554781f897d219bd62/LICENCE.agere"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "agere-bsd", + "short_name": "Agere BSD", + "name": "Agere Systems BSD Software license", + "category": "Permissive", + "owner": "LSI Corporation", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.agere", + "notes": "commonly found in Linux The driver is coverred by the following copyright\nand software license. ... license text ... The following statement from\nAgere clarifies the status of the firmware. I would like to confirm that\nthe two drivers; Linux LKM Wireless Driver Source Code, Version 7.18 and\nLinux LKM Wireless Driver Source Code, Version 7.22 comply with Open Source\nBSD License. Therefore the source code can be distributed in unmodified or\nmodified form consistent with the terms of the license. The Linux driver\narchitecture was based on two modules, the MSF (Module specific functions)\nand the HCF (Hardware Control Functions). Included in the HCF is run-time\nfirmware (binary format) which is downloaded into the RAM of the Hermes\n1/2/2.5 WMAC. This hex coded firmware is not based on any open source\nsoftware and hence it is not subject to any Open Source License. The\nfirmware was developed by Agere and runs on the DISC processor embedded\nwithin the Hermes 1/2/2.5 Wireless MAC devices. Hope this helps. Sincerely,\nViren Pathare Intellectual Property Licensing Manager Agere\n", + "spdx_license_key": "LicenseRef-scancode-agere-bsd", + "other_urls": [ + "https://github.com/mdamt/linux-firmware/blob/bf9f8648fdf1d1d63db471554781f897d219bd62/LICENCE.agere" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/agere-sla.LICENSE b/docs/agere-sla.LICENSE index 7d9ea79a2d..acfbec2ebd 100644 --- a/docs/agere-sla.LICENSE +++ b/docs/agere-sla.LICENSE @@ -1,3 +1,15 @@ +--- +key: agere-sla +short_name: Agere WindModem EULA +name: Agere Systems WinModem EULA +category: Proprietary Free +owner: LSI Corporation +homepage_url: http://fedoraproject.org/wiki/Licensing/Agere_LT_Modem_Driver_License +spdx_license_key: LicenseRef-scancode-agere-sla +text_urls: + - http://fedoraproject.org/wiki/Licensing/Agere_LT_Modem_Driver_License +--- + Agere Systems WinModem End User SOFTWARE LICENSE AGREEMENT diff --git a/docs/agere-sla.html b/docs/agere-sla.html index ac34e7c46b..1de807a107 100644 --- a/docs/agere-sla.html +++ b/docs/agere-sla.html @@ -247,7 +247,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/agere-sla.json b/docs/agere-sla.json index e39d3ce85c..32bea6ff6a 100644 --- a/docs/agere-sla.json +++ b/docs/agere-sla.json @@ -1 +1,12 @@ -{"key": "agere-sla", "short_name": "Agere WindModem EULA", "name": "Agere Systems WinModem EULA", "category": "Proprietary Free", "owner": "LSI Corporation", "homepage_url": "http://fedoraproject.org/wiki/Licensing/Agere_LT_Modem_Driver_License", "spdx_license_key": "LicenseRef-scancode-agere-sla", "text_urls": ["http://fedoraproject.org/wiki/Licensing/Agere_LT_Modem_Driver_License"]} \ No newline at end of file +{ + "key": "agere-sla", + "short_name": "Agere WindModem EULA", + "name": "Agere Systems WinModem EULA", + "category": "Proprietary Free", + "owner": "LSI Corporation", + "homepage_url": "http://fedoraproject.org/wiki/Licensing/Agere_LT_Modem_Driver_License", + "spdx_license_key": "LicenseRef-scancode-agere-sla", + "text_urls": [ + "http://fedoraproject.org/wiki/Licensing/Agere_LT_Modem_Driver_License" + ] +} \ No newline at end of file diff --git a/docs/ago-private-1.0.LICENSE b/docs/ago-private-1.0.LICENSE index 9352982260..338efb9cd1 100644 --- a/docs/ago-private-1.0.LICENSE +++ b/docs/ago-private-1.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: ago-private-1.0 +short_name: Ago Private License 1.0 +name: Ago Private License 1.0 +category: Proprietary Free +owner: Unspecified +spdx_license_key: LicenseRef-scancode-ago-private-1.0 +text_urls: + - https://bitbucket.org/mikechung/agobot3/src/master/apl.txt +--- + Ago's Private License 1.0: ----------------------------- diff --git a/docs/ago-private-1.0.html b/docs/ago-private-1.0.html index 5e6770ff9c..f07abf7fee 100644 --- a/docs/ago-private-1.0.html +++ b/docs/ago-private-1.0.html @@ -155,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ago-private-1.0.json b/docs/ago-private-1.0.json index 3122bd4171..d4d02afa6f 100644 --- a/docs/ago-private-1.0.json +++ b/docs/ago-private-1.0.json @@ -1 +1,11 @@ -{"key": "ago-private-1.0", "short_name": "Ago Private License 1.0", "name": "Ago Private License 1.0", "category": "Proprietary Free", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-ago-private-1.0", "text_urls": ["https://bitbucket.org/mikechung/agobot3/src/master/apl.txt"]} \ No newline at end of file +{ + "key": "ago-private-1.0", + "short_name": "Ago Private License 1.0", + "name": "Ago Private License 1.0", + "category": "Proprietary Free", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-ago-private-1.0", + "text_urls": [ + "https://bitbucket.org/mikechung/agobot3/src/master/apl.txt" + ] +} \ No newline at end of file diff --git a/docs/agpl-1.0-plus.LICENSE b/docs/agpl-1.0-plus.LICENSE index ae012e4241..72ab5eb6dc 100644 --- a/docs/agpl-1.0-plus.LICENSE +++ b/docs/agpl-1.0-plus.LICENSE @@ -1,3 +1,32 @@ +--- +key: agpl-1.0-plus +short_name: AGPL 1.0 or later +name: Affero General Public License 1.0 or later +category: Copyleft +owner: Affero +homepage_url: http://www.affero.org/oagpl.html +notes: | + per SPDX.org Section 9 of this license allows content under this any later + version grant to be redistributed under the GPL-3.0-or-later. Affero Inc. + also released an AGPL-2.0 (http://www.affero.org/agpl2.html) to allow + AGPL-1.0-or-later work to be distributed under the AGPL-3.0-or-later. +spdx_license_key: AGPL-1.0-or-later +other_spdx_license_keys: + - AGPL-1.0+ +text_urls: + - http://www.affero.org/oagpl.html +faq_url: http://www.affero.org/oagf.html +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 2002 Affero Inc. + - copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by Affero, Inc. +ignorable_holders: + - Affero Inc. + - Affero, Inc. + - Free Software Foundation, Inc. +--- + This is free software; you can redistribute it and/or modify it under the terms of the AFFERO GENERAL PUBLIC LICENSE as published by Affero Inc; either version 1, or (at your option) any later version. diff --git a/docs/agpl-1.0-plus.html b/docs/agpl-1.0-plus.html index 570b9ca74a..b7d50ed9d2 100644 --- a/docs/agpl-1.0-plus.html +++ b/docs/agpl-1.0-plus.html @@ -470,7 +470,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/agpl-1.0-plus.json b/docs/agpl-1.0-plus.json index 07703b711f..f7a469c2b6 100644 --- a/docs/agpl-1.0-plus.json +++ b/docs/agpl-1.0-plus.json @@ -1 +1,28 @@ -{"key": "agpl-1.0-plus", "short_name": "AGPL 1.0 or later", "name": "Affero General Public License 1.0 or later", "category": "Copyleft", "owner": "Affero", "homepage_url": "http://www.affero.org/oagpl.html", "notes": "per SPDX.org Section 9 of this license allows content under this any later\nversion grant to be redistributed under the GPL-3.0-or-later. Affero Inc.\nalso released an AGPL-2.0 (http://www.affero.org/agpl2.html) to allow\nAGPL-1.0-or-later work to be distributed under the AGPL-3.0-or-later.\n", "spdx_license_key": "AGPL-1.0-or-later", "other_spdx_license_keys": ["AGPL-1.0+"], "text_urls": ["http://www.affero.org/oagpl.html"], "faq_url": "http://www.affero.org/oagf.html", "minimum_coverage": 80, "ignorable_copyrights": ["Copyright (c) 2002 Affero Inc.", "copyright (c) 1989, 1991 Free Software Foundation, Inc.", "copyrighted by Affero, Inc."], "ignorable_holders": ["Affero Inc.", "Affero, Inc.", "Free Software Foundation, Inc."]} \ No newline at end of file +{ + "key": "agpl-1.0-plus", + "short_name": "AGPL 1.0 or later", + "name": "Affero General Public License 1.0 or later", + "category": "Copyleft", + "owner": "Affero", + "homepage_url": "http://www.affero.org/oagpl.html", + "notes": "per SPDX.org Section 9 of this license allows content under this any later\nversion grant to be redistributed under the GPL-3.0-or-later. Affero Inc.\nalso released an AGPL-2.0 (http://www.affero.org/agpl2.html) to allow\nAGPL-1.0-or-later work to be distributed under the AGPL-3.0-or-later.\n", + "spdx_license_key": "AGPL-1.0-or-later", + "other_spdx_license_keys": [ + "AGPL-1.0+" + ], + "text_urls": [ + "http://www.affero.org/oagpl.html" + ], + "faq_url": "http://www.affero.org/oagf.html", + "minimum_coverage": 80, + "ignorable_copyrights": [ + "Copyright (c) 2002 Affero Inc.", + "copyright (c) 1989, 1991 Free Software Foundation, Inc.", + "copyrighted by Affero, Inc." + ], + "ignorable_holders": [ + "Affero Inc.", + "Affero, Inc.", + "Free Software Foundation, Inc." + ] +} \ No newline at end of file diff --git a/docs/agpl-1.0.LICENSE b/docs/agpl-1.0.LICENSE index 031efa6eb1..458e653925 100644 --- a/docs/agpl-1.0.LICENSE +++ b/docs/agpl-1.0.LICENSE @@ -1,3 +1,27 @@ +--- +key: agpl-1.0 +short_name: AGPL 1.0 +name: Affero General Public License 1.0 +category: Copyleft +owner: Affero +homepage_url: http://www.affero.org/oagpl.html +spdx_license_key: AGPL-1.0-only +other_spdx_license_keys: + - AGPL-1.0 +text_urls: + - http://www.affero.org/oagpl.html +faq_url: http://www.affero.org/oagf.html +minimum_coverage: 75 +ignorable_copyrights: + - Copyright (c) 2002 Affero Inc. + - copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by Affero, Inc. +ignorable_holders: + - Affero Inc. + - Affero, Inc. + - Free Software Foundation, Inc. +--- + AFFERO GENERAL PUBLIC LICENSE Version 1, March 2002 diff --git a/docs/agpl-1.0.html b/docs/agpl-1.0.html index c00d39592d..b9ea8ee901 100644 --- a/docs/agpl-1.0.html +++ b/docs/agpl-1.0.html @@ -449,7 +449,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/agpl-1.0.json b/docs/agpl-1.0.json index 8b3f26ceee..e4f879fe08 100644 --- a/docs/agpl-1.0.json +++ b/docs/agpl-1.0.json @@ -1 +1,27 @@ -{"key": "agpl-1.0", "short_name": "AGPL 1.0", "name": "Affero General Public License 1.0", "category": "Copyleft", "owner": "Affero", "homepage_url": "http://www.affero.org/oagpl.html", "spdx_license_key": "AGPL-1.0-only", "other_spdx_license_keys": ["AGPL-1.0"], "text_urls": ["http://www.affero.org/oagpl.html"], "faq_url": "http://www.affero.org/oagf.html", "minimum_coverage": 75, "ignorable_copyrights": ["Copyright (c) 2002 Affero Inc.", "copyright (c) 1989, 1991 Free Software Foundation, Inc.", "copyrighted by Affero, Inc."], "ignorable_holders": ["Affero Inc.", "Affero, Inc.", "Free Software Foundation, Inc."]} \ No newline at end of file +{ + "key": "agpl-1.0", + "short_name": "AGPL 1.0", + "name": "Affero General Public License 1.0", + "category": "Copyleft", + "owner": "Affero", + "homepage_url": "http://www.affero.org/oagpl.html", + "spdx_license_key": "AGPL-1.0-only", + "other_spdx_license_keys": [ + "AGPL-1.0" + ], + "text_urls": [ + "http://www.affero.org/oagpl.html" + ], + "faq_url": "http://www.affero.org/oagf.html", + "minimum_coverage": 75, + "ignorable_copyrights": [ + "Copyright (c) 2002 Affero Inc.", + "copyright (c) 1989, 1991 Free Software Foundation, Inc.", + "copyrighted by Affero, Inc." + ], + "ignorable_holders": [ + "Affero Inc.", + "Affero, Inc.", + "Free Software Foundation, Inc." + ] +} \ No newline at end of file diff --git a/docs/agpl-2.0.LICENSE b/docs/agpl-2.0.LICENSE index 7069ca3252..afc6dd687e 100644 --- a/docs/agpl-2.0.LICENSE +++ b/docs/agpl-2.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: agpl-2.0 +short_name: AGPL 2.0 +name: Affero General Public License 2.0 +category: Copyleft +owner: Affero +homepage_url: http://www.affero.org/agpl2.html +spdx_license_key: LicenseRef-scancode-agpl-2.0 +text_urls: + - http://www.affero.org/agpl2.html +faq_url: http://www.affero.org/oagf.html +ignorable_copyrights: + - Copyright (c) 2007 Affero Inc. +ignorable_holders: + - Affero Inc. +--- + AFFERO GENERAL PUBLIC LICENSE Version 2, November 2007 diff --git a/docs/agpl-2.0.html b/docs/agpl-2.0.html index 722c90120a..09752d4c22 100644 --- a/docs/agpl-2.0.html +++ b/docs/agpl-2.0.html @@ -176,7 +176,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/agpl-2.0.json b/docs/agpl-2.0.json index c99d547272..80fc51d0ee 100644 --- a/docs/agpl-2.0.json +++ b/docs/agpl-2.0.json @@ -1 +1,19 @@ -{"key": "agpl-2.0", "short_name": "AGPL 2.0", "name": "Affero General Public License 2.0", "category": "Copyleft", "owner": "Affero", "homepage_url": "http://www.affero.org/agpl2.html", "spdx_license_key": "LicenseRef-scancode-agpl-2.0", "text_urls": ["http://www.affero.org/agpl2.html"], "faq_url": "http://www.affero.org/oagf.html", "ignorable_copyrights": ["Copyright (c) 2007 Affero Inc."], "ignorable_holders": ["Affero Inc."]} \ No newline at end of file +{ + "key": "agpl-2.0", + "short_name": "AGPL 2.0", + "name": "Affero General Public License 2.0", + "category": "Copyleft", + "owner": "Affero", + "homepage_url": "http://www.affero.org/agpl2.html", + "spdx_license_key": "LicenseRef-scancode-agpl-2.0", + "text_urls": [ + "http://www.affero.org/agpl2.html" + ], + "faq_url": "http://www.affero.org/oagf.html", + "ignorable_copyrights": [ + "Copyright (c) 2007 Affero Inc." + ], + "ignorable_holders": [ + "Affero Inc." + ] +} \ No newline at end of file diff --git a/docs/agpl-3.0-bacula.LICENSE b/docs/agpl-3.0-bacula.LICENSE index 88398ea232..42368d6634 100644 --- a/docs/agpl-3.0-bacula.LICENSE +++ b/docs/agpl-3.0-bacula.LICENSE @@ -1,3 +1,16 @@ +--- +key: agpl-3.0-bacula +is_deprecated: yes +short_name: AGPL 3.0 with Bacula exception +name: AGPL 3.0 with Bacula exception +category: Copyleft +owner: Bacula +notes: composite +is_exception: yes +other_urls: + - http://www.gnu.org/licenses/ +--- + Last revision: 21 May 2017 Bacula is licensed under the GNU Affero General Public License, version diff --git a/docs/agpl-3.0-bacula.html b/docs/agpl-3.0-bacula.html index 007aeea91f..af9d5c3c0a 100644 --- a/docs/agpl-3.0-bacula.html +++ b/docs/agpl-3.0-bacula.html @@ -927,7 +927,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/agpl-3.0-bacula.json b/docs/agpl-3.0-bacula.json index 51979b24bd..91e3317e7b 100644 --- a/docs/agpl-3.0-bacula.json +++ b/docs/agpl-3.0-bacula.json @@ -1 +1,13 @@ -{"key": "agpl-3.0-bacula", "is_deprecated": true, "short_name": "AGPL 3.0 with Bacula exception", "name": "AGPL 3.0 with Bacula exception", "category": "Copyleft", "owner": "Bacula", "notes": "composite", "is_exception": true, "other_urls": ["http://www.gnu.org/licenses/"]} \ No newline at end of file +{ + "key": "agpl-3.0-bacula", + "is_deprecated": true, + "short_name": "AGPL 3.0 with Bacula exception", + "name": "AGPL 3.0 with Bacula exception", + "category": "Copyleft", + "owner": "Bacula", + "notes": "composite", + "is_exception": true, + "other_urls": [ + "http://www.gnu.org/licenses/" + ] +} \ No newline at end of file diff --git a/docs/agpl-3.0-linking-exception.LICENSE b/docs/agpl-3.0-linking-exception.LICENSE index 57def44818..1c85dd3982 100644 --- a/docs/agpl-3.0-linking-exception.LICENSE +++ b/docs/agpl-3.0-linking-exception.LICENSE @@ -1,6 +1,18 @@ +--- +key: agpl-3.0-linking-exception +is_deprecated: yes +short_name: AGPL 3.0 linking exception +name: AGPL 3.0 linking exception +category: Copyleft Limited +owner: Unspecified +homepage_url: http://mo.morsi.org/blog/2009/08/13/lesser_affero_gplv3/ +notes: renamed to linking-exception-agpl-3.0 +is_exception: yes +--- + Additional permission under the GNU Affero GPL version 3 section 7: If you modify this Program, or any covered work, by linking or combining it with other code, such other code is not for that reason alone subject to any of the requirements of the GNU Affero GPL -version 3. +version 3. \ No newline at end of file diff --git a/docs/agpl-3.0-linking-exception.html b/docs/agpl-3.0-linking-exception.html index dc050bc498..86112efc58 100644 --- a/docs/agpl-3.0-linking-exception.html +++ b/docs/agpl-3.0-linking-exception.html @@ -134,8 +134,7 @@ If you modify this Program, or any covered work, by linking or combining it with other code, such other code is not for that reason alone subject to any of the requirements of the GNU Affero GPL -version 3. - +version 3.
@@ -147,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/agpl-3.0-linking-exception.json b/docs/agpl-3.0-linking-exception.json index 6e0c1f0806..1c8c4d0ad0 100644 --- a/docs/agpl-3.0-linking-exception.json +++ b/docs/agpl-3.0-linking-exception.json @@ -1 +1,11 @@ -{"key": "agpl-3.0-linking-exception", "is_deprecated": true, "short_name": "AGPL 3.0 linking exception", "name": "AGPL 3.0 linking exception", "category": "Copyleft Limited", "owner": "Unspecified", "homepage_url": "http://mo.morsi.org/blog/2009/08/13/lesser_affero_gplv3/", "notes": "renamed to linking-exception-agpl-3.0", "is_exception": true} \ No newline at end of file +{ + "key": "agpl-3.0-linking-exception", + "is_deprecated": true, + "short_name": "AGPL 3.0 linking exception", + "name": "AGPL 3.0 linking exception", + "category": "Copyleft Limited", + "owner": "Unspecified", + "homepage_url": "http://mo.morsi.org/blog/2009/08/13/lesser_affero_gplv3/", + "notes": "renamed to linking-exception-agpl-3.0", + "is_exception": true +} \ No newline at end of file diff --git a/docs/agpl-3.0-openssl.LICENSE b/docs/agpl-3.0-openssl.LICENSE index d5c9a86937..19ac10b208 100644 --- a/docs/agpl-3.0-openssl.LICENSE +++ b/docs/agpl-3.0-openssl.LICENSE @@ -1,3 +1,13 @@ +--- +key: agpl-3.0-openssl +is_deprecated: yes +short_name: AGPL 3.0 with OpenSSL exception +name: AGPL 3.0 with OpenSSL exception +category: Copyleft +owner: MongoDB +notes: replaced by openssl-exception-agpl-3.0 +is_exception: yes +--- As a special exception, the copyright holders give permission to link the code of portions of this program with the OpenSSL library under certain diff --git a/docs/agpl-3.0-openssl.html b/docs/agpl-3.0-openssl.html index f22310a850..f9473a4af7 100644 --- a/docs/agpl-3.0-openssl.html +++ b/docs/agpl-3.0-openssl.html @@ -122,8 +122,7 @@
license_text
-

-As a special exception, the copyright holders give permission to link the
+    
As a special exception, the copyright holders give permission to link the
 code of portions of this program with the OpenSSL library under certain
 conditions as described in each individual source file and distribute
 linked combinations including the program with the OpenSSL library. You
@@ -145,7 +144,8 @@
       AboutCode
     

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/agpl-3.0-openssl.json b/docs/agpl-3.0-openssl.json index e596aa5c6d..2247574551 100644 --- a/docs/agpl-3.0-openssl.json +++ b/docs/agpl-3.0-openssl.json @@ -1 +1,10 @@ -{"key": "agpl-3.0-openssl", "is_deprecated": true, "short_name": "AGPL 3.0 with OpenSSL exception", "name": "AGPL 3.0 with OpenSSL exception", "category": "Copyleft", "owner": "MongoDB", "notes": "replaced by openssl-exception-agpl-3.0", "is_exception": true} \ No newline at end of file +{ + "key": "agpl-3.0-openssl", + "is_deprecated": true, + "short_name": "AGPL 3.0 with OpenSSL exception", + "name": "AGPL 3.0 with OpenSSL exception", + "category": "Copyleft", + "owner": "MongoDB", + "notes": "replaced by openssl-exception-agpl-3.0", + "is_exception": true +} \ No newline at end of file diff --git a/docs/agpl-3.0-plus.LICENSE b/docs/agpl-3.0-plus.LICENSE index a390c80a82..2367337d37 100644 --- a/docs/agpl-3.0-plus.LICENSE +++ b/docs/agpl-3.0-plus.LICENSE @@ -1,3 +1,38 @@ +--- +key: agpl-3.0-plus +short_name: AGPL 3.0 or later +name: GNU Affero General Public License 3.0 or later +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/agpl-3.0.html +notes: | + Per SPDX.org, this version was released 19 November 2007 This license is + OSI certified +spdx_license_key: AGPL-3.0-or-later +other_spdx_license_keys: + - AGPL-3.0+ + - LicenseRef-AGPL +text_urls: + - http://www.gnu.org/licenses/agpl.txt +osi_url: http://www.opensource.org/licenses/agpl-v3.html +faq_url: http://www.affero.org/oagf.html +other_urls: + - http://www.fsf.org/licensing/licenses/agpl-3.0.html + - http://www.fsf.org/licensing/licenses/agpl-3.0.txt + - http://www.opensource.org/licenses/AGPL-3.0 + - https://opensource.org/licenses/AGPL-3.0 + - https://www.gnu.org/licenses/agpl.txt +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/licenses/ + - https://fsf.org/ + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the @@ -671,4 +706,4 @@ specific requirements. 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 AGPL, see -. +. \ No newline at end of file diff --git a/docs/agpl-3.0-plus.html b/docs/agpl-3.0-plus.html index 5222b53496..8f5421f8f3 100644 --- a/docs/agpl-3.0-plus.html +++ b/docs/agpl-3.0-plus.html @@ -872,8 +872,7 @@ 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 AGPL, see -<https://www.gnu.org/licenses/>. -
+<https://www.gnu.org/licenses/>.
@@ -885,7 +884,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/agpl-3.0-plus.json b/docs/agpl-3.0-plus.json index 245a59a2ba..00c44f0a6a 100644 --- a/docs/agpl-3.0-plus.json +++ b/docs/agpl-3.0-plus.json @@ -1 +1,38 @@ -{"key": "agpl-3.0-plus", "short_name": "AGPL 3.0 or later", "name": "GNU Affero General Public License 3.0 or later", "category": "Copyleft", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/agpl-3.0.html", "notes": "Per SPDX.org, this version was released 19 November 2007 This license is\nOSI certified\n", "spdx_license_key": "AGPL-3.0-or-later", "other_spdx_license_keys": ["AGPL-3.0+", "LicenseRef-AGPL"], "text_urls": ["http://www.gnu.org/licenses/agpl.txt"], "osi_url": "http://www.opensource.org/licenses/agpl-v3.html", "faq_url": "http://www.affero.org/oagf.html", "other_urls": ["http://www.fsf.org/licensing/licenses/agpl-3.0.html", "http://www.fsf.org/licensing/licenses/agpl-3.0.txt", "http://www.opensource.org/licenses/AGPL-3.0", "https://opensource.org/licenses/AGPL-3.0", "https://www.gnu.org/licenses/agpl.txt"], "minimum_coverage": 99, "ignorable_copyrights": ["Copyright (c) 2007 Free Software Foundation, Inc. "], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://www.gnu.org/licenses/", "https://fsf.org/", "https://www.gnu.org/licenses/"]} \ No newline at end of file +{ + "key": "agpl-3.0-plus", + "short_name": "AGPL 3.0 or later", + "name": "GNU Affero General Public License 3.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/agpl-3.0.html", + "notes": "Per SPDX.org, this version was released 19 November 2007 This license is\nOSI certified\n", + "spdx_license_key": "AGPL-3.0-or-later", + "other_spdx_license_keys": [ + "AGPL-3.0+", + "LicenseRef-AGPL" + ], + "text_urls": [ + "http://www.gnu.org/licenses/agpl.txt" + ], + "osi_url": "http://www.opensource.org/licenses/agpl-v3.html", + "faq_url": "http://www.affero.org/oagf.html", + "other_urls": [ + "http://www.fsf.org/licensing/licenses/agpl-3.0.html", + "http://www.fsf.org/licensing/licenses/agpl-3.0.txt", + "http://www.opensource.org/licenses/AGPL-3.0", + "https://opensource.org/licenses/AGPL-3.0", + "https://www.gnu.org/licenses/agpl.txt" + ], + "minimum_coverage": 99, + "ignorable_copyrights": [ + "Copyright (c) 2007 Free Software Foundation, Inc. " + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://www.gnu.org/licenses/", + "https://fsf.org/", + "https://www.gnu.org/licenses/" + ] +} \ No newline at end of file diff --git a/docs/agpl-3.0.LICENSE b/docs/agpl-3.0.LICENSE index be3f7b28e5..4061ef5ec0 100644 --- a/docs/agpl-3.0.LICENSE +++ b/docs/agpl-3.0.LICENSE @@ -1,3 +1,37 @@ +--- +key: agpl-3.0 +short_name: AGPL 3.0 +name: GNU Affero General Public License 3.0 +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/agpl-3.0.html +notes: | + Per SPDX.org, this version was released 19 November 2007 This license is + OSI certified +spdx_license_key: AGPL-3.0-only +other_spdx_license_keys: + - AGPL-3.0 + - LicenseRef-AGPL-3.0 +osi_license_key: AGPL-3.0 +text_urls: + - http://www.fsf.org/licensing/licenses/agpl-3.0.html +osi_url: http://www.opensource.org/licenses/agpl-v3.html +faq_url: http://www.affero.org/oagf.html +other_urls: + - http://www.gnu.org/licenses/agpl.txt + - http://www.opensource.org/licenses/AGPL-3.0 + - https://opensource.google.com/docs/using/agpl-policy/ + - https://opensource.org/licenses/AGPL-3.0 + - https://www.gnu.org/licenses/agpl.txt +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://fsf.org/ + - https://www.gnu.org/licenses/ +--- + GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 @@ -658,4 +692,4 @@ specific requirements. 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 AGPL, see -. +. \ No newline at end of file diff --git a/docs/agpl-3.0.html b/docs/agpl-3.0.html index d7c38c8225..672f0f55a0 100644 --- a/docs/agpl-3.0.html +++ b/docs/agpl-3.0.html @@ -859,8 +859,7 @@ 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 AGPL, see -<https://www.gnu.org/licenses/>. - +<https://www.gnu.org/licenses/>.
@@ -872,7 +871,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/agpl-3.0.json b/docs/agpl-3.0.json index 91ae2cbe1d..00dbf632a8 100644 --- a/docs/agpl-3.0.json +++ b/docs/agpl-3.0.json @@ -1 +1,37 @@ -{"key": "agpl-3.0", "short_name": "AGPL 3.0", "name": "GNU Affero General Public License 3.0", "category": "Copyleft", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/agpl-3.0.html", "notes": "Per SPDX.org, this version was released 19 November 2007 This license is\nOSI certified\n", "spdx_license_key": "AGPL-3.0-only", "other_spdx_license_keys": ["AGPL-3.0", "LicenseRef-AGPL-3.0"], "osi_license_key": "AGPL-3.0", "text_urls": ["http://www.fsf.org/licensing/licenses/agpl-3.0.html"], "osi_url": "http://www.opensource.org/licenses/agpl-v3.html", "faq_url": "http://www.affero.org/oagf.html", "other_urls": ["http://www.gnu.org/licenses/agpl.txt", "http://www.opensource.org/licenses/AGPL-3.0", "https://opensource.google.com/docs/using/agpl-policy/", "https://opensource.org/licenses/AGPL-3.0", "https://www.gnu.org/licenses/agpl.txt"], "ignorable_copyrights": ["Copyright (c) 2007 Free Software Foundation, Inc. "], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["https://fsf.org/", "https://www.gnu.org/licenses/"]} \ No newline at end of file +{ + "key": "agpl-3.0", + "short_name": "AGPL 3.0", + "name": "GNU Affero General Public License 3.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/agpl-3.0.html", + "notes": "Per SPDX.org, this version was released 19 November 2007 This license is\nOSI certified\n", + "spdx_license_key": "AGPL-3.0-only", + "other_spdx_license_keys": [ + "AGPL-3.0", + "LicenseRef-AGPL-3.0" + ], + "osi_license_key": "AGPL-3.0", + "text_urls": [ + "http://www.fsf.org/licensing/licenses/agpl-3.0.html" + ], + "osi_url": "http://www.opensource.org/licenses/agpl-v3.html", + "faq_url": "http://www.affero.org/oagf.html", + "other_urls": [ + "http://www.gnu.org/licenses/agpl.txt", + "http://www.opensource.org/licenses/AGPL-3.0", + "https://opensource.google.com/docs/using/agpl-policy/", + "https://opensource.org/licenses/AGPL-3.0", + "https://www.gnu.org/licenses/agpl.txt" + ], + "ignorable_copyrights": [ + "Copyright (c) 2007 Free Software Foundation, Inc. " + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "https://fsf.org/", + "https://www.gnu.org/licenses/" + ] +} \ No newline at end of file diff --git a/docs/agpl-generic-additional-terms.LICENSE b/docs/agpl-generic-additional-terms.LICENSE index e69de29bb2..b7746f5943 100644 --- a/docs/agpl-generic-additional-terms.LICENSE +++ b/docs/agpl-generic-additional-terms.LICENSE @@ -0,0 +1,12 @@ +--- +key: agpl-generic-additional-terms +short_name: AGPL Generic Additional Terms +name: AGPL Generic Additional Terms +category: Copyleft +owner: Unspecified +notes: this is a generic entry for rare one-off AGPL extra license terms. These are typically + additional terms under section 7 of the AGPL-3.0 +is_exception: yes +is_generic: yes +spdx_license_key: LicenseRef-scancode-agpl-generic-additional-terms +--- \ No newline at end of file diff --git a/docs/agpl-generic-additional-terms.html b/docs/agpl-generic-additional-terms.html index 305342ab44..069f8ea00d 100644 --- a/docs/agpl-generic-additional-terms.html +++ b/docs/agpl-generic-additional-terms.html @@ -141,7 +141,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/agpl-generic-additional-terms.json b/docs/agpl-generic-additional-terms.json index 3fcc079521..c91bacaa63 100644 --- a/docs/agpl-generic-additional-terms.json +++ b/docs/agpl-generic-additional-terms.json @@ -1 +1,11 @@ -{"key": "agpl-generic-additional-terms", "short_name": "AGPL Generic Additional Terms", "name": "AGPL Generic Additional Terms", "category": "Copyleft", "owner": "Unspecified", "notes": "this is a generic entry for rare one-off AGPL extra license terms. These are typically additional terms under section 7 of the AGPL-3.0", "is_exception": true, "is_generic": true, "spdx_license_key": "LicenseRef-scancode-agpl-generic-additional-terms"} \ No newline at end of file +{ + "key": "agpl-generic-additional-terms", + "short_name": "AGPL Generic Additional Terms", + "name": "AGPL Generic Additional Terms", + "category": "Copyleft", + "owner": "Unspecified", + "notes": "this is a generic entry for rare one-off AGPL extra license terms. These are typically additional terms under section 7 of the AGPL-3.0", + "is_exception": true, + "is_generic": true, + "spdx_license_key": "LicenseRef-scancode-agpl-generic-additional-terms" +} \ No newline at end of file diff --git a/docs/aladdin-md5.LICENSE b/docs/aladdin-md5.LICENSE index 2fdca3a501..e8f55562b3 100644 --- a/docs/aladdin-md5.LICENSE +++ b/docs/aladdin-md5.LICENSE @@ -1,3 +1,13 @@ +--- +key: aladdin-md5 +is_deprecated: yes +short_name: Aladdin MD5 License +name: Aladdin MD5 License +category: Permissive +owner: Aladdin Enterprises +notes: This license is exactly the same as the zlib license. +--- + 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. @@ -16,4 +26,4 @@ the following restrictions: 3. This notice may not be removed or altered from any source distribution. -L. Peter Deutsch ghost@aladdin.com +L. Peter Deutsch ghost@aladdin.com \ No newline at end of file diff --git a/docs/aladdin-md5.html b/docs/aladdin-md5.html index 017d6694bf..d8401bf0e3 100644 --- a/docs/aladdin-md5.html +++ b/docs/aladdin-md5.html @@ -133,8 +133,7 @@ 3. This notice may not be removed or altered from any source distribution. -L. Peter Deutsch ghost@aladdin.com - +L. Peter Deutsch ghost@aladdin.com
@@ -146,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/aladdin-md5.json b/docs/aladdin-md5.json index 7477ebc5b2..0c710fa96f 100644 --- a/docs/aladdin-md5.json +++ b/docs/aladdin-md5.json @@ -1 +1,9 @@ -{"key": "aladdin-md5", "is_deprecated": true, "short_name": "Aladdin MD5 License", "name": "Aladdin MD5 License", "category": "Permissive", "owner": "Aladdin Enterprises", "notes": "This license is exactly the same as the zlib license."} \ No newline at end of file +{ + "key": "aladdin-md5", + "is_deprecated": true, + "short_name": "Aladdin MD5 License", + "name": "Aladdin MD5 License", + "category": "Permissive", + "owner": "Aladdin Enterprises", + "notes": "This license is exactly the same as the zlib license." +} \ No newline at end of file diff --git a/docs/alasir.LICENSE b/docs/alasir.LICENSE index f63befac55..0964357cc6 100644 --- a/docs/alasir.LICENSE +++ b/docs/alasir.LICENSE @@ -1,3 +1,13 @@ +--- +key: alasir +short_name: Alasir Licence +name: The Alasir Licence +category: Proprietary Free +owner: Alasir +homepage_url: http://alasir.com/licence/TAL.txt +spdx_license_key: LicenseRef-scancode-alasir +--- + The Alasir Licence This is a free software. It's provided as-is and carries absolutely no diff --git a/docs/alasir.html b/docs/alasir.html index e2ee0f4cf7..6ca2b9c412 100644 --- a/docs/alasir.html +++ b/docs/alasir.html @@ -172,7 +172,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/alasir.json b/docs/alasir.json index b7e23917d1..8a0c882554 100644 --- a/docs/alasir.json +++ b/docs/alasir.json @@ -1 +1,9 @@ -{"key": "alasir", "short_name": "Alasir Licence", "name": "The Alasir Licence", "category": "Proprietary Free", "owner": "Alasir", "homepage_url": "http://alasir.com/licence/TAL.txt", "spdx_license_key": "LicenseRef-scancode-alasir"} \ No newline at end of file +{ + "key": "alasir", + "short_name": "Alasir Licence", + "name": "The Alasir Licence", + "category": "Proprietary Free", + "owner": "Alasir", + "homepage_url": "http://alasir.com/licence/TAL.txt", + "spdx_license_key": "LicenseRef-scancode-alasir" +} \ No newline at end of file diff --git a/docs/alexisisaac-freeware.LICENSE b/docs/alexisisaac-freeware.LICENSE index 915e1ddf80..c7b9c86aad 100644 --- a/docs/alexisisaac-freeware.LICENSE +++ b/docs/alexisisaac-freeware.LICENSE @@ -1,3 +1,15 @@ +--- +key: alexisisaac-freeware +short_name: Alexisisaac Freeware License +name: Alexisisaac Freeware License +category: Permissive +owner: Alexis Isaac +homepage_url: https://sourceforge.net/projects/soleditor/?source=typ_redirect +spdx_license_key: LicenseRef-scancode-alexisisaac-freeware +ignorable_urls: + - http://www.alexisisaac.net/products +--- + FREEWARE LICENSE AGREEMENT Before loading this software on your computer, please carefully read the following terms and conditions. diff --git a/docs/alexisisaac-freeware.html b/docs/alexisisaac-freeware.html index bd5a0525d7..eee9009f8a 100644 --- a/docs/alexisisaac-freeware.html +++ b/docs/alexisisaac-freeware.html @@ -155,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/alexisisaac-freeware.json b/docs/alexisisaac-freeware.json index 1ac8399d6b..4db5e258f1 100644 --- a/docs/alexisisaac-freeware.json +++ b/docs/alexisisaac-freeware.json @@ -1 +1,12 @@ -{"key": "alexisisaac-freeware", "short_name": "Alexisisaac Freeware License", "name": "Alexisisaac Freeware License", "category": "Permissive", "owner": "Alexis Isaac", "homepage_url": "https://sourceforge.net/projects/soleditor/?source=typ_redirect", "spdx_license_key": "LicenseRef-scancode-alexisisaac-freeware", "ignorable_urls": ["http://www.alexisisaac.net/products"]} \ No newline at end of file +{ + "key": "alexisisaac-freeware", + "short_name": "Alexisisaac Freeware License", + "name": "Alexisisaac Freeware License", + "category": "Permissive", + "owner": "Alexis Isaac", + "homepage_url": "https://sourceforge.net/projects/soleditor/?source=typ_redirect", + "spdx_license_key": "LicenseRef-scancode-alexisisaac-freeware", + "ignorable_urls": [ + "http://www.alexisisaac.net/products" + ] +} \ No newline at end of file diff --git a/docs/alfresco-exception-0.5.LICENSE b/docs/alfresco-exception-0.5.LICENSE index 56246d5ca2..83b225ef11 100644 --- a/docs/alfresco-exception-0.5.LICENSE +++ b/docs/alfresco-exception-0.5.LICENSE @@ -1,3 +1,17 @@ +--- +key: alfresco-exception-0.5 +short_name: Alfresco FLOSS Exception v0.5 +name: Alfresco FLOSS Exception v0.5 +category: Copyleft +owner: Alfresco Software +homepage_url: https://web.archive.org/web/20070306001556/http://www.alfresco.com/legal/licensing/floss_exception/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-alfresco-exception-0.5 +ignorable_urls: + - http://www.gnu.org/philosophy/free-sw.html + - http://www.opensource.org/docs/definition.php +--- + Alfresco Software, Ltd. FLOSS License Exception The Alfresco Software, Ltd. Exception for Free/Libre and Open Source Software-only Applications Using Alfresco software (the `FLOSS Exception'). @@ -57,4 +71,4 @@ Appendix A. Qualified Libraries and Packages The following is a a non-exhaustive list of libraries and packages which are covered by the FLOSS License Exception. Please note that appendix is merely provided as an additional service to specific FLOSS projects who wish to simplify licensing information for their users. Compliance with one of the licenses noted under the "FLOSS license list" section remains a prerequisite. Package name Qualifying License and Version -Apache Portable Runtime (APR) Apache Software License 2.0 +Apache Portable Runtime (APR) Apache Software License 2.0 \ No newline at end of file diff --git a/docs/alfresco-exception-0.5.html b/docs/alfresco-exception-0.5.html index e99fc904a3..d496519835 100644 --- a/docs/alfresco-exception-0.5.html +++ b/docs/alfresco-exception-0.5.html @@ -190,8 +190,7 @@ The following is a a non-exhaustive list of libraries and packages which are covered by the FLOSS License Exception. Please note that appendix is merely provided as an additional service to specific FLOSS projects who wish to simplify licensing information for their users. Compliance with one of the licenses noted under the "FLOSS license list" section remains a prerequisite. Package name Qualifying License and Version -Apache Portable Runtime (APR) Apache Software License 2.0 - +Apache Portable Runtime (APR) Apache Software License 2.0
@@ -203,7 +202,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/alfresco-exception-0.5.json b/docs/alfresco-exception-0.5.json index 1376fbc443..3bb2122b30 100644 --- a/docs/alfresco-exception-0.5.json +++ b/docs/alfresco-exception-0.5.json @@ -1 +1,14 @@ -{"key": "alfresco-exception-0.5", "short_name": "Alfresco FLOSS Exception v0.5", "name": "Alfresco FLOSS Exception v0.5", "category": "Copyleft", "owner": "Alfresco Software", "homepage_url": "https://web.archive.org/web/20070306001556/http://www.alfresco.com/legal/licensing/floss_exception/", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-alfresco-exception-0.5", "ignorable_urls": ["http://www.gnu.org/philosophy/free-sw.html", "http://www.opensource.org/docs/definition.php"]} \ No newline at end of file +{ + "key": "alfresco-exception-0.5", + "short_name": "Alfresco FLOSS Exception v0.5", + "name": "Alfresco FLOSS Exception v0.5", + "category": "Copyleft", + "owner": "Alfresco Software", + "homepage_url": "https://web.archive.org/web/20070306001556/http://www.alfresco.com/legal/licensing/floss_exception/", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-alfresco-exception-0.5", + "ignorable_urls": [ + "http://www.gnu.org/philosophy/free-sw.html", + "http://www.opensource.org/docs/definition.php" + ] +} \ No newline at end of file diff --git a/docs/allegro-4.LICENSE b/docs/allegro-4.LICENSE index cdaa3a1ced..2184ef89b2 100644 --- a/docs/allegro-4.LICENSE +++ b/docs/allegro-4.LICENSE @@ -1,3 +1,18 @@ +--- +key: allegro-4 +short_name: Allegro 4 License +name: Allegro 4 License +category: Permissive +owner: Allegro Project +homepage_url: http://alleg.sourceforge.net//license.html +notes: | + Per SPDX.org, this license may also be known as Allegro 4. The Allegro 5 + license shown at the alleg.sourceforge.net URL is the same as zlib. +spdx_license_key: Giftware +other_urls: + - http://liballeg.org/license.html#allegro-4-the-giftware-license +--- + Allegro 4 (the giftware license) Allegro is gift-ware. It was created by a number of people working in cooperation, and is given to you freely as a gift. You may use, modify, redistribute, and generally hack it about in any way you like, and you do not have to give us anything in return. diff --git a/docs/allegro-4.html b/docs/allegro-4.html index 7adafaf302..41876145ab 100644 --- a/docs/allegro-4.html +++ b/docs/allegro-4.html @@ -153,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/allegro-4.json b/docs/allegro-4.json index ccd06fea55..c9f2fee7ff 100644 --- a/docs/allegro-4.json +++ b/docs/allegro-4.json @@ -1 +1,13 @@ -{"key": "allegro-4", "short_name": "Allegro 4 License", "name": "Allegro 4 License", "category": "Permissive", "owner": "Allegro Project", "homepage_url": "http://alleg.sourceforge.net//license.html", "notes": "Per SPDX.org, this license may also be known as Allegro 4. The Allegro 5\nlicense shown at the alleg.sourceforge.net URL is the same as zlib.\n", "spdx_license_key": "Giftware", "other_urls": ["http://liballeg.org/license.html#allegro-4-the-giftware-license"]} \ No newline at end of file +{ + "key": "allegro-4", + "short_name": "Allegro 4 License", + "name": "Allegro 4 License", + "category": "Permissive", + "owner": "Allegro Project", + "homepage_url": "http://alleg.sourceforge.net//license.html", + "notes": "Per SPDX.org, this license may also be known as Allegro 4. The Allegro 5\nlicense shown at the alleg.sourceforge.net URL is the same as zlib.\n", + "spdx_license_key": "Giftware", + "other_urls": [ + "http://liballeg.org/license.html#allegro-4-the-giftware-license" + ] +} \ No newline at end of file diff --git a/docs/allen-institute-software-2018.LICENSE b/docs/allen-institute-software-2018.LICENSE index a53267eecf..a5ac9c4fca 100644 --- a/docs/allen-institute-software-2018.LICENSE +++ b/docs/allen-institute-software-2018.LICENSE @@ -1,3 +1,23 @@ +--- +key: allen-institute-software-2018 +short_name: Allen Institute Software License 2018 +name: Allen Institute Software License 2018 +category: Free Restricted +owner: Allen Institute +homepage_url: https://raw.githubusercontent.com/AllenInstitute/human_neuron_Ih/master/LICENSE.txt +spdx_license_key: LicenseRef-scancode-allen-institute-software-2018 +other_urls: + - https://github.com/AllenInstitute +standard_notice: | + Allen Institute Software License – This software license is the 2-clause + BSD license plus clause a third clause that + prohibits redistribution for commercial purposes without further + permission. + Copyright © 2018. Allen Institute. All rights reserved. +ignorable_emails: + - terms@alleninstitute.org +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/allen-institute-software-2018.html b/docs/allen-institute-software-2018.html index d5087d72f3..ff72882079 100644 --- a/docs/allen-institute-software-2018.html +++ b/docs/allen-institute-software-2018.html @@ -177,7 +177,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/allen-institute-software-2018.json b/docs/allen-institute-software-2018.json index 76517f74c1..244aab6563 100644 --- a/docs/allen-institute-software-2018.json +++ b/docs/allen-institute-software-2018.json @@ -1 +1,16 @@ -{"key": "allen-institute-software-2018", "short_name": "Allen Institute Software License 2018", "name": "Allen Institute Software License 2018", "category": "Free Restricted", "owner": "Allen Institute", "homepage_url": "https://raw.githubusercontent.com/AllenInstitute/human_neuron_Ih/master/LICENSE.txt", "spdx_license_key": "LicenseRef-scancode-allen-institute-software-2018", "other_urls": ["https://github.com/AllenInstitute"], "standard_notice": "Allen Institute Software License \u2013 This software license is the 2-clause\nBSD license plus clause a third clause that\nprohibits redistribution for commercial purposes without further\npermission.\nCopyright \u00a9 2018. Allen Institute. All rights reserved.\n", "ignorable_emails": ["terms@alleninstitute.org"]} \ No newline at end of file +{ + "key": "allen-institute-software-2018", + "short_name": "Allen Institute Software License 2018", + "name": "Allen Institute Software License 2018", + "category": "Free Restricted", + "owner": "Allen Institute", + "homepage_url": "https://raw.githubusercontent.com/AllenInstitute/human_neuron_Ih/master/LICENSE.txt", + "spdx_license_key": "LicenseRef-scancode-allen-institute-software-2018", + "other_urls": [ + "https://github.com/AllenInstitute" + ], + "standard_notice": "Allen Institute Software License \u2013 This software license is the 2-clause\nBSD license plus clause a third clause that\nprohibits redistribution for commercial purposes without further\npermission.\nCopyright \u00a9 2018. Allen Institute. All rights reserved.\n", + "ignorable_emails": [ + "terms@alleninstitute.org" + ] +} \ No newline at end of file diff --git a/docs/altermime.LICENSE b/docs/altermime.LICENSE index d7ff67d84c..c973bcb3ec 100644 --- a/docs/altermime.LICENSE +++ b/docs/altermime.LICENSE @@ -1,3 +1,21 @@ +--- +key: altermime +short_name: alterMIME License +name: alterMIME License +category: Copyleft Limited +owner: Paul L Daniels +homepage_url: https://pldaniels.com/altermime/ +spdx_license_key: LicenseRef-scancode-altermime +other_urls: + - https://pldaniels.com/altermime/altermime-0.3.11.tar.gz +ignorable_copyrights: + - Copyright (c) 2000 P.L.Daniels +ignorable_holders: + - P.L.Daniels +ignorable_emails: + - pldaniels@pldaniels.com +--- + alterMIME LICENSE The following license terms and conditions apply, unless a different diff --git a/docs/altermime.html b/docs/altermime.html index bf2fb36cda..a9a1cf1a15 100644 --- a/docs/altermime.html +++ b/docs/altermime.html @@ -238,7 +238,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/altermime.json b/docs/altermime.json index f454f1fd35..b59525aefa 100644 --- a/docs/altermime.json +++ b/docs/altermime.json @@ -1 +1,21 @@ -{"key": "altermime", "short_name": "alterMIME License", "name": "alterMIME License", "category": "Copyleft Limited", "owner": "Paul L Daniels", "homepage_url": "https://pldaniels.com/altermime/", "spdx_license_key": "LicenseRef-scancode-altermime", "other_urls": ["https://pldaniels.com/altermime/altermime-0.3.11.tar.gz"], "ignorable_copyrights": ["Copyright (c) 2000 P.L.Daniels"], "ignorable_holders": ["P.L.Daniels"], "ignorable_emails": ["pldaniels@pldaniels.com"]} \ No newline at end of file +{ + "key": "altermime", + "short_name": "alterMIME License", + "name": "alterMIME License", + "category": "Copyleft Limited", + "owner": "Paul L Daniels", + "homepage_url": "https://pldaniels.com/altermime/", + "spdx_license_key": "LicenseRef-scancode-altermime", + "other_urls": [ + "https://pldaniels.com/altermime/altermime-0.3.11.tar.gz" + ], + "ignorable_copyrights": [ + "Copyright (c) 2000 P.L.Daniels" + ], + "ignorable_holders": [ + "P.L.Daniels" + ], + "ignorable_emails": [ + "pldaniels@pldaniels.com" + ] +} \ No newline at end of file diff --git a/docs/altova-eula.LICENSE b/docs/altova-eula.LICENSE index fe785fd3c1..f6cc64b67f 100644 --- a/docs/altova-eula.LICENSE +++ b/docs/altova-eula.LICENSE @@ -1,3 +1,22 @@ +--- +key: altova-eula +short_name: Altova EULA +name: Altova EULA +category: Commercial +owner: Altova +homepage_url: http://www.altova.com/eula.html +spdx_license_key: LicenseRef-scancode-altova-eula +ignorable_copyrights: + - Copyright (c) 2007-2011 Altova GmbH (www.altova.com) +ignorable_holders: + - Altova GmbH +ignorable_urls: + - http://www.altova.com/ + - http://www.altova.com/eula + - http://www.altova.com/legal_3rdparty.html + - http://www.altova.com/privacy +--- + THIS IS A LEGAL DOCUMENT -- RETAIN FOR YOUR RECORDS ALTOVA® END-USER LICENSE AGREEMENT diff --git a/docs/altova-eula.html b/docs/altova-eula.html index 1f08516167..8908749c12 100644 --- a/docs/altova-eula.html +++ b/docs/altova-eula.html @@ -287,7 +287,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/altova-eula.json b/docs/altova-eula.json index b6e27fcdf3..b002583afc 100644 --- a/docs/altova-eula.json +++ b/docs/altova-eula.json @@ -1 +1,21 @@ -{"key": "altova-eula", "short_name": "Altova EULA", "name": "Altova EULA", "category": "Commercial", "owner": "Altova", "homepage_url": "http://www.altova.com/eula.html", "spdx_license_key": "LicenseRef-scancode-altova-eula", "ignorable_copyrights": ["Copyright (c) 2007-2011 Altova GmbH (www.altova.com)"], "ignorable_holders": ["Altova GmbH"], "ignorable_urls": ["http://www.altova.com/", "http://www.altova.com/eula", "http://www.altova.com/legal_3rdparty.html", "http://www.altova.com/privacy"]} \ No newline at end of file +{ + "key": "altova-eula", + "short_name": "Altova EULA", + "name": "Altova EULA", + "category": "Commercial", + "owner": "Altova", + "homepage_url": "http://www.altova.com/eula.html", + "spdx_license_key": "LicenseRef-scancode-altova-eula", + "ignorable_copyrights": [ + "Copyright (c) 2007-2011 Altova GmbH (www.altova.com)" + ], + "ignorable_holders": [ + "Altova GmbH" + ], + "ignorable_urls": [ + "http://www.altova.com/", + "http://www.altova.com/eula", + "http://www.altova.com/legal_3rdparty.html", + "http://www.altova.com/privacy" + ] +} \ No newline at end of file diff --git a/docs/amazon-redshift-jdbc.LICENSE b/docs/amazon-redshift-jdbc.LICENSE index abe2b09261..feebf6fc08 100644 --- a/docs/amazon-redshift-jdbc.LICENSE +++ b/docs/amazon-redshift-jdbc.LICENSE @@ -1,3 +1,13 @@ +--- +key: amazon-redshift-jdbc +short_name: Amazon Redshift JDBC Driver License Agreement +name: Amazon Redshift JDBC Driver License Agreement +category: Proprietary Free +owner: Amazon Web Services +homepage_url: https://s3.amazonaws.com/redshift-downloads/drivers/Amazon+Redshift+JDBC+Driver+License+Agreement.pdf +spdx_license_key: LicenseRef-scancode-amazon-redshift-jdbc +--- + Amazon Redshift JDBC Driver License Agreement THIS IS AN AGREEMENT BETWEEN YOU AND AMAZON WEB SERVICES, INC. (WITH ITS AFFILIATES, "AWS" OR "WE") diff --git a/docs/amazon-redshift-jdbc.html b/docs/amazon-redshift-jdbc.html index f16d2901c7..14aa965fa2 100644 --- a/docs/amazon-redshift-jdbc.html +++ b/docs/amazon-redshift-jdbc.html @@ -236,7 +236,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/amazon-redshift-jdbc.json b/docs/amazon-redshift-jdbc.json index 7c6b90cb31..0815b3a9e1 100644 --- a/docs/amazon-redshift-jdbc.json +++ b/docs/amazon-redshift-jdbc.json @@ -1 +1,9 @@ -{"key": "amazon-redshift-jdbc", "short_name": "Amazon Redshift JDBC Driver License Agreement", "name": "Amazon Redshift JDBC Driver License Agreement", "category": "Proprietary Free", "owner": "Amazon Web Services", "homepage_url": "https://s3.amazonaws.com/redshift-downloads/drivers/Amazon+Redshift+JDBC+Driver+License+Agreement.pdf", "spdx_license_key": "LicenseRef-scancode-amazon-redshift-jdbc"} \ No newline at end of file +{ + "key": "amazon-redshift-jdbc", + "short_name": "Amazon Redshift JDBC Driver License Agreement", + "name": "Amazon Redshift JDBC Driver License Agreement", + "category": "Proprietary Free", + "owner": "Amazon Web Services", + "homepage_url": "https://s3.amazonaws.com/redshift-downloads/drivers/Amazon+Redshift+JDBC+Driver+License+Agreement.pdf", + "spdx_license_key": "LicenseRef-scancode-amazon-redshift-jdbc" +} \ No newline at end of file diff --git a/docs/amazon-sl.LICENSE b/docs/amazon-sl.LICENSE index 9cc2a37516..2b5bdc2fb5 100644 --- a/docs/amazon-sl.LICENSE +++ b/docs/amazon-sl.LICENSE @@ -1,3 +1,22 @@ +--- +key: amazon-sl +short_name: Amazon Software License +name: Amazon Software License +category: Proprietary Free +owner: Amazon Web Services +homepage_url: http://aws.amazon.com/asl/ +spdx_license_key: LicenseRef-.amazon.com.-AmznSL-1.0 +other_spdx_license_keys: + - LicenseRef-scancode-amazon-sl +text_urls: + - http://aws.amazon.com/asl/ + - https://github.com/aws/aws-sdk-android/blob/master/LICENSE.AMAZON.txt +ignorable_copyrights: + - (c) 2008 Amazon.com, Inc. or its affiliates +ignorable_holders: + - Amazon.com, Inc. or its affiliates +--- + Amazon Software License This Amazon Software License ("License") governs your use, reproduction, and distribution of the accompanying software as specified below. diff --git a/docs/amazon-sl.html b/docs/amazon-sl.html index b563066772..ed8fb56914 100644 --- a/docs/amazon-sl.html +++ b/docs/amazon-sl.html @@ -207,7 +207,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/amazon-sl.json b/docs/amazon-sl.json index 1dd0526138..c9ed49395e 100644 --- a/docs/amazon-sl.json +++ b/docs/amazon-sl.json @@ -1 +1,22 @@ -{"key": "amazon-sl", "short_name": "Amazon Software License", "name": "Amazon Software License", "category": "Proprietary Free", "owner": "Amazon Web Services", "homepage_url": "http://aws.amazon.com/asl/", "spdx_license_key": "LicenseRef-.amazon.com.-AmznSL-1.0", "other_spdx_license_keys": ["LicenseRef-scancode-amazon-sl"], "text_urls": ["http://aws.amazon.com/asl/", "https://github.com/aws/aws-sdk-android/blob/master/LICENSE.AMAZON.txt"], "ignorable_copyrights": ["(c) 2008 Amazon.com, Inc. or its affiliates"], "ignorable_holders": ["Amazon.com, Inc. or its affiliates"]} \ No newline at end of file +{ + "key": "amazon-sl", + "short_name": "Amazon Software License", + "name": "Amazon Software License", + "category": "Proprietary Free", + "owner": "Amazon Web Services", + "homepage_url": "http://aws.amazon.com/asl/", + "spdx_license_key": "LicenseRef-.amazon.com.-AmznSL-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-amazon-sl" + ], + "text_urls": [ + "http://aws.amazon.com/asl/", + "https://github.com/aws/aws-sdk-android/blob/master/LICENSE.AMAZON.txt" + ], + "ignorable_copyrights": [ + "(c) 2008 Amazon.com, Inc. or its affiliates" + ], + "ignorable_holders": [ + "Amazon.com, Inc. or its affiliates" + ] +} \ No newline at end of file diff --git a/docs/amd-historical.LICENSE b/docs/amd-historical.LICENSE index 54b5509e29..3a41158bae 100644 --- a/docs/amd-historical.LICENSE +++ b/docs/amd-historical.LICENSE @@ -1,3 +1,12 @@ +--- +key: amd-historical +short_name: AMD Historical License +name: AMD Historical License +category: Permissive +owner: Advanced Micro Devices +notes: this is a short historical permissive license seen in the newlib C library +spdx_license_key: LicenseRef-scancode-amd-historical +--- This software is the property of Advanced Micro Devices, Inc (AMD) which specifically grants the user the right to modify, use and distribute this diff --git a/docs/amd-historical.html b/docs/amd-historical.html index f05c811592..e080237f9f 100644 --- a/docs/amd-historical.html +++ b/docs/amd-historical.html @@ -115,8 +115,7 @@
license_text
-

-This software is the property of Advanced Micro Devices, Inc  (AMD)  which
+    
This software is the property of Advanced Micro Devices, Inc  (AMD)  which
 specifically  grants the user the right to modify, use and distribute this
 software provided this notice is not removed or altered.  All other rights
 are reserved by AMD.
@@ -136,7 +135,8 @@
       AboutCode
     

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/amd-historical.json b/docs/amd-historical.json index d7a008392a..62fb013940 100644 --- a/docs/amd-historical.json +++ b/docs/amd-historical.json @@ -1 +1,9 @@ -{"key": "amd-historical", "short_name": "AMD Historical License", "name": "AMD Historical License", "category": "Permissive", "owner": "Advanced Micro Devices", "notes": "this is a short historical permissive license seen in the newlib C library", "spdx_license_key": "LicenseRef-scancode-amd-historical"} \ No newline at end of file +{ + "key": "amd-historical", + "short_name": "AMD Historical License", + "name": "AMD Historical License", + "category": "Permissive", + "owner": "Advanced Micro Devices", + "notes": "this is a short historical permissive license seen in the newlib C library", + "spdx_license_key": "LicenseRef-scancode-amd-historical" +} \ No newline at end of file diff --git a/docs/amd-linux-firmware-export.LICENSE b/docs/amd-linux-firmware-export.LICENSE index 231ba42b67..24ac944980 100644 --- a/docs/amd-linux-firmware-export.LICENSE +++ b/docs/amd-linux-firmware-export.LICENSE @@ -1,3 +1,17 @@ +--- +key: amd-linux-firmware-export +short_name: AMD Linux Firmware Export License +name: AMD Linux Firmware Export License +category: Proprietary Free +owner: Advanced Micro Devices +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.amd-ucode +spdx_license_key: LicenseRef-scancode-amd-linux-firmware-export +text_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.amd-sev +ignorable_urls: + - http://www.bis.doc.gov/ +--- + Permission is hereby granted by Advanced Micro Devices, Inc. ("AMD"), free of any license fees, to any person obtaining a copy of this microcode in binary form (the "Software") ("You"), to install, diff --git a/docs/amd-linux-firmware-export.html b/docs/amd-linux-firmware-export.html index 3767df4150..67ab74e726 100644 --- a/docs/amd-linux-firmware-export.html +++ b/docs/amd-linux-firmware-export.html @@ -206,7 +206,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/amd-linux-firmware-export.json b/docs/amd-linux-firmware-export.json index 35911c34df..380171bbde 100644 --- a/docs/amd-linux-firmware-export.json +++ b/docs/amd-linux-firmware-export.json @@ -1 +1,15 @@ -{"key": "amd-linux-firmware-export", "short_name": "AMD Linux Firmware Export License", "name": "AMD Linux Firmware Export License", "category": "Proprietary Free", "owner": "Advanced Micro Devices", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.amd-ucode", "spdx_license_key": "LicenseRef-scancode-amd-linux-firmware-export", "text_urls": ["https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.amd-sev"], "ignorable_urls": ["http://www.bis.doc.gov/"]} \ No newline at end of file +{ + "key": "amd-linux-firmware-export", + "short_name": "AMD Linux Firmware Export License", + "name": "AMD Linux Firmware Export License", + "category": "Proprietary Free", + "owner": "Advanced Micro Devices", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.amd-ucode", + "spdx_license_key": "LicenseRef-scancode-amd-linux-firmware-export", + "text_urls": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.amd-sev" + ], + "ignorable_urls": [ + "http://www.bis.doc.gov/" + ] +} \ No newline at end of file diff --git a/docs/amd-linux-firmware.LICENSE b/docs/amd-linux-firmware.LICENSE index 7323b00b45..ad45c7187f 100644 --- a/docs/amd-linux-firmware.LICENSE +++ b/docs/amd-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: amd-linux-firmware +short_name: AMD Linux Firmware License +name: AMD Linux Firmware License +category: Proprietary Free +owner: Advanced Micro Devices +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.radeon +spdx_license_key: LicenseRef-scancode-amd-linux-firmware +--- + REDISTRIBUTION: Permission is hereby granted, free of any license fees, to any person obtaining a copy of this microcode (the "Software"), to install, reproduce, copy and distribute copies, in binary form only, of diff --git a/docs/amd-linux-firmware.html b/docs/amd-linux-firmware.html index 1f9d6b61ce..e35041af36 100644 --- a/docs/amd-linux-firmware.html +++ b/docs/amd-linux-firmware.html @@ -175,7 +175,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/amd-linux-firmware.json b/docs/amd-linux-firmware.json index 2d94245647..1c32f18a35 100644 --- a/docs/amd-linux-firmware.json +++ b/docs/amd-linux-firmware.json @@ -1 +1,9 @@ -{"key": "amd-linux-firmware", "short_name": "AMD Linux Firmware License", "name": "AMD Linux Firmware License", "category": "Proprietary Free", "owner": "Advanced Micro Devices", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.radeon", "spdx_license_key": "LicenseRef-scancode-amd-linux-firmware"} \ No newline at end of file +{ + "key": "amd-linux-firmware", + "short_name": "AMD Linux Firmware License", + "name": "AMD Linux Firmware License", + "category": "Proprietary Free", + "owner": "Advanced Micro Devices", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.radeon", + "spdx_license_key": "LicenseRef-scancode-amd-linux-firmware" +} \ No newline at end of file diff --git a/docs/amdplpa.LICENSE b/docs/amdplpa.LICENSE index 8ed0a885f0..5135e88f46 100644 --- a/docs/amdplpa.LICENSE +++ b/docs/amdplpa.LICENSE @@ -1,3 +1,13 @@ +--- +key: amdplpa +short_name: AMD PLPA License +name: AMD PLPA License +category: Permissive +owner: Advanced Micro Devices +homepage_url: https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License +spdx_license_key: AMDPLPA +--- + Redistribution and use in any form of this material and any product thereof including software in source or binary forms, along with any related documentation, with or without modification ("this material"), is permitted provided that the following diff --git a/docs/amdplpa.html b/docs/amdplpa.html index 25e32e613e..4b30ed88fb 100644 --- a/docs/amdplpa.html +++ b/docs/amdplpa.html @@ -206,7 +206,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/amdplpa.json b/docs/amdplpa.json index 114005aea9..16ccf65a2b 100644 --- a/docs/amdplpa.json +++ b/docs/amdplpa.json @@ -1 +1,9 @@ -{"key": "amdplpa", "short_name": "AMD PLPA License", "name": "AMD PLPA License", "category": "Permissive", "owner": "Advanced Micro Devices", "homepage_url": "https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License", "spdx_license_key": "AMDPLPA"} \ No newline at end of file +{ + "key": "amdplpa", + "short_name": "AMD PLPA License", + "name": "AMD PLPA License", + "category": "Permissive", + "owner": "Advanced Micro Devices", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License", + "spdx_license_key": "AMDPLPA" +} \ No newline at end of file diff --git a/docs/aml.LICENSE b/docs/aml.LICENSE index ba5369531d..a513c6fbb9 100644 --- a/docs/aml.LICENSE +++ b/docs/aml.LICENSE @@ -1,3 +1,13 @@ +--- +key: aml +short_name: Apple MIT License +name: Apple Sample Code License 2006 +category: Permissive +owner: Apple +homepage_url: https://fedoraproject.org/wiki/Licensing/Apple_MIT_License +spdx_license_key: AML +--- + IMPORTANT: This Apple software is supplied to you by Apple Computer, Inc. ("Apple") in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this Apple software constitutes acceptance of these terms. If you do not agree with these terms, please do not use, install, modify or redistribute this Apple software. In consideration of your agreement to abide by the following terms, and subject to these terms, Apple grants you a personal, non-exclusive license, under Apple's copyrights in this original Apple software (the "Apple Software"), to use, reproduce, modify and redistribute the Apple Software, with or without modifications, in source and/or binary forms; provided that if you redistribute the Apple Software in its entirety and without modifications, you must retain this notice and the following text and disclaimers in all such redistributions of the Apple Software. Neither the name, trademarks, service marks or logos of Apple Computer, Inc. may be used to endorse or promote products derived from the Apple Software without specific prior written permission from Apple. Except as expressly stated in this notice, no other rights or licenses, express or implied, are granted by Apple herein, including but not limited to any patent rights that may be infringed by your derivative works or by other works in which the Apple Software may be incorporated. diff --git a/docs/aml.html b/docs/aml.html index 50089f3853..af6d4210a1 100644 --- a/docs/aml.html +++ b/docs/aml.html @@ -133,7 +133,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/aml.json b/docs/aml.json index 89edf14946..a7ad8fb86c 100644 --- a/docs/aml.json +++ b/docs/aml.json @@ -1 +1,9 @@ -{"key": "aml", "short_name": "Apple MIT License", "name": "Apple Sample Code License 2006", "category": "Permissive", "owner": "Apple", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License", "spdx_license_key": "AML"} \ No newline at end of file +{ + "key": "aml", + "short_name": "Apple MIT License", + "name": "Apple Sample Code License 2006", + "category": "Permissive", + "owner": "Apple", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License", + "spdx_license_key": "AML" +} \ No newline at end of file diff --git a/docs/amlogic-linux-firmware.LICENSE b/docs/amlogic-linux-firmware.LICENSE index f161ab0a6d..461cfd3b41 100644 --- a/docs/amlogic-linux-firmware.LICENSE +++ b/docs/amlogic-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: amlogic-linux-firmware +short_name: Amlogic Linux Firmware License +name: Amlogic Linux Firmware License +category: Proprietary Free +owner: Amlogic +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.amlogic_vdec +spdx_license_key: LicenseRef-scancode-amlogic-linux-firmware +--- + Amlogic Co., Inc. grants permission to use and redistribute aforementioned firmware files for the use with devices containing Amlogic chipsets, but not as part of the Linux kernel or in any other diff --git a/docs/amlogic-linux-firmware.html b/docs/amlogic-linux-firmware.html index 647416cc3a..6e3c974638 100644 --- a/docs/amlogic-linux-firmware.html +++ b/docs/amlogic-linux-firmware.html @@ -137,7 +137,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/amlogic-linux-firmware.json b/docs/amlogic-linux-firmware.json index fcf2ba90e8..cc660be692 100644 --- a/docs/amlogic-linux-firmware.json +++ b/docs/amlogic-linux-firmware.json @@ -1 +1,9 @@ -{"key": "amlogic-linux-firmware", "short_name": "Amlogic Linux Firmware License", "name": "Amlogic Linux Firmware License", "category": "Proprietary Free", "owner": "Amlogic", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.amlogic_vdec", "spdx_license_key": "LicenseRef-scancode-amlogic-linux-firmware"} \ No newline at end of file +{ + "key": "amlogic-linux-firmware", + "short_name": "Amlogic Linux Firmware License", + "name": "Amlogic Linux Firmware License", + "category": "Proprietary Free", + "owner": "Amlogic", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.amlogic_vdec", + "spdx_license_key": "LicenseRef-scancode-amlogic-linux-firmware" +} \ No newline at end of file diff --git a/docs/ampas.LICENSE b/docs/ampas.LICENSE index 090e785f3c..d42d4c2533 100644 --- a/docs/ampas.LICENSE +++ b/docs/ampas.LICENSE @@ -1,3 +1,15 @@ +--- +key: ampas +short_name: AMPAS BSD-Style License +name: Academy of Motion Picture Arts and Sciences BSD-Style +category: Permissive +owner: AMPAS +homepage_url: https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD +spdx_license_key: AMPAS +text_urls: + - https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD +--- + A world-wide, royalty-free, non-exclusive right to distribute, copy, modify, create derivatives, and use, in source and binary forms, is hereby granted, subject to acceptance of this license. Performance of any of the aforementioned acts indicates acceptance to be bound by the following terms and conditions: * Redistributions of source code must retain the above copyright notice, this list of conditions and the Disclaimer of Warranty. diff --git a/docs/ampas.html b/docs/ampas.html index 3ca1571c51..7cbfdf8792 100644 --- a/docs/ampas.html +++ b/docs/ampas.html @@ -146,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ampas.json b/docs/ampas.json index b5547d8886..d8ede25413 100644 --- a/docs/ampas.json +++ b/docs/ampas.json @@ -1 +1,12 @@ -{"key": "ampas", "short_name": "AMPAS BSD-Style License", "name": "Academy of Motion Picture Arts and Sciences BSD-Style", "category": "Permissive", "owner": "AMPAS", "homepage_url": "https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD", "spdx_license_key": "AMPAS", "text_urls": ["https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD"]} \ No newline at end of file +{ + "key": "ampas", + "short_name": "AMPAS BSD-Style License", + "name": "Academy of Motion Picture Arts and Sciences BSD-Style", + "category": "Permissive", + "owner": "AMPAS", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD", + "spdx_license_key": "AMPAS", + "text_urls": [ + "https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD" + ] +} \ No newline at end of file diff --git a/docs/ams-fonts.LICENSE b/docs/ams-fonts.LICENSE index af680b9bee..05153b8af3 100644 --- a/docs/ams-fonts.LICENSE +++ b/docs/ams-fonts.LICENSE @@ -1,3 +1,15 @@ +--- +key: ams-fonts +short_name: AMSFonts license +name: AMSFonts license +category: Permissive +owner: American Mathematical Society (AMS) +homepage_url: http://www.ams.org/publications/type1-fonts +spdx_license_key: LicenseRef-scancode-ams-fonts +other_urls: + - https://fedoraproject.org/wiki/Licensing:AMS +--- + The PostScript Type 1 implementation of the Computer Modern and AMSFonts produced by and previously distributed by Blue Sky Research and Y&Y, Inc., are now freely available for general use. This has been accomplished through the cooperation of a consortium of scientific publishers with Blue Sky Research and Y&Y. Members of this consortium include: @@ -13,4 +25,4 @@ the legitimate use of the fonts, such as (but not limited to) electronic distrib other public domain or commercial font collections or computer applications, use of the outline data to create derivative fonts or faces, etc. However, the AMS does require that the AMS copyright notice be removed from any derivative versions of the fonts which have been altered in any way. In addition, to ensure the fidelity of TeX documents using Computer Modern fonts, Professor Donald Knuth, creator of the Computer Modern faces, has requested that any -alterations which yield different font metrics be given a different name. \ No newline at end of file +alterations which yield different font metrics be given a different name. \ No newline at end of file diff --git a/docs/ams-fonts.html b/docs/ams-fonts.html index ff01e30688..91041dede8 100644 --- a/docs/ams-fonts.html +++ b/docs/ams-fonts.html @@ -139,7 +139,7 @@ other public domain or commercial font collections or computer applications, use of the outline data to create derivative fonts or faces, etc. However, the AMS does require that the AMS copyright notice be removed from any derivative versions of the fonts which have been altered in any way. In addition, to ensure the fidelity of TeX documents using Computer Modern fonts, Professor Donald Knuth, creator of the Computer Modern faces, has requested that any -alterations which yield different font metrics be given a different name.
+alterations which yield different font metrics be given a different name.
@@ -151,7 +151,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ams-fonts.json b/docs/ams-fonts.json index ead24ad1e6..ebca95af49 100644 --- a/docs/ams-fonts.json +++ b/docs/ams-fonts.json @@ -1 +1,12 @@ -{"key": "ams-fonts", "short_name": "AMSFonts license", "name": "AMSFonts license", "category": "Permissive", "owner": "American Mathematical Society (AMS)", "homepage_url": "http://www.ams.org/publications/type1-fonts", "spdx_license_key": "LicenseRef-scancode-ams-fonts", "other_urls": ["https://fedoraproject.org/wiki/Licensing:AMS"]} \ No newline at end of file +{ + "key": "ams-fonts", + "short_name": "AMSFonts license", + "name": "AMSFonts license", + "category": "Permissive", + "owner": "American Mathematical Society (AMS)", + "homepage_url": "http://www.ams.org/publications/type1-fonts", + "spdx_license_key": "LicenseRef-scancode-ams-fonts", + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing:AMS" + ] +} \ No newline at end of file diff --git a/docs/android-sdk-2009.LICENSE b/docs/android-sdk-2009.LICENSE index ba2ad46728..d8a0a285b1 100644 --- a/docs/android-sdk-2009.LICENSE +++ b/docs/android-sdk-2009.LICENSE @@ -1,3 +1,13 @@ +--- +key: android-sdk-2009 +short_name: Android SDK License 2009 +name: Android Software Development Kit License Agreement 2009 +category: Proprietary Free +owner: Google +homepage_url: https://android.googlesource.com/platform/prebuilts/sdk/+/master/NOTICE +spdx_license_key: LicenseRef-scancode-android-sdk-2009 +--- + ANDROID SOFTWARE DEVELOPMENT KIT Terms and Conditions diff --git a/docs/android-sdk-2009.html b/docs/android-sdk-2009.html index b737e40501..95f937bf23 100644 --- a/docs/android-sdk-2009.html +++ b/docs/android-sdk-2009.html @@ -387,7 +387,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/android-sdk-2009.json b/docs/android-sdk-2009.json index 24e1783411..4555f1e604 100644 --- a/docs/android-sdk-2009.json +++ b/docs/android-sdk-2009.json @@ -1 +1,9 @@ -{"key": "android-sdk-2009", "short_name": "Android SDK License 2009", "name": "Android Software Development Kit License Agreement 2009", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://android.googlesource.com/platform/prebuilts/sdk/+/master/NOTICE", "spdx_license_key": "LicenseRef-scancode-android-sdk-2009"} \ No newline at end of file +{ + "key": "android-sdk-2009", + "short_name": "Android SDK License 2009", + "name": "Android Software Development Kit License Agreement 2009", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://android.googlesource.com/platform/prebuilts/sdk/+/master/NOTICE", + "spdx_license_key": "LicenseRef-scancode-android-sdk-2009" +} \ No newline at end of file diff --git a/docs/android-sdk-2012.LICENSE b/docs/android-sdk-2012.LICENSE index dcfcffdd6c..f9520a3ddd 100644 --- a/docs/android-sdk-2012.LICENSE +++ b/docs/android-sdk-2012.LICENSE @@ -1,3 +1,15 @@ +--- +key: android-sdk-2012 +short_name: Android SDK License 2012 +name: Android Software Development Kit License Agreement 2012 +category: Proprietary Free +owner: Google +homepage_url: https://developer.android.com/sdk/terms.html +spdx_license_key: LicenseRef-scancode-android-sdk-2012 +ignorable_urls: + - http://source.android.com/ +--- + This is the Android Software Development Kit License Agreement @@ -330,4 +342,4 @@ apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction. -/November 13, 2012/ +/November 13, 2012/ \ No newline at end of file diff --git a/docs/android-sdk-2012.html b/docs/android-sdk-2012.html index fd83904870..16e1c35463 100644 --- a/docs/android-sdk-2012.html +++ b/docs/android-sdk-2012.html @@ -456,8 +456,7 @@ any jurisdiction. -/November 13, 2012/ - +/November 13, 2012/
@@ -469,7 +468,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/android-sdk-2012.json b/docs/android-sdk-2012.json index 159db15f34..919ecb97aa 100644 --- a/docs/android-sdk-2012.json +++ b/docs/android-sdk-2012.json @@ -1 +1,12 @@ -{"key": "android-sdk-2012", "short_name": "Android SDK License 2012", "name": "Android Software Development Kit License Agreement 2012", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://developer.android.com/sdk/terms.html", "spdx_license_key": "LicenseRef-scancode-android-sdk-2012", "ignorable_urls": ["http://source.android.com/"]} \ No newline at end of file +{ + "key": "android-sdk-2012", + "short_name": "Android SDK License 2012", + "name": "Android Software Development Kit License Agreement 2012", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://developer.android.com/sdk/terms.html", + "spdx_license_key": "LicenseRef-scancode-android-sdk-2012", + "ignorable_urls": [ + "http://source.android.com/" + ] +} \ No newline at end of file diff --git a/docs/android-sdk-2021.LICENSE b/docs/android-sdk-2021.LICENSE index e2b0a76532..80d1c3b8a6 100644 --- a/docs/android-sdk-2021.LICENSE +++ b/docs/android-sdk-2021.LICENSE @@ -1,3 +1,19 @@ +--- +key: android-sdk-2021 +short_name: Android SDK License 2021 +name: Android Software Development Kit License Agreement 2021 +category: Proprietary Free +owner: Google +homepage_url: https://developer.android.com/ndk/downloads#lts-downloads +spdx_license_key: LicenseRef-scancode-android-sdk-2021 +ignorable_urls: + - https://developer.android.com/reference/android/speech/RecognitionService + - https://policies.google.com/privacy + - https://privacy.google.com/businesses/gdprprocessorterms + - https://source.android.com/ + - https://source.android.com/compatibility +--- + Terms and Conditions This is the Android Software Development Kit License Agreement diff --git a/docs/android-sdk-2021.html b/docs/android-sdk-2021.html index 3882060ff1..cbe53b925e 100644 --- a/docs/android-sdk-2021.html +++ b/docs/android-sdk-2021.html @@ -268,7 +268,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/android-sdk-2021.json b/docs/android-sdk-2021.json index ba4c4b06c4..c51c228ab6 100644 --- a/docs/android-sdk-2021.json +++ b/docs/android-sdk-2021.json @@ -1 +1,16 @@ -{"key": "android-sdk-2021", "short_name": "Android SDK License 2021", "name": "Android Software Development Kit License Agreement 2021", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://developer.android.com/ndk/downloads#lts-downloads", "spdx_license_key": "LicenseRef-scancode-android-sdk-2021", "ignorable_urls": ["https://developer.android.com/reference/android/speech/RecognitionService", "https://policies.google.com/privacy", "https://privacy.google.com/businesses/gdprprocessorterms", "https://source.android.com/", "https://source.android.com/compatibility"]} \ No newline at end of file +{ + "key": "android-sdk-2021", + "short_name": "Android SDK License 2021", + "name": "Android Software Development Kit License Agreement 2021", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://developer.android.com/ndk/downloads#lts-downloads", + "spdx_license_key": "LicenseRef-scancode-android-sdk-2021", + "ignorable_urls": [ + "https://developer.android.com/reference/android/speech/RecognitionService", + "https://policies.google.com/privacy", + "https://privacy.google.com/businesses/gdprprocessorterms", + "https://source.android.com/", + "https://source.android.com/compatibility" + ] +} \ No newline at end of file diff --git a/docs/android-sdk-license.LICENSE b/docs/android-sdk-license.LICENSE index bf9a1b1d66..7bcab79b0a 100644 --- a/docs/android-sdk-license.LICENSE +++ b/docs/android-sdk-license.LICENSE @@ -1,3 +1,16 @@ +--- +key: android-sdk-license +short_name: Android SDK License 2015 +name: Android Software Development Kit License Agreement 2015 +category: Proprietary Free +owner: Google +homepage_url: https://developer.android.com/studio/terms.html +spdx_license_key: LicenseRef-scancode-android-sdk-license +ignorable_urls: + - http://source.android.com/ + - http://source.android.com/compatibility +--- + This is the Android Software Development Kit License Agreement 1. Introduction diff --git a/docs/android-sdk-license.html b/docs/android-sdk-license.html index ee42a905ea..6048360e74 100644 --- a/docs/android-sdk-license.html +++ b/docs/android-sdk-license.html @@ -464,7 +464,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/android-sdk-license.json b/docs/android-sdk-license.json index 043e585eba..a6cb3707fc 100644 --- a/docs/android-sdk-license.json +++ b/docs/android-sdk-license.json @@ -1 +1,13 @@ -{"key": "android-sdk-license", "short_name": "Android SDK License 2015", "name": "Android Software Development Kit License Agreement 2015", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://developer.android.com/studio/terms.html", "spdx_license_key": "LicenseRef-scancode-android-sdk-license", "ignorable_urls": ["http://source.android.com/", "http://source.android.com/compatibility"]} \ No newline at end of file +{ + "key": "android-sdk-license", + "short_name": "Android SDK License 2015", + "name": "Android Software Development Kit License Agreement 2015", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://developer.android.com/studio/terms.html", + "spdx_license_key": "LicenseRef-scancode-android-sdk-license", + "ignorable_urls": [ + "http://source.android.com/", + "http://source.android.com/compatibility" + ] +} \ No newline at end of file diff --git a/docs/android-sdk-preview-2015.LICENSE b/docs/android-sdk-preview-2015.LICENSE index e464117ce6..708d435d81 100644 --- a/docs/android-sdk-preview-2015.LICENSE +++ b/docs/android-sdk-preview-2015.LICENSE @@ -1,3 +1,16 @@ +--- +key: android-sdk-preview-2015 +short_name: Android SDK Preview License +name: Android SDK Preview License Agreement +category: Proprietary Free +owner: Google +homepage_url: http://developer.android.com/preview/license.html +spdx_license_key: LicenseRef-scancode-android-sdk-preview-2015 +ignorable_urls: + - http://source.android.com/ + - http://www.google.com/policies/privacy +--- + This is the Android SDK Preview License Agreement (the "License Agreement"). 1. Introduction diff --git a/docs/android-sdk-preview-2015.html b/docs/android-sdk-preview-2015.html index e76f4595df..47d978c85b 100644 --- a/docs/android-sdk-preview-2015.html +++ b/docs/android-sdk-preview-2015.html @@ -449,7 +449,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/android-sdk-preview-2015.json b/docs/android-sdk-preview-2015.json index 6a67db931c..a8d2d4648e 100644 --- a/docs/android-sdk-preview-2015.json +++ b/docs/android-sdk-preview-2015.json @@ -1 +1,13 @@ -{"key": "android-sdk-preview-2015", "short_name": "Android SDK Preview License", "name": "Android SDK Preview License Agreement", "category": "Proprietary Free", "owner": "Google", "homepage_url": "http://developer.android.com/preview/license.html", "spdx_license_key": "LicenseRef-scancode-android-sdk-preview-2015", "ignorable_urls": ["http://source.android.com/", "http://www.google.com/policies/privacy"]} \ No newline at end of file +{ + "key": "android-sdk-preview-2015", + "short_name": "Android SDK Preview License", + "name": "Android SDK Preview License Agreement", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "http://developer.android.com/preview/license.html", + "spdx_license_key": "LicenseRef-scancode-android-sdk-preview-2015", + "ignorable_urls": [ + "http://source.android.com/", + "http://www.google.com/policies/privacy" + ] +} \ No newline at end of file diff --git a/docs/anepokis-1.0.LICENSE b/docs/anepokis-1.0.LICENSE index 80ac264d4f..17dcbeac80 100644 --- a/docs/anepokis-1.0.LICENSE +++ b/docs/anepokis-1.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: anepokis-1.0 +short_name: Anepokis License 1.0 +name: Anepokis License 1.0 +category: Copyleft +owner: Salif Mehmed +homepage_url: https://github.com/salif/anepokis-license +spdx_license_key: LicenseRef-scancode-anepokis-1.0 +text_urls: + - https://salif.github.io/anepokis-license/LICENSE.txt +other_urls: + - https://salif.github.io/anepokis-license/LICENSE.html +ignorable_copyrights: + - Copyright 2005 Lawrence Rosen + - Copyright 2020 Salif Mehmed +ignorable_holders: + - Lawrence Rosen + - Salif Mehmed +--- + Anepokis License v. 1.0 This Anepokis License (the "License") applies to any original work of diff --git a/docs/anepokis-1.0.html b/docs/anepokis-1.0.html index aa28c0c74f..e3c6de514c 100644 --- a/docs/anepokis-1.0.html +++ b/docs/anepokis-1.0.html @@ -352,7 +352,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/anepokis-1.0.json b/docs/anepokis-1.0.json index 3f8414b740..3147328d5b 100644 --- a/docs/anepokis-1.0.json +++ b/docs/anepokis-1.0.json @@ -1 +1,23 @@ -{"key": "anepokis-1.0", "short_name": "Anepokis License 1.0", "name": "Anepokis License 1.0", "category": "Copyleft", "owner": "Salif Mehmed", "homepage_url": "https://github.com/salif/anepokis-license", "spdx_license_key": "LicenseRef-scancode-anepokis-1.0", "text_urls": ["https://salif.github.io/anepokis-license/LICENSE.txt"], "other_urls": ["https://salif.github.io/anepokis-license/LICENSE.html"], "ignorable_copyrights": ["Copyright 2005 Lawrence Rosen", "Copyright 2020 Salif Mehmed"], "ignorable_holders": ["Lawrence Rosen", "Salif Mehmed"]} \ No newline at end of file +{ + "key": "anepokis-1.0", + "short_name": "Anepokis License 1.0", + "name": "Anepokis License 1.0", + "category": "Copyleft", + "owner": "Salif Mehmed", + "homepage_url": "https://github.com/salif/anepokis-license", + "spdx_license_key": "LicenseRef-scancode-anepokis-1.0", + "text_urls": [ + "https://salif.github.io/anepokis-license/LICENSE.txt" + ], + "other_urls": [ + "https://salif.github.io/anepokis-license/LICENSE.html" + ], + "ignorable_copyrights": [ + "Copyright 2005 Lawrence Rosen", + "Copyright 2020 Salif Mehmed" + ], + "ignorable_holders": [ + "Lawrence Rosen", + "Salif Mehmed" + ] +} \ No newline at end of file diff --git a/docs/anti-capitalist-1.4.LICENSE b/docs/anti-capitalist-1.4.LICENSE index c035be80cd..6cb2c04128 100644 --- a/docs/anti-capitalist-1.4.LICENSE +++ b/docs/anti-capitalist-1.4.LICENSE @@ -1,3 +1,13 @@ +--- +key: anti-capitalist-1.4 +short_name: ACSL v. 1.4 +name: Anti-Capitalist Software License (v 1.4) +category: Free Restricted +owner: Everest Pipkin and Ramsey Nasser +homepage_url: https://anticapitalist.software/ +spdx_license_key: LicenseRef-scancode-anti-capitalist-1.4 +--- + ANTI-CAPITALIST SOFTWARE LICENSE (v 1.4) This is anti-capitalist software, released for free use by individuals and organizations that do not operate by capitalist principles. @@ -16,4 +26,4 @@ d. An organization that seeks shared profit for all of its members, and allows n 4. If the User is an organization, then the User is not law enforcement or military, or working for or under either. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/docs/anti-capitalist-1.4.html b/docs/anti-capitalist-1.4.html index 49a722a542..8833111831 100644 --- a/docs/anti-capitalist-1.4.html +++ b/docs/anti-capitalist-1.4.html @@ -133,8 +133,7 @@ 4. If the User is an organization, then the User is not law enforcement or military, or working for or under either. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -146,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/anti-capitalist-1.4.json b/docs/anti-capitalist-1.4.json index a3a2458e56..cb04aa96a1 100644 --- a/docs/anti-capitalist-1.4.json +++ b/docs/anti-capitalist-1.4.json @@ -1 +1,9 @@ -{"key": "anti-capitalist-1.4", "short_name": "ACSL v. 1.4", "name": "Anti-Capitalist Software License (v 1.4)", "category": "Free Restricted", "owner": "Everest Pipkin and Ramsey Nasser", "homepage_url": "https://anticapitalist.software/", "spdx_license_key": "LicenseRef-scancode-anti-capitalist-1.4"} \ No newline at end of file +{ + "key": "anti-capitalist-1.4", + "short_name": "ACSL v. 1.4", + "name": "Anti-Capitalist Software License (v 1.4)", + "category": "Free Restricted", + "owner": "Everest Pipkin and Ramsey Nasser", + "homepage_url": "https://anticapitalist.software/", + "spdx_license_key": "LicenseRef-scancode-anti-capitalist-1.4" +} \ No newline at end of file diff --git a/docs/antlr-pd-fallback.LICENSE b/docs/antlr-pd-fallback.LICENSE index c361cf797e..1dc1770bfc 100644 --- a/docs/antlr-pd-fallback.LICENSE +++ b/docs/antlr-pd-fallback.LICENSE @@ -1,3 +1,20 @@ +--- +key: antlr-pd-fallback +short_name: ANTLR-PD with fallback +name: ANTLR Software Rights Notice with license fallback +category: Public Domain +owner: ANTLR +homepage_url: http://www.antlr2.org/ +notes: | + Per SPDX.org, ANTLR used this public domain notice through version 2.7 and + then switched to a BSD license for version 3.0 and later. +spdx_license_key: ANTLR-PD-fallback +text_urls: + - http://www.antlr2.org/ +other_urls: + - http://www.antlr2.org/license.html +--- + ANTLR 2 License We reserve no legal rights to the ANTLR --it is fully in the public domain. An diff --git a/docs/antlr-pd-fallback.html b/docs/antlr-pd-fallback.html index b681deb08a..52ea24bc44 100644 --- a/docs/antlr-pd-fallback.html +++ b/docs/antlr-pd-fallback.html @@ -174,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/antlr-pd-fallback.json b/docs/antlr-pd-fallback.json index d2bac3d654..541bcf923a 100644 --- a/docs/antlr-pd-fallback.json +++ b/docs/antlr-pd-fallback.json @@ -1 +1,16 @@ -{"key": "antlr-pd-fallback", "short_name": "ANTLR-PD with fallback", "name": "ANTLR Software Rights Notice with license fallback", "category": "Public Domain", "owner": "ANTLR", "homepage_url": "http://www.antlr2.org/", "notes": "Per SPDX.org, ANTLR used this public domain notice through version 2.7 and\nthen switched to a BSD license for version 3.0 and later.\n", "spdx_license_key": "ANTLR-PD-fallback", "text_urls": ["http://www.antlr2.org/"], "other_urls": ["http://www.antlr2.org/license.html"]} \ No newline at end of file +{ + "key": "antlr-pd-fallback", + "short_name": "ANTLR-PD with fallback", + "name": "ANTLR Software Rights Notice with license fallback", + "category": "Public Domain", + "owner": "ANTLR", + "homepage_url": "http://www.antlr2.org/", + "notes": "Per SPDX.org, ANTLR used this public domain notice through version 2.7 and\nthen switched to a BSD license for version 3.0 and later.\n", + "spdx_license_key": "ANTLR-PD-fallback", + "text_urls": [ + "http://www.antlr2.org/" + ], + "other_urls": [ + "http://www.antlr2.org/license.html" + ] +} \ No newline at end of file diff --git a/docs/antlr-pd.LICENSE b/docs/antlr-pd.LICENSE index fa4b11900f..a13dd11ea1 100644 --- a/docs/antlr-pd.LICENSE +++ b/docs/antlr-pd.LICENSE @@ -1,3 +1,26 @@ +--- +key: antlr-pd +short_name: ANTLR-PD +name: ANTLR Software Rights Notice +category: Permissive +owner: ANTLR +homepage_url: http://www.antlr2.org/ +notes: | + Per SPDX.org, ANTLR used this public domain notice through version 2.7 and + then switched to a BSD license for version 3.0 and later. +spdx_license_key: ANTLR-PD +text_urls: + - http://www.antlr2.org/ +other_urls: + - http://www.antlr2.org/license.html + - http://www.spdx.org/licenses/ANTLR-PD +ignorable_authors: + - Terence Parr +ignorable_emails: + - parrt@antlr.org + - parrt@cs.usfca.edu +--- + ANTLR SOFTWARE RIGHTS ANTLR 1989-2006 Developed by Terence Parr diff --git a/docs/antlr-pd.html b/docs/antlr-pd.html index 19c4f03061..753102b56f 100644 --- a/docs/antlr-pd.html +++ b/docs/antlr-pd.html @@ -196,7 +196,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/antlr-pd.json b/docs/antlr-pd.json index aba96cc79e..9ac647046c 100644 --- a/docs/antlr-pd.json +++ b/docs/antlr-pd.json @@ -1 +1,24 @@ -{"key": "antlr-pd", "short_name": "ANTLR-PD", "name": "ANTLR Software Rights Notice", "category": "Permissive", "owner": "ANTLR", "homepage_url": "http://www.antlr2.org/", "notes": "Per SPDX.org, ANTLR used this public domain notice through version 2.7 and\nthen switched to a BSD license for version 3.0 and later.\n", "spdx_license_key": "ANTLR-PD", "text_urls": ["http://www.antlr2.org/"], "other_urls": ["http://www.antlr2.org/license.html", "http://www.spdx.org/licenses/ANTLR-PD"], "ignorable_authors": ["Terence Parr"], "ignorable_emails": ["parrt@antlr.org", "parrt@cs.usfca.edu"]} \ No newline at end of file +{ + "key": "antlr-pd", + "short_name": "ANTLR-PD", + "name": "ANTLR Software Rights Notice", + "category": "Permissive", + "owner": "ANTLR", + "homepage_url": "http://www.antlr2.org/", + "notes": "Per SPDX.org, ANTLR used this public domain notice through version 2.7 and\nthen switched to a BSD license for version 3.0 and later.\n", + "spdx_license_key": "ANTLR-PD", + "text_urls": [ + "http://www.antlr2.org/" + ], + "other_urls": [ + "http://www.antlr2.org/license.html", + "http://www.spdx.org/licenses/ANTLR-PD" + ], + "ignorable_authors": [ + "Terence Parr" + ], + "ignorable_emails": [ + "parrt@antlr.org", + "parrt@cs.usfca.edu" + ] +} \ No newline at end of file diff --git a/docs/anu-license.LICENSE b/docs/anu-license.LICENSE index 6019d908f7..4e184c51a6 100644 --- a/docs/anu-license.LICENSE +++ b/docs/anu-license.LICENSE @@ -1,3 +1,15 @@ +--- +key: anu-license +short_name: ANU License +name: Australian National University License +category: Permissive +owner: ANU Data Mining Group +spdx_license_key: LicenseRef-scancode-anu-license +other_urls: + - http://www.opensource.apple.com/source/xnu/xnu-1456.1.26/bsd/net/if_pppvar.h + - http://www.panasonic.net/pcc/support/pbx/docs/freeware_header.txt +--- + Permission to use, copy, modify, and distribute this software and its documentation is hereby granted, provided that the above copyright notice appears in all copies. This software is provided without any warranty, express diff --git a/docs/anu-license.html b/docs/anu-license.html index c0dea59691..e1b09f3ca8 100644 --- a/docs/anu-license.html +++ b/docs/anu-license.html @@ -144,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/anu-license.json b/docs/anu-license.json index a3ba620547..3ca0d87e90 100644 --- a/docs/anu-license.json +++ b/docs/anu-license.json @@ -1 +1,12 @@ -{"key": "anu-license", "short_name": "ANU License", "name": "Australian National University License", "category": "Permissive", "owner": "ANU Data Mining Group", "spdx_license_key": "LicenseRef-scancode-anu-license", "other_urls": ["http://www.opensource.apple.com/source/xnu/xnu-1456.1.26/bsd/net/if_pppvar.h", "http://www.panasonic.net/pcc/support/pbx/docs/freeware_header.txt"]} \ No newline at end of file +{ + "key": "anu-license", + "short_name": "ANU License", + "name": "Australian National University License", + "category": "Permissive", + "owner": "ANU Data Mining Group", + "spdx_license_key": "LicenseRef-scancode-anu-license", + "other_urls": [ + "http://www.opensource.apple.com/source/xnu/xnu-1456.1.26/bsd/net/if_pppvar.h", + "http://www.panasonic.net/pcc/support/pbx/docs/freeware_header.txt" + ] +} \ No newline at end of file diff --git a/docs/aop-pd.LICENSE b/docs/aop-pd.LICENSE index f08da475af..b25a2c2829 100644 --- a/docs/aop-pd.LICENSE +++ b/docs/aop-pd.LICENSE @@ -1,7 +1,16 @@ +--- +key: aop-pd +is_deprecated: yes +short_name: AOP-PD +name: AOP Public Domain License +category: Public Domain +owner: AOP Alliance Project +--- + The person or persons who have associated work with this document (the "Dedicator" or "Certifier") hereby either (a) certifies that, to the best of his knowledge, the work of authorship identified is in the public domain of the country from which the work is published, or (b) hereby dedicates whatever copyright the dedicators holds in the work of authorship identified below (the "Work") to the public domain. A certifier, moreover, dedicates any copyright interest he may have in the associated work, and for these purposes, is described as a "dedicator" below. A certifier has taken reasonable steps to verify the copyright status of this work. Certifier recognizes that his good faith efforts may not shield him from liability if in fact the work certified is not in the public domain. Dedicator makes this dedication for the benefit of the public at large and to the detriment of the Dedicator's heirs and successors. Dedicator intends this dedication to be an overt act of relinquishment in perpetuity of all present and future rights under copyright law, whether vested or contingent, in the Work. Dedicator understands that such relinquishment of all rights includes the relinquishment of all rights to enforce (by lawsuit or otherwise) those copyrights in the Work. -Dedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived. +Dedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived. \ No newline at end of file diff --git a/docs/aop-pd.html b/docs/aop-pd.html index 9ac3d40f28..eace60d24f 100644 --- a/docs/aop-pd.html +++ b/docs/aop-pd.html @@ -114,8 +114,7 @@ Dedicator makes this dedication for the benefit of the public at large and to the detriment of the Dedicator's heirs and successors. Dedicator intends this dedication to be an overt act of relinquishment in perpetuity of all present and future rights under copyright law, whether vested or contingent, in the Work. Dedicator understands that such relinquishment of all rights includes the relinquishment of all rights to enforce (by lawsuit or otherwise) those copyrights in the Work. -Dedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived. - +Dedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived.
@@ -127,7 +126,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/aop-pd.json b/docs/aop-pd.json index 878d4efa17..3cf53c5e8d 100644 --- a/docs/aop-pd.json +++ b/docs/aop-pd.json @@ -1 +1,8 @@ -{"key": "aop-pd", "is_deprecated": true, "short_name": "AOP-PD", "name": "AOP Public Domain License", "category": "Public Domain", "owner": "AOP Alliance Project"} \ No newline at end of file +{ + "key": "aop-pd", + "is_deprecated": true, + "short_name": "AOP-PD", + "name": "AOP Public Domain License", + "category": "Public Domain", + "owner": "AOP Alliance Project" +} \ No newline at end of file diff --git a/docs/apache-1.0.LICENSE b/docs/apache-1.0.LICENSE index 7d908a5fc8..de43aea652 100644 --- a/docs/apache-1.0.LICENSE +++ b/docs/apache-1.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: apache-1.0 +short_name: Apache 1.0 +name: Apache License 1.0 +category: Permissive +owner: Apache Software Foundation +homepage_url: http://www.apache.org/licenses/ +spdx_license_key: Apache-1.0 +text_urls: + - http://www.apache.org/licenses/LICENSE-1.0 +faq_url: http://www.apache.org/foundation/licence-FAQ.html +minimum_coverage: 80 +ignorable_authors: + - the Apache Group +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/apache-1.0.html b/docs/apache-1.0.html index 20b210d9d9..c3a88b2f71 100644 --- a/docs/apache-1.0.html +++ b/docs/apache-1.0.html @@ -227,7 +227,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apache-1.0.json b/docs/apache-1.0.json index 766a3feaec..80c9114cd8 100644 --- a/docs/apache-1.0.json +++ b/docs/apache-1.0.json @@ -1 +1,23 @@ -{"key": "apache-1.0", "short_name": "Apache 1.0", "name": "Apache License 1.0", "category": "Permissive", "owner": "Apache Software Foundation", "homepage_url": "http://www.apache.org/licenses/", "spdx_license_key": "Apache-1.0", "text_urls": ["http://www.apache.org/licenses/LICENSE-1.0"], "faq_url": "http://www.apache.org/foundation/licence-FAQ.html", "minimum_coverage": 80, "ignorable_authors": ["the Apache Group"], "ignorable_urls": ["http://www.apache.org/"], "ignorable_emails": ["apache@apache.org"]} \ No newline at end of file +{ + "key": "apache-1.0", + "short_name": "Apache 1.0", + "name": "Apache License 1.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "spdx_license_key": "Apache-1.0", + "text_urls": [ + "http://www.apache.org/licenses/LICENSE-1.0" + ], + "faq_url": "http://www.apache.org/foundation/licence-FAQ.html", + "minimum_coverage": 80, + "ignorable_authors": [ + "the Apache Group" + ], + "ignorable_urls": [ + "http://www.apache.org/" + ], + "ignorable_emails": [ + "apache@apache.org" + ] +} \ No newline at end of file diff --git a/docs/apache-1.1.LICENSE b/docs/apache-1.1.LICENSE index 13f0e3b49c..0f34307d7e 100644 --- a/docs/apache-1.1.LICENSE +++ b/docs/apache-1.1.LICENSE @@ -1,3 +1,33 @@ +--- +key: apache-1.1 +short_name: Apache 1.1 +name: Apache License 1.1 +category: Permissive +owner: Apache Software Foundation +homepage_url: http://www.apache.org/licenses/ +notes: | + Per SPDX.org, this license is OSI certified. This license has been + superseded by Apache 2.0 +spdx_license_key: Apache-1.1 +osi_license_key: Apache-1.1 +text_urls: + - http://apache.org/licenses/LICENSE-1.1 +faq_url: http://www.apache.org/foundation/license-faq.html +other_urls: + - http://opensource.org/licenses/Apache-1.1 + - https://opensource.org/licenses/Apache-1.1 +ignorable_copyrights: + - Copyright (c) 2000 The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + The Apache Software License, Version 1.1 Copyright (c) 2000 The Apache Software Foundation. All rights @@ -42,4 +72,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/docs/apache-1.1.html b/docs/apache-1.1.html index 4ff2914017..f293babbf7 100644 --- a/docs/apache-1.1.html +++ b/docs/apache-1.1.html @@ -245,8 +245,7 @@ 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. - +SUCH DAMAGE.
@@ -258,7 +257,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apache-1.1.json b/docs/apache-1.1.json index dafcbcb36d..568426f6f5 100644 --- a/docs/apache-1.1.json +++ b/docs/apache-1.1.json @@ -1 +1,34 @@ -{"key": "apache-1.1", "short_name": "Apache 1.1", "name": "Apache License 1.1", "category": "Permissive", "owner": "Apache Software Foundation", "homepage_url": "http://www.apache.org/licenses/", "notes": "Per SPDX.org, this license is OSI certified. This license has been\nsuperseded by Apache 2.0\n", "spdx_license_key": "Apache-1.1", "osi_license_key": "Apache-1.1", "text_urls": ["http://apache.org/licenses/LICENSE-1.1"], "faq_url": "http://www.apache.org/foundation/license-faq.html", "other_urls": ["http://opensource.org/licenses/Apache-1.1", "https://opensource.org/licenses/Apache-1.1"], "ignorable_copyrights": ["Copyright (c) 2000 The Apache Software Foundation"], "ignorable_holders": ["The Apache Software Foundation"], "ignorable_authors": ["the Apache Software Foundation (http://www.apache.org/)"], "ignorable_urls": ["http://www.apache.org/"], "ignorable_emails": ["apache@apache.org"]} \ No newline at end of file +{ + "key": "apache-1.1", + "short_name": "Apache 1.1", + "name": "Apache License 1.1", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "notes": "Per SPDX.org, this license is OSI certified. This license has been\nsuperseded by Apache 2.0\n", + "spdx_license_key": "Apache-1.1", + "osi_license_key": "Apache-1.1", + "text_urls": [ + "http://apache.org/licenses/LICENSE-1.1" + ], + "faq_url": "http://www.apache.org/foundation/license-faq.html", + "other_urls": [ + "http://opensource.org/licenses/Apache-1.1", + "https://opensource.org/licenses/Apache-1.1" + ], + "ignorable_copyrights": [ + "Copyright (c) 2000 The Apache Software Foundation" + ], + "ignorable_holders": [ + "The Apache Software Foundation" + ], + "ignorable_authors": [ + "the Apache Software Foundation (http://www.apache.org/)" + ], + "ignorable_urls": [ + "http://www.apache.org/" + ], + "ignorable_emails": [ + "apache@apache.org" + ] +} \ No newline at end of file diff --git a/docs/apache-2.0-linking-exception.LICENSE b/docs/apache-2.0-linking-exception.LICENSE index fa5c481a56..44ec7a7abb 100644 --- a/docs/apache-2.0-linking-exception.LICENSE +++ b/docs/apache-2.0-linking-exception.LICENSE @@ -1,3 +1,14 @@ +--- +key: apache-2.0-linking-exception +is_deprecated: yes +short_name: Apache 2.0 with Linking Exception +name: Apache 2.0 with Linking Exception +category: Permissive +owner: compuphase +homepage_url: https://github.com/compuphase/minIni/blob/master/LICENSE +is_exception: yes +--- + EXCEPTION TO THE APACHE 2.0 LICENSE As a special exception to the Apache License 2.0 (and referring to the @@ -7,4 +18,4 @@ containing portions of the "Work", and distribute that executable file in "Object" form under the terms of your choice, without any of the additional requirements listed in Section 4 of the Apache License 2.0. This exception applies only to redistributions in "Object" form (not -"Source" form) and only if no modifications have been made to the "Work". +"Source" form) and only if no modifications have been made to the "Work". \ No newline at end of file diff --git a/docs/apache-2.0-linking-exception.html b/docs/apache-2.0-linking-exception.html index 89f5a04240..4b77318dc3 100644 --- a/docs/apache-2.0-linking-exception.html +++ b/docs/apache-2.0-linking-exception.html @@ -131,8 +131,7 @@ in "Object" form under the terms of your choice, without any of the additional requirements listed in Section 4 of the Apache License 2.0. This exception applies only to redistributions in "Object" form (not -"Source" form) and only if no modifications have been made to the "Work". - +"Source" form) and only if no modifications have been made to the "Work".
@@ -144,7 +143,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apache-2.0-linking-exception.json b/docs/apache-2.0-linking-exception.json index 5f0bde728f..b91f6a8635 100644 --- a/docs/apache-2.0-linking-exception.json +++ b/docs/apache-2.0-linking-exception.json @@ -1 +1,10 @@ -{"key": "apache-2.0-linking-exception", "is_deprecated": true, "short_name": "Apache 2.0 with Linking Exception", "name": "Apache 2.0 with Linking Exception", "category": "Permissive", "owner": "compuphase", "homepage_url": "https://github.com/compuphase/minIni/blob/master/LICENSE", "is_exception": true} \ No newline at end of file +{ + "key": "apache-2.0-linking-exception", + "is_deprecated": true, + "short_name": "Apache 2.0 with Linking Exception", + "name": "Apache 2.0 with Linking Exception", + "category": "Permissive", + "owner": "compuphase", + "homepage_url": "https://github.com/compuphase/minIni/blob/master/LICENSE", + "is_exception": true +} \ No newline at end of file diff --git a/docs/apache-2.0-runtime-library-exception.LICENSE b/docs/apache-2.0-runtime-library-exception.LICENSE index 3c6988a786..ee52198295 100644 --- a/docs/apache-2.0-runtime-library-exception.LICENSE +++ b/docs/apache-2.0-runtime-library-exception.LICENSE @@ -1,3 +1,16 @@ +--- +key: apache-2.0-runtime-library-exception +is_deprecated: yes +short_name: Apache 2.0 with Runtime Library Exception +name: Apache 2.0 with Runtime Library Exception +category: Permissive +owner: Apple +homepage_url: https://github.com/apple/swift/blob/master/LICENSE.txt#L205 +is_exception: yes +other_urls: + - https://swift.org/ +--- + ## Runtime Library Exception to the Apache 2.0 License: ## As an exception, if you use this Software to compile your source code and diff --git a/docs/apache-2.0-runtime-library-exception.html b/docs/apache-2.0-runtime-library-exception.html index 15a66f1fcf..f50ca33cc8 100644 --- a/docs/apache-2.0-runtime-library-exception.html +++ b/docs/apache-2.0-runtime-library-exception.html @@ -148,7 +148,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apache-2.0-runtime-library-exception.json b/docs/apache-2.0-runtime-library-exception.json index c8924066ce..38e90208c5 100644 --- a/docs/apache-2.0-runtime-library-exception.json +++ b/docs/apache-2.0-runtime-library-exception.json @@ -1 +1,13 @@ -{"key": "apache-2.0-runtime-library-exception", "is_deprecated": true, "short_name": "Apache 2.0 with Runtime Library Exception", "name": "Apache 2.0 with Runtime Library Exception", "category": "Permissive", "owner": "Apple", "homepage_url": "https://github.com/apple/swift/blob/master/LICENSE.txt#L205", "is_exception": true, "other_urls": ["https://swift.org/"]} \ No newline at end of file +{ + "key": "apache-2.0-runtime-library-exception", + "is_deprecated": true, + "short_name": "Apache 2.0 with Runtime Library Exception", + "name": "Apache 2.0 with Runtime Library Exception", + "category": "Permissive", + "owner": "Apple", + "homepage_url": "https://github.com/apple/swift/blob/master/LICENSE.txt#L205", + "is_exception": true, + "other_urls": [ + "https://swift.org/" + ] +} \ No newline at end of file diff --git a/docs/apache-2.0.LICENSE b/docs/apache-2.0.LICENSE index f49a4e16e6..214cb36c80 100644 --- a/docs/apache-2.0.LICENSE +++ b/docs/apache-2.0.LICENSE @@ -1,3 +1,31 @@ +--- +key: apache-2.0 +short_name: Apache 2.0 +name: Apache License 2.0 +category: Permissive +owner: Apache Software Foundation +homepage_url: http://www.apache.org/licenses/ +notes: | + Per SPDX.org, this version was released January 2004 This license is OSI + certified +spdx_license_key: Apache-2.0 +other_spdx_license_keys: + - LicenseRef-Apache + - LicenseRef-Apache-2.0 +osi_license_key: Apache-2.0 +text_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +osi_url: http://opensource.org/licenses/apache2.0.php +faq_url: http://www.apache.org/foundation/licence-FAQ.html +other_urls: + - http://www.opensource.org/licenses/Apache-2.0 + - https://opensource.org/licenses/Apache-2.0 + - https://www.apache.org/licenses/LICENSE-2.0 +ignorable_urls: + - http://www.apache.org/licenses/ + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ diff --git a/docs/apache-2.0.html b/docs/apache-2.0.html index 01ccfc7b20..94e32f7e27 100644 --- a/docs/apache-2.0.html +++ b/docs/apache-2.0.html @@ -393,7 +393,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apache-2.0.json b/docs/apache-2.0.json index 7e60cbe768..bd4e1e34cd 100644 --- a/docs/apache-2.0.json +++ b/docs/apache-2.0.json @@ -1 +1,29 @@ -{"key": "apache-2.0", "short_name": "Apache 2.0", "name": "Apache License 2.0", "category": "Permissive", "owner": "Apache Software Foundation", "homepage_url": "http://www.apache.org/licenses/", "notes": "Per SPDX.org, this version was released January 2004 This license is OSI\ncertified\n", "spdx_license_key": "Apache-2.0", "other_spdx_license_keys": ["LicenseRef-Apache", "LicenseRef-Apache-2.0"], "osi_license_key": "Apache-2.0", "text_urls": ["http://www.apache.org/licenses/LICENSE-2.0"], "osi_url": "http://opensource.org/licenses/apache2.0.php", "faq_url": "http://www.apache.org/foundation/licence-FAQ.html", "other_urls": ["http://www.opensource.org/licenses/Apache-2.0", "https://opensource.org/licenses/Apache-2.0", "https://www.apache.org/licenses/LICENSE-2.0"], "ignorable_urls": ["http://www.apache.org/licenses/", "http://www.apache.org/licenses/LICENSE-2.0"]} \ No newline at end of file +{ + "key": "apache-2.0", + "short_name": "Apache 2.0", + "name": "Apache License 2.0", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "http://www.apache.org/licenses/", + "notes": "Per SPDX.org, this version was released January 2004 This license is OSI\ncertified\n", + "spdx_license_key": "Apache-2.0", + "other_spdx_license_keys": [ + "LicenseRef-Apache", + "LicenseRef-Apache-2.0" + ], + "osi_license_key": "Apache-2.0", + "text_urls": [ + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "osi_url": "http://opensource.org/licenses/apache2.0.php", + "faq_url": "http://www.apache.org/foundation/licence-FAQ.html", + "other_urls": [ + "http://www.opensource.org/licenses/Apache-2.0", + "https://opensource.org/licenses/Apache-2.0", + "https://www.apache.org/licenses/LICENSE-2.0" + ], + "ignorable_urls": [ + "http://www.apache.org/licenses/", + "http://www.apache.org/licenses/LICENSE-2.0" + ] +} \ No newline at end of file diff --git a/docs/apache-due-credit.LICENSE b/docs/apache-due-credit.LICENSE index 1d71aefa5a..56e24f0cb9 100644 --- a/docs/apache-due-credit.LICENSE +++ b/docs/apache-due-credit.LICENSE @@ -1,3 +1,19 @@ +--- +key: apache-due-credit +is_deprecated: yes +short_name: Apache Due Credit Variant +name: Apache Due Credit Variant +category: Permissive +owner: Codehaus +notes: replaced by dom4j +other_urls: + - http://openorb.sourceforge.net/license.txt + - http://opensource.dell.com/releases/Dell_Active_System_Manager/1.0.0/license_text/DOM4J-2005-BSD-Style.pdf + - http://www.oracle.com/technetwork/java/javaee/portalpack2-149804.txt + - https://confluence.sakaiproject.org/plugins/viewsource/viewpagesrc.action?pageId=28442642 + - https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#jCharts_Variant +--- + Redistribution and use of this software and associated documentation ("Software"), with or without modification, are permitted provided that the following conditions are met: @@ -30,4 +46,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/apache-due-credit.html b/docs/apache-due-credit.html index a41998a861..dba986cb69 100644 --- a/docs/apache-due-credit.html +++ b/docs/apache-due-credit.html @@ -156,8 +156,7 @@ 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 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -169,7 +168,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apache-due-credit.json b/docs/apache-due-credit.json index fcc4b7a160..79e253c8eb 100644 --- a/docs/apache-due-credit.json +++ b/docs/apache-due-credit.json @@ -1 +1,16 @@ -{"key": "apache-due-credit", "is_deprecated": true, "short_name": "Apache Due Credit Variant", "name": "Apache Due Credit Variant", "category": "Permissive", "owner": "Codehaus", "notes": "replaced by dom4j", "other_urls": ["http://openorb.sourceforge.net/license.txt", "http://opensource.dell.com/releases/Dell_Active_System_Manager/1.0.0/license_text/DOM4J-2005-BSD-Style.pdf", "http://www.oracle.com/technetwork/java/javaee/portalpack2-149804.txt", "https://confluence.sakaiproject.org/plugins/viewsource/viewpagesrc.action?pageId=28442642", "https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#jCharts_Variant"]} \ No newline at end of file +{ + "key": "apache-due-credit", + "is_deprecated": true, + "short_name": "Apache Due Credit Variant", + "name": "Apache Due Credit Variant", + "category": "Permissive", + "owner": "Codehaus", + "notes": "replaced by dom4j", + "other_urls": [ + "http://openorb.sourceforge.net/license.txt", + "http://opensource.dell.com/releases/Dell_Active_System_Manager/1.0.0/license_text/DOM4J-2005-BSD-Style.pdf", + "http://www.oracle.com/technetwork/java/javaee/portalpack2-149804.txt", + "https://confluence.sakaiproject.org/plugins/viewsource/viewpagesrc.action?pageId=28442642", + "https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#jCharts_Variant" + ] +} \ No newline at end of file diff --git a/docs/apache-exception-llvm.LICENSE b/docs/apache-exception-llvm.LICENSE index 9626bf1c84..fbdc0742a4 100644 --- a/docs/apache-exception-llvm.LICENSE +++ b/docs/apache-exception-llvm.LICENSE @@ -1,3 +1,17 @@ +--- +key: apache-exception-llvm +is_deprecated: yes +short_name: Apache-Exception-llvm +name: Apache Exception LLVM +category: Permissive +owner: Apache Software Foundation +homepage_url: https://lists.spdx.org +notes: Replaced by llvm-exception +is_exception: yes +text_urls: + - https://lists.spdx.org/pipermail/spdx-legal/2017-December/002421.html +--- + ---- LLVM Exceptions to the Apache 2.0 License ---- As an exception, if, as a result of your compiling your source code, portions @@ -12,4 +26,4 @@ court of competent jurisdiction determines that the patent provision (Section conflicts with the conditions of the GPLv2, you may retroactively and prospectively choose to deem waived or otherwise exclude such Section(s) of the License, but only in their entirety and only with respect to the Combined -Software. +Software. \ No newline at end of file diff --git a/docs/apache-exception-llvm.html b/docs/apache-exception-llvm.html index 6c21372467..b78cf8ac6c 100644 --- a/docs/apache-exception-llvm.html +++ b/docs/apache-exception-llvm.html @@ -152,8 +152,7 @@ conflicts with the conditions of the GPLv2, you may retroactively and prospectively choose to deem waived or otherwise exclude such Section(s) of the License, but only in their entirety and only with respect to the Combined -Software. - +Software.
@@ -165,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apache-exception-llvm.json b/docs/apache-exception-llvm.json index 8e344e6b52..545a633ed4 100644 --- a/docs/apache-exception-llvm.json +++ b/docs/apache-exception-llvm.json @@ -1 +1,14 @@ -{"key": "apache-exception-llvm", "is_deprecated": true, "short_name": "Apache-Exception-llvm", "name": "Apache Exception LLVM", "category": "Permissive", "owner": "Apache Software Foundation", "homepage_url": "https://lists.spdx.org", "notes": "Replaced by llvm-exception", "is_exception": true, "text_urls": ["https://lists.spdx.org/pipermail/spdx-legal/2017-December/002421.html"]} \ No newline at end of file +{ + "key": "apache-exception-llvm", + "is_deprecated": true, + "short_name": "Apache-Exception-llvm", + "name": "Apache Exception LLVM", + "category": "Permissive", + "owner": "Apache Software Foundation", + "homepage_url": "https://lists.spdx.org", + "notes": "Replaced by llvm-exception", + "is_exception": true, + "text_urls": [ + "https://lists.spdx.org/pipermail/spdx-legal/2017-December/002421.html" + ] +} \ No newline at end of file diff --git a/docs/apache-patent-exception.LICENSE b/docs/apache-patent-exception.LICENSE index eba855768f..d6911eb56b 100644 --- a/docs/apache-patent-exception.LICENSE +++ b/docs/apache-patent-exception.LICENSE @@ -1,3 +1,16 @@ +--- +key: apache-patent-exception +short_name: Apache Patent Provision Exception Terms +name: Apache Patent Provision Exception Terms +category: Permissive +owner: Michael R Sweet +homepage_url: https://github.com/michaelrsweet/mxml/blob/c44aa254ccd90b10b260f04cf9e499bbf971c257/NOTICE +is_exception: yes +spdx_license_key: LicenseRef-scancode-apache-patent-exception +other_spdx_license_keys: + - LicenseRef-scancode-apache-patent-provision-exception +--- + (Optional) Exceptions to the Apache 2.0 License: ================================================ diff --git a/docs/apache-patent-exception.html b/docs/apache-patent-exception.html index 4e71fd48f3..8eee9536a2 100644 --- a/docs/apache-patent-exception.html +++ b/docs/apache-patent-exception.html @@ -153,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apache-patent-exception.json b/docs/apache-patent-exception.json index 99f8808620..22cd99314d 100644 --- a/docs/apache-patent-exception.json +++ b/docs/apache-patent-exception.json @@ -1 +1,13 @@ -{"key": "apache-patent-exception", "short_name": "Apache Patent Provision Exception Terms", "name": "Apache Patent Provision Exception Terms", "category": "Permissive", "owner": "Michael R Sweet", "homepage_url": "https://github.com/michaelrsweet/mxml/blob/c44aa254ccd90b10b260f04cf9e499bbf971c257/NOTICE", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-apache-patent-exception", "other_spdx_license_keys": ["LicenseRef-scancode-apache-patent-provision-exception"]} \ No newline at end of file +{ + "key": "apache-patent-exception", + "short_name": "Apache Patent Provision Exception Terms", + "name": "Apache Patent Provision Exception Terms", + "category": "Permissive", + "owner": "Michael R Sweet", + "homepage_url": "https://github.com/michaelrsweet/mxml/blob/c44aa254ccd90b10b260f04cf9e499bbf971c257/NOTICE", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-apache-patent-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-apache-patent-provision-exception" + ] +} \ No newline at end of file diff --git a/docs/apache-patent-provision-exception.LICENSE b/docs/apache-patent-provision-exception.LICENSE index eba855768f..2d00350d6c 100644 --- a/docs/apache-patent-provision-exception.LICENSE +++ b/docs/apache-patent-provision-exception.LICENSE @@ -1,3 +1,14 @@ +--- +key: apache-patent-provision-exception +is_deprecated: yes +short_name: Apache Patent Provision Exception Deprecated +name: Apache Patent Provision Exception Deprecated +category: Permissive +owner: Michael R Sweet +homepage_url: https://github.com/michaelrsweet/mxml/blob/c44aa254ccd90b10b260f04cf9e499bbf971c257/NOTICE +is_exception: yes +--- + (Optional) Exceptions to the Apache 2.0 License: ================================================ diff --git a/docs/apache-patent-provision-exception.html b/docs/apache-patent-provision-exception.html index c0e851afed..cbdd4932f6 100644 --- a/docs/apache-patent-provision-exception.html +++ b/docs/apache-patent-provision-exception.html @@ -144,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apache-patent-provision-exception.json b/docs/apache-patent-provision-exception.json index 9ff188cf36..84d9ef8242 100644 --- a/docs/apache-patent-provision-exception.json +++ b/docs/apache-patent-provision-exception.json @@ -1 +1,10 @@ -{"key": "apache-patent-provision-exception", "is_deprecated": true, "short_name": "Apache Patent Provision Exception Deprecated", "name": "Apache Patent Provision Exception Deprecated", "category": "Permissive", "owner": "Michael R Sweet", "homepage_url": "https://github.com/michaelrsweet/mxml/blob/c44aa254ccd90b10b260f04cf9e499bbf971c257/NOTICE", "is_exception": true} \ No newline at end of file +{ + "key": "apache-patent-provision-exception", + "is_deprecated": true, + "short_name": "Apache Patent Provision Exception Deprecated", + "name": "Apache Patent Provision Exception Deprecated", + "category": "Permissive", + "owner": "Michael R Sweet", + "homepage_url": "https://github.com/michaelrsweet/mxml/blob/c44aa254ccd90b10b260f04cf9e499bbf971c257/NOTICE", + "is_exception": true +} \ No newline at end of file diff --git a/docs/apafml.LICENSE b/docs/apafml.LICENSE index b5d6b28aab..188f1a333f 100644 --- a/docs/apafml.LICENSE +++ b/docs/apafml.LICENSE @@ -1,3 +1,13 @@ +--- +key: apafml +short_name: Adobe Postscript AFM License +name: Adobe Postscript AFM License +category: Permissive +owner: Adobe Systems +homepage_url: https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM +spdx_license_key: APAFML +--- + This file and the 14 PostScript(R) AFM files it accompanies may be used, copied, and distributed for any purpose and without charge, with or without modification, provided that all copyright notices are retained; that the AFM diff --git a/docs/apafml.html b/docs/apafml.html index c6953612ca..6e57396a6e 100644 --- a/docs/apafml.html +++ b/docs/apafml.html @@ -133,7 +133,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apafml.json b/docs/apafml.json index 29a1f1868e..380185a479 100644 --- a/docs/apafml.json +++ b/docs/apafml.json @@ -1 +1,9 @@ -{"key": "apafml", "short_name": "Adobe Postscript AFM License", "name": "Adobe Postscript AFM License", "category": "Permissive", "owner": "Adobe Systems", "homepage_url": "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM", "spdx_license_key": "APAFML"} \ No newline at end of file +{ + "key": "apafml", + "short_name": "Adobe Postscript AFM License", + "name": "Adobe Postscript AFM License", + "category": "Permissive", + "owner": "Adobe Systems", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM", + "spdx_license_key": "APAFML" +} \ No newline at end of file diff --git a/docs/apl-1.1.LICENSE b/docs/apl-1.1.LICENSE index 3fcd13ef9a..61da8f89e4 100644 --- a/docs/apl-1.1.LICENSE +++ b/docs/apl-1.1.LICENSE @@ -1,3 +1,21 @@ +--- +key: apl-1.1 +short_name: APL-1.1 +name: Academic Public License version 1.1 +category: Copyleft Limited +owner: OMNeT++ +homepage_url: https://github.com/omnetpp/omnetpp/blob/master/doc/License +spdx_license_key: LicenseRef-scancode-apl-1.1 +other_urls: + - https://opencarp.org/download/license +ignorable_copyrights: + - Copyright (c) 2003, 2010, 2015 Andras Varga +ignorable_holders: + - Andras Varga +ignorable_urls: + - http://www.omnest.com/ +--- + ACADEMIC PUBLIC LICENSE version 1.1 diff --git a/docs/apl-1.1.html b/docs/apl-1.1.html index 0d1b3565eb..b26d61b31d 100644 --- a/docs/apl-1.1.html +++ b/docs/apl-1.1.html @@ -399,7 +399,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apl-1.1.json b/docs/apl-1.1.json index 450d388c85..77d270e19d 100644 --- a/docs/apl-1.1.json +++ b/docs/apl-1.1.json @@ -1 +1,21 @@ -{"key": "apl-1.1", "short_name": "APL-1.1", "name": "Academic Public License version 1.1", "category": "Copyleft Limited", "owner": "OMNeT++", "homepage_url": "https://github.com/omnetpp/omnetpp/blob/master/doc/License", "spdx_license_key": "LicenseRef-scancode-apl-1.1", "other_urls": ["https://opencarp.org/download/license"], "ignorable_copyrights": ["Copyright (c) 2003, 2010, 2015 Andras Varga"], "ignorable_holders": ["Andras Varga"], "ignorable_urls": ["http://www.omnest.com/"]} \ No newline at end of file +{ + "key": "apl-1.1", + "short_name": "APL-1.1", + "name": "Academic Public License version 1.1", + "category": "Copyleft Limited", + "owner": "OMNeT++", + "homepage_url": "https://github.com/omnetpp/omnetpp/blob/master/doc/License", + "spdx_license_key": "LicenseRef-scancode-apl-1.1", + "other_urls": [ + "https://opencarp.org/download/license" + ], + "ignorable_copyrights": [ + "Copyright (c) 2003, 2010, 2015 Andras Varga" + ], + "ignorable_holders": [ + "Andras Varga" + ], + "ignorable_urls": [ + "http://www.omnest.com/" + ] +} \ No newline at end of file diff --git a/docs/app-s2p.LICENSE b/docs/app-s2p.LICENSE index 27bcbc86e3..496c18e1dd 100644 --- a/docs/app-s2p.LICENSE +++ b/docs/app-s2p.LICENSE @@ -1,3 +1,15 @@ +--- +key: app-s2p +short_name: App::s2p License +name: App::s2p License +category: Permissive +owner: Fedora +homepage_url: https://fedoraproject.org/wiki/Licensing/App-s2p +spdx_license_key: App-s2p +other_urls: + - https://fedoraproject.org/wiki/Licensing/App-s2p +--- + COPYRIGHT and LICENSE This program is free and open software. You may use, modify, diff --git a/docs/app-s2p.html b/docs/app-s2p.html index aef9757c7a..bb1b8d5cbe 100644 --- a/docs/app-s2p.html +++ b/docs/app-s2p.html @@ -140,7 +140,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/app-s2p.json b/docs/app-s2p.json index 474c0bf4c2..2bdfd161e2 100644 --- a/docs/app-s2p.json +++ b/docs/app-s2p.json @@ -1 +1,12 @@ -{"key": "app-s2p", "short_name": "App::s2p License", "name": "App::s2p License", "category": "Permissive", "owner": "Fedora", "homepage_url": "https://fedoraproject.org/wiki/Licensing/App-s2p", "spdx_license_key": "App-s2p", "other_urls": ["https://fedoraproject.org/wiki/Licensing/App-s2p"]} \ No newline at end of file +{ + "key": "app-s2p", + "short_name": "App::s2p License", + "name": "App::s2p License", + "category": "Permissive", + "owner": "Fedora", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/App-s2p", + "spdx_license_key": "App-s2p", + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/App-s2p" + ] +} \ No newline at end of file diff --git a/docs/appfire-eula.LICENSE b/docs/appfire-eula.LICENSE index 63587fb1b6..0b96697f11 100644 --- a/docs/appfire-eula.LICENSE +++ b/docs/appfire-eula.LICENSE @@ -1,3 +1,24 @@ +--- +key: appfire-eula +short_name: Appfire EULA +name: Appfire EULA +category: Proprietary Free +owner: Appfire +homepage_url: http://appfire.com/eula +spdx_license_key: LicenseRef-scancode-appfire-eula +ignorable_urls: + - https://bobswift.atlassian.net/ + - https://bobswift.atlassian.net/wiki/questions + - https://marketplace.atlassian.com/ + - https://wittified.atlassian.net/ + - https://wittified.atlassian.net/wiki/questions + - https://www.atlassian.com/licensing/marketplace/termsofuse +ignorable_emails: + - legal@appfire.com + - operations@appfire.com + - unsubscribe@appfire.com +--- + Appfire EULA IMPORTANT! BE SURE TO CAREFULLY READ AND UNDERSTAND ALL OF THE RIGHTS AND RESTRICTIONS SET FORTH IN THIS END USER LICENSE AGREEMENT (“EULA”). YOU ARE NOT AUTHORIZED TO USE THIS SOFTWARE UNLESS AND UNTIL YOU ACCEPT THE TERMS OF THIS EULA. diff --git a/docs/appfire-eula.html b/docs/appfire-eula.html index f283d386f1..cbfe9426af 100644 --- a/docs/appfire-eula.html +++ b/docs/appfire-eula.html @@ -318,7 +318,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/appfire-eula.json b/docs/appfire-eula.json index 4473c56c78..243d8f68fe 100644 --- a/docs/appfire-eula.json +++ b/docs/appfire-eula.json @@ -1 +1,22 @@ -{"key": "appfire-eula", "short_name": "Appfire EULA", "name": "Appfire EULA", "category": "Proprietary Free", "owner": "Appfire", "homepage_url": "http://appfire.com/eula", "spdx_license_key": "LicenseRef-scancode-appfire-eula", "ignorable_urls": ["https://bobswift.atlassian.net/", "https://bobswift.atlassian.net/wiki/questions", "https://marketplace.atlassian.com/", "https://wittified.atlassian.net/", "https://wittified.atlassian.net/wiki/questions", "https://www.atlassian.com/licensing/marketplace/termsofuse"], "ignorable_emails": ["legal@appfire.com", "operations@appfire.com", "unsubscribe@appfire.com"]} \ No newline at end of file +{ + "key": "appfire-eula", + "short_name": "Appfire EULA", + "name": "Appfire EULA", + "category": "Proprietary Free", + "owner": "Appfire", + "homepage_url": "http://appfire.com/eula", + "spdx_license_key": "LicenseRef-scancode-appfire-eula", + "ignorable_urls": [ + "https://bobswift.atlassian.net/", + "https://bobswift.atlassian.net/wiki/questions", + "https://marketplace.atlassian.com/", + "https://wittified.atlassian.net/", + "https://wittified.atlassian.net/wiki/questions", + "https://www.atlassian.com/licensing/marketplace/termsofuse" + ], + "ignorable_emails": [ + "legal@appfire.com", + "operations@appfire.com", + "unsubscribe@appfire.com" + ] +} \ No newline at end of file diff --git a/docs/apple-attribution-1997.LICENSE b/docs/apple-attribution-1997.LICENSE index 07e2d655a3..d7a6ff3306 100644 --- a/docs/apple-attribution-1997.LICENSE +++ b/docs/apple-attribution-1997.LICENSE @@ -1,3 +1,13 @@ +--- +key: apple-attribution-1997 +short_name: Apple Attribution 1997 +name: Apple Attribution License 1997 +category: Permissive +owner: Apple +homepage_url: http://www.opensource.apple.com/source/diskdev_cmds/diskdev_cmds-208.11.2/pdisk.tproj/pdisk.h +spdx_license_key: LicenseRef-scancode-apple-attribution-1997 +--- + 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 appears in all copies and @@ -12,4 +22,4 @@ IN NO EVENT SHALL APPLE COMPUTER BE LIABLE FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN ACTION OF CONTRACT, NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION -WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/docs/apple-attribution-1997.html b/docs/apple-attribution-1997.html index a942011600..cc78ed178a 100644 --- a/docs/apple-attribution-1997.html +++ b/docs/apple-attribution-1997.html @@ -129,8 +129,7 @@ CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN ACTION OF CONTRACT, NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION -WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - +WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
@@ -142,7 +141,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apple-attribution-1997.json b/docs/apple-attribution-1997.json index 894d88be7b..69896c96ba 100644 --- a/docs/apple-attribution-1997.json +++ b/docs/apple-attribution-1997.json @@ -1 +1,9 @@ -{"key": "apple-attribution-1997", "short_name": "Apple Attribution 1997", "name": "Apple Attribution License 1997", "category": "Permissive", "owner": "Apple", "homepage_url": "http://www.opensource.apple.com/source/diskdev_cmds/diskdev_cmds-208.11.2/pdisk.tproj/pdisk.h", "spdx_license_key": "LicenseRef-scancode-apple-attribution-1997"} \ No newline at end of file +{ + "key": "apple-attribution-1997", + "short_name": "Apple Attribution 1997", + "name": "Apple Attribution License 1997", + "category": "Permissive", + "owner": "Apple", + "homepage_url": "http://www.opensource.apple.com/source/diskdev_cmds/diskdev_cmds-208.11.2/pdisk.tproj/pdisk.h", + "spdx_license_key": "LicenseRef-scancode-apple-attribution-1997" +} \ No newline at end of file diff --git a/docs/apple-attribution.LICENSE b/docs/apple-attribution.LICENSE index 1a8b232eeb..081505780f 100644 --- a/docs/apple-attribution.LICENSE +++ b/docs/apple-attribution.LICENSE @@ -1,3 +1,13 @@ +--- +key: apple-attribution +short_name: Apple Attribution License +name: Apple Attribution License +category: Permissive +owner: Apple +spdx_license_key: LicenseRef-scancode-apple-attribution +minimum_coverage: 80 +--- + Warranty Information Even though Apple has reviewed this software, Apple makes no warranty or representation, either express or implied, with respect to this @@ -7,4 +17,4 @@ and you, its user, are assuming the entire risk as to its quality and accuracy. This code may be used and freely distributed as long as it includes -this copyright notice and the warranty information. +this copyright notice and the warranty information. \ No newline at end of file diff --git a/docs/apple-attribution.html b/docs/apple-attribution.html index d6819b1d7e..c9c8ce23bb 100644 --- a/docs/apple-attribution.html +++ b/docs/apple-attribution.html @@ -124,8 +124,7 @@ and accuracy. This code may be used and freely distributed as long as it includes -this copyright notice and the warranty information. - +this copyright notice and the warranty information.
@@ -137,7 +136,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apple-attribution.json b/docs/apple-attribution.json index 500077c25f..0d5f787507 100644 --- a/docs/apple-attribution.json +++ b/docs/apple-attribution.json @@ -1 +1,9 @@ -{"key": "apple-attribution", "short_name": "Apple Attribution License", "name": "Apple Attribution License", "category": "Permissive", "owner": "Apple", "spdx_license_key": "LicenseRef-scancode-apple-attribution", "minimum_coverage": 80} \ No newline at end of file +{ + "key": "apple-attribution", + "short_name": "Apple Attribution License", + "name": "Apple Attribution License", + "category": "Permissive", + "owner": "Apple", + "spdx_license_key": "LicenseRef-scancode-apple-attribution", + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/apple-excl.LICENSE b/docs/apple-excl.LICENSE index 58d01ed109..08c68c469d 100644 --- a/docs/apple-excl.LICENSE +++ b/docs/apple-excl.LICENSE @@ -1,3 +1,12 @@ +--- +key: apple-excl +short_name: Apple Example Code License +name: Apple Example Code License +category: Permissive +owner: Apple +spdx_license_key: LicenseRef-scancode-apple-excl +--- + Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Inc. ("Apple") in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this Apple software diff --git a/docs/apple-excl.html b/docs/apple-excl.html index 423da2ed1b..eb927e9e5f 100644 --- a/docs/apple-excl.html +++ b/docs/apple-excl.html @@ -155,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apple-excl.json b/docs/apple-excl.json index 8a348009fc..5368e92cf7 100644 --- a/docs/apple-excl.json +++ b/docs/apple-excl.json @@ -1 +1,8 @@ -{"key": "apple-excl", "short_name": "Apple Example Code License", "name": "Apple Example Code License", "category": "Permissive", "owner": "Apple", "spdx_license_key": "LicenseRef-scancode-apple-excl"} \ No newline at end of file +{ + "key": "apple-excl", + "short_name": "Apple Example Code License", + "name": "Apple Example Code License", + "category": "Permissive", + "owner": "Apple", + "spdx_license_key": "LicenseRef-scancode-apple-excl" +} \ No newline at end of file diff --git a/docs/apple-mfi-license.LICENSE b/docs/apple-mfi-license.LICENSE index dacf2ee0d9..6c3f450b1a 100644 --- a/docs/apple-mfi-license.LICENSE +++ b/docs/apple-mfi-license.LICENSE @@ -1,3 +1,12 @@ +--- +key: apple-mfi-license +short_name: Apple MFi License +name: Apple MFi License +category: Proprietary Free +owner: Apple +spdx_license_key: LicenseRef-scancode-apple-mfi-license +--- + Disclaimer: IMPORTANT: This Apple software is supplied to you, by Apple Inc. ("Apple"), in your capacity as a current, and in good standing, Licensee in the MFi Licensing Program. Use of this Apple software is governed by and subject to the terms and conditions of your MFi License, diff --git a/docs/apple-mfi-license.html b/docs/apple-mfi-license.html index c12f4a2802..ec9bf3bb63 100644 --- a/docs/apple-mfi-license.html +++ b/docs/apple-mfi-license.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apple-mfi-license.json b/docs/apple-mfi-license.json index 0c04ed67c9..b0c8253f8e 100644 --- a/docs/apple-mfi-license.json +++ b/docs/apple-mfi-license.json @@ -1 +1,8 @@ -{"key": "apple-mfi-license", "short_name": "Apple MFi License", "name": "Apple MFi License", "category": "Proprietary Free", "owner": "Apple", "spdx_license_key": "LicenseRef-scancode-apple-mfi-license"} \ No newline at end of file +{ + "key": "apple-mfi-license", + "short_name": "Apple MFi License", + "name": "Apple MFi License", + "category": "Proprietary Free", + "owner": "Apple", + "spdx_license_key": "LicenseRef-scancode-apple-mfi-license" +} \ No newline at end of file diff --git a/docs/apple-mpeg-4.LICENSE b/docs/apple-mpeg-4.LICENSE index 16de87bee8..d261885e31 100644 --- a/docs/apple-mpeg-4.LICENSE +++ b/docs/apple-mpeg-4.LICENSE @@ -1,3 +1,16 @@ +--- +key: apple-mpeg-4 +short_name: Apple MPEG-4 License +name: Apple MPEG-4 License +category: Free Restricted +owner: Apple +spdx_license_key: LicenseRef-scancode-apple-mpeg-4 +ignorable_copyrights: + - Copyright (c) 1999 +ignorable_authors: + - Apple Computer, Inc. +--- + This software module was originally developed by Apple Computer, Inc. in the course of development of MPEG-4. This software module is an implementation of a part of one or more MPEG-4 tools as specified by MPEG-4. ISO/IEC gives users @@ -12,4 +25,4 @@ MPEG-4 conforming products. Apple Computer, Inc. retains full right to use the code for its own purpose, assign or donate the code to a third party and to inhibit third parties from using the code for non MPEG-4 conforming products. This copyright notice must be included in all copies or derivative works. -Copyright (c) 1999. +Copyright (c) 1999. \ No newline at end of file diff --git a/docs/apple-mpeg-4.html b/docs/apple-mpeg-4.html index 9d45c5bdb0..a87020bc6a 100644 --- a/docs/apple-mpeg-4.html +++ b/docs/apple-mpeg-4.html @@ -140,8 +140,7 @@ code for its own purpose, assign or donate the code to a third party and to inhibit third parties from using the code for non MPEG-4 conforming products. This copyright notice must be included in all copies or derivative works. -Copyright (c) 1999. - +Copyright (c) 1999.
@@ -153,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apple-mpeg-4.json b/docs/apple-mpeg-4.json index 3816e66ab4..40677f5084 100644 --- a/docs/apple-mpeg-4.json +++ b/docs/apple-mpeg-4.json @@ -1 +1,14 @@ -{"key": "apple-mpeg-4", "short_name": "Apple MPEG-4 License", "name": "Apple MPEG-4 License", "category": "Free Restricted", "owner": "Apple", "spdx_license_key": "LicenseRef-scancode-apple-mpeg-4", "ignorable_copyrights": ["Copyright (c) 1999"], "ignorable_authors": ["Apple Computer, Inc."]} \ No newline at end of file +{ + "key": "apple-mpeg-4", + "short_name": "Apple MPEG-4 License", + "name": "Apple MPEG-4 License", + "category": "Free Restricted", + "owner": "Apple", + "spdx_license_key": "LicenseRef-scancode-apple-mpeg-4", + "ignorable_copyrights": [ + "Copyright (c) 1999" + ], + "ignorable_authors": [ + "Apple Computer, Inc." + ] +} \ No newline at end of file diff --git a/docs/apple-runtime-library-exception.LICENSE b/docs/apple-runtime-library-exception.LICENSE index dc362221c0..c9383721c2 100644 --- a/docs/apple-runtime-library-exception.LICENSE +++ b/docs/apple-runtime-library-exception.LICENSE @@ -1,3 +1,34 @@ +--- +key: apple-runtime-library-exception +short_name: Runtime Library Exception to Apache 2.0 +name: Runtime Library Exception to the Apache 2.0 License +category: Permissive +owner: Apple +homepage_url: https://github.com/apple/swift/blob/master/LICENSE.txt#L205 +is_exception: yes +spdx_license_key: Swift-exception +text_urls: + - https://github.com/apple/swift-package-manager/blob/7ab2275f447a5eb37497ed63a9340f8a6d1e488b/LICENSE.txt#L205 + - https://swift.org/LICENSE.txt +other_urls: + - https://swift.org/ +standard_notice: | + 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. + ## Runtime Library Exception to the Apache 2.0 License: ## + As an exception, if you use this Software to compile your source code and + portions of this Software are embedded into the binary product as a result, + you may redistribute such product without providing attribution as would + otherwise be required by Sections 4(a), 4(b) and 4(d) of the License. +--- + Runtime Library Exception to the Apache 2.0 License As an exception, if you use this Software to compile your source code and diff --git a/docs/apple-runtime-library-exception.html b/docs/apple-runtime-library-exception.html index 1ec0b1a5df..bb8a36fafc 100644 --- a/docs/apple-runtime-library-exception.html +++ b/docs/apple-runtime-library-exception.html @@ -178,7 +178,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apple-runtime-library-exception.json b/docs/apple-runtime-library-exception.json index 1d9b6cbe21..3a5a281af8 100644 --- a/docs/apple-runtime-library-exception.json +++ b/docs/apple-runtime-library-exception.json @@ -1 +1,18 @@ -{"key": "apple-runtime-library-exception", "short_name": "Runtime Library Exception to Apache 2.0", "name": "Runtime Library Exception to the Apache 2.0 License", "category": "Permissive", "owner": "Apple", "homepage_url": "https://github.com/apple/swift/blob/master/LICENSE.txt#L205", "is_exception": true, "spdx_license_key": "Swift-exception", "text_urls": ["https://github.com/apple/swift-package-manager/blob/7ab2275f447a5eb37497ed63a9340f8a6d1e488b/LICENSE.txt#L205", "https://swift.org/LICENSE.txt"], "other_urls": ["https://swift.org/"], "standard_notice": "Licensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\nhttp://www.apache.org/licenses/LICENSE-2.0\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n## Runtime Library Exception to the Apache 2.0 License: ##\nAs an exception, if you use this Software to compile your source code and\nportions of this Software are embedded into the binary product as a result,\nyou may redistribute such product without providing attribution as would\notherwise be required by Sections 4(a), 4(b) and 4(d) of the License.\n"} \ No newline at end of file +{ + "key": "apple-runtime-library-exception", + "short_name": "Runtime Library Exception to Apache 2.0", + "name": "Runtime Library Exception to the Apache 2.0 License", + "category": "Permissive", + "owner": "Apple", + "homepage_url": "https://github.com/apple/swift/blob/master/LICENSE.txt#L205", + "is_exception": true, + "spdx_license_key": "Swift-exception", + "text_urls": [ + "https://github.com/apple/swift-package-manager/blob/7ab2275f447a5eb37497ed63a9340f8a6d1e488b/LICENSE.txt#L205", + "https://swift.org/LICENSE.txt" + ], + "other_urls": [ + "https://swift.org/" + ], + "standard_notice": "Licensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\nhttp://www.apache.org/licenses/LICENSE-2.0\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n## Runtime Library Exception to the Apache 2.0 License: ##\nAs an exception, if you use this Software to compile your source code and\nportions of this Software are embedded into the binary product as a result,\nyou may redistribute such product without providing attribution as would\notherwise be required by Sections 4(a), 4(b) and 4(d) of the License.\n" +} \ No newline at end of file diff --git a/docs/apple-sscl.LICENSE b/docs/apple-sscl.LICENSE index 224cca3e98..4fb4884d75 100644 --- a/docs/apple-sscl.LICENSE +++ b/docs/apple-sscl.LICENSE @@ -1,3 +1,12 @@ +--- +key: apple-sscl +short_name: Apple Sample Source Code License +name: Apple Sample Source Code License +category: Permissive +owner: Apple +spdx_license_key: LicenseRef-scancode-apple-sscl +--- + Apple Sample Source Code License You may incorporate this Apple sample source code into your program(s) without restriction. This Apple sample source code has been provided "AS IS" and the responsibility for its operation is yours. You are not permitted to redistribute this Apple sample source code as "Apple sample source code" after having made changes. If you're going to re-distribute the source, we require that you make it clear in the source that the code was descended from Apple sample source code, but that you've made changes. \ No newline at end of file diff --git a/docs/apple-sscl.html b/docs/apple-sscl.html index b9b3664835..57f6395ffd 100644 --- a/docs/apple-sscl.html +++ b/docs/apple-sscl.html @@ -122,7 +122,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apple-sscl.json b/docs/apple-sscl.json index 0ddb330f61..a483edcb81 100644 --- a/docs/apple-sscl.json +++ b/docs/apple-sscl.json @@ -1 +1,8 @@ -{"key": "apple-sscl", "short_name": "Apple Sample Source Code License", "name": "Apple Sample Source Code License", "category": "Permissive", "owner": "Apple", "spdx_license_key": "LicenseRef-scancode-apple-sscl"} \ No newline at end of file +{ + "key": "apple-sscl", + "short_name": "Apple Sample Source Code License", + "name": "Apple Sample Source Code License", + "category": "Permissive", + "owner": "Apple", + "spdx_license_key": "LicenseRef-scancode-apple-sscl" +} \ No newline at end of file diff --git a/docs/appsflyer-framework.LICENSE b/docs/appsflyer-framework.LICENSE index 89015a78de..c0797bdcfc 100644 --- a/docs/appsflyer-framework.LICENSE +++ b/docs/appsflyer-framework.LICENSE @@ -1,3 +1,18 @@ +--- +key: appsflyer-framework +short_name: AppsFlyer Framework License +name: AppsFlyer Framework License +category: Proprietary Free +owner: AppsFlyer +homepage_url: https://github.com/AppsFlyerSDK/AppsFlyerFramework/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-appsflyer-framework +ignorable_urls: + - https://www.appsflyer.com/gdpr/dpa.pdf + - https://www.appsflyer.com/privacy-policy +ignorable_emails: + - support@appsflyer.com +--- + Terms of Use AppsFlyer Ltd. (“AppsFlyer” or “us”, “our”, “we”) provides a software development kit which allows the tracking of mobile application use, installations and downloads (the “Service(s)”). These Terms of use (this “Agreement”) govern your access and use of the Services, and any code provided by AppsFlyer. “You”/”Company” means any third party that uses the Service. diff --git a/docs/appsflyer-framework.html b/docs/appsflyer-framework.html index 07daf61806..fc32bb6e2d 100644 --- a/docs/appsflyer-framework.html +++ b/docs/appsflyer-framework.html @@ -255,7 +255,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/appsflyer-framework.json b/docs/appsflyer-framework.json index d101167d03..9fff7cadce 100644 --- a/docs/appsflyer-framework.json +++ b/docs/appsflyer-framework.json @@ -1 +1,16 @@ -{"key": "appsflyer-framework", "short_name": "AppsFlyer Framework License", "name": "AppsFlyer Framework License", "category": "Proprietary Free", "owner": "AppsFlyer", "homepage_url": "https://github.com/AppsFlyerSDK/AppsFlyerFramework/blob/master/LICENSE", "spdx_license_key": "LicenseRef-scancode-appsflyer-framework", "ignorable_urls": ["https://www.appsflyer.com/gdpr/dpa.pdf", "https://www.appsflyer.com/privacy-policy"], "ignorable_emails": ["support@appsflyer.com"]} \ No newline at end of file +{ + "key": "appsflyer-framework", + "short_name": "AppsFlyer Framework License", + "name": "AppsFlyer Framework License", + "category": "Proprietary Free", + "owner": "AppsFlyer", + "homepage_url": "https://github.com/AppsFlyerSDK/AppsFlyerFramework/blob/master/LICENSE", + "spdx_license_key": "LicenseRef-scancode-appsflyer-framework", + "ignorable_urls": [ + "https://www.appsflyer.com/gdpr/dpa.pdf", + "https://www.appsflyer.com/privacy-policy" + ], + "ignorable_emails": [ + "support@appsflyer.com" + ] +} \ No newline at end of file diff --git a/docs/apsl-1.0.LICENSE b/docs/apsl-1.0.LICENSE index 57f59f2bc8..0f59549db0 100644 --- a/docs/apsl-1.0.LICENSE +++ b/docs/apsl-1.0.LICENSE @@ -1,3 +1,26 @@ +--- +key: apsl-1.0 +short_name: APSL 1.0 +name: Apple Public Source License 1.0 +category: Copyleft Limited +owner: Apple +homepage_url: http://www.opensource.apple.com/source/architecture/architecture-229/APPLE_LICENSE?f=text +notes: Per SPDX.org, this license was released 16 March 1999. +spdx_license_key: APSL-1.0 +text_urls: + - http://www.opensource.apple.com/source/architecture/architecture-229/APPLE_LICENSE?f=text +other_urls: + - https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0 +ignorable_copyrights: + - Portions Copyright (c) 1999 Apple Computer, Inc. +ignorable_holders: + - Apple Computer, Inc. +ignorable_urls: + - http://www.apple.com/legal/guidelinesfor3rdparties.html + - http://www.apple.com/publicsource + - http://www.apple.com/publicsource/modifications.html +--- + APPLE PUBLIC SOURCE LICENSE Version 1.0 - March 16, 1999 diff --git a/docs/apsl-1.0.html b/docs/apsl-1.0.html index d32f052aed..78c03c38f2 100644 --- a/docs/apsl-1.0.html +++ b/docs/apsl-1.0.html @@ -548,7 +548,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apsl-1.0.json b/docs/apsl-1.0.json index f60f9ad7ea..a2dfb9bcc2 100644 --- a/docs/apsl-1.0.json +++ b/docs/apsl-1.0.json @@ -1 +1,27 @@ -{"key": "apsl-1.0", "short_name": "APSL 1.0", "name": "Apple Public Source License 1.0", "category": "Copyleft Limited", "owner": "Apple", "homepage_url": "http://www.opensource.apple.com/source/architecture/architecture-229/APPLE_LICENSE?f=text", "notes": "Per SPDX.org, this license was released 16 March 1999.", "spdx_license_key": "APSL-1.0", "text_urls": ["http://www.opensource.apple.com/source/architecture/architecture-229/APPLE_LICENSE?f=text"], "other_urls": ["https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0"], "ignorable_copyrights": ["Portions Copyright (c) 1999 Apple Computer, Inc."], "ignorable_holders": ["Apple Computer, Inc."], "ignorable_urls": ["http://www.apple.com/legal/guidelinesfor3rdparties.html", "http://www.apple.com/publicsource", "http://www.apple.com/publicsource/modifications.html"]} \ No newline at end of file +{ + "key": "apsl-1.0", + "short_name": "APSL 1.0", + "name": "Apple Public Source License 1.0", + "category": "Copyleft Limited", + "owner": "Apple", + "homepage_url": "http://www.opensource.apple.com/source/architecture/architecture-229/APPLE_LICENSE?f=text", + "notes": "Per SPDX.org, this license was released 16 March 1999.", + "spdx_license_key": "APSL-1.0", + "text_urls": [ + "http://www.opensource.apple.com/source/architecture/architecture-229/APPLE_LICENSE?f=text" + ], + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0" + ], + "ignorable_copyrights": [ + "Portions Copyright (c) 1999 Apple Computer, Inc." + ], + "ignorable_holders": [ + "Apple Computer, Inc." + ], + "ignorable_urls": [ + "http://www.apple.com/legal/guidelinesfor3rdparties.html", + "http://www.apple.com/publicsource", + "http://www.apple.com/publicsource/modifications.html" + ] +} \ No newline at end of file diff --git a/docs/apsl-1.1.LICENSE b/docs/apsl-1.1.LICENSE index 3948126003..2a2bed73f2 100644 --- a/docs/apsl-1.1.LICENSE +++ b/docs/apsl-1.1.LICENSE @@ -1,3 +1,29 @@ +--- +key: apsl-1.1 +short_name: APSL 1.1 +name: Apple Public Source License 1.1 +category: Copyleft Limited +owner: Apple +homepage_url: http://web.archive.org/web/20000901055846/http://www.opensource.apple.com/apsl/ +notes: Per SPDX.org, this license was released 19 April 1999. +spdx_license_key: APSL-1.1 +text_urls: + - http://www.opensource.apple.com/apsl/1.1.txt + - http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE +faq_url: http://www.gnu.org/philosophy/historical-apsl.html +other_urls: + - http://web.archive.org/web/20000901055846/http://www.opensource.apple.com/apsl/ + - https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.1 +ignorable_copyrights: + - Portions Copyright (c) 1999-2000 Apple Computer, Inc. +ignorable_holders: + - Apple Computer, Inc. +ignorable_urls: + - http://www.apple.com/legal/guidelinesfor3rdparties.html + - http://www.apple.com/publicsource + - http://www.apple.com/publicsource/modifications.html +--- + APPLE PUBLIC SOURCE LICENSE Version 1.1 - April 19,1999 diff --git a/docs/apsl-1.1.html b/docs/apsl-1.1.html index 60adcbe36a..b6c71c8bda 100644 --- a/docs/apsl-1.1.html +++ b/docs/apsl-1.1.html @@ -557,7 +557,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apsl-1.1.json b/docs/apsl-1.1.json index cd453f0936..bea264aaf4 100644 --- a/docs/apsl-1.1.json +++ b/docs/apsl-1.1.json @@ -1 +1,30 @@ -{"key": "apsl-1.1", "short_name": "APSL 1.1", "name": "Apple Public Source License 1.1", "category": "Copyleft Limited", "owner": "Apple", "homepage_url": "http://web.archive.org/web/20000901055846/http://www.opensource.apple.com/apsl/", "notes": "Per SPDX.org, this license was released 19 April 1999.", "spdx_license_key": "APSL-1.1", "text_urls": ["http://www.opensource.apple.com/apsl/1.1.txt", "http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE"], "faq_url": "http://www.gnu.org/philosophy/historical-apsl.html", "other_urls": ["http://web.archive.org/web/20000901055846/http://www.opensource.apple.com/apsl/", "https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.1"], "ignorable_copyrights": ["Portions Copyright (c) 1999-2000 Apple Computer, Inc."], "ignorable_holders": ["Apple Computer, Inc."], "ignorable_urls": ["http://www.apple.com/legal/guidelinesfor3rdparties.html", "http://www.apple.com/publicsource", "http://www.apple.com/publicsource/modifications.html"]} \ No newline at end of file +{ + "key": "apsl-1.1", + "short_name": "APSL 1.1", + "name": "Apple Public Source License 1.1", + "category": "Copyleft Limited", + "owner": "Apple", + "homepage_url": "http://web.archive.org/web/20000901055846/http://www.opensource.apple.com/apsl/", + "notes": "Per SPDX.org, this license was released 19 April 1999.", + "spdx_license_key": "APSL-1.1", + "text_urls": [ + "http://www.opensource.apple.com/apsl/1.1.txt", + "http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE" + ], + "faq_url": "http://www.gnu.org/philosophy/historical-apsl.html", + "other_urls": [ + "http://web.archive.org/web/20000901055846/http://www.opensource.apple.com/apsl/", + "https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.1" + ], + "ignorable_copyrights": [ + "Portions Copyright (c) 1999-2000 Apple Computer, Inc." + ], + "ignorable_holders": [ + "Apple Computer, Inc." + ], + "ignorable_urls": [ + "http://www.apple.com/legal/guidelinesfor3rdparties.html", + "http://www.apple.com/publicsource", + "http://www.apple.com/publicsource/modifications.html" + ] +} \ No newline at end of file diff --git a/docs/apsl-1.2.LICENSE b/docs/apsl-1.2.LICENSE index 3d2065af18..8a80fd3deb 100644 --- a/docs/apsl-1.2.LICENSE +++ b/docs/apsl-1.2.LICENSE @@ -1,3 +1,32 @@ +--- +key: apsl-1.2 +short_name: APSL 1.2 +name: Apple Public Source License 1.2 +category: Copyleft Limited +owner: Apple +homepage_url: http://www.opensource.apple.com/apsl/1.2.txt +notes: | + Per SPDX.org, this license was released 4 Jan 2001. This license was OSI + certified +spdx_license_key: APSL-1.2 +text_urls: + - http://web.archive.org/web/20010302160215/http://www.opensource.apple.com/apsl/ + - http://www.samurajdata.se/opensource/mirror/licenses/apsl.php +osi_url: http://web.archive.org/web/20020203232348/http://www.opensource.org/licenses/apsl.html +faq_url: http://www.gnu.org/philosophy/historical-apsl.html +other_urls: + - http://opensource-definition.org/licenses/apsl.html + - http://web.archive.org/web/20020203232348/http://www.opensource.org/licenses/apsl.html + - https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.2 +ignorable_copyrights: + - Portions Copyright (c) 1999-2003 Apple Computer, Inc. +ignorable_holders: + - Apple Computer, Inc. +ignorable_urls: + - http://www.apple.com/legal/guidelinesfor3rdparties.html + - http://www.apple.com/publicsource +--- + APPLE PUBLIC SOURCE LICENSE Version 1.2 - January 4, 2001 diff --git a/docs/apsl-1.2.html b/docs/apsl-1.2.html index dc6531a6e8..999cd748a6 100644 --- a/docs/apsl-1.2.html +++ b/docs/apsl-1.2.html @@ -565,7 +565,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apsl-1.2.json b/docs/apsl-1.2.json index db4330ff99..b7dc1fb971 100644 --- a/docs/apsl-1.2.json +++ b/docs/apsl-1.2.json @@ -1 +1,31 @@ -{"key": "apsl-1.2", "short_name": "APSL 1.2", "name": "Apple Public Source License 1.2", "category": "Copyleft Limited", "owner": "Apple", "homepage_url": "http://www.opensource.apple.com/apsl/1.2.txt", "notes": "Per SPDX.org, this license was released 4 Jan 2001. This license was OSI\ncertified\n", "spdx_license_key": "APSL-1.2", "text_urls": ["http://web.archive.org/web/20010302160215/http://www.opensource.apple.com/apsl/", "http://www.samurajdata.se/opensource/mirror/licenses/apsl.php"], "osi_url": "http://web.archive.org/web/20020203232348/http://www.opensource.org/licenses/apsl.html", "faq_url": "http://www.gnu.org/philosophy/historical-apsl.html", "other_urls": ["http://opensource-definition.org/licenses/apsl.html", "http://web.archive.org/web/20020203232348/http://www.opensource.org/licenses/apsl.html", "https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.2"], "ignorable_copyrights": ["Portions Copyright (c) 1999-2003 Apple Computer, Inc."], "ignorable_holders": ["Apple Computer, Inc."], "ignorable_urls": ["http://www.apple.com/legal/guidelinesfor3rdparties.html", "http://www.apple.com/publicsource"]} \ No newline at end of file +{ + "key": "apsl-1.2", + "short_name": "APSL 1.2", + "name": "Apple Public Source License 1.2", + "category": "Copyleft Limited", + "owner": "Apple", + "homepage_url": "http://www.opensource.apple.com/apsl/1.2.txt", + "notes": "Per SPDX.org, this license was released 4 Jan 2001. This license was OSI\ncertified\n", + "spdx_license_key": "APSL-1.2", + "text_urls": [ + "http://web.archive.org/web/20010302160215/http://www.opensource.apple.com/apsl/", + "http://www.samurajdata.se/opensource/mirror/licenses/apsl.php" + ], + "osi_url": "http://web.archive.org/web/20020203232348/http://www.opensource.org/licenses/apsl.html", + "faq_url": "http://www.gnu.org/philosophy/historical-apsl.html", + "other_urls": [ + "http://opensource-definition.org/licenses/apsl.html", + "http://web.archive.org/web/20020203232348/http://www.opensource.org/licenses/apsl.html", + "https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.2" + ], + "ignorable_copyrights": [ + "Portions Copyright (c) 1999-2003 Apple Computer, Inc." + ], + "ignorable_holders": [ + "Apple Computer, Inc." + ], + "ignorable_urls": [ + "http://www.apple.com/legal/guidelinesfor3rdparties.html", + "http://www.apple.com/publicsource" + ] +} \ No newline at end of file diff --git a/docs/apsl-2.0.LICENSE b/docs/apsl-2.0.LICENSE index 9238776391..1233dc162d 100644 --- a/docs/apsl-2.0.LICENSE +++ b/docs/apsl-2.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: apsl-2.0 +short_name: APSL 2.0 +name: Apple Public Source License 2.0 +category: Copyleft Limited +owner: Apple +homepage_url: http://www.opensource.apple.com/license/apsl/ +notes: | + Per SPDX.org, this version was released 6 August 2003. This license is OSI + certifified. +spdx_license_key: APSL-2.0 +osi_license_key: APSL-2.0 +text_urls: + - http://www.opensource.apple.com/license/apsl/ +osi_url: http://opensource.org/licenses/apsl-2.0.php +faq_url: http://www.gnu.org/philosophy/apsl.html +ignorable_copyrights: + - Portions Copyright (c) 1999-2003 Apple Computer, Inc. +ignorable_holders: + - Apple Computer, Inc. +ignorable_urls: + - http://www.apple.com/legal/guidelinesfor3rdparties.html + - http://www.opensource.apple.com/apsl/ +--- + APPLE PUBLIC SOURCE LICENSE Version 2.0 - August 6, 2003 diff --git a/docs/apsl-2.0.html b/docs/apsl-2.0.html index e7308436bd..0beec3ba27 100644 --- a/docs/apsl-2.0.html +++ b/docs/apsl-2.0.html @@ -292,7 +292,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/apsl-2.0.json b/docs/apsl-2.0.json index 237d7222b8..26795ee257 100644 --- a/docs/apsl-2.0.json +++ b/docs/apsl-2.0.json @@ -1 +1,26 @@ -{"key": "apsl-2.0", "short_name": "APSL 2.0", "name": "Apple Public Source License 2.0", "category": "Copyleft Limited", "owner": "Apple", "homepage_url": "http://www.opensource.apple.com/license/apsl/", "notes": "Per SPDX.org, this version was released 6 August 2003. This license is OSI\ncertifified.\n", "spdx_license_key": "APSL-2.0", "osi_license_key": "APSL-2.0", "text_urls": ["http://www.opensource.apple.com/license/apsl/"], "osi_url": "http://opensource.org/licenses/apsl-2.0.php", "faq_url": "http://www.gnu.org/philosophy/apsl.html", "ignorable_copyrights": ["Portions Copyright (c) 1999-2003 Apple Computer, Inc."], "ignorable_holders": ["Apple Computer, Inc."], "ignorable_urls": ["http://www.apple.com/legal/guidelinesfor3rdparties.html", "http://www.opensource.apple.com/apsl/"]} \ No newline at end of file +{ + "key": "apsl-2.0", + "short_name": "APSL 2.0", + "name": "Apple Public Source License 2.0", + "category": "Copyleft Limited", + "owner": "Apple", + "homepage_url": "http://www.opensource.apple.com/license/apsl/", + "notes": "Per SPDX.org, this version was released 6 August 2003. This license is OSI\ncertifified.\n", + "spdx_license_key": "APSL-2.0", + "osi_license_key": "APSL-2.0", + "text_urls": [ + "http://www.opensource.apple.com/license/apsl/" + ], + "osi_url": "http://opensource.org/licenses/apsl-2.0.php", + "faq_url": "http://www.gnu.org/philosophy/apsl.html", + "ignorable_copyrights": [ + "Portions Copyright (c) 1999-2003 Apple Computer, Inc." + ], + "ignorable_holders": [ + "Apple Computer, Inc." + ], + "ignorable_urls": [ + "http://www.apple.com/legal/guidelinesfor3rdparties.html", + "http://www.opensource.apple.com/apsl/" + ] +} \ No newline at end of file diff --git a/docs/aptana-1.0.LICENSE b/docs/aptana-1.0.LICENSE index 9a346fa5a4..34287c1be3 100644 --- a/docs/aptana-1.0.LICENSE +++ b/docs/aptana-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: aptana-1.0 +short_name: Aptana 1.0 +name: Aptana Public License 1.0 +category: Copyleft Limited +owner: Appcelerator +homepage_url: http://aptana.com/legal/apl/ +spdx_license_key: LicenseRef-scancode-aptana-1.0 +text_urls: + - http://aptana.com/legal/apl/ +--- + Aptana Public License - 1.0 THE PROGRAM (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS APTANA PUBLIC LICENSE ("LICENSE"). THE PROGRAM IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. BY EXERCISING ANY RIGHTS TO THE PROGRAM PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. diff --git a/docs/aptana-1.0.html b/docs/aptana-1.0.html index bca5845305..f9aababf7c 100644 --- a/docs/aptana-1.0.html +++ b/docs/aptana-1.0.html @@ -186,7 +186,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/aptana-1.0.json b/docs/aptana-1.0.json index 979c481e38..2d367214dc 100644 --- a/docs/aptana-1.0.json +++ b/docs/aptana-1.0.json @@ -1 +1,12 @@ -{"key": "aptana-1.0", "short_name": "Aptana 1.0", "name": "Aptana Public License 1.0", "category": "Copyleft Limited", "owner": "Appcelerator", "homepage_url": "http://aptana.com/legal/apl/", "spdx_license_key": "LicenseRef-scancode-aptana-1.0", "text_urls": ["http://aptana.com/legal/apl/"]} \ No newline at end of file +{ + "key": "aptana-1.0", + "short_name": "Aptana 1.0", + "name": "Aptana Public License 1.0", + "category": "Copyleft Limited", + "owner": "Appcelerator", + "homepage_url": "http://aptana.com/legal/apl/", + "spdx_license_key": "LicenseRef-scancode-aptana-1.0", + "text_urls": [ + "http://aptana.com/legal/apl/" + ] +} \ No newline at end of file diff --git a/docs/aptana-exception-3.0.LICENSE b/docs/aptana-exception-3.0.LICENSE index 2a402bc5d0..dd239f4fbd 100644 --- a/docs/aptana-exception-3.0.LICENSE +++ b/docs/aptana-exception-3.0.LICENSE @@ -1,3 +1,90 @@ +--- +key: aptana-exception-3.0 +short_name: Aptana exception to GPL 3.0 +name: Aptana exception to GPL 3.0 +category: Copyleft Limited +owner: Appcelerator +homepage_url: https://github.com/aptana/studio3/blob/development/README.md +is_exception: yes +spdx_license_key: LicenseRef-scancode-aptana-exception-3.0 +faq_url: http://www.aptana.com/legal/gpl +other_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +standard_notice: | + This program Copyright (c) 2005-2015 by Appcelerator, Inc. This program is + distributed under the GNU General Public license. This program is free + software; you can redistribute it and/or modify it under the terms of the + GNU General Public License, Version 3, as published by the Free Software + Foundation. + Any modifications must keep this entire license intact. + ----------------------------------------------------------------------- + Appcelerator GPL Exception + Section 7 Exception + As a special exception to the terms and conditions of the GNU General + Public License Version 3 (the "GPL"): You are free to convey a modified + version that is formed entirely from this file (for purposes of this + exception, the "Program" under the GPL) and the works identified at + http://www.aptana.com/legal/gpl (each an "Excepted Work"), which are + conveyed to you by Appcelerator, Inc. and licensed under one or more of the + licenses identified in the Excepted License List below (each an "Excepted + License"), as long as: + 1. you obey the GPL in all respects for the Program and the modified + version, except for Excepted Works which are identifiable sections of the + modified version, which are not derived from the Program, and which can + reasonably be considered independent and separate works in themselves, + 2. all Excepted Works which are identifiable sections of the modified + version, which are not derived from the Program, and which can reasonably + be considered independent and separate works in themselves, + 1. are distributed subject to the Excepted License under which they were + originally licensed, and + 2. are not themselves modified from the form in which they are conveyed to + you by Aptana, and + 3. the object code or executable form of those sections are accompanied by + the complete corresponding machine-readable source code for those sections, + on the same medium as the corresponding object code or executable forms of + those sections, and are licensed under the applicable Excepted License as + the corresponding object code or executable forms of those sections, and + 3. any works which are aggregated with the Program, or with a modified + version on a volume of a storage or distribution medium in accordance with + the GPL, are aggregates (as defined in Section 5 of the GPL) which can + reasonably be considered independent and separate works in themselves and + which are not modified versions of either the Program, a modified version, + or an Excepted Work. + If the above conditions are not met, then the Program may only be copied, + modified, distributed or used under the terms and conditions of the GPL or + another valid licensing option from Appcelerator, Inc. Terms used but not + defined in the foregoing paragraph have the meanings given in the GPL. + ----------------------------------------------------------------------- + Excepted License List + * Apache Software License: version 1.0, 1.1, 2.0 + * Eclipse Public License: version 1.0 + * GNU General Public License: version 2.0 + * GNU Lesser General Public License: version 2.0 + * License of Jaxer + * License of HTML jTidy + * Mozilla Public License: version 1.1 + * W3C License + * BSD License + * MIT License + * Aptana Commercial Licenses + This list may be modified by Appcelerator from time to time. See + Appcelerator's website for the latest version. + ----------------------------------------------------------------------- + Attribution Requirement + This license does not grant any license or rights to use the trademarks + "Aptana," any "Aptana" logos, or any other trademarks of Appcelerator, Inc. + You are not authorized to use the name Aptana or the names of any author or + contributor for publicity purposes, without written authorization. + However, in addition to the other notice obligations of this License, all + copies of any covered work conveyed by you must include on each user + interface screen and in the Appropriate Legal Notices the following text: + "Powered by Aptana". On user interface screens, this text must be visibly + and clearly displayed in the title bar, status bar, or otherwise directly + in the view that is in focus. +ignorable_urls: + - http://www.aptana.com/legal/gpl +--- + Appcelerator GPL Exception Section 7 Exception diff --git a/docs/aptana-exception-3.0.html b/docs/aptana-exception-3.0.html index 3f0a56c979..7093d071bb 100644 --- a/docs/aptana-exception-3.0.html +++ b/docs/aptana-exception-3.0.html @@ -248,7 +248,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/aptana-exception-3.0.json b/docs/aptana-exception-3.0.json index 2e33ce2211..a624ebcb87 100644 --- a/docs/aptana-exception-3.0.json +++ b/docs/aptana-exception-3.0.json @@ -1 +1,18 @@ -{"key": "aptana-exception-3.0", "short_name": "Aptana exception to GPL 3.0", "name": "Aptana exception to GPL 3.0", "category": "Copyleft Limited", "owner": "Appcelerator", "homepage_url": "https://github.com/aptana/studio3/blob/development/README.md", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-aptana-exception-3.0", "faq_url": "http://www.aptana.com/legal/gpl", "other_urls": ["http://www.gnu.org/licenses/gpl-3.0.txt"], "standard_notice": "This program Copyright (c) 2005-2015 by Appcelerator, Inc. This program is\ndistributed under the GNU General Public license. This program is free\nsoftware; you can redistribute it and/or modify it under the terms of the\nGNU General Public License, Version 3, as published by the Free Software\nFoundation.\nAny modifications must keep this entire license intact.\n-----------------------------------------------------------------------\nAppcelerator GPL Exception\nSection 7 Exception\nAs a special exception to the terms and conditions of the GNU General\nPublic License Version 3 (the \"GPL\"): You are free to convey a modified\nversion that is formed entirely from this file (for purposes of this\nexception, the \"Program\" under the GPL) and the works identified at\nhttp://www.aptana.com/legal/gpl (each an \"Excepted Work\"), which are\nconveyed to you by Appcelerator, Inc. and licensed under one or more of the\nlicenses identified in the Excepted License List below (each an \"Excepted\nLicense\"), as long as:\n1. you obey the GPL in all respects for the Program and the modified\nversion, except for Excepted Works which are identifiable sections of the\nmodified version, which are not derived from the Program, and which can\nreasonably be considered independent and separate works in themselves,\n2. all Excepted Works which are identifiable sections of the modified\nversion, which are not derived from the Program, and which can reasonably\nbe considered independent and separate works in themselves,\n1. are distributed subject to the Excepted License under which they were\noriginally licensed, and\n2. are not themselves modified from the form in which they are conveyed to\nyou by Aptana, and\n3. the object code or executable form of those sections are accompanied by\nthe complete corresponding machine-readable source code for those sections,\non the same medium as the corresponding object code or executable forms of\nthose sections, and are licensed under the applicable Excepted License as\nthe corresponding object code or executable forms of those sections, and\n3. any works which are aggregated with the Program, or with a modified\nversion on a volume of a storage or distribution medium in accordance with\nthe GPL, are aggregates (as defined in Section 5 of the GPL) which can\nreasonably be considered independent and separate works in themselves and\nwhich are not modified versions of either the Program, a modified version,\nor an Excepted Work.\nIf the above conditions are not met, then the Program may only be copied,\nmodified, distributed or used under the terms and conditions of the GPL or\nanother valid licensing option from Appcelerator, Inc. Terms used but not\ndefined in the foregoing paragraph have the meanings given in the GPL.\n-----------------------------------------------------------------------\nExcepted License List\n* Apache Software License: version 1.0, 1.1, 2.0\n* Eclipse Public License: version 1.0\n* GNU General Public License: version 2.0\n* GNU Lesser General Public License: version 2.0\n* License of Jaxer\n* License of HTML jTidy\n* Mozilla Public License: version 1.1\n* W3C License\n* BSD License\n* MIT License\n* Aptana Commercial Licenses\nThis list may be modified by Appcelerator from time to time. See\nAppcelerator's website for the latest version.\n-----------------------------------------------------------------------\nAttribution Requirement\nThis license does not grant any license or rights to use the trademarks\n\"Aptana,\" any \"Aptana\" logos, or any other trademarks of Appcelerator, Inc.\nYou are not authorized to use the name Aptana or the names of any author or\ncontributor for publicity purposes, without written authorization.\nHowever, in addition to the other notice obligations of this License, all\ncopies of any covered work conveyed by you must include on each user\ninterface screen and in the Appropriate Legal Notices the following text:\n\"Powered by Aptana\". On user interface screens, this text must be visibly\nand clearly displayed in the title bar, status bar, or otherwise directly\nin the view that is in focus.\n", "ignorable_urls": ["http://www.aptana.com/legal/gpl"]} \ No newline at end of file +{ + "key": "aptana-exception-3.0", + "short_name": "Aptana exception to GPL 3.0", + "name": "Aptana exception to GPL 3.0", + "category": "Copyleft Limited", + "owner": "Appcelerator", + "homepage_url": "https://github.com/aptana/studio3/blob/development/README.md", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-aptana-exception-3.0", + "faq_url": "http://www.aptana.com/legal/gpl", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-3.0.txt" + ], + "standard_notice": "This program Copyright (c) 2005-2015 by Appcelerator, Inc. This program is\ndistributed under the GNU General Public license. This program is free\nsoftware; you can redistribute it and/or modify it under the terms of the\nGNU General Public License, Version 3, as published by the Free Software\nFoundation.\nAny modifications must keep this entire license intact.\n-----------------------------------------------------------------------\nAppcelerator GPL Exception\nSection 7 Exception\nAs a special exception to the terms and conditions of the GNU General\nPublic License Version 3 (the \"GPL\"): You are free to convey a modified\nversion that is formed entirely from this file (for purposes of this\nexception, the \"Program\" under the GPL) and the works identified at\nhttp://www.aptana.com/legal/gpl (each an \"Excepted Work\"), which are\nconveyed to you by Appcelerator, Inc. and licensed under one or more of the\nlicenses identified in the Excepted License List below (each an \"Excepted\nLicense\"), as long as:\n1. you obey the GPL in all respects for the Program and the modified\nversion, except for Excepted Works which are identifiable sections of the\nmodified version, which are not derived from the Program, and which can\nreasonably be considered independent and separate works in themselves,\n2. all Excepted Works which are identifiable sections of the modified\nversion, which are not derived from the Program, and which can reasonably\nbe considered independent and separate works in themselves,\n1. are distributed subject to the Excepted License under which they were\noriginally licensed, and\n2. are not themselves modified from the form in which they are conveyed to\nyou by Aptana, and\n3. the object code or executable form of those sections are accompanied by\nthe complete corresponding machine-readable source code for those sections,\non the same medium as the corresponding object code or executable forms of\nthose sections, and are licensed under the applicable Excepted License as\nthe corresponding object code or executable forms of those sections, and\n3. any works which are aggregated with the Program, or with a modified\nversion on a volume of a storage or distribution medium in accordance with\nthe GPL, are aggregates (as defined in Section 5 of the GPL) which can\nreasonably be considered independent and separate works in themselves and\nwhich are not modified versions of either the Program, a modified version,\nor an Excepted Work.\nIf the above conditions are not met, then the Program may only be copied,\nmodified, distributed or used under the terms and conditions of the GPL or\nanother valid licensing option from Appcelerator, Inc. Terms used but not\ndefined in the foregoing paragraph have the meanings given in the GPL.\n-----------------------------------------------------------------------\nExcepted License List\n* Apache Software License: version 1.0, 1.1, 2.0\n* Eclipse Public License: version 1.0\n* GNU General Public License: version 2.0\n* GNU Lesser General Public License: version 2.0\n* License of Jaxer\n* License of HTML jTidy\n* Mozilla Public License: version 1.1\n* W3C License\n* BSD License\n* MIT License\n* Aptana Commercial Licenses\nThis list may be modified by Appcelerator from time to time. See\nAppcelerator's website for the latest version.\n-----------------------------------------------------------------------\nAttribution Requirement\nThis license does not grant any license or rights to use the trademarks\n\"Aptana,\" any \"Aptana\" logos, or any other trademarks of Appcelerator, Inc.\nYou are not authorized to use the name Aptana or the names of any author or\ncontributor for publicity purposes, without written authorization.\nHowever, in addition to the other notice obligations of this License, all\ncopies of any covered work conveyed by you must include on each user\ninterface screen and in the Appropriate Legal Notices the following text:\n\"Powered by Aptana\". On user interface screens, this text must be visibly\nand clearly displayed in the title bar, status bar, or otherwise directly\nin the view that is in focus.\n", + "ignorable_urls": [ + "http://www.aptana.com/legal/gpl" + ] +} \ No newline at end of file diff --git a/docs/arachni-psl-1.0.LICENSE b/docs/arachni-psl-1.0.LICENSE index 58c6203e8d..81496de082 100644 --- a/docs/arachni-psl-1.0.LICENSE +++ b/docs/arachni-psl-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: arachni-psl-1.0 +short_name: Arachni PSL v1.0 +name: Arachni Public Source License v1.0 +category: Proprietary Free +owner: Arachni +homepage_url: https://www.arachni-scanner.com/license/ +spdx_license_key: LicenseRef-scancode-arachni-psl-1.0 +text_urls: + - https://github.com/Arachni/arachni/blob/master/LICENSE.md +faq_url: https://www.arachni-scanner.com/faq/ +other_urls: + - https://github.com/Arachni/arachni/ +ignorable_emails: + - license@arachni-scanner.com +--- + Arachni Public Source License Version 1.0, June 2015 diff --git a/docs/arachni-psl-1.0.html b/docs/arachni-psl-1.0.html index 3df7f03dcf..617f93e5b3 100644 --- a/docs/arachni-psl-1.0.html +++ b/docs/arachni-psl-1.0.html @@ -295,7 +295,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/arachni-psl-1.0.json b/docs/arachni-psl-1.0.json index 8d1e47ffe2..d04fff6551 100644 --- a/docs/arachni-psl-1.0.json +++ b/docs/arachni-psl-1.0.json @@ -1 +1,19 @@ -{"key": "arachni-psl-1.0", "short_name": "Arachni PSL v1.0", "name": "Arachni Public Source License v1.0", "category": "Proprietary Free", "owner": "Arachni", "homepage_url": "https://www.arachni-scanner.com/license/", "spdx_license_key": "LicenseRef-scancode-arachni-psl-1.0", "text_urls": ["https://github.com/Arachni/arachni/blob/master/LICENSE.md"], "faq_url": "https://www.arachni-scanner.com/faq/", "other_urls": ["https://github.com/Arachni/arachni/"], "ignorable_emails": ["license@arachni-scanner.com"]} \ No newline at end of file +{ + "key": "arachni-psl-1.0", + "short_name": "Arachni PSL v1.0", + "name": "Arachni Public Source License v1.0", + "category": "Proprietary Free", + "owner": "Arachni", + "homepage_url": "https://www.arachni-scanner.com/license/", + "spdx_license_key": "LicenseRef-scancode-arachni-psl-1.0", + "text_urls": [ + "https://github.com/Arachni/arachni/blob/master/LICENSE.md" + ], + "faq_url": "https://www.arachni-scanner.com/faq/", + "other_urls": [ + "https://github.com/Arachni/arachni/" + ], + "ignorable_emails": [ + "license@arachni-scanner.com" + ] +} \ No newline at end of file diff --git a/docs/aravindan-premkumar.LICENSE b/docs/aravindan-premkumar.LICENSE index 18cded52eb..7102dad3b4 100644 --- a/docs/aravindan-premkumar.LICENSE +++ b/docs/aravindan-premkumar.LICENSE @@ -1,3 +1,14 @@ +--- +key: aravindan-premkumar +short_name: Aravindan Premkumar Licenase +name: Aravindan Premkumar Licenase +category: Permissive +owner: Aravindan Premkumar +spdx_license_key: LicenseRef-scancode-aravindan-premkumar +other_urls: + - http://www.codeproject.com/script/Content/ViewAssociatedFile.aspx?rzp=%2FKB%2Flist%2FCustomizedReportListCtrl%2F%2Fcustomizedreportlistctrl_src.zip&zep=ListCtrl%2FInPlaceEdit.cpp&obid=5709&obtid=2&ovid=2 +--- + This piece of code does not have any registered copyright and is free to be used as necessary. The user is free to modify as per the requirements. As a fellow developer, all that I expect and request for is to be given the diff --git a/docs/aravindan-premkumar.html b/docs/aravindan-premkumar.html index 78aba4eca6..c452fd3d9b 100644 --- a/docs/aravindan-premkumar.html +++ b/docs/aravindan-premkumar.html @@ -133,7 +133,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/aravindan-premkumar.json b/docs/aravindan-premkumar.json index bce38cdc5b..746a8bcc9a 100644 --- a/docs/aravindan-premkumar.json +++ b/docs/aravindan-premkumar.json @@ -1 +1,11 @@ -{"key": "aravindan-premkumar", "short_name": "Aravindan Premkumar Licenase", "name": "Aravindan Premkumar Licenase", "category": "Permissive", "owner": "Aravindan Premkumar", "spdx_license_key": "LicenseRef-scancode-aravindan-premkumar", "other_urls": ["http://www.codeproject.com/script/Content/ViewAssociatedFile.aspx?rzp=%2FKB%2Flist%2FCustomizedReportListCtrl%2F%2Fcustomizedreportlistctrl_src.zip&zep=ListCtrl%2FInPlaceEdit.cpp&obid=5709&obtid=2&ovid=2"]} \ No newline at end of file +{ + "key": "aravindan-premkumar", + "short_name": "Aravindan Premkumar Licenase", + "name": "Aravindan Premkumar Licenase", + "category": "Permissive", + "owner": "Aravindan Premkumar", + "spdx_license_key": "LicenseRef-scancode-aravindan-premkumar", + "other_urls": [ + "http://www.codeproject.com/script/Content/ViewAssociatedFile.aspx?rzp=%2FKB%2Flist%2FCustomizedReportListCtrl%2F%2Fcustomizedreportlistctrl_src.zip&zep=ListCtrl%2FInPlaceEdit.cpp&obid=5709&obtid=2&ovid=2" + ] +} \ No newline at end of file diff --git a/docs/argouml.LICENSE b/docs/argouml.LICENSE index a7e2b8a72e..7ceb126244 100644 --- a/docs/argouml.LICENSE +++ b/docs/argouml.LICENSE @@ -1,3 +1,18 @@ +--- +key: argouml +short_name: ArgoUML License +name: ArgoUML License +category: Permissive +owner: Tigris Project +spdx_license_key: LicenseRef-scancode-argouml +other_urls: + - http://argouml-downloads.tigris.org/nonav/argouml-0.24/ArgoUML-0.24-src.tar.gz +ignorable_copyrights: + - copyrighted by The Regents of the University of California +ignorable_holders: + - The Regents of the University of California +--- + Permission to use, copy, modify, and distribute this software and its documentation without fee, and without a written agreement is hereby granted, provided that the above copyright notice and this paragraph diff --git a/docs/argouml.html b/docs/argouml.html index ae9ddf77e0..d7ad48bc79 100644 --- a/docs/argouml.html +++ b/docs/argouml.html @@ -172,7 +172,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/argouml.json b/docs/argouml.json index e90d56ecd0..35e1f11f66 100644 --- a/docs/argouml.json +++ b/docs/argouml.json @@ -1 +1,17 @@ -{"key": "argouml", "short_name": "ArgoUML License", "name": "ArgoUML License", "category": "Permissive", "owner": "Tigris Project", "spdx_license_key": "LicenseRef-scancode-argouml", "other_urls": ["http://argouml-downloads.tigris.org/nonav/argouml-0.24/ArgoUML-0.24-src.tar.gz"], "ignorable_copyrights": ["copyrighted by The Regents of the University of California"], "ignorable_holders": ["The Regents of the University of California"]} \ No newline at end of file +{ + "key": "argouml", + "short_name": "ArgoUML License", + "name": "ArgoUML License", + "category": "Permissive", + "owner": "Tigris Project", + "spdx_license_key": "LicenseRef-scancode-argouml", + "other_urls": [ + "http://argouml-downloads.tigris.org/nonav/argouml-0.24/ArgoUML-0.24-src.tar.gz" + ], + "ignorable_copyrights": [ + "copyrighted by The Regents of the University of California" + ], + "ignorable_holders": [ + "The Regents of the University of California" + ] +} \ No newline at end of file diff --git a/docs/arm-cortex-mx.LICENSE b/docs/arm-cortex-mx.LICENSE index 441cffba9c..6dd172110a 100644 --- a/docs/arm-cortex-mx.LICENSE +++ b/docs/arm-cortex-mx.LICENSE @@ -1,3 +1,14 @@ +--- +key: arm-cortex-mx +short_name: ARM Cortex-Mx Proprietary +name: ARM Cortex-Mx Proprietary +category: Proprietary Free +owner: ARM +spdx_license_key: LicenseRef-scancode-arm-cortex-mx +text_urls: + - https://github.com/bitcraze/crazyflie-bootloader/blob/master/stlib/CMSIS/Core/CM3/core_cm3.c +--- + ARM Limited (ARM) is supplying this software for use with Cortex-Mx processor based microcontrollers. This file can be freely distributed within development tools that are supporting such ARM based processors. diff --git a/docs/arm-cortex-mx.html b/docs/arm-cortex-mx.html index 97c03a252d..3e3b1b455a 100644 --- a/docs/arm-cortex-mx.html +++ b/docs/arm-cortex-mx.html @@ -137,7 +137,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/arm-cortex-mx.json b/docs/arm-cortex-mx.json index d75429f34c..1d266923da 100644 --- a/docs/arm-cortex-mx.json +++ b/docs/arm-cortex-mx.json @@ -1 +1,11 @@ -{"key": "arm-cortex-mx", "short_name": "ARM Cortex-Mx Proprietary", "name": "ARM Cortex-Mx Proprietary", "category": "Proprietary Free", "owner": "ARM", "spdx_license_key": "LicenseRef-scancode-arm-cortex-mx", "text_urls": ["https://github.com/bitcraze/crazyflie-bootloader/blob/master/stlib/CMSIS/Core/CM3/core_cm3.c"]} \ No newline at end of file +{ + "key": "arm-cortex-mx", + "short_name": "ARM Cortex-Mx Proprietary", + "name": "ARM Cortex-Mx Proprietary", + "category": "Proprietary Free", + "owner": "ARM", + "spdx_license_key": "LicenseRef-scancode-arm-cortex-mx", + "text_urls": [ + "https://github.com/bitcraze/crazyflie-bootloader/blob/master/stlib/CMSIS/Core/CM3/core_cm3.c" + ] +} \ No newline at end of file diff --git a/docs/arm-llvm-sga.LICENSE b/docs/arm-llvm-sga.LICENSE index 68afea12ed..f72a5cfcde 100644 --- a/docs/arm-llvm-sga.LICENSE +++ b/docs/arm-llvm-sga.LICENSE @@ -1,3 +1,15 @@ +--- +key: arm-llvm-sga +short_name: ARM LLVM Grant +name: ARM LLVM Software Grant License Agreement +category: Permissive +owner: ARM +spdx_license_key: LicenseRef-scancode-arm-llvm-sga +minimum_coverage: 80 +ignorable_urls: + - http://llvm.org/ +--- + ARM Limited Software Grant License Agreement ("Agreement") @@ -44,4 +56,4 @@ Unless required by applicable law or agreed to in writing, the software is provided 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. +PARTICULAR PURPOSE. \ No newline at end of file diff --git a/docs/arm-llvm-sga.html b/docs/arm-llvm-sga.html index b7f2fd34d1..70ec109a5c 100644 --- a/docs/arm-llvm-sga.html +++ b/docs/arm-llvm-sga.html @@ -170,8 +170,7 @@ provided 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. - +PARTICULAR PURPOSE.
@@ -183,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/arm-llvm-sga.json b/docs/arm-llvm-sga.json index 42c31245be..762d7304c1 100644 --- a/docs/arm-llvm-sga.json +++ b/docs/arm-llvm-sga.json @@ -1 +1,12 @@ -{"key": "arm-llvm-sga", "short_name": "ARM LLVM Grant", "name": "ARM LLVM Software Grant License Agreement", "category": "Permissive", "owner": "ARM", "spdx_license_key": "LicenseRef-scancode-arm-llvm-sga", "minimum_coverage": 80, "ignorable_urls": ["http://llvm.org/"]} \ No newline at end of file +{ + "key": "arm-llvm-sga", + "short_name": "ARM LLVM Grant", + "name": "ARM LLVM Software Grant License Agreement", + "category": "Permissive", + "owner": "ARM", + "spdx_license_key": "LicenseRef-scancode-arm-llvm-sga", + "minimum_coverage": 80, + "ignorable_urls": [ + "http://llvm.org/" + ] +} \ No newline at end of file diff --git a/docs/arphic-public.LICENSE b/docs/arphic-public.LICENSE index 6af0cab39b..2f55ef5033 100644 --- a/docs/arphic-public.LICENSE +++ b/docs/arphic-public.LICENSE @@ -1,3 +1,22 @@ +--- +key: arphic-public +short_name: Arphic Public License +name: Arphic Public License +category: Copyleft +owner: Arphic Technology +homepage_url: http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE +spdx_license_key: Arphic-1999 +other_spdx_license_keys: + - LicenseRef-scancode-arphic-public +text_urls: + - http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE +ignorable_copyrights: + - Copyright (c) 1999 Arphic Technology Co., Ltd. 11Fl. No.168, Yung Chi Rd., Taipei, 110 + Taiwan +ignorable_holders: + - Arphic Technology Co., Ltd. 11Fl. No.168, Yung Chi Rd., Taipei, 110 Taiwan +--- + ARPHIC PUBLIC LICENSE Copyright (C) 1999 Arphic Technology Co., Ltd. @@ -134,4 +153,4 @@ Legal Terms INCIDENTAL, SPECIAL OR EXEMPLARY DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE FONT (INCLUDING BUT NOT LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA OR PROFITS; OR BUSINESS INTERRUPTION), EVEN IF SUCH - HOLDERS OR OTHER PARTIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + HOLDERS OR OTHER PARTIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/docs/arphic-public.html b/docs/arphic-public.html index e9ab6b5213..4d057a0a63 100644 --- a/docs/arphic-public.html +++ b/docs/arphic-public.html @@ -287,8 +287,7 @@ INCIDENTAL, SPECIAL OR EXEMPLARY DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE FONT (INCLUDING BUT NOT LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA OR PROFITS; OR BUSINESS INTERRUPTION), EVEN IF SUCH - HOLDERS OR OTHER PARTIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - + HOLDERS OR OTHER PARTIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
@@ -300,7 +299,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/arphic-public.json b/docs/arphic-public.json index c642685d24..4780ec42e2 100644 --- a/docs/arphic-public.json +++ b/docs/arphic-public.json @@ -1 +1,21 @@ -{"key": "arphic-public", "short_name": "Arphic Public License", "name": "Arphic Public License", "category": "Copyleft", "owner": "Arphic Technology", "homepage_url": "http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE", "spdx_license_key": "Arphic-1999", "other_spdx_license_keys": ["LicenseRef-scancode-arphic-public"], "text_urls": ["http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE"], "ignorable_copyrights": ["Copyright (c) 1999 Arphic Technology Co., Ltd. 11Fl. No.168, Yung Chi Rd., Taipei, 110 Taiwan"], "ignorable_holders": ["Arphic Technology Co., Ltd. 11Fl. No.168, Yung Chi Rd., Taipei, 110 Taiwan"]} \ No newline at end of file +{ + "key": "arphic-public", + "short_name": "Arphic Public License", + "name": "Arphic Public License", + "category": "Copyleft", + "owner": "Arphic Technology", + "homepage_url": "http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE", + "spdx_license_key": "Arphic-1999", + "other_spdx_license_keys": [ + "LicenseRef-scancode-arphic-public" + ], + "text_urls": [ + "http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE" + ], + "ignorable_copyrights": [ + "Copyright (c) 1999 Arphic Technology Co., Ltd. 11Fl. No.168, Yung Chi Rd., Taipei, 110 Taiwan" + ], + "ignorable_holders": [ + "Arphic Technology Co., Ltd. 11Fl. No.168, Yung Chi Rd., Taipei, 110 Taiwan" + ] +} \ No newline at end of file diff --git a/docs/array-input-method-pl.LICENSE b/docs/array-input-method-pl.LICENSE index 09e19c716e..172297bdf9 100644 --- a/docs/array-input-method-pl.LICENSE +++ b/docs/array-input-method-pl.LICENSE @@ -1,3 +1,20 @@ +--- +key: array-input-method-pl +short_name: Array Input Method Public License +name: Array Input Method Public License +category: Permissive +owner: Ming-Te Liao +homepage_url: https://fedoraproject.org/wiki/Licensing/Array +spdx_license_key: LicenseRef-scancode-array-input-method-pl +faq_url: https://fedoraproject.org/wiki/Licensing/Array#License_Notes +ignorable_copyrights: + - copyright holder of Array Input Method +ignorable_holders: + - Array Input Method +ignorable_authors: + - Array Input +--- + Array Input Method Public License 1. OBJECTS diff --git a/docs/array-input-method-pl.html b/docs/array-input-method-pl.html index 4ce25f0e2c..cd0f8ae073 100644 --- a/docs/array-input-method-pl.html +++ b/docs/array-input-method-pl.html @@ -226,7 +226,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/array-input-method-pl.json b/docs/array-input-method-pl.json index 7351f9e6b6..4e6d3f767e 100644 --- a/docs/array-input-method-pl.json +++ b/docs/array-input-method-pl.json @@ -1 +1,19 @@ -{"key": "array-input-method-pl", "short_name": "Array Input Method Public License", "name": "Array Input Method Public License", "category": "Permissive", "owner": "Ming-Te Liao", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Array", "spdx_license_key": "LicenseRef-scancode-array-input-method-pl", "faq_url": "https://fedoraproject.org/wiki/Licensing/Array#License_Notes", "ignorable_copyrights": ["copyright holder of Array Input Method"], "ignorable_holders": ["Array Input Method"], "ignorable_authors": ["Array Input"]} \ No newline at end of file +{ + "key": "array-input-method-pl", + "short_name": "Array Input Method Public License", + "name": "Array Input Method Public License", + "category": "Permissive", + "owner": "Ming-Te Liao", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Array", + "spdx_license_key": "LicenseRef-scancode-array-input-method-pl", + "faq_url": "https://fedoraproject.org/wiki/Licensing/Array#License_Notes", + "ignorable_copyrights": [ + "copyright holder of Array Input Method" + ], + "ignorable_holders": [ + "Array Input Method" + ], + "ignorable_authors": [ + "Array Input" + ] +} \ No newline at end of file diff --git a/docs/artistic-1.0-cl8.LICENSE b/docs/artistic-1.0-cl8.LICENSE index f0259678ee..fd830de829 100644 --- a/docs/artistic-1.0-cl8.LICENSE +++ b/docs/artistic-1.0-cl8.LICENSE @@ -1,3 +1,24 @@ +--- +key: artistic-1.0-cl8 +short_name: Artistic 1.0 w/clause 8 +name: Artistic License 1.0 w/clause 8 +category: Copyleft Limited +owner: OSI - Open Source Initiative +homepage_url: http://spdx.org/licenses/Artistic-1.0-cl8 +notes: | + Per SPDX.org, this license was superseded by v2.0 This is Artistic License + 1.0 as found on OSI site, including clause 8. +spdx_license_key: Artistic-1.0-cl8 +text_urls: + - http://spdx.org/licenses/Artistic-1.0-cl8 +osi_url: http://opensource.org/licenses/Artistic-1.0 +other_urls: + - http://www.gnu.org/licenses/license-list.html#ArtisticLicense + - https://opensource.org/licenses/Artistic-1.0 +ignorable_urls: + - http://ftp.uu.net/ +--- + Preamble The intent of this document is to state the conditions under which a Package may diff --git a/docs/artistic-1.0-cl8.html b/docs/artistic-1.0-cl8.html index 2c11dbb26c..d216cdb455 100644 --- a/docs/artistic-1.0-cl8.html +++ b/docs/artistic-1.0-cl8.html @@ -272,7 +272,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/artistic-1.0-cl8.json b/docs/artistic-1.0-cl8.json index c7ee8f85b3..62f040bce1 100644 --- a/docs/artistic-1.0-cl8.json +++ b/docs/artistic-1.0-cl8.json @@ -1 +1,21 @@ -{"key": "artistic-1.0-cl8", "short_name": "Artistic 1.0 w/clause 8", "name": "Artistic License 1.0 w/clause 8", "category": "Copyleft Limited", "owner": "OSI - Open Source Initiative", "homepage_url": "http://spdx.org/licenses/Artistic-1.0-cl8", "notes": "Per SPDX.org, this license was superseded by v2.0 This is Artistic License\n1.0 as found on OSI site, including clause 8.\n", "spdx_license_key": "Artistic-1.0-cl8", "text_urls": ["http://spdx.org/licenses/Artistic-1.0-cl8"], "osi_url": "http://opensource.org/licenses/Artistic-1.0", "other_urls": ["http://www.gnu.org/licenses/license-list.html#ArtisticLicense", "https://opensource.org/licenses/Artistic-1.0"], "ignorable_urls": ["http://ftp.uu.net/"]} \ No newline at end of file +{ + "key": "artistic-1.0-cl8", + "short_name": "Artistic 1.0 w/clause 8", + "name": "Artistic License 1.0 w/clause 8", + "category": "Copyleft Limited", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://spdx.org/licenses/Artistic-1.0-cl8", + "notes": "Per SPDX.org, this license was superseded by v2.0 This is Artistic License\n1.0 as found on OSI site, including clause 8.\n", + "spdx_license_key": "Artistic-1.0-cl8", + "text_urls": [ + "http://spdx.org/licenses/Artistic-1.0-cl8" + ], + "osi_url": "http://opensource.org/licenses/Artistic-1.0", + "other_urls": [ + "http://www.gnu.org/licenses/license-list.html#ArtisticLicense", + "https://opensource.org/licenses/Artistic-1.0" + ], + "ignorable_urls": [ + "http://ftp.uu.net/" + ] +} \ No newline at end of file diff --git a/docs/artistic-1.0.LICENSE b/docs/artistic-1.0.LICENSE index bde95275e0..802e186f98 100644 --- a/docs/artistic-1.0.LICENSE +++ b/docs/artistic-1.0.LICENSE @@ -1,3 +1,25 @@ +--- +key: artistic-1.0 +short_name: Artistic 1.0 +name: Artistic License 1.0 +category: Copyleft Limited +owner: Perl Foundation +homepage_url: http://www.perlfoundation.org/ +notes: Per SPDX.org, this license was superseded by v2.0 +spdx_license_key: Artistic-1.0 +osi_license_key: Artistic-1.0 +text_urls: + - http://opensource.org/licenses/artistic-license-1.0 +osi_url: http://opensource.org/licenses/artistic-license-1.0 +other_urls: + - http://opensource.org/licenses/Artistic-1.0 + - http://www.gnu.org/licenses/license-list.html#ArtisticLicense + - http://www.perlfoundation.org/artistic_license_1_0 + - https://opensource.org/licenses/Artistic-1.0 +ignorable_urls: + - http://ftp.uu.net/ +--- + Preamble The intent of this document is to state the conditions under which a Package may diff --git a/docs/artistic-1.0.html b/docs/artistic-1.0.html index 2a92e8db73..78e2d77465 100644 --- a/docs/artistic-1.0.html +++ b/docs/artistic-1.0.html @@ -271,7 +271,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/artistic-1.0.json b/docs/artistic-1.0.json index 8f096a8f42..074146bf51 100644 --- a/docs/artistic-1.0.json +++ b/docs/artistic-1.0.json @@ -1 +1,24 @@ -{"key": "artistic-1.0", "short_name": "Artistic 1.0", "name": "Artistic License 1.0", "category": "Copyleft Limited", "owner": "Perl Foundation", "homepage_url": "http://www.perlfoundation.org/", "notes": "Per SPDX.org, this license was superseded by v2.0", "spdx_license_key": "Artistic-1.0", "osi_license_key": "Artistic-1.0", "text_urls": ["http://opensource.org/licenses/artistic-license-1.0"], "osi_url": "http://opensource.org/licenses/artistic-license-1.0", "other_urls": ["http://opensource.org/licenses/Artistic-1.0", "http://www.gnu.org/licenses/license-list.html#ArtisticLicense", "http://www.perlfoundation.org/artistic_license_1_0", "https://opensource.org/licenses/Artistic-1.0"], "ignorable_urls": ["http://ftp.uu.net/"]} \ No newline at end of file +{ + "key": "artistic-1.0", + "short_name": "Artistic 1.0", + "name": "Artistic License 1.0", + "category": "Copyleft Limited", + "owner": "Perl Foundation", + "homepage_url": "http://www.perlfoundation.org/", + "notes": "Per SPDX.org, this license was superseded by v2.0", + "spdx_license_key": "Artistic-1.0", + "osi_license_key": "Artistic-1.0", + "text_urls": [ + "http://opensource.org/licenses/artistic-license-1.0" + ], + "osi_url": "http://opensource.org/licenses/artistic-license-1.0", + "other_urls": [ + "http://opensource.org/licenses/Artistic-1.0", + "http://www.gnu.org/licenses/license-list.html#ArtisticLicense", + "http://www.perlfoundation.org/artistic_license_1_0", + "https://opensource.org/licenses/Artistic-1.0" + ], + "ignorable_urls": [ + "http://ftp.uu.net/" + ] +} \ No newline at end of file diff --git a/docs/artistic-2.0.LICENSE b/docs/artistic-2.0.LICENSE index 9954602ae9..5a3b3906d9 100644 --- a/docs/artistic-2.0.LICENSE +++ b/docs/artistic-2.0.LICENSE @@ -1,3 +1,33 @@ +--- +key: artistic-2.0 +short_name: Artistic 2.0 +name: Artistic License 2.0 +category: Copyleft Limited +owner: Perl Foundation +homepage_url: http://www.perlfoundation.org/ +notes: | + Per SPDX.org, this version was released 2006 This license is OSI + certifified. +spdx_license_key: Artistic-2.0 +osi_license_key: Artistic-2.0 +text_urls: + - https://www.perlfoundation.org/artistic_license_2_0 + - https://www.perlfoundation.org/attachment/legal/artistic-2_0.txt +osi_url: https://www.opensource.org/licenses/artistic-license-2.0.php +faq_url: https://www.perlfoundation.org/artistic-2-0-notes +other_urls: + - http://www.perlfoundation.org/artistic_license_2_0 + - https://opensource.org/licenses/artistic-license-2.0 + - https://www.opensource.org/licenses/artistic-license-2.0 + - https://www.perlfoundation.org/artistic-license-20.html +ignorable_copyrights: + - Copyright (c) 2000-2006, The Perl Foundation +ignorable_holders: + - The Perl Foundation +ignorable_authors: + - The Perl Foundation +--- + The Artistic License 2.0 Copyright (c) 2000-2006, The Perl Foundation. @@ -198,4 +228,4 @@ NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF -ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/artistic-2.0.html b/docs/artistic-2.0.html index 7adadf1597..b10c76dce2 100644 --- a/docs/artistic-2.0.html +++ b/docs/artistic-2.0.html @@ -390,8 +390,7 @@ LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF -ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -403,7 +402,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/artistic-2.0.json b/docs/artistic-2.0.json index e244f65df7..b6a5231e08 100644 --- a/docs/artistic-2.0.json +++ b/docs/artistic-2.0.json @@ -1 +1,32 @@ -{"key": "artistic-2.0", "short_name": "Artistic 2.0", "name": "Artistic License 2.0", "category": "Copyleft Limited", "owner": "Perl Foundation", "homepage_url": "http://www.perlfoundation.org/", "notes": "Per SPDX.org, this version was released 2006 This license is OSI\ncertifified.\n", "spdx_license_key": "Artistic-2.0", "osi_license_key": "Artistic-2.0", "text_urls": ["https://www.perlfoundation.org/artistic_license_2_0", "https://www.perlfoundation.org/attachment/legal/artistic-2_0.txt"], "osi_url": "https://www.opensource.org/licenses/artistic-license-2.0.php", "faq_url": "https://www.perlfoundation.org/artistic-2-0-notes", "other_urls": ["http://www.perlfoundation.org/artistic_license_2_0", "https://opensource.org/licenses/artistic-license-2.0", "https://www.opensource.org/licenses/artistic-license-2.0", "https://www.perlfoundation.org/artistic-license-20.html"], "ignorable_copyrights": ["Copyright (c) 2000-2006, The Perl Foundation"], "ignorable_holders": ["The Perl Foundation"], "ignorable_authors": ["The Perl Foundation"]} \ No newline at end of file +{ + "key": "artistic-2.0", + "short_name": "Artistic 2.0", + "name": "Artistic License 2.0", + "category": "Copyleft Limited", + "owner": "Perl Foundation", + "homepage_url": "http://www.perlfoundation.org/", + "notes": "Per SPDX.org, this version was released 2006 This license is OSI\ncertifified.\n", + "spdx_license_key": "Artistic-2.0", + "osi_license_key": "Artistic-2.0", + "text_urls": [ + "https://www.perlfoundation.org/artistic_license_2_0", + "https://www.perlfoundation.org/attachment/legal/artistic-2_0.txt" + ], + "osi_url": "https://www.opensource.org/licenses/artistic-license-2.0.php", + "faq_url": "https://www.perlfoundation.org/artistic-2-0-notes", + "other_urls": [ + "http://www.perlfoundation.org/artistic_license_2_0", + "https://opensource.org/licenses/artistic-license-2.0", + "https://www.opensource.org/licenses/artistic-license-2.0", + "https://www.perlfoundation.org/artistic-license-20.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 2000-2006, The Perl Foundation" + ], + "ignorable_holders": [ + "The Perl Foundation" + ], + "ignorable_authors": [ + "The Perl Foundation" + ] +} \ No newline at end of file diff --git a/docs/artistic-clarified.LICENSE b/docs/artistic-clarified.LICENSE index 3241e246f8..80e9c21fb1 100644 --- a/docs/artistic-clarified.LICENSE +++ b/docs/artistic-clarified.LICENSE @@ -1,3 +1,17 @@ +--- +key: artistic-clarified +short_name: Clarified Artistic License +name: Clarified Artistic License +category: Copyleft Limited +owner: Fedora +homepage_url: https://fedoraproject.org/wiki/Licensing/ArtisticClarified +spdx_license_key: ClArtistic +text_urls: + - http://www.ncftp.com/ncftp/doc/LICENSE.txt +other_urls: + - http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/ +--- + The Clarified Artistic License Preamble @@ -133,4 +147,4 @@ products derived from this software without specific prior written permission. IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - The End + The End \ No newline at end of file diff --git a/docs/artistic-clarified.html b/docs/artistic-clarified.html index 35c2e5b54f..ca87a397e7 100644 --- a/docs/artistic-clarified.html +++ b/docs/artistic-clarified.html @@ -268,8 +268,7 @@ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - The End - + The End
@@ -281,7 +280,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/artistic-clarified.json b/docs/artistic-clarified.json index 2a6e14cafe..77fbb30168 100644 --- a/docs/artistic-clarified.json +++ b/docs/artistic-clarified.json @@ -1 +1,15 @@ -{"key": "artistic-clarified", "short_name": "Clarified Artistic License", "name": "Clarified Artistic License", "category": "Copyleft Limited", "owner": "Fedora", "homepage_url": "https://fedoraproject.org/wiki/Licensing/ArtisticClarified", "spdx_license_key": "ClArtistic", "text_urls": ["http://www.ncftp.com/ncftp/doc/LICENSE.txt"], "other_urls": ["http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/"]} \ No newline at end of file +{ + "key": "artistic-clarified", + "short_name": "Clarified Artistic License", + "name": "Clarified Artistic License", + "category": "Copyleft Limited", + "owner": "Fedora", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/ArtisticClarified", + "spdx_license_key": "ClArtistic", + "text_urls": [ + "http://www.ncftp.com/ncftp/doc/LICENSE.txt" + ], + "other_urls": [ + "http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/" + ] +} \ No newline at end of file diff --git a/docs/artistic-dist-1.0.LICENSE b/docs/artistic-dist-1.0.LICENSE index a05f9e8ad5..b87411044d 100644 --- a/docs/artistic-dist-1.0.LICENSE +++ b/docs/artistic-dist-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: artistic-dist-1.0 +short_name: Artistic dist 1.0 +name: Artistic License for dist 1.0 +category: Copyleft Limited +owner: Perl Foundation +homepage_url: http://www.perlfoundation.org/ +notes: "This is a variant Artistic license still used in today's Perl and that \ncomes with\ + \ the \"dist\" tool included in the standard Perl distrbution.\nSee also https://github.com/pexip/os-perl/blob/d7a993d1118c65177c97ae41577b188653845a8a/regen-configure/U/README#L158\n" +spdx_license_key: LicenseRef-scancode-artistic-1988-1.0 +text_urls: + - https://raw.githubusercontent.com/rmanfredi/dist/2cec35331a912b165e2dd135d22de81f34bbc83f/Artistic +other_urls: + - https://github.com/pexip/os-perl/blob/d7a993d1118c65177c97ae41577b188653845a8a/regen-configure/U/README#L158 +--- + The "Artistic License" Preamble @@ -122,4 +138,4 @@ products derived from this software without specific prior written permission. IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - The End + The End \ No newline at end of file diff --git a/docs/artistic-dist-1.0.html b/docs/artistic-dist-1.0.html index e05a254a01..d6849cf921 100644 --- a/docs/artistic-dist-1.0.html +++ b/docs/artistic-dist-1.0.html @@ -267,8 +267,7 @@ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - The End - + The End
@@ -280,7 +279,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/artistic-dist-1.0.json b/docs/artistic-dist-1.0.json index df8e88685c..853826fad9 100644 --- a/docs/artistic-dist-1.0.json +++ b/docs/artistic-dist-1.0.json @@ -1 +1,16 @@ -{"key": "artistic-dist-1.0", "short_name": "Artistic dist 1.0", "name": "Artistic License for dist 1.0", "category": "Copyleft Limited", "owner": "Perl Foundation", "homepage_url": "http://www.perlfoundation.org/", "notes": "This is a variant Artistic license still used in today's Perl and that \ncomes with the \"dist\" tool included in the standard Perl distrbution.\nSee also https://github.com/pexip/os-perl/blob/d7a993d1118c65177c97ae41577b188653845a8a/regen-configure/U/README#L158\n", "spdx_license_key": "LicenseRef-scancode-artistic-1988-1.0", "text_urls": ["https://raw.githubusercontent.com/rmanfredi/dist/2cec35331a912b165e2dd135d22de81f34bbc83f/Artistic"], "other_urls": ["https://github.com/pexip/os-perl/blob/d7a993d1118c65177c97ae41577b188653845a8a/regen-configure/U/README#L158"]} \ No newline at end of file +{ + "key": "artistic-dist-1.0", + "short_name": "Artistic dist 1.0", + "name": "Artistic License for dist 1.0", + "category": "Copyleft Limited", + "owner": "Perl Foundation", + "homepage_url": "http://www.perlfoundation.org/", + "notes": "This is a variant Artistic license still used in today's Perl and that \ncomes with the \"dist\" tool included in the standard Perl distrbution.\nSee also https://github.com/pexip/os-perl/blob/d7a993d1118c65177c97ae41577b188653845a8a/regen-configure/U/README#L158\n", + "spdx_license_key": "LicenseRef-scancode-artistic-1988-1.0", + "text_urls": [ + "https://raw.githubusercontent.com/rmanfredi/dist/2cec35331a912b165e2dd135d22de81f34bbc83f/Artistic" + ], + "other_urls": [ + "https://github.com/pexip/os-perl/blob/d7a993d1118c65177c97ae41577b188653845a8a/regen-configure/U/README#L158" + ] +} \ No newline at end of file diff --git a/docs/artistic-perl-1.0.LICENSE b/docs/artistic-perl-1.0.LICENSE index 33490d8c87..b422e7cf65 100644 --- a/docs/artistic-perl-1.0.LICENSE +++ b/docs/artistic-perl-1.0.LICENSE @@ -1,4 +1,18 @@ - +--- +key: artistic-perl-1.0 +short_name: Artistic-Perl-1.0 +name: Artistic License (Perl) 1.0 +category: Copyleft Limited +owner: Perl Foundation +homepage_url: http://dev.perl.org/licenses/artistic.html +notes: | + Per SPDX.org, this is the Artistic License 1.0 found on the Perl site, + which is different (particularly, clauses 5, 6, 7 and 8) than the Artistic + License 1.0 w/clause 8 found on the OSI site. +spdx_license_key: Artistic-1.0-Perl +text_urls: + - http://dev.perl.org/licenses/artistic.html +--- The "Artistic License" diff --git a/docs/artistic-perl-1.0.html b/docs/artistic-perl-1.0.html index 4287867b14..e897e799e7 100644 --- a/docs/artistic-perl-1.0.html +++ b/docs/artistic-perl-1.0.html @@ -134,9 +134,7 @@
license_text
-

-
-             The "Artistic License"
+    
             The "Artistic License"
 
                 Preamble
 
@@ -274,7 +272,8 @@
       AboutCode
     

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/artistic-perl-1.0.json b/docs/artistic-perl-1.0.json index d298821e66..852efda243 100644 --- a/docs/artistic-perl-1.0.json +++ b/docs/artistic-perl-1.0.json @@ -1 +1,13 @@ -{"key": "artistic-perl-1.0", "short_name": "Artistic-Perl-1.0", "name": "Artistic License (Perl) 1.0", "category": "Copyleft Limited", "owner": "Perl Foundation", "homepage_url": "http://dev.perl.org/licenses/artistic.html", "notes": "Per SPDX.org, this is the Artistic License 1.0 found on the Perl site,\nwhich is different (particularly, clauses 5, 6, 7 and 8) than the Artistic\nLicense 1.0 w/clause 8 found on the OSI site.\n", "spdx_license_key": "Artistic-1.0-Perl", "text_urls": ["http://dev.perl.org/licenses/artistic.html"]} \ No newline at end of file +{ + "key": "artistic-perl-1.0", + "short_name": "Artistic-Perl-1.0", + "name": "Artistic License (Perl) 1.0", + "category": "Copyleft Limited", + "owner": "Perl Foundation", + "homepage_url": "http://dev.perl.org/licenses/artistic.html", + "notes": "Per SPDX.org, this is the Artistic License 1.0 found on the Perl site,\nwhich is different (particularly, clauses 5, 6, 7 and 8) than the Artistic\nLicense 1.0 w/clause 8 found on the OSI site.\n", + "spdx_license_key": "Artistic-1.0-Perl", + "text_urls": [ + "http://dev.perl.org/licenses/artistic.html" + ] +} \ No newline at end of file diff --git a/docs/aslp.LICENSE b/docs/aslp.LICENSE index 70b1c7fb6c..aa8783a916 100644 --- a/docs/aslp.LICENSE +++ b/docs/aslp.LICENSE @@ -1,3 +1,13 @@ +--- +key: aslp +short_name: Artop ASLP +name: Artop Software License for Preparatory Development +category: Free Restricted +owner: Artop +homepage_url: http://www.artop.org/aslp.html +spdx_license_key: LicenseRef-scancode-aslp +--- + Artop Software License for Preparatory Development (ASLP) THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ARTOP SOFTWARE LICENSE FOR PREPARATORY DEVELOPMENT (ASLP) ("LICENSE"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. diff --git a/docs/aslp.html b/docs/aslp.html index 9374607b2f..79af3c65d2 100644 --- a/docs/aslp.html +++ b/docs/aslp.html @@ -244,7 +244,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/aslp.json b/docs/aslp.json index 4efbd75389..7d70be67a0 100644 --- a/docs/aslp.json +++ b/docs/aslp.json @@ -1 +1,9 @@ -{"key": "aslp", "short_name": "Artop ASLP", "name": "Artop Software License for Preparatory Development", "category": "Free Restricted", "owner": "Artop", "homepage_url": "http://www.artop.org/aslp.html", "spdx_license_key": "LicenseRef-scancode-aslp"} \ No newline at end of file +{ + "key": "aslp", + "short_name": "Artop ASLP", + "name": "Artop Software License for Preparatory Development", + "category": "Free Restricted", + "owner": "Artop", + "homepage_url": "http://www.artop.org/aslp.html", + "spdx_license_key": "LicenseRef-scancode-aslp" +} \ No newline at end of file diff --git a/docs/aslr.LICENSE b/docs/aslr.LICENSE index ef3ef5b47e..ff099ea668 100644 --- a/docs/aslr.LICENSE +++ b/docs/aslr.LICENSE @@ -1,3 +1,13 @@ +--- +key: aslr +short_name: Artop ASLR +name: Artop Software License Based on AUTOSAR Released Material +category: Copyleft +owner: Artop +homepage_url: http://www.artop.org/aslr.html +spdx_license_key: LicenseRef-scancode-aslr +--- + Artop Software License Based on AUTOSAR Released Material (ASLR) THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ARTOP SOFTWARE LICENSE BASED ON AUTOSAR RELEASED MATERIAL (ASLR) ("LICENSE"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. diff --git a/docs/aslr.html b/docs/aslr.html index 218585587b..b0f91d7d6d 100644 --- a/docs/aslr.html +++ b/docs/aslr.html @@ -245,7 +245,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/aslr.json b/docs/aslr.json index f51fffb1eb..3a5cc1c2d9 100644 --- a/docs/aslr.json +++ b/docs/aslr.json @@ -1 +1,9 @@ -{"key": "aslr", "short_name": "Artop ASLR", "name": "Artop Software License Based on AUTOSAR Released Material", "category": "Copyleft", "owner": "Artop", "homepage_url": "http://www.artop.org/aslr.html", "spdx_license_key": "LicenseRef-scancode-aslr"} \ No newline at end of file +{ + "key": "aslr", + "short_name": "Artop ASLR", + "name": "Artop Software License Based on AUTOSAR Released Material", + "category": "Copyleft", + "owner": "Artop", + "homepage_url": "http://www.artop.org/aslr.html", + "spdx_license_key": "LicenseRef-scancode-aslr" +} \ No newline at end of file diff --git a/docs/asmus.LICENSE b/docs/asmus.LICENSE index 406215e006..0fa9b420ac 100644 --- a/docs/asmus.LICENSE +++ b/docs/asmus.LICENSE @@ -1,3 +1,14 @@ +--- +key: asmus +short_name: ASMUS License +name: ASMUS License +category: Permissive +owner: ASMUS, Inc. +spdx_license_key: LicenseRef-scancode-asmus +other_urls: + - http://home.ix.netcom.com/~asmus-inc/index.html +--- + ASMUS License Disclaimer and legal rights @@ -8,4 +19,4 @@ This file contains bugs. All representations to the contrary are void. Source code in this file and the accompanying headers and included files may be distributed free of charge by anyone, as long as full credit is given and any and all liabilities are assumed by the -recipient. +recipient. \ No newline at end of file diff --git a/docs/asmus.html b/docs/asmus.html index fffd0dcfe9..aeb66ccd1c 100644 --- a/docs/asmus.html +++ b/docs/asmus.html @@ -127,8 +127,7 @@ Source code in this file and the accompanying headers and included files may be distributed free of charge by anyone, as long as full credit is given and any and all liabilities are assumed by the -recipient. -
+recipient.
@@ -140,7 +139,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/asmus.json b/docs/asmus.json index cf28c0aaa0..bf6a8a022a 100644 --- a/docs/asmus.json +++ b/docs/asmus.json @@ -1 +1,11 @@ -{"key": "asmus", "short_name": "ASMUS License", "name": "ASMUS License", "category": "Permissive", "owner": "ASMUS, Inc.", "spdx_license_key": "LicenseRef-scancode-asmus", "other_urls": ["http://home.ix.netcom.com/~asmus-inc/index.html"]} \ No newline at end of file +{ + "key": "asmus", + "short_name": "ASMUS License", + "name": "ASMUS License", + "category": "Permissive", + "owner": "ASMUS, Inc.", + "spdx_license_key": "LicenseRef-scancode-asmus", + "other_urls": [ + "http://home.ix.netcom.com/~asmus-inc/index.html" + ] +} \ No newline at end of file diff --git a/docs/asn1.LICENSE b/docs/asn1.LICENSE index de31e4dd80..9a0e6ca3f8 100644 --- a/docs/asn1.LICENSE +++ b/docs/asn1.LICENSE @@ -1,3 +1,36 @@ +--- +key: asn1 +short_name: ASN.1 Object Dumping Code License +name: ASN.1 Object Dumping Code License +category: Permissive +owner: ASN.1 Project +spdx_license_key: LicenseRef-scancode-asn1 +ignorable_copyrights: + - copyright Peter Gutmann +ignorable_holders: + - Peter Gutmann +ignorable_authors: + - David Kemp +ignorable_urls: + - http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c + - http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.cfg +ignorable_emails: + - Tor.Rustad@bbs.no + - bcouillard@chrysalis-its.com + - chris.ridd@isode.com + - d.boyce@isode.com + - dpkemp@missi.ncsc.mil + - geoff@raas.co.nz + - h.b.furuseth@usit.uio.no + - hamrick@rsa.com + - hans-olof.hermansson@postnet.se + - john.hughes@entegrity.com + - jsweeny@us.ibm.com + - kjetil.barvik@bbs.no + - pgut001@cs.auckland.ac.nz + - ronald@trustpoint.com +--- + ASN.1 Object Dumping Code License ASN.1 object dumping code, copyright Peter Gutmann , based on ASN.1 dump program by David Kemp , with contributions from various people including Matthew Hamrick , Bruno Couillard , Hallvard Furuseth , Geoff Thorpe , David Boyce , John Hughes , Life is hard, and then you die , Hans-Olof Hermansson , Tor Rustad , Kjetil Barvik , James Sweeny , Chris Ridd , and several other people whose names I've misplaced (a number of those email addresses probably no longer work, since this code has been around for awhile). diff --git a/docs/asn1.html b/docs/asn1.html index 994edce2c3..745a4bdc2c 100644 --- a/docs/asn1.html +++ b/docs/asn1.html @@ -179,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/asn1.json b/docs/asn1.json index 5df7d89284..06d37788f6 100644 --- a/docs/asn1.json +++ b/docs/asn1.json @@ -1 +1,37 @@ -{"key": "asn1", "short_name": "ASN.1 Object Dumping Code License", "name": "ASN.1 Object Dumping Code License", "category": "Permissive", "owner": "ASN.1 Project", "spdx_license_key": "LicenseRef-scancode-asn1", "ignorable_copyrights": ["copyright Peter Gutmann "], "ignorable_holders": ["Peter Gutmann"], "ignorable_authors": ["David Kemp "], "ignorable_urls": ["http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c", "http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.cfg"], "ignorable_emails": ["Tor.Rustad@bbs.no", "bcouillard@chrysalis-its.com", "chris.ridd@isode.com", "d.boyce@isode.com", "dpkemp@missi.ncsc.mil", "geoff@raas.co.nz", "h.b.furuseth@usit.uio.no", "hamrick@rsa.com", "hans-olof.hermansson@postnet.se", "john.hughes@entegrity.com", "jsweeny@us.ibm.com", "kjetil.barvik@bbs.no", "pgut001@cs.auckland.ac.nz", "ronald@trustpoint.com"]} \ No newline at end of file +{ + "key": "asn1", + "short_name": "ASN.1 Object Dumping Code License", + "name": "ASN.1 Object Dumping Code License", + "category": "Permissive", + "owner": "ASN.1 Project", + "spdx_license_key": "LicenseRef-scancode-asn1", + "ignorable_copyrights": [ + "copyright Peter Gutmann " + ], + "ignorable_holders": [ + "Peter Gutmann" + ], + "ignorable_authors": [ + "David Kemp " + ], + "ignorable_urls": [ + "http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c", + "http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.cfg" + ], + "ignorable_emails": [ + "Tor.Rustad@bbs.no", + "bcouillard@chrysalis-its.com", + "chris.ridd@isode.com", + "d.boyce@isode.com", + "dpkemp@missi.ncsc.mil", + "geoff@raas.co.nz", + "h.b.furuseth@usit.uio.no", + "hamrick@rsa.com", + "hans-olof.hermansson@postnet.se", + "john.hughes@entegrity.com", + "jsweeny@us.ibm.com", + "kjetil.barvik@bbs.no", + "pgut001@cs.auckland.ac.nz", + "ronald@trustpoint.com" + ] +} \ No newline at end of file diff --git a/docs/aswf-digital-assets-1.0.LICENSE b/docs/aswf-digital-assets-1.0.LICENSE new file mode 100644 index 0000000000..cc0cb5bfc0 --- /dev/null +++ b/docs/aswf-digital-assets-1.0.LICENSE @@ -0,0 +1,28 @@ +--- +key: aswf-digital-assets-1.0 +short_name: ASWF Digital Assets License v1.0 +name: ASWF Digital Assets License v1.0 +category: Free Restricted +owner: Academy Software Foundation +homepage_url: https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/aswf_digital_assets_license_v1.0.txt +spdx_license_key: LicenseRef-scancode-aswf-digital-assets-1.0 +faq_url: https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/README.md +--- + +ASWF Digital Assets License v1.0 + +License for (the “Asset Name”). + + Copyright . All rights reserved. + +Redistribution and use of these digital assets, with or without modification, solely for education, training, research, software and hardware development, performance benchmarking (including publication of benchmark results and permitting reproducibility of the benchmark results by third parties), or software and hardware product demonstrations, are permitted provided that the following conditions are met: + +1. Redistributions of these digital assets or any part of them must include the above copyright notice, this list of conditions and the disclaimer below. + +2. Publications showing images derived from these digital assets must include the above copyright notice. + +3. The names of copyright holder or the names of its contributors may NOT be used to promote or to imply endorsement, sponsorship, or affiliation with products developed or tested utilizing these digital assets or benchmarking results obtained from these digital assets, without prior written permission from copyright holder. + +4. The assets and their output may only be referred to as the Asset Name listed above, and your use of the Asset Name shall be solely to identify the digital assets. Other than as expressly permitted by this License, you may NOT use any trade names, trademarks, service marks, or product names of the copyright holder for any purpose. + +DISCLAIMER: THESE DIGITAL ASSETS ARE PROVIDED BY THE COPYRIGHT HOLDER “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 COPYRIGHT HOLDER 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 THESE DIGITAL ASSETS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/aswf-digital-assets-1.0.html b/docs/aswf-digital-assets-1.0.html new file mode 100644 index 0000000000..d7a31ace86 --- /dev/null +++ b/docs/aswf-digital-assets-1.0.html @@ -0,0 +1,173 @@ + + + + + + LicenseDB: aswf-digital-assets-1.0 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + aswf-digital-assets-1.0 + +
+ +
short_name
+
+ + ASWF Digital Assets License v1.0 + +
+ +
name
+
+ + ASWF Digital Assets License v1.0 + +
+ +
category
+
+ + Free Restricted + +
+ +
owner
+
+ + Academy Software Foundation + +
+ +
homepage_url
+
+ + https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/aswf_digital_assets_license_v1.0.txt + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-aswf-digital-assets-1.0 + +
+ +
faq_url
+
+ + https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/README.md + +
+ +
+
license_text
+
ASWF Digital Assets License v1.0
+
+License for <Asset Name> (the “Asset Name”).
+
+<Asset Name> Copyright <Year> <Asset Owner>. All rights reserved.
+
+Redistribution and use of these digital assets, with or without modification, solely for education, training, research, software and hardware development, performance benchmarking (including publication of benchmark results and permitting reproducibility of the benchmark results by third parties), or software and hardware product demonstrations, are permitted provided that the following conditions are met:
+
+1. Redistributions of these digital assets or any part of them must include the above copyright notice, this list of conditions and the disclaimer below.
+
+2. Publications showing images derived from these digital assets must include the above copyright notice.
+
+3. The names of copyright holder or the names of its contributors may NOT be used to promote or to imply endorsement, sponsorship, or affiliation with products developed or tested utilizing these digital assets or benchmarking results obtained from these digital assets, without prior written permission from copyright holder.
+
+4. The assets and their output may only be referred to as the Asset Name listed above, and your use of the Asset Name shall be solely to identify the digital assets. Other than as expressly permitted by this License, you may NOT use any trade names, trademarks, service marks, or product names of the copyright holder for any purpose.
+
+DISCLAIMER: THESE DIGITAL ASSETS ARE PROVIDED BY THE COPYRIGHT HOLDER “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 COPYRIGHT HOLDER 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 THESE DIGITAL ASSETS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/aswf-digital-assets-1.0.json b/docs/aswf-digital-assets-1.0.json new file mode 100644 index 0000000000..3af4f58610 --- /dev/null +++ b/docs/aswf-digital-assets-1.0.json @@ -0,0 +1,10 @@ +{ + "key": "aswf-digital-assets-1.0", + "short_name": "ASWF Digital Assets License v1.0", + "name": "ASWF Digital Assets License v1.0", + "category": "Free Restricted", + "owner": "Academy Software Foundation", + "homepage_url": "https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/aswf_digital_assets_license_v1.0.txt", + "spdx_license_key": "LicenseRef-scancode-aswf-digital-assets-1.0", + "faq_url": "https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/README.md" +} \ No newline at end of file diff --git a/docs/aswf-digital-assets-1.0.yml b/docs/aswf-digital-assets-1.0.yml new file mode 100644 index 0000000000..5bfbb0d9b2 --- /dev/null +++ b/docs/aswf-digital-assets-1.0.yml @@ -0,0 +1,8 @@ +key: aswf-digital-assets-1.0 +short_name: ASWF Digital Assets License v1.0 +name: ASWF Digital Assets License v1.0 +category: Free Restricted +owner: Academy Software Foundation +homepage_url: https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/aswf_digital_assets_license_v1.0.txt +spdx_license_key: LicenseRef-scancode-aswf-digital-assets-1.0 +faq_url: https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/README.md diff --git a/docs/aswf-digital-assets-1.1.LICENSE b/docs/aswf-digital-assets-1.1.LICENSE new file mode 100644 index 0000000000..afcd376f8e --- /dev/null +++ b/docs/aswf-digital-assets-1.1.LICENSE @@ -0,0 +1,29 @@ +--- +key: aswf-digital-assets-1.1 +short_name: ASWF Digital Assets License v1.1 +name: ASWF Digital Assets License v1.1 +category: Free Restricted +owner: Academy Software Foundation +homepage_url: https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/aswf_digital_assets_license_v1.1.txt +spdx_license_key: LicenseRef-scancode-aswf-digital-assets-1.1 +faq_url: https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/README.md +--- + +ASWF Digital Assets License v1.1 + +License for (the “Asset Name”). + + Copyright . All rights reserved. + +Redistribution and use of these digital assets, with or without modification, solely for education, training, research, software and hardware development, performance benchmarking (including publication of benchmark results and permitting reproducibility of the benchmark results by third parties), or software and hardware product demonstrations, are permitted provided that the following conditions are met: + +1. Redistributions of these digital assets or any part of them must include the above copyright notice, this list of conditions and the disclaimer below, and if applicable, a description of how the redistributed versions of the digital assets differ from the originals. + +2. Publications showing images derived from these digital assets must include the above copyright notice. + +3. The names of copyright holder or the names of its contributors may NOT be used to promote or to imply endorsement, sponsorship, or affiliation with products developed or tested utilizing these digital assets or benchmarking results obtained from these digital assets, without prior written permission from copyright holder. + +4. The assets and their output may only be referred to as the Asset Name listed above, and your use of the Asset Name shall be solely to identify the digital assets. Other than as expressly permitted by this License, you may NOT use any trade names, trademarks, service marks, or product names of the copyright holder for any purpose. + +DISCLAIMER: THESE DIGITAL ASSETS ARE PROVIDED BY THE COPYRIGHT HOLDER “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 COPYRIGHT HOLDER 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 THESE DIGITAL ASSETS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Footer \ No newline at end of file diff --git a/docs/aswf-digital-assets-1.1.html b/docs/aswf-digital-assets-1.1.html new file mode 100644 index 0000000000..c22589bdaa --- /dev/null +++ b/docs/aswf-digital-assets-1.1.html @@ -0,0 +1,174 @@ + + + + + + LicenseDB: aswf-digital-assets-1.1 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + aswf-digital-assets-1.1 + +
+ +
short_name
+
+ + ASWF Digital Assets License v1.1 + +
+ +
name
+
+ + ASWF Digital Assets License v1.1 + +
+ +
category
+
+ + Free Restricted + +
+ +
owner
+
+ + Academy Software Foundation + +
+ +
homepage_url
+
+ + https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/aswf_digital_assets_license_v1.1.txt + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-aswf-digital-assets-1.1 + +
+ +
faq_url
+
+ + https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/README.md + +
+ +
+
license_text
+
ASWF Digital Assets License v1.1
+
+License for <Asset Name> (the “Asset Name”).
+
+<Asset Name> Copyright <Year> <Asset Owner>. All rights reserved.
+
+Redistribution and use of these digital assets, with or without modification, solely for education, training, research, software and hardware development, performance benchmarking (including publication of benchmark results and permitting reproducibility of the benchmark results by third parties), or software and hardware product demonstrations, are permitted provided that the following conditions are met:
+
+1. Redistributions of these digital assets or any part of them must include the above copyright notice, this list of conditions and the disclaimer below, and if applicable, a description of how the redistributed versions of the digital assets differ from the originals.
+
+2. Publications showing images derived from these digital assets must include the above copyright notice.
+
+3. The names of copyright holder or the names of its contributors may NOT be used to promote or to imply endorsement, sponsorship, or affiliation with products developed or tested utilizing these digital assets or benchmarking results obtained from these digital assets, without prior written permission from copyright holder.
+
+4. The assets and their output may only be referred to as the Asset Name listed above, and your use of the Asset Name shall be solely to identify the digital assets. Other than as expressly permitted by this License, you may NOT use any trade names, trademarks, service marks, or product names of the copyright holder for any purpose.
+
+DISCLAIMER: THESE DIGITAL ASSETS ARE PROVIDED BY THE COPYRIGHT HOLDER “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 COPYRIGHT HOLDER 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 THESE DIGITAL ASSETS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+Footer
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/aswf-digital-assets-1.1.json b/docs/aswf-digital-assets-1.1.json new file mode 100644 index 0000000000..b79bfba44b --- /dev/null +++ b/docs/aswf-digital-assets-1.1.json @@ -0,0 +1,10 @@ +{ + "key": "aswf-digital-assets-1.1", + "short_name": "ASWF Digital Assets License v1.1", + "name": "ASWF Digital Assets License v1.1", + "category": "Free Restricted", + "owner": "Academy Software Foundation", + "homepage_url": "https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/aswf_digital_assets_license_v1.1.txt", + "spdx_license_key": "LicenseRef-scancode-aswf-digital-assets-1.1", + "faq_url": "https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/README.md" +} \ No newline at end of file diff --git a/docs/aswf-digital-assets-1.1.yml b/docs/aswf-digital-assets-1.1.yml new file mode 100644 index 0000000000..819791eba4 --- /dev/null +++ b/docs/aswf-digital-assets-1.1.yml @@ -0,0 +1,8 @@ +key: aswf-digital-assets-1.1 +short_name: ASWF Digital Assets License v1.1 +name: ASWF Digital Assets License v1.1 +category: Free Restricted +owner: Academy Software Foundation +homepage_url: https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/aswf_digital_assets_license_v1.1.txt +spdx_license_key: LicenseRef-scancode-aswf-digital-assets-1.1 +faq_url: https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/README.md diff --git a/docs/ati-eula.LICENSE b/docs/ati-eula.LICENSE index 745f976358..98fab11438 100644 --- a/docs/ati-eula.LICENSE +++ b/docs/ati-eula.LICENSE @@ -1,3 +1,15 @@ +--- +key: ati-eula +short_name: ATI Software EULA +name: ATI Software End User License Agreement +category: Proprietary Free +owner: Advanced Micro Devices +homepage_url: http://www.amd.com/us/pages/amdhomepage.aspx +spdx_license_key: LicenseRef-scancode-ati-eula +text_urls: + - http://www.amd.com/us/pages/amdhomepage.aspx +--- + ATI Software End User License Agreement PLEASE READ THIS LICENSE CAREFULLY BEFORE USING THE SOFTWARE. BY diff --git a/docs/ati-eula.html b/docs/ati-eula.html index 49ab146ad6..a237a0a843 100644 --- a/docs/ati-eula.html +++ b/docs/ati-eula.html @@ -315,7 +315,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ati-eula.json b/docs/ati-eula.json index 6cfca6245c..1e30bac274 100644 --- a/docs/ati-eula.json +++ b/docs/ati-eula.json @@ -1 +1,12 @@ -{"key": "ati-eula", "short_name": "ATI Software EULA", "name": "ATI Software End User License Agreement", "category": "Proprietary Free", "owner": "Advanced Micro Devices", "homepage_url": "http://www.amd.com/us/pages/amdhomepage.aspx", "spdx_license_key": "LicenseRef-scancode-ati-eula", "text_urls": ["http://www.amd.com/us/pages/amdhomepage.aspx"]} \ No newline at end of file +{ + "key": "ati-eula", + "short_name": "ATI Software EULA", + "name": "ATI Software End User License Agreement", + "category": "Proprietary Free", + "owner": "Advanced Micro Devices", + "homepage_url": "http://www.amd.com/us/pages/amdhomepage.aspx", + "spdx_license_key": "LicenseRef-scancode-ati-eula", + "text_urls": [ + "http://www.amd.com/us/pages/amdhomepage.aspx" + ] +} \ No newline at end of file diff --git a/docs/atkinson-hyperlegible-font.LICENSE b/docs/atkinson-hyperlegible-font.LICENSE index 329c2ad28d..7e49dfc866 100644 --- a/docs/atkinson-hyperlegible-font.LICENSE +++ b/docs/atkinson-hyperlegible-font.LICENSE @@ -1,3 +1,17 @@ +--- +key: atkinson-hyperlegible-font +short_name: Atkinson Hyperlegible Font License +name: Atkinson Hyperlegible Font License +category: Permissive +owner: Braille Institute +homepage_url: https://www.brailleinstitute.org/wp-content/uploads/2020/11/Atkinson-Hyperlegible-Font-License-2020-1104.pdf +spdx_license_key: LicenseRef-scancode-atkinson-hyperlegible-font +ignorable_copyrights: + - Copyright Holder. Font Software +ignorable_holders: + - Font Software +--- + Atkinson Hyperlegible Font License GENERAL diff --git a/docs/atkinson-hyperlegible-font.html b/docs/atkinson-hyperlegible-font.html index 458b1a52a6..89755183f1 100644 --- a/docs/atkinson-hyperlegible-font.html +++ b/docs/atkinson-hyperlegible-font.html @@ -207,7 +207,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/atkinson-hyperlegible-font.json b/docs/atkinson-hyperlegible-font.json index 2e3694a8c1..8fc768eea2 100644 --- a/docs/atkinson-hyperlegible-font.json +++ b/docs/atkinson-hyperlegible-font.json @@ -1 +1,15 @@ -{"key": "atkinson-hyperlegible-font", "short_name": "Atkinson Hyperlegible Font License", "name": "Atkinson Hyperlegible Font License", "category": "Permissive", "owner": "Braille Institute", "homepage_url": "https://www.brailleinstitute.org/wp-content/uploads/2020/11/Atkinson-Hyperlegible-Font-License-2020-1104.pdf", "spdx_license_key": "LicenseRef-scancode-atkinson-hyperlegible-font", "ignorable_copyrights": ["Copyright Holder. Font Software"], "ignorable_holders": ["Font Software"]} \ No newline at end of file +{ + "key": "atkinson-hyperlegible-font", + "short_name": "Atkinson Hyperlegible Font License", + "name": "Atkinson Hyperlegible Font License", + "category": "Permissive", + "owner": "Braille Institute", + "homepage_url": "https://www.brailleinstitute.org/wp-content/uploads/2020/11/Atkinson-Hyperlegible-Font-License-2020-1104.pdf", + "spdx_license_key": "LicenseRef-scancode-atkinson-hyperlegible-font", + "ignorable_copyrights": [ + "Copyright Holder. Font Software" + ], + "ignorable_holders": [ + "Font Software" + ] +} \ No newline at end of file diff --git a/docs/atlassian-marketplace-tou.LICENSE b/docs/atlassian-marketplace-tou.LICENSE index 243ee86737..7dde47a800 100644 --- a/docs/atlassian-marketplace-tou.LICENSE +++ b/docs/atlassian-marketplace-tou.LICENSE @@ -1,3 +1,18 @@ +--- +key: atlassian-marketplace-tou +short_name: Atlassian Marketplace Terms of Use +name: Atlassian Marketplace Terms of Use +category: Proprietary Free +owner: Atlassian +homepage_url: https://www.atlassian.com/licensing/marketplace/termsofuse +spdx_license_key: LicenseRef-scancode-atlassian-marketplace-tou +ignorable_urls: + - https://marketplace.atlassian.com/ +ignorable_emails: + - legal@atlassian.com + - sales@atlassian.com +--- + Atlassian Marketplace Terms of Use Welcome to the Atlassian Marketplace! The Atlassian Marketplace is an online marketplace for cloud and downloadable software applications, plugins and extensions (“Marketplace Apps” or “Apps”) that are designed to interoperate with Atlassian’s software and cloud offerings (“Atlassian Products”). diff --git a/docs/atlassian-marketplace-tou.html b/docs/atlassian-marketplace-tou.html index 0ffffab39b..bc35c4b4f3 100644 --- a/docs/atlassian-marketplace-tou.html +++ b/docs/atlassian-marketplace-tou.html @@ -274,7 +274,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/atlassian-marketplace-tou.json b/docs/atlassian-marketplace-tou.json index 08878a3e11..16ebfa8876 100644 --- a/docs/atlassian-marketplace-tou.json +++ b/docs/atlassian-marketplace-tou.json @@ -1 +1,16 @@ -{"key": "atlassian-marketplace-tou", "short_name": "Atlassian Marketplace Terms of Use", "name": "Atlassian Marketplace Terms of Use", "category": "Proprietary Free", "owner": "Atlassian", "homepage_url": "https://www.atlassian.com/licensing/marketplace/termsofuse", "spdx_license_key": "LicenseRef-scancode-atlassian-marketplace-tou", "ignorable_urls": ["https://marketplace.atlassian.com/"], "ignorable_emails": ["legal@atlassian.com", "sales@atlassian.com"]} \ No newline at end of file +{ + "key": "atlassian-marketplace-tou", + "short_name": "Atlassian Marketplace Terms of Use", + "name": "Atlassian Marketplace Terms of Use", + "category": "Proprietary Free", + "owner": "Atlassian", + "homepage_url": "https://www.atlassian.com/licensing/marketplace/termsofuse", + "spdx_license_key": "LicenseRef-scancode-atlassian-marketplace-tou", + "ignorable_urls": [ + "https://marketplace.atlassian.com/" + ], + "ignorable_emails": [ + "legal@atlassian.com", + "sales@atlassian.com" + ] +} \ No newline at end of file diff --git a/docs/atmel-firmware.LICENSE b/docs/atmel-firmware.LICENSE index 9f3800de9a..b7a12f08ca 100644 --- a/docs/atmel-firmware.LICENSE +++ b/docs/atmel-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: atmel-firmware +short_name: Atmel Firmware License +name: Atmel Firmware License +category: Proprietary Free +owner: Atmel +homepage_url: http://atmelwlandriver.sourceforge.net/license.txt +spdx_license_key: LicenseRef-scancode-atmel-firmware +--- + Redistribution and use of the microcode software ( Firmware ) is permitted provided that the following conditions are met: diff --git a/docs/atmel-firmware.html b/docs/atmel-firmware.html index 0f67e6e0f7..47145ef60f 100644 --- a/docs/atmel-firmware.html +++ b/docs/atmel-firmware.html @@ -155,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/atmel-firmware.json b/docs/atmel-firmware.json index 48959caac6..91c42bbb2f 100644 --- a/docs/atmel-firmware.json +++ b/docs/atmel-firmware.json @@ -1 +1,9 @@ -{"key": "atmel-firmware", "short_name": "Atmel Firmware License", "name": "Atmel Firmware License", "category": "Proprietary Free", "owner": "Atmel", "homepage_url": "http://atmelwlandriver.sourceforge.net/license.txt", "spdx_license_key": "LicenseRef-scancode-atmel-firmware"} \ No newline at end of file +{ + "key": "atmel-firmware", + "short_name": "Atmel Firmware License", + "name": "Atmel Firmware License", + "category": "Proprietary Free", + "owner": "Atmel", + "homepage_url": "http://atmelwlandriver.sourceforge.net/license.txt", + "spdx_license_key": "LicenseRef-scancode-atmel-firmware" +} \ No newline at end of file diff --git a/docs/atmel-linux-firmware.LICENSE b/docs/atmel-linux-firmware.LICENSE index 9f673963da..cf42450bd3 100644 --- a/docs/atmel-linux-firmware.LICENSE +++ b/docs/atmel-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: atmel-linux-firmware +short_name: Atmel Linux Firmware License +name: Atmel Linux Firmware License +category: Proprietary Free +owner: Atmel +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.atmel +spdx_license_key: LicenseRef-scancode-atmel-linux-firmware +--- + REDISTRIBUTION: Permission is hereby granted by Atmel Corporation (Atmel), free of any license fees, to any person obtaining a copy of this firmware (the "Software"), to install, reproduce, copy and distribute copies, in binary form, diff --git a/docs/atmel-linux-firmware.html b/docs/atmel-linux-firmware.html index 652245e18c..4667f29fed 100644 --- a/docs/atmel-linux-firmware.html +++ b/docs/atmel-linux-firmware.html @@ -160,7 +160,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/atmel-linux-firmware.json b/docs/atmel-linux-firmware.json index 29dc8c671d..86dca9211a 100644 --- a/docs/atmel-linux-firmware.json +++ b/docs/atmel-linux-firmware.json @@ -1 +1,9 @@ -{"key": "atmel-linux-firmware", "short_name": "Atmel Linux Firmware License", "name": "Atmel Linux Firmware License", "category": "Proprietary Free", "owner": "Atmel", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.atmel", "spdx_license_key": "LicenseRef-scancode-atmel-linux-firmware"} \ No newline at end of file +{ + "key": "atmel-linux-firmware", + "short_name": "Atmel Linux Firmware License", + "name": "Atmel Linux Firmware License", + "category": "Proprietary Free", + "owner": "Atmel", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.atmel", + "spdx_license_key": "LicenseRef-scancode-atmel-linux-firmware" +} \ No newline at end of file diff --git a/docs/atmel-microcontroller.LICENSE b/docs/atmel-microcontroller.LICENSE index 0a9f256631..706f1f8080 100644 --- a/docs/atmel-microcontroller.LICENSE +++ b/docs/atmel-microcontroller.LICENSE @@ -1,3 +1,13 @@ +--- +key: atmel-microcontroller +short_name: Atmel Microcontroller License +name: Atmel Microcontroller License +category: Proprietary Free +owner: Atmel +homepage_url: https://github.com/Joan93/MasterThesis/blob/275ee8c6fcd5b0883540f629e2755ab524904a73/openwsn/openwsn-fw/bsp/boards/samr21_xpro/drivers/src/cm0plus_interrupt.c +spdx_license_key: LicenseRef-scancode-atmel-microcontroller +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/atmel-microcontroller.html b/docs/atmel-microcontroller.html index 1ffb0e0453..74697e9739 100644 --- a/docs/atmel-microcontroller.html +++ b/docs/atmel-microcontroller.html @@ -152,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/atmel-microcontroller.json b/docs/atmel-microcontroller.json index 51f64e0a07..5d58c56d25 100644 --- a/docs/atmel-microcontroller.json +++ b/docs/atmel-microcontroller.json @@ -1 +1,9 @@ -{"key": "atmel-microcontroller", "short_name": "Atmel Microcontroller License", "name": "Atmel Microcontroller License", "category": "Proprietary Free", "owner": "Atmel", "homepage_url": "https://github.com/Joan93/MasterThesis/blob/275ee8c6fcd5b0883540f629e2755ab524904a73/openwsn/openwsn-fw/bsp/boards/samr21_xpro/drivers/src/cm0plus_interrupt.c", "spdx_license_key": "LicenseRef-scancode-atmel-microcontroller"} \ No newline at end of file +{ + "key": "atmel-microcontroller", + "short_name": "Atmel Microcontroller License", + "name": "Atmel Microcontroller License", + "category": "Proprietary Free", + "owner": "Atmel", + "homepage_url": "https://github.com/Joan93/MasterThesis/blob/275ee8c6fcd5b0883540f629e2755ab524904a73/openwsn/openwsn-fw/bsp/boards/samr21_xpro/drivers/src/cm0plus_interrupt.c", + "spdx_license_key": "LicenseRef-scancode-atmel-microcontroller" +} \ No newline at end of file diff --git a/docs/atmosphere-0.4.LICENSE b/docs/atmosphere-0.4.LICENSE index c106ed2035..866efcd10e 100644 --- a/docs/atmosphere-0.4.LICENSE +++ b/docs/atmosphere-0.4.LICENSE @@ -1,3 +1,12 @@ +--- +key: atmosphere-0.4 +short_name: atmosphere +name: Atmosphere Software License Version 0.4 +category: Source-available +owner: Open Austin +homepage_url: https://www.open-austin.org/atmosphere-license/ +spdx_license_key: LicenseRef-scancode-atmosphere-0.4 +--- Atmosphere Software License Version 0.4 Preamble @@ -103,4 +112,4 @@ In no event unless required by applicable law or agreed to in writing will any c 12. No Trademark Waiver Trademark rights are not licensed under this public license. -END OF TERMS AND CONDITIONS +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/docs/atmosphere-0.4.html b/docs/atmosphere-0.4.html index 6b2c8adf0d..ed717af60d 100644 --- a/docs/atmosphere-0.4.html +++ b/docs/atmosphere-0.4.html @@ -115,8 +115,7 @@
license_text
-

-Atmosphere Software License Version 0.4
+    
Atmosphere Software License Version 0.4
 Preamble
 
 Software developers cannot ignore the impact of networked computation on the global climate crisis. The energy demands of the global economy exceed the current production of renewable energy. While software development has the potential to make economic activity far more efficient, fossil fuel's high subsidies and disastrous social costs mean that improvements to software often give their users the ability to optimize for financial profit at the expense of the environment, by increasing their fossil fuel extraction and polluting activities. This rebound effect has been worsened by the rise of cryptocurrency, which has made it possible to monetize computation roughly in proportion to the amount of energy consumed. Computation, energy, economics, and ecology are now locked in a harmful cycle. The purpose of the Atmosphere License is to let developers push back against this cycle, supporting environmental sustainabiliy by creating code that increases the relative economic value of renewable energy.
@@ -220,8 +219,7 @@
 12. No Trademark Waiver
 
 Trademark rights are not licensed under this public license.
-END OF TERMS AND CONDITIONS
-
+END OF TERMS AND CONDITIONS
@@ -233,7 +231,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/atmosphere-0.4.json b/docs/atmosphere-0.4.json index 7554cf91d8..c970523241 100644 --- a/docs/atmosphere-0.4.json +++ b/docs/atmosphere-0.4.json @@ -1 +1,9 @@ -{"key": "atmosphere-0.4", "short_name": "atmosphere", "name": "Atmosphere Software License Version 0.4", "category": "Source-available", "owner": "Open Austin", "homepage_url": "https://www.open-austin.org/atmosphere-license/", "spdx_license_key": "LicenseRef-scancode-atmosphere-0.4"} \ No newline at end of file +{ + "key": "atmosphere-0.4", + "short_name": "atmosphere", + "name": "Atmosphere Software License Version 0.4", + "category": "Source-available", + "owner": "Open Austin", + "homepage_url": "https://www.open-austin.org/atmosphere-license/", + "spdx_license_key": "LicenseRef-scancode-atmosphere-0.4" +} \ No newline at end of file diff --git a/docs/attribution.LICENSE b/docs/attribution.LICENSE index 8288b27fa9..6cde77a854 100644 --- a/docs/attribution.LICENSE +++ b/docs/attribution.LICENSE @@ -1,3 +1,22 @@ +--- +key: attribution +short_name: AAL +name: Attribution Assurance License +category: Permissive +owner: Unspecified +homepage_url: http://opensource.org/licenses/attribution.php +notes: | + Per SPDX.org, this version was released 2002 This license is OSI + certifified. +spdx_license_key: AAL +text_urls: + - http://opensource.org/licenses/attribution.php +osi_url: http://opensource.org/licenses/attribution.php +other_urls: + - http://www.opensource.org/licenses/attribution + - https://opensource.org/licenses/attribution +--- + PROFESSIONAL IDENTIFICATION * URL "PROMOTIONAL SLOGAN FOR AUTHOR'S PROFESSIONAL PRACTICE" diff --git a/docs/attribution.html b/docs/attribution.html index 03a7e72360..8ce8c39ffa 100644 --- a/docs/attribution.html +++ b/docs/attribution.html @@ -207,7 +207,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/attribution.json b/docs/attribution.json index 3ff01c87ce..77ce2bd7b6 100644 --- a/docs/attribution.json +++ b/docs/attribution.json @@ -1 +1,18 @@ -{"key": "attribution", "short_name": "AAL", "name": "Attribution Assurance License", "category": "Permissive", "owner": "Unspecified", "homepage_url": "http://opensource.org/licenses/attribution.php", "notes": "Per SPDX.org, this version was released 2002 This license is OSI\ncertifified.\n", "spdx_license_key": "AAL", "text_urls": ["http://opensource.org/licenses/attribution.php"], "osi_url": "http://opensource.org/licenses/attribution.php", "other_urls": ["http://www.opensource.org/licenses/attribution", "https://opensource.org/licenses/attribution"]} \ No newline at end of file +{ + "key": "attribution", + "short_name": "AAL", + "name": "Attribution Assurance License", + "category": "Permissive", + "owner": "Unspecified", + "homepage_url": "http://opensource.org/licenses/attribution.php", + "notes": "Per SPDX.org, this version was released 2002 This license is OSI\ncertifified.\n", + "spdx_license_key": "AAL", + "text_urls": [ + "http://opensource.org/licenses/attribution.php" + ], + "osi_url": "http://opensource.org/licenses/attribution.php", + "other_urls": [ + "http://www.opensource.org/licenses/attribution", + "https://opensource.org/licenses/attribution" + ] +} \ No newline at end of file diff --git a/docs/autoconf-exception-2.0.LICENSE b/docs/autoconf-exception-2.0.LICENSE index b48d29a054..6e1ae6a59c 100644 --- a/docs/autoconf-exception-2.0.LICENSE +++ b/docs/autoconf-exception-2.0.LICENSE @@ -1,3 +1,34 @@ +--- +key: autoconf-exception-2.0 +short_name: Autoconf exception to GPL 2.0 or later +name: Autoconf exception to GPL 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: Autoconf-exception-2.0 +text_urls: + - http://ac-archive.sourceforge.net/doc/copyright.html +other_urls: + - http://ac-archive.sourceforge.net/doc/copyright.html + - http://ftp.gnu.org/gnu/autoconf/autoconf-2.59.tar.gz +standard_notice: | + This library 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 2, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception to the GNU General Public License, if you distribute + this file as part of a program that contains a configuration script + generated by Autoconf, you may include it under the same distribution terms + that you use for the rest of that program. +--- + As a special exception, the Free Software Foundation gives unlimited permission to copy, distribute and modify the configure scripts that are the output of Autoconf. You need not follow the terms of the GNU @@ -23,4 +54,4 @@ of the text that was the non-data portion of the version that you started with. (In other words, unless your change moves or copies text from the non-data portions to the data portions.) If your modification has such potential, you must delete any notice of this special exception -to the GPL from your modified version. +to the GPL from your modified version. \ No newline at end of file diff --git a/docs/autoconf-exception-2.0.html b/docs/autoconf-exception-2.0.html index 73b04f29f5..407cd8b37e 100644 --- a/docs/autoconf-exception-2.0.html +++ b/docs/autoconf-exception-2.0.html @@ -180,8 +180,7 @@ with. (In other words, unless your change moves or copies text from the non-data portions to the data portions.) If your modification has such potential, you must delete any notice of this special exception -to the GPL from your modified version. - +to the GPL from your modified version.
@@ -193,7 +192,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/autoconf-exception-2.0.json b/docs/autoconf-exception-2.0.json index ac66afcbac..69dd080ca9 100644 --- a/docs/autoconf-exception-2.0.json +++ b/docs/autoconf-exception-2.0.json @@ -1 +1,17 @@ -{"key": "autoconf-exception-2.0", "short_name": "Autoconf exception to GPL 2.0 or later", "name": "Autoconf exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "is_exception": true, "spdx_license_key": "Autoconf-exception-2.0", "text_urls": ["http://ac-archive.sourceforge.net/doc/copyright.html"], "other_urls": ["http://ac-archive.sourceforge.net/doc/copyright.html", "http://ftp.gnu.org/gnu/autoconf/autoconf-2.59.tar.gz"], "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nAs a special exception to the GNU General Public License, if you distribute\nthis file as part of a program that contains a configuration script\ngenerated by Autoconf, you may include it under the same distribution terms\nthat you use for the rest of that program.\n"} \ No newline at end of file +{ + "key": "autoconf-exception-2.0", + "short_name": "Autoconf exception to GPL 2.0 or later", + "name": "Autoconf exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "is_exception": true, + "spdx_license_key": "Autoconf-exception-2.0", + "text_urls": [ + "http://ac-archive.sourceforge.net/doc/copyright.html" + ], + "other_urls": [ + "http://ac-archive.sourceforge.net/doc/copyright.html", + "http://ftp.gnu.org/gnu/autoconf/autoconf-2.59.tar.gz" + ], + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nAs a special exception to the GNU General Public License, if you distribute\nthis file as part of a program that contains a configuration script\ngenerated by Autoconf, you may include it under the same distribution terms\nthat you use for the rest of that program.\n" +} \ No newline at end of file diff --git a/docs/autoconf-exception-3.0.LICENSE b/docs/autoconf-exception-3.0.LICENSE index a16b1c6696..3318f87063 100644 --- a/docs/autoconf-exception-3.0.LICENSE +++ b/docs/autoconf-exception-3.0.LICENSE @@ -1,3 +1,67 @@ +--- +key: autoconf-exception-3.0 +short_name: Autoconf exception to GPL 3.0 +name: Autoconf exception to GPL 3.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/autoconf-exception-3.0.html +is_exception: yes +spdx_license_key: Autoconf-exception-3.0 +text_urls: + - http://www.gnu.org/licenses/autoconf-exception-3.0.html +other_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +standard_notice: | + 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 . + AUTOCONF CONFIGURE SCRIPT EXCEPTION + Version 3.0, 18 August 2009 + Copyright © 2009 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies of this + license document, but changing it is not allowed. + This Exception is an additional permission under section 7 of the GNU + General Public License, version 3 ("GPLv3"). It applies to a given file + that bears a notice placed by the copyright holder of the file stating that + the file is governed by GPLv3 along with this Exception. + The purpose of this Exception is to allow distribution of Autoconf's + typical output under terms of the recipient's choice (including + proprietary). + 0. Definitions. + "Covered Code" is the source or object code of a version of Autoconf that + is a covered work under this License. + "Normally Copied Code" for a version of Autoconf means all parts of its + Covered Code which that version can copy from its code (i.e., not from its + input file) into its minimally verbose, non-debugging and non-tracing + output. + "Ineligible Code" is Covered Code that is not Normally Copied Code. + 1. Grant of Additional Permission. + You have permission to propagate output of Autoconf, even if such + propagation would otherwise violate the terms of GPLv3. However, if by + modifying Autoconf you cause any Ineligible Code of the version you + received to become Normally Copied Code of your modified version, then you + void this Exception for the resulting covered work. If you convey that + resulting covered work, you must remove this Exception in accordance with + the second paragraph of Section 7 of GPLv3. + 2. No Weakening of Autoconf Copyleft. + The availability of this Exception does not imply any general presumption + that third-party software is unaffected by the copyleft requirements of the + license of Autoconf. +ignorable_copyrights: + - Copyright (c) 2009 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ +--- + AUTOCONF CONFIGURE SCRIPT EXCEPTION Version 3.0, 18 August 2009 diff --git a/docs/autoconf-exception-3.0.html b/docs/autoconf-exception-3.0.html index b5e5cf6713..4cc13c642b 100644 --- a/docs/autoconf-exception-3.0.html +++ b/docs/autoconf-exception-3.0.html @@ -251,7 +251,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/autoconf-exception-3.0.json b/docs/autoconf-exception-3.0.json index cbf8432f61..1f3498230e 100644 --- a/docs/autoconf-exception-3.0.json +++ b/docs/autoconf-exception-3.0.json @@ -1 +1,26 @@ -{"key": "autoconf-exception-3.0", "short_name": "Autoconf exception to GPL 3.0", "name": "Autoconf exception to GPL 3.0", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/autoconf-exception-3.0.html", "is_exception": true, "spdx_license_key": "Autoconf-exception-3.0", "text_urls": ["http://www.gnu.org/licenses/autoconf-exception-3.0.html"], "other_urls": ["http://www.gnu.org/licenses/gpl-3.0.txt"], "standard_notice": "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation, either version 3 of the License, or (at your option)\nany later version.\nThis program is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this program. If not, see .\nAUTOCONF CONFIGURE SCRIPT EXCEPTION\nVersion 3.0, 18 August 2009\nCopyright \u00a9 2009 Free Software Foundation, Inc. \nEveryone is permitted to copy and distribute verbatim copies of this\nlicense document, but changing it is not allowed.\nThis Exception is an additional permission under section 7 of the GNU\nGeneral Public License, version 3 (\"GPLv3\"). It applies to a given file\nthat bears a notice placed by the copyright holder of the file stating that\nthe file is governed by GPLv3 along with this Exception.\nThe purpose of this Exception is to allow distribution of Autoconf's\ntypical output under terms of the recipient's choice (including\nproprietary).\n0. Definitions.\n\"Covered Code\" is the source or object code of a version of Autoconf that\nis a covered work under this License.\n\"Normally Copied Code\" for a version of Autoconf means all parts of its\nCovered Code which that version can copy from its code (i.e., not from its\ninput file) into its minimally verbose, non-debugging and non-tracing\noutput.\n\"Ineligible Code\" is Covered Code that is not Normally Copied Code.\n1. Grant of Additional Permission.\nYou have permission to propagate output of Autoconf, even if such\npropagation would otherwise violate the terms of GPLv3. However, if by\nmodifying Autoconf you cause any Ineligible Code of the version you\nreceived to become Normally Copied Code of your modified version, then you\nvoid this Exception for the resulting covered work. If you convey that\nresulting covered work, you must remove this Exception in accordance with\nthe second paragraph of Section 7 of GPLv3.\n2. No Weakening of Autoconf Copyleft.\nThe availability of this Exception does not imply any general presumption\nthat third-party software is unaffected by the copyleft requirements of the\nlicense of Autoconf.\n", "ignorable_copyrights": ["Copyright (c) 2009 Free Software Foundation, Inc. "], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://fsf.org/"]} \ No newline at end of file +{ + "key": "autoconf-exception-3.0", + "short_name": "Autoconf exception to GPL 3.0", + "name": "Autoconf exception to GPL 3.0", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/autoconf-exception-3.0.html", + "is_exception": true, + "spdx_license_key": "Autoconf-exception-3.0", + "text_urls": [ + "http://www.gnu.org/licenses/autoconf-exception-3.0.html" + ], + "other_urls": [ + "http://www.gnu.org/licenses/gpl-3.0.txt" + ], + "standard_notice": "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation, either version 3 of the License, or (at your option)\nany later version.\nThis program is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this program. If not, see .\nAUTOCONF CONFIGURE SCRIPT EXCEPTION\nVersion 3.0, 18 August 2009\nCopyright \u00a9 2009 Free Software Foundation, Inc. \nEveryone is permitted to copy and distribute verbatim copies of this\nlicense document, but changing it is not allowed.\nThis Exception is an additional permission under section 7 of the GNU\nGeneral Public License, version 3 (\"GPLv3\"). It applies to a given file\nthat bears a notice placed by the copyright holder of the file stating that\nthe file is governed by GPLv3 along with this Exception.\nThe purpose of this Exception is to allow distribution of Autoconf's\ntypical output under terms of the recipient's choice (including\nproprietary).\n0. Definitions.\n\"Covered Code\" is the source or object code of a version of Autoconf that\nis a covered work under this License.\n\"Normally Copied Code\" for a version of Autoconf means all parts of its\nCovered Code which that version can copy from its code (i.e., not from its\ninput file) into its minimally verbose, non-debugging and non-tracing\noutput.\n\"Ineligible Code\" is Covered Code that is not Normally Copied Code.\n1. Grant of Additional Permission.\nYou have permission to propagate output of Autoconf, even if such\npropagation would otherwise violate the terms of GPLv3. However, if by\nmodifying Autoconf you cause any Ineligible Code of the version you\nreceived to become Normally Copied Code of your modified version, then you\nvoid this Exception for the resulting covered work. If you convey that\nresulting covered work, you must remove this Exception in accordance with\nthe second paragraph of Section 7 of GPLv3.\n2. No Weakening of Autoconf Copyleft.\nThe availability of this Exception does not imply any general presumption\nthat third-party software is unaffected by the copyleft requirements of the\nlicense of Autoconf.\n", + "ignorable_copyrights": [ + "Copyright (c) 2009 Free Software Foundation, Inc. " + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://fsf.org/" + ] +} \ No newline at end of file diff --git a/docs/autoconf-macro-exception.LICENSE b/docs/autoconf-macro-exception.LICENSE index c30c5d9184..cb888ccba8 100644 --- a/docs/autoconf-macro-exception.LICENSE +++ b/docs/autoconf-macro-exception.LICENSE @@ -1,3 +1,17 @@ +--- +key: autoconf-macro-exception +short_name: Autoconf macro exception +name: Autoconf macro exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: https://www.gnu.org/software/autoconf-archive/ +notes: | + this is a variant of the Autonconf exception to the + GPL 3.0 used in GNU Config config.guess and config.sub +is_exception: yes +spdx_license_key: LicenseRef-scancode-autoconf-macro-exception +--- + As a special exception, the respective Autoconf Macro's copyright owner gives unlimited permission to copy, distribute and modify the configure scripts that are the output of Autoconf when processing @@ -11,4 +25,4 @@ This special exception to the GPL applies to versions of the Autoconf Macro released by the Autoconf Macro Archive. When you make and distribute a modified version of the Autoconf Macro, you may extend this special exception to the GPL to apply to your -modified version as well. +modified version as well. \ No newline at end of file diff --git a/docs/autoconf-macro-exception.html b/docs/autoconf-macro-exception.html index d11ea7f4c1..b57e4da32f 100644 --- a/docs/autoconf-macro-exception.html +++ b/docs/autoconf-macro-exception.html @@ -144,8 +144,7 @@ Autoconf Macro released by the Autoconf Macro Archive. When you make and distribute a modified version of the Autoconf Macro, you may extend this special exception to the GPL to apply to your -modified version as well. - +modified version as well.
@@ -157,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/autoconf-macro-exception.json b/docs/autoconf-macro-exception.json index 66b5aa0c87..773b01de52 100644 --- a/docs/autoconf-macro-exception.json +++ b/docs/autoconf-macro-exception.json @@ -1 +1,11 @@ -{"key": "autoconf-macro-exception", "short_name": "Autoconf macro exception", "name": "Autoconf macro exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "https://www.gnu.org/software/autoconf-archive/", "notes": "this is a variant of the Autonconf exception to the\nGPL 3.0 used in GNU Config config.guess and config.sub\n", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-autoconf-macro-exception"} \ No newline at end of file +{ + "key": "autoconf-macro-exception", + "short_name": "Autoconf macro exception", + "name": "Autoconf macro exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "https://www.gnu.org/software/autoconf-archive/", + "notes": "this is a variant of the Autonconf exception to the\nGPL 3.0 used in GNU Config config.guess and config.sub\n", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-autoconf-macro-exception" +} \ No newline at end of file diff --git a/docs/autoconf-simple-exception-2.0.LICENSE b/docs/autoconf-simple-exception-2.0.LICENSE index e11694268b..67053f9123 100644 --- a/docs/autoconf-simple-exception-2.0.LICENSE +++ b/docs/autoconf-simple-exception-2.0.LICENSE @@ -1,5 +1,17 @@ +--- +key: autoconf-simple-exception-2.0 +short_name: Autoconf simple exception to GPL-2.0 +name: Autoconf simple exception to GPL-2.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob;f=config.guess;h=a7448442748cc6f98a066d2d1051fad3b043761a;hb=HEAD +notes: this is a simpler version of the Autonconf exception to the GPL +is_exception: yes +spdx_license_key: LicenseRef-scancode-autoconf-simple-exception-2.0 +--- + As a special exception to the GNU General Public License, if you distribute this file as part of a program that contains a configuration script generated by Autoconf, you may include it under the same distribution terms that you use for the rest of that -program. \ No newline at end of file +program. \ No newline at end of file diff --git a/docs/autoconf-simple-exception-2.0.html b/docs/autoconf-simple-exception-2.0.html index fd3e23be73..1a8de1a95e 100644 --- a/docs/autoconf-simple-exception-2.0.html +++ b/docs/autoconf-simple-exception-2.0.html @@ -133,7 +133,7 @@ distribute this file as part of a program that contains a configuration script generated by Autoconf, you may include it under the same distribution terms that you use for the rest of that -program. +program.
@@ -145,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/autoconf-simple-exception-2.0.json b/docs/autoconf-simple-exception-2.0.json index 549ae707ac..24ac56ceb3 100644 --- a/docs/autoconf-simple-exception-2.0.json +++ b/docs/autoconf-simple-exception-2.0.json @@ -1 +1,11 @@ -{"key": "autoconf-simple-exception-2.0", "short_name": "Autoconf simple exception to GPL-2.0", "name": "Autoconf simple exception to GPL-2.0", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob;f=config.guess;h=a7448442748cc6f98a066d2d1051fad3b043761a;hb=HEAD", "notes": "this is a simpler version of the Autonconf exception to the GPL", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-autoconf-simple-exception-2.0"} \ No newline at end of file +{ + "key": "autoconf-simple-exception-2.0", + "short_name": "Autoconf simple exception to GPL-2.0", + "name": "Autoconf simple exception to GPL-2.0", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob;f=config.guess;h=a7448442748cc6f98a066d2d1051fad3b043761a;hb=HEAD", + "notes": "this is a simpler version of the Autonconf exception to the GPL", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-autoconf-simple-exception-2.0" +} \ No newline at end of file diff --git a/docs/autoconf-simple-exception.LICENSE b/docs/autoconf-simple-exception.LICENSE index 8ba0e54ef5..1d2ac484c1 100644 --- a/docs/autoconf-simple-exception.LICENSE +++ b/docs/autoconf-simple-exception.LICENSE @@ -1,6 +1,20 @@ +--- +key: autoconf-simple-exception +short_name: Autoconf simple exception +name: Autoconf simple exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob;f=config.guess;h=a7448442748cc6f98a066d2d1051fad3b043761a;hb=HEAD +notes: | + this is a simpler version of the Autonconf exception to the GPL 3.0 used in + GNU Config config.guess and config.sub +is_exception: yes +spdx_license_key: LicenseRef-scancode-autoconf-simple-exception +--- + As a special exception to the GNU General Public License, if you distribute this file as part of a program that contains a configuration script generated by Autoconf, you may include it under the same distribution terms that you use for the rest of that program. This Exception is an additional permission under section 7 -of the GNU General Public License, version 3 ("GPLv3"). +of the GNU General Public License, version 3 ("GPLv3"). \ No newline at end of file diff --git a/docs/autoconf-simple-exception.html b/docs/autoconf-simple-exception.html index 3327b1432a..5f748801ec 100644 --- a/docs/autoconf-simple-exception.html +++ b/docs/autoconf-simple-exception.html @@ -136,8 +136,7 @@ configuration script generated by Autoconf, you may include it under the same distribution terms that you use for the rest of that program. This Exception is an additional permission under section 7 -of the GNU General Public License, version 3 ("GPLv3"). - +of the GNU General Public License, version 3 ("GPLv3").
@@ -149,7 +148,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/autoconf-simple-exception.json b/docs/autoconf-simple-exception.json index f5fb1ad463..d50a4f8cab 100644 --- a/docs/autoconf-simple-exception.json +++ b/docs/autoconf-simple-exception.json @@ -1 +1,11 @@ -{"key": "autoconf-simple-exception", "short_name": "Autoconf simple exception", "name": "Autoconf simple exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob;f=config.guess;h=a7448442748cc6f98a066d2d1051fad3b043761a;hb=HEAD", "notes": "this is a simpler version of the Autonconf exception to the GPL 3.0 used in\nGNU Config config.guess and config.sub\n", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-autoconf-simple-exception"} \ No newline at end of file +{ + "key": "autoconf-simple-exception", + "short_name": "Autoconf simple exception", + "name": "Autoconf simple exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob;f=config.guess;h=a7448442748cc6f98a066d2d1051fad3b043761a;hb=HEAD", + "notes": "this is a simpler version of the Autonconf exception to the GPL 3.0 used in\nGNU Config config.guess and config.sub\n", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-autoconf-simple-exception" +} \ No newline at end of file diff --git a/docs/autodesk-3d-sft-3.0.LICENSE b/docs/autodesk-3d-sft-3.0.LICENSE new file mode 100644 index 0000000000..cdd2db10ae --- /dev/null +++ b/docs/autodesk-3d-sft-3.0.LICENSE @@ -0,0 +1,102 @@ +--- +key: autodesk-3d-sft-3.0 +short_name: Autodesk 3D Studio File Toolkit for Release 3 +name: Autodesk 3D Studio File Toolkit for Release 3 +category: Proprietary Free +owner: Autodesk +homepage_url: https://github.com/Toksisitee/ALACNPopWorldEditor/blob/43d4119d698a7567ab4f32ddceb4076984dce136/_3ds/3dsftk3/license.txt +spdx_license_key: LicenseRef-scancode-autodesk-3d-sft-3.0 +ignorable_copyrights: + - (c) Copyright 1995 by Autodesk + - (c) Copyright 1997 by Autodesk, Inc. + - copyrighted by Autodesk, Inc. +ignorable_holders: + - Autodesk + - Autodesk, Inc. +--- + +/************************************************************************** + * 3D Studio File Toolkit for Release 3 + * + * (C) Copyright 1997 by Autodesk, Inc. + * + * License Agreement + * + * This Autodesk Program is copyrighted by Autodesk, Inc. and is + * licensed to you (individual or a legal entity) under the following + * conditions: + * + * You may use, modify, copy, reproduce, distribute, sell, and market + * the Autodesk Program, incorporated in whole or a portion thereof, + * solely as a part of a Larger Work ("Larger Work" is defined as a + * work which contains the Autodesk Program or portions thereof with + * software/programs not governed by the terms of this License) provided + * such Larger Works: + * (i) are designed and intended to work solely with Autodesk, Inc. + * products, + * (ii.) conspicuously contain Autodesk's copyright notice + * "(C) Copyright 1995 by Autodesk, Inc.", + * (iii) contain a copy of this license along with the Autodesk + * Program, (iv) contain the disclaimer of warranty and all + * notices that refer to this License and to the absence of + * any warranty; + * (v) add substantial value in addition to the Autodesk Program. + * + * Any derivative or modification of this Autodesk Program must be + * distributed, published and licensed under the same conditions as + * this License. + * + * You may not license or distribute the Autodesk Program as a standalone + * program or product including OEM and private label. + * + * You may not use, copy, modify, sublicense or distribute the Autodesk + * Program or any portion thereof in any form if such use or distribution + * is not expressly licensed and or is expressly prohibited under this + * License. + * + * You acknowledge and agree that Autodesk shall own all right, title + * and interest in the Autodesk Program and all rights in patents whether + * now known or hereafter discovered. You do not hold and shall not claim + * any interest whatsoever in the Autodesk Program. + * + * You agree that the Autodesk Program, any portion or derivative + * thereof will not be shipped, transferred or exported into any country + * or used in any manner prohibited by the United States Export + * Administration Act or any other applicable export control law, + * restriction or regulation. + * + * NO WARRANTY. + * AUTODESK PROVIDES THIS PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, + * EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE + * NON-INFRINGEMENT OF THIRD PARTY RIGHTS, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. AUTODESK, INC. DOES + * NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE UNINTERRUPTED + * OR ERROR FREE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF + * THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU + * (NOT AUTODESK) ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR + * OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL + * PART OF THIS LICENSE. NO USE OF THE PROGRAM IS AUTHORIZED HEREUNDER + * EXCEPT UNDER THIS DISCLAIMER. + * + * LIMITATION OF LIABILITY. + * IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL AUTODESK, OR ANY + * OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THIS PROGRAM AS + * PERMITTED HEREIN, 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 + * SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGES. + * + * This License will be governed by the laws of the State of California, + * U.S.A., excluding the application of its conflicts of law rules. + * If any part of this License is found void and unenforceable, it will + * not affect the validity of the balance of the License, which shall + * remain valid and enforceable according to its terms. + * + * This License and the rights granted hereunder will terminate + * automatically if you fail to comply with the terms herein. All + * sublicenses to the Autodesk Program which are properly granted shall + * survive any termination of this license. + *************************************************************************/ \ No newline at end of file diff --git a/docs/autodesk-3d-sft-3.0.html b/docs/autodesk-3d-sft-3.0.html new file mode 100644 index 0000000000..12a665a4ec --- /dev/null +++ b/docs/autodesk-3d-sft-3.0.html @@ -0,0 +1,252 @@ + + + + + + LicenseDB: autodesk-3d-sft-3.0 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + autodesk-3d-sft-3.0 + +
+ +
short_name
+
+ + Autodesk 3D Studio File Toolkit for Release 3 + +
+ +
name
+
+ + Autodesk 3D Studio File Toolkit for Release 3 + +
+ +
category
+
+ + Proprietary Free + +
+ +
owner
+
+ + Autodesk + +
+ +
homepage_url
+
+ + https://github.com/Toksisitee/ALACNPopWorldEditor/blob/43d4119d698a7567ab4f32ddceb4076984dce136/_3ds/3dsftk3/license.txt + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-autodesk-3d-sft-3.0 + +
+ +
ignorable_copyrights
+
+ +
    +
  • (c) Copyright 1995 by Autodesk
  • (c) Copyright 1997 by Autodesk, Inc.
  • copyrighted by Autodesk, Inc.
  • +
+ +
+ +
ignorable_holders
+
+ +
    +
  • Autodesk
  • Autodesk, Inc.
  • +
+ +
+ +
+
license_text
+
/**************************************************************************
+ * 3D Studio File Toolkit for Release 3 
+ * 
+ * (C) Copyright 1997 by Autodesk, Inc. 
+ *
+ * License Agreement
+ *
+ * This Autodesk Program is copyrighted by Autodesk, Inc. and is
+ * licensed to you (individual or a legal entity) under the following
+ * conditions:
+ *
+ * You may use, modify, copy, reproduce, distribute, sell, and market
+ * the Autodesk Program, incorporated in whole or a portion thereof,
+ * solely as a part of a Larger Work ("Larger Work" is defined as a
+ * work which contains the Autodesk Program or portions thereof with
+ * software/programs not governed by the terms of this License) provided
+ * such Larger Works:
+ *     (i)   are designed and intended to work solely with Autodesk, Inc.
+ *           products,
+ *     (ii.) conspicuously contain Autodesk's copyright notice
+ *           "(C) Copyright 1995 by Autodesk, Inc.",
+ *     (iii) contain a copy of this license along with the Autodesk
+ *           Program, (iv) contain the disclaimer of warranty and all
+ *           notices that refer to this License and to the absence of
+ *           any warranty;
+ *     (v)   add substantial value in addition to the Autodesk Program. 
+ *
+ * Any derivative or modification of this Autodesk Program must be
+ * distributed, published and licensed under the same conditions as
+ * this License.  
+ *
+ * You may not license or distribute the Autodesk Program as a standalone
+ * program or product including OEM and private label.
+ *
+ * You may not use, copy, modify, sublicense or distribute the Autodesk
+ * Program or any portion thereof in any form if such use or distribution
+ * is not expressly licensed and or is expressly prohibited under this
+ * License. 
+ * 
+ * You acknowledge and agree that Autodesk shall own all right, title
+ * and interest in the Autodesk Program and all rights in patents whether
+ * now known or hereafter discovered. You do not hold and shall not claim
+ * any interest whatsoever in the Autodesk Program.  
+ *
+ * You agree that the Autodesk Program, any portion or derivative
+ * thereof will not be shipped, transferred or exported into any country
+ * or used in any manner prohibited by the United States Export
+ * Administration Act or any other applicable export control law,
+ * restriction or regulation.
+ *
+ * NO WARRANTY.
+ * AUTODESK PROVIDES THIS PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND,
+ * EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
+ * NON-INFRINGEMENT OF THIRD PARTY RIGHTS, THE IMPLIED WARRANTIES OF
+ * MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. AUTODESK, INC. DOES
+ * NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE UNINTERRUPTED
+ * OR ERROR FREE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF
+ * THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU
+ * (NOT AUTODESK) ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR
+ * OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL
+ * PART OF THIS LICENSE. NO USE OF THE PROGRAM IS AUTHORIZED HEREUNDER
+ * EXCEPT UNDER THIS DISCLAIMER.
+ *
+ * LIMITATION OF LIABILITY.
+ * IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL AUTODESK, OR ANY
+ * OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THIS PROGRAM AS
+ * PERMITTED HEREIN, 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
+ * SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGES. 
+ *
+ * This License will be governed by the laws of the State of California,
+ * U.S.A., excluding the application of its conflicts of law rules.
+ * If any part of this License is found void and unenforceable, it will
+ * not affect the validity of the balance of the License, which shall
+ * remain valid and enforceable according to its terms.
+ *
+ * This License and the rights granted hereunder will terminate
+ * automatically if you fail to comply with the terms herein.  All
+ * sublicenses to the Autodesk Program which are properly granted shall
+ * survive any termination of this license.
+ *************************************************************************/
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/autodesk-3d-sft-3.0.json b/docs/autodesk-3d-sft-3.0.json new file mode 100644 index 0000000000..62890a15f9 --- /dev/null +++ b/docs/autodesk-3d-sft-3.0.json @@ -0,0 +1,18 @@ +{ + "key": "autodesk-3d-sft-3.0", + "short_name": "Autodesk 3D Studio File Toolkit for Release 3", + "name": "Autodesk 3D Studio File Toolkit for Release 3", + "category": "Proprietary Free", + "owner": "Autodesk", + "homepage_url": "https://github.com/Toksisitee/ALACNPopWorldEditor/blob/43d4119d698a7567ab4f32ddceb4076984dce136/_3ds/3dsftk3/license.txt", + "spdx_license_key": "LicenseRef-scancode-autodesk-3d-sft-3.0", + "ignorable_copyrights": [ + "(c) Copyright 1995 by Autodesk", + "(c) Copyright 1997 by Autodesk, Inc.", + "copyrighted by Autodesk, Inc." + ], + "ignorable_holders": [ + "Autodesk", + "Autodesk, Inc." + ] +} \ No newline at end of file diff --git a/docs/autodesk-3d-sft-3.0.yml b/docs/autodesk-3d-sft-3.0.yml new file mode 100644 index 0000000000..2b8dced92f --- /dev/null +++ b/docs/autodesk-3d-sft-3.0.yml @@ -0,0 +1,14 @@ +key: autodesk-3d-sft-3.0 +short_name: Autodesk 3D Studio File Toolkit for Release 3 +name: Autodesk 3D Studio File Toolkit for Release 3 +category: Proprietary Free +owner: Autodesk +homepage_url: https://github.com/Toksisitee/ALACNPopWorldEditor/blob/43d4119d698a7567ab4f32ddceb4076984dce136/_3ds/3dsftk3/license.txt +spdx_license_key: LicenseRef-scancode-autodesk-3d-sft-3.0 +ignorable_copyrights: + - (c) Copyright 1995 by Autodesk + - (c) Copyright 1997 by Autodesk, Inc. + - copyrighted by Autodesk, Inc. +ignorable_holders: + - Autodesk + - Autodesk, Inc. diff --git a/docs/autoit-eula.LICENSE b/docs/autoit-eula.LICENSE index 3cceccbd55..52c00f6324 100644 --- a/docs/autoit-eula.LICENSE +++ b/docs/autoit-eula.LICENSE @@ -1,3 +1,17 @@ +--- +key: autoit-eula +short_name: Autoit EULA +name: Autoit EULA +category: Proprietary Free +owner: Autoit Team +homepage_url: https://www.autoitscript.com/autoit3/docs/license.htm +spdx_license_key: LicenseRef-scancode-autoit-eula +ignorable_authors: + - Jonathan Bennett and the AutoIt Team WWW https://www.autoitscript.com/site/autoit +ignorable_urls: + - https://www.autoitscript.com/site/autoit/ +--- + Software License AutoIt Author : Jonathan Bennett and the AutoIt Team diff --git a/docs/autoit-eula.html b/docs/autoit-eula.html index a2ef96a997..e2c30bd17c 100644 --- a/docs/autoit-eula.html +++ b/docs/autoit-eula.html @@ -191,7 +191,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/autoit-eula.json b/docs/autoit-eula.json index 855c6b4815..4d5e02a33c 100644 --- a/docs/autoit-eula.json +++ b/docs/autoit-eula.json @@ -1 +1,15 @@ -{"key": "autoit-eula", "short_name": "Autoit EULA", "name": "Autoit EULA", "category": "Proprietary Free", "owner": "Autoit Team", "homepage_url": "https://www.autoitscript.com/autoit3/docs/license.htm", "spdx_license_key": "LicenseRef-scancode-autoit-eula", "ignorable_authors": ["Jonathan Bennett and the AutoIt Team WWW https://www.autoitscript.com/site/autoit"], "ignorable_urls": ["https://www.autoitscript.com/site/autoit/"]} \ No newline at end of file +{ + "key": "autoit-eula", + "short_name": "Autoit EULA", + "name": "Autoit EULA", + "category": "Proprietary Free", + "owner": "Autoit Team", + "homepage_url": "https://www.autoitscript.com/autoit3/docs/license.htm", + "spdx_license_key": "LicenseRef-scancode-autoit-eula", + "ignorable_authors": [ + "Jonathan Bennett and the AutoIt Team WWW https://www.autoitscript.com/site/autoit" + ], + "ignorable_urls": [ + "https://www.autoitscript.com/site/autoit/" + ] +} \ No newline at end of file diff --git a/docs/autoopts-exception-2.0.LICENSE b/docs/autoopts-exception-2.0.LICENSE index 6790097b53..92eade4fdc 100644 --- a/docs/autoopts-exception-2.0.LICENSE +++ b/docs/autoopts-exception-2.0.LICENSE @@ -1,3 +1,46 @@ +--- +key: autoopts-exception-2.0 +short_name: AutoOpts exception to GPL 2.0 or later +name: AutoOpts exception to GPL 2.0 or later +category: Copyleft Limited +owner: Bruce Korb +homepage_url: http://www.gnu.org/software/autogen/autoopts.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-autoopts-exception-2.0 +standard_notice: | + Automated Options is free software. + You may redistribute it and/or modify it under the terms of the + GNU General Public License, as published by the Free Software + Foundation; either version 2, or (at your option) any later version. + Automated Options 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 Automated Options. See the file "COPYING". If not, + write to: The Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. + As a special exception, Bruce Korb gives permission for additional + uses of the text contained in his release of AutoOpts. + The exception is that, if you link the AutoOpts library with other + files to produce an executable, this does not by itself cause the + resulting executable to be covered by the GNU General Public License. + Your use of that executable is in no way restricted on account of + linking the AutoOpts library code into it. + This exception does not however invalidate any other reasons why + the executable file might be covered by the GNU General Public License. + This exception applies only to the code released by Bruce Korb under + the name AutoOpts. If you copy code from other sources under the + General Public License into a copy of AutoOpts, as the General Public + License permits, the exception does not apply to the code that you add + in this way. To avoid misleading anyone as to the status of such + modified files, you must delete this exception notice from them. + If you write modifications of your own for AutoOpts, it is your choice + whether to permit this exception to apply to your modifications. + If you do not wish that, delete this exception notice. +--- + As a special exception, Bruce Korb gives permission for additional uses of the text contained in his release of AutoOpts. diff --git a/docs/autoopts-exception-2.0.html b/docs/autoopts-exception-2.0.html index afbc311edf..f0748fc60c 100644 --- a/docs/autoopts-exception-2.0.html +++ b/docs/autoopts-exception-2.0.html @@ -193,7 +193,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/autoopts-exception-2.0.json b/docs/autoopts-exception-2.0.json index f9ad4128ed..15f694c653 100644 --- a/docs/autoopts-exception-2.0.json +++ b/docs/autoopts-exception-2.0.json @@ -1 +1,11 @@ -{"key": "autoopts-exception-2.0", "short_name": "AutoOpts exception to GPL 2.0 or later", "name": "AutoOpts exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "Bruce Korb", "homepage_url": "http://www.gnu.org/software/autogen/autoopts.html", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-autoopts-exception-2.0", "standard_notice": "Automated Options is free software.\nYou may redistribute it and/or modify it under the terms of the\nGNU General Public License, as published by the Free Software\nFoundation; either version 2, or (at your option) any later version.\nAutomated Options is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with Automated Options. See the file \"COPYING\". If not,\nwrite to: The Free Software Foundation, Inc.,\n51 Franklin Street, Fifth Floor,\nBoston, MA 02110-1301, USA.\nAs a special exception, Bruce Korb gives permission for additional\nuses of the text contained in his release of AutoOpts.\nThe exception is that, if you link the AutoOpts library with other\nfiles to produce an executable, this does not by itself cause the\nresulting executable to be covered by the GNU General Public License.\nYour use of that executable is in no way restricted on account of\nlinking the AutoOpts library code into it.\nThis exception does not however invalidate any other reasons why\nthe executable file might be covered by the GNU General Public License.\nThis exception applies only to the code released by Bruce Korb under\nthe name AutoOpts. If you copy code from other sources under the\nGeneral Public License into a copy of AutoOpts, as the General Public\nLicense permits, the exception does not apply to the code that you add\nin this way. To avoid misleading anyone as to the status of such\nmodified files, you must delete this exception notice from them.\nIf you write modifications of your own for AutoOpts, it is your choice\nwhether to permit this exception to apply to your modifications.\nIf you do not wish that, delete this exception notice.\n"} \ No newline at end of file +{ + "key": "autoopts-exception-2.0", + "short_name": "AutoOpts exception to GPL 2.0 or later", + "name": "AutoOpts exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "Bruce Korb", + "homepage_url": "http://www.gnu.org/software/autogen/autoopts.html", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-autoopts-exception-2.0", + "standard_notice": "Automated Options is free software.\nYou may redistribute it and/or modify it under the terms of the\nGNU General Public License, as published by the Free Software\nFoundation; either version 2, or (at your option) any later version.\nAutomated Options is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with Automated Options. See the file \"COPYING\". If not,\nwrite to: The Free Software Foundation, Inc.,\n51 Franklin Street, Fifth Floor,\nBoston, MA 02110-1301, USA.\nAs a special exception, Bruce Korb gives permission for additional\nuses of the text contained in his release of AutoOpts.\nThe exception is that, if you link the AutoOpts library with other\nfiles to produce an executable, this does not by itself cause the\nresulting executable to be covered by the GNU General Public License.\nYour use of that executable is in no way restricted on account of\nlinking the AutoOpts library code into it.\nThis exception does not however invalidate any other reasons why\nthe executable file might be covered by the GNU General Public License.\nThis exception applies only to the code released by Bruce Korb under\nthe name AutoOpts. If you copy code from other sources under the\nGeneral Public License into a copy of AutoOpts, as the General Public\nLicense permits, the exception does not apply to the code that you add\nin this way. To avoid misleading anyone as to the status of such\nmodified files, you must delete this exception notice from them.\nIf you write modifications of your own for AutoOpts, it is your choice\nwhether to permit this exception to apply to your modifications.\nIf you do not wish that, delete this exception notice.\n" +} \ No newline at end of file diff --git a/docs/avisynth-c-interface-exception.LICENSE b/docs/avisynth-c-interface-exception.LICENSE index 18867e4cbe..97cc318de0 100644 --- a/docs/avisynth-c-interface-exception.LICENSE +++ b/docs/avisynth-c-interface-exception.LICENSE @@ -1,3 +1,14 @@ +--- +key: avisynth-c-interface-exception +short_name: Avisynth C Interface Exception +name: Avisynth C Interface Exception +category: Copyleft Limited +owner: Kevin Atkinson +homepage_url: http://www.kevina.org/avisynth_c/readme.txt +is_exception: yes +spdx_license_key: LicenseRef-scancode-avisynth-c-exception +--- + As a special exception, I give you permission to link to the Avisynth C interface with independent modules that communicate with the Avisynth C interface solely through the interfaces defined in diff --git a/docs/avisynth-c-interface-exception.html b/docs/avisynth-c-interface-exception.html index 1eecc2ea49..ba0e330314 100644 --- a/docs/avisynth-c-interface-exception.html +++ b/docs/avisynth-c-interface-exception.html @@ -146,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/avisynth-c-interface-exception.json b/docs/avisynth-c-interface-exception.json index 9ad5ee2ea8..08ce7e1c02 100644 --- a/docs/avisynth-c-interface-exception.json +++ b/docs/avisynth-c-interface-exception.json @@ -1 +1,10 @@ -{"key": "avisynth-c-interface-exception", "short_name": "Avisynth C Interface Exception", "name": "Avisynth C Interface Exception", "category": "Copyleft Limited", "owner": "Kevin Atkinson", "homepage_url": "http://www.kevina.org/avisynth_c/readme.txt", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-avisynth-c-exception"} \ No newline at end of file +{ + "key": "avisynth-c-interface-exception", + "short_name": "Avisynth C Interface Exception", + "name": "Avisynth C Interface Exception", + "category": "Copyleft Limited", + "owner": "Kevin Atkinson", + "homepage_url": "http://www.kevina.org/avisynth_c/readme.txt", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-avisynth-c-exception" +} \ No newline at end of file diff --git a/docs/avisynth-linking-exception.LICENSE b/docs/avisynth-linking-exception.LICENSE index 72602debc4..8487820fbd 100644 --- a/docs/avisynth-linking-exception.LICENSE +++ b/docs/avisynth-linking-exception.LICENSE @@ -1,3 +1,14 @@ +--- +key: avisynth-linking-exception +short_name: Avisynth Linking Exception +name: Avisynth Linking Exception +category: Copyleft Limited +owner: AviSynth Library Project +homepage_url: http://avisynth.nl/users/fizick/docs/english/license.htm +is_exception: yes +spdx_license_key: LicenseRef-scancode-avisynth-linking-exception +--- + Linking Avisynth statically or dynamically with other modules is making a combined work based on Avisynth. Thus, the terms and conditions of the GNU General Public License cover the whole combination. diff --git a/docs/avisynth-linking-exception.html b/docs/avisynth-linking-exception.html index be1c61b70c..42c553ae86 100644 --- a/docs/avisynth-linking-exception.html +++ b/docs/avisynth-linking-exception.html @@ -149,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/avisynth-linking-exception.json b/docs/avisynth-linking-exception.json index 853b078e29..b9c28015e5 100644 --- a/docs/avisynth-linking-exception.json +++ b/docs/avisynth-linking-exception.json @@ -1 +1,10 @@ -{"key": "avisynth-linking-exception", "short_name": "Avisynth Linking Exception", "name": "Avisynth Linking Exception", "category": "Copyleft Limited", "owner": "AviSynth Library Project", "homepage_url": "http://avisynth.nl/users/fizick/docs/english/license.htm", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-avisynth-linking-exception"} \ No newline at end of file +{ + "key": "avisynth-linking-exception", + "short_name": "Avisynth Linking Exception", + "name": "Avisynth Linking Exception", + "category": "Copyleft Limited", + "owner": "AviSynth Library Project", + "homepage_url": "http://avisynth.nl/users/fizick/docs/english/license.htm", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-avisynth-linking-exception" +} \ No newline at end of file diff --git a/docs/bacula-exception.LICENSE b/docs/bacula-exception.LICENSE index 24ce1bf77b..9aac107c0c 100644 --- a/docs/bacula-exception.LICENSE +++ b/docs/bacula-exception.LICENSE @@ -1,3 +1,21 @@ +--- +key: bacula-exception +short_name: Bacula exception to AGPL 3.0 +name: Bacula exception to AGPL 3.0 +category: Copyleft Limited +owner: Bacula +notes: composite +is_exception: yes +spdx_license_key: LicenseRef-scancode-bacula-exception +other_urls: + - http://www.gnu.org/licenses/ +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 2000-2017 Kern Sibbald +ignorable_holders: + - Kern Sibbald +--- + Last revision: 21 May 2017 Bacula is licensed under the GNU Affero General Public License, version diff --git a/docs/bacula-exception.html b/docs/bacula-exception.html index 4e61578de8..9891a82be3 100644 --- a/docs/bacula-exception.html +++ b/docs/bacula-exception.html @@ -227,7 +227,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bacula-exception.json b/docs/bacula-exception.json index 9960228c56..582ba84f5c 100644 --- a/docs/bacula-exception.json +++ b/docs/bacula-exception.json @@ -1 +1,20 @@ -{"key": "bacula-exception", "short_name": "Bacula exception to AGPL 3.0", "name": "Bacula exception to AGPL 3.0", "category": "Copyleft Limited", "owner": "Bacula", "notes": "composite", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-bacula-exception", "other_urls": ["http://www.gnu.org/licenses/"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright (c) 2000-2017 Kern Sibbald"], "ignorable_holders": ["Kern Sibbald"]} \ No newline at end of file +{ + "key": "bacula-exception", + "short_name": "Bacula exception to AGPL 3.0", + "name": "Bacula exception to AGPL 3.0", + "category": "Copyleft Limited", + "owner": "Bacula", + "notes": "composite", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-bacula-exception", + "other_urls": [ + "http://www.gnu.org/licenses/" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright (c) 2000-2017 Kern Sibbald" + ], + "ignorable_holders": [ + "Kern Sibbald" + ] +} \ No newline at end of file diff --git a/docs/baekmuk-fonts.LICENSE b/docs/baekmuk-fonts.LICENSE index 83e733f534..b52ca06132 100644 --- a/docs/baekmuk-fonts.LICENSE +++ b/docs/baekmuk-fonts.LICENSE @@ -1,3 +1,20 @@ +--- +key: baekmuk-fonts +short_name: Baekmuk Fonts License +name: Baekmuk Fonts License +category: Permissive +owner: Unspecified +spdx_license_key: Baekmuk +other_spdx_license_keys: + - LicenseRef-scancode-baekmuk-fonts +other_urls: + - https://fedoraproject.org/wiki/Licensing:Baekmuk?rd=Licensing/Baekmuk +ignorable_copyrights: + - Copyright (c) Kim Jeong-Hwan +ignorable_holders: + - Kim Jeong-Hwan +--- + Baekmuk Fonts License Copyright (c) Kim Jeong-Hwan All rights reserved. diff --git a/docs/baekmuk-fonts.html b/docs/baekmuk-fonts.html index bb4c99c365..441b59bf62 100644 --- a/docs/baekmuk-fonts.html +++ b/docs/baekmuk-fonts.html @@ -167,7 +167,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/baekmuk-fonts.json b/docs/baekmuk-fonts.json index fbb0390357..5a251a00be 100644 --- a/docs/baekmuk-fonts.json +++ b/docs/baekmuk-fonts.json @@ -1 +1,20 @@ -{"key": "baekmuk-fonts", "short_name": "Baekmuk Fonts License", "name": "Baekmuk Fonts License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "Baekmuk", "other_spdx_license_keys": ["LicenseRef-scancode-baekmuk-fonts"], "other_urls": ["https://fedoraproject.org/wiki/Licensing:Baekmuk?rd=Licensing/Baekmuk"], "ignorable_copyrights": ["Copyright (c) Kim Jeong-Hwan"], "ignorable_holders": ["Kim Jeong-Hwan"]} \ No newline at end of file +{ + "key": "baekmuk-fonts", + "short_name": "Baekmuk Fonts License", + "name": "Baekmuk Fonts License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "Baekmuk", + "other_spdx_license_keys": [ + "LicenseRef-scancode-baekmuk-fonts" + ], + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing:Baekmuk?rd=Licensing/Baekmuk" + ], + "ignorable_copyrights": [ + "Copyright (c) Kim Jeong-Hwan" + ], + "ignorable_holders": [ + "Kim Jeong-Hwan" + ] +} \ No newline at end of file diff --git a/docs/bahyph.LICENSE b/docs/bahyph.LICENSE index 110fbaf1a2..7d26c14331 100644 --- a/docs/bahyph.LICENSE +++ b/docs/bahyph.LICENSE @@ -1,3 +1,19 @@ +--- +key: bahyph +short_name: Bahyph License +name: Bahyph License +category: Permissive +owner: GMV +homepage_url: https://fedoraproject.org/wiki/Licensing/Bahyph +spdx_license_key: Bahyph +ignorable_copyrights: + - Copyright (c) GMV 1991 +ignorable_holders: + - GMV +ignorable_emails: + - tex@gmv.es +--- + COPYRIGHT NOTICE These patterns and the generating sh script are Copyright (c) GMV 1991 diff --git a/docs/bahyph.html b/docs/bahyph.html index 5c39bf82c1..18afa85e3e 100644 --- a/docs/bahyph.html +++ b/docs/bahyph.html @@ -164,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bahyph.json b/docs/bahyph.json index 525c05c318..42b50025a6 100644 --- a/docs/bahyph.json +++ b/docs/bahyph.json @@ -1 +1,18 @@ -{"key": "bahyph", "short_name": "Bahyph License", "name": "Bahyph License", "category": "Permissive", "owner": "GMV", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Bahyph", "spdx_license_key": "Bahyph", "ignorable_copyrights": ["Copyright (c) GMV 1991"], "ignorable_holders": ["GMV"], "ignorable_emails": ["tex@gmv.es"]} \ No newline at end of file +{ + "key": "bahyph", + "short_name": "Bahyph License", + "name": "Bahyph License", + "category": "Permissive", + "owner": "GMV", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Bahyph", + "spdx_license_key": "Bahyph", + "ignorable_copyrights": [ + "Copyright (c) GMV 1991" + ], + "ignorable_holders": [ + "GMV" + ], + "ignorable_emails": [ + "tex@gmv.es" + ] +} \ No newline at end of file diff --git a/docs/bakoma-fonts-1995.LICENSE b/docs/bakoma-fonts-1995.LICENSE index 801e20cd73..67e5ff80d9 100644 --- a/docs/bakoma-fonts-1995.LICENSE +++ b/docs/bakoma-fonts-1995.LICENSE @@ -1,3 +1,24 @@ +--- +key: bakoma-fonts-1995 +short_name: BaKoMa Fonts Licence 1995 +name: BaKoMa Fonts Licence 1995 +category: Permissive +owner: Unspecified +homepage_url: http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma +spdx_license_key: LicenseRef-scancode-bakoma-fonts-1995 +text_urls: + - http://ctan.cs.uu.nl/fonts/cm/ps-type1/bakoma/LICENCE + - http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma/LICENCE +ignorable_copyrights: + - Copyright (c) 1994, 1995, Basil K. Malyshev +ignorable_holders: + - Basil K. Malyshev +ignorable_urls: + - http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma +ignorable_emails: + - bakoma@mail.ru + - malyshev@mail.ihep.ru +--- BaKoMa Fonts Licence -------------------- @@ -36,5 +57,4 @@ RUSSIA E-Mail: bakoma@mail.ru - or malyshev@mail.ihep.ru - + or malyshev@mail.ihep.ru \ No newline at end of file diff --git a/docs/bakoma-fonts-1995.html b/docs/bakoma-fonts-1995.html index ce873f4d01..8f949531d9 100644 --- a/docs/bakoma-fonts-1995.html +++ b/docs/bakoma-fonts-1995.html @@ -160,8 +160,7 @@
license_text
-

-			BaKoMa Fonts Licence
+    
			BaKoMa Fonts Licence
 			--------------------
 
   This licence covers two font packs (known as BaKoMa Fonts Colelction,
@@ -198,9 +197,7 @@
  RUSSIA
 
  E-Mail:	bakoma@mail.ru
-      or	malyshev@mail.ihep.ru
-
-
+ or malyshev@mail.ihep.ru
@@ -212,7 +209,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bakoma-fonts-1995.json b/docs/bakoma-fonts-1995.json index 2747e78027..2035b82ddf 100644 --- a/docs/bakoma-fonts-1995.json +++ b/docs/bakoma-fonts-1995.json @@ -1 +1,26 @@ -{"key": "bakoma-fonts-1995", "short_name": "BaKoMa Fonts Licence 1995", "name": "BaKoMa Fonts Licence 1995", "category": "Permissive", "owner": "Unspecified", "homepage_url": "http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma", "spdx_license_key": "LicenseRef-scancode-bakoma-fonts-1995", "text_urls": ["http://ctan.cs.uu.nl/fonts/cm/ps-type1/bakoma/LICENCE", "http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma/LICENCE"], "ignorable_copyrights": ["Copyright (c) 1994, 1995, Basil K. Malyshev"], "ignorable_holders": ["Basil K. Malyshev"], "ignorable_urls": ["http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma"], "ignorable_emails": ["bakoma@mail.ru", "malyshev@mail.ihep.ru"]} \ No newline at end of file +{ + "key": "bakoma-fonts-1995", + "short_name": "BaKoMa Fonts Licence 1995", + "name": "BaKoMa Fonts Licence 1995", + "category": "Permissive", + "owner": "Unspecified", + "homepage_url": "http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma", + "spdx_license_key": "LicenseRef-scancode-bakoma-fonts-1995", + "text_urls": [ + "http://ctan.cs.uu.nl/fonts/cm/ps-type1/bakoma/LICENCE", + "http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma/LICENCE" + ], + "ignorable_copyrights": [ + "Copyright (c) 1994, 1995, Basil K. Malyshev" + ], + "ignorable_holders": [ + "Basil K. Malyshev" + ], + "ignorable_urls": [ + "http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma" + ], + "ignorable_emails": [ + "bakoma@mail.ru", + "malyshev@mail.ihep.ru" + ] +} \ No newline at end of file diff --git a/docs/bapl-1.0.LICENSE b/docs/bapl-1.0.LICENSE index 6104344ad6..6741c3ac79 100644 --- a/docs/bapl-1.0.LICENSE +++ b/docs/bapl-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: bapl-1.0 +short_name: Booz Allen Public License v1.0 +name: Booz Allen Public License v1.0 +category: Source-available +owner: Booz Allen Hamilton +homepage_url: https://github.com/boozallen/Public-License/blob/master/LICENSE.md +spdx_license_key: LicenseRef-scancode-bapl-1.0 +text_urls: + - https://raw.githubusercontent.com/boozallen/Public-License/master/LICENSE.md +ignorable_emails: + - opensource@bah.com +--- + ## Booz Allen Public License v1.0 diff --git a/docs/bapl-1.0.html b/docs/bapl-1.0.html index 8e2fd242b0..abf82d1a4c 100644 --- a/docs/bapl-1.0.html +++ b/docs/bapl-1.0.html @@ -193,7 +193,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bapl-1.0.json b/docs/bapl-1.0.json index 8b24a64208..f48b5d6854 100644 --- a/docs/bapl-1.0.json +++ b/docs/bapl-1.0.json @@ -1 +1,15 @@ -{"key": "bapl-1.0", "short_name": "Booz Allen Public License v1.0", "name": "Booz Allen Public License v1.0", "category": "Source-available", "owner": "Booz Allen Hamilton", "homepage_url": "https://github.com/boozallen/Public-License/blob/master/LICENSE.md", "spdx_license_key": "LicenseRef-scancode-bapl-1.0", "text_urls": ["https://raw.githubusercontent.com/boozallen/Public-License/master/LICENSE.md"], "ignorable_emails": ["opensource@bah.com"]} \ No newline at end of file +{ + "key": "bapl-1.0", + "short_name": "Booz Allen Public License v1.0", + "name": "Booz Allen Public License v1.0", + "category": "Source-available", + "owner": "Booz Allen Hamilton", + "homepage_url": "https://github.com/boozallen/Public-License/blob/master/LICENSE.md", + "spdx_license_key": "LicenseRef-scancode-bapl-1.0", + "text_urls": [ + "https://raw.githubusercontent.com/boozallen/Public-License/master/LICENSE.md" + ], + "ignorable_emails": [ + "opensource@bah.com" + ] +} \ No newline at end of file diff --git a/docs/barr-tex.LICENSE b/docs/barr-tex.LICENSE index f528655df4..4120ea180e 100644 --- a/docs/barr-tex.LICENSE +++ b/docs/barr-tex.LICENSE @@ -1,3 +1,15 @@ +--- +key: barr-tex +short_name: Barr TeX License +name: Barr TeX License +category: Permissive +owner: Michael Barr +homepage_url: https://fedoraproject.org/wiki/Licensing/Barr +spdx_license_key: Barr +ignorable_emails: + - barr@barrs.org +--- + This is a package of commutative diagram macros built on top of Xy-pic by Michael Barr (email: barr@barrs.org). Its use is unrestricted. It may be freely distributed, unchanged, for non-commercial or commercial use. If changed, it diff --git a/docs/barr-tex.html b/docs/barr-tex.html index 43bb566cc1..bbfdd893b0 100644 --- a/docs/barr-tex.html +++ b/docs/barr-tex.html @@ -143,7 +143,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/barr-tex.json b/docs/barr-tex.json index 8415ba0890..9a77eb5126 100644 --- a/docs/barr-tex.json +++ b/docs/barr-tex.json @@ -1 +1,12 @@ -{"key": "barr-tex", "short_name": "Barr TeX License", "name": "Barr TeX License", "category": "Permissive", "owner": "Michael Barr", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Barr", "spdx_license_key": "Barr", "ignorable_emails": ["barr@barrs.org"]} \ No newline at end of file +{ + "key": "barr-tex", + "short_name": "Barr TeX License", + "name": "Barr TeX License", + "category": "Permissive", + "owner": "Michael Barr", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Barr", + "spdx_license_key": "Barr", + "ignorable_emails": [ + "barr@barrs.org" + ] +} \ No newline at end of file diff --git a/docs/bash-exception-gpl.LICENSE b/docs/bash-exception-gpl.LICENSE index 50cba46e75..83afd92798 100644 --- a/docs/bash-exception-gpl.LICENSE +++ b/docs/bash-exception-gpl.LICENSE @@ -1,3 +1,16 @@ +--- +key: bash-exception-gpl +short_name: Bash exception to GPL +name: Bash exception to GPL +category: Copyleft +owner: Free Software Foundation (FSF) +notes: this used with GPL 1.0 and 2.0. It was removed from the V3 text https://git.savannah.gnu.org/cgit/bash.git/commit/COPYING?id=3185942a5234e26ab13fa02f9c51d340cec514f8 +is_exception: yes +spdx_license_key: LicenseRef-scancode-bash-exception-gpl-2.0 +text_urls: + - https://git.savannah.gnu.org/cgit/bash.git/plain/COPYING?h=bash-3.0-rc1&id=dd9e6dfa23d0dae4888f11fb8c6a27bc36d1b283 +--- + The Free Software Foundation has exempted Bash from the requirement of Paragraph 2c of the General Public License. This is to say, there is no requirement for Bash to print a notice when it is started diff --git a/docs/bash-exception-gpl.html b/docs/bash-exception-gpl.html index d2f57d9162..14c0f14765 100644 --- a/docs/bash-exception-gpl.html +++ b/docs/bash-exception-gpl.html @@ -149,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bash-exception-gpl.json b/docs/bash-exception-gpl.json index 52b928ecc1..8ac018abbf 100644 --- a/docs/bash-exception-gpl.json +++ b/docs/bash-exception-gpl.json @@ -1 +1,13 @@ -{"key": "bash-exception-gpl", "short_name": "Bash exception to GPL", "name": "Bash exception to GPL", "category": "Copyleft", "owner": "Free Software Foundation (FSF)", "notes": "this used with GPL 1.0 and 2.0. It was removed from the V3 text https://git.savannah.gnu.org/cgit/bash.git/commit/COPYING?id=3185942a5234e26ab13fa02f9c51d340cec514f8", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-bash-exception-gpl-2.0", "text_urls": ["https://git.savannah.gnu.org/cgit/bash.git/plain/COPYING?h=bash-3.0-rc1&id=dd9e6dfa23d0dae4888f11fb8c6a27bc36d1b283"]} \ No newline at end of file +{ + "key": "bash-exception-gpl", + "short_name": "Bash exception to GPL", + "name": "Bash exception to GPL", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "notes": "this used with GPL 1.0 and 2.0. It was removed from the V3 text https://git.savannah.gnu.org/cgit/bash.git/commit/COPYING?id=3185942a5234e26ab13fa02f9c51d340cec514f8", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-bash-exception-gpl-2.0", + "text_urls": [ + "https://git.savannah.gnu.org/cgit/bash.git/plain/COPYING?h=bash-3.0-rc1&id=dd9e6dfa23d0dae4888f11fb8c6a27bc36d1b283" + ] +} \ No newline at end of file diff --git a/docs/bea-2.1.LICENSE b/docs/bea-2.1.LICENSE index dbd03004c9..6afa2ed052 100644 --- a/docs/bea-2.1.LICENSE +++ b/docs/bea-2.1.LICENSE @@ -1,3 +1,16 @@ +--- +key: bea-2.1 +short_name: BEA 2.1 +name: BEA Public License 2.1 +category: Permissive +owner: Oracle Corporation +spdx_license_key: LicenseRef-scancode-bea-2.1 +ignorable_copyrights: + - (c) Date BEA Systems, Inc. +ignorable_holders: + - Date BEA Systems, Inc. +--- + BEA Public License Version 2.1 TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION diff --git a/docs/bea-2.1.html b/docs/bea-2.1.html index fe6c417e85..03fd88df59 100644 --- a/docs/bea-2.1.html +++ b/docs/bea-2.1.html @@ -189,7 +189,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bea-2.1.json b/docs/bea-2.1.json index bada52c015..3c6e84448b 100644 --- a/docs/bea-2.1.json +++ b/docs/bea-2.1.json @@ -1 +1,14 @@ -{"key": "bea-2.1", "short_name": "BEA 2.1", "name": "BEA Public License 2.1", "category": "Permissive", "owner": "Oracle Corporation", "spdx_license_key": "LicenseRef-scancode-bea-2.1", "ignorable_copyrights": ["(c) Date BEA Systems, Inc."], "ignorable_holders": ["Date BEA Systems, Inc."]} \ No newline at end of file +{ + "key": "bea-2.1", + "short_name": "BEA 2.1", + "name": "BEA Public License 2.1", + "category": "Permissive", + "owner": "Oracle Corporation", + "spdx_license_key": "LicenseRef-scancode-bea-2.1", + "ignorable_copyrights": [ + "(c) Date BEA Systems, Inc." + ], + "ignorable_holders": [ + "Date BEA Systems, Inc." + ] +} \ No newline at end of file diff --git a/docs/beal-screamer.LICENSE b/docs/beal-screamer.LICENSE index 616455a916..9286abebbe 100644 --- a/docs/beal-screamer.LICENSE +++ b/docs/beal-screamer.LICENSE @@ -1,3 +1,15 @@ +--- +key: beal-screamer +short_name: Beal Screamer License +name: Beal Screamer License +category: Permissive +owner: Bearcave.com +homepage_url: http://www.bearcave.com/misl/misl_tech/msdrm/license.html +spdx_license_key: LicenseRef-scancode-beal-screamer +text_urls: + - http://www.bearcave.com/misl/misl_tech/msdrm/license.html +--- + License by "Beal Screamer" diff --git a/docs/beal-screamer.html b/docs/beal-screamer.html index 82ed0a1836..2e131e7f93 100644 --- a/docs/beal-screamer.html +++ b/docs/beal-screamer.html @@ -154,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/beal-screamer.json b/docs/beal-screamer.json index 67266a2ef0..7781338812 100644 --- a/docs/beal-screamer.json +++ b/docs/beal-screamer.json @@ -1 +1,12 @@ -{"key": "beal-screamer", "short_name": "Beal Screamer License", "name": "Beal Screamer License", "category": "Permissive", "owner": "Bearcave.com", "homepage_url": "http://www.bearcave.com/misl/misl_tech/msdrm/license.html", "spdx_license_key": "LicenseRef-scancode-beal-screamer", "text_urls": ["http://www.bearcave.com/misl/misl_tech/msdrm/license.html"]} \ No newline at end of file +{ + "key": "beal-screamer", + "short_name": "Beal Screamer License", + "name": "Beal Screamer License", + "category": "Permissive", + "owner": "Bearcave.com", + "homepage_url": "http://www.bearcave.com/misl/misl_tech/msdrm/license.html", + "spdx_license_key": "LicenseRef-scancode-beal-screamer", + "text_urls": [ + "http://www.bearcave.com/misl/misl_tech/msdrm/license.html" + ] +} \ No newline at end of file diff --git a/docs/beerware.LICENSE b/docs/beerware.LICENSE index 0aa332ac8c..de37b06950 100644 --- a/docs/beerware.LICENSE +++ b/docs/beerware.LICENSE @@ -1,4 +1,21 @@ +--- +key: beerware +short_name: Beer-Ware License +name: Beer-Ware License +category: Permissive +owner: FreeBSD +homepage_url: http://people.freebsd.org/~phk/ +spdx_license_key: Beerware +text_urls: + - http://people.freebsd.org/~phk/ + - https://fedoraproject.org/wiki/Licensing/Beerware +other_urls: + - https://people.freebsd.org/~phk/ +ignorable_emails: + - phk@FreeBSD.ORG +--- + "THE BEER-WARE LICENSE" (Revision 42): wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think -this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp +this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp \ No newline at end of file diff --git a/docs/beerware.html b/docs/beerware.html index 866761e297..a68134da98 100644 --- a/docs/beerware.html +++ b/docs/beerware.html @@ -145,8 +145,7 @@
"THE BEER-WARE LICENSE" (Revision 42):
 <phk@FreeBSD.ORG> wrote this file. As long as you retain this notice you
 can do whatever you want with this stuff. If we meet some day, and you think
-this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp
-
+this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp
@@ -158,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/beerware.json b/docs/beerware.json index 30837e3231..4c720dbe25 100644 --- a/docs/beerware.json +++ b/docs/beerware.json @@ -1 +1,19 @@ -{"key": "beerware", "short_name": "Beer-Ware License", "name": "Beer-Ware License", "category": "Permissive", "owner": "FreeBSD", "homepage_url": "http://people.freebsd.org/~phk/", "spdx_license_key": "Beerware", "text_urls": ["http://people.freebsd.org/~phk/", "https://fedoraproject.org/wiki/Licensing/Beerware"], "other_urls": ["https://people.freebsd.org/~phk/"], "ignorable_emails": ["phk@FreeBSD.ORG"]} \ No newline at end of file +{ + "key": "beerware", + "short_name": "Beer-Ware License", + "name": "Beer-Ware License", + "category": "Permissive", + "owner": "FreeBSD", + "homepage_url": "http://people.freebsd.org/~phk/", + "spdx_license_key": "Beerware", + "text_urls": [ + "http://people.freebsd.org/~phk/", + "https://fedoraproject.org/wiki/Licensing/Beerware" + ], + "other_urls": [ + "https://people.freebsd.org/~phk/" + ], + "ignorable_emails": [ + "phk@FreeBSD.ORG" + ] +} \ No newline at end of file diff --git a/docs/beri-hw-sw-1.0.LICENSE b/docs/beri-hw-sw-1.0.LICENSE new file mode 100644 index 0000000000..58de1dae90 --- /dev/null +++ b/docs/beri-hw-sw-1.0.LICENSE @@ -0,0 +1,239 @@ +--- +key: beri-hw-sw-1.0 +short_name: BERI Hardware-Software License v1.0 +name: BERI Hardware-Software License v1.0 +category: Permissive +owner: BERI +homepage_url: http://www.beri-open-systems.org/legal/beri-hardware-software-license.txt +spdx_license_key: LicenseRef-scancode-beri-hw-sw-1.0 +other_urls: + - https://github.com/CTSRD-CHERI/beri +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.beri-open-systems.org/legal/license-1-0.txt +--- + +BERI HARDWARE-SOFTWARE LICENSE v1.0 + + This license is based closely on the Apache License Version 2.0, but is + not approved or endorsed by the Apache Foundation. Changes primarily + relate to broadening the set of rights covered by the license from simple + copyright to other hardware-related rights such as board layouts and CAD + files. A copy of the non-modified Apache License 2.0 can be found at + http://www.apache.org/licenses/LICENSE-2.0 + + As this license is not currently OSI or FSF approved, the Licensor + permits any Work licensed under this License, at the option of the + Licensee, to be treated as licensed under the Apache License Version 2.0 + (which is so approved). + + This License is licensed under the terms of this License and in + particular clause 7 below (Disclaimer of Warranties) applies in relation + to its use. + + + 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 Rights owner or entity authorized by + the Rights 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. + + "Rights" means copyright and any similar right including design right + (whether registered or unregistered), semiconductor topography (mask) + rights and database rights (but excluding Patents and Trademarks). + + "Source" form shall mean the preferred form for making modifications, + including but not limited to source code, net lists, board layouts, + CAD files, 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, the + instantiation of a hardware design and conversions to other media + types, including intermediate forms such as bytecodes, FPGA + bitstreams, artwork and semiconductor topographies (mask works). + + "Work" shall mean the work of authorship, whether in Source form or + other Object form, made available under the License, as indicated by a + Rights 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) or + physically connect to or interoperate with the interfaces of, the Work + and Derivative Works thereof. + + "Contribution" shall mean any design or 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 Rights owner + or by an individual or Legal Entity authorized to submit on behalf of + the Rights 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 Rights 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 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 license under the + Rights to reproduce, prepare Derivative Works of, publicly display, + publicly perform, sublicense, and distribute the Work and such + Derivative Works in Source or Object form and do anything in relation + to the Work as if the Rights did not exist. + + 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 this license to your work. + + To apply this 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] + + Copyright and related rights are licensed under the BERI Hardware-Software + License, Version 1.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.beri-open-systems.org/legal/license-1-0.txt + + Unless required by applicable law or agreed to in writing, software, + hardware and materials distributed under this 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. \ No newline at end of file diff --git a/docs/beri-hw-sw-1.0.html b/docs/beri-hw-sw-1.0.html new file mode 100644 index 0000000000..2fe5c9964c --- /dev/null +++ b/docs/beri-hw-sw-1.0.html @@ -0,0 +1,391 @@ + + + + + + LicenseDB: beri-hw-sw-1.0 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + beri-hw-sw-1.0 + +
+ +
short_name
+
+ + BERI Hardware-Software License v1.0 + +
+ +
name
+
+ + BERI Hardware-Software License v1.0 + +
+ +
category
+
+ + Permissive + +
+ +
owner
+
+ + BERI + +
+ +
homepage_url
+
+ + http://www.beri-open-systems.org/legal/beri-hardware-software-license.txt + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-beri-hw-sw-1.0 + +
+ +
other_urls
+
+ + + +
+ +
ignorable_urls
+
+ + + +
+ +
+
license_text
+
BERI HARDWARE-SOFTWARE LICENSE v1.0
+
+   This license is based closely on the Apache License Version 2.0, but is
+   not approved or endorsed by the Apache Foundation.  Changes primarily
+   relate to broadening the set of rights covered by the license from simple
+   copyright to other hardware-related rights such as board layouts and CAD
+   files.  A copy of the non-modified Apache License 2.0 can be found at
+   http://www.apache.org/licenses/LICENSE-2.0
+   
+   As this license is not currently OSI or FSF approved, the Licensor
+   permits any Work licensed under this License, at the option of the
+   Licensee, to be treated as licensed under the Apache License Version 2.0
+   (which is so approved).
+   
+   This License is licensed under the terms of this License and in
+   particular clause 7 below (Disclaimer of Warranties) applies in relation
+   to its use.
+   
+   
+   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 Rights owner or entity authorized by
+      the Rights 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.
+
+      "Rights" means copyright and any similar right including design right
+      (whether registered or unregistered), semiconductor topography (mask)
+      rights and database rights (but excluding Patents and Trademarks).
+      
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to source code, net lists, board layouts,
+      CAD files, 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, the
+      instantiation of a hardware design and conversions to other media
+      types, including intermediate forms such as bytecodes, FPGA
+      bitstreams, artwork and semiconductor topographies (mask works).
+
+      "Work" shall mean the work of authorship, whether in Source form or
+      other Object form, made available under the License, as indicated by a
+      Rights 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) or
+      physically connect to or interoperate with the interfaces of, the Work
+      and Derivative Works thereof.
+
+      "Contribution" shall mean any design or 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 Rights owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the Rights 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 Rights 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 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 license under the
+      Rights to reproduce, prepare Derivative Works of, publicly display,
+      publicly perform, sublicense, and distribute the Work and such
+      Derivative Works in Source or Object form and do anything in relation
+      to the Work as if the Rights did not exist.
+
+   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 this license to your work.
+
+      To apply this 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]
+
+   Copyright and related rights are licensed under the BERI Hardware-Software
+   License, Version 1.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.beri-open-systems.org/legal/license-1-0.txt
+
+   Unless required by applicable law or agreed to in writing, software,
+   hardware and materials distributed under this 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.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/beri-hw-sw-1.0.json b/docs/beri-hw-sw-1.0.json new file mode 100644 index 0000000000..4c6d09b7e4 --- /dev/null +++ b/docs/beri-hw-sw-1.0.json @@ -0,0 +1,16 @@ +{ + "key": "beri-hw-sw-1.0", + "short_name": "BERI Hardware-Software License v1.0", + "name": "BERI Hardware-Software License v1.0", + "category": "Permissive", + "owner": "BERI", + "homepage_url": "http://www.beri-open-systems.org/legal/beri-hardware-software-license.txt", + "spdx_license_key": "LicenseRef-scancode-beri-hw-sw-1.0", + "other_urls": [ + "https://github.com/CTSRD-CHERI/beri" + ], + "ignorable_urls": [ + "http://www.apache.org/licenses/LICENSE-2.0", + "http://www.beri-open-systems.org/legal/license-1-0.txt" + ] +} \ No newline at end of file diff --git a/docs/beri-hw-sw-1.0.yml b/docs/beri-hw-sw-1.0.yml new file mode 100644 index 0000000000..5de37890b4 --- /dev/null +++ b/docs/beri-hw-sw-1.0.yml @@ -0,0 +1,12 @@ +key: beri-hw-sw-1.0 +short_name: BERI Hardware-Software License v1.0 +name: BERI Hardware-Software License v1.0 +category: Permissive +owner: BERI +homepage_url: http://www.beri-open-systems.org/legal/beri-hardware-software-license.txt +spdx_license_key: LicenseRef-scancode-beri-hw-sw-1.0 +other_urls: + - https://github.com/CTSRD-CHERI/beri +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.beri-open-systems.org/legal/license-1-0.txt diff --git a/docs/bigdigits.LICENSE b/docs/bigdigits.LICENSE index 8c09798f5c..95968f09cd 100644 --- a/docs/bigdigits.LICENSE +++ b/docs/bigdigits.LICENSE @@ -1,3 +1,33 @@ +--- +key: bigdigits +short_name: BigDigits License +name: BigDigits License +category: Permissive +owner: DI Management Services +homepage_url: http://www.di-mgt.com.au/ +notes: | + As of version 2.5 (October 2015) we have re-issued this source code under + the Mozilla Public License, v. 2.0. We have no objection whatsoever to + developers using this code in commercial software or as part of an open + source project provided the MPL licence remains unchanged in our source + code modules. For reference, here is the old copyright and licence notice + for version 2.4 (April 2013) and earlier. +spdx_license_key: LicenseRef-scancode-bigdigits +text_urls: + - http://www.di-mgt.com.au/bigdigitsCopyright.txt + - https://web-beta.archive.org/web/20151013165906/http://www.di-mgt.com.au/bigdigitsCopyright.txt +ignorable_copyrights: + - copyright (c) 2001-11 D.I. Management Services Pty Limited + - copyright (c) 2001-11 by D.I. Management Services Pty Limited +ignorable_holders: + - D.I. Management Services Pty Limited +ignorable_authors: + - David Ireland +ignorable_urls: + - http://www.di-mgt.com.au/ + - http://www.di-mgt.com.au/bigdigits.html +--- + BigDigits License This source code is part of the BIGDIGITS multiple-precision arithmetic diff --git a/docs/bigdigits.html b/docs/bigdigits.html index 59befd36d8..3158eaafb6 100644 --- a/docs/bigdigits.html +++ b/docs/bigdigits.html @@ -216,7 +216,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bigdigits.json b/docs/bigdigits.json index f47c042b29..a78adc459f 100644 --- a/docs/bigdigits.json +++ b/docs/bigdigits.json @@ -1 +1,28 @@ -{"key": "bigdigits", "short_name": "BigDigits License", "name": "BigDigits License", "category": "Permissive", "owner": "DI Management Services", "homepage_url": "http://www.di-mgt.com.au/", "notes": "As of version 2.5 (October 2015) we have re-issued this source code under\nthe Mozilla Public License, v. 2.0. We have no objection whatsoever to\ndevelopers using this code in commercial software or as part of an open\nsource project provided the MPL licence remains unchanged in our source\ncode modules. For reference, here is the old copyright and licence notice\nfor version 2.4 (April 2013) and earlier.\n", "spdx_license_key": "LicenseRef-scancode-bigdigits", "text_urls": ["http://www.di-mgt.com.au/bigdigitsCopyright.txt", "https://web-beta.archive.org/web/20151013165906/http://www.di-mgt.com.au/bigdigitsCopyright.txt"], "ignorable_copyrights": ["copyright (c) 2001-11 D.I. Management Services Pty Limited", "copyright (c) 2001-11 by D.I. Management Services Pty Limited "], "ignorable_holders": ["D.I. Management Services Pty Limited"], "ignorable_authors": ["David Ireland"], "ignorable_urls": ["http://www.di-mgt.com.au/", "http://www.di-mgt.com.au/bigdigits.html"]} \ No newline at end of file +{ + "key": "bigdigits", + "short_name": "BigDigits License", + "name": "BigDigits License", + "category": "Permissive", + "owner": "DI Management Services", + "homepage_url": "http://www.di-mgt.com.au/", + "notes": "As of version 2.5 (October 2015) we have re-issued this source code under\nthe Mozilla Public License, v. 2.0. We have no objection whatsoever to\ndevelopers using this code in commercial software or as part of an open\nsource project provided the MPL licence remains unchanged in our source\ncode modules. For reference, here is the old copyright and licence notice\nfor version 2.4 (April 2013) and earlier.\n", + "spdx_license_key": "LicenseRef-scancode-bigdigits", + "text_urls": [ + "http://www.di-mgt.com.au/bigdigitsCopyright.txt", + "https://web-beta.archive.org/web/20151013165906/http://www.di-mgt.com.au/bigdigitsCopyright.txt" + ], + "ignorable_copyrights": [ + "copyright (c) 2001-11 D.I. Management Services Pty Limited", + "copyright (c) 2001-11 by D.I. Management Services Pty Limited " + ], + "ignorable_holders": [ + "D.I. Management Services Pty Limited" + ], + "ignorable_authors": [ + "David Ireland" + ], + "ignorable_urls": [ + "http://www.di-mgt.com.au/", + "http://www.di-mgt.com.au/bigdigits.html" + ] +} \ No newline at end of file diff --git a/docs/bigelow-holmes.LICENSE b/docs/bigelow-holmes.LICENSE index 3eb88a08e4..b1bfa0a7c5 100644 --- a/docs/bigelow-holmes.LICENSE +++ b/docs/bigelow-holmes.LICENSE @@ -1,3 +1,21 @@ +--- +key: bigelow-holmes +short_name: Bigelow & Holmes Lucida Fonts License +name: Bigelow & Holmes Lucida Fonts License +category: Permissive +owner: Oracle Corporation +homepage_url: http://www.opensolaris.org/os/project/indiana/resources/getit/OpenSolaris_Dev_Preview_Third_Party_License.txt +spdx_license_key: LicenseRef-scancode-bigelow-holmes +text_urls: + - http://www.opensolaris.org/os/project/indiana/resources/getit/OpenSolaris_Dev_Preview_Third_Party_License.txt +ignorable_copyrights: + - (c) Copyright 1989 Sun Microsystems, Inc. + - (c) Copyright Bigelow & Holmes 1986, 1985 +ignorable_holders: + - Bigelow & Holmes + - Sun Microsystems, Inc. +--- + This is the LEGAL NOTICE pertaining to the Lucida fonts from Bigelow & Holmes: NOTICE TO USER: The source code, including the glyphs or icons diff --git a/docs/bigelow-holmes.html b/docs/bigelow-holmes.html index 3698ceb4a5..92858671f0 100644 --- a/docs/bigelow-holmes.html +++ b/docs/bigelow-holmes.html @@ -206,7 +206,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bigelow-holmes.json b/docs/bigelow-holmes.json index 65ed7e6564..c5d9d2e87b 100644 --- a/docs/bigelow-holmes.json +++ b/docs/bigelow-holmes.json @@ -1 +1,20 @@ -{"key": "bigelow-holmes", "short_name": "Bigelow & Holmes Lucida Fonts License", "name": "Bigelow & Holmes Lucida Fonts License", "category": "Permissive", "owner": "Oracle Corporation", "homepage_url": "http://www.opensolaris.org/os/project/indiana/resources/getit/OpenSolaris_Dev_Preview_Third_Party_License.txt", "spdx_license_key": "LicenseRef-scancode-bigelow-holmes", "text_urls": ["http://www.opensolaris.org/os/project/indiana/resources/getit/OpenSolaris_Dev_Preview_Third_Party_License.txt"], "ignorable_copyrights": ["(c) Copyright 1989 Sun Microsystems, Inc.", "(c) Copyright Bigelow & Holmes 1986, 1985"], "ignorable_holders": ["Bigelow & Holmes", "Sun Microsystems, Inc."]} \ No newline at end of file +{ + "key": "bigelow-holmes", + "short_name": "Bigelow & Holmes Lucida Fonts License", + "name": "Bigelow & Holmes Lucida Fonts License", + "category": "Permissive", + "owner": "Oracle Corporation", + "homepage_url": "http://www.opensolaris.org/os/project/indiana/resources/getit/OpenSolaris_Dev_Preview_Third_Party_License.txt", + "spdx_license_key": "LicenseRef-scancode-bigelow-holmes", + "text_urls": [ + "http://www.opensolaris.org/os/project/indiana/resources/getit/OpenSolaris_Dev_Preview_Third_Party_License.txt" + ], + "ignorable_copyrights": [ + "(c) Copyright 1989 Sun Microsystems, Inc.", + "(c) Copyright Bigelow & Holmes 1986, 1985" + ], + "ignorable_holders": [ + "Bigelow & Holmes", + "Sun Microsystems, Inc." + ] +} \ No newline at end of file diff --git a/docs/bigscience-rail-1.0.LICENSE b/docs/bigscience-rail-1.0.LICENSE new file mode 100644 index 0000000000..8b309a1a1e --- /dev/null +++ b/docs/bigscience-rail-1.0.LICENSE @@ -0,0 +1,92 @@ +--- +key: bigscience-rail-1.0 +short_name: BigScience RAIL License v1.0 +name: BigScience RAIL License v1.0 +category: Proprietary Free +owner: BigScience +homepage_url: https://huggingface.co/spaces/bigscience/license +spdx_license_key: LicenseRef-scancode-bigscience-rail-1.0 +--- + +BigScience RAIL License v1.0 +dated May 19, 2022 + +This is a license (the “License”) between you (“You”) and the participants of BigScience (“Licensor”). Whereas the Apache 2.0 license was applicable to resources used to develop the Model, the licensing conditions have been modified for the access and distribution of the Model. This has been done to further BigScience’s aims of promoting not just open-access to its artifacts, but also a responsible use of these artifacts. Therefore, this Responsible AI License (RAIL)[1] aims at having an open and permissive character while striving for responsible use of the Model. + + + Section I: PREAMBLE + + +BigScience is a collaborative open innovation project aimed at the responsible development and use of large multilingual datasets and Large Language Models (“LLM”), as well as, the documentation of best practices and tools stemming from this collaborative effort. Further, BigScience participants wish to promote collaboration and sharing of research artifacts - including the Model - for the benefit of society, pursuant to this License. + + +The development and use of LLMs, and broadly artificial intelligence (“AI”), does not come without concerns. The world has witnessed how just a few companies/institutions are able to develop LLMs, and moreover, how Natural Language Processing techniques might, in some instances, become a risk for the public in general. Concerns might come in many forms, from racial discrimination to the treatment of sensitive information. + + +BigScience believes in the intersection between open and responsible AI development, thus, this License aims to strike a balance between both in order to enable responsible open-science for large language models and future NLP techniques. +This License governs the use of the BigScience BLOOM models (and their derivatives) and is informed by both the BigScience Ethical Charter and the model cards associated with the BigScience BLOOM models. BigScience has set forth its Ethical Charter representing the values of its community. Although the BigScience community does not aim to impose its values on potential users of this Model, it is determined to take tangible steps towards protecting the community from inappropriate uses of the work being developed by BigScience. +Furthermore, the model cards for the BigScience BLOOM models will inform the user about the limitations of the Model, and thus serves as the basis of some of the use-based restrictions in this License (See Part II). + +NOW THEREFORE, You and Licensor agree as follows: + +1. Definitions + + +1. "License" shall mean the terms and conditions for use, reproduction, and Distribution as defined in this document. +2. “Data” means a collection of texts extracted from the BigScience Corpus used with the Model, including to train, pretrain, or otherwise evaluate the Model. The Data is not licensed under this License. The BigScience Corpus is a collection of existing sources of language data documented on the BigScience website. +3. “Output” means the results of operating a Model as embodied in informational content resulting therefrom. +4. “Model” means any accompanying machine-learning based assemblies (including checkpoints), consisting of learnt weights, parameters (including optimizer states), corresponding to the BigScience BLOOM model architecture as embodied in the Complementary Material, that have been trained or tuned, in whole or in part, on the Data using the Complementary Material. +5. “Derivatives of the Model” means all modifications to the Model, works based on the Model, or any other model which is created or initialized by transfer of patterns of the weights, parameters, activations or output of the Model, to the other model, in order to cause the other model to perform similarly to the Model, including - but not limited to - distillation methods entailing the use of intermediate data representations or methods based on the generation of synthetic data by the Model for training the other model. +6. “Complementary Material” shall mean the accompanying source code and scripts used to define, run, load, benchmark or evaluate the Model, and used to prepare data for training or evaluation. This includes any accompanying documentation, tutorials, examples etc. +7. “Distribution” means any transmission, reproduction, publication or other sharing of the Model or Derivatives of the Model to a third party, including providing the Model as a hosted service made available by electronic or other remote means - e.g. API-based or web access. +8. “Licensor” means the copyright owner or entity authorized by the copyright owner that is granting the License, including the persons or entities that may have rights in the Model and/or distributing the Model. +9. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License and/or making use of the Model for whichever purpose and in any field of use, including usage of the Model in an end-use application - e.g. chatbot, translator. +10. “Third Parties” means individuals or legal entities that are not under common control with Licensor or You. +11. "Contribution" shall mean any work of authorship, including the original version of the Model and any modifications or additions to that Model or Derivatives of the Model thereof, that is intentionally submitted to Licensor for inclusion in the Model 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 Model, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." +12. "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 Model. + + + Section II: INTELLECTUAL PROPERTY RIGHTS +Both copyright and patent grants apply to the Model, Derivatives of the Model and Complementary Material. The Model and Derivatives of the Model are subject to additional terms as described in Section III. +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, publicly display, publicly perform, sublicense, and distribute the Complementary Material, the Model, and Derivatives of the Model. +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 paragraph) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Model and the Complementary Material, 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 Model 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 Model and/or Complementary Material or a Contribution incorporated within the Model and/or Complementary Material constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for the Model and/or Work shall terminate as of the date such litigation is filed. + + +Section III: CONDITIONS OF USAGE, DISTRIBUTION AND REDISTRIBUTION + + +4. Distribution and Redistribution. You may host for Third Party remote access purposes (e.g. software-as-a-service), reproduce and distribute copies of the Model or Derivatives of the Model thereof in any medium, with or without modifications, provided that You meet the following conditions: +1. Use-based restrictions as referenced in paragraph 5 MUST be included as an enforceable provision by You in any type of legal agreement (e.g. a license) governing the use and/or distribution of the Model or Derivatives of the Model, and You shall give notice to subsequent users You Distribute to, that the Model or Derivatives of the Model are subject to paragraph 5. This provision does not apply to the use of Complementary Material. +2. You must give any Third Party recipients of the Model or Derivatives of the Model a copy of this License; +3. You must cause any modified files to carry prominent notices stating that You changed the files; +4. You must retain all copyright, patent, trademark, and attribution notices excluding those notices that do not pertain to any part of the Model, Derivatives of the Model. +You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions - respecting paragraph 4.a. - for use, reproduction, or Distribution of Your modifications, or for any such Derivatives of the Model as a whole, provided Your use, reproduction, and Distribution of the Model otherwise complies with the conditions stated in this License. +5. Use-based restrictions. The restrictions set forth in Attachment A are considered Use-based restrictions. Therefore You cannot use the Model and the Derivatives of the Model for the specified restricted uses. You may use the Model subject to this License, including only for lawful purposes and in accordance with the License. Use may include creating any content with, finetuning, updating, running, training, evaluating and/or reparametrizing the Model. You shall require all of Your users who use the Model or a Derivative of the Model to comply with the terms of this paragraph (paragraph 5). +6. The Output You Generate. Except as set forth herein, Licensor claims no rights in the Output You generate using the Model. You are accountable for the Output you generate and its subsequent uses. No use of the output can contravene any provision as stated in the License. + + +Section IV: OTHER PROVISIONS +7. Updates and Runtime Restrictions. To the maximum extent permitted by law, Licensor reserves the right to restrict (remotely or otherwise) usage of the Model in violation of this License, update the Model through electronic means, or modify the Output of the Model based on updates. You shall undertake reasonable efforts to use the latest version of the Model. +8. Trademarks and related. Nothing in this License permits You to make use of Licensors’ trademarks, trade names, logos or to otherwise suggest endorsement or misrepresent the relationship between the parties; and any rights not expressly granted herein are reserved by the Licensors. +9. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Model and the Complementary Material (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 Model, Derivatives of the Model, and the Complementary Material and assume any risks associated with Your exercise of permissions under this License. +10. 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 Model and the Complementary Material (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. +11. Accepting Warranty or Additional Liability. While redistributing the Model, Derivatives of the Model and the Complementary Material 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. +12. If any provision of this License is held to be invalid, illegal or unenforceable, the remaining provisions shall be unaffected thereby and remain valid as if such provision had not been set forth herein. +END OF TERMS AND CONDITIONS + +Attachment A +Use Restrictions +You agree not to use the Model or Derivatives of the Model: +1. In any way that violates any applicable national, federal, state, local or international law or regulation; +2. For the purpose of exploiting, harming or attempting to exploit or harm minors in any way; +3. To generate or disseminate verifiably false information with the purpose of harming others; +4. To generate or disseminate personal identifiable information that can be used to harm an individual; +5. To generate or disseminate information or content, in any context (e.g. posts, articles, tweets, chatbots or other kinds of automated bots) without expressly and intelligibly disclaiming that the text is machine generated; +6. To defame, disparage or otherwise harass others; +7. To impersonate or attempt to impersonate others; +8. For fully automated decision making that adversely impacts an individual’s legal rights or otherwise creates or modifies a binding, enforceable obligation; +9. For any use intended to or which has the effect of discriminating against or harming individuals or groups based on online or offline social behavior or known or predicted personal or personality characteristics +10. To exploit any of the vulnerabilities of a specific group of persons based on their age, social, physical or mental characteristics, in order to materially distort the behavior of a person pertaining to that group in a manner that causes or is likely to cause that person or another person physical or psychological harm; +11. For any use intended to or which has the effect of discriminating against individuals or groups based on legally protected characteristics or categories; +12. To provide medical advice and medical results interpretation; +13. To generate or disseminate information for the purpose to be used for administration of justice, law enforcement, immigration or asylum processes, such as predicting an individual will commit fraud/crime commitment (e.g. by text profiling, drawing causal relationships between assertions made in documents, indiscriminate and arbitrarily-targeted use). \ No newline at end of file diff --git a/docs/bigscience-rail-1.0.html b/docs/bigscience-rail-1.0.html new file mode 100644 index 0000000000..b691a1cf47 --- /dev/null +++ b/docs/bigscience-rail-1.0.html @@ -0,0 +1,231 @@ + + + + + + LicenseDB: bigscience-rail-1.0 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + bigscience-rail-1.0 + +
+ +
short_name
+
+ + BigScience RAIL License v1.0 + +
+ +
name
+
+ + BigScience RAIL License v1.0 + +
+ +
category
+
+ + Proprietary Free + +
+ +
owner
+
+ + BigScience + +
+ +
homepage_url
+
+ + https://huggingface.co/spaces/bigscience/license + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-bigscience-rail-1.0 + +
+ +
+
license_text
+
BigScience RAIL License v1.0
+dated May 19, 2022
+
+This is a license (the “License”) between you (“You”) and the participants of BigScience (“Licensor”). Whereas the Apache 2.0 license was applicable to resources used to develop the Model, the licensing conditions have been modified for the access and distribution of the Model. This has been done to further BigScience’s aims of promoting not just open-access to its artifacts, but also a responsible use of these artifacts. Therefore, this Responsible AI License (RAIL)[1] aims at having an open and permissive character while striving for responsible use of the Model.
+
+
+                                                                    Section  I:  PREAMBLE
+
+
+BigScience is a collaborative open innovation project aimed at the responsible development and use of large multilingual datasets and Large Language Models (“LLM”), as well as, the documentation of best practices and tools stemming from this collaborative effort. Further, BigScience participants wish to promote collaboration and sharing of research artifacts - including the Model - for the benefit of society, pursuant to this License.
+
+
+The development and use of LLMs, and broadly artificial intelligence (“AI”), does not come without concerns. The world has witnessed how just a few companies/institutions are able to develop LLMs, and moreover, how Natural Language Processing techniques might, in some instances, become a risk for the public in general. Concerns might come in many forms, from racial discrimination to the treatment of sensitive information. 
+
+
+BigScience believes in the intersection between open and responsible AI development, thus, this License aims to strike a balance between both in order to enable responsible open-science for large language models and future NLP techniques. 
+This License governs the use of the BigScience BLOOM models (and their derivatives) and is informed by both the BigScience Ethical Charter and the model cards associated with the BigScience BLOOM models. BigScience has set forth its Ethical Charter representing the values of  its community. Although the BigScience community does not aim to impose its values on potential users of this Model, it is determined to take tangible steps towards protecting the community from inappropriate uses of the work being developed by BigScience.
+Furthermore, the model cards for the BigScience BLOOM models will inform the user about the limitations of the Model, and thus serves as the basis of some of the use-based restrictions in this License (See Part II).
+
+NOW THEREFORE, You and Licensor agree as follows:
+
+1. Definitions 
+
+
+1. "License" shall mean the terms and conditions for use, reproduction, and Distribution as defined in this document.
+2. “Data” means a collection of texts extracted from the BigScience Corpus used with the Model, including to train, pretrain, or otherwise evaluate the Model. The Data is not licensed under this License. The BigScience Corpus is a collection of existing sources of language data documented on the BigScience website.
+3. “Output” means the results of operating a Model as embodied in informational content resulting therefrom.
+4. “Model” means any accompanying machine-learning based assemblies (including checkpoints), consisting of learnt weights, parameters (including optimizer states), corresponding to the BigScience BLOOM model architecture as embodied in the Complementary Material, that have been trained or tuned, in whole or in part, on the Data using the Complementary Material. 
+5. “Derivatives of the Model” means all modifications to the Model, works based on the Model, or any other model which is created or initialized by transfer of patterns of the weights, parameters, activations or output of the Model, to the other model, in order to cause the other model to perform similarly to the Model, including - but not limited to - distillation methods entailing the use of intermediate data representations or methods based on the generation of synthetic data by the Model for training the other model.
+6. “Complementary Material” shall mean the accompanying source code and scripts used to define, run, load, benchmark or evaluate the Model, and used to prepare data for training or evaluation. This includes any accompanying documentation, tutorials, examples etc.
+7. “Distribution” means any transmission, reproduction, publication or other sharing of the Model or Derivatives of the Model to a third party, including providing the Model as a hosted service made available by electronic or other remote means - e.g. API-based or web access. 
+8. “Licensor” means the copyright owner or entity authorized by the copyright owner that is granting the License, including the persons or entities that may have rights in the Model and/or distributing the Model.
+9. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License and/or making use of the Model for whichever purpose and in any field of use, including usage of the Model in an end-use application - e.g. chatbot, translator.
+10. “Third Parties” means individuals or legal entities that are not under common control with Licensor or You.
+11. "Contribution" shall mean any work of authorship, including the original version of the Model and any modifications or additions to that Model or Derivatives of the Model thereof, that is intentionally submitted to Licensor for inclusion in the Model 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 Model, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." 
+12. "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 Model.
+
+
+                                              Section II:   INTELLECTUAL PROPERTY RIGHTS
+Both copyright and patent grants apply to the Model, Derivatives of the Model and Complementary Material. The Model and Derivatives of the Model are subject to additional terms as described in Section III.
+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, publicly display, publicly perform, sublicense, and distribute the Complementary Material, the Model, and Derivatives of the Model.
+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 paragraph) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Model and the Complementary Material, 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 Model 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 Model and/or Complementary Material or a Contribution incorporated within the Model and/or Complementary Material constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for the Model and/or Work shall terminate as of the date such litigation is filed.
+
+
+Section III: CONDITIONS OF USAGE, DISTRIBUTION AND REDISTRIBUTION
+
+
+4. Distribution and Redistribution. You may host for Third Party remote access purposes (e.g. software-as-a-service), reproduce and distribute copies of the Model or Derivatives of the Model thereof in any medium, with or without modifications, provided that You meet the following conditions:
+1. Use-based restrictions as referenced in paragraph 5 MUST be included as an enforceable provision by You in any type of legal agreement (e.g. a license) governing the use and/or distribution of the Model or Derivatives of the Model, and You shall give notice to subsequent users You Distribute to, that the Model or Derivatives of the Model are subject to paragraph 5. This provision does not apply to the use of Complementary Material.
+2. You must give any Third Party recipients of the Model or Derivatives of the Model a copy of this License; 
+3. You must cause any modified files to carry prominent notices stating that You changed the files; 
+4. You must retain all copyright, patent, trademark, and attribution notices excluding those notices that do not pertain to any part of the Model, Derivatives of the Model.
+You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions - respecting paragraph 4.a. - for use, reproduction, or Distribution of Your modifications, or for any such Derivatives of the Model as a whole, provided Your use, reproduction, and Distribution of the Model otherwise complies with the conditions stated in this License.
+5. Use-based restrictions. The restrictions set forth in Attachment A are considered Use-based restrictions. Therefore You cannot use the Model and the Derivatives of the Model for the specified restricted uses. You may use the Model subject to this License, including only for lawful purposes and in accordance with the License. Use may include creating any content with, finetuning, updating, running, training, evaluating and/or reparametrizing the Model. You shall require all of Your users who use the Model or a Derivative of the Model to comply with the terms of this paragraph (paragraph 5). 
+6.  The Output You Generate. Except as set forth herein, Licensor claims no rights in the Output You generate using the Model. You are accountable for the Output you generate and its subsequent uses. No use of the output can contravene any provision as stated in the License. 
+
+
+Section IV: OTHER PROVISIONS
+7. Updates and Runtime Restrictions. To the maximum extent permitted by law, Licensor reserves the right to restrict (remotely or otherwise) usage of the Model in violation of this License, update the Model through electronic means, or modify the Output of the Model based on updates. You shall undertake reasonable efforts to use the latest version of the Model.
+8. Trademarks and related. Nothing in this License permits You to make use of Licensors’ trademarks, trade names, logos or to otherwise suggest endorsement or misrepresent the relationship between the parties; and any rights not expressly granted herein are reserved by the Licensors.
+9. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Model and the Complementary Material (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 Model, Derivatives of the Model, and the Complementary Material and assume any risks associated with Your exercise of permissions under this License.
+10. 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 Model and the Complementary Material (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.
+11. Accepting Warranty or Additional Liability. While redistributing the Model, Derivatives of the Model and the Complementary Material 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.
+12. If any provision of this License is held to be invalid, illegal or unenforceable, the remaining provisions shall be unaffected thereby and remain valid as if such provision had not been set forth herein.
+END OF TERMS AND CONDITIONS
+
+Attachment A
+Use Restrictions
+You agree not to use the Model or Derivatives of the Model:
+1. In any way that violates any applicable national, federal, state, local or international law or regulation;
+2. For the purpose of exploiting, harming or attempting to exploit or harm minors in any way;
+3. To generate or disseminate verifiably false information with the purpose of harming others;
+4. To generate or disseminate personal identifiable information that can be used to harm an individual;
+5. To generate or disseminate information or content, in any context (e.g. posts, articles, tweets, chatbots or other kinds of automated bots) without expressly and intelligibly disclaiming that the text is machine generated; 
+6. To defame, disparage or otherwise harass others;
+7. To impersonate or attempt to impersonate others;
+8. For fully automated decision making that adversely impacts an individual’s legal rights or otherwise creates or modifies a binding, enforceable obligation;
+9. For any use intended to or which has the effect of discriminating against or harming individuals or groups based on online or offline social behavior or known or predicted personal or personality characteristics
+10. To exploit any of the vulnerabilities of a specific group of persons based on their age, social, physical or mental characteristics, in order to materially distort the behavior of a person pertaining to that group in a manner that causes or is likely to cause that person or another person physical or psychological harm;
+11. For any use intended to or which has the effect of discriminating against individuals or groups based on legally protected characteristics or categories;
+12. To provide medical advice and medical results interpretation; 
+13. To generate or disseminate information for the purpose to be used for administration of justice, law enforcement, immigration or asylum processes, such as predicting an individual will commit fraud/crime commitment (e.g. by text profiling, drawing causal relationships between assertions made in documents, indiscriminate and arbitrarily-targeted use).
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/bigscience-rail-1.0.json b/docs/bigscience-rail-1.0.json new file mode 100644 index 0000000000..12288fef43 --- /dev/null +++ b/docs/bigscience-rail-1.0.json @@ -0,0 +1,9 @@ +{ + "key": "bigscience-rail-1.0", + "short_name": "BigScience RAIL License v1.0", + "name": "BigScience RAIL License v1.0", + "category": "Proprietary Free", + "owner": "BigScience", + "homepage_url": "https://huggingface.co/spaces/bigscience/license", + "spdx_license_key": "LicenseRef-scancode-bigscience-rail-1.0" +} \ No newline at end of file diff --git a/docs/bigscience-rail-1.0.yml b/docs/bigscience-rail-1.0.yml new file mode 100644 index 0000000000..c1ac6ad525 --- /dev/null +++ b/docs/bigscience-rail-1.0.yml @@ -0,0 +1,7 @@ +key: bigscience-rail-1.0 +short_name: BigScience RAIL License v1.0 +name: BigScience RAIL License v1.0 +category: Proprietary Free +owner: BigScience +homepage_url: https://huggingface.co/spaces/bigscience/license +spdx_license_key: LicenseRef-scancode-bigscience-rail-1.0 diff --git a/docs/binary-linux-firmware-patent.LICENSE b/docs/binary-linux-firmware-patent.LICENSE index f9c386910c..9cd4687a1a 100644 --- a/docs/binary-linux-firmware-patent.LICENSE +++ b/docs/binary-linux-firmware-patent.LICENSE @@ -1,3 +1,15 @@ +--- +key: binary-linux-firmware-patent +short_name: Binary-Only Linux Firmware Patent License +name: Binary-Only Linux Firmware Patent License +category: Proprietary Free +owner: Unspecified +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/ +spdx_license_key: LicenseRef-scancode-binary-linux-firmware-patent +ignorable_urls: + - http://opensource.org/licenses +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/docs/binary-linux-firmware-patent.html b/docs/binary-linux-firmware-patent.html index 2c8474955f..d0f320698b 100644 --- a/docs/binary-linux-firmware-patent.html +++ b/docs/binary-linux-firmware-patent.html @@ -171,7 +171,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/binary-linux-firmware-patent.json b/docs/binary-linux-firmware-patent.json index fb2abce271..500503037b 100644 --- a/docs/binary-linux-firmware-patent.json +++ b/docs/binary-linux-firmware-patent.json @@ -1 +1,12 @@ -{"key": "binary-linux-firmware-patent", "short_name": "Binary-Only Linux Firmware Patent License", "name": "Binary-Only Linux Firmware Patent License", "category": "Proprietary Free", "owner": "Unspecified", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/", "spdx_license_key": "LicenseRef-scancode-binary-linux-firmware-patent", "ignorable_urls": ["http://opensource.org/licenses"]} \ No newline at end of file +{ + "key": "binary-linux-firmware-patent", + "short_name": "Binary-Only Linux Firmware Patent License", + "name": "Binary-Only Linux Firmware Patent License", + "category": "Proprietary Free", + "owner": "Unspecified", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/", + "spdx_license_key": "LicenseRef-scancode-binary-linux-firmware-patent", + "ignorable_urls": [ + "http://opensource.org/licenses" + ] +} \ No newline at end of file diff --git a/docs/binary-linux-firmware.LICENSE b/docs/binary-linux-firmware.LICENSE index d9ef502b47..7824947248 100644 --- a/docs/binary-linux-firmware.LICENSE +++ b/docs/binary-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: binary-linux-firmware +short_name: Binary-Only Linux Firmware License +name: Binary-Only Linux Firmware License +category: Proprietary Free +owner: Unspecified +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/ +spdx_license_key: LicenseRef-scancode-binary-linux-firmware +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/docs/binary-linux-firmware.html b/docs/binary-linux-firmware.html index a6feb8c0ab..b9aef01e3a 100644 --- a/docs/binary-linux-firmware.html +++ b/docs/binary-linux-firmware.html @@ -152,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/binary-linux-firmware.json b/docs/binary-linux-firmware.json index 29894d9adc..0a0916805d 100644 --- a/docs/binary-linux-firmware.json +++ b/docs/binary-linux-firmware.json @@ -1 +1,9 @@ -{"key": "binary-linux-firmware", "short_name": "Binary-Only Linux Firmware License", "name": "Binary-Only Linux Firmware License", "category": "Proprietary Free", "owner": "Unspecified", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/", "spdx_license_key": "LicenseRef-scancode-binary-linux-firmware"} \ No newline at end of file +{ + "key": "binary-linux-firmware", + "short_name": "Binary-Only Linux Firmware License", + "name": "Binary-Only Linux Firmware License", + "category": "Proprietary Free", + "owner": "Unspecified", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/", + "spdx_license_key": "LicenseRef-scancode-binary-linux-firmware" +} \ No newline at end of file diff --git a/docs/biopython.LICENSE b/docs/biopython.LICENSE index 6bac0b1157..39e6a4f598 100644 --- a/docs/biopython.LICENSE +++ b/docs/biopython.LICENSE @@ -1,3 +1,13 @@ +--- +key: biopython +short_name: Biopython License +name: Biopython License Agreement +category: Permissive +owner: Biopython +homepage_url: http://www.biopython.org/DIST/LICENSE +spdx_license_key: LicenseRef-scancode-biopython +--- + Biopython License Agreement Permission to use, copy, modify, and distribute this software and its diff --git a/docs/biopython.html b/docs/biopython.html index 129bdeed2f..85d01ae108 100644 --- a/docs/biopython.html +++ b/docs/biopython.html @@ -145,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/biopython.json b/docs/biopython.json index 2b62be73bc..b5ed88df53 100644 --- a/docs/biopython.json +++ b/docs/biopython.json @@ -1 +1,9 @@ -{"key": "biopython", "short_name": "Biopython License", "name": "Biopython License Agreement", "category": "Permissive", "owner": "Biopython", "homepage_url": "http://www.biopython.org/DIST/LICENSE", "spdx_license_key": "LicenseRef-scancode-biopython"} \ No newline at end of file +{ + "key": "biopython", + "short_name": "Biopython License", + "name": "Biopython License Agreement", + "category": "Permissive", + "owner": "Biopython", + "homepage_url": "http://www.biopython.org/DIST/LICENSE", + "spdx_license_key": "LicenseRef-scancode-biopython" +} \ No newline at end of file diff --git a/docs/biosl-4.0.LICENSE b/docs/biosl-4.0.LICENSE index e69de29bb2..b574ea6234 100644 --- a/docs/biosl-4.0.LICENSE +++ b/docs/biosl-4.0.LICENSE @@ -0,0 +1,9 @@ +--- +key: biosl-4.0 +is_deprecated: yes +short_name: BIOSL v4 +name: BIOSL v4 +category: Unstated License +owner: Unspecified +spdx_license_key: LicenseRef-scancode-biosl-4.0 +--- \ No newline at end of file diff --git a/docs/biosl-4.0.html b/docs/biosl-4.0.html index 235b34f846..1a52f3d99a 100644 --- a/docs/biosl-4.0.html +++ b/docs/biosl-4.0.html @@ -127,7 +127,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/biosl-4.0.json b/docs/biosl-4.0.json index fb8d4c68c3..4023245253 100644 --- a/docs/biosl-4.0.json +++ b/docs/biosl-4.0.json @@ -1 +1,9 @@ -{"key": "biosl-4.0", "is_deprecated": true, "short_name": "BIOSL v4", "name": "BIOSL v4", "category": "Unstated License", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-biosl-4.0"} \ No newline at end of file +{ + "key": "biosl-4.0", + "is_deprecated": true, + "short_name": "BIOSL v4", + "name": "BIOSL v4", + "category": "Unstated License", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-biosl-4.0" +} \ No newline at end of file diff --git a/docs/bison-exception-2.0.LICENSE b/docs/bison-exception-2.0.LICENSE index b1c2cd9577..36072ab7ff 100644 --- a/docs/bison-exception-2.0.LICENSE +++ b/docs/bison-exception-2.0.LICENSE @@ -1 +1,28 @@ +--- +key: bison-exception-2.0 +short_name: Bison exception to GPL 2.0 or later +name: Bison exception to GPL 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: LicenseRef-scancode-bison-exception-2.0 +faq_url: http://www.gnu.org/software/bison/manual/bison.html#Conditions +standard_notice: | + This library 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 2, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception, when this file is copied by Bison into a Bison + output file, you may use that output file without restriction. This special + exception was added by the Free Software Foundation in version 1.24 of + Bison. +--- + As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. This special exception was added by the Free Software Foundation in version 1.24 of Bison. \ No newline at end of file diff --git a/docs/bison-exception-2.0.html b/docs/bison-exception-2.0.html index ee1cf53fc4..b9e7d5d871 100644 --- a/docs/bison-exception-2.0.html +++ b/docs/bison-exception-2.0.html @@ -156,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bison-exception-2.0.json b/docs/bison-exception-2.0.json index 9ca8dbd9e5..9dd076589b 100644 --- a/docs/bison-exception-2.0.json +++ b/docs/bison-exception-2.0.json @@ -1 +1,11 @@ -{"key": "bison-exception-2.0", "short_name": "Bison exception to GPL 2.0 or later", "name": "Bison exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-bison-exception-2.0", "faq_url": "http://www.gnu.org/software/bison/manual/bison.html#Conditions", "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nAs a special exception, when this file is copied by Bison into a Bison\noutput file, you may use that output file without restriction. This special\nexception was added by the Free Software Foundation in version 1.24 of\nBison.\n"} \ No newline at end of file +{ + "key": "bison-exception-2.0", + "short_name": "Bison exception to GPL 2.0 or later", + "name": "Bison exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-bison-exception-2.0", + "faq_url": "http://www.gnu.org/software/bison/manual/bison.html#Conditions", + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nAs a special exception, when this file is copied by Bison into a Bison\noutput file, you may use that output file without restriction. This special\nexception was added by the Free Software Foundation in version 1.24 of\nBison.\n" +} \ No newline at end of file diff --git a/docs/bison-exception-2.2.LICENSE b/docs/bison-exception-2.2.LICENSE index 54d44dbfea..6b494b3cc7 100644 --- a/docs/bison-exception-2.2.LICENSE +++ b/docs/bison-exception-2.2.LICENSE @@ -1,3 +1,40 @@ +--- +key: bison-exception-2.2 +short_name: Bison 2.2 exception to GPL 2.0 or later +name: Bison 2.2 exception to GPL 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: Bison-exception-2.2 +faq_url: http://www.gnu.org/software/bison/manual/bison.html#Conditions +other_urls: + - http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141 +standard_notice: | + 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 2, 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, write to the + Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. + As a special exception, you may create a larger work that contains part or + all of the Bison parser skeleton and distribute that work under terms of + your choice, so long as that work isn't itself a parser generator using the + skeleton or a modified version thereof as a parser skeleton. Alternatively, + if you modify or redistribute the parser skeleton itself, you may (at your + option) remove this special exception, which will cause the skeleton and + the resulting Bison output files to be licensed under the GNU General + Public License without this special exception. + This special exception was added by the Free Software Foundation in version + 2.2 of Bison. +--- + As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton diff --git a/docs/bison-exception-2.2.html b/docs/bison-exception-2.2.html index d891f95cdd..f8efd7f7d3 100644 --- a/docs/bison-exception-2.2.html +++ b/docs/bison-exception-2.2.html @@ -183,7 +183,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bison-exception-2.2.json b/docs/bison-exception-2.2.json index 9101a13ac0..4c561e65f2 100644 --- a/docs/bison-exception-2.2.json +++ b/docs/bison-exception-2.2.json @@ -1 +1,14 @@ -{"key": "bison-exception-2.2", "short_name": "Bison 2.2 exception to GPL 2.0 or later", "name": "Bison 2.2 exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "is_exception": true, "spdx_license_key": "Bison-exception-2.2", "faq_url": "http://www.gnu.org/software/bison/manual/bison.html#Conditions", "other_urls": ["http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141"], "standard_notice": "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis program is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this program; if not, write to the\nFree Software Foundation, Inc.,\n51 Franklin Street, Fifth Floor,\nBoston, MA 02110-1301, USA.\nAs a special exception, you may create a larger work that contains part or\nall of the Bison parser skeleton and distribute that work under terms of\nyour choice, so long as that work isn't itself a parser generator using the\nskeleton or a modified version thereof as a parser skeleton. Alternatively,\nif you modify or redistribute the parser skeleton itself, you may (at your\noption) remove this special exception, which will cause the skeleton and\nthe resulting Bison output files to be licensed under the GNU General\nPublic License without this special exception.\nThis special exception was added by the Free Software Foundation in version\n2.2 of Bison.\n"} \ No newline at end of file +{ + "key": "bison-exception-2.2", + "short_name": "Bison 2.2 exception to GPL 2.0 or later", + "name": "Bison 2.2 exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "is_exception": true, + "spdx_license_key": "Bison-exception-2.2", + "faq_url": "http://www.gnu.org/software/bison/manual/bison.html#Conditions", + "other_urls": [ + "http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141" + ], + "standard_notice": "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis program is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this program; if not, write to the\nFree Software Foundation, Inc.,\n51 Franklin Street, Fifth Floor,\nBoston, MA 02110-1301, USA.\nAs a special exception, you may create a larger work that contains part or\nall of the Bison parser skeleton and distribute that work under terms of\nyour choice, so long as that work isn't itself a parser generator using the\nskeleton or a modified version thereof as a parser skeleton. Alternatively,\nif you modify or redistribute the parser skeleton itself, you may (at your\noption) remove this special exception, which will cause the skeleton and\nthe resulting Bison output files to be licensed under the GNU General\nPublic License without this special exception.\nThis special exception was added by the Free Software Foundation in version\n2.2 of Bison.\n" +} \ No newline at end of file diff --git a/docs/bitstream.LICENSE b/docs/bitstream.LICENSE index 4a354254da..dba80785df 100644 --- a/docs/bitstream.LICENSE +++ b/docs/bitstream.LICENSE @@ -1,3 +1,21 @@ +--- +key: bitstream +short_name: Bitstream Vera Font License +name: Bitstream Vera Font License +category: Permissive +owner: Bitstream +homepage_url: http://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts +spdx_license_key: Bitstream-Vera +other_spdx_license_keys: + - LicenseRef-scancode-bitstream +text_urls: + - http://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts +other_urls: + - https://docubrain.com/sites/default/files/licenses/bitstream-vera.html + - https://web.archive.org/web/20080207013128/http://www.gnome.org/fonts/ +minimum_coverage: 50 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute diff --git a/docs/bitstream.html b/docs/bitstream.html index e10f6da0fb..5ca3009e5e 100644 --- a/docs/bitstream.html +++ b/docs/bitstream.html @@ -131,6 +131,15 @@ +
other_urls
+
+ + + +
+
minimum_coverage
@@ -193,7 +202,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bitstream.json b/docs/bitstream.json index aad0b163f5..1b34bcddfa 100644 --- a/docs/bitstream.json +++ b/docs/bitstream.json @@ -1 +1,20 @@ -{"key": "bitstream", "short_name": "Bitstream Vera Font License", "name": "Bitstream Vera Font License", "category": "Permissive", "owner": "Bitstream", "homepage_url": "http://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts", "spdx_license_key": "Bitstream-Vera", "other_spdx_license_keys": ["LicenseRef-scancode-bitstream"], "text_urls": ["http://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts"], "minimum_coverage": 50} \ No newline at end of file +{ + "key": "bitstream", + "short_name": "Bitstream Vera Font License", + "name": "Bitstream Vera Font License", + "category": "Permissive", + "owner": "Bitstream", + "homepage_url": "http://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts", + "spdx_license_key": "Bitstream-Vera", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bitstream" + ], + "text_urls": [ + "http://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts" + ], + "other_urls": [ + "https://docubrain.com/sites/default/files/licenses/bitstream-vera.html", + "https://web.archive.org/web/20080207013128/http://www.gnome.org/fonts/" + ], + "minimum_coverage": 50 +} \ No newline at end of file diff --git a/docs/bitstream.yml b/docs/bitstream.yml index a5c90883c4..f16d5984e8 100644 --- a/docs/bitstream.yml +++ b/docs/bitstream.yml @@ -9,4 +9,7 @@ other_spdx_license_keys: - LicenseRef-scancode-bitstream text_urls: - http://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts +other_urls: + - https://docubrain.com/sites/default/files/licenses/bitstream-vera.html + - https://web.archive.org/web/20080207013128/http://www.gnome.org/fonts/ minimum_coverage: 50 diff --git a/docs/bittorrent-1.0.LICENSE b/docs/bittorrent-1.0.LICENSE index 2fab309734..44d63e4365 100644 --- a/docs/bittorrent-1.0.LICENSE +++ b/docs/bittorrent-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: bittorrent-1.0 +short_name: BitTorrent 1.0 +name: BitTorrent Open Source License 1.0 +category: Copyleft Limited +owner: BitTorrent, Inc. +homepage_url: http://www.bittorrent.com/license/ +spdx_license_key: BitTorrent-1.0 +text_urls: + - http://web.archive.org/web/20050209224501/http://www.bittorrent.com/license/ + - http://www.bittorrent.com/license/ + - https://spdx.org/licenses/BitTorrent-1.0.html +other_urls: + - http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1=1.1&r2=1.1.1.1&diff_format=s +ignorable_urls: + - http://www.bittorrent.com/license +--- + BitTorrent Open Source License Version 1.0 @@ -327,5 +345,4 @@ copy or use this file, in either source code or executable form, except in compl obtain a copy of the License at http://www.bittorrent.com/license/. Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express -or implied. See the License for the specific language governing rights and limitations under the License. - +or implied. See the License for the specific language governing rights and limitations under the License. \ No newline at end of file diff --git a/docs/bittorrent-1.0.html b/docs/bittorrent-1.0.html index 0a4c434b15..7e2959e5bc 100644 --- a/docs/bittorrent-1.0.html +++ b/docs/bittorrent-1.0.html @@ -471,9 +471,7 @@ obtain a copy of the License at http://www.bittorrent.com/license/. Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express -or implied. See the License for the specific language governing rights and limitations under the License. - - +or implied. See the License for the specific language governing rights and limitations under the License.
@@ -485,7 +483,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bittorrent-1.0.json b/docs/bittorrent-1.0.json index 76771508b3..143f604c58 100644 --- a/docs/bittorrent-1.0.json +++ b/docs/bittorrent-1.0.json @@ -1 +1,20 @@ -{"key": "bittorrent-1.0", "short_name": "BitTorrent 1.0", "name": "BitTorrent Open Source License 1.0", "category": "Copyleft Limited", "owner": "BitTorrent, Inc.", "homepage_url": "http://www.bittorrent.com/license/", "spdx_license_key": "BitTorrent-1.0", "text_urls": ["http://web.archive.org/web/20050209224501/http://www.bittorrent.com/license/", "http://www.bittorrent.com/license/", "https://spdx.org/licenses/BitTorrent-1.0.html"], "other_urls": ["http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1=1.1&r2=1.1.1.1&diff_format=s"], "ignorable_urls": ["http://www.bittorrent.com/license"]} \ No newline at end of file +{ + "key": "bittorrent-1.0", + "short_name": "BitTorrent 1.0", + "name": "BitTorrent Open Source License 1.0", + "category": "Copyleft Limited", + "owner": "BitTorrent, Inc.", + "homepage_url": "http://www.bittorrent.com/license/", + "spdx_license_key": "BitTorrent-1.0", + "text_urls": [ + "http://web.archive.org/web/20050209224501/http://www.bittorrent.com/license/", + "http://www.bittorrent.com/license/", + "https://spdx.org/licenses/BitTorrent-1.0.html" + ], + "other_urls": [ + "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1=1.1&r2=1.1.1.1&diff_format=s" + ], + "ignorable_urls": [ + "http://www.bittorrent.com/license" + ] +} \ No newline at end of file diff --git a/docs/bittorrent-1.1.LICENSE b/docs/bittorrent-1.1.LICENSE index bdb8bde8a4..ba47aa5f4d 100644 --- a/docs/bittorrent-1.1.LICENSE +++ b/docs/bittorrent-1.1.LICENSE @@ -1,3 +1,23 @@ +--- +key: bittorrent-1.1 +short_name: BitTorrent 1.1 +name: BitTorrent Open Source License 1.1 +category: Copyleft Limited +owner: BitTorrent, Inc. +homepage_url: https://web.archive.org/web/20080213154112/http://www.bittorrent.com/bittorrent-open-source-license +notes: | + The link http://www.bittorrent.com/license/ is dead, so there is no live + text containing the license terms except at + http://web.archive.org/web/20090609222926/http://www.bittorrent.com/legal/bittorrent-open-source-license +spdx_license_key: BitTorrent-1.1 +text_urls: + - http://www.bittorrent.com/legal/bittorrent-open-source-license +other_urls: + - http://directory.fsf.org/wiki/License:BitTorrentOSL1.1 +ignorable_urls: + - http://www.bittorrent.com/license +--- + BitTorrent Open Source License Version 1.1 @@ -136,4 +156,4 @@ License: The contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/. -Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. +Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. \ No newline at end of file diff --git a/docs/bittorrent-1.1.html b/docs/bittorrent-1.1.html index 22a3d5ea70..d425693600 100644 --- a/docs/bittorrent-1.1.html +++ b/docs/bittorrent-1.1.html @@ -290,8 +290,7 @@ The contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/. -Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. - +Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
@@ -303,7 +302,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bittorrent-1.1.json b/docs/bittorrent-1.1.json index 6de2864ebb..c5e4c04b70 100644 --- a/docs/bittorrent-1.1.json +++ b/docs/bittorrent-1.1.json @@ -1 +1,19 @@ -{"key": "bittorrent-1.1", "short_name": "BitTorrent 1.1", "name": "BitTorrent Open Source License 1.1", "category": "Copyleft Limited", "owner": "BitTorrent, Inc.", "homepage_url": "https://web.archive.org/web/20080213154112/http://www.bittorrent.com/bittorrent-open-source-license", "notes": "The link http://www.bittorrent.com/license/ is dead, so there is no live\ntext containing the license terms except at\nhttp://web.archive.org/web/20090609222926/http://www.bittorrent.com/legal/bittorrent-open-source-license\n", "spdx_license_key": "BitTorrent-1.1", "text_urls": ["http://www.bittorrent.com/legal/bittorrent-open-source-license"], "other_urls": ["http://directory.fsf.org/wiki/License:BitTorrentOSL1.1"], "ignorable_urls": ["http://www.bittorrent.com/license"]} \ No newline at end of file +{ + "key": "bittorrent-1.1", + "short_name": "BitTorrent 1.1", + "name": "BitTorrent Open Source License 1.1", + "category": "Copyleft Limited", + "owner": "BitTorrent, Inc.", + "homepage_url": "https://web.archive.org/web/20080213154112/http://www.bittorrent.com/bittorrent-open-source-license", + "notes": "The link http://www.bittorrent.com/license/ is dead, so there is no live\ntext containing the license terms except at\nhttp://web.archive.org/web/20090609222926/http://www.bittorrent.com/legal/bittorrent-open-source-license\n", + "spdx_license_key": "BitTorrent-1.1", + "text_urls": [ + "http://www.bittorrent.com/legal/bittorrent-open-source-license" + ], + "other_urls": [ + "http://directory.fsf.org/wiki/License:BitTorrentOSL1.1" + ], + "ignorable_urls": [ + "http://www.bittorrent.com/license" + ] +} \ No newline at end of file diff --git a/docs/bittorrent-1.2.LICENSE b/docs/bittorrent-1.2.LICENSE index 77c2ace8b1..59d344902c 100644 --- a/docs/bittorrent-1.2.LICENSE +++ b/docs/bittorrent-1.2.LICENSE @@ -1,3 +1,15 @@ +--- +key: bittorrent-1.2 +short_name: BitTorrent 1.2 +name: BitTorrent Open Source License 1.2 +category: Copyleft Limited +owner: BitTorrent, Inc. +homepage_url: http://www.bittorrent.com/license/ +spdx_license_key: LicenseRef-scancode-bittorrent-1.2 +ignorable_urls: + - http://www.bittorrent.com/license +--- + BitTorrent Open Source License Version 1.2 diff --git a/docs/bittorrent-1.2.html b/docs/bittorrent-1.2.html index aca4d68253..ff1af8fb3f 100644 --- a/docs/bittorrent-1.2.html +++ b/docs/bittorrent-1.2.html @@ -220,7 +220,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bittorrent-1.2.json b/docs/bittorrent-1.2.json index 3f8ad9e2b2..75edaf9803 100644 --- a/docs/bittorrent-1.2.json +++ b/docs/bittorrent-1.2.json @@ -1 +1,12 @@ -{"key": "bittorrent-1.2", "short_name": "BitTorrent 1.2", "name": "BitTorrent Open Source License 1.2", "category": "Copyleft Limited", "owner": "BitTorrent, Inc.", "homepage_url": "http://www.bittorrent.com/license/", "spdx_license_key": "LicenseRef-scancode-bittorrent-1.2", "ignorable_urls": ["http://www.bittorrent.com/license"]} \ No newline at end of file +{ + "key": "bittorrent-1.2", + "short_name": "BitTorrent 1.2", + "name": "BitTorrent Open Source License 1.2", + "category": "Copyleft Limited", + "owner": "BitTorrent, Inc.", + "homepage_url": "http://www.bittorrent.com/license/", + "spdx_license_key": "LicenseRef-scancode-bittorrent-1.2", + "ignorable_urls": [ + "http://www.bittorrent.com/license" + ] +} \ No newline at end of file diff --git a/docs/bittorrent-eula.LICENSE b/docs/bittorrent-eula.LICENSE index 02af42532d..0ad7ac0452 100644 --- a/docs/bittorrent-eula.LICENSE +++ b/docs/bittorrent-eula.LICENSE @@ -1,3 +1,18 @@ +--- +key: bittorrent-eula +short_name: BitTorrent EULA +name: BitTorrent End User License Agreement (EULA) +category: Proprietary Free +owner: BitTorrent, Inc. +homepage_url: http://www.bittorrent.com/legal/eula +spdx_license_key: LicenseRef-scancode-bittorrent-eula +ignorable_urls: + - http://www.bittorrent.com/legal/eula + - http://www.bittorrent.com/legal/terms-of-use +ignorable_emails: + - legal@bittorrent.com +--- + End User License Agreement (EULA) By accepting this agreement or by installing BitTorrent or uTorrent or other software offered by or on behalf of BitTorrent, Inc. (the "Software") or by clicking "Install", you agree to the following terms, notwithstanding anything to the contrary in this agreement. diff --git a/docs/bittorrent-eula.html b/docs/bittorrent-eula.html index e14a9de840..cf1ca9816d 100644 --- a/docs/bittorrent-eula.html +++ b/docs/bittorrent-eula.html @@ -179,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bittorrent-eula.json b/docs/bittorrent-eula.json index b9c1a63dbc..c9f3f0ed06 100644 --- a/docs/bittorrent-eula.json +++ b/docs/bittorrent-eula.json @@ -1 +1,16 @@ -{"key": "bittorrent-eula", "short_name": "BitTorrent EULA", "name": "BitTorrent End User License Agreement (EULA)", "category": "Proprietary Free", "owner": "BitTorrent, Inc.", "homepage_url": "http://www.bittorrent.com/legal/eula", "spdx_license_key": "LicenseRef-scancode-bittorrent-eula", "ignorable_urls": ["http://www.bittorrent.com/legal/eula", "http://www.bittorrent.com/legal/terms-of-use"], "ignorable_emails": ["legal@bittorrent.com"]} \ No newline at end of file +{ + "key": "bittorrent-eula", + "short_name": "BitTorrent EULA", + "name": "BitTorrent End User License Agreement (EULA)", + "category": "Proprietary Free", + "owner": "BitTorrent, Inc.", + "homepage_url": "http://www.bittorrent.com/legal/eula", + "spdx_license_key": "LicenseRef-scancode-bittorrent-eula", + "ignorable_urls": [ + "http://www.bittorrent.com/legal/eula", + "http://www.bittorrent.com/legal/terms-of-use" + ], + "ignorable_emails": [ + "legal@bittorrent.com" + ] +} \ No newline at end of file diff --git a/docs/bitwarden-1.0.LICENSE b/docs/bitwarden-1.0.LICENSE index 62073e837a..b0c189ee94 100644 --- a/docs/bitwarden-1.0.LICENSE +++ b/docs/bitwarden-1.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: bitwarden-1.0 +short_name: Bitwarden License Agreement v1 +name: Bitwarden License Agreement v1 +category: Source-available +owner: Bitwarden +homepage_url: https://github.com/bitwarden/server/blob/v1.38.1/LICENSE_BITWARDEN.txt +spdx_license_key: LicenseRef-scancode-bitwarden-1.0 +faq_url: https://github.com/bitwarden/server/blob/v1.38.1/LICENSE_FAQ.md +--- + BITWARDEN LICENSE AGREEMENT Version 1, 4 September 2020 diff --git a/docs/bitwarden-1.0.html b/docs/bitwarden-1.0.html index f7261f7669..23691c5d69 100644 --- a/docs/bitwarden-1.0.html +++ b/docs/bitwarden-1.0.html @@ -309,7 +309,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bitwarden-1.0.json b/docs/bitwarden-1.0.json index 5c8e10505a..4632fdf534 100644 --- a/docs/bitwarden-1.0.json +++ b/docs/bitwarden-1.0.json @@ -1 +1,10 @@ -{"key": "bitwarden-1.0", "short_name": "Bitwarden License Agreement v1", "name": "Bitwarden License Agreement v1", "category": "Source-available", "owner": "Bitwarden", "homepage_url": "https://github.com/bitwarden/server/blob/v1.38.1/LICENSE_BITWARDEN.txt", "spdx_license_key": "LicenseRef-scancode-bitwarden-1.0", "faq_url": "https://github.com/bitwarden/server/blob/v1.38.1/LICENSE_FAQ.md"} \ No newline at end of file +{ + "key": "bitwarden-1.0", + "short_name": "Bitwarden License Agreement v1", + "name": "Bitwarden License Agreement v1", + "category": "Source-available", + "owner": "Bitwarden", + "homepage_url": "https://github.com/bitwarden/server/blob/v1.38.1/LICENSE_BITWARDEN.txt", + "spdx_license_key": "LicenseRef-scancode-bitwarden-1.0", + "faq_url": "https://github.com/bitwarden/server/blob/v1.38.1/LICENSE_FAQ.md" +} \ No newline at end of file diff --git a/docs/bitzi-pd.LICENSE b/docs/bitzi-pd.LICENSE index 5826abde8d..f235c22860 100644 --- a/docs/bitzi-pd.LICENSE +++ b/docs/bitzi-pd.LICENSE @@ -1,3 +1,17 @@ +--- +key: bitzi-pd +short_name: Bitzi-PD +name: Bitzi Public Domain +category: Permissive +owner: Bitzi Corporation +homepage_url: http://bitzi.com/publicdomain +spdx_license_key: LicenseRef-scancode-bitzi-pd +ignorable_urls: + - http://bitzi.com/publicdomain +ignorable_emails: + - info@bitzi.com +--- + BITZI PUBLIC DOMAIN NOTICES UPDATED July 13, 2006 diff --git a/docs/bitzi-pd.html b/docs/bitzi-pd.html index 775a029014..1d070d1481 100644 --- a/docs/bitzi-pd.html +++ b/docs/bitzi-pd.html @@ -228,7 +228,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bitzi-pd.json b/docs/bitzi-pd.json index da2447615e..6cd33bb35f 100644 --- a/docs/bitzi-pd.json +++ b/docs/bitzi-pd.json @@ -1 +1,15 @@ -{"key": "bitzi-pd", "short_name": "Bitzi-PD", "name": "Bitzi Public Domain", "category": "Permissive", "owner": "Bitzi Corporation", "homepage_url": "http://bitzi.com/publicdomain", "spdx_license_key": "LicenseRef-scancode-bitzi-pd", "ignorable_urls": ["http://bitzi.com/publicdomain"], "ignorable_emails": ["info@bitzi.com"]} \ No newline at end of file +{ + "key": "bitzi-pd", + "short_name": "Bitzi-PD", + "name": "Bitzi Public Domain", + "category": "Permissive", + "owner": "Bitzi Corporation", + "homepage_url": "http://bitzi.com/publicdomain", + "spdx_license_key": "LicenseRef-scancode-bitzi-pd", + "ignorable_urls": [ + "http://bitzi.com/publicdomain" + ], + "ignorable_emails": [ + "info@bitzi.com" + ] +} \ No newline at end of file diff --git a/docs/blas-2017.LICENSE b/docs/blas-2017.LICENSE index fb6684627c..1875d0dd25 100644 --- a/docs/blas-2017.LICENSE +++ b/docs/blas-2017.LICENSE @@ -1,3 +1,17 @@ +--- +key: blas-2017 +short_name: BLAS License 2017 +name: BLAS License 2017 +category: Permissive +owner: BLAS Project +homepage_url: http://www.netlib.org/blas/#_licensing +spdx_license_key: LicenseRef-scancode-blas-2017 +text_urls: + - https://android.googlesource.com/platform/external/cblas/+/master/LICENSE +other_urls: + - http://www.netlib.org/lapack/ +--- + The reference BLAS is a freely-available software package. It is available from netlib via anonymous ftp and the World Wide Web. Thus, it can be included in commercial software packages (and has been). We diff --git a/docs/blas-2017.html b/docs/blas-2017.html index 87909b0fd5..a46f3a315f 100644 --- a/docs/blas-2017.html +++ b/docs/blas-2017.html @@ -158,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/blas-2017.json b/docs/blas-2017.json index 2f2e628e55..f5a99e85f0 100644 --- a/docs/blas-2017.json +++ b/docs/blas-2017.json @@ -1 +1,15 @@ -{"key": "blas-2017", "short_name": "BLAS License 2017", "name": "BLAS License 2017", "category": "Permissive", "owner": "BLAS Project", "homepage_url": "http://www.netlib.org/blas/#_licensing", "spdx_license_key": "LicenseRef-scancode-blas-2017", "text_urls": ["https://android.googlesource.com/platform/external/cblas/+/master/LICENSE"], "other_urls": ["http://www.netlib.org/lapack/"]} \ No newline at end of file +{ + "key": "blas-2017", + "short_name": "BLAS License 2017", + "name": "BLAS License 2017", + "category": "Permissive", + "owner": "BLAS Project", + "homepage_url": "http://www.netlib.org/blas/#_licensing", + "spdx_license_key": "LicenseRef-scancode-blas-2017", + "text_urls": [ + "https://android.googlesource.com/platform/external/cblas/+/master/LICENSE" + ], + "other_urls": [ + "http://www.netlib.org/lapack/" + ] +} \ No newline at end of file diff --git a/docs/blessing.LICENSE b/docs/blessing.LICENSE index 4878f1dd78..c42954b892 100644 --- a/docs/blessing.LICENSE +++ b/docs/blessing.LICENSE @@ -1,3 +1,16 @@ +--- +key: blessing +short_name: SQLite Blessing +name: SQLite Blessing +category: Public Domain +owner: SQLite +homepage_url: https://sqlite.org/src/artifact/df5091916dbb40e6 +spdx_license_key: blessing +other_urls: + - https://www.sqlite.org/src/artifact/e33a4df7e32d742a?ln=4-9 + - https://sqlite.org/src/artifact/df5091916dbb40e6 +--- + The author disclaims copyright to this source code. In place of a legal notice, here is a blessing: May you do good and not evil. diff --git a/docs/blessing.html b/docs/blessing.html index 525207944e..5b086224fb 100644 --- a/docs/blessing.html +++ b/docs/blessing.html @@ -140,7 +140,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/blessing.json b/docs/blessing.json index 142b8346d7..2f3a0cf3ff 100644 --- a/docs/blessing.json +++ b/docs/blessing.json @@ -1 +1,13 @@ -{"key": "blessing", "short_name": "SQLite Blessing", "name": "SQLite Blessing", "category": "Public Domain", "owner": "SQLite", "homepage_url": "https://sqlite.org/src/artifact/df5091916dbb40e6", "spdx_license_key": "blessing", "other_urls": ["https://www.sqlite.org/src/artifact/e33a4df7e32d742a?ln=4-9", "https://sqlite.org/src/artifact/df5091916dbb40e6"]} \ No newline at end of file +{ + "key": "blessing", + "short_name": "SQLite Blessing", + "name": "SQLite Blessing", + "category": "Public Domain", + "owner": "SQLite", + "homepage_url": "https://sqlite.org/src/artifact/df5091916dbb40e6", + "spdx_license_key": "blessing", + "other_urls": [ + "https://www.sqlite.org/src/artifact/e33a4df7e32d742a?ln=4-9", + "https://sqlite.org/src/artifact/df5091916dbb40e6" + ] +} \ No newline at end of file diff --git a/docs/blitz-artistic.LICENSE b/docs/blitz-artistic.LICENSE index 974da0254b..4697190527 100644 --- a/docs/blitz-artistic.LICENSE +++ b/docs/blitz-artistic.LICENSE @@ -1,3 +1,16 @@ +--- +key: blitz-artistic +short_name: Blitz++ Artistic +name: Blitz++ Artistic License +category: Copyleft Limited +owner: Blitz++ +homepage_url: https://github.com/blitzpp/blitz/blob/master/COPYRIGHT +notes: This is a modified artistic license, no longer in use. +spdx_license_key: LicenseRef-scancode-blitz-artistic +text_urls: + - https://raw.githubusercontent.com/blitzpp/blitz/e3c973d68e5ee17aec779bf9711b38fd4afc355f/LICENSE +--- + The `Blitz++ Artistic License' (with thanks and apologies to authors of the Perl Artistic License) @@ -80,4 +93,4 @@ specific prior written permission. 8. THIS PACKAGE IS PROVIDED `AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/docs/blitz-artistic.html b/docs/blitz-artistic.html index d4f89f07da..d7bff83300 100644 --- a/docs/blitz-artistic.html +++ b/docs/blitz-artistic.html @@ -213,8 +213,7 @@ 8. THIS PACKAGE IS PROVIDED `AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
@@ -226,7 +225,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/blitz-artistic.json b/docs/blitz-artistic.json index bbbad01b35..48cb81405b 100644 --- a/docs/blitz-artistic.json +++ b/docs/blitz-artistic.json @@ -1 +1,13 @@ -{"key": "blitz-artistic", "short_name": "Blitz++ Artistic", "name": "Blitz++ Artistic License", "category": "Copyleft Limited", "owner": "Blitz++", "homepage_url": "https://github.com/blitzpp/blitz/blob/master/COPYRIGHT", "notes": "This is a modified artistic license, no longer in use.", "spdx_license_key": "LicenseRef-scancode-blitz-artistic", "text_urls": ["https://raw.githubusercontent.com/blitzpp/blitz/e3c973d68e5ee17aec779bf9711b38fd4afc355f/LICENSE"]} \ No newline at end of file +{ + "key": "blitz-artistic", + "short_name": "Blitz++ Artistic", + "name": "Blitz++ Artistic License", + "category": "Copyleft Limited", + "owner": "Blitz++", + "homepage_url": "https://github.com/blitzpp/blitz/blob/master/COPYRIGHT", + "notes": "This is a modified artistic license, no longer in use.", + "spdx_license_key": "LicenseRef-scancode-blitz-artistic", + "text_urls": [ + "https://raw.githubusercontent.com/blitzpp/blitz/e3c973d68e5ee17aec779bf9711b38fd4afc355f/LICENSE" + ] +} \ No newline at end of file diff --git a/docs/bloomberg-blpapi.LICENSE b/docs/bloomberg-blpapi.LICENSE index 52000691b3..84dda22253 100644 --- a/docs/bloomberg-blpapi.LICENSE +++ b/docs/bloomberg-blpapi.LICENSE @@ -1,3 +1,15 @@ +--- +key: bloomberg-blpapi +short_name: Bloomberg BLPAPI License +name: Bloomberg BLPAPI License +category: Proprietary Free +owner: Bloomberg Labs +spdx_license_key: LicenseRef-scancode-bloomberg-blpapi +other_urls: + - https://bloomberg.bintray.com/BLPAPI-Stable-Generic/blpapi_cpp_3.8.18.1-linux.tar.gz +minimum_coverage: 80 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this proprietary software and associated documentation files (the "Software"), to use, publish, or distribute copies of the Software, and to permit persons to diff --git a/docs/bloomberg-blpapi.html b/docs/bloomberg-blpapi.html index a5b856986a..785f44c23c 100644 --- a/docs/bloomberg-blpapi.html +++ b/docs/bloomberg-blpapi.html @@ -153,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bloomberg-blpapi.json b/docs/bloomberg-blpapi.json index 78420488b4..42ef5c0e1f 100644 --- a/docs/bloomberg-blpapi.json +++ b/docs/bloomberg-blpapi.json @@ -1 +1,12 @@ -{"key": "bloomberg-blpapi", "short_name": "Bloomberg BLPAPI License", "name": "Bloomberg BLPAPI License", "category": "Proprietary Free", "owner": "Bloomberg Labs", "spdx_license_key": "LicenseRef-scancode-bloomberg-blpapi", "other_urls": ["https://bloomberg.bintray.com/BLPAPI-Stable-Generic/blpapi_cpp_3.8.18.1-linux.tar.gz"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "bloomberg-blpapi", + "short_name": "Bloomberg BLPAPI License", + "name": "Bloomberg BLPAPI License", + "category": "Proprietary Free", + "owner": "Bloomberg Labs", + "spdx_license_key": "LicenseRef-scancode-bloomberg-blpapi", + "other_urls": [ + "https://bloomberg.bintray.com/BLPAPI-Stable-Generic/blpapi_cpp_3.8.18.1-linux.tar.gz" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/blueoak-1.0.0.LICENSE b/docs/blueoak-1.0.0.LICENSE index 7a84c0de66..1bb9826e54 100644 --- a/docs/blueoak-1.0.0.LICENSE +++ b/docs/blueoak-1.0.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: blueoak-1.0.0 +short_name: Blue Oak Model License 1.0.0 +name: Blue Oak Model License 1.0.0 +category: Permissive +owner: Blue Oak Council +homepage_url: https://blueoakcouncil.org/license/1.0.0 +spdx_license_key: BlueOak-1.0.0 +other_urls: + - https://blueoakcouncil.org/license/1.0.0 +ignorable_urls: + - https://blueoakcouncil.org/license/1.0.0 +--- + # Blue Oak Model License Version 1.0.0 diff --git a/docs/blueoak-1.0.0.html b/docs/blueoak-1.0.0.html index c0d5bf6b9e..4de91da5b2 100644 --- a/docs/blueoak-1.0.0.html +++ b/docs/blueoak-1.0.0.html @@ -199,7 +199,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/blueoak-1.0.0.json b/docs/blueoak-1.0.0.json index 7df9f57a6c..5653a6dd1b 100644 --- a/docs/blueoak-1.0.0.json +++ b/docs/blueoak-1.0.0.json @@ -1 +1,15 @@ -{"key": "blueoak-1.0.0", "short_name": "Blue Oak Model License 1.0.0", "name": "Blue Oak Model License 1.0.0", "category": "Permissive", "owner": "Blue Oak Council", "homepage_url": "https://blueoakcouncil.org/license/1.0.0", "spdx_license_key": "BlueOak-1.0.0", "other_urls": ["https://blueoakcouncil.org/license/1.0.0"], "ignorable_urls": ["https://blueoakcouncil.org/license/1.0.0"]} \ No newline at end of file +{ + "key": "blueoak-1.0.0", + "short_name": "Blue Oak Model License 1.0.0", + "name": "Blue Oak Model License 1.0.0", + "category": "Permissive", + "owner": "Blue Oak Council", + "homepage_url": "https://blueoakcouncil.org/license/1.0.0", + "spdx_license_key": "BlueOak-1.0.0", + "other_urls": [ + "https://blueoakcouncil.org/license/1.0.0" + ], + "ignorable_urls": [ + "https://blueoakcouncil.org/license/1.0.0" + ] +} \ No newline at end of file diff --git a/docs/bohl-0.2.LICENSE b/docs/bohl-0.2.LICENSE index ad64a59898..d8ac662e38 100644 --- a/docs/bohl-0.2.LICENSE +++ b/docs/bohl-0.2.LICENSE @@ -1,3 +1,20 @@ +--- +key: bohl-0.2 +short_name: BOHL-0.2 +name: The Balloon Open Hardware License v0.2 +category: Permissive +owner: iTechnic +spdx_license_key: LicenseRef-scancode-bohl-0.2 +text_urls: + - https://web.archive.org/web/20140426215620/http://www.balloonboard.org/docs/Balloon_License_0v2.pdf +ignorable_copyrights: + - Copyright (c) 2006 2007 iTechnic Ltd +ignorable_holders: + - iTechnic Ltd +ignorable_urls: + - http://www.balloonboard.org/ +--- + The Balloon Open Hardware License (BOHL) Version 0.2 For Discussion The Text of this License is Copyright (c) 2006 2007 iTechnic Ltd @@ -37,4 +54,4 @@ The purpose of this license is to protect the designers of the hardware from any resulting from its design, manufacture, distribution or use. It is also the purpose of this license to ensure that the design remains Open in the sense detailed in the license and that manufacturers, distributors, and users are obliged to adhere to the Open -principles of the design and to protect their rights to access the design as specified in the license. +principles of the design and to protect their rights to access the design as specified in the license. \ No newline at end of file diff --git a/docs/bohl-0.2.html b/docs/bohl-0.2.html index fd377e1a72..53f2b55588 100644 --- a/docs/bohl-0.2.html +++ b/docs/bohl-0.2.html @@ -183,8 +183,7 @@ resulting from its design, manufacture, distribution or use. It is also the purpose of this license to ensure that the design remains Open in the sense detailed in the license and that manufacturers, distributors, and users are obliged to adhere to the Open -principles of the design and to protect their rights to access the design as specified in the license. - +principles of the design and to protect their rights to access the design as specified in the license.
@@ -196,7 +195,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bohl-0.2.json b/docs/bohl-0.2.json index b7312d4a97..4a758fa524 100644 --- a/docs/bohl-0.2.json +++ b/docs/bohl-0.2.json @@ -1 +1,20 @@ -{"key": "bohl-0.2", "short_name": "BOHL-0.2", "name": "The Balloon Open Hardware License v0.2", "category": "Permissive", "owner": "iTechnic", "spdx_license_key": "LicenseRef-scancode-bohl-0.2", "text_urls": ["https://web.archive.org/web/20140426215620/http://www.balloonboard.org/docs/Balloon_License_0v2.pdf"], "ignorable_copyrights": ["Copyright (c) 2006 2007 iTechnic Ltd"], "ignorable_holders": ["iTechnic Ltd"], "ignorable_urls": ["http://www.balloonboard.org/"]} \ No newline at end of file +{ + "key": "bohl-0.2", + "short_name": "BOHL-0.2", + "name": "The Balloon Open Hardware License v0.2", + "category": "Permissive", + "owner": "iTechnic", + "spdx_license_key": "LicenseRef-scancode-bohl-0.2", + "text_urls": [ + "https://web.archive.org/web/20140426215620/http://www.balloonboard.org/docs/Balloon_License_0v2.pdf" + ], + "ignorable_copyrights": [ + "Copyright (c) 2006 2007 iTechnic Ltd" + ], + "ignorable_holders": [ + "iTechnic Ltd" + ], + "ignorable_urls": [ + "http://www.balloonboard.org/" + ] +} \ No newline at end of file diff --git a/docs/boost-1.0.LICENSE b/docs/boost-1.0.LICENSE index 127a5bc39b..33900e4e74 100644 --- a/docs/boost-1.0.LICENSE +++ b/docs/boost-1.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: boost-1.0 +short_name: Boost 1.0 +name: Boost Software License 1.0 +category: Permissive +owner: Boost +homepage_url: http://www.boost.org/users/license.html +notes: | + Per SPDX.org, this version was released 17 August 2003 This license is OSI + certifified. +spdx_license_key: BSL-1.0 +text_urls: + - http://www.boost.org/LICENSE_1_0.txt +osi_url: http://www.opensource.org/licenses/bsl1.0.html +other_urls: + - http://www.boost.org/users/license.html + - http://www.opensource.org/licenses/BSL-1.0 + - https://opensource.org/licenses/BSL-1.0 +--- + Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization diff --git a/docs/boost-1.0.html b/docs/boost-1.0.html index 7748ac01f6..474e22cbf2 100644 --- a/docs/boost-1.0.html +++ b/docs/boost-1.0.html @@ -183,7 +183,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/boost-1.0.json b/docs/boost-1.0.json index 83d9242e83..907d376da1 100644 --- a/docs/boost-1.0.json +++ b/docs/boost-1.0.json @@ -1 +1,19 @@ -{"key": "boost-1.0", "short_name": "Boost 1.0", "name": "Boost Software License 1.0", "category": "Permissive", "owner": "Boost", "homepage_url": "http://www.boost.org/users/license.html", "notes": "Per SPDX.org, this version was released 17 August 2003 This license is OSI\ncertifified.\n", "spdx_license_key": "BSL-1.0", "text_urls": ["http://www.boost.org/LICENSE_1_0.txt"], "osi_url": "http://www.opensource.org/licenses/bsl1.0.html", "other_urls": ["http://www.boost.org/users/license.html", "http://www.opensource.org/licenses/BSL-1.0", "https://opensource.org/licenses/BSL-1.0"]} \ No newline at end of file +{ + "key": "boost-1.0", + "short_name": "Boost 1.0", + "name": "Boost Software License 1.0", + "category": "Permissive", + "owner": "Boost", + "homepage_url": "http://www.boost.org/users/license.html", + "notes": "Per SPDX.org, this version was released 17 August 2003 This license is OSI\ncertifified.\n", + "spdx_license_key": "BSL-1.0", + "text_urls": [ + "http://www.boost.org/LICENSE_1_0.txt" + ], + "osi_url": "http://www.opensource.org/licenses/bsl1.0.html", + "other_urls": [ + "http://www.boost.org/users/license.html", + "http://www.opensource.org/licenses/BSL-1.0", + "https://opensource.org/licenses/BSL-1.0" + ] +} \ No newline at end of file diff --git a/docs/boost-original.LICENSE b/docs/boost-original.LICENSE index 02ae480b36..20d2144f55 100644 --- a/docs/boost-original.LICENSE +++ b/docs/boost-original.LICENSE @@ -1,3 +1,23 @@ +--- +key: boost-original +short_name: Boost Original +name: Boost Original +category: Permissive +owner: Boost +homepage_url: http://boost.org +notes: "This is the original notice for Boost prior to the publication of the\nboost-1.0 license\ + \ in 2003. Several boost files still carry this license adn\ncould not be updated to the\ + \ boost-1.0 license. This license is aslo found\nin the AntiGrain Geometry component version\ + \ 2.4. \nFor an example of use in historical Boost, see \nhttps://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp\n\ + For an example of use in the current Boost, see \nhttps://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp" +spdx_license_key: LicenseRef-scancode-boost-original +text_urls: + - https://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp + - https://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp +other_urls: + - http://www.antigrain.com/license/index.html#toc0002 +--- + Permission to copy, use, modify, sell and distribute this software is granted provided this copyright notice appears in all copies. This software is provided "as is" without express or implied warranty, and with no claim as to its suitability for diff --git a/docs/boost-original.html b/docs/boost-original.html index 65ad32e1cc..023009df01 100644 --- a/docs/boost-original.html +++ b/docs/boost-original.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/boost-original.json b/docs/boost-original.json index c7b7956032..3776f82a51 100644 --- a/docs/boost-original.json +++ b/docs/boost-original.json @@ -1 +1,17 @@ -{"key": "boost-original", "short_name": "Boost Original", "name": "Boost Original", "category": "Permissive", "owner": "Boost", "homepage_url": "http://boost.org", "notes": "This is the original notice for Boost prior to the publication of the\nboost-1.0 license in 2003. Several boost files still carry this license adn\ncould not be updated to the boost-1.0 license. This license is aslo found\nin the AntiGrain Geometry component version 2.4. \nFor an example of use in historical Boost, see \nhttps://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp\nFor an example of use in the current Boost, see \nhttps://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp", "spdx_license_key": "LicenseRef-scancode-boost-original", "text_urls": ["https://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp", "https://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp"], "other_urls": ["http://www.antigrain.com/license/index.html#toc0002"]} \ No newline at end of file +{ + "key": "boost-original", + "short_name": "Boost Original", + "name": "Boost Original", + "category": "Permissive", + "owner": "Boost", + "homepage_url": "http://boost.org", + "notes": "This is the original notice for Boost prior to the publication of the\nboost-1.0 license in 2003. Several boost files still carry this license adn\ncould not be updated to the boost-1.0 license. This license is aslo found\nin the AntiGrain Geometry component version 2.4. \nFor an example of use in historical Boost, see \nhttps://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp\nFor an example of use in the current Boost, see \nhttps://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp", + "spdx_license_key": "LicenseRef-scancode-boost-original", + "text_urls": [ + "https://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp", + "https://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp" + ], + "other_urls": [ + "http://www.antigrain.com/license/index.html#toc0002" + ] +} \ No newline at end of file diff --git a/docs/bootloader-exception.LICENSE b/docs/bootloader-exception.LICENSE index 885578acdb..e70efc4902 100644 --- a/docs/bootloader-exception.LICENSE +++ b/docs/bootloader-exception.LICENSE @@ -1,3 +1,74 @@ +--- +key: bootloader-exception +short_name: Bootloader Distribution Exception to GPL 2.0 +name: Bootloader Distribution Exception to GPL 2.0 or later +category: Copyleft Limited +owner: PyInstaller Project +homepage_url: https://github.com/pyinstaller/pyinstaller/blob/develop/COPYING.txt +is_exception: yes +spdx_license_key: Bootloader-exception +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + ================================ + The PyInstaller licensing terms + ================================ + Copyright (c) 2010-2018, PyInstaller Development Team + Copyright (c) 2005-2009, Giovanni Bajo + Based on previous work under copyright (c) 2002 McMillan Enterprises, Inc. + PyInstaller is licensed under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. + Bootloader Exception + -------------------- + In addition to the permissions in the GNU General Public License, the + authors give you unlimited permission to link or embed compiled bootloader + and related files into combinations with other programs, and to distribute + those combinations without any restriction coming from the use of those + files. (The General Public License restrictions do apply in other respects; + for example, they cover modification of the files, and distribution when + not linked into a combine executable.) + Bootloader and Related Files + ---------------------------- + Bootloader and related files are files which are embedded within the + final executable. This includes files in directories: + ./bootloader/ + ./PyInstaller/loader + About the PyInstaller Development Team + -------------------------------------- + The PyInstaller Development Team is the set of contributors + to the PyInstaller project. A full list with details is kept + in the documentation directory, in the file + ``doc/CREDITS.rst``. + The core team that coordinates development on GitHub can be found here: + https://github.com/pyinstaller/pyinstaller. As of 2015, it consists of: + * Hartmut Goebel + * Martin Zibricky + * David Vierra + * David Cortesi + Our Copyright Policy + -------------------- + PyInstaller uses a shared copyright model. Each contributor maintains + copyright over their contributions to PyInstaller. But, it is important to + note that these contributions are typically only changes to the repositories. + Thus, the PyInstaller source code, in its entirety is not the copyright of + any single person or institution. Instead, it is the collective copyright of + the entire PyInstaller Development Team. If individual contributors want to + maintain a record of what changes/contributions they have specific copyright + on, they should indicate their copyright in the commit message of the + change, when they commit the change to the PyInstaller repository. + With this in mind, the following banner should be used in any source code + file to indicate the copyright and license terms: + #-------------------------------------------------------------------------- + # Copyright (c) 2005-20l5, PyInstaller Development Team. + # + # Distributed under the terms of the GNU General Public License with + # exception for distributing bootloader. + # + # The full license is in the file COPYING.txt, distributed with this software. + #-------------------------------------------------------------------------- +--- + Bootloader Exception In addition to the permissions in the GNU General Public License, the authors give you unlimited permission to link or embed compiled bootloader and related files into combinations with other programs, and to distribute those combinations without any restriction coming from the use of those files. (The General Public License restrictions do apply in other respects; for example, they cover modification of the files, and distribution when not linked into a combined executable.) \ No newline at end of file diff --git a/docs/bootloader-exception.html b/docs/bootloader-exception.html index f262241e4e..28e63696fc 100644 --- a/docs/bootloader-exception.html +++ b/docs/bootloader-exception.html @@ -209,7 +209,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bootloader-exception.json b/docs/bootloader-exception.json index 825ef650ad..0b2d7fbc84 100644 --- a/docs/bootloader-exception.json +++ b/docs/bootloader-exception.json @@ -1 +1,14 @@ -{"key": "bootloader-exception", "short_name": "Bootloader Distribution Exception to GPL 2.0", "name": "Bootloader Distribution Exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "PyInstaller Project", "homepage_url": "https://github.com/pyinstaller/pyinstaller/blob/develop/COPYING.txt", "is_exception": true, "spdx_license_key": "Bootloader-exception", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "================================\nThe PyInstaller licensing terms\n================================\nCopyright (c) 2010-2018, PyInstaller Development Team\nCopyright (c) 2005-2009, Giovanni Bajo\nBased on previous work under copyright (c) 2002 McMillan Enterprises, Inc.\nPyInstaller is licensed under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2 of the\nLicense, or (at your option) any later version.\nBootloader Exception\n--------------------\nIn addition to the permissions in the GNU General Public License, the\nauthors give you unlimited permission to link or embed compiled bootloader\nand related files into combinations with other programs, and to distribute\nthose combinations without any restriction coming from the use of those\nfiles. (The General Public License restrictions do apply in other respects;\nfor example, they cover modification of the files, and distribution when\nnot linked into a combine executable.)\nBootloader and Related Files\n----------------------------\nBootloader and related files are files which are embedded within the\nfinal executable. This includes files in directories:\n./bootloader/\n./PyInstaller/loader\nAbout the PyInstaller Development Team\n--------------------------------------\nThe PyInstaller Development Team is the set of contributors\nto the PyInstaller project. A full list with details is kept\nin the documentation directory, in the file\n``doc/CREDITS.rst``.\nThe core team that coordinates development on GitHub can be found here:\nhttps://github.com/pyinstaller/pyinstaller. As of 2015, it consists of:\n* Hartmut Goebel\n* Martin Zibricky\n* David Vierra\n* David Cortesi\nOur Copyright Policy\n--------------------\nPyInstaller uses a shared copyright model. Each contributor maintains\ncopyright over their contributions to PyInstaller. But, it is important to\nnote that these contributions are typically only changes to the repositories.\nThus, the PyInstaller source code, in its entirety is not the copyright of\nany single person or institution. Instead, it is the collective copyright of\nthe entire PyInstaller Development Team. If individual contributors want to\nmaintain a record of what changes/contributions they have specific copyright\non, they should indicate their copyright in the commit message of the\nchange, when they commit the change to the PyInstaller repository.\nWith this in mind, the following banner should be used in any source code\nfile to indicate the copyright and license terms:\n#--------------------------------------------------------------------------\n# Copyright (c) 2005-20l5, PyInstaller Development Team.\n#\n# Distributed under the terms of the GNU General Public License with\n# exception for distributing bootloader.\n#\n# The full license is in the file COPYING.txt, distributed with this software.\n#--------------------------------------------------------------------------\n"} \ No newline at end of file +{ + "key": "bootloader-exception", + "short_name": "Bootloader Distribution Exception to GPL 2.0", + "name": "Bootloader Distribution Exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "PyInstaller Project", + "homepage_url": "https://github.com/pyinstaller/pyinstaller/blob/develop/COPYING.txt", + "is_exception": true, + "spdx_license_key": "Bootloader-exception", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "================================\nThe PyInstaller licensing terms\n================================\nCopyright (c) 2010-2018, PyInstaller Development Team\nCopyright (c) 2005-2009, Giovanni Bajo\nBased on previous work under copyright (c) 2002 McMillan Enterprises, Inc.\nPyInstaller is licensed under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2 of the\nLicense, or (at your option) any later version.\nBootloader Exception\n--------------------\nIn addition to the permissions in the GNU General Public License, the\nauthors give you unlimited permission to link or embed compiled bootloader\nand related files into combinations with other programs, and to distribute\nthose combinations without any restriction coming from the use of those\nfiles. (The General Public License restrictions do apply in other respects;\nfor example, they cover modification of the files, and distribution when\nnot linked into a combine executable.)\nBootloader and Related Files\n----------------------------\nBootloader and related files are files which are embedded within the\nfinal executable. This includes files in directories:\n./bootloader/\n./PyInstaller/loader\nAbout the PyInstaller Development Team\n--------------------------------------\nThe PyInstaller Development Team is the set of contributors\nto the PyInstaller project. A full list with details is kept\nin the documentation directory, in the file\n``doc/CREDITS.rst``.\nThe core team that coordinates development on GitHub can be found here:\nhttps://github.com/pyinstaller/pyinstaller. As of 2015, it consists of:\n* Hartmut Goebel\n* Martin Zibricky\n* David Vierra\n* David Cortesi\nOur Copyright Policy\n--------------------\nPyInstaller uses a shared copyright model. Each contributor maintains\ncopyright over their contributions to PyInstaller. But, it is important to\nnote that these contributions are typically only changes to the repositories.\nThus, the PyInstaller source code, in its entirety is not the copyright of\nany single person or institution. Instead, it is the collective copyright of\nthe entire PyInstaller Development Team. If individual contributors want to\nmaintain a record of what changes/contributions they have specific copyright\non, they should indicate their copyright in the commit message of the\nchange, when they commit the change to the PyInstaller repository.\nWith this in mind, the following banner should be used in any source code\nfile to indicate the copyright and license terms:\n#--------------------------------------------------------------------------\n# Copyright (c) 2005-20l5, PyInstaller Development Team.\n#\n# Distributed under the terms of the GNU General Public License with\n# exception for distributing bootloader.\n#\n# The full license is in the file COPYING.txt, distributed with this software.\n#--------------------------------------------------------------------------\n" +} \ No newline at end of file diff --git a/docs/borceux.LICENSE b/docs/borceux.LICENSE index be0a924205..15f2af9137 100644 --- a/docs/borceux.LICENSE +++ b/docs/borceux.LICENSE @@ -1,3 +1,17 @@ +--- +key: borceux +short_name: Borceux License +name: Borceux License +category: Permissive +owner: Francis Borceux +homepage_url: https://fedoraproject.org/wiki/Licensing/Borceux +spdx_license_key: Borceux +ignorable_copyrights: + - Copyright 1993 Francis Borceux +ignorable_holders: + - Francis Borceux +--- + Copyright 1993 Francis Borceux You may freely use, modify, and/or distribute each of the files in this package without limitation. The package consists of the following files: diff --git a/docs/borceux.html b/docs/borceux.html index 1b4e8c929d..7bc2d1cc94 100644 --- a/docs/borceux.html +++ b/docs/borceux.html @@ -163,7 +163,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/borceux.json b/docs/borceux.json index 056a942947..0bb54d161d 100644 --- a/docs/borceux.json +++ b/docs/borceux.json @@ -1 +1,15 @@ -{"key": "borceux", "short_name": "Borceux License", "name": "Borceux License", "category": "Permissive", "owner": "Francis Borceux", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Borceux", "spdx_license_key": "Borceux", "ignorable_copyrights": ["Copyright 1993 Francis Borceux"], "ignorable_holders": ["Francis Borceux"]} \ No newline at end of file +{ + "key": "borceux", + "short_name": "Borceux License", + "name": "Borceux License", + "category": "Permissive", + "owner": "Francis Borceux", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Borceux", + "spdx_license_key": "Borceux", + "ignorable_copyrights": [ + "Copyright 1993 Francis Borceux" + ], + "ignorable_holders": [ + "Francis Borceux" + ] +} \ No newline at end of file diff --git a/docs/boutell-libgd-2021.LICENSE b/docs/boutell-libgd-2021.LICENSE new file mode 100644 index 0000000000..0e8f7823aa --- /dev/null +++ b/docs/boutell-libgd-2021.LICENSE @@ -0,0 +1,19 @@ +--- +key: boutell-libgd-2021 +short_name: Boutell libgd declarations 2021 +name: Boutell libgd declarations 2021 +category: Permissive +owner: Boutell.Com +homepage_url: https://github.com/libgd/libgd/blob/7b0d4198f2cba4cbc3ec68658e59474056622873/src/gd.h#L100 +spdx_license_key: LicenseRef-scancode-boutell-libgd-2021 +--- + +* Permission to use, copy, modify, and distribute this software and its + * documentation for any purpose and without fee is hereby granted, provided + * that the above copyright notice appear in all copies and that both that + * copyright notice and this permission notice appear in supporting + * documentation. This software is provided "AS IS." Thomas Boutell and + * Boutell.Com, Inc. disclaim all warranties, either express or implied, + * including but not limited to implied warranties of merchantability and + * fitness for a particular purpose, with respect to this code and accompanying + * documentation. \ No newline at end of file diff --git a/docs/boutell-libgd-2021.html b/docs/boutell-libgd-2021.html new file mode 100644 index 0000000000..fbb806afdd --- /dev/null +++ b/docs/boutell-libgd-2021.html @@ -0,0 +1,158 @@ + + + + + + LicenseDB: boutell-libgd-2021 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + boutell-libgd-2021 + +
+ +
short_name
+
+ + Boutell libgd declarations 2021 + +
+ +
name
+
+ + Boutell libgd declarations 2021 + +
+ +
category
+
+ + Permissive + +
+ +
owner
+
+ + Boutell.Com + +
+ +
homepage_url
+
+ + https://github.com/libgd/libgd/blob/7b0d4198f2cba4cbc3ec68658e59474056622873/src/gd.h#L100 + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-boutell-libgd-2021 + +
+ +
+
license_text
+
* Permission to use, copy, modify, and distribute this software and its
+ * documentation for any purpose and without fee is hereby granted, provided
+ * that the above copyright notice appear in all copies and that both that
+ * copyright notice and this permission notice appear in supporting
+ * documentation.  This software is provided "AS IS." Thomas Boutell and
+ * Boutell.Com, Inc. disclaim all warranties, either express or implied,
+ * including but not limited to implied warranties of merchantability and
+ * fitness for a particular purpose, with respect to this code and accompanying
+ * documentation.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/boutell-libgd-2021.json b/docs/boutell-libgd-2021.json new file mode 100644 index 0000000000..98391ddec9 --- /dev/null +++ b/docs/boutell-libgd-2021.json @@ -0,0 +1,9 @@ +{ + "key": "boutell-libgd-2021", + "short_name": "Boutell libgd declarations 2021", + "name": "Boutell libgd declarations 2021", + "category": "Permissive", + "owner": "Boutell.Com", + "homepage_url": "https://github.com/libgd/libgd/blob/7b0d4198f2cba4cbc3ec68658e59474056622873/src/gd.h#L100", + "spdx_license_key": "LicenseRef-scancode-boutell-libgd-2021" +} \ No newline at end of file diff --git a/docs/boutell-libgd-2021.yml b/docs/boutell-libgd-2021.yml new file mode 100644 index 0000000000..510f93a949 --- /dev/null +++ b/docs/boutell-libgd-2021.yml @@ -0,0 +1,7 @@ +key: boutell-libgd-2021 +short_name: Boutell libgd declarations 2021 +name: Boutell libgd declarations 2021 +category: Permissive +owner: Boutell.Com +homepage_url: https://github.com/libgd/libgd/blob/7b0d4198f2cba4cbc3ec68658e59474056622873/src/gd.h#L100 +spdx_license_key: LicenseRef-scancode-boutell-libgd-2021 diff --git a/docs/bpel4ws-spec.LICENSE b/docs/bpel4ws-spec.LICENSE index af35d5e840..3c57699715 100644 --- a/docs/bpel4ws-spec.LICENSE +++ b/docs/bpel4ws-spec.LICENSE @@ -1,3 +1,26 @@ +--- +key: bpel4ws-spec +short_name: BPEL4WS Specification license +name: BPEL4WS Specification license +category: Proprietary Free +owner: Microsoft +homepage_url: http://xml.coverpages.org/BPELv11-May052003Final.pdf +notes: BPEL4WS Specification Version 1,1 Dated May 5, 2003, Copyright statement +spdx_license_key: LicenseRef-scancode-bpel4ws-spec +ignorable_copyrights: + - Copyright (c) 2002, 2003 BEA Systems, International Business Machines Corporation, Microsoft + Corporation, SAP AG, Siebel Systems +ignorable_holders: + - BEA Systems, International Business Machines Corporation, Microsoft Corporation, SAP AG, + Siebel Systems +ignorable_urls: + - http://dev2dev.bea.com/technologies/webservices/BPEL4WS.jsp + - http://ifr.sap.com/bpel4ws/ + - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbiz2k2/html/bpel1-1.asp + - http://www-106.ibm.com/developerworks/webservices/library/ws-bpel/ + - http://www.siebel.com/bpel +--- + [BPEL4WS Specification Version 1,1 Dated May 5, 2003, Copyright statement] Copyright (c) 2002, 2003 BEA Systems, International Business Machines @@ -44,4 +67,4 @@ BPEL4WS Specification, or portions thereof, that you make: permission. Title to copyright in the BPEL4WS Specification will at all times remain with the Authors. - No other rights are granted by implication, estoppel or otherwise. + No other rights are granted by implication, estoppel or otherwise. \ No newline at end of file diff --git a/docs/bpel4ws-spec.html b/docs/bpel4ws-spec.html index f5ed719d14..a5e6b0fb06 100644 --- a/docs/bpel4ws-spec.html +++ b/docs/bpel4ws-spec.html @@ -195,8 +195,7 @@ permission. Title to copyright in the BPEL4WS Specification will at all times remain with the Authors. - No other rights are granted by implication, estoppel or otherwise. - + No other rights are granted by implication, estoppel or otherwise.
@@ -208,7 +207,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bpel4ws-spec.json b/docs/bpel4ws-spec.json index 0cb9d43139..a135d3b4d1 100644 --- a/docs/bpel4ws-spec.json +++ b/docs/bpel4ws-spec.json @@ -1 +1,23 @@ -{"key": "bpel4ws-spec", "short_name": "BPEL4WS Specification license", "name": "BPEL4WS Specification license", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://xml.coverpages.org/BPELv11-May052003Final.pdf", "notes": "BPEL4WS Specification Version 1,1 Dated May 5, 2003, Copyright statement", "spdx_license_key": "LicenseRef-scancode-bpel4ws-spec", "ignorable_copyrights": ["Copyright (c) 2002, 2003 BEA Systems, International Business Machines Corporation, Microsoft Corporation, SAP AG, Siebel Systems"], "ignorable_holders": ["BEA Systems, International Business Machines Corporation, Microsoft Corporation, SAP AG, Siebel Systems"], "ignorable_urls": ["http://dev2dev.bea.com/technologies/webservices/BPEL4WS.jsp", "http://ifr.sap.com/bpel4ws/", "http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbiz2k2/html/bpel1-1.asp", "http://www-106.ibm.com/developerworks/webservices/library/ws-bpel/", "http://www.siebel.com/bpel"]} \ No newline at end of file +{ + "key": "bpel4ws-spec", + "short_name": "BPEL4WS Specification license", + "name": "BPEL4WS Specification license", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://xml.coverpages.org/BPELv11-May052003Final.pdf", + "notes": "BPEL4WS Specification Version 1,1 Dated May 5, 2003, Copyright statement", + "spdx_license_key": "LicenseRef-scancode-bpel4ws-spec", + "ignorable_copyrights": [ + "Copyright (c) 2002, 2003 BEA Systems, International Business Machines Corporation, Microsoft Corporation, SAP AG, Siebel Systems" + ], + "ignorable_holders": [ + "BEA Systems, International Business Machines Corporation, Microsoft Corporation, SAP AG, Siebel Systems" + ], + "ignorable_urls": [ + "http://dev2dev.bea.com/technologies/webservices/BPEL4WS.jsp", + "http://ifr.sap.com/bpel4ws/", + "http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbiz2k2/html/bpel1-1.asp", + "http://www-106.ibm.com/developerworks/webservices/library/ws-bpel/", + "http://www.siebel.com/bpel" + ] +} \ No newline at end of file diff --git a/docs/bpmn-io.LICENSE b/docs/bpmn-io.LICENSE index f718cd4816..cd15ad284d 100644 --- a/docs/bpmn-io.LICENSE +++ b/docs/bpmn-io.LICENSE @@ -1,3 +1,15 @@ +--- +key: bpmn-io +short_name: bpmn.io License +name: bpmn.io License +category: Permissive +owner: bpmn.io +homepage_url: http://bpmn.io/license/ +spdx_license_key: LicenseRef-scancode-bpmn-io +ignorable_urls: + - http://bpmn.io/ +--- + 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 @@ -19,4 +31,4 @@ 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. +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/docs/bpmn-io.html b/docs/bpmn-io.html index 1d98d40a2e..e04ce6d85a 100644 --- a/docs/bpmn-io.html +++ b/docs/bpmn-io.html @@ -145,8 +145,7 @@ 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. - +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -158,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bpmn-io.json b/docs/bpmn-io.json index b1af8c6dd9..5ad24983c1 100644 --- a/docs/bpmn-io.json +++ b/docs/bpmn-io.json @@ -1 +1,12 @@ -{"key": "bpmn-io", "short_name": "bpmn.io License", "name": "bpmn.io License", "category": "Permissive", "owner": "bpmn.io", "homepage_url": "http://bpmn.io/license/", "spdx_license_key": "LicenseRef-scancode-bpmn-io", "ignorable_urls": ["http://bpmn.io/"]} \ No newline at end of file +{ + "key": "bpmn-io", + "short_name": "bpmn.io License", + "name": "bpmn.io License", + "category": "Permissive", + "owner": "bpmn.io", + "homepage_url": "http://bpmn.io/license/", + "spdx_license_key": "LicenseRef-scancode-bpmn-io", + "ignorable_urls": [ + "http://bpmn.io/" + ] +} \ No newline at end of file diff --git a/docs/brad-martinez-vb-32.LICENSE b/docs/brad-martinez-vb-32.LICENSE index d1eb0a241e..b7426a19d2 100644 --- a/docs/brad-martinez-vb-32.LICENSE +++ b/docs/brad-martinez-vb-32.LICENSE @@ -1,3 +1,13 @@ +--- +key: brad-martinez-vb-32 +short_name: Brad Martinez VB-32 License +name: Brad Martinez VB-32 License +category: Free Restricted +owner: Brad Martinez +homepage_url: http://btmtz.mvps.org/ +spdx_license_key: LicenseRef-scancode-brad-martinez-vb-32 +--- + The Rules Unless noted otherwise, all files and code available on this site are authored by Brad Martinez, who retains exclusive copyright protection and distribution rights. diff --git a/docs/brad-martinez-vb-32.html b/docs/brad-martinez-vb-32.html index fe242b39e9..c3e9aa0f8a 100644 --- a/docs/brad-martinez-vb-32.html +++ b/docs/brad-martinez-vb-32.html @@ -143,7 +143,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/brad-martinez-vb-32.json b/docs/brad-martinez-vb-32.json index f6e49e6c4a..073e889e03 100644 --- a/docs/brad-martinez-vb-32.json +++ b/docs/brad-martinez-vb-32.json @@ -1 +1,9 @@ -{"key": "brad-martinez-vb-32", "short_name": "Brad Martinez VB-32 License", "name": "Brad Martinez VB-32 License", "category": "Free Restricted", "owner": "Brad Martinez", "homepage_url": "http://btmtz.mvps.org/", "spdx_license_key": "LicenseRef-scancode-brad-martinez-vb-32"} \ No newline at end of file +{ + "key": "brad-martinez-vb-32", + "short_name": "Brad Martinez VB-32 License", + "name": "Brad Martinez VB-32 License", + "category": "Free Restricted", + "owner": "Brad Martinez", + "homepage_url": "http://btmtz.mvps.org/", + "spdx_license_key": "LicenseRef-scancode-brad-martinez-vb-32" +} \ No newline at end of file diff --git a/docs/brankas-open-license-1.0.LICENSE b/docs/brankas-open-license-1.0.LICENSE new file mode 100644 index 0000000000..3a64f9f80f --- /dev/null +++ b/docs/brankas-open-license-1.0.LICENSE @@ -0,0 +1,95 @@ +--- +key: brankas-open-license-1.0 +short_name: Brankas Open License 1.0 +name: Brankas Open License 1.0 +category: Free Restricted +owner: Brankas +homepage_url: https://www.brankas.com/open-license +spdx_license_key: LicenseRef-scancode-brankas-open-license-1.0 +faq_url: https://www.brankas.com/open-license +--- + +BRANKAS OPEN LICENSE +Version 1.0, September 2022 + + Preamble + + This License establishes the terms under which the Software under this License may be copied, modified, distributed, or redistributed. + + Definitions + + 2.1. “Derivative Works” shall mean any work, whether in Source Form or Object Form, that is based on (or derived from) the Software and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship and not an exact or repackaged copy of the Software. It includes proprietary complements, add-ons, modules, or modifications to the Object Form that link to the interfaces of the Software and the Derivative Works thereof. It shall include, among others: + + 2.1.1. Any software that results from an addition to, deletion from, or modification of the contents of a file containing Original Software or Derivative Works thereof; and + + 2.1.2. Any new file that is contributed or otherwise made available under the terms of this License. + + 2.1.3. “License” means the terms and conditions for use, reproduction, and distribution as defined in this document. + + 2.1.4. “Licensor” shall mean Brankas, its affiliates, subsidiaries, or permitted assigns. + + 2.1.5. “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. + + 2.1.6. “Original Software” means the Source Code of computer software code that was originally released under this License. + + 2.1.7. “Software” means (a) the Original Software; (b) Derivative Works; or (c) the combination of files containing Original Software with files containing Derivative Works, in each case, including portions thereof. + + 2.1.8. “Source Code” means (a) the common form of computer software code in which modifications are made, and (b) associated documentation included in or with such code. + + 2.1.9. “Source Form” shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + + 2.1.10. “You” means an individual or a legal entity exercising rights under this License. For legal entities, “You” includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of an entity, whether by contract or otherwise; or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of an entity. + + Grants + + 3.1. Copyright License + The Licensor grants you a perpetual, non-exclusive, royalty-free, worldwide, non-sublicensable, non-transferable license to use, copy, modify, distribute, make available, display, and prepare Derivative Works of the Software, in each case subject to the limitations and conditions of this License. + + 3.1.1. Right to Distribute + Subject to Clause 5, you may distribute the Derivative Works of the Software, provided that you have clear documentation as to how your Derivative Works differ from the Original Software. You are not required to make such documentation public. + + 3.1.2. Aggregation + Subject to Clause 5, you may aggregate the Original Software with Derivative Works in Object Form or Source Form and distribute the resulting aggregation. + + 3.2. Patent License + The Licensor grants You a license, under any patent claims the Licensor can license or becomes able to license, to make, have made, use, sell, offer for sale, import, and have imported the software, in each case subject to the limitations and conditions in this License. + + Effective date + + 4.1. The licenses required and granted under Clause 3 with respect to any Derivative Works become effective, for each Derivative Works, on the date you first distribute such Derivative Works. + + Limitations and Conditions of this License + + 5.1. You may not, whether by yourself or with other persons, provide the Software, whether in a repackaged version thereof or in a resulting aggregation with Derivative Works, to a third party as a hosted or managed service, including where you will provide access to any substantial set of the features or functionality of the Software. + + Your Responsibilities + + 6.1. The Derivative Works that you create or to which you contribute are governed by the terms of this License. You represent that the Derivative Works are your original creation(s), as clearly documented by you, and/or you have sufficient rights to grant the rights conveyed by this License. + + 6.2. You assume full responsibility for informing the recipients of this Software of the terms of this License, and how they can obtain a copy of this License. + + 6.3. In incorporating Derivative Works into this Software, you must include a statement in your license to that effect in the aggregated Software. + + Termination + + 7.1. If you violate the terms of this License, your use is not licensed and will result in the termination of the licenses granted to you hereunder. + + 7.2. If the Licensor provides you with a notice of your violation, you shall cease all violations of this license no later than 30 days after receipt of that notice and your licenses will be reinstated retroactively. + + 7.3. If you violate the terms of this License after such reinstatement under Clause 7.2, any subsequent violations of these terms will result in the termination of your license automatically and permanently. + + 7.4. This License does not cover any patent claims that you cause to be infringed by Derivative Works or additions to the Software. Should you make any written claim that the Software infringes or contributes to infringement of any patent, the patent license for this Software granted under the terms of this License ends immediately. If Your representative makes a patent claim, the patent license granted under this License likewise ends immediately. + + Disclaimer of Warranty + + 8.1. Unless required by applicable law or agreed to in writing, the Licensor provides the Software 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 Software and assume any risks associated with Your exercise of permissions under this License. + + Limitation of Liability + + 9.1. 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 the Licensor 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 Software (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 the Licensor has been advised of the possibility of such damages. + + General + + 10.1. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + + 10.2. This License shall not be enforceable except by a Licensor acting as such, and third-party beneficiary rights are specifically excluded. \ No newline at end of file diff --git a/docs/brankas-open-license-1.0.html b/docs/brankas-open-license-1.0.html new file mode 100644 index 0000000000..e4dae2a09e --- /dev/null +++ b/docs/brankas-open-license-1.0.html @@ -0,0 +1,240 @@ + + + + + + LicenseDB: brankas-open-license-1.0 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + brankas-open-license-1.0 + +
+ +
short_name
+
+ + Brankas Open License 1.0 + +
+ +
name
+
+ + Brankas Open License 1.0 + +
+ +
category
+
+ + Free Restricted + +
+ +
owner
+
+ + Brankas + +
+ +
homepage_url
+
+ + https://www.brankas.com/open-license + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-brankas-open-license-1.0 + +
+ +
faq_url
+
+ + https://www.brankas.com/open-license + +
+ +
+
license_text
+
BRANKAS OPEN LICENSE
+Version 1.0, September 2022
+
+    Preamble
+
+    This License establishes the terms under which the Software under this License may be copied, modified, distributed, or redistributed.
+
+    Definitions
+
+    2.1. “Derivative Works” shall mean any work, whether in Source Form or Object Form, that is based on (or derived from) the Software and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship and not an exact or repackaged copy of the Software. It includes proprietary complements, add-ons, modules, or modifications to the Object Form that link to the interfaces of the Software and the Derivative Works thereof. It shall include, among others:
+
+        2.1.1. Any software that results from an addition to, deletion from, or modification of the contents of a file containing Original Software or Derivative Works thereof; and
+
+        2.1.2. Any new file that is contributed or otherwise made available under the terms of this License.
+
+        2.1.3. “License” means the terms and conditions for use, reproduction, and distribution as defined in this document.
+
+        2.1.4. “Licensor” shall mean Brankas, its affiliates, subsidiaries, or permitted assigns.
+
+        2.1.5. “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.
+
+        2.1.6. “Original Software” means the Source Code of computer software code that was originally released under this License.
+
+        2.1.7. “Software” means (a) the Original Software; (b) Derivative Works; or (c) the combination of files containing Original Software with files containing Derivative Works, in each case, including portions thereof.
+
+        2.1.8. “Source Code” means (a) the common form of computer software code in which modifications are made, and (b) associated documentation included in or with such code.
+
+        2.1.9. “Source Form” shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
+
+        2.1.10. “You” means an individual or a legal entity exercising rights under this License. For legal entities, “You” includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of an entity, whether by contract or otherwise; or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of an entity.
+
+    Grants
+
+    3.1. Copyright License
+    The Licensor grants you a perpetual, non-exclusive, royalty-free, worldwide, non-sublicensable, non-transferable license to use, copy, modify, distribute, make available, display, and prepare Derivative Works of the Software, in each case subject to the limitations and conditions of this License.
+
+        3.1.1. Right to Distribute
+        Subject to Clause 5, you may distribute the Derivative Works of the Software, provided that you have clear documentation as to how your Derivative Works differ from the Original Software. You are not required to make such documentation public.
+
+        3.1.2. Aggregation
+        Subject to Clause 5, you may aggregate the Original Software with Derivative Works in Object Form or Source Form and distribute the resulting aggregation.
+
+    3.2. Patent License
+    The Licensor grants You a license, under any patent claims the Licensor can license or becomes able to license, to make, have made, use, sell, offer for sale, import, and have imported the software, in each case subject to the limitations and conditions in this License.
+
+    Effective date
+
+    4.1. The licenses required and granted under Clause 3 with respect to any Derivative Works become effective, for each Derivative Works, on the date you first distribute such Derivative Works.
+
+    Limitations and Conditions of this License
+
+    5.1. You may not, whether by yourself or with other persons, provide the Software, whether in a repackaged version thereof or in a resulting aggregation with Derivative Works, to a third party as a hosted or managed service, including where you will provide access to any substantial set of the features or functionality of the Software.
+
+    Your Responsibilities
+
+    6.1. The Derivative Works that you create or to which you contribute are governed by the terms of this License. You represent that the Derivative Works are your original creation(s), as clearly documented by you, and/or you have sufficient rights to grant the rights conveyed by this License.
+
+    6.2. You assume full responsibility for informing the recipients of this Software of the terms of this License, and how they can obtain a copy of this License.
+
+    6.3. In incorporating Derivative Works into this Software, you must include a statement in your license to that effect in the aggregated Software.
+
+    Termination
+
+    7.1. If you violate the terms of this License, your use is not licensed and will result in the termination of the licenses granted to you hereunder.
+
+    7.2. If the Licensor provides you with a notice of your violation, you shall cease all violations of this license no later than 30 days after receipt of that notice and your licenses will be reinstated retroactively.
+
+    7.3. If you violate the terms of this License after such reinstatement under Clause 7.2, any subsequent violations of these terms will result in the termination of your license automatically and permanently.
+
+    7.4. This License does not cover any patent claims that you cause to be infringed by Derivative Works or additions to the Software. Should you make any written claim that the Software infringes or contributes to infringement of any patent, the patent license for this Software granted under the terms of this License ends immediately. If Your representative makes a patent claim, the patent license granted under this License likewise ends immediately.
+
+    Disclaimer of Warranty
+
+    8.1. Unless required by applicable law or agreed to in writing, the Licensor provides the Software 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 Software and assume any risks associated with Your exercise of permissions under this License.
+
+    Limitation of Liability
+
+    9.1. 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 the Licensor 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 Software (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 the Licensor has been advised of the possibility of such damages.
+
+    General
+
+    10.1. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
+
+    10.2. This License shall not be enforceable except by a Licensor acting as such, and third-party beneficiary rights are specifically excluded.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/brankas-open-license-1.0.json b/docs/brankas-open-license-1.0.json new file mode 100644 index 0000000000..348471a120 --- /dev/null +++ b/docs/brankas-open-license-1.0.json @@ -0,0 +1,10 @@ +{ + "key": "brankas-open-license-1.0", + "short_name": "Brankas Open License 1.0", + "name": "Brankas Open License 1.0", + "category": "Free Restricted", + "owner": "Brankas", + "homepage_url": "https://www.brankas.com/open-license", + "spdx_license_key": "LicenseRef-scancode-brankas-open-license-1.0", + "faq_url": "https://www.brankas.com/open-license" +} \ No newline at end of file diff --git a/docs/brankas-open-license-1.0.yml b/docs/brankas-open-license-1.0.yml new file mode 100644 index 0000000000..31a6d14dea --- /dev/null +++ b/docs/brankas-open-license-1.0.yml @@ -0,0 +1,8 @@ +key: brankas-open-license-1.0 +short_name: Brankas Open License 1.0 +name: Brankas Open License 1.0 +category: Free Restricted +owner: Brankas +homepage_url: https://www.brankas.com/open-license +spdx_license_key: LicenseRef-scancode-brankas-open-license-1.0 +faq_url: https://www.brankas.com/open-license diff --git a/docs/brent-corkum.LICENSE b/docs/brent-corkum.LICENSE index 1c15c81e54..938b5ba2bc 100644 --- a/docs/brent-corkum.LICENSE +++ b/docs/brent-corkum.LICENSE @@ -1,3 +1,18 @@ +--- +key: brent-corkum +short_name: Brent Corkum License +name: Brent Corkum License +category: Permissive +owner: Rocscience +spdx_license_key: LicenseRef-scancode-brent-corkum +ignorable_authors: + - Brent Corkum +ignorable_urls: + - http://www.rocscience.com/~corkum/BCMenu.html +ignorable_emails: + - corkum@rocscience.com +--- + Brent Corkum License Date : April 2002 diff --git a/docs/brent-corkum.html b/docs/brent-corkum.html index 4136224db9..568305c853 100644 --- a/docs/brent-corkum.html +++ b/docs/brent-corkum.html @@ -157,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/brent-corkum.json b/docs/brent-corkum.json index 944a811f30..3be3be5c6b 100644 --- a/docs/brent-corkum.json +++ b/docs/brent-corkum.json @@ -1 +1,17 @@ -{"key": "brent-corkum", "short_name": "Brent Corkum License", "name": "Brent Corkum License", "category": "Permissive", "owner": "Rocscience", "spdx_license_key": "LicenseRef-scancode-brent-corkum", "ignorable_authors": ["Brent Corkum"], "ignorable_urls": ["http://www.rocscience.com/~corkum/BCMenu.html"], "ignorable_emails": ["corkum@rocscience.com"]} \ No newline at end of file +{ + "key": "brent-corkum", + "short_name": "Brent Corkum License", + "name": "Brent Corkum License", + "category": "Permissive", + "owner": "Rocscience", + "spdx_license_key": "LicenseRef-scancode-brent-corkum", + "ignorable_authors": [ + "Brent Corkum" + ], + "ignorable_urls": [ + "http://www.rocscience.com/~corkum/BCMenu.html" + ], + "ignorable_emails": [ + "corkum@rocscience.com" + ] +} \ No newline at end of file diff --git a/docs/brian-clapper.LICENSE b/docs/brian-clapper.LICENSE index 9a2503b22a..4c586ad1ff 100644 --- a/docs/brian-clapper.LICENSE +++ b/docs/brian-clapper.LICENSE @@ -1,3 +1,17 @@ +--- +key: brian-clapper +short_name: Brian Clapper License +name: Brian Clapper License +category: Permissive +owner: clapper.org +homepage_url: http://software.clapper.org/poll/index.html +spdx_license_key: LicenseRef-scancode-brian-clapper +ignorable_authors: + - Brian M. Clapper +ignorable_emails: + - bmc@clapper.org +--- + Redistribution and use in source and binary forms are permitted provided that: (1) source distributions retain this entire copyright notice and comment; (2) modifications diff --git a/docs/brian-clapper.html b/docs/brian-clapper.html index 6c9b14af6f..fc23b4b647 100644 --- a/docs/brian-clapper.html +++ b/docs/brian-clapper.html @@ -168,7 +168,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/brian-clapper.json b/docs/brian-clapper.json index a225d5fe14..97421f1a77 100644 --- a/docs/brian-clapper.json +++ b/docs/brian-clapper.json @@ -1 +1,15 @@ -{"key": "brian-clapper", "short_name": "Brian Clapper License", "name": "Brian Clapper License", "category": "Permissive", "owner": "clapper.org", "homepage_url": "http://software.clapper.org/poll/index.html", "spdx_license_key": "LicenseRef-scancode-brian-clapper", "ignorable_authors": ["Brian M. Clapper "], "ignorable_emails": ["bmc@clapper.org"]} \ No newline at end of file +{ + "key": "brian-clapper", + "short_name": "Brian Clapper License", + "name": "Brian Clapper License", + "category": "Permissive", + "owner": "clapper.org", + "homepage_url": "http://software.clapper.org/poll/index.html", + "spdx_license_key": "LicenseRef-scancode-brian-clapper", + "ignorable_authors": [ + "Brian M. Clapper " + ], + "ignorable_emails": [ + "bmc@clapper.org" + ] +} \ No newline at end of file diff --git a/docs/brian-gladman-3-clause.LICENSE b/docs/brian-gladman-3-clause.LICENSE index 29aecbd079..ddc066434c 100644 --- a/docs/brian-gladman-3-clause.LICENSE +++ b/docs/brian-gladman-3-clause.LICENSE @@ -1,3 +1,12 @@ +--- +key: brian-gladman-3-clause +short_name: Brian Gladman 3-Clause License +name: Brian Gladman 3-Clause License +category: Permissive +owner: Brian Gladman +spdx_license_key: LicenseRef-scancode-brian-gladman-3-clause +--- + LICENSE TERMS The free distribution and use of this software in both source and binary @@ -17,4 +26,4 @@ This software is provided 'as is' with no explicit or implied warranties in respect of its properties, including, but not limited to, correctness - and fitness for purpose. + and fitness for purpose. \ No newline at end of file diff --git a/docs/brian-gladman-3-clause.html b/docs/brian-gladman-3-clause.html index deb125a1ed..38b10842cf 100644 --- a/docs/brian-gladman-3-clause.html +++ b/docs/brian-gladman-3-clause.html @@ -127,8 +127,7 @@ This software is provided 'as is' with no explicit or implied warranties in respect of its properties, including, but not limited to, correctness - and fitness for purpose. - + and fitness for purpose.
@@ -140,7 +139,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/brian-gladman-3-clause.json b/docs/brian-gladman-3-clause.json index d86256a056..d39bbf22be 100644 --- a/docs/brian-gladman-3-clause.json +++ b/docs/brian-gladman-3-clause.json @@ -1 +1,8 @@ -{"key": "brian-gladman-3-clause", "short_name": "Brian Gladman 3-Clause License", "name": "Brian Gladman 3-Clause License", "category": "Permissive", "owner": "Brian Gladman", "spdx_license_key": "LicenseRef-scancode-brian-gladman-3-clause"} \ No newline at end of file +{ + "key": "brian-gladman-3-clause", + "short_name": "Brian Gladman 3-Clause License", + "name": "Brian Gladman 3-Clause License", + "category": "Permissive", + "owner": "Brian Gladman", + "spdx_license_key": "LicenseRef-scancode-brian-gladman-3-clause" +} \ No newline at end of file diff --git a/docs/brian-gladman-dual.LICENSE b/docs/brian-gladman-dual.LICENSE index 40c238f74a..875924d5bf 100644 --- a/docs/brian-gladman-dual.LICENSE +++ b/docs/brian-gladman-dual.LICENSE @@ -1,3 +1,29 @@ +--- +key: brian-gladman-dual +is_deprecated: yes +short_name: Brian Gladman Dual BSD-GPL +name: Brian Gladman Dual BSD-GPL +category: Permissive +owner: Brian Gladman +homepage_url: http://www.gladman.me.uk/ +notes: this is a composite of gpl-2.0-plus AND brian-gladman-3-clause. See the addition of "of + your choice" to the text based on https://github.com/BrianGladman/aes/issues/7#issuecomment-155121598 + BrianGladman commented on Nov 9, 2015 Hi Jonas, I really wish now that I had not done this + dual licensing as the BSD license should have been sufficient. But someone at the time wouldn't + accept this and insisted on the GPL. You can interpret the GPL license on any of my code + wherever it appears as "ALTERNATIVELY, provided that this notice is retained in full, this + product may be distributed under the terms of a GNU General Public License (GPL) of your + choice, in which case the provisions of this GPL apply INSTEAD OF those given above." I + hope that helps, if not please get back to me. +text_urls: + - https://github.com/basho/skerl/blob/master/c_src/brg_types.h +other_urls: + - http://brgladman.org/ + - http://fp.gladman.plus.com/ + - http://www.ecrypt.eu.org/stream/svn/viewcvs.cgi/ecrypt/trunk/benchmarks/aes-ctr/aes-128/gladman/aes.h?diff_format=s&rev=190&view=auto + - https://launchpad.net/ubuntu/oneiric/+source/silc-server/+copyright +--- + LICENSE TERMS The free distribution and use of this software in both source and binary diff --git a/docs/brian-gladman-dual.html b/docs/brian-gladman-dual.html index 31a226a914..9daf8fc00d 100644 --- a/docs/brian-gladman-dual.html +++ b/docs/brian-gladman-dual.html @@ -176,7 +176,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/brian-gladman-dual.json b/docs/brian-gladman-dual.json index f5c18a852e..6c025c445f 100644 --- a/docs/brian-gladman-dual.json +++ b/docs/brian-gladman-dual.json @@ -1 +1,19 @@ -{"key": "brian-gladman-dual", "is_deprecated": true, "short_name": "Brian Gladman Dual BSD-GPL", "name": "Brian Gladman Dual BSD-GPL", "category": "Permissive", "owner": "Brian Gladman", "homepage_url": "http://www.gladman.me.uk/", "notes": "this is a composite of gpl-2.0-plus AND brian-gladman-3-clause. See the addition of \"of your choice\" to the text based on https://github.com/BrianGladman/aes/issues/7#issuecomment-155121598 BrianGladman commented on Nov 9, 2015 Hi Jonas, I really wish now that I had not done this dual licensing as the BSD license should have been sufficient. But someone at the time wouldn't accept this and insisted on the GPL. You can interpret the GPL license on any of my code wherever it appears as \"ALTERNATIVELY, provided that this notice is retained in full, this product may be distributed under the terms of a GNU General Public License (GPL) of your choice, in which case the provisions of this GPL apply INSTEAD OF those given above.\" I hope that helps, if not please get back to me.", "text_urls": ["https://github.com/basho/skerl/blob/master/c_src/brg_types.h"], "other_urls": ["http://brgladman.org/", "http://fp.gladman.plus.com/", "http://www.ecrypt.eu.org/stream/svn/viewcvs.cgi/ecrypt/trunk/benchmarks/aes-ctr/aes-128/gladman/aes.h?diff_format=s&rev=190&view=auto", "https://launchpad.net/ubuntu/oneiric/+source/silc-server/+copyright"]} \ No newline at end of file +{ + "key": "brian-gladman-dual", + "is_deprecated": true, + "short_name": "Brian Gladman Dual BSD-GPL", + "name": "Brian Gladman Dual BSD-GPL", + "category": "Permissive", + "owner": "Brian Gladman", + "homepage_url": "http://www.gladman.me.uk/", + "notes": "this is a composite of gpl-2.0-plus AND brian-gladman-3-clause. See the addition of \"of your choice\" to the text based on https://github.com/BrianGladman/aes/issues/7#issuecomment-155121598 BrianGladman commented on Nov 9, 2015 Hi Jonas, I really wish now that I had not done this dual licensing as the BSD license should have been sufficient. But someone at the time wouldn't accept this and insisted on the GPL. You can interpret the GPL license on any of my code wherever it appears as \"ALTERNATIVELY, provided that this notice is retained in full, this product may be distributed under the terms of a GNU General Public License (GPL) of your choice, in which case the provisions of this GPL apply INSTEAD OF those given above.\" I hope that helps, if not please get back to me.", + "text_urls": [ + "https://github.com/basho/skerl/blob/master/c_src/brg_types.h" + ], + "other_urls": [ + "http://brgladman.org/", + "http://fp.gladman.plus.com/", + "http://www.ecrypt.eu.org/stream/svn/viewcvs.cgi/ecrypt/trunk/benchmarks/aes-ctr/aes-128/gladman/aes.h?diff_format=s&rev=190&view=auto", + "https://launchpad.net/ubuntu/oneiric/+source/silc-server/+copyright" + ] +} \ No newline at end of file diff --git a/docs/brian-gladman.LICENSE b/docs/brian-gladman.LICENSE index 84206419c0..9d287c752b 100644 --- a/docs/brian-gladman.LICENSE +++ b/docs/brian-gladman.LICENSE @@ -1,3 +1,15 @@ +--- +key: brian-gladman +short_name: Brian Gladman License +name: Brian Gladman License +category: Permissive +owner: Brian Gladman +homepage_url: http://www.gladman.me.uk/AES +spdx_license_key: LicenseRef-scancode-brian-gladman +text_urls: + - http://gladman.plushost.co.uk/oldsite/AES/aes-src-12-09-11.zip +--- + The redistribution and use of this software (with or without changes) is allowed without the payment of fees or royalties provided that: @@ -9,4 +21,4 @@ is allowed without the payment of fees or royalties provided that: This software is provided 'as is' with no explicit or implied warranties in respect of its operation, including, but not limited to, correctness -and fitness for purpose. +and fitness for purpose. \ No newline at end of file diff --git a/docs/brian-gladman.html b/docs/brian-gladman.html index 2e588034c4..0746a2b48b 100644 --- a/docs/brian-gladman.html +++ b/docs/brian-gladman.html @@ -135,8 +135,7 @@ This software is provided 'as is' with no explicit or implied warranties in respect of its operation, including, but not limited to, correctness -and fitness for purpose. - +and fitness for purpose.
@@ -148,7 +147,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/brian-gladman.json b/docs/brian-gladman.json index 6190d2c322..72a4e897d3 100644 --- a/docs/brian-gladman.json +++ b/docs/brian-gladman.json @@ -1 +1,12 @@ -{"key": "brian-gladman", "short_name": "Brian Gladman License", "name": "Brian Gladman License", "category": "Permissive", "owner": "Brian Gladman", "homepage_url": "http://www.gladman.me.uk/AES", "spdx_license_key": "LicenseRef-scancode-brian-gladman", "text_urls": ["http://gladman.plushost.co.uk/oldsite/AES/aes-src-12-09-11.zip"]} \ No newline at end of file +{ + "key": "brian-gladman", + "short_name": "Brian Gladman License", + "name": "Brian Gladman License", + "category": "Permissive", + "owner": "Brian Gladman", + "homepage_url": "http://www.gladman.me.uk/AES", + "spdx_license_key": "LicenseRef-scancode-brian-gladman", + "text_urls": [ + "http://gladman.plushost.co.uk/oldsite/AES/aes-src-12-09-11.zip" + ] +} \ No newline at end of file diff --git a/docs/broadcom-cfe.LICENSE b/docs/broadcom-cfe.LICENSE index 2066254348..80b8b3eb4c 100644 --- a/docs/broadcom-cfe.LICENSE +++ b/docs/broadcom-cfe.LICENSE @@ -1,3 +1,12 @@ +--- +key: broadcom-cfe +short_name: Broadcom CFE License +name: Broadcom CFE License +category: Permissive +owner: Broadcom +spdx_license_key: LicenseRef-scancode-broadcom-cfe +--- + This software is furnished under license and may be used and copied only in accordance with the following terms and conditions. Subject to these conditions, you may download, copy, install, use, modify and distribute modified or unmodified copies diff --git a/docs/broadcom-cfe.html b/docs/broadcom-cfe.html index 57e290aa85..b4dded4f85 100644 --- a/docs/broadcom-cfe.html +++ b/docs/broadcom-cfe.html @@ -142,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/broadcom-cfe.json b/docs/broadcom-cfe.json index 9833b9e9b8..b21404eb73 100644 --- a/docs/broadcom-cfe.json +++ b/docs/broadcom-cfe.json @@ -1 +1,8 @@ -{"key": "broadcom-cfe", "short_name": "Broadcom CFE License", "name": "Broadcom CFE License", "category": "Permissive", "owner": "Broadcom", "spdx_license_key": "LicenseRef-scancode-broadcom-cfe"} \ No newline at end of file +{ + "key": "broadcom-cfe", + "short_name": "Broadcom CFE License", + "name": "Broadcom CFE License", + "category": "Permissive", + "owner": "Broadcom", + "spdx_license_key": "LicenseRef-scancode-broadcom-cfe" +} \ No newline at end of file diff --git a/docs/broadcom-commercial.LICENSE b/docs/broadcom-commercial.LICENSE index 06b3051be8..84d49ec7f3 100644 --- a/docs/broadcom-commercial.LICENSE +++ b/docs/broadcom-commercial.LICENSE @@ -1,5 +1,14 @@ +--- +key: broadcom-commercial +short_name: Broadcom Commercial Notice +name: Broadcom Commercial Notice +category: Commercial +owner: Broadcom +spdx_license_key: LicenseRef-scancode-broadcom-commercial +--- + Confidential Property of Broadcom Corporation THIS SOFTWARE MAY ONLY BE USED SUBJECT TO AN EXECUTED SOFTWARE LICENSE AGREEMENT BETWEEN THE USER AND BROADCOM. YOU HAVE NO RIGHT TO USE OR -EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT. +EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT. \ No newline at end of file diff --git a/docs/broadcom-commercial.html b/docs/broadcom-commercial.html index cfff66ccb2..c5bc3216c7 100644 --- a/docs/broadcom-commercial.html +++ b/docs/broadcom-commercial.html @@ -112,8 +112,7 @@ THIS SOFTWARE MAY ONLY BE USED SUBJECT TO AN EXECUTED SOFTWARE LICENSE AGREEMENT BETWEEN THE USER AND BROADCOM. YOU HAVE NO RIGHT TO USE OR -EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT. - +EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT.
@@ -125,7 +124,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/broadcom-commercial.json b/docs/broadcom-commercial.json index 4b12efb21f..0947e85feb 100644 --- a/docs/broadcom-commercial.json +++ b/docs/broadcom-commercial.json @@ -1 +1,8 @@ -{"key": "broadcom-commercial", "short_name": "Broadcom Commercial Notice", "name": "Broadcom Commercial Notice", "category": "Commercial", "owner": "Broadcom", "spdx_license_key": "LicenseRef-scancode-broadcom-commercial"} \ No newline at end of file +{ + "key": "broadcom-commercial", + "short_name": "Broadcom Commercial Notice", + "name": "Broadcom Commercial Notice", + "category": "Commercial", + "owner": "Broadcom", + "spdx_license_key": "LicenseRef-scancode-broadcom-commercial" +} \ No newline at end of file diff --git a/docs/broadcom-confidential.LICENSE b/docs/broadcom-confidential.LICENSE index 54c7d610e5..f4c6d7e3f9 100644 --- a/docs/broadcom-confidential.LICENSE +++ b/docs/broadcom-confidential.LICENSE @@ -1,5 +1,14 @@ +--- +key: broadcom-confidential +short_name: Broadcom Confidential +name: Broadcom Confidential +category: Commercial +owner: Broadcom +spdx_license_key: LicenseRef-scancode-broadcom-confidential +--- + No portions of this material may be reproduced in any form without the written permission of: Broadcom Corporation 16251 Laguna Canyon Road Irvine, California 92618 -All information contained in this document is Broadcom Corporation company private, proprietary, and trade secret. +All information contained in this document is Broadcom Corporation company private, proprietary, and trade secret. \ No newline at end of file diff --git a/docs/broadcom-confidential.html b/docs/broadcom-confidential.html index fd097f5766..82df7a8d75 100644 --- a/docs/broadcom-confidential.html +++ b/docs/broadcom-confidential.html @@ -112,8 +112,7 @@ Broadcom Corporation 16251 Laguna Canyon Road Irvine, California 92618 -All information contained in this document is Broadcom Corporation company private, proprietary, and trade secret. - +All information contained in this document is Broadcom Corporation company private, proprietary, and trade secret.
@@ -125,7 +124,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/broadcom-confidential.json b/docs/broadcom-confidential.json index 194a239365..17fff7b8ce 100644 --- a/docs/broadcom-confidential.json +++ b/docs/broadcom-confidential.json @@ -1 +1,8 @@ -{"key": "broadcom-confidential", "short_name": "Broadcom Confidential", "name": "Broadcom Confidential", "category": "Commercial", "owner": "Broadcom", "spdx_license_key": "LicenseRef-scancode-broadcom-confidential"} \ No newline at end of file +{ + "key": "broadcom-confidential", + "short_name": "Broadcom Confidential", + "name": "Broadcom Confidential", + "category": "Commercial", + "owner": "Broadcom", + "spdx_license_key": "LicenseRef-scancode-broadcom-confidential" +} \ No newline at end of file diff --git a/docs/broadcom-dual.LICENSE b/docs/broadcom-dual.LICENSE index 058d4a59a6..b563f8ed97 100644 --- a/docs/broadcom-dual.LICENSE +++ b/docs/broadcom-dual.LICENSE @@ -1,3 +1,13 @@ +--- +key: broadcom-dual +is_deprecated: yes +short_name: Broadcom Dual GPL-Commercial +name: Broadcom Dual GPL-Commercial +category: Copyleft +owner: Broadcom +notes: composite +--- + Unless you and Broadcom execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2, available at diff --git a/docs/broadcom-dual.html b/docs/broadcom-dual.html index 05e6738426..49dc9b2484 100644 --- a/docs/broadcom-dual.html +++ b/docs/broadcom-dual.html @@ -135,7 +135,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/broadcom-dual.json b/docs/broadcom-dual.json index 8257475414..8feb466a90 100644 --- a/docs/broadcom-dual.json +++ b/docs/broadcom-dual.json @@ -1 +1,9 @@ -{"key": "broadcom-dual", "is_deprecated": true, "short_name": "Broadcom Dual GPL-Commercial", "name": "Broadcom Dual GPL-Commercial", "category": "Copyleft", "owner": "Broadcom", "notes": "composite"} \ No newline at end of file +{ + "key": "broadcom-dual", + "is_deprecated": true, + "short_name": "Broadcom Dual GPL-Commercial", + "name": "Broadcom Dual GPL-Commercial", + "category": "Copyleft", + "owner": "Broadcom", + "notes": "composite" +} \ No newline at end of file diff --git a/docs/broadcom-linking-exception-2.0.LICENSE b/docs/broadcom-linking-exception-2.0.LICENSE index 8f5bdf5ed3..4cf2344461 100644 --- a/docs/broadcom-linking-exception-2.0.LICENSE +++ b/docs/broadcom-linking-exception-2.0.LICENSE @@ -1,3 +1,32 @@ +--- +key: broadcom-linking-exception-2.0 +short_name: Broadcom Linking Exception to GPL 2.0 +name: Broadcom Linking Exception to GPL 2.0 +category: Copyleft Limited +owner: Broadcom +is_exception: yes +spdx_license_key: LicenseRef-scancode-bcm-linking-exception-2.0 +standard_notice: | + Copyright (c) 2006-2007 Broadcom Corporation + All Rights Reserved + Unless you and Broadcom execute a separate written software license + agreement governing use of this software, this software is licensed to you + under the terms of the GNU General Public License version 2 (the "GPL"), + available at http://www.broadcom.com/licenses/GPLv2.php, with the following + added to such license: + As a special exception, the copyright holders of this software give you + permission to link this software with independent modules, and to copy and + distribute the resulting executable under terms of your choice, provided + that you also meet, for each linked independent module, the terms and + conditions of the license of that module. + An independent module is a module which is not derived from this software. + The special exception does not apply to any modifications of the software. + Not withstanding the above, under no circumstances may you combine this + software in any way with any other Broadcom software provided under a + license other than the GPL, without Broadcom's express prior written + consent. +--- + As a special exception, the copyright holders of this software give you permission to link this software with independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from this software. The special exception does not apply to any modifications of the software. diff --git a/docs/broadcom-linking-exception-2.0.html b/docs/broadcom-linking-exception-2.0.html index d084924881..75fd71dcfa 100644 --- a/docs/broadcom-linking-exception-2.0.html +++ b/docs/broadcom-linking-exception-2.0.html @@ -156,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/broadcom-linking-exception-2.0.json b/docs/broadcom-linking-exception-2.0.json index 2f02e4599b..85bf774f8f 100644 --- a/docs/broadcom-linking-exception-2.0.json +++ b/docs/broadcom-linking-exception-2.0.json @@ -1 +1,10 @@ -{"key": "broadcom-linking-exception-2.0", "short_name": "Broadcom Linking Exception to GPL 2.0", "name": "Broadcom Linking Exception to GPL 2.0", "category": "Copyleft Limited", "owner": "Broadcom", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-bcm-linking-exception-2.0", "standard_notice": "Copyright (c) 2006-2007 Broadcom Corporation\nAll Rights Reserved\nUnless you and Broadcom execute a separate written software license\nagreement governing use of this software, this software is licensed to you\nunder the terms of the GNU General Public License version 2 (the \"GPL\"),\navailable at http://www.broadcom.com/licenses/GPLv2.php, with the following\nadded to such license:\nAs a special exception, the copyright holders of this software give you\npermission to link this software with independent modules, and to copy and\ndistribute the resulting executable under terms of your choice, provided\nthat you also meet, for each linked independent module, the terms and\nconditions of the license of that module.\nAn independent module is a module which is not derived from this software.\nThe special exception does not apply to any modifications of the software.\nNot withstanding the above, under no circumstances may you combine this\nsoftware in any way with any other Broadcom software provided under a\nlicense other than the GPL, without Broadcom's express prior written\nconsent.\n"} \ No newline at end of file +{ + "key": "broadcom-linking-exception-2.0", + "short_name": "Broadcom Linking Exception to GPL 2.0", + "name": "Broadcom Linking Exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "Broadcom", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-bcm-linking-exception-2.0", + "standard_notice": "Copyright (c) 2006-2007 Broadcom Corporation\nAll Rights Reserved\nUnless you and Broadcom execute a separate written software license\nagreement governing use of this software, this software is licensed to you\nunder the terms of the GNU General Public License version 2 (the \"GPL\"),\navailable at http://www.broadcom.com/licenses/GPLv2.php, with the following\nadded to such license:\nAs a special exception, the copyright holders of this software give you\npermission to link this software with independent modules, and to copy and\ndistribute the resulting executable under terms of your choice, provided\nthat you also meet, for each linked independent module, the terms and\nconditions of the license of that module.\nAn independent module is a module which is not derived from this software.\nThe special exception does not apply to any modifications of the software.\nNot withstanding the above, under no circumstances may you combine this\nsoftware in any way with any other Broadcom software provided under a\nlicense other than the GPL, without Broadcom's express prior written\nconsent.\n" +} \ No newline at end of file diff --git a/docs/broadcom-linking-unmodified.LICENSE b/docs/broadcom-linking-unmodified.LICENSE index 3392f2d132..92743e7cfb 100644 --- a/docs/broadcom-linking-unmodified.LICENSE +++ b/docs/broadcom-linking-unmodified.LICENSE @@ -1,3 +1,15 @@ +--- +key: broadcom-linking-unmodified +is_deprecated: yes +short_name: Broadcom Linking Exception if unmodified +name: Broadcom Linking Exception if unmodified +category: Copyleft Limited +owner: Broadcom +notes: The exception does not apply when modified +is_exception: yes +spdx_license_key: LicenseRef-scancode-broadcom-linking-unmodified +--- + As a special exception, the copyright holders of this software give you permission to link this software with independent modules, and to copy and distribute the resulting executable under terms of your choice, @@ -6,5 +18,4 @@ terms and conditions of the license of that module. An independent module is a module which is not derived from this software. The special exception does not apply to any modifications of -the software. - +the software. \ No newline at end of file diff --git a/docs/broadcom-linking-unmodified.html b/docs/broadcom-linking-unmodified.html index cf97a7fee0..dc8f95f674 100644 --- a/docs/broadcom-linking-unmodified.html +++ b/docs/broadcom-linking-unmodified.html @@ -71,6 +71,13 @@
+
is_deprecated
+
+ + True + +
+
short_name
@@ -130,9 +137,7 @@ An independent module is a module which is not derived from this software. The special exception does not apply to any modifications of -the software. - - +the software.
@@ -144,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/broadcom-linking-unmodified.json b/docs/broadcom-linking-unmodified.json index e1d50e7d53..9e051f0a86 100644 --- a/docs/broadcom-linking-unmodified.json +++ b/docs/broadcom-linking-unmodified.json @@ -1 +1,11 @@ -{"key": "broadcom-linking-unmodified", "short_name": "Broadcom Linking Exception if unmodified", "name": "Broadcom Linking Exception if unmodified", "category": "Copyleft Limited", "owner": "Broadcom", "notes": "The exception does not apply when modified", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-broadcom-linking-unmodified"} \ No newline at end of file +{ + "key": "broadcom-linking-unmodified", + "is_deprecated": true, + "short_name": "Broadcom Linking Exception if unmodified", + "name": "Broadcom Linking Exception if unmodified", + "category": "Copyleft Limited", + "owner": "Broadcom", + "notes": "The exception does not apply when modified", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-broadcom-linking-unmodified" +} \ No newline at end of file diff --git a/docs/broadcom-linking-unmodified.yml b/docs/broadcom-linking-unmodified.yml index c96fa2ecd1..8d2819549c 100644 --- a/docs/broadcom-linking-unmodified.yml +++ b/docs/broadcom-linking-unmodified.yml @@ -1,4 +1,5 @@ key: broadcom-linking-unmodified +is_deprecated: yes short_name: Broadcom Linking Exception if unmodified name: Broadcom Linking Exception if unmodified category: Copyleft Limited diff --git a/docs/broadcom-linux-firmware.LICENSE b/docs/broadcom-linux-firmware.LICENSE index 4a335036fa..40a7f02b5d 100644 --- a/docs/broadcom-linux-firmware.LICENSE +++ b/docs/broadcom-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: broadcom-linux-firmware +short_name: Broadcom Linux Firmware License +name: Broadcom Linux Firmware License +category: Proprietary Free +owner: Broadcom +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.broadcom_bcm43xx +spdx_license_key: LicenseRef-scancode-broadcom-linux-firmware +--- + SOFTWARE LICENSE AGREEMENT The accompanying software in binary code form (“Software”), is licensed to you, diff --git a/docs/broadcom-linux-firmware.html b/docs/broadcom-linux-firmware.html index 362eccaa23..82e83c0404 100644 --- a/docs/broadcom-linux-firmware.html +++ b/docs/broadcom-linux-firmware.html @@ -190,7 +190,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/broadcom-linux-firmware.json b/docs/broadcom-linux-firmware.json index af7a4ed687..8ab775acf2 100644 --- a/docs/broadcom-linux-firmware.json +++ b/docs/broadcom-linux-firmware.json @@ -1 +1,9 @@ -{"key": "broadcom-linux-firmware", "short_name": "Broadcom Linux Firmware License", "name": "Broadcom Linux Firmware License", "category": "Proprietary Free", "owner": "Broadcom", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.broadcom_bcm43xx", "spdx_license_key": "LicenseRef-scancode-broadcom-linux-firmware"} \ No newline at end of file +{ + "key": "broadcom-linux-firmware", + "short_name": "Broadcom Linux Firmware License", + "name": "Broadcom Linux Firmware License", + "category": "Proprietary Free", + "owner": "Broadcom", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.broadcom_bcm43xx", + "spdx_license_key": "LicenseRef-scancode-broadcom-linux-firmware" +} \ No newline at end of file diff --git a/docs/broadcom-linux-timer.LICENSE b/docs/broadcom-linux-timer.LICENSE index 5030f4b947..71da833c48 100644 --- a/docs/broadcom-linux-timer.LICENSE +++ b/docs/broadcom-linux-timer.LICENSE @@ -1,3 +1,16 @@ +--- +key: broadcom-linux-timer +short_name: Broadcom Warranty Disclaimer +name: Broadcom Warranty Disclaimer +category: Permissive +owner: Broadcom +spdx_license_key: LicenseRef-scancode-broadcom-linux-timer +ignorable_copyrights: + - Copyright (c) Broadcom Corporation +ignorable_holders: + - Broadcom Corporation +--- + Copyright (c) Broadcom Corporation All Rights Reserved. THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF diff --git a/docs/broadcom-linux-timer.html b/docs/broadcom-linux-timer.html index 21cf4b9eaf..a3fac9de5d 100644 --- a/docs/broadcom-linux-timer.html +++ b/docs/broadcom-linux-timer.html @@ -146,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/broadcom-linux-timer.json b/docs/broadcom-linux-timer.json index 1ca15764d7..51ae10f15a 100644 --- a/docs/broadcom-linux-timer.json +++ b/docs/broadcom-linux-timer.json @@ -1 +1,14 @@ -{"key": "broadcom-linux-timer", "short_name": "Broadcom Warranty Disclaimer", "name": "Broadcom Warranty Disclaimer", "category": "Permissive", "owner": "Broadcom", "spdx_license_key": "LicenseRef-scancode-broadcom-linux-timer", "ignorable_copyrights": ["Copyright (c) Broadcom Corporation"], "ignorable_holders": ["Broadcom Corporation"]} \ No newline at end of file +{ + "key": "broadcom-linux-timer", + "short_name": "Broadcom Warranty Disclaimer", + "name": "Broadcom Warranty Disclaimer", + "category": "Permissive", + "owner": "Broadcom", + "spdx_license_key": "LicenseRef-scancode-broadcom-linux-timer", + "ignorable_copyrights": [ + "Copyright (c) Broadcom Corporation" + ], + "ignorable_holders": [ + "Broadcom Corporation" + ] +} \ No newline at end of file diff --git a/docs/broadcom-proprietary.LICENSE b/docs/broadcom-proprietary.LICENSE index 2da5a0ff48..a19d230df5 100644 --- a/docs/broadcom-proprietary.LICENSE +++ b/docs/broadcom-proprietary.LICENSE @@ -1,3 +1,12 @@ +--- +key: broadcom-proprietary +short_name: Broadcom Proprietary +name: Broadcom Proprietary License +category: Proprietary Free +owner: Broadcom +spdx_license_key: LicenseRef-scancode-broadcom-proprietary +--- + SOFTWARE LICENSE AGREEMENT Unless you and Broadcom Corporation ("Broadcom") execute a separate written diff --git a/docs/broadcom-proprietary.html b/docs/broadcom-proprietary.html index 83f9ad6330..6ad8588fbf 100644 --- a/docs/broadcom-proprietary.html +++ b/docs/broadcom-proprietary.html @@ -335,7 +335,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/broadcom-proprietary.json b/docs/broadcom-proprietary.json index d773ad20fe..cd22e122da 100644 --- a/docs/broadcom-proprietary.json +++ b/docs/broadcom-proprietary.json @@ -1 +1,8 @@ -{"key": "broadcom-proprietary", "short_name": "Broadcom Proprietary", "name": "Broadcom Proprietary License", "category": "Proprietary Free", "owner": "Broadcom", "spdx_license_key": "LicenseRef-scancode-broadcom-proprietary"} \ No newline at end of file +{ + "key": "broadcom-proprietary", + "short_name": "Broadcom Proprietary", + "name": "Broadcom Proprietary License", + "category": "Proprietary Free", + "owner": "Broadcom", + "spdx_license_key": "LicenseRef-scancode-broadcom-proprietary" +} \ No newline at end of file diff --git a/docs/broadcom-raspberry-pi.LICENSE b/docs/broadcom-raspberry-pi.LICENSE index d3ad0ceb63..613724fbb1 100644 --- a/docs/broadcom-raspberry-pi.LICENSE +++ b/docs/broadcom-raspberry-pi.LICENSE @@ -1,3 +1,13 @@ +--- +key: broadcom-raspberry-pi +short_name: Broadcom Raspberry Pi Firmware License +name: Broadcom Raspberry Pi Firmware License +category: Proprietary Free +owner: Broadcom +homepage_url: https://github.com/raspberrypi/firmware/blob/master/boot/LICENCE.broadcom +spdx_license_key: LicenseRef-scancode-broadcom-raspberry-pi +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/docs/broadcom-raspberry-pi.html b/docs/broadcom-raspberry-pi.html index 0f6cc460ce..31e9bfb3eb 100644 --- a/docs/broadcom-raspberry-pi.html +++ b/docs/broadcom-raspberry-pi.html @@ -152,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/broadcom-raspberry-pi.json b/docs/broadcom-raspberry-pi.json index 9ee030f6f6..d335999724 100644 --- a/docs/broadcom-raspberry-pi.json +++ b/docs/broadcom-raspberry-pi.json @@ -1 +1,9 @@ -{"key": "broadcom-raspberry-pi", "short_name": "Broadcom Raspberry Pi Firmware License", "name": "Broadcom Raspberry Pi Firmware License", "category": "Proprietary Free", "owner": "Broadcom", "homepage_url": "https://github.com/raspberrypi/firmware/blob/master/boot/LICENCE.broadcom", "spdx_license_key": "LicenseRef-scancode-broadcom-raspberry-pi"} \ No newline at end of file +{ + "key": "broadcom-raspberry-pi", + "short_name": "Broadcom Raspberry Pi Firmware License", + "name": "Broadcom Raspberry Pi Firmware License", + "category": "Proprietary Free", + "owner": "Broadcom", + "homepage_url": "https://github.com/raspberrypi/firmware/blob/master/boot/LICENCE.broadcom", + "spdx_license_key": "LicenseRef-scancode-broadcom-raspberry-pi" +} \ No newline at end of file diff --git a/docs/broadcom-standard-terms.LICENSE b/docs/broadcom-standard-terms.LICENSE index f5b5a9cc45..1d6af90242 100644 --- a/docs/broadcom-standard-terms.LICENSE +++ b/docs/broadcom-standard-terms.LICENSE @@ -1,3 +1,12 @@ +--- +key: broadcom-standard-terms +short_name: Broadcom Standard Terms +name: Broadcom Standard Terms +category: Commercial +owner: Broadcom +spdx_license_key: LicenseRef-scancode-broadcom-standard-terms +--- + This program is the proprietary software of Broadcom Corporation and/or its licensors, and may only be used, duplicated, modified or distributed pursuant to the terms and conditions of a separate, written license diff --git a/docs/broadcom-standard-terms.html b/docs/broadcom-standard-terms.html index d2059a7f98..212619592a 100644 --- a/docs/broadcom-standard-terms.html +++ b/docs/broadcom-standard-terms.html @@ -156,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/broadcom-standard-terms.json b/docs/broadcom-standard-terms.json index a9c5bce382..859eac249d 100644 --- a/docs/broadcom-standard-terms.json +++ b/docs/broadcom-standard-terms.json @@ -1 +1,8 @@ -{"key": "broadcom-standard-terms", "short_name": "Broadcom Standard Terms", "name": "Broadcom Standard Terms", "category": "Commercial", "owner": "Broadcom", "spdx_license_key": "LicenseRef-scancode-broadcom-standard-terms"} \ No newline at end of file +{ + "key": "broadcom-standard-terms", + "short_name": "Broadcom Standard Terms", + "name": "Broadcom Standard Terms", + "category": "Commercial", + "owner": "Broadcom", + "spdx_license_key": "LicenseRef-scancode-broadcom-standard-terms" +} \ No newline at end of file diff --git a/docs/broadcom-unmodified-exception.LICENSE b/docs/broadcom-unmodified-exception.LICENSE new file mode 100644 index 0000000000..d4c69e835b --- /dev/null +++ b/docs/broadcom-unmodified-exception.LICENSE @@ -0,0 +1,19 @@ +--- +key: broadcom-unmodified-exception +short_name: Broadcom Unmodified Linking Exception +name: Broadcom Unmodified Linking Exception +category: Copyleft Limited +owner: Broadcom +is_exception: yes +spdx_license_key: LicenseRef-scancode-broadcom-unmodified-exception +--- + +As a special exception, the copyright holders of this software give you +permission to link this software with independent modules, and to copy +and distribute the resulting executable under terms of your choice, +provided that you also meet, for each linked independent module, the +terms and conditions of the license of that module. + +An independent module is a module which is not derived from this +software. The special exception does not apply to any modifications of +the software. \ No newline at end of file diff --git a/docs/broadcom-unmodified-exception.html b/docs/broadcom-unmodified-exception.html new file mode 100644 index 0000000000..bc22a59dbe --- /dev/null +++ b/docs/broadcom-unmodified-exception.html @@ -0,0 +1,158 @@ + + + + + + LicenseDB: broadcom-unmodified-exception + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + broadcom-unmodified-exception + +
+ +
short_name
+
+ + Broadcom Unmodified Linking Exception + +
+ +
name
+
+ + Broadcom Unmodified Linking Exception + +
+ +
category
+
+ + Copyleft Limited + +
+ +
owner
+
+ + Broadcom + +
+ +
is_exception
+
+ + True + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-broadcom-unmodified-exception + +
+ +
+
license_text
+
As a special exception, the copyright holders of this software give you
+permission to link this software with independent modules, and to copy
+and distribute the resulting executable under terms of your choice,
+provided that you also meet, for each linked independent module, the
+terms and conditions of the license of that module.
+
+An independent module is a module which is not derived from this
+software.  The special exception does not apply to any modifications of
+the software.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/broadcom-unmodified-exception.json b/docs/broadcom-unmodified-exception.json new file mode 100644 index 0000000000..cb874abff9 --- /dev/null +++ b/docs/broadcom-unmodified-exception.json @@ -0,0 +1,9 @@ +{ + "key": "broadcom-unmodified-exception", + "short_name": "Broadcom Unmodified Linking Exception", + "name": "Broadcom Unmodified Linking Exception", + "category": "Copyleft Limited", + "owner": "Broadcom", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-broadcom-unmodified-exception" +} \ No newline at end of file diff --git a/docs/broadcom-unmodified-exception.yml b/docs/broadcom-unmodified-exception.yml new file mode 100644 index 0000000000..50c490c056 --- /dev/null +++ b/docs/broadcom-unmodified-exception.yml @@ -0,0 +1,7 @@ +key: broadcom-unmodified-exception +short_name: Broadcom Unmodified Linking Exception +name: Broadcom Unmodified Linking Exception +category: Copyleft Limited +owner: Broadcom +is_exception: yes +spdx_license_key: LicenseRef-scancode-broadcom-unmodified-exception diff --git a/docs/broadcom-unpublished-source.LICENSE b/docs/broadcom-unpublished-source.LICENSE index 800c0cc3fd..0f9ace2bc5 100644 --- a/docs/broadcom-unpublished-source.LICENSE +++ b/docs/broadcom-unpublished-source.LICENSE @@ -1 +1,11 @@ -This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation; the contents of this file may not be disclosed to third parties, copied or duplicated in any form, in whole or in part, without the prior written permission of Broadcom Corporation. \ No newline at end of file +--- +key: broadcom-unpublished-source +is_deprecated: yes +short_name: Broadcom Unpublished Source License +name: Broadcom Unpublished Source License +category: Commercial +owner: Broadcom +notes: use unpublished-source instead +--- + +This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation; the contents of this file may not be disclosed to third parties, copied or duplicated in any form, in whole or in part, without the prior written permission of Broadcom Corporation. \ No newline at end of file diff --git a/docs/broadcom-unpublished-source.html b/docs/broadcom-unpublished-source.html index 99cb3ccd75..b210ce341c 100644 --- a/docs/broadcom-unpublished-source.html +++ b/docs/broadcom-unpublished-source.html @@ -115,7 +115,7 @@
license_text
-
This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation; the contents of this file may not be disclosed to third parties, copied or duplicated in any form, in whole or in part, without the prior written permission of Broadcom Corporation. 
+
This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation; the contents of this file may not be disclosed to third parties, copied or duplicated in any form, in whole or in part, without the prior written permission of Broadcom Corporation.
@@ -127,7 +127,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/broadcom-unpublished-source.json b/docs/broadcom-unpublished-source.json index e27ec6bbf4..694c7ad287 100644 --- a/docs/broadcom-unpublished-source.json +++ b/docs/broadcom-unpublished-source.json @@ -1 +1,9 @@ -{"key": "broadcom-unpublished-source", "is_deprecated": true, "short_name": "Broadcom Unpublished Source License", "name": "Broadcom Unpublished Source License", "category": "Commercial", "owner": "Broadcom", "notes": "use unpublished-source instead"} \ No newline at end of file +{ + "key": "broadcom-unpublished-source", + "is_deprecated": true, + "short_name": "Broadcom Unpublished Source License", + "name": "Broadcom Unpublished Source License", + "category": "Commercial", + "owner": "Broadcom", + "notes": "use unpublished-source instead" +} \ No newline at end of file diff --git a/docs/broadcom-wiced.LICENSE b/docs/broadcom-wiced.LICENSE index 0da4150d4b..57196709f3 100644 --- a/docs/broadcom-wiced.LICENSE +++ b/docs/broadcom-wiced.LICENSE @@ -1,3 +1,14 @@ +--- +key: broadcom-wiced +short_name: Broadcom WICED SDK License +name: Broadcom WICED Development Kit License Agreement +category: Proprietary Free +owner: Broadcom +spdx_license_key: LicenseRef-scancode-broadcom-wiced +ignorable_urls: + - http://www.broadcom.com/ +--- + BROADCOM WICED DEVELOPMENT KIT LICENSE AGREEMENT IMPORTANT—BY OPENING THE PACKAGE FOR THIS BROADCOM WIRELESS INTERNET CONNECTIVITY FOR EMBEDDED DEVICES DEVELOPER’S KIT ("SDK"), YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS LICENSE AGREEMENT ("AGREEMENT"). IF YOU DO NOT AGREE WITH THE TERMS OF THIS AGREEMENT, DO NOT DOWNLOAD, INSTALL OR USE THE SOFTWARE AND PROMPTLY RETURN THE SDK AND THE ACCOMPANYING DOCUMENTATION TO BROADCOM. IF YOU AGREE WITH AND ACCEPT THE TERMS AND CONDITIONS OF THIS AGREEMENT, IT SHALL BECOME A LEGALLY BINDING AGREEMENT BETWEEN YOU AND BROADCOM CORPORATION ("BROADCOM"), AND YOU MAY PROCEED TO DOWNLOAD, INSTALL, AND USE THE SDK IN ACCORDANCE WITH THE TERMS AND CONDITIONS OF THIS AGREEMENT. diff --git a/docs/broadcom-wiced.html b/docs/broadcom-wiced.html index b60b3c17f1..a8d8e60476 100644 --- a/docs/broadcom-wiced.html +++ b/docs/broadcom-wiced.html @@ -168,7 +168,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/broadcom-wiced.json b/docs/broadcom-wiced.json index b4d317bf01..7c254d5a44 100644 --- a/docs/broadcom-wiced.json +++ b/docs/broadcom-wiced.json @@ -1 +1,11 @@ -{"key": "broadcom-wiced", "short_name": "Broadcom WICED SDK License", "name": "Broadcom WICED Development Kit License Agreement", "category": "Proprietary Free", "owner": "Broadcom", "spdx_license_key": "LicenseRef-scancode-broadcom-wiced", "ignorable_urls": ["http://www.broadcom.com/"]} \ No newline at end of file +{ + "key": "broadcom-wiced", + "short_name": "Broadcom WICED SDK License", + "name": "Broadcom WICED Development Kit License Agreement", + "category": "Proprietary Free", + "owner": "Broadcom", + "spdx_license_key": "LicenseRef-scancode-broadcom-wiced", + "ignorable_urls": [ + "http://www.broadcom.com/" + ] +} \ No newline at end of file diff --git a/docs/broadleaf-fair-use.LICENSE b/docs/broadleaf-fair-use.LICENSE index 1b71171f5e..295cbf8797 100644 --- a/docs/broadleaf-fair-use.LICENSE +++ b/docs/broadleaf-fair-use.LICENSE @@ -1,3 +1,15 @@ +--- +key: broadleaf-fair-use +short_name: Broadleaf Fair Use License Agreement v1.0 +name: Broadleaf Fair Use License Agreement v1.0 +category: Proprietary Free +owner: Broadleaf +homepage_url: http://license.broadleafcommerce.org/fair_use_license-1.0.txt +spdx_license_key: LicenseRef-scancode-broadleaf-fair-use +ignorable_urls: + - http://www.broadleafcommerce.com/license/commercial +--- + Broadleaf Fair Use License Agreement - Version 1.0 BY USING THE SOFTWARE, YOU (EITHER AN INDIVIDUAL OR A SINGLE ENTITY) AGREE THAT THIS COMMUNITY FAIR USE LICENSE AGREEMENT ("AGREEMENT") IS ENFORCEABLE LIKE ANY WRITTEN CONTRACT SIGNED BY YOU. IF YOU DO NOT AGREE TO ALL THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE. THE SOFTWARE YOU HAVE RECEIVED WITH OR SUBJECT TO THIS LICENSE IS THE SOFTWARE FOR COMMUNITY USE ("COMMUNITY SOFTWARE") AND IS SUBJECT TO VERY SPECIFIC LIMITATIONS BELOW. IF YOU EXCEED SUCH LIMITATIONS, THEN YOU WILL BE IMMEDIATELY REQUIRED TO PURCHASE A PAID PRODUCT AND LICENSE FEES WILL BE DUE FOR ANY PERIOD OF SUCH PAST USE IN VIOLATION HEREOF. diff --git a/docs/broadleaf-fair-use.html b/docs/broadleaf-fair-use.html index 7e8264c8fa..6ad8136bac 100644 --- a/docs/broadleaf-fair-use.html +++ b/docs/broadleaf-fair-use.html @@ -170,7 +170,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/broadleaf-fair-use.json b/docs/broadleaf-fair-use.json index b4b75711ad..65900fa0ff 100644 --- a/docs/broadleaf-fair-use.json +++ b/docs/broadleaf-fair-use.json @@ -1 +1,12 @@ -{"key": "broadleaf-fair-use", "short_name": "Broadleaf Fair Use License Agreement v1.0", "name": "Broadleaf Fair Use License Agreement v1.0", "category": "Proprietary Free", "owner": "Broadleaf", "homepage_url": "http://license.broadleafcommerce.org/fair_use_license-1.0.txt", "spdx_license_key": "LicenseRef-scancode-broadleaf-fair-use", "ignorable_urls": ["http://www.broadleafcommerce.com/license/commercial"]} \ No newline at end of file +{ + "key": "broadleaf-fair-use", + "short_name": "Broadleaf Fair Use License Agreement v1.0", + "name": "Broadleaf Fair Use License Agreement v1.0", + "category": "Proprietary Free", + "owner": "Broadleaf", + "homepage_url": "http://license.broadleafcommerce.org/fair_use_license-1.0.txt", + "spdx_license_key": "LicenseRef-scancode-broadleaf-fair-use", + "ignorable_urls": [ + "http://www.broadleafcommerce.com/license/commercial" + ] +} \ No newline at end of file diff --git a/docs/brocade-firmware.LICENSE b/docs/brocade-firmware.LICENSE index 8cf07ad8e3..1f6160b03e 100644 --- a/docs/brocade-firmware.LICENSE +++ b/docs/brocade-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: brocade-firmware +short_name: Brocade Firmware License +name: Brocade Firmware License +category: Permissive +owner: Brocade +homepage_url: http://download.vikis.lt/doc//bfa-firmware-3.2.23.0/LICENSE +spdx_license_key: LicenseRef-scancode-brocade-firmware +--- + Brocade Linux Fibre Channel HBA Firmware You may redistribute the hardware specific firmware binary file diff --git a/docs/brocade-firmware.html b/docs/brocade-firmware.html index d06a67633f..a5fc98e085 100644 --- a/docs/brocade-firmware.html +++ b/docs/brocade-firmware.html @@ -164,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/brocade-firmware.json b/docs/brocade-firmware.json index ca0adf19ce..39147945ee 100644 --- a/docs/brocade-firmware.json +++ b/docs/brocade-firmware.json @@ -1 +1,9 @@ -{"key": "brocade-firmware", "short_name": "Brocade Firmware License", "name": "Brocade Firmware License", "category": "Permissive", "owner": "Brocade", "homepage_url": "http://download.vikis.lt/doc//bfa-firmware-3.2.23.0/LICENSE", "spdx_license_key": "LicenseRef-scancode-brocade-firmware"} \ No newline at end of file +{ + "key": "brocade-firmware", + "short_name": "Brocade Firmware License", + "name": "Brocade Firmware License", + "category": "Permissive", + "owner": "Brocade", + "homepage_url": "http://download.vikis.lt/doc//bfa-firmware-3.2.23.0/LICENSE", + "spdx_license_key": "LicenseRef-scancode-brocade-firmware" +} \ No newline at end of file diff --git a/docs/bruno-podetti.LICENSE b/docs/bruno-podetti.LICENSE index df73052857..eaca849e31 100644 --- a/docs/bruno-podetti.LICENSE +++ b/docs/bruno-podetti.LICENSE @@ -1,3 +1,13 @@ +--- +key: bruno-podetti +short_name: Bruno Podetti License +name: Bruno Podetti License +category: Permissive +owner: Bruno Podetti +homepage_url: http://www.codeproject.com/Articles/2354/Owner-Drawn-Menu-with-Icons-Titles-and-Shading +spdx_license_key: LicenseRef-scancode-bruno-podetti +--- + You are free to use/modify this code but leave this header intact. This class is public domain so you are free to use it any of your applications (Freeware, Shareware, Commercial). diff --git a/docs/bruno-podetti.html b/docs/bruno-podetti.html index bfff426778..4c2288b0ae 100644 --- a/docs/bruno-podetti.html +++ b/docs/bruno-podetti.html @@ -133,7 +133,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bruno-podetti.json b/docs/bruno-podetti.json index c9d79a259c..1f74ab32cd 100644 --- a/docs/bruno-podetti.json +++ b/docs/bruno-podetti.json @@ -1 +1,9 @@ -{"key": "bruno-podetti", "short_name": "Bruno Podetti License", "name": "Bruno Podetti License", "category": "Permissive", "owner": "Bruno Podetti", "homepage_url": "http://www.codeproject.com/Articles/2354/Owner-Drawn-Menu-with-Icons-Titles-and-Shading", "spdx_license_key": "LicenseRef-scancode-bruno-podetti"} \ No newline at end of file +{ + "key": "bruno-podetti", + "short_name": "Bruno Podetti License", + "name": "Bruno Podetti License", + "category": "Permissive", + "owner": "Bruno Podetti", + "homepage_url": "http://www.codeproject.com/Articles/2354/Owner-Drawn-Menu-with-Icons-Titles-and-Shading", + "spdx_license_key": "LicenseRef-scancode-bruno-podetti" +} \ No newline at end of file diff --git a/docs/bsd-1-clause-build.LICENSE b/docs/bsd-1-clause-build.LICENSE index b89050c414..de144b9a93 100644 --- a/docs/bsd-1-clause-build.LICENSE +++ b/docs/bsd-1-clause-build.LICENSE @@ -1,3 +1,13 @@ +--- +key: bsd-1-clause-build +short_name: BSD-1-Clause Build +name: BSD-1-Clause Build system +category: Permissive +owner: PRPL Foundation. +homepage_url: https://github.com/prplfoundation/prplwrt/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-bsd-1-clause-build +--- + Redistribution and use, with or without modification, are permitted provided that the following condition is met: @@ -16,4 +26,4 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Note that while this license applies to the build system itself the -software it builds is separately licensed under its own terms and conditions. +software it builds is separately licensed under its own terms and conditions. \ No newline at end of file diff --git a/docs/bsd-1-clause-build.html b/docs/bsd-1-clause-build.html index aa393da3d9..94d4001762 100644 --- a/docs/bsd-1-clause-build.html +++ b/docs/bsd-1-clause-build.html @@ -133,8 +133,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Note that while this license applies to the build system itself the -software it builds is separately licensed under its own terms and conditions. - +software it builds is separately licensed under its own terms and conditions.
@@ -146,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-1-clause-build.json b/docs/bsd-1-clause-build.json index cf239cdf9b..ece439a275 100644 --- a/docs/bsd-1-clause-build.json +++ b/docs/bsd-1-clause-build.json @@ -1 +1,9 @@ -{"key": "bsd-1-clause-build", "short_name": "BSD-1-Clause Build", "name": "BSD-1-Clause Build system", "category": "Permissive", "owner": "PRPL Foundation.", "homepage_url": "https://github.com/prplfoundation/prplwrt/blob/master/LICENSE", "spdx_license_key": "LicenseRef-scancode-bsd-1-clause-build"} \ No newline at end of file +{ + "key": "bsd-1-clause-build", + "short_name": "BSD-1-Clause Build", + "name": "BSD-1-Clause Build system", + "category": "Permissive", + "owner": "PRPL Foundation.", + "homepage_url": "https://github.com/prplfoundation/prplwrt/blob/master/LICENSE", + "spdx_license_key": "LicenseRef-scancode-bsd-1-clause-build" +} \ No newline at end of file diff --git a/docs/bsd-1-clause.LICENSE b/docs/bsd-1-clause.LICENSE index d81b606c5b..494c397eaf 100644 --- a/docs/bsd-1-clause.LICENSE +++ b/docs/bsd-1-clause.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-1-clause +short_name: BSD-1-Clause +name: BSD-1-Clause +category: Permissive +owner: BSDI - Berkeley Software Design, Inc. +homepage_url: https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823 +spdx_license_key: BSD-1-Clause +text_urls: + - https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823 + - https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=250887&view=markup +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -14,4 +27,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/docs/bsd-1-clause.html b/docs/bsd-1-clause.html index c6773157c5..a35f62aebe 100644 --- a/docs/bsd-1-clause.html +++ b/docs/bsd-1-clause.html @@ -140,8 +140,7 @@ 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. - +SUCH DAMAGE.
@@ -153,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-1-clause.json b/docs/bsd-1-clause.json index 71e499c438..35b8194311 100644 --- a/docs/bsd-1-clause.json +++ b/docs/bsd-1-clause.json @@ -1 +1,13 @@ -{"key": "bsd-1-clause", "short_name": "BSD-1-Clause", "name": "BSD-1-Clause", "category": "Permissive", "owner": "BSDI - Berkeley Software Design, Inc.", "homepage_url": "https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823", "spdx_license_key": "BSD-1-Clause", "text_urls": ["https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823", "https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=250887&view=markup"]} \ No newline at end of file +{ + "key": "bsd-1-clause", + "short_name": "BSD-1-Clause", + "name": "BSD-1-Clause", + "category": "Permissive", + "owner": "BSDI - Berkeley Software Design, Inc.", + "homepage_url": "https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823", + "spdx_license_key": "BSD-1-Clause", + "text_urls": [ + "https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823", + "https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=250887&view=markup" + ] +} \ No newline at end of file diff --git a/docs/bsd-1988.LICENSE b/docs/bsd-1988.LICENSE index e7b64466ff..f3f97696b6 100644 --- a/docs/bsd-1988.LICENSE +++ b/docs/bsd-1988.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-1988 +short_name: BSD 1988 +name: BSD 1988 +category: Permissive +owner: Regents of the University of California +spdx_license_key: LicenseRef-scancode-bsd-1988 +ignorable_copyrights: + - copyright holder and its contributors +ignorable_holders: + - its contributors +--- + Redistribution and use in source and binary forms are permitted provided that: (1) source distributions retain this entire copyright notice and comment, and diff --git a/docs/bsd-1988.html b/docs/bsd-1988.html index 6fdbbd59f1..366e393ae0 100644 --- a/docs/bsd-1988.html +++ b/docs/bsd-1988.html @@ -154,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-1988.json b/docs/bsd-1988.json index 9403cb2134..8dd6380236 100644 --- a/docs/bsd-1988.json +++ b/docs/bsd-1988.json @@ -1 +1,14 @@ -{"key": "bsd-1988", "short_name": "BSD 1988", "name": "BSD 1988", "category": "Permissive", "owner": "Regents of the University of California", "spdx_license_key": "LicenseRef-scancode-bsd-1988", "ignorable_copyrights": ["copyright holder and its contributors"], "ignorable_holders": ["its contributors"]} \ No newline at end of file +{ + "key": "bsd-1988", + "short_name": "BSD 1988", + "name": "BSD 1988", + "category": "Permissive", + "owner": "Regents of the University of California", + "spdx_license_key": "LicenseRef-scancode-bsd-1988", + "ignorable_copyrights": [ + "copyright holder and its contributors" + ], + "ignorable_holders": [ + "its contributors" + ] +} \ No newline at end of file diff --git a/docs/bsd-2-clause-freebsd.LICENSE b/docs/bsd-2-clause-freebsd.LICENSE index ed7f0de469..9841c205d1 100644 --- a/docs/bsd-2-clause-freebsd.LICENSE +++ b/docs/bsd-2-clause-freebsd.LICENSE @@ -1,3 +1,24 @@ +--- +key: bsd-2-clause-freebsd +is_deprecated: yes +short_name: BSD-2-Clause-FreeBSD +name: BSD-2-Clause-FreeBSD License +category: Permissive +owner: FreeBSD +homepage_url: http://www.freebsd.org/copyright/freebsd-license.html +notes: This license was deprecated at SPDX because BSD-2-Clause-Views has been added, as a more + generalized version; and because FreeBSD project community members have indicated that the + final sentence is not part of that project's code license. It's original spdx_license_key + Was SPDX BSD-2-Clause-FreeBSD +text_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +faq_url: https://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/pref-license.html +ignorable_copyrights: + - Copyright (c) The FreeBSD Project +ignorable_holders: + - The FreeBSD Project +--- + The FreeBSD Copyright Copyright (c) The FreeBSD Project. All rights reserved. diff --git a/docs/bsd-2-clause-freebsd.html b/docs/bsd-2-clause-freebsd.html index c33c70f86b..50171970f1 100644 --- a/docs/bsd-2-clause-freebsd.html +++ b/docs/bsd-2-clause-freebsd.html @@ -195,7 +195,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-2-clause-freebsd.json b/docs/bsd-2-clause-freebsd.json index ef2a09edc6..2b972f2d4c 100644 --- a/docs/bsd-2-clause-freebsd.json +++ b/docs/bsd-2-clause-freebsd.json @@ -1 +1,20 @@ -{"key": "bsd-2-clause-freebsd", "is_deprecated": true, "short_name": "BSD-2-Clause-FreeBSD", "name": "BSD-2-Clause-FreeBSD License", "category": "Permissive", "owner": "FreeBSD", "homepage_url": "http://www.freebsd.org/copyright/freebsd-license.html", "notes": "This license was deprecated at SPDX because BSD-2-Clause-Views has been added, as a more generalized version; and because FreeBSD project community members have indicated that the final sentence is not part of that project's code license. It's original spdx_license_key Was SPDX BSD-2-Clause-FreeBSD", "text_urls": ["http://www.freebsd.org/copyright/freebsd-license.html"], "faq_url": "https://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/pref-license.html", "ignorable_copyrights": ["Copyright (c) The FreeBSD Project"], "ignorable_holders": ["The FreeBSD Project"]} \ No newline at end of file +{ + "key": "bsd-2-clause-freebsd", + "is_deprecated": true, + "short_name": "BSD-2-Clause-FreeBSD", + "name": "BSD-2-Clause-FreeBSD License", + "category": "Permissive", + "owner": "FreeBSD", + "homepage_url": "http://www.freebsd.org/copyright/freebsd-license.html", + "notes": "This license was deprecated at SPDX because BSD-2-Clause-Views has been added, as a more generalized version; and because FreeBSD project community members have indicated that the final sentence is not part of that project's code license. It's original spdx_license_key Was SPDX BSD-2-Clause-FreeBSD", + "text_urls": [ + "http://www.freebsd.org/copyright/freebsd-license.html" + ], + "faq_url": "https://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/pref-license.html", + "ignorable_copyrights": [ + "Copyright (c) The FreeBSD Project" + ], + "ignorable_holders": [ + "The FreeBSD Project" + ] +} \ No newline at end of file diff --git a/docs/bsd-2-clause-netbsd.LICENSE b/docs/bsd-2-clause-netbsd.LICENSE index b132a55d6b..bfe3d1b24f 100644 --- a/docs/bsd-2-clause-netbsd.LICENSE +++ b/docs/bsd-2-clause-netbsd.LICENSE @@ -1,3 +1,21 @@ +--- +key: bsd-2-clause-netbsd +is_deprecated: yes +short_name: BSD-2-Clause-NetBSD +name: BSD-2-Clause-NetBSD License +category: Permissive +owner: NetBSD +homepage_url: http://www.netbsd.org/about/redistribution.html#default +notes: | + Except for the NetBSD Foundation name this license is identical to the + bsd-simplified Per SPDX.org, NetBSD adopted this 2-clause license in 2008 + for code contributed to NetBSD Foundation. + Its former SPDX key was BSD-2-Clause-NetBSD. This is now tracked as + bsd-simplified aka. BSD-2-Clause. +text_urls: + - http://www.netbsd.org/about/redistribution.html#default +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -18,4 +36,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/bsd-2-clause-netbsd.html b/docs/bsd-2-clause-netbsd.html index e6da90a44b..c400afe42d 100644 --- a/docs/bsd-2-clause-netbsd.html +++ b/docs/bsd-2-clause-netbsd.html @@ -156,8 +156,7 @@ 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. - +POSSIBILITY OF SUCH DAMAGE.
@@ -169,7 +168,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-2-clause-netbsd.json b/docs/bsd-2-clause-netbsd.json index b28a51b95e..7c45650374 100644 --- a/docs/bsd-2-clause-netbsd.json +++ b/docs/bsd-2-clause-netbsd.json @@ -1 +1,13 @@ -{"key": "bsd-2-clause-netbsd", "is_deprecated": true, "short_name": "BSD-2-Clause-NetBSD", "name": "BSD-2-Clause-NetBSD License", "category": "Permissive", "owner": "NetBSD", "homepage_url": "http://www.netbsd.org/about/redistribution.html#default", "notes": "Except for the NetBSD Foundation name this license is identical to the\nbsd-simplified Per SPDX.org, NetBSD adopted this 2-clause license in 2008\nfor code contributed to NetBSD Foundation.\nIts former SPDX key was BSD-2-Clause-NetBSD. This is now tracked as\nbsd-simplified aka. BSD-2-Clause.\n", "text_urls": ["http://www.netbsd.org/about/redistribution.html#default"]} \ No newline at end of file +{ + "key": "bsd-2-clause-netbsd", + "is_deprecated": true, + "short_name": "BSD-2-Clause-NetBSD", + "name": "BSD-2-Clause-NetBSD License", + "category": "Permissive", + "owner": "NetBSD", + "homepage_url": "http://www.netbsd.org/about/redistribution.html#default", + "notes": "Except for the NetBSD Foundation name this license is identical to the\nbsd-simplified Per SPDX.org, NetBSD adopted this 2-clause license in 2008\nfor code contributed to NetBSD Foundation.\nIts former SPDX key was BSD-2-Clause-NetBSD. This is now tracked as\nbsd-simplified aka. BSD-2-Clause.\n", + "text_urls": [ + "http://www.netbsd.org/about/redistribution.html#default" + ] +} \ No newline at end of file diff --git a/docs/bsd-2-clause-plus-advertizing.LICENSE b/docs/bsd-2-clause-plus-advertizing.LICENSE index 6119110330..6af498bc1e 100644 --- a/docs/bsd-2-clause-plus-advertizing.LICENSE +++ b/docs/bsd-2-clause-plus-advertizing.LICENSE @@ -1,3 +1,17 @@ +--- +key: bsd-2-clause-plus-advertizing +short_name: BSD-2-Clause-plus-advertizing +name: BSD-2-Clause-plus-advertizing +category: Permissive +owner: Konstantin Chuguev +spdx_license_key: LicenseRef-scancode-bsd-2-clause-plus-advertizing +other_urls: + - http://www.trieuvan.com/apache/apr/apr-iconv-1.2.1.tar.gz + - https://apr.apache.org/ +ignorable_authors: + - its contributors +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-2-clause-plus-advertizing.html b/docs/bsd-2-clause-plus-advertizing.html index 608493e74b..0284a1fbb2 100644 --- a/docs/bsd-2-clause-plus-advertizing.html +++ b/docs/bsd-2-clause-plus-advertizing.html @@ -161,7 +161,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-2-clause-plus-advertizing.json b/docs/bsd-2-clause-plus-advertizing.json index afee36718e..ae30e9a720 100644 --- a/docs/bsd-2-clause-plus-advertizing.json +++ b/docs/bsd-2-clause-plus-advertizing.json @@ -1 +1,15 @@ -{"key": "bsd-2-clause-plus-advertizing", "short_name": "BSD-2-Clause-plus-advertizing", "name": "BSD-2-Clause-plus-advertizing", "category": "Permissive", "owner": "Konstantin Chuguev", "spdx_license_key": "LicenseRef-scancode-bsd-2-clause-plus-advertizing", "other_urls": ["http://www.trieuvan.com/apache/apr/apr-iconv-1.2.1.tar.gz", "https://apr.apache.org/"], "ignorable_authors": ["its contributors"]} \ No newline at end of file +{ + "key": "bsd-2-clause-plus-advertizing", + "short_name": "BSD-2-Clause-plus-advertizing", + "name": "BSD-2-Clause-plus-advertizing", + "category": "Permissive", + "owner": "Konstantin Chuguev", + "spdx_license_key": "LicenseRef-scancode-bsd-2-clause-plus-advertizing", + "other_urls": [ + "http://www.trieuvan.com/apache/apr/apr-iconv-1.2.1.tar.gz", + "https://apr.apache.org/" + ], + "ignorable_authors": [ + "its contributors" + ] +} \ No newline at end of file diff --git a/docs/bsd-2-clause-views.LICENSE b/docs/bsd-2-clause-views.LICENSE index 145a40023f..b43e91c9ff 100644 --- a/docs/bsd-2-clause-views.LICENSE +++ b/docs/bsd-2-clause-views.LICENSE @@ -1,3 +1,23 @@ +--- +key: bsd-2-clause-views +short_name: BSD-2-Clause-Views +name: BSD 2-Clause with views sentence +category: Permissive +owner: FreeBSD +homepage_url: https://www.freebsd.org/copyright/freebsd-license.html +spdx_license_key: BSD-2-Clause-Views +other_spdx_license_keys: + - BSD-2-Clause-FreeBSD +text_urls: + - https://github.com/protegeproject/protege/blob/master/license.txt +other_urls: + - http://www.freebsd.org/copyright/freebsd-license.html + - https://people.freebsd.org/~ivoras/wine/patch-wine-nvidia.sh +standard_notice: | + The FreeBSD Copyright + Copyright 1992-2020 The FreeBSD Project. +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-2-clause-views.html b/docs/bsd-2-clause-views.html index a059891fab..a85dcfb82f 100644 --- a/docs/bsd-2-clause-views.html +++ b/docs/bsd-2-clause-views.html @@ -186,7 +186,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-2-clause-views.json b/docs/bsd-2-clause-views.json index c08ceba75a..5179ec7401 100644 --- a/docs/bsd-2-clause-views.json +++ b/docs/bsd-2-clause-views.json @@ -1 +1,20 @@ -{"key": "bsd-2-clause-views", "short_name": "BSD-2-Clause-Views", "name": "BSD 2-Clause with views sentence", "category": "Permissive", "owner": "FreeBSD", "homepage_url": "https://www.freebsd.org/copyright/freebsd-license.html", "spdx_license_key": "BSD-2-Clause-Views", "other_spdx_license_keys": ["BSD-2-Clause-FreeBSD"], "text_urls": ["https://github.com/protegeproject/protege/blob/master/license.txt"], "other_urls": ["http://www.freebsd.org/copyright/freebsd-license.html", "https://people.freebsd.org/~ivoras/wine/patch-wine-nvidia.sh"], "standard_notice": "The FreeBSD Copyright\nCopyright 1992-2020 The FreeBSD Project.\n"} \ No newline at end of file +{ + "key": "bsd-2-clause-views", + "short_name": "BSD-2-Clause-Views", + "name": "BSD 2-Clause with views sentence", + "category": "Permissive", + "owner": "FreeBSD", + "homepage_url": "https://www.freebsd.org/copyright/freebsd-license.html", + "spdx_license_key": "BSD-2-Clause-Views", + "other_spdx_license_keys": [ + "BSD-2-Clause-FreeBSD" + ], + "text_urls": [ + "https://github.com/protegeproject/protege/blob/master/license.txt" + ], + "other_urls": [ + "http://www.freebsd.org/copyright/freebsd-license.html", + "https://people.freebsd.org/~ivoras/wine/patch-wine-nvidia.sh" + ], + "standard_notice": "The FreeBSD Copyright\nCopyright 1992-2020 The FreeBSD Project.\n" +} \ No newline at end of file diff --git a/docs/bsd-3-clause-devine.LICENSE b/docs/bsd-3-clause-devine.LICENSE index 6260ae5ab1..b4b6b0e402 100644 --- a/docs/bsd-3-clause-devine.LICENSE +++ b/docs/bsd-3-clause-devine.LICENSE @@ -1,3 +1,15 @@ +--- +key: bsd-3-clause-devine +short_name: BSD 3-Clause Devine +name: BSD 3-Clause Devine +category: Permissive +owner: Christophe Devine +notes: The second clause for binaries is unique as it is optional and no longer a condition + per this statement "Redistributions in binary form may or may not reproduce" Seen in AES + code from GPL Ghostscript, originally from XyzSSL +spdx_license_key: LicenseRef-scancode-bsd-3-clause-devine +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -22,4 +34,4 @@ 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. +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/bsd-3-clause-devine.html b/docs/bsd-3-clause-devine.html index 96cf856721..346497b3a6 100644 --- a/docs/bsd-3-clause-devine.html +++ b/docs/bsd-3-clause-devine.html @@ -139,8 +139,7 @@ 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. - +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -152,7 +151,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-3-clause-devine.json b/docs/bsd-3-clause-devine.json index a4bf92a481..49d73e6a23 100644 --- a/docs/bsd-3-clause-devine.json +++ b/docs/bsd-3-clause-devine.json @@ -1 +1,9 @@ -{"key": "bsd-3-clause-devine", "short_name": "BSD 3-Clause Devine", "name": "BSD 3-Clause Devine", "category": "Permissive", "owner": "Christophe Devine", "notes": "The second clause for binaries is unique as it is optional and no longer a condition per this statement \"Redistributions in binary form may or may not reproduce\" Seen in AES code from GPL Ghostscript, originally from XyzSSL", "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-devine"} \ No newline at end of file +{ + "key": "bsd-3-clause-devine", + "short_name": "BSD 3-Clause Devine", + "name": "BSD 3-Clause Devine", + "category": "Permissive", + "owner": "Christophe Devine", + "notes": "The second clause for binaries is unique as it is optional and no longer a condition per this statement \"Redistributions in binary form may or may not reproduce\" Seen in AES code from GPL Ghostscript, originally from XyzSSL", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-devine" +} \ No newline at end of file diff --git a/docs/bsd-3-clause-fda.LICENSE b/docs/bsd-3-clause-fda.LICENSE index 2cff90fca0..bb08a1348a 100644 --- a/docs/bsd-3-clause-fda.LICENSE +++ b/docs/bsd-3-clause-fda.LICENSE @@ -1,3 +1,14 @@ +--- +key: bsd-3-clause-fda +short_name: BSD 3-Clause FDA +name: BSD 3-Clause FDA +category: Permissive +owner: U.S. Food and Drug Administration +notes: This is based on the bsd-3-clause and a different disclaimer +spdx_license_key: LicenseRef-scancode-bsd-3-clause-fda +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-3-clause-fda.html b/docs/bsd-3-clause-fda.html index 08b450b005..cb09c31dbe 100644 --- a/docs/bsd-3-clause-fda.html +++ b/docs/bsd-3-clause-fda.html @@ -159,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-3-clause-fda.json b/docs/bsd-3-clause-fda.json index 5185207eec..c4077905ae 100644 --- a/docs/bsd-3-clause-fda.json +++ b/docs/bsd-3-clause-fda.json @@ -1 +1,10 @@ -{"key": "bsd-3-clause-fda", "short_name": "BSD 3-Clause FDA", "name": "BSD 3-Clause FDA", "category": "Permissive", "owner": "U.S. Food and Drug Administration", "notes": "This is based on the bsd-3-clause and a different disclaimer", "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-fda", "minimum_coverage": 90} \ No newline at end of file +{ + "key": "bsd-3-clause-fda", + "short_name": "BSD 3-Clause FDA", + "name": "BSD 3-Clause FDA", + "category": "Permissive", + "owner": "U.S. Food and Drug Administration", + "notes": "This is based on the bsd-3-clause and a different disclaimer", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-fda", + "minimum_coverage": 90 +} \ No newline at end of file diff --git a/docs/bsd-3-clause-jtag.LICENSE b/docs/bsd-3-clause-jtag.LICENSE index d18e064d8a..fd287e6578 100644 --- a/docs/bsd-3-clause-jtag.LICENSE +++ b/docs/bsd-3-clause-jtag.LICENSE @@ -1,3 +1,18 @@ +--- +key: bsd-3-clause-jtag +short_name: BSD 3-Clause jtag +name: BSD 3-Clause jtag +category: Permissive +owner: Regents of the University of California +notes: Seen in https://github.com/ucb-art/chisel-jtag/blob/master/LICENSE This is a cross over + between a bsd-new and a postgres license with some new language related to "two paragraphs". + The warranty disclaimer is inspited from the postgres license +spdx_license_key: LicenseRef-scancode-bsd-3-clause-jtag +other_urls: + - https://github.com/ucb-art/chisel-jtag/blob/master/LICENSE +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -21,4 +36,4 @@ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR -MODIFICATIONS. +MODIFICATIONS. \ No newline at end of file diff --git a/docs/bsd-3-clause-jtag.html b/docs/bsd-3-clause-jtag.html index 22a0696d2b..9154adec0b 100644 --- a/docs/bsd-3-clause-jtag.html +++ b/docs/bsd-3-clause-jtag.html @@ -154,8 +154,7 @@ A PARTICULAR PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR -MODIFICATIONS. - +MODIFICATIONS.
@@ -167,7 +166,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-3-clause-jtag.json b/docs/bsd-3-clause-jtag.json index fcd4b07f97..848bca4227 100644 --- a/docs/bsd-3-clause-jtag.json +++ b/docs/bsd-3-clause-jtag.json @@ -1 +1,13 @@ -{"key": "bsd-3-clause-jtag", "short_name": "BSD 3-Clause jtag", "name": "BSD 3-Clause jtag", "category": "Permissive", "owner": "Regents of the University of California", "notes": "Seen in https://github.com/ucb-art/chisel-jtag/blob/master/LICENSE This is a cross over between a bsd-new and a postgres license with some new language related to \"two paragraphs\". The warranty disclaimer is inspited from the postgres license", "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-jtag", "other_urls": ["https://github.com/ucb-art/chisel-jtag/blob/master/LICENSE"], "minimum_coverage": 90} \ No newline at end of file +{ + "key": "bsd-3-clause-jtag", + "short_name": "BSD 3-Clause jtag", + "name": "BSD 3-Clause jtag", + "category": "Permissive", + "owner": "Regents of the University of California", + "notes": "Seen in https://github.com/ucb-art/chisel-jtag/blob/master/LICENSE This is a cross over between a bsd-new and a postgres license with some new language related to \"two paragraphs\". The warranty disclaimer is inspited from the postgres license", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-jtag", + "other_urls": [ + "https://github.com/ucb-art/chisel-jtag/blob/master/LICENSE" + ], + "minimum_coverage": 90 +} \ No newline at end of file diff --git a/docs/bsd-3-clause-no-change.LICENSE b/docs/bsd-3-clause-no-change.LICENSE index 97064fc84a..aa9fa34846 100644 --- a/docs/bsd-3-clause-no-change.LICENSE +++ b/docs/bsd-3-clause-no-change.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-3-clause-no-change +short_name: BSD 3-Clause No Change +name: BSD 3-Clause No Change +category: Permissive +owner: David Corcoran +homepage_url: https://pcsclite.apdu.fr/ +notes: there is an extra clause about changes which has some ambiguities +spdx_license_key: LicenseRef-scancode-bsd-3-clause-no-change +other_urls: + - https://salsa.debian.org/rousseau/PCSC/blob/master/COPYING +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -22,5 +35,4 @@ 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 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/bsd-3-clause-no-change.html b/docs/bsd-3-clause-no-change.html index e7a9a678dc..9541aa8e9a 100644 --- a/docs/bsd-3-clause-no-change.html +++ b/docs/bsd-3-clause-no-change.html @@ -155,9 +155,7 @@ 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 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -169,7 +167,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-3-clause-no-change.json b/docs/bsd-3-clause-no-change.json index bb987d7f00..707f41f44b 100644 --- a/docs/bsd-3-clause-no-change.json +++ b/docs/bsd-3-clause-no-change.json @@ -1 +1,13 @@ -{"key": "bsd-3-clause-no-change", "short_name": "BSD 3-Clause No Change", "name": "BSD 3-Clause No Change", "category": "Permissive", "owner": "David Corcoran", "homepage_url": "https://pcsclite.apdu.fr/", "notes": "there is an extra clause about changes which has some ambiguities", "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-no-change", "other_urls": ["https://salsa.debian.org/rousseau/PCSC/blob/master/COPYING"]} \ No newline at end of file +{ + "key": "bsd-3-clause-no-change", + "short_name": "BSD 3-Clause No Change", + "name": "BSD 3-Clause No Change", + "category": "Permissive", + "owner": "David Corcoran", + "homepage_url": "https://pcsclite.apdu.fr/", + "notes": "there is an extra clause about changes which has some ambiguities", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-no-change", + "other_urls": [ + "https://salsa.debian.org/rousseau/PCSC/blob/master/COPYING" + ] +} \ No newline at end of file diff --git a/docs/bsd-3-clause-no-military.LICENSE b/docs/bsd-3-clause-no-military.LICENSE index 55b4171cfb..9d0d332a83 100644 --- a/docs/bsd-3-clause-no-military.LICENSE +++ b/docs/bsd-3-clause-no-military.LICENSE @@ -1,3 +1,18 @@ +--- +key: bsd-3-clause-no-military +short_name: BSD-3-Clause-No-Military +name: BSD-3-Clause-No-Military +category: Free Restricted +owner: Unspecified +spdx_license_key: BSD-3-Clause-No-Military-License +other_spdx_license_keys: + - LicenseRef-scancode-bsd-3-clause-no-military +other_urls: + - https://gitlab.syncad.com/hive/dhive/-/blob/master/LICENSE + - https://github.com/greymass/swift-eosio/blob/master/LICENSE +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-3-clause-no-military.html b/docs/bsd-3-clause-no-military.html index d4a4b01b2d..ddc86f2e0a 100644 --- a/docs/bsd-3-clause-no-military.html +++ b/docs/bsd-3-clause-no-military.html @@ -171,7 +171,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-3-clause-no-military.json b/docs/bsd-3-clause-no-military.json index 7d601133e2..0557909f3b 100644 --- a/docs/bsd-3-clause-no-military.json +++ b/docs/bsd-3-clause-no-military.json @@ -1 +1,16 @@ -{"key": "bsd-3-clause-no-military", "short_name": "BSD-3-Clause-No-Military", "name": "BSD-3-Clause-No-Military", "category": "Free Restricted", "owner": "Unspecified", "spdx_license_key": "BSD-3-Clause-No-Military-License", "other_spdx_license_keys": ["LicenseRef-scancode-bsd-3-clause-no-military"], "other_urls": ["https://gitlab.syncad.com/hive/dhive/-/blob/master/LICENSE", "https://github.com/greymass/swift-eosio/blob/master/LICENSE"], "minimum_coverage": 90} \ No newline at end of file +{ + "key": "bsd-3-clause-no-military", + "short_name": "BSD-3-Clause-No-Military", + "name": "BSD-3-Clause-No-Military", + "category": "Free Restricted", + "owner": "Unspecified", + "spdx_license_key": "BSD-3-Clause-No-Military-License", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsd-3-clause-no-military" + ], + "other_urls": [ + "https://gitlab.syncad.com/hive/dhive/-/blob/master/LICENSE", + "https://github.com/greymass/swift-eosio/blob/master/LICENSE" + ], + "minimum_coverage": 90 +} \ No newline at end of file diff --git a/docs/bsd-3-clause-no-nuclear-warranty.LICENSE b/docs/bsd-3-clause-no-nuclear-warranty.LICENSE index 83be0033ae..92935399b5 100644 --- a/docs/bsd-3-clause-no-nuclear-warranty.LICENSE +++ b/docs/bsd-3-clause-no-nuclear-warranty.LICENSE @@ -1,3 +1,19 @@ +--- +key: bsd-3-clause-no-nuclear-warranty +short_name: BSD 3-Clause No Nuclear Warranty +name: BSD 3-Clause No Nuclear Warranty +category: Free Restricted +owner: Oracle (Sun) +homepage_url: https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt +notes: | + per SPDX.org, it is the same license as BSD-3-Clause-No-Nuclear-License, + except it has a disclaimer for nuclear factility use, instead of the + software not licensed for such use. +spdx_license_key: BSD-3-Clause-No-Nuclear-Warranty +other_urls: + - https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-3-clause-no-nuclear-warranty.html b/docs/bsd-3-clause-no-nuclear-warranty.html index a28c589485..a26014b076 100644 --- a/docs/bsd-3-clause-no-nuclear-warranty.html +++ b/docs/bsd-3-clause-no-nuclear-warranty.html @@ -176,7 +176,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-3-clause-no-nuclear-warranty.json b/docs/bsd-3-clause-no-nuclear-warranty.json index 7546b67a87..5a50569e92 100644 --- a/docs/bsd-3-clause-no-nuclear-warranty.json +++ b/docs/bsd-3-clause-no-nuclear-warranty.json @@ -1 +1,13 @@ -{"key": "bsd-3-clause-no-nuclear-warranty", "short_name": "BSD 3-Clause No Nuclear Warranty", "name": "BSD 3-Clause No Nuclear Warranty", "category": "Free Restricted", "owner": "Oracle (Sun)", "homepage_url": "https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt", "notes": "per SPDX.org, it is the same license as BSD-3-Clause-No-Nuclear-License,\nexcept it has a disclaimer for nuclear factility use, instead of the\nsoftware not licensed for such use.\n", "spdx_license_key": "BSD-3-Clause-No-Nuclear-Warranty", "other_urls": ["https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt"]} \ No newline at end of file +{ + "key": "bsd-3-clause-no-nuclear-warranty", + "short_name": "BSD 3-Clause No Nuclear Warranty", + "name": "BSD 3-Clause No Nuclear Warranty", + "category": "Free Restricted", + "owner": "Oracle (Sun)", + "homepage_url": "https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt", + "notes": "per SPDX.org, it is the same license as BSD-3-Clause-No-Nuclear-License,\nexcept it has a disclaimer for nuclear factility use, instead of the\nsoftware not licensed for such use.\n", + "spdx_license_key": "BSD-3-Clause-No-Nuclear-Warranty", + "other_urls": [ + "https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt" + ] +} \ No newline at end of file diff --git a/docs/bsd-3-clause-no-trademark.LICENSE b/docs/bsd-3-clause-no-trademark.LICENSE index be508bcc6b..cc06e76815 100644 --- a/docs/bsd-3-clause-no-trademark.LICENSE +++ b/docs/bsd-3-clause-no-trademark.LICENSE @@ -1,3 +1,17 @@ +--- +key: bsd-3-clause-no-trademark +short_name: BSD 3-Clause no trademark +name: BSD 3-Clause no trademark +category: Permissive +owner: Apple +notes: Seen in https://github.com/carekit-apple/CareKit/blob/248c42c4e4ea97ff5fe349361fa6e0a849eab204/LICENSE + This is a bsd-new with an extra trademark statement +spdx_license_key: LicenseRef-scancode-bsd-3-clause-no-trademark +other_urls: + - https://github.com/carekit-apple/CareKit/blob/248c42c4e4ea97ff5fe349361fa6e0a849eab204/LICENSE +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -22,4 +36,4 @@ 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. +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/bsd-3-clause-no-trademark.html b/docs/bsd-3-clause-no-trademark.html index 12b30fa0d9..833fff1ad6 100644 --- a/docs/bsd-3-clause-no-trademark.html +++ b/docs/bsd-3-clause-no-trademark.html @@ -155,8 +155,7 @@ 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. - +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -168,7 +167,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-3-clause-no-trademark.json b/docs/bsd-3-clause-no-trademark.json index d9c5038af4..05178348de 100644 --- a/docs/bsd-3-clause-no-trademark.json +++ b/docs/bsd-3-clause-no-trademark.json @@ -1 +1,13 @@ -{"key": "bsd-3-clause-no-trademark", "short_name": "BSD 3-Clause no trademark", "name": "BSD 3-Clause no trademark", "category": "Permissive", "owner": "Apple", "notes": "Seen in https://github.com/carekit-apple/CareKit/blob/248c42c4e4ea97ff5fe349361fa6e0a849eab204/LICENSE This is a bsd-new with an extra trademark statement", "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-no-trademark", "other_urls": ["https://github.com/carekit-apple/CareKit/blob/248c42c4e4ea97ff5fe349361fa6e0a849eab204/LICENSE"], "minimum_coverage": 90} \ No newline at end of file +{ + "key": "bsd-3-clause-no-trademark", + "short_name": "BSD 3-Clause no trademark", + "name": "BSD 3-Clause no trademark", + "category": "Permissive", + "owner": "Apple", + "notes": "Seen in https://github.com/carekit-apple/CareKit/blob/248c42c4e4ea97ff5fe349361fa6e0a849eab204/LICENSE This is a bsd-new with an extra trademark statement", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-no-trademark", + "other_urls": [ + "https://github.com/carekit-apple/CareKit/blob/248c42c4e4ea97ff5fe349361fa6e0a849eab204/LICENSE" + ], + "minimum_coverage": 90 +} \ No newline at end of file diff --git a/docs/bsd-3-clause-open-mpi.LICENSE b/docs/bsd-3-clause-open-mpi.LICENSE index 9fe85ac546..fd22343e8b 100644 --- a/docs/bsd-3-clause-open-mpi.LICENSE +++ b/docs/bsd-3-clause-open-mpi.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-3-clause-open-mpi +short_name: BSD 3-Clause Open MPI variant +name: BSD 3-Clause Open MPI variant +category: Permissive +owner: Open MPI +homepage_url: https://www.open-mpi.org/community/license.php +spdx_license_key: BSD-3-Clause-Open-MPI +other_urls: + - https://www.open-mpi.org/community/license.php + - http://www.netlib.org/lapack/LICENSE.txt +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-3-clause-open-mpi.html b/docs/bsd-3-clause-open-mpi.html index de77e61a32..c0933c6488 100644 --- a/docs/bsd-3-clause-open-mpi.html +++ b/docs/bsd-3-clause-open-mpi.html @@ -169,7 +169,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-3-clause-open-mpi.json b/docs/bsd-3-clause-open-mpi.json index 3faf5f4b9c..0d75d8be0f 100644 --- a/docs/bsd-3-clause-open-mpi.json +++ b/docs/bsd-3-clause-open-mpi.json @@ -1 +1,13 @@ -{"key": "bsd-3-clause-open-mpi", "short_name": "BSD 3-Clause Open MPI variant", "name": "BSD 3-Clause Open MPI variant", "category": "Permissive", "owner": "Open MPI", "homepage_url": "https://www.open-mpi.org/community/license.php", "spdx_license_key": "BSD-3-Clause-Open-MPI", "other_urls": ["https://www.open-mpi.org/community/license.php", "http://www.netlib.org/lapack/LICENSE.txt"]} \ No newline at end of file +{ + "key": "bsd-3-clause-open-mpi", + "short_name": "BSD 3-Clause Open MPI variant", + "name": "BSD 3-Clause Open MPI variant", + "category": "Permissive", + "owner": "Open MPI", + "homepage_url": "https://www.open-mpi.org/community/license.php", + "spdx_license_key": "BSD-3-Clause-Open-MPI", + "other_urls": [ + "https://www.open-mpi.org/community/license.php", + "http://www.netlib.org/lapack/LICENSE.txt" + ] +} \ No newline at end of file diff --git a/docs/bsd-3-clause-sun.LICENSE b/docs/bsd-3-clause-sun.LICENSE index 50bbcb17c3..642d35afbb 100644 --- a/docs/bsd-3-clause-sun.LICENSE +++ b/docs/bsd-3-clause-sun.LICENSE @@ -1,3 +1,15 @@ +--- +key: bsd-3-clause-sun +short_name: BSD 3-Clause Sun +name: BSD 3-Clause Sun +category: Permissive +owner: Oracle (Sun) +notes: This is the same as the bsd-3-clause-no-nuclear-warranty but without the nuclear related + terms. Rare and not exactly the same as a plain bsd. +spdx_license_key: LicenseRef-scancode-bsd-3-clause-sun +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-3-clause-sun.html b/docs/bsd-3-clause-sun.html index f2f0c9300f..131328e94c 100644 --- a/docs/bsd-3-clause-sun.html +++ b/docs/bsd-3-clause-sun.html @@ -158,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-3-clause-sun.json b/docs/bsd-3-clause-sun.json index ac37b76ccb..8628549a4f 100644 --- a/docs/bsd-3-clause-sun.json +++ b/docs/bsd-3-clause-sun.json @@ -1 +1,10 @@ -{"key": "bsd-3-clause-sun", "short_name": "BSD 3-Clause Sun", "name": "BSD 3-Clause Sun", "category": "Permissive", "owner": "Oracle (Sun)", "notes": "This is the same as the bsd-3-clause-no-nuclear-warranty but without the nuclear related terms. Rare and not exactly the same as a plain bsd.", "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-sun", "minimum_coverage": 90} \ No newline at end of file +{ + "key": "bsd-3-clause-sun", + "short_name": "BSD 3-Clause Sun", + "name": "BSD 3-Clause Sun", + "category": "Permissive", + "owner": "Oracle (Sun)", + "notes": "This is the same as the bsd-3-clause-no-nuclear-warranty but without the nuclear related terms. Rare and not exactly the same as a plain bsd.", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-sun", + "minimum_coverage": 90 +} \ No newline at end of file diff --git a/docs/bsd-4-clause-shortened.LICENSE b/docs/bsd-4-clause-shortened.LICENSE index 7777badf32..e74f129528 100644 --- a/docs/bsd-4-clause-shortened.LICENSE +++ b/docs/bsd-4-clause-shortened.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-4-clause-shortened +short_name: BSD-4-Clause-Shortened +name: BSD-4-Clause-Shortened +category: Permissive +owner: Regents of the University of California +spdx_license_key: BSD-4-Clause-Shortened +other_urls: + - https://metadata.ftp-master.debian.org/changelogs//main/a/arpwatch/arpwatch_2.1a15-7_copyright +ignorable_authors: + - the University of California, Lawrence Berkeley Laboratory and its contributors +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that: diff --git a/docs/bsd-4-clause-shortened.html b/docs/bsd-4-clause-shortened.html index 1cb5d0a28c..e9f12c32c9 100644 --- a/docs/bsd-4-clause-shortened.html +++ b/docs/bsd-4-clause-shortened.html @@ -160,7 +160,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-4-clause-shortened.json b/docs/bsd-4-clause-shortened.json index cec7721103..dfd4ced0bd 100644 --- a/docs/bsd-4-clause-shortened.json +++ b/docs/bsd-4-clause-shortened.json @@ -1 +1,14 @@ -{"key": "bsd-4-clause-shortened", "short_name": "BSD-4-Clause-Shortened", "name": "BSD-4-Clause-Shortened", "category": "Permissive", "owner": "Regents of the University of California", "spdx_license_key": "BSD-4-Clause-Shortened", "other_urls": ["https://metadata.ftp-master.debian.org/changelogs//main/a/arpwatch/arpwatch_2.1a15-7_copyright"], "ignorable_authors": ["the University of California, Lawrence Berkeley Laboratory and its contributors"]} \ No newline at end of file +{ + "key": "bsd-4-clause-shortened", + "short_name": "BSD-4-Clause-Shortened", + "name": "BSD-4-Clause-Shortened", + "category": "Permissive", + "owner": "Regents of the University of California", + "spdx_license_key": "BSD-4-Clause-Shortened", + "other_urls": [ + "https://metadata.ftp-master.debian.org/changelogs//main/a/arpwatch/arpwatch_2.1a15-7_copyright" + ], + "ignorable_authors": [ + "the University of California, Lawrence Berkeley Laboratory and its contributors" + ] +} \ No newline at end of file diff --git a/docs/bsd-ack-carrot2.LICENSE b/docs/bsd-ack-carrot2.LICENSE index 4ec8cb7483..a20a03650c 100644 --- a/docs/bsd-ack-carrot2.LICENSE +++ b/docs/bsd-ack-carrot2.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-ack-carrot2 +short_name: BSD Acknowledgment (Carrot2) License +name: BSD Acknowledgment (Carrot2) License +category: Permissive +owner: Carrot2 +homepage_url: http://www.carrot2.org/carrot2.LICENSE +spdx_license_key: LicenseRef-scancode-bsd-ack-carrot2 +minimum_coverage: 90 +ignorable_authors: + - the Carrot2 Project +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-ack-carrot2.html b/docs/bsd-ack-carrot2.html index 6210aff293..87dfffdd03 100644 --- a/docs/bsd-ack-carrot2.html +++ b/docs/bsd-ack-carrot2.html @@ -171,7 +171,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-ack-carrot2.json b/docs/bsd-ack-carrot2.json index 5bb24f61ca..288042c4d0 100644 --- a/docs/bsd-ack-carrot2.json +++ b/docs/bsd-ack-carrot2.json @@ -1 +1,13 @@ -{"key": "bsd-ack-carrot2", "short_name": "BSD Acknowledgment (Carrot2) License", "name": "BSD Acknowledgment (Carrot2) License", "category": "Permissive", "owner": "Carrot2", "homepage_url": "http://www.carrot2.org/carrot2.LICENSE", "spdx_license_key": "LicenseRef-scancode-bsd-ack-carrot2", "minimum_coverage": 90, "ignorable_authors": ["the Carrot2 Project"]} \ No newline at end of file +{ + "key": "bsd-ack-carrot2", + "short_name": "BSD Acknowledgment (Carrot2) License", + "name": "BSD Acknowledgment (Carrot2) License", + "category": "Permissive", + "owner": "Carrot2", + "homepage_url": "http://www.carrot2.org/carrot2.LICENSE", + "spdx_license_key": "LicenseRef-scancode-bsd-ack-carrot2", + "minimum_coverage": 90, + "ignorable_authors": [ + "the Carrot2 Project" + ] +} \ No newline at end of file diff --git a/docs/bsd-ack.LICENSE b/docs/bsd-ack.LICENSE index 1224217003..a050f7fbe8 100644 --- a/docs/bsd-ack.LICENSE +++ b/docs/bsd-ack.LICENSE @@ -1,3 +1,18 @@ +--- +key: bsd-ack +short_name: BSD Acknowledgment License +name: BSD Acknowledgment License +category: Permissive +owner: Universidad de Palermo +homepage_url: https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution +spdx_license_key: BSD-3-Clause-Attribution +minimum_coverage: 90 +ignorable_authors: + - the Universidad de Palermo, Argentina (http://www.palermo.edu/) +ignorable_urls: + - http://www.palermo.edu/ +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-ack.html b/docs/bsd-ack.html index f7b9972036..17ee96fd07 100644 --- a/docs/bsd-ack.html +++ b/docs/bsd-ack.html @@ -179,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-ack.json b/docs/bsd-ack.json index f728748249..49d6d81da7 100644 --- a/docs/bsd-ack.json +++ b/docs/bsd-ack.json @@ -1 +1,16 @@ -{"key": "bsd-ack", "short_name": "BSD Acknowledgment License", "name": "BSD Acknowledgment License", "category": "Permissive", "owner": "Universidad de Palermo", "homepage_url": "https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution", "spdx_license_key": "BSD-3-Clause-Attribution", "minimum_coverage": 90, "ignorable_authors": ["the Universidad de Palermo, Argentina (http://www.palermo.edu/)"], "ignorable_urls": ["http://www.palermo.edu/"]} \ No newline at end of file +{ + "key": "bsd-ack", + "short_name": "BSD Acknowledgment License", + "name": "BSD Acknowledgment License", + "category": "Permissive", + "owner": "Universidad de Palermo", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution", + "spdx_license_key": "BSD-3-Clause-Attribution", + "minimum_coverage": 90, + "ignorable_authors": [ + "the Universidad de Palermo, Argentina (http://www.palermo.edu/)" + ], + "ignorable_urls": [ + "http://www.palermo.edu/" + ] +} \ No newline at end of file diff --git a/docs/bsd-artwork.LICENSE b/docs/bsd-artwork.LICENSE index ea9093c62f..575d8cbb49 100644 --- a/docs/bsd-artwork.LICENSE +++ b/docs/bsd-artwork.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-artwork +short_name: BSD Artwork +name: BSD Artwork License +category: Permissive +owner: Armin Ronacher +homepage_url: http://flask.pocoo.org/docs/1.0/license/ +notes: this is a bsd-like license for ogos nd artwork without a disclaimer +spdx_license_key: LicenseRef-scancode-bsd-artwork +other_urls: + - https://www.getlektor.com/license/ +--- + This logo or a modified version may be used by anyone to refer to the project, but does not indicate endorsement by the project. @@ -9,4 +22,4 @@ are permitted provided that the following conditions are met: and this list of conditions. The names of the contributors to the softwaremay not be used to endorse or - promote products derived from this software without specific prior written permission. + promote products derived from this software without specific prior written permission. \ No newline at end of file diff --git a/docs/bsd-artwork.html b/docs/bsd-artwork.html index f3b6f93c47..b25aacb64f 100644 --- a/docs/bsd-artwork.html +++ b/docs/bsd-artwork.html @@ -142,8 +142,7 @@ and this list of conditions. The names of the contributors to the softwaremay not be used to endorse or - promote products derived from this software without specific prior written permission. - + promote products derived from this software without specific prior written permission.
@@ -155,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-artwork.json b/docs/bsd-artwork.json index 7ee15f4660..1ea9cba2c9 100644 --- a/docs/bsd-artwork.json +++ b/docs/bsd-artwork.json @@ -1 +1,13 @@ -{"key": "bsd-artwork", "short_name": "BSD Artwork", "name": "BSD Artwork License", "category": "Permissive", "owner": "Armin Ronacher", "homepage_url": "http://flask.pocoo.org/docs/1.0/license/", "notes": "this is a bsd-like license for ogos nd artwork without a disclaimer", "spdx_license_key": "LicenseRef-scancode-bsd-artwork", "other_urls": ["https://www.getlektor.com/license/"]} \ No newline at end of file +{ + "key": "bsd-artwork", + "short_name": "BSD Artwork", + "name": "BSD Artwork License", + "category": "Permissive", + "owner": "Armin Ronacher", + "homepage_url": "http://flask.pocoo.org/docs/1.0/license/", + "notes": "this is a bsd-like license for ogos nd artwork without a disclaimer", + "spdx_license_key": "LicenseRef-scancode-bsd-artwork", + "other_urls": [ + "https://www.getlektor.com/license/" + ] +} \ No newline at end of file diff --git a/docs/bsd-atmel.LICENSE b/docs/bsd-atmel.LICENSE index 1ff0b155fc..f25bb2b377 100644 --- a/docs/bsd-atmel.LICENSE +++ b/docs/bsd-atmel.LICENSE @@ -1,3 +1,15 @@ +--- +key: bsd-atmel +short_name: BSD Atmel License +name: BSD Atmel License +category: Permissive +owner: Atmel +homepage_url: https://github.com/atmelcorp/atmel-software-package/blob/d11d2a558fb5bd017aa15a9a78fb237ab972f29c/LICENSE.md +notes: this is a bsd with clause 1 and 3 +spdx_license_key: LicenseRef-scancode-bsd-atmel +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -16,4 +28,4 @@ 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. +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/bsd-atmel.html b/docs/bsd-atmel.html index fee522268a..a68b0e49c1 100644 --- a/docs/bsd-atmel.html +++ b/docs/bsd-atmel.html @@ -147,8 +147,7 @@ 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. - +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -160,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-atmel.json b/docs/bsd-atmel.json index fb8d4939ef..449ae9ef92 100644 --- a/docs/bsd-atmel.json +++ b/docs/bsd-atmel.json @@ -1 +1,11 @@ -{"key": "bsd-atmel", "short_name": "BSD Atmel License", "name": "BSD Atmel License", "category": "Permissive", "owner": "Atmel", "homepage_url": "https://github.com/atmelcorp/atmel-software-package/blob/d11d2a558fb5bd017aa15a9a78fb237ab972f29c/LICENSE.md", "notes": "this is a bsd with clause 1 and 3", "spdx_license_key": "LicenseRef-scancode-bsd-atmel", "minimum_coverage": 90} \ No newline at end of file +{ + "key": "bsd-atmel", + "short_name": "BSD Atmel License", + "name": "BSD Atmel License", + "category": "Permissive", + "owner": "Atmel", + "homepage_url": "https://github.com/atmelcorp/atmel-software-package/blob/d11d2a558fb5bd017aa15a9a78fb237ab972f29c/LICENSE.md", + "notes": "this is a bsd with clause 1 and 3", + "spdx_license_key": "LicenseRef-scancode-bsd-atmel", + "minimum_coverage": 90 +} \ No newline at end of file diff --git a/docs/bsd-axis-nomod.LICENSE b/docs/bsd-axis-nomod.LICENSE index 0212f84881..4023a63cc8 100644 --- a/docs/bsd-axis-nomod.LICENSE +++ b/docs/bsd-axis-nomod.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-axis-nomod +short_name: BSD-Axis without modification +name: BSD-Axis without modification +category: Permissive +owner: Unspecified +notes: This is a variant composed of clause 1 and 3 of a BSD-Modified found in the Linux kernel + And this extra variant has the words "without modification" added at the end of clause 1 + either with or without a comma +spdx_license_key: LicenseRef-scancode-bsd-axis-nomod +minimum_coverage: 95 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -21,4 +34,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/bsd-axis-nomod.html b/docs/bsd-axis-nomod.html index 2923fbeaf9..5517171e21 100644 --- a/docs/bsd-axis-nomod.html +++ b/docs/bsd-axis-nomod.html @@ -145,8 +145,7 @@ 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. - +POSSIBILITY OF SUCH DAMAGE.
@@ -158,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-axis-nomod.json b/docs/bsd-axis-nomod.json index 607b8cd845..4324b15687 100644 --- a/docs/bsd-axis-nomod.json +++ b/docs/bsd-axis-nomod.json @@ -1 +1,10 @@ -{"key": "bsd-axis-nomod", "short_name": "BSD-Axis without modification", "name": "BSD-Axis without modification", "category": "Permissive", "owner": "Unspecified", "notes": "This is a variant composed of clause 1 and 3 of a BSD-Modified found in the Linux kernel And this extra variant has the words \"without modification\" added at the end of clause 1 either with or without a comma", "spdx_license_key": "LicenseRef-scancode-bsd-axis-nomod", "minimum_coverage": 95} \ No newline at end of file +{ + "key": "bsd-axis-nomod", + "short_name": "BSD-Axis without modification", + "name": "BSD-Axis without modification", + "category": "Permissive", + "owner": "Unspecified", + "notes": "This is a variant composed of clause 1 and 3 of a BSD-Modified found in the Linux kernel And this extra variant has the words \"without modification\" added at the end of clause 1 either with or without a comma", + "spdx_license_key": "LicenseRef-scancode-bsd-axis-nomod", + "minimum_coverage": 95 +} \ No newline at end of file diff --git a/docs/bsd-axis.LICENSE b/docs/bsd-axis.LICENSE index fff5b15b6b..53182f0291 100644 --- a/docs/bsd-axis.LICENSE +++ b/docs/bsd-axis.LICENSE @@ -1,3 +1,14 @@ +--- +key: bsd-axis +is_deprecated: yes +short_name: BSD-Axis +name: BSD-Axis +category: Permissive +owner: Axis Communications +notes: This is a variant composed of clause 1 and 3 of a BSD-Modified found in the Linux kernel + This is now replaced by the bsd-source-code license. +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-axis.html b/docs/bsd-axis.html index 9cbbc1ad28..dbd933e09c 100644 --- a/docs/bsd-axis.html +++ b/docs/bsd-axis.html @@ -149,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-axis.json b/docs/bsd-axis.json index 20ccdb03b3..01237dc213 100644 --- a/docs/bsd-axis.json +++ b/docs/bsd-axis.json @@ -1 +1,9 @@ -{"key": "bsd-axis", "is_deprecated": true, "short_name": "BSD-Axis", "name": "BSD-Axis", "category": "Permissive", "owner": "Axis Communications", "notes": "This is a variant composed of clause 1 and 3 of a BSD-Modified found in the Linux kernel This is now replaced by the bsd-source-code license."} \ No newline at end of file +{ + "key": "bsd-axis", + "is_deprecated": true, + "short_name": "BSD-Axis", + "name": "BSD-Axis", + "category": "Permissive", + "owner": "Axis Communications", + "notes": "This is a variant composed of clause 1 and 3 of a BSD-Modified found in the Linux kernel This is now replaced by the bsd-source-code license." +} \ No newline at end of file diff --git a/docs/bsd-credit.LICENSE b/docs/bsd-credit.LICENSE index 289fc29104..1fbb2c39d7 100644 --- a/docs/bsd-credit.LICENSE +++ b/docs/bsd-credit.LICENSE @@ -1,3 +1,12 @@ +--- +key: bsd-credit +short_name: BSD-Credit +name: BSD-Credit +category: Permissive +owner: OpenBSD Project +spdx_license_key: LicenseRef-scancode-bsd-credit +--- + Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. @@ -12,4 +21,4 @@ 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. +THIS SOFTWARE. \ No newline at end of file diff --git a/docs/bsd-credit.html b/docs/bsd-credit.html index 2bdd1695e8..d9a7ffca99 100644 --- a/docs/bsd-credit.html +++ b/docs/bsd-credit.html @@ -122,8 +122,7 @@ 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 SOFTWARE.
@@ -135,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-credit.json b/docs/bsd-credit.json index 485483e3a9..a604a44d3b 100644 --- a/docs/bsd-credit.json +++ b/docs/bsd-credit.json @@ -1 +1,8 @@ -{"key": "bsd-credit", "short_name": "BSD-Credit", "name": "BSD-Credit", "category": "Permissive", "owner": "OpenBSD Project", "spdx_license_key": "LicenseRef-scancode-bsd-credit"} \ No newline at end of file +{ + "key": "bsd-credit", + "short_name": "BSD-Credit", + "name": "BSD-Credit", + "category": "Permissive", + "owner": "OpenBSD Project", + "spdx_license_key": "LicenseRef-scancode-bsd-credit" +} \ No newline at end of file diff --git a/docs/bsd-dpt.LICENSE b/docs/bsd-dpt.LICENSE index 1a2cd9d14b..f2bc61a676 100644 --- a/docs/bsd-dpt.LICENSE +++ b/docs/bsd-dpt.LICENSE @@ -1,3 +1,13 @@ +--- +key: bsd-dpt +short_name: BSD DPT +name: BSD Distributed Processing Technology License +category: Permissive +owner: Distributed Processing Technology +spdx_license_key: LicenseRef-scancode-bsd-dpt +minimum_coverage: 95 +--- + Redistribution and use in source form, with or without modification, are permitted provided that redistributions of source code must retain the above copyright notice, this list of conditions and the following @@ -13,4 +23,4 @@ procurement of substitute goods or services; loss of use, data, or profits; or business interruptions) 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 -driver software, even if advised of the possibility of such damage. +driver software, even if advised of the possibility of such damage. \ No newline at end of file diff --git a/docs/bsd-dpt.html b/docs/bsd-dpt.html index 4bdb8f7f8f..e22dcbb594 100644 --- a/docs/bsd-dpt.html +++ b/docs/bsd-dpt.html @@ -130,8 +130,7 @@ profits; or business interruptions) 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 -driver software, even if advised of the possibility of such damage. - +driver software, even if advised of the possibility of such damage.
@@ -143,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-dpt.json b/docs/bsd-dpt.json index 54355a8143..3684d74f70 100644 --- a/docs/bsd-dpt.json +++ b/docs/bsd-dpt.json @@ -1 +1,9 @@ -{"key": "bsd-dpt", "short_name": "BSD DPT", "name": "BSD Distributed Processing Technology License", "category": "Permissive", "owner": "Distributed Processing Technology", "spdx_license_key": "LicenseRef-scancode-bsd-dpt", "minimum_coverage": 95} \ No newline at end of file +{ + "key": "bsd-dpt", + "short_name": "BSD DPT", + "name": "BSD Distributed Processing Technology License", + "category": "Permissive", + "owner": "Distributed Processing Technology", + "spdx_license_key": "LicenseRef-scancode-bsd-dpt", + "minimum_coverage": 95 +} \ No newline at end of file diff --git a/docs/bsd-export.LICENSE b/docs/bsd-export.LICENSE index 8ed98cd302..518837a996 100644 --- a/docs/bsd-export.LICENSE +++ b/docs/bsd-export.LICENSE @@ -1,3 +1,14 @@ +--- +key: bsd-export +short_name: BSD-Export +name: BSD-Export +category: Permissive +owner: Cavium +spdx_license_key: LicenseRef-scancode-bsd-export +text_urls: + - https://download.juniper.net/disclosure/attributions/junos/10.4R1.9/disclosures.txt +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-export.html b/docs/bsd-export.html index ca73ef75a2..545f4c417d 100644 --- a/docs/bsd-export.html +++ b/docs/bsd-export.html @@ -158,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-export.json b/docs/bsd-export.json index 6e80a9623f..4d7d159341 100644 --- a/docs/bsd-export.json +++ b/docs/bsd-export.json @@ -1 +1,11 @@ -{"key": "bsd-export", "short_name": "BSD-Export", "name": "BSD-Export", "category": "Permissive", "owner": "Cavium", "spdx_license_key": "LicenseRef-scancode-bsd-export", "text_urls": ["https://download.juniper.net/disclosure/attributions/junos/10.4R1.9/disclosures.txt"]} \ No newline at end of file +{ + "key": "bsd-export", + "short_name": "BSD-Export", + "name": "BSD-Export", + "category": "Permissive", + "owner": "Cavium", + "spdx_license_key": "LicenseRef-scancode-bsd-export", + "text_urls": [ + "https://download.juniper.net/disclosure/attributions/junos/10.4R1.9/disclosures.txt" + ] +} \ No newline at end of file diff --git a/docs/bsd-innosys.LICENSE b/docs/bsd-innosys.LICENSE index 94b324da6d..e5d0c294ec 100644 --- a/docs/bsd-innosys.LICENSE +++ b/docs/bsd-innosys.LICENSE @@ -1,3 +1,19 @@ +--- +key: bsd-innosys +short_name: BSD-InnoSys +name: BSD-InnoSys +category: Permissive +owner: InnoSys +notes: | + This is a BSD variant with extra conditions on the placement of the notice. + Common in the Linux kernel +spdx_license_key: LicenseRef-scancode-bsd-innosys +ignorable_copyrights: + - Copyright (c) InnoSys Incorporated +ignorable_holders: + - InnoSys Incorporated +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -25,4 +41,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/docs/bsd-innosys.html b/docs/bsd-innosys.html index d3b2644c9e..bf9226261b 100644 --- a/docs/bsd-innosys.html +++ b/docs/bsd-innosys.html @@ -162,8 +162,7 @@ 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. - +SUCH DAMAGE.
@@ -175,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-innosys.json b/docs/bsd-innosys.json index 1400b659a6..1b8138671f 100644 --- a/docs/bsd-innosys.json +++ b/docs/bsd-innosys.json @@ -1 +1,15 @@ -{"key": "bsd-innosys", "short_name": "BSD-InnoSys", "name": "BSD-InnoSys", "category": "Permissive", "owner": "InnoSys", "notes": "This is a BSD variant with extra conditions on the placement of the notice.\nCommon in the Linux kernel\n", "spdx_license_key": "LicenseRef-scancode-bsd-innosys", "ignorable_copyrights": ["Copyright (c) InnoSys Incorporated"], "ignorable_holders": ["InnoSys Incorporated"]} \ No newline at end of file +{ + "key": "bsd-innosys", + "short_name": "BSD-InnoSys", + "name": "BSD-InnoSys", + "category": "Permissive", + "owner": "InnoSys", + "notes": "This is a BSD variant with extra conditions on the placement of the notice.\nCommon in the Linux kernel\n", + "spdx_license_key": "LicenseRef-scancode-bsd-innosys", + "ignorable_copyrights": [ + "Copyright (c) InnoSys Incorporated" + ], + "ignorable_holders": [ + "InnoSys Incorporated" + ] +} \ No newline at end of file diff --git a/docs/bsd-intel.LICENSE b/docs/bsd-intel.LICENSE index 39da0c994d..c4d402a1b9 100644 --- a/docs/bsd-intel.LICENSE +++ b/docs/bsd-intel.LICENSE @@ -1,3 +1,12 @@ +--- +key: bsd-intel +is_deprecated: yes +short_name: BSD Intel License +name: BSD Intel License +category: Permissive +owner: Intel Corporation +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -20,4 +29,4 @@ 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. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/bsd-intel.html b/docs/bsd-intel.html index 31f003bebc..16c687a5df 100644 --- a/docs/bsd-intel.html +++ b/docs/bsd-intel.html @@ -130,8 +130,7 @@ 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. - +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -143,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-intel.json b/docs/bsd-intel.json index 9155a52011..bf80df8177 100644 --- a/docs/bsd-intel.json +++ b/docs/bsd-intel.json @@ -1 +1,8 @@ -{"key": "bsd-intel", "is_deprecated": true, "short_name": "BSD Intel License", "name": "BSD Intel License", "category": "Permissive", "owner": "Intel Corporation"} \ No newline at end of file +{ + "key": "bsd-intel", + "is_deprecated": true, + "short_name": "BSD Intel License", + "name": "BSD Intel License", + "category": "Permissive", + "owner": "Intel Corporation" +} \ No newline at end of file diff --git a/docs/bsd-mylex.LICENSE b/docs/bsd-mylex.LICENSE index 9016a13f6f..ce29942ce7 100644 --- a/docs/bsd-mylex.LICENSE +++ b/docs/bsd-mylex.LICENSE @@ -1,3 +1,17 @@ +--- +key: bsd-mylex +short_name: BSD-Mylex +name: BSD-Mylex +category: Permissive +owner: Mylex +notes: found in the Linux kernel for the Flashpoint code +spdx_license_key: LicenseRef-scancode-bsd-mylex +ignorable_copyrights: + - Copyright 1995-1996 by Mylex Corporation +ignorable_holders: + - Mylex Corporation +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -30,4 +44,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/docs/bsd-mylex.html b/docs/bsd-mylex.html index 9f2d651939..f3e9af19c0 100644 --- a/docs/bsd-mylex.html +++ b/docs/bsd-mylex.html @@ -165,8 +165,7 @@ 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. - +SUCH DAMAGE.
@@ -178,7 +177,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-mylex.json b/docs/bsd-mylex.json index 7f47818862..856a874978 100644 --- a/docs/bsd-mylex.json +++ b/docs/bsd-mylex.json @@ -1 +1,15 @@ -{"key": "bsd-mylex", "short_name": "BSD-Mylex", "name": "BSD-Mylex", "category": "Permissive", "owner": "Mylex", "notes": "found in the Linux kernel for the Flashpoint code", "spdx_license_key": "LicenseRef-scancode-bsd-mylex", "ignorable_copyrights": ["Copyright 1995-1996 by Mylex Corporation"], "ignorable_holders": ["Mylex Corporation"]} \ No newline at end of file +{ + "key": "bsd-mylex", + "short_name": "BSD-Mylex", + "name": "BSD-Mylex", + "category": "Permissive", + "owner": "Mylex", + "notes": "found in the Linux kernel for the Flashpoint code", + "spdx_license_key": "LicenseRef-scancode-bsd-mylex", + "ignorable_copyrights": [ + "Copyright 1995-1996 by Mylex Corporation" + ], + "ignorable_holders": [ + "Mylex Corporation" + ] +} \ No newline at end of file diff --git a/docs/bsd-new-derivative.LICENSE b/docs/bsd-new-derivative.LICENSE index f8e14530bb..5d7239408d 100644 --- a/docs/bsd-new-derivative.LICENSE +++ b/docs/bsd-new-derivative.LICENSE @@ -1,3 +1,15 @@ +--- +key: bsd-new-derivative +short_name: BSD-Derivative +name: BSD-Derivative +category: Permissive +owner: libpcap +homepage_url: http://www.tcpdump.org/sniffex.c +notes: this is a rather rare variant of the bsd-new found in tcpdump +spdx_license_key: LicenseRef-scancode-bsd-new-derivative +minimum_coverage: 70 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-new-derivative.html b/docs/bsd-new-derivative.html index 3c96c6ee7d..9fc9b94a1d 100644 --- a/docs/bsd-new-derivative.html +++ b/docs/bsd-new-derivative.html @@ -174,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-new-derivative.json b/docs/bsd-new-derivative.json index 1a62c709f4..9103ef9e7e 100644 --- a/docs/bsd-new-derivative.json +++ b/docs/bsd-new-derivative.json @@ -1 +1,11 @@ -{"key": "bsd-new-derivative", "short_name": "BSD-Derivative", "name": "BSD-Derivative", "category": "Permissive", "owner": "libpcap", "homepage_url": "http://www.tcpdump.org/sniffex.c", "notes": "this is a rather rare variant of the bsd-new found in tcpdump", "spdx_license_key": "LicenseRef-scancode-bsd-new-derivative", "minimum_coverage": 70} \ No newline at end of file +{ + "key": "bsd-new-derivative", + "short_name": "BSD-Derivative", + "name": "BSD-Derivative", + "category": "Permissive", + "owner": "libpcap", + "homepage_url": "http://www.tcpdump.org/sniffex.c", + "notes": "this is a rather rare variant of the bsd-new found in tcpdump", + "spdx_license_key": "LicenseRef-scancode-bsd-new-derivative", + "minimum_coverage": 70 +} \ No newline at end of file diff --git a/docs/bsd-new-far-manager.LICENSE b/docs/bsd-new-far-manager.LICENSE index bd4acd4e2a..e71b713523 100644 --- a/docs/bsd-new-far-manager.LICENSE +++ b/docs/bsd-new-far-manager.LICENSE @@ -1,3 +1,13 @@ +--- +key: bsd-new-far-manager +is_deprecated: yes +short_name: BSD-3-Clause with Far Manager exception +name: BSD-3-Clause with Far Manager exception +category: Permissive +owner: Far Group +is_exception: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-new-far-manager.html b/docs/bsd-new-far-manager.html index ec670dcfc1..5baf7fd73d 100644 --- a/docs/bsd-new-far-manager.html +++ b/docs/bsd-new-far-manager.html @@ -153,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-new-far-manager.json b/docs/bsd-new-far-manager.json index 41fc8603bd..e5a6d9391a 100644 --- a/docs/bsd-new-far-manager.json +++ b/docs/bsd-new-far-manager.json @@ -1 +1,9 @@ -{"key": "bsd-new-far-manager", "is_deprecated": true, "short_name": "BSD-3-Clause with Far Manager exception", "name": "BSD-3-Clause with Far Manager exception", "category": "Permissive", "owner": "Far Group", "is_exception": true} \ No newline at end of file +{ + "key": "bsd-new-far-manager", + "is_deprecated": true, + "short_name": "BSD-3-Clause with Far Manager exception", + "name": "BSD-3-Clause with Far Manager exception", + "category": "Permissive", + "owner": "Far Group", + "is_exception": true +} \ No newline at end of file diff --git a/docs/bsd-new-nomod.LICENSE b/docs/bsd-new-nomod.LICENSE index 0b3efc45aa..0aa0ac63cb 100644 --- a/docs/bsd-new-nomod.LICENSE +++ b/docs/bsd-new-nomod.LICENSE @@ -1,3 +1,15 @@ +--- +key: bsd-new-nomod +short_name: BSD-3-Clause without notice modification +name: BSD-3-Clause without notice modification +category: Permissive +owner: Unspecified +notes: this bsd-new variant has the words "without modification" added at the end of the first + clause, sometimes with or without a comma. +spdx_license_key: LicenseRef-scancode-bsd-new-nomod +minimum_coverage: 99 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-new-nomod.html b/docs/bsd-new-nomod.html index 5df6f3cd28..589c82fb4d 100644 --- a/docs/bsd-new-nomod.html +++ b/docs/bsd-new-nomod.html @@ -157,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-new-nomod.json b/docs/bsd-new-nomod.json index 2107d056c5..253edee6af 100644 --- a/docs/bsd-new-nomod.json +++ b/docs/bsd-new-nomod.json @@ -1 +1,10 @@ -{"key": "bsd-new-nomod", "short_name": "BSD-3-Clause without notice modification", "name": "BSD-3-Clause without notice modification", "category": "Permissive", "owner": "Unspecified", "notes": "this bsd-new variant has the words \"without modification\" added at the end of the first clause, sometimes with or without a comma.", "spdx_license_key": "LicenseRef-scancode-bsd-new-nomod", "minimum_coverage": 99} \ No newline at end of file +{ + "key": "bsd-new-nomod", + "short_name": "BSD-3-Clause without notice modification", + "name": "BSD-3-Clause without notice modification", + "category": "Permissive", + "owner": "Unspecified", + "notes": "this bsd-new variant has the words \"without modification\" added at the end of the first clause, sometimes with or without a comma.", + "spdx_license_key": "LicenseRef-scancode-bsd-new-nomod", + "minimum_coverage": 99 +} \ No newline at end of file diff --git a/docs/bsd-new-tcpdump.LICENSE b/docs/bsd-new-tcpdump.LICENSE index 87bca10226..8447005345 100644 --- a/docs/bsd-new-tcpdump.LICENSE +++ b/docs/bsd-new-tcpdump.LICENSE @@ -1,3 +1,13 @@ +--- +key: bsd-new-tcpdump +short_name: BSD-3-Clause tcpdump variant +name: BSD-3-Clause tcpdump variant +category: Permissive +owner: libpcap +notes: This license is a custom variation on the BSD found in tcpdump +spdx_license_key: LicenseRef-scancode-bsd-new-tcpdump +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that: (1) source code * distributions retain the above copyright notice and this paragraph diff --git a/docs/bsd-new-tcpdump.html b/docs/bsd-new-tcpdump.html index 4640214df8..8f2ec9d9f6 100644 --- a/docs/bsd-new-tcpdump.html +++ b/docs/bsd-new-tcpdump.html @@ -138,7 +138,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-new-tcpdump.json b/docs/bsd-new-tcpdump.json index 98a650d91d..99fe9caea0 100644 --- a/docs/bsd-new-tcpdump.json +++ b/docs/bsd-new-tcpdump.json @@ -1 +1,9 @@ -{"key": "bsd-new-tcpdump", "short_name": "BSD-3-Clause tcpdump variant", "name": "BSD-3-Clause tcpdump variant", "category": "Permissive", "owner": "libpcap", "notes": "This license is a custom variation on the BSD found in tcpdump", "spdx_license_key": "LicenseRef-scancode-bsd-new-tcpdump"} \ No newline at end of file +{ + "key": "bsd-new-tcpdump", + "short_name": "BSD-3-Clause tcpdump variant", + "name": "BSD-3-Clause tcpdump variant", + "category": "Permissive", + "owner": "libpcap", + "notes": "This license is a custom variation on the BSD found in tcpdump", + "spdx_license_key": "LicenseRef-scancode-bsd-new-tcpdump" +} \ No newline at end of file diff --git a/docs/bsd-new.LICENSE b/docs/bsd-new.LICENSE index cb6a877f2f..4a9e65cd3d 100644 --- a/docs/bsd-new.LICENSE +++ b/docs/bsd-new.LICENSE @@ -1,3 +1,24 @@ +--- +key: bsd-new +short_name: BSD-3-Clause +name: BSD-3-Clause +category: Permissive +owner: Regents of the University of California +homepage_url: http://www.opensource.org/licenses/BSD-3-Clause +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: BSD-3-Clause +other_spdx_license_keys: + - LicenseRef-scancode-libzip +osi_license_key: BSD-3-Clause +text_urls: + - http://www.opensource.org/licenses/BSD-3-Clause +osi_url: http://www.opensource.org/licenses/BSD-3-Clause +other_urls: + - http://framework.zend.com/license/new-bsd + - https://opensource.org/licenses/BSD-3-Clause + - https://www.eclipse.org/org/documents/edl-v10.php +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-new.html b/docs/bsd-new.html index 29ec330dc0..d7d51aea49 100644 --- a/docs/bsd-new.html +++ b/docs/bsd-new.html @@ -156,7 +156,7 @@
@@ -198,7 +198,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-new.json b/docs/bsd-new.json index 0c902ab968..71f4ad6b7b 100644 --- a/docs/bsd-new.json +++ b/docs/bsd-new.json @@ -1 +1,23 @@ -{"key": "bsd-new", "short_name": "BSD-3-Clause", "name": "BSD-3-Clause", "category": "Permissive", "owner": "Regents of the University of California", "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "BSD-3-Clause", "other_spdx_license_keys": ["LicenseRef-scancode-libzip"], "osi_license_key": "BSD-3-Clause", "text_urls": ["http://www.opensource.org/licenses/BSD-3-Clause"], "osi_url": "http://www.opensource.org/licenses/BSD-3-Clause", "other_urls": ["http://framework.zend.com/license/new-bsd", "https://opensource.org/licenses/BSD-3-Clause"]} \ No newline at end of file +{ + "key": "bsd-new", + "short_name": "BSD-3-Clause", + "name": "BSD-3-Clause", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "BSD-3-Clause", + "other_spdx_license_keys": [ + "LicenseRef-scancode-libzip" + ], + "osi_license_key": "BSD-3-Clause", + "text_urls": [ + "http://www.opensource.org/licenses/BSD-3-Clause" + ], + "osi_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "other_urls": [ + "http://framework.zend.com/license/new-bsd", + "https://opensource.org/licenses/BSD-3-Clause", + "https://www.eclipse.org/org/documents/edl-v10.php" + ] +} \ No newline at end of file diff --git a/docs/bsd-new.yml b/docs/bsd-new.yml index 530761b7b3..d50ba927e0 100644 --- a/docs/bsd-new.yml +++ b/docs/bsd-new.yml @@ -15,3 +15,4 @@ osi_url: http://www.opensource.org/licenses/BSD-3-Clause other_urls: - http://framework.zend.com/license/new-bsd - https://opensource.org/licenses/BSD-3-Clause + - https://www.eclipse.org/org/documents/edl-v10.php diff --git a/docs/bsd-no-disclaimer-unmodified.LICENSE b/docs/bsd-no-disclaimer-unmodified.LICENSE index e5d7f98828..03c2654c73 100644 --- a/docs/bsd-no-disclaimer-unmodified.LICENSE +++ b/docs/bsd-no-disclaimer-unmodified.LICENSE @@ -1,3 +1,14 @@ +--- +key: bsd-no-disclaimer-unmodified +short_name: BSD-2-Clause no disclaimer Unmod +name: BSD-2-Clause without Warranty Disclaimer with Unmodified requirement +category: Permissive +owner: Unspecified +notes: A rare variant that comes with a slightly different wording and no warranty disclaimer + and the words "without modifications" applying to the license conditions +spdx_license_key: LicenseRef-scancode-bsd-no-disclaimer-unmodified +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/docs/bsd-no-disclaimer-unmodified.html b/docs/bsd-no-disclaimer-unmodified.html index 8750efe94f..ee6b452361 100644 --- a/docs/bsd-no-disclaimer-unmodified.html +++ b/docs/bsd-no-disclaimer-unmodified.html @@ -133,7 +133,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-no-disclaimer-unmodified.json b/docs/bsd-no-disclaimer-unmodified.json index b87546761b..d692fcdd70 100644 --- a/docs/bsd-no-disclaimer-unmodified.json +++ b/docs/bsd-no-disclaimer-unmodified.json @@ -1 +1,9 @@ -{"key": "bsd-no-disclaimer-unmodified", "short_name": "BSD-2-Clause no disclaimer Unmod", "name": "BSD-2-Clause without Warranty Disclaimer with Unmodified requirement", "category": "Permissive", "owner": "Unspecified", "notes": "A rare variant that comes with a slightly different wording and no warranty disclaimer and the words \"without modifications\" applying to the license conditions", "spdx_license_key": "LicenseRef-scancode-bsd-no-disclaimer-unmodified"} \ No newline at end of file +{ + "key": "bsd-no-disclaimer-unmodified", + "short_name": "BSD-2-Clause no disclaimer Unmod", + "name": "BSD-2-Clause without Warranty Disclaimer with Unmodified requirement", + "category": "Permissive", + "owner": "Unspecified", + "notes": "A rare variant that comes with a slightly different wording and no warranty disclaimer and the words \"without modifications\" applying to the license conditions", + "spdx_license_key": "LicenseRef-scancode-bsd-no-disclaimer-unmodified" +} \ No newline at end of file diff --git a/docs/bsd-no-disclaimer.LICENSE b/docs/bsd-no-disclaimer.LICENSE index 5e6df8701d..e48a6b80e0 100644 --- a/docs/bsd-no-disclaimer.LICENSE +++ b/docs/bsd-no-disclaimer.LICENSE @@ -1,3 +1,15 @@ +--- +key: bsd-no-disclaimer +short_name: BSD-2-Clause no disclaimer +name: BSD-2-Clause without Warranty Disclaimer +category: Permissive +owner: Unspecified +notes: A rare variant that comes with a slightly different wording and no warranty disclaimer. +spdx_license_key: LicenseRef-scancode-bsd-no-disclaimer +other_urls: + - https://github.com/miekg/miek.nl/blob/17ef2d311da721ccb3ddb3649ec41ff51305952f/static/downloads/2009/tt.pl.txt#L5 +--- + # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: @@ -5,4 +17,4 @@ # notice and this list of conditions. # 2. Redistributions in binary form must reproduce the above copyright # notice and this list of conditions in the -# documentation and/or other materials provided with the distribution. +# documentation and/or other materials provided with the distribution. \ No newline at end of file diff --git a/docs/bsd-no-disclaimer.html b/docs/bsd-no-disclaimer.html index 7354d1b222..0cf29aa518 100644 --- a/docs/bsd-no-disclaimer.html +++ b/docs/bsd-no-disclaimer.html @@ -131,8 +131,7 @@ # notice and this list of conditions. # 2. Redistributions in binary form must reproduce the above copyright # notice and this list of conditions in the -# documentation and/or other materials provided with the distribution. - +# documentation and/or other materials provided with the distribution.
@@ -144,7 +143,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-no-disclaimer.json b/docs/bsd-no-disclaimer.json index e30ac6cf1b..c41dc0001d 100644 --- a/docs/bsd-no-disclaimer.json +++ b/docs/bsd-no-disclaimer.json @@ -1 +1,12 @@ -{"key": "bsd-no-disclaimer", "short_name": "BSD-2-Clause no disclaimer", "name": "BSD-2-Clause without Warranty Disclaimer", "category": "Permissive", "owner": "Unspecified", "notes": "A rare variant that comes with a slightly different wording and no warranty disclaimer.", "spdx_license_key": "LicenseRef-scancode-bsd-no-disclaimer", "other_urls": ["https://github.com/miekg/miek.nl/blob/17ef2d311da721ccb3ddb3649ec41ff51305952f/static/downloads/2009/tt.pl.txt#L5"]} \ No newline at end of file +{ + "key": "bsd-no-disclaimer", + "short_name": "BSD-2-Clause no disclaimer", + "name": "BSD-2-Clause without Warranty Disclaimer", + "category": "Permissive", + "owner": "Unspecified", + "notes": "A rare variant that comes with a slightly different wording and no warranty disclaimer.", + "spdx_license_key": "LicenseRef-scancode-bsd-no-disclaimer", + "other_urls": [ + "https://github.com/miekg/miek.nl/blob/17ef2d311da721ccb3ddb3649ec41ff51305952f/static/downloads/2009/tt.pl.txt#L5" + ] +} \ No newline at end of file diff --git a/docs/bsd-no-mod.LICENSE b/docs/bsd-no-mod.LICENSE index bf6bdb261a..ad3ad9c757 100644 --- a/docs/bsd-no-mod.LICENSE +++ b/docs/bsd-no-mod.LICENSE @@ -1,3 +1,15 @@ +--- +key: bsd-no-mod +short_name: Madwifi License +name: Madwifi License Agreement +category: Free Restricted +owner: MadWifi +homepage_url: http://www.madwifi.org/ +spdx_license_key: LicenseRef-scancode-bsd-no-mod +text_urls: + - http://wiki.freespire.org/index.php/Madwifi_License_Agreement +--- + Redistribution and use in source and binary forms are permitted provided that the following conditions are met: 1. The materials contained herein are unmodified and are used diff --git a/docs/bsd-no-mod.html b/docs/bsd-no-mod.html index 675273bf5d..e6a3921bd8 100644 --- a/docs/bsd-no-mod.html +++ b/docs/bsd-no-mod.html @@ -165,7 +165,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-no-mod.json b/docs/bsd-no-mod.json index 060d419135..d513f0cc27 100644 --- a/docs/bsd-no-mod.json +++ b/docs/bsd-no-mod.json @@ -1 +1,12 @@ -{"key": "bsd-no-mod", "short_name": "Madwifi License", "name": "Madwifi License Agreement", "category": "Free Restricted", "owner": "MadWifi", "homepage_url": "http://www.madwifi.org/", "spdx_license_key": "LicenseRef-scancode-bsd-no-mod", "text_urls": ["http://wiki.freespire.org/index.php/Madwifi_License_Agreement"]} \ No newline at end of file +{ + "key": "bsd-no-mod", + "short_name": "Madwifi License", + "name": "Madwifi License Agreement", + "category": "Free Restricted", + "owner": "MadWifi", + "homepage_url": "http://www.madwifi.org/", + "spdx_license_key": "LicenseRef-scancode-bsd-no-mod", + "text_urls": [ + "http://wiki.freespire.org/index.php/Madwifi_License_Agreement" + ] +} \ No newline at end of file diff --git a/docs/bsd-original-muscle.LICENSE b/docs/bsd-original-muscle.LICENSE index 350c353483..0d39264261 100644 --- a/docs/bsd-original-muscle.LICENSE +++ b/docs/bsd-original-muscle.LICENSE @@ -1,3 +1,20 @@ +--- +key: bsd-original-muscle +short_name: BSD-Original-Muscle +name: BSD-Original-Muscle +category: Permissive +owner: David Corcoran +homepage_url: https://web.archive.org/web/20060318003856/http://linuxnet.com/ +notes: This license has some extra terms beyond the advertizing clause not found in the bsd-original +spdx_license_key: LicenseRef-scancode-bsd-original-muscle +ignorable_authors: + - David Corcoran +ignorable_urls: + - http://www.linuxnet.com/ +ignorable_emails: + - corcoran@linuxnet.com +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-original-muscle.html b/docs/bsd-original-muscle.html index 376864bde4..23dbeed9f7 100644 --- a/docs/bsd-original-muscle.html +++ b/docs/bsd-original-muscle.html @@ -190,7 +190,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-original-muscle.json b/docs/bsd-original-muscle.json index e4fa35281b..733e4608c9 100644 --- a/docs/bsd-original-muscle.json +++ b/docs/bsd-original-muscle.json @@ -1 +1,19 @@ -{"key": "bsd-original-muscle", "short_name": "BSD-Original-Muscle", "name": "BSD-Original-Muscle", "category": "Permissive", "owner": "David Corcoran", "homepage_url": "https://web.archive.org/web/20060318003856/http://linuxnet.com/", "notes": "This license has some extra terms beyond the advertizing clause not found in the bsd-original", "spdx_license_key": "LicenseRef-scancode-bsd-original-muscle", "ignorable_authors": ["David Corcoran "], "ignorable_urls": ["http://www.linuxnet.com/"], "ignorable_emails": ["corcoran@linuxnet.com"]} \ No newline at end of file +{ + "key": "bsd-original-muscle", + "short_name": "BSD-Original-Muscle", + "name": "BSD-Original-Muscle", + "category": "Permissive", + "owner": "David Corcoran", + "homepage_url": "https://web.archive.org/web/20060318003856/http://linuxnet.com/", + "notes": "This license has some extra terms beyond the advertizing clause not found in the bsd-original", + "spdx_license_key": "LicenseRef-scancode-bsd-original-muscle", + "ignorable_authors": [ + "David Corcoran " + ], + "ignorable_urls": [ + "http://www.linuxnet.com/" + ], + "ignorable_emails": [ + "corcoran@linuxnet.com" + ] +} \ No newline at end of file diff --git a/docs/bsd-original-uc-1986.LICENSE b/docs/bsd-original-uc-1986.LICENSE index 2b607e7b9f..12df32d416 100644 --- a/docs/bsd-original-uc-1986.LICENSE +++ b/docs/bsd-original-uc-1986.LICENSE @@ -1,6 +1,15 @@ +--- +key: bsd-original-uc-1986 +short_name: BSD-Original-UC-1986 +name: BSD-Original-UC-1986 +category: Permissive +owner: Regents of the University of California +spdx_license_key: LicenseRef-scancode-bsd-original-uc-1986 +--- + Redistribution and use in source and binary forms are permitted provided that this notice is preserved and that due credit is given to the University of California Berkeley. The name of the University may not be used to endorse or promote products derived from this software without specific prior written permission. This software is provieded "as is" without express or implied -warranty +warranty \ No newline at end of file diff --git a/docs/bsd-original-uc-1986.html b/docs/bsd-original-uc-1986.html index 8df3fd1fdf..c493edb28e 100644 --- a/docs/bsd-original-uc-1986.html +++ b/docs/bsd-original-uc-1986.html @@ -113,8 +113,7 @@ California Berkeley. The name of the University may not be used to endorse or promote products derived from this software without specific prior written permission. This software is provieded "as is" without express or implied -warranty - +warranty
@@ -126,7 +125,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-original-uc-1986.json b/docs/bsd-original-uc-1986.json index 5d6e2f6220..c840b92ba7 100644 --- a/docs/bsd-original-uc-1986.json +++ b/docs/bsd-original-uc-1986.json @@ -1 +1,8 @@ -{"key": "bsd-original-uc-1986", "short_name": "BSD-Original-UC-1986", "name": "BSD-Original-UC-1986", "category": "Permissive", "owner": "Regents of the University of California", "spdx_license_key": "LicenseRef-scancode-bsd-original-uc-1986"} \ No newline at end of file +{ + "key": "bsd-original-uc-1986", + "short_name": "BSD-Original-UC-1986", + "name": "BSD-Original-UC-1986", + "category": "Permissive", + "owner": "Regents of the University of California", + "spdx_license_key": "LicenseRef-scancode-bsd-original-uc-1986" +} \ No newline at end of file diff --git a/docs/bsd-original-uc-1990.LICENSE b/docs/bsd-original-uc-1990.LICENSE index c6637368f8..54d0edda4c 100644 --- a/docs/bsd-original-uc-1990.LICENSE +++ b/docs/bsd-original-uc-1990.LICENSE @@ -1,3 +1,13 @@ +--- +key: bsd-original-uc-1990 +is_deprecated: yes +short_name: BSD-Original-UC-1990 +name: BSD-Original-UC-1990 +category: Permissive +owner: Regents of the University of California +notes: this is a duplicate of bsla license +--- + Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this paragraph are duplicated in all such forms and that any documentation, @@ -8,4 +18,4 @@ University may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/docs/bsd-original-uc-1990.html b/docs/bsd-original-uc-1990.html index 3bbf275e52..09bec4e0e8 100644 --- a/docs/bsd-original-uc-1990.html +++ b/docs/bsd-original-uc-1990.html @@ -125,8 +125,7 @@ from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
@@ -138,7 +137,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-original-uc-1990.json b/docs/bsd-original-uc-1990.json index d527910630..2c60f4c16e 100644 --- a/docs/bsd-original-uc-1990.json +++ b/docs/bsd-original-uc-1990.json @@ -1 +1,9 @@ -{"key": "bsd-original-uc-1990", "is_deprecated": true, "short_name": "BSD-Original-UC-1990", "name": "BSD-Original-UC-1990", "category": "Permissive", "owner": "Regents of the University of California", "notes": "this is a duplicate of bsla license"} \ No newline at end of file +{ + "key": "bsd-original-uc-1990", + "is_deprecated": true, + "short_name": "BSD-Original-UC-1990", + "name": "BSD-Original-UC-1990", + "category": "Permissive", + "owner": "Regents of the University of California", + "notes": "this is a duplicate of bsla license" +} \ No newline at end of file diff --git a/docs/bsd-original-uc.LICENSE b/docs/bsd-original-uc.LICENSE index fa2da0cfc4..7a7e88561e 100644 --- a/docs/bsd-original-uc.LICENSE +++ b/docs/bsd-original-uc.LICENSE @@ -1,3 +1,36 @@ +--- +key: bsd-original-uc +short_name: BSD-Original-UC +name: BSD-Original-UC +category: Permissive +owner: Regents of the University of California +homepage_url: ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change +notes: | + Per SPDX.org, this is the same license as the BSD-4-Clause, but with a + copyright notice for the Regents of the University of California. Captures + the retroactive deletion of the third (advertising) clause of the Original + BSD license for BSD-licensed code developed by UC Berkeley and its + contributors (see + ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change) +spdx_license_key: BSD-4-Clause-UC +text_urls: + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html +faq_url: ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change +other_urls: + - http://www.freebsd.org/copyright/license.html + - http://www.fsf.org/licensing/essays/bsd.html + - http://www.gnu.org/philosophy/bsd.html +ignorable_copyrights: + - copyrighted by the Regents of the University of California +ignorable_holders: + - the Regents of the University of California +ignorable_authors: + - UC Berkeley and its contributors + - the University of California, Berkeley and its contributors +ignorable_urls: + - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-original-uc.html b/docs/bsd-original-uc.html index 4c0864a66b..16eb288eab 100644 --- a/docs/bsd-original-uc.html +++ b/docs/bsd-original-uc.html @@ -265,7 +265,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-original-uc.json b/docs/bsd-original-uc.json index 8b35dab1a2..633e91b47a 100644 --- a/docs/bsd-original-uc.json +++ b/docs/bsd-original-uc.json @@ -1 +1,32 @@ -{"key": "bsd-original-uc", "short_name": "BSD-Original-UC", "name": "BSD-Original-UC", "category": "Permissive", "owner": "Regents of the University of California", "homepage_url": "ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change", "notes": "Per SPDX.org, this is the same license as the BSD-4-Clause, but with a\ncopyright notice for the Regents of the University of California. Captures\nthe retroactive deletion of the third (advertising) clause of the Original\nBSD license for BSD-licensed code developed by UC Berkeley and its\ncontributors (see\nftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change)\n", "spdx_license_key": "BSD-4-Clause-UC", "text_urls": ["http://www.xfree86.org/3.3.6/COPYRIGHT2.html"], "faq_url": "ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change", "other_urls": ["http://www.freebsd.org/copyright/license.html", "http://www.fsf.org/licensing/essays/bsd.html", "http://www.gnu.org/philosophy/bsd.html"], "ignorable_copyrights": ["copyrighted by the Regents of the University of California"], "ignorable_holders": ["the Regents of the University of California"], "ignorable_authors": ["UC Berkeley and its contributors", "the University of California, Berkeley and its contributors"], "ignorable_urls": ["ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change"]} \ No newline at end of file +{ + "key": "bsd-original-uc", + "short_name": "BSD-Original-UC", + "name": "BSD-Original-UC", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change", + "notes": "Per SPDX.org, this is the same license as the BSD-4-Clause, but with a\ncopyright notice for the Regents of the University of California. Captures\nthe retroactive deletion of the third (advertising) clause of the Original\nBSD license for BSD-licensed code developed by UC Berkeley and its\ncontributors (see\nftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change)\n", + "spdx_license_key": "BSD-4-Clause-UC", + "text_urls": [ + "http://www.xfree86.org/3.3.6/COPYRIGHT2.html" + ], + "faq_url": "ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change", + "other_urls": [ + "http://www.freebsd.org/copyright/license.html", + "http://www.fsf.org/licensing/essays/bsd.html", + "http://www.gnu.org/philosophy/bsd.html" + ], + "ignorable_copyrights": [ + "copyrighted by the Regents of the University of California" + ], + "ignorable_holders": [ + "the Regents of the University of California" + ], + "ignorable_authors": [ + "UC Berkeley and its contributors", + "the University of California, Berkeley and its contributors" + ], + "ignorable_urls": [ + "ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change" + ] +} \ No newline at end of file diff --git a/docs/bsd-original-voices.LICENSE b/docs/bsd-original-voices.LICENSE index b7aac5bfb0..924456a602 100644 --- a/docs/bsd-original-voices.LICENSE +++ b/docs/bsd-original-voices.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-original-voices +short_name: BSD-4-Clause with Voices +name: BSD-4-Clause with Voices in Head +category: Permissive +owner: Bill Paul +homepage_url: https://github.com/freebsd/freebsd-src/blob/098dbd7ff7f3da9dda03802cdb2d8755f816eada/sys/dev/an/if_an_isa.c +spdx_license_key: LicenseRef-scancode-bsd-original-voices +minimum_coverage: 99 +ignorable_authors: + - Bill Paul +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/docs/bsd-original-voices.html b/docs/bsd-original-voices.html index 4d503c0640..64188bbe0e 100644 --- a/docs/bsd-original-voices.html +++ b/docs/bsd-original-voices.html @@ -168,7 +168,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-original-voices.json b/docs/bsd-original-voices.json index a6daef343d..00e3b2b764 100644 --- a/docs/bsd-original-voices.json +++ b/docs/bsd-original-voices.json @@ -1 +1,13 @@ -{"key": "bsd-original-voices", "short_name": "BSD-4-Clause with Voices", "name": "BSD-4-Clause with Voices in Head", "category": "Permissive", "owner": "Bill Paul", "homepage_url": "https://github.com/freebsd/freebsd-src/blob/098dbd7ff7f3da9dda03802cdb2d8755f816eada/sys/dev/an/if_an_isa.c", "spdx_license_key": "LicenseRef-scancode-bsd-original-voices", "minimum_coverage": 99, "ignorable_authors": ["Bill Paul"]} \ No newline at end of file +{ + "key": "bsd-original-voices", + "short_name": "BSD-4-Clause with Voices", + "name": "BSD-4-Clause with Voices in Head", + "category": "Permissive", + "owner": "Bill Paul", + "homepage_url": "https://github.com/freebsd/freebsd-src/blob/098dbd7ff7f3da9dda03802cdb2d8755f816eada/sys/dev/an/if_an_isa.c", + "spdx_license_key": "LicenseRef-scancode-bsd-original-voices", + "minimum_coverage": 99, + "ignorable_authors": [ + "Bill Paul" + ] +} \ No newline at end of file diff --git a/docs/bsd-original.LICENSE b/docs/bsd-original.LICENSE index c88822d2f7..fd104b0194 100644 --- a/docs/bsd-original.LICENSE +++ b/docs/bsd-original.LICENSE @@ -1,3 +1,21 @@ +--- +key: bsd-original +short_name: BSD-Original +name: BSD-Original +category: Permissive +owner: Regents of the University of California +homepage_url: http://www.xfree86.org/3.3.6/COPYRIGHT2.html +notes: Per SPDX.org, this license was rescinded by the author on 22 July 1999. +spdx_license_key: BSD-4-Clause +text_urls: + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html#6 +osi_url: http://www.opensource.org/licenses/bsd-license.php +other_urls: + - http://directory.fsf.org/wiki/License:BSD_4Clause + - http://www.fsf.org/licensing/essays/bsd.html + - http://www.gnu.org/philosophy/bsd.html +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-original.html b/docs/bsd-original.html index e10f72d19c..fb05bc363a 100644 --- a/docs/bsd-original.html +++ b/docs/bsd-original.html @@ -186,7 +186,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-original.json b/docs/bsd-original.json index 6e8c481788..287a38aaab 100644 --- a/docs/bsd-original.json +++ b/docs/bsd-original.json @@ -1 +1,19 @@ -{"key": "bsd-original", "short_name": "BSD-Original", "name": "BSD-Original", "category": "Permissive", "owner": "Regents of the University of California", "homepage_url": "http://www.xfree86.org/3.3.6/COPYRIGHT2.html", "notes": "Per SPDX.org, this license was rescinded by the author on 22 July 1999.", "spdx_license_key": "BSD-4-Clause", "text_urls": ["http://www.xfree86.org/3.3.6/COPYRIGHT2.html#6"], "osi_url": "http://www.opensource.org/licenses/bsd-license.php", "other_urls": ["http://directory.fsf.org/wiki/License:BSD_4Clause", "http://www.fsf.org/licensing/essays/bsd.html", "http://www.gnu.org/philosophy/bsd.html"]} \ No newline at end of file +{ + "key": "bsd-original", + "short_name": "BSD-Original", + "name": "BSD-Original", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.xfree86.org/3.3.6/COPYRIGHT2.html", + "notes": "Per SPDX.org, this license was rescinded by the author on 22 July 1999.", + "spdx_license_key": "BSD-4-Clause", + "text_urls": [ + "http://www.xfree86.org/3.3.6/COPYRIGHT2.html#6" + ], + "osi_url": "http://www.opensource.org/licenses/bsd-license.php", + "other_urls": [ + "http://directory.fsf.org/wiki/License:BSD_4Clause", + "http://www.fsf.org/licensing/essays/bsd.html", + "http://www.gnu.org/philosophy/bsd.html" + ] +} \ No newline at end of file diff --git a/docs/bsd-plus-mod-notice.LICENSE b/docs/bsd-plus-mod-notice.LICENSE index 80d200a153..39926aee28 100644 --- a/docs/bsd-plus-mod-notice.LICENSE +++ b/docs/bsd-plus-mod-notice.LICENSE @@ -1,3 +1,12 @@ +--- +key: bsd-plus-mod-notice +short_name: BSD plus modification notice +name: BSD plus modification notice +category: Permissive +owner: VTK Project +spdx_license_key: LicenseRef-scancode-bsd-plus-mod-notice +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-plus-mod-notice.html b/docs/bsd-plus-mod-notice.html index 13855b065b..2e06cc37ed 100644 --- a/docs/bsd-plus-mod-notice.html +++ b/docs/bsd-plus-mod-notice.html @@ -146,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-plus-mod-notice.json b/docs/bsd-plus-mod-notice.json index a6de70aa43..bd338f221a 100644 --- a/docs/bsd-plus-mod-notice.json +++ b/docs/bsd-plus-mod-notice.json @@ -1 +1,8 @@ -{"key": "bsd-plus-mod-notice", "short_name": "BSD plus modification notice", "name": "BSD plus modification notice", "category": "Permissive", "owner": "VTK Project", "spdx_license_key": "LicenseRef-scancode-bsd-plus-mod-notice"} \ No newline at end of file +{ + "key": "bsd-plus-mod-notice", + "short_name": "BSD plus modification notice", + "name": "BSD plus modification notice", + "category": "Permissive", + "owner": "VTK Project", + "spdx_license_key": "LicenseRef-scancode-bsd-plus-mod-notice" +} \ No newline at end of file diff --git a/docs/bsd-plus-patent.LICENSE b/docs/bsd-plus-patent.LICENSE index fb2daf8083..71ad279cec 100644 --- a/docs/bsd-plus-patent.LICENSE +++ b/docs/bsd-plus-patent.LICENSE @@ -1,3 +1,20 @@ +--- +key: bsd-plus-patent +short_name: BSD-2-Clause Plus Patent +name: BSD-2-Clause Plus Patent +category: Permissive +owner: OSI - Open Source Initiative +homepage_url: https://opensource.org/licenses/BSDplusPatent +notes: | + Per the OSI, this license is designed to provide a) a simple permissive + license; b) that is compatible with the GNU General Public License (GPL), + version 2; and c) which also has an express patent grant included. +spdx_license_key: BSD-2-Clause-Patent +text_urls: + - https://opensource.org/licenses/BSDplusPatent +osi_url: https://opensource.org/licenses/BSDplusPatent +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-plus-patent.html b/docs/bsd-plus-patent.html index 67d7ce9d8c..3e8f719435 100644 --- a/docs/bsd-plus-patent.html +++ b/docs/bsd-plus-patent.html @@ -201,7 +201,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-plus-patent.json b/docs/bsd-plus-patent.json index 0956e3f4d2..f23928364d 100644 --- a/docs/bsd-plus-patent.json +++ b/docs/bsd-plus-patent.json @@ -1 +1,14 @@ -{"key": "bsd-plus-patent", "short_name": "BSD-2-Clause Plus Patent", "name": "BSD-2-Clause Plus Patent", "category": "Permissive", "owner": "OSI - Open Source Initiative", "homepage_url": "https://opensource.org/licenses/BSDplusPatent", "notes": "Per the OSI, this license is designed to provide a) a simple permissive\nlicense; b) that is compatible with the GNU General Public License (GPL),\nversion 2; and c) which also has an express patent grant included.\n", "spdx_license_key": "BSD-2-Clause-Patent", "text_urls": ["https://opensource.org/licenses/BSDplusPatent"], "osi_url": "https://opensource.org/licenses/BSDplusPatent"} \ No newline at end of file +{ + "key": "bsd-plus-patent", + "short_name": "BSD-2-Clause Plus Patent", + "name": "BSD-2-Clause Plus Patent", + "category": "Permissive", + "owner": "OSI - Open Source Initiative", + "homepage_url": "https://opensource.org/licenses/BSDplusPatent", + "notes": "Per the OSI, this license is designed to provide a) a simple permissive\nlicense; b) that is compatible with the GNU General Public License (GPL),\nversion 2; and c) which also has an express patent grant included.\n", + "spdx_license_key": "BSD-2-Clause-Patent", + "text_urls": [ + "https://opensource.org/licenses/BSDplusPatent" + ], + "osi_url": "https://opensource.org/licenses/BSDplusPatent" +} \ No newline at end of file diff --git a/docs/bsd-protection.LICENSE b/docs/bsd-protection.LICENSE index eefc0b5afb..1f4d16bd36 100644 --- a/docs/bsd-protection.LICENSE +++ b/docs/bsd-protection.LICENSE @@ -1,3 +1,15 @@ +--- +key: bsd-protection +short_name: BSD Protection License +name: BSD Protection License +category: Copyleft +owner: FreeBSD +homepage_url: https://fedoraproject.org/wiki/Licensing/BSD_Protection_License +spdx_license_key: BSD-Protection +text_urls: + - https://fedoraproject.org/wiki/Licensing/BSD_Protection_License +--- + BSD Protection License February 2002 diff --git a/docs/bsd-protection.html b/docs/bsd-protection.html index 8faa2411f8..927691454a 100644 --- a/docs/bsd-protection.html +++ b/docs/bsd-protection.html @@ -262,7 +262,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-protection.json b/docs/bsd-protection.json index f4d8667eab..abee75af43 100644 --- a/docs/bsd-protection.json +++ b/docs/bsd-protection.json @@ -1 +1,12 @@ -{"key": "bsd-protection", "short_name": "BSD Protection License", "name": "BSD Protection License", "category": "Copyleft", "owner": "FreeBSD", "homepage_url": "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License", "spdx_license_key": "BSD-Protection", "text_urls": ["https://fedoraproject.org/wiki/Licensing/BSD_Protection_License"]} \ No newline at end of file +{ + "key": "bsd-protection", + "short_name": "BSD Protection License", + "name": "BSD Protection License", + "category": "Copyleft", + "owner": "FreeBSD", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License", + "spdx_license_key": "BSD-Protection", + "text_urls": [ + "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License" + ] +} \ No newline at end of file diff --git a/docs/bsd-simplified-darwin.LICENSE b/docs/bsd-simplified-darwin.LICENSE index 19f5ba922b..6990ab96a9 100644 --- a/docs/bsd-simplified-darwin.LICENSE +++ b/docs/bsd-simplified-darwin.LICENSE @@ -1,3 +1,12 @@ +--- +key: bsd-simplified-darwin +short_name: BSD Simplified Darwin +name: BSD Simplified Darwin +category: Permissive +owner: Ian Darwin +spdx_license_key: LicenseRef-scancode-bsd-simplified-darwin +--- + This software is not subject to any export provision of the United States Department of Commerce, and may be exported to any country or planet. diff --git a/docs/bsd-simplified-darwin.html b/docs/bsd-simplified-darwin.html index 9e7b22ea03..89c8858664 100644 --- a/docs/bsd-simplified-darwin.html +++ b/docs/bsd-simplified-darwin.html @@ -143,7 +143,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-simplified-darwin.json b/docs/bsd-simplified-darwin.json index b93c67836f..8d5ebfd1b4 100644 --- a/docs/bsd-simplified-darwin.json +++ b/docs/bsd-simplified-darwin.json @@ -1 +1,8 @@ -{"key": "bsd-simplified-darwin", "short_name": "BSD Simplified Darwin", "name": "BSD Simplified Darwin", "category": "Permissive", "owner": "Ian Darwin", "spdx_license_key": "LicenseRef-scancode-bsd-simplified-darwin"} \ No newline at end of file +{ + "key": "bsd-simplified-darwin", + "short_name": "BSD Simplified Darwin", + "name": "BSD Simplified Darwin", + "category": "Permissive", + "owner": "Ian Darwin", + "spdx_license_key": "LicenseRef-scancode-bsd-simplified-darwin" +} \ No newline at end of file diff --git a/docs/bsd-simplified-intel.LICENSE b/docs/bsd-simplified-intel.LICENSE index b9f0d0d24b..73fe10b537 100644 --- a/docs/bsd-simplified-intel.LICENSE +++ b/docs/bsd-simplified-intel.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-simplified-intel +short_name: BSD-Simplified Intel +name: BSD-Simplified Intel +category: Permissive +owner: Intel Corporation +homepage_url: https://github.com/ofiwg/libfabric/blob/master/include/linux/rdpmc.h +notes: | + This license is a custom variation on the BSD simplified seen in + libfabric. +spdx_license_key: LicenseRef-scancode-bsd-simplified-intel +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that: (1) source code distributions retain the above copyright notice and this paragraph in its entirety, (2) distributions including @@ -6,4 +19,4 @@ entirety in the documentation or other materials provided with the distribution THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/docs/bsd-simplified-intel.html b/docs/bsd-simplified-intel.html index 72ca785b0c..4f0af8d00f 100644 --- a/docs/bsd-simplified-intel.html +++ b/docs/bsd-simplified-intel.html @@ -132,8 +132,7 @@ THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
@@ -145,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-simplified-intel.json b/docs/bsd-simplified-intel.json index 3f76867a2f..f21efd98e8 100644 --- a/docs/bsd-simplified-intel.json +++ b/docs/bsd-simplified-intel.json @@ -1 +1,10 @@ -{"key": "bsd-simplified-intel", "short_name": "BSD-Simplified Intel", "name": "BSD-Simplified Intel", "category": "Permissive", "owner": "Intel Corporation", "homepage_url": "https://github.com/ofiwg/libfabric/blob/master/include/linux/rdpmc.h", "notes": "This license is a custom variation on the BSD simplified seen in\nlibfabric.\n", "spdx_license_key": "LicenseRef-scancode-bsd-simplified-intel"} \ No newline at end of file +{ + "key": "bsd-simplified-intel", + "short_name": "BSD-Simplified Intel", + "name": "BSD-Simplified Intel", + "category": "Permissive", + "owner": "Intel Corporation", + "homepage_url": "https://github.com/ofiwg/libfabric/blob/master/include/linux/rdpmc.h", + "notes": "This license is a custom variation on the BSD simplified seen in\nlibfabric.\n", + "spdx_license_key": "LicenseRef-scancode-bsd-simplified-intel" +} \ No newline at end of file diff --git a/docs/bsd-simplified-source.LICENSE b/docs/bsd-simplified-source.LICENSE index 8060258607..5c3353bedb 100644 --- a/docs/bsd-simplified-source.LICENSE +++ b/docs/bsd-simplified-source.LICENSE @@ -1,3 +1,15 @@ +--- +key: bsd-simplified-source +short_name: BSD-Simplified source +name: BSD-Simplified source +category: Permissive +owner: Unspecified +notes: | + a very simplified bsd variant mentioning only source and without disclaimer. + Found in the Linux kernel +spdx_license_key: LicenseRef-scancode-bsd-simplified-source +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that redistributions of source code retain the above copyright notice and this comment without diff --git a/docs/bsd-simplified-source.html b/docs/bsd-simplified-source.html index d2a7495b45..d10f5be6f9 100644 --- a/docs/bsd-simplified-source.html +++ b/docs/bsd-simplified-source.html @@ -132,7 +132,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-simplified-source.json b/docs/bsd-simplified-source.json index 385ccd63dc..685d8ba967 100644 --- a/docs/bsd-simplified-source.json +++ b/docs/bsd-simplified-source.json @@ -1 +1,9 @@ -{"key": "bsd-simplified-source", "short_name": "BSD-Simplified source", "name": "BSD-Simplified source", "category": "Permissive", "owner": "Unspecified", "notes": "a very simplified bsd variant mentioning only source and without disclaimer.\nFound in the Linux kernel\n", "spdx_license_key": "LicenseRef-scancode-bsd-simplified-source"} \ No newline at end of file +{ + "key": "bsd-simplified-source", + "short_name": "BSD-Simplified source", + "name": "BSD-Simplified source", + "category": "Permissive", + "owner": "Unspecified", + "notes": "a very simplified bsd variant mentioning only source and without disclaimer.\nFound in the Linux kernel\n", + "spdx_license_key": "LicenseRef-scancode-bsd-simplified-source" +} \ No newline at end of file diff --git a/docs/bsd-simplified.LICENSE b/docs/bsd-simplified.LICENSE index f1fd48f7bc..946c10997d 100644 --- a/docs/bsd-simplified.LICENSE +++ b/docs/bsd-simplified.LICENSE @@ -1,3 +1,24 @@ +--- +key: bsd-simplified +short_name: BSD-2-Clause +name: BSD-2-Clause +category: Permissive +owner: Regents of the University of California +homepage_url: http://www.opensource.org/licenses/BSD-2-Clause +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: BSD-2-Clause +other_spdx_license_keys: + - BSD-2-Clause-NetBSD + - BSD-2 +text_urls: + - http://opensource.org/licenses/bsd-license.php +osi_url: http://opensource.org/licenses/bsd-license.php +other_urls: + - http://spdx.org/licenses/BSD-2-Clause + - http://www.freebsd.org/copyright/copyright.html + - https://opensource.org/licenses/BSD-2-Clause +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-simplified.html b/docs/bsd-simplified.html index 8506a2a4ce..1689b9aad1 100644 --- a/docs/bsd-simplified.html +++ b/docs/bsd-simplified.html @@ -187,7 +187,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-simplified.json b/docs/bsd-simplified.json index fef85293ec..9349d2ef88 100644 --- a/docs/bsd-simplified.json +++ b/docs/bsd-simplified.json @@ -1 +1,23 @@ -{"key": "bsd-simplified", "short_name": "BSD-2-Clause", "name": "BSD-2-Clause", "category": "Permissive", "owner": "Regents of the University of California", "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "BSD-2-Clause", "other_spdx_license_keys": ["BSD-2-Clause-NetBSD", "BSD-2"], "text_urls": ["http://opensource.org/licenses/bsd-license.php"], "osi_url": "http://opensource.org/licenses/bsd-license.php", "other_urls": ["http://spdx.org/licenses/BSD-2-Clause", "http://www.freebsd.org/copyright/copyright.html", "https://opensource.org/licenses/BSD-2-Clause"]} \ No newline at end of file +{ + "key": "bsd-simplified", + "short_name": "BSD-2-Clause", + "name": "BSD-2-Clause", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-2-Clause", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "BSD-2-Clause", + "other_spdx_license_keys": [ + "BSD-2-Clause-NetBSD", + "BSD-2" + ], + "text_urls": [ + "http://opensource.org/licenses/bsd-license.php" + ], + "osi_url": "http://opensource.org/licenses/bsd-license.php", + "other_urls": [ + "http://spdx.org/licenses/BSD-2-Clause", + "http://www.freebsd.org/copyright/copyright.html", + "https://opensource.org/licenses/BSD-2-Clause" + ] +} \ No newline at end of file diff --git a/docs/bsd-source-code.LICENSE b/docs/bsd-source-code.LICENSE index e2604dc217..30e1773a9b 100644 --- a/docs/bsd-source-code.LICENSE +++ b/docs/bsd-source-code.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-source-code +short_name: BSD Source Code Attribution +name: BSD Source Code Attribution +category: Permissive +owner: TSRM +homepage_url: https://github.com/infusion/PHP/blob/master/TSRM/LICENSE +spdx_license_key: BSD-Source-Code +text_urls: + - https://github.com/infusion/PHP/blob/master/TSRM/LICENSE + - https://github.com/robbiehanson/CocoaHTTPServer/blob/master/LICENSE.txt +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/bsd-source-code.html b/docs/bsd-source-code.html index 4b0189d729..0a922949d2 100644 --- a/docs/bsd-source-code.html +++ b/docs/bsd-source-code.html @@ -158,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-source-code.json b/docs/bsd-source-code.json index 59d01464f8..ad19fccdf2 100644 --- a/docs/bsd-source-code.json +++ b/docs/bsd-source-code.json @@ -1 +1,13 @@ -{"key": "bsd-source-code", "short_name": "BSD Source Code Attribution", "name": "BSD Source Code Attribution", "category": "Permissive", "owner": "TSRM", "homepage_url": "https://github.com/infusion/PHP/blob/master/TSRM/LICENSE", "spdx_license_key": "BSD-Source-Code", "text_urls": ["https://github.com/infusion/PHP/blob/master/TSRM/LICENSE", "https://github.com/robbiehanson/CocoaHTTPServer/blob/master/LICENSE.txt"]} \ No newline at end of file +{ + "key": "bsd-source-code", + "short_name": "BSD Source Code Attribution", + "name": "BSD Source Code Attribution", + "category": "Permissive", + "owner": "TSRM", + "homepage_url": "https://github.com/infusion/PHP/blob/master/TSRM/LICENSE", + "spdx_license_key": "BSD-Source-Code", + "text_urls": [ + "https://github.com/infusion/PHP/blob/master/TSRM/LICENSE", + "https://github.com/robbiehanson/CocoaHTTPServer/blob/master/LICENSE.txt" + ] +} \ No newline at end of file diff --git a/docs/bsd-top-gpl-addition.LICENSE b/docs/bsd-top-gpl-addition.LICENSE index 1587a89188..8a9c9abf1e 100644 --- a/docs/bsd-top-gpl-addition.LICENSE +++ b/docs/bsd-top-gpl-addition.LICENSE @@ -1,3 +1,14 @@ +--- +key: bsd-top-gpl-addition +short_name: BSD 3-Clause with GPL reference +name: BSD 3-Clause with GPL reference +category: Permissive +owner: Initio Corporation +notes: this license requires top of the file notice. See in linux kernels +spdx_license_key: LicenseRef-scancode-bsd-top-gpl-addition +minimum_coverage: 70 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -27,4 +38,4 @@ * 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. + * SUCH DAMAGE. \ No newline at end of file diff --git a/docs/bsd-top-gpl-addition.html b/docs/bsd-top-gpl-addition.html index 2b15e6dc71..777cd00ea1 100644 --- a/docs/bsd-top-gpl-addition.html +++ b/docs/bsd-top-gpl-addition.html @@ -151,8 +151,7 @@ * 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. - + * SUCH DAMAGE.
@@ -164,7 +163,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-top-gpl-addition.json b/docs/bsd-top-gpl-addition.json index f79a3086f9..997a9da99d 100644 --- a/docs/bsd-top-gpl-addition.json +++ b/docs/bsd-top-gpl-addition.json @@ -1 +1,10 @@ -{"key": "bsd-top-gpl-addition", "short_name": "BSD 3-Clause with GPL reference", "name": "BSD 3-Clause with GPL reference", "category": "Permissive", "owner": "Initio Corporation", "notes": "this license requires top of the file notice. See in linux kernels", "spdx_license_key": "LicenseRef-scancode-bsd-top-gpl-addition", "minimum_coverage": 70} \ No newline at end of file +{ + "key": "bsd-top-gpl-addition", + "short_name": "BSD 3-Clause with GPL reference", + "name": "BSD 3-Clause with GPL reference", + "category": "Permissive", + "owner": "Initio Corporation", + "notes": "this license requires top of the file notice. See in linux kernels", + "spdx_license_key": "LicenseRef-scancode-bsd-top-gpl-addition", + "minimum_coverage": 70 +} \ No newline at end of file diff --git a/docs/bsd-top.LICENSE b/docs/bsd-top.LICENSE index 4e972c97a9..eb5f186808 100644 --- a/docs/bsd-top.LICENSE +++ b/docs/bsd-top.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-top +short_name: BSD-Top +name: BSD-Top +category: Permissive +owner: nexB +notes: | + This is a variant composed of clause 1 and 3 of a BSD-Modified and some + additional conditions on position and content of the notice +spdx_license_key: LicenseRef-scancode-bsd-top +minimum_coverage: 70 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -17,4 +30,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/docs/bsd-top.html b/docs/bsd-top.html index 5870e2bc72..5277de8f6d 100644 --- a/docs/bsd-top.html +++ b/docs/bsd-top.html @@ -143,8 +143,7 @@ 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. - +SUCH DAMAGE.
@@ -156,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-top.json b/docs/bsd-top.json index 6d05010f9e..8d563ce2b2 100644 --- a/docs/bsd-top.json +++ b/docs/bsd-top.json @@ -1 +1,10 @@ -{"key": "bsd-top", "short_name": "BSD-Top", "name": "BSD-Top", "category": "Permissive", "owner": "nexB", "notes": "This is a variant composed of clause 1 and 3 of a BSD-Modified and some\nadditional conditions on position and content of the notice\n", "spdx_license_key": "LicenseRef-scancode-bsd-top", "minimum_coverage": 70} \ No newline at end of file +{ + "key": "bsd-top", + "short_name": "BSD-Top", + "name": "BSD-Top", + "category": "Permissive", + "owner": "nexB", + "notes": "This is a variant composed of clause 1 and 3 of a BSD-Modified and some\nadditional conditions on position and content of the notice\n", + "spdx_license_key": "LicenseRef-scancode-bsd-top", + "minimum_coverage": 70 +} \ No newline at end of file diff --git a/docs/bsd-unchanged.LICENSE b/docs/bsd-unchanged.LICENSE index ce8ea93b02..6d6aec8790 100644 --- a/docs/bsd-unchanged.LICENSE +++ b/docs/bsd-unchanged.LICENSE @@ -1,3 +1,17 @@ +--- +key: bsd-unchanged +short_name: BSD Unchanged +name: BSD Simplified with Unchanged requirement +category: Permissive +owner: Unspecified +notes: | + Contains this extra text "in this position and unchanged" when compared + with a bsd-simplified. Found in the BSD codebase, for instance at + http://web.mit.edu/freebsd/head/sys/sys/sbuf.h +spdx_license_key: LicenseRef-scancode-bsd-unchanged +minimum_coverage: 98 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -20,4 +34,4 @@ 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 POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/bsd-unchanged.html b/docs/bsd-unchanged.html index 32923c55fe..cc6f8488c2 100644 --- a/docs/bsd-unchanged.html +++ b/docs/bsd-unchanged.html @@ -147,8 +147,7 @@ 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 POSSIBILITY OF SUCH DAMAGE.
@@ -160,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-unchanged.json b/docs/bsd-unchanged.json index 542a0e1dce..52b41e8a6c 100644 --- a/docs/bsd-unchanged.json +++ b/docs/bsd-unchanged.json @@ -1 +1,10 @@ -{"key": "bsd-unchanged", "short_name": "BSD Unchanged", "name": "BSD Simplified with Unchanged requirement", "category": "Permissive", "owner": "Unspecified", "notes": "Contains this extra text \"in this position and unchanged\" when compared\nwith a bsd-simplified. Found in the BSD codebase, for instance at\nhttp://web.mit.edu/freebsd/head/sys/sys/sbuf.h\n", "spdx_license_key": "LicenseRef-scancode-bsd-unchanged", "minimum_coverage": 98} \ No newline at end of file +{ + "key": "bsd-unchanged", + "short_name": "BSD Unchanged", + "name": "BSD Simplified with Unchanged requirement", + "category": "Permissive", + "owner": "Unspecified", + "notes": "Contains this extra text \"in this position and unchanged\" when compared\nwith a bsd-simplified. Found in the BSD codebase, for instance at\nhttp://web.mit.edu/freebsd/head/sys/sys/sbuf.h\n", + "spdx_license_key": "LicenseRef-scancode-bsd-unchanged", + "minimum_coverage": 98 +} \ No newline at end of file diff --git a/docs/bsd-unmodified.LICENSE b/docs/bsd-unmodified.LICENSE index 3aed577c32..45e76e02ef 100644 --- a/docs/bsd-unmodified.LICENSE +++ b/docs/bsd-unmodified.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-unmodified +short_name: BSD Unmodified +name: BSD Simplified with Unmodified requirement +category: Permissive +owner: Unspecified +notes: | + Contains this extra word unmodified in "the above copyright notice unmodified" + when compared with a bsd-simplified. Found in the newlib C library +spdx_license_key: LicenseRef-scancode-bsd-unmodified +minimum_coverage: 95 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -17,4 +30,4 @@ 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 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/bsd-unmodified.html b/docs/bsd-unmodified.html index f97bca24ec..95f378142c 100644 --- a/docs/bsd-unmodified.html +++ b/docs/bsd-unmodified.html @@ -143,8 +143,7 @@ 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 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -156,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-unmodified.json b/docs/bsd-unmodified.json index 60f6af57ca..88afa24ba8 100644 --- a/docs/bsd-unmodified.json +++ b/docs/bsd-unmodified.json @@ -1 +1,10 @@ -{"key": "bsd-unmodified", "short_name": "BSD Unmodified", "name": "BSD Simplified with Unmodified requirement", "category": "Permissive", "owner": "Unspecified", "notes": "Contains this extra word unmodified in \"the above copyright notice unmodified\"\nwhen compared with a bsd-simplified. Found in the newlib C library\n", "spdx_license_key": "LicenseRef-scancode-bsd-unmodified", "minimum_coverage": 95} \ No newline at end of file +{ + "key": "bsd-unmodified", + "short_name": "BSD Unmodified", + "name": "BSD Simplified with Unmodified requirement", + "category": "Permissive", + "owner": "Unspecified", + "notes": "Contains this extra word unmodified in \"the above copyright notice unmodified\"\nwhen compared with a bsd-simplified. Found in the newlib C library\n", + "spdx_license_key": "LicenseRef-scancode-bsd-unmodified", + "minimum_coverage": 95 +} \ No newline at end of file diff --git a/docs/bsd-x11.LICENSE b/docs/bsd-x11.LICENSE index afb7f66fb4..71b9986863 100644 --- a/docs/bsd-x11.LICENSE +++ b/docs/bsd-x11.LICENSE @@ -1,3 +1,14 @@ +--- +key: bsd-x11 +short_name: BSD-3-Clause X11 disclaimer +name: BSD-3-Clause with X11 disclaimer +category: Permissive +owner: Unspecified +notes: This is essentially a bsd-new with an extra non infrigment disclaimer borrowed from the + X11-r75/MIT license +spdx_license_key: LicenseRef-scancode-bsd-x11 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -24,4 +35,4 @@ 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. +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/bsd-x11.html b/docs/bsd-x11.html index 773e1e066d..7f99c4244f 100644 --- a/docs/bsd-x11.html +++ b/docs/bsd-x11.html @@ -141,8 +141,7 @@ 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. - +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -154,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-x11.json b/docs/bsd-x11.json index 71c1b5d362..c7fc7c1d29 100644 --- a/docs/bsd-x11.json +++ b/docs/bsd-x11.json @@ -1 +1,9 @@ -{"key": "bsd-x11", "short_name": "BSD-3-Clause X11 disclaimer", "name": "BSD-3-Clause with X11 disclaimer", "category": "Permissive", "owner": "Unspecified", "notes": "This is essentially a bsd-new with an extra non infrigment disclaimer borrowed from the X11-r75/MIT license", "spdx_license_key": "LicenseRef-scancode-bsd-x11"} \ No newline at end of file +{ + "key": "bsd-x11", + "short_name": "BSD-3-Clause X11 disclaimer", + "name": "BSD-3-Clause with X11 disclaimer", + "category": "Permissive", + "owner": "Unspecified", + "notes": "This is essentially a bsd-new with an extra non infrigment disclaimer borrowed from the X11-r75/MIT license", + "spdx_license_key": "LicenseRef-scancode-bsd-x11" +} \ No newline at end of file diff --git a/docs/bsd-zero.LICENSE b/docs/bsd-zero.LICENSE index 5f6f2758f6..047d3bb778 100644 --- a/docs/bsd-zero.LICENSE +++ b/docs/bsd-zero.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-zero +short_name: BSD Zero Clause License +name: BSD Zero Clause License +category: Permissive +owner: Rob Landley +homepage_url: http://landley.net/toybox/license.html +spdx_license_key: 0BSD +other_urls: + - https://opensource.org/licenses/0BSD +minimum_coverage: 70 +--- + Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. diff --git a/docs/bsd-zero.html b/docs/bsd-zero.html index 90c0709fa0..0e9bee0304 100644 --- a/docs/bsd-zero.html +++ b/docs/bsd-zero.html @@ -152,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsd-zero.json b/docs/bsd-zero.json index 29c568fc5d..54fbab3d6c 100644 --- a/docs/bsd-zero.json +++ b/docs/bsd-zero.json @@ -1 +1,13 @@ -{"key": "bsd-zero", "short_name": "BSD Zero Clause License", "name": "BSD Zero Clause License", "category": "Permissive", "owner": "Rob Landley", "homepage_url": "http://landley.net/toybox/license.html", "spdx_license_key": "0BSD", "other_urls": ["https://opensource.org/licenses/0BSD"], "minimum_coverage": 70} \ No newline at end of file +{ + "key": "bsd-zero", + "short_name": "BSD Zero Clause License", + "name": "BSD Zero Clause License", + "category": "Permissive", + "owner": "Rob Landley", + "homepage_url": "http://landley.net/toybox/license.html", + "spdx_license_key": "0BSD", + "other_urls": [ + "https://opensource.org/licenses/0BSD" + ], + "minimum_coverage": 70 +} \ No newline at end of file diff --git a/docs/bsl-1.0.LICENSE b/docs/bsl-1.0.LICENSE index f2e740a6fd..bc54eed846 100644 --- a/docs/bsl-1.0.LICENSE +++ b/docs/bsl-1.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: bsl-1.0 +short_name: Business Source License 1.0 +name: Business Source License 1.0 +category: Source-available +owner: MariaDB +homepage_url: https://mariadb.com/bsl10 +spdx_license_key: LicenseRef-scancode-bsl-1.0 +faq_url: https://mariadb.com/bsl-faq-mariadb +other_urls: + - https://mariadb.com/bsl-faq-adopting + - https://mariadb.com/products/mariadb-enterprise +ignorable_copyrights: + - (c) 2016 MariaDB Corporation Ab +ignorable_holders: + - MariaDB Corporation Ab +ignorable_urls: + - https://mariadb.com/products/mariadb-enterprise +--- + Business Source License 1.0 Licensor: MariaDB Corporation Ab diff --git a/docs/bsl-1.0.html b/docs/bsl-1.0.html index cbbcdf1ddb..f5d8b47f57 100644 --- a/docs/bsl-1.0.html +++ b/docs/bsl-1.0.html @@ -200,7 +200,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsl-1.0.json b/docs/bsl-1.0.json index 74391cc76a..80de181e62 100644 --- a/docs/bsl-1.0.json +++ b/docs/bsl-1.0.json @@ -1 +1,23 @@ -{"key": "bsl-1.0", "short_name": "Business Source License 1.0", "name": "Business Source License 1.0", "category": "Source-available", "owner": "MariaDB", "homepage_url": "https://mariadb.com/bsl10", "spdx_license_key": "LicenseRef-scancode-bsl-1.0", "faq_url": "https://mariadb.com/bsl-faq-mariadb", "other_urls": ["https://mariadb.com/bsl-faq-adopting", "https://mariadb.com/products/mariadb-enterprise"], "ignorable_copyrights": ["(c) 2016 MariaDB Corporation Ab"], "ignorable_holders": ["MariaDB Corporation Ab"], "ignorable_urls": ["https://mariadb.com/products/mariadb-enterprise"]} \ No newline at end of file +{ + "key": "bsl-1.0", + "short_name": "Business Source License 1.0", + "name": "Business Source License 1.0", + "category": "Source-available", + "owner": "MariaDB", + "homepage_url": "https://mariadb.com/bsl10", + "spdx_license_key": "LicenseRef-scancode-bsl-1.0", + "faq_url": "https://mariadb.com/bsl-faq-mariadb", + "other_urls": [ + "https://mariadb.com/bsl-faq-adopting", + "https://mariadb.com/products/mariadb-enterprise" + ], + "ignorable_copyrights": [ + "(c) 2016 MariaDB Corporation Ab" + ], + "ignorable_holders": [ + "MariaDB Corporation Ab" + ], + "ignorable_urls": [ + "https://mariadb.com/products/mariadb-enterprise" + ] +} \ No newline at end of file diff --git a/docs/bsl-1.1.LICENSE b/docs/bsl-1.1.LICENSE index 901e674ada..f1f2bfe893 100644 --- a/docs/bsl-1.1.LICENSE +++ b/docs/bsl-1.1.LICENSE @@ -1,3 +1,23 @@ +--- +key: bsl-1.1 +short_name: Business Source License 1.1 +name: Business Source License 1.1 +category: Source-available +owner: MariaDB +homepage_url: https://mariadb.com/bsl11/ +spdx_license_key: BUSL-1.1 +other_spdx_license_keys: + - LicenseRef-scancode-bsl-1.1 +faq_url: https://mariadb.com/bsl-faq-mariadb/ +other_urls: + - https://mariadb.com/bsl-faq-adopting/ + - https://mariadb.com/products/mariadb-enterprise +ignorable_copyrights: + - copyright (c) 2017 MariaDB Corporation Ab +ignorable_holders: + - MariaDB Corporation Ab +--- + Business Source License 1.1 License text copyright © 2017 MariaDB Corporation Ab, All Rights Reserved. @@ -72,4 +92,4 @@ Notice The Business Source License (this document, or the "License") is not an Open Source license. However, the Licensed Work will eventually be made available -under an Open Source License, as stated in this License. +under an Open Source License, as stated in this License. \ No newline at end of file diff --git a/docs/bsl-1.1.html b/docs/bsl-1.1.html index fdd63a0a4d..a117017e20 100644 --- a/docs/bsl-1.1.html +++ b/docs/bsl-1.1.html @@ -232,8 +232,7 @@ The Business Source License (this document, or the "License") is not an Open Source license. However, the Licensed Work will eventually be made available -under an Open Source License, as stated in this License. - +under an Open Source License, as stated in this License.
@@ -245,7 +244,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsl-1.1.json b/docs/bsl-1.1.json index cfc4eeb8d4..527f5b152f 100644 --- a/docs/bsl-1.1.json +++ b/docs/bsl-1.1.json @@ -1 +1,23 @@ -{"key": "bsl-1.1", "short_name": "Business Source License 1.1", "name": "Business Source License 1.1", "category": "Source-available", "owner": "MariaDB", "homepage_url": "https://mariadb.com/bsl11/", "spdx_license_key": "BUSL-1.1", "other_spdx_license_keys": ["LicenseRef-scancode-bsl-1.1"], "faq_url": "https://mariadb.com/bsl-faq-mariadb/", "other_urls": ["https://mariadb.com/bsl-faq-adopting/", "https://mariadb.com/products/mariadb-enterprise"], "ignorable_copyrights": ["copyright (c) 2017 MariaDB Corporation Ab"], "ignorable_holders": ["MariaDB Corporation Ab"]} \ No newline at end of file +{ + "key": "bsl-1.1", + "short_name": "Business Source License 1.1", + "name": "Business Source License 1.1", + "category": "Source-available", + "owner": "MariaDB", + "homepage_url": "https://mariadb.com/bsl11/", + "spdx_license_key": "BUSL-1.1", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsl-1.1" + ], + "faq_url": "https://mariadb.com/bsl-faq-mariadb/", + "other_urls": [ + "https://mariadb.com/bsl-faq-adopting/", + "https://mariadb.com/products/mariadb-enterprise" + ], + "ignorable_copyrights": [ + "copyright (c) 2017 MariaDB Corporation Ab" + ], + "ignorable_holders": [ + "MariaDB Corporation Ab" + ] +} \ No newline at end of file diff --git a/docs/bsla-no-advert.LICENSE b/docs/bsla-no-advert.LICENSE index 20cb2fe61a..7cf95488d2 100644 --- a/docs/bsla-no-advert.LICENSE +++ b/docs/bsla-no-advert.LICENSE @@ -1,3 +1,19 @@ +--- +key: bsla-no-advert +short_name: BSLA no advertizing +name: Berkeley Software License Agreement with no advertizing +category: Permissive +owner: Regents of the University of California +notes: this is a variant of the license introuced by changes in Cygwin to remove the advertizing + clause since it has been "rescinded" by the UC regents for their BSD-licensed code at large. + See https://github.com/mirror/newlib-cygwin/commit/9042d0ce65533a26fc3264206db5828d5692332c# +spdx_license_key: LicenseRef-scancode-bsla-no-advert +other_urls: + - https://github.com/mirror/newlib-cygwin/commit/9042d0ce65533a26fc3264206db5828d5692332c# +ignorable_authors: + - the University of California, Berkeley +--- + Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this paragraph are duplicated in all such forms and that any documentation, @@ -8,4 +24,4 @@ University may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/docs/bsla-no-advert.html b/docs/bsla-no-advert.html index ead7b7c514..d038d70519 100644 --- a/docs/bsla-no-advert.html +++ b/docs/bsla-no-advert.html @@ -143,8 +143,7 @@ from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
@@ -156,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsla-no-advert.json b/docs/bsla-no-advert.json index 893c4c4220..c51a850088 100644 --- a/docs/bsla-no-advert.json +++ b/docs/bsla-no-advert.json @@ -1 +1,15 @@ -{"key": "bsla-no-advert", "short_name": "BSLA no advertizing", "name": "Berkeley Software License Agreement with no advertizing", "category": "Permissive", "owner": "Regents of the University of California", "notes": "this is a variant of the license introuced by changes in Cygwin to remove the advertizing clause since it has been \"rescinded\" by the UC regents for their BSD-licensed code at large. See https://github.com/mirror/newlib-cygwin/commit/9042d0ce65533a26fc3264206db5828d5692332c#", "spdx_license_key": "LicenseRef-scancode-bsla-no-advert", "other_urls": ["https://github.com/mirror/newlib-cygwin/commit/9042d0ce65533a26fc3264206db5828d5692332c#"], "ignorable_authors": ["the University of California, Berkeley"]} \ No newline at end of file +{ + "key": "bsla-no-advert", + "short_name": "BSLA no advertizing", + "name": "Berkeley Software License Agreement with no advertizing", + "category": "Permissive", + "owner": "Regents of the University of California", + "notes": "this is a variant of the license introuced by changes in Cygwin to remove the advertizing clause since it has been \"rescinded\" by the UC regents for their BSD-licensed code at large. See https://github.com/mirror/newlib-cygwin/commit/9042d0ce65533a26fc3264206db5828d5692332c#", + "spdx_license_key": "LicenseRef-scancode-bsla-no-advert", + "other_urls": [ + "https://github.com/mirror/newlib-cygwin/commit/9042d0ce65533a26fc3264206db5828d5692332c#" + ], + "ignorable_authors": [ + "the University of California, Berkeley" + ] +} \ No newline at end of file diff --git a/docs/bsla.LICENSE b/docs/bsla.LICENSE index c6637368f8..7d232013bc 100644 --- a/docs/bsla.LICENSE +++ b/docs/bsla.LICENSE @@ -1,3 +1,14 @@ +--- +key: bsla +short_name: BSLA +name: Berkeley Software License Agreement +category: Permissive +owner: Regents of the University of California +spdx_license_key: LicenseRef-scancode-bsla +ignorable_authors: + - the University of California, Berkeley +--- + Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this paragraph are duplicated in all such forms and that any documentation, @@ -8,4 +19,4 @@ University may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/docs/bsla.html b/docs/bsla.html index 3cc45648e5..ea102bf53b 100644 --- a/docs/bsla.html +++ b/docs/bsla.html @@ -127,8 +127,7 @@ from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
@@ -140,7 +139,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bsla.json b/docs/bsla.json index e2be2499eb..de2eefd259 100644 --- a/docs/bsla.json +++ b/docs/bsla.json @@ -1 +1,11 @@ -{"key": "bsla", "short_name": "BSLA", "name": "Berkeley Software License Agreement", "category": "Permissive", "owner": "Regents of the University of California", "spdx_license_key": "LicenseRef-scancode-bsla", "ignorable_authors": ["the University of California, Berkeley"]} \ No newline at end of file +{ + "key": "bsla", + "short_name": "BSLA", + "name": "Berkeley Software License Agreement", + "category": "Permissive", + "owner": "Regents of the University of California", + "spdx_license_key": "LicenseRef-scancode-bsla", + "ignorable_authors": [ + "the University of California, Berkeley" + ] +} \ No newline at end of file diff --git a/docs/bugsense-sdk.LICENSE b/docs/bugsense-sdk.LICENSE index 2d9b4310d3..aaf4e9c983 100644 --- a/docs/bugsense-sdk.LICENSE +++ b/docs/bugsense-sdk.LICENSE @@ -1,3 +1,21 @@ +--- +key: bugsense-sdk +short_name: BugSense SDK License +name: BugSense SDK License +category: Proprietary Free +owner: BugSense +homepage_url: https://www.bugsense.com/sdklicense +spdx_license_key: LicenseRef-scancode-bugsense-sdk +text_urls: + - https://www.bugsense.com/sdklicense +other_urls: + - https://www.bugsense.com/termsofuse +ignorable_urls: + - http://www.bugsense.com/ +ignorable_emails: + - mobilesupport@splunk.com +--- + SDK LICENSE AGREEMENT Information Last Updated: September 25, 2013 diff --git a/docs/bugsense-sdk.html b/docs/bugsense-sdk.html index f776012c40..0db6d91151 100644 --- a/docs/bugsense-sdk.html +++ b/docs/bugsense-sdk.html @@ -257,7 +257,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bugsense-sdk.json b/docs/bugsense-sdk.json index 9dff69ffd0..b2ef57245b 100644 --- a/docs/bugsense-sdk.json +++ b/docs/bugsense-sdk.json @@ -1 +1,21 @@ -{"key": "bugsense-sdk", "short_name": "BugSense SDK License", "name": "BugSense SDK License", "category": "Proprietary Free", "owner": "BugSense", "homepage_url": "https://www.bugsense.com/sdklicense", "spdx_license_key": "LicenseRef-scancode-bugsense-sdk", "text_urls": ["https://www.bugsense.com/sdklicense"], "other_urls": ["https://www.bugsense.com/termsofuse"], "ignorable_urls": ["http://www.bugsense.com/"], "ignorable_emails": ["mobilesupport@splunk.com"]} \ No newline at end of file +{ + "key": "bugsense-sdk", + "short_name": "BugSense SDK License", + "name": "BugSense SDK License", + "category": "Proprietary Free", + "owner": "BugSense", + "homepage_url": "https://www.bugsense.com/sdklicense", + "spdx_license_key": "LicenseRef-scancode-bugsense-sdk", + "text_urls": [ + "https://www.bugsense.com/sdklicense" + ], + "other_urls": [ + "https://www.bugsense.com/termsofuse" + ], + "ignorable_urls": [ + "http://www.bugsense.com/" + ], + "ignorable_emails": [ + "mobilesupport@splunk.com" + ] +} \ No newline at end of file diff --git a/docs/bytemark.LICENSE b/docs/bytemark.LICENSE index 011402e5b5..6140cf1119 100644 --- a/docs/bytemark.LICENSE +++ b/docs/bytemark.LICENSE @@ -1,3 +1,12 @@ +--- +key: bytemark +short_name: BYTEmark License +name: BYTEmark License +category: Permissive +owner: BYTE Magazine +spdx_license_key: LicenseRef-scancode-bytemark +--- + BYTEmark (tm) BYTE's Native Mode Benchmarks Rick Grehan, BYTE Magazine diff --git a/docs/bytemark.html b/docs/bytemark.html index 85bc9e12c9..5bc0ebf678 100644 --- a/docs/bytemark.html +++ b/docs/bytemark.html @@ -144,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bytemark.json b/docs/bytemark.json index d273f24d97..868d22cb54 100644 --- a/docs/bytemark.json +++ b/docs/bytemark.json @@ -1 +1,8 @@ -{"key": "bytemark", "short_name": "BYTEmark License", "name": "BYTEmark License", "category": "Permissive", "owner": "BYTE Magazine", "spdx_license_key": "LicenseRef-scancode-bytemark"} \ No newline at end of file +{ + "key": "bytemark", + "short_name": "BYTEmark License", + "name": "BYTEmark License", + "category": "Permissive", + "owner": "BYTE Magazine", + "spdx_license_key": "LicenseRef-scancode-bytemark" +} \ No newline at end of file diff --git a/docs/bzip2-libbzip-1.0.5.LICENSE b/docs/bzip2-libbzip-1.0.5.LICENSE index 0d86ff4734..07975226d4 100644 --- a/docs/bzip2-libbzip-1.0.5.LICENSE +++ b/docs/bzip2-libbzip-1.0.5.LICENSE @@ -1,3 +1,17 @@ +--- +key: bzip2-libbzip-1.0.5 +is_deprecated: yes +short_name: bzip2 License +name: bzip2 License +category: Permissive +owner: bzip +homepage_url: http://bzip.org/1.0.5/bzip2-manual-1.0.5.html +notes: formerly under spdx_license_key bzip2-1.0.5. See bzip2-libbzip-2010 for replacement +other_urls: + - http://www.bzip.org/ + - https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.5 +--- + The bzip2 license Terms This program, "bzip2" and associated library "libbzip2", are diff --git a/docs/bzip2-libbzip-1.0.5.html b/docs/bzip2-libbzip-1.0.5.html index bb9cd02063..e36601c89c 100644 --- a/docs/bzip2-libbzip-1.0.5.html +++ b/docs/bzip2-libbzip-1.0.5.html @@ -180,7 +180,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bzip2-libbzip-1.0.5.json b/docs/bzip2-libbzip-1.0.5.json index 39a03ea263..2ab1e89844 100644 --- a/docs/bzip2-libbzip-1.0.5.json +++ b/docs/bzip2-libbzip-1.0.5.json @@ -1 +1,14 @@ -{"key": "bzip2-libbzip-1.0.5", "is_deprecated": true, "short_name": "bzip2 License", "name": "bzip2 License", "category": "Permissive", "owner": "bzip", "homepage_url": "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html", "notes": "formerly under spdx_license_key bzip2-1.0.5. See bzip2-libbzip-2010 for replacement", "other_urls": ["http://www.bzip.org/", "https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.5"]} \ No newline at end of file +{ + "key": "bzip2-libbzip-1.0.5", + "is_deprecated": true, + "short_name": "bzip2 License", + "name": "bzip2 License", + "category": "Permissive", + "owner": "bzip", + "homepage_url": "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html", + "notes": "formerly under spdx_license_key bzip2-1.0.5. See bzip2-libbzip-2010 for replacement", + "other_urls": [ + "http://www.bzip.org/", + "https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.5" + ] +} \ No newline at end of file diff --git a/docs/bzip2-libbzip-2010.LICENSE b/docs/bzip2-libbzip-2010.LICENSE index 4a5a7457cb..a10bd951a8 100644 --- a/docs/bzip2-libbzip-2010.LICENSE +++ b/docs/bzip2-libbzip-2010.LICENSE @@ -1,3 +1,21 @@ +--- +key: bzip2-libbzip-2010 +short_name: bzip2 License 2010 +name: bzip2 License 2010 +category: Permissive +owner: bzip +homepage_url: https://github.com/asimonov-im/bzip2/blob/master/LICENSE +notes: until bzip2 1.0.6 there is only one license and not two as listed in SPDX. Therefore + we only track one such license. +spdx_license_key: bzip2-1.0.6 +other_spdx_license_keys: + - bzip2-1.0.5 +other_urls: + - http://bzip.org/1.0.5/bzip2-manual-1.0.5.html + - http://www.bzip.org/ + - https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.6 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -27,4 +45,4 @@ 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. +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/bzip2-libbzip-2010.html b/docs/bzip2-libbzip-2010.html index bb1bc2bf58..5741e953f2 100644 --- a/docs/bzip2-libbzip-2010.html +++ b/docs/bzip2-libbzip-2010.html @@ -169,8 +169,7 @@ 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. - +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -182,7 +181,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/bzip2-libbzip-2010.json b/docs/bzip2-libbzip-2010.json index ffd96c758e..e1617a9c97 100644 --- a/docs/bzip2-libbzip-2010.json +++ b/docs/bzip2-libbzip-2010.json @@ -1 +1,18 @@ -{"key": "bzip2-libbzip-2010", "short_name": "bzip2 License 2010", "name": "bzip2 License 2010", "category": "Permissive", "owner": "bzip", "homepage_url": "https://github.com/asimonov-im/bzip2/blob/master/LICENSE", "notes": "until bzip2 1.0.6 there is only one license and not two as listed in SPDX. Therefore we only track one such license.", "spdx_license_key": "bzip2-1.0.6", "other_spdx_license_keys": ["bzip2-1.0.5"], "other_urls": ["http://bzip.org/1.0.5/bzip2-manual-1.0.5.html", "http://www.bzip.org/", "https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.6"]} \ No newline at end of file +{ + "key": "bzip2-libbzip-2010", + "short_name": "bzip2 License 2010", + "name": "bzip2 License 2010", + "category": "Permissive", + "owner": "bzip", + "homepage_url": "https://github.com/asimonov-im/bzip2/blob/master/LICENSE", + "notes": "until bzip2 1.0.6 there is only one license and not two as listed in SPDX. Therefore we only track one such license.", + "spdx_license_key": "bzip2-1.0.6", + "other_spdx_license_keys": [ + "bzip2-1.0.5" + ], + "other_urls": [ + "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html", + "http://www.bzip.org/", + "https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.6" + ] +} \ No newline at end of file diff --git a/docs/c-fsl-1.1.LICENSE b/docs/c-fsl-1.1.LICENSE index f0f8faa302..c2846922a2 100644 --- a/docs/c-fsl-1.1.LICENSE +++ b/docs/c-fsl-1.1.LICENSE @@ -1,3 +1,19 @@ +--- +key: c-fsl-1.1 +short_name: C-FSL 1.1 +name: Convertible Free Software License 1.1 +category: Copyleft Limited +owner: Elmar Stellnberger +homepage_url: https://www.elstel.org/license/C-FSL-v1.1.txt +spdx_license_key: LicenseRef-scancode-c-fsl-1.1 +text_urls: + - https://www.elstel.org/license/C-FSL-v1.1.txt +ignorable_copyrights: + - copyright 2016, by Elmar Stellnberger +ignorable_holders: + - Elmar Stellnberger +--- + CONVERTIBLE FREE SOFTWARE LICENSE Version 1.1, 2016-08-11 copyright 2016, by Elmar Stellnberger @@ -22,6 +38,4 @@ This license applies to any software containing a notice by the copyright holder 9. A work under C-FSL which has another component or plug-in as well as a work under C-FSL which is used itself as a component, plug-in, add-on of another product, any product under C-FSL which is combined or which links against another work requires that the other work will either be put under an open source license as approved by opensource.org or it needs to be put under C-FSL as well. Usage of proprietary libraries and kernel modules pose an exception to this rule. There must be a functionally equivalent open source library for any proprietary library so that a work under C-FSL can run and execute even without any proprietary library. No such restriction applies to kernel modules. The term 'kernel' refers to the core of an operating system. Libraries are separate components which link against the given work or other components. The term 'linking' refers to the relocation of references or addresses when the library is combined with another component in order to make the combined aggregate executable or runnable. Such references are bound to symbols which are part of the common interface between the library and the component which the library is combined with at runtime. Libraries which provide operating system services use a well defined binary interface but do not 'link' against the kernel. -10. This license is either governed by the Laws of Austria or by the laws of the country where the first mentioned original author lives or is a resident. Disputes shall be settled by the nearest proper court given the home town or location of the first original author unless there is a common consensus for another place of court by all original authors. If any of the terms stated in this license were not in accordance with the law of the country that governs this license all other parts of the license shall remain valid. - - +10. This license is either governed by the Laws of Austria or by the laws of the country where the first mentioned original author lives or is a resident. Disputes shall be settled by the nearest proper court given the home town or location of the first original author unless there is a common consensus for another place of court by all original authors. If any of the terms stated in this license were not in accordance with the law of the country that governs this license all other parts of the license shall remain valid. \ No newline at end of file diff --git a/docs/c-fsl-1.1.html b/docs/c-fsl-1.1.html index 72bd15130b..c14845025d 100644 --- a/docs/c-fsl-1.1.html +++ b/docs/c-fsl-1.1.html @@ -166,10 +166,7 @@ 9. A work under C-FSL which has another component or plug-in as well as a work under C-FSL which is used itself as a component, plug-in, add-on of another product, any product under C-FSL which is combined or which links against another work requires that the other work will either be put under an open source license as approved by opensource.org or it needs to be put under C-FSL as well. Usage of proprietary libraries and kernel modules pose an exception to this rule. There must be a functionally equivalent open source library for any proprietary library so that a work under C-FSL can run and execute even without any proprietary library. No such restriction applies to kernel modules. The term 'kernel' refers to the core of an operating system. Libraries are separate components which link against the given work or other components. The term 'linking' refers to the relocation of references or addresses when the library is combined with another component in order to make the combined aggregate executable or runnable. Such references are bound to symbols which are part of the common interface between the library and the component which the library is combined with at runtime. Libraries which provide operating system services use a well defined binary interface but do not 'link' against the kernel. -10. This license is either governed by the Laws of Austria or by the laws of the country where the first mentioned original author lives or is a resident. Disputes shall be settled by the nearest proper court given the home town or location of the first original author unless there is a common consensus for another place of court by all original authors. If any of the terms stated in this license were not in accordance with the law of the country that governs this license all other parts of the license shall remain valid. - - - +10. This license is either governed by the Laws of Austria or by the laws of the country where the first mentioned original author lives or is a resident. Disputes shall be settled by the nearest proper court given the home town or location of the first original author unless there is a common consensus for another place of court by all original authors. If any of the terms stated in this license were not in accordance with the law of the country that governs this license all other parts of the license shall remain valid.
@@ -181,7 +178,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/c-fsl-1.1.json b/docs/c-fsl-1.1.json index 32daf4c317..c19ca9a495 100644 --- a/docs/c-fsl-1.1.json +++ b/docs/c-fsl-1.1.json @@ -1 +1,18 @@ -{"key": "c-fsl-1.1", "short_name": "C-FSL 1.1", "name": "Convertible Free Software License 1.1", "category": "Copyleft Limited", "owner": "Elmar Stellnberger", "homepage_url": "https://www.elstel.org/license/C-FSL-v1.1.txt", "spdx_license_key": "LicenseRef-scancode-c-fsl-1.1", "text_urls": ["https://www.elstel.org/license/C-FSL-v1.1.txt"], "ignorable_copyrights": ["copyright 2016, by Elmar Stellnberger"], "ignorable_holders": ["Elmar Stellnberger"]} \ No newline at end of file +{ + "key": "c-fsl-1.1", + "short_name": "C-FSL 1.1", + "name": "Convertible Free Software License 1.1", + "category": "Copyleft Limited", + "owner": "Elmar Stellnberger", + "homepage_url": "https://www.elstel.org/license/C-FSL-v1.1.txt", + "spdx_license_key": "LicenseRef-scancode-c-fsl-1.1", + "text_urls": [ + "https://www.elstel.org/license/C-FSL-v1.1.txt" + ], + "ignorable_copyrights": [ + "copyright 2016, by Elmar Stellnberger" + ], + "ignorable_holders": [ + "Elmar Stellnberger" + ] +} \ No newline at end of file diff --git a/docs/c-uda-1.0.LICENSE b/docs/c-uda-1.0.LICENSE index e4ba786936..1b78e4acf2 100644 --- a/docs/c-uda-1.0.LICENSE +++ b/docs/c-uda-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: c-uda-1.0 +short_name: Computational Use of Data Agreement v1.0 +name: Computational Use of Data Agreement v1.0 +category: Free Restricted +owner: Microsoft +spdx_license_key: C-UDA-1.0 +other_urls: + - https://github.com/microsoft/Computational-Use-of-Data-Agreement/blob/master/C-UDA-1.0.md + - https://cdla.dev/computational-use-of-data-agreement-v1-0/ +--- + Computational Use of Data Agreement v1.0 This is the Computational Use of Data Agreement, Version 1.0 (the “C-UDA”). Capitalized terms are defined in Section 5. Data Provider and you agree as follows: diff --git a/docs/c-uda-1.0.html b/docs/c-uda-1.0.html index 1c0fbf5860..b88797d57b 100644 --- a/docs/c-uda-1.0.html +++ b/docs/c-uda-1.0.html @@ -175,7 +175,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/c-uda-1.0.json b/docs/c-uda-1.0.json index 028fca34c7..f7d3be0965 100644 --- a/docs/c-uda-1.0.json +++ b/docs/c-uda-1.0.json @@ -1 +1,12 @@ -{"key": "c-uda-1.0", "short_name": "Computational Use of Data Agreement v1.0", "name": "Computational Use of Data Agreement v1.0", "category": "Free Restricted", "owner": "Microsoft", "spdx_license_key": "C-UDA-1.0", "other_urls": ["https://github.com/microsoft/Computational-Use-of-Data-Agreement/blob/master/C-UDA-1.0.md", "https://cdla.dev/computational-use-of-data-agreement-v1-0/"]} \ No newline at end of file +{ + "key": "c-uda-1.0", + "short_name": "Computational Use of Data Agreement v1.0", + "name": "Computational Use of Data Agreement v1.0", + "category": "Free Restricted", + "owner": "Microsoft", + "spdx_license_key": "C-UDA-1.0", + "other_urls": [ + "https://github.com/microsoft/Computational-Use-of-Data-Agreement/blob/master/C-UDA-1.0.md", + "https://cdla.dev/computational-use-of-data-agreement-v1-0/" + ] +} \ No newline at end of file diff --git a/docs/ca-tosl-1.1.LICENSE b/docs/ca-tosl-1.1.LICENSE index 5fe60c2fe9..bb1be7b105 100644 --- a/docs/ca-tosl-1.1.LICENSE +++ b/docs/ca-tosl-1.1.LICENSE @@ -1,3 +1,25 @@ +--- +key: ca-tosl-1.1 +short_name: CA Trusted Open Source License 1.1 +name: Computer Associates Trusted Open Source License 1.1 +category: Copyleft Limited +owner: Computer Associates +homepage_url: http://www.opensource.org/licenses/ca-tosl1.1.php +notes: Per SPDX.org, this license is OSI certifified. +spdx_license_key: CATOSL-1.1 +osi_license_key: CATOSL-1.1 +text_urls: + - http://www.opensource.org/licenses/ca-tosl1.1.php +osi_url: http://opensource.org/licenses/ca-tosl1.1.php +other_urls: + - http://opensource.org/licenses/CATOSL-1.1 + - https://opensource.org/licenses/CATOSL-1.1 +ignorable_urls: + - http://www.ca.com/catrdmrk.htm +ignorable_emails: + - opensource@ca.com +--- + Computer Associates Trusted Open Source License Version 1.1 diff --git a/docs/ca-tosl-1.1.html b/docs/ca-tosl-1.1.html index a63b390f1a..4afe704600 100644 --- a/docs/ca-tosl-1.1.html +++ b/docs/ca-tosl-1.1.html @@ -536,7 +536,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ca-tosl-1.1.json b/docs/ca-tosl-1.1.json index edcbb2ef8a..ba0f3b6400 100644 --- a/docs/ca-tosl-1.1.json +++ b/docs/ca-tosl-1.1.json @@ -1 +1,25 @@ -{"key": "ca-tosl-1.1", "short_name": "CA Trusted Open Source License 1.1", "name": "Computer Associates Trusted Open Source License 1.1", "category": "Copyleft Limited", "owner": "Computer Associates", "homepage_url": "http://www.opensource.org/licenses/ca-tosl1.1.php", "notes": "Per SPDX.org, this license is OSI certifified.", "spdx_license_key": "CATOSL-1.1", "osi_license_key": "CATOSL-1.1", "text_urls": ["http://www.opensource.org/licenses/ca-tosl1.1.php"], "osi_url": "http://opensource.org/licenses/ca-tosl1.1.php", "other_urls": ["http://opensource.org/licenses/CATOSL-1.1", "https://opensource.org/licenses/CATOSL-1.1"], "ignorable_urls": ["http://www.ca.com/catrdmrk.htm"], "ignorable_emails": ["opensource@ca.com"]} \ No newline at end of file +{ + "key": "ca-tosl-1.1", + "short_name": "CA Trusted Open Source License 1.1", + "name": "Computer Associates Trusted Open Source License 1.1", + "category": "Copyleft Limited", + "owner": "Computer Associates", + "homepage_url": "http://www.opensource.org/licenses/ca-tosl1.1.php", + "notes": "Per SPDX.org, this license is OSI certifified.", + "spdx_license_key": "CATOSL-1.1", + "osi_license_key": "CATOSL-1.1", + "text_urls": [ + "http://www.opensource.org/licenses/ca-tosl1.1.php" + ], + "osi_url": "http://opensource.org/licenses/ca-tosl1.1.php", + "other_urls": [ + "http://opensource.org/licenses/CATOSL-1.1", + "https://opensource.org/licenses/CATOSL-1.1" + ], + "ignorable_urls": [ + "http://www.ca.com/catrdmrk.htm" + ], + "ignorable_emails": [ + "opensource@ca.com" + ] +} \ No newline at end of file diff --git a/docs/cadence-linux-firmware.LICENSE b/docs/cadence-linux-firmware.LICENSE index e43d567ae9..4b237e1593 100644 --- a/docs/cadence-linux-firmware.LICENSE +++ b/docs/cadence-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: cadence-linux-firmware +short_name: Cadence Linux Firmware License +name: Cadence Linux Firmware License +category: Proprietary Free +owner: Cadence +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cadence +spdx_license_key: LicenseRef-scancode-cadence-linux-firmware +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/docs/cadence-linux-firmware.html b/docs/cadence-linux-firmware.html index a2cc1bfa46..7c1318689c 100644 --- a/docs/cadence-linux-firmware.html +++ b/docs/cadence-linux-firmware.html @@ -153,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cadence-linux-firmware.json b/docs/cadence-linux-firmware.json index 38e02536dd..68dc00f5e1 100644 --- a/docs/cadence-linux-firmware.json +++ b/docs/cadence-linux-firmware.json @@ -1 +1,9 @@ -{"key": "cadence-linux-firmware", "short_name": "Cadence Linux Firmware License", "name": "Cadence Linux Firmware License", "category": "Proprietary Free", "owner": "Cadence", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cadence", "spdx_license_key": "LicenseRef-scancode-cadence-linux-firmware"} \ No newline at end of file +{ + "key": "cadence-linux-firmware", + "short_name": "Cadence Linux Firmware License", + "name": "Cadence Linux Firmware License", + "category": "Proprietary Free", + "owner": "Cadence", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cadence", + "spdx_license_key": "LicenseRef-scancode-cadence-linux-firmware" +} \ No newline at end of file diff --git a/docs/cal-1.0-combined-work-exception.LICENSE b/docs/cal-1.0-combined-work-exception.LICENSE index 50705bfb32..cd2b326515 100644 --- a/docs/cal-1.0-combined-work-exception.LICENSE +++ b/docs/cal-1.0-combined-work-exception.LICENSE @@ -1,3 +1,19 @@ +--- +key: cal-1.0-combined-work-exception +short_name: CAL-1.0-Combined-Work-Exception +name: Cryptographic Autonomy License 1.0 (Combined Work Exception) +category: Copyleft Limited +owner: Holochain +homepage_url: https://opensource.org/licenses/CAL-1.0 +spdx_license_key: CAL-1.0-Combined-Work-Exception +other_urls: + - http://cryptographicautonomylicense.com/license-text.html +standard_notice: | + SPDX-License-Identifier: CAL-1.0-Combined-Work-Exception + Licensed under the Cryptographic Autonomy License version 1.0, with + Combined Work Exception +--- + # The Cryptographic Autonomy License, v. 1.0, with Combined Work Exception *This Cryptographic Autonomy License (the "License") applies to any @@ -351,4 +367,4 @@ The text of this license is released under the Creative Commons Attribution-ShareAlike 4.0 International License, with the caveat that any modifications of this license may not use the name "Cryptographic Autonomy License" or any name confusingly similar thereto to describe -any derived work of this License. +any derived work of this License. \ No newline at end of file diff --git a/docs/cal-1.0-combined-work-exception.html b/docs/cal-1.0-combined-work-exception.html index b4cf39f014..31d620deae 100644 --- a/docs/cal-1.0-combined-work-exception.html +++ b/docs/cal-1.0-combined-work-exception.html @@ -487,8 +487,7 @@ Attribution-ShareAlike 4.0 International License, with the caveat that any modifications of this license may not use the name "Cryptographic Autonomy License" or any name confusingly similar thereto to describe -any derived work of this License. - +any derived work of this License.
@@ -500,7 +499,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cal-1.0-combined-work-exception.json b/docs/cal-1.0-combined-work-exception.json index 1de1789ba8..eb3fbfa297 100644 --- a/docs/cal-1.0-combined-work-exception.json +++ b/docs/cal-1.0-combined-work-exception.json @@ -1 +1,13 @@ -{"key": "cal-1.0-combined-work-exception", "short_name": "CAL-1.0-Combined-Work-Exception", "name": "Cryptographic Autonomy License 1.0 (Combined Work Exception)", "category": "Copyleft Limited", "owner": "Holochain", "homepage_url": "https://opensource.org/licenses/CAL-1.0", "spdx_license_key": "CAL-1.0-Combined-Work-Exception", "other_urls": ["http://cryptographicautonomylicense.com/license-text.html"], "standard_notice": "SPDX-License-Identifier: CAL-1.0-Combined-Work-Exception\nLicensed under the Cryptographic Autonomy License version 1.0, with\nCombined Work Exception\n"} \ No newline at end of file +{ + "key": "cal-1.0-combined-work-exception", + "short_name": "CAL-1.0-Combined-Work-Exception", + "name": "Cryptographic Autonomy License 1.0 (Combined Work Exception)", + "category": "Copyleft Limited", + "owner": "Holochain", + "homepage_url": "https://opensource.org/licenses/CAL-1.0", + "spdx_license_key": "CAL-1.0-Combined-Work-Exception", + "other_urls": [ + "http://cryptographicautonomylicense.com/license-text.html" + ], + "standard_notice": "SPDX-License-Identifier: CAL-1.0-Combined-Work-Exception\nLicensed under the Cryptographic Autonomy License version 1.0, with\nCombined Work Exception\n" +} \ No newline at end of file diff --git a/docs/cal-1.0.LICENSE b/docs/cal-1.0.LICENSE index 4cebc6d54d..35d5280f41 100644 --- a/docs/cal-1.0.LICENSE +++ b/docs/cal-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: cal-1.0 +short_name: CAL-1.0 +name: Cryptographic Autonomy License 1.0 +category: Copyleft +owner: Holochain +homepage_url: https://opensource.org/licenses/CAL-1.0 +spdx_license_key: CAL-1.0 +other_urls: + - http://cryptographicautonomylicense.com/license-text.html +standard_notice: | + This Cryptographic Autonomy License (the “License”) applies to any Work + whose owner has marked it with any of the following notices, or a similar + demonstration of intent: + SPDX-License-Identifier: CAL-1.0 + Licensed under the Cryptographic Autonomy License version 1.0 +--- + # The Cryptographic Autonomy License, v. 1.0 *This Cryptographic Autonomy License (the "License") applies to any @@ -351,4 +369,4 @@ The text of this license is released under the Creative Commons Attribution-ShareAlike 4.0 International License, with the caveat that any modifications of this license may not use the name "Cryptographic Autonomy License" or any name confusingly similar thereto to describe -any derived work of this License. +any derived work of this License. \ No newline at end of file diff --git a/docs/cal-1.0.html b/docs/cal-1.0.html index 812a3282bc..78f50f5c6f 100644 --- a/docs/cal-1.0.html +++ b/docs/cal-1.0.html @@ -489,8 +489,7 @@ Attribution-ShareAlike 4.0 International License, with the caveat that any modifications of this license may not use the name "Cryptographic Autonomy License" or any name confusingly similar thereto to describe -any derived work of this License. - +any derived work of this License.
@@ -502,7 +501,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cal-1.0.json b/docs/cal-1.0.json index d5c18978f2..8329165aad 100644 --- a/docs/cal-1.0.json +++ b/docs/cal-1.0.json @@ -1 +1,13 @@ -{"key": "cal-1.0", "short_name": "CAL-1.0", "name": "Cryptographic Autonomy License 1.0", "category": "Copyleft", "owner": "Holochain", "homepage_url": "https://opensource.org/licenses/CAL-1.0", "spdx_license_key": "CAL-1.0", "other_urls": ["http://cryptographicautonomylicense.com/license-text.html"], "standard_notice": "This Cryptographic Autonomy License (the \u201cLicense\u201d) applies to any Work\nwhose owner has marked it with any of the following notices, or a similar\ndemonstration of intent:\nSPDX-License-Identifier: CAL-1.0\nLicensed under the Cryptographic Autonomy License version 1.0\n"} \ No newline at end of file +{ + "key": "cal-1.0", + "short_name": "CAL-1.0", + "name": "Cryptographic Autonomy License 1.0", + "category": "Copyleft", + "owner": "Holochain", + "homepage_url": "https://opensource.org/licenses/CAL-1.0", + "spdx_license_key": "CAL-1.0", + "other_urls": [ + "http://cryptographicautonomylicense.com/license-text.html" + ], + "standard_notice": "This Cryptographic Autonomy License (the \u201cLicense\u201d) applies to any Work\nwhose owner has marked it with any of the following notices, or a similar\ndemonstration of intent:\nSPDX-License-Identifier: CAL-1.0\nLicensed under the Cryptographic Autonomy License version 1.0\n" +} \ No newline at end of file diff --git a/docs/caldera.LICENSE b/docs/caldera.LICENSE index 6099a7f916..8c6fa6e803 100644 --- a/docs/caldera.LICENSE +++ b/docs/caldera.LICENSE @@ -1,3 +1,17 @@ +--- +key: caldera +short_name: Caldera License +name: Caldera License +category: Permissive +owner: Caldera +homepage_url: http://www.lemis.com/grog/UNIX/ancient-source-all.pdf +spdx_license_key: Caldera +ignorable_copyrights: + - Copyright (c) Caldera International Inc. +ignorable_holders: + - Caldera International Inc. +--- + Caldera International, Inc. hereby grants a fee free license that includes the rights use, modify and distribute this named source code, including creating derived binary products created from the source code. The source code for which diff --git a/docs/caldera.html b/docs/caldera.html index 546f255cf0..acd9533c0a 100644 --- a/docs/caldera.html +++ b/docs/caldera.html @@ -192,7 +192,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/caldera.json b/docs/caldera.json index 7bf1bf0a7f..d0030fd9bc 100644 --- a/docs/caldera.json +++ b/docs/caldera.json @@ -1 +1,15 @@ -{"key": "caldera", "short_name": "Caldera License", "name": "Caldera License", "category": "Permissive", "owner": "Caldera", "homepage_url": "http://www.lemis.com/grog/UNIX/ancient-source-all.pdf", "spdx_license_key": "Caldera", "ignorable_copyrights": ["Copyright (c) Caldera International Inc."], "ignorable_holders": ["Caldera International Inc."]} \ No newline at end of file +{ + "key": "caldera", + "short_name": "Caldera License", + "name": "Caldera License", + "category": "Permissive", + "owner": "Caldera", + "homepage_url": "http://www.lemis.com/grog/UNIX/ancient-source-all.pdf", + "spdx_license_key": "Caldera", + "ignorable_copyrights": [ + "Copyright (c) Caldera International Inc." + ], + "ignorable_holders": [ + "Caldera International Inc." + ] +} \ No newline at end of file diff --git a/docs/can-ogl-2.0-en.LICENSE b/docs/can-ogl-2.0-en.LICENSE index d3abeed760..d2b14023dd 100644 --- a/docs/can-ogl-2.0-en.LICENSE +++ b/docs/can-ogl-2.0-en.LICENSE @@ -1,3 +1,14 @@ +--- +key: can-ogl-2.0-en +short_name: OGL Canada 2.0 +name: Open Government Licence Canada 2.0 +category: Permissive +owner: Canada Government +homepage_url: https://open.canada.ca/en/open-government-licence-canada +spdx_license_key: OGL-Canada-2.0 +other_urls: + - https://open.canada.ca/en/open-government-licence-canada +--- Open Government Licence - Canada diff --git a/docs/can-ogl-2.0-en.html b/docs/can-ogl-2.0-en.html index 529365a094..99a9b08e73 100644 --- a/docs/can-ogl-2.0-en.html +++ b/docs/can-ogl-2.0-en.html @@ -124,8 +124,7 @@
license_text
-

-Open Government Licence - Canada
+    
Open Government Licence - Canada
 
 You are encouraged to use the Information that is available under this licence with only a few conditions.
 Using Information under this licence
@@ -194,7 +193,8 @@
       AboutCode
     

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/can-ogl-2.0-en.json b/docs/can-ogl-2.0-en.json index 7c1c1d3eb9..ab702ee364 100644 --- a/docs/can-ogl-2.0-en.json +++ b/docs/can-ogl-2.0-en.json @@ -1 +1,12 @@ -{"key": "can-ogl-2.0-en", "short_name": "OGL Canada 2.0", "name": "Open Government Licence Canada 2.0", "category": "Permissive", "owner": "Canada Government", "homepage_url": "https://open.canada.ca/en/open-government-licence-canada", "spdx_license_key": "OGL-Canada-2.0", "other_urls": ["https://open.canada.ca/en/open-government-licence-canada"]} \ No newline at end of file +{ + "key": "can-ogl-2.0-en", + "short_name": "OGL Canada 2.0", + "name": "Open Government Licence Canada 2.0", + "category": "Permissive", + "owner": "Canada Government", + "homepage_url": "https://open.canada.ca/en/open-government-licence-canada", + "spdx_license_key": "OGL-Canada-2.0", + "other_urls": [ + "https://open.canada.ca/en/open-government-licence-canada" + ] +} \ No newline at end of file diff --git a/docs/can-ogl-alberta-2.1.LICENSE b/docs/can-ogl-alberta-2.1.LICENSE index 14dee11ab2..4de692d48c 100644 --- a/docs/can-ogl-alberta-2.1.LICENSE +++ b/docs/can-ogl-alberta-2.1.LICENSE @@ -1,3 +1,12 @@ +--- +key: can-ogl-alberta-2.1 +short_name: OGL Alberta 2.1 +name: Open Government Licence Alberta 2.1 +category: Permissive +owner: Alberta Government +homepage_url: https://open.alberta.ca/licence +spdx_license_key: LicenseRef-scancode-can-ogl-alberta-2.1 +--- Open Government Licence - Alberta @@ -72,5 +81,4 @@ means the natural or legal person, or body of persons corporate or incorporate, Versioning - This is version 2.1 of the Open Government Licence – Alberta. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information. - + This is version 2.1 of the Open Government Licence – Alberta. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information. \ No newline at end of file diff --git a/docs/can-ogl-alberta-2.1.html b/docs/can-ogl-alberta-2.1.html index 01e33df3bb..e75be6fb02 100644 --- a/docs/can-ogl-alberta-2.1.html +++ b/docs/can-ogl-alberta-2.1.html @@ -115,8 +115,7 @@
license_text
-

-Open Government Licence - Alberta
+    
Open Government Licence - Alberta
 
 You are encouraged to use the Information that is available under this licence with only a few conditions.
 
@@ -189,9 +188,7 @@
 
 Versioning
 
-    This is version 2.1 of the Open Government Licence – Alberta. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information.
-
-
+ This is version 2.1 of the Open Government Licence – Alberta. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information.
@@ -203,7 +200,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/can-ogl-alberta-2.1.json b/docs/can-ogl-alberta-2.1.json index 09b2e64022..ee9f804afd 100644 --- a/docs/can-ogl-alberta-2.1.json +++ b/docs/can-ogl-alberta-2.1.json @@ -1 +1,9 @@ -{"key": "can-ogl-alberta-2.1", "short_name": "OGL Alberta 2.1", "name": "Open Government Licence Alberta 2.1", "category": "Permissive", "owner": "Alberta Government", "homepage_url": "https://open.alberta.ca/licence", "spdx_license_key": "LicenseRef-scancode-can-ogl-alberta-2.1"} \ No newline at end of file +{ + "key": "can-ogl-alberta-2.1", + "short_name": "OGL Alberta 2.1", + "name": "Open Government Licence Alberta 2.1", + "category": "Permissive", + "owner": "Alberta Government", + "homepage_url": "https://open.alberta.ca/licence", + "spdx_license_key": "LicenseRef-scancode-can-ogl-alberta-2.1" +} \ No newline at end of file diff --git a/docs/can-ogl-british-columbia-2.0.LICENSE b/docs/can-ogl-british-columbia-2.0.LICENSE index 36904137df..da9a85466f 100644 --- a/docs/can-ogl-british-columbia-2.0.LICENSE +++ b/docs/can-ogl-british-columbia-2.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: can-ogl-british-columbia-2.0 +short_name: OGL British Columbia 2.0 +name: Open Government Licence British Columbia 2.0 +category: Permissive +owner: Government of British Columbia +homepage_url: https://www2.gov.bc.ca/gov/content/data/open-data/open-government-license-bc +spdx_license_key: LicenseRef-scancode-can-ogl-british-columbia-2.0 +--- + Open Government Licence - British Columbia Note: as per B.C. Government Copyright, the following licence only applies to records in the B.C. Data Catalogue that specify it. @@ -71,4 +81,4 @@ means the natural or legal person, or body of persons corporate or incorporate, Versioning - This is version 2.0 of the Open Government Licence for Government of British Columbia Information. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the Information. + This is version 2.0 of the Open Government Licence for Government of British Columbia Information. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the Information. \ No newline at end of file diff --git a/docs/can-ogl-british-columbia-2.0.html b/docs/can-ogl-british-columbia-2.0.html index 717ce276b2..5c1845c02f 100644 --- a/docs/can-ogl-british-columbia-2.0.html +++ b/docs/can-ogl-british-columbia-2.0.html @@ -188,8 +188,7 @@ Versioning - This is version 2.0 of the Open Government Licence for Government of British Columbia Information. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the Information. -
+ This is version 2.0 of the Open Government Licence for Government of British Columbia Information. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the Information.
@@ -201,7 +200,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/can-ogl-british-columbia-2.0.json b/docs/can-ogl-british-columbia-2.0.json index 2209be5200..c408807f34 100644 --- a/docs/can-ogl-british-columbia-2.0.json +++ b/docs/can-ogl-british-columbia-2.0.json @@ -1 +1,9 @@ -{"key": "can-ogl-british-columbia-2.0", "short_name": "OGL British Columbia 2.0", "name": "Open Government Licence British Columbia 2.0", "category": "Permissive", "owner": "Government of British Columbia", "homepage_url": "https://www2.gov.bc.ca/gov/content/data/open-data/open-government-license-bc", "spdx_license_key": "LicenseRef-scancode-can-ogl-british-columbia-2.0"} \ No newline at end of file +{ + "key": "can-ogl-british-columbia-2.0", + "short_name": "OGL British Columbia 2.0", + "name": "Open Government Licence British Columbia 2.0", + "category": "Permissive", + "owner": "Government of British Columbia", + "homepage_url": "https://www2.gov.bc.ca/gov/content/data/open-data/open-government-license-bc", + "spdx_license_key": "LicenseRef-scancode-can-ogl-british-columbia-2.0" +} \ No newline at end of file diff --git a/docs/can-ogl-nova-scotia-1.0.LICENSE b/docs/can-ogl-nova-scotia-1.0.LICENSE index a9e2741d21..27c3eab742 100644 --- a/docs/can-ogl-nova-scotia-1.0.LICENSE +++ b/docs/can-ogl-nova-scotia-1.0.LICENSE @@ -1,3 +1,12 @@ +--- +key: can-ogl-nova-scotia-1.0 +short_name: OGL Nova Scotia 1.0 +name: Open Government Licence Nova Scotia 1.0 +category: Permissive +owner: Nova Scotia Government +homepage_url: https://open.alberta.ca/licence +spdx_license_key: LicenseRef-scancode-can-ogl-nova-scotia-1.0 +--- Open Government Licence – Nova Scotia @@ -59,4 +68,4 @@ In this licence, the terms below have the following meanings: Versioning -This is version 1.0 of the Open Government Licence – Nova Scotia. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information. +This is version 1.0 of the Open Government Licence – Nova Scotia. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information. \ No newline at end of file diff --git a/docs/can-ogl-nova-scotia-1.0.html b/docs/can-ogl-nova-scotia-1.0.html index 9b07ac0a45..5ca3afb749 100644 --- a/docs/can-ogl-nova-scotia-1.0.html +++ b/docs/can-ogl-nova-scotia-1.0.html @@ -115,8 +115,7 @@
license_text
-

-Open Government Licence – Nova Scotia
+    
Open Government Licence – Nova Scotia
 
 You are encouraged to use the Information that is available under this licence with only a few conditions.
 Using Information under this licence
@@ -176,8 +175,7 @@
 
 Versioning
 
-This is version 1.0 of the Open Government Licence – Nova Scotia. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information.
-
+This is version 1.0 of the Open Government Licence – Nova Scotia. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information.
@@ -189,7 +187,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/can-ogl-nova-scotia-1.0.json b/docs/can-ogl-nova-scotia-1.0.json index 9e33b02519..9d7d76ca95 100644 --- a/docs/can-ogl-nova-scotia-1.0.json +++ b/docs/can-ogl-nova-scotia-1.0.json @@ -1 +1,9 @@ -{"key": "can-ogl-nova-scotia-1.0", "short_name": "OGL Nova Scotia 1.0", "name": "Open Government Licence Nova Scotia 1.0", "category": "Permissive", "owner": "Nova Scotia Government", "homepage_url": "https://open.alberta.ca/licence", "spdx_license_key": "LicenseRef-scancode-can-ogl-nova-scotia-1.0"} \ No newline at end of file +{ + "key": "can-ogl-nova-scotia-1.0", + "short_name": "OGL Nova Scotia 1.0", + "name": "Open Government Licence Nova Scotia 1.0", + "category": "Permissive", + "owner": "Nova Scotia Government", + "homepage_url": "https://open.alberta.ca/licence", + "spdx_license_key": "LicenseRef-scancode-can-ogl-nova-scotia-1.0" +} \ No newline at end of file diff --git a/docs/can-ogl-ontario-1.0.LICENSE b/docs/can-ogl-ontario-1.0.LICENSE index 978bc23aa1..114bf50e45 100644 --- a/docs/can-ogl-ontario-1.0.LICENSE +++ b/docs/can-ogl-ontario-1.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: can-ogl-ontario-1.0 +short_name: OGL Ontario 1.0 +name: Open Government Licence Ontario 1.0 +category: Permissive +owner: Ontario Government +homepage_url: https://www.ontario.ca/page/open-government-licence-ontario +spdx_license_key: LicenseRef-scancode-can-ogl-ontario-1.0 +--- + Open Government Licence – Ontario You are encouraged to use the Information that is available under this licence with only a few conditions. @@ -65,6 +75,4 @@ Versioning This is version 1.0 of the Open Government Licence – Ontario. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information. Updated: September 6, 2018 -Published: June 18, 2013 - - +Published: June 18, 2013 \ No newline at end of file diff --git a/docs/can-ogl-ontario-1.0.html b/docs/can-ogl-ontario-1.0.html index 152a377e97..ff4364c137 100644 --- a/docs/can-ogl-ontario-1.0.html +++ b/docs/can-ogl-ontario-1.0.html @@ -182,10 +182,7 @@ This is version 1.0 of the Open Government Licence – Ontario. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information. Updated: September 6, 2018 -Published: June 18, 2013 - - - +Published: June 18, 2013
@@ -197,7 +194,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/can-ogl-ontario-1.0.json b/docs/can-ogl-ontario-1.0.json index ec64124aaa..c7cee83369 100644 --- a/docs/can-ogl-ontario-1.0.json +++ b/docs/can-ogl-ontario-1.0.json @@ -1 +1,9 @@ -{"key": "can-ogl-ontario-1.0", "short_name": "OGL Ontario 1.0", "name": "Open Government Licence Ontario 1.0", "category": "Permissive", "owner": "Ontario Government", "homepage_url": "https://www.ontario.ca/page/open-government-licence-ontario", "spdx_license_key": "LicenseRef-scancode-can-ogl-ontario-1.0"} \ No newline at end of file +{ + "key": "can-ogl-ontario-1.0", + "short_name": "OGL Ontario 1.0", + "name": "Open Government Licence Ontario 1.0", + "category": "Permissive", + "owner": "Ontario Government", + "homepage_url": "https://www.ontario.ca/page/open-government-licence-ontario", + "spdx_license_key": "LicenseRef-scancode-can-ogl-ontario-1.0" +} \ No newline at end of file diff --git a/docs/can-ogl-toronto-1.0.LICENSE b/docs/can-ogl-toronto-1.0.LICENSE index b1a6d32f19..f1b498a8f7 100644 --- a/docs/can-ogl-toronto-1.0.LICENSE +++ b/docs/can-ogl-toronto-1.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: can-ogl-toronto-1.0 +short_name: OGL Toronto 1.0 +name: Open Government Licence Toronto 1.0 +category: Permissive +owner: Toronto Government +homepage_url: https://www.toronto.ca/city-government/data-research-maps/open-data/open-data-licence/ +spdx_license_key: LicenseRef-scancode-can-ogl-toronto-1.0 +--- + Open Government Licence – Toronto This licence is based on version 1.0 of the Open Government Licence – Ontario, which was developed through public consultation and a collaborative effort by the provincial and federal government. The only substantive changes in this licence are to replace direct references to the Province of Ontario with the City of Toronto and the inclusion of a provision for the Ontario Personal Health Information Protection Act, 2004. diff --git a/docs/can-ogl-toronto-1.0.html b/docs/can-ogl-toronto-1.0.html index 6b45d80566..48b896f296 100644 --- a/docs/can-ogl-toronto-1.0.html +++ b/docs/can-ogl-toronto-1.0.html @@ -194,7 +194,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/can-ogl-toronto-1.0.json b/docs/can-ogl-toronto-1.0.json index 5b9916dc5a..03e2a48661 100644 --- a/docs/can-ogl-toronto-1.0.json +++ b/docs/can-ogl-toronto-1.0.json @@ -1 +1,9 @@ -{"key": "can-ogl-toronto-1.0", "short_name": "OGL Toronto 1.0", "name": "Open Government Licence Toronto 1.0", "category": "Permissive", "owner": "Toronto Government", "homepage_url": "https://www.toronto.ca/city-government/data-research-maps/open-data/open-data-licence/", "spdx_license_key": "LicenseRef-scancode-can-ogl-toronto-1.0"} \ No newline at end of file +{ + "key": "can-ogl-toronto-1.0", + "short_name": "OGL Toronto 1.0", + "name": "Open Government Licence Toronto 1.0", + "category": "Permissive", + "owner": "Toronto Government", + "homepage_url": "https://www.toronto.ca/city-government/data-research-maps/open-data/open-data-licence/", + "spdx_license_key": "LicenseRef-scancode-can-ogl-toronto-1.0" +} \ No newline at end of file diff --git a/docs/careware.LICENSE b/docs/careware.LICENSE index 645b162f45..4f604adda5 100644 --- a/docs/careware.LICENSE +++ b/docs/careware.LICENSE @@ -1,3 +1,13 @@ +--- +key: careware +short_name: Careware +name: Careware License +category: Permissive +owner: Jacopo Lazzari +homepage_url: http://jaclaz.altervista.org/Projects/careware.html +spdx_license_key: LicenseRef-scancode-careware +--- + CAREWARE LICENSE This script is released as "CAREWARE", it may be freely distributed, used, @@ -35,4 +45,4 @@ supposed to do, it could even possibly completely destroy your software, hardware and set your house/office to fire. No warranty implied, not even that of fitness for any particular purpose apart -taking up a little bit of your hard disk space. +taking up a little bit of your hard disk space. \ No newline at end of file diff --git a/docs/careware.html b/docs/careware.html index 1c56f8aa16..5fdbc86c1b 100644 --- a/docs/careware.html +++ b/docs/careware.html @@ -152,8 +152,7 @@ hardware and set your house/office to fire. No warranty implied, not even that of fitness for any particular purpose apart -taking up a little bit of your hard disk space. - +taking up a little bit of your hard disk space.
@@ -165,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/careware.json b/docs/careware.json index 5a2996ac35..3a480a17ba 100644 --- a/docs/careware.json +++ b/docs/careware.json @@ -1 +1,9 @@ -{"key": "careware", "short_name": "Careware", "name": "Careware License", "category": "Permissive", "owner": "Jacopo Lazzari", "homepage_url": "http://jaclaz.altervista.org/Projects/careware.html", "spdx_license_key": "LicenseRef-scancode-careware"} \ No newline at end of file +{ + "key": "careware", + "short_name": "Careware", + "name": "Careware License", + "category": "Permissive", + "owner": "Jacopo Lazzari", + "homepage_url": "http://jaclaz.altervista.org/Projects/careware.html", + "spdx_license_key": "LicenseRef-scancode-careware" +} \ No newline at end of file diff --git a/docs/carnegie-mellon-contributors.LICENSE b/docs/carnegie-mellon-contributors.LICENSE index 3e7ed8e938..3c6c598f29 100644 --- a/docs/carnegie-mellon-contributors.LICENSE +++ b/docs/carnegie-mellon-contributors.LICENSE @@ -1,3 +1,14 @@ +--- +key: carnegie-mellon-contributors +short_name: Carnegie Mellon Contributors +name: Carnegie Mellon Contributors License +category: Permissive +owner: Carnegie Mellon University +spdx_license_key: LicenseRef-scancode-carnegie-mellon-contributors +ignorable_emails: + - Software.Distribution@CS.CMU.EDU +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the software, derivative works or diff --git a/docs/carnegie-mellon-contributors.html b/docs/carnegie-mellon-contributors.html index a3beee21d0..9bd3173eca 100644 --- a/docs/carnegie-mellon-contributors.html +++ b/docs/carnegie-mellon-contributors.html @@ -147,7 +147,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/carnegie-mellon-contributors.json b/docs/carnegie-mellon-contributors.json index a6c048457e..a73ea31712 100644 --- a/docs/carnegie-mellon-contributors.json +++ b/docs/carnegie-mellon-contributors.json @@ -1 +1,11 @@ -{"key": "carnegie-mellon-contributors", "short_name": "Carnegie Mellon Contributors", "name": "Carnegie Mellon Contributors License", "category": "Permissive", "owner": "Carnegie Mellon University", "spdx_license_key": "LicenseRef-scancode-carnegie-mellon-contributors", "ignorable_emails": ["Software.Distribution@CS.CMU.EDU"]} \ No newline at end of file +{ + "key": "carnegie-mellon-contributors", + "short_name": "Carnegie Mellon Contributors", + "name": "Carnegie Mellon Contributors License", + "category": "Permissive", + "owner": "Carnegie Mellon University", + "spdx_license_key": "LicenseRef-scancode-carnegie-mellon-contributors", + "ignorable_emails": [ + "Software.Distribution@CS.CMU.EDU" + ] +} \ No newline at end of file diff --git a/docs/carnegie-mellon.LICENSE b/docs/carnegie-mellon.LICENSE index ecc4ecef4d..195fa1f9db 100644 --- a/docs/carnegie-mellon.LICENSE +++ b/docs/carnegie-mellon.LICENSE @@ -1,3 +1,12 @@ +--- +key: carnegie-mellon +short_name: Carnegie Mellon License +name: Carnegie Mellon License +category: Permissive +owner: Carnegie Mellon University +spdx_license_key: LicenseRef-scancode-carnegie-mellon +--- + Permission to use, copy, modify, and distribute this program for any purpose and without fee is hereby granted, provided that this copyright and permission notice appear on all copies and supporting documentation, the name of Carnegie diff --git a/docs/carnegie-mellon.html b/docs/carnegie-mellon.html index bf780052d9..1841760996 100644 --- a/docs/carnegie-mellon.html +++ b/docs/carnegie-mellon.html @@ -128,7 +128,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/carnegie-mellon.json b/docs/carnegie-mellon.json index 9499fe51b9..8481868c30 100644 --- a/docs/carnegie-mellon.json +++ b/docs/carnegie-mellon.json @@ -1 +1,8 @@ -{"key": "carnegie-mellon", "short_name": "Carnegie Mellon License", "name": "Carnegie Mellon License", "category": "Permissive", "owner": "Carnegie Mellon University", "spdx_license_key": "LicenseRef-scancode-carnegie-mellon"} \ No newline at end of file +{ + "key": "carnegie-mellon", + "short_name": "Carnegie Mellon License", + "name": "Carnegie Mellon License", + "category": "Permissive", + "owner": "Carnegie Mellon University", + "spdx_license_key": "LicenseRef-scancode-carnegie-mellon" +} \ No newline at end of file diff --git a/docs/cavium-linux-firmware.LICENSE b/docs/cavium-linux-firmware.LICENSE index 312bb2d76d..00175b0299 100644 --- a/docs/cavium-linux-firmware.LICENSE +++ b/docs/cavium-linux-firmware.LICENSE @@ -1,3 +1,15 @@ +--- +key: cavium-linux-firmware +short_name: Cavium Linux Firmware License +name: Cavium Linux Firmware License +category: Proprietary Free +owner: Cavium +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cavium +spdx_license_key: LicenseRef-scancode-cavium-linux-firmware +other_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cavium_liquidio +--- + Software License Agreement ANY USE, REPRODUCTION, OR DISTRIBUTION OF THE ACCOMPANYING BINARY SOFTWARE diff --git a/docs/cavium-linux-firmware.html b/docs/cavium-linux-firmware.html index 4f75e832aa..4a419cbd09 100644 --- a/docs/cavium-linux-firmware.html +++ b/docs/cavium-linux-firmware.html @@ -192,7 +192,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cavium-linux-firmware.json b/docs/cavium-linux-firmware.json index d9ddede8a7..318b861787 100644 --- a/docs/cavium-linux-firmware.json +++ b/docs/cavium-linux-firmware.json @@ -1 +1,12 @@ -{"key": "cavium-linux-firmware", "short_name": "Cavium Linux Firmware License", "name": "Cavium Linux Firmware License", "category": "Proprietary Free", "owner": "Cavium", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cavium", "spdx_license_key": "LicenseRef-scancode-cavium-linux-firmware", "other_urls": ["https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cavium_liquidio"]} \ No newline at end of file +{ + "key": "cavium-linux-firmware", + "short_name": "Cavium Linux Firmware License", + "name": "Cavium Linux Firmware License", + "category": "Proprietary Free", + "owner": "Cavium", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cavium", + "spdx_license_key": "LicenseRef-scancode-cavium-linux-firmware", + "other_urls": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cavium_liquidio" + ] +} \ No newline at end of file diff --git a/docs/cavium-malloc.LICENSE b/docs/cavium-malloc.LICENSE index 450c4653bd..6984840914 100644 --- a/docs/cavium-malloc.LICENSE +++ b/docs/cavium-malloc.LICENSE @@ -1,3 +1,12 @@ +--- +key: cavium-malloc +short_name: Cavium malloc License +name: Cavium malloc License +category: Permissive +owner: Cavium +spdx_license_key: LicenseRef-scancode-cavium-malloc +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that (i) the above copyright notices and this permission notice appear in all copies of diff --git a/docs/cavium-malloc.html b/docs/cavium-malloc.html index dd2ec3b2e1..d18d4c1579 100644 --- a/docs/cavium-malloc.html +++ b/docs/cavium-malloc.html @@ -135,7 +135,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cavium-malloc.json b/docs/cavium-malloc.json index 53cd59f130..db8166129f 100644 --- a/docs/cavium-malloc.json +++ b/docs/cavium-malloc.json @@ -1 +1,8 @@ -{"key": "cavium-malloc", "short_name": "Cavium malloc License", "name": "Cavium malloc License", "category": "Permissive", "owner": "Cavium", "spdx_license_key": "LicenseRef-scancode-cavium-malloc"} \ No newline at end of file +{ + "key": "cavium-malloc", + "short_name": "Cavium malloc License", + "name": "Cavium malloc License", + "category": "Permissive", + "owner": "Cavium", + "spdx_license_key": "LicenseRef-scancode-cavium-malloc" +} \ No newline at end of file diff --git a/docs/cavium-targeted-hardware.LICENSE b/docs/cavium-targeted-hardware.LICENSE index 9e5fb012b6..63f011cc9f 100644 --- a/docs/cavium-targeted-hardware.LICENSE +++ b/docs/cavium-targeted-hardware.LICENSE @@ -1,3 +1,14 @@ +--- +key: cavium-targeted-hardware +short_name: Cavium Targeted Hardware License +name: Cavium Targeted Hardware License +category: Free Restricted +owner: Cavium +spdx_license_key: LicenseRef-scancode-cavium-targeted-hardware +ignorable_authors: + - Cavium Networks +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -35,4 +46,4 @@ DISCLAIMS ALL IMPLIED (IF ANY) WARRANTIES OF TITLE, MERCHANTABILITY, NONINFRINGEMENT,FITNESS FOR A PARTICULAR PURPOSE,LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION OR CORRESPONDENCE TO DESCRIPTION. THE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE -SOFTWARE LIES WITH YOU. +SOFTWARE LIES WITH YOU. \ No newline at end of file diff --git a/docs/cavium-targeted-hardware.html b/docs/cavium-targeted-hardware.html index 8e0cf746d3..9a5d3889e6 100644 --- a/docs/cavium-targeted-hardware.html +++ b/docs/cavium-targeted-hardware.html @@ -154,8 +154,7 @@ NONINFRINGEMENT,FITNESS FOR A PARTICULAR PURPOSE,LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION OR CORRESPONDENCE TO DESCRIPTION. THE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE -SOFTWARE LIES WITH YOU. - +SOFTWARE LIES WITH YOU.
@@ -167,7 +166,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cavium-targeted-hardware.json b/docs/cavium-targeted-hardware.json index 1da2766598..41b3a04e57 100644 --- a/docs/cavium-targeted-hardware.json +++ b/docs/cavium-targeted-hardware.json @@ -1 +1,11 @@ -{"key": "cavium-targeted-hardware", "short_name": "Cavium Targeted Hardware License", "name": "Cavium Targeted Hardware License", "category": "Free Restricted", "owner": "Cavium", "spdx_license_key": "LicenseRef-scancode-cavium-targeted-hardware", "ignorable_authors": ["Cavium Networks"]} \ No newline at end of file +{ + "key": "cavium-targeted-hardware", + "short_name": "Cavium Targeted Hardware License", + "name": "Cavium Targeted Hardware License", + "category": "Free Restricted", + "owner": "Cavium", + "spdx_license_key": "LicenseRef-scancode-cavium-targeted-hardware", + "ignorable_authors": [ + "Cavium Networks" + ] +} \ No newline at end of file diff --git a/docs/cc-by-1.0.LICENSE b/docs/cc-by-1.0.LICENSE index 889e707e12..da1d41f961 100644 --- a/docs/cc-by-1.0.LICENSE +++ b/docs/cc-by-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-1.0 +short_name: CC-BY-1.0 +name: Creative Commons Attribution License 1.0 +category: Permissive +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by/1.0/ +spdx_license_key: CC-BY-1.0 +text_urls: + - http://creativecommons.org/licenses/by/1.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by/1.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-1.0.html b/docs/cc-by-1.0.html index 2e2835711f..c27e320523 100644 --- a/docs/cc-by-1.0.html +++ b/docs/cc-by-1.0.html @@ -208,7 +208,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-1.0.json b/docs/cc-by-1.0.json index f787b3f520..d5bd678d98 100644 --- a/docs/cc-by-1.0.json +++ b/docs/cc-by-1.0.json @@ -1 +1,18 @@ -{"key": "cc-by-1.0", "short_name": "CC-BY-1.0", "name": "Creative Commons Attribution License 1.0", "category": "Permissive", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by/1.0/", "spdx_license_key": "CC-BY-1.0", "text_urls": ["http://creativecommons.org/licenses/by/1.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by/1.0/legalcode"], "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-1.0", + "short_name": "CC-BY-1.0", + "name": "Creative Commons Attribution License 1.0", + "category": "Permissive", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by/1.0/", + "spdx_license_key": "CC-BY-1.0", + "text_urls": [ + "http://creativecommons.org/licenses/by/1.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by/1.0/legalcode" + ], + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-2.0-uk.LICENSE b/docs/cc-by-2.0-uk.LICENSE index dc9a35d115..04a4e7b57a 100644 --- a/docs/cc-by-2.0-uk.LICENSE +++ b/docs/cc-by-2.0-uk.LICENSE @@ -1,3 +1,21 @@ +--- +key: cc-by-2.0-uk +short_name: CC-BY-2.0-UK +name: Creative Commons Attribution License 2.0 UK +category: Permissive +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by/2.0/uk/ +spdx_license_key: LicenseRef-scancode-cc-by-2.0-uk +text_urls: + - http://creativecommons.org/licenses/by/2.0/uk/legalcode +faq_url: http://creativecommons.org/licenses/by/2.0/uk/ +other_urls: + - http://www.legislation.gov.uk/ukpga/1988/48 + - http://www.webtoolkit.info/license +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution 2.0 England and Wales CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-2.0-uk.html b/docs/cc-by-2.0-uk.html index 1dce11fabe..078b34fbbc 100644 --- a/docs/cc-by-2.0-uk.html +++ b/docs/cc-by-2.0-uk.html @@ -268,7 +268,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-2.0-uk.json b/docs/cc-by-2.0-uk.json index 0f9b975313..d687c7e4db 100644 --- a/docs/cc-by-2.0-uk.json +++ b/docs/cc-by-2.0-uk.json @@ -1 +1,20 @@ -{"key": "cc-by-2.0-uk", "short_name": "CC-BY-2.0-UK", "name": "Creative Commons Attribution License 2.0 UK", "category": "Permissive", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by/2.0/uk/", "spdx_license_key": "LicenseRef-scancode-cc-by-2.0-uk", "text_urls": ["http://creativecommons.org/licenses/by/2.0/uk/legalcode"], "faq_url": "http://creativecommons.org/licenses/by/2.0/uk/", "other_urls": ["http://www.legislation.gov.uk/ukpga/1988/48", "http://www.webtoolkit.info/license"], "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-2.0-uk", + "short_name": "CC-BY-2.0-UK", + "name": "Creative Commons Attribution License 2.0 UK", + "category": "Permissive", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by/2.0/uk/", + "spdx_license_key": "LicenseRef-scancode-cc-by-2.0-uk", + "text_urls": [ + "http://creativecommons.org/licenses/by/2.0/uk/legalcode" + ], + "faq_url": "http://creativecommons.org/licenses/by/2.0/uk/", + "other_urls": [ + "http://www.legislation.gov.uk/ukpga/1988/48", + "http://www.webtoolkit.info/license" + ], + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-2.0.LICENSE b/docs/cc-by-2.0.LICENSE index e845e3501b..bcd8a6cb77 100644 --- a/docs/cc-by-2.0.LICENSE +++ b/docs/cc-by-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-2.0 +short_name: CC-BY-2.0 +name: Creative Commons Attribution License 2.0 +category: Permissive +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by/2.0/ +spdx_license_key: CC-BY-2.0 +text_urls: + - http://creativecommons.org/licenses/by/2.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by/2.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-2.0.html b/docs/cc-by-2.0.html index e6f750ec6b..1868dd99fa 100644 --- a/docs/cc-by-2.0.html +++ b/docs/cc-by-2.0.html @@ -211,7 +211,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-2.0.json b/docs/cc-by-2.0.json index 5aeb0ce5d8..9ff3660c54 100644 --- a/docs/cc-by-2.0.json +++ b/docs/cc-by-2.0.json @@ -1 +1,18 @@ -{"key": "cc-by-2.0", "short_name": "CC-BY-2.0", "name": "Creative Commons Attribution License 2.0", "category": "Permissive", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by/2.0/", "spdx_license_key": "CC-BY-2.0", "text_urls": ["http://creativecommons.org/licenses/by/2.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by/2.0/legalcode"], "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-2.0", + "short_name": "CC-BY-2.0", + "name": "Creative Commons Attribution License 2.0", + "category": "Permissive", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by/2.0/", + "spdx_license_key": "CC-BY-2.0", + "text_urls": [ + "http://creativecommons.org/licenses/by/2.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by/2.0/legalcode" + ], + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-2.5-au.LICENSE b/docs/cc-by-2.5-au.LICENSE index 5e57265599..d5882cb6c2 100644 --- a/docs/cc-by-2.5-au.LICENSE +++ b/docs/cc-by-2.5-au.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-2.5-au +short_name: Creative Commons Attribution 2.5 Australia +name: Creative Commons Attribution 2.5 Australia +category: Permissive +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by/2.5/au/ +spdx_license_key: CC-BY-2.5-AU +other_urls: + - https://creativecommons.org/licenses/by/2.5/au/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Attribution 2.5 Australia CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-2.5-au.html b/docs/cc-by-2.5-au.html index 6b4ea6dd03..acd78bb84b 100644 --- a/docs/cc-by-2.5-au.html +++ b/docs/cc-by-2.5-au.html @@ -256,7 +256,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-2.5-au.json b/docs/cc-by-2.5-au.json index 1fbcc1b8e2..2bf155c980 100644 --- a/docs/cc-by-2.5-au.json +++ b/docs/cc-by-2.5-au.json @@ -1 +1,15 @@ -{"key": "cc-by-2.5-au", "short_name": "Creative Commons Attribution 2.5 Australia", "name": "Creative Commons Attribution 2.5 Australia", "category": "Permissive", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by/2.5/au/", "spdx_license_key": "CC-BY-2.5-AU", "other_urls": ["https://creativecommons.org/licenses/by/2.5/au/legalcode"], "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-2.5-au", + "short_name": "Creative Commons Attribution 2.5 Australia", + "name": "Creative Commons Attribution 2.5 Australia", + "category": "Permissive", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by/2.5/au/", + "spdx_license_key": "CC-BY-2.5-AU", + "other_urls": [ + "https://creativecommons.org/licenses/by/2.5/au/legalcode" + ], + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-2.5.LICENSE b/docs/cc-by-2.5.LICENSE index 23bded30a9..a0ccd66f22 100644 --- a/docs/cc-by-2.5.LICENSE +++ b/docs/cc-by-2.5.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-2.5 +short_name: CC-BY-2.5 +name: Creative Commons Attribution License 2.5 +category: Permissive +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by/2.5/ +spdx_license_key: CC-BY-2.5 +text_urls: + - http://creativecommons.org/licenses/by/2.5/legalcode +other_urls: + - https://creativecommons.org/licenses/by/2.5/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-2.5.html b/docs/cc-by-2.5.html index f18b4c4f50..9ee56644f4 100644 --- a/docs/cc-by-2.5.html +++ b/docs/cc-by-2.5.html @@ -211,7 +211,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-2.5.json b/docs/cc-by-2.5.json index cc0d9f9915..7769306544 100644 --- a/docs/cc-by-2.5.json +++ b/docs/cc-by-2.5.json @@ -1 +1,18 @@ -{"key": "cc-by-2.5", "short_name": "CC-BY-2.5", "name": "Creative Commons Attribution License 2.5", "category": "Permissive", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by/2.5/", "spdx_license_key": "CC-BY-2.5", "text_urls": ["http://creativecommons.org/licenses/by/2.5/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by/2.5/legalcode"], "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-2.5", + "short_name": "CC-BY-2.5", + "name": "Creative Commons Attribution License 2.5", + "category": "Permissive", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by/2.5/", + "spdx_license_key": "CC-BY-2.5", + "text_urls": [ + "http://creativecommons.org/licenses/by/2.5/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by/2.5/legalcode" + ], + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-3.0-at.LICENSE b/docs/cc-by-3.0-at.LICENSE index 33b16b935c..0d30df6b1c 100644 --- a/docs/cc-by-3.0-at.LICENSE +++ b/docs/cc-by-3.0-at.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-3.0-at +language: de +short_name: CC-BY-3.0-AT +name: Creative Commons Attribution 3.0 Austria +category: Permissive +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/by/3.0/at/ +spdx_license_key: CC-BY-3.0-AT +text_urls: + - https://creativecommons.org/licenses/by/3.0/at/legalcode +faq_url: https://creativecommons.org/licenses/by/3.0/at/ +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Namensnennung 3.0 Österreich CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. @@ -110,4 +126,4 @@ Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. +Creative Commons kann kontaktiert werden über https://creativecommons.org/. \ No newline at end of file diff --git a/docs/cc-by-3.0-at.html b/docs/cc-by-3.0-at.html index 3ab0e5f227..c0b06c2125 100644 --- a/docs/cc-by-3.0-at.html +++ b/docs/cc-by-3.0-at.html @@ -259,8 +259,7 @@ Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. - +Creative Commons kann kontaktiert werden über https://creativecommons.org/.
@@ -272,7 +271,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-3.0-at.json b/docs/cc-by-3.0-at.json index 0bc40e857c..e318a615bf 100644 --- a/docs/cc-by-3.0-at.json +++ b/docs/cc-by-3.0-at.json @@ -1 +1,17 @@ -{"key": "cc-by-3.0-at", "language": "de", "short_name": "CC-BY-3.0-AT", "name": "Creative Commons Attribution 3.0 Austria", "category": "Permissive", "owner": "Creative Commons", "homepage_url": "https://creativecommons.org/licenses/by/3.0/at/", "spdx_license_key": "CC-BY-3.0-AT", "text_urls": ["https://creativecommons.org/licenses/by/3.0/at/legalcode"], "faq_url": "https://creativecommons.org/licenses/by/3.0/at/", "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-3.0-at", + "language": "de", + "short_name": "CC-BY-3.0-AT", + "name": "Creative Commons Attribution 3.0 Austria", + "category": "Permissive", + "owner": "Creative Commons", + "homepage_url": "https://creativecommons.org/licenses/by/3.0/at/", + "spdx_license_key": "CC-BY-3.0-AT", + "text_urls": [ + "https://creativecommons.org/licenses/by/3.0/at/legalcode" + ], + "faq_url": "https://creativecommons.org/licenses/by/3.0/at/", + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-3.0-de.LICENSE b/docs/cc-by-3.0-de.LICENSE index 239da95803..cd9a8b4c6f 100644 --- a/docs/cc-by-3.0-de.LICENSE +++ b/docs/cc-by-3.0-de.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-3.0-de +language: de +short_name: Creative Commons Attribution 3.0 Germany +name: Creative Commons Attribution 3.0 Germany +category: Permissive +owner: Creative Commons +spdx_license_key: CC-BY-3.0-DE +other_urls: + - https://creativecommons.org/licenses/by/3.0/de/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Namensnennung 3.0 Deutschland CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. @@ -105,4 +119,4 @@ Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. +Creative Commons kann kontaktiert werden über https://creativecommons.org/. \ No newline at end of file diff --git a/docs/cc-by-3.0-de.html b/docs/cc-by-3.0-de.html index 1a36347122..e0b361885a 100644 --- a/docs/cc-by-3.0-de.html +++ b/docs/cc-by-3.0-de.html @@ -240,8 +240,7 @@ Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. - +Creative Commons kann kontaktiert werden über https://creativecommons.org/.
@@ -253,7 +252,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-3.0-de.json b/docs/cc-by-3.0-de.json index 59c402e000..e75aba0eed 100644 --- a/docs/cc-by-3.0-de.json +++ b/docs/cc-by-3.0-de.json @@ -1 +1,15 @@ -{"key": "cc-by-3.0-de", "language": "de", "short_name": "Creative Commons Attribution 3.0 Germany", "name": "Creative Commons Attribution 3.0 Germany", "category": "Permissive", "owner": "Creative Commons", "spdx_license_key": "CC-BY-3.0-DE", "other_urls": ["https://creativecommons.org/licenses/by/3.0/de/legalcode"], "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-3.0-de", + "language": "de", + "short_name": "Creative Commons Attribution 3.0 Germany", + "name": "Creative Commons Attribution 3.0 Germany", + "category": "Permissive", + "owner": "Creative Commons", + "spdx_license_key": "CC-BY-3.0-DE", + "other_urls": [ + "https://creativecommons.org/licenses/by/3.0/de/legalcode" + ], + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-3.0-igo.LICENSE b/docs/cc-by-3.0-igo.LICENSE new file mode 100644 index 0000000000..a745f3f67b --- /dev/null +++ b/docs/cc-by-3.0-igo.LICENSE @@ -0,0 +1,116 @@ +--- +key: cc-by-3.0-igo +short_name: Creative Commons Attribution 3.0 IGO +name: Creative Commons Attribution 3.0 IGO +category: Permissive +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/by/3.0/igo +spdx_license_key: CC-BY-3.0-IGO +text_urls: + - https://creativecommons.org/licenses/by/3.0/igo/legalcode +minimum_coverage: 50 +ignorable_urls: + - https://creativecommons.org/ +--- + +Creative Commons Attribution 3.0 IGO + +CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. THE LICENSOR IS NOT NECESSARILY AN INTERGOVERNMENTAL ORGANIZATION (IGO), AS DEFINED IN THE LICENSE BELOW. + +License + +THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("LICENSE"). THE LICENSOR (DEFINED BELOW) HOLDS COPYRIGHT AND OTHER RIGHTS IN THE WORK. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED. + +BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION FOR YOUR ACCEPTANCE AND AGREEMENT TO THE TERMS OF THE LICENSE. + +1. Definitions + + a. "IGO" means, solely and exclusively for purposes of this License, an organization established by a treaty or other instrument governed by international law and possessing its own international legal personality. Other organizations established to carry out activities across national borders and that accordingly enjoy immunity from legal process are also IGOs for the sole and exclusive purposes of this License. IGOs may include as members, in addition to states, other entities. + + b. "Work" means the literary and/or artistic work eligible for copyright protection, whatever may be the mode or form of its expression including digital form, and offered under the terms of this License. It is understood that a database, which by reason of the selection and arrangement of its contents constitutes an intellectual creation, is considered a Work. + + c. "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License and may be, but is not necessarily, an IGO. + + d. "You" means an individual or entity exercising rights under this License. + + e. "Reproduce" means to make a copy of the Work in any manner or form, and by any means. + + f. "Distribute" means the activity of making publicly available the Work or Adaptation (or copies of the Work or Adaptation), as applicable, by sale, rental, public lending or any other known form of transfer of ownership or possession of the Work or copy of the Work. + + g. "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images. + + h. "Adaptation" means a work derived from or based upon the Work, or upon the Work and other pre-existing works. Adaptations may include works such as translations, derivative works, or any alterations and arrangements of any kind involving the Work. For purposes of this License, where the Work is a musical work, performance, or phonogram, the synchronization of the Work in timed-relation with a moving image is an Adaptation. For the avoidance of doubt, including the Work in a Collection is not an Adaptation. + + i. "Collection" means a collection of literary or artistic works or other works or subject matter other than works listed in Section 1(b) which by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. For the avoidance of doubt, a Collection will not be considered as an Adaptation. + +2. Scope of this License. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright protection. + +3. License Grant. Subject to the terms and conditions of this License, the Licensor hereby grants You a worldwide, royalty-free, non-exclusive license to exercise the rights in the Work as follows: + + a. to Reproduce, Distribute and Publicly Perform the Work, to incorporate the Work into one or more Collections, and to Reproduce, Distribute and Publicly Perform the Work as incorporated in the Collections; and, + + b. to create, Reproduce, Distribute and Publicly Perform Adaptations, provided that You clearly label, demarcate or otherwise identify that changes were made to the original Work. + + c. For the avoidance of doubt: + + i. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; + + ii. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and, + + iii. Voluntary License Schemes. To the extent possible, the Licensor waives the right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary licensing scheme. + +This License lasts for the duration of the term of the copyright in the Work licensed by the Licensor. The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by the Licensor are hereby reserved. + +4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + a. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work (see section 8(a)). You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from a Licensor You must, to the extent practicable, remove from the Collection any credit (inclusive of any logo, trademark, official mark or official emblem) as required by Section 4(b), as requested. If You create an Adaptation, upon notice from a Licensor You must, to the extent practicable, remove from the Adaptation any credit (inclusive of any logo, trademark, official mark or official emblem) as required by Section 4(b), as requested. + + b. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) any attributions that the Licensor indicates be associated with the Work as indicated in a copyright notice, (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that the Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and, (iv) consistent with Section 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation. The credit required by this Section 4(b) may be implemented in any reasonable manner; provided, however, that in the case of an Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributors to the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Licensor or others designated for attribution, of You or Your use of the Work, without the separate, express prior written permission of the Licensor or such others. + + c. Except as otherwise agreed in writing by the Licensor, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the honor or reputation of the Licensor where moral rights apply. + +5. Representations, Warranties and Disclaimer + +THE LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. + +6. Limitation on Liability + +IN NO EVENT WILL THE LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF THE LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. Termination + + a. Subject to the terms and conditions set forth in this License, the license granted here lasts for the duration of the term of the copyright in the Work licensed by the Licensor as stated in Section 3. Notwithstanding the above, the Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated below. + + b. If You fail to comply with this License, then this License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. Notwithstanding the foregoing, this License reinstates automatically as of the date the violation is cured, provided it is cured within 30 days of You discovering the violation, or upon express reinstatement by the Licensor. For the avoidance of doubt, this Section 7(b) does not affect any rights the Licensor may have to seek remedies for violations of this License by You. + +8. Miscellaneous + + a. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + + b. Each time You Distribute or Publicly Perform an Adaptation, the Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. + + c. If any provision of this License is invalid or unenforceable, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + + d. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the Licensor. + + e. This License constitutes the entire agreement between You and the Licensor with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. The Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + + f. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). Interpretation of the scope of the rights granted by the Licensor and the conditions imposed on You under this License, this License, and the rights and conditions set forth herein shall be made with reference to copyright as determined in accordance with general principles of international law, including the above mentioned conventions. + + g. Nothing in this License constitutes or may be interpreted as a limitation upon or waiver of any privileges and immunities that may apply to the Licensor or You, including immunity from the legal processes of any jurisdiction, national court or other authority. + + h. Where the Licensor is an IGO, any and all disputes arising under this License that cannot be settled amicably shall be resolved in accordance with the following procedure: + + i. Pursuant to a notice of mediation communicated by reasonable means by either You or the Licensor to the other, the dispute shall be submitted to non-binding mediation conducted in accordance with rules designated by the Licensor in the copyright notice published with the Work, or if none then in accordance with those communicated in the notice of mediation. The language used in the mediation proceedings shall be English unless otherwise agreed. + + ii. If any such dispute has not been settled within 45 days following the date on which the notice of mediation is provided, either You or the Licensor may, pursuant to a notice of arbitration communicated by reasonable means to the other, elect to have the dispute referred to and finally determined by arbitration. The arbitration shall be conducted in accordance with the rules designated by the Licensor in the copyright notice published with the Work, or if none then in accordance with the UNCITRAL Arbitration Rules as then in force. The arbitral tribunal shall consist of a sole arbitrator and the language of the proceedings shall be English unless otherwise agreed. The place of arbitration shall be where the Licensor has its headquarters. The arbitral proceedings shall be conducted remotely (e.g., via telephone conference or written submissions) whenever practicable. + + iii. Interpretation of this License in any dispute submitted to mediation or arbitration shall be as set forth in Section 8(f), above. + +Creative Commons Notice + +Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of the Licensor. + +Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. + +Creative Commons may be contacted at https://creativecommons.org/. \ No newline at end of file diff --git a/docs/cc-by-3.0-igo.html b/docs/cc-by-3.0-igo.html new file mode 100644 index 0000000000..dc42d85f64 --- /dev/null +++ b/docs/cc-by-3.0-igo.html @@ -0,0 +1,275 @@ + + + + + + LicenseDB: cc-by-3.0-igo + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + cc-by-3.0-igo + +
+ +
short_name
+
+ + Creative Commons Attribution 3.0 IGO + +
+ +
name
+
+ + Creative Commons Attribution 3.0 IGO + +
+ +
category
+
+ + Permissive + +
+ +
owner
+
+ + Creative Commons + +
+ +
homepage_url
+
+ + https://creativecommons.org/licenses/by/3.0/igo + +
+ +
spdx_license_key
+
+ + CC-BY-3.0-IGO + +
+ +
text_urls
+
+ + + +
+ +
minimum_coverage
+
+ + 50 + +
+ +
ignorable_urls
+
+ + + +
+ +
+
license_text
+
Creative Commons Attribution 3.0 IGO
+
+CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. THE LICENSOR IS NOT NECESSARILY AN INTERGOVERNMENTAL ORGANIZATION (IGO), AS DEFINED IN THE LICENSE BELOW. 
+
+License
+
+THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("LICENSE"). THE LICENSOR (DEFINED BELOW) HOLDS COPYRIGHT AND OTHER RIGHTS IN THE WORK. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED.
+
+BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION FOR YOUR ACCEPTANCE AND AGREEMENT TO THE TERMS OF THE LICENSE.
+
+1. Definitions
+
+    a. "IGO" means, solely and exclusively for purposes of this License, an organization established by a treaty or other instrument governed by international law and possessing its own international legal personality. Other organizations established to carry out activities across national borders and that accordingly enjoy immunity from legal process are also IGOs for the sole and exclusive purposes of this License. IGOs may include as members, in addition to states, other entities.
+
+    b. "Work" means the literary and/or artistic work eligible for copyright protection, whatever may be the mode or form of its expression including digital form, and offered under the terms of this License. It is understood that a database, which by reason of the selection and arrangement of its contents constitutes an intellectual creation, is considered a Work.
+
+    c. "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License and may be, but is not necessarily, an IGO.
+
+    d. "You" means an individual or entity exercising rights under this License.
+
+    e. "Reproduce" means to make a copy of the Work in any manner or form, and by any means.
+
+    f. "Distribute" means the activity of making publicly available the Work or Adaptation (or copies of the Work or Adaptation), as applicable, by sale, rental, public lending or any other known form of transfer of ownership or possession of the Work or copy of the Work.
+
+    g. "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images.
+
+    h. "Adaptation" means a work derived from or based upon the Work, or upon the Work and other pre-existing works. Adaptations may include works such as translations, derivative works, or any alterations and arrangements of any kind involving the Work. For purposes of this License, where the Work is a musical work, performance, or phonogram, the synchronization of the Work in timed-relation with a moving image is an Adaptation. For the avoidance of doubt, including the Work in a Collection is not an Adaptation.
+
+    i. "Collection" means a collection of literary or artistic works or other works or subject matter other than works listed in Section 1(b) which by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. For the avoidance of doubt, a Collection will not be considered as an Adaptation.
+
+2. Scope of this License. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright protection.
+
+3. License Grant. Subject to the terms and conditions of this License, the Licensor hereby grants You a worldwide, royalty-free, non-exclusive license to exercise the rights in the Work as follows:
+
+    a. to Reproduce, Distribute and Publicly Perform the Work, to incorporate the Work into one or more Collections, and to Reproduce, Distribute and Publicly Perform the Work as incorporated in the Collections; and,
+
+    b. to create, Reproduce, Distribute and Publicly Perform Adaptations, provided that You clearly label, demarcate or otherwise identify that changes were made to the original Work.
+
+    c. For the avoidance of doubt:
+
+        i. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License;
+
+        ii. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and,
+
+        iii. Voluntary License Schemes. To the extent possible, the Licensor waives the right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary licensing scheme.
+
+This License lasts for the duration of the term of the copyright in the Work licensed by the Licensor. The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by the Licensor are hereby reserved.
+
+4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:
+
+    a. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work (see section 8(a)). You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from a Licensor You must, to the extent practicable, remove from the Collection any credit (inclusive of any logo, trademark, official mark or official emblem) as required by Section 4(b), as requested. If You create an Adaptation, upon notice from a Licensor You must, to the extent practicable, remove from the Adaptation any credit (inclusive of any logo, trademark, official mark or official emblem) as required by Section 4(b), as requested.
+
+    b. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) any attributions that the Licensor indicates be associated with the Work as indicated in a copyright notice, (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that the Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and, (iv) consistent with Section 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation. The credit required by this Section 4(b) may be implemented in any reasonable manner; provided, however, that in the case of an Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributors to the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Licensor or others designated for attribution, of You or Your use of the Work, without the separate, express prior written permission of the Licensor or such others.
+
+    c. Except as otherwise agreed in writing by the Licensor, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the honor or reputation of the Licensor where moral rights apply.
+
+5. Representations, Warranties and Disclaimer
+
+THE LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE.
+
+6. Limitation on Liability
+
+IN NO EVENT WILL THE LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF THE LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+7. Termination
+
+    a. Subject to the terms and conditions set forth in this License, the license granted here lasts for the duration of the term of the copyright in the Work licensed by the Licensor as stated in Section 3. Notwithstanding the above, the Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated below.
+
+    b. If You fail to comply with this License, then this License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. Notwithstanding the foregoing, this License reinstates automatically as of the date the violation is cured, provided it is cured within 30 days of You discovering the violation, or upon express reinstatement by the Licensor. For the avoidance of doubt, this Section 7(b) does not affect any rights the Licensor may have to seek remedies for violations of this License by You.
+
+8. Miscellaneous
+
+    a. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.
+
+    b. Each time You Distribute or Publicly Perform an Adaptation, the Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.
+
+    c. If any provision of this License is invalid or unenforceable, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
+
+    d. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the Licensor.
+
+    e. This License constitutes the entire agreement between You and the Licensor with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. The Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.
+
+    f. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). Interpretation of the scope of the rights granted by the Licensor and the conditions imposed on You under this License, this License, and the rights and conditions set forth herein shall be made with reference to copyright as determined in accordance with general principles of international law, including the above mentioned conventions.
+
+    g. Nothing in this License constitutes or may be interpreted as a limitation upon or waiver of any privileges and immunities that may apply to the Licensor or You, including immunity from the legal processes of any jurisdiction, national court or other authority.
+
+    h. Where the Licensor is an IGO, any and all disputes arising under this License that cannot be settled amicably shall be resolved in accordance with the following procedure:
+
+        i. Pursuant to a notice of mediation communicated by reasonable means by either You or the Licensor to the other, the dispute shall be submitted to non-binding mediation conducted in accordance with rules designated by the Licensor in the copyright notice published with the Work, or if none then in accordance with those communicated in the notice of mediation. The language used in the mediation proceedings shall be English unless otherwise agreed.
+
+        ii. If any such dispute has not been settled within 45 days following the date on which the notice of mediation is provided, either You or the Licensor may, pursuant to a notice of arbitration communicated by reasonable means to the other, elect to have the dispute referred to and finally determined by arbitration. The arbitration shall be conducted in accordance with the rules designated by the Licensor in the copyright notice published with the Work, or if none then in accordance with the UNCITRAL Arbitration Rules as then in force. The arbitral tribunal shall consist of a sole arbitrator and the language of the proceedings shall be English unless otherwise agreed. The place of arbitration shall be where the Licensor has its headquarters. The arbitral proceedings shall be conducted remotely (e.g., via telephone conference or written submissions) whenever practicable.
+
+        iii. Interpretation of this License in any dispute submitted to mediation or arbitration shall be as set forth in Section 8(f), above.
+
+Creative Commons Notice
+
+Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of the Licensor.
+
+Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License.
+
+Creative Commons may be contacted at https://creativecommons.org/.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/cc-by-3.0-igo.json b/docs/cc-by-3.0-igo.json new file mode 100644 index 0000000000..1e36376600 --- /dev/null +++ b/docs/cc-by-3.0-igo.json @@ -0,0 +1,16 @@ +{ + "key": "cc-by-3.0-igo", + "short_name": "Creative Commons Attribution 3.0 IGO", + "name": "Creative Commons Attribution 3.0 IGO", + "category": "Permissive", + "owner": "Creative Commons", + "homepage_url": "https://creativecommons.org/licenses/by/3.0/igo", + "spdx_license_key": "CC-BY-3.0-IGO", + "text_urls": [ + "https://creativecommons.org/licenses/by/3.0/igo/legalcode" + ], + "minimum_coverage": 50, + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-3.0-igo.yml b/docs/cc-by-3.0-igo.yml new file mode 100644 index 0000000000..33336d2370 --- /dev/null +++ b/docs/cc-by-3.0-igo.yml @@ -0,0 +1,12 @@ +key: cc-by-3.0-igo +short_name: Creative Commons Attribution 3.0 IGO +name: Creative Commons Attribution 3.0 IGO +category: Permissive +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/by/3.0/igo +spdx_license_key: CC-BY-3.0-IGO +text_urls: + - https://creativecommons.org/licenses/by/3.0/igo/legalcode +minimum_coverage: 50 +ignorable_urls: + - https://creativecommons.org/ diff --git a/docs/cc-by-3.0-nl.LICENSE b/docs/cc-by-3.0-nl.LICENSE index 234e6d5cf0..e0ebc0956c 100644 --- a/docs/cc-by-3.0-nl.LICENSE +++ b/docs/cc-by-3.0-nl.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-3.0-nl +language: nl +short_name: Creative Commons Attribution 3.0 Netherlands +name: Creative Commons Attribution 3.0 Netherlands +category: Permissive +owner: Creative Commons +spdx_license_key: CC-BY-3.0-NL +other_urls: + - https://creativecommons.org/licenses/by/3.0/nl/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Naamsvermelding 3.0 CREATIVE COMMONS CORPORATION IS GEEN ADVOCATENPRAKTIJK EN VERLEENT GEEN JURIDISCHE DIENSTEN. DE VERSPREIDING VAN DEZE LICENTIE ROEPT GEEN JURIDISCHE RELATIE MET CREATIVE COMMONS IN HET LEVEN. CREATIVE COMMONS VERSPREIDT DEZE INFORMATIE 'AS-IS'. CREATIVE COMMONS STAAT NIET IN VOOR DE INHOUD VAN DE VERSTREKTE INFORMATIE EN SLUIT ALLE AANSPRAKELIJKHEID UIT VOOR ENIGERLEI SCHADE VOORTVLOEIEND UIT HET GEBRUIK VAN DEZE INFORMATIE INDIEN EN VOORZOVER DE WET NIET ANDERS BEPAALT. diff --git a/docs/cc-by-3.0-nl.html b/docs/cc-by-3.0-nl.html index abb7ab5139..eb65f43729 100644 --- a/docs/cc-by-3.0-nl.html +++ b/docs/cc-by-3.0-nl.html @@ -241,7 +241,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-3.0-nl.json b/docs/cc-by-3.0-nl.json index 55a0ee9649..2faeee64bd 100644 --- a/docs/cc-by-3.0-nl.json +++ b/docs/cc-by-3.0-nl.json @@ -1 +1,15 @@ -{"key": "cc-by-3.0-nl", "language": "nl", "short_name": "Creative Commons Attribution 3.0 Netherlands", "name": "Creative Commons Attribution 3.0 Netherlands", "category": "Permissive", "owner": "Creative Commons", "spdx_license_key": "CC-BY-3.0-NL", "other_urls": ["https://creativecommons.org/licenses/by/3.0/nl/legalcode"], "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-3.0-nl", + "language": "nl", + "short_name": "Creative Commons Attribution 3.0 Netherlands", + "name": "Creative Commons Attribution 3.0 Netherlands", + "category": "Permissive", + "owner": "Creative Commons", + "spdx_license_key": "CC-BY-3.0-NL", + "other_urls": [ + "https://creativecommons.org/licenses/by/3.0/nl/legalcode" + ], + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-3.0-us.LICENSE b/docs/cc-by-3.0-us.LICENSE index 82248fc82a..f27dc7c278 100644 --- a/docs/cc-by-3.0-us.LICENSE +++ b/docs/cc-by-3.0-us.LICENSE @@ -1,3 +1,18 @@ +--- +key: cc-by-3.0-us +short_name: CC-BY-3.0-US +name: Creative Commons Attribution 3.0 United States +category: Permissive +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by/3.0/us +spdx_license_key: CC-BY-3.0-US +other_urls: + - https://creativecommons.org/licenses/by/3.0/us/legalcode +minimum_coverage: 50 +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Attribution 3.0 United States CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-3.0-us.html b/docs/cc-by-3.0-us.html index 4a8316b44c..345b4a3611 100644 --- a/docs/cc-by-3.0-us.html +++ b/docs/cc-by-3.0-us.html @@ -234,7 +234,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-3.0-us.json b/docs/cc-by-3.0-us.json index 46e4074e14..1c898bbf73 100644 --- a/docs/cc-by-3.0-us.json +++ b/docs/cc-by-3.0-us.json @@ -1 +1,16 @@ -{"key": "cc-by-3.0-us", "short_name": "CC-BY-3.0-US", "name": "Creative Commons Attribution 3.0 United States", "category": "Permissive", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by/3.0/us", "spdx_license_key": "CC-BY-3.0-US", "other_urls": ["https://creativecommons.org/licenses/by/3.0/us/legalcode"], "minimum_coverage": 50, "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-3.0-us", + "short_name": "CC-BY-3.0-US", + "name": "Creative Commons Attribution 3.0 United States", + "category": "Permissive", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by/3.0/us", + "spdx_license_key": "CC-BY-3.0-US", + "other_urls": [ + "https://creativecommons.org/licenses/by/3.0/us/legalcode" + ], + "minimum_coverage": 50, + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-3.0.LICENSE b/docs/cc-by-3.0.LICENSE index 1a16e05564..8ba89e17a1 100644 --- a/docs/cc-by-3.0.LICENSE +++ b/docs/cc-by-3.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: cc-by-3.0 +short_name: CC-BY-3.0 +name: Creative Commons Attribution License 3.0 +category: Permissive +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by/3.0/ +spdx_license_key: CC-BY-3.0 +text_urls: + - http://creativecommons.org/licenses/by/3.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by/3.0/legalcode +minimum_coverage: 50 +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Legal Code Attribution 3.0 Unported @@ -316,4 +333,4 @@ Creative Commons Notice available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. - Creative Commons may be contacted at https://creativecommons.org/. + Creative Commons may be contacted at https://creativecommons.org/. \ No newline at end of file diff --git a/docs/cc-by-3.0.html b/docs/cc-by-3.0.html index 99c588fe12..f1e68a1841 100644 --- a/docs/cc-by-3.0.html +++ b/docs/cc-by-3.0.html @@ -467,8 +467,7 @@ available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. - Creative Commons may be contacted at https://creativecommons.org/. - + Creative Commons may be contacted at https://creativecommons.org/.
@@ -480,7 +479,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-3.0.json b/docs/cc-by-3.0.json index ee0b39f94b..da4c0fae57 100644 --- a/docs/cc-by-3.0.json +++ b/docs/cc-by-3.0.json @@ -1 +1,19 @@ -{"key": "cc-by-3.0", "short_name": "CC-BY-3.0", "name": "Creative Commons Attribution License 3.0", "category": "Permissive", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by/3.0/", "spdx_license_key": "CC-BY-3.0", "text_urls": ["http://creativecommons.org/licenses/by/3.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by/3.0/legalcode"], "minimum_coverage": 50, "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-3.0", + "short_name": "CC-BY-3.0", + "name": "Creative Commons Attribution License 3.0", + "category": "Permissive", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by/3.0/", + "spdx_license_key": "CC-BY-3.0", + "text_urls": [ + "http://creativecommons.org/licenses/by/3.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by/3.0/legalcode" + ], + "minimum_coverage": 50, + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-4.0.LICENSE b/docs/cc-by-4.0.LICENSE index 0fb847eb09..d7310805fb 100644 --- a/docs/cc-by-4.0.LICENSE +++ b/docs/cc-by-4.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-4.0 +short_name: CC-BY-4.0 +name: Creative Commons Attribution 4.0 International Public License +category: Permissive +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by/4.0/ +spdx_license_key: CC-BY-4.0 +text_urls: + - http://creativecommons.org/licenses/by/4.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by/4.0/legalcode +--- + Attribution 4.0 International ======================================================================= @@ -392,4 +406,4 @@ understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. +Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/docs/cc-by-4.0.html b/docs/cc-by-4.0.html index 6f95ff7988..4400f321bf 100644 --- a/docs/cc-by-4.0.html +++ b/docs/cc-by-4.0.html @@ -527,8 +527,7 @@ the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. - +Creative Commons may be contacted at creativecommons.org.
@@ -540,7 +539,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-4.0.json b/docs/cc-by-4.0.json index 9975200018..9a5ea4be3a 100644 --- a/docs/cc-by-4.0.json +++ b/docs/cc-by-4.0.json @@ -1 +1,15 @@ -{"key": "cc-by-4.0", "short_name": "CC-BY-4.0", "name": "Creative Commons Attribution 4.0 International Public License", "category": "Permissive", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by/4.0/", "spdx_license_key": "CC-BY-4.0", "text_urls": ["http://creativecommons.org/licenses/by/4.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by/4.0/legalcode"]} \ No newline at end of file +{ + "key": "cc-by-4.0", + "short_name": "CC-BY-4.0", + "name": "Creative Commons Attribution 4.0 International Public License", + "category": "Permissive", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by/4.0/", + "spdx_license_key": "CC-BY-4.0", + "text_urls": [ + "http://creativecommons.org/licenses/by/4.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by/4.0/legalcode" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-1.0.LICENSE b/docs/cc-by-nc-1.0.LICENSE index c8b156f0d7..2c4ce359cc 100644 --- a/docs/cc-by-nc-1.0.LICENSE +++ b/docs/cc-by-nc-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-1.0 +short_name: CC-BY-NC-1.0 +name: Creative Commons Attribution Non-Commercial 1.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc/1.0/ +spdx_license_key: CC-BY-NC-1.0 +text_urls: + - http://creativecommons.org/licenses/by-nc/1.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc/1.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NonCommercial 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-nc-1.0.html b/docs/cc-by-nc-1.0.html index d83ec8cce1..2efab604e4 100644 --- a/docs/cc-by-nc-1.0.html +++ b/docs/cc-by-nc-1.0.html @@ -209,7 +209,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-1.0.json b/docs/cc-by-nc-1.0.json index e0d5f364f9..ce673e20b3 100644 --- a/docs/cc-by-nc-1.0.json +++ b/docs/cc-by-nc-1.0.json @@ -1 +1,18 @@ -{"key": "cc-by-nc-1.0", "short_name": "CC-BY-NC-1.0", "name": "Creative Commons Attribution Non-Commercial 1.0", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nc/1.0/", "spdx_license_key": "CC-BY-NC-1.0", "text_urls": ["http://creativecommons.org/licenses/by-nc/1.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nc/1.0/legalcode"], "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-1.0", + "short_name": "CC-BY-NC-1.0", + "name": "Creative Commons Attribution Non-Commercial 1.0", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nc/1.0/", + "spdx_license_key": "CC-BY-NC-1.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-nc/1.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nc/1.0/legalcode" + ], + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-2.0.LICENSE b/docs/cc-by-nc-2.0.LICENSE index a5b5d647ef..bcb851398d 100644 --- a/docs/cc-by-nc-2.0.LICENSE +++ b/docs/cc-by-nc-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-2.0 +short_name: CC-BY-NC-2.0 +name: Creative Commons Attribution Non-Commercial 2.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc/2.0/ +spdx_license_key: CC-BY-NC-2.0 +text_urls: + - http://creativecommons.org/licenses/by-nc/2.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc/2.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NonCommercial 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-nc-2.0.html b/docs/cc-by-nc-2.0.html index cfb935d524..938f9e5853 100644 --- a/docs/cc-by-nc-2.0.html +++ b/docs/cc-by-nc-2.0.html @@ -212,7 +212,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-2.0.json b/docs/cc-by-nc-2.0.json index 93008f885d..716ed44971 100644 --- a/docs/cc-by-nc-2.0.json +++ b/docs/cc-by-nc-2.0.json @@ -1 +1,18 @@ -{"key": "cc-by-nc-2.0", "short_name": "CC-BY-NC-2.0", "name": "Creative Commons Attribution Non-Commercial 2.0", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nc/2.0/", "spdx_license_key": "CC-BY-NC-2.0", "text_urls": ["http://creativecommons.org/licenses/by-nc/2.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nc/2.0/legalcode"], "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-2.0", + "short_name": "CC-BY-NC-2.0", + "name": "Creative Commons Attribution Non-Commercial 2.0", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nc/2.0/", + "spdx_license_key": "CC-BY-NC-2.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-nc/2.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nc/2.0/legalcode" + ], + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-2.5.LICENSE b/docs/cc-by-nc-2.5.LICENSE index 6c20841e61..f5b6d5d746 100644 --- a/docs/cc-by-nc-2.5.LICENSE +++ b/docs/cc-by-nc-2.5.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-2.5 +short_name: CC-BY-NC-2.5 +name: Creative Commons Attribution Non-Commercial 2.5 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc/2.5/ +spdx_license_key: CC-BY-NC-2.5 +text_urls: + - http://creativecommons.org/licenses/by-nc/2.5/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc/2.5/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NonCommercial 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-nc-2.5.html b/docs/cc-by-nc-2.5.html index 71bc3bcec3..3244ef6e46 100644 --- a/docs/cc-by-nc-2.5.html +++ b/docs/cc-by-nc-2.5.html @@ -212,7 +212,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-2.5.json b/docs/cc-by-nc-2.5.json index 5f2b93ed1f..2770628d78 100644 --- a/docs/cc-by-nc-2.5.json +++ b/docs/cc-by-nc-2.5.json @@ -1 +1,18 @@ -{"key": "cc-by-nc-2.5", "short_name": "CC-BY-NC-2.5", "name": "Creative Commons Attribution Non-Commercial 2.5", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nc/2.5/", "spdx_license_key": "CC-BY-NC-2.5", "text_urls": ["http://creativecommons.org/licenses/by-nc/2.5/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nc/2.5/legalcode"], "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-2.5", + "short_name": "CC-BY-NC-2.5", + "name": "Creative Commons Attribution Non-Commercial 2.5", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nc/2.5/", + "spdx_license_key": "CC-BY-NC-2.5", + "text_urls": [ + "http://creativecommons.org/licenses/by-nc/2.5/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nc/2.5/legalcode" + ], + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-3.0-de.LICENSE b/docs/cc-by-nc-3.0-de.LICENSE index 5d11815286..77c8bebb77 100644 --- a/docs/cc-by-nc-3.0-de.LICENSE +++ b/docs/cc-by-nc-3.0-de.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nc-3.0-de +language: de +short_name: CC-BY-NC-3.0-DE +name: Creative Commons Attribution Non Commercial 3.0 Germany +category: Free Restricted +owner: Creative Commons +spdx_license_key: CC-BY-NC-3.0-DE +other_urls: + - https://creativecommons.org/licenses/by-nc/3.0/de/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Namensnennung - Keine kommerzielle Nutzung 3.0 Deutschland CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. @@ -107,4 +121,4 @@ Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. +Creative Commons kann kontaktiert werden über https://creativecommons.org/. \ No newline at end of file diff --git a/docs/cc-by-nc-3.0-de.html b/docs/cc-by-nc-3.0-de.html index 2660814657..8bb0a4c73c 100644 --- a/docs/cc-by-nc-3.0-de.html +++ b/docs/cc-by-nc-3.0-de.html @@ -242,8 +242,7 @@ Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. - +Creative Commons kann kontaktiert werden über https://creativecommons.org/.
@@ -255,7 +254,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-3.0-de.json b/docs/cc-by-nc-3.0-de.json index f44b8db95c..3ea44f01b2 100644 --- a/docs/cc-by-nc-3.0-de.json +++ b/docs/cc-by-nc-3.0-de.json @@ -1 +1,15 @@ -{"key": "cc-by-nc-3.0-de", "language": "de", "short_name": "CC-BY-NC-3.0-DE", "name": "Creative Commons Attribution Non Commercial 3.0 Germany", "category": "Free Restricted", "owner": "Creative Commons", "spdx_license_key": "CC-BY-NC-3.0-DE", "other_urls": ["https://creativecommons.org/licenses/by-nc/3.0/de/legalcode"], "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-3.0-de", + "language": "de", + "short_name": "CC-BY-NC-3.0-DE", + "name": "Creative Commons Attribution Non Commercial 3.0 Germany", + "category": "Free Restricted", + "owner": "Creative Commons", + "spdx_license_key": "CC-BY-NC-3.0-DE", + "other_urls": [ + "https://creativecommons.org/licenses/by-nc/3.0/de/legalcode" + ], + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-3.0.LICENSE b/docs/cc-by-nc-3.0.LICENSE index 197ec4de65..9a87b7ab04 100644 --- a/docs/cc-by-nc-3.0.LICENSE +++ b/docs/cc-by-nc-3.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: cc-by-nc-3.0 +short_name: CC-BY-NC-3.0 +name: Creative Commons Attribution Non-Commercial 3.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc/3.0/ +spdx_license_key: CC-BY-NC-3.0 +text_urls: + - http://creativecommons.org/licenses/by-nc/3.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc/3.0/legalcode +minimum_coverage: 30 +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Legal Code Attribution-NonCommercial 3.0 Unported @@ -331,4 +348,4 @@ Creative Commons Notice available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of the License. - Creative Commons may be contacted at https://creativecommons.org/. + Creative Commons may be contacted at https://creativecommons.org/. \ No newline at end of file diff --git a/docs/cc-by-nc-3.0.html b/docs/cc-by-nc-3.0.html index 2d42c4f3ae..7e594ff105 100644 --- a/docs/cc-by-nc-3.0.html +++ b/docs/cc-by-nc-3.0.html @@ -482,8 +482,7 @@ available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of the License. - Creative Commons may be contacted at https://creativecommons.org/. - + Creative Commons may be contacted at https://creativecommons.org/.
@@ -495,7 +494,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-3.0.json b/docs/cc-by-nc-3.0.json index c00a849235..6f5790fc07 100644 --- a/docs/cc-by-nc-3.0.json +++ b/docs/cc-by-nc-3.0.json @@ -1 +1,19 @@ -{"key": "cc-by-nc-3.0", "short_name": "CC-BY-NC-3.0", "name": "Creative Commons Attribution Non-Commercial 3.0", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nc/3.0/", "spdx_license_key": "CC-BY-NC-3.0", "text_urls": ["http://creativecommons.org/licenses/by-nc/3.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nc/3.0/legalcode"], "minimum_coverage": 30, "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-3.0", + "short_name": "CC-BY-NC-3.0", + "name": "Creative Commons Attribution Non-Commercial 3.0", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nc/3.0/", + "spdx_license_key": "CC-BY-NC-3.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-nc/3.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nc/3.0/legalcode" + ], + "minimum_coverage": 30, + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-4.0.LICENSE b/docs/cc-by-nc-4.0.LICENSE index 29bced11ce..ddc93a68ee 100644 --- a/docs/cc-by-nc-4.0.LICENSE +++ b/docs/cc-by-nc-4.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nc-4.0 +short_name: CC-BY-NC-4.0 +name: Creative Commons Attribution-NonCommercial 4.0 International Public License +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc/4.0/ +spdx_license_key: CC-BY-NC-4.0 +text_urls: + - http://creativecommons.org/licenses/by-nc/4.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc/4.0/legalcode +--- + Attribution-NonCommercial 4.0 International ======================================================================= @@ -404,4 +418,4 @@ understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. +Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/docs/cc-by-nc-4.0.html b/docs/cc-by-nc-4.0.html index 53df329c99..9b249b8660 100644 --- a/docs/cc-by-nc-4.0.html +++ b/docs/cc-by-nc-4.0.html @@ -539,8 +539,7 @@ the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. - +Creative Commons may be contacted at creativecommons.org.
@@ -552,7 +551,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-4.0.json b/docs/cc-by-nc-4.0.json index 8ec0781f23..03602661d0 100644 --- a/docs/cc-by-nc-4.0.json +++ b/docs/cc-by-nc-4.0.json @@ -1 +1,15 @@ -{"key": "cc-by-nc-4.0", "short_name": "CC-BY-NC-4.0", "name": "Creative Commons Attribution-NonCommercial 4.0 International Public License", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nc/4.0/", "spdx_license_key": "CC-BY-NC-4.0", "text_urls": ["http://creativecommons.org/licenses/by-nc/4.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nc/4.0/legalcode"]} \ No newline at end of file +{ + "key": "cc-by-nc-4.0", + "short_name": "CC-BY-NC-4.0", + "name": "Creative Commons Attribution-NonCommercial 4.0 International Public License", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nc/4.0/", + "spdx_license_key": "CC-BY-NC-4.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-nc/4.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nc/4.0/legalcode" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-nd-1.0.LICENSE b/docs/cc-by-nc-nd-1.0.LICENSE index 09b192f216..7ed944b323 100644 --- a/docs/cc-by-nc-nd-1.0.LICENSE +++ b/docs/cc-by-nc-nd-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: cc-by-nc-nd-1.0 +short_name: CC-BY-NC-ND-1.0 +name: Creative Commons Attribution Non-Commercial No Derivatives License 1.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nd-nc/1.0/ +spdx_license_key: CC-BY-NC-ND-1.0 +text_urls: + - http://creativecommons.org/licenses/by-nd-nc/1.0/ +other_urls: + - http://creativecommons.org/licenses/by-nd-nc/1.0/legalcode + - https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NoDerivs-NonCommercial 1.0 diff --git a/docs/cc-by-nc-nd-1.0.html b/docs/cc-by-nc-nd-1.0.html index e62c9ab901..882f4b8b81 100644 --- a/docs/cc-by-nc-nd-1.0.html +++ b/docs/cc-by-nc-nd-1.0.html @@ -210,7 +210,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-nd-1.0.json b/docs/cc-by-nc-nd-1.0.json index 8e9c3504af..16cd845218 100644 --- a/docs/cc-by-nc-nd-1.0.json +++ b/docs/cc-by-nc-nd-1.0.json @@ -1 +1,19 @@ -{"key": "cc-by-nc-nd-1.0", "short_name": "CC-BY-NC-ND-1.0", "name": "Creative Commons Attribution Non-Commercial No Derivatives License 1.0", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nd-nc/1.0/", "spdx_license_key": "CC-BY-NC-ND-1.0", "text_urls": ["http://creativecommons.org/licenses/by-nd-nc/1.0/"], "other_urls": ["http://creativecommons.org/licenses/by-nd-nc/1.0/legalcode", "https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode"], "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-nd-1.0", + "short_name": "CC-BY-NC-ND-1.0", + "name": "Creative Commons Attribution Non-Commercial No Derivatives License 1.0", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nd-nc/1.0/", + "spdx_license_key": "CC-BY-NC-ND-1.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-nd-nc/1.0/" + ], + "other_urls": [ + "http://creativecommons.org/licenses/by-nd-nc/1.0/legalcode", + "https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode" + ], + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-nd-2.0-at.LICENSE b/docs/cc-by-nc-nd-2.0-at.LICENSE index f848c78fb4..2c4f9d7fa6 100644 --- a/docs/cc-by-nc-nd-2.0-at.LICENSE +++ b/docs/cc-by-nc-nd-2.0-at.LICENSE @@ -1,5 +1,15 @@ - - +--- +key: cc-by-nc-nd-2.0-at +language: de +short_name: CC-BY-NC-ND-2.0-AT +name: Creative Commons Namensnennung - Nicht-kommerziell - Keine Bearbeitung 2.0 +category: Free Restricted +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/by-nc-nd/2.0/ +spdx_license_key: LicenseRef-scancode-cc-by-nc-nd-2.0-at +text_urls: + - https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode.at +--- Namensnennung - Nicht-kommerziell - Keine Bearbeitung 2.0 @@ -60,4 +70,4 @@ Nichts soll dahingehend ausgelegt werden, dass auf eine Bestimmung dieses Lizenz Dieser Lizenzvertrag stellt die vollständige Vereinbarung zwischen den Vertragsparteien hinsichtlich des Schutzgegenstandes dar. Es gibt keine weiteren ergänzenden Vereinbarungen oder mündlichen Abreden im Hinblick auf den Schutzgegenstand. Der Lizenzgeber ist an keine zusätzlichen Abreden gebunden, die aus irgendeiner Absprache mit Ihnen entstehen könnten. Der Lizenzvertrag kann nicht ohne eine übereinstimmende schriftliche Vereinbarung zwischen dem Lizenzgeber und Ihnen abgeändert werden. Auf diesen Lizenzvertrag findet das Recht der Bundesrepublik Österreich Anwendung. -« Zurück zu Commons Deed +« Zurück zu Commons Deed \ No newline at end of file diff --git a/docs/cc-by-nc-nd-2.0-at.html b/docs/cc-by-nc-nd-2.0-at.html index 0e76c0f204..7193243a0c 100644 --- a/docs/cc-by-nc-nd-2.0-at.html +++ b/docs/cc-by-nc-nd-2.0-at.html @@ -131,10 +131,7 @@
license_text
-

-
-
-Namensnennung - Nicht-kommerziell - Keine Bearbeitung 2.0
+    
Namensnennung - Nicht-kommerziell - Keine Bearbeitung 2.0
 
 
 CREATIVE COMMONS IST KEINE RECHTSANWALTSGESELLSCHAFT UND LEISTET KEINE RECHTSBERATUNG. DIE WEITERGABE DIESES LIZENZENTWURFES FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS ERBRINGT DIESE INFORMATIONEN OHNE GEWÄHR. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS IHREM GEBRAUCH ERGEBEN.
@@ -193,8 +190,7 @@
 Dieser Lizenzvertrag stellt die vollständige Vereinbarung zwischen den Vertragsparteien hinsichtlich des Schutzgegenstandes dar. Es gibt keine weiteren ergänzenden Vereinbarungen oder mündlichen Abreden im Hinblick auf den Schutzgegenstand. Der Lizenzgeber ist an keine zusätzlichen Abreden gebunden, die aus irgendeiner Absprache mit Ihnen entstehen könnten. Der Lizenzvertrag kann nicht ohne eine übereinstimmende schriftliche Vereinbarung zwischen dem Lizenzgeber und Ihnen abgeändert werden.
 Auf diesen Lizenzvertrag findet das Recht der Bundesrepublik Österreich Anwendung.
 
-« Zurück zu Commons Deed
-
+« Zurück zu Commons Deed
@@ -206,7 +202,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-nd-2.0-at.json b/docs/cc-by-nc-nd-2.0-at.json index ee6d9cb760..778d59a291 100644 --- a/docs/cc-by-nc-nd-2.0-at.json +++ b/docs/cc-by-nc-nd-2.0-at.json @@ -1 +1,13 @@ -{"key": "cc-by-nc-nd-2.0-at", "language": "de", "short_name": "CC-BY-NC-ND-2.0-AT", "name": "Creative Commons Namensnennung - Nicht-kommerziell - Keine Bearbeitung 2.0", "category": "Free Restricted", "owner": "Creative Commons", "homepage_url": "https://creativecommons.org/licenses/by-nc-nd/2.0/", "spdx_license_key": "LicenseRef-scancode-cc-by-nc-nd-2.0-at", "text_urls": ["https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode.at"]} \ No newline at end of file +{ + "key": "cc-by-nc-nd-2.0-at", + "language": "de", + "short_name": "CC-BY-NC-ND-2.0-AT", + "name": "Creative Commons Namensnennung - Nicht-kommerziell - Keine Bearbeitung 2.0", + "category": "Free Restricted", + "owner": "Creative Commons", + "homepage_url": "https://creativecommons.org/licenses/by-nc-nd/2.0/", + "spdx_license_key": "LicenseRef-scancode-cc-by-nc-nd-2.0-at", + "text_urls": [ + "https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode.at" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-nd-2.0-au.LICENSE b/docs/cc-by-nc-nd-2.0-au.LICENSE index 71be32a7d5..19c7e13ae6 100644 --- a/docs/cc-by-nc-nd-2.0-au.LICENSE +++ b/docs/cc-by-nc-nd-2.0-au.LICENSE @@ -1,3 +1,15 @@ +--- +key: cc-by-nc-nd-2.0-au +short_name: CC-BY-NC-ND-2.0-AU +name: Creative Commons Attribution Non-Commercial No Derivatives License 2.0 Austrialis +category: Source-available +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/by-nc-nd/2.0/au/ +spdx_license_key: LicenseRef-scancode-cc-by-nc-nd-2.0-au +text_urls: + - https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode.au +--- + Attribution-NonCommercial-NoDerivs 2.0 Australia @@ -293,5 +305,4 @@ communication from You. This Licence may not be modified without the mutual written agreement of the Licensor and You. The construction, validity and performance of this Licence shall be -governed by the laws in force in New South Wales, Australia. - +governed by the laws in force in New South Wales, Australia. \ No newline at end of file diff --git a/docs/cc-by-nc-nd-2.0-au.html b/docs/cc-by-nc-nd-2.0-au.html index 94431a8d4b..0029bc52e9 100644 --- a/docs/cc-by-nc-nd-2.0-au.html +++ b/docs/cc-by-nc-nd-2.0-au.html @@ -419,9 +419,7 @@ mutual written agreement of the Licensor and You. The construction, validity and performance of this Licence shall be -governed by the laws in force in New South Wales, Australia. - - +governed by the laws in force in New South Wales, Australia.
@@ -433,7 +431,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-nd-2.0-au.json b/docs/cc-by-nc-nd-2.0-au.json index c7da50c9af..a61164904e 100644 --- a/docs/cc-by-nc-nd-2.0-au.json +++ b/docs/cc-by-nc-nd-2.0-au.json @@ -1 +1,12 @@ -{"key": "cc-by-nc-nd-2.0-au", "short_name": "CC-BY-NC-ND-2.0-AU", "name": "Creative Commons Attribution Non-Commercial No Derivatives License 2.0 Austrialis", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "https://creativecommons.org/licenses/by-nc-nd/2.0/au/", "spdx_license_key": "LicenseRef-scancode-cc-by-nc-nd-2.0-au", "text_urls": ["https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode.au"]} \ No newline at end of file +{ + "key": "cc-by-nc-nd-2.0-au", + "short_name": "CC-BY-NC-ND-2.0-AU", + "name": "Creative Commons Attribution Non-Commercial No Derivatives License 2.0 Austrialis", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "https://creativecommons.org/licenses/by-nc-nd/2.0/au/", + "spdx_license_key": "LicenseRef-scancode-cc-by-nc-nd-2.0-au", + "text_urls": [ + "https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode.au" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-nd-2.0.LICENSE b/docs/cc-by-nc-nd-2.0.LICENSE index 7d5b307550..7d5e92c471 100644 --- a/docs/cc-by-nc-nd-2.0.LICENSE +++ b/docs/cc-by-nc-nd-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-nd-2.0 +short_name: CC-BY-NC-ND-2.0 +name: Creative Commons Attribution Non-Commercial No Derivatives License 2.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-nd/2.0/ +spdx_license_key: CC-BY-NC-ND-2.0 +text_urls: + - http://creativecommons.org/licenses/by-nc-nd/2.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NonCommercial-NoDerivs 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE diff --git a/docs/cc-by-nc-nd-2.0.html b/docs/cc-by-nc-nd-2.0.html index d1d5403ceb..4a9d36ce3e 100644 --- a/docs/cc-by-nc-nd-2.0.html +++ b/docs/cc-by-nc-nd-2.0.html @@ -392,7 +392,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-nd-2.0.json b/docs/cc-by-nc-nd-2.0.json index 4cb59d9e72..fc02208561 100644 --- a/docs/cc-by-nc-nd-2.0.json +++ b/docs/cc-by-nc-nd-2.0.json @@ -1 +1,18 @@ -{"key": "cc-by-nc-nd-2.0", "short_name": "CC-BY-NC-ND-2.0", "name": "Creative Commons Attribution Non-Commercial No Derivatives License 2.0", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nc-nd/2.0/", "spdx_license_key": "CC-BY-NC-ND-2.0", "text_urls": ["http://creativecommons.org/licenses/by-nc-nd/2.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode"], "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-nd-2.0", + "short_name": "CC-BY-NC-ND-2.0", + "name": "Creative Commons Attribution Non-Commercial No Derivatives License 2.0", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nc-nd/2.0/", + "spdx_license_key": "CC-BY-NC-ND-2.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-nc-nd/2.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode" + ], + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-nd-2.5.LICENSE b/docs/cc-by-nc-nd-2.5.LICENSE index 9b5377747b..97e753fe74 100644 --- a/docs/cc-by-nc-nd-2.5.LICENSE +++ b/docs/cc-by-nc-nd-2.5.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-nd-2.5 +short_name: CC-BY-NC-ND-2.5 +name: Creative Commons Attribution Non-Commercial No Derivatives License 2.5 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-nd/2.5/ +spdx_license_key: CC-BY-NC-ND-2.5 +text_urls: + - http://creativecommons.org/licenses/by-nc-nd/2.5/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NonCommercial-NoDerivs 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-nc-nd-2.5.html b/docs/cc-by-nc-nd-2.5.html index 70f67df509..e71ccd66da 100644 --- a/docs/cc-by-nc-nd-2.5.html +++ b/docs/cc-by-nc-nd-2.5.html @@ -209,7 +209,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-nd-2.5.json b/docs/cc-by-nc-nd-2.5.json index 78ad393eae..38a385ae18 100644 --- a/docs/cc-by-nc-nd-2.5.json +++ b/docs/cc-by-nc-nd-2.5.json @@ -1 +1,18 @@ -{"key": "cc-by-nc-nd-2.5", "short_name": "CC-BY-NC-ND-2.5", "name": "Creative Commons Attribution Non-Commercial No Derivatives License 2.5", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nc-nd/2.5/", "spdx_license_key": "CC-BY-NC-ND-2.5", "text_urls": ["http://creativecommons.org/licenses/by-nc-nd/2.5/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode"], "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-nd-2.5", + "short_name": "CC-BY-NC-ND-2.5", + "name": "Creative Commons Attribution Non-Commercial No Derivatives License 2.5", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nc-nd/2.5/", + "spdx_license_key": "CC-BY-NC-ND-2.5", + "text_urls": [ + "http://creativecommons.org/licenses/by-nc-nd/2.5/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode" + ], + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-nd-3.0-de.LICENSE b/docs/cc-by-nc-nd-3.0-de.LICENSE index 06d59d675a..42fa73b942 100644 --- a/docs/cc-by-nc-nd-3.0-de.LICENSE +++ b/docs/cc-by-nc-nd-3.0-de.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nc-nd-3.0-de +language: de +short_name: CC-BY-NC-ND-3.0-DE +name: Creative Commons Attribution Non Commercial No Derivatives 3.0 Germany +category: Free Restricted +owner: Creative Commons +spdx_license_key: CC-BY-NC-ND-3.0-DE +other_urls: + - https://creativecommons.org/licenses/by-nc-nd/3.0/de/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Namensnennung - Keine kommerzielle Nutzung - Keine Bearbeitungen 3.0 Deutschland CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. @@ -98,4 +112,4 @@ Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. +Creative Commons kann kontaktiert werden über https://creativecommons.org/. \ No newline at end of file diff --git a/docs/cc-by-nc-nd-3.0-de.html b/docs/cc-by-nc-nd-3.0-de.html index ddeb524e0b..bbbd93c2bd 100644 --- a/docs/cc-by-nc-nd-3.0-de.html +++ b/docs/cc-by-nc-nd-3.0-de.html @@ -233,8 +233,7 @@ Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. - +Creative Commons kann kontaktiert werden über https://creativecommons.org/.
@@ -246,7 +245,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-nd-3.0-de.json b/docs/cc-by-nc-nd-3.0-de.json index 0342361dd7..94ea4dd2ec 100644 --- a/docs/cc-by-nc-nd-3.0-de.json +++ b/docs/cc-by-nc-nd-3.0-de.json @@ -1 +1,15 @@ -{"key": "cc-by-nc-nd-3.0-de", "language": "de", "short_name": "CC-BY-NC-ND-3.0-DE", "name": "Creative Commons Attribution Non Commercial No Derivatives 3.0 Germany", "category": "Free Restricted", "owner": "Creative Commons", "spdx_license_key": "CC-BY-NC-ND-3.0-DE", "other_urls": ["https://creativecommons.org/licenses/by-nc-nd/3.0/de/legalcode"], "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-nd-3.0-de", + "language": "de", + "short_name": "CC-BY-NC-ND-3.0-DE", + "name": "Creative Commons Attribution Non Commercial No Derivatives 3.0 Germany", + "category": "Free Restricted", + "owner": "Creative Commons", + "spdx_license_key": "CC-BY-NC-ND-3.0-DE", + "other_urls": [ + "https://creativecommons.org/licenses/by-nc-nd/3.0/de/legalcode" + ], + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-nd-3.0-igo.LICENSE b/docs/cc-by-nc-nd-3.0-igo.LICENSE index 4e9ea8e860..28446ca835 100644 --- a/docs/cc-by-nc-nd-3.0-igo.LICENSE +++ b/docs/cc-by-nc-nd-3.0-igo.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nc-nd-3.0-igo +short_name: CC-BY-NC-ND-3.0-IGO +name: Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO +category: Source-available +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/by-nc-nd/3.0/igo/ +spdx_license_key: CC-BY-NC-ND-3.0-IGO +text_urls: + - https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Attribution-NonCommercial-NoDerivs 3.0 IGO CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. THE LICENSOR IS NOT NECESSARILY AN INTERGOVERNMENTAL ORGANIZATION (IGO), AS DEFINED IN THE LICENSE BELOW. diff --git a/docs/cc-by-nc-nd-3.0-igo.html b/docs/cc-by-nc-nd-3.0-igo.html index 4352d456c4..18f3505e19 100644 --- a/docs/cc-by-nc-nd-3.0-igo.html +++ b/docs/cc-by-nc-nd-3.0-igo.html @@ -200,7 +200,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-nd-3.0-igo.json b/docs/cc-by-nc-nd-3.0-igo.json index 361de0bcdf..ced3441d31 100644 --- a/docs/cc-by-nc-nd-3.0-igo.json +++ b/docs/cc-by-nc-nd-3.0-igo.json @@ -1 +1,15 @@ -{"key": "cc-by-nc-nd-3.0-igo", "short_name": "CC-BY-NC-ND-3.0-IGO", "name": "Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "https://creativecommons.org/licenses/by-nc-nd/3.0/igo/", "spdx_license_key": "CC-BY-NC-ND-3.0-IGO", "text_urls": ["https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode"], "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-nd-3.0-igo", + "short_name": "CC-BY-NC-ND-3.0-IGO", + "name": "Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "https://creativecommons.org/licenses/by-nc-nd/3.0/igo/", + "spdx_license_key": "CC-BY-NC-ND-3.0-IGO", + "text_urls": [ + "https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode" + ], + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-nd-3.0.LICENSE b/docs/cc-by-nc-nd-3.0.LICENSE index 30b08e74db..91b6e681d8 100644 --- a/docs/cc-by-nc-nd-3.0.LICENSE +++ b/docs/cc-by-nc-nd-3.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-nd-3.0 +short_name: CC-BY-NC-ND-3.0 +name: Creative Commons Attribution Non-Commercial No Derivatives License 3.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-nd/3.0/ +spdx_license_key: CC-BY-NC-ND-3.0 +text_urls: + - http://creativecommons.org/licenses/by-nc-nd/3.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Legal Code Attribution-NonCommercial-NoDerivs 3.0 Unported @@ -305,4 +321,4 @@ Creative Commons Notice available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. - Creative Commons may be contacted at https://creativecommons.org/. + Creative Commons may be contacted at https://creativecommons.org/. \ No newline at end of file diff --git a/docs/cc-by-nc-nd-3.0.html b/docs/cc-by-nc-nd-3.0.html index 5a131043ee..e17c66cb74 100644 --- a/docs/cc-by-nc-nd-3.0.html +++ b/docs/cc-by-nc-nd-3.0.html @@ -449,8 +449,7 @@ available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. - Creative Commons may be contacted at https://creativecommons.org/. - + Creative Commons may be contacted at https://creativecommons.org/.
@@ -462,7 +461,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-nd-3.0.json b/docs/cc-by-nc-nd-3.0.json index 4622a08135..8a53fc8fa1 100644 --- a/docs/cc-by-nc-nd-3.0.json +++ b/docs/cc-by-nc-nd-3.0.json @@ -1 +1,18 @@ -{"key": "cc-by-nc-nd-3.0", "short_name": "CC-BY-NC-ND-3.0", "name": "Creative Commons Attribution Non-Commercial No Derivatives License 3.0", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nc-nd/3.0/", "spdx_license_key": "CC-BY-NC-ND-3.0", "text_urls": ["http://creativecommons.org/licenses/by-nc-nd/3.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode"], "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-nd-3.0", + "short_name": "CC-BY-NC-ND-3.0", + "name": "Creative Commons Attribution Non-Commercial No Derivatives License 3.0", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nc-nd/3.0/", + "spdx_license_key": "CC-BY-NC-ND-3.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-nc-nd/3.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode" + ], + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-nd-4.0.LICENSE b/docs/cc-by-nc-nd-4.0.LICENSE index 4d1dc4f87b..da8fbe879e 100644 --- a/docs/cc-by-nc-nd-4.0.LICENSE +++ b/docs/cc-by-nc-nd-4.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nc-nd-4.0 +short_name: CC-BY-NC-ND-4.0 +name: Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-nd/4.0/ +spdx_license_key: CC-BY-NC-ND-4.0 +text_urls: + - http://creativecommons.org/licenses/by-nc-nd/4.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode +--- + Attribution-NonCommercial-NoDerivatives 4.0 International ======================================================================= @@ -399,4 +413,4 @@ understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. +Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/docs/cc-by-nc-nd-4.0.html b/docs/cc-by-nc-nd-4.0.html index 493b4ee117..cd0d155d51 100644 --- a/docs/cc-by-nc-nd-4.0.html +++ b/docs/cc-by-nc-nd-4.0.html @@ -534,8 +534,7 @@ the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. - +Creative Commons may be contacted at creativecommons.org.
@@ -547,7 +546,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-nd-4.0.json b/docs/cc-by-nc-nd-4.0.json index 9675857d22..3cd4c10efa 100644 --- a/docs/cc-by-nc-nd-4.0.json +++ b/docs/cc-by-nc-nd-4.0.json @@ -1 +1,15 @@ -{"key": "cc-by-nc-nd-4.0", "short_name": "CC-BY-NC-ND-4.0", "name": "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", "spdx_license_key": "CC-BY-NC-ND-4.0", "text_urls": ["http://creativecommons.org/licenses/by-nc-nd/4.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode"]} \ No newline at end of file +{ + "key": "cc-by-nc-nd-4.0", + "short_name": "CC-BY-NC-ND-4.0", + "name": "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "spdx_license_key": "CC-BY-NC-ND-4.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-nc-nd/4.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-sa-1.0.LICENSE b/docs/cc-by-nc-sa-1.0.LICENSE index d2de210b14..79bca8dcb6 100644 --- a/docs/cc-by-nc-sa-1.0.LICENSE +++ b/docs/cc-by-nc-sa-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-sa-1.0 +short_name: CC-BY-NC-SA-1.0 +name: Creative Commons Attribution Non-Commercial Share Alike License 1.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-sa/1.0/ +spdx_license_key: CC-BY-NC-SA-1.0 +text_urls: + - http://creativecommons.org/licenses/by-nc-sa/1.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NonCommercial-ShareAlike 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-nc-sa-1.0.html b/docs/cc-by-nc-sa-1.0.html index abf7f0da31..e5db1ed50a 100644 --- a/docs/cc-by-nc-sa-1.0.html +++ b/docs/cc-by-nc-sa-1.0.html @@ -210,7 +210,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-sa-1.0.json b/docs/cc-by-nc-sa-1.0.json index e2f494d836..f364b7fd45 100644 --- a/docs/cc-by-nc-sa-1.0.json +++ b/docs/cc-by-nc-sa-1.0.json @@ -1 +1,18 @@ -{"key": "cc-by-nc-sa-1.0", "short_name": "CC-BY-NC-SA-1.0", "name": "Creative Commons Attribution Non-Commercial Share Alike License 1.0", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nc-sa/1.0/", "spdx_license_key": "CC-BY-NC-SA-1.0", "text_urls": ["http://creativecommons.org/licenses/by-nc-sa/1.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode"], "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-sa-1.0", + "short_name": "CC-BY-NC-SA-1.0", + "name": "Creative Commons Attribution Non-Commercial Share Alike License 1.0", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nc-sa/1.0/", + "spdx_license_key": "CC-BY-NC-SA-1.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-nc-sa/1.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode" + ], + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-sa-2.0-fr.LICENSE b/docs/cc-by-nc-sa-2.0-fr.LICENSE index d2792be460..a5a990c7c2 100644 --- a/docs/cc-by-nc-sa-2.0-fr.LICENSE +++ b/docs/cc-by-nc-sa-2.0-fr.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nc-sa-2.0-fr +language: fr +short_name: CC-BY-NC-SA-2.0-FR +name: Creative Commons Attribution-NonCommercial-ShareAlike 2.0 France +category: Source-available +owner: Creative Commons +spdx_license_key: CC-BY-NC-SA-2.0-FR +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/2.0/fr/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Paternité - Pas d'Utilisation Commerciale - Partage Des Conditions Initiales A l'Identique 2.0 Creative Commons n'est pas un cabinet d'avocats et ne fournit pas de services de conseil juridique. La distribution de la présente version de ce contrat ne crée aucune relation juridique entre les parties au contrat présenté ci-après et Creative Commons. Creative Commons fournit cette offre de contrat-type en l'état, à seule fin d'information. Creative Commons ne saurait être tenu responsable des éventuels préjudices résultant du contenu ou de l'utilisation de ce contrat. diff --git a/docs/cc-by-nc-sa-2.0-fr.html b/docs/cc-by-nc-sa-2.0-fr.html index 5379173c9e..097ce26b74 100644 --- a/docs/cc-by-nc-sa-2.0-fr.html +++ b/docs/cc-by-nc-sa-2.0-fr.html @@ -237,7 +237,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-sa-2.0-fr.json b/docs/cc-by-nc-sa-2.0-fr.json index 8a906237dc..6bb8faef40 100644 --- a/docs/cc-by-nc-sa-2.0-fr.json +++ b/docs/cc-by-nc-sa-2.0-fr.json @@ -1 +1,15 @@ -{"key": "cc-by-nc-sa-2.0-fr", "language": "fr", "short_name": "CC-BY-NC-SA-2.0-FR", "name": "Creative Commons Attribution-NonCommercial-ShareAlike 2.0 France", "category": "Source-available", "owner": "Creative Commons", "spdx_license_key": "CC-BY-NC-SA-2.0-FR", "other_urls": ["https://creativecommons.org/licenses/by-nc-sa/2.0/fr/legalcode"], "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-sa-2.0-fr", + "language": "fr", + "short_name": "CC-BY-NC-SA-2.0-FR", + "name": "Creative Commons Attribution-NonCommercial-ShareAlike 2.0 France", + "category": "Source-available", + "owner": "Creative Commons", + "spdx_license_key": "CC-BY-NC-SA-2.0-FR", + "other_urls": [ + "https://creativecommons.org/licenses/by-nc-sa/2.0/fr/legalcode" + ], + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-sa-2.0-uk.LICENSE b/docs/cc-by-nc-sa-2.0-uk.LICENSE index a4b3544397..401f694ed4 100644 --- a/docs/cc-by-nc-sa-2.0-uk.LICENSE +++ b/docs/cc-by-nc-sa-2.0-uk.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nc-sa-2.0-uk +short_name: CC-BY-NC-SA-2.0-UK +name: Creative Commons Attribution Non Commercial Share Alike 2.0 England and Wales +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-sa/2.0/uk/ +spdx_license_key: CC-BY-NC-SA-2.0-UK +text_urls: + - https://creativecommons.org/licenses/by-nc-sa/2.0/uk/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Attribution - Non-Commercial - Share-Alike 2.0 England and Wales CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-nc-sa-2.0-uk.html b/docs/cc-by-nc-sa-2.0-uk.html index e86e8df889..bc66fc85e5 100644 --- a/docs/cc-by-nc-sa-2.0-uk.html +++ b/docs/cc-by-nc-sa-2.0-uk.html @@ -293,7 +293,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-sa-2.0-uk.json b/docs/cc-by-nc-sa-2.0-uk.json index 37ea5d3ffd..f5cfa11c4a 100644 --- a/docs/cc-by-nc-sa-2.0-uk.json +++ b/docs/cc-by-nc-sa-2.0-uk.json @@ -1 +1,15 @@ -{"key": "cc-by-nc-sa-2.0-uk", "short_name": "CC-BY-NC-SA-2.0-UK", "name": "Creative Commons Attribution Non Commercial Share Alike 2.0 England and Wales", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nc-sa/2.0/uk/", "spdx_license_key": "CC-BY-NC-SA-2.0-UK", "text_urls": ["https://creativecommons.org/licenses/by-nc-sa/2.0/uk/legalcode"], "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-sa-2.0-uk", + "short_name": "CC-BY-NC-SA-2.0-UK", + "name": "Creative Commons Attribution Non Commercial Share Alike 2.0 England and Wales", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nc-sa/2.0/uk/", + "spdx_license_key": "CC-BY-NC-SA-2.0-UK", + "text_urls": [ + "https://creativecommons.org/licenses/by-nc-sa/2.0/uk/legalcode" + ], + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-sa-2.0.LICENSE b/docs/cc-by-nc-sa-2.0.LICENSE index 4d35af4cf0..ad66063f9e 100644 --- a/docs/cc-by-nc-sa-2.0.LICENSE +++ b/docs/cc-by-nc-sa-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-sa-2.0 +short_name: CC-BY-NC-SA-2.0 +name: Creative Commons Attribution Non-Commercial Share Alike License 2.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-sa/2.0/ +spdx_license_key: CC-BY-NC-SA-2.0 +text_urls: + - http://creativecommons.org/licenses/by-nc-sa/2.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NonCommercial-ShareAlike 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-nc-sa-2.0.html b/docs/cc-by-nc-sa-2.0.html index e9de787ecb..96df334ad6 100644 --- a/docs/cc-by-nc-sa-2.0.html +++ b/docs/cc-by-nc-sa-2.0.html @@ -214,7 +214,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-sa-2.0.json b/docs/cc-by-nc-sa-2.0.json index 8913837c7c..92642efb25 100644 --- a/docs/cc-by-nc-sa-2.0.json +++ b/docs/cc-by-nc-sa-2.0.json @@ -1 +1,18 @@ -{"key": "cc-by-nc-sa-2.0", "short_name": "CC-BY-NC-SA-2.0", "name": "Creative Commons Attribution Non-Commercial Share Alike License 2.0", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nc-sa/2.0/", "spdx_license_key": "CC-BY-NC-SA-2.0", "text_urls": ["http://creativecommons.org/licenses/by-nc-sa/2.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode"], "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-sa-2.0", + "short_name": "CC-BY-NC-SA-2.0", + "name": "Creative Commons Attribution Non-Commercial Share Alike License 2.0", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nc-sa/2.0/", + "spdx_license_key": "CC-BY-NC-SA-2.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-nc-sa/2.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode" + ], + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-sa-2.5.LICENSE b/docs/cc-by-nc-sa-2.5.LICENSE index 80ec4ec354..60a6d810cc 100644 --- a/docs/cc-by-nc-sa-2.5.LICENSE +++ b/docs/cc-by-nc-sa-2.5.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-sa-2.5 +short_name: CC-BY-NC-SA-2.5 +name: Creative Commons Attribution Non-Commercial Share Alike License 2.5 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-sa/2.5/ +spdx_license_key: CC-BY-NC-SA-2.5 +text_urls: + - http://creativecommons.org/licenses/by-nc-sa/2.5/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NonCommercial-ShareAlike 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-nc-sa-2.5.html b/docs/cc-by-nc-sa-2.5.html index 305fcb05b9..36a7cf9257 100644 --- a/docs/cc-by-nc-sa-2.5.html +++ b/docs/cc-by-nc-sa-2.5.html @@ -214,7 +214,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-sa-2.5.json b/docs/cc-by-nc-sa-2.5.json index e72a6a3d29..b8d1a56973 100644 --- a/docs/cc-by-nc-sa-2.5.json +++ b/docs/cc-by-nc-sa-2.5.json @@ -1 +1,18 @@ -{"key": "cc-by-nc-sa-2.5", "short_name": "CC-BY-NC-SA-2.5", "name": "Creative Commons Attribution Non-Commercial Share Alike License 2.5", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nc-sa/2.5/", "spdx_license_key": "CC-BY-NC-SA-2.5", "text_urls": ["http://creativecommons.org/licenses/by-nc-sa/2.5/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode"], "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-sa-2.5", + "short_name": "CC-BY-NC-SA-2.5", + "name": "Creative Commons Attribution Non-Commercial Share Alike License 2.5", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nc-sa/2.5/", + "spdx_license_key": "CC-BY-NC-SA-2.5", + "text_urls": [ + "http://creativecommons.org/licenses/by-nc-sa/2.5/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode" + ], + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-sa-3.0-de.LICENSE b/docs/cc-by-nc-sa-3.0-de.LICENSE index ab3813ddba..54dd89a24e 100644 --- a/docs/cc-by-nc-sa-3.0-de.LICENSE +++ b/docs/cc-by-nc-sa-3.0-de.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nc-sa-3.0-de +language: de +short_name: CC-BY-NC-SA-3.0-DE +name: Creative Commons Attribution Non Commercial Share Alike 3.0 Germany +category: Source-available +owner: Creative Commons +spdx_license_key: CC-BY-NC-SA-3.0-DE +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/3.0/de/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Namensnennung - Keine kommerzielle Nutzung - Weitergabe unter gleichen Bedingungen 3.0 Deutschland CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. @@ -122,4 +136,4 @@ Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. +Creative Commons kann kontaktiert werden über https://creativecommons.org/. \ No newline at end of file diff --git a/docs/cc-by-nc-sa-3.0-de.html b/docs/cc-by-nc-sa-3.0-de.html index 73eda70373..af2a9a282d 100644 --- a/docs/cc-by-nc-sa-3.0-de.html +++ b/docs/cc-by-nc-sa-3.0-de.html @@ -257,8 +257,7 @@ Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. - +Creative Commons kann kontaktiert werden über https://creativecommons.org/.
@@ -270,7 +269,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-sa-3.0-de.json b/docs/cc-by-nc-sa-3.0-de.json index dff8d1c55c..9c8c278433 100644 --- a/docs/cc-by-nc-sa-3.0-de.json +++ b/docs/cc-by-nc-sa-3.0-de.json @@ -1 +1,15 @@ -{"key": "cc-by-nc-sa-3.0-de", "language": "de", "short_name": "CC-BY-NC-SA-3.0-DE", "name": "Creative Commons Attribution Non Commercial Share Alike 3.0 Germany", "category": "Source-available", "owner": "Creative Commons", "spdx_license_key": "CC-BY-NC-SA-3.0-DE", "other_urls": ["https://creativecommons.org/licenses/by-nc-sa/3.0/de/legalcode"], "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-sa-3.0-de", + "language": "de", + "short_name": "CC-BY-NC-SA-3.0-DE", + "name": "Creative Commons Attribution Non Commercial Share Alike 3.0 Germany", + "category": "Source-available", + "owner": "Creative Commons", + "spdx_license_key": "CC-BY-NC-SA-3.0-DE", + "other_urls": [ + "https://creativecommons.org/licenses/by-nc-sa/3.0/de/legalcode" + ], + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-sa-3.0-igo.LICENSE b/docs/cc-by-nc-sa-3.0-igo.LICENSE index c65633bb0c..bd42228a8a 100644 --- a/docs/cc-by-nc-sa-3.0-igo.LICENSE +++ b/docs/cc-by-nc-sa-3.0-igo.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-sa-3.0-igo +short_name: CC-BY-NC-SA-3.0-IGO +name: Creative Commons Attribution Non Commercial Share Alike 3.0 IGO +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-sa/3.0/igo/ +spdx_license_key: CC-BY-NC-SA-3.0-IGO +text_urls: + - https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Attribution-NonCommercial-ShareAlike 3.0 IGO CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. THE LICENSOR IS NOT NECESSARILY AN INTERGOVERNMENTAL ORGANIZATION (IGO), AS DEFINED IN THE LICENSE BELOW. diff --git a/docs/cc-by-nc-sa-3.0-igo.html b/docs/cc-by-nc-sa-3.0-igo.html index 86aea14378..f3e378fec3 100644 --- a/docs/cc-by-nc-sa-3.0-igo.html +++ b/docs/cc-by-nc-sa-3.0-igo.html @@ -258,7 +258,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-sa-3.0-igo.json b/docs/cc-by-nc-sa-3.0-igo.json index c05cd69c8a..27258f09dc 100644 --- a/docs/cc-by-nc-sa-3.0-igo.json +++ b/docs/cc-by-nc-sa-3.0-igo.json @@ -1 +1,18 @@ -{"key": "cc-by-nc-sa-3.0-igo", "short_name": "CC-BY-NC-SA-3.0-IGO", "name": "Creative Commons Attribution Non Commercial Share Alike 3.0 IGO", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nc-sa/3.0/igo/", "spdx_license_key": "CC-BY-NC-SA-3.0-IGO", "text_urls": ["https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode"], "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-sa-3.0-igo", + "short_name": "CC-BY-NC-SA-3.0-IGO", + "name": "Creative Commons Attribution Non Commercial Share Alike 3.0 IGO", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nc-sa/3.0/igo/", + "spdx_license_key": "CC-BY-NC-SA-3.0-IGO", + "text_urls": [ + "https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode" + ], + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-sa-3.0-us.LICENSE b/docs/cc-by-nc-sa-3.0-us.LICENSE index f25755a51c..a88572c742 100644 --- a/docs/cc-by-nc-sa-3.0-us.LICENSE +++ b/docs/cc-by-nc-sa-3.0-us.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-sa-3.0-us +short_name: CC-BY-NC-SA-3.0-US +name: Creative Commons Attribution Non-Commercial Share Alike License 3.0 US +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-sa/3.0/us/ +spdx_license_key: LicenseRef-scancode-cc-by-nc-sa-3.0-us +text_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/us/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/3.0/us/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. @@ -60,4 +76,4 @@ UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS T Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. - Creative Commons may be contacted at https://creativecommons.org/. + Creative Commons may be contacted at https://creativecommons.org/. \ No newline at end of file diff --git a/docs/cc-by-nc-sa-3.0-us.html b/docs/cc-by-nc-sa-3.0-us.html index 2d87787a33..2df60dd058 100644 --- a/docs/cc-by-nc-sa-3.0-us.html +++ b/docs/cc-by-nc-sa-3.0-us.html @@ -204,8 +204,7 @@ Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. - Creative Commons may be contacted at https://creativecommons.org/. - + Creative Commons may be contacted at https://creativecommons.org/.
@@ -217,7 +216,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-sa-3.0-us.json b/docs/cc-by-nc-sa-3.0-us.json index f694f159b3..a3b6dbe9c9 100644 --- a/docs/cc-by-nc-sa-3.0-us.json +++ b/docs/cc-by-nc-sa-3.0-us.json @@ -1 +1,18 @@ -{"key": "cc-by-nc-sa-3.0-us", "short_name": "CC-BY-NC-SA-3.0-US", "name": "Creative Commons Attribution Non-Commercial Share Alike License 3.0 US", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nc-sa/3.0/us/", "spdx_license_key": "LicenseRef-scancode-cc-by-nc-sa-3.0-us", "text_urls": ["http://creativecommons.org/licenses/by-nc-sa/3.0/us/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nc-sa/3.0/us/legalcode"], "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-sa-3.0-us", + "short_name": "CC-BY-NC-SA-3.0-US", + "name": "Creative Commons Attribution Non-Commercial Share Alike License 3.0 US", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nc-sa/3.0/us/", + "spdx_license_key": "LicenseRef-scancode-cc-by-nc-sa-3.0-us", + "text_urls": [ + "http://creativecommons.org/licenses/by-nc-sa/3.0/us/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nc-sa/3.0/us/legalcode" + ], + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-sa-3.0.LICENSE b/docs/cc-by-nc-sa-3.0.LICENSE index a50eacf98c..fd0b368c19 100644 --- a/docs/cc-by-nc-sa-3.0.LICENSE +++ b/docs/cc-by-nc-sa-3.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-sa-3.0 +short_name: CC-BY-NC-SA-3.0 +name: Creative Commons Attribution Non-Commercial Share Alike License 3.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-sa/3.0/ +spdx_license_key: CC-BY-NC-SA-3.0 +text_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Legal Code Attribution-NonCommercial-ShareAlike 3.0 Unported @@ -357,4 +373,4 @@ Creative Commons Notice available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. - Creative Commons may be contacted at https://creativecommons.org/. + Creative Commons may be contacted at https://creativecommons.org/. \ No newline at end of file diff --git a/docs/cc-by-nc-sa-3.0.html b/docs/cc-by-nc-sa-3.0.html index b47c38b9ca..ed456efda5 100644 --- a/docs/cc-by-nc-sa-3.0.html +++ b/docs/cc-by-nc-sa-3.0.html @@ -501,8 +501,7 @@ available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. - Creative Commons may be contacted at https://creativecommons.org/. - + Creative Commons may be contacted at https://creativecommons.org/.
@@ -514,7 +513,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-sa-3.0.json b/docs/cc-by-nc-sa-3.0.json index f7b6899bca..2e76fe8418 100644 --- a/docs/cc-by-nc-sa-3.0.json +++ b/docs/cc-by-nc-sa-3.0.json @@ -1 +1,18 @@ -{"key": "cc-by-nc-sa-3.0", "short_name": "CC-BY-NC-SA-3.0", "name": "Creative Commons Attribution Non-Commercial Share Alike License 3.0", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nc-sa/3.0/", "spdx_license_key": "CC-BY-NC-SA-3.0", "text_urls": ["http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode"], "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nc-sa-3.0", + "short_name": "CC-BY-NC-SA-3.0", + "name": "Creative Commons Attribution Non-Commercial Share Alike License 3.0", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nc-sa/3.0/", + "spdx_license_key": "CC-BY-NC-SA-3.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode" + ], + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nc-sa-4.0.LICENSE b/docs/cc-by-nc-sa-4.0.LICENSE index 8f65f5df4b..e21e6bd00f 100644 --- a/docs/cc-by-nc-sa-4.0.LICENSE +++ b/docs/cc-by-nc-sa-4.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nc-sa-4.0 +short_name: CC-BY-NC-SA-4.0 +name: Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-sa/4.0/ +spdx_license_key: CC-BY-NC-SA-4.0 +text_urls: + - http://creativecommons.org/licenses/by-nc-sa/4.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode +--- + Attribution-NonCommercial-ShareAlike 4.0 International ======================================================================= @@ -434,4 +448,4 @@ understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. +Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/docs/cc-by-nc-sa-4.0.html b/docs/cc-by-nc-sa-4.0.html index e7f4d97f3a..9032ee8cdb 100644 --- a/docs/cc-by-nc-sa-4.0.html +++ b/docs/cc-by-nc-sa-4.0.html @@ -569,8 +569,7 @@ the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. - +Creative Commons may be contacted at creativecommons.org.
@@ -582,7 +581,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nc-sa-4.0.json b/docs/cc-by-nc-sa-4.0.json index 01dba70316..08436ea025 100644 --- a/docs/cc-by-nc-sa-4.0.json +++ b/docs/cc-by-nc-sa-4.0.json @@ -1 +1,15 @@ -{"key": "cc-by-nc-sa-4.0", "short_name": "CC-BY-NC-SA-4.0", "name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nc-sa/4.0/", "spdx_license_key": "CC-BY-NC-SA-4.0", "text_urls": ["http://creativecommons.org/licenses/by-nc-sa/4.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode"]} \ No newline at end of file +{ + "key": "cc-by-nc-sa-4.0", + "short_name": "CC-BY-NC-SA-4.0", + "name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nc-sa/4.0/", + "spdx_license_key": "CC-BY-NC-SA-4.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-nc-sa/4.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nd-1.0.LICENSE b/docs/cc-by-nd-1.0.LICENSE index f3bab94a99..ccb80d7b68 100644 --- a/docs/cc-by-nd-1.0.LICENSE +++ b/docs/cc-by-nd-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: cc-by-nd-1.0 +short_name: CC-BY-ND-1.0 +name: Creative Commons Attribution No Derivatives License 1.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nd/1.0/ +spdx_license_key: CC-BY-ND-1.0 +text_urls: + - http://creativecommons.org/licenses/by-nd/1.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nd/1.0/legalcode +minimum_coverage: 50 +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NoDerivs 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-nd-1.0.html b/docs/cc-by-nd-1.0.html index 88ec62a1b3..c1bcf13dbd 100644 --- a/docs/cc-by-nd-1.0.html +++ b/docs/cc-by-nd-1.0.html @@ -210,7 +210,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nd-1.0.json b/docs/cc-by-nd-1.0.json index 9ca3d2e109..54eede8a3c 100644 --- a/docs/cc-by-nd-1.0.json +++ b/docs/cc-by-nd-1.0.json @@ -1 +1,19 @@ -{"key": "cc-by-nd-1.0", "short_name": "CC-BY-ND-1.0", "name": "Creative Commons Attribution No Derivatives License 1.0", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nd/1.0/", "spdx_license_key": "CC-BY-ND-1.0", "text_urls": ["http://creativecommons.org/licenses/by-nd/1.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nd/1.0/legalcode"], "minimum_coverage": 50, "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nd-1.0", + "short_name": "CC-BY-ND-1.0", + "name": "Creative Commons Attribution No Derivatives License 1.0", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nd/1.0/", + "spdx_license_key": "CC-BY-ND-1.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-nd/1.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nd/1.0/legalcode" + ], + "minimum_coverage": 50, + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nd-2.0.LICENSE b/docs/cc-by-nd-2.0.LICENSE index 26aa821a60..9657d0e9cc 100644 --- a/docs/cc-by-nd-2.0.LICENSE +++ b/docs/cc-by-nd-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nd-2.0 +short_name: CC-BY-ND-2.0 +name: Creative Commons Attribution No Derivatives License 2.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nd/2.0/ +spdx_license_key: CC-BY-ND-2.0 +text_urls: + - http://creativecommons.org/licenses/by-nd/2.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nd/2.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NoDerivs 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-nd-2.0.html b/docs/cc-by-nd-2.0.html index 96b3d1d6d7..58054b7acf 100644 --- a/docs/cc-by-nd-2.0.html +++ b/docs/cc-by-nd-2.0.html @@ -208,7 +208,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nd-2.0.json b/docs/cc-by-nd-2.0.json index 7b60e860b5..c3dc6a1fac 100644 --- a/docs/cc-by-nd-2.0.json +++ b/docs/cc-by-nd-2.0.json @@ -1 +1,18 @@ -{"key": "cc-by-nd-2.0", "short_name": "CC-BY-ND-2.0", "name": "Creative Commons Attribution No Derivatives License 2.0", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nd/2.0/", "spdx_license_key": "CC-BY-ND-2.0", "text_urls": ["http://creativecommons.org/licenses/by-nd/2.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nd/2.0/legalcode"], "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nd-2.0", + "short_name": "CC-BY-ND-2.0", + "name": "Creative Commons Attribution No Derivatives License 2.0", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nd/2.0/", + "spdx_license_key": "CC-BY-ND-2.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-nd/2.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nd/2.0/legalcode" + ], + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nd-2.5.LICENSE b/docs/cc-by-nd-2.5.LICENSE index 2c033bf9ff..9769187706 100644 --- a/docs/cc-by-nd-2.5.LICENSE +++ b/docs/cc-by-nd-2.5.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nd-2.5 +short_name: CC-BY-ND-2.5 +name: Creative Commons Attribution No Derivatives License 2.5 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nd/2.5/ +spdx_license_key: CC-BY-ND-2.5 +text_urls: + - http://creativecommons.org/licenses/by-nd/2.5/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nd/2.5/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NoDerivs 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-nd-2.5.html b/docs/cc-by-nd-2.5.html index 1ff8f79a32..dd580e62ff 100644 --- a/docs/cc-by-nd-2.5.html +++ b/docs/cc-by-nd-2.5.html @@ -208,7 +208,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nd-2.5.json b/docs/cc-by-nd-2.5.json index 486e5b5ca9..dffbad0b9b 100644 --- a/docs/cc-by-nd-2.5.json +++ b/docs/cc-by-nd-2.5.json @@ -1 +1,18 @@ -{"key": "cc-by-nd-2.5", "short_name": "CC-BY-ND-2.5", "name": "Creative Commons Attribution No Derivatives License 2.5", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nd/2.5/", "spdx_license_key": "CC-BY-ND-2.5", "text_urls": ["http://creativecommons.org/licenses/by-nd/2.5/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nd/2.5/legalcode"], "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nd-2.5", + "short_name": "CC-BY-ND-2.5", + "name": "Creative Commons Attribution No Derivatives License 2.5", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nd/2.5/", + "spdx_license_key": "CC-BY-ND-2.5", + "text_urls": [ + "http://creativecommons.org/licenses/by-nd/2.5/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nd/2.5/legalcode" + ], + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nd-3.0-de.LICENSE b/docs/cc-by-nd-3.0-de.LICENSE index 724e68ed1d..c1ef163195 100644 --- a/docs/cc-by-nd-3.0-de.LICENSE +++ b/docs/cc-by-nd-3.0-de.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nd-3.0-de +language: de +short_name: CC-BY-ND-3.0-DE +name: Creative Commons Attribution No Derivatives 3.0 Germany +category: Free Restricted +owner: Creative Commons +spdx_license_key: CC-BY-ND-3.0-DE +other_urls: + - https://creativecommons.org/licenses/by-nd/3.0/de/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Namensnennung - Keine Bearbeitungen 3.0 Deutschland CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. @@ -97,4 +111,4 @@ Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. +Creative Commons kann kontaktiert werden über https://creativecommons.org/. \ No newline at end of file diff --git a/docs/cc-by-nd-3.0-de.html b/docs/cc-by-nd-3.0-de.html index 04bd45c869..9dfeea1dd5 100644 --- a/docs/cc-by-nd-3.0-de.html +++ b/docs/cc-by-nd-3.0-de.html @@ -232,8 +232,7 @@ Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. - +Creative Commons kann kontaktiert werden über https://creativecommons.org/.
@@ -245,7 +244,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nd-3.0-de.json b/docs/cc-by-nd-3.0-de.json index 8f56a52a52..ff09b5dbe8 100644 --- a/docs/cc-by-nd-3.0-de.json +++ b/docs/cc-by-nd-3.0-de.json @@ -1 +1,15 @@ -{"key": "cc-by-nd-3.0-de", "language": "de", "short_name": "CC-BY-ND-3.0-DE", "name": "Creative Commons Attribution No Derivatives 3.0 Germany", "category": "Free Restricted", "owner": "Creative Commons", "spdx_license_key": "CC-BY-ND-3.0-DE", "other_urls": ["https://creativecommons.org/licenses/by-nd/3.0/de/legalcode"], "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nd-3.0-de", + "language": "de", + "short_name": "CC-BY-ND-3.0-DE", + "name": "Creative Commons Attribution No Derivatives 3.0 Germany", + "category": "Free Restricted", + "owner": "Creative Commons", + "spdx_license_key": "CC-BY-ND-3.0-DE", + "other_urls": [ + "https://creativecommons.org/licenses/by-nd/3.0/de/legalcode" + ], + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nd-3.0.LICENSE b/docs/cc-by-nd-3.0.LICENSE index 2ec9718946..d2076d9eb1 100644 --- a/docs/cc-by-nd-3.0.LICENSE +++ b/docs/cc-by-nd-3.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nd-3.0 +short_name: CC-BY-ND-3.0 +name: Creative Commons Attribution No Derivatives License 3.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nd/3.0/ +spdx_license_key: CC-BY-ND-3.0 +text_urls: + - http://creativecommons.org/licenses/by-nd/3.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nd/3.0/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Legal Code Attribution-NoDerivs 3.0 Unported @@ -290,4 +306,4 @@ Creative Commons Notice available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. - Creative Commons may be contacted at https://creativecommons.org/. + Creative Commons may be contacted at https://creativecommons.org/. \ No newline at end of file diff --git a/docs/cc-by-nd-3.0.html b/docs/cc-by-nd-3.0.html index 851b98e19d..f5cf084458 100644 --- a/docs/cc-by-nd-3.0.html +++ b/docs/cc-by-nd-3.0.html @@ -434,8 +434,7 @@ available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. - Creative Commons may be contacted at https://creativecommons.org/. - + Creative Commons may be contacted at https://creativecommons.org/.
@@ -447,7 +446,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nd-3.0.json b/docs/cc-by-nd-3.0.json index 07aaa8abc1..f49ff5b075 100644 --- a/docs/cc-by-nd-3.0.json +++ b/docs/cc-by-nd-3.0.json @@ -1 +1,18 @@ -{"key": "cc-by-nd-3.0", "short_name": "CC-BY-ND-3.0", "name": "Creative Commons Attribution No Derivatives License 3.0", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nd/3.0/", "spdx_license_key": "CC-BY-ND-3.0", "text_urls": ["http://creativecommons.org/licenses/by-nd/3.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nd/3.0/legalcode"], "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-nd-3.0", + "short_name": "CC-BY-ND-3.0", + "name": "Creative Commons Attribution No Derivatives License 3.0", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nd/3.0/", + "spdx_license_key": "CC-BY-ND-3.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-nd/3.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nd/3.0/legalcode" + ], + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-nd-4.0.LICENSE b/docs/cc-by-nd-4.0.LICENSE index c2df958c5a..238411e17e 100644 --- a/docs/cc-by-nd-4.0.LICENSE +++ b/docs/cc-by-nd-4.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nd-4.0 +short_name: CC-BY-ND-4.0 +name: Creative Commons Attribution-NoDerivatives 4.0 International Public License +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nd/4.0/ +spdx_license_key: CC-BY-ND-4.0 +text_urls: + - http://creativecommons.org/licenses/by-nd/4.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nd/4.0/legalcode +--- + Attribution-NoDerivatives 4.0 International ======================================================================= @@ -387,4 +401,4 @@ understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. +Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/docs/cc-by-nd-4.0.html b/docs/cc-by-nd-4.0.html index b0aaa77939..63bc506abf 100644 --- a/docs/cc-by-nd-4.0.html +++ b/docs/cc-by-nd-4.0.html @@ -522,8 +522,7 @@ the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. - +Creative Commons may be contacted at creativecommons.org.
@@ -535,7 +534,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-nd-4.0.json b/docs/cc-by-nd-4.0.json index 7e8d781886..aacd8ad3cf 100644 --- a/docs/cc-by-nd-4.0.json +++ b/docs/cc-by-nd-4.0.json @@ -1 +1,15 @@ -{"key": "cc-by-nd-4.0", "short_name": "CC-BY-ND-4.0", "name": "Creative Commons Attribution-NoDerivatives 4.0 International Public License", "category": "Source-available", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-nd/4.0/", "spdx_license_key": "CC-BY-ND-4.0", "text_urls": ["http://creativecommons.org/licenses/by-nd/4.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-nd/4.0/legalcode"]} \ No newline at end of file +{ + "key": "cc-by-nd-4.0", + "short_name": "CC-BY-ND-4.0", + "name": "Creative Commons Attribution-NoDerivatives 4.0 International Public License", + "category": "Source-available", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-nd/4.0/", + "spdx_license_key": "CC-BY-ND-4.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-nd/4.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-nd/4.0/legalcode" + ] +} \ No newline at end of file diff --git a/docs/cc-by-sa-1.0.LICENSE b/docs/cc-by-sa-1.0.LICENSE index 4565bc5b79..ac433024e0 100644 --- a/docs/cc-by-sa-1.0.LICENSE +++ b/docs/cc-by-sa-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-sa-1.0 +short_name: CC-BY-SA-1.0 +name: Creative Commons Attribution Share Alike License 1.0 +category: Copyleft Limited +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-sa/1.0/ +spdx_license_key: CC-BY-SA-1.0 +text_urls: + - http://creativecommons.org/licenses/by-sa/1.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-sa/1.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-ShareAlike 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-sa-1.0.html b/docs/cc-by-sa-1.0.html index f23593391f..47284b633b 100644 --- a/docs/cc-by-sa-1.0.html +++ b/docs/cc-by-sa-1.0.html @@ -209,7 +209,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-sa-1.0.json b/docs/cc-by-sa-1.0.json index 74f4d00f65..7b754ab58e 100644 --- a/docs/cc-by-sa-1.0.json +++ b/docs/cc-by-sa-1.0.json @@ -1 +1,18 @@ -{"key": "cc-by-sa-1.0", "short_name": "CC-BY-SA-1.0", "name": "Creative Commons Attribution Share Alike License 1.0", "category": "Copyleft Limited", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-sa/1.0/", "spdx_license_key": "CC-BY-SA-1.0", "text_urls": ["http://creativecommons.org/licenses/by-sa/1.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-sa/1.0/legalcode"], "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-sa-1.0", + "short_name": "CC-BY-SA-1.0", + "name": "Creative Commons Attribution Share Alike License 1.0", + "category": "Copyleft Limited", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-sa/1.0/", + "spdx_license_key": "CC-BY-SA-1.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-sa/1.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-sa/1.0/legalcode" + ], + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-sa-2.0-uk.LICENSE b/docs/cc-by-sa-2.0-uk.LICENSE index 7496d18ca6..9526face17 100644 --- a/docs/cc-by-sa-2.0-uk.LICENSE +++ b/docs/cc-by-sa-2.0-uk.LICENSE @@ -1,3 +1,18 @@ +--- +key: cc-by-sa-2.0-uk +short_name: CC-BY-SA-2.0-UK +name: Creative Commons Attribution Share Alike 2.0 England and Wales +category: Copyleft Limited +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-sa/2.0//uk +spdx_license_key: CC-BY-SA-2.0-UK +other_urls: + - https://creativecommons.org/licenses/by-sa/2.0/uk/legalcode +minimum_coverage: 70 +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Attribution - Share-Alike 2.0 England and Wales CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-sa-2.0-uk.html b/docs/cc-by-sa-2.0-uk.html index 6f8d5bc54e..797bd47e0c 100644 --- a/docs/cc-by-sa-2.0-uk.html +++ b/docs/cc-by-sa-2.0-uk.html @@ -298,7 +298,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-sa-2.0-uk.json b/docs/cc-by-sa-2.0-uk.json index 7d250ff388..bbc4788e00 100644 --- a/docs/cc-by-sa-2.0-uk.json +++ b/docs/cc-by-sa-2.0-uk.json @@ -1 +1,16 @@ -{"key": "cc-by-sa-2.0-uk", "short_name": "CC-BY-SA-2.0-UK", "name": "Creative Commons Attribution Share Alike 2.0 England and Wales", "category": "Copyleft Limited", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-sa/2.0//uk", "spdx_license_key": "CC-BY-SA-2.0-UK", "other_urls": ["https://creativecommons.org/licenses/by-sa/2.0/uk/legalcode"], "minimum_coverage": 70, "ignorable_urls": ["https://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-sa-2.0-uk", + "short_name": "CC-BY-SA-2.0-UK", + "name": "Creative Commons Attribution Share Alike 2.0 England and Wales", + "category": "Copyleft Limited", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-sa/2.0//uk", + "spdx_license_key": "CC-BY-SA-2.0-UK", + "other_urls": [ + "https://creativecommons.org/licenses/by-sa/2.0/uk/legalcode" + ], + "minimum_coverage": 70, + "ignorable_urls": [ + "https://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-sa-2.0.LICENSE b/docs/cc-by-sa-2.0.LICENSE index 4f40f4148c..3acfff1721 100644 --- a/docs/cc-by-sa-2.0.LICENSE +++ b/docs/cc-by-sa-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-sa-2.0 +short_name: CC-BY-SA-2.0 +name: Creative Commons Attribution Share Alike License 2.0 +category: Copyleft Limited +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-sa/2.0/ +spdx_license_key: CC-BY-SA-2.0 +text_urls: + - http://creativecommons.org/licenses/by-sa/2.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-sa/2.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-ShareAlike 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-sa-2.0.html b/docs/cc-by-sa-2.0.html index eabf0fb539..e5b7761f27 100644 --- a/docs/cc-by-sa-2.0.html +++ b/docs/cc-by-sa-2.0.html @@ -213,7 +213,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-sa-2.0.json b/docs/cc-by-sa-2.0.json index 4d896e704c..3bc8121de2 100644 --- a/docs/cc-by-sa-2.0.json +++ b/docs/cc-by-sa-2.0.json @@ -1 +1,18 @@ -{"key": "cc-by-sa-2.0", "short_name": "CC-BY-SA-2.0", "name": "Creative Commons Attribution Share Alike License 2.0", "category": "Copyleft Limited", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-sa/2.0/", "spdx_license_key": "CC-BY-SA-2.0", "text_urls": ["http://creativecommons.org/licenses/by-sa/2.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-sa/2.0/legalcode"], "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-sa-2.0", + "short_name": "CC-BY-SA-2.0", + "name": "Creative Commons Attribution Share Alike License 2.0", + "category": "Copyleft Limited", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-sa/2.0/", + "spdx_license_key": "CC-BY-SA-2.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-sa/2.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-sa/2.0/legalcode" + ], + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-sa-2.1-jp.LICENSE b/docs/cc-by-sa-2.1-jp.LICENSE index 8e2d7e23d2..682c92efd1 100644 --- a/docs/cc-by-sa-2.1-jp.LICENSE +++ b/docs/cc-by-sa-2.1-jp.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-sa-2.1-jp +language: ja +short_name: Creative Commons Attribution Share Alike 2.1 Japan +name: Creative Commons Attribution Share Alike 2.1 Japan +category: Copyleft Limited +owner: Creative Commons +spdx_license_key: CC-BY-SA-2.1-JP +other_urls: + - https://creativecommons.org/licenses/by-sa/2.1/jp/legalcode +ignorable_urls: + - https://creativecommons.org/http:/www.creativecommons.jp/ +--- + アトリビューション—シェアアライク 2.1 (帰属—同一条件許諾) クリエイティブ・コモンズ及びクリエイティブ・コモンズ・ジャパンは法律事務所ではありません。この利用許諾条項の頒布は法的アドバイスその他の法律業務を行うものではありません。クリエイティブ・コモンズ及びクリエイティブ・コモンズ・ジャパンは、この利用許諾の当事者ではなく、ここに提供する情報及び本作品に関しいかなる保証も行いません。クリエイティブ・コモンズ及びクリエイティブ・コモンズ・ジャパンは、いかなる法令に基づこうとも、あなた又はいかなる第三者の損害(この利用許諾に関連する通常損害、特別損害を含みますがこれらに限られません)について責任を負いません。 diff --git a/docs/cc-by-sa-2.1-jp.html b/docs/cc-by-sa-2.1-jp.html index 1b8d68ed9e..085230dba3 100644 --- a/docs/cc-by-sa-2.1-jp.html +++ b/docs/cc-by-sa-2.1-jp.html @@ -227,7 +227,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-sa-2.1-jp.json b/docs/cc-by-sa-2.1-jp.json index 8ce9d27e2c..76109f3f5b 100644 --- a/docs/cc-by-sa-2.1-jp.json +++ b/docs/cc-by-sa-2.1-jp.json @@ -1 +1,15 @@ -{"key": "cc-by-sa-2.1-jp", "language": "ja", "short_name": "Creative Commons Attribution Share Alike 2.1 Japan", "name": "Creative Commons Attribution Share Alike 2.1 Japan", "category": "Copyleft Limited", "owner": "Creative Commons", "spdx_license_key": "CC-BY-SA-2.1-JP", "other_urls": ["https://creativecommons.org/licenses/by-sa/2.1/jp/legalcode"], "ignorable_urls": ["https://creativecommons.org/http:/www.creativecommons.jp/"]} \ No newline at end of file +{ + "key": "cc-by-sa-2.1-jp", + "language": "ja", + "short_name": "Creative Commons Attribution Share Alike 2.1 Japan", + "name": "Creative Commons Attribution Share Alike 2.1 Japan", + "category": "Copyleft Limited", + "owner": "Creative Commons", + "spdx_license_key": "CC-BY-SA-2.1-JP", + "other_urls": [ + "https://creativecommons.org/licenses/by-sa/2.1/jp/legalcode" + ], + "ignorable_urls": [ + "https://creativecommons.org/http:/www.creativecommons.jp/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-sa-2.5.LICENSE b/docs/cc-by-sa-2.5.LICENSE index bb75c7e0d0..becd8f9d50 100644 --- a/docs/cc-by-sa-2.5.LICENSE +++ b/docs/cc-by-sa-2.5.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-sa-2.5 +short_name: CC-BY-SA-2.5 +name: Creative Commons Attribution Share Alike License 2.5 +category: Copyleft Limited +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-sa/2.5/ +spdx_license_key: CC-BY-SA-2.5 +text_urls: + - http://creativecommons.org/licenses/by-sa/2.5/legalcode +other_urls: + - https://creativecommons.org/licenses/by-sa/2.5/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-ShareAlike 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-by-sa-2.5.html b/docs/cc-by-sa-2.5.html index 2d861245a6..884a55ce4e 100644 --- a/docs/cc-by-sa-2.5.html +++ b/docs/cc-by-sa-2.5.html @@ -213,7 +213,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-sa-2.5.json b/docs/cc-by-sa-2.5.json index f61b890aad..7cec490a02 100644 --- a/docs/cc-by-sa-2.5.json +++ b/docs/cc-by-sa-2.5.json @@ -1 +1,18 @@ -{"key": "cc-by-sa-2.5", "short_name": "CC-BY-SA-2.5", "name": "Creative Commons Attribution Share Alike License 2.5", "category": "Copyleft Limited", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-sa/2.5/", "spdx_license_key": "CC-BY-SA-2.5", "text_urls": ["http://creativecommons.org/licenses/by-sa/2.5/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-sa/2.5/legalcode"], "ignorable_urls": ["http://creativecommons.org/"]} \ No newline at end of file +{ + "key": "cc-by-sa-2.5", + "short_name": "CC-BY-SA-2.5", + "name": "Creative Commons Attribution Share Alike License 2.5", + "category": "Copyleft Limited", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-sa/2.5/", + "spdx_license_key": "CC-BY-SA-2.5", + "text_urls": [ + "http://creativecommons.org/licenses/by-sa/2.5/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-sa/2.5/legalcode" + ], + "ignorable_urls": [ + "http://creativecommons.org/" + ] +} \ No newline at end of file diff --git a/docs/cc-by-sa-3.0-at.LICENSE b/docs/cc-by-sa-3.0-at.LICENSE index 2202d0458a..9fb37802f6 100644 --- a/docs/cc-by-sa-3.0-at.LICENSE +++ b/docs/cc-by-sa-3.0-at.LICENSE @@ -1,3 +1,18 @@ +--- +key: cc-by-sa-3.0-at +language: de +short_name: CC-BY-SA-3.0-AT +name: Creative Commons Attribution Share Alike License 3.0 Austria +category: Copyleft Limited +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/by-sa/3.0/at/legalcode +spdx_license_key: CC-BY-SA-3.0-AT +faq_url: https://creativecommons.org/licenses/by-sa/3.0/at/ +ignorable_urls: + - https://creativecommons.org/ + - https://creativecommons.org/compatiblelicenses +--- + CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. Lizenz diff --git a/docs/cc-by-sa-3.0-at.html b/docs/cc-by-sa-3.0-at.html index a125d8c9ba..f0fb987b1b 100644 --- a/docs/cc-by-sa-3.0-at.html +++ b/docs/cc-by-sa-3.0-at.html @@ -288,7 +288,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-sa-3.0-at.json b/docs/cc-by-sa-3.0-at.json index 9c0e415fd8..6a6a005311 100644 --- a/docs/cc-by-sa-3.0-at.json +++ b/docs/cc-by-sa-3.0-at.json @@ -1 +1,15 @@ -{"key": "cc-by-sa-3.0-at", "language": "de", "short_name": "CC-BY-SA-3.0-AT", "name": "Creative Commons Attribution Share Alike License 3.0 Austria", "category": "Copyleft Limited", "owner": "Creative Commons", "homepage_url": "https://creativecommons.org/licenses/by-sa/3.0/at/legalcode", "spdx_license_key": "CC-BY-SA-3.0-AT", "faq_url": "https://creativecommons.org/licenses/by-sa/3.0/at/", "ignorable_urls": ["https://creativecommons.org/", "https://creativecommons.org/compatiblelicenses"]} \ No newline at end of file +{ + "key": "cc-by-sa-3.0-at", + "language": "de", + "short_name": "CC-BY-SA-3.0-AT", + "name": "Creative Commons Attribution Share Alike License 3.0 Austria", + "category": "Copyleft Limited", + "owner": "Creative Commons", + "homepage_url": "https://creativecommons.org/licenses/by-sa/3.0/at/legalcode", + "spdx_license_key": "CC-BY-SA-3.0-AT", + "faq_url": "https://creativecommons.org/licenses/by-sa/3.0/at/", + "ignorable_urls": [ + "https://creativecommons.org/", + "https://creativecommons.org/compatiblelicenses" + ] +} \ No newline at end of file diff --git a/docs/cc-by-sa-3.0-de.LICENSE b/docs/cc-by-sa-3.0-de.LICENSE index 472c3663af..fa6230f190 100644 --- a/docs/cc-by-sa-3.0-de.LICENSE +++ b/docs/cc-by-sa-3.0-de.LICENSE @@ -1,3 +1,18 @@ +--- +key: cc-by-sa-3.0-de +language: de +short_name: CC-BY-SA-3.0-DE +name: Creative Commons Attribution Share Alike 3.0 Germany +category: Copyleft Limited +owner: Creative Commons +spdx_license_key: CC-BY-SA-3.0-DE +other_urls: + - https://creativecommons.org/licenses/by-sa/3.0/de/legalcode +ignorable_urls: + - https://creativecommons.org/ + - https://creativecommons.org/compatiblelicenses +--- + Creative Commons Namensnennung - Weitergabe unter gleichen Bedingungen 3.0 Deutschland CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. @@ -132,4 +147,4 @@ Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. +Creative Commons kann kontaktiert werden über https://creativecommons.org/. \ No newline at end of file diff --git a/docs/cc-by-sa-3.0-de.html b/docs/cc-by-sa-3.0-de.html index 2c9de70a16..55c14cfc18 100644 --- a/docs/cc-by-sa-3.0-de.html +++ b/docs/cc-by-sa-3.0-de.html @@ -267,8 +267,7 @@ Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. - +Creative Commons kann kontaktiert werden über https://creativecommons.org/.
@@ -280,7 +279,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-sa-3.0-de.json b/docs/cc-by-sa-3.0-de.json index 052d5c5de5..b339685a97 100644 --- a/docs/cc-by-sa-3.0-de.json +++ b/docs/cc-by-sa-3.0-de.json @@ -1 +1,16 @@ -{"key": "cc-by-sa-3.0-de", "language": "de", "short_name": "CC-BY-SA-3.0-DE", "name": "Creative Commons Attribution Share Alike 3.0 Germany", "category": "Copyleft Limited", "owner": "Creative Commons", "spdx_license_key": "CC-BY-SA-3.0-DE", "other_urls": ["https://creativecommons.org/licenses/by-sa/3.0/de/legalcode"], "ignorable_urls": ["https://creativecommons.org/", "https://creativecommons.org/compatiblelicenses"]} \ No newline at end of file +{ + "key": "cc-by-sa-3.0-de", + "language": "de", + "short_name": "CC-BY-SA-3.0-DE", + "name": "Creative Commons Attribution Share Alike 3.0 Germany", + "category": "Copyleft Limited", + "owner": "Creative Commons", + "spdx_license_key": "CC-BY-SA-3.0-DE", + "other_urls": [ + "https://creativecommons.org/licenses/by-sa/3.0/de/legalcode" + ], + "ignorable_urls": [ + "https://creativecommons.org/", + "https://creativecommons.org/compatiblelicenses" + ] +} \ No newline at end of file diff --git a/docs/cc-by-sa-3.0.LICENSE b/docs/cc-by-sa-3.0.LICENSE index 604209a804..10bc63f322 100644 --- a/docs/cc-by-sa-3.0.LICENSE +++ b/docs/cc-by-sa-3.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: cc-by-sa-3.0 +short_name: CC-BY-SA-3.0 +name: Creative Commons Attribution Share Alike License 3.0 +category: Copyleft Limited +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-sa/3.0/ +spdx_license_key: CC-BY-SA-3.0 +text_urls: + - http://creativecommons.org/licenses/by-sa/3.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-sa/3.0/legalcode +minimum_coverage: 30 +ignorable_urls: + - https://creativecommons.org/ + - https://creativecommons.org/compatiblelicenses +--- + Creative Commons Legal Code Attribution-ShareAlike 3.0 Unported @@ -356,4 +374,4 @@ Creative Commons Notice available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of the License. - Creative Commons may be contacted at https://creativecommons.org/. + Creative Commons may be contacted at https://creativecommons.org/. \ No newline at end of file diff --git a/docs/cc-by-sa-3.0.html b/docs/cc-by-sa-3.0.html index dcc7337dac..af62cbfd76 100644 --- a/docs/cc-by-sa-3.0.html +++ b/docs/cc-by-sa-3.0.html @@ -507,8 +507,7 @@ available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of the License. - Creative Commons may be contacted at https://creativecommons.org/. - + Creative Commons may be contacted at https://creativecommons.org/.
@@ -520,7 +519,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-sa-3.0.json b/docs/cc-by-sa-3.0.json index f9f571c085..c4091341ad 100644 --- a/docs/cc-by-sa-3.0.json +++ b/docs/cc-by-sa-3.0.json @@ -1 +1,20 @@ -{"key": "cc-by-sa-3.0", "short_name": "CC-BY-SA-3.0", "name": "Creative Commons Attribution Share Alike License 3.0", "category": "Copyleft Limited", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-sa/3.0/", "spdx_license_key": "CC-BY-SA-3.0", "text_urls": ["http://creativecommons.org/licenses/by-sa/3.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-sa/3.0/legalcode"], "minimum_coverage": 30, "ignorable_urls": ["https://creativecommons.org/", "https://creativecommons.org/compatiblelicenses"]} \ No newline at end of file +{ + "key": "cc-by-sa-3.0", + "short_name": "CC-BY-SA-3.0", + "name": "Creative Commons Attribution Share Alike License 3.0", + "category": "Copyleft Limited", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-sa/3.0/", + "spdx_license_key": "CC-BY-SA-3.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-sa/3.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-sa/3.0/legalcode" + ], + "minimum_coverage": 30, + "ignorable_urls": [ + "https://creativecommons.org/", + "https://creativecommons.org/compatiblelicenses" + ] +} \ No newline at end of file diff --git a/docs/cc-by-sa-4.0.LICENSE b/docs/cc-by-sa-4.0.LICENSE index e04b480f52..8ce42c6a13 100644 --- a/docs/cc-by-sa-4.0.LICENSE +++ b/docs/cc-by-sa-4.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-sa-4.0 +short_name: CC-BY-SA-4.0 +name: Creative Commons Attribution-ShareAlike 4.0 International Public License +category: Copyleft Limited +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-sa/4.0/ +spdx_license_key: CC-BY-SA-4.0 +text_urls: + - http://creativecommons.org/licenses/by-sa/4.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-sa/4.0/legalcode +--- + Attribution-ShareAlike 4.0 International ======================================================================= @@ -424,4 +438,4 @@ understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. +Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/docs/cc-by-sa-4.0.html b/docs/cc-by-sa-4.0.html index 918599fe94..008d162015 100644 --- a/docs/cc-by-sa-4.0.html +++ b/docs/cc-by-sa-4.0.html @@ -559,8 +559,7 @@ the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. - +Creative Commons may be contacted at creativecommons.org.
@@ -572,7 +571,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-by-sa-4.0.json b/docs/cc-by-sa-4.0.json index 0d193e6b92..ee6e2bbb0b 100644 --- a/docs/cc-by-sa-4.0.json +++ b/docs/cc-by-sa-4.0.json @@ -1 +1,15 @@ -{"key": "cc-by-sa-4.0", "short_name": "CC-BY-SA-4.0", "name": "Creative Commons Attribution-ShareAlike 4.0 International Public License", "category": "Copyleft Limited", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/licenses/by-sa/4.0/", "spdx_license_key": "CC-BY-SA-4.0", "text_urls": ["http://creativecommons.org/licenses/by-sa/4.0/legalcode"], "other_urls": ["https://creativecommons.org/licenses/by-sa/4.0/legalcode"]} \ No newline at end of file +{ + "key": "cc-by-sa-4.0", + "short_name": "CC-BY-SA-4.0", + "name": "Creative Commons Attribution-ShareAlike 4.0 International Public License", + "category": "Copyleft Limited", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by-sa/4.0/", + "spdx_license_key": "CC-BY-SA-4.0", + "text_urls": [ + "http://creativecommons.org/licenses/by-sa/4.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-sa/4.0/legalcode" + ] +} \ No newline at end of file diff --git a/docs/cc-devnations-2.0.LICENSE b/docs/cc-devnations-2.0.LICENSE index 4cdb521d76..d461efba73 100644 --- a/docs/cc-devnations-2.0.LICENSE +++ b/docs/cc-devnations-2.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: cc-devnations-2.0 +short_name: Developing Nations 2.0 +name: Developing Nations 2.0 +category: Proprietary Free +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/devnations/2.0/ +spdx_license_key: LicenseRef-scancode-cc-devnations-2.0 +--- + Developing Nations 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/docs/cc-devnations-2.0.html b/docs/cc-devnations-2.0.html index de6c7204f6..f5bce156b5 100644 --- a/docs/cc-devnations-2.0.html +++ b/docs/cc-devnations-2.0.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-devnations-2.0.json b/docs/cc-devnations-2.0.json index f05646971c..8017f6fe8d 100644 --- a/docs/cc-devnations-2.0.json +++ b/docs/cc-devnations-2.0.json @@ -1 +1,9 @@ -{"key": "cc-devnations-2.0", "short_name": "Developing Nations 2.0", "name": "Developing Nations 2.0", "category": "Proprietary Free", "owner": "Creative Commons", "homepage_url": "https://creativecommons.org/licenses/devnations/2.0/", "spdx_license_key": "LicenseRef-scancode-cc-devnations-2.0"} \ No newline at end of file +{ + "key": "cc-devnations-2.0", + "short_name": "Developing Nations 2.0", + "name": "Developing Nations 2.0", + "category": "Proprietary Free", + "owner": "Creative Commons", + "homepage_url": "https://creativecommons.org/licenses/devnations/2.0/", + "spdx_license_key": "LicenseRef-scancode-cc-devnations-2.0" +} \ No newline at end of file diff --git a/docs/cc-gpl-2.0-pt.LICENSE b/docs/cc-gpl-2.0-pt.LICENSE index 0c51baccd2..19646cead7 100644 --- a/docs/cc-gpl-2.0-pt.LICENSE +++ b/docs/cc-gpl-2.0-pt.LICENSE @@ -1,4 +1,19 @@ - +--- +key: cc-gpl-2.0-pt +language: pt +short_name: CC-GPL-2.0-PT +name: Creative Commons Licença Pública Geral do GNU (GPL) [General Public License] +category: Copyleft +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/GPL/2.0/ +spdx_license_key: LicenseRef-scancode-cc-gpl-2.0-pt +text_urls: + - https://creativecommons.org/licenses/GPL/2.0/legalcode.pt +ignorable_copyrights: + - (c) 1989, 1991 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +--- Licença Pública Geral do GNU (GPL) [General Public License] @@ -111,6 +126,4 @@ Você também pode solicitar a seu empregador (se você for um programador) ou s A Yoyodyne Ltda., neste ato, renuncia a todos eventuais direitos autorais sobre o programa `Gnomovision' (que realiza passagens em compiladores), escrito por James Hacker. 1º de abril de 1989, Ty Coon, Presidente -Esta Licença Pública Geral não permite a incorporação do seu programa a programas proprietários. Se seu programa é uma biblioteca de sub-rotinas, você poderá considerar ser mais útil permitir a ligação de aplicações proprietárias à sua biblioteca. Se isso é o que você deseja fazer, utilize a Licença Pública Geral de Biblioteca do GNU, ao invés desta Licença. - - +Esta Licença Pública Geral não permite a incorporação do seu programa a programas proprietários. Se seu programa é uma biblioteca de sub-rotinas, você poderá considerar ser mais útil permitir a ligação de aplicações proprietárias à sua biblioteca. Se isso é o que você deseja fazer, utilize a Licença Pública Geral de Biblioteca do GNU, ao invés desta Licença. \ No newline at end of file diff --git a/docs/cc-gpl-2.0-pt.html b/docs/cc-gpl-2.0-pt.html index 869235a289..95424691de 100644 --- a/docs/cc-gpl-2.0-pt.html +++ b/docs/cc-gpl-2.0-pt.html @@ -149,9 +149,7 @@
license_text
-

-
-Licença Pública Geral do GNU (GPL) [General Public License] 
+    
Licença Pública Geral do GNU (GPL) [General Public License] 
 
 
 This is an unofficial translation of the GNU General Public License into Portuguese. It was not published by the Free Software Foundation, and does not legally state the distribution terms for software that uses the GNU GPL--only the original English text of the GNU GPL does that. However, we hope that this translation will help Portuguese speakers understand the GNU GPL better.
@@ -262,10 +260,7 @@
 A Yoyodyne Ltda., neste ato, renuncia a todos eventuais direitos autorais sobre o programa `Gnomovision' (que realiza passagens em compiladores), escrito por James Hacker. 
 <Assinatura de Ty Coon>
 1º de abril de 1989, Ty Coon, Presidente
-Esta Licença Pública Geral não permite a incorporação do seu programa a programas proprietários. Se seu programa é uma biblioteca de sub-rotinas, você poderá considerar ser mais útil permitir a ligação de aplicações proprietárias à sua biblioteca. Se isso é o que você deseja fazer, utilize a Licença Pública Geral de Biblioteca do GNU, ao invés desta Licença. 
-
-
-
+Esta Licença Pública Geral não permite a incorporação do seu programa a programas proprietários. Se seu programa é uma biblioteca de sub-rotinas, você poderá considerar ser mais útil permitir a ligação de aplicações proprietárias à sua biblioteca. Se isso é o que você deseja fazer, utilize a Licença Pública Geral de Biblioteca do GNU, ao invés desta Licença.
@@ -277,7 +272,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-gpl-2.0-pt.json b/docs/cc-gpl-2.0-pt.json index 8a07978ae3..9a324d2a9f 100644 --- a/docs/cc-gpl-2.0-pt.json +++ b/docs/cc-gpl-2.0-pt.json @@ -1 +1,19 @@ -{"key": "cc-gpl-2.0-pt", "language": "pt", "short_name": "CC-GPL-2.0-PT", "name": "Creative Commons Licen\u00e7a P\u00fablica Geral do GNU (GPL) [General Public License]", "category": "Copyleft", "owner": "Creative Commons", "homepage_url": "https://creativecommons.org/licenses/GPL/2.0/", "spdx_license_key": "LicenseRef-scancode-cc-gpl-2.0-pt", "text_urls": ["https://creativecommons.org/licenses/GPL/2.0/legalcode.pt"], "ignorable_copyrights": ["(c) 1989, 1991 Free Software Foundation, Inc."], "ignorable_holders": ["Free Software Foundation, Inc."]} \ No newline at end of file +{ + "key": "cc-gpl-2.0-pt", + "language": "pt", + "short_name": "CC-GPL-2.0-PT", + "name": "Creative Commons Licen\u00e7a P\u00fablica Geral do GNU (GPL) [General Public License]", + "category": "Copyleft", + "owner": "Creative Commons", + "homepage_url": "https://creativecommons.org/licenses/GPL/2.0/", + "spdx_license_key": "LicenseRef-scancode-cc-gpl-2.0-pt", + "text_urls": [ + "https://creativecommons.org/licenses/GPL/2.0/legalcode.pt" + ], + "ignorable_copyrights": [ + "(c) 1989, 1991 Free Software Foundation, Inc." + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ] +} \ No newline at end of file diff --git a/docs/cc-lgpl-2.1-pt.LICENSE b/docs/cc-lgpl-2.1-pt.LICENSE index de142acb82..c120a7f170 100644 --- a/docs/cc-lgpl-2.1-pt.LICENSE +++ b/docs/cc-lgpl-2.1-pt.LICENSE @@ -1,4 +1,19 @@ - +--- +key: cc-lgpl-2.1-pt +language: pt +short_name: CC-LGPL-2.1-PT +name: Creative Commons Licença Pública Geral Menor do GNU +category: Copyleft Limited +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/LGPL/2.1/ +spdx_license_key: LicenseRef-scancode-cc-lgpl-2.1-pt +text_urls: + - https://creativecommons.org/licenses/LGPL/2.1/legalcode.pt +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +--- Licença Pública Geral Menor do GNU @@ -196,5 +211,4 @@ Você também pode solicitar a seu empregador (se você for um programador) ou a A Yoyodyne Ltda., neste ato, renuncia a todos eventuais direitos autorais sobre a biblioteca 'Frob' (uma biblioteca para ajustar fechaduras), escrita por James Random Hacker. 1º de abril de 1990, Ty Coon, Presidente -Isto é tudo! - +Isto é tudo! \ No newline at end of file diff --git a/docs/cc-lgpl-2.1-pt.html b/docs/cc-lgpl-2.1-pt.html index cd9a682c11..a4624cfe51 100644 --- a/docs/cc-lgpl-2.1-pt.html +++ b/docs/cc-lgpl-2.1-pt.html @@ -149,9 +149,7 @@
license_text
-

-
-Licença Pública Geral Menor do GNU 
+    
Licença Pública Geral Menor do GNU 
 
 
 This is an unofficial translation of the GNU Lesser General Public License into Portuguese. It was not published by the Free Software Foundation, and does not legally state the distribution terms for software that uses the GNU LGPL--only the original English text of the GNU LGPL does that. However, we hope that this translation will help Portuguese speakers understand the GNU LGPL better.
@@ -347,9 +345,7 @@
 A Yoyodyne Ltda., neste ato, renuncia a todos eventuais direitos autorais sobre a biblioteca 'Frob' (uma biblioteca para ajustar fechaduras), escrita por James Random Hacker. 
 <Assinatura de Ty Coon>
 1º de abril de 1990, Ty Coon, Presidente 
-Isto é tudo!
-
-
+Isto é tudo!
@@ -361,7 +357,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-lgpl-2.1-pt.json b/docs/cc-lgpl-2.1-pt.json index 2ff50b40c7..e170076b92 100644 --- a/docs/cc-lgpl-2.1-pt.json +++ b/docs/cc-lgpl-2.1-pt.json @@ -1 +1,19 @@ -{"key": "cc-lgpl-2.1-pt", "language": "pt", "short_name": "CC-LGPL-2.1-PT", "name": "Creative Commons Licen\u00e7a P\u00fablica Geral Menor do GNU", "category": "Copyleft Limited", "owner": "Creative Commons", "homepage_url": "https://creativecommons.org/licenses/LGPL/2.1/", "spdx_license_key": "LicenseRef-scancode-cc-lgpl-2.1-pt", "text_urls": ["https://creativecommons.org/licenses/LGPL/2.1/legalcode.pt"], "ignorable_copyrights": ["Copyright (c) 1991, 1999 Free Software Foundation, Inc."], "ignorable_holders": ["Free Software Foundation, Inc."]} \ No newline at end of file +{ + "key": "cc-lgpl-2.1-pt", + "language": "pt", + "short_name": "CC-LGPL-2.1-PT", + "name": "Creative Commons Licen\u00e7a P\u00fablica Geral Menor do GNU", + "category": "Copyleft Limited", + "owner": "Creative Commons", + "homepage_url": "https://creativecommons.org/licenses/LGPL/2.1/", + "spdx_license_key": "LicenseRef-scancode-cc-lgpl-2.1-pt", + "text_urls": [ + "https://creativecommons.org/licenses/LGPL/2.1/legalcode.pt" + ], + "ignorable_copyrights": [ + "Copyright (c) 1991, 1999 Free Software Foundation, Inc." + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ] +} \ No newline at end of file diff --git a/docs/cc-nc-sampling-plus-1.0.LICENSE b/docs/cc-nc-sampling-plus-1.0.LICENSE index 30ddbc5080..857e661527 100644 --- a/docs/cc-nc-sampling-plus-1.0.LICENSE +++ b/docs/cc-nc-sampling-plus-1.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: cc-nc-sampling-plus-1.0 +short_name: NonCommercial Sampling Plus 1.0 +name: NonCommercial Sampling Plus 1.0 +category: Proprietary Free +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/nc-sampling+/1.0/ +spdx_license_key: LicenseRef-scancode-cc-nc-sampling-plus-1.0 +--- + Noncommercial Sampling Plus 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. License diff --git a/docs/cc-nc-sampling-plus-1.0.html b/docs/cc-nc-sampling-plus-1.0.html index 18dc52df58..b177cdd901 100644 --- a/docs/cc-nc-sampling-plus-1.0.html +++ b/docs/cc-nc-sampling-plus-1.0.html @@ -197,7 +197,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-nc-sampling-plus-1.0.json b/docs/cc-nc-sampling-plus-1.0.json index 59916bfdd4..d7a08b629e 100644 --- a/docs/cc-nc-sampling-plus-1.0.json +++ b/docs/cc-nc-sampling-plus-1.0.json @@ -1 +1,9 @@ -{"key": "cc-nc-sampling-plus-1.0", "short_name": "NonCommercial Sampling Plus 1.0", "name": "NonCommercial Sampling Plus 1.0", "category": "Proprietary Free", "owner": "Creative Commons", "homepage_url": "https://creativecommons.org/licenses/nc-sampling+/1.0/", "spdx_license_key": "LicenseRef-scancode-cc-nc-sampling-plus-1.0"} \ No newline at end of file +{ + "key": "cc-nc-sampling-plus-1.0", + "short_name": "NonCommercial Sampling Plus 1.0", + "name": "NonCommercial Sampling Plus 1.0", + "category": "Proprietary Free", + "owner": "Creative Commons", + "homepage_url": "https://creativecommons.org/licenses/nc-sampling+/1.0/", + "spdx_license_key": "LicenseRef-scancode-cc-nc-sampling-plus-1.0" +} \ No newline at end of file diff --git a/docs/cc-pd.LICENSE b/docs/cc-pd.LICENSE index 07b3035260..a1f74e9a07 100644 --- a/docs/cc-pd.LICENSE +++ b/docs/cc-pd.LICENSE @@ -1,3 +1,15 @@ +--- +key: cc-pd +short_name: CC-PD +name: Creative Commons Public Domain Certification +category: Public Domain +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/publicdomain/ +spdx_license_key: CC-PDDC +text_urls: + - http://creativecommons.org/licenses/publicdomain/ +--- + The person or persons who have associated work with this document (the "Dedicator" or "Certifier") hereby either (a) certifies that, to the best of his knowledge, the work of authorship identified is in the public domain of the country from which the work is published, or (b) hereby dedicates whatever copyright the dedicators holds in the work of authorship identified below (the "Work") to the public domain. A certifier, moreover, dedicates any copyright interest he may have in the associated work, and for these purposes, is described as a "dedicator" below. A certifier has taken reasonable steps to verify the copyright status of this work. Certifier recognizes that his good faith efforts may not shield him from liability if in fact the work certified is not in the public domain. diff --git a/docs/cc-pd.html b/docs/cc-pd.html index f2e5ff9f4f..e6078f7f79 100644 --- a/docs/cc-pd.html +++ b/docs/cc-pd.html @@ -142,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-pd.json b/docs/cc-pd.json index 484d751d8a..e96c85e6ff 100644 --- a/docs/cc-pd.json +++ b/docs/cc-pd.json @@ -1 +1,12 @@ -{"key": "cc-pd", "short_name": "CC-PD", "name": "Creative Commons Public Domain Certification", "category": "Public Domain", "owner": "Creative Commons", "homepage_url": "https://creativecommons.org/licenses/publicdomain/", "spdx_license_key": "CC-PDDC", "text_urls": ["http://creativecommons.org/licenses/publicdomain/"]} \ No newline at end of file +{ + "key": "cc-pd", + "short_name": "CC-PD", + "name": "Creative Commons Public Domain Certification", + "category": "Public Domain", + "owner": "Creative Commons", + "homepage_url": "https://creativecommons.org/licenses/publicdomain/", + "spdx_license_key": "CC-PDDC", + "text_urls": [ + "http://creativecommons.org/licenses/publicdomain/" + ] +} \ No newline at end of file diff --git a/docs/cc-pdm-1.0.LICENSE b/docs/cc-pdm-1.0.LICENSE index b831029420..f070362dcb 100644 --- a/docs/cc-pdm-1.0.LICENSE +++ b/docs/cc-pdm-1.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: cc-pdm-1.0 +short_name: CC-PD Mark 1.0 +name: Creative Commons Public Domain Mark 1.0 +category: Public Domain +owner: Creative Commons +homepage_url: https://creativecommons.org/publicdomain/mark/1.0/ +spdx_license_key: LicenseRef-scancode-cc-pdm-1.0 +faq_url: https://wiki.creativecommons.org/wiki/PDM_FAQ +--- Public Domain Mark 1.0 No Copyright @@ -18,5 +28,4 @@ Other Information Unless expressly stated otherwise, the person who identified the work makes no warranties about the work, and disclaims liability for all uses of the work, to the fullest extent permitted by applicable law. - When using or citing the work, you should not imply endorsement by the author or the person who identified the work. - + When using or citing the work, you should not imply endorsement by the author or the person who identified the work. \ No newline at end of file diff --git a/docs/cc-pdm-1.0.html b/docs/cc-pdm-1.0.html index 2c3534e545..7137dffa39 100644 --- a/docs/cc-pdm-1.0.html +++ b/docs/cc-pdm-1.0.html @@ -122,8 +122,7 @@
license_text
-

-Public Domain Mark 1.0
+    
Public Domain Mark 1.0
 No Copyright
 
     This work has been identified as being free of known restrictions under copyright law, including all related and neighboring rights.
@@ -142,9 +141,7 @@
 
     Unless expressly stated otherwise, the person who identified the work makes no warranties about the work, and disclaims liability for all uses of the work, to the fullest extent permitted by applicable law.
 
-    When using or citing the work, you should not imply endorsement by the author or the person who identified the work.
-
-
+ When using or citing the work, you should not imply endorsement by the author or the person who identified the work.
@@ -156,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-pdm-1.0.json b/docs/cc-pdm-1.0.json index edc98bb624..59b48f0254 100644 --- a/docs/cc-pdm-1.0.json +++ b/docs/cc-pdm-1.0.json @@ -1 +1,10 @@ -{"key": "cc-pdm-1.0", "short_name": "CC-PD Mark 1.0", "name": "Creative Commons Public Domain Mark 1.0", "category": "Public Domain", "owner": "Creative Commons", "homepage_url": "https://creativecommons.org/publicdomain/mark/1.0/", "spdx_license_key": "LicenseRef-scancode-cc-pdm-1.0", "faq_url": "https://wiki.creativecommons.org/wiki/PDM_FAQ"} \ No newline at end of file +{ + "key": "cc-pdm-1.0", + "short_name": "CC-PD Mark 1.0", + "name": "Creative Commons Public Domain Mark 1.0", + "category": "Public Domain", + "owner": "Creative Commons", + "homepage_url": "https://creativecommons.org/publicdomain/mark/1.0/", + "spdx_license_key": "LicenseRef-scancode-cc-pdm-1.0", + "faq_url": "https://wiki.creativecommons.org/wiki/PDM_FAQ" +} \ No newline at end of file diff --git a/docs/cc-sampling-1.0.LICENSE b/docs/cc-sampling-1.0.LICENSE index f2b782d954..0564dea559 100644 --- a/docs/cc-sampling-1.0.LICENSE +++ b/docs/cc-sampling-1.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: cc-sampling-1.0 +short_name: Sampling 1.0 +name: Sampling 1.0 +category: Proprietary Free +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/sampling/1.0/ +spdx_license_key: LicenseRef-scancode-cc-sampling-1.0 +--- + Sampling 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. License diff --git a/docs/cc-sampling-1.0.html b/docs/cc-sampling-1.0.html index 8487b48f57..54912f6ec7 100644 --- a/docs/cc-sampling-1.0.html +++ b/docs/cc-sampling-1.0.html @@ -190,7 +190,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-sampling-1.0.json b/docs/cc-sampling-1.0.json index 93258e3dcc..0c1ad51d58 100644 --- a/docs/cc-sampling-1.0.json +++ b/docs/cc-sampling-1.0.json @@ -1 +1,9 @@ -{"key": "cc-sampling-1.0", "short_name": "Sampling 1.0", "name": "Sampling 1.0", "category": "Proprietary Free", "owner": "Creative Commons", "homepage_url": "https://creativecommons.org/licenses/sampling/1.0/", "spdx_license_key": "LicenseRef-scancode-cc-sampling-1.0"} \ No newline at end of file +{ + "key": "cc-sampling-1.0", + "short_name": "Sampling 1.0", + "name": "Sampling 1.0", + "category": "Proprietary Free", + "owner": "Creative Commons", + "homepage_url": "https://creativecommons.org/licenses/sampling/1.0/", + "spdx_license_key": "LicenseRef-scancode-cc-sampling-1.0" +} \ No newline at end of file diff --git a/docs/cc-sampling-plus-1.0.LICENSE b/docs/cc-sampling-plus-1.0.LICENSE index 7cd4af1a13..71d77671fe 100644 --- a/docs/cc-sampling-plus-1.0.LICENSE +++ b/docs/cc-sampling-plus-1.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: cc-sampling-plus-1.0 +short_name: Sampling Plus 1.0 +name: Sampling Plus 1.0 +category: Proprietary Free +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/sampling+/1.0/ +spdx_license_key: LicenseRef-scancode-cc-sampling-plus-1.0 +--- + Sampling Plus 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. License diff --git a/docs/cc-sampling-plus-1.0.html b/docs/cc-sampling-plus-1.0.html index 7259b1bf39..e9c85a2d97 100644 --- a/docs/cc-sampling-plus-1.0.html +++ b/docs/cc-sampling-plus-1.0.html @@ -200,7 +200,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc-sampling-plus-1.0.json b/docs/cc-sampling-plus-1.0.json index 41613f026a..3ddf0f133e 100644 --- a/docs/cc-sampling-plus-1.0.json +++ b/docs/cc-sampling-plus-1.0.json @@ -1 +1,9 @@ -{"key": "cc-sampling-plus-1.0", "short_name": "Sampling Plus 1.0", "name": "Sampling Plus 1.0", "category": "Proprietary Free", "owner": "Creative Commons", "homepage_url": "https://creativecommons.org/licenses/sampling+/1.0/", "spdx_license_key": "LicenseRef-scancode-cc-sampling-plus-1.0"} \ No newline at end of file +{ + "key": "cc-sampling-plus-1.0", + "short_name": "Sampling Plus 1.0", + "name": "Sampling Plus 1.0", + "category": "Proprietary Free", + "owner": "Creative Commons", + "homepage_url": "https://creativecommons.org/licenses/sampling+/1.0/", + "spdx_license_key": "LicenseRef-scancode-cc-sampling-plus-1.0" +} \ No newline at end of file diff --git a/docs/cc0-1.0.LICENSE b/docs/cc0-1.0.LICENSE index 0e259d42c9..e5d457ccf4 100644 --- a/docs/cc0-1.0.LICENSE +++ b/docs/cc0-1.0.LICENSE @@ -1,3 +1,18 @@ +--- +key: cc0-1.0 +short_name: CC0-1.0 +name: Creative Commons CC0 1.0 Universal +category: Public Domain +owner: Creative Commons +homepage_url: http://creativecommons.org/publicdomain/zero/1.0/ +spdx_license_key: CC0-1.0 +text_urls: + - http://creativecommons.org/publicdomain/zero/1.0/legalcode +faq_url: http://wiki.creativecommons.org/CC0_FAQ +other_urls: + - https://creativecommons.org/publicdomain/zero/1.0/legalcode +--- + Creative Commons Legal Code CC0 1.0 Universal @@ -118,4 +133,4 @@ express Statement of Purpose. Work. d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. + this CC0 or use of the Work. \ No newline at end of file diff --git a/docs/cc0-1.0.html b/docs/cc0-1.0.html index 810441865b..621d1e62a6 100644 --- a/docs/cc0-1.0.html +++ b/docs/cc0-1.0.html @@ -260,8 +260,7 @@ Work. d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. - + this CC0 or use of the Work.
@@ -273,7 +272,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cc0-1.0.json b/docs/cc0-1.0.json index 24ffba1dd5..2c747d0bfb 100644 --- a/docs/cc0-1.0.json +++ b/docs/cc0-1.0.json @@ -1 +1,16 @@ -{"key": "cc0-1.0", "short_name": "CC0-1.0", "name": "Creative Commons CC0 1.0 Universal", "category": "Public Domain", "owner": "Creative Commons", "homepage_url": "http://creativecommons.org/publicdomain/zero/1.0/", "spdx_license_key": "CC0-1.0", "text_urls": ["http://creativecommons.org/publicdomain/zero/1.0/legalcode"], "faq_url": "http://wiki.creativecommons.org/CC0_FAQ", "other_urls": ["https://creativecommons.org/publicdomain/zero/1.0/legalcode"]} \ No newline at end of file +{ + "key": "cc0-1.0", + "short_name": "CC0-1.0", + "name": "Creative Commons CC0 1.0 Universal", + "category": "Public Domain", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/publicdomain/zero/1.0/", + "spdx_license_key": "CC0-1.0", + "text_urls": [ + "http://creativecommons.org/publicdomain/zero/1.0/legalcode" + ], + "faq_url": "http://wiki.creativecommons.org/CC0_FAQ", + "other_urls": [ + "https://creativecommons.org/publicdomain/zero/1.0/legalcode" + ] +} \ No newline at end of file diff --git a/docs/cclrc.LICENSE b/docs/cclrc.LICENSE index 94548ccff2..2cb1db249d 100644 --- a/docs/cclrc.LICENSE +++ b/docs/cclrc.LICENSE @@ -1,3 +1,15 @@ +--- +key: cclrc +short_name: CCLRC License +name: CCLRC License +category: Free Restricted +owner: Lawrence Livermore National Laboratory +homepage_url: https://github.com/PCMDI/cmor/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-cclrc +other_urls: + - https://tracker.debian.org/pkg/cmor +--- + CCLRC License for CCLRC Software forming part of the Climate Model Output Rewriter Tools Package. diff --git a/docs/cclrc.html b/docs/cclrc.html index ca64cd0fad..cc42629bda 100644 --- a/docs/cclrc.html +++ b/docs/cclrc.html @@ -201,7 +201,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cclrc.json b/docs/cclrc.json index c47f37d4bf..b332f025de 100644 --- a/docs/cclrc.json +++ b/docs/cclrc.json @@ -1 +1,12 @@ -{"key": "cclrc", "short_name": "CCLRC License", "name": "CCLRC License", "category": "Free Restricted", "owner": "Lawrence Livermore National Laboratory", "homepage_url": "https://github.com/PCMDI/cmor/blob/master/LICENSE", "spdx_license_key": "LicenseRef-scancode-cclrc", "other_urls": ["https://tracker.debian.org/pkg/cmor"]} \ No newline at end of file +{ + "key": "cclrc", + "short_name": "CCLRC License", + "name": "CCLRC License", + "category": "Free Restricted", + "owner": "Lawrence Livermore National Laboratory", + "homepage_url": "https://github.com/PCMDI/cmor/blob/master/LICENSE", + "spdx_license_key": "LicenseRef-scancode-cclrc", + "other_urls": [ + "https://tracker.debian.org/pkg/cmor" + ] +} \ No newline at end of file diff --git a/docs/ccrc-1.0.LICENSE b/docs/ccrc-1.0.LICENSE index e69de29bb2..9b81f6a24f 100644 --- a/docs/ccrc-1.0.LICENSE +++ b/docs/ccrc-1.0.LICENSE @@ -0,0 +1,64 @@ +--- +key: ccrc-1.0 +is_deprecated: yes +short_name: Common Cure Rights Commitment v1.0 +name: Common Cure Rights Commitment v1.0 +category: Copyleft +owner: Red Hat, Inc. +homepage_url: https://www.redhat.com/en/about/press-releases/technology-industry-leaders-join-forces-increase-predictability-open-source-licensing +notes: the text of the license itself is under the CC-BY-SA-4.0 license. And this license has + been renamed to gplcc-1.0 +text_urls: + - http://git.gluster.org/cgit/glusterfs.git/tree/COMMITMENT + - https://raw.githubusercontent.com/wildfly/wildfly/master/COMMITMENT +other_urls: + - https://www.redhat.com/en/about/press-releases/technology-industry-leaders-join-forces-increase-predictability-open-source-licensing + - https://www.fsf.org/blogs/licensing/red-hat-leads-coalition-supporting-key-part-of-principles-of-community-oriented-gpl-enforcement +--- + +Common Cure Rights Commitment +Version 1.0 + +Before filing or continuing to prosecute any legal proceeding or claim +(other than a Defensive Action) arising from termination of a Covered +License, we commit to extend to the person or entity ('you') accused +of violating the Covered License the following provisions regarding +cure and reinstatement, taken from GPL version 3. As used here, the +term 'this License' refers to the specific Covered License being +enforced. + + 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. + +We intend this Commitment to be irrevocable, and binding and +enforceable against us and assignees of or successors to our +copyrights. + +Definitions + +'Covered License' means the GNU General Public License, version 2 +(GPLv2), the GNU Lesser General Public License, version 2.1 +(LGPLv2.1), or the GNU Library General Public License, version 2 +(LGPLv2), all as published by the Free Software Foundation. + +'Defensive Action' means a legal proceeding or claim that We bring +against you in response to a prior proceeding or claim initiated by +you or your affiliate. + +'We' means each contributor to this repository as of the date of +inclusion of this file, including subsidiaries of a corporate +contributor. + +This work is available under a Creative Commons Attribution-ShareAlike +4.0 International license (https://creativecommons.org/licenses/by-sa/4.0/). \ No newline at end of file diff --git a/docs/ccrc-1.0.html b/docs/ccrc-1.0.html index c868b78767..febea169a1 100644 --- a/docs/ccrc-1.0.html +++ b/docs/ccrc-1.0.html @@ -140,7 +140,52 @@
license_text
-
+
Common Cure Rights Commitment
+Version 1.0
+ 
+Before filing or continuing to prosecute any legal proceeding or claim
+(other than a Defensive Action) arising from termination of a Covered
+License, we commit to extend to the person or entity ('you') accused
+of violating the Covered License the following provisions regarding
+cure and reinstatement, taken from GPL version 3. As used here, the
+term 'this License' refers to the specific Covered License being
+enforced.
+
+    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.
+
+We intend this Commitment to be irrevocable, and binding and
+enforceable against us and assignees of or successors to our
+copyrights.
+
+Definitions
+
+'Covered License' means the GNU General Public License, version 2
+(GPLv2), the GNU Lesser General Public License, version 2.1
+(LGPLv2.1), or the GNU Library General Public License, version 2
+(LGPLv2), all as published by the Free Software Foundation.
+
+'Defensive Action' means a legal proceeding or claim that We bring
+against you in response to a prior proceeding or claim initiated by
+you or your affiliate.
+
+'We' means each contributor to this repository as of the date of
+inclusion of this file, including subsidiaries of a corporate
+contributor.
+
+This work is available under a Creative Commons Attribution-ShareAlike
+4.0 International license (https://creativecommons.org/licenses/by-sa/4.0/).
@@ -152,7 +197,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ccrc-1.0.json b/docs/ccrc-1.0.json index 29ab7f92f6..3986b69b2c 100644 --- a/docs/ccrc-1.0.json +++ b/docs/ccrc-1.0.json @@ -1 +1,18 @@ -{"key": "ccrc-1.0", "is_deprecated": true, "short_name": "Common Cure Rights Commitment v1.0", "name": "Common Cure Rights Commitment v1.0", "category": "Copyleft", "owner": "Red Hat, Inc.", "homepage_url": "https://www.redhat.com/en/about/press-releases/technology-industry-leaders-join-forces-increase-predictability-open-source-licensing", "notes": "the text of the license itself is under the CC-BY-SA-4.0 license. And this license has been renamed to gplcc-1.0", "text_urls": ["http://git.gluster.org/cgit/glusterfs.git/tree/COMMITMENT", "https://raw.githubusercontent.com/wildfly/wildfly/master/COMMITMENT"], "other_urls": ["https://www.redhat.com/en/about/press-releases/technology-industry-leaders-join-forces-increase-predictability-open-source-licensing", "https://www.fsf.org/blogs/licensing/red-hat-leads-coalition-supporting-key-part-of-principles-of-community-oriented-gpl-enforcement"]} \ No newline at end of file +{ + "key": "ccrc-1.0", + "is_deprecated": true, + "short_name": "Common Cure Rights Commitment v1.0", + "name": "Common Cure Rights Commitment v1.0", + "category": "Copyleft", + "owner": "Red Hat, Inc.", + "homepage_url": "https://www.redhat.com/en/about/press-releases/technology-industry-leaders-join-forces-increase-predictability-open-source-licensing", + "notes": "the text of the license itself is under the CC-BY-SA-4.0 license. And this license has been renamed to gplcc-1.0", + "text_urls": [ + "http://git.gluster.org/cgit/glusterfs.git/tree/COMMITMENT", + "https://raw.githubusercontent.com/wildfly/wildfly/master/COMMITMENT" + ], + "other_urls": [ + "https://www.redhat.com/en/about/press-releases/technology-industry-leaders-join-forces-increase-predictability-open-source-licensing", + "https://www.fsf.org/blogs/licensing/red-hat-leads-coalition-supporting-key-part-of-principles-of-community-oriented-gpl-enforcement" + ] +} \ No newline at end of file diff --git a/docs/cddl-1.0.LICENSE b/docs/cddl-1.0.LICENSE index 7f0c8dc0ee..251f0719b1 100644 --- a/docs/cddl-1.0.LICENSE +++ b/docs/cddl-1.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: cddl-1.0 +short_name: CDDL 1.0 +name: Common Development and Distribution License 1.0 +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: http://www.sun.com/cddl/ +notes: | + Per SPDX.org, this license was released 24 January 2004. This license is + OSI certified. +spdx_license_key: CDDL-1.0 +osi_license_key: CDDL-1.0 +text_urls: + - http://www.opensolaris.org/os/licensing/cddllicense.txt + - http://www.sun.com/cddl/cddl.html +osi_url: http://www.opensource.org/licenses/cddl1.txt +faq_url: http://www.opensolaris.org/os/about/faq/licensing_faq/ +other_urls: + - http://www.gnu.org/licenses/license-list.html#CDDL + - http://www.opensource.org/licenses/cddl1 + - http://www.oracle.com/us/sun/index.html + - https://glassfish.dev.java.net/public/CDDLv1.0.html + - https://opensource.org/licenses/cddl1 +--- + COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 1. Definitions. diff --git a/docs/cddl-1.0.html b/docs/cddl-1.0.html index 5bb936016f..72ea5c4787 100644 --- a/docs/cddl-1.0.html +++ b/docs/cddl-1.0.html @@ -267,7 +267,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cddl-1.0.json b/docs/cddl-1.0.json index c2bdfda487..0837431779 100644 --- a/docs/cddl-1.0.json +++ b/docs/cddl-1.0.json @@ -1 +1,24 @@ -{"key": "cddl-1.0", "short_name": "CDDL 1.0", "name": "Common Development and Distribution License 1.0", "category": "Copyleft Limited", "owner": "Oracle Corporation", "homepage_url": "http://www.sun.com/cddl/", "notes": "Per SPDX.org, this license was released 24 January 2004. This license is\nOSI certified.\n", "spdx_license_key": "CDDL-1.0", "osi_license_key": "CDDL-1.0", "text_urls": ["http://www.opensolaris.org/os/licensing/cddllicense.txt", "http://www.sun.com/cddl/cddl.html"], "osi_url": "http://www.opensource.org/licenses/cddl1.txt", "faq_url": "http://www.opensolaris.org/os/about/faq/licensing_faq/", "other_urls": ["http://www.gnu.org/licenses/license-list.html#CDDL", "http://www.opensource.org/licenses/cddl1", "http://www.oracle.com/us/sun/index.html", "https://glassfish.dev.java.net/public/CDDLv1.0.html", "https://opensource.org/licenses/cddl1"]} \ No newline at end of file +{ + "key": "cddl-1.0", + "short_name": "CDDL 1.0", + "name": "Common Development and Distribution License 1.0", + "category": "Copyleft Limited", + "owner": "Oracle Corporation", + "homepage_url": "http://www.sun.com/cddl/", + "notes": "Per SPDX.org, this license was released 24 January 2004. This license is\nOSI certified.\n", + "spdx_license_key": "CDDL-1.0", + "osi_license_key": "CDDL-1.0", + "text_urls": [ + "http://www.opensolaris.org/os/licensing/cddllicense.txt", + "http://www.sun.com/cddl/cddl.html" + ], + "osi_url": "http://www.opensource.org/licenses/cddl1.txt", + "faq_url": "http://www.opensolaris.org/os/about/faq/licensing_faq/", + "other_urls": [ + "http://www.gnu.org/licenses/license-list.html#CDDL", + "http://www.opensource.org/licenses/cddl1", + "http://www.oracle.com/us/sun/index.html", + "https://glassfish.dev.java.net/public/CDDLv1.0.html", + "https://opensource.org/licenses/cddl1" + ] +} \ No newline at end of file diff --git a/docs/cddl-1.1.LICENSE b/docs/cddl-1.1.LICENSE index 4ebff13183..abca2de8ce 100644 --- a/docs/cddl-1.1.LICENSE +++ b/docs/cddl-1.1.LICENSE @@ -1,3 +1,21 @@ +--- +key: cddl-1.1 +short_name: CDDL 1.1 +name: Common Development and Distribution License 1.1 +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: http://glassfish.java.net/public/CDDL+GPL_1_1.html +notes: | + per SPDX.org, same as 1.0, but changes name from Sun to Oracle in section + 4.1 and adds patent infringement termination clause (section 6.3) +spdx_license_key: CDDL-1.1 +text_urls: + - http://glassfish.java.net/public/CDDL+GPL_1_1.html +faq_url: http://glassfish.java.net/public/CDDL+GPL_1_1.html +other_urls: + - https://javaee.github.io/glassfish/LICENSE +--- + COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)Version 1.1 1. Definitions. diff --git a/docs/cddl-1.1.html b/docs/cddl-1.1.html index e07a233acd..9da266af75 100644 --- a/docs/cddl-1.1.html +++ b/docs/cddl-1.1.html @@ -245,7 +245,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cddl-1.1.json b/docs/cddl-1.1.json index 9939725a26..2b93be4e79 100644 --- a/docs/cddl-1.1.json +++ b/docs/cddl-1.1.json @@ -1 +1,17 @@ -{"key": "cddl-1.1", "short_name": "CDDL 1.1", "name": "Common Development and Distribution License 1.1", "category": "Copyleft Limited", "owner": "Oracle Corporation", "homepage_url": "http://glassfish.java.net/public/CDDL+GPL_1_1.html", "notes": "per SPDX.org, same as 1.0, but changes name from Sun to Oracle in section\n4.1 and adds patent infringement termination clause (section 6.3)\n", "spdx_license_key": "CDDL-1.1", "text_urls": ["http://glassfish.java.net/public/CDDL+GPL_1_1.html"], "faq_url": "http://glassfish.java.net/public/CDDL+GPL_1_1.html", "other_urls": ["https://javaee.github.io/glassfish/LICENSE"]} \ No newline at end of file +{ + "key": "cddl-1.1", + "short_name": "CDDL 1.1", + "name": "Common Development and Distribution License 1.1", + "category": "Copyleft Limited", + "owner": "Oracle Corporation", + "homepage_url": "http://glassfish.java.net/public/CDDL+GPL_1_1.html", + "notes": "per SPDX.org, same as 1.0, but changes name from Sun to Oracle in section\n4.1 and adds patent infringement termination clause (section 6.3)\n", + "spdx_license_key": "CDDL-1.1", + "text_urls": [ + "http://glassfish.java.net/public/CDDL+GPL_1_1.html" + ], + "faq_url": "http://glassfish.java.net/public/CDDL+GPL_1_1.html", + "other_urls": [ + "https://javaee.github.io/glassfish/LICENSE" + ] +} \ No newline at end of file diff --git a/docs/cdla-permissive-1.0.LICENSE b/docs/cdla-permissive-1.0.LICENSE index 0ca9ffeb51..a8cdeb9311 100644 --- a/docs/cdla-permissive-1.0.LICENSE +++ b/docs/cdla-permissive-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: cdla-permissive-1.0 +short_name: CDLA Permissive 1.0 +name: Community Data License Agreement Permissive 1.0 +category: Permissive +owner: Linux Foundation +homepage_url: https://cdla.io/permissive-1-0/ +spdx_license_key: CDLA-Permissive-1.0 +other_urls: + - https://cdla.io/permissive-1-0 +--- + Community Data License Agreement – Permissive – Version 1.0 This is the Community Data License Agreement – Permissive, Version 1.0 ("Agreement"). Data is provided to You under this Agreement by each of the Data Providers. Your exercise of any of the rights and permissions granted below constitutes Your acceptance and agreement to be bound by the terms and conditions of this Agreement. diff --git a/docs/cdla-permissive-1.0.html b/docs/cdla-permissive-1.0.html index 90e1c87c41..5328602de5 100644 --- a/docs/cdla-permissive-1.0.html +++ b/docs/cdla-permissive-1.0.html @@ -220,7 +220,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cdla-permissive-1.0.json b/docs/cdla-permissive-1.0.json index 4cefd8a826..29f2c61f56 100644 --- a/docs/cdla-permissive-1.0.json +++ b/docs/cdla-permissive-1.0.json @@ -1 +1,12 @@ -{"key": "cdla-permissive-1.0", "short_name": "CDLA Permissive 1.0", "name": "Community Data License Agreement Permissive 1.0", "category": "Permissive", "owner": "Linux Foundation", "homepage_url": "https://cdla.io/permissive-1-0/", "spdx_license_key": "CDLA-Permissive-1.0", "other_urls": ["https://cdla.io/permissive-1-0"]} \ No newline at end of file +{ + "key": "cdla-permissive-1.0", + "short_name": "CDLA Permissive 1.0", + "name": "Community Data License Agreement Permissive 1.0", + "category": "Permissive", + "owner": "Linux Foundation", + "homepage_url": "https://cdla.io/permissive-1-0/", + "spdx_license_key": "CDLA-Permissive-1.0", + "other_urls": [ + "https://cdla.io/permissive-1-0" + ] +} \ No newline at end of file diff --git a/docs/cdla-permissive-2.0.LICENSE b/docs/cdla-permissive-2.0.LICENSE index 5b7a4ac8b4..2f761306b1 100644 --- a/docs/cdla-permissive-2.0.LICENSE +++ b/docs/cdla-permissive-2.0.LICENSE @@ -1,3 +1,18 @@ +--- +key: cdla-permissive-2.0 +short_name: CDLA Permissive 2.0 +name: Community Data License Agreement Permissive 2.0 +category: Permissive +owner: Linux Foundation +homepage_url: https://cdla.dev/permissive-2-0/ +spdx_license_key: CDLA-Permissive-2.0 +text_urls: + - https://raw.githubusercontent.com/Community-Data-License-Agreements/Releases/main/CDLA-Permissive-2.0.txt +faq_url: https://cdla.dev/ +other_urls: + - https://cdla.dev/permissive-2-0 +--- + Community Data License Agreement - Permissive - Version 2.0 This is the Community Data License Agreement - Permissive, Version 2.0 (the "agreement"). Data Provider(s) and Data Recipient(s) agree as follows: diff --git a/docs/cdla-permissive-2.0.html b/docs/cdla-permissive-2.0.html index bd87704a06..37c11b9176 100644 --- a/docs/cdla-permissive-2.0.html +++ b/docs/cdla-permissive-2.0.html @@ -186,7 +186,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cdla-permissive-2.0.json b/docs/cdla-permissive-2.0.json index 8eb82a602b..10f2de0b2d 100644 --- a/docs/cdla-permissive-2.0.json +++ b/docs/cdla-permissive-2.0.json @@ -1 +1,16 @@ -{"key": "cdla-permissive-2.0", "short_name": "CDLA Permissive 2.0", "name": "Community Data License Agreement Permissive 2.0", "category": "Permissive", "owner": "Linux Foundation", "homepage_url": "https://cdla.dev/permissive-2-0/", "spdx_license_key": "CDLA-Permissive-2.0", "text_urls": ["https://raw.githubusercontent.com/Community-Data-License-Agreements/Releases/main/CDLA-Permissive-2.0.txt"], "faq_url": "https://cdla.dev/", "other_urls": ["https://cdla.dev/permissive-2-0"]} \ No newline at end of file +{ + "key": "cdla-permissive-2.0", + "short_name": "CDLA Permissive 2.0", + "name": "Community Data License Agreement Permissive 2.0", + "category": "Permissive", + "owner": "Linux Foundation", + "homepage_url": "https://cdla.dev/permissive-2-0/", + "spdx_license_key": "CDLA-Permissive-2.0", + "text_urls": [ + "https://raw.githubusercontent.com/Community-Data-License-Agreements/Releases/main/CDLA-Permissive-2.0.txt" + ], + "faq_url": "https://cdla.dev/", + "other_urls": [ + "https://cdla.dev/permissive-2-0" + ] +} \ No newline at end of file diff --git a/docs/cdla-sharing-1.0.LICENSE b/docs/cdla-sharing-1.0.LICENSE index 42472d7b45..3a7ebe59ab 100644 --- a/docs/cdla-sharing-1.0.LICENSE +++ b/docs/cdla-sharing-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: cdla-sharing-1.0 +short_name: CDLA Sharing 1.0 +name: Community Data License Agreement Sharing 1.0 +category: Copyleft Limited +owner: Linux Foundation +homepage_url: https://cdla.io/sharing-1-0/ +spdx_license_key: CDLA-Sharing-1.0 +other_urls: + - https://cdla.io/sharing-1-0 +--- + Community Data License Agreement – Sharing – Version 1.0 This is the Community Data License Agreement – Sharing, Version 1.0 ("Agreement"). Data is provided to You under this Agreement by each of the Data Providers. Your exercise of any of the rights and permissions granted below constitutes Your acceptance and agreement to be bound by the terms and conditions of this Agreement. diff --git a/docs/cdla-sharing-1.0.html b/docs/cdla-sharing-1.0.html index 90c4573ad2..02c34fa7f3 100644 --- a/docs/cdla-sharing-1.0.html +++ b/docs/cdla-sharing-1.0.html @@ -224,7 +224,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cdla-sharing-1.0.json b/docs/cdla-sharing-1.0.json index 5d21b53f44..97975fb883 100644 --- a/docs/cdla-sharing-1.0.json +++ b/docs/cdla-sharing-1.0.json @@ -1 +1,12 @@ -{"key": "cdla-sharing-1.0", "short_name": "CDLA Sharing 1.0", "name": "Community Data License Agreement Sharing 1.0", "category": "Copyleft Limited", "owner": "Linux Foundation", "homepage_url": "https://cdla.io/sharing-1-0/", "spdx_license_key": "CDLA-Sharing-1.0", "other_urls": ["https://cdla.io/sharing-1-0"]} \ No newline at end of file +{ + "key": "cdla-sharing-1.0", + "short_name": "CDLA Sharing 1.0", + "name": "Community Data License Agreement Sharing 1.0", + "category": "Copyleft Limited", + "owner": "Linux Foundation", + "homepage_url": "https://cdla.io/sharing-1-0/", + "spdx_license_key": "CDLA-Sharing-1.0", + "other_urls": [ + "https://cdla.io/sharing-1-0" + ] +} \ No newline at end of file diff --git a/docs/cecill-1.0-en.LICENSE b/docs/cecill-1.0-en.LICENSE index e8e1d2033e..e0944118f6 100644 --- a/docs/cecill-1.0-en.LICENSE +++ b/docs/cecill-1.0-en.LICENSE @@ -1,3 +1,15 @@ +--- +key: cecill-1.0-en +short_name: CeCILL 1.0 English +name: CeCILL Free Software License Agreement v1.0 English +category: Copyleft +owner: CeCILL +homepage_url: http://www.cecill.info/licences/Licence_CeCILL_V1-US.html +spdx_license_key: LicenseRef-scancode-cecill-1.0-en +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V1-US.txt +--- + FREE SOFTWARE LICENSING AGREEMENT CeCILL ======================================== @@ -500,15 +512,4 @@ disagreements or disputes shall be referred to the Paris Courts having jurisdiction, by the first Party to take action. - Version 1 of 06/21/2004 - - - - - - - - - - - + Version 1 of 06/21/2004 \ No newline at end of file diff --git a/docs/cecill-1.0-en.html b/docs/cecill-1.0-en.html index 20bcd0277c..2b7f2c164d 100644 --- a/docs/cecill-1.0-en.html +++ b/docs/cecill-1.0-en.html @@ -626,19 +626,7 @@ jurisdiction, by the first Party to take action. - Version 1 of 06/21/2004 - - - - - - - - - - - - + Version 1 of 06/21/2004
@@ -650,7 +638,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cecill-1.0-en.json b/docs/cecill-1.0-en.json index 96e77efdd7..8e340adcc2 100644 --- a/docs/cecill-1.0-en.json +++ b/docs/cecill-1.0-en.json @@ -1 +1,12 @@ -{"key": "cecill-1.0-en", "short_name": "CeCILL 1.0 English", "name": "CeCILL Free Software License Agreement v1.0 English", "category": "Copyleft", "owner": "CeCILL", "homepage_url": "http://www.cecill.info/licences/Licence_CeCILL_V1-US.html", "spdx_license_key": "LicenseRef-scancode-cecill-1.0-en", "text_urls": ["http://www.cecill.info/licences/Licence_CeCILL_V1-US.txt"]} \ No newline at end of file +{ + "key": "cecill-1.0-en", + "short_name": "CeCILL 1.0 English", + "name": "CeCILL Free Software License Agreement v1.0 English", + "category": "Copyleft", + "owner": "CeCILL", + "homepage_url": "http://www.cecill.info/licences/Licence_CeCILL_V1-US.html", + "spdx_license_key": "LicenseRef-scancode-cecill-1.0-en", + "text_urls": [ + "http://www.cecill.info/licences/Licence_CeCILL_V1-US.txt" + ] +} \ No newline at end of file diff --git a/docs/cecill-1.0.LICENSE b/docs/cecill-1.0.LICENSE index 8e147fd6d0..2b7c93910b 100644 --- a/docs/cecill-1.0.LICENSE +++ b/docs/cecill-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cecill-1.0 +language: fr +short_name: CeCILL 1.0 +name: CeCILL Free Software License Agreement v1.0 +category: Copyleft +owner: CeCILL +homepage_url: http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html +spdx_license_key: CECILL-1.0 +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V1-fr.txt +other_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V1-US.html + - http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html +--- + CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL =========================================== @@ -484,4 +500,4 @@ les Tribunaux compétents de Paris. - Version 1 du 21/06/2004 + Version 1 du 21/06/2004 \ No newline at end of file diff --git a/docs/cecill-1.0.html b/docs/cecill-1.0.html index e07afcfdbb..d7e9a7eb92 100644 --- a/docs/cecill-1.0.html +++ b/docs/cecill-1.0.html @@ -626,8 +626,7 @@ - Version 1 du 21/06/2004 - + Version 1 du 21/06/2004
@@ -639,7 +638,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cecill-1.0.json b/docs/cecill-1.0.json index 0cdc75f9ef..b3f27ed470 100644 --- a/docs/cecill-1.0.json +++ b/docs/cecill-1.0.json @@ -1 +1,17 @@ -{"key": "cecill-1.0", "language": "fr", "short_name": "CeCILL 1.0", "name": "CeCILL Free Software License Agreement v1.0", "category": "Copyleft", "owner": "CeCILL", "homepage_url": "http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html", "spdx_license_key": "CECILL-1.0", "text_urls": ["http://www.cecill.info/licences/Licence_CeCILL_V1-fr.txt"], "other_urls": ["http://www.cecill.info/licences/Licence_CeCILL_V1-US.html", "http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html"]} \ No newline at end of file +{ + "key": "cecill-1.0", + "language": "fr", + "short_name": "CeCILL 1.0", + "name": "CeCILL Free Software License Agreement v1.0", + "category": "Copyleft", + "owner": "CeCILL", + "homepage_url": "http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html", + "spdx_license_key": "CECILL-1.0", + "text_urls": [ + "http://www.cecill.info/licences/Licence_CeCILL_V1-fr.txt" + ], + "other_urls": [ + "http://www.cecill.info/licences/Licence_CeCILL_V1-US.html", + "http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html" + ] +} \ No newline at end of file diff --git a/docs/cecill-1.1.LICENSE b/docs/cecill-1.1.LICENSE index 0b82f22ded..ebac292847 100644 --- a/docs/cecill-1.1.LICENSE +++ b/docs/cecill-1.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: cecill-1.1 +short_name: CeCILL 1.1 English +name: CeCILL Free Software License Agreement v1.1 +category: Copyleft Limited +owner: CeCILL +homepage_url: http://www.cecill.info/licences.en.html +notes: | + Per SPDX.org, there is only an English version for 1.1, which includes some + wording changes from v1.0 +spdx_license_key: CECILL-1.1 +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.txt +other_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html +--- + FREE SOFTWARE LICENSING AGREEMENT CeCILL ======================================== @@ -499,15 +516,4 @@ disagreements or disputes shall be referred to the Paris Courts having jurisdiction, by the first Party to take action. - Version 1.1 of 10/26/2004 - - - - - - - - - - - + Version 1.1 of 10/26/2004 \ No newline at end of file diff --git a/docs/cecill-1.1.html b/docs/cecill-1.1.html index 814928bb12..42397a9d56 100644 --- a/docs/cecill-1.1.html +++ b/docs/cecill-1.1.html @@ -643,19 +643,7 @@ jurisdiction, by the first Party to take action. - Version 1.1 of 10/26/2004 - - - - - - - - - - - - + Version 1.1 of 10/26/2004
@@ -667,7 +655,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cecill-1.1.json b/docs/cecill-1.1.json index 14953f8fb0..ac14ba1872 100644 --- a/docs/cecill-1.1.json +++ b/docs/cecill-1.1.json @@ -1 +1,16 @@ -{"key": "cecill-1.1", "short_name": "CeCILL 1.1 English", "name": "CeCILL Free Software License Agreement v1.1", "category": "Copyleft Limited", "owner": "CeCILL", "homepage_url": "http://www.cecill.info/licences.en.html", "notes": "Per SPDX.org, there is only an English version for 1.1, which includes some\nwording changes from v1.0\n", "spdx_license_key": "CECILL-1.1", "text_urls": ["http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.txt"], "other_urls": ["http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html"]} \ No newline at end of file +{ + "key": "cecill-1.1", + "short_name": "CeCILL 1.1 English", + "name": "CeCILL Free Software License Agreement v1.1", + "category": "Copyleft Limited", + "owner": "CeCILL", + "homepage_url": "http://www.cecill.info/licences.en.html", + "notes": "Per SPDX.org, there is only an English version for 1.1, which includes some\nwording changes from v1.0\n", + "spdx_license_key": "CECILL-1.1", + "text_urls": [ + "http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.txt" + ], + "other_urls": [ + "http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html" + ] +} \ No newline at end of file diff --git a/docs/cecill-2.0-fr.LICENSE b/docs/cecill-2.0-fr.LICENSE index d67912112b..7126162734 100644 --- a/docs/cecill-2.0-fr.LICENSE +++ b/docs/cecill-2.0-fr.LICENSE @@ -1,3 +1,18 @@ +--- +key: cecill-2.0-fr +language: fr +short_name: CeCILL 2.0 French +name: CeCILL Free Software License Agreement v2.0 French +category: Copyleft Limited +owner: CeCILL +homepage_url: http://www.cecill.info/licences.en.html +spdx_license_key: LicenseRef-scancode-cecill-2.0-fr +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V2-en.html + - http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + - http://www.cecill.info/licences/Licence_CeCILL_V2-fr.html + - http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt +--- CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL @@ -509,4 +524,4 @@ les différends ou litiges seront portés par la Partie la plus diligente devant les Tribunaux compétents de Paris. -Version 2.0 du 2006-09-05. +Version 2.0 du 2006-09-05. \ No newline at end of file diff --git a/docs/cecill-2.0-fr.html b/docs/cecill-2.0-fr.html index 52947ae824..5db9e4bf5e 100644 --- a/docs/cecill-2.0-fr.html +++ b/docs/cecill-2.0-fr.html @@ -131,8 +131,7 @@
license_text
-

-CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL
+    
CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL
 
 
     Avertissement
@@ -642,8 +641,7 @@
 devant les Tribunaux compétents de Paris.
 
 
-Version 2.0 du 2006-09-05.
-
+Version 2.0 du 2006-09-05.
@@ -655,7 +653,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cecill-2.0-fr.json b/docs/cecill-2.0-fr.json index eee2565bc1..9806b55570 100644 --- a/docs/cecill-2.0-fr.json +++ b/docs/cecill-2.0-fr.json @@ -1 +1,16 @@ -{"key": "cecill-2.0-fr", "language": "fr", "short_name": "CeCILL 2.0 French", "name": "CeCILL Free Software License Agreement v2.0 French", "category": "Copyleft Limited", "owner": "CeCILL", "homepage_url": "http://www.cecill.info/licences.en.html", "spdx_license_key": "LicenseRef-scancode-cecill-2.0-fr", "text_urls": ["http://www.cecill.info/licences/Licence_CeCILL_V2-en.html", "http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt", "http://www.cecill.info/licences/Licence_CeCILL_V2-fr.html", "http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt"]} \ No newline at end of file +{ + "key": "cecill-2.0-fr", + "language": "fr", + "short_name": "CeCILL 2.0 French", + "name": "CeCILL Free Software License Agreement v2.0 French", + "category": "Copyleft Limited", + "owner": "CeCILL", + "homepage_url": "http://www.cecill.info/licences.en.html", + "spdx_license_key": "LicenseRef-scancode-cecill-2.0-fr", + "text_urls": [ + "http://www.cecill.info/licences/Licence_CeCILL_V2-en.html", + "http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt", + "http://www.cecill.info/licences/Licence_CeCILL_V2-fr.html", + "http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt" + ] +} \ No newline at end of file diff --git a/docs/cecill-2.0.LICENSE b/docs/cecill-2.0.LICENSE index 8aa5b54f7c..581d7e66d0 100644 --- a/docs/cecill-2.0.LICENSE +++ b/docs/cecill-2.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: cecill-2.0 +short_name: CeCILL 2.0 +name: CeCILL Free Software License Agreement v2.0 +category: Copyleft Limited +owner: CeCILL +homepage_url: http://www.cecill.info/licences.en.html +notes: | + per SPDX.org, English translation can be found here + http://www.cecill.info/licences/Licence_CeCILL_V2-en.html +spdx_license_key: CECILL-2.0 +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V2-en.html + - http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + - http://www.cecill.info/licences/Licence_CeCILL_V2-fr.html + - http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt +--- + CeCILL FREE SOFTWARE LICENSE AGREEMENT Notice diff --git a/docs/cecill-2.0.html b/docs/cecill-2.0.html index d06b40dd70..2963a31f19 100644 --- a/docs/cecill-2.0.html +++ b/docs/cecill-2.0.html @@ -648,7 +648,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cecill-2.0.json b/docs/cecill-2.0.json index a47ce36c71..4b54f5158a 100644 --- a/docs/cecill-2.0.json +++ b/docs/cecill-2.0.json @@ -1 +1,16 @@ -{"key": "cecill-2.0", "short_name": "CeCILL 2.0", "name": "CeCILL Free Software License Agreement v2.0", "category": "Copyleft Limited", "owner": "CeCILL", "homepage_url": "http://www.cecill.info/licences.en.html", "notes": "per SPDX.org, English translation can be found here\nhttp://www.cecill.info/licences/Licence_CeCILL_V2-en.html\n", "spdx_license_key": "CECILL-2.0", "text_urls": ["http://www.cecill.info/licences/Licence_CeCILL_V2-en.html", "http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt", "http://www.cecill.info/licences/Licence_CeCILL_V2-fr.html", "http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt"]} \ No newline at end of file +{ + "key": "cecill-2.0", + "short_name": "CeCILL 2.0", + "name": "CeCILL Free Software License Agreement v2.0", + "category": "Copyleft Limited", + "owner": "CeCILL", + "homepage_url": "http://www.cecill.info/licences.en.html", + "notes": "per SPDX.org, English translation can be found here\nhttp://www.cecill.info/licences/Licence_CeCILL_V2-en.html\n", + "spdx_license_key": "CECILL-2.0", + "text_urls": [ + "http://www.cecill.info/licences/Licence_CeCILL_V2-en.html", + "http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt", + "http://www.cecill.info/licences/Licence_CeCILL_V2-fr.html", + "http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt" + ] +} \ No newline at end of file diff --git a/docs/cecill-2.1-fr.LICENSE b/docs/cecill-2.1-fr.LICENSE index be9a324cb8..67bcecc29d 100644 --- a/docs/cecill-2.1-fr.LICENSE +++ b/docs/cecill-2.1-fr.LICENSE @@ -1,3 +1,24 @@ +--- +key: cecill-2.1-fr +language: fr +short_name: CeCILL 2.1 French +name: CeCILL Free Software License Agreement v2.1 French +category: Copyleft Limited +owner: CeCILL +homepage_url: http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html +spdx_license_key: LicenseRef-scancode-cecill-2.1-fr +osi_license_key: CECILL-2.1 +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.txt +osi_url: http://opensource.org/licenses/CECILL-2.1 +other_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html +ignorable_urls: + - http://www.cecill.info/index.fr.html +--- CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL @@ -545,6 +566,4 @@ viendraient à se produire par suite ou à l'occasion du Contrat. 13.2 A défaut d'accord amiable dans un délai de deux (2) mois à compter de leur survenance et sauf situation relevant d'une procédure d'urgence, les différends ou litiges seront portés par la Partie la plus diligente -devant les Tribunaux compétents de Paris. - - +devant les Tribunaux compétents de Paris. \ No newline at end of file diff --git a/docs/cecill-2.1-fr.html b/docs/cecill-2.1-fr.html index 8a666ae69d..ac0e976772 100644 --- a/docs/cecill-2.1-fr.html +++ b/docs/cecill-2.1-fr.html @@ -163,8 +163,7 @@
license_text
-

-  CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL
+    
  CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL
 
 Version 2.1 du 2013-06-21
 
@@ -710,10 +709,7 @@
 13.2 A défaut d'accord amiable dans un délai de deux (2) mois à compter
 de leur survenance et sauf situation relevant d'une procédure d'urgence,
 les différends ou litiges seront portés par la Partie la plus diligente
-devant les Tribunaux compétents de Paris.
-
-
-
+devant les Tribunaux compétents de Paris.
@@ -725,7 +721,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cecill-2.1-fr.json b/docs/cecill-2.1-fr.json index 6f46186bcc..eb8d8cd351 100644 --- a/docs/cecill-2.1-fr.json +++ b/docs/cecill-2.1-fr.json @@ -1 +1,24 @@ -{"key": "cecill-2.1-fr", "language": "fr", "short_name": "CeCILL 2.1 French", "name": "CeCILL Free Software License Agreement v2.1 French", "category": "Copyleft Limited", "owner": "CeCILL", "homepage_url": "http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html", "spdx_license_key": "LicenseRef-scancode-cecill-2.1-fr", "osi_license_key": "CECILL-2.1", "text_urls": ["http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html", "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt", "http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html", "http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.txt"], "osi_url": "http://opensource.org/licenses/CECILL-2.1", "other_urls": ["http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html"], "ignorable_urls": ["http://www.cecill.info/index.fr.html"]} \ No newline at end of file +{ + "key": "cecill-2.1-fr", + "language": "fr", + "short_name": "CeCILL 2.1 French", + "name": "CeCILL Free Software License Agreement v2.1 French", + "category": "Copyleft Limited", + "owner": "CeCILL", + "homepage_url": "http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html", + "spdx_license_key": "LicenseRef-scancode-cecill-2.1-fr", + "osi_license_key": "CECILL-2.1", + "text_urls": [ + "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html", + "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt", + "http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html", + "http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.txt" + ], + "osi_url": "http://opensource.org/licenses/CECILL-2.1", + "other_urls": [ + "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html" + ], + "ignorable_urls": [ + "http://www.cecill.info/index.fr.html" + ] +} \ No newline at end of file diff --git a/docs/cecill-2.1.LICENSE b/docs/cecill-2.1.LICENSE index e7c9f89937..fd3b0d3325 100644 --- a/docs/cecill-2.1.LICENSE +++ b/docs/cecill-2.1.LICENSE @@ -1,3 +1,23 @@ +--- +key: cecill-2.1 +short_name: CeCILL 2.1 +name: CeCILL Free Software License Agreement v2.1 +category: Copyleft Limited +owner: CeCILL +homepage_url: http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html +spdx_license_key: CECILL-2.1 +osi_license_key: CECILL-2.1 +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.txt +osi_url: http://opensource.org/licenses/CECILL-2.1 +other_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html +ignorable_urls: + - http://www.cecill.info/index.en.html +--- CeCILL FREE SOFTWARE LICENSE AGREEMENT @@ -515,5 +535,4 @@ that may arise during the performance of the Agreement. 13.2 Failing an amicable solution within two (2) months as from their occurrence, and unless emergency proceedings are necessary, the disagreements or disputes shall be referred to the Paris Courts having -jurisdiction, by the more diligent Party. - +jurisdiction, by the more diligent Party. \ No newline at end of file diff --git a/docs/cecill-2.1.html b/docs/cecill-2.1.html index f8c689785b..20adda3934 100644 --- a/docs/cecill-2.1.html +++ b/docs/cecill-2.1.html @@ -156,8 +156,7 @@
license_text
-

-  CeCILL FREE SOFTWARE LICENSE AGREEMENT
+    
  CeCILL FREE SOFTWARE LICENSE AGREEMENT
 
 Version 2.1 dated 2013-06-21
 
@@ -673,9 +672,7 @@
 13.2 Failing an amicable solution within two (2) months as from their
 occurrence, and unless emergency proceedings are necessary, the
 disagreements or disputes shall be referred to the Paris Courts having
-jurisdiction, by the more diligent Party.
-
-
+jurisdiction, by the more diligent Party.
@@ -687,7 +684,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cecill-2.1.json b/docs/cecill-2.1.json index e519d1ace1..e050ab0f32 100644 --- a/docs/cecill-2.1.json +++ b/docs/cecill-2.1.json @@ -1 +1,23 @@ -{"key": "cecill-2.1", "short_name": "CeCILL 2.1", "name": "CeCILL Free Software License Agreement v2.1", "category": "Copyleft Limited", "owner": "CeCILL", "homepage_url": "http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html", "spdx_license_key": "CECILL-2.1", "osi_license_key": "CECILL-2.1", "text_urls": ["http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html", "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt", "http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html", "http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.txt"], "osi_url": "http://opensource.org/licenses/CECILL-2.1", "other_urls": ["http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html"], "ignorable_urls": ["http://www.cecill.info/index.en.html"]} \ No newline at end of file +{ + "key": "cecill-2.1", + "short_name": "CeCILL 2.1", + "name": "CeCILL Free Software License Agreement v2.1", + "category": "Copyleft Limited", + "owner": "CeCILL", + "homepage_url": "http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html", + "spdx_license_key": "CECILL-2.1", + "osi_license_key": "CECILL-2.1", + "text_urls": [ + "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html", + "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt", + "http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html", + "http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.txt" + ], + "osi_url": "http://opensource.org/licenses/CECILL-2.1", + "other_urls": [ + "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html" + ], + "ignorable_urls": [ + "http://www.cecill.info/index.en.html" + ] +} \ No newline at end of file diff --git a/docs/cecill-b-en.LICENSE b/docs/cecill-b-en.LICENSE index da418978d4..3407a33676 100644 --- a/docs/cecill-b-en.LICENSE +++ b/docs/cecill-b-en.LICENSE @@ -1,3 +1,20 @@ +--- +key: cecill-b-en +short_name: CeCILL-B License English +name: CeCILL-B Free Software License Agreement English +category: Permissive +owner: CeCILL +homepage_url: http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +notes: The primary text is in French. +spdx_license_key: LicenseRef-scancode-cecill-b-en +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt + - http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.txt +faq_url: http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +other_urls: + - http://www.cecill.info/licences.en.html + - http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +--- CeCILL-B FREE SOFTWARE LICENSE AGREEMENT @@ -512,4 +529,4 @@ disagreements or disputes shall be referred to the Paris Courts having jurisdiction, by the more diligent Party. -Version 1.0 dated 2006-09-05. +Version 1.0 dated 2006-09-05. \ No newline at end of file diff --git a/docs/cecill-b-en.html b/docs/cecill-b-en.html index ccdc443b83..22825b8df8 100644 --- a/docs/cecill-b-en.html +++ b/docs/cecill-b-en.html @@ -147,8 +147,7 @@
license_text
-

-CeCILL-B FREE SOFTWARE LICENSE AGREEMENT
+    
CeCILL-B FREE SOFTWARE LICENSE AGREEMENT
 
 
     Notice
@@ -661,8 +660,7 @@
 jurisdiction, by the more diligent Party.
 
 
-Version 1.0 dated 2006-09-05.
-
+Version 1.0 dated 2006-09-05.
@@ -674,7 +672,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cecill-b-en.json b/docs/cecill-b-en.json index 1a0ef7174c..06d1b23091 100644 --- a/docs/cecill-b-en.json +++ b/docs/cecill-b-en.json @@ -1 +1,19 @@ -{"key": "cecill-b-en", "short_name": "CeCILL-B License English", "name": "CeCILL-B Free Software License Agreement English", "category": "Permissive", "owner": "CeCILL", "homepage_url": "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html", "notes": "The primary text is in French.", "spdx_license_key": "LicenseRef-scancode-cecill-b-en", "text_urls": ["http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt", "http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.txt"], "faq_url": "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html", "other_urls": ["http://www.cecill.info/licences.en.html", "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html"]} \ No newline at end of file +{ + "key": "cecill-b-en", + "short_name": "CeCILL-B License English", + "name": "CeCILL-B Free Software License Agreement English", + "category": "Permissive", + "owner": "CeCILL", + "homepage_url": "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html", + "notes": "The primary text is in French.", + "spdx_license_key": "LicenseRef-scancode-cecill-b-en", + "text_urls": [ + "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt", + "http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.txt" + ], + "faq_url": "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html", + "other_urls": [ + "http://www.cecill.info/licences.en.html", + "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html" + ] +} \ No newline at end of file diff --git a/docs/cecill-b.LICENSE b/docs/cecill-b.LICENSE index 594abeada4..1b64dafe80 100644 --- a/docs/cecill-b.LICENSE +++ b/docs/cecill-b.LICENSE @@ -1,3 +1,21 @@ +--- +key: cecill-b +language: fr +short_name: CeCILL-B License +name: CeCILL-B Free Software License Agreement +category: Permissive +owner: CeCILL +homepage_url: http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html +notes: The primary text is in French. +spdx_license_key: CECILL-B +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html + - http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html +faq_url: http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +other_urls: + - http://www.cecill.info/licences.en.html + - http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +--- CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL-B @@ -516,4 +534,4 @@ les différends ou litiges seront portés par la Partie la plus diligente devant les Tribunaux compétents de Paris. -Version 1.0 du 2006-09-05. +Version 1.0 du 2006-09-05. \ No newline at end of file diff --git a/docs/cecill-b.html b/docs/cecill-b.html index 5a5040994d..08671c933b 100644 --- a/docs/cecill-b.html +++ b/docs/cecill-b.html @@ -154,8 +154,7 @@
license_text
-

-CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL-B
+    
CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL-B
 
 
     Avertissement
@@ -672,8 +671,7 @@
 devant les Tribunaux compétents de Paris.
 
 
-Version 1.0 du 2006-09-05.
-
+Version 1.0 du 2006-09-05.
@@ -685,7 +683,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cecill-b.json b/docs/cecill-b.json index fdd5f00d0a..3fb742ce39 100644 --- a/docs/cecill-b.json +++ b/docs/cecill-b.json @@ -1 +1,20 @@ -{"key": "cecill-b", "language": "fr", "short_name": "CeCILL-B License", "name": "CeCILL-B Free Software License Agreement", "category": "Permissive", "owner": "CeCILL", "homepage_url": "http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html", "notes": "The primary text is in French.", "spdx_license_key": "CECILL-B", "text_urls": ["http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html", "http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html"], "faq_url": "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html", "other_urls": ["http://www.cecill.info/licences.en.html", "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html"]} \ No newline at end of file +{ + "key": "cecill-b", + "language": "fr", + "short_name": "CeCILL-B License", + "name": "CeCILL-B Free Software License Agreement", + "category": "Permissive", + "owner": "CeCILL", + "homepage_url": "http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html", + "notes": "The primary text is in French.", + "spdx_license_key": "CECILL-B", + "text_urls": [ + "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html", + "http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html" + ], + "faq_url": "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html", + "other_urls": [ + "http://www.cecill.info/licences.en.html", + "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html" + ] +} \ No newline at end of file diff --git a/docs/cecill-c-en.LICENSE b/docs/cecill-c-en.LICENSE index d6eb151e61..1662bbd658 100644 --- a/docs/cecill-c-en.LICENSE +++ b/docs/cecill-c-en.LICENSE @@ -1,3 +1,16 @@ +--- +key: cecill-c-en +short_name: CeCILL-C License English +name: CeCILL-C Free Software License Agreement English +category: Copyleft Limited +owner: CeCILL +homepage_url: http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html +notes: "This is the English translation of \nhttp://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html\n" +spdx_license_key: LicenseRef-scancode-cecill-c-en +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html + - http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.txt +--- CeCILL-C FREE SOFTWARE LICENSE AGREEMENT @@ -514,4 +527,4 @@ disagreements or disputes shall be referred to the Paris Courts having jurisdiction, by the more diligent Party. -Version 1.0 dated 2006-09-05. +Version 1.0 dated 2006-09-05. \ No newline at end of file diff --git a/docs/cecill-c-en.html b/docs/cecill-c-en.html index 6fbe336a77..79f0e5871c 100644 --- a/docs/cecill-c-en.html +++ b/docs/cecill-c-en.html @@ -133,8 +133,7 @@
license_text
-

-CeCILL-C FREE SOFTWARE LICENSE AGREEMENT
+    
CeCILL-C FREE SOFTWARE LICENSE AGREEMENT
 
 
     Notice
@@ -649,8 +648,7 @@
 jurisdiction, by the more diligent Party.
 
 
-Version 1.0 dated 2006-09-05.
-
+Version 1.0 dated 2006-09-05.
@@ -662,7 +660,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cecill-c-en.json b/docs/cecill-c-en.json index 489f3ba114..94156aefe0 100644 --- a/docs/cecill-c-en.json +++ b/docs/cecill-c-en.json @@ -1 +1,14 @@ -{"key": "cecill-c-en", "short_name": "CeCILL-C License English", "name": "CeCILL-C Free Software License Agreement English", "category": "Copyleft Limited", "owner": "CeCILL", "homepage_url": "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html", "notes": "This is the English translation of \nhttp://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html\n", "spdx_license_key": "LicenseRef-scancode-cecill-c-en", "text_urls": ["http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html", "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.txt"]} \ No newline at end of file +{ + "key": "cecill-c-en", + "short_name": "CeCILL-C License English", + "name": "CeCILL-C Free Software License Agreement English", + "category": "Copyleft Limited", + "owner": "CeCILL", + "homepage_url": "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html", + "notes": "This is the English translation of \nhttp://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html\n", + "spdx_license_key": "LicenseRef-scancode-cecill-c-en", + "text_urls": [ + "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html", + "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.txt" + ] +} \ No newline at end of file diff --git a/docs/cecill-c.LICENSE b/docs/cecill-c.LICENSE index ddf4399088..6e6a997a5c 100644 --- a/docs/cecill-c.LICENSE +++ b/docs/cecill-c.LICENSE @@ -1,3 +1,21 @@ +--- +key: cecill-c +language: fr +short_name: CeCILL-C License +name: CeCILL-C Free Software License Agreement +category: Copyleft +owner: CeCILL +homepage_url: http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html +notes: | + per SPDX.org, English translation can be found here + http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html +spdx_license_key: CECILL-C +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html + - http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.txt +other_urls: + - http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html +--- CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL-C @@ -518,4 +536,4 @@ les différends ou litiges seront portés par la Partie la plus diligente devant les Tribunaux compétents de Paris. -Version 1.0 du 2006-09-05. +Version 1.0 du 2006-09-05. \ No newline at end of file diff --git a/docs/cecill-c.html b/docs/cecill-c.html index 2628c9cc5c..d4f8f607e9 100644 --- a/docs/cecill-c.html +++ b/docs/cecill-c.html @@ -149,8 +149,7 @@
license_text
-

-CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL-C
+    
CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL-C
 
 
     Avertissement
@@ -669,8 +668,7 @@
 devant les Tribunaux compétents de Paris.
 
 
-Version 1.0 du 2006-09-05.
-
+Version 1.0 du 2006-09-05.
@@ -682,7 +680,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cecill-c.json b/docs/cecill-c.json index 25f3f04ea3..d0996059ed 100644 --- a/docs/cecill-c.json +++ b/docs/cecill-c.json @@ -1 +1,18 @@ -{"key": "cecill-c", "language": "fr", "short_name": "CeCILL-C License", "name": "CeCILL-C Free Software License Agreement", "category": "Copyleft", "owner": "CeCILL", "homepage_url": "http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html", "notes": "per SPDX.org, English translation can be found here\nhttp://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html\n", "spdx_license_key": "CECILL-C", "text_urls": ["http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html", "http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.txt"], "other_urls": ["http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html"]} \ No newline at end of file +{ + "key": "cecill-c", + "language": "fr", + "short_name": "CeCILL-C License", + "name": "CeCILL-C Free Software License Agreement", + "category": "Copyleft", + "owner": "CeCILL", + "homepage_url": "http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html", + "notes": "per SPDX.org, English translation can be found here\nhttp://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html\n", + "spdx_license_key": "CECILL-C", + "text_urls": [ + "http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html", + "http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.txt" + ], + "other_urls": [ + "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html" + ] +} \ No newline at end of file diff --git a/docs/cern-attribution-1995.LICENSE b/docs/cern-attribution-1995.LICENSE index a2a522c967..48ac331a74 100644 --- a/docs/cern-attribution-1995.LICENSE +++ b/docs/cern-attribution-1995.LICENSE @@ -1 +1,12 @@ +--- +key: cern-attribution-1995 +short_name: CERN Attribution 1995 +name: CERN Attribution 1995 +category: Permissive +owner: CERN +homepage_url: https://github.com/w3c/libwww/blob/master/COPYRIGH +spdx_license_key: LicenseRef-scancode-cern-attribution-1995 +faq_url: https://cds.cern.ch/record/2126020/files/History%20of%20the%20CERN%20Web%20Software%20Public%20Releases.pdf +--- + This product includes computer software created and made available by CERN. This acknowledgment shall be mentioned in full in any product which includes the CERN computer software included herein or parts thereof. \ No newline at end of file diff --git a/docs/cern-attribution-1995.html b/docs/cern-attribution-1995.html index 43b0b72c99..d7940e8140 100644 --- a/docs/cern-attribution-1995.html +++ b/docs/cern-attribution-1995.html @@ -134,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cern-attribution-1995.json b/docs/cern-attribution-1995.json index 406edb91dc..32c6a83a44 100644 --- a/docs/cern-attribution-1995.json +++ b/docs/cern-attribution-1995.json @@ -1 +1,10 @@ -{"key": "cern-attribution-1995", "short_name": "CERN Attribution 1995", "name": "CERN Attribution 1995", "category": "Permissive", "owner": "CERN", "homepage_url": "https://github.com/w3c/libwww/blob/master/COPYRIGH", "spdx_license_key": "LicenseRef-scancode-cern-attribution-1995", "faq_url": "https://cds.cern.ch/record/2126020/files/History%20of%20the%20CERN%20Web%20Software%20Public%20Releases.pdf"} \ No newline at end of file +{ + "key": "cern-attribution-1995", + "short_name": "CERN Attribution 1995", + "name": "CERN Attribution 1995", + "category": "Permissive", + "owner": "CERN", + "homepage_url": "https://github.com/w3c/libwww/blob/master/COPYRIGH", + "spdx_license_key": "LicenseRef-scancode-cern-attribution-1995", + "faq_url": "https://cds.cern.ch/record/2126020/files/History%20of%20the%20CERN%20Web%20Software%20Public%20Releases.pdf" +} \ No newline at end of file diff --git a/docs/cern-ohl-1.1.LICENSE b/docs/cern-ohl-1.1.LICENSE index f197ed9ccf..1aa6562bb5 100644 --- a/docs/cern-ohl-1.1.LICENSE +++ b/docs/cern-ohl-1.1.LICENSE @@ -1,3 +1,21 @@ +--- +key: cern-ohl-1.1 +short_name: CERN Open Hardware License v1.1 +name: CERN Open Hardware License v1.1 +category: Permissive +owner: CERN +homepage_url: https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1 +spdx_license_key: CERN-OHL-1.1 +other_urls: + - https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1 +ignorable_copyrights: + - copyright of CERN. +ignorable_holders: + - CERN +ignorable_urls: + - http://www.ohwr.org/ +--- + CERN OHL v1.1 2011-07-08 - CERN, Geneva, Switzerland diff --git a/docs/cern-ohl-1.1.html b/docs/cern-ohl-1.1.html index 5c00589954..a0c018dc72 100644 --- a/docs/cern-ohl-1.1.html +++ b/docs/cern-ohl-1.1.html @@ -239,7 +239,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cern-ohl-1.1.json b/docs/cern-ohl-1.1.json index d2ebcaa20d..028efee97b 100644 --- a/docs/cern-ohl-1.1.json +++ b/docs/cern-ohl-1.1.json @@ -1 +1,21 @@ -{"key": "cern-ohl-1.1", "short_name": "CERN Open Hardware License v1.1", "name": "CERN Open Hardware License v1.1", "category": "Permissive", "owner": "CERN", "homepage_url": "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1", "spdx_license_key": "CERN-OHL-1.1", "other_urls": ["https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1"], "ignorable_copyrights": ["copyright of CERN."], "ignorable_holders": ["CERN"], "ignorable_urls": ["http://www.ohwr.org/"]} \ No newline at end of file +{ + "key": "cern-ohl-1.1", + "short_name": "CERN Open Hardware License v1.1", + "name": "CERN Open Hardware License v1.1", + "category": "Permissive", + "owner": "CERN", + "homepage_url": "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1", + "spdx_license_key": "CERN-OHL-1.1", + "other_urls": [ + "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1" + ], + "ignorable_copyrights": [ + "copyright of CERN." + ], + "ignorable_holders": [ + "CERN" + ], + "ignorable_urls": [ + "http://www.ohwr.org/" + ] +} \ No newline at end of file diff --git a/docs/cern-ohl-1.2.LICENSE b/docs/cern-ohl-1.2.LICENSE index db334d45e9..8f0a321a57 100644 --- a/docs/cern-ohl-1.2.LICENSE +++ b/docs/cern-ohl-1.2.LICENSE @@ -1,3 +1,19 @@ +--- +key: cern-ohl-1.2 +short_name: CERN Open Hardware Licence v1.2 +name: CERN Open Hardware Licence v1.2 +category: Permissive +owner: CERN +homepage_url: https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2 +spdx_license_key: CERN-OHL-1.2 +other_urls: + - https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2 +ignorable_copyrights: + - copyright CERN. +ignorable_holders: + - CERN +--- + CERN OHL v1.2 2013-09-06 - CERN, Geneva, Switzerland diff --git a/docs/cern-ohl-1.2.html b/docs/cern-ohl-1.2.html index e2fb3239c7..90f84b8548 100644 --- a/docs/cern-ohl-1.2.html +++ b/docs/cern-ohl-1.2.html @@ -236,7 +236,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cern-ohl-1.2.json b/docs/cern-ohl-1.2.json index 10d353d238..acf4c8aefc 100644 --- a/docs/cern-ohl-1.2.json +++ b/docs/cern-ohl-1.2.json @@ -1 +1,18 @@ -{"key": "cern-ohl-1.2", "short_name": "CERN Open Hardware Licence v1.2", "name": "CERN Open Hardware Licence v1.2", "category": "Permissive", "owner": "CERN", "homepage_url": "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2", "spdx_license_key": "CERN-OHL-1.2", "other_urls": ["https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2"], "ignorable_copyrights": ["copyright CERN."], "ignorable_holders": ["CERN"]} \ No newline at end of file +{ + "key": "cern-ohl-1.2", + "short_name": "CERN Open Hardware Licence v1.2", + "name": "CERN Open Hardware Licence v1.2", + "category": "Permissive", + "owner": "CERN", + "homepage_url": "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2", + "spdx_license_key": "CERN-OHL-1.2", + "other_urls": [ + "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2" + ], + "ignorable_copyrights": [ + "copyright CERN." + ], + "ignorable_holders": [ + "CERN" + ] +} \ No newline at end of file diff --git a/docs/cern-ohl-p-2.0.LICENSE b/docs/cern-ohl-p-2.0.LICENSE index f19d2b7adc..6005ac3136 100644 --- a/docs/cern-ohl-p-2.0.LICENSE +++ b/docs/cern-ohl-p-2.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: cern-ohl-p-2.0 +short_name: CERN-OHL-P-2.0 +name: CERN Open Hardware Licence Version 2 - Permissive +category: Permissive +owner: CERN +homepage_url: https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2 +spdx_license_key: CERN-OHL-P-2.0 +text_urls: + - https://ohwr.org/cern_ohl_p_v2.txt + - https://ohwr.org/project/cernohl/wikis/uploads/055bd8b281d0805a3a38188838b370e1/cern_ohl_p_v2.pdf + - https://ohwr.org/project/cernohl/wikis/uploads/5a639eaec042c5584104afdbc9350245/cern_ohl_p_v2.txt +osi_url: https://opensource.org/CERN-OHL-P +faq_url: https://ohwr.org/project/cernohl/wikis/faq +other_urls: + - https://ohwr.org/project/cernohl + - https://cern-ohl.web.cern.ch/ + - https://ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2 + - https://ohwr.org/project/cernohl/wikis/uploads/0be6f561d2b4a686c5765c74be32daf9/CERN_OHL_rationale.pdf +ignorable_copyrights: + - copyright CERN 2020 +ignorable_holders: + - CERN +--- + CERN Open Hardware Licence Version 2 - Permissive @@ -196,4 +221,4 @@ to the Product. 7.4 This Licence shall not be enforceable except by a Licensor acting as such, and third party beneficiary rights are - specifically excluded. + specifically excluded. \ No newline at end of file diff --git a/docs/cern-ohl-p-2.0.html b/docs/cern-ohl-p-2.0.html index 7a037488d9..a5edcd2af1 100644 --- a/docs/cern-ohl-p-2.0.html +++ b/docs/cern-ohl-p-2.0.html @@ -363,8 +363,7 @@ 7.4 This Licence shall not be enforceable except by a Licensor acting as such, and third party beneficiary rights are - specifically excluded. - + specifically excluded.
@@ -376,7 +375,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cern-ohl-p-2.0.json b/docs/cern-ohl-p-2.0.json index bf07c56eb7..1bbce3bcea 100644 --- a/docs/cern-ohl-p-2.0.json +++ b/docs/cern-ohl-p-2.0.json @@ -1 +1,28 @@ -{"key": "cern-ohl-p-2.0", "short_name": "CERN-OHL-P-2.0", "name": "CERN Open Hardware Licence Version 2 - Permissive", "category": "Permissive", "owner": "CERN", "homepage_url": "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2", "spdx_license_key": "CERN-OHL-P-2.0", "text_urls": ["https://ohwr.org/cern_ohl_p_v2.txt", "https://ohwr.org/project/cernohl/wikis/uploads/055bd8b281d0805a3a38188838b370e1/cern_ohl_p_v2.pdf", "https://ohwr.org/project/cernohl/wikis/uploads/5a639eaec042c5584104afdbc9350245/cern_ohl_p_v2.txt"], "osi_url": "https://opensource.org/CERN-OHL-P", "faq_url": "https://ohwr.org/project/cernohl/wikis/faq", "other_urls": ["https://ohwr.org/project/cernohl", "https://cern-ohl.web.cern.ch/", "https://ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2", "https://ohwr.org/project/cernohl/wikis/uploads/0be6f561d2b4a686c5765c74be32daf9/CERN_OHL_rationale.pdf"], "ignorable_copyrights": ["copyright CERN 2020"], "ignorable_holders": ["CERN"]} \ No newline at end of file +{ + "key": "cern-ohl-p-2.0", + "short_name": "CERN-OHL-P-2.0", + "name": "CERN Open Hardware Licence Version 2 - Permissive", + "category": "Permissive", + "owner": "CERN", + "homepage_url": "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2", + "spdx_license_key": "CERN-OHL-P-2.0", + "text_urls": [ + "https://ohwr.org/cern_ohl_p_v2.txt", + "https://ohwr.org/project/cernohl/wikis/uploads/055bd8b281d0805a3a38188838b370e1/cern_ohl_p_v2.pdf", + "https://ohwr.org/project/cernohl/wikis/uploads/5a639eaec042c5584104afdbc9350245/cern_ohl_p_v2.txt" + ], + "osi_url": "https://opensource.org/CERN-OHL-P", + "faq_url": "https://ohwr.org/project/cernohl/wikis/faq", + "other_urls": [ + "https://ohwr.org/project/cernohl", + "https://cern-ohl.web.cern.ch/", + "https://ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2", + "https://ohwr.org/project/cernohl/wikis/uploads/0be6f561d2b4a686c5765c74be32daf9/CERN_OHL_rationale.pdf" + ], + "ignorable_copyrights": [ + "copyright CERN 2020" + ], + "ignorable_holders": [ + "CERN" + ] +} \ No newline at end of file diff --git a/docs/cern-ohl-s-2.0.LICENSE b/docs/cern-ohl-s-2.0.LICENSE index 114486fd94..80a0bed114 100644 --- a/docs/cern-ohl-s-2.0.LICENSE +++ b/docs/cern-ohl-s-2.0.LICENSE @@ -1,3 +1,27 @@ +--- +key: cern-ohl-s-2.0 +short_name: CERN-OHL-S-2.0 +name: CERN Open Hardware Licence Version 2 - Strongly Reciprocal +category: Copyleft +owner: CERN +homepage_url: https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2 +spdx_license_key: CERN-OHL-S-2.0 +text_urls: + - https://ohwr.org/cern_ohl_s_v2.txt + - https://ohwr.org/project/cernohl/wikis/uploads/002d0b7d5066e6b3829168730237bddb/cern_ohl_s_v2.txt + - https://ohwr.org/project/cernohl/wikis/uploads/ee7922912e58f8676e1d7ff841b391cb/cern_ohl_s_v2.pdf +osi_url: https://opensource.org/CERN-OHL-S +faq_url: https://ohwr.org/project/cernohl/wikis/faq +other_urls: + - https://ohwr.org/project/cernohl + - https://cern-ohl.web.cern.ch/ + - https://ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2 +ignorable_copyrights: + - copyright CERN 2020 +ignorable_holders: + - CERN +--- + CERN Open Hardware Licence Version 2 - Strongly Reciprocal @@ -286,4 +310,4 @@ subsection 3.2. 8.6 This Licence shall not be enforceable except by a Licensor acting as such, and third party beneficiary rights are - specifically excluded. + specifically excluded. \ No newline at end of file diff --git a/docs/cern-ohl-s-2.0.html b/docs/cern-ohl-s-2.0.html index f49ee0aa63..f8ac9cc03d 100644 --- a/docs/cern-ohl-s-2.0.html +++ b/docs/cern-ohl-s-2.0.html @@ -453,8 +453,7 @@ 8.6 This Licence shall not be enforceable except by a Licensor acting as such, and third party beneficiary rights are - specifically excluded. - + specifically excluded.
@@ -466,7 +465,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cern-ohl-s-2.0.json b/docs/cern-ohl-s-2.0.json index cc369a9a89..76ea99dd1e 100644 --- a/docs/cern-ohl-s-2.0.json +++ b/docs/cern-ohl-s-2.0.json @@ -1 +1,27 @@ -{"key": "cern-ohl-s-2.0", "short_name": "CERN-OHL-S-2.0", "name": "CERN Open Hardware Licence Version 2 - Strongly Reciprocal", "category": "Copyleft", "owner": "CERN", "homepage_url": "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2", "spdx_license_key": "CERN-OHL-S-2.0", "text_urls": ["https://ohwr.org/cern_ohl_s_v2.txt", "https://ohwr.org/project/cernohl/wikis/uploads/002d0b7d5066e6b3829168730237bddb/cern_ohl_s_v2.txt", "https://ohwr.org/project/cernohl/wikis/uploads/ee7922912e58f8676e1d7ff841b391cb/cern_ohl_s_v2.pdf"], "osi_url": "https://opensource.org/CERN-OHL-S", "faq_url": "https://ohwr.org/project/cernohl/wikis/faq", "other_urls": ["https://ohwr.org/project/cernohl", "https://cern-ohl.web.cern.ch/", "https://ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2"], "ignorable_copyrights": ["copyright CERN 2020"], "ignorable_holders": ["CERN"]} \ No newline at end of file +{ + "key": "cern-ohl-s-2.0", + "short_name": "CERN-OHL-S-2.0", + "name": "CERN Open Hardware Licence Version 2 - Strongly Reciprocal", + "category": "Copyleft", + "owner": "CERN", + "homepage_url": "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2", + "spdx_license_key": "CERN-OHL-S-2.0", + "text_urls": [ + "https://ohwr.org/cern_ohl_s_v2.txt", + "https://ohwr.org/project/cernohl/wikis/uploads/002d0b7d5066e6b3829168730237bddb/cern_ohl_s_v2.txt", + "https://ohwr.org/project/cernohl/wikis/uploads/ee7922912e58f8676e1d7ff841b391cb/cern_ohl_s_v2.pdf" + ], + "osi_url": "https://opensource.org/CERN-OHL-S", + "faq_url": "https://ohwr.org/project/cernohl/wikis/faq", + "other_urls": [ + "https://ohwr.org/project/cernohl", + "https://cern-ohl.web.cern.ch/", + "https://ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2" + ], + "ignorable_copyrights": [ + "copyright CERN 2020" + ], + "ignorable_holders": [ + "CERN" + ] +} \ No newline at end of file diff --git a/docs/cern-ohl-w-2.0.LICENSE b/docs/cern-ohl-w-2.0.LICENSE index c2eacdf475..c86412a463 100644 --- a/docs/cern-ohl-w-2.0.LICENSE +++ b/docs/cern-ohl-w-2.0.LICENSE @@ -1,3 +1,27 @@ +--- +key: cern-ohl-w-2.0 +short_name: CERN-OHL-W-2.0 +name: CERN Open Hardware Licence Version 2 - Weakly Reciprocal +category: Copyleft Limited +owner: CERN +homepage_url: https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2 +spdx_license_key: CERN-OHL-W-2.0 +text_urls: + - https://ohwr.org/cern_ohl_w_v2.txt + - https://ohwr.org/project/cernohl/wikis/uploads/10946616b8cbcdef2274a58d9f3a98fb/cern_ohl_w_v2.txt + - https://ohwr.org/project/cernohl/wikis/uploads/b94a1a92b29984226c56a0dd4dca0d39/cern_ohl_w_v2.pdf +osi_url: https://opensource.org/CERN-OHL-W +faq_url: https://ohwr.org/project/cernohl/wikis/faq +other_urls: + - https://ohwr.org/project/cernohl + - https://cern-ohl.web.cern.ch/ + - https://ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2 +ignorable_copyrights: + - copyright CERN 2020 +ignorable_holders: + - CERN +--- + CERN Open Hardware Licence Version 2 - Weakly Reciprocal @@ -308,4 +332,4 @@ subsection 3.2. 8.6 This Licence shall not be enforceable except by a Licensor acting as such, and third party beneficiary rights are - specifically excluded. + specifically excluded. \ No newline at end of file diff --git a/docs/cern-ohl-w-2.0.html b/docs/cern-ohl-w-2.0.html index 0567cc9e1d..6572c0007f 100644 --- a/docs/cern-ohl-w-2.0.html +++ b/docs/cern-ohl-w-2.0.html @@ -475,8 +475,7 @@ 8.6 This Licence shall not be enforceable except by a Licensor acting as such, and third party beneficiary rights are - specifically excluded. - + specifically excluded.
@@ -488,7 +487,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cern-ohl-w-2.0.json b/docs/cern-ohl-w-2.0.json index 9703a37d3e..eee813ba0e 100644 --- a/docs/cern-ohl-w-2.0.json +++ b/docs/cern-ohl-w-2.0.json @@ -1 +1,27 @@ -{"key": "cern-ohl-w-2.0", "short_name": "CERN-OHL-W-2.0", "name": "CERN Open Hardware Licence Version 2 - Weakly Reciprocal", "category": "Copyleft Limited", "owner": "CERN", "homepage_url": "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2", "spdx_license_key": "CERN-OHL-W-2.0", "text_urls": ["https://ohwr.org/cern_ohl_w_v2.txt", "https://ohwr.org/project/cernohl/wikis/uploads/10946616b8cbcdef2274a58d9f3a98fb/cern_ohl_w_v2.txt", "https://ohwr.org/project/cernohl/wikis/uploads/b94a1a92b29984226c56a0dd4dca0d39/cern_ohl_w_v2.pdf"], "osi_url": "https://opensource.org/CERN-OHL-W", "faq_url": "https://ohwr.org/project/cernohl/wikis/faq", "other_urls": ["https://ohwr.org/project/cernohl", "https://cern-ohl.web.cern.ch/", "https://ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2"], "ignorable_copyrights": ["copyright CERN 2020"], "ignorable_holders": ["CERN"]} \ No newline at end of file +{ + "key": "cern-ohl-w-2.0", + "short_name": "CERN-OHL-W-2.0", + "name": "CERN Open Hardware Licence Version 2 - Weakly Reciprocal", + "category": "Copyleft Limited", + "owner": "CERN", + "homepage_url": "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2", + "spdx_license_key": "CERN-OHL-W-2.0", + "text_urls": [ + "https://ohwr.org/cern_ohl_w_v2.txt", + "https://ohwr.org/project/cernohl/wikis/uploads/10946616b8cbcdef2274a58d9f3a98fb/cern_ohl_w_v2.txt", + "https://ohwr.org/project/cernohl/wikis/uploads/b94a1a92b29984226c56a0dd4dca0d39/cern_ohl_w_v2.pdf" + ], + "osi_url": "https://opensource.org/CERN-OHL-W", + "faq_url": "https://ohwr.org/project/cernohl/wikis/faq", + "other_urls": [ + "https://ohwr.org/project/cernohl", + "https://cern-ohl.web.cern.ch/", + "https://ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2" + ], + "ignorable_copyrights": [ + "copyright CERN 2020" + ], + "ignorable_holders": [ + "CERN" + ] +} \ No newline at end of file diff --git a/docs/cgic.LICENSE b/docs/cgic.LICENSE index f005a6b728..3dab6225f0 100644 --- a/docs/cgic.LICENSE +++ b/docs/cgic.LICENSE @@ -1,3 +1,17 @@ +--- +key: cgic +short_name: CGIC License +name: CGIC License +category: Permissive +owner: Boutell.Com +spdx_license_key: LicenseRef-scancode-cgic +ignorable_copyrights: + - copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 by Thomas Boutell and Boutell.Com, + Inc +ignorable_holders: + - Thomas Boutell and Boutell.Com, Inc +--- + CGIC License Terms ------------------ Basic License diff --git a/docs/cgic.html b/docs/cgic.html index 1f49b2cf51..0113bef9a8 100644 --- a/docs/cgic.html +++ b/docs/cgic.html @@ -205,7 +205,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cgic.json b/docs/cgic.json index dfd148f484..c14082f1d0 100644 --- a/docs/cgic.json +++ b/docs/cgic.json @@ -1 +1,14 @@ -{"key": "cgic", "short_name": "CGIC License", "name": "CGIC License", "category": "Permissive", "owner": "Boutell.Com", "spdx_license_key": "LicenseRef-scancode-cgic", "ignorable_copyrights": ["copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 by Thomas Boutell and Boutell.Com, Inc"], "ignorable_holders": ["Thomas Boutell and Boutell.Com, Inc"]} \ No newline at end of file +{ + "key": "cgic", + "short_name": "CGIC License", + "name": "CGIC License", + "category": "Permissive", + "owner": "Boutell.Com", + "spdx_license_key": "LicenseRef-scancode-cgic", + "ignorable_copyrights": [ + "copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 by Thomas Boutell and Boutell.Com, Inc" + ], + "ignorable_holders": [ + "Thomas Boutell and Boutell.Com, Inc" + ] +} \ No newline at end of file diff --git a/docs/chartdirector-6.0.LICENSE b/docs/chartdirector-6.0.LICENSE index 93bccb00fb..543b2779bd 100644 --- a/docs/chartdirector-6.0.LICENSE +++ b/docs/chartdirector-6.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: chartdirector-6.0 +short_name: ChartDirector 6.0 License Agreement +name: ChartDirector 6.0 License Agreement +category: Proprietary Free +owner: Advanced Software Engineering Ltd. +homepage_url: http://www.advsofteng.com/doc/cdcomdoc/license.htm +spdx_license_key: LicenseRef-scancode-chartdirector-6.0 +other_urls: + - http://www.advsofteng.com/ +ignorable_copyrights: + - (c) 2015 Advanced Software Engineering Limited +ignorable_holders: + - Advanced Software Engineering Limited +ignorable_authors: + - using code from the Independent JPEG Group and the FreeType team +ignorable_urls: + - http://www.advsofteng.com/ +--- + ChartDirector 6.0 (ASP/COM/VB Edition) License Agreement You should carefully read the following terms and conditions before using the ChartDirector software. Your use of the ChartDirector software indicates your acceptance of this license agreement. Do not use the ChartDirector software if you do not agree with this license agreement. diff --git a/docs/chartdirector-6.0.html b/docs/chartdirector-6.0.html index b1d4fd33db..e26836cca4 100644 --- a/docs/chartdirector-6.0.html +++ b/docs/chartdirector-6.0.html @@ -204,7 +204,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/chartdirector-6.0.json b/docs/chartdirector-6.0.json index 7d2b407348..8a13e43410 100644 --- a/docs/chartdirector-6.0.json +++ b/docs/chartdirector-6.0.json @@ -1 +1,24 @@ -{"key": "chartdirector-6.0", "short_name": "ChartDirector 6.0 License Agreement", "name": "ChartDirector 6.0 License Agreement", "category": "Proprietary Free", "owner": "Advanced Software Engineering Ltd.", "homepage_url": "http://www.advsofteng.com/doc/cdcomdoc/license.htm", "spdx_license_key": "LicenseRef-scancode-chartdirector-6.0", "other_urls": ["http://www.advsofteng.com/"], "ignorable_copyrights": ["(c) 2015 Advanced Software Engineering Limited"], "ignorable_holders": ["Advanced Software Engineering Limited"], "ignorable_authors": ["using code from the Independent JPEG Group and the FreeType team"], "ignorable_urls": ["http://www.advsofteng.com/"]} \ No newline at end of file +{ + "key": "chartdirector-6.0", + "short_name": "ChartDirector 6.0 License Agreement", + "name": "ChartDirector 6.0 License Agreement", + "category": "Proprietary Free", + "owner": "Advanced Software Engineering Ltd.", + "homepage_url": "http://www.advsofteng.com/doc/cdcomdoc/license.htm", + "spdx_license_key": "LicenseRef-scancode-chartdirector-6.0", + "other_urls": [ + "http://www.advsofteng.com/" + ], + "ignorable_copyrights": [ + "(c) 2015 Advanced Software Engineering Limited" + ], + "ignorable_holders": [ + "Advanced Software Engineering Limited" + ], + "ignorable_authors": [ + "using code from the Independent JPEG Group and the FreeType team" + ], + "ignorable_urls": [ + "http://www.advsofteng.com/" + ] +} \ No newline at end of file diff --git a/docs/checkmk.LICENSE b/docs/checkmk.LICENSE new file mode 100644 index 0000000000..0d3594d120 --- /dev/null +++ b/docs/checkmk.LICENSE @@ -0,0 +1,18 @@ +--- +key: checkmk +short_name: Checkmk License +name: Checkmk License +category: Permissive +owner: libcheck +spdx_license_key: checkmk +other_urls: + - https://github.com/libcheck/check/blob/master/checkmk/checkmk.in +--- + +Redistribution of this program in any form, with or without +modifications, is permitted, provided that the above copyright is +retained in distributions of this program in source form. + +(This is a free, non-copyleft license compatible with pretty much any +other free or proprietary license, including the GPL. It's essentially +a scaled-down version of the "modified" BSD license.) \ No newline at end of file diff --git a/docs/checkmk.html b/docs/checkmk.html new file mode 100644 index 0000000000..b2622125fe --- /dev/null +++ b/docs/checkmk.html @@ -0,0 +1,158 @@ + + + + + + LicenseDB: checkmk + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + checkmk + +
+ +
short_name
+
+ + Checkmk License + +
+ +
name
+
+ + Checkmk License + +
+ +
category
+
+ + Permissive + +
+ +
owner
+
+ + libcheck + +
+ +
spdx_license_key
+
+ + checkmk + +
+ +
other_urls
+
+ + + +
+ +
+
license_text
+
Redistribution of this program in any form, with or without
+modifications, is permitted, provided that the above copyright is
+retained in distributions of this program in source form.
+
+(This is a free, non-copyleft license compatible with pretty much any
+other free or proprietary license, including the GPL. It's essentially
+a scaled-down version of the "modified" BSD license.)
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/checkmk.json b/docs/checkmk.json new file mode 100644 index 0000000000..0b35290baa --- /dev/null +++ b/docs/checkmk.json @@ -0,0 +1,11 @@ +{ + "key": "checkmk", + "short_name": "Checkmk License", + "name": "Checkmk License", + "category": "Permissive", + "owner": "libcheck", + "spdx_license_key": "checkmk", + "other_urls": [ + "https://github.com/libcheck/check/blob/master/checkmk/checkmk.in" + ] +} \ No newline at end of file diff --git a/docs/checkmk.yml b/docs/checkmk.yml new file mode 100644 index 0000000000..4b940aafdd --- /dev/null +++ b/docs/checkmk.yml @@ -0,0 +1,8 @@ +key: checkmk +short_name: Checkmk License +name: Checkmk License +category: Permissive +owner: libcheck +spdx_license_key: checkmk +other_urls: + - https://github.com/libcheck/check/blob/master/checkmk/checkmk.in diff --git a/docs/chelsio-linux-firmware.LICENSE b/docs/chelsio-linux-firmware.LICENSE index c38a0a5838..05e904152b 100644 --- a/docs/chelsio-linux-firmware.LICENSE +++ b/docs/chelsio-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: chelsio-linux-firmware +short_name: Chelsio Linux Firmware License +name: Chelsio Linux Firmware License +category: Proprietary Free +owner: Chelsio +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.chelsio_firmware +spdx_license_key: LicenseRef-scancode-chelsio-linux-firmware +--- + Chelsio Communication Terminator 4/5 ethernet controller firmware Redistribution and use in binary form, without modification, are permitted provided diff --git a/docs/chelsio-linux-firmware.html b/docs/chelsio-linux-firmware.html index 0cccb4a68e..354f77e353 100644 --- a/docs/chelsio-linux-firmware.html +++ b/docs/chelsio-linux-firmware.html @@ -150,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/chelsio-linux-firmware.json b/docs/chelsio-linux-firmware.json index 7ebbbe056a..1c2a412e7b 100644 --- a/docs/chelsio-linux-firmware.json +++ b/docs/chelsio-linux-firmware.json @@ -1 +1,9 @@ -{"key": "chelsio-linux-firmware", "short_name": "Chelsio Linux Firmware License", "name": "Chelsio Linux Firmware License", "category": "Proprietary Free", "owner": "Chelsio", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.chelsio_firmware", "spdx_license_key": "LicenseRef-scancode-chelsio-linux-firmware"} \ No newline at end of file +{ + "key": "chelsio-linux-firmware", + "short_name": "Chelsio Linux Firmware License", + "name": "Chelsio Linux Firmware License", + "category": "Proprietary Free", + "owner": "Chelsio", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.chelsio_firmware", + "spdx_license_key": "LicenseRef-scancode-chelsio-linux-firmware" +} \ No newline at end of file diff --git a/docs/chicken-dl-0.2.LICENSE b/docs/chicken-dl-0.2.LICENSE index aafb200153..09384cf374 100644 --- a/docs/chicken-dl-0.2.LICENSE +++ b/docs/chicken-dl-0.2.LICENSE @@ -1,3 +1,15 @@ +--- +key: chicken-dl-0.2 +short_name: Chicken Dance License v0.2 +name: Chicken Dance v0.2 +category: Permissive +owner: Andrew "Tuna" Harris +homepage_url: https://github.com/supertunaman/cdl/blob/master/COPYING +spdx_license_key: LicenseRef-scancode-chicken-dl-0.2 +ignorable_urls: + - http://supertunaman.com/cdl/ +--- + Chicken Dance License v0.2 http://supertunaman.com/cdl/ diff --git a/docs/chicken-dl-0.2.html b/docs/chicken-dl-0.2.html index 8cd1548499..350cebf0e3 100644 --- a/docs/chicken-dl-0.2.html +++ b/docs/chicken-dl-0.2.html @@ -196,7 +196,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/chicken-dl-0.2.json b/docs/chicken-dl-0.2.json index 1fbcfa7a66..3990b8bdeb 100644 --- a/docs/chicken-dl-0.2.json +++ b/docs/chicken-dl-0.2.json @@ -1 +1,12 @@ -{"key": "chicken-dl-0.2", "short_name": "Chicken Dance License v0.2", "name": "Chicken Dance v0.2", "category": "Permissive", "owner": "Andrew \"Tuna\" Harris", "homepage_url": "https://github.com/supertunaman/cdl/blob/master/COPYING", "spdx_license_key": "LicenseRef-scancode-chicken-dl-0.2", "ignorable_urls": ["http://supertunaman.com/cdl/"]} \ No newline at end of file +{ + "key": "chicken-dl-0.2", + "short_name": "Chicken Dance License v0.2", + "name": "Chicken Dance v0.2", + "category": "Permissive", + "owner": "Andrew \"Tuna\" Harris", + "homepage_url": "https://github.com/supertunaman/cdl/blob/master/COPYING", + "spdx_license_key": "LicenseRef-scancode-chicken-dl-0.2", + "ignorable_urls": [ + "http://supertunaman.com/cdl/" + ] +} \ No newline at end of file diff --git a/docs/chris-maunder.LICENSE b/docs/chris-maunder.LICENSE index 8653d5c918..0b9e6d9223 100644 --- a/docs/chris-maunder.LICENSE +++ b/docs/chris-maunder.LICENSE @@ -1,3 +1,15 @@ +--- +key: chris-maunder +short_name: Chris Maunder License +name: Chris Maunder License +category: Permissive +owner: Unspecified +homepage_url: http://www.codeproject.com/Members/Chris-Maunder +spdx_license_key: LicenseRef-scancode-chris-maunder +other_urls: + - http://www.codeproject.com/Members/Chris-Maunder +--- + This code may be used in compiled form in any way you desire. This file may be redistributed unmodified by any means PROVIDING it is not sold for profit without the authors written consent, and providing that this notice and the diff --git a/docs/chris-maunder.html b/docs/chris-maunder.html index 061b800b02..41fba6689d 100644 --- a/docs/chris-maunder.html +++ b/docs/chris-maunder.html @@ -145,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/chris-maunder.json b/docs/chris-maunder.json index 050283de57..a78a9a27f6 100644 --- a/docs/chris-maunder.json +++ b/docs/chris-maunder.json @@ -1 +1,12 @@ -{"key": "chris-maunder", "short_name": "Chris Maunder License", "name": "Chris Maunder License", "category": "Permissive", "owner": "Unspecified", "homepage_url": "http://www.codeproject.com/Members/Chris-Maunder", "spdx_license_key": "LicenseRef-scancode-chris-maunder", "other_urls": ["http://www.codeproject.com/Members/Chris-Maunder"]} \ No newline at end of file +{ + "key": "chris-maunder", + "short_name": "Chris Maunder License", + "name": "Chris Maunder License", + "category": "Permissive", + "owner": "Unspecified", + "homepage_url": "http://www.codeproject.com/Members/Chris-Maunder", + "spdx_license_key": "LicenseRef-scancode-chris-maunder", + "other_urls": [ + "http://www.codeproject.com/Members/Chris-Maunder" + ] +} \ No newline at end of file diff --git a/docs/chris-stoy.LICENSE b/docs/chris-stoy.LICENSE index 9640d875f0..1b4e669743 100644 --- a/docs/chris-stoy.LICENSE +++ b/docs/chris-stoy.LICENSE @@ -1,3 +1,12 @@ +--- +key: chris-stoy +short_name: Chris Stoy Attribution License +name: Chris Stoy Attribution License +category: Permissive +owner: Chris Stoy +spdx_license_key: LicenseRef-scancode-chris-stoy +--- + You are free to use this code in all commercial and non-commercial applications as long as this copyright message is left intact. Use this code at your own risk. I take no responsibility if it should fail to diff --git a/docs/chris-stoy.html b/docs/chris-stoy.html index 41e1732d3e..4ff159d6c9 100644 --- a/docs/chris-stoy.html +++ b/docs/chris-stoy.html @@ -124,7 +124,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/chris-stoy.json b/docs/chris-stoy.json index 1565fda0d3..d10ac54c78 100644 --- a/docs/chris-stoy.json +++ b/docs/chris-stoy.json @@ -1 +1,8 @@ -{"key": "chris-stoy", "short_name": "Chris Stoy Attribution License", "name": "Chris Stoy Attribution License", "category": "Permissive", "owner": "Chris Stoy", "spdx_license_key": "LicenseRef-scancode-chris-stoy"} \ No newline at end of file +{ + "key": "chris-stoy", + "short_name": "Chris Stoy Attribution License", + "name": "Chris Stoy Attribution License", + "category": "Permissive", + "owner": "Chris Stoy", + "spdx_license_key": "LicenseRef-scancode-chris-stoy" +} \ No newline at end of file diff --git a/docs/christopher-velazquez.LICENSE b/docs/christopher-velazquez.LICENSE index c986444b64..04188409e1 100644 --- a/docs/christopher-velazquez.LICENSE +++ b/docs/christopher-velazquez.LICENSE @@ -1,2 +1,12 @@ +--- +key: christopher-velazquez +short_name: Christopher Velazquez License +name: Christopher Velazquez License +category: Proprietary Free +owner: Christopher Velazquez +homepage_url: https://web.archive.org/web/20080224132035/http://vdev.net/vbprofiler/snsource.htm +spdx_license_key: LicenseRef-scancode-christopher-velazquez +--- + Any duplication of the content on this web site without permission of the author is strictly prohibited. \ No newline at end of file diff --git a/docs/christopher-velazquez.html b/docs/christopher-velazquez.html index de9660d646..ad342fdacd 100644 --- a/docs/christopher-velazquez.html +++ b/docs/christopher-velazquez.html @@ -128,7 +128,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/christopher-velazquez.json b/docs/christopher-velazquez.json index fddd1eeb69..61cb473995 100644 --- a/docs/christopher-velazquez.json +++ b/docs/christopher-velazquez.json @@ -1 +1,9 @@ -{"key": "christopher-velazquez", "short_name": "Christopher Velazquez License", "name": "Christopher Velazquez License", "category": "Proprietary Free", "owner": "Christopher Velazquez", "homepage_url": "https://web.archive.org/web/20080224132035/http://vdev.net/vbprofiler/snsource.htm", "spdx_license_key": "LicenseRef-scancode-christopher-velazquez"} \ No newline at end of file +{ + "key": "christopher-velazquez", + "short_name": "Christopher Velazquez License", + "name": "Christopher Velazquez License", + "category": "Proprietary Free", + "owner": "Christopher Velazquez", + "homepage_url": "https://web.archive.org/web/20080224132035/http://vdev.net/vbprofiler/snsource.htm", + "spdx_license_key": "LicenseRef-scancode-christopher-velazquez" +} \ No newline at end of file diff --git a/docs/classic-vb.LICENSE b/docs/classic-vb.LICENSE index 58cdd0eb1b..d191244290 100644 --- a/docs/classic-vb.LICENSE +++ b/docs/classic-vb.LICENSE @@ -1,3 +1,15 @@ +--- +key: classic-vb +short_name: Classic VB License +name: Classic VB License +category: Permissive +owner: Karl Peterson +homepage_url: http://vb.mvps.org/license.asp +spdx_license_key: LicenseRef-scancode-classic-vb +text_urls: + - http://vb.mvps.org/license.asp +--- + Policy All code samples, tools, articles, and other content provided by this website is diff --git a/docs/classic-vb.html b/docs/classic-vb.html index d7e71d1d84..b6b648e36d 100644 --- a/docs/classic-vb.html +++ b/docs/classic-vb.html @@ -205,7 +205,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/classic-vb.json b/docs/classic-vb.json index 251f2e3484..89275c2c65 100644 --- a/docs/classic-vb.json +++ b/docs/classic-vb.json @@ -1 +1,12 @@ -{"key": "classic-vb", "short_name": "Classic VB License", "name": "Classic VB License", "category": "Permissive", "owner": "Karl Peterson", "homepage_url": "http://vb.mvps.org/license.asp", "spdx_license_key": "LicenseRef-scancode-classic-vb", "text_urls": ["http://vb.mvps.org/license.asp"]} \ No newline at end of file +{ + "key": "classic-vb", + "short_name": "Classic VB License", + "name": "Classic VB License", + "category": "Permissive", + "owner": "Karl Peterson", + "homepage_url": "http://vb.mvps.org/license.asp", + "spdx_license_key": "LicenseRef-scancode-classic-vb", + "text_urls": [ + "http://vb.mvps.org/license.asp" + ] +} \ No newline at end of file diff --git a/docs/classpath-exception-2.0.LICENSE b/docs/classpath-exception-2.0.LICENSE index 63ae6d171e..f693e1be57 100644 --- a/docs/classpath-exception-2.0.LICENSE +++ b/docs/classpath-exception-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: classpath-exception-2.0 +short_name: Classpath exception to GPL 2.0 or later +name: Classpath exception to GPL 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/software/classpath/ +is_exception: yes +spdx_license_key: Classpath-exception-2.0 +text_urls: + - http://www.gnu.org/software/classpath/license.html +other_urls: + - http://en.wikipedia.org/wiki/GPL_linking_exception + - https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception +--- + Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. @@ -11,4 +27,4 @@ conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement -from your version. +from your version. \ No newline at end of file diff --git a/docs/classpath-exception-2.0.html b/docs/classpath-exception-2.0.html index beea368e75..2db4d336e9 100644 --- a/docs/classpath-exception-2.0.html +++ b/docs/classpath-exception-2.0.html @@ -153,8 +153,7 @@ which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement -from your version. - +from your version.
@@ -166,7 +165,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/classpath-exception-2.0.json b/docs/classpath-exception-2.0.json index 8743b5f188..13d0f65a43 100644 --- a/docs/classpath-exception-2.0.json +++ b/docs/classpath-exception-2.0.json @@ -1 +1,17 @@ -{"key": "classpath-exception-2.0", "short_name": "Classpath exception to GPL 2.0 or later", "name": "Classpath exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/software/classpath/", "is_exception": true, "spdx_license_key": "Classpath-exception-2.0", "text_urls": ["http://www.gnu.org/software/classpath/license.html"], "other_urls": ["http://en.wikipedia.org/wiki/GPL_linking_exception", "https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception"]} \ No newline at end of file +{ + "key": "classpath-exception-2.0", + "short_name": "Classpath exception to GPL 2.0 or later", + "name": "Classpath exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/software/classpath/", + "is_exception": true, + "spdx_license_key": "Classpath-exception-2.0", + "text_urls": [ + "http://www.gnu.org/software/classpath/license.html" + ], + "other_urls": [ + "http://en.wikipedia.org/wiki/GPL_linking_exception", + "https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception" + ] +} \ No newline at end of file diff --git a/docs/classworlds.LICENSE b/docs/classworlds.LICENSE index 1ac7b84a8d..a3b38a1d91 100644 --- a/docs/classworlds.LICENSE +++ b/docs/classworlds.LICENSE @@ -1,3 +1,18 @@ +--- +key: classworlds +is_deprecated: yes +short_name: Classworlds License +name: Classworlds License +category: Permissive +owner: Codehaus +homepage_url: http://classworlds.codehaus.org/license.html +notes: | + Per Fedora, this is an Apache 1.1 derived license. Unfortunately, clause 4 + is too broad, making it Free but GPL-incompatible. replaced by dom4j +text_urls: + - https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License +--- + Redistribution and use of this software and associated documentation ("Software"), with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/classworlds.html b/docs/classworlds.html index c585a9de37..a59c5c498e 100644 --- a/docs/classworlds.html +++ b/docs/classworlds.html @@ -176,7 +176,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/classworlds.json b/docs/classworlds.json index 7b99777cff..09f9d71b1b 100644 --- a/docs/classworlds.json +++ b/docs/classworlds.json @@ -1 +1,13 @@ -{"key": "classworlds", "is_deprecated": true, "short_name": "Classworlds License", "name": "Classworlds License", "category": "Permissive", "owner": "Codehaus", "homepage_url": "http://classworlds.codehaus.org/license.html", "notes": "Per Fedora, this is an Apache 1.1 derived license. Unfortunately, clause 4\nis too broad, making it Free but GPL-incompatible. replaced by dom4j\n", "text_urls": ["https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License"]} \ No newline at end of file +{ + "key": "classworlds", + "is_deprecated": true, + "short_name": "Classworlds License", + "name": "Classworlds License", + "category": "Permissive", + "owner": "Codehaus", + "homepage_url": "http://classworlds.codehaus.org/license.html", + "notes": "Per Fedora, this is an Apache 1.1 derived license. Unfortunately, clause 4\nis too broad, making it Free but GPL-incompatible. replaced by dom4j\n", + "text_urls": [ + "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License" + ] +} \ No newline at end of file diff --git a/docs/clause-6-exception-lgpl-2.1.LICENSE b/docs/clause-6-exception-lgpl-2.1.LICENSE index 80a68b6060..dd5ce69289 100644 --- a/docs/clause-6-exception-lgpl-2.1.LICENSE +++ b/docs/clause-6-exception-lgpl-2.1.LICENSE @@ -1,3 +1,14 @@ +--- +key: clause-6-exception-lgpl-2.1 +short_name: Clause 6 Exception to LGPL 2.1 +name: Clause 6 Exception to LGPL 2.1 +category: Copyleft Limited +owner: Malcolm Wallace +homepage_url: http://hackage.haskell.org/package/HaXml-1.25.4/src/COPYRIGHT +is_exception: yes +spdx_license_key: LicenseRef-scancode-clause-6-exception-lgpl-2.1 +--- + As a relaxation of clause 6 of the LGPL, the copyright holders of this library give permission to use, copy, link, modify, and distribute, binary-only object-code versions of an executable linked with the diff --git a/docs/clause-6-exception-lgpl-2.1.html b/docs/clause-6-exception-lgpl-2.1.html index 98dd5bb075..dfb67434d9 100644 --- a/docs/clause-6-exception-lgpl-2.1.html +++ b/docs/clause-6-exception-lgpl-2.1.html @@ -140,7 +140,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/clause-6-exception-lgpl-2.1.json b/docs/clause-6-exception-lgpl-2.1.json index dda94fdb05..c0083cef09 100644 --- a/docs/clause-6-exception-lgpl-2.1.json +++ b/docs/clause-6-exception-lgpl-2.1.json @@ -1 +1,10 @@ -{"key": "clause-6-exception-lgpl-2.1", "short_name": "Clause 6 Exception to LGPL 2.1", "name": "Clause 6 Exception to LGPL 2.1", "category": "Copyleft Limited", "owner": "Malcolm Wallace", "homepage_url": "http://hackage.haskell.org/package/HaXml-1.25.4/src/COPYRIGHT", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-clause-6-exception-lgpl-2.1"} \ No newline at end of file +{ + "key": "clause-6-exception-lgpl-2.1", + "short_name": "Clause 6 Exception to LGPL 2.1", + "name": "Clause 6 Exception to LGPL 2.1", + "category": "Copyleft Limited", + "owner": "Malcolm Wallace", + "homepage_url": "http://hackage.haskell.org/package/HaXml-1.25.4/src/COPYRIGHT", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-clause-6-exception-lgpl-2.1" +} \ No newline at end of file diff --git a/docs/clear-bsd-1-clause.LICENSE b/docs/clear-bsd-1-clause.LICENSE index d737c03d90..778ea7486a 100644 --- a/docs/clear-bsd-1-clause.LICENSE +++ b/docs/clear-bsd-1-clause.LICENSE @@ -1,3 +1,15 @@ +--- +key: clear-bsd-1-clause +short_name: Clear BSD 1-Clause License +name: Clear BSD 1-Clause License +category: Permissive +owner: MetaCarta +homepage_url: https://github.com/spate/glimage/blob/master/LICENSE +notes: a rare variant seldom seen +spdx_license_key: LicenseRef-scancode-clear-bsd-1-clause +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted (subject to the limitations in the disclaimer below) provided that the following conditions are met: @@ -17,5 +29,4 @@ 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. - +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/clear-bsd-1-clause.html b/docs/clear-bsd-1-clause.html index f7885fafa5..d2fc9b496d 100644 --- a/docs/clear-bsd-1-clause.html +++ b/docs/clear-bsd-1-clause.html @@ -148,9 +148,7 @@ 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. - - +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -162,7 +160,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/clear-bsd-1-clause.json b/docs/clear-bsd-1-clause.json index 41d4e7763e..fead63ed45 100644 --- a/docs/clear-bsd-1-clause.json +++ b/docs/clear-bsd-1-clause.json @@ -1 +1,11 @@ -{"key": "clear-bsd-1-clause", "short_name": "Clear BSD 1-Clause License", "name": "Clear BSD 1-Clause License", "category": "Permissive", "owner": "MetaCarta", "homepage_url": "https://github.com/spate/glimage/blob/master/LICENSE", "notes": "a rare variant seldom seen", "spdx_license_key": "LicenseRef-scancode-clear-bsd-1-clause", "minimum_coverage": 90} \ No newline at end of file +{ + "key": "clear-bsd-1-clause", + "short_name": "Clear BSD 1-Clause License", + "name": "Clear BSD 1-Clause License", + "category": "Permissive", + "owner": "MetaCarta", + "homepage_url": "https://github.com/spate/glimage/blob/master/LICENSE", + "notes": "a rare variant seldom seen", + "spdx_license_key": "LicenseRef-scancode-clear-bsd-1-clause", + "minimum_coverage": 90 +} \ No newline at end of file diff --git a/docs/clear-bsd.LICENSE b/docs/clear-bsd.LICENSE index 0104cc22ac..c93771d5ca 100644 --- a/docs/clear-bsd.LICENSE +++ b/docs/clear-bsd.LICENSE @@ -1,3 +1,16 @@ +--- +key: clear-bsd +short_name: Clear BSD License +name: Clear BSD License +category: Permissive +owner: MetaCarta +homepage_url: http://labs.metacarta.com/license-explanation.html +spdx_license_key: BSD-3-Clause-Clear +text_urls: + - http://labs.metacarta.com/license-explanation.html#license +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted (subject to the limitations in the disclaimer below) provided that the following conditions are met: diff --git a/docs/clear-bsd.html b/docs/clear-bsd.html index 9ca267dc97..b7c4f3eb50 100644 --- a/docs/clear-bsd.html +++ b/docs/clear-bsd.html @@ -171,7 +171,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/clear-bsd.json b/docs/clear-bsd.json index 6efc6e5e87..e78dcda35b 100644 --- a/docs/clear-bsd.json +++ b/docs/clear-bsd.json @@ -1 +1,13 @@ -{"key": "clear-bsd", "short_name": "Clear BSD License", "name": "Clear BSD License", "category": "Permissive", "owner": "MetaCarta", "homepage_url": "http://labs.metacarta.com/license-explanation.html", "spdx_license_key": "BSD-3-Clause-Clear", "text_urls": ["http://labs.metacarta.com/license-explanation.html#license"], "minimum_coverage": 90} \ No newline at end of file +{ + "key": "clear-bsd", + "short_name": "Clear BSD License", + "name": "Clear BSD License", + "category": "Permissive", + "owner": "MetaCarta", + "homepage_url": "http://labs.metacarta.com/license-explanation.html", + "spdx_license_key": "BSD-3-Clause-Clear", + "text_urls": [ + "http://labs.metacarta.com/license-explanation.html#license" + ], + "minimum_coverage": 90 +} \ No newline at end of file diff --git a/docs/click-license.LICENSE b/docs/click-license.LICENSE index a412f65edb..f704c3b601 100644 --- a/docs/click-license.LICENSE +++ b/docs/click-license.LICENSE @@ -1,3 +1,14 @@ +--- +key: click-license +short_name: Click License +name: Click License +category: Permissive +owner: Unspecified +homepage_url: https://changelogs.ubuntu.com/changelogs/pool/main/t/t1utils/t1utils_1.39-2/copyright +spdx_license_key: LicenseRef-scancode-click-license +minimum_coverage: 80 +--- + 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 diff --git a/docs/click-license.html b/docs/click-license.html index 3c93d728b7..da9a5350a4 100644 --- a/docs/click-license.html +++ b/docs/click-license.html @@ -155,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/click-license.json b/docs/click-license.json index 7ec3d3e54f..6edb2cfdc7 100644 --- a/docs/click-license.json +++ b/docs/click-license.json @@ -1 +1,10 @@ -{"key": "click-license", "short_name": "Click License", "name": "Click License", "category": "Permissive", "owner": "Unspecified", "homepage_url": "https://changelogs.ubuntu.com/changelogs/pool/main/t/t1utils/t1utils_1.39-2/copyright", "spdx_license_key": "LicenseRef-scancode-click-license", "minimum_coverage": 80} \ No newline at end of file +{ + "key": "click-license", + "short_name": "Click License", + "name": "Click License", + "category": "Permissive", + "owner": "Unspecified", + "homepage_url": "https://changelogs.ubuntu.com/changelogs/pool/main/t/t1utils/t1utils_1.39-2/copyright", + "spdx_license_key": "LicenseRef-scancode-click-license", + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/clips-2017.LICENSE b/docs/clips-2017.LICENSE new file mode 100644 index 0000000000..b4e59dff5a --- /dev/null +++ b/docs/clips-2017.LICENSE @@ -0,0 +1,30 @@ +--- +key: clips-2017 +short_name: CLIPS License 2017 +name: CLIPS License 2017 +category: Permissive +owner: CLIPS +homepage_url: https://www.clipsrules.net/ +spdx_license_key: LicenseRef-scancode-clips-2017 +text_urls: + - https://kumisystems.dl.sourceforge.net/project/clipsrules/CLIPS/6.40/clips_core_source_640.tar.gz +other_urls: + - https://sourceforge.net/projects/clipsrules +--- + +CLIPS License Information + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software (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. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE AUTHORS 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. \ No newline at end of file diff --git a/docs/clips-2017.html b/docs/clips-2017.html new file mode 100644 index 0000000000..18a3c96de3 --- /dev/null +++ b/docs/clips-2017.html @@ -0,0 +1,183 @@ + + + + + + LicenseDB: clips-2017 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + clips-2017 + +
+ +
short_name
+
+ + CLIPS License 2017 + +
+ +
name
+
+ + CLIPS License 2017 + +
+ +
category
+
+ + Permissive + +
+ +
owner
+
+ + CLIPS + +
+ +
homepage_url
+
+ + https://www.clipsrules.net/ + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-clips-2017 + +
+ +
text_urls
+
+ + + +
+ +
other_urls
+
+ + + +
+ +
+
license_text
+
CLIPS License Information
+
+Permission is hereby granted, free of charge, to any person obtaining a 
+copy of this software (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.                             
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. 
+IN NO EVENT SHALL THE AUTHORS 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.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/clips-2017.json b/docs/clips-2017.json new file mode 100644 index 0000000000..bccd74cb67 --- /dev/null +++ b/docs/clips-2017.json @@ -0,0 +1,15 @@ +{ + "key": "clips-2017", + "short_name": "CLIPS License 2017", + "name": "CLIPS License 2017", + "category": "Permissive", + "owner": "CLIPS", + "homepage_url": "https://www.clipsrules.net/", + "spdx_license_key": "LicenseRef-scancode-clips-2017", + "text_urls": [ + "https://kumisystems.dl.sourceforge.net/project/clipsrules/CLIPS/6.40/clips_core_source_640.tar.gz" + ], + "other_urls": [ + "https://sourceforge.net/projects/clipsrules" + ] +} \ No newline at end of file diff --git a/docs/clips-2017.yml b/docs/clips-2017.yml new file mode 100644 index 0000000000..0b30b47f22 --- /dev/null +++ b/docs/clips-2017.yml @@ -0,0 +1,11 @@ +key: clips-2017 +short_name: CLIPS License 2017 +name: CLIPS License 2017 +category: Permissive +owner: CLIPS +homepage_url: https://www.clipsrules.net/ +spdx_license_key: LicenseRef-scancode-clips-2017 +text_urls: + - https://kumisystems.dl.sourceforge.net/project/clipsrules/CLIPS/6.40/clips_core_source_640.tar.gz +other_urls: + - https://sourceforge.net/projects/clipsrules diff --git a/docs/clisp-exception-2.0.LICENSE b/docs/clisp-exception-2.0.LICENSE index 6bc7777a2a..ef4dd3b43a 100644 --- a/docs/clisp-exception-2.0.LICENSE +++ b/docs/clisp-exception-2.0.LICENSE @@ -1,3 +1,18 @@ +--- +key: clisp-exception-2.0 +short_name: CLISP Exception to GPL 2.0 +name: CLISP Exception to GPL 2.0 +category: Copyleft Limited +owner: Clisp +homepage_url: https://sourceforge.net/p/clisp/clisp/ci/default/tree/COPYRIGHT +is_exception: yes +spdx_license_key: CLISP-exception-2.0 +text_urls: + - http://sourceforge.net/p/clisp/clisp/ci/default/tree/COPYRIGHT +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + This copyright does NOT cover user programs that run in CLISP and third-party packages not part of CLISP, if a) They only reference external symbols in CLISP's public packages that define API also provided by many other Common Lisp diff --git a/docs/clisp-exception-2.0.html b/docs/clisp-exception-2.0.html index 37aa3d13fe..648e5bcdb5 100644 --- a/docs/clisp-exception-2.0.html +++ b/docs/clisp-exception-2.0.html @@ -181,7 +181,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/clisp-exception-2.0.json b/docs/clisp-exception-2.0.json index 532c5618f5..ca46815065 100644 --- a/docs/clisp-exception-2.0.json +++ b/docs/clisp-exception-2.0.json @@ -1 +1,16 @@ -{"key": "clisp-exception-2.0", "short_name": "CLISP Exception to GPL 2.0", "name": "CLISP Exception to GPL 2.0", "category": "Copyleft Limited", "owner": "Clisp", "homepage_url": "https://sourceforge.net/p/clisp/clisp/ci/default/tree/COPYRIGHT", "is_exception": true, "spdx_license_key": "CLISP-exception-2.0", "text_urls": ["http://sourceforge.net/p/clisp/clisp/ci/default/tree/COPYRIGHT"], "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"]} \ No newline at end of file +{ + "key": "clisp-exception-2.0", + "short_name": "CLISP Exception to GPL 2.0", + "name": "CLISP Exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "Clisp", + "homepage_url": "https://sourceforge.net/p/clisp/clisp/ci/default/tree/COPYRIGHT", + "is_exception": true, + "spdx_license_key": "CLISP-exception-2.0", + "text_urls": [ + "http://sourceforge.net/p/clisp/clisp/ci/default/tree/COPYRIGHT" + ], + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ] +} \ No newline at end of file diff --git a/docs/cloudera-express.LICENSE b/docs/cloudera-express.LICENSE index a16f91dd23..f5f791e17f 100644 --- a/docs/cloudera-express.LICENSE +++ b/docs/cloudera-express.LICENSE @@ -1,3 +1,15 @@ +--- +key: cloudera-express +short_name: Cloudera Express License +name: Cloudera Express License +category: Proprietary Free +owner: Cloudera +spdx_license_key: LicenseRef-scancode-cloudera-express +ignorable_urls: + - http://ccp.cloudera.com/display/SUPPORT/CLOUDERA+PUBLIC+BETA+AGREEMENT + - http://www.google.com/analytics/terms/us.html +--- + Cloudera Express License END USER LICENSE TERMS AND CONDITIONS @@ -53,4 +65,4 @@ THE "EFFECTIVE DATE" OF THIS AGREEMENT IS THE DATE YOU FIRST DOWNLOAD ANY OF THE 14. In the event that Customer uses the functionality in the Product for the purposes of downloading and installing any Cloudera-provided public beta software, such beta software will be subject either to the Apache 2 license, or to the terms and conditions of the Public Beta License located here: (http://ccp.cloudera.com/display/SUPPORT/CLOUDERA+PUBLIC+BETA+AGREEMENT) as applicable. -15. Miscellaneous. This Agreement will be governed by and construed in accordance with the laws of the State of California applicable to agreements made and to be entirely performed within the State of California, without resort to its conflict of law provisions. The parties agree that any action at law or in equity arising out of or relating to this Agreement will be filed only in the state and federal courts located in Santa Clara County, and the parties hereby irrevocably and unconditionally consent and submit to the exclusive jurisdiction of such courts over any suit, action or proceeding arising out of this Agy. Upon such determination that any provision is invalid, illegal, or incapable of being enforced, the parties will negotiate in good faith to modify this Agreement so as to effect the original intent of the parties as closely as possible in an acceptable manner to the end that the transactions contemplated hereby are fulfilled. Except for payments due under this Agreement, neither party will be responsible for any failure to perform or delay attributable in whole or in part to any cause beyond its reasonable control, including but not limited to acts of God (fire, storm, floods, earthquakes, etc.), civil disturbances, disruption of telecommunications, disruption of power or other essential services, interruption or termination of service by any service providers being used by Cloudera to link its servers to the Internet, labor disturbances, vandalism, cable cut, computer viruses or other similar occurrences, or any malicious or unlawful acts of any third-party (each a "Force Majeure Event"). In the event of any such delay the date of delivery will be deferred for a period equal to the time lost by reason of the delay. Any notice or communication required or permitted to be given hereunder must be in writing signed or authorized by the party giving notice, and may be delivered by hand, deposited with an overnight courier, sent by confirmed email, confirmed facsimile or mailed by registered or certified mail, return receipt requested, postage prepaid, in each case to the address below or at such other address as may hereafter be furnished in accordance with this Section. No modification, addition or deletion, or waiver of any rights under this Agreement will be binding on a party unless made in an agreement clearly understood by the parties to be a modification or waiver and signed by a duly authorized representative of each party. No failure or delay (in whole or in part) on the part of a party to exercise any right or remedy hereunder will operate as a waiver thereof or effect any other right or remedy. All rights and remedies hereunder are cumulative and are not exclusive of any other rights or remedies provided hereunder or by law. The waiver of one breach or default or any delay in exercising any rights will not constitute a waiver of any subsequent breach or default. +15. Miscellaneous. This Agreement will be governed by and construed in accordance with the laws of the State of California applicable to agreements made and to be entirely performed within the State of California, without resort to its conflict of law provisions. The parties agree that any action at law or in equity arising out of or relating to this Agreement will be filed only in the state and federal courts located in Santa Clara County, and the parties hereby irrevocably and unconditionally consent and submit to the exclusive jurisdiction of such courts over any suit, action or proceeding arising out of this Agy. Upon such determination that any provision is invalid, illegal, or incapable of being enforced, the parties will negotiate in good faith to modify this Agreement so as to effect the original intent of the parties as closely as possible in an acceptable manner to the end that the transactions contemplated hereby are fulfilled. Except for payments due under this Agreement, neither party will be responsible for any failure to perform or delay attributable in whole or in part to any cause beyond its reasonable control, including but not limited to acts of God (fire, storm, floods, earthquakes, etc.), civil disturbances, disruption of telecommunications, disruption of power or other essential services, interruption or termination of service by any service providers being used by Cloudera to link its servers to the Internet, labor disturbances, vandalism, cable cut, computer viruses or other similar occurrences, or any malicious or unlawful acts of any third-party (each a "Force Majeure Event"). In the event of any such delay the date of delivery will be deferred for a period equal to the time lost by reason of the delay. Any notice or communication required or permitted to be given hereunder must be in writing signed or authorized by the party giving notice, and may be delivered by hand, deposited with an overnight courier, sent by confirmed email, confirmed facsimile or mailed by registered or certified mail, return receipt requested, postage prepaid, in each case to the address below or at such other address as may hereafter be furnished in accordance with this Section. No modification, addition or deletion, or waiver of any rights under this Agreement will be binding on a party unless made in an agreement clearly understood by the parties to be a modification or waiver and signed by a duly authorized representative of each party. No failure or delay (in whole or in part) on the part of a party to exercise any right or remedy hereunder will operate as a waiver thereof or effect any other right or remedy. All rights and remedies hereunder are cumulative and are not exclusive of any other rights or remedies provided hereunder or by law. The waiver of one breach or default or any delay in exercising any rights will not constitute a waiver of any subsequent breach or default. \ No newline at end of file diff --git a/docs/cloudera-express.html b/docs/cloudera-express.html index 8259c0fa5a..3358baa710 100644 --- a/docs/cloudera-express.html +++ b/docs/cloudera-express.html @@ -172,8 +172,7 @@ 14. In the event that Customer uses the functionality in the Product for the purposes of downloading and installing any Cloudera-provided public beta software, such beta software will be subject either to the Apache 2 license, or to the terms and conditions of the Public Beta License located here: (http://ccp.cloudera.com/display/SUPPORT/CLOUDERA+PUBLIC+BETA+AGREEMENT) as applicable. -15. Miscellaneous. This Agreement will be governed by and construed in accordance with the laws of the State of California applicable to agreements made and to be entirely performed within the State of California, without resort to its conflict of law provisions. The parties agree that any action at law or in equity arising out of or relating to this Agreement will be filed only in the state and federal courts located in Santa Clara County, and the parties hereby irrevocably and unconditionally consent and submit to the exclusive jurisdiction of such courts over any suit, action or proceeding arising out of this Agy. Upon such determination that any provision is invalid, illegal, or incapable of being enforced, the parties will negotiate in good faith to modify this Agreement so as to effect the original intent of the parties as closely as possible in an acceptable manner to the end that the transactions contemplated hereby are fulfilled. Except for payments due under this Agreement, neither party will be responsible for any failure to perform or delay attributable in whole or in part to any cause beyond its reasonable control, including but not limited to acts of God (fire, storm, floods, earthquakes, etc.), civil disturbances, disruption of telecommunications, disruption of power or other essential services, interruption or termination of service by any service providers being used by Cloudera to link its servers to the Internet, labor disturbances, vandalism, cable cut, computer viruses or other similar occurrences, or any malicious or unlawful acts of any third-party (each a "Force Majeure Event"). In the event of any such delay the date of delivery will be deferred for a period equal to the time lost by reason of the delay. Any notice or communication required or permitted to be given hereunder must be in writing signed or authorized by the party giving notice, and may be delivered by hand, deposited with an overnight courier, sent by confirmed email, confirmed facsimile or mailed by registered or certified mail, return receipt requested, postage prepaid, in each case to the address below or at such other address as may hereafter be furnished in accordance with this Section. No modification, addition or deletion, or waiver of any rights under this Agreement will be binding on a party unless made in an agreement clearly understood by the parties to be a modification or waiver and signed by a duly authorized representative of each party. No failure or delay (in whole or in part) on the part of a party to exercise any right or remedy hereunder will operate as a waiver thereof or effect any other right or remedy. All rights and remedies hereunder are cumulative and are not exclusive of any other rights or remedies provided hereunder or by law. The waiver of one breach or default or any delay in exercising any rights will not constitute a waiver of any subsequent breach or default. - +15. Miscellaneous. This Agreement will be governed by and construed in accordance with the laws of the State of California applicable to agreements made and to be entirely performed within the State of California, without resort to its conflict of law provisions. The parties agree that any action at law or in equity arising out of or relating to this Agreement will be filed only in the state and federal courts located in Santa Clara County, and the parties hereby irrevocably and unconditionally consent and submit to the exclusive jurisdiction of such courts over any suit, action or proceeding arising out of this Agy. Upon such determination that any provision is invalid, illegal, or incapable of being enforced, the parties will negotiate in good faith to modify this Agreement so as to effect the original intent of the parties as closely as possible in an acceptable manner to the end that the transactions contemplated hereby are fulfilled. Except for payments due under this Agreement, neither party will be responsible for any failure to perform or delay attributable in whole or in part to any cause beyond its reasonable control, including but not limited to acts of God (fire, storm, floods, earthquakes, etc.), civil disturbances, disruption of telecommunications, disruption of power or other essential services, interruption or termination of service by any service providers being used by Cloudera to link its servers to the Internet, labor disturbances, vandalism, cable cut, computer viruses or other similar occurrences, or any malicious or unlawful acts of any third-party (each a "Force Majeure Event"). In the event of any such delay the date of delivery will be deferred for a period equal to the time lost by reason of the delay. Any notice or communication required or permitted to be given hereunder must be in writing signed or authorized by the party giving notice, and may be delivered by hand, deposited with an overnight courier, sent by confirmed email, confirmed facsimile or mailed by registered or certified mail, return receipt requested, postage prepaid, in each case to the address below or at such other address as may hereafter be furnished in accordance with this Section. No modification, addition or deletion, or waiver of any rights under this Agreement will be binding on a party unless made in an agreement clearly understood by the parties to be a modification or waiver and signed by a duly authorized representative of each party. No failure or delay (in whole or in part) on the part of a party to exercise any right or remedy hereunder will operate as a waiver thereof or effect any other right or remedy. All rights and remedies hereunder are cumulative and are not exclusive of any other rights or remedies provided hereunder or by law. The waiver of one breach or default or any delay in exercising any rights will not constitute a waiver of any subsequent breach or default.
@@ -185,7 +184,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cloudera-express.json b/docs/cloudera-express.json index 7d7a8684c0..604294b423 100644 --- a/docs/cloudera-express.json +++ b/docs/cloudera-express.json @@ -1 +1,12 @@ -{"key": "cloudera-express", "short_name": "Cloudera Express License", "name": "Cloudera Express License", "category": "Proprietary Free", "owner": "Cloudera", "spdx_license_key": "LicenseRef-scancode-cloudera-express", "ignorable_urls": ["http://ccp.cloudera.com/display/SUPPORT/CLOUDERA+PUBLIC+BETA+AGREEMENT", "http://www.google.com/analytics/terms/us.html"]} \ No newline at end of file +{ + "key": "cloudera-express", + "short_name": "Cloudera Express License", + "name": "Cloudera Express License", + "category": "Proprietary Free", + "owner": "Cloudera", + "spdx_license_key": "LicenseRef-scancode-cloudera-express", + "ignorable_urls": [ + "http://ccp.cloudera.com/display/SUPPORT/CLOUDERA+PUBLIC+BETA+AGREEMENT", + "http://www.google.com/analytics/terms/us.html" + ] +} \ No newline at end of file diff --git a/docs/cmigemo.LICENSE b/docs/cmigemo.LICENSE index d3d03424c3..30e35e8ea6 100644 --- a/docs/cmigemo.LICENSE +++ b/docs/cmigemo.LICENSE @@ -1,3 +1,22 @@ +--- +key: cmigemo +short_name: C/Migemo License +name: C/Migemo License +category: Proprietary Free +owner: Fedora +homepage_url: http://fedoraproject.org/wiki/Licensing/CMigemo +spdx_license_key: LicenseRef-scancode-cmigemo +text_urls: + - http://fedoraproject.org/wiki/Licensing/CMigemo +other_urls: + - http://fedoraproject.org/wiki/Licensing/CMigemo +ignorable_authors: + - MURAOKA Taro +ignorable_emails: + - koron@tka.att.ne.jp + - mtasaka@ioa.s.u-tokyo.ac.jp +--- + THE PERMISSION CONDITION ABOUT USING C/Migemo AND Migemo DLL Since: 16-Dec-2001 diff --git a/docs/cmigemo.html b/docs/cmigemo.html index f32a1e397a..ca4e2437d8 100644 --- a/docs/cmigemo.html +++ b/docs/cmigemo.html @@ -230,7 +230,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cmigemo.json b/docs/cmigemo.json index 9ec708abd7..76b71562c9 100644 --- a/docs/cmigemo.json +++ b/docs/cmigemo.json @@ -1 +1,22 @@ -{"key": "cmigemo", "short_name": "C/Migemo License", "name": "C/Migemo License", "category": "Proprietary Free", "owner": "Fedora", "homepage_url": "http://fedoraproject.org/wiki/Licensing/CMigemo", "spdx_license_key": "LicenseRef-scancode-cmigemo", "text_urls": ["http://fedoraproject.org/wiki/Licensing/CMigemo"], "other_urls": ["http://fedoraproject.org/wiki/Licensing/CMigemo"], "ignorable_authors": ["MURAOKA Taro"], "ignorable_emails": ["koron@tka.att.ne.jp", "mtasaka@ioa.s.u-tokyo.ac.jp"]} \ No newline at end of file +{ + "key": "cmigemo", + "short_name": "C/Migemo License", + "name": "C/Migemo License", + "category": "Proprietary Free", + "owner": "Fedora", + "homepage_url": "http://fedoraproject.org/wiki/Licensing/CMigemo", + "spdx_license_key": "LicenseRef-scancode-cmigemo", + "text_urls": [ + "http://fedoraproject.org/wiki/Licensing/CMigemo" + ], + "other_urls": [ + "http://fedoraproject.org/wiki/Licensing/CMigemo" + ], + "ignorable_authors": [ + "MURAOKA Taro" + ], + "ignorable_emails": [ + "koron@tka.att.ne.jp", + "mtasaka@ioa.s.u-tokyo.ac.jp" + ] +} \ No newline at end of file diff --git a/docs/cmr-no.LICENSE b/docs/cmr-no.LICENSE index 6dce0aca5f..70c715a712 100644 --- a/docs/cmr-no.LICENSE +++ b/docs/cmr-no.LICENSE @@ -1,7 +1,17 @@ +--- +key: cmr-no +is_deprecated: yes +short_name: CMR License +name: Christian Michelsen Research AS License +category: Permissive +owner: CMR - Christian Michelsen Research AS +notes: replaced by mit-old-style +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. Christian Michelsen Research AS makes no representations about the suitability of this software for -any purpose. It is provided "as is" without express or implied warranty. +any purpose. It is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/docs/cmr-no.html b/docs/cmr-no.html index 8152d9df60..b13af73152 100644 --- a/docs/cmr-no.html +++ b/docs/cmr-no.html @@ -121,8 +121,7 @@ that both that copyright notice and this permission notice appear in supporting documentation. Christian Michelsen Research AS makes no representations about the suitability of this software for -any purpose. It is provided "as is" without express or implied warranty. - +any purpose. It is provided "as is" without express or implied warranty.
@@ -134,7 +133,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cmr-no.json b/docs/cmr-no.json index 85d415fe41..9cddb471a4 100644 --- a/docs/cmr-no.json +++ b/docs/cmr-no.json @@ -1 +1,9 @@ -{"key": "cmr-no", "is_deprecated": true, "short_name": "CMR License", "name": "Christian Michelsen Research AS License", "category": "Permissive", "owner": "CMR - Christian Michelsen Research AS", "notes": "replaced by mit-old-style"} \ No newline at end of file +{ + "key": "cmr-no", + "is_deprecated": true, + "short_name": "CMR License", + "name": "Christian Michelsen Research AS License", + "category": "Permissive", + "owner": "CMR - Christian Michelsen Research AS", + "notes": "replaced by mit-old-style" +} \ No newline at end of file diff --git a/docs/cmu-computing-services.LICENSE b/docs/cmu-computing-services.LICENSE index 2d88c41110..469cace7ce 100644 --- a/docs/cmu-computing-services.LICENSE +++ b/docs/cmu-computing-services.LICENSE @@ -1,3 +1,22 @@ +--- +key: cmu-computing-services +short_name: CMU Computing Services License +name: Carnegie Mellon Computing Services License +category: Permissive +owner: Carnegie Mellon University +homepage_url: http://www.cmu.edu/computing/ +spdx_license_key: LicenseRef-scancode-cmu-computing-services +text_urls: + - http://cyrusimap.org/mediawiki/index.php/Downloads#Licensing +minimum_coverage: 70 +ignorable_authors: + - Computing Services at Carnegie Mellon University (http://www.cmu.edu/computing/) +ignorable_urls: + - http://www.cmu.edu/computing +ignorable_emails: + - tech-transfer@andrew.cmu.edu +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/cmu-computing-services.html b/docs/cmu-computing-services.html index 52b740993c..11e3ad9b02 100644 --- a/docs/cmu-computing-services.html +++ b/docs/cmu-computing-services.html @@ -204,7 +204,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cmu-computing-services.json b/docs/cmu-computing-services.json index 1590105917..0e0f57b960 100644 --- a/docs/cmu-computing-services.json +++ b/docs/cmu-computing-services.json @@ -1 +1,22 @@ -{"key": "cmu-computing-services", "short_name": "CMU Computing Services License", "name": "Carnegie Mellon Computing Services License", "category": "Permissive", "owner": "Carnegie Mellon University", "homepage_url": "http://www.cmu.edu/computing/", "spdx_license_key": "LicenseRef-scancode-cmu-computing-services", "text_urls": ["http://cyrusimap.org/mediawiki/index.php/Downloads#Licensing"], "minimum_coverage": 70, "ignorable_authors": ["Computing Services at Carnegie Mellon University (http://www.cmu.edu/computing/)"], "ignorable_urls": ["http://www.cmu.edu/computing"], "ignorable_emails": ["tech-transfer@andrew.cmu.edu"]} \ No newline at end of file +{ + "key": "cmu-computing-services", + "short_name": "CMU Computing Services License", + "name": "Carnegie Mellon Computing Services License", + "category": "Permissive", + "owner": "Carnegie Mellon University", + "homepage_url": "http://www.cmu.edu/computing/", + "spdx_license_key": "LicenseRef-scancode-cmu-computing-services", + "text_urls": [ + "http://cyrusimap.org/mediawiki/index.php/Downloads#Licensing" + ], + "minimum_coverage": 70, + "ignorable_authors": [ + "Computing Services at Carnegie Mellon University (http://www.cmu.edu/computing/)" + ], + "ignorable_urls": [ + "http://www.cmu.edu/computing" + ], + "ignorable_emails": [ + "tech-transfer@andrew.cmu.edu" + ] +} \ No newline at end of file diff --git a/docs/cmu-mit.LICENSE b/docs/cmu-mit.LICENSE index 5ec2c48fdc..e3892afa01 100644 --- a/docs/cmu-mit.LICENSE +++ b/docs/cmu-mit.LICENSE @@ -1,3 +1,12 @@ +--- +key: cmu-mit +short_name: CMU MIT-style +name: Carnegie Mellon UC Regents MIT-style License +category: Permissive +owner: Carnegie Mellon University +spdx_license_key: LicenseRef-scancode-cmu-mit +--- + Permission to use, copy, modify, and distribute this software and its documentation is hereby granted (including for commercial or for-profit use), provided that both the copyright notice and this @@ -22,4 +31,4 @@ DAMAGE. Carnegie Mellon encourages (but does not require) users of this software to return any improvements or extensions that they make, and to grant Carnegie Mellon the rights to redistribute these -changes without encumbrance. +changes without encumbrance. \ No newline at end of file diff --git a/docs/cmu-mit.html b/docs/cmu-mit.html index 8e8cd150a7..905ae13531 100644 --- a/docs/cmu-mit.html +++ b/docs/cmu-mit.html @@ -132,8 +132,7 @@ Carnegie Mellon encourages (but does not require) users of this software to return any improvements or extensions that they make, and to grant Carnegie Mellon the rights to redistribute these -changes without encumbrance. - +changes without encumbrance.
@@ -145,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cmu-mit.json b/docs/cmu-mit.json index f8011ad34b..138a74d38c 100644 --- a/docs/cmu-mit.json +++ b/docs/cmu-mit.json @@ -1 +1,8 @@ -{"key": "cmu-mit", "short_name": "CMU MIT-style", "name": "Carnegie Mellon UC Regents MIT-style License", "category": "Permissive", "owner": "Carnegie Mellon University", "spdx_license_key": "LicenseRef-scancode-cmu-mit"} \ No newline at end of file +{ + "key": "cmu-mit", + "short_name": "CMU MIT-style", + "name": "Carnegie Mellon UC Regents MIT-style License", + "category": "Permissive", + "owner": "Carnegie Mellon University", + "spdx_license_key": "LicenseRef-scancode-cmu-mit" +} \ No newline at end of file diff --git a/docs/cmu-simple.LICENSE b/docs/cmu-simple.LICENSE index a9556c6285..6c7f4f1eb2 100644 --- a/docs/cmu-simple.LICENSE +++ b/docs/cmu-simple.LICENSE @@ -1,4 +1,15 @@ +--- +key: cmu-simple +short_name: CMU Simple License +name: Carnegie Mellon Simple License +category: Permissive +owner: Carnegie Mellon University +notes: This is a simplified variant of license with a text otherwise borrowed from the cmu-template + license +spdx_license_key: LicenseRef-scancode-cmu-simple +--- + Permission to use, copy, modify, and distribute this software and its documentation is hereby granted, provided that the above copyright notice appears in all copies. This software is provided without any -warranty, express or implied. +warranty, express or implied. \ No newline at end of file diff --git a/docs/cmu-simple.html b/docs/cmu-simple.html index d292852630..cafe1f817c 100644 --- a/docs/cmu-simple.html +++ b/docs/cmu-simple.html @@ -118,8 +118,7 @@
Permission to use, copy, modify, and distribute this software and its
 documentation is hereby granted, provided that the above copyright
 notice appears in all copies.  This software is provided without any
-warranty, express or implied.
-
+warranty, express or implied.
@@ -131,7 +130,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cmu-simple.json b/docs/cmu-simple.json index 05a370200d..be5549465b 100644 --- a/docs/cmu-simple.json +++ b/docs/cmu-simple.json @@ -1 +1,9 @@ -{"key": "cmu-simple", "short_name": "CMU Simple License", "name": "Carnegie Mellon Simple License", "category": "Permissive", "owner": "Carnegie Mellon University", "notes": "This is a simplified variant of license with a text otherwise borrowed from the cmu-template license", "spdx_license_key": "LicenseRef-scancode-cmu-simple"} \ No newline at end of file +{ + "key": "cmu-simple", + "short_name": "CMU Simple License", + "name": "Carnegie Mellon Simple License", + "category": "Permissive", + "owner": "Carnegie Mellon University", + "notes": "This is a simplified variant of license with a text otherwise borrowed from the cmu-template license", + "spdx_license_key": "LicenseRef-scancode-cmu-simple" +} \ No newline at end of file diff --git a/docs/cmu-template.LICENSE b/docs/cmu-template.LICENSE index d78716617e..ef0482e294 100644 --- a/docs/cmu-template.LICENSE +++ b/docs/cmu-template.LICENSE @@ -1,3 +1,15 @@ +--- +key: cmu-template +short_name: CMU License +name: Carnegie Mellon Template License +category: Permissive +owner: Carnegie Mellon University +homepage_url: http://copyfree.org/licenses/cmu/license.txt +spdx_license_key: LicenseRef-scancode-cmu-template +text_urls: + - http://copyfree.org/licenses/cmu/license.txt +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the software, derivative works diff --git a/docs/cmu-template.html b/docs/cmu-template.html index f608656be0..c029ffbd6d 100644 --- a/docs/cmu-template.html +++ b/docs/cmu-template.html @@ -144,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cmu-template.json b/docs/cmu-template.json index 92d71032fa..523a095e9a 100644 --- a/docs/cmu-template.json +++ b/docs/cmu-template.json @@ -1 +1,12 @@ -{"key": "cmu-template", "short_name": "CMU License", "name": "Carnegie Mellon Template License", "category": "Permissive", "owner": "Carnegie Mellon University", "homepage_url": "http://copyfree.org/licenses/cmu/license.txt", "spdx_license_key": "LicenseRef-scancode-cmu-template", "text_urls": ["http://copyfree.org/licenses/cmu/license.txt"]} \ No newline at end of file +{ + "key": "cmu-template", + "short_name": "CMU License", + "name": "Carnegie Mellon Template License", + "category": "Permissive", + "owner": "Carnegie Mellon University", + "homepage_url": "http://copyfree.org/licenses/cmu/license.txt", + "spdx_license_key": "LicenseRef-scancode-cmu-template", + "text_urls": [ + "http://copyfree.org/licenses/cmu/license.txt" + ] +} \ No newline at end of file diff --git a/docs/cmu-uc.LICENSE b/docs/cmu-uc.LICENSE index 4477deb8b7..61c5927c3c 100644 --- a/docs/cmu-uc.LICENSE +++ b/docs/cmu-uc.LICENSE @@ -1,3 +1,15 @@ +--- +key: cmu-uc +short_name: CMU UC Regents License +name: Carnegie Mellon UC Regents License +category: Permissive +owner: Carnegie Mellon University +homepage_url: https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style +spdx_license_key: MIT-CMU +other_urls: + - https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/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 appears in all copies and that both that copyright @@ -12,4 +24,4 @@ FITNESS. IN NO EVENT SHALL CMU OR THE REGENTS OF THE UNIVERSITY OF CALIFORNIA BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM THE 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. +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/docs/cmu-uc.html b/docs/cmu-uc.html index 058fc8b631..2404ca6ac1 100644 --- a/docs/cmu-uc.html +++ b/docs/cmu-uc.html @@ -138,8 +138,7 @@ LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM THE 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. - +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
@@ -151,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cmu-uc.json b/docs/cmu-uc.json index 30adfd4235..14e413deb9 100644 --- a/docs/cmu-uc.json +++ b/docs/cmu-uc.json @@ -1 +1,12 @@ -{"key": "cmu-uc", "short_name": "CMU UC Regents License", "name": "Carnegie Mellon UC Regents License", "category": "Permissive", "owner": "Carnegie Mellon University", "homepage_url": "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", "spdx_license_key": "MIT-CMU", "other_urls": ["https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/LICENSE"]} \ No newline at end of file +{ + "key": "cmu-uc", + "short_name": "CMU UC Regents License", + "name": "Carnegie Mellon UC Regents License", + "category": "Permissive", + "owner": "Carnegie Mellon University", + "homepage_url": "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style", + "spdx_license_key": "MIT-CMU", + "other_urls": [ + "https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/LICENSE" + ] +} \ No newline at end of file diff --git a/docs/cncf-corporate-cla-1.0.LICENSE b/docs/cncf-corporate-cla-1.0.LICENSE index 7d13379b0c..034ca7a047 100644 --- a/docs/cncf-corporate-cla-1.0.LICENSE +++ b/docs/cncf-corporate-cla-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: cncf-corporate-cla-1.0 +short_name: CNCF Corporate CLA 1.0 +name: Software Grant and Corporate Contributor License Agreement ("Agreement") v1.0 +category: CLA +owner: Linux Foundation +homepage_url: https://github.com/cncf/cla/blob/master/corporate-cla.pdf +spdx_license_key: LicenseRef-scancode-cncf-corporate-cla-1.0 +faq_url: https://github.com/kubernetes/community/blob/master/CLA.md +ignorable_emails: + - cla@cncf.io +--- + Cloud Native Computing Foundation A project of The Linux Foundation Software Grant and Corporate Contributor License Agreement ("Agreement") v1.0 @@ -120,4 +133,4 @@ authorized to add or remove designated employees from this list in th Schedule B [Identification of optional concurrent software grant. Would be left blank or omitted if there is no -concurrent software grant.] +concurrent software grant.] \ No newline at end of file diff --git a/docs/cncf-corporate-cla-1.0.html b/docs/cncf-corporate-cla-1.0.html index aebdf03cad..e0088e6e38 100644 --- a/docs/cncf-corporate-cla-1.0.html +++ b/docs/cncf-corporate-cla-1.0.html @@ -88,7 +88,7 @@
category
- Patent License + CLA
@@ -253,8 +253,7 @@ Schedule B [Identification of optional concurrent software grant. Would be left blank or omitted if there is no -concurrent software grant.] - +concurrent software grant.]
@@ -266,7 +265,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cncf-corporate-cla-1.0.json b/docs/cncf-corporate-cla-1.0.json index b4e9ad3ab3..aae843ada9 100644 --- a/docs/cncf-corporate-cla-1.0.json +++ b/docs/cncf-corporate-cla-1.0.json @@ -1 +1,13 @@ -{"key": "cncf-corporate-cla-1.0", "short_name": "CNCF Corporate CLA 1.0", "name": "Software Grant and Corporate Contributor License Agreement (\"Agreement\") v1.0", "category": "Patent License", "owner": "Linux Foundation", "homepage_url": "https://github.com/cncf/cla/blob/master/corporate-cla.pdf", "spdx_license_key": "LicenseRef-scancode-cncf-corporate-cla-1.0", "faq_url": "https://github.com/kubernetes/community/blob/master/CLA.md", "ignorable_emails": ["cla@cncf.io"]} \ No newline at end of file +{ + "key": "cncf-corporate-cla-1.0", + "short_name": "CNCF Corporate CLA 1.0", + "name": "Software Grant and Corporate Contributor License Agreement (\"Agreement\") v1.0", + "category": "CLA", + "owner": "Linux Foundation", + "homepage_url": "https://github.com/cncf/cla/blob/master/corporate-cla.pdf", + "spdx_license_key": "LicenseRef-scancode-cncf-corporate-cla-1.0", + "faq_url": "https://github.com/kubernetes/community/blob/master/CLA.md", + "ignorable_emails": [ + "cla@cncf.io" + ] +} \ No newline at end of file diff --git a/docs/cncf-corporate-cla-1.0.yml b/docs/cncf-corporate-cla-1.0.yml index 9ea834a392..b692b62ad0 100644 --- a/docs/cncf-corporate-cla-1.0.yml +++ b/docs/cncf-corporate-cla-1.0.yml @@ -1,7 +1,7 @@ key: cncf-corporate-cla-1.0 short_name: CNCF Corporate CLA 1.0 name: Software Grant and Corporate Contributor License Agreement ("Agreement") v1.0 -category: Patent License +category: CLA owner: Linux Foundation homepage_url: https://github.com/cncf/cla/blob/master/corporate-cla.pdf spdx_license_key: LicenseRef-scancode-cncf-corporate-cla-1.0 diff --git a/docs/cncf-individual-cla-1.0.LICENSE b/docs/cncf-individual-cla-1.0.LICENSE index bce492a594..ba95decafe 100644 --- a/docs/cncf-individual-cla-1.0.LICENSE +++ b/docs/cncf-individual-cla-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: cncf-individual-cla-1.0 +short_name: CNCF Individual CLA 1.0 +name: CNCF Individual Contributor License Agreement ("Agreement") v1.0 +category: CLA +owner: Linux Foundation +homepage_url: https://github.com/cncf/cla/blob/master/individual-cla.pdf +spdx_license_key: LicenseRef-scancode-cncf-individual-cla-1.0 +faq_url: https://github.com/kubernetes/community/blob/master/CLA.md +ignorable_emails: + - cla@cncf.io +--- + Cloud Native Computing Foundation A project of The Linux Foundation Individual Contributor License Agreement ("Agreement") v1.0 @@ -98,5 +111,4 @@ license agreements) of which you are personally aware, and conspicuousl that would make these representations inaccurate in any respect. -Please sign: __________________________________ Date: ________________ - +Please sign: __________________________________ Date: ________________ \ No newline at end of file diff --git a/docs/cncf-individual-cla-1.0.html b/docs/cncf-individual-cla-1.0.html index a08f31a001..60be0aec29 100644 --- a/docs/cncf-individual-cla-1.0.html +++ b/docs/cncf-individual-cla-1.0.html @@ -88,7 +88,7 @@
category
- Patent License + CLA
@@ -231,9 +231,7 @@ that would make these representations inaccurate in any respect. -Please sign: __________________________________ Date: ________________ - - +Please sign: __________________________________ Date: ________________
@@ -245,7 +243,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cncf-individual-cla-1.0.json b/docs/cncf-individual-cla-1.0.json index 545d7a2f74..c27d9e2f89 100644 --- a/docs/cncf-individual-cla-1.0.json +++ b/docs/cncf-individual-cla-1.0.json @@ -1 +1,13 @@ -{"key": "cncf-individual-cla-1.0", "short_name": "CNCF Individual CLA 1.0", "name": "CNCF Individual Contributor License Agreement (\"Agreement\") v1.0", "category": "Patent License", "owner": "Linux Foundation", "homepage_url": "https://github.com/cncf/cla/blob/master/individual-cla.pdf", "spdx_license_key": "LicenseRef-scancode-cncf-individual-cla-1.0", "faq_url": "https://github.com/kubernetes/community/blob/master/CLA.md", "ignorable_emails": ["cla@cncf.io"]} \ No newline at end of file +{ + "key": "cncf-individual-cla-1.0", + "short_name": "CNCF Individual CLA 1.0", + "name": "CNCF Individual Contributor License Agreement (\"Agreement\") v1.0", + "category": "CLA", + "owner": "Linux Foundation", + "homepage_url": "https://github.com/cncf/cla/blob/master/individual-cla.pdf", + "spdx_license_key": "LicenseRef-scancode-cncf-individual-cla-1.0", + "faq_url": "https://github.com/kubernetes/community/blob/master/CLA.md", + "ignorable_emails": [ + "cla@cncf.io" + ] +} \ No newline at end of file diff --git a/docs/cncf-individual-cla-1.0.yml b/docs/cncf-individual-cla-1.0.yml index 1dc7eb7250..d05ddcb76c 100644 --- a/docs/cncf-individual-cla-1.0.yml +++ b/docs/cncf-individual-cla-1.0.yml @@ -1,7 +1,7 @@ key: cncf-individual-cla-1.0 short_name: CNCF Individual CLA 1.0 name: CNCF Individual Contributor License Agreement ("Agreement") v1.0 -category: Patent License +category: CLA owner: Linux Foundation homepage_url: https://github.com/cncf/cla/blob/master/individual-cla.pdf spdx_license_key: LicenseRef-scancode-cncf-individual-cla-1.0 diff --git a/docs/cnri-jython.LICENSE b/docs/cnri-jython.LICENSE index 8fe9ad61e0..eb4c95934d 100644 --- a/docs/cnri-jython.LICENSE +++ b/docs/cnri-jython.LICENSE @@ -1,3 +1,18 @@ +--- +key: cnri-jython +short_name: CNRI Jython License +name: CNRI Jython License +category: Permissive +owner: CNRI +homepage_url: http://www.jython.org/license.html +spdx_license_key: CNRI-Jython +ignorable_copyrights: + - Copyright (c) 1996-1999 Corporation for National Research Initiatives +ignorable_holders: + - Corporation for National Research Initiatives +ignorable_urls: + - http://hdl.handle.net/1895.22/1006 +--- 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 using JPython version 1.1.x in source or binary form and its associated documentation as provided herein ("Software").
 diff --git a/docs/cnri-jython.html b/docs/cnri-jython.html index 514243c945..b65c3011fb 100644 --- a/docs/cnri-jython.html +++ b/docs/cnri-jython.html @@ -142,8 +142,7 @@
license_text
-

-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 using JPython version 1.1.x in source or binary form and its associated documentation as provided herein ("Software").
 
+    
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 using JPython version 1.1.x in source or binary form and its associated documentation as provided herein ("Software").
 
 
 2. Subject to the terms and conditions of this License Agreement, CNRI hereby grants Licensee a non-exclusive, non-transferable, 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 CNRI's License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) 1996-1999 Corporation for National Research Initiatives; All Rights Reserved" are both retained in the Software, alone or in any derivative version prepared by Licensee.
Alternatively, in lieu of CNRI's License Agreement, Licensee may substitute the following text (omitting the quotes), provided, however, that such text is displayed prominently in the Software alone or in any derivative version prepared by Licensee: "JPython (Version 1.1.x) is made available subject to the terms and conditions in CNRI's License Agreement. This Agreement may be located on the Internet using the following unique, persistent identifier (known as a handle): 1895.22/1006. The License may also be obtained from a proxy server on the Web using the following URL: http://hdl.handle.net/1895.22/1006."
 
 
@@ -171,7 +170,8 @@
       AboutCode
     

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cnri-jython.json b/docs/cnri-jython.json index c82fafd51f..c5fa535035 100644 --- a/docs/cnri-jython.json +++ b/docs/cnri-jython.json @@ -1 +1,18 @@ -{"key": "cnri-jython", "short_name": "CNRI Jython License", "name": "CNRI Jython License", "category": "Permissive", "owner": "CNRI", "homepage_url": "http://www.jython.org/license.html", "spdx_license_key": "CNRI-Jython", "ignorable_copyrights": ["Copyright (c) 1996-1999 Corporation for National Research Initiatives"], "ignorable_holders": ["Corporation for National Research Initiatives"], "ignorable_urls": ["http://hdl.handle.net/1895.22/1006"]} \ No newline at end of file +{ + "key": "cnri-jython", + "short_name": "CNRI Jython License", + "name": "CNRI Jython License", + "category": "Permissive", + "owner": "CNRI", + "homepage_url": "http://www.jython.org/license.html", + "spdx_license_key": "CNRI-Jython", + "ignorable_copyrights": [ + "Copyright (c) 1996-1999 Corporation for National Research Initiatives" + ], + "ignorable_holders": [ + "Corporation for National Research Initiatives" + ], + "ignorable_urls": [ + "http://hdl.handle.net/1895.22/1006" + ] +} \ No newline at end of file diff --git a/docs/cnri-python-1.6.1.LICENSE b/docs/cnri-python-1.6.1.LICENSE index 409d9a4cd7..169078a315 100644 --- a/docs/cnri-python-1.6.1.LICENSE +++ b/docs/cnri-python-1.6.1.LICENSE @@ -1,3 +1,19 @@ +--- +key: cnri-python-1.6.1 +short_name: CNRI Python 1.6.1 +name: CNRI Open Source License Agreement for Python 1.6.1 +category: Permissive +owner: CNRI +homepage_url: http://www.python.org/download/releases/1.6.1/download_win/ +spdx_license_key: CNRI-Python-GPL-Compatible +ignorable_copyrights: + - Copyright (c) 1995-2001 Corporation for National Research Initiatives +ignorable_holders: + - Corporation for National Research Initiatives +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 +--- + CNRI OPEN SOURCE GPL-COMPATIBLE LICENSE AGREEMENT IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. diff --git a/docs/cnri-python-1.6.1.html b/docs/cnri-python-1.6.1.html index 5a676581c0..3ee6839aea 100644 --- a/docs/cnri-python-1.6.1.html +++ b/docs/cnri-python-1.6.1.html @@ -176,7 +176,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cnri-python-1.6.1.json b/docs/cnri-python-1.6.1.json index 7df68b07b2..54b53c5ae5 100644 --- a/docs/cnri-python-1.6.1.json +++ b/docs/cnri-python-1.6.1.json @@ -1 +1,18 @@ -{"key": "cnri-python-1.6.1", "short_name": "CNRI Python 1.6.1", "name": "CNRI Open Source License Agreement for Python 1.6.1", "category": "Permissive", "owner": "CNRI", "homepage_url": "http://www.python.org/download/releases/1.6.1/download_win/", "spdx_license_key": "CNRI-Python-GPL-Compatible", "ignorable_copyrights": ["Copyright (c) 1995-2001 Corporation for National Research Initiatives"], "ignorable_holders": ["Corporation for National Research Initiatives"], "ignorable_urls": ["http://hdl.handle.net/1895.22/1013"]} \ No newline at end of file +{ + "key": "cnri-python-1.6.1", + "short_name": "CNRI Python 1.6.1", + "name": "CNRI Open Source License Agreement for Python 1.6.1", + "category": "Permissive", + "owner": "CNRI", + "homepage_url": "http://www.python.org/download/releases/1.6.1/download_win/", + "spdx_license_key": "CNRI-Python-GPL-Compatible", + "ignorable_copyrights": [ + "Copyright (c) 1995-2001 Corporation for National Research Initiatives" + ], + "ignorable_holders": [ + "Corporation for National Research Initiatives" + ], + "ignorable_urls": [ + "http://hdl.handle.net/1895.22/1013" + ] +} \ No newline at end of file diff --git a/docs/cnri-python-1.6.LICENSE b/docs/cnri-python-1.6.LICENSE index f9a89302b5..fff85f1faf 100644 --- a/docs/cnri-python-1.6.LICENSE +++ b/docs/cnri-python-1.6.LICENSE @@ -1,3 +1,28 @@ +--- +key: cnri-python-1.6 +short_name: CNRI Python 1.6 +name: CNRI Open Source License Agreement for Python 1.6 +category: Permissive +owner: CNRI +homepage_url: http://www.handle.net/python_licenses/python1.6_9-5-00.html +notes: per SPDX.org, CNRI portion of the multi-part Python License (Python-2.0) +spdx_license_key: CNRI-Python +osi_license_key: CNRI-Python +text_urls: + - http://www.handle.net/python_licenses/python1.6_9-5-00.html +other_urls: + - http://spdx.org/licenses/CNRI-Python + - http://www.opensource.org/licenses/CNRI-Python + - https://opensource.org/licenses/CNRI-Python +ignorable_copyrights: + - Copyright (c) 1995-2000 Corporation for National Research Initiatives +ignorable_holders: + - Corporation for National Research Initiatives +ignorable_urls: + - http://hdl.handle.net/1895.22/1012 + - http://www.python.org/ +--- + CNRI OPEN SOURCE LICENSE AGREEMENT IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHERWISE USING PYTHON 1.6 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT. diff --git a/docs/cnri-python-1.6.html b/docs/cnri-python-1.6.html index 83f350c86b..0106547bc0 100644 --- a/docs/cnri-python-1.6.html +++ b/docs/cnri-python-1.6.html @@ -206,7 +206,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cnri-python-1.6.json b/docs/cnri-python-1.6.json index 1455007f3b..a2f3e5a649 100644 --- a/docs/cnri-python-1.6.json +++ b/docs/cnri-python-1.6.json @@ -1 +1,29 @@ -{"key": "cnri-python-1.6", "short_name": "CNRI Python 1.6", "name": "CNRI Open Source License Agreement for Python 1.6", "category": "Permissive", "owner": "CNRI", "homepage_url": "http://www.handle.net/python_licenses/python1.6_9-5-00.html", "notes": "per SPDX.org, CNRI portion of the multi-part Python License (Python-2.0)", "spdx_license_key": "CNRI-Python", "osi_license_key": "CNRI-Python", "text_urls": ["http://www.handle.net/python_licenses/python1.6_9-5-00.html"], "other_urls": ["http://spdx.org/licenses/CNRI-Python", "http://www.opensource.org/licenses/CNRI-Python", "https://opensource.org/licenses/CNRI-Python"], "ignorable_copyrights": ["Copyright (c) 1995-2000 Corporation for National Research Initiatives"], "ignorable_holders": ["Corporation for National Research Initiatives"], "ignorable_urls": ["http://hdl.handle.net/1895.22/1012", "http://www.python.org/"]} \ No newline at end of file +{ + "key": "cnri-python-1.6", + "short_name": "CNRI Python 1.6", + "name": "CNRI Open Source License Agreement for Python 1.6", + "category": "Permissive", + "owner": "CNRI", + "homepage_url": "http://www.handle.net/python_licenses/python1.6_9-5-00.html", + "notes": "per SPDX.org, CNRI portion of the multi-part Python License (Python-2.0)", + "spdx_license_key": "CNRI-Python", + "osi_license_key": "CNRI-Python", + "text_urls": [ + "http://www.handle.net/python_licenses/python1.6_9-5-00.html" + ], + "other_urls": [ + "http://spdx.org/licenses/CNRI-Python", + "http://www.opensource.org/licenses/CNRI-Python", + "https://opensource.org/licenses/CNRI-Python" + ], + "ignorable_copyrights": [ + "Copyright (c) 1995-2000 Corporation for National Research Initiatives" + ], + "ignorable_holders": [ + "Corporation for National Research Initiatives" + ], + "ignorable_urls": [ + "http://hdl.handle.net/1895.22/1012", + "http://www.python.org/" + ] +} \ No newline at end of file diff --git a/docs/cockroach.LICENSE b/docs/cockroach.LICENSE index 10fb3b06e2..73e008906a 100644 --- a/docs/cockroach.LICENSE +++ b/docs/cockroach.LICENSE @@ -1,3 +1,19 @@ +--- +key: cockroach +short_name: CCL +name: Cockroach Community License +category: Source-available +owner: Cockroachlabs +homepage_url: https://www.cockroachlabs.com/cockroachdb-community-license +spdx_license_key: LicenseRef-scancode-cockroach +text_urls: + - https://github.com/cockroachdb/cockroach/blob/master/licenses/CCL.txt +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://cla-assistant.io/cockroachdb/cockroach + - https://github.com/cockroachdb/cockroach +--- + CockroachDB Community License Agreement Please read this CockroachDB Community License Agreement (the "Agreement") @@ -389,4 +405,4 @@ oral, relating to the subject matter of this Agreement and all past dealing or industry custom. The failure of either party to enforce its rights under this Agreement at any time for any period shall not be construed as a waiver of such rights. No changes, modifications or waivers to this Agreement will be effective -unless in writing and signed by both parties. +unless in writing and signed by both parties. \ No newline at end of file diff --git a/docs/cockroach.html b/docs/cockroach.html index 4d91068b14..98670178f0 100644 --- a/docs/cockroach.html +++ b/docs/cockroach.html @@ -524,8 +524,7 @@ industry custom. The failure of either party to enforce its rights under this Agreement at any time for any period shall not be construed as a waiver of such rights. No changes, modifications or waivers to this Agreement will be effective -unless in writing and signed by both parties. -
+unless in writing and signed by both parties.
@@ -537,7 +536,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cockroach.json b/docs/cockroach.json index 6ac7d92687..14db111b6b 100644 --- a/docs/cockroach.json +++ b/docs/cockroach.json @@ -1 +1,17 @@ -{"key": "cockroach", "short_name": "CCL", "name": "Cockroach Community License", "category": "Source-available", "owner": "Cockroachlabs", "homepage_url": "https://www.cockroachlabs.com/cockroachdb-community-license", "spdx_license_key": "LicenseRef-scancode-cockroach", "text_urls": ["https://github.com/cockroachdb/cockroach/blob/master/licenses/CCL.txt"], "ignorable_urls": ["http://www.apache.org/licenses/LICENSE-2.0", "https://cla-assistant.io/cockroachdb/cockroach", "https://github.com/cockroachdb/cockroach"]} \ No newline at end of file +{ + "key": "cockroach", + "short_name": "CCL", + "name": "Cockroach Community License", + "category": "Source-available", + "owner": "Cockroachlabs", + "homepage_url": "https://www.cockroachlabs.com/cockroachdb-community-license", + "spdx_license_key": "LicenseRef-scancode-cockroach", + "text_urls": [ + "https://github.com/cockroachdb/cockroach/blob/master/licenses/CCL.txt" + ], + "ignorable_urls": [ + "http://www.apache.org/licenses/LICENSE-2.0", + "https://cla-assistant.io/cockroachdb/cockroach", + "https://github.com/cockroachdb/cockroach" + ] +} \ No newline at end of file diff --git a/docs/cockroachdb-use-grant-for-bsl-1.1.LICENSE b/docs/cockroachdb-use-grant-for-bsl-1.1.LICENSE index 3cd135753f..652eff0b78 100644 --- a/docs/cockroachdb-use-grant-for-bsl-1.1.LICENSE +++ b/docs/cockroachdb-use-grant-for-bsl-1.1.LICENSE @@ -1,3 +1,23 @@ +--- +key: cockroachdb-use-grant-for-bsl-1.1 +short_name: CockroachDB Use Grant for BSL 1.1 +name: CockroachDB Additional Use Grant for BSL 1.1 +category: Source-available +owner: Cockroachlabs +homepage_url: https://github.com/cockroachdb/cockroach/blob/8acfe8ffd0028ce1d81a9b1148f7e9ba2673bf95/licenses/BSL.txt +is_exception: yes +spdx_license_key: LicenseRef-scancode-cockroachdb-use-grant-bsl-1.1 +other_spdx_license_keys: + - LicenseRef-scancode-cockroachdb-use-grant-for-bsl-1.1 +faq_url: https://www.cockroachlabs.com/blog/oss-relicensing-cockroachdb/ +ignorable_copyrights: + - (c) 2019 Cockroach Labs, Inc. +ignorable_holders: + - Cockroach Labs, Inc. +ignorable_urls: + - https://cockroachlabs.com/ +--- + Parameters Licensor: Cockroach Labs, Inc. Licensed Work: CockroachDB 19.2 diff --git a/docs/cockroachdb-use-grant-for-bsl-1.1.html b/docs/cockroachdb-use-grant-for-bsl-1.1.html index cabf53d1e3..c6d2c0a224 100644 --- a/docs/cockroachdb-use-grant-for-bsl-1.1.html +++ b/docs/cockroachdb-use-grant-for-bsl-1.1.html @@ -203,7 +203,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cockroachdb-use-grant-for-bsl-1.1.json b/docs/cockroachdb-use-grant-for-bsl-1.1.json index 5122747cf5..d45953fb0a 100644 --- a/docs/cockroachdb-use-grant-for-bsl-1.1.json +++ b/docs/cockroachdb-use-grant-for-bsl-1.1.json @@ -1 +1,23 @@ -{"key": "cockroachdb-use-grant-for-bsl-1.1", "short_name": "CockroachDB Use Grant for BSL 1.1", "name": "CockroachDB Additional Use Grant for BSL 1.1", "category": "Source-available", "owner": "Cockroachlabs", "homepage_url": "https://github.com/cockroachdb/cockroach/blob/8acfe8ffd0028ce1d81a9b1148f7e9ba2673bf95/licenses/BSL.txt", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-cockroachdb-use-grant-bsl-1.1", "other_spdx_license_keys": ["LicenseRef-scancode-cockroachdb-use-grant-for-bsl-1.1"], "faq_url": "https://www.cockroachlabs.com/blog/oss-relicensing-cockroachdb/", "ignorable_copyrights": ["(c) 2019 Cockroach Labs, Inc."], "ignorable_holders": ["Cockroach Labs, Inc."], "ignorable_urls": ["https://cockroachlabs.com/"]} \ No newline at end of file +{ + "key": "cockroachdb-use-grant-for-bsl-1.1", + "short_name": "CockroachDB Use Grant for BSL 1.1", + "name": "CockroachDB Additional Use Grant for BSL 1.1", + "category": "Source-available", + "owner": "Cockroachlabs", + "homepage_url": "https://github.com/cockroachdb/cockroach/blob/8acfe8ffd0028ce1d81a9b1148f7e9ba2673bf95/licenses/BSL.txt", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-cockroachdb-use-grant-bsl-1.1", + "other_spdx_license_keys": [ + "LicenseRef-scancode-cockroachdb-use-grant-for-bsl-1.1" + ], + "faq_url": "https://www.cockroachlabs.com/blog/oss-relicensing-cockroachdb/", + "ignorable_copyrights": [ + "(c) 2019 Cockroach Labs, Inc." + ], + "ignorable_holders": [ + "Cockroach Labs, Inc." + ], + "ignorable_urls": [ + "https://cockroachlabs.com/" + ] +} \ No newline at end of file diff --git a/docs/code-credit-license-1.0.1.LICENSE b/docs/code-credit-license-1.0.1.LICENSE index bc063916d2..b8c16799d4 100644 --- a/docs/code-credit-license-1.0.1.LICENSE +++ b/docs/code-credit-license-1.0.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: code-credit-license-1.0.1 +short_name: Code Credit License v1.0.1 +name: Code Credit License v1.0.1 +category: Permissive +owner: Kyle Mitchell +homepage_url: https://github.com/creditstxt/code-credit-license/releases/tag/v1.0.1 +spdx_license_key: LicenseRef-scancode-code-credit-license-1.0.1 +other_urls: + - https://github.com/otherjoel/amulet-mining/blob/main/LICENSE.md + - https://github.com/DoctorLaplace/Storm-Mind-Public/blob/main/LICENSE + - https://github.com/pedrohdjs/javascript-basico-para-programadores/blob/main/LICENSE +ignorable_urls: + - https://codecreditlicense.com/license/1.0.1 + - https://creditstxt.com/ +--- + # Code Credit License Version 1.0.1 diff --git a/docs/code-credit-license-1.0.1.html b/docs/code-credit-license-1.0.1.html index 9f2adaacdb..3a31aed1ce 100644 --- a/docs/code-credit-license-1.0.1.html +++ b/docs/code-credit-license-1.0.1.html @@ -249,7 +249,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/code-credit-license-1.0.1.json b/docs/code-credit-license-1.0.1.json index b40a86c0e7..01f13ec710 100644 --- a/docs/code-credit-license-1.0.1.json +++ b/docs/code-credit-license-1.0.1.json @@ -1 +1,18 @@ -{"key": "code-credit-license-1.0.1", "short_name": "Code Credit License v1.0.1", "name": "Code Credit License v1.0.1", "category": "Permissive", "owner": "Kyle Mitchell", "homepage_url": "https://github.com/creditstxt/code-credit-license/releases/tag/v1.0.1", "spdx_license_key": "LicenseRef-scancode-code-credit-license-1.0.1", "other_urls": ["https://github.com/otherjoel/amulet-mining/blob/main/LICENSE.md", "https://github.com/DoctorLaplace/Storm-Mind-Public/blob/main/LICENSE", "https://github.com/pedrohdjs/javascript-basico-para-programadores/blob/main/LICENSE"], "ignorable_urls": ["https://codecreditlicense.com/license/1.0.1", "https://creditstxt.com/"]} \ No newline at end of file +{ + "key": "code-credit-license-1.0.1", + "short_name": "Code Credit License v1.0.1", + "name": "Code Credit License v1.0.1", + "category": "Permissive", + "owner": "Kyle Mitchell", + "homepage_url": "https://github.com/creditstxt/code-credit-license/releases/tag/v1.0.1", + "spdx_license_key": "LicenseRef-scancode-code-credit-license-1.0.1", + "other_urls": [ + "https://github.com/otherjoel/amulet-mining/blob/main/LICENSE.md", + "https://github.com/DoctorLaplace/Storm-Mind-Public/blob/main/LICENSE", + "https://github.com/pedrohdjs/javascript-basico-para-programadores/blob/main/LICENSE" + ], + "ignorable_urls": [ + "https://codecreditlicense.com/license/1.0.1", + "https://creditstxt.com/" + ] +} \ No newline at end of file diff --git a/docs/codeguru-permissions.LICENSE b/docs/codeguru-permissions.LICENSE index 88bc16a489..1e5f4eeae2 100644 --- a/docs/codeguru-permissions.LICENSE +++ b/docs/codeguru-permissions.LICENSE @@ -1,3 +1,15 @@ +--- +key: codeguru-permissions +short_name: CodeGuru Permissions +name: CodeGuru Permissions +category: Permissive +owner: CodeGuru +homepage_url: http://www.codeguru.com/submission-guidelines.php#permission +spdx_license_key: LicenseRef-scancode-codeguru-permissions +text_urls: + - http://www.codeguru.com/submission-guidelines.php#permission +--- + Permissions As you know, this site is a valuable resource for the developer community. diff --git a/docs/codeguru-permissions.html b/docs/codeguru-permissions.html index a25afe5010..e1194aae49 100644 --- a/docs/codeguru-permissions.html +++ b/docs/codeguru-permissions.html @@ -160,7 +160,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/codeguru-permissions.json b/docs/codeguru-permissions.json index 9d0a6413f8..b21203e5b2 100644 --- a/docs/codeguru-permissions.json +++ b/docs/codeguru-permissions.json @@ -1 +1,12 @@ -{"key": "codeguru-permissions", "short_name": "CodeGuru Permissions", "name": "CodeGuru Permissions", "category": "Permissive", "owner": "CodeGuru", "homepage_url": "http://www.codeguru.com/submission-guidelines.php#permission", "spdx_license_key": "LicenseRef-scancode-codeguru-permissions", "text_urls": ["http://www.codeguru.com/submission-guidelines.php#permission"]} \ No newline at end of file +{ + "key": "codeguru-permissions", + "short_name": "CodeGuru Permissions", + "name": "CodeGuru Permissions", + "category": "Permissive", + "owner": "CodeGuru", + "homepage_url": "http://www.codeguru.com/submission-guidelines.php#permission", + "spdx_license_key": "LicenseRef-scancode-codeguru-permissions", + "text_urls": [ + "http://www.codeguru.com/submission-guidelines.php#permission" + ] +} \ No newline at end of file diff --git a/docs/codesourcery-2004.LICENSE b/docs/codesourcery-2004.LICENSE index 0b1ba47e36..bb1856f670 100644 --- a/docs/codesourcery-2004.LICENSE +++ b/docs/codesourcery-2004.LICENSE @@ -1,3 +1,13 @@ +--- +key: codesourcery-2004 +short_name: CodeSourcery 2004 +name: CodeSourcery 2004 +category: Permissive +owner: CodeSourcery +homepage_url: https://git.linaro.org/toolchain/newlib.git/tree/newlib/libc/misc/init.c +spdx_license_key: LicenseRef-scancode-codesourcery-2004 +--- + Permission to use, copy, modify, and distribute this file for any purpose is hereby granted without fee, provided that the above copyright notice and this notice appears in all diff --git a/docs/codesourcery-2004.html b/docs/codesourcery-2004.html index 2c999df11e..5b1bced595 100644 --- a/docs/codesourcery-2004.html +++ b/docs/codesourcery-2004.html @@ -133,7 +133,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/codesourcery-2004.json b/docs/codesourcery-2004.json index 26d3d78c7d..e8db408da3 100644 --- a/docs/codesourcery-2004.json +++ b/docs/codesourcery-2004.json @@ -1 +1,9 @@ -{"key": "codesourcery-2004", "short_name": "CodeSourcery 2004", "name": "CodeSourcery 2004", "category": "Permissive", "owner": "CodeSourcery", "homepage_url": "https://git.linaro.org/toolchain/newlib.git/tree/newlib/libc/misc/init.c", "spdx_license_key": "LicenseRef-scancode-codesourcery-2004"} \ No newline at end of file +{ + "key": "codesourcery-2004", + "short_name": "CodeSourcery 2004", + "name": "CodeSourcery 2004", + "category": "Permissive", + "owner": "CodeSourcery", + "homepage_url": "https://git.linaro.org/toolchain/newlib.git/tree/newlib/libc/misc/init.c", + "spdx_license_key": "LicenseRef-scancode-codesourcery-2004" +} \ No newline at end of file diff --git a/docs/codexia.LICENSE b/docs/codexia.LICENSE index 60376c060f..77c809bb04 100644 --- a/docs/codexia.LICENSE +++ b/docs/codexia.LICENSE @@ -1,3 +1,22 @@ +--- +key: codexia +short_name: Codexia License +name: Codexia License +category: Proprietary Free +owner: Codexia +spdx_license_key: LicenseRef-scancode-codexia +ignorable_copyrights: + - Mike Ryan (mike@codexia.com) Copyright (c) 2000 + - portions (c) Allen Denver +ignorable_holders: + - Allen Denver + - Mike Ryan +ignorable_urls: + - http://www.codexia.com/ +ignorable_emails: + - mike@codexia.com +--- + By Mike Ryan (mike@codexia.com) Copyright (c) 2000, portions (c) Allen Denver 07.30.2000 @@ -17,4 +36,4 @@ Visual C++ 6.0 Libraries / DLLs: pdh.lib (linked in) -pdh.dll (provided with Windows 2000, must copy in for NT 4.0) +pdh.dll (provided with Windows 2000, must copy in for NT 4.0) \ No newline at end of file diff --git a/docs/codexia.html b/docs/codexia.html index 105875aada..106153e26b 100644 --- a/docs/codexia.html +++ b/docs/codexia.html @@ -163,8 +163,7 @@ Libraries / DLLs: pdh.lib (linked in) -pdh.dll (provided with Windows 2000, must copy in for NT 4.0) - +pdh.dll (provided with Windows 2000, must copy in for NT 4.0)
@@ -176,7 +175,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/codexia.json b/docs/codexia.json index 55391f8911..e60f5b9a56 100644 --- a/docs/codexia.json +++ b/docs/codexia.json @@ -1 +1,22 @@ -{"key": "codexia", "short_name": "Codexia License", "name": "Codexia License", "category": "Proprietary Free", "owner": "Codexia", "spdx_license_key": "LicenseRef-scancode-codexia", "ignorable_copyrights": ["Mike Ryan (mike@codexia.com) Copyright (c) 2000", "portions (c) Allen Denver"], "ignorable_holders": ["Allen Denver", "Mike Ryan"], "ignorable_urls": ["http://www.codexia.com/"], "ignorable_emails": ["mike@codexia.com"]} \ No newline at end of file +{ + "key": "codexia", + "short_name": "Codexia License", + "name": "Codexia License", + "category": "Proprietary Free", + "owner": "Codexia", + "spdx_license_key": "LicenseRef-scancode-codexia", + "ignorable_copyrights": [ + "Mike Ryan (mike@codexia.com) Copyright (c) 2000", + "portions (c) Allen Denver" + ], + "ignorable_holders": [ + "Allen Denver", + "Mike Ryan" + ], + "ignorable_urls": [ + "http://www.codexia.com/" + ], + "ignorable_emails": [ + "mike@codexia.com" + ] +} \ No newline at end of file diff --git a/docs/cognitive-web-osl-1.1.LICENSE b/docs/cognitive-web-osl-1.1.LICENSE index 69f1be90fe..5130c2d47c 100644 --- a/docs/cognitive-web-osl-1.1.LICENSE +++ b/docs/cognitive-web-osl-1.1.LICENSE @@ -1,3 +1,25 @@ +--- +key: cognitive-web-osl-1.1 +short_name: CognitiveWeb Open Source License 1.1 +name: CognitiveWeb Open Source License 1.1 +category: Copyleft Limited +owner: CognitiveWeb Project +homepage_url: http://www.cognitiveweb.org/legal/license/ +notes: derived from the Jabber Open Source License +spdx_license_key: LicenseRef-scancode-cognitive-web-osl-1.1 +text_urls: + - http://www.cognitiveweb.org/legal/license/CognitiveWebOpenSourceLicense-1.1.txt +ignorable_copyrights: + - Copyright (c) 2003-2003 CognitiveWeb + - Portions Copyright (c) 2002-2003 Bryan Thompson +ignorable_holders: + - Bryan Thompson + - CognitiveWeb +ignorable_urls: + - http://www.cognitiveweb.org/ + - http://www.cognitiveweb.org/legal/license +--- + CognitiveWeb Open Source License Version 1.1 @@ -465,4 +487,4 @@ which this License was derived. This License contains terms that differ from JOSL. Special thanks to the CognitiveWeb Open Source Contributors for their suggestions and support of the Cognitive Web. -Modifications: +Modifications: \ No newline at end of file diff --git a/docs/cognitive-web-osl-1.1.html b/docs/cognitive-web-osl-1.1.html index f0c577611c..d71875bbd3 100644 --- a/docs/cognitive-web-osl-1.1.html +++ b/docs/cognitive-web-osl-1.1.html @@ -625,8 +625,7 @@ from JOSL. Special thanks to the CognitiveWeb Open Source Contributors for their suggestions and support of the Cognitive Web. -Modifications: - +Modifications:
@@ -638,7 +637,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cognitive-web-osl-1.1.json b/docs/cognitive-web-osl-1.1.json index 7111b879f6..caa0de3561 100644 --- a/docs/cognitive-web-osl-1.1.json +++ b/docs/cognitive-web-osl-1.1.json @@ -1 +1,25 @@ -{"key": "cognitive-web-osl-1.1", "short_name": "CognitiveWeb Open Source License 1.1", "name": "CognitiveWeb Open Source License 1.1", "category": "Copyleft Limited", "owner": "CognitiveWeb Project", "homepage_url": "http://www.cognitiveweb.org/legal/license/", "notes": "derived from the Jabber Open Source License", "spdx_license_key": "LicenseRef-scancode-cognitive-web-osl-1.1", "text_urls": ["http://www.cognitiveweb.org/legal/license/CognitiveWebOpenSourceLicense-1.1.txt"], "ignorable_copyrights": ["Copyright (c) 2003-2003 CognitiveWeb", "Portions Copyright (c) 2002-2003 Bryan Thompson"], "ignorable_holders": ["Bryan Thompson", "CognitiveWeb"], "ignorable_urls": ["http://www.cognitiveweb.org/", "http://www.cognitiveweb.org/legal/license"]} \ No newline at end of file +{ + "key": "cognitive-web-osl-1.1", + "short_name": "CognitiveWeb Open Source License 1.1", + "name": "CognitiveWeb Open Source License 1.1", + "category": "Copyleft Limited", + "owner": "CognitiveWeb Project", + "homepage_url": "http://www.cognitiveweb.org/legal/license/", + "notes": "derived from the Jabber Open Source License", + "spdx_license_key": "LicenseRef-scancode-cognitive-web-osl-1.1", + "text_urls": [ + "http://www.cognitiveweb.org/legal/license/CognitiveWebOpenSourceLicense-1.1.txt" + ], + "ignorable_copyrights": [ + "Copyright (c) 2003-2003 CognitiveWeb", + "Portions Copyright (c) 2002-2003 Bryan Thompson" + ], + "ignorable_holders": [ + "Bryan Thompson", + "CognitiveWeb" + ], + "ignorable_urls": [ + "http://www.cognitiveweb.org/", + "http://www.cognitiveweb.org/legal/license" + ] +} \ No newline at end of file diff --git a/docs/coil-1.0.LICENSE b/docs/coil-1.0.LICENSE index cab9e5ceb4..befeaadef0 100644 --- a/docs/coil-1.0.LICENSE +++ b/docs/coil-1.0.LICENSE @@ -1,3 +1,18 @@ +--- +key: coil-1.0 +short_name: COIL-1.0 +name: Copyfree Open Innovation License 1.0 +category: Permissive +owner: coil.apotheon.org +homepage_url: https://coil.apotheon.org/about/ +spdx_license_key: COIL-1.0 +text_urls: + - https://coil.apotheon.org/plaintext/01.0.txt +faq_url: https://coil.apotheon.org/notice/ +other_urls: + - https://github.com/spdx/license-list-XML/blob/12ac54f8ddead3f590c6877eef6650873c6de6fc/test/simpleTestForGenerator/COIL-1.0.txt +--- + # Copyfree Open Innovation License This is version 1.0 of the Copyfree Open Innovation License. diff --git a/docs/coil-1.0.html b/docs/coil-1.0.html index 509426bb49..70f033a78a 100644 --- a/docs/coil-1.0.html +++ b/docs/coil-1.0.html @@ -181,7 +181,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/coil-1.0.json b/docs/coil-1.0.json index 99229bce22..3715333cb6 100644 --- a/docs/coil-1.0.json +++ b/docs/coil-1.0.json @@ -1 +1,16 @@ -{"key": "coil-1.0", "short_name": "COIL-1.0", "name": "Copyfree Open Innovation License 1.0", "category": "Permissive", "owner": "coil.apotheon.org", "homepage_url": "https://coil.apotheon.org/about/", "spdx_license_key": "COIL-1.0", "text_urls": ["https://coil.apotheon.org/plaintext/01.0.txt"], "faq_url": "https://coil.apotheon.org/notice/", "other_urls": ["https://github.com/spdx/license-list-XML/blob/12ac54f8ddead3f590c6877eef6650873c6de6fc/test/simpleTestForGenerator/COIL-1.0.txt"]} \ No newline at end of file +{ + "key": "coil-1.0", + "short_name": "COIL-1.0", + "name": "Copyfree Open Innovation License 1.0", + "category": "Permissive", + "owner": "coil.apotheon.org", + "homepage_url": "https://coil.apotheon.org/about/", + "spdx_license_key": "COIL-1.0", + "text_urls": [ + "https://coil.apotheon.org/plaintext/01.0.txt" + ], + "faq_url": "https://coil.apotheon.org/notice/", + "other_urls": [ + "https://github.com/spdx/license-list-XML/blob/12ac54f8ddead3f590c6877eef6650873c6de6fc/test/simpleTestForGenerator/COIL-1.0.txt" + ] +} \ No newline at end of file diff --git a/docs/colt.LICENSE b/docs/colt.LICENSE index 3e04738a62..0a835a858b 100644 --- a/docs/colt.LICENSE +++ b/docs/colt.LICENSE @@ -1,3 +1,25 @@ +--- +key: colt +short_name: Colt License Agreement +name: Colt License Agreement +category: Free Restricted +owner: CERN +homepage_url: http://acs.lbl.gov/software/colt/license.html +spdx_license_key: LicenseRef-scancode-colt +text_urls: + - http://acs.lbl.gov/software/colt/license.html +minimum_coverage: 85 +ignorable_copyrights: + - Copyright (c) 1999 CERN - European Organization for Nuclear Research +ignorable_holders: + - CERN - European Organization for Nuclear Research +ignorable_authors: + - Pavel Binko, Dino Ferrero Merlino, Wolfgang Hoschek, Tony Johnson, Andreas Pfeiffer, and + others. Check the FreeHEP +ignorable_urls: + - http://acs.lbl.gov/software/colt/license.html +--- + Colt License Agreement http://acs.lbl.gov/software/colt/license.html diff --git a/docs/colt.html b/docs/colt.html index cdeb1630ae..c2024bcd32 100644 --- a/docs/colt.html +++ b/docs/colt.html @@ -199,7 +199,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/colt.json b/docs/colt.json index 3d5ebd1c5f..cb3c052fff 100644 --- a/docs/colt.json +++ b/docs/colt.json @@ -1 +1,25 @@ -{"key": "colt", "short_name": "Colt License Agreement", "name": "Colt License Agreement", "category": "Free Restricted", "owner": "CERN", "homepage_url": "http://acs.lbl.gov/software/colt/license.html", "spdx_license_key": "LicenseRef-scancode-colt", "text_urls": ["http://acs.lbl.gov/software/colt/license.html"], "minimum_coverage": 85, "ignorable_copyrights": ["Copyright (c) 1999 CERN - European Organization for Nuclear Research"], "ignorable_holders": ["CERN - European Organization for Nuclear Research"], "ignorable_authors": ["Pavel Binko, Dino Ferrero Merlino, Wolfgang Hoschek, Tony Johnson, Andreas Pfeiffer, and others. Check the FreeHEP"], "ignorable_urls": ["http://acs.lbl.gov/software/colt/license.html"]} \ No newline at end of file +{ + "key": "colt", + "short_name": "Colt License Agreement", + "name": "Colt License Agreement", + "category": "Free Restricted", + "owner": "CERN", + "homepage_url": "http://acs.lbl.gov/software/colt/license.html", + "spdx_license_key": "LicenseRef-scancode-colt", + "text_urls": [ + "http://acs.lbl.gov/software/colt/license.html" + ], + "minimum_coverage": 85, + "ignorable_copyrights": [ + "Copyright (c) 1999 CERN - European Organization for Nuclear Research" + ], + "ignorable_holders": [ + "CERN - European Organization for Nuclear Research" + ], + "ignorable_authors": [ + "Pavel Binko, Dino Ferrero Merlino, Wolfgang Hoschek, Tony Johnson, Andreas Pfeiffer, and others. Check the FreeHEP" + ], + "ignorable_urls": [ + "http://acs.lbl.gov/software/colt/license.html" + ] +} \ No newline at end of file diff --git a/docs/com-oreilly-servlet.LICENSE b/docs/com-oreilly-servlet.LICENSE index c5ef2779ac..b0ac196270 100644 --- a/docs/com-oreilly-servlet.LICENSE +++ b/docs/com-oreilly-servlet.LICENSE @@ -1,3 +1,20 @@ +--- +key: com-oreilly-servlet +short_name: com.oreilly.servlet License +name: com.oreilly.servlet License +category: Commercial +owner: Servlets.com +homepage_url: http://www.servlets.com/cos/license.html +spdx_license_key: LicenseRef-scancode-com-oreilly-servlet +ignorable_copyrights: + - Copyright (c) 2001-2009 by Jason Hunter, jhunter_AT_servlets.com +ignorable_holders: + - Jason Hunter, jhunter_AT_servlets.com +ignorable_urls: + - http://www.amazon.com/exec/obidos/ASIN/0596000405/jasonhunter + - http://www.servlets.com/ +--- + Copyright (C) 2001-2009 by Jason Hunter, jhunter_AT_servlets.com. All rights reserved. diff --git a/docs/com-oreilly-servlet.html b/docs/com-oreilly-servlet.html index 82365703fe..e808a66ed8 100644 --- a/docs/com-oreilly-servlet.html +++ b/docs/com-oreilly-servlet.html @@ -229,7 +229,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/com-oreilly-servlet.json b/docs/com-oreilly-servlet.json index 6cf78b666c..3a6633e17c 100644 --- a/docs/com-oreilly-servlet.json +++ b/docs/com-oreilly-servlet.json @@ -1 +1,19 @@ -{"key": "com-oreilly-servlet", "short_name": "com.oreilly.servlet License", "name": "com.oreilly.servlet License", "category": "Commercial", "owner": "Servlets.com", "homepage_url": "http://www.servlets.com/cos/license.html", "spdx_license_key": "LicenseRef-scancode-com-oreilly-servlet", "ignorable_copyrights": ["Copyright (c) 2001-2009 by Jason Hunter, jhunter_AT_servlets.com"], "ignorable_holders": ["Jason Hunter, jhunter_AT_servlets.com"], "ignorable_urls": ["http://www.amazon.com/exec/obidos/ASIN/0596000405/jasonhunter", "http://www.servlets.com/"]} \ No newline at end of file +{ + "key": "com-oreilly-servlet", + "short_name": "com.oreilly.servlet License", + "name": "com.oreilly.servlet License", + "category": "Commercial", + "owner": "Servlets.com", + "homepage_url": "http://www.servlets.com/cos/license.html", + "spdx_license_key": "LicenseRef-scancode-com-oreilly-servlet", + "ignorable_copyrights": [ + "Copyright (c) 2001-2009 by Jason Hunter, jhunter_AT_servlets.com" + ], + "ignorable_holders": [ + "Jason Hunter, jhunter_AT_servlets.com" + ], + "ignorable_urls": [ + "http://www.amazon.com/exec/obidos/ASIN/0596000405/jasonhunter", + "http://www.servlets.com/" + ] +} \ No newline at end of file diff --git a/docs/commercial-license.LICENSE b/docs/commercial-license.LICENSE index c32e6aa3f6..7e6f2edba4 100644 --- a/docs/commercial-license.LICENSE +++ b/docs/commercial-license.LICENSE @@ -1 +1,12 @@ +--- +key: commercial-license +short_name: Commercial License +name: Commercial License +category: Commercial +owner: Unspecified +notes: this is a generic commercial license +is_generic: yes +spdx_license_key: LicenseRef-scancode-commercial-license +--- + This component is licensed under a commercial contract from the supplier. \ No newline at end of file diff --git a/docs/commercial-license.html b/docs/commercial-license.html index 0091c06792..b110592b35 100644 --- a/docs/commercial-license.html +++ b/docs/commercial-license.html @@ -134,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/commercial-license.json b/docs/commercial-license.json index eb6dd51086..09e3159a3b 100644 --- a/docs/commercial-license.json +++ b/docs/commercial-license.json @@ -1 +1,10 @@ -{"key": "commercial-license", "short_name": "Commercial License", "name": "Commercial License", "category": "Commercial", "owner": "Unspecified", "notes": "this is a generic commercial license", "is_generic": true, "spdx_license_key": "LicenseRef-scancode-commercial-license"} \ No newline at end of file +{ + "key": "commercial-license", + "short_name": "Commercial License", + "name": "Commercial License", + "category": "Commercial", + "owner": "Unspecified", + "notes": "this is a generic commercial license", + "is_generic": true, + "spdx_license_key": "LicenseRef-scancode-commercial-license" +} \ No newline at end of file diff --git a/docs/commercial-option.LICENSE b/docs/commercial-option.LICENSE index 596afa62b9..ce894391aa 100644 --- a/docs/commercial-option.LICENSE +++ b/docs/commercial-option.LICENSE @@ -1 +1,12 @@ +--- +key: commercial-option +is_deprecated: yes +short_name: Commercial Option +name: Commercial Option +category: Commercial +owner: Unspecified +notes: replaced by commercial-license +is_generic: yes +--- + This component may be licensed under a commercial contract from the supplier. \ No newline at end of file diff --git a/docs/commercial-option.html b/docs/commercial-option.html index 0ef9b4e492..db849047be 100644 --- a/docs/commercial-option.html +++ b/docs/commercial-option.html @@ -134,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/commercial-option.json b/docs/commercial-option.json index afc4b15613..94a28a881c 100644 --- a/docs/commercial-option.json +++ b/docs/commercial-option.json @@ -1 +1,10 @@ -{"key": "commercial-option", "is_deprecated": true, "short_name": "Commercial Option", "name": "Commercial Option", "category": "Commercial", "owner": "Unspecified", "notes": "replaced by commercial-license", "is_generic": true} \ No newline at end of file +{ + "key": "commercial-option", + "is_deprecated": true, + "short_name": "Commercial Option", + "name": "Commercial Option", + "category": "Commercial", + "owner": "Unspecified", + "notes": "replaced by commercial-license", + "is_generic": true +} \ No newline at end of file diff --git a/docs/commonj-timer.LICENSE b/docs/commonj-timer.LICENSE index 3490766564..8fa9b107f6 100644 --- a/docs/commonj-timer.LICENSE +++ b/docs/commonj-timer.LICENSE @@ -1,3 +1,20 @@ +--- +key: commonj-timer +short_name: CommonJ Timer License +name: CommonJ Timer and Work Manager License +category: Permissive +owner: Oracle Corporation +homepage_url: http://ebr.springsource.com/repository/app/bundle/version/detail?name=com.springsource.commonj&version=1.1.0 +spdx_license_key: LicenseRef-scancode-commonj-timer +faq_url: http://docs.oracle.com/cd/E13222_01/wls/docs100/commonj/commonj.html +other_urls: + - http://docs.oracle.com/cd/E13222_01/wls/docs100/commonj/commonj.html +ignorable_urls: + - http://dev2dev.bea.com/technologies/commonj/index.jsp + - http://dev2dev.bea.com/wlplatform/commonj/twm.html + - http://www.ibm.com/developerworks/library/j-commonj-sdowmt/ +--- + CommonJ Timer and Work Manager License General information: http://dev2dev.bea.com/wlplatform/commonj/twm.html diff --git a/docs/commonj-timer.html b/docs/commonj-timer.html index 016ada09ab..968980ce9b 100644 --- a/docs/commonj-timer.html +++ b/docs/commonj-timer.html @@ -191,7 +191,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/commonj-timer.json b/docs/commonj-timer.json index a2c080175b..8174125d5a 100644 --- a/docs/commonj-timer.json +++ b/docs/commonj-timer.json @@ -1 +1,18 @@ -{"key": "commonj-timer", "short_name": "CommonJ Timer License", "name": "CommonJ Timer and Work Manager License", "category": "Permissive", "owner": "Oracle Corporation", "homepage_url": "http://ebr.springsource.com/repository/app/bundle/version/detail?name=com.springsource.commonj&version=1.1.0", "spdx_license_key": "LicenseRef-scancode-commonj-timer", "faq_url": "http://docs.oracle.com/cd/E13222_01/wls/docs100/commonj/commonj.html", "other_urls": ["http://docs.oracle.com/cd/E13222_01/wls/docs100/commonj/commonj.html"], "ignorable_urls": ["http://dev2dev.bea.com/technologies/commonj/index.jsp", "http://dev2dev.bea.com/wlplatform/commonj/twm.html", "http://www.ibm.com/developerworks/library/j-commonj-sdowmt/"]} \ No newline at end of file +{ + "key": "commonj-timer", + "short_name": "CommonJ Timer License", + "name": "CommonJ Timer and Work Manager License", + "category": "Permissive", + "owner": "Oracle Corporation", + "homepage_url": "http://ebr.springsource.com/repository/app/bundle/version/detail?name=com.springsource.commonj&version=1.1.0", + "spdx_license_key": "LicenseRef-scancode-commonj-timer", + "faq_url": "http://docs.oracle.com/cd/E13222_01/wls/docs100/commonj/commonj.html", + "other_urls": [ + "http://docs.oracle.com/cd/E13222_01/wls/docs100/commonj/commonj.html" + ], + "ignorable_urls": [ + "http://dev2dev.bea.com/technologies/commonj/index.jsp", + "http://dev2dev.bea.com/wlplatform/commonj/twm.html", + "http://www.ibm.com/developerworks/library/j-commonj-sdowmt/" + ] +} \ No newline at end of file diff --git a/docs/commons-clause.LICENSE b/docs/commons-clause.LICENSE index cda3094e2f..ad7f92e4ed 100644 --- a/docs/commons-clause.LICENSE +++ b/docs/commons-clause.LICENSE @@ -1,3 +1,24 @@ +--- +key: commons-clause +short_name: Commons Clause +name: Commons Clause License Condition v1.0 +category: Source-available +owner: FOSSA +homepage_url: https://commonsclause.com/ +notes: This extra condition restricts selling and commercial usage. The Commons Clause is a + License Condition drafted by Heather Meeker and contributed by FOSSA. +is_exception: yes +spdx_license_key: LicenseRef-scancode-commons-clause +text_urls: + - https://commonsclause.com/ +faq_url: https://commonsclause.com/#faq +other_urls: + - https://github.com/fossas/commons-clause + - https://github.com/neo4j/neo4j/blob/3.5/packaging/LICENSE.txt + - https://leveljournal.com/source-available-licensing + - https://redislabs.com/community/licences/ +--- + "Commons Clause" License Condition v1.0 The Software is provided to you by the Licensor under the License, as defined below, subject to the following condition. diff --git a/docs/commons-clause.html b/docs/commons-clause.html index 59fa997cc9..1626df42bb 100644 --- a/docs/commons-clause.html +++ b/docs/commons-clause.html @@ -178,7 +178,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/commons-clause.json b/docs/commons-clause.json index 6071b2ecb0..5620e849bc 100644 --- a/docs/commons-clause.json +++ b/docs/commons-clause.json @@ -1 +1,21 @@ -{"key": "commons-clause", "short_name": "Commons Clause", "name": "Commons Clause License Condition v1.0", "category": "Source-available", "owner": "FOSSA", "homepage_url": "https://commonsclause.com/", "notes": "This extra condition restricts selling and commercial usage. The Commons Clause is a License Condition drafted by Heather Meeker and contributed by FOSSA.", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-commons-clause", "text_urls": ["https://commonsclause.com/"], "faq_url": "https://commonsclause.com/#faq", "other_urls": ["https://github.com/fossas/commons-clause", "https://github.com/neo4j/neo4j/blob/3.5/packaging/LICENSE.txt", "https://leveljournal.com/source-available-licensing", "https://redislabs.com/community/licences/"]} \ No newline at end of file +{ + "key": "commons-clause", + "short_name": "Commons Clause", + "name": "Commons Clause License Condition v1.0", + "category": "Source-available", + "owner": "FOSSA", + "homepage_url": "https://commonsclause.com/", + "notes": "This extra condition restricts selling and commercial usage. The Commons Clause is a License Condition drafted by Heather Meeker and contributed by FOSSA.", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-commons-clause", + "text_urls": [ + "https://commonsclause.com/" + ], + "faq_url": "https://commonsclause.com/#faq", + "other_urls": [ + "https://github.com/fossas/commons-clause", + "https://github.com/neo4j/neo4j/blob/3.5/packaging/LICENSE.txt", + "https://leveljournal.com/source-available-licensing", + "https://redislabs.com/community/licences/" + ] +} \ No newline at end of file diff --git a/docs/compass.LICENSE b/docs/compass.LICENSE index 746c206700..c458790423 100644 --- a/docs/compass.LICENSE +++ b/docs/compass.LICENSE @@ -1,3 +1,13 @@ +--- +key: compass +short_name: Compass License +name: Compass License +category: Permissive +owner: Christopher M. Eppstein +spdx_license_key: LicenseRef-scancode-compass +minimum_coverage: 85 +--- + 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 diff --git a/docs/compass.html b/docs/compass.html index 54feec0c05..0eb57f45ce 100644 --- a/docs/compass.html +++ b/docs/compass.html @@ -151,7 +151,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/compass.json b/docs/compass.json index 0eaadb32ea..d6d20b5b25 100644 --- a/docs/compass.json +++ b/docs/compass.json @@ -1 +1,9 @@ -{"key": "compass", "short_name": "Compass License", "name": "Compass License", "category": "Permissive", "owner": "Christopher M. Eppstein", "spdx_license_key": "LicenseRef-scancode-compass", "minimum_coverage": 85} \ No newline at end of file +{ + "key": "compass", + "short_name": "Compass License", + "name": "Compass License", + "category": "Permissive", + "owner": "Christopher M. Eppstein", + "spdx_license_key": "LicenseRef-scancode-compass", + "minimum_coverage": 85 +} \ No newline at end of file diff --git a/docs/componentace-jcraft.LICENSE b/docs/componentace-jcraft.LICENSE index abe9b13d1e..c2ca068127 100644 --- a/docs/componentace-jcraft.LICENSE +++ b/docs/componentace-jcraft.LICENSE @@ -1,3 +1,25 @@ +--- +key: componentace-jcraft +short_name: ComponentAce JCraft License +name: ComponentAce JCraft License +category: Permissive +owner: ComponentAce +notes: composite license_expression bsd-new and bsd-new and zlib +spdx_license_key: LicenseRef-scancode-componentace-jcraft +minimum_coverage: 85 +ignorable_copyrights: + - Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. + - Copyright (c) 2006, ComponentAce http://www.componentace.com +ignorable_holders: + - ComponentAce + - ymnk, JCraft,Inc. +ignorable_urls: + - http://www.componentace.com/ +ignorable_emails: + - jloup@gzip.org + - madler@alumni.caltech.edu +--- + Copyright (c) 2006, ComponentAce http://www.componentace.com All rights reserved. Redistribution and use in source and binary forms, with or without modification, @@ -54,4 +76,4 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. This program is based on zlib-1.1.3, so all credit should go authors Jean-loup Gailly(jloup@gzip.org) and Mark -Adler(madler@alumni.caltech.edu) and contributors of zlib. +Adler(madler@alumni.caltech.edu) and contributors of zlib. \ No newline at end of file diff --git a/docs/componentace-jcraft.html b/docs/componentace-jcraft.html index 44f523b4d3..cd2ceede9d 100644 --- a/docs/componentace-jcraft.html +++ b/docs/componentace-jcraft.html @@ -214,8 +214,7 @@ This program is based on zlib-1.1.3, so all credit should go authors Jean-loup Gailly(jloup@gzip.org) and Mark -Adler(madler@alumni.caltech.edu) and contributors of zlib. - +Adler(madler@alumni.caltech.edu) and contributors of zlib.
@@ -227,7 +226,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/componentace-jcraft.json b/docs/componentace-jcraft.json index e7b1fcb255..a996b574f7 100644 --- a/docs/componentace-jcraft.json +++ b/docs/componentace-jcraft.json @@ -1 +1,25 @@ -{"key": "componentace-jcraft", "short_name": "ComponentAce JCraft License", "name": "ComponentAce JCraft License", "category": "Permissive", "owner": "ComponentAce", "notes": "composite license_expression bsd-new and bsd-new and zlib", "spdx_license_key": "LicenseRef-scancode-componentace-jcraft", "minimum_coverage": 85, "ignorable_copyrights": ["Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc.", "Copyright (c) 2006, ComponentAce http://www.componentace.com"], "ignorable_holders": ["ComponentAce", "ymnk, JCraft,Inc."], "ignorable_urls": ["http://www.componentace.com/"], "ignorable_emails": ["jloup@gzip.org", "madler@alumni.caltech.edu"]} \ No newline at end of file +{ + "key": "componentace-jcraft", + "short_name": "ComponentAce JCraft License", + "name": "ComponentAce JCraft License", + "category": "Permissive", + "owner": "ComponentAce", + "notes": "composite license_expression bsd-new and bsd-new and zlib", + "spdx_license_key": "LicenseRef-scancode-componentace-jcraft", + "minimum_coverage": 85, + "ignorable_copyrights": [ + "Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc.", + "Copyright (c) 2006, ComponentAce http://www.componentace.com" + ], + "ignorable_holders": [ + "ComponentAce", + "ymnk, JCraft,Inc." + ], + "ignorable_urls": [ + "http://www.componentace.com/" + ], + "ignorable_emails": [ + "jloup@gzip.org", + "madler@alumni.caltech.edu" + ] +} \ No newline at end of file diff --git a/docs/compuphase-linking-exception.LICENSE b/docs/compuphase-linking-exception.LICENSE index 24f5675752..05c3adadc8 100644 --- a/docs/compuphase-linking-exception.LICENSE +++ b/docs/compuphase-linking-exception.LICENSE @@ -1,3 +1,33 @@ +--- +key: compuphase-linking-exception +short_name: compuphase Linking Exception to Apache 2.0 +name: compuphase Linking Exception to Apache 2.0 +category: Permissive +owner: compuphase +homepage_url: https://github.com/compuphase/minIni/blob/master/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-compuphase-linking-exception +standard_notice: | + 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. + EXCEPTION TO THE APACHE 2.0 LICENSE + As a special exception to the Apache License 2.0 (and referring to the + definitions in Section 1 of this license), you may link, statically or + dynamically, the "Work" to other modules to produce an executable file + containing portions of the "Work", and distribute that executable file + in "Object" form under the terms of your choice, without any of the + additional requirements listed in Section 4 of the Apache License 2.0. + This exception applies only to redistributions in "Object" form (not + "Source" form) and only if no modifications have been made to the "Work". +--- + EXCEPTION TO THE APACHE 2.0 LICENSE As a special exception to the Apache License 2.0 (and referring to the diff --git a/docs/compuphase-linking-exception.html b/docs/compuphase-linking-exception.html index 9855121164..64881f3c7b 100644 --- a/docs/compuphase-linking-exception.html +++ b/docs/compuphase-linking-exception.html @@ -168,7 +168,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/compuphase-linking-exception.json b/docs/compuphase-linking-exception.json index 1a1d2d4263..aa24b9645e 100644 --- a/docs/compuphase-linking-exception.json +++ b/docs/compuphase-linking-exception.json @@ -1 +1,11 @@ -{"key": "compuphase-linking-exception", "short_name": "compuphase Linking Exception to Apache 2.0", "name": "compuphase Linking Exception to Apache 2.0", "category": "Permissive", "owner": "compuphase", "homepage_url": "https://github.com/compuphase/minIni/blob/master/LICENSE", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-compuphase-linking-exception", "standard_notice": "Licensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\nhttp://www.apache.org/licenses/LICENSE-2.0\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\nEXCEPTION TO THE APACHE 2.0 LICENSE\nAs a special exception to the Apache License 2.0 (and referring to the\ndefinitions in Section 1 of this license), you may link, statically or\ndynamically, the \"Work\" to other modules to produce an executable file\ncontaining portions of the \"Work\", and distribute that executable file\nin \"Object\" form under the terms of your choice, without any of the\nadditional requirements listed in Section 4 of the Apache License 2.0.\nThis exception applies only to redistributions in \"Object\" form (not\n\"Source\" form) and only if no modifications have been made to the \"Work\".\n"} \ No newline at end of file +{ + "key": "compuphase-linking-exception", + "short_name": "compuphase Linking Exception to Apache 2.0", + "name": "compuphase Linking Exception to Apache 2.0", + "category": "Permissive", + "owner": "compuphase", + "homepage_url": "https://github.com/compuphase/minIni/blob/master/LICENSE", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-compuphase-linking-exception", + "standard_notice": "Licensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\nhttp://www.apache.org/licenses/LICENSE-2.0\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\nEXCEPTION TO THE APACHE 2.0 LICENSE\nAs a special exception to the Apache License 2.0 (and referring to the\ndefinitions in Section 1 of this license), you may link, statically or\ndynamically, the \"Work\" to other modules to produce an executable file\ncontaining portions of the \"Work\", and distribute that executable file\nin \"Object\" form under the terms of your choice, without any of the\nadditional requirements listed in Section 4 of the Apache License 2.0.\nThis exception applies only to redistributions in \"Object\" form (not\n\"Source\" form) and only if no modifications have been made to the \"Work\".\n" +} \ No newline at end of file diff --git a/docs/concursive-pl-1.0.LICENSE b/docs/concursive-pl-1.0.LICENSE index 6e795676f3..774de166a5 100644 --- a/docs/concursive-pl-1.0.LICENSE +++ b/docs/concursive-pl-1.0.LICENSE @@ -1,3 +1,12 @@ +--- +key: concursive-pl-1.0 +short_name: Concursive Public License 1.0 +name: Concursive Public License 1.0 +category: Proprietary Free +owner: Concursive +spdx_license_key: LicenseRef-scancode-concursive-pl-1.0 +--- + The Concursive Public License Version 1, April 2014 diff --git a/docs/concursive-pl-1.0.html b/docs/concursive-pl-1.0.html index 22d844180f..4cfa4d86cc 100644 --- a/docs/concursive-pl-1.0.html +++ b/docs/concursive-pl-1.0.html @@ -198,7 +198,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/concursive-pl-1.0.json b/docs/concursive-pl-1.0.json index 627debc5a0..c622b1d296 100644 --- a/docs/concursive-pl-1.0.json +++ b/docs/concursive-pl-1.0.json @@ -1 +1,8 @@ -{"key": "concursive-pl-1.0", "short_name": "Concursive Public License 1.0", "name": "Concursive Public License 1.0", "category": "Proprietary Free", "owner": "Concursive", "spdx_license_key": "LicenseRef-scancode-concursive-pl-1.0"} \ No newline at end of file +{ + "key": "concursive-pl-1.0", + "short_name": "Concursive Public License 1.0", + "name": "Concursive Public License 1.0", + "category": "Proprietary Free", + "owner": "Concursive", + "spdx_license_key": "LicenseRef-scancode-concursive-pl-1.0" +} \ No newline at end of file diff --git a/docs/condor-1.1.LICENSE b/docs/condor-1.1.LICENSE index 3177fadcb2..ddd5027a6d 100644 --- a/docs/condor-1.1.LICENSE +++ b/docs/condor-1.1.LICENSE @@ -1,3 +1,31 @@ +--- +key: condor-1.1 +short_name: Condor Public License 1.1 +name: Condor Public License 1.1 +category: Permissive +owner: Condor Project +homepage_url: http://www.cs.wisc.edu/condor/license.html +notes: Per SPDX.org, this license was released 30 October 2003 +spdx_license_key: Condor-1.1 +text_urls: + - http://www.cs.wisc.edu/condor/license.html +other_urls: + - http://research.cs.wisc.edu/condor/license.html#condor + - http://web.archive.org/web/20111123062036/http://research.cs.wisc.edu/condor/license.html#condor +ignorable_copyrights: + - Copyright 1990-2006 Condor Team, Computer Sciences Department, University of Wisconsin-Madison, + Madison, WI. +ignorable_holders: + - Condor Team, Computer Sciences Department, University of Wisconsin-Madison, Madison, WI. +ignorable_authors: + - the Condor Project, Condor Team, Computer Sciences Department, University of Wisconsin-Madison +ignorable_urls: + - http://www.condorproject.org/ +ignorable_emails: + - condor-admin@cs.wisc.edu + - miron@cs.wisc.edu +--- + CONDOR PUBLIC LICENSE Version 1.1, October 30, 2003 diff --git a/docs/condor-1.1.html b/docs/condor-1.1.html index f701736f26..5181bc72d3 100644 --- a/docs/condor-1.1.html +++ b/docs/condor-1.1.html @@ -315,7 +315,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/condor-1.1.json b/docs/condor-1.1.json index 1bbe9b3f5a..34ce7e974a 100644 --- a/docs/condor-1.1.json +++ b/docs/condor-1.1.json @@ -1 +1,33 @@ -{"key": "condor-1.1", "short_name": "Condor Public License 1.1", "name": "Condor Public License 1.1", "category": "Permissive", "owner": "Condor Project", "homepage_url": "http://www.cs.wisc.edu/condor/license.html", "notes": "Per SPDX.org, this license was released 30 October 2003", "spdx_license_key": "Condor-1.1", "text_urls": ["http://www.cs.wisc.edu/condor/license.html"], "other_urls": ["http://research.cs.wisc.edu/condor/license.html#condor", "http://web.archive.org/web/20111123062036/http://research.cs.wisc.edu/condor/license.html#condor"], "ignorable_copyrights": ["Copyright 1990-2006 Condor Team, Computer Sciences Department, University of Wisconsin-Madison, Madison, WI."], "ignorable_holders": ["Condor Team, Computer Sciences Department, University of Wisconsin-Madison, Madison, WI."], "ignorable_authors": ["the Condor Project, Condor Team, Computer Sciences Department, University of Wisconsin-Madison"], "ignorable_urls": ["http://www.condorproject.org/"], "ignorable_emails": ["condor-admin@cs.wisc.edu", "miron@cs.wisc.edu"]} \ No newline at end of file +{ + "key": "condor-1.1", + "short_name": "Condor Public License 1.1", + "name": "Condor Public License 1.1", + "category": "Permissive", + "owner": "Condor Project", + "homepage_url": "http://www.cs.wisc.edu/condor/license.html", + "notes": "Per SPDX.org, this license was released 30 October 2003", + "spdx_license_key": "Condor-1.1", + "text_urls": [ + "http://www.cs.wisc.edu/condor/license.html" + ], + "other_urls": [ + "http://research.cs.wisc.edu/condor/license.html#condor", + "http://web.archive.org/web/20111123062036/http://research.cs.wisc.edu/condor/license.html#condor" + ], + "ignorable_copyrights": [ + "Copyright 1990-2006 Condor Team, Computer Sciences Department, University of Wisconsin-Madison, Madison, WI." + ], + "ignorable_holders": [ + "Condor Team, Computer Sciences Department, University of Wisconsin-Madison, Madison, WI." + ], + "ignorable_authors": [ + "the Condor Project, Condor Team, Computer Sciences Department, University of Wisconsin-Madison" + ], + "ignorable_urls": [ + "http://www.condorproject.org/" + ], + "ignorable_emails": [ + "condor-admin@cs.wisc.edu", + "miron@cs.wisc.edu" + ] +} \ No newline at end of file diff --git a/docs/confluent-community-1.0.LICENSE b/docs/confluent-community-1.0.LICENSE index 4ad4975b0f..24fccf9eef 100644 --- a/docs/confluent-community-1.0.LICENSE +++ b/docs/confluent-community-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: confluent-community-1.0 +short_name: Confluent Community License 1.0 +name: Confluent Community License 1.0 +category: Source-available +owner: Confluent, Inc. +homepage_url: https://www.confluent.io/confluent-community-license +spdx_license_key: LicenseRef-scancode-confluent-community-1.0 +faq_url: https://www.confluent.io/confluent-community-license-faq +other_urls: + - https://www.confluent.io/blog/license-changes-confluent-platform + - https://www.confluent.io/blog/developers-guide-confluent-community-license +ignorable_urls: + - http://www.confluent.io/confluent-community-license +--- + Confluent Community License Version 1.0 This Confluent Community License Agreement Version 1.0 (the “Agreement”) sets forth the terms on which Confluent, Inc. (“Confluent”) makes available certain software made available by Confluent under this Agreement (the “Software”). BY INSTALLING, DOWNLOADING, ACCESSING, USING OR DISTRIBUTING ANY OF THE SOFTWARE, YOU AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO SUCH TERMS AND CONDITIONS, YOU MUST NOT USE THE SOFTWARE. IF YOU ARE RECEIVING THE SOFTWARE ON BEHALF OF A LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE THE ACTUAL AUTHORITY TO AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT ON BEHALF OF SUCH ENTITY. “Licensee” means you, an individual, or the entity on whose behalf you are receiving the Software. diff --git a/docs/confluent-community-1.0.html b/docs/confluent-community-1.0.html index 0ceb25fe7a..ce15e072c0 100644 --- a/docs/confluent-community-1.0.html +++ b/docs/confluent-community-1.0.html @@ -188,7 +188,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/confluent-community-1.0.json b/docs/confluent-community-1.0.json index acdf4d51cd..d6a3cc5e76 100644 --- a/docs/confluent-community-1.0.json +++ b/docs/confluent-community-1.0.json @@ -1 +1,17 @@ -{"key": "confluent-community-1.0", "short_name": "Confluent Community License 1.0", "name": "Confluent Community License 1.0", "category": "Source-available", "owner": "Confluent, Inc.", "homepage_url": "https://www.confluent.io/confluent-community-license", "spdx_license_key": "LicenseRef-scancode-confluent-community-1.0", "faq_url": "https://www.confluent.io/confluent-community-license-faq", "other_urls": ["https://www.confluent.io/blog/license-changes-confluent-platform", "https://www.confluent.io/blog/developers-guide-confluent-community-license"], "ignorable_urls": ["http://www.confluent.io/confluent-community-license"]} \ No newline at end of file +{ + "key": "confluent-community-1.0", + "short_name": "Confluent Community License 1.0", + "name": "Confluent Community License 1.0", + "category": "Source-available", + "owner": "Confluent, Inc.", + "homepage_url": "https://www.confluent.io/confluent-community-license", + "spdx_license_key": "LicenseRef-scancode-confluent-community-1.0", + "faq_url": "https://www.confluent.io/confluent-community-license-faq", + "other_urls": [ + "https://www.confluent.io/blog/license-changes-confluent-platform", + "https://www.confluent.io/blog/developers-guide-confluent-community-license" + ], + "ignorable_urls": [ + "http://www.confluent.io/confluent-community-license" + ] +} \ No newline at end of file diff --git a/docs/cooperative-non-violent-4.0.LICENSE b/docs/cooperative-non-violent-4.0.LICENSE index 46640ebb5e..a40d192b14 100644 --- a/docs/cooperative-non-violent-4.0.LICENSE +++ b/docs/cooperative-non-violent-4.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: cooperative-non-violent-4.0 +short_name: CNVPL 4.0 +name: Cooperative Non-Violent Public License v4 +category: Proprietary Free +owner: Thufie +homepage_url: https://thufie.lain.haus/NPL.html +spdx_license_key: LicenseRef-scancode-cooperative-non-violent-4.0 +ignorable_urls: + - https://thufie.lain.haus/NPL.html +--- + COOPERATIVE NON-VIOLENT PUBLIC LICENSE v4 Preamble diff --git a/docs/cooperative-non-violent-4.0.html b/docs/cooperative-non-violent-4.0.html index 9961a4814f..50f58409c8 100644 --- a/docs/cooperative-non-violent-4.0.html +++ b/docs/cooperative-non-violent-4.0.html @@ -640,7 +640,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cooperative-non-violent-4.0.json b/docs/cooperative-non-violent-4.0.json index abe0c58e89..744b97dff0 100644 --- a/docs/cooperative-non-violent-4.0.json +++ b/docs/cooperative-non-violent-4.0.json @@ -1 +1,12 @@ -{"key": "cooperative-non-violent-4.0", "short_name": "CNVPL 4.0", "name": "Cooperative Non-Violent Public License v4", "category": "Proprietary Free", "owner": "Thufie", "homepage_url": "https://thufie.lain.haus/NPL.html", "spdx_license_key": "LicenseRef-scancode-cooperative-non-violent-4.0", "ignorable_urls": ["https://thufie.lain.haus/NPL.html"]} \ No newline at end of file +{ + "key": "cooperative-non-violent-4.0", + "short_name": "CNVPL 4.0", + "name": "Cooperative Non-Violent Public License v4", + "category": "Proprietary Free", + "owner": "Thufie", + "homepage_url": "https://thufie.lain.haus/NPL.html", + "spdx_license_key": "LicenseRef-scancode-cooperative-non-violent-4.0", + "ignorable_urls": [ + "https://thufie.lain.haus/NPL.html" + ] +} \ No newline at end of file diff --git a/docs/copyheart.LICENSE b/docs/copyheart.LICENSE index ab3ead05fa..8b6e9fad46 100644 --- a/docs/copyheart.LICENSE +++ b/docs/copyheart.LICENSE @@ -1 +1,13 @@ -♡ Copying is an act of love. Please copy. +--- +key: copyheart +short_name: Copyheart +name: Copyheart +category: Public Domain +owner: Nina Paley +homepage_url: http://copyheart.org +spdx_license_key: LicenseRef-scancode-copyheart +text_urls: + - http://copyheart.org +--- + +♡ Copying is an act of love. Please copy. \ No newline at end of file diff --git a/docs/copyheart.html b/docs/copyheart.html index 3aa916598c..4dd2f12d9c 100644 --- a/docs/copyheart.html +++ b/docs/copyheart.html @@ -124,8 +124,7 @@
license_text
-
♡ Copying is an act of love. Please copy.
-
+
♡ Copying is an act of love. Please copy.
@@ -137,7 +136,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/copyheart.json b/docs/copyheart.json index 6192d1411f..389a5db388 100644 --- a/docs/copyheart.json +++ b/docs/copyheart.json @@ -1 +1,12 @@ -{"key": "copyheart", "short_name": "Copyheart", "name": "Copyheart", "category": "Public Domain", "owner": "Nina Paley", "homepage_url": "http://copyheart.org", "spdx_license_key": "LicenseRef-scancode-copyheart", "text_urls": ["http://copyheart.org"]} \ No newline at end of file +{ + "key": "copyheart", + "short_name": "Copyheart", + "name": "Copyheart", + "category": "Public Domain", + "owner": "Nina Paley", + "homepage_url": "http://copyheart.org", + "spdx_license_key": "LicenseRef-scancode-copyheart", + "text_urls": [ + "http://copyheart.org" + ] +} \ No newline at end of file diff --git a/docs/copyleft-next-0.3.0.LICENSE b/docs/copyleft-next-0.3.0.LICENSE index 1f1180b0a5..f40a86dfa5 100644 --- a/docs/copyleft-next-0.3.0.LICENSE +++ b/docs/copyleft-next-0.3.0.LICENSE @@ -1,3 +1,18 @@ +--- +key: copyleft-next-0.3.0 +short_name: copyleft-next 0.3.0 +name: copyleft-next 0.3.0 +category: Copyleft +owner: Richard Fontana +homepage_url: https://github.com/richardfontana/copyleft-next/blob/master/Releases/copyleft-next-0.3.0 +spdx_license_key: copyleft-next-0.3.0 +text_urls: + - https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.0 + - https://raw.githubusercontent.com/richardfontana/copyleft-next/master/Releases/copyleft-next-0.3.0 +ignorable_urls: + - https://gitorious.org/copyleft-next/ +--- + copyleft-next 0.3.0 ("this License") Release date: 2013-05-16 diff --git a/docs/copyleft-next-0.3.0.html b/docs/copyleft-next-0.3.0.html index d40670eec3..2da111252f 100644 --- a/docs/copyleft-next-0.3.0.html +++ b/docs/copyleft-next-0.3.0.html @@ -363,7 +363,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/copyleft-next-0.3.0.json b/docs/copyleft-next-0.3.0.json index 371e2179c7..8da62e00b9 100644 --- a/docs/copyleft-next-0.3.0.json +++ b/docs/copyleft-next-0.3.0.json @@ -1 +1,16 @@ -{"key": "copyleft-next-0.3.0", "short_name": "copyleft-next 0.3.0", "name": "copyleft-next 0.3.0", "category": "Copyleft", "owner": "Richard Fontana", "homepage_url": "https://github.com/richardfontana/copyleft-next/blob/master/Releases/copyleft-next-0.3.0", "spdx_license_key": "copyleft-next-0.3.0", "text_urls": ["https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.0", "https://raw.githubusercontent.com/richardfontana/copyleft-next/master/Releases/copyleft-next-0.3.0"], "ignorable_urls": ["https://gitorious.org/copyleft-next/"]} \ No newline at end of file +{ + "key": "copyleft-next-0.3.0", + "short_name": "copyleft-next 0.3.0", + "name": "copyleft-next 0.3.0", + "category": "Copyleft", + "owner": "Richard Fontana", + "homepage_url": "https://github.com/richardfontana/copyleft-next/blob/master/Releases/copyleft-next-0.3.0", + "spdx_license_key": "copyleft-next-0.3.0", + "text_urls": [ + "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.0", + "https://raw.githubusercontent.com/richardfontana/copyleft-next/master/Releases/copyleft-next-0.3.0" + ], + "ignorable_urls": [ + "https://gitorious.org/copyleft-next/" + ] +} \ No newline at end of file diff --git a/docs/copyleft-next-0.3.1.LICENSE b/docs/copyleft-next-0.3.1.LICENSE index 0e168e19a0..9355b87ad3 100644 --- a/docs/copyleft-next-0.3.1.LICENSE +++ b/docs/copyleft-next-0.3.1.LICENSE @@ -1,3 +1,17 @@ +--- +key: copyleft-next-0.3.1 +short_name: copyleft-next 0.3.1 +name: copyleft-next 0.3.1 +category: Copyleft +owner: Richard Fontana +homepage_url: https://github.com/richardfontana/copyleft-next/blob/master/Releases/copyleft-next-0.3.1 +spdx_license_key: copyleft-next-0.3.1 +other_urls: + - https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.1 +ignorable_urls: + - https://github.com/copyleft-next/copyleft-next.git/ +--- + copyleft-next 0.3.1 ("this License") Release date: 2016-04-29 diff --git a/docs/copyleft-next-0.3.1.html b/docs/copyleft-next-0.3.1.html index 78258bca71..01409fc44b 100644 --- a/docs/copyleft-next-0.3.1.html +++ b/docs/copyleft-next-0.3.1.html @@ -364,7 +364,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/copyleft-next-0.3.1.json b/docs/copyleft-next-0.3.1.json index 92e89a56ba..da21692b59 100644 --- a/docs/copyleft-next-0.3.1.json +++ b/docs/copyleft-next-0.3.1.json @@ -1 +1,15 @@ -{"key": "copyleft-next-0.3.1", "short_name": "copyleft-next 0.3.1", "name": "copyleft-next 0.3.1", "category": "Copyleft", "owner": "Richard Fontana", "homepage_url": "https://github.com/richardfontana/copyleft-next/blob/master/Releases/copyleft-next-0.3.1", "spdx_license_key": "copyleft-next-0.3.1", "other_urls": ["https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.1"], "ignorable_urls": ["https://github.com/copyleft-next/copyleft-next.git/"]} \ No newline at end of file +{ + "key": "copyleft-next-0.3.1", + "short_name": "copyleft-next 0.3.1", + "name": "copyleft-next 0.3.1", + "category": "Copyleft", + "owner": "Richard Fontana", + "homepage_url": "https://github.com/richardfontana/copyleft-next/blob/master/Releases/copyleft-next-0.3.1", + "spdx_license_key": "copyleft-next-0.3.1", + "other_urls": [ + "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.1" + ], + "ignorable_urls": [ + "https://github.com/copyleft-next/copyleft-next.git/" + ] +} \ No newline at end of file diff --git a/docs/corporate-accountability-1.1.LICENSE b/docs/corporate-accountability-1.1.LICENSE index be4f1e9539..b98e6c2a8f 100644 --- a/docs/corporate-accountability-1.1.LICENSE +++ b/docs/corporate-accountability-1.1.LICENSE @@ -1,3 +1,15 @@ +--- +key: corporate-accountability-1.1 +short_name: CAL Software +name: Corporate Accountability Lab Software +category: Proprietary Free +owner: Corporate Accountability Lab +homepage_url: https://legaldesign.org/cal-software-license +spdx_license_key: LicenseRef-scancode-corporate-accountability-1.1 +ignorable_urls: + - https://www.legaldesign.org/cal-software-license +--- + The +CAL Software License Agreement Legal Notice This Software is available without charge but subject to compliance obligations; you can redistribute and/or modify this Software under the terms of the +CAL Software License Agreement (the "Agreement"), as published by the Corporate Accountability Lab NFP ("CAL"), available here: https://www.legaldesign.org/cal-software-license. CAL is a 501(c)(3) non-profit organization based in Chicago, IL that designs legal solutions to protect people and the environment from corporate abuse. Through this Agreement, CAL seeks to empower producers of intellectual property to keep their intellectual property out of unethical supply chains and to support ethical and sustainable commercial use of intellectual property. @@ -59,4 +71,4 @@ Section 6. Third-Party Beneficiaries. Section 7. Interpretation. For purposes of this Agreement, (a) the words "include," "includes," and "including" are deemed to be followed by the words "without limitation"; (b) the word "or" is not exclusive; and (c) the words "herein," "hereof," "hereby," and "hereunder" refer to this Agreement as a whole. "Conditions" is to be read as both condition and covenant, actionable under both contract and copyright law to the extent permissible by law. Unless the context otherwise requires, references herein to a statute, regulation, treaty, guideline, and similar instruments means such statute, regulation, treaty, guideline, and similar instrument as amended from time to time and includes any successor thereto and any regulations promulgated thereunder. This Agreement shall be construed without regard to any presumption or rule requiring construction or interpretation against the party drafting an instrument or causing any instrument to be drafted. -Section 8. Severability. To the extent possible, if any provision of this Agreement is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable; if the provision cannot be reformed, it shall be severed from this Agreement without affecting the enforceability of the remaining terms and conditions, and any such prohibition or unenforceability in any jurisdiction shall not invalidate or render unenforceable such provision in any other jurisdiction. Nothing in this Agreement constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or Licensee, including from the legal processes of any jurisdiction or authority to the extent such privileges and immunities may not be waived under applicable law. +Section 8. Severability. To the extent possible, if any provision of this Agreement is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable; if the provision cannot be reformed, it shall be severed from this Agreement without affecting the enforceability of the remaining terms and conditions, and any such prohibition or unenforceability in any jurisdiction shall not invalidate or render unenforceable such provision in any other jurisdiction. Nothing in this Agreement constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or Licensee, including from the legal processes of any jurisdiction or authority to the extent such privileges and immunities may not be waived under applicable law. \ No newline at end of file diff --git a/docs/corporate-accountability-1.1.html b/docs/corporate-accountability-1.1.html index b91d0f7212..879b5c439c 100644 --- a/docs/corporate-accountability-1.1.html +++ b/docs/corporate-accountability-1.1.html @@ -185,8 +185,7 @@ Section 7. Interpretation. For purposes of this Agreement, (a) the words "include," "includes," and "including" are deemed to be followed by the words "without limitation"; (b) the word "or" is not exclusive; and (c) the words "herein," "hereof," "hereby," and "hereunder" refer to this Agreement as a whole. "Conditions" is to be read as both condition and covenant, actionable under both contract and copyright law to the extent permissible by law. Unless the context otherwise requires, references herein to a statute, regulation, treaty, guideline, and similar instruments means such statute, regulation, treaty, guideline, and similar instrument as amended from time to time and includes any successor thereto and any regulations promulgated thereunder. This Agreement shall be construed without regard to any presumption or rule requiring construction or interpretation against the party drafting an instrument or causing any instrument to be drafted. -Section 8. Severability. To the extent possible, if any provision of this Agreement is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable; if the provision cannot be reformed, it shall be severed from this Agreement without affecting the enforceability of the remaining terms and conditions, and any such prohibition or unenforceability in any jurisdiction shall not invalidate or render unenforceable such provision in any other jurisdiction. Nothing in this Agreement constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or Licensee, including from the legal processes of any jurisdiction or authority to the extent such privileges and immunities may not be waived under applicable law. - +Section 8. Severability. To the extent possible, if any provision of this Agreement is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable; if the provision cannot be reformed, it shall be severed from this Agreement without affecting the enforceability of the remaining terms and conditions, and any such prohibition or unenforceability in any jurisdiction shall not invalidate or render unenforceable such provision in any other jurisdiction. Nothing in this Agreement constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or Licensee, including from the legal processes of any jurisdiction or authority to the extent such privileges and immunities may not be waived under applicable law.
@@ -198,7 +197,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/corporate-accountability-1.1.json b/docs/corporate-accountability-1.1.json index 4ca4387435..8fd5cc6a3d 100644 --- a/docs/corporate-accountability-1.1.json +++ b/docs/corporate-accountability-1.1.json @@ -1 +1,12 @@ -{"key": "corporate-accountability-1.1", "short_name": "CAL Software", "name": "Corporate Accountability Lab Software", "category": "Proprietary Free", "owner": "Corporate Accountability Lab", "homepage_url": "https://legaldesign.org/cal-software-license", "spdx_license_key": "LicenseRef-scancode-corporate-accountability-1.1", "ignorable_urls": ["https://www.legaldesign.org/cal-software-license"]} \ No newline at end of file +{ + "key": "corporate-accountability-1.1", + "short_name": "CAL Software", + "name": "Corporate Accountability Lab Software", + "category": "Proprietary Free", + "owner": "Corporate Accountability Lab", + "homepage_url": "https://legaldesign.org/cal-software-license", + "spdx_license_key": "LicenseRef-scancode-corporate-accountability-1.1", + "ignorable_urls": [ + "https://www.legaldesign.org/cal-software-license" + ] +} \ No newline at end of file diff --git a/docs/corporate-accountability-commercial-1.1.LICENSE b/docs/corporate-accountability-commercial-1.1.LICENSE index be044b532c..f4dd5a5fa3 100644 --- a/docs/corporate-accountability-commercial-1.1.LICENSE +++ b/docs/corporate-accountability-commercial-1.1.LICENSE @@ -1,3 +1,19 @@ +--- +key: corporate-accountability-commercial-1.1 +short_name: CC+CAL +name: CC + Corporate Accountability Lab +category: Proprietary Free +owner: Corporate Accountability Lab +homepage_url: https://legaldesign.org/cccal-license +is_exception: yes +spdx_license_key: LicenseRef-scancode-accountability-commercial-1.1 +other_spdx_license_keys: + - LicenseRef-scancode-corporate-accountability-commercial-1.1 +ignorable_urls: + - https://creativecommons.org/choose + - https://wiki.creativecommons.org/wiki/CCPlus +--- + The CC+CAL Commercial Use License Agreement Legal Notice The CC+CAL Commercial Use License Agreement (the "Agreement") is intended to be used in tandem with any standard Creative Commons Public License that does not provide the public with rights to use licensed material for commercial purposes (i.e., a Creative Commons Public License that includes a NonCommercial restriction). Through this Agreement, licensors using a Creative Commons Public License grant additional permissions to the public to use the licensed material for commercial purposes subject to a Morals Clause for Safe and Environmentally Sustainable Supply Chains set forth in this Agreement. For the avoidance of doubt, this Agreement does not modify or customize any Creative Commons Public License. This Agreement is a separate and independent agreement intended to exist alongside a Creative Commons Public License, granting additional permissions not provided by the Creative Commons Public License that pertain specifically to the commercial use of licensed material and the use of licensed material to promote safe and environmentally sustainable supply chains. @@ -174,4 +190,4 @@ b. To the extent possible, if any provision of this Agreement is deemed unenforc c. No term or condition of this Agreement will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. -Nothing in this Agreement constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. +Nothing in this Agreement constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. \ No newline at end of file diff --git a/docs/corporate-accountability-commercial-1.1.html b/docs/corporate-accountability-commercial-1.1.html index 6d16139ef1..9f57009070 100644 --- a/docs/corporate-accountability-commercial-1.1.html +++ b/docs/corporate-accountability-commercial-1.1.html @@ -316,8 +316,7 @@ c. No term or condition of this Agreement will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. -Nothing in this Agreement constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. - +Nothing in this Agreement constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.
@@ -329,7 +328,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/corporate-accountability-commercial-1.1.json b/docs/corporate-accountability-commercial-1.1.json index 2b87122935..451781ea08 100644 --- a/docs/corporate-accountability-commercial-1.1.json +++ b/docs/corporate-accountability-commercial-1.1.json @@ -1 +1,17 @@ -{"key": "corporate-accountability-commercial-1.1", "short_name": "CC+CAL", "name": "CC + Corporate Accountability Lab", "category": "Proprietary Free", "owner": "Corporate Accountability Lab", "homepage_url": "https://legaldesign.org/cccal-license", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-accountability-commercial-1.1", "other_spdx_license_keys": ["LicenseRef-scancode-corporate-accountability-commercial-1.1"], "ignorable_urls": ["https://creativecommons.org/choose", "https://wiki.creativecommons.org/wiki/CCPlus"]} \ No newline at end of file +{ + "key": "corporate-accountability-commercial-1.1", + "short_name": "CC+CAL", + "name": "CC + Corporate Accountability Lab", + "category": "Proprietary Free", + "owner": "Corporate Accountability Lab", + "homepage_url": "https://legaldesign.org/cccal-license", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-accountability-commercial-1.1", + "other_spdx_license_keys": [ + "LicenseRef-scancode-corporate-accountability-commercial-1.1" + ], + "ignorable_urls": [ + "https://creativecommons.org/choose", + "https://wiki.creativecommons.org/wiki/CCPlus" + ] +} \ No newline at end of file diff --git a/docs/cosl.LICENSE b/docs/cosl.LICENSE index e8f8c23293..cb1f201c02 100644 --- a/docs/cosl.LICENSE +++ b/docs/cosl.LICENSE @@ -1,3 +1,13 @@ +--- +key: cosl +short_name: Cougaar Open Source License +name: Cougaar Open Source License +category: Permissive +owner: Cougaar Software +spdx_license_key: LicenseRef-scancode-cosl +minimum_coverage: 80 +--- + Cougaar Open Source License The Cougaar Open Source License (COSL) is a modified version of the OSI diff --git a/docs/cosl.html b/docs/cosl.html index 755f938683..55e39e3390 100644 --- a/docs/cosl.html +++ b/docs/cosl.html @@ -164,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cosl.json b/docs/cosl.json index 063e0ac8d0..c5adb86734 100644 --- a/docs/cosl.json +++ b/docs/cosl.json @@ -1 +1,9 @@ -{"key": "cosl", "short_name": "Cougaar Open Source License", "name": "Cougaar Open Source License", "category": "Permissive", "owner": "Cougaar Software", "spdx_license_key": "LicenseRef-scancode-cosl", "minimum_coverage": 80} \ No newline at end of file +{ + "key": "cosl", + "short_name": "Cougaar Open Source License", + "name": "Cougaar Open Source License", + "category": "Permissive", + "owner": "Cougaar Software", + "spdx_license_key": "LicenseRef-scancode-cosl", + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/cosli.LICENSE b/docs/cosli.LICENSE index e5ed0e8bf5..9d3331edac 100644 --- a/docs/cosli.LICENSE +++ b/docs/cosli.LICENSE @@ -1,3 +1,27 @@ +--- +key: cosli +short_name: COSLi +name: Civilian Open Source License +category: Free Restricted +owner: Fieldtracks +homepage_url: https://cosli.eu/ +spdx_license_key: LicenseRef-scancode-cosli +ignorable_copyrights: + - Copyright (c) 2017-2019 The Fieldtracks Project + - Copyright (c) The OpenSSL Project +ignorable_holders: + - The Fieldtracks Project + - The OpenSSL Project +ignorable_authors: + - the Fieldtracks Project (https://fieldtracks.org/) + - the fieldtracks Project (https://www.fieldtracks.org/) +ignorable_urls: + - https://fieldtracks.org/ + - https://www.fieldtracks.org/ +ignorable_emails: + - info@fieldtracks.org +--- + Civilian Open Source License (COSLi) ------------------------------------------------------------------------------- @@ -59,5 +83,4 @@ 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. MILITARY USAGE IS FORBIDDEN. - +OF THE POSSIBILITY OF SUCH DAMAGE. MILITARY USAGE IS FORBIDDEN. \ No newline at end of file diff --git a/docs/cosli.html b/docs/cosli.html index e584522006..44d997cf85 100644 --- a/docs/cosli.html +++ b/docs/cosli.html @@ -221,9 +221,7 @@ 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. MILITARY USAGE IS FORBIDDEN. - - +OF THE POSSIBILITY OF SUCH DAMAGE. MILITARY USAGE IS FORBIDDEN.
@@ -235,7 +233,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cosli.json b/docs/cosli.json index 6e27587211..475876c667 100644 --- a/docs/cosli.json +++ b/docs/cosli.json @@ -1 +1,28 @@ -{"key": "cosli", "short_name": "COSLi", "name": "Civilian Open Source License", "category": "Free Restricted", "owner": "Fieldtracks", "homepage_url": "https://cosli.eu/", "spdx_license_key": "LicenseRef-scancode-cosli", "ignorable_copyrights": ["Copyright (c) 2017-2019 The Fieldtracks Project", "Copyright (c) The OpenSSL Project"], "ignorable_holders": ["The Fieldtracks Project", "The OpenSSL Project"], "ignorable_authors": ["the Fieldtracks Project (https://fieldtracks.org/)", "the fieldtracks Project (https://www.fieldtracks.org/)"], "ignorable_urls": ["https://fieldtracks.org/", "https://www.fieldtracks.org/"], "ignorable_emails": ["info@fieldtracks.org"]} \ No newline at end of file +{ + "key": "cosli", + "short_name": "COSLi", + "name": "Civilian Open Source License", + "category": "Free Restricted", + "owner": "Fieldtracks", + "homepage_url": "https://cosli.eu/", + "spdx_license_key": "LicenseRef-scancode-cosli", + "ignorable_copyrights": [ + "Copyright (c) 2017-2019 The Fieldtracks Project", + "Copyright (c) The OpenSSL Project" + ], + "ignorable_holders": [ + "The Fieldtracks Project", + "The OpenSSL Project" + ], + "ignorable_authors": [ + "the Fieldtracks Project (https://fieldtracks.org/)", + "the fieldtracks Project (https://www.fieldtracks.org/)" + ], + "ignorable_urls": [ + "https://fieldtracks.org/", + "https://www.fieldtracks.org/" + ], + "ignorable_emails": [ + "info@fieldtracks.org" + ] +} \ No newline at end of file diff --git a/docs/couchbase-community.LICENSE b/docs/couchbase-community.LICENSE index c1d26d5247..b8e3e81624 100644 --- a/docs/couchbase-community.LICENSE +++ b/docs/couchbase-community.LICENSE @@ -1,3 +1,20 @@ +--- +key: couchbase-community +short_name: Couchbase Community Edition License +name: Couchbase Community Edition License +category: Proprietary Free +owner: Couchbase +homepage_url: http://www.couchbase.com/download +spdx_license_key: LicenseRef-scancode-couchbase-community +ignorable_copyrights: + - Copyright 2010 Couchbase, Inc. +ignorable_holders: + - Couchbase, Inc. +ignorable_urls: + - http://couchbase.com/ + - http://www.couchbase.com/ +--- + COUCHBASE INC. COMMUNITY EDITION LICENSE AGREEMENT IMPORTANT-READ CAREFULLY: BY CLICKING THE "I ACCEPT" BOX OR diff --git a/docs/couchbase-community.html b/docs/couchbase-community.html index 4db10c837f..dc78420b9e 100644 --- a/docs/couchbase-community.html +++ b/docs/couchbase-community.html @@ -199,7 +199,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/couchbase-community.json b/docs/couchbase-community.json index 168aa49f99..3d0f6fca60 100644 --- a/docs/couchbase-community.json +++ b/docs/couchbase-community.json @@ -1 +1,19 @@ -{"key": "couchbase-community", "short_name": "Couchbase Community Edition License", "name": "Couchbase Community Edition License", "category": "Proprietary Free", "owner": "Couchbase", "homepage_url": "http://www.couchbase.com/download", "spdx_license_key": "LicenseRef-scancode-couchbase-community", "ignorable_copyrights": ["Copyright 2010 Couchbase, Inc."], "ignorable_holders": ["Couchbase, Inc."], "ignorable_urls": ["http://couchbase.com/", "http://www.couchbase.com/"]} \ No newline at end of file +{ + "key": "couchbase-community", + "short_name": "Couchbase Community Edition License", + "name": "Couchbase Community Edition License", + "category": "Proprietary Free", + "owner": "Couchbase", + "homepage_url": "http://www.couchbase.com/download", + "spdx_license_key": "LicenseRef-scancode-couchbase-community", + "ignorable_copyrights": [ + "Copyright 2010 Couchbase, Inc." + ], + "ignorable_holders": [ + "Couchbase, Inc." + ], + "ignorable_urls": [ + "http://couchbase.com/", + "http://www.couchbase.com/" + ] +} \ No newline at end of file diff --git a/docs/couchbase-enterprise.LICENSE b/docs/couchbase-enterprise.LICENSE index bd7e56eb8d..fa5576dc9a 100644 --- a/docs/couchbase-enterprise.LICENSE +++ b/docs/couchbase-enterprise.LICENSE @@ -1,3 +1,17 @@ +--- +key: couchbase-enterprise +short_name: Couchbase Enterprise Edition License +name: Couchbase Enterprise Edition License +category: Proprietary Free +owner: Couchbase +homepage_url: http://www.couchbase.com/download +spdx_license_key: LicenseRef-scancode-couchbase-enterprise +minimum_coverage: 20 +ignorable_urls: + - http://www.couchbase.com/ + - http://www.couchbase.org/forums +--- + COUCHBASE INC. ENTERPRISE LICENSE AGREEMENT - FREE EDITION IMPORTANT-READ CAREFULLY: BY CLICKING THE "I ACCEPT" BOX OR INSTALLING, diff --git a/docs/couchbase-enterprise.html b/docs/couchbase-enterprise.html index e3cea8bc3e..c5b3841ade 100644 --- a/docs/couchbase-enterprise.html +++ b/docs/couchbase-enterprise.html @@ -382,7 +382,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/couchbase-enterprise.json b/docs/couchbase-enterprise.json index fd0e136e6e..57eefdf185 100644 --- a/docs/couchbase-enterprise.json +++ b/docs/couchbase-enterprise.json @@ -1 +1,14 @@ -{"key": "couchbase-enterprise", "short_name": "Couchbase Enterprise Edition License", "name": "Couchbase Enterprise Edition License", "category": "Proprietary Free", "owner": "Couchbase", "homepage_url": "http://www.couchbase.com/download", "spdx_license_key": "LicenseRef-scancode-couchbase-enterprise", "minimum_coverage": 20, "ignorable_urls": ["http://www.couchbase.com/", "http://www.couchbase.org/forums"]} \ No newline at end of file +{ + "key": "couchbase-enterprise", + "short_name": "Couchbase Enterprise Edition License", + "name": "Couchbase Enterprise Edition License", + "category": "Proprietary Free", + "owner": "Couchbase", + "homepage_url": "http://www.couchbase.com/download", + "spdx_license_key": "LicenseRef-scancode-couchbase-enterprise", + "minimum_coverage": 20, + "ignorable_urls": [ + "http://www.couchbase.com/", + "http://www.couchbase.org/forums" + ] +} \ No newline at end of file diff --git a/docs/cpal-1.0.LICENSE b/docs/cpal-1.0.LICENSE index 603e342fb0..9b36953fed 100644 --- a/docs/cpal-1.0.LICENSE +++ b/docs/cpal-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: cpal-1.0 +short_name: CPAL 1.0 +name: Common Public Attribution License 1.0 +category: Copyleft +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/cpal_1.0 +notes: Per SPDX.org, this license is OSI certifified. +spdx_license_key: CPAL-1.0 +osi_license_key: CPAL-1.0 +text_urls: + - http://opensource.org/licenses/cpal_1.0 +osi_url: http://opensource.org/licenses/cpal_1.0 +other_urls: + - http://www.opensource.org/licenses/CPAL-1.0 + - https://opensource.org/licenses/CPAL-1.0 +--- + Common Public Attribution License Version 1.0 (CPAL) 1. "Definitions" 1.0.1 "Commercial Use" means distribution or otherwise making the Covered Code available to a third party. diff --git a/docs/cpal-1.0.html b/docs/cpal-1.0.html index 1545b00ad9..1a8c70da4d 100644 --- a/docs/cpal-1.0.html +++ b/docs/cpal-1.0.html @@ -274,7 +274,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cpal-1.0.json b/docs/cpal-1.0.json index c2bfa0050a..6c03b40508 100644 --- a/docs/cpal-1.0.json +++ b/docs/cpal-1.0.json @@ -1 +1,19 @@ -{"key": "cpal-1.0", "short_name": "CPAL 1.0", "name": "Common Public Attribution License 1.0", "category": "Copyleft", "owner": "OSI - Open Source Initiative", "homepage_url": "http://www.opensource.org/licenses/cpal_1.0", "notes": "Per SPDX.org, this license is OSI certifified.", "spdx_license_key": "CPAL-1.0", "osi_license_key": "CPAL-1.0", "text_urls": ["http://opensource.org/licenses/cpal_1.0"], "osi_url": "http://opensource.org/licenses/cpal_1.0", "other_urls": ["http://www.opensource.org/licenses/CPAL-1.0", "https://opensource.org/licenses/CPAL-1.0"]} \ No newline at end of file +{ + "key": "cpal-1.0", + "short_name": "CPAL 1.0", + "name": "Common Public Attribution License 1.0", + "category": "Copyleft", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://www.opensource.org/licenses/cpal_1.0", + "notes": "Per SPDX.org, this license is OSI certifified.", + "spdx_license_key": "CPAL-1.0", + "osi_license_key": "CPAL-1.0", + "text_urls": [ + "http://opensource.org/licenses/cpal_1.0" + ], + "osi_url": "http://opensource.org/licenses/cpal_1.0", + "other_urls": [ + "http://www.opensource.org/licenses/CPAL-1.0", + "https://opensource.org/licenses/CPAL-1.0" + ] +} \ No newline at end of file diff --git a/docs/cpl-0.5.LICENSE b/docs/cpl-0.5.LICENSE index c3ce56bcc1..86947f933d 100644 --- a/docs/cpl-0.5.LICENSE +++ b/docs/cpl-0.5.LICENSE @@ -1,3 +1,18 @@ +--- +key: cpl-0.5 +short_name: CPL 0.5 +name: Common Public License 0.5 +category: Copyleft Limited +owner: IBM +homepage_url: http://www.eclipse.org/legal/cpl-v05.html +spdx_license_key: LicenseRef-scancode-cpl-0.5 +text_urls: + - http://www.eclipse.org/legal/cpl-v05.html +faq_url: http://web.archive.org/web/20101104092121/http://www.ibm.com/developerworks/library/os-cplfaq.html +other_urls: + - http://www.ibm.com/developerworks/library/os-cplfaq.html +--- + Common Public License Version 0.5 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC diff --git a/docs/cpl-0.5.html b/docs/cpl-0.5.html index 5a6c1ac0f1..1cbb1ab1f7 100644 --- a/docs/cpl-0.5.html +++ b/docs/cpl-0.5.html @@ -365,7 +365,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cpl-0.5.json b/docs/cpl-0.5.json index 50f7d93266..c3d00f3a7b 100644 --- a/docs/cpl-0.5.json +++ b/docs/cpl-0.5.json @@ -1 +1,16 @@ -{"key": "cpl-0.5", "short_name": "CPL 0.5", "name": "Common Public License 0.5", "category": "Copyleft Limited", "owner": "IBM", "homepage_url": "http://www.eclipse.org/legal/cpl-v05.html", "spdx_license_key": "LicenseRef-scancode-cpl-0.5", "text_urls": ["http://www.eclipse.org/legal/cpl-v05.html"], "faq_url": "http://web.archive.org/web/20101104092121/http://www.ibm.com/developerworks/library/os-cplfaq.html", "other_urls": ["http://www.ibm.com/developerworks/library/os-cplfaq.html"]} \ No newline at end of file +{ + "key": "cpl-0.5", + "short_name": "CPL 0.5", + "name": "Common Public License 0.5", + "category": "Copyleft Limited", + "owner": "IBM", + "homepage_url": "http://www.eclipse.org/legal/cpl-v05.html", + "spdx_license_key": "LicenseRef-scancode-cpl-0.5", + "text_urls": [ + "http://www.eclipse.org/legal/cpl-v05.html" + ], + "faq_url": "http://web.archive.org/web/20101104092121/http://www.ibm.com/developerworks/library/os-cplfaq.html", + "other_urls": [ + "http://www.ibm.com/developerworks/library/os-cplfaq.html" + ] +} \ No newline at end of file diff --git a/docs/cpl-1.0.LICENSE b/docs/cpl-1.0.LICENSE index 97e582ba2f..4f278b0ab5 100644 --- a/docs/cpl-1.0.LICENSE +++ b/docs/cpl-1.0.LICENSE @@ -1,3 +1,26 @@ +--- +key: cpl-1.0 +short_name: CPL 1.0 +name: Common Public License 1.0 +category: Copyleft Limited +owner: IBM +homepage_url: http://www.eclipse.org/legal/cpl-v10.html +notes: Per SPDX.org, this license was superseded by Eclipse Public License +spdx_license_key: CPL-1.0 +osi_license_key: CPL-1.0 +text_urls: + - http://www.eclipse.org/legal/cpl-v10.html +osi_url: http://www.opensource.org/licenses/cpl1.0.php +faq_url: http://web.archive.org/web/20101104092121/http://www.ibm.com/developerworks/library/os-cplfaq.html +other_urls: + - http://dev.eclipse.org/blogs/mike/2009/04/16/one-small-step-towards-reducing-license-proliferation/ + - http://opensource.org/licenses/CPL-1.0 + - http://www.ibm.com/developerworks/library/os-cpl.html + - http://www.ibm.com/developerworks/library/os-cplfaq.html + - http://www.padsproj.org/License.html + - https://opensource.org/licenses/CPL-1.0 +--- + Common Public License - v 1.0 Updated 16 Apr 2009 diff --git a/docs/cpl-1.0.html b/docs/cpl-1.0.html index 4b7d3c2296..8f907b0076 100644 --- a/docs/cpl-1.0.html +++ b/docs/cpl-1.0.html @@ -263,7 +263,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cpl-1.0.json b/docs/cpl-1.0.json index 8cd4e8d09f..8ce5ad1234 100644 --- a/docs/cpl-1.0.json +++ b/docs/cpl-1.0.json @@ -1 +1,24 @@ -{"key": "cpl-1.0", "short_name": "CPL 1.0", "name": "Common Public License 1.0", "category": "Copyleft Limited", "owner": "IBM", "homepage_url": "http://www.eclipse.org/legal/cpl-v10.html", "notes": "Per SPDX.org, this license was superseded by Eclipse Public License", "spdx_license_key": "CPL-1.0", "osi_license_key": "CPL-1.0", "text_urls": ["http://www.eclipse.org/legal/cpl-v10.html"], "osi_url": "http://www.opensource.org/licenses/cpl1.0.php", "faq_url": "http://web.archive.org/web/20101104092121/http://www.ibm.com/developerworks/library/os-cplfaq.html", "other_urls": ["http://dev.eclipse.org/blogs/mike/2009/04/16/one-small-step-towards-reducing-license-proliferation/", "http://opensource.org/licenses/CPL-1.0", "http://www.ibm.com/developerworks/library/os-cpl.html", "http://www.ibm.com/developerworks/library/os-cplfaq.html", "http://www.padsproj.org/License.html", "https://opensource.org/licenses/CPL-1.0"]} \ No newline at end of file +{ + "key": "cpl-1.0", + "short_name": "CPL 1.0", + "name": "Common Public License 1.0", + "category": "Copyleft Limited", + "owner": "IBM", + "homepage_url": "http://www.eclipse.org/legal/cpl-v10.html", + "notes": "Per SPDX.org, this license was superseded by Eclipse Public License", + "spdx_license_key": "CPL-1.0", + "osi_license_key": "CPL-1.0", + "text_urls": [ + "http://www.eclipse.org/legal/cpl-v10.html" + ], + "osi_url": "http://www.opensource.org/licenses/cpl1.0.php", + "faq_url": "http://web.archive.org/web/20101104092121/http://www.ibm.com/developerworks/library/os-cplfaq.html", + "other_urls": [ + "http://dev.eclipse.org/blogs/mike/2009/04/16/one-small-step-towards-reducing-license-proliferation/", + "http://opensource.org/licenses/CPL-1.0", + "http://www.ibm.com/developerworks/library/os-cpl.html", + "http://www.ibm.com/developerworks/library/os-cplfaq.html", + "http://www.padsproj.org/License.html", + "https://opensource.org/licenses/CPL-1.0" + ] +} \ No newline at end of file diff --git a/docs/cpm-2022.LICENSE b/docs/cpm-2022.LICENSE index bb20b2014d..7ab3364c40 100644 --- a/docs/cpm-2022.LICENSE +++ b/docs/cpm-2022.LICENSE @@ -1,3 +1,13 @@ +--- +key: cpm-2022 +short_name: CP/M License 2022 +name: CP/M License 2022 +category: Permissive +owner: DRDOS +homepage_url: http://www.cpm.z80.de/license.html +spdx_license_key: LicenseRef-scancode-cpm-2022 +--- + Let this paragraph represent a right to use, distribute, modify, enhance, and otherwise make available in a nonexclusive manner CP/M and its derivatives. This right comes from the company, DRDOS, Inc.'s purchase of Digital Research, the company and all assets, diff --git a/docs/cpm-2022.html b/docs/cpm-2022.html index e17cafa999..0f50b8dbb5 100644 --- a/docs/cpm-2022.html +++ b/docs/cpm-2022.html @@ -132,7 +132,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cpm-2022.json b/docs/cpm-2022.json index 1b35728ca7..70b738fd9d 100644 --- a/docs/cpm-2022.json +++ b/docs/cpm-2022.json @@ -1 +1,9 @@ -{"key": "cpm-2022", "short_name": "CP/M License 2022", "name": "CP/M License 2022", "category": "Permissive", "owner": "DRDOS", "homepage_url": "http://www.cpm.z80.de/license.html", "spdx_license_key": "LicenseRef-scancode-cpm-2022"} \ No newline at end of file +{ + "key": "cpm-2022", + "short_name": "CP/M License 2022", + "name": "CP/M License 2022", + "category": "Permissive", + "owner": "DRDOS", + "homepage_url": "http://www.cpm.z80.de/license.html", + "spdx_license_key": "LicenseRef-scancode-cpm-2022" +} \ No newline at end of file diff --git a/docs/cpol-1.0.LICENSE b/docs/cpol-1.0.LICENSE index dea7929583..8439a02cf3 100644 --- a/docs/cpol-1.0.LICENSE +++ b/docs/cpol-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: cpol-1.0 +short_name: CPOL 1.0 +name: Code Project Open License (CPOL) 1.0 +category: Free Restricted +owner: Code Project +homepage_url: http://www.codeproject.com/info/cpol10.aspx +notes: this license had a short life and was quickly replaced by version 1.02. Yet there are + some example of usage in the wild. +spdx_license_key: LicenseRef-scancode-cpol-1.0 +text_urls: + - http://www.codeproject.com/info/CPOL.zip + - http://www.codeproject.com/info/cpol10.aspx + - https://web.archive.org/web/20080107184757/https://www.codeproject.com/info/cpol10.aspx +minimum_coverage: 95 +--- + The Code Project Open License (CPOL) 1.0 ***** Preamble ***** diff --git a/docs/cpol-1.0.html b/docs/cpol-1.0.html index cf636757a7..d9a25d3ef7 100644 --- a/docs/cpol-1.0.html +++ b/docs/cpol-1.0.html @@ -338,7 +338,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cpol-1.0.json b/docs/cpol-1.0.json index a77bdae5b1..c5363b6e25 100644 --- a/docs/cpol-1.0.json +++ b/docs/cpol-1.0.json @@ -1 +1,16 @@ -{"key": "cpol-1.0", "short_name": "CPOL 1.0", "name": "Code Project Open License (CPOL) 1.0", "category": "Free Restricted", "owner": "Code Project", "homepage_url": "http://www.codeproject.com/info/cpol10.aspx", "notes": "this license had a short life and was quickly replaced by version 1.02. Yet there are some example of usage in the wild.", "spdx_license_key": "LicenseRef-scancode-cpol-1.0", "text_urls": ["http://www.codeproject.com/info/CPOL.zip", "http://www.codeproject.com/info/cpol10.aspx", "https://web.archive.org/web/20080107184757/https://www.codeproject.com/info/cpol10.aspx"], "minimum_coverage": 95} \ No newline at end of file +{ + "key": "cpol-1.0", + "short_name": "CPOL 1.0", + "name": "Code Project Open License (CPOL) 1.0", + "category": "Free Restricted", + "owner": "Code Project", + "homepage_url": "http://www.codeproject.com/info/cpol10.aspx", + "notes": "this license had a short life and was quickly replaced by version 1.02. Yet there are some example of usage in the wild.", + "spdx_license_key": "LicenseRef-scancode-cpol-1.0", + "text_urls": [ + "http://www.codeproject.com/info/CPOL.zip", + "http://www.codeproject.com/info/cpol10.aspx", + "https://web.archive.org/web/20080107184757/https://www.codeproject.com/info/cpol10.aspx" + ], + "minimum_coverage": 95 +} \ No newline at end of file diff --git a/docs/cpol-1.02.LICENSE b/docs/cpol-1.02.LICENSE index af907d2833..4fa0b96fce 100644 --- a/docs/cpol-1.02.LICENSE +++ b/docs/cpol-1.02.LICENSE @@ -1,3 +1,16 @@ +--- +key: cpol-1.02 +short_name: CPOL 1.02 +name: Code Project Open License (CPOL) 1.02 +category: Free Restricted +owner: Code Project +homepage_url: http://www.codeproject.com/info/cpol10.aspx +spdx_license_key: CPOL-1.02 +text_urls: + - http://www.codeproject.com/info/CPOL.zip + - http://www.codeproject.com/info/cpol10.aspx +--- + The Code Project Open License (CPOL) 1.02 Preamble diff --git a/docs/cpol-1.02.html b/docs/cpol-1.02.html index eb942bf4ab..87653eee9d 100644 --- a/docs/cpol-1.02.html +++ b/docs/cpol-1.02.html @@ -195,7 +195,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cpol-1.02.json b/docs/cpol-1.02.json index 917d5654b4..6b2698e552 100644 --- a/docs/cpol-1.02.json +++ b/docs/cpol-1.02.json @@ -1 +1,13 @@ -{"key": "cpol-1.02", "short_name": "CPOL 1.02", "name": "Code Project Open License (CPOL) 1.02", "category": "Free Restricted", "owner": "Code Project", "homepage_url": "http://www.codeproject.com/info/cpol10.aspx", "spdx_license_key": "CPOL-1.02", "text_urls": ["http://www.codeproject.com/info/CPOL.zip", "http://www.codeproject.com/info/cpol10.aspx"]} \ No newline at end of file +{ + "key": "cpol-1.02", + "short_name": "CPOL 1.02", + "name": "Code Project Open License (CPOL) 1.02", + "category": "Free Restricted", + "owner": "Code Project", + "homepage_url": "http://www.codeproject.com/info/cpol10.aspx", + "spdx_license_key": "CPOL-1.02", + "text_urls": [ + "http://www.codeproject.com/info/CPOL.zip", + "http://www.codeproject.com/info/cpol10.aspx" + ] +} \ No newline at end of file diff --git a/docs/cpp-core-guidelines.LICENSE b/docs/cpp-core-guidelines.LICENSE index 6f95845da8..95a1cbad1c 100644 --- a/docs/cpp-core-guidelines.LICENSE +++ b/docs/cpp-core-guidelines.LICENSE @@ -1,3 +1,15 @@ +--- +key: cpp-core-guidelines +short_name: CppCoreGuidelines License +name: CppCoreGuidelines License +category: Permissive +owner: isocpp +homepage_url: https://github.com/isocpp/CppCoreGuidelines/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-cpp-core-guidelines +ignorable_emails: + - admin@isocpp.org +--- + Standard C++ Foundation grants you a worldwide, nonexclusive, royalty-free, perpetual license to copy, use, modify, and create derivative works from this project for your personal or internal business use only. The above copyright diff --git a/docs/cpp-core-guidelines.html b/docs/cpp-core-guidelines.html index e9d54a9549..019bcf9351 100644 --- a/docs/cpp-core-guidelines.html +++ b/docs/cpp-core-guidelines.html @@ -173,7 +173,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cpp-core-guidelines.json b/docs/cpp-core-guidelines.json index 4dd8082c0c..2474c4a212 100644 --- a/docs/cpp-core-guidelines.json +++ b/docs/cpp-core-guidelines.json @@ -1 +1,12 @@ -{"key": "cpp-core-guidelines", "short_name": "CppCoreGuidelines License", "name": "CppCoreGuidelines License", "category": "Permissive", "owner": "isocpp", "homepage_url": "https://github.com/isocpp/CppCoreGuidelines/blob/master/LICENSE", "spdx_license_key": "LicenseRef-scancode-cpp-core-guidelines", "ignorable_emails": ["admin@isocpp.org"]} \ No newline at end of file +{ + "key": "cpp-core-guidelines", + "short_name": "CppCoreGuidelines License", + "name": "CppCoreGuidelines License", + "category": "Permissive", + "owner": "isocpp", + "homepage_url": "https://github.com/isocpp/CppCoreGuidelines/blob/master/LICENSE", + "spdx_license_key": "LicenseRef-scancode-cpp-core-guidelines", + "ignorable_emails": [ + "admin@isocpp.org" + ] +} \ No newline at end of file diff --git a/docs/crapl-0.1.LICENSE b/docs/crapl-0.1.LICENSE index 57ce56fc3a..96d2e8a8a3 100644 --- a/docs/crapl-0.1.LICENSE +++ b/docs/crapl-0.1.LICENSE @@ -1,3 +1,17 @@ +--- +key: crapl-0.1 +short_name: CRAPL v0 BETA 1 +name: CRAPL v0 BETA 1 +category: Proprietary Free +owner: Matthew Might +homepage_url: http://matt.might.net/articles/crapl/ +spdx_license_key: LicenseRef-scancode-crapl-0.1 +text_urls: + - http://matt.might.net/articles/crapl/CRAPL-LICENSE.txt +ignorable_urls: + - http://matt.might.net/ +--- + THE CRAPL v0 BETA 1 @@ -112,4 +126,4 @@ 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. +PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/docs/crapl-0.1.html b/docs/crapl-0.1.html index 344f55a0e1..d325801c3b 100644 --- a/docs/crapl-0.1.html +++ b/docs/crapl-0.1.html @@ -247,8 +247,7 @@ 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. - +PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
@@ -260,7 +259,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/crapl-0.1.json b/docs/crapl-0.1.json index c4f01735ef..25de4ac047 100644 --- a/docs/crapl-0.1.json +++ b/docs/crapl-0.1.json @@ -1 +1,15 @@ -{"key": "crapl-0.1", "short_name": "CRAPL v0 BETA 1", "name": "CRAPL v0 BETA 1", "category": "Proprietary Free", "owner": "Matthew Might", "homepage_url": "http://matt.might.net/articles/crapl/", "spdx_license_key": "LicenseRef-scancode-crapl-0.1", "text_urls": ["http://matt.might.net/articles/crapl/CRAPL-LICENSE.txt"], "ignorable_urls": ["http://matt.might.net/"]} \ No newline at end of file +{ + "key": "crapl-0.1", + "short_name": "CRAPL v0 BETA 1", + "name": "CRAPL v0 BETA 1", + "category": "Proprietary Free", + "owner": "Matthew Might", + "homepage_url": "http://matt.might.net/articles/crapl/", + "spdx_license_key": "LicenseRef-scancode-crapl-0.1", + "text_urls": [ + "http://matt.might.net/articles/crapl/CRAPL-LICENSE.txt" + ], + "ignorable_urls": [ + "http://matt.might.net/" + ] +} \ No newline at end of file diff --git a/docs/crashlytics-agreement-2018.LICENSE b/docs/crashlytics-agreement-2018.LICENSE index 0bcfecef8b..84c843b4fb 100644 --- a/docs/crashlytics-agreement-2018.LICENSE +++ b/docs/crashlytics-agreement-2018.LICENSE @@ -1,3 +1,21 @@ +--- +key: crashlytics-agreement-2018 +short_name: Crashlytics Agreement 2018 +name: Crashlytics Agreement 2018 +category: Commercial +owner: Google +spdx_license_key: LicenseRef-scancode-crashlytics-agreement-2018 +ignorable_copyrights: + - (c) Google LLC +ignorable_holders: + - Google LLC +ignorable_urls: + - http://www.answers.io/ + - http://www.crashlytics.com/ +ignorable_emails: + - support@crashlytics.com +--- + Last Updated: July 23, 2018 This Crashlytics Agreement ("Agreement") is entered into by Crashlytics (defined as either: (a) Google Ireland Limited, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Your principal place of business (for entities) or place of residence (for individuals) is in any country within Europe, the Middle East, or Africa ("EMEA"), (b) Google Asia Pacific Pte. Ltd., with offices at 8 Marina View Asia Square 1 #30-01 Singapore 018960, if Your principal place of business (for entities) or place of residence (for individuals) is in any country within the Asia Pacific region ("APAC"), or (c) Google LLC, with offices at 1600 Amphitheatre Parkway, Mountain View, California 94043, if Your principal place of business (for entities) or place of residence (for individuals) is in any country in the world other than those in EMEA and APAC) and you ("Developer" or "You") and governs your access and use of www.crashlytics.com and the Crashlytics crash reporting and beta testing solution (collectively, the "Services" as more fully described below). If You are accessing or using the Services on behalf of a company or other legal entity, You represent and warrant that You are an authorized representative of that entity and have the authority to bind such entity to this Agreement, in which case the terms "Developer" and "You" shall refer to such entity. You and Crashlytics hereby agree as follows: diff --git a/docs/crashlytics-agreement-2018.html b/docs/crashlytics-agreement-2018.html index 375d0e2f5d..a72563c75a 100644 --- a/docs/crashlytics-agreement-2018.html +++ b/docs/crashlytics-agreement-2018.html @@ -276,7 +276,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/crashlytics-agreement-2018.json b/docs/crashlytics-agreement-2018.json index 13a0b4f070..55ab9ac542 100644 --- a/docs/crashlytics-agreement-2018.json +++ b/docs/crashlytics-agreement-2018.json @@ -1 +1,21 @@ -{"key": "crashlytics-agreement-2018", "short_name": "Crashlytics Agreement 2018", "name": "Crashlytics Agreement 2018", "category": "Commercial", "owner": "Google", "spdx_license_key": "LicenseRef-scancode-crashlytics-agreement-2018", "ignorable_copyrights": ["(c) Google LLC"], "ignorable_holders": ["Google LLC"], "ignorable_urls": ["http://www.answers.io/", "http://www.crashlytics.com/"], "ignorable_emails": ["support@crashlytics.com"]} \ No newline at end of file +{ + "key": "crashlytics-agreement-2018", + "short_name": "Crashlytics Agreement 2018", + "name": "Crashlytics Agreement 2018", + "category": "Commercial", + "owner": "Google", + "spdx_license_key": "LicenseRef-scancode-crashlytics-agreement-2018", + "ignorable_copyrights": [ + "(c) Google LLC" + ], + "ignorable_holders": [ + "Google LLC" + ], + "ignorable_urls": [ + "http://www.answers.io/", + "http://www.crashlytics.com/" + ], + "ignorable_emails": [ + "support@crashlytics.com" + ] +} \ No newline at end of file diff --git a/docs/crcalc.LICENSE b/docs/crcalc.LICENSE index 19ce393c4a..f96041af3b 100644 --- a/docs/crcalc.LICENSE +++ b/docs/crcalc.LICENSE @@ -1,3 +1,18 @@ +--- +key: crcalc +short_name: CRCalc license +name: CRCalc license +category: Permissive +owner: SGI - Silicon Graphics +homepage_url: http://www.hboehm.info/crcalc/COPYRIGHT.txt +notes: this is included in Android and is a rather unique text +spdx_license_key: LicenseRef-scancode-crcalc +text_urls: + - http://www.hboehm.info/crcalc/COPYRIGHT.txt + - http://www.hboehm.info/new_crcalc/COPYRIGHT.txt +minimum_coverage: 80 +--- + Permission is granted free of charge to copy, modify, use and distribute this software provided you include the entirety of this notice in all copies made. @@ -25,4 +40,4 @@ THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY RESULTING FROM HEWLETT-PACKARD's NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT -EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. +EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. \ No newline at end of file diff --git a/docs/crcalc.html b/docs/crcalc.html index f1b7b90b05..c239dbabff 100644 --- a/docs/crcalc.html +++ b/docs/crcalc.html @@ -165,8 +165,7 @@ FROM HEWLETT-PACKARD's NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT -EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - +EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.
@@ -178,7 +177,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/crcalc.json b/docs/crcalc.json index cac4ecba0b..625343d6f4 100644 --- a/docs/crcalc.json +++ b/docs/crcalc.json @@ -1 +1,15 @@ -{"key": "crcalc", "short_name": "CRCalc license", "name": "CRCalc license", "category": "Permissive", "owner": "SGI - Silicon Graphics", "homepage_url": "http://www.hboehm.info/crcalc/COPYRIGHT.txt", "notes": "this is included in Android and is a rather unique text", "spdx_license_key": "LicenseRef-scancode-crcalc", "text_urls": ["http://www.hboehm.info/crcalc/COPYRIGHT.txt", "http://www.hboehm.info/new_crcalc/COPYRIGHT.txt"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "crcalc", + "short_name": "CRCalc license", + "name": "CRCalc license", + "category": "Permissive", + "owner": "SGI - Silicon Graphics", + "homepage_url": "http://www.hboehm.info/crcalc/COPYRIGHT.txt", + "notes": "this is included in Android and is a rather unique text", + "spdx_license_key": "LicenseRef-scancode-crcalc", + "text_urls": [ + "http://www.hboehm.info/crcalc/COPYRIGHT.txt", + "http://www.hboehm.info/new_crcalc/COPYRIGHT.txt" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/crossword.LICENSE b/docs/crossword.LICENSE index 02154ecc61..bec5437eaf 100644 --- a/docs/crossword.LICENSE +++ b/docs/crossword.LICENSE @@ -1,3 +1,17 @@ +--- +key: crossword +short_name: Crossword License +name: Crossword License +category: Permissive +owner: Gerd Neugebauer +homepage_url: https://fedoraproject.org/wiki/Licensing/Crossword +spdx_license_key: Crossword +ignorable_copyrights: + - Copyright (c) 1995-2009 Gerd Neugebauer +ignorable_holders: + - Gerd Neugebauer +--- + Copyright (C) 1995-2009 Gerd Neugebauer   cwpuzzle.dtx is distributed in the hope that it will be useful, but WITHOUT ANY diff --git a/docs/crossword.html b/docs/crossword.html index 217a25808e..e20000fa4a 100644 --- a/docs/crossword.html +++ b/docs/crossword.html @@ -153,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/crossword.json b/docs/crossword.json index 14f483ac3b..c3285c2371 100644 --- a/docs/crossword.json +++ b/docs/crossword.json @@ -1 +1,15 @@ -{"key": "crossword", "short_name": "Crossword License", "name": "Crossword License", "category": "Permissive", "owner": "Gerd Neugebauer", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Crossword", "spdx_license_key": "Crossword", "ignorable_copyrights": ["Copyright (c) 1995-2009 Gerd Neugebauer"], "ignorable_holders": ["Gerd Neugebauer"]} \ No newline at end of file +{ + "key": "crossword", + "short_name": "Crossword License", + "name": "Crossword License", + "category": "Permissive", + "owner": "Gerd Neugebauer", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Crossword", + "spdx_license_key": "Crossword", + "ignorable_copyrights": [ + "Copyright (c) 1995-2009 Gerd Neugebauer" + ], + "ignorable_holders": [ + "Gerd Neugebauer" + ] +} \ No newline at end of file diff --git a/docs/crypto-keys-redistribution.LICENSE b/docs/crypto-keys-redistribution.LICENSE index 85a6ef1677..db5650515a 100644 --- a/docs/crypto-keys-redistribution.LICENSE +++ b/docs/crypto-keys-redistribution.LICENSE @@ -1,5 +1,22 @@ +--- +key: crypto-keys-redistribution +short_name: Cryptographic keys redistribution +name: Cryptographic keys redistribution +category: Copyleft +owner: kernel.org +notes: | + This was found as a Linux addition to the GPL in Linux 3.x in files such as + in drivers/scsi/aha1740.c drivers/message/i2o/i2o_scsi.c + drivers/ide/cs5520.c drivers/ide/ide-pci-generic.c drivers/ide/ide-io.c + drivers/scsi/eata_pio.c drivers/scsi/in2000.c drivers/scsi/qlogicfas.c + drivers/scsi/qlogicfas408.c +spdx_license_key: LicenseRef-scancode-crypto-keys-redistribution +text_urls: + - http://git.savannah.gnu.org/cgit/dmidecode.git/tree/dmidecode.c?id=ee07a1b4249560d620d05194eb8ff61b40d3ce23 +--- + For the avoidance of doubt the "preferred form" of this code is one which is in an open non patent encumbered format. Where cryptographic key signing forms part of the process of creating an executable the information including keys needed to generate an equivalently functional executable -are deemed to be part of the source code. +are deemed to be part of the source code. \ No newline at end of file diff --git a/docs/crypto-keys-redistribution.html b/docs/crypto-keys-redistribution.html index dc220ee577..fecaab5976 100644 --- a/docs/crypto-keys-redistribution.html +++ b/docs/crypto-keys-redistribution.html @@ -133,8 +133,7 @@ is in an open non patent encumbered format. Where cryptographic key signing forms part of the process of creating an executable the information including keys needed to generate an equivalently functional executable -are deemed to be part of the source code. - +are deemed to be part of the source code.
@@ -146,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/crypto-keys-redistribution.json b/docs/crypto-keys-redistribution.json index 4b2dd2726e..5b6745b75a 100644 --- a/docs/crypto-keys-redistribution.json +++ b/docs/crypto-keys-redistribution.json @@ -1 +1,12 @@ -{"key": "crypto-keys-redistribution", "short_name": "Cryptographic keys redistribution", "name": "Cryptographic keys redistribution", "category": "Copyleft", "owner": "kernel.org", "notes": "This was found as a Linux addition to the GPL in Linux 3.x in files such as\nin drivers/scsi/aha1740.c drivers/message/i2o/i2o_scsi.c\ndrivers/ide/cs5520.c drivers/ide/ide-pci-generic.c drivers/ide/ide-io.c\ndrivers/scsi/eata_pio.c drivers/scsi/in2000.c drivers/scsi/qlogicfas.c\ndrivers/scsi/qlogicfas408.c\n", "spdx_license_key": "LicenseRef-scancode-crypto-keys-redistribution", "text_urls": ["http://git.savannah.gnu.org/cgit/dmidecode.git/tree/dmidecode.c?id=ee07a1b4249560d620d05194eb8ff61b40d3ce23"]} \ No newline at end of file +{ + "key": "crypto-keys-redistribution", + "short_name": "Cryptographic keys redistribution", + "name": "Cryptographic keys redistribution", + "category": "Copyleft", + "owner": "kernel.org", + "notes": "This was found as a Linux addition to the GPL in Linux 3.x in files such as\nin drivers/scsi/aha1740.c drivers/message/i2o/i2o_scsi.c\ndrivers/ide/cs5520.c drivers/ide/ide-pci-generic.c drivers/ide/ide-io.c\ndrivers/scsi/eata_pio.c drivers/scsi/in2000.c drivers/scsi/qlogicfas.c\ndrivers/scsi/qlogicfas408.c\n", + "spdx_license_key": "LicenseRef-scancode-crypto-keys-redistribution", + "text_urls": [ + "http://git.savannah.gnu.org/cgit/dmidecode.git/tree/dmidecode.c?id=ee07a1b4249560d620d05194eb8ff61b40d3ce23" + ] +} \ No newline at end of file diff --git a/docs/cryptopp.LICENSE b/docs/cryptopp.LICENSE index d507087359..0f2baec575 100644 --- a/docs/cryptopp.LICENSE +++ b/docs/cryptopp.LICENSE @@ -1,3 +1,16 @@ +--- +key: cryptopp +short_name: Crypto++ License +name: Crypto++ License +category: Permissive +owner: Wei Dai +spdx_license_key: LicenseRef-scancode-cryptopp +ignorable_copyrights: + - Copyright (c) 1995-2010 by Wei Dai +ignorable_holders: + - Wei Dai +--- + Compilation Copyright (c) 1995-2010 by Wei Dai. All rights reserved. This copyright applies only to this software distribution package as a diff --git a/docs/cryptopp.html b/docs/cryptopp.html index 8e124e2942..7a6c1c931e 100644 --- a/docs/cryptopp.html +++ b/docs/cryptopp.html @@ -189,7 +189,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cryptopp.json b/docs/cryptopp.json index 8a21beda06..c942b3b83f 100644 --- a/docs/cryptopp.json +++ b/docs/cryptopp.json @@ -1 +1,14 @@ -{"key": "cryptopp", "short_name": "Crypto++ License", "name": "Crypto++ License", "category": "Permissive", "owner": "Wei Dai", "spdx_license_key": "LicenseRef-scancode-cryptopp", "ignorable_copyrights": ["Copyright (c) 1995-2010 by Wei Dai"], "ignorable_holders": ["Wei Dai"]} \ No newline at end of file +{ + "key": "cryptopp", + "short_name": "Crypto++ License", + "name": "Crypto++ License", + "category": "Permissive", + "owner": "Wei Dai", + "spdx_license_key": "LicenseRef-scancode-cryptopp", + "ignorable_copyrights": [ + "Copyright (c) 1995-2010 by Wei Dai" + ], + "ignorable_holders": [ + "Wei Dai" + ] +} \ No newline at end of file diff --git a/docs/crystal-stacker.LICENSE b/docs/crystal-stacker.LICENSE index 7705e91d13..b5487035aa 100644 --- a/docs/crystal-stacker.LICENSE +++ b/docs/crystal-stacker.LICENSE @@ -1,3 +1,14 @@ +--- +key: crystal-stacker +short_name: Crystal Stacker License +name: Crystal Stacker License +category: Permissive +owner: NewCreature Design +homepage_url: https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker +spdx_license_key: CrystalStacker +minimum_coverage: 20 +--- + Crystal Stacker is freeware. This means you can pass copies around freely provided you include this document in it's original form in your distribution. Please see the "Contacting Us" section of this document if you need to contact us for any reason. Disclaimer diff --git a/docs/crystal-stacker.html b/docs/crystal-stacker.html index 58d7393d9f..c58a2059dc 100644 --- a/docs/crystal-stacker.html +++ b/docs/crystal-stacker.html @@ -140,7 +140,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/crystal-stacker.json b/docs/crystal-stacker.json index c380da2a10..4954d85fe1 100644 --- a/docs/crystal-stacker.json +++ b/docs/crystal-stacker.json @@ -1 +1,10 @@ -{"key": "crystal-stacker", "short_name": "Crystal Stacker License", "name": "Crystal Stacker License", "category": "Permissive", "owner": "NewCreature Design", "homepage_url": "https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker", "spdx_license_key": "CrystalStacker", "minimum_coverage": 20} \ No newline at end of file +{ + "key": "crystal-stacker", + "short_name": "Crystal Stacker License", + "name": "Crystal Stacker License", + "category": "Permissive", + "owner": "NewCreature Design", + "homepage_url": "https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker", + "spdx_license_key": "CrystalStacker", + "minimum_coverage": 20 +} \ No newline at end of file diff --git a/docs/csl-1.0.LICENSE b/docs/csl-1.0.LICENSE index 8257267dad..91a18a9249 100644 --- a/docs/csl-1.0.LICENSE +++ b/docs/csl-1.0.LICENSE @@ -1,3 +1,29 @@ +--- +key: csl-1.0 +short_name: CSL-1.0 +name: Community Specification License 1.0 +category: Permissive +owner: Linux Foundation +homepage_url: https://github.com/CommunitySpecification/1.0 +spdx_license_key: Community-Spec-1.0 +other_spdx_license_keys: + - LicenseRef-scancode-csl-1.0 +text_urls: + - https://github.com/CommunitySpecification/1.0/blob/master/1._Community_Specification_License-v1.md +other_urls: + - https://github.com/spdx/spdx-3-model/blob/main/License.md +ignorable_copyrights: + - Copyright 2020 Joint Development Foundation + - Copyright Attribution. As +ignorable_holders: + - Attribution. As + - Joint Development Foundation +ignorable_authors: + - the Working Group +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0 +--- + Community Specification License 1.0 The Purpose of this License. This License sets forth the terms under which diff --git a/docs/csl-1.0.html b/docs/csl-1.0.html index b1c0551242..e8ba89ea9e 100644 --- a/docs/csl-1.0.html +++ b/docs/csl-1.0.html @@ -482,7 +482,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/csl-1.0.json b/docs/csl-1.0.json index 21222c3af3..c970d01cb3 100644 --- a/docs/csl-1.0.json +++ b/docs/csl-1.0.json @@ -1 +1,32 @@ -{"key": "csl-1.0", "short_name": "CSL-1.0", "name": "Community Specification License 1.0", "category": "Permissive", "owner": "Linux Foundation", "homepage_url": "https://github.com/CommunitySpecification/1.0", "spdx_license_key": "Community-Spec-1.0", "other_spdx_license_keys": ["LicenseRef-scancode-csl-1.0"], "text_urls": ["https://github.com/CommunitySpecification/1.0/blob/master/1._Community_Specification_License-v1.md"], "other_urls": ["https://github.com/spdx/spdx-3-model/blob/main/License.md"], "ignorable_copyrights": ["Copyright 2020 Joint Development Foundation", "Copyright Attribution. As"], "ignorable_holders": ["Attribution. As", "Joint Development Foundation"], "ignorable_authors": ["the Working Group"], "ignorable_urls": ["https://creativecommons.org/licenses/by/4.0"]} \ No newline at end of file +{ + "key": "csl-1.0", + "short_name": "CSL-1.0", + "name": "Community Specification License 1.0", + "category": "Permissive", + "owner": "Linux Foundation", + "homepage_url": "https://github.com/CommunitySpecification/1.0", + "spdx_license_key": "Community-Spec-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-csl-1.0" + ], + "text_urls": [ + "https://github.com/CommunitySpecification/1.0/blob/master/1._Community_Specification_License-v1.md" + ], + "other_urls": [ + "https://github.com/spdx/spdx-3-model/blob/main/License.md" + ], + "ignorable_copyrights": [ + "Copyright 2020 Joint Development Foundation", + "Copyright Attribution. As" + ], + "ignorable_holders": [ + "Attribution. As", + "Joint Development Foundation" + ], + "ignorable_authors": [ + "the Working Group" + ], + "ignorable_urls": [ + "https://creativecommons.org/licenses/by/4.0" + ] +} \ No newline at end of file diff --git a/docs/csla.LICENSE b/docs/csla.LICENSE index 3c1ab9be12..418dc0dbdb 100644 --- a/docs/csla.LICENSE +++ b/docs/csla.LICENSE @@ -1,3 +1,21 @@ +--- +key: csla +short_name: CSLA License +name: CSLA .NET License +category: Free Restricted +owner: Marimer, LLC +homepage_url: https://github.com/MarimerLLC/csla/blob/master/license.txt +spdx_license_key: LicenseRef-scancode-csla +text_urls: + - https://github.com/MarimerLLC/csla/blob/0650fd13adc4689dcd6ec7b8f4609563ee12f401/license.md +ignorable_copyrights: + - Copyright 2013 by Marimer, LLC, Eden Prairie, MN + - Copyright 2013 by Marimer, LLC. +ignorable_holders: + - Marimer, LLC, Eden Prairie, MN + - Marimer, LLC. +--- + LICENSE AND WARRANTY Version 4.0.3 diff --git a/docs/csla.html b/docs/csla.html index 2364661b40..3c5f42a139 100644 --- a/docs/csla.html +++ b/docs/csla.html @@ -254,7 +254,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/csla.json b/docs/csla.json index 8717e8a517..e7fb6265ec 100644 --- a/docs/csla.json +++ b/docs/csla.json @@ -1 +1,20 @@ -{"key": "csla", "short_name": "CSLA License", "name": "CSLA .NET License", "category": "Free Restricted", "owner": "Marimer, LLC", "homepage_url": "https://github.com/MarimerLLC/csla/blob/master/license.txt", "spdx_license_key": "LicenseRef-scancode-csla", "text_urls": ["https://github.com/MarimerLLC/csla/blob/0650fd13adc4689dcd6ec7b8f4609563ee12f401/license.md"], "ignorable_copyrights": ["Copyright 2013 by Marimer, LLC, Eden Prairie, MN", "Copyright 2013 by Marimer, LLC."], "ignorable_holders": ["Marimer, LLC, Eden Prairie, MN", "Marimer, LLC."]} \ No newline at end of file +{ + "key": "csla", + "short_name": "CSLA License", + "name": "CSLA .NET License", + "category": "Free Restricted", + "owner": "Marimer, LLC", + "homepage_url": "https://github.com/MarimerLLC/csla/blob/master/license.txt", + "spdx_license_key": "LicenseRef-scancode-csla", + "text_urls": [ + "https://github.com/MarimerLLC/csla/blob/0650fd13adc4689dcd6ec7b8f4609563ee12f401/license.md" + ], + "ignorable_copyrights": [ + "Copyright 2013 by Marimer, LLC, Eden Prairie, MN", + "Copyright 2013 by Marimer, LLC." + ], + "ignorable_holders": [ + "Marimer, LLC, Eden Prairie, MN", + "Marimer, LLC." + ] +} \ No newline at end of file diff --git a/docs/csprng.LICENSE b/docs/csprng.LICENSE index bd26698fe7..e711a7c44d 100644 --- a/docs/csprng.LICENSE +++ b/docs/csprng.LICENSE @@ -1,3 +1,14 @@ +--- +key: csprng +short_name: CSPRNG +name: CSPRNG +category: Permissive +owner: Peter Gutmann +spdx_license_key: LicenseRef-scancode-csprng +ignorable_emails: + - pgut001@cs.auckland.ac.nz +--- + Redistribution of the CSPRNG modules and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/csprng.html b/docs/csprng.html index 925450dd00..c9e4ba8fd6 100644 --- a/docs/csprng.html +++ b/docs/csprng.html @@ -141,7 +141,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/csprng.json b/docs/csprng.json index a45951f273..686d031bea 100644 --- a/docs/csprng.json +++ b/docs/csprng.json @@ -1 +1,11 @@ -{"key": "csprng", "short_name": "CSPRNG", "name": "CSPRNG", "category": "Permissive", "owner": "Peter Gutmann", "spdx_license_key": "LicenseRef-scancode-csprng", "ignorable_emails": ["pgut001@cs.auckland.ac.nz"]} \ No newline at end of file +{ + "key": "csprng", + "short_name": "CSPRNG", + "name": "CSPRNG", + "category": "Permissive", + "owner": "Peter Gutmann", + "spdx_license_key": "LicenseRef-scancode-csprng", + "ignorable_emails": [ + "pgut001@cs.auckland.ac.nz" + ] +} \ No newline at end of file diff --git a/docs/ctl-linux-firmware.LICENSE b/docs/ctl-linux-firmware.LICENSE index e641bdac9d..6843d568dd 100644 --- a/docs/ctl-linux-firmware.LICENSE +++ b/docs/ctl-linux-firmware.LICENSE @@ -1,3 +1,15 @@ +--- +key: ctl-linux-firmware +short_name: Creative Technology Linux Firmware License +name: Creative Technology Linux Firmware License +category: Proprietary Free +owner: Creative Technology Ltd +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ca0132 +spdx_license_key: LicenseRef-scancode-ctl-linux-firmware +ignorable_urls: + - http://opensource.org/licenses +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/docs/ctl-linux-firmware.html b/docs/ctl-linux-firmware.html index 18c65e5048..0c15da137f 100644 --- a/docs/ctl-linux-firmware.html +++ b/docs/ctl-linux-firmware.html @@ -179,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ctl-linux-firmware.json b/docs/ctl-linux-firmware.json index bfd55d4155..719de6c17e 100644 --- a/docs/ctl-linux-firmware.json +++ b/docs/ctl-linux-firmware.json @@ -1 +1,12 @@ -{"key": "ctl-linux-firmware", "short_name": "Creative Technology Linux Firmware License", "name": "Creative Technology Linux Firmware License", "category": "Proprietary Free", "owner": "Creative Technology Ltd", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ca0132", "spdx_license_key": "LicenseRef-scancode-ctl-linux-firmware", "ignorable_urls": ["http://opensource.org/licenses"]} \ No newline at end of file +{ + "key": "ctl-linux-firmware", + "short_name": "Creative Technology Linux Firmware License", + "name": "Creative Technology Linux Firmware License", + "category": "Proprietary Free", + "owner": "Creative Technology Ltd", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ca0132", + "spdx_license_key": "LicenseRef-scancode-ctl-linux-firmware", + "ignorable_urls": [ + "http://opensource.org/licenses" + ] +} \ No newline at end of file diff --git a/docs/cua-opl-1.0.LICENSE b/docs/cua-opl-1.0.LICENSE index 745ef1f553..e8d91645cd 100644 --- a/docs/cua-opl-1.0.LICENSE +++ b/docs/cua-opl-1.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: cua-opl-1.0 +short_name: CUA-OPL-1.0 +name: CUA Office Public License 1.0 +category: Copyleft Limited +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/cuaoffice.php +notes: Per SPDX.org, this license is OSI certifified. +spdx_license_key: CUA-OPL-1.0 +osi_license_key: CUA-OPL-1.0 +text_urls: + - http://opensource.org/licenses/cuaoffice.php +osi_url: http://opensource.org/licenses/cuaoffice.php +other_urls: + - http://opensource.org/licenses/CUA-OPL-1.0 + - https://opensource.org/licenses/CUA-OPL-1.0 +ignorable_urls: + - http://cuaoffice.sourceforge.net/ +--- + CUA Office Public License Version 1.0 1. Definitions. diff --git a/docs/cua-opl-1.0.html b/docs/cua-opl-1.0.html index e319c4f551..eaf82dae36 100644 --- a/docs/cua-opl-1.0.html +++ b/docs/cua-opl-1.0.html @@ -642,7 +642,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cua-opl-1.0.json b/docs/cua-opl-1.0.json index af1519cf9c..fed10248ae 100644 --- a/docs/cua-opl-1.0.json +++ b/docs/cua-opl-1.0.json @@ -1 +1,22 @@ -{"key": "cua-opl-1.0", "short_name": "CUA-OPL-1.0", "name": "CUA Office Public License 1.0", "category": "Copyleft Limited", "owner": "OSI - Open Source Initiative", "homepage_url": "http://www.opensource.org/licenses/cuaoffice.php", "notes": "Per SPDX.org, this license is OSI certifified.", "spdx_license_key": "CUA-OPL-1.0", "osi_license_key": "CUA-OPL-1.0", "text_urls": ["http://opensource.org/licenses/cuaoffice.php"], "osi_url": "http://opensource.org/licenses/cuaoffice.php", "other_urls": ["http://opensource.org/licenses/CUA-OPL-1.0", "https://opensource.org/licenses/CUA-OPL-1.0"], "ignorable_urls": ["http://cuaoffice.sourceforge.net/"]} \ No newline at end of file +{ + "key": "cua-opl-1.0", + "short_name": "CUA-OPL-1.0", + "name": "CUA Office Public License 1.0", + "category": "Copyleft Limited", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://www.opensource.org/licenses/cuaoffice.php", + "notes": "Per SPDX.org, this license is OSI certifified.", + "spdx_license_key": "CUA-OPL-1.0", + "osi_license_key": "CUA-OPL-1.0", + "text_urls": [ + "http://opensource.org/licenses/cuaoffice.php" + ], + "osi_url": "http://opensource.org/licenses/cuaoffice.php", + "other_urls": [ + "http://opensource.org/licenses/CUA-OPL-1.0", + "https://opensource.org/licenses/CUA-OPL-1.0" + ], + "ignorable_urls": [ + "http://cuaoffice.sourceforge.net/" + ] +} \ No newline at end of file diff --git a/docs/cube.LICENSE b/docs/cube.LICENSE index da5e799feb..69860978a8 100644 --- a/docs/cube.LICENSE +++ b/docs/cube.LICENSE @@ -1,3 +1,17 @@ +--- +key: cube +short_name: Cube License +name: Cube License +category: Permissive +owner: Wouter van Oortmerssen +homepage_url: https://fedoraproject.org/wiki/Licensing/Cube +spdx_license_key: Cube +ignorable_copyrights: + - Copyright (c) 2001-2003 Wouter van Oortmerssen +ignorable_holders: + - Wouter van Oortmerssen +--- + Cube game engine source code, 20 dec 2003 release. Copyright (C) 2001-2003 Wouter van Oortmerssen. diff --git a/docs/cube.html b/docs/cube.html index 64ae80db07..041d19679a 100644 --- a/docs/cube.html +++ b/docs/cube.html @@ -170,7 +170,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cube.json b/docs/cube.json index 77818e27a2..f306209e9a 100644 --- a/docs/cube.json +++ b/docs/cube.json @@ -1 +1,15 @@ -{"key": "cube", "short_name": "Cube License", "name": "Cube License", "category": "Permissive", "owner": "Wouter van Oortmerssen", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Cube", "spdx_license_key": "Cube", "ignorable_copyrights": ["Copyright (c) 2001-2003 Wouter van Oortmerssen"], "ignorable_holders": ["Wouter van Oortmerssen"]} \ No newline at end of file +{ + "key": "cube", + "short_name": "Cube License", + "name": "Cube License", + "category": "Permissive", + "owner": "Wouter van Oortmerssen", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Cube", + "spdx_license_key": "Cube", + "ignorable_copyrights": [ + "Copyright (c) 2001-2003 Wouter van Oortmerssen" + ], + "ignorable_holders": [ + "Wouter van Oortmerssen" + ] +} \ No newline at end of file diff --git a/docs/cubiware-software-1.0.LICENSE b/docs/cubiware-software-1.0.LICENSE index 7a1b06b72b..cddda1aaec 100644 --- a/docs/cubiware-software-1.0.LICENSE +++ b/docs/cubiware-software-1.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: cubiware-software-1.0 +short_name: Cubiware Software License 1.0 +name: Cubiware Sp. z o.o. Software License Version 1.0 +category: Commercial +owner: TiVo +spdx_license_key: LicenseRef-scancode-cubiware-software-1.0 +other_urls: + - https://blog.tivo.com/2015/05/tivo-acquires-cubiware/ +--- + Cubiware Sp. z o.o. Software License Version 1.0 Any rights which are not expressly granted in this License are entirely and diff --git a/docs/cubiware-software-1.0.html b/docs/cubiware-software-1.0.html index 7579f27af7..abac3c64dd 100644 --- a/docs/cubiware-software-1.0.html +++ b/docs/cubiware-software-1.0.html @@ -145,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cubiware-software-1.0.json b/docs/cubiware-software-1.0.json index e50216f508..c598e87ca0 100644 --- a/docs/cubiware-software-1.0.json +++ b/docs/cubiware-software-1.0.json @@ -1 +1,11 @@ -{"key": "cubiware-software-1.0", "short_name": "Cubiware Software License 1.0", "name": "Cubiware Sp. z o.o. Software License Version 1.0", "category": "Commercial", "owner": "TiVo", "spdx_license_key": "LicenseRef-scancode-cubiware-software-1.0", "other_urls": ["https://blog.tivo.com/2015/05/tivo-acquires-cubiware/"]} \ No newline at end of file +{ + "key": "cubiware-software-1.0", + "short_name": "Cubiware Software License 1.0", + "name": "Cubiware Sp. z o.o. Software License Version 1.0", + "category": "Commercial", + "owner": "TiVo", + "spdx_license_key": "LicenseRef-scancode-cubiware-software-1.0", + "other_urls": [ + "https://blog.tivo.com/2015/05/tivo-acquires-cubiware/" + ] +} \ No newline at end of file diff --git a/docs/cups-apple-os-exception.LICENSE b/docs/cups-apple-os-exception.LICENSE index 9a1ff18b3c..b1196b4970 100644 --- a/docs/cups-apple-os-exception.LICENSE +++ b/docs/cups-apple-os-exception.LICENSE @@ -1,3 +1,14 @@ +--- +key: cups-apple-os-exception +short_name: CUPS Apple OS Exception to GPL and LGPL +name: CUPS Apple OS Exception to GPL and LGPL +category: Copyleft Limited +owner: Easy Software Products +homepage_url: https://opensource.apple.com/source/cups/cups-91/LICENSE.txt.auto.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-cups-apple-os-exception +--- + In addition, as the copyright holder of CUPS, Apple Inc. grants the following special exceptions: diff --git a/docs/cups-apple-os-exception.html b/docs/cups-apple-os-exception.html index b014699c3f..32e93fd1c5 100644 --- a/docs/cups-apple-os-exception.html +++ b/docs/cups-apple-os-exception.html @@ -183,7 +183,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cups-apple-os-exception.json b/docs/cups-apple-os-exception.json index d4640212ea..dc1f78e590 100644 --- a/docs/cups-apple-os-exception.json +++ b/docs/cups-apple-os-exception.json @@ -1 +1,10 @@ -{"key": "cups-apple-os-exception", "short_name": "CUPS Apple OS Exception to GPL and LGPL", "name": "CUPS Apple OS Exception to GPL and LGPL", "category": "Copyleft Limited", "owner": "Easy Software Products", "homepage_url": "https://opensource.apple.com/source/cups/cups-91/LICENSE.txt.auto.html", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-cups-apple-os-exception"} \ No newline at end of file +{ + "key": "cups-apple-os-exception", + "short_name": "CUPS Apple OS Exception to GPL and LGPL", + "name": "CUPS Apple OS Exception to GPL and LGPL", + "category": "Copyleft Limited", + "owner": "Easy Software Products", + "homepage_url": "https://opensource.apple.com/source/cups/cups-91/LICENSE.txt.auto.html", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-cups-apple-os-exception" +} \ No newline at end of file diff --git a/docs/cups.LICENSE b/docs/cups.LICENSE index b254bfb043..86ba0a7fa8 100644 --- a/docs/cups.LICENSE +++ b/docs/cups.LICENSE @@ -1,3 +1,26 @@ +--- +key: cups +short_name: CUPS License +name: CUPS License +category: Copyleft +owner: Apple +homepage_url: http://www.cups.org/ +spdx_license_key: LicenseRef-scancode-cups +text_urls: + - http://www.cups.org/ +ignorable_copyrights: + - Copyright 2007-2009 by Apple Inc. + - copyright 2006 by Jelmer Vernooij +ignorable_holders: + - Apple Inc. + - Jelmer Vernooij +ignorable_authors: + - Apple Inc. + - permission from Apple Inc. +ignorable_urls: + - http://www.cups.org/ +--- + Software License Agreement Copyright 2007-2009 by Apple Inc. diff --git a/docs/cups.html b/docs/cups.html index 9486921d46..3dc6ff1ebe 100644 --- a/docs/cups.html +++ b/docs/cups.html @@ -225,7 +225,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cups.json b/docs/cups.json index c851788474..48785a1835 100644 --- a/docs/cups.json +++ b/docs/cups.json @@ -1 +1,27 @@ -{"key": "cups", "short_name": "CUPS License", "name": "CUPS License", "category": "Copyleft", "owner": "Apple", "homepage_url": "http://www.cups.org/", "spdx_license_key": "LicenseRef-scancode-cups", "text_urls": ["http://www.cups.org/"], "ignorable_copyrights": ["Copyright 2007-2009 by Apple Inc.", "copyright 2006 by Jelmer Vernooij"], "ignorable_holders": ["Apple Inc.", "Jelmer Vernooij"], "ignorable_authors": ["Apple Inc.", "permission from Apple Inc."], "ignorable_urls": ["http://www.cups.org/"]} \ No newline at end of file +{ + "key": "cups", + "short_name": "CUPS License", + "name": "CUPS License", + "category": "Copyleft", + "owner": "Apple", + "homepage_url": "http://www.cups.org/", + "spdx_license_key": "LicenseRef-scancode-cups", + "text_urls": [ + "http://www.cups.org/" + ], + "ignorable_copyrights": [ + "Copyright 2007-2009 by Apple Inc.", + "copyright 2006 by Jelmer Vernooij" + ], + "ignorable_holders": [ + "Apple Inc.", + "Jelmer Vernooij" + ], + "ignorable_authors": [ + "Apple Inc.", + "permission from Apple Inc." + ], + "ignorable_urls": [ + "http://www.cups.org/" + ] +} \ No newline at end of file diff --git a/docs/curl.LICENSE b/docs/curl.LICENSE index c29b207784..5af5af186a 100644 --- a/docs/curl.LICENSE +++ b/docs/curl.LICENSE @@ -1,3 +1,21 @@ +--- +key: curl +short_name: cURL License +name: cURL License +category: Permissive +owner: cURL +homepage_url: http://curl.haxx.se/ +spdx_license_key: curl +text_urls: + - http://curl.haxx.se/docs/copyright.html + - http://www.focuseek.com/manuals/License/curl-license.html +faq_url: http://curl.haxx.se/docs/faq.html +other_urls: + - http://curl.haxx.se/legal/licmix.html + - https://github.com/bagder/curl/blob/master/COPYING +minimum_coverage: 15 +--- + Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. diff --git a/docs/curl.html b/docs/curl.html index d2e623e985..657e3c2926 100644 --- a/docs/curl.html +++ b/docs/curl.html @@ -173,7 +173,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/curl.json b/docs/curl.json index 0b29d127d8..02307f756e 100644 --- a/docs/curl.json +++ b/docs/curl.json @@ -1 +1,19 @@ -{"key": "curl", "short_name": "cURL License", "name": "cURL License", "category": "Permissive", "owner": "cURL", "homepage_url": "http://curl.haxx.se/", "spdx_license_key": "curl", "text_urls": ["http://curl.haxx.se/docs/copyright.html", "http://www.focuseek.com/manuals/License/curl-license.html"], "faq_url": "http://curl.haxx.se/docs/faq.html", "other_urls": ["http://curl.haxx.se/legal/licmix.html", "https://github.com/bagder/curl/blob/master/COPYING"], "minimum_coverage": 15} \ No newline at end of file +{ + "key": "curl", + "short_name": "cURL License", + "name": "cURL License", + "category": "Permissive", + "owner": "cURL", + "homepage_url": "http://curl.haxx.se/", + "spdx_license_key": "curl", + "text_urls": [ + "http://curl.haxx.se/docs/copyright.html", + "http://www.focuseek.com/manuals/License/curl-license.html" + ], + "faq_url": "http://curl.haxx.se/docs/faq.html", + "other_urls": [ + "http://curl.haxx.se/legal/licmix.html", + "https://github.com/bagder/curl/blob/master/COPYING" + ], + "minimum_coverage": 15 +} \ No newline at end of file diff --git a/docs/cve-tou.LICENSE b/docs/cve-tou.LICENSE index 63249257ec..89460f0286 100644 --- a/docs/cve-tou.LICENSE +++ b/docs/cve-tou.LICENSE @@ -1,3 +1,13 @@ +--- +key: cve-tou +short_name: CVE ToU +name: Common Vulnerability Enumeration ToU License +category: Permissive +owner: Mitre +homepage_url: https://cve.mitre.org/about/termsofuse.html +spdx_license_key: LicenseRef-scancode-cve-tou +--- + CVE Usage: MITRE hereby grants 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 diff --git a/docs/cve-tou.html b/docs/cve-tou.html index fc88244d1b..f231b2ba2d 100644 --- a/docs/cve-tou.html +++ b/docs/cve-tou.html @@ -142,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cve-tou.json b/docs/cve-tou.json index 88b07827a3..9a25509966 100644 --- a/docs/cve-tou.json +++ b/docs/cve-tou.json @@ -1 +1,9 @@ -{"key": "cve-tou", "short_name": "CVE ToU", "name": "Common Vulnerability Enumeration ToU License", "category": "Permissive", "owner": "Mitre", "homepage_url": "https://cve.mitre.org/about/termsofuse.html", "spdx_license_key": "LicenseRef-scancode-cve-tou"} \ No newline at end of file +{ + "key": "cve-tou", + "short_name": "CVE ToU", + "name": "Common Vulnerability Enumeration ToU License", + "category": "Permissive", + "owner": "Mitre", + "homepage_url": "https://cve.mitre.org/about/termsofuse.html", + "spdx_license_key": "LicenseRef-scancode-cve-tou" +} \ No newline at end of file diff --git a/docs/cvwl.LICENSE b/docs/cvwl.LICENSE index af068cd72f..e23bf9847e 100644 --- a/docs/cvwl.LICENSE +++ b/docs/cvwl.LICENSE @@ -1,3 +1,22 @@ +--- +key: cvwl +short_name: Collaborative Virtual Workspace License +name: Collaborative Virtual Workspace License +category: Proprietary Free +owner: Mitre +homepage_url: https://opensource.org/licenses/mitrepl +spdx_license_key: LicenseRef-scancode-cvwl +minimum_coverage: 30 +ignorable_copyrights: + - Copyright (c) . The MITRE Corporation (http://www.mitre.org/) +ignorable_holders: + - The MITRE Corporation +ignorable_urls: + - http://www.mitre.org/ +ignorable_emails: + - corpc@mitre.org +--- + Collaborative Virtual Workspace License (CVW) License Agreement General @@ -14,4 +33,4 @@ General 5. Downloaders of the CVW software may choose to have their access to and use of the CVW software governed under either the GNU General Public License (Version 2) or the Mozilla License (Version 1.0). In either case, if you transmit source code improvements or modifications to MITRE, you agree to assign to MITRE copyright to such improvements or modifications, which MITRE will then make available from MITRE's web site. - 6. If you choose to use the Mozilla License (Version 1.0), please note that because the software in this module was developed using, at least in part, Government funds, the Government has certain rights in the module which apply instead of the Government rights in Section 10 of the Mozilla License. These Government rights DO NOT affect your right to use the module on an Open Source basis as set forth in the Mozilla License. The statement of Government rights which replaces Section 10 of the Mozilla License is stated in Section 4 above. + 6. If you choose to use the Mozilla License (Version 1.0), please note that because the software in this module was developed using, at least in part, Government funds, the Government has certain rights in the module which apply instead of the Government rights in Section 10 of the Mozilla License. These Government rights DO NOT affect your right to use the module on an Open Source basis as set forth in the Mozilla License. The statement of Government rights which replaces Section 10 of the Mozilla License is stated in Section 4 above. \ No newline at end of file diff --git a/docs/cvwl.html b/docs/cvwl.html index f7d0102853..2f500bb2e9 100644 --- a/docs/cvwl.html +++ b/docs/cvwl.html @@ -174,8 +174,7 @@ 5. Downloaders of the CVW software may choose to have their access to and use of the CVW software governed under either the GNU General Public License (Version 2) or the Mozilla License (Version 1.0). In either case, if you transmit source code improvements or modifications to MITRE, you agree to assign to MITRE copyright to such improvements or modifications, which MITRE will then make available from MITRE's web site. - 6. If you choose to use the Mozilla License (Version 1.0), please note that because the software in this module was developed using, at least in part, Government funds, the Government has certain rights in the module which apply instead of the Government rights in Section 10 of the Mozilla License. These Government rights DO NOT affect your right to use the module on an Open Source basis as set forth in the Mozilla License. The statement of Government rights which replaces Section 10 of the Mozilla License is stated in Section 4 above. - + 6. If you choose to use the Mozilla License (Version 1.0), please note that because the software in this module was developed using, at least in part, Government funds, the Government has certain rights in the module which apply instead of the Government rights in Section 10 of the Mozilla License. These Government rights DO NOT affect your right to use the module on an Open Source basis as set forth in the Mozilla License. The statement of Government rights which replaces Section 10 of the Mozilla License is stated in Section 4 above.
@@ -187,7 +186,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cvwl.json b/docs/cvwl.json index 28a2ee9361..fcc1bb50d8 100644 --- a/docs/cvwl.json +++ b/docs/cvwl.json @@ -1 +1,22 @@ -{"key": "cvwl", "short_name": "Collaborative Virtual Workspace License", "name": "Collaborative Virtual Workspace License", "category": "Proprietary Free", "owner": "Mitre", "homepage_url": "https://opensource.org/licenses/mitrepl", "spdx_license_key": "LicenseRef-scancode-cvwl", "minimum_coverage": 30, "ignorable_copyrights": ["Copyright (c) . The MITRE Corporation (http://www.mitre.org/)"], "ignorable_holders": ["The MITRE Corporation"], "ignorable_urls": ["http://www.mitre.org/"], "ignorable_emails": ["corpc@mitre.org"]} \ No newline at end of file +{ + "key": "cvwl", + "short_name": "Collaborative Virtual Workspace License", + "name": "Collaborative Virtual Workspace License", + "category": "Proprietary Free", + "owner": "Mitre", + "homepage_url": "https://opensource.org/licenses/mitrepl", + "spdx_license_key": "LicenseRef-scancode-cvwl", + "minimum_coverage": 30, + "ignorable_copyrights": [ + "Copyright (c) . The MITRE Corporation (http://www.mitre.org/)" + ], + "ignorable_holders": [ + "The MITRE Corporation" + ], + "ignorable_urls": [ + "http://www.mitre.org/" + ], + "ignorable_emails": [ + "corpc@mitre.org" + ] +} \ No newline at end of file diff --git a/docs/cwe-tou.LICENSE b/docs/cwe-tou.LICENSE index b93b59cdaa..e36ce3034d 100644 --- a/docs/cwe-tou.LICENSE +++ b/docs/cwe-tou.LICENSE @@ -1,3 +1,13 @@ +--- +key: cwe-tou +short_name: CWE ToU +name: Common Weaness Enumeration ToU License +category: Permissive +owner: Mitre +homepage_url: https://cwe.mitre.org/about/termsofuse.html +spdx_license_key: LicenseRef-scancode-cwe-tou +--- + CWE Usage: MITRE hereby grants you a non-exclusive, royalty-free license to use CWE for research, development, and commercial purposes. Any copy you make for such purposes is authorized on the condition that you reproduce MITRE’s diff --git a/docs/cwe-tou.html b/docs/cwe-tou.html index 8af59e517c..b0789abb93 100644 --- a/docs/cwe-tou.html +++ b/docs/cwe-tou.html @@ -146,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cwe-tou.json b/docs/cwe-tou.json index a7d1f1f126..be95c762b3 100644 --- a/docs/cwe-tou.json +++ b/docs/cwe-tou.json @@ -1 +1,9 @@ -{"key": "cwe-tou", "short_name": "CWE ToU", "name": "Common Weaness Enumeration ToU License", "category": "Permissive", "owner": "Mitre", "homepage_url": "https://cwe.mitre.org/about/termsofuse.html", "spdx_license_key": "LicenseRef-scancode-cwe-tou"} \ No newline at end of file +{ + "key": "cwe-tou", + "short_name": "CWE ToU", + "name": "Common Weaness Enumeration ToU License", + "category": "Permissive", + "owner": "Mitre", + "homepage_url": "https://cwe.mitre.org/about/termsofuse.html", + "spdx_license_key": "LicenseRef-scancode-cwe-tou" +} \ No newline at end of file diff --git a/docs/cximage.LICENSE b/docs/cximage.LICENSE index 4a49d8c297..89cd3b539d 100644 --- a/docs/cximage.LICENSE +++ b/docs/cximage.LICENSE @@ -1,3 +1,22 @@ +--- +key: cximage +short_name: CxImage License +name: CxImage License +category: Permissive +owner: CxImage Project +homepage_url: http://www.xdp.it/cximage/ +spdx_license_key: LicenseRef-scancode-cximage +minimum_coverage: 30 +ignorable_copyrights: + - Copyright (c) 1995, Alejandro Aguilar Sierra + - Copyright (c) 2001 - 2004, Davide Pizzolato +ignorable_holders: + - Alejandro Aguilar Sierra + - Davide Pizzolato +ignorable_urls: + - http://www.xdp.it/ +--- + This copy of the CxImage notices is provided for your convenience. In case of any discrepancy between this copy and the notices in the file ximage.h that is included in the CxImage distribution, the latter shall prevail. diff --git a/docs/cximage.html b/docs/cximage.html index 1b8ef6216e..5521afc315 100644 --- a/docs/cximage.html +++ b/docs/cximage.html @@ -208,7 +208,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cximage.json b/docs/cximage.json index bfa31a8c47..a8933f329f 100644 --- a/docs/cximage.json +++ b/docs/cximage.json @@ -1 +1,21 @@ -{"key": "cximage", "short_name": "CxImage License", "name": "CxImage License", "category": "Permissive", "owner": "CxImage Project", "homepage_url": "http://www.xdp.it/cximage/", "spdx_license_key": "LicenseRef-scancode-cximage", "minimum_coverage": 30, "ignorable_copyrights": ["Copyright (c) 1995, Alejandro Aguilar Sierra", "Copyright (c) 2001 - 2004, Davide Pizzolato"], "ignorable_holders": ["Alejandro Aguilar Sierra", "Davide Pizzolato"], "ignorable_urls": ["http://www.xdp.it/"]} \ No newline at end of file +{ + "key": "cximage", + "short_name": "CxImage License", + "name": "CxImage License", + "category": "Permissive", + "owner": "CxImage Project", + "homepage_url": "http://www.xdp.it/cximage/", + "spdx_license_key": "LicenseRef-scancode-cximage", + "minimum_coverage": 30, + "ignorable_copyrights": [ + "Copyright (c) 1995, Alejandro Aguilar Sierra", + "Copyright (c) 2001 - 2004, Davide Pizzolato" + ], + "ignorable_holders": [ + "Alejandro Aguilar Sierra", + "Davide Pizzolato" + ], + "ignorable_urls": [ + "http://www.xdp.it/" + ] +} \ No newline at end of file diff --git a/docs/cygwin-exception-2.0.LICENSE b/docs/cygwin-exception-2.0.LICENSE index 5dd2de1c5a..be55edd3de 100644 --- a/docs/cygwin-exception-2.0.LICENSE +++ b/docs/cygwin-exception-2.0.LICENSE @@ -1,3 +1,46 @@ +--- +key: cygwin-exception-2.0 +short_name: Cygwin exception to GPL 2.0 +name: Cygwin exception to GPL 2.0 +category: Copyleft Limited +owner: Cygwin Project +homepage_url: http://cygwin.com/licensing.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-cygwin-exception-2.0 +text_urls: + - http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src +standard_notice: | + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License (GPL) version 2, as + published by the Free Software Foundation. + 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, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + *** NOTE *** + In accordance with section 10 of the GPL, Red Hat permits programs whose + sources are distributed under a license that complies with the Open + Source definition to be linked with libcygwin.a without libcygwin.a + itself causing the resulting program to be covered by the GNU GPL. + This means that you can port an Open Source(tm) application to cygwin, + and distribute that executable as if it didn't include a copy of + libcygwin.a linked into it. Note that this does not apply to the cygwin + DLL itself. If you distribute a (possibly modified) version of the DLL + you must adhere to the terms of the GPL, i.e. you must provide sources + for the cygwin DLL. + See http://www.opensource.org/docs/osd/ for the precise Open Source + Definition referenced above. + Red Hat sells a special Cygwin License for customers who are unable to + provide their application in open source code form. For more + information, please see: http://www.redhat.com/software/cygwin/, or call + +1-866-2REDHAT ext. 45300 (toll-free in the US). + Outside the US call your regional Red Hat office, see + http://www.redhat.com/about/contact/ww/ +--- + In accordance with section 10 of the GPL, Red Hat permits programs whose sources are distributed under a license that complies with the Open Source definition to be linked with libcygwin.a without libcygwin.a diff --git a/docs/cygwin-exception-2.0.html b/docs/cygwin-exception-2.0.html index 7871542602..0172422672 100644 --- a/docs/cygwin-exception-2.0.html +++ b/docs/cygwin-exception-2.0.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cygwin-exception-2.0.json b/docs/cygwin-exception-2.0.json index 93c3dc7592..2df46e76d1 100644 --- a/docs/cygwin-exception-2.0.json +++ b/docs/cygwin-exception-2.0.json @@ -1 +1,14 @@ -{"key": "cygwin-exception-2.0", "short_name": "Cygwin exception to GPL 2.0", "name": "Cygwin exception to GPL 2.0", "category": "Copyleft Limited", "owner": "Cygwin Project", "homepage_url": "http://cygwin.com/licensing.html", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-cygwin-exception-2.0", "text_urls": ["http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src"], "standard_notice": "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License (GPL) version 2, as\npublished by the Free Software Foundation.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n*** NOTE ***\nIn accordance with section 10 of the GPL, Red Hat permits programs whose\nsources are distributed under a license that complies with the Open\nSource definition to be linked with libcygwin.a without libcygwin.a\nitself causing the resulting program to be covered by the GNU GPL.\nThis means that you can port an Open Source(tm) application to cygwin,\nand distribute that executable as if it didn't include a copy of\nlibcygwin.a linked into it. Note that this does not apply to the cygwin\nDLL itself. If you distribute a (possibly modified) version of the DLL\nyou must adhere to the terms of the GPL, i.e. you must provide sources\nfor the cygwin DLL.\nSee http://www.opensource.org/docs/osd/ for the precise Open Source\nDefinition referenced above.\nRed Hat sells a special Cygwin License for customers who are unable to\nprovide their application in open source code form. For more\ninformation, please see: http://www.redhat.com/software/cygwin/, or call\n+1-866-2REDHAT ext. 45300 (toll-free in the US).\nOutside the US call your regional Red Hat office, see\nhttp://www.redhat.com/about/contact/ww/\n"} \ No newline at end of file +{ + "key": "cygwin-exception-2.0", + "short_name": "Cygwin exception to GPL 2.0", + "name": "Cygwin exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "Cygwin Project", + "homepage_url": "http://cygwin.com/licensing.html", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-cygwin-exception-2.0", + "text_urls": [ + "http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src" + ], + "standard_notice": "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License (GPL) version 2, as\npublished by the Free Software Foundation.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n*** NOTE ***\nIn accordance with section 10 of the GPL, Red Hat permits programs whose\nsources are distributed under a license that complies with the Open\nSource definition to be linked with libcygwin.a without libcygwin.a\nitself causing the resulting program to be covered by the GNU GPL.\nThis means that you can port an Open Source(tm) application to cygwin,\nand distribute that executable as if it didn't include a copy of\nlibcygwin.a linked into it. Note that this does not apply to the cygwin\nDLL itself. If you distribute a (possibly modified) version of the DLL\nyou must adhere to the terms of the GPL, i.e. you must provide sources\nfor the cygwin DLL.\nSee http://www.opensource.org/docs/osd/ for the precise Open Source\nDefinition referenced above.\nRed Hat sells a special Cygwin License for customers who are unable to\nprovide their application in open source code form. For more\ninformation, please see: http://www.redhat.com/software/cygwin/, or call\n+1-866-2REDHAT ext. 45300 (toll-free in the US).\nOutside the US call your regional Red Hat office, see\nhttp://www.redhat.com/about/contact/ww/\n" +} \ No newline at end of file diff --git a/docs/cygwin-exception-3.0.LICENSE b/docs/cygwin-exception-3.0.LICENSE index b03f89e6ba..0a6d594beb 100644 --- a/docs/cygwin-exception-3.0.LICENSE +++ b/docs/cygwin-exception-3.0.LICENSE @@ -1,3 +1,73 @@ +--- +key: cygwin-exception-3.0 +short_name: Cygwin exception to GPL 3.0 or later +name: Cygwin exception to GPL 3.0 or later +category: Copyleft Limited +owner: Cygwin Project +homepage_url: http://cygwin.com/licensing.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-cygwin-exception-3.0 +text_urls: + - http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src +other_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt + - http://www.opensource.org/docs/osd/ + - http://www.redhat.com/software/cygwin/ + - http://www.redhat.com/about/contact/ww/ +standard_notice: | + Cygwin is free software. Red Hat, Inc. licenses Cygwin to you under the + terms of the GNU General Public License as published by the Free Software + Foundation; you can redistribute it and/or modify it under the terms of + the GNU General Public License either version 3 of the license, or (at your + option) any later version (GPLv3+), along with the additional permissions + given below. + There is NO WARRANTY for this software, express or implied, including + the implied warranties 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 . + Additional Permissions: + 1. Linking Exception. + As a special exception to GPLv3+, Red Hat grants you permission to link + software whose sources are distributed under a license that satisfies + the Open Source Definition with libcygwin.a, without libcygwin.a + itself causing the resulting program to be covered by GPLv3+. + This means that you can port an Open Source application to Cygwin, and + distribute that executable as if it didn't include a copy of + libcygwin.a linked into it. Note that this does not apply to the + Cygwin DLL itself. If you distribute a (possibly modified) version of + the Cygwin DLL, you must adhere to the terms of GPLv3+, including the + requirement to provide sources for the Cygwin DLL, unless you have obtained + a special Cygwin license to distribute the Cygwin DLL in only its binary + form (see below). + See http://www.opensource.org/docs/osd/ for the precise Open Source + Definition referenced above. + 2. Files Excluded from GPL Coverage. + Red Hat grants you permission to distribute Cygwin with the following + files, which are not considered part of Cygwin and are not governed by + GPLv3+, in source or binary form. + winsup\testsuite\winsup.api\msgtest.c + winsup\testsuite\winsup.api\semtest.c + winsup\testsuite\winsup.api\shmtest.c + Red Hat grants you permission to link or combine code in Cygwin with + code in or corresponding to the following files, which are not + considered part of Cygwin and are not governed by GPLv3+, and to + distribute such combinations under terms of your choice, provided that + such terms are otherwise consistent with the application of GPLv3+ to + Cygwin itself. You must comply with GPLv3+ with respect to all + portions of such combinations other than those that correspond to or + are derived from such non-Cygwin code but which do not correspond to + or are not derived from Cygwin itself. + winsup\cygserver\sysv_shm.cc + 3. Alternative License. + Red Hat sells a special Cygwin License for customers who are unable to + provide their application in open source code form. For more + information, please see: http://www.redhat.com/software/cygwin/, or call + +1-866-2REDHAT ext. 45300 (toll-free in the US). + Outside the US call your regional Red Hat office, see + http://www.redhat.com/about/contact/ww/ +--- + As a special exception to GPLv3+, Red Hat grants you permission to link software whose sources are distributed under a license that satisfies the Open Source Definition with libcygwin.a, without libcygwin.a diff --git a/docs/cygwin-exception-3.0.html b/docs/cygwin-exception-3.0.html index f5f5e50a4f..9ec135d8cb 100644 --- a/docs/cygwin-exception-3.0.html +++ b/docs/cygwin-exception-3.0.html @@ -213,7 +213,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cygwin-exception-3.0.json b/docs/cygwin-exception-3.0.json index 441405ffe1..9fd516ef36 100644 --- a/docs/cygwin-exception-3.0.json +++ b/docs/cygwin-exception-3.0.json @@ -1 +1,20 @@ -{"key": "cygwin-exception-3.0", "short_name": "Cygwin exception to GPL 3.0 or later", "name": "Cygwin exception to GPL 3.0 or later", "category": "Copyleft Limited", "owner": "Cygwin Project", "homepage_url": "http://cygwin.com/licensing.html", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-cygwin-exception-3.0", "text_urls": ["http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src"], "other_urls": ["http://www.gnu.org/licenses/gpl-3.0.txt", "http://www.opensource.org/docs/osd/", "http://www.redhat.com/software/cygwin/", "http://www.redhat.com/about/contact/ww/"], "standard_notice": "Cygwin is free software. Red Hat, Inc. licenses Cygwin to you under the\nterms of the GNU General Public License as published by the Free Software\nFoundation; you can redistribute it and/or modify it under the terms of\nthe GNU General Public License either version 3 of the license, or (at your\noption) any later version (GPLv3+), along with the additional permissions\ngiven below.\nThere is NO WARRANTY for this software, express or implied, including\nthe implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR\nPURPOSE. See the GNU General Public License for more details.\nYou should have received a copy of the GNU General Public License along\nwith this program. If not, see .\nAdditional Permissions:\n1. Linking Exception.\nAs a special exception to GPLv3+, Red Hat grants you permission to link\nsoftware whose sources are distributed under a license that satisfies\nthe Open Source Definition with libcygwin.a, without libcygwin.a\nitself causing the resulting program to be covered by GPLv3+.\nThis means that you can port an Open Source application to Cygwin, and\ndistribute that executable as if it didn't include a copy of\nlibcygwin.a linked into it. Note that this does not apply to the\nCygwin DLL itself. If you distribute a (possibly modified) version of\nthe Cygwin DLL, you must adhere to the terms of GPLv3+, including the\nrequirement to provide sources for the Cygwin DLL, unless you have obtained\na special Cygwin license to distribute the Cygwin DLL in only its binary\nform (see below).\nSee http://www.opensource.org/docs/osd/ for the precise Open Source\nDefinition referenced above.\n2. Files Excluded from GPL Coverage.\nRed Hat grants you permission to distribute Cygwin with the following\nfiles, which are not considered part of Cygwin and are not governed by\nGPLv3+, in source or binary form.\nwinsup\\testsuite\\winsup.api\\msgtest.c\nwinsup\\testsuite\\winsup.api\\semtest.c\nwinsup\\testsuite\\winsup.api\\shmtest.c\nRed Hat grants you permission to link or combine code in Cygwin with\ncode in or corresponding to the following files, which are not\nconsidered part of Cygwin and are not governed by GPLv3+, and to\ndistribute such combinations under terms of your choice, provided that\nsuch terms are otherwise consistent with the application of GPLv3+ to\nCygwin itself. You must comply with GPLv3+ with respect to all\nportions of such combinations other than those that correspond to or\nare derived from such non-Cygwin code but which do not correspond to\nor are not derived from Cygwin itself.\nwinsup\\cygserver\\sysv_shm.cc\n3. Alternative License.\nRed Hat sells a special Cygwin License for customers who are unable to\nprovide their application in open source code form. For more\ninformation, please see: http://www.redhat.com/software/cygwin/, or call\n+1-866-2REDHAT ext. 45300 (toll-free in the US).\nOutside the US call your regional Red Hat office, see\nhttp://www.redhat.com/about/contact/ww/\n"} \ No newline at end of file +{ + "key": "cygwin-exception-3.0", + "short_name": "Cygwin exception to GPL 3.0 or later", + "name": "Cygwin exception to GPL 3.0 or later", + "category": "Copyleft Limited", + "owner": "Cygwin Project", + "homepage_url": "http://cygwin.com/licensing.html", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-cygwin-exception-3.0", + "text_urls": [ + "http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src" + ], + "other_urls": [ + "http://www.gnu.org/licenses/gpl-3.0.txt", + "http://www.opensource.org/docs/osd/", + "http://www.redhat.com/software/cygwin/", + "http://www.redhat.com/about/contact/ww/" + ], + "standard_notice": "Cygwin is free software. Red Hat, Inc. licenses Cygwin to you under the\nterms of the GNU General Public License as published by the Free Software\nFoundation; you can redistribute it and/or modify it under the terms of\nthe GNU General Public License either version 3 of the license, or (at your\noption) any later version (GPLv3+), along with the additional permissions\ngiven below.\nThere is NO WARRANTY for this software, express or implied, including\nthe implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR\nPURPOSE. See the GNU General Public License for more details.\nYou should have received a copy of the GNU General Public License along\nwith this program. If not, see .\nAdditional Permissions:\n1. Linking Exception.\nAs a special exception to GPLv3+, Red Hat grants you permission to link\nsoftware whose sources are distributed under a license that satisfies\nthe Open Source Definition with libcygwin.a, without libcygwin.a\nitself causing the resulting program to be covered by GPLv3+.\nThis means that you can port an Open Source application to Cygwin, and\ndistribute that executable as if it didn't include a copy of\nlibcygwin.a linked into it. Note that this does not apply to the\nCygwin DLL itself. If you distribute a (possibly modified) version of\nthe Cygwin DLL, you must adhere to the terms of GPLv3+, including the\nrequirement to provide sources for the Cygwin DLL, unless you have obtained\na special Cygwin license to distribute the Cygwin DLL in only its binary\nform (see below).\nSee http://www.opensource.org/docs/osd/ for the precise Open Source\nDefinition referenced above.\n2. Files Excluded from GPL Coverage.\nRed Hat grants you permission to distribute Cygwin with the following\nfiles, which are not considered part of Cygwin and are not governed by\nGPLv3+, in source or binary form.\nwinsup\\testsuite\\winsup.api\\msgtest.c\nwinsup\\testsuite\\winsup.api\\semtest.c\nwinsup\\testsuite\\winsup.api\\shmtest.c\nRed Hat grants you permission to link or combine code in Cygwin with\ncode in or corresponding to the following files, which are not\nconsidered part of Cygwin and are not governed by GPLv3+, and to\ndistribute such combinations under terms of your choice, provided that\nsuch terms are otherwise consistent with the application of GPLv3+ to\nCygwin itself. You must comply with GPLv3+ with respect to all\nportions of such combinations other than those that correspond to or\nare derived from such non-Cygwin code but which do not correspond to\nor are not derived from Cygwin itself.\nwinsup\\cygserver\\sysv_shm.cc\n3. Alternative License.\nRed Hat sells a special Cygwin License for customers who are unable to\nprovide their application in open source code form. For more\ninformation, please see: http://www.redhat.com/software/cygwin/, or call\n+1-866-2REDHAT ext. 45300 (toll-free in the US).\nOutside the US call your regional Red Hat office, see\nhttp://www.redhat.com/about/contact/ww/\n" +} \ No newline at end of file diff --git a/docs/cygwin-exception-lgpl-3.0-plus.LICENSE b/docs/cygwin-exception-lgpl-3.0-plus.LICENSE index 662b76b489..14bf709082 100644 --- a/docs/cygwin-exception-lgpl-3.0-plus.LICENSE +++ b/docs/cygwin-exception-lgpl-3.0-plus.LICENSE @@ -1,3 +1,28 @@ +--- +key: cygwin-exception-lgpl-3.0-plus +short_name: Cygwin exception to LGPL 3.0 or later +name: Cygwin exception to LGPL 3.0 or later +category: Copyleft Limited +owner: Cygwin Project +homepage_url: https://cygwin.com/licensing.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-cygwin-exception-lgpl-3.0-plus +other_urls: + - http://www.gnu.org/licenses/lgpl-3.0.txt +standard_notice: | + The Cygwin API library found in the winsup subdirectory of the source code + is covered by the GNU Lesser General Public License (LGPL) version 3 or + later. For details of the requirements of LGPLv3, please read the GNU + Lesser General Public License (LGPL). + Cygwin™ Linking Exception + As a special exception, the copyright holders of the Cygwin library grant + you additional permission to link libcygwin.a, crt0.o, and gcrt0.o with + independent modules to produce an executable, and to convey the resulting + executable under terms of your choice, without any need to comply with the + conditions of LGPLv3 section 4. An independent module is a module which is + not itself based on the Cygwin library. +--- + As a special exception, the copyright holders of the Cygwin library grant you additional permission to link libcygwin.a, crt0.o, and gcrt0.o with independent modules to produce an executable, and to convey the resulting executable under diff --git a/docs/cygwin-exception-lgpl-3.0-plus.html b/docs/cygwin-exception-lgpl-3.0-plus.html index dccb6e45e7..d0bab099e0 100644 --- a/docs/cygwin-exception-lgpl-3.0-plus.html +++ b/docs/cygwin-exception-lgpl-3.0-plus.html @@ -166,7 +166,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cygwin-exception-lgpl-3.0-plus.json b/docs/cygwin-exception-lgpl-3.0-plus.json index dd2562565a..0006a5d12b 100644 --- a/docs/cygwin-exception-lgpl-3.0-plus.json +++ b/docs/cygwin-exception-lgpl-3.0-plus.json @@ -1 +1,14 @@ -{"key": "cygwin-exception-lgpl-3.0-plus", "short_name": "Cygwin exception to LGPL 3.0 or later", "name": "Cygwin exception to LGPL 3.0 or later", "category": "Copyleft Limited", "owner": "Cygwin Project", "homepage_url": "https://cygwin.com/licensing.html", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-cygwin-exception-lgpl-3.0-plus", "other_urls": ["http://www.gnu.org/licenses/lgpl-3.0.txt"], "standard_notice": "The Cygwin API library found in the winsup subdirectory of the source code\nis covered by the GNU Lesser General Public License (LGPL) version 3 or\nlater. For details of the requirements of LGPLv3, please read the GNU\nLesser General Public License (LGPL).\nCygwin\u2122 Linking Exception\nAs a special exception, the copyright holders of the Cygwin library grant\nyou additional permission to link libcygwin.a, crt0.o, and gcrt0.o with\nindependent modules to produce an executable, and to convey the resulting\nexecutable under terms of your choice, without any need to comply with the\nconditions of LGPLv3 section 4. An independent module is a module which is\nnot itself based on the Cygwin library.\n"} \ No newline at end of file +{ + "key": "cygwin-exception-lgpl-3.0-plus", + "short_name": "Cygwin exception to LGPL 3.0 or later", + "name": "Cygwin exception to LGPL 3.0 or later", + "category": "Copyleft Limited", + "owner": "Cygwin Project", + "homepage_url": "https://cygwin.com/licensing.html", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-cygwin-exception-lgpl-3.0-plus", + "other_urls": [ + "http://www.gnu.org/licenses/lgpl-3.0.txt" + ], + "standard_notice": "The Cygwin API library found in the winsup subdirectory of the source code\nis covered by the GNU Lesser General Public License (LGPL) version 3 or\nlater. For details of the requirements of LGPLv3, please read the GNU\nLesser General Public License (LGPL).\nCygwin\u2122 Linking Exception\nAs a special exception, the copyright holders of the Cygwin library grant\nyou additional permission to link libcygwin.a, crt0.o, and gcrt0.o with\nindependent modules to produce an executable, and to convey the resulting\nexecutable under terms of your choice, without any need to comply with the\nconditions of LGPLv3 section 4. An independent module is a module which is\nnot itself based on the Cygwin library.\n" +} \ No newline at end of file diff --git a/docs/cypress-linux-firmware.LICENSE b/docs/cypress-linux-firmware.LICENSE index bf277687ed..4eb4f3f2f4 100644 --- a/docs/cypress-linux-firmware.LICENSE +++ b/docs/cypress-linux-firmware.LICENSE @@ -1,3 +1,15 @@ +--- +key: cypress-linux-firmware +short_name: Cypress Linux Firmware License +name: Cypress Linux Firmware License +category: Proprietary Free +owner: Cypress Wireless +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cypress +spdx_license_key: LicenseRef-scancode-cypress-linux-firmware +ignorable_urls: + - http://www.cypress.com/go/opensource +--- + ### CYPRESS WIRELESS CONNECTIVITY DEVICES ### DRIVER END USER LICENSE AGREEMENT (SOURCE AND BINARY DISTRIBUTION) diff --git a/docs/cypress-linux-firmware.html b/docs/cypress-linux-firmware.html index 51f0de1e46..f330684fad 100644 --- a/docs/cypress-linux-firmware.html +++ b/docs/cypress-linux-firmware.html @@ -273,7 +273,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/cypress-linux-firmware.json b/docs/cypress-linux-firmware.json index b2dae03868..c8a575caed 100644 --- a/docs/cypress-linux-firmware.json +++ b/docs/cypress-linux-firmware.json @@ -1 +1,12 @@ -{"key": "cypress-linux-firmware", "short_name": "Cypress Linux Firmware License", "name": "Cypress Linux Firmware License", "category": "Proprietary Free", "owner": "Cypress Wireless", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cypress", "spdx_license_key": "LicenseRef-scancode-cypress-linux-firmware", "ignorable_urls": ["http://www.cypress.com/go/opensource"]} \ No newline at end of file +{ + "key": "cypress-linux-firmware", + "short_name": "Cypress Linux Firmware License", + "name": "Cypress Linux Firmware License", + "category": "Proprietary Free", + "owner": "Cypress Wireless", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cypress", + "spdx_license_key": "LicenseRef-scancode-cypress-linux-firmware", + "ignorable_urls": [ + "http://www.cypress.com/go/opensource" + ] +} \ No newline at end of file diff --git a/docs/d-fsl-1.0-de.LICENSE b/docs/d-fsl-1.0-de.LICENSE index dba63f1069..e176f6aebb 100644 --- a/docs/d-fsl-1.0-de.LICENSE +++ b/docs/d-fsl-1.0-de.LICENSE @@ -1,3 +1,41 @@ +--- +key: d-fsl-1.0-de +language: de +short_name: Deutsche Freie Software Lizenz +name: Deutsche Freie Software Lizenz +category: Copyleft +owner: Institute for Legal Issues On Free and Open Source Software +homepage_url: http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt +notes: | + Per SPDX.org, this license was created for and is backed by the German + state. The English translation can be found here + http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt +spdx_license_key: D-FSL-1.0 +text_urls: + - http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt +faq_url: http://www.d-fsl.org/ +other_urls: + - http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt + - http://www.dipp.nrw.de/d-fsl/lizenzen/ + - http://www.dipp.nrw.de/d-fsl/nutzer/ + - https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl + - https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_de.txt/at_download/file + - https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_en.txt/at_download/file + - https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/deutsche-freie-software-lizenz + - https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/german-free-software-license +minimum_coverage: 10 +ignorable_copyrights: + - (c) Ministerium fur Wissenschaft und Forschung Nordrhein-Westfalen 2004 Erstellt von Axel + Metzger und Till Jaeger +ignorable_holders: + - Ministerium fur Wissenschaft und Forschung Nordrhein-Westfalen Erstellt von Axel Metzger + und Till Jaeger +ignorable_urls: + - http://www.d-fsl.de/ + - http://www.fsf.org/licenses/gpl + - http://www.ifross.de/ +--- + Deutsche Freie Software Lizenz (c) Ministerium für Wissenschaft und Forschung diff --git a/docs/d-fsl-1.0-de.html b/docs/d-fsl-1.0-de.html index dcc0e75661..a89aa534a7 100644 --- a/docs/d-fsl-1.0-de.html +++ b/docs/d-fsl-1.0-de.html @@ -655,7 +655,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/d-fsl-1.0-de.json b/docs/d-fsl-1.0-de.json index 41eb302c5f..d4b9c14796 100644 --- a/docs/d-fsl-1.0-de.json +++ b/docs/d-fsl-1.0-de.json @@ -1 +1,37 @@ -{"key": "d-fsl-1.0-de", "language": "de", "short_name": "Deutsche Freie Software Lizenz", "name": "Deutsche Freie Software Lizenz", "category": "Copyleft", "owner": "Institute for Legal Issues On Free and Open Source Software", "homepage_url": "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt", "notes": "Per SPDX.org, this license was created for and is backed by the German\nstate. The English translation can be found here\nhttp://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt\n", "spdx_license_key": "D-FSL-1.0", "text_urls": ["http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt"], "faq_url": "http://www.d-fsl.org/", "other_urls": ["http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt", "http://www.dipp.nrw.de/d-fsl/lizenzen/", "http://www.dipp.nrw.de/d-fsl/nutzer/", "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl", "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_de.txt/at_download/file", "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_en.txt/at_download/file", "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/deutsche-freie-software-lizenz", "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/german-free-software-license"], "minimum_coverage": 10, "ignorable_copyrights": ["(c) Ministerium fur Wissenschaft und Forschung Nordrhein-Westfalen 2004 Erstellt von Axel Metzger und Till Jaeger"], "ignorable_holders": ["Ministerium fur Wissenschaft und Forschung Nordrhein-Westfalen Erstellt von Axel Metzger und Till Jaeger"], "ignorable_urls": ["http://www.d-fsl.de/", "http://www.fsf.org/licenses/gpl", "http://www.ifross.de/"]} \ No newline at end of file +{ + "key": "d-fsl-1.0-de", + "language": "de", + "short_name": "Deutsche Freie Software Lizenz", + "name": "Deutsche Freie Software Lizenz", + "category": "Copyleft", + "owner": "Institute for Legal Issues On Free and Open Source Software", + "homepage_url": "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt", + "notes": "Per SPDX.org, this license was created for and is backed by the German\nstate. The English translation can be found here\nhttp://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt\n", + "spdx_license_key": "D-FSL-1.0", + "text_urls": [ + "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt" + ], + "faq_url": "http://www.d-fsl.org/", + "other_urls": [ + "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt", + "http://www.dipp.nrw.de/d-fsl/lizenzen/", + "http://www.dipp.nrw.de/d-fsl/nutzer/", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_de.txt/at_download/file", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_en.txt/at_download/file", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/deutsche-freie-software-lizenz", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/german-free-software-license" + ], + "minimum_coverage": 10, + "ignorable_copyrights": [ + "(c) Ministerium fur Wissenschaft und Forschung Nordrhein-Westfalen 2004 Erstellt von Axel Metzger und Till Jaeger" + ], + "ignorable_holders": [ + "Ministerium fur Wissenschaft und Forschung Nordrhein-Westfalen Erstellt von Axel Metzger und Till Jaeger" + ], + "ignorable_urls": [ + "http://www.d-fsl.de/", + "http://www.fsf.org/licenses/gpl", + "http://www.ifross.de/" + ] +} \ No newline at end of file diff --git a/docs/d-fsl-1.0-en.LICENSE b/docs/d-fsl-1.0-en.LICENSE index e4e59ea3c7..5f89498f71 100644 --- a/docs/d-fsl-1.0-en.LICENSE +++ b/docs/d-fsl-1.0-en.LICENSE @@ -1,3 +1,31 @@ +--- +key: d-fsl-1.0-en +short_name: German Free Software License +name: German Free Software License +category: Copyleft +owner: Institute for Legal Issues On Free and Open Source Software +homepage_url: http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt +spdx_license_key: LicenseRef-scancode-d-fsl-1.0-en +text_urls: + - http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt +faq_url: http://www.d-fsl.org/ +other_urls: + - http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt + - http://www.dipp.nrw.de/d-fsl/nutzer/ +minimum_coverage: 10 +ignorable_copyrights: + - (c) Ministry of Science and Research, State of North-Rhine Westphalia 2004 +ignorable_holders: + - Ministry of Science and Research, State of North-Rhine Westphalia +ignorable_authors: + - Axel Metzger and Till Jaeger, Institut fur Rechtsfragen der Freien und Open Source Software + Institute for Legal Issues +ignorable_urls: + - http://www.d-fsl.org/ + - http://www.fsf.org/licenses/gpl + - http://www.ifross.de/ +--- + German Free Software License (c) Ministry of Science and Research, State of diff --git a/docs/d-fsl-1.0-en.html b/docs/d-fsl-1.0-en.html index 86ca12d2e8..6f6bc162f7 100644 --- a/docs/d-fsl-1.0-en.html +++ b/docs/d-fsl-1.0-en.html @@ -632,7 +632,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/d-fsl-1.0-en.json b/docs/d-fsl-1.0-en.json index dedab12b5e..a7f6e0cc92 100644 --- a/docs/d-fsl-1.0-en.json +++ b/docs/d-fsl-1.0-en.json @@ -1 +1,32 @@ -{"key": "d-fsl-1.0-en", "short_name": "German Free Software License", "name": "German Free Software License", "category": "Copyleft", "owner": "Institute for Legal Issues On Free and Open Source Software", "homepage_url": "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt", "spdx_license_key": "LicenseRef-scancode-d-fsl-1.0-en", "text_urls": ["http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt"], "faq_url": "http://www.d-fsl.org/", "other_urls": ["http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt", "http://www.dipp.nrw.de/d-fsl/nutzer/"], "minimum_coverage": 10, "ignorable_copyrights": ["(c) Ministry of Science and Research, State of North-Rhine Westphalia 2004"], "ignorable_holders": ["Ministry of Science and Research, State of North-Rhine Westphalia"], "ignorable_authors": ["Axel Metzger and Till Jaeger, Institut fur Rechtsfragen der Freien und Open Source Software Institute for Legal Issues"], "ignorable_urls": ["http://www.d-fsl.org/", "http://www.fsf.org/licenses/gpl", "http://www.ifross.de/"]} \ No newline at end of file +{ + "key": "d-fsl-1.0-en", + "short_name": "German Free Software License", + "name": "German Free Software License", + "category": "Copyleft", + "owner": "Institute for Legal Issues On Free and Open Source Software", + "homepage_url": "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt", + "spdx_license_key": "LicenseRef-scancode-d-fsl-1.0-en", + "text_urls": [ + "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt" + ], + "faq_url": "http://www.d-fsl.org/", + "other_urls": [ + "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt", + "http://www.dipp.nrw.de/d-fsl/nutzer/" + ], + "minimum_coverage": 10, + "ignorable_copyrights": [ + "(c) Ministry of Science and Research, State of North-Rhine Westphalia 2004" + ], + "ignorable_holders": [ + "Ministry of Science and Research, State of North-Rhine Westphalia" + ], + "ignorable_authors": [ + "Axel Metzger and Till Jaeger, Institut fur Rechtsfragen der Freien und Open Source Software Institute for Legal Issues" + ], + "ignorable_urls": [ + "http://www.d-fsl.org/", + "http://www.fsf.org/licenses/gpl", + "http://www.ifross.de/" + ] +} \ No newline at end of file diff --git a/docs/d-zlib.LICENSE b/docs/d-zlib.LICENSE index 994eeccfde..5704882e82 100644 --- a/docs/d-zlib.LICENSE +++ b/docs/d-zlib.LICENSE @@ -1,3 +1,12 @@ +--- +key: d-zlib +short_name: D Zlib +name: Digital Mars Zlib +category: Permissive +owner: Digital Mars +spdx_license_key: LicenseRef-scancode-d-zlib +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. diff --git a/docs/d-zlib.html b/docs/d-zlib.html index e5a3b64e0c..aedbced6c1 100644 --- a/docs/d-zlib.html +++ b/docs/d-zlib.html @@ -136,7 +136,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/d-zlib.json b/docs/d-zlib.json index 9dee3f291e..58bf3c1c1d 100644 --- a/docs/d-zlib.json +++ b/docs/d-zlib.json @@ -1 +1,8 @@ -{"key": "d-zlib", "short_name": "D Zlib", "name": "Digital Mars Zlib", "category": "Permissive", "owner": "Digital Mars", "spdx_license_key": "LicenseRef-scancode-d-zlib"} \ No newline at end of file +{ + "key": "d-zlib", + "short_name": "D Zlib", + "name": "Digital Mars Zlib", + "category": "Permissive", + "owner": "Digital Mars", + "spdx_license_key": "LicenseRef-scancode-d-zlib" +} \ No newline at end of file diff --git a/docs/damail.LICENSE b/docs/damail.LICENSE index 4fb1cbd726..57a0d33850 100644 --- a/docs/damail.LICENSE +++ b/docs/damail.LICENSE @@ -1,3 +1,13 @@ +--- +key: damail +short_name: DAMAIL +name: Don't Ask Me About It License +category: Permissive +owner: Noah Slater +homepage_url: https://github.com/nslater/DAMAIL +spdx_license_key: LicenseRef-scancode-damail +--- + The Don't Ask Me About It License Full License Text diff --git a/docs/damail.html b/docs/damail.html index 8b8e43444e..031bc91dd4 100644 --- a/docs/damail.html +++ b/docs/damail.html @@ -141,7 +141,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/damail.json b/docs/damail.json index 0f392508eb..7f71b8c402 100644 --- a/docs/damail.json +++ b/docs/damail.json @@ -1 +1,9 @@ -{"key": "damail", "short_name": "DAMAIL", "name": "Don't Ask Me About It License", "category": "Permissive", "owner": "Noah Slater", "homepage_url": "https://github.com/nslater/DAMAIL", "spdx_license_key": "LicenseRef-scancode-damail"} \ No newline at end of file +{ + "key": "damail", + "short_name": "DAMAIL", + "name": "Don't Ask Me About It License", + "category": "Permissive", + "owner": "Noah Slater", + "homepage_url": "https://github.com/nslater/DAMAIL", + "spdx_license_key": "LicenseRef-scancode-damail" +} \ No newline at end of file diff --git a/docs/dante-treglia.LICENSE b/docs/dante-treglia.LICENSE index 670cc039ec..ee479896d6 100644 --- a/docs/dante-treglia.LICENSE +++ b/docs/dante-treglia.LICENSE @@ -1,3 +1,16 @@ +--- +key: dante-treglia +short_name: Dante Treglia License +name: Dante Treglia License +category: Permissive +owner: Dante Treglia +spdx_license_key: LicenseRef-scancode-dante-treglia +ignorable_copyrights: + - Portions copyright (c) Dante Treglia II, 2000 +ignorable_holders: + - Dante Treglia II +--- + This is provided as is without express or implied warranties. You may freely copy and compile this source into applications you distribute provided that the copyright text below is included in the resulting source code, for example: diff --git a/docs/dante-treglia.html b/docs/dante-treglia.html index 3dcdd64d68..d81c3870b4 100644 --- a/docs/dante-treglia.html +++ b/docs/dante-treglia.html @@ -142,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dante-treglia.json b/docs/dante-treglia.json index 5fd75340b3..e17183a981 100644 --- a/docs/dante-treglia.json +++ b/docs/dante-treglia.json @@ -1 +1,14 @@ -{"key": "dante-treglia", "short_name": "Dante Treglia License", "name": "Dante Treglia License", "category": "Permissive", "owner": "Dante Treglia", "spdx_license_key": "LicenseRef-scancode-dante-treglia", "ignorable_copyrights": ["Portions copyright (c) Dante Treglia II, 2000"], "ignorable_holders": ["Dante Treglia II"]} \ No newline at end of file +{ + "key": "dante-treglia", + "short_name": "Dante Treglia License", + "name": "Dante Treglia License", + "category": "Permissive", + "owner": "Dante Treglia", + "spdx_license_key": "LicenseRef-scancode-dante-treglia", + "ignorable_copyrights": [ + "Portions copyright (c) Dante Treglia II, 2000" + ], + "ignorable_holders": [ + "Dante Treglia II" + ] +} \ No newline at end of file diff --git a/docs/datamekanix-license.LICENSE b/docs/datamekanix-license.LICENSE index 6ac6820016..04db590d4e 100644 --- a/docs/datamekanix-license.LICENSE +++ b/docs/datamekanix-license.LICENSE @@ -1,3 +1,13 @@ +--- +key: datamekanix-license +short_name: DataMekanix License +name: DataMekanix License +category: Permissive +owner: DataMekanix +homepage_url: http://www.datamekanix.com/sizecbar/ +spdx_license_key: LicenseRef-scancode-datamekanix-license +--- + This code is free for personal and commercial use, providing the copyright notice remains intact in the source files and all eventual changes are clearly marked with comments. diff --git a/docs/datamekanix-license.html b/docs/datamekanix-license.html index 85e41f5406..7bb9ffd39a 100644 --- a/docs/datamekanix-license.html +++ b/docs/datamekanix-license.html @@ -133,7 +133,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/datamekanix-license.json b/docs/datamekanix-license.json index d8342fb0fd..b93ca9dab3 100644 --- a/docs/datamekanix-license.json +++ b/docs/datamekanix-license.json @@ -1 +1,9 @@ -{"key": "datamekanix-license", "short_name": "DataMekanix License", "name": "DataMekanix License", "category": "Permissive", "owner": "DataMekanix", "homepage_url": "http://www.datamekanix.com/sizecbar/", "spdx_license_key": "LicenseRef-scancode-datamekanix-license"} \ No newline at end of file +{ + "key": "datamekanix-license", + "short_name": "DataMekanix License", + "name": "DataMekanix License", + "category": "Permissive", + "owner": "DataMekanix", + "homepage_url": "http://www.datamekanix.com/sizecbar/", + "spdx_license_key": "LicenseRef-scancode-datamekanix-license" +} \ No newline at end of file diff --git a/docs/day-spec.LICENSE b/docs/day-spec.LICENSE index 9a39351f46..178149cb66 100644 --- a/docs/day-spec.LICENSE +++ b/docs/day-spec.LICENSE @@ -1,3 +1,21 @@ +--- +key: day-spec +short_name: Day Specification License +name: Day Specification License +category: Proprietary Free +owner: Day Management AG +homepage_url: http://www.day.com/maven/jsr170/jars/LICENSE.txt +spdx_license_key: LicenseRef-scancode-day-spec +text_urls: + - http://www.day.com/maven/jsr170/jars/LICENSE.txt + - http://www.day.com/maven/jsr170/licenses/day-spec-license.htm +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 2005 Day Management AG Barfusserplatz 6, 4001 Basel, Switzerland +ignorable_holders: + - Day Management AG Barfusserplatz 6, 4001 Basel, Switzerland +--- + [Day Specification License] Day Management AG ("Licensor") is willing to license this specification @@ -144,4 +162,4 @@ to any party seeking it from You, a perpetual, non-exclusive, non-transferable, worldwide license under Your patent rights that are or would be infringed by all technically feasible implementations of the Specification to develop, distribute -and use a Compliant Implementation. +and use a Compliant Implementation. \ No newline at end of file diff --git a/docs/day-spec.html b/docs/day-spec.html index 190e6d44a7..f370562f00 100644 --- a/docs/day-spec.html +++ b/docs/day-spec.html @@ -295,8 +295,7 @@ non-transferable, worldwide license under Your patent rights that are or would be infringed by all technically feasible implementations of the Specification to develop, distribute -and use a Compliant Implementation. - +and use a Compliant Implementation.
@@ -308,7 +307,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/day-spec.json b/docs/day-spec.json index 48d02134ec..d800d5018e 100644 --- a/docs/day-spec.json +++ b/docs/day-spec.json @@ -1 +1,20 @@ -{"key": "day-spec", "short_name": "Day Specification License", "name": "Day Specification License", "category": "Proprietary Free", "owner": "Day Management AG", "homepage_url": "http://www.day.com/maven/jsr170/jars/LICENSE.txt", "spdx_license_key": "LicenseRef-scancode-day-spec", "text_urls": ["http://www.day.com/maven/jsr170/jars/LICENSE.txt", "http://www.day.com/maven/jsr170/licenses/day-spec-license.htm"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright 2005 Day Management AG Barfusserplatz 6, 4001 Basel, Switzerland"], "ignorable_holders": ["Day Management AG Barfusserplatz 6, 4001 Basel, Switzerland"]} \ No newline at end of file +{ + "key": "day-spec", + "short_name": "Day Specification License", + "name": "Day Specification License", + "category": "Proprietary Free", + "owner": "Day Management AG", + "homepage_url": "http://www.day.com/maven/jsr170/jars/LICENSE.txt", + "spdx_license_key": "LicenseRef-scancode-day-spec", + "text_urls": [ + "http://www.day.com/maven/jsr170/jars/LICENSE.txt", + "http://www.day.com/maven/jsr170/licenses/day-spec-license.htm" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright 2005 Day Management AG Barfusserplatz 6, 4001 Basel, Switzerland" + ], + "ignorable_holders": [ + "Day Management AG Barfusserplatz 6, 4001 Basel, Switzerland" + ] +} \ No newline at end of file diff --git a/docs/dbad-1.1.LICENSE b/docs/dbad-1.1.LICENSE index 0390a2159d..cbf58b0c30 100644 --- a/docs/dbad-1.1.LICENSE +++ b/docs/dbad-1.1.LICENSE @@ -1,3 +1,13 @@ +--- +key: dbad-1.1 +short_name: DBAD License 1.1 +name: Don't Be a Dick Public License 1.1 +category: Permissive +owner: DBAD +homepage_url: https://dbad-license.org/ +spdx_license_key: LicenseRef-scancode-dbad-1.1 +--- + # DON'T BE A DICK PUBLIC LICENSE > Version 1.1, December 2016 diff --git a/docs/dbad-1.1.html b/docs/dbad-1.1.html index b9b311c305..4b0f5b5210 100644 --- a/docs/dbad-1.1.html +++ b/docs/dbad-1.1.html @@ -152,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dbad-1.1.json b/docs/dbad-1.1.json index 4037a3dac0..3ca6ae3257 100644 --- a/docs/dbad-1.1.json +++ b/docs/dbad-1.1.json @@ -1 +1,9 @@ -{"key": "dbad-1.1", "short_name": "DBAD License 1.1", "name": "Don't Be a Dick Public License 1.1", "category": "Permissive", "owner": "DBAD", "homepage_url": "https://dbad-license.org/", "spdx_license_key": "LicenseRef-scancode-dbad-1.1"} \ No newline at end of file +{ + "key": "dbad-1.1", + "short_name": "DBAD License 1.1", + "name": "Don't Be a Dick Public License 1.1", + "category": "Permissive", + "owner": "DBAD", + "homepage_url": "https://dbad-license.org/", + "spdx_license_key": "LicenseRef-scancode-dbad-1.1" +} \ No newline at end of file diff --git a/docs/dbad.LICENSE b/docs/dbad.LICENSE index aea182e080..c796332c52 100644 --- a/docs/dbad.LICENSE +++ b/docs/dbad.LICENSE @@ -1,3 +1,14 @@ +--- +key: dbad +short_name: dbad +name: Dont Be A Dick Public License +category: Proprietary Free +owner: Unspecified +homepage_url: https://dbad-license.org +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-dbad +--- + Everyone is permitted to copy and distribute verbatim or modified copies of this license document. @@ -13,4 +24,4 @@ Being a dick includes - but is not limited to - the following instances: If you become rich through modifications, related works/services, or supporting the original work, share the love. Only a dick would make loads off this work and not buy the original work's creator(s) a pint. -Code is provided with no warranty. Using somebody else's code and bitching when it goes wrong makes you a DONKEY dick. Fix the problem yourself. A non-dick would submit the fix back. +Code is provided with no warranty. Using somebody else's code and bitching when it goes wrong makes you a DONKEY dick. Fix the problem yourself. A non-dick would submit the fix back. \ No newline at end of file diff --git a/docs/dbad.html b/docs/dbad.html index 062084b655..ba11afe67f 100644 --- a/docs/dbad.html +++ b/docs/dbad.html @@ -137,8 +137,7 @@ If you become rich through modifications, related works/services, or supporting the original work, share the love. Only a dick would make loads off this work and not buy the original work's creator(s) a pint. -Code is provided with no warranty. Using somebody else's code and bitching when it goes wrong makes you a DONKEY dick. Fix the problem yourself. A non-dick would submit the fix back. - +Code is provided with no warranty. Using somebody else's code and bitching when it goes wrong makes you a DONKEY dick. Fix the problem yourself. A non-dick would submit the fix back.
@@ -150,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dbad.json b/docs/dbad.json index 38724e1277..5fa1d5d371 100644 --- a/docs/dbad.json +++ b/docs/dbad.json @@ -1 +1,10 @@ -{"key": "dbad", "short_name": "dbad", "name": "Dont Be A Dick Public License", "category": "Proprietary Free", "owner": "Unspecified", "homepage_url": "https://dbad-license.org", "notes": "From https://github.com/ErikMcClure/bad-licenses", "spdx_license_key": "LicenseRef-scancode-dbad"} \ No newline at end of file +{ + "key": "dbad", + "short_name": "dbad", + "name": "Dont Be A Dick Public License", + "category": "Proprietary Free", + "owner": "Unspecified", + "homepage_url": "https://dbad-license.org", + "notes": "From https://github.com/ErikMcClure/bad-licenses", + "spdx_license_key": "LicenseRef-scancode-dbad" +} \ No newline at end of file diff --git a/docs/dbcl-1.0.LICENSE b/docs/dbcl-1.0.LICENSE index eac05c4e11..0bfaf44804 100644 --- a/docs/dbcl-1.0.LICENSE +++ b/docs/dbcl-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: dbcl-1.0 +short_name: DbCL 1.0 +name: ODC Database Contents License v1.0 +category: Copyleft +owner: Open Data Commons +homepage_url: https://opendatacommons.org/licenses/dbcl/1-0/ +spdx_license_key: LicenseRef-scancode-dbcl-1.0 +other_urls: + - http://www.opendatacommons.org/licenses/odbl/1.0/ +--- + ODC Database Contents License (DbCL) The Licensor and You agree as follows: diff --git a/docs/dbcl-1.0.html b/docs/dbcl-1.0.html index a71ba4129a..19053c2783 100644 --- a/docs/dbcl-1.0.html +++ b/docs/dbcl-1.0.html @@ -183,7 +183,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dbcl-1.0.json b/docs/dbcl-1.0.json index 371f7cbdfd..57b388ae03 100644 --- a/docs/dbcl-1.0.json +++ b/docs/dbcl-1.0.json @@ -1 +1,12 @@ -{"key": "dbcl-1.0", "short_name": "DbCL 1.0", "name": "ODC Database Contents License v1.0", "category": "Copyleft", "owner": "Open Data Commons", "homepage_url": "https://opendatacommons.org/licenses/dbcl/1-0/", "spdx_license_key": "LicenseRef-scancode-dbcl-1.0", "other_urls": ["http://www.opendatacommons.org/licenses/odbl/1.0/"]} \ No newline at end of file +{ + "key": "dbcl-1.0", + "short_name": "DbCL 1.0", + "name": "ODC Database Contents License v1.0", + "category": "Copyleft", + "owner": "Open Data Commons", + "homepage_url": "https://opendatacommons.org/licenses/dbcl/1-0/", + "spdx_license_key": "LicenseRef-scancode-dbcl-1.0", + "other_urls": [ + "http://www.opendatacommons.org/licenses/odbl/1.0/" + ] +} \ No newline at end of file diff --git a/docs/dco-1.1.LICENSE b/docs/dco-1.1.LICENSE index 3329c6f215..9898784e93 100644 --- a/docs/dco-1.1.LICENSE +++ b/docs/dco-1.1.LICENSE @@ -1,4 +1,19 @@ - +--- +key: dco-1.1 +short_name: DCO 1.1 +name: Developer Certificate of Origin 1.1 +category: CLA +owner: Linux Foundation +homepage_url: https://developercertificate.org/ +spdx_license_key: LicenseRef-scancode-dco-1.1 +text_urls: + - https://developercertificate.org/ +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 2004, 2006 The Linux Foundation and its contributors +ignorable_holders: + - The Linux Foundation and its contributors +--- Developer Certificate of Origin Version 1.1 @@ -36,5 +51,4 @@ By making a contribution to this project, I certify that: are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with - this project or the open source license(s) involved. - + this project or the open source license(s) involved. \ No newline at end of file diff --git a/docs/dco-1.1.html b/docs/dco-1.1.html index 60af435bf0..685b1dbd4b 100644 --- a/docs/dco-1.1.html +++ b/docs/dco-1.1.html @@ -88,7 +88,7 @@
category
- Permissive + CLA
@@ -149,9 +149,7 @@
license_text
-

-
-Developer Certificate of Origin
+    
Developer Certificate of Origin
 Version 1.1
 
 Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
@@ -187,9 +185,7 @@
     are public and that a record of the contribution (including all
     personal information I submit with it, including my sign-off) is
     maintained indefinitely and may be redistributed consistent with
-    this project or the open source license(s) involved.
-
-
+ this project or the open source license(s) involved.
@@ -201,7 +197,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dco-1.1.json b/docs/dco-1.1.json index 0726748c40..0687d2fe50 100644 --- a/docs/dco-1.1.json +++ b/docs/dco-1.1.json @@ -1 +1,19 @@ -{"key": "dco-1.1", "short_name": "DCO 1.1", "name": "Developer Certificate of Origin 1.1", "category": "Permissive", "owner": "Linux Foundation", "homepage_url": "https://developercertificate.org/", "spdx_license_key": "LicenseRef-scancode-dco-1.1", "text_urls": ["https://developercertificate.org/"], "minimum_coverage": 90, "ignorable_copyrights": ["Copyright (c) 2004, 2006 The Linux Foundation and its contributors"], "ignorable_holders": ["The Linux Foundation and its contributors"]} \ No newline at end of file +{ + "key": "dco-1.1", + "short_name": "DCO 1.1", + "name": "Developer Certificate of Origin 1.1", + "category": "CLA", + "owner": "Linux Foundation", + "homepage_url": "https://developercertificate.org/", + "spdx_license_key": "LicenseRef-scancode-dco-1.1", + "text_urls": [ + "https://developercertificate.org/" + ], + "minimum_coverage": 90, + "ignorable_copyrights": [ + "Copyright (c) 2004, 2006 The Linux Foundation and its contributors" + ], + "ignorable_holders": [ + "The Linux Foundation and its contributors" + ] +} \ No newline at end of file diff --git a/docs/dco-1.1.yml b/docs/dco-1.1.yml index 2e66697e9c..493bcddace 100644 --- a/docs/dco-1.1.yml +++ b/docs/dco-1.1.yml @@ -1,7 +1,7 @@ key: dco-1.1 short_name: DCO 1.1 name: Developer Certificate of Origin 1.1 -category: Permissive +category: CLA owner: Linux Foundation homepage_url: https://developercertificate.org/ spdx_license_key: LicenseRef-scancode-dco-1.1 diff --git a/docs/defensive-patent-1.1.LICENSE b/docs/defensive-patent-1.1.LICENSE index d8df4ac6e7..acbcd7e8ca 100644 --- a/docs/defensive-patent-1.1.LICENSE +++ b/docs/defensive-patent-1.1.LICENSE @@ -1,3 +1,17 @@ +--- +key: defensive-patent-1.1 +short_name: Defensive Patent License v1.1 +name: Defensive Patent License v1.1 +category: Copyleft +owner: DPL +homepage_url: https://www.defensivepatentlicense.org/ +spdx_license_key: LicenseRef-scancode-defensive-patent-1.1 +text_urls: + - https://www.defensivepatentlicense.org/license +ignorable_urls: + - http://www.defensivepatentlicense.org/content/frequently-asked-questions#how-can-I-start +--- + PREFACE The Defensive Patent License (DPL) is a free, copyleft-style license for patents. @@ -80,4 +94,4 @@ UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS T SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, IN WHICH CASE SUCH EXCLUSION MAY NOT APPLY TO LICENSEE. 6. LIMITATION OF LIABILITY -LICENSOR SHALL NOT BE LIABLE FOR ANY DAMAGES ARISING FROM OR RELATED TO THIS LICENSE, INCLUDING INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, WHETHER ON WARRANTY, CONTRACT, NEGLIGENCE, OR OTHERWISE, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. +LICENSOR SHALL NOT BE LIABLE FOR ANY DAMAGES ARISING FROM OR RELATED TO THIS LICENSE, INCLUDING INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, WHETHER ON WARRANTY, CONTRACT, NEGLIGENCE, OR OTHERWISE, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. \ No newline at end of file diff --git a/docs/defensive-patent-1.1.html b/docs/defensive-patent-1.1.html index 130105382a..69b2430789 100644 --- a/docs/defensive-patent-1.1.html +++ b/docs/defensive-patent-1.1.html @@ -215,8 +215,7 @@ SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, IN WHICH CASE SUCH EXCLUSION MAY NOT APPLY TO LICENSEE. 6. LIMITATION OF LIABILITY -LICENSOR SHALL NOT BE LIABLE FOR ANY DAMAGES ARISING FROM OR RELATED TO THIS LICENSE, INCLUDING INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, WHETHER ON WARRANTY, CONTRACT, NEGLIGENCE, OR OTHERWISE, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. - +LICENSOR SHALL NOT BE LIABLE FOR ANY DAMAGES ARISING FROM OR RELATED TO THIS LICENSE, INCLUDING INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, WHETHER ON WARRANTY, CONTRACT, NEGLIGENCE, OR OTHERWISE, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE.
@@ -228,7 +227,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/defensive-patent-1.1.json b/docs/defensive-patent-1.1.json index 938eb29b33..f10d130158 100644 --- a/docs/defensive-patent-1.1.json +++ b/docs/defensive-patent-1.1.json @@ -1 +1,15 @@ -{"key": "defensive-patent-1.1", "short_name": "Defensive Patent License v1.1", "name": "Defensive Patent License v1.1", "category": "Copyleft", "owner": "DPL", "homepage_url": "https://www.defensivepatentlicense.org/", "spdx_license_key": "LicenseRef-scancode-defensive-patent-1.1", "text_urls": ["https://www.defensivepatentlicense.org/license"], "ignorable_urls": ["http://www.defensivepatentlicense.org/content/frequently-asked-questions#how-can-I-start"]} \ No newline at end of file +{ + "key": "defensive-patent-1.1", + "short_name": "Defensive Patent License v1.1", + "name": "Defensive Patent License v1.1", + "category": "Copyleft", + "owner": "DPL", + "homepage_url": "https://www.defensivepatentlicense.org/", + "spdx_license_key": "LicenseRef-scancode-defensive-patent-1.1", + "text_urls": [ + "https://www.defensivepatentlicense.org/license" + ], + "ignorable_urls": [ + "http://www.defensivepatentlicense.org/content/frequently-asked-questions#how-can-I-start" + ] +} \ No newline at end of file diff --git a/docs/dejavu-font.LICENSE b/docs/dejavu-font.LICENSE index 61ba62c7cb..f78d0de345 100644 --- a/docs/dejavu-font.LICENSE +++ b/docs/dejavu-font.LICENSE @@ -1,3 +1,14 @@ +--- +key: dejavu-font +is_deprecated: yes +short_name: DejaVu Font License +name: DejaVu Font License +category: Permissive +owner: Unspecified +notes: this is a composite of a double bitstream. +spdx_license_key: LicenseRef-scancode-dejavu-font +--- + DejaVu Font License Fonts are (c) Bitstream (see below). DejaVu changes are in public domain. diff --git a/docs/dejavu-font.html b/docs/dejavu-font.html index 8f0b605488..f6427b97dd 100644 --- a/docs/dejavu-font.html +++ b/docs/dejavu-font.html @@ -172,7 +172,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dejavu-font.json b/docs/dejavu-font.json index f31b1ebc1e..404f336b0a 100644 --- a/docs/dejavu-font.json +++ b/docs/dejavu-font.json @@ -1 +1,10 @@ -{"key": "dejavu-font", "is_deprecated": true, "short_name": "DejaVu Font License", "name": "DejaVu Font License", "category": "Permissive", "owner": "Unspecified", "notes": "this is a composite of a double bitstream.", "spdx_license_key": "LicenseRef-scancode-dejavu-font"} \ No newline at end of file +{ + "key": "dejavu-font", + "is_deprecated": true, + "short_name": "DejaVu Font License", + "name": "DejaVu Font License", + "category": "Permissive", + "owner": "Unspecified", + "notes": "this is a composite of a double bitstream.", + "spdx_license_key": "LicenseRef-scancode-dejavu-font" +} \ No newline at end of file diff --git a/docs/delorie-historical.LICENSE b/docs/delorie-historical.LICENSE index b35035271d..5b23bc6434 100644 --- a/docs/delorie-historical.LICENSE +++ b/docs/delorie-historical.LICENSE @@ -1,7 +1,17 @@ +--- +key: delorie-historical +short_name: Delorie Historical License +name: Delorie Historical License +category: Permissive +owner: DJ Delorie +notes: this is a short historical permissive license seen in the newlib C library. This is close + to a bsla text. +spdx_license_key: LicenseRef-scancode-delorie-historical +--- + Redistribution, modification, and use in source and binary forms is permitted provided that the above copyright notice and following paragraph are duplicated in all such forms. This file is distributed WITHOUT ANY WARRANTY; without even the implied -warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - +warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/docs/delorie-historical.html b/docs/delorie-historical.html index 6dab6732bd..d7dbc95473 100644 --- a/docs/delorie-historical.html +++ b/docs/delorie-historical.html @@ -120,9 +120,7 @@ duplicated in all such forms. This file is distributed WITHOUT ANY WARRANTY; without even the implied -warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - - +warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
@@ -134,7 +132,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/delorie-historical.json b/docs/delorie-historical.json index eee13f7204..4159538f24 100644 --- a/docs/delorie-historical.json +++ b/docs/delorie-historical.json @@ -1 +1,9 @@ -{"key": "delorie-historical", "short_name": "Delorie Historical License", "name": "Delorie Historical License", "category": "Permissive", "owner": "DJ Delorie", "notes": "this is a short historical permissive license seen in the newlib C library. This is close to a bsla text.", "spdx_license_key": "LicenseRef-scancode-delorie-historical"} \ No newline at end of file +{ + "key": "delorie-historical", + "short_name": "Delorie Historical License", + "name": "Delorie Historical License", + "category": "Permissive", + "owner": "DJ Delorie", + "notes": "this is a short historical permissive license seen in the newlib C library. This is close to a bsla text.", + "spdx_license_key": "LicenseRef-scancode-delorie-historical" +} \ No newline at end of file diff --git a/docs/dennis-ferguson.LICENSE b/docs/dennis-ferguson.LICENSE index 76d31510a7..f77be8703e 100644 --- a/docs/dennis-ferguson.LICENSE +++ b/docs/dennis-ferguson.LICENSE @@ -1,3 +1,15 @@ +--- +key: dennis-ferguson +short_name: Dennis Ferguson License +name: Dennis Ferguson License +category: Free Restricted +owner: Dennis Ferguson +spdx_license_key: LicenseRef-scancode-dennis-ferguson +text_urls: + - http://web.mit.edu/jhawk/mnt/spo/netbsd/src/domestic/dist/krb5/src/lib/crypto/des/f_cbc.c + - http://web.mit.edu/jhawk/mnt/spo/netbsd/src/domestic/dist/krb5/src/lib/des425/pcbc_encrypt.c +--- + Commercial use is permitted only if products which are derived from or include this software are made available for purchase and/or use in Canada. Otherwise, redistribution and use in source and binary forms are permitted. \ No newline at end of file diff --git a/docs/dennis-ferguson.html b/docs/dennis-ferguson.html index ff1847d348..3542a17bba 100644 --- a/docs/dennis-ferguson.html +++ b/docs/dennis-ferguson.html @@ -131,7 +131,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dennis-ferguson.json b/docs/dennis-ferguson.json index f74c7b869b..cfb476dad4 100644 --- a/docs/dennis-ferguson.json +++ b/docs/dennis-ferguson.json @@ -1 +1,12 @@ -{"key": "dennis-ferguson", "short_name": "Dennis Ferguson License", "name": "Dennis Ferguson License", "category": "Free Restricted", "owner": "Dennis Ferguson", "spdx_license_key": "LicenseRef-scancode-dennis-ferguson", "text_urls": ["http://web.mit.edu/jhawk/mnt/spo/netbsd/src/domestic/dist/krb5/src/lib/crypto/des/f_cbc.c", "http://web.mit.edu/jhawk/mnt/spo/netbsd/src/domestic/dist/krb5/src/lib/des425/pcbc_encrypt.c"]} \ No newline at end of file +{ + "key": "dennis-ferguson", + "short_name": "Dennis Ferguson License", + "name": "Dennis Ferguson License", + "category": "Free Restricted", + "owner": "Dennis Ferguson", + "spdx_license_key": "LicenseRef-scancode-dennis-ferguson", + "text_urls": [ + "http://web.mit.edu/jhawk/mnt/spo/netbsd/src/domestic/dist/krb5/src/lib/crypto/des/f_cbc.c", + "http://web.mit.edu/jhawk/mnt/spo/netbsd/src/domestic/dist/krb5/src/lib/des425/pcbc_encrypt.c" + ] +} \ No newline at end of file diff --git a/docs/devblocks-1.0.LICENSE b/docs/devblocks-1.0.LICENSE index 1a40a088cd..c2b3c87a20 100644 --- a/docs/devblocks-1.0.LICENSE +++ b/docs/devblocks-1.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: devblocks-1.0 +short_name: Devblocks 1.0 +name: Devblocks Public License 1.0 +category: Copyleft +owner: Webgroup Media +homepage_url: https://cerb.ai/license/ +spdx_license_key: LicenseRef-scancode-devblocks-1.0 +text_urls: + - https://cerb.ai/license/ +--- Devblocks Public License 1.0 (DPL) @@ -82,4 +93,4 @@ The Limited Warranty described above is the only express warranty made to you an Limitation of Liability and Remedies -In no event unless required by applicable law or agreed to in writing will Licensor be liable to you under any circumstances for any lost profits or any indirect, special, consequential or punitive damages including, without limitation, loss or alteration of data, failure to provide support, interruption of business, or loss of employee work time. Some jurisdictions do not allow the exclusion or limitation of certain warranties or liability for loss or damage caused by negligence, breach of contract or breach of implied terms, or incidental or consequential damages. Accordingly, only the limitations which are lawful in your jurisdiction will apply to you and Licensor’s liability will be limited to the maximum extent permitted by law. The entire liability of Licensor shall not exceed the aggregate amount paid by you for the software. +In no event unless required by applicable law or agreed to in writing will Licensor be liable to you under any circumstances for any lost profits or any indirect, special, consequential or punitive damages including, without limitation, loss or alteration of data, failure to provide support, interruption of business, or loss of employee work time. Some jurisdictions do not allow the exclusion or limitation of certain warranties or liability for loss or damage caused by negligence, breach of contract or breach of implied terms, or incidental or consequential damages. Accordingly, only the limitations which are lawful in your jurisdiction will apply to you and Licensor’s liability will be limited to the maximum extent permitted by law. The entire liability of Licensor shall not exceed the aggregate amount paid by you for the software. \ No newline at end of file diff --git a/docs/devblocks-1.0.html b/docs/devblocks-1.0.html index 6586a6da71..d4c3179abc 100644 --- a/docs/devblocks-1.0.html +++ b/docs/devblocks-1.0.html @@ -124,8 +124,7 @@
license_text
-

-Devblocks Public License 1.0 (DPL)
+    
Devblocks Public License 1.0 (DPL)
 
 The following are the terms and conditions by which Webgroup Media, LLC (“Licensor”) grants you a License to use, modify, and redistribute this software, which is protected as the exclusive intellectual property of Licensor by U.S. copyright law.
 
@@ -208,8 +207,7 @@
 
 Limitation of Liability and Remedies
 
-In no event unless required by applicable law or agreed to in writing will Licensor be liable to you under any circumstances for any lost profits or any indirect, special, consequential or punitive damages including, without limitation, loss or alteration of data, failure to provide support, interruption of business, or loss of employee work time. Some jurisdictions do not allow the exclusion or limitation of certain warranties or liability for loss or damage caused by negligence, breach of contract or breach of implied terms, or incidental or consequential damages. Accordingly, only the limitations which are lawful in your jurisdiction will apply to you and Licensor’s liability will be limited to the maximum extent permitted by law. The entire liability of Licensor shall not exceed the aggregate amount paid by you for the software.
-
+In no event unless required by applicable law or agreed to in writing will Licensor be liable to you under any circumstances for any lost profits or any indirect, special, consequential or punitive damages including, without limitation, loss or alteration of data, failure to provide support, interruption of business, or loss of employee work time. Some jurisdictions do not allow the exclusion or limitation of certain warranties or liability for loss or damage caused by negligence, breach of contract or breach of implied terms, or incidental or consequential damages. Accordingly, only the limitations which are lawful in your jurisdiction will apply to you and Licensor’s liability will be limited to the maximum extent permitted by law. The entire liability of Licensor shall not exceed the aggregate amount paid by you for the software.
@@ -221,7 +219,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/devblocks-1.0.json b/docs/devblocks-1.0.json index 9b7205852b..26e8ceafc9 100644 --- a/docs/devblocks-1.0.json +++ b/docs/devblocks-1.0.json @@ -1 +1,12 @@ -{"key": "devblocks-1.0", "short_name": "Devblocks 1.0", "name": "Devblocks Public License 1.0", "category": "Copyleft", "owner": "Webgroup Media", "homepage_url": "https://cerb.ai/license/", "spdx_license_key": "LicenseRef-scancode-devblocks-1.0", "text_urls": ["https://cerb.ai/license/"]} \ No newline at end of file +{ + "key": "devblocks-1.0", + "short_name": "Devblocks 1.0", + "name": "Devblocks Public License 1.0", + "category": "Copyleft", + "owner": "Webgroup Media", + "homepage_url": "https://cerb.ai/license/", + "spdx_license_key": "LicenseRef-scancode-devblocks-1.0", + "text_urls": [ + "https://cerb.ai/license/" + ] +} \ No newline at end of file diff --git a/docs/dgraph-cla.LICENSE b/docs/dgraph-cla.LICENSE index c427edddb3..3d7e13b4ea 100644 --- a/docs/dgraph-cla.LICENSE +++ b/docs/dgraph-cla.LICENSE @@ -1,3 +1,23 @@ +--- +key: dgraph-cla +short_name: Dgraph Community License Agreement +name: Dgraph Community License Agreement +category: Source-available +owner: Dgraph +homepage_url: https://github.com/dgraph-io/dgraph/blob/master/licenses/DCL.txt +spdx_license_key: LicenseRef-scancode-dgraph-cla +ignorable_copyrights: + - (c) Dgraph Enterprise Edition +ignorable_holders: + - Dgraph Enterprise Edition +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://cla-assistant.io/dgraph-io/dgraph + - https://github.com/dgraph-io/dgraph +ignorable_emails: + - contact@dgraph.io +--- + Dgraph Community License Agreement Please read this Dgraph Community License Agreement (the "Agreement") diff --git a/docs/dgraph-cla.html b/docs/dgraph-cla.html index a44629b269..ad7cc40087 100644 --- a/docs/dgraph-cla.html +++ b/docs/dgraph-cla.html @@ -579,7 +579,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dgraph-cla.json b/docs/dgraph-cla.json index ef4c8cddf5..d42e1687c5 100644 --- a/docs/dgraph-cla.json +++ b/docs/dgraph-cla.json @@ -1 +1,23 @@ -{"key": "dgraph-cla", "short_name": "Dgraph Community License Agreement", "name": "Dgraph Community License Agreement", "category": "Source-available", "owner": "Dgraph", "homepage_url": "https://github.com/dgraph-io/dgraph/blob/master/licenses/DCL.txt", "spdx_license_key": "LicenseRef-scancode-dgraph-cla", "ignorable_copyrights": ["(c) Dgraph Enterprise Edition"], "ignorable_holders": ["Dgraph Enterprise Edition"], "ignorable_urls": ["http://www.apache.org/licenses/LICENSE-2.0", "https://cla-assistant.io/dgraph-io/dgraph", "https://github.com/dgraph-io/dgraph"], "ignorable_emails": ["contact@dgraph.io"]} \ No newline at end of file +{ + "key": "dgraph-cla", + "short_name": "Dgraph Community License Agreement", + "name": "Dgraph Community License Agreement", + "category": "Source-available", + "owner": "Dgraph", + "homepage_url": "https://github.com/dgraph-io/dgraph/blob/master/licenses/DCL.txt", + "spdx_license_key": "LicenseRef-scancode-dgraph-cla", + "ignorable_copyrights": [ + "(c) Dgraph Enterprise Edition" + ], + "ignorable_holders": [ + "Dgraph Enterprise Edition" + ], + "ignorable_urls": [ + "http://www.apache.org/licenses/LICENSE-2.0", + "https://cla-assistant.io/dgraph-io/dgraph", + "https://github.com/dgraph-io/dgraph" + ], + "ignorable_emails": [ + "contact@dgraph.io" + ] +} \ No newline at end of file diff --git a/docs/dhtmlab-public.LICENSE b/docs/dhtmlab-public.LICENSE index e1ce76205d..ef694f07af 100644 --- a/docs/dhtmlab-public.LICENSE +++ b/docs/dhtmlab-public.LICENSE @@ -1,3 +1,18 @@ +--- +key: dhtmlab-public +short_name: dhtmlab Public License +name: Dynamic HTML Lab Public License +category: Permissive +owner: DHTML Lab +spdx_license_key: LicenseRef-scancode-dhtmlab-public +ignorable_copyrights: + - Copyright (c) 2000 internet.com Corp. +ignorable_holders: + - internet.com Corp. +ignorable_urls: + - http://www.dhtmlab.com/ +--- + Copyright (c) 2000 internet.com Corp. All Rights Reserved. Originally published and documented at http://www.dhtmlab.com/ You may use this code on a public Web site only if this entire diff --git a/docs/dhtmlab-public.html b/docs/dhtmlab-public.html index 009b59d64c..c9bf54b962 100644 --- a/docs/dhtmlab-public.html +++ b/docs/dhtmlab-public.html @@ -151,7 +151,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dhtmlab-public.json b/docs/dhtmlab-public.json index b4ca6116b1..0733f58a67 100644 --- a/docs/dhtmlab-public.json +++ b/docs/dhtmlab-public.json @@ -1 +1,17 @@ -{"key": "dhtmlab-public", "short_name": "dhtmlab Public License", "name": "Dynamic HTML Lab Public License", "category": "Permissive", "owner": "DHTML Lab", "spdx_license_key": "LicenseRef-scancode-dhtmlab-public", "ignorable_copyrights": ["Copyright (c) 2000 internet.com Corp."], "ignorable_holders": ["internet.com Corp."], "ignorable_urls": ["http://www.dhtmlab.com/"]} \ No newline at end of file +{ + "key": "dhtmlab-public", + "short_name": "dhtmlab Public License", + "name": "Dynamic HTML Lab Public License", + "category": "Permissive", + "owner": "DHTML Lab", + "spdx_license_key": "LicenseRef-scancode-dhtmlab-public", + "ignorable_copyrights": [ + "Copyright (c) 2000 internet.com Corp." + ], + "ignorable_holders": [ + "internet.com Corp." + ], + "ignorable_urls": [ + "http://www.dhtmlab.com/" + ] +} \ No newline at end of file diff --git a/docs/diffmark.LICENSE b/docs/diffmark.LICENSE index aa8e952a3d..cbf8d2247a 100644 --- a/docs/diffmark.LICENSE +++ b/docs/diffmark.LICENSE @@ -1,2 +1,21 @@ +--- +key: diffmark +short_name: diffmark License +name: diffmark License +category: Public Domain +owner: Unspecified +homepage_url: https://fedoraproject.org/wiki/Licensing/diffmark +notes: | + Per Fedora, this extremely minimal and permissive license was found in + diffmark (0.08). While poorly written, our interpretation of the text + permits use, modification, and distribution. It also permits wearing it as + a hat or eating it for lunch, although neither of those cases are + recommended. This would perhaps be considered Copyright only, except that + no requirement of retention of copyright is present, and the copyright + holder is disclaiming liability (albeit, poorly). This license is Free, and + GPL compatible. +spdx_license_key: diffmark +--- + 1. you can do what you want with it 2. I refuse any responsibility for the consequences \ No newline at end of file diff --git a/docs/diffmark.html b/docs/diffmark.html index 9552fac298..289d0262e7 100644 --- a/docs/diffmark.html +++ b/docs/diffmark.html @@ -143,7 +143,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/diffmark.json b/docs/diffmark.json index 870377f281..4403f7dd74 100644 --- a/docs/diffmark.json +++ b/docs/diffmark.json @@ -1 +1,10 @@ -{"key": "diffmark", "short_name": "diffmark License", "name": "diffmark License", "category": "Public Domain", "owner": "Unspecified", "homepage_url": "https://fedoraproject.org/wiki/Licensing/diffmark", "notes": "Per Fedora, this extremely minimal and permissive license was found in\ndiffmark (0.08). While poorly written, our interpretation of the text\npermits use, modification, and distribution. It also permits wearing it as\na hat or eating it for lunch, although neither of those cases are\nrecommended. This would perhaps be considered Copyright only, except that\nno requirement of retention of copyright is present, and the copyright\nholder is disclaiming liability (albeit, poorly). This license is Free, and\nGPL compatible.\n", "spdx_license_key": "diffmark"} \ No newline at end of file +{ + "key": "diffmark", + "short_name": "diffmark License", + "name": "diffmark License", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/diffmark", + "notes": "Per Fedora, this extremely minimal and permissive license was found in\ndiffmark (0.08). While poorly written, our interpretation of the text\npermits use, modification, and distribution. It also permits wearing it as\na hat or eating it for lunch, although neither of those cases are\nrecommended. This would perhaps be considered Copyright only, except that\nno requirement of retention of copyright is present, and the copyright\nholder is disclaiming liability (albeit, poorly). This license is Free, and\nGPL compatible.\n", + "spdx_license_key": "diffmark" +} \ No newline at end of file diff --git a/docs/digia-qt-commercial.LICENSE b/docs/digia-qt-commercial.LICENSE index c14396f5bc..431657ff85 100644 --- a/docs/digia-qt-commercial.LICENSE +++ b/docs/digia-qt-commercial.LICENSE @@ -1,7 +1,21 @@ +--- +key: digia-qt-commercial +short_name: Digia Qt Commercial +name: Digia Qt Commercial License Usage +category: Commercial +owner: Digia +homepage_url: http://qt.digia.com/licensing +notes: Qt is available under a choice of licenses, one is commercial +spdx_license_key: LicenseRef-scancode-digia-qt-commercial +ignorable_urls: + - http://qt.digia.com/contact-us + - http://qt.digia.com/licensing +--- + Commercial License Usage Licensees holding valid commercial Qt licenses may use this file in accordance with the commercial license agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Digia. For licensing terms and conditions see http://qt.digia.com/licensing. For further information -use the contact form at http://qt.digia.com/contact-us. +use the contact form at http://qt.digia.com/contact-us. \ No newline at end of file diff --git a/docs/digia-qt-commercial.html b/docs/digia-qt-commercial.html index c9daad9e5c..32fda0f123 100644 --- a/docs/digia-qt-commercial.html +++ b/docs/digia-qt-commercial.html @@ -137,8 +137,7 @@ Software or, alternatively, in accordance with the terms contained in a written agreement between you and Digia. For licensing terms and conditions see http://qt.digia.com/licensing. For further information -use the contact form at http://qt.digia.com/contact-us. - +use the contact form at http://qt.digia.com/contact-us.
@@ -150,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/digia-qt-commercial.json b/docs/digia-qt-commercial.json index 40901723c5..50d272f712 100644 --- a/docs/digia-qt-commercial.json +++ b/docs/digia-qt-commercial.json @@ -1 +1,14 @@ -{"key": "digia-qt-commercial", "short_name": "Digia Qt Commercial", "name": "Digia Qt Commercial License Usage", "category": "Commercial", "owner": "Digia", "homepage_url": "http://qt.digia.com/licensing", "notes": "Qt is available under a choice of licenses, one is commercial", "spdx_license_key": "LicenseRef-scancode-digia-qt-commercial", "ignorable_urls": ["http://qt.digia.com/contact-us", "http://qt.digia.com/licensing"]} \ No newline at end of file +{ + "key": "digia-qt-commercial", + "short_name": "Digia Qt Commercial", + "name": "Digia Qt Commercial License Usage", + "category": "Commercial", + "owner": "Digia", + "homepage_url": "http://qt.digia.com/licensing", + "notes": "Qt is available under a choice of licenses, one is commercial", + "spdx_license_key": "LicenseRef-scancode-digia-qt-commercial", + "ignorable_urls": [ + "http://qt.digia.com/contact-us", + "http://qt.digia.com/licensing" + ] +} \ No newline at end of file diff --git a/docs/digia-qt-exception-lgpl-2.1.LICENSE b/docs/digia-qt-exception-lgpl-2.1.LICENSE index ea61032cae..09711fab05 100644 --- a/docs/digia-qt-exception-lgpl-2.1.LICENSE +++ b/docs/digia-qt-exception-lgpl-2.1.LICENSE @@ -1,3 +1,49 @@ +--- +key: digia-qt-exception-lgpl-2.1 +is_deprecated: yes +short_name: Digia Qt Exception to LGPL 2.1 +name: Digia Qt Exception to LGPL 2.1 +category: Copyleft Limited +owner: Digia +is_exception: yes +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +standard_notice: | + 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 + + Digia Qt LGPL Exception version 1.1 + As an additional permission to the GNU Lesser General Public License + version + 2.1, the object code form of a "work that uses the Library" may incorporate + material from a header file that is part of the Library. You may distribute + such object code under terms of your choice, provided that: + (i) the header files of the Library have not been modified; and + (ii) the incorporated material is limited to numerical parameters, data + structure layouts, accessors, macros, inline functions and + templates; and + (iii) you comply with the terms of Section 6 of the GNU Lesser General + Public License version 2.1. + Moreover, you may apply this exception to a modified version of the + Library, + provided that such modification does not involve copying material from the + Library into the modified Library's header files unless such material is + limited to (i) numerical parameters; (ii) data structure layouts; + (iii) accessors; and (iv) small macros, templates and inline functions of + five lines or less in length. + Furthermore, you are not required to apply this additional permission to a + modified version of the Library. +--- + As an additional permission to the GNU Lesser General Public License version 2.1, the object code form of a "work that uses the Library" may incorporate material from a header file that is part of the Library. You may distribute diff --git a/docs/digia-qt-exception-lgpl-2.1.html b/docs/digia-qt-exception-lgpl-2.1.html index 293bc72c04..0702380798 100644 --- a/docs/digia-qt-exception-lgpl-2.1.html +++ b/docs/digia-qt-exception-lgpl-2.1.html @@ -158,6 +158,7 @@ five lines or less in length. Furthermore, you are not required to apply this additional permission to a modified version of the Library. + @@ -194,7 +195,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/digia-qt-exception-lgpl-2.1.json b/docs/digia-qt-exception-lgpl-2.1.json index 1ec4ba0944..581ecd73e2 100644 --- a/docs/digia-qt-exception-lgpl-2.1.json +++ b/docs/digia-qt-exception-lgpl-2.1.json @@ -1 +1,13 @@ -{"key": "digia-qt-exception-lgpl-2.1", "is_deprecated": true, "short_name": "Digia Qt Exception to LGPL 2.1", "name": "Digia Qt Exception to LGPL 2.1", "category": "Copyleft Limited", "owner": "Digia", "is_exception": true, "other_urls": ["http://www.gnu.org/licenses/lgpl-2.1.txt"], "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published by\nthe Free Software Foundation; either version 2.1 of the License, or (at\nyour option) any later version.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License\nfor more details.\nYou should have received a copy of the GNU Lesser General Public License\nalong with this library; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nDigia Qt LGPL Exception version 1.1\nAs an additional permission to the GNU Lesser General Public License\nversion\n2.1, the object code form of a \"work that uses the Library\" may incorporate\nmaterial from a header file that is part of the Library. You may distribute\nsuch object code under terms of your choice, provided that:\n(i) the header files of the Library have not been modified; and\n(ii) the incorporated material is limited to numerical parameters, data\nstructure layouts, accessors, macros, inline functions and\ntemplates; and\n(iii) you comply with the terms of Section 6 of the GNU Lesser General\nPublic License version 2.1.\nMoreover, you may apply this exception to a modified version of the\nLibrary,\nprovided that such modification does not involve copying material from the\nLibrary into the modified Library's header files unless such material is\nlimited to (i) numerical parameters; (ii) data structure layouts;\n(iii) accessors; and (iv) small macros, templates and inline functions of\nfive lines or less in length.\nFurthermore, you are not required to apply this additional permission to a\nmodified version of the Library."} \ No newline at end of file +{ + "key": "digia-qt-exception-lgpl-2.1", + "is_deprecated": true, + "short_name": "Digia Qt Exception to LGPL 2.1", + "name": "Digia Qt Exception to LGPL 2.1", + "category": "Copyleft Limited", + "owner": "Digia", + "is_exception": true, + "other_urls": [ + "http://www.gnu.org/licenses/lgpl-2.1.txt" + ], + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published by\nthe Free Software Foundation; either version 2.1 of the License, or (at\nyour option) any later version.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License\nfor more details.\nYou should have received a copy of the GNU Lesser General Public License\nalong with this library; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nDigia Qt LGPL Exception version 1.1\nAs an additional permission to the GNU Lesser General Public License\nversion\n2.1, the object code form of a \"work that uses the Library\" may incorporate\nmaterial from a header file that is part of the Library. You may distribute\nsuch object code under terms of your choice, provided that:\n(i) the header files of the Library have not been modified; and\n(ii) the incorporated material is limited to numerical parameters, data\nstructure layouts, accessors, macros, inline functions and\ntemplates; and\n(iii) you comply with the terms of Section 6 of the GNU Lesser General\nPublic License version 2.1.\nMoreover, you may apply this exception to a modified version of the\nLibrary,\nprovided that such modification does not involve copying material from the\nLibrary into the modified Library's header files unless such material is\nlimited to (i) numerical parameters; (ii) data structure layouts;\n(iii) accessors; and (iv) small macros, templates and inline functions of\nfive lines or less in length.\nFurthermore, you are not required to apply this additional permission to a\nmodified version of the Library.\n" +} \ No newline at end of file diff --git a/docs/digia-qt-preview.LICENSE b/docs/digia-qt-preview.LICENSE index c8323ec70c..ca6f3a1f06 100644 --- a/docs/digia-qt-preview.LICENSE +++ b/docs/digia-qt-preview.LICENSE @@ -1,3 +1,14 @@ +--- +key: digia-qt-preview +short_name: Digia Qt Preview Agreement 2.4 +name: Digia Qt Technology Preview License Agreement 2.4 +category: Commercial +owner: Digia +homepage_url: http://qt.digia.com/licensing +notes: This agreement is also included in Qt open source. +spdx_license_key: LicenseRef-scancode-digia-qt-preview +--- + TECHNOLOGY PREVIEW LICENSE AGREEMENT For individuals and/or legal entities resident in the Americas (North @@ -621,7 +632,4 @@ through 227.7202-4 (June 1995), all U.S. Government End Users acquire the Licensed Software with only those rights set forth herein. The Licensed Software (including related documentation) is provided to U.S. Government End Users: (a) only as a commercial end item; and (b) only -pursuant to this Agreement. - - - +pursuant to this Agreement. \ No newline at end of file diff --git a/docs/digia-qt-preview.html b/docs/digia-qt-preview.html index b4d5ea26b4..c724f0d18f 100644 --- a/docs/digia-qt-preview.html +++ b/docs/digia-qt-preview.html @@ -745,11 +745,7 @@ the Licensed Software with only those rights set forth herein. The Licensed Software (including related documentation) is provided to U.S. Government End Users: (a) only as a commercial end item; and (b) only -pursuant to this Agreement. - - - - +pursuant to this Agreement.
@@ -761,7 +757,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/digia-qt-preview.json b/docs/digia-qt-preview.json index 7c33955af0..8256b6a4cb 100644 --- a/docs/digia-qt-preview.json +++ b/docs/digia-qt-preview.json @@ -1 +1,10 @@ -{"key": "digia-qt-preview", "short_name": "Digia Qt Preview Agreement 2.4", "name": "Digia Qt Technology Preview License Agreement 2.4", "category": "Commercial", "owner": "Digia", "homepage_url": "http://qt.digia.com/licensing", "notes": "This agreement is also included in Qt open source.", "spdx_license_key": "LicenseRef-scancode-digia-qt-preview"} \ No newline at end of file +{ + "key": "digia-qt-preview", + "short_name": "Digia Qt Preview Agreement 2.4", + "name": "Digia Qt Technology Preview License Agreement 2.4", + "category": "Commercial", + "owner": "Digia", + "homepage_url": "http://qt.digia.com/licensing", + "notes": "This agreement is also included in Qt open source.", + "spdx_license_key": "LicenseRef-scancode-digia-qt-preview" +} \ No newline at end of file diff --git a/docs/digirule-foss-exception.LICENSE b/docs/digirule-foss-exception.LICENSE index 4a5e6e92a0..4b5a8ed47d 100644 --- a/docs/digirule-foss-exception.LICENSE +++ b/docs/digirule-foss-exception.LICENSE @@ -1,3 +1,83 @@ +--- +key: digirule-foss-exception +short_name: DigiRule FOSS Exception to GPL 2.0 +name: DigiRule FOSS License Exception to GPL 2.0 +category: Copyleft Limited +owner: bradsprojects +homepage_url: https://bradsprojects.com/the-digirule/ +is_exception: yes +spdx_license_key: DigiRule-FOSS-exception +other_urls: + - http://www.digirulesolutions.com/drupal/foss + - http://www.gnu.org/licenses/gpl-2.0.txt + - https://www.bradsprojects.com/wp-content/uploads/2015/10/Digirule_Files_04_July_2017.zip +minimum_coverage: 90 +standard_notice: | + DigiRule Solutions's FOSS License Exception Terms and Conditions + 1. Definitions. + "Derivative Work" means a derivative work, as defined under applicable + copyright law, formed entirely from the Program and one or more FOSS + Applications. + "FOSS Application" means a free and open source software application + distributed subject to a license listed in the section below titled "FOSS + License List." + "FOSS Notice" means a notice placed by DigiRule Solutions in a copy of the + Client Libraries stating that such copy of the Client Libraries may be + distributed under DigiRule Solutions's or FOSS License Exception. + "Independent Work" means portions of the Derivative Work that are not + derived from the Program and can reasonably be considered independent and + separate works. + "Program" means a copy of DigiRule Solutions's Client Libraries that + contain a FOSS Notice. + 2. A FOSS application developer ("you" or "your") may distribute a + Derivative Work provided that you and the Derivative Work meet all of the + following conditions: + 1. You obey the GPL in all respects for the Program and all portions + (including modifications) of the Program included in the Derivative Work + (provided that this condition does not apply to Independent Works); + 2. The Derivative Work does not include any work licensed under the GPL + other than the Program; + 3. You distribute Independent Works subject to a license listed in the + section below titled "FOSS License List"; + 4. You distribute Independent Works in object code or executable form with + the complete corresponding machine-readable source code on the same medium + and under the same FOSS license applying to the object code or executable + forms; + 5. All works that are aggregated with the Program or the Derivative Work on + a medium or volume of storage are not derivative works of the Program, + Derivative Work or FOSS Application, and must reasonably be considered + independent and separate works. + 3. DigiRule Solutions reserves all rights not expressly granted in these + terms and conditions. If all of the above conditions are not met, then this + FOSS License Exception does not apply to you or your Derivative Work. + FOSS License List + License Name Version(s)/Copyright Date + Release Early Certified Software + Academic Free License 2.0 + Apache Software License 1.0/1.1/2.0 + Apple Public Source License 2.0 + Artistic license From Perl 5.8.0 + BSD license "July 22 1999" + Common Development and Distribution License (CDDL) 1.0 + Common Public License 1.0 + Eclipse Public License 1.0 + GNU Library or "Lesser" General Public License (LGPL) 2.0/2.1/3.0 + Jabber Open Source License 1.0 + MIT License (As listed in file MIT-License.txt) - + Mozilla Public License (MPL) 1.0/1.1 + Open Software License 2.0 + OpenSSL license (with original SSLeay license) "2003" ("1998") + PHP License 3.0/3.01 + Python license (CNRI Python License) - + Python Software Foundation License 2.1.1 + Sleepycat License "1999" + University of Illinois/NCSA Open Source License - + W3C License "2001" + X11 License "2001" + Zlib/libpng License - + Zope Public License 2.0 +--- + DigiRule Solutions's FOSS License Exception Terms and Conditions 1. Definitions. diff --git a/docs/digirule-foss-exception.html b/docs/digirule-foss-exception.html index 9432031933..56db1cd185 100644 --- a/docs/digirule-foss-exception.html +++ b/docs/digirule-foss-exception.html @@ -266,7 +266,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/digirule-foss-exception.json b/docs/digirule-foss-exception.json index 0a4666aba9..a1629d5c92 100644 --- a/docs/digirule-foss-exception.json +++ b/docs/digirule-foss-exception.json @@ -1 +1,17 @@ -{"key": "digirule-foss-exception", "short_name": "DigiRule FOSS Exception to GPL 2.0", "name": "DigiRule FOSS License Exception to GPL 2.0", "category": "Copyleft Limited", "owner": "bradsprojects", "homepage_url": "https://bradsprojects.com/the-digirule/", "is_exception": true, "spdx_license_key": "DigiRule-FOSS-exception", "other_urls": ["http://www.digirulesolutions.com/drupal/foss", "http://www.gnu.org/licenses/gpl-2.0.txt", "https://www.bradsprojects.com/wp-content/uploads/2015/10/Digirule_Files_04_July_2017.zip"], "minimum_coverage": 90, "standard_notice": "DigiRule Solutions's FOSS License Exception Terms and Conditions\n1. Definitions.\n\"Derivative Work\" means a derivative work, as defined under applicable\ncopyright law, formed entirely from the Program and one or more FOSS\nApplications.\n\"FOSS Application\" means a free and open source software application\ndistributed subject to a license listed in the section below titled \"FOSS\nLicense List.\"\n\"FOSS Notice\" means a notice placed by DigiRule Solutions in a copy of the\nClient Libraries stating that such copy of the Client Libraries may be\ndistributed under DigiRule Solutions's or FOSS License Exception.\n\"Independent Work\" means portions of the Derivative Work that are not\nderived from the Program and can reasonably be considered independent and\nseparate works.\n\"Program\" means a copy of DigiRule Solutions's Client Libraries that\ncontain a FOSS Notice.\n2. A FOSS application developer (\"you\" or \"your\") may distribute a\nDerivative Work provided that you and the Derivative Work meet all of the\nfollowing conditions:\n1. You obey the GPL in all respects for the Program and all portions\n(including modifications) of the Program included in the Derivative Work\n(provided that this condition does not apply to Independent Works);\n2. The Derivative Work does not include any work licensed under the GPL\nother than the Program;\n3. You distribute Independent Works subject to a license listed in the\nsection below titled \"FOSS License List\";\n4. You distribute Independent Works in object code or executable form with\nthe complete corresponding machine-readable source code on the same medium\nand under the same FOSS license applying to the object code or executable\nforms;\n5. All works that are aggregated with the Program or the Derivative Work on\na medium or volume of storage are not derivative works of the Program,\nDerivative Work or FOSS Application, and must reasonably be considered\nindependent and separate works.\n3. DigiRule Solutions reserves all rights not expressly granted in these\nterms and conditions. If all of the above conditions are not met, then this\nFOSS License Exception does not apply to you or your Derivative Work.\nFOSS License List\nLicense Name Version(s)/Copyright Date\nRelease Early Certified Software\nAcademic Free License 2.0\nApache Software License 1.0/1.1/2.0\nApple Public Source License 2.0\nArtistic license From Perl 5.8.0\nBSD license \"July 22 1999\"\nCommon Development and Distribution License (CDDL) 1.0\nCommon Public License 1.0\nEclipse Public License 1.0\nGNU Library or \"Lesser\" General Public License (LGPL) 2.0/2.1/3.0\nJabber Open Source License 1.0\nMIT License (As listed in file MIT-License.txt) -\nMozilla Public License (MPL) 1.0/1.1\nOpen Software License 2.0\nOpenSSL license (with original SSLeay license) \"2003\" (\"1998\")\nPHP License 3.0/3.01\nPython license (CNRI Python License) -\nPython Software Foundation License 2.1.1\nSleepycat License \"1999\"\nUniversity of Illinois/NCSA Open Source License -\nW3C License \"2001\"\nX11 License \"2001\"\nZlib/libpng License -\nZope Public License 2.0\n"} \ No newline at end of file +{ + "key": "digirule-foss-exception", + "short_name": "DigiRule FOSS Exception to GPL 2.0", + "name": "DigiRule FOSS License Exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "bradsprojects", + "homepage_url": "https://bradsprojects.com/the-digirule/", + "is_exception": true, + "spdx_license_key": "DigiRule-FOSS-exception", + "other_urls": [ + "http://www.digirulesolutions.com/drupal/foss", + "http://www.gnu.org/licenses/gpl-2.0.txt", + "https://www.bradsprojects.com/wp-content/uploads/2015/10/Digirule_Files_04_July_2017.zip" + ], + "minimum_coverage": 90, + "standard_notice": "DigiRule Solutions's FOSS License Exception Terms and Conditions\n1. Definitions.\n\"Derivative Work\" means a derivative work, as defined under applicable\ncopyright law, formed entirely from the Program and one or more FOSS\nApplications.\n\"FOSS Application\" means a free and open source software application\ndistributed subject to a license listed in the section below titled \"FOSS\nLicense List.\"\n\"FOSS Notice\" means a notice placed by DigiRule Solutions in a copy of the\nClient Libraries stating that such copy of the Client Libraries may be\ndistributed under DigiRule Solutions's or FOSS License Exception.\n\"Independent Work\" means portions of the Derivative Work that are not\nderived from the Program and can reasonably be considered independent and\nseparate works.\n\"Program\" means a copy of DigiRule Solutions's Client Libraries that\ncontain a FOSS Notice.\n2. A FOSS application developer (\"you\" or \"your\") may distribute a\nDerivative Work provided that you and the Derivative Work meet all of the\nfollowing conditions:\n1. You obey the GPL in all respects for the Program and all portions\n(including modifications) of the Program included in the Derivative Work\n(provided that this condition does not apply to Independent Works);\n2. The Derivative Work does not include any work licensed under the GPL\nother than the Program;\n3. You distribute Independent Works subject to a license listed in the\nsection below titled \"FOSS License List\";\n4. You distribute Independent Works in object code or executable form with\nthe complete corresponding machine-readable source code on the same medium\nand under the same FOSS license applying to the object code or executable\nforms;\n5. All works that are aggregated with the Program or the Derivative Work on\na medium or volume of storage are not derivative works of the Program,\nDerivative Work or FOSS Application, and must reasonably be considered\nindependent and separate works.\n3. DigiRule Solutions reserves all rights not expressly granted in these\nterms and conditions. If all of the above conditions are not met, then this\nFOSS License Exception does not apply to you or your Derivative Work.\nFOSS License List\nLicense Name Version(s)/Copyright Date\nRelease Early Certified Software\nAcademic Free License 2.0\nApache Software License 1.0/1.1/2.0\nApple Public Source License 2.0\nArtistic license From Perl 5.8.0\nBSD license \"July 22 1999\"\nCommon Development and Distribution License (CDDL) 1.0\nCommon Public License 1.0\nEclipse Public License 1.0\nGNU Library or \"Lesser\" General Public License (LGPL) 2.0/2.1/3.0\nJabber Open Source License 1.0\nMIT License (As listed in file MIT-License.txt) -\nMozilla Public License (MPL) 1.0/1.1\nOpen Software License 2.0\nOpenSSL license (with original SSLeay license) \"2003\" (\"1998\")\nPHP License 3.0/3.01\nPython license (CNRI Python License) -\nPython Software Foundation License 2.1.1\nSleepycat License \"1999\"\nUniversity of Illinois/NCSA Open Source License -\nW3C License \"2001\"\nX11 License \"2001\"\nZlib/libpng License -\nZope Public License 2.0\n" +} \ No newline at end of file diff --git a/docs/divx-open-1.0.LICENSE b/docs/divx-open-1.0.LICENSE index 4474f724a5..3582561235 100644 --- a/docs/divx-open-1.0.LICENSE +++ b/docs/divx-open-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: divx-open-1.0 +short_name: DivX Open License 1.0 +name: DivX Open License v1.0 +category: Copyleft Limited +owner: DivX, LLC +spdx_license_key: LicenseRef-scancode-divx-open-1.0 +minimum_coverage: 30 +ignorable_copyrights: + - Copyright (c) 2001 Project Mayo +ignorable_holders: + - Project Mayo +ignorable_authors: + - Project Mayo +--- + DivX Open License ================= Version 1.0 diff --git a/docs/divx-open-1.0.html b/docs/divx-open-1.0.html index 6c445ca674..0de83f3c1e 100644 --- a/docs/divx-open-1.0.html +++ b/docs/divx-open-1.0.html @@ -208,7 +208,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/divx-open-1.0.json b/docs/divx-open-1.0.json index ebce91e79a..469c3e8ce3 100644 --- a/docs/divx-open-1.0.json +++ b/docs/divx-open-1.0.json @@ -1 +1,18 @@ -{"key": "divx-open-1.0", "short_name": "DivX Open License 1.0", "name": "DivX Open License v1.0", "category": "Copyleft Limited", "owner": "DivX, LLC", "spdx_license_key": "LicenseRef-scancode-divx-open-1.0", "minimum_coverage": 30, "ignorable_copyrights": ["Copyright (c) 2001 Project Mayo"], "ignorable_holders": ["Project Mayo"], "ignorable_authors": ["Project Mayo"]} \ No newline at end of file +{ + "key": "divx-open-1.0", + "short_name": "DivX Open License 1.0", + "name": "DivX Open License v1.0", + "category": "Copyleft Limited", + "owner": "DivX, LLC", + "spdx_license_key": "LicenseRef-scancode-divx-open-1.0", + "minimum_coverage": 30, + "ignorable_copyrights": [ + "Copyright (c) 2001 Project Mayo" + ], + "ignorable_holders": [ + "Project Mayo" + ], + "ignorable_authors": [ + "Project Mayo" + ] +} \ No newline at end of file diff --git a/docs/divx-open-2.1.LICENSE b/docs/divx-open-2.1.LICENSE index fca505f77c..c1c358581e 100644 --- a/docs/divx-open-2.1.LICENSE +++ b/docs/divx-open-2.1.LICENSE @@ -1,3 +1,18 @@ +--- +key: divx-open-2.1 +short_name: DivX Open License 2.1 +name: DivX Open License v2.1 +category: Copyleft Limited +owner: DivX, LLC +spdx_license_key: LicenseRef-scancode-divx-open-2.1 +ignorable_copyrights: + - Copyright (c) 2001 Project Mayo +ignorable_holders: + - Project Mayo +ignorable_authors: + - Project Mayo +--- + "OpenDivX" is licensed under the DivX Open License. DivX Open License diff --git a/docs/divx-open-2.1.html b/docs/divx-open-2.1.html index b8dacf19a8..dd9ecb408b 100644 --- a/docs/divx-open-2.1.html +++ b/docs/divx-open-2.1.html @@ -197,7 +197,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/divx-open-2.1.json b/docs/divx-open-2.1.json index bc3b07ada6..fa4329c9f8 100644 --- a/docs/divx-open-2.1.json +++ b/docs/divx-open-2.1.json @@ -1 +1,17 @@ -{"key": "divx-open-2.1", "short_name": "DivX Open License 2.1", "name": "DivX Open License v2.1", "category": "Copyleft Limited", "owner": "DivX, LLC", "spdx_license_key": "LicenseRef-scancode-divx-open-2.1", "ignorable_copyrights": ["Copyright (c) 2001 Project Mayo"], "ignorable_holders": ["Project Mayo"], "ignorable_authors": ["Project Mayo"]} \ No newline at end of file +{ + "key": "divx-open-2.1", + "short_name": "DivX Open License 2.1", + "name": "DivX Open License v2.1", + "category": "Copyleft Limited", + "owner": "DivX, LLC", + "spdx_license_key": "LicenseRef-scancode-divx-open-2.1", + "ignorable_copyrights": [ + "Copyright (c) 2001 Project Mayo" + ], + "ignorable_holders": [ + "Project Mayo" + ], + "ignorable_authors": [ + "Project Mayo" + ] +} \ No newline at end of file diff --git a/docs/dl-de-by-1-0-de.LICENSE b/docs/dl-de-by-1-0-de.LICENSE index a36fb880e8..6217015c75 100644 --- a/docs/dl-de-by-1-0-de.LICENSE +++ b/docs/dl-de-by-1-0-de.LICENSE @@ -1,3 +1,16 @@ +--- +key: dl-de-by-1-0-de +language: de +short_name: dl-de/by-1-0-de +name: Datenlizenz Deutschland - Namensnennung - Version 1.0 - Deutsch +category: Permissive +owner: govdata.de +homepage_url: https://www.govdata.de/dl-de/by-1-0 +spdx_license_key: LicenseRef-scancode-dl-de-by-1-0-de +other_urls: + - https://www.dcat-ap.de/def/licenses/ +--- + DL-DE->BY-1.0 Datenlizenz Deutschland – Namensnennung – Version 1.0 diff --git a/docs/dl-de-by-1-0-de.html b/docs/dl-de-by-1-0-de.html index 59128ac9cb..0230817b64 100644 --- a/docs/dl-de-by-1-0-de.html +++ b/docs/dl-de-by-1-0-de.html @@ -151,7 +151,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dl-de-by-1-0-de.json b/docs/dl-de-by-1-0-de.json index e9d5d8bd03..6af427c342 100644 --- a/docs/dl-de-by-1-0-de.json +++ b/docs/dl-de-by-1-0-de.json @@ -1 +1,13 @@ -{"key": "dl-de-by-1-0-de", "language": "de", "short_name": "dl-de/by-1-0-de", "name": "Datenlizenz Deutschland - Namensnennung - Version 1.0 - Deutsch", "category": "Permissive", "owner": "govdata.de", "homepage_url": "https://www.govdata.de/dl-de/by-1-0", "spdx_license_key": "LicenseRef-scancode-dl-de-by-1-0-de", "other_urls": ["https://www.dcat-ap.de/def/licenses/"]} \ No newline at end of file +{ + "key": "dl-de-by-1-0-de", + "language": "de", + "short_name": "dl-de/by-1-0-de", + "name": "Datenlizenz Deutschland - Namensnennung - Version 1.0 - Deutsch", + "category": "Permissive", + "owner": "govdata.de", + "homepage_url": "https://www.govdata.de/dl-de/by-1-0", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-1-0-de", + "other_urls": [ + "https://www.dcat-ap.de/def/licenses/" + ] +} \ No newline at end of file diff --git a/docs/dl-de-by-1-0-en.LICENSE b/docs/dl-de-by-1-0-en.LICENSE index 6d68da1a30..8f799ced00 100644 --- a/docs/dl-de-by-1-0-en.LICENSE +++ b/docs/dl-de-by-1-0-en.LICENSE @@ -1,3 +1,15 @@ +--- +key: dl-de-by-1-0-en +short_name: dl-de/by-1-0-en +name: Data licence Germany - attribution - Version 1 - English +category: Permissive +owner: govdata.de +homepage_url: https://www.govdata.de/dl-de/by-1-0 +spdx_license_key: LicenseRef-scancode-dl-de-by-1-0-en +other_urls: + - https://www.dcat-ap.de/def/licenses/ +--- + DL-DE->BY-1.0 Data licence Germany – attribution – Version 1.0 diff --git a/docs/dl-de-by-1-0-en.html b/docs/dl-de-by-1-0-en.html index 9250934bf6..09ccc9f747 100644 --- a/docs/dl-de-by-1-0-en.html +++ b/docs/dl-de-by-1-0-en.html @@ -144,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dl-de-by-1-0-en.json b/docs/dl-de-by-1-0-en.json index 218ca1a6e6..f3da36d543 100644 --- a/docs/dl-de-by-1-0-en.json +++ b/docs/dl-de-by-1-0-en.json @@ -1 +1,12 @@ -{"key": "dl-de-by-1-0-en", "short_name": "dl-de/by-1-0-en", "name": "Data licence Germany - attribution - Version 1 - English", "category": "Permissive", "owner": "govdata.de", "homepage_url": "https://www.govdata.de/dl-de/by-1-0", "spdx_license_key": "LicenseRef-scancode-dl-de-by-1-0-en", "other_urls": ["https://www.dcat-ap.de/def/licenses/"]} \ No newline at end of file +{ + "key": "dl-de-by-1-0-en", + "short_name": "dl-de/by-1-0-en", + "name": "Data licence Germany - attribution - Version 1 - English", + "category": "Permissive", + "owner": "govdata.de", + "homepage_url": "https://www.govdata.de/dl-de/by-1-0", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-1-0-en", + "other_urls": [ + "https://www.dcat-ap.de/def/licenses/" + ] +} \ No newline at end of file diff --git a/docs/dl-de-by-2-0-de.LICENSE b/docs/dl-de-by-2-0-de.LICENSE index d427b40d17..8b6a45b3ef 100644 --- a/docs/dl-de-by-2-0-de.LICENSE +++ b/docs/dl-de-by-2-0-de.LICENSE @@ -1,3 +1,21 @@ +--- +key: dl-de-by-2-0-de +language: de +short_name: dl-de/by-2-0-de +name: Datenlizenz Deutschland - Namensnennung - Version 2.0 - Deutsch +category: Permissive +owner: govdata.de +homepage_url: http://www.govdata.de/dl-de/by-2-0 +spdx_license_key: DL-DE-BY-2.0 +other_spdx_license_keys: + - LicenseRef-scancode-dl-de-by-2-0-de +other_urls: + - https://www.dcat-ap.de/def/licenses/ + - https://www.govdata.de/dl-de/by-2-0 +ignorable_urls: + - http://www.govdata.de/dl-de/by-2-0 +--- + DL-DE->BY-2.0 Datenlizenz Deutschland – Namensnennung – Version 2.0 diff --git a/docs/dl-de-by-2-0-de.html b/docs/dl-de-by-2-0-de.html index 35a0d0b3fb..1824c59b98 100644 --- a/docs/dl-de-by-2-0-de.html +++ b/docs/dl-de-by-2-0-de.html @@ -181,7 +181,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dl-de-by-2-0-de.json b/docs/dl-de-by-2-0-de.json index 097c261dda..bfc65eb72f 100644 --- a/docs/dl-de-by-2-0-de.json +++ b/docs/dl-de-by-2-0-de.json @@ -1 +1,20 @@ -{"key": "dl-de-by-2-0-de", "language": "de", "short_name": "dl-de/by-2-0-de", "name": "Datenlizenz Deutschland - Namensnennung - Version 2.0 - Deutsch", "category": "Permissive", "owner": "govdata.de", "homepage_url": "http://www.govdata.de/dl-de/by-2-0", "spdx_license_key": "DL-DE-BY-2.0", "other_spdx_license_keys": ["LicenseRef-scancode-dl-de-by-2-0-de"], "other_urls": ["https://www.dcat-ap.de/def/licenses/", "https://www.govdata.de/dl-de/by-2-0"], "ignorable_urls": ["http://www.govdata.de/dl-de/by-2-0"]} \ No newline at end of file +{ + "key": "dl-de-by-2-0-de", + "language": "de", + "short_name": "dl-de/by-2-0-de", + "name": "Datenlizenz Deutschland - Namensnennung - Version 2.0 - Deutsch", + "category": "Permissive", + "owner": "govdata.de", + "homepage_url": "http://www.govdata.de/dl-de/by-2-0", + "spdx_license_key": "DL-DE-BY-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-dl-de-by-2-0-de" + ], + "other_urls": [ + "https://www.dcat-ap.de/def/licenses/", + "https://www.govdata.de/dl-de/by-2-0" + ], + "ignorable_urls": [ + "http://www.govdata.de/dl-de/by-2-0" + ] +} \ No newline at end of file diff --git a/docs/dl-de-by-2-0-en.LICENSE b/docs/dl-de-by-2-0-en.LICENSE index 04889f4410..71fb9603b5 100644 --- a/docs/dl-de-by-2-0-en.LICENSE +++ b/docs/dl-de-by-2-0-en.LICENSE @@ -1,3 +1,17 @@ +--- +key: dl-de-by-2-0-en +short_name: dl-de/by-2-0-en +name: Data licence Germany - attribution - Version 2 - English +category: Permissive +owner: govdata.de +homepage_url: http://www.govdata.de/dl-de/by-2-0 +spdx_license_key: LicenseRef-scancode-dl-de-by-2-0-en +other_urls: + - https://www.dcat-ap.de/def/licenses/ +ignorable_urls: + - http://www.govdata.de/dl-de/by-2-0 +--- + DL-DE->BY-2.0 Data licence Germany – attribution – version 2.0 diff --git a/docs/dl-de-by-2-0-en.html b/docs/dl-de-by-2-0-en.html index a2621c9357..b904ab948e 100644 --- a/docs/dl-de-by-2-0-en.html +++ b/docs/dl-de-by-2-0-en.html @@ -165,7 +165,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dl-de-by-2-0-en.json b/docs/dl-de-by-2-0-en.json index 75e45331aa..9b33fbb73b 100644 --- a/docs/dl-de-by-2-0-en.json +++ b/docs/dl-de-by-2-0-en.json @@ -1 +1,15 @@ -{"key": "dl-de-by-2-0-en", "short_name": "dl-de/by-2-0-en", "name": "Data licence Germany - attribution - Version 2 - English", "category": "Permissive", "owner": "govdata.de", "homepage_url": "http://www.govdata.de/dl-de/by-2-0", "spdx_license_key": "LicenseRef-scancode-dl-de-by-2-0-en", "other_urls": ["https://www.dcat-ap.de/def/licenses/"], "ignorable_urls": ["http://www.govdata.de/dl-de/by-2-0"]} \ No newline at end of file +{ + "key": "dl-de-by-2-0-en", + "short_name": "dl-de/by-2-0-en", + "name": "Data licence Germany - attribution - Version 2 - English", + "category": "Permissive", + "owner": "govdata.de", + "homepage_url": "http://www.govdata.de/dl-de/by-2-0", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-2-0-en", + "other_urls": [ + "https://www.dcat-ap.de/def/licenses/" + ], + "ignorable_urls": [ + "http://www.govdata.de/dl-de/by-2-0" + ] +} \ No newline at end of file diff --git a/docs/dl-de-by-nc-1-0-de.LICENSE b/docs/dl-de-by-nc-1-0-de.LICENSE index e7e4c33562..94124c4b49 100644 --- a/docs/dl-de-by-nc-1-0-de.LICENSE +++ b/docs/dl-de-by-nc-1-0-de.LICENSE @@ -1,3 +1,16 @@ +--- +key: dl-de-by-nc-1-0-de +language: de +short_name: dl-de/by-nc-1-0-de +name: Datenlizenz Deutschland - Namensnennung - nicht kommerziell - Version 1.0 - Deutsch +category: Free Restricted +owner: govdata.de +homepage_url: https://www.govdata.de/dl-de/by-nc-1-0 +spdx_license_key: LicenseRef-scancode-dl-de-by-nc-1-0-de +other_urls: + - https://www.dcat-ap.de/def/licenses/ +--- + DL-DE->BY-NC-1.0 Datenlizenz Deutschland – Namensnennung – nicht kommerziell – Version 1.0 diff --git a/docs/dl-de-by-nc-1-0-de.html b/docs/dl-de-by-nc-1-0-de.html index 05005b072c..7542d2ec3d 100644 --- a/docs/dl-de-by-nc-1-0-de.html +++ b/docs/dl-de-by-nc-1-0-de.html @@ -151,7 +151,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dl-de-by-nc-1-0-de.json b/docs/dl-de-by-nc-1-0-de.json index c1e10c180a..3e763a4336 100644 --- a/docs/dl-de-by-nc-1-0-de.json +++ b/docs/dl-de-by-nc-1-0-de.json @@ -1 +1,13 @@ -{"key": "dl-de-by-nc-1-0-de", "language": "de", "short_name": "dl-de/by-nc-1-0-de", "name": "Datenlizenz Deutschland - Namensnennung - nicht kommerziell - Version 1.0 - Deutsch", "category": "Free Restricted", "owner": "govdata.de", "homepage_url": "https://www.govdata.de/dl-de/by-nc-1-0", "spdx_license_key": "LicenseRef-scancode-dl-de-by-nc-1-0-de", "other_urls": ["https://www.dcat-ap.de/def/licenses/"]} \ No newline at end of file +{ + "key": "dl-de-by-nc-1-0-de", + "language": "de", + "short_name": "dl-de/by-nc-1-0-de", + "name": "Datenlizenz Deutschland - Namensnennung - nicht kommerziell - Version 1.0 - Deutsch", + "category": "Free Restricted", + "owner": "govdata.de", + "homepage_url": "https://www.govdata.de/dl-de/by-nc-1-0", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-nc-1-0-de", + "other_urls": [ + "https://www.dcat-ap.de/def/licenses/" + ] +} \ No newline at end of file diff --git a/docs/dl-de-by-nc-1-0-en.LICENSE b/docs/dl-de-by-nc-1-0-en.LICENSE index 8295543ae2..c5c2ff2618 100644 --- a/docs/dl-de-by-nc-1-0-en.LICENSE +++ b/docs/dl-de-by-nc-1-0-en.LICENSE @@ -1,3 +1,15 @@ +--- +key: dl-de-by-nc-1-0-en +short_name: dl-de/by-nc-1-0-en +name: Data licence Germany - attribution - non-commercial - Version 1.0 - English +category: Free Restricted +owner: govdata.de +homepage_url: https://www.govdata.de/dl-de/by-nc-1-0 +spdx_license_key: LicenseRef-scancode-dl-de-by-nc-1-0-en +other_urls: + - https://www.dcat-ap.de/def/licenses/ +--- + DL-DE->BY-NC-1.0 Data licence Germany – attribution – non-commercial – Version 1.0 diff --git a/docs/dl-de-by-nc-1-0-en.html b/docs/dl-de-by-nc-1-0-en.html index 8f0de26ede..6492423e66 100644 --- a/docs/dl-de-by-nc-1-0-en.html +++ b/docs/dl-de-by-nc-1-0-en.html @@ -144,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dl-de-by-nc-1-0-en.json b/docs/dl-de-by-nc-1-0-en.json index 38162b39ca..317f311286 100644 --- a/docs/dl-de-by-nc-1-0-en.json +++ b/docs/dl-de-by-nc-1-0-en.json @@ -1 +1,12 @@ -{"key": "dl-de-by-nc-1-0-en", "short_name": "dl-de/by-nc-1-0-en", "name": "Data licence Germany - attribution - non-commercial - Version 1.0 - English", "category": "Free Restricted", "owner": "govdata.de", "homepage_url": "https://www.govdata.de/dl-de/by-nc-1-0", "spdx_license_key": "LicenseRef-scancode-dl-de-by-nc-1-0-en", "other_urls": ["https://www.dcat-ap.de/def/licenses/"]} \ No newline at end of file +{ + "key": "dl-de-by-nc-1-0-en", + "short_name": "dl-de/by-nc-1-0-en", + "name": "Data licence Germany - attribution - non-commercial - Version 1.0 - English", + "category": "Free Restricted", + "owner": "govdata.de", + "homepage_url": "https://www.govdata.de/dl-de/by-nc-1-0", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-nc-1-0-en", + "other_urls": [ + "https://www.dcat-ap.de/def/licenses/" + ] +} \ No newline at end of file diff --git a/docs/dmalloc.LICENSE b/docs/dmalloc.LICENSE index 70c276b116..44552fd429 100644 --- a/docs/dmalloc.LICENSE +++ b/docs/dmalloc.LICENSE @@ -1,3 +1,15 @@ +--- +key: dmalloc +short_name: dmalloc License +name: dmalloc License +category: Permissive +owner: Dmalloc +spdx_license_key: LicenseRef-scancode-dmalloc +faq_url: http://dmalloc.com/ +other_urls: + - http://dmalloc.com/ +--- + Permission to use, copy, modify, and distribute this software for any purpose and without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all @@ -7,5 +19,4 @@ without specific, written prior permission. Gray Watson makes no representations about the suitability of the software described herein for any purpose.  It is provided "as is" -without express or implied warranty. - +without express or implied warranty. \ No newline at end of file diff --git a/docs/dmalloc.html b/docs/dmalloc.html index 84b0de36e2..0b2f45c673 100644 --- a/docs/dmalloc.html +++ b/docs/dmalloc.html @@ -133,9 +133,7 @@ Gray Watson makes no representations about the suitability of the software described herein for any purpose.  It is provided "as is" -without express or implied warranty. - - +without express or implied warranty.
@@ -147,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dmalloc.json b/docs/dmalloc.json index 43ce841887..8d9328d967 100644 --- a/docs/dmalloc.json +++ b/docs/dmalloc.json @@ -1 +1,12 @@ -{"key": "dmalloc", "short_name": "dmalloc License", "name": "dmalloc License", "category": "Permissive", "owner": "Dmalloc", "spdx_license_key": "LicenseRef-scancode-dmalloc", "faq_url": "http://dmalloc.com/", "other_urls": ["http://dmalloc.com/"]} \ No newline at end of file +{ + "key": "dmalloc", + "short_name": "dmalloc License", + "name": "dmalloc License", + "category": "Permissive", + "owner": "Dmalloc", + "spdx_license_key": "LicenseRef-scancode-dmalloc", + "faq_url": "http://dmalloc.com/", + "other_urls": [ + "http://dmalloc.com/" + ] +} \ No newline at end of file diff --git a/docs/dmtf-2017.LICENSE b/docs/dmtf-2017.LICENSE new file mode 100644 index 0000000000..e59770d782 --- /dev/null +++ b/docs/dmtf-2017.LICENSE @@ -0,0 +1,77 @@ +--- +key: dmtf-2017 +short_name: DMTF License 2017 +name: DMTF License 2017 +category: Permissive +owner: DMTF +homepage_url: https://raw.githubusercontent.com/DMTF/libredfish/master/LICENSE.md +spdx_license_key: LicenseRef-scancode-dmtf-2017 +faq_url: http://www.dmtf.org/about/policies/disclosures +other_urls: + - http://dmtf.org/sites/default/files/patent-10-18-01.pdf +ignorable_copyrights: + - Copyright (c) 2017, Contributing +ignorable_holders: + - Contributing +ignorable_urls: + - http://dmtf.org/sites/default/files/patent-10-18-01.pdf + - http://www.dmtf.org/about/policies/disclosures +--- + +The Distributed Management Task Force (DMTF) grants rights under copyright in +this software on the terms of the BSD 3-Clause License as set forth below; no +other rights are granted by DMTF. This software might be subject to other rights +(such as patent rights) of other parties. + + +### Copyrights. + +Copyright (c) 2017, Contributing Member(s) of Distributed Management Task Force, +Inc.. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice, this +list of conditions and the following disclaimer in the documentation and/or +other materials provided with the distribution. +* Neither the name of the Distributed Management Task Force (DMTF) nor the names +of its contributors may be used to endorse or promote products derived from this +software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +### Patents. + +This software may be subject to third party patent rights, including provisional +patent rights ("patent rights"). DMTF makes no representations to users of the +standard as to the existence of such rights, and is not responsible to +recognize, disclose, or identify any or all such third party patent right, +owners or claimants, nor for any incomplete or inaccurate identification or +disclosure of such rights, owners or claimants. DMTF shall have no liability to +any party, in any manner or circumstance, under any legal theory whatsoever, for +failure to recognize, disclose, or identify any such third party patent rights, +or for such party's reliance on the software or incorporation thereof in its +product, protocols or testing procedures. DMTF shall have no liability to any +party using such software, whether such use is foreseeable or not, nor to any +patent owner or claimant, and shall have no liability or responsibility for +costs or losses incurred if software is withdrawn or modified after publication, +and shall be indemnified and held harmless by any party using the software from +any and all claims of infringement by a patent owner for such use. + +DMTF Members that contributed to this software source code might have made +patent licensing commitments in connection with their participation in the DMTF. +For details, see http://dmtf.org/sites/default/files/patent-10-18-01.pdf and +http://www.dmtf.org/about/policies/disclosures. \ No newline at end of file diff --git a/docs/dmtf-2017.html b/docs/dmtf-2017.html new file mode 100644 index 0000000000..6b111bca99 --- /dev/null +++ b/docs/dmtf-2017.html @@ -0,0 +1,249 @@ + + + + + + LicenseDB: dmtf-2017 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + dmtf-2017 + +
+ +
short_name
+
+ + DMTF License 2017 + +
+ +
name
+
+ + DMTF License 2017 + +
+ +
category
+
+ + Permissive + +
+ +
owner
+
+ + DMTF + +
+ +
homepage_url
+
+ + https://raw.githubusercontent.com/DMTF/libredfish/master/LICENSE.md + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-dmtf-2017 + +
+ +
faq_url
+
+ + http://www.dmtf.org/about/policies/disclosures + +
+ +
other_urls
+
+ + + +
+ +
ignorable_copyrights
+
+ +
    +
  • Copyright (c) 2017, Contributing
  • +
+ +
+ +
ignorable_holders
+
+ +
    +
  • Contributing
  • +
+ +
+ +
ignorable_urls
+
+ + + +
+ +
+
license_text
+
The Distributed Management Task Force (DMTF) grants rights under copyright in
+this software on the terms of the BSD 3-Clause License as set forth below; no
+other rights are granted by DMTF. This software might be subject to other rights
+(such as patent rights) of other parties.
+
+
+### Copyrights.
+
+Copyright (c) 2017, Contributing Member(s) of Distributed Management Task Force,
+Inc.. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this
+list of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the above copyright notice, this
+list of conditions and the following disclaimer in the documentation and/or
+other materials provided with the distribution.
+* Neither the name of the Distributed Management Task Force (DMTF) nor the names
+of its contributors may be used to endorse or promote products derived from this
+software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+### Patents.
+
+This software may be subject to third party patent rights, including provisional
+patent rights ("patent rights"). DMTF makes no representations to users of the
+standard as to the existence of such rights, and is not responsible to
+recognize, disclose, or identify any or all such third party patent right,
+owners or claimants, nor for any incomplete or inaccurate identification or
+disclosure of such rights, owners or claimants. DMTF shall have no liability to
+any party, in any manner or circumstance, under any legal theory whatsoever, for
+failure to recognize, disclose, or identify any such third party patent rights,
+or for such party's reliance on the software or incorporation thereof in its
+product, protocols or testing procedures. DMTF shall have no liability to any
+party using such software, whether such use is foreseeable or not, nor to any
+patent owner or claimant, and shall have no liability or responsibility for
+costs or losses incurred if software is withdrawn or modified after publication,
+and shall be indemnified and held harmless by any party using the software from
+any and all claims of infringement by a patent owner for such use.
+
+DMTF Members that contributed to this software source code might have made
+patent licensing commitments in connection with their participation in the DMTF.
+For details, see http://dmtf.org/sites/default/files/patent-10-18-01.pdf and
+http://www.dmtf.org/about/policies/disclosures.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/dmtf-2017.json b/docs/dmtf-2017.json new file mode 100644 index 0000000000..60ac55c29f --- /dev/null +++ b/docs/dmtf-2017.json @@ -0,0 +1,23 @@ +{ + "key": "dmtf-2017", + "short_name": "DMTF License 2017", + "name": "DMTF License 2017", + "category": "Permissive", + "owner": "DMTF", + "homepage_url": "https://raw.githubusercontent.com/DMTF/libredfish/master/LICENSE.md", + "spdx_license_key": "LicenseRef-scancode-dmtf-2017", + "faq_url": "http://www.dmtf.org/about/policies/disclosures", + "other_urls": [ + "http://dmtf.org/sites/default/files/patent-10-18-01.pdf" + ], + "ignorable_copyrights": [ + "Copyright (c) 2017, Contributing" + ], + "ignorable_holders": [ + "Contributing" + ], + "ignorable_urls": [ + "http://dmtf.org/sites/default/files/patent-10-18-01.pdf", + "http://www.dmtf.org/about/policies/disclosures" + ] +} \ No newline at end of file diff --git a/docs/dmtf-2017.yml b/docs/dmtf-2017.yml new file mode 100644 index 0000000000..7abd5e8512 --- /dev/null +++ b/docs/dmtf-2017.yml @@ -0,0 +1,17 @@ +key: dmtf-2017 +short_name: DMTF License 2017 +name: DMTF License 2017 +category: Permissive +owner: DMTF +homepage_url: https://raw.githubusercontent.com/DMTF/libredfish/master/LICENSE.md +spdx_license_key: LicenseRef-scancode-dmtf-2017 +faq_url: http://www.dmtf.org/about/policies/disclosures +other_urls: + - http://dmtf.org/sites/default/files/patent-10-18-01.pdf +ignorable_copyrights: + - Copyright (c) 2017, Contributing +ignorable_holders: + - Contributing +ignorable_urls: + - http://dmtf.org/sites/default/files/patent-10-18-01.pdf + - http://www.dmtf.org/about/policies/disclosures diff --git a/docs/do-no-harm-0.1.LICENSE b/docs/do-no-harm-0.1.LICENSE index 533d36eeeb..9d36d17632 100644 --- a/docs/do-no-harm-0.1.LICENSE +++ b/docs/do-no-harm-0.1.LICENSE @@ -1,3 +1,15 @@ +--- +key: do-no-harm-0.1 +short_name: Do No Harm +name: Do No Harm +category: Proprietary Free +owner: Raisely +homepage_url: https://github.com/raisely/NoHarm +spdx_license_key: LicenseRef-scancode-do-no-harm-0.1 +ignorable_urls: + - https://github.com/raisely/NoHarm +--- + Do No Harm License Version 0.1, August 2018 @@ -213,4 +225,4 @@ in compliance with the License. You may obtain a copy of the License. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the -License. +License. \ No newline at end of file diff --git a/docs/do-no-harm-0.1.html b/docs/do-no-harm-0.1.html index 4d051bc459..ea82df1dc8 100644 --- a/docs/do-no-harm-0.1.html +++ b/docs/do-no-harm-0.1.html @@ -339,8 +339,7 @@ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the -License. - +License.
@@ -352,7 +351,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/do-no-harm-0.1.json b/docs/do-no-harm-0.1.json index ad75710347..936686597d 100644 --- a/docs/do-no-harm-0.1.json +++ b/docs/do-no-harm-0.1.json @@ -1 +1,12 @@ -{"key": "do-no-harm-0.1", "short_name": "Do No Harm", "name": "Do No Harm", "category": "Proprietary Free", "owner": "Raisely", "homepage_url": "https://github.com/raisely/NoHarm", "spdx_license_key": "LicenseRef-scancode-do-no-harm-0.1", "ignorable_urls": ["https://github.com/raisely/NoHarm"]} \ No newline at end of file +{ + "key": "do-no-harm-0.1", + "short_name": "Do No Harm", + "name": "Do No Harm", + "category": "Proprietary Free", + "owner": "Raisely", + "homepage_url": "https://github.com/raisely/NoHarm", + "spdx_license_key": "LicenseRef-scancode-do-no-harm-0.1", + "ignorable_urls": [ + "https://github.com/raisely/NoHarm" + ] +} \ No newline at end of file diff --git a/docs/docbook.LICENSE b/docs/docbook.LICENSE index 7c7e6b95f3..f23df3af6d 100644 --- a/docs/docbook.LICENSE +++ b/docs/docbook.LICENSE @@ -1,3 +1,16 @@ +--- +key: docbook +short_name: Docbook License +name: Docbook License +category: Permissive +owner: DocBook Project +homepage_url: https://github.com/docbook/xslt10-stylesheets/blob/282955cda01b7ace132a734dca0a241cfd736d91/xsl/COPYING +notes: this is an MIT/X11 style license with an extra advertizing clause +spdx_license_key: LicenseRef-scancode-docbook +faq_url: https://web-beta.archive.org/web/20160118144348/http://wiki.docbook.org/DocBookLicense +minimum_coverage: 80 +--- + 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 @@ -31,4 +44,4 @@ NONINFRINGEMENT. IN NO EVENT SHALL NORMAN WALSH OR ANY OTHER CONTRIBUTOR 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. +OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/docs/docbook.html b/docs/docbook.html index f7a0313ea1..d7fe033a3a 100644 --- a/docs/docbook.html +++ b/docs/docbook.html @@ -169,8 +169,7 @@ CONTRIBUTOR 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. - +OTHER DEALINGS IN THE SOFTWARE.
@@ -182,7 +181,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/docbook.json b/docs/docbook.json index 7ce1c20d08..23f775d9a5 100644 --- a/docs/docbook.json +++ b/docs/docbook.json @@ -1 +1,12 @@ -{"key": "docbook", "short_name": "Docbook License", "name": "Docbook License", "category": "Permissive", "owner": "DocBook Project", "homepage_url": "https://github.com/docbook/xslt10-stylesheets/blob/282955cda01b7ace132a734dca0a241cfd736d91/xsl/COPYING", "notes": "this is an MIT/X11 style license with an extra advertizing clause", "spdx_license_key": "LicenseRef-scancode-docbook", "faq_url": "https://web-beta.archive.org/web/20160118144348/http://wiki.docbook.org/DocBookLicense", "minimum_coverage": 80} \ No newline at end of file +{ + "key": "docbook", + "short_name": "Docbook License", + "name": "Docbook License", + "category": "Permissive", + "owner": "DocBook Project", + "homepage_url": "https://github.com/docbook/xslt10-stylesheets/blob/282955cda01b7ace132a734dca0a241cfd736d91/xsl/COPYING", + "notes": "this is an MIT/X11 style license with an extra advertizing clause", + "spdx_license_key": "LicenseRef-scancode-docbook", + "faq_url": "https://web-beta.archive.org/web/20160118144348/http://wiki.docbook.org/DocBookLicense", + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/dom4j.LICENSE b/docs/dom4j.LICENSE index f6cbf784e4..3280be2eed 100644 --- a/docs/dom4j.LICENSE +++ b/docs/dom4j.LICENSE @@ -1,3 +1,35 @@ +--- +key: dom4j +short_name: Dom4j License +name: Dom4j License +category: Permissive +owner: dom4j +homepage_url: http://www.dom4j.org/ +notes: | + Per Fedora, this is an Apache 1.1 derived license. Unfortunately, clause 4 + is too broad, making it Free but GPL-incompatible. It does also replace the + deprecated keys classworlds and apache-due-credit that were the same licenses. + Plexus Classworlds was started in 2002 and dom4j in 2000/2001 hence it has precedence. + Other projects such as Exolab/Intalio/Castor and JCharts have used the same license. + Castor is actually the first to use this but dom4j is still commonly used and castor less so. +spdx_license_key: Plexus +text_urls: + - http://www.dom4j.org/dom4j-1.6.1/license.html + - http://www.dom4j.org/license.html + - https://web.archive.org/web/20011020192734/http://www.dom4j.org/license.html +other_urls: + - http://classworlds.codehaus.org/license.html + - http://www.castor.org/license.txt + - https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License + - https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#jCharts_Variant + - http://openorb.sourceforge.net/license.txt + - https://confluence.sakaiproject.org/plugins/viewsource/viewpagesrc.action?pageId=28442642 +ignorable_urls: + - http://www.dom4j.org/ +ignorable_emails: + - dom4j-info@metastuff.com +--- + Redistribution and use of this software and associated documentation ("Software"), with or without modification, are permitted provided that the following conditions are met: @@ -30,5 +62,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/dom4j.html b/docs/dom4j.html index 6177915286..d83201f58f 100644 --- a/docs/dom4j.html +++ b/docs/dom4j.html @@ -196,9 +196,7 @@ 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 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -210,7 +208,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dom4j.json b/docs/dom4j.json index 50ba983bd6..9eec1b04d5 100644 --- a/docs/dom4j.json +++ b/docs/dom4j.json @@ -1 +1,29 @@ -{"key": "dom4j", "short_name": "Dom4j License", "name": "Dom4j License", "category": "Permissive", "owner": "dom4j", "homepage_url": "http://www.dom4j.org/", "notes": "Per Fedora, this is an Apache 1.1 derived license. Unfortunately, clause 4\nis too broad, making it Free but GPL-incompatible. It does also replace the\ndeprecated keys classworlds and apache-due-credit that were the same licenses.\nPlexus Classworlds was started in 2002 and dom4j in 2000/2001 hence it has precedence.\nOther projects such as Exolab/Intalio/Castor and JCharts have used the same license.\nCastor is actually the first to use this but dom4j is still commonly used and castor less so.\n", "spdx_license_key": "Plexus", "text_urls": ["http://www.dom4j.org/dom4j-1.6.1/license.html", "http://www.dom4j.org/license.html", "https://web.archive.org/web/20011020192734/http://www.dom4j.org/license.html"], "other_urls": ["http://classworlds.codehaus.org/license.html", "http://www.castor.org/license.txt", "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License", "https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#jCharts_Variant", "http://openorb.sourceforge.net/license.txt", "https://confluence.sakaiproject.org/plugins/viewsource/viewpagesrc.action?pageId=28442642"], "ignorable_urls": ["http://www.dom4j.org/"], "ignorable_emails": ["dom4j-info@metastuff.com"]} \ No newline at end of file +{ + "key": "dom4j", + "short_name": "Dom4j License", + "name": "Dom4j License", + "category": "Permissive", + "owner": "dom4j", + "homepage_url": "http://www.dom4j.org/", + "notes": "Per Fedora, this is an Apache 1.1 derived license. Unfortunately, clause 4\nis too broad, making it Free but GPL-incompatible. It does also replace the\ndeprecated keys classworlds and apache-due-credit that were the same licenses.\nPlexus Classworlds was started in 2002 and dom4j in 2000/2001 hence it has precedence.\nOther projects such as Exolab/Intalio/Castor and JCharts have used the same license.\nCastor is actually the first to use this but dom4j is still commonly used and castor less so.\n", + "spdx_license_key": "Plexus", + "text_urls": [ + "http://www.dom4j.org/dom4j-1.6.1/license.html", + "http://www.dom4j.org/license.html", + "https://web.archive.org/web/20011020192734/http://www.dom4j.org/license.html" + ], + "other_urls": [ + "http://classworlds.codehaus.org/license.html", + "http://www.castor.org/license.txt", + "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License", + "https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#jCharts_Variant", + "http://openorb.sourceforge.net/license.txt", + "https://confluence.sakaiproject.org/plugins/viewsource/viewpagesrc.action?pageId=28442642" + ], + "ignorable_urls": [ + "http://www.dom4j.org/" + ], + "ignorable_emails": [ + "dom4j-info@metastuff.com" + ] +} \ No newline at end of file diff --git a/docs/dos32a-extender.LICENSE b/docs/dos32a-extender.LICENSE index 3a29168c12..d9f0b60587 100644 --- a/docs/dos32a-extender.LICENSE +++ b/docs/dos32a-extender.LICENSE @@ -1,3 +1,17 @@ +--- +key: dos32a-extender +short_name: DOS32A Extender License +name: DOS32 Advanced DOS Extender Software License +category: Permissive +owner: NarechK +homepage_url: https://dos32a.narechk.net/content/license.html +spdx_license_key: LicenseRef-scancode-dos32a-extender +text_urls: + - https://github.com/open-watcom/open-watcom-v2/blob/master/bld/redist/dos32a/license.d32 +other_urls: + - https://sourceforge.net/projects/dos32a/ +--- + DOS/32 Advanced DOS Extender Software License ============================================= diff --git a/docs/dos32a-extender.html b/docs/dos32a-extender.html index c503007604..2ea30ca584 100644 --- a/docs/dos32a-extender.html +++ b/docs/dos32a-extender.html @@ -180,7 +180,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dos32a-extender.json b/docs/dos32a-extender.json index 27414be6d4..42b46ef8e1 100644 --- a/docs/dos32a-extender.json +++ b/docs/dos32a-extender.json @@ -1 +1,15 @@ -{"key": "dos32a-extender", "short_name": "DOS32A Extender License", "name": "DOS32 Advanced DOS Extender Software License", "category": "Permissive", "owner": "NarechK", "homepage_url": "https://dos32a.narechk.net/content/license.html", "spdx_license_key": "LicenseRef-scancode-dos32a-extender", "text_urls": ["https://github.com/open-watcom/open-watcom-v2/blob/master/bld/redist/dos32a/license.d32"], "other_urls": ["https://sourceforge.net/projects/dos32a/"]} \ No newline at end of file +{ + "key": "dos32a-extender", + "short_name": "DOS32A Extender License", + "name": "DOS32 Advanced DOS Extender Software License", + "category": "Permissive", + "owner": "NarechK", + "homepage_url": "https://dos32a.narechk.net/content/license.html", + "spdx_license_key": "LicenseRef-scancode-dos32a-extender", + "text_urls": [ + "https://github.com/open-watcom/open-watcom-v2/blob/master/bld/redist/dos32a/license.d32" + ], + "other_urls": [ + "https://sourceforge.net/projects/dos32a/" + ] +} \ No newline at end of file diff --git a/docs/dotseqn.LICENSE b/docs/dotseqn.LICENSE index f116c05cd0..5a8795d5c9 100644 --- a/docs/dotseqn.LICENSE +++ b/docs/dotseqn.LICENSE @@ -1,3 +1,13 @@ +--- +key: dotseqn +short_name: Dotseqn License +name: Dotseqn License +category: Permissive +owner: Donald Arsenau +homepage_url: https://fedoraproject.org/wiki/Licensing/Dotseqn +spdx_license_key: Dotseqn +--- + This file may be freely transmitted and reproduced, but it may not be changed unless the name is changed also (except that you may freely change the paper-size option for \documentclass). This notice must be left intact. \ No newline at end of file diff --git a/docs/dotseqn.html b/docs/dotseqn.html index b790fc8203..4f1d83763a 100644 --- a/docs/dotseqn.html +++ b/docs/dotseqn.html @@ -129,7 +129,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dotseqn.json b/docs/dotseqn.json index 3af5b79d90..433ec18a38 100644 --- a/docs/dotseqn.json +++ b/docs/dotseqn.json @@ -1 +1,9 @@ -{"key": "dotseqn", "short_name": "Dotseqn License", "name": "Dotseqn License", "category": "Permissive", "owner": "Donald Arsenau", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Dotseqn", "spdx_license_key": "Dotseqn"} \ No newline at end of file +{ + "key": "dotseqn", + "short_name": "Dotseqn License", + "name": "Dotseqn License", + "category": "Permissive", + "owner": "Donald Arsenau", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Dotseqn", + "spdx_license_key": "Dotseqn" +} \ No newline at end of file diff --git a/docs/doug-lea.LICENSE b/docs/doug-lea.LICENSE index 2a89232da5..abcc61d0f1 100644 --- a/docs/doug-lea.LICENSE +++ b/docs/doug-lea.LICENSE @@ -1,3 +1,13 @@ +--- +key: doug-lea +is_deprecated: yes +short_name: Doug Lea License +name: Doug Lea License +category: Public Domain +owner: Unspecified +notes: composite of several public domain dedications +--- + Doug Lea License Doug Lea - 8094a diff --git a/docs/doug-lea.html b/docs/doug-lea.html index 6cc5983e20..6c1676ec99 100644 --- a/docs/doug-lea.html +++ b/docs/doug-lea.html @@ -163,7 +163,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/doug-lea.json b/docs/doug-lea.json index 70e88b07ed..5c2353f693 100644 --- a/docs/doug-lea.json +++ b/docs/doug-lea.json @@ -1 +1,9 @@ -{"key": "doug-lea", "is_deprecated": true, "short_name": "Doug Lea License", "name": "Doug Lea License", "category": "Public Domain", "owner": "Unspecified", "notes": "composite of several public domain dedications"} \ No newline at end of file +{ + "key": "doug-lea", + "is_deprecated": true, + "short_name": "Doug Lea License", + "name": "Doug Lea License", + "category": "Public Domain", + "owner": "Unspecified", + "notes": "composite of several public domain dedications" +} \ No newline at end of file diff --git a/docs/douglas-young.LICENSE b/docs/douglas-young.LICENSE index 3b91684e53..169b7e4c9e 100644 --- a/docs/douglas-young.LICENSE +++ b/docs/douglas-young.LICENSE @@ -1,3 +1,13 @@ +--- +key: douglas-young +short_name: Douglas Young License +name: Douglas Young License +category: Permissive +owner: Pearson (Prentice Hall) +spdx_license_key: LicenseRef-scancode-douglas-young +minimum_coverage: 60 +--- + Permission to use, copy, modify, and distribute this software for any purpose except publication and without fee is hereby granted, provided that the above copyright notice appear in all copies of the software. \ No newline at end of file diff --git a/docs/douglas-young.html b/docs/douglas-young.html index 2fc46c25b2..374ec448c1 100644 --- a/docs/douglas-young.html +++ b/docs/douglas-young.html @@ -129,7 +129,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/douglas-young.json b/docs/douglas-young.json index 2d9020ccf3..a95040eaff 100644 --- a/docs/douglas-young.json +++ b/docs/douglas-young.json @@ -1 +1,9 @@ -{"key": "douglas-young", "short_name": "Douglas Young License", "name": "Douglas Young License", "category": "Permissive", "owner": "Pearson (Prentice Hall)", "spdx_license_key": "LicenseRef-scancode-douglas-young", "minimum_coverage": 60} \ No newline at end of file +{ + "key": "douglas-young", + "short_name": "Douglas Young License", + "name": "Douglas Young License", + "category": "Permissive", + "owner": "Pearson (Prentice Hall)", + "spdx_license_key": "LicenseRef-scancode-douglas-young", + "minimum_coverage": 60 +} \ No newline at end of file diff --git a/docs/dpl-1.1.LICENSE b/docs/dpl-1.1.LICENSE index bcefaafff3..95ea374d4b 100644 --- a/docs/dpl-1.1.LICENSE +++ b/docs/dpl-1.1.LICENSE @@ -1,3 +1,15 @@ +--- +key: dpl-1.1 +short_name: DPL-1.1 +name: DSTC Public License (DPL) v1.1 +category: Copyleft Limited +owner: DIFI +homepage_url: http://begrep.difi.no/SikkerDigitalPost/xsd/xs3p/LICENSE.html +spdx_license_key: LicenseRef-scancode-dpl-1.1 +other_urls: + - https://en.wikipedia.org/wiki/Distributed_Systems_Technology_Centre +--- + DSTC Public License (DPL) Version 1.1 diff --git a/docs/dpl-1.1.html b/docs/dpl-1.1.html index 6965023626..f9401bdfba 100644 --- a/docs/dpl-1.1.html +++ b/docs/dpl-1.1.html @@ -317,7 +317,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dpl-1.1.json b/docs/dpl-1.1.json index ed2d2e1fa5..66ebfb6db5 100644 --- a/docs/dpl-1.1.json +++ b/docs/dpl-1.1.json @@ -1 +1,12 @@ -{"key": "dpl-1.1", "short_name": "DPL-1.1", "name": "DSTC Public License (DPL) v1.1", "category": "Copyleft Limited", "owner": "DIFI", "homepage_url": "http://begrep.difi.no/SikkerDigitalPost/xsd/xs3p/LICENSE.html", "spdx_license_key": "LicenseRef-scancode-dpl-1.1", "other_urls": ["https://en.wikipedia.org/wiki/Distributed_Systems_Technology_Centre"]} \ No newline at end of file +{ + "key": "dpl-1.1", + "short_name": "DPL-1.1", + "name": "DSTC Public License (DPL) v1.1", + "category": "Copyleft Limited", + "owner": "DIFI", + "homepage_url": "http://begrep.difi.no/SikkerDigitalPost/xsd/xs3p/LICENSE.html", + "spdx_license_key": "LicenseRef-scancode-dpl-1.1", + "other_urls": [ + "https://en.wikipedia.org/wiki/Distributed_Systems_Technology_Centre" + ] +} \ No newline at end of file diff --git a/docs/dr-john-maddock.LICENSE b/docs/dr-john-maddock.LICENSE index fef825575f..7c50968cb6 100644 --- a/docs/dr-john-maddock.LICENSE +++ b/docs/dr-john-maddock.LICENSE @@ -1,7 +1,17 @@ +--- +key: dr-john-maddock +is_deprecated: yes +short_name: Dr John Maddock License +name: Dr John Maddock License +category: Permissive +owner: Dr John Maddock +notes: replaced by mit-old-style +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. Dr John Maddock makes no representations about the suitability of this software for -any purpose. It is provided "as is" without express or implied warranty. +any purpose. It is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/docs/dr-john-maddock.html b/docs/dr-john-maddock.html index 4c97a0523b..31218c1dc9 100644 --- a/docs/dr-john-maddock.html +++ b/docs/dr-john-maddock.html @@ -121,8 +121,7 @@ that both that copyright notice and this permission notice appear in supporting documentation. Dr John Maddock makes no representations about the suitability of this software for -any purpose. It is provided "as is" without express or implied warranty. - +any purpose. It is provided "as is" without express or implied warranty.
@@ -134,7 +133,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dr-john-maddock.json b/docs/dr-john-maddock.json index 847c57211d..a8cc17da17 100644 --- a/docs/dr-john-maddock.json +++ b/docs/dr-john-maddock.json @@ -1 +1,9 @@ -{"key": "dr-john-maddock", "is_deprecated": true, "short_name": "Dr John Maddock License", "name": "Dr John Maddock License", "category": "Permissive", "owner": "Dr John Maddock", "notes": "replaced by mit-old-style"} \ No newline at end of file +{ + "key": "dr-john-maddock", + "is_deprecated": true, + "short_name": "Dr John Maddock License", + "name": "Dr John Maddock License", + "category": "Permissive", + "owner": "Dr John Maddock", + "notes": "replaced by mit-old-style" +} \ No newline at end of file diff --git a/docs/drl-1.0.LICENSE b/docs/drl-1.0.LICENSE index 938e61e247..2c1c51c422 100644 --- a/docs/drl-1.0.LICENSE +++ b/docs/drl-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: drl-1.0 +short_name: Detection Rule License 1.0 +name: Detection Rule License 1.0 +category: Permissive +owner: SigmaHQ +homepage_url: https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md +spdx_license_key: DRL-1.0 +other_urls: + - https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md +--- + Detection Rule License (DRL) 1.0 Permission is hereby granted, free of charge, to any person obtaining a copy of @@ -26,4 +38,4 @@ 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 RULES OR THE USE OR OTHER DEALINGS IN THE RULES. +CONNECTION WITH THE RULES OR THE USE OR OTHER DEALINGS IN THE RULES. \ No newline at end of file diff --git a/docs/drl-1.0.html b/docs/drl-1.0.html index 1453bc039b..c708dc8775 100644 --- a/docs/drl-1.0.html +++ b/docs/drl-1.0.html @@ -152,8 +152,7 @@ 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 RULES OR THE USE OR OTHER DEALINGS IN THE RULES. - +CONNECTION WITH THE RULES OR THE USE OR OTHER DEALINGS IN THE RULES.
@@ -165,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/drl-1.0.json b/docs/drl-1.0.json index f51b1a097e..8041e68677 100644 --- a/docs/drl-1.0.json +++ b/docs/drl-1.0.json @@ -1 +1,12 @@ -{"key": "drl-1.0", "short_name": "Detection Rule License 1.0", "name": "Detection Rule License 1.0", "category": "Permissive", "owner": "SigmaHQ", "homepage_url": "https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md", "spdx_license_key": "DRL-1.0", "other_urls": ["https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md"]} \ No newline at end of file +{ + "key": "drl-1.0", + "short_name": "Detection Rule License 1.0", + "name": "Detection Rule License 1.0", + "category": "Permissive", + "owner": "SigmaHQ", + "homepage_url": "https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md", + "spdx_license_key": "DRL-1.0", + "other_urls": [ + "https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md" + ] +} \ No newline at end of file diff --git a/docs/dropbear-2016.LICENSE b/docs/dropbear-2016.LICENSE index 40c7962821..72b46b621c 100644 --- a/docs/dropbear-2016.LICENSE +++ b/docs/dropbear-2016.LICENSE @@ -1,3 +1,45 @@ +--- +key: dropbear-2016 +short_name: Dropbear-2016 +name: Dropbear-2016 +category: Permissive +owner: Dropbear +homepage_url: https://matt.ucc.asn.au/dropbear/dropbear.html +notes: composite +spdx_license_key: LicenseRef-scancode-dropbear-2016 +minimum_coverage: 50 +ignorable_copyrights: + - (c) 2004 Mihnea Stoenescu + - (c) Todd C. Miller + - Copyright (c) 1995 Tatu Ylonen , Espoo, Finland + - Copyright (c) 2002-2015 Matt Johnston + - Copyright 2008, Google Inc. + - Portions copyright (c) 2004 Mihnea Stoenescu + - Portions copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, + Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A. + - copyright 1997-2003 Simon Tatham +ignorable_holders: + - Google Inc. + - Matt Johnston + - Mihnea Stoenescu + - Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez + Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A. + - Simon Tatham + - Tatu Ylonen , Espoo, Finland + - Todd C. Miller +ignorable_authors: + - Daniel J. Bernstein + - Matt Johnston + - Tom St Denis +ignorable_urls: + - http://code.google.com/p/curve25519-donna/ + - http://cr.yp.to/ecdh.html +ignorable_emails: + - agl@imperialviolet.org + - djb@cr.yp.to + - ylo@cs.hut.fi +--- + Dropbear contains a number of components from different sources, hence there are a few licenses and authors involved. All licenses are fairly non-restrictive. diff --git a/docs/dropbear-2016.html b/docs/dropbear-2016.html index 7f837d197b..cc40a67319 100644 --- a/docs/dropbear-2016.html +++ b/docs/dropbear-2016.html @@ -303,7 +303,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dropbear-2016.json b/docs/dropbear-2016.json index 98064dda83..6f5ca48d49 100644 --- a/docs/dropbear-2016.json +++ b/docs/dropbear-2016.json @@ -1 +1,44 @@ -{"key": "dropbear-2016", "short_name": "Dropbear-2016", "name": "Dropbear-2016", "category": "Permissive", "owner": "Dropbear", "homepage_url": "https://matt.ucc.asn.au/dropbear/dropbear.html", "notes": "composite", "spdx_license_key": "LicenseRef-scancode-dropbear-2016", "minimum_coverage": 50, "ignorable_copyrights": ["(c) 2004 Mihnea Stoenescu", "(c) Todd C. Miller", "Copyright (c) 1995 Tatu Ylonen , Espoo, Finland", "Copyright (c) 2002-2015 Matt Johnston", "Copyright 2008, Google Inc.", "Portions copyright (c) 2004 Mihnea Stoenescu", "Portions copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A.", "copyright 1997-2003 Simon Tatham"], "ignorable_holders": ["Google Inc.", "Matt Johnston", "Mihnea Stoenescu", "Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A.", "Simon Tatham", "Tatu Ylonen , Espoo, Finland", "Todd C. Miller"], "ignorable_authors": ["Daniel J. Bernstein ", "Matt Johnston", "Tom St Denis"], "ignorable_urls": ["http://code.google.com/p/curve25519-donna/", "http://cr.yp.to/ecdh.html"], "ignorable_emails": ["agl@imperialviolet.org", "djb@cr.yp.to", "ylo@cs.hut.fi"]} \ No newline at end of file +{ + "key": "dropbear-2016", + "short_name": "Dropbear-2016", + "name": "Dropbear-2016", + "category": "Permissive", + "owner": "Dropbear", + "homepage_url": "https://matt.ucc.asn.au/dropbear/dropbear.html", + "notes": "composite", + "spdx_license_key": "LicenseRef-scancode-dropbear-2016", + "minimum_coverage": 50, + "ignorable_copyrights": [ + "(c) 2004 Mihnea Stoenescu", + "(c) Todd C. Miller", + "Copyright (c) 1995 Tatu Ylonen , Espoo, Finland", + "Copyright (c) 2002-2015 Matt Johnston", + "Copyright 2008, Google Inc.", + "Portions copyright (c) 2004 Mihnea Stoenescu", + "Portions copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A.", + "copyright 1997-2003 Simon Tatham" + ], + "ignorable_holders": [ + "Google Inc.", + "Matt Johnston", + "Mihnea Stoenescu", + "Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A.", + "Simon Tatham", + "Tatu Ylonen , Espoo, Finland", + "Todd C. Miller" + ], + "ignorable_authors": [ + "Daniel J. Bernstein ", + "Matt Johnston", + "Tom St Denis" + ], + "ignorable_urls": [ + "http://code.google.com/p/curve25519-donna/", + "http://cr.yp.to/ecdh.html" + ], + "ignorable_emails": [ + "agl@imperialviolet.org", + "djb@cr.yp.to", + "ylo@cs.hut.fi" + ] +} \ No newline at end of file diff --git a/docs/dropbear.LICENSE b/docs/dropbear.LICENSE index 8e8f17a102..56840cb183 100644 --- a/docs/dropbear.LICENSE +++ b/docs/dropbear.LICENSE @@ -1,3 +1,49 @@ +--- +key: dropbear +short_name: Dropbear License +name: Dropbear License +category: Permissive +owner: Dropbear +homepage_url: https://matt.ucc.asn.au/dropbear/dropbear.html +notes: composite +spdx_license_key: LicenseRef-scancode-dropbear +minimum_coverage: 80 +ignorable_copyrights: + - (c) 2004 Mihnea Stoenescu + - (c) Todd C. Miller + - Copyright (c) 1995 Tatu Ylonen , Timo Rinne ,Espoo, Finland + - Copyright (c) 1995,1999 Theo de Raadt + - Copyright (c) 1998 Todd C. Miller + - Copyright (c) 2000 Andre Lucas + - Copyright (c) 2002-2008 Matt Johnston + - Portions Copyright (c) 1996 Theo de Raadt + - Portions copyright (c) 1996 Jason Downs + - Portions copyright (c) 1998 Todd C. Miller + - Portions copyright (c) 2004 Mihnea Stoenescu + - Portions copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, + Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A. + - copyright 1997-2003 Simon Tatham +ignorable_holders: + - Andre Lucas + - Jason Downs + - Matt Johnston + - Mihnea Stoenescu + - Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez + Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A. + - Simon Tatham + - Tatu Ylonen , Timo Rinne ,Espoo, Finland + - Theo de Raadt + - Todd C. Miller +ignorable_authors: + - Andre Lucas + - Matt Johnston + - Theo de Raadt + - Tom St Denis +ignorable_emails: + - tri@iki.fi + - ylo@cs.hut.fi +--- + The majority of code is written by Matt Johnston, under the license below. Portions of the client-mode work are (c) 2004 Mihnea Stoenescu, under the diff --git a/docs/dropbear.html b/docs/dropbear.html index 8976585c90..9e325301e5 100644 --- a/docs/dropbear.html +++ b/docs/dropbear.html @@ -294,7 +294,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dropbear.json b/docs/dropbear.json index fdc583e00d..98a8e6636f 100644 --- a/docs/dropbear.json +++ b/docs/dropbear.json @@ -1 +1,47 @@ -{"key": "dropbear", "short_name": "Dropbear License", "name": "Dropbear License", "category": "Permissive", "owner": "Dropbear", "homepage_url": "https://matt.ucc.asn.au/dropbear/dropbear.html", "notes": "composite", "spdx_license_key": "LicenseRef-scancode-dropbear", "minimum_coverage": 80, "ignorable_copyrights": ["(c) 2004 Mihnea Stoenescu", "(c) Todd C. Miller", "Copyright (c) 1995 Tatu Ylonen , Timo Rinne ,Espoo, Finland", "Copyright (c) 1995,1999 Theo de Raadt", "Copyright (c) 1998 Todd C. Miller", "Copyright (c) 2000 Andre Lucas", "Copyright (c) 2002-2008 Matt Johnston", "Portions Copyright (c) 1996 Theo de Raadt", "Portions copyright (c) 1996 Jason Downs", "Portions copyright (c) 1998 Todd C. Miller", "Portions copyright (c) 2004 Mihnea Stoenescu", "Portions copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A.", "copyright 1997-2003 Simon Tatham"], "ignorable_holders": ["Andre Lucas", "Jason Downs", "Matt Johnston", "Mihnea Stoenescu", "Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A.", "Simon Tatham", "Tatu Ylonen , Timo Rinne ,Espoo, Finland", "Theo de Raadt", "Todd C. Miller"], "ignorable_authors": ["Andre Lucas", "Matt Johnston", "Theo de Raadt", "Tom St Denis"], "ignorable_emails": ["tri@iki.fi", "ylo@cs.hut.fi"]} \ No newline at end of file +{ + "key": "dropbear", + "short_name": "Dropbear License", + "name": "Dropbear License", + "category": "Permissive", + "owner": "Dropbear", + "homepage_url": "https://matt.ucc.asn.au/dropbear/dropbear.html", + "notes": "composite", + "spdx_license_key": "LicenseRef-scancode-dropbear", + "minimum_coverage": 80, + "ignorable_copyrights": [ + "(c) 2004 Mihnea Stoenescu", + "(c) Todd C. Miller", + "Copyright (c) 1995 Tatu Ylonen , Timo Rinne ,Espoo, Finland", + "Copyright (c) 1995,1999 Theo de Raadt", + "Copyright (c) 1998 Todd C. Miller", + "Copyright (c) 2000 Andre Lucas", + "Copyright (c) 2002-2008 Matt Johnston", + "Portions Copyright (c) 1996 Theo de Raadt", + "Portions copyright (c) 1996 Jason Downs", + "Portions copyright (c) 1998 Todd C. Miller", + "Portions copyright (c) 2004 Mihnea Stoenescu", + "Portions copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A.", + "copyright 1997-2003 Simon Tatham" + ], + "ignorable_holders": [ + "Andre Lucas", + "Jason Downs", + "Matt Johnston", + "Mihnea Stoenescu", + "Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A.", + "Simon Tatham", + "Tatu Ylonen , Timo Rinne ,Espoo, Finland", + "Theo de Raadt", + "Todd C. Miller" + ], + "ignorable_authors": [ + "Andre Lucas", + "Matt Johnston", + "Theo de Raadt", + "Tom St Denis" + ], + "ignorable_emails": [ + "tri@iki.fi", + "ylo@cs.hut.fi" + ] +} \ No newline at end of file diff --git a/docs/dsdp.LICENSE b/docs/dsdp.LICENSE index 6b4f39c888..197156fd16 100644 --- a/docs/dsdp.LICENSE +++ b/docs/dsdp.LICENSE @@ -1,3 +1,22 @@ +--- +key: dsdp +short_name: DSDP License +name: DSDP License +category: Permissive +owner: University of Chicago +homepage_url: https://fedoraproject.org/wiki/Licensing/DSDP +spdx_license_key: DSDP +text_urls: + - http://www.mcs.anl.gov/hs/software/DSDP/Copyright.txt +ignorable_copyrights: + - (c) COPYRIGHT 2004 UNIVERSITY OF CHICAGO +ignorable_holders: + - UNIVERSITY OF CHICAGO +ignorable_emails: + - benson@mcs.anl.gov + - yinyu-ye@stanford.edu +--- + COPYRIGHT NOTIFICATION (C) COPYRIGHT 2004 UNIVERSITY OF CHICAGO diff --git a/docs/dsdp.html b/docs/dsdp.html index 9865ff96a2..2c3fed078d 100644 --- a/docs/dsdp.html +++ b/docs/dsdp.html @@ -205,7 +205,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dsdp.json b/docs/dsdp.json index 83cba3e54f..04f939e4a5 100644 --- a/docs/dsdp.json +++ b/docs/dsdp.json @@ -1 +1,22 @@ -{"key": "dsdp", "short_name": "DSDP License", "name": "DSDP License", "category": "Permissive", "owner": "University of Chicago", "homepage_url": "https://fedoraproject.org/wiki/Licensing/DSDP", "spdx_license_key": "DSDP", "text_urls": ["http://www.mcs.anl.gov/hs/software/DSDP/Copyright.txt"], "ignorable_copyrights": ["(c) COPYRIGHT 2004 UNIVERSITY OF CHICAGO"], "ignorable_holders": ["UNIVERSITY OF CHICAGO"], "ignorable_emails": ["benson@mcs.anl.gov", "yinyu-ye@stanford.edu"]} \ No newline at end of file +{ + "key": "dsdp", + "short_name": "DSDP License", + "name": "DSDP License", + "category": "Permissive", + "owner": "University of Chicago", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/DSDP", + "spdx_license_key": "DSDP", + "text_urls": [ + "http://www.mcs.anl.gov/hs/software/DSDP/Copyright.txt" + ], + "ignorable_copyrights": [ + "(c) COPYRIGHT 2004 UNIVERSITY OF CHICAGO" + ], + "ignorable_holders": [ + "UNIVERSITY OF CHICAGO" + ], + "ignorable_emails": [ + "benson@mcs.anl.gov", + "yinyu-ye@stanford.edu" + ] +} \ No newline at end of file diff --git a/docs/dtree.LICENSE b/docs/dtree.LICENSE index ad3351198c..2499cbd273 100644 --- a/docs/dtree.LICENSE +++ b/docs/dtree.LICENSE @@ -1,3 +1,19 @@ +--- +key: dtree +short_name: Dtree License +name: Dtree License +category: Permissive +owner: Unspecified +homepage_url: http://destroydrop.com/javascripts/tree/ +spdx_license_key: LicenseRef-scancode-dtree +other_urls: + - http://destroydrop.com/javascripts/tree/ +ignorable_copyrights: + - Copyright (c) 2002-2003 Geir Landr +ignorable_holders: + - Geir Landr +--- + Copyright (c) 2002-2003 Geir Landr This script can be used freely as long as all copyright messages are intact. \ No newline at end of file diff --git a/docs/dtree.html b/docs/dtree.html index f87386d378..1f72707131 100644 --- a/docs/dtree.html +++ b/docs/dtree.html @@ -156,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dtree.json b/docs/dtree.json index b51699aa8e..d46514aa41 100644 --- a/docs/dtree.json +++ b/docs/dtree.json @@ -1 +1,18 @@ -{"key": "dtree", "short_name": "Dtree License", "name": "Dtree License", "category": "Permissive", "owner": "Unspecified", "homepage_url": "http://destroydrop.com/javascripts/tree/", "spdx_license_key": "LicenseRef-scancode-dtree", "other_urls": ["http://destroydrop.com/javascripts/tree/"], "ignorable_copyrights": ["Copyright (c) 2002-2003 Geir Landr"], "ignorable_holders": ["Geir Landr"]} \ No newline at end of file +{ + "key": "dtree", + "short_name": "Dtree License", + "name": "Dtree License", + "category": "Permissive", + "owner": "Unspecified", + "homepage_url": "http://destroydrop.com/javascripts/tree/", + "spdx_license_key": "LicenseRef-scancode-dtree", + "other_urls": [ + "http://destroydrop.com/javascripts/tree/" + ], + "ignorable_copyrights": [ + "Copyright (c) 2002-2003 Geir Landr" + ], + "ignorable_holders": [ + "Geir Landr" + ] +} \ No newline at end of file diff --git a/docs/dual-bsd-gpl.LICENSE b/docs/dual-bsd-gpl.LICENSE index be023482b3..6dfcfb478a 100644 --- a/docs/dual-bsd-gpl.LICENSE +++ b/docs/dual-bsd-gpl.LICENSE @@ -1,3 +1,13 @@ +--- +key: dual-bsd-gpl +is_deprecated: yes +short_name: Dual BSD-GPL +name: Dual BSD-GPL +category: Permissive +owner: Unspecified +notes: this has been replaced by a proper license expression +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/dual-bsd-gpl.html b/docs/dual-bsd-gpl.html index e470619a5c..8a1bd526b7 100644 --- a/docs/dual-bsd-gpl.html +++ b/docs/dual-bsd-gpl.html @@ -151,7 +151,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dual-bsd-gpl.json b/docs/dual-bsd-gpl.json index 7696fceb3d..467c08efeb 100644 --- a/docs/dual-bsd-gpl.json +++ b/docs/dual-bsd-gpl.json @@ -1 +1,9 @@ -{"key": "dual-bsd-gpl", "is_deprecated": true, "short_name": "Dual BSD-GPL", "name": "Dual BSD-GPL", "category": "Permissive", "owner": "Unspecified", "notes": "this has been replaced by a proper license expression"} \ No newline at end of file +{ + "key": "dual-bsd-gpl", + "is_deprecated": true, + "short_name": "Dual BSD-GPL", + "name": "Dual BSD-GPL", + "category": "Permissive", + "owner": "Unspecified", + "notes": "this has been replaced by a proper license expression" +} \ No newline at end of file diff --git a/docs/dual-commercial-gpl.LICENSE b/docs/dual-commercial-gpl.LICENSE index 116131d6b5..51db0eb310 100644 --- a/docs/dual-commercial-gpl.LICENSE +++ b/docs/dual-commercial-gpl.LICENSE @@ -1,3 +1,14 @@ +--- +key: dual-commercial-gpl +short_name: Dual Commercial-GPL +name: Dual Commercial-GPL +category: Copyleft +owner: MaxLinear +spdx_license_key: LicenseRef-scancode-dual-commercial-gpl +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This file is licensed under GNU General Public license, except that if you have entered into a signed, written license agreement with the copyright holder covering this file, that agreement applies to this file instead of the GNU General Public License. diff --git a/docs/dual-commercial-gpl.html b/docs/dual-commercial-gpl.html index b2f2479b9b..3dfd6fb061 100644 --- a/docs/dual-commercial-gpl.html +++ b/docs/dual-commercial-gpl.html @@ -144,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dual-commercial-gpl.json b/docs/dual-commercial-gpl.json index 2bb874ca92..a4f1525f32 100644 --- a/docs/dual-commercial-gpl.json +++ b/docs/dual-commercial-gpl.json @@ -1 +1,11 @@ -{"key": "dual-commercial-gpl", "short_name": "Dual Commercial-GPL", "name": "Dual Commercial-GPL", "category": "Copyleft", "owner": "MaxLinear", "spdx_license_key": "LicenseRef-scancode-dual-commercial-gpl", "ignorable_urls": ["http://www.gnu.org/licenses/"]} \ No newline at end of file +{ + "key": "dual-commercial-gpl", + "short_name": "Dual Commercial-GPL", + "name": "Dual Commercial-GPL", + "category": "Copyleft", + "owner": "MaxLinear", + "spdx_license_key": "LicenseRef-scancode-dual-commercial-gpl", + "ignorable_urls": [ + "http://www.gnu.org/licenses/" + ] +} \ No newline at end of file diff --git a/docs/duende-sla-2022.LICENSE b/docs/duende-sla-2022.LICENSE index c8cf289a79..9356d0d0af 100644 --- a/docs/duende-sla-2022.LICENSE +++ b/docs/duende-sla-2022.LICENSE @@ -1,3 +1,19 @@ +--- +key: duende-sla-2022 +short_name: Duende SLA 2022 +name: Duende SLA 2022 +category: Proprietary Free +owner: Duende Software +homepage_url: https://duendesoftware.com/license/SoftwareLicense.pdf +spdx_license_key: LicenseRef-scancode-duende-sla-2022 +faq_url: https://www.nuget.org/packages/Duende.IdentityServer/6.0.4/License +other_urls: + - https://github.com/nexB/scancode-toolkit/issues/2954 + - https://www.nuget.org/packages/Duende.IdentityServer/6.0.4 +ignorable_urls: + - https://duendesoftware.com/products/support +--- + Duende Software, Inc. – Rev. 01/2022 DUENDE™ SOFTWARE LICENSE AGREEMENT diff --git a/docs/duende-sla-2022.html b/docs/duende-sla-2022.html index 3f95ce4b60..f82a4dc4a5 100644 --- a/docs/duende-sla-2022.html +++ b/docs/duende-sla-2022.html @@ -384,7 +384,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/duende-sla-2022.json b/docs/duende-sla-2022.json index 07209e2446..fb73c27e30 100644 --- a/docs/duende-sla-2022.json +++ b/docs/duende-sla-2022.json @@ -1 +1,17 @@ -{"key": "duende-sla-2022", "short_name": "Duende SLA 2022", "name": "Duende SLA 2022", "category": "Proprietary Free", "owner": "Duende Software", "homepage_url": "https://duendesoftware.com/license/SoftwareLicense.pdf", "spdx_license_key": "LicenseRef-scancode-duende-sla-2022", "faq_url": "https://www.nuget.org/packages/Duende.IdentityServer/6.0.4/License", "other_urls": ["https://github.com/nexB/scancode-toolkit/issues/2954", "https://www.nuget.org/packages/Duende.IdentityServer/6.0.4"], "ignorable_urls": ["https://duendesoftware.com/products/support"]} \ No newline at end of file +{ + "key": "duende-sla-2022", + "short_name": "Duende SLA 2022", + "name": "Duende SLA 2022", + "category": "Proprietary Free", + "owner": "Duende Software", + "homepage_url": "https://duendesoftware.com/license/SoftwareLicense.pdf", + "spdx_license_key": "LicenseRef-scancode-duende-sla-2022", + "faq_url": "https://www.nuget.org/packages/Duende.IdentityServer/6.0.4/License", + "other_urls": [ + "https://github.com/nexB/scancode-toolkit/issues/2954", + "https://www.nuget.org/packages/Duende.IdentityServer/6.0.4" + ], + "ignorable_urls": [ + "https://duendesoftware.com/products/support" + ] +} \ No newline at end of file diff --git a/docs/dune-exception.LICENSE b/docs/dune-exception.LICENSE index 2824630225..690721efed 100644 --- a/docs/dune-exception.LICENSE +++ b/docs/dune-exception.LICENSE @@ -1,3 +1,16 @@ +--- +key: dune-exception +short_name: DUNE exception to the GPL +name: DUNE exception to the GPL +category: Copyleft Limited +owner: DUNE Project +homepage_url: https://dune-project.org/about/license/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-dune-exception +text_urls: + - https://github.com/dune-project/dune-common/blob/master/LICENSE.md +--- + As a special exception, you may use the DUNE source files as part of a software library or application without restriction. Specifically, if other files instantiate templates or use macros or inline functions from one or more of the @@ -5,4 +18,4 @@ DUNE source files, or you compile one or more of the DUNE source files and link them with other files to produce an executable, this does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file -might be covered by the GNU General Public License. +might be covered by the GNU General Public License. \ No newline at end of file diff --git a/docs/dune-exception.html b/docs/dune-exception.html index 308b3b598c..777f2711a8 100644 --- a/docs/dune-exception.html +++ b/docs/dune-exception.html @@ -138,8 +138,7 @@ them with other files to produce an executable, this does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file -might be covered by the GNU General Public License. - +might be covered by the GNU General Public License.
@@ -151,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dune-exception.json b/docs/dune-exception.json index 2699c52aeb..961b9e5f98 100644 --- a/docs/dune-exception.json +++ b/docs/dune-exception.json @@ -1 +1,13 @@ -{"key": "dune-exception", "short_name": "DUNE exception to the GPL", "name": "DUNE exception to the GPL", "category": "Copyleft Limited", "owner": "DUNE Project", "homepage_url": "https://dune-project.org/about/license/", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-dune-exception", "text_urls": ["https://github.com/dune-project/dune-common/blob/master/LICENSE.md"]} \ No newline at end of file +{ + "key": "dune-exception", + "short_name": "DUNE exception to the GPL", + "name": "DUNE exception to the GPL", + "category": "Copyleft Limited", + "owner": "DUNE Project", + "homepage_url": "https://dune-project.org/about/license/", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-dune-exception", + "text_urls": [ + "https://github.com/dune-project/dune-common/blob/master/LICENSE.md" + ] +} \ No newline at end of file diff --git a/docs/dvipdfm.LICENSE b/docs/dvipdfm.LICENSE index ef7aaef273..f645190b64 100644 --- a/docs/dvipdfm.LICENSE +++ b/docs/dvipdfm.LICENSE @@ -1,3 +1,16 @@ +--- +key: dvipdfm +short_name: dvipdfm License +name: dvipdfm License +category: Permissive +owner: Unspecified +homepage_url: https://fedoraproject.org/wiki/Licensing/dvipdfm +notes: | + Per Fedora, "should" does not mean "must", and there are implied rights for + unlimited copying and distribution rights for unmodified versions. +spdx_license_key: dvipdfm +--- + A modified version of this file may be distributed, but it should be distributed with a *different* name. Changed files must be distributed *together with a complete and unchanged* distribution of these files. \ No newline at end of file diff --git a/docs/dvipdfm.html b/docs/dvipdfm.html index bdcbf9e997..f0e39a85a1 100644 --- a/docs/dvipdfm.html +++ b/docs/dvipdfm.html @@ -138,7 +138,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dvipdfm.json b/docs/dvipdfm.json index 8c12fe337f..a3ca85a8f5 100644 --- a/docs/dvipdfm.json +++ b/docs/dvipdfm.json @@ -1 +1,10 @@ -{"key": "dvipdfm", "short_name": "dvipdfm License", "name": "dvipdfm License", "category": "Permissive", "owner": "Unspecified", "homepage_url": "https://fedoraproject.org/wiki/Licensing/dvipdfm", "notes": "Per Fedora, \"should\" does not mean \"must\", and there are implied rights for\nunlimited copying and distribution rights for unmodified versions.\n", "spdx_license_key": "dvipdfm"} \ No newline at end of file +{ + "key": "dvipdfm", + "short_name": "dvipdfm License", + "name": "dvipdfm License", + "category": "Permissive", + "owner": "Unspecified", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/dvipdfm", + "notes": "Per Fedora, \"should\" does not mean \"must\", and there are implied rights for\nunlimited copying and distribution rights for unmodified versions.\n", + "spdx_license_key": "dvipdfm" +} \ No newline at end of file diff --git a/docs/dwtfnmfpl-3.0.LICENSE b/docs/dwtfnmfpl-3.0.LICENSE index ca3161daa9..d4ec7e0d09 100644 --- a/docs/dwtfnmfpl-3.0.LICENSE +++ b/docs/dwtfnmfpl-3.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: dwtfnmfpl-3.0 +short_name: DWTFNMFPL-3.0 +name: DWTFNMFPL-3.0 +category: Permissive +owner: dittodhole +homepage_url: https://github.com/dittodhole/WTFNMFPLv3 +notes: A variant on the Do What The Fuck You Want Public License (WTFPL) by Sam Hocevar. +spdx_license_key: LicenseRef-scancode-dwtfnmfpl-3.0 +--- + This project is licensed under the terms of the DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE, version 3, as it follows: diff --git a/docs/dwtfnmfpl-3.0.html b/docs/dwtfnmfpl-3.0.html index c8dc2aaca7..f523afc46c 100644 --- a/docs/dwtfnmfpl-3.0.html +++ b/docs/dwtfnmfpl-3.0.html @@ -142,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dwtfnmfpl-3.0.json b/docs/dwtfnmfpl-3.0.json index 721b2f90de..5215299732 100644 --- a/docs/dwtfnmfpl-3.0.json +++ b/docs/dwtfnmfpl-3.0.json @@ -1 +1,10 @@ -{"key": "dwtfnmfpl-3.0", "short_name": "DWTFNMFPL-3.0", "name": "DWTFNMFPL-3.0", "category": "Permissive", "owner": "dittodhole", "homepage_url": "https://github.com/dittodhole/WTFNMFPLv3", "notes": "A variant on the Do What The Fuck You Want Public License (WTFPL) by Sam Hocevar.", "spdx_license_key": "LicenseRef-scancode-dwtfnmfpl-3.0"} \ No newline at end of file +{ + "key": "dwtfnmfpl-3.0", + "short_name": "DWTFNMFPL-3.0", + "name": "DWTFNMFPL-3.0", + "category": "Permissive", + "owner": "dittodhole", + "homepage_url": "https://github.com/dittodhole/WTFNMFPLv3", + "notes": "A variant on the Do What The Fuck You Want Public License (WTFPL) by Sam Hocevar.", + "spdx_license_key": "LicenseRef-scancode-dwtfnmfpl-3.0" +} \ No newline at end of file diff --git a/docs/dynamic-drive-tou.LICENSE b/docs/dynamic-drive-tou.LICENSE index 25460ae3d5..ef30aad2d0 100644 --- a/docs/dynamic-drive-tou.LICENSE +++ b/docs/dynamic-drive-tou.LICENSE @@ -1,3 +1,18 @@ +--- +key: dynamic-drive-tou +short_name: Dynamic Drive TOU +name: Dynamic Drive Terms of Use +category: Permissive +owner: DynamicDrive +spdx_license_key: LicenseRef-scancode-dynamic-drive-tou +ignorable_copyrights: + - (c) Dynamic Drive (http://www.dynamicdrive.com) +ignorable_holders: + - Dynamic Drive +ignorable_urls: + - http://www.dynamicdrive.com/ +--- + Dynamic Drive DHTML scripts- Terms of Use Unless indicated otherwise by the credit, all scripts on this site are original diff --git a/docs/dynamic-drive-tou.html b/docs/dynamic-drive-tou.html index eadb721e2d..63c477238b 100644 --- a/docs/dynamic-drive-tou.html +++ b/docs/dynamic-drive-tou.html @@ -230,7 +230,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dynamic-drive-tou.json b/docs/dynamic-drive-tou.json index 5d16b2d9ee..57d6731381 100644 --- a/docs/dynamic-drive-tou.json +++ b/docs/dynamic-drive-tou.json @@ -1 +1,17 @@ -{"key": "dynamic-drive-tou", "short_name": "Dynamic Drive TOU", "name": "Dynamic Drive Terms of Use", "category": "Permissive", "owner": "DynamicDrive", "spdx_license_key": "LicenseRef-scancode-dynamic-drive-tou", "ignorable_copyrights": ["(c) Dynamic Drive (http://www.dynamicdrive.com)"], "ignorable_holders": ["Dynamic Drive"], "ignorable_urls": ["http://www.dynamicdrive.com/"]} \ No newline at end of file +{ + "key": "dynamic-drive-tou", + "short_name": "Dynamic Drive TOU", + "name": "Dynamic Drive Terms of Use", + "category": "Permissive", + "owner": "DynamicDrive", + "spdx_license_key": "LicenseRef-scancode-dynamic-drive-tou", + "ignorable_copyrights": [ + "(c) Dynamic Drive (http://www.dynamicdrive.com)" + ], + "ignorable_holders": [ + "Dynamic Drive" + ], + "ignorable_urls": [ + "http://www.dynamicdrive.com/" + ] +} \ No newline at end of file diff --git a/docs/dynarch-developer.LICENSE b/docs/dynarch-developer.LICENSE index 665ee5e7e4..a2603cbac3 100644 --- a/docs/dynarch-developer.LICENSE +++ b/docs/dynarch-developer.LICENSE @@ -1,3 +1,19 @@ +--- +key: dynarch-developer +short_name: Dynarch Developer Agreement +name: Dynarch Developer Agreement +category: Commercial +owner: Dynarch +spdx_license_key: LicenseRef-scancode-dynarch-developer +text_urls: + - http://jescali-swiss.com/media/js/hmenu/license.html +minimum_coverage: 95 +ignorable_copyrights: + - (c) Dynarch.com 2004 +ignorable_holders: + - Dynarch.com +--- + PRODUCT: hmenu Version: 2.9 License type: developer diff --git a/docs/dynarch-developer.html b/docs/dynarch-developer.html index 47d39e0813..061ab9ae0b 100644 --- a/docs/dynarch-developer.html +++ b/docs/dynarch-developer.html @@ -188,7 +188,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dynarch-developer.json b/docs/dynarch-developer.json index a816bcada2..a5083a00c9 100644 --- a/docs/dynarch-developer.json +++ b/docs/dynarch-developer.json @@ -1 +1,18 @@ -{"key": "dynarch-developer", "short_name": "Dynarch Developer Agreement", "name": "Dynarch Developer Agreement", "category": "Commercial", "owner": "Dynarch", "spdx_license_key": "LicenseRef-scancode-dynarch-developer", "text_urls": ["http://jescali-swiss.com/media/js/hmenu/license.html"], "minimum_coverage": 95, "ignorable_copyrights": ["(c) Dynarch.com 2004"], "ignorable_holders": ["Dynarch.com"]} \ No newline at end of file +{ + "key": "dynarch-developer", + "short_name": "Dynarch Developer Agreement", + "name": "Dynarch Developer Agreement", + "category": "Commercial", + "owner": "Dynarch", + "spdx_license_key": "LicenseRef-scancode-dynarch-developer", + "text_urls": [ + "http://jescali-swiss.com/media/js/hmenu/license.html" + ], + "minimum_coverage": 95, + "ignorable_copyrights": [ + "(c) Dynarch.com 2004" + ], + "ignorable_holders": [ + "Dynarch.com" + ] +} \ No newline at end of file diff --git a/docs/dynarch-linkware.LICENSE b/docs/dynarch-linkware.LICENSE index 91e694fd07..9c4cb8313f 100644 --- a/docs/dynarch-linkware.LICENSE +++ b/docs/dynarch-linkware.LICENSE @@ -1,3 +1,21 @@ +--- +key: dynarch-linkware +short_name: Dynarch Linkware Agreement +name: Dynarch Linkware Agreement +category: Free Restricted +owner: Dynarch +spdx_license_key: LicenseRef-scancode-dynarch-linkware +text_urls: + - http://wme.cs.kent.edu/manipulatives/GeometryEditor/hmenu/license.html +minimum_coverage: 95 +ignorable_copyrights: + - (c) Dynarch.com 2003-2005 +ignorable_holders: + - Dynarch.com +ignorable_urls: + - http://www.dynarch.com/products/dhtml-menu/ +--- + PRODUCT: hmenu Version: 2.9 License type: linkware diff --git a/docs/dynarch-linkware.html b/docs/dynarch-linkware.html index f7d9a0f804..c8066efb77 100644 --- a/docs/dynarch-linkware.html +++ b/docs/dynarch-linkware.html @@ -215,7 +215,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/dynarch-linkware.json b/docs/dynarch-linkware.json index 433bc9248d..2405869c89 100644 --- a/docs/dynarch-linkware.json +++ b/docs/dynarch-linkware.json @@ -1 +1,21 @@ -{"key": "dynarch-linkware", "short_name": "Dynarch Linkware Agreement", "name": "Dynarch Linkware Agreement", "category": "Free Restricted", "owner": "Dynarch", "spdx_license_key": "LicenseRef-scancode-dynarch-linkware", "text_urls": ["http://wme.cs.kent.edu/manipulatives/GeometryEditor/hmenu/license.html"], "minimum_coverage": 95, "ignorable_copyrights": ["(c) Dynarch.com 2003-2005"], "ignorable_holders": ["Dynarch.com"], "ignorable_urls": ["http://www.dynarch.com/products/dhtml-menu/"]} \ No newline at end of file +{ + "key": "dynarch-linkware", + "short_name": "Dynarch Linkware Agreement", + "name": "Dynarch Linkware Agreement", + "category": "Free Restricted", + "owner": "Dynarch", + "spdx_license_key": "LicenseRef-scancode-dynarch-linkware", + "text_urls": [ + "http://wme.cs.kent.edu/manipulatives/GeometryEditor/hmenu/license.html" + ], + "minimum_coverage": 95, + "ignorable_copyrights": [ + "(c) Dynarch.com 2003-2005" + ], + "ignorable_holders": [ + "Dynarch.com" + ], + "ignorable_urls": [ + "http://www.dynarch.com/products/dhtml-menu/" + ] +} \ No newline at end of file diff --git a/docs/ecfonts-1.0.LICENSE b/docs/ecfonts-1.0.LICENSE index 5616a2cc68..a5f21ffeb7 100644 --- a/docs/ecfonts-1.0.LICENSE +++ b/docs/ecfonts-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: ecfonts-1.0 +short_name: latex-ec-fonts +name: Copyright notice to the ec fonts +category: Permissive +owner: Joerg Knappen +homepage_url: http://dante.ctan.org +spdx_license_key: LicenseRef-scancode-ecfonts-1.0 +text_urls: + - http://dante.ctan.org/tex-archive/fonts/ec/src/copyrite.txt +--- + WARRANTY There is NO WARRANTY for the ec fonts, to the extent permitted by @@ -43,4 +55,4 @@ under the following restrictions: `ec' or `tc'. * You change the `error report address' so that we do not get error - reports for files not maintained by us. + reports for files not maintained by us. \ No newline at end of file diff --git a/docs/ecfonts-1.0.html b/docs/ecfonts-1.0.html index 40602c651e..0f2a6eea58 100644 --- a/docs/ecfonts-1.0.html +++ b/docs/ecfonts-1.0.html @@ -169,8 +169,7 @@ `ec' or `tc'. * You change the `error report address' so that we do not get error - reports for files not maintained by us. - + reports for files not maintained by us.
@@ -182,7 +181,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ecfonts-1.0.json b/docs/ecfonts-1.0.json index 0d6399578c..45b21667c5 100644 --- a/docs/ecfonts-1.0.json +++ b/docs/ecfonts-1.0.json @@ -1 +1,12 @@ -{"key": "ecfonts-1.0", "short_name": "latex-ec-fonts", "name": "Copyright notice to the ec fonts", "category": "Permissive", "owner": "Joerg Knappen", "homepage_url": "http://dante.ctan.org", "spdx_license_key": "LicenseRef-scancode-ecfonts-1.0", "text_urls": ["http://dante.ctan.org/tex-archive/fonts/ec/src/copyrite.txt"]} \ No newline at end of file +{ + "key": "ecfonts-1.0", + "short_name": "latex-ec-fonts", + "name": "Copyright notice to the ec fonts", + "category": "Permissive", + "owner": "Joerg Knappen", + "homepage_url": "http://dante.ctan.org", + "spdx_license_key": "LicenseRef-scancode-ecfonts-1.0", + "text_urls": [ + "http://dante.ctan.org/tex-archive/fonts/ec/src/copyrite.txt" + ] +} \ No newline at end of file diff --git a/docs/ecl-1.0.LICENSE b/docs/ecl-1.0.LICENSE index 26046fda55..0d9910d8e0 100644 --- a/docs/ecl-1.0.LICENSE +++ b/docs/ecl-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: ecl-1.0 +short_name: ECL 1.0 +name: Educational Community License 1.0 +category: Permissive +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/ecl1.php +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: ECL-1.0 +osi_license_key: ECL-1.0 +text_urls: + - http://www.opensource.org/licenses/ecl1.php +osi_url: http://opensource.org/licenses/ecl1.php +other_urls: + - http://opensource.org/licenses/ECL-1.0 + - https://opensource.org/licenses/ECL-1.0 +--- + The Educational Community License 1.0 This Educational Community License (the "License") applies diff --git a/docs/ecl-1.0.html b/docs/ecl-1.0.html index 7d7dd58db3..5c012a9e26 100644 --- a/docs/ecl-1.0.html +++ b/docs/ecl-1.0.html @@ -219,7 +219,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ecl-1.0.json b/docs/ecl-1.0.json index a2fa21374c..51ebcd7db1 100644 --- a/docs/ecl-1.0.json +++ b/docs/ecl-1.0.json @@ -1 +1,19 @@ -{"key": "ecl-1.0", "short_name": "ECL 1.0", "name": "Educational Community License 1.0", "category": "Permissive", "owner": "OSI - Open Source Initiative", "homepage_url": "http://www.opensource.org/licenses/ecl1.php", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "ECL-1.0", "osi_license_key": "ECL-1.0", "text_urls": ["http://www.opensource.org/licenses/ecl1.php"], "osi_url": "http://opensource.org/licenses/ecl1.php", "other_urls": ["http://opensource.org/licenses/ECL-1.0", "https://opensource.org/licenses/ECL-1.0"]} \ No newline at end of file +{ + "key": "ecl-1.0", + "short_name": "ECL 1.0", + "name": "Educational Community License 1.0", + "category": "Permissive", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://www.opensource.org/licenses/ecl1.php", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "ECL-1.0", + "osi_license_key": "ECL-1.0", + "text_urls": [ + "http://www.opensource.org/licenses/ecl1.php" + ], + "osi_url": "http://opensource.org/licenses/ecl1.php", + "other_urls": [ + "http://opensource.org/licenses/ECL-1.0", + "https://opensource.org/licenses/ECL-1.0" + ] +} \ No newline at end of file diff --git a/docs/ecl-2.0.LICENSE b/docs/ecl-2.0.LICENSE index d586ca49f8..d0a4a7cfd2 100644 --- a/docs/ecl-2.0.LICENSE +++ b/docs/ecl-2.0.LICENSE @@ -1,3 +1,30 @@ +--- +key: ecl-2.0 +short_name: ECL 2.0 +name: Educational Community License 2.0 +category: Permissive +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/ecl2.php +notes: | + Per SPDX.org, this license is OSI certifified. The Educational Community + License version 2.0 ("ECL") consists of the Apache 2.0 license, modified to + change the scope of the patent grant in section 3 to be specific to the + needs of the education communities using this license. The url included in + the boilerplate notice does not work. (15/10/10) +spdx_license_key: ECL-2.0 +osi_license_key: ECL-2.0 +text_urls: + - http://www.opensource.org/licenses/ecl2.php +osi_url: http://opensource.org/licenses/ecl2.php +other_urls: + - http://opensource.org/licenses/ECL-2.0 + - https://opensource.org/licenses/ECL-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.osedu.org/licenses/ + - http://www.osedu.org/licenses/ECL-2.0 +--- + Educational Community License Version 2.0, April 2007 http://www.osedu.org/licenses/ diff --git a/docs/ecl-2.0.html b/docs/ecl-2.0.html index 3ff797dcb4..af9d65e6ab 100644 --- a/docs/ecl-2.0.html +++ b/docs/ecl-2.0.html @@ -382,7 +382,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ecl-2.0.json b/docs/ecl-2.0.json index e34e5ce191..8001a7c0de 100644 --- a/docs/ecl-2.0.json +++ b/docs/ecl-2.0.json @@ -1 +1,24 @@ -{"key": "ecl-2.0", "short_name": "ECL 2.0", "name": "Educational Community License 2.0", "category": "Permissive", "owner": "OSI - Open Source Initiative", "homepage_url": "http://www.opensource.org/licenses/ecl2.php", "notes": "Per SPDX.org, this license is OSI certifified. The Educational Community\nLicense version 2.0 (\"ECL\") consists of the Apache 2.0 license, modified to\nchange the scope of the patent grant in section 3 to be specific to the\nneeds of the education communities using this license. The url included in\nthe boilerplate notice does not work. (15/10/10)\n", "spdx_license_key": "ECL-2.0", "osi_license_key": "ECL-2.0", "text_urls": ["http://www.opensource.org/licenses/ecl2.php"], "osi_url": "http://opensource.org/licenses/ecl2.php", "other_urls": ["http://opensource.org/licenses/ECL-2.0", "https://opensource.org/licenses/ECL-2.0"], "ignorable_urls": ["http://www.apache.org/licenses/LICENSE-2.0", "http://www.osedu.org/licenses/", "http://www.osedu.org/licenses/ECL-2.0"]} \ No newline at end of file +{ + "key": "ecl-2.0", + "short_name": "ECL 2.0", + "name": "Educational Community License 2.0", + "category": "Permissive", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://www.opensource.org/licenses/ecl2.php", + "notes": "Per SPDX.org, this license is OSI certifified. The Educational Community\nLicense version 2.0 (\"ECL\") consists of the Apache 2.0 license, modified to\nchange the scope of the patent grant in section 3 to be specific to the\nneeds of the education communities using this license. The url included in\nthe boilerplate notice does not work. (15/10/10)\n", + "spdx_license_key": "ECL-2.0", + "osi_license_key": "ECL-2.0", + "text_urls": [ + "http://www.opensource.org/licenses/ecl2.php" + ], + "osi_url": "http://opensource.org/licenses/ecl2.php", + "other_urls": [ + "http://opensource.org/licenses/ECL-2.0", + "https://opensource.org/licenses/ECL-2.0" + ], + "ignorable_urls": [ + "http://www.apache.org/licenses/LICENSE-2.0", + "http://www.osedu.org/licenses/", + "http://www.osedu.org/licenses/ECL-2.0" + ] +} \ No newline at end of file diff --git a/docs/eclipse-sua-2001.LICENSE b/docs/eclipse-sua-2001.LICENSE index 5d0eadd4c6..80d8348033 100644 --- a/docs/eclipse-sua-2001.LICENSE +++ b/docs/eclipse-sua-2001.LICENSE @@ -1,3 +1,13 @@ +--- +key: eclipse-sua-2001 +short_name: Eclipse Foundation Software User Agreement 2001 +name: Eclipse Foundation Software User Agreement 2001 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://web.archive.org/web/20011222104358/http://www.eclipse.org/legal/notice.html +spdx_license_key: LicenseRef-scancode-eclipse-sua-2001 +--- + Eclipse.org Software User Agreement 1st November, 2001 diff --git a/docs/eclipse-sua-2001.html b/docs/eclipse-sua-2001.html index 7dc596ff1b..1b6a98ac87 100644 --- a/docs/eclipse-sua-2001.html +++ b/docs/eclipse-sua-2001.html @@ -141,7 +141,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/eclipse-sua-2001.json b/docs/eclipse-sua-2001.json index 9ec379f120..140e5d6368 100644 --- a/docs/eclipse-sua-2001.json +++ b/docs/eclipse-sua-2001.json @@ -1 +1,9 @@ -{"key": "eclipse-sua-2001", "short_name": "Eclipse Foundation Software User Agreement 2001", "name": "Eclipse Foundation Software User Agreement 2001", "category": "Copyleft Limited", "owner": "Eclipse Foundation", "homepage_url": "https://web.archive.org/web/20011222104358/http://www.eclipse.org/legal/notice.html", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2001"} \ No newline at end of file +{ + "key": "eclipse-sua-2001", + "short_name": "Eclipse Foundation Software User Agreement 2001", + "name": "Eclipse Foundation Software User Agreement 2001", + "category": "Copyleft Limited", + "owner": "Eclipse Foundation", + "homepage_url": "https://web.archive.org/web/20011222104358/http://www.eclipse.org/legal/notice.html", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2001" +} \ No newline at end of file diff --git a/docs/eclipse-sua-2002.LICENSE b/docs/eclipse-sua-2002.LICENSE index 921238a296..662270fca0 100644 --- a/docs/eclipse-sua-2002.LICENSE +++ b/docs/eclipse-sua-2002.LICENSE @@ -1,3 +1,15 @@ +--- +key: eclipse-sua-2002 +short_name: Eclipse Foundation Software User Agreement 2002 +name: Eclipse Foundation Software User Agreement 2002 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://web.archive.org/web/20020914103136/http://eclipse.org/ +spdx_license_key: LicenseRef-scancode-eclipse-sua-2002 +ignorable_urls: + - http://www.eclipse.org/legal/cpl-v10.html +--- + Eclipse.org Software User Agreement 17th June, 2002 diff --git a/docs/eclipse-sua-2002.html b/docs/eclipse-sua-2002.html index 9001d04ad3..a5f08bde4b 100644 --- a/docs/eclipse-sua-2002.html +++ b/docs/eclipse-sua-2002.html @@ -159,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/eclipse-sua-2002.json b/docs/eclipse-sua-2002.json index 6138aca41c..867060f911 100644 --- a/docs/eclipse-sua-2002.json +++ b/docs/eclipse-sua-2002.json @@ -1 +1,12 @@ -{"key": "eclipse-sua-2002", "short_name": "Eclipse Foundation Software User Agreement 2002", "name": "Eclipse Foundation Software User Agreement 2002", "category": "Copyleft Limited", "owner": "Eclipse Foundation", "homepage_url": "https://web.archive.org/web/20020914103136/http://eclipse.org/", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2002", "ignorable_urls": ["http://www.eclipse.org/legal/cpl-v10.html"]} \ No newline at end of file +{ + "key": "eclipse-sua-2002", + "short_name": "Eclipse Foundation Software User Agreement 2002", + "name": "Eclipse Foundation Software User Agreement 2002", + "category": "Copyleft Limited", + "owner": "Eclipse Foundation", + "homepage_url": "https://web.archive.org/web/20020914103136/http://eclipse.org/", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2002", + "ignorable_urls": [ + "http://www.eclipse.org/legal/cpl-v10.html" + ] +} \ No newline at end of file diff --git a/docs/eclipse-sua-2003.LICENSE b/docs/eclipse-sua-2003.LICENSE index e29fc2f426..605f8d48ef 100644 --- a/docs/eclipse-sua-2003.LICENSE +++ b/docs/eclipse-sua-2003.LICENSE @@ -1,3 +1,19 @@ +--- +key: eclipse-sua-2003 +short_name: Eclipse Foundation Software User Agreement 2003 +name: Eclipse Foundation Software User Agreement 2003 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://web.archive.org/web/20030210115256/http://www.eclipse.org/legal/notice.html +spdx_license_key: LicenseRef-scancode-eclipse-sua-2003 +ignorable_urls: + - http://oss.software.ibm.com/developerworks/opensource/license10.html + - http://www.apache.org/licenses/LICENSE + - http://www.eclipse.org/legal/cpl-v10.html + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.opengroup.org/openmotif/supporters/metrolink/license.html +--- + Eclipse.org Software User Agreement 14th August, 2003 diff --git a/docs/eclipse-sua-2003.html b/docs/eclipse-sua-2003.html index ab2eedcd7e..dc223f9159 100644 --- a/docs/eclipse-sua-2003.html +++ b/docs/eclipse-sua-2003.html @@ -171,7 +171,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/eclipse-sua-2003.json b/docs/eclipse-sua-2003.json index 8a92bebae8..92a3748ff6 100644 --- a/docs/eclipse-sua-2003.json +++ b/docs/eclipse-sua-2003.json @@ -1 +1,16 @@ -{"key": "eclipse-sua-2003", "short_name": "Eclipse Foundation Software User Agreement 2003", "name": "Eclipse Foundation Software User Agreement 2003", "category": "Copyleft Limited", "owner": "Eclipse Foundation", "homepage_url": "https://web.archive.org/web/20030210115256/http://www.eclipse.org/legal/notice.html", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2003", "ignorable_urls": ["http://oss.software.ibm.com/developerworks/opensource/license10.html", "http://www.apache.org/licenses/LICENSE", "http://www.eclipse.org/legal/cpl-v10.html", "http://www.mozilla.org/MPL/MPL-1.1.html", "http://www.opengroup.org/openmotif/supporters/metrolink/license.html"]} \ No newline at end of file +{ + "key": "eclipse-sua-2003", + "short_name": "Eclipse Foundation Software User Agreement 2003", + "name": "Eclipse Foundation Software User Agreement 2003", + "category": "Copyleft Limited", + "owner": "Eclipse Foundation", + "homepage_url": "https://web.archive.org/web/20030210115256/http://www.eclipse.org/legal/notice.html", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2003", + "ignorable_urls": [ + "http://oss.software.ibm.com/developerworks/opensource/license10.html", + "http://www.apache.org/licenses/LICENSE", + "http://www.eclipse.org/legal/cpl-v10.html", + "http://www.mozilla.org/MPL/MPL-1.1.html", + "http://www.opengroup.org/openmotif/supporters/metrolink/license.html" + ] +} \ No newline at end of file diff --git a/docs/eclipse-sua-2004.LICENSE b/docs/eclipse-sua-2004.LICENSE index 867ebcf59d..c7640c6fec 100644 --- a/docs/eclipse-sua-2004.LICENSE +++ b/docs/eclipse-sua-2004.LICENSE @@ -1,3 +1,20 @@ +--- +key: eclipse-sua-2004 +short_name: Eclipse Foundation Software User Agreement 2004 +name: Eclipse Foundation Software User Agreement 2004 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://web.archive.org/web/20041125054703/http://www.eclipse.org/legal/notice.html +spdx_license_key: LicenseRef-scancode-eclipse-sua-2004 +ignorable_urls: + - http://oss.software.ibm.com/developerworks/opensource/license10.html + - http://www.apache.org/licenses/LICENSE + - http://www.eclipse.org/legal/cpl-v10.html + - http://www.eclipse.org/legal/epl-v10.html + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.opengroup.org/openmotif/supporters/metrolink/license.html +--- + Eclipse.org Software User Agreement 15th June, 2004 diff --git a/docs/eclipse-sua-2004.html b/docs/eclipse-sua-2004.html index f82b0fa391..008252f6f8 100644 --- a/docs/eclipse-sua-2004.html +++ b/docs/eclipse-sua-2004.html @@ -172,7 +172,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/eclipse-sua-2004.json b/docs/eclipse-sua-2004.json index 0fc629fda9..3d4f980030 100644 --- a/docs/eclipse-sua-2004.json +++ b/docs/eclipse-sua-2004.json @@ -1 +1,17 @@ -{"key": "eclipse-sua-2004", "short_name": "Eclipse Foundation Software User Agreement 2004", "name": "Eclipse Foundation Software User Agreement 2004", "category": "Copyleft Limited", "owner": "Eclipse Foundation", "homepage_url": "https://web.archive.org/web/20041125054703/http://www.eclipse.org/legal/notice.html", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2004", "ignorable_urls": ["http://oss.software.ibm.com/developerworks/opensource/license10.html", "http://www.apache.org/licenses/LICENSE", "http://www.eclipse.org/legal/cpl-v10.html", "http://www.eclipse.org/legal/epl-v10.html", "http://www.mozilla.org/MPL/MPL-1.1.html", "http://www.opengroup.org/openmotif/supporters/metrolink/license.html"]} \ No newline at end of file +{ + "key": "eclipse-sua-2004", + "short_name": "Eclipse Foundation Software User Agreement 2004", + "name": "Eclipse Foundation Software User Agreement 2004", + "category": "Copyleft Limited", + "owner": "Eclipse Foundation", + "homepage_url": "https://web.archive.org/web/20041125054703/http://www.eclipse.org/legal/notice.html", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2004", + "ignorable_urls": [ + "http://oss.software.ibm.com/developerworks/opensource/license10.html", + "http://www.apache.org/licenses/LICENSE", + "http://www.eclipse.org/legal/cpl-v10.html", + "http://www.eclipse.org/legal/epl-v10.html", + "http://www.mozilla.org/MPL/MPL-1.1.html", + "http://www.opengroup.org/openmotif/supporters/metrolink/license.html" + ] +} \ No newline at end of file diff --git a/docs/eclipse-sua-2005.LICENSE b/docs/eclipse-sua-2005.LICENSE index 9687f37991..c8902d2e60 100644 --- a/docs/eclipse-sua-2005.LICENSE +++ b/docs/eclipse-sua-2005.LICENSE @@ -1,3 +1,20 @@ +--- +key: eclipse-sua-2005 +short_name: Eclipse Foundation Software User Agreement 2005 +name: Eclipse Foundation Software User Agreement 2005 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://web.archive.org/web/20060128034635/http://www.eclipse.org/legal/epl/notice.php +spdx_license_key: LicenseRef-scancode-eclipse-sua-2005 +ignorable_urls: + - http://oss.software.ibm.com/developerworks/opensource/license10.html + - http://www.apache.org/licenses/LICENSE + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.eclipse.org/legal/cpl-v10.html + - http://www.eclipse.org/legal/epl-v10.html + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.opengroup.org/openmotif/supporters/metrolink/license.html +--- Eclipse Foundation Software User Agreement @@ -39,4 +56,4 @@ IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO Cryptography Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country’s laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. -Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both. \ No newline at end of file +Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both. \ No newline at end of file diff --git a/docs/eclipse-sua-2005.html b/docs/eclipse-sua-2005.html index a744404665..082432e770 100644 --- a/docs/eclipse-sua-2005.html +++ b/docs/eclipse-sua-2005.html @@ -124,8 +124,7 @@
license_text
-

-Eclipse Foundation Software User Agreement
+    
Eclipse Foundation Software User Agreement
 
 March 17, 2005
 Usage Of Content
@@ -165,7 +164,7 @@
 Cryptography
 
 Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country’s laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted.
-Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both. 
+Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both.
@@ -177,7 +176,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/eclipse-sua-2005.json b/docs/eclipse-sua-2005.json index 3e4324e3cd..e794ed9a8a 100644 --- a/docs/eclipse-sua-2005.json +++ b/docs/eclipse-sua-2005.json @@ -1 +1,18 @@ -{"key": "eclipse-sua-2005", "short_name": "Eclipse Foundation Software User Agreement 2005", "name": "Eclipse Foundation Software User Agreement 2005", "category": "Copyleft Limited", "owner": "Eclipse Foundation", "homepage_url": "https://web.archive.org/web/20060128034635/http://www.eclipse.org/legal/epl/notice.php", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2005", "ignorable_urls": ["http://oss.software.ibm.com/developerworks/opensource/license10.html", "http://www.apache.org/licenses/LICENSE", "http://www.apache.org/licenses/LICENSE-2.0", "http://www.eclipse.org/legal/cpl-v10.html", "http://www.eclipse.org/legal/epl-v10.html", "http://www.mozilla.org/MPL/MPL-1.1.html", "http://www.opengroup.org/openmotif/supporters/metrolink/license.html"]} \ No newline at end of file +{ + "key": "eclipse-sua-2005", + "short_name": "Eclipse Foundation Software User Agreement 2005", + "name": "Eclipse Foundation Software User Agreement 2005", + "category": "Copyleft Limited", + "owner": "Eclipse Foundation", + "homepage_url": "https://web.archive.org/web/20060128034635/http://www.eclipse.org/legal/epl/notice.php", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2005", + "ignorable_urls": [ + "http://oss.software.ibm.com/developerworks/opensource/license10.html", + "http://www.apache.org/licenses/LICENSE", + "http://www.apache.org/licenses/LICENSE-2.0", + "http://www.eclipse.org/legal/cpl-v10.html", + "http://www.eclipse.org/legal/epl-v10.html", + "http://www.mozilla.org/MPL/MPL-1.1.html", + "http://www.opengroup.org/openmotif/supporters/metrolink/license.html" + ] +} \ No newline at end of file diff --git a/docs/eclipse-sua-2010.LICENSE b/docs/eclipse-sua-2010.LICENSE index 20691eff26..de732bb6f7 100644 --- a/docs/eclipse-sua-2010.LICENSE +++ b/docs/eclipse-sua-2010.LICENSE @@ -1,3 +1,20 @@ +--- +key: eclipse-sua-2010 +short_name: Eclipse Foundation Software User Agreement 2010 +name: Eclipse Foundation Software User Agreement 2010 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://web.archive.org/web/20100921113304/http://eclipse.org/legal/epl/notice.php +spdx_license_key: LicenseRef-scancode-eclipse-sua-2010 +ignorable_urls: + - http://eclipse.org/equinox/p2/repository_packaging.html + - http://www.apache.org/licenses/LICENSE + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.eclipse.org/legal/cpl-v10.html + - http://www.eclipse.org/legal/epl-v10.html + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.opengroup.org/openmotif/supporters/metrolink/license.html +--- Eclipse Foundation Software User Agreement @@ -49,4 +66,4 @@ Cryptography Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. -Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. +Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. \ No newline at end of file diff --git a/docs/eclipse-sua-2010.html b/docs/eclipse-sua-2010.html index 158aee5d56..20c7f1fcf7 100644 --- a/docs/eclipse-sua-2010.html +++ b/docs/eclipse-sua-2010.html @@ -124,8 +124,7 @@
license_text
-

-Eclipse Foundation Software User Agreement
+    
Eclipse Foundation Software User Agreement
 
 April 14, 2010
 Usage Of Content
@@ -175,8 +174,7 @@
 
 Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted.
 
-Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
-
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
@@ -188,7 +186,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/eclipse-sua-2010.json b/docs/eclipse-sua-2010.json index bd66d1e9b3..eef5ba6d02 100644 --- a/docs/eclipse-sua-2010.json +++ b/docs/eclipse-sua-2010.json @@ -1 +1,18 @@ -{"key": "eclipse-sua-2010", "short_name": "Eclipse Foundation Software User Agreement 2010", "name": "Eclipse Foundation Software User Agreement 2010", "category": "Copyleft Limited", "owner": "Eclipse Foundation", "homepage_url": "https://web.archive.org/web/20100921113304/http://eclipse.org/legal/epl/notice.php", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2010", "ignorable_urls": ["http://eclipse.org/equinox/p2/repository_packaging.html", "http://www.apache.org/licenses/LICENSE", "http://www.apache.org/licenses/LICENSE-2.0", "http://www.eclipse.org/legal/cpl-v10.html", "http://www.eclipse.org/legal/epl-v10.html", "http://www.mozilla.org/MPL/MPL-1.1.html", "http://www.opengroup.org/openmotif/supporters/metrolink/license.html"]} \ No newline at end of file +{ + "key": "eclipse-sua-2010", + "short_name": "Eclipse Foundation Software User Agreement 2010", + "name": "Eclipse Foundation Software User Agreement 2010", + "category": "Copyleft Limited", + "owner": "Eclipse Foundation", + "homepage_url": "https://web.archive.org/web/20100921113304/http://eclipse.org/legal/epl/notice.php", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2010", + "ignorable_urls": [ + "http://eclipse.org/equinox/p2/repository_packaging.html", + "http://www.apache.org/licenses/LICENSE", + "http://www.apache.org/licenses/LICENSE-2.0", + "http://www.eclipse.org/legal/cpl-v10.html", + "http://www.eclipse.org/legal/epl-v10.html", + "http://www.mozilla.org/MPL/MPL-1.1.html", + "http://www.opengroup.org/openmotif/supporters/metrolink/license.html" + ] +} \ No newline at end of file diff --git a/docs/eclipse-sua-2011.LICENSE b/docs/eclipse-sua-2011.LICENSE index 69bbc1b38e..dac9ce29eb 100644 --- a/docs/eclipse-sua-2011.LICENSE +++ b/docs/eclipse-sua-2011.LICENSE @@ -1,3 +1,21 @@ +--- +key: eclipse-sua-2011 +short_name: Eclipse Foundation Software User Agreement 2011 +name: Eclipse Foundation Software User Agreement 2011 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://web.archive.org/web/20110629072232/http://www.eclipse.org/legal/epl/notice.php +spdx_license_key: LicenseRef-scancode-eclipse-sua-2011 +ignorable_urls: + - http://eclipse.org/equinox/p2/repository_packaging.html + - http://www.apache.org/licenses/LICENSE + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.eclipse.org/legal/cpl-v10.html + - http://www.eclipse.org/legal/epl-v10.html + - http://www.eclipse.org/licenses/edl-v1.0.html + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.opengroup.org/openmotif/supporters/metrolink/license.html +--- Eclipse Foundation Software User Agreement @@ -50,4 +68,4 @@ Cryptography Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. -Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. +Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. \ No newline at end of file diff --git a/docs/eclipse-sua-2011.html b/docs/eclipse-sua-2011.html index 20ad5b6ccb..2ed240924f 100644 --- a/docs/eclipse-sua-2011.html +++ b/docs/eclipse-sua-2011.html @@ -124,8 +124,7 @@
license_text
-

-Eclipse Foundation Software User Agreement
+    
Eclipse Foundation Software User Agreement
 
 February 1, 2011
 Usage Of Content
@@ -176,8 +175,7 @@
 
 Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted.
 
-Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
-
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
@@ -189,7 +187,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/eclipse-sua-2011.json b/docs/eclipse-sua-2011.json index 1dae647b85..c0956528be 100644 --- a/docs/eclipse-sua-2011.json +++ b/docs/eclipse-sua-2011.json @@ -1 +1,19 @@ -{"key": "eclipse-sua-2011", "short_name": "Eclipse Foundation Software User Agreement 2011", "name": "Eclipse Foundation Software User Agreement 2011", "category": "Copyleft Limited", "owner": "Eclipse Foundation", "homepage_url": "https://web.archive.org/web/20110629072232/http://www.eclipse.org/legal/epl/notice.php", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2011", "ignorable_urls": ["http://eclipse.org/equinox/p2/repository_packaging.html", "http://www.apache.org/licenses/LICENSE", "http://www.apache.org/licenses/LICENSE-2.0", "http://www.eclipse.org/legal/cpl-v10.html", "http://www.eclipse.org/legal/epl-v10.html", "http://www.eclipse.org/licenses/edl-v1.0.html", "http://www.mozilla.org/MPL/MPL-1.1.html", "http://www.opengroup.org/openmotif/supporters/metrolink/license.html"]} \ No newline at end of file +{ + "key": "eclipse-sua-2011", + "short_name": "Eclipse Foundation Software User Agreement 2011", + "name": "Eclipse Foundation Software User Agreement 2011", + "category": "Copyleft Limited", + "owner": "Eclipse Foundation", + "homepage_url": "https://web.archive.org/web/20110629072232/http://www.eclipse.org/legal/epl/notice.php", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2011", + "ignorable_urls": [ + "http://eclipse.org/equinox/p2/repository_packaging.html", + "http://www.apache.org/licenses/LICENSE", + "http://www.apache.org/licenses/LICENSE-2.0", + "http://www.eclipse.org/legal/cpl-v10.html", + "http://www.eclipse.org/legal/epl-v10.html", + "http://www.eclipse.org/licenses/edl-v1.0.html", + "http://www.mozilla.org/MPL/MPL-1.1.html", + "http://www.opengroup.org/openmotif/supporters/metrolink/license.html" + ] +} \ No newline at end of file diff --git a/docs/eclipse-sua-2014-11.LICENSE b/docs/eclipse-sua-2014-11.LICENSE index 187d34d227..166d1e370e 100644 --- a/docs/eclipse-sua-2014-11.LICENSE +++ b/docs/eclipse-sua-2014-11.LICENSE @@ -1,3 +1,21 @@ +--- +key: eclipse-sua-2014-11 +short_name: Eclipse Foundation Software User Agreement 2014-11 +name: Eclipse Foundation Software User Agreement 2014-11 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://web.archive.org/web/20171127212442/http://www.eclipse.org/legal/epl/notice.php +spdx_license_key: LicenseRef-scancode-eclipse-sua-2014-11 +ignorable_urls: + - http://eclipse.org/equinox/p2/repository_packaging.html + - http://www.apache.org/licenses/LICENSE + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.eclipse.org/legal/cpl-v10.html + - http://www.eclipse.org/legal/epl-2.0 + - http://www.eclipse.org/legal/epl-v10.html + - http://www.eclipse.org/licenses/edl-v1.0.html + - http://www.mozilla.org/MPL/MPL-1.1.html +--- Eclipse Foundation Software User Agreement @@ -50,4 +68,4 @@ Cryptography Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. -Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. +Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. \ No newline at end of file diff --git a/docs/eclipse-sua-2014-11.html b/docs/eclipse-sua-2014-11.html index 6ac3e626ce..5d1126dfec 100644 --- a/docs/eclipse-sua-2014-11.html +++ b/docs/eclipse-sua-2014-11.html @@ -124,8 +124,7 @@
license_text
-

-Eclipse Foundation Software User Agreement
+    
Eclipse Foundation Software User Agreement
 
 November 22, 2014
 Usage Of Content
@@ -176,8 +175,7 @@
 
 Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted.
 
-Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
-
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
@@ -189,7 +187,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/eclipse-sua-2014-11.json b/docs/eclipse-sua-2014-11.json index f0111c7cac..2ea0405bb9 100644 --- a/docs/eclipse-sua-2014-11.json +++ b/docs/eclipse-sua-2014-11.json @@ -1 +1,19 @@ -{"key": "eclipse-sua-2014-11", "short_name": "Eclipse Foundation Software User Agreement 2014-11", "name": "Eclipse Foundation Software User Agreement 2014-11", "category": "Copyleft Limited", "owner": "Eclipse Foundation", "homepage_url": "https://web.archive.org/web/20171127212442/http://www.eclipse.org/legal/epl/notice.php", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2014-11", "ignorable_urls": ["http://eclipse.org/equinox/p2/repository_packaging.html", "http://www.apache.org/licenses/LICENSE", "http://www.apache.org/licenses/LICENSE-2.0", "http://www.eclipse.org/legal/cpl-v10.html", "http://www.eclipse.org/legal/epl-2.0", "http://www.eclipse.org/legal/epl-v10.html", "http://www.eclipse.org/licenses/edl-v1.0.html", "http://www.mozilla.org/MPL/MPL-1.1.html"]} \ No newline at end of file +{ + "key": "eclipse-sua-2014-11", + "short_name": "Eclipse Foundation Software User Agreement 2014-11", + "name": "Eclipse Foundation Software User Agreement 2014-11", + "category": "Copyleft Limited", + "owner": "Eclipse Foundation", + "homepage_url": "https://web.archive.org/web/20171127212442/http://www.eclipse.org/legal/epl/notice.php", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2014-11", + "ignorable_urls": [ + "http://eclipse.org/equinox/p2/repository_packaging.html", + "http://www.apache.org/licenses/LICENSE", + "http://www.apache.org/licenses/LICENSE-2.0", + "http://www.eclipse.org/legal/cpl-v10.html", + "http://www.eclipse.org/legal/epl-2.0", + "http://www.eclipse.org/legal/epl-v10.html", + "http://www.eclipse.org/licenses/edl-v1.0.html", + "http://www.mozilla.org/MPL/MPL-1.1.html" + ] +} \ No newline at end of file diff --git a/docs/eclipse-sua-2014.LICENSE b/docs/eclipse-sua-2014.LICENSE index 75c4d6254c..5a6830c926 100644 --- a/docs/eclipse-sua-2014.LICENSE +++ b/docs/eclipse-sua-2014.LICENSE @@ -1,3 +1,20 @@ +--- +key: eclipse-sua-2014 +short_name: Eclipse Foundation Software User Agreement 2014 +name: Eclipse Foundation Software User Agreement 2014 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://web.archive.org/web/20140707032302/http://eclipse.org/legal/epl/notice.php +spdx_license_key: LicenseRef-scancode-eclipse-sua-2014 +ignorable_urls: + - http://eclipse.org/equinox/p2/repository_packaging.html + - http://www.apache.org/licenses/LICENSE + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.eclipse.org/legal/cpl-v10.html + - http://www.eclipse.org/legal/epl-v10.html + - http://www.eclipse.org/licenses/edl-v1.0.html + - http://www.mozilla.org/MPL/MPL-1.1.html +--- Eclipse Foundation Software User Agreement @@ -49,4 +66,4 @@ Cryptography Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. -Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. +Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. \ No newline at end of file diff --git a/docs/eclipse-sua-2014.html b/docs/eclipse-sua-2014.html index 4dd7c8d64d..855eff4f96 100644 --- a/docs/eclipse-sua-2014.html +++ b/docs/eclipse-sua-2014.html @@ -124,8 +124,7 @@
license_text
-

-Eclipse Foundation Software User Agreement
+    
Eclipse Foundation Software User Agreement
 
 April 9, 2014
 Usage Of Content
@@ -175,8 +174,7 @@
 
 Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted.
 
-Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
-
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
@@ -188,7 +186,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/eclipse-sua-2014.json b/docs/eclipse-sua-2014.json index c94d7fdf24..8f1ee99984 100644 --- a/docs/eclipse-sua-2014.json +++ b/docs/eclipse-sua-2014.json @@ -1 +1,18 @@ -{"key": "eclipse-sua-2014", "short_name": "Eclipse Foundation Software User Agreement 2014", "name": "Eclipse Foundation Software User Agreement 2014", "category": "Copyleft Limited", "owner": "Eclipse Foundation", "homepage_url": "https://web.archive.org/web/20140707032302/http://eclipse.org/legal/epl/notice.php", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2014", "ignorable_urls": ["http://eclipse.org/equinox/p2/repository_packaging.html", "http://www.apache.org/licenses/LICENSE", "http://www.apache.org/licenses/LICENSE-2.0", "http://www.eclipse.org/legal/cpl-v10.html", "http://www.eclipse.org/legal/epl-v10.html", "http://www.eclipse.org/licenses/edl-v1.0.html", "http://www.mozilla.org/MPL/MPL-1.1.html"]} \ No newline at end of file +{ + "key": "eclipse-sua-2014", + "short_name": "Eclipse Foundation Software User Agreement 2014", + "name": "Eclipse Foundation Software User Agreement 2014", + "category": "Copyleft Limited", + "owner": "Eclipse Foundation", + "homepage_url": "https://web.archive.org/web/20140707032302/http://eclipse.org/legal/epl/notice.php", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2014", + "ignorable_urls": [ + "http://eclipse.org/equinox/p2/repository_packaging.html", + "http://www.apache.org/licenses/LICENSE", + "http://www.apache.org/licenses/LICENSE-2.0", + "http://www.eclipse.org/legal/cpl-v10.html", + "http://www.eclipse.org/legal/epl-v10.html", + "http://www.eclipse.org/licenses/edl-v1.0.html", + "http://www.mozilla.org/MPL/MPL-1.1.html" + ] +} \ No newline at end of file diff --git a/docs/eclipse-sua-2017.LICENSE b/docs/eclipse-sua-2017.LICENSE index 7d7f62605a..f7f88e44c1 100644 --- a/docs/eclipse-sua-2017.LICENSE +++ b/docs/eclipse-sua-2017.LICENSE @@ -1,3 +1,23 @@ +--- +key: eclipse-sua-2017 +short_name: Eclipse Foundation Software User Agreement 2017 +name: Eclipse Foundation Software User Agreement 2017 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://www.eclipse.org/legal/epl/notice.php +spdx_license_key: LicenseRef-scancode-eclipse-sua-2017 +text_urls: + - https://web.archive.org/web/20200212074736/https://www.eclipse.org/legal/epl/notice.php +ignorable_urls: + - http://eclipse.org/equinox/p2/repository_packaging.html + - http://www.apache.org/licenses/LICENSE + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.eclipse.org/legal/cpl-v10.html + - http://www.eclipse.org/legal/epl-2.0 + - http://www.eclipse.org/legal/epl-v10.html + - http://www.eclipse.org/licenses/edl-v1.0.html + - http://www.mozilla.org/MPL/MPL-1.1.html +--- Eclipse Foundation Software User Agreement @@ -50,4 +70,4 @@ Cryptography Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. -Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. +Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. \ No newline at end of file diff --git a/docs/eclipse-sua-2017.html b/docs/eclipse-sua-2017.html index 23561507a4..d662595558 100644 --- a/docs/eclipse-sua-2017.html +++ b/docs/eclipse-sua-2017.html @@ -133,8 +133,7 @@
license_text
-

-Eclipse Foundation Software User Agreement
+    
Eclipse Foundation Software User Agreement
 
 November 22, 2017
 Usage Of Content
@@ -185,8 +184,7 @@
 
 Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted.
 
-Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
-
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
@@ -198,7 +196,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/eclipse-sua-2017.json b/docs/eclipse-sua-2017.json index 01122f8806..e5d125f7ea 100644 --- a/docs/eclipse-sua-2017.json +++ b/docs/eclipse-sua-2017.json @@ -1 +1,22 @@ -{"key": "eclipse-sua-2017", "short_name": "Eclipse Foundation Software User Agreement 2017", "name": "Eclipse Foundation Software User Agreement 2017", "category": "Copyleft Limited", "owner": "Eclipse Foundation", "homepage_url": "https://www.eclipse.org/legal/epl/notice.php", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2017", "text_urls": ["https://web.archive.org/web/20200212074736/https://www.eclipse.org/legal/epl/notice.php"], "ignorable_urls": ["http://eclipse.org/equinox/p2/repository_packaging.html", "http://www.apache.org/licenses/LICENSE", "http://www.apache.org/licenses/LICENSE-2.0", "http://www.eclipse.org/legal/cpl-v10.html", "http://www.eclipse.org/legal/epl-2.0", "http://www.eclipse.org/legal/epl-v10.html", "http://www.eclipse.org/licenses/edl-v1.0.html", "http://www.mozilla.org/MPL/MPL-1.1.html"]} \ No newline at end of file +{ + "key": "eclipse-sua-2017", + "short_name": "Eclipse Foundation Software User Agreement 2017", + "name": "Eclipse Foundation Software User Agreement 2017", + "category": "Copyleft Limited", + "owner": "Eclipse Foundation", + "homepage_url": "https://www.eclipse.org/legal/epl/notice.php", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2017", + "text_urls": [ + "https://web.archive.org/web/20200212074736/https://www.eclipse.org/legal/epl/notice.php" + ], + "ignorable_urls": [ + "http://eclipse.org/equinox/p2/repository_packaging.html", + "http://www.apache.org/licenses/LICENSE", + "http://www.apache.org/licenses/LICENSE-2.0", + "http://www.eclipse.org/legal/cpl-v10.html", + "http://www.eclipse.org/legal/epl-2.0", + "http://www.eclipse.org/legal/epl-v10.html", + "http://www.eclipse.org/licenses/edl-v1.0.html", + "http://www.mozilla.org/MPL/MPL-1.1.html" + ] +} \ No newline at end of file diff --git a/docs/ecma-documentation.LICENSE b/docs/ecma-documentation.LICENSE index 06ea38e93a..bfe7adda7e 100644 --- a/docs/ecma-documentation.LICENSE +++ b/docs/ecma-documentation.LICENSE @@ -1,3 +1,12 @@ +--- +key: ecma-documentation +short_name: Ecma Documentation License +name: Ecma Documentation License +category: Free Restricted +owner: Ecma International +homepage_url: http://www.ecma-international.org/publications/DISCLAIMER.pdf +spdx_license_key: LicenseRef-scancode-ecma-documentation +--- This document and possible translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist @@ -15,4 +24,4 @@ contained herein is provided on an "AS IS" basis and ECMA INTERNATIONAL DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY OWNERSHIP RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR -PURPOSE. +PURPOSE. \ No newline at end of file diff --git a/docs/ecma-documentation.html b/docs/ecma-documentation.html index 2bbd964072..7da0acf1b8 100644 --- a/docs/ecma-documentation.html +++ b/docs/ecma-documentation.html @@ -115,8 +115,7 @@
license_text
-

-This document and possible translations of it may be copied and furnished to
+    
This document and possible translations of it may be copied and furnished to
 others, and derivative works that comment on or otherwise explain it or assist
 in its implementation may be prepared, copied, published, and distributed, in
 whole or in part, without restriction of any kind, provided that the above
@@ -132,8 +131,7 @@
 DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY
 WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY OWNERSHIP
 RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR
-PURPOSE.
-
+PURPOSE.
@@ -145,7 +143,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ecma-documentation.json b/docs/ecma-documentation.json index fdf8be6365..b7a4058cc2 100644 --- a/docs/ecma-documentation.json +++ b/docs/ecma-documentation.json @@ -1 +1,9 @@ -{"key": "ecma-documentation", "short_name": "Ecma Documentation License", "name": "Ecma Documentation License", "category": "Free Restricted", "owner": "Ecma International", "homepage_url": "http://www.ecma-international.org/publications/DISCLAIMER.pdf", "spdx_license_key": "LicenseRef-scancode-ecma-documentation"} \ No newline at end of file +{ + "key": "ecma-documentation", + "short_name": "Ecma Documentation License", + "name": "Ecma Documentation License", + "category": "Free Restricted", + "owner": "Ecma International", + "homepage_url": "http://www.ecma-international.org/publications/DISCLAIMER.pdf", + "spdx_license_key": "LicenseRef-scancode-ecma-documentation" +} \ No newline at end of file diff --git a/docs/ecma-no-patent.LICENSE b/docs/ecma-no-patent.LICENSE index ddaace9fd7..c691b9868c 100644 --- a/docs/ecma-no-patent.LICENSE +++ b/docs/ecma-no-patent.LICENSE @@ -1,3 +1,16 @@ +--- +key: ecma-no-patent +short_name: Ecma no patent notice +name: Ecma no patent notice +category: Proprietary Free +owner: Ecma International +homepage_url: http://www.ecma-international.org/memento/codeofconduct.htm +is_exception: yes +spdx_license_key: LicenseRef-scancode-ecma-no-patent +ignorable_urls: + - http://www.ecma-international.org/memento/codeofconduct.htm +--- + This Software may be subject to third party rights (rights from parties other than Ecma International), including patent rights, and no licenses under such third party rights are granted under this license even if the third party concerned is @@ -6,4 +19,4 @@ a member of Ecma International. SEE THE ECMA CODE OF CONDUCT IN PATENT MATTERS AVAILABLE AT http://www.ecma-international.org/memento/codeofconduct.htm FOR INFORMATION REGARDING THE LICENSING OF PATENT CLAIMS THAT ARE REQUIRED TO -IMPLEMENT ECMA INTERNATIONAL STANDARDS*. +IMPLEMENT ECMA INTERNATIONAL STANDARDS*. \ No newline at end of file diff --git a/docs/ecma-no-patent.html b/docs/ecma-no-patent.html index af1a1018bb..25c09aca98 100644 --- a/docs/ecma-no-patent.html +++ b/docs/ecma-no-patent.html @@ -139,8 +139,7 @@ SEE THE ECMA CODE OF CONDUCT IN PATENT MATTERS AVAILABLE AT http://www.ecma-international.org/memento/codeofconduct.htm FOR INFORMATION REGARDING THE LICENSING OF PATENT CLAIMS THAT ARE REQUIRED TO -IMPLEMENT ECMA INTERNATIONAL STANDARDS*. - +IMPLEMENT ECMA INTERNATIONAL STANDARDS*.
@@ -152,7 +151,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ecma-no-patent.json b/docs/ecma-no-patent.json index 7901e0318b..d8abb47edf 100644 --- a/docs/ecma-no-patent.json +++ b/docs/ecma-no-patent.json @@ -1 +1,13 @@ -{"key": "ecma-no-patent", "short_name": "Ecma no patent notice", "name": "Ecma no patent notice", "category": "Proprietary Free", "owner": "Ecma International", "homepage_url": "http://www.ecma-international.org/memento/codeofconduct.htm", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-ecma-no-patent", "ignorable_urls": ["http://www.ecma-international.org/memento/codeofconduct.htm"]} \ No newline at end of file +{ + "key": "ecma-no-patent", + "short_name": "Ecma no patent notice", + "name": "Ecma no patent notice", + "category": "Proprietary Free", + "owner": "Ecma International", + "homepage_url": "http://www.ecma-international.org/memento/codeofconduct.htm", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-ecma-no-patent", + "ignorable_urls": [ + "http://www.ecma-international.org/memento/codeofconduct.htm" + ] +} \ No newline at end of file diff --git a/docs/ecma-patent-coc-0.LICENSE b/docs/ecma-patent-coc-0.LICENSE index ed3ff3fc47..da7bc87fb2 100644 --- a/docs/ecma-patent-coc-0.LICENSE +++ b/docs/ecma-patent-coc-0.LICENSE @@ -1,3 +1,14 @@ +--- +key: ecma-patent-coc-0 +short_name: Ecma Historical Code of Conduct in Patent Matters +name: Ecma Historical Code of Conduct in Patent Matters +category: Proprietary Free +owner: Ecma International +homepage_url: http://www.ecma-international.org/memento/historical%20codeofconduct.htm +notes: valid until December 3, 2009 +spdx_license_key: LicenseRef-scancode-ecma-patent-coc-0 +--- + Historical Code of Conduct in Patent Matters (valid until December 3, 2009) 1. diff --git a/docs/ecma-patent-coc-0.html b/docs/ecma-patent-coc-0.html index 91f68fc2d0..30826ff7f0 100644 --- a/docs/ecma-patent-coc-0.html +++ b/docs/ecma-patent-coc-0.html @@ -174,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ecma-patent-coc-0.json b/docs/ecma-patent-coc-0.json index f2b069db2c..06e9c8f7d3 100644 --- a/docs/ecma-patent-coc-0.json +++ b/docs/ecma-patent-coc-0.json @@ -1 +1,10 @@ -{"key": "ecma-patent-coc-0", "short_name": "Ecma Historical Code of Conduct in Patent Matters", "name": "Ecma Historical Code of Conduct in Patent Matters", "category": "Proprietary Free", "owner": "Ecma International", "homepage_url": "http://www.ecma-international.org/memento/historical%20codeofconduct.htm", "notes": "valid until December 3, 2009", "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-0"} \ No newline at end of file +{ + "key": "ecma-patent-coc-0", + "short_name": "Ecma Historical Code of Conduct in Patent Matters", + "name": "Ecma Historical Code of Conduct in Patent Matters", + "category": "Proprietary Free", + "owner": "Ecma International", + "homepage_url": "http://www.ecma-international.org/memento/historical%20codeofconduct.htm", + "notes": "valid until December 3, 2009", + "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-0" +} \ No newline at end of file diff --git a/docs/ecma-patent-coc-1.LICENSE b/docs/ecma-patent-coc-1.LICENSE index c961b5bdec..3d2d3d9f42 100644 --- a/docs/ecma-patent-coc-1.LICENSE +++ b/docs/ecma-patent-coc-1.LICENSE @@ -1,3 +1,13 @@ +--- +key: ecma-patent-coc-1 +short_name: Ecma Code of Conduct in Patent Matters v1 +name: Ecma Code of Conduct in Patent Matters v1 +category: Proprietary Free +owner: Ecma International +homepage_url: http://www.ecma-international.org/memento/codeofconduct_version1.htm +spdx_license_key: LicenseRef-scancode-ecma-patent-coc-1 +--- + Code of Conduct in Patent Matters Version 1 (approved by the Ecma GA in December 2009) @@ -34,4 +44,4 @@ For patented technology contributed to and incorporated into a Final Draft Ecma 7. If a patent or pending patent application, that is not subject to a license commitment in accordance with boxes 1 or 2 of the Form, is disclosed to the Ecma Secretary General after an Ecma International Standard has been approved, the process of Paragraph 6 shall be followed to determine if the standard shall be continued, withdrawn or modified. -* Ecma International Standards hereafter means Ecma International Standards as well as Ecma Technical Reports. +* Ecma International Standards hereafter means Ecma International Standards as well as Ecma Technical Reports. \ No newline at end of file diff --git a/docs/ecma-patent-coc-1.html b/docs/ecma-patent-coc-1.html index 6ede52f04d..18dc7d5a1c 100644 --- a/docs/ecma-patent-coc-1.html +++ b/docs/ecma-patent-coc-1.html @@ -151,8 +151,7 @@ 7. If a patent or pending patent application, that is not subject to a license commitment in accordance with boxes 1 or 2 of the Form, is disclosed to the Ecma Secretary General after an Ecma International Standard has been approved, the process of Paragraph 6 shall be followed to determine if the standard shall be continued, withdrawn or modified. -* Ecma International Standards hereafter means Ecma International Standards as well as Ecma Technical Reports. - +* Ecma International Standards hereafter means Ecma International Standards as well as Ecma Technical Reports.
@@ -164,7 +163,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ecma-patent-coc-1.json b/docs/ecma-patent-coc-1.json index cf3293f310..3b52f6099a 100644 --- a/docs/ecma-patent-coc-1.json +++ b/docs/ecma-patent-coc-1.json @@ -1 +1,9 @@ -{"key": "ecma-patent-coc-1", "short_name": "Ecma Code of Conduct in Patent Matters v1", "name": "Ecma Code of Conduct in Patent Matters v1", "category": "Proprietary Free", "owner": "Ecma International", "homepage_url": "http://www.ecma-international.org/memento/codeofconduct_version1.htm", "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-1"} \ No newline at end of file +{ + "key": "ecma-patent-coc-1", + "short_name": "Ecma Code of Conduct in Patent Matters v1", + "name": "Ecma Code of Conduct in Patent Matters v1", + "category": "Proprietary Free", + "owner": "Ecma International", + "homepage_url": "http://www.ecma-international.org/memento/codeofconduct_version1.htm", + "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-1" +} \ No newline at end of file diff --git a/docs/ecma-patent-coc-2.LICENSE b/docs/ecma-patent-coc-2.LICENSE index 1130416c7c..60c52f9104 100644 --- a/docs/ecma-patent-coc-2.LICENSE +++ b/docs/ecma-patent-coc-2.LICENSE @@ -1,3 +1,13 @@ +--- +key: ecma-patent-coc-2 +short_name: Ecma Code of Conduct in Patent Matters v2 +name: Ecma Code of Conduct in Patent Matters v2 +category: Proprietary Free +owner: Ecma International +homepage_url: http://www.ecma-international.org/memento/codeofconduct.htm +spdx_license_key: LicenseRef-scancode-ecma-patent-coc-2 +--- + Ecma Code of Conduct in Patent Matters* Version 2 (approved by the Ecma GA in June 2016) diff --git a/docs/ecma-patent-coc-2.html b/docs/ecma-patent-coc-2.html index bc204a8ba5..46936f21c5 100644 --- a/docs/ecma-patent-coc-2.html +++ b/docs/ecma-patent-coc-2.html @@ -167,7 +167,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ecma-patent-coc-2.json b/docs/ecma-patent-coc-2.json index c38861f621..20e7115912 100644 --- a/docs/ecma-patent-coc-2.json +++ b/docs/ecma-patent-coc-2.json @@ -1 +1,9 @@ -{"key": "ecma-patent-coc-2", "short_name": "Ecma Code of Conduct in Patent Matters v2", "name": "Ecma Code of Conduct in Patent Matters v2", "category": "Proprietary Free", "owner": "Ecma International", "homepage_url": "http://www.ecma-international.org/memento/codeofconduct.htm", "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-2"} \ No newline at end of file +{ + "key": "ecma-patent-coc-2", + "short_name": "Ecma Code of Conduct in Patent Matters v2", + "name": "Ecma Code of Conduct in Patent Matters v2", + "category": "Proprietary Free", + "owner": "Ecma International", + "homepage_url": "http://www.ecma-international.org/memento/codeofconduct.htm", + "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-2" +} \ No newline at end of file diff --git a/docs/ecos-exception-2.0.LICENSE b/docs/ecos-exception-2.0.LICENSE index 4af0f1bed3..4e7f5d5c48 100644 --- a/docs/ecos-exception-2.0.LICENSE +++ b/docs/ecos-exception-2.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: ecos-exception-2.0 +short_name: eCos Exception to GPL 2.0 or later +name: eCos Exception to GPL 2.0 or later +category: Copyleft Limited +owner: eCos +homepage_url: http://ecos.sourceware.org/ecos-license/ +notes: | + Per SPDX.org, this is typically used with GPL-2.0. Similar to Macro and + Inlines Functions Exception +is_exception: yes +spdx_license_key: eCos-exception-2.0 +text_urls: + - http://www.fsf.org/licensing/licenses/ecos-license.html + - http://www.gnu.org/licenses/ecos-license.html +faq_url: http://ecos.sourceware.org/license-overview.html +--- + As a special exception, if other files instantiate templates or use macros or inline functions from this file, or you compile this file and link it with other works to produce a work based on this file, this file does not @@ -6,4 +24,4 @@ License. However the source code for this file must still be made available in accordance with section (3) of the GNU General Public License. This exception does not invalidate any other reasons why a work based on -this file might be covered by the GNU General Public License. +this file might be covered by the GNU General Public License. \ No newline at end of file diff --git a/docs/ecos-exception-2.0.html b/docs/ecos-exception-2.0.html index d711029ebf..ebc50c3ccf 100644 --- a/docs/ecos-exception-2.0.html +++ b/docs/ecos-exception-2.0.html @@ -155,8 +155,7 @@ in accordance with section (3) of the GNU General Public License. This exception does not invalidate any other reasons why a work based on -this file might be covered by the GNU General Public License. - +this file might be covered by the GNU General Public License.
@@ -168,7 +167,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ecos-exception-2.0.json b/docs/ecos-exception-2.0.json index de650d6b64..d6d230de37 100644 --- a/docs/ecos-exception-2.0.json +++ b/docs/ecos-exception-2.0.json @@ -1 +1,16 @@ -{"key": "ecos-exception-2.0", "short_name": "eCos Exception to GPL 2.0 or later", "name": "eCos Exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "eCos", "homepage_url": "http://ecos.sourceware.org/ecos-license/", "notes": "Per SPDX.org, this is typically used with GPL-2.0. Similar to Macro and\nInlines Functions Exception\n", "is_exception": true, "spdx_license_key": "eCos-exception-2.0", "text_urls": ["http://www.fsf.org/licensing/licenses/ecos-license.html", "http://www.gnu.org/licenses/ecos-license.html"], "faq_url": "http://ecos.sourceware.org/license-overview.html"} \ No newline at end of file +{ + "key": "ecos-exception-2.0", + "short_name": "eCos Exception to GPL 2.0 or later", + "name": "eCos Exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "eCos", + "homepage_url": "http://ecos.sourceware.org/ecos-license/", + "notes": "Per SPDX.org, this is typically used with GPL-2.0. Similar to Macro and\nInlines Functions Exception\n", + "is_exception": true, + "spdx_license_key": "eCos-exception-2.0", + "text_urls": [ + "http://www.fsf.org/licensing/licenses/ecos-license.html", + "http://www.gnu.org/licenses/ecos-license.html" + ], + "faq_url": "http://ecos.sourceware.org/license-overview.html" +} \ No newline at end of file diff --git a/docs/ecos.LICENSE b/docs/ecos.LICENSE index c5535c1fc8..cc7972370f 100644 --- a/docs/ecos.LICENSE +++ b/docs/ecos.LICENSE @@ -1,3 +1,22 @@ +--- +key: ecos +is_deprecated: yes +short_name: GPL 2.0 or later with eCos Exception +name: GPL 2.0 or later with eCos Exception +category: Copyleft Limited +owner: eCos +homepage_url: http://ecos.sourceware.org/ecos-license/ +notes: | + Per SPDX.org, this is really GPL v2 or later + an exception. + Replaced by ecos-exception-2.0. +is_exception: yes +spdx_license_key: eCos-2.0 +text_urls: + - http://www.fsf.org/licensing/licenses/ecos-license.html + - http://www.gnu.org/licenses/ecos-license.html +faq_url: http://ecos.sourceware.org/license-overview.html +--- + This file is part of eCos, the Embedded Configurable Operating System. eCos is free software; you can redistribute it and/or modify it under diff --git a/docs/ecos.html b/docs/ecos.html index 69c11ed9b4..c30a8f575c 100644 --- a/docs/ecos.html +++ b/docs/ecos.html @@ -189,7 +189,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ecos.json b/docs/ecos.json index ab65fc17cf..f23e1a483d 100644 --- a/docs/ecos.json +++ b/docs/ecos.json @@ -1 +1,17 @@ -{"key": "ecos", "is_deprecated": true, "short_name": "GPL 2.0 or later with eCos Exception", "name": "GPL 2.0 or later with eCos Exception", "category": "Copyleft Limited", "owner": "eCos", "homepage_url": "http://ecos.sourceware.org/ecos-license/", "notes": "Per SPDX.org, this is really GPL v2 or later + an exception.\nReplaced by ecos-exception-2.0.\n", "is_exception": true, "spdx_license_key": "eCos-2.0", "text_urls": ["http://www.fsf.org/licensing/licenses/ecos-license.html", "http://www.gnu.org/licenses/ecos-license.html"], "faq_url": "http://ecos.sourceware.org/license-overview.html"} \ No newline at end of file +{ + "key": "ecos", + "is_deprecated": true, + "short_name": "GPL 2.0 or later with eCos Exception", + "name": "GPL 2.0 or later with eCos Exception", + "category": "Copyleft Limited", + "owner": "eCos", + "homepage_url": "http://ecos.sourceware.org/ecos-license/", + "notes": "Per SPDX.org, this is really GPL v2 or later + an exception.\nReplaced by ecos-exception-2.0.\n", + "is_exception": true, + "spdx_license_key": "eCos-2.0", + "text_urls": [ + "http://www.fsf.org/licensing/licenses/ecos-license.html", + "http://www.gnu.org/licenses/ecos-license.html" + ], + "faq_url": "http://ecos.sourceware.org/license-overview.html" +} \ No newline at end of file diff --git a/docs/ecosrh-1.0.LICENSE b/docs/ecosrh-1.0.LICENSE index 00c5a529f0..52da1d7725 100644 --- a/docs/ecosrh-1.0.LICENSE +++ b/docs/ecosrh-1.0.LICENSE @@ -1,3 +1,29 @@ +--- +key: ecosrh-1.0 +short_name: Cygnus eCos Public License 1.0 +name: Cygnus eCos Public License 1.0 +category: Copyleft +owner: Red Hat +homepage_url: http://web.archive.org/web/19990224105519/http://sourceware.cygnus.com/ecos/license-overview.html +notes: | + this predates the 1.1 version that Red Hat created when they acquired + Cygnus but since the terms are similar we used the same license key as this + is also a rare license. +spdx_license_key: LicenseRef-scancode-ecosrh-1.0 +text_urls: + - http://web.archive.org/web/19990224105519/http://sourceware.cygnus.com/ecos/license-overview.html + - http://sourceware.cygnus.com/ecos/license-overview.html +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 1998 Cygnus Solutions + - Copyright (c) 1998 Cygnus Solutions (http://www.cygnus.com) +ignorable_holders: + - Cygnus Solutions +ignorable_urls: + - http://sourceware.cygnus.com/ecos + - http://www.cygnus.com/ +--- + CYGNUS ECOS PUBLIC LICENSE Version 1.0 diff --git a/docs/ecosrh-1.0.html b/docs/ecosrh-1.0.html index 11dc7a4508..3187c3d868 100644 --- a/docs/ecosrh-1.0.html +++ b/docs/ecosrh-1.0.html @@ -621,7 +621,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ecosrh-1.0.json b/docs/ecosrh-1.0.json index 0317d5d333..4fcb6aae4d 100644 --- a/docs/ecosrh-1.0.json +++ b/docs/ecosrh-1.0.json @@ -1 +1,26 @@ -{"key": "ecosrh-1.0", "short_name": "Cygnus eCos Public License 1.0", "name": "Cygnus eCos Public License 1.0", "category": "Copyleft", "owner": "Red Hat", "homepage_url": "http://web.archive.org/web/19990224105519/http://sourceware.cygnus.com/ecos/license-overview.html", "notes": "this predates the 1.1 version that Red Hat created when they acquired\nCygnus but since the terms are similar we used the same license key as this\nis also a rare license.\n", "spdx_license_key": "LicenseRef-scancode-ecosrh-1.0", "text_urls": ["http://web.archive.org/web/19990224105519/http://sourceware.cygnus.com/ecos/license-overview.html", "http://sourceware.cygnus.com/ecos/license-overview.html"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright (c) 1998 Cygnus Solutions", "Copyright (c) 1998 Cygnus Solutions (http://www.cygnus.com)"], "ignorable_holders": ["Cygnus Solutions"], "ignorable_urls": ["http://sourceware.cygnus.com/ecos", "http://www.cygnus.com/"]} \ No newline at end of file +{ + "key": "ecosrh-1.0", + "short_name": "Cygnus eCos Public License 1.0", + "name": "Cygnus eCos Public License 1.0", + "category": "Copyleft", + "owner": "Red Hat", + "homepage_url": "http://web.archive.org/web/19990224105519/http://sourceware.cygnus.com/ecos/license-overview.html", + "notes": "this predates the 1.1 version that Red Hat created when they acquired\nCygnus but since the terms are similar we used the same license key as this\nis also a rare license.\n", + "spdx_license_key": "LicenseRef-scancode-ecosrh-1.0", + "text_urls": [ + "http://web.archive.org/web/19990224105519/http://sourceware.cygnus.com/ecos/license-overview.html", + "http://sourceware.cygnus.com/ecos/license-overview.html" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright (c) 1998 Cygnus Solutions", + "Copyright (c) 1998 Cygnus Solutions (http://www.cygnus.com)" + ], + "ignorable_holders": [ + "Cygnus Solutions" + ], + "ignorable_urls": [ + "http://sourceware.cygnus.com/ecos", + "http://www.cygnus.com/" + ] +} \ No newline at end of file diff --git a/docs/ecosrh-1.1.LICENSE b/docs/ecosrh-1.1.LICENSE index 0063bf6de6..dfc4fbbd76 100644 --- a/docs/ecosrh-1.1.LICENSE +++ b/docs/ecosrh-1.1.LICENSE @@ -1,3 +1,26 @@ +--- +key: ecosrh-1.1 +short_name: Red Hat eCos Public License 1.1 +name: Red Hat eCos Public License 1.1 +category: Copyleft +owner: Red Hat +homepage_url: http://ecos.sourceware.org/old-license.html +spdx_license_key: RHeCos-1.1 +text_urls: + - http://ecos.sourceware.org/old-license.html +faq_url: http://ecos.sourceware.org/license-overview.html +ignorable_copyrights: + - Copyright (c) 1998, 1999, 2000 Red Hat, Inc. + - Copyright (c) 1998, 1999, 2000 Red Hat, Inc. (http://www.redhat.com/) +ignorable_holders: + - Red Hat, Inc. +ignorable_authors: + - Red Hat +ignorable_urls: + - http://sourceware.cygnus.com/ecos + - http://www.redhat.com/ +--- + Red Hat eCos Public License v1.1 1. DEFINITIONS diff --git a/docs/ecosrh-1.1.html b/docs/ecosrh-1.1.html index 7d4b2d86b9..cf400f74fc 100644 --- a/docs/ecosrh-1.1.html +++ b/docs/ecosrh-1.1.html @@ -617,7 +617,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ecosrh-1.1.json b/docs/ecosrh-1.1.json index d8675bb43b..1141eb6e17 100644 --- a/docs/ecosrh-1.1.json +++ b/docs/ecosrh-1.1.json @@ -1 +1,27 @@ -{"key": "ecosrh-1.1", "short_name": "Red Hat eCos Public License 1.1", "name": "Red Hat eCos Public License 1.1", "category": "Copyleft", "owner": "Red Hat", "homepage_url": "http://ecos.sourceware.org/old-license.html", "spdx_license_key": "RHeCos-1.1", "text_urls": ["http://ecos.sourceware.org/old-license.html"], "faq_url": "http://ecos.sourceware.org/license-overview.html", "ignorable_copyrights": ["Copyright (c) 1998, 1999, 2000 Red Hat, Inc.", "Copyright (c) 1998, 1999, 2000 Red Hat, Inc. (http://www.redhat.com/)"], "ignorable_holders": ["Red Hat, Inc."], "ignorable_authors": ["Red Hat"], "ignorable_urls": ["http://sourceware.cygnus.com/ecos", "http://www.redhat.com/"]} \ No newline at end of file +{ + "key": "ecosrh-1.1", + "short_name": "Red Hat eCos Public License 1.1", + "name": "Red Hat eCos Public License 1.1", + "category": "Copyleft", + "owner": "Red Hat", + "homepage_url": "http://ecos.sourceware.org/old-license.html", + "spdx_license_key": "RHeCos-1.1", + "text_urls": [ + "http://ecos.sourceware.org/old-license.html" + ], + "faq_url": "http://ecos.sourceware.org/license-overview.html", + "ignorable_copyrights": [ + "Copyright (c) 1998, 1999, 2000 Red Hat, Inc.", + "Copyright (c) 1998, 1999, 2000 Red Hat, Inc. (http://www.redhat.com/)" + ], + "ignorable_holders": [ + "Red Hat, Inc." + ], + "ignorable_authors": [ + "Red Hat" + ], + "ignorable_urls": [ + "http://sourceware.cygnus.com/ecos", + "http://www.redhat.com/" + ] +} \ No newline at end of file diff --git a/docs/edrdg-2000.LICENSE b/docs/edrdg-2000.LICENSE new file mode 100644 index 0000000000..1b1dc64aed --- /dev/null +++ b/docs/edrdg-2000.LICENSE @@ -0,0 +1,193 @@ +--- +key: edrdg-2000 +short_name: EDRDG General Dictionary License 2000 +name: EDRDG General Dictionary License 2000 +category: Copyleft Limited +owner: EDRDG +homepage_url: http://www.edrdg.org/edrdg/licence.html +spdx_license_key: LicenseRef-scancode-edrdg-2000 +text_urls: + - https://creativecommons.org/licenses/by-sa/3.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-sa/3.0/ +ignorable_urls: + - http://www.edrdg.org/wiki/index.php/JMdict + - http://www.edrdg.org/wiki/index.php/KANJIDIC_Project +ignorable_emails: + - jimbreen@gmail.com +--- + +[EDRDG] + ****** ELECTRONIC DICTIONARY RESEARCH AND DEVELOPMENT GROUP ****** + ****** GENERAL DICTIONARY LICENCE STATEMENT ****** +EDRDG_Home_Page +1. Introduction +In March 2000, James William Breen assigned ownership of the copyright of the +dictionary files assembled, coordinated and edited by him to the The Electronic +Dictionary Research and Development Group, then at Monash University (hereafter +"the Group"), on the understanding that the Group will foster the development +of the dictionary files, and will utilize all monies received for use of the +files for the further development of the files, and for research into computer +lexicography and electronic dictionaries. +This document outlines the licence arrangement put in place by The Group for +usage of the files. It replaces all previous copyright and licence statements +applying to the files. + +2. Application +This licence statement and copyright notice applies to the following dictionary +files, the associated documentation files, and any data files which are derived +from them. + * JMDICT - Japanese-Multilingual Dictionary File - the Japanese and English + components (the translational equivalents in other languages, e.g. + German, French, Dutch, etc. are covered by separate copyright held by the + compilers of that material.) + * EDICT - Japanese-English Electronic DICTionary File + * ENAMDICT - Japanese Names File + * COMPDIC - Japanese-English Computing and Telecommunications Terminology + File + * KANJIDIC2 - File of Information about the Kanji in JIS X 0208, JIS X 0212 + and JIS X 0213 in XML format. + * KANJIDIC - File of Information about the 6,355 Kanji in the JIS X 0208 + Standard (special conditions apply) + * KANJD212 - File of Information about the 5,801 Supplementary Kanji in the + JIS X 0212 Standard + * EDICT-R - romanized version of the EDICT file. (NB: this file has been + withdrawn from circulation, and all sites carrying it are requested to + remove their copies.) + * RADKFILE/KRADFILE - files relating to the decomposition of the 6,355 + kanji in JIS X 0208 into their visible components. +Copyright over the documents covered by this statement is held by James William +BREEN and The Electronic Dictionary Research and Development Group. + +3. Licence Conditions +[http://creativecommons.org/images/public/somerights20.gif] +The dictionary files are made available under a Creative Commons Attribution- +ShareAlike Licence (V3.0). The Licence Deed can be viewed here, and the full +Licence Code is here. +In summary (extract from the Licence Deed): + _____________________________________________________________________________ +|You are free: | +| * to Share - to copy, distribute and transmit the work | +| * to Remix - to adapt the work | +|Under the following conditions: | +| * Attribution. You must attribute the work in the manner specified by the| +| author or licensor (but not in any way that suggests that they endorse | +| you or your use of the work). | +| * Share Alike. If you alter, transform, or build upon this work, you may | +| distribute the resulting work only under the same, similar or a | +| compatible_licence. | +|_____________________________________________________________________________| + +For attribution of these files, you must: + a. in the case of publishing significant extracts of the files, or material + based on significant extracts of the files, e.g. in a published + dictionary or in vocabulary lists, clearly acknowledge that you used the + files for this purpose; + + b. in the case of a software package, WWW server, smartphone app, etc. which + uses the files or incorporates data from the files, you must: + i. acknowledge the usage and source of the files in the documentation, + publicity material, WWW site of the package/server, etc.; + ii. provide copies of the documentation and licence files (in the case + of software packages). Where the application packaging does not + provide for the inclusion of such files (e.g. with iPhone + applications), it is sufficient to provide links, as per the next + point; + iii. provide links to either local copies of the documentation and + licence files or to the locations of the files at Monash University + or at the EDRDG site. + If a WWW server is providing a dictionary function or an on-screen + display of words from the files, the acknowledgement must be made + on each screen display, e.g. in the form of a message at the foot + of the screen or page. If, however, material from the files is + mixed with information from other sources, it is sufficient to + provide a general acknowledgement of the sources as described + above. + For smartphone and tablet apps, acknowledgement must be made, e.g. + on a separate screen accessed from a menu, such as one labelled + "About", "Sources", etc. It is not sufficient just to mention it on + a start-up/launch page of the app. + For the EDICT, JMdict and KANJIDIC files, the following URLs may be + used or quoted: + # http://www.edrdg.org/wiki/index.php/JMdict- + EDICT_Dictionary_Project + # http://www.edrdg.org/wiki/index.php/KANJIDIC_Project +See this_page for samples of possible acknowledgement text. +Note that in all cases, the addition of material to the files or to extracts +from the files does not remove or in any way diminish the Group's copyright +over the files. Users of material from the files must NOT claim copyright over +that material. +Note also that provided the conditions above are met, there is NO restriction +placed on commercial use of the files. The files can be bundled with software +and sold for whatever the developer wants to charge. Software using these files +does not have to be under any form of open-source licence. +Where use of the files results in a financial return to the user, it is +suggested that the user make a donation to the Group to assist with the +continued development of the files. The only method currently available is to +make a donation via PayPal using a credit or debit card. Simply click on the +following button and follow the instructions. + [Submit https://www.paypal.com/en_US/i/btn/x-click-but21.gif] +NB: No contract or agreement needs to be signed in order to use the files. By +using the files, the user implicitly undertakes to abide by the conditions of +this licence. + +4. Updating Dictionary Versions +If a software package, WWW server, smartphone app, etc. uses the files or +incorporates data from the files, there must be a procedure for regular +updating of the data from the most recent versions available. For example, WWW- +based dictionary servers should update their dictionary versions at least once +a month. Failure to keep the versions up-to-date is a violation of the licence +to use the data. + +5. Warranty and Liability +While every effort has been made to ensure the accuracy of the information in +the files, it is possible that errors may still be included. The files are made +available without any warranty whatsoever as to their accuracy or suitability +for a particular application. +Any individual or organization making use of the files must agree: + a. to assume all liability for the use or misuse of the files, and must + agree not to hold the Group liable for any actions or events resulting + from use of the files. + b. to refrain from bringing action or suit or claim against the Group or any + of the Group's members on the basis of the use of the files, or any + information included in the files. + c. to indemnify the Group or its members in the case of action by a third + party on the basis of the use of the files, or any information included + in the files. + +6. Copyright +Every effort has been made in the compilation of these files to ensure that the +copyright of other compilers of dictionaries and lexicographic material has not +been infringed. The Group asserts its intention to rectify immediately any +breach of copyright brought to its attention. +Any individual or organization in possession of copies of the files, upon +becoming aware that a possible copyright infringement may be present in the +files, must undertake to contact the Group immediately with details of the +possible infringement. + +7. Prior Permission +All permissions for use of the files granted by James William Breen prior to +March 2000 will be honoured and maintained, however the placing of the KANJD212 +and EDICTH files under the GNU GPL has been withdrawn as of 25 March 2000. + +8. Special Conditions for the KANJIDIC, KANJD212 and KANJIDIC2 Files +In addition to licensing arrangements described above, the following additional +conditions apply to the KANJIDIC, KANJD212 and KANJIDIC2 files. +The following people have granted permission for material for which they hold +copyright to be included in the files, and distributed under the above +conditions, while retaining their copyright over that material: +Jack HALPERN: The SKIP codes. +Note that the SKIP codes are under their own similar Creative Common licence. +See Jack Halpern's conditions_of_use page. +Christian WITTERN and Koichi YASUOKA: The Pinyin information. +Urs APP: the Four Corner codes and the Morohashi information. +Mark SPAHN and Wolfgang HADAMITZKY: the kanji descriptors from their +dictionary. +Charles MULLER: the Korean readings. +Joseph DE ROO: the De Roo codes. + +9. Enquiries +All enquiries to: +The Electronic Dictionary Research and Development Group +Attn: Dr Jim Breen +(jimbreen@gmail.com) \ No newline at end of file diff --git a/docs/edrdg-2000.html b/docs/edrdg-2000.html new file mode 100644 index 0000000000..b2dc23e700 --- /dev/null +++ b/docs/edrdg-2000.html @@ -0,0 +1,359 @@ + + + + + + LicenseDB: edrdg-2000 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + edrdg-2000 + +
+ +
short_name
+
+ + EDRDG General Dictionary License 2000 + +
+ +
name
+
+ + EDRDG General Dictionary License 2000 + +
+ +
category
+
+ + Copyleft Limited + +
+ +
owner
+
+ + EDRDG + +
+ +
homepage_url
+
+ + http://www.edrdg.org/edrdg/licence.html + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-edrdg-2000 + +
+ +
text_urls
+
+ + + +
+ +
other_urls
+
+ + + +
+ +
ignorable_urls
+
+ + + +
+ +
ignorable_emails
+
+ + + +
+ +
+
license_text
+
[EDRDG]
+      ****** ELECTRONIC DICTIONARY RESEARCH AND DEVELOPMENT GROUP ******
+              ****** GENERAL DICTIONARY LICENCE STATEMENT ******
+EDRDG_Home_Page
+1. Introduction
+In March 2000, James William Breen assigned ownership of the copyright of the
+dictionary files assembled, coordinated and edited by him to the The Electronic
+Dictionary Research and Development Group, then at Monash University (hereafter
+"the Group"), on the understanding that the Group will foster the development
+of the dictionary files, and will utilize all monies received for use of the
+files for the further development of the files, and for research into computer
+lexicography and electronic dictionaries.
+This document outlines the licence arrangement put in place by The Group for
+usage of the files. It replaces all previous copyright and licence statements
+applying to the files.
+
+2. Application
+This licence statement and copyright notice applies to the following dictionary
+files, the associated documentation files, and any data files which are derived
+from them.
+    * JMDICT - Japanese-Multilingual Dictionary File - the Japanese and English
+      components (the translational equivalents in other languages, e.g.
+      German, French, Dutch, etc. are covered by separate copyright held by the
+      compilers of that material.)
+    * EDICT - Japanese-English Electronic DICTionary File
+    * ENAMDICT - Japanese Names File
+    * COMPDIC - Japanese-English Computing and Telecommunications Terminology
+      File
+    * KANJIDIC2 - File of Information about the Kanji in JIS X 0208, JIS X 0212
+      and JIS X 0213 in XML format.
+    * KANJIDIC - File of Information about the 6,355 Kanji in the JIS X 0208
+      Standard (special conditions apply)
+    * KANJD212 - File of Information about the 5,801 Supplementary Kanji in the
+      JIS X 0212 Standard
+    * EDICT-R - romanized version of the EDICT file. (NB: this file has been
+      withdrawn from circulation, and all sites carrying it are requested to
+      remove their copies.)
+    * RADKFILE/KRADFILE - files relating to the decomposition of the 6,355
+      kanji in JIS X 0208 into their visible components.
+Copyright over the documents covered by this statement is held by James William
+BREEN and The Electronic Dictionary Research and Development Group.
+
+3. Licence Conditions
+[http://creativecommons.org/images/public/somerights20.gif]
+The dictionary files are made available under a Creative Commons Attribution-
+ShareAlike Licence (V3.0). The Licence Deed can be viewed here, and the full
+Licence Code is here.
+In summary (extract from the Licence Deed):
+ _____________________________________________________________________________
+|You are free:                                                                |
+|    * to Share - to copy, distribute and transmit the work                   |
+|    * to Remix - to adapt the work                                           |
+|Under the following conditions:                                              |
+|    * Attribution. You must attribute the work in the manner specified by the|
+|      author or licensor (but not in any way that suggests that they endorse |
+|      you or your use of the work).                                          |
+|    * Share Alike. If you alter, transform, or build upon this work, you may |
+|      distribute the resulting work only under the same, similar or a        |
+|      compatible_licence.                                                    |
+|_____________________________________________________________________________|
+
+For attribution of these files, you must:
+   a. in the case of publishing significant extracts of the files, or material
+      based on significant extracts of the files, e.g. in a published
+      dictionary or in vocabulary lists, clearly acknowledge that you used the
+      files for this purpose;
+
+   b. in the case of a software package, WWW server, smartphone app, etc. which
+      uses the files or incorporates data from the files, you must:
+         i. acknowledge the usage and source of the files in the documentation,
+            publicity material, WWW site of the package/server, etc.;
+        ii. provide copies of the documentation and licence files (in the case
+            of software packages). Where the application packaging does not
+            provide for the inclusion of such files (e.g. with iPhone
+            applications), it is sufficient to provide links, as per the next
+            point;
+       iii. provide links to either local copies of the documentation and
+            licence files or to the locations of the files at Monash University
+            or at the EDRDG site.
+            If a WWW server is providing a dictionary function or an on-screen
+            display of words from the files, the acknowledgement must be made
+            on each screen display, e.g. in the form of a message at the foot
+            of the screen or page. If, however, material from the files is
+            mixed with information from other sources, it is sufficient to
+            provide a general acknowledgement of the sources as described
+            above.
+            For smartphone and tablet apps, acknowledgement must be made, e.g.
+            on a separate screen accessed from a menu, such as one labelled
+            "About", "Sources", etc. It is not sufficient just to mention it on
+            a start-up/launch page of the app.
+            For the EDICT, JMdict and KANJIDIC files, the following URLs may be
+            used or quoted:
+                # http://www.edrdg.org/wiki/index.php/JMdict-
+                  EDICT_Dictionary_Project
+                # http://www.edrdg.org/wiki/index.php/KANJIDIC_Project
+See this_page for samples of possible acknowledgement text.
+Note that in all cases, the addition of material to the files or to extracts
+from the files does not remove or in any way diminish the Group's copyright
+over the files. Users of material from the files must NOT claim copyright over
+that material.
+Note also that provided the conditions above are met, there is NO restriction
+placed on commercial use of the files. The files can be bundled with software
+and sold for whatever the developer wants to charge. Software using these files
+does not have to be under any form of open-source licence.
+Where use of the files results in a financial return to the user, it is
+suggested that the user make a donation to the Group to assist with the
+continued development of the files. The only method currently available is to
+make a donation via PayPal using a credit or debit card. Simply click on the
+following button and follow the instructions.
+         [Submit https://www.paypal.com/en_US/i/btn/x-click-but21.gif]
+NB: No contract or agreement needs to be signed in order to use the files. By
+using the files, the user implicitly undertakes to abide by the conditions of
+this licence.
+
+4. Updating Dictionary Versions
+If a software package, WWW server, smartphone app, etc. uses the files or
+incorporates data from the files, there must be a procedure for regular
+updating of the data from the most recent versions available. For example, WWW-
+based dictionary servers should update their dictionary versions at least once
+a month. Failure to keep the versions up-to-date is a violation of the licence
+to use the data.
+
+5. Warranty and Liability
+While every effort has been made to ensure the accuracy of the information in
+the files, it is possible that errors may still be included. The files are made
+available without any warranty whatsoever as to their accuracy or suitability
+for a particular application.
+Any individual or organization making use of the files must agree:
+   a. to assume all liability for the use or misuse of the files, and must
+      agree not to hold the Group liable for any actions or events resulting
+      from use of the files.
+   b. to refrain from bringing action or suit or claim against the Group or any
+      of the Group's members on the basis of the use of the files, or any
+      information included in the files.
+   c. to indemnify the Group or its members in the case of action by a third
+      party on the basis of the use of the files, or any information included
+      in the files.
+
+6. Copyright
+Every effort has been made in the compilation of these files to ensure that the
+copyright of other compilers of dictionaries and lexicographic material has not
+been infringed. The Group asserts its intention to rectify immediately any
+breach of copyright brought to its attention.
+Any individual or organization in possession of copies of the files, upon
+becoming aware that a possible copyright infringement may be present in the
+files, must undertake to contact the Group immediately with details of the
+possible infringement.
+
+7. Prior Permission
+All permissions for use of the files granted by James William Breen prior to
+March 2000 will be honoured and maintained, however the placing of the KANJD212
+and EDICTH files under the GNU GPL has been withdrawn as of 25 March 2000.
+
+8. Special Conditions for the KANJIDIC, KANJD212 and KANJIDIC2 Files
+In addition to licensing arrangements described above, the following additional
+conditions apply to the KANJIDIC, KANJD212 and KANJIDIC2 files.
+The following people have granted permission for material for which they hold
+copyright to be included in the files, and distributed under the above
+conditions, while retaining their copyright over that material:
+Jack HALPERN: The SKIP codes.
+Note that the SKIP codes are under their own similar Creative Common licence.
+See Jack Halpern's conditions_of_use page.
+Christian WITTERN and Koichi YASUOKA: The Pinyin information.
+Urs APP: the Four Corner codes and the Morohashi information.
+Mark SPAHN and Wolfgang HADAMITZKY: the kanji descriptors from their
+dictionary.
+Charles MULLER: the Korean readings.
+Joseph DE ROO: the De Roo codes.
+
+9. Enquiries
+All enquiries to:
+The Electronic Dictionary Research and Development Group
+Attn: Dr Jim Breen
+(jimbreen@gmail.com)
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/edrdg-2000.json b/docs/edrdg-2000.json new file mode 100644 index 0000000000..4f30a4de81 --- /dev/null +++ b/docs/edrdg-2000.json @@ -0,0 +1,22 @@ +{ + "key": "edrdg-2000", + "short_name": "EDRDG General Dictionary License 2000", + "name": "EDRDG General Dictionary License 2000", + "category": "Copyleft Limited", + "owner": "EDRDG", + "homepage_url": "http://www.edrdg.org/edrdg/licence.html", + "spdx_license_key": "LicenseRef-scancode-edrdg-2000", + "text_urls": [ + "https://creativecommons.org/licenses/by-sa/3.0/legalcode" + ], + "other_urls": [ + "https://creativecommons.org/licenses/by-sa/3.0/" + ], + "ignorable_urls": [ + "http://www.edrdg.org/wiki/index.php/JMdict", + "http://www.edrdg.org/wiki/index.php/KANJIDIC_Project" + ], + "ignorable_emails": [ + "jimbreen@gmail.com" + ] +} \ No newline at end of file diff --git a/docs/edrdg-2000.yml b/docs/edrdg-2000.yml new file mode 100644 index 0000000000..93f1dcd58d --- /dev/null +++ b/docs/edrdg-2000.yml @@ -0,0 +1,16 @@ +key: edrdg-2000 +short_name: EDRDG General Dictionary License 2000 +name: EDRDG General Dictionary License 2000 +category: Copyleft Limited +owner: EDRDG +homepage_url: http://www.edrdg.org/edrdg/licence.html +spdx_license_key: LicenseRef-scancode-edrdg-2000 +text_urls: + - https://creativecommons.org/licenses/by-sa/3.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-sa/3.0/ +ignorable_urls: + - http://www.edrdg.org/wiki/index.php/JMdict + - http://www.edrdg.org/wiki/index.php/KANJIDIC_Project +ignorable_emails: + - jimbreen@gmail.com diff --git a/docs/efl-1.0.LICENSE b/docs/efl-1.0.LICENSE index 17f86eca92..9078730138 100644 --- a/docs/efl-1.0.LICENSE +++ b/docs/efl-1.0.LICENSE @@ -1,3 +1,24 @@ +--- +key: efl-1.0 +short_name: EFL 1.0 +name: Eiffel Forum License 1.0 +category: Permissive +owner: Eiffel NICE +homepage_url: http://www.eiffel-nice.org/license/ +notes: | + Per SPDX.org, this license was OSI certified. This license has been + superseded by v2.0 +spdx_license_key: EFL-1.0 +osi_license_key: EFL-1.0 +text_urls: + - http://www.eiffel-nice.org/license/forum.txt + - https://fedoraproject.org/wiki/Licensing/Eiffel_Forum_License_V1 +osi_url: http://www.opensource.org/licenses/ver1_eiffel.php +other_urls: + - http://opensource.org/licenses/EFL-1.0 + - https://opensource.org/licenses/EFL-1.0 +--- + Eiffel Forum License, version 1 Permission is hereby granted to use, copy, modify and/or distribute diff --git a/docs/efl-1.0.html b/docs/efl-1.0.html index 0adf7606e3..2b62c0d63e 100644 --- a/docs/efl-1.0.html +++ b/docs/efl-1.0.html @@ -190,7 +190,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/efl-1.0.json b/docs/efl-1.0.json index 4d00c8577e..9ef75a1b24 100644 --- a/docs/efl-1.0.json +++ b/docs/efl-1.0.json @@ -1 +1,20 @@ -{"key": "efl-1.0", "short_name": "EFL 1.0", "name": "Eiffel Forum License 1.0", "category": "Permissive", "owner": "Eiffel NICE", "homepage_url": "http://www.eiffel-nice.org/license/", "notes": "Per SPDX.org, this license was OSI certified. This license has been\nsuperseded by v2.0\n", "spdx_license_key": "EFL-1.0", "osi_license_key": "EFL-1.0", "text_urls": ["http://www.eiffel-nice.org/license/forum.txt", "https://fedoraproject.org/wiki/Licensing/Eiffel_Forum_License_V1"], "osi_url": "http://www.opensource.org/licenses/ver1_eiffel.php", "other_urls": ["http://opensource.org/licenses/EFL-1.0", "https://opensource.org/licenses/EFL-1.0"]} \ No newline at end of file +{ + "key": "efl-1.0", + "short_name": "EFL 1.0", + "name": "Eiffel Forum License 1.0", + "category": "Permissive", + "owner": "Eiffel NICE", + "homepage_url": "http://www.eiffel-nice.org/license/", + "notes": "Per SPDX.org, this license was OSI certified. This license has been\nsuperseded by v2.0\n", + "spdx_license_key": "EFL-1.0", + "osi_license_key": "EFL-1.0", + "text_urls": [ + "http://www.eiffel-nice.org/license/forum.txt", + "https://fedoraproject.org/wiki/Licensing/Eiffel_Forum_License_V1" + ], + "osi_url": "http://www.opensource.org/licenses/ver1_eiffel.php", + "other_urls": [ + "http://opensource.org/licenses/EFL-1.0", + "https://opensource.org/licenses/EFL-1.0" + ] +} \ No newline at end of file diff --git a/docs/efl-2.0.LICENSE b/docs/efl-2.0.LICENSE index a0b5be448d..3a96918bbf 100644 --- a/docs/efl-2.0.LICENSE +++ b/docs/efl-2.0.LICENSE @@ -1,3 +1,26 @@ +--- +key: efl-2.0 +short_name: EFL 2.0 +name: Eiffel Forum License 2.0 +category: Permissive +owner: Eiffel NICE +homepage_url: http://www.eiffel-nice.org/license/ +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: EFL-2.0 +osi_license_key: EFL-2.0 +text_urls: + - http://www.eiffel-nice.org/license/eiffel-forum-license-2.txt + - http://www.opensource-definition.org/licenses/ver2_eiffel.html +osi_url: http://www.opensource.org/licenses/ver2_eiffel.php +faq_url: http://inamidst.com/stuff/eiffel/ +other_urls: + - http://amalasoft.com/downloads/ael/ds/LICENSE.txt + - http://en.wikipedia.org/wiki/Eiffel_Forum_License + - http://opensource.org/licenses/EFL-2.0 + - http://www.eiffel-nice.org/license/eiffel-forum-license-2.html + - https://opensource.org/licenses/EFL-2.0 +--- + Eiffel Forum License, version 2 1. Permission is hereby granted to use, copy, modify and/or diff --git a/docs/efl-2.0.html b/docs/efl-2.0.html index 3b6faeff85..82bf06d51b 100644 --- a/docs/efl-2.0.html +++ b/docs/efl-2.0.html @@ -194,7 +194,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/efl-2.0.json b/docs/efl-2.0.json index 7c78434543..86ccd622be 100644 --- a/docs/efl-2.0.json +++ b/docs/efl-2.0.json @@ -1 +1,24 @@ -{"key": "efl-2.0", "short_name": "EFL 2.0", "name": "Eiffel Forum License 2.0", "category": "Permissive", "owner": "Eiffel NICE", "homepage_url": "http://www.eiffel-nice.org/license/", "notes": "Per SPDX.org, this license is OSI certified", "spdx_license_key": "EFL-2.0", "osi_license_key": "EFL-2.0", "text_urls": ["http://www.eiffel-nice.org/license/eiffel-forum-license-2.txt", "http://www.opensource-definition.org/licenses/ver2_eiffel.html"], "osi_url": "http://www.opensource.org/licenses/ver2_eiffel.php", "faq_url": "http://inamidst.com/stuff/eiffel/", "other_urls": ["http://amalasoft.com/downloads/ael/ds/LICENSE.txt", "http://en.wikipedia.org/wiki/Eiffel_Forum_License", "http://opensource.org/licenses/EFL-2.0", "http://www.eiffel-nice.org/license/eiffel-forum-license-2.html", "https://opensource.org/licenses/EFL-2.0"]} \ No newline at end of file +{ + "key": "efl-2.0", + "short_name": "EFL 2.0", + "name": "Eiffel Forum License 2.0", + "category": "Permissive", + "owner": "Eiffel NICE", + "homepage_url": "http://www.eiffel-nice.org/license/", + "notes": "Per SPDX.org, this license is OSI certified", + "spdx_license_key": "EFL-2.0", + "osi_license_key": "EFL-2.0", + "text_urls": [ + "http://www.eiffel-nice.org/license/eiffel-forum-license-2.txt", + "http://www.opensource-definition.org/licenses/ver2_eiffel.html" + ], + "osi_url": "http://www.opensource.org/licenses/ver2_eiffel.php", + "faq_url": "http://inamidst.com/stuff/eiffel/", + "other_urls": [ + "http://amalasoft.com/downloads/ael/ds/LICENSE.txt", + "http://en.wikipedia.org/wiki/Eiffel_Forum_License", + "http://opensource.org/licenses/EFL-2.0", + "http://www.eiffel-nice.org/license/eiffel-forum-license-2.html", + "https://opensource.org/licenses/EFL-2.0" + ] +} \ No newline at end of file diff --git a/docs/efsl-1.0.LICENSE b/docs/efsl-1.0.LICENSE index d9879eb8e2..e1fcfb001f 100644 --- a/docs/efsl-1.0.LICENSE +++ b/docs/efsl-1.0.LICENSE @@ -1,3 +1,27 @@ +--- +key: efsl-1.0 +short_name: EFSL 1.0 +name: Eclipse Foundation Specification License - v1.0 +category: Proprietary Free +owner: Eclipse Foundation +homepage_url: https://www.eclipse.org/legal/efsl.php +spdx_license_key: LicenseRef-scancode-efsl-1.0 +text_urls: + - https://www.eclipse.org/legal/efsl.php +faq_url: http://www.eclipse.org/legal/eplfaq.php +other_urls: + - https://www.eclipse.org/legal/epl-2.0 + - https://www.opensource.org/licenses/EPL-2.0 +ignorable_copyrights: + - COPYRIGHT HOLDERS AND THE ECLIPSE FOUNDATION + - Copyright (c) Eclipse Foundation + - Copyright (c) Eclipse Foundation, Inc. +ignorable_holders: + - Eclipse Foundation + - Eclipse Foundation, Inc. + - THE ECLIPSE FOUNDATION +--- + Eclipse Foundation Specification License - v1.0 By using and/or copying this document, or the Eclipse Foundation document from @@ -49,4 +73,4 @@ DOCUMENT OR THE PERFORMANCE OR IMPLEMENTATION OF THE CONTENTS THEREOF. The name and trademarks of the copyright holders or the Eclipse Foundation may NOT be used in advertising or publicity pertaining to this document or its contents without specific, written prior permission. Title to copyright in this -document will at all times remain with copyright holders. +document will at all times remain with copyright holders. \ No newline at end of file diff --git a/docs/efsl-1.0.html b/docs/efsl-1.0.html index e4bb7d6015..a9e1f9f074 100644 --- a/docs/efsl-1.0.html +++ b/docs/efsl-1.0.html @@ -209,8 +209,7 @@ The name and trademarks of the copyright holders or the Eclipse Foundation may NOT be used in advertising or publicity pertaining to this document or its contents without specific, written prior permission. Title to copyright in this -document will at all times remain with copyright holders. - +document will at all times remain with copyright holders.
@@ -222,7 +221,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/efsl-1.0.json b/docs/efsl-1.0.json index 5746222a45..7158ab0b05 100644 --- a/docs/efsl-1.0.json +++ b/docs/efsl-1.0.json @@ -1 +1,27 @@ -{"key": "efsl-1.0", "short_name": "EFSL 1.0", "name": "Eclipse Foundation Specification License - v1.0", "category": "Proprietary Free", "owner": "Eclipse Foundation", "homepage_url": "https://www.eclipse.org/legal/efsl.php", "spdx_license_key": "LicenseRef-scancode-efsl-1.0", "text_urls": ["https://www.eclipse.org/legal/efsl.php"], "faq_url": "http://www.eclipse.org/legal/eplfaq.php", "other_urls": ["https://www.eclipse.org/legal/epl-2.0", "https://www.opensource.org/licenses/EPL-2.0"], "ignorable_copyrights": ["COPYRIGHT HOLDERS AND THE ECLIPSE FOUNDATION", "Copyright (c) Eclipse Foundation", "Copyright (c) Eclipse Foundation, Inc."], "ignorable_holders": ["Eclipse Foundation", "Eclipse Foundation, Inc.", "THE ECLIPSE FOUNDATION"]} \ No newline at end of file +{ + "key": "efsl-1.0", + "short_name": "EFSL 1.0", + "name": "Eclipse Foundation Specification License - v1.0", + "category": "Proprietary Free", + "owner": "Eclipse Foundation", + "homepage_url": "https://www.eclipse.org/legal/efsl.php", + "spdx_license_key": "LicenseRef-scancode-efsl-1.0", + "text_urls": [ + "https://www.eclipse.org/legal/efsl.php" + ], + "faq_url": "http://www.eclipse.org/legal/eplfaq.php", + "other_urls": [ + "https://www.eclipse.org/legal/epl-2.0", + "https://www.opensource.org/licenses/EPL-2.0" + ], + "ignorable_copyrights": [ + "COPYRIGHT HOLDERS AND THE ECLIPSE FOUNDATION", + "Copyright (c) Eclipse Foundation", + "Copyright (c) Eclipse Foundation, Inc." + ], + "ignorable_holders": [ + "Eclipse Foundation", + "Eclipse Foundation, Inc.", + "THE ECLIPSE FOUNDATION" + ] +} \ No newline at end of file diff --git a/docs/egenix-1.0.0.LICENSE b/docs/egenix-1.0.0.LICENSE index ab0dc9fda8..3fa52c0d14 100644 --- a/docs/egenix-1.0.0.LICENSE +++ b/docs/egenix-1.0.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: egenix-1.0.0 +short_name: eGenix Public License 1.0.0 +name: eGenix Public License 1.0.0 +category: Permissive +owner: eGenix +homepage_url: https://www.egenix.com/www2002/python/eGenix-mx-Extensions-v2.x.html/mxLicense.html#Public +notes: this is a rare one but we already track the v 1.1.0 +spdx_license_key: LicenseRef-scancode-egenix-1.0.0 +--- + EGENIX.COM PUBLIC LICENSE AGREEMENT VERSION 1.0.0 1. Introduction @@ -38,4 +49,4 @@ The controlling language of this License Agreement is English. If Licensee has r 7. Agreement -By downloading, copying, installing or otherwise using the Software, Licensee agrees to be bound by the terms and conditions of this License Agreement. \ No newline at end of file +By downloading, copying, installing or otherwise using the Software, Licensee agrees to be bound by the terms and conditions of this License Agreement. \ No newline at end of file diff --git a/docs/egenix-1.0.0.html b/docs/egenix-1.0.0.html index db542087b0..b2770656d8 100644 --- a/docs/egenix-1.0.0.html +++ b/docs/egenix-1.0.0.html @@ -162,7 +162,7 @@ 7. Agreement -By downloading, copying, installing or otherwise using the Software, Licensee agrees to be bound by the terms and conditions of this License Agreement. +By downloading, copying, installing or otherwise using the Software, Licensee agrees to be bound by the terms and conditions of this License Agreement.
@@ -174,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/egenix-1.0.0.json b/docs/egenix-1.0.0.json index d139e88183..8f9fcd5893 100644 --- a/docs/egenix-1.0.0.json +++ b/docs/egenix-1.0.0.json @@ -1 +1,10 @@ -{"key": "egenix-1.0.0", "short_name": "eGenix Public License 1.0.0", "name": "eGenix Public License 1.0.0", "category": "Permissive", "owner": "eGenix", "homepage_url": "https://www.egenix.com/www2002/python/eGenix-mx-Extensions-v2.x.html/mxLicense.html#Public", "notes": "this is a rare one but we already track the v 1.1.0", "spdx_license_key": "LicenseRef-scancode-egenix-1.0.0"} \ No newline at end of file +{ + "key": "egenix-1.0.0", + "short_name": "eGenix Public License 1.0.0", + "name": "eGenix Public License 1.0.0", + "category": "Permissive", + "owner": "eGenix", + "homepage_url": "https://www.egenix.com/www2002/python/eGenix-mx-Extensions-v2.x.html/mxLicense.html#Public", + "notes": "this is a rare one but we already track the v 1.1.0", + "spdx_license_key": "LicenseRef-scancode-egenix-1.0.0" +} \ No newline at end of file diff --git a/docs/egenix-1.1.0.LICENSE b/docs/egenix-1.1.0.LICENSE index 1593259989..19e780bdae 100644 --- a/docs/egenix-1.1.0.LICENSE +++ b/docs/egenix-1.1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: egenix-1.1.0 +short_name: eGenix Public License 1.1.0 +name: eGenix Public License 1.1.0 +category: Permissive +owner: eGenix +homepage_url: http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf +spdx_license_key: eGenix +text_urls: + - https://fedoraproject.org/wiki/Licensing/eGenix.com_Public_License_1.1.0 +--- + EGENIX.COM PUBLIC LICENSE AGREEMENT Version 1.1.0 diff --git a/docs/egenix-1.1.0.html b/docs/egenix-1.1.0.html index 9389e97e94..d5df426fec 100644 --- a/docs/egenix-1.1.0.html +++ b/docs/egenix-1.1.0.html @@ -175,7 +175,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/egenix-1.1.0.json b/docs/egenix-1.1.0.json index 5d84363559..2c9fe967b4 100644 --- a/docs/egenix-1.1.0.json +++ b/docs/egenix-1.1.0.json @@ -1 +1,12 @@ -{"key": "egenix-1.1.0", "short_name": "eGenix Public License 1.1.0", "name": "eGenix Public License 1.1.0", "category": "Permissive", "owner": "eGenix", "homepage_url": "http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf", "spdx_license_key": "eGenix", "text_urls": ["https://fedoraproject.org/wiki/Licensing/eGenix.com_Public_License_1.1.0"]} \ No newline at end of file +{ + "key": "egenix-1.1.0", + "short_name": "eGenix Public License 1.1.0", + "name": "eGenix Public License 1.1.0", + "category": "Permissive", + "owner": "eGenix", + "homepage_url": "http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf", + "spdx_license_key": "eGenix", + "text_urls": [ + "https://fedoraproject.org/wiki/Licensing/eGenix.com_Public_License_1.1.0" + ] +} \ No newline at end of file diff --git a/docs/egrappler.LICENSE b/docs/egrappler.LICENSE index 95bf16e962..3158415a33 100644 --- a/docs/egrappler.LICENSE +++ b/docs/egrappler.LICENSE @@ -1,3 +1,13 @@ +--- +key: egrappler +short_name: eGrappler License +name: eGrappler License +category: Commercial +owner: eGrappler +homepage_url: https://www.egrappler.com/license +spdx_license_key: LicenseRef-scancode-egrappler +--- + All files at egrappler.com are free for personal and commercial use. However, you cannot redistribute, sale, re-upload these files. Do not offer download links at your site without written consent of the author. diff --git a/docs/egrappler.html b/docs/egrappler.html index 792fd6362b..8b0ccfbfcf 100644 --- a/docs/egrappler.html +++ b/docs/egrappler.html @@ -132,7 +132,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/egrappler.json b/docs/egrappler.json index fd0ccd97e6..618aab1047 100644 --- a/docs/egrappler.json +++ b/docs/egrappler.json @@ -1 +1,9 @@ -{"key": "egrappler", "short_name": "eGrappler License", "name": "eGrappler License", "category": "Commercial", "owner": "eGrappler", "homepage_url": "https://www.egrappler.com/license", "spdx_license_key": "LicenseRef-scancode-egrappler"} \ No newline at end of file +{ + "key": "egrappler", + "short_name": "eGrappler License", + "name": "eGrappler License", + "category": "Commercial", + "owner": "eGrappler", + "homepage_url": "https://www.egrappler.com/license", + "spdx_license_key": "LicenseRef-scancode-egrappler" +} \ No newline at end of file diff --git a/docs/ej-technologies-eula.LICENSE b/docs/ej-technologies-eula.LICENSE index 8ee51b3099..15e4676e19 100644 --- a/docs/ej-technologies-eula.LICENSE +++ b/docs/ej-technologies-eula.LICENSE @@ -1,3 +1,20 @@ +--- +key: ej-technologies-eula +short_name: ej-technologies EULA +name: ej-technologies EULA +category: Commercial +owner: ej-technologies +homepage_url: http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html +spdx_license_key: LicenseRef-scancode-ej-technologies-eula +text_urls: + - http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html +ignorable_urls: + - http://www.ej-technologies.com/ + - http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html +ignorable_emails: + - info@ej-technologies.com +--- + ej-technologies-EULA http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html diff --git a/docs/ej-technologies-eula.html b/docs/ej-technologies-eula.html index 539b693f76..b52f220094 100644 --- a/docs/ej-technologies-eula.html +++ b/docs/ej-technologies-eula.html @@ -391,7 +391,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ej-technologies-eula.json b/docs/ej-technologies-eula.json index 663e2557d5..04bc10f7ef 100644 --- a/docs/ej-technologies-eula.json +++ b/docs/ej-technologies-eula.json @@ -1 +1,19 @@ -{"key": "ej-technologies-eula", "short_name": "ej-technologies EULA", "name": "ej-technologies EULA", "category": "Commercial", "owner": "ej-technologies", "homepage_url": "http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html", "spdx_license_key": "LicenseRef-scancode-ej-technologies-eula", "text_urls": ["http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html"], "ignorable_urls": ["http://www.ej-technologies.com/", "http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html"], "ignorable_emails": ["info@ej-technologies.com"]} \ No newline at end of file +{ + "key": "ej-technologies-eula", + "short_name": "ej-technologies EULA", + "name": "ej-technologies EULA", + "category": "Commercial", + "owner": "ej-technologies", + "homepage_url": "http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html", + "spdx_license_key": "LicenseRef-scancode-ej-technologies-eula", + "text_urls": [ + "http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html" + ], + "ignorable_urls": [ + "http://www.ej-technologies.com/", + "http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html" + ], + "ignorable_emails": [ + "info@ej-technologies.com" + ] +} \ No newline at end of file diff --git a/docs/ekiga-exception-2.0-plus.LICENSE b/docs/ekiga-exception-2.0-plus.LICENSE index 41b07410ac..9bb36d124b 100644 --- a/docs/ekiga-exception-2.0-plus.LICENSE +++ b/docs/ekiga-exception-2.0-plus.LICENSE @@ -1,3 +1,36 @@ +--- +key: ekiga-exception-2.0-plus +short_name: Ekiga exception to GPL 2.0 or later +name: Ekiga exception to GPL 2.0 or later +category: Copyleft Limited +owner: Ekiga +homepage_url: http://www.ekiga.org/download-ekiga-binaries-or-source-code +is_exception: yes +spdx_license_key: LicenseRef-scancode-ekiga-exception-2.0-plus +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + 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 2 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, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Ekiga/GnomeMeeting is licensed under the GNU GPL license and as a special + exception, you have permission to link or otherwise combine this program + with + the programs OPAL, OpenH323, PWLIB, and OpenSSL, and distribute + the combination, without applying the requirements of the GNU GPL to these + programs, as long as you do follow the requirements of the GNU GPL for all + the + rest of the software thus combined. +--- + Ekiga/GnomeMeeting is licensed under the GNU GPL license and as a special exception, you have permission to link or otherwise combine this program with the programs OPAL, OpenH323, PWLIB, and OpenSSL, and distribute diff --git a/docs/ekiga-exception-2.0-plus.html b/docs/ekiga-exception-2.0-plus.html index 3a14337e73..1747c196c6 100644 --- a/docs/ekiga-exception-2.0-plus.html +++ b/docs/ekiga-exception-2.0-plus.html @@ -174,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ekiga-exception-2.0-plus.json b/docs/ekiga-exception-2.0-plus.json index a1ff217c37..d9ae323e0d 100644 --- a/docs/ekiga-exception-2.0-plus.json +++ b/docs/ekiga-exception-2.0-plus.json @@ -1 +1,14 @@ -{"key": "ekiga-exception-2.0-plus", "short_name": "Ekiga exception to GPL 2.0 or later", "name": "Ekiga exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "Ekiga", "homepage_url": "http://www.ekiga.org/download-ekiga-binaries-or-source-code", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-ekiga-exception-2.0-plus", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\nEkiga/GnomeMeeting is licensed under the GNU GPL license and as a special\nexception, you have permission to link or otherwise combine this program\nwith\nthe programs OPAL, OpenH323, PWLIB, and OpenSSL, and distribute\nthe combination, without applying the requirements of the GNU GPL to these\nprograms, as long as you do follow the requirements of the GNU GPL for all\nthe\nrest of the software thus combined.\n"} \ No newline at end of file +{ + "key": "ekiga-exception-2.0-plus", + "short_name": "Ekiga exception to GPL 2.0 or later", + "name": "Ekiga exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "Ekiga", + "homepage_url": "http://www.ekiga.org/download-ekiga-binaries-or-source-code", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-ekiga-exception-2.0-plus", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\nEkiga/GnomeMeeting is licensed under the GNU GPL license and as a special\nexception, you have permission to link or otherwise combine this program\nwith\nthe programs OPAL, OpenH323, PWLIB, and OpenSSL, and distribute\nthe combination, without applying the requirements of the GNU GPL to these\nprograms, as long as you do follow the requirements of the GNU GPL for all\nthe\nrest of the software thus combined.\n" +} \ No newline at end of file diff --git a/docs/ekioh.LICENSE b/docs/ekioh.LICENSE index 1a8551c8d2..12b842e010 100644 --- a/docs/ekioh.LICENSE +++ b/docs/ekioh.LICENSE @@ -1,3 +1,18 @@ +--- +key: ekioh +is_deprecated: yes +short_name: Ekioh License +name: Ekioh License +category: Permissive +owner: Ekioh +notes: | + Obsolete License -- do not use. Except for the dangling ", subject to the + following conditions:" text, this license is essentially identical to the + MIT-0-Clause (mit-0) license, which has been accepted in the open source + community relatively recently. + See also https://kryogenix.org/code/browser/licence.html. +--- + 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 diff --git a/docs/ekioh.html b/docs/ekioh.html index 560dc9e930..2897e6cd38 100644 --- a/docs/ekioh.html +++ b/docs/ekioh.html @@ -145,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ekioh.json b/docs/ekioh.json index 20ad01a255..b24d29581c 100644 --- a/docs/ekioh.json +++ b/docs/ekioh.json @@ -1 +1,9 @@ -{"key": "ekioh", "is_deprecated": true, "short_name": "Ekioh License", "name": "Ekioh License", "category": "Permissive", "owner": "Ekioh", "notes": "Obsolete License -- do not use. Except for the dangling \", subject to the\nfollowing conditions:\" text, this license is essentially identical to the\nMIT-0-Clause (mit-0) license, which has been accepted in the open source\ncommunity relatively recently.\nSee also https://kryogenix.org/code/browser/licence.html.\n"} \ No newline at end of file +{ + "key": "ekioh", + "is_deprecated": true, + "short_name": "Ekioh License", + "name": "Ekioh License", + "category": "Permissive", + "owner": "Ekioh", + "notes": "Obsolete License -- do not use. Except for the dangling \", subject to the\nfollowing conditions:\" text, this license is essentially identical to the\nMIT-0-Clause (mit-0) license, which has been accepted in the open source\ncommunity relatively recently.\nSee also https://kryogenix.org/code/browser/licence.html.\n" +} \ No newline at end of file diff --git a/docs/elastic-license-2018.LICENSE b/docs/elastic-license-2018.LICENSE index e9174e2879..1e078b8762 100644 --- a/docs/elastic-license-2018.LICENSE +++ b/docs/elastic-license-2018.LICENSE @@ -1,3 +1,27 @@ +--- +key: elastic-license-2018 +short_name: Elastic License 2018 +name: Elastic License Agreement 2018 +category: Source-available +owner: Elastic +homepage_url: https://github.com/elastic/elasticsearch/blob/0d8aa7527e242fbda9d84867ab8bc955758eebce/licenses/ELASTIC-LICENSE.txt +spdx_license_key: LicenseRef-scancode-elastic-license-2018 +text_urls: + - https://github.com/elastic/elasticsearch/blob/0d8aa7527e242fbda9d84867ab8bc955758eebce/licenses/ELASTIC-LICENSE.txt +other_urls: + - https://www.elastic.co/blog/doubling-down-on-open + - https://www.elastic.co/products/x-pack/open + - https://github.com/elastic/elasticsearch/blob/master/x-pack/plugin/core/src/main/java/org/elasticsearch/index/engine/FrozenEngine.java#L3 +standard_notice: | + Licensed under the Elastic License; you may not use this file except in + compliance with the Elastic License. +ignorable_urls: + - https://www.elastic.co/subscriptions +ignorable_emails: + - elastic_license@elastic.co + - legal@elastic.co +--- + ELASTIC LICENSE AGREEMENT PLEASE READ CAREFULLY THIS ELASTIC LICENSE AGREEMENT (THIS "AGREEMENT"), WHICH diff --git a/docs/elastic-license-2018.html b/docs/elastic-license-2018.html index 5191e2abb6..a931623189 100644 --- a/docs/elastic-license-2018.html +++ b/docs/elastic-license-2018.html @@ -394,7 +394,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/elastic-license-2018.json b/docs/elastic-license-2018.json index 5d5d3fb01b..b15e663749 100644 --- a/docs/elastic-license-2018.json +++ b/docs/elastic-license-2018.json @@ -1 +1,25 @@ -{"key": "elastic-license-2018", "short_name": "Elastic License 2018", "name": "Elastic License Agreement 2018", "category": "Source-available", "owner": "Elastic", "homepage_url": "https://github.com/elastic/elasticsearch/blob/0d8aa7527e242fbda9d84867ab8bc955758eebce/licenses/ELASTIC-LICENSE.txt", "spdx_license_key": "LicenseRef-scancode-elastic-license-2018", "text_urls": ["https://github.com/elastic/elasticsearch/blob/0d8aa7527e242fbda9d84867ab8bc955758eebce/licenses/ELASTIC-LICENSE.txt"], "other_urls": ["https://www.elastic.co/blog/doubling-down-on-open", "https://www.elastic.co/products/x-pack/open", "https://github.com/elastic/elasticsearch/blob/master/x-pack/plugin/core/src/main/java/org/elasticsearch/index/engine/FrozenEngine.java#L3"], "standard_notice": "Licensed under the Elastic License; you may not use this file except in\ncompliance with the Elastic License.\n", "ignorable_urls": ["https://www.elastic.co/subscriptions"], "ignorable_emails": ["elastic_license@elastic.co", "legal@elastic.co"]} \ No newline at end of file +{ + "key": "elastic-license-2018", + "short_name": "Elastic License 2018", + "name": "Elastic License Agreement 2018", + "category": "Source-available", + "owner": "Elastic", + "homepage_url": "https://github.com/elastic/elasticsearch/blob/0d8aa7527e242fbda9d84867ab8bc955758eebce/licenses/ELASTIC-LICENSE.txt", + "spdx_license_key": "LicenseRef-scancode-elastic-license-2018", + "text_urls": [ + "https://github.com/elastic/elasticsearch/blob/0d8aa7527e242fbda9d84867ab8bc955758eebce/licenses/ELASTIC-LICENSE.txt" + ], + "other_urls": [ + "https://www.elastic.co/blog/doubling-down-on-open", + "https://www.elastic.co/products/x-pack/open", + "https://github.com/elastic/elasticsearch/blob/master/x-pack/plugin/core/src/main/java/org/elasticsearch/index/engine/FrozenEngine.java#L3" + ], + "standard_notice": "Licensed under the Elastic License; you may not use this file except in\ncompliance with the Elastic License.\n", + "ignorable_urls": [ + "https://www.elastic.co/subscriptions" + ], + "ignorable_emails": [ + "elastic_license@elastic.co", + "legal@elastic.co" + ] +} \ No newline at end of file diff --git a/docs/elastic-license-v2.LICENSE b/docs/elastic-license-v2.LICENSE index 809108b857..3e408e3ac0 100644 --- a/docs/elastic-license-v2.LICENSE +++ b/docs/elastic-license-v2.LICENSE @@ -1,3 +1,23 @@ +--- +key: elastic-license-v2 +short_name: Elastic License 2.0 (ELv2) +name: Elastic License 2.0 (ELv2) +category: Source-available +owner: Elastic +homepage_url: https://www.elastic.co/licensing/elastic-license +spdx_license_key: Elastic-2.0 +other_spdx_license_keys: + - LicenseRef-scancode-elastic-license-v2 +text_urls: + - https://github.com/elastic/elasticsearch/blob/master/licenses/ELASTIC-LICENSE-2.0.txt + - https://raw.githubusercontent.com/elastic/elasticsearch/6ab35978f28351e91dcf51d0ee2f4d5a74e02697/licenses/ELASTIC-LICENSE-2.0.txt +faq_url: https://www.elastic.co/blog/elastic-license-v2 +other_urls: + - https://www.elastic.co/blog/elastic-license-v2 +ignorable_urls: + - https://www.elastic.co/licensing/elastic-license +--- + Elastic License 2.0 URL: https://www.elastic.co/licensing/elastic-license @@ -90,4 +110,4 @@ these terms. **use** means anything you do with the software requiring one of your licenses. -**trademark** means trademarks, service marks, and similar rights. +**trademark** means trademarks, service marks, and similar rights. \ No newline at end of file diff --git a/docs/elastic-license-v2.html b/docs/elastic-license-v2.html index 46306bdbde..279b71abbe 100644 --- a/docs/elastic-license-v2.html +++ b/docs/elastic-license-v2.html @@ -250,8 +250,7 @@ **use** means anything you do with the software requiring one of your licenses. -**trademark** means trademarks, service marks, and similar rights. - +**trademark** means trademarks, service marks, and similar rights.
@@ -263,7 +262,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/elastic-license-v2.json b/docs/elastic-license-v2.json index 8b925c1f43..73a8861d0a 100644 --- a/docs/elastic-license-v2.json +++ b/docs/elastic-license-v2.json @@ -1 +1,23 @@ -{"key": "elastic-license-v2", "short_name": "Elastic License 2.0 (ELv2)", "name": "Elastic License 2.0 (ELv2)", "category": "Source-available", "owner": "Elastic", "homepage_url": "https://www.elastic.co/licensing/elastic-license", "spdx_license_key": "Elastic-2.0", "other_spdx_license_keys": ["LicenseRef-scancode-elastic-license-v2"], "text_urls": ["https://github.com/elastic/elasticsearch/blob/master/licenses/ELASTIC-LICENSE-2.0.txt", "https://raw.githubusercontent.com/elastic/elasticsearch/6ab35978f28351e91dcf51d0ee2f4d5a74e02697/licenses/ELASTIC-LICENSE-2.0.txt"], "faq_url": "https://www.elastic.co/blog/elastic-license-v2", "other_urls": ["https://www.elastic.co/blog/elastic-license-v2"], "ignorable_urls": ["https://www.elastic.co/licensing/elastic-license"]} \ No newline at end of file +{ + "key": "elastic-license-v2", + "short_name": "Elastic License 2.0 (ELv2)", + "name": "Elastic License 2.0 (ELv2)", + "category": "Source-available", + "owner": "Elastic", + "homepage_url": "https://www.elastic.co/licensing/elastic-license", + "spdx_license_key": "Elastic-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-elastic-license-v2" + ], + "text_urls": [ + "https://github.com/elastic/elasticsearch/blob/master/licenses/ELASTIC-LICENSE-2.0.txt", + "https://raw.githubusercontent.com/elastic/elasticsearch/6ab35978f28351e91dcf51d0ee2f4d5a74e02697/licenses/ELASTIC-LICENSE-2.0.txt" + ], + "faq_url": "https://www.elastic.co/blog/elastic-license-v2", + "other_urls": [ + "https://www.elastic.co/blog/elastic-license-v2" + ], + "ignorable_urls": [ + "https://www.elastic.co/licensing/elastic-license" + ] +} \ No newline at end of file diff --git a/docs/elib-gpl.LICENSE b/docs/elib-gpl.LICENSE index eb197e2153..4843b602c1 100644 --- a/docs/elib-gpl.LICENSE +++ b/docs/elib-gpl.LICENSE @@ -1,3 +1,20 @@ +--- +key: elib-gpl +short_name: GPL-Elib +name: GNU Elib General Public License +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.math.utah.edu/docs/info/elib_1.html +spdx_license_key: LicenseRef-scancode-elib-gpl +text_urls: + - http://www.math.utah.edu/docs/info/elib_1.html#SEC1 +faq_url: http://www.math.utah.edu/docs/info/elib_3.html +ignorable_copyrights: + - Copyright (c) 1992 Free Software Foundation +ignorable_holders: + - Free Software Foundation +--- + GNU ELIB GENERAL PUBLIC LICENSE The license agreements of most software companies keep you at the mercy of those companies. By contrast, our general public license is intended to give everyone the right to share GNU Elib. To make sure that you get the rights we want you to have, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. Hence this license agreement. diff --git a/docs/elib-gpl.html b/docs/elib-gpl.html index 7cdfdaf50b..6deaddfaeb 100644 --- a/docs/elib-gpl.html +++ b/docs/elib-gpl.html @@ -193,7 +193,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/elib-gpl.json b/docs/elib-gpl.json index 5f46995620..760990c663 100644 --- a/docs/elib-gpl.json +++ b/docs/elib-gpl.json @@ -1 +1,19 @@ -{"key": "elib-gpl", "short_name": "GPL-Elib", "name": "GNU Elib General Public License", "category": "Copyleft", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.math.utah.edu/docs/info/elib_1.html", "spdx_license_key": "LicenseRef-scancode-elib-gpl", "text_urls": ["http://www.math.utah.edu/docs/info/elib_1.html#SEC1"], "faq_url": "http://www.math.utah.edu/docs/info/elib_3.html", "ignorable_copyrights": ["Copyright (c) 1992 Free Software Foundation"], "ignorable_holders": ["Free Software Foundation"]} \ No newline at end of file +{ + "key": "elib-gpl", + "short_name": "GPL-Elib", + "name": "GNU Elib General Public License", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.math.utah.edu/docs/info/elib_1.html", + "spdx_license_key": "LicenseRef-scancode-elib-gpl", + "text_urls": [ + "http://www.math.utah.edu/docs/info/elib_1.html#SEC1" + ], + "faq_url": "http://www.math.utah.edu/docs/info/elib_3.html", + "ignorable_copyrights": [ + "Copyright (c) 1992 Free Software Foundation" + ], + "ignorable_holders": [ + "Free Software Foundation" + ] +} \ No newline at end of file diff --git a/docs/ellis-lab.LICENSE b/docs/ellis-lab.LICENSE index 800337296d..5d334c8624 100644 --- a/docs/ellis-lab.LICENSE +++ b/docs/ellis-lab.LICENSE @@ -1,3 +1,13 @@ +--- +key: ellis-lab +short_name: EllisLab License +name: EllisLab License +category: Permissive +owner: EllisLab +homepage_url: http://www.codeigniter.com/docs +spdx_license_key: LicenseRef-scancode-ellis-lab +--- + This license is a legal agreement between you and {copyright-owner} for the use of {component} (the "Software"). By obtaining the Software you agree to comply with the terms and conditions of this license. diff --git a/docs/ellis-lab.html b/docs/ellis-lab.html index 04b883f526..52c9416a65 100644 --- a/docs/ellis-lab.html +++ b/docs/ellis-lab.html @@ -175,7 +175,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ellis-lab.json b/docs/ellis-lab.json index c944749317..f01ad93a9f 100644 --- a/docs/ellis-lab.json +++ b/docs/ellis-lab.json @@ -1 +1,9 @@ -{"key": "ellis-lab", "short_name": "EllisLab License", "name": "EllisLab License", "category": "Permissive", "owner": "EllisLab", "homepage_url": "http://www.codeigniter.com/docs", "spdx_license_key": "LicenseRef-scancode-ellis-lab"} \ No newline at end of file +{ + "key": "ellis-lab", + "short_name": "EllisLab License", + "name": "EllisLab License", + "category": "Permissive", + "owner": "EllisLab", + "homepage_url": "http://www.codeigniter.com/docs", + "spdx_license_key": "LicenseRef-scancode-ellis-lab" +} \ No newline at end of file diff --git a/docs/emit.LICENSE b/docs/emit.LICENSE index 293d79e000..8976cf1cd8 100644 --- a/docs/emit.LICENSE +++ b/docs/emit.LICENSE @@ -1,3 +1,19 @@ +--- +key: emit +short_name: Enhanced MIT License +name: Enhanced MIT License +category: Permissive +owner: Wix +homepage_url: https://raw.githubusercontent.com/wix/react-native-zss-rich-text-editor/v1.1.0/LICENSE +notes: See also https://wptavern.com/wix-removes-gpl-licensed-wordpress-code-from-mobile-app-forks-original-mit-library +spdx_license_key: LicenseRef-scancode-emit +minimum_coverage: 50 +ignorable_copyrights: + - Copyright (c) 2016 Wix.com +ignorable_holders: + - Wix.com +--- + The Enhanced MIT License Introduction @@ -29,4 +45,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of 1) the above copyright notice, this permission notice and the complete introduction section above shall be included in all copies or substantial portions of the Software. 2) when the Software is distributed as source code, the licensee is prohibited to change the license of the Software to any “viral” copyleft-type license, such as, inter alia: GPL, LGPL, EPL, MPL, etc. -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. +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. \ No newline at end of file diff --git a/docs/emit.html b/docs/emit.html index 8f4058214a..3beb165e2d 100644 --- a/docs/emit.html +++ b/docs/emit.html @@ -178,8 +178,7 @@ 1) the above copyright notice, this permission notice and the complete introduction section above shall be included in all copies or substantial portions of the Software. 2) when the Software is distributed as source code, the licensee is prohibited to change the license of the Software to any “viral” copyleft-type license, such as, inter alia: GPL, LGPL, EPL, MPL, etc. -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. - +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.
@@ -191,7 +190,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/emit.json b/docs/emit.json index 39f0a5deb4..ee10a090bd 100644 --- a/docs/emit.json +++ b/docs/emit.json @@ -1 +1,17 @@ -{"key": "emit", "short_name": "Enhanced MIT License", "name": "Enhanced MIT License", "category": "Permissive", "owner": "Wix", "homepage_url": "https://raw.githubusercontent.com/wix/react-native-zss-rich-text-editor/v1.1.0/LICENSE", "notes": "See also https://wptavern.com/wix-removes-gpl-licensed-wordpress-code-from-mobile-app-forks-original-mit-library", "spdx_license_key": "LicenseRef-scancode-emit", "minimum_coverage": 50, "ignorable_copyrights": ["Copyright (c) 2016 Wix.com"], "ignorable_holders": ["Wix.com"]} \ No newline at end of file +{ + "key": "emit", + "short_name": "Enhanced MIT License", + "name": "Enhanced MIT License", + "category": "Permissive", + "owner": "Wix", + "homepage_url": "https://raw.githubusercontent.com/wix/react-native-zss-rich-text-editor/v1.1.0/LICENSE", + "notes": "See also https://wptavern.com/wix-removes-gpl-licensed-wordpress-code-from-mobile-app-forks-original-mit-library", + "spdx_license_key": "LicenseRef-scancode-emit", + "minimum_coverage": 50, + "ignorable_copyrights": [ + "Copyright (c) 2016 Wix.com" + ], + "ignorable_holders": [ + "Wix.com" + ] +} \ No newline at end of file diff --git a/docs/emx-library.LICENSE b/docs/emx-library.LICENSE index 3927481fe6..66ca040afa 100644 --- a/docs/emx-library.LICENSE +++ b/docs/emx-library.LICENSE @@ -1,3 +1,15 @@ +--- +key: emx-library +short_name: EMX Library License +name: EMX Library License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-emx-library +faq_url: http://web.lemoyne.edu/courseinformation/emtex/emx/doc/COPYING.EMX +other_urls: + - http://web.lemoyne.edu/courseinformation/emtex/emx/doc/COPYING.EMX +--- + The emx libraries are not distributed under the GPL. Linking an application with the emx libraries does not cause the executable to be covered by the GNU General Public License. You are allowed diff --git a/docs/emx-library.html b/docs/emx-library.html index a6305be2f7..a37b52218e 100644 --- a/docs/emx-library.html +++ b/docs/emx-library.html @@ -142,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/emx-library.json b/docs/emx-library.json index 38a4c84f53..05d4853f1e 100644 --- a/docs/emx-library.json +++ b/docs/emx-library.json @@ -1 +1,12 @@ -{"key": "emx-library", "short_name": "EMX Library License", "name": "EMX Library License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-emx-library", "faq_url": "http://web.lemoyne.edu/courseinformation/emtex/emx/doc/COPYING.EMX", "other_urls": ["http://web.lemoyne.edu/courseinformation/emtex/emx/doc/COPYING.EMX"]} \ No newline at end of file +{ + "key": "emx-library", + "short_name": "EMX Library License", + "name": "EMX Library License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-emx-library", + "faq_url": "http://web.lemoyne.edu/courseinformation/emtex/emx/doc/COPYING.EMX", + "other_urls": [ + "http://web.lemoyne.edu/courseinformation/emtex/emx/doc/COPYING.EMX" + ] +} \ No newline at end of file diff --git a/docs/energyplus-bsd.LICENSE b/docs/energyplus-bsd.LICENSE index 9f3741af05..62a2012cc8 100644 --- a/docs/energyplus-bsd.LICENSE +++ b/docs/energyplus-bsd.LICENSE @@ -1,3 +1,15 @@ +--- +key: energyplus-bsd +short_name: EnergyPlus BSD-Style License +name: EnergyPlus BSD-Style License +category: Permissive +owner: Regents of the University of California +homepage_url: https://energyplus.net/licensing +spdx_license_key: LicenseRef-scancode-energyplus-bsd +ignorable_emails: + - IPO@lbl.gov +--- + If you have questions about your rights to use or distribute this software, please contact Berkeley Lab's Innovation & Partnerships Office at IPO@lbl.gov. NOTICE: This Software was developed under funding from the U.S. Department of Energy and the U.S. Government consequently retains certain rights. As such, the U.S. Government has been granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable, worldwide license in the Software to reproduce, distribute copies to the public, prepare derivative works, and perform publicly and display publicly, and to permit others to do so. diff --git a/docs/energyplus-bsd.html b/docs/energyplus-bsd.html index 9547596b46..a3f3b779d3 100644 --- a/docs/energyplus-bsd.html +++ b/docs/energyplus-bsd.html @@ -152,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/energyplus-bsd.json b/docs/energyplus-bsd.json index ab42c9e0ee..275b893cf8 100644 --- a/docs/energyplus-bsd.json +++ b/docs/energyplus-bsd.json @@ -1 +1,12 @@ -{"key": "energyplus-bsd", "short_name": "EnergyPlus BSD-Style License", "name": "EnergyPlus BSD-Style License", "category": "Permissive", "owner": "Regents of the University of California", "homepage_url": "https://energyplus.net/licensing", "spdx_license_key": "LicenseRef-scancode-energyplus-bsd", "ignorable_emails": ["IPO@lbl.gov"]} \ No newline at end of file +{ + "key": "energyplus-bsd", + "short_name": "EnergyPlus BSD-Style License", + "name": "EnergyPlus BSD-Style License", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "https://energyplus.net/licensing", + "spdx_license_key": "LicenseRef-scancode-energyplus-bsd", + "ignorable_emails": [ + "IPO@lbl.gov" + ] +} \ No newline at end of file diff --git a/docs/enhydra-1.1.LICENSE b/docs/enhydra-1.1.LICENSE index e92a52f1e3..f6900f0eef 100644 --- a/docs/enhydra-1.1.LICENSE +++ b/docs/enhydra-1.1.LICENSE @@ -1,3 +1,29 @@ +--- +key: enhydra-1.1 +short_name: Enhydra 1.1 +name: Enhydra Public License 1.1 +category: Copyleft Limited +owner: Lutris Technologies, Inc. +homepage_url: http://ksoap.objectweb.org/software/license/index.html +spdx_license_key: LicenseRef-scancode-enhydra-1.1 +text_urls: + - http://ksoap.objectweb.org/software/license/index.html +minimum_coverage: 30 +ignorable_copyrights: + - Copyright 1997-2000 Lutris Technologies (http://www.lutris.com) + - Copyright Lutris Technologies, Inc. +ignorable_holders: + - Lutris Technologies + - Lutris Technologies, Inc. +ignorable_authors: + - Lutris Technologies, Inc. +ignorable_urls: + - http://www.enhydra.org/ + - http://www.lutris.com/ +ignorable_emails: + - info@lutris.com +--- + Enhydra Public License Version 1.1 1. Definitions diff --git a/docs/enhydra-1.1.html b/docs/enhydra-1.1.html index 5145d382e7..46a074d724 100644 --- a/docs/enhydra-1.1.html +++ b/docs/enhydra-1.1.html @@ -232,7 +232,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/enhydra-1.1.json b/docs/enhydra-1.1.json index 8eed0c9a15..95a745825e 100644 --- a/docs/enhydra-1.1.json +++ b/docs/enhydra-1.1.json @@ -1 +1,31 @@ -{"key": "enhydra-1.1", "short_name": "Enhydra 1.1", "name": "Enhydra Public License 1.1", "category": "Copyleft Limited", "owner": "Lutris Technologies, Inc.", "homepage_url": "http://ksoap.objectweb.org/software/license/index.html", "spdx_license_key": "LicenseRef-scancode-enhydra-1.1", "text_urls": ["http://ksoap.objectweb.org/software/license/index.html"], "minimum_coverage": 30, "ignorable_copyrights": ["Copyright 1997-2000 Lutris Technologies (http://www.lutris.com)", "Copyright Lutris Technologies, Inc."], "ignorable_holders": ["Lutris Technologies", "Lutris Technologies, Inc."], "ignorable_authors": ["Lutris Technologies, Inc."], "ignorable_urls": ["http://www.enhydra.org/", "http://www.lutris.com/"], "ignorable_emails": ["info@lutris.com"]} \ No newline at end of file +{ + "key": "enhydra-1.1", + "short_name": "Enhydra 1.1", + "name": "Enhydra Public License 1.1", + "category": "Copyleft Limited", + "owner": "Lutris Technologies, Inc.", + "homepage_url": "http://ksoap.objectweb.org/software/license/index.html", + "spdx_license_key": "LicenseRef-scancode-enhydra-1.1", + "text_urls": [ + "http://ksoap.objectweb.org/software/license/index.html" + ], + "minimum_coverage": 30, + "ignorable_copyrights": [ + "Copyright 1997-2000 Lutris Technologies (http://www.lutris.com)", + "Copyright Lutris Technologies, Inc." + ], + "ignorable_holders": [ + "Lutris Technologies", + "Lutris Technologies, Inc." + ], + "ignorable_authors": [ + "Lutris Technologies, Inc." + ], + "ignorable_urls": [ + "http://www.enhydra.org/", + "http://www.lutris.com/" + ], + "ignorable_emails": [ + "info@lutris.com" + ] +} \ No newline at end of file diff --git a/docs/enlightenment.LICENSE b/docs/enlightenment.LICENSE index 9606b05e1b..676742050d 100644 --- a/docs/enlightenment.LICENSE +++ b/docs/enlightenment.LICENSE @@ -1,5 +1,26 @@ +--- +key: enlightenment +short_name: EFL MIT-Style License +name: Enlightenment (EFL) MIT-Style License +category: Permissive +owner: Enlightenment +homepage_url: http://www.enlightenment.org/ +notes: | + Per Fedora, this license is a modified version of the common MIT license, + with an additional advertising clause that makes it GPL-incompatible. It + was originally found at + http://www.enlightenment.org/viewvc/e16/e/COPYING?revision=1.10 , but that + URL is gone (they seem to have moved source control systems). The latest + available copy from enlightment.org + http://trac.enlightenment.org/e/browser/trunk/E16/e/COPYING has been + preserved here for reference. +spdx_license_key: MIT-advertising +text_urls: + - https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising +--- + 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 of the Software, its documentation and marketing & publicity materials, and acknowledgment shall be given in the documentation, materials and software packages that this Software was used. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/docs/enlightenment.html b/docs/enlightenment.html index de61e12811..43da88edcc 100644 --- a/docs/enlightenment.html +++ b/docs/enlightenment.html @@ -143,8 +143,7 @@ The above copyright notice and this permission notice shall be included in all copies of the Software, its documentation and marketing & publicity materials, and acknowledgment shall be given in the documentation, materials and software packages that this Software was used. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -156,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/enlightenment.json b/docs/enlightenment.json index 71ac421871..826df2adfd 100644 --- a/docs/enlightenment.json +++ b/docs/enlightenment.json @@ -1 +1,13 @@ -{"key": "enlightenment", "short_name": "EFL MIT-Style License", "name": "Enlightenment (EFL) MIT-Style License", "category": "Permissive", "owner": "Enlightenment", "homepage_url": "http://www.enlightenment.org/", "notes": "Per Fedora, this license is a modified version of the common MIT license,\nwith an additional advertising clause that makes it GPL-incompatible. It\nwas originally found at\nhttp://www.enlightenment.org/viewvc/e16/e/COPYING?revision=1.10 , but that\nURL is gone (they seem to have moved source control systems). The latest\navailable copy from enlightment.org\nhttp://trac.enlightenment.org/e/browser/trunk/E16/e/COPYING has been\npreserved here for reference.\n", "spdx_license_key": "MIT-advertising", "text_urls": ["https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising"]} \ No newline at end of file +{ + "key": "enlightenment", + "short_name": "EFL MIT-Style License", + "name": "Enlightenment (EFL) MIT-Style License", + "category": "Permissive", + "owner": "Enlightenment", + "homepage_url": "http://www.enlightenment.org/", + "notes": "Per Fedora, this license is a modified version of the common MIT license,\nwith an additional advertising clause that makes it GPL-incompatible. It\nwas originally found at\nhttp://www.enlightenment.org/viewvc/e16/e/COPYING?revision=1.10 , but that\nURL is gone (they seem to have moved source control systems). The latest\navailable copy from enlightment.org\nhttp://trac.enlightenment.org/e/browser/trunk/E16/e/COPYING has been\npreserved here for reference.\n", + "spdx_license_key": "MIT-advertising", + "text_urls": [ + "https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising" + ] +} \ No newline at end of file diff --git a/docs/enna.LICENSE b/docs/enna.LICENSE index 6feb56e285..04bc507b41 100644 --- a/docs/enna.LICENSE +++ b/docs/enna.LICENSE @@ -1,3 +1,13 @@ +--- +key: enna +short_name: enna License +name: enna License +category: Permissive +owner: Enlightenment +homepage_url: https://fedoraproject.org/wiki/Licensing/MIT#enna +spdx_license_key: MIT-enna +--- + 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 diff --git a/docs/enna.html b/docs/enna.html index fb34a6a4a2..d2f17a46ca 100644 --- a/docs/enna.html +++ b/docs/enna.html @@ -152,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/enna.json b/docs/enna.json index 81add57bee..ac6829953b 100644 --- a/docs/enna.json +++ b/docs/enna.json @@ -1 +1,9 @@ -{"key": "enna", "short_name": "enna License", "name": "enna License", "category": "Permissive", "owner": "Enlightenment", "homepage_url": "https://fedoraproject.org/wiki/Licensing/MIT#enna", "spdx_license_key": "MIT-enna"} \ No newline at end of file +{ + "key": "enna", + "short_name": "enna License", + "name": "enna License", + "category": "Permissive", + "owner": "Enlightenment", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/MIT#enna", + "spdx_license_key": "MIT-enna" +} \ No newline at end of file diff --git a/docs/entessa-1.0.LICENSE b/docs/entessa-1.0.LICENSE index 2c65100bf9..2944e09345 100644 --- a/docs/entessa-1.0.LICENSE +++ b/docs/entessa-1.0.LICENSE @@ -1,3 +1,34 @@ +--- +key: entessa-1.0 +short_name: Entessa 1.0 +name: Entessa Public License v1.0 +category: Permissive +owner: Entessa +homepage_url: http://openseal.sourceforge.net/epl/index.html +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: Entessa +text_urls: + - http://openseal.org/epl/index.html + - http://web.archive.org/web/20040518115036/http://openseal.org/epl/index.html +osi_url: http://opensource.org/licenses/entessa.php +other_urls: + - http://opensource.org/licenses/Entessa + - http://sourceforge.net/softwaremap/?&fq[]=trove%3A397 + - https://opensource.org/licenses/Entessa +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 2003 Entessa, LLC. +ignorable_holders: + - Entessa, LLC. +ignorable_authors: + - openSEAL (http://www.openseal.org/) +ignorable_urls: + - http://www.entessa.com/ + - http://www.openseal.org/ +ignorable_emails: + - epl@entessa.com +--- + Entessa Public License Version. 1.0 Copyright (c) 2003 Entessa, LLC. All rights reserved. diff --git a/docs/entessa-1.0.html b/docs/entessa-1.0.html index 71bc9ebad1..44ea685c0e 100644 --- a/docs/entessa-1.0.html +++ b/docs/entessa-1.0.html @@ -256,7 +256,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/entessa-1.0.json b/docs/entessa-1.0.json index 4bb84d645b..d39b39f9f7 100644 --- a/docs/entessa-1.0.json +++ b/docs/entessa-1.0.json @@ -1 +1,37 @@ -{"key": "entessa-1.0", "short_name": "Entessa 1.0", "name": "Entessa Public License v1.0", "category": "Permissive", "owner": "Entessa", "homepage_url": "http://openseal.sourceforge.net/epl/index.html", "notes": "Per SPDX.org, this license is OSI certified", "spdx_license_key": "Entessa", "text_urls": ["http://openseal.org/epl/index.html", "http://web.archive.org/web/20040518115036/http://openseal.org/epl/index.html"], "osi_url": "http://opensource.org/licenses/entessa.php", "other_urls": ["http://opensource.org/licenses/Entessa", "http://sourceforge.net/softwaremap/?&fq[]=trove%3A397", "https://opensource.org/licenses/Entessa"], "minimum_coverage": 90, "ignorable_copyrights": ["Copyright (c) 2003 Entessa, LLC."], "ignorable_holders": ["Entessa, LLC."], "ignorable_authors": ["openSEAL (http://www.openseal.org/)"], "ignorable_urls": ["http://www.entessa.com/", "http://www.openseal.org/"], "ignorable_emails": ["epl@entessa.com"]} \ No newline at end of file +{ + "key": "entessa-1.0", + "short_name": "Entessa 1.0", + "name": "Entessa Public License v1.0", + "category": "Permissive", + "owner": "Entessa", + "homepage_url": "http://openseal.sourceforge.net/epl/index.html", + "notes": "Per SPDX.org, this license is OSI certified", + "spdx_license_key": "Entessa", + "text_urls": [ + "http://openseal.org/epl/index.html", + "http://web.archive.org/web/20040518115036/http://openseal.org/epl/index.html" + ], + "osi_url": "http://opensource.org/licenses/entessa.php", + "other_urls": [ + "http://opensource.org/licenses/Entessa", + "http://sourceforge.net/softwaremap/?&fq[]=trove%3A397", + "https://opensource.org/licenses/Entessa" + ], + "minimum_coverage": 90, + "ignorable_copyrights": [ + "Copyright (c) 2003 Entessa, LLC." + ], + "ignorable_holders": [ + "Entessa, LLC." + ], + "ignorable_authors": [ + "openSEAL (http://www.openseal.org/)" + ], + "ignorable_urls": [ + "http://www.entessa.com/", + "http://www.openseal.org/" + ], + "ignorable_emails": [ + "epl@entessa.com" + ] +} \ No newline at end of file diff --git a/docs/epaperpress.LICENSE b/docs/epaperpress.LICENSE index b34afe0e6d..9f0dc03923 100644 --- a/docs/epaperpress.LICENSE +++ b/docs/epaperpress.LICENSE @@ -1,3 +1,13 @@ +--- +key: epaperpress +short_name: ePaperPress License +name: ePaperPress License +category: Permissive +owner: ePaperPress +homepage_url: https://www.epaperpress.com/lexandyacc/ +spdx_license_key: LicenseRef-scancode-epaperpress +--- + Permission to reproduce portions of this document is given provided the web site listed below is referenced. No additional restrictions apply. Source code, when part of a software project, may be used freely without reference to the author. diff --git a/docs/epaperpress.html b/docs/epaperpress.html index 01f6ae478f..d238fbaf59 100644 --- a/docs/epaperpress.html +++ b/docs/epaperpress.html @@ -133,7 +133,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/epaperpress.json b/docs/epaperpress.json index 52f54bd5be..f480e120d8 100644 --- a/docs/epaperpress.json +++ b/docs/epaperpress.json @@ -1 +1,9 @@ -{"key": "epaperpress", "short_name": "ePaperPress License", "name": "ePaperPress License", "category": "Permissive", "owner": "ePaperPress", "homepage_url": "https://www.epaperpress.com/lexandyacc/", "spdx_license_key": "LicenseRef-scancode-epaperpress"} \ No newline at end of file +{ + "key": "epaperpress", + "short_name": "ePaperPress License", + "name": "ePaperPress License", + "category": "Permissive", + "owner": "ePaperPress", + "homepage_url": "https://www.epaperpress.com/lexandyacc/", + "spdx_license_key": "LicenseRef-scancode-epaperpress" +} \ No newline at end of file diff --git a/docs/epics.LICENSE b/docs/epics.LICENSE index 6334f1b82a..9b0f33e267 100644 --- a/docs/epics.LICENSE +++ b/docs/epics.LICENSE @@ -1,3 +1,17 @@ +--- +key: epics +short_name: EPICS Open License +name: EPICS Open License +category: Permissive +owner: Argonne National Laboratory +homepage_url: http://www.aps.anl.gov/epics/license/open.php +spdx_license_key: EPICS +text_urls: + - http://www.aps.anl.gov/epics/license/open.php +other_urls: + - https://epics.anl.gov/license/open.php +--- + Experimental Physics and Industrial Control System (EPICS) Open Source License EPICS Open License Terms diff --git a/docs/epics.html b/docs/epics.html index 76baf390d7..439602f3eb 100644 --- a/docs/epics.html +++ b/docs/epics.html @@ -175,7 +175,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/epics.json b/docs/epics.json index 72462d2023..6dd219393e 100644 --- a/docs/epics.json +++ b/docs/epics.json @@ -1 +1,15 @@ -{"key": "epics", "short_name": "EPICS Open License", "name": "EPICS Open License", "category": "Permissive", "owner": "Argonne National Laboratory", "homepage_url": "http://www.aps.anl.gov/epics/license/open.php", "spdx_license_key": "EPICS", "text_urls": ["http://www.aps.anl.gov/epics/license/open.php"], "other_urls": ["https://epics.anl.gov/license/open.php"]} \ No newline at end of file +{ + "key": "epics", + "short_name": "EPICS Open License", + "name": "EPICS Open License", + "category": "Permissive", + "owner": "Argonne National Laboratory", + "homepage_url": "http://www.aps.anl.gov/epics/license/open.php", + "spdx_license_key": "EPICS", + "text_urls": [ + "http://www.aps.anl.gov/epics/license/open.php" + ], + "other_urls": [ + "https://epics.anl.gov/license/open.php" + ] +} \ No newline at end of file diff --git a/docs/epl-1.0.LICENSE b/docs/epl-1.0.LICENSE index 1e6c14d846..4d0cbe24ec 100644 --- a/docs/epl-1.0.LICENSE +++ b/docs/epl-1.0.LICENSE @@ -1,3 +1,24 @@ +--- +key: epl-1.0 +short_name: EPL 1.0 +name: Eclipse Public License 1.0 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: http://www.eclipse.org/legal/epl-v10.html +notes: | + Per SPDX.org, this license is OSI certifified EPL replaced the CPL on 28 + June 2005. +spdx_license_key: EPL-1.0 +osi_license_key: EPL-1.0 +text_urls: + - http://www.eclipse.org/legal/epl-v10.html +osi_url: http://opensource.org/licenses/eclipse-1.0.php +faq_url: http://eclipse.org/legal/eplfaq.php +other_urls: + - http://www.opensource.org/licenses/EPL-1.0 + - https://opensource.org/licenses/EPL-1.0 +--- + Eclipse Public License - v 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. diff --git a/docs/epl-1.0.html b/docs/epl-1.0.html index b9098213e2..0f2194d298 100644 --- a/docs/epl-1.0.html +++ b/docs/epl-1.0.html @@ -260,7 +260,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/epl-1.0.json b/docs/epl-1.0.json index b41ae75e1e..cd04aec0cf 100644 --- a/docs/epl-1.0.json +++ b/docs/epl-1.0.json @@ -1 +1,20 @@ -{"key": "epl-1.0", "short_name": "EPL 1.0", "name": "Eclipse Public License 1.0", "category": "Copyleft Limited", "owner": "Eclipse Foundation", "homepage_url": "http://www.eclipse.org/legal/epl-v10.html", "notes": "Per SPDX.org, this license is OSI certifified EPL replaced the CPL on 28\nJune 2005.\n", "spdx_license_key": "EPL-1.0", "osi_license_key": "EPL-1.0", "text_urls": ["http://www.eclipse.org/legal/epl-v10.html"], "osi_url": "http://opensource.org/licenses/eclipse-1.0.php", "faq_url": "http://eclipse.org/legal/eplfaq.php", "other_urls": ["http://www.opensource.org/licenses/EPL-1.0", "https://opensource.org/licenses/EPL-1.0"]} \ No newline at end of file +{ + "key": "epl-1.0", + "short_name": "EPL 1.0", + "name": "Eclipse Public License 1.0", + "category": "Copyleft Limited", + "owner": "Eclipse Foundation", + "homepage_url": "http://www.eclipse.org/legal/epl-v10.html", + "notes": "Per SPDX.org, this license is OSI certifified EPL replaced the CPL on 28\nJune 2005.\n", + "spdx_license_key": "EPL-1.0", + "osi_license_key": "EPL-1.0", + "text_urls": [ + "http://www.eclipse.org/legal/epl-v10.html" + ], + "osi_url": "http://opensource.org/licenses/eclipse-1.0.php", + "faq_url": "http://eclipse.org/legal/eplfaq.php", + "other_urls": [ + "http://www.opensource.org/licenses/EPL-1.0", + "https://opensource.org/licenses/EPL-1.0" + ] +} \ No newline at end of file diff --git a/docs/epl-2.0.LICENSE b/docs/epl-2.0.LICENSE index 4fe02a5721..1741e8f101 100644 --- a/docs/epl-2.0.LICENSE +++ b/docs/epl-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: epl-2.0 +short_name: EPL 2.0 +name: Eclipse Public License 2.0 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://www.eclipse.org/legal/epl-2.0/ +spdx_license_key: EPL-2.0 +text_urls: + - https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt +faq_url: http://www.eclipse.org/legal/eplfaq.php +other_urls: + - https://www.eclipse.org/legal/epl-2.0 + - https://www.opensource.org/licenses/EPL-2.0 +--- + Eclipse Public License - v 2.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE diff --git a/docs/epl-2.0.html b/docs/epl-2.0.html index 27623e9620..2c5ff45531 100644 --- a/docs/epl-2.0.html +++ b/docs/epl-2.0.html @@ -428,7 +428,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/epl-2.0.json b/docs/epl-2.0.json index 1ef5ecdf86..d946904c40 100644 --- a/docs/epl-2.0.json +++ b/docs/epl-2.0.json @@ -1 +1,17 @@ -{"key": "epl-2.0", "short_name": "EPL 2.0", "name": "Eclipse Public License 2.0", "category": "Copyleft Limited", "owner": "Eclipse Foundation", "homepage_url": "https://www.eclipse.org/legal/epl-2.0/", "spdx_license_key": "EPL-2.0", "text_urls": ["https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt"], "faq_url": "http://www.eclipse.org/legal/eplfaq.php", "other_urls": ["https://www.eclipse.org/legal/epl-2.0", "https://www.opensource.org/licenses/EPL-2.0"]} \ No newline at end of file +{ + "key": "epl-2.0", + "short_name": "EPL 2.0", + "name": "Eclipse Public License 2.0", + "category": "Copyleft Limited", + "owner": "Eclipse Foundation", + "homepage_url": "https://www.eclipse.org/legal/epl-2.0/", + "spdx_license_key": "EPL-2.0", + "text_urls": [ + "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt" + ], + "faq_url": "http://www.eclipse.org/legal/eplfaq.php", + "other_urls": [ + "https://www.eclipse.org/legal/epl-2.0", + "https://www.opensource.org/licenses/EPL-2.0" + ] +} \ No newline at end of file diff --git a/docs/epo-osl-2005.1.LICENSE b/docs/epo-osl-2005.1.LICENSE index 7e13dd8fbd..49acc0e2e5 100644 --- a/docs/epo-osl-2005.1.LICENSE +++ b/docs/epo-osl-2005.1.LICENSE @@ -1,3 +1,15 @@ +--- +key: epo-osl-2005.1 +short_name: EPO-OSL +name: EPO Open Source Licence No. 2005/1 +category: Copyleft +owner: European Patent Organization +homepage_url: http://ephx.sourceforge.net/viewlicence.html +spdx_license_key: LicenseRef-scancode-epo-osl-2005.1 +text_urls: + - http://ephx.sourceforge.net/viewlicence.html +--- + European Patent Organisation Open Source Licence No. 2005/1 This Licence 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 Licence. 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 Licence; they are outside its scope. diff --git a/docs/epo-osl-2005.1.html b/docs/epo-osl-2005.1.html index b41025c467..05c7861283 100644 --- a/docs/epo-osl-2005.1.html +++ b/docs/epo-osl-2005.1.html @@ -172,7 +172,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/epo-osl-2005.1.json b/docs/epo-osl-2005.1.json index 8a579e1809..b3b0460079 100644 --- a/docs/epo-osl-2005.1.json +++ b/docs/epo-osl-2005.1.json @@ -1 +1,12 @@ -{"key": "epo-osl-2005.1", "short_name": "EPO-OSL", "name": "EPO Open Source Licence No. 2005/1", "category": "Copyleft", "owner": "European Patent Organization", "homepage_url": "http://ephx.sourceforge.net/viewlicence.html", "spdx_license_key": "LicenseRef-scancode-epo-osl-2005.1", "text_urls": ["http://ephx.sourceforge.net/viewlicence.html"]} \ No newline at end of file +{ + "key": "epo-osl-2005.1", + "short_name": "EPO-OSL", + "name": "EPO Open Source Licence No. 2005/1", + "category": "Copyleft", + "owner": "European Patent Organization", + "homepage_url": "http://ephx.sourceforge.net/viewlicence.html", + "spdx_license_key": "LicenseRef-scancode-epo-osl-2005.1", + "text_urls": [ + "http://ephx.sourceforge.net/viewlicence.html" + ] +} \ No newline at end of file diff --git a/docs/eric-glass.LICENSE b/docs/eric-glass.LICENSE index bf9da196e5..de8070f382 100644 --- a/docs/eric-glass.LICENSE +++ b/docs/eric-glass.LICENSE @@ -1,3 +1,23 @@ +--- +key: eric-glass +short_name: Eric Glass License +name: Eric Glass License +category: Permissive +owner: NTLM Authorization Proxy Server Project +homepage_url: http://davenport.sourceforge.net/ntlm.html +spdx_license_key: LicenseRef-scancode-eric-glass +standard_notice: | + All trademarks mentioned in this document are the property of their + respective owners. + Copyright © 2003, 2006 Eric Glass + Permission to use, copy, modify, and distribute this document for any + purpose and without any fee is hereby granted, provided that the above + copyright notice and this list of conditions appear in all copies. + The most current version of this document may be obtained from + http://davenport.sourceforge.net/ntlm.html. The author may be contacted vie + e-mail at eric.glass at gmail.com. +--- + Permission to use, copy, modify, and distribute this document for any purpose and without any fee is hereby granted, provided that the above copyright notice and this list of conditions appear in all copies. \ No newline at end of file diff --git a/docs/eric-glass.html b/docs/eric-glass.html index 80b7b7277c..85456e5edf 100644 --- a/docs/eric-glass.html +++ b/docs/eric-glass.html @@ -145,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/eric-glass.json b/docs/eric-glass.json index 5592dd0cf6..18b4fbf7d2 100644 --- a/docs/eric-glass.json +++ b/docs/eric-glass.json @@ -1 +1,10 @@ -{"key": "eric-glass", "short_name": "Eric Glass License", "name": "Eric Glass License", "category": "Permissive", "owner": "NTLM Authorization Proxy Server Project", "homepage_url": "http://davenport.sourceforge.net/ntlm.html", "spdx_license_key": "LicenseRef-scancode-eric-glass", "standard_notice": "All trademarks mentioned in this document are the property of their\nrespective owners.\nCopyright \u00a9 2003, 2006 Eric Glass\nPermission to use, copy, modify, and distribute this document for any\npurpose and without any fee is hereby granted, provided that the above\ncopyright notice and this list of conditions appear in all copies.\nThe most current version of this document may be obtained from\nhttp://davenport.sourceforge.net/ntlm.html. The author may be contacted vie\ne-mail at eric.glass at gmail.com.\n"} \ No newline at end of file +{ + "key": "eric-glass", + "short_name": "Eric Glass License", + "name": "Eric Glass License", + "category": "Permissive", + "owner": "NTLM Authorization Proxy Server Project", + "homepage_url": "http://davenport.sourceforge.net/ntlm.html", + "spdx_license_key": "LicenseRef-scancode-eric-glass", + "standard_notice": "All trademarks mentioned in this document are the property of their\nrespective owners.\nCopyright \u00a9 2003, 2006 Eric Glass\nPermission to use, copy, modify, and distribute this document for any\npurpose and without any fee is hereby granted, provided that the above\ncopyright notice and this list of conditions appear in all copies.\nThe most current version of this document may be obtained from\nhttp://davenport.sourceforge.net/ntlm.html. The author may be contacted vie\ne-mail at eric.glass at gmail.com.\n" +} \ No newline at end of file diff --git a/docs/erlangpl-1.1.LICENSE b/docs/erlangpl-1.1.LICENSE index db2b072930..41fbd5c14d 100644 --- a/docs/erlangpl-1.1.LICENSE +++ b/docs/erlangpl-1.1.LICENSE @@ -1,3 +1,21 @@ +--- +key: erlangpl-1.1 +short_name: Erlang Public License 1.1 +name: Erlang Public License v1.1 +category: Copyleft +owner: Erlang +homepage_url: http://www.erlang.org/EPLICENSE +spdx_license_key: ErlPL-1.1 +text_urls: + - http://www.erlang.org/EPLICENSE +ignorable_copyrights: + - Copyright 1999, Ericsson Utvecklings AB. +ignorable_holders: + - Ericsson Utvecklings AB. +ignorable_urls: + - http://www.erlang.org/ +--- + ERLANG PUBLIC LICENSE Version 1.1 diff --git a/docs/erlangpl-1.1.html b/docs/erlangpl-1.1.html index 9d37c97ba0..a1fb9a76e9 100644 --- a/docs/erlangpl-1.1.html +++ b/docs/erlangpl-1.1.html @@ -448,7 +448,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/erlangpl-1.1.json b/docs/erlangpl-1.1.json index 6cad4599f9..da2778907b 100644 --- a/docs/erlangpl-1.1.json +++ b/docs/erlangpl-1.1.json @@ -1 +1,21 @@ -{"key": "erlangpl-1.1", "short_name": "Erlang Public License 1.1", "name": "Erlang Public License v1.1", "category": "Copyleft", "owner": "Erlang", "homepage_url": "http://www.erlang.org/EPLICENSE", "spdx_license_key": "ErlPL-1.1", "text_urls": ["http://www.erlang.org/EPLICENSE"], "ignorable_copyrights": ["Copyright 1999, Ericsson Utvecklings AB."], "ignorable_holders": ["Ericsson Utvecklings AB."], "ignorable_urls": ["http://www.erlang.org/"]} \ No newline at end of file +{ + "key": "erlangpl-1.1", + "short_name": "Erlang Public License 1.1", + "name": "Erlang Public License v1.1", + "category": "Copyleft", + "owner": "Erlang", + "homepage_url": "http://www.erlang.org/EPLICENSE", + "spdx_license_key": "ErlPL-1.1", + "text_urls": [ + "http://www.erlang.org/EPLICENSE" + ], + "ignorable_copyrights": [ + "Copyright 1999, Ericsson Utvecklings AB." + ], + "ignorable_holders": [ + "Ericsson Utvecklings AB." + ], + "ignorable_urls": [ + "http://www.erlang.org/" + ] +} \ No newline at end of file diff --git a/docs/errbot-exception.LICENSE b/docs/errbot-exception.LICENSE index 4e8e52bb78..8bd5cc636d 100644 --- a/docs/errbot-exception.LICENSE +++ b/docs/errbot-exception.LICENSE @@ -1,3 +1,17 @@ +--- +key: errbot-exception +short_name: Errbot exception +name: Errbot exception +category: Permissive +owner: Errbot +homepage_url: http://errbot.io/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-errbot-exception +text_urls: + - https://github.com/errbotio/errbot/blob/master/gplv3-exceptions.txt +minimum_coverage: 30 +--- + As a special exception, the copyright holders of Errbot hereby grant permission for plug-ins, scripts or add-ons not bundled or distributed as part of Errbot itself and potentially licensed under a different license, to be diff --git a/docs/errbot-exception.html b/docs/errbot-exception.html index bf77799931..057b524e03 100644 --- a/docs/errbot-exception.html +++ b/docs/errbot-exception.html @@ -154,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/errbot-exception.json b/docs/errbot-exception.json index 51cc5d079e..b3f6391b5c 100644 --- a/docs/errbot-exception.json +++ b/docs/errbot-exception.json @@ -1 +1,14 @@ -{"key": "errbot-exception", "short_name": "Errbot exception", "name": "Errbot exception", "category": "Permissive", "owner": "Errbot", "homepage_url": "http://errbot.io/", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-errbot-exception", "text_urls": ["https://github.com/errbotio/errbot/blob/master/gplv3-exceptions.txt"], "minimum_coverage": 30} \ No newline at end of file +{ + "key": "errbot-exception", + "short_name": "Errbot exception", + "name": "Errbot exception", + "category": "Permissive", + "owner": "Errbot", + "homepage_url": "http://errbot.io/", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-errbot-exception", + "text_urls": [ + "https://github.com/errbotio/errbot/blob/master/gplv3-exceptions.txt" + ], + "minimum_coverage": 30 +} \ No newline at end of file diff --git a/docs/esri-devkit.LICENSE b/docs/esri-devkit.LICENSE index bd39f2785a..a429bea909 100644 --- a/docs/esri-devkit.LICENSE +++ b/docs/esri-devkit.LICENSE @@ -1,3 +1,16 @@ +--- +key: esri-devkit +short_name: Esri Developer Kit License +name: Esri Developer Kit License +category: Proprietary Free +owner: Esri +spdx_license_key: LicenseRef-scancode-esri-devkit +ignorable_copyrights: + - Copyright 2006 ESRI +ignorable_holders: + - ESRI +--- + Copyright 2006 ESRI All rights reserved under the copyright laws of the United States @@ -7,4 +20,4 @@ You may freely redistribute and use this sample code, with or without modification, provided you include the original copyright notice and use restrictions. -See use restrictions at /arcgis/developerkit/userestrictions. +See use restrictions at /arcgis/developerkit/userestrictions. \ No newline at end of file diff --git a/docs/esri-devkit.html b/docs/esri-devkit.html index 1743656a74..c16ae58c27 100644 --- a/docs/esri-devkit.html +++ b/docs/esri-devkit.html @@ -135,8 +135,7 @@ without modification, provided you include the original copyright notice and use restrictions. -See use restrictions at /arcgis/developerkit/userestrictions. - +See use restrictions at /arcgis/developerkit/userestrictions.
@@ -148,7 +147,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/esri-devkit.json b/docs/esri-devkit.json index a6879a5e9f..86f74c9a87 100644 --- a/docs/esri-devkit.json +++ b/docs/esri-devkit.json @@ -1 +1,14 @@ -{"key": "esri-devkit", "short_name": "Esri Developer Kit License", "name": "Esri Developer Kit License", "category": "Proprietary Free", "owner": "Esri", "spdx_license_key": "LicenseRef-scancode-esri-devkit", "ignorable_copyrights": ["Copyright 2006 ESRI"], "ignorable_holders": ["ESRI"]} \ No newline at end of file +{ + "key": "esri-devkit", + "short_name": "Esri Developer Kit License", + "name": "Esri Developer Kit License", + "category": "Proprietary Free", + "owner": "Esri", + "spdx_license_key": "LicenseRef-scancode-esri-devkit", + "ignorable_copyrights": [ + "Copyright 2006 ESRI" + ], + "ignorable_holders": [ + "ESRI" + ] +} \ No newline at end of file diff --git a/docs/esri.LICENSE b/docs/esri.LICENSE index 280f6b3a8f..5e9ff005e0 100644 --- a/docs/esri.LICENSE +++ b/docs/esri.LICENSE @@ -1,3 +1,33 @@ +--- +key: esri +short_name: Esri License +name: Esri License +category: Commercial +owner: Esri +homepage_url: http://www.esri.com/legal/pdfs/mla_e204_e300/english +spdx_license_key: LicenseRef-scancode-esri +minimum_coverage: 60 +ignorable_copyrights: + - copyright date(s) from the source materials Esri and its licensors +ignorable_holders: + - date(s) from the source materials Esri and its licensors +ignorable_urls: + - http://links.esri.com/agol/transactiondef + - http://support.esri.com/en/support + - http://www.arcgis.com/ + - http://www.esri.com/legal + - http://www.esri.com/legal/dmca_policy + - http://www.esri.com/legal/redistribution-rights + - http://www.esri.com/legal/software-license + - http://www.esri.com/software/arcgis/arcgis-for-home + - http://www.esri.com/supplierterms-HERE + - http://www.esri.com/terms-of-use-bodc + - http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/e-802-bing-mapsvcs.pdf + - http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/home-use-installation-support.pdf + - http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9792-teleatlas_use_data.pdf + - http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9946-icubed.pdf +--- + IMPORTANT—READ CAREFULLY Unless superseded by a signed license agreement between you and Esri, Esri is willing to license Products to you only if you accept all terms and conditions contained in this License Agreement. Please read the terms and conditions carefully. You may not use the Products until you have agreed to the terms and conditions of the License Agreement. If you do not agree to the terms and conditions as stated, click "I do not accept the license agreement" below; you may then request a refund of applicable fees paid. diff --git a/docs/esri.html b/docs/esri.html index f381306044..ff9eebc6be 100644 --- a/docs/esri.html +++ b/docs/esri.html @@ -729,7 +729,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/esri.json b/docs/esri.json index eeed4d3607..0b264fa503 100644 --- a/docs/esri.json +++ b/docs/esri.json @@ -1 +1,32 @@ -{"key": "esri", "short_name": "Esri License", "name": "Esri License", "category": "Commercial", "owner": "Esri", "homepage_url": "http://www.esri.com/legal/pdfs/mla_e204_e300/english", "spdx_license_key": "LicenseRef-scancode-esri", "minimum_coverage": 60, "ignorable_copyrights": ["copyright date(s) from the source materials Esri and its licensors"], "ignorable_holders": ["date(s) from the source materials Esri and its licensors"], "ignorable_urls": ["http://links.esri.com/agol/transactiondef", "http://support.esri.com/en/support", "http://www.arcgis.com/", "http://www.esri.com/legal", "http://www.esri.com/legal/dmca_policy", "http://www.esri.com/legal/redistribution-rights", "http://www.esri.com/legal/software-license", "http://www.esri.com/software/arcgis/arcgis-for-home", "http://www.esri.com/supplierterms-HERE", "http://www.esri.com/terms-of-use-bodc", "http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/e-802-bing-mapsvcs.pdf", "http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/home-use-installation-support.pdf", "http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9792-teleatlas_use_data.pdf", "http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9946-icubed.pdf"]} \ No newline at end of file +{ + "key": "esri", + "short_name": "Esri License", + "name": "Esri License", + "category": "Commercial", + "owner": "Esri", + "homepage_url": "http://www.esri.com/legal/pdfs/mla_e204_e300/english", + "spdx_license_key": "LicenseRef-scancode-esri", + "minimum_coverage": 60, + "ignorable_copyrights": [ + "copyright date(s) from the source materials Esri and its licensors" + ], + "ignorable_holders": [ + "date(s) from the source materials Esri and its licensors" + ], + "ignorable_urls": [ + "http://links.esri.com/agol/transactiondef", + "http://support.esri.com/en/support", + "http://www.arcgis.com/", + "http://www.esri.com/legal", + "http://www.esri.com/legal/dmca_policy", + "http://www.esri.com/legal/redistribution-rights", + "http://www.esri.com/legal/software-license", + "http://www.esri.com/software/arcgis/arcgis-for-home", + "http://www.esri.com/supplierterms-HERE", + "http://www.esri.com/terms-of-use-bodc", + "http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/e-802-bing-mapsvcs.pdf", + "http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/home-use-installation-support.pdf", + "http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9792-teleatlas_use_data.pdf", + "http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9946-icubed.pdf" + ] +} \ No newline at end of file diff --git a/docs/etalab-2.0-en.LICENSE b/docs/etalab-2.0-en.LICENSE index d9d322e579..b2eb5231fe 100644 --- a/docs/etalab-2.0-en.LICENSE +++ b/docs/etalab-2.0-en.LICENSE @@ -1,3 +1,22 @@ +--- +key: etalab-2.0-en +short_name: Etalab Open License 2.0 English +name: Etalab Open License 2.0 English +category: Permissive +owner: DINUM +homepage_url: https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE +notes: there is also a French version +spdx_license_key: LicenseRef-scancode-etalab-2.0-en +text_urls: + - https://github.com/etalab/licence-ouverte/blob/master/open-licence.md +other_urls: + - https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf + - https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE + - https://www.etalab.gouv.fr/wp-content/uploads/2018/11/open-licence.pdf +ignorable_urls: + - http://www.data.gouv.fr/fr/datasets/xxx +--- + # OPEN LICENCE 2.0/LICENCE OUVERTE 2.0 ## “Reuse” of the “Information” covered by this licence @@ -73,4 +92,4 @@ Under the Prime Minister’s authority, the Etalab mission is mandated to open u This licence is version 2.0 of the Open Licence. -Etalab reserves the right to propose new versions of the Open Licence. Nevertheless, “Reusers” may continue to reuse information obtained under this licence should they so wish. +Etalab reserves the right to propose new versions of the Open Licence. Nevertheless, “Reusers” may continue to reuse information obtained under this licence should they so wish. \ No newline at end of file diff --git a/docs/etalab-2.0-en.html b/docs/etalab-2.0-en.html index e250b201e1..f6c8531b38 100644 --- a/docs/etalab-2.0-en.html +++ b/docs/etalab-2.0-en.html @@ -224,8 +224,7 @@ This licence is version 2.0 of the Open Licence. -Etalab reserves the right to propose new versions of the Open Licence. Nevertheless, “Reusers” may continue to reuse information obtained under this licence should they so wish. - +Etalab reserves the right to propose new versions of the Open Licence. Nevertheless, “Reusers” may continue to reuse information obtained under this licence should they so wish.
@@ -237,7 +236,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/etalab-2.0-en.json b/docs/etalab-2.0-en.json index ce51382da1..bd051713a1 100644 --- a/docs/etalab-2.0-en.json +++ b/docs/etalab-2.0-en.json @@ -1 +1,21 @@ -{"key": "etalab-2.0-en", "short_name": "Etalab Open License 2.0 English", "name": "Etalab Open License 2.0 English", "category": "Permissive", "owner": "DINUM", "homepage_url": "https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE", "notes": "there is also a French version", "spdx_license_key": "LicenseRef-scancode-etalab-2.0-en", "text_urls": ["https://github.com/etalab/licence-ouverte/blob/master/open-licence.md"], "other_urls": ["https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf", "https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE", "https://www.etalab.gouv.fr/wp-content/uploads/2018/11/open-licence.pdf"], "ignorable_urls": ["http://www.data.gouv.fr/fr/datasets/xxx"]} \ No newline at end of file +{ + "key": "etalab-2.0-en", + "short_name": "Etalab Open License 2.0 English", + "name": "Etalab Open License 2.0 English", + "category": "Permissive", + "owner": "DINUM", + "homepage_url": "https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE", + "notes": "there is also a French version", + "spdx_license_key": "LicenseRef-scancode-etalab-2.0-en", + "text_urls": [ + "https://github.com/etalab/licence-ouverte/blob/master/open-licence.md" + ], + "other_urls": [ + "https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf", + "https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE", + "https://www.etalab.gouv.fr/wp-content/uploads/2018/11/open-licence.pdf" + ], + "ignorable_urls": [ + "http://www.data.gouv.fr/fr/datasets/xxx" + ] +} \ No newline at end of file diff --git a/docs/etalab-2.0-fr.LICENSE b/docs/etalab-2.0-fr.LICENSE index 2ba1978351..8a4a3d4d51 100644 --- a/docs/etalab-2.0-fr.LICENSE +++ b/docs/etalab-2.0-fr.LICENSE @@ -1,3 +1,23 @@ +--- +key: etalab-2.0-fr +is_deprecated: yes +language: fr +short_name: Etalab Open License 2.0 French +name: Etalab Open License 2.0 French +category: Unstated License +owner: DINUM +homepage_url: https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE +notes: Renamed to etalab-2.0 +text_urls: + - https://github.com/etalab/licence-ouverte/blob/master/open-licence.md +other_urls: + - https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf + - https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE + - https://www.etalab.gouv.fr/wp-content/uploads/2018/11/open-licence.pdf +ignorable_urls: + - http://www.data.gouv.fr/fr/datasets/xxx +--- + LICENCE OUVERTE / OPEN LICENCE =================================================================== @@ -176,4 +196,4 @@ Cette licence est la version 2.0 de la Licence Ouverte. Etalab se réserve la faculté de proposer de nouvelles versions de la Licence Ouverte. Cependant, les « Réutilisateurs » pourront continuer à réutiliser les -informations qu’ils ont obtenues sous cette licence s’ils le souhaitent. +informations qu’ils ont obtenues sous cette licence s’ils le souhaitent. \ No newline at end of file diff --git a/docs/etalab-2.0-fr.html b/docs/etalab-2.0-fr.html index c92410bbe5..d22d281ee4 100644 --- a/docs/etalab-2.0-fr.html +++ b/docs/etalab-2.0-fr.html @@ -334,8 +334,7 @@ Etalab se réserve la faculté de proposer de nouvelles versions de la Licence Ouverte. Cependant, les « Réutilisateurs » pourront continuer à réutiliser les -informations qu’ils ont obtenues sous cette licence s’ils le souhaitent. - +informations qu’ils ont obtenues sous cette licence s’ils le souhaitent.
@@ -347,7 +346,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/etalab-2.0-fr.json b/docs/etalab-2.0-fr.json index ed467dd3bc..4628d0e37e 100644 --- a/docs/etalab-2.0-fr.json +++ b/docs/etalab-2.0-fr.json @@ -1 +1,22 @@ -{"key": "etalab-2.0-fr", "is_deprecated": true, "language": "fr", "short_name": "Etalab Open License 2.0 French", "name": "Etalab Open License 2.0 French", "category": "Unstated License", "owner": "DINUM", "homepage_url": "https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE", "notes": "Renamed to etalab-2.0", "text_urls": ["https://github.com/etalab/licence-ouverte/blob/master/open-licence.md"], "other_urls": ["https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf", "https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE", "https://www.etalab.gouv.fr/wp-content/uploads/2018/11/open-licence.pdf"], "ignorable_urls": ["http://www.data.gouv.fr/fr/datasets/xxx"]} \ No newline at end of file +{ + "key": "etalab-2.0-fr", + "is_deprecated": true, + "language": "fr", + "short_name": "Etalab Open License 2.0 French", + "name": "Etalab Open License 2.0 French", + "category": "Unstated License", + "owner": "DINUM", + "homepage_url": "https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE", + "notes": "Renamed to etalab-2.0", + "text_urls": [ + "https://github.com/etalab/licence-ouverte/blob/master/open-licence.md" + ], + "other_urls": [ + "https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf", + "https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE", + "https://www.etalab.gouv.fr/wp-content/uploads/2018/11/open-licence.pdf" + ], + "ignorable_urls": [ + "http://www.data.gouv.fr/fr/datasets/xxx" + ] +} \ No newline at end of file diff --git a/docs/etalab-2.0.LICENSE b/docs/etalab-2.0.LICENSE index 2ba1978351..29bbea0ae8 100644 --- a/docs/etalab-2.0.LICENSE +++ b/docs/etalab-2.0.LICENSE @@ -1,3 +1,26 @@ +--- +key: etalab-2.0 +language: fr +short_name: Etalab Open License 2.0 +name: Etalab Open License 2.0 +category: Permissive +owner: DINUM +homepage_url: https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE +notes: there is also an English version +spdx_license_key: etalab-2.0 +other_spdx_license_keys: + - LicenseRef-scancode-etalab-2.0 + - LicenseRef-scancode-etalab-2.0-fr +text_urls: + - https://github.com/etalab/licence-ouverte/blob/master/open-licence.md +other_urls: + - https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf + - https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE + - https://www.etalab.gouv.fr/wp-content/uploads/2018/11/open-licence.pdf +ignorable_urls: + - http://www.data.gouv.fr/fr/datasets/xxx +--- + LICENCE OUVERTE / OPEN LICENCE =================================================================== @@ -176,4 +199,4 @@ Cette licence est la version 2.0 de la Licence Ouverte. Etalab se réserve la faculté de proposer de nouvelles versions de la Licence Ouverte. Cependant, les « Réutilisateurs » pourront continuer à réutiliser les -informations qu’ils ont obtenues sous cette licence s’ils le souhaitent. +informations qu’ils ont obtenues sous cette licence s’ils le souhaitent. \ No newline at end of file diff --git a/docs/etalab-2.0.html b/docs/etalab-2.0.html index e0776f1170..ddcee81952 100644 --- a/docs/etalab-2.0.html +++ b/docs/etalab-2.0.html @@ -343,8 +343,7 @@ Etalab se réserve la faculté de proposer de nouvelles versions de la Licence Ouverte. Cependant, les « Réutilisateurs » pourront continuer à réutiliser les -informations qu’ils ont obtenues sous cette licence s’ils le souhaitent. - +informations qu’ils ont obtenues sous cette licence s’ils le souhaitent.
@@ -356,7 +355,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/etalab-2.0.json b/docs/etalab-2.0.json index c316c5a630..92645c4ab0 100644 --- a/docs/etalab-2.0.json +++ b/docs/etalab-2.0.json @@ -1 +1,26 @@ -{"key": "etalab-2.0", "language": "fr", "short_name": "Etalab Open License 2.0", "name": "Etalab Open License 2.0", "category": "Permissive", "owner": "DINUM", "homepage_url": "https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE", "notes": "there is also an English version", "spdx_license_key": "etalab-2.0", "other_spdx_license_keys": ["LicenseRef-scancode-etalab-2.0", "LicenseRef-scancode-etalab-2.0-fr"], "text_urls": ["https://github.com/etalab/licence-ouverte/blob/master/open-licence.md"], "other_urls": ["https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf", "https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE", "https://www.etalab.gouv.fr/wp-content/uploads/2018/11/open-licence.pdf"], "ignorable_urls": ["http://www.data.gouv.fr/fr/datasets/xxx"]} \ No newline at end of file +{ + "key": "etalab-2.0", + "language": "fr", + "short_name": "Etalab Open License 2.0", + "name": "Etalab Open License 2.0", + "category": "Permissive", + "owner": "DINUM", + "homepage_url": "https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE", + "notes": "there is also an English version", + "spdx_license_key": "etalab-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-etalab-2.0", + "LicenseRef-scancode-etalab-2.0-fr" + ], + "text_urls": [ + "https://github.com/etalab/licence-ouverte/blob/master/open-licence.md" + ], + "other_urls": [ + "https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf", + "https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE", + "https://www.etalab.gouv.fr/wp-content/uploads/2018/11/open-licence.pdf" + ], + "ignorable_urls": [ + "http://www.data.gouv.fr/fr/datasets/xxx" + ] +} \ No newline at end of file diff --git a/docs/eu-datagrid.LICENSE b/docs/eu-datagrid.LICENSE index a791062ecd..3c3b04c6bf 100644 --- a/docs/eu-datagrid.LICENSE +++ b/docs/eu-datagrid.LICENSE @@ -1,3 +1,33 @@ +--- +key: eu-datagrid +short_name: EU DataGrid Software License +name: EU DataGrid Software License +category: Permissive +owner: DataGrid Project +homepage_url: http://eu-datagrid.web.cern.ch/eu-datagrid/license.html +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: EUDatagrid +osi_license_key: EUDatagrid +text_urls: + - http://eu-datagrid.web.cern.ch/eu-datagrid/license.html +osi_url: http://www.opensource.org/licenses/eudatagrid.php +other_urls: + - http://www.eu-egee.org/ + - http://www.opensource.org/licenses/EUDatagrid + - https://opensource.org/licenses/EUDatagrid +ignorable_copyrights: + - Copyright (c) 2001 EU DataGrid +ignorable_holders: + - EU DataGrid +ignorable_authors: + - hep-project-grid-edg-license@cern.ch + - the EU DataGrid (http://www.eu-datagrid.org/) +ignorable_urls: + - http://www.eu-datagrid.org/ +ignorable_emails: + - hep-project-grid-edg-license@cern.ch +--- + EU DataGrid Software License Copyright (c) 2001 EU DataGrid. All rights reserved. diff --git a/docs/eu-datagrid.html b/docs/eu-datagrid.html index ed6439929a..29e6f506c6 100644 --- a/docs/eu-datagrid.html +++ b/docs/eu-datagrid.html @@ -235,7 +235,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/eu-datagrid.json b/docs/eu-datagrid.json index ef9f6af7a8..ab30155220 100644 --- a/docs/eu-datagrid.json +++ b/docs/eu-datagrid.json @@ -1 +1,36 @@ -{"key": "eu-datagrid", "short_name": "EU DataGrid Software License", "name": "EU DataGrid Software License", "category": "Permissive", "owner": "DataGrid Project", "homepage_url": "http://eu-datagrid.web.cern.ch/eu-datagrid/license.html", "notes": "Per SPDX.org, this license is OSI certified", "spdx_license_key": "EUDatagrid", "osi_license_key": "EUDatagrid", "text_urls": ["http://eu-datagrid.web.cern.ch/eu-datagrid/license.html"], "osi_url": "http://www.opensource.org/licenses/eudatagrid.php", "other_urls": ["http://www.eu-egee.org/", "http://www.opensource.org/licenses/EUDatagrid", "https://opensource.org/licenses/EUDatagrid"], "ignorable_copyrights": ["Copyright (c) 2001 EU DataGrid"], "ignorable_holders": ["EU DataGrid"], "ignorable_authors": ["hep-project-grid-edg-license@cern.ch", "the EU DataGrid (http://www.eu-datagrid.org/)"], "ignorable_urls": ["http://www.eu-datagrid.org/"], "ignorable_emails": ["hep-project-grid-edg-license@cern.ch"]} \ No newline at end of file +{ + "key": "eu-datagrid", + "short_name": "EU DataGrid Software License", + "name": "EU DataGrid Software License", + "category": "Permissive", + "owner": "DataGrid Project", + "homepage_url": "http://eu-datagrid.web.cern.ch/eu-datagrid/license.html", + "notes": "Per SPDX.org, this license is OSI certified", + "spdx_license_key": "EUDatagrid", + "osi_license_key": "EUDatagrid", + "text_urls": [ + "http://eu-datagrid.web.cern.ch/eu-datagrid/license.html" + ], + "osi_url": "http://www.opensource.org/licenses/eudatagrid.php", + "other_urls": [ + "http://www.eu-egee.org/", + "http://www.opensource.org/licenses/EUDatagrid", + "https://opensource.org/licenses/EUDatagrid" + ], + "ignorable_copyrights": [ + "Copyright (c) 2001 EU DataGrid" + ], + "ignorable_holders": [ + "EU DataGrid" + ], + "ignorable_authors": [ + "hep-project-grid-edg-license@cern.ch", + "the EU DataGrid (http://www.eu-datagrid.org/)" + ], + "ignorable_urls": [ + "http://www.eu-datagrid.org/" + ], + "ignorable_emails": [ + "hep-project-grid-edg-license@cern.ch" + ] +} \ No newline at end of file diff --git a/docs/eupl-1.0.LICENSE b/docs/eupl-1.0.LICENSE index 2658f2695d..67f1d55de5 100644 --- a/docs/eupl-1.0.LICENSE +++ b/docs/eupl-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: eupl-1.0 +short_name: EUPL 1.0 +name: European Union Public Licence 1.0 +category: Copyleft +owner: OSOR.eu +homepage_url: http://ec.europa.eu/idabc/en/document/7330.html +spdx_license_key: EUPL-1.0 +text_urls: + - http://ec.europa.eu/idabc/en/document/7330.html +other_urls: + - http://ec.europa.eu/idabc/servlets/Doc027f.pdf?id=31096 +ignorable_copyrights: + - (c) the European Community 2007 +ignorable_holders: + - the European Community +--- + European Union Public Licence V.1.0 EUPL © the European Community 2007 diff --git a/docs/eupl-1.0.html b/docs/eupl-1.0.html index 940030d2ba..3ae9ff9cd2 100644 --- a/docs/eupl-1.0.html +++ b/docs/eupl-1.0.html @@ -314,7 +314,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/eupl-1.0.json b/docs/eupl-1.0.json index 61510d4152..061c4d6635 100644 --- a/docs/eupl-1.0.json +++ b/docs/eupl-1.0.json @@ -1 +1,21 @@ -{"key": "eupl-1.0", "short_name": "EUPL 1.0", "name": "European Union Public Licence 1.0", "category": "Copyleft", "owner": "OSOR.eu", "homepage_url": "http://ec.europa.eu/idabc/en/document/7330.html", "spdx_license_key": "EUPL-1.0", "text_urls": ["http://ec.europa.eu/idabc/en/document/7330.html"], "other_urls": ["http://ec.europa.eu/idabc/servlets/Doc027f.pdf?id=31096"], "ignorable_copyrights": ["(c) the European Community 2007"], "ignorable_holders": ["the European Community"]} \ No newline at end of file +{ + "key": "eupl-1.0", + "short_name": "EUPL 1.0", + "name": "European Union Public Licence 1.0", + "category": "Copyleft", + "owner": "OSOR.eu", + "homepage_url": "http://ec.europa.eu/idabc/en/document/7330.html", + "spdx_license_key": "EUPL-1.0", + "text_urls": [ + "http://ec.europa.eu/idabc/en/document/7330.html" + ], + "other_urls": [ + "http://ec.europa.eu/idabc/servlets/Doc027f.pdf?id=31096" + ], + "ignorable_copyrights": [ + "(c) the European Community 2007" + ], + "ignorable_holders": [ + "the European Community" + ] +} \ No newline at end of file diff --git a/docs/eupl-1.1.LICENSE b/docs/eupl-1.1.LICENSE index 16055de918..1533f03764 100644 --- a/docs/eupl-1.1.LICENSE +++ b/docs/eupl-1.1.LICENSE @@ -1,3 +1,32 @@ +--- +key: eupl-1.1 +short_name: EUPL 1.1 +name: European Union Public Licence 1.1 +category: Copyleft Limited +owner: OSOR.eu +homepage_url: http://ec.europa.eu/idabc/eupl +notes: | + Per SPDX.org, this license was released 16 May 2008 This license is OSI + certified. This license is available in the 22 official languages of the + EU. The English version is included here. +spdx_license_key: EUPL-1.1 +osi_license_key: EUPL-1.1 +text_urls: + - http://ec.europa.eu/idabc/eupl +other_urls: + - http://www.gnu.org/licenses/license-list.html#EUPL + - http://www.opensource.org/licenses/EUPL-1.1 + - http://www.osor.eu/eupl/european-union-public-licence-eupl-v.1.1 + - https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl1.1.-licence-en_0.pdf + - https://joinup.ec.europa.eu/software/page/eupl/licence-eupl + - https://joinup.ec.europa.eu/system/files/EN/EUPL%20v.1.1%20-%20Licence.pdf + - https://opensource.org/licenses/EUPL-1.1 +ignorable_copyrights: + - (c) the European Community 2007 +ignorable_holders: + - the European Community +--- + European Union Public Licence V. 1.1 diff --git a/docs/eupl-1.1.html b/docs/eupl-1.1.html index 6155757179..56823569cc 100644 --- a/docs/eupl-1.1.html +++ b/docs/eupl-1.1.html @@ -439,7 +439,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/eupl-1.1.json b/docs/eupl-1.1.json index dc372a3064..cc9f5c0876 100644 --- a/docs/eupl-1.1.json +++ b/docs/eupl-1.1.json @@ -1 +1,29 @@ -{"key": "eupl-1.1", "short_name": "EUPL 1.1", "name": "European Union Public Licence 1.1", "category": "Copyleft Limited", "owner": "OSOR.eu", "homepage_url": "http://ec.europa.eu/idabc/eupl", "notes": "Per SPDX.org, this license was released 16 May 2008 This license is OSI\ncertified. This license is available in the 22 official languages of the\nEU. The English version is included here.\n", "spdx_license_key": "EUPL-1.1", "osi_license_key": "EUPL-1.1", "text_urls": ["http://ec.europa.eu/idabc/eupl"], "other_urls": ["http://www.gnu.org/licenses/license-list.html#EUPL", "http://www.opensource.org/licenses/EUPL-1.1", "http://www.osor.eu/eupl/european-union-public-licence-eupl-v.1.1", "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl1.1.-licence-en_0.pdf", "https://joinup.ec.europa.eu/software/page/eupl/licence-eupl", "https://joinup.ec.europa.eu/system/files/EN/EUPL%20v.1.1%20-%20Licence.pdf", "https://opensource.org/licenses/EUPL-1.1"], "ignorable_copyrights": ["(c) the European Community 2007"], "ignorable_holders": ["the European Community"]} \ No newline at end of file +{ + "key": "eupl-1.1", + "short_name": "EUPL 1.1", + "name": "European Union Public Licence 1.1", + "category": "Copyleft Limited", + "owner": "OSOR.eu", + "homepage_url": "http://ec.europa.eu/idabc/eupl", + "notes": "Per SPDX.org, this license was released 16 May 2008 This license is OSI\ncertified. This license is available in the 22 official languages of the\nEU. The English version is included here.\n", + "spdx_license_key": "EUPL-1.1", + "osi_license_key": "EUPL-1.1", + "text_urls": [ + "http://ec.europa.eu/idabc/eupl" + ], + "other_urls": [ + "http://www.gnu.org/licenses/license-list.html#EUPL", + "http://www.opensource.org/licenses/EUPL-1.1", + "http://www.osor.eu/eupl/european-union-public-licence-eupl-v.1.1", + "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl1.1.-licence-en_0.pdf", + "https://joinup.ec.europa.eu/software/page/eupl/licence-eupl", + "https://joinup.ec.europa.eu/system/files/EN/EUPL%20v.1.1%20-%20Licence.pdf", + "https://opensource.org/licenses/EUPL-1.1" + ], + "ignorable_copyrights": [ + "(c) the European Community 2007" + ], + "ignorable_holders": [ + "the European Community" + ] +} \ No newline at end of file diff --git a/docs/eupl-1.2.LICENSE b/docs/eupl-1.2.LICENSE index 94f18b36a7..e51c6a8584 100644 --- a/docs/eupl-1.2.LICENSE +++ b/docs/eupl-1.2.LICENSE @@ -1,3 +1,31 @@ +--- +key: eupl-1.2 +short_name: EUPL 1.2 +name: European Union Public Licence 1.2 +category: Copyleft Limited +owner: OSOR.eu +homepage_url: https://joinup.ec.europa.eu/sites/default/files/ckeditor_files/files/EUPL%20v1_2%20EN%20UTF-8.txt +spdx_license_key: EUPL-1.2 +text_urls: + - https://joinup.ec.europa.eu/sites/default/files/ckeditor_files/files/EUPL%20v1_2%20EN%20UTF-8.txt +faq_url: https://joinup.ec.europa.eu/community/eupl/og_page/eupl-text-11-12 +other_urls: + - http://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri=CELEX:32017D0863 + - http://www.opensource.org/licenses/EUPL-1.1 + - https://joinup.ec.europa.eu/page/eupl-text-11-12 + - https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/2020-03/EUPL-1.2%20EN.txt + - https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl_v1.2_en.pdf + - https://joinup.ec.europa.eu/sites/default/files/inline-files/EUPL%20v1_2%20EN(1).txt + - https://opensource.org/licenses/EUPL-1.1 + - https://opensource.org/licenses/EUPL-1.2 +minimum_coverage: 80 +standard_notice: Licensed under the EUPL +ignorable_copyrights: + - (c) the European Union 2007, 2016 +ignorable_holders: + - the European Union +--- + EUROPEAN UNION PUBLIC LICENCE v. 1.2 EUPL © the European Union 2007, 2016 diff --git a/docs/eupl-1.2.html b/docs/eupl-1.2.html index ec784170df..8f3ede02b8 100644 --- a/docs/eupl-1.2.html +++ b/docs/eupl-1.2.html @@ -295,7 +295,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/eupl-1.2.json b/docs/eupl-1.2.json index f8aeb60353..06a01eff5e 100644 --- a/docs/eupl-1.2.json +++ b/docs/eupl-1.2.json @@ -1 +1,31 @@ -{"key": "eupl-1.2", "short_name": "EUPL 1.2", "name": "European Union Public Licence 1.2", "category": "Copyleft Limited", "owner": "OSOR.eu", "homepage_url": "https://joinup.ec.europa.eu/sites/default/files/ckeditor_files/files/EUPL%20v1_2%20EN%20UTF-8.txt", "spdx_license_key": "EUPL-1.2", "text_urls": ["https://joinup.ec.europa.eu/sites/default/files/ckeditor_files/files/EUPL%20v1_2%20EN%20UTF-8.txt"], "faq_url": "https://joinup.ec.europa.eu/community/eupl/og_page/eupl-text-11-12", "other_urls": ["http://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri=CELEX:32017D0863", "http://www.opensource.org/licenses/EUPL-1.1", "https://joinup.ec.europa.eu/page/eupl-text-11-12", "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/2020-03/EUPL-1.2%20EN.txt", "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl_v1.2_en.pdf", "https://joinup.ec.europa.eu/sites/default/files/inline-files/EUPL%20v1_2%20EN(1).txt", "https://opensource.org/licenses/EUPL-1.1", "https://opensource.org/licenses/EUPL-1.2"], "minimum_coverage": 80, "standard_notice": "Licensed under the EUPL", "ignorable_copyrights": ["(c) the European Union 2007, 2016"], "ignorable_holders": ["the European Union"]} \ No newline at end of file +{ + "key": "eupl-1.2", + "short_name": "EUPL 1.2", + "name": "European Union Public Licence 1.2", + "category": "Copyleft Limited", + "owner": "OSOR.eu", + "homepage_url": "https://joinup.ec.europa.eu/sites/default/files/ckeditor_files/files/EUPL%20v1_2%20EN%20UTF-8.txt", + "spdx_license_key": "EUPL-1.2", + "text_urls": [ + "https://joinup.ec.europa.eu/sites/default/files/ckeditor_files/files/EUPL%20v1_2%20EN%20UTF-8.txt" + ], + "faq_url": "https://joinup.ec.europa.eu/community/eupl/og_page/eupl-text-11-12", + "other_urls": [ + "http://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri=CELEX:32017D0863", + "http://www.opensource.org/licenses/EUPL-1.1", + "https://joinup.ec.europa.eu/page/eupl-text-11-12", + "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/2020-03/EUPL-1.2%20EN.txt", + "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl_v1.2_en.pdf", + "https://joinup.ec.europa.eu/sites/default/files/inline-files/EUPL%20v1_2%20EN(1).txt", + "https://opensource.org/licenses/EUPL-1.1", + "https://opensource.org/licenses/EUPL-1.2" + ], + "minimum_coverage": 80, + "standard_notice": "Licensed under the EUPL", + "ignorable_copyrights": [ + "(c) the European Union 2007, 2016" + ], + "ignorable_holders": [ + "the European Union" + ] +} \ No newline at end of file diff --git a/docs/eurosym.LICENSE b/docs/eurosym.LICENSE index f306d8df87..a59cbf0cc4 100644 --- a/docs/eurosym.LICENSE +++ b/docs/eurosym.LICENSE @@ -1,3 +1,15 @@ +--- +key: eurosym +short_name: Eurosym License +name: Eurosym License +category: Copyleft Limited +owner: Henrik Theiling +homepage_url: https://fedoraproject.org/wiki/Licensing:Eurosym?rd=Licensing/Eurosym +spdx_license_key: Eurosym +other_urls: + - https://fedoraproject.org/wiki/Licensing/Eurosym +--- + Licence Version 2 This software is provided 'as-is', without warranty of any kind, express or implied. In no event will the authors or copyright holders be held liable for any damages arising from the use of this software. @@ -14,4 +26,4 @@ Permission is granted to anyone to use this software for any purpose, including 5. This notice may not be removed or altered from any source distribution. -This licence is governed by the Laws of Germany. Disputes shall be settled by Saarbruecken City Court. +This licence is governed by the Laws of Germany. Disputes shall be settled by Saarbruecken City Court. \ No newline at end of file diff --git a/docs/eurosym.html b/docs/eurosym.html index 2f9521c0e9..00cd607114 100644 --- a/docs/eurosym.html +++ b/docs/eurosym.html @@ -140,8 +140,7 @@ 5. This notice may not be removed or altered from any source distribution. -This licence is governed by the Laws of Germany. Disputes shall be settled by Saarbruecken City Court. - +This licence is governed by the Laws of Germany. Disputes shall be settled by Saarbruecken City Court.
@@ -153,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/eurosym.json b/docs/eurosym.json index e02b65f31e..763dd94678 100644 --- a/docs/eurosym.json +++ b/docs/eurosym.json @@ -1 +1,12 @@ -{"key": "eurosym", "short_name": "Eurosym License", "name": "Eurosym License", "category": "Copyleft Limited", "owner": "Henrik Theiling", "homepage_url": "https://fedoraproject.org/wiki/Licensing:Eurosym?rd=Licensing/Eurosym", "spdx_license_key": "Eurosym", "other_urls": ["https://fedoraproject.org/wiki/Licensing/Eurosym"]} \ No newline at end of file +{ + "key": "eurosym", + "short_name": "Eurosym License", + "name": "Eurosym License", + "category": "Copyleft Limited", + "owner": "Henrik Theiling", + "homepage_url": "https://fedoraproject.org/wiki/Licensing:Eurosym?rd=Licensing/Eurosym", + "spdx_license_key": "Eurosym", + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/Eurosym" + ] +} \ No newline at end of file diff --git a/docs/examdiff.LICENSE b/docs/examdiff.LICENSE index 8142c3d826..211449276f 100644 --- a/docs/examdiff.LICENSE +++ b/docs/examdiff.LICENSE @@ -1,3 +1,13 @@ +--- +key: examdiff +short_name: ExamDiff License +name: ExamDiff License +category: Proprietary Free +owner: PrestoSoft LLC. +homepage_url: http://www.prestosoft.com/edp_examdiff.asp +spdx_license_key: LicenseRef-scancode-examdiff +--- + DISCLAIMER: DISCLAIMER OF WARRANTY diff --git a/docs/examdiff.html b/docs/examdiff.html index 51d73d47ee..4f993acfc5 100644 --- a/docs/examdiff.html +++ b/docs/examdiff.html @@ -159,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/examdiff.json b/docs/examdiff.json index a89e175719..9abb81ae10 100644 --- a/docs/examdiff.json +++ b/docs/examdiff.json @@ -1 +1,9 @@ -{"key": "examdiff", "short_name": "ExamDiff License", "name": "ExamDiff License", "category": "Proprietary Free", "owner": "PrestoSoft LLC.", "homepage_url": "http://www.prestosoft.com/edp_examdiff.asp", "spdx_license_key": "LicenseRef-scancode-examdiff"} \ No newline at end of file +{ + "key": "examdiff", + "short_name": "ExamDiff License", + "name": "ExamDiff License", + "category": "Proprietary Free", + "owner": "PrestoSoft LLC.", + "homepage_url": "http://www.prestosoft.com/edp_examdiff.asp", + "spdx_license_key": "LicenseRef-scancode-examdiff" +} \ No newline at end of file diff --git a/docs/excelsior-jet-runtime.LICENSE b/docs/excelsior-jet-runtime.LICENSE index 3e9f69aae5..d3ad434b3e 100644 --- a/docs/excelsior-jet-runtime.LICENSE +++ b/docs/excelsior-jet-runtime.LICENSE @@ -1,3 +1,16 @@ +--- +key: excelsior-jet-runtime +short_name: Excelsior JET Runtime License +name: Excelsior JET Runtime License +category: Commercial +owner: Excelsior +homepage_url: http://www.excelsior-usa.com/jetlicenses.html +spdx_license_key: LicenseRef-scancode-excelsior-jet-runtime +ignorable_urls: + - http://www.excelsior-usa.com/fees.html + - http://www.excelsior-usa.com/pdf/iltemplate.pdf +--- + Excelsior JET Licensing Terms and Conditions Production and Redistribution Use Production use and redistribution use of Excelsior JET Runtime is permitted only in conjunction with and as part of your software product. diff --git a/docs/excelsior-jet-runtime.html b/docs/excelsior-jet-runtime.html index f3c46fdb97..149a60cf10 100644 --- a/docs/excelsior-jet-runtime.html +++ b/docs/excelsior-jet-runtime.html @@ -176,7 +176,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/excelsior-jet-runtime.json b/docs/excelsior-jet-runtime.json index ae184ec66f..41071c4921 100644 --- a/docs/excelsior-jet-runtime.json +++ b/docs/excelsior-jet-runtime.json @@ -1 +1,13 @@ -{"key": "excelsior-jet-runtime", "short_name": "Excelsior JET Runtime License", "name": "Excelsior JET Runtime License", "category": "Commercial", "owner": "Excelsior", "homepage_url": "http://www.excelsior-usa.com/jetlicenses.html", "spdx_license_key": "LicenseRef-scancode-excelsior-jet-runtime", "ignorable_urls": ["http://www.excelsior-usa.com/fees.html", "http://www.excelsior-usa.com/pdf/iltemplate.pdf"]} \ No newline at end of file +{ + "key": "excelsior-jet-runtime", + "short_name": "Excelsior JET Runtime License", + "name": "Excelsior JET Runtime License", + "category": "Commercial", + "owner": "Excelsior", + "homepage_url": "http://www.excelsior-usa.com/jetlicenses.html", + "spdx_license_key": "LicenseRef-scancode-excelsior-jet-runtime", + "ignorable_urls": [ + "http://www.excelsior-usa.com/fees.html", + "http://www.excelsior-usa.com/pdf/iltemplate.pdf" + ] +} \ No newline at end of file diff --git a/docs/fabien-tassin.LICENSE b/docs/fabien-tassin.LICENSE index 58c3ce6590..d4036b3b88 100644 --- a/docs/fabien-tassin.LICENSE +++ b/docs/fabien-tassin.LICENSE @@ -1,3 +1,13 @@ +--- +key: fabien-tassin +short_name: Fabien Tassin License +name: Fabien Tassin License +category: Permissive +owner: Fabien Tassin +homepage_url: http://search.cpan.org/~ftassin/SNMP-MIB-Compiler-0.06/lib/SNMP/MIB/Compiler.pm#COPYRIGHT +spdx_license_key: LicenseRef-scancode-fabien-tassin +--- + It may be used and modified freely, but I do request that this copyright notice remain attached to the file. You may modify this module as you wish, but if you redistribute a modified version, please attach a note diff --git a/docs/fabien-tassin.html b/docs/fabien-tassin.html index 2e98ff9f30..4435615d6b 100644 --- a/docs/fabien-tassin.html +++ b/docs/fabien-tassin.html @@ -130,7 +130,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fabien-tassin.json b/docs/fabien-tassin.json index 67d13f96a5..b11a2f836e 100644 --- a/docs/fabien-tassin.json +++ b/docs/fabien-tassin.json @@ -1 +1,9 @@ -{"key": "fabien-tassin", "short_name": "Fabien Tassin License", "name": "Fabien Tassin License", "category": "Permissive", "owner": "Fabien Tassin", "homepage_url": "http://search.cpan.org/~ftassin/SNMP-MIB-Compiler-0.06/lib/SNMP/MIB/Compiler.pm#COPYRIGHT", "spdx_license_key": "LicenseRef-scancode-fabien-tassin"} \ No newline at end of file +{ + "key": "fabien-tassin", + "short_name": "Fabien Tassin License", + "name": "Fabien Tassin License", + "category": "Permissive", + "owner": "Fabien Tassin", + "homepage_url": "http://search.cpan.org/~ftassin/SNMP-MIB-Compiler-0.06/lib/SNMP/MIB/Compiler.pm#COPYRIGHT", + "spdx_license_key": "LicenseRef-scancode-fabien-tassin" +} \ No newline at end of file diff --git a/docs/fabric-agreement-2017.LICENSE b/docs/fabric-agreement-2017.LICENSE index 6331996c60..43f358254b 100644 --- a/docs/fabric-agreement-2017.LICENSE +++ b/docs/fabric-agreement-2017.LICENSE @@ -1,3 +1,12 @@ +--- +key: fabric-agreement-2017 +short_name: Fabric Software and Services Agreement 2017 +name: Fabric Software and Services Agreement 2017 +category: Commercial +owner: Google +spdx_license_key: LicenseRef-scancode-fabric-agreement-2017 +--- + Fabric Software and Services Agreement Last Updated: January 27, 2017 diff --git a/docs/fabric-agreement-2017.html b/docs/fabric-agreement-2017.html index 74ef1e5d73..2fd567e352 100644 --- a/docs/fabric-agreement-2017.html +++ b/docs/fabric-agreement-2017.html @@ -262,7 +262,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fabric-agreement-2017.json b/docs/fabric-agreement-2017.json index fe905f5560..97b8431fd7 100644 --- a/docs/fabric-agreement-2017.json +++ b/docs/fabric-agreement-2017.json @@ -1 +1,8 @@ -{"key": "fabric-agreement-2017", "short_name": "Fabric Software and Services Agreement 2017", "name": "Fabric Software and Services Agreement 2017", "category": "Commercial", "owner": "Google", "spdx_license_key": "LicenseRef-scancode-fabric-agreement-2017"} \ No newline at end of file +{ + "key": "fabric-agreement-2017", + "short_name": "Fabric Software and Services Agreement 2017", + "name": "Fabric Software and Services Agreement 2017", + "category": "Commercial", + "owner": "Google", + "spdx_license_key": "LicenseRef-scancode-fabric-agreement-2017" +} \ No newline at end of file diff --git a/docs/facebook-nuclide.LICENSE b/docs/facebook-nuclide.LICENSE index 756ccf5a6e..eab0e82630 100644 --- a/docs/facebook-nuclide.LICENSE +++ b/docs/facebook-nuclide.LICENSE @@ -1,3 +1,15 @@ +--- +key: facebook-nuclide +short_name: Facebook Nuclide Software License +name: Facebook License Agreement for Nuclide Software +category: Proprietary Free +owner: Facebook +homepage_url: https://github.com/facebook/nuclide/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-facebook-nuclide +text_urls: + - https://github.com/facebook/nuclide/blob/e961c4d3461c3abc35a6f8ccaf3f6e959b622f1e/LICENSE +--- + Facebook, Inc. ("Facebook") owns all right, title and interest, including all intellectual property and other proprietary rights, in and to the Nuclide software (the "Software"). Subject to your compliance with these terms, you are @@ -17,4 +29,4 @@ 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 THE SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY -OF SUCH DAMAGE. +OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/facebook-nuclide.html b/docs/facebook-nuclide.html index 501c7a12ee..a9491a294e 100644 --- a/docs/facebook-nuclide.html +++ b/docs/facebook-nuclide.html @@ -143,8 +143,7 @@ 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 THE SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY -OF SUCH DAMAGE. - +OF SUCH DAMAGE.
@@ -156,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/facebook-nuclide.json b/docs/facebook-nuclide.json index 60712aa346..aaa9ee357c 100644 --- a/docs/facebook-nuclide.json +++ b/docs/facebook-nuclide.json @@ -1 +1,12 @@ -{"key": "facebook-nuclide", "short_name": "Facebook Nuclide Software License", "name": "Facebook License Agreement for Nuclide Software", "category": "Proprietary Free", "owner": "Facebook", "homepage_url": "https://github.com/facebook/nuclide/blob/master/LICENSE", "spdx_license_key": "LicenseRef-scancode-facebook-nuclide", "text_urls": ["https://github.com/facebook/nuclide/blob/e961c4d3461c3abc35a6f8ccaf3f6e959b622f1e/LICENSE"]} \ No newline at end of file +{ + "key": "facebook-nuclide", + "short_name": "Facebook Nuclide Software License", + "name": "Facebook License Agreement for Nuclide Software", + "category": "Proprietary Free", + "owner": "Facebook", + "homepage_url": "https://github.com/facebook/nuclide/blob/master/LICENSE", + "spdx_license_key": "LicenseRef-scancode-facebook-nuclide", + "text_urls": [ + "https://github.com/facebook/nuclide/blob/e961c4d3461c3abc35a6f8ccaf3f6e959b622f1e/LICENSE" + ] +} \ No newline at end of file diff --git a/docs/facebook-patent-rights-2.LICENSE b/docs/facebook-patent-rights-2.LICENSE index e8c86d5fbe..81b043d14f 100644 --- a/docs/facebook-patent-rights-2.LICENSE +++ b/docs/facebook-patent-rights-2.LICENSE @@ -1,3 +1,23 @@ +--- +key: facebook-patent-rights-2 +short_name: Facebook Patent Rights 2 +name: Facebook Additional Grant of Patent Rights Version 2 +category: Patent License +owner: Facebook +homepage_url: https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS +notes: | + this is a patents grant and obligations notice available in several + Facebook open source components since 2015 typically associated with a bsd- + new license. +spdx_license_key: LicenseRef-scancode-facebook-patent-rights-2 +text_urls: + - https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS + - https://github.com/facebook/react/blob/56e20b4ab5899127b67b4a31cfd7b4bf1fc79616/PATENTS + - https://github.com/facebook/xhp-lib/blob/571674608bb099c2ce01952816f606e6781dd475/PATENTS + - https://github.com/facebookresearch/fastText/blob/1826a12da3f983daceae0af3def95b1fa763b649/PATENTS +faq_url: https://code.facebook.com/posts/1639473982937255/updating-our-open-source-patent-grant/ +--- + Additional Grant of Patent Rights Version 2 "Software" means the software distributed by Facebook, Inc. @@ -30,4 +50,4 @@ necessarily infringed by the Software standing alone. A "Patent Assertion" is any lawsuit or other action alleging direct, indirect, or contributory infringement or inducement to infringe any patent, including a -cross-claim or counterclaim. +cross-claim or counterclaim. \ No newline at end of file diff --git a/docs/facebook-patent-rights-2.html b/docs/facebook-patent-rights-2.html index c08ccb962c..ab3fa4cd9e 100644 --- a/docs/facebook-patent-rights-2.html +++ b/docs/facebook-patent-rights-2.html @@ -173,8 +173,7 @@ A "Patent Assertion" is any lawsuit or other action alleging direct, indirect, or contributory infringement or inducement to infringe any patent, including a -cross-claim or counterclaim. - +cross-claim or counterclaim.
@@ -186,7 +185,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/facebook-patent-rights-2.json b/docs/facebook-patent-rights-2.json index bddcc71cb0..28aec458e0 100644 --- a/docs/facebook-patent-rights-2.json +++ b/docs/facebook-patent-rights-2.json @@ -1 +1,17 @@ -{"key": "facebook-patent-rights-2", "short_name": "Facebook Patent Rights 2", "name": "Facebook Additional Grant of Patent Rights Version 2", "category": "Patent License", "owner": "Facebook", "homepage_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", "notes": "this is a patents grant and obligations notice available in several\nFacebook open source components since 2015 typically associated with a bsd-\nnew license.\n", "spdx_license_key": "LicenseRef-scancode-facebook-patent-rights-2", "text_urls": ["https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", "https://github.com/facebook/react/blob/56e20b4ab5899127b67b4a31cfd7b4bf1fc79616/PATENTS", "https://github.com/facebook/xhp-lib/blob/571674608bb099c2ce01952816f606e6781dd475/PATENTS", "https://github.com/facebookresearch/fastText/blob/1826a12da3f983daceae0af3def95b1fa763b649/PATENTS"], "faq_url": "https://code.facebook.com/posts/1639473982937255/updating-our-open-source-patent-grant/"} \ No newline at end of file +{ + "key": "facebook-patent-rights-2", + "short_name": "Facebook Patent Rights 2", + "name": "Facebook Additional Grant of Patent Rights Version 2", + "category": "Patent License", + "owner": "Facebook", + "homepage_url": "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "notes": "this is a patents grant and obligations notice available in several\nFacebook open source components since 2015 typically associated with a bsd-\nnew license.\n", + "spdx_license_key": "LicenseRef-scancode-facebook-patent-rights-2", + "text_urls": [ + "https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS", + "https://github.com/facebook/react/blob/56e20b4ab5899127b67b4a31cfd7b4bf1fc79616/PATENTS", + "https://github.com/facebook/xhp-lib/blob/571674608bb099c2ce01952816f606e6781dd475/PATENTS", + "https://github.com/facebookresearch/fastText/blob/1826a12da3f983daceae0af3def95b1fa763b649/PATENTS" + ], + "faq_url": "https://code.facebook.com/posts/1639473982937255/updating-our-open-source-patent-grant/" +} \ No newline at end of file diff --git a/docs/facebook-software-license.LICENSE b/docs/facebook-software-license.LICENSE index bb3da3fb37..c762ac7c07 100644 --- a/docs/facebook-software-license.LICENSE +++ b/docs/facebook-software-license.LICENSE @@ -1,3 +1,20 @@ +--- +key: facebook-software-license +short_name: Facebook Software License +name: Facebook Software License +category: Proprietary Free +owner: Facebook +notes: license found in several Facebook SDKs +spdx_license_key: LicenseRef-scancode-facebook-software-license +text_urls: + - https://github.com/facebook/facebook-android-sdk/blob/752ea7b77a1779ed8b784dbd55a886cc00aeb8a6/LICENSE.txt + - https://github.com/facebook/facebook-android-sdk/blob/master/LICENSE.txt + - https://github.com/facebook/facebook-ios-sdk/blob/master/LICENSE +faq_url: http://developers.facebook.com/policy/ +ignorable_urls: + - http://developers.facebook.com/policy/ +--- + You are hereby granted a non-exclusive, worldwide, royalty-free license to use, copy, modify, and distribute this software in source code or binary form for use in connection with the web services and APIs provided by Facebook. diff --git a/docs/facebook-software-license.html b/docs/facebook-software-license.html index 9613eff890..eebd04c057 100644 --- a/docs/facebook-software-license.html +++ b/docs/facebook-software-license.html @@ -166,7 +166,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/facebook-software-license.json b/docs/facebook-software-license.json index b20ef206ec..717c431e63 100644 --- a/docs/facebook-software-license.json +++ b/docs/facebook-software-license.json @@ -1 +1,18 @@ -{"key": "facebook-software-license", "short_name": "Facebook Software License", "name": "Facebook Software License", "category": "Proprietary Free", "owner": "Facebook", "notes": "license found in several Facebook SDKs", "spdx_license_key": "LicenseRef-scancode-facebook-software-license", "text_urls": ["https://github.com/facebook/facebook-android-sdk/blob/752ea7b77a1779ed8b784dbd55a886cc00aeb8a6/LICENSE.txt", "https://github.com/facebook/facebook-android-sdk/blob/master/LICENSE.txt", "https://github.com/facebook/facebook-ios-sdk/blob/master/LICENSE"], "faq_url": "http://developers.facebook.com/policy/", "ignorable_urls": ["http://developers.facebook.com/policy/"]} \ No newline at end of file +{ + "key": "facebook-software-license", + "short_name": "Facebook Software License", + "name": "Facebook Software License", + "category": "Proprietary Free", + "owner": "Facebook", + "notes": "license found in several Facebook SDKs", + "spdx_license_key": "LicenseRef-scancode-facebook-software-license", + "text_urls": [ + "https://github.com/facebook/facebook-android-sdk/blob/752ea7b77a1779ed8b784dbd55a886cc00aeb8a6/LICENSE.txt", + "https://github.com/facebook/facebook-android-sdk/blob/master/LICENSE.txt", + "https://github.com/facebook/facebook-ios-sdk/blob/master/LICENSE" + ], + "faq_url": "http://developers.facebook.com/policy/", + "ignorable_urls": [ + "http://developers.facebook.com/policy/" + ] +} \ No newline at end of file diff --git a/docs/fair-source-0.9.LICENSE b/docs/fair-source-0.9.LICENSE index 47b082e1ec..40d7eb2eef 100644 --- a/docs/fair-source-0.9.LICENSE +++ b/docs/fair-source-0.9.LICENSE @@ -1,3 +1,19 @@ +--- +key: fair-source-0.9 +short_name: Fair Source v0.9 +name: Fair Source License v0.9 +category: Source-available +owner: Fair Source +homepage_url: https://fair.io/ +spdx_license_key: LicenseRef-scancode-fair-source-0.9 +text_urls: + - https://fair.io/#license + - https://github.com/fairsource/fairsource/blob/master/fair-source-license-v0.9.txt +faq_url: https://fair.io/#faq +other_urls: + - https://github.com/search?p=2&q=%22Fair+Source+License%22&type=Code +--- + Fair Source License, version 0.9 Copyright © [year] [copyright owner] diff --git a/docs/fair-source-0.9.html b/docs/fair-source-0.9.html index b17fb7c904..ed4beaaa0b 100644 --- a/docs/fair-source-0.9.html +++ b/docs/fair-source-0.9.html @@ -171,7 +171,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fair-source-0.9.json b/docs/fair-source-0.9.json index 607c316a6e..348d0b7954 100644 --- a/docs/fair-source-0.9.json +++ b/docs/fair-source-0.9.json @@ -1 +1,17 @@ -{"key": "fair-source-0.9", "short_name": "Fair Source v0.9", "name": "Fair Source License v0.9", "category": "Source-available", "owner": "Fair Source", "homepage_url": "https://fair.io/", "spdx_license_key": "LicenseRef-scancode-fair-source-0.9", "text_urls": ["https://fair.io/#license", "https://github.com/fairsource/fairsource/blob/master/fair-source-license-v0.9.txt"], "faq_url": "https://fair.io/#faq", "other_urls": ["https://github.com/search?p=2&q=%22Fair+Source+License%22&type=Code"]} \ No newline at end of file +{ + "key": "fair-source-0.9", + "short_name": "Fair Source v0.9", + "name": "Fair Source License v0.9", + "category": "Source-available", + "owner": "Fair Source", + "homepage_url": "https://fair.io/", + "spdx_license_key": "LicenseRef-scancode-fair-source-0.9", + "text_urls": [ + "https://fair.io/#license", + "https://github.com/fairsource/fairsource/blob/master/fair-source-license-v0.9.txt" + ], + "faq_url": "https://fair.io/#faq", + "other_urls": [ + "https://github.com/search?p=2&q=%22Fair+Source+License%22&type=Code" + ] +} \ No newline at end of file diff --git a/docs/fair.LICENSE b/docs/fair.LICENSE index cc2ca936fe..8f1ccae45b 100644 --- a/docs/fair.LICENSE +++ b/docs/fair.LICENSE @@ -1,5 +1,24 @@ +--- +key: fair +short_name: Fair License +name: Fair License +category: Permissive +owner: OSI - Open Source Initiative +homepage_url: http://opensource.org/licenses/fair.php +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: Fair +text_urls: + - http://opensource.org/licenses/fair.php +osi_url: http://opensource.org/licenses/fair.php +other_urls: + - http://fairlicense.org/ + - http://www.opensource.org/licenses/Fair + - https://opensource.org/licenses/Fair + - http://rhid.com/fair +--- + Usage of the works is permitted provided that this instrument is retained with the works, so that any entity that uses the works is notified of this instrument. -DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY. +DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY. \ No newline at end of file diff --git a/docs/fair.html b/docs/fair.html index b5a960b3a4..09a1da454f 100644 --- a/docs/fair.html +++ b/docs/fair.html @@ -151,8 +151,7 @@ the works, so that any entity that uses the works is notified of this instrument. -DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY. - +DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY.
@@ -164,7 +163,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fair.json b/docs/fair.json index 54750a3a47..9402a9ce32 100644 --- a/docs/fair.json +++ b/docs/fair.json @@ -1 +1,20 @@ -{"key": "fair", "short_name": "Fair License", "name": "Fair License", "category": "Permissive", "owner": "OSI - Open Source Initiative", "homepage_url": "http://opensource.org/licenses/fair.php", "notes": "Per SPDX.org, this license is OSI certified", "spdx_license_key": "Fair", "text_urls": ["http://opensource.org/licenses/fair.php"], "osi_url": "http://opensource.org/licenses/fair.php", "other_urls": ["http://fairlicense.org/", "http://www.opensource.org/licenses/Fair", "https://opensource.org/licenses/Fair", "http://rhid.com/fair"]} \ No newline at end of file +{ + "key": "fair", + "short_name": "Fair License", + "name": "Fair License", + "category": "Permissive", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://opensource.org/licenses/fair.php", + "notes": "Per SPDX.org, this license is OSI certified", + "spdx_license_key": "Fair", + "text_urls": [ + "http://opensource.org/licenses/fair.php" + ], + "osi_url": "http://opensource.org/licenses/fair.php", + "other_urls": [ + "http://fairlicense.org/", + "http://www.opensource.org/licenses/Fair", + "https://opensource.org/licenses/Fair", + "http://rhid.com/fair" + ] +} \ No newline at end of file diff --git a/docs/fancyzoom.LICENSE b/docs/fancyzoom.LICENSE index 52dd78d7c7..4b3367eb24 100644 --- a/docs/fancyzoom.LICENSE +++ b/docs/fancyzoom.LICENSE @@ -1,3 +1,16 @@ +--- +key: fancyzoom +short_name: FancyZoom License +name: FancyZoom License +category: Proprietary Free +owner: Cabel Sasser +spdx_license_key: LicenseRef-scancode-fancyzoom +other_urls: + - http://www.cabel.name/2008/02/fancyzoom-10.html +ignorable_urls: + - http://www.fancyzoom.com/ +--- + Redistribution and use of this effect in source form, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/fancyzoom.html b/docs/fancyzoom.html index e9e355ce23..34c48976dc 100644 --- a/docs/fancyzoom.html +++ b/docs/fancyzoom.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fancyzoom.json b/docs/fancyzoom.json index 4aa0131958..56d9b786a7 100644 --- a/docs/fancyzoom.json +++ b/docs/fancyzoom.json @@ -1 +1,14 @@ -{"key": "fancyzoom", "short_name": "FancyZoom License", "name": "FancyZoom License", "category": "Proprietary Free", "owner": "Cabel Sasser", "spdx_license_key": "LicenseRef-scancode-fancyzoom", "other_urls": ["http://www.cabel.name/2008/02/fancyzoom-10.html"], "ignorable_urls": ["http://www.fancyzoom.com/"]} \ No newline at end of file +{ + "key": "fancyzoom", + "short_name": "FancyZoom License", + "name": "FancyZoom License", + "category": "Proprietary Free", + "owner": "Cabel Sasser", + "spdx_license_key": "LicenseRef-scancode-fancyzoom", + "other_urls": [ + "http://www.cabel.name/2008/02/fancyzoom-10.html" + ], + "ignorable_urls": [ + "http://www.fancyzoom.com/" + ] +} \ No newline at end of file diff --git a/docs/far-manager-exception.LICENSE b/docs/far-manager-exception.LICENSE index 3b215b772f..6a2bd3401f 100644 --- a/docs/far-manager-exception.LICENSE +++ b/docs/far-manager-exception.LICENSE @@ -1,3 +1,43 @@ +--- +key: far-manager-exception +short_name: Far Manager exception to BSD-3-Clause +name: Far Manager exception to BSD-3-Clause +category: Permissive +owner: Far Group +is_exception: yes +spdx_license_key: LicenseRef-scancode-far-manager-exception +standard_notice: | + Copyright (c) 1996 Eugene Roshal + Copyright (c) 2000 Far Group + 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 authors 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. + EXCEPTION: + Far Manager plugins that use only the following header files from this + distribution (none or any): farcolor.hpp, farkeys.hpp, plugin.hpp, + farcolorW.pas, farkeysW.pas and pluginW.pas; can be distributed under any + other + possible license with no implications from the above license on them. +--- + EXCEPTION: Far Manager plugins that use only the following header files from this distribution (none or any): farcolor.hpp, farkeys.hpp, plugin.hpp, diff --git a/docs/far-manager-exception.html b/docs/far-manager-exception.html index 179b0f3a50..2616b68871 100644 --- a/docs/far-manager-exception.html +++ b/docs/far-manager-exception.html @@ -167,7 +167,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/far-manager-exception.json b/docs/far-manager-exception.json index ff39cef6b0..691dd87923 100644 --- a/docs/far-manager-exception.json +++ b/docs/far-manager-exception.json @@ -1 +1,10 @@ -{"key": "far-manager-exception", "short_name": "Far Manager exception to BSD-3-Clause", "name": "Far Manager exception to BSD-3-Clause", "category": "Permissive", "owner": "Far Group", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-far-manager-exception", "standard_notice": "Copyright (c) 1996 Eugene Roshal\nCopyright (c) 2000 Far Group\nAll rights reserved.\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n3. The name of the authors may not be used to endorse or promote products\nderived from this software without specific prior written permission.\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\nIN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nEXCEPTION:\nFar Manager plugins that use only the following header files from this\ndistribution (none or any): farcolor.hpp, farkeys.hpp, plugin.hpp,\nfarcolorW.pas, farkeysW.pas and pluginW.pas; can be distributed under any\nother\npossible license with no implications from the above license on them.\n"} \ No newline at end of file +{ + "key": "far-manager-exception", + "short_name": "Far Manager exception to BSD-3-Clause", + "name": "Far Manager exception to BSD-3-Clause", + "category": "Permissive", + "owner": "Far Group", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-far-manager-exception", + "standard_notice": "Copyright (c) 1996 Eugene Roshal\nCopyright (c) 2000 Far Group\nAll rights reserved.\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n3. The name of the authors may not be used to endorse or promote products\nderived from this software without specific prior written permission.\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\nIN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nEXCEPTION:\nFar Manager plugins that use only the following header files from this\ndistribution (none or any): farcolor.hpp, farkeys.hpp, plugin.hpp,\nfarcolorW.pas, farkeysW.pas and pluginW.pas; can be distributed under any\nother\npossible license with no implications from the above license on them.\n" +} \ No newline at end of file diff --git a/docs/fastbuild-2012-2020.LICENSE b/docs/fastbuild-2012-2020.LICENSE index ed90a85b6a..dc9512fcd2 100644 --- a/docs/fastbuild-2012-2020.LICENSE +++ b/docs/fastbuild-2012-2020.LICENSE @@ -1,3 +1,19 @@ +--- +key: fastbuild-2012-2020 +short_name: FASTBuild License 2012-2020 +name: FASTBuild License 2012-2020 +category: Permissive +owner: fastbuild.org +homepage_url: https://www.fastbuild.org/docs/license.html +spdx_license_key: LicenseRef-scancode-fastbuild-2012-2020 +minimum_coverage: 80 +standard_notice: Copyright (c) 2012-2020 Franta Fulin +ignorable_copyrights: + - (c) 2012-2020 Franta Fulin +ignorable_holders: + - Franta Fulin +--- + 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: diff --git a/docs/fastbuild-2012-2020.html b/docs/fastbuild-2012-2020.html index f68faf9655..7b404515e0 100644 --- a/docs/fastbuild-2012-2020.html +++ b/docs/fastbuild-2012-2020.html @@ -169,7 +169,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fastbuild-2012-2020.json b/docs/fastbuild-2012-2020.json index 3eec564dc7..50dbdb9087 100644 --- a/docs/fastbuild-2012-2020.json +++ b/docs/fastbuild-2012-2020.json @@ -1 +1,17 @@ -{"key": "fastbuild-2012-2020", "short_name": "FASTBuild License 2012-2020", "name": "FASTBuild License 2012-2020", "category": "Permissive", "owner": "fastbuild.org", "homepage_url": "https://www.fastbuild.org/docs/license.html", "spdx_license_key": "LicenseRef-scancode-fastbuild-2012-2020", "minimum_coverage": 80, "standard_notice": "Copyright (c) 2012-2020 Franta Fulin", "ignorable_copyrights": ["(c) 2012-2020 Franta Fulin"], "ignorable_holders": ["Franta Fulin"]} \ No newline at end of file +{ + "key": "fastbuild-2012-2020", + "short_name": "FASTBuild License 2012-2020", + "name": "FASTBuild License 2012-2020", + "category": "Permissive", + "owner": "fastbuild.org", + "homepage_url": "https://www.fastbuild.org/docs/license.html", + "spdx_license_key": "LicenseRef-scancode-fastbuild-2012-2020", + "minimum_coverage": 80, + "standard_notice": "Copyright (c) 2012-2020 Franta Fulin", + "ignorable_copyrights": [ + "(c) 2012-2020 Franta Fulin" + ], + "ignorable_holders": [ + "Franta Fulin" + ] +} \ No newline at end of file diff --git a/docs/fastcgi-devkit.LICENSE b/docs/fastcgi-devkit.LICENSE index fe6d4ec3c4..e6cca12094 100644 --- a/docs/fastcgi-devkit.LICENSE +++ b/docs/fastcgi-devkit.LICENSE @@ -1,3 +1,24 @@ +--- +key: fastcgi-devkit +short_name: FastCGI DevKit +name: FastCGI DevKit +category: Permissive +owner: OpenMarket +homepage_url: http://www.fastcgi.com/devkit/LICENSE.TERMS +notes: | + Per Fedora, this license is based on MIT, but contains additional clauses + which make it more than a simple MIT variant, notably, the requirement of + statement of new terms of contributions under a different license. For that + reason, this license is Free, but GPL-incompatible. +spdx_license_key: OML +text_urls: + - https://fedoraproject.org/wiki/Licensing/Open_Market_License +ignorable_copyrights: + - copyrighted by Open Market, Inc 'Open Market +ignorable_holders: + - Open Market, Inc 'Open Market +--- + This FastCGI application library source and object code (the "Software") and its documentation (the "Documentation") are copyrighted by Open Market, Inc ("Open Market"). The following terms diff --git a/docs/fastcgi-devkit.html b/docs/fastcgi-devkit.html index 64a8af33e9..ff5336e2a1 100644 --- a/docs/fastcgi-devkit.html +++ b/docs/fastcgi-devkit.html @@ -192,7 +192,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fastcgi-devkit.json b/docs/fastcgi-devkit.json index df7042dbf0..1753c14eb2 100644 --- a/docs/fastcgi-devkit.json +++ b/docs/fastcgi-devkit.json @@ -1 +1,19 @@ -{"key": "fastcgi-devkit", "short_name": "FastCGI DevKit", "name": "FastCGI DevKit", "category": "Permissive", "owner": "OpenMarket", "homepage_url": "http://www.fastcgi.com/devkit/LICENSE.TERMS", "notes": "Per Fedora, this license is based on MIT, but contains additional clauses\nwhich make it more than a simple MIT variant, notably, the requirement of\nstatement of new terms of contributions under a different license. For that\nreason, this license is Free, but GPL-incompatible.\n", "spdx_license_key": "OML", "text_urls": ["https://fedoraproject.org/wiki/Licensing/Open_Market_License"], "ignorable_copyrights": ["copyrighted by Open Market, Inc 'Open Market"], "ignorable_holders": ["Open Market, Inc 'Open Market"]} \ No newline at end of file +{ + "key": "fastcgi-devkit", + "short_name": "FastCGI DevKit", + "name": "FastCGI DevKit", + "category": "Permissive", + "owner": "OpenMarket", + "homepage_url": "http://www.fastcgi.com/devkit/LICENSE.TERMS", + "notes": "Per Fedora, this license is based on MIT, but contains additional clauses\nwhich make it more than a simple MIT variant, notably, the requirement of\nstatement of new terms of contributions under a different license. For that\nreason, this license is Free, but GPL-incompatible.\n", + "spdx_license_key": "OML", + "text_urls": [ + "https://fedoraproject.org/wiki/Licensing/Open_Market_License" + ], + "ignorable_copyrights": [ + "copyrighted by Open Market, Inc 'Open Market" + ], + "ignorable_holders": [ + "Open Market, Inc 'Open Market" + ] +} \ No newline at end of file diff --git a/docs/fatfs.LICENSE b/docs/fatfs.LICENSE index db4a99a792..8b30f91875 100644 --- a/docs/fatfs.LICENSE +++ b/docs/fatfs.LICENSE @@ -1,3 +1,13 @@ +--- +key: fatfs +short_name: FatFs License +name: FatFs License +category: Permissive +owner: ELM-ChaN +homepage_url: http://elm-chan.org/fsw/ff/doc/appnote.html#license +spdx_license_key: LicenseRef-scancode-fatfs +--- + / FatFs module is an open source software. Redistribution and use of FatFs in / source and binary forms, with or without modification, are permitted provided / that the following condition is met: diff --git a/docs/fatfs.html b/docs/fatfs.html index 3972abbe0a..76fb9dc39f 100644 --- a/docs/fatfs.html +++ b/docs/fatfs.html @@ -137,7 +137,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fatfs.json b/docs/fatfs.json index c5880bafd0..51b182abcf 100644 --- a/docs/fatfs.json +++ b/docs/fatfs.json @@ -1 +1,9 @@ -{"key": "fatfs", "short_name": "FatFs License", "name": "FatFs License", "category": "Permissive", "owner": "ELM-ChaN", "homepage_url": "http://elm-chan.org/fsw/ff/doc/appnote.html#license", "spdx_license_key": "LicenseRef-scancode-fatfs"} \ No newline at end of file +{ + "key": "fatfs", + "short_name": "FatFs License", + "name": "FatFs License", + "category": "Permissive", + "owner": "ELM-ChaN", + "homepage_url": "http://elm-chan.org/fsw/ff/doc/appnote.html#license", + "spdx_license_key": "LicenseRef-scancode-fatfs" +} \ No newline at end of file diff --git a/docs/fawkes-runtime-exception.LICENSE b/docs/fawkes-runtime-exception.LICENSE index 232da66ceb..88a2b71dab 100644 --- a/docs/fawkes-runtime-exception.LICENSE +++ b/docs/fawkes-runtime-exception.LICENSE @@ -1,3 +1,17 @@ +--- +key: fawkes-runtime-exception +short_name: Fawkes Runtime Exception to GPL 2.0 or later +name: Fawkes Runtime Exception to GPL 2.0 or later +category: Copyleft Limited +owner: Fawkes Development Team +homepage_url: https://www.fawkesrobotics.org/about/license/ +is_exception: yes +spdx_license_key: Fawkes-Runtime-exception +other_urls: + - http://www.fawkesrobotics.org/about/license/ + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole diff --git a/docs/fawkes-runtime-exception.html b/docs/fawkes-runtime-exception.html index 8cc4eda0c4..c03ac13dd8 100644 --- a/docs/fawkes-runtime-exception.html +++ b/docs/fawkes-runtime-exception.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fawkes-runtime-exception.json b/docs/fawkes-runtime-exception.json index a3f5f8a2cb..66d6fdc220 100644 --- a/docs/fawkes-runtime-exception.json +++ b/docs/fawkes-runtime-exception.json @@ -1 +1,14 @@ -{"key": "fawkes-runtime-exception", "short_name": "Fawkes Runtime Exception to GPL 2.0 or later", "name": "Fawkes Runtime Exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "Fawkes Development Team", "homepage_url": "https://www.fawkesrobotics.org/about/license/", "is_exception": true, "spdx_license_key": "Fawkes-Runtime-exception", "other_urls": ["http://www.fawkesrobotics.org/about/license/", "http://www.gnu.org/licenses/gpl-2.0.txt"]} \ No newline at end of file +{ + "key": "fawkes-runtime-exception", + "short_name": "Fawkes Runtime Exception to GPL 2.0 or later", + "name": "Fawkes Runtime Exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "Fawkes Development Team", + "homepage_url": "https://www.fawkesrobotics.org/about/license/", + "is_exception": true, + "spdx_license_key": "Fawkes-Runtime-exception", + "other_urls": [ + "http://www.fawkesrobotics.org/about/license/", + "http://www.gnu.org/licenses/gpl-2.0.txt" + ] +} \ No newline at end of file diff --git a/docs/fftpack-2004.LICENSE b/docs/fftpack-2004.LICENSE index be8ed92482..acf12f9b6e 100644 --- a/docs/fftpack-2004.LICENSE +++ b/docs/fftpack-2004.LICENSE @@ -1,3 +1,23 @@ +--- +key: fftpack-2004 +short_name: FFTPACK License 2004 +name: FFTPACK License 2004 +category: Permissive +owner: NCAR +homepage_url: https://github.com/marton78/pffft/blob/master/pffft.c +spdx_license_key: LicenseRef-scancode-fftpack-2004 +text_urls: + - https://bitbucket.org/jpommier/pffft/src/master/pffft.c +other_urls: + - https://github.com/nexB/scancode-toolkit/issues/1978 +standard_notice: | + http://www.cisl.ucar.edu/css/software/fftpack5/ftpk.html + Copyright (c) 2004 the University Corporation for Atmospheric + Research ("UCAR"). All rights reserved. Developed by NCAR's + Computational and Information Systems Laboratory, UCAR, + www.cisl.ucar.edu. +--- + FFTPACK license: Redistribution and use of the Software in source and binary forms, with or without modification, is permitted provided that the diff --git a/docs/fftpack-2004.html b/docs/fftpack-2004.html index c334afa931..19d37b17a7 100644 --- a/docs/fftpack-2004.html +++ b/docs/fftpack-2004.html @@ -184,7 +184,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fftpack-2004.json b/docs/fftpack-2004.json index 543a75be9b..3540e273a8 100644 --- a/docs/fftpack-2004.json +++ b/docs/fftpack-2004.json @@ -1 +1,16 @@ -{"key": "fftpack-2004", "short_name": "FFTPACK License 2004", "name": "FFTPACK License 2004", "category": "Permissive", "owner": "NCAR", "homepage_url": "https://github.com/marton78/pffft/blob/master/pffft.c", "spdx_license_key": "LicenseRef-scancode-fftpack-2004", "text_urls": ["https://bitbucket.org/jpommier/pffft/src/master/pffft.c"], "other_urls": ["https://github.com/nexB/scancode-toolkit/issues/1978"], "standard_notice": "http://www.cisl.ucar.edu/css/software/fftpack5/ftpk.html\nCopyright (c) 2004 the University Corporation for Atmospheric\nResearch (\"UCAR\"). All rights reserved. Developed by NCAR's\nComputational and Information Systems Laboratory, UCAR,\nwww.cisl.ucar.edu.\n"} \ No newline at end of file +{ + "key": "fftpack-2004", + "short_name": "FFTPACK License 2004", + "name": "FFTPACK License 2004", + "category": "Permissive", + "owner": "NCAR", + "homepage_url": "https://github.com/marton78/pffft/blob/master/pffft.c", + "spdx_license_key": "LicenseRef-scancode-fftpack-2004", + "text_urls": [ + "https://bitbucket.org/jpommier/pffft/src/master/pffft.c" + ], + "other_urls": [ + "https://github.com/nexB/scancode-toolkit/issues/1978" + ], + "standard_notice": "http://www.cisl.ucar.edu/css/software/fftpack5/ftpk.html\nCopyright (c) 2004 the University Corporation for Atmospheric\nResearch (\"UCAR\"). All rights reserved. Developed by NCAR's\nComputational and Information Systems Laboratory, UCAR,\nwww.cisl.ucar.edu.\n" +} \ No newline at end of file diff --git a/docs/filament-group-mit.LICENSE b/docs/filament-group-mit.LICENSE index 25d948bbc9..62795869c0 100644 --- a/docs/filament-group-mit.LICENSE +++ b/docs/filament-group-mit.LICENSE @@ -1,3 +1,20 @@ +--- +key: filament-group-mit +short_name: Filament Group MIT License +name: Filament Group MIT License +category: Permissive +owner: Filament Group +homepage_url: http://filamentgroup.com/examples/mit-license.txt +spdx_license_key: LicenseRef-scancode-filament-group-mit +text_urls: + - http://filamentgroup.com/examples/mit-license.txt +minimum_coverage: 85 +ignorable_authors: + - Filament Group, Inc (http://www.filamentgroup.com/) +ignorable_urls: + - http://www.filamentgroup.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 diff --git a/docs/filament-group-mit.html b/docs/filament-group-mit.html index 46f3101536..e6dfd46e30 100644 --- a/docs/filament-group-mit.html +++ b/docs/filament-group-mit.html @@ -184,7 +184,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/filament-group-mit.json b/docs/filament-group-mit.json index 4dec1f6c64..aed8e044d6 100644 --- a/docs/filament-group-mit.json +++ b/docs/filament-group-mit.json @@ -1 +1,19 @@ -{"key": "filament-group-mit", "short_name": "Filament Group MIT License", "name": "Filament Group MIT License", "category": "Permissive", "owner": "Filament Group", "homepage_url": "http://filamentgroup.com/examples/mit-license.txt", "spdx_license_key": "LicenseRef-scancode-filament-group-mit", "text_urls": ["http://filamentgroup.com/examples/mit-license.txt"], "minimum_coverage": 85, "ignorable_authors": ["Filament Group, Inc (http://www.filamentgroup.com/)"], "ignorable_urls": ["http://www.filamentgroup.com/"]} \ No newline at end of file +{ + "key": "filament-group-mit", + "short_name": "Filament Group MIT License", + "name": "Filament Group MIT License", + "category": "Permissive", + "owner": "Filament Group", + "homepage_url": "http://filamentgroup.com/examples/mit-license.txt", + "spdx_license_key": "LicenseRef-scancode-filament-group-mit", + "text_urls": [ + "http://filamentgroup.com/examples/mit-license.txt" + ], + "minimum_coverage": 85, + "ignorable_authors": [ + "Filament Group, Inc (http://www.filamentgroup.com/)" + ], + "ignorable_urls": [ + "http://www.filamentgroup.com/" + ] +} \ No newline at end of file diff --git a/docs/first-works-appreciative-1.2.LICENSE b/docs/first-works-appreciative-1.2.LICENSE index 72d59c627f..4b5f7742b5 100644 --- a/docs/first-works-appreciative-1.2.LICENSE +++ b/docs/first-works-appreciative-1.2.LICENSE @@ -1,3 +1,19 @@ +--- +key: first-works-appreciative-1.2 +short_name: First Works Appreciative License 1.2 +name: First Works Appreciative License 1.2 +category: Proprietary Free +owner: Jonathan Michael Davis +spdx_license_key: LicenseRef-scancode-first-works-appreciative-1.2 +ignorable_copyrights: + - Copyright (c) 2005 Jonathan Michael Davis +ignorable_holders: + - Jonathan Michael Davis +ignorable_emails: + - jon@jondavis.net + - jond_123@hotmail.com +--- + First Works Appreciative License Version 1.2 diff --git a/docs/first-works-appreciative-1.2.html b/docs/first-works-appreciative-1.2.html index 0d5af040fa..810198a211 100644 --- a/docs/first-works-appreciative-1.2.html +++ b/docs/first-works-appreciative-1.2.html @@ -270,7 +270,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/first-works-appreciative-1.2.json b/docs/first-works-appreciative-1.2.json index 85ca5e6ea8..8dc2080f25 100644 --- a/docs/first-works-appreciative-1.2.json +++ b/docs/first-works-appreciative-1.2.json @@ -1 +1,18 @@ -{"key": "first-works-appreciative-1.2", "short_name": "First Works Appreciative License 1.2", "name": "First Works Appreciative License 1.2", "category": "Proprietary Free", "owner": "Jonathan Michael Davis", "spdx_license_key": "LicenseRef-scancode-first-works-appreciative-1.2", "ignorable_copyrights": ["Copyright (c) 2005 Jonathan Michael Davis "], "ignorable_holders": ["Jonathan Michael Davis"], "ignorable_emails": ["jon@jondavis.net", "jond_123@hotmail.com"]} \ No newline at end of file +{ + "key": "first-works-appreciative-1.2", + "short_name": "First Works Appreciative License 1.2", + "name": "First Works Appreciative License 1.2", + "category": "Proprietary Free", + "owner": "Jonathan Michael Davis", + "spdx_license_key": "LicenseRef-scancode-first-works-appreciative-1.2", + "ignorable_copyrights": [ + "Copyright (c) 2005 Jonathan Michael Davis " + ], + "ignorable_holders": [ + "Jonathan Michael Davis" + ], + "ignorable_emails": [ + "jon@jondavis.net", + "jond_123@hotmail.com" + ] +} \ No newline at end of file diff --git a/docs/flex-2.5.LICENSE b/docs/flex-2.5.LICENSE index b9a104a797..093c09b353 100644 --- a/docs/flex-2.5.LICENSE +++ b/docs/flex-2.5.LICENSE @@ -1,3 +1,18 @@ +--- +key: flex-2.5 +short_name: Flex 2.5 +name: Flex License v2.5 +category: Permissive +owner: Regents of the University of California +homepage_url: http://www.cs.princeton.edu/~appel/modern/c/software/flex/flex.html +spdx_license_key: LicenseRef-scancode-flex-2.5 +text_urls: + - http://www.cs.cmu.edu/afs/cs/project/ai-repository-9/ai/areas/nlp/parsing/flex/copying.txt +minimum_coverage: 80 +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + The United States Government has rights in this work pursuant to contract no. DE- AC03-76SF00098 between the United States Department of Energy and the University of California. @@ -14,4 +29,4 @@ permission. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE. +FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/docs/flex-2.5.html b/docs/flex-2.5.html index c8f0e426ec..1f618e7bf5 100644 --- a/docs/flex-2.5.html +++ b/docs/flex-2.5.html @@ -156,8 +156,7 @@ THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE. - +FOR A PARTICULAR PURPOSE.
@@ -169,7 +168,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/flex-2.5.json b/docs/flex-2.5.json index 846c1dd9bb..eee60e6013 100644 --- a/docs/flex-2.5.json +++ b/docs/flex-2.5.json @@ -1 +1,16 @@ -{"key": "flex-2.5", "short_name": "Flex 2.5", "name": "Flex License v2.5", "category": "Permissive", "owner": "Regents of the University of California", "homepage_url": "http://www.cs.princeton.edu/~appel/modern/c/software/flex/flex.html", "spdx_license_key": "LicenseRef-scancode-flex-2.5", "text_urls": ["http://www.cs.cmu.edu/afs/cs/project/ai-repository-9/ai/areas/nlp/parsing/flex/copying.txt"], "minimum_coverage": 80, "ignorable_authors": ["the University of California, Berkeley and its contributors"]} \ No newline at end of file +{ + "key": "flex-2.5", + "short_name": "Flex 2.5", + "name": "Flex License v2.5", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.cs.princeton.edu/~appel/modern/c/software/flex/flex.html", + "spdx_license_key": "LicenseRef-scancode-flex-2.5", + "text_urls": [ + "http://www.cs.cmu.edu/afs/cs/project/ai-repository-9/ai/areas/nlp/parsing/flex/copying.txt" + ], + "minimum_coverage": 80, + "ignorable_authors": [ + "the University of California, Berkeley and its contributors" + ] +} \ No newline at end of file diff --git a/docs/flex2sdk.LICENSE b/docs/flex2sdk.LICENSE index bbbb27b7c7..141129a491 100644 --- a/docs/flex2sdk.LICENSE +++ b/docs/flex2sdk.LICENSE @@ -1,3 +1,19 @@ +--- +key: flex2sdk +short_name: Adobe Flex 2.0.1 SDK EULA +name: Adobe Flex 2.0.1 SDK EULA +category: Proprietary Free +owner: Adobe Systems +homepage_url: http://labs.adobe.com/technologies/eula/flex2sdk.html +spdx_license_key: LicenseRef-scancode-flex2sdk +text_urls: + - http://labs.adobe.com/technologies/eula/flex2sdk.html +ignorable_urls: + - http://www.adobe.com/education/purchasing + - http://www.adobe.com/store + - http://www.adobe.com/type/browser/legal/embeddingeula.html +--- + ADOBE FLEX 2.0.1 SOFTWARE DEVELOPMENT KIT (Non Open Source Version) Software License Agreement diff --git a/docs/flex2sdk.html b/docs/flex2sdk.html index 1d80655293..4c2598ddc4 100644 --- a/docs/flex2sdk.html +++ b/docs/flex2sdk.html @@ -314,7 +314,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/flex2sdk.json b/docs/flex2sdk.json index ad4b2e026d..90679fb975 100644 --- a/docs/flex2sdk.json +++ b/docs/flex2sdk.json @@ -1 +1,17 @@ -{"key": "flex2sdk", "short_name": "Adobe Flex 2.0.1 SDK EULA", "name": "Adobe Flex 2.0.1 SDK EULA", "category": "Proprietary Free", "owner": "Adobe Systems", "homepage_url": "http://labs.adobe.com/technologies/eula/flex2sdk.html", "spdx_license_key": "LicenseRef-scancode-flex2sdk", "text_urls": ["http://labs.adobe.com/technologies/eula/flex2sdk.html"], "ignorable_urls": ["http://www.adobe.com/education/purchasing", "http://www.adobe.com/store", "http://www.adobe.com/type/browser/legal/embeddingeula.html"]} \ No newline at end of file +{ + "key": "flex2sdk", + "short_name": "Adobe Flex 2.0.1 SDK EULA", + "name": "Adobe Flex 2.0.1 SDK EULA", + "category": "Proprietary Free", + "owner": "Adobe Systems", + "homepage_url": "http://labs.adobe.com/technologies/eula/flex2sdk.html", + "spdx_license_key": "LicenseRef-scancode-flex2sdk", + "text_urls": [ + "http://labs.adobe.com/technologies/eula/flex2sdk.html" + ], + "ignorable_urls": [ + "http://www.adobe.com/education/purchasing", + "http://www.adobe.com/store", + "http://www.adobe.com/type/browser/legal/embeddingeula.html" + ] +} \ No newline at end of file diff --git a/docs/flora-1.1.LICENSE b/docs/flora-1.1.LICENSE index 0da557262e..0f5c72ae38 100644 --- a/docs/flora-1.1.LICENSE +++ b/docs/flora-1.1.LICENSE @@ -1,4 +1,20 @@ - +--- +key: flora-1.1 +short_name: Flora License v1.1 +name: Flora License v1.1 +category: Permissive +owner: Tizen Association +notes: there was a version 1.0 before https://web.archive.org/web/20130224120957/http://floralicense.org:80/license/ +spdx_license_key: LicenseRef-scancode-flora-1.1 +other_urls: + - https://github.com/lirriel/first1/blob/123928934e4231c75d63d1a222b2dfedca7308cc/AlarmUI/NOTICE + - https://github.com/search?q=%22Flora+License+%22&type=Code + - http://floralicense.org/ + - https://review.tizen.org/git/?p=apps/home/taskmanager.git;a=blob_plain;f=LICENSE;hb=HEAD +minimum_coverage: 95 +ignorable_urls: + - http://floralicense.org/license +--- Flora License @@ -91,7 +107,4 @@ Change Log The term "Compatibility Definition Document" has been changed to "Tizen Compliance Specification" The term "Compatibility Test Suites" has been changed to "Tizen Compliance Tests" - Clarified 4.4 condition on Licensee's own copyright to derivative works or modifications - - - + Clarified 4.4 condition on Licensee's own copyright to derivative works or modifications \ No newline at end of file diff --git a/docs/flora-1.1.html b/docs/flora-1.1.html index 67435e3336..6f2ebc00ec 100644 --- a/docs/flora-1.1.html +++ b/docs/flora-1.1.html @@ -140,9 +140,7 @@
license_text
-

-
-Flora License
+    
Flora License
 
 Version 1.1, April, 2013
 
@@ -233,11 +231,7 @@
 
     The term "Compatibility Definition Document" has been changed to "Tizen Compliance Specification"
     The term "Compatibility Test Suites" has been changed to "Tizen Compliance Tests"
-    Clarified 4.4 condition on Licensee's own copyright to derivative works or modifications
-
- 
-
-
+ Clarified 4.4 condition on Licensee's own copyright to derivative works or modifications
@@ -249,7 +243,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/flora-1.1.json b/docs/flora-1.1.json index dc026cdda4..3b3fdbc962 100644 --- a/docs/flora-1.1.json +++ b/docs/flora-1.1.json @@ -1 +1,19 @@ -{"key": "flora-1.1", "short_name": "Flora License v1.1", "name": "Flora License v1.1", "category": "Permissive", "owner": "Tizen Association", "notes": "there was a version 1.0 before https://web.archive.org/web/20130224120957/http://floralicense.org:80/license/", "spdx_license_key": "LicenseRef-scancode-flora-1.1", "other_urls": ["https://github.com/lirriel/first1/blob/123928934e4231c75d63d1a222b2dfedca7308cc/AlarmUI/NOTICE", "https://github.com/search?q=%22Flora+License+%22&type=Code", "http://floralicense.org/", "https://review.tizen.org/git/?p=apps/home/taskmanager.git;a=blob_plain;f=LICENSE;hb=HEAD"], "minimum_coverage": 95, "ignorable_urls": ["http://floralicense.org/license"]} \ No newline at end of file +{ + "key": "flora-1.1", + "short_name": "Flora License v1.1", + "name": "Flora License v1.1", + "category": "Permissive", + "owner": "Tizen Association", + "notes": "there was a version 1.0 before https://web.archive.org/web/20130224120957/http://floralicense.org:80/license/", + "spdx_license_key": "LicenseRef-scancode-flora-1.1", + "other_urls": [ + "https://github.com/lirriel/first1/blob/123928934e4231c75d63d1a222b2dfedca7308cc/AlarmUI/NOTICE", + "https://github.com/search?q=%22Flora+License+%22&type=Code", + "http://floralicense.org/", + "https://review.tizen.org/git/?p=apps/home/taskmanager.git;a=blob_plain;f=LICENSE;hb=HEAD" + ], + "minimum_coverage": 95, + "ignorable_urls": [ + "http://floralicense.org/license" + ] +} \ No newline at end of file diff --git a/docs/flowplayer-gpl-3.0.LICENSE b/docs/flowplayer-gpl-3.0.LICENSE index 27932e2f57..73c6973a68 100644 --- a/docs/flowplayer-gpl-3.0.LICENSE +++ b/docs/flowplayer-gpl-3.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: flowplayer-gpl-3.0 +short_name: Flowplayer GPL 3.0 +name: Flowplayer GPL 3.0 +category: Copyleft +owner: Flowplayer +homepage_url: https://flowplayer.org/license/ +spdx_license_key: LicenseRef-scancode-flowplayer-gpl-3.0 +other_urls: + - http://www.gnu.org/licenses/gpl-3.0.html +ignorable_authors: + - ModOrg +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + 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 diff --git a/docs/flowplayer-gpl-3.0.html b/docs/flowplayer-gpl-3.0.html index 4b43373b32..47957cef62 100644 --- a/docs/flowplayer-gpl-3.0.html +++ b/docs/flowplayer-gpl-3.0.html @@ -201,7 +201,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/flowplayer-gpl-3.0.json b/docs/flowplayer-gpl-3.0.json index 0c96fc337f..69c8dc179e 100644 --- a/docs/flowplayer-gpl-3.0.json +++ b/docs/flowplayer-gpl-3.0.json @@ -1 +1,18 @@ -{"key": "flowplayer-gpl-3.0", "short_name": "Flowplayer GPL 3.0", "name": "Flowplayer GPL 3.0", "category": "Copyleft", "owner": "Flowplayer", "homepage_url": "https://flowplayer.org/license/", "spdx_license_key": "LicenseRef-scancode-flowplayer-gpl-3.0", "other_urls": ["http://www.gnu.org/licenses/gpl-3.0.html"], "ignorable_authors": ["ModOrg"], "ignorable_urls": ["http://www.gnu.org/licenses/"]} \ No newline at end of file +{ + "key": "flowplayer-gpl-3.0", + "short_name": "Flowplayer GPL 3.0", + "name": "Flowplayer GPL 3.0", + "category": "Copyleft", + "owner": "Flowplayer", + "homepage_url": "https://flowplayer.org/license/", + "spdx_license_key": "LicenseRef-scancode-flowplayer-gpl-3.0", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-3.0.html" + ], + "ignorable_authors": [ + "ModOrg" + ], + "ignorable_urls": [ + "http://www.gnu.org/licenses/" + ] +} \ No newline at end of file diff --git a/docs/fltk-exception-lgpl-2.0.LICENSE b/docs/fltk-exception-lgpl-2.0.LICENSE index b24533a899..d33f08be0c 100644 --- a/docs/fltk-exception-lgpl-2.0.LICENSE +++ b/docs/fltk-exception-lgpl-2.0.LICENSE @@ -1,3 +1,47 @@ +--- +key: fltk-exception-lgpl-2.0 +short_name: FLTK exception to LGPL 2.0 +name: FLTK exception to LGPL 2.0 +category: Copyleft Limited +owner: FLTK +homepage_url: http://www.fltk.org/COPYING.php +is_exception: yes +spdx_license_key: FLTK-exception +other_urls: + - http://www.gnu.org/licenses/lgpl-2.0.txt +standard_notice: | + The FLTK library and included programs are provided under the terms of the + GNU Library General Public License (LGPL) with the following exceptions: + Modifications to the FLTK configure script, config header file, and + makefiles by themselves to support a specific platform do not constitute a + modified or derivative work. + The authors do request that such modifications be contributed to the FLTK + project - send all contributions to "fltk-bugs@fltk.org". + Widgets that are subclassed from FLTK widgets do not constitute a + derivative work. + Static linking of applications and widgets to the FLTK library does not + constitute a derivative work and does not require the author to provide + source code for the application or widget, use the shared FLTK libraries, + or link their applications or widgets against a user-supplied version of + FLTK. + If you link the application or widget to a modified version of FLTK, then + the changes to FLTK must be provided under the terms of the LGPL in + sections 1, 2, and 4. + You do not have to provide a copy of the FLTK license with programs that + are linked to the FLTK library, nor do you have to identify the FLTK + license in your program or documentation as required by section 6 of the + LGPL. + However, programs must still identify their use of FLTK. The following + example statement can be included in user documentation to satisfy this + requirement: + [program/widget] is based in part on the work of the FLTK project + (http://www.fltk.org). +ignorable_urls: + - http://www.fltk.org/ +ignorable_emails: + - fltk-bugs@fltk.org +--- + The FLTK library and included programs are provided under the terms of the GNU Library General Public License (LGPL) with the following exceptions: Modifications to the FLTK configure script, config header file, and makefiles by themselves to support a specific platform do not constitute a modified or derivative work. diff --git a/docs/fltk-exception-lgpl-2.0.html b/docs/fltk-exception-lgpl-2.0.html index 7202fbab4d..d64b1676bd 100644 --- a/docs/fltk-exception-lgpl-2.0.html +++ b/docs/fltk-exception-lgpl-2.0.html @@ -210,7 +210,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fltk-exception-lgpl-2.0.json b/docs/fltk-exception-lgpl-2.0.json index e6050f8452..aef1ea0574 100644 --- a/docs/fltk-exception-lgpl-2.0.json +++ b/docs/fltk-exception-lgpl-2.0.json @@ -1 +1,20 @@ -{"key": "fltk-exception-lgpl-2.0", "short_name": "FLTK exception to LGPL 2.0", "name": "FLTK exception to LGPL 2.0", "category": "Copyleft Limited", "owner": "FLTK", "homepage_url": "http://www.fltk.org/COPYING.php", "is_exception": true, "spdx_license_key": "FLTK-exception", "other_urls": ["http://www.gnu.org/licenses/lgpl-2.0.txt"], "standard_notice": "The FLTK library and included programs are provided under the terms of the\nGNU Library General Public License (LGPL) with the following exceptions:\nModifications to the FLTK configure script, config header file, and\nmakefiles by themselves to support a specific platform do not constitute a\nmodified or derivative work.\nThe authors do request that such modifications be contributed to the FLTK\nproject - send all contributions to \"fltk-bugs@fltk.org\".\nWidgets that are subclassed from FLTK widgets do not constitute a\nderivative work.\nStatic linking of applications and widgets to the FLTK library does not\nconstitute a derivative work and does not require the author to provide\nsource code for the application or widget, use the shared FLTK libraries,\nor link their applications or widgets against a user-supplied version of\nFLTK.\nIf you link the application or widget to a modified version of FLTK, then\nthe changes to FLTK must be provided under the terms of the LGPL in\nsections 1, 2, and 4.\nYou do not have to provide a copy of the FLTK license with programs that\nare linked to the FLTK library, nor do you have to identify the FLTK\nlicense in your program or documentation as required by section 6 of the\nLGPL.\nHowever, programs must still identify their use of FLTK. The following\nexample statement can be included in user documentation to satisfy this\nrequirement:\n[program/widget] is based in part on the work of the FLTK project\n(http://www.fltk.org).\n", "ignorable_urls": ["http://www.fltk.org/"], "ignorable_emails": ["fltk-bugs@fltk.org"]} \ No newline at end of file +{ + "key": "fltk-exception-lgpl-2.0", + "short_name": "FLTK exception to LGPL 2.0", + "name": "FLTK exception to LGPL 2.0", + "category": "Copyleft Limited", + "owner": "FLTK", + "homepage_url": "http://www.fltk.org/COPYING.php", + "is_exception": true, + "spdx_license_key": "FLTK-exception", + "other_urls": [ + "http://www.gnu.org/licenses/lgpl-2.0.txt" + ], + "standard_notice": "The FLTK library and included programs are provided under the terms of the\nGNU Library General Public License (LGPL) with the following exceptions:\nModifications to the FLTK configure script, config header file, and\nmakefiles by themselves to support a specific platform do not constitute a\nmodified or derivative work.\nThe authors do request that such modifications be contributed to the FLTK\nproject - send all contributions to \"fltk-bugs@fltk.org\".\nWidgets that are subclassed from FLTK widgets do not constitute a\nderivative work.\nStatic linking of applications and widgets to the FLTK library does not\nconstitute a derivative work and does not require the author to provide\nsource code for the application or widget, use the shared FLTK libraries,\nor link their applications or widgets against a user-supplied version of\nFLTK.\nIf you link the application or widget to a modified version of FLTK, then\nthe changes to FLTK must be provided under the terms of the LGPL in\nsections 1, 2, and 4.\nYou do not have to provide a copy of the FLTK license with programs that\nare linked to the FLTK library, nor do you have to identify the FLTK\nlicense in your program or documentation as required by section 6 of the\nLGPL.\nHowever, programs must still identify their use of FLTK. The following\nexample statement can be included in user documentation to satisfy this\nrequirement:\n[program/widget] is based in part on the work of the FLTK project\n(http://www.fltk.org).\n", + "ignorable_urls": [ + "http://www.fltk.org/" + ], + "ignorable_emails": [ + "fltk-bugs@fltk.org" + ] +} \ No newline at end of file diff --git a/docs/font-alias.LICENSE b/docs/font-alias.LICENSE index 3ca11bce92..bfd06c73e6 100644 --- a/docs/font-alias.LICENSE +++ b/docs/font-alias.LICENSE @@ -1,3 +1,22 @@ +--- +key: font-alias +short_name: font-alias License +name: font-alias License +category: Permissive +owner: X.Org +spdx_license_key: LicenseRef-scancode-font-alias +text_urls: + - https://www.x.org/releases/individual/font/font-alias-1.0.3.tar.bz2 +standard_notice: | + Copyright (C) 1994-95 Cronyx Ltd. + Author: Serge Vakulenko, + This software may be used, modified, copied, distributed, and sold, + in both source and binary form provided that the above copyright + and these terms are retained. Under no circumstances is the author + responsible for the proper functioning of this software, nor does + the author assume any responsibility for damages incurred with its use. +--- + This software may be used, modified, copied, distributed, and sold, in both source and binary form provided that the above copyright and these terms are retained. Under no circumstances is the author diff --git a/docs/font-alias.html b/docs/font-alias.html index 671fcf3b9e..c2726b3c05 100644 --- a/docs/font-alias.html +++ b/docs/font-alias.html @@ -147,7 +147,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/font-alias.json b/docs/font-alias.json index 0c89039b51..ea6464d779 100644 --- a/docs/font-alias.json +++ b/docs/font-alias.json @@ -1 +1,12 @@ -{"key": "font-alias", "short_name": "font-alias License", "name": "font-alias License", "category": "Permissive", "owner": "X.Org", "spdx_license_key": "LicenseRef-scancode-font-alias", "text_urls": ["https://www.x.org/releases/individual/font/font-alias-1.0.3.tar.bz2"], "standard_notice": "Copyright (C) 1994-95 Cronyx Ltd.\nAuthor: Serge Vakulenko, \nThis software may be used, modified, copied, distributed, and sold,\nin both source and binary form provided that the above copyright\nand these terms are retained. Under no circumstances is the author\nresponsible for the proper functioning of this software, nor does\nthe author assume any responsibility for damages incurred with its use.\n"} \ No newline at end of file +{ + "key": "font-alias", + "short_name": "font-alias License", + "name": "font-alias License", + "category": "Permissive", + "owner": "X.Org", + "spdx_license_key": "LicenseRef-scancode-font-alias", + "text_urls": [ + "https://www.x.org/releases/individual/font/font-alias-1.0.3.tar.bz2" + ], + "standard_notice": "Copyright (C) 1994-95 Cronyx Ltd.\nAuthor: Serge Vakulenko, \nThis software may be used, modified, copied, distributed, and sold,\nin both source and binary form provided that the above copyright\nand these terms are retained. Under no circumstances is the author\nresponsible for the proper functioning of this software, nor does\nthe author assume any responsibility for damages incurred with its use.\n" +} \ No newline at end of file diff --git a/docs/font-exception-gpl.LICENSE b/docs/font-exception-gpl.LICENSE index c96e835537..bea3f87c16 100644 --- a/docs/font-exception-gpl.LICENSE +++ b/docs/font-exception-gpl.LICENSE @@ -1,3 +1,37 @@ +--- +key: font-exception-gpl +short_name: Font exception to GPL +name: Font exception to GPL +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-faq.html#FontException +is_exception: yes +spdx_license_key: Font-exception-2.0 +text_urls: + - http://www.gnu.org/licenses/gpl-faq.html#FontException +standard_notice: | + This library 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. + 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception, if you create a document which uses + this font, and embed this font or unaltered portions of this + font into the document, this font does not by itself cause + the resulting document to be covered by the GNU General Public + License. This exception does not however invalidate any other + reasons why the document might be covered by the GNU General + Public License. If you modify this font, you may extend this + exception to your version of the font, but you are not + obligated to do so. If you do not wish to do so, delete this + exception statement from your version. +--- + As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause diff --git a/docs/font-exception-gpl.html b/docs/font-exception-gpl.html index 9cb81f046b..e373de0d28 100644 --- a/docs/font-exception-gpl.html +++ b/docs/font-exception-gpl.html @@ -179,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/font-exception-gpl.json b/docs/font-exception-gpl.json index a827de9f88..52524405be 100644 --- a/docs/font-exception-gpl.json +++ b/docs/font-exception-gpl.json @@ -1 +1,14 @@ -{"key": "font-exception-gpl", "short_name": "Font exception to GPL", "name": "Font exception to GPL", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/gpl-faq.html#FontException", "is_exception": true, "spdx_license_key": "Font-exception-2.0", "text_urls": ["http://www.gnu.org/licenses/gpl-faq.html#FontException"], "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nAs a special exception, if you create a document which uses\nthis font, and embed this font or unaltered portions of this\nfont into the document, this font does not by itself cause\nthe resulting document to be covered by the GNU General Public\nLicense. This exception does not however invalidate any other\nreasons why the document might be covered by the GNU General\nPublic License. If you modify this font, you may extend this\nexception to your version of the font, but you are not\nobligated to do so. If you do not wish to do so, delete this\nexception statement from your version.\n"} \ No newline at end of file +{ + "key": "font-exception-gpl", + "short_name": "Font exception to GPL", + "name": "Font exception to GPL", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-faq.html#FontException", + "is_exception": true, + "spdx_license_key": "Font-exception-2.0", + "text_urls": [ + "http://www.gnu.org/licenses/gpl-faq.html#FontException" + ], + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nAs a special exception, if you create a document which uses\nthis font, and embed this font or unaltered portions of this\nfont into the document, this font does not by itself cause\nthe resulting document to be covered by the GNU General Public\nLicense. This exception does not however invalidate any other\nreasons why the document might be covered by the GNU General\nPublic License. If you modify this font, you may extend this\nexception to your version of the font, but you are not\nobligated to do so. If you do not wish to do so, delete this\nexception statement from your version.\n" +} \ No newline at end of file diff --git a/docs/foobar2000.LICENSE b/docs/foobar2000.LICENSE index 4dd1c70cd5..560e6aaf23 100644 --- a/docs/foobar2000.LICENSE +++ b/docs/foobar2000.LICENSE @@ -1,3 +1,13 @@ +--- +key: foobar2000 +short_name: foobar2000 License +name: foobar2000 License +category: Proprietary Free +owner: foobar2000 Project +homepage_url: http://www.foobar2000.org/license +spdx_license_key: LicenseRef-scancode-foobar2000 +--- + Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/docs/foobar2000.html b/docs/foobar2000.html index a5aab21ea5..7a97b62bbc 100644 --- a/docs/foobar2000.html +++ b/docs/foobar2000.html @@ -146,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/foobar2000.json b/docs/foobar2000.json index 1ee466aae0..938473857d 100644 --- a/docs/foobar2000.json +++ b/docs/foobar2000.json @@ -1 +1,9 @@ -{"key": "foobar2000", "short_name": "foobar2000 License", "name": "foobar2000 License", "category": "Proprietary Free", "owner": "foobar2000 Project", "homepage_url": "http://www.foobar2000.org/license", "spdx_license_key": "LicenseRef-scancode-foobar2000"} \ No newline at end of file +{ + "key": "foobar2000", + "short_name": "foobar2000 License", + "name": "foobar2000 License", + "category": "Proprietary Free", + "owner": "foobar2000 Project", + "homepage_url": "http://www.foobar2000.org/license", + "spdx_license_key": "LicenseRef-scancode-foobar2000" +} \ No newline at end of file diff --git a/docs/fpl.LICENSE b/docs/fpl.LICENSE index 91ebdb1737..08cb243e61 100644 --- a/docs/fpl.LICENSE +++ b/docs/fpl.LICENSE @@ -1,3 +1,15 @@ +--- +key: fpl +short_name: Freeware Public License (FPL) +name: Freeware Public License (FPL) +category: Permissive +owner: Packetizer +homepage_url: https://github.com/abahdanovich/sha1/blob/master/c/license.txt +spdx_license_key: LicenseRef-scancode-fpl +text_urls: + - https://github.com/abahdanovich/sha1/blob/master/c/license.txt +--- + Freeware Public License (FPL) This software is licensed as "freeware." Permission to distribute diff --git a/docs/fpl.html b/docs/fpl.html index 5870f797fc..4534949e0a 100644 --- a/docs/fpl.html +++ b/docs/fpl.html @@ -146,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fpl.json b/docs/fpl.json index 8c32905535..0cdd3ed670 100644 --- a/docs/fpl.json +++ b/docs/fpl.json @@ -1 +1,12 @@ -{"key": "fpl", "short_name": "Freeware Public License (FPL)", "name": "Freeware Public License (FPL)", "category": "Permissive", "owner": "Packetizer", "homepage_url": "https://github.com/abahdanovich/sha1/blob/master/c/license.txt", "spdx_license_key": "LicenseRef-scancode-fpl", "text_urls": ["https://github.com/abahdanovich/sha1/blob/master/c/license.txt"]} \ No newline at end of file +{ + "key": "fpl", + "short_name": "Freeware Public License (FPL)", + "name": "Freeware Public License (FPL)", + "category": "Permissive", + "owner": "Packetizer", + "homepage_url": "https://github.com/abahdanovich/sha1/blob/master/c/license.txt", + "spdx_license_key": "LicenseRef-scancode-fpl", + "text_urls": [ + "https://github.com/abahdanovich/sha1/blob/master/c/license.txt" + ] +} \ No newline at end of file diff --git a/docs/fplot.LICENSE b/docs/fplot.LICENSE index 344e5e5fea..cc40d781a1 100644 --- a/docs/fplot.LICENSE +++ b/docs/fplot.LICENSE @@ -1,3 +1,13 @@ +--- +key: fplot +short_name: FPLOT LIcense +name: FPLOT LIcense +category: Permissive +owner: Michael C. Ring +homepage_url: http://www.tc.umn.edu/~ringx004/fplot-readme.html +spdx_license_key: LicenseRef-scancode-fplot +--- + This software is Freeware. Permission to use, copy, and distribute this software and its diff --git a/docs/fplot.html b/docs/fplot.html index 4df6699f96..91c0a29dd1 100644 --- a/docs/fplot.html +++ b/docs/fplot.html @@ -139,7 +139,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fplot.json b/docs/fplot.json index aadcdf85e1..656ad4292c 100644 --- a/docs/fplot.json +++ b/docs/fplot.json @@ -1 +1,9 @@ -{"key": "fplot", "short_name": "FPLOT LIcense", "name": "FPLOT LIcense", "category": "Permissive", "owner": "Michael C. Ring", "homepage_url": "http://www.tc.umn.edu/~ringx004/fplot-readme.html", "spdx_license_key": "LicenseRef-scancode-fplot"} \ No newline at end of file +{ + "key": "fplot", + "short_name": "FPLOT LIcense", + "name": "FPLOT LIcense", + "category": "Permissive", + "owner": "Michael C. Ring", + "homepage_url": "http://www.tc.umn.edu/~ringx004/fplot-readme.html", + "spdx_license_key": "LicenseRef-scancode-fplot" +} \ No newline at end of file diff --git a/docs/frameworx-1.0.LICENSE b/docs/frameworx-1.0.LICENSE index d1d4f43707..b546fbe762 100644 --- a/docs/frameworx-1.0.LICENSE +++ b/docs/frameworx-1.0.LICENSE @@ -1,3 +1,30 @@ +--- +key: frameworx-1.0 +short_name: Frameworx 1.0 +name: Frameworx Open License v1.0 +category: Copyleft Limited +owner: Frameworx Company +homepage_url: http://opensource.org/licenses/frameworx.php +notes: | + Per SPDX.org, this license is OSI certified. The url included in the + license does not work. (15/10/10) +spdx_license_key: Frameworx-1.0 +text_urls: + - http://opensource.org/licenses/frameworx.php +osi_url: http://opensource.org/licenses/frameworx.php +other_urls: + - http://www.opensource.org/licenses/Frameworx-1.0 + - https://opensource.org/licenses/Frameworx-1.0 +ignorable_copyrights: + - (c) THE FRAMEWORX COMPANY 2003 +ignorable_holders: + - THE FRAMEWORX COMPANY +ignorable_authors: + - The Frameworx Company +ignorable_urls: + - http://www.frameworx.com/ +--- + THE FRAMEWORX OPEN LICENSE 1.0 This License Agreement, The Frameworx Open License 1.0, has been entered into between The Frameworx Company and you, the licensee hereunder, effective as of Your acceptance of the Frameworx Code Base or an Downstream Distribution (each as defined below). AGREEMENT BACKGROUND diff --git a/docs/frameworx-1.0.html b/docs/frameworx-1.0.html index 32ac95b9db..093793faae 100644 --- a/docs/frameworx-1.0.html +++ b/docs/frameworx-1.0.html @@ -260,7 +260,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/frameworx-1.0.json b/docs/frameworx-1.0.json index 950f7d4551..dfb22d0f77 100644 --- a/docs/frameworx-1.0.json +++ b/docs/frameworx-1.0.json @@ -1 +1,30 @@ -{"key": "frameworx-1.0", "short_name": "Frameworx 1.0", "name": "Frameworx Open License v1.0", "category": "Copyleft Limited", "owner": "Frameworx Company", "homepage_url": "http://opensource.org/licenses/frameworx.php", "notes": "Per SPDX.org, this license is OSI certified. The url included in the\nlicense does not work. (15/10/10)\n", "spdx_license_key": "Frameworx-1.0", "text_urls": ["http://opensource.org/licenses/frameworx.php"], "osi_url": "http://opensource.org/licenses/frameworx.php", "other_urls": ["http://www.opensource.org/licenses/Frameworx-1.0", "https://opensource.org/licenses/Frameworx-1.0"], "ignorable_copyrights": ["(c) THE FRAMEWORX COMPANY 2003"], "ignorable_holders": ["THE FRAMEWORX COMPANY"], "ignorable_authors": ["The Frameworx Company"], "ignorable_urls": ["http://www.frameworx.com/"]} \ No newline at end of file +{ + "key": "frameworx-1.0", + "short_name": "Frameworx 1.0", + "name": "Frameworx Open License v1.0", + "category": "Copyleft Limited", + "owner": "Frameworx Company", + "homepage_url": "http://opensource.org/licenses/frameworx.php", + "notes": "Per SPDX.org, this license is OSI certified. The url included in the\nlicense does not work. (15/10/10)\n", + "spdx_license_key": "Frameworx-1.0", + "text_urls": [ + "http://opensource.org/licenses/frameworx.php" + ], + "osi_url": "http://opensource.org/licenses/frameworx.php", + "other_urls": [ + "http://www.opensource.org/licenses/Frameworx-1.0", + "https://opensource.org/licenses/Frameworx-1.0" + ], + "ignorable_copyrights": [ + "(c) THE FRAMEWORX COMPANY 2003" + ], + "ignorable_holders": [ + "THE FRAMEWORX COMPANY" + ], + "ignorable_authors": [ + "The Frameworx Company" + ], + "ignorable_urls": [ + "http://www.frameworx.com/" + ] +} \ No newline at end of file diff --git a/docs/fraunhofer-fdk-aac-codec.LICENSE b/docs/fraunhofer-fdk-aac-codec.LICENSE index 302a366f02..031f298451 100644 --- a/docs/fraunhofer-fdk-aac-codec.LICENSE +++ b/docs/fraunhofer-fdk-aac-codec.LICENSE @@ -1,3 +1,34 @@ +--- +key: fraunhofer-fdk-aac-codec +short_name: Fraunhofer FDK AAC Codec Library for Android +name: Fraunhofer FDK AAC Codec Library for Android +category: Copyleft Limited +owner: Fraunhofer-Gesellschaft +homepage_url: http://opencore-amr.git.sourceforge.net/git/gitweb.cgi?p=opencore-amr/fdk-aac;a=blob;f=NOTICE +spdx_license_key: FDK-AAC +other_spdx_license_keys: + - LicenseRef-scancode-fraunhofer-fdk-aac-codec +text_urls: + - http://opencore-amr.git.sourceforge.net/git/gitweb.cgi?p=opencore-amr/fdk-aac;a=blob;f=NOTICE +other_urls: + - amm-info@iis.fraunhofer.de + - http://www.iis.fraunhofer.de/amm + - https://directory.fsf.org/wiki/License:Fdk + - https://fedoraproject.org/wiki/Licensing/FDK-AAC + - www.iis.fraunhofer.de/amm +minimum_coverage: 40 +ignorable_copyrights: + - (c) Copyright 1995 - 2012 Fraunhofer-Gesellschaft zur Forderung der angewandten Forschung + e.V. +ignorable_holders: + - Fraunhofer-Gesellschaft zur Forderung der angewandten Forschung e.V. +ignorable_urls: + - http://www.iis.fraunhofer.de/amm + - http://www.vialicensing.com/ +ignorable_emails: + - amm-info@iis.fraunhofer.de +--- + Software License for The Fraunhofer FDK AAC Codec Library for Android © Copyright 1995 - 2012 Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V. diff --git a/docs/fraunhofer-fdk-aac-codec.html b/docs/fraunhofer-fdk-aac-codec.html index 8e1b14935b..c7d698f23e 100644 --- a/docs/fraunhofer-fdk-aac-codec.html +++ b/docs/fraunhofer-fdk-aac-codec.html @@ -275,7 +275,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fraunhofer-fdk-aac-codec.json b/docs/fraunhofer-fdk-aac-codec.json index 52208cf955..efa81ce6a4 100644 --- a/docs/fraunhofer-fdk-aac-codec.json +++ b/docs/fraunhofer-fdk-aac-codec.json @@ -1 +1,36 @@ -{"key": "fraunhofer-fdk-aac-codec", "short_name": "Fraunhofer FDK AAC Codec Library for Android", "name": "Fraunhofer FDK AAC Codec Library for Android", "category": "Copyleft Limited", "owner": "Fraunhofer-Gesellschaft", "homepage_url": "http://opencore-amr.git.sourceforge.net/git/gitweb.cgi?p=opencore-amr/fdk-aac;a=blob;f=NOTICE", "spdx_license_key": "FDK-AAC", "other_spdx_license_keys": ["LicenseRef-scancode-fraunhofer-fdk-aac-codec"], "text_urls": ["http://opencore-amr.git.sourceforge.net/git/gitweb.cgi?p=opencore-amr/fdk-aac;a=blob;f=NOTICE"], "other_urls": ["amm-info@iis.fraunhofer.de", "http://www.iis.fraunhofer.de/amm", "https://directory.fsf.org/wiki/License:Fdk", "https://fedoraproject.org/wiki/Licensing/FDK-AAC", "www.iis.fraunhofer.de/amm"], "minimum_coverage": 40, "ignorable_copyrights": ["(c) Copyright 1995 - 2012 Fraunhofer-Gesellschaft zur Forderung der angewandten Forschung e.V."], "ignorable_holders": ["Fraunhofer-Gesellschaft zur Forderung der angewandten Forschung e.V."], "ignorable_urls": ["http://www.iis.fraunhofer.de/amm", "http://www.vialicensing.com/"], "ignorable_emails": ["amm-info@iis.fraunhofer.de"]} \ No newline at end of file +{ + "key": "fraunhofer-fdk-aac-codec", + "short_name": "Fraunhofer FDK AAC Codec Library for Android", + "name": "Fraunhofer FDK AAC Codec Library for Android", + "category": "Copyleft Limited", + "owner": "Fraunhofer-Gesellschaft", + "homepage_url": "http://opencore-amr.git.sourceforge.net/git/gitweb.cgi?p=opencore-amr/fdk-aac;a=blob;f=NOTICE", + "spdx_license_key": "FDK-AAC", + "other_spdx_license_keys": [ + "LicenseRef-scancode-fraunhofer-fdk-aac-codec" + ], + "text_urls": [ + "http://opencore-amr.git.sourceforge.net/git/gitweb.cgi?p=opencore-amr/fdk-aac;a=blob;f=NOTICE" + ], + "other_urls": [ + "amm-info@iis.fraunhofer.de", + "http://www.iis.fraunhofer.de/amm", + "https://directory.fsf.org/wiki/License:Fdk", + "https://fedoraproject.org/wiki/Licensing/FDK-AAC", + "www.iis.fraunhofer.de/amm" + ], + "minimum_coverage": 40, + "ignorable_copyrights": [ + "(c) Copyright 1995 - 2012 Fraunhofer-Gesellschaft zur Forderung der angewandten Forschung e.V." + ], + "ignorable_holders": [ + "Fraunhofer-Gesellschaft zur Forderung der angewandten Forschung e.V." + ], + "ignorable_urls": [ + "http://www.iis.fraunhofer.de/amm", + "http://www.vialicensing.com/" + ], + "ignorable_emails": [ + "amm-info@iis.fraunhofer.de" + ] +} \ No newline at end of file diff --git a/docs/fraunhofer-iso-14496-10.LICENSE b/docs/fraunhofer-iso-14496-10.LICENSE index bc662bee13..f6154f3120 100644 --- a/docs/fraunhofer-iso-14496-10.LICENSE +++ b/docs/fraunhofer-iso-14496-10.LICENSE @@ -1,3 +1,23 @@ +--- +key: fraunhofer-iso-14496-10 +short_name: Fraunhofer ISO 14496-10 License +name: Fraunhofer ISO 14496-10 License +category: Permissive +owner: Fraunhofer-Gesellschaft +spdx_license_key: LicenseRef-scancode-fraunhofer-iso-14496-10 +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) ISO/IEC 2005 + - Copyright 2005, International Telecommunications Union, Geneva +ignorable_holders: + - ISO/IEC + - International Telecommunications Union, Geneva +ignorable_authors: + - Heiko Schwarz +ignorable_urls: + - http://www.itu.int/ +--- + ******************************************************************************** NOTE - One of the two copyright statements below may be chosen @@ -75,4 +95,4 @@ the ITU Web site at http://www.itu.int. THIS IS NOT A GRANT OF PATENT RIGHTS - SEE THE ITU-T PATENT POLICY. -******************************************************************************** +******************************************************************************** \ No newline at end of file diff --git a/docs/fraunhofer-iso-14496-10.html b/docs/fraunhofer-iso-14496-10.html index 12c2c1354c..0e83208054 100644 --- a/docs/fraunhofer-iso-14496-10.html +++ b/docs/fraunhofer-iso-14496-10.html @@ -228,8 +228,7 @@ THIS IS NOT A GRANT OF PATENT RIGHTS - SEE THE ITU-T PATENT POLICY. -******************************************************************************** - +********************************************************************************
@@ -241,7 +240,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fraunhofer-iso-14496-10.json b/docs/fraunhofer-iso-14496-10.json index 413dc76c73..8ebda26b27 100644 --- a/docs/fraunhofer-iso-14496-10.json +++ b/docs/fraunhofer-iso-14496-10.json @@ -1 +1,23 @@ -{"key": "fraunhofer-iso-14496-10", "short_name": "Fraunhofer ISO 14496-10 License", "name": "Fraunhofer ISO 14496-10 License", "category": "Permissive", "owner": "Fraunhofer-Gesellschaft", "spdx_license_key": "LicenseRef-scancode-fraunhofer-iso-14496-10", "minimum_coverage": 60, "ignorable_copyrights": ["Copyright (c) ISO/IEC 2005", "Copyright 2005, International Telecommunications Union, Geneva"], "ignorable_holders": ["ISO/IEC", "International Telecommunications Union, Geneva"], "ignorable_authors": ["Heiko Schwarz"], "ignorable_urls": ["http://www.itu.int/"]} \ No newline at end of file +{ + "key": "fraunhofer-iso-14496-10", + "short_name": "Fraunhofer ISO 14496-10 License", + "name": "Fraunhofer ISO 14496-10 License", + "category": "Permissive", + "owner": "Fraunhofer-Gesellschaft", + "spdx_license_key": "LicenseRef-scancode-fraunhofer-iso-14496-10", + "minimum_coverage": 60, + "ignorable_copyrights": [ + "Copyright (c) ISO/IEC 2005", + "Copyright 2005, International Telecommunications Union, Geneva" + ], + "ignorable_holders": [ + "ISO/IEC", + "International Telecommunications Union, Geneva" + ], + "ignorable_authors": [ + "Heiko Schwarz" + ], + "ignorable_urls": [ + "http://www.itu.int/" + ] +} \ No newline at end of file diff --git a/docs/free-art-1.3.LICENSE b/docs/free-art-1.3.LICENSE index 10f9c0e178..5ae3e1875c 100644 --- a/docs/free-art-1.3.LICENSE +++ b/docs/free-art-1.3.LICENSE @@ -1,3 +1,18 @@ +--- +key: free-art-1.3 +short_name: FAL 1.3 +name: Free Art License 1.3 +category: Permissive +owner: Copyleft Attitude +homepage_url: http://artlibre.org/licence/lal/en +spdx_license_key: LicenseRef-scancode-free-art-1.3 +text_urls: + - http://artlibre.org/licence/lal/en +ignorable_urls: + - http://artlibre.org/licence/lal/en/ + - http://www.artlibre.org/ +--- + Free Art License 1.3 (FAL 1.3) Preamble diff --git a/docs/free-art-1.3.html b/docs/free-art-1.3.html index ddf986e659..f44f18db2d 100644 --- a/docs/free-art-1.3.html +++ b/docs/free-art-1.3.html @@ -256,7 +256,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/free-art-1.3.json b/docs/free-art-1.3.json index b1d182fd8c..2637562c97 100644 --- a/docs/free-art-1.3.json +++ b/docs/free-art-1.3.json @@ -1 +1,16 @@ -{"key": "free-art-1.3", "short_name": "FAL 1.3", "name": "Free Art License 1.3", "category": "Permissive", "owner": "Copyleft Attitude", "homepage_url": "http://artlibre.org/licence/lal/en", "spdx_license_key": "LicenseRef-scancode-free-art-1.3", "text_urls": ["http://artlibre.org/licence/lal/en"], "ignorable_urls": ["http://artlibre.org/licence/lal/en/", "http://www.artlibre.org/"]} \ No newline at end of file +{ + "key": "free-art-1.3", + "short_name": "FAL 1.3", + "name": "Free Art License 1.3", + "category": "Permissive", + "owner": "Copyleft Attitude", + "homepage_url": "http://artlibre.org/licence/lal/en", + "spdx_license_key": "LicenseRef-scancode-free-art-1.3", + "text_urls": [ + "http://artlibre.org/licence/lal/en" + ], + "ignorable_urls": [ + "http://artlibre.org/licence/lal/en/", + "http://www.artlibre.org/" + ] +} \ No newline at end of file diff --git a/docs/free-fork.LICENSE b/docs/free-fork.LICENSE index 3fee75798e..87e10e2e49 100644 --- a/docs/free-fork.LICENSE +++ b/docs/free-fork.LICENSE @@ -1,3 +1,18 @@ +--- +key: free-fork +short_name: Free-Fork License +name: University of Washington Free-Fork License +category: Copyleft Limited +owner: University of Washington IT +spdx_license_key: LicenseRef-scancode-free-fork +ignorable_copyrights: + - Copyright 1988-2002 University of Washington +ignorable_holders: + - University of Washington +ignorable_emails: + - imap-license@cac.washington.edu +--- + University of Washington's Free-Fork License University of Washington IMAP toolkit diff --git a/docs/free-fork.html b/docs/free-fork.html index 8f0e774e80..8b81586472 100644 --- a/docs/free-fork.html +++ b/docs/free-fork.html @@ -216,7 +216,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/free-fork.json b/docs/free-fork.json index 417fafa215..d3aa413676 100644 --- a/docs/free-fork.json +++ b/docs/free-fork.json @@ -1 +1,17 @@ -{"key": "free-fork", "short_name": "Free-Fork License", "name": "University of Washington Free-Fork License", "category": "Copyleft Limited", "owner": "University of Washington IT", "spdx_license_key": "LicenseRef-scancode-free-fork", "ignorable_copyrights": ["Copyright 1988-2002 University of Washington"], "ignorable_holders": ["University of Washington"], "ignorable_emails": ["imap-license@cac.washington.edu"]} \ No newline at end of file +{ + "key": "free-fork", + "short_name": "Free-Fork License", + "name": "University of Washington Free-Fork License", + "category": "Copyleft Limited", + "owner": "University of Washington IT", + "spdx_license_key": "LicenseRef-scancode-free-fork", + "ignorable_copyrights": [ + "Copyright 1988-2002 University of Washington" + ], + "ignorable_holders": [ + "University of Washington" + ], + "ignorable_emails": [ + "imap-license@cac.washington.edu" + ] +} \ No newline at end of file diff --git a/docs/free-unknown.LICENSE b/docs/free-unknown.LICENSE index e69de29bb2..0b635fc1e0 100644 --- a/docs/free-unknown.LICENSE +++ b/docs/free-unknown.LICENSE @@ -0,0 +1,11 @@ +--- +key: free-unknown +short_name: Free unknown +name: Free unknown license detected but not recognized +category: Unstated License +owner: Unspecified +notes: This case applies to software with a notice that refers in a non-specific manner to a + free or open-source license, but where it is not possible to determine that specific license. +is_unknown: yes +spdx_license_key: LicenseRef-scancode-free-unknown +--- \ No newline at end of file diff --git a/docs/free-unknown.html b/docs/free-unknown.html index fe84567c3b..586a067c7f 100644 --- a/docs/free-unknown.html +++ b/docs/free-unknown.html @@ -134,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/free-unknown.json b/docs/free-unknown.json index 901298fae5..ca9d30329e 100644 --- a/docs/free-unknown.json +++ b/docs/free-unknown.json @@ -1 +1,10 @@ -{"key": "free-unknown", "short_name": "Free unknown", "name": "Free unknown license detected but not recognized", "category": "Unstated License", "owner": "Unspecified", "notes": "This case applies to software with a notice that refers in a non-specific manner to a free or open-source license, but where it is not possible to determine that specific license.", "is_unknown": true, "spdx_license_key": "LicenseRef-scancode-free-unknown"} \ No newline at end of file +{ + "key": "free-unknown", + "short_name": "Free unknown", + "name": "Free unknown license detected but not recognized", + "category": "Unstated License", + "owner": "Unspecified", + "notes": "This case applies to software with a notice that refers in a non-specific manner to a free or open-source license, but where it is not possible to determine that specific license.", + "is_unknown": true, + "spdx_license_key": "LicenseRef-scancode-free-unknown" +} \ No newline at end of file diff --git a/docs/freebsd-boot.LICENSE b/docs/freebsd-boot.LICENSE index 1de02a61a9..3675b33ce9 100644 --- a/docs/freebsd-boot.LICENSE +++ b/docs/freebsd-boot.LICENSE @@ -1,3 +1,17 @@ +--- +key: freebsd-boot +short_name: FreeBSD Boot +name: FreeBSD Boot +category: Permissive +owner: FreeBSD +homepage_url: http://freebsd.active-venture.com/FreeBSD-srctree/newsrc/boot/i386/boot2/boot2.c.html +spdx_license_key: LicenseRef-scancode-freebsd-boot +text_urls: + - http://freebsd.active-venture.com/FreeBSD-srctree/newsrc/boot/i386/boot2/boot2.c.html +other_urls: + - https://casper.berkeley.edu/svn/trunk/roach/sw/uboot/common/cmd_elf.c +--- + Redistribution and use in source and binary forms are freely permitted provided that the above copyright notice and this paragraph and the following disclaimer are duplicated in all @@ -6,4 +20,4 @@ such forms. This software is provided "AS IS" and without any express or implied warranties, including, without limitation, the implied warranties of merchantability and fitness for a particular -purpose. +purpose. \ No newline at end of file diff --git a/docs/freebsd-boot.html b/docs/freebsd-boot.html index 2f19672142..57ab29189b 100644 --- a/docs/freebsd-boot.html +++ b/docs/freebsd-boot.html @@ -141,8 +141,7 @@ This software is provided "AS IS" and without any express or implied warranties, including, without limitation, the implied warranties of merchantability and fitness for a particular -purpose. - +purpose.
@@ -154,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/freebsd-boot.json b/docs/freebsd-boot.json index b17bc62ede..f99378726b 100644 --- a/docs/freebsd-boot.json +++ b/docs/freebsd-boot.json @@ -1 +1,15 @@ -{"key": "freebsd-boot", "short_name": "FreeBSD Boot", "name": "FreeBSD Boot", "category": "Permissive", "owner": "FreeBSD", "homepage_url": "http://freebsd.active-venture.com/FreeBSD-srctree/newsrc/boot/i386/boot2/boot2.c.html", "spdx_license_key": "LicenseRef-scancode-freebsd-boot", "text_urls": ["http://freebsd.active-venture.com/FreeBSD-srctree/newsrc/boot/i386/boot2/boot2.c.html"], "other_urls": ["https://casper.berkeley.edu/svn/trunk/roach/sw/uboot/common/cmd_elf.c"]} \ No newline at end of file +{ + "key": "freebsd-boot", + "short_name": "FreeBSD Boot", + "name": "FreeBSD Boot", + "category": "Permissive", + "owner": "FreeBSD", + "homepage_url": "http://freebsd.active-venture.com/FreeBSD-srctree/newsrc/boot/i386/boot2/boot2.c.html", + "spdx_license_key": "LicenseRef-scancode-freebsd-boot", + "text_urls": [ + "http://freebsd.active-venture.com/FreeBSD-srctree/newsrc/boot/i386/boot2/boot2.c.html" + ], + "other_urls": [ + "https://casper.berkeley.edu/svn/trunk/roach/sw/uboot/common/cmd_elf.c" + ] +} \ No newline at end of file diff --git a/docs/freebsd-doc.LICENSE b/docs/freebsd-doc.LICENSE index cbc136eeaa..b9e69c243d 100644 --- a/docs/freebsd-doc.LICENSE +++ b/docs/freebsd-doc.LICENSE @@ -1,3 +1,22 @@ +--- +key: freebsd-doc +short_name: FreeBSD Doc License +name: FreeBSD Doc License +category: Permissive +owner: FreeBSD +spdx_license_key: FreeBSD-DOC +other_spdx_license_keys: + - LicenseRef-scancode-freebsd-doc +text_urls: + - https://www.freebsd.org/copyright/freebsd-doc-license.html + - https://github.com/jponge/izpack-full-svn-history-copy/blob/7a521ccd6ce0dd1a0664eaae12fd5bba5571d231/izpack-launcher/tags/release-1.0/doc/COPYING + - https://github.com/bastienleonard/pysfml-cython/blob/c71194988ba90678cbc4c9e6fd3e03f53ac4c2e4/doc/sphinx/source/licenses.rst + - https://github.com/pabloriera/ofxKCoreN/blob/f2c6e01b6eeca384f38008520195f2e2481181e3/src/ofxKCoreN.h + - https://github.com/open-mpi/docs/blob/master/README.md +other_urls: + - https://www.freebsd.org/copyright/freebsd-doc-license/ +--- + Redistribution and use in source and 'compiled' forms with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/freebsd-doc.html b/docs/freebsd-doc.html index e08705a0b7..f60bbfd87d 100644 --- a/docs/freebsd-doc.html +++ b/docs/freebsd-doc.html @@ -167,7 +167,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/freebsd-doc.json b/docs/freebsd-doc.json index b400af6d8b..1b0ffe6d16 100644 --- a/docs/freebsd-doc.json +++ b/docs/freebsd-doc.json @@ -1 +1,21 @@ -{"key": "freebsd-doc", "short_name": "FreeBSD Doc License", "name": "FreeBSD Doc License", "category": "Permissive", "owner": "FreeBSD", "spdx_license_key": "FreeBSD-DOC", "other_spdx_license_keys": ["LicenseRef-scancode-freebsd-doc"], "text_urls": ["https://www.freebsd.org/copyright/freebsd-doc-license.html", "https://github.com/jponge/izpack-full-svn-history-copy/blob/7a521ccd6ce0dd1a0664eaae12fd5bba5571d231/izpack-launcher/tags/release-1.0/doc/COPYING", "https://github.com/bastienleonard/pysfml-cython/blob/c71194988ba90678cbc4c9e6fd3e03f53ac4c2e4/doc/sphinx/source/licenses.rst", "https://github.com/pabloriera/ofxKCoreN/blob/f2c6e01b6eeca384f38008520195f2e2481181e3/src/ofxKCoreN.h", "https://github.com/open-mpi/docs/blob/master/README.md"], "other_urls": ["https://www.freebsd.org/copyright/freebsd-doc-license/"]} \ No newline at end of file +{ + "key": "freebsd-doc", + "short_name": "FreeBSD Doc License", + "name": "FreeBSD Doc License", + "category": "Permissive", + "owner": "FreeBSD", + "spdx_license_key": "FreeBSD-DOC", + "other_spdx_license_keys": [ + "LicenseRef-scancode-freebsd-doc" + ], + "text_urls": [ + "https://www.freebsd.org/copyright/freebsd-doc-license.html", + "https://github.com/jponge/izpack-full-svn-history-copy/blob/7a521ccd6ce0dd1a0664eaae12fd5bba5571d231/izpack-launcher/tags/release-1.0/doc/COPYING", + "https://github.com/bastienleonard/pysfml-cython/blob/c71194988ba90678cbc4c9e6fd3e03f53ac4c2e4/doc/sphinx/source/licenses.rst", + "https://github.com/pabloriera/ofxKCoreN/blob/f2c6e01b6eeca384f38008520195f2e2481181e3/src/ofxKCoreN.h", + "https://github.com/open-mpi/docs/blob/master/README.md" + ], + "other_urls": [ + "https://www.freebsd.org/copyright/freebsd-doc-license/" + ] +} \ No newline at end of file diff --git a/docs/freebsd-first.LICENSE b/docs/freebsd-first.LICENSE index 2c0f69ae56..d2ef3cf99a 100644 --- a/docs/freebsd-first.LICENSE +++ b/docs/freebsd-first.LICENSE @@ -1,3 +1,17 @@ +--- +key: freebsd-first +short_name: FreeBSD unmodified first lines License +name: FreeBSD unmodified first lines License +category: Permissive +owner: FreeBSD +spdx_license_key: LicenseRef-scancode-freebsd-first +text_urls: + - https://opensource.apple.com/source/Libc/Libc-498/pthreads/pthread_getschedparam.3.auto.html + - https://github.com/samir-kassab/RSX208/blob/ff9c702aad525de0a6482d54a39fb116899666c8/git-1.8.1.2/vcs-svn/LICENSE + - https://github.com/jpostel/FreeBSD-mirror/blob/4e7ff5fca339937345c5ccdc58200e62452bd903/sys/sys/_sx.h + - https://github.com/barrbrain/svn-dump-fast-export/blob/0ab007d2fab61f9ebcb4c59e2e97e164eece861c/vcs-svn/LICENSE +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/freebsd-first.html b/docs/freebsd-first.html index 56524ed6b3..e5ed65d6b4 100644 --- a/docs/freebsd-first.html +++ b/docs/freebsd-first.html @@ -151,7 +151,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/freebsd-first.json b/docs/freebsd-first.json index d01e257418..530ffba30d 100644 --- a/docs/freebsd-first.json +++ b/docs/freebsd-first.json @@ -1 +1,14 @@ -{"key": "freebsd-first", "short_name": "FreeBSD unmodified first lines License", "name": "FreeBSD unmodified first lines License", "category": "Permissive", "owner": "FreeBSD", "spdx_license_key": "LicenseRef-scancode-freebsd-first", "text_urls": ["https://opensource.apple.com/source/Libc/Libc-498/pthreads/pthread_getschedparam.3.auto.html", "https://github.com/samir-kassab/RSX208/blob/ff9c702aad525de0a6482d54a39fb116899666c8/git-1.8.1.2/vcs-svn/LICENSE", "https://github.com/jpostel/FreeBSD-mirror/blob/4e7ff5fca339937345c5ccdc58200e62452bd903/sys/sys/_sx.h", "https://github.com/barrbrain/svn-dump-fast-export/blob/0ab007d2fab61f9ebcb4c59e2e97e164eece861c/vcs-svn/LICENSE"]} \ No newline at end of file +{ + "key": "freebsd-first", + "short_name": "FreeBSD unmodified first lines License", + "name": "FreeBSD unmodified first lines License", + "category": "Permissive", + "owner": "FreeBSD", + "spdx_license_key": "LicenseRef-scancode-freebsd-first", + "text_urls": [ + "https://opensource.apple.com/source/Libc/Libc-498/pthreads/pthread_getschedparam.3.auto.html", + "https://github.com/samir-kassab/RSX208/blob/ff9c702aad525de0a6482d54a39fb116899666c8/git-1.8.1.2/vcs-svn/LICENSE", + "https://github.com/jpostel/FreeBSD-mirror/blob/4e7ff5fca339937345c5ccdc58200e62452bd903/sys/sys/_sx.h", + "https://github.com/barrbrain/svn-dump-fast-export/blob/0ab007d2fab61f9ebcb4c59e2e97e164eece861c/vcs-svn/LICENSE" + ] +} \ No newline at end of file diff --git a/docs/freeimage-1.0.LICENSE b/docs/freeimage-1.0.LICENSE index 1446e67478..6672a03c6a 100644 --- a/docs/freeimage-1.0.LICENSE +++ b/docs/freeimage-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: freeimage-1.0 +short_name: FreeImage Public License 1.0 +name: FreeImage Public License Version 1.0 +category: Copyleft Limited +owner: FreeImage Project +homepage_url: http://freeimage.sourceforge.net/freeimage-license.txt +spdx_license_key: FreeImage +text_urls: + - http://freeimage.sourceforge.net/freeimage-license.txt +ignorable_urls: + - http://home.wxs.nl/~flvdberg/freeimage-license.txt +--- + FreeImage Public License - Version 1.0 --------------------------------------------- diff --git a/docs/freeimage-1.0.html b/docs/freeimage-1.0.html index f93d68982c..68221a62fa 100644 --- a/docs/freeimage-1.0.html +++ b/docs/freeimage-1.0.html @@ -286,7 +286,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/freeimage-1.0.json b/docs/freeimage-1.0.json index 4822373fe9..e92e57d1cf 100644 --- a/docs/freeimage-1.0.json +++ b/docs/freeimage-1.0.json @@ -1 +1,15 @@ -{"key": "freeimage-1.0", "short_name": "FreeImage Public License 1.0", "name": "FreeImage Public License Version 1.0", "category": "Copyleft Limited", "owner": "FreeImage Project", "homepage_url": "http://freeimage.sourceforge.net/freeimage-license.txt", "spdx_license_key": "FreeImage", "text_urls": ["http://freeimage.sourceforge.net/freeimage-license.txt"], "ignorable_urls": ["http://home.wxs.nl/~flvdberg/freeimage-license.txt"]} \ No newline at end of file +{ + "key": "freeimage-1.0", + "short_name": "FreeImage Public License 1.0", + "name": "FreeImage Public License Version 1.0", + "category": "Copyleft Limited", + "owner": "FreeImage Project", + "homepage_url": "http://freeimage.sourceforge.net/freeimage-license.txt", + "spdx_license_key": "FreeImage", + "text_urls": [ + "http://freeimage.sourceforge.net/freeimage-license.txt" + ], + "ignorable_urls": [ + "http://home.wxs.nl/~flvdberg/freeimage-license.txt" + ] +} \ No newline at end of file diff --git a/docs/freemarker.LICENSE b/docs/freemarker.LICENSE index d3e3549a83..c4de1a81fa 100644 --- a/docs/freemarker.LICENSE +++ b/docs/freemarker.LICENSE @@ -1,3 +1,27 @@ +--- +key: freemarker +short_name: FreeMarker License +name: FreeMarker License +category: Permissive +owner: freemarker.org +homepage_url: http://freemarker.org/LICENSE.txt +spdx_license_key: LicenseRef-scancode-freemarker +text_urls: + - http://freemarker.org/LICENSE.txt + - http://freemarker.org/docs/app_license.html +ignorable_copyrights: + - Copyright (c) 2003 The Visigoth Software Society +ignorable_holders: + - The Visigoth Software Society +ignorable_authors: + - the Visigoth Software Society (http://www.visigoths.org/) +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.visigoths.org/ +ignorable_emails: + - visigoths@visigoths.org +--- + FreeMarker License FreeMarker 1.x was released under the LGPL license. Later, by community diff --git a/docs/freemarker.html b/docs/freemarker.html index 54c753ebf9..d3d7af320c 100644 --- a/docs/freemarker.html +++ b/docs/freemarker.html @@ -251,7 +251,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/freemarker.json b/docs/freemarker.json index 76bda25cdf..9a4c7271bc 100644 --- a/docs/freemarker.json +++ b/docs/freemarker.json @@ -1 +1,29 @@ -{"key": "freemarker", "short_name": "FreeMarker License", "name": "FreeMarker License", "category": "Permissive", "owner": "freemarker.org", "homepage_url": "http://freemarker.org/LICENSE.txt", "spdx_license_key": "LicenseRef-scancode-freemarker", "text_urls": ["http://freemarker.org/LICENSE.txt", "http://freemarker.org/docs/app_license.html"], "ignorable_copyrights": ["Copyright (c) 2003 The Visigoth Software Society"], "ignorable_holders": ["The Visigoth Software Society"], "ignorable_authors": ["the Visigoth Software Society (http://www.visigoths.org/)"], "ignorable_urls": ["http://www.apache.org/licenses/LICENSE-2.0", "http://www.visigoths.org/"], "ignorable_emails": ["visigoths@visigoths.org"]} \ No newline at end of file +{ + "key": "freemarker", + "short_name": "FreeMarker License", + "name": "FreeMarker License", + "category": "Permissive", + "owner": "freemarker.org", + "homepage_url": "http://freemarker.org/LICENSE.txt", + "spdx_license_key": "LicenseRef-scancode-freemarker", + "text_urls": [ + "http://freemarker.org/LICENSE.txt", + "http://freemarker.org/docs/app_license.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 2003 The Visigoth Software Society" + ], + "ignorable_holders": [ + "The Visigoth Software Society" + ], + "ignorable_authors": [ + "the Visigoth Software Society (http://www.visigoths.org/)" + ], + "ignorable_urls": [ + "http://www.apache.org/licenses/LICENSE-2.0", + "http://www.visigoths.org/" + ], + "ignorable_emails": [ + "visigoths@visigoths.org" + ] +} \ No newline at end of file diff --git a/docs/freertos-exception-2.0.LICENSE b/docs/freertos-exception-2.0.LICENSE index 1c0b31819e..6efb0d1899 100644 --- a/docs/freertos-exception-2.0.LICENSE +++ b/docs/freertos-exception-2.0.LICENSE @@ -1,3 +1,98 @@ +--- +key: freertos-exception-2.0 +short_name: FreeRTOS exception to GPL 2.0 +name: FreeRTOS exception to GPL 2.0 +category: Copyleft Limited +owner: FreeRTOS +is_exception: yes +spdx_license_key: freertos-exception-2.0 +faq_url: https://aws.amazon.com/blogs/opensource/announcing-freertos-kernel-v10/ +other_urls: + - http://www.freertos.org/ + - http://www.freertos.org/a00114.html + - http://www.freertos.org/a00114.html#exception + - https://web.archive.org/web/20060809182744/http://www.freertos.org/a00114.html +standard_notice: | + The FreeRTOS source code is licensed by a modified GNU General Public + License - the modification taking the form of an exception. + The exception permits the source code of applications that use FreeRTOS + solely through the API published on this website to remain closed source, + thus permitting the use of FreeRTOS in commercial applications without + necessitating that the whole application be open sourced. The exception can + only be used if you wish to combine FreeRTOS with a proprietary product and + you comply with the terms stated in the exception itself. + The FreeRTOS download also includes demo application source code, some of + which is provided by third parties AND IS LICENSED SEPARATELY FROM + FREERTOS. + For the avoidance of any doubt refer to the comment included at the top of + each source and header file for license and copyright information. + This is a list of files for which Real Time Engineers Ltd. is not the + copyright owner and are NOT COVERED BY THE GPL. + 1. Various header files provided by silicon manufacturers and tool vendors + that define processor specific memory addresses and utility macros. + Permission has been granted by the various copyright holders for these + files to be included in the FreeRTOS download. Users must ensure license + conditions are adhered to for any use other than compilation of the + FreeRTOS demo applications. + 2. The uIP TCP/IP stack the copyright of which is held by Adam Dunkels. + Users must ensure the open source license conditions stated at the top of + each uIP source file is understood and adhered to. + 3. The lwIP TCP/IP stack the copyright of which is held by the Swedish + Institute of Computer Science. Users must ensure the open source license + conditions stated at the top of each lwIP source file is understood and + adhered to. + 4. Various peripheral driver source files and binaries provided by silicon + manufacturers and tool vendors. Permission has been granted by the various + copyright holders for these files to be included in the FreeRTOS download. + Users must ensure license conditions are adhered to for any use other than + compilation of the FreeRTOS demo applications. + 5. The files contained within FreeRTOS\Demo\WizNET_DEMO_TERN_186\tern_code, + which are slightly modified versions of code provided by and copyright to + Tern Inc. + Errors and omissions should be reported to Richard Barry, contact details + for whom can be obtained from the Contact page. + This library 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 2, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + GNU General Public License Exception + Any FreeRTOS source code, whether modified or in its original release form, + or whether in whole or in part, can only be distributed by you under the + terms of the GNU General Public License plus this exception. An independent + module is a module which is not derived from or based on FreeRTOS. + EXCEPTION TEXT: + Clause 1 + Linking FreeRTOS statically or dynamically with other modules is making a + combined work based on FreeRTOS. Thus, the terms and conditions of the GNU + General Public License cover the whole combination. + As a special exception, the copyright holder of FreeRTOS gives you + permission to link FreeRTOS with independent modules that communicate with + FreeRTOS solely through the FreeRTOS API interface, regardless of the + license terms of these independent modules, and to copy and distribute the + resulting combined work under terms of your choice, provided that + 1. Every copy of the combined work is accompanied by a written statement + that details to the recipient the version of FreeRTOS used and an offer by + yourself to provide the FreeRTOS source code (including any modifications + you may have made) should the recipient request it. + 2. The combined work is not itself an RTOS, scheduler, kernel or related + product. + 3. The independent modules add significant and primary functionality to + FreeRTOS and do not merely extend the existing functionality already + present in FreeRTOS. + Clause 2 + FreeRTOS may not be used for any competitive or comparative purpose, + including the publication of any form of run time or compile time metric, + without the express permission of Real Time Engineers Ltd. (this is the + norm within the industry and is intended to ensure information accuracy). +--- + EXCEPTION TEXT: Clause 1 diff --git a/docs/freertos-exception-2.0.html b/docs/freertos-exception-2.0.html index 839c2fda81..abe382f544 100644 --- a/docs/freertos-exception-2.0.html +++ b/docs/freertos-exception-2.0.html @@ -239,7 +239,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/freertos-exception-2.0.json b/docs/freertos-exception-2.0.json index 895d1bb6df..d4c14dd863 100644 --- a/docs/freertos-exception-2.0.json +++ b/docs/freertos-exception-2.0.json @@ -1 +1,17 @@ -{"key": "freertos-exception-2.0", "short_name": "FreeRTOS exception to GPL 2.0", "name": "FreeRTOS exception to GPL 2.0", "category": "Copyleft Limited", "owner": "FreeRTOS", "is_exception": true, "spdx_license_key": "freertos-exception-2.0", "faq_url": "https://aws.amazon.com/blogs/opensource/announcing-freertos-kernel-v10/", "other_urls": ["http://www.freertos.org/", "http://www.freertos.org/a00114.html", "http://www.freertos.org/a00114.html#exception", "https://web.archive.org/web/20060809182744/http://www.freertos.org/a00114.html"], "standard_notice": "The FreeRTOS source code is licensed by a modified GNU General Public\nLicense - the modification taking the form of an exception.\nThe exception permits the source code of applications that use FreeRTOS\nsolely through the API published on this website to remain closed source,\nthus permitting the use of FreeRTOS in commercial applications without\nnecessitating that the whole application be open sourced. The exception can\nonly be used if you wish to combine FreeRTOS with a proprietary product and\nyou comply with the terms stated in the exception itself.\nThe FreeRTOS download also includes demo application source code, some of\nwhich is provided by third parties AND IS LICENSED SEPARATELY FROM\nFREERTOS.\nFor the avoidance of any doubt refer to the comment included at the top of\neach source and header file for license and copyright information.\nThis is a list of files for which Real Time Engineers Ltd. is not the\ncopyright owner and are NOT COVERED BY THE GPL.\n1. Various header files provided by silicon manufacturers and tool vendors\nthat define processor specific memory addresses and utility macros.\nPermission has been granted by the various copyright holders for these\nfiles to be included in the FreeRTOS download. Users must ensure license\nconditions are adhered to for any use other than compilation of the\nFreeRTOS demo applications.\n2. The uIP TCP/IP stack the copyright of which is held by Adam Dunkels.\nUsers must ensure the open source license conditions stated at the top of\neach uIP source file is understood and adhered to.\n3. The lwIP TCP/IP stack the copyright of which is held by the Swedish\nInstitute of Computer Science. Users must ensure the open source license\nconditions stated at the top of each lwIP source file is understood and\nadhered to.\n4. Various peripheral driver source files and binaries provided by silicon\nmanufacturers and tool vendors. Permission has been granted by the various\ncopyright holders for these files to be included in the FreeRTOS download.\nUsers must ensure license conditions are adhered to for any use other than\ncompilation of the FreeRTOS demo applications.\n5. The files contained within FreeRTOS\\Demo\\WizNET_DEMO_TERN_186\\tern_code,\nwhich are slightly modified versions of code provided by and copyright to\nTern Inc.\nErrors and omissions should be reported to Richard Barry, contact details\nfor whom can be obtained from the Contact page.\nThis library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nGNU General Public License Exception\nAny FreeRTOS source code, whether modified or in its original release form,\nor whether in whole or in part, can only be distributed by you under the\nterms of the GNU General Public License plus this exception. An independent\nmodule is a module which is not derived from or based on FreeRTOS.\nEXCEPTION TEXT:\nClause 1\nLinking FreeRTOS statically or dynamically with other modules is making a\ncombined work based on FreeRTOS. Thus, the terms and conditions of the GNU\nGeneral Public License cover the whole combination.\nAs a special exception, the copyright holder of FreeRTOS gives you\npermission to link FreeRTOS with independent modules that communicate with\nFreeRTOS solely through the FreeRTOS API interface, regardless of the\nlicense terms of these independent modules, and to copy and distribute the\nresulting combined work under terms of your choice, provided that\n1. Every copy of the combined work is accompanied by a written statement\nthat details to the recipient the version of FreeRTOS used and an offer by\nyourself to provide the FreeRTOS source code (including any modifications\nyou may have made) should the recipient request it.\n2. The combined work is not itself an RTOS, scheduler, kernel or related\nproduct.\n3. The independent modules add significant and primary functionality to\nFreeRTOS and do not merely extend the existing functionality already\npresent in FreeRTOS.\nClause 2\nFreeRTOS may not be used for any competitive or comparative purpose,\nincluding the publication of any form of run time or compile time metric,\nwithout the express permission of Real Time Engineers Ltd. (this is the\nnorm within the industry and is intended to ensure information accuracy).\n"} \ No newline at end of file +{ + "key": "freertos-exception-2.0", + "short_name": "FreeRTOS exception to GPL 2.0", + "name": "FreeRTOS exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "FreeRTOS", + "is_exception": true, + "spdx_license_key": "freertos-exception-2.0", + "faq_url": "https://aws.amazon.com/blogs/opensource/announcing-freertos-kernel-v10/", + "other_urls": [ + "http://www.freertos.org/", + "http://www.freertos.org/a00114.html", + "http://www.freertos.org/a00114.html#exception", + "https://web.archive.org/web/20060809182744/http://www.freertos.org/a00114.html" + ], + "standard_notice": "The FreeRTOS source code is licensed by a modified GNU General Public\nLicense - the modification taking the form of an exception.\nThe exception permits the source code of applications that use FreeRTOS\nsolely through the API published on this website to remain closed source,\nthus permitting the use of FreeRTOS in commercial applications without\nnecessitating that the whole application be open sourced. The exception can\nonly be used if you wish to combine FreeRTOS with a proprietary product and\nyou comply with the terms stated in the exception itself.\nThe FreeRTOS download also includes demo application source code, some of\nwhich is provided by third parties AND IS LICENSED SEPARATELY FROM\nFREERTOS.\nFor the avoidance of any doubt refer to the comment included at the top of\neach source and header file for license and copyright information.\nThis is a list of files for which Real Time Engineers Ltd. is not the\ncopyright owner and are NOT COVERED BY THE GPL.\n1. Various header files provided by silicon manufacturers and tool vendors\nthat define processor specific memory addresses and utility macros.\nPermission has been granted by the various copyright holders for these\nfiles to be included in the FreeRTOS download. Users must ensure license\nconditions are adhered to for any use other than compilation of the\nFreeRTOS demo applications.\n2. The uIP TCP/IP stack the copyright of which is held by Adam Dunkels.\nUsers must ensure the open source license conditions stated at the top of\neach uIP source file is understood and adhered to.\n3. The lwIP TCP/IP stack the copyright of which is held by the Swedish\nInstitute of Computer Science. Users must ensure the open source license\nconditions stated at the top of each lwIP source file is understood and\nadhered to.\n4. Various peripheral driver source files and binaries provided by silicon\nmanufacturers and tool vendors. Permission has been granted by the various\ncopyright holders for these files to be included in the FreeRTOS download.\nUsers must ensure license conditions are adhered to for any use other than\ncompilation of the FreeRTOS demo applications.\n5. The files contained within FreeRTOS\\Demo\\WizNET_DEMO_TERN_186\\tern_code,\nwhich are slightly modified versions of code provided by and copyright to\nTern Inc.\nErrors and omissions should be reported to Richard Barry, contact details\nfor whom can be obtained from the Contact page.\nThis library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nGNU General Public License Exception\nAny FreeRTOS source code, whether modified or in its original release form,\nor whether in whole or in part, can only be distributed by you under the\nterms of the GNU General Public License plus this exception. An independent\nmodule is a module which is not derived from or based on FreeRTOS.\nEXCEPTION TEXT:\nClause 1\nLinking FreeRTOS statically or dynamically with other modules is making a\ncombined work based on FreeRTOS. Thus, the terms and conditions of the GNU\nGeneral Public License cover the whole combination.\nAs a special exception, the copyright holder of FreeRTOS gives you\npermission to link FreeRTOS with independent modules that communicate with\nFreeRTOS solely through the FreeRTOS API interface, regardless of the\nlicense terms of these independent modules, and to copy and distribute the\nresulting combined work under terms of your choice, provided that\n1. Every copy of the combined work is accompanied by a written statement\nthat details to the recipient the version of FreeRTOS used and an offer by\nyourself to provide the FreeRTOS source code (including any modifications\nyou may have made) should the recipient request it.\n2. The combined work is not itself an RTOS, scheduler, kernel or related\nproduct.\n3. The independent modules add significant and primary functionality to\nFreeRTOS and do not merely extend the existing functionality already\npresent in FreeRTOS.\nClause 2\nFreeRTOS may not be used for any competitive or comparative purpose,\nincluding the publication of any form of run time or compile time metric,\nwithout the express permission of Real Time Engineers Ltd. (this is the\nnorm within the industry and is intended to ensure information accuracy).\n" +} \ No newline at end of file diff --git a/docs/freetts.LICENSE b/docs/freetts.LICENSE index aa3a3fd0f5..2dc4583433 100644 --- a/docs/freetts.LICENSE +++ b/docs/freetts.LICENSE @@ -1,3 +1,22 @@ +--- +key: freetts +short_name: FreeTTS License +name: FreeTTS License +category: Permissive +owner: Oracle Corporation +homepage_url: http://freetts.sourceforge.net/license.terms +spdx_license_key: LicenseRef-scancode-freetts +text_urls: + - http://freetts.sourceforge.net/license.terms +faq_url: http://freetts.sourceforge.net/docs/index.php +ignorable_copyrights: + - Portions Copyright 1999-2001 Language Technologies Institute, Carnegie Mellon University + - Portions Copyright 2001-2004 Sun Microsystems, Inc. +ignorable_holders: + - Language Technologies Institute, Carnegie Mellon University + - Sun Microsystems, Inc. +--- + Portions Copyright 2001-2004 Sun Microsystems, Inc. Portions Copyright 1999-2001 Language Technologies Institute, Carnegie Mellon University. diff --git a/docs/freetts.html b/docs/freetts.html index 2899c88a8a..f864746feb 100644 --- a/docs/freetts.html +++ b/docs/freetts.html @@ -189,7 +189,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/freetts.json b/docs/freetts.json index e54978a752..61fad99187 100644 --- a/docs/freetts.json +++ b/docs/freetts.json @@ -1 +1,21 @@ -{"key": "freetts", "short_name": "FreeTTS License", "name": "FreeTTS License", "category": "Permissive", "owner": "Oracle Corporation", "homepage_url": "http://freetts.sourceforge.net/license.terms", "spdx_license_key": "LicenseRef-scancode-freetts", "text_urls": ["http://freetts.sourceforge.net/license.terms"], "faq_url": "http://freetts.sourceforge.net/docs/index.php", "ignorable_copyrights": ["Portions Copyright 1999-2001 Language Technologies Institute, Carnegie Mellon University", "Portions Copyright 2001-2004 Sun Microsystems, Inc."], "ignorable_holders": ["Language Technologies Institute, Carnegie Mellon University", "Sun Microsystems, Inc."]} \ No newline at end of file +{ + "key": "freetts", + "short_name": "FreeTTS License", + "name": "FreeTTS License", + "category": "Permissive", + "owner": "Oracle Corporation", + "homepage_url": "http://freetts.sourceforge.net/license.terms", + "spdx_license_key": "LicenseRef-scancode-freetts", + "text_urls": [ + "http://freetts.sourceforge.net/license.terms" + ], + "faq_url": "http://freetts.sourceforge.net/docs/index.php", + "ignorable_copyrights": [ + "Portions Copyright 1999-2001 Language Technologies Institute, Carnegie Mellon University", + "Portions Copyright 2001-2004 Sun Microsystems, Inc." + ], + "ignorable_holders": [ + "Language Technologies Institute, Carnegie Mellon University", + "Sun Microsystems, Inc." + ] +} \ No newline at end of file diff --git a/docs/freetype-patent.LICENSE b/docs/freetype-patent.LICENSE index d3429d6271..f4b2ad9a4d 100644 --- a/docs/freetype-patent.LICENSE +++ b/docs/freetype-patent.LICENSE @@ -1,3 +1,16 @@ +--- +key: freetype-patent +short_name: FreeType Patent Grant +name: FreeType Patent Grant +category: Patent License +owner: FreeType Project +homepage_url: https://www.freetype.org/ +notes: This patent grant clause is similat to Apache-2.0 section 3 and is sometimes seen used + alone with the freetype license. +spdx_license_key: LicenseRef-scancode-freetype-patent +minimum_coverage: 70 +--- + Additionally, subject to the terms and conditions of the */ FreeType Project License, each contributor to the Work hereby grants to any individual or legal entity exercising permissions granted by @@ -14,4 +27,4 @@ submitted. If You institute patent litigation against any entity 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. \ No newline at end of file +the date such litigation is filed. \ No newline at end of file diff --git a/docs/freetype-patent.html b/docs/freetype-patent.html index 3cded7f6cf..8ec97e6b30 100644 --- a/docs/freetype-patent.html +++ b/docs/freetype-patent.html @@ -145,7 +145,7 @@ 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. +the date such litigation is filed.
@@ -157,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/freetype-patent.json b/docs/freetype-patent.json index 66e830cc34..c5712e80ea 100644 --- a/docs/freetype-patent.json +++ b/docs/freetype-patent.json @@ -1 +1,11 @@ -{"key": "freetype-patent", "short_name": "FreeType Patent Grant", "name": "FreeType Patent Grant", "category": "Patent License", "owner": "FreeType Project", "homepage_url": "https://www.freetype.org/", "notes": "This patent grant clause is similat to Apache-2.0 section 3 and is sometimes seen used alone with the freetype license.", "spdx_license_key": "LicenseRef-scancode-freetype-patent", "minimum_coverage": 70} \ No newline at end of file +{ + "key": "freetype-patent", + "short_name": "FreeType Patent Grant", + "name": "FreeType Patent Grant", + "category": "Patent License", + "owner": "FreeType Project", + "homepage_url": "https://www.freetype.org/", + "notes": "This patent grant clause is similat to Apache-2.0 section 3 and is sometimes seen used alone with the freetype license.", + "spdx_license_key": "LicenseRef-scancode-freetype-patent", + "minimum_coverage": 70 +} \ No newline at end of file diff --git a/docs/freetype.LICENSE b/docs/freetype.LICENSE index 3a75864e59..31a8ea98c5 100644 --- a/docs/freetype.LICENSE +++ b/docs/freetype.LICENSE @@ -1,3 +1,34 @@ +--- +key: freetype +short_name: FreeType Project License +name: FreeType Project License +category: Permissive +owner: FreeType Project +homepage_url: http://www.freetype.org/license.html +notes: Per SPDX.org, this license was released 27 Jan 2006 +spdx_license_key: FTL +text_urls: + - http://www.freetype.org/FTL.TXT +other_urls: + - http://freetype.fis.uniroma2.it/FTL.TXT + - http://freetype.org/patents.html + - http://git.savannah.gnu.org/cgit/freetype/freetype2.git/tree/docs/FTL.TXT + - http://gitlab.freedesktop.org/freetype/freetype/-/raw/master/docs/FTL.TXT + - http://www.freetype.org/ +ignorable_copyrights: + - Copyright 1996-2002, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg + - copyright (c) 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg + - copyright (c) The FreeType Project (www.freetype.org) +ignorable_holders: + - David Turner, Robert Wilhelm, and Werner Lemberg + - The FreeType Project +ignorable_urls: + - http://www.freetype.org/ +ignorable_emails: + - freetype-devel@nongnu.org + - freetype@nongnu.org +--- + The FreeType Project LICENSE ---------------------------- 2006-Jan-27 diff --git a/docs/freetype.html b/docs/freetype.html index 5c0baaf186..0b77c771fe 100644 --- a/docs/freetype.html +++ b/docs/freetype.html @@ -351,7 +351,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/freetype.json b/docs/freetype.json index 12042bc72a..924707dfa9 100644 --- a/docs/freetype.json +++ b/docs/freetype.json @@ -1 +1,36 @@ -{"key": "freetype", "short_name": "FreeType Project License", "name": "FreeType Project License", "category": "Permissive", "owner": "FreeType Project", "homepage_url": "http://www.freetype.org/license.html", "notes": "Per SPDX.org, this license was released 27 Jan 2006", "spdx_license_key": "FTL", "text_urls": ["http://www.freetype.org/FTL.TXT"], "other_urls": ["http://freetype.fis.uniroma2.it/FTL.TXT", "http://freetype.org/patents.html", "http://git.savannah.gnu.org/cgit/freetype/freetype2.git/tree/docs/FTL.TXT", "http://gitlab.freedesktop.org/freetype/freetype/-/raw/master/docs/FTL.TXT", "http://www.freetype.org/"], "ignorable_copyrights": ["Copyright 1996-2002, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg", "copyright (c) 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg", "copyright (c) The FreeType Project (www.freetype.org)"], "ignorable_holders": ["David Turner, Robert Wilhelm, and Werner Lemberg", "The FreeType Project"], "ignorable_urls": ["http://www.freetype.org/"], "ignorable_emails": ["freetype-devel@nongnu.org", "freetype@nongnu.org"]} \ No newline at end of file +{ + "key": "freetype", + "short_name": "FreeType Project License", + "name": "FreeType Project License", + "category": "Permissive", + "owner": "FreeType Project", + "homepage_url": "http://www.freetype.org/license.html", + "notes": "Per SPDX.org, this license was released 27 Jan 2006", + "spdx_license_key": "FTL", + "text_urls": [ + "http://www.freetype.org/FTL.TXT" + ], + "other_urls": [ + "http://freetype.fis.uniroma2.it/FTL.TXT", + "http://freetype.org/patents.html", + "http://git.savannah.gnu.org/cgit/freetype/freetype2.git/tree/docs/FTL.TXT", + "http://gitlab.freedesktop.org/freetype/freetype/-/raw/master/docs/FTL.TXT", + "http://www.freetype.org/" + ], + "ignorable_copyrights": [ + "Copyright 1996-2002, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg", + "copyright (c) 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg", + "copyright (c) The FreeType Project (www.freetype.org)" + ], + "ignorable_holders": [ + "David Turner, Robert Wilhelm, and Werner Lemberg", + "The FreeType Project" + ], + "ignorable_urls": [ + "http://www.freetype.org/" + ], + "ignorable_emails": [ + "freetype-devel@nongnu.org", + "freetype@nongnu.org" + ] +} \ No newline at end of file diff --git a/docs/froala-owdl-1.0.LICENSE b/docs/froala-owdl-1.0.LICENSE index 54dab37107..dc082aa65c 100644 --- a/docs/froala-owdl-1.0.LICENSE +++ b/docs/froala-owdl-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: froala-owdl-1.0 +short_name: Froala Open Web Design License +name: Froala Open Web Design License +category: Proprietary Free +owner: Froala +homepage_url: https://github.com/froala/design-blocks/blob/dev/LICENSE +notes: based on the OFL 1.1 with a proprietary addition. in 3(a) there are exatr usage restrictions + "Neither the Work nor any of its individual components, in Original or Modified Versions, + may be .... (ii) used for website or app generators; (iii) used to create templates, themes, + and plugins for sale." +spdx_license_key: LicenseRef-scancode-froala-owdl-1.0 +text_urls: + - https://github.com/froala/design-blocks/blob/dev/LICENSE +--- + ------------------------------------------------------------ FROALA OPEN WEB DESIGN LICENSE Version 1.0 - 16 October 2017 ------------------------------------------------------------ diff --git a/docs/froala-owdl-1.0.html b/docs/froala-owdl-1.0.html index f8878d9dc2..d8b5bcb66b 100644 --- a/docs/froala-owdl-1.0.html +++ b/docs/froala-owdl-1.0.html @@ -222,7 +222,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/froala-owdl-1.0.json b/docs/froala-owdl-1.0.json index b245027db3..9a06c18c5c 100644 --- a/docs/froala-owdl-1.0.json +++ b/docs/froala-owdl-1.0.json @@ -1 +1,13 @@ -{"key": "froala-owdl-1.0", "short_name": "Froala Open Web Design License", "name": "Froala Open Web Design License", "category": "Proprietary Free", "owner": "Froala", "homepage_url": "https://github.com/froala/design-blocks/blob/dev/LICENSE", "notes": "based on the OFL 1.1 with a proprietary addition. in 3(a) there are exatr usage restrictions \"Neither the Work nor any of its individual components, in Original or Modified Versions, may be .... (ii) used for website or app generators; (iii) used to create templates, themes, and plugins for sale.\"", "spdx_license_key": "LicenseRef-scancode-froala-owdl-1.0", "text_urls": ["https://github.com/froala/design-blocks/blob/dev/LICENSE"]} \ No newline at end of file +{ + "key": "froala-owdl-1.0", + "short_name": "Froala Open Web Design License", + "name": "Froala Open Web Design License", + "category": "Proprietary Free", + "owner": "Froala", + "homepage_url": "https://github.com/froala/design-blocks/blob/dev/LICENSE", + "notes": "based on the OFL 1.1 with a proprietary addition. in 3(a) there are exatr usage restrictions \"Neither the Work nor any of its individual components, in Original or Modified Versions, may be .... (ii) used for website or app generators; (iii) used to create templates, themes, and plugins for sale.\"", + "spdx_license_key": "LicenseRef-scancode-froala-owdl-1.0", + "text_urls": [ + "https://github.com/froala/design-blocks/blob/dev/LICENSE" + ] +} \ No newline at end of file diff --git a/docs/frontier-1.0.LICENSE b/docs/frontier-1.0.LICENSE index f3daf7a210..1bbaef1bc5 100644 --- a/docs/frontier-1.0.LICENSE +++ b/docs/frontier-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: frontier-1.0 +short_name: Frontier Artistic License +name: Frontier Artistic License +category: Copyleft Limited +owner: Frontier Scripting +homepage_url: http://www.spinwardstars.com/frontier/fal.html +spdx_license_key: LicenseRef-scancode-frontier-1.0 +text_urls: + - http://www.spinwardstars.com/frontier/fal10.txt +ignorable_copyrights: + - Copyright (c) (c) 1999 by Samuel Reynolds +ignorable_holders: + - Samuel Reynolds +ignorable_urls: + - http://ftp.uu.net/ +--- + THE FRONTIER ARTISTIC LICENSE Version 1.0 Copyright © (c) 1999 by Samuel Reynolds. Derived from the "Artistic License" at "OpenSource.org". diff --git a/docs/frontier-1.0.html b/docs/frontier-1.0.html index e6d38f83c8..f6de29f0e7 100644 --- a/docs/frontier-1.0.html +++ b/docs/frontier-1.0.html @@ -275,7 +275,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/frontier-1.0.json b/docs/frontier-1.0.json index 75461b4195..abbbb50977 100644 --- a/docs/frontier-1.0.json +++ b/docs/frontier-1.0.json @@ -1 +1,21 @@ -{"key": "frontier-1.0", "short_name": "Frontier Artistic License", "name": "Frontier Artistic License", "category": "Copyleft Limited", "owner": "Frontier Scripting", "homepage_url": "http://www.spinwardstars.com/frontier/fal.html", "spdx_license_key": "LicenseRef-scancode-frontier-1.0", "text_urls": ["http://www.spinwardstars.com/frontier/fal10.txt"], "ignorable_copyrights": ["Copyright (c) (c) 1999 by Samuel Reynolds"], "ignorable_holders": ["Samuel Reynolds"], "ignorable_urls": ["http://ftp.uu.net/"]} \ No newline at end of file +{ + "key": "frontier-1.0", + "short_name": "Frontier Artistic License", + "name": "Frontier Artistic License", + "category": "Copyleft Limited", + "owner": "Frontier Scripting", + "homepage_url": "http://www.spinwardstars.com/frontier/fal.html", + "spdx_license_key": "LicenseRef-scancode-frontier-1.0", + "text_urls": [ + "http://www.spinwardstars.com/frontier/fal10.txt" + ], + "ignorable_copyrights": [ + "Copyright (c) (c) 1999 by Samuel Reynolds" + ], + "ignorable_holders": [ + "Samuel Reynolds" + ], + "ignorable_urls": [ + "http://ftp.uu.net/" + ] +} \ No newline at end of file diff --git a/docs/fsf-ap.LICENSE b/docs/fsf-ap.LICENSE index 36bd5eba7d..08c1445f4b 100644 --- a/docs/fsf-ap.LICENSE +++ b/docs/fsf-ap.LICENSE @@ -1,4 +1,25 @@ +--- +key: fsf-ap +short_name: FSF All Permissive License +name: FSF All Permissive License +category: Permissive +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html +notes: | + Per Fedora, This is a simple permissive license, created by the FSF. It is + Free and GPL compatible. The FSF recommends it for "small supporting files, + short manuals (under 300 lines long) and rough documentation (README files, + INSTALL files, etc.)". +spdx_license_key: FSFAP +other_urls: + - http://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html + - http://www.gnu.org/software/autoconf-archive/ax_lib_readline.html + - https://fedoraproject.org/wiki/Licensing/FSFAP + - https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html +minimum_coverage: 85 +--- + Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without any -warranty. +warranty. \ No newline at end of file diff --git a/docs/fsf-ap.html b/docs/fsf-ap.html index 12d4405e3a..cfaf2706e3 100644 --- a/docs/fsf-ap.html +++ b/docs/fsf-ap.html @@ -145,8 +145,7 @@
Copying and distribution of this file, with or without modification, are
 permitted in any medium without royalty provided the copyright notice
 and this notice are preserved. This file is offered as-is, without any
-warranty.
-
+warranty.
@@ -158,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fsf-ap.json b/docs/fsf-ap.json index eb3fcd569a..9bcf905a3a 100644 --- a/docs/fsf-ap.json +++ b/docs/fsf-ap.json @@ -1 +1,17 @@ -{"key": "fsf-ap", "short_name": "FSF All Permissive License", "name": "FSF All Permissive License", "category": "Permissive", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html", "notes": "Per Fedora, This is a simple permissive license, created by the FSF. It is\nFree and GPL compatible. The FSF recommends it for \"small supporting files,\nshort manuals (under 300 lines long) and rough documentation (README files,\nINSTALL files, etc.)\".\n", "spdx_license_key": "FSFAP", "other_urls": ["http://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html", "http://www.gnu.org/software/autoconf-archive/ax_lib_readline.html", "https://fedoraproject.org/wiki/Licensing/FSFAP", "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html"], "minimum_coverage": 85} \ No newline at end of file +{ + "key": "fsf-ap", + "short_name": "FSF All Permissive License", + "name": "FSF All Permissive License", + "category": "Permissive", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html", + "notes": "Per Fedora, This is a simple permissive license, created by the FSF. It is\nFree and GPL compatible. The FSF recommends it for \"small supporting files,\nshort manuals (under 300 lines long) and rough documentation (README files,\nINSTALL files, etc.)\".\n", + "spdx_license_key": "FSFAP", + "other_urls": [ + "http://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html", + "http://www.gnu.org/software/autoconf-archive/ax_lib_readline.html", + "https://fedoraproject.org/wiki/Licensing/FSFAP", + "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html" + ], + "minimum_coverage": 85 +} \ No newline at end of file diff --git a/docs/fsf-free.LICENSE b/docs/fsf-free.LICENSE index 93a0ea951c..51ff600620 100644 --- a/docs/fsf-free.LICENSE +++ b/docs/fsf-free.LICENSE @@ -1,2 +1,14 @@ +--- +key: fsf-free +short_name: FSF Free Software License +name: Free Software Foundation - Free Software License +category: Public Domain +owner: Free Software Foundation (FSF) +homepage_url: http://www.fsf.org/licensing/licenses/ +spdx_license_key: FSFUL +text_urls: + - https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License +--- + This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. \ No newline at end of file diff --git a/docs/fsf-free.html b/docs/fsf-free.html index dfe523df09..cd8c13cb70 100644 --- a/docs/fsf-free.html +++ b/docs/fsf-free.html @@ -137,7 +137,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fsf-free.json b/docs/fsf-free.json index 3639d4bb2a..d3731b9859 100644 --- a/docs/fsf-free.json +++ b/docs/fsf-free.json @@ -1 +1,12 @@ -{"key": "fsf-free", "short_name": "FSF Free Software License", "name": "Free Software Foundation - Free Software License", "category": "Public Domain", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.fsf.org/licensing/licenses/", "spdx_license_key": "FSFUL", "text_urls": ["https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License"]} \ No newline at end of file +{ + "key": "fsf-free", + "short_name": "FSF Free Software License", + "name": "Free Software Foundation - Free Software License", + "category": "Public Domain", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.fsf.org/licensing/licenses/", + "spdx_license_key": "FSFUL", + "text_urls": [ + "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License" + ] +} \ No newline at end of file diff --git a/docs/fsf-notice.LICENSE b/docs/fsf-notice.LICENSE index 3c38e4e753..0cb1817545 100644 --- a/docs/fsf-notice.LICENSE +++ b/docs/fsf-notice.LICENSE @@ -1,2 +1,15 @@ +--- +key: fsf-notice +short_name: FSF Notice +name: FSF Notice +category: Permissive +owner: Free Software Foundation (FSF) +homepage_url: http://www.fsf.org/licensing/licenses/ +notes: This notice is commonly seen in L/GPL-licensed FSF and GNU projects as a short additional + notice in command line tools or build scritps. It was previsouly reported as a free but + unknown. It is commonly seen in GCC, GCB, Bash and related tools. +spdx_license_key: LicenseRef-scancode-fsf-notice +--- + This is free software: you are free to change and redistribute it -There is NO WARRANTY, to the extent permitted by law. +There is NO WARRANTY, to the extent permitted by law. \ No newline at end of file diff --git a/docs/fsf-notice.html b/docs/fsf-notice.html index 5415fa0c41..4670732017 100644 --- a/docs/fsf-notice.html +++ b/docs/fsf-notice.html @@ -123,8 +123,7 @@
license_text
This is free software: you are free to change and redistribute it
-There is NO WARRANTY, to the extent permitted by law.
-
+There is NO WARRANTY, to the extent permitted by law.
@@ -136,7 +135,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fsf-notice.json b/docs/fsf-notice.json index 59ed15b4cf..725581fdc3 100644 --- a/docs/fsf-notice.json +++ b/docs/fsf-notice.json @@ -1 +1,10 @@ -{"key": "fsf-notice", "short_name": "FSF Notice", "name": "FSF Notice", "category": "Permissive", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.fsf.org/licensing/licenses/", "notes": "This notice is commonly seen in L/GPL-licensed FSF and GNU projects as a short additional notice in command line tools or build scritps. It was previsouly reported as a free but unknown. It is commonly seen in GCC, GCB, Bash and related tools.", "spdx_license_key": "LicenseRef-scancode-fsf-notice"} \ No newline at end of file +{ + "key": "fsf-notice", + "short_name": "FSF Notice", + "name": "FSF Notice", + "category": "Permissive", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.fsf.org/licensing/licenses/", + "notes": "This notice is commonly seen in L/GPL-licensed FSF and GNU projects as a short additional notice in command line tools or build scritps. It was previsouly reported as a free but unknown. It is commonly seen in GCC, GCB, Bash and related tools.", + "spdx_license_key": "LicenseRef-scancode-fsf-notice" +} \ No newline at end of file diff --git a/docs/fsf-unlimited-no-warranty.LICENSE b/docs/fsf-unlimited-no-warranty.LICENSE index e072e1c554..8f329305be 100644 --- a/docs/fsf-unlimited-no-warranty.LICENSE +++ b/docs/fsf-unlimited-no-warranty.LICENSE @@ -1,3 +1,19 @@ +--- +key: fsf-unlimited-no-warranty +short_name: FSF Unlimited License No Warranty +name: FSF Unlimited License No Warranty +category: Permissive +owner: Free Software Foundation (FSF) +homepage_url: http://www.fsf.org/licensing/licenses/ +spdx_license_key: FSFULLRWD +text_urls: + - http://www.fsf.org/licensing/licenses/ +other_urls: + - https://github.com/nexB/scancode-toolkit/pull/1702 + - https://lists.gnu.org/archive/html/autoconf/2012-04/msg00061.html +minimum_coverage: 60 +--- + This file is free software; the Free Software Foundation gives unlimited permission to copy and/or distribute it, with or without modifications, as long as this notice is preserved. diff --git a/docs/fsf-unlimited-no-warranty.html b/docs/fsf-unlimited-no-warranty.html index 43e250194d..454519137d 100644 --- a/docs/fsf-unlimited-no-warranty.html +++ b/docs/fsf-unlimited-no-warranty.html @@ -109,7 +109,7 @@
spdx_license_key
- LicenseRef-scancode-fsf-unlimited-no-warranty + FSFULLRWD
@@ -126,7 +126,7 @@
@@ -159,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fsf-unlimited-no-warranty.json b/docs/fsf-unlimited-no-warranty.json index 2d5312f2a9..a405077354 100644 --- a/docs/fsf-unlimited-no-warranty.json +++ b/docs/fsf-unlimited-no-warranty.json @@ -1 +1,17 @@ -{"key": "fsf-unlimited-no-warranty", "short_name": "FSF Unlimited License No Warranty", "name": "FSF Unlimited License No Warranty", "category": "Permissive", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.fsf.org/licensing/licenses/", "spdx_license_key": "LicenseRef-scancode-fsf-unlimited-no-warranty", "text_urls": ["http://www.fsf.org/licensing/licenses/"], "other_urls": ["https://github.com/nexB/scancode-toolkit/pull/1702"], "minimum_coverage": 60} \ No newline at end of file +{ + "key": "fsf-unlimited-no-warranty", + "short_name": "FSF Unlimited License No Warranty", + "name": "FSF Unlimited License No Warranty", + "category": "Permissive", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.fsf.org/licensing/licenses/", + "spdx_license_key": "FSFULLRWD", + "text_urls": [ + "http://www.fsf.org/licensing/licenses/" + ], + "other_urls": [ + "https://github.com/nexB/scancode-toolkit/pull/1702", + "https://lists.gnu.org/archive/html/autoconf/2012-04/msg00061.html" + ], + "minimum_coverage": 60 +} \ No newline at end of file diff --git a/docs/fsf-unlimited-no-warranty.yml b/docs/fsf-unlimited-no-warranty.yml index 4a6f82d7f9..2702b7b857 100644 --- a/docs/fsf-unlimited-no-warranty.yml +++ b/docs/fsf-unlimited-no-warranty.yml @@ -4,9 +4,10 @@ name: FSF Unlimited License No Warranty category: Permissive owner: Free Software Foundation (FSF) homepage_url: http://www.fsf.org/licensing/licenses/ -spdx_license_key: LicenseRef-scancode-fsf-unlimited-no-warranty +spdx_license_key: FSFULLRWD text_urls: - http://www.fsf.org/licensing/licenses/ other_urls: - https://github.com/nexB/scancode-toolkit/pull/1702 + - https://lists.gnu.org/archive/html/autoconf/2012-04/msg00061.html minimum_coverage: 60 diff --git a/docs/fsf-unlimited.LICENSE b/docs/fsf-unlimited.LICENSE index 81d80804f7..1a2446e4d5 100644 --- a/docs/fsf-unlimited.LICENSE +++ b/docs/fsf-unlimited.LICENSE @@ -1,3 +1,13 @@ +--- +key: fsf-unlimited +short_name: FSF-Unlimited +name: Free Software Foundation - Unlimited License +category: Permissive +owner: Free Software Foundation (FSF) +homepage_url: https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant +spdx_license_key: FSFULLR +--- + This file is free software; the Free Software Foundation gives unlimited permission to copy and/or distribute it, with or without -modifications, as long as this notice is preserved. +modifications, as long as this notice is preserved. \ No newline at end of file diff --git a/docs/fsf-unlimited.html b/docs/fsf-unlimited.html index 66e36f8d7d..daa6870ef0 100644 --- a/docs/fsf-unlimited.html +++ b/docs/fsf-unlimited.html @@ -117,8 +117,7 @@
license_text
This file is free software; the Free Software Foundation gives
 unlimited permission to copy and/or distribute it, with or without
-modifications, as long as this notice is preserved.
-
+modifications, as long as this notice is preserved.
@@ -130,7 +129,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/fsf-unlimited.json b/docs/fsf-unlimited.json index 8a9ca2aeba..73662fa0f1 100644 --- a/docs/fsf-unlimited.json +++ b/docs/fsf-unlimited.json @@ -1 +1,9 @@ -{"key": "fsf-unlimited", "short_name": "FSF-Unlimited", "name": "Free Software Foundation - Unlimited License", "category": "Permissive", "owner": "Free Software Foundation (FSF)", "homepage_url": "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", "spdx_license_key": "FSFULLR"} \ No newline at end of file +{ + "key": "fsf-unlimited", + "short_name": "FSF-Unlimited", + "name": "Free Software Foundation - Unlimited License", + "category": "Permissive", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant", + "spdx_license_key": "FSFULLR" +} \ No newline at end of file diff --git a/docs/ftdi.LICENSE b/docs/ftdi.LICENSE index 95dd415087..3bc5abdfcc 100644 --- a/docs/ftdi.LICENSE +++ b/docs/ftdi.LICENSE @@ -1,3 +1,16 @@ +--- +key: ftdi +short_name: FTDI License +name: Future Technology Devices International License +category: Proprietary Free +owner: FTDI +homepage_url: https://github.com/psi46/psi46test/blob/master/linux/ftd2xx.h +spdx_license_key: LicenseRef-scancode-ftdi +other_urls: + - http://www.ftdichip.com/ +minimum_coverage: 70 +--- + THIS SOFTWARE IS PROVIDED BY FUTURE TECHNOLOGY DEVICES INTERNATIONAL LIMITED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS diff --git a/docs/ftdi.html b/docs/ftdi.html index 17090683f1..7041d06c93 100644 --- a/docs/ftdi.html +++ b/docs/ftdi.html @@ -165,7 +165,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ftdi.json b/docs/ftdi.json index e7354fa62a..a00ecef438 100644 --- a/docs/ftdi.json +++ b/docs/ftdi.json @@ -1 +1,13 @@ -{"key": "ftdi", "short_name": "FTDI License", "name": "Future Technology Devices International License", "category": "Proprietary Free", "owner": "FTDI", "homepage_url": "https://github.com/psi46/psi46test/blob/master/linux/ftd2xx.h", "spdx_license_key": "LicenseRef-scancode-ftdi", "other_urls": ["http://www.ftdichip.com/"], "minimum_coverage": 70} \ No newline at end of file +{ + "key": "ftdi", + "short_name": "FTDI License", + "name": "Future Technology Devices International License", + "category": "Proprietary Free", + "owner": "FTDI", + "homepage_url": "https://github.com/psi46/psi46test/blob/master/linux/ftd2xx.h", + "spdx_license_key": "LicenseRef-scancode-ftdi", + "other_urls": [ + "http://www.ftdichip.com/" + ], + "minimum_coverage": 70 +} \ No newline at end of file diff --git a/docs/ftpbean.LICENSE b/docs/ftpbean.LICENSE index bdbae6c721..c23b445ea5 100644 --- a/docs/ftpbean.LICENSE +++ b/docs/ftpbean.LICENSE @@ -1,3 +1,21 @@ +--- +key: ftpbean +short_name: FtpBean License +name: FtpBean License +category: Proprietary Free +owner: Calvin Tai +homepage_url: http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean +spdx_license_key: LicenseRef-scancode-ftpbean +ignorable_copyrights: + - Copyright 1999 Calvin Tai +ignorable_holders: + - Calvin Tai +ignorable_urls: + - http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean +ignorable_emails: + - citidancer@hongkong.com +--- + FtpBean Version 1.4.2 Copyright 1999 Calvin Tai E-mail: citidancer@hongkong.com @@ -16,4 +34,4 @@ In other words, please ask first before you try and make money off of this java bean as a standalone application. Obtain permission before redistributing this software over the Internet or -in any other medium. In all cases copyright and header must remain intact. +in any other medium. In all cases copyright and header must remain intact. \ No newline at end of file diff --git a/docs/ftpbean.html b/docs/ftpbean.html index 2f85e33a2f..208ed97ad7 100644 --- a/docs/ftpbean.html +++ b/docs/ftpbean.html @@ -169,8 +169,7 @@ this java bean as a standalone application. Obtain permission before redistributing this software over the Internet or -in any other medium. In all cases copyright and header must remain intact. - +in any other medium. In all cases copyright and header must remain intact.
@@ -182,7 +181,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ftpbean.json b/docs/ftpbean.json index faf82d99c2..6003a7eba8 100644 --- a/docs/ftpbean.json +++ b/docs/ftpbean.json @@ -1 +1,21 @@ -{"key": "ftpbean", "short_name": "FtpBean License", "name": "FtpBean License", "category": "Proprietary Free", "owner": "Calvin Tai", "homepage_url": "http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean", "spdx_license_key": "LicenseRef-scancode-ftpbean", "ignorable_copyrights": ["Copyright 1999 Calvin Tai"], "ignorable_holders": ["Calvin Tai"], "ignorable_urls": ["http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean"], "ignorable_emails": ["citidancer@hongkong.com"]} \ No newline at end of file +{ + "key": "ftpbean", + "short_name": "FtpBean License", + "name": "FtpBean License", + "category": "Proprietary Free", + "owner": "Calvin Tai", + "homepage_url": "http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean", + "spdx_license_key": "LicenseRef-scancode-ftpbean", + "ignorable_copyrights": [ + "Copyright 1999 Calvin Tai" + ], + "ignorable_holders": [ + "Calvin Tai" + ], + "ignorable_urls": [ + "http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean" + ], + "ignorable_emails": [ + "citidancer@hongkong.com" + ] +} \ No newline at end of file diff --git a/docs/gareth-mccaughan.LICENSE b/docs/gareth-mccaughan.LICENSE index 39d2663b26..dc3b2c25cf 100644 --- a/docs/gareth-mccaughan.LICENSE +++ b/docs/gareth-mccaughan.LICENSE @@ -1,3 +1,17 @@ +--- +key: gareth-mccaughan +short_name: Gareth McCaughan License +name: Gareth McCaughan License +category: Permissive +owner: Gareth McCaughan +homepage_url: https://github.com/tonyg/pi-nothing/blob/master/disarm/disarm-0.11.c +spdx_license_key: LicenseRef-scancode-gareth-mccaughan +other_urls: + - http://web.ukonline.co.uk/g.mccaughan/g/software.html +ignorable_urls: + - http://web.ukonline.co.uk/g.mccaughan/g/software.html +--- + This file may be distributed and used freely provided: 1. You do not distribute any version that lacks this copyright notice (exactly as it appears here, extending diff --git a/docs/gareth-mccaughan.html b/docs/gareth-mccaughan.html index c499196888..993dadfd69 100644 --- a/docs/gareth-mccaughan.html +++ b/docs/gareth-mccaughan.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gareth-mccaughan.json b/docs/gareth-mccaughan.json index b47495b7c3..b46aa82306 100644 --- a/docs/gareth-mccaughan.json +++ b/docs/gareth-mccaughan.json @@ -1 +1,15 @@ -{"key": "gareth-mccaughan", "short_name": "Gareth McCaughan License", "name": "Gareth McCaughan License", "category": "Permissive", "owner": "Gareth McCaughan", "homepage_url": "https://github.com/tonyg/pi-nothing/blob/master/disarm/disarm-0.11.c", "spdx_license_key": "LicenseRef-scancode-gareth-mccaughan", "other_urls": ["http://web.ukonline.co.uk/g.mccaughan/g/software.html"], "ignorable_urls": ["http://web.ukonline.co.uk/g.mccaughan/g/software.html"]} \ No newline at end of file +{ + "key": "gareth-mccaughan", + "short_name": "Gareth McCaughan License", + "name": "Gareth McCaughan License", + "category": "Permissive", + "owner": "Gareth McCaughan", + "homepage_url": "https://github.com/tonyg/pi-nothing/blob/master/disarm/disarm-0.11.c", + "spdx_license_key": "LicenseRef-scancode-gareth-mccaughan", + "other_urls": [ + "http://web.ukonline.co.uk/g.mccaughan/g/software.html" + ], + "ignorable_urls": [ + "http://web.ukonline.co.uk/g.mccaughan/g/software.html" + ] +} \ No newline at end of file diff --git a/docs/gary-s-brown.LICENSE b/docs/gary-s-brown.LICENSE index aa02028e79..23c741b803 100644 --- a/docs/gary-s-brown.LICENSE +++ b/docs/gary-s-brown.LICENSE @@ -1 +1,10 @@ -You may use this program, or code or tables extracted from it, as desired without restriction \ No newline at end of file +--- +key: gary-s-brown +short_name: Gary S. Brown License +name: Gary S. Brown License +category: Permissive +owner: Gary S. Brown +spdx_license_key: LicenseRef-scancode-gary-s-brown +--- + +You may use this program, or code or tables extracted from it, as desired without restriction \ No newline at end of file diff --git a/docs/gary-s-brown.html b/docs/gary-s-brown.html index 255fe7d075..a47f251d44 100644 --- a/docs/gary-s-brown.html +++ b/docs/gary-s-brown.html @@ -108,7 +108,7 @@
license_text
-
You may use this program, or code or tables extracted from it, as desired without restriction 
+
You may use this program, or code or tables extracted from it, as desired without restriction
@@ -120,7 +120,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gary-s-brown.json b/docs/gary-s-brown.json index 5c43b14914..ea38a0c09b 100644 --- a/docs/gary-s-brown.json +++ b/docs/gary-s-brown.json @@ -1 +1,8 @@ -{"key": "gary-s-brown", "short_name": "Gary S. Brown License", "name": "Gary S. Brown License", "category": "Permissive", "owner": "Gary S. Brown", "spdx_license_key": "LicenseRef-scancode-gary-s-brown"} \ No newline at end of file +{ + "key": "gary-s-brown", + "short_name": "Gary S. Brown License", + "name": "Gary S. Brown License", + "category": "Permissive", + "owner": "Gary S. Brown", + "spdx_license_key": "LicenseRef-scancode-gary-s-brown" +} \ No newline at end of file diff --git a/docs/gcc-compiler-exception-2.0.LICENSE b/docs/gcc-compiler-exception-2.0.LICENSE index 865806c690..5b050903ec 100644 --- a/docs/gcc-compiler-exception-2.0.LICENSE +++ b/docs/gcc-compiler-exception-2.0.LICENSE @@ -1,3 +1,34 @@ +--- +key: gcc-compiler-exception-2.0 +short_name: GCC compiler exception to GPL 2.0 +name: GCC Compiler exception to GPL 2.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: LicenseRef-scancode-gcc-compiler-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + GCC 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 2, or (at your option) + any later version. + GCC 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 GCC; see the file COPYING. If not, write to the Free + Software Foundation, 59 Temple Place - Suite 330, Boston, MA + 02111-1307, USA. + As a special exception, if you include this header file into source + files compiled by GCC, this header file does not by itself cause + the resulting executable to be covered by the GNU General Public + License. This exception does not however invalidate any other + reasons why the executable file might be covered by the GNU General + Public License. +--- + As a special exception, if you include this header file into source files compiled by GCC, this header file does not by itself cause the resulting executable to be covered by the GNU General Public diff --git a/docs/gcc-compiler-exception-2.0.html b/docs/gcc-compiler-exception-2.0.html index ed234ccd30..f2e4284e66 100644 --- a/docs/gcc-compiler-exception-2.0.html +++ b/docs/gcc-compiler-exception-2.0.html @@ -166,7 +166,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gcc-compiler-exception-2.0.json b/docs/gcc-compiler-exception-2.0.json index 6e3c9aca0d..3de9f05cef 100644 --- a/docs/gcc-compiler-exception-2.0.json +++ b/docs/gcc-compiler-exception-2.0.json @@ -1 +1,13 @@ -{"key": "gcc-compiler-exception-2.0", "short_name": "GCC compiler exception to GPL 2.0", "name": "GCC Compiler exception to GPL 2.0", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-gcc-compiler-exception-2.0", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "GCC is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2, or (at your option)\nany later version.\nGCC is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY\nor FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public\nLicense for more details.\nYou should have received a copy of the GNU General Public License\nalong with GCC; see the file COPYING. If not, write to the Free\nSoftware Foundation, 59 Temple Place - Suite 330, Boston, MA\n02111-1307, USA.\nAs a special exception, if you include this header file into source\nfiles compiled by GCC, this header file does not by itself cause\nthe resulting executable to be covered by the GNU General Public\nLicense. This exception does not however invalidate any other\nreasons why the executable file might be covered by the GNU General\nPublic License.\n"} \ No newline at end of file +{ + "key": "gcc-compiler-exception-2.0", + "short_name": "GCC compiler exception to GPL 2.0", + "name": "GCC Compiler exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-gcc-compiler-exception-2.0", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "GCC is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2, or (at your option)\nany later version.\nGCC is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY\nor FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public\nLicense for more details.\nYou should have received a copy of the GNU General Public License\nalong with GCC; see the file COPYING. If not, write to the Free\nSoftware Foundation, 59 Temple Place - Suite 330, Boston, MA\n02111-1307, USA.\nAs a special exception, if you include this header file into source\nfiles compiled by GCC, this header file does not by itself cause\nthe resulting executable to be covered by the GNU General Public\nLicense. This exception does not however invalidate any other\nreasons why the executable file might be covered by the GNU General\nPublic License.\n" +} \ No newline at end of file diff --git a/docs/gcc-exception-3.0.LICENSE b/docs/gcc-exception-3.0.LICENSE index 7bc596a1d9..f030d08bb8 100644 --- a/docs/gcc-exception-3.0.LICENSE +++ b/docs/gcc-exception-3.0.LICENSE @@ -1,3 +1,25 @@ +--- +key: gcc-exception-3.0 +short_name: GCC Runtime Library Exception v3.0 +name: GCC Runtime Library Exception v3.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gcc-exception-3.0.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-exception-3.0 +text_urls: + - http://www.gnu.org/licenses/gcc-exception-3.0.html +other_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt + - https://github.com/earthcomputing/Netronome/blob/9f5132ecea3c134322305c9524da7189374881ec/nfp-sdk-6.0.1/NFP_SDK_EULA.txt +minimum_coverage: 98 +ignorable_copyrights: + - Copyright (c) 2009 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://fsf.org/ +--- GCC RUNTIME LIBRARY EXCEPTION Version 3, 27 January 2009 @@ -26,4 +48,4 @@ A Compilation Process is "Eligible" if it is done using GCC, alone or with other You have permission to propagate a work of Target Code formed by combining the Runtime Library with Independent Modules, even if such propagation would otherwise violate the terms of GPLv3, provided that all Target Code was generated by Eligible Compilation Processes. You may then convey such a combination under terms of your choice, consistent with the licensing of the Independent Modules. 2. No Weakening of GCC Copyleft. -The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of GCC. +The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of GCC. \ No newline at end of file diff --git a/docs/gcc-exception-3.0.html b/docs/gcc-exception-3.0.html index dcb7a3bfeb..10528bc401 100644 --- a/docs/gcc-exception-3.0.html +++ b/docs/gcc-exception-3.0.html @@ -174,8 +174,7 @@
license_text
-

-GCC RUNTIME LIBRARY EXCEPTION Version 3, 27 January 2009
+    
GCC RUNTIME LIBRARY EXCEPTION Version 3, 27 January 2009
 
 Copyright © 2009 Free Software Foundation, Inc. <https://fsf.org/>
 
@@ -202,8 +201,7 @@
 You have permission to propagate a work of Target Code formed by combining the Runtime Library with Independent Modules, even if such propagation would otherwise violate the terms of GPLv3, provided that all Target Code was generated by Eligible Compilation Processes. You may then convey such a combination under terms of your choice, consistent with the licensing of the Independent Modules.
 2. No Weakening of GCC Copyleft.
 
-The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of GCC.
-
+The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of GCC.
@@ -215,7 +213,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gcc-exception-3.0.json b/docs/gcc-exception-3.0.json index c44a8ecbb1..e99848ada5 100644 --- a/docs/gcc-exception-3.0.json +++ b/docs/gcc-exception-3.0.json @@ -1 +1,27 @@ -{"key": "gcc-exception-3.0", "short_name": "GCC Runtime Library Exception v3.0", "name": "GCC Runtime Library Exception v3.0", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/gcc-exception-3.0.html", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-exception-3.0", "text_urls": ["http://www.gnu.org/licenses/gcc-exception-3.0.html"], "other_urls": ["http://www.gnu.org/licenses/gpl-3.0.txt", "https://github.com/earthcomputing/Netronome/blob/9f5132ecea3c134322305c9524da7189374881ec/nfp-sdk-6.0.1/NFP_SDK_EULA.txt"], "minimum_coverage": 98, "ignorable_copyrights": ["Copyright (c) 2009 Free Software Foundation, Inc. "], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["https://fsf.org/"]} \ No newline at end of file +{ + "key": "gcc-exception-3.0", + "short_name": "GCC Runtime Library Exception v3.0", + "name": "GCC Runtime Library Exception v3.0", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gcc-exception-3.0.html", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-exception-3.0", + "text_urls": [ + "http://www.gnu.org/licenses/gcc-exception-3.0.html" + ], + "other_urls": [ + "http://www.gnu.org/licenses/gpl-3.0.txt", + "https://github.com/earthcomputing/Netronome/blob/9f5132ecea3c134322305c9524da7189374881ec/nfp-sdk-6.0.1/NFP_SDK_EULA.txt" + ], + "minimum_coverage": 98, + "ignorable_copyrights": [ + "Copyright (c) 2009 Free Software Foundation, Inc. " + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "https://fsf.org/" + ] +} \ No newline at end of file diff --git a/docs/gcc-exception-3.1.LICENSE b/docs/gcc-exception-3.1.LICENSE index e86f7fb58a..cb4d6b4f43 100644 --- a/docs/gcc-exception-3.1.LICENSE +++ b/docs/gcc-exception-3.1.LICENSE @@ -1,3 +1,91 @@ +--- +key: gcc-exception-3.1 +short_name: GCC Runtime Library Exception v3.1 +name: GCC Runtime Library Exception v3.1 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gcc-exception-3.1.html +is_exception: yes +spdx_license_key: GCC-exception-3.1 +text_urls: + - http://www.gnu.org/licenses/gcc-exception-3.1.html +faq_url: http://www.gnu.org/licenses/gcc-exception-3.1-faq.html +other_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +standard_notice: | + 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 . + GCC RUNTIME LIBRARY EXCEPTION + Version 3.1, 31 March 2009 + Copyright © 2009 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies of this + license document, but changing it is not allowed. + This GCC Runtime Library Exception ("Exception") is an additional + permission under section 7 of the GNU General Public License, version 3 + ("GPLv3"). It applies to a given file (the "Runtime Library") that bears a + notice placed by the copyright holder of the file stating that the file is + governed by GPLv3 along with this Exception. + When you use GCC to compile a program, GCC may combine portions of certain + GCC header files and runtime libraries with the compiled program. The + purpose of this Exception is to allow compilation of non-GPL (including + proprietary) programs to use, in this way, the header files and runtime + libraries covered by this Exception. + 0. Definitions. + A file is an "Independent Module" if it either requires the Runtime Library + for execution after a Compilation Process, or makes use of an interface + provided by the Runtime Library, but is not otherwise based on the Runtime + Library. + "GCC" means a version of the GNU Compiler Collection, with or without + modifications, governed by version 3 (or a specified later version) of the + GNU General Public License (GPL) with the option of using any subsequent + versions published by the FSF. + "GPL-compatible Software" is software whose conditions of propagation, + modification and use would permit combination with GCC in accord with the + license of GCC. + "Target Code" refers to output from any compiler for a real or virtual + target processor architecture, in executable form or suitable for input to + an assembler, loader, linker and/or execution phase. Notwithstanding that, + Target Code does not include data in any format that is used as a compiler + intermediate representation, or used for producing a compiler intermediate + representation. + The "Compilation Process" transforms code entirely represented in non- + intermediate languages designed for human-written code, and/or in Java + Virtual Machine byte code, into Target Code. Thus, for example, use of + source code generators and preprocessors need not be considered part of the + Compilation Process, since the Compilation Process can be understood as + starting with the output of the generators or preprocessors. + A Compilation Process is "Eligible" if it is done using GCC, alone or with + other GPL-compatible software, or if it is done without using any work + based on GCC. For example, using non-GPL-compatible Software to optimize + any GCC intermediate representations would not qualify as an Eligible + Compilation Process. + 1. Grant of Additional Permission. + You have permission to propagate a work of Target Code formed by combining + the Runtime Library with Independent Modules, even if such propagation + would otherwise violate the terms of GPLv3, provided that all Target Code + was generated by Eligible Compilation Processes. You may then convey such a + combination under terms of your choice, consistent with the licensing of + the Independent Modules. + 2. No Weakening of GCC Copyleft. + The availability of this Exception does not imply any general presumption + that third-party software is unaffected by the copyleft requirements of the + license of GCC. +ignorable_copyrights: + - Copyright (c) 2009 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ +--- + GCC RUNTIME LIBRARY EXCEPTION Version 3.1, 31 March 2009 @@ -69,4 +157,4 @@ consistent with the licensing of the Independent Modules. The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft -requirements of the license of GCC. +requirements of the license of GCC. \ No newline at end of file diff --git a/docs/gcc-exception-3.1.html b/docs/gcc-exception-3.1.html index c6210d6d95..1bb056b11f 100644 --- a/docs/gcc-exception-3.1.html +++ b/docs/gcc-exception-3.1.html @@ -317,8 +317,7 @@ The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft -requirements of the license of GCC. - +requirements of the license of GCC.
@@ -330,7 +329,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gcc-exception-3.1.json b/docs/gcc-exception-3.1.json index 8798c1f14c..e492732c13 100644 --- a/docs/gcc-exception-3.1.json +++ b/docs/gcc-exception-3.1.json @@ -1 +1,27 @@ -{"key": "gcc-exception-3.1", "short_name": "GCC Runtime Library Exception v3.1", "name": "GCC Runtime Library Exception v3.1", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/gcc-exception-3.1.html", "is_exception": true, "spdx_license_key": "GCC-exception-3.1", "text_urls": ["http://www.gnu.org/licenses/gcc-exception-3.1.html"], "faq_url": "http://www.gnu.org/licenses/gcc-exception-3.1-faq.html", "other_urls": ["http://www.gnu.org/licenses/gpl-3.0.txt"], "standard_notice": "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation, either version 3 of the License, or (at your option)\nany later version.\nThis program is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this program. If not, see .\nGCC RUNTIME LIBRARY EXCEPTION\nVersion 3.1, 31 March 2009\nCopyright \u00a9 2009 Free Software Foundation, Inc. \nEveryone is permitted to copy and distribute verbatim copies of this\nlicense document, but changing it is not allowed.\nThis GCC Runtime Library Exception (\"Exception\") is an additional\npermission under section 7 of the GNU General Public License, version 3\n(\"GPLv3\"). It applies to a given file (the \"Runtime Library\") that bears a\nnotice placed by the copyright holder of the file stating that the file is\ngoverned by GPLv3 along with this Exception.\nWhen you use GCC to compile a program, GCC may combine portions of certain\nGCC header files and runtime libraries with the compiled program. The\npurpose of this Exception is to allow compilation of non-GPL (including\nproprietary) programs to use, in this way, the header files and runtime\nlibraries covered by this Exception.\n0. Definitions.\nA file is an \"Independent Module\" if it either requires the Runtime Library\nfor execution after a Compilation Process, or makes use of an interface\nprovided by the Runtime Library, but is not otherwise based on the Runtime\nLibrary.\n\"GCC\" means a version of the GNU Compiler Collection, with or without\nmodifications, governed by version 3 (or a specified later version) of the\nGNU General Public License (GPL) with the option of using any subsequent\nversions published by the FSF.\n\"GPL-compatible Software\" is software whose conditions of propagation,\nmodification and use would permit combination with GCC in accord with the\nlicense of GCC.\n\"Target Code\" refers to output from any compiler for a real or virtual\ntarget processor architecture, in executable form or suitable for input to\nan assembler, loader, linker and/or execution phase. Notwithstanding that,\nTarget Code does not include data in any format that is used as a compiler\nintermediate representation, or used for producing a compiler intermediate\nrepresentation.\nThe \"Compilation Process\" transforms code entirely represented in non-\nintermediate languages designed for human-written code, and/or in Java\nVirtual Machine byte code, into Target Code. Thus, for example, use of\nsource code generators and preprocessors need not be considered part of the\nCompilation Process, since the Compilation Process can be understood as\nstarting with the output of the generators or preprocessors.\nA Compilation Process is \"Eligible\" if it is done using GCC, alone or with\nother GPL-compatible software, or if it is done without using any work\nbased on GCC. For example, using non-GPL-compatible Software to optimize\nany GCC intermediate representations would not qualify as an Eligible\nCompilation Process.\n1. Grant of Additional Permission.\nYou have permission to propagate a work of Target Code formed by combining\nthe Runtime Library with Independent Modules, even if such propagation\nwould otherwise violate the terms of GPLv3, provided that all Target Code\nwas generated by Eligible Compilation Processes. You may then convey such a\ncombination under terms of your choice, consistent with the licensing of\nthe Independent Modules.\n2. No Weakening of GCC Copyleft.\nThe availability of this Exception does not imply any general presumption\nthat third-party software is unaffected by the copyleft requirements of the\nlicense of GCC.\n", "ignorable_copyrights": ["Copyright (c) 2009 Free Software Foundation, Inc. "], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://fsf.org/"]} \ No newline at end of file +{ + "key": "gcc-exception-3.1", + "short_name": "GCC Runtime Library Exception v3.1", + "name": "GCC Runtime Library Exception v3.1", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gcc-exception-3.1.html", + "is_exception": true, + "spdx_license_key": "GCC-exception-3.1", + "text_urls": [ + "http://www.gnu.org/licenses/gcc-exception-3.1.html" + ], + "faq_url": "http://www.gnu.org/licenses/gcc-exception-3.1-faq.html", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-3.0.txt" + ], + "standard_notice": "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation, either version 3 of the License, or (at your option)\nany later version.\nThis program is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this program. If not, see .\nGCC RUNTIME LIBRARY EXCEPTION\nVersion 3.1, 31 March 2009\nCopyright \u00a9 2009 Free Software Foundation, Inc. \nEveryone is permitted to copy and distribute verbatim copies of this\nlicense document, but changing it is not allowed.\nThis GCC Runtime Library Exception (\"Exception\") is an additional\npermission under section 7 of the GNU General Public License, version 3\n(\"GPLv3\"). It applies to a given file (the \"Runtime Library\") that bears a\nnotice placed by the copyright holder of the file stating that the file is\ngoverned by GPLv3 along with this Exception.\nWhen you use GCC to compile a program, GCC may combine portions of certain\nGCC header files and runtime libraries with the compiled program. The\npurpose of this Exception is to allow compilation of non-GPL (including\nproprietary) programs to use, in this way, the header files and runtime\nlibraries covered by this Exception.\n0. Definitions.\nA file is an \"Independent Module\" if it either requires the Runtime Library\nfor execution after a Compilation Process, or makes use of an interface\nprovided by the Runtime Library, but is not otherwise based on the Runtime\nLibrary.\n\"GCC\" means a version of the GNU Compiler Collection, with or without\nmodifications, governed by version 3 (or a specified later version) of the\nGNU General Public License (GPL) with the option of using any subsequent\nversions published by the FSF.\n\"GPL-compatible Software\" is software whose conditions of propagation,\nmodification and use would permit combination with GCC in accord with the\nlicense of GCC.\n\"Target Code\" refers to output from any compiler for a real or virtual\ntarget processor architecture, in executable form or suitable for input to\nan assembler, loader, linker and/or execution phase. Notwithstanding that,\nTarget Code does not include data in any format that is used as a compiler\nintermediate representation, or used for producing a compiler intermediate\nrepresentation.\nThe \"Compilation Process\" transforms code entirely represented in non-\nintermediate languages designed for human-written code, and/or in Java\nVirtual Machine byte code, into Target Code. Thus, for example, use of\nsource code generators and preprocessors need not be considered part of the\nCompilation Process, since the Compilation Process can be understood as\nstarting with the output of the generators or preprocessors.\nA Compilation Process is \"Eligible\" if it is done using GCC, alone or with\nother GPL-compatible software, or if it is done without using any work\nbased on GCC. For example, using non-GPL-compatible Software to optimize\nany GCC intermediate representations would not qualify as an Eligible\nCompilation Process.\n1. Grant of Additional Permission.\nYou have permission to propagate a work of Target Code formed by combining\nthe Runtime Library with Independent Modules, even if such propagation\nwould otherwise violate the terms of GPLv3, provided that all Target Code\nwas generated by Eligible Compilation Processes. You may then convey such a\ncombination under terms of your choice, consistent with the licensing of\nthe Independent Modules.\n2. No Weakening of GCC Copyleft.\nThe availability of this Exception does not imply any general presumption\nthat third-party software is unaffected by the copyleft requirements of the\nlicense of GCC.\n", + "ignorable_copyrights": [ + "Copyright (c) 2009 Free Software Foundation, Inc. " + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://fsf.org/" + ] +} \ No newline at end of file diff --git a/docs/gcc-linking-exception-2.0.LICENSE b/docs/gcc-linking-exception-2.0.LICENSE index 3b7e1a884a..b4f09e9491 100644 --- a/docs/gcc-linking-exception-2.0.LICENSE +++ b/docs/gcc-linking-exception-2.0.LICENSE @@ -1,3 +1,36 @@ +--- +key: gcc-linking-exception-2.0 +short_name: GCC Linking exception to GPL 2.0 or later +name: GCC Runtime Library exception to GPL 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: GCC-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10 +standard_notice: | + This library 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 2, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + GCC Linking Exception + In addition to the permissions in the GNU General Public License, the Free + Software Foundation gives you unlimited permission to link the compiled + version of this file into combinations with other programs, and to + distribute those combinations without any restriction coming from the use + of this file. (The General Public License restrictions do apply in other + respects; for example, they cover modification of the file, and + distribution when not linked into a combine executable. +--- + GCC Linking Exception In addition to the permissions in the GNU General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version diff --git a/docs/gcc-linking-exception-2.0.html b/docs/gcc-linking-exception-2.0.html index 7670536398..0712175978 100644 --- a/docs/gcc-linking-exception-2.0.html +++ b/docs/gcc-linking-exception-2.0.html @@ -169,7 +169,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gcc-linking-exception-2.0.json b/docs/gcc-linking-exception-2.0.json index 27e9ef2e4c..9053b7a231 100644 --- a/docs/gcc-linking-exception-2.0.json +++ b/docs/gcc-linking-exception-2.0.json @@ -1 +1,14 @@ -{"key": "gcc-linking-exception-2.0", "short_name": "GCC Linking exception to GPL 2.0 or later", "name": "GCC Runtime Library exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "is_exception": true, "spdx_license_key": "GCC-exception-2.0", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt", "https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10"], "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nGCC Linking Exception\nIn addition to the permissions in the GNU General Public License, the Free\nSoftware Foundation gives you unlimited permission to link the compiled\nversion of this file into combinations with other programs, and to\ndistribute those combinations without any restriction coming from the use\nof this file. (The General Public License restrictions do apply in other\nrespects; for example, they cover modification of the file, and\ndistribution when not linked into a combine executable.\n"} \ No newline at end of file +{ + "key": "gcc-linking-exception-2.0", + "short_name": "GCC Linking exception to GPL 2.0 or later", + "name": "GCC Runtime Library exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "is_exception": true, + "spdx_license_key": "GCC-exception-2.0", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt", + "https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10" + ], + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nGCC Linking Exception\nIn addition to the permissions in the GNU General Public License, the Free\nSoftware Foundation gives you unlimited permission to link the compiled\nversion of this file into combinations with other programs, and to\ndistribute those combinations without any restriction coming from the use\nof this file. (The General Public License restrictions do apply in other\nrespects; for example, they cover modification of the file, and\ndistribution when not linked into a combine executable.\n" +} \ No newline at end of file diff --git a/docs/gcel-2022.LICENSE b/docs/gcel-2022.LICENSE index 197091a76e..7bdf22f803 100644 --- a/docs/gcel-2022.LICENSE +++ b/docs/gcel-2022.LICENSE @@ -1,3 +1,18 @@ +--- +key: gcel-2022 +short_name: GCEL 2022 +name: GridGain Community Edition License 2022 +category: Free Restricted +owner: GridGain Systems +homepage_url: https://www.gridgain.com/products/software/community-edition/gridgain-community-edition-license +spdx_license_key: LicenseRef-scancode-gcel-2022 +other_urls: + - https://commonsclause.com/ +ignorable_urls: + - https://commonsclause.com/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + GridGain Community Edition License ** TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION diff --git a/docs/gcel-2022.html b/docs/gcel-2022.html index 476ff8ec09..9999bbcf4d 100644 --- a/docs/gcel-2022.html +++ b/docs/gcel-2022.html @@ -217,7 +217,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gcel-2022.json b/docs/gcel-2022.json index c259aa1eae..6bd81ee0e4 100644 --- a/docs/gcel-2022.json +++ b/docs/gcel-2022.json @@ -1 +1,16 @@ -{"key": "gcel-2022", "short_name": "GCEL 2022", "name": "GridGain Community Edition License 2022", "category": "Free Restricted", "owner": "GridGain Systems", "homepage_url": "https://www.gridgain.com/products/software/community-edition/gridgain-community-edition-license", "spdx_license_key": "LicenseRef-scancode-gcel-2022", "other_urls": ["https://commonsclause.com/"], "ignorable_urls": ["https://commonsclause.com/", "https://www.apache.org/licenses/LICENSE-2.0"]} \ No newline at end of file +{ + "key": "gcel-2022", + "short_name": "GCEL 2022", + "name": "GridGain Community Edition License 2022", + "category": "Free Restricted", + "owner": "GridGain Systems", + "homepage_url": "https://www.gridgain.com/products/software/community-edition/gridgain-community-edition-license", + "spdx_license_key": "LicenseRef-scancode-gcel-2022", + "other_urls": [ + "https://commonsclause.com/" + ], + "ignorable_urls": [ + "https://commonsclause.com/", + "https://www.apache.org/licenses/LICENSE-2.0" + ] +} \ No newline at end of file diff --git a/docs/gco-v3.0.LICENSE b/docs/gco-v3.0.LICENSE index 1fd676f199..c04732fcd1 100644 --- a/docs/gco-v3.0.LICENSE +++ b/docs/gco-v3.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: gco-v3.0 +short_name: GCO-v3.0 +name: GCO-v3.0 +category: Proprietary Free +owner: Nuno Subtil +homepage_url: https://github.com/nsubtil/gco-v3.0/blob/master/GCO_README.TXT +spdx_license_key: LicenseRef-scancode-gco-v3.0 +--- + This software and its modifications can be used and distributed for research purposes only. Publications resulting from use of this code must cite publications according to the rules given above. Only diff --git a/docs/gco-v3.0.html b/docs/gco-v3.0.html index 97588b86a2..6fefe7f53c 100644 --- a/docs/gco-v3.0.html +++ b/docs/gco-v3.0.html @@ -152,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gco-v3.0.json b/docs/gco-v3.0.json index 48d936df93..225314b570 100644 --- a/docs/gco-v3.0.json +++ b/docs/gco-v3.0.json @@ -1 +1,9 @@ -{"key": "gco-v3.0", "short_name": "GCO-v3.0", "name": "GCO-v3.0", "category": "Proprietary Free", "owner": "Nuno Subtil", "homepage_url": "https://github.com/nsubtil/gco-v3.0/blob/master/GCO_README.TXT", "spdx_license_key": "LicenseRef-scancode-gco-v3.0"} \ No newline at end of file +{ + "key": "gco-v3.0", + "short_name": "GCO-v3.0", + "name": "GCO-v3.0", + "category": "Proprietary Free", + "owner": "Nuno Subtil", + "homepage_url": "https://github.com/nsubtil/gco-v3.0/blob/master/GCO_README.TXT", + "spdx_license_key": "LicenseRef-scancode-gco-v3.0" +} \ No newline at end of file diff --git a/docs/gdcl.LICENSE b/docs/gdcl.LICENSE index 253b102e29..8a4f68431c 100644 --- a/docs/gdcl.LICENSE +++ b/docs/gdcl.LICENSE @@ -1,2 +1,14 @@ +--- +key: gdcl +short_name: GDCL License +name: GDCL License +category: Permissive +owner: Geraint Davies Consulting Ltd +homepage_url: http://www.gdcl.co.uk/ +spdx_license_key: LicenseRef-scancode-gdcl +other_urls: + - http://www.gdcl.co.uk +--- + You are free to re-use this as the basis for your own filter development, -provided you retain this copyright notice in the source. +provided you retain this copyright notice in the source. \ No newline at end of file diff --git a/docs/gdcl.html b/docs/gdcl.html index 3e752a339e..874646be93 100644 --- a/docs/gdcl.html +++ b/docs/gdcl.html @@ -125,8 +125,7 @@
license_text
You are free to re-use this as the basis for your own filter development,
-provided you retain this copyright notice in the source.
-
+provided you retain this copyright notice in the source.
@@ -138,7 +137,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gdcl.json b/docs/gdcl.json index 0fd56842a1..280fa37d48 100644 --- a/docs/gdcl.json +++ b/docs/gdcl.json @@ -1 +1,12 @@ -{"key": "gdcl", "short_name": "GDCL License", "name": "GDCL License", "category": "Permissive", "owner": "Geraint Davies Consulting Ltd", "homepage_url": "http://www.gdcl.co.uk/", "spdx_license_key": "LicenseRef-scancode-gdcl", "other_urls": ["http://www.gdcl.co.uk"]} \ No newline at end of file +{ + "key": "gdcl", + "short_name": "GDCL License", + "name": "GDCL License", + "category": "Permissive", + "owner": "Geraint Davies Consulting Ltd", + "homepage_url": "http://www.gdcl.co.uk/", + "spdx_license_key": "LicenseRef-scancode-gdcl", + "other_urls": [ + "http://www.gdcl.co.uk" + ] +} \ No newline at end of file diff --git a/docs/generic-cla.LICENSE b/docs/generic-cla.LICENSE index e69de29bb2..136535d9fb 100644 --- a/docs/generic-cla.LICENSE +++ b/docs/generic-cla.LICENSE @@ -0,0 +1,10 @@ +--- +key: generic-cla +short_name: Generic CLA +name: Prior Generic Contributor License Agreement +category: CLA +owner: Unspecified +notes: this is a generic license for CLAs. +is_generic: yes +spdx_license_key: LicenseRef-scancode-generic-cla +--- \ No newline at end of file diff --git a/docs/generic-cla.html b/docs/generic-cla.html index b51eb14d2d..28744018ab 100644 --- a/docs/generic-cla.html +++ b/docs/generic-cla.html @@ -88,7 +88,7 @@
category
- Unstated License + CLA
@@ -134,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/generic-cla.json b/docs/generic-cla.json index c8ca049572..9b2c91abac 100644 --- a/docs/generic-cla.json +++ b/docs/generic-cla.json @@ -1 +1,10 @@ -{"key": "generic-cla", "short_name": "Generic CLA", "name": "Prior Generic Contributor License Agreement", "category": "Unstated License", "owner": "Unspecified", "notes": "this is a generic license for CLAs.", "is_generic": true, "spdx_license_key": "LicenseRef-scancode-generic-cla"} \ No newline at end of file +{ + "key": "generic-cla", + "short_name": "Generic CLA", + "name": "Prior Generic Contributor License Agreement", + "category": "CLA", + "owner": "Unspecified", + "notes": "this is a generic license for CLAs.", + "is_generic": true, + "spdx_license_key": "LicenseRef-scancode-generic-cla" +} \ No newline at end of file diff --git a/docs/generic-cla.yml b/docs/generic-cla.yml index 71e5bd4b6a..b96dfd53bc 100644 --- a/docs/generic-cla.yml +++ b/docs/generic-cla.yml @@ -1,7 +1,7 @@ key: generic-cla short_name: Generic CLA name: Prior Generic Contributor License Agreement -category: Unstated License +category: CLA owner: Unspecified notes: this is a generic license for CLAs. is_generic: yes diff --git a/docs/generic-exception.LICENSE b/docs/generic-exception.LICENSE index e69de29bb2..10c1868a7e 100644 --- a/docs/generic-exception.LICENSE +++ b/docs/generic-exception.LICENSE @@ -0,0 +1,13 @@ +--- +key: generic-exception +short_name: Generic Exception Notice +name: Generic Exception Notice +category: Unstated License +owner: Unspecified +notes: This is a generic license exception notice where the exception text has not been named + and published publicly. Actual terms are most commonly related to rare, one-off extra permission + to the A/L/GPL licenses. +is_exception: yes +is_generic: yes +spdx_license_key: LicenseRef-scancode-generic-exception +--- \ No newline at end of file diff --git a/docs/generic-exception.html b/docs/generic-exception.html index 855ff92b3e..f59f2f7a0e 100644 --- a/docs/generic-exception.html +++ b/docs/generic-exception.html @@ -141,7 +141,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/generic-exception.json b/docs/generic-exception.json index 3ebe3a5f04..7fd6285cda 100644 --- a/docs/generic-exception.json +++ b/docs/generic-exception.json @@ -1 +1,11 @@ -{"key": "generic-exception", "short_name": "Generic Exception Notice", "name": "Generic Exception Notice", "category": "Unstated License", "owner": "Unspecified", "notes": "This is a generic license exception notice where the exception text has not been named and published publicly. Actual terms are most commonly related to rare, one-off extra permission to the A/L/GPL licenses.", "is_exception": true, "is_generic": true, "spdx_license_key": "LicenseRef-scancode-generic-exception"} \ No newline at end of file +{ + "key": "generic-exception", + "short_name": "Generic Exception Notice", + "name": "Generic Exception Notice", + "category": "Unstated License", + "owner": "Unspecified", + "notes": "This is a generic license exception notice where the exception text has not been named and published publicly. Actual terms are most commonly related to rare, one-off extra permission to the A/L/GPL licenses.", + "is_exception": true, + "is_generic": true, + "spdx_license_key": "LicenseRef-scancode-generic-exception" +} \ No newline at end of file diff --git a/docs/generic-export-compliance.LICENSE b/docs/generic-export-compliance.LICENSE index e69de29bb2..af33837e72 100644 --- a/docs/generic-export-compliance.LICENSE +++ b/docs/generic-export-compliance.LICENSE @@ -0,0 +1,11 @@ +--- +key: generic-export-compliance +short_name: Generic Export Compliance Notice +name: Generic Export Compliance Notice +category: Unstated License +owner: Unspecified +notes: This is a generic export compliance notice where the text has not been named and published + publicly. Actual terms are most commonly related to cryptography. +is_generic: yes +spdx_license_key: LicenseRef-scancode-generic-export-compliance +--- \ No newline at end of file diff --git a/docs/generic-export-compliance.html b/docs/generic-export-compliance.html index 9c89f2f55d..fc7cc583a1 100644 --- a/docs/generic-export-compliance.html +++ b/docs/generic-export-compliance.html @@ -134,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/generic-export-compliance.json b/docs/generic-export-compliance.json index 962356e3ef..aac4871f42 100644 --- a/docs/generic-export-compliance.json +++ b/docs/generic-export-compliance.json @@ -1 +1,10 @@ -{"key": "generic-export-compliance", "short_name": "Generic Export Compliance Notice", "name": "Generic Export Compliance Notice", "category": "Unstated License", "owner": "Unspecified", "notes": "This is a generic export compliance notice where the text has not been named and published publicly. Actual terms are most commonly related to cryptography.", "is_generic": true, "spdx_license_key": "LicenseRef-scancode-generic-export-compliance"} \ No newline at end of file +{ + "key": "generic-export-compliance", + "short_name": "Generic Export Compliance Notice", + "name": "Generic Export Compliance Notice", + "category": "Unstated License", + "owner": "Unspecified", + "notes": "This is a generic export compliance notice where the text has not been named and published publicly. Actual terms are most commonly related to cryptography.", + "is_generic": true, + "spdx_license_key": "LicenseRef-scancode-generic-export-compliance" +} \ No newline at end of file diff --git a/docs/generic-tos.LICENSE b/docs/generic-tos.LICENSE index e69de29bb2..11909383f2 100644 --- a/docs/generic-tos.LICENSE +++ b/docs/generic-tos.LICENSE @@ -0,0 +1,11 @@ +--- +key: generic-tos +short_name: Generic ToS +name: Generic Terms of Service +category: Unstated License +owner: Unspecified +notes: This is a generic license for Terms of Service such as privacy terms and and other ToS-like + agreements found in software that are not directly licenses. +is_generic: yes +spdx_license_key: LicenseRef-scancode-generic-tos +--- \ No newline at end of file diff --git a/docs/generic-tos.html b/docs/generic-tos.html index d342b1e81d..6da8a0ff6e 100644 --- a/docs/generic-tos.html +++ b/docs/generic-tos.html @@ -134,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/generic-tos.json b/docs/generic-tos.json index b7169e63bd..5b6aaaea3f 100644 --- a/docs/generic-tos.json +++ b/docs/generic-tos.json @@ -1 +1,10 @@ -{"key": "generic-tos", "short_name": "Generic ToS", "name": "Generic Terms of Service", "category": "Unstated License", "owner": "Unspecified", "notes": "This is a generic license for Terms of Service such as privacy terms and and other ToS-like agreements found in software that are not directly licenses.", "is_generic": true, "spdx_license_key": "LicenseRef-scancode-generic-tos"} \ No newline at end of file +{ + "key": "generic-tos", + "short_name": "Generic ToS", + "name": "Generic Terms of Service", + "category": "Unstated License", + "owner": "Unspecified", + "notes": "This is a generic license for Terms of Service such as privacy terms and and other ToS-like agreements found in software that are not directly licenses.", + "is_generic": true, + "spdx_license_key": "LicenseRef-scancode-generic-tos" +} \ No newline at end of file diff --git a/docs/generic-trademark.LICENSE b/docs/generic-trademark.LICENSE index e69de29bb2..3455d87f32 100644 --- a/docs/generic-trademark.LICENSE +++ b/docs/generic-trademark.LICENSE @@ -0,0 +1,13 @@ +--- +key: generic-trademark +short_name: Generic Trademark Notice +name: Generic Trademark and Name Protection Notice +category: Unstated License +owner: Unspecified +notes: This is a generic Trademark and name realted notice. Actual terms are most commonly related + to name use restrictions and no endorsement. This should be used only for rare one-off notices. +is_generic: yes +spdx_license_key: LicenseRef-scancode-generic-trademark +other_spdx_license_keys: + - LicenseRef-scancode-trademark-notice +--- \ No newline at end of file diff --git a/docs/generic-trademark.html b/docs/generic-trademark.html index 5f131de1fb..4a67f7db60 100644 --- a/docs/generic-trademark.html +++ b/docs/generic-trademark.html @@ -143,7 +143,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/generic-trademark.json b/docs/generic-trademark.json index 29701d16a1..4a85360fba 100644 --- a/docs/generic-trademark.json +++ b/docs/generic-trademark.json @@ -1 +1,13 @@ -{"key": "generic-trademark", "short_name": "Generic Trademark Notice", "name": "Generic Trademark and Name Protection Notice", "category": "Unstated License", "owner": "Unspecified", "notes": "This is a generic Trademark and name realted notice. Actual terms are most commonly related to name use restrictions and no endorsement. This should be used only for rare one-off notices.", "is_generic": true, "spdx_license_key": "LicenseRef-scancode-generic-trademark", "other_spdx_license_keys": ["LicenseRef-scancode-trademark-notice"]} \ No newline at end of file +{ + "key": "generic-trademark", + "short_name": "Generic Trademark Notice", + "name": "Generic Trademark and Name Protection Notice", + "category": "Unstated License", + "owner": "Unspecified", + "notes": "This is a generic Trademark and name realted notice. Actual terms are most commonly related to name use restrictions and no endorsement. This should be used only for rare one-off notices.", + "is_generic": true, + "spdx_license_key": "LicenseRef-scancode-generic-trademark", + "other_spdx_license_keys": [ + "LicenseRef-scancode-trademark-notice" + ] +} \ No newline at end of file diff --git a/docs/genivia-gsoap.LICENSE b/docs/genivia-gsoap.LICENSE index cbe501bbde..aff91026fb 100644 --- a/docs/genivia-gsoap.LICENSE +++ b/docs/genivia-gsoap.LICENSE @@ -1,3 +1,19 @@ +--- +key: genivia-gsoap +short_name: Genivia Proprietary +name: Genivia gSOAP Commercial Licensing +category: Commercial +owner: Genivia +homepage_url: http://www.genivia.com/Products/gsoap/contract.html +spdx_license_key: LicenseRef-scancode-genivia-gsoap +text_urls: + - http://www.genivia.com/Products/gsoap/contract.html +other_urls: + - sales@genivia.com +ignorable_emails: + - sales@genivia.com +--- + Commercial Licensing and Support Contracting Our software products are developed with great care and passed numerous industry diff --git a/docs/genivia-gsoap.html b/docs/genivia-gsoap.html index 86835d4607..c0ac5f5bab 100644 --- a/docs/genivia-gsoap.html +++ b/docs/genivia-gsoap.html @@ -195,7 +195,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/genivia-gsoap.json b/docs/genivia-gsoap.json index 49e2ddb063..c16a167981 100644 --- a/docs/genivia-gsoap.json +++ b/docs/genivia-gsoap.json @@ -1 +1,18 @@ -{"key": "genivia-gsoap", "short_name": "Genivia Proprietary", "name": "Genivia gSOAP Commercial Licensing", "category": "Commercial", "owner": "Genivia", "homepage_url": "http://www.genivia.com/Products/gsoap/contract.html", "spdx_license_key": "LicenseRef-scancode-genivia-gsoap", "text_urls": ["http://www.genivia.com/Products/gsoap/contract.html"], "other_urls": ["sales@genivia.com"], "ignorable_emails": ["sales@genivia.com"]} \ No newline at end of file +{ + "key": "genivia-gsoap", + "short_name": "Genivia Proprietary", + "name": "Genivia gSOAP Commercial Licensing", + "category": "Commercial", + "owner": "Genivia", + "homepage_url": "http://www.genivia.com/Products/gsoap/contract.html", + "spdx_license_key": "LicenseRef-scancode-genivia-gsoap", + "text_urls": [ + "http://www.genivia.com/Products/gsoap/contract.html" + ], + "other_urls": [ + "sales@genivia.com" + ], + "ignorable_emails": [ + "sales@genivia.com" + ] +} \ No newline at end of file diff --git a/docs/genode-agpl-3.0-exception.LICENSE b/docs/genode-agpl-3.0-exception.LICENSE index 256a1e7f1a..ea468fb317 100644 --- a/docs/genode-agpl-3.0-exception.LICENSE +++ b/docs/genode-agpl-3.0-exception.LICENSE @@ -1,3 +1,19 @@ +--- +key: genode-agpl-3.0-exception +short_name: Genode exception to AGPL 3.0 +name: Genode exception to AGPL 3.0 +category: Copyleft Limited +owner: Genode Labs +homepage_url: https://genode.org/about/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-genode-agpl-3.0-exception +text_urls: + - https://github.com/genodelabs/genode/blob/e8acc5eabc447fb5da01d109d96988cd21962c56/LICENSE + - https://github.com/genodelabs/genode/blob/master/LICENSE +ignorable_urls: + - https://opensource.org/licenses + - https://www.gnu.org/licenses/license-list.en.html +--- Linking exception clause @@ -32,5 +48,4 @@ wish to do so, delete this exception statement from your version. [1] https://opensource.org/licenses - [2] https://www.gnu.org/licenses/license-list.en.html - + [2] https://www.gnu.org/licenses/license-list.en.html \ No newline at end of file diff --git a/docs/genode-agpl-3.0-exception.html b/docs/genode-agpl-3.0-exception.html index eeafbe98ee..6e08733f49 100644 --- a/docs/genode-agpl-3.0-exception.html +++ b/docs/genode-agpl-3.0-exception.html @@ -140,8 +140,7 @@
license_text
-

-                        Linking exception clause
+    
                        Linking exception clause
 
 
   The Genode OS Framework (Genode) is licensed under the terms of the
@@ -174,9 +173,7 @@
   wish to do so, delete this exception statement from your version.
 
   [1] https://opensource.org/licenses
-  [2] https://www.gnu.org/licenses/license-list.en.html
-
-
+ [2] https://www.gnu.org/licenses/license-list.en.html
@@ -188,7 +185,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/genode-agpl-3.0-exception.json b/docs/genode-agpl-3.0-exception.json index 0f000f1953..e3bcf8f418 100644 --- a/docs/genode-agpl-3.0-exception.json +++ b/docs/genode-agpl-3.0-exception.json @@ -1 +1,18 @@ -{"key": "genode-agpl-3.0-exception", "short_name": "Genode exception to AGPL 3.0", "name": "Genode exception to AGPL 3.0", "category": "Copyleft Limited", "owner": "Genode Labs", "homepage_url": "https://genode.org/about/LICENSE", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-genode-agpl-3.0-exception", "text_urls": ["https://github.com/genodelabs/genode/blob/e8acc5eabc447fb5da01d109d96988cd21962c56/LICENSE", "https://github.com/genodelabs/genode/blob/master/LICENSE"], "ignorable_urls": ["https://opensource.org/licenses", "https://www.gnu.org/licenses/license-list.en.html"]} \ No newline at end of file +{ + "key": "genode-agpl-3.0-exception", + "short_name": "Genode exception to AGPL 3.0", + "name": "Genode exception to AGPL 3.0", + "category": "Copyleft Limited", + "owner": "Genode Labs", + "homepage_url": "https://genode.org/about/LICENSE", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-genode-agpl-3.0-exception", + "text_urls": [ + "https://github.com/genodelabs/genode/blob/e8acc5eabc447fb5da01d109d96988cd21962c56/LICENSE", + "https://github.com/genodelabs/genode/blob/master/LICENSE" + ], + "ignorable_urls": [ + "https://opensource.org/licenses", + "https://www.gnu.org/licenses/license-list.en.html" + ] +} \ No newline at end of file diff --git a/docs/geoff-kuenning-1993.LICENSE b/docs/geoff-kuenning-1993.LICENSE index 48a9e7afe7..49444f1a1b 100644 --- a/docs/geoff-kuenning-1993.LICENSE +++ b/docs/geoff-kuenning-1993.LICENSE @@ -1,3 +1,19 @@ +--- +key: geoff-kuenning-1993 +short_name: Geoff Kuenning License 1993 +name: Geoff Kuenning License 1993 +category: Permissive +owner: Geoff Kuenning +homepage_url: https://www.hitachi.co.jp/Prod/comp/soft1/jp1/trial/trialv12/sla/license/373.txt +spdx_license_key: LicenseRef-scancode-geoff-kuenning-1993 +ignorable_copyrights: + - Copyright 1993, Geoff Kuenning, Granada Hills, CA +ignorable_holders: + - Geoff Kuenning, Granada Hills, CA +ignorable_authors: + - Geoff Kuenning +--- + Copyright 1993, Geoff Kuenning, Granada Hills, CA All rights reserved. diff --git a/docs/geoff-kuenning-1993.html b/docs/geoff-kuenning-1993.html index 99c532b9d1..374e0484bf 100644 --- a/docs/geoff-kuenning-1993.html +++ b/docs/geoff-kuenning-1993.html @@ -189,7 +189,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/geoff-kuenning-1993.json b/docs/geoff-kuenning-1993.json index 091b84c827..7505d350e7 100644 --- a/docs/geoff-kuenning-1993.json +++ b/docs/geoff-kuenning-1993.json @@ -1 +1,18 @@ -{"key": "geoff-kuenning-1993", "short_name": "Geoff Kuenning License 1993", "name": "Geoff Kuenning License 1993", "category": "Permissive", "owner": "Geoff Kuenning", "homepage_url": "https://www.hitachi.co.jp/Prod/comp/soft1/jp1/trial/trialv12/sla/license/373.txt", "spdx_license_key": "LicenseRef-scancode-geoff-kuenning-1993", "ignorable_copyrights": ["Copyright 1993, Geoff Kuenning, Granada Hills, CA"], "ignorable_holders": ["Geoff Kuenning, Granada Hills, CA"], "ignorable_authors": ["Geoff Kuenning"]} \ No newline at end of file +{ + "key": "geoff-kuenning-1993", + "short_name": "Geoff Kuenning License 1993", + "name": "Geoff Kuenning License 1993", + "category": "Permissive", + "owner": "Geoff Kuenning", + "homepage_url": "https://www.hitachi.co.jp/Prod/comp/soft1/jp1/trial/trialv12/sla/license/373.txt", + "spdx_license_key": "LicenseRef-scancode-geoff-kuenning-1993", + "ignorable_copyrights": [ + "Copyright 1993, Geoff Kuenning, Granada Hills, CA" + ], + "ignorable_holders": [ + "Geoff Kuenning, Granada Hills, CA" + ], + "ignorable_authors": [ + "Geoff Kuenning" + ] +} \ No newline at end of file diff --git a/docs/geoserver-exception-2.0-plus.LICENSE b/docs/geoserver-exception-2.0-plus.LICENSE index 3f47c68830..a511b5774e 100644 --- a/docs/geoserver-exception-2.0-plus.LICENSE +++ b/docs/geoserver-exception-2.0-plus.LICENSE @@ -1,3 +1,49 @@ +--- +key: geoserver-exception-2.0-plus +short_name: GeoServer exception to GPL 2.0 or later +name: GeoServer exception to GPL 2.0 or later +category: Copyleft Limited +owner: Open Source Geospatial Foundation +homepage_url: http://geoserver.org/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-geoserver-exception-2.0-plus +text_urls: + - https://master.dl.sourceforge.net/project/geoserver/GeoServer/2.5/geoserver-2.5-src.zip +other_urls: + - http://geoserver.org/ + - http://openplans.org + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + 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 2 of the License, or + (at your option) any later version (collectively, "GPL"). + As an exception to the terms of the GPL, you may copy, modify, + propagate, and distribute a work formed by combining GeoServer with the + Eclipse Libraries, or a work derivative of such a combination, even if + such copying, modification, propagation, or distribution would otherwise + violate the terms of the GPL. Nothing in this exception exempts you from + complying with the GPL in all respects for all of the code used other + than the Eclipse Libraries. You may include this exception and its grant + of permissions when you distribute GeoServer. Inclusion of this notice + with such a distribution constitutes a grant of such permissions. If + you do not wish to grant these permissions, remove this paragraph from + your distribution. "GeoServer" means the GeoServer software licensed + under version 2 or any later version of the GPL, or a work based on such + software and licensed under the GPL. "Eclipse Libraries" means Eclipse + Modeling Framework Project and XML Schema Definition software + distributed by the Eclipse Foundation and licensed under the Eclipse + Public License Version 1.0 ("EPL"), or a work based on such software and + licensed under the EPL. + 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, write to the Free Software + Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA +--- + As an exception to the terms of the GPL, you may copy, modify, propagate, and distribute a work formed by combining GeoServer with the Eclipse Libraries, or a work derivative of such a combination, even if diff --git a/docs/geoserver-exception-2.0-plus.html b/docs/geoserver-exception-2.0-plus.html index eaef7fdb7c..6bf8ffaa48 100644 --- a/docs/geoserver-exception-2.0-plus.html +++ b/docs/geoserver-exception-2.0-plus.html @@ -203,7 +203,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/geoserver-exception-2.0-plus.json b/docs/geoserver-exception-2.0-plus.json index 9ca6003160..87ab6eaecd 100644 --- a/docs/geoserver-exception-2.0-plus.json +++ b/docs/geoserver-exception-2.0-plus.json @@ -1 +1,19 @@ -{"key": "geoserver-exception-2.0-plus", "short_name": "GeoServer exception to GPL 2.0 or later", "name": "GeoServer exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "Open Source Geospatial Foundation", "homepage_url": "http://geoserver.org/", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-geoserver-exception-2.0-plus", "text_urls": ["https://master.dl.sourceforge.net/project/geoserver/GeoServer/2.5/geoserver-2.5-src.zip"], "other_urls": ["http://geoserver.org/", "http://openplans.org", "http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version (collectively, \"GPL\").\nAs an exception to the terms of the GPL, you may copy, modify,\npropagate, and distribute a work formed by combining GeoServer with the\nEclipse Libraries, or a work derivative of such a combination, even if\nsuch copying, modification, propagation, or distribution would otherwise\nviolate the terms of the GPL. Nothing in this exception exempts you from\ncomplying with the GPL in all respects for all of the code used other\nthan the Eclipse Libraries. You may include this exception and its grant\nof permissions when you distribute GeoServer. Inclusion of this notice\nwith such a distribution constitutes a grant of such permissions. If\nyou do not wish to grant these permissions, remove this paragraph from\nyour distribution. \"GeoServer\" means the GeoServer software licensed\nunder version 2 or any later version of the GPL, or a work based on such\nsoftware and licensed under the GPL. \"Eclipse Libraries\" means Eclipse\nModeling Framework Project and XML Schema Definition software\ndistributed by the Eclipse Foundation and licensed under the Eclipse\nPublic License Version 1.0 (\"EPL\"), or a work based on such software and\nlicensed under the EPL.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA\n"} \ No newline at end of file +{ + "key": "geoserver-exception-2.0-plus", + "short_name": "GeoServer exception to GPL 2.0 or later", + "name": "GeoServer exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "Open Source Geospatial Foundation", + "homepage_url": "http://geoserver.org/", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-geoserver-exception-2.0-plus", + "text_urls": [ + "https://master.dl.sourceforge.net/project/geoserver/GeoServer/2.5/geoserver-2.5-src.zip" + ], + "other_urls": [ + "http://geoserver.org/", + "http://openplans.org", + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version (collectively, \"GPL\").\nAs an exception to the terms of the GPL, you may copy, modify,\npropagate, and distribute a work formed by combining GeoServer with the\nEclipse Libraries, or a work derivative of such a combination, even if\nsuch copying, modification, propagation, or distribution would otherwise\nviolate the terms of the GPL. Nothing in this exception exempts you from\ncomplying with the GPL in all respects for all of the code used other\nthan the Eclipse Libraries. You may include this exception and its grant\nof permissions when you distribute GeoServer. Inclusion of this notice\nwith such a distribution constitutes a grant of such permissions. If\nyou do not wish to grant these permissions, remove this paragraph from\nyour distribution. \"GeoServer\" means the GeoServer software licensed\nunder version 2 or any later version of the GPL, or a work based on such\nsoftware and licensed under the GPL. \"Eclipse Libraries\" means Eclipse\nModeling Framework Project and XML Schema Definition software\ndistributed by the Eclipse Foundation and licensed under the Eclipse\nPublic License Version 1.0 (\"EPL\"), or a work based on such software and\nlicensed under the EPL.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA\n" +} \ No newline at end of file diff --git a/docs/gfdl-1.1-invariants-only.LICENSE b/docs/gfdl-1.1-invariants-only.LICENSE index 8169311f7e..329a62fc42 100644 --- a/docs/gfdl-1.1-invariants-only.LICENSE +++ b/docs/gfdl-1.1-invariants-only.LICENSE @@ -1,3 +1,39 @@ +--- +key: gfdl-1.1-invariants-only +short_name: GFDL-1.1-invariants-only +name: GNU Free Documentation License v1.1 only - invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +notes: | + Per SPDX.org, this license was released March 2000 + The identifier GFDL-1.1-invariants-only should only be used when + there are Invariant Sections, Front-Cover Texts or Back-Cover Texts. + See GFDL-1.1-only and GFDL-1.1-no-invariants-only for alternatives. +spdx_license_key: GFDL-1.1-invariants-only +text_urls: + - http://www.gnu.org/licenses/fdl-1.1.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt + - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html + - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +minimum_coverage: 99 +standard_notice: | + Permission is granted to copy, distribute + and/or modify this document under the terms of the GNU Free Documentation + License, Version 1.1; with the Invariant Sections being LIST THEIR TITLES , + with the Front-Cover Texts being LIST , and with the Back-Cover Texts being + LIST . A copy of the license is included in the section entitled "GNU Free + Documentation License". +ignorable_copyrights: + - Copyright (c) 2000 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1; with the Invariant Sections being LIST THEIR TITLES, with the Front-Cover Texts being LIST, and diff --git a/docs/gfdl-1.1-invariants-only.html b/docs/gfdl-1.1-invariants-only.html index 5557394035..3249d95e32 100644 --- a/docs/gfdl-1.1-invariants-only.html +++ b/docs/gfdl-1.1-invariants-only.html @@ -570,7 +570,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gfdl-1.1-invariants-only.json b/docs/gfdl-1.1-invariants-only.json index 0b6475682d..600af859ff 100644 --- a/docs/gfdl-1.1-invariants-only.json +++ b/docs/gfdl-1.1-invariants-only.json @@ -1 +1,30 @@ -{"key": "gfdl-1.1-invariants-only", "short_name": "GFDL-1.1-invariants-only", "name": "GNU Free Documentation License v1.1 only - invariants", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", "notes": "Per SPDX.org, this license was released March 2000\nThe identifier GFDL-1.1-invariants-only should only be used when\nthere are Invariant Sections, Front-Cover Texts or Back-Cover Texts.\nSee GFDL-1.1-only and GFDL-1.1-no-invariants-only for alternatives.\n", "spdx_license_key": "GFDL-1.1-invariants-only", "text_urls": ["http://www.gnu.org/licenses/fdl-1.1.txt"], "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", "other_urls": ["http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", "http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html", "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"], "minimum_coverage": 99, "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.1; with the Invariant Sections being LIST THEIR TITLES ,\nwith the Front-Cover Texts being LIST , and with the Back-Cover Texts being\nLIST . A copy of the license is included in the section entitled \"GNU Free\nDocumentation License\".\n", "ignorable_copyrights": ["Copyright (c) 2000 Free Software Foundation, Inc."], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://www.gnu.org/copyleft"]} \ No newline at end of file +{ + "key": "gfdl-1.1-invariants-only", + "short_name": "GFDL-1.1-invariants-only", + "name": "GNU Free Documentation License v1.1 only - invariants", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + "notes": "Per SPDX.org, this license was released March 2000\nThe identifier GFDL-1.1-invariants-only should only be used when\nthere are Invariant Sections, Front-Cover Texts or Back-Cover Texts.\nSee GFDL-1.1-only and GFDL-1.1-no-invariants-only for alternatives.\n", + "spdx_license_key": "GFDL-1.1-invariants-only", + "text_urls": [ + "http://www.gnu.org/licenses/fdl-1.1.txt" + ], + "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", + "other_urls": [ + "http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + "http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html", + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "minimum_coverage": 99, + "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.1; with the Invariant Sections being LIST THEIR TITLES ,\nwith the Front-Cover Texts being LIST , and with the Back-Cover Texts being\nLIST . A copy of the license is included in the section entitled \"GNU Free\nDocumentation License\".\n", + "ignorable_copyrights": [ + "Copyright (c) 2000 Free Software Foundation, Inc." + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://www.gnu.org/copyleft" + ] +} \ No newline at end of file diff --git a/docs/gfdl-1.1-invariants-or-later.LICENSE b/docs/gfdl-1.1-invariants-or-later.LICENSE index 01ace45013..00f156a249 100644 --- a/docs/gfdl-1.1-invariants-or-later.LICENSE +++ b/docs/gfdl-1.1-invariants-or-later.LICENSE @@ -1,3 +1,41 @@ +--- +key: gfdl-1.1-invariants-or-later +short_name: GFDL-1.1-invariants-or-later +name: GNU Free Documentation License v1.1 or later - invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +notes: | + Per SPDX.org, this license was released March 2000 + The identifier GFDL-1.1-invariants-or-later should only be used when + there are Invariant Sections, Front-Cover Texts or Back-Cover Texts. + See GFDL-1.1-or-later and GFDL-1.1-no-invariants-or-later for + alternatives. +spdx_license_key: GFDL-1.1-invariants-or-later +text_urls: + - http://www.gnu.org/licenses/fdl-1.1.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt + - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html + - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +minimum_coverage: 99 +standard_notice: | + Permission is granted to copy, distribute + and/or modify this document under the terms of the GNU Free Documentation + License, Version 1.1 or any later version published by the Free Software + Foundation; with the Invariant Sections being LIST THEIR TITLES , with the + Front-Cover Texts being LIST , and with the Back-Cover Texts being LIST . A + copy of the license is included in the section entitled "GNU Free + Documentation License". +ignorable_copyrights: + - Copyright (c) 2000 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; diff --git a/docs/gfdl-1.1-invariants-or-later.html b/docs/gfdl-1.1-invariants-or-later.html index 2a1de4876f..84a028349e 100644 --- a/docs/gfdl-1.1-invariants-or-later.html +++ b/docs/gfdl-1.1-invariants-or-later.html @@ -575,7 +575,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gfdl-1.1-invariants-or-later.json b/docs/gfdl-1.1-invariants-or-later.json index 2c0b6e63a1..2973dcb01d 100644 --- a/docs/gfdl-1.1-invariants-or-later.json +++ b/docs/gfdl-1.1-invariants-or-later.json @@ -1 +1,30 @@ -{"key": "gfdl-1.1-invariants-or-later", "short_name": "GFDL-1.1-invariants-or-later", "name": "GNU Free Documentation License v1.1 or later - invariants", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", "notes": "Per SPDX.org, this license was released March 2000\nThe identifier GFDL-1.1-invariants-or-later should only be used when\nthere are Invariant Sections, Front-Cover Texts or Back-Cover Texts.\nSee GFDL-1.1-or-later and GFDL-1.1-no-invariants-or-later for\nalternatives.\n", "spdx_license_key": "GFDL-1.1-invariants-or-later", "text_urls": ["http://www.gnu.org/licenses/fdl-1.1.txt"], "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", "other_urls": ["http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", "http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html", "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"], "minimum_coverage": 99, "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.1 or any later version published by the Free Software\nFoundation; with the Invariant Sections being LIST THEIR TITLES , with the\nFront-Cover Texts being LIST , and with the Back-Cover Texts being LIST . A\ncopy of the license is included in the section entitled \"GNU Free\nDocumentation License\".\n", "ignorable_copyrights": ["Copyright (c) 2000 Free Software Foundation, Inc."], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://www.gnu.org/copyleft"]} \ No newline at end of file +{ + "key": "gfdl-1.1-invariants-or-later", + "short_name": "GFDL-1.1-invariants-or-later", + "name": "GNU Free Documentation License v1.1 or later - invariants", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + "notes": "Per SPDX.org, this license was released March 2000\nThe identifier GFDL-1.1-invariants-or-later should only be used when\nthere are Invariant Sections, Front-Cover Texts or Back-Cover Texts.\nSee GFDL-1.1-or-later and GFDL-1.1-no-invariants-or-later for\nalternatives.\n", + "spdx_license_key": "GFDL-1.1-invariants-or-later", + "text_urls": [ + "http://www.gnu.org/licenses/fdl-1.1.txt" + ], + "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", + "other_urls": [ + "http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + "http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html", + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "minimum_coverage": 99, + "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.1 or any later version published by the Free Software\nFoundation; with the Invariant Sections being LIST THEIR TITLES , with the\nFront-Cover Texts being LIST , and with the Back-Cover Texts being LIST . A\ncopy of the license is included in the section entitled \"GNU Free\nDocumentation License\".\n", + "ignorable_copyrights": [ + "Copyright (c) 2000 Free Software Foundation, Inc." + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://www.gnu.org/copyleft" + ] +} \ No newline at end of file diff --git a/docs/gfdl-1.1-no-invariants-only.LICENSE b/docs/gfdl-1.1-no-invariants-only.LICENSE index 17b4752364..703cea3762 100644 --- a/docs/gfdl-1.1-no-invariants-only.LICENSE +++ b/docs/gfdl-1.1-no-invariants-only.LICENSE @@ -1,3 +1,38 @@ +--- +key: gfdl-1.1-no-invariants-only +short_name: GFDL-1.1-no-invariants-only +name: GNU Free Documentation License v1.1 only - no invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +notes: | + Per SPDX.org, this license was released March 2000 + The identifier GFDL-1.1-no-invariants-only should only be used when + there are no Invariant Sections, Front-Cover Texts or Back-Cover Texts. + See GFDL-1.1-only and GFDL-1.1-invariants-only for alternatives. +spdx_license_key: GFDL-1.1-no-invariants-only +text_urls: + - http://www.gnu.org/licenses/fdl-1.1.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt + - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html + - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +minimum_coverage: 99 +standard_notice: | + Permission is granted to copy, distribute + and/or modify this document under the terms of the GNU Free Documentation + License, Version 1.1; with no Invariant Sections, with no Front-Cover + Texts, and with no Back-Cover Texts. A copy of the license is included in + the section entitled "GNU Free Documentation License". +ignorable_copyrights: + - Copyright (c) 2000 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1; with no Invariant Sections, with no Front-Cover Texts, diff --git a/docs/gfdl-1.1-no-invariants-only.html b/docs/gfdl-1.1-no-invariants-only.html index 396d8d9479..a4d38184d7 100644 --- a/docs/gfdl-1.1-no-invariants-only.html +++ b/docs/gfdl-1.1-no-invariants-only.html @@ -570,7 +570,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gfdl-1.1-no-invariants-only.json b/docs/gfdl-1.1-no-invariants-only.json index 118fdb3042..30cc8c34bd 100644 --- a/docs/gfdl-1.1-no-invariants-only.json +++ b/docs/gfdl-1.1-no-invariants-only.json @@ -1 +1,30 @@ -{"key": "gfdl-1.1-no-invariants-only", "short_name": "GFDL-1.1-no-invariants-only", "name": "GNU Free Documentation License v1.1 only - no invariants", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", "notes": "Per SPDX.org, this license was released March 2000\nThe identifier GFDL-1.1-no-invariants-only should only be used when\nthere are no Invariant Sections, Front-Cover Texts or Back-Cover Texts.\nSee GFDL-1.1-only and GFDL-1.1-invariants-only for alternatives.\n", "spdx_license_key": "GFDL-1.1-no-invariants-only", "text_urls": ["http://www.gnu.org/licenses/fdl-1.1.txt"], "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", "other_urls": ["http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", "http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html", "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"], "minimum_coverage": 99, "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.1; with no Invariant Sections, with no Front-Cover\nTexts, and with no Back-Cover Texts. A copy of the license is included in\nthe section entitled \"GNU Free Documentation License\".\n", "ignorable_copyrights": ["Copyright (c) 2000 Free Software Foundation, Inc."], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://www.gnu.org/copyleft"]} \ No newline at end of file +{ + "key": "gfdl-1.1-no-invariants-only", + "short_name": "GFDL-1.1-no-invariants-only", + "name": "GNU Free Documentation License v1.1 only - no invariants", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + "notes": "Per SPDX.org, this license was released March 2000\nThe identifier GFDL-1.1-no-invariants-only should only be used when\nthere are no Invariant Sections, Front-Cover Texts or Back-Cover Texts.\nSee GFDL-1.1-only and GFDL-1.1-invariants-only for alternatives.\n", + "spdx_license_key": "GFDL-1.1-no-invariants-only", + "text_urls": [ + "http://www.gnu.org/licenses/fdl-1.1.txt" + ], + "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", + "other_urls": [ + "http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + "http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html", + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "minimum_coverage": 99, + "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.1; with no Invariant Sections, with no Front-Cover\nTexts, and with no Back-Cover Texts. A copy of the license is included in\nthe section entitled \"GNU Free Documentation License\".\n", + "ignorable_copyrights": [ + "Copyright (c) 2000 Free Software Foundation, Inc." + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://www.gnu.org/copyleft" + ] +} \ No newline at end of file diff --git a/docs/gfdl-1.1-no-invariants-or-later.LICENSE b/docs/gfdl-1.1-no-invariants-or-later.LICENSE index a73266e1e5..7de506c18a 100644 --- a/docs/gfdl-1.1-no-invariants-or-later.LICENSE +++ b/docs/gfdl-1.1-no-invariants-or-later.LICENSE @@ -1,3 +1,39 @@ +--- +key: gfdl-1.1-no-invariants-or-later +short_name: GFDL-1.1-no-invariants-or-later +name: GNU Free Documentation License v1.1 or later - no invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +notes: | + Per SPDX.org, this license was released March 2000 + The identifier GFDL-1.1-no-invariants-or-later should only be used when + there are no Invariant Sections, Front-Cover Texts or Back-Cover Texts. + See GFDL-1.1-or-later and GFDL-1.1-invariants-or-later for alternatives. +spdx_license_key: GFDL-1.1-no-invariants-or-later +text_urls: + - http://www.gnu.org/licenses/fdl-1.1.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt + - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html + - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +minimum_coverage: 99 +standard_notice: | + Copyright (c) YEAR YOUR NAME . Permission is granted to copy, distribute + and/or modify this document under the terms of the GNU Free Documentation + License, Version 1.1 or any later version published by the Free Software + Foundation; with no Invariant Sections, with no Front-Cover Texts, and with + no Back-Cover Texts. A copy of the license is included in the section + entitled "GNU Free Documentation License". +ignorable_copyrights: + - Copyright (c) 2000 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software diff --git a/docs/gfdl-1.1-no-invariants-or-later.html b/docs/gfdl-1.1-no-invariants-or-later.html index edc76324fb..c767dd6b9f 100644 --- a/docs/gfdl-1.1-no-invariants-or-later.html +++ b/docs/gfdl-1.1-no-invariants-or-later.html @@ -573,7 +573,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gfdl-1.1-no-invariants-or-later.json b/docs/gfdl-1.1-no-invariants-or-later.json index bacc247ba8..609eb01dc2 100644 --- a/docs/gfdl-1.1-no-invariants-or-later.json +++ b/docs/gfdl-1.1-no-invariants-or-later.json @@ -1 +1,30 @@ -{"key": "gfdl-1.1-no-invariants-or-later", "short_name": "GFDL-1.1-no-invariants-or-later", "name": "GNU Free Documentation License v1.1 or later - no invariants", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", "notes": "Per SPDX.org, this license was released March 2000\nThe identifier GFDL-1.1-no-invariants-or-later should only be used when\nthere are no Invariant Sections, Front-Cover Texts or Back-Cover Texts.\nSee GFDL-1.1-or-later and GFDL-1.1-invariants-or-later for alternatives.\n", "spdx_license_key": "GFDL-1.1-no-invariants-or-later", "text_urls": ["http://www.gnu.org/licenses/fdl-1.1.txt"], "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", "other_urls": ["http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", "http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html", "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"], "minimum_coverage": 99, "standard_notice": "Copyright (c) YEAR YOUR NAME . Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.1 or any later version published by the Free Software\nFoundation; with no Invariant Sections, with no Front-Cover Texts, and with\nno Back-Cover Texts. A copy of the license is included in the section\nentitled \"GNU Free Documentation License\".\n", "ignorable_copyrights": ["Copyright (c) 2000 Free Software Foundation, Inc."], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://www.gnu.org/copyleft"]} \ No newline at end of file +{ + "key": "gfdl-1.1-no-invariants-or-later", + "short_name": "GFDL-1.1-no-invariants-or-later", + "name": "GNU Free Documentation License v1.1 or later - no invariants", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + "notes": "Per SPDX.org, this license was released March 2000\nThe identifier GFDL-1.1-no-invariants-or-later should only be used when\nthere are no Invariant Sections, Front-Cover Texts or Back-Cover Texts.\nSee GFDL-1.1-or-later and GFDL-1.1-invariants-or-later for alternatives.\n", + "spdx_license_key": "GFDL-1.1-no-invariants-or-later", + "text_urls": [ + "http://www.gnu.org/licenses/fdl-1.1.txt" + ], + "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", + "other_urls": [ + "http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + "http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html", + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "minimum_coverage": 99, + "standard_notice": "Copyright (c) YEAR YOUR NAME . Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.1 or any later version published by the Free Software\nFoundation; with no Invariant Sections, with no Front-Cover Texts, and with\nno Back-Cover Texts. A copy of the license is included in the section\nentitled \"GNU Free Documentation License\".\n", + "ignorable_copyrights": [ + "Copyright (c) 2000 Free Software Foundation, Inc." + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://www.gnu.org/copyleft" + ] +} \ No newline at end of file diff --git a/docs/gfdl-1.1-plus.LICENSE b/docs/gfdl-1.1-plus.LICENSE index d531373cd4..5bb9d6c606 100644 --- a/docs/gfdl-1.1-plus.LICENSE +++ b/docs/gfdl-1.1-plus.LICENSE @@ -1,3 +1,30 @@ +--- +key: gfdl-1.1-plus +short_name: GFDL 1.1 or later +name: GNU Free Documentation License v1.1 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +notes: Per SPDX.org, this license was released March 2000 +spdx_license_key: GFDL-1.1-or-later +other_spdx_license_keys: + - GFDL-1.1+ +text_urls: + - http://www.gnu.org/licenses/fdl-1.1.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt + - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html + - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 2000 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation. diff --git a/docs/gfdl-1.1-plus.html b/docs/gfdl-1.1-plus.html index a164a4d640..e8537522b4 100644 --- a/docs/gfdl-1.1-plus.html +++ b/docs/gfdl-1.1-plus.html @@ -561,7 +561,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gfdl-1.1-plus.json b/docs/gfdl-1.1-plus.json index 747ef7cfbe..3df1352244 100644 --- a/docs/gfdl-1.1-plus.json +++ b/docs/gfdl-1.1-plus.json @@ -1 +1,32 @@ -{"key": "gfdl-1.1-plus", "short_name": "GFDL 1.1 or later", "name": "GNU Free Documentation License v1.1 or later", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", "notes": "Per SPDX.org, this license was released March 2000", "spdx_license_key": "GFDL-1.1-or-later", "other_spdx_license_keys": ["GFDL-1.1+"], "text_urls": ["http://www.gnu.org/licenses/fdl-1.1.txt"], "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", "other_urls": ["http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", "http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html", "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"], "minimum_coverage": 99, "ignorable_copyrights": ["Copyright (c) 2000 Free Software Foundation, Inc."], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://www.gnu.org/copyleft"]} \ No newline at end of file +{ + "key": "gfdl-1.1-plus", + "short_name": "GFDL 1.1 or later", + "name": "GNU Free Documentation License v1.1 or later", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + "notes": "Per SPDX.org, this license was released March 2000", + "spdx_license_key": "GFDL-1.1-or-later", + "other_spdx_license_keys": [ + "GFDL-1.1+" + ], + "text_urls": [ + "http://www.gnu.org/licenses/fdl-1.1.txt" + ], + "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", + "other_urls": [ + "http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + "http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html", + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "minimum_coverage": 99, + "ignorable_copyrights": [ + "Copyright (c) 2000 Free Software Foundation, Inc." + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://www.gnu.org/copyleft" + ] +} \ No newline at end of file diff --git a/docs/gfdl-1.1.LICENSE b/docs/gfdl-1.1.LICENSE index bc03c40836..0bb8a6fbb6 100644 --- a/docs/gfdl-1.1.LICENSE +++ b/docs/gfdl-1.1.LICENSE @@ -1,3 +1,30 @@ +--- +key: gfdl-1.1 +short_name: GFDL 1.1 +name: GNU Free Documentation License v1.1 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +notes: Per SPDX.org, this license was released March 2000 +spdx_license_key: GFDL-1.1-only +other_spdx_license_keys: + - GFDL-1.1 +text_urls: + - http://www.gnu.org/licenses/fdl-1.1.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt + - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html + - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +minimum_coverage: 50 +ignorable_copyrights: + - Copyright (c) 2000 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + GNU Free Documentation License Version 1.1, March 2000 diff --git a/docs/gfdl-1.1.html b/docs/gfdl-1.1.html index e7d616d423..90006eb410 100644 --- a/docs/gfdl-1.1.html +++ b/docs/gfdl-1.1.html @@ -556,7 +556,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gfdl-1.1.json b/docs/gfdl-1.1.json index 8a7fca8b18..9d57f8cfb7 100644 --- a/docs/gfdl-1.1.json +++ b/docs/gfdl-1.1.json @@ -1 +1,32 @@ -{"key": "gfdl-1.1", "short_name": "GFDL 1.1", "name": "GNU Free Documentation License v1.1", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", "notes": "Per SPDX.org, this license was released March 2000", "spdx_license_key": "GFDL-1.1-only", "other_spdx_license_keys": ["GFDL-1.1"], "text_urls": ["http://www.gnu.org/licenses/fdl-1.1.txt"], "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", "other_urls": ["http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", "http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html", "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"], "minimum_coverage": 50, "ignorable_copyrights": ["Copyright (c) 2000 Free Software Foundation, Inc."], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://www.gnu.org/copyleft"]} \ No newline at end of file +{ + "key": "gfdl-1.1", + "short_name": "GFDL 1.1", + "name": "GNU Free Documentation License v1.1", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + "notes": "Per SPDX.org, this license was released March 2000", + "spdx_license_key": "GFDL-1.1-only", + "other_spdx_license_keys": [ + "GFDL-1.1" + ], + "text_urls": [ + "http://www.gnu.org/licenses/fdl-1.1.txt" + ], + "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", + "other_urls": [ + "http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt", + "http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html", + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "minimum_coverage": 50, + "ignorable_copyrights": [ + "Copyright (c) 2000 Free Software Foundation, Inc." + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://www.gnu.org/copyleft" + ] +} \ No newline at end of file diff --git a/docs/gfdl-1.2-invariants-only.LICENSE b/docs/gfdl-1.2-invariants-only.LICENSE index 345ae7561c..3509845ece 100644 --- a/docs/gfdl-1.2-invariants-only.LICENSE +++ b/docs/gfdl-1.2-invariants-only.LICENSE @@ -1,3 +1,34 @@ +--- +key: gfdl-1.2-invariants-only +short_name: GFDL-1.2-invariants-only +name: GNU Free Documentation License v1.2 only - invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +notes: Per SPDX.org, this license was released November 2002 +spdx_license_key: GFDL-1.2-invariants-only +text_urls: + - http://www.gnu.org/licenses/fdl-1.2.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt + - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +minimum_coverage: 99 +standard_notice: | + Permission is granted to copy, distribute + and/or modify this document under the terms of the GNU Free Documentation + License, Version 1.2; with the Invariant Sections being LIST THEIR TITLES , + with the Front-Cover Texts being LIST , and with the Back-Cover Texts being + LIST . A copy of the license is included in the section entitled "GNU Free + Documentation License". +ignorable_copyrights: + - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2; with the Invariant Sections being LIST THEIR TITLES , @@ -401,4 +432,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/docs/gfdl-1.2-invariants-only.html b/docs/gfdl-1.2-invariants-only.html index 8a43fb0763..5c4fdace3b 100644 --- a/docs/gfdl-1.2-invariants-only.html +++ b/docs/gfdl-1.2-invariants-only.html @@ -597,8 +597,7 @@ If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. - +to permit their use in free software.
@@ -610,7 +609,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gfdl-1.2-invariants-only.json b/docs/gfdl-1.2-invariants-only.json index 25e054d3cd..7c02d603e7 100644 --- a/docs/gfdl-1.2-invariants-only.json +++ b/docs/gfdl-1.2-invariants-only.json @@ -1 +1,29 @@ -{"key": "gfdl-1.2-invariants-only", "short_name": "GFDL-1.2-invariants-only", "name": "GNU Free Documentation License v1.2 only - invariants", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", "notes": "Per SPDX.org, this license was released November 2002", "spdx_license_key": "GFDL-1.2-invariants-only", "text_urls": ["http://www.gnu.org/licenses/fdl-1.2.txt"], "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", "other_urls": ["http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"], "minimum_coverage": 99, "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.2; with the Invariant Sections being LIST THEIR TITLES ,\nwith the Front-Cover Texts being LIST , and with the Back-Cover Texts being\nLIST . A copy of the license is included in the section entitled \"GNU Free\nDocumentation License\".\n", "ignorable_copyrights": ["Copyright (c) 2000,2001,2002 Free Software Foundation, Inc."], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://www.gnu.org/copyleft"]} \ No newline at end of file +{ + "key": "gfdl-1.2-invariants-only", + "short_name": "GFDL-1.2-invariants-only", + "name": "GNU Free Documentation License v1.2 only - invariants", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + "notes": "Per SPDX.org, this license was released November 2002", + "spdx_license_key": "GFDL-1.2-invariants-only", + "text_urls": [ + "http://www.gnu.org/licenses/fdl-1.2.txt" + ], + "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", + "other_urls": [ + "http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "minimum_coverage": 99, + "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.2; with the Invariant Sections being LIST THEIR TITLES ,\nwith the Front-Cover Texts being LIST , and with the Back-Cover Texts being\nLIST . A copy of the license is included in the section entitled \"GNU Free\nDocumentation License\".\n", + "ignorable_copyrights": [ + "Copyright (c) 2000,2001,2002 Free Software Foundation, Inc." + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://www.gnu.org/copyleft" + ] +} \ No newline at end of file diff --git a/docs/gfdl-1.2-invariants-or-later.LICENSE b/docs/gfdl-1.2-invariants-or-later.LICENSE index c7c5acf33d..70ef0fa5d5 100644 --- a/docs/gfdl-1.2-invariants-or-later.LICENSE +++ b/docs/gfdl-1.2-invariants-or-later.LICENSE @@ -1,3 +1,35 @@ +--- +key: gfdl-1.2-invariants-or-later +short_name: GFDL-1.2-invariants-or-later +name: GNU Free Documentation License v1.2 or later - invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +notes: Per SPDX.org, this license was released November 2002 +spdx_license_key: GFDL-1.2-invariants-or-later +text_urls: + - http://www.gnu.org/licenses/fdl-1.2.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt + - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +minimum_coverage: 99 +standard_notice: | + Permission is granted to copy, distribute + and/or modify this document under the terms of the GNU Free Documentation + License, Version 1.2 or any later version published by the Free Software + Foundation; with the Invariant Sections being LIST THEIR TITLES , with the + Front-Cover Texts being LIST , and with the Back-Cover Texts being LIST . A + copy of the license is included in the section entitled "GNU Free + Documentation License". +ignorable_copyrights: + - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software @@ -402,4 +434,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/docs/gfdl-1.2-invariants-or-later.html b/docs/gfdl-1.2-invariants-or-later.html index 95d1d94796..f3ff7791d5 100644 --- a/docs/gfdl-1.2-invariants-or-later.html +++ b/docs/gfdl-1.2-invariants-or-later.html @@ -599,8 +599,7 @@ If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. - +to permit their use in free software.
@@ -612,7 +611,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gfdl-1.2-invariants-or-later.json b/docs/gfdl-1.2-invariants-or-later.json index 98c1f30027..3690b363cb 100644 --- a/docs/gfdl-1.2-invariants-or-later.json +++ b/docs/gfdl-1.2-invariants-or-later.json @@ -1 +1,29 @@ -{"key": "gfdl-1.2-invariants-or-later", "short_name": "GFDL-1.2-invariants-or-later", "name": "GNU Free Documentation License v1.2 or later - invariants", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", "notes": "Per SPDX.org, this license was released November 2002", "spdx_license_key": "GFDL-1.2-invariants-or-later", "text_urls": ["http://www.gnu.org/licenses/fdl-1.2.txt"], "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", "other_urls": ["http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"], "minimum_coverage": 99, "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.2 or any later version published by the Free Software\nFoundation; with the Invariant Sections being LIST THEIR TITLES , with the\nFront-Cover Texts being LIST , and with the Back-Cover Texts being LIST . A\ncopy of the license is included in the section entitled \"GNU Free\nDocumentation License\".\n", "ignorable_copyrights": ["Copyright (c) 2000,2001,2002 Free Software Foundation, Inc."], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://www.gnu.org/copyleft"]} \ No newline at end of file +{ + "key": "gfdl-1.2-invariants-or-later", + "short_name": "GFDL-1.2-invariants-or-later", + "name": "GNU Free Documentation License v1.2 or later - invariants", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + "notes": "Per SPDX.org, this license was released November 2002", + "spdx_license_key": "GFDL-1.2-invariants-or-later", + "text_urls": [ + "http://www.gnu.org/licenses/fdl-1.2.txt" + ], + "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", + "other_urls": [ + "http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "minimum_coverage": 99, + "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.2 or any later version published by the Free Software\nFoundation; with the Invariant Sections being LIST THEIR TITLES , with the\nFront-Cover Texts being LIST , and with the Back-Cover Texts being LIST . A\ncopy of the license is included in the section entitled \"GNU Free\nDocumentation License\".\n", + "ignorable_copyrights": [ + "Copyright (c) 2000,2001,2002 Free Software Foundation, Inc." + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://www.gnu.org/copyleft" + ] +} \ No newline at end of file diff --git a/docs/gfdl-1.2-no-invariants-only.LICENSE b/docs/gfdl-1.2-no-invariants-only.LICENSE index 447e82232d..c0c83ee1ea 100644 --- a/docs/gfdl-1.2-no-invariants-only.LICENSE +++ b/docs/gfdl-1.2-no-invariants-only.LICENSE @@ -1,3 +1,33 @@ +--- +key: gfdl-1.2-no-invariants-only +short_name: GFDL-1.2-no-invariants-only +name: GNU Free Documentation License v1.2 only - no invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +notes: Per SPDX.org, this license was released November 2002 +spdx_license_key: GFDL-1.2-no-invariants-only +text_urls: + - http://www.gnu.org/licenses/fdl-1.2.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt + - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +minimum_coverage: 99 +standard_notice: | + Permission is granted to copy, distribute + and/or modify this document under the terms of the GNU Free Documentation + License, Version 1.2; with no Invariant Sections, no Front-Cover Texts, and + no Back-Cover Texts. A copy of the license is included in the section + entitled "GNU Free Documentation License". +ignorable_copyrights: + - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2; with no Invariant Sections, no Front-Cover Texts, and @@ -400,4 +430,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/docs/gfdl-1.2-no-invariants-only.html b/docs/gfdl-1.2-no-invariants-only.html index 8ce3462610..5fb55ce65d 100644 --- a/docs/gfdl-1.2-no-invariants-only.html +++ b/docs/gfdl-1.2-no-invariants-only.html @@ -595,8 +595,7 @@ If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. - +to permit their use in free software.
@@ -608,7 +607,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gfdl-1.2-no-invariants-only.json b/docs/gfdl-1.2-no-invariants-only.json index 7f91c6137f..c2be6958cc 100644 --- a/docs/gfdl-1.2-no-invariants-only.json +++ b/docs/gfdl-1.2-no-invariants-only.json @@ -1 +1,29 @@ -{"key": "gfdl-1.2-no-invariants-only", "short_name": "GFDL-1.2-no-invariants-only", "name": "GNU Free Documentation License v1.2 only - no invariants", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", "notes": "Per SPDX.org, this license was released November 2002", "spdx_license_key": "GFDL-1.2-no-invariants-only", "text_urls": ["http://www.gnu.org/licenses/fdl-1.2.txt"], "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", "other_urls": ["http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"], "minimum_coverage": 99, "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.2; with no Invariant Sections, no Front-Cover Texts, and\nno Back-Cover Texts. A copy of the license is included in the section\nentitled \"GNU Free Documentation License\".\n", "ignorable_copyrights": ["Copyright (c) 2000,2001,2002 Free Software Foundation, Inc."], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://www.gnu.org/copyleft"]} \ No newline at end of file +{ + "key": "gfdl-1.2-no-invariants-only", + "short_name": "GFDL-1.2-no-invariants-only", + "name": "GNU Free Documentation License v1.2 only - no invariants", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + "notes": "Per SPDX.org, this license was released November 2002", + "spdx_license_key": "GFDL-1.2-no-invariants-only", + "text_urls": [ + "http://www.gnu.org/licenses/fdl-1.2.txt" + ], + "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", + "other_urls": [ + "http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "minimum_coverage": 99, + "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.2; with no Invariant Sections, no Front-Cover Texts, and\nno Back-Cover Texts. A copy of the license is included in the section\nentitled \"GNU Free Documentation License\".\n", + "ignorable_copyrights": [ + "Copyright (c) 2000,2001,2002 Free Software Foundation, Inc." + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://www.gnu.org/copyleft" + ] +} \ No newline at end of file diff --git a/docs/gfdl-1.2-no-invariants-or-later.LICENSE b/docs/gfdl-1.2-no-invariants-or-later.LICENSE index f59de637d0..0f53fce8ef 100644 --- a/docs/gfdl-1.2-no-invariants-or-later.LICENSE +++ b/docs/gfdl-1.2-no-invariants-or-later.LICENSE @@ -1,3 +1,34 @@ +--- +key: gfdl-1.2-no-invariants-or-later +short_name: GFDL-1.2-no-invariants-or-later +name: GNU Free Documentation License v1.2 or later - no invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +notes: Per SPDX.org, this license was released November 2002 +spdx_license_key: GFDL-1.2-no-invariants-or-later +text_urls: + - http://www.gnu.org/licenses/fdl-1.2.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt + - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +minimum_coverage: 99 +standard_notice: | + Permission is granted to copy, distribute + and/or modify this document under the terms of the GNU Free Documentation + License, Version 1.2 or any later version published by the Free Software + Foundation; with no Invariant Sections, no Front-Cover Texts,and no Back- + Cover Texts. A copy of the license is included in the section entitled "GNU + Free Documentation License". +ignorable_copyrights: + - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software @@ -401,4 +432,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/docs/gfdl-1.2-no-invariants-or-later.html b/docs/gfdl-1.2-no-invariants-or-later.html index ac90b4dac9..3e5aebd1ea 100644 --- a/docs/gfdl-1.2-no-invariants-or-later.html +++ b/docs/gfdl-1.2-no-invariants-or-later.html @@ -597,8 +597,7 @@ If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. - +to permit their use in free software.
@@ -610,7 +609,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gfdl-1.2-no-invariants-or-later.json b/docs/gfdl-1.2-no-invariants-or-later.json index 150eb0065d..9757fbbd05 100644 --- a/docs/gfdl-1.2-no-invariants-or-later.json +++ b/docs/gfdl-1.2-no-invariants-or-later.json @@ -1 +1,29 @@ -{"key": "gfdl-1.2-no-invariants-or-later", "short_name": "GFDL-1.2-no-invariants-or-later", "name": "GNU Free Documentation License v1.2 or later - no invariants", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", "notes": "Per SPDX.org, this license was released November 2002", "spdx_license_key": "GFDL-1.2-no-invariants-or-later", "text_urls": ["http://www.gnu.org/licenses/fdl-1.2.txt"], "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", "other_urls": ["http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"], "minimum_coverage": 99, "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.2 or any later version published by the Free Software\nFoundation; with no Invariant Sections, no Front-Cover Texts,and no Back-\nCover Texts. A copy of the license is included in the section entitled \"GNU\nFree Documentation License\".\n", "ignorable_copyrights": ["Copyright (c) 2000,2001,2002 Free Software Foundation, Inc."], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://www.gnu.org/copyleft"]} \ No newline at end of file +{ + "key": "gfdl-1.2-no-invariants-or-later", + "short_name": "GFDL-1.2-no-invariants-or-later", + "name": "GNU Free Documentation License v1.2 or later - no invariants", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + "notes": "Per SPDX.org, this license was released November 2002", + "spdx_license_key": "GFDL-1.2-no-invariants-or-later", + "text_urls": [ + "http://www.gnu.org/licenses/fdl-1.2.txt" + ], + "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", + "other_urls": [ + "http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "minimum_coverage": 99, + "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.2 or any later version published by the Free Software\nFoundation; with no Invariant Sections, no Front-Cover Texts,and no Back-\nCover Texts. A copy of the license is included in the section entitled \"GNU\nFree Documentation License\".\n", + "ignorable_copyrights": [ + "Copyright (c) 2000,2001,2002 Free Software Foundation, Inc." + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://www.gnu.org/copyleft" + ] +} \ No newline at end of file diff --git a/docs/gfdl-1.2-plus.LICENSE b/docs/gfdl-1.2-plus.LICENSE index 91b8ecc8b3..f8772ca54f 100644 --- a/docs/gfdl-1.2-plus.LICENSE +++ b/docs/gfdl-1.2-plus.LICENSE @@ -1,3 +1,29 @@ +--- +key: gfdl-1.2-plus +short_name: GFDL 1.2 or later +name: GNU Free Documentation License v1.2 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +notes: Per SPDX.org, this license was released November 2002 +spdx_license_key: GFDL-1.2-or-later +other_spdx_license_keys: + - GFDL-1.2+ +text_urls: + - http://www.gnu.org/licenses/fdl-1.2.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt + - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; @@ -398,4 +424,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/docs/gfdl-1.2-plus.html b/docs/gfdl-1.2-plus.html index 1346b9ea0b..7059c86bf1 100644 --- a/docs/gfdl-1.2-plus.html +++ b/docs/gfdl-1.2-plus.html @@ -590,8 +590,7 @@ If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. - +to permit their use in free software.
@@ -603,7 +602,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gfdl-1.2-plus.json b/docs/gfdl-1.2-plus.json index 823bda77b8..237bf54db2 100644 --- a/docs/gfdl-1.2-plus.json +++ b/docs/gfdl-1.2-plus.json @@ -1 +1,31 @@ -{"key": "gfdl-1.2-plus", "short_name": "GFDL 1.2 or later", "name": "GNU Free Documentation License v1.2 or later", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", "notes": "Per SPDX.org, this license was released November 2002", "spdx_license_key": "GFDL-1.2-or-later", "other_spdx_license_keys": ["GFDL-1.2+"], "text_urls": ["http://www.gnu.org/licenses/fdl-1.2.txt"], "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", "other_urls": ["http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"], "minimum_coverage": 99, "ignorable_copyrights": ["Copyright (c) 2000,2001,2002 Free Software Foundation, Inc."], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://www.gnu.org/copyleft"]} \ No newline at end of file +{ + "key": "gfdl-1.2-plus", + "short_name": "GFDL 1.2 or later", + "name": "GNU Free Documentation License v1.2 or later", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + "notes": "Per SPDX.org, this license was released November 2002", + "spdx_license_key": "GFDL-1.2-or-later", + "other_spdx_license_keys": [ + "GFDL-1.2+" + ], + "text_urls": [ + "http://www.gnu.org/licenses/fdl-1.2.txt" + ], + "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", + "other_urls": [ + "http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "minimum_coverage": 99, + "ignorable_copyrights": [ + "Copyright (c) 2000,2001,2002 Free Software Foundation, Inc." + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://www.gnu.org/copyleft" + ] +} \ No newline at end of file diff --git a/docs/gfdl-1.2.LICENSE b/docs/gfdl-1.2.LICENSE index a988da5af1..78a4716891 100644 --- a/docs/gfdl-1.2.LICENSE +++ b/docs/gfdl-1.2.LICENSE @@ -1,3 +1,29 @@ +--- +key: gfdl-1.2 +short_name: GFDL 1.2 +name: GNU Free Documentation License v1.2 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +notes: Per SPDX.org, this license was released November 2002 +spdx_license_key: GFDL-1.2-only +other_spdx_license_keys: + - GFDL-1.2 +text_urls: + - http://www.gnu.org/licenses/fdl-1.2.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt + - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +minimum_coverage: 50 +ignorable_copyrights: + - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + GNU Free Documentation License Version 1.2, November 2002 @@ -394,4 +420,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/docs/gfdl-1.2.html b/docs/gfdl-1.2.html index 8d48e327c7..a0e762a646 100644 --- a/docs/gfdl-1.2.html +++ b/docs/gfdl-1.2.html @@ -586,8 +586,7 @@ If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. - +to permit their use in free software.
@@ -599,7 +598,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gfdl-1.2.json b/docs/gfdl-1.2.json index 82bb86c428..eeb1fa1f89 100644 --- a/docs/gfdl-1.2.json +++ b/docs/gfdl-1.2.json @@ -1 +1,31 @@ -{"key": "gfdl-1.2", "short_name": "GFDL 1.2", "name": "GNU Free Documentation License v1.2", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", "notes": "Per SPDX.org, this license was released November 2002", "spdx_license_key": "GFDL-1.2-only", "other_spdx_license_keys": ["GFDL-1.2"], "text_urls": ["http://www.gnu.org/licenses/fdl-1.2.txt"], "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", "other_urls": ["http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"], "minimum_coverage": 50, "ignorable_copyrights": ["Copyright (c) 2000,2001,2002 Free Software Foundation, Inc."], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://www.gnu.org/copyleft"]} \ No newline at end of file +{ + "key": "gfdl-1.2", + "short_name": "GFDL 1.2", + "name": "GNU Free Documentation License v1.2", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + "notes": "Per SPDX.org, this license was released November 2002", + "spdx_license_key": "GFDL-1.2-only", + "other_spdx_license_keys": [ + "GFDL-1.2" + ], + "text_urls": [ + "http://www.gnu.org/licenses/fdl-1.2.txt" + ], + "faq_url": "http://www.fsf.org/licensing/licenses/fdl.html", + "other_urls": [ + "http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt", + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "minimum_coverage": 50, + "ignorable_copyrights": [ + "Copyright (c) 2000,2001,2002 Free Software Foundation, Inc." + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://www.gnu.org/copyleft" + ] +} \ No newline at end of file diff --git a/docs/gfdl-1.3-invariants-only.LICENSE b/docs/gfdl-1.3-invariants-only.LICENSE index a719410cf8..0f96f633cf 100644 --- a/docs/gfdl-1.3-invariants-only.LICENSE +++ b/docs/gfdl-1.3-invariants-only.LICENSE @@ -1,3 +1,33 @@ +--- +key: gfdl-1.3-invariants-only +short_name: GFDL-1.3-invariants-only +name: GNU Free Documentation License v1.3 only - invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/fdl-1.3.txt +notes: Per SPDX.org, this license was released 3 November 2008. +spdx_license_key: GFDL-1.3-invariants-only +text_urls: + - http://www.gnu.org/licenses/fdl-1.3.txt +other_urls: + - https://www.gnu.org/licenses/fdl-1.3.txt +minimum_coverage: 99 +standard_notice: | + Permission is granted to copy, distribute + and/or modify this document under the terms of the GNU Free Documentation + License, Version 1.3; with with the Invariant Sections being LIST THEIR + TITLES , with the Front-Cover Texts being LIST , and with the Back-Cover + Texts being LIST . A copy of the license is included in the section + entitled "GNU Free Documentation License". +ignorable_copyrights: + - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/copyleft +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3; with with the Invariant Sections being LIST THEIR @@ -454,4 +484,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/docs/gfdl-1.3-invariants-only.html b/docs/gfdl-1.3-invariants-only.html index 5d657cb75c..b27bd441b1 100644 --- a/docs/gfdl-1.3-invariants-only.html +++ b/docs/gfdl-1.3-invariants-only.html @@ -643,8 +643,7 @@ If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. - +to permit their use in free software.
@@ -656,7 +655,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gfdl-1.3-invariants-only.json b/docs/gfdl-1.3-invariants-only.json index 94c07b78c1..0ffcf9067b 100644 --- a/docs/gfdl-1.3-invariants-only.json +++ b/docs/gfdl-1.3-invariants-only.json @@ -1 +1,28 @@ -{"key": "gfdl-1.3-invariants-only", "short_name": "GFDL-1.3-invariants-only", "name": "GNU Free Documentation License v1.3 only - invariants", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/fdl-1.3.txt", "notes": "Per SPDX.org, this license was released 3 November 2008.", "spdx_license_key": "GFDL-1.3-invariants-only", "text_urls": ["http://www.gnu.org/licenses/fdl-1.3.txt"], "other_urls": ["https://www.gnu.org/licenses/fdl-1.3.txt"], "minimum_coverage": 99, "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.3; with with the Invariant Sections being LIST THEIR\nTITLES , with the Front-Cover Texts being LIST , and with the Back-Cover\nTexts being LIST . A copy of the license is included in the section\nentitled \"GNU Free Documentation License\".\n", "ignorable_copyrights": ["Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. "], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://fsf.org/", "http://www.gnu.org/copyleft"]} \ No newline at end of file +{ + "key": "gfdl-1.3-invariants-only", + "short_name": "GFDL-1.3-invariants-only", + "name": "GNU Free Documentation License v1.3 only - invariants", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/fdl-1.3.txt", + "notes": "Per SPDX.org, this license was released 3 November 2008.", + "spdx_license_key": "GFDL-1.3-invariants-only", + "text_urls": [ + "http://www.gnu.org/licenses/fdl-1.3.txt" + ], + "other_urls": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "minimum_coverage": 99, + "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.3; with with the Invariant Sections being LIST THEIR\nTITLES , with the Front-Cover Texts being LIST , and with the Back-Cover\nTexts being LIST . A copy of the license is included in the section\nentitled \"GNU Free Documentation License\".\n", + "ignorable_copyrights": [ + "Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. " + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://fsf.org/", + "http://www.gnu.org/copyleft" + ] +} \ No newline at end of file diff --git a/docs/gfdl-1.3-invariants-or-later.LICENSE b/docs/gfdl-1.3-invariants-or-later.LICENSE index af1f483cb0..93d78d762d 100644 --- a/docs/gfdl-1.3-invariants-or-later.LICENSE +++ b/docs/gfdl-1.3-invariants-or-later.LICENSE @@ -1,3 +1,34 @@ +--- +key: gfdl-1.3-invariants-or-later +short_name: GFDL-1.3-invariants-or-later +name: GNU Free Documentation License v1.3 or later - invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/fdl-1.3.txt +notes: Per SPDX.org, this license was released 3 November 2008. +spdx_license_key: GFDL-1.3-invariants-or-later +text_urls: + - http://www.gnu.org/licenses/fdl-1.3.txt +other_urls: + - https://www.gnu.org/licenses/fdl-1.3.txt +minimum_coverage: 99 +standard_notice: | + Permission is granted to copy, distribute + and/or modify this document under the terms of the GNU Free Documentation + License, Version 1.3 or any later version published by the Free Software + Foundation; with the Invariant Sections being LIST THEIR TITLES , with the + Front-Cover Texts being LIST , and with the Back-Cover Texts being LIST . A + copy of the license is included in the section entitled "GNU Free + Documentation License". +ignorable_copyrights: + - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/copyleft +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software @@ -455,4 +486,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/docs/gfdl-1.3-invariants-or-later.html b/docs/gfdl-1.3-invariants-or-later.html index bcf63ce06a..63569831ee 100644 --- a/docs/gfdl-1.3-invariants-or-later.html +++ b/docs/gfdl-1.3-invariants-or-later.html @@ -645,8 +645,7 @@ If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. - +to permit their use in free software.
@@ -658,7 +657,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gfdl-1.3-invariants-or-later.json b/docs/gfdl-1.3-invariants-or-later.json index 29f2fe7ecc..d229045dbf 100644 --- a/docs/gfdl-1.3-invariants-or-later.json +++ b/docs/gfdl-1.3-invariants-or-later.json @@ -1 +1,28 @@ -{"key": "gfdl-1.3-invariants-or-later", "short_name": "GFDL-1.3-invariants-or-later", "name": "GNU Free Documentation License v1.3 or later - invariants", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/fdl-1.3.txt", "notes": "Per SPDX.org, this license was released 3 November 2008.", "spdx_license_key": "GFDL-1.3-invariants-or-later", "text_urls": ["http://www.gnu.org/licenses/fdl-1.3.txt"], "other_urls": ["https://www.gnu.org/licenses/fdl-1.3.txt"], "minimum_coverage": 99, "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.3 or any later version published by the Free Software\nFoundation; with the Invariant Sections being LIST THEIR TITLES , with the\nFront-Cover Texts being LIST , and with the Back-Cover Texts being LIST . A\ncopy of the license is included in the section entitled \"GNU Free\nDocumentation License\".\n", "ignorable_copyrights": ["Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. "], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://fsf.org/", "http://www.gnu.org/copyleft"]} \ No newline at end of file +{ + "key": "gfdl-1.3-invariants-or-later", + "short_name": "GFDL-1.3-invariants-or-later", + "name": "GNU Free Documentation License v1.3 or later - invariants", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/fdl-1.3.txt", + "notes": "Per SPDX.org, this license was released 3 November 2008.", + "spdx_license_key": "GFDL-1.3-invariants-or-later", + "text_urls": [ + "http://www.gnu.org/licenses/fdl-1.3.txt" + ], + "other_urls": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "minimum_coverage": 99, + "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.3 or any later version published by the Free Software\nFoundation; with the Invariant Sections being LIST THEIR TITLES , with the\nFront-Cover Texts being LIST , and with the Back-Cover Texts being LIST . A\ncopy of the license is included in the section entitled \"GNU Free\nDocumentation License\".\n", + "ignorable_copyrights": [ + "Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. " + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://fsf.org/", + "http://www.gnu.org/copyleft" + ] +} \ No newline at end of file diff --git a/docs/gfdl-1.3-no-invariants-only.LICENSE b/docs/gfdl-1.3-no-invariants-only.LICENSE index d704e28645..b05e73058d 100644 --- a/docs/gfdl-1.3-no-invariants-only.LICENSE +++ b/docs/gfdl-1.3-no-invariants-only.LICENSE @@ -1,3 +1,32 @@ +--- +key: gfdl-1.3-no-invariants-only +short_name: GFDL-1.3-no-invariants-only +name: GNU Free Documentation License v1.3 only - no invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/fdl-1.3.txt +notes: Per SPDX.org, this license was released 3 November 2008. +spdx_license_key: GFDL-1.3-no-invariants-only +text_urls: + - http://www.gnu.org/licenses/fdl-1.3.txt +other_urls: + - https://www.gnu.org/licenses/fdl-1.3.txt +minimum_coverage: 99 +standard_notice: | + Permission is granted to copy, distribute + and/or modify this document under the terms of the GNU Free Documentation + License, Version 1.3; with no Invariant Sections, no Front-Cover Texts, and + no Back-Cover Texts. A copy of the license is included in the section + entitled "GNU Free Documentation License". +ignorable_copyrights: + - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/copyleft +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3; with no Invariant Sections, no Front-Cover Texts, and @@ -453,4 +482,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/docs/gfdl-1.3-no-invariants-only.html b/docs/gfdl-1.3-no-invariants-only.html index f524ef4a63..f8f034895d 100644 --- a/docs/gfdl-1.3-no-invariants-only.html +++ b/docs/gfdl-1.3-no-invariants-only.html @@ -641,8 +641,7 @@ If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. - +to permit their use in free software.
@@ -654,7 +653,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gfdl-1.3-no-invariants-only.json b/docs/gfdl-1.3-no-invariants-only.json index 35c3d66902..5737edff21 100644 --- a/docs/gfdl-1.3-no-invariants-only.json +++ b/docs/gfdl-1.3-no-invariants-only.json @@ -1 +1,28 @@ -{"key": "gfdl-1.3-no-invariants-only", "short_name": "GFDL-1.3-no-invariants-only", "name": "GNU Free Documentation License v1.3 only - no invariants", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/fdl-1.3.txt", "notes": "Per SPDX.org, this license was released 3 November 2008.", "spdx_license_key": "GFDL-1.3-no-invariants-only", "text_urls": ["http://www.gnu.org/licenses/fdl-1.3.txt"], "other_urls": ["https://www.gnu.org/licenses/fdl-1.3.txt"], "minimum_coverage": 99, "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.3; with no Invariant Sections, no Front-Cover Texts, and\nno Back-Cover Texts. A copy of the license is included in the section\nentitled \"GNU Free Documentation License\".\n", "ignorable_copyrights": ["Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. "], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://fsf.org/", "http://www.gnu.org/copyleft"]} \ No newline at end of file +{ + "key": "gfdl-1.3-no-invariants-only", + "short_name": "GFDL-1.3-no-invariants-only", + "name": "GNU Free Documentation License v1.3 only - no invariants", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/fdl-1.3.txt", + "notes": "Per SPDX.org, this license was released 3 November 2008.", + "spdx_license_key": "GFDL-1.3-no-invariants-only", + "text_urls": [ + "http://www.gnu.org/licenses/fdl-1.3.txt" + ], + "other_urls": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "minimum_coverage": 99, + "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.3; with no Invariant Sections, no Front-Cover Texts, and\nno Back-Cover Texts. A copy of the license is included in the section\nentitled \"GNU Free Documentation License\".\n", + "ignorable_copyrights": [ + "Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. " + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://fsf.org/", + "http://www.gnu.org/copyleft" + ] +} \ No newline at end of file diff --git a/docs/gfdl-1.3-no-invariants-or-later.LICENSE b/docs/gfdl-1.3-no-invariants-or-later.LICENSE index d03f10763e..c7e7df2222 100644 --- a/docs/gfdl-1.3-no-invariants-or-later.LICENSE +++ b/docs/gfdl-1.3-no-invariants-or-later.LICENSE @@ -1,3 +1,33 @@ +--- +key: gfdl-1.3-no-invariants-or-later +short_name: GFDL-1.3-no-invariants-or-later +name: GNU Free Documentation License v1.3 or later - no invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/fdl-1.3.txt +notes: Per SPDX.org, this license was released 3 November 2008. +spdx_license_key: GFDL-1.3-no-invariants-or-later +text_urls: + - http://www.gnu.org/licenses/fdl-1.3.txt +other_urls: + - https://www.gnu.org/licenses/fdl-1.3.txt +minimum_coverage: 99 +standard_notice: | + Permission is granted to copy, distribute + and/or modify this document under the terms of the GNU Free Documentation + License, Version 1.3 or any later version published by the Free Software + Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back- + Cover Texts. A copy of the license is included in the section entitled "GNU + Free Documentation License". +ignorable_copyrights: + - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/copyleft +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software @@ -454,4 +484,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/docs/gfdl-1.3-no-invariants-or-later.html b/docs/gfdl-1.3-no-invariants-or-later.html index 6a8626a0c0..5baf026017 100644 --- a/docs/gfdl-1.3-no-invariants-or-later.html +++ b/docs/gfdl-1.3-no-invariants-or-later.html @@ -643,8 +643,7 @@ If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. - +to permit their use in free software.
@@ -656,7 +655,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gfdl-1.3-no-invariants-or-later.json b/docs/gfdl-1.3-no-invariants-or-later.json index 9aaaed0ff3..6852218663 100644 --- a/docs/gfdl-1.3-no-invariants-or-later.json +++ b/docs/gfdl-1.3-no-invariants-or-later.json @@ -1 +1,28 @@ -{"key": "gfdl-1.3-no-invariants-or-later", "short_name": "GFDL-1.3-no-invariants-or-later", "name": "GNU Free Documentation License v1.3 or later - no invariants", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/fdl-1.3.txt", "notes": "Per SPDX.org, this license was released 3 November 2008.", "spdx_license_key": "GFDL-1.3-no-invariants-or-later", "text_urls": ["http://www.gnu.org/licenses/fdl-1.3.txt"], "other_urls": ["https://www.gnu.org/licenses/fdl-1.3.txt"], "minimum_coverage": 99, "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.3 or any later version published by the Free Software\nFoundation; with no Invariant Sections, no Front-Cover Texts, and no Back-\nCover Texts. A copy of the license is included in the section entitled \"GNU\nFree Documentation License\".\n", "ignorable_copyrights": ["Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. "], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://fsf.org/", "http://www.gnu.org/copyleft"]} \ No newline at end of file +{ + "key": "gfdl-1.3-no-invariants-or-later", + "short_name": "GFDL-1.3-no-invariants-or-later", + "name": "GNU Free Documentation License v1.3 or later - no invariants", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/fdl-1.3.txt", + "notes": "Per SPDX.org, this license was released 3 November 2008.", + "spdx_license_key": "GFDL-1.3-no-invariants-or-later", + "text_urls": [ + "http://www.gnu.org/licenses/fdl-1.3.txt" + ], + "other_urls": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "minimum_coverage": 99, + "standard_notice": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.3 or any later version published by the Free Software\nFoundation; with no Invariant Sections, no Front-Cover Texts, and no Back-\nCover Texts. A copy of the license is included in the section entitled \"GNU\nFree Documentation License\".\n", + "ignorable_copyrights": [ + "Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. " + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://fsf.org/", + "http://www.gnu.org/copyleft" + ] +} \ No newline at end of file diff --git a/docs/gfdl-1.3-plus.LICENSE b/docs/gfdl-1.3-plus.LICENSE index dcb315c01d..94ba370936 100644 --- a/docs/gfdl-1.3-plus.LICENSE +++ b/docs/gfdl-1.3-plus.LICENSE @@ -1,3 +1,28 @@ +--- +key: gfdl-1.3-plus +short_name: GFDL 1.3 or later +name: GNU Free Documentation License v1.3 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/fdl-1.3.txt +notes: Per SPDX.org, this license was released 3 November 2008. +spdx_license_key: GFDL-1.3-or-later +other_spdx_license_keys: + - GFDL-1.3+ +text_urls: + - http://www.gnu.org/licenses/fdl-1.3.txt +other_urls: + - https://www.gnu.org/licenses/fdl-1.3.txt +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/copyleft +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation. @@ -451,4 +476,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/docs/gfdl-1.3-plus.html b/docs/gfdl-1.3-plus.html index 50a23ba1af..0becd246bb 100644 --- a/docs/gfdl-1.3-plus.html +++ b/docs/gfdl-1.3-plus.html @@ -636,8 +636,7 @@ If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. - +to permit their use in free software.
@@ -649,7 +648,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gfdl-1.3-plus.json b/docs/gfdl-1.3-plus.json index ede4310228..de3d53d7b2 100644 --- a/docs/gfdl-1.3-plus.json +++ b/docs/gfdl-1.3-plus.json @@ -1 +1,30 @@ -{"key": "gfdl-1.3-plus", "short_name": "GFDL 1.3 or later", "name": "GNU Free Documentation License v1.3 or later", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/fdl-1.3.txt", "notes": "Per SPDX.org, this license was released 3 November 2008.", "spdx_license_key": "GFDL-1.3-or-later", "other_spdx_license_keys": ["GFDL-1.3+"], "text_urls": ["http://www.gnu.org/licenses/fdl-1.3.txt"], "other_urls": ["https://www.gnu.org/licenses/fdl-1.3.txt"], "minimum_coverage": 99, "ignorable_copyrights": ["Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. "], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://fsf.org/", "http://www.gnu.org/copyleft"]} \ No newline at end of file +{ + "key": "gfdl-1.3-plus", + "short_name": "GFDL 1.3 or later", + "name": "GNU Free Documentation License v1.3 or later", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/fdl-1.3.txt", + "notes": "Per SPDX.org, this license was released 3 November 2008.", + "spdx_license_key": "GFDL-1.3-or-later", + "other_spdx_license_keys": [ + "GFDL-1.3+" + ], + "text_urls": [ + "http://www.gnu.org/licenses/fdl-1.3.txt" + ], + "other_urls": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "minimum_coverage": 99, + "ignorable_copyrights": [ + "Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. " + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://fsf.org/", + "http://www.gnu.org/copyleft" + ] +} \ No newline at end of file diff --git a/docs/gfdl-1.3.LICENSE b/docs/gfdl-1.3.LICENSE index 2f7e03ca51..d9a5a9aebb 100644 --- a/docs/gfdl-1.3.LICENSE +++ b/docs/gfdl-1.3.LICENSE @@ -1,3 +1,26 @@ +--- +key: gfdl-1.3 +short_name: GFDL 1.3 +name: GNU Free Documentation License v1.3 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/fdl-1.3.txt +notes: Per SPDX.org, this license was released 3 November 2008. +spdx_license_key: GFDL-1.3-only +other_spdx_license_keys: + - GFDL-1.3 +text_urls: + - http://www.gnu.org/licenses/fdl-1.3.txt +other_urls: + - https://www.gnu.org/licenses/fdl-1.3.txt +ignorable_copyrights: + - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/copyleft +--- GNU Free Documentation License Version 1.3, 3 November 2008 @@ -448,4 +471,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/docs/gfdl-1.3.html b/docs/gfdl-1.3.html index f901ad2d06..b29950dcac 100644 --- a/docs/gfdl-1.3.html +++ b/docs/gfdl-1.3.html @@ -176,8 +176,7 @@
license_text
-

-                GNU Free Documentation License
+    
                GNU Free Documentation License
                  Version 1.3, 3 November 2008
 
 
@@ -626,8 +625,7 @@
 If your document contains nontrivial examples of program code, we
 recommend releasing these examples in parallel under your choice of
 free software license, such as the GNU General Public License,
-to permit their use in free software.
-
+to permit their use in free software.
@@ -639,7 +637,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gfdl-1.3.json b/docs/gfdl-1.3.json index 069807835d..cd7083507b 100644 --- a/docs/gfdl-1.3.json +++ b/docs/gfdl-1.3.json @@ -1 +1,29 @@ -{"key": "gfdl-1.3", "short_name": "GFDL 1.3", "name": "GNU Free Documentation License v1.3", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/fdl-1.3.txt", "notes": "Per SPDX.org, this license was released 3 November 2008.", "spdx_license_key": "GFDL-1.3-only", "other_spdx_license_keys": ["GFDL-1.3"], "text_urls": ["http://www.gnu.org/licenses/fdl-1.3.txt"], "other_urls": ["https://www.gnu.org/licenses/fdl-1.3.txt"], "ignorable_copyrights": ["Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. "], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://fsf.org/", "http://www.gnu.org/copyleft"]} \ No newline at end of file +{ + "key": "gfdl-1.3", + "short_name": "GFDL 1.3", + "name": "GNU Free Documentation License v1.3", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/fdl-1.3.txt", + "notes": "Per SPDX.org, this license was released 3 November 2008.", + "spdx_license_key": "GFDL-1.3-only", + "other_spdx_license_keys": [ + "GFDL-1.3" + ], + "text_urls": [ + "http://www.gnu.org/licenses/fdl-1.3.txt" + ], + "other_urls": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "ignorable_copyrights": [ + "Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. " + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://fsf.org/", + "http://www.gnu.org/copyleft" + ] +} \ No newline at end of file diff --git a/docs/ghostpdl-permissive.LICENSE b/docs/ghostpdl-permissive.LICENSE index ea9c9023c4..7a140006ec 100644 --- a/docs/ghostpdl-permissive.LICENSE +++ b/docs/ghostpdl-permissive.LICENSE @@ -1,3 +1,13 @@ +--- +key: ghostpdl-permissive +short_name: Ghostpdl Permissive +name: Ghostpdl Permissive +category: Permissive +owner: Washington State University +homepage_url: http://git.ghostscript.com/?p=ghostpdl.git;a=blob;f=devices/gdev4693.c;h=7e7307776d6bc0e18b89fc0e8f972513bb257f46;hb=HEAD +spdx_license_key: LicenseRef-scancode-ghostpdl-permissive +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted. This software is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/docs/ghostpdl-permissive.html b/docs/ghostpdl-permissive.html index b854661ba7..c4ed148211 100644 --- a/docs/ghostpdl-permissive.html +++ b/docs/ghostpdl-permissive.html @@ -129,7 +129,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ghostpdl-permissive.json b/docs/ghostpdl-permissive.json index 71754a4c12..1894ff7718 100644 --- a/docs/ghostpdl-permissive.json +++ b/docs/ghostpdl-permissive.json @@ -1 +1,9 @@ -{"key": "ghostpdl-permissive", "short_name": "Ghostpdl Permissive", "name": "Ghostpdl Permissive", "category": "Permissive", "owner": "Washington State University", "homepage_url": "http://git.ghostscript.com/?p=ghostpdl.git;a=blob;f=devices/gdev4693.c;h=7e7307776d6bc0e18b89fc0e8f972513bb257f46;hb=HEAD", "spdx_license_key": "LicenseRef-scancode-ghostpdl-permissive"} \ No newline at end of file +{ + "key": "ghostpdl-permissive", + "short_name": "Ghostpdl Permissive", + "name": "Ghostpdl Permissive", + "category": "Permissive", + "owner": "Washington State University", + "homepage_url": "http://git.ghostscript.com/?p=ghostpdl.git;a=blob;f=devices/gdev4693.c;h=7e7307776d6bc0e18b89fc0e8f972513bb257f46;hb=HEAD", + "spdx_license_key": "LicenseRef-scancode-ghostpdl-permissive" +} \ No newline at end of file diff --git a/docs/ghostscript-1988.LICENSE b/docs/ghostscript-1988.LICENSE index e839b3ff99..7def394cb1 100644 --- a/docs/ghostscript-1988.LICENSE +++ b/docs/ghostscript-1988.LICENSE @@ -1,3 +1,25 @@ +--- +key: ghostscript-1988 +short_name: Ghostscript General Public License 1988 +name: Ghostscript General Public License 1988 +category: Copyleft +owner: Richard Stallman +notes: | + This is a rare license and there is no original web location available + anymore. Because some old version of the "ansi2knr.c" found in libjpeg and + libpng have it, It can still be found sometimes in the wild. +spdx_license_key: LicenseRef-scancode-ghostscript-1988 +text_urls: + - http://sourceforge.net/p/libpng/code/ci/0d5805822f8817a17937462a2fd0606ffdad378e/tree/ansi2knr.c + - http://www.mit.edu/afs.new/athena/contrib/xemacs/OldFiles/src/aux/libpng-1.0.3/ansi2knr.c +ignorable_copyrights: + - Copyright (c) 1988 Richard M. Stallman + - Copyright (c) 1989 Aladdin Enterprises +ignorable_holders: + - Aladdin Enterprises + - Richard M. Stallman +--- + GHOSTSCRIPT GENERAL PUBLIC LICENSE (Clarified 11 Feb 1988) diff --git a/docs/ghostscript-1988.html b/docs/ghostscript-1988.html index 84d9813ef7..48a8f0c453 100644 --- a/docs/ghostscript-1988.html +++ b/docs/ghostscript-1988.html @@ -298,7 +298,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ghostscript-1988.json b/docs/ghostscript-1988.json index 284602e054..cd4f7db6c1 100644 --- a/docs/ghostscript-1988.json +++ b/docs/ghostscript-1988.json @@ -1 +1,21 @@ -{"key": "ghostscript-1988", "short_name": "Ghostscript General Public License 1988", "name": "Ghostscript General Public License 1988", "category": "Copyleft", "owner": "Richard Stallman", "notes": "This is a rare license and there is no original web location available\nanymore. Because some old version of the \"ansi2knr.c\" found in libjpeg and\nlibpng have it, It can still be found sometimes in the wild.\n", "spdx_license_key": "LicenseRef-scancode-ghostscript-1988", "text_urls": ["http://sourceforge.net/p/libpng/code/ci/0d5805822f8817a17937462a2fd0606ffdad378e/tree/ansi2knr.c", "http://www.mit.edu/afs.new/athena/contrib/xemacs/OldFiles/src/aux/libpng-1.0.3/ansi2knr.c"], "ignorable_copyrights": ["Copyright (c) 1988 Richard M. Stallman", "Copyright (c) 1989 Aladdin Enterprises"], "ignorable_holders": ["Aladdin Enterprises", "Richard M. Stallman"]} \ No newline at end of file +{ + "key": "ghostscript-1988", + "short_name": "Ghostscript General Public License 1988", + "name": "Ghostscript General Public License 1988", + "category": "Copyleft", + "owner": "Richard Stallman", + "notes": "This is a rare license and there is no original web location available\nanymore. Because some old version of the \"ansi2knr.c\" found in libjpeg and\nlibpng have it, It can still be found sometimes in the wild.\n", + "spdx_license_key": "LicenseRef-scancode-ghostscript-1988", + "text_urls": [ + "http://sourceforge.net/p/libpng/code/ci/0d5805822f8817a17937462a2fd0606ffdad378e/tree/ansi2knr.c", + "http://www.mit.edu/afs.new/athena/contrib/xemacs/OldFiles/src/aux/libpng-1.0.3/ansi2knr.c" + ], + "ignorable_copyrights": [ + "Copyright (c) 1988 Richard M. Stallman", + "Copyright (c) 1989 Aladdin Enterprises" + ], + "ignorable_holders": [ + "Aladdin Enterprises", + "Richard M. Stallman" + ] +} \ No newline at end of file diff --git a/docs/gitlab-ee.LICENSE b/docs/gitlab-ee.LICENSE index d9881beda8..b497bade34 100644 --- a/docs/gitlab-ee.LICENSE +++ b/docs/gitlab-ee.LICENSE @@ -1,3 +1,20 @@ +--- +key: gitlab-ee +short_name: GitLab EE +name: GitLab Enterprise Edition (EE) license +category: Commercial +owner: GitLab.org +homepage_url: https://gitlab.com/gitlab-org/gitlab/-/blob/master/ee/LICENSE +spdx_license_key: LicenseRef-scancode-gitlab-ee +faq_url: https://docs.gitlab.com/ee/development/licensing.html +ignorable_copyrights: + - Copyright (c) 2011-present GitLab B.V. +ignorable_holders: + - GitLab B.V. +ignorable_urls: + - https://about.gitlab.com/terms/#subscription +--- + The GitLab Enterprise Edition (EE) license (the “EE License”) Copyright (c) 2011-present GitLab B.V. diff --git a/docs/gitlab-ee.html b/docs/gitlab-ee.html index f014dae931..022177083b 100644 --- a/docs/gitlab-ee.html +++ b/docs/gitlab-ee.html @@ -204,7 +204,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gitlab-ee.json b/docs/gitlab-ee.json index d16d0dce84..88b0c0c84a 100644 --- a/docs/gitlab-ee.json +++ b/docs/gitlab-ee.json @@ -1 +1,19 @@ -{"key": "gitlab-ee", "short_name": "GitLab EE", "name": "GitLab Enterprise Edition (EE) license", "category": "Commercial", "owner": "GitLab.org", "homepage_url": "https://gitlab.com/gitlab-org/gitlab/-/blob/master/ee/LICENSE", "spdx_license_key": "LicenseRef-scancode-gitlab-ee", "faq_url": "https://docs.gitlab.com/ee/development/licensing.html", "ignorable_copyrights": ["Copyright (c) 2011-present GitLab B.V."], "ignorable_holders": ["GitLab B.V."], "ignorable_urls": ["https://about.gitlab.com/terms/#subscription"]} \ No newline at end of file +{ + "key": "gitlab-ee", + "short_name": "GitLab EE", + "name": "GitLab Enterprise Edition (EE) license", + "category": "Commercial", + "owner": "GitLab.org", + "homepage_url": "https://gitlab.com/gitlab-org/gitlab/-/blob/master/ee/LICENSE", + "spdx_license_key": "LicenseRef-scancode-gitlab-ee", + "faq_url": "https://docs.gitlab.com/ee/development/licensing.html", + "ignorable_copyrights": [ + "Copyright (c) 2011-present GitLab B.V." + ], + "ignorable_holders": [ + "GitLab B.V." + ], + "ignorable_urls": [ + "https://about.gitlab.com/terms/#subscription" + ] +} \ No newline at end of file diff --git a/docs/gitpod-self-hosted-free-2020.LICENSE b/docs/gitpod-self-hosted-free-2020.LICENSE new file mode 100644 index 0000000000..8538fefb46 --- /dev/null +++ b/docs/gitpod-self-hosted-free-2020.LICENSE @@ -0,0 +1,126 @@ +--- +key: gitpod-self-hosted-free-2020 +short_name: Gitpod Self-Hosted Free License Terms 2020 +name: Gitpod Self-Hosted Free License Terms 2020 +category: Proprietary Free +owner: Gitpod +homepage_url: https://github.com/gitpod-io/gitpod/blob/main/License.enterprise.txt +spdx_license_key: LicenseRef-scancode-gitpod-self-hosted-free-2020 +faq_url: https://github.com/gitpod-io/gitpod/blob/main/License.txt +--- + +# Gitpod Self-Hosted Free License Terms and +# Gitpod Enterprise Source Code License + + +### 1 Preamble + +1.1 These Software Licensing Terms (“Terms”) provide the terms and conditions +that govern usage of the Software Gitpod Self-Hosted Free Edition in source and +binary form (“Software”). The Software is provided by Gitpod GmbH, Am +Germaniahafen 1, 24143 Kiel (“Gitpod”). By downloading or using to the +Software, you agree to be bound by the following Terms. + +### 2 Scope of Terms + +2.1 These Terms apply to the usage of the Software, which is designed to be used +for business purposes. + +2.2 These Terms apply to the binary code and to the source code of the Software, +unless the header of a source file explicitly refers to a different license. + +2.3 These Terms apply unless you have a separate agreement with Gitpod in +written form that explicitly supersedes these Terms. + +### 3 License Fees + +3.1 The use of the Software as described in Sec. 2 is free of charge. It is +however limited to the features that are accessible without a license key and +may only take place in accordance with these Terms. + +3.2 In case you want to use additional features or distribute the Software or +modifications to it without the restrictions of these Terms, please reach out +for a license key, which is subject to different legal and commercial terms. + +### 4 Granting of Rights + +4.1 Permission is hereby granted to obtain a copy of the Software and their +accompanying documentation to use, reproduce and execute the Software for +internal purposes in accordance with these Terms and to distribute the +unmodified software without charging a fee for it. + +4.2 Subject to the conditions of these Terms, you may modify the Software, +including patching it. You agree that Gitpod retains all right, title and +interest in and to all such modifications and patches (“Modifications”). You may +only use, reproduce and execute the Modifications for internal purposes in +accordance with these Terms. You may not distribute Modifications to any third +party. Nonetheless, you may make such modifications publicly available as fork +of the repository which hosts the original version of the Software, however only +under these Terms and only, if accompanied by the complete machine-readable +source code of the Modifications and of the Software. + +4.3 The copyright notices in the Software and this entire statement, including +the above license grant and these Terms must be included in all copies of the +Software (in whole or in part). Copyright notices, serial numbers and other +features aimed at product identification or control may not be removed, altered, +suppressed or otherwise bypassed under any circumstances. For the avoidance of +doubt, the software may neither in source nor in binary form be modified in +order to enable or activate any features of the software that would otherwise +require a valid license key. + +4.4 Any other usage of the Software, in particular modifying, combining it with +other software and providing it to third parties on a commercial basis, is +prohibited. This includes any sale, lease, indirect use of the Software to the +benefit of third parties and its provision as a commercial service, or offering +it as a part of a commercial service or platform. + +4.5 The Software remains the exclusive intellectual property of Gitpod at all +times. Mandatory rights resulting from applicable copyright law (e.g. related to +decompilation) remain unaffected. + +4.6 Gitpod provides the source code of the Software on a voluntary basis and is +not obligated to do so. Furthermore, Gitpod is not obligated to provide any +updates or upgrades it may develop. + +4.7 Please consider purchasing a license key (see above Sec. 3) for further +usage rights and additional features. + +### 5 Telemetry + +5.1 Gitpod intends to collect certain statistical data on the use of the +Software on an anonymized basis in the future with a future version of the +Software. The data will only be used to improve the Software and the data will +not be sold to third parties. Gitpod will inform about this with the future +release. + +### 6 Warranty and Liability + +6.1 THE SOFTWARE IS PROVIDED FREE OF CHARGE ON AN “AS IS” BASIS, WITHOUT +WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND +NON-INFRINGEMENT. + +6.2 IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE +BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OF +OR OTHER DEALINGS IN THE SOFTWARE. + +6.3 THIS LIMITATION OF LIABILITY DOES NOT EXCLUDE MANDATORY LEGAL GROUNDS FOR +LIABILITY SUCH AS LIABILITY FOR PERSONAL INJURY, GROSS NEGLIGENCE, WILLFUL +INTENT OR LAWS ON PRODUCT LIABILITY. + +### 7 Third-party Components + +7.1 The Software contains third-party components including open source software +(“Third-Party Components“). Parts of such Third-Party Components are subject to +deviating license terms (“Third-Party License Terms“). A list of such +Third-Party Components and its respective Third-Party License Terms are +available via the files License.third-party.npm.txt and +License.third-party.go.txt. No stipulation in these Terms is intended to impose +further restrictions on your use of such Third-Party Components licensed under +Third-Party License Terms. + +7.2 Gitpod reserves the right to introduce deviating or additional Third-Party +License Terms in the course of modifications of the Software and in case of +updates for the Software to the extent necessary due to additional Third-Party +Components or due to changed Third-Party License Terms. \ No newline at end of file diff --git a/docs/gitpod-self-hosted-free-2020.html b/docs/gitpod-self-hosted-free-2020.html new file mode 100644 index 0000000000..f30fa5994f --- /dev/null +++ b/docs/gitpod-self-hosted-free-2020.html @@ -0,0 +1,271 @@ + + + + + + LicenseDB: gitpod-self-hosted-free-2020 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + gitpod-self-hosted-free-2020 + +
+ +
short_name
+
+ + Gitpod Self-Hosted Free License Terms 2020 + +
+ +
name
+
+ + Gitpod Self-Hosted Free License Terms 2020 + +
+ +
category
+
+ + Proprietary Free + +
+ +
owner
+
+ + Gitpod + +
+ +
homepage_url
+
+ + https://github.com/gitpod-io/gitpod/blob/main/License.enterprise.txt + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-gitpod-self-hosted-free-2020 + +
+ +
faq_url
+
+ + https://github.com/gitpod-io/gitpod/blob/main/License.txt + +
+ +
+
license_text
+
# Gitpod Self-Hosted Free License Terms and
+# Gitpod Enterprise Source Code License
+
+
+### 1 Preamble
+
+1.1 These Software Licensing Terms (“Terms”) provide the terms and conditions
+that govern usage of the Software Gitpod Self-Hosted Free Edition in source and
+binary form (“Software”). The Software is provided by Gitpod GmbH, Am
+Germaniahafen 1, 24143 Kiel (“Gitpod”). By downloading or using to the
+Software, you agree to be bound by the following Terms.
+
+### 2  Scope of Terms
+
+2.1 These Terms apply to the usage of the Software, which is designed to be used
+for business purposes.
+
+2.2 These Terms apply to the binary code and to the source code of the Software,
+unless the header of a source file explicitly refers to a different license.
+
+2.3 These Terms apply unless you have a separate agreement with Gitpod in
+written form that explicitly supersedes these Terms.
+
+### 3 License Fees
+
+3.1 The use of the Software as described in Sec. 2 is free of charge. It is
+however limited to the features that are accessible without a license key and
+may only take place in accordance with these Terms.
+
+3.2 In case you want to use additional features or distribute the Software or
+modifications to it without the restrictions of these Terms, please reach out
+for a license key, which is subject to different legal and commercial terms.
+
+### 4 Granting of Rights
+
+4.1 Permission is hereby granted to obtain a copy of the Software and their
+accompanying documentation to use, reproduce and execute the Software for
+internal purposes in accordance with these Terms and to distribute the
+unmodified software without charging a fee for it.
+
+4.2 Subject to the conditions of these Terms, you may modify the Software,
+including patching it. You agree that Gitpod retains all right, title and
+interest in and to all such modifications and patches (“Modifications”). You may
+only use, reproduce and execute the Modifications for internal purposes in
+accordance with these Terms. You may not distribute Modifications to any third
+party. Nonetheless, you may make such modifications publicly available as fork
+of the repository which hosts the original version of the Software, however only
+under these Terms and only, if accompanied by the complete machine-readable
+source code of the Modifications and of the Software.
+
+4.3 The copyright notices in the Software and this entire statement, including
+the above license grant and these Terms must be included in all copies of the
+Software (in whole or in part). Copyright notices, serial numbers and other
+features aimed at product identification or control may not be removed, altered,
+suppressed or otherwise bypassed under any circumstances. For the avoidance of
+doubt, the software may neither in source nor in binary form be modified in
+order to enable or activate any features of the software that would otherwise
+require a valid license key.
+
+4.4 Any other usage of the Software, in particular modifying, combining it with
+other software and providing it to third parties on a commercial basis, is
+prohibited. This includes any sale, lease, indirect use of the Software to the
+benefit of third parties and its provision as a commercial service, or offering
+it as a part of a commercial service or platform.
+
+4.5 The Software remains the exclusive intellectual property of Gitpod at all
+times. Mandatory rights resulting from applicable copyright law (e.g. related to
+decompilation) remain unaffected.
+
+4.6 Gitpod provides the source code of the Software on a voluntary basis and is
+not obligated to do so. Furthermore, Gitpod is not obligated to provide any
+updates or upgrades it may develop.
+
+4.7 Please consider purchasing a license key (see above Sec. 3) for further
+usage rights and additional features.
+
+### 5 Telemetry
+
+5.1 Gitpod intends to collect certain statistical data on the use of the
+Software on an anonymized basis in the future with a future version of the
+Software. The data will only be used to improve the Software and the data will
+not be sold to third parties. Gitpod will inform about this with the future
+release.
+
+### 6 Warranty and Liability
+
+6.1 THE SOFTWARE IS PROVIDED FREE OF CHARGE ON AN “AS IS” BASIS, WITHOUT
+WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
+NON-INFRINGEMENT.
+
+6.2 IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE
+BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR
+OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OF
+OR OTHER DEALINGS IN THE SOFTWARE.
+
+6.3 THIS LIMITATION OF LIABILITY DOES NOT EXCLUDE MANDATORY LEGAL GROUNDS FOR
+LIABILITY SUCH AS LIABILITY FOR PERSONAL INJURY, GROSS NEGLIGENCE, WILLFUL
+INTENT OR LAWS ON PRODUCT LIABILITY.
+
+### 7 Third-party Components
+
+7.1 The Software contains third-party components including open source software
+(“Third-Party Components“). Parts of such Third-Party Components are subject to
+deviating license terms (“Third-Party License Terms“). A list of such
+Third-Party Components and its respective Third-Party License Terms are
+available via the files License.third-party.npm.txt and
+License.third-party.go.txt. No stipulation in these Terms is intended to impose
+further restrictions on your use of such Third-Party Components licensed under
+Third-Party License Terms.
+
+7.2 Gitpod reserves the right to introduce deviating or additional Third-Party
+License Terms in the course of modifications of the Software and in case of
+updates for the Software to the extent necessary due to additional Third-Party
+Components or due to changed Third-Party License Terms.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/gitpod-self-hosted-free-2020.json b/docs/gitpod-self-hosted-free-2020.json new file mode 100644 index 0000000000..e326ee01d9 --- /dev/null +++ b/docs/gitpod-self-hosted-free-2020.json @@ -0,0 +1,10 @@ +{ + "key": "gitpod-self-hosted-free-2020", + "short_name": "Gitpod Self-Hosted Free License Terms 2020", + "name": "Gitpod Self-Hosted Free License Terms 2020", + "category": "Proprietary Free", + "owner": "Gitpod", + "homepage_url": "https://github.com/gitpod-io/gitpod/blob/main/License.enterprise.txt", + "spdx_license_key": "LicenseRef-scancode-gitpod-self-hosted-free-2020", + "faq_url": "https://github.com/gitpod-io/gitpod/blob/main/License.txt" +} \ No newline at end of file diff --git a/docs/gitpod-self-hosted-free-2020.yml b/docs/gitpod-self-hosted-free-2020.yml new file mode 100644 index 0000000000..57ba31ef5d --- /dev/null +++ b/docs/gitpod-self-hosted-free-2020.yml @@ -0,0 +1,8 @@ +key: gitpod-self-hosted-free-2020 +short_name: Gitpod Self-Hosted Free License Terms 2020 +name: Gitpod Self-Hosted Free License Terms 2020 +category: Proprietary Free +owner: Gitpod +homepage_url: https://github.com/gitpod-io/gitpod/blob/main/License.enterprise.txt +spdx_license_key: LicenseRef-scancode-gitpod-self-hosted-free-2020 +faq_url: https://github.com/gitpod-io/gitpod/blob/main/License.txt diff --git a/docs/gl2ps.LICENSE b/docs/gl2ps.LICENSE index f004812d03..870bd163ae 100644 --- a/docs/gl2ps.LICENSE +++ b/docs/gl2ps.LICENSE @@ -1,3 +1,19 @@ +--- +key: gl2ps +short_name: GL2PS License +name: GL2PS License +category: Copyleft Limited +owner: Christophe Geuzaine +homepage_url: http://www.geuz.org/gl2ps/COPYING.GL2PS +spdx_license_key: GL2PS +text_urls: + - http://www.geuz.org/gl2ps/COPYING.GL2PS +ignorable_copyrights: + - Copyright (c) 2003, Christophe Geuzaine +ignorable_holders: + - Christophe Geuzaine +--- + GL2PS LICENSE Version 2, November 2003 Copyright (C) 2003, Christophe Geuzaine diff --git a/docs/gl2ps.html b/docs/gl2ps.html index 5c3bda6da6..010925fe6b 100644 --- a/docs/gl2ps.html +++ b/docs/gl2ps.html @@ -173,7 +173,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gl2ps.json b/docs/gl2ps.json index 171f8c16e4..55651f669d 100644 --- a/docs/gl2ps.json +++ b/docs/gl2ps.json @@ -1 +1,18 @@ -{"key": "gl2ps", "short_name": "GL2PS License", "name": "GL2PS License", "category": "Copyleft Limited", "owner": "Christophe Geuzaine", "homepage_url": "http://www.geuz.org/gl2ps/COPYING.GL2PS", "spdx_license_key": "GL2PS", "text_urls": ["http://www.geuz.org/gl2ps/COPYING.GL2PS"], "ignorable_copyrights": ["Copyright (c) 2003, Christophe Geuzaine"], "ignorable_holders": ["Christophe Geuzaine"]} \ No newline at end of file +{ + "key": "gl2ps", + "short_name": "GL2PS License", + "name": "GL2PS License", + "category": "Copyleft Limited", + "owner": "Christophe Geuzaine", + "homepage_url": "http://www.geuz.org/gl2ps/COPYING.GL2PS", + "spdx_license_key": "GL2PS", + "text_urls": [ + "http://www.geuz.org/gl2ps/COPYING.GL2PS" + ], + "ignorable_copyrights": [ + "Copyright (c) 2003, Christophe Geuzaine" + ], + "ignorable_holders": [ + "Christophe Geuzaine" + ] +} \ No newline at end of file diff --git a/docs/gladman-older-rijndael-code-use.LICENSE b/docs/gladman-older-rijndael-code-use.LICENSE index 77e642fcae..ce0a29dae1 100644 --- a/docs/gladman-older-rijndael-code-use.LICENSE +++ b/docs/gladman-older-rijndael-code-use.LICENSE @@ -1,3 +1,15 @@ +--- +key: gladman-older-rijndael-code-use +short_name: Gladman Older Rigndael Code Use +name: Gladman Older Rigndael Code Use +category: Permissive +owner: Brian Gladman +homepage_url: http://ccgi.gladman.plus.com/oldsite/cryptography_technology/rijndael/index.php +spdx_license_key: LicenseRef-scancode-gladman-older-rijndael-code +other_spdx_license_keys: + - LicenseRef-scancode-gladman-older-rijndael-code-use +--- + Code Use I am happy for this code to be used without payment provided that I don't carry diff --git a/docs/gladman-older-rijndael-code-use.html b/docs/gladman-older-rijndael-code-use.html index 12a3b183f3..a439569986 100644 --- a/docs/gladman-older-rijndael-code-use.html +++ b/docs/gladman-older-rijndael-code-use.html @@ -145,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gladman-older-rijndael-code-use.json b/docs/gladman-older-rijndael-code-use.json index ad3767beb5..63b765aa45 100644 --- a/docs/gladman-older-rijndael-code-use.json +++ b/docs/gladman-older-rijndael-code-use.json @@ -1 +1,12 @@ -{"key": "gladman-older-rijndael-code-use", "short_name": "Gladman Older Rigndael Code Use", "name": "Gladman Older Rigndael Code Use", "category": "Permissive", "owner": "Brian Gladman", "homepage_url": "http://ccgi.gladman.plus.com/oldsite/cryptography_technology/rijndael/index.php", "spdx_license_key": "LicenseRef-scancode-gladman-older-rijndael-code", "other_spdx_license_keys": ["LicenseRef-scancode-gladman-older-rijndael-code-use"]} \ No newline at end of file +{ + "key": "gladman-older-rijndael-code-use", + "short_name": "Gladman Older Rigndael Code Use", + "name": "Gladman Older Rigndael Code Use", + "category": "Permissive", + "owner": "Brian Gladman", + "homepage_url": "http://ccgi.gladman.plus.com/oldsite/cryptography_technology/rijndael/index.php", + "spdx_license_key": "LicenseRef-scancode-gladman-older-rijndael-code", + "other_spdx_license_keys": [ + "LicenseRef-scancode-gladman-older-rijndael-code-use" + ] +} \ No newline at end of file diff --git a/docs/glide.LICENSE b/docs/glide.LICENSE index d5973502f4..4bc5efa2eb 100644 --- a/docs/glide.LICENSE +++ b/docs/glide.LICENSE @@ -1,3 +1,24 @@ +--- +key: glide +short_name: 3DFX GLIDE +name: 3DFX GLIDE Source Code General Public License +category: Copyleft +owner: NVIDIA +homepage_url: http://www.users.on.net/~triforce/glidexp/COPYING.txt +spdx_license_key: Glide +text_urls: + - http://www.users.on.net/~triforce/glidexp/COPYING.txt +ignorable_copyrights: + - COPYRIGHT 3DFX INTERACTIVE, INC. 1999 + - copyright notice (3dfx Interactive, Inc. 1999) +ignorable_holders: + - 3DFX INTERACTIVE, INC. + - 3dfx Interactive, Inc. +ignorable_emails: + - INFO@3DFX.COM + - info@3dfx.com +--- + 3DFX GLIDE Source Code General Public License 1. PREAMBLE diff --git a/docs/glide.html b/docs/glide.html index cb2c4401d0..ec8d2bd26c 100644 --- a/docs/glide.html +++ b/docs/glide.html @@ -414,7 +414,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/glide.json b/docs/glide.json index 8900b73101..6444f3d5e0 100644 --- a/docs/glide.json +++ b/docs/glide.json @@ -1 +1,24 @@ -{"key": "glide", "short_name": "3DFX GLIDE", "name": "3DFX GLIDE Source Code General Public License", "category": "Copyleft", "owner": "NVIDIA", "homepage_url": "http://www.users.on.net/~triforce/glidexp/COPYING.txt", "spdx_license_key": "Glide", "text_urls": ["http://www.users.on.net/~triforce/glidexp/COPYING.txt"], "ignorable_copyrights": ["COPYRIGHT 3DFX INTERACTIVE, INC. 1999", "copyright notice (3dfx Interactive, Inc. 1999)"], "ignorable_holders": ["3DFX INTERACTIVE, INC.", "3dfx Interactive, Inc."], "ignorable_emails": ["INFO@3DFX.COM", "info@3dfx.com"]} \ No newline at end of file +{ + "key": "glide", + "short_name": "3DFX GLIDE", + "name": "3DFX GLIDE Source Code General Public License", + "category": "Copyleft", + "owner": "NVIDIA", + "homepage_url": "http://www.users.on.net/~triforce/glidexp/COPYING.txt", + "spdx_license_key": "Glide", + "text_urls": [ + "http://www.users.on.net/~triforce/glidexp/COPYING.txt" + ], + "ignorable_copyrights": [ + "COPYRIGHT 3DFX INTERACTIVE, INC. 1999", + "copyright notice (3dfx Interactive, Inc. 1999)" + ], + "ignorable_holders": [ + "3DFX INTERACTIVE, INC.", + "3dfx Interactive, Inc." + ], + "ignorable_emails": [ + "INFO@3DFX.COM", + "info@3dfx.com" + ] +} \ No newline at end of file diff --git a/docs/glulxe.LICENSE b/docs/glulxe.LICENSE index 4c359beba1..14ed456b15 100644 --- a/docs/glulxe.LICENSE +++ b/docs/glulxe.LICENSE @@ -1,3 +1,13 @@ +--- +key: glulxe +short_name: Glulxe License +name: Glulxe License +category: Permissive +owner: Andrew Plotkin +homepage_url: https://fedoraproject.org/wiki/Licensing/Glulxe +spdx_license_key: Glulxe +--- + You may copy and distribute it freely, by any means and under any conditions, as long as the code and documentation is not changed. You may also incorporate this code into your own program and distribute that, or modify this code and diff --git a/docs/glulxe.html b/docs/glulxe.html index 94651eb815..0da8510a4f 100644 --- a/docs/glulxe.html +++ b/docs/glulxe.html @@ -131,7 +131,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/glulxe.json b/docs/glulxe.json index 3577ef48d1..67a0308091 100644 --- a/docs/glulxe.json +++ b/docs/glulxe.json @@ -1 +1,9 @@ -{"key": "glulxe", "short_name": "Glulxe License", "name": "Glulxe License", "category": "Permissive", "owner": "Andrew Plotkin", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Glulxe", "spdx_license_key": "Glulxe"} \ No newline at end of file +{ + "key": "glulxe", + "short_name": "Glulxe License", + "name": "Glulxe License", + "category": "Permissive", + "owner": "Andrew Plotkin", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Glulxe", + "spdx_license_key": "Glulxe" +} \ No newline at end of file diff --git a/docs/glut.LICENSE b/docs/glut.LICENSE index bfeb4a6a94..579649f42e 100644 --- a/docs/glut.LICENSE +++ b/docs/glut.LICENSE @@ -1,3 +1,12 @@ +--- +key: glut +short_name: GLUT License +name: OpenGL Utility Toolkit (GLUT) License +category: Permissive +owner: OpenGL +spdx_license_key: LicenseRef-scancode-glut +--- + This program is freely distributable without licensing fees and is provided without guarantee or warrantee expressed or implied. This -program is -not- in the public domain. +program is -not- in the public domain. \ No newline at end of file diff --git a/docs/glut.html b/docs/glut.html index c6308548c4..b9d001bcc3 100644 --- a/docs/glut.html +++ b/docs/glut.html @@ -110,8 +110,7 @@
license_text
This program is freely distributable without licensing fees and is
 provided without guarantee or warrantee expressed or  implied. This
-program is -not- in the public domain.
-
+program is -not- in the public domain.
@@ -123,7 +122,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/glut.json b/docs/glut.json index fe599ed02d..0f3549d529 100644 --- a/docs/glut.json +++ b/docs/glut.json @@ -1 +1,8 @@ -{"key": "glut", "short_name": "GLUT License", "name": "OpenGL Utility Toolkit (GLUT) License", "category": "Permissive", "owner": "OpenGL", "spdx_license_key": "LicenseRef-scancode-glut"} \ No newline at end of file +{ + "key": "glut", + "short_name": "GLUT License", + "name": "OpenGL Utility Toolkit (GLUT) License", + "category": "Permissive", + "owner": "OpenGL", + "spdx_license_key": "LicenseRef-scancode-glut" +} \ No newline at end of file diff --git a/docs/glwtpl.LICENSE b/docs/glwtpl.LICENSE index 1081bb9873..e00e0d2886 100644 --- a/docs/glwtpl.LICENSE +++ b/docs/glwtpl.LICENSE @@ -1,3 +1,19 @@ +--- +key: glwtpl +short_name: GLWTPL +name: Good Luck With That Public License +category: Permissive +owner: Unspecified +homepage_url: https://github.com/me-shaon/GLWTPL/blob/master/LICENSE +spdx_license_key: GLWTPL +other_urls: + - https://github.com/me-shaon/GLWTPL/commit/da5f6bc734095efbacb442c0b31e33a65b9d6e85 +ignorable_copyrights: + - Copyright (c) Everyone +ignorable_holders: + - Everyone +--- + GLWT(Good Luck With That) Public License Copyright (c) Everyone, except Author diff --git a/docs/glwtpl.html b/docs/glwtpl.html index 1c601f23dc..7e90435f79 100644 --- a/docs/glwtpl.html +++ b/docs/glwtpl.html @@ -177,7 +177,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/glwtpl.json b/docs/glwtpl.json index a34377cc1b..c00f59d1fa 100644 --- a/docs/glwtpl.json +++ b/docs/glwtpl.json @@ -1 +1,18 @@ -{"key": "glwtpl", "short_name": "GLWTPL", "name": "Good Luck With That Public License", "category": "Permissive", "owner": "Unspecified", "homepage_url": "https://github.com/me-shaon/GLWTPL/blob/master/LICENSE", "spdx_license_key": "GLWTPL", "other_urls": ["https://github.com/me-shaon/GLWTPL/commit/da5f6bc734095efbacb442c0b31e33a65b9d6e85"], "ignorable_copyrights": ["Copyright (c) Everyone"], "ignorable_holders": ["Everyone"]} \ No newline at end of file +{ + "key": "glwtpl", + "short_name": "GLWTPL", + "name": "Good Luck With That Public License", + "category": "Permissive", + "owner": "Unspecified", + "homepage_url": "https://github.com/me-shaon/GLWTPL/blob/master/LICENSE", + "spdx_license_key": "GLWTPL", + "other_urls": [ + "https://github.com/me-shaon/GLWTPL/commit/da5f6bc734095efbacb442c0b31e33a65b9d6e85" + ], + "ignorable_copyrights": [ + "Copyright (c) Everyone" + ], + "ignorable_holders": [ + "Everyone" + ] +} \ No newline at end of file diff --git a/docs/gnu-emacs-gpl-1988.LICENSE b/docs/gnu-emacs-gpl-1988.LICENSE index 26fab45cfa..bcdfe3a8a4 100644 --- a/docs/gnu-emacs-gpl-1988.LICENSE +++ b/docs/gnu-emacs-gpl-1988.LICENSE @@ -1,3 +1,21 @@ +--- +key: gnu-emacs-gpl-1988 +short_name: GNU emacs General Public License 1988 +name: GNU emacs General Public License 1988 +category: Copyleft +owner: Richard Stallman +homepage_url: https://www.free-soft.org/gpl_history/emacs_gpl.html +spdx_license_key: LicenseRef-scancode-gnu-emacs-gpl-1988 +text_urls: + - https://www.cs.bham.ac.uk/research/projects/poplog/emacs/COPYING +ignorable_copyrights: + - Copyright (c) 1985, 1987, 1988 Richard M. Stallman + - Copyright (c) 1988 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. + - Richard M. Stallman +--- + GNU EMACS GENERAL PUBLIC LICENSE (Clarified 11 Feb 1988) diff --git a/docs/gnu-emacs-gpl-1988.html b/docs/gnu-emacs-gpl-1988.html index 50fdf300e2..aa5ce32069 100644 --- a/docs/gnu-emacs-gpl-1988.html +++ b/docs/gnu-emacs-gpl-1988.html @@ -299,7 +299,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gnu-emacs-gpl-1988.json b/docs/gnu-emacs-gpl-1988.json index 1559719fe1..88b5c4a2bf 100644 --- a/docs/gnu-emacs-gpl-1988.json +++ b/docs/gnu-emacs-gpl-1988.json @@ -1 +1,20 @@ -{"key": "gnu-emacs-gpl-1988", "short_name": "GNU emacs General Public License 1988", "name": "GNU emacs General Public License 1988", "category": "Copyleft", "owner": "Richard Stallman", "homepage_url": "https://www.free-soft.org/gpl_history/emacs_gpl.html", "spdx_license_key": "LicenseRef-scancode-gnu-emacs-gpl-1988", "text_urls": ["https://www.cs.bham.ac.uk/research/projects/poplog/emacs/COPYING"], "ignorable_copyrights": ["Copyright (c) 1985, 1987, 1988 Richard M. Stallman", "Copyright (c) 1988 Free Software Foundation, Inc."], "ignorable_holders": ["Free Software Foundation, Inc.", "Richard M. Stallman"]} \ No newline at end of file +{ + "key": "gnu-emacs-gpl-1988", + "short_name": "GNU emacs General Public License 1988", + "name": "GNU emacs General Public License 1988", + "category": "Copyleft", + "owner": "Richard Stallman", + "homepage_url": "https://www.free-soft.org/gpl_history/emacs_gpl.html", + "spdx_license_key": "LicenseRef-scancode-gnu-emacs-gpl-1988", + "text_urls": [ + "https://www.cs.bham.ac.uk/research/projects/poplog/emacs/COPYING" + ], + "ignorable_copyrights": [ + "Copyright (c) 1985, 1987, 1988 Richard M. Stallman", + "Copyright (c) 1988 Free Software Foundation, Inc." + ], + "ignorable_holders": [ + "Free Software Foundation, Inc.", + "Richard M. Stallman" + ] +} \ No newline at end of file diff --git a/docs/gnu-javamail-exception.LICENSE b/docs/gnu-javamail-exception.LICENSE index e2e6e6888e..440e8e1165 100644 --- a/docs/gnu-javamail-exception.LICENSE +++ b/docs/gnu-javamail-exception.LICENSE @@ -1,3 +1,23 @@ +--- +key: gnu-javamail-exception +short_name: GNU JavaMail exception to GPL 2.0 or later +name: GNU JavaMail exception to GPL 2.0 or later +category: Copyleft Limited +owner: GNU Project +homepage_url: https://www.gnu.org/software/classpathx/javamail/javamail.html +is_exception: yes +spdx_license_key: gnu-javamail-exception +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://www.gnu.org/software/classpathx/javamail/javamail.html +standard_notice: | + As a special exception, if you link this library with other files to + produce an executable, this library does not by itself cause the resulting + executable to be covered by the GNU General Public License. This exception + does not however invalidate any other reasons why the executable file might + be covered by the GNU General Public License. +--- + As a special exception, if you link this library with other files to produce an executable, this library does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however diff --git a/docs/gnu-javamail-exception.html b/docs/gnu-javamail-exception.html index ed87c9c04e..5ad2c3e694 100644 --- a/docs/gnu-javamail-exception.html +++ b/docs/gnu-javamail-exception.html @@ -159,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gnu-javamail-exception.json b/docs/gnu-javamail-exception.json index 8dca79f71e..ee893ec406 100644 --- a/docs/gnu-javamail-exception.json +++ b/docs/gnu-javamail-exception.json @@ -1 +1,15 @@ -{"key": "gnu-javamail-exception", "short_name": "GNU JavaMail exception to GPL 2.0 or later", "name": "GNU JavaMail exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "GNU Project", "homepage_url": "https://www.gnu.org/software/classpathx/javamail/javamail.html", "is_exception": true, "spdx_license_key": "gnu-javamail-exception", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt", "http://www.gnu.org/software/classpathx/javamail/javamail.html"], "standard_notice": "As a special exception, if you link this library with other files to\nproduce an executable, this library does not by itself cause the resulting\nexecutable to be covered by the GNU General Public License. This exception\ndoes not however invalidate any other reasons why the executable file might\nbe covered by the GNU General Public License.\n"} \ No newline at end of file +{ + "key": "gnu-javamail-exception", + "short_name": "GNU JavaMail exception to GPL 2.0 or later", + "name": "GNU JavaMail exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "GNU Project", + "homepage_url": "https://www.gnu.org/software/classpathx/javamail/javamail.html", + "is_exception": true, + "spdx_license_key": "gnu-javamail-exception", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt", + "http://www.gnu.org/software/classpathx/javamail/javamail.html" + ], + "standard_notice": "As a special exception, if you link this library with other files to\nproduce an executable, this library does not by itself cause the resulting\nexecutable to be covered by the GNU General Public License. This exception\ndoes not however invalidate any other reasons why the executable file might\nbe covered by the GNU General Public License.\n" +} \ No newline at end of file diff --git a/docs/gnuplot.LICENSE b/docs/gnuplot.LICENSE index 6784a1acba..ed538a470e 100644 --- a/docs/gnuplot.LICENSE +++ b/docs/gnuplot.LICENSE @@ -1,3 +1,15 @@ +--- +key: gnuplot +short_name: gnuplot License +name: gnuplot License +category: Copyleft Limited +owner: GNU Project +homepage_url: https://fedoraproject.org/wiki/Licensing:Gnuplot?rd=Licensing/Gnuplot +spdx_license_key: gnuplot +other_urls: + - https://fedoraproject.org/wiki/Licensing/Gnuplot +--- + Permission to use, copy, and distribute this software and its documentation for any purpose with or without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and diff --git a/docs/gnuplot.html b/docs/gnuplot.html index 5ca130d0ae..d9a98caa3f 100644 --- a/docs/gnuplot.html +++ b/docs/gnuplot.html @@ -161,7 +161,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gnuplot.json b/docs/gnuplot.json index 62267d9d5c..ad59f7d0c4 100644 --- a/docs/gnuplot.json +++ b/docs/gnuplot.json @@ -1 +1,12 @@ -{"key": "gnuplot", "short_name": "gnuplot License", "name": "gnuplot License", "category": "Copyleft Limited", "owner": "GNU Project", "homepage_url": "https://fedoraproject.org/wiki/Licensing:Gnuplot?rd=Licensing/Gnuplot", "spdx_license_key": "gnuplot", "other_urls": ["https://fedoraproject.org/wiki/Licensing/Gnuplot"]} \ No newline at end of file +{ + "key": "gnuplot", + "short_name": "gnuplot License", + "name": "gnuplot License", + "category": "Copyleft Limited", + "owner": "GNU Project", + "homepage_url": "https://fedoraproject.org/wiki/Licensing:Gnuplot?rd=Licensing/Gnuplot", + "spdx_license_key": "gnuplot", + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/Gnuplot" + ] +} \ No newline at end of file diff --git a/docs/goahead.LICENSE b/docs/goahead.LICENSE index fbee7cc3b0..ddc87d361f 100644 --- a/docs/goahead.LICENSE +++ b/docs/goahead.LICENSE @@ -1,3 +1,24 @@ +--- +key: goahead +short_name: GoAhead License +name: GoAhead License +category: Proprietary Free +owner: Oracle Corporation +homepage_url: https://github.com/socoola/yhrouter/blob/master/user/goahead/license.txt +spdx_license_key: LicenseRef-scancode-goahead +text_urls: + - https://github.com/socoola/yhrouter/blob/master/user/goahead/license.txt +other_urls: + - https://embedthis.com/goahead/ + - https://embedthis.com/goahead/licensing.html +ignorable_copyrights: + - Copyright (c) 20xx GoAhead Software, Inc. +ignorable_holders: + - 20xx GoAhead Software, Inc. +ignorable_emails: + - info@goahead.com +--- + License Agreement THIS LICENSE ALLOWS ONLY THE LIMITED USE OF GO AHEAD SOFTWARE, diff --git a/docs/goahead.html b/docs/goahead.html index e350c4cabb..bfe08ff01a 100644 --- a/docs/goahead.html +++ b/docs/goahead.html @@ -446,7 +446,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/goahead.json b/docs/goahead.json index 91f2ef2e42..7dc5d08491 100644 --- a/docs/goahead.json +++ b/docs/goahead.json @@ -1 +1,25 @@ -{"key": "goahead", "short_name": "GoAhead License", "name": "GoAhead License", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "https://github.com/socoola/yhrouter/blob/master/user/goahead/license.txt", "spdx_license_key": "LicenseRef-scancode-goahead", "text_urls": ["https://github.com/socoola/yhrouter/blob/master/user/goahead/license.txt"], "other_urls": ["https://embedthis.com/goahead/", "https://embedthis.com/goahead/licensing.html"], "ignorable_copyrights": ["Copyright (c) 20xx GoAhead Software, Inc."], "ignorable_holders": ["20xx GoAhead Software, Inc."], "ignorable_emails": ["info@goahead.com"]} \ No newline at end of file +{ + "key": "goahead", + "short_name": "GoAhead License", + "name": "GoAhead License", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "https://github.com/socoola/yhrouter/blob/master/user/goahead/license.txt", + "spdx_license_key": "LicenseRef-scancode-goahead", + "text_urls": [ + "https://github.com/socoola/yhrouter/blob/master/user/goahead/license.txt" + ], + "other_urls": [ + "https://embedthis.com/goahead/", + "https://embedthis.com/goahead/licensing.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 20xx GoAhead Software, Inc." + ], + "ignorable_holders": [ + "20xx GoAhead Software, Inc." + ], + "ignorable_emails": [ + "info@goahead.com" + ] +} \ No newline at end of file diff --git a/docs/good-boy.LICENSE b/docs/good-boy.LICENSE index d12957e237..27c9c298b2 100644 --- a/docs/good-boy.LICENSE +++ b/docs/good-boy.LICENSE @@ -1,3 +1,15 @@ +--- +key: good-boy +short_name: Good Boy License +name: Good Boy License +category: Permissive +owner: Icons8 +homepage_url: https://icons8.com/good-boy-license +spdx_license_key: LicenseRef-scancode-good-boy +text_urls: + - https://github.com/icons8/flat-color-icons/blob/master/LICENSE.md +--- + Please do whatever your mom would approve of: ##Permitted Use diff --git a/docs/good-boy.html b/docs/good-boy.html index fce92e49cc..9273303db5 100644 --- a/docs/good-boy.html +++ b/docs/good-boy.html @@ -148,7 +148,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/good-boy.json b/docs/good-boy.json index 7324d26b7b..74af251f8d 100644 --- a/docs/good-boy.json +++ b/docs/good-boy.json @@ -1 +1,12 @@ -{"key": "good-boy", "short_name": "Good Boy License", "name": "Good Boy License", "category": "Permissive", "owner": "Icons8", "homepage_url": "https://icons8.com/good-boy-license", "spdx_license_key": "LicenseRef-scancode-good-boy", "text_urls": ["https://github.com/icons8/flat-color-icons/blob/master/LICENSE.md"]} \ No newline at end of file +{ + "key": "good-boy", + "short_name": "Good Boy License", + "name": "Good Boy License", + "category": "Permissive", + "owner": "Icons8", + "homepage_url": "https://icons8.com/good-boy-license", + "spdx_license_key": "LicenseRef-scancode-good-boy", + "text_urls": [ + "https://github.com/icons8/flat-color-icons/blob/master/LICENSE.md" + ] +} \ No newline at end of file diff --git a/docs/google-analytics-tos-2015.LICENSE b/docs/google-analytics-tos-2015.LICENSE index 50b8b670c2..f2dad7c851 100644 --- a/docs/google-analytics-tos-2015.LICENSE +++ b/docs/google-analytics-tos-2015.LICENSE @@ -1,3 +1,22 @@ +--- +key: google-analytics-tos-2015 +short_name: Google Analytics Terms of Service 2015 +name: Google Analytics Terms of Service 2015 +category: Proprietary Free +owner: Google +homepage_url: http://www.google.com/analytics/terms/us.html +spdx_license_key: LicenseRef-scancode-google-analytics-tos-2015 +other_urls: + - http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409 + - http://www.google.com/analytics + - http://www.google.com/privacy.html +ignorable_urls: + - http://www.google.com/analytics + - http://www.google.com/analytics/policies + - http://www.google.com/policies/privacy/partners + - http://www.google.com/privacy.html +--- + Google Analytics Terms of Service These Google Analytics Terms of Service (this "Agreement") are entered into by @@ -338,4 +357,4 @@ successors and assigns of the parties hereto. The following sections of this Agreement will survive any termination thereof: 1, 4, 5, 6 (except the last two sentences), 7, 8, 9, 10, 11, 12, 14, and 16. -Last Updated: 7/30/2015 +Last Updated: 7/30/2015 \ No newline at end of file diff --git a/docs/google-analytics-tos-2015.html b/docs/google-analytics-tos-2015.html index 2133eb97d5..dd77a1e6e1 100644 --- a/docs/google-analytics-tos-2015.html +++ b/docs/google-analytics-tos-2015.html @@ -473,8 +473,7 @@ Agreement will survive any termination thereof: 1, 4, 5, 6 (except the last two sentences), 7, 8, 9, 10, 11, 12, 14, and 16. -Last Updated: 7/30/2015 - +Last Updated: 7/30/2015
@@ -486,7 +485,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-analytics-tos-2015.json b/docs/google-analytics-tos-2015.json index 53b672d6ce..b51cad5d24 100644 --- a/docs/google-analytics-tos-2015.json +++ b/docs/google-analytics-tos-2015.json @@ -1 +1,20 @@ -{"key": "google-analytics-tos-2015", "short_name": "Google Analytics Terms of Service 2015", "name": "Google Analytics Terms of Service 2015", "category": "Proprietary Free", "owner": "Google", "homepage_url": "http://www.google.com/analytics/terms/us.html", "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2015", "other_urls": ["http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409", "http://www.google.com/analytics", "http://www.google.com/privacy.html"], "ignorable_urls": ["http://www.google.com/analytics", "http://www.google.com/analytics/policies", "http://www.google.com/policies/privacy/partners", "http://www.google.com/privacy.html"]} \ No newline at end of file +{ + "key": "google-analytics-tos-2015", + "short_name": "Google Analytics Terms of Service 2015", + "name": "Google Analytics Terms of Service 2015", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "http://www.google.com/analytics/terms/us.html", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2015", + "other_urls": [ + "http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409", + "http://www.google.com/analytics", + "http://www.google.com/privacy.html" + ], + "ignorable_urls": [ + "http://www.google.com/analytics", + "http://www.google.com/analytics/policies", + "http://www.google.com/policies/privacy/partners", + "http://www.google.com/privacy.html" + ] +} \ No newline at end of file diff --git a/docs/google-analytics-tos-2016.LICENSE b/docs/google-analytics-tos-2016.LICENSE index ea17842cd1..bc1514ac52 100644 --- a/docs/google-analytics-tos-2016.LICENSE +++ b/docs/google-analytics-tos-2016.LICENSE @@ -1,3 +1,24 @@ +--- +key: google-analytics-tos-2016 +short_name: Google Analytics Terms of Service 2016 +name: Google Analytics Terms of Service 2016 +category: Proprietary Free +owner: Google +homepage_url: https://www.google.com/analytics/terms/us.html +spdx_license_key: LicenseRef-scancode-google-analytics-tos-2016 +other_urls: + - http://www.google.com/analytics + - http://www.google.com/privacy.html + - https://support.google.com/analytics/#topic=3544906 +ignorable_urls: + - http://www.google.com/analytics + - http://www.google.com/analytics/ + - http://www.google.com/analytics/policies + - http://www.google.com/policies/privacy/partners + - https://360suite.google.com/terms + - https://www.google.com/policies/privacy +--- + Google Analytics Terms of Service These Google Analytics Terms of Service (this "Agreement") are entered into by Google Inc. ("Google") and the entity executing this Agreement ("You"). This Agreement governs Your use of the standard Google Analytics (the "Service"). BY CLICKING THE "I ACCEPT" BUTTON, COMPLETING THE REGISTRATION PROCESS, OR USING THE SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE REVIEWED AND ACCEPT THIS AGREEMENT AND ARE AUTHORIZED TO ACT ON BEHALF OF, AND BIND TO THIS AGREEMENT, THE OWNER OF THIS ACCOUNT. In consideration of the foregoing, the parties agree as follows: diff --git a/docs/google-analytics-tos-2016.html b/docs/google-analytics-tos-2016.html index c4019f9295..9da262bce4 100644 --- a/docs/google-analytics-tos-2016.html +++ b/docs/google-analytics-tos-2016.html @@ -233,7 +233,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-analytics-tos-2016.json b/docs/google-analytics-tos-2016.json index 7645c684c7..114df7b865 100644 --- a/docs/google-analytics-tos-2016.json +++ b/docs/google-analytics-tos-2016.json @@ -1 +1,22 @@ -{"key": "google-analytics-tos-2016", "short_name": "Google Analytics Terms of Service 2016", "name": "Google Analytics Terms of Service 2016", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://www.google.com/analytics/terms/us.html", "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2016", "other_urls": ["http://www.google.com/analytics", "http://www.google.com/privacy.html", "https://support.google.com/analytics/#topic=3544906"], "ignorable_urls": ["http://www.google.com/analytics", "http://www.google.com/analytics/", "http://www.google.com/analytics/policies", "http://www.google.com/policies/privacy/partners", "https://360suite.google.com/terms", "https://www.google.com/policies/privacy"]} \ No newline at end of file +{ + "key": "google-analytics-tos-2016", + "short_name": "Google Analytics Terms of Service 2016", + "name": "Google Analytics Terms of Service 2016", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://www.google.com/analytics/terms/us.html", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2016", + "other_urls": [ + "http://www.google.com/analytics", + "http://www.google.com/privacy.html", + "https://support.google.com/analytics/#topic=3544906" + ], + "ignorable_urls": [ + "http://www.google.com/analytics", + "http://www.google.com/analytics/", + "http://www.google.com/analytics/policies", + "http://www.google.com/policies/privacy/partners", + "https://360suite.google.com/terms", + "https://www.google.com/policies/privacy" + ] +} \ No newline at end of file diff --git a/docs/google-analytics-tos-2019.LICENSE b/docs/google-analytics-tos-2019.LICENSE index ec16fe96f0..5dc6058adb 100644 --- a/docs/google-analytics-tos-2019.LICENSE +++ b/docs/google-analytics-tos-2019.LICENSE @@ -1,3 +1,24 @@ +--- +key: google-analytics-tos-2019 +short_name: Google Analytics Terms of Service 2019 +name: Google Analytics Terms of Service 2019 +category: Proprietary Free +owner: Google +homepage_url: https://marketingplatform.google.com/about/analytics/terms/us/ +spdx_license_key: LicenseRef-scancode-google-analytics-tos-2019 +other_urls: + - http://www.google.com/analytics + - http://www.google.com/privacy.html + - https://support.google.com/analytics/#topic=3544906 +ignorable_urls: + - http://www.google.com/analytics + - http://www.google.com/analytics/policies + - http://www.google.com/analytics/policies/ + - http://www.google.com/policies/privacy/partners + - https://support.google.com/marketingplatform/answer/9047313 + - https://www.google.com/analytics/terms + - https://www.google.com/policies/privacy +--- Google Analytics Terms of Service @@ -116,4 +137,4 @@ If You link a Property to Firebase (“Firebase Linkage”) as part of using the B. The following sentence is added to the end of Section 7 as follows: a. If You link a Property to a Firebase project (“Firebase Linkage”) (i) certain data from Your Property, including Customer Data, may be made accessible within or to any other entity or personnel according to permissions set in Firebase and (ii) that Property may have certain Service settings modified by authorized personnel of Firebase (notwithstanding the settings You may have designated for that Property within the Service). -Last Updated June 17, 2019 +Last Updated June 17, 2019 \ No newline at end of file diff --git a/docs/google-analytics-tos-2019.html b/docs/google-analytics-tos-2019.html index 67e0e74b0a..04a9ce69a3 100644 --- a/docs/google-analytics-tos-2019.html +++ b/docs/google-analytics-tos-2019.html @@ -133,8 +133,7 @@
license_text
-

-Google Analytics Terms of Service
+    
Google Analytics Terms of Service
 
 These Google Analytics Terms of Service (this "Agreement") are entered into by Google LLC ("Google") and the entity executing this Agreement ("You"). This Agreement governs Your use of the standard Google Analytics (the "Service"). BY CLICKING THE "I ACCEPT" BUTTON, COMPLETING THE REGISTRATION PROCESS, OR USING THE SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE REVIEWED AND ACCEPT THIS AGREEMENT AND ARE AUTHORIZED TO ACT ON BEHALF OF, AND BIND TO THIS AGREEMENT, THE OWNER OF THIS ACCOUNT. In consideration of the foregoing, the parties agree as follows:
 
@@ -251,8 +250,7 @@
     B. The following sentence is added to the end of Section 7 as follows:
         a. If You link a Property to a Firebase project (“Firebase Linkage”) (i) certain data from Your Property, including Customer Data, may be made accessible within or to any other entity or personnel according to permissions set in Firebase and (ii) that Property may have certain Service settings modified by authorized personnel of Firebase (notwithstanding the settings You may have designated for that Property within the Service).
 
-Last Updated June 17, 2019
-
+Last Updated June 17, 2019
@@ -264,7 +262,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-analytics-tos-2019.json b/docs/google-analytics-tos-2019.json index 3f9412a05e..90b6b38ad7 100644 --- a/docs/google-analytics-tos-2019.json +++ b/docs/google-analytics-tos-2019.json @@ -1 +1,23 @@ -{"key": "google-analytics-tos-2019", "short_name": "Google Analytics Terms of Service 2019", "name": "Google Analytics Terms of Service 2019", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://marketingplatform.google.com/about/analytics/terms/us/", "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2019", "other_urls": ["http://www.google.com/analytics", "http://www.google.com/privacy.html", "https://support.google.com/analytics/#topic=3544906"], "ignorable_urls": ["http://www.google.com/analytics", "http://www.google.com/analytics/policies", "http://www.google.com/analytics/policies/", "http://www.google.com/policies/privacy/partners", "https://support.google.com/marketingplatform/answer/9047313", "https://www.google.com/analytics/terms", "https://www.google.com/policies/privacy"]} \ No newline at end of file +{ + "key": "google-analytics-tos-2019", + "short_name": "Google Analytics Terms of Service 2019", + "name": "Google Analytics Terms of Service 2019", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://marketingplatform.google.com/about/analytics/terms/us/", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2019", + "other_urls": [ + "http://www.google.com/analytics", + "http://www.google.com/privacy.html", + "https://support.google.com/analytics/#topic=3544906" + ], + "ignorable_urls": [ + "http://www.google.com/analytics", + "http://www.google.com/analytics/policies", + "http://www.google.com/analytics/policies/", + "http://www.google.com/policies/privacy/partners", + "https://support.google.com/marketingplatform/answer/9047313", + "https://www.google.com/analytics/terms", + "https://www.google.com/policies/privacy" + ] +} \ No newline at end of file diff --git a/docs/google-analytics-tos.LICENSE b/docs/google-analytics-tos.LICENSE index 087d60bc8e..e0f869c888 100644 --- a/docs/google-analytics-tos.LICENSE +++ b/docs/google-analytics-tos.LICENSE @@ -1,3 +1,23 @@ +--- +key: google-analytics-tos +short_name: Google Analytics Terms of Service +name: Google Analytics Terms of Service +category: Proprietary Free +owner: Google +homepage_url: http://www.google.com/analytics/terms/us.html +spdx_license_key: LicenseRef-scancode-google-analytics-tos +text_urls: + - http://www.google.com/analytics/terms/us.html +other_urls: + - http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409 + - http://www.google.com/analytics + - http://www.google.com/privacy.html +ignorable_urls: + - http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409 + - http://www.google.com/analytics + - http://www.google.com/privacy.html +--- + GOOGLE ANALYTICS TERMS OF SERVICE These Google Analytics Terms of Service (this "Agreement") are entered into by Google Inc. ("Google") and the entity executing this Agreement ("You"). This Agreement governs Your use of the standard Google Analytics (the "Service"). BY CLICKING THE "I ACCEPT" BUTTON, COMPLETING THE REGISTRATION PROCESS, OR USING THE SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE REVIEWED AND ACCEPT THIS AGREEMENT AND ARE AUTHORIZED TO ACT ON BEHALF OF, AND BIND TO THIS AGREEMENT, THE OWNER OF THIS ACCOUNT. In consideration of the foregoing, the parties agree as follows: diff --git a/docs/google-analytics-tos.html b/docs/google-analytics-tos.html index 79a197b2f6..56146d8b96 100644 --- a/docs/google-analytics-tos.html +++ b/docs/google-analytics-tos.html @@ -235,7 +235,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-analytics-tos.json b/docs/google-analytics-tos.json index ce453f9697..f76a3a1caf 100644 --- a/docs/google-analytics-tos.json +++ b/docs/google-analytics-tos.json @@ -1 +1,22 @@ -{"key": "google-analytics-tos", "short_name": "Google Analytics Terms of Service", "name": "Google Analytics Terms of Service", "category": "Proprietary Free", "owner": "Google", "homepage_url": "http://www.google.com/analytics/terms/us.html", "spdx_license_key": "LicenseRef-scancode-google-analytics-tos", "text_urls": ["http://www.google.com/analytics/terms/us.html"], "other_urls": ["http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409", "http://www.google.com/analytics", "http://www.google.com/privacy.html"], "ignorable_urls": ["http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409", "http://www.google.com/analytics", "http://www.google.com/privacy.html"]} \ No newline at end of file +{ + "key": "google-analytics-tos", + "short_name": "Google Analytics Terms of Service", + "name": "Google Analytics Terms of Service", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "http://www.google.com/analytics/terms/us.html", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos", + "text_urls": [ + "http://www.google.com/analytics/terms/us.html" + ], + "other_urls": [ + "http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409", + "http://www.google.com/analytics", + "http://www.google.com/privacy.html" + ], + "ignorable_urls": [ + "http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409", + "http://www.google.com/analytics", + "http://www.google.com/privacy.html" + ] +} \ No newline at end of file diff --git a/docs/google-apis-tos-2021.LICENSE b/docs/google-apis-tos-2021.LICENSE index 0b3c4cf0e9..95a5214865 100644 --- a/docs/google-apis-tos-2021.LICENSE +++ b/docs/google-apis-tos-2021.LICENSE @@ -1,3 +1,19 @@ +--- +key: google-apis-tos-2021 +short_name: Google APIs TOS 2021 +name: Google APIs Terms of Service 2021 +category: Proprietary Free +owner: Google +homepage_url: https://developers.google.com/terms +spdx_license_key: LicenseRef-scancode-google-apis-tos-2021 +ignorable_copyrights: + - Copyright Protection a. Google +ignorable_holders: + - Protection a. Google +ignorable_authors: + - the U.S. Department of State. Remove +--- + Google APIs Terms of Service Last modified: November 9, 2021 diff --git a/docs/google-apis-tos-2021.html b/docs/google-apis-tos-2021.html index 91ba202557..a4ecccd04d 100644 --- a/docs/google-apis-tos-2021.html +++ b/docs/google-apis-tos-2021.html @@ -319,7 +319,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-apis-tos-2021.json b/docs/google-apis-tos-2021.json index 437b9c052b..a852093e7c 100644 --- a/docs/google-apis-tos-2021.json +++ b/docs/google-apis-tos-2021.json @@ -1 +1,18 @@ -{"key": "google-apis-tos-2021", "short_name": "Google APIs TOS 2021", "name": "Google APIs Terms of Service 2021", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://developers.google.com/terms", "spdx_license_key": "LicenseRef-scancode-google-apis-tos-2021", "ignorable_copyrights": ["Copyright Protection a. Google"], "ignorable_holders": ["Protection a. Google"], "ignorable_authors": ["the U.S. Department of State. Remove"]} \ No newline at end of file +{ + "key": "google-apis-tos-2021", + "short_name": "Google APIs TOS 2021", + "name": "Google APIs Terms of Service 2021", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://developers.google.com/terms", + "spdx_license_key": "LicenseRef-scancode-google-apis-tos-2021", + "ignorable_copyrights": [ + "Copyright Protection a. Google" + ], + "ignorable_holders": [ + "Protection a. Google" + ], + "ignorable_authors": [ + "the U.S. Department of State. Remove" + ] +} \ No newline at end of file diff --git a/docs/google-cla.LICENSE b/docs/google-cla.LICENSE index 7fcef52518..20bb9c82dc 100644 --- a/docs/google-cla.LICENSE +++ b/docs/google-cla.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-cla +short_name: Google CLA +name: Google Individual Contributor License Agreement +category: CLA +owner: Google +homepage_url: https://cla.developers.google.com/about/google-individual +spdx_license_key: LicenseRef-scancode-google-cla +--- + Google Individual Contributor License Agreement In order to clarify the intellectual property license granted with Contributions from any person or entity, Google LLC ("Google") must have a Contributor License Agreement ("CLA") on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for your protection as a Contributor as well as the protection of Google; it does not change your rights to use your own Contributions for any other purpose. diff --git a/docs/google-cla.html b/docs/google-cla.html index 2938e48ef6..142a88a15c 100644 --- a/docs/google-cla.html +++ b/docs/google-cla.html @@ -88,7 +88,7 @@
category
- Patent License + CLA
@@ -151,7 +151,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-cla.json b/docs/google-cla.json index 0800cd9609..bd870aaf63 100644 --- a/docs/google-cla.json +++ b/docs/google-cla.json @@ -1 +1,9 @@ -{"key": "google-cla", "short_name": "Google CLA", "name": "Google Individual Contributor License Agreement", "category": "Patent License", "owner": "Google", "homepage_url": "https://cla.developers.google.com/about/google-individual", "spdx_license_key": "LicenseRef-scancode-google-cla"} \ No newline at end of file +{ + "key": "google-cla", + "short_name": "Google CLA", + "name": "Google Individual Contributor License Agreement", + "category": "CLA", + "owner": "Google", + "homepage_url": "https://cla.developers.google.com/about/google-individual", + "spdx_license_key": "LicenseRef-scancode-google-cla" +} \ No newline at end of file diff --git a/docs/google-cla.yml b/docs/google-cla.yml index de3f0e4807..0e0209e6c2 100644 --- a/docs/google-cla.yml +++ b/docs/google-cla.yml @@ -1,7 +1,7 @@ key: google-cla short_name: Google CLA name: Google Individual Contributor License Agreement -category: Patent License +category: CLA owner: Google homepage_url: https://cla.developers.google.com/about/google-individual spdx_license_key: LicenseRef-scancode-google-cla diff --git a/docs/google-corporate-cla.LICENSE b/docs/google-corporate-cla.LICENSE index f12eb4475f..6e8067a21d 100644 --- a/docs/google-corporate-cla.LICENSE +++ b/docs/google-corporate-cla.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-corporate-cla +short_name: Google Corporate CLA +name: Google Software Grant and Corporate Contributor License Agreement +category: CLA +owner: Google +homepage_url: https://cla.developers.google.com/about/google-corporate +spdx_license_key: LicenseRef-scancode-google-corporate-cla +--- + Google Software Grant and Corporate Contributor License Agreement In order to clarify the intellectual property license granted with Contributions from any person or entity, Google LLC ("Google") must have a Contributor License Agreement (CLA) on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for your protection as a Contributor as well as the protection of Google and its users; it does not change your rights to use your own Contributions for any other purpose. diff --git a/docs/google-corporate-cla.html b/docs/google-corporate-cla.html index 55082934e7..0ab3e4e7bd 100644 --- a/docs/google-corporate-cla.html +++ b/docs/google-corporate-cla.html @@ -88,7 +88,7 @@
category
- Patent License + CLA
@@ -153,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-corporate-cla.json b/docs/google-corporate-cla.json index 36a61b9318..bf3b910192 100644 --- a/docs/google-corporate-cla.json +++ b/docs/google-corporate-cla.json @@ -1 +1,9 @@ -{"key": "google-corporate-cla", "short_name": "Google Corporate CLA", "name": "Google Software Grant and Corporate Contributor License Agreement", "category": "Patent License", "owner": "Google", "homepage_url": "https://cla.developers.google.com/about/google-corporate", "spdx_license_key": "LicenseRef-scancode-google-corporate-cla"} \ No newline at end of file +{ + "key": "google-corporate-cla", + "short_name": "Google Corporate CLA", + "name": "Google Software Grant and Corporate Contributor License Agreement", + "category": "CLA", + "owner": "Google", + "homepage_url": "https://cla.developers.google.com/about/google-corporate", + "spdx_license_key": "LicenseRef-scancode-google-corporate-cla" +} \ No newline at end of file diff --git a/docs/google-corporate-cla.yml b/docs/google-corporate-cla.yml index 2ab7720d21..12c7d308a4 100644 --- a/docs/google-corporate-cla.yml +++ b/docs/google-corporate-cla.yml @@ -1,7 +1,7 @@ key: google-corporate-cla short_name: Google Corporate CLA name: Google Software Grant and Corporate Contributor License Agreement -category: Patent License +category: CLA owner: Google homepage_url: https://cla.developers.google.com/about/google-corporate spdx_license_key: LicenseRef-scancode-google-corporate-cla diff --git a/docs/google-maps-tos-2018-02-07.LICENSE b/docs/google-maps-tos-2018-02-07.LICENSE index 232999ed09..a667c1adb4 100644 --- a/docs/google-maps-tos-2018-02-07.LICENSE +++ b/docs/google-maps-tos-2018-02-07.LICENSE @@ -1,3 +1,29 @@ +--- +key: google-maps-tos-2018-02-07 +short_name: Google Maps Platform ToS 2018-02-07 +name: Google Maps Platform Terms of Service 2018-02-07 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-02-07 +text_urls: + - https://developers.google.com/maps/terms-20180207 +minimum_coverage: 90 +ignorable_copyrights: + - (c) Google Australia Pty Ltd. +ignorable_holders: + - Google Australia Pty Ltd. +ignorable_authors: + - the U.S. Department of State. Remove +ignorable_urls: + - http://developers.google.com/maps/maps-api-list + - http://developers.google.com/maps/terms + - http://www.google.com/intl/en/about/company/software-principles.html + - http://www.google.com/policies/privacy + - https://developers.google.com/products/ + - https://www.google.com/maps +--- + Google Maps APIs Terms of Service Thank you for your interest in the Google Maps APIs. The Google Maps APIs are a collection of services that allow you to include maps, geocoding, places, and other content from Google in your web pages or applications. @@ -331,4 +357,4 @@ It is Google’s policy to respond to notices of alleged copyright infringement 19.8 Conflicting Languages. If these Terms are translated into any other language, and there is a discrepancy between the English text and the translated text, the English text will govern. -19.9 Governing Law. ALL CLAIMS ARISING OUT OF OR RELATING TO THESE TERMS OR ANY RELATED GOOGLE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING CALIFORNIA'S CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS. \ No newline at end of file +19.9 Governing Law. ALL CLAIMS ARISING OUT OF OR RELATING TO THESE TERMS OR ANY RELATED GOOGLE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING CALIFORNIA'S CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS. \ No newline at end of file diff --git a/docs/google-maps-tos-2018-02-07.html b/docs/google-maps-tos-2018-02-07.html index 125fc1ae39..1f3e1a4035 100644 --- a/docs/google-maps-tos-2018-02-07.html +++ b/docs/google-maps-tos-2018-02-07.html @@ -500,7 +500,7 @@ 19.8 Conflicting Languages. If these Terms are translated into any other language, and there is a discrepancy between the English text and the translated text, the English text will govern. -19.9 Governing Law. ALL CLAIMS ARISING OUT OF OR RELATING TO THESE TERMS OR ANY RELATED GOOGLE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING CALIFORNIA'S CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS. +19.9 Governing Law. ALL CLAIMS ARISING OUT OF OR RELATING TO THESE TERMS OR ANY RELATED GOOGLE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING CALIFORNIA'S CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.
@@ -512,7 +512,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-maps-tos-2018-02-07.json b/docs/google-maps-tos-2018-02-07.json index 19588103b7..3002fee31a 100644 --- a/docs/google-maps-tos-2018-02-07.json +++ b/docs/google-maps-tos-2018-02-07.json @@ -1 +1,30 @@ -{"key": "google-maps-tos-2018-02-07", "short_name": "Google Maps Platform ToS 2018-02-07", "name": "Google Maps Platform Terms of Service 2018-02-07", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://cloud.google.com/maps-platform/terms", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-02-07", "text_urls": ["https://developers.google.com/maps/terms-20180207"], "minimum_coverage": 90, "ignorable_copyrights": ["(c) Google Australia Pty Ltd."], "ignorable_holders": ["Google Australia Pty Ltd."], "ignorable_authors": ["the U.S. Department of State. Remove"], "ignorable_urls": ["http://developers.google.com/maps/maps-api-list", "http://developers.google.com/maps/terms", "http://www.google.com/intl/en/about/company/software-principles.html", "http://www.google.com/policies/privacy", "https://developers.google.com/products/", "https://www.google.com/maps"]} \ No newline at end of file +{ + "key": "google-maps-tos-2018-02-07", + "short_name": "Google Maps Platform ToS 2018-02-07", + "name": "Google Maps Platform Terms of Service 2018-02-07", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://cloud.google.com/maps-platform/terms", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-02-07", + "text_urls": [ + "https://developers.google.com/maps/terms-20180207" + ], + "minimum_coverage": 90, + "ignorable_copyrights": [ + "(c) Google Australia Pty Ltd." + ], + "ignorable_holders": [ + "Google Australia Pty Ltd." + ], + "ignorable_authors": [ + "the U.S. Department of State. Remove" + ], + "ignorable_urls": [ + "http://developers.google.com/maps/maps-api-list", + "http://developers.google.com/maps/terms", + "http://www.google.com/intl/en/about/company/software-principles.html", + "http://www.google.com/policies/privacy", + "https://developers.google.com/products/", + "https://www.google.com/maps" + ] +} \ No newline at end of file diff --git a/docs/google-maps-tos-2018-05-01.LICENSE b/docs/google-maps-tos-2018-05-01.LICENSE index efc96ca15c..3f0a83fca4 100644 --- a/docs/google-maps-tos-2018-05-01.LICENSE +++ b/docs/google-maps-tos-2018-05-01.LICENSE @@ -1,3 +1,41 @@ +--- +key: google-maps-tos-2018-05-01 +short_name: Google Maps Platform ToS 2018-05-01 +name: Google Maps Platform Terms of Service 2018-05-01 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-05-01 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20180501 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet/ + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps + - https://developers.google.com/maps/terms + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: May 1, 2018 diff --git a/docs/google-maps-tos-2018-05-01.html b/docs/google-maps-tos-2018-05-01.html index 85f4f38dac..24d2089b54 100644 --- a/docs/google-maps-tos-2018-05-01.html +++ b/docs/google-maps-tos-2018-05-01.html @@ -508,7 +508,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-maps-tos-2018-05-01.json b/docs/google-maps-tos-2018-05-01.json index 0ff0179882..d3fdbd9556 100644 --- a/docs/google-maps-tos-2018-05-01.json +++ b/docs/google-maps-tos-2018-05-01.json @@ -1 +1,41 @@ -{"key": "google-maps-tos-2018-05-01", "short_name": "Google Maps Platform ToS 2018-05-01", "name": "Google Maps Platform Terms of Service 2018-05-01", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://cloud.google.com/maps-platform/terms", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-05-01", "text_urls": ["https://cloud.google.com/maps-platform/terms/index-20180501"], "minimum_coverage": 90, "ignorable_authors": ["the U.S. Department", "the United States Department of State"], "ignorable_urls": ["https://cloud.google.com/maps-platform/pricing/sheet/", "https://cloud.google.com/maps-platform/terms", "https://cloud.google.com/maps-platform/terms/aup", "https://cloud.google.com/maps-platform/terms/maps-controller-terms", "https://cloud.google.com/maps-platform/terms/maps-deprecation", "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", "https://cloud.google.com/maps-platform/terms/maps-service-terms", "https://cloud.google.com/maps-platform/terms/maps-services", "https://cloud.google.com/maps-platform/terms/sla", "https://cloud.google.com/maps-platform/terms/tssg", "https://developers.google.com/maps", "https://developers.google.com/maps/terms", "https://www.google.com/about/company/user-consent-policy.html", "https://www.google.com/dmca.html", "https://www.google.com/help/legalnotices_maps.html", "https://www.google.com/permissions/geoguidelines.html#geotrademark", "https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy", "https://www.google.com/permissions/trademark/brand-terms.html", "https://www.google.com/policies/privacy"], "ignorable_emails": ["legal-notices@google.com"]} \ No newline at end of file +{ + "key": "google-maps-tos-2018-05-01", + "short_name": "Google Maps Platform ToS 2018-05-01", + "name": "Google Maps Platform Terms of Service 2018-05-01", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://cloud.google.com/maps-platform/terms", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-05-01", + "text_urls": [ + "https://cloud.google.com/maps-platform/terms/index-20180501" + ], + "minimum_coverage": 90, + "ignorable_authors": [ + "the U.S. Department", + "the United States Department of State" + ], + "ignorable_urls": [ + "https://cloud.google.com/maps-platform/pricing/sheet/", + "https://cloud.google.com/maps-platform/terms", + "https://cloud.google.com/maps-platform/terms/aup", + "https://cloud.google.com/maps-platform/terms/maps-controller-terms", + "https://cloud.google.com/maps-platform/terms/maps-deprecation", + "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", + "https://cloud.google.com/maps-platform/terms/maps-service-terms", + "https://cloud.google.com/maps-platform/terms/maps-services", + "https://cloud.google.com/maps-platform/terms/sla", + "https://cloud.google.com/maps-platform/terms/tssg", + "https://developers.google.com/maps", + "https://developers.google.com/maps/terms", + "https://www.google.com/about/company/user-consent-policy.html", + "https://www.google.com/dmca.html", + "https://www.google.com/help/legalnotices_maps.html", + "https://www.google.com/permissions/geoguidelines.html#geotrademark", + "https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy", + "https://www.google.com/permissions/trademark/brand-terms.html", + "https://www.google.com/policies/privacy" + ], + "ignorable_emails": [ + "legal-notices@google.com" + ] +} \ No newline at end of file diff --git a/docs/google-maps-tos-2018-06-07.LICENSE b/docs/google-maps-tos-2018-06-07.LICENSE index f27fd78ef4..df02df58e0 100644 --- a/docs/google-maps-tos-2018-06-07.LICENSE +++ b/docs/google-maps-tos-2018-06-07.LICENSE @@ -1,3 +1,40 @@ +--- +key: google-maps-tos-2018-06-07 +short_name: Google Maps Platform ToS 2018-06-07 +name: Google Maps Platform Terms of Service 2018-06-07 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-06-07 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20180607 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet/ + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: June 7, 2018 diff --git a/docs/google-maps-tos-2018-06-07.html b/docs/google-maps-tos-2018-06-07.html index db7f41be27..b67ff320e7 100644 --- a/docs/google-maps-tos-2018-06-07.html +++ b/docs/google-maps-tos-2018-06-07.html @@ -504,7 +504,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-maps-tos-2018-06-07.json b/docs/google-maps-tos-2018-06-07.json index 72a49299a9..f1e8baf78b 100644 --- a/docs/google-maps-tos-2018-06-07.json +++ b/docs/google-maps-tos-2018-06-07.json @@ -1 +1,40 @@ -{"key": "google-maps-tos-2018-06-07", "short_name": "Google Maps Platform ToS 2018-06-07", "name": "Google Maps Platform Terms of Service 2018-06-07", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://cloud.google.com/maps-platform/terms", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-06-07", "text_urls": ["https://cloud.google.com/maps-platform/terms/index-20180607"], "minimum_coverage": 90, "ignorable_authors": ["the U.S. Department", "the United States Department of State"], "ignorable_urls": ["https://cloud.google.com/maps-platform/pricing/sheet/", "https://cloud.google.com/maps-platform/terms", "https://cloud.google.com/maps-platform/terms/aup", "https://cloud.google.com/maps-platform/terms/maps-controller-terms", "https://cloud.google.com/maps-platform/terms/maps-deprecation", "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", "https://cloud.google.com/maps-platform/terms/maps-service-terms", "https://cloud.google.com/maps-platform/terms/maps-services", "https://cloud.google.com/maps-platform/terms/sla", "https://cloud.google.com/maps-platform/terms/tssg", "https://developers.google.com/maps", "https://www.google.com/about/company/user-consent-policy.html", "https://www.google.com/dmca.html", "https://www.google.com/help/legalnotices_maps.html", "https://www.google.com/permissions/geoguidelines.html#geotrademark", "https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy", "https://www.google.com/permissions/trademark/brand-terms.html", "https://www.google.com/policies/privacy"], "ignorable_emails": ["legal-notices@google.com"]} \ No newline at end of file +{ + "key": "google-maps-tos-2018-06-07", + "short_name": "Google Maps Platform ToS 2018-06-07", + "name": "Google Maps Platform Terms of Service 2018-06-07", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://cloud.google.com/maps-platform/terms", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-06-07", + "text_urls": [ + "https://cloud.google.com/maps-platform/terms/index-20180607" + ], + "minimum_coverage": 90, + "ignorable_authors": [ + "the U.S. Department", + "the United States Department of State" + ], + "ignorable_urls": [ + "https://cloud.google.com/maps-platform/pricing/sheet/", + "https://cloud.google.com/maps-platform/terms", + "https://cloud.google.com/maps-platform/terms/aup", + "https://cloud.google.com/maps-platform/terms/maps-controller-terms", + "https://cloud.google.com/maps-platform/terms/maps-deprecation", + "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", + "https://cloud.google.com/maps-platform/terms/maps-service-terms", + "https://cloud.google.com/maps-platform/terms/maps-services", + "https://cloud.google.com/maps-platform/terms/sla", + "https://cloud.google.com/maps-platform/terms/tssg", + "https://developers.google.com/maps", + "https://www.google.com/about/company/user-consent-policy.html", + "https://www.google.com/dmca.html", + "https://www.google.com/help/legalnotices_maps.html", + "https://www.google.com/permissions/geoguidelines.html#geotrademark", + "https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy", + "https://www.google.com/permissions/trademark/brand-terms.html", + "https://www.google.com/policies/privacy" + ], + "ignorable_emails": [ + "legal-notices@google.com" + ] +} \ No newline at end of file diff --git a/docs/google-maps-tos-2018-07-09.LICENSE b/docs/google-maps-tos-2018-07-09.LICENSE index 6479c1a8a0..54dc374177 100644 --- a/docs/google-maps-tos-2018-07-09.LICENSE +++ b/docs/google-maps-tos-2018-07-09.LICENSE @@ -1,3 +1,41 @@ +--- +key: google-maps-tos-2018-07-09 +short_name: Google Maps Platform ToS 2018-07-09 +name: Google Maps Platform Terms of Service 2018-07-09 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-07-09 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20180709 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps/documentation + - https://developers.google.com/maps/terms + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: July 9, 2018 diff --git a/docs/google-maps-tos-2018-07-09.html b/docs/google-maps-tos-2018-07-09.html index 342221d9e1..241d1ac411 100644 --- a/docs/google-maps-tos-2018-07-09.html +++ b/docs/google-maps-tos-2018-07-09.html @@ -529,7 +529,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-maps-tos-2018-07-09.json b/docs/google-maps-tos-2018-07-09.json index 59ccb9c4c4..f032f909be 100644 --- a/docs/google-maps-tos-2018-07-09.json +++ b/docs/google-maps-tos-2018-07-09.json @@ -1 +1,41 @@ -{"key": "google-maps-tos-2018-07-09", "short_name": "Google Maps Platform ToS 2018-07-09", "name": "Google Maps Platform Terms of Service 2018-07-09", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://cloud.google.com/maps-platform/terms", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-07-09", "text_urls": ["https://cloud.google.com/maps-platform/terms/index-20180709"], "minimum_coverage": 90, "ignorable_authors": ["the U.S. Department", "the United States Department of State"], "ignorable_urls": ["https://cloud.google.com/maps-platform/pricing/sheet", "https://cloud.google.com/maps-platform/terms", "https://cloud.google.com/maps-platform/terms/aup", "https://cloud.google.com/maps-platform/terms/maps-controller-terms", "https://cloud.google.com/maps-platform/terms/maps-deprecation", "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", "https://cloud.google.com/maps-platform/terms/maps-service-terms", "https://cloud.google.com/maps-platform/terms/maps-services", "https://cloud.google.com/maps-platform/terms/sla", "https://cloud.google.com/maps-platform/terms/tssg", "https://developers.google.com/maps/documentation", "https://developers.google.com/maps/terms", "https://www.google.com/about/company/user-consent-policy.html", "https://www.google.com/dmca.html", "https://www.google.com/help/legalnotices_maps.html", "https://www.google.com/permissions/geoguidelines.html#geotrademark", "https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy", "https://www.google.com/permissions/trademark/brand-terms.html", "https://www.google.com/policies/privacy"], "ignorable_emails": ["legal-notices@google.com"]} \ No newline at end of file +{ + "key": "google-maps-tos-2018-07-09", + "short_name": "Google Maps Platform ToS 2018-07-09", + "name": "Google Maps Platform Terms of Service 2018-07-09", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://cloud.google.com/maps-platform/terms", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-07-09", + "text_urls": [ + "https://cloud.google.com/maps-platform/terms/index-20180709" + ], + "minimum_coverage": 90, + "ignorable_authors": [ + "the U.S. Department", + "the United States Department of State" + ], + "ignorable_urls": [ + "https://cloud.google.com/maps-platform/pricing/sheet", + "https://cloud.google.com/maps-platform/terms", + "https://cloud.google.com/maps-platform/terms/aup", + "https://cloud.google.com/maps-platform/terms/maps-controller-terms", + "https://cloud.google.com/maps-platform/terms/maps-deprecation", + "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", + "https://cloud.google.com/maps-platform/terms/maps-service-terms", + "https://cloud.google.com/maps-platform/terms/maps-services", + "https://cloud.google.com/maps-platform/terms/sla", + "https://cloud.google.com/maps-platform/terms/tssg", + "https://developers.google.com/maps/documentation", + "https://developers.google.com/maps/terms", + "https://www.google.com/about/company/user-consent-policy.html", + "https://www.google.com/dmca.html", + "https://www.google.com/help/legalnotices_maps.html", + "https://www.google.com/permissions/geoguidelines.html#geotrademark", + "https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy", + "https://www.google.com/permissions/trademark/brand-terms.html", + "https://www.google.com/policies/privacy" + ], + "ignorable_emails": [ + "legal-notices@google.com" + ] +} \ No newline at end of file diff --git a/docs/google-maps-tos-2018-07-19.LICENSE b/docs/google-maps-tos-2018-07-19.LICENSE index 5430ba23ab..93e5f1676f 100644 --- a/docs/google-maps-tos-2018-07-19.LICENSE +++ b/docs/google-maps-tos-2018-07-19.LICENSE @@ -1,3 +1,40 @@ +--- +key: google-maps-tos-2018-07-19 +short_name: Google Maps Platform ToS 2018-07-19 +name: Google Maps Platform Terms of Service 2018-07-19 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-07-19 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20180719 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps/documentation + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: July 19, 2018 diff --git a/docs/google-maps-tos-2018-07-19.html b/docs/google-maps-tos-2018-07-19.html index 9fb76ef2ee..c3fcf83d5e 100644 --- a/docs/google-maps-tos-2018-07-19.html +++ b/docs/google-maps-tos-2018-07-19.html @@ -527,7 +527,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-maps-tos-2018-07-19.json b/docs/google-maps-tos-2018-07-19.json index 5db5fcf9d4..86b04ea826 100644 --- a/docs/google-maps-tos-2018-07-19.json +++ b/docs/google-maps-tos-2018-07-19.json @@ -1 +1,40 @@ -{"key": "google-maps-tos-2018-07-19", "short_name": "Google Maps Platform ToS 2018-07-19", "name": "Google Maps Platform Terms of Service 2018-07-19", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://cloud.google.com/maps-platform/terms", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-07-19", "text_urls": ["https://cloud.google.com/maps-platform/terms/index-20180719"], "minimum_coverage": 90, "ignorable_authors": ["the U.S. Department", "the United States Department of State"], "ignorable_urls": ["https://cloud.google.com/maps-platform/pricing/sheet", "https://cloud.google.com/maps-platform/terms", "https://cloud.google.com/maps-platform/terms/aup", "https://cloud.google.com/maps-platform/terms/maps-controller-terms", "https://cloud.google.com/maps-platform/terms/maps-deprecation", "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", "https://cloud.google.com/maps-platform/terms/maps-service-terms", "https://cloud.google.com/maps-platform/terms/maps-services", "https://cloud.google.com/maps-platform/terms/sla", "https://cloud.google.com/maps-platform/terms/tssg", "https://developers.google.com/maps/documentation", "https://www.google.com/about/company/user-consent-policy.html", "https://www.google.com/dmca.html", "https://www.google.com/help/legalnotices_maps.html", "https://www.google.com/permissions/geoguidelines.html#geotrademark", "https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy", "https://www.google.com/permissions/trademark/brand-terms.html", "https://www.google.com/policies/privacy"], "ignorable_emails": ["legal-notices@google.com"]} \ No newline at end of file +{ + "key": "google-maps-tos-2018-07-19", + "short_name": "Google Maps Platform ToS 2018-07-19", + "name": "Google Maps Platform Terms of Service 2018-07-19", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://cloud.google.com/maps-platform/terms", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-07-19", + "text_urls": [ + "https://cloud.google.com/maps-platform/terms/index-20180719" + ], + "minimum_coverage": 90, + "ignorable_authors": [ + "the U.S. Department", + "the United States Department of State" + ], + "ignorable_urls": [ + "https://cloud.google.com/maps-platform/pricing/sheet", + "https://cloud.google.com/maps-platform/terms", + "https://cloud.google.com/maps-platform/terms/aup", + "https://cloud.google.com/maps-platform/terms/maps-controller-terms", + "https://cloud.google.com/maps-platform/terms/maps-deprecation", + "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", + "https://cloud.google.com/maps-platform/terms/maps-service-terms", + "https://cloud.google.com/maps-platform/terms/maps-services", + "https://cloud.google.com/maps-platform/terms/sla", + "https://cloud.google.com/maps-platform/terms/tssg", + "https://developers.google.com/maps/documentation", + "https://www.google.com/about/company/user-consent-policy.html", + "https://www.google.com/dmca.html", + "https://www.google.com/help/legalnotices_maps.html", + "https://www.google.com/permissions/geoguidelines.html#geotrademark", + "https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy", + "https://www.google.com/permissions/trademark/brand-terms.html", + "https://www.google.com/policies/privacy" + ], + "ignorable_emails": [ + "legal-notices@google.com" + ] +} \ No newline at end of file diff --git a/docs/google-maps-tos-2018-10-01.LICENSE b/docs/google-maps-tos-2018-10-01.LICENSE index 09f1ef9225..ee22af2311 100644 --- a/docs/google-maps-tos-2018-10-01.LICENSE +++ b/docs/google-maps-tos-2018-10-01.LICENSE @@ -1,3 +1,40 @@ +--- +key: google-maps-tos-2018-10-01 +short_name: Google Maps Platform ToS 2018-10-01 +name: Google Maps Platform Terms of Service 2018-10-01 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-10-01 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20181001 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps/documentation + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: October 1, 2018 diff --git a/docs/google-maps-tos-2018-10-01.html b/docs/google-maps-tos-2018-10-01.html index 2d9f43bbcf..e9004a3f8c 100644 --- a/docs/google-maps-tos-2018-10-01.html +++ b/docs/google-maps-tos-2018-10-01.html @@ -527,7 +527,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-maps-tos-2018-10-01.json b/docs/google-maps-tos-2018-10-01.json index aa37ff01d9..447f3fc572 100644 --- a/docs/google-maps-tos-2018-10-01.json +++ b/docs/google-maps-tos-2018-10-01.json @@ -1 +1,40 @@ -{"key": "google-maps-tos-2018-10-01", "short_name": "Google Maps Platform ToS 2018-10-01", "name": "Google Maps Platform Terms of Service 2018-10-01", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://cloud.google.com/maps-platform/terms", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-10-01", "text_urls": ["https://cloud.google.com/maps-platform/terms/index-20181001"], "minimum_coverage": 90, "ignorable_authors": ["the U.S. Department", "the United States Department of State"], "ignorable_urls": ["https://cloud.google.com/maps-platform/pricing/sheet", "https://cloud.google.com/maps-platform/terms", "https://cloud.google.com/maps-platform/terms/aup", "https://cloud.google.com/maps-platform/terms/maps-controller-terms", "https://cloud.google.com/maps-platform/terms/maps-deprecation", "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", "https://cloud.google.com/maps-platform/terms/maps-service-terms", "https://cloud.google.com/maps-platform/terms/maps-services", "https://cloud.google.com/maps-platform/terms/sla", "https://cloud.google.com/maps-platform/terms/tssg", "https://developers.google.com/maps/documentation", "https://www.google.com/about/company/user-consent-policy.html", "https://www.google.com/dmca.html", "https://www.google.com/help/legalnotices_maps.html", "https://www.google.com/permissions/geoguidelines.html#geotrademark", "https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy", "https://www.google.com/permissions/trademark/brand-terms.html", "https://www.google.com/policies/privacy"], "ignorable_emails": ["legal-notices@google.com"]} \ No newline at end of file +{ + "key": "google-maps-tos-2018-10-01", + "short_name": "Google Maps Platform ToS 2018-10-01", + "name": "Google Maps Platform Terms of Service 2018-10-01", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://cloud.google.com/maps-platform/terms", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-10-01", + "text_urls": [ + "https://cloud.google.com/maps-platform/terms/index-20181001" + ], + "minimum_coverage": 90, + "ignorable_authors": [ + "the U.S. Department", + "the United States Department of State" + ], + "ignorable_urls": [ + "https://cloud.google.com/maps-platform/pricing/sheet", + "https://cloud.google.com/maps-platform/terms", + "https://cloud.google.com/maps-platform/terms/aup", + "https://cloud.google.com/maps-platform/terms/maps-controller-terms", + "https://cloud.google.com/maps-platform/terms/maps-deprecation", + "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", + "https://cloud.google.com/maps-platform/terms/maps-service-terms", + "https://cloud.google.com/maps-platform/terms/maps-services", + "https://cloud.google.com/maps-platform/terms/sla", + "https://cloud.google.com/maps-platform/terms/tssg", + "https://developers.google.com/maps/documentation", + "https://www.google.com/about/company/user-consent-policy.html", + "https://www.google.com/dmca.html", + "https://www.google.com/help/legalnotices_maps.html", + "https://www.google.com/permissions/geoguidelines.html#geotrademark", + "https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy", + "https://www.google.com/permissions/trademark/brand-terms.html", + "https://www.google.com/policies/privacy" + ], + "ignorable_emails": [ + "legal-notices@google.com" + ] +} \ No newline at end of file diff --git a/docs/google-maps-tos-2018-10-31.LICENSE b/docs/google-maps-tos-2018-10-31.LICENSE index 310e6d0430..da3680bd81 100644 --- a/docs/google-maps-tos-2018-10-31.LICENSE +++ b/docs/google-maps-tos-2018-10-31.LICENSE @@ -1,3 +1,40 @@ +--- +key: google-maps-tos-2018-10-31 +short_name: Google Maps Platform ToS 2018-10-31 +name: Google Maps Platform Terms of Service 2018-10-31 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-10-31 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20181031 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps/documentation + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: October 31, 2018 diff --git a/docs/google-maps-tos-2018-10-31.html b/docs/google-maps-tos-2018-10-31.html index 50a5948831..901cfd9fb5 100644 --- a/docs/google-maps-tos-2018-10-31.html +++ b/docs/google-maps-tos-2018-10-31.html @@ -527,7 +527,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-maps-tos-2018-10-31.json b/docs/google-maps-tos-2018-10-31.json index 9dd3d6b1ac..b7bc4ae846 100644 --- a/docs/google-maps-tos-2018-10-31.json +++ b/docs/google-maps-tos-2018-10-31.json @@ -1 +1,40 @@ -{"key": "google-maps-tos-2018-10-31", "short_name": "Google Maps Platform ToS 2018-10-31", "name": "Google Maps Platform Terms of Service 2018-10-31", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://cloud.google.com/maps-platform/terms", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-10-31", "text_urls": ["https://cloud.google.com/maps-platform/terms/index-20181031"], "minimum_coverage": 90, "ignorable_authors": ["the U.S. Department", "the United States Department of State"], "ignorable_urls": ["https://cloud.google.com/maps-platform/pricing/sheet", "https://cloud.google.com/maps-platform/terms", "https://cloud.google.com/maps-platform/terms/aup", "https://cloud.google.com/maps-platform/terms/maps-controller-terms", "https://cloud.google.com/maps-platform/terms/maps-deprecation", "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", "https://cloud.google.com/maps-platform/terms/maps-service-terms", "https://cloud.google.com/maps-platform/terms/maps-services", "https://cloud.google.com/maps-platform/terms/sla", "https://cloud.google.com/maps-platform/terms/tssg", "https://developers.google.com/maps/documentation", "https://www.google.com/about/company/user-consent-policy.html", "https://www.google.com/dmca.html", "https://www.google.com/help/legalnotices_maps.html", "https://www.google.com/permissions/geoguidelines.html#geotrademark", "https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy", "https://www.google.com/permissions/trademark/brand-terms.html", "https://www.google.com/policies/privacy"], "ignorable_emails": ["legal-notices@google.com"]} \ No newline at end of file +{ + "key": "google-maps-tos-2018-10-31", + "short_name": "Google Maps Platform ToS 2018-10-31", + "name": "Google Maps Platform Terms of Service 2018-10-31", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://cloud.google.com/maps-platform/terms", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-10-31", + "text_urls": [ + "https://cloud.google.com/maps-platform/terms/index-20181031" + ], + "minimum_coverage": 90, + "ignorable_authors": [ + "the U.S. Department", + "the United States Department of State" + ], + "ignorable_urls": [ + "https://cloud.google.com/maps-platform/pricing/sheet", + "https://cloud.google.com/maps-platform/terms", + "https://cloud.google.com/maps-platform/terms/aup", + "https://cloud.google.com/maps-platform/terms/maps-controller-terms", + "https://cloud.google.com/maps-platform/terms/maps-deprecation", + "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", + "https://cloud.google.com/maps-platform/terms/maps-service-terms", + "https://cloud.google.com/maps-platform/terms/maps-services", + "https://cloud.google.com/maps-platform/terms/sla", + "https://cloud.google.com/maps-platform/terms/tssg", + "https://developers.google.com/maps/documentation", + "https://www.google.com/about/company/user-consent-policy.html", + "https://www.google.com/dmca.html", + "https://www.google.com/help/legalnotices_maps.html", + "https://www.google.com/permissions/geoguidelines.html#geotrademark", + "https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy", + "https://www.google.com/permissions/trademark/brand-terms.html", + "https://www.google.com/policies/privacy" + ], + "ignorable_emails": [ + "legal-notices@google.com" + ] +} \ No newline at end of file diff --git a/docs/google-maps-tos-2019-05-02.LICENSE b/docs/google-maps-tos-2019-05-02.LICENSE index 0135328882..0fb23830bd 100644 --- a/docs/google-maps-tos-2019-05-02.LICENSE +++ b/docs/google-maps-tos-2019-05-02.LICENSE @@ -1,3 +1,39 @@ +--- +key: google-maps-tos-2019-05-02 +short_name: Google Maps Platform ToS 2019-05-02 +name: Google Maps Platform Terms of Service 2019-05-02 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2019-05-02 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20190502 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps/documentation + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: May 02, 2019 diff --git a/docs/google-maps-tos-2019-05-02.html b/docs/google-maps-tos-2019-05-02.html index 420087039c..f36d2b2eb7 100644 --- a/docs/google-maps-tos-2019-05-02.html +++ b/docs/google-maps-tos-2019-05-02.html @@ -525,7 +525,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-maps-tos-2019-05-02.json b/docs/google-maps-tos-2019-05-02.json index 270a789ead..6c6509e146 100644 --- a/docs/google-maps-tos-2019-05-02.json +++ b/docs/google-maps-tos-2019-05-02.json @@ -1 +1,39 @@ -{"key": "google-maps-tos-2019-05-02", "short_name": "Google Maps Platform ToS 2019-05-02", "name": "Google Maps Platform Terms of Service 2019-05-02", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://cloud.google.com/maps-platform/terms", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2019-05-02", "text_urls": ["https://cloud.google.com/maps-platform/terms/index-20190502"], "minimum_coverage": 90, "ignorable_authors": ["the U.S. Department", "the United States Department of State"], "ignorable_urls": ["https://cloud.google.com/maps-platform/pricing/sheet", "https://cloud.google.com/maps-platform/terms", "https://cloud.google.com/maps-platform/terms/aup", "https://cloud.google.com/maps-platform/terms/maps-controller-terms", "https://cloud.google.com/maps-platform/terms/maps-deprecation", "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", "https://cloud.google.com/maps-platform/terms/maps-service-terms", "https://cloud.google.com/maps-platform/terms/maps-services", "https://cloud.google.com/maps-platform/terms/sla", "https://cloud.google.com/maps-platform/terms/tssg", "https://developers.google.com/maps/documentation", "https://www.google.com/about/company/user-consent-policy.html", "https://www.google.com/dmca.html", "https://www.google.com/help/legalnotices_maps.html", "https://www.google.com/permissions/geoguidelines.html#geotrademark", "https://www.google.com/permissions/trademark/brand-terms.html", "https://www.google.com/policies/privacy"], "ignorable_emails": ["legal-notices@google.com"]} \ No newline at end of file +{ + "key": "google-maps-tos-2019-05-02", + "short_name": "Google Maps Platform ToS 2019-05-02", + "name": "Google Maps Platform Terms of Service 2019-05-02", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://cloud.google.com/maps-platform/terms", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2019-05-02", + "text_urls": [ + "https://cloud.google.com/maps-platform/terms/index-20190502" + ], + "minimum_coverage": 90, + "ignorable_authors": [ + "the U.S. Department", + "the United States Department of State" + ], + "ignorable_urls": [ + "https://cloud.google.com/maps-platform/pricing/sheet", + "https://cloud.google.com/maps-platform/terms", + "https://cloud.google.com/maps-platform/terms/aup", + "https://cloud.google.com/maps-platform/terms/maps-controller-terms", + "https://cloud.google.com/maps-platform/terms/maps-deprecation", + "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", + "https://cloud.google.com/maps-platform/terms/maps-service-terms", + "https://cloud.google.com/maps-platform/terms/maps-services", + "https://cloud.google.com/maps-platform/terms/sla", + "https://cloud.google.com/maps-platform/terms/tssg", + "https://developers.google.com/maps/documentation", + "https://www.google.com/about/company/user-consent-policy.html", + "https://www.google.com/dmca.html", + "https://www.google.com/help/legalnotices_maps.html", + "https://www.google.com/permissions/geoguidelines.html#geotrademark", + "https://www.google.com/permissions/trademark/brand-terms.html", + "https://www.google.com/policies/privacy" + ], + "ignorable_emails": [ + "legal-notices@google.com" + ] +} \ No newline at end of file diff --git a/docs/google-maps-tos-2019-11-21.LICENSE b/docs/google-maps-tos-2019-11-21.LICENSE index 63b4f98ad7..c5acb5c07d 100644 --- a/docs/google-maps-tos-2019-11-21.LICENSE +++ b/docs/google-maps-tos-2019-11-21.LICENSE @@ -1,3 +1,39 @@ +--- +key: google-maps-tos-2019-11-21 +short_name: Google Maps Platform ToS 2019-11-21 +name: Google Maps Platform Terms of Service 2019-11-21 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2019-11-21 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20191121 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps/documentation + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: November 21, 2019 @@ -364,6 +400,4 @@ This Section applies if Customer orders the Services from a Reseller under a Res (e) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and -(f) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html. - - \ No newline at end of file +(f) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html. \ No newline at end of file diff --git a/docs/google-maps-tos-2019-11-21.html b/docs/google-maps-tos-2019-11-21.html index d75a58f7e8..b35ac21945 100644 --- a/docs/google-maps-tos-2019-11-21.html +++ b/docs/google-maps-tos-2019-11-21.html @@ -524,9 +524,7 @@ (e) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and -(f) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html. - - +(f) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html.
@@ -538,7 +536,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-maps-tos-2019-11-21.json b/docs/google-maps-tos-2019-11-21.json index 502a50308b..552b5a58a9 100644 --- a/docs/google-maps-tos-2019-11-21.json +++ b/docs/google-maps-tos-2019-11-21.json @@ -1 +1,39 @@ -{"key": "google-maps-tos-2019-11-21", "short_name": "Google Maps Platform ToS 2019-11-21", "name": "Google Maps Platform Terms of Service 2019-11-21", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://cloud.google.com/maps-platform/terms", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2019-11-21", "text_urls": ["https://cloud.google.com/maps-platform/terms/index-20191121"], "minimum_coverage": 90, "ignorable_authors": ["the U.S. Department", "the United States Department of State"], "ignorable_urls": ["https://cloud.google.com/maps-platform/pricing/sheet", "https://cloud.google.com/maps-platform/terms", "https://cloud.google.com/maps-platform/terms/aup", "https://cloud.google.com/maps-platform/terms/maps-controller-terms", "https://cloud.google.com/maps-platform/terms/maps-deprecation", "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", "https://cloud.google.com/maps-platform/terms/maps-service-terms", "https://cloud.google.com/maps-platform/terms/maps-services", "https://cloud.google.com/maps-platform/terms/sla", "https://cloud.google.com/maps-platform/terms/tssg", "https://developers.google.com/maps/documentation", "https://www.google.com/about/company/user-consent-policy.html", "https://www.google.com/dmca.html", "https://www.google.com/help/legalnotices_maps.html", "https://www.google.com/permissions/geoguidelines.html#geotrademark", "https://www.google.com/permissions/trademark/brand-terms.html", "https://www.google.com/policies/privacy"], "ignorable_emails": ["legal-notices@google.com"]} \ No newline at end of file +{ + "key": "google-maps-tos-2019-11-21", + "short_name": "Google Maps Platform ToS 2019-11-21", + "name": "Google Maps Platform Terms of Service 2019-11-21", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://cloud.google.com/maps-platform/terms", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2019-11-21", + "text_urls": [ + "https://cloud.google.com/maps-platform/terms/index-20191121" + ], + "minimum_coverage": 90, + "ignorable_authors": [ + "the U.S. Department", + "the United States Department of State" + ], + "ignorable_urls": [ + "https://cloud.google.com/maps-platform/pricing/sheet", + "https://cloud.google.com/maps-platform/terms", + "https://cloud.google.com/maps-platform/terms/aup", + "https://cloud.google.com/maps-platform/terms/maps-controller-terms", + "https://cloud.google.com/maps-platform/terms/maps-deprecation", + "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", + "https://cloud.google.com/maps-platform/terms/maps-service-terms", + "https://cloud.google.com/maps-platform/terms/maps-services", + "https://cloud.google.com/maps-platform/terms/sla", + "https://cloud.google.com/maps-platform/terms/tssg", + "https://developers.google.com/maps/documentation", + "https://www.google.com/about/company/user-consent-policy.html", + "https://www.google.com/dmca.html", + "https://www.google.com/help/legalnotices_maps.html", + "https://www.google.com/permissions/geoguidelines.html#geotrademark", + "https://www.google.com/permissions/trademark/brand-terms.html", + "https://www.google.com/policies/privacy" + ], + "ignorable_emails": [ + "legal-notices@google.com" + ] +} \ No newline at end of file diff --git a/docs/google-maps-tos-2020-04-02.LICENSE b/docs/google-maps-tos-2020-04-02.LICENSE index d7faf30e63..0e2e907028 100644 --- a/docs/google-maps-tos-2020-04-02.LICENSE +++ b/docs/google-maps-tos-2020-04-02.LICENSE @@ -1,3 +1,39 @@ +--- +key: google-maps-tos-2020-04-02 +short_name: Google Maps Platform ToS 2020-04-02 +name: Google Maps Platform Terms of Service 2020-04-02 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2020-04-02 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20200402 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps/documentation + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: April 2, 2020 @@ -435,4 +471,4 @@ Asia Pacific PT Google Cloud Indonesia 3. Section 19.15 (Conflicting Languages) is deleted and replaced with the following: -19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version. \ No newline at end of file +19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version. \ No newline at end of file diff --git a/docs/google-maps-tos-2020-04-02.html b/docs/google-maps-tos-2020-04-02.html index 41cd457de4..383a4b3e25 100644 --- a/docs/google-maps-tos-2020-04-02.html +++ b/docs/google-maps-tos-2020-04-02.html @@ -595,7 +595,7 @@ 3. Section 19.15 (Conflicting Languages) is deleted and replaced with the following: -19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version. +19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version.
@@ -607,7 +607,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-maps-tos-2020-04-02.json b/docs/google-maps-tos-2020-04-02.json index 708577aba7..0ebc7885b6 100644 --- a/docs/google-maps-tos-2020-04-02.json +++ b/docs/google-maps-tos-2020-04-02.json @@ -1 +1,39 @@ -{"key": "google-maps-tos-2020-04-02", "short_name": "Google Maps Platform ToS 2020-04-02", "name": "Google Maps Platform Terms of Service 2020-04-02", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://cloud.google.com/maps-platform/terms", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2020-04-02", "text_urls": ["https://cloud.google.com/maps-platform/terms/index-20200402"], "minimum_coverage": 90, "ignorable_authors": ["the U.S. Department", "the United States Department of State"], "ignorable_urls": ["https://cloud.google.com/maps-platform/pricing/sheet", "https://cloud.google.com/maps-platform/terms", "https://cloud.google.com/maps-platform/terms/aup", "https://cloud.google.com/maps-platform/terms/maps-controller-terms", "https://cloud.google.com/maps-platform/terms/maps-deprecation", "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", "https://cloud.google.com/maps-platform/terms/maps-service-terms", "https://cloud.google.com/maps-platform/terms/maps-services", "https://cloud.google.com/maps-platform/terms/sla", "https://cloud.google.com/maps-platform/terms/tssg", "https://developers.google.com/maps/documentation", "https://www.google.com/about/company/user-consent-policy.html", "https://www.google.com/dmca.html", "https://www.google.com/help/legalnotices_maps.html", "https://www.google.com/permissions/geoguidelines.html#geotrademark", "https://www.google.com/permissions/trademark/brand-terms.html", "https://www.google.com/policies/privacy"], "ignorable_emails": ["legal-notices@google.com"]} \ No newline at end of file +{ + "key": "google-maps-tos-2020-04-02", + "short_name": "Google Maps Platform ToS 2020-04-02", + "name": "Google Maps Platform Terms of Service 2020-04-02", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://cloud.google.com/maps-platform/terms", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2020-04-02", + "text_urls": [ + "https://cloud.google.com/maps-platform/terms/index-20200402" + ], + "minimum_coverage": 90, + "ignorable_authors": [ + "the U.S. Department", + "the United States Department of State" + ], + "ignorable_urls": [ + "https://cloud.google.com/maps-platform/pricing/sheet", + "https://cloud.google.com/maps-platform/terms", + "https://cloud.google.com/maps-platform/terms/aup", + "https://cloud.google.com/maps-platform/terms/maps-controller-terms", + "https://cloud.google.com/maps-platform/terms/maps-deprecation", + "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", + "https://cloud.google.com/maps-platform/terms/maps-service-terms", + "https://cloud.google.com/maps-platform/terms/maps-services", + "https://cloud.google.com/maps-platform/terms/sla", + "https://cloud.google.com/maps-platform/terms/tssg", + "https://developers.google.com/maps/documentation", + "https://www.google.com/about/company/user-consent-policy.html", + "https://www.google.com/dmca.html", + "https://www.google.com/help/legalnotices_maps.html", + "https://www.google.com/permissions/geoguidelines.html#geotrademark", + "https://www.google.com/permissions/trademark/brand-terms.html", + "https://www.google.com/policies/privacy" + ], + "ignorable_emails": [ + "legal-notices@google.com" + ] +} \ No newline at end of file diff --git a/docs/google-maps-tos-2020-04-27.LICENSE b/docs/google-maps-tos-2020-04-27.LICENSE index 69cac1092b..6936dd24e1 100644 --- a/docs/google-maps-tos-2020-04-27.LICENSE +++ b/docs/google-maps-tos-2020-04-27.LICENSE @@ -1,3 +1,39 @@ +--- +key: google-maps-tos-2020-04-27 +short_name: Google Maps Platform ToS 2020-04-27 +name: Google Maps Platform Terms of Service 2020-04-27 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2020-04-27 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20200427 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps/documentation + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: April 27, 2020 @@ -437,4 +473,4 @@ Asia Pacific - Indonesia PT Google Cloud Indonesia 3. Section 19.15 (Conflicting Languages) is deleted and replaced with the following: -19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version. \ No newline at end of file +19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version. \ No newline at end of file diff --git a/docs/google-maps-tos-2020-04-27.html b/docs/google-maps-tos-2020-04-27.html index 2c58c333bf..bae6ac8150 100644 --- a/docs/google-maps-tos-2020-04-27.html +++ b/docs/google-maps-tos-2020-04-27.html @@ -597,7 +597,7 @@ 3. Section 19.15 (Conflicting Languages) is deleted and replaced with the following: -19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version. +19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version.
@@ -609,7 +609,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-maps-tos-2020-04-27.json b/docs/google-maps-tos-2020-04-27.json index ac7fd9d797..45e9b522db 100644 --- a/docs/google-maps-tos-2020-04-27.json +++ b/docs/google-maps-tos-2020-04-27.json @@ -1 +1,39 @@ -{"key": "google-maps-tos-2020-04-27", "short_name": "Google Maps Platform ToS 2020-04-27", "name": "Google Maps Platform Terms of Service 2020-04-27", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://cloud.google.com/maps-platform/terms", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2020-04-27", "text_urls": ["https://cloud.google.com/maps-platform/terms/index-20200427"], "minimum_coverage": 90, "ignorable_authors": ["the U.S. Department", "the United States Department of State"], "ignorable_urls": ["https://cloud.google.com/maps-platform/pricing/sheet", "https://cloud.google.com/maps-platform/terms", "https://cloud.google.com/maps-platform/terms/aup", "https://cloud.google.com/maps-platform/terms/maps-controller-terms", "https://cloud.google.com/maps-platform/terms/maps-deprecation", "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", "https://cloud.google.com/maps-platform/terms/maps-service-terms", "https://cloud.google.com/maps-platform/terms/maps-services", "https://cloud.google.com/maps-platform/terms/sla", "https://cloud.google.com/maps-platform/terms/tssg", "https://developers.google.com/maps/documentation", "https://www.google.com/about/company/user-consent-policy.html", "https://www.google.com/dmca.html", "https://www.google.com/help/legalnotices_maps.html", "https://www.google.com/permissions/geoguidelines.html#geotrademark", "https://www.google.com/permissions/trademark/brand-terms.html", "https://www.google.com/policies/privacy"], "ignorable_emails": ["legal-notices@google.com"]} \ No newline at end of file +{ + "key": "google-maps-tos-2020-04-27", + "short_name": "Google Maps Platform ToS 2020-04-27", + "name": "Google Maps Platform Terms of Service 2020-04-27", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://cloud.google.com/maps-platform/terms", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2020-04-27", + "text_urls": [ + "https://cloud.google.com/maps-platform/terms/index-20200427" + ], + "minimum_coverage": 90, + "ignorable_authors": [ + "the U.S. Department", + "the United States Department of State" + ], + "ignorable_urls": [ + "https://cloud.google.com/maps-platform/pricing/sheet", + "https://cloud.google.com/maps-platform/terms", + "https://cloud.google.com/maps-platform/terms/aup", + "https://cloud.google.com/maps-platform/terms/maps-controller-terms", + "https://cloud.google.com/maps-platform/terms/maps-deprecation", + "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", + "https://cloud.google.com/maps-platform/terms/maps-service-terms", + "https://cloud.google.com/maps-platform/terms/maps-services", + "https://cloud.google.com/maps-platform/terms/sla", + "https://cloud.google.com/maps-platform/terms/tssg", + "https://developers.google.com/maps/documentation", + "https://www.google.com/about/company/user-consent-policy.html", + "https://www.google.com/dmca.html", + "https://www.google.com/help/legalnotices_maps.html", + "https://www.google.com/permissions/geoguidelines.html#geotrademark", + "https://www.google.com/permissions/trademark/brand-terms.html", + "https://www.google.com/policies/privacy" + ], + "ignorable_emails": [ + "legal-notices@google.com" + ] +} \ No newline at end of file diff --git a/docs/google-maps-tos-2020-05-06.LICENSE b/docs/google-maps-tos-2020-05-06.LICENSE index 5a9d734da8..bafd106c14 100644 --- a/docs/google-maps-tos-2020-05-06.LICENSE +++ b/docs/google-maps-tos-2020-05-06.LICENSE @@ -1,3 +1,40 @@ +--- +key: google-maps-tos-2020-05-06 +short_name: Google Maps Platform ToS 2020-05-06 +name: Google Maps Platform Terms of Service 2020-05-06 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2020-05-06 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20200506 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://cloud.google.com/terms/google-entity + - https://developers.google.com/maps/documentation + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: May 6, 2020 @@ -415,4 +452,4 @@ Asia Pacific - Indonesia PT Google Cloud Indonesia 3. Section 19.15 (Conflicting Languages) is deleted and replaced with the following: -19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version. \ No newline at end of file +19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version. \ No newline at end of file diff --git a/docs/google-maps-tos-2020-05-06.html b/docs/google-maps-tos-2020-05-06.html index dd6031b196..933605a560 100644 --- a/docs/google-maps-tos-2020-05-06.html +++ b/docs/google-maps-tos-2020-05-06.html @@ -575,7 +575,7 @@ 3. Section 19.15 (Conflicting Languages) is deleted and replaced with the following: -19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version. +19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version.
@@ -587,7 +587,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-maps-tos-2020-05-06.json b/docs/google-maps-tos-2020-05-06.json index 825ec396ad..fc80bab975 100644 --- a/docs/google-maps-tos-2020-05-06.json +++ b/docs/google-maps-tos-2020-05-06.json @@ -1 +1,40 @@ -{"key": "google-maps-tos-2020-05-06", "short_name": "Google Maps Platform ToS 2020-05-06", "name": "Google Maps Platform Terms of Service 2020-05-06", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://cloud.google.com/maps-platform/terms", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2020-05-06", "text_urls": ["https://cloud.google.com/maps-platform/terms/index-20200506"], "minimum_coverage": 90, "ignorable_authors": ["the U.S. Department", "the United States Department of State"], "ignorable_urls": ["https://cloud.google.com/maps-platform/pricing/sheet", "https://cloud.google.com/maps-platform/terms", "https://cloud.google.com/maps-platform/terms/aup", "https://cloud.google.com/maps-platform/terms/maps-controller-terms", "https://cloud.google.com/maps-platform/terms/maps-deprecation", "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", "https://cloud.google.com/maps-platform/terms/maps-service-terms", "https://cloud.google.com/maps-platform/terms/maps-services", "https://cloud.google.com/maps-platform/terms/sla", "https://cloud.google.com/maps-platform/terms/tssg", "https://cloud.google.com/terms/google-entity", "https://developers.google.com/maps/documentation", "https://www.google.com/about/company/user-consent-policy.html", "https://www.google.com/dmca.html", "https://www.google.com/help/legalnotices_maps.html", "https://www.google.com/permissions/geoguidelines.html#geotrademark", "https://www.google.com/permissions/trademark/brand-terms.html", "https://www.google.com/policies/privacy"], "ignorable_emails": ["legal-notices@google.com"]} \ No newline at end of file +{ + "key": "google-maps-tos-2020-05-06", + "short_name": "Google Maps Platform ToS 2020-05-06", + "name": "Google Maps Platform Terms of Service 2020-05-06", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://cloud.google.com/maps-platform/terms", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2020-05-06", + "text_urls": [ + "https://cloud.google.com/maps-platform/terms/index-20200506" + ], + "minimum_coverage": 90, + "ignorable_authors": [ + "the U.S. Department", + "the United States Department of State" + ], + "ignorable_urls": [ + "https://cloud.google.com/maps-platform/pricing/sheet", + "https://cloud.google.com/maps-platform/terms", + "https://cloud.google.com/maps-platform/terms/aup", + "https://cloud.google.com/maps-platform/terms/maps-controller-terms", + "https://cloud.google.com/maps-platform/terms/maps-deprecation", + "https://cloud.google.com/maps-platform/terms/maps-prohibited-territories", + "https://cloud.google.com/maps-platform/terms/maps-service-terms", + "https://cloud.google.com/maps-platform/terms/maps-services", + "https://cloud.google.com/maps-platform/terms/sla", + "https://cloud.google.com/maps-platform/terms/tssg", + "https://cloud.google.com/terms/google-entity", + "https://developers.google.com/maps/documentation", + "https://www.google.com/about/company/user-consent-policy.html", + "https://www.google.com/dmca.html", + "https://www.google.com/help/legalnotices_maps.html", + "https://www.google.com/permissions/geoguidelines.html#geotrademark", + "https://www.google.com/permissions/trademark/brand-terms.html", + "https://www.google.com/policies/privacy" + ], + "ignorable_emails": [ + "legal-notices@google.com" + ] +} \ No newline at end of file diff --git a/docs/google-ml-kit-tos-2022.LICENSE b/docs/google-ml-kit-tos-2022.LICENSE index d44fff6035..4aebbe4a8b 100644 --- a/docs/google-ml-kit-tos-2022.LICENSE +++ b/docs/google-ml-kit-tos-2022.LICENSE @@ -1,3 +1,17 @@ +--- +key: google-ml-kit-tos-2022 +short_name: Google ML Kit TOS 2022 +name: Google ML Kit Terms of Service 2022 +category: Proprietary Free +owner: Google +homepage_url: https://developers.google.com/ml-kit/terms +spdx_license_key: LicenseRef-scancode-google-ml-kit-tos-2022 +other_urls: + - https://developers.google.com/terms + - https://developers.google.com/ml-kit/android-data-disclosure + - https://developers.google.com/ml-kit/ios-data-disclosure +--- + Terms & Privacy ML KIT Terms of Service The following terms apply to your use of ML Kit APIs. These terms incorporate and are subject to the Google APIs Terms of Service. diff --git a/docs/google-ml-kit-tos-2022.html b/docs/google-ml-kit-tos-2022.html index b2dfe2a5d4..c60f0ab4c5 100644 --- a/docs/google-ml-kit-tos-2022.html +++ b/docs/google-ml-kit-tos-2022.html @@ -157,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-ml-kit-tos-2022.json b/docs/google-ml-kit-tos-2022.json index 397e8ffcc4..f4cea90baa 100644 --- a/docs/google-ml-kit-tos-2022.json +++ b/docs/google-ml-kit-tos-2022.json @@ -1 +1,14 @@ -{"key": "google-ml-kit-tos-2022", "short_name": "Google ML Kit TOS 2022", "name": "Google ML Kit Terms of Service 2022", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://developers.google.com/ml-kit/terms", "spdx_license_key": "LicenseRef-scancode-google-ml-kit-tos-2022", "other_urls": ["https://developers.google.com/terms", "https://developers.google.com/ml-kit/android-data-disclosure", "https://developers.google.com/ml-kit/ios-data-disclosure"]} \ No newline at end of file +{ + "key": "google-ml-kit-tos-2022", + "short_name": "Google ML Kit TOS 2022", + "name": "Google ML Kit Terms of Service 2022", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://developers.google.com/ml-kit/terms", + "spdx_license_key": "LicenseRef-scancode-google-ml-kit-tos-2022", + "other_urls": [ + "https://developers.google.com/terms", + "https://developers.google.com/ml-kit/android-data-disclosure", + "https://developers.google.com/ml-kit/ios-data-disclosure" + ] +} \ No newline at end of file diff --git a/docs/google-patent-license-fuchsia.LICENSE b/docs/google-patent-license-fuchsia.LICENSE index d62d4bd845..cdd2ce7c0b 100644 --- a/docs/google-patent-license-fuchsia.LICENSE +++ b/docs/google-patent-license-fuchsia.LICENSE @@ -1,3 +1,16 @@ +--- +key: google-patent-license-fuchsia +short_name: Google Patent License for Fuchsia +name: Google Patent License for Fuchsia +category: Patent License +owner: Google +homepage_url: https://fuchsia.googlesource.com/fuchsia/+/refs/heads/master/PATENTS +spdx_license_key: LicenseRef-scancode-google-patent-license-fuchsia +faq_url: https://en.wikipedia.org/wiki/Google_Fuchsia +other_urls: + - https://github.com/flutter/flutter/blob/master/PATENTS +--- + Additional IP Rights Grant (Patents) "This implementation" means the copyrightable works distributed by Google as part of the Fuchsia project. @@ -17,4 +30,4 @@ or counterclaim in a lawsuit) alleging that this implementation of Fuchsia constitutes direct or contributory patent infringement, or inducement of patent infringement, then any patent rights granted to you under this License for this implementation of Fuchsia shall terminate as -of the date such litigation is filed. +of the date such litigation is filed. \ No newline at end of file diff --git a/docs/google-patent-license-fuchsia.html b/docs/google-patent-license-fuchsia.html index 0ce8bf74ca..dfe6d9ace4 100644 --- a/docs/google-patent-license-fuchsia.html +++ b/docs/google-patent-license-fuchsia.html @@ -150,8 +150,7 @@ of Fuchsia constitutes direct or contributory patent infringement, or inducement of patent infringement, then any patent rights granted to you under this License for this implementation of Fuchsia shall terminate as -of the date such litigation is filed. - +of the date such litigation is filed.
@@ -163,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-patent-license-fuchsia.json b/docs/google-patent-license-fuchsia.json index f4117d4f2d..9eb46adca0 100644 --- a/docs/google-patent-license-fuchsia.json +++ b/docs/google-patent-license-fuchsia.json @@ -1 +1,13 @@ -{"key": "google-patent-license-fuchsia", "short_name": "Google Patent License for Fuchsia", "name": "Google Patent License for Fuchsia", "category": "Patent License", "owner": "Google", "homepage_url": "https://fuchsia.googlesource.com/fuchsia/+/refs/heads/master/PATENTS", "spdx_license_key": "LicenseRef-scancode-google-patent-license-fuchsia", "faq_url": "https://en.wikipedia.org/wiki/Google_Fuchsia", "other_urls": ["https://github.com/flutter/flutter/blob/master/PATENTS"]} \ No newline at end of file +{ + "key": "google-patent-license-fuchsia", + "short_name": "Google Patent License for Fuchsia", + "name": "Google Patent License for Fuchsia", + "category": "Patent License", + "owner": "Google", + "homepage_url": "https://fuchsia.googlesource.com/fuchsia/+/refs/heads/master/PATENTS", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-fuchsia", + "faq_url": "https://en.wikipedia.org/wiki/Google_Fuchsia", + "other_urls": [ + "https://github.com/flutter/flutter/blob/master/PATENTS" + ] +} \ No newline at end of file diff --git a/docs/google-patent-license-fuschia.LICENSE b/docs/google-patent-license-fuschia.LICENSE index d62d4bd845..fc62e8f6f2 100644 --- a/docs/google-patent-license-fuschia.LICENSE +++ b/docs/google-patent-license-fuschia.LICENSE @@ -1,3 +1,15 @@ +--- +key: google-patent-license-fuschia +is_deprecated: yes +short_name: Google Patent License for Fuschia +name: Google Patent License for Fuschia +category: Patent License +owner: Google +homepage_url: https://github.com/flutter/flutter/blob/master/PATENTS +notes: there was a typo in the license name and key and this is now replaced by google-patent-license-fuchsia +faq_url: https://en.wikipedia.org/wiki/Google_Fuchsia +--- + Additional IP Rights Grant (Patents) "This implementation" means the copyrightable works distributed by Google as part of the Fuchsia project. @@ -17,4 +29,4 @@ or counterclaim in a lawsuit) alleging that this implementation of Fuchsia constitutes direct or contributory patent infringement, or inducement of patent infringement, then any patent rights granted to you under this License for this implementation of Fuchsia shall terminate as -of the date such litigation is filed. +of the date such litigation is filed. \ No newline at end of file diff --git a/docs/google-patent-license-fuschia.html b/docs/google-patent-license-fuschia.html index 636c1a2d20..261d58e10e 100644 --- a/docs/google-patent-license-fuschia.html +++ b/docs/google-patent-license-fuschia.html @@ -148,8 +148,7 @@ of Fuchsia constitutes direct or contributory patent infringement, or inducement of patent infringement, then any patent rights granted to you under this License for this implementation of Fuchsia shall terminate as -of the date such litigation is filed. - +of the date such litigation is filed.
@@ -161,7 +160,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-patent-license-fuschia.json b/docs/google-patent-license-fuschia.json index a1874070e8..014270bb63 100644 --- a/docs/google-patent-license-fuschia.json +++ b/docs/google-patent-license-fuschia.json @@ -1 +1,11 @@ -{"key": "google-patent-license-fuschia", "is_deprecated": true, "short_name": "Google Patent License for Fuschia", "name": "Google Patent License for Fuschia", "category": "Patent License", "owner": "Google", "homepage_url": "https://github.com/flutter/flutter/blob/master/PATENTS", "notes": "there was a typo in the license name and key and this is now replaced by google-patent-license-fuchsia", "faq_url": "https://en.wikipedia.org/wiki/Google_Fuchsia"} \ No newline at end of file +{ + "key": "google-patent-license-fuschia", + "is_deprecated": true, + "short_name": "Google Patent License for Fuschia", + "name": "Google Patent License for Fuschia", + "category": "Patent License", + "owner": "Google", + "homepage_url": "https://github.com/flutter/flutter/blob/master/PATENTS", + "notes": "there was a typo in the license name and key and this is now replaced by google-patent-license-fuchsia", + "faq_url": "https://en.wikipedia.org/wiki/Google_Fuchsia" +} \ No newline at end of file diff --git a/docs/google-patent-license-golang.LICENSE b/docs/google-patent-license-golang.LICENSE index 4b49510c06..53fca01746 100644 --- a/docs/google-patent-license-golang.LICENSE +++ b/docs/google-patent-license-golang.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-patent-license-golang +short_name: Google Patent License for Go +name: Google Patent License for Go +category: Patent License +owner: Google +homepage_url: https://golang.org/PATENTS +spdx_license_key: LicenseRef-scancode-google-patent-license-golang +--- + Additional IP Rights Grant (Patents) "This implementation" means the copyrightable works distributed by Google as @@ -17,4 +27,4 @@ cross-claim or counterclaim in a lawsuit) alleging that this implementation of Go or any code incorporated within this implementation of Go constitutes direct or contributory patent infringement, or inducement of patent infringement, then any patent rights granted to you under this License for this implementation of -Go shall terminate as of the date such litigation is filed. +Go shall terminate as of the date such litigation is filed. \ No newline at end of file diff --git a/docs/google-patent-license-golang.html b/docs/google-patent-license-golang.html index 8f8d9eeaa7..f92b1e9d70 100644 --- a/docs/google-patent-license-golang.html +++ b/docs/google-patent-license-golang.html @@ -134,8 +134,7 @@ Go or any code incorporated within this implementation of Go constitutes direct or contributory patent infringement, or inducement of patent infringement, then any patent rights granted to you under this License for this implementation of -Go shall terminate as of the date such litigation is filed. - +Go shall terminate as of the date such litigation is filed.
@@ -147,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-patent-license-golang.json b/docs/google-patent-license-golang.json index 398c2dafc6..f52a0819c4 100644 --- a/docs/google-patent-license-golang.json +++ b/docs/google-patent-license-golang.json @@ -1 +1,9 @@ -{"key": "google-patent-license-golang", "short_name": "Google Patent License for Go", "name": "Google Patent License for Go", "category": "Patent License", "owner": "Google", "homepage_url": "https://golang.org/PATENTS", "spdx_license_key": "LicenseRef-scancode-google-patent-license-golang"} \ No newline at end of file +{ + "key": "google-patent-license-golang", + "short_name": "Google Patent License for Go", + "name": "Google Patent License for Go", + "category": "Patent License", + "owner": "Google", + "homepage_url": "https://golang.org/PATENTS", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-golang" +} \ No newline at end of file diff --git a/docs/google-patent-license-webm.LICENSE b/docs/google-patent-license-webm.LICENSE index 754624395f..e28a82d58d 100644 --- a/docs/google-patent-license-webm.LICENSE +++ b/docs/google-patent-license-webm.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-patent-license-webm +short_name: Google Patent License for WebM +name: Google Patent License for WebM +category: Patent License +owner: Google +homepage_url: https://www.webmproject.org/license/additional/ +spdx_license_key: LicenseRef-scancode-google-patent-license-webm +--- + Additional IP Rights Grant (Patents) ------------------------------------ @@ -21,4 +31,4 @@ of WebM or any code incorporated within any of these implementations of WebM constitute direct or contributory patent infringement, or inducement of patent infringement, then any patent rights granted to you under this License for these implementations of WebM shall terminate as -of the date such litigation is filed. +of the date such litigation is filed. \ No newline at end of file diff --git a/docs/google-patent-license-webm.html b/docs/google-patent-license-webm.html index 6d0d353580..6be314008a 100644 --- a/docs/google-patent-license-webm.html +++ b/docs/google-patent-license-webm.html @@ -138,8 +138,7 @@ WebM constitute direct or contributory patent infringement, or inducement of patent infringement, then any patent rights granted to you under this License for these implementations of WebM shall terminate as -of the date such litigation is filed. - +of the date such litigation is filed.
@@ -151,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-patent-license-webm.json b/docs/google-patent-license-webm.json index 7132fe0c37..b13e212070 100644 --- a/docs/google-patent-license-webm.json +++ b/docs/google-patent-license-webm.json @@ -1 +1,9 @@ -{"key": "google-patent-license-webm", "short_name": "Google Patent License for WebM", "name": "Google Patent License for WebM", "category": "Patent License", "owner": "Google", "homepage_url": "https://www.webmproject.org/license/additional/", "spdx_license_key": "LicenseRef-scancode-google-patent-license-webm"} \ No newline at end of file +{ + "key": "google-patent-license-webm", + "short_name": "Google Patent License for WebM", + "name": "Google Patent License for WebM", + "category": "Patent License", + "owner": "Google", + "homepage_url": "https://www.webmproject.org/license/additional/", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-webm" +} \ No newline at end of file diff --git a/docs/google-patent-license-webrtc.LICENSE b/docs/google-patent-license-webrtc.LICENSE index 49405d9345..639c091234 100644 --- a/docs/google-patent-license-webrtc.LICENSE +++ b/docs/google-patent-license-webrtc.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-patent-license-webrtc +short_name: Google Patent License for WebRTC +name: Google Patent License for WebRTC +category: Patent License +owner: Google +homepage_url: https://webrtc.org/license/additional-ip-grant/ +spdx_license_key: LicenseRef-scancode-google-patent-license-webrtc +--- + Additional IP Rights Grant (Patents) "This implementation" means the copyrightable works distributed by diff --git a/docs/google-patent-license-webrtc.html b/docs/google-patent-license-webrtc.html index 000f0d1dfe..9e79484eaf 100644 --- a/docs/google-patent-license-webrtc.html +++ b/docs/google-patent-license-webrtc.html @@ -150,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-patent-license-webrtc.json b/docs/google-patent-license-webrtc.json index b69aab6ffb..d987b572cd 100644 --- a/docs/google-patent-license-webrtc.json +++ b/docs/google-patent-license-webrtc.json @@ -1 +1,9 @@ -{"key": "google-patent-license-webrtc", "short_name": "Google Patent License for WebRTC", "name": "Google Patent License for WebRTC", "category": "Patent License", "owner": "Google", "homepage_url": "https://webrtc.org/license/additional-ip-grant/", "spdx_license_key": "LicenseRef-scancode-google-patent-license-webrtc"} \ No newline at end of file +{ + "key": "google-patent-license-webrtc", + "short_name": "Google Patent License for WebRTC", + "name": "Google Patent License for WebRTC", + "category": "Patent License", + "owner": "Google", + "homepage_url": "https://webrtc.org/license/additional-ip-grant/", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-webrtc" +} \ No newline at end of file diff --git a/docs/google-patent-license.LICENSE b/docs/google-patent-license.LICENSE index 0df0589687..c5e64c1031 100644 --- a/docs/google-patent-license.LICENSE +++ b/docs/google-patent-license.LICENSE @@ -1,3 +1,12 @@ +--- +key: google-patent-license +short_name: Google Patent License +name: Google Patent License +category: Patent License +owner: Google +spdx_license_key: LicenseRef-scancode-google-patent-license +--- + Google 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, @@ -14,4 +23,4 @@ cross-claim or counterclaim in a lawsuit) alleging that this implementation constitutes direct or contributory patent infringement, or inducement of patent infringement, then any patent rights granted to you under this License for this implementation shall terminate as -of the date such litigation is filed. +of the date such litigation is filed. \ No newline at end of file diff --git a/docs/google-patent-license.html b/docs/google-patent-license.html index 22063a3c0d..83baed828c 100644 --- a/docs/google-patent-license.html +++ b/docs/google-patent-license.html @@ -124,8 +124,7 @@ implementation constitutes direct or contributory patent infringement, or inducement of patent infringement, then any patent rights granted to you under this License for this implementation shall terminate as -of the date such litigation is filed. - +of the date such litigation is filed.
@@ -137,7 +136,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-patent-license.json b/docs/google-patent-license.json index 25af6f9244..3ad5961c71 100644 --- a/docs/google-patent-license.json +++ b/docs/google-patent-license.json @@ -1 +1,8 @@ -{"key": "google-patent-license", "short_name": "Google Patent License", "name": "Google Patent License", "category": "Patent License", "owner": "Google", "spdx_license_key": "LicenseRef-scancode-google-patent-license"} \ No newline at end of file +{ + "key": "google-patent-license", + "short_name": "Google Patent License", + "name": "Google Patent License", + "category": "Patent License", + "owner": "Google", + "spdx_license_key": "LicenseRef-scancode-google-patent-license" +} \ No newline at end of file diff --git a/docs/google-playcore-sdk-tos-2020.LICENSE b/docs/google-playcore-sdk-tos-2020.LICENSE index 0b13b361ff..7a7e02ee8a 100644 --- a/docs/google-playcore-sdk-tos-2020.LICENSE +++ b/docs/google-playcore-sdk-tos-2020.LICENSE @@ -1,3 +1,18 @@ +--- +key: google-playcore-sdk-tos-2020 +short_name: Google Play Core SDK TOS 2020 +name: Google +category: Proprietary Free +owner: Google +homepage_url: https://developer.android.com/guide/playcore#license +spdx_license_key: LicenseRef-scancode-google-playcore-sdk-tos-2020 +other_urls: + - https://developers.google.com/terms + - https://developer.android.com/guide/playcore/license +ignorable_urls: + - https://developer.android.com/guide/playcore/license +--- + Play Core Software Development Kit Terms of Service Last modified: September 24, 2020 diff --git a/docs/google-playcore-sdk-tos-2020.html b/docs/google-playcore-sdk-tos-2020.html index 7be8525b99..984c503f24 100644 --- a/docs/google-playcore-sdk-tos-2020.html +++ b/docs/google-playcore-sdk-tos-2020.html @@ -156,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-playcore-sdk-tos-2020.json b/docs/google-playcore-sdk-tos-2020.json index f6f31cf989..c534f78464 100644 --- a/docs/google-playcore-sdk-tos-2020.json +++ b/docs/google-playcore-sdk-tos-2020.json @@ -1 +1,16 @@ -{"key": "google-playcore-sdk-tos-2020", "short_name": "Google Play Core SDK TOS 2020", "name": "Google", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://developer.android.com/guide/playcore#license", "spdx_license_key": "LicenseRef-scancode-google-playcore-sdk-tos-2020", "other_urls": ["https://developers.google.com/terms", "https://developer.android.com/guide/playcore/license"], "ignorable_urls": ["https://developer.android.com/guide/playcore/license"]} \ No newline at end of file +{ + "key": "google-playcore-sdk-tos-2020", + "short_name": "Google Play Core SDK TOS 2020", + "name": "Google", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://developer.android.com/guide/playcore#license", + "spdx_license_key": "LicenseRef-scancode-google-playcore-sdk-tos-2020", + "other_urls": [ + "https://developers.google.com/terms", + "https://developer.android.com/guide/playcore/license" + ], + "ignorable_urls": [ + "https://developer.android.com/guide/playcore/license" + ] +} \ No newline at end of file diff --git a/docs/google-tos-2013.LICENSE b/docs/google-tos-2013.LICENSE index 491ad62146..e618290470 100644 --- a/docs/google-tos-2013.LICENSE +++ b/docs/google-tos-2013.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-tos-2013 +short_name: Google TOS 2013 +name: Google Terms of Service 2013 +category: Proprietary Free +owner: Google +homepage_url: http://www.google.com/intl/en/policies/terms/ +spdx_license_key: LicenseRef-scancode-google-tos-2013 +--- + Google Terms of Service Last modified: November 11, 2013 (view archived versions) diff --git a/docs/google-tos-2013.html b/docs/google-tos-2013.html index e77b8fdd28..f5487d297a 100644 --- a/docs/google-tos-2013.html +++ b/docs/google-tos-2013.html @@ -227,7 +227,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-tos-2013.json b/docs/google-tos-2013.json index bc424ad74d..acd792485f 100644 --- a/docs/google-tos-2013.json +++ b/docs/google-tos-2013.json @@ -1 +1,9 @@ -{"key": "google-tos-2013", "short_name": "Google TOS 2013", "name": "Google Terms of Service 2013", "category": "Proprietary Free", "owner": "Google", "homepage_url": "http://www.google.com/intl/en/policies/terms/", "spdx_license_key": "LicenseRef-scancode-google-tos-2013"} \ No newline at end of file +{ + "key": "google-tos-2013", + "short_name": "Google TOS 2013", + "name": "Google Terms of Service 2013", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "http://www.google.com/intl/en/policies/terms/", + "spdx_license_key": "LicenseRef-scancode-google-tos-2013" +} \ No newline at end of file diff --git a/docs/google-tos-2014.LICENSE b/docs/google-tos-2014.LICENSE index 0ed7564f4d..2544482b2f 100644 --- a/docs/google-tos-2014.LICENSE +++ b/docs/google-tos-2014.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-tos-2014 +short_name: Google TOS 2014 +name: Google Terms of Service 2014 +category: Proprietary Free +owner: Google +homepage_url: https://policies.google.com/terms/archive?hl=en +spdx_license_key: LicenseRef-scancode-google-tos-2014 +--- + Google Terms of Service Last modified: April 30, 2014 (view archived versions) diff --git a/docs/google-tos-2014.html b/docs/google-tos-2014.html index 1aa0375a5d..288e1d61bc 100644 --- a/docs/google-tos-2014.html +++ b/docs/google-tos-2014.html @@ -220,7 +220,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-tos-2014.json b/docs/google-tos-2014.json index 0157d64b28..e60e6ca451 100644 --- a/docs/google-tos-2014.json +++ b/docs/google-tos-2014.json @@ -1 +1,9 @@ -{"key": "google-tos-2014", "short_name": "Google TOS 2014", "name": "Google Terms of Service 2014", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://policies.google.com/terms/archive?hl=en", "spdx_license_key": "LicenseRef-scancode-google-tos-2014"} \ No newline at end of file +{ + "key": "google-tos-2014", + "short_name": "Google TOS 2014", + "name": "Google Terms of Service 2014", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://policies.google.com/terms/archive?hl=en", + "spdx_license_key": "LicenseRef-scancode-google-tos-2014" +} \ No newline at end of file diff --git a/docs/google-tos-2017.LICENSE b/docs/google-tos-2017.LICENSE index 68c06e04c7..f50bea7f7e 100644 --- a/docs/google-tos-2017.LICENSE +++ b/docs/google-tos-2017.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-tos-2017 +short_name: Google TOS 2017 +name: Google Terms of Service 2017 +category: Proprietary Free +owner: Google +homepage_url: https://policies.google.com/terms/archive?hl=en +spdx_license_key: LicenseRef-scancode-google-tos-2017 +--- + Google Terms of Service Last modified: October 25, 2017 (view archived versions) diff --git a/docs/google-tos-2017.html b/docs/google-tos-2017.html index 39ce521ced..50744e6592 100644 --- a/docs/google-tos-2017.html +++ b/docs/google-tos-2017.html @@ -220,7 +220,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-tos-2017.json b/docs/google-tos-2017.json index fd0c3a0257..02f044fdf8 100644 --- a/docs/google-tos-2017.json +++ b/docs/google-tos-2017.json @@ -1 +1,9 @@ -{"key": "google-tos-2017", "short_name": "Google TOS 2017", "name": "Google Terms of Service 2017", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://policies.google.com/terms/archive?hl=en", "spdx_license_key": "LicenseRef-scancode-google-tos-2017"} \ No newline at end of file +{ + "key": "google-tos-2017", + "short_name": "Google TOS 2017", + "name": "Google Terms of Service 2017", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://policies.google.com/terms/archive?hl=en", + "spdx_license_key": "LicenseRef-scancode-google-tos-2017" +} \ No newline at end of file diff --git a/docs/google-tos-2019.LICENSE b/docs/google-tos-2019.LICENSE index 6d6a4046d9..ba70c569e0 100644 --- a/docs/google-tos-2019.LICENSE +++ b/docs/google-tos-2019.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-tos-2019 +short_name: Google TOS 2019 +name: Google Terms of Service 2019 +category: Proprietary Free +owner: Google +homepage_url: https://policies.google.com/terms/archive?hl=en +spdx_license_key: LicenseRef-scancode-google-tos-2019 +--- + Google Terms of Service Effective January 22, 2019 (view archived versions) diff --git a/docs/google-tos-2019.html b/docs/google-tos-2019.html index 6276c4e1ff..16c9e27a3f 100644 --- a/docs/google-tos-2019.html +++ b/docs/google-tos-2019.html @@ -223,7 +223,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-tos-2019.json b/docs/google-tos-2019.json index 45f7af89ea..24bbdbb3ef 100644 --- a/docs/google-tos-2019.json +++ b/docs/google-tos-2019.json @@ -1 +1,9 @@ -{"key": "google-tos-2019", "short_name": "Google TOS 2019", "name": "Google Terms of Service 2019", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://policies.google.com/terms/archive?hl=en", "spdx_license_key": "LicenseRef-scancode-google-tos-2019"} \ No newline at end of file +{ + "key": "google-tos-2019", + "short_name": "Google TOS 2019", + "name": "Google Terms of Service 2019", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://policies.google.com/terms/archive?hl=en", + "spdx_license_key": "LicenseRef-scancode-google-tos-2019" +} \ No newline at end of file diff --git a/docs/google-tos-2020.LICENSE b/docs/google-tos-2020.LICENSE index 8d43b15bad..1077733519 100644 --- a/docs/google-tos-2020.LICENSE +++ b/docs/google-tos-2020.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-tos-2020 +short_name: Google TOS 2020 +name: Google Terms of Service 2020 +category: Proprietary Free +owner: Google +homepage_url: https://policies.google.com/terms/archive?hl=en +spdx_license_key: LicenseRef-scancode-google-tos-2020 +--- + Effective March 31, 2020 | Archived versions | Download PDF What’s covered in these terms diff --git a/docs/google-tos-2020.html b/docs/google-tos-2020.html index 6caa10ecd8..7eb79a6c06 100644 --- a/docs/google-tos-2020.html +++ b/docs/google-tos-2020.html @@ -386,7 +386,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/google-tos-2020.json b/docs/google-tos-2020.json index ddccb45049..6af2cba8d6 100644 --- a/docs/google-tos-2020.json +++ b/docs/google-tos-2020.json @@ -1 +1,9 @@ -{"key": "google-tos-2020", "short_name": "Google TOS 2020", "name": "Google Terms of Service 2020", "category": "Proprietary Free", "owner": "Google", "homepage_url": "https://policies.google.com/terms/archive?hl=en", "spdx_license_key": "LicenseRef-scancode-google-tos-2020"} \ No newline at end of file +{ + "key": "google-tos-2020", + "short_name": "Google TOS 2020", + "name": "Google Terms of Service 2020", + "category": "Proprietary Free", + "owner": "Google", + "homepage_url": "https://policies.google.com/terms/archive?hl=en", + "spdx_license_key": "LicenseRef-scancode-google-tos-2020" +} \ No newline at end of file diff --git a/docs/gpl-1.0-plus.LICENSE b/docs/gpl-1.0-plus.LICENSE index 1337c01828..9614c315f7 100644 --- a/docs/gpl-1.0-plus.LICENSE +++ b/docs/gpl-1.0-plus.LICENSE @@ -1,3 +1,28 @@ +--- +key: gpl-1.0-plus +short_name: GPL 1.0 or later +name: GNU General Public License 1.0 or later +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html +notes: Per SPDX.org, this license was released February 1989. +spdx_license_key: GPL-1.0-or-later +other_spdx_license_keys: + - GPL-1.0+ + - LicenseRef-GPL +text_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html +other_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 1989 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + 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 1, or (at your option) any later version. @@ -264,4 +289,4 @@ necessary. Here a sample; alter the names: , 1 April 1989 Ty Coon, President of Vice -That's all there is to it! +That's all there is to it! \ No newline at end of file diff --git a/docs/gpl-1.0-plus.html b/docs/gpl-1.0-plus.html index 23caa5d12b..89e00de7dd 100644 --- a/docs/gpl-1.0-plus.html +++ b/docs/gpl-1.0-plus.html @@ -440,8 +440,7 @@ <signature of Ty Coon>, 1 April 1989 Ty Coon, President of Vice -That's all there is to it! - +That's all there is to it!
@@ -453,7 +452,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-1.0-plus.json b/docs/gpl-1.0-plus.json index e9dd87c9fd..7a6d7d77b0 100644 --- a/docs/gpl-1.0-plus.json +++ b/docs/gpl-1.0-plus.json @@ -1 +1,29 @@ -{"key": "gpl-1.0-plus", "short_name": "GPL 1.0 or later", "name": "GNU General Public License 1.0 or later", "category": "Copyleft", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", "notes": "Per SPDX.org, this license was released February 1989.", "spdx_license_key": "GPL-1.0-or-later", "other_spdx_license_keys": ["GPL-1.0+", "LicenseRef-GPL"], "text_urls": ["http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"], "other_urls": ["https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"], "minimum_coverage": 99, "ignorable_copyrights": ["Copyright (c) 1989 Free Software Foundation, Inc.", "copyrighted by the Free Software Foundation"], "ignorable_holders": ["Free Software Foundation, Inc.", "the Free Software Foundation"]} \ No newline at end of file +{ + "key": "gpl-1.0-plus", + "short_name": "GPL 1.0 or later", + "name": "GNU General Public License 1.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "notes": "Per SPDX.org, this license was released February 1989.", + "spdx_license_key": "GPL-1.0-or-later", + "other_spdx_license_keys": [ + "GPL-1.0+", + "LicenseRef-GPL" + ], + "text_urls": [ + "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" + ], + "other_urls": [ + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" + ], + "minimum_coverage": 99, + "ignorable_copyrights": [ + "Copyright (c) 1989 Free Software Foundation, Inc.", + "copyrighted by the Free Software Foundation" + ], + "ignorable_holders": [ + "Free Software Foundation, Inc.", + "the Free Software Foundation" + ] +} \ No newline at end of file diff --git a/docs/gpl-1.0.LICENSE b/docs/gpl-1.0.LICENSE index 0bdd8f026e..d178c5b5b3 100644 --- a/docs/gpl-1.0.LICENSE +++ b/docs/gpl-1.0.LICENSE @@ -1,3 +1,27 @@ +--- +key: gpl-1.0 +short_name: GPL 1.0 +name: GNU General Public License 1.0 +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-1.0.html +notes: Per SPDX.org, this license was released February 1989. +spdx_license_key: GPL-1.0-only +other_spdx_license_keys: + - GPL-1.0 +text_urls: + - http://www.gnu.org/licenses/gpl-1.0.txt +faq_url: http://www.gnu.org/licenses/gpl-faq.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html + - https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html +ignorable_copyrights: + - Copyright (c) 1989 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- GNU GENERAL PUBLIC LICENSE Version 1, February 1989 @@ -252,4 +276,4 @@ necessary. Here a sample; alter the names: , 1 April 1989 Ty Coon, President of Vice -That's all there is to it! +That's all there is to it! \ No newline at end of file diff --git a/docs/gpl-1.0.html b/docs/gpl-1.0.html index b57147666d..0d608e9e20 100644 --- a/docs/gpl-1.0.html +++ b/docs/gpl-1.0.html @@ -174,8 +174,7 @@
license_text
-

-                    GNU GENERAL PUBLIC LICENSE
+    
                    GNU GENERAL PUBLIC LICENSE
                      Version 1, February 1989
 
  Copyright (C) 1989 Free Software Foundation, Inc.
@@ -428,8 +427,7 @@
   <signature of Ty Coon>, 1 April 1989
   Ty Coon, President of Vice
 
-That's all there is to it!
-
+That's all there is to it!
@@ -441,7 +439,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-1.0.json b/docs/gpl-1.0.json index 767f141e10..987eb8dec5 100644 --- a/docs/gpl-1.0.json +++ b/docs/gpl-1.0.json @@ -1 +1,29 @@ -{"key": "gpl-1.0", "short_name": "GPL 1.0", "name": "GNU General Public License 1.0", "category": "Copyleft", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html", "notes": "Per SPDX.org, this license was released February 1989.", "spdx_license_key": "GPL-1.0-only", "other_spdx_license_keys": ["GPL-1.0"], "text_urls": ["http://www.gnu.org/licenses/gpl-1.0.txt"], "faq_url": "http://www.gnu.org/licenses/gpl-faq.html", "other_urls": ["http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"], "ignorable_copyrights": ["Copyright (c) 1989 Free Software Foundation, Inc.", "copyrighted by the Free Software Foundation"], "ignorable_holders": ["Free Software Foundation, Inc.", "the Free Software Foundation"]} \ No newline at end of file +{ + "key": "gpl-1.0", + "short_name": "GPL 1.0", + "name": "GNU General Public License 1.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html", + "notes": "Per SPDX.org, this license was released February 1989.", + "spdx_license_key": "GPL-1.0-only", + "other_spdx_license_keys": [ + "GPL-1.0" + ], + "text_urls": [ + "http://www.gnu.org/licenses/gpl-1.0.txt" + ], + "faq_url": "http://www.gnu.org/licenses/gpl-faq.html", + "other_urls": [ + "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 1989 Free Software Foundation, Inc.", + "copyrighted by the Free Software Foundation" + ], + "ignorable_holders": [ + "Free Software Foundation, Inc.", + "the Free Software Foundation" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-adaptec.LICENSE b/docs/gpl-2.0-adaptec.LICENSE index 96975ffa7c..d663f5e6bc 100644 --- a/docs/gpl-2.0-adaptec.LICENSE +++ b/docs/gpl-2.0-adaptec.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-adaptec +short_name: GPL 2.0 plus Adaptec conditions +name: GPL 2.0 plus Adaptec conditions +category: Copyleft +owner: Adaptec +notes: this is a combination of GPL and BSD terms +spdx_license_key: LicenseRef-scancode-gpl-2.0-adaptec +minimum_coverage: 90 +--- + You are permitted to redistribute, use and modify this README file in whole or in part in conjunction with redistribution of software governed by the General Public License, provided that the following conditions are met: @@ -22,4 +33,4 @@ 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 README -FILE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +FILE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/gpl-2.0-adaptec.html b/docs/gpl-2.0-adaptec.html index 2326575a1b..aaa8e34ac2 100644 --- a/docs/gpl-2.0-adaptec.html +++ b/docs/gpl-2.0-adaptec.html @@ -146,8 +146,7 @@ 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 README -FILE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - +FILE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -159,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-adaptec.json b/docs/gpl-2.0-adaptec.json index ec0c1ea45c..864d2dac8b 100644 --- a/docs/gpl-2.0-adaptec.json +++ b/docs/gpl-2.0-adaptec.json @@ -1 +1,10 @@ -{"key": "gpl-2.0-adaptec", "short_name": "GPL 2.0 plus Adaptec conditions", "name": "GPL 2.0 plus Adaptec conditions", "category": "Copyleft", "owner": "Adaptec", "notes": "this is a combination of GPL and BSD terms", "spdx_license_key": "LicenseRef-scancode-gpl-2.0-adaptec", "minimum_coverage": 90} \ No newline at end of file +{ + "key": "gpl-2.0-adaptec", + "short_name": "GPL 2.0 plus Adaptec conditions", + "name": "GPL 2.0 plus Adaptec conditions", + "category": "Copyleft", + "owner": "Adaptec", + "notes": "this is a combination of GPL and BSD terms", + "spdx_license_key": "LicenseRef-scancode-gpl-2.0-adaptec", + "minimum_coverage": 90 +} \ No newline at end of file diff --git a/docs/gpl-2.0-autoconf.LICENSE b/docs/gpl-2.0-autoconf.LICENSE index 7f04b5aed0..af3a52332c 100644 --- a/docs/gpl-2.0-autoconf.LICENSE +++ b/docs/gpl-2.0-autoconf.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-autoconf +is_deprecated: yes +short_name: GPL 2.0 with Autoconf exception +name: GPL 2.0 with Autoconf exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +notes: replaced by autoconf-exception-2.0 +is_exception: yes +spdx_license_key: GPL-2.0-with-autoconf-exception +text_urls: + - http://ac-archive.sourceforge.net/doc/copyright.html +--- + This library 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 2, or (at your option) diff --git a/docs/gpl-2.0-autoconf.html b/docs/gpl-2.0-autoconf.html index 3a2459c007..eeb9af9385 100644 --- a/docs/gpl-2.0-autoconf.html +++ b/docs/gpl-2.0-autoconf.html @@ -168,7 +168,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-autoconf.json b/docs/gpl-2.0-autoconf.json index f39996549b..1fcb7e60de 100644 --- a/docs/gpl-2.0-autoconf.json +++ b/docs/gpl-2.0-autoconf.json @@ -1 +1,14 @@ -{"key": "gpl-2.0-autoconf", "is_deprecated": true, "short_name": "GPL 2.0 with Autoconf exception", "name": "GPL 2.0 with Autoconf exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "notes": "replaced by autoconf-exception-2.0", "is_exception": true, "spdx_license_key": "GPL-2.0-with-autoconf-exception", "text_urls": ["http://ac-archive.sourceforge.net/doc/copyright.html"]} \ No newline at end of file +{ + "key": "gpl-2.0-autoconf", + "is_deprecated": true, + "short_name": "GPL 2.0 with Autoconf exception", + "name": "GPL 2.0 with Autoconf exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "notes": "replaced by autoconf-exception-2.0", + "is_exception": true, + "spdx_license_key": "GPL-2.0-with-autoconf-exception", + "text_urls": [ + "http://ac-archive.sourceforge.net/doc/copyright.html" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-autoopts.LICENSE b/docs/gpl-2.0-autoopts.LICENSE index 6925c85bce..5c821b29c0 100644 --- a/docs/gpl-2.0-autoopts.LICENSE +++ b/docs/gpl-2.0-autoopts.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-autoopts +is_deprecated: yes +short_name: GPL 2.0 or later with AutoOpts exception +name: GPL 2.0 or later with AutoOpts exception +category: Copyleft Limited +owner: Bruce Korb +homepage_url: http://www.gnu.org/software/autogen/autoopts.html +is_exception: yes +--- + Automated Options is free software. You may redistribute it and/or modify it under the terms of the GNU General Public License, as published by the Free Software diff --git a/docs/gpl-2.0-autoopts.html b/docs/gpl-2.0-autoopts.html index a3af40a8b4..be5815feeb 100644 --- a/docs/gpl-2.0-autoopts.html +++ b/docs/gpl-2.0-autoopts.html @@ -171,7 +171,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-autoopts.json b/docs/gpl-2.0-autoopts.json index 1e0512944a..fc3b738b2a 100644 --- a/docs/gpl-2.0-autoopts.json +++ b/docs/gpl-2.0-autoopts.json @@ -1 +1,10 @@ -{"key": "gpl-2.0-autoopts", "is_deprecated": true, "short_name": "GPL 2.0 or later with AutoOpts exception", "name": "GPL 2.0 or later with AutoOpts exception", "category": "Copyleft Limited", "owner": "Bruce Korb", "homepage_url": "http://www.gnu.org/software/autogen/autoopts.html", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-2.0-autoopts", + "is_deprecated": true, + "short_name": "GPL 2.0 or later with AutoOpts exception", + "name": "GPL 2.0 or later with AutoOpts exception", + "category": "Copyleft Limited", + "owner": "Bruce Korb", + "homepage_url": "http://www.gnu.org/software/autogen/autoopts.html", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-2.0-bison-2.2.LICENSE b/docs/gpl-2.0-bison-2.2.LICENSE index 5e117332df..2a9ed927b4 100644 --- a/docs/gpl-2.0-bison-2.2.LICENSE +++ b/docs/gpl-2.0-bison-2.2.LICENSE @@ -1,3 +1,16 @@ +--- +key: gpl-2.0-bison-2.2 +is_deprecated: yes +short_name: GPL 2.0 or later with Bison 2.2 exception +name: GPL 2.0 or later with Bison 2.2 exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +notes: replaced by an expression of gpl-2.0 WITH bison-exception-2.2 Was formerly using this + deprecated SDX id GPL-2.0-with-bison-exception +is_exception: yes +faq_url: http://www.gnu.org/software/bison/manual/bison.html#Conditions +--- + 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 2, or (at your option) any diff --git a/docs/gpl-2.0-bison-2.2.html b/docs/gpl-2.0-bison-2.2.html index d3cb6fb0ea..591893d618 100644 --- a/docs/gpl-2.0-bison-2.2.html +++ b/docs/gpl-2.0-bison-2.2.html @@ -166,7 +166,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-bison-2.2.json b/docs/gpl-2.0-bison-2.2.json index 82274cebc1..e088b99428 100644 --- a/docs/gpl-2.0-bison-2.2.json +++ b/docs/gpl-2.0-bison-2.2.json @@ -1 +1,11 @@ -{"key": "gpl-2.0-bison-2.2", "is_deprecated": true, "short_name": "GPL 2.0 or later with Bison 2.2 exception", "name": "GPL 2.0 or later with Bison 2.2 exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "notes": "replaced by an expression of gpl-2.0 WITH bison-exception-2.2 Was formerly using this deprecated SDX id GPL-2.0-with-bison-exception", "is_exception": true, "faq_url": "http://www.gnu.org/software/bison/manual/bison.html#Conditions"} \ No newline at end of file +{ + "key": "gpl-2.0-bison-2.2", + "is_deprecated": true, + "short_name": "GPL 2.0 or later with Bison 2.2 exception", + "name": "GPL 2.0 or later with Bison 2.2 exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "notes": "replaced by an expression of gpl-2.0 WITH bison-exception-2.2 Was formerly using this deprecated SDX id GPL-2.0-with-bison-exception", + "is_exception": true, + "faq_url": "http://www.gnu.org/software/bison/manual/bison.html#Conditions" +} \ No newline at end of file diff --git a/docs/gpl-2.0-bison.LICENSE b/docs/gpl-2.0-bison.LICENSE index 2a2cee27ae..e7dc677172 100644 --- a/docs/gpl-2.0-bison.LICENSE +++ b/docs/gpl-2.0-bison.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-bison +is_deprecated: yes +short_name: GPL 2.0 with bison exception +name: GPL 2.0 with bison exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +notes: replaced by bison-exception-2.0 +is_exception: yes +faq_url: http://www.gnu.org/software/bison/manual/bison.html#Conditions +other_urls: + - http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141 +--- + This library 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 2, or (at your option) any diff --git a/docs/gpl-2.0-bison.html b/docs/gpl-2.0-bison.html index 8b9d171afd..48158dc716 100644 --- a/docs/gpl-2.0-bison.html +++ b/docs/gpl-2.0-bison.html @@ -168,7 +168,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-bison.json b/docs/gpl-2.0-bison.json index bab5b3d888..c0b35638e6 100644 --- a/docs/gpl-2.0-bison.json +++ b/docs/gpl-2.0-bison.json @@ -1 +1,14 @@ -{"key": "gpl-2.0-bison", "is_deprecated": true, "short_name": "GPL 2.0 with bison exception", "name": "GPL 2.0 with bison exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "notes": "replaced by bison-exception-2.0", "is_exception": true, "faq_url": "http://www.gnu.org/software/bison/manual/bison.html#Conditions", "other_urls": ["http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141"]} \ No newline at end of file +{ + "key": "gpl-2.0-bison", + "is_deprecated": true, + "short_name": "GPL 2.0 with bison exception", + "name": "GPL 2.0 with bison exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "notes": "replaced by bison-exception-2.0", + "is_exception": true, + "faq_url": "http://www.gnu.org/software/bison/manual/bison.html#Conditions", + "other_urls": [ + "http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-broadcom-linking.LICENSE b/docs/gpl-2.0-broadcom-linking.LICENSE index a0aac3ade3..05537c6f50 100644 --- a/docs/gpl-2.0-broadcom-linking.LICENSE +++ b/docs/gpl-2.0-broadcom-linking.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-broadcom-linking +is_deprecated: yes +short_name: GPL 2.0 with Broadcom Linking Exception +name: GPL 2.0 with Broadcom Linking Exception +category: Copyleft Limited +owner: Broadcom +notes: replaced by broadcom-linking-exception-2.0 +is_exception: yes +--- + Unless you and Broadcom execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2 (the diff --git a/docs/gpl-2.0-broadcom-linking.html b/docs/gpl-2.0-broadcom-linking.html index a8e174d5bb..b9b7e45a08 100644 --- a/docs/gpl-2.0-broadcom-linking.html +++ b/docs/gpl-2.0-broadcom-linking.html @@ -153,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-broadcom-linking.json b/docs/gpl-2.0-broadcom-linking.json index 2e37c2dedc..63399df067 100644 --- a/docs/gpl-2.0-broadcom-linking.json +++ b/docs/gpl-2.0-broadcom-linking.json @@ -1 +1,10 @@ -{"key": "gpl-2.0-broadcom-linking", "is_deprecated": true, "short_name": "GPL 2.0 with Broadcom Linking Exception", "name": "GPL 2.0 with Broadcom Linking Exception", "category": "Copyleft Limited", "owner": "Broadcom", "notes": "replaced by broadcom-linking-exception-2.0", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-2.0-broadcom-linking", + "is_deprecated": true, + "short_name": "GPL 2.0 with Broadcom Linking Exception", + "name": "GPL 2.0 with Broadcom Linking Exception", + "category": "Copyleft Limited", + "owner": "Broadcom", + "notes": "replaced by broadcom-linking-exception-2.0", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-2.0-classpath.LICENSE b/docs/gpl-2.0-classpath.LICENSE index e69de29bb2..8c8e7b75c4 100644 --- a/docs/gpl-2.0-classpath.LICENSE +++ b/docs/gpl-2.0-classpath.LICENSE @@ -0,0 +1,26 @@ +--- +key: gpl-2.0-classpath +is_deprecated: yes +short_name: GPL 2.0 with classpath exception +name: GPL 2.0 with classpath exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/software/classpath/ +notes: This is an obsolete license replaced by the classpath-exception-2.0 +is_exception: yes +spdx_license_key: GPL-2.0-with-classpath-exception +text_urls: + - http://www.gnu.org/software/classpath/license.html +other_urls: + - http://en.wikipedia.org/wiki/GPL_linking_exception +--- + +This library 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 2, 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 General Public License for more details. + +You should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. + +As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. \ No newline at end of file diff --git a/docs/gpl-2.0-classpath.html b/docs/gpl-2.0-classpath.html index d70a07324d..5c16cadb7d 100644 --- a/docs/gpl-2.0-classpath.html +++ b/docs/gpl-2.0-classpath.html @@ -154,7 +154,15 @@
license_text
-
+
This library 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 2, 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 General Public License for more details.
+
+You should have received a copy of the GNU General Public License along with this library; see the file COPYING.  If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination.
+
+As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.
@@ -166,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-classpath.json b/docs/gpl-2.0-classpath.json index 70b842bef8..0b643639db 100644 --- a/docs/gpl-2.0-classpath.json +++ b/docs/gpl-2.0-classpath.json @@ -1 +1,18 @@ -{"key": "gpl-2.0-classpath", "is_deprecated": true, "short_name": "GPL 2.0 with classpath exception", "name": "GPL 2.0 with classpath exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/software/classpath/", "notes": "This is an obsolete license replaced by the classpath-exception-2.0", "is_exception": true, "spdx_license_key": "GPL-2.0-with-classpath-exception", "text_urls": ["http://www.gnu.org/software/classpath/license.html"], "other_urls": ["http://en.wikipedia.org/wiki/GPL_linking_exception"]} \ No newline at end of file +{ + "key": "gpl-2.0-classpath", + "is_deprecated": true, + "short_name": "GPL 2.0 with classpath exception", + "name": "GPL 2.0 with classpath exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/software/classpath/", + "notes": "This is an obsolete license replaced by the classpath-exception-2.0", + "is_exception": true, + "spdx_license_key": "GPL-2.0-with-classpath-exception", + "text_urls": [ + "http://www.gnu.org/software/classpath/license.html" + ], + "other_urls": [ + "http://en.wikipedia.org/wiki/GPL_linking_exception" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-cygwin.LICENSE b/docs/gpl-2.0-cygwin.LICENSE index f575bff86b..dc6860ace6 100644 --- a/docs/gpl-2.0-cygwin.LICENSE +++ b/docs/gpl-2.0-cygwin.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-cygwin +is_deprecated: yes +short_name: GPL 2.0 with Cygwin exception +name: GPL 2.0 with Cygwin exception +category: Copyleft Limited +owner: Cygwin Project +homepage_url: http://cygwin.com/licensing.html +notes: replaced by cygwin-exception-2.0 +is_exception: yes +text_urls: + - http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (GPL) version 2, as published by the Free Software Foundation. diff --git a/docs/gpl-2.0-cygwin.html b/docs/gpl-2.0-cygwin.html index 3b4c697b0a..bd81d14e02 100644 --- a/docs/gpl-2.0-cygwin.html +++ b/docs/gpl-2.0-cygwin.html @@ -186,7 +186,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-cygwin.json b/docs/gpl-2.0-cygwin.json index 12e75043e3..1fc425f584 100644 --- a/docs/gpl-2.0-cygwin.json +++ b/docs/gpl-2.0-cygwin.json @@ -1 +1,14 @@ -{"key": "gpl-2.0-cygwin", "is_deprecated": true, "short_name": "GPL 2.0 with Cygwin exception", "name": "GPL 2.0 with Cygwin exception", "category": "Copyleft Limited", "owner": "Cygwin Project", "homepage_url": "http://cygwin.com/licensing.html", "notes": "replaced by cygwin-exception-2.0", "is_exception": true, "text_urls": ["http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src"]} \ No newline at end of file +{ + "key": "gpl-2.0-cygwin", + "is_deprecated": true, + "short_name": "GPL 2.0 with Cygwin exception", + "name": "GPL 2.0 with Cygwin exception", + "category": "Copyleft Limited", + "owner": "Cygwin Project", + "homepage_url": "http://cygwin.com/licensing.html", + "notes": "replaced by cygwin-exception-2.0", + "is_exception": true, + "text_urls": [ + "http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-djvu.LICENSE b/docs/gpl-2.0-djvu.LICENSE index 95c8b7bc9a..e62224117c 100644 --- a/docs/gpl-2.0-djvu.LICENSE +++ b/docs/gpl-2.0-djvu.LICENSE @@ -1,3 +1,21 @@ +--- +key: gpl-2.0-djvu +short_name: GPL 2.0 with DjVu Patent Grant +name: GNU General Public License 2.0 with DjVu Patent Grant +category: Copyleft +owner: LizardTech +notes: GPL and other terms +spdx_license_key: LicenseRef-scancode-gpl-2.0-djvu +other_urls: + - https://sourceforge.net/projects/djvu/files/DjVuLibre/3.5.1/djvulibre-3.5.1.tar.gz/download +ignorable_copyrights: + - Copyright (c) 1999-2001 LizardTech, Inc. +ignorable_holders: + - LizardTech, Inc. +ignorable_urls: + - http://www.fsf.org/ +--- + DjVu (r) Reference Library (v. 3.5) Copyright (c) 1999-2001 LizardTech, Inc. All Rights Reserved. diff --git a/docs/gpl-2.0-djvu.html b/docs/gpl-2.0-djvu.html index abe095fddc..8337cc6462 100644 --- a/docs/gpl-2.0-djvu.html +++ b/docs/gpl-2.0-djvu.html @@ -192,7 +192,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-djvu.json b/docs/gpl-2.0-djvu.json index bd42d3af5c..c4bcc1360a 100644 --- a/docs/gpl-2.0-djvu.json +++ b/docs/gpl-2.0-djvu.json @@ -1 +1,21 @@ -{"key": "gpl-2.0-djvu", "short_name": "GPL 2.0 with DjVu Patent Grant", "name": "GNU General Public License 2.0 with DjVu Patent Grant", "category": "Copyleft", "owner": "LizardTech", "notes": "GPL and other terms", "spdx_license_key": "LicenseRef-scancode-gpl-2.0-djvu", "other_urls": ["https://sourceforge.net/projects/djvu/files/DjVuLibre/3.5.1/djvulibre-3.5.1.tar.gz/download"], "ignorable_copyrights": ["Copyright (c) 1999-2001 LizardTech, Inc."], "ignorable_holders": ["LizardTech, Inc."], "ignorable_urls": ["http://www.fsf.org/"]} \ No newline at end of file +{ + "key": "gpl-2.0-djvu", + "short_name": "GPL 2.0 with DjVu Patent Grant", + "name": "GNU General Public License 2.0 with DjVu Patent Grant", + "category": "Copyleft", + "owner": "LizardTech", + "notes": "GPL and other terms", + "spdx_license_key": "LicenseRef-scancode-gpl-2.0-djvu", + "other_urls": [ + "https://sourceforge.net/projects/djvu/files/DjVuLibre/3.5.1/djvulibre-3.5.1.tar.gz/download" + ], + "ignorable_copyrights": [ + "Copyright (c) 1999-2001 LizardTech, Inc." + ], + "ignorable_holders": [ + "LizardTech, Inc." + ], + "ignorable_urls": [ + "http://www.fsf.org/" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-font.LICENSE b/docs/gpl-2.0-font.LICENSE index d3c7e2e747..abf8dcc88c 100644 --- a/docs/gpl-2.0-font.LICENSE +++ b/docs/gpl-2.0-font.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-font +is_deprecated: yes +short_name: GPL 2.0 with font exception +name: GPL 2.0 with font exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-faq.html#FontException +notes: replaced by font-exception-gpl +is_exception: yes +spdx_license_key: GPL-2.0-with-font-exception +text_urls: + - http://www.gnu.org/licenses/gpl-faq.html#FontException +--- This library 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 diff --git a/docs/gpl-2.0-font.html b/docs/gpl-2.0-font.html index 4d58ce43fe..f5bfffbe6c 100644 --- a/docs/gpl-2.0-font.html +++ b/docs/gpl-2.0-font.html @@ -145,8 +145,7 @@
license_text
-

-This library is free software; you can redistribute it and/or modify it under
+    
This library 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 2, or (at your option) any later version.
 
@@ -179,7 +178,8 @@
       AboutCode
     

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-font.json b/docs/gpl-2.0-font.json index 5f939770e7..23eaeda891 100644 --- a/docs/gpl-2.0-font.json +++ b/docs/gpl-2.0-font.json @@ -1 +1,15 @@ -{"key": "gpl-2.0-font", "is_deprecated": true, "short_name": "GPL 2.0 with font exception", "name": "GPL 2.0 with font exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/gpl-faq.html#FontException", "notes": "replaced by font-exception-gpl", "is_exception": true, "spdx_license_key": "GPL-2.0-with-font-exception", "text_urls": ["http://www.gnu.org/licenses/gpl-faq.html#FontException"]} \ No newline at end of file +{ + "key": "gpl-2.0-font", + "is_deprecated": true, + "short_name": "GPL 2.0 with font exception", + "name": "GPL 2.0 with font exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-faq.html#FontException", + "notes": "replaced by font-exception-gpl", + "is_exception": true, + "spdx_license_key": "GPL-2.0-with-font-exception", + "text_urls": [ + "http://www.gnu.org/licenses/gpl-faq.html#FontException" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-freertos.LICENSE b/docs/gpl-2.0-freertos.LICENSE index 339328239c..2c3ea679d4 100644 --- a/docs/gpl-2.0-freertos.LICENSE +++ b/docs/gpl-2.0-freertos.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-freertos +is_deprecated: yes +short_name: GPL 2.0 with FreeRTOS exception +name: GPL 2.0 with FreeRTOS exception +category: Copyleft Limited +owner: FreeRTOS +homepage_url: http://www.freertos.org/a00114.html +notes: replaced by freertos-exception-2.0 +is_exception: yes +text_urls: + - http://www.freertos.org/ +--- + The FreeRTOS source code is licensed by a modified GNU General Public License - the modification taking the form of an exception. diff --git a/docs/gpl-2.0-freertos.html b/docs/gpl-2.0-freertos.html index 10879ca9df..094816a78c 100644 --- a/docs/gpl-2.0-freertos.html +++ b/docs/gpl-2.0-freertos.html @@ -243,7 +243,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-freertos.json b/docs/gpl-2.0-freertos.json index a94c35f4b7..100145f15f 100644 --- a/docs/gpl-2.0-freertos.json +++ b/docs/gpl-2.0-freertos.json @@ -1 +1,14 @@ -{"key": "gpl-2.0-freertos", "is_deprecated": true, "short_name": "GPL 2.0 with FreeRTOS exception", "name": "GPL 2.0 with FreeRTOS exception", "category": "Copyleft Limited", "owner": "FreeRTOS", "homepage_url": "http://www.freertos.org/a00114.html", "notes": "replaced by freertos-exception-2.0", "is_exception": true, "text_urls": ["http://www.freertos.org/"]} \ No newline at end of file +{ + "key": "gpl-2.0-freertos", + "is_deprecated": true, + "short_name": "GPL 2.0 with FreeRTOS exception", + "name": "GPL 2.0 with FreeRTOS exception", + "category": "Copyleft Limited", + "owner": "FreeRTOS", + "homepage_url": "http://www.freertos.org/a00114.html", + "notes": "replaced by freertos-exception-2.0", + "is_exception": true, + "text_urls": [ + "http://www.freertos.org/" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-gcc-compiler-exception.LICENSE b/docs/gpl-2.0-gcc-compiler-exception.LICENSE index 8a61fd7ef9..8ba324a289 100644 --- a/docs/gpl-2.0-gcc-compiler-exception.LICENSE +++ b/docs/gpl-2.0-gcc-compiler-exception.LICENSE @@ -1,3 +1,16 @@ +--- +key: gpl-2.0-gcc-compiler-exception +is_deprecated: yes +short_name: GPL 2.0 with GCC compiler exception +name: GPL 2.0 with GCC compiler exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +notes: replaced by gcc-compiler-exception-2.0 +is_exception: yes +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + GCC 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 2, or (at your option) diff --git a/docs/gpl-2.0-gcc-compiler-exception.html b/docs/gpl-2.0-gcc-compiler-exception.html index 94e87f1d22..38d0283e4e 100644 --- a/docs/gpl-2.0-gcc-compiler-exception.html +++ b/docs/gpl-2.0-gcc-compiler-exception.html @@ -163,7 +163,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-gcc-compiler-exception.json b/docs/gpl-2.0-gcc-compiler-exception.json index 7b26fb874f..a2df4aa75c 100644 --- a/docs/gpl-2.0-gcc-compiler-exception.json +++ b/docs/gpl-2.0-gcc-compiler-exception.json @@ -1 +1,13 @@ -{"key": "gpl-2.0-gcc-compiler-exception", "is_deprecated": true, "short_name": "GPL 2.0 with GCC compiler exception", "name": "GPL 2.0 with GCC compiler exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "notes": "replaced by gcc-compiler-exception-2.0", "is_exception": true, "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"]} \ No newline at end of file +{ + "key": "gpl-2.0-gcc-compiler-exception", + "is_deprecated": true, + "short_name": "GPL 2.0 with GCC compiler exception", + "name": "GPL 2.0 with GCC compiler exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "notes": "replaced by gcc-compiler-exception-2.0", + "is_exception": true, + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-gcc.LICENSE b/docs/gpl-2.0-gcc.LICENSE index 744cdd238f..6a732fc144 100644 --- a/docs/gpl-2.0-gcc.LICENSE +++ b/docs/gpl-2.0-gcc.LICENSE @@ -1,3 +1,18 @@ +--- +key: gpl-2.0-gcc +is_deprecated: yes +short_name: GPL 2.0 or later with GCC LInking exception +name: GPL 2.0 or later with GCC Runtime Library exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +notes: replaced by gcc-linking-exception-2.0 +is_exception: yes +spdx_license_key: GPL-2.0-with-GCC-exception +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10 +--- + This library 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 2, or (at your option) any diff --git a/docs/gpl-2.0-gcc.html b/docs/gpl-2.0-gcc.html index 784c3e4047..f275024216 100644 --- a/docs/gpl-2.0-gcc.html +++ b/docs/gpl-2.0-gcc.html @@ -173,7 +173,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-gcc.json b/docs/gpl-2.0-gcc.json index 1aa165874b..8080560d07 100644 --- a/docs/gpl-2.0-gcc.json +++ b/docs/gpl-2.0-gcc.json @@ -1 +1,15 @@ -{"key": "gpl-2.0-gcc", "is_deprecated": true, "short_name": "GPL 2.0 or later with GCC LInking exception", "name": "GPL 2.0 or later with GCC Runtime Library exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "notes": "replaced by gcc-linking-exception-2.0", "is_exception": true, "spdx_license_key": "GPL-2.0-with-GCC-exception", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt", "https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10"]} \ No newline at end of file +{ + "key": "gpl-2.0-gcc", + "is_deprecated": true, + "short_name": "GPL 2.0 or later with GCC LInking exception", + "name": "GPL 2.0 or later with GCC Runtime Library exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "notes": "replaced by gcc-linking-exception-2.0", + "is_exception": true, + "spdx_license_key": "GPL-2.0-with-GCC-exception", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt", + "https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-glibc.LICENSE b/docs/gpl-2.0-glibc.LICENSE index 25576119d9..7507a267da 100644 --- a/docs/gpl-2.0-glibc.LICENSE +++ b/docs/gpl-2.0-glibc.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-glibc +is_deprecated: yes +short_name: GPL 2.0 with GLibC exception +name: GPL 2.0 with GLibC exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl.html +notes: replaced by mif-exception +is_exception: yes +text_urls: + - http://www.gnu.org/licenses/gpl.html +--- + This library 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 2, or (at your option) any @@ -20,4 +34,4 @@ compile this file and link it with other files to produce an executable, this file does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be -covered by the GNU General Public License. +covered by the GNU General Public License. \ No newline at end of file diff --git a/docs/gpl-2.0-glibc.html b/docs/gpl-2.0-glibc.html index ed6515b2f3..146909623b 100644 --- a/docs/gpl-2.0-glibc.html +++ b/docs/gpl-2.0-glibc.html @@ -160,8 +160,7 @@ this file does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be -covered by the GNU General Public License. -
+covered by the GNU General Public License.
@@ -173,7 +172,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-glibc.json b/docs/gpl-2.0-glibc.json index d20decab52..ac4e0ac20a 100644 --- a/docs/gpl-2.0-glibc.json +++ b/docs/gpl-2.0-glibc.json @@ -1 +1,14 @@ -{"key": "gpl-2.0-glibc", "is_deprecated": true, "short_name": "GPL 2.0 with GLibC exception", "name": "GPL 2.0 with GLibC exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/gpl.html", "notes": "replaced by mif-exception", "is_exception": true, "text_urls": ["http://www.gnu.org/licenses/gpl.html"]} \ No newline at end of file +{ + "key": "gpl-2.0-glibc", + "is_deprecated": true, + "short_name": "GPL 2.0 with GLibC exception", + "name": "GPL 2.0 with GLibC exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl.html", + "notes": "replaced by mif-exception", + "is_exception": true, + "text_urls": [ + "http://www.gnu.org/licenses/gpl.html" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-guile.LICENSE b/docs/gpl-2.0-guile.LICENSE index 9543425c4e..a81ece626e 100644 --- a/docs/gpl-2.0-guile.LICENSE +++ b/docs/gpl-2.0-guile.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-guile +is_deprecated: yes +short_name: GPL 2.0 with GUILE exception +name: GPL 2.0 with GUILE exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +notes: replaced by guile-exception-2.0 +is_exception: yes +--- + This library 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 2, or (at your option) any diff --git a/docs/gpl-2.0-guile.html b/docs/gpl-2.0-guile.html index 023a2c73a4..fab12d7f23 100644 --- a/docs/gpl-2.0-guile.html +++ b/docs/gpl-2.0-guile.html @@ -170,7 +170,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-guile.json b/docs/gpl-2.0-guile.json index 0c2ddd7813..6ea1ac91d4 100644 --- a/docs/gpl-2.0-guile.json +++ b/docs/gpl-2.0-guile.json @@ -1 +1,10 @@ -{"key": "gpl-2.0-guile", "is_deprecated": true, "short_name": "GPL 2.0 with GUILE exception", "name": "GPL 2.0 with GUILE exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "notes": "replaced by guile-exception-2.0", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-2.0-guile", + "is_deprecated": true, + "short_name": "GPL 2.0 with GUILE exception", + "name": "GPL 2.0 with GUILE exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "notes": "replaced by guile-exception-2.0", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-2.0-ice.LICENSE b/docs/gpl-2.0-ice.LICENSE index 4cf0e8d028..0c4f9e5374 100644 --- a/docs/gpl-2.0-ice.LICENSE +++ b/docs/gpl-2.0-ice.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-ice +is_deprecated: yes +short_name: GPL 2.0 with Ice exception +name: GPL 2.0 with Ice exception +category: Copyleft +owner: ZeroC +homepage_url: https://github.com/zeroc-ice/ice/blob/master/ICE_LICENSE +notes: replaced by ice-exception-2.0 +is_exception: yes +other_urls: + - http://www.gnu.org/licenses +--- + This copy of Ice is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. diff --git a/docs/gpl-2.0-ice.html b/docs/gpl-2.0-ice.html index 2a346a00eb..5ac0c6b0a5 100644 --- a/docs/gpl-2.0-ice.html +++ b/docs/gpl-2.0-ice.html @@ -201,7 +201,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-ice.json b/docs/gpl-2.0-ice.json index f838b657f0..7c5a25d607 100644 --- a/docs/gpl-2.0-ice.json +++ b/docs/gpl-2.0-ice.json @@ -1 +1,14 @@ -{"key": "gpl-2.0-ice", "is_deprecated": true, "short_name": "GPL 2.0 with Ice exception", "name": "GPL 2.0 with Ice exception", "category": "Copyleft", "owner": "ZeroC", "homepage_url": "https://github.com/zeroc-ice/ice/blob/master/ICE_LICENSE", "notes": "replaced by ice-exception-2.0", "is_exception": true, "other_urls": ["http://www.gnu.org/licenses"]} \ No newline at end of file +{ + "key": "gpl-2.0-ice", + "is_deprecated": true, + "short_name": "GPL 2.0 with Ice exception", + "name": "GPL 2.0 with Ice exception", + "category": "Copyleft", + "owner": "ZeroC", + "homepage_url": "https://github.com/zeroc-ice/ice/blob/master/ICE_LICENSE", + "notes": "replaced by ice-exception-2.0", + "is_exception": true, + "other_urls": [ + "http://www.gnu.org/licenses" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-independent-module-linking.LICENSE b/docs/gpl-2.0-independent-module-linking.LICENSE index e69de29bb2..5da564432b 100644 --- a/docs/gpl-2.0-independent-module-linking.LICENSE +++ b/docs/gpl-2.0-independent-module-linking.LICENSE @@ -0,0 +1,52 @@ +--- +key: gpl-2.0-independent-module-linking +is_deprecated: yes +short_name: GPL 2.0 with Independent Module Linking exception +name: GPL 2.0 with Independent Module Linking exception +category: Copyleft Limited +owner: ICSharpCode +homepage_url: http://icsharpcode.github.io/SharpZipLib/ +notes: this is a classpath exception +is_exception: yes +--- + +This library 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 2, 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 +General Public License for more details. + +You should have received a copy of the GNU General Public License along +with this library; see the file COPYING. If not, write to the Free +Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA +02110-1301, USA. + +The library is released under the GPL with the following exception: + +Linking this library statically or dynamically with other modules is +making a combined work based on this library. Thus, the terms and +conditions of the GNU General Public License cover the whole +combination. + +As a special exception, the copyright holders of this library give you +permission to link this library with independent modules to produce an +executable, regardless of the license terms of these independent +modules, and to copy and distribute the resulting executable under terms +of your choice, provided that you also meet, for each linked independent +module, the terms and conditions of the license of that module. An +independent module is a module which is not derived from or based on +this library. If you modify this library, you may extend this exception +to your version of the library, but you are not obligated to do so. If +you do not wish to do so, delete this exception statement from your +version. + +Note The exception is changed to reflect the latest GNU Classpath +exception. Older versions of #ziplib did have another exception, but the +new one is clearer and it doesn't break compatibility with the old one. + +Bottom line In plain English this means you can use this library in +commercial closed-source applications. \ No newline at end of file diff --git a/docs/gpl-2.0-independent-module-linking.html b/docs/gpl-2.0-independent-module-linking.html index af338dce2c..50a704dc0a 100644 --- a/docs/gpl-2.0-independent-module-linking.html +++ b/docs/gpl-2.0-independent-module-linking.html @@ -129,7 +129,46 @@
license_text
-
+
This library 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 2, 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
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License along
+with this library; see the file COPYING.  If not, write to the Free
+Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301, USA.
+
+The library is released under the GPL with the following exception:
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under terms
+of your choice, provided that you also meet, for each linked independent
+module, the terms and conditions of the license of that module. An
+independent module is a module which is not derived from or based on
+this library. If you modify this library, you may extend this exception
+to your version of the library, but you are not obligated to do so. If
+you do not wish to do so, delete this exception statement from your
+version.
+
+Note The exception is changed to reflect the latest GNU Classpath
+exception. Older versions of #ziplib did have another exception, but the
+new one is clearer and it doesn't break compatibility with the old one.
+
+Bottom line In plain English this means you can use this library in
+commercial closed-source applications.
@@ -141,7 +180,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-independent-module-linking.json b/docs/gpl-2.0-independent-module-linking.json index 788aa522b1..67786bf1d7 100644 --- a/docs/gpl-2.0-independent-module-linking.json +++ b/docs/gpl-2.0-independent-module-linking.json @@ -1 +1,11 @@ -{"key": "gpl-2.0-independent-module-linking", "is_deprecated": true, "short_name": "GPL 2.0 with Independent Module Linking exception", "name": "GPL 2.0 with Independent Module Linking exception", "category": "Copyleft Limited", "owner": "ICSharpCode", "homepage_url": "http://icsharpcode.github.io/SharpZipLib/", "notes": "this is a classpath exception", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-2.0-independent-module-linking", + "is_deprecated": true, + "short_name": "GPL 2.0 with Independent Module Linking exception", + "name": "GPL 2.0 with Independent Module Linking exception", + "category": "Copyleft Limited", + "owner": "ICSharpCode", + "homepage_url": "http://icsharpcode.github.io/SharpZipLib/", + "notes": "this is a classpath exception", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-2.0-iolib.LICENSE b/docs/gpl-2.0-iolib.LICENSE index a6bd43cf02..2a28a24bb4 100644 --- a/docs/gpl-2.0-iolib.LICENSE +++ b/docs/gpl-2.0-iolib.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-iolib +is_deprecated: yes +short_name: GPL 2.0 with GNU IO Library exception +name: GPL 2.0 with GNU IO Library exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +notes: replaced by iolib-exception-2.0 +is_exception: yes +--- + This is part of libio/iostream, providing -*- C++ -*- input/output. Copyright (C) 2000 Free Software Foundation diff --git a/docs/gpl-2.0-iolib.html b/docs/gpl-2.0-iolib.html index 57b55cd6df..d246631d43 100644 --- a/docs/gpl-2.0-iolib.html +++ b/docs/gpl-2.0-iolib.html @@ -144,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-iolib.json b/docs/gpl-2.0-iolib.json index 2e054d6525..caa2134ff0 100644 --- a/docs/gpl-2.0-iolib.json +++ b/docs/gpl-2.0-iolib.json @@ -1 +1,10 @@ -{"key": "gpl-2.0-iolib", "is_deprecated": true, "short_name": "GPL 2.0 with GNU IO Library exception", "name": "GPL 2.0 with GNU IO Library exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "notes": "replaced by iolib-exception-2.0", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-2.0-iolib", + "is_deprecated": true, + "short_name": "GPL 2.0 with GNU IO Library exception", + "name": "GPL 2.0 with GNU IO Library exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "notes": "replaced by iolib-exception-2.0", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-2.0-iso-cpp.LICENSE b/docs/gpl-2.0-iso-cpp.LICENSE index b0a1d1b274..0732249826 100644 --- a/docs/gpl-2.0-iso-cpp.LICENSE +++ b/docs/gpl-2.0-iso-cpp.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-iso-cpp +is_deprecated: yes +short_name: GPL 2.0 with ISO C++ Library exception +name: GPL 2.0 with ISO C++ Library exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +notes: replaced by mif-exception +is_exception: yes +text_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + This file is part of the GNU ISO C++ Library. This library 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 @@ -20,4 +34,4 @@ compile this file and link it with other files to produce an executable, this file does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be -covered by the GNU General Public License. +covered by the GNU General Public License. \ No newline at end of file diff --git a/docs/gpl-2.0-iso-cpp.html b/docs/gpl-2.0-iso-cpp.html index 72991137c3..85268d48f2 100644 --- a/docs/gpl-2.0-iso-cpp.html +++ b/docs/gpl-2.0-iso-cpp.html @@ -160,8 +160,7 @@ this file does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be -covered by the GNU General Public License. - +covered by the GNU General Public License.
@@ -173,7 +172,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-iso-cpp.json b/docs/gpl-2.0-iso-cpp.json index 611f025823..672ebfa063 100644 --- a/docs/gpl-2.0-iso-cpp.json +++ b/docs/gpl-2.0-iso-cpp.json @@ -1 +1,14 @@ -{"key": "gpl-2.0-iso-cpp", "is_deprecated": true, "short_name": "GPL 2.0 with ISO C++ Library exception", "name": "GPL 2.0 with ISO C++ Library exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0.html", "notes": "replaced by mif-exception", "is_exception": true, "text_urls": ["http://www.gnu.org/licenses/old-licenses/gpl-2.0.html"]} \ No newline at end of file +{ + "key": "gpl-2.0-iso-cpp", + "is_deprecated": true, + "short_name": "GPL 2.0 with ISO C++ Library exception", + "name": "GPL 2.0 with ISO C++ Library exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0.html", + "notes": "replaced by mif-exception", + "is_exception": true, + "text_urls": [ + "http://www.gnu.org/licenses/old-licenses/gpl-2.0.html" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-javascript.LICENSE b/docs/gpl-2.0-javascript.LICENSE index 48fe96ed52..a70c156234 100644 --- a/docs/gpl-2.0-javascript.LICENSE +++ b/docs/gpl-2.0-javascript.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-javascript +is_deprecated: yes +short_name: GPL 2.0 with Javascript exception +name: GPL 2.0 with Javascript exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +notes: replaced by javascript-exception-2.0 +is_exception: yes +text_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + This library 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 2, or (at your option) any later version. diff --git a/docs/gpl-2.0-javascript.html b/docs/gpl-2.0-javascript.html index 839778f4a4..acb4dcd9a2 100644 --- a/docs/gpl-2.0-javascript.html +++ b/docs/gpl-2.0-javascript.html @@ -170,7 +170,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-javascript.json b/docs/gpl-2.0-javascript.json index c54b194980..426047e98b 100644 --- a/docs/gpl-2.0-javascript.json +++ b/docs/gpl-2.0-javascript.json @@ -1 +1,14 @@ -{"key": "gpl-2.0-javascript", "is_deprecated": true, "short_name": "GPL 2.0 with Javascript exception", "name": "GPL 2.0 with Javascript exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0.html", "notes": "replaced by javascript-exception-2.0", "is_exception": true, "text_urls": ["http://www.gnu.org/licenses/old-licenses/gpl-2.0.html"]} \ No newline at end of file +{ + "key": "gpl-2.0-javascript", + "is_deprecated": true, + "short_name": "GPL 2.0 with Javascript exception", + "name": "GPL 2.0 with Javascript exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0.html", + "notes": "replaced by javascript-exception-2.0", + "is_exception": true, + "text_urls": [ + "http://www.gnu.org/licenses/old-licenses/gpl-2.0.html" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-kernel.LICENSE b/docs/gpl-2.0-kernel.LICENSE index de50625fb5..7636c108ce 100644 --- a/docs/gpl-2.0-kernel.LICENSE +++ b/docs/gpl-2.0-kernel.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-kernel +is_deprecated: yes +short_name: GPL 2.0 with Kernel Exception +name: GPL 2.0 with Kernel Exception +category: Copyleft Limited +owner: Linux Foundation +notes: replaced by linux-syscall-exception-gpl +is_exception: yes +--- + NOTE! This copyright does *not* cover user programs that use kernel services by normal system calls - this is merely considered normal use of the kernel, and does *not* fall under the heading of "derived work". diff --git a/docs/gpl-2.0-kernel.html b/docs/gpl-2.0-kernel.html index a85648ed8a..1b272976e5 100644 --- a/docs/gpl-2.0-kernel.html +++ b/docs/gpl-2.0-kernel.html @@ -151,7 +151,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-kernel.json b/docs/gpl-2.0-kernel.json index 7400268a3d..8b6d6550ec 100644 --- a/docs/gpl-2.0-kernel.json +++ b/docs/gpl-2.0-kernel.json @@ -1 +1,10 @@ -{"key": "gpl-2.0-kernel", "is_deprecated": true, "short_name": "GPL 2.0 with Kernel Exception", "name": "GPL 2.0 with Kernel Exception", "category": "Copyleft Limited", "owner": "Linux Foundation", "notes": "replaced by linux-syscall-exception-gpl", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-2.0-kernel", + "is_deprecated": true, + "short_name": "GPL 2.0 with Kernel Exception", + "name": "GPL 2.0 with Kernel Exception", + "category": "Copyleft Limited", + "owner": "Linux Foundation", + "notes": "replaced by linux-syscall-exception-gpl", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-2.0-koterov.LICENSE b/docs/gpl-2.0-koterov.LICENSE index 527586cbac..2bfd339052 100644 --- a/docs/gpl-2.0-koterov.LICENSE +++ b/docs/gpl-2.0-koterov.LICENSE @@ -1,3 +1,19 @@ +--- +key: gpl-2.0-koterov +short_name: GPL 2.0 with Dmitry Koterov additions +name: GPL 2.0 with Dmitry Koterov additions +category: Copyleft +owner: Dmitry Koterov +homepage_url: https://github.com/DmitryKoterov/dklab_realplexor/blob/master/dklab_realplexor.license-additional.txt +spdx_license_key: LicenseRef-scancode-gpl-2.0-koterov +ignorable_authors: + - dmitry.koterov@gmail.com +ignorable_urls: + - http://dmitry.moikrug.ru/ +ignorable_emails: + - dmitry.koterov@gmail.com +--- + This library 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 2, 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 General Public License for more details. diff --git a/docs/gpl-2.0-koterov.html b/docs/gpl-2.0-koterov.html index fe0d8371ac..7f008b4205 100644 --- a/docs/gpl-2.0-koterov.html +++ b/docs/gpl-2.0-koterov.html @@ -176,7 +176,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-koterov.json b/docs/gpl-2.0-koterov.json index 7822b47128..bc33f98abb 100644 --- a/docs/gpl-2.0-koterov.json +++ b/docs/gpl-2.0-koterov.json @@ -1 +1,18 @@ -{"key": "gpl-2.0-koterov", "short_name": "GPL 2.0 with Dmitry Koterov additions", "name": "GPL 2.0 with Dmitry Koterov additions", "category": "Copyleft", "owner": "Dmitry Koterov", "homepage_url": "https://github.com/DmitryKoterov/dklab_realplexor/blob/master/dklab_realplexor.license-additional.txt", "spdx_license_key": "LicenseRef-scancode-gpl-2.0-koterov", "ignorable_authors": ["dmitry.koterov@gmail.com"], "ignorable_urls": ["http://dmitry.moikrug.ru/"], "ignorable_emails": ["dmitry.koterov@gmail.com"]} \ No newline at end of file +{ + "key": "gpl-2.0-koterov", + "short_name": "GPL 2.0 with Dmitry Koterov additions", + "name": "GPL 2.0 with Dmitry Koterov additions", + "category": "Copyleft", + "owner": "Dmitry Koterov", + "homepage_url": "https://github.com/DmitryKoterov/dklab_realplexor/blob/master/dklab_realplexor.license-additional.txt", + "spdx_license_key": "LicenseRef-scancode-gpl-2.0-koterov", + "ignorable_authors": [ + "dmitry.koterov@gmail.com" + ], + "ignorable_urls": [ + "http://dmitry.moikrug.ru/" + ], + "ignorable_emails": [ + "dmitry.koterov@gmail.com" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-libgit2.LICENSE b/docs/gpl-2.0-libgit2.LICENSE index da73566cbf..8dee7f2226 100644 --- a/docs/gpl-2.0-libgit2.LICENSE +++ b/docs/gpl-2.0-libgit2.LICENSE @@ -1,3 +1,24 @@ +--- +key: gpl-2.0-libgit2 +is_deprecated: yes +short_name: GPL 2.0 with libgit2 exception +name: GPL 2.0 with libgit2 exception +category: Copyleft Limited +owner: libgit2 Project +homepage_url: https://github.com/libgit2/libgit2/blob/master/COPYING +notes: replaced by gcc-linking-exception-2.0 +is_exception: yes +standard_notice: | + In addition to the permissions in the GNU General Public License, + the authors give you unlimited permission to link the compiled + version of this library into combinations with other programs, + and to distribute those combinations without any restriction + coming from the use of this file. (The General Public License + restrictions do apply in other respects; for example, they cover + modification of the file, and distribution when not linked into + a combined executable.) +--- + Note that the only valid version of the GPL as far as this project is concerned is _this_ particular version of the license (ie v2, not v2.2 or v3.x or whatever), unless explicitly otherwise stated. @@ -13,5 +34,4 @@ Note that the only valid version of the GPL as far as this project coming from the use of this file. (The General Public License restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked into - a combined executable.) - + a combined executable.) \ No newline at end of file diff --git a/docs/gpl-2.0-libgit2.html b/docs/gpl-2.0-libgit2.html index 82739a7a1c..9db24b72ee 100644 --- a/docs/gpl-2.0-libgit2.html +++ b/docs/gpl-2.0-libgit2.html @@ -138,6 +138,7 @@ restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked into a combined executable.) + @@ -158,9 +159,7 @@ coming from the use of this file. (The General Public License restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked into - a combined executable.) - - + a combined executable.)
@@ -172,7 +171,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-libgit2.json b/docs/gpl-2.0-libgit2.json index bbe0cc93f6..aa7b55d3d6 100644 --- a/docs/gpl-2.0-libgit2.json +++ b/docs/gpl-2.0-libgit2.json @@ -1 +1,12 @@ -{"key": "gpl-2.0-libgit2", "is_deprecated": true, "short_name": "GPL 2.0 with libgit2 exception", "name": "GPL 2.0 with libgit2 exception", "category": "Copyleft Limited", "owner": "libgit2 Project", "homepage_url": "https://github.com/libgit2/libgit2/blob/master/COPYING", "notes": "replaced by gcc-linking-exception-2.0", "is_exception": true, "standard_notice": "In addition to the permissions in the GNU General Public License,\nthe authors give you unlimited permission to link the compiled\nversion of this library into combinations with other programs,\nand to distribute those combinations without any restriction\ncoming from the use of this file. (The General Public License\nrestrictions do apply in other respects; for example, they cover\nmodification of the file, and distribution when not linked into\na combined executable.)"} \ No newline at end of file +{ + "key": "gpl-2.0-libgit2", + "is_deprecated": true, + "short_name": "GPL 2.0 with libgit2 exception", + "name": "GPL 2.0 with libgit2 exception", + "category": "Copyleft Limited", + "owner": "libgit2 Project", + "homepage_url": "https://github.com/libgit2/libgit2/blob/master/COPYING", + "notes": "replaced by gcc-linking-exception-2.0", + "is_exception": true, + "standard_notice": "In addition to the permissions in the GNU General Public License,\nthe authors give you unlimited permission to link the compiled\nversion of this library into combinations with other programs,\nand to distribute those combinations without any restriction\ncoming from the use of this file. (The General Public License\nrestrictions do apply in other respects; for example, they cover\nmodification of the file, and distribution when not linked into\na combined executable.)\n" +} \ No newline at end of file diff --git a/docs/gpl-2.0-library.LICENSE b/docs/gpl-2.0-library.LICENSE index e69de29bb2..cb3019fbb4 100644 --- a/docs/gpl-2.0-library.LICENSE +++ b/docs/gpl-2.0-library.LICENSE @@ -0,0 +1,38 @@ +--- +key: gpl-2.0-library +is_deprecated: yes +short_name: GPL 2.0 with Library exception +name: GPL 2.0 with Library exception +category: Copyleft Limited +owner: Grammatica +notes: | + this classpath exception notice was last used in older versions of + grammatica and is no longer relevant. Use the classpath-exception-2.0 + instead. +is_exception: yes +other_urls: + - http://grammatica.percederberg.net/index.html +--- + +The software in this package is distributed under the GNU General Public +License with the "Library Exception" described below. A copy of GNU +General Public License (GPL) is included in this distribution, in the +file LICENSE-GPL.txt. All the files distributed under GPL also include +the following special exception: + +As a special exception, the copyright holders of this library give you +permission to link this library with independent modules to produce an +executable, regardless of the license terms of these independent +modules, and to copy and distribute the resulting executable under terms +of your choice, provided that you also meet, for each linked independent +module, the terms and conditions of the license of that module. An +independent module is a module which is not derived from or based on +this library. If you modify this library, you may extend this exception +to your version of the library, but you are not obligated to do so. If +you do not wish to do so, delete this exception statement from your +version. + +As such, this software can be used to run free as well as proprietary +applications and applets. Modifications made to the classes in this +distribution must however be distributed under the GPL, optionally with +the same exception as above. \ No newline at end of file diff --git a/docs/gpl-2.0-library.html b/docs/gpl-2.0-library.html index c803d8d71c..86dff8510d 100644 --- a/docs/gpl-2.0-library.html +++ b/docs/gpl-2.0-library.html @@ -112,6 +112,7 @@ this classpath exception notice was last used in older versions of grammatica and is no longer relevant. Use the classpath-exception-2.0 instead. + @@ -133,7 +134,28 @@
license_text
-
+
The software in this package is distributed under the GNU General Public
+License with the "Library Exception" described below. A copy of GNU
+General Public License (GPL) is included in this distribution, in the
+file LICENSE-GPL.txt. All the files distributed under GPL also include
+the following special exception:
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under terms
+of your choice, provided that you also meet, for each linked independent
+module, the terms and conditions of the license of that module. An
+independent module is a module which is not derived from or based on
+this library. If you modify this library, you may extend this exception
+to your version of the library, but you are not obligated to do so. If
+you do not wish to do so, delete this exception statement from your
+version.
+
+As such, this software can be used to run free as well as proprietary
+applications and applets. Modifications made to the classes in this
+distribution must however be distributed under the GPL, optionally with
+the same exception as above.
@@ -145,7 +167,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-library.json b/docs/gpl-2.0-library.json index 5a35c835b9..475e816f8f 100644 --- a/docs/gpl-2.0-library.json +++ b/docs/gpl-2.0-library.json @@ -1 +1,13 @@ -{"key": "gpl-2.0-library", "is_deprecated": true, "short_name": "GPL 2.0 with Library exception", "name": "GPL 2.0 with Library exception", "category": "Copyleft Limited", "owner": "Grammatica", "notes": "this classpath exception notice was last used in older versions of\ngrammatica and is no longer relevant. Use the classpath-exception-2.0\ninstead.", "is_exception": true, "other_urls": ["http://grammatica.percederberg.net/index.html"]} \ No newline at end of file +{ + "key": "gpl-2.0-library", + "is_deprecated": true, + "short_name": "GPL 2.0 with Library exception", + "name": "GPL 2.0 with Library exception", + "category": "Copyleft Limited", + "owner": "Grammatica", + "notes": "this classpath exception notice was last used in older versions of\ngrammatica and is no longer relevant. Use the classpath-exception-2.0\ninstead.\n", + "is_exception": true, + "other_urls": [ + "http://grammatica.percederberg.net/index.html" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-libtool.LICENSE b/docs/gpl-2.0-libtool.LICENSE index 4d226ccf02..b1dc062dd4 100644 --- a/docs/gpl-2.0-libtool.LICENSE +++ b/docs/gpl-2.0-libtool.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-libtool +is_deprecated: yes +short_name: GPL 2.0 with GNU Libtool exception +name: GPL 2.0 with GNU Libtool exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +notes: replaced by libtool-exception-2.0 +is_exception: yes +--- + This library 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 2, or (at your option) any later version. diff --git a/docs/gpl-2.0-libtool.html b/docs/gpl-2.0-libtool.html index 9c907a4908..ca4bc13ceb 100644 --- a/docs/gpl-2.0-libtool.html +++ b/docs/gpl-2.0-libtool.html @@ -152,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-libtool.json b/docs/gpl-2.0-libtool.json index a6b1c2cffb..7a93560b33 100644 --- a/docs/gpl-2.0-libtool.json +++ b/docs/gpl-2.0-libtool.json @@ -1 +1,10 @@ -{"key": "gpl-2.0-libtool", "is_deprecated": true, "short_name": "GPL 2.0 with GNU Libtool exception", "name": "GPL 2.0 with GNU Libtool exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "notes": "replaced by libtool-exception-2.0", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-2.0-libtool", + "is_deprecated": true, + "short_name": "GPL 2.0 with GNU Libtool exception", + "name": "GPL 2.0 with GNU Libtool exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "notes": "replaced by libtool-exception-2.0", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-2.0-lmbench.LICENSE b/docs/gpl-2.0-lmbench.LICENSE index 1211a0fd10..431ba62b7e 100644 --- a/docs/gpl-2.0-lmbench.LICENSE +++ b/docs/gpl-2.0-lmbench.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-lmbench +is_deprecated: yes +short_name: GPL 2.0 with LMBench exception +name: GPL 2.0 with LMBench exception +category: Copyleft +owner: Larry McVoy +homepage_url: http://lmbench.sourceforge.net/ +is_exception: yes +--- + Distributed under the FSF GPL with additional restriction that results may be published only if (1) the benchmark is unmodified, and diff --git a/docs/gpl-2.0-lmbench.html b/docs/gpl-2.0-lmbench.html index de9b2c0584..60a8000b1a 100644 --- a/docs/gpl-2.0-lmbench.html +++ b/docs/gpl-2.0-lmbench.html @@ -148,7 +148,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-lmbench.json b/docs/gpl-2.0-lmbench.json index 98f2f83530..e252947ddd 100644 --- a/docs/gpl-2.0-lmbench.json +++ b/docs/gpl-2.0-lmbench.json @@ -1 +1,10 @@ -{"key": "gpl-2.0-lmbench", "is_deprecated": true, "short_name": "GPL 2.0 with LMBench exception", "name": "GPL 2.0 with LMBench exception", "category": "Copyleft", "owner": "Larry McVoy", "homepage_url": "http://lmbench.sourceforge.net/", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-2.0-lmbench", + "is_deprecated": true, + "short_name": "GPL 2.0 with LMBench exception", + "name": "GPL 2.0 with LMBench exception", + "category": "Copyleft", + "owner": "Larry McVoy", + "homepage_url": "http://lmbench.sourceforge.net/", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-2.0-mysql-connector-odbc.LICENSE b/docs/gpl-2.0-mysql-connector-odbc.LICENSE index 11ea87e122..d33dfce279 100644 --- a/docs/gpl-2.0-mysql-connector-odbc.LICENSE +++ b/docs/gpl-2.0-mysql-connector-odbc.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-mysql-connector-odbc +is_deprecated: yes +short_name: GPL 2.0 with MySQL Connector ODBC exception +name: GPL 2.0 with MySQL Connector ODBC exception +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +notes: replaced by mysql-connector-odbc-exception-2.0 +is_exception: yes +text_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + This library 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 2, or (at your option) any later version. diff --git a/docs/gpl-2.0-mysql-connector-odbc.html b/docs/gpl-2.0-mysql-connector-odbc.html index 25b7e18f3c..336fbb9077 100644 --- a/docs/gpl-2.0-mysql-connector-odbc.html +++ b/docs/gpl-2.0-mysql-connector-odbc.html @@ -165,7 +165,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-mysql-connector-odbc.json b/docs/gpl-2.0-mysql-connector-odbc.json index f9152cb6a0..7c364854c2 100644 --- a/docs/gpl-2.0-mysql-connector-odbc.json +++ b/docs/gpl-2.0-mysql-connector-odbc.json @@ -1 +1,14 @@ -{"key": "gpl-2.0-mysql-connector-odbc", "is_deprecated": true, "short_name": "GPL 2.0 with MySQL Connector ODBC exception", "name": "GPL 2.0 with MySQL Connector ODBC exception", "category": "Copyleft Limited", "owner": "Oracle Corporation", "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0.html", "notes": "replaced by mysql-connector-odbc-exception-2.0", "is_exception": true, "text_urls": ["http://www.gnu.org/licenses/old-licenses/gpl-2.0.html"]} \ No newline at end of file +{ + "key": "gpl-2.0-mysql-connector-odbc", + "is_deprecated": true, + "short_name": "GPL 2.0 with MySQL Connector ODBC exception", + "name": "GPL 2.0 with MySQL Connector ODBC exception", + "category": "Copyleft Limited", + "owner": "Oracle Corporation", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0.html", + "notes": "replaced by mysql-connector-odbc-exception-2.0", + "is_exception": true, + "text_urls": [ + "http://www.gnu.org/licenses/old-licenses/gpl-2.0.html" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-mysql-floss.LICENSE b/docs/gpl-2.0-mysql-floss.LICENSE index 16fdb7bee3..d0130fac36 100644 --- a/docs/gpl-2.0-mysql-floss.LICENSE +++ b/docs/gpl-2.0-mysql-floss.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-mysql-floss +is_deprecated: yes +short_name: GPL 2.0 with MySQL FLOSS exception +name: GPL 2.0 with MySQL FLOSS exception +category: Copyleft +owner: Oracle Corporation +homepage_url: https://mariadb.com/kb/en/mariadb/mariadb-license/#the-floss-exception +notes: replaced by mysql-floss-exception-2.0 +is_exception: yes +text_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + This library 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 2, or (at your option) any later version. diff --git a/docs/gpl-2.0-mysql-floss.html b/docs/gpl-2.0-mysql-floss.html index bd7e2706ab..7aa16e6654 100644 --- a/docs/gpl-2.0-mysql-floss.html +++ b/docs/gpl-2.0-mysql-floss.html @@ -269,7 +269,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-mysql-floss.json b/docs/gpl-2.0-mysql-floss.json index e51213fbad..a43d9f55b1 100644 --- a/docs/gpl-2.0-mysql-floss.json +++ b/docs/gpl-2.0-mysql-floss.json @@ -1 +1,14 @@ -{"key": "gpl-2.0-mysql-floss", "is_deprecated": true, "short_name": "GPL 2.0 with MySQL FLOSS exception", "name": "GPL 2.0 with MySQL FLOSS exception", "category": "Copyleft", "owner": "Oracle Corporation", "homepage_url": "https://mariadb.com/kb/en/mariadb/mariadb-license/#the-floss-exception", "notes": "replaced by mysql-floss-exception-2.0", "is_exception": true, "text_urls": ["http://www.gnu.org/licenses/old-licenses/gpl-2.0.html"]} \ No newline at end of file +{ + "key": "gpl-2.0-mysql-floss", + "is_deprecated": true, + "short_name": "GPL 2.0 with MySQL FLOSS exception", + "name": "GPL 2.0 with MySQL FLOSS exception", + "category": "Copyleft", + "owner": "Oracle Corporation", + "homepage_url": "https://mariadb.com/kb/en/mariadb/mariadb-license/#the-floss-exception", + "notes": "replaced by mysql-floss-exception-2.0", + "is_exception": true, + "text_urls": [ + "http://www.gnu.org/licenses/old-licenses/gpl-2.0.html" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-openjdk.LICENSE b/docs/gpl-2.0-openjdk.LICENSE index e69de29bb2..cbad7144b0 100644 --- a/docs/gpl-2.0-openjdk.LICENSE +++ b/docs/gpl-2.0-openjdk.LICENSE @@ -0,0 +1,52 @@ +--- +key: gpl-2.0-openjdk +is_deprecated: yes +short_name: GPL 2.0 with OpenJDK Classpath exception +name: GPL 2.0 with OpenJDK Classpath exception +category: Copyleft Limited +owner: Oracle (Sun) +notes: | + use a GPL with the openjdk-exception or with the classpath-exception-2.0 + instead +is_exception: yes +faq_url: http://openjdk.java.net/legal/exception-modules-2007-05-08.html +--- + +This library 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 2, 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 General Public License for more details. + +You should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +"CLASSPATH" EXCEPTION TO THE GPL VERSION 2 + +Certain source files distributed by Sun Microsystems, Inc. are subject to the following clarification and special exception to the GPL Version 2, but only where Sun has expressly included in the particular source file's header the words + +"Sun designates this particular file as subject to the "Classpath" exception as provided by Sun in the License file that accompanied this code." + +Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License Version 2 cover the whole combination. + +As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. + +OPENJDK ASSEMBLY EXCEPTION + +The OpenJDK source code made available openjdk.dev.java.net ("OpenJDK Code") is distributed under the terms of the GNU General Public License version 2 only ("GPL2"), with the following clarification and special exception. + +Linking this OpenJDK Code statically or dynamically with other code is making a combined work based on this library. Thus, the terms and conditions of GPL2 cover the whole combination. + +As a special exception, Sun gives you permission to link this OpenJDK Code with certain code licensed by Sun as indicated at http://openjdk.java.net/legal/exception-modules-2007-05-08.html ("Designated Exception Modules") to produce an executable, regardless of the license terms of the Designated Exception Modules, and to copy and distribute the resulting executable under GPL2, provided that the Designated Exception Modules continue to be governed by the licenses under which they were offered by Sun. + +As such, it allows licensees and sublicensees of Sun's GPL2 OpenJDK Code to build an executable that includes those portions of necessary code that Sun could not provide under GPL2 (or that Sun has provided under GPL2 with the Classpath exception). If you modify or add to the OpenJDK code, that new GPL2 code may still be combined with Designated Exception Modules if the new code is made subject to this exception by its copyright holder. + +from http://openjdk.java.net/legal/exception-modules-2007-05-08.html +OpenJDK Designated Exception Modules +8 May 2007 +For purposes of those files in the OpenJDK distribution that are subject to the Assembly Exception, the following shall be deemed Designated Exception Modules: + +Those files in the OpenJDK distribution available at openjdk.java.net, openjdk.dev.java.net, and download.java.net to which Sun has applied the Classpath Exception, + +Any of your derivative works of #1 above, to the extent you license them under the GPLv2 with the Classpath Exception as defined in the OpenJDK distribution available at openjdk.java.net, openjdk.dev.java.net, or download.java.net, + +Any files in the OpenJDK distribution that are made available at openjdk.java.net, openjdk.dev.java.net, or download.java.net under a binary code license, and + +Any files in the OpenJDK distribution that are made available at openjdk.java.net, openjdk.dev.java.net, or download.java.net under an open source license other than GPL, and your derivatives thereof that are in compliance with the applicable open source license. \ No newline at end of file diff --git a/docs/gpl-2.0-openjdk.html b/docs/gpl-2.0-openjdk.html index ebada8c9a3..e41940b7ca 100644 --- a/docs/gpl-2.0-openjdk.html +++ b/docs/gpl-2.0-openjdk.html @@ -111,6 +111,7 @@ use a GPL with the openjdk-exception or with the classpath-exception-2.0 instead + @@ -130,7 +131,44 @@
license_text
-
+
This library 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 2, 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 General Public License for more details.
+
+You should have received a copy of the GNU General Public License along with this library; see the file COPYING.  If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+"CLASSPATH" EXCEPTION TO THE GPL VERSION 2
+
+Certain source files distributed by Sun Microsystems, Inc. are subject to the following clarification and special exception to the GPL Version 2, but only where Sun has expressly included in the particular source file's header the words
+
+"Sun designates this particular file as subject to the "Classpath" exception as provided by Sun in the License file that accompanied this code."
+
+Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License Version 2 cover the whole combination.
+
+As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library,  but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. 
+
+OPENJDK ASSEMBLY EXCEPTION
+
+The OpenJDK source code made available openjdk.dev.java.net ("OpenJDK Code") is distributed under the terms of the GNU General Public License <http://www.gnu.org/copyleft/gpl.html> version 2 only ("GPL2"), with the following clarification and special exception.
+
+Linking this OpenJDK Code statically or dynamically with other code is making a combined work based on this library. Thus, the terms and conditions of GPL2 cover the whole combination.
+
+As a special exception, Sun gives you permission to link this OpenJDK Code with certain code licensed by Sun as indicated at http://openjdk.java.net/legal/exception-modules-2007-05-08.html ("Designated Exception Modules") to produce an executable, regardless of the license terms of the Designated Exception Modules, and to copy and distribute the resulting executable under GPL2, provided that the Designated Exception Modules continue to be governed by the licenses under which they were offered by Sun.
+
+As such, it allows licensees and sublicensees of Sun's GPL2 OpenJDK Code to build an executable that includes those portions of necessary code that Sun could not provide under GPL2 (or that Sun has provided under GPL2 with the Classpath exception). If you modify or add to the OpenJDK code, that new GPL2 code may still be combined with Designated Exception Modules if the new code is made subject to this exception by its copyright holder.
+
+from http://openjdk.java.net/legal/exception-modules-2007-05-08.html 
+OpenJDK Designated Exception Modules
+8 May 2007
+For purposes of those files in the OpenJDK distribution that are subject to the Assembly Exception, the following shall be deemed Designated Exception Modules:
+
+Those files in the OpenJDK distribution available at openjdk.java.net, openjdk.dev.java.net, and download.java.net to which Sun has applied the Classpath Exception,
+
+Any of your derivative works of #1 above, to the extent you license them under the GPLv2 with the Classpath Exception as defined in the OpenJDK distribution available at openjdk.java.net, openjdk.dev.java.net, or download.java.net,
+
+Any files in the OpenJDK distribution that are made available at openjdk.java.net, openjdk.dev.java.net, or download.java.net under a binary code license, and
+
+Any files in the OpenJDK distribution that are made available at openjdk.java.net, openjdk.dev.java.net, or download.java.net under an open source license other than GPL, and your derivatives thereof that are in compliance with the applicable open source license.
@@ -142,7 +180,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-openjdk.json b/docs/gpl-2.0-openjdk.json index 76321ed0b6..538eff8223 100644 --- a/docs/gpl-2.0-openjdk.json +++ b/docs/gpl-2.0-openjdk.json @@ -1 +1,11 @@ -{"key": "gpl-2.0-openjdk", "is_deprecated": true, "short_name": "GPL 2.0 with OpenJDK Classpath exception", "name": "GPL 2.0 with OpenJDK Classpath exception", "category": "Copyleft Limited", "owner": "Oracle (Sun)", "notes": "use a GPL with the openjdk-exception or with the classpath-exception-2.0\ninstead", "is_exception": true, "faq_url": "http://openjdk.java.net/legal/exception-modules-2007-05-08.html"} \ No newline at end of file +{ + "key": "gpl-2.0-openjdk", + "is_deprecated": true, + "short_name": "GPL 2.0 with OpenJDK Classpath exception", + "name": "GPL 2.0 with OpenJDK Classpath exception", + "category": "Copyleft Limited", + "owner": "Oracle (Sun)", + "notes": "use a GPL with the openjdk-exception or with the classpath-exception-2.0\ninstead\n", + "is_exception": true, + "faq_url": "http://openjdk.java.net/legal/exception-modules-2007-05-08.html" +} \ No newline at end of file diff --git a/docs/gpl-2.0-openssl.LICENSE b/docs/gpl-2.0-openssl.LICENSE index a16b9139e4..2ea0194b3b 100644 --- a/docs/gpl-2.0-openssl.LICENSE +++ b/docs/gpl-2.0-openssl.LICENSE @@ -1,3 +1,20 @@ +--- +key: gpl-2.0-openssl +is_deprecated: yes +short_name: GPL 2.0 with OpenSSL exception +name: GPL 2.0 with OpenSSL exception +category: Copyleft Limited +owner: OpenSSL +homepage_url: http://www.openssl.org/source/license.html +notes: replaced by openssl-exception-gpl-2.0 +is_exception: yes +text_urls: + - http://www.openssl.org/source/license.html +faq_url: http://people.gnome.org/~markmc/openssl-and-the-gpl.html +other_urls: + - http://people.gnome.org/~markmc/openssl-and-the-gpl.html +--- + The OpenSSL License is not compatible with the GPL, since it contains the following two clauses: * 3. All advertising materials mentioning features or use of this diff --git a/docs/gpl-2.0-openssl.html b/docs/gpl-2.0-openssl.html index fc55687527..2782595a8c 100644 --- a/docs/gpl-2.0-openssl.html +++ b/docs/gpl-2.0-openssl.html @@ -194,7 +194,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-openssl.json b/docs/gpl-2.0-openssl.json index 40677fb934..ac637aa07c 100644 --- a/docs/gpl-2.0-openssl.json +++ b/docs/gpl-2.0-openssl.json @@ -1 +1,18 @@ -{"key": "gpl-2.0-openssl", "is_deprecated": true, "short_name": "GPL 2.0 with OpenSSL exception", "name": "GPL 2.0 with OpenSSL exception", "category": "Copyleft Limited", "owner": "OpenSSL", "homepage_url": "http://www.openssl.org/source/license.html", "notes": "replaced by openssl-exception-gpl-2.0", "is_exception": true, "text_urls": ["http://www.openssl.org/source/license.html"], "faq_url": "http://people.gnome.org/~markmc/openssl-and-the-gpl.html", "other_urls": ["http://people.gnome.org/~markmc/openssl-and-the-gpl.html"]} \ No newline at end of file +{ + "key": "gpl-2.0-openssl", + "is_deprecated": true, + "short_name": "GPL 2.0 with OpenSSL exception", + "name": "GPL 2.0 with OpenSSL exception", + "category": "Copyleft Limited", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "notes": "replaced by openssl-exception-gpl-2.0", + "is_exception": true, + "text_urls": [ + "http://www.openssl.org/source/license.html" + ], + "faq_url": "http://people.gnome.org/~markmc/openssl-and-the-gpl.html", + "other_urls": [ + "http://people.gnome.org/~markmc/openssl-and-the-gpl.html" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-oracle-mysql-foss.LICENSE b/docs/gpl-2.0-oracle-mysql-foss.LICENSE index 58ed645045..73c518da44 100644 --- a/docs/gpl-2.0-oracle-mysql-foss.LICENSE +++ b/docs/gpl-2.0-oracle-mysql-foss.LICENSE @@ -1,3 +1,15 @@ +--- +key: gpl-2.0-oracle-mysql-foss +is_deprecated: yes +short_name: GPL 2.0 with Oracle MySQL FOSS exception +name: GPL 2.0 with Oracle MySQL FOSS exception +category: Copyleft +owner: Oracle Corporation +homepage_url: http://www.mysql.com/about/legal/licensing/foss-exception.html +notes: replaced by oracle-mysql-foss-exception-2.0 +is_exception: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. diff --git a/docs/gpl-2.0-oracle-mysql-foss.html b/docs/gpl-2.0-oracle-mysql-foss.html index 95c0ae6510..a14079bd4d 100644 --- a/docs/gpl-2.0-oracle-mysql-foss.html +++ b/docs/gpl-2.0-oracle-mysql-foss.html @@ -166,7 +166,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-oracle-mysql-foss.json b/docs/gpl-2.0-oracle-mysql-foss.json index 0eabb3c19e..06744eb8d9 100644 --- a/docs/gpl-2.0-oracle-mysql-foss.json +++ b/docs/gpl-2.0-oracle-mysql-foss.json @@ -1 +1,11 @@ -{"key": "gpl-2.0-oracle-mysql-foss", "is_deprecated": true, "short_name": "GPL 2.0 with Oracle MySQL FOSS exception", "name": "GPL 2.0 with Oracle MySQL FOSS exception", "category": "Copyleft", "owner": "Oracle Corporation", "homepage_url": "http://www.mysql.com/about/legal/licensing/foss-exception.html", "notes": "replaced by oracle-mysql-foss-exception-2.0", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-2.0-oracle-mysql-foss", + "is_deprecated": true, + "short_name": "GPL 2.0 with Oracle MySQL FOSS exception", + "name": "GPL 2.0 with Oracle MySQL FOSS exception", + "category": "Copyleft", + "owner": "Oracle Corporation", + "homepage_url": "http://www.mysql.com/about/legal/licensing/foss-exception.html", + "notes": "replaced by oracle-mysql-foss-exception-2.0", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-2.0-oracle-openjdk.LICENSE b/docs/gpl-2.0-oracle-openjdk.LICENSE index e69de29bb2..5a80bc6a5e 100644 --- a/docs/gpl-2.0-oracle-openjdk.LICENSE +++ b/docs/gpl-2.0-oracle-openjdk.LICENSE @@ -0,0 +1,42 @@ +--- +key: gpl-2.0-oracle-openjdk +is_deprecated: yes +short_name: GPL 2.0 with Oracle OpenJDK classpath exception +name: GPL 2.0 with Oracle OpenJDK classpath exception +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: http://openjdk.java.net/legal/gplv2+ce.html +notes: | + use a GPL with the openjdk-exception or with the classpath-exception-2.0 + instead +is_exception: yes +--- + +This library 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 2, 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 General Public License for more details. + +You should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +"CLASSPATH" EXCEPTION TO THE GPL + +Certain source files distributed by Oracle America and/or its affiliates are +subject to the following clarification and special exception to the GPL, but +only where Oracle has expressly included in the particular source file's header +the words "Oracle designates this particular file as subject to the "Classpath" +exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. \ No newline at end of file diff --git a/docs/gpl-2.0-oracle-openjdk.html b/docs/gpl-2.0-oracle-openjdk.html index d12a155dbe..1a5a8ff8a5 100644 --- a/docs/gpl-2.0-oracle-openjdk.html +++ b/docs/gpl-2.0-oracle-openjdk.html @@ -118,6 +118,7 @@ use a GPL with the openjdk-exception or with the classpath-exception-2.0 instead + @@ -130,7 +131,34 @@
license_text
-
+
This library 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 2, 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 General Public License for more details.
+
+You should have received a copy of the GNU General Public License along with this library; see the file COPYING.  If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+"CLASSPATH" EXCEPTION TO THE GPL
+
+Certain source files distributed by Oracle America and/or its affiliates are
+subject to the following clarification and special exception to the GPL, but
+only where Oracle has expressly included in the particular source file's header
+the words "Oracle designates this particular file as subject to the "Classpath"
+exception as provided by Oracle in the LICENSE file that accompanied this code."
+
+    Linking this library statically or dynamically with other modules is making
+    a combined work based on this library.  Thus, the terms and conditions of
+    the GNU General Public License cover the whole combination.
+
+    As a special exception, the copyright holders of this library give you
+    permission to link this library with independent modules to produce an
+    executable, regardless of the license terms of these independent modules,
+    and to copy and distribute the resulting executable under terms of your
+    choice, provided that you also meet, for each linked independent module,
+    the terms and conditions of the license of that module.  An independent
+    module is a module which is not derived from or based on this library.  If
+    you modify this library, you may extend this exception to your version of
+    the library, but you are not obligated to do so.  If you do not wish to do
+    so, delete this exception statement from your version.
@@ -142,7 +170,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-oracle-openjdk.json b/docs/gpl-2.0-oracle-openjdk.json index 38db66a357..7a7e2a3cc3 100644 --- a/docs/gpl-2.0-oracle-openjdk.json +++ b/docs/gpl-2.0-oracle-openjdk.json @@ -1 +1,11 @@ -{"key": "gpl-2.0-oracle-openjdk", "is_deprecated": true, "short_name": "GPL 2.0 with Oracle OpenJDK classpath exception", "name": "GPL 2.0 with Oracle OpenJDK classpath exception", "category": "Copyleft Limited", "owner": "Oracle Corporation", "homepage_url": "http://openjdk.java.net/legal/gplv2+ce.html", "notes": "use a GPL with the openjdk-exception or with the classpath-exception-2.0\ninstead", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-2.0-oracle-openjdk", + "is_deprecated": true, + "short_name": "GPL 2.0 with Oracle OpenJDK classpath exception", + "name": "GPL 2.0 with Oracle OpenJDK classpath exception", + "category": "Copyleft Limited", + "owner": "Oracle Corporation", + "homepage_url": "http://openjdk.java.net/legal/gplv2+ce.html", + "notes": "use a GPL with the openjdk-exception or with the classpath-exception-2.0\ninstead\n", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-2.0-plus-ada.LICENSE b/docs/gpl-2.0-plus-ada.LICENSE index 4e2ec5ac26..96fd6464ce 100644 --- a/docs/gpl-2.0-plus-ada.LICENSE +++ b/docs/gpl-2.0-plus-ada.LICENSE @@ -1,3 +1,16 @@ +--- +key: gpl-2.0-plus-ada +is_deprecated: yes +short_name: GPL 2.0 or later with Ada exception +name: GPL 2.0 or later with Ada exception +category: Copyleft Limited +owner: Dmitriy Anisimkov +is_exception: yes +other_urls: + - http://ada-ru.org/ + - http://zlib-ada.sourceforge.net/ +--- + This library 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 2 of the License, or (at @@ -17,4 +30,4 @@ unit, or you link this unit with other files to produce an executable, this unit does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be -covered by the GNU Public License. +covered by the GNU Public License. \ No newline at end of file diff --git a/docs/gpl-2.0-plus-ada.html b/docs/gpl-2.0-plus-ada.html index 373814c9f0..1abd02992d 100644 --- a/docs/gpl-2.0-plus-ada.html +++ b/docs/gpl-2.0-plus-ada.html @@ -143,8 +143,7 @@ this unit does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be -covered by the GNU Public License. - +covered by the GNU Public License.
@@ -156,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-plus-ada.json b/docs/gpl-2.0-plus-ada.json index cd59655542..06047524ab 100644 --- a/docs/gpl-2.0-plus-ada.json +++ b/docs/gpl-2.0-plus-ada.json @@ -1 +1,13 @@ -{"key": "gpl-2.0-plus-ada", "is_deprecated": true, "short_name": "GPL 2.0 or later with Ada exception", "name": "GPL 2.0 or later with Ada exception", "category": "Copyleft Limited", "owner": "Dmitriy Anisimkov", "is_exception": true, "other_urls": ["http://ada-ru.org/", "http://zlib-ada.sourceforge.net/"]} \ No newline at end of file +{ + "key": "gpl-2.0-plus-ada", + "is_deprecated": true, + "short_name": "GPL 2.0 or later with Ada exception", + "name": "GPL 2.0 or later with Ada exception", + "category": "Copyleft Limited", + "owner": "Dmitriy Anisimkov", + "is_exception": true, + "other_urls": [ + "http://ada-ru.org/", + "http://zlib-ada.sourceforge.net/" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-plus-ekiga.LICENSE b/docs/gpl-2.0-plus-ekiga.LICENSE index fc18a3951f..2b855465d6 100644 --- a/docs/gpl-2.0-plus-ekiga.LICENSE +++ b/docs/gpl-2.0-plus-ekiga.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-plus-ekiga +is_deprecated: yes +short_name: GPL 2.0 or later with Ekiga exception +name: GPL 2.0 or later with Ekiga exception +category: Copyleft Limited +owner: Ekiga +homepage_url: http://www.ekiga.org/download-ekiga-binaries-or-source-code +is_exception: yes +--- + 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 2 of the License, or diff --git a/docs/gpl-2.0-plus-ekiga.html b/docs/gpl-2.0-plus-ekiga.html index 21bc495f8d..c692346db0 100644 --- a/docs/gpl-2.0-plus-ekiga.html +++ b/docs/gpl-2.0-plus-ekiga.html @@ -153,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-plus-ekiga.json b/docs/gpl-2.0-plus-ekiga.json index 430618c1e2..826198636a 100644 --- a/docs/gpl-2.0-plus-ekiga.json +++ b/docs/gpl-2.0-plus-ekiga.json @@ -1 +1,10 @@ -{"key": "gpl-2.0-plus-ekiga", "is_deprecated": true, "short_name": "GPL 2.0 or later with Ekiga exception", "name": "GPL 2.0 or later with Ekiga exception", "category": "Copyleft Limited", "owner": "Ekiga", "homepage_url": "http://www.ekiga.org/download-ekiga-binaries-or-source-code", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-2.0-plus-ekiga", + "is_deprecated": true, + "short_name": "GPL 2.0 or later with Ekiga exception", + "name": "GPL 2.0 or later with Ekiga exception", + "category": "Copyleft Limited", + "owner": "Ekiga", + "homepage_url": "http://www.ekiga.org/download-ekiga-binaries-or-source-code", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-2.0-plus-gcc.LICENSE b/docs/gpl-2.0-plus-gcc.LICENSE index ba74ad56b9..949750f4f8 100644 --- a/docs/gpl-2.0-plus-gcc.LICENSE +++ b/docs/gpl-2.0-plus-gcc.LICENSE @@ -1,3 +1,15 @@ +--- +key: gpl-2.0-plus-gcc +is_deprecated: yes +short_name: GPL 2.0 or later with GCC exception +name: GPL 2.0 or later with GCC exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + This file 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 2 of the License, or (at your diff --git a/docs/gpl-2.0-plus-gcc.html b/docs/gpl-2.0-plus-gcc.html index 0250034b2f..d8d1f42300 100644 --- a/docs/gpl-2.0-plus-gcc.html +++ b/docs/gpl-2.0-plus-gcc.html @@ -156,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-plus-gcc.json b/docs/gpl-2.0-plus-gcc.json index 1758cc021c..6afd501217 100644 --- a/docs/gpl-2.0-plus-gcc.json +++ b/docs/gpl-2.0-plus-gcc.json @@ -1 +1,12 @@ -{"key": "gpl-2.0-plus-gcc", "is_deprecated": true, "short_name": "GPL 2.0 or later with GCC exception", "name": "GPL 2.0 or later with GCC exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "is_exception": true, "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"]} \ No newline at end of file +{ + "key": "gpl-2.0-plus-gcc", + "is_deprecated": true, + "short_name": "GPL 2.0 or later with GCC exception", + "name": "GPL 2.0 or later with GCC exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "is_exception": true, + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-plus-geoserver.LICENSE b/docs/gpl-2.0-plus-geoserver.LICENSE index 12524a08cc..b27a348d4e 100644 --- a/docs/gpl-2.0-plus-geoserver.LICENSE +++ b/docs/gpl-2.0-plus-geoserver.LICENSE @@ -1,3 +1,19 @@ +--- +key: gpl-2.0-plus-geoserver +is_deprecated: yes +short_name: GPL 2.0 or later with GeoServer exception +name: GPL 2.0 or later with GeoServer exception +category: Copyleft Limited +owner: Open Source Geospatial Foundation +homepage_url: http://geoserver.org/ +is_exception: yes +text_urls: + - https://master.dl.sourceforge.net/project/geoserver/GeoServer/2.5/geoserver-2.5-src.zip +other_urls: + - http://geoserver.org/ + - http://openplans.org +--- + 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 2 of the License, or diff --git a/docs/gpl-2.0-plus-geoserver.html b/docs/gpl-2.0-plus-geoserver.html index 4a0c92f78b..980245b3ba 100644 --- a/docs/gpl-2.0-plus-geoserver.html +++ b/docs/gpl-2.0-plus-geoserver.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-plus-geoserver.json b/docs/gpl-2.0-plus-geoserver.json index 075349b076..4c743a7d3a 100644 --- a/docs/gpl-2.0-plus-geoserver.json +++ b/docs/gpl-2.0-plus-geoserver.json @@ -1 +1,17 @@ -{"key": "gpl-2.0-plus-geoserver", "is_deprecated": true, "short_name": "GPL 2.0 or later with GeoServer exception", "name": "GPL 2.0 or later with GeoServer exception", "category": "Copyleft Limited", "owner": "Open Source Geospatial Foundation", "homepage_url": "http://geoserver.org/", "is_exception": true, "text_urls": ["https://master.dl.sourceforge.net/project/geoserver/GeoServer/2.5/geoserver-2.5-src.zip"], "other_urls": ["http://geoserver.org/", "http://openplans.org"]} \ No newline at end of file +{ + "key": "gpl-2.0-plus-geoserver", + "is_deprecated": true, + "short_name": "GPL 2.0 or later with GeoServer exception", + "name": "GPL 2.0 or later with GeoServer exception", + "category": "Copyleft Limited", + "owner": "Open Source Geospatial Foundation", + "homepage_url": "http://geoserver.org/", + "is_exception": true, + "text_urls": [ + "https://master.dl.sourceforge.net/project/geoserver/GeoServer/2.5/geoserver-2.5-src.zip" + ], + "other_urls": [ + "http://geoserver.org/", + "http://openplans.org" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-plus-linking.LICENSE b/docs/gpl-2.0-plus-linking.LICENSE index a14c3db684..68e2de13b1 100644 --- a/docs/gpl-2.0-plus-linking.LICENSE +++ b/docs/gpl-2.0-plus-linking.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-plus-linking +is_deprecated: yes +short_name: GPL 2.0 or later with Linking exception +name: GPL 2.0 or later with Linking exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +notes: replaced by linking-exception-2.0-plus +is_exception: yes +--- + This library 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 2, or (at your option) any later version. diff --git a/docs/gpl-2.0-plus-linking.html b/docs/gpl-2.0-plus-linking.html index c46039e15a..b8f4e42c8a 100644 --- a/docs/gpl-2.0-plus-linking.html +++ b/docs/gpl-2.0-plus-linking.html @@ -151,7 +151,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-plus-linking.json b/docs/gpl-2.0-plus-linking.json index 9dd6962e3d..4b91294080 100644 --- a/docs/gpl-2.0-plus-linking.json +++ b/docs/gpl-2.0-plus-linking.json @@ -1 +1,10 @@ -{"key": "gpl-2.0-plus-linking", "is_deprecated": true, "short_name": "GPL 2.0 or later with Linking exception", "name": "GPL 2.0 or later with Linking exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "notes": "replaced by linking-exception-2.0-plus", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-2.0-plus-linking", + "is_deprecated": true, + "short_name": "GPL 2.0 or later with Linking exception", + "name": "GPL 2.0 or later with Linking exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "notes": "replaced by linking-exception-2.0-plus", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-2.0-plus-nant.LICENSE b/docs/gpl-2.0-plus-nant.LICENSE index bce2e89c0f..686a315e08 100644 --- a/docs/gpl-2.0-plus-nant.LICENSE +++ b/docs/gpl-2.0-plus-nant.LICENSE @@ -1,3 +1,13 @@ +--- +key: gpl-2.0-plus-nant +is_deprecated: yes +short_name: GPL 2.0 or later with NAnt exception +name: GPL 2.0 or later with NAnt exception +category: Copyleft Limited +owner: NAnt Project +is_exception: yes +--- + 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 2 of the License, or diff --git a/docs/gpl-2.0-plus-nant.html b/docs/gpl-2.0-plus-nant.html index c7126915d4..4b9b0e1596 100644 --- a/docs/gpl-2.0-plus-nant.html +++ b/docs/gpl-2.0-plus-nant.html @@ -155,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-plus-nant.json b/docs/gpl-2.0-plus-nant.json index 5a6d7b8514..0d45853c3e 100644 --- a/docs/gpl-2.0-plus-nant.json +++ b/docs/gpl-2.0-plus-nant.json @@ -1 +1,9 @@ -{"key": "gpl-2.0-plus-nant", "is_deprecated": true, "short_name": "GPL 2.0 or later with NAnt exception", "name": "GPL 2.0 or later with NAnt exception", "category": "Copyleft Limited", "owner": "NAnt Project", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-2.0-plus-nant", + "is_deprecated": true, + "short_name": "GPL 2.0 or later with NAnt exception", + "name": "GPL 2.0 or later with NAnt exception", + "category": "Copyleft Limited", + "owner": "NAnt Project", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-2.0-plus-openmotif.LICENSE b/docs/gpl-2.0-plus-openmotif.LICENSE index dc87593f3b..e436df4796 100644 --- a/docs/gpl-2.0-plus-openmotif.LICENSE +++ b/docs/gpl-2.0-plus-openmotif.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-plus-openmotif +is_deprecated: yes +short_name: GPL 2.0 or later with Open Motif exception +name: GPL 2.0 or later with Open Motif exception +category: Copyleft Limited +owner: NEdit Project +homepage_url: http://nedit.sourcearchive.com/documentation/5.6~cvs20081118/grid3_8c-source.html +notes: replaced by openmotif-exception-2.0-plus +is_exception: yes +other_urls: + - http://www.nedit.org/faq/ +--- + This library 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 2, or (at your option) any later version. diff --git a/docs/gpl-2.0-plus-openmotif.html b/docs/gpl-2.0-plus-openmotif.html index 66afbf48b3..5c6b866dff 100644 --- a/docs/gpl-2.0-plus-openmotif.html +++ b/docs/gpl-2.0-plus-openmotif.html @@ -170,7 +170,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-plus-openmotif.json b/docs/gpl-2.0-plus-openmotif.json index 6f61897f19..54f7606379 100644 --- a/docs/gpl-2.0-plus-openmotif.json +++ b/docs/gpl-2.0-plus-openmotif.json @@ -1 +1,14 @@ -{"key": "gpl-2.0-plus-openmotif", "is_deprecated": true, "short_name": "GPL 2.0 or later with Open Motif exception", "name": "GPL 2.0 or later with Open Motif exception", "category": "Copyleft Limited", "owner": "NEdit Project", "homepage_url": "http://nedit.sourcearchive.com/documentation/5.6~cvs20081118/grid3_8c-source.html", "notes": "replaced by openmotif-exception-2.0-plus", "is_exception": true, "other_urls": ["http://www.nedit.org/faq/"]} \ No newline at end of file +{ + "key": "gpl-2.0-plus-openmotif", + "is_deprecated": true, + "short_name": "GPL 2.0 or later with Open Motif exception", + "name": "GPL 2.0 or later with Open Motif exception", + "category": "Copyleft Limited", + "owner": "NEdit Project", + "homepage_url": "http://nedit.sourcearchive.com/documentation/5.6~cvs20081118/grid3_8c-source.html", + "notes": "replaced by openmotif-exception-2.0-plus", + "is_exception": true, + "other_urls": [ + "http://www.nedit.org/faq/" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-plus-openssl.LICENSE b/docs/gpl-2.0-plus-openssl.LICENSE index 25209d5608..fc1b794577 100644 --- a/docs/gpl-2.0-plus-openssl.LICENSE +++ b/docs/gpl-2.0-plus-openssl.LICENSE @@ -1,3 +1,15 @@ +--- +key: gpl-2.0-plus-openssl +is_deprecated: yes +short_name: GPL 2.0 or later with OpenSSL exception +name: GPL 2.0 or later with OpenSSL exception +category: Copyleft +owner: magnumripper +homepage_url: https://github.com/magnumripper/JohnTheRipper/blob/1.8.0/doc/LICENSE +notes: replaced by openssl-exception-gpl-2.0-plus +is_exception: yes +--- + As a special exception to the GNU General Public License terms, permission is hereby granted to link the code of this program, with or without modification, with any version of the OpenSSL library and/or any diff --git a/docs/gpl-2.0-plus-openssl.html b/docs/gpl-2.0-plus-openssl.html index b5cb9e3579..72debf0b7c 100644 --- a/docs/gpl-2.0-plus-openssl.html +++ b/docs/gpl-2.0-plus-openssl.html @@ -149,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-plus-openssl.json b/docs/gpl-2.0-plus-openssl.json index 829758228a..652599aef1 100644 --- a/docs/gpl-2.0-plus-openssl.json +++ b/docs/gpl-2.0-plus-openssl.json @@ -1 +1,11 @@ -{"key": "gpl-2.0-plus-openssl", "is_deprecated": true, "short_name": "GPL 2.0 or later with OpenSSL exception", "name": "GPL 2.0 or later with OpenSSL exception", "category": "Copyleft", "owner": "magnumripper", "homepage_url": "https://github.com/magnumripper/JohnTheRipper/blob/1.8.0/doc/LICENSE", "notes": "replaced by openssl-exception-gpl-2.0-plus", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-2.0-plus-openssl", + "is_deprecated": true, + "short_name": "GPL 2.0 or later with OpenSSL exception", + "name": "GPL 2.0 or later with OpenSSL exception", + "category": "Copyleft", + "owner": "magnumripper", + "homepage_url": "https://github.com/magnumripper/JohnTheRipper/blob/1.8.0/doc/LICENSE", + "notes": "replaced by openssl-exception-gpl-2.0-plus", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-2.0-plus-sane.LICENSE b/docs/gpl-2.0-plus-sane.LICENSE index ae0dfc6069..5acb2a2106 100644 --- a/docs/gpl-2.0-plus-sane.LICENSE +++ b/docs/gpl-2.0-plus-sane.LICENSE @@ -1,3 +1,16 @@ +--- +key: gpl-2.0-plus-sane +is_deprecated: yes +short_name: GPL 2.0 or later with SANE exception +name: GPL 2.0 or later with SANE exception +category: Copyleft Limited +owner: SANE Project +homepage_url: https://alioth.debian.org/ +is_exception: yes +text_urls: + - https://alioth.debian.org/frs/download.php/file/4224/sane-backends-1.0.27.tar.gz +--- + As a special exception, the authors of SANE give permission for additional uses of the libraries contained in this release of SANE. diff --git a/docs/gpl-2.0-plus-sane.html b/docs/gpl-2.0-plus-sane.html index e2401d2f66..71578daf52 100644 --- a/docs/gpl-2.0-plus-sane.html +++ b/docs/gpl-2.0-plus-sane.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-plus-sane.json b/docs/gpl-2.0-plus-sane.json index 87d4e5aef6..bd82ad4ea7 100644 --- a/docs/gpl-2.0-plus-sane.json +++ b/docs/gpl-2.0-plus-sane.json @@ -1 +1,13 @@ -{"key": "gpl-2.0-plus-sane", "is_deprecated": true, "short_name": "GPL 2.0 or later with SANE exception", "name": "GPL 2.0 or later with SANE exception", "category": "Copyleft Limited", "owner": "SANE Project", "homepage_url": "https://alioth.debian.org/", "is_exception": true, "text_urls": ["https://alioth.debian.org/frs/download.php/file/4224/sane-backends-1.0.27.tar.gz"]} \ No newline at end of file +{ + "key": "gpl-2.0-plus-sane", + "is_deprecated": true, + "short_name": "GPL 2.0 or later with SANE exception", + "name": "GPL 2.0 or later with SANE exception", + "category": "Copyleft Limited", + "owner": "SANE Project", + "homepage_url": "https://alioth.debian.org/", + "is_exception": true, + "text_urls": [ + "https://alioth.debian.org/frs/download.php/file/4224/sane-backends-1.0.27.tar.gz" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-plus-subcommander.LICENSE b/docs/gpl-2.0-plus-subcommander.LICENSE index b83d0e0647..94cc55faac 100644 --- a/docs/gpl-2.0-plus-subcommander.LICENSE +++ b/docs/gpl-2.0-plus-subcommander.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-plus-subcommander +is_deprecated: yes +short_name: GPL 2.0 or later with Subcommander exception +name: GPL 2.0 or later with Subcommander exception +category: Copyleft Limited +owner: Tigris Project +homepage_url: http://subversion.tigris.org/ +is_exception: yes +--- + Subcommander 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 2 of the License, or diff --git a/docs/gpl-2.0-plus-subcommander.html b/docs/gpl-2.0-plus-subcommander.html index c57fb609cc..4f26062f8c 100644 --- a/docs/gpl-2.0-plus-subcommander.html +++ b/docs/gpl-2.0-plus-subcommander.html @@ -157,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-plus-subcommander.json b/docs/gpl-2.0-plus-subcommander.json index 525408963e..23fb3213ea 100644 --- a/docs/gpl-2.0-plus-subcommander.json +++ b/docs/gpl-2.0-plus-subcommander.json @@ -1 +1,10 @@ -{"key": "gpl-2.0-plus-subcommander", "is_deprecated": true, "short_name": "GPL 2.0 or later with Subcommander exception", "name": "GPL 2.0 or later with Subcommander exception", "category": "Copyleft Limited", "owner": "Tigris Project", "homepage_url": "http://subversion.tigris.org/", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-2.0-plus-subcommander", + "is_deprecated": true, + "short_name": "GPL 2.0 or later with Subcommander exception", + "name": "GPL 2.0 or later with Subcommander exception", + "category": "Copyleft Limited", + "owner": "Tigris Project", + "homepage_url": "http://subversion.tigris.org/", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-2.0-plus-syntext.LICENSE b/docs/gpl-2.0-plus-syntext.LICENSE index 69c5c0228d..20de60cfc1 100644 --- a/docs/gpl-2.0-plus-syntext.LICENSE +++ b/docs/gpl-2.0-plus-syntext.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-plus-syntext +is_deprecated: yes +short_name: GPL 2.0 or GPL 3.0 with Syntext Serna exception +name: GPL 2.0 or GPL 3.0 with Syntext Serna exception +category: Copyleft Limited +owner: Syntext +homepage_url: https://github.com/ydirson/serna-free/blob/master/GPL_EXCEPTION.txt +is_exception: yes +--- + Syntext, Inc. GPL License Exception for Syntext Serna Free Edition Version 1.0 diff --git a/docs/gpl-2.0-plus-syntext.html b/docs/gpl-2.0-plus-syntext.html index 43548728c8..ddb4a0b10d 100644 --- a/docs/gpl-2.0-plus-syntext.html +++ b/docs/gpl-2.0-plus-syntext.html @@ -234,7 +234,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-plus-syntext.json b/docs/gpl-2.0-plus-syntext.json index db5fcf87d4..c03b881f6d 100644 --- a/docs/gpl-2.0-plus-syntext.json +++ b/docs/gpl-2.0-plus-syntext.json @@ -1 +1,10 @@ -{"key": "gpl-2.0-plus-syntext", "is_deprecated": true, "short_name": "GPL 2.0 or GPL 3.0 with Syntext Serna exception", "name": "GPL 2.0 or GPL 3.0 with Syntext Serna exception", "category": "Copyleft Limited", "owner": "Syntext", "homepage_url": "https://github.com/ydirson/serna-free/blob/master/GPL_EXCEPTION.txt", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-2.0-plus-syntext", + "is_deprecated": true, + "short_name": "GPL 2.0 or GPL 3.0 with Syntext Serna exception", + "name": "GPL 2.0 or GPL 3.0 with Syntext Serna exception", + "category": "Copyleft Limited", + "owner": "Syntext", + "homepage_url": "https://github.com/ydirson/serna-free/blob/master/GPL_EXCEPTION.txt", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-2.0-plus-upx.LICENSE b/docs/gpl-2.0-plus-upx.LICENSE index 8dbff1e801..66b3f4569d 100644 --- a/docs/gpl-2.0-plus-upx.LICENSE +++ b/docs/gpl-2.0-plus-upx.LICENSE @@ -1,3 +1,18 @@ +--- +key: gpl-2.0-plus-upx +is_deprecated: yes +short_name: GPL 2.0 or later with UPX exception +name: GPL 2.0 or later with UPX exception +category: Copyleft Limited +owner: UPX +homepage_url: https://github.com/upx/upx/blob/master/LICENSE +is_exception: yes +other_urls: + - http://wildsau.idv.uni-linz.ac.at/mfx/upx.html + - http://www.nexus.hu/upx + - http://upx.tsx.org +--- + PLEASE CAREFULLY READ THIS LICENSE AGREEMENT, ESPECIALLY IF YOU PLAN TO MODIFY THE UPX SOURCE CODE OR USE A MODIFIED UPX VERSION. diff --git a/docs/gpl-2.0-plus-upx.html b/docs/gpl-2.0-plus-upx.html index 25866558f7..8147785d6f 100644 --- a/docs/gpl-2.0-plus-upx.html +++ b/docs/gpl-2.0-plus-upx.html @@ -206,7 +206,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-plus-upx.json b/docs/gpl-2.0-plus-upx.json index e18481a989..3f9e78896b 100644 --- a/docs/gpl-2.0-plus-upx.json +++ b/docs/gpl-2.0-plus-upx.json @@ -1 +1,15 @@ -{"key": "gpl-2.0-plus-upx", "is_deprecated": true, "short_name": "GPL 2.0 or later with UPX exception", "name": "GPL 2.0 or later with UPX exception", "category": "Copyleft Limited", "owner": "UPX", "homepage_url": "https://github.com/upx/upx/blob/master/LICENSE", "is_exception": true, "other_urls": ["http://wildsau.idv.uni-linz.ac.at/mfx/upx.html", "http://www.nexus.hu/upx", "http://upx.tsx.org"]} \ No newline at end of file +{ + "key": "gpl-2.0-plus-upx", + "is_deprecated": true, + "short_name": "GPL 2.0 or later with UPX exception", + "name": "GPL 2.0 or later with UPX exception", + "category": "Copyleft Limited", + "owner": "UPX", + "homepage_url": "https://github.com/upx/upx/blob/master/LICENSE", + "is_exception": true, + "other_urls": [ + "http://wildsau.idv.uni-linz.ac.at/mfx/upx.html", + "http://www.nexus.hu/upx", + "http://upx.tsx.org" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-plus.LICENSE b/docs/gpl-2.0-plus.LICENSE index ed6227674a..f6dbad5f9d 100644 --- a/docs/gpl-2.0-plus.LICENSE +++ b/docs/gpl-2.0-plus.LICENSE @@ -1,3 +1,32 @@ +--- +key: gpl-2.0-plus +short_name: GPL 2.0 or later +name: GNU General Public License 2.0 or later +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html +notes: | + Per SPDX.org, this license was released June 1991 This license is OSI + certified. +spdx_license_key: GPL-2.0-or-later +other_spdx_license_keys: + - GPL-2.0+ + - GPL 2.0+ +text_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html +other_urls: + - http://www.opensource.org/licenses/GPL-2.0 + - https://opensource.org/licenses/GPL-2.0 + - https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + 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 2 of the License, or (at your option) any later @@ -349,4 +378,4 @@ This 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. +Public License instead of this License. \ No newline at end of file diff --git a/docs/gpl-2.0-plus.html b/docs/gpl-2.0-plus.html index 1ffcfd1cef..91fbc36b21 100644 --- a/docs/gpl-2.0-plus.html +++ b/docs/gpl-2.0-plus.html @@ -527,8 +527,7 @@ 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. - +Public License instead of this License.
@@ -540,7 +539,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-plus.json b/docs/gpl-2.0-plus.json index 5ebfa18533..83538f9b96 100644 --- a/docs/gpl-2.0-plus.json +++ b/docs/gpl-2.0-plus.json @@ -1 +1,31 @@ -{"key": "gpl-2.0-plus", "short_name": "GPL 2.0 or later", "name": "GNU General Public License 2.0 or later", "category": "Copyleft", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", "notes": "Per SPDX.org, this license was released June 1991 This license is OSI\ncertified.\n", "spdx_license_key": "GPL-2.0-or-later", "other_spdx_license_keys": ["GPL-2.0+", "GPL 2.0+"], "text_urls": ["http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"], "other_urls": ["http://www.opensource.org/licenses/GPL-2.0", "https://opensource.org/licenses/GPL-2.0", "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"], "minimum_coverage": 99, "ignorable_copyrights": ["Copyright (c) 1989, 1991 Free Software Foundation, Inc.", "copyrighted by the Free Software Foundation"], "ignorable_holders": ["Free Software Foundation, Inc.", "the Free Software Foundation"]} \ No newline at end of file +{ + "key": "gpl-2.0-plus", + "short_name": "GPL 2.0 or later", + "name": "GNU General Public License 2.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "notes": "Per SPDX.org, this license was released June 1991 This license is OSI\ncertified.\n", + "spdx_license_key": "GPL-2.0-or-later", + "other_spdx_license_keys": [ + "GPL-2.0+", + "GPL 2.0+" + ], + "text_urls": [ + "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html" + ], + "other_urls": [ + "http://www.opensource.org/licenses/GPL-2.0", + "https://opensource.org/licenses/GPL-2.0", + "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html" + ], + "minimum_coverage": 99, + "ignorable_copyrights": [ + "Copyright (c) 1989, 1991 Free Software Foundation, Inc.", + "copyrighted by the Free Software Foundation" + ], + "ignorable_holders": [ + "Free Software Foundation, Inc.", + "the Free Software Foundation" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-proguard.LICENSE b/docs/gpl-2.0-proguard.LICENSE index 805eee8a2d..bc8e2f08a8 100644 --- a/docs/gpl-2.0-proguard.LICENSE +++ b/docs/gpl-2.0-proguard.LICENSE @@ -1,3 +1,15 @@ +--- +key: gpl-2.0-proguard +is_deprecated: yes +short_name: GPL 2.0 with ProGuard exception +name: GPL 2.0 with ProGuard exception +category: Copyleft Limited +owner: ProGuard Project +homepage_url: http://proguard.sourceforge.net/index.html#license.html +notes: composite replaced by roguard-exception-2.0 +is_exception: yes +--- + License ProGuard is free. You can use it freely for processing your applications, @@ -20,4 +32,4 @@ the Javaground Tools, and the Sanaware Tools. The ProGuard user documentation is copyrighted as well. It may only be -redistributed without changes, along with the unmodified version of the code. +redistributed without changes, along with the unmodified version of the code. \ No newline at end of file diff --git a/docs/gpl-2.0-proguard.html b/docs/gpl-2.0-proguard.html index 0ffc364def..ff9f267718 100644 --- a/docs/gpl-2.0-proguard.html +++ b/docs/gpl-2.0-proguard.html @@ -151,8 +151,7 @@ The ProGuard user documentation is copyrighted as well. It may only be -redistributed without changes, along with the unmodified version of the code. - +redistributed without changes, along with the unmodified version of the code.
@@ -164,7 +163,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-proguard.json b/docs/gpl-2.0-proguard.json index 107598bf52..6a0e6c9ff4 100644 --- a/docs/gpl-2.0-proguard.json +++ b/docs/gpl-2.0-proguard.json @@ -1 +1,11 @@ -{"key": "gpl-2.0-proguard", "is_deprecated": true, "short_name": "GPL 2.0 with ProGuard exception", "name": "GPL 2.0 with ProGuard exception", "category": "Copyleft Limited", "owner": "ProGuard Project", "homepage_url": "http://proguard.sourceforge.net/index.html#license.html", "notes": "composite replaced by roguard-exception-2.0", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-2.0-proguard", + "is_deprecated": true, + "short_name": "GPL 2.0 with ProGuard exception", + "name": "GPL 2.0 with ProGuard exception", + "category": "Copyleft Limited", + "owner": "ProGuard Project", + "homepage_url": "http://proguard.sourceforge.net/index.html#license.html", + "notes": "composite replaced by roguard-exception-2.0", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-2.0-qt-qca.LICENSE b/docs/gpl-2.0-qt-qca.LICENSE index f62035e8a5..8b6ffbfe75 100644 --- a/docs/gpl-2.0-qt-qca.LICENSE +++ b/docs/gpl-2.0-qt-qca.LICENSE @@ -1,3 +1,15 @@ +--- +key: gpl-2.0-qt-qca +is_deprecated: yes +short_name: GPL 2.0 with Qt-QCA exception +name: GPL 2.0 with Qt-QCA exception +category: Copyleft Limited +owner: Psi Project +is_exception: yes +other_urls: + - http://downloads.sourceforge.net/psi/psi-0.15.tar.bz2 +--- + This library 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, version 2. 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 General Public License for more details. diff --git a/docs/gpl-2.0-qt-qca.html b/docs/gpl-2.0-qt-qca.html index ae9800072c..2d6b649620 100644 --- a/docs/gpl-2.0-qt-qca.html +++ b/docs/gpl-2.0-qt-qca.html @@ -154,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-qt-qca.json b/docs/gpl-2.0-qt-qca.json index f14bbee8ad..cfd6139b83 100644 --- a/docs/gpl-2.0-qt-qca.json +++ b/docs/gpl-2.0-qt-qca.json @@ -1 +1,12 @@ -{"key": "gpl-2.0-qt-qca", "is_deprecated": true, "short_name": "GPL 2.0 with Qt-QCA exception", "name": "GPL 2.0 with Qt-QCA exception", "category": "Copyleft Limited", "owner": "Psi Project", "is_exception": true, "other_urls": ["http://downloads.sourceforge.net/psi/psi-0.15.tar.bz2"]} \ No newline at end of file +{ + "key": "gpl-2.0-qt-qca", + "is_deprecated": true, + "short_name": "GPL 2.0 with Qt-QCA exception", + "name": "GPL 2.0 with Qt-QCA exception", + "category": "Copyleft Limited", + "owner": "Psi Project", + "is_exception": true, + "other_urls": [ + "http://downloads.sourceforge.net/psi/psi-0.15.tar.bz2" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-redhat.LICENSE b/docs/gpl-2.0-redhat.LICENSE index ed24a7561b..df10a9a06d 100644 --- a/docs/gpl-2.0-redhat.LICENSE +++ b/docs/gpl-2.0-redhat.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-redhat +is_deprecated: yes +short_name: GPL 2.0 with Fedora Red Hat Exception +name: GPL 2.0 with Fedora Red Hat Exception +category: Copyleft Limited +owner: Fedora +homepage_url: http://www.directory.fedora.redhat.com/wiki/GPL_Exception_License_Text +notes: replaced by 389-exception +is_exception: yes +text_urls: + - http://www.directory.fedora.redhat.com/wiki/GPL_Exception_License_Text +--- + This library 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 2, or (at your option) any later version. diff --git a/docs/gpl-2.0-redhat.html b/docs/gpl-2.0-redhat.html index 23a7eaaa3b..eb22db6723 100644 --- a/docs/gpl-2.0-redhat.html +++ b/docs/gpl-2.0-redhat.html @@ -177,7 +177,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-redhat.json b/docs/gpl-2.0-redhat.json index a521fd0191..88f69b7245 100644 --- a/docs/gpl-2.0-redhat.json +++ b/docs/gpl-2.0-redhat.json @@ -1 +1,14 @@ -{"key": "gpl-2.0-redhat", "is_deprecated": true, "short_name": "GPL 2.0 with Fedora Red Hat Exception", "name": "GPL 2.0 with Fedora Red Hat Exception", "category": "Copyleft Limited", "owner": "Fedora", "homepage_url": "http://www.directory.fedora.redhat.com/wiki/GPL_Exception_License_Text", "notes": "replaced by 389-exception", "is_exception": true, "text_urls": ["http://www.directory.fedora.redhat.com/wiki/GPL_Exception_License_Text"]} \ No newline at end of file +{ + "key": "gpl-2.0-redhat", + "is_deprecated": true, + "short_name": "GPL 2.0 with Fedora Red Hat Exception", + "name": "GPL 2.0 with Fedora Red Hat Exception", + "category": "Copyleft Limited", + "owner": "Fedora", + "homepage_url": "http://www.directory.fedora.redhat.com/wiki/GPL_Exception_License_Text", + "notes": "replaced by 389-exception", + "is_exception": true, + "text_urls": [ + "http://www.directory.fedora.redhat.com/wiki/GPL_Exception_License_Text" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0-rrdtool-floss.LICENSE b/docs/gpl-2.0-rrdtool-floss.LICENSE index 185b7d394f..29d0d546fe 100644 --- a/docs/gpl-2.0-rrdtool-floss.LICENSE +++ b/docs/gpl-2.0-rrdtool-floss.LICENSE @@ -1,3 +1,15 @@ +--- +key: gpl-2.0-rrdtool-floss +is_deprecated: yes +short_name: GPL 2.0 with RRDtool FLOSS Exception +name: GPL 2.0 with RRDtool FLOSS Exception +category: Copyleft Limited +owner: RRDtool Project +homepage_url: https://raw.github.com/oetiker/rrdtool-1.x/master/COPYRIGHT +notes: composite replaced by rrdtool-floss-exception-2.0 +is_exception: yes +--- + RRDTOOL - Round Robin Database Tool A tool for fast logging of numerical data graphical display of this data. diff --git a/docs/gpl-2.0-rrdtool-floss.html b/docs/gpl-2.0-rrdtool-floss.html index 0d44a3d74c..17630532a1 100644 --- a/docs/gpl-2.0-rrdtool-floss.html +++ b/docs/gpl-2.0-rrdtool-floss.html @@ -230,7 +230,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-rrdtool-floss.json b/docs/gpl-2.0-rrdtool-floss.json index ad4e53f476..a323a116ca 100644 --- a/docs/gpl-2.0-rrdtool-floss.json +++ b/docs/gpl-2.0-rrdtool-floss.json @@ -1 +1,11 @@ -{"key": "gpl-2.0-rrdtool-floss", "is_deprecated": true, "short_name": "GPL 2.0 with RRDtool FLOSS Exception", "name": "GPL 2.0 with RRDtool FLOSS Exception", "category": "Copyleft Limited", "owner": "RRDtool Project", "homepage_url": "https://raw.github.com/oetiker/rrdtool-1.x/master/COPYRIGHT", "notes": "composite replaced by rrdtool-floss-exception-2.0", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-2.0-rrdtool-floss", + "is_deprecated": true, + "short_name": "GPL 2.0 with RRDtool FLOSS Exception", + "name": "GPL 2.0 with RRDtool FLOSS Exception", + "category": "Copyleft Limited", + "owner": "RRDtool Project", + "homepage_url": "https://raw.github.com/oetiker/rrdtool-1.x/master/COPYRIGHT", + "notes": "composite replaced by rrdtool-floss-exception-2.0", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-2.0-uboot.LICENSE b/docs/gpl-2.0-uboot.LICENSE index 1d21ab1ef4..863edb76ac 100644 --- a/docs/gpl-2.0-uboot.LICENSE +++ b/docs/gpl-2.0-uboot.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-uboot +is_deprecated: yes +short_name: GPL 2.0 with U-Boot exception +name: GPL 2.0 with U-Boot exception +category: Copyleft Limited +owner: U-Boot +homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +notes: replaced by u-boot-exception-2.0 +is_exception: yes +text_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + This library 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 2, or (at your option) any diff --git a/docs/gpl-2.0-uboot.html b/docs/gpl-2.0-uboot.html index 05f28af4a8..9985a2b718 100644 --- a/docs/gpl-2.0-uboot.html +++ b/docs/gpl-2.0-uboot.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0-uboot.json b/docs/gpl-2.0-uboot.json index f8e00efb96..8401d60454 100644 --- a/docs/gpl-2.0-uboot.json +++ b/docs/gpl-2.0-uboot.json @@ -1 +1,14 @@ -{"key": "gpl-2.0-uboot", "is_deprecated": true, "short_name": "GPL 2.0 with U-Boot exception", "name": "GPL 2.0 with U-Boot exception", "category": "Copyleft Limited", "owner": "U-Boot", "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0.html", "notes": "replaced by u-boot-exception-2.0", "is_exception": true, "text_urls": ["http://www.gnu.org/licenses/old-licenses/gpl-2.0.html"]} \ No newline at end of file +{ + "key": "gpl-2.0-uboot", + "is_deprecated": true, + "short_name": "GPL 2.0 with U-Boot exception", + "name": "GPL 2.0 with U-Boot exception", + "category": "Copyleft Limited", + "owner": "U-Boot", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0.html", + "notes": "replaced by u-boot-exception-2.0", + "is_exception": true, + "text_urls": [ + "http://www.gnu.org/licenses/old-licenses/gpl-2.0.html" + ] +} \ No newline at end of file diff --git a/docs/gpl-2.0.LICENSE b/docs/gpl-2.0.LICENSE index d159169d10..9a52070129 100644 --- a/docs/gpl-2.0.LICENSE +++ b/docs/gpl-2.0.LICENSE @@ -1,3 +1,47 @@ +--- +key: gpl-2.0 +short_name: GPL 2.0 +name: GNU General Public License 2.0 +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-2.0.html +notes: This is the last version of the GPL text as published by the FSF. This variation was + published around about the time of the FSF released the GPL 3 in July 2007. See http://web.archive.org/web/20070716031727/http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt + It is found live here https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt and here https://www.gnu.org/licenses/old-licenses/gpl-2.0.html + It refers to the Franklin Street address and to the GNU Lesser General Public License everywhere + both in the text and HTML formats. There are many other variations of the GPL 2.0 text that + were published over the years by the FSF and the gnu.org website. You can find the detailed + history of this text at https://github.com/pombredanne/gpl-history and each variant is available + as a license detection rule. Per SPDX.org, this license was released June 1991 This license + is OSI certified. +spdx_license_key: GPL-2.0-only +other_spdx_license_keys: + - GPL-2.0 + - GPL 2.0 + - LicenseRef-GPL-2.0 +osi_license_key: GPL-2.0 +text_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +osi_url: http://opensource.org/licenses/gpl-license.php +faq_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html +other_urls: + - http://creativecommons.org/choose/cc-gpl + - http://creativecommons.org/images/public/cc-GPL-a.png + - http://creativecommons.org/licenses/GPL/2.0/ + - http://creativecommons.org/licenses/GPL/2.0/legalcode.pt + - http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html + - http://www.opensource.org/licenses/GPL-2.0 + - https://opensource.org/licenses/GPL-2.0 + - https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -336,4 +380,4 @@ This 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. +Public License instead of this License. \ No newline at end of file diff --git a/docs/gpl-2.0.html b/docs/gpl-2.0.html index 679167cc1d..f6895c7bfd 100644 --- a/docs/gpl-2.0.html +++ b/docs/gpl-2.0.html @@ -526,8 +526,7 @@ 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. - +Public License instead of this License.
@@ -539,7 +538,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-2.0.json b/docs/gpl-2.0.json index 874f6f8137..fa10f46ec6 100644 --- a/docs/gpl-2.0.json +++ b/docs/gpl-2.0.json @@ -1 +1,40 @@ -{"key": "gpl-2.0", "short_name": "GPL 2.0", "name": "GNU General Public License 2.0", "category": "Copyleft", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", "notes": "This is the last version of the GPL text as published by the FSF. This variation was published around about the time of the FSF released the GPL 3 in July 2007. See http://web.archive.org/web/20070716031727/http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt It is found live here https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt and here https://www.gnu.org/licenses/old-licenses/gpl-2.0.html It refers to the Franklin Street address and to the GNU Lesser General Public License everywhere both in the text and HTML formats. There are many other variations of the GPL 2.0 text that were published over the years by the FSF and the gnu.org website. You can find the detailed history of this text at https://github.com/pombredanne/gpl-history and each variant is available as a license detection rule. Per SPDX.org, this license was released June 1991 This license is OSI certified.", "spdx_license_key": "GPL-2.0-only", "other_spdx_license_keys": ["GPL-2.0", "GPL 2.0", "LicenseRef-GPL-2.0"], "osi_license_key": "GPL-2.0", "text_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt", "http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt"], "osi_url": "http://opensource.org/licenses/gpl-license.php", "faq_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html", "other_urls": ["http://creativecommons.org/choose/cc-gpl", "http://creativecommons.org/images/public/cc-GPL-a.png", "http://creativecommons.org/licenses/GPL/2.0/", "http://creativecommons.org/licenses/GPL/2.0/legalcode.pt", "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", "http://www.opensource.org/licenses/GPL-2.0", "https://opensource.org/licenses/GPL-2.0", "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"], "ignorable_copyrights": ["Copyright (c) 1989, 1991 Free Software Foundation, Inc.", "copyrighted by the Free Software Foundation"], "ignorable_holders": ["Free Software Foundation, Inc.", "the Free Software Foundation"]} \ No newline at end of file +{ + "key": "gpl-2.0", + "short_name": "GPL 2.0", + "name": "GNU General Public License 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "notes": "This is the last version of the GPL text as published by the FSF. This variation was published around about the time of the FSF released the GPL 3 in July 2007. See http://web.archive.org/web/20070716031727/http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt It is found live here https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt and here https://www.gnu.org/licenses/old-licenses/gpl-2.0.html It refers to the Franklin Street address and to the GNU Lesser General Public License everywhere both in the text and HTML formats. There are many other variations of the GPL 2.0 text that were published over the years by the FSF and the gnu.org website. You can find the detailed history of this text at https://github.com/pombredanne/gpl-history and each variant is available as a license detection rule. Per SPDX.org, this license was released June 1991 This license is OSI certified.", + "spdx_license_key": "GPL-2.0-only", + "other_spdx_license_keys": [ + "GPL-2.0", + "GPL 2.0", + "LicenseRef-GPL-2.0" + ], + "osi_license_key": "GPL-2.0", + "text_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt", + "http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt" + ], + "osi_url": "http://opensource.org/licenses/gpl-license.php", + "faq_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html", + "other_urls": [ + "http://creativecommons.org/choose/cc-gpl", + "http://creativecommons.org/images/public/cc-GPL-a.png", + "http://creativecommons.org/licenses/GPL/2.0/", + "http://creativecommons.org/licenses/GPL/2.0/legalcode.pt", + "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "http://www.opensource.org/licenses/GPL-2.0", + "https://opensource.org/licenses/GPL-2.0", + "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 1989, 1991 Free Software Foundation, Inc.", + "copyrighted by the Free Software Foundation" + ], + "ignorable_holders": [ + "Free Software Foundation, Inc.", + "the Free Software Foundation" + ] +} \ No newline at end of file diff --git a/docs/gpl-3.0-aptana.LICENSE b/docs/gpl-3.0-aptana.LICENSE index 312f057303..9d6ba77b5b 100644 --- a/docs/gpl-3.0-aptana.LICENSE +++ b/docs/gpl-3.0-aptana.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-3.0-aptana +is_deprecated: yes +short_name: GPL 3.0 with Aptana exception +name: GPL 3.0 with Aptana exception +category: Copyleft +owner: Appcelerator +homepage_url: https://github.com/aptana/studio3/blob/development/README.md +is_exception: yes +other_urls: + - http://www.aptana.com/legal/gpl + - ttp://www.aptana.com/legal/gpl +--- + This program is distributed under the GNU General Public license. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, Version 3, as published by the Free Software Foundation. Any modifications must keep this entire license intact. diff --git a/docs/gpl-3.0-aptana.html b/docs/gpl-3.0-aptana.html index f7f8990f63..8d88868131 100644 --- a/docs/gpl-3.0-aptana.html +++ b/docs/gpl-3.0-aptana.html @@ -187,7 +187,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-3.0-aptana.json b/docs/gpl-3.0-aptana.json index 14309d8cfe..2d3a130e45 100644 --- a/docs/gpl-3.0-aptana.json +++ b/docs/gpl-3.0-aptana.json @@ -1 +1,14 @@ -{"key": "gpl-3.0-aptana", "is_deprecated": true, "short_name": "GPL 3.0 with Aptana exception", "name": "GPL 3.0 with Aptana exception", "category": "Copyleft", "owner": "Appcelerator", "homepage_url": "https://github.com/aptana/studio3/blob/development/README.md", "is_exception": true, "other_urls": ["http://www.aptana.com/legal/gpl", "ttp://www.aptana.com/legal/gpl"]} \ No newline at end of file +{ + "key": "gpl-3.0-aptana", + "is_deprecated": true, + "short_name": "GPL 3.0 with Aptana exception", + "name": "GPL 3.0 with Aptana exception", + "category": "Copyleft", + "owner": "Appcelerator", + "homepage_url": "https://github.com/aptana/studio3/blob/development/README.md", + "is_exception": true, + "other_urls": [ + "http://www.aptana.com/legal/gpl", + "ttp://www.aptana.com/legal/gpl" + ] +} \ No newline at end of file diff --git a/docs/gpl-3.0-autoconf.LICENSE b/docs/gpl-3.0-autoconf.LICENSE index 278ae9a694..07c77ad1f8 100644 --- a/docs/gpl-3.0-autoconf.LICENSE +++ b/docs/gpl-3.0-autoconf.LICENSE @@ -1,3 +1,18 @@ +--- +key: gpl-3.0-autoconf +is_deprecated: yes +short_name: GPL 3.0 with Autoconf exception +name: GPL 3.0 with Autoconf exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/autoconf-exception-3.0.html +notes: replaced by autoconf-exception-3.0 +is_exception: yes +spdx_license_key: GPL-3.0-with-autoconf-exception +text_urls: + - http://www.gnu.org/licenses/autoconf-exception-3.0.html +--- + 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 diff --git a/docs/gpl-3.0-autoconf.html b/docs/gpl-3.0-autoconf.html index 08a5590e07..1954d5bc41 100644 --- a/docs/gpl-3.0-autoconf.html +++ b/docs/gpl-3.0-autoconf.html @@ -213,7 +213,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-3.0-autoconf.json b/docs/gpl-3.0-autoconf.json index 2a0519e9d6..3cf173f06e 100644 --- a/docs/gpl-3.0-autoconf.json +++ b/docs/gpl-3.0-autoconf.json @@ -1 +1,15 @@ -{"key": "gpl-3.0-autoconf", "is_deprecated": true, "short_name": "GPL 3.0 with Autoconf exception", "name": "GPL 3.0 with Autoconf exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/autoconf-exception-3.0.html", "notes": "replaced by autoconf-exception-3.0", "is_exception": true, "spdx_license_key": "GPL-3.0-with-autoconf-exception", "text_urls": ["http://www.gnu.org/licenses/autoconf-exception-3.0.html"]} \ No newline at end of file +{ + "key": "gpl-3.0-autoconf", + "is_deprecated": true, + "short_name": "GPL 3.0 with Autoconf exception", + "name": "GPL 3.0 with Autoconf exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/autoconf-exception-3.0.html", + "notes": "replaced by autoconf-exception-3.0", + "is_exception": true, + "spdx_license_key": "GPL-3.0-with-autoconf-exception", + "text_urls": [ + "http://www.gnu.org/licenses/autoconf-exception-3.0.html" + ] +} \ No newline at end of file diff --git a/docs/gpl-3.0-bison.LICENSE b/docs/gpl-3.0-bison.LICENSE index 589f4e381a..b21c3adf88 100644 --- a/docs/gpl-3.0-bison.LICENSE +++ b/docs/gpl-3.0-bison.LICENSE @@ -1,3 +1,16 @@ +--- +key: gpl-3.0-bison +is_deprecated: yes +short_name: GPL 3.0 or later with Bison exception +name: GPL 3.0 or later with Bison exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +notes: replaced by bison-exception-2.2 +is_exception: yes +other_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +--- + Skeleton implementation for Bison's Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2006, 2009-2010 Free Software @@ -27,4 +40,4 @@ Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in -version 2.2 of Bison. +version 2.2 of Bison. \ No newline at end of file diff --git a/docs/gpl-3.0-bison.html b/docs/gpl-3.0-bison.html index b01ff338a9..331e0ff8bc 100644 --- a/docs/gpl-3.0-bison.html +++ b/docs/gpl-3.0-bison.html @@ -160,8 +160,7 @@ License without this special exception. This special exception was added by the Free Software Foundation in -version 2.2 of Bison. - +version 2.2 of Bison.
@@ -173,7 +172,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-3.0-bison.json b/docs/gpl-3.0-bison.json index 894cc0dc17..cfc1bdf0c9 100644 --- a/docs/gpl-3.0-bison.json +++ b/docs/gpl-3.0-bison.json @@ -1 +1,13 @@ -{"key": "gpl-3.0-bison", "is_deprecated": true, "short_name": "GPL 3.0 or later with Bison exception", "name": "GPL 3.0 or later with Bison exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "notes": "replaced by bison-exception-2.2", "is_exception": true, "other_urls": ["http://www.gnu.org/licenses/gpl-3.0.txt"]} \ No newline at end of file +{ + "key": "gpl-3.0-bison", + "is_deprecated": true, + "short_name": "GPL 3.0 or later with Bison exception", + "name": "GPL 3.0 or later with Bison exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "notes": "replaced by bison-exception-2.2", + "is_exception": true, + "other_urls": [ + "http://www.gnu.org/licenses/gpl-3.0.txt" + ] +} \ No newline at end of file diff --git a/docs/gpl-3.0-cygwin.LICENSE b/docs/gpl-3.0-cygwin.LICENSE index f71e185809..7278c63626 100644 --- a/docs/gpl-3.0-cygwin.LICENSE +++ b/docs/gpl-3.0-cygwin.LICENSE @@ -1,3 +1,20 @@ +--- +key: gpl-3.0-cygwin +is_deprecated: yes +short_name: GPL 3.0 or later with Cygwin exception +name: GPL 3.0 or later with Cygwin exception +category: Copyleft Limited +owner: Cygwin Project +homepage_url: http://cygwin.com/licensing.html +is_exception: yes +text_urls: + - http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src +other_urls: + - http://www.opensource.org/docs/osd/ + - http://www.redhat.com/about/contact/ww/ + - http://www.redhat.com/software/cygwin/ +--- + Cygwin is free software. Red Hat, Inc. licenses Cygwin to you under the terms of the GNU General Public License as published by the Free Software Foundation; you can redistribute it and/or modify it under the terms of diff --git a/docs/gpl-3.0-cygwin.html b/docs/gpl-3.0-cygwin.html index b4929881f3..6afabb2279 100644 --- a/docs/gpl-3.0-cygwin.html +++ b/docs/gpl-3.0-cygwin.html @@ -221,7 +221,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-3.0-cygwin.json b/docs/gpl-3.0-cygwin.json index b11ec80a17..c69f0a69fa 100644 --- a/docs/gpl-3.0-cygwin.json +++ b/docs/gpl-3.0-cygwin.json @@ -1 +1,18 @@ -{"key": "gpl-3.0-cygwin", "is_deprecated": true, "short_name": "GPL 3.0 or later with Cygwin exception", "name": "GPL 3.0 or later with Cygwin exception", "category": "Copyleft Limited", "owner": "Cygwin Project", "homepage_url": "http://cygwin.com/licensing.html", "is_exception": true, "text_urls": ["http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src"], "other_urls": ["http://www.opensource.org/docs/osd/", "http://www.redhat.com/about/contact/ww/", "http://www.redhat.com/software/cygwin/"]} \ No newline at end of file +{ + "key": "gpl-3.0-cygwin", + "is_deprecated": true, + "short_name": "GPL 3.0 or later with Cygwin exception", + "name": "GPL 3.0 or later with Cygwin exception", + "category": "Copyleft Limited", + "owner": "Cygwin Project", + "homepage_url": "http://cygwin.com/licensing.html", + "is_exception": true, + "text_urls": [ + "http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src" + ], + "other_urls": [ + "http://www.opensource.org/docs/osd/", + "http://www.redhat.com/about/contact/ww/", + "http://www.redhat.com/software/cygwin/" + ] +} \ No newline at end of file diff --git a/docs/gpl-3.0-font.LICENSE b/docs/gpl-3.0-font.LICENSE index 0e207e5ba5..128e67b8bb 100644 --- a/docs/gpl-3.0-font.LICENSE +++ b/docs/gpl-3.0-font.LICENSE @@ -1,3 +1,15 @@ +--- +key: gpl-3.0-font +is_deprecated: yes +short_name: GPL 3.0 or later with font exception +name: GPL 3.0 or later with font exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/software/freefont/license.html +notes: replaced by font-exception-gpl +is_exception: yes +--- + GNU FreeFont License Free UCS scalable fonts 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. diff --git a/docs/gpl-3.0-font.html b/docs/gpl-3.0-font.html index 91942b1444..8335500bd1 100644 --- a/docs/gpl-3.0-font.html +++ b/docs/gpl-3.0-font.html @@ -149,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-3.0-font.json b/docs/gpl-3.0-font.json index ca6bd77f62..ca94c2c58f 100644 --- a/docs/gpl-3.0-font.json +++ b/docs/gpl-3.0-font.json @@ -1 +1,11 @@ -{"key": "gpl-3.0-font", "is_deprecated": true, "short_name": "GPL 3.0 or later with font exception", "name": "GPL 3.0 or later with font exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/software/freefont/license.html", "notes": "replaced by font-exception-gpl", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-3.0-font", + "is_deprecated": true, + "short_name": "GPL 3.0 or later with font exception", + "name": "GPL 3.0 or later with font exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/software/freefont/license.html", + "notes": "replaced by font-exception-gpl", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-3.0-gcc.LICENSE b/docs/gpl-3.0-gcc.LICENSE index 5dd4761f56..43f9dd3596 100644 --- a/docs/gpl-3.0-gcc.LICENSE +++ b/docs/gpl-3.0-gcc.LICENSE @@ -1,3 +1,19 @@ +--- +key: gpl-3.0-gcc +is_deprecated: yes +short_name: GPL 3.0 with GCC runtime library exception +name: GPL 3.0 with GCC runtime library exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gcc-exception-3.1.html +notes: replaced by gcc-exception-3.1 +is_exception: yes +spdx_license_key: GPL-3.0-with-GCC-exception +text_urls: + - http://www.gnu.org/licenses/gcc-exception-3.1.html +faq_url: http://www.gnu.org/licenses/gcc-exception-3.1-faq.html +--- + 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 diff --git a/docs/gpl-3.0-gcc.html b/docs/gpl-3.0-gcc.html index 471233e0e0..a0307fb5dd 100644 --- a/docs/gpl-3.0-gcc.html +++ b/docs/gpl-3.0-gcc.html @@ -243,7 +243,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-3.0-gcc.json b/docs/gpl-3.0-gcc.json index 5ee3cbcaad..8df3721174 100644 --- a/docs/gpl-3.0-gcc.json +++ b/docs/gpl-3.0-gcc.json @@ -1 +1,16 @@ -{"key": "gpl-3.0-gcc", "is_deprecated": true, "short_name": "GPL 3.0 with GCC runtime library exception", "name": "GPL 3.0 with GCC runtime library exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/gcc-exception-3.1.html", "notes": "replaced by gcc-exception-3.1", "is_exception": true, "spdx_license_key": "GPL-3.0-with-GCC-exception", "text_urls": ["http://www.gnu.org/licenses/gcc-exception-3.1.html"], "faq_url": "http://www.gnu.org/licenses/gcc-exception-3.1-faq.html"} \ No newline at end of file +{ + "key": "gpl-3.0-gcc", + "is_deprecated": true, + "short_name": "GPL 3.0 with GCC runtime library exception", + "name": "GPL 3.0 with GCC runtime library exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gcc-exception-3.1.html", + "notes": "replaced by gcc-exception-3.1", + "is_exception": true, + "spdx_license_key": "GPL-3.0-with-GCC-exception", + "text_urls": [ + "http://www.gnu.org/licenses/gcc-exception-3.1.html" + ], + "faq_url": "http://www.gnu.org/licenses/gcc-exception-3.1-faq.html" +} \ No newline at end of file diff --git a/docs/gpl-3.0-linking-exception.LICENSE b/docs/gpl-3.0-linking-exception.LICENSE index 626375f9fb..16d7eec70f 100644 --- a/docs/gpl-3.0-linking-exception.LICENSE +++ b/docs/gpl-3.0-linking-exception.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-3.0-linking-exception +short_name: GPL-3.0 Linking Exception +name: GPL-3.0 Linking Exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs +is_exception: yes +spdx_license_key: GPL-3.0-linking-exception +--- + Additional permission under GNU GPL version 3 section 7 If you modify this Program, or any covered work, by linking or combining it with [name of library] (or a modified version of that library), containing parts covered by the terms of [name of library's license], the licensors of this Program grant you additional permission to convey the resulting work. \ No newline at end of file diff --git a/docs/gpl-3.0-linking-exception.html b/docs/gpl-3.0-linking-exception.html index 5169826193..387eac7995 100644 --- a/docs/gpl-3.0-linking-exception.html +++ b/docs/gpl-3.0-linking-exception.html @@ -136,7 +136,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-3.0-linking-exception.json b/docs/gpl-3.0-linking-exception.json index a742bcef79..85a75f7e5a 100644 --- a/docs/gpl-3.0-linking-exception.json +++ b/docs/gpl-3.0-linking-exception.json @@ -1 +1,10 @@ -{"key": "gpl-3.0-linking-exception", "short_name": "GPL-3.0 Linking Exception", "name": "GPL-3.0 Linking Exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs", "is_exception": true, "spdx_license_key": "GPL-3.0-linking-exception"} \ No newline at end of file +{ + "key": "gpl-3.0-linking-exception", + "short_name": "GPL-3.0 Linking Exception", + "name": "GPL-3.0 Linking Exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs", + "is_exception": true, + "spdx_license_key": "GPL-3.0-linking-exception" +} \ No newline at end of file diff --git a/docs/gpl-3.0-linking-source-exception.LICENSE b/docs/gpl-3.0-linking-source-exception.LICENSE index 491c8c6868..9fbb573888 100644 --- a/docs/gpl-3.0-linking-source-exception.LICENSE +++ b/docs/gpl-3.0-linking-source-exception.LICENSE @@ -1,3 +1,16 @@ +--- +key: gpl-3.0-linking-source-exception +short_name: GPL-3.0 Linking Source Exception +name: GPL-3.0 Linking Exception (with Corresponding Source) +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs +is_exception: yes +spdx_license_key: GPL-3.0-linking-source-exception +other_urls: + - https://github.com/mirror/wget/blob/master/src/http.c#L20 +--- + Additional permission under GNU GPL version 3 section 7 If you modify this Program, or any covered work, by linking or combining it with [name of library] (or a modified version of that library), containing parts covered by the terms of [name of library's license], the licensors of this Program grant you additional permission to convey the resulting work. {Corresponding Source for a non-source form of such a combination shall include the source code for the parts of [name of library] used as well as that of the covered work.} \ No newline at end of file diff --git a/docs/gpl-3.0-linking-source-exception.html b/docs/gpl-3.0-linking-source-exception.html index a0e72aadb0..e4e9004884 100644 --- a/docs/gpl-3.0-linking-source-exception.html +++ b/docs/gpl-3.0-linking-source-exception.html @@ -145,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-3.0-linking-source-exception.json b/docs/gpl-3.0-linking-source-exception.json index 2ad957559f..e436d41662 100644 --- a/docs/gpl-3.0-linking-source-exception.json +++ b/docs/gpl-3.0-linking-source-exception.json @@ -1 +1,13 @@ -{"key": "gpl-3.0-linking-source-exception", "short_name": "GPL-3.0 Linking Source Exception", "name": "GPL-3.0 Linking Exception (with Corresponding Source)", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs", "is_exception": true, "spdx_license_key": "GPL-3.0-linking-source-exception", "other_urls": ["https://github.com/mirror/wget/blob/master/src/http.c#L20"]} \ No newline at end of file +{ + "key": "gpl-3.0-linking-source-exception", + "short_name": "GPL-3.0 Linking Source Exception", + "name": "GPL-3.0 Linking Exception (with Corresponding Source)", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs", + "is_exception": true, + "spdx_license_key": "GPL-3.0-linking-source-exception", + "other_urls": [ + "https://github.com/mirror/wget/blob/master/src/http.c#L20" + ] +} \ No newline at end of file diff --git a/docs/gpl-3.0-openbd.LICENSE b/docs/gpl-3.0-openbd.LICENSE index d1dae4ccb8..72b82ccf12 100644 --- a/docs/gpl-3.0-openbd.LICENSE +++ b/docs/gpl-3.0-openbd.LICENSE @@ -1,3 +1,20 @@ +--- +key: gpl-3.0-openbd +is_deprecated: yes +short_name: GPL 3.0h with OpenBD exception +name: GPL 3.0h with OpenBD exception +category: Copyleft +owner: OpenBD +notes: composite replaced by openbd-exception-3.0 +is_exception: yes +standard_notice: | + tagServlet Ltd grants the user the exception to distribute the entire Open + BlueDragon runtime libraries without the web application (.cfml, .html, + .js, .css, etc) that Open BlueDragon powers, from itself being licensed + under the GNU General Public License (v3), as long the entire runtime + remains intact and includes all license information. +--- + Open BlueDragon (OpenBD) is distributed under the GNU General Public License (v3). A copy of this can be found in the COPYING.txt file or at http://www.gnu.org/licenses/ diff --git a/docs/gpl-3.0-openbd.html b/docs/gpl-3.0-openbd.html index ea8f0b9df5..b1ebf790e7 100644 --- a/docs/gpl-3.0-openbd.html +++ b/docs/gpl-3.0-openbd.html @@ -128,6 +128,7 @@ .js, .css, etc) that Open BlueDragon powers, from itself being licensed under the GNU General Public License (v3), as long the entire runtime remains intact and includes all license information. + @@ -293,7 +294,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-3.0-openbd.json b/docs/gpl-3.0-openbd.json index 2b02597103..9b55826f95 100644 --- a/docs/gpl-3.0-openbd.json +++ b/docs/gpl-3.0-openbd.json @@ -1 +1,11 @@ -{"key": "gpl-3.0-openbd", "is_deprecated": true, "short_name": "GPL 3.0h with OpenBD exception", "name": "GPL 3.0h with OpenBD exception", "category": "Copyleft", "owner": "OpenBD", "notes": "composite replaced by openbd-exception-3.0", "is_exception": true, "standard_notice": "tagServlet Ltd grants the user the exception to distribute the entire Open\nBlueDragon runtime libraries without the web application (.cfml, .html,\n.js, .css, etc) that Open BlueDragon powers, from itself being licensed\nunder the GNU General Public License (v3), as long the entire runtime\nremains intact and includes all license information."} \ No newline at end of file +{ + "key": "gpl-3.0-openbd", + "is_deprecated": true, + "short_name": "GPL 3.0h with OpenBD exception", + "name": "GPL 3.0h with OpenBD exception", + "category": "Copyleft", + "owner": "OpenBD", + "notes": "composite replaced by openbd-exception-3.0", + "is_exception": true, + "standard_notice": "tagServlet Ltd grants the user the exception to distribute the entire Open\nBlueDragon runtime libraries without the web application (.cfml, .html,\n.js, .css, etc) that Open BlueDragon powers, from itself being licensed\nunder the GNU General Public License (v3), as long the entire runtime\nremains intact and includes all license information.\n" +} \ No newline at end of file diff --git a/docs/gpl-3.0-plus-openssl.LICENSE b/docs/gpl-3.0-plus-openssl.LICENSE index 2a9bbd1458..fe1d6bbb50 100644 --- a/docs/gpl-3.0-plus-openssl.LICENSE +++ b/docs/gpl-3.0-plus-openssl.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-3.0-plus-openssl +is_deprecated: yes +short_name: GPL 3.0 or later with OpenSSL exception +name: GPL 3.0 or later with OpenSSL exception +category: Copyleft Limited +owner: Tildeslash +notes: replaced by openssl-exception-gpl-3.0-plus +is_exception: yes +--- + 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 diff --git a/docs/gpl-3.0-plus-openssl.html b/docs/gpl-3.0-plus-openssl.html index e9f091173d..fd923c926e 100644 --- a/docs/gpl-3.0-plus-openssl.html +++ b/docs/gpl-3.0-plus-openssl.html @@ -156,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-3.0-plus-openssl.json b/docs/gpl-3.0-plus-openssl.json index 00bf57b07b..a2a8a97a19 100644 --- a/docs/gpl-3.0-plus-openssl.json +++ b/docs/gpl-3.0-plus-openssl.json @@ -1 +1,10 @@ -{"key": "gpl-3.0-plus-openssl", "is_deprecated": true, "short_name": "GPL 3.0 or later with OpenSSL exception", "name": "GPL 3.0 or later with OpenSSL exception", "category": "Copyleft Limited", "owner": "Tildeslash", "notes": "replaced by openssl-exception-gpl-3.0-plus", "is_exception": true} \ No newline at end of file +{ + "key": "gpl-3.0-plus-openssl", + "is_deprecated": true, + "short_name": "GPL 3.0 or later with OpenSSL exception", + "name": "GPL 3.0 or later with OpenSSL exception", + "category": "Copyleft Limited", + "owner": "Tildeslash", + "notes": "replaced by openssl-exception-gpl-3.0-plus", + "is_exception": true +} \ No newline at end of file diff --git a/docs/gpl-3.0-plus.LICENSE b/docs/gpl-3.0-plus.LICENSE index 9071ee2168..d85ed0536c 100644 --- a/docs/gpl-3.0-plus.LICENSE +++ b/docs/gpl-3.0-plus.LICENSE @@ -1,3 +1,35 @@ +--- +key: gpl-3.0-plus +short_name: GPL 3.0 or later +name: GNU General Public License 3.0 or later +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-3.0-standalone.html +notes: | + Per SPDX.org, this license was released 29 June 2007 This license is OSI + certified. +spdx_license_key: GPL-3.0-or-later +other_spdx_license_keys: + - GPL-3.0+ + - LicenseRef-GPL-3.0-or-later +text_urls: + - http://www.gnu.org/licenses/gpl-3.0-standalone.html +other_urls: + - http://www.opensource.org/licenses/GPL-3.0 + - https://opensource.org/licenses/GPL-3.0 + - https://www.gnu.org/licenses/gpl-3.0-standalone.html +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/licenses/ + - https://fsf.org/ + - https://www.gnu.org/licenses/ + - https://www.gnu.org/licenses/why-not-lgpl.html +--- + 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 @@ -685,4 +717,4 @@ 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 -. +. \ No newline at end of file diff --git a/docs/gpl-3.0-plus.html b/docs/gpl-3.0-plus.html index 928fdfea44..d6b707d6bf 100644 --- a/docs/gpl-3.0-plus.html +++ b/docs/gpl-3.0-plus.html @@ -872,8 +872,7 @@ 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 -<https://www.gnu.org/licenses/why-not-lgpl.html>. - +<https://www.gnu.org/licenses/why-not-lgpl.html>.
@@ -885,7 +884,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-3.0-plus.json b/docs/gpl-3.0-plus.json index 0b9edcb9d5..f60da9f559 100644 --- a/docs/gpl-3.0-plus.json +++ b/docs/gpl-3.0-plus.json @@ -1 +1,35 @@ -{"key": "gpl-3.0-plus", "short_name": "GPL 3.0 or later", "name": "GNU General Public License 3.0 or later", "category": "Copyleft", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html", "notes": "Per SPDX.org, this license was released 29 June 2007 This license is OSI\ncertified.\n", "spdx_license_key": "GPL-3.0-or-later", "other_spdx_license_keys": ["GPL-3.0+", "LicenseRef-GPL-3.0-or-later"], "text_urls": ["http://www.gnu.org/licenses/gpl-3.0-standalone.html"], "other_urls": ["http://www.opensource.org/licenses/GPL-3.0", "https://opensource.org/licenses/GPL-3.0", "https://www.gnu.org/licenses/gpl-3.0-standalone.html"], "minimum_coverage": 99, "ignorable_copyrights": ["Copyright (c) 2007 Free Software Foundation, Inc. "], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["http://www.gnu.org/licenses/", "https://fsf.org/", "https://www.gnu.org/licenses/", "https://www.gnu.org/licenses/why-not-lgpl.html"]} \ No newline at end of file +{ + "key": "gpl-3.0-plus", + "short_name": "GPL 3.0 or later", + "name": "GNU General Public License 3.0 or later", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html", + "notes": "Per SPDX.org, this license was released 29 June 2007 This license is OSI\ncertified.\n", + "spdx_license_key": "GPL-3.0-or-later", + "other_spdx_license_keys": [ + "GPL-3.0+", + "LicenseRef-GPL-3.0-or-later" + ], + "text_urls": [ + "http://www.gnu.org/licenses/gpl-3.0-standalone.html" + ], + "other_urls": [ + "http://www.opensource.org/licenses/GPL-3.0", + "https://opensource.org/licenses/GPL-3.0", + "https://www.gnu.org/licenses/gpl-3.0-standalone.html" + ], + "minimum_coverage": 99, + "ignorable_copyrights": [ + "Copyright (c) 2007 Free Software Foundation, Inc. " + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "http://www.gnu.org/licenses/", + "https://fsf.org/", + "https://www.gnu.org/licenses/", + "https://www.gnu.org/licenses/why-not-lgpl.html" + ] +} \ No newline at end of file diff --git a/docs/gpl-3.0.LICENSE b/docs/gpl-3.0.LICENSE index f288702d2f..0ac98ebe5f 100644 --- a/docs/gpl-3.0.LICENSE +++ b/docs/gpl-3.0.LICENSE @@ -1,3 +1,38 @@ +--- +key: gpl-3.0 +short_name: GPL 3.0 +name: GNU General Public License 3.0 +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-3.0.html +notes: | + Per SPDX.org, this license was released 29 June 2007 This license is OSI + certified. +spdx_license_key: GPL-3.0-only +other_spdx_license_keys: + - GPL-3.0 + - LicenseRef-gpl-3.0 +osi_license_key: GPL-3.0 +text_urls: + - http://www.gnu.org/licenses/gpl-3.0-standalone.html + - http://www.gnu.org/licenses/gpl-3.0.txt +osi_url: http://opensource.org/licenses/gpl-3.0.html +faq_url: http://www.gnu.org/licenses/gpl-faq.html +other_urls: + - http://www.gnu.org/licenses/quick-guide-gplv3.html + - http://www.opensource.org/licenses/GPL-3.0 + - https://opensource.org/licenses/GPL-3.0 + - https://www.gnu.org/licenses/gpl-3.0-standalone.html +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://fsf.org/ + - https://www.gnu.org/licenses/ + - https://www.gnu.org/licenses/why-not-lgpl.html +--- + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 @@ -671,4 +706,4 @@ 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 -. +. \ No newline at end of file diff --git a/docs/gpl-3.0.html b/docs/gpl-3.0.html index 98a28d93ea..ab891c5d9f 100644 --- a/docs/gpl-3.0.html +++ b/docs/gpl-3.0.html @@ -872,8 +872,7 @@ 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 -<https://www.gnu.org/licenses/why-not-lgpl.html>. - +<https://www.gnu.org/licenses/why-not-lgpl.html>.
@@ -885,7 +884,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-3.0.json b/docs/gpl-3.0.json index 38010441a4..c3fb163cf2 100644 --- a/docs/gpl-3.0.json +++ b/docs/gpl-3.0.json @@ -1 +1,38 @@ -{"key": "gpl-3.0", "short_name": "GPL 3.0", "name": "GNU General Public License 3.0", "category": "Copyleft", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html", "notes": "Per SPDX.org, this license was released 29 June 2007 This license is OSI\ncertified.\n", "spdx_license_key": "GPL-3.0-only", "other_spdx_license_keys": ["GPL-3.0", "LicenseRef-gpl-3.0"], "osi_license_key": "GPL-3.0", "text_urls": ["http://www.gnu.org/licenses/gpl-3.0-standalone.html", "http://www.gnu.org/licenses/gpl-3.0.txt"], "osi_url": "http://opensource.org/licenses/gpl-3.0.html", "faq_url": "http://www.gnu.org/licenses/gpl-faq.html", "other_urls": ["http://www.gnu.org/licenses/quick-guide-gplv3.html", "http://www.opensource.org/licenses/GPL-3.0", "https://opensource.org/licenses/GPL-3.0", "https://www.gnu.org/licenses/gpl-3.0-standalone.html"], "ignorable_copyrights": ["Copyright (c) 2007 Free Software Foundation, Inc. "], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["https://fsf.org/", "https://www.gnu.org/licenses/", "https://www.gnu.org/licenses/why-not-lgpl.html"]} \ No newline at end of file +{ + "key": "gpl-3.0", + "short_name": "GPL 3.0", + "name": "GNU General Public License 3.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html", + "notes": "Per SPDX.org, this license was released 29 June 2007 This license is OSI\ncertified.\n", + "spdx_license_key": "GPL-3.0-only", + "other_spdx_license_keys": [ + "GPL-3.0", + "LicenseRef-gpl-3.0" + ], + "osi_license_key": "GPL-3.0", + "text_urls": [ + "http://www.gnu.org/licenses/gpl-3.0-standalone.html", + "http://www.gnu.org/licenses/gpl-3.0.txt" + ], + "osi_url": "http://opensource.org/licenses/gpl-3.0.html", + "faq_url": "http://www.gnu.org/licenses/gpl-faq.html", + "other_urls": [ + "http://www.gnu.org/licenses/quick-guide-gplv3.html", + "http://www.opensource.org/licenses/GPL-3.0", + "https://opensource.org/licenses/GPL-3.0", + "https://www.gnu.org/licenses/gpl-3.0-standalone.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 2007 Free Software Foundation, Inc. " + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "https://fsf.org/", + "https://www.gnu.org/licenses/", + "https://www.gnu.org/licenses/why-not-lgpl.html" + ] +} \ No newline at end of file diff --git a/docs/gpl-generic-additional-terms.LICENSE b/docs/gpl-generic-additional-terms.LICENSE index e69de29bb2..d31c32d77d 100644 --- a/docs/gpl-generic-additional-terms.LICENSE +++ b/docs/gpl-generic-additional-terms.LICENSE @@ -0,0 +1,12 @@ +--- +key: gpl-generic-additional-terms +short_name: GPL Generic Additional Terms +name: GPL Generic Additional Terms +category: Copyleft +owner: Unspecified +notes: this is a generic entry for rare one-off GPL extra license terms. These are typically + additional terms under section 7 of the GPL-3.0 +is_exception: yes +is_generic: yes +spdx_license_key: LicenseRef-scancode-gpl-generic-additional-terms +--- \ No newline at end of file diff --git a/docs/gpl-generic-additional-terms.html b/docs/gpl-generic-additional-terms.html index fdc44eb1b1..8388590ed7 100644 --- a/docs/gpl-generic-additional-terms.html +++ b/docs/gpl-generic-additional-terms.html @@ -141,7 +141,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gpl-generic-additional-terms.json b/docs/gpl-generic-additional-terms.json index 5e859bb0bb..e62a6ab7a7 100644 --- a/docs/gpl-generic-additional-terms.json +++ b/docs/gpl-generic-additional-terms.json @@ -1 +1,11 @@ -{"key": "gpl-generic-additional-terms", "short_name": "GPL Generic Additional Terms", "name": "GPL Generic Additional Terms", "category": "Copyleft", "owner": "Unspecified", "notes": "this is a generic entry for rare one-off GPL extra license terms. These are typically additional terms under section 7 of the GPL-3.0", "is_exception": true, "is_generic": true, "spdx_license_key": "LicenseRef-scancode-gpl-generic-additional-terms"} \ No newline at end of file +{ + "key": "gpl-generic-additional-terms", + "short_name": "GPL Generic Additional Terms", + "name": "GPL Generic Additional Terms", + "category": "Copyleft", + "owner": "Unspecified", + "notes": "this is a generic entry for rare one-off GPL extra license terms. These are typically additional terms under section 7 of the GPL-3.0", + "is_exception": true, + "is_generic": true, + "spdx_license_key": "LicenseRef-scancode-gpl-generic-additional-terms" +} \ No newline at end of file diff --git a/docs/gplcc-1.0.LICENSE b/docs/gplcc-1.0.LICENSE index 47ca828a25..b393aa51b4 100644 --- a/docs/gplcc-1.0.LICENSE +++ b/docs/gplcc-1.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: gplcc-1.0 +short_name: GPL Cooperation Commitment 1.0 +name: GPL Cooperation Commitment 1.0 +category: Copyleft Limited +owner: Red Hat +homepage_url: https://github.com/gplcc/gplcc/blob/eee52346dd48bdf985657f082bb847f12f40c464/Project/COMMITMENT +is_exception: yes +spdx_license_key: GPL-CC-1.0 +faq_url: https://github.com/gplcc/gplcc/blob/master/README.md +other_urls: + - http://git.gluster.org/cgit/glusterfs.git/tree/COMMITMENT + - https://github.com/gplcc/gplcc/blob/master/Project/COMMITMENT + - https://github.com/wildfly/wildfly-core/blob/master/COMMITMENT + - https://github.com/wildfly/wildfly/blob/master/COMMITMENT + - https://gplcc.github.io/gplcc/Project/README-PROJECT.html + - https://raw.githubusercontent.com/wildfly/wildfly/master/COMMITMENT + - https://www.fsf.org/blogs/licensing/red-hat-leads-coalition-supporting-key-part-of-principles-of-community-oriented-gpl-enforcement + - https://www.kernel.org/doc/html/latest/process/kernel-enforcement-statement.html + - https://www.redhat.com/en/about/press-releases/technology-industry-leaders-join-forces-increase-predictability-open-source-licensing + - https://www.redhat.com/en/blog/gpl-cooperation-commitment-and-red-hat-projects?source=author&term=26851 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0 +--- + GPL Cooperation Commitment Version 1.0 diff --git a/docs/gplcc-1.0.html b/docs/gplcc-1.0.html index 16f0112d5a..0ef06befee 100644 --- a/docs/gplcc-1.0.html +++ b/docs/gplcc-1.0.html @@ -204,7 +204,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gplcc-1.0.json b/docs/gplcc-1.0.json index 6b2e748783..02848872f0 100644 --- a/docs/gplcc-1.0.json +++ b/docs/gplcc-1.0.json @@ -1 +1,26 @@ -{"key": "gplcc-1.0", "short_name": "GPL Cooperation Commitment 1.0", "name": "GPL Cooperation Commitment 1.0", "category": "Copyleft Limited", "owner": "Red Hat", "homepage_url": "https://github.com/gplcc/gplcc/blob/eee52346dd48bdf985657f082bb847f12f40c464/Project/COMMITMENT", "is_exception": true, "spdx_license_key": "GPL-CC-1.0", "faq_url": "https://github.com/gplcc/gplcc/blob/master/README.md", "other_urls": ["http://git.gluster.org/cgit/glusterfs.git/tree/COMMITMENT", "https://github.com/gplcc/gplcc/blob/master/Project/COMMITMENT", "https://github.com/wildfly/wildfly-core/blob/master/COMMITMENT", "https://github.com/wildfly/wildfly/blob/master/COMMITMENT", "https://gplcc.github.io/gplcc/Project/README-PROJECT.html", "https://raw.githubusercontent.com/wildfly/wildfly/master/COMMITMENT", "https://www.fsf.org/blogs/licensing/red-hat-leads-coalition-supporting-key-part-of-principles-of-community-oriented-gpl-enforcement", "https://www.kernel.org/doc/html/latest/process/kernel-enforcement-statement.html", "https://www.redhat.com/en/about/press-releases/technology-industry-leaders-join-forces-increase-predictability-open-source-licensing", "https://www.redhat.com/en/blog/gpl-cooperation-commitment-and-red-hat-projects?source=author&term=26851"], "ignorable_urls": ["https://creativecommons.org/licenses/by-sa/4.0"]} \ No newline at end of file +{ + "key": "gplcc-1.0", + "short_name": "GPL Cooperation Commitment 1.0", + "name": "GPL Cooperation Commitment 1.0", + "category": "Copyleft Limited", + "owner": "Red Hat", + "homepage_url": "https://github.com/gplcc/gplcc/blob/eee52346dd48bdf985657f082bb847f12f40c464/Project/COMMITMENT", + "is_exception": true, + "spdx_license_key": "GPL-CC-1.0", + "faq_url": "https://github.com/gplcc/gplcc/blob/master/README.md", + "other_urls": [ + "http://git.gluster.org/cgit/glusterfs.git/tree/COMMITMENT", + "https://github.com/gplcc/gplcc/blob/master/Project/COMMITMENT", + "https://github.com/wildfly/wildfly-core/blob/master/COMMITMENT", + "https://github.com/wildfly/wildfly/blob/master/COMMITMENT", + "https://gplcc.github.io/gplcc/Project/README-PROJECT.html", + "https://raw.githubusercontent.com/wildfly/wildfly/master/COMMITMENT", + "https://www.fsf.org/blogs/licensing/red-hat-leads-coalition-supporting-key-part-of-principles-of-community-oriented-gpl-enforcement", + "https://www.kernel.org/doc/html/latest/process/kernel-enforcement-statement.html", + "https://www.redhat.com/en/about/press-releases/technology-industry-leaders-join-forces-increase-predictability-open-source-licensing", + "https://www.redhat.com/en/blog/gpl-cooperation-commitment-and-red-hat-projects?source=author&term=26851" + ], + "ignorable_urls": [ + "https://creativecommons.org/licenses/by-sa/4.0" + ] +} \ No newline at end of file diff --git a/docs/graphics-gems.LICENSE b/docs/graphics-gems.LICENSE index 8ea2e7b42c..b35dfd7d59 100644 --- a/docs/graphics-gems.LICENSE +++ b/docs/graphics-gems.LICENSE @@ -1,3 +1,15 @@ +--- +key: graphics-gems +short_name: Graphics Gems License +name: Graphics Gems License +category: Permissive +owner: Eric Haines +homepage_url: https://github.com/erich666/GraphicsGems/blob/master/LICENSE.md +spdx_license_key: LicenseRef-scancode-graphics-gems +text_urls: + - https://github.com/erich666/GraphicsGems/blob/master/LICENSE.md +--- + LICENSE This code repository predates the concept of Open Source, and predates most diff --git a/docs/graphics-gems.html b/docs/graphics-gems.html index 2fdea667cf..f6cf66785e 100644 --- a/docs/graphics-gems.html +++ b/docs/graphics-gems.html @@ -150,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/graphics-gems.json b/docs/graphics-gems.json index ac8d8a2589..fab6a144b2 100644 --- a/docs/graphics-gems.json +++ b/docs/graphics-gems.json @@ -1 +1,12 @@ -{"key": "graphics-gems", "short_name": "Graphics Gems License", "name": "Graphics Gems License", "category": "Permissive", "owner": "Eric Haines", "homepage_url": "https://github.com/erich666/GraphicsGems/blob/master/LICENSE.md", "spdx_license_key": "LicenseRef-scancode-graphics-gems", "text_urls": ["https://github.com/erich666/GraphicsGems/blob/master/LICENSE.md"]} \ No newline at end of file +{ + "key": "graphics-gems", + "short_name": "Graphics Gems License", + "name": "Graphics Gems License", + "category": "Permissive", + "owner": "Eric Haines", + "homepage_url": "https://github.com/erich666/GraphicsGems/blob/master/LICENSE.md", + "spdx_license_key": "LicenseRef-scancode-graphics-gems", + "text_urls": [ + "https://github.com/erich666/GraphicsGems/blob/master/LICENSE.md" + ] +} \ No newline at end of file diff --git a/docs/greg-roelofs.LICENSE b/docs/greg-roelofs.LICENSE index 2b624ce5e3..55e172646a 100644 --- a/docs/greg-roelofs.LICENSE +++ b/docs/greg-roelofs.LICENSE @@ -1,3 +1,16 @@ +--- +key: greg-roelofs +short_name: Greg Roelofs License +name: Greg Roelofs License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-greg-roelofs +other_urls: + - https://www.oreilly.com/library/view/png-the-definitive/9781565925427/ +ignorable_authors: + - Greg Roelofs and contributors +--- + This software is provided "as is," without warranty of any kind, express or implied. In no event shall the author or contributors be held liable for any damages arising in any way from the use of diff --git a/docs/greg-roelofs.html b/docs/greg-roelofs.html index 36e2950156..be0d32fca6 100644 --- a/docs/greg-roelofs.html +++ b/docs/greg-roelofs.html @@ -159,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/greg-roelofs.json b/docs/greg-roelofs.json index e023ee6848..34bd6f8236 100644 --- a/docs/greg-roelofs.json +++ b/docs/greg-roelofs.json @@ -1 +1,14 @@ -{"key": "greg-roelofs", "short_name": "Greg Roelofs License", "name": "Greg Roelofs License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-greg-roelofs", "other_urls": ["https://www.oreilly.com/library/view/png-the-definitive/9781565925427/"], "ignorable_authors": ["Greg Roelofs and contributors"]} \ No newline at end of file +{ + "key": "greg-roelofs", + "short_name": "Greg Roelofs License", + "name": "Greg Roelofs License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-greg-roelofs", + "other_urls": [ + "https://www.oreilly.com/library/view/png-the-definitive/9781565925427/" + ], + "ignorable_authors": [ + "Greg Roelofs and contributors" + ] +} \ No newline at end of file diff --git a/docs/gregory-pietsch.LICENSE b/docs/gregory-pietsch.LICENSE index c517d41e43..afa2bf52e2 100644 --- a/docs/gregory-pietsch.LICENSE +++ b/docs/gregory-pietsch.LICENSE @@ -1,3 +1,12 @@ +--- +key: gregory-pietsch +short_name: Gregory Pietsch Liberal License +name: Gregory Pietsch Liberal License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-gregory-pietsch +--- + This file and the accompanying getopt.c implementation file are hereby placed in the public domain without restrictions. Just give the auth credit, don't claim you wrote it or prevent anyone else from using it. \ No newline at end of file diff --git a/docs/gregory-pietsch.html b/docs/gregory-pietsch.html index cf5e0ec571..aa269b6248 100644 --- a/docs/gregory-pietsch.html +++ b/docs/gregory-pietsch.html @@ -122,7 +122,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gregory-pietsch.json b/docs/gregory-pietsch.json index ab4025f81d..27790685d7 100644 --- a/docs/gregory-pietsch.json +++ b/docs/gregory-pietsch.json @@ -1 +1,8 @@ -{"key": "gregory-pietsch", "short_name": "Gregory Pietsch Liberal License", "name": "Gregory Pietsch Liberal License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-gregory-pietsch"} \ No newline at end of file +{ + "key": "gregory-pietsch", + "short_name": "Gregory Pietsch Liberal License", + "name": "Gregory Pietsch Liberal License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-gregory-pietsch" +} \ No newline at end of file diff --git a/docs/gsoap-1.3a.LICENSE b/docs/gsoap-1.3a.LICENSE index 44e0336966..386c6ed5db 100644 --- a/docs/gsoap-1.3a.LICENSE +++ b/docs/gsoap-1.3a.LICENSE @@ -1,3 +1,21 @@ +--- +key: gsoap-1.3a +short_name: gSOAP Public License v1.3a +name: gSOAP Public License v1.3a +category: Copyleft Limited +owner: Genivia +spdx_license_key: LicenseRef-scancode-gsoap-1.3a +ignorable_copyrights: + - Copyright (c) 2001-2004 Robert A. van Engelen, Genivia inc. +ignorable_holders: + - Robert A. van Engelen, Genivia inc. +ignorable_authors: + - Robert A. van Engelen +ignorable_urls: + - http://genivia.com/Products/gsoap/contract.html + - http://genivia.com/Products/gsoap/license.pdf +--- + ****** gSOAP Public License ****** **** Version 1.3a **** diff --git a/docs/gsoap-1.3a.html b/docs/gsoap-1.3a.html index d6fc3ab234..f18c92a6be 100644 --- a/docs/gsoap-1.3a.html +++ b/docs/gsoap-1.3a.html @@ -526,7 +526,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gsoap-1.3a.json b/docs/gsoap-1.3a.json index 1630c2aaac..21d8e59a37 100644 --- a/docs/gsoap-1.3a.json +++ b/docs/gsoap-1.3a.json @@ -1 +1,21 @@ -{"key": "gsoap-1.3a", "short_name": "gSOAP Public License v1.3a", "name": "gSOAP Public License v1.3a", "category": "Copyleft Limited", "owner": "Genivia", "spdx_license_key": "LicenseRef-scancode-gsoap-1.3a", "ignorable_copyrights": ["Copyright (c) 2001-2004 Robert A. van Engelen, Genivia inc."], "ignorable_holders": ["Robert A. van Engelen, Genivia inc."], "ignorable_authors": ["Robert A. van Engelen"], "ignorable_urls": ["http://genivia.com/Products/gsoap/contract.html", "http://genivia.com/Products/gsoap/license.pdf"]} \ No newline at end of file +{ + "key": "gsoap-1.3a", + "short_name": "gSOAP Public License v1.3a", + "name": "gSOAP Public License v1.3a", + "category": "Copyleft Limited", + "owner": "Genivia", + "spdx_license_key": "LicenseRef-scancode-gsoap-1.3a", + "ignorable_copyrights": [ + "Copyright (c) 2001-2004 Robert A. van Engelen, Genivia inc." + ], + "ignorable_holders": [ + "Robert A. van Engelen, Genivia inc." + ], + "ignorable_authors": [ + "Robert A. van Engelen" + ], + "ignorable_urls": [ + "http://genivia.com/Products/gsoap/contract.html", + "http://genivia.com/Products/gsoap/license.pdf" + ] +} \ No newline at end of file diff --git a/docs/gsoap-1.3b.LICENSE b/docs/gsoap-1.3b.LICENSE index abe23af758..4800ab97c6 100644 --- a/docs/gsoap-1.3b.LICENSE +++ b/docs/gsoap-1.3b.LICENSE @@ -1,3 +1,25 @@ +--- +key: gsoap-1.3b +short_name: gSOAP Public License v1.3b +name: gSOAP Public License v1.3b +category: Copyleft Limited +owner: Genivia +homepage_url: http://www.cs.fsu.edu/~engelen/license.html +spdx_license_key: gSOAP-1.3b +text_urls: + - http://www.cs.fsu.edu/~engelen/license.html +ignorable_copyrights: + - Copyright (c) 2001-2004 Robert A. van Engelen, Genivia inc. + - Copyright (c) 2001-2009 Robert A. van Engelen, Genivia inc. +ignorable_holders: + - Robert A. van Engelen, Genivia inc. +ignorable_authors: + - Robert A. van Engelen +ignorable_urls: + - http://www.cs.fsu.edu/ + - http://www.genivia.com/ +--- + gSOAP Public License Version 1.3b diff --git a/docs/gsoap-1.3b.html b/docs/gsoap-1.3b.html index e96525710f..6a6acfb4bf 100644 --- a/docs/gsoap-1.3b.html +++ b/docs/gsoap-1.3b.html @@ -337,7 +337,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gsoap-1.3b.json b/docs/gsoap-1.3b.json index b7e475a08d..c454a6612b 100644 --- a/docs/gsoap-1.3b.json +++ b/docs/gsoap-1.3b.json @@ -1 +1,26 @@ -{"key": "gsoap-1.3b", "short_name": "gSOAP Public License v1.3b", "name": "gSOAP Public License v1.3b", "category": "Copyleft Limited", "owner": "Genivia", "homepage_url": "http://www.cs.fsu.edu/~engelen/license.html", "spdx_license_key": "gSOAP-1.3b", "text_urls": ["http://www.cs.fsu.edu/~engelen/license.html"], "ignorable_copyrights": ["Copyright (c) 2001-2004 Robert A. van Engelen, Genivia inc.", "Copyright (c) 2001-2009 Robert A. van Engelen, Genivia inc."], "ignorable_holders": ["Robert A. van Engelen, Genivia inc."], "ignorable_authors": ["Robert A. van Engelen"], "ignorable_urls": ["http://www.cs.fsu.edu/", "http://www.genivia.com/"]} \ No newline at end of file +{ + "key": "gsoap-1.3b", + "short_name": "gSOAP Public License v1.3b", + "name": "gSOAP Public License v1.3b", + "category": "Copyleft Limited", + "owner": "Genivia", + "homepage_url": "http://www.cs.fsu.edu/~engelen/license.html", + "spdx_license_key": "gSOAP-1.3b", + "text_urls": [ + "http://www.cs.fsu.edu/~engelen/license.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 2001-2004 Robert A. van Engelen, Genivia inc.", + "Copyright (c) 2001-2009 Robert A. van Engelen, Genivia inc." + ], + "ignorable_holders": [ + "Robert A. van Engelen, Genivia inc." + ], + "ignorable_authors": [ + "Robert A. van Engelen" + ], + "ignorable_urls": [ + "http://www.cs.fsu.edu/", + "http://www.genivia.com/" + ] +} \ No newline at end of file diff --git a/docs/gstreamer-exception-2.0.LICENSE b/docs/gstreamer-exception-2.0.LICENSE index 6d21e1102f..629feca325 100644 --- a/docs/gstreamer-exception-2.0.LICENSE +++ b/docs/gstreamer-exception-2.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: gstreamer-exception-2.0 +short_name: GStreamer exception to GPL 2.0 or later +name: GStreamer exception to GPL 2.0 or later +category: Copyleft Limited +owner: GNOME Project +homepage_url: https://github.com/GNOME/gnome-music/blob/master/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-gstreamer-exception-2.0 +standard_notice: | + # GNOME Music 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 2 of the License, or + # (at your option) any later version." at head of souce files for GNOME + Music https://github.com/GNOME/gnome-music +--- + The GNOME Music authors hereby grant permission for non-GPL compatible GStreamer plugins to be used and distributed together with GStreamer and GNOME Music. This permission is above and beyond the permissions diff --git a/docs/gstreamer-exception-2.0.html b/docs/gstreamer-exception-2.0.html index bd3fcf3144..95f2cdf51a 100644 --- a/docs/gstreamer-exception-2.0.html +++ b/docs/gstreamer-exception-2.0.html @@ -152,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gstreamer-exception-2.0.json b/docs/gstreamer-exception-2.0.json index d0bfc66545..f8ff77eefa 100644 --- a/docs/gstreamer-exception-2.0.json +++ b/docs/gstreamer-exception-2.0.json @@ -1 +1,11 @@ -{"key": "gstreamer-exception-2.0", "short_name": "GStreamer exception to GPL 2.0 or later", "name": "GStreamer exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "GNOME Project", "homepage_url": "https://github.com/GNOME/gnome-music/blob/master/LICENSE", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-gstreamer-exception-2.0", "standard_notice": "# GNOME Music is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of the License, or\n# (at your option) any later version.\" at head of souce files for GNOME\nMusic https://github.com/GNOME/gnome-music\n"} \ No newline at end of file +{ + "key": "gstreamer-exception-2.0", + "short_name": "GStreamer exception to GPL 2.0 or later", + "name": "GStreamer exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "GNOME Project", + "homepage_url": "https://github.com/GNOME/gnome-music/blob/master/LICENSE", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-gstreamer-exception-2.0", + "standard_notice": "# GNOME Music is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of the License, or\n# (at your option) any later version.\" at head of souce files for GNOME\nMusic https://github.com/GNOME/gnome-music\n" +} \ No newline at end of file diff --git a/docs/gstreamer-exception-2005.LICENSE b/docs/gstreamer-exception-2005.LICENSE new file mode 100644 index 0000000000..4956c0e717 --- /dev/null +++ b/docs/gstreamer-exception-2005.LICENSE @@ -0,0 +1,16 @@ +--- +key: gstreamer-exception-2005 +short_name: GStreamer Exception (2005) +name: GStreamer Exception (2005) +category: Permissive +owner: GStreamer Project +is_exception: yes +spdx_license_key: GStreamer-exception-2005 +other_urls: + - https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/licensing.html?gi-language=c#licensing-of-applications-using-gstreamer +--- + +The Totem project hereby grant permission for non-gpl compatible GStreamer +plugins to be used and distributed together with GStreamer and Totem. +This permission are above and beyond the permissions granted by the GPL license +Totem is covered by. \ No newline at end of file diff --git a/docs/gstreamer-exception-2005.html b/docs/gstreamer-exception-2005.html new file mode 100644 index 0000000000..022d16c94f --- /dev/null +++ b/docs/gstreamer-exception-2005.html @@ -0,0 +1,162 @@ + + + + + + LicenseDB: gstreamer-exception-2005 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + gstreamer-exception-2005 + +
+ +
short_name
+
+ + GStreamer Exception (2005) + +
+ +
name
+
+ + GStreamer Exception (2005) + +
+ +
category
+
+ + Permissive + +
+ +
owner
+
+ + GStreamer Project + +
+ +
is_exception
+
+ + True + +
+ +
spdx_license_key
+
+ + GStreamer-exception-2005 + +
+ +
other_urls
+
+ + + +
+ +
+
license_text
+
The Totem project hereby grant permission for non-gpl compatible GStreamer
+plugins to be used and distributed together with GStreamer and Totem.
+This permission are above and beyond the permissions granted by the GPL license
+Totem is covered by.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/gstreamer-exception-2005.json b/docs/gstreamer-exception-2005.json new file mode 100644 index 0000000000..53fd3bf1bd --- /dev/null +++ b/docs/gstreamer-exception-2005.json @@ -0,0 +1,12 @@ +{ + "key": "gstreamer-exception-2005", + "short_name": "GStreamer Exception (2005)", + "name": "GStreamer Exception (2005)", + "category": "Permissive", + "owner": "GStreamer Project", + "is_exception": true, + "spdx_license_key": "GStreamer-exception-2005", + "other_urls": [ + "https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/licensing.html?gi-language=c#licensing-of-applications-using-gstreamer" + ] +} \ No newline at end of file diff --git a/docs/gstreamer-exception-2005.yml b/docs/gstreamer-exception-2005.yml new file mode 100644 index 0000000000..2e2a5f9693 --- /dev/null +++ b/docs/gstreamer-exception-2005.yml @@ -0,0 +1,9 @@ +key: gstreamer-exception-2005 +short_name: GStreamer Exception (2005) +name: GStreamer Exception (2005) +category: Permissive +owner: GStreamer Project +is_exception: yes +spdx_license_key: GStreamer-exception-2005 +other_urls: + - https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/licensing.html?gi-language=c#licensing-of-applications-using-gstreamer diff --git a/docs/gstreamer-exception-2008.LICENSE b/docs/gstreamer-exception-2008.LICENSE new file mode 100644 index 0000000000..9c640ef25c --- /dev/null +++ b/docs/gstreamer-exception-2008.LICENSE @@ -0,0 +1,18 @@ +--- +key: gstreamer-exception-2008 +short_name: GStreamer Exception (2008) +name: GStreamer Exception (2008) +category: Permissive +owner: GStreamer Project +is_exception: yes +spdx_license_key: GStreamer-exception-2008 +other_urls: + - https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/licensing.html?gi-language=c#licensing-of-applications-using-gstreamer +--- + +This project hereby grants permission for non-GPL compatible GStreamer plugins +to be used and distributed together with GStreamer and this project. This +permission is above and beyond the permissions granted by the GPL license by +which this project is covered. If you modify this code, you may extend this +exception to your version of the code, but you are not obligated to do so. +If you do not wish to do so, delete this exception statement from your version. \ No newline at end of file diff --git a/docs/gstreamer-exception-2008.html b/docs/gstreamer-exception-2008.html new file mode 100644 index 0000000000..b38113a95b --- /dev/null +++ b/docs/gstreamer-exception-2008.html @@ -0,0 +1,164 @@ + + + + + + LicenseDB: gstreamer-exception-2008 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + gstreamer-exception-2008 + +
+ +
short_name
+
+ + GStreamer Exception (2008) + +
+ +
name
+
+ + GStreamer Exception (2008) + +
+ +
category
+
+ + Permissive + +
+ +
owner
+
+ + GStreamer Project + +
+ +
is_exception
+
+ + True + +
+ +
spdx_license_key
+
+ + GStreamer-exception-2008 + +
+ +
other_urls
+
+ + + +
+ +
+
license_text
+
This project hereby grants permission for non-GPL compatible GStreamer plugins
+to be used and distributed together with GStreamer and this project. This
+permission is above and beyond the permissions granted by the GPL license by
+which this project is covered. If you modify this code, you may extend this
+exception to your version of the code, but you are not obligated to do so.
+If you do not wish to do so, delete this exception statement from your version.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/gstreamer-exception-2008.json b/docs/gstreamer-exception-2008.json new file mode 100644 index 0000000000..04a30dfcb2 --- /dev/null +++ b/docs/gstreamer-exception-2008.json @@ -0,0 +1,12 @@ +{ + "key": "gstreamer-exception-2008", + "short_name": "GStreamer Exception (2008)", + "name": "GStreamer Exception (2008)", + "category": "Permissive", + "owner": "GStreamer Project", + "is_exception": true, + "spdx_license_key": "GStreamer-exception-2008", + "other_urls": [ + "https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/licensing.html?gi-language=c#licensing-of-applications-using-gstreamer" + ] +} \ No newline at end of file diff --git a/docs/gstreamer-exception-2008.yml b/docs/gstreamer-exception-2008.yml new file mode 100644 index 0000000000..5cf65cf8aa --- /dev/null +++ b/docs/gstreamer-exception-2008.yml @@ -0,0 +1,9 @@ +key: gstreamer-exception-2008 +short_name: GStreamer Exception (2008) +name: GStreamer Exception (2008) +category: Permissive +owner: GStreamer Project +is_exception: yes +spdx_license_key: GStreamer-exception-2008 +other_urls: + - https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/licensing.html?gi-language=c#licensing-of-applications-using-gstreamer diff --git a/docs/guile-exception-2.0.LICENSE b/docs/guile-exception-2.0.LICENSE index 1c784f6a45..5e87d19981 100644 --- a/docs/guile-exception-2.0.LICENSE +++ b/docs/guile-exception-2.0.LICENSE @@ -1,3 +1,45 @@ +--- +key: guile-exception-2.0 +short_name: GUILE exception to GPL 2.0 +name: GUILE exception to GPL 2.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: LicenseRef-scancode-guile-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This library 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 2, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception, the Free Software Foundation gives permission for + additional uses of the text contained in its release of GUILE. + The exception is that, if you link the GUILE library with other files to + produce an executable, this does not by itself cause the resulting + executable to be covered by the GNU General Public License. Your use of + that executable is in no way restricted on account of linking the GUILE + library code into it. + This exception does not however invalidate any other reasons why the + executable file might be covered by the GNU General Public License. + This exception applies only to the code released by the Free Software + Foundation under the name GUILE. If you copy code from other Free Software + Foundation releases into a copy of GUILE, as the General Public License + permits, the exception does not apply to the code that you add in this way. + To avoid misleading anyone as to the status of such modified files, you + must delete this exception notice from them. + If you write modifications of your own for GUILE, it is your choice whether + to permit this exception to apply to your modifications. If you do not wish + that, delete this exception notice. +--- + The exception is that, if you link the GUILE library with other files to produce an executable, this does not by itself cause the resulting executable to be covered by the GNU General Public License. Your use of that executable is in no diff --git a/docs/guile-exception-2.0.html b/docs/guile-exception-2.0.html index 1638f753d8..40bab6721c 100644 --- a/docs/guile-exception-2.0.html +++ b/docs/guile-exception-2.0.html @@ -175,7 +175,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/guile-exception-2.0.json b/docs/guile-exception-2.0.json index 9e97563968..1a316b10d1 100644 --- a/docs/guile-exception-2.0.json +++ b/docs/guile-exception-2.0.json @@ -1 +1,13 @@ -{"key": "guile-exception-2.0", "short_name": "GUILE exception to GPL 2.0", "name": "GUILE exception to GPL 2.0", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-guile-exception-2.0", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nAs a special exception, the Free Software Foundation gives permission for\nadditional uses of the text contained in its release of GUILE.\nThe exception is that, if you link the GUILE library with other files to\nproduce an executable, this does not by itself cause the resulting\nexecutable to be covered by the GNU General Public License. Your use of\nthat executable is in no way restricted on account of linking the GUILE\nlibrary code into it.\nThis exception does not however invalidate any other reasons why the\nexecutable file might be covered by the GNU General Public License.\nThis exception applies only to the code released by the Free Software\nFoundation under the name GUILE. If you copy code from other Free Software\nFoundation releases into a copy of GUILE, as the General Public License\npermits, the exception does not apply to the code that you add in this way.\nTo avoid misleading anyone as to the status of such modified files, you\nmust delete this exception notice from them.\nIf you write modifications of your own for GUILE, it is your choice whether\nto permit this exception to apply to your modifications. If you do not wish\nthat, delete this exception notice.\n"} \ No newline at end of file +{ + "key": "guile-exception-2.0", + "short_name": "GUILE exception to GPL 2.0", + "name": "GUILE exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-guile-exception-2.0", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nAs a special exception, the Free Software Foundation gives permission for\nadditional uses of the text contained in its release of GUILE.\nThe exception is that, if you link the GUILE library with other files to\nproduce an executable, this does not by itself cause the resulting\nexecutable to be covered by the GNU General Public License. Your use of\nthat executable is in no way restricted on account of linking the GUILE\nlibrary code into it.\nThis exception does not however invalidate any other reasons why the\nexecutable file might be covered by the GNU General Public License.\nThis exception applies only to the code released by the Free Software\nFoundation under the name GUILE. If you copy code from other Free Software\nFoundation releases into a copy of GUILE, as the General Public License\npermits, the exception does not apply to the code that you add in this way.\nTo avoid misleading anyone as to the status of such modified files, you\nmust delete this exception notice from them.\nIf you write modifications of your own for GUILE, it is your choice whether\nto permit this exception to apply to your modifications. If you do not wish\nthat, delete this exception notice.\n" +} \ No newline at end of file diff --git a/docs/gust-font-1.0.LICENSE b/docs/gust-font-1.0.LICENSE index de783149c9..17d54a3f16 100644 --- a/docs/gust-font-1.0.LICENSE +++ b/docs/gust-font-1.0.LICENSE @@ -1,3 +1,18 @@ +--- +key: gust-font-1.0 +short_name: GUST Font License 1.0 +name: GUST Font License 1.0 +category: Copyleft +owner: GUST +homepage_url: http://www.gust.org.pl/projects/e-foundry/licenses/GUST-FONT-LICENSE.txt/view +spdx_license_key: LicenseRef-scancode-gust-font-1.0 +ignorable_urls: + - http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt + - http://www.gust.org.pl/ + - http://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt + - http://www.latex-project.org/lppl.txt +--- + This is version 1.0, dated 22 June 2009, of the GUST Font License. (GUST is the Polish TeX Users Group, http://www.gust.org.pl) diff --git a/docs/gust-font-1.0.html b/docs/gust-font-1.0.html index 13f9cc3cfa..11f3cf1d44 100644 --- a/docs/gust-font-1.0.html +++ b/docs/gust-font-1.0.html @@ -163,7 +163,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gust-font-1.0.json b/docs/gust-font-1.0.json index e8119cab0e..6ccf674fa6 100644 --- a/docs/gust-font-1.0.json +++ b/docs/gust-font-1.0.json @@ -1 +1,15 @@ -{"key": "gust-font-1.0", "short_name": "GUST Font License 1.0", "name": "GUST Font License 1.0", "category": "Copyleft", "owner": "GUST", "homepage_url": "http://www.gust.org.pl/projects/e-foundry/licenses/GUST-FONT-LICENSE.txt/view", "spdx_license_key": "LicenseRef-scancode-gust-font-1.0", "ignorable_urls": ["http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt", "http://www.gust.org.pl/", "http://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt", "http://www.latex-project.org/lppl.txt"]} \ No newline at end of file +{ + "key": "gust-font-1.0", + "short_name": "GUST Font License 1.0", + "name": "GUST Font License 1.0", + "category": "Copyleft", + "owner": "GUST", + "homepage_url": "http://www.gust.org.pl/projects/e-foundry/licenses/GUST-FONT-LICENSE.txt/view", + "spdx_license_key": "LicenseRef-scancode-gust-font-1.0", + "ignorable_urls": [ + "http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt", + "http://www.gust.org.pl/", + "http://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt", + "http://www.latex-project.org/lppl.txt" + ] +} \ No newline at end of file diff --git a/docs/gust-font-2006-09-30.LICENSE b/docs/gust-font-2006-09-30.LICENSE index ad80c7486f..be0268f9f3 100644 --- a/docs/gust-font-2006-09-30.LICENSE +++ b/docs/gust-font-2006-09-30.LICENSE @@ -1,3 +1,18 @@ +--- +key: gust-font-2006-09-30 +short_name: GUST Font License 2006-09-30 +name: GUST Font License 2006-09-30 +category: Copyleft +owner: GUST +homepage_url: https://github.com/mathjax/MathJax/blob/2.3.0/fonts/HTML-CSS/Gyre-Pagella/GUST-FONT-LICENSE.txt +spdx_license_key: LicenseRef-scancode-gust-font-2006-09-30 +ignorable_urls: + - http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt + - http://www.gust.org.pl/ + - http://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt + - http://www.latex-project.org/lppl.txt +--- + This is a preliminary version (2006-09-30), barring acceptance from the LaTeX Project Team and other feedback, of the GUST Font License. (GUST is the Polish TeX Users Group, http://www.gust.org.pl) diff --git a/docs/gust-font-2006-09-30.html b/docs/gust-font-2006-09-30.html index 5b073f164e..1ee61ffc3b 100644 --- a/docs/gust-font-2006-09-30.html +++ b/docs/gust-font-2006-09-30.html @@ -164,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gust-font-2006-09-30.json b/docs/gust-font-2006-09-30.json index 6ad88f60af..dec2a9f8c5 100644 --- a/docs/gust-font-2006-09-30.json +++ b/docs/gust-font-2006-09-30.json @@ -1 +1,15 @@ -{"key": "gust-font-2006-09-30", "short_name": "GUST Font License 2006-09-30", "name": "GUST Font License 2006-09-30", "category": "Copyleft", "owner": "GUST", "homepage_url": "https://github.com/mathjax/MathJax/blob/2.3.0/fonts/HTML-CSS/Gyre-Pagella/GUST-FONT-LICENSE.txt", "spdx_license_key": "LicenseRef-scancode-gust-font-2006-09-30", "ignorable_urls": ["http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt", "http://www.gust.org.pl/", "http://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt", "http://www.latex-project.org/lppl.txt"]} \ No newline at end of file +{ + "key": "gust-font-2006-09-30", + "short_name": "GUST Font License 2006-09-30", + "name": "GUST Font License 2006-09-30", + "category": "Copyleft", + "owner": "GUST", + "homepage_url": "https://github.com/mathjax/MathJax/blob/2.3.0/fonts/HTML-CSS/Gyre-Pagella/GUST-FONT-LICENSE.txt", + "spdx_license_key": "LicenseRef-scancode-gust-font-2006-09-30", + "ignorable_urls": [ + "http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt", + "http://www.gust.org.pl/", + "http://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt", + "http://www.latex-project.org/lppl.txt" + ] +} \ No newline at end of file diff --git a/docs/gutenberg-2020.LICENSE b/docs/gutenberg-2020.LICENSE index 7f1256327d..b961063f6b 100644 --- a/docs/gutenberg-2020.LICENSE +++ b/docs/gutenberg-2020.LICENSE @@ -1,3 +1,21 @@ +--- +key: gutenberg-2020 +short_name: Gutenberg License 2020 +name: Project Gutenberg License 2020 +category: Proprietary Free +owner: gutenberg Project +homepage_url: http://dev.gutenberg.org/policy/license.html +notes: Based on text retrieved in 09-2020 +spdx_license_key: LicenseRef-scancode-gutenberg-2020 +ignorable_urls: + - http://www.gutenberg.org/ + - http://www.gutenberg.org/contact + - http://www.gutenberg.org/donate + - http://www.gutenberg.org/license +ignorable_emails: + - gbnewby@pglaf.org +--- + THE FULL PROJECT GUTENBERG LICENSE PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK diff --git a/docs/gutenberg-2020.html b/docs/gutenberg-2020.html index fd7d30b3e7..cca8e46539 100644 --- a/docs/gutenberg-2020.html +++ b/docs/gutenberg-2020.html @@ -252,7 +252,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/gutenberg-2020.json b/docs/gutenberg-2020.json index 08ce7091e3..01bdf9ade7 100644 --- a/docs/gutenberg-2020.json +++ b/docs/gutenberg-2020.json @@ -1 +1,19 @@ -{"key": "gutenberg-2020", "short_name": "Gutenberg License 2020", "name": "Project Gutenberg License 2020", "category": "Proprietary Free", "owner": "gutenberg Project", "homepage_url": "http://dev.gutenberg.org/policy/license.html", "notes": "Based on text retrieved in 09-2020", "spdx_license_key": "LicenseRef-scancode-gutenberg-2020", "ignorable_urls": ["http://www.gutenberg.org/", "http://www.gutenberg.org/contact", "http://www.gutenberg.org/donate", "http://www.gutenberg.org/license"], "ignorable_emails": ["gbnewby@pglaf.org"]} \ No newline at end of file +{ + "key": "gutenberg-2020", + "short_name": "Gutenberg License 2020", + "name": "Project Gutenberg License 2020", + "category": "Proprietary Free", + "owner": "gutenberg Project", + "homepage_url": "http://dev.gutenberg.org/policy/license.html", + "notes": "Based on text retrieved in 09-2020", + "spdx_license_key": "LicenseRef-scancode-gutenberg-2020", + "ignorable_urls": [ + "http://www.gutenberg.org/", + "http://www.gutenberg.org/contact", + "http://www.gutenberg.org/donate", + "http://www.gutenberg.org/license" + ], + "ignorable_emails": [ + "gbnewby@pglaf.org" + ] +} \ No newline at end of file diff --git a/docs/h2-1.0.LICENSE b/docs/h2-1.0.LICENSE index f3cd301427..41ce451849 100644 --- a/docs/h2-1.0.LICENSE +++ b/docs/h2-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: h2-1.0 +short_name: H2 1.0 +name: H2 License 1.0 +category: Copyleft Limited +owner: H2 Group +homepage_url: http://h2database.com +notes: | + This is an old license that is derived from the MPL-1.1 and different + enough to be tracked as such. Newer versions use a plain MPL-2.0 license. +spdx_license_key: LicenseRef-scancode-h2-1.0 +text_urls: + - https://web.archive.org/web/20110519100109/http://h2database.com/html/license.html +minimum_coverage: 98 +--- + H2 License - Version 1.0 @@ -390,4 +406,4 @@ Initial Developer may designate portions of the Covered Code as "Multiple- Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of this or the alternative licenses, if any, specified by the Initial Developer in the file -described in Exhibit A. +described in Exhibit A. \ No newline at end of file diff --git a/docs/h2-1.0.html b/docs/h2-1.0.html index 23a429e4c0..6870ac697d 100644 --- a/docs/h2-1.0.html +++ b/docs/h2-1.0.html @@ -532,8 +532,7 @@ Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of this or the alternative licenses, if any, specified by the Initial Developer in the file -described in Exhibit A. - +described in Exhibit A.
@@ -545,7 +544,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/h2-1.0.json b/docs/h2-1.0.json index 36fa490f0f..2d84bff4c4 100644 --- a/docs/h2-1.0.json +++ b/docs/h2-1.0.json @@ -1 +1,14 @@ -{"key": "h2-1.0", "short_name": "H2 1.0", "name": "H2 License 1.0", "category": "Copyleft Limited", "owner": "H2 Group", "homepage_url": "http://h2database.com", "notes": "This is an old license that is derived from the MPL-1.1 and different\nenough to be tracked as such. Newer versions use a plain MPL-2.0 license.\n", "spdx_license_key": "LicenseRef-scancode-h2-1.0", "text_urls": ["https://web.archive.org/web/20110519100109/http://h2database.com/html/license.html"], "minimum_coverage": 98} \ No newline at end of file +{ + "key": "h2-1.0", + "short_name": "H2 1.0", + "name": "H2 License 1.0", + "category": "Copyleft Limited", + "owner": "H2 Group", + "homepage_url": "http://h2database.com", + "notes": "This is an old license that is derived from the MPL-1.1 and different\nenough to be tracked as such. Newer versions use a plain MPL-2.0 license.\n", + "spdx_license_key": "LicenseRef-scancode-h2-1.0", + "text_urls": [ + "https://web.archive.org/web/20110519100109/http://h2database.com/html/license.html" + ], + "minimum_coverage": 98 +} \ No newline at end of file diff --git a/docs/hacos-1.2.LICENSE b/docs/hacos-1.2.LICENSE index 3e21e4a42e..8e507353ba 100644 --- a/docs/hacos-1.2.LICENSE +++ b/docs/hacos-1.2.LICENSE @@ -1,3 +1,19 @@ +--- +key: hacos-1.2 +short_name: HACOS 1.2 +name: Health Administration Corporation Open Source License 1.2 +category: Copyleft +owner: Health Administration Corp (NSW Department of Health) +homepage_url: https://sourceforge.net/project/shownotes.php?group_id=123700&release_id=291669 +spdx_license_key: LicenseRef-scancode-hacos-1.2 +text_urls: + - https://sourceforge.net/project/shownotes.php?group_id=123700&release_id=291669 +ignorable_copyrights: + - Copyright (c) 2004, 2005 Health Administration Corporation +ignorable_holders: + - Health Administration Corporation +--- + HEALTH ADMINISTRATION CORPORATION OPEN SOURCE LICENSE VERSION 1.2 1. DEFINITIONS. diff --git a/docs/hacos-1.2.html b/docs/hacos-1.2.html index 8397bd71d2..e09c003942 100644 --- a/docs/hacos-1.2.html +++ b/docs/hacos-1.2.html @@ -685,7 +685,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hacos-1.2.json b/docs/hacos-1.2.json index d6a88dab4d..20e0fac7e1 100644 --- a/docs/hacos-1.2.json +++ b/docs/hacos-1.2.json @@ -1 +1,18 @@ -{"key": "hacos-1.2", "short_name": "HACOS 1.2", "name": "Health Administration Corporation Open Source License 1.2", "category": "Copyleft", "owner": "Health Administration Corp (NSW Department of Health)", "homepage_url": "https://sourceforge.net/project/shownotes.php?group_id=123700&release_id=291669", "spdx_license_key": "LicenseRef-scancode-hacos-1.2", "text_urls": ["https://sourceforge.net/project/shownotes.php?group_id=123700&release_id=291669"], "ignorable_copyrights": ["Copyright (c) 2004, 2005 Health Administration Corporation"], "ignorable_holders": ["Health Administration Corporation"]} \ No newline at end of file +{ + "key": "hacos-1.2", + "short_name": "HACOS 1.2", + "name": "Health Administration Corporation Open Source License 1.2", + "category": "Copyleft", + "owner": "Health Administration Corp (NSW Department of Health)", + "homepage_url": "https://sourceforge.net/project/shownotes.php?group_id=123700&release_id=291669", + "spdx_license_key": "LicenseRef-scancode-hacos-1.2", + "text_urls": [ + "https://sourceforge.net/project/shownotes.php?group_id=123700&release_id=291669" + ], + "ignorable_copyrights": [ + "Copyright (c) 2004, 2005 Health Administration Corporation" + ], + "ignorable_holders": [ + "Health Administration Corporation" + ] +} \ No newline at end of file diff --git a/docs/happy-bunny.LICENSE b/docs/happy-bunny.LICENSE index d08a0f99a1..9b94c445f0 100644 --- a/docs/happy-bunny.LICENSE +++ b/docs/happy-bunny.LICENSE @@ -1,3 +1,17 @@ +--- +key: happy-bunny +short_name: The Happy Bunny License +name: The Happy Bunny License +category: Permissive +owner: G-Truc Creation +homepage_url: https://glm.g-truc.net/copying.txt +spdx_license_key: LicenseRef-scancode-happy-bunny +ignorable_copyrights: + - Copyright (c) G-Truc Creation +ignorable_holders: + - G-Truc Creation +--- + ================================================================================ The Happy Bunny License (Modified MIT License) -------------------------------------------------------------------------------- diff --git a/docs/happy-bunny.html b/docs/happy-bunny.html index b143ead21b..3a3c08531b 100644 --- a/docs/happy-bunny.html +++ b/docs/happy-bunny.html @@ -170,7 +170,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/happy-bunny.json b/docs/happy-bunny.json index 93248ea912..e10e7a3947 100644 --- a/docs/happy-bunny.json +++ b/docs/happy-bunny.json @@ -1 +1,15 @@ -{"key": "happy-bunny", "short_name": "The Happy Bunny License", "name": "The Happy Bunny License", "category": "Permissive", "owner": "G-Truc Creation", "homepage_url": "https://glm.g-truc.net/copying.txt", "spdx_license_key": "LicenseRef-scancode-happy-bunny", "ignorable_copyrights": ["Copyright (c) G-Truc Creation"], "ignorable_holders": ["G-Truc Creation"]} \ No newline at end of file +{ + "key": "happy-bunny", + "short_name": "The Happy Bunny License", + "name": "The Happy Bunny License", + "category": "Permissive", + "owner": "G-Truc Creation", + "homepage_url": "https://glm.g-truc.net/copying.txt", + "spdx_license_key": "LicenseRef-scancode-happy-bunny", + "ignorable_copyrights": [ + "Copyright (c) G-Truc Creation" + ], + "ignorable_holders": [ + "G-Truc Creation" + ] +} \ No newline at end of file diff --git a/docs/haskell-report.LICENSE b/docs/haskell-report.LICENSE index b822c78459..ce55605d35 100644 --- a/docs/haskell-report.LICENSE +++ b/docs/haskell-report.LICENSE @@ -1,3 +1,13 @@ +--- +key: haskell-report +short_name: Haskell Report License +name: Haskell Language Report License +category: Permissive +owner: Simon Marlow +homepage_url: https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License +spdx_license_key: HaskellReport +--- + The authors intend this Report to belong to the entire Haskell community, and so we grant permission to copy and distribute it for any purpose, provided that it is reproduced in its entirety, including this Notice. Modified versions of diff --git a/docs/haskell-report.html b/docs/haskell-report.html index 4498ff25db..518bd7aa21 100644 --- a/docs/haskell-report.html +++ b/docs/haskell-report.html @@ -132,7 +132,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/haskell-report.json b/docs/haskell-report.json index aa42ec5235..80f84a875e 100644 --- a/docs/haskell-report.json +++ b/docs/haskell-report.json @@ -1 +1,9 @@ -{"key": "haskell-report", "short_name": "Haskell Report License", "name": "Haskell Language Report License", "category": "Permissive", "owner": "Simon Marlow", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License", "spdx_license_key": "HaskellReport"} \ No newline at end of file +{ + "key": "haskell-report", + "short_name": "Haskell Report License", + "name": "Haskell Language Report License", + "category": "Permissive", + "owner": "Simon Marlow", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License", + "spdx_license_key": "HaskellReport" +} \ No newline at end of file diff --git a/docs/hauppauge-firmware-eula.LICENSE b/docs/hauppauge-firmware-eula.LICENSE index 591c489533..90867bd57c 100644 --- a/docs/hauppauge-firmware-eula.LICENSE +++ b/docs/hauppauge-firmware-eula.LICENSE @@ -1,3 +1,13 @@ +--- +key: hauppauge-firmware-eula +short_name: Hauppauge Firmware EULA +name: Hauppauge Firmware EULA +category: Proprietary Free +owner: Hauppauge +homepage_url: https://lists.debian.org/debian-devel/2007/02/msg00498.html +spdx_license_key: LicenseRef-scancode-hauppauge-firmware-eula +--- + END-USER FIRMWARE LICENSE AGREEMENT (this license). LICENSE. You may copy and use the Firmware, subject to these conditions: diff --git a/docs/hauppauge-firmware-eula.html b/docs/hauppauge-firmware-eula.html index 0d32f8b1a7..393c10680e 100644 --- a/docs/hauppauge-firmware-eula.html +++ b/docs/hauppauge-firmware-eula.html @@ -237,7 +237,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hauppauge-firmware-eula.json b/docs/hauppauge-firmware-eula.json index 189ec2cd90..4ef79c869b 100644 --- a/docs/hauppauge-firmware-eula.json +++ b/docs/hauppauge-firmware-eula.json @@ -1 +1,9 @@ -{"key": "hauppauge-firmware-eula", "short_name": "Hauppauge Firmware EULA", "name": "Hauppauge Firmware EULA", "category": "Proprietary Free", "owner": "Hauppauge", "homepage_url": "https://lists.debian.org/debian-devel/2007/02/msg00498.html", "spdx_license_key": "LicenseRef-scancode-hauppauge-firmware-eula"} \ No newline at end of file +{ + "key": "hauppauge-firmware-eula", + "short_name": "Hauppauge Firmware EULA", + "name": "Hauppauge Firmware EULA", + "category": "Proprietary Free", + "owner": "Hauppauge", + "homepage_url": "https://lists.debian.org/debian-devel/2007/02/msg00498.html", + "spdx_license_key": "LicenseRef-scancode-hauppauge-firmware-eula" +} \ No newline at end of file diff --git a/docs/hauppauge-firmware-oem.LICENSE b/docs/hauppauge-firmware-oem.LICENSE index 032c8f6d49..16a1dd1e32 100644 --- a/docs/hauppauge-firmware-oem.LICENSE +++ b/docs/hauppauge-firmware-oem.LICENSE @@ -1,3 +1,13 @@ +--- +key: hauppauge-firmware-oem +short_name: Hauppauge Firmware OEM License +name: Hauppauge Firmware OEM License +category: Proprietary Free +owner: Hauppauge +homepage_url: https://lists.debian.org/debian-devel/2007/02/msg00498.html +spdx_license_key: LicenseRef-scancode-hauppauge-firmware-oem +--- + OEM/IHV/ISV FIRMWARE LICENSE AGREEMENT IMPORTANT - PLEASE READ BEFORE INSTALLING OR USING THIS FIRMWARE diff --git a/docs/hauppauge-firmware-oem.html b/docs/hauppauge-firmware-oem.html index 211c9425f8..f580e77de1 100644 --- a/docs/hauppauge-firmware-oem.html +++ b/docs/hauppauge-firmware-oem.html @@ -275,7 +275,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hauppauge-firmware-oem.json b/docs/hauppauge-firmware-oem.json index 881c4995a5..1d63526d94 100644 --- a/docs/hauppauge-firmware-oem.json +++ b/docs/hauppauge-firmware-oem.json @@ -1 +1,9 @@ -{"key": "hauppauge-firmware-oem", "short_name": "Hauppauge Firmware OEM License", "name": "Hauppauge Firmware OEM License", "category": "Proprietary Free", "owner": "Hauppauge", "homepage_url": "https://lists.debian.org/debian-devel/2007/02/msg00498.html", "spdx_license_key": "LicenseRef-scancode-hauppauge-firmware-oem"} \ No newline at end of file +{ + "key": "hauppauge-firmware-oem", + "short_name": "Hauppauge Firmware OEM License", + "name": "Hauppauge Firmware OEM License", + "category": "Proprietary Free", + "owner": "Hauppauge", + "homepage_url": "https://lists.debian.org/debian-devel/2007/02/msg00498.html", + "spdx_license_key": "LicenseRef-scancode-hauppauge-firmware-oem" +} \ No newline at end of file diff --git a/docs/hazelcast-community-1.0.LICENSE b/docs/hazelcast-community-1.0.LICENSE index 086159c4dd..b0cd41292a 100644 --- a/docs/hazelcast-community-1.0.LICENSE +++ b/docs/hazelcast-community-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: hazelcast-community-1.0 +short_name: Hazelcast Community License 1.0 +name: Hazelcast Community License 1.0 +category: Source-available +owner: Hazelcast +homepage_url: https://github.com/hazelcast/hazelcast-aws/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-hazelcast-community-1.0 +ignorable_urls: + - http://hazelcast.com/Hazelcast-community-license +--- + Hazelcast Community License Version 1.0 diff --git a/docs/hazelcast-community-1.0.html b/docs/hazelcast-community-1.0.html index 0016d7354d..1a7ccca535 100644 --- a/docs/hazelcast-community-1.0.html +++ b/docs/hazelcast-community-1.0.html @@ -253,7 +253,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hazelcast-community-1.0.json b/docs/hazelcast-community-1.0.json index 97d788a349..1206e2e2bb 100644 --- a/docs/hazelcast-community-1.0.json +++ b/docs/hazelcast-community-1.0.json @@ -1 +1,12 @@ -{"key": "hazelcast-community-1.0", "short_name": "Hazelcast Community License 1.0", "name": "Hazelcast Community License 1.0", "category": "Source-available", "owner": "Hazelcast", "homepage_url": "https://github.com/hazelcast/hazelcast-aws/blob/master/LICENSE", "spdx_license_key": "LicenseRef-scancode-hazelcast-community-1.0", "ignorable_urls": ["http://hazelcast.com/Hazelcast-community-license"]} \ No newline at end of file +{ + "key": "hazelcast-community-1.0", + "short_name": "Hazelcast Community License 1.0", + "name": "Hazelcast Community License 1.0", + "category": "Source-available", + "owner": "Hazelcast", + "homepage_url": "https://github.com/hazelcast/hazelcast-aws/blob/master/LICENSE", + "spdx_license_key": "LicenseRef-scancode-hazelcast-community-1.0", + "ignorable_urls": [ + "http://hazelcast.com/Hazelcast-community-license" + ] +} \ No newline at end of file diff --git a/docs/hdf4.LICENSE b/docs/hdf4.LICENSE index 6f73d89cc2..7839ba3c71 100644 --- a/docs/hdf4.LICENSE +++ b/docs/hdf4.LICENSE @@ -1,3 +1,61 @@ +--- +key: hdf4 +short_name: HDF4 License +name: HDF4 License +category: Permissive +owner: The HDF Group +homepage_url: https://bitbucket.hdfgroup.org/projects/HDFFR/repos/hdf4/browse/COPYING?raw +spdx_license_key: LicenseRef-scancode-hdf4 +other_urls: + - https://support.hdfgroup.org/ftp/HDF/releases/HDF4.2.14/src/hdf-4.2.14.tar.bz2 +standard_notice: | + Copyright Notice and License Terms for + Hierarchical Data Format (HDF) Software Library and Utilities + --------------------------------------------------------------------------- + Hierarchical Data Format (HDF) Software Library and Utilities + Copyright 2006 by The HDF Group. + NCSA Hierarchical Data Format (HDF) Software Library and Utilities + Copyright 1988-2006 by the Board of Trustees of the University of Illinois. + All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted for any purpose (including commercial purposes) + provided that the following conditions are met: + 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 materials provided with the distribution. + 3. In addition, redistributions of modified forms of the source or binary + code must carry prominent notices stating that the original code was + changed and the date of the change. + 4. All publications or advertising materials mentioning features or use of + this software are asked, but not required, to acknowledge that it was + developed by The HDF Group and by the National Center for Supercomputing + Applications at the University of Illinois at Urbana-Champaign and + credit the contributors. + 5. Neither the name of The HDF Group, the name of the University, nor the + name of any Contributor may be used to endorse or promote products derived + from this software without specific prior written permission from The HDF + Group, the University, or the Contributor, respectively. + DISCLAIMER: + THIS SOFTWARE IS PROVIDED BY THE HDF GROUP AND THE CONTRIBUTORS "AS IS" + WITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED. In no event + shall The HDF Group or the Contributors be liable for any damages suffered + by the users arising out of the use of this software, even if advised of + the possibility of such damage. + --------------------------------------------------------------------------- + --------------------------------------------------------------------------- + Contributors: National Center for Supercomputing Applications (NCSA) at + the University of Illinois, Fortner Software, Unidata Program Center + (netCDF), + The Independent JPEG Group (JPEG), Jean-loup Gailly and Mark Adler (gzip), + and Digital Equipment Corporation (DEC). + --------------------------------------------------------------------------- +ignorable_authors: + - The HDF Group +--- + Redistribution and use in source and binary forms, with or without modification, are permitted for any purpose (including commercial purposes) provided that the following conditions are met: diff --git a/docs/hdf4.html b/docs/hdf4.html index e013c80c68..0c2eaef253 100644 --- a/docs/hdf4.html +++ b/docs/hdf4.html @@ -226,7 +226,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hdf4.json b/docs/hdf4.json index a6033fa8b1..f6cc582926 100644 --- a/docs/hdf4.json +++ b/docs/hdf4.json @@ -1 +1,16 @@ -{"key": "hdf4", "short_name": "HDF4 License", "name": "HDF4 License", "category": "Permissive", "owner": "The HDF Group", "homepage_url": "https://bitbucket.hdfgroup.org/projects/HDFFR/repos/hdf4/browse/COPYING?raw", "spdx_license_key": "LicenseRef-scancode-hdf4", "other_urls": ["https://support.hdfgroup.org/ftp/HDF/releases/HDF4.2.14/src/hdf-4.2.14.tar.bz2"], "standard_notice": "Copyright Notice and License Terms for\nHierarchical Data Format (HDF) Software Library and Utilities\n---------------------------------------------------------------------------\nHierarchical Data Format (HDF) Software Library and Utilities\nCopyright 2006 by The HDF Group.\nNCSA Hierarchical Data Format (HDF) Software Library and Utilities\nCopyright 1988-2006 by the Board of Trustees of the University of Illinois.\nAll rights reserved.\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted for any purpose (including commercial purposes)\nprovided that the following conditions are met:\n1. Redistributions of source code must retain the above copyright notice,\nthis list of conditions, and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\nnotice,\nthis list of conditions, and the following disclaimer in the documentation\nand/or materials provided with the distribution.\n3. In addition, redistributions of modified forms of the source or binary\ncode must carry prominent notices stating that the original code was\nchanged and the date of the change.\n4. All publications or advertising materials mentioning features or use of\nthis software are asked, but not required, to acknowledge that it was\ndeveloped by The HDF Group and by the National Center for Supercomputing\nApplications at the University of Illinois at Urbana-Champaign and\ncredit the contributors.\n5. Neither the name of The HDF Group, the name of the University, nor the\nname of any Contributor may be used to endorse or promote products derived\nfrom this software without specific prior written permission from The HDF\nGroup, the University, or the Contributor, respectively.\nDISCLAIMER:\nTHIS SOFTWARE IS PROVIDED BY THE HDF GROUP AND THE CONTRIBUTORS \"AS IS\"\nWITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED. In no event\nshall The HDF Group or the Contributors be liable for any damages suffered\nby the users arising out of the use of this software, even if advised of\nthe possibility of such damage.\n---------------------------------------------------------------------------\n---------------------------------------------------------------------------\nContributors: National Center for Supercomputing Applications (NCSA) at\nthe University of Illinois, Fortner Software, Unidata Program Center\n(netCDF),\nThe Independent JPEG Group (JPEG), Jean-loup Gailly and Mark Adler (gzip),\nand Digital Equipment Corporation (DEC).\n---------------------------------------------------------------------------\n", "ignorable_authors": ["The HDF Group"]} \ No newline at end of file +{ + "key": "hdf4", + "short_name": "HDF4 License", + "name": "HDF4 License", + "category": "Permissive", + "owner": "The HDF Group", + "homepage_url": "https://bitbucket.hdfgroup.org/projects/HDFFR/repos/hdf4/browse/COPYING?raw", + "spdx_license_key": "LicenseRef-scancode-hdf4", + "other_urls": [ + "https://support.hdfgroup.org/ftp/HDF/releases/HDF4.2.14/src/hdf-4.2.14.tar.bz2" + ], + "standard_notice": "Copyright Notice and License Terms for\nHierarchical Data Format (HDF) Software Library and Utilities\n---------------------------------------------------------------------------\nHierarchical Data Format (HDF) Software Library and Utilities\nCopyright 2006 by The HDF Group.\nNCSA Hierarchical Data Format (HDF) Software Library and Utilities\nCopyright 1988-2006 by the Board of Trustees of the University of Illinois.\nAll rights reserved.\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted for any purpose (including commercial purposes)\nprovided that the following conditions are met:\n1. Redistributions of source code must retain the above copyright notice,\nthis list of conditions, and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\nnotice,\nthis list of conditions, and the following disclaimer in the documentation\nand/or materials provided with the distribution.\n3. In addition, redistributions of modified forms of the source or binary\ncode must carry prominent notices stating that the original code was\nchanged and the date of the change.\n4. All publications or advertising materials mentioning features or use of\nthis software are asked, but not required, to acknowledge that it was\ndeveloped by The HDF Group and by the National Center for Supercomputing\nApplications at the University of Illinois at Urbana-Champaign and\ncredit the contributors.\n5. Neither the name of The HDF Group, the name of the University, nor the\nname of any Contributor may be used to endorse or promote products derived\nfrom this software without specific prior written permission from The HDF\nGroup, the University, or the Contributor, respectively.\nDISCLAIMER:\nTHIS SOFTWARE IS PROVIDED BY THE HDF GROUP AND THE CONTRIBUTORS \"AS IS\"\nWITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED. In no event\nshall The HDF Group or the Contributors be liable for any damages suffered\nby the users arising out of the use of this software, even if advised of\nthe possibility of such damage.\n---------------------------------------------------------------------------\n---------------------------------------------------------------------------\nContributors: National Center for Supercomputing Applications (NCSA) at\nthe University of Illinois, Fortner Software, Unidata Program Center\n(netCDF),\nThe Independent JPEG Group (JPEG), Jean-loup Gailly and Mark Adler (gzip),\nand Digital Equipment Corporation (DEC).\n---------------------------------------------------------------------------\n", + "ignorable_authors": [ + "The HDF Group" + ] +} \ No newline at end of file diff --git a/docs/hdf5.LICENSE b/docs/hdf5.LICENSE index 838e6daa53..78a897d9b5 100644 --- a/docs/hdf5.LICENSE +++ b/docs/hdf5.LICENSE @@ -1,3 +1,17 @@ +--- +key: hdf5 +short_name: HDF5License +name: HDF5 License +category: Permissive +owner: The HDF Group +homepage_url: https://bitbucket.hdfgroup.org/projects/HDFFV/repos/hdf5/browse/COPYING?raw +spdx_license_key: LicenseRef-scancode-hdf5 +standard_notice: "This file is part of HDF5. The full HDF5 copyright notice, including \n\ + terms governing use, modification, and redistribution, is contained in \nthe COPYING file,\ + \ which can be found at the root of the source code \ndistribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.\n\ + If you do not have access to either file, you may request a copy from \nhelp@hdfgroup.org. " +--- + Redistribution and use in source and binary forms, with or without modification, are permitted for any purpose (including commercial purposes) provided that the following conditions are met: @@ -18,5 +32,4 @@ DISCLAIMER: THIS SOFTWARE IS PROVIDED BY THE HDF GROUP AND THE CONTRIBUTORS "AS IS" WITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED. IN NO EVENT SHALL THE HDF GROUP OR THE CONTRIBUTORS BE LIABLE FOR ANY DAMAGES SUFFERED BY THE USERS ARISING OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -You are under no obligation whatsoever to provide any bug fixes, patches, or upgrades to the features, functionality or performance of the source code ("Enhancements") to anyone; however, if you choose to make your Enhancements available either publicly, or directly to The HDF Group, without imposing a separate written license agreement for such Enhancements, then you hereby grant the following license: a non-exclusive, royalty-free perpetual license to install, use, modify, prepare derivative works, incorporate into other computer software, distribute, and sublicense such enhancements or derivative works thereof, in binary and source code form. - +You are under no obligation whatsoever to provide any bug fixes, patches, or upgrades to the features, functionality or performance of the source code ("Enhancements") to anyone; however, if you choose to make your Enhancements available either publicly, or directly to The HDF Group, without imposing a separate written license agreement for such Enhancements, then you hereby grant the following license: a non-exclusive, royalty-free perpetual license to install, use, modify, prepare derivative works, incorporate into other computer software, distribute, and sublicense such enhancements or derivative works thereof, in binary and source code form. \ No newline at end of file diff --git a/docs/hdf5.html b/docs/hdf5.html index e1727a091f..dc58ca13e7 100644 --- a/docs/hdf5.html +++ b/docs/hdf5.html @@ -147,9 +147,7 @@ THIS SOFTWARE IS PROVIDED BY THE HDF GROUP AND THE CONTRIBUTORS "AS IS" WITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED. IN NO EVENT SHALL THE HDF GROUP OR THE CONTRIBUTORS BE LIABLE FOR ANY DAMAGES SUFFERED BY THE USERS ARISING OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -You are under no obligation whatsoever to provide any bug fixes, patches, or upgrades to the features, functionality or performance of the source code ("Enhancements") to anyone; however, if you choose to make your Enhancements available either publicly, or directly to The HDF Group, without imposing a separate written license agreement for such Enhancements, then you hereby grant the following license: a non-exclusive, royalty-free perpetual license to install, use, modify, prepare derivative works, incorporate into other computer software, distribute, and sublicense such enhancements or derivative works thereof, in binary and source code form. - - +You are under no obligation whatsoever to provide any bug fixes, patches, or upgrades to the features, functionality or performance of the source code ("Enhancements") to anyone; however, if you choose to make your Enhancements available either publicly, or directly to The HDF Group, without imposing a separate written license agreement for such Enhancements, then you hereby grant the following license: a non-exclusive, royalty-free perpetual license to install, use, modify, prepare derivative works, incorporate into other computer software, distribute, and sublicense such enhancements or derivative works thereof, in binary and source code form.
@@ -161,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hdf5.json b/docs/hdf5.json index 8ba61511a0..5de2d7811e 100644 --- a/docs/hdf5.json +++ b/docs/hdf5.json @@ -1 +1,10 @@ -{"key": "hdf5", "short_name": "HDF5License", "name": "HDF5 License", "category": "Permissive", "owner": "The HDF Group", "homepage_url": "https://bitbucket.hdfgroup.org/projects/HDFFV/repos/hdf5/browse/COPYING?raw", "spdx_license_key": "LicenseRef-scancode-hdf5", "standard_notice": "This file is part of HDF5. The full HDF5 copyright notice, including \nterms governing use, modification, and redistribution, is contained in \nthe COPYING file, which can be found at the root of the source code \ndistribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.\nIf you do not have access to either file, you may request a copy from \nhelp@hdfgroup.org. "} \ No newline at end of file +{ + "key": "hdf5", + "short_name": "HDF5License", + "name": "HDF5 License", + "category": "Permissive", + "owner": "The HDF Group", + "homepage_url": "https://bitbucket.hdfgroup.org/projects/HDFFV/repos/hdf5/browse/COPYING?raw", + "spdx_license_key": "LicenseRef-scancode-hdf5", + "standard_notice": "This file is part of HDF5. The full HDF5 copyright notice, including \nterms governing use, modification, and redistribution, is contained in \nthe COPYING file, which can be found at the root of the source code \ndistribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.\nIf you do not have access to either file, you may request a copy from \nhelp@hdfgroup.org. " +} \ No newline at end of file diff --git a/docs/hdparm.LICENSE b/docs/hdparm.LICENSE index 2807dbc0cf..573ce2e0d6 100644 --- a/docs/hdparm.LICENSE +++ b/docs/hdparm.LICENSE @@ -1,3 +1,15 @@ +--- +key: hdparm +short_name: HDPARM License +name: HDPARM License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-hdparm +minimum_coverage: 90 +ignorable_emails: + - mlord@pobox.com +--- + You may freely use, modify, and redistribute the hdparm program, as either binary or source, or both. diff --git a/docs/hdparm.html b/docs/hdparm.html index ed08aaae4e..3630521c8a 100644 --- a/docs/hdparm.html +++ b/docs/hdparm.html @@ -142,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hdparm.json b/docs/hdparm.json index f5cd6ac895..9fc123f53c 100644 --- a/docs/hdparm.json +++ b/docs/hdparm.json @@ -1 +1,12 @@ -{"key": "hdparm", "short_name": "HDPARM License", "name": "HDPARM License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-hdparm", "minimum_coverage": 90, "ignorable_emails": ["mlord@pobox.com"]} \ No newline at end of file +{ + "key": "hdparm", + "short_name": "HDPARM License", + "name": "HDPARM License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-hdparm", + "minimum_coverage": 90, + "ignorable_emails": [ + "mlord@pobox.com" + ] +} \ No newline at end of file diff --git a/docs/helios-eula.LICENSE b/docs/helios-eula.LICENSE index bf3e0f3ef8..d72113dca9 100644 --- a/docs/helios-eula.LICENSE +++ b/docs/helios-eula.LICENSE @@ -1,3 +1,15 @@ +--- +key: helios-eula +short_name: Helios +name: Helios EULA +category: Commercial +owner: Helios Software Solutions +homepage_url: http://www.textpad.com/copyright.html +spdx_license_key: LicenseRef-scancode-helios-eula +ignorable_urls: + - http://www.textpad.com/ +--- + END USER LICENSE AGREEMENT FOR HELIOS SOFTWARE SOLUTIONS SOFTWARE. IMPORTANT - READ CAREFULLY: This Helios Software Solutions End-User License Agreement ("EULA") is a legal agreement between you (either an individual person or a single legal entity, who will be referred to in this EULA as "You") and Helios Software Solutions ("Helios") for the Helios software product that accompanies this EULA, including any associated media, printed materials and electronic documentation (the "Software Product"). The Software Product also includes any software updates, add-on components, web services and/or supplements that Helios may provide to You or make available to You after the date You obtain Your initial copy of the Software Product to the extent that such items are not accompanied by a separate license agreement or terms of use. By installing, copying, downloading, accessing or otherwise using the Software Product, You agree to be bound by the terms of this EULA. If You do not agree to the terms of this EULA, do not install, access or use the Software Product; instead, You should return it, with proof of purchase, to Your place of purchase for a full refund. diff --git a/docs/helios-eula.html b/docs/helios-eula.html index e454177a8e..01443355fc 100644 --- a/docs/helios-eula.html +++ b/docs/helios-eula.html @@ -196,7 +196,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/helios-eula.json b/docs/helios-eula.json index f51690c089..1150ae6fba 100644 --- a/docs/helios-eula.json +++ b/docs/helios-eula.json @@ -1 +1,12 @@ -{"key": "helios-eula", "short_name": "Helios", "name": "Helios EULA", "category": "Commercial", "owner": "Helios Software Solutions", "homepage_url": "http://www.textpad.com/copyright.html", "spdx_license_key": "LicenseRef-scancode-helios-eula", "ignorable_urls": ["http://www.textpad.com/"]} \ No newline at end of file +{ + "key": "helios-eula", + "short_name": "Helios", + "name": "Helios EULA", + "category": "Commercial", + "owner": "Helios Software Solutions", + "homepage_url": "http://www.textpad.com/copyright.html", + "spdx_license_key": "LicenseRef-scancode-helios-eula", + "ignorable_urls": [ + "http://www.textpad.com/" + ] +} \ No newline at end of file diff --git a/docs/helix.LICENSE b/docs/helix.LICENSE index ac8ef22c68..8624bafe7a 100644 --- a/docs/helix.LICENSE +++ b/docs/helix.LICENSE @@ -1,3 +1,21 @@ +--- +key: helix +short_name: Helix DNA License +name: Helix DNA Technology Binary Research Use License +category: Proprietary Free +owner: RealNetworks +homepage_url: https://helixcommunity.org/beula/ +spdx_license_key: LicenseRef-scancode-helix +text_urls: + - https://helixcommunity.org/beula/ +ignorable_copyrights: + - Copyright (c) 1995-2002 RealNetworks, Inc. +ignorable_holders: + - RealNetworks, Inc. +ignorable_urls: + - http://www.helixcommunity.org/ +--- + Helix DNA Technology Binary Research Use License REDISTRIBUTION NOT PERMITTED diff --git a/docs/helix.html b/docs/helix.html index dc228aa554..146b640735 100644 --- a/docs/helix.html +++ b/docs/helix.html @@ -201,7 +201,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/helix.json b/docs/helix.json index 43369cc0ae..a1bcabda3d 100644 --- a/docs/helix.json +++ b/docs/helix.json @@ -1 +1,21 @@ -{"key": "helix", "short_name": "Helix DNA License", "name": "Helix DNA Technology Binary Research Use License", "category": "Proprietary Free", "owner": "RealNetworks", "homepage_url": "https://helixcommunity.org/beula/", "spdx_license_key": "LicenseRef-scancode-helix", "text_urls": ["https://helixcommunity.org/beula/"], "ignorable_copyrights": ["Copyright (c) 1995-2002 RealNetworks, Inc."], "ignorable_holders": ["RealNetworks, Inc."], "ignorable_urls": ["http://www.helixcommunity.org/"]} \ No newline at end of file +{ + "key": "helix", + "short_name": "Helix DNA License", + "name": "Helix DNA Technology Binary Research Use License", + "category": "Proprietary Free", + "owner": "RealNetworks", + "homepage_url": "https://helixcommunity.org/beula/", + "spdx_license_key": "LicenseRef-scancode-helix", + "text_urls": [ + "https://helixcommunity.org/beula/" + ], + "ignorable_copyrights": [ + "Copyright (c) 1995-2002 RealNetworks, Inc." + ], + "ignorable_holders": [ + "RealNetworks, Inc." + ], + "ignorable_urls": [ + "http://www.helixcommunity.org/" + ] +} \ No newline at end of file diff --git a/docs/help.html b/docs/help.html index 0d6dca6ac2..1bdbfb1f4d 100644 --- a/docs/help.html +++ b/docs/help.html @@ -244,7 +244,8 @@

AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/henry-spencer-1999.LICENSE b/docs/henry-spencer-1999.LICENSE index d67a228b69..ad71a28185 100644 --- a/docs/henry-spencer-1999.LICENSE +++ b/docs/henry-spencer-1999.LICENSE @@ -1,3 +1,15 @@ +--- +key: henry-spencer-1999 +short_name: Henry Spencer License 1999 +name: Henry Spencer License 1999 +category: Permissive +owner: Henry Spencer +homepage_url: http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c +spdx_license_key: Spencer-99 +text_urls: + - http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c +--- + Development of this software was funded, in part, by Cray Research Inc., UUNET Communications Services Inc., Sun Microsystems Inc., and Scriptics Corporation, none of whom are responsible for the results. The author @@ -20,4 +32,4 @@ 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. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/henry-spencer-1999.html b/docs/henry-spencer-1999.html index cda8161519..c6e31582ff 100644 --- a/docs/henry-spencer-1999.html +++ b/docs/henry-spencer-1999.html @@ -146,8 +146,7 @@ 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. - +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -159,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/henry-spencer-1999.json b/docs/henry-spencer-1999.json index ccb13f4761..668a812c07 100644 --- a/docs/henry-spencer-1999.json +++ b/docs/henry-spencer-1999.json @@ -1 +1,12 @@ -{"key": "henry-spencer-1999", "short_name": "Henry Spencer License 1999", "name": "Henry Spencer License 1999", "category": "Permissive", "owner": "Henry Spencer", "homepage_url": "http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c", "spdx_license_key": "Spencer-99", "text_urls": ["http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c"]} \ No newline at end of file +{ + "key": "henry-spencer-1999", + "short_name": "Henry Spencer License 1999", + "name": "Henry Spencer License 1999", + "category": "Permissive", + "owner": "Henry Spencer", + "homepage_url": "http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c", + "spdx_license_key": "Spencer-99", + "text_urls": [ + "http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c" + ] +} \ No newline at end of file diff --git a/docs/here-disclaimer.LICENSE b/docs/here-disclaimer.LICENSE index 347f527221..013c3e4a3f 100644 --- a/docs/here-disclaimer.LICENSE +++ b/docs/here-disclaimer.LICENSE @@ -1,3 +1,12 @@ +--- +key: here-disclaimer +short_name: HERE Disclaimer +name: HERE Disclaimer +category: Unstated License +owner: HERE Global B.V. +spdx_license_key: LicenseRef-scancode-here-disclaimer +--- + This content is provided "as-is" and without warranties of any kind, either express or implied, including, but not limited to, the implied warranties of merchantability, fitness for a particular purpose, satisfactory quality and non- @@ -10,4 +19,4 @@ negligence of HERE, shall HERE be liable for any damages, including, without limitation, direct, special, indirect, punitive, consequential, exemplary and/ or incidental damages that result from the use or application of this content, even if HERE or an authorized representative has been advised of the possibility -of such damages. +of such damages. \ No newline at end of file diff --git a/docs/here-disclaimer.html b/docs/here-disclaimer.html index f481b87fa2..dc25c2a488 100644 --- a/docs/here-disclaimer.html +++ b/docs/here-disclaimer.html @@ -120,8 +120,7 @@ limitation, direct, special, indirect, punitive, consequential, exemplary and/ or incidental damages that result from the use or application of this content, even if HERE or an authorized representative has been advised of the possibility -of such damages. - +of such damages.
@@ -133,7 +132,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/here-disclaimer.json b/docs/here-disclaimer.json index 05e0698cc1..48478f0e02 100644 --- a/docs/here-disclaimer.json +++ b/docs/here-disclaimer.json @@ -1 +1,8 @@ -{"key": "here-disclaimer", "short_name": "HERE Disclaimer", "name": "HERE Disclaimer", "category": "Unstated License", "owner": "HERE Global B.V.", "spdx_license_key": "LicenseRef-scancode-here-disclaimer"} \ No newline at end of file +{ + "key": "here-disclaimer", + "short_name": "HERE Disclaimer", + "name": "HERE Disclaimer", + "category": "Unstated License", + "owner": "HERE Global B.V.", + "spdx_license_key": "LicenseRef-scancode-here-disclaimer" +} \ No newline at end of file diff --git a/docs/here-proprietary.LICENSE b/docs/here-proprietary.LICENSE index db67ea0510..4b37348ec2 100644 --- a/docs/here-proprietary.LICENSE +++ b/docs/here-proprietary.LICENSE @@ -1,7 +1,18 @@ +--- +key: here-proprietary +short_name: HERE Proprietary +name: HERE Proprietary License +category: Commercial +owner: HERE Global B.V. +spdx_license_key: LicenseRef-scancode-here-proprietary +other_spdx_license_keys: + - LicenseRef-Proprietary-HERE +--- + This software and other materials contain proprietary information controlled by HERE and are protected by applicable copyright legislation. Any use and utilization of this software and other materials and disclosure to any third parties is conditional upon having a separate agreement with HERE for the access, use, utilization or disclosure of this software. In the absence of such agreement, the use of the software is not -allowed. +allowed. \ No newline at end of file diff --git a/docs/here-proprietary.html b/docs/here-proprietary.html index 6f4b50d58f..9bf46b2d41 100644 --- a/docs/here-proprietary.html +++ b/docs/here-proprietary.html @@ -123,8 +123,7 @@ disclosure to any third parties is conditional upon having a separate agreement with HERE for the access, use, utilization or disclosure of this software. In the absence of such agreement, the use of the software is not -allowed. - +allowed.
@@ -136,7 +135,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/here-proprietary.json b/docs/here-proprietary.json index 23ae6f5e7c..c3c14722e5 100644 --- a/docs/here-proprietary.json +++ b/docs/here-proprietary.json @@ -1 +1,11 @@ -{"key": "here-proprietary", "short_name": "HERE Proprietary", "name": "HERE Proprietary License", "category": "Commercial", "owner": "HERE Global B.V.", "spdx_license_key": "LicenseRef-scancode-here-proprietary", "other_spdx_license_keys": ["LicenseRef-Proprietary-HERE"]} \ No newline at end of file +{ + "key": "here-proprietary", + "short_name": "HERE Proprietary", + "name": "HERE Proprietary License", + "category": "Commercial", + "owner": "HERE Global B.V.", + "spdx_license_key": "LicenseRef-scancode-here-proprietary", + "other_spdx_license_keys": [ + "LicenseRef-Proprietary-HERE" + ] +} \ No newline at end of file diff --git a/docs/hessla.LICENSE b/docs/hessla.LICENSE index ad52da3126..1b02616c98 100644 --- a/docs/hessla.LICENSE +++ b/docs/hessla.LICENSE @@ -1,3 +1,15 @@ +--- +key: hessla +short_name: HESSLA +name: Hacktivismo Enhanced-Source Software License Agreement +category: Proprietary Free +owner: Hacktivismo +homepage_url: http://www.hacktivismo.com/about/hessla.php +spdx_license_key: LicenseRef-scancode-hessla +text_urls: + - https://directory.fsf.org/wiki/License:HESSLA +--- + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION, USE AND/OR MODIFICATION 0. DEFINITIONS. The following are defined terms that, whenever used in @@ -930,4 +942,4 @@ invalid or unenforceable under any particular circumstance, the balance of the License Agreement is intended to apply and the License Agreement as a whole is intended to apply in other circumstances. -END OF TERMS AND CONDITIONS +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/docs/hessla.html b/docs/hessla.html index eb612260cd..aa68083c50 100644 --- a/docs/hessla.html +++ b/docs/hessla.html @@ -1056,8 +1056,7 @@ balance of the License Agreement is intended to apply and the License Agreement as a whole is intended to apply in other circumstances. -END OF TERMS AND CONDITIONS - +END OF TERMS AND CONDITIONS
@@ -1069,7 +1068,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hessla.json b/docs/hessla.json index d4bc09af31..ab28663497 100644 --- a/docs/hessla.json +++ b/docs/hessla.json @@ -1 +1,12 @@ -{"key": "hessla", "short_name": "HESSLA", "name": "Hacktivismo Enhanced-Source Software License Agreement", "category": "Proprietary Free", "owner": "Hacktivismo", "homepage_url": "http://www.hacktivismo.com/about/hessla.php", "spdx_license_key": "LicenseRef-scancode-hessla", "text_urls": ["https://directory.fsf.org/wiki/License:HESSLA"]} \ No newline at end of file +{ + "key": "hessla", + "short_name": "HESSLA", + "name": "Hacktivismo Enhanced-Source Software License Agreement", + "category": "Proprietary Free", + "owner": "Hacktivismo", + "homepage_url": "http://www.hacktivismo.com/about/hessla.php", + "spdx_license_key": "LicenseRef-scancode-hessla", + "text_urls": [ + "https://directory.fsf.org/wiki/License:HESSLA" + ] +} \ No newline at end of file diff --git a/docs/hidapi.LICENSE b/docs/hidapi.LICENSE index d88fdff169..0026b536a4 100644 --- a/docs/hidapi.LICENSE +++ b/docs/hidapi.LICENSE @@ -1,2 +1,12 @@ +--- +key: hidapi +short_name: HIDAPI License +name: HIDAPI License +category: Permissive +owner: Signal 11 Software +homepage_url: https://github.com/signal11/hidapi/blob/master/LICENSE-orig.txt +spdx_license_key: LicenseRef-scancode-hidapi +--- + This software may be used by anyone for any reason so long as the copyright notice in the source files remains intact. \ No newline at end of file diff --git a/docs/hidapi.html b/docs/hidapi.html index 5200b9d308..0382e8e644 100644 --- a/docs/hidapi.html +++ b/docs/hidapi.html @@ -128,7 +128,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hidapi.json b/docs/hidapi.json index 30fda03f88..212371f4cd 100644 --- a/docs/hidapi.json +++ b/docs/hidapi.json @@ -1 +1,9 @@ -{"key": "hidapi", "short_name": "HIDAPI License", "name": "HIDAPI License", "category": "Permissive", "owner": "Signal 11 Software", "homepage_url": "https://github.com/signal11/hidapi/blob/master/LICENSE-orig.txt", "spdx_license_key": "LicenseRef-scancode-hidapi"} \ No newline at end of file +{ + "key": "hidapi", + "short_name": "HIDAPI License", + "name": "HIDAPI License", + "category": "Permissive", + "owner": "Signal 11 Software", + "homepage_url": "https://github.com/signal11/hidapi/blob/master/LICENSE-orig.txt", + "spdx_license_key": "LicenseRef-scancode-hidapi" +} \ No newline at end of file diff --git a/docs/hippocratic-1.0.LICENSE b/docs/hippocratic-1.0.LICENSE index 1d2dfcbeea..9267cde607 100644 --- a/docs/hippocratic-1.0.LICENSE +++ b/docs/hippocratic-1.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: hippocratic-1.0 +short_name: Hippocratic License 1.0 +name: Hippocratic License v1.0 +category: Free Restricted +owner: Ethical Source +homepage_url: https://firstdonoharm.dev/ +spdx_license_key: LicenseRef-scancode-hippocratic-1.0 +--- + 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: @@ -8,4 +18,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -This license is derived from the MIT License, as amended to limit the impact of the unethical use of open source software. +This license is derived from the MIT License, as amended to limit the impact of the unethical use of open source software. \ No newline at end of file diff --git a/docs/hippocratic-1.0.html b/docs/hippocratic-1.0.html index 7309403f30..e522dada1b 100644 --- a/docs/hippocratic-1.0.html +++ b/docs/hippocratic-1.0.html @@ -125,8 +125,7 @@ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -This license is derived from the MIT License, as amended to limit the impact of the unethical use of open source software. - +This license is derived from the MIT License, as amended to limit the impact of the unethical use of open source software.
@@ -138,7 +137,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hippocratic-1.0.json b/docs/hippocratic-1.0.json index 606cd77abe..290bf19483 100644 --- a/docs/hippocratic-1.0.json +++ b/docs/hippocratic-1.0.json @@ -1 +1,9 @@ -{"key": "hippocratic-1.0", "short_name": "Hippocratic License 1.0", "name": "Hippocratic License v1.0", "category": "Free Restricted", "owner": "Ethical Source", "homepage_url": "https://firstdonoharm.dev/", "spdx_license_key": "LicenseRef-scancode-hippocratic-1.0"} \ No newline at end of file +{ + "key": "hippocratic-1.0", + "short_name": "Hippocratic License 1.0", + "name": "Hippocratic License v1.0", + "category": "Free Restricted", + "owner": "Ethical Source", + "homepage_url": "https://firstdonoharm.dev/", + "spdx_license_key": "LicenseRef-scancode-hippocratic-1.0" +} \ No newline at end of file diff --git a/docs/hippocratic-1.1.LICENSE b/docs/hippocratic-1.1.LICENSE index ab0558de90..cec1d1acfb 100644 --- a/docs/hippocratic-1.1.LICENSE +++ b/docs/hippocratic-1.1.LICENSE @@ -1,3 +1,13 @@ +--- +key: hippocratic-1.1 +short_name: Hippocratic License 1.1 +name: Hippocratic License v1.1 +category: Free Restricted +owner: Ethical Source +homepage_url: https://firstdonoharm.dev/ +spdx_license_key: LicenseRef-scancode-hippocratic-1.1 +--- + 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. @@ -6,4 +16,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -This license is derived from the MIT License, as amended to limit the impact of the unethical use of open source software. +This license is derived from the MIT License, as amended to limit the impact of the unethical use of open source software. \ No newline at end of file diff --git a/docs/hippocratic-1.1.html b/docs/hippocratic-1.1.html index 91e37da392..539f89665d 100644 --- a/docs/hippocratic-1.1.html +++ b/docs/hippocratic-1.1.html @@ -123,8 +123,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -This license is derived from the MIT License, as amended to limit the impact of the unethical use of open source software. - +This license is derived from the MIT License, as amended to limit the impact of the unethical use of open source software.
@@ -136,7 +135,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hippocratic-1.1.json b/docs/hippocratic-1.1.json index c0a6395597..1d26b24e69 100644 --- a/docs/hippocratic-1.1.json +++ b/docs/hippocratic-1.1.json @@ -1 +1,9 @@ -{"key": "hippocratic-1.1", "short_name": "Hippocratic License 1.1", "name": "Hippocratic License v1.1", "category": "Free Restricted", "owner": "Ethical Source", "homepage_url": "https://firstdonoharm.dev/", "spdx_license_key": "LicenseRef-scancode-hippocratic-1.1"} \ No newline at end of file +{ + "key": "hippocratic-1.1", + "short_name": "Hippocratic License 1.1", + "name": "Hippocratic License v1.1", + "category": "Free Restricted", + "owner": "Ethical Source", + "homepage_url": "https://firstdonoharm.dev/", + "spdx_license_key": "LicenseRef-scancode-hippocratic-1.1" +} \ No newline at end of file diff --git a/docs/hippocratic-1.2.LICENSE b/docs/hippocratic-1.2.LICENSE index 65a8ae22b4..65c0404e34 100644 --- a/docs/hippocratic-1.2.LICENSE +++ b/docs/hippocratic-1.2.LICENSE @@ -1,3 +1,20 @@ +--- +key: hippocratic-1.2 +short_name: Hippocratic License v1.2 +name: Hippocratic License v1.2 +category: Free Restricted +owner: Ethical Source +homepage_url: https://firstdonoharm.dev/ +spdx_license_key: LicenseRef-scancode-hippocratic-1.2 +text_urls: + - https://firstdonoharm.dev/version/1/2/license.html + - https://firstdonoharm.dev/version/1/2/license.txt +faq_url: https://www.un.org/en/universal-declaration-human-rights/ +ignorable_urls: + - https://ethicalsource.dev/ + - https://www.un.org/en/universal-declaration-human-rights +--- + 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: @@ -12,5 +29,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -This Hippocratic License is an Ethical Source license (https://ethicalsource.dev) derived from the MIT License, amended to limit the impact of the unethical use of open source software. - +This Hippocratic License is an Ethical Source license (https://ethicalsource.dev) derived from the MIT License, amended to limit the impact of the unethical use of open source software. \ No newline at end of file diff --git a/docs/hippocratic-1.2.html b/docs/hippocratic-1.2.html index 46ec6fa86f..bedf09468f 100644 --- a/docs/hippocratic-1.2.html +++ b/docs/hippocratic-1.2.html @@ -154,9 +154,7 @@ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -This Hippocratic License is an Ethical Source license (https://ethicalsource.dev) derived from the MIT License, amended to limit the impact of the unethical use of open source software. - - +This Hippocratic License is an Ethical Source license (https://ethicalsource.dev) derived from the MIT License, amended to limit the impact of the unethical use of open source software.
@@ -168,7 +166,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hippocratic-1.2.json b/docs/hippocratic-1.2.json index f0de488315..75afad041f 100644 --- a/docs/hippocratic-1.2.json +++ b/docs/hippocratic-1.2.json @@ -1 +1,18 @@ -{"key": "hippocratic-1.2", "short_name": "Hippocratic License v1.2", "name": "Hippocratic License v1.2", "category": "Free Restricted", "owner": "Ethical Source", "homepage_url": "https://firstdonoharm.dev/", "spdx_license_key": "LicenseRef-scancode-hippocratic-1.2", "text_urls": ["https://firstdonoharm.dev/version/1/2/license.html", "https://firstdonoharm.dev/version/1/2/license.txt"], "faq_url": "https://www.un.org/en/universal-declaration-human-rights/", "ignorable_urls": ["https://ethicalsource.dev/", "https://www.un.org/en/universal-declaration-human-rights"]} \ No newline at end of file +{ + "key": "hippocratic-1.2", + "short_name": "Hippocratic License v1.2", + "name": "Hippocratic License v1.2", + "category": "Free Restricted", + "owner": "Ethical Source", + "homepage_url": "https://firstdonoharm.dev/", + "spdx_license_key": "LicenseRef-scancode-hippocratic-1.2", + "text_urls": [ + "https://firstdonoharm.dev/version/1/2/license.html", + "https://firstdonoharm.dev/version/1/2/license.txt" + ], + "faq_url": "https://www.un.org/en/universal-declaration-human-rights/", + "ignorable_urls": [ + "https://ethicalsource.dev/", + "https://www.un.org/en/universal-declaration-human-rights" + ] +} \ No newline at end of file diff --git a/docs/hippocratic-2.0.LICENSE b/docs/hippocratic-2.0.LICENSE index 0a034efb41..88dc48f90d 100644 --- a/docs/hippocratic-2.0.LICENSE +++ b/docs/hippocratic-2.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: hippocratic-2.0 +short_name: Hippocratic License 2.0 +name: Hippocratic License v2.0 +category: Free Restricted +owner: Ethical Source +homepage_url: https://firstdonoharm.dev/ +spdx_license_key: LicenseRef-scancode-hippocratic-2.0 +text_urls: + - https://firstdonoharm.dev/version/2/0/license.md + - https://firstdonoharm.dev/version/2/0/license.html +other_urls: + - https://www.un.org/en/universal-declaration-human-rights/ +ignorable_urls: + - https://ethicalsource.dev/ + - https://firstdonoharm.dev/ + - https://www.un.org/en/universal-declaration-human-rights + - https://www.unglobalcompact.org/what-is-gc/mission/principles +--- + Hippocratic License Version 2.0. Licensor hereby grants permission by this license ("License"), free of charge, to any person or entity (the "Licensee") 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: @@ -18,4 +38,4 @@ Licensor hereby grants permission by this license ("License"), free of charge, THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -This Hippocratic License is an Ethical Source license (https://ethicalsource.dev). +This Hippocratic License is an Ethical Source license (https://ethicalsource.dev). \ No newline at end of file diff --git a/docs/hippocratic-2.0.html b/docs/hippocratic-2.0.html index 631c9584ba..8aa2345d1b 100644 --- a/docs/hippocratic-2.0.html +++ b/docs/hippocratic-2.0.html @@ -162,8 +162,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -This Hippocratic License is an Ethical Source license (https://ethicalsource.dev). - +This Hippocratic License is an Ethical Source license (https://ethicalsource.dev).
@@ -175,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hippocratic-2.0.json b/docs/hippocratic-2.0.json index ddce84b2bb..fffc24fa83 100644 --- a/docs/hippocratic-2.0.json +++ b/docs/hippocratic-2.0.json @@ -1 +1,22 @@ -{"key": "hippocratic-2.0", "short_name": "Hippocratic License 2.0", "name": "Hippocratic License v2.0", "category": "Free Restricted", "owner": "Ethical Source", "homepage_url": "https://firstdonoharm.dev/", "spdx_license_key": "LicenseRef-scancode-hippocratic-2.0", "text_urls": ["https://firstdonoharm.dev/version/2/0/license.md", "https://firstdonoharm.dev/version/2/0/license.html"], "other_urls": ["https://www.un.org/en/universal-declaration-human-rights/"], "ignorable_urls": ["https://ethicalsource.dev/", "https://firstdonoharm.dev/", "https://www.un.org/en/universal-declaration-human-rights", "https://www.unglobalcompact.org/what-is-gc/mission/principles"]} \ No newline at end of file +{ + "key": "hippocratic-2.0", + "short_name": "Hippocratic License 2.0", + "name": "Hippocratic License v2.0", + "category": "Free Restricted", + "owner": "Ethical Source", + "homepage_url": "https://firstdonoharm.dev/", + "spdx_license_key": "LicenseRef-scancode-hippocratic-2.0", + "text_urls": [ + "https://firstdonoharm.dev/version/2/0/license.md", + "https://firstdonoharm.dev/version/2/0/license.html" + ], + "other_urls": [ + "https://www.un.org/en/universal-declaration-human-rights/" + ], + "ignorable_urls": [ + "https://ethicalsource.dev/", + "https://firstdonoharm.dev/", + "https://www.un.org/en/universal-declaration-human-rights", + "https://www.unglobalcompact.org/what-is-gc/mission/principles" + ] +} \ No newline at end of file diff --git a/docs/hippocratic-2.1.LICENSE b/docs/hippocratic-2.1.LICENSE index 5a8436e935..0865122407 100644 --- a/docs/hippocratic-2.1.LICENSE +++ b/docs/hippocratic-2.1.LICENSE @@ -1,3 +1,21 @@ +--- +key: hippocratic-2.1 +short_name: Hippocratic License v2.1 +name: Hippocratic License v2.1 +category: Free Restricted +owner: Ethical Source +homepage_url: https://firstdonoharm.dev/ +spdx_license_key: Hippocratic-2.1 +text_urls: + - https://firstdonoharm.dev/version/2/1/license.md + - https://firstdonoharm.dev/version/2/1/license.html +faq_url: https://www.un.org/en/universal-declaration-human-rights/ +other_urls: + - https://github.com/EthicalSource/hippocratic-license/blob/58c0e646d64ff6fbee275bfe2b9492f914e3ab2a/LICENSE.txt +ignorable_urls: + - https://ethicalsource.dev/ +--- + Hippocratic License Version Number: 2.1. Purpose. The purpose of this License is for the Licensor named above to permit the Licensee (as defined below) broad permission, if consistent with Human Rights Laws and Human Rights Principles (as each is defined below), to use and work with the Software (as defined below) within the full scope of Licensor’s copyright and patent rights, if any, in the Software, while ensuring attribution and protecting the Licensor from liability. @@ -28,4 +46,4 @@ Permission and Conditions. The Licensor grants permission by this license (“Li * Disclaimer. TO THE FULL EXTENT ALLOWED BY LAW, THIS SOFTWARE COMES “AS IS,” WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED, AND LICENSOR AND ANY OTHER CONTRIBUTOR SHALL NOT BE LIABLE TO ANYONE FOR ANY DAMAGES OR OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THIS LICENSE, UNDER ANY KIND OF LEGAL CLAIM. -This Hippocratic License is an Ethical Source license (https://ethicalsource.dev) and is offered for use by licensors and licensees at their own risk, on an “AS IS” basis, and with no warranties express or implied, to the maximum extent permitted by Laws. +This Hippocratic License is an Ethical Source license (https://ethicalsource.dev) and is offered for use by licensors and licensees at their own risk, on an “AS IS” basis, and with no warranties express or implied, to the maximum extent permitted by Laws. \ No newline at end of file diff --git a/docs/hippocratic-2.1.html b/docs/hippocratic-2.1.html index cce924000b..f9de19794e 100644 --- a/docs/hippocratic-2.1.html +++ b/docs/hippocratic-2.1.html @@ -179,8 +179,7 @@ * Disclaimer. TO THE FULL EXTENT ALLOWED BY LAW, THIS SOFTWARE COMES “AS IS,” WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED, AND LICENSOR AND ANY OTHER CONTRIBUTOR SHALL NOT BE LIABLE TO ANYONE FOR ANY DAMAGES OR OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THIS LICENSE, UNDER ANY KIND OF LEGAL CLAIM. -This Hippocratic License is an Ethical Source license (https://ethicalsource.dev) and is offered for use by licensors and licensees at their own risk, on an “AS IS” basis, and with no warranties express or implied, to the maximum extent permitted by Laws. - +This Hippocratic License is an Ethical Source license (https://ethicalsource.dev) and is offered for use by licensors and licensees at their own risk, on an “AS IS” basis, and with no warranties express or implied, to the maximum extent permitted by Laws.
@@ -192,7 +191,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hippocratic-2.1.json b/docs/hippocratic-2.1.json index 605cf3fd53..6bc8c0b475 100644 --- a/docs/hippocratic-2.1.json +++ b/docs/hippocratic-2.1.json @@ -1 +1,20 @@ -{"key": "hippocratic-2.1", "short_name": "Hippocratic License v2.1", "name": "Hippocratic License v2.1", "category": "Free Restricted", "owner": "Ethical Source", "homepage_url": "https://firstdonoharm.dev/", "spdx_license_key": "Hippocratic-2.1", "text_urls": ["https://firstdonoharm.dev/version/2/1/license.md", "https://firstdonoharm.dev/version/2/1/license.html"], "faq_url": "https://www.un.org/en/universal-declaration-human-rights/", "other_urls": ["https://github.com/EthicalSource/hippocratic-license/blob/58c0e646d64ff6fbee275bfe2b9492f914e3ab2a/LICENSE.txt"], "ignorable_urls": ["https://ethicalsource.dev/"]} \ No newline at end of file +{ + "key": "hippocratic-2.1", + "short_name": "Hippocratic License v2.1", + "name": "Hippocratic License v2.1", + "category": "Free Restricted", + "owner": "Ethical Source", + "homepage_url": "https://firstdonoharm.dev/", + "spdx_license_key": "Hippocratic-2.1", + "text_urls": [ + "https://firstdonoharm.dev/version/2/1/license.md", + "https://firstdonoharm.dev/version/2/1/license.html" + ], + "faq_url": "https://www.un.org/en/universal-declaration-human-rights/", + "other_urls": [ + "https://github.com/EthicalSource/hippocratic-license/blob/58c0e646d64ff6fbee275bfe2b9492f914e3ab2a/LICENSE.txt" + ], + "ignorable_urls": [ + "https://ethicalsource.dev/" + ] +} \ No newline at end of file diff --git a/docs/hippocratic-3.0.LICENSE b/docs/hippocratic-3.0.LICENSE index 084285c6d1..ac1873f826 100644 --- a/docs/hippocratic-3.0.LICENSE +++ b/docs/hippocratic-3.0.LICENSE @@ -1,3 +1,22 @@ +--- +key: hippocratic-3.0 +short_name: Hippocratic License v3.0 +name: Hippocratic License v3.0 +category: Free Restricted +owner: Ethical Source +homepage_url: https://firstdonoharm.dev/ +spdx_license_key: LicenseRef-scancode-Hippocratic-3.0 +text_urls: + - https://firstdonoharm.dev/version/3/0/license/license.txt + - https://firstdonoharm.dev/version/3/0/license/license.md + - https://firstdonoharm.dev/version/3/0/license/ +faq_url: https://www.un.org/en/universal-declaration-human-rights/ +ignorable_urls: + - https://bdsmovement.net/ + - https://bdsmovement.net/get-involved/what-to-boycott + - https://wsr-network.org/what-is-wsr/statement-of-principles +--- + HIPPOCRATIC LICENSE Version 3.0, October 2021 @@ -229,5 +248,4 @@ This section explains when a Licensee must notify others of the License. 8.8. Entire License: This is the entire License between the Licensor and Licensee with respect to the claims released herein and that the consideration stated herein is the only consideration or compensation to be paid or exchanged between them for this License. This License cannot be modified or amended except in a writing signed by Licensor and Licensee. -8.9. Successors and Assigns: This License shall be binding upon and inure to the benefit of the Licensor’s and Licensee’s respective heirs, successors, and assigns. - +8.9. Successors and Assigns: This License shall be binding upon and inure to the benefit of the Licensor’s and Licensee’s respective heirs, successors, and assigns. \ No newline at end of file diff --git a/docs/hippocratic-3.0.html b/docs/hippocratic-3.0.html index f9bf8993fb..cb6a879e52 100644 --- a/docs/hippocratic-3.0.html +++ b/docs/hippocratic-3.0.html @@ -371,9 +371,7 @@ 8.8. Entire License: This is the entire License between the Licensor and Licensee with respect to the claims released herein and that the consideration stated herein is the only consideration or compensation to be paid or exchanged between them for this License. This License cannot be modified or amended except in a writing signed by Licensor and Licensee. -8.9. Successors and Assigns: This License shall be binding upon and inure to the benefit of the Licensor’s and Licensee’s respective heirs, successors, and assigns. - - +8.9. Successors and Assigns: This License shall be binding upon and inure to the benefit of the Licensor’s and Licensee’s respective heirs, successors, and assigns.
@@ -385,7 +383,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hippocratic-3.0.json b/docs/hippocratic-3.0.json index 70be0465bc..2f36318df9 100644 --- a/docs/hippocratic-3.0.json +++ b/docs/hippocratic-3.0.json @@ -1 +1,20 @@ -{"key": "hippocratic-3.0", "short_name": "Hippocratic License v3.0", "name": "Hippocratic License v3.0", "category": "Free Restricted", "owner": "Ethical Source", "homepage_url": "https://firstdonoharm.dev/", "spdx_license_key": "LicenseRef-scancode-Hippocratic-3.0", "text_urls": ["https://firstdonoharm.dev/version/3/0/license/license.txt", "https://firstdonoharm.dev/version/3/0/license/license.md", "https://firstdonoharm.dev/version/3/0/license/"], "faq_url": "https://www.un.org/en/universal-declaration-human-rights/", "ignorable_urls": ["https://bdsmovement.net/", "https://bdsmovement.net/get-involved/what-to-boycott", "https://wsr-network.org/what-is-wsr/statement-of-principles"]} \ No newline at end of file +{ + "key": "hippocratic-3.0", + "short_name": "Hippocratic License v3.0", + "name": "Hippocratic License v3.0", + "category": "Free Restricted", + "owner": "Ethical Source", + "homepage_url": "https://firstdonoharm.dev/", + "spdx_license_key": "LicenseRef-scancode-Hippocratic-3.0", + "text_urls": [ + "https://firstdonoharm.dev/version/3/0/license/license.txt", + "https://firstdonoharm.dev/version/3/0/license/license.md", + "https://firstdonoharm.dev/version/3/0/license/" + ], + "faq_url": "https://www.un.org/en/universal-declaration-human-rights/", + "ignorable_urls": [ + "https://bdsmovement.net/", + "https://bdsmovement.net/get-involved/what-to-boycott", + "https://wsr-network.org/what-is-wsr/statement-of-principles" + ] +} \ No newline at end of file diff --git a/docs/historical-ntp.LICENSE b/docs/historical-ntp.LICENSE index b52ba8034b..6f6df01f22 100644 --- a/docs/historical-ntp.LICENSE +++ b/docs/historical-ntp.LICENSE @@ -1,3 +1,15 @@ +--- +key: historical-ntp +short_name: Historical Notice - NTP +name: Historical Notice - NTP +category: Permissive +owner: Unspecified +notes: | + a rare permission notice found in a few pre-1990 files by HP found in NTP + adjtimed/adjtimed.c include/adjtime.h and libntp/adjtime.c +spdx_license_key: LicenseRef-scancode-historical-ntp +--- + Permission is hereby granted for unlimited modification, use, and distribution. This software is made available with no warranty of any kind, express or implied. This copyright notice must remain intact in diff --git a/docs/historical-ntp.html b/docs/historical-ntp.html index 676e64fb08..bf31c83995 100644 --- a/docs/historical-ntp.html +++ b/docs/historical-ntp.html @@ -136,7 +136,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/historical-ntp.json b/docs/historical-ntp.json index da8ad462ce..c25b046767 100644 --- a/docs/historical-ntp.json +++ b/docs/historical-ntp.json @@ -1 +1,9 @@ -{"key": "historical-ntp", "short_name": "Historical Notice - NTP", "name": "Historical Notice - NTP", "category": "Permissive", "owner": "Unspecified", "notes": "a rare permission notice found in a few pre-1990 files by HP found in NTP\nadjtimed/adjtimed.c include/adjtime.h and libntp/adjtime.c\n", "spdx_license_key": "LicenseRef-scancode-historical-ntp"} \ No newline at end of file +{ + "key": "historical-ntp", + "short_name": "Historical Notice - NTP", + "name": "Historical Notice - NTP", + "category": "Permissive", + "owner": "Unspecified", + "notes": "a rare permission notice found in a few pre-1990 files by HP found in NTP\nadjtimed/adjtimed.c include/adjtime.h and libntp/adjtime.c\n", + "spdx_license_key": "LicenseRef-scancode-historical-ntp" +} \ No newline at end of file diff --git a/docs/historical-sell-variant.LICENSE b/docs/historical-sell-variant.LICENSE index 1ed3a2fbfe..084ccb8982 100644 --- a/docs/historical-sell-variant.LICENSE +++ b/docs/historical-sell-variant.LICENSE @@ -1,3 +1,16 @@ +--- +key: historical-sell-variant +is_deprecated: yes +short_name: Historical Permission Notice and Disclaimer - sell variant +name: Historical Permission Notice and Disclaimer - sell variant +category: Permissive +owner: Unspecified +notes: this is actually the same as the x11-keith-packard +other_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h=v4.19 +minimum_coverage: 40 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appears in all copies, and that both that the copyright diff --git a/docs/historical-sell-variant.html b/docs/historical-sell-variant.html index b2a9152d53..50e70c2b1f 100644 --- a/docs/historical-sell-variant.html +++ b/docs/historical-sell-variant.html @@ -159,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/historical-sell-variant.json b/docs/historical-sell-variant.json index d93ee7cfa4..0c0c389e06 100644 --- a/docs/historical-sell-variant.json +++ b/docs/historical-sell-variant.json @@ -1 +1,13 @@ -{"key": "historical-sell-variant", "is_deprecated": true, "short_name": "Historical Permission Notice and Disclaimer - sell variant", "name": "Historical Permission Notice and Disclaimer - sell variant", "category": "Permissive", "owner": "Unspecified", "notes": "this is actually the same as the x11-keith-packard", "other_urls": ["https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h=v4.19"], "minimum_coverage": 40} \ No newline at end of file +{ + "key": "historical-sell-variant", + "is_deprecated": true, + "short_name": "Historical Permission Notice and Disclaimer - sell variant", + "name": "Historical Permission Notice and Disclaimer - sell variant", + "category": "Permissive", + "owner": "Unspecified", + "notes": "this is actually the same as the x11-keith-packard", + "other_urls": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h=v4.19" + ], + "minimum_coverage": 40 +} \ No newline at end of file diff --git a/docs/historical.LICENSE b/docs/historical.LICENSE index 8d17be468d..4934385c31 100644 --- a/docs/historical.LICENSE +++ b/docs/historical.LICENSE @@ -1,3 +1,22 @@ +--- +key: historical +short_name: Historical Permission Notice and Disclaimer +name: Historical Permission Notice and Disclaimer +category: Permissive +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/historical.php +notes: | + Per SPDX.org, this license is OSI certified. This license has been + voluntarily deprecated by its author. +spdx_license_key: HPND +text_urls: + - http://www.opensource.org/licenses/historical.php +osi_url: http://www.opensource.org/licenses/historical.php +other_urls: + - http://www.opensource.org/licenses/HPND + - https://opensource.org/licenses/HPND +--- + 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 diff --git a/docs/historical.html b/docs/historical.html index 3e75b30d05..1c3aa4682b 100644 --- a/docs/historical.html +++ b/docs/historical.html @@ -178,7 +178,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/historical.json b/docs/historical.json index 2a443f1ed7..d20cdba327 100644 --- a/docs/historical.json +++ b/docs/historical.json @@ -1 +1,18 @@ -{"key": "historical", "short_name": "Historical Permission Notice and Disclaimer", "name": "Historical Permission Notice and Disclaimer", "category": "Permissive", "owner": "OSI - Open Source Initiative", "homepage_url": "http://www.opensource.org/licenses/historical.php", "notes": "Per SPDX.org, this license is OSI certified. This license has been\nvoluntarily deprecated by its author.\n", "spdx_license_key": "HPND", "text_urls": ["http://www.opensource.org/licenses/historical.php"], "osi_url": "http://www.opensource.org/licenses/historical.php", "other_urls": ["http://www.opensource.org/licenses/HPND", "https://opensource.org/licenses/HPND"]} \ No newline at end of file +{ + "key": "historical", + "short_name": "Historical Permission Notice and Disclaimer", + "name": "Historical Permission Notice and Disclaimer", + "category": "Permissive", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://www.opensource.org/licenses/historical.php", + "notes": "Per SPDX.org, this license is OSI certified. This license has been\nvoluntarily deprecated by its author.\n", + "spdx_license_key": "HPND", + "text_urls": [ + "http://www.opensource.org/licenses/historical.php" + ], + "osi_url": "http://www.opensource.org/licenses/historical.php", + "other_urls": [ + "http://www.opensource.org/licenses/HPND", + "https://opensource.org/licenses/HPND" + ] +} \ No newline at end of file diff --git a/docs/homebrewed.LICENSE b/docs/homebrewed.LICENSE index 0bec4634b0..b6f4576771 100644 --- a/docs/homebrewed.LICENSE +++ b/docs/homebrewed.LICENSE @@ -1,3 +1,15 @@ +--- +key: homebrewed +short_name: Homebrewed License +name: Homebrewed or Craft Beer License +category: Permissive +owner: Alexis Métaireau +homepage_url: https://github.com/spiral-project/ihatemoney/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-homebrewed +text_urls: + - https://github.com/laukiet78/Ihatemoney/blob/b89bd1e690847646a71920f1b7152675dd164a87/LICENSE +--- + Redistribution and use in source and binary forms of the software as well as documentation, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/homebrewed.html b/docs/homebrewed.html index ebb8e091ea..90e9647e43 100644 --- a/docs/homebrewed.html +++ b/docs/homebrewed.html @@ -167,7 +167,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/homebrewed.json b/docs/homebrewed.json index 600044ca4c..b6e98dd7f3 100644 --- a/docs/homebrewed.json +++ b/docs/homebrewed.json @@ -1 +1,12 @@ -{"key": "homebrewed", "short_name": "Homebrewed License", "name": "Homebrewed or Craft Beer License", "category": "Permissive", "owner": "Alexis M\u00e9taireau", "homepage_url": "https://github.com/spiral-project/ihatemoney/blob/master/LICENSE", "spdx_license_key": "LicenseRef-scancode-homebrewed", "text_urls": ["https://github.com/laukiet78/Ihatemoney/blob/b89bd1e690847646a71920f1b7152675dd164a87/LICENSE"]} \ No newline at end of file +{ + "key": "homebrewed", + "short_name": "Homebrewed License", + "name": "Homebrewed or Craft Beer License", + "category": "Permissive", + "owner": "Alexis M\u00e9taireau", + "homepage_url": "https://github.com/spiral-project/ihatemoney/blob/master/LICENSE", + "spdx_license_key": "LicenseRef-scancode-homebrewed", + "text_urls": [ + "https://github.com/laukiet78/Ihatemoney/blob/b89bd1e690847646a71920f1b7152675dd164a87/LICENSE" + ] +} \ No newline at end of file diff --git a/docs/hot-potato.LICENSE b/docs/hot-potato.LICENSE index 5c8b911018..a14d685b3f 100644 --- a/docs/hot-potato.LICENSE +++ b/docs/hot-potato.LICENSE @@ -1,4 +1,14 @@ +--- +key: hot-potato +short_name: Hot Potato License +name: Hot Potato +category: Permissive +owner: Unspecified +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-hot-potato +--- + All rights reserved by the last person to commit a change to this repository, except for the right to commit changes to this repository, which is hereby granted to all of earth's citizens for the purpose of -committing changes to this repository. +committing changes to this repository. \ No newline at end of file diff --git a/docs/hot-potato.html b/docs/hot-potato.html index 0aa7f80e37..a74133968f 100644 --- a/docs/hot-potato.html +++ b/docs/hot-potato.html @@ -118,8 +118,7 @@
All rights reserved by the last person to commit a change to this
 repository, except for the right to commit changes to this repository,
 which is hereby granted to all of earth's citizens for the purpose of
-committing changes to this repository.
-
+committing changes to this repository.
@@ -131,7 +130,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hot-potato.json b/docs/hot-potato.json index 6842efd33d..1d491bad17 100644 --- a/docs/hot-potato.json +++ b/docs/hot-potato.json @@ -1 +1,9 @@ -{"key": "hot-potato", "short_name": "Hot Potato License", "name": "Hot Potato", "category": "Permissive", "owner": "Unspecified", "notes": "From https://github.com/ErikMcClure/bad-licenses", "spdx_license_key": "LicenseRef-scancode-hot-potato"} \ No newline at end of file +{ + "key": "hot-potato", + "short_name": "Hot Potato License", + "name": "Hot Potato", + "category": "Permissive", + "owner": "Unspecified", + "notes": "From https://github.com/ErikMcClure/bad-licenses", + "spdx_license_key": "LicenseRef-scancode-hot-potato" +} \ No newline at end of file diff --git a/docs/hp-enterprise-eula.LICENSE b/docs/hp-enterprise-eula.LICENSE index e5c27f82c7..de9f2cb091 100644 --- a/docs/hp-enterprise-eula.LICENSE +++ b/docs/hp-enterprise-eula.LICENSE @@ -1,3 +1,21 @@ +--- +key: hp-enterprise-eula +short_name: HP Enterprise EULA +name: HP Enterprise EULA +category: Proprietary Free +owner: HP - Hewlett Packard +homepage_url: http://h20564.www2.hpe.com/hpsc/swd/public/license?sp4ts.oid=&eulaType=passive +spdx_license_key: LicenseRef-scancode-hp-enterprise-eula +other_urls: + - http://h20564.www2.hpe.com/hpsc/swd/public/detail?swItemId=MTX_973decf09d114d81b4c97603df +ignorable_copyrights: + - Copyright 2015 Hewlett Packard Enterprise Development LP +ignorable_holders: + - Hewlett Packard Enterprise Development LP +ignorable_urls: + - http://www.hpe.com/software/SWLicensing +--- + Hewlett Packard Enterprise Support Center HPE End User License Agreement diff --git a/docs/hp-enterprise-eula.html b/docs/hp-enterprise-eula.html index eee682c839..ccfffec795 100644 --- a/docs/hp-enterprise-eula.html +++ b/docs/hp-enterprise-eula.html @@ -230,7 +230,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hp-enterprise-eula.json b/docs/hp-enterprise-eula.json index c4f8d3de63..28f5c55368 100644 --- a/docs/hp-enterprise-eula.json +++ b/docs/hp-enterprise-eula.json @@ -1 +1,21 @@ -{"key": "hp-enterprise-eula", "short_name": "HP Enterprise EULA", "name": "HP Enterprise EULA", "category": "Proprietary Free", "owner": "HP - Hewlett Packard", "homepage_url": "http://h20564.www2.hpe.com/hpsc/swd/public/license?sp4ts.oid=&eulaType=passive", "spdx_license_key": "LicenseRef-scancode-hp-enterprise-eula", "other_urls": ["http://h20564.www2.hpe.com/hpsc/swd/public/detail?swItemId=MTX_973decf09d114d81b4c97603df"], "ignorable_copyrights": ["Copyright 2015 Hewlett Packard Enterprise Development LP"], "ignorable_holders": ["Hewlett Packard Enterprise Development LP"], "ignorable_urls": ["http://www.hpe.com/software/SWLicensing"]} \ No newline at end of file +{ + "key": "hp-enterprise-eula", + "short_name": "HP Enterprise EULA", + "name": "HP Enterprise EULA", + "category": "Proprietary Free", + "owner": "HP - Hewlett Packard", + "homepage_url": "http://h20564.www2.hpe.com/hpsc/swd/public/license?sp4ts.oid=&eulaType=passive", + "spdx_license_key": "LicenseRef-scancode-hp-enterprise-eula", + "other_urls": [ + "http://h20564.www2.hpe.com/hpsc/swd/public/detail?swItemId=MTX_973decf09d114d81b4c97603df" + ], + "ignorable_copyrights": [ + "Copyright 2015 Hewlett Packard Enterprise Development LP" + ], + "ignorable_holders": [ + "Hewlett Packard Enterprise Development LP" + ], + "ignorable_urls": [ + "http://www.hpe.com/software/SWLicensing" + ] +} \ No newline at end of file diff --git a/docs/hp-netperf.LICENSE b/docs/hp-netperf.LICENSE index 2c528dea73..5aa64832f8 100644 --- a/docs/hp-netperf.LICENSE +++ b/docs/hp-netperf.LICENSE @@ -1,3 +1,19 @@ +--- +key: hp-netperf +short_name: HP Netperf License +name: HP Netperf License +category: Free Restricted +owner: HP - Hewlett Packard +homepage_url: http://www.netperf.org/netperf/training/Netperf.html +spdx_license_key: LicenseRef-scancode-hp-netperf +other_urls: + - http://www.netperf.org/netperf/training/Netperf.html +ignorable_copyrights: + - copyrighted works of Hewlett-Packard Co. +ignorable_holders: + - Hewlett-Packard Co. +--- + The enclosed software and documentation includes copyrighted works of Hewlett-Packard Co. For as long as you comply with the following limitations, you are hereby authorized to (i) use, reproduce, and modify the software and documentation, and to (ii) distribute the software and documentation, including modifications, for non-commercial purposes only. 1. The enclosed software and documentation is made available at no charge in order to advance the general development of high-performance networking products. diff --git a/docs/hp-netperf.html b/docs/hp-netperf.html index 2c960f6e77..92d0155f37 100644 --- a/docs/hp-netperf.html +++ b/docs/hp-netperf.html @@ -164,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hp-netperf.json b/docs/hp-netperf.json index 63c60f594d..6501541282 100644 --- a/docs/hp-netperf.json +++ b/docs/hp-netperf.json @@ -1 +1,18 @@ -{"key": "hp-netperf", "short_name": "HP Netperf License", "name": "HP Netperf License", "category": "Free Restricted", "owner": "HP - Hewlett Packard", "homepage_url": "http://www.netperf.org/netperf/training/Netperf.html", "spdx_license_key": "LicenseRef-scancode-hp-netperf", "other_urls": ["http://www.netperf.org/netperf/training/Netperf.html"], "ignorable_copyrights": ["copyrighted works of Hewlett-Packard Co."], "ignorable_holders": ["Hewlett-Packard Co."]} \ No newline at end of file +{ + "key": "hp-netperf", + "short_name": "HP Netperf License", + "name": "HP Netperf License", + "category": "Free Restricted", + "owner": "HP - Hewlett Packard", + "homepage_url": "http://www.netperf.org/netperf/training/Netperf.html", + "spdx_license_key": "LicenseRef-scancode-hp-netperf", + "other_urls": [ + "http://www.netperf.org/netperf/training/Netperf.html" + ], + "ignorable_copyrights": [ + "copyrighted works of Hewlett-Packard Co." + ], + "ignorable_holders": [ + "Hewlett-Packard Co." + ] +} \ No newline at end of file diff --git a/docs/hp-proliant-essentials.LICENSE b/docs/hp-proliant-essentials.LICENSE index 979fae107b..1f76be87ee 100644 --- a/docs/hp-proliant-essentials.LICENSE +++ b/docs/hp-proliant-essentials.LICENSE @@ -1,3 +1,20 @@ +--- +key: hp-proliant-essentials +short_name: hp-proliant-essentials +name: hp-proliant-essentials EULA +category: Commercial +owner: HP - Hewlett Packard +homepage_url: http://www.calculate-linux.org/packages/licenses/hp-proliant-essentials +spdx_license_key: LicenseRef-scancode-hp-proliant-essentials +ignorable_copyrights: + - copyrighted by Hewlett-Packard Development Company, L.P., HP's intellectual property management + company +ignorable_holders: + - Hewlett-Packard Development Company, L.P., HP's intellectual property management company +ignorable_urls: + - http://www.hp.com/ +--- + hp-proliant-essentials diff --git a/docs/hp-proliant-essentials.html b/docs/hp-proliant-essentials.html index 769dce193c..b26193c686 100644 --- a/docs/hp-proliant-essentials.html +++ b/docs/hp-proliant-essentials.html @@ -492,7 +492,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hp-proliant-essentials.json b/docs/hp-proliant-essentials.json index 668722bd0b..841cb98dec 100644 --- a/docs/hp-proliant-essentials.json +++ b/docs/hp-proliant-essentials.json @@ -1 +1,18 @@ -{"key": "hp-proliant-essentials", "short_name": "hp-proliant-essentials", "name": "hp-proliant-essentials EULA", "category": "Commercial", "owner": "HP - Hewlett Packard", "homepage_url": "http://www.calculate-linux.org/packages/licenses/hp-proliant-essentials", "spdx_license_key": "LicenseRef-scancode-hp-proliant-essentials", "ignorable_copyrights": ["copyrighted by Hewlett-Packard Development Company, L.P., HP's intellectual property management company"], "ignorable_holders": ["Hewlett-Packard Development Company, L.P., HP's intellectual property management company"], "ignorable_urls": ["http://www.hp.com/"]} \ No newline at end of file +{ + "key": "hp-proliant-essentials", + "short_name": "hp-proliant-essentials", + "name": "hp-proliant-essentials EULA", + "category": "Commercial", + "owner": "HP - Hewlett Packard", + "homepage_url": "http://www.calculate-linux.org/packages/licenses/hp-proliant-essentials", + "spdx_license_key": "LicenseRef-scancode-hp-proliant-essentials", + "ignorable_copyrights": [ + "copyrighted by Hewlett-Packard Development Company, L.P., HP's intellectual property management company" + ], + "ignorable_holders": [ + "Hewlett-Packard Development Company, L.P., HP's intellectual property management company" + ], + "ignorable_urls": [ + "http://www.hp.com/" + ] +} \ No newline at end of file diff --git a/docs/hp-snmp-pp.LICENSE b/docs/hp-snmp-pp.LICENSE index bcdb5d6b48..5c76d69d5e 100644 --- a/docs/hp-snmp-pp.LICENSE +++ b/docs/hp-snmp-pp.LICENSE @@ -1,3 +1,28 @@ +--- +key: hp-snmp-pp +short_name: SNMP++ License +name: SNMP++ License +category: Permissive +owner: HP - Hewlett Packard +homepage_url: https://www.agentpp.com/licenses/SNMP_PP_LICENSE.txt +spdx_license_key: LicenseRef-scancode-hp-snmp-pp +standard_notice: | + Copyright (c) 1999 + Hewlett-Packard Company + ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS. + Permission to use, copy, modify, distribute and/or sell this software + and/or its documentation is hereby granted without fee. User agrees + to display the above copyright notice and this license notice in all + copies of the software and any documentation of the software. User + agrees to assume all liability for the use of the software; Hewlett-Packard + makes no representations about the suitability of this software for any + purpose. It is provided "AS-IS" without warranty of any kind, either + express + or implied. User hereby grants a royalty-free license to any and all + derivatives based upon this software code base. + DESIGN + AUTHOR: Peter E. Mellquist +--- + ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS. Permission to use, copy, modify, distribute and/or sell this software and/or its documentation is hereby granted without fee. User agrees diff --git a/docs/hp-snmp-pp.html b/docs/hp-snmp-pp.html index 5370c7ec23..b61af6b98b 100644 --- a/docs/hp-snmp-pp.html +++ b/docs/hp-snmp-pp.html @@ -157,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hp-snmp-pp.json b/docs/hp-snmp-pp.json index faf377ee32..a3a2ad4b57 100644 --- a/docs/hp-snmp-pp.json +++ b/docs/hp-snmp-pp.json @@ -1 +1,10 @@ -{"key": "hp-snmp-pp", "short_name": "SNMP++ License", "name": "SNMP++ License", "category": "Permissive", "owner": "HP - Hewlett Packard", "homepage_url": "https://www.agentpp.com/licenses/SNMP_PP_LICENSE.txt", "spdx_license_key": "LicenseRef-scancode-hp-snmp-pp", "standard_notice": "Copyright (c) 1999\nHewlett-Packard Company\nATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.\nPermission to use, copy, modify, distribute and/or sell this software\nand/or its documentation is hereby granted without fee. User agrees\nto display the above copyright notice and this license notice in all\ncopies of the software and any documentation of the software. User\nagrees to assume all liability for the use of the software; Hewlett-Packard\nmakes no representations about the suitability of this software for any\npurpose. It is provided \"AS-IS\" without warranty of any kind, either\nexpress\nor implied. User hereby grants a royalty-free license to any and all\nderivatives based upon this software code base.\nDESIGN + AUTHOR: Peter E. Mellquist\n"} \ No newline at end of file +{ + "key": "hp-snmp-pp", + "short_name": "SNMP++ License", + "name": "SNMP++ License", + "category": "Permissive", + "owner": "HP - Hewlett Packard", + "homepage_url": "https://www.agentpp.com/licenses/SNMP_PP_LICENSE.txt", + "spdx_license_key": "LicenseRef-scancode-hp-snmp-pp", + "standard_notice": "Copyright (c) 1999\nHewlett-Packard Company\nATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.\nPermission to use, copy, modify, distribute and/or sell this software\nand/or its documentation is hereby granted without fee. User agrees\nto display the above copyright notice and this license notice in all\ncopies of the software and any documentation of the software. User\nagrees to assume all liability for the use of the software; Hewlett-Packard\nmakes no representations about the suitability of this software for any\npurpose. It is provided \"AS-IS\" without warranty of any kind, either\nexpress\nor implied. User hereby grants a royalty-free license to any and all\nderivatives based upon this software code base.\nDESIGN + AUTHOR: Peter E. Mellquist\n" +} \ No newline at end of file diff --git a/docs/hp-software-eula.LICENSE b/docs/hp-software-eula.LICENSE index 7bb3b1b148..448fe42257 100644 --- a/docs/hp-software-eula.LICENSE +++ b/docs/hp-software-eula.LICENSE @@ -1,3 +1,17 @@ +--- +key: hp-software-eula +short_name: HP Software EULA +name: HP Software EULA +category: Proprietary Free +owner: HP - Hewlett Packard +homepage_url: http://h20000.www2.hp.com/bizsupport/TechSupport/softwareLicense.jsp?lang=en&cc=us&prodSeriesId=3219717&prodTypeId=0 +spdx_license_key: LicenseRef-scancode-hp-software-eula +text_urls: + - http://h20000.www2.hp.com/bizsupport/TechSupport/softwareLicense.jsp?lang=en&cc=us&prodSeriesId=3219717&prodTypeId=0 +ignorable_urls: + - http://www.hp.com/ +--- + Hewlett-Packard software license agreement END USER LICENSE AGREEMENT diff --git a/docs/hp-software-eula.html b/docs/hp-software-eula.html index 1cf4bf9c9c..8c4a557958 100644 --- a/docs/hp-software-eula.html +++ b/docs/hp-software-eula.html @@ -229,7 +229,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hp-software-eula.json b/docs/hp-software-eula.json index 0458ad0fbd..e59b11fb0b 100644 --- a/docs/hp-software-eula.json +++ b/docs/hp-software-eula.json @@ -1 +1,15 @@ -{"key": "hp-software-eula", "short_name": "HP Software EULA", "name": "HP Software EULA", "category": "Proprietary Free", "owner": "HP - Hewlett Packard", "homepage_url": "http://h20000.www2.hp.com/bizsupport/TechSupport/softwareLicense.jsp?lang=en&cc=us&prodSeriesId=3219717&prodTypeId=0", "spdx_license_key": "LicenseRef-scancode-hp-software-eula", "text_urls": ["http://h20000.www2.hp.com/bizsupport/TechSupport/softwareLicense.jsp?lang=en&cc=us&prodSeriesId=3219717&prodTypeId=0"], "ignorable_urls": ["http://www.hp.com/"]} \ No newline at end of file +{ + "key": "hp-software-eula", + "short_name": "HP Software EULA", + "name": "HP Software EULA", + "category": "Proprietary Free", + "owner": "HP - Hewlett Packard", + "homepage_url": "http://h20000.www2.hp.com/bizsupport/TechSupport/softwareLicense.jsp?lang=en&cc=us&prodSeriesId=3219717&prodTypeId=0", + "spdx_license_key": "LicenseRef-scancode-hp-software-eula", + "text_urls": [ + "http://h20000.www2.hp.com/bizsupport/TechSupport/softwareLicense.jsp?lang=en&cc=us&prodSeriesId=3219717&prodTypeId=0" + ], + "ignorable_urls": [ + "http://www.hp.com/" + ] +} \ No newline at end of file diff --git a/docs/hp-ux-java.LICENSE b/docs/hp-ux-java.LICENSE index e6af0d7cfd..97ba5c304c 100644 --- a/docs/hp-ux-java.LICENSE +++ b/docs/hp-ux-java.LICENSE @@ -1,3 +1,19 @@ +--- +key: hp-ux-java +short_name: HP-UX 11i Java Technology Software +name: HP-UX 11i Java Technology Software +category: Proprietary Free +owner: HP - Hewlett Packard +homepage_url: http://www.hp.com/products1/unix/java/java2/sdkrte1_3/downloads/license_rte_1-3-1-17_pa-risc.html +spdx_license_key: LicenseRef-scancode-hp-ux-java +text_urls: + - http://www.hp.com/products1/unix/java/java2/sdkrte1_3/downloads/license_rte_1-3-1-17_pa-risc.html +ignorable_copyrights: + - copyrighted by HP +ignorable_holders: + - HP +--- + HP-UX Runtime Environment, for the Java(tm) 2 Platform ATTENTION: USE OF THE SOFTWARE IS SUBJECT TO THE HP SOFTWARE LICENSE TERMS diff --git a/docs/hp-ux-java.html b/docs/hp-ux-java.html index ef25123374..0be7b70805 100644 --- a/docs/hp-ux-java.html +++ b/docs/hp-ux-java.html @@ -352,7 +352,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hp-ux-java.json b/docs/hp-ux-java.json index a2a46aacbb..4c23243472 100644 --- a/docs/hp-ux-java.json +++ b/docs/hp-ux-java.json @@ -1 +1,18 @@ -{"key": "hp-ux-java", "short_name": "HP-UX 11i Java Technology Software", "name": "HP-UX 11i Java Technology Software", "category": "Proprietary Free", "owner": "HP - Hewlett Packard", "homepage_url": "http://www.hp.com/products1/unix/java/java2/sdkrte1_3/downloads/license_rte_1-3-1-17_pa-risc.html", "spdx_license_key": "LicenseRef-scancode-hp-ux-java", "text_urls": ["http://www.hp.com/products1/unix/java/java2/sdkrte1_3/downloads/license_rte_1-3-1-17_pa-risc.html"], "ignorable_copyrights": ["copyrighted by HP"], "ignorable_holders": ["HP"]} \ No newline at end of file +{ + "key": "hp-ux-java", + "short_name": "HP-UX 11i Java Technology Software", + "name": "HP-UX 11i Java Technology Software", + "category": "Proprietary Free", + "owner": "HP - Hewlett Packard", + "homepage_url": "http://www.hp.com/products1/unix/java/java2/sdkrte1_3/downloads/license_rte_1-3-1-17_pa-risc.html", + "spdx_license_key": "LicenseRef-scancode-hp-ux-java", + "text_urls": [ + "http://www.hp.com/products1/unix/java/java2/sdkrte1_3/downloads/license_rte_1-3-1-17_pa-risc.html" + ], + "ignorable_copyrights": [ + "copyrighted by HP" + ], + "ignorable_holders": [ + "HP" + ] +} \ No newline at end of file diff --git a/docs/hp-ux-jre.LICENSE b/docs/hp-ux-jre.LICENSE index 25a86656d6..b280241028 100644 --- a/docs/hp-ux-jre.LICENSE +++ b/docs/hp-ux-jre.LICENSE @@ -1,3 +1,16 @@ +--- +key: hp-ux-jre +short_name: HP JRE License +name: Hewlett Packard JRE License +category: Proprietary Free +owner: HP - Hewlett Packard +spdx_license_key: LicenseRef-scancode-hp-ux-jre +ignorable_copyrights: + - copyrighted by HP +ignorable_holders: + - HP +--- + LEGAL NOTICE - READ BEFORE DOWNLOADING OR OTHERWISE USING THIS SOFTWARE. ATTENTION: USE OF THE SOFTWARE IS SUBJECT TO THE HP SOFTWARE LICENSE TERMS, AND SUPPLEMENTAL RESTRICTIONS SET FORTH BELOW AND THE HP WARRANTY DISCLAIMER ATTACHED. CLICK ON THE "I ACCEPT" BOX BELOW TO INDICATE YOUR ACCEPTANCE OF THESE TERMS. IF YOU DO NOT ACCEPT THESE TERMS FULLY, YOU MAY NOT INSTALL OR OTHERWISE USE THE SOFTWARE. NOTWITHSTANDING ANYTHING TO THE CONTRARY IN THIS NOTICE, INSTALLING OR OTHERWISE USING THE SOFTWARE INDICATES YOUR ACCEPTANCE OF THESE LICENSE TERMS. diff --git a/docs/hp-ux-jre.html b/docs/hp-ux-jre.html index 6524ab37f1..e6279e96cd 100644 --- a/docs/hp-ux-jre.html +++ b/docs/hp-ux-jre.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hp-ux-jre.json b/docs/hp-ux-jre.json index 652cd6b935..cf452bccb3 100644 --- a/docs/hp-ux-jre.json +++ b/docs/hp-ux-jre.json @@ -1 +1,14 @@ -{"key": "hp-ux-jre", "short_name": "HP JRE License", "name": "Hewlett Packard JRE License", "category": "Proprietary Free", "owner": "HP - Hewlett Packard", "spdx_license_key": "LicenseRef-scancode-hp-ux-jre", "ignorable_copyrights": ["copyrighted by HP"], "ignorable_holders": ["HP"]} \ No newline at end of file +{ + "key": "hp-ux-jre", + "short_name": "HP JRE License", + "name": "Hewlett Packard JRE License", + "category": "Proprietary Free", + "owner": "HP - Hewlett Packard", + "spdx_license_key": "LicenseRef-scancode-hp-ux-jre", + "ignorable_copyrights": [ + "copyrighted by HP" + ], + "ignorable_holders": [ + "HP" + ] +} \ No newline at end of file diff --git a/docs/hp.LICENSE b/docs/hp.LICENSE index 97260e89de..7e3fb17bc1 100644 --- a/docs/hp.LICENSE +++ b/docs/hp.LICENSE @@ -1,3 +1,19 @@ +--- +key: hp +short_name: HP Non-Commercial License +name: HP Non-Commercial License +category: Proprietary Free +owner: HP - Hewlett Packard +homepage_url: http://h30097.www3.hp.com/hp_sw_license.html +spdx_license_key: LicenseRef-scancode-hp +text_urls: + - http://h30097.www3.hp.com/hp_sw_license.html +ignorable_copyrights: + - (c) HEWLETT-PACKARD COMPANY, 2004 +ignorable_holders: + - HEWLETT-PACKARD COMPANY +--- + HP SOFTWARE LICENSE TERMS NO COMMERCIALIZATION, LIMITED DISTRIBUTION PERMITTED diff --git a/docs/hp.html b/docs/hp.html index bbde08001d..a32deb19b6 100644 --- a/docs/hp.html +++ b/docs/hp.html @@ -174,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hp.json b/docs/hp.json index 8745d09e8a..3c05800eb3 100644 --- a/docs/hp.json +++ b/docs/hp.json @@ -1 +1,18 @@ -{"key": "hp", "short_name": "HP Non-Commercial License", "name": "HP Non-Commercial License", "category": "Proprietary Free", "owner": "HP - Hewlett Packard", "homepage_url": "http://h30097.www3.hp.com/hp_sw_license.html", "spdx_license_key": "LicenseRef-scancode-hp", "text_urls": ["http://h30097.www3.hp.com/hp_sw_license.html"], "ignorable_copyrights": ["(c) HEWLETT-PACKARD COMPANY, 2004"], "ignorable_holders": ["HEWLETT-PACKARD COMPANY"]} \ No newline at end of file +{ + "key": "hp", + "short_name": "HP Non-Commercial License", + "name": "HP Non-Commercial License", + "category": "Proprietary Free", + "owner": "HP - Hewlett Packard", + "homepage_url": "http://h30097.www3.hp.com/hp_sw_license.html", + "spdx_license_key": "LicenseRef-scancode-hp", + "text_urls": [ + "http://h30097.www3.hp.com/hp_sw_license.html" + ], + "ignorable_copyrights": [ + "(c) HEWLETT-PACKARD COMPANY, 2004" + ], + "ignorable_holders": [ + "HEWLETT-PACKARD COMPANY" + ] +} \ No newline at end of file diff --git a/docs/hs-regexp-orig.LICENSE b/docs/hs-regexp-orig.LICENSE index 0402dc295a..e1c7042dc3 100644 --- a/docs/hs-regexp-orig.LICENSE +++ b/docs/hs-regexp-orig.LICENSE @@ -1,3 +1,15 @@ +--- +key: hs-regexp-orig +is_deprecated: yes +short_name: Henry Spencer Original Regexp License +name: Henry Spencer Original Regexp License +category: Permissive +owner: Henry Spencer +notes: deprecated in favor of the regexp license which is identical +other_urls: + - https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License +--- + Not derived from licensed software. Permission is granted to anyone to use this software for any @@ -12,5 +24,4 @@ subject to the following restrictions: by explicit claim or by omission. 3. Altered versions must be plainly marked as such, and must not - be misrepresented as being the original software. - \ No newline at end of file + be misrepresented as being the original software. \ No newline at end of file diff --git a/docs/hs-regexp-orig.html b/docs/hs-regexp-orig.html index bc273e357f..5d2eccdea9 100644 --- a/docs/hs-regexp-orig.html +++ b/docs/hs-regexp-orig.html @@ -138,8 +138,7 @@ by explicit claim or by omission. 3. Altered versions must be plainly marked as such, and must not - be misrepresented as being the original software. - + be misrepresented as being the original software.
@@ -151,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hs-regexp-orig.json b/docs/hs-regexp-orig.json index b6f19ba940..83108c67f5 100644 --- a/docs/hs-regexp-orig.json +++ b/docs/hs-regexp-orig.json @@ -1 +1,12 @@ -{"key": "hs-regexp-orig", "is_deprecated": true, "short_name": "Henry Spencer Original Regexp License", "name": "Henry Spencer Original Regexp License", "category": "Permissive", "owner": "Henry Spencer", "notes": "deprecated in favor of the regexp license which is identical", "other_urls": ["https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License"]} \ No newline at end of file +{ + "key": "hs-regexp-orig", + "is_deprecated": true, + "short_name": "Henry Spencer Original Regexp License", + "name": "Henry Spencer Original Regexp License", + "category": "Permissive", + "owner": "Henry Spencer", + "notes": "deprecated in favor of the regexp license which is identical", + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License" + ] +} \ No newline at end of file diff --git a/docs/hs-regexp.LICENSE b/docs/hs-regexp.LICENSE index 744c373688..3ba4a34ab8 100644 --- a/docs/hs-regexp.LICENSE +++ b/docs/hs-regexp.LICENSE @@ -1,3 +1,23 @@ +--- +key: hs-regexp +short_name: Henry Spencer Regexp License +name: Henry Spencer Regexp License +category: Permissive +owner: Henry Spencer +homepage_url: https://github.com/garyhouston/regex/blob/master/COPYRIGHT +notes: this is very similar to the purdue-bsd license +spdx_license_key: Spencer-94 +text_urls: + - http://search.cpan.org/~knok/File-MMagic-1.12/MMagic.pm + - http://stbase.org/manual/es/mod/mod_mime_magic.html + - http://www.cisco.com/c/en/us/td/docs/switches/metro/me3600x_3800x/software/release/15-3_1_S/command/reference/3800x3600xcr/ossack.html + - http://www.pell.portland.or.us/~orc/Code/magicfilter/magicfilter-2.3.c/file/process.c + - https://dev.mysql.com/doc/mysql-security-excerpt/5.0/en/license-regex.html +other_urls: + - https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License +minimum_coverage: 70 +--- + This software is not subject to any license of the American Telephone and Telegraph Company or of the Regents of the University of California. diff --git a/docs/hs-regexp.html b/docs/hs-regexp.html index 2c1a1eabc4..4b05edf6a1 100644 --- a/docs/hs-regexp.html +++ b/docs/hs-regexp.html @@ -177,7 +177,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hs-regexp.json b/docs/hs-regexp.json index fab7ee4571..b8e120c64c 100644 --- a/docs/hs-regexp.json +++ b/docs/hs-regexp.json @@ -1 +1,21 @@ -{"key": "hs-regexp", "short_name": "Henry Spencer Regexp License", "name": "Henry Spencer Regexp License", "category": "Permissive", "owner": "Henry Spencer", "homepage_url": "https://github.com/garyhouston/regex/blob/master/COPYRIGHT", "notes": "this is very similar to the purdue-bsd license", "spdx_license_key": "Spencer-94", "text_urls": ["http://search.cpan.org/~knok/File-MMagic-1.12/MMagic.pm", "http://stbase.org/manual/es/mod/mod_mime_magic.html", "http://www.cisco.com/c/en/us/td/docs/switches/metro/me3600x_3800x/software/release/15-3_1_S/command/reference/3800x3600xcr/ossack.html", "http://www.pell.portland.or.us/~orc/Code/magicfilter/magicfilter-2.3.c/file/process.c", "https://dev.mysql.com/doc/mysql-security-excerpt/5.0/en/license-regex.html"], "other_urls": ["https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License"], "minimum_coverage": 70} \ No newline at end of file +{ + "key": "hs-regexp", + "short_name": "Henry Spencer Regexp License", + "name": "Henry Spencer Regexp License", + "category": "Permissive", + "owner": "Henry Spencer", + "homepage_url": "https://github.com/garyhouston/regex/blob/master/COPYRIGHT", + "notes": "this is very similar to the purdue-bsd license", + "spdx_license_key": "Spencer-94", + "text_urls": [ + "http://search.cpan.org/~knok/File-MMagic-1.12/MMagic.pm", + "http://stbase.org/manual/es/mod/mod_mime_magic.html", + "http://www.cisco.com/c/en/us/td/docs/switches/metro/me3600x_3800x/software/release/15-3_1_S/command/reference/3800x3600xcr/ossack.html", + "http://www.pell.portland.or.us/~orc/Code/magicfilter/magicfilter-2.3.c/file/process.c", + "https://dev.mysql.com/doc/mysql-security-excerpt/5.0/en/license-regex.html" + ], + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License" + ], + "minimum_coverage": 70 +} \ No newline at end of file diff --git a/docs/html5.LICENSE b/docs/html5.LICENSE index ae18e47aa0..ec83660dfd 100644 --- a/docs/html5.LICENSE +++ b/docs/html5.LICENSE @@ -1 +1,15 @@ +--- +key: html5 +short_name: HTML 5 spec License +name: HTML 5 specification License +category: Permissive +owner: Ian Hickson +notes: this short notice was found first in the HTML 5 specification And is often accompanied + by this copyright notice © Copyright 2004-2008 Apple Computer, Inc., Mozilla Foundation, + and Opera Software ASA See in https://platform.html5.org/history/webapps/r59.html It was + used in the early HTML5 specifications from https://html.spec.whatwg.org/ See also https://github.com/whatwg/html/issues/538 + Note that this has since been replaced by the CC-BY-4.0 And https://github.com/whatwg/html/commit/8d3562c78c1041e797ffdf57abb480b952508881 +spdx_license_key: LicenseRef-scancode-html5 +--- + You are granted a license to use, reproduce and create derivative works of this document. \ No newline at end of file diff --git a/docs/html5.html b/docs/html5.html index 6cb81fc1ea..47d14d49f1 100644 --- a/docs/html5.html +++ b/docs/html5.html @@ -127,7 +127,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/html5.json b/docs/html5.json index 40350b5d12..1f9b3425df 100644 --- a/docs/html5.json +++ b/docs/html5.json @@ -1 +1,9 @@ -{"key": "html5", "short_name": "HTML 5 spec License", "name": "HTML 5 specification License", "category": "Permissive", "owner": "Ian Hickson", "notes": "this short notice was found first in the HTML 5 specification And is often accompanied by this copyright notice \u00a9 Copyright 2004-2008 Apple Computer, Inc., Mozilla Foundation, and Opera Software ASA See in https://platform.html5.org/history/webapps/r59.html It was used in the early HTML5 specifications from https://html.spec.whatwg.org/ See also https://github.com/whatwg/html/issues/538 Note that this has since been replaced by the CC-BY-4.0 And https://github.com/whatwg/html/commit/8d3562c78c1041e797ffdf57abb480b952508881", "spdx_license_key": "LicenseRef-scancode-html5"} \ No newline at end of file +{ + "key": "html5", + "short_name": "HTML 5 spec License", + "name": "HTML 5 specification License", + "category": "Permissive", + "owner": "Ian Hickson", + "notes": "this short notice was found first in the HTML 5 specification And is often accompanied by this copyright notice \u00a9 Copyright 2004-2008 Apple Computer, Inc., Mozilla Foundation, and Opera Software ASA See in https://platform.html5.org/history/webapps/r59.html It was used in the early HTML5 specifications from https://html.spec.whatwg.org/ See also https://github.com/whatwg/html/issues/538 Note that this has since been replaced by the CC-BY-4.0 And https://github.com/whatwg/html/commit/8d3562c78c1041e797ffdf57abb480b952508881", + "spdx_license_key": "LicenseRef-scancode-html5" +} \ No newline at end of file diff --git a/docs/httpget.LICENSE b/docs/httpget.LICENSE index e53cb4e198..dee8f40a06 100644 --- a/docs/httpget.LICENSE +++ b/docs/httpget.LICENSE @@ -1,3 +1,19 @@ +--- +key: httpget +short_name: httpget notice and disclaimer +name: httpget notice and disclaimer +category: Permissive +owner: Unspecified +homepage_url: http://www.softorchestra.com/downloads/ +notes: | + This license is an historical permission with a simplified warranty + disclaimer as found in the libpbm license. +spdx_license_key: LicenseRef-scancode-httpget +text_urls: + - https://github.com/BackupTheBerlios/oolite-linux-svn/blob/4ae1a88fd7bfaae3918d48170710ccfaf252e3d5/branches/DynamicOolite/deps/src/libhttp-1.1/httpget.c +minimum_coverage: 70 +--- + The right to use, modify and redistribute this code is allowed provided the above copyright notice and the below disclaimer appear on all copies. @@ -5,4 +21,4 @@ This file is provided AS IS with no warranties of any kind. The author shall have no liability with respect to the infringement of copyrights, trade secrets or any patents by this file or any part thereof. In no event will the author be liable for any lost revenue or profits or -other special, indirect and consequential damages. +other special, indirect and consequential damages. \ No newline at end of file diff --git a/docs/httpget.html b/docs/httpget.html index 21e16e83f4..86dfbef3a8 100644 --- a/docs/httpget.html +++ b/docs/httpget.html @@ -147,8 +147,7 @@ shall have no liability with respect to the infringement of copyrights, trade secrets or any patents by this file or any part thereof. In no event will the author be liable for any lost revenue or profits or -other special, indirect and consequential damages. - +other special, indirect and consequential damages.
@@ -160,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/httpget.json b/docs/httpget.json index df9dd19b17..d4d75e23ed 100644 --- a/docs/httpget.json +++ b/docs/httpget.json @@ -1 +1,14 @@ -{"key": "httpget", "short_name": "httpget notice and disclaimer", "name": "httpget notice and disclaimer", "category": "Permissive", "owner": "Unspecified", "homepage_url": "http://www.softorchestra.com/downloads/", "notes": "This license is an historical permission with a simplified warranty\ndisclaimer as found in the libpbm license.\n", "spdx_license_key": "LicenseRef-scancode-httpget", "text_urls": ["https://github.com/BackupTheBerlios/oolite-linux-svn/blob/4ae1a88fd7bfaae3918d48170710ccfaf252e3d5/branches/DynamicOolite/deps/src/libhttp-1.1/httpget.c"], "minimum_coverage": 70} \ No newline at end of file +{ + "key": "httpget", + "short_name": "httpget notice and disclaimer", + "name": "httpget notice and disclaimer", + "category": "Permissive", + "owner": "Unspecified", + "homepage_url": "http://www.softorchestra.com/downloads/", + "notes": "This license is an historical permission with a simplified warranty\ndisclaimer as found in the libpbm license.\n", + "spdx_license_key": "LicenseRef-scancode-httpget", + "text_urls": [ + "https://github.com/BackupTheBerlios/oolite-linux-svn/blob/4ae1a88fd7bfaae3918d48170710ccfaf252e3d5/branches/DynamicOolite/deps/src/libhttp-1.1/httpget.c" + ], + "minimum_coverage": 70 +} \ No newline at end of file diff --git a/docs/hugo.LICENSE b/docs/hugo.LICENSE index dfe984b3eb..7fd9560df9 100644 --- a/docs/hugo.LICENSE +++ b/docs/hugo.LICENSE @@ -1,3 +1,18 @@ +--- +key: hugo +short_name: Hugo License +name: Hugo License +category: Source-available +owner: Kent Tessman +spdx_license_key: LicenseRef-scancode-hugo +ignorable_copyrights: + - Copyright (c) 2003 by Kent Tessman The General Coffee Company Film Productions +ignorable_holders: + - Kent Tessman The General Coffee Company Film Productions +ignorable_authors: + - an End User +--- + HUGO LICENSE - December 19, 2003 -------------------------------- diff --git a/docs/hugo.html b/docs/hugo.html index ee76839fe6..82e4a6b450 100644 --- a/docs/hugo.html +++ b/docs/hugo.html @@ -234,7 +234,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hugo.json b/docs/hugo.json index 3f8baa5f16..13449f3d7b 100644 --- a/docs/hugo.json +++ b/docs/hugo.json @@ -1 +1,17 @@ -{"key": "hugo", "short_name": "Hugo License", "name": "Hugo License", "category": "Source-available", "owner": "Kent Tessman", "spdx_license_key": "LicenseRef-scancode-hugo", "ignorable_copyrights": ["Copyright (c) 2003 by Kent Tessman The General Coffee Company Film Productions"], "ignorable_holders": ["Kent Tessman The General Coffee Company Film Productions"], "ignorable_authors": ["an End User"]} \ No newline at end of file +{ + "key": "hugo", + "short_name": "Hugo License", + "name": "Hugo License", + "category": "Source-available", + "owner": "Kent Tessman", + "spdx_license_key": "LicenseRef-scancode-hugo", + "ignorable_copyrights": [ + "Copyright (c) 2003 by Kent Tessman The General Coffee Company Film Productions" + ], + "ignorable_holders": [ + "Kent Tessman The General Coffee Company Film Productions" + ], + "ignorable_authors": [ + "an End User" + ] +} \ No newline at end of file diff --git a/docs/hxd.LICENSE b/docs/hxd.LICENSE index 7937aecf42..d00f3c2a54 100644 --- a/docs/hxd.LICENSE +++ b/docs/hxd.LICENSE @@ -1,3 +1,15 @@ +--- +key: hxd +short_name: HxD License +name: HxD License +category: Proprietary Free +owner: mh-nexus +homepage_url: https://mh-nexus.de/en/hxd/license.php +spdx_license_key: LicenseRef-scancode-hxd +ignorable_urls: + - http://mh-nexus.de/hxd +--- + Permission is granted to anyone to use this Software free of charge for any purpose, including commercial applications, and to redistribute it, provided that the warranty disclaimer is accepted and the following conditions are met: All redistributions must keep the original package intact. No file may be removed or modified. Especially you must retain all copyright notices that are currently in place, and this license without modification. diff --git a/docs/hxd.html b/docs/hxd.html index cbb2e4ea67..4719836510 100644 --- a/docs/hxd.html +++ b/docs/hxd.html @@ -150,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/hxd.json b/docs/hxd.json index cbdb4cbfd8..253a2ed21e 100644 --- a/docs/hxd.json +++ b/docs/hxd.json @@ -1 +1,12 @@ -{"key": "hxd", "short_name": "HxD License", "name": "HxD License", "category": "Proprietary Free", "owner": "mh-nexus", "homepage_url": "https://mh-nexus.de/en/hxd/license.php", "spdx_license_key": "LicenseRef-scancode-hxd", "ignorable_urls": ["http://mh-nexus.de/hxd"]} \ No newline at end of file +{ + "key": "hxd", + "short_name": "HxD License", + "name": "HxD License", + "category": "Proprietary Free", + "owner": "mh-nexus", + "homepage_url": "https://mh-nexus.de/en/hxd/license.php", + "spdx_license_key": "LicenseRef-scancode-hxd", + "ignorable_urls": [ + "http://mh-nexus.de/hxd" + ] +} \ No newline at end of file diff --git a/docs/i2p-gpl-java-exception.LICENSE b/docs/i2p-gpl-java-exception.LICENSE index fe1e3df345..b9bb9451a2 100644 --- a/docs/i2p-gpl-java-exception.LICENSE +++ b/docs/i2p-gpl-java-exception.LICENSE @@ -1,3 +1,36 @@ +--- +key: i2p-gpl-java-exception +short_name: i2p GPL plus Java Exception +name: i2p GPL plus Java Exception +category: Copyleft Limited +owner: I2P Network +homepage_url: https://geti2p.net/en/get-involved/develop/licenses#java_exception +is_exception: yes +spdx_license_key: i2p-gpl-java-exception +other_urls: + - http://geti2p.net/en/get-involved/develop/licenses#java_exception + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + GPL + java exception + While it may be redundant, just for clarity the GPL'ed code included within + I2PTunnel and other apps must be released under the GPL with an additional + "exception" explicitly authorizing the use of Java's standard libraries: + In addition, as a special exception, XXXX gives permission to link the code + of this program with the proprietary Java implementation provided by Sun + (or other vendors as well), and distribute linked combinations including + the two. You must obey the GNU General Public License in all respects for + all of the code used other than the proprietary Java implementation. If you + modify this file, you may extend this exception to your version of the + file, but you are not obligated to do so. If you do not wish to do so, + delete this exception statement from your version. + All source code under each component will by default be licensed under the + primary license, unless marked otherwise in the code. All of the above is + summary of the license terms - please see the specific license for the + component or source code in question for authoritative terms. Component + source locations and resource packaging may be changed if the repository is + reorganized. +--- + In addition, as a special exception, XXXX gives permission to link the code of this program with the proprietary Java implementation provided by Sun (or other vendors as well), and distribute linked combinations including the two. diff --git a/docs/i2p-gpl-java-exception.html b/docs/i2p-gpl-java-exception.html index 5eea478ba5..30707a5421 100644 --- a/docs/i2p-gpl-java-exception.html +++ b/docs/i2p-gpl-java-exception.html @@ -176,7 +176,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/i2p-gpl-java-exception.json b/docs/i2p-gpl-java-exception.json index a5a6b93f89..6484bdefc4 100644 --- a/docs/i2p-gpl-java-exception.json +++ b/docs/i2p-gpl-java-exception.json @@ -1 +1,15 @@ -{"key": "i2p-gpl-java-exception", "short_name": "i2p GPL plus Java Exception", "name": "i2p GPL plus Java Exception", "category": "Copyleft Limited", "owner": "I2P Network", "homepage_url": "https://geti2p.net/en/get-involved/develop/licenses#java_exception", "is_exception": true, "spdx_license_key": "i2p-gpl-java-exception", "other_urls": ["http://geti2p.net/en/get-involved/develop/licenses#java_exception", "http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "GPL + java exception\nWhile it may be redundant, just for clarity the GPL'ed code included within\nI2PTunnel and other apps must be released under the GPL with an additional\n\"exception\" explicitly authorizing the use of Java's standard libraries:\nIn addition, as a special exception, XXXX gives permission to link the code\nof this program with the proprietary Java implementation provided by Sun\n(or other vendors as well), and distribute linked combinations including\nthe two. You must obey the GNU General Public License in all respects for\nall of the code used other than the proprietary Java implementation. If you\nmodify this file, you may extend this exception to your version of the\nfile, but you are not obligated to do so. If you do not wish to do so,\ndelete this exception statement from your version.\nAll source code under each component will by default be licensed under the\nprimary license, unless marked otherwise in the code. All of the above is\nsummary of the license terms - please see the specific license for the\ncomponent or source code in question for authoritative terms. Component\nsource locations and resource packaging may be changed if the repository is\nreorganized.\n"} \ No newline at end of file +{ + "key": "i2p-gpl-java-exception", + "short_name": "i2p GPL plus Java Exception", + "name": "i2p GPL plus Java Exception", + "category": "Copyleft Limited", + "owner": "I2P Network", + "homepage_url": "https://geti2p.net/en/get-involved/develop/licenses#java_exception", + "is_exception": true, + "spdx_license_key": "i2p-gpl-java-exception", + "other_urls": [ + "http://geti2p.net/en/get-involved/develop/licenses#java_exception", + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "GPL + java exception\nWhile it may be redundant, just for clarity the GPL'ed code included within\nI2PTunnel and other apps must be released under the GPL with an additional\n\"exception\" explicitly authorizing the use of Java's standard libraries:\nIn addition, as a special exception, XXXX gives permission to link the code\nof this program with the proprietary Java implementation provided by Sun\n(or other vendors as well), and distribute linked combinations including\nthe two. You must obey the GNU General Public License in all respects for\nall of the code used other than the proprietary Java implementation. If you\nmodify this file, you may extend this exception to your version of the\nfile, but you are not obligated to do so. If you do not wish to do so,\ndelete this exception statement from your version.\nAll source code under each component will by default be licensed under the\nprimary license, unless marked otherwise in the code. All of the above is\nsummary of the license terms - please see the specific license for the\ncomponent or source code in question for authoritative terms. Component\nsource locations and resource packaging may be changed if the repository is\nreorganized.\n" +} \ No newline at end of file diff --git a/docs/ian-kaplan.LICENSE b/docs/ian-kaplan.LICENSE index 686d9220dc..f31818fc10 100644 --- a/docs/ian-kaplan.LICENSE +++ b/docs/ian-kaplan.LICENSE @@ -1,4 +1,13 @@ +--- +key: ian-kaplan +short_name: Ian Kaplan License +name: Ian Kaplan License +category: Permissive +owner: Bearcave.com +spdx_license_key: LicenseRef-scancode-ian-kaplan +--- + Use of this program, for any purpose, is granted the author, Ian Kaplan, as long as this copyright notice is included in the source code or any source code derived from this program. -The user assumes all responsibility for using this code. +The user assumes all responsibility for using this code. \ No newline at end of file diff --git a/docs/ian-kaplan.html b/docs/ian-kaplan.html index 9f8dcc6df0..e9f9c7fe9f 100644 --- a/docs/ian-kaplan.html +++ b/docs/ian-kaplan.html @@ -111,8 +111,7 @@
Use of this program, for any purpose, is granted the author,
 Ian Kaplan, as long as this copyright notice is included in
 the source code or any source code derived from this program.
-The user assumes all responsibility for using this code.
-
+The user assumes all responsibility for using this code.
@@ -124,7 +123,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ian-kaplan.json b/docs/ian-kaplan.json index 9af1a9d9bd..700bd88c0f 100644 --- a/docs/ian-kaplan.json +++ b/docs/ian-kaplan.json @@ -1 +1,8 @@ -{"key": "ian-kaplan", "short_name": "Ian Kaplan License", "name": "Ian Kaplan License", "category": "Permissive", "owner": "Bearcave.com", "spdx_license_key": "LicenseRef-scancode-ian-kaplan"} \ No newline at end of file +{ + "key": "ian-kaplan", + "short_name": "Ian Kaplan License", + "name": "Ian Kaplan License", + "category": "Permissive", + "owner": "Bearcave.com", + "spdx_license_key": "LicenseRef-scancode-ian-kaplan" +} \ No newline at end of file diff --git a/docs/ian-piumarta.LICENSE b/docs/ian-piumarta.LICENSE index ae27acdd79..5e7b725e39 100644 --- a/docs/ian-piumarta.LICENSE +++ b/docs/ian-piumarta.LICENSE @@ -1,3 +1,13 @@ +--- +key: ian-piumarta +short_name: Ian Piumarta License +name: Ian Piumarta License +category: Permissive +owner: Ian Piumarta +homepage_url: http://piumarta.com/software/peg/ +spdx_license_key: LicenseRef-scancode-ian-piumarta +--- + 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 @@ -8,4 +18,4 @@ permission notice appear in all copies of the Software. Acknowledgement of the use of this Software in supporting documentation would be appreciated but is not required. -THE SOFTWARE IS PROVIDED 'AS IS'. USE ENTIRELY AT YOUR OWN RISK. +THE SOFTWARE IS PROVIDED 'AS IS'. USE ENTIRELY AT YOUR OWN RISK. \ No newline at end of file diff --git a/docs/ian-piumarta.html b/docs/ian-piumarta.html index 4024bce5da..a9b951f9a4 100644 --- a/docs/ian-piumarta.html +++ b/docs/ian-piumarta.html @@ -125,8 +125,7 @@ of the use of this Software in supporting documentation would be appreciated but is not required. -THE SOFTWARE IS PROVIDED 'AS IS'. USE ENTIRELY AT YOUR OWN RISK. - +THE SOFTWARE IS PROVIDED 'AS IS'. USE ENTIRELY AT YOUR OWN RISK.
@@ -138,7 +137,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ian-piumarta.json b/docs/ian-piumarta.json index 7d6a6cb13a..d82011b33c 100644 --- a/docs/ian-piumarta.json +++ b/docs/ian-piumarta.json @@ -1 +1,9 @@ -{"key": "ian-piumarta", "short_name": "Ian Piumarta License", "name": "Ian Piumarta License", "category": "Permissive", "owner": "Ian Piumarta", "homepage_url": "http://piumarta.com/software/peg/", "spdx_license_key": "LicenseRef-scancode-ian-piumarta"} \ No newline at end of file +{ + "key": "ian-piumarta", + "short_name": "Ian Piumarta License", + "name": "Ian Piumarta License", + "category": "Permissive", + "owner": "Ian Piumarta", + "homepage_url": "http://piumarta.com/software/peg/", + "spdx_license_key": "LicenseRef-scancode-ian-piumarta" +} \ No newline at end of file diff --git a/docs/ibm-as-is.LICENSE b/docs/ibm-as-is.LICENSE index c2e2104ad3..da08bbd38d 100644 --- a/docs/ibm-as-is.LICENSE +++ b/docs/ibm-as-is.LICENSE @@ -1,3 +1,16 @@ +--- +key: ibm-as-is +short_name: IBM AS-IS License +name: IBM AS-IS License +category: Permissive +owner: IBM +spdx_license_key: LicenseRef-scancode-ibm-as-is +ignorable_copyrights: + - COPYRIGHT I B M CORPORATION 2000 +ignorable_holders: + - I B M CORPORATION +--- + This source and object code has been made available to you by IBM on an AS-IS basis. @@ -22,4 +35,4 @@ Any person who transfers this object code or any derivative work must include the IBM copyright notice in the transferred software. COPYRIGHT I B M CORPORATION 2000 -LICENSED MATERIAL - PROGRAM PROPERTY OF I B M" +LICENSED MATERIAL - PROGRAM PROPERTY OF I B M" \ No newline at end of file diff --git a/docs/ibm-as-is.html b/docs/ibm-as-is.html index 09aabff807..4cb8747403 100644 --- a/docs/ibm-as-is.html +++ b/docs/ibm-as-is.html @@ -150,8 +150,7 @@ include the IBM copyright notice in the transferred software. COPYRIGHT I B M CORPORATION 2000 -LICENSED MATERIAL - PROGRAM PROPERTY OF I B M" - +LICENSED MATERIAL - PROGRAM PROPERTY OF I B M"
@@ -163,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ibm-as-is.json b/docs/ibm-as-is.json index 354533ac76..7e458ab2ab 100644 --- a/docs/ibm-as-is.json +++ b/docs/ibm-as-is.json @@ -1 +1,14 @@ -{"key": "ibm-as-is", "short_name": "IBM AS-IS License", "name": "IBM AS-IS License", "category": "Permissive", "owner": "IBM", "spdx_license_key": "LicenseRef-scancode-ibm-as-is", "ignorable_copyrights": ["COPYRIGHT I B M CORPORATION 2000"], "ignorable_holders": ["I B M CORPORATION"]} \ No newline at end of file +{ + "key": "ibm-as-is", + "short_name": "IBM AS-IS License", + "name": "IBM AS-IS License", + "category": "Permissive", + "owner": "IBM", + "spdx_license_key": "LicenseRef-scancode-ibm-as-is", + "ignorable_copyrights": [ + "COPYRIGHT I B M CORPORATION 2000" + ], + "ignorable_holders": [ + "I B M CORPORATION" + ] +} \ No newline at end of file diff --git a/docs/ibm-data-server-2011.LICENSE b/docs/ibm-data-server-2011.LICENSE index 668bbff81f..f7132c3632 100644 --- a/docs/ibm-data-server-2011.LICENSE +++ b/docs/ibm-data-server-2011.LICENSE @@ -1,3 +1,21 @@ +--- +key: ibm-data-server-2011 +short_name: IBM Data Server License 2011 +name: IBM Data Server License 2011 +category: Commercial +owner: IBM +homepage_url: https://www.nuget.org/packages/IBM.Data.DB2.Core/3.1.0.500/License +spdx_license_key: LicenseRef-scancode-ibm-data-server-2011 +other_urls: + - https://www.ibm.com/docs/en/workload-automation/9.5.0?topic=SSGSPN_9.5.0/notices_distagentzos.html + - https://www.ibm.com/support/pages/sites/default/files/inline-files/Z125-3301-14.pdf + - https://www.ibm.com/support/knowledgecenter/en/STVRB7_3.4.0/Z125-3301-14.pdf +ignorable_urls: + - http://www.ibm.com/software/sla + - http://www.ibm.com/software/support + - http://www.ibm.com/softwarepolicies +--- + LICENSE INFORMATION The Programs listed below are licensed under the following License Information terms and conditions in addition to the Program license terms previously agreed to by Client and IBM. If Client does not have previously agreed to license terms in effect for the Program, the International Program License Agreement (Z125-3301-14) applies. diff --git a/docs/ibm-data-server-2011.html b/docs/ibm-data-server-2011.html index e8156ef8b9..c2659fe266 100644 --- a/docs/ibm-data-server-2011.html +++ b/docs/ibm-data-server-2011.html @@ -894,7 +894,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ibm-data-server-2011.json b/docs/ibm-data-server-2011.json index 8f1104413c..db6a854d6e 100644 --- a/docs/ibm-data-server-2011.json +++ b/docs/ibm-data-server-2011.json @@ -1 +1,19 @@ -{"key": "ibm-data-server-2011", "short_name": "IBM Data Server License 2011", "name": "IBM Data Server License 2011", "category": "Commercial", "owner": "IBM", "homepage_url": "https://www.nuget.org/packages/IBM.Data.DB2.Core/3.1.0.500/License", "spdx_license_key": "LicenseRef-scancode-ibm-data-server-2011", "other_urls": ["https://www.ibm.com/docs/en/workload-automation/9.5.0?topic=SSGSPN_9.5.0/notices_distagentzos.html", "https://www.ibm.com/support/pages/sites/default/files/inline-files/Z125-3301-14.pdf", "https://www.ibm.com/support/knowledgecenter/en/STVRB7_3.4.0/Z125-3301-14.pdf"], "ignorable_urls": ["http://www.ibm.com/software/sla", "http://www.ibm.com/software/support", "http://www.ibm.com/softwarepolicies"]} \ No newline at end of file +{ + "key": "ibm-data-server-2011", + "short_name": "IBM Data Server License 2011", + "name": "IBM Data Server License 2011", + "category": "Commercial", + "owner": "IBM", + "homepage_url": "https://www.nuget.org/packages/IBM.Data.DB2.Core/3.1.0.500/License", + "spdx_license_key": "LicenseRef-scancode-ibm-data-server-2011", + "other_urls": [ + "https://www.ibm.com/docs/en/workload-automation/9.5.0?topic=SSGSPN_9.5.0/notices_distagentzos.html", + "https://www.ibm.com/support/pages/sites/default/files/inline-files/Z125-3301-14.pdf", + "https://www.ibm.com/support/knowledgecenter/en/STVRB7_3.4.0/Z125-3301-14.pdf" + ], + "ignorable_urls": [ + "http://www.ibm.com/software/sla", + "http://www.ibm.com/software/support", + "http://www.ibm.com/softwarepolicies" + ] +} \ No newline at end of file diff --git a/docs/ibm-developerworks-community-download.LICENSE b/docs/ibm-developerworks-community-download.LICENSE index c6a6fd75e7..d124116fd6 100644 --- a/docs/ibm-developerworks-community-download.LICENSE +++ b/docs/ibm-developerworks-community-download.LICENSE @@ -1,3 +1,17 @@ +--- +key: ibm-developerworks-community-download +short_name: IBM developerWorks Community Download Agreement +name: IBM developerWorks Community Download of Content Agreement +category: Proprietary Free +owner: IBM +homepage_url: https://www.ibm.com/developerworks/community/terms/download?lang=en +spdx_license_key: LicenseRef-scancode-ibm-developerworks-community +other_spdx_license_keys: + - LicenseRef-scancode-ibm-developerworks-community-download +ignorable_urls: + - http://www.ibm.com/developerworks/exchange +--- + Download of Content Agreement The following are terms of a legal downloader agreement (the "Agreement") regarding Your download of Content (as defined below) from this Website. IBM may change these terms of use and other requirements and guidelines for use of this Website at its sole discretion. This Website may contain other proprietary notices and copyright information (http://www.ibm.com/developerworks/exchange), the terms of which must be observed and followed. Any use of the Content in violation of this Agreement is strictly prohibited. diff --git a/docs/ibm-developerworks-community-download.html b/docs/ibm-developerworks-community-download.html index 994b11fb56..2a62374e8e 100644 --- a/docs/ibm-developerworks-community-download.html +++ b/docs/ibm-developerworks-community-download.html @@ -164,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ibm-developerworks-community-download.json b/docs/ibm-developerworks-community-download.json index c6511c506b..bd60a80e69 100644 --- a/docs/ibm-developerworks-community-download.json +++ b/docs/ibm-developerworks-community-download.json @@ -1 +1,15 @@ -{"key": "ibm-developerworks-community-download", "short_name": "IBM developerWorks Community Download Agreement", "name": "IBM developerWorks Community Download of Content Agreement", "category": "Proprietary Free", "owner": "IBM", "homepage_url": "https://www.ibm.com/developerworks/community/terms/download?lang=en", "spdx_license_key": "LicenseRef-scancode-ibm-developerworks-community", "other_spdx_license_keys": ["LicenseRef-scancode-ibm-developerworks-community-download"], "ignorable_urls": ["http://www.ibm.com/developerworks/exchange"]} \ No newline at end of file +{ + "key": "ibm-developerworks-community-download", + "short_name": "IBM developerWorks Community Download Agreement", + "name": "IBM developerWorks Community Download of Content Agreement", + "category": "Proprietary Free", + "owner": "IBM", + "homepage_url": "https://www.ibm.com/developerworks/community/terms/download?lang=en", + "spdx_license_key": "LicenseRef-scancode-ibm-developerworks-community", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ibm-developerworks-community-download" + ], + "ignorable_urls": [ + "http://www.ibm.com/developerworks/exchange" + ] +} \ No newline at end of file diff --git a/docs/ibm-dhcp.LICENSE b/docs/ibm-dhcp.LICENSE index 100f161818..e1e2495b2b 100644 --- a/docs/ibm-dhcp.LICENSE +++ b/docs/ibm-dhcp.LICENSE @@ -1,3 +1,14 @@ +--- +key: ibm-dhcp +short_name: IBM DHCP License +name: IBM DHCP License +category: Permissive +owner: IBM +spdx_license_key: LicenseRef-scancode-ibm-dhcp +other_urls: + - http://svn.opendnssec.org/trunk/OpenDNSSEC/common/b64_pton.c +--- + International Business Machines, Inc. (hereinafter called IBM) grants permission under its copyrights to use, copy, modify, and distribute this Software with or without fee, provided that the above copyright notice and @@ -17,4 +28,4 @@ INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN -IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. +IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/docs/ibm-dhcp.html b/docs/ibm-dhcp.html index 7e0c8162b7..b546fae8f7 100644 --- a/docs/ibm-dhcp.html +++ b/docs/ibm-dhcp.html @@ -136,8 +136,7 @@ PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN -IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. - +IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES.
@@ -149,7 +148,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ibm-dhcp.json b/docs/ibm-dhcp.json index 86a371a652..bc3ba9093a 100644 --- a/docs/ibm-dhcp.json +++ b/docs/ibm-dhcp.json @@ -1 +1,11 @@ -{"key": "ibm-dhcp", "short_name": "IBM DHCP License", "name": "IBM DHCP License", "category": "Permissive", "owner": "IBM", "spdx_license_key": "LicenseRef-scancode-ibm-dhcp", "other_urls": ["http://svn.opendnssec.org/trunk/OpenDNSSEC/common/b64_pton.c"]} \ No newline at end of file +{ + "key": "ibm-dhcp", + "short_name": "IBM DHCP License", + "name": "IBM DHCP License", + "category": "Permissive", + "owner": "IBM", + "spdx_license_key": "LicenseRef-scancode-ibm-dhcp", + "other_urls": [ + "http://svn.opendnssec.org/trunk/OpenDNSSEC/common/b64_pton.c" + ] +} \ No newline at end of file diff --git a/docs/ibm-icu.LICENSE b/docs/ibm-icu.LICENSE index b326882e8f..8aaac819ac 100644 --- a/docs/ibm-icu.LICENSE +++ b/docs/ibm-icu.LICENSE @@ -1,3 +1,54 @@ +--- +key: ibm-icu +short_name: ICU Composite License +name: ICU Composite License +category: Permissive +owner: IBM +homepage_url: http://source.icu-project.org/repos/icu/icu/trunk/license.html +notes: composite of x11 licenses and others +spdx_license_key: LicenseRef-scancode-ibm-icu +text_urls: + - http://icu-project.org/repos/icu/icu/trunk/license.html +minimum_coverage: 85 +ignorable_copyrights: + - (c) 1999 TaBE Project + - Copyright (c) 1991-2014 Unicode, Inc. + - Copyright (c) 1995-2014 International Business Machines Corporation and others + - Copyright (c) 1999 Computer Systems and Communication Lab, Institute of Information Science, + Academia Sinica + - Copyright (c) 1999 Pai-Hsiang Hsiao + - Copyright (c) 2006-2008, Google Inc. + - Copyright (c) 2013 Brian Eugene Wilson, Robert Martin Campbell + - Copyright (c) 2013 International Business Machines Corporation and others + - Copyright (c) 2013, LeRoy Benjamin Sharon + - Copyright (c) 2014 International Business Machines Corporation and others + - Copyright 1996 Chih-Hao Tsai Beckman Institute, University of Illinois c-tsai4@uiuc.edu + http://casper.beckman.uiuc.edu/~c-tsai4 + - Copyright 2000, 2001, 2002, 2003 Nara Institute of Science and Technology +ignorable_holders: + - Brian Eugene Wilson, Robert Martin Campbell + - Chih-Hao Tsai Beckman Institute, University of Illinois + - Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica + - Google Inc. + - International Business Machines Corporation and others + - LeRoy Benjamin Sharon + - Nara Institute of Science and Technology + - Pai-Hsiang Hsiao + - TaBE Project + - Unicode, Inc. +ignorable_urls: + - http://casper.beckman.uiuc.edu/~c-tsai4 + - http://chasen.aist-nara.ac.jp/chasen/distribution.html + - http://code.google.com/p/lao-dictionary/ + - http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt + - http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt + - http://opensource.org/licenses/bsd-license.php + - http://www.unicode.org/copyright.html + - https://sourceforge.net/project/?group_id=1519 +ignorable_emails: + - c-tsai4@uiuc.edu +--- + ICU License - ICU 1.8.1 and later COPYRIGHT AND PERMISSION NOTICE diff --git a/docs/ibm-icu.html b/docs/ibm-icu.html index 5d25c5e155..16512a15ad 100644 --- a/docs/ibm-icu.html +++ b/docs/ibm-icu.html @@ -518,7 +518,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ibm-icu.json b/docs/ibm-icu.json index f3bf65c132..24815394d7 100644 --- a/docs/ibm-icu.json +++ b/docs/ibm-icu.json @@ -1 +1,53 @@ -{"key": "ibm-icu", "short_name": "ICU Composite License", "name": "ICU Composite License", "category": "Permissive", "owner": "IBM", "homepage_url": "http://source.icu-project.org/repos/icu/icu/trunk/license.html", "notes": "composite of x11 licenses and others", "spdx_license_key": "LicenseRef-scancode-ibm-icu", "text_urls": ["http://icu-project.org/repos/icu/icu/trunk/license.html"], "minimum_coverage": 85, "ignorable_copyrights": ["(c) 1999 TaBE Project", "Copyright (c) 1991-2014 Unicode, Inc.", "Copyright (c) 1995-2014 International Business Machines Corporation and others", "Copyright (c) 1999 Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica", "Copyright (c) 1999 Pai-Hsiang Hsiao", "Copyright (c) 2006-2008, Google Inc.", "Copyright (c) 2013 Brian Eugene Wilson, Robert Martin Campbell", "Copyright (c) 2013 International Business Machines Corporation and others", "Copyright (c) 2013, LeRoy Benjamin Sharon", "Copyright (c) 2014 International Business Machines Corporation and others", "Copyright 1996 Chih-Hao Tsai Beckman Institute, University of Illinois c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4", "Copyright 2000, 2001, 2002, 2003 Nara Institute of Science and Technology"], "ignorable_holders": ["Brian Eugene Wilson, Robert Martin Campbell", "Chih-Hao Tsai Beckman Institute, University of Illinois", "Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica", "Google Inc.", "International Business Machines Corporation and others", "LeRoy Benjamin Sharon", "Nara Institute of Science and Technology", "Pai-Hsiang Hsiao", "TaBE Project", "Unicode, Inc."], "ignorable_urls": ["http://casper.beckman.uiuc.edu/~c-tsai4", "http://chasen.aist-nara.ac.jp/chasen/distribution.html", "http://code.google.com/p/lao-dictionary/", "http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt", "http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt", "http://opensource.org/licenses/bsd-license.php", "http://www.unicode.org/copyright.html", "https://sourceforge.net/project/?group_id=1519"], "ignorable_emails": ["c-tsai4@uiuc.edu"]} \ No newline at end of file +{ + "key": "ibm-icu", + "short_name": "ICU Composite License", + "name": "ICU Composite License", + "category": "Permissive", + "owner": "IBM", + "homepage_url": "http://source.icu-project.org/repos/icu/icu/trunk/license.html", + "notes": "composite of x11 licenses and others", + "spdx_license_key": "LicenseRef-scancode-ibm-icu", + "text_urls": [ + "http://icu-project.org/repos/icu/icu/trunk/license.html" + ], + "minimum_coverage": 85, + "ignorable_copyrights": [ + "(c) 1999 TaBE Project", + "Copyright (c) 1991-2014 Unicode, Inc.", + "Copyright (c) 1995-2014 International Business Machines Corporation and others", + "Copyright (c) 1999 Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica", + "Copyright (c) 1999 Pai-Hsiang Hsiao", + "Copyright (c) 2006-2008, Google Inc.", + "Copyright (c) 2013 Brian Eugene Wilson, Robert Martin Campbell", + "Copyright (c) 2013 International Business Machines Corporation and others", + "Copyright (c) 2013, LeRoy Benjamin Sharon", + "Copyright (c) 2014 International Business Machines Corporation and others", + "Copyright 1996 Chih-Hao Tsai Beckman Institute, University of Illinois c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4", + "Copyright 2000, 2001, 2002, 2003 Nara Institute of Science and Technology" + ], + "ignorable_holders": [ + "Brian Eugene Wilson, Robert Martin Campbell", + "Chih-Hao Tsai Beckman Institute, University of Illinois", + "Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica", + "Google Inc.", + "International Business Machines Corporation and others", + "LeRoy Benjamin Sharon", + "Nara Institute of Science and Technology", + "Pai-Hsiang Hsiao", + "TaBE Project", + "Unicode, Inc." + ], + "ignorable_urls": [ + "http://casper.beckman.uiuc.edu/~c-tsai4", + "http://chasen.aist-nara.ac.jp/chasen/distribution.html", + "http://code.google.com/p/lao-dictionary/", + "http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt", + "http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt", + "http://opensource.org/licenses/bsd-license.php", + "http://www.unicode.org/copyright.html", + "https://sourceforge.net/project/?group_id=1519" + ], + "ignorable_emails": [ + "c-tsai4@uiuc.edu" + ] +} \ No newline at end of file diff --git a/docs/ibm-java-portlet-spec-2.0.LICENSE b/docs/ibm-java-portlet-spec-2.0.LICENSE index 1d967d4824..47b9b3a035 100644 --- a/docs/ibm-java-portlet-spec-2.0.LICENSE +++ b/docs/ibm-java-portlet-spec-2.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: ibm-java-portlet-spec-2.0 +short_name: IBM Java Portlet Specification 2.0 +name: IBM Java Portlet Specification 2.0 License +category: Permissive +owner: IBM +homepage_url: https://docs.oracle.com/cloud/latest/big-data-discovery-cloud/BDDLG/cl_ibm_java_portlet_spec_2.htm#BDDLG-concept_8F2CD6740028425B9BA5429DBDEE9BB3 +spdx_license_key: LicenseRef-scancode-ibm-java-portlet-spec-2.0 +other_urls: + - https://docs.oracle.com/cloud/latest/big-data-discovery-cloud/BDDLG/cl_third_party_notices.htm#BDDLG-concept_E7DC20A76AC94E44922974A6503BEC4B +ignorable_copyrights: + - Copyright 2008 IBM Corp. +ignorable_holders: + - IBM Corp. +ignorable_urls: + - http://www.jcp.org/en/jsr/detail?id=286 +--- + IBM Java Portlet Specification 2.0 License Java(TM) Portlet Specification ("Specification") Version: 2.0 diff --git a/docs/ibm-java-portlet-spec-2.0.html b/docs/ibm-java-portlet-spec-2.0.html index b8fff77aea..bbb0f06e46 100644 --- a/docs/ibm-java-portlet-spec-2.0.html +++ b/docs/ibm-java-portlet-spec-2.0.html @@ -181,7 +181,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ibm-java-portlet-spec-2.0.json b/docs/ibm-java-portlet-spec-2.0.json index 00a06b38ed..9eb2cb39fe 100644 --- a/docs/ibm-java-portlet-spec-2.0.json +++ b/docs/ibm-java-portlet-spec-2.0.json @@ -1 +1,21 @@ -{"key": "ibm-java-portlet-spec-2.0", "short_name": "IBM Java Portlet Specification 2.0", "name": "IBM Java Portlet Specification 2.0 License", "category": "Permissive", "owner": "IBM", "homepage_url": "https://docs.oracle.com/cloud/latest/big-data-discovery-cloud/BDDLG/cl_ibm_java_portlet_spec_2.htm#BDDLG-concept_8F2CD6740028425B9BA5429DBDEE9BB3", "spdx_license_key": "LicenseRef-scancode-ibm-java-portlet-spec-2.0", "other_urls": ["https://docs.oracle.com/cloud/latest/big-data-discovery-cloud/BDDLG/cl_third_party_notices.htm#BDDLG-concept_E7DC20A76AC94E44922974A6503BEC4B"], "ignorable_copyrights": ["Copyright 2008 IBM Corp."], "ignorable_holders": ["IBM Corp."], "ignorable_urls": ["http://www.jcp.org/en/jsr/detail?id=286"]} \ No newline at end of file +{ + "key": "ibm-java-portlet-spec-2.0", + "short_name": "IBM Java Portlet Specification 2.0", + "name": "IBM Java Portlet Specification 2.0 License", + "category": "Permissive", + "owner": "IBM", + "homepage_url": "https://docs.oracle.com/cloud/latest/big-data-discovery-cloud/BDDLG/cl_ibm_java_portlet_spec_2.htm#BDDLG-concept_8F2CD6740028425B9BA5429DBDEE9BB3", + "spdx_license_key": "LicenseRef-scancode-ibm-java-portlet-spec-2.0", + "other_urls": [ + "https://docs.oracle.com/cloud/latest/big-data-discovery-cloud/BDDLG/cl_third_party_notices.htm#BDDLG-concept_E7DC20A76AC94E44922974A6503BEC4B" + ], + "ignorable_copyrights": [ + "Copyright 2008 IBM Corp." + ], + "ignorable_holders": [ + "IBM Corp." + ], + "ignorable_urls": [ + "http://www.jcp.org/en/jsr/detail?id=286" + ] +} \ No newline at end of file diff --git a/docs/ibm-jre.LICENSE b/docs/ibm-jre.LICENSE index 25556a2383..b968926df5 100644 --- a/docs/ibm-jre.LICENSE +++ b/docs/ibm-jre.LICENSE @@ -1,3 +1,19 @@ +--- +key: ibm-jre +short_name: IBM JRE License +name: IBM Java Runtime Environment License +category: Commercial +owner: IBM +homepage_url: http://www.ibm.com/developerworks/views/download.jsp?contentid=10947&filename=zip&method=ftp&locale=worldwide +spdx_license_key: LicenseRef-scancode-ibm-jre +text_urls: + - http://www.ibm.com/developerworks/views/download.jsp?contentid=10947&filename=zip&method=ftp&locale=worldwide +other_urls: + - http://www.ibm.com/developerworks/views/download.jsp?contentid=10947&filename=zip&method=ftp&locale=worldwide +ignorable_urls: + - http://www.ibm.com/software/sla/ +--- + International License Agreement for Non-Warranted Programs Part 1 - General Terms diff --git a/docs/ibm-jre.html b/docs/ibm-jre.html index 1d9d6ab051..744ffe99f8 100644 --- a/docs/ibm-jre.html +++ b/docs/ibm-jre.html @@ -453,7 +453,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ibm-jre.json b/docs/ibm-jre.json index 065b61faa0..4e00156360 100644 --- a/docs/ibm-jre.json +++ b/docs/ibm-jre.json @@ -1 +1,18 @@ -{"key": "ibm-jre", "short_name": "IBM JRE License", "name": "IBM Java Runtime Environment License", "category": "Commercial", "owner": "IBM", "homepage_url": "http://www.ibm.com/developerworks/views/download.jsp?contentid=10947&filename=zip&method=ftp&locale=worldwide", "spdx_license_key": "LicenseRef-scancode-ibm-jre", "text_urls": ["http://www.ibm.com/developerworks/views/download.jsp?contentid=10947&filename=zip&method=ftp&locale=worldwide"], "other_urls": ["http://www.ibm.com/developerworks/views/download.jsp?contentid=10947&filename=zip&method=ftp&locale=worldwide"], "ignorable_urls": ["http://www.ibm.com/software/sla/"]} \ No newline at end of file +{ + "key": "ibm-jre", + "short_name": "IBM JRE License", + "name": "IBM Java Runtime Environment License", + "category": "Commercial", + "owner": "IBM", + "homepage_url": "http://www.ibm.com/developerworks/views/download.jsp?contentid=10947&filename=zip&method=ftp&locale=worldwide", + "spdx_license_key": "LicenseRef-scancode-ibm-jre", + "text_urls": [ + "http://www.ibm.com/developerworks/views/download.jsp?contentid=10947&filename=zip&method=ftp&locale=worldwide" + ], + "other_urls": [ + "http://www.ibm.com/developerworks/views/download.jsp?contentid=10947&filename=zip&method=ftp&locale=worldwide" + ], + "ignorable_urls": [ + "http://www.ibm.com/software/sla/" + ] +} \ No newline at end of file diff --git a/docs/ibm-nwsc.LICENSE b/docs/ibm-nwsc.LICENSE index b79798592e..b9e89874dc 100644 --- a/docs/ibm-nwsc.LICENSE +++ b/docs/ibm-nwsc.LICENSE @@ -1,3 +1,13 @@ +--- +key: ibm-nwsc +short_name: IBM Non-Warranted Sample Code License +name: IBM International License Agreement for Non-Warranted Sample Code +category: Permissive +owner: IBM +homepage_url: http://www.ibm.com/developerworks/data/zones/informix/library/techarticle/nair/0204nairlicense.html +spdx_license_key: LicenseRef-scancode-ibm-nwsc +--- + IBM International License Agreement for Non-Warranted Sample Code Part 1 - General Terms diff --git a/docs/ibm-nwsc.html b/docs/ibm-nwsc.html index 72a07afbc4..39d4f2c5ee 100644 --- a/docs/ibm-nwsc.html +++ b/docs/ibm-nwsc.html @@ -214,7 +214,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ibm-nwsc.json b/docs/ibm-nwsc.json index d5f952c572..1fea6ce623 100644 --- a/docs/ibm-nwsc.json +++ b/docs/ibm-nwsc.json @@ -1 +1,9 @@ -{"key": "ibm-nwsc", "short_name": "IBM Non-Warranted Sample Code License", "name": "IBM International License Agreement for Non-Warranted Sample Code", "category": "Permissive", "owner": "IBM", "homepage_url": "http://www.ibm.com/developerworks/data/zones/informix/library/techarticle/nair/0204nairlicense.html", "spdx_license_key": "LicenseRef-scancode-ibm-nwsc"} \ No newline at end of file +{ + "key": "ibm-nwsc", + "short_name": "IBM Non-Warranted Sample Code License", + "name": "IBM International License Agreement for Non-Warranted Sample Code", + "category": "Permissive", + "owner": "IBM", + "homepage_url": "http://www.ibm.com/developerworks/data/zones/informix/library/techarticle/nair/0204nairlicense.html", + "spdx_license_key": "LicenseRef-scancode-ibm-nwsc" +} \ No newline at end of file diff --git a/docs/ibm-pibs.LICENSE b/docs/ibm-pibs.LICENSE index 3a6398d72e..e6fe519336 100644 --- a/docs/ibm-pibs.LICENSE +++ b/docs/ibm-pibs.LICENSE @@ -1,3 +1,19 @@ +--- +key: ibm-pibs +short_name: IBM PowerPC Software +name: IBM PowerPC Initialization and Boot Software +category: Permissive +owner: IBM +homepage_url: http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d +spdx_license_key: IBM-pibs +text_urls: + - http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d +ignorable_copyrights: + - COPYRIGHT I B M CORPORATION +ignorable_holders: + - I B M CORPORATION +--- + This source code has been made available to you by IBM on an AS-IS basis. Anyone receiving this source is licensed under IBM copyrights to use it in any way he or she deems fit, including copying it, modifying @@ -14,4 +30,4 @@ include the IBM copyright notice, this paragraph, and the preceding two paragraphs in the transferred software. COPYRIGHT I B M CORPORATION -LICENSED MATERIAL - PROGRAM PROPERTY OF I B M +LICENSED MATERIAL - PROGRAM PROPERTY OF I B M \ No newline at end of file diff --git a/docs/ibm-pibs.html b/docs/ibm-pibs.html index 4b91fc9c17..3927b72995 100644 --- a/docs/ibm-pibs.html +++ b/docs/ibm-pibs.html @@ -158,8 +158,7 @@ paragraphs in the transferred software. COPYRIGHT I B M CORPORATION -LICENSED MATERIAL - PROGRAM PROPERTY OF I B M - +LICENSED MATERIAL - PROGRAM PROPERTY OF I B M
@@ -171,7 +170,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ibm-pibs.json b/docs/ibm-pibs.json index cc9664bb76..e09e3066f2 100644 --- a/docs/ibm-pibs.json +++ b/docs/ibm-pibs.json @@ -1 +1,18 @@ -{"key": "ibm-pibs", "short_name": "IBM PowerPC Software", "name": "IBM PowerPC Initialization and Boot Software", "category": "Permissive", "owner": "IBM", "homepage_url": "http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d", "spdx_license_key": "IBM-pibs", "text_urls": ["http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d"], "ignorable_copyrights": ["COPYRIGHT I B M CORPORATION"], "ignorable_holders": ["I B M CORPORATION"]} \ No newline at end of file +{ + "key": "ibm-pibs", + "short_name": "IBM PowerPC Software", + "name": "IBM PowerPC Initialization and Boot Software", + "category": "Permissive", + "owner": "IBM", + "homepage_url": "http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d", + "spdx_license_key": "IBM-pibs", + "text_urls": [ + "http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d" + ], + "ignorable_copyrights": [ + "COPYRIGHT I B M CORPORATION" + ], + "ignorable_holders": [ + "I B M CORPORATION" + ] +} \ No newline at end of file diff --git a/docs/ibm-sample.LICENSE b/docs/ibm-sample.LICENSE index c29243e4f3..5d53742cb0 100644 --- a/docs/ibm-sample.LICENSE +++ b/docs/ibm-sample.LICENSE @@ -1,3 +1,14 @@ +--- +key: ibm-sample +short_name: IBM Sample License +name: IBM Sample Program License +category: Permissive +owner: IBM +spdx_license_key: LicenseRef-scancode-ibm-sample +text_urls: + - http://www.java-forums.org/swt/9604-swt-2d-unicode-example.html +--- + The sample program(s) is/are owned by International Business Machines Corporation or one of its subsidiaries ("IBM") and is/are copyrighted and licensed, not sold. @@ -17,4 +28,4 @@ any damages you suffer as a result of using, modifying or distributing the sample program(s) or its/their derivatives. Each copy of any portion of this/these sample program(s) or any derivative -work, must include the above copyright notice and disclaimer of warranty. +work, must include the above copyright notice and disclaimer of warranty. \ No newline at end of file diff --git a/docs/ibm-sample.html b/docs/ibm-sample.html index 50c2151d43..7962ca1bd5 100644 --- a/docs/ibm-sample.html +++ b/docs/ibm-sample.html @@ -136,8 +136,7 @@ sample program(s) or its/their derivatives. Each copy of any portion of this/these sample program(s) or any derivative -work, must include the above copyright notice and disclaimer of warranty. - +work, must include the above copyright notice and disclaimer of warranty.
@@ -149,7 +148,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ibm-sample.json b/docs/ibm-sample.json index fe57e58ead..64bac773e0 100644 --- a/docs/ibm-sample.json +++ b/docs/ibm-sample.json @@ -1 +1,11 @@ -{"key": "ibm-sample", "short_name": "IBM Sample License", "name": "IBM Sample Program License", "category": "Permissive", "owner": "IBM", "spdx_license_key": "LicenseRef-scancode-ibm-sample", "text_urls": ["http://www.java-forums.org/swt/9604-swt-2d-unicode-example.html"]} \ No newline at end of file +{ + "key": "ibm-sample", + "short_name": "IBM Sample License", + "name": "IBM Sample Program License", + "category": "Permissive", + "owner": "IBM", + "spdx_license_key": "LicenseRef-scancode-ibm-sample", + "text_urls": [ + "http://www.java-forums.org/swt/9604-swt-2d-unicode-example.html" + ] +} \ No newline at end of file diff --git a/docs/ibmpl-1.0.LICENSE b/docs/ibmpl-1.0.LICENSE index 27e1f50ad6..c3599e00a9 100644 --- a/docs/ibmpl-1.0.LICENSE +++ b/docs/ibmpl-1.0.LICENSE @@ -1,3 +1,27 @@ +--- +key: ibmpl-1.0 +short_name: IPL 1.0 +name: IBM Public License +category: Copyleft Limited +owner: IBM +homepage_url: http://www.opensource.org/licenses/ibmpl.php +notes: | + Per SPDX.org, this license is OSI certified. This license was superseded by + CPL. +spdx_license_key: IPL-1.0 +osi_license_key: IPL-1.0 +text_urls: + - http://www.opensource.org/licenses/ibmpl.php +osi_url: http://www.opensource.org/licenses/ibmpl.php +other_urls: + - http://www.opensource.org/licenses/IPL-1.0 + - https://opensource.org/licenses/IPL-1.0 +ignorable_copyrights: + - Copyright (c) 1996, 1999 International Business Machines Corporation and others +ignorable_holders: + - International Business Machines Corporation and others +--- + IBM Public License Version 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS IBM PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. 1. DEFINITIONS diff --git a/docs/ibmpl-1.0.html b/docs/ibmpl-1.0.html index ba4638281c..ecd1f2c687 100644 --- a/docs/ibmpl-1.0.html +++ b/docs/ibmpl-1.0.html @@ -252,7 +252,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ibmpl-1.0.json b/docs/ibmpl-1.0.json index f6d48b57f3..09a02f3661 100644 --- a/docs/ibmpl-1.0.json +++ b/docs/ibmpl-1.0.json @@ -1 +1,25 @@ -{"key": "ibmpl-1.0", "short_name": "IPL 1.0", "name": "IBM Public License", "category": "Copyleft Limited", "owner": "IBM", "homepage_url": "http://www.opensource.org/licenses/ibmpl.php", "notes": "Per SPDX.org, this license is OSI certified. This license was superseded by\nCPL.\n", "spdx_license_key": "IPL-1.0", "osi_license_key": "IPL-1.0", "text_urls": ["http://www.opensource.org/licenses/ibmpl.php"], "osi_url": "http://www.opensource.org/licenses/ibmpl.php", "other_urls": ["http://www.opensource.org/licenses/IPL-1.0", "https://opensource.org/licenses/IPL-1.0"], "ignorable_copyrights": ["Copyright (c) 1996, 1999 International Business Machines Corporation and others"], "ignorable_holders": ["International Business Machines Corporation and others"]} \ No newline at end of file +{ + "key": "ibmpl-1.0", + "short_name": "IPL 1.0", + "name": "IBM Public License", + "category": "Copyleft Limited", + "owner": "IBM", + "homepage_url": "http://www.opensource.org/licenses/ibmpl.php", + "notes": "Per SPDX.org, this license is OSI certified. This license was superseded by\nCPL.\n", + "spdx_license_key": "IPL-1.0", + "osi_license_key": "IPL-1.0", + "text_urls": [ + "http://www.opensource.org/licenses/ibmpl.php" + ], + "osi_url": "http://www.opensource.org/licenses/ibmpl.php", + "other_urls": [ + "http://www.opensource.org/licenses/IPL-1.0", + "https://opensource.org/licenses/IPL-1.0" + ], + "ignorable_copyrights": [ + "Copyright (c) 1996, 1999 International Business Machines Corporation and others" + ], + "ignorable_holders": [ + "International Business Machines Corporation and others" + ] +} \ No newline at end of file diff --git a/docs/ibpp.LICENSE b/docs/ibpp.LICENSE index 6cae60b842..c2dd2165d2 100644 --- a/docs/ibpp.LICENSE +++ b/docs/ibpp.LICENSE @@ -1,3 +1,13 @@ +--- +key: ibpp +short_name: IBPP License +name: IBPP License +category: Permissive +owner: IBPP +homepage_url: https://raw.githubusercontent.com/mariuz/flamerobin/0.9.0/src/ibpp/license.txt +spdx_license_key: LicenseRef-scancode-ibpp +--- + IBPP License v1.1 ----------------- Permission is hereby granted, free of charge, to any person or organization diff --git a/docs/ibpp.html b/docs/ibpp.html index 2a6211be76..55d5a9df22 100644 --- a/docs/ibpp.html +++ b/docs/ibpp.html @@ -145,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ibpp.json b/docs/ibpp.json index c7ee0f8492..32450c4958 100644 --- a/docs/ibpp.json +++ b/docs/ibpp.json @@ -1 +1,9 @@ -{"key": "ibpp", "short_name": "IBPP License", "name": "IBPP License", "category": "Permissive", "owner": "IBPP", "homepage_url": "https://raw.githubusercontent.com/mariuz/flamerobin/0.9.0/src/ibpp/license.txt", "spdx_license_key": "LicenseRef-scancode-ibpp"} \ No newline at end of file +{ + "key": "ibpp", + "short_name": "IBPP License", + "name": "IBPP License", + "category": "Permissive", + "owner": "IBPP", + "homepage_url": "https://raw.githubusercontent.com/mariuz/flamerobin/0.9.0/src/ibpp/license.txt", + "spdx_license_key": "LicenseRef-scancode-ibpp" +} \ No newline at end of file diff --git a/docs/ic-1.0.LICENSE b/docs/ic-1.0.LICENSE index ee7b56e897..f767bd93d0 100644 --- a/docs/ic-1.0.LICENSE +++ b/docs/ic-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: ic-1.0 +short_name: IC 1.0 +name: Internet Computer Community Source License 1.0 +category: Free Restricted +owner: DFINITY +homepage_url: https://dfinity.org/licenses/IC-1.0/ +spdx_license_key: LicenseRef-scancode-ic-1.0 +text_urls: + - https://github.com/dfinity/ic/blob/master/licenses/IC-1.0.txt +ignorable_copyrights: + - copyright (c) 2021 DFINITY Foundation +ignorable_holders: + - DFINITY Foundation +--- + INTERNET COMPUTER COMMUNITY SOURCE LICENSE VERSION 1.0 License text copyright © 2021 DFINITY Foundation, All Rights Reserved. “Internet diff --git a/docs/ic-1.0.html b/docs/ic-1.0.html index 60fbae457a..cdf2c882c8 100644 --- a/docs/ic-1.0.html +++ b/docs/ic-1.0.html @@ -255,7 +255,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ic-1.0.json b/docs/ic-1.0.json index 6a84d655af..6f62cc375e 100644 --- a/docs/ic-1.0.json +++ b/docs/ic-1.0.json @@ -1 +1,18 @@ -{"key": "ic-1.0", "short_name": "IC 1.0", "name": "Internet Computer Community Source License 1.0", "category": "Free Restricted", "owner": "DFINITY", "homepage_url": "https://dfinity.org/licenses/IC-1.0/", "spdx_license_key": "LicenseRef-scancode-ic-1.0", "text_urls": ["https://github.com/dfinity/ic/blob/master/licenses/IC-1.0.txt"], "ignorable_copyrights": ["copyright (c) 2021 DFINITY Foundation"], "ignorable_holders": ["DFINITY Foundation"]} \ No newline at end of file +{ + "key": "ic-1.0", + "short_name": "IC 1.0", + "name": "Internet Computer Community Source License 1.0", + "category": "Free Restricted", + "owner": "DFINITY", + "homepage_url": "https://dfinity.org/licenses/IC-1.0/", + "spdx_license_key": "LicenseRef-scancode-ic-1.0", + "text_urls": [ + "https://github.com/dfinity/ic/blob/master/licenses/IC-1.0.txt" + ], + "ignorable_copyrights": [ + "copyright (c) 2021 DFINITY Foundation" + ], + "ignorable_holders": [ + "DFINITY Foundation" + ] +} \ No newline at end of file diff --git a/docs/ic-shared-1.0.LICENSE b/docs/ic-shared-1.0.LICENSE index 35d99a4e8b..1f1a28741d 100644 --- a/docs/ic-shared-1.0.LICENSE +++ b/docs/ic-shared-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: ic-shared-1.0 +short_name: IC Shared 1.0 +name: Internet Computer Shared Community Source License 1.0 +category: Free Restricted +owner: DFINITY +homepage_url: https://dfinity.org/licenses/IC-shared-1.0 +spdx_license_key: LicenseRef-scancode-ic-shared-1.0 +text_urls: + - https://github.com/dfinity/ic/blob/master/licenses/IC-shared-1.0.txt +ignorable_copyrights: + - copyright (c) 2021 DFINITY Foundation +ignorable_holders: + - DFINITY Foundation +--- + INTERNET COMPUTER SHARED COMMUNITY SOURCE LICENSE VERSION 1.0 License text copyright © 2021 DFINITY Foundation, All Rights Reserved. “Internet diff --git a/docs/ic-shared-1.0.html b/docs/ic-shared-1.0.html index a985256b6e..5b4e986379 100644 --- a/docs/ic-shared-1.0.html +++ b/docs/ic-shared-1.0.html @@ -261,7 +261,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ic-shared-1.0.json b/docs/ic-shared-1.0.json index ab063feb03..2a9b9672d7 100644 --- a/docs/ic-shared-1.0.json +++ b/docs/ic-shared-1.0.json @@ -1 +1,18 @@ -{"key": "ic-shared-1.0", "short_name": "IC Shared 1.0", "name": "Internet Computer Shared Community Source License 1.0", "category": "Free Restricted", "owner": "DFINITY", "homepage_url": "https://dfinity.org/licenses/IC-shared-1.0", "spdx_license_key": "LicenseRef-scancode-ic-shared-1.0", "text_urls": ["https://github.com/dfinity/ic/blob/master/licenses/IC-shared-1.0.txt"], "ignorable_copyrights": ["copyright (c) 2021 DFINITY Foundation"], "ignorable_holders": ["DFINITY Foundation"]} \ No newline at end of file +{ + "key": "ic-shared-1.0", + "short_name": "IC Shared 1.0", + "name": "Internet Computer Shared Community Source License 1.0", + "category": "Free Restricted", + "owner": "DFINITY", + "homepage_url": "https://dfinity.org/licenses/IC-shared-1.0", + "spdx_license_key": "LicenseRef-scancode-ic-shared-1.0", + "text_urls": [ + "https://github.com/dfinity/ic/blob/master/licenses/IC-shared-1.0.txt" + ], + "ignorable_copyrights": [ + "copyright (c) 2021 DFINITY Foundation" + ], + "ignorable_holders": [ + "DFINITY Foundation" + ] +} \ No newline at end of file diff --git a/docs/icann-public.LICENSE b/docs/icann-public.LICENSE index f1728a6f35..5ddd119617 100644 --- a/docs/icann-public.LICENSE +++ b/docs/icann-public.LICENSE @@ -1,3 +1,13 @@ +--- +key: icann-public +short_name: ICANN-Public +name: ICANN-Public +category: Public Domain +owner: ICANN +homepage_url: https://metadata.ftp-master.debian.org/changelogs//main/d/dns-root-data/dns-root-data_2019052802_copyright +spdx_license_key: LicenseRef-scancode-icann-public +--- + ICANN asserts no property rights to any of the IANA registries or public keys we maintain. You are free to redistribute the IANA registry files, the root zone file and the root public keys. diff --git a/docs/icann-public.html b/docs/icann-public.html index 11a7c42923..cb963821bc 100644 --- a/docs/icann-public.html +++ b/docs/icann-public.html @@ -132,7 +132,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/icann-public.json b/docs/icann-public.json index b004eb24f0..f250a17bad 100644 --- a/docs/icann-public.json +++ b/docs/icann-public.json @@ -1 +1,9 @@ -{"key": "icann-public", "short_name": "ICANN-Public", "name": "ICANN-Public", "category": "Public Domain", "owner": "ICANN", "homepage_url": "https://metadata.ftp-master.debian.org/changelogs//main/d/dns-root-data/dns-root-data_2019052802_copyright", "spdx_license_key": "LicenseRef-scancode-icann-public"} \ No newline at end of file +{ + "key": "icann-public", + "short_name": "ICANN-Public", + "name": "ICANN-Public", + "category": "Public Domain", + "owner": "ICANN", + "homepage_url": "https://metadata.ftp-master.debian.org/changelogs//main/d/dns-root-data/dns-root-data_2019052802_copyright", + "spdx_license_key": "LicenseRef-scancode-icann-public" +} \ No newline at end of file diff --git a/docs/ice-exception-2.0.LICENSE b/docs/ice-exception-2.0.LICENSE index a32348c506..93b6edffd0 100644 --- a/docs/ice-exception-2.0.LICENSE +++ b/docs/ice-exception-2.0.LICENSE @@ -1,3 +1,57 @@ +--- +key: ice-exception-2.0 +short_name: Ice exception to GPL 2.0 +name: Ice exception to GPL 2.0 +category: Copyleft Limited +owner: ZeroC +homepage_url: https://github.com/zeroc-ice/ice/blob/master/ICE_LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-ice-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This copy of Ice is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + Ice 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 version + 2 along with this program; if not, see http://www.gnu.org/licenses. + Linking Ice statically or dynamically with other software (such as a + library, module or application) is making a combined work based on Ice. + Thus, the terms and conditions of the GNU General Public License version + 2 cover this combined work. + If such software can only be used together with Ice, then not only the + combined work but the software itself is a work derived from Ice and as + such shall be licensed under the terms of the GNU General Public License + version 2. This includes the situation where Ice is only being used + through an abstraction layer. + As a special exception to the above, ZeroC grants to the contributors for + the following projects the permission to license their Ice-based software + under the terms of the GNU Lesser General Public License (LGPL) version + 2.1 or of the BSD license: + - Orca Robotics (http://orca-robotics.sourceforge.net) + - Mumble (http://mumble.sourceforge.net) + This exception does not extend to the parts of Ice used by these + projects, or to any other derived work: as a whole, any work based on Ice + shall be licensed under the terms and conditions of the GNU General + Public License version 2. + You may also combine Ice with any software not derived from Ice, provided + the license of such software is compatible with the GNU General Public + License version 2. In addition, as a special exception, ZeroC grants you + permission to combine Ice with: + - the OpenSSL library, or with a modified version of the OpenSSL library + that uses the same license as OpenSSL + - any library not derived from Ice and licensed under the terms of + the Apache License, version 2.0 + (http://www.apache.org/licenses/LICENSE-2.0.html) + If you modify this copy of Ice, you may extend any of the exceptions + provided above to your version of Ice, but you are not obligated to + do so. +--- + As a special exception to the above, ZeroC grants to the contributors for the following projects the permission to license their Ice-based software under the terms of the GNU Lesser General Public License (LGPL) version diff --git a/docs/ice-exception-2.0.html b/docs/ice-exception-2.0.html index 00abea0e62..8af01f3bc2 100644 --- a/docs/ice-exception-2.0.html +++ b/docs/ice-exception-2.0.html @@ -193,7 +193,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ice-exception-2.0.json b/docs/ice-exception-2.0.json index 70937626b8..4a5c0c80aa 100644 --- a/docs/ice-exception-2.0.json +++ b/docs/ice-exception-2.0.json @@ -1 +1,14 @@ -{"key": "ice-exception-2.0", "short_name": "Ice exception to GPL 2.0", "name": "Ice exception to GPL 2.0", "category": "Copyleft Limited", "owner": "ZeroC", "homepage_url": "https://github.com/zeroc-ice/ice/blob/master/ICE_LICENSE", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-ice-exception-2.0", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "This copy of Ice is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License version 2 as\npublished by the Free Software Foundation.\nIce is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\nFOR A PARTICULAR PURPOSE. See the GNU General Public License for more\ndetails.\nYou should have received a copy of the GNU General Public License version\n2 along with this program; if not, see http://www.gnu.org/licenses.\nLinking Ice statically or dynamically with other software (such as a\nlibrary, module or application) is making a combined work based on Ice.\nThus, the terms and conditions of the GNU General Public License version\n2 cover this combined work.\nIf such software can only be used together with Ice, then not only the\ncombined work but the software itself is a work derived from Ice and as\nsuch shall be licensed under the terms of the GNU General Public License\nversion 2. This includes the situation where Ice is only being used\nthrough an abstraction layer.\nAs a special exception to the above, ZeroC grants to the contributors for\nthe following projects the permission to license their Ice-based software\nunder the terms of the GNU Lesser General Public License (LGPL) version\n2.1 or of the BSD license:\n- Orca Robotics (http://orca-robotics.sourceforge.net)\n- Mumble (http://mumble.sourceforge.net)\nThis exception does not extend to the parts of Ice used by these\nprojects, or to any other derived work: as a whole, any work based on Ice\nshall be licensed under the terms and conditions of the GNU General\nPublic License version 2.\nYou may also combine Ice with any software not derived from Ice, provided\nthe license of such software is compatible with the GNU General Public\nLicense version 2. In addition, as a special exception, ZeroC grants you\npermission to combine Ice with:\n- the OpenSSL library, or with a modified version of the OpenSSL library\nthat uses the same license as OpenSSL\n- any library not derived from Ice and licensed under the terms of\nthe Apache License, version 2.0\n(http://www.apache.org/licenses/LICENSE-2.0.html)\nIf you modify this copy of Ice, you may extend any of the exceptions\nprovided above to your version of Ice, but you are not obligated to\ndo so.\n"} \ No newline at end of file +{ + "key": "ice-exception-2.0", + "short_name": "Ice exception to GPL 2.0", + "name": "Ice exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "ZeroC", + "homepage_url": "https://github.com/zeroc-ice/ice/blob/master/ICE_LICENSE", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-ice-exception-2.0", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "This copy of Ice is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License version 2 as\npublished by the Free Software Foundation.\nIce is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\nFOR A PARTICULAR PURPOSE. See the GNU General Public License for more\ndetails.\nYou should have received a copy of the GNU General Public License version\n2 along with this program; if not, see http://www.gnu.org/licenses.\nLinking Ice statically or dynamically with other software (such as a\nlibrary, module or application) is making a combined work based on Ice.\nThus, the terms and conditions of the GNU General Public License version\n2 cover this combined work.\nIf such software can only be used together with Ice, then not only the\ncombined work but the software itself is a work derived from Ice and as\nsuch shall be licensed under the terms of the GNU General Public License\nversion 2. This includes the situation where Ice is only being used\nthrough an abstraction layer.\nAs a special exception to the above, ZeroC grants to the contributors for\nthe following projects the permission to license their Ice-based software\nunder the terms of the GNU Lesser General Public License (LGPL) version\n2.1 or of the BSD license:\n- Orca Robotics (http://orca-robotics.sourceforge.net)\n- Mumble (http://mumble.sourceforge.net)\nThis exception does not extend to the parts of Ice used by these\nprojects, or to any other derived work: as a whole, any work based on Ice\nshall be licensed under the terms and conditions of the GNU General\nPublic License version 2.\nYou may also combine Ice with any software not derived from Ice, provided\nthe license of such software is compatible with the GNU General Public\nLicense version 2. In addition, as a special exception, ZeroC grants you\npermission to combine Ice with:\n- the OpenSSL library, or with a modified version of the OpenSSL library\nthat uses the same license as OpenSSL\n- any library not derived from Ice and licensed under the terms of\nthe Apache License, version 2.0\n(http://www.apache.org/licenses/LICENSE-2.0.html)\nIf you modify this copy of Ice, you may extend any of the exceptions\nprovided above to your version of Ice, but you are not obligated to\ndo so.\n" +} \ No newline at end of file diff --git a/docs/icot-free.LICENSE b/docs/icot-free.LICENSE index 19fdb10728..cc5a8096ee 100644 --- a/docs/icot-free.LICENSE +++ b/docs/icot-free.LICENSE @@ -1,3 +1,13 @@ +--- +key: icot-free +short_name: ICOT Free Software +name: ICOT Free Software +category: Permissive +owner: ICOT +homepage_url: https://www.ueda.info.waseda.ac.jp/~ajiro/ftp/use-of-software-E +spdx_license_key: LicenseRef-scancode-icot-free +--- + TERMS AND CONDITIONS FOR USE OF "ICOT FREE SOFTWARE" @@ -101,4 +111,4 @@ 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. +above as far as the program is concerned. \ No newline at end of file diff --git a/docs/icot-free.html b/docs/icot-free.html index f5cd84ea17..720aabf131 100644 --- a/docs/icot-free.html +++ b/docs/icot-free.html @@ -218,8 +218,7 @@ 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. - +above as far as the program is concerned.
@@ -231,7 +230,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/icot-free.json b/docs/icot-free.json index da6289aff2..1c6c833c6a 100644 --- a/docs/icot-free.json +++ b/docs/icot-free.json @@ -1 +1,9 @@ -{"key": "icot-free", "short_name": "ICOT Free Software", "name": "ICOT Free Software", "category": "Permissive", "owner": "ICOT", "homepage_url": "https://www.ueda.info.waseda.ac.jp/~ajiro/ftp/use-of-software-E", "spdx_license_key": "LicenseRef-scancode-icot-free"} \ No newline at end of file +{ + "key": "icot-free", + "short_name": "ICOT Free Software", + "name": "ICOT Free Software", + "category": "Permissive", + "owner": "ICOT", + "homepage_url": "https://www.ueda.info.waseda.ac.jp/~ajiro/ftp/use-of-software-E", + "spdx_license_key": "LicenseRef-scancode-icot-free" +} \ No newline at end of file diff --git a/docs/idt-notice.LICENSE b/docs/idt-notice.LICENSE index 841a3e453c..332ad7ff5a 100644 --- a/docs/idt-notice.LICENSE +++ b/docs/idt-notice.LICENSE @@ -1,3 +1,12 @@ +--- +key: idt-notice +short_name: IDT License Notice +name: IDT License Notice +category: Permissive +owner: Wind River Systems +spdx_license_key: LicenseRef-scancode-idt-notice +--- + This source code has been made available to you by IDT on an AS-IS basis. Anyone receiving this source is licensed under IDT copyrights to use it in any way he or she deems fit, including copying it, diff --git a/docs/idt-notice.html b/docs/idt-notice.html index 08553f298f..f24b7520ce 100644 --- a/docs/idt-notice.html +++ b/docs/idt-notice.html @@ -133,7 +133,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/idt-notice.json b/docs/idt-notice.json index e2bb590e6e..0ad19f26b3 100644 --- a/docs/idt-notice.json +++ b/docs/idt-notice.json @@ -1 +1,8 @@ -{"key": "idt-notice", "short_name": "IDT License Notice", "name": "IDT License Notice", "category": "Permissive", "owner": "Wind River Systems", "spdx_license_key": "LicenseRef-scancode-idt-notice"} \ No newline at end of file +{ + "key": "idt-notice", + "short_name": "IDT License Notice", + "name": "IDT License Notice", + "category": "Permissive", + "owner": "Wind River Systems", + "spdx_license_key": "LicenseRef-scancode-idt-notice" +} \ No newline at end of file diff --git a/docs/ietf-trust.LICENSE b/docs/ietf-trust.LICENSE index 8fee18eda5..10cd3f0a2e 100644 --- a/docs/ietf-trust.LICENSE +++ b/docs/ietf-trust.LICENSE @@ -1,3 +1,38 @@ +--- +key: ietf-trust +short_name: IETF Trust License +name: IETF Trust License +category: Permissive +owner: IETF - Internet Engineering Task Force +homepage_url: http://trustee.ietf.org/docs/IETF-Trust-License-Policy.pdf +spdx_license_key: LicenseRef-scancode-ietf-trust +text_urls: + - http://trustee.ietf.org/docs/IETF-Trust-License-Policy.pdf +faq_url: http://trustee.ietf.org/docs/IETF-Trust-License-Policy.pdf +other_urls: + - http://opensource.org/licenses/bsd-license.php + - http://trustee.ietf.org/license-info/ + - http://trustee.ietf.org/policyandprocedures.html +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) IETF Trust + - Copyright (c) IETF Trust and the persons identified as the document authors +ignorable_holders: + - IETF Trust + - IETF Trust and the persons identified as the document authors +ignorable_authors: + - IETF Trust + - the IETF Trust +ignorable_urls: + - http://opensource.org/licenses/bsd-license.php + - http://trustee.ietf.org/license-info + - http://trustee.ietf.org/policyandprocedures.html + - http://www.ietf.org/ipr +ignorable_emails: + - ietf-ipr@ietf.org + - trustees@ietf.org +--- + IETF TRUST Legal Provisions Relating to IETF Documents Effective Date: December 28, 2009 diff --git a/docs/ietf-trust.html b/docs/ietf-trust.html index 7eae5e40d3..d730dd3133 100644 --- a/docs/ietf-trust.html +++ b/docs/ietf-trust.html @@ -499,7 +499,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ietf-trust.json b/docs/ietf-trust.json index 9bbcb2e403..a135a7d42a 100644 --- a/docs/ietf-trust.json +++ b/docs/ietf-trust.json @@ -1 +1,41 @@ -{"key": "ietf-trust", "short_name": "IETF Trust License", "name": "IETF Trust License", "category": "Permissive", "owner": "IETF - Internet Engineering Task Force", "homepage_url": "http://trustee.ietf.org/docs/IETF-Trust-License-Policy.pdf", "spdx_license_key": "LicenseRef-scancode-ietf-trust", "text_urls": ["http://trustee.ietf.org/docs/IETF-Trust-License-Policy.pdf"], "faq_url": "http://trustee.ietf.org/docs/IETF-Trust-License-Policy.pdf", "other_urls": ["http://opensource.org/licenses/bsd-license.php", "http://trustee.ietf.org/license-info/", "http://trustee.ietf.org/policyandprocedures.html"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright (c) IETF Trust", "Copyright (c) IETF Trust and the persons identified as the document authors"], "ignorable_holders": ["IETF Trust", "IETF Trust and the persons identified as the document authors"], "ignorable_authors": ["IETF Trust", "the IETF Trust"], "ignorable_urls": ["http://opensource.org/licenses/bsd-license.php", "http://trustee.ietf.org/license-info", "http://trustee.ietf.org/policyandprocedures.html", "http://www.ietf.org/ipr"], "ignorable_emails": ["ietf-ipr@ietf.org", "trustees@ietf.org"]} \ No newline at end of file +{ + "key": "ietf-trust", + "short_name": "IETF Trust License", + "name": "IETF Trust License", + "category": "Permissive", + "owner": "IETF - Internet Engineering Task Force", + "homepage_url": "http://trustee.ietf.org/docs/IETF-Trust-License-Policy.pdf", + "spdx_license_key": "LicenseRef-scancode-ietf-trust", + "text_urls": [ + "http://trustee.ietf.org/docs/IETF-Trust-License-Policy.pdf" + ], + "faq_url": "http://trustee.ietf.org/docs/IETF-Trust-License-Policy.pdf", + "other_urls": [ + "http://opensource.org/licenses/bsd-license.php", + "http://trustee.ietf.org/license-info/", + "http://trustee.ietf.org/policyandprocedures.html" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright (c) IETF Trust", + "Copyright (c) IETF Trust and the persons identified as the document authors" + ], + "ignorable_holders": [ + "IETF Trust", + "IETF Trust and the persons identified as the document authors" + ], + "ignorable_authors": [ + "IETF Trust", + "the IETF Trust" + ], + "ignorable_urls": [ + "http://opensource.org/licenses/bsd-license.php", + "http://trustee.ietf.org/license-info", + "http://trustee.ietf.org/policyandprocedures.html", + "http://www.ietf.org/ipr" + ], + "ignorable_emails": [ + "ietf-ipr@ietf.org", + "trustees@ietf.org" + ] +} \ No newline at end of file diff --git a/docs/ietf.LICENSE b/docs/ietf.LICENSE index 162a2f1890..0d801b0d32 100644 --- a/docs/ietf.LICENSE +++ b/docs/ietf.LICENSE @@ -1,3 +1,16 @@ +--- +key: ietf +short_name: IETF License +name: Internet Engineering Task Force License +category: Permissive +owner: IETF - Internet Engineering Task Force +homepage_url: http://www.ietf.org/ +spdx_license_key: LicenseRef-scancode-ietf +faq_url: http://www.ietf.org/contact-the-ietf.html +other_urls: + - http://www.ietf.org/ +--- + This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published diff --git a/docs/ietf.html b/docs/ietf.html index f9b0a805db..915d4da185 100644 --- a/docs/ietf.html +++ b/docs/ietf.html @@ -165,7 +165,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ietf.json b/docs/ietf.json index 6247126856..e712b47060 100644 --- a/docs/ietf.json +++ b/docs/ietf.json @@ -1 +1,13 @@ -{"key": "ietf", "short_name": "IETF License", "name": "Internet Engineering Task Force License", "category": "Permissive", "owner": "IETF - Internet Engineering Task Force", "homepage_url": "http://www.ietf.org/", "spdx_license_key": "LicenseRef-scancode-ietf", "faq_url": "http://www.ietf.org/contact-the-ietf.html", "other_urls": ["http://www.ietf.org/"]} \ No newline at end of file +{ + "key": "ietf", + "short_name": "IETF License", + "name": "Internet Engineering Task Force License", + "category": "Permissive", + "owner": "IETF - Internet Engineering Task Force", + "homepage_url": "http://www.ietf.org/", + "spdx_license_key": "LicenseRef-scancode-ietf", + "faq_url": "http://www.ietf.org/contact-the-ietf.html", + "other_urls": [ + "http://www.ietf.org/" + ] +} \ No newline at end of file diff --git a/docs/ijg.LICENSE b/docs/ijg.LICENSE index 266e4854be..cbbc8a313b 100644 --- a/docs/ijg.LICENSE +++ b/docs/ijg.LICENSE @@ -1,3 +1,30 @@ +--- +key: ijg +short_name: JPEG License +name: Independent JPEG Group License +category: Permissive +owner: IJG - Independent JPEG Group +homepage_url: http://fedoraproject.org/wiki/Licensing/IJG +spdx_license_key: IJG +text_urls: + - http://fedoraproject.org/wiki/Licensing/IJG +other_urls: + - http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2 + - http://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses +ignorable_copyrights: + - Copyright property of CompuServe Incorporated + - copyright (c) 1991-1998, Thomas G. Lane + - copyright by M.I.T. + - copyright by the Free Software Foundation + - copyright holder, Aladdin Enterprises of Menlo Park +ignorable_holders: + - Aladdin Enterprises of Menlo Park + - CompuServe Incorporated + - M.I.T. + - Thomas G. Lane + - the Free Software Foundation +--- + LEGAL ISSUES ============ diff --git a/docs/ijg.html b/docs/ijg.html index 9db2bdd4e7..eb17eb3906 100644 --- a/docs/ijg.html +++ b/docs/ijg.html @@ -247,7 +247,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ijg.json b/docs/ijg.json index 9543806075..21d0c1e4ad 100644 --- a/docs/ijg.json +++ b/docs/ijg.json @@ -1 +1,30 @@ -{"key": "ijg", "short_name": "JPEG License", "name": "Independent JPEG Group License", "category": "Permissive", "owner": "IJG - Independent JPEG Group", "homepage_url": "http://fedoraproject.org/wiki/Licensing/IJG", "spdx_license_key": "IJG", "text_urls": ["http://fedoraproject.org/wiki/Licensing/IJG"], "other_urls": ["http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2", "http://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses"], "ignorable_copyrights": ["Copyright property of CompuServe Incorporated", "copyright (c) 1991-1998, Thomas G. Lane", "copyright by M.I.T.", "copyright by the Free Software Foundation", "copyright holder, Aladdin Enterprises of Menlo Park"], "ignorable_holders": ["Aladdin Enterprises of Menlo Park", "CompuServe Incorporated", "M.I.T.", "Thomas G. Lane", "the Free Software Foundation"]} \ No newline at end of file +{ + "key": "ijg", + "short_name": "JPEG License", + "name": "Independent JPEG Group License", + "category": "Permissive", + "owner": "IJG - Independent JPEG Group", + "homepage_url": "http://fedoraproject.org/wiki/Licensing/IJG", + "spdx_license_key": "IJG", + "text_urls": [ + "http://fedoraproject.org/wiki/Licensing/IJG" + ], + "other_urls": [ + "http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2", + "http://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses" + ], + "ignorable_copyrights": [ + "Copyright property of CompuServe Incorporated", + "copyright (c) 1991-1998, Thomas G. Lane", + "copyright by M.I.T.", + "copyright by the Free Software Foundation", + "copyright holder, Aladdin Enterprises of Menlo Park" + ], + "ignorable_holders": [ + "Aladdin Enterprises of Menlo Park", + "CompuServe Incorporated", + "M.I.T.", + "Thomas G. Lane", + "the Free Software Foundation" + ] +} \ No newline at end of file diff --git a/docs/ilmid.LICENSE b/docs/ilmid.LICENSE index f57c0c34ec..7541b10ce1 100644 --- a/docs/ilmid.LICENSE +++ b/docs/ilmid.LICENSE @@ -1,3 +1,15 @@ +--- +key: ilmid +short_name: ilmid License +name: ilmid License +category: Permissive +owner: University of Kansas +spdx_license_key: LicenseRef-scancode-ilmid +other_urls: + - 'http://linuxcommand.org/man_pages/ilmid8.html ' + - http://www.freebsd.org/cgi/man.cgi?query=ilmid&sektion=8&apropos=0&manpath=FreeBSD+5.4-RELEASE +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this diff --git a/docs/ilmid.html b/docs/ilmid.html index ef6fc23268..17f330191d 100644 --- a/docs/ilmid.html +++ b/docs/ilmid.html @@ -142,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ilmid.json b/docs/ilmid.json index f8f254e279..79f541cf62 100644 --- a/docs/ilmid.json +++ b/docs/ilmid.json @@ -1 +1,12 @@ -{"key": "ilmid", "short_name": "ilmid License", "name": "ilmid License", "category": "Permissive", "owner": "University of Kansas", "spdx_license_key": "LicenseRef-scancode-ilmid", "other_urls": ["http://linuxcommand.org/man_pages/ilmid8.html ", "http://www.freebsd.org/cgi/man.cgi?query=ilmid&sektion=8&apropos=0&manpath=FreeBSD+5.4-RELEASE"]} \ No newline at end of file +{ + "key": "ilmid", + "short_name": "ilmid License", + "name": "ilmid License", + "category": "Permissive", + "owner": "University of Kansas", + "spdx_license_key": "LicenseRef-scancode-ilmid", + "other_urls": [ + "http://linuxcommand.org/man_pages/ilmid8.html ", + "http://www.freebsd.org/cgi/man.cgi?query=ilmid&sektion=8&apropos=0&manpath=FreeBSD+5.4-RELEASE" + ] +} \ No newline at end of file diff --git a/docs/imagemagick.LICENSE b/docs/imagemagick.LICENSE index cec68cc337..ef802dde15 100644 --- a/docs/imagemagick.LICENSE +++ b/docs/imagemagick.LICENSE @@ -1,3 +1,23 @@ +--- +key: imagemagick +short_name: ImageMagick License +name: ImageMagick License +category: Permissive +owner: ImageMagick +homepage_url: http://www.imagemagick.org/script/license.php +notes: this is very close to the Apache 2.0 licecnse that was used as a base. +spdx_license_key: ImageMagick +text_urls: + - http://www.imagemagick.org/script/license.php +faq_url: http://www.imagemagick.org/script/export.php +ignorable_copyrights: + - Copyright 1999-2009 ImageMagick Studio LLC +ignorable_holders: + - ImageMagick Studio LLC +ignorable_urls: + - http://www.imagemagick.org/www/license.html +--- + ImageMagick License The legally binding and authoritative terms and conditions for use, reproduction, and distribution of ImageMagick follow: diff --git a/docs/imagemagick.html b/docs/imagemagick.html index 26f9da7365..36c2a3ccb6 100644 --- a/docs/imagemagick.html +++ b/docs/imagemagick.html @@ -222,7 +222,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/imagemagick.json b/docs/imagemagick.json index 4f1600ad7c..17dcb4963a 100644 --- a/docs/imagemagick.json +++ b/docs/imagemagick.json @@ -1 +1,23 @@ -{"key": "imagemagick", "short_name": "ImageMagick License", "name": "ImageMagick License", "category": "Permissive", "owner": "ImageMagick", "homepage_url": "http://www.imagemagick.org/script/license.php", "notes": "this is very close to the Apache 2.0 licecnse that was used as a base.", "spdx_license_key": "ImageMagick", "text_urls": ["http://www.imagemagick.org/script/license.php"], "faq_url": "http://www.imagemagick.org/script/export.php", "ignorable_copyrights": ["Copyright 1999-2009 ImageMagick Studio LLC"], "ignorable_holders": ["ImageMagick Studio LLC"], "ignorable_urls": ["http://www.imagemagick.org/www/license.html"]} \ No newline at end of file +{ + "key": "imagemagick", + "short_name": "ImageMagick License", + "name": "ImageMagick License", + "category": "Permissive", + "owner": "ImageMagick", + "homepage_url": "http://www.imagemagick.org/script/license.php", + "notes": "this is very close to the Apache 2.0 licecnse that was used as a base.", + "spdx_license_key": "ImageMagick", + "text_urls": [ + "http://www.imagemagick.org/script/license.php" + ], + "faq_url": "http://www.imagemagick.org/script/export.php", + "ignorable_copyrights": [ + "Copyright 1999-2009 ImageMagick Studio LLC" + ], + "ignorable_holders": [ + "ImageMagick Studio LLC" + ], + "ignorable_urls": [ + "http://www.imagemagick.org/www/license.html" + ] +} \ No newline at end of file diff --git a/docs/imagen.LICENSE b/docs/imagen.LICENSE index 577cf191eb..8d3f7e045c 100644 --- a/docs/imagen.LICENSE +++ b/docs/imagen.LICENSE @@ -1,3 +1,12 @@ +--- +key: imagen +short_name: IMAGEN License +name: IMAGEN License +category: Free Restricted +owner: IMAGEN +spdx_license_key: LicenseRef-scancode-imagen +--- + This code may be duplicated in whole or in part provided that [1] there is no commercial gain involved in the duplication, and [2] that this copyright notice is preserved on all copies. diff --git a/docs/imagen.html b/docs/imagen.html index 8adc5a2fd2..844bf6c5ea 100644 --- a/docs/imagen.html +++ b/docs/imagen.html @@ -123,7 +123,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/imagen.json b/docs/imagen.json index c1c48dd557..e2b875da66 100644 --- a/docs/imagen.json +++ b/docs/imagen.json @@ -1 +1,8 @@ -{"key": "imagen", "short_name": "IMAGEN License", "name": "IMAGEN License", "category": "Free Restricted", "owner": "IMAGEN", "spdx_license_key": "LicenseRef-scancode-imagen"} \ No newline at end of file +{ + "key": "imagen", + "short_name": "IMAGEN License", + "name": "IMAGEN License", + "category": "Free Restricted", + "owner": "IMAGEN", + "spdx_license_key": "LicenseRef-scancode-imagen" +} \ No newline at end of file diff --git a/docs/imlib2.LICENSE b/docs/imlib2.LICENSE index 2ed7b4e320..69ca16d88c 100644 --- a/docs/imlib2.LICENSE +++ b/docs/imlib2.LICENSE @@ -1,3 +1,17 @@ +--- +key: imlib2 +short_name: Imlib2 License +name: Imlib2 License +category: Copyleft Limited +owner: Enlightenment +homepage_url: http://trac.enlightenment.org/e/browser/trunk/imlib2/COPYING +spdx_license_key: Imlib2 +text_urls: + - https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#enna +other_urls: + - https://git.enlightenment.org/legacy/imlib2.git/tree/COPYING +--- + Imlib2 License Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/docs/imlib2.html b/docs/imlib2.html index 9201748806..4f67603def 100644 --- a/docs/imlib2.html +++ b/docs/imlib2.html @@ -177,7 +177,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/imlib2.json b/docs/imlib2.json index 3282bab2af..b28fef87e1 100644 --- a/docs/imlib2.json +++ b/docs/imlib2.json @@ -1 +1,15 @@ -{"key": "imlib2", "short_name": "Imlib2 License", "name": "Imlib2 License", "category": "Copyleft Limited", "owner": "Enlightenment", "homepage_url": "http://trac.enlightenment.org/e/browser/trunk/imlib2/COPYING", "spdx_license_key": "Imlib2", "text_urls": ["https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#enna"], "other_urls": ["https://git.enlightenment.org/legacy/imlib2.git/tree/COPYING"]} \ No newline at end of file +{ + "key": "imlib2", + "short_name": "Imlib2 License", + "name": "Imlib2 License", + "category": "Copyleft Limited", + "owner": "Enlightenment", + "homepage_url": "http://trac.enlightenment.org/e/browser/trunk/imlib2/COPYING", + "spdx_license_key": "Imlib2", + "text_urls": [ + "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#enna" + ], + "other_urls": [ + "https://git.enlightenment.org/legacy/imlib2.git/tree/COPYING" + ] +} \ No newline at end of file diff --git a/docs/independent-module-linking-exception.LICENSE b/docs/independent-module-linking-exception.LICENSE index 0f7eff2a8d..9af18dca5f 100644 --- a/docs/independent-module-linking-exception.LICENSE +++ b/docs/independent-module-linking-exception.LICENSE @@ -1,3 +1,16 @@ +--- +key: independent-module-linking-exception +short_name: Independent Module Linking Exception +name: Independent Module Linking Exception +category: Copyleft Limited +owner: Unspecified +notes: this is typically seen with the LGPL but is not L/GPL specific +is_exception: yes +spdx_license_key: LicenseRef-scancode-indie-module-linking-exception +other_spdx_license_keys: + - LicenseRef-scancode-independent-module-linking-exception +--- + As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to @@ -7,4 +20,4 @@ conditions of the license of that module. An independent module is a module which is neither derived from nor based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception -statement from your version. +statement from your version. \ No newline at end of file diff --git a/docs/independent-module-linking-exception.html b/docs/independent-module-linking-exception.html index ade65d93e0..89071e5699 100644 --- a/docs/independent-module-linking-exception.html +++ b/docs/independent-module-linking-exception.html @@ -140,8 +140,7 @@ which is neither derived from nor based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception -statement from your version. - +statement from your version.
@@ -153,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/independent-module-linking-exception.json b/docs/independent-module-linking-exception.json index 34c3634ba0..96d22dd584 100644 --- a/docs/independent-module-linking-exception.json +++ b/docs/independent-module-linking-exception.json @@ -1 +1,13 @@ -{"key": "independent-module-linking-exception", "short_name": "Independent Module Linking Exception", "name": "Independent Module Linking Exception", "category": "Copyleft Limited", "owner": "Unspecified", "notes": "this is typically seen with the LGPL but is not L/GPL specific", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-indie-module-linking-exception", "other_spdx_license_keys": ["LicenseRef-scancode-independent-module-linking-exception"]} \ No newline at end of file +{ + "key": "independent-module-linking-exception", + "short_name": "Independent Module Linking Exception", + "name": "Independent Module Linking Exception", + "category": "Copyleft Limited", + "owner": "Unspecified", + "notes": "this is typically seen with the LGPL but is not L/GPL specific", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-indie-module-linking-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-independent-module-linking-exception" + ] +} \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 80e283a6f0..958de38f8b 100644 --- a/docs/index.html +++ b/docs/index.html @@ -549,6 +549,30 @@ + + + adcolony-tos-2022 + + active + + AdColony TOS for Publishers 2022 + + + + LicenseRef-scancode-adcolony-tos-2022 + + + + + Proprietary Free + + + yml - + json - + text + + + addthis-mobile-sdk-1.0 @@ -3289,6 +3313,54 @@ + + + aswf-digital-assets-1.0 + + active + + ASWF Digital Assets License v1.0 + + + + LicenseRef-scancode-aswf-digital-assets-1.0 + + + + + Free Restricted + + + yml - + json - + text + + + + + + aswf-digital-assets-1.1 + + active + + ASWF Digital Assets License v1.1 + + + + LicenseRef-scancode-aswf-digital-assets-1.1 + + + + + Free Restricted + + + yml - + json - + text + + + ati-eula @@ -3601,6 +3673,30 @@ + + + autodesk-3d-sft-3.0 + + active + + Autodesk 3D Studio File Toolkit for Release 3 + + + + LicenseRef-scancode-autodesk-3d-sft-3.0 + + + + + Proprietary Free + + + yml - + json - + text + + + autoit-eula @@ -3937,6 +4033,30 @@ + + + beri-hw-sw-1.0 + + active + + BERI Hardware-Software License v1.0 + + + + LicenseRef-scancode-beri-hw-sw-1.0 + + + + + Permissive + + + yml - + json - + text + + + bigdigits @@ -3985,6 +4105,30 @@ + + + bigscience-rail-1.0 + + active + + BigScience RAIL License v1.0 + + + + LicenseRef-scancode-bigscience-rail-1.0 + + + + + Proprietary Free + + + yml - + json - + text + + + binary-linux-firmware @@ -4537,6 +4681,30 @@ + + + boutell-libgd-2021 + + active + + Boutell libgd declarations 2021 + + + + LicenseRef-scancode-boutell-libgd-2021 + + + + + Permissive + + + yml - + json - + text + + + bpel4ws-spec @@ -4609,6 +4777,30 @@ + + + brankas-open-license-1.0 + + active + + Brankas Open License 1.0 + + + + LicenseRef-scancode-brankas-open-license-1.0 + + + + + Free Restricted + + + yml - + json - + text + + + brent-corkum @@ -4848,8 +5040,8 @@ broadcom-linking-unmodified - - active + [Deprecated] + deprecated Broadcom Linking Exception if unmodified @@ -4989,6 +5181,30 @@ + + + broadcom-unmodified-exception + + active + + Broadcom Unmodified Linking Exception + + + + LicenseRef-scancode-broadcom-unmodified-exception + + + + + Copyleft Limited + + + yml - + json - + text + + + broadcom-unpublished-source @@ -7301,6 +7517,30 @@ + + + cc-by-3.0-igo + + active + + Creative Commons Attribution 3.0 IGO + + + + CC-BY-3.0-IGO + + + + + Permissive + + + yml - + json - + text + + + cc-by-3.0-nl @@ -9171,6 +9411,30 @@ + + + checkmk + + active + + Checkmk License + + + + checkmk + + + + + Permissive + + + yml - + json - + text + + + chelsio-linux-firmware @@ -9457,6 +9721,30 @@ + + + clips-2017 + + active + + CLIPS License 2017 + + + + LicenseRef-scancode-clips-2017 + + + + + Permissive + + + yml - + json - + text + + + clisp-exception-2.0 @@ -9686,7 +9974,7 @@ - Patent License + CLA yml - @@ -9710,7 +9998,7 @@ - Patent License + CLA yml - @@ -11532,7 +11820,7 @@ - Permissive + CLA yml - @@ -12043,6 +12331,30 @@ + + + dmtf-2017 + + active + + DMTF License 2017 + + + + LicenseRef-scancode-dmtf-2017 + + + + + Permissive + + + yml - + json - + text + + + do-no-harm-0.1 @@ -13117,6 +13429,30 @@ + + + edrdg-2000 + + active + + EDRDG General Dictionary License 2000 + + + + LicenseRef-scancode-edrdg-2000 + + + + + Copyleft Limited + + + yml - + json - + text + + + efl-1.0 @@ -15211,7 +15547,7 @@ - LicenseRef-scancode-fsf-unlimited-no-warranty + FSFULLRWD @@ -15504,7 +15840,7 @@ - Unstated License + CLA yml - @@ -16209,6 +16545,30 @@ + + + gitpod-self-hosted-free-2020 + + active + + Gitpod Self-Hosted Free License Terms 2020 + + + + LicenseRef-scancode-gitpod-self-hosted-free-2020 + + + + + Proprietary Free + + + yml - + json - + text + + + gl2ps @@ -16608,7 +16968,7 @@ - Patent License + CLA yml - @@ -16632,7 +16992,7 @@ - Patent License + CLA yml - @@ -18895,6 +19255,54 @@ + + + gstreamer-exception-2005 + + active + + GStreamer Exception (2005) + + + + GStreamer-exception-2005 + + + + + Permissive + + + yml - + json - + text + + + + + + gstreamer-exception-2008 + + active + + GStreamer Exception (2008) + + + + GStreamer-exception-2008 + + + + + Permissive + + + yml - + json - + text + + + guile-exception-2.0 @@ -22434,7 +22842,7 @@ - Proprietary Free + CLA yml - @@ -23211,6 +23619,30 @@ + + + knuth-ctan + + active + + Knuth CTAN License + + + + Knuth-CTAN + + + + + Permissive + + + yml - + json - + text + + + kreative-relay-fonts-free-use-1.2f @@ -23355,6 +23787,30 @@ + + + lattice-osl-2017 + + active + + Lattice Open Source License 2017 + + + + LicenseRef-scancode-lattice-osl-2017 + + + + + Copyleft Limited + + + yml - + json - + text + + + lavantech @@ -24567,6 +25023,30 @@ + + + libutil-david-nugent + + active + + libutil David Nugent License + + + + libutil-David-Nugent + + + + + Permissive + + + yml - + json - + text + + + libwebsockets-exception @@ -25615,6 +26095,54 @@ + + + lzma-sdk-9.11-to-9.20 + + active + + LZMA SDK License (versions 9.11 to 9.20) + + + + LZMA-SDK-9.11-to-9.20 + + + + + Public Domain + + + yml - + json - + text + + + + + + lzma-sdk-9.22 + + active + + LZMA SDK License (versions 9.22 and beyond) + + + + LZMA-SDK-9.22 + + + + + Public Domain + + + yml - + json - + text + + + lzma-sdk-original @@ -26379,6 +26907,30 @@ + + + microchip-products-2018 + + active + + Microchip Products 2018 + + + + LicenseRef-scancode-microchip-products-2018 + + + + + Proprietary Free + + + yml - + json - + text + + + microsoft-enterprise-library-eula @@ -26555,7 +27107,7 @@ - LicenseRef-scancode-minpack + Minpack @@ -27193,6 +27745,30 @@ + + + monkeysaudio + + active + + Monkeys Audio License Agreement + + + + LicenseRef-scancode-monkeysaudio + + + + + Free Restricted + + + yml - + json - + text + + + motorola @@ -27385,6 +27961,30 @@ + + + mpi-permissive + + active + + mpi Permissive License + + + + mpi-permissive + + + + + Permissive + + + yml - + json - + text + + + mpich @@ -28353,7 +28953,7 @@ - LicenseRef-scancode-ms-lpl + MS-LPL @@ -30728,7 +31328,7 @@ - Unstated License + CLA yml - @@ -30867,7 +31467,7 @@ - LicenseRef-scancode-nicta-psl + NICTA-1.0 @@ -31407,6 +32007,30 @@ + + + npsl-exception-0.92 + + active + + Nmap NPSL Exception 0.92 + + + + LicenseRef-scancode-npsl-exception-0.92 + + + + + Copyleft + + + yml - + json - + text + + + npsl-exception-0.93 @@ -31431,6 +32055,30 @@ + + + npsl-exception-0.94 + + active + + Nmap NPSL Exception 0.94 + + + + LicenseRef-scancode-npsl-exception-0.94 + + + + + Copyleft + + + yml - + json - + text + + + nrl @@ -32697,6 +33345,30 @@ + + + ofrak-community-1.0 + + active + + OFRAK Community License Agreement 1.0 + + + + LicenseRef-scancode-ofrak-community-1.0 + + + + + Free Restricted + + + yml - + json - + text + + + ogc @@ -33007,6 +33679,78 @@ + + + olf-ccla-1.0 + + active + + OLF-CCLA-1.0 + + + + LicenseRef-scancode-olf-ccla-1.0 + + + + + CLA + + + yml - + json - + text + + + + + + oll-1.0 + + active + + OLL-1.0 + + + + LicenseRef-scancode-oll-1.0 + + + + + Permissive + + + yml - + json - + text + + + + + + ooura-2001 + + active + + OOURA License 2001 + + + + LicenseRef-scancode-ooura-2001 + + + + + Permissive + + + yml - + json - + text + + + open-diameter @@ -33953,7 +34697,7 @@ - LicenseRef-scancode-openssl-exception-gpl-2.0 + x11vnc-openssl-exception @@ -35372,7 +36116,7 @@ - Permissive + CLA yml - @@ -35396,7 +36140,7 @@ - Patent License + CLA yml - @@ -36461,6 +37205,30 @@ + + + plural-20211124 + + active + + Plural Licensing 20211124 + + + + LicenseRef-scancode-plural-20211124 + + + + + Source-available + + + yml - + json - + text + + + pml-2020 @@ -37273,6 +38041,30 @@ + + + python-2.0.1 + + active + + Python License 2.0.1 + + + + Python-2.0.1 + + + + + Permissive + + + yml - + json - + text + + + python-cwi @@ -37537,6 +38329,30 @@ + + + qt-commercial-agreement-4.4.1 + + active + + Qt License Agreement v4.4.1 + + + + LicenseRef-scancode-qt-commercial-agreement-4.4.1 + + + + + Commercial + + + yml - + json - + text + + + qt-company-exception-2017-lgpl-2.1 @@ -40193,6 +41009,54 @@ + + + six-labors-split-1.0 + + active + + Six Labors Split License 1.0 + + + + LicenseRef-scancode-six-labors-split-1.0 + + + + + Free Restricted + + + yml - + json - + text + + + + + + skip-2014 + + active + + SKIP License 2014 + + + + LicenseRef-scancode-skip-2014 + + + + + Copyleft Limited + + + yml - + json - + text + + + sleepycat @@ -40357,6 +41221,30 @@ + + + smsc-non-commercial-2012 + + active + + SMSC Non-Commercial 2012 + + + + LicenseRef-scancode-smsc-non-commercial-2012 + + + + + Proprietary Free + + + yml - + json - + text + + + snapeda-design-exception-1.0 @@ -40780,7 +41668,7 @@ - Patent License + CLA yml - @@ -40933,6 +41821,30 @@ + + + stable-diffusion-2022-08-22 + + active + + Stable Diffusion License 2022-08-22 + + + + LicenseRef-scancode-stable-diffusion-2022-08-22 + + + + + Proprietary Free + + + yml - + json - + text + + + standard-ml-nj @@ -43619,6 +44531,30 @@ + + + tpl-2.0 + + active + + TPL 2.0 + + + + LicenseRef-scancode-tpl-2.0 + + + + + Copyleft Limited + + + yml - + json - + text + + + trademark-notice @@ -44526,8 +45462,8 @@ unlimited-binary-linking - - active + [Deprecated] + deprecated Unlimited Binary Linking Exception @@ -44547,6 +45483,30 @@ + + + unlimited-binary-use-exception + + active + + Unlimited Binary Use Exception + + + + LicenseRef-scancode-unlimited-binary-use-exception + + + + + Permissive + + + yml - + json - + text + + + unlimited-linking-exception-gpl @@ -45961,6 +46921,30 @@ + + + woodruff-2002 + + active + + Woodruff Restricted MIT 2002 + + + + LicenseRef-scancode-woodruff-2002 + + + + + Free Restricted + + + yml - + json - + text + + + wordnet @@ -47947,6 +48931,30 @@ + + + zrythm-exception-agpl-3.0 + + active + + Zrythm Exception to AGPL 3.0 + + + + LicenseRef-scancode-zrythm-exception-agpl-3.0 + + + + + Copyleft + + + yml - + json - + text + + + zsh @@ -48032,7 +49040,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 27, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/index.json b/docs/index.json index 446d1d3a0b..6e95ff65c8 100644 --- a/docs/index.json +++ b/docs/index.json @@ -1 +1,26911 @@ -[{"license_key": "389-exception", "spdx_license_key": "389-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "389-exception.json", "yml": "389-exception.yml", "html": "389-exception.html", "text": "389-exception.LICENSE"}, {"license_key": "3com-microcode", "spdx_license_key": "LicenseRef-scancode-3com-microcode", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "3com-microcode.json", "yml": "3com-microcode.yml", "html": "3com-microcode.html", "text": "3com-microcode.LICENSE"}, {"license_key": "3dslicer-1.0", "spdx_license_key": "LicenseRef-scancode-3dslicer-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "3dslicer-1.0.json", "yml": "3dslicer-1.0.yml", "html": "3dslicer-1.0.html", "text": "3dslicer-1.0.LICENSE"}, {"license_key": "4suite-1.1", "spdx_license_key": "LicenseRef-scancode-4suite-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "4suite-1.1.json", "yml": "4suite-1.1.yml", "html": "4suite-1.1.html", "text": "4suite-1.1.LICENSE"}, {"license_key": "996-icu-1.0", "spdx_license_key": "LicenseRef-scancode-996-icu-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "996-icu-1.0.json", "yml": "996-icu-1.0.yml", "html": "996-icu-1.0.html", "text": "996-icu-1.0.LICENSE"}, {"license_key": "abrms", "spdx_license_key": "LicenseRef-scancode-abrms", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "abrms.json", "yml": "abrms.yml", "html": "abrms.html", "text": "abrms.LICENSE"}, {"license_key": "abstyles", "spdx_license_key": "Abstyles", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "abstyles.json", "yml": "abstyles.yml", "html": "abstyles.html", "text": "abstyles.LICENSE"}, {"license_key": "ac3filter", "spdx_license_key": "LicenseRef-scancode-ac3filter", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "ac3filter.json", "yml": "ac3filter.yml", "html": "ac3filter.html", "text": "ac3filter.LICENSE"}, {"license_key": "accellera-systemc", "spdx_license_key": "LicenseRef-scancode-accellera-systemc", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "accellera-systemc.json", "yml": "accellera-systemc.yml", "html": "accellera-systemc.html", "text": "accellera-systemc.LICENSE"}, {"license_key": "acdl-1.0", "spdx_license_key": "CDL-1.0", "other_spdx_license_keys": ["LicenseRef-scancode-acdl-1.0"], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "acdl-1.0.json", "yml": "acdl-1.0.yml", "html": "acdl-1.0.html", "text": "acdl-1.0.LICENSE"}, {"license_key": "ace-tao", "spdx_license_key": "DOC", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ace-tao.json", "yml": "ace-tao.yml", "html": "ace-tao.html", "text": "ace-tao.LICENSE"}, {"license_key": "acroname-bdk", "spdx_license_key": "LicenseRef-scancode-acroname-bdk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "acroname-bdk.json", "yml": "acroname-bdk.yml", "html": "acroname-bdk.html", "text": "acroname-bdk.LICENSE"}, {"license_key": "activestate-community", "spdx_license_key": "LicenseRef-scancode-activestate-community", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "activestate-community.json", "yml": "activestate-community.yml", "html": "activestate-community.html", "text": "activestate-community.LICENSE"}, {"license_key": "activestate-community-2012", "spdx_license_key": "LicenseRef-scancode-activestate-community-2012", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "activestate-community-2012.json", "yml": "activestate-community-2012.yml", "html": "activestate-community-2012.html", "text": "activestate-community-2012.LICENSE"}, {"license_key": "activestate-komodo-edit", "spdx_license_key": "LicenseRef-scancode-activestate-komodo-edit", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "activestate-komodo-edit.json", "yml": "activestate-komodo-edit.yml", "html": "activestate-komodo-edit.html", "text": "activestate-komodo-edit.LICENSE"}, {"license_key": "actuate-birt-ihub-ftype-sla", "spdx_license_key": "LicenseRef-scancode-actuate-birt-ihub-ftype-sla", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "actuate-birt-ihub-ftype-sla.json", "yml": "actuate-birt-ihub-ftype-sla.yml", "html": "actuate-birt-ihub-ftype-sla.html", "text": "actuate-birt-ihub-ftype-sla.LICENSE"}, {"license_key": "ada-linking-exception", "spdx_license_key": "LicenseRef-scancode-ada-linking-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "ada-linking-exception.json", "yml": "ada-linking-exception.yml", "html": "ada-linking-exception.html", "text": "ada-linking-exception.LICENSE"}, {"license_key": "adapt-1.0", "spdx_license_key": "APL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "adapt-1.0.json", "yml": "adapt-1.0.yml", "html": "adapt-1.0.html", "text": "adapt-1.0.LICENSE"}, {"license_key": "adaptec-downloadable", "spdx_license_key": "LicenseRef-scancode-adaptec-downloadable", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "adaptec-downloadable.json", "yml": "adaptec-downloadable.yml", "html": "adaptec-downloadable.html", "text": "adaptec-downloadable.LICENSE"}, {"license_key": "adaptec-eula", "spdx_license_key": "LicenseRef-scancode-adaptec-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "adaptec-eula.json", "yml": "adaptec-eula.yml", "html": "adaptec-eula.html", "text": "adaptec-eula.LICENSE"}, {"license_key": "addthis-mobile-sdk-1.0", "spdx_license_key": "LicenseRef-scancode-addthis-mobile-sdk-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "addthis-mobile-sdk-1.0.json", "yml": "addthis-mobile-sdk-1.0.yml", "html": "addthis-mobile-sdk-1.0.html", "text": "addthis-mobile-sdk-1.0.LICENSE"}, {"license_key": "adi-bsd", "spdx_license_key": "LicenseRef-scancode-adi-bsd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "adi-bsd.json", "yml": "adi-bsd.yml", "html": "adi-bsd.html", "text": "adi-bsd.LICENSE"}, {"license_key": "adobe-acrobat-reader-eula", "spdx_license_key": "LicenseRef-scancode-adobe-acrobat-reader-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "adobe-acrobat-reader-eula.json", "yml": "adobe-acrobat-reader-eula.yml", "html": "adobe-acrobat-reader-eula.html", "text": "adobe-acrobat-reader-eula.LICENSE"}, {"license_key": "adobe-air-sdk", "spdx_license_key": "LicenseRef-scancode-adobe-air-sdk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "adobe-air-sdk.json", "yml": "adobe-air-sdk.yml", "html": "adobe-air-sdk.html", "text": "adobe-air-sdk.LICENSE"}, {"license_key": "adobe-air-sdk-2014", "spdx_license_key": "LicenseRef-scancode-adobe-air-sdk-2014", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "adobe-air-sdk-2014.json", "yml": "adobe-air-sdk-2014.yml", "html": "adobe-air-sdk-2014.html", "text": "adobe-air-sdk-2014.LICENSE"}, {"license_key": "adobe-color-profile-bundling", "spdx_license_key": "LicenseRef-scancode-adobe-color-profile-bundling", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "adobe-color-profile-bundling.json", "yml": "adobe-color-profile-bundling.yml", "html": "adobe-color-profile-bundling.html", "text": "adobe-color-profile-bundling.LICENSE"}, {"license_key": "adobe-color-profile-license", "spdx_license_key": "LicenseRef-scancode-adobe-color-profile-license", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "adobe-color-profile-license.json", "yml": "adobe-color-profile-license.yml", "html": "adobe-color-profile-license.html", "text": "adobe-color-profile-license.LICENSE"}, {"license_key": "adobe-dng-sdk", "spdx_license_key": "LicenseRef-scancode-adobe-dng-sdk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "adobe-dng-sdk.json", "yml": "adobe-dng-sdk.yml", "html": "adobe-dng-sdk.html", "text": "adobe-dng-sdk.LICENSE"}, {"license_key": "adobe-dng-spec-patent", "spdx_license_key": "LicenseRef-scancode-adobe-dng-spec-patent", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "adobe-dng-spec-patent.json", "yml": "adobe-dng-spec-patent.yml", "html": "adobe-dng-spec-patent.html", "text": "adobe-dng-spec-patent.LICENSE"}, {"license_key": "adobe-eula", "spdx_license_key": "LicenseRef-scancode-adobe-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "adobe-eula.json", "yml": "adobe-eula.yml", "html": "adobe-eula.html", "text": "adobe-eula.LICENSE"}, {"license_key": "adobe-flash-player-eula-21.0", "spdx_license_key": "LicenseRef-scancode-adobe-flash-player-eula-21.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "adobe-flash-player-eula-21.0.json", "yml": "adobe-flash-player-eula-21.0.yml", "html": "adobe-flash-player-eula-21.0.html", "text": "adobe-flash-player-eula-21.0.LICENSE"}, {"license_key": "adobe-flex-4-sdk", "spdx_license_key": "LicenseRef-scancode-adobe-flex-4-sdk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "adobe-flex-4-sdk.json", "yml": "adobe-flex-4-sdk.yml", "html": "adobe-flex-4-sdk.html", "text": "adobe-flex-4-sdk.LICENSE"}, {"license_key": "adobe-flex-sdk", "spdx_license_key": "LicenseRef-scancode-adobe-flex-sdk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "adobe-flex-sdk.json", "yml": "adobe-flex-sdk.yml", "html": "adobe-flex-sdk.html", "text": "adobe-flex-sdk.LICENSE"}, {"license_key": "adobe-general-tou", "spdx_license_key": "LicenseRef-scancode-adobe-general-tou", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "adobe-general-tou.json", "yml": "adobe-general-tou.yml", "html": "adobe-general-tou.html", "text": "adobe-general-tou.LICENSE"}, {"license_key": "adobe-glyph", "spdx_license_key": "Adobe-Glyph", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "adobe-glyph.json", "yml": "adobe-glyph.yml", "html": "adobe-glyph.html", "text": "adobe-glyph.LICENSE"}, {"license_key": "adobe-indesign-sdk", "spdx_license_key": "LicenseRef-scancode-adobe-indesign-sdk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "adobe-indesign-sdk.json", "yml": "adobe-indesign-sdk.yml", "html": "adobe-indesign-sdk.html", "text": "adobe-indesign-sdk.LICENSE"}, {"license_key": "adobe-postscript", "spdx_license_key": "LicenseRef-scancode-adobe-postscript", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "adobe-postscript.json", "yml": "adobe-postscript.yml", "html": "adobe-postscript.html", "text": "adobe-postscript.LICENSE"}, {"license_key": "adobe-scl", "spdx_license_key": "Adobe-2006", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "adobe-scl.json", "yml": "adobe-scl.yml", "html": "adobe-scl.html", "text": "adobe-scl.LICENSE"}, {"license_key": "adrian", "spdx_license_key": "LicenseRef-scancode-adrian", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "adrian.json", "yml": "adrian.yml", "html": "adrian.html", "text": "adrian.LICENSE"}, {"license_key": "adsl", "spdx_license_key": "ADSL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "adsl.json", "yml": "adsl.yml", "html": "adsl.html", "text": "adsl.LICENSE"}, {"license_key": "aes-128-3.0", "spdx_license_key": "LicenseRef-scancode-aes-128-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "aes-128-3.0.json", "yml": "aes-128-3.0.yml", "html": "aes-128-3.0.html", "text": "aes-128-3.0.LICENSE"}, {"license_key": "afl-1.1", "spdx_license_key": "AFL-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "afl-1.1.json", "yml": "afl-1.1.yml", "html": "afl-1.1.html", "text": "afl-1.1.LICENSE"}, {"license_key": "afl-1.2", "spdx_license_key": "AFL-1.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "afl-1.2.json", "yml": "afl-1.2.yml", "html": "afl-1.2.html", "text": "afl-1.2.LICENSE"}, {"license_key": "afl-2.0", "spdx_license_key": "AFL-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "afl-2.0.json", "yml": "afl-2.0.yml", "html": "afl-2.0.html", "text": "afl-2.0.LICENSE"}, {"license_key": "afl-2.1", "spdx_license_key": "AFL-2.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "afl-2.1.json", "yml": "afl-2.1.yml", "html": "afl-2.1.html", "text": "afl-2.1.LICENSE"}, {"license_key": "afl-3.0", "spdx_license_key": "AFL-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "afl-3.0.json", "yml": "afl-3.0.yml", "html": "afl-3.0.html", "text": "afl-3.0.LICENSE"}, {"license_key": "afmparse", "spdx_license_key": "Afmparse", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "afmparse.json", "yml": "afmparse.yml", "html": "afmparse.html", "text": "afmparse.LICENSE"}, {"license_key": "afpl-8.0", "spdx_license_key": "Aladdin", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "afpl-8.0.json", "yml": "afpl-8.0.yml", "html": "afpl-8.0.html", "text": "afpl-8.0.LICENSE"}, {"license_key": "afpl-9.0", "spdx_license_key": "LicenseRef-scancode-afpl-9.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "afpl-9.0.json", "yml": "afpl-9.0.yml", "html": "afpl-9.0.html", "text": "afpl-9.0.LICENSE"}, {"license_key": "agentxpp", "spdx_license_key": "LicenseRef-scancode-agentxpp", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "agentxpp.json", "yml": "agentxpp.yml", "html": "agentxpp.html", "text": "agentxpp.LICENSE"}, {"license_key": "agere-bsd", "spdx_license_key": "LicenseRef-scancode-agere-bsd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "agere-bsd.json", "yml": "agere-bsd.yml", "html": "agere-bsd.html", "text": "agere-bsd.LICENSE"}, {"license_key": "agere-sla", "spdx_license_key": "LicenseRef-scancode-agere-sla", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "agere-sla.json", "yml": "agere-sla.yml", "html": "agere-sla.html", "text": "agere-sla.LICENSE"}, {"license_key": "ago-private-1.0", "spdx_license_key": "LicenseRef-scancode-ago-private-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ago-private-1.0.json", "yml": "ago-private-1.0.yml", "html": "ago-private-1.0.html", "text": "ago-private-1.0.LICENSE"}, {"license_key": "agpl-1.0", "spdx_license_key": "AGPL-1.0-only", "other_spdx_license_keys": ["AGPL-1.0"], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "agpl-1.0.json", "yml": "agpl-1.0.yml", "html": "agpl-1.0.html", "text": "agpl-1.0.LICENSE"}, {"license_key": "agpl-1.0-plus", "spdx_license_key": "AGPL-1.0-or-later", "other_spdx_license_keys": ["AGPL-1.0+"], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "agpl-1.0-plus.json", "yml": "agpl-1.0-plus.yml", "html": "agpl-1.0-plus.html", "text": "agpl-1.0-plus.LICENSE"}, {"license_key": "agpl-2.0", "spdx_license_key": "LicenseRef-scancode-agpl-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "agpl-2.0.json", "yml": "agpl-2.0.yml", "html": "agpl-2.0.html", "text": "agpl-2.0.LICENSE"}, {"license_key": "agpl-3.0", "spdx_license_key": "AGPL-3.0-only", "other_spdx_license_keys": ["AGPL-3.0", "LicenseRef-AGPL-3.0"], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "agpl-3.0.json", "yml": "agpl-3.0.yml", "html": "agpl-3.0.html", "text": "agpl-3.0.LICENSE"}, {"license_key": "agpl-3.0-bacula", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft", "json": "agpl-3.0-bacula.json", "yml": "agpl-3.0-bacula.yml", "html": "agpl-3.0-bacula.html", "text": "agpl-3.0-bacula.LICENSE"}, {"license_key": "agpl-3.0-linking-exception", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "agpl-3.0-linking-exception.json", "yml": "agpl-3.0-linking-exception.yml", "html": "agpl-3.0-linking-exception.html", "text": "agpl-3.0-linking-exception.LICENSE"}, {"license_key": "agpl-3.0-openssl", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft", "json": "agpl-3.0-openssl.json", "yml": "agpl-3.0-openssl.yml", "html": "agpl-3.0-openssl.html", "text": "agpl-3.0-openssl.LICENSE"}, {"license_key": "agpl-3.0-plus", "spdx_license_key": "AGPL-3.0-or-later", "other_spdx_license_keys": ["AGPL-3.0+", "LicenseRef-AGPL"], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "agpl-3.0-plus.json", "yml": "agpl-3.0-plus.yml", "html": "agpl-3.0-plus.html", "text": "agpl-3.0-plus.LICENSE"}, {"license_key": "agpl-generic-additional-terms", "spdx_license_key": "LicenseRef-scancode-agpl-generic-additional-terms", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "agpl-generic-additional-terms.json", "yml": "agpl-generic-additional-terms.yml", "html": "agpl-generic-additional-terms.html", "text": "agpl-generic-additional-terms.LICENSE"}, {"license_key": "aladdin-md5", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "aladdin-md5.json", "yml": "aladdin-md5.yml", "html": "aladdin-md5.html", "text": "aladdin-md5.LICENSE"}, {"license_key": "alasir", "spdx_license_key": "LicenseRef-scancode-alasir", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "alasir.json", "yml": "alasir.yml", "html": "alasir.html", "text": "alasir.LICENSE"}, {"license_key": "alexisisaac-freeware", "spdx_license_key": "LicenseRef-scancode-alexisisaac-freeware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "alexisisaac-freeware.json", "yml": "alexisisaac-freeware.yml", "html": "alexisisaac-freeware.html", "text": "alexisisaac-freeware.LICENSE"}, {"license_key": "alfresco-exception-0.5", "spdx_license_key": "LicenseRef-scancode-alfresco-exception-0.5", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "alfresco-exception-0.5.json", "yml": "alfresco-exception-0.5.yml", "html": "alfresco-exception-0.5.html", "text": "alfresco-exception-0.5.LICENSE"}, {"license_key": "allegro-4", "spdx_license_key": "Giftware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "allegro-4.json", "yml": "allegro-4.yml", "html": "allegro-4.html", "text": "allegro-4.LICENSE"}, {"license_key": "allen-institute-software-2018", "spdx_license_key": "LicenseRef-scancode-allen-institute-software-2018", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "allen-institute-software-2018.json", "yml": "allen-institute-software-2018.yml", "html": "allen-institute-software-2018.html", "text": "allen-institute-software-2018.LICENSE"}, {"license_key": "altermime", "spdx_license_key": "LicenseRef-scancode-altermime", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "altermime.json", "yml": "altermime.yml", "html": "altermime.html", "text": "altermime.LICENSE"}, {"license_key": "altova-eula", "spdx_license_key": "LicenseRef-scancode-altova-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "altova-eula.json", "yml": "altova-eula.yml", "html": "altova-eula.html", "text": "altova-eula.LICENSE"}, {"license_key": "amazon-redshift-jdbc", "spdx_license_key": "LicenseRef-scancode-amazon-redshift-jdbc", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "amazon-redshift-jdbc.json", "yml": "amazon-redshift-jdbc.yml", "html": "amazon-redshift-jdbc.html", "text": "amazon-redshift-jdbc.LICENSE"}, {"license_key": "amazon-sl", "spdx_license_key": "LicenseRef-.amazon.com.-AmznSL-1.0", "other_spdx_license_keys": ["LicenseRef-scancode-amazon-sl"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "amazon-sl.json", "yml": "amazon-sl.yml", "html": "amazon-sl.html", "text": "amazon-sl.LICENSE"}, {"license_key": "amd-historical", "spdx_license_key": "LicenseRef-scancode-amd-historical", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "amd-historical.json", "yml": "amd-historical.yml", "html": "amd-historical.html", "text": "amd-historical.LICENSE"}, {"license_key": "amd-linux-firmware", "spdx_license_key": "LicenseRef-scancode-amd-linux-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "amd-linux-firmware.json", "yml": "amd-linux-firmware.yml", "html": "amd-linux-firmware.html", "text": "amd-linux-firmware.LICENSE"}, {"license_key": "amd-linux-firmware-export", "spdx_license_key": "LicenseRef-scancode-amd-linux-firmware-export", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "amd-linux-firmware-export.json", "yml": "amd-linux-firmware-export.yml", "html": "amd-linux-firmware-export.html", "text": "amd-linux-firmware-export.LICENSE"}, {"license_key": "amdplpa", "spdx_license_key": "AMDPLPA", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "amdplpa.json", "yml": "amdplpa.yml", "html": "amdplpa.html", "text": "amdplpa.LICENSE"}, {"license_key": "aml", "spdx_license_key": "AML", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "aml.json", "yml": "aml.yml", "html": "aml.html", "text": "aml.LICENSE"}, {"license_key": "amlogic-linux-firmware", "spdx_license_key": "LicenseRef-scancode-amlogic-linux-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "amlogic-linux-firmware.json", "yml": "amlogic-linux-firmware.yml", "html": "amlogic-linux-firmware.html", "text": "amlogic-linux-firmware.LICENSE"}, {"license_key": "ampas", "spdx_license_key": "AMPAS", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ampas.json", "yml": "ampas.yml", "html": "ampas.html", "text": "ampas.LICENSE"}, {"license_key": "ams-fonts", "spdx_license_key": "LicenseRef-scancode-ams-fonts", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ams-fonts.json", "yml": "ams-fonts.yml", "html": "ams-fonts.html", "text": "ams-fonts.LICENSE"}, {"license_key": "android-sdk-2009", "spdx_license_key": "LicenseRef-scancode-android-sdk-2009", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "android-sdk-2009.json", "yml": "android-sdk-2009.yml", "html": "android-sdk-2009.html", "text": "android-sdk-2009.LICENSE"}, {"license_key": "android-sdk-2012", "spdx_license_key": "LicenseRef-scancode-android-sdk-2012", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "android-sdk-2012.json", "yml": "android-sdk-2012.yml", "html": "android-sdk-2012.html", "text": "android-sdk-2012.LICENSE"}, {"license_key": "android-sdk-2021", "spdx_license_key": "LicenseRef-scancode-android-sdk-2021", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "android-sdk-2021.json", "yml": "android-sdk-2021.yml", "html": "android-sdk-2021.html", "text": "android-sdk-2021.LICENSE"}, {"license_key": "android-sdk-license", "spdx_license_key": "LicenseRef-scancode-android-sdk-license", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "android-sdk-license.json", "yml": "android-sdk-license.yml", "html": "android-sdk-license.html", "text": "android-sdk-license.LICENSE"}, {"license_key": "android-sdk-preview-2015", "spdx_license_key": "LicenseRef-scancode-android-sdk-preview-2015", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "android-sdk-preview-2015.json", "yml": "android-sdk-preview-2015.yml", "html": "android-sdk-preview-2015.html", "text": "android-sdk-preview-2015.LICENSE"}, {"license_key": "anepokis-1.0", "spdx_license_key": "LicenseRef-scancode-anepokis-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "anepokis-1.0.json", "yml": "anepokis-1.0.yml", "html": "anepokis-1.0.html", "text": "anepokis-1.0.LICENSE"}, {"license_key": "anti-capitalist-1.4", "spdx_license_key": "LicenseRef-scancode-anti-capitalist-1.4", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "anti-capitalist-1.4.json", "yml": "anti-capitalist-1.4.yml", "html": "anti-capitalist-1.4.html", "text": "anti-capitalist-1.4.LICENSE"}, {"license_key": "antlr-pd", "spdx_license_key": "ANTLR-PD", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "antlr-pd.json", "yml": "antlr-pd.yml", "html": "antlr-pd.html", "text": "antlr-pd.LICENSE"}, {"license_key": "antlr-pd-fallback", "spdx_license_key": "ANTLR-PD-fallback", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "antlr-pd-fallback.json", "yml": "antlr-pd-fallback.yml", "html": "antlr-pd-fallback.html", "text": "antlr-pd-fallback.LICENSE"}, {"license_key": "anu-license", "spdx_license_key": "LicenseRef-scancode-anu-license", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "anu-license.json", "yml": "anu-license.yml", "html": "anu-license.html", "text": "anu-license.LICENSE"}, {"license_key": "aop-pd", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Public Domain", "json": "aop-pd.json", "yml": "aop-pd.yml", "html": "aop-pd.html", "text": "aop-pd.LICENSE"}, {"license_key": "apache-1.0", "spdx_license_key": "Apache-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "apache-1.0.json", "yml": "apache-1.0.yml", "html": "apache-1.0.html", "text": "apache-1.0.LICENSE"}, {"license_key": "apache-1.1", "spdx_license_key": "Apache-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "apache-1.1.json", "yml": "apache-1.1.yml", "html": "apache-1.1.html", "text": "apache-1.1.LICENSE"}, {"license_key": "apache-2.0", "spdx_license_key": "Apache-2.0", "other_spdx_license_keys": ["LicenseRef-Apache", "LicenseRef-Apache-2.0"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "apache-2.0.json", "yml": "apache-2.0.yml", "html": "apache-2.0.html", "text": "apache-2.0.LICENSE"}, {"license_key": "apache-2.0-linking-exception", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Permissive", "json": "apache-2.0-linking-exception.json", "yml": "apache-2.0-linking-exception.yml", "html": "apache-2.0-linking-exception.html", "text": "apache-2.0-linking-exception.LICENSE"}, {"license_key": "apache-2.0-runtime-library-exception", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Permissive", "json": "apache-2.0-runtime-library-exception.json", "yml": "apache-2.0-runtime-library-exception.yml", "html": "apache-2.0-runtime-library-exception.html", "text": "apache-2.0-runtime-library-exception.LICENSE"}, {"license_key": "apache-due-credit", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "apache-due-credit.json", "yml": "apache-due-credit.yml", "html": "apache-due-credit.html", "text": "apache-due-credit.LICENSE"}, {"license_key": "apache-exception-llvm", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Permissive", "json": "apache-exception-llvm.json", "yml": "apache-exception-llvm.yml", "html": "apache-exception-llvm.html", "text": "apache-exception-llvm.LICENSE"}, {"license_key": "apache-patent-exception", "spdx_license_key": "LicenseRef-scancode-apache-patent-exception", "other_spdx_license_keys": ["LicenseRef-scancode-apache-patent-provision-exception"], "is_exception": true, "is_deprecated": false, "category": "Permissive", "json": "apache-patent-exception.json", "yml": "apache-patent-exception.yml", "html": "apache-patent-exception.html", "text": "apache-patent-exception.LICENSE"}, {"license_key": "apache-patent-provision-exception", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Permissive", "json": "apache-patent-provision-exception.json", "yml": "apache-patent-provision-exception.yml", "html": "apache-patent-provision-exception.html", "text": "apache-patent-provision-exception.LICENSE"}, {"license_key": "apafml", "spdx_license_key": "APAFML", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "apafml.json", "yml": "apafml.yml", "html": "apafml.html", "text": "apafml.LICENSE"}, {"license_key": "apl-1.1", "spdx_license_key": "LicenseRef-scancode-apl-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "apl-1.1.json", "yml": "apl-1.1.yml", "html": "apl-1.1.html", "text": "apl-1.1.LICENSE"}, {"license_key": "app-s2p", "spdx_license_key": "App-s2p", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "app-s2p.json", "yml": "app-s2p.yml", "html": "app-s2p.html", "text": "app-s2p.LICENSE"}, {"license_key": "appfire-eula", "spdx_license_key": "LicenseRef-scancode-appfire-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "appfire-eula.json", "yml": "appfire-eula.yml", "html": "appfire-eula.html", "text": "appfire-eula.LICENSE"}, {"license_key": "apple-attribution", "spdx_license_key": "LicenseRef-scancode-apple-attribution", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "apple-attribution.json", "yml": "apple-attribution.yml", "html": "apple-attribution.html", "text": "apple-attribution.LICENSE"}, {"license_key": "apple-attribution-1997", "spdx_license_key": "LicenseRef-scancode-apple-attribution-1997", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "apple-attribution-1997.json", "yml": "apple-attribution-1997.yml", "html": "apple-attribution-1997.html", "text": "apple-attribution-1997.LICENSE"}, {"license_key": "apple-excl", "spdx_license_key": "LicenseRef-scancode-apple-excl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "apple-excl.json", "yml": "apple-excl.yml", "html": "apple-excl.html", "text": "apple-excl.LICENSE"}, {"license_key": "apple-mfi-license", "spdx_license_key": "LicenseRef-scancode-apple-mfi-license", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "apple-mfi-license.json", "yml": "apple-mfi-license.yml", "html": "apple-mfi-license.html", "text": "apple-mfi-license.LICENSE"}, {"license_key": "apple-mpeg-4", "spdx_license_key": "LicenseRef-scancode-apple-mpeg-4", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "apple-mpeg-4.json", "yml": "apple-mpeg-4.yml", "html": "apple-mpeg-4.html", "text": "apple-mpeg-4.LICENSE"}, {"license_key": "apple-runtime-library-exception", "spdx_license_key": "Swift-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Permissive", "json": "apple-runtime-library-exception.json", "yml": "apple-runtime-library-exception.yml", "html": "apple-runtime-library-exception.html", "text": "apple-runtime-library-exception.LICENSE"}, {"license_key": "apple-sscl", "spdx_license_key": "LicenseRef-scancode-apple-sscl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "apple-sscl.json", "yml": "apple-sscl.yml", "html": "apple-sscl.html", "text": "apple-sscl.LICENSE"}, {"license_key": "appsflyer-framework", "spdx_license_key": "LicenseRef-scancode-appsflyer-framework", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "appsflyer-framework.json", "yml": "appsflyer-framework.yml", "html": "appsflyer-framework.html", "text": "appsflyer-framework.LICENSE"}, {"license_key": "apsl-1.0", "spdx_license_key": "APSL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "apsl-1.0.json", "yml": "apsl-1.0.yml", "html": "apsl-1.0.html", "text": "apsl-1.0.LICENSE"}, {"license_key": "apsl-1.1", "spdx_license_key": "APSL-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "apsl-1.1.json", "yml": "apsl-1.1.yml", "html": "apsl-1.1.html", "text": "apsl-1.1.LICENSE"}, {"license_key": "apsl-1.2", "spdx_license_key": "APSL-1.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "apsl-1.2.json", "yml": "apsl-1.2.yml", "html": "apsl-1.2.html", "text": "apsl-1.2.LICENSE"}, {"license_key": "apsl-2.0", "spdx_license_key": "APSL-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "apsl-2.0.json", "yml": "apsl-2.0.yml", "html": "apsl-2.0.html", "text": "apsl-2.0.LICENSE"}, {"license_key": "aptana-1.0", "spdx_license_key": "LicenseRef-scancode-aptana-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "aptana-1.0.json", "yml": "aptana-1.0.yml", "html": "aptana-1.0.html", "text": "aptana-1.0.LICENSE"}, {"license_key": "aptana-exception-3.0", "spdx_license_key": "LicenseRef-scancode-aptana-exception-3.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "aptana-exception-3.0.json", "yml": "aptana-exception-3.0.yml", "html": "aptana-exception-3.0.html", "text": "aptana-exception-3.0.LICENSE"}, {"license_key": "arachni-psl-1.0", "spdx_license_key": "LicenseRef-scancode-arachni-psl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "arachni-psl-1.0.json", "yml": "arachni-psl-1.0.yml", "html": "arachni-psl-1.0.html", "text": "arachni-psl-1.0.LICENSE"}, {"license_key": "aravindan-premkumar", "spdx_license_key": "LicenseRef-scancode-aravindan-premkumar", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "aravindan-premkumar.json", "yml": "aravindan-premkumar.yml", "html": "aravindan-premkumar.html", "text": "aravindan-premkumar.LICENSE"}, {"license_key": "argouml", "spdx_license_key": "LicenseRef-scancode-argouml", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "argouml.json", "yml": "argouml.yml", "html": "argouml.html", "text": "argouml.LICENSE"}, {"license_key": "arm-cortex-mx", "spdx_license_key": "LicenseRef-scancode-arm-cortex-mx", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "arm-cortex-mx.json", "yml": "arm-cortex-mx.yml", "html": "arm-cortex-mx.html", "text": "arm-cortex-mx.LICENSE"}, {"license_key": "arm-llvm-sga", "spdx_license_key": "LicenseRef-scancode-arm-llvm-sga", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "arm-llvm-sga.json", "yml": "arm-llvm-sga.yml", "html": "arm-llvm-sga.html", "text": "arm-llvm-sga.LICENSE"}, {"license_key": "arphic-public", "spdx_license_key": "Arphic-1999", "other_spdx_license_keys": ["LicenseRef-scancode-arphic-public"], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "arphic-public.json", "yml": "arphic-public.yml", "html": "arphic-public.html", "text": "arphic-public.LICENSE"}, {"license_key": "array-input-method-pl", "spdx_license_key": "LicenseRef-scancode-array-input-method-pl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "array-input-method-pl.json", "yml": "array-input-method-pl.yml", "html": "array-input-method-pl.html", "text": "array-input-method-pl.LICENSE"}, {"license_key": "artistic-1.0", "spdx_license_key": "Artistic-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "artistic-1.0.json", "yml": "artistic-1.0.yml", "html": "artistic-1.0.html", "text": "artistic-1.0.LICENSE"}, {"license_key": "artistic-1.0-cl8", "spdx_license_key": "Artistic-1.0-cl8", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "artistic-1.0-cl8.json", "yml": "artistic-1.0-cl8.yml", "html": "artistic-1.0-cl8.html", "text": "artistic-1.0-cl8.LICENSE"}, {"license_key": "artistic-2.0", "spdx_license_key": "Artistic-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "artistic-2.0.json", "yml": "artistic-2.0.yml", "html": "artistic-2.0.html", "text": "artistic-2.0.LICENSE"}, {"license_key": "artistic-clarified", "spdx_license_key": "ClArtistic", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "artistic-clarified.json", "yml": "artistic-clarified.yml", "html": "artistic-clarified.html", "text": "artistic-clarified.LICENSE"}, {"license_key": "artistic-dist-1.0", "spdx_license_key": "LicenseRef-scancode-artistic-1988-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "artistic-dist-1.0.json", "yml": "artistic-dist-1.0.yml", "html": "artistic-dist-1.0.html", "text": "artistic-dist-1.0.LICENSE"}, {"license_key": "artistic-perl-1.0", "spdx_license_key": "Artistic-1.0-Perl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "artistic-perl-1.0.json", "yml": "artistic-perl-1.0.yml", "html": "artistic-perl-1.0.html", "text": "artistic-perl-1.0.LICENSE"}, {"license_key": "aslp", "spdx_license_key": "LicenseRef-scancode-aslp", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "aslp.json", "yml": "aslp.yml", "html": "aslp.html", "text": "aslp.LICENSE"}, {"license_key": "aslr", "spdx_license_key": "LicenseRef-scancode-aslr", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "aslr.json", "yml": "aslr.yml", "html": "aslr.html", "text": "aslr.LICENSE"}, {"license_key": "asmus", "spdx_license_key": "LicenseRef-scancode-asmus", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "asmus.json", "yml": "asmus.yml", "html": "asmus.html", "text": "asmus.LICENSE"}, {"license_key": "asn1", "spdx_license_key": "LicenseRef-scancode-asn1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "asn1.json", "yml": "asn1.yml", "html": "asn1.html", "text": "asn1.LICENSE"}, {"license_key": "ati-eula", "spdx_license_key": "LicenseRef-scancode-ati-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ati-eula.json", "yml": "ati-eula.yml", "html": "ati-eula.html", "text": "ati-eula.LICENSE"}, {"license_key": "atkinson-hyperlegible-font", "spdx_license_key": "LicenseRef-scancode-atkinson-hyperlegible-font", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "atkinson-hyperlegible-font.json", "yml": "atkinson-hyperlegible-font.yml", "html": "atkinson-hyperlegible-font.html", "text": "atkinson-hyperlegible-font.LICENSE"}, {"license_key": "atlassian-marketplace-tou", "spdx_license_key": "LicenseRef-scancode-atlassian-marketplace-tou", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "atlassian-marketplace-tou.json", "yml": "atlassian-marketplace-tou.yml", "html": "atlassian-marketplace-tou.html", "text": "atlassian-marketplace-tou.LICENSE"}, {"license_key": "atmel-firmware", "spdx_license_key": "LicenseRef-scancode-atmel-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "atmel-firmware.json", "yml": "atmel-firmware.yml", "html": "atmel-firmware.html", "text": "atmel-firmware.LICENSE"}, {"license_key": "atmel-linux-firmware", "spdx_license_key": "LicenseRef-scancode-atmel-linux-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "atmel-linux-firmware.json", "yml": "atmel-linux-firmware.yml", "html": "atmel-linux-firmware.html", "text": "atmel-linux-firmware.LICENSE"}, {"license_key": "atmel-microcontroller", "spdx_license_key": "LicenseRef-scancode-atmel-microcontroller", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "atmel-microcontroller.json", "yml": "atmel-microcontroller.yml", "html": "atmel-microcontroller.html", "text": "atmel-microcontroller.LICENSE"}, {"license_key": "atmosphere-0.4", "spdx_license_key": "LicenseRef-scancode-atmosphere-0.4", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "atmosphere-0.4.json", "yml": "atmosphere-0.4.yml", "html": "atmosphere-0.4.html", "text": "atmosphere-0.4.LICENSE"}, {"license_key": "attribution", "spdx_license_key": "AAL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "attribution.json", "yml": "attribution.yml", "html": "attribution.html", "text": "attribution.LICENSE"}, {"license_key": "autoconf-exception-2.0", "spdx_license_key": "Autoconf-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "autoconf-exception-2.0.json", "yml": "autoconf-exception-2.0.yml", "html": "autoconf-exception-2.0.html", "text": "autoconf-exception-2.0.LICENSE"}, {"license_key": "autoconf-exception-3.0", "spdx_license_key": "Autoconf-exception-3.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "autoconf-exception-3.0.json", "yml": "autoconf-exception-3.0.yml", "html": "autoconf-exception-3.0.html", "text": "autoconf-exception-3.0.LICENSE"}, {"license_key": "autoconf-macro-exception", "spdx_license_key": "LicenseRef-scancode-autoconf-macro-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "autoconf-macro-exception.json", "yml": "autoconf-macro-exception.yml", "html": "autoconf-macro-exception.html", "text": "autoconf-macro-exception.LICENSE"}, {"license_key": "autoconf-simple-exception", "spdx_license_key": "LicenseRef-scancode-autoconf-simple-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "autoconf-simple-exception.json", "yml": "autoconf-simple-exception.yml", "html": "autoconf-simple-exception.html", "text": "autoconf-simple-exception.LICENSE"}, {"license_key": "autoconf-simple-exception-2.0", "spdx_license_key": "LicenseRef-scancode-autoconf-simple-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "autoconf-simple-exception-2.0.json", "yml": "autoconf-simple-exception-2.0.yml", "html": "autoconf-simple-exception-2.0.html", "text": "autoconf-simple-exception-2.0.LICENSE"}, {"license_key": "autoit-eula", "spdx_license_key": "LicenseRef-scancode-autoit-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "autoit-eula.json", "yml": "autoit-eula.yml", "html": "autoit-eula.html", "text": "autoit-eula.LICENSE"}, {"license_key": "autoopts-exception-2.0", "spdx_license_key": "LicenseRef-scancode-autoopts-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "autoopts-exception-2.0.json", "yml": "autoopts-exception-2.0.yml", "html": "autoopts-exception-2.0.html", "text": "autoopts-exception-2.0.LICENSE"}, {"license_key": "avisynth-c-interface-exception", "spdx_license_key": "LicenseRef-scancode-avisynth-c-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "avisynth-c-interface-exception.json", "yml": "avisynth-c-interface-exception.yml", "html": "avisynth-c-interface-exception.html", "text": "avisynth-c-interface-exception.LICENSE"}, {"license_key": "avisynth-linking-exception", "spdx_license_key": "LicenseRef-scancode-avisynth-linking-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "avisynth-linking-exception.json", "yml": "avisynth-linking-exception.yml", "html": "avisynth-linking-exception.html", "text": "avisynth-linking-exception.LICENSE"}, {"license_key": "bacula-exception", "spdx_license_key": "LicenseRef-scancode-bacula-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "bacula-exception.json", "yml": "bacula-exception.yml", "html": "bacula-exception.html", "text": "bacula-exception.LICENSE"}, {"license_key": "baekmuk-fonts", "spdx_license_key": "Baekmuk", "other_spdx_license_keys": ["LicenseRef-scancode-baekmuk-fonts"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "baekmuk-fonts.json", "yml": "baekmuk-fonts.yml", "html": "baekmuk-fonts.html", "text": "baekmuk-fonts.LICENSE"}, {"license_key": "bahyph", "spdx_license_key": "Bahyph", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bahyph.json", "yml": "bahyph.yml", "html": "bahyph.html", "text": "bahyph.LICENSE"}, {"license_key": "bakoma-fonts-1995", "spdx_license_key": "LicenseRef-scancode-bakoma-fonts-1995", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bakoma-fonts-1995.json", "yml": "bakoma-fonts-1995.yml", "html": "bakoma-fonts-1995.html", "text": "bakoma-fonts-1995.LICENSE"}, {"license_key": "bapl-1.0", "spdx_license_key": "LicenseRef-scancode-bapl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "bapl-1.0.json", "yml": "bapl-1.0.yml", "html": "bapl-1.0.html", "text": "bapl-1.0.LICENSE"}, {"license_key": "barr-tex", "spdx_license_key": "Barr", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "barr-tex.json", "yml": "barr-tex.yml", "html": "barr-tex.html", "text": "barr-tex.LICENSE"}, {"license_key": "bash-exception-gpl", "spdx_license_key": "LicenseRef-scancode-bash-exception-gpl-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "bash-exception-gpl.json", "yml": "bash-exception-gpl.yml", "html": "bash-exception-gpl.html", "text": "bash-exception-gpl.LICENSE"}, {"license_key": "bea-2.1", "spdx_license_key": "LicenseRef-scancode-bea-2.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bea-2.1.json", "yml": "bea-2.1.yml", "html": "bea-2.1.html", "text": "bea-2.1.LICENSE"}, {"license_key": "beal-screamer", "spdx_license_key": "LicenseRef-scancode-beal-screamer", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "beal-screamer.json", "yml": "beal-screamer.yml", "html": "beal-screamer.html", "text": "beal-screamer.LICENSE"}, {"license_key": "beerware", "spdx_license_key": "Beerware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "beerware.json", "yml": "beerware.yml", "html": "beerware.html", "text": "beerware.LICENSE"}, {"license_key": "bigdigits", "spdx_license_key": "LicenseRef-scancode-bigdigits", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bigdigits.json", "yml": "bigdigits.yml", "html": "bigdigits.html", "text": "bigdigits.LICENSE"}, {"license_key": "bigelow-holmes", "spdx_license_key": "LicenseRef-scancode-bigelow-holmes", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bigelow-holmes.json", "yml": "bigelow-holmes.yml", "html": "bigelow-holmes.html", "text": "bigelow-holmes.LICENSE"}, {"license_key": "binary-linux-firmware", "spdx_license_key": "LicenseRef-scancode-binary-linux-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "binary-linux-firmware.json", "yml": "binary-linux-firmware.yml", "html": "binary-linux-firmware.html", "text": "binary-linux-firmware.LICENSE"}, {"license_key": "binary-linux-firmware-patent", "spdx_license_key": "LicenseRef-scancode-binary-linux-firmware-patent", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "binary-linux-firmware-patent.json", "yml": "binary-linux-firmware-patent.yml", "html": "binary-linux-firmware-patent.html", "text": "binary-linux-firmware-patent.LICENSE"}, {"license_key": "biopython", "spdx_license_key": "LicenseRef-scancode-biopython", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "biopython.json", "yml": "biopython.yml", "html": "biopython.html", "text": "biopython.LICENSE"}, {"license_key": "biosl-4.0", "spdx_license_key": "LicenseRef-scancode-biosl-4.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Unstated License", "json": "biosl-4.0.json", "yml": "biosl-4.0.yml", "html": "biosl-4.0.html", "text": "biosl-4.0.LICENSE"}, {"license_key": "bison-exception-2.0", "spdx_license_key": "LicenseRef-scancode-bison-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "bison-exception-2.0.json", "yml": "bison-exception-2.0.yml", "html": "bison-exception-2.0.html", "text": "bison-exception-2.0.LICENSE"}, {"license_key": "bison-exception-2.2", "spdx_license_key": "Bison-exception-2.2", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "bison-exception-2.2.json", "yml": "bison-exception-2.2.yml", "html": "bison-exception-2.2.html", "text": "bison-exception-2.2.LICENSE"}, {"license_key": "bitstream", "spdx_license_key": "Bitstream-Vera", "other_spdx_license_keys": ["LicenseRef-scancode-bitstream"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bitstream.json", "yml": "bitstream.yml", "html": "bitstream.html", "text": "bitstream.LICENSE"}, {"license_key": "bittorrent-1.0", "spdx_license_key": "BitTorrent-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "bittorrent-1.0.json", "yml": "bittorrent-1.0.yml", "html": "bittorrent-1.0.html", "text": "bittorrent-1.0.LICENSE"}, {"license_key": "bittorrent-1.1", "spdx_license_key": "BitTorrent-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "bittorrent-1.1.json", "yml": "bittorrent-1.1.yml", "html": "bittorrent-1.1.html", "text": "bittorrent-1.1.LICENSE"}, {"license_key": "bittorrent-1.2", "spdx_license_key": "LicenseRef-scancode-bittorrent-1.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "bittorrent-1.2.json", "yml": "bittorrent-1.2.yml", "html": "bittorrent-1.2.html", "text": "bittorrent-1.2.LICENSE"}, {"license_key": "bittorrent-eula", "spdx_license_key": "LicenseRef-scancode-bittorrent-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "bittorrent-eula.json", "yml": "bittorrent-eula.yml", "html": "bittorrent-eula.html", "text": "bittorrent-eula.LICENSE"}, {"license_key": "bitwarden-1.0", "spdx_license_key": "LicenseRef-scancode-bitwarden-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "bitwarden-1.0.json", "yml": "bitwarden-1.0.yml", "html": "bitwarden-1.0.html", "text": "bitwarden-1.0.LICENSE"}, {"license_key": "bitzi-pd", "spdx_license_key": "LicenseRef-scancode-bitzi-pd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bitzi-pd.json", "yml": "bitzi-pd.yml", "html": "bitzi-pd.html", "text": "bitzi-pd.LICENSE"}, {"license_key": "blas-2017", "spdx_license_key": "LicenseRef-scancode-blas-2017", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "blas-2017.json", "yml": "blas-2017.yml", "html": "blas-2017.html", "text": "blas-2017.LICENSE"}, {"license_key": "blessing", "spdx_license_key": "blessing", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "blessing.json", "yml": "blessing.yml", "html": "blessing.html", "text": "blessing.LICENSE"}, {"license_key": "blitz-artistic", "spdx_license_key": "LicenseRef-scancode-blitz-artistic", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "blitz-artistic.json", "yml": "blitz-artistic.yml", "html": "blitz-artistic.html", "text": "blitz-artistic.LICENSE"}, {"license_key": "bloomberg-blpapi", "spdx_license_key": "LicenseRef-scancode-bloomberg-blpapi", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "bloomberg-blpapi.json", "yml": "bloomberg-blpapi.yml", "html": "bloomberg-blpapi.html", "text": "bloomberg-blpapi.LICENSE"}, {"license_key": "blueoak-1.0.0", "spdx_license_key": "BlueOak-1.0.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "blueoak-1.0.0.json", "yml": "blueoak-1.0.0.yml", "html": "blueoak-1.0.0.html", "text": "blueoak-1.0.0.LICENSE"}, {"license_key": "bohl-0.2", "spdx_license_key": "LicenseRef-scancode-bohl-0.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bohl-0.2.json", "yml": "bohl-0.2.yml", "html": "bohl-0.2.html", "text": "bohl-0.2.LICENSE"}, {"license_key": "boost-1.0", "spdx_license_key": "BSL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "boost-1.0.json", "yml": "boost-1.0.yml", "html": "boost-1.0.html", "text": "boost-1.0.LICENSE"}, {"license_key": "boost-original", "spdx_license_key": "LicenseRef-scancode-boost-original", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "boost-original.json", "yml": "boost-original.yml", "html": "boost-original.html", "text": "boost-original.LICENSE"}, {"license_key": "bootloader-exception", "spdx_license_key": "Bootloader-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "bootloader-exception.json", "yml": "bootloader-exception.yml", "html": "bootloader-exception.html", "text": "bootloader-exception.LICENSE"}, {"license_key": "borceux", "spdx_license_key": "Borceux", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "borceux.json", "yml": "borceux.yml", "html": "borceux.html", "text": "borceux.LICENSE"}, {"license_key": "bpel4ws-spec", "spdx_license_key": "LicenseRef-scancode-bpel4ws-spec", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "bpel4ws-spec.json", "yml": "bpel4ws-spec.yml", "html": "bpel4ws-spec.html", "text": "bpel4ws-spec.LICENSE"}, {"license_key": "bpmn-io", "spdx_license_key": "LicenseRef-scancode-bpmn-io", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bpmn-io.json", "yml": "bpmn-io.yml", "html": "bpmn-io.html", "text": "bpmn-io.LICENSE"}, {"license_key": "brad-martinez-vb-32", "spdx_license_key": "LicenseRef-scancode-brad-martinez-vb-32", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "brad-martinez-vb-32.json", "yml": "brad-martinez-vb-32.yml", "html": "brad-martinez-vb-32.html", "text": "brad-martinez-vb-32.LICENSE"}, {"license_key": "brent-corkum", "spdx_license_key": "LicenseRef-scancode-brent-corkum", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "brent-corkum.json", "yml": "brent-corkum.yml", "html": "brent-corkum.html", "text": "brent-corkum.LICENSE"}, {"license_key": "brian-clapper", "spdx_license_key": "LicenseRef-scancode-brian-clapper", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "brian-clapper.json", "yml": "brian-clapper.yml", "html": "brian-clapper.html", "text": "brian-clapper.LICENSE"}, {"license_key": "brian-gladman", "spdx_license_key": "LicenseRef-scancode-brian-gladman", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "brian-gladman.json", "yml": "brian-gladman.yml", "html": "brian-gladman.html", "text": "brian-gladman.LICENSE"}, {"license_key": "brian-gladman-3-clause", "spdx_license_key": "LicenseRef-scancode-brian-gladman-3-clause", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "brian-gladman-3-clause.json", "yml": "brian-gladman-3-clause.yml", "html": "brian-gladman-3-clause.html", "text": "brian-gladman-3-clause.LICENSE"}, {"license_key": "brian-gladman-dual", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "brian-gladman-dual.json", "yml": "brian-gladman-dual.yml", "html": "brian-gladman-dual.html", "text": "brian-gladman-dual.LICENSE"}, {"license_key": "broadcom-cfe", "spdx_license_key": "LicenseRef-scancode-broadcom-cfe", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "broadcom-cfe.json", "yml": "broadcom-cfe.yml", "html": "broadcom-cfe.html", "text": "broadcom-cfe.LICENSE"}, {"license_key": "broadcom-commercial", "spdx_license_key": "LicenseRef-scancode-broadcom-commercial", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "broadcom-commercial.json", "yml": "broadcom-commercial.yml", "html": "broadcom-commercial.html", "text": "broadcom-commercial.LICENSE"}, {"license_key": "broadcom-confidential", "spdx_license_key": "LicenseRef-scancode-broadcom-confidential", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "broadcom-confidential.json", "yml": "broadcom-confidential.yml", "html": "broadcom-confidential.html", "text": "broadcom-confidential.LICENSE"}, {"license_key": "broadcom-dual", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Copyleft", "json": "broadcom-dual.json", "yml": "broadcom-dual.yml", "html": "broadcom-dual.html", "text": "broadcom-dual.LICENSE"}, {"license_key": "broadcom-linking-exception-2.0", "spdx_license_key": "LicenseRef-scancode-bcm-linking-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "broadcom-linking-exception-2.0.json", "yml": "broadcom-linking-exception-2.0.yml", "html": "broadcom-linking-exception-2.0.html", "text": "broadcom-linking-exception-2.0.LICENSE"}, {"license_key": "broadcom-linking-unmodified", "spdx_license_key": "LicenseRef-scancode-broadcom-linking-unmodified", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "broadcom-linking-unmodified.json", "yml": "broadcom-linking-unmodified.yml", "html": "broadcom-linking-unmodified.html", "text": "broadcom-linking-unmodified.LICENSE"}, {"license_key": "broadcom-linux-firmware", "spdx_license_key": "LicenseRef-scancode-broadcom-linux-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "broadcom-linux-firmware.json", "yml": "broadcom-linux-firmware.yml", "html": "broadcom-linux-firmware.html", "text": "broadcom-linux-firmware.LICENSE"}, {"license_key": "broadcom-linux-timer", "spdx_license_key": "LicenseRef-scancode-broadcom-linux-timer", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "broadcom-linux-timer.json", "yml": "broadcom-linux-timer.yml", "html": "broadcom-linux-timer.html", "text": "broadcom-linux-timer.LICENSE"}, {"license_key": "broadcom-proprietary", "spdx_license_key": "LicenseRef-scancode-broadcom-proprietary", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "broadcom-proprietary.json", "yml": "broadcom-proprietary.yml", "html": "broadcom-proprietary.html", "text": "broadcom-proprietary.LICENSE"}, {"license_key": "broadcom-raspberry-pi", "spdx_license_key": "LicenseRef-scancode-broadcom-raspberry-pi", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "broadcom-raspberry-pi.json", "yml": "broadcom-raspberry-pi.yml", "html": "broadcom-raspberry-pi.html", "text": "broadcom-raspberry-pi.LICENSE"}, {"license_key": "broadcom-standard-terms", "spdx_license_key": "LicenseRef-scancode-broadcom-standard-terms", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "broadcom-standard-terms.json", "yml": "broadcom-standard-terms.yml", "html": "broadcom-standard-terms.html", "text": "broadcom-standard-terms.LICENSE"}, {"license_key": "broadcom-unpublished-source", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Commercial", "json": "broadcom-unpublished-source.json", "yml": "broadcom-unpublished-source.yml", "html": "broadcom-unpublished-source.html", "text": "broadcom-unpublished-source.LICENSE"}, {"license_key": "broadcom-wiced", "spdx_license_key": "LicenseRef-scancode-broadcom-wiced", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "broadcom-wiced.json", "yml": "broadcom-wiced.yml", "html": "broadcom-wiced.html", "text": "broadcom-wiced.LICENSE"}, {"license_key": "broadleaf-fair-use", "spdx_license_key": "LicenseRef-scancode-broadleaf-fair-use", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "broadleaf-fair-use.json", "yml": "broadleaf-fair-use.yml", "html": "broadleaf-fair-use.html", "text": "broadleaf-fair-use.LICENSE"}, {"license_key": "brocade-firmware", "spdx_license_key": "LicenseRef-scancode-brocade-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "brocade-firmware.json", "yml": "brocade-firmware.yml", "html": "brocade-firmware.html", "text": "brocade-firmware.LICENSE"}, {"license_key": "bruno-podetti", "spdx_license_key": "LicenseRef-scancode-bruno-podetti", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bruno-podetti.json", "yml": "bruno-podetti.yml", "html": "bruno-podetti.html", "text": "bruno-podetti.LICENSE"}, {"license_key": "bsd-1-clause", "spdx_license_key": "BSD-1-Clause", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-1-clause.json", "yml": "bsd-1-clause.yml", "html": "bsd-1-clause.html", "text": "bsd-1-clause.LICENSE"}, {"license_key": "bsd-1-clause-build", "spdx_license_key": "LicenseRef-scancode-bsd-1-clause-build", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-1-clause-build.json", "yml": "bsd-1-clause-build.yml", "html": "bsd-1-clause-build.html", "text": "bsd-1-clause-build.LICENSE"}, {"license_key": "bsd-1988", "spdx_license_key": "LicenseRef-scancode-bsd-1988", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-1988.json", "yml": "bsd-1988.yml", "html": "bsd-1988.html", "text": "bsd-1988.LICENSE"}, {"license_key": "bsd-2-clause-freebsd", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "bsd-2-clause-freebsd.json", "yml": "bsd-2-clause-freebsd.yml", "html": "bsd-2-clause-freebsd.html", "text": "bsd-2-clause-freebsd.LICENSE"}, {"license_key": "bsd-2-clause-netbsd", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "bsd-2-clause-netbsd.json", "yml": "bsd-2-clause-netbsd.yml", "html": "bsd-2-clause-netbsd.html", "text": "bsd-2-clause-netbsd.LICENSE"}, {"license_key": "bsd-2-clause-plus-advertizing", "spdx_license_key": "LicenseRef-scancode-bsd-2-clause-plus-advertizing", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-2-clause-plus-advertizing.json", "yml": "bsd-2-clause-plus-advertizing.yml", "html": "bsd-2-clause-plus-advertizing.html", "text": "bsd-2-clause-plus-advertizing.LICENSE"}, {"license_key": "bsd-2-clause-views", "spdx_license_key": "BSD-2-Clause-Views", "other_spdx_license_keys": ["BSD-2-Clause-FreeBSD"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-2-clause-views.json", "yml": "bsd-2-clause-views.yml", "html": "bsd-2-clause-views.html", "text": "bsd-2-clause-views.LICENSE"}, {"license_key": "bsd-3-clause-devine", "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-devine", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-3-clause-devine.json", "yml": "bsd-3-clause-devine.yml", "html": "bsd-3-clause-devine.html", "text": "bsd-3-clause-devine.LICENSE"}, {"license_key": "bsd-3-clause-fda", "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-fda", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-3-clause-fda.json", "yml": "bsd-3-clause-fda.yml", "html": "bsd-3-clause-fda.html", "text": "bsd-3-clause-fda.LICENSE"}, {"license_key": "bsd-3-clause-jtag", "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-jtag", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-3-clause-jtag.json", "yml": "bsd-3-clause-jtag.yml", "html": "bsd-3-clause-jtag.html", "text": "bsd-3-clause-jtag.LICENSE"}, {"license_key": "bsd-3-clause-no-change", "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-no-change", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-3-clause-no-change.json", "yml": "bsd-3-clause-no-change.yml", "html": "bsd-3-clause-no-change.html", "text": "bsd-3-clause-no-change.LICENSE"}, {"license_key": "bsd-3-clause-no-military", "spdx_license_key": "BSD-3-Clause-No-Military-License", "other_spdx_license_keys": ["LicenseRef-scancode-bsd-3-clause-no-military"], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "bsd-3-clause-no-military.json", "yml": "bsd-3-clause-no-military.yml", "html": "bsd-3-clause-no-military.html", "text": "bsd-3-clause-no-military.LICENSE"}, {"license_key": "bsd-3-clause-no-nuclear-warranty", "spdx_license_key": "BSD-3-Clause-No-Nuclear-Warranty", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "bsd-3-clause-no-nuclear-warranty.json", "yml": "bsd-3-clause-no-nuclear-warranty.yml", "html": "bsd-3-clause-no-nuclear-warranty.html", "text": "bsd-3-clause-no-nuclear-warranty.LICENSE"}, {"license_key": "bsd-3-clause-no-trademark", "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-no-trademark", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-3-clause-no-trademark.json", "yml": "bsd-3-clause-no-trademark.yml", "html": "bsd-3-clause-no-trademark.html", "text": "bsd-3-clause-no-trademark.LICENSE"}, {"license_key": "bsd-3-clause-open-mpi", "spdx_license_key": "BSD-3-Clause-Open-MPI", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-3-clause-open-mpi.json", "yml": "bsd-3-clause-open-mpi.yml", "html": "bsd-3-clause-open-mpi.html", "text": "bsd-3-clause-open-mpi.LICENSE"}, {"license_key": "bsd-3-clause-sun", "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-sun", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-3-clause-sun.json", "yml": "bsd-3-clause-sun.yml", "html": "bsd-3-clause-sun.html", "text": "bsd-3-clause-sun.LICENSE"}, {"license_key": "bsd-4-clause-shortened", "spdx_license_key": "BSD-4-Clause-Shortened", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-4-clause-shortened.json", "yml": "bsd-4-clause-shortened.yml", "html": "bsd-4-clause-shortened.html", "text": "bsd-4-clause-shortened.LICENSE"}, {"license_key": "bsd-ack", "spdx_license_key": "BSD-3-Clause-Attribution", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-ack.json", "yml": "bsd-ack.yml", "html": "bsd-ack.html", "text": "bsd-ack.LICENSE"}, {"license_key": "bsd-ack-carrot2", "spdx_license_key": "LicenseRef-scancode-bsd-ack-carrot2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-ack-carrot2.json", "yml": "bsd-ack-carrot2.yml", "html": "bsd-ack-carrot2.html", "text": "bsd-ack-carrot2.LICENSE"}, {"license_key": "bsd-artwork", "spdx_license_key": "LicenseRef-scancode-bsd-artwork", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-artwork.json", "yml": "bsd-artwork.yml", "html": "bsd-artwork.html", "text": "bsd-artwork.LICENSE"}, {"license_key": "bsd-atmel", "spdx_license_key": "LicenseRef-scancode-bsd-atmel", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-atmel.json", "yml": "bsd-atmel.yml", "html": "bsd-atmel.html", "text": "bsd-atmel.LICENSE"}, {"license_key": "bsd-axis", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "bsd-axis.json", "yml": "bsd-axis.yml", "html": "bsd-axis.html", "text": "bsd-axis.LICENSE"}, {"license_key": "bsd-axis-nomod", "spdx_license_key": "LicenseRef-scancode-bsd-axis-nomod", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-axis-nomod.json", "yml": "bsd-axis-nomod.yml", "html": "bsd-axis-nomod.html", "text": "bsd-axis-nomod.LICENSE"}, {"license_key": "bsd-credit", "spdx_license_key": "LicenseRef-scancode-bsd-credit", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-credit.json", "yml": "bsd-credit.yml", "html": "bsd-credit.html", "text": "bsd-credit.LICENSE"}, {"license_key": "bsd-dpt", "spdx_license_key": "LicenseRef-scancode-bsd-dpt", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-dpt.json", "yml": "bsd-dpt.yml", "html": "bsd-dpt.html", "text": "bsd-dpt.LICENSE"}, {"license_key": "bsd-export", "spdx_license_key": "LicenseRef-scancode-bsd-export", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-export.json", "yml": "bsd-export.yml", "html": "bsd-export.html", "text": "bsd-export.LICENSE"}, {"license_key": "bsd-innosys", "spdx_license_key": "LicenseRef-scancode-bsd-innosys", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-innosys.json", "yml": "bsd-innosys.yml", "html": "bsd-innosys.html", "text": "bsd-innosys.LICENSE"}, {"license_key": "bsd-intel", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "bsd-intel.json", "yml": "bsd-intel.yml", "html": "bsd-intel.html", "text": "bsd-intel.LICENSE"}, {"license_key": "bsd-mylex", "spdx_license_key": "LicenseRef-scancode-bsd-mylex", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-mylex.json", "yml": "bsd-mylex.yml", "html": "bsd-mylex.html", "text": "bsd-mylex.LICENSE"}, {"license_key": "bsd-new", "spdx_license_key": "BSD-3-Clause", "other_spdx_license_keys": ["LicenseRef-scancode-libzip"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-new.json", "yml": "bsd-new.yml", "html": "bsd-new.html", "text": "bsd-new.LICENSE"}, {"license_key": "bsd-new-derivative", "spdx_license_key": "LicenseRef-scancode-bsd-new-derivative", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-new-derivative.json", "yml": "bsd-new-derivative.yml", "html": "bsd-new-derivative.html", "text": "bsd-new-derivative.LICENSE"}, {"license_key": "bsd-new-far-manager", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Permissive", "json": "bsd-new-far-manager.json", "yml": "bsd-new-far-manager.yml", "html": "bsd-new-far-manager.html", "text": "bsd-new-far-manager.LICENSE"}, {"license_key": "bsd-new-nomod", "spdx_license_key": "LicenseRef-scancode-bsd-new-nomod", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-new-nomod.json", "yml": "bsd-new-nomod.yml", "html": "bsd-new-nomod.html", "text": "bsd-new-nomod.LICENSE"}, {"license_key": "bsd-new-tcpdump", "spdx_license_key": "LicenseRef-scancode-bsd-new-tcpdump", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-new-tcpdump.json", "yml": "bsd-new-tcpdump.yml", "html": "bsd-new-tcpdump.html", "text": "bsd-new-tcpdump.LICENSE"}, {"license_key": "bsd-no-disclaimer", "spdx_license_key": "LicenseRef-scancode-bsd-no-disclaimer", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-no-disclaimer.json", "yml": "bsd-no-disclaimer.yml", "html": "bsd-no-disclaimer.html", "text": "bsd-no-disclaimer.LICENSE"}, {"license_key": "bsd-no-disclaimer-unmodified", "spdx_license_key": "LicenseRef-scancode-bsd-no-disclaimer-unmodified", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-no-disclaimer-unmodified.json", "yml": "bsd-no-disclaimer-unmodified.yml", "html": "bsd-no-disclaimer-unmodified.html", "text": "bsd-no-disclaimer-unmodified.LICENSE"}, {"license_key": "bsd-no-mod", "spdx_license_key": "LicenseRef-scancode-bsd-no-mod", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "bsd-no-mod.json", "yml": "bsd-no-mod.yml", "html": "bsd-no-mod.html", "text": "bsd-no-mod.LICENSE"}, {"license_key": "bsd-original", "spdx_license_key": "BSD-4-Clause", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-original.json", "yml": "bsd-original.yml", "html": "bsd-original.html", "text": "bsd-original.LICENSE"}, {"license_key": "bsd-original-muscle", "spdx_license_key": "LicenseRef-scancode-bsd-original-muscle", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-original-muscle.json", "yml": "bsd-original-muscle.yml", "html": "bsd-original-muscle.html", "text": "bsd-original-muscle.LICENSE"}, {"license_key": "bsd-original-uc", "spdx_license_key": "BSD-4-Clause-UC", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-original-uc.json", "yml": "bsd-original-uc.yml", "html": "bsd-original-uc.html", "text": "bsd-original-uc.LICENSE"}, {"license_key": "bsd-original-uc-1986", "spdx_license_key": "LicenseRef-scancode-bsd-original-uc-1986", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-original-uc-1986.json", "yml": "bsd-original-uc-1986.yml", "html": "bsd-original-uc-1986.html", "text": "bsd-original-uc-1986.LICENSE"}, {"license_key": "bsd-original-uc-1990", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "bsd-original-uc-1990.json", "yml": "bsd-original-uc-1990.yml", "html": "bsd-original-uc-1990.html", "text": "bsd-original-uc-1990.LICENSE"}, {"license_key": "bsd-original-voices", "spdx_license_key": "LicenseRef-scancode-bsd-original-voices", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-original-voices.json", "yml": "bsd-original-voices.yml", "html": "bsd-original-voices.html", "text": "bsd-original-voices.LICENSE"}, {"license_key": "bsd-plus-mod-notice", "spdx_license_key": "LicenseRef-scancode-bsd-plus-mod-notice", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-plus-mod-notice.json", "yml": "bsd-plus-mod-notice.yml", "html": "bsd-plus-mod-notice.html", "text": "bsd-plus-mod-notice.LICENSE"}, {"license_key": "bsd-plus-patent", "spdx_license_key": "BSD-2-Clause-Patent", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-plus-patent.json", "yml": "bsd-plus-patent.yml", "html": "bsd-plus-patent.html", "text": "bsd-plus-patent.LICENSE"}, {"license_key": "bsd-protection", "spdx_license_key": "BSD-Protection", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "bsd-protection.json", "yml": "bsd-protection.yml", "html": "bsd-protection.html", "text": "bsd-protection.LICENSE"}, {"license_key": "bsd-simplified", "spdx_license_key": "BSD-2-Clause", "other_spdx_license_keys": ["BSD-2-Clause-NetBSD", "BSD-2"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-simplified.json", "yml": "bsd-simplified.yml", "html": "bsd-simplified.html", "text": "bsd-simplified.LICENSE"}, {"license_key": "bsd-simplified-darwin", "spdx_license_key": "LicenseRef-scancode-bsd-simplified-darwin", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-simplified-darwin.json", "yml": "bsd-simplified-darwin.yml", "html": "bsd-simplified-darwin.html", "text": "bsd-simplified-darwin.LICENSE"}, {"license_key": "bsd-simplified-intel", "spdx_license_key": "LicenseRef-scancode-bsd-simplified-intel", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-simplified-intel.json", "yml": "bsd-simplified-intel.yml", "html": "bsd-simplified-intel.html", "text": "bsd-simplified-intel.LICENSE"}, {"license_key": "bsd-simplified-source", "spdx_license_key": "LicenseRef-scancode-bsd-simplified-source", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-simplified-source.json", "yml": "bsd-simplified-source.yml", "html": "bsd-simplified-source.html", "text": "bsd-simplified-source.LICENSE"}, {"license_key": "bsd-source-code", "spdx_license_key": "BSD-Source-Code", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-source-code.json", "yml": "bsd-source-code.yml", "html": "bsd-source-code.html", "text": "bsd-source-code.LICENSE"}, {"license_key": "bsd-top", "spdx_license_key": "LicenseRef-scancode-bsd-top", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-top.json", "yml": "bsd-top.yml", "html": "bsd-top.html", "text": "bsd-top.LICENSE"}, {"license_key": "bsd-top-gpl-addition", "spdx_license_key": "LicenseRef-scancode-bsd-top-gpl-addition", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-top-gpl-addition.json", "yml": "bsd-top-gpl-addition.yml", "html": "bsd-top-gpl-addition.html", "text": "bsd-top-gpl-addition.LICENSE"}, {"license_key": "bsd-unchanged", "spdx_license_key": "LicenseRef-scancode-bsd-unchanged", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-unchanged.json", "yml": "bsd-unchanged.yml", "html": "bsd-unchanged.html", "text": "bsd-unchanged.LICENSE"}, {"license_key": "bsd-unmodified", "spdx_license_key": "LicenseRef-scancode-bsd-unmodified", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-unmodified.json", "yml": "bsd-unmodified.yml", "html": "bsd-unmodified.html", "text": "bsd-unmodified.LICENSE"}, {"license_key": "bsd-x11", "spdx_license_key": "LicenseRef-scancode-bsd-x11", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-x11.json", "yml": "bsd-x11.yml", "html": "bsd-x11.html", "text": "bsd-x11.LICENSE"}, {"license_key": "bsd-zero", "spdx_license_key": "0BSD", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsd-zero.json", "yml": "bsd-zero.yml", "html": "bsd-zero.html", "text": "bsd-zero.LICENSE"}, {"license_key": "bsl-1.0", "spdx_license_key": "LicenseRef-scancode-bsl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "bsl-1.0.json", "yml": "bsl-1.0.yml", "html": "bsl-1.0.html", "text": "bsl-1.0.LICENSE"}, {"license_key": "bsl-1.1", "spdx_license_key": "BUSL-1.1", "other_spdx_license_keys": ["LicenseRef-scancode-bsl-1.1"], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "bsl-1.1.json", "yml": "bsl-1.1.yml", "html": "bsl-1.1.html", "text": "bsl-1.1.LICENSE"}, {"license_key": "bsla", "spdx_license_key": "LicenseRef-scancode-bsla", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsla.json", "yml": "bsla.yml", "html": "bsla.html", "text": "bsla.LICENSE"}, {"license_key": "bsla-no-advert", "spdx_license_key": "LicenseRef-scancode-bsla-no-advert", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bsla-no-advert.json", "yml": "bsla-no-advert.yml", "html": "bsla-no-advert.html", "text": "bsla-no-advert.LICENSE"}, {"license_key": "bugsense-sdk", "spdx_license_key": "LicenseRef-scancode-bugsense-sdk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "bugsense-sdk.json", "yml": "bugsense-sdk.yml", "html": "bugsense-sdk.html", "text": "bugsense-sdk.LICENSE"}, {"license_key": "bytemark", "spdx_license_key": "LicenseRef-scancode-bytemark", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bytemark.json", "yml": "bytemark.yml", "html": "bytemark.html", "text": "bytemark.LICENSE"}, {"license_key": "bzip2-libbzip-1.0.5", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "bzip2-libbzip-1.0.5.json", "yml": "bzip2-libbzip-1.0.5.yml", "html": "bzip2-libbzip-1.0.5.html", "text": "bzip2-libbzip-1.0.5.LICENSE"}, {"license_key": "bzip2-libbzip-2010", "spdx_license_key": "bzip2-1.0.6", "other_spdx_license_keys": ["bzip2-1.0.5"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "bzip2-libbzip-2010.json", "yml": "bzip2-libbzip-2010.yml", "html": "bzip2-libbzip-2010.html", "text": "bzip2-libbzip-2010.LICENSE"}, {"license_key": "c-fsl-1.1", "spdx_license_key": "LicenseRef-scancode-c-fsl-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "c-fsl-1.1.json", "yml": "c-fsl-1.1.yml", "html": "c-fsl-1.1.html", "text": "c-fsl-1.1.LICENSE"}, {"license_key": "c-uda-1.0", "spdx_license_key": "C-UDA-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "c-uda-1.0.json", "yml": "c-uda-1.0.yml", "html": "c-uda-1.0.html", "text": "c-uda-1.0.LICENSE"}, {"license_key": "ca-tosl-1.1", "spdx_license_key": "CATOSL-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "ca-tosl-1.1.json", "yml": "ca-tosl-1.1.yml", "html": "ca-tosl-1.1.html", "text": "ca-tosl-1.1.LICENSE"}, {"license_key": "cadence-linux-firmware", "spdx_license_key": "LicenseRef-scancode-cadence-linux-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "cadence-linux-firmware.json", "yml": "cadence-linux-firmware.yml", "html": "cadence-linux-firmware.html", "text": "cadence-linux-firmware.LICENSE"}, {"license_key": "cal-1.0", "spdx_license_key": "CAL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "cal-1.0.json", "yml": "cal-1.0.yml", "html": "cal-1.0.html", "text": "cal-1.0.LICENSE"}, {"license_key": "cal-1.0-combined-work-exception", "spdx_license_key": "CAL-1.0-Combined-Work-Exception", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cal-1.0-combined-work-exception.json", "yml": "cal-1.0-combined-work-exception.yml", "html": "cal-1.0-combined-work-exception.html", "text": "cal-1.0-combined-work-exception.LICENSE"}, {"license_key": "caldera", "spdx_license_key": "Caldera", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "caldera.json", "yml": "caldera.yml", "html": "caldera.html", "text": "caldera.LICENSE"}, {"license_key": "can-ogl-2.0-en", "spdx_license_key": "OGL-Canada-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "can-ogl-2.0-en.json", "yml": "can-ogl-2.0-en.yml", "html": "can-ogl-2.0-en.html", "text": "can-ogl-2.0-en.LICENSE"}, {"license_key": "can-ogl-alberta-2.1", "spdx_license_key": "LicenseRef-scancode-can-ogl-alberta-2.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "can-ogl-alberta-2.1.json", "yml": "can-ogl-alberta-2.1.yml", "html": "can-ogl-alberta-2.1.html", "text": "can-ogl-alberta-2.1.LICENSE"}, {"license_key": "can-ogl-british-columbia-2.0", "spdx_license_key": "LicenseRef-scancode-can-ogl-british-columbia-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "can-ogl-british-columbia-2.0.json", "yml": "can-ogl-british-columbia-2.0.yml", "html": "can-ogl-british-columbia-2.0.html", "text": "can-ogl-british-columbia-2.0.LICENSE"}, {"license_key": "can-ogl-nova-scotia-1.0", "spdx_license_key": "LicenseRef-scancode-can-ogl-nova-scotia-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "can-ogl-nova-scotia-1.0.json", "yml": "can-ogl-nova-scotia-1.0.yml", "html": "can-ogl-nova-scotia-1.0.html", "text": "can-ogl-nova-scotia-1.0.LICENSE"}, {"license_key": "can-ogl-ontario-1.0", "spdx_license_key": "LicenseRef-scancode-can-ogl-ontario-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "can-ogl-ontario-1.0.json", "yml": "can-ogl-ontario-1.0.yml", "html": "can-ogl-ontario-1.0.html", "text": "can-ogl-ontario-1.0.LICENSE"}, {"license_key": "can-ogl-toronto-1.0", "spdx_license_key": "LicenseRef-scancode-can-ogl-toronto-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "can-ogl-toronto-1.0.json", "yml": "can-ogl-toronto-1.0.yml", "html": "can-ogl-toronto-1.0.html", "text": "can-ogl-toronto-1.0.LICENSE"}, {"license_key": "careware", "spdx_license_key": "LicenseRef-scancode-careware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "careware.json", "yml": "careware.yml", "html": "careware.html", "text": "careware.LICENSE"}, {"license_key": "carnegie-mellon", "spdx_license_key": "LicenseRef-scancode-carnegie-mellon", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "carnegie-mellon.json", "yml": "carnegie-mellon.yml", "html": "carnegie-mellon.html", "text": "carnegie-mellon.LICENSE"}, {"license_key": "carnegie-mellon-contributors", "spdx_license_key": "LicenseRef-scancode-carnegie-mellon-contributors", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "carnegie-mellon-contributors.json", "yml": "carnegie-mellon-contributors.yml", "html": "carnegie-mellon-contributors.html", "text": "carnegie-mellon-contributors.LICENSE"}, {"license_key": "cavium-linux-firmware", "spdx_license_key": "LicenseRef-scancode-cavium-linux-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "cavium-linux-firmware.json", "yml": "cavium-linux-firmware.yml", "html": "cavium-linux-firmware.html", "text": "cavium-linux-firmware.LICENSE"}, {"license_key": "cavium-malloc", "spdx_license_key": "LicenseRef-scancode-cavium-malloc", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cavium-malloc.json", "yml": "cavium-malloc.yml", "html": "cavium-malloc.html", "text": "cavium-malloc.LICENSE"}, {"license_key": "cavium-targeted-hardware", "spdx_license_key": "LicenseRef-scancode-cavium-targeted-hardware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "cavium-targeted-hardware.json", "yml": "cavium-targeted-hardware.yml", "html": "cavium-targeted-hardware.html", "text": "cavium-targeted-hardware.LICENSE"}, {"license_key": "cc-by-1.0", "spdx_license_key": "CC-BY-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cc-by-1.0.json", "yml": "cc-by-1.0.yml", "html": "cc-by-1.0.html", "text": "cc-by-1.0.LICENSE"}, {"license_key": "cc-by-2.0", "spdx_license_key": "CC-BY-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cc-by-2.0.json", "yml": "cc-by-2.0.yml", "html": "cc-by-2.0.html", "text": "cc-by-2.0.LICENSE"}, {"license_key": "cc-by-2.0-uk", "spdx_license_key": "LicenseRef-scancode-cc-by-2.0-uk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cc-by-2.0-uk.json", "yml": "cc-by-2.0-uk.yml", "html": "cc-by-2.0-uk.html", "text": "cc-by-2.0-uk.LICENSE"}, {"license_key": "cc-by-2.5", "spdx_license_key": "CC-BY-2.5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cc-by-2.5.json", "yml": "cc-by-2.5.yml", "html": "cc-by-2.5.html", "text": "cc-by-2.5.LICENSE"}, {"license_key": "cc-by-2.5-au", "spdx_license_key": "CC-BY-2.5-AU", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cc-by-2.5-au.json", "yml": "cc-by-2.5-au.yml", "html": "cc-by-2.5-au.html", "text": "cc-by-2.5-au.LICENSE"}, {"license_key": "cc-by-3.0", "spdx_license_key": "CC-BY-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cc-by-3.0.json", "yml": "cc-by-3.0.yml", "html": "cc-by-3.0.html", "text": "cc-by-3.0.LICENSE"}, {"license_key": "cc-by-3.0-at", "spdx_license_key": "CC-BY-3.0-AT", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cc-by-3.0-at.json", "yml": "cc-by-3.0-at.yml", "html": "cc-by-3.0-at.html", "text": "cc-by-3.0-at.LICENSE"}, {"license_key": "cc-by-3.0-de", "spdx_license_key": "CC-BY-3.0-DE", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cc-by-3.0-de.json", "yml": "cc-by-3.0-de.yml", "html": "cc-by-3.0-de.html", "text": "cc-by-3.0-de.LICENSE"}, {"license_key": "cc-by-3.0-nl", "spdx_license_key": "CC-BY-3.0-NL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cc-by-3.0-nl.json", "yml": "cc-by-3.0-nl.yml", "html": "cc-by-3.0-nl.html", "text": "cc-by-3.0-nl.LICENSE"}, {"license_key": "cc-by-3.0-us", "spdx_license_key": "CC-BY-3.0-US", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cc-by-3.0-us.json", "yml": "cc-by-3.0-us.yml", "html": "cc-by-3.0-us.html", "text": "cc-by-3.0-us.LICENSE"}, {"license_key": "cc-by-4.0", "spdx_license_key": "CC-BY-4.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cc-by-4.0.json", "yml": "cc-by-4.0.yml", "html": "cc-by-4.0.html", "text": "cc-by-4.0.LICENSE"}, {"license_key": "cc-by-nc-1.0", "spdx_license_key": "CC-BY-NC-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-1.0.json", "yml": "cc-by-nc-1.0.yml", "html": "cc-by-nc-1.0.html", "text": "cc-by-nc-1.0.LICENSE"}, {"license_key": "cc-by-nc-2.0", "spdx_license_key": "CC-BY-NC-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-2.0.json", "yml": "cc-by-nc-2.0.yml", "html": "cc-by-nc-2.0.html", "text": "cc-by-nc-2.0.LICENSE"}, {"license_key": "cc-by-nc-2.5", "spdx_license_key": "CC-BY-NC-2.5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-2.5.json", "yml": "cc-by-nc-2.5.yml", "html": "cc-by-nc-2.5.html", "text": "cc-by-nc-2.5.LICENSE"}, {"license_key": "cc-by-nc-3.0", "spdx_license_key": "CC-BY-NC-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-3.0.json", "yml": "cc-by-nc-3.0.yml", "html": "cc-by-nc-3.0.html", "text": "cc-by-nc-3.0.LICENSE"}, {"license_key": "cc-by-nc-3.0-de", "spdx_license_key": "CC-BY-NC-3.0-DE", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "cc-by-nc-3.0-de.json", "yml": "cc-by-nc-3.0-de.yml", "html": "cc-by-nc-3.0-de.html", "text": "cc-by-nc-3.0-de.LICENSE"}, {"license_key": "cc-by-nc-4.0", "spdx_license_key": "CC-BY-NC-4.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-4.0.json", "yml": "cc-by-nc-4.0.yml", "html": "cc-by-nc-4.0.html", "text": "cc-by-nc-4.0.LICENSE"}, {"license_key": "cc-by-nc-nd-1.0", "spdx_license_key": "CC-BY-NC-ND-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-nd-1.0.json", "yml": "cc-by-nc-nd-1.0.yml", "html": "cc-by-nc-nd-1.0.html", "text": "cc-by-nc-nd-1.0.LICENSE"}, {"license_key": "cc-by-nc-nd-2.0", "spdx_license_key": "CC-BY-NC-ND-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-nd-2.0.json", "yml": "cc-by-nc-nd-2.0.yml", "html": "cc-by-nc-nd-2.0.html", "text": "cc-by-nc-nd-2.0.LICENSE"}, {"license_key": "cc-by-nc-nd-2.0-at", "spdx_license_key": "LicenseRef-scancode-cc-by-nc-nd-2.0-at", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "cc-by-nc-nd-2.0-at.json", "yml": "cc-by-nc-nd-2.0-at.yml", "html": "cc-by-nc-nd-2.0-at.html", "text": "cc-by-nc-nd-2.0-at.LICENSE"}, {"license_key": "cc-by-nc-nd-2.0-au", "spdx_license_key": "LicenseRef-scancode-cc-by-nc-nd-2.0-au", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-nd-2.0-au.json", "yml": "cc-by-nc-nd-2.0-au.yml", "html": "cc-by-nc-nd-2.0-au.html", "text": "cc-by-nc-nd-2.0-au.LICENSE"}, {"license_key": "cc-by-nc-nd-2.5", "spdx_license_key": "CC-BY-NC-ND-2.5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-nd-2.5.json", "yml": "cc-by-nc-nd-2.5.yml", "html": "cc-by-nc-nd-2.5.html", "text": "cc-by-nc-nd-2.5.LICENSE"}, {"license_key": "cc-by-nc-nd-3.0", "spdx_license_key": "CC-BY-NC-ND-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-nd-3.0.json", "yml": "cc-by-nc-nd-3.0.yml", "html": "cc-by-nc-nd-3.0.html", "text": "cc-by-nc-nd-3.0.LICENSE"}, {"license_key": "cc-by-nc-nd-3.0-de", "spdx_license_key": "CC-BY-NC-ND-3.0-DE", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "cc-by-nc-nd-3.0-de.json", "yml": "cc-by-nc-nd-3.0-de.yml", "html": "cc-by-nc-nd-3.0-de.html", "text": "cc-by-nc-nd-3.0-de.LICENSE"}, {"license_key": "cc-by-nc-nd-3.0-igo", "spdx_license_key": "CC-BY-NC-ND-3.0-IGO", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-nd-3.0-igo.json", "yml": "cc-by-nc-nd-3.0-igo.yml", "html": "cc-by-nc-nd-3.0-igo.html", "text": "cc-by-nc-nd-3.0-igo.LICENSE"}, {"license_key": "cc-by-nc-nd-4.0", "spdx_license_key": "CC-BY-NC-ND-4.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-nd-4.0.json", "yml": "cc-by-nc-nd-4.0.yml", "html": "cc-by-nc-nd-4.0.html", "text": "cc-by-nc-nd-4.0.LICENSE"}, {"license_key": "cc-by-nc-sa-1.0", "spdx_license_key": "CC-BY-NC-SA-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-sa-1.0.json", "yml": "cc-by-nc-sa-1.0.yml", "html": "cc-by-nc-sa-1.0.html", "text": "cc-by-nc-sa-1.0.LICENSE"}, {"license_key": "cc-by-nc-sa-2.0", "spdx_license_key": "CC-BY-NC-SA-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-sa-2.0.json", "yml": "cc-by-nc-sa-2.0.yml", "html": "cc-by-nc-sa-2.0.html", "text": "cc-by-nc-sa-2.0.LICENSE"}, {"license_key": "cc-by-nc-sa-2.0-fr", "spdx_license_key": "CC-BY-NC-SA-2.0-FR", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-sa-2.0-fr.json", "yml": "cc-by-nc-sa-2.0-fr.yml", "html": "cc-by-nc-sa-2.0-fr.html", "text": "cc-by-nc-sa-2.0-fr.LICENSE"}, {"license_key": "cc-by-nc-sa-2.0-uk", "spdx_license_key": "CC-BY-NC-SA-2.0-UK", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-sa-2.0-uk.json", "yml": "cc-by-nc-sa-2.0-uk.yml", "html": "cc-by-nc-sa-2.0-uk.html", "text": "cc-by-nc-sa-2.0-uk.LICENSE"}, {"license_key": "cc-by-nc-sa-2.5", "spdx_license_key": "CC-BY-NC-SA-2.5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-sa-2.5.json", "yml": "cc-by-nc-sa-2.5.yml", "html": "cc-by-nc-sa-2.5.html", "text": "cc-by-nc-sa-2.5.LICENSE"}, {"license_key": "cc-by-nc-sa-3.0", "spdx_license_key": "CC-BY-NC-SA-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-sa-3.0.json", "yml": "cc-by-nc-sa-3.0.yml", "html": "cc-by-nc-sa-3.0.html", "text": "cc-by-nc-sa-3.0.LICENSE"}, {"license_key": "cc-by-nc-sa-3.0-de", "spdx_license_key": "CC-BY-NC-SA-3.0-DE", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-sa-3.0-de.json", "yml": "cc-by-nc-sa-3.0-de.yml", "html": "cc-by-nc-sa-3.0-de.html", "text": "cc-by-nc-sa-3.0-de.LICENSE"}, {"license_key": "cc-by-nc-sa-3.0-igo", "spdx_license_key": "CC-BY-NC-SA-3.0-IGO", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-sa-3.0-igo.json", "yml": "cc-by-nc-sa-3.0-igo.yml", "html": "cc-by-nc-sa-3.0-igo.html", "text": "cc-by-nc-sa-3.0-igo.LICENSE"}, {"license_key": "cc-by-nc-sa-3.0-us", "spdx_license_key": "LicenseRef-scancode-cc-by-nc-sa-3.0-us", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-sa-3.0-us.json", "yml": "cc-by-nc-sa-3.0-us.yml", "html": "cc-by-nc-sa-3.0-us.html", "text": "cc-by-nc-sa-3.0-us.LICENSE"}, {"license_key": "cc-by-nc-sa-4.0", "spdx_license_key": "CC-BY-NC-SA-4.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nc-sa-4.0.json", "yml": "cc-by-nc-sa-4.0.yml", "html": "cc-by-nc-sa-4.0.html", "text": "cc-by-nc-sa-4.0.LICENSE"}, {"license_key": "cc-by-nd-1.0", "spdx_license_key": "CC-BY-ND-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nd-1.0.json", "yml": "cc-by-nd-1.0.yml", "html": "cc-by-nd-1.0.html", "text": "cc-by-nd-1.0.LICENSE"}, {"license_key": "cc-by-nd-2.0", "spdx_license_key": "CC-BY-ND-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nd-2.0.json", "yml": "cc-by-nd-2.0.yml", "html": "cc-by-nd-2.0.html", "text": "cc-by-nd-2.0.LICENSE"}, {"license_key": "cc-by-nd-2.5", "spdx_license_key": "CC-BY-ND-2.5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nd-2.5.json", "yml": "cc-by-nd-2.5.yml", "html": "cc-by-nd-2.5.html", "text": "cc-by-nd-2.5.LICENSE"}, {"license_key": "cc-by-nd-3.0", "spdx_license_key": "CC-BY-ND-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nd-3.0.json", "yml": "cc-by-nd-3.0.yml", "html": "cc-by-nd-3.0.html", "text": "cc-by-nd-3.0.LICENSE"}, {"license_key": "cc-by-nd-3.0-de", "spdx_license_key": "CC-BY-ND-3.0-DE", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "cc-by-nd-3.0-de.json", "yml": "cc-by-nd-3.0-de.yml", "html": "cc-by-nd-3.0-de.html", "text": "cc-by-nd-3.0-de.LICENSE"}, {"license_key": "cc-by-nd-4.0", "spdx_license_key": "CC-BY-ND-4.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cc-by-nd-4.0.json", "yml": "cc-by-nd-4.0.yml", "html": "cc-by-nd-4.0.html", "text": "cc-by-nd-4.0.LICENSE"}, {"license_key": "cc-by-sa-1.0", "spdx_license_key": "CC-BY-SA-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cc-by-sa-1.0.json", "yml": "cc-by-sa-1.0.yml", "html": "cc-by-sa-1.0.html", "text": "cc-by-sa-1.0.LICENSE"}, {"license_key": "cc-by-sa-2.0", "spdx_license_key": "CC-BY-SA-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cc-by-sa-2.0.json", "yml": "cc-by-sa-2.0.yml", "html": "cc-by-sa-2.0.html", "text": "cc-by-sa-2.0.LICENSE"}, {"license_key": "cc-by-sa-2.0-uk", "spdx_license_key": "CC-BY-SA-2.0-UK", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cc-by-sa-2.0-uk.json", "yml": "cc-by-sa-2.0-uk.yml", "html": "cc-by-sa-2.0-uk.html", "text": "cc-by-sa-2.0-uk.LICENSE"}, {"license_key": "cc-by-sa-2.1-jp", "spdx_license_key": "CC-BY-SA-2.1-JP", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cc-by-sa-2.1-jp.json", "yml": "cc-by-sa-2.1-jp.yml", "html": "cc-by-sa-2.1-jp.html", "text": "cc-by-sa-2.1-jp.LICENSE"}, {"license_key": "cc-by-sa-2.5", "spdx_license_key": "CC-BY-SA-2.5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cc-by-sa-2.5.json", "yml": "cc-by-sa-2.5.yml", "html": "cc-by-sa-2.5.html", "text": "cc-by-sa-2.5.LICENSE"}, {"license_key": "cc-by-sa-3.0", "spdx_license_key": "CC-BY-SA-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cc-by-sa-3.0.json", "yml": "cc-by-sa-3.0.yml", "html": "cc-by-sa-3.0.html", "text": "cc-by-sa-3.0.LICENSE"}, {"license_key": "cc-by-sa-3.0-at", "spdx_license_key": "CC-BY-SA-3.0-AT", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cc-by-sa-3.0-at.json", "yml": "cc-by-sa-3.0-at.yml", "html": "cc-by-sa-3.0-at.html", "text": "cc-by-sa-3.0-at.LICENSE"}, {"license_key": "cc-by-sa-3.0-de", "spdx_license_key": "CC-BY-SA-3.0-DE", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cc-by-sa-3.0-de.json", "yml": "cc-by-sa-3.0-de.yml", "html": "cc-by-sa-3.0-de.html", "text": "cc-by-sa-3.0-de.LICENSE"}, {"license_key": "cc-by-sa-4.0", "spdx_license_key": "CC-BY-SA-4.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cc-by-sa-4.0.json", "yml": "cc-by-sa-4.0.yml", "html": "cc-by-sa-4.0.html", "text": "cc-by-sa-4.0.LICENSE"}, {"license_key": "cc-devnations-2.0", "spdx_license_key": "LicenseRef-scancode-cc-devnations-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "cc-devnations-2.0.json", "yml": "cc-devnations-2.0.yml", "html": "cc-devnations-2.0.html", "text": "cc-devnations-2.0.LICENSE"}, {"license_key": "cc-gpl-2.0-pt", "spdx_license_key": "LicenseRef-scancode-cc-gpl-2.0-pt", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "cc-gpl-2.0-pt.json", "yml": "cc-gpl-2.0-pt.yml", "html": "cc-gpl-2.0-pt.html", "text": "cc-gpl-2.0-pt.LICENSE"}, {"license_key": "cc-lgpl-2.1-pt", "spdx_license_key": "LicenseRef-scancode-cc-lgpl-2.1-pt", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cc-lgpl-2.1-pt.json", "yml": "cc-lgpl-2.1-pt.yml", "html": "cc-lgpl-2.1-pt.html", "text": "cc-lgpl-2.1-pt.LICENSE"}, {"license_key": "cc-nc-sampling-plus-1.0", "spdx_license_key": "LicenseRef-scancode-cc-nc-sampling-plus-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "cc-nc-sampling-plus-1.0.json", "yml": "cc-nc-sampling-plus-1.0.yml", "html": "cc-nc-sampling-plus-1.0.html", "text": "cc-nc-sampling-plus-1.0.LICENSE"}, {"license_key": "cc-pd", "spdx_license_key": "CC-PDDC", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "cc-pd.json", "yml": "cc-pd.yml", "html": "cc-pd.html", "text": "cc-pd.LICENSE"}, {"license_key": "cc-pdm-1.0", "spdx_license_key": "LicenseRef-scancode-cc-pdm-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "cc-pdm-1.0.json", "yml": "cc-pdm-1.0.yml", "html": "cc-pdm-1.0.html", "text": "cc-pdm-1.0.LICENSE"}, {"license_key": "cc-sampling-1.0", "spdx_license_key": "LicenseRef-scancode-cc-sampling-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "cc-sampling-1.0.json", "yml": "cc-sampling-1.0.yml", "html": "cc-sampling-1.0.html", "text": "cc-sampling-1.0.LICENSE"}, {"license_key": "cc-sampling-plus-1.0", "spdx_license_key": "LicenseRef-scancode-cc-sampling-plus-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "cc-sampling-plus-1.0.json", "yml": "cc-sampling-plus-1.0.yml", "html": "cc-sampling-plus-1.0.html", "text": "cc-sampling-plus-1.0.LICENSE"}, {"license_key": "cc0-1.0", "spdx_license_key": "CC0-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "cc0-1.0.json", "yml": "cc0-1.0.yml", "html": "cc0-1.0.html", "text": "cc0-1.0.LICENSE"}, {"license_key": "cclrc", "spdx_license_key": "LicenseRef-scancode-cclrc", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "cclrc.json", "yml": "cclrc.yml", "html": "cclrc.html", "text": "cclrc.LICENSE"}, {"license_key": "ccrc-1.0", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Copyleft", "json": "ccrc-1.0.json", "yml": "ccrc-1.0.yml", "html": "ccrc-1.0.html", "text": "ccrc-1.0.LICENSE"}, {"license_key": "cddl-1.0", "spdx_license_key": "CDDL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cddl-1.0.json", "yml": "cddl-1.0.yml", "html": "cddl-1.0.html", "text": "cddl-1.0.LICENSE"}, {"license_key": "cddl-1.1", "spdx_license_key": "CDDL-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cddl-1.1.json", "yml": "cddl-1.1.yml", "html": "cddl-1.1.html", "text": "cddl-1.1.LICENSE"}, {"license_key": "cdla-permissive-1.0", "spdx_license_key": "CDLA-Permissive-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cdla-permissive-1.0.json", "yml": "cdla-permissive-1.0.yml", "html": "cdla-permissive-1.0.html", "text": "cdla-permissive-1.0.LICENSE"}, {"license_key": "cdla-permissive-2.0", "spdx_license_key": "CDLA-Permissive-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cdla-permissive-2.0.json", "yml": "cdla-permissive-2.0.yml", "html": "cdla-permissive-2.0.html", "text": "cdla-permissive-2.0.LICENSE"}, {"license_key": "cdla-sharing-1.0", "spdx_license_key": "CDLA-Sharing-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cdla-sharing-1.0.json", "yml": "cdla-sharing-1.0.yml", "html": "cdla-sharing-1.0.html", "text": "cdla-sharing-1.0.LICENSE"}, {"license_key": "cecill-1.0", "spdx_license_key": "CECILL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "cecill-1.0.json", "yml": "cecill-1.0.yml", "html": "cecill-1.0.html", "text": "cecill-1.0.LICENSE"}, {"license_key": "cecill-1.0-en", "spdx_license_key": "LicenseRef-scancode-cecill-1.0-en", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "cecill-1.0-en.json", "yml": "cecill-1.0-en.yml", "html": "cecill-1.0-en.html", "text": "cecill-1.0-en.LICENSE"}, {"license_key": "cecill-1.1", "spdx_license_key": "CECILL-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cecill-1.1.json", "yml": "cecill-1.1.yml", "html": "cecill-1.1.html", "text": "cecill-1.1.LICENSE"}, {"license_key": "cecill-2.0", "spdx_license_key": "CECILL-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cecill-2.0.json", "yml": "cecill-2.0.yml", "html": "cecill-2.0.html", "text": "cecill-2.0.LICENSE"}, {"license_key": "cecill-2.0-fr", "spdx_license_key": "LicenseRef-scancode-cecill-2.0-fr", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cecill-2.0-fr.json", "yml": "cecill-2.0-fr.yml", "html": "cecill-2.0-fr.html", "text": "cecill-2.0-fr.LICENSE"}, {"license_key": "cecill-2.1", "spdx_license_key": "CECILL-2.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cecill-2.1.json", "yml": "cecill-2.1.yml", "html": "cecill-2.1.html", "text": "cecill-2.1.LICENSE"}, {"license_key": "cecill-2.1-fr", "spdx_license_key": "LicenseRef-scancode-cecill-2.1-fr", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cecill-2.1-fr.json", "yml": "cecill-2.1-fr.yml", "html": "cecill-2.1-fr.html", "text": "cecill-2.1-fr.LICENSE"}, {"license_key": "cecill-b", "spdx_license_key": "CECILL-B", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cecill-b.json", "yml": "cecill-b.yml", "html": "cecill-b.html", "text": "cecill-b.LICENSE"}, {"license_key": "cecill-b-en", "spdx_license_key": "LicenseRef-scancode-cecill-b-en", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cecill-b-en.json", "yml": "cecill-b-en.yml", "html": "cecill-b-en.html", "text": "cecill-b-en.LICENSE"}, {"license_key": "cecill-c", "spdx_license_key": "CECILL-C", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "cecill-c.json", "yml": "cecill-c.yml", "html": "cecill-c.html", "text": "cecill-c.LICENSE"}, {"license_key": "cecill-c-en", "spdx_license_key": "LicenseRef-scancode-cecill-c-en", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cecill-c-en.json", "yml": "cecill-c-en.yml", "html": "cecill-c-en.html", "text": "cecill-c-en.LICENSE"}, {"license_key": "cern-attribution-1995", "spdx_license_key": "LicenseRef-scancode-cern-attribution-1995", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cern-attribution-1995.json", "yml": "cern-attribution-1995.yml", "html": "cern-attribution-1995.html", "text": "cern-attribution-1995.LICENSE"}, {"license_key": "cern-ohl-1.1", "spdx_license_key": "CERN-OHL-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cern-ohl-1.1.json", "yml": "cern-ohl-1.1.yml", "html": "cern-ohl-1.1.html", "text": "cern-ohl-1.1.LICENSE"}, {"license_key": "cern-ohl-1.2", "spdx_license_key": "CERN-OHL-1.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cern-ohl-1.2.json", "yml": "cern-ohl-1.2.yml", "html": "cern-ohl-1.2.html", "text": "cern-ohl-1.2.LICENSE"}, {"license_key": "cern-ohl-p-2.0", "spdx_license_key": "CERN-OHL-P-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cern-ohl-p-2.0.json", "yml": "cern-ohl-p-2.0.yml", "html": "cern-ohl-p-2.0.html", "text": "cern-ohl-p-2.0.LICENSE"}, {"license_key": "cern-ohl-s-2.0", "spdx_license_key": "CERN-OHL-S-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "cern-ohl-s-2.0.json", "yml": "cern-ohl-s-2.0.yml", "html": "cern-ohl-s-2.0.html", "text": "cern-ohl-s-2.0.LICENSE"}, {"license_key": "cern-ohl-w-2.0", "spdx_license_key": "CERN-OHL-W-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cern-ohl-w-2.0.json", "yml": "cern-ohl-w-2.0.yml", "html": "cern-ohl-w-2.0.html", "text": "cern-ohl-w-2.0.LICENSE"}, {"license_key": "cgic", "spdx_license_key": "LicenseRef-scancode-cgic", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cgic.json", "yml": "cgic.yml", "html": "cgic.html", "text": "cgic.LICENSE"}, {"license_key": "chartdirector-6.0", "spdx_license_key": "LicenseRef-scancode-chartdirector-6.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "chartdirector-6.0.json", "yml": "chartdirector-6.0.yml", "html": "chartdirector-6.0.html", "text": "chartdirector-6.0.LICENSE"}, {"license_key": "chelsio-linux-firmware", "spdx_license_key": "LicenseRef-scancode-chelsio-linux-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "chelsio-linux-firmware.json", "yml": "chelsio-linux-firmware.yml", "html": "chelsio-linux-firmware.html", "text": "chelsio-linux-firmware.LICENSE"}, {"license_key": "chicken-dl-0.2", "spdx_license_key": "LicenseRef-scancode-chicken-dl-0.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "chicken-dl-0.2.json", "yml": "chicken-dl-0.2.yml", "html": "chicken-dl-0.2.html", "text": "chicken-dl-0.2.LICENSE"}, {"license_key": "chris-maunder", "spdx_license_key": "LicenseRef-scancode-chris-maunder", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "chris-maunder.json", "yml": "chris-maunder.yml", "html": "chris-maunder.html", "text": "chris-maunder.LICENSE"}, {"license_key": "chris-stoy", "spdx_license_key": "LicenseRef-scancode-chris-stoy", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "chris-stoy.json", "yml": "chris-stoy.yml", "html": "chris-stoy.html", "text": "chris-stoy.LICENSE"}, {"license_key": "christopher-velazquez", "spdx_license_key": "LicenseRef-scancode-christopher-velazquez", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "christopher-velazquez.json", "yml": "christopher-velazquez.yml", "html": "christopher-velazquez.html", "text": "christopher-velazquez.LICENSE"}, {"license_key": "classic-vb", "spdx_license_key": "LicenseRef-scancode-classic-vb", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "classic-vb.json", "yml": "classic-vb.yml", "html": "classic-vb.html", "text": "classic-vb.LICENSE"}, {"license_key": "classpath-exception-2.0", "spdx_license_key": "Classpath-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "classpath-exception-2.0.json", "yml": "classpath-exception-2.0.yml", "html": "classpath-exception-2.0.html", "text": "classpath-exception-2.0.LICENSE"}, {"license_key": "classworlds", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "classworlds.json", "yml": "classworlds.yml", "html": "classworlds.html", "text": "classworlds.LICENSE"}, {"license_key": "clause-6-exception-lgpl-2.1", "spdx_license_key": "LicenseRef-scancode-clause-6-exception-lgpl-2.1", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "clause-6-exception-lgpl-2.1.json", "yml": "clause-6-exception-lgpl-2.1.yml", "html": "clause-6-exception-lgpl-2.1.html", "text": "clause-6-exception-lgpl-2.1.LICENSE"}, {"license_key": "clear-bsd", "spdx_license_key": "BSD-3-Clause-Clear", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "clear-bsd.json", "yml": "clear-bsd.yml", "html": "clear-bsd.html", "text": "clear-bsd.LICENSE"}, {"license_key": "clear-bsd-1-clause", "spdx_license_key": "LicenseRef-scancode-clear-bsd-1-clause", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "clear-bsd-1-clause.json", "yml": "clear-bsd-1-clause.yml", "html": "clear-bsd-1-clause.html", "text": "clear-bsd-1-clause.LICENSE"}, {"license_key": "click-license", "spdx_license_key": "LicenseRef-scancode-click-license", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "click-license.json", "yml": "click-license.yml", "html": "click-license.html", "text": "click-license.LICENSE"}, {"license_key": "clisp-exception-2.0", "spdx_license_key": "CLISP-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "clisp-exception-2.0.json", "yml": "clisp-exception-2.0.yml", "html": "clisp-exception-2.0.html", "text": "clisp-exception-2.0.LICENSE"}, {"license_key": "cloudera-express", "spdx_license_key": "LicenseRef-scancode-cloudera-express", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "cloudera-express.json", "yml": "cloudera-express.yml", "html": "cloudera-express.html", "text": "cloudera-express.LICENSE"}, {"license_key": "cmigemo", "spdx_license_key": "LicenseRef-scancode-cmigemo", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "cmigemo.json", "yml": "cmigemo.yml", "html": "cmigemo.html", "text": "cmigemo.LICENSE"}, {"license_key": "cmr-no", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "cmr-no.json", "yml": "cmr-no.yml", "html": "cmr-no.html", "text": "cmr-no.LICENSE"}, {"license_key": "cmu-computing-services", "spdx_license_key": "LicenseRef-scancode-cmu-computing-services", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cmu-computing-services.json", "yml": "cmu-computing-services.yml", "html": "cmu-computing-services.html", "text": "cmu-computing-services.LICENSE"}, {"license_key": "cmu-mit", "spdx_license_key": "LicenseRef-scancode-cmu-mit", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cmu-mit.json", "yml": "cmu-mit.yml", "html": "cmu-mit.html", "text": "cmu-mit.LICENSE"}, {"license_key": "cmu-simple", "spdx_license_key": "LicenseRef-scancode-cmu-simple", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cmu-simple.json", "yml": "cmu-simple.yml", "html": "cmu-simple.html", "text": "cmu-simple.LICENSE"}, {"license_key": "cmu-template", "spdx_license_key": "LicenseRef-scancode-cmu-template", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cmu-template.json", "yml": "cmu-template.yml", "html": "cmu-template.html", "text": "cmu-template.LICENSE"}, {"license_key": "cmu-uc", "spdx_license_key": "MIT-CMU", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cmu-uc.json", "yml": "cmu-uc.yml", "html": "cmu-uc.html", "text": "cmu-uc.LICENSE"}, {"license_key": "cncf-corporate-cla-1.0", "spdx_license_key": "LicenseRef-scancode-cncf-corporate-cla-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "cncf-corporate-cla-1.0.json", "yml": "cncf-corporate-cla-1.0.yml", "html": "cncf-corporate-cla-1.0.html", "text": "cncf-corporate-cla-1.0.LICENSE"}, {"license_key": "cncf-individual-cla-1.0", "spdx_license_key": "LicenseRef-scancode-cncf-individual-cla-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "cncf-individual-cla-1.0.json", "yml": "cncf-individual-cla-1.0.yml", "html": "cncf-individual-cla-1.0.html", "text": "cncf-individual-cla-1.0.LICENSE"}, {"license_key": "cnri-jython", "spdx_license_key": "CNRI-Jython", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cnri-jython.json", "yml": "cnri-jython.yml", "html": "cnri-jython.html", "text": "cnri-jython.LICENSE"}, {"license_key": "cnri-python-1.6", "spdx_license_key": "CNRI-Python", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cnri-python-1.6.json", "yml": "cnri-python-1.6.yml", "html": "cnri-python-1.6.html", "text": "cnri-python-1.6.LICENSE"}, {"license_key": "cnri-python-1.6.1", "spdx_license_key": "CNRI-Python-GPL-Compatible", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cnri-python-1.6.1.json", "yml": "cnri-python-1.6.1.yml", "html": "cnri-python-1.6.1.html", "text": "cnri-python-1.6.1.LICENSE"}, {"license_key": "cockroach", "spdx_license_key": "LicenseRef-scancode-cockroach", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "cockroach.json", "yml": "cockroach.yml", "html": "cockroach.html", "text": "cockroach.LICENSE"}, {"license_key": "cockroachdb-use-grant-for-bsl-1.1", "spdx_license_key": "LicenseRef-scancode-cockroachdb-use-grant-bsl-1.1", "other_spdx_license_keys": ["LicenseRef-scancode-cockroachdb-use-grant-for-bsl-1.1"], "is_exception": true, "is_deprecated": false, "category": "Source-available", "json": "cockroachdb-use-grant-for-bsl-1.1.json", "yml": "cockroachdb-use-grant-for-bsl-1.1.yml", "html": "cockroachdb-use-grant-for-bsl-1.1.html", "text": "cockroachdb-use-grant-for-bsl-1.1.LICENSE"}, {"license_key": "code-credit-license-1.0.1", "spdx_license_key": "LicenseRef-scancode-code-credit-license-1.0.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "code-credit-license-1.0.1.json", "yml": "code-credit-license-1.0.1.yml", "html": "code-credit-license-1.0.1.html", "text": "code-credit-license-1.0.1.LICENSE"}, {"license_key": "codeguru-permissions", "spdx_license_key": "LicenseRef-scancode-codeguru-permissions", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "codeguru-permissions.json", "yml": "codeguru-permissions.yml", "html": "codeguru-permissions.html", "text": "codeguru-permissions.LICENSE"}, {"license_key": "codesourcery-2004", "spdx_license_key": "LicenseRef-scancode-codesourcery-2004", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "codesourcery-2004.json", "yml": "codesourcery-2004.yml", "html": "codesourcery-2004.html", "text": "codesourcery-2004.LICENSE"}, {"license_key": "codexia", "spdx_license_key": "LicenseRef-scancode-codexia", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "codexia.json", "yml": "codexia.yml", "html": "codexia.html", "text": "codexia.LICENSE"}, {"license_key": "cognitive-web-osl-1.1", "spdx_license_key": "LicenseRef-scancode-cognitive-web-osl-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cognitive-web-osl-1.1.json", "yml": "cognitive-web-osl-1.1.yml", "html": "cognitive-web-osl-1.1.html", "text": "cognitive-web-osl-1.1.LICENSE"}, {"license_key": "coil-1.0", "spdx_license_key": "COIL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "coil-1.0.json", "yml": "coil-1.0.yml", "html": "coil-1.0.html", "text": "coil-1.0.LICENSE"}, {"license_key": "colt", "spdx_license_key": "LicenseRef-scancode-colt", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "colt.json", "yml": "colt.yml", "html": "colt.html", "text": "colt.LICENSE"}, {"license_key": "com-oreilly-servlet", "spdx_license_key": "LicenseRef-scancode-com-oreilly-servlet", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "com-oreilly-servlet.json", "yml": "com-oreilly-servlet.yml", "html": "com-oreilly-servlet.html", "text": "com-oreilly-servlet.LICENSE"}, {"license_key": "commercial-license", "spdx_license_key": "LicenseRef-scancode-commercial-license", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "commercial-license.json", "yml": "commercial-license.yml", "html": "commercial-license.html", "text": "commercial-license.LICENSE"}, {"license_key": "commercial-option", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Commercial", "json": "commercial-option.json", "yml": "commercial-option.yml", "html": "commercial-option.html", "text": "commercial-option.LICENSE"}, {"license_key": "commonj-timer", "spdx_license_key": "LicenseRef-scancode-commonj-timer", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "commonj-timer.json", "yml": "commonj-timer.yml", "html": "commonj-timer.html", "text": "commonj-timer.LICENSE"}, {"license_key": "commons-clause", "spdx_license_key": "LicenseRef-scancode-commons-clause", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Source-available", "json": "commons-clause.json", "yml": "commons-clause.yml", "html": "commons-clause.html", "text": "commons-clause.LICENSE"}, {"license_key": "compass", "spdx_license_key": "LicenseRef-scancode-compass", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "compass.json", "yml": "compass.yml", "html": "compass.html", "text": "compass.LICENSE"}, {"license_key": "componentace-jcraft", "spdx_license_key": "LicenseRef-scancode-componentace-jcraft", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "componentace-jcraft.json", "yml": "componentace-jcraft.yml", "html": "componentace-jcraft.html", "text": "componentace-jcraft.LICENSE"}, {"license_key": "compuphase-linking-exception", "spdx_license_key": "LicenseRef-scancode-compuphase-linking-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Permissive", "json": "compuphase-linking-exception.json", "yml": "compuphase-linking-exception.yml", "html": "compuphase-linking-exception.html", "text": "compuphase-linking-exception.LICENSE"}, {"license_key": "concursive-pl-1.0", "spdx_license_key": "LicenseRef-scancode-concursive-pl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "concursive-pl-1.0.json", "yml": "concursive-pl-1.0.yml", "html": "concursive-pl-1.0.html", "text": "concursive-pl-1.0.LICENSE"}, {"license_key": "condor-1.1", "spdx_license_key": "Condor-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "condor-1.1.json", "yml": "condor-1.1.yml", "html": "condor-1.1.html", "text": "condor-1.1.LICENSE"}, {"license_key": "confluent-community-1.0", "spdx_license_key": "LicenseRef-scancode-confluent-community-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "confluent-community-1.0.json", "yml": "confluent-community-1.0.yml", "html": "confluent-community-1.0.html", "text": "confluent-community-1.0.LICENSE"}, {"license_key": "cooperative-non-violent-4.0", "spdx_license_key": "LicenseRef-scancode-cooperative-non-violent-4.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "cooperative-non-violent-4.0.json", "yml": "cooperative-non-violent-4.0.yml", "html": "cooperative-non-violent-4.0.html", "text": "cooperative-non-violent-4.0.LICENSE"}, {"license_key": "copyheart", "spdx_license_key": "LicenseRef-scancode-copyheart", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "copyheart.json", "yml": "copyheart.yml", "html": "copyheart.html", "text": "copyheart.LICENSE"}, {"license_key": "copyleft-next-0.3.0", "spdx_license_key": "copyleft-next-0.3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "copyleft-next-0.3.0.json", "yml": "copyleft-next-0.3.0.yml", "html": "copyleft-next-0.3.0.html", "text": "copyleft-next-0.3.0.LICENSE"}, {"license_key": "copyleft-next-0.3.1", "spdx_license_key": "copyleft-next-0.3.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "copyleft-next-0.3.1.json", "yml": "copyleft-next-0.3.1.yml", "html": "copyleft-next-0.3.1.html", "text": "copyleft-next-0.3.1.LICENSE"}, {"license_key": "corporate-accountability-1.1", "spdx_license_key": "LicenseRef-scancode-corporate-accountability-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "corporate-accountability-1.1.json", "yml": "corporate-accountability-1.1.yml", "html": "corporate-accountability-1.1.html", "text": "corporate-accountability-1.1.LICENSE"}, {"license_key": "corporate-accountability-commercial-1.1", "spdx_license_key": "LicenseRef-scancode-accountability-commercial-1.1", "other_spdx_license_keys": ["LicenseRef-scancode-corporate-accountability-commercial-1.1"], "is_exception": true, "is_deprecated": false, "category": "Proprietary Free", "json": "corporate-accountability-commercial-1.1.json", "yml": "corporate-accountability-commercial-1.1.yml", "html": "corporate-accountability-commercial-1.1.html", "text": "corporate-accountability-commercial-1.1.LICENSE"}, {"license_key": "cosl", "spdx_license_key": "LicenseRef-scancode-cosl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cosl.json", "yml": "cosl.yml", "html": "cosl.html", "text": "cosl.LICENSE"}, {"license_key": "cosli", "spdx_license_key": "LicenseRef-scancode-cosli", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "cosli.json", "yml": "cosli.yml", "html": "cosli.html", "text": "cosli.LICENSE"}, {"license_key": "couchbase-community", "spdx_license_key": "LicenseRef-scancode-couchbase-community", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "couchbase-community.json", "yml": "couchbase-community.yml", "html": "couchbase-community.html", "text": "couchbase-community.LICENSE"}, {"license_key": "couchbase-enterprise", "spdx_license_key": "LicenseRef-scancode-couchbase-enterprise", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "couchbase-enterprise.json", "yml": "couchbase-enterprise.yml", "html": "couchbase-enterprise.html", "text": "couchbase-enterprise.LICENSE"}, {"license_key": "cpal-1.0", "spdx_license_key": "CPAL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "cpal-1.0.json", "yml": "cpal-1.0.yml", "html": "cpal-1.0.html", "text": "cpal-1.0.LICENSE"}, {"license_key": "cpl-0.5", "spdx_license_key": "LicenseRef-scancode-cpl-0.5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cpl-0.5.json", "yml": "cpl-0.5.yml", "html": "cpl-0.5.html", "text": "cpl-0.5.LICENSE"}, {"license_key": "cpl-1.0", "spdx_license_key": "CPL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cpl-1.0.json", "yml": "cpl-1.0.yml", "html": "cpl-1.0.html", "text": "cpl-1.0.LICENSE"}, {"license_key": "cpm-2022", "spdx_license_key": "LicenseRef-scancode-cpm-2022", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cpm-2022.json", "yml": "cpm-2022.yml", "html": "cpm-2022.html", "text": "cpm-2022.LICENSE"}, {"license_key": "cpol-1.0", "spdx_license_key": "LicenseRef-scancode-cpol-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "cpol-1.0.json", "yml": "cpol-1.0.yml", "html": "cpol-1.0.html", "text": "cpol-1.0.LICENSE"}, {"license_key": "cpol-1.02", "spdx_license_key": "CPOL-1.02", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "cpol-1.02.json", "yml": "cpol-1.02.yml", "html": "cpol-1.02.html", "text": "cpol-1.02.LICENSE"}, {"license_key": "cpp-core-guidelines", "spdx_license_key": "LicenseRef-scancode-cpp-core-guidelines", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cpp-core-guidelines.json", "yml": "cpp-core-guidelines.yml", "html": "cpp-core-guidelines.html", "text": "cpp-core-guidelines.LICENSE"}, {"license_key": "crapl-0.1", "spdx_license_key": "LicenseRef-scancode-crapl-0.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "crapl-0.1.json", "yml": "crapl-0.1.yml", "html": "crapl-0.1.html", "text": "crapl-0.1.LICENSE"}, {"license_key": "crashlytics-agreement-2018", "spdx_license_key": "LicenseRef-scancode-crashlytics-agreement-2018", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "crashlytics-agreement-2018.json", "yml": "crashlytics-agreement-2018.yml", "html": "crashlytics-agreement-2018.html", "text": "crashlytics-agreement-2018.LICENSE"}, {"license_key": "crcalc", "spdx_license_key": "LicenseRef-scancode-crcalc", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "crcalc.json", "yml": "crcalc.yml", "html": "crcalc.html", "text": "crcalc.LICENSE"}, {"license_key": "crossword", "spdx_license_key": "Crossword", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "crossword.json", "yml": "crossword.yml", "html": "crossword.html", "text": "crossword.LICENSE"}, {"license_key": "crypto-keys-redistribution", "spdx_license_key": "LicenseRef-scancode-crypto-keys-redistribution", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "crypto-keys-redistribution.json", "yml": "crypto-keys-redistribution.yml", "html": "crypto-keys-redistribution.html", "text": "crypto-keys-redistribution.LICENSE"}, {"license_key": "cryptopp", "spdx_license_key": "LicenseRef-scancode-cryptopp", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cryptopp.json", "yml": "cryptopp.yml", "html": "cryptopp.html", "text": "cryptopp.LICENSE"}, {"license_key": "crystal-stacker", "spdx_license_key": "CrystalStacker", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "crystal-stacker.json", "yml": "crystal-stacker.yml", "html": "crystal-stacker.html", "text": "crystal-stacker.LICENSE"}, {"license_key": "csl-1.0", "spdx_license_key": "Community-Spec-1.0", "other_spdx_license_keys": ["LicenseRef-scancode-csl-1.0"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "csl-1.0.json", "yml": "csl-1.0.yml", "html": "csl-1.0.html", "text": "csl-1.0.LICENSE"}, {"license_key": "csla", "spdx_license_key": "LicenseRef-scancode-csla", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "csla.json", "yml": "csla.yml", "html": "csla.html", "text": "csla.LICENSE"}, {"license_key": "csprng", "spdx_license_key": "LicenseRef-scancode-csprng", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "csprng.json", "yml": "csprng.yml", "html": "csprng.html", "text": "csprng.LICENSE"}, {"license_key": "ctl-linux-firmware", "spdx_license_key": "LicenseRef-scancode-ctl-linux-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ctl-linux-firmware.json", "yml": "ctl-linux-firmware.yml", "html": "ctl-linux-firmware.html", "text": "ctl-linux-firmware.LICENSE"}, {"license_key": "cua-opl-1.0", "spdx_license_key": "CUA-OPL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "cua-opl-1.0.json", "yml": "cua-opl-1.0.yml", "html": "cua-opl-1.0.html", "text": "cua-opl-1.0.LICENSE"}, {"license_key": "cube", "spdx_license_key": "Cube", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cube.json", "yml": "cube.yml", "html": "cube.html", "text": "cube.LICENSE"}, {"license_key": "cubiware-software-1.0", "spdx_license_key": "LicenseRef-scancode-cubiware-software-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "cubiware-software-1.0.json", "yml": "cubiware-software-1.0.yml", "html": "cubiware-software-1.0.html", "text": "cubiware-software-1.0.LICENSE"}, {"license_key": "cups", "spdx_license_key": "LicenseRef-scancode-cups", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "cups.json", "yml": "cups.yml", "html": "cups.html", "text": "cups.LICENSE"}, {"license_key": "cups-apple-os-exception", "spdx_license_key": "LicenseRef-scancode-cups-apple-os-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "cups-apple-os-exception.json", "yml": "cups-apple-os-exception.yml", "html": "cups-apple-os-exception.html", "text": "cups-apple-os-exception.LICENSE"}, {"license_key": "curl", "spdx_license_key": "curl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "curl.json", "yml": "curl.yml", "html": "curl.html", "text": "curl.LICENSE"}, {"license_key": "cve-tou", "spdx_license_key": "LicenseRef-scancode-cve-tou", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cve-tou.json", "yml": "cve-tou.yml", "html": "cve-tou.html", "text": "cve-tou.LICENSE"}, {"license_key": "cvwl", "spdx_license_key": "LicenseRef-scancode-cvwl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "cvwl.json", "yml": "cvwl.yml", "html": "cvwl.html", "text": "cvwl.LICENSE"}, {"license_key": "cwe-tou", "spdx_license_key": "LicenseRef-scancode-cwe-tou", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cwe-tou.json", "yml": "cwe-tou.yml", "html": "cwe-tou.html", "text": "cwe-tou.LICENSE"}, {"license_key": "cximage", "spdx_license_key": "LicenseRef-scancode-cximage", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "cximage.json", "yml": "cximage.yml", "html": "cximage.html", "text": "cximage.LICENSE"}, {"license_key": "cygwin-exception-2.0", "spdx_license_key": "LicenseRef-scancode-cygwin-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "cygwin-exception-2.0.json", "yml": "cygwin-exception-2.0.yml", "html": "cygwin-exception-2.0.html", "text": "cygwin-exception-2.0.LICENSE"}, {"license_key": "cygwin-exception-3.0", "spdx_license_key": "LicenseRef-scancode-cygwin-exception-3.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "cygwin-exception-3.0.json", "yml": "cygwin-exception-3.0.yml", "html": "cygwin-exception-3.0.html", "text": "cygwin-exception-3.0.LICENSE"}, {"license_key": "cygwin-exception-lgpl-3.0-plus", "spdx_license_key": "LicenseRef-scancode-cygwin-exception-lgpl-3.0-plus", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "cygwin-exception-lgpl-3.0-plus.json", "yml": "cygwin-exception-lgpl-3.0-plus.yml", "html": "cygwin-exception-lgpl-3.0-plus.html", "text": "cygwin-exception-lgpl-3.0-plus.LICENSE"}, {"license_key": "cypress-linux-firmware", "spdx_license_key": "LicenseRef-scancode-cypress-linux-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "cypress-linux-firmware.json", "yml": "cypress-linux-firmware.yml", "html": "cypress-linux-firmware.html", "text": "cypress-linux-firmware.LICENSE"}, {"license_key": "d-fsl-1.0-de", "spdx_license_key": "D-FSL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "d-fsl-1.0-de.json", "yml": "d-fsl-1.0-de.yml", "html": "d-fsl-1.0-de.html", "text": "d-fsl-1.0-de.LICENSE"}, {"license_key": "d-fsl-1.0-en", "spdx_license_key": "LicenseRef-scancode-d-fsl-1.0-en", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "d-fsl-1.0-en.json", "yml": "d-fsl-1.0-en.yml", "html": "d-fsl-1.0-en.html", "text": "d-fsl-1.0-en.LICENSE"}, {"license_key": "d-zlib", "spdx_license_key": "LicenseRef-scancode-d-zlib", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "d-zlib.json", "yml": "d-zlib.yml", "html": "d-zlib.html", "text": "d-zlib.LICENSE"}, {"license_key": "damail", "spdx_license_key": "LicenseRef-scancode-damail", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "damail.json", "yml": "damail.yml", "html": "damail.html", "text": "damail.LICENSE"}, {"license_key": "dante-treglia", "spdx_license_key": "LicenseRef-scancode-dante-treglia", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dante-treglia.json", "yml": "dante-treglia.yml", "html": "dante-treglia.html", "text": "dante-treglia.LICENSE"}, {"license_key": "datamekanix-license", "spdx_license_key": "LicenseRef-scancode-datamekanix-license", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "datamekanix-license.json", "yml": "datamekanix-license.yml", "html": "datamekanix-license.html", "text": "datamekanix-license.LICENSE"}, {"license_key": "day-spec", "spdx_license_key": "LicenseRef-scancode-day-spec", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "day-spec.json", "yml": "day-spec.yml", "html": "day-spec.html", "text": "day-spec.LICENSE"}, {"license_key": "dbad", "spdx_license_key": "LicenseRef-scancode-dbad", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "dbad.json", "yml": "dbad.yml", "html": "dbad.html", "text": "dbad.LICENSE"}, {"license_key": "dbad-1.1", "spdx_license_key": "LicenseRef-scancode-dbad-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dbad-1.1.json", "yml": "dbad-1.1.yml", "html": "dbad-1.1.html", "text": "dbad-1.1.LICENSE"}, {"license_key": "dbcl-1.0", "spdx_license_key": "LicenseRef-scancode-dbcl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "dbcl-1.0.json", "yml": "dbcl-1.0.yml", "html": "dbcl-1.0.html", "text": "dbcl-1.0.LICENSE"}, {"license_key": "dco-1.1", "spdx_license_key": "LicenseRef-scancode-dco-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dco-1.1.json", "yml": "dco-1.1.yml", "html": "dco-1.1.html", "text": "dco-1.1.LICENSE"}, {"license_key": "defensive-patent-1.1", "spdx_license_key": "LicenseRef-scancode-defensive-patent-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "defensive-patent-1.1.json", "yml": "defensive-patent-1.1.yml", "html": "defensive-patent-1.1.html", "text": "defensive-patent-1.1.LICENSE"}, {"license_key": "dejavu-font", "spdx_license_key": "LicenseRef-scancode-dejavu-font", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "dejavu-font.json", "yml": "dejavu-font.yml", "html": "dejavu-font.html", "text": "dejavu-font.LICENSE"}, {"license_key": "delorie-historical", "spdx_license_key": "LicenseRef-scancode-delorie-historical", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "delorie-historical.json", "yml": "delorie-historical.yml", "html": "delorie-historical.html", "text": "delorie-historical.LICENSE"}, {"license_key": "dennis-ferguson", "spdx_license_key": "LicenseRef-scancode-dennis-ferguson", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "dennis-ferguson.json", "yml": "dennis-ferguson.yml", "html": "dennis-ferguson.html", "text": "dennis-ferguson.LICENSE"}, {"license_key": "devblocks-1.0", "spdx_license_key": "LicenseRef-scancode-devblocks-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "devblocks-1.0.json", "yml": "devblocks-1.0.yml", "html": "devblocks-1.0.html", "text": "devblocks-1.0.LICENSE"}, {"license_key": "dgraph-cla", "spdx_license_key": "LicenseRef-scancode-dgraph-cla", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "dgraph-cla.json", "yml": "dgraph-cla.yml", "html": "dgraph-cla.html", "text": "dgraph-cla.LICENSE"}, {"license_key": "dhtmlab-public", "spdx_license_key": "LicenseRef-scancode-dhtmlab-public", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dhtmlab-public.json", "yml": "dhtmlab-public.yml", "html": "dhtmlab-public.html", "text": "dhtmlab-public.LICENSE"}, {"license_key": "diffmark", "spdx_license_key": "diffmark", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "diffmark.json", "yml": "diffmark.yml", "html": "diffmark.html", "text": "diffmark.LICENSE"}, {"license_key": "digia-qt-commercial", "spdx_license_key": "LicenseRef-scancode-digia-qt-commercial", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "digia-qt-commercial.json", "yml": "digia-qt-commercial.yml", "html": "digia-qt-commercial.html", "text": "digia-qt-commercial.LICENSE"}, {"license_key": "digia-qt-exception-lgpl-2.1", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "digia-qt-exception-lgpl-2.1.json", "yml": "digia-qt-exception-lgpl-2.1.yml", "html": "digia-qt-exception-lgpl-2.1.html", "text": "digia-qt-exception-lgpl-2.1.LICENSE"}, {"license_key": "digia-qt-preview", "spdx_license_key": "LicenseRef-scancode-digia-qt-preview", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "digia-qt-preview.json", "yml": "digia-qt-preview.yml", "html": "digia-qt-preview.html", "text": "digia-qt-preview.LICENSE"}, {"license_key": "digirule-foss-exception", "spdx_license_key": "DigiRule-FOSS-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "digirule-foss-exception.json", "yml": "digirule-foss-exception.yml", "html": "digirule-foss-exception.html", "text": "digirule-foss-exception.LICENSE"}, {"license_key": "divx-open-1.0", "spdx_license_key": "LicenseRef-scancode-divx-open-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "divx-open-1.0.json", "yml": "divx-open-1.0.yml", "html": "divx-open-1.0.html", "text": "divx-open-1.0.LICENSE"}, {"license_key": "divx-open-2.1", "spdx_license_key": "LicenseRef-scancode-divx-open-2.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "divx-open-2.1.json", "yml": "divx-open-2.1.yml", "html": "divx-open-2.1.html", "text": "divx-open-2.1.LICENSE"}, {"license_key": "dl-de-by-1-0-de", "spdx_license_key": "LicenseRef-scancode-dl-de-by-1-0-de", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dl-de-by-1-0-de.json", "yml": "dl-de-by-1-0-de.yml", "html": "dl-de-by-1-0-de.html", "text": "dl-de-by-1-0-de.LICENSE"}, {"license_key": "dl-de-by-1-0-en", "spdx_license_key": "LicenseRef-scancode-dl-de-by-1-0-en", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dl-de-by-1-0-en.json", "yml": "dl-de-by-1-0-en.yml", "html": "dl-de-by-1-0-en.html", "text": "dl-de-by-1-0-en.LICENSE"}, {"license_key": "dl-de-by-2-0-de", "spdx_license_key": "DL-DE-BY-2.0", "other_spdx_license_keys": ["LicenseRef-scancode-dl-de-by-2-0-de"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dl-de-by-2-0-de.json", "yml": "dl-de-by-2-0-de.yml", "html": "dl-de-by-2-0-de.html", "text": "dl-de-by-2-0-de.LICENSE"}, {"license_key": "dl-de-by-2-0-en", "spdx_license_key": "LicenseRef-scancode-dl-de-by-2-0-en", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dl-de-by-2-0-en.json", "yml": "dl-de-by-2-0-en.yml", "html": "dl-de-by-2-0-en.html", "text": "dl-de-by-2-0-en.LICENSE"}, {"license_key": "dl-de-by-nc-1-0-de", "spdx_license_key": "LicenseRef-scancode-dl-de-by-nc-1-0-de", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "dl-de-by-nc-1-0-de.json", "yml": "dl-de-by-nc-1-0-de.yml", "html": "dl-de-by-nc-1-0-de.html", "text": "dl-de-by-nc-1-0-de.LICENSE"}, {"license_key": "dl-de-by-nc-1-0-en", "spdx_license_key": "LicenseRef-scancode-dl-de-by-nc-1-0-en", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "dl-de-by-nc-1-0-en.json", "yml": "dl-de-by-nc-1-0-en.yml", "html": "dl-de-by-nc-1-0-en.html", "text": "dl-de-by-nc-1-0-en.LICENSE"}, {"license_key": "dmalloc", "spdx_license_key": "LicenseRef-scancode-dmalloc", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dmalloc.json", "yml": "dmalloc.yml", "html": "dmalloc.html", "text": "dmalloc.LICENSE"}, {"license_key": "do-no-harm-0.1", "spdx_license_key": "LicenseRef-scancode-do-no-harm-0.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "do-no-harm-0.1.json", "yml": "do-no-harm-0.1.yml", "html": "do-no-harm-0.1.html", "text": "do-no-harm-0.1.LICENSE"}, {"license_key": "docbook", "spdx_license_key": "LicenseRef-scancode-docbook", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "docbook.json", "yml": "docbook.yml", "html": "docbook.html", "text": "docbook.LICENSE"}, {"license_key": "dom4j", "spdx_license_key": "Plexus", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dom4j.json", "yml": "dom4j.yml", "html": "dom4j.html", "text": "dom4j.LICENSE"}, {"license_key": "dos32a-extender", "spdx_license_key": "LicenseRef-scancode-dos32a-extender", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dos32a-extender.json", "yml": "dos32a-extender.yml", "html": "dos32a-extender.html", "text": "dos32a-extender.LICENSE"}, {"license_key": "dotseqn", "spdx_license_key": "Dotseqn", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dotseqn.json", "yml": "dotseqn.yml", "html": "dotseqn.html", "text": "dotseqn.LICENSE"}, {"license_key": "doug-lea", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Public Domain", "json": "doug-lea.json", "yml": "doug-lea.yml", "html": "doug-lea.html", "text": "doug-lea.LICENSE"}, {"license_key": "douglas-young", "spdx_license_key": "LicenseRef-scancode-douglas-young", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "douglas-young.json", "yml": "douglas-young.yml", "html": "douglas-young.html", "text": "douglas-young.LICENSE"}, {"license_key": "dpl-1.1", "spdx_license_key": "LicenseRef-scancode-dpl-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "dpl-1.1.json", "yml": "dpl-1.1.yml", "html": "dpl-1.1.html", "text": "dpl-1.1.LICENSE"}, {"license_key": "dr-john-maddock", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "dr-john-maddock.json", "yml": "dr-john-maddock.yml", "html": "dr-john-maddock.html", "text": "dr-john-maddock.LICENSE"}, {"license_key": "drl-1.0", "spdx_license_key": "DRL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "drl-1.0.json", "yml": "drl-1.0.yml", "html": "drl-1.0.html", "text": "drl-1.0.LICENSE"}, {"license_key": "dropbear", "spdx_license_key": "LicenseRef-scancode-dropbear", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dropbear.json", "yml": "dropbear.yml", "html": "dropbear.html", "text": "dropbear.LICENSE"}, {"license_key": "dropbear-2016", "spdx_license_key": "LicenseRef-scancode-dropbear-2016", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dropbear-2016.json", "yml": "dropbear-2016.yml", "html": "dropbear-2016.html", "text": "dropbear-2016.LICENSE"}, {"license_key": "dsdp", "spdx_license_key": "DSDP", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dsdp.json", "yml": "dsdp.yml", "html": "dsdp.html", "text": "dsdp.LICENSE"}, {"license_key": "dtree", "spdx_license_key": "LicenseRef-scancode-dtree", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dtree.json", "yml": "dtree.yml", "html": "dtree.html", "text": "dtree.LICENSE"}, {"license_key": "dual-bsd-gpl", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "dual-bsd-gpl.json", "yml": "dual-bsd-gpl.yml", "html": "dual-bsd-gpl.html", "text": "dual-bsd-gpl.LICENSE"}, {"license_key": "dual-commercial-gpl", "spdx_license_key": "LicenseRef-scancode-dual-commercial-gpl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "dual-commercial-gpl.json", "yml": "dual-commercial-gpl.yml", "html": "dual-commercial-gpl.html", "text": "dual-commercial-gpl.LICENSE"}, {"license_key": "duende-sla-2022", "spdx_license_key": "LicenseRef-scancode-duende-sla-2022", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "duende-sla-2022.json", "yml": "duende-sla-2022.yml", "html": "duende-sla-2022.html", "text": "duende-sla-2022.LICENSE"}, {"license_key": "dune-exception", "spdx_license_key": "LicenseRef-scancode-dune-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "dune-exception.json", "yml": "dune-exception.yml", "html": "dune-exception.html", "text": "dune-exception.LICENSE"}, {"license_key": "dvipdfm", "spdx_license_key": "dvipdfm", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dvipdfm.json", "yml": "dvipdfm.yml", "html": "dvipdfm.html", "text": "dvipdfm.LICENSE"}, {"license_key": "dwtfnmfpl-3.0", "spdx_license_key": "LicenseRef-scancode-dwtfnmfpl-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dwtfnmfpl-3.0.json", "yml": "dwtfnmfpl-3.0.yml", "html": "dwtfnmfpl-3.0.html", "text": "dwtfnmfpl-3.0.LICENSE"}, {"license_key": "dynamic-drive-tou", "spdx_license_key": "LicenseRef-scancode-dynamic-drive-tou", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "dynamic-drive-tou.json", "yml": "dynamic-drive-tou.yml", "html": "dynamic-drive-tou.html", "text": "dynamic-drive-tou.LICENSE"}, {"license_key": "dynarch-developer", "spdx_license_key": "LicenseRef-scancode-dynarch-developer", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "dynarch-developer.json", "yml": "dynarch-developer.yml", "html": "dynarch-developer.html", "text": "dynarch-developer.LICENSE"}, {"license_key": "dynarch-linkware", "spdx_license_key": "LicenseRef-scancode-dynarch-linkware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "dynarch-linkware.json", "yml": "dynarch-linkware.yml", "html": "dynarch-linkware.html", "text": "dynarch-linkware.LICENSE"}, {"license_key": "ecfonts-1.0", "spdx_license_key": "LicenseRef-scancode-ecfonts-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ecfonts-1.0.json", "yml": "ecfonts-1.0.yml", "html": "ecfonts-1.0.html", "text": "ecfonts-1.0.LICENSE"}, {"license_key": "ecl-1.0", "spdx_license_key": "ECL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ecl-1.0.json", "yml": "ecl-1.0.yml", "html": "ecl-1.0.html", "text": "ecl-1.0.LICENSE"}, {"license_key": "ecl-2.0", "spdx_license_key": "ECL-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ecl-2.0.json", "yml": "ecl-2.0.yml", "html": "ecl-2.0.html", "text": "ecl-2.0.LICENSE"}, {"license_key": "eclipse-sua-2001", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2001", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "eclipse-sua-2001.json", "yml": "eclipse-sua-2001.yml", "html": "eclipse-sua-2001.html", "text": "eclipse-sua-2001.LICENSE"}, {"license_key": "eclipse-sua-2002", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2002", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "eclipse-sua-2002.json", "yml": "eclipse-sua-2002.yml", "html": "eclipse-sua-2002.html", "text": "eclipse-sua-2002.LICENSE"}, {"license_key": "eclipse-sua-2003", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2003", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "eclipse-sua-2003.json", "yml": "eclipse-sua-2003.yml", "html": "eclipse-sua-2003.html", "text": "eclipse-sua-2003.LICENSE"}, {"license_key": "eclipse-sua-2004", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2004", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "eclipse-sua-2004.json", "yml": "eclipse-sua-2004.yml", "html": "eclipse-sua-2004.html", "text": "eclipse-sua-2004.LICENSE"}, {"license_key": "eclipse-sua-2005", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2005", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "eclipse-sua-2005.json", "yml": "eclipse-sua-2005.yml", "html": "eclipse-sua-2005.html", "text": "eclipse-sua-2005.LICENSE"}, {"license_key": "eclipse-sua-2010", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2010", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "eclipse-sua-2010.json", "yml": "eclipse-sua-2010.yml", "html": "eclipse-sua-2010.html", "text": "eclipse-sua-2010.LICENSE"}, {"license_key": "eclipse-sua-2011", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2011", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "eclipse-sua-2011.json", "yml": "eclipse-sua-2011.yml", "html": "eclipse-sua-2011.html", "text": "eclipse-sua-2011.LICENSE"}, {"license_key": "eclipse-sua-2014", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2014", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "eclipse-sua-2014.json", "yml": "eclipse-sua-2014.yml", "html": "eclipse-sua-2014.html", "text": "eclipse-sua-2014.LICENSE"}, {"license_key": "eclipse-sua-2014-11", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2014-11", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "eclipse-sua-2014-11.json", "yml": "eclipse-sua-2014-11.yml", "html": "eclipse-sua-2014-11.html", "text": "eclipse-sua-2014-11.LICENSE"}, {"license_key": "eclipse-sua-2017", "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2017", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "eclipse-sua-2017.json", "yml": "eclipse-sua-2017.yml", "html": "eclipse-sua-2017.html", "text": "eclipse-sua-2017.LICENSE"}, {"license_key": "ecma-documentation", "spdx_license_key": "LicenseRef-scancode-ecma-documentation", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "ecma-documentation.json", "yml": "ecma-documentation.yml", "html": "ecma-documentation.html", "text": "ecma-documentation.LICENSE"}, {"license_key": "ecma-no-patent", "spdx_license_key": "LicenseRef-scancode-ecma-no-patent", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Proprietary Free", "json": "ecma-no-patent.json", "yml": "ecma-no-patent.yml", "html": "ecma-no-patent.html", "text": "ecma-no-patent.LICENSE"}, {"license_key": "ecma-patent-coc-0", "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ecma-patent-coc-0.json", "yml": "ecma-patent-coc-0.yml", "html": "ecma-patent-coc-0.html", "text": "ecma-patent-coc-0.LICENSE"}, {"license_key": "ecma-patent-coc-1", "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ecma-patent-coc-1.json", "yml": "ecma-patent-coc-1.yml", "html": "ecma-patent-coc-1.html", "text": "ecma-patent-coc-1.LICENSE"}, {"license_key": "ecma-patent-coc-2", "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ecma-patent-coc-2.json", "yml": "ecma-patent-coc-2.yml", "html": "ecma-patent-coc-2.html", "text": "ecma-patent-coc-2.LICENSE"}, {"license_key": "ecos", "spdx_license_key": "eCos-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "ecos.json", "yml": "ecos.yml", "html": "ecos.html", "text": "ecos.LICENSE"}, {"license_key": "ecos-exception-2.0", "spdx_license_key": "eCos-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "ecos-exception-2.0.json", "yml": "ecos-exception-2.0.yml", "html": "ecos-exception-2.0.html", "text": "ecos-exception-2.0.LICENSE"}, {"license_key": "ecosrh-1.0", "spdx_license_key": "LicenseRef-scancode-ecosrh-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "ecosrh-1.0.json", "yml": "ecosrh-1.0.yml", "html": "ecosrh-1.0.html", "text": "ecosrh-1.0.LICENSE"}, {"license_key": "ecosrh-1.1", "spdx_license_key": "RHeCos-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "ecosrh-1.1.json", "yml": "ecosrh-1.1.yml", "html": "ecosrh-1.1.html", "text": "ecosrh-1.1.LICENSE"}, {"license_key": "efl-1.0", "spdx_license_key": "EFL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "efl-1.0.json", "yml": "efl-1.0.yml", "html": "efl-1.0.html", "text": "efl-1.0.LICENSE"}, {"license_key": "efl-2.0", "spdx_license_key": "EFL-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "efl-2.0.json", "yml": "efl-2.0.yml", "html": "efl-2.0.html", "text": "efl-2.0.LICENSE"}, {"license_key": "efsl-1.0", "spdx_license_key": "LicenseRef-scancode-efsl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "efsl-1.0.json", "yml": "efsl-1.0.yml", "html": "efsl-1.0.html", "text": "efsl-1.0.LICENSE"}, {"license_key": "egenix-1.0.0", "spdx_license_key": "LicenseRef-scancode-egenix-1.0.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "egenix-1.0.0.json", "yml": "egenix-1.0.0.yml", "html": "egenix-1.0.0.html", "text": "egenix-1.0.0.LICENSE"}, {"license_key": "egenix-1.1.0", "spdx_license_key": "eGenix", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "egenix-1.1.0.json", "yml": "egenix-1.1.0.yml", "html": "egenix-1.1.0.html", "text": "egenix-1.1.0.LICENSE"}, {"license_key": "egrappler", "spdx_license_key": "LicenseRef-scancode-egrappler", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "egrappler.json", "yml": "egrappler.yml", "html": "egrappler.html", "text": "egrappler.LICENSE"}, {"license_key": "ej-technologies-eula", "spdx_license_key": "LicenseRef-scancode-ej-technologies-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ej-technologies-eula.json", "yml": "ej-technologies-eula.yml", "html": "ej-technologies-eula.html", "text": "ej-technologies-eula.LICENSE"}, {"license_key": "ekiga-exception-2.0-plus", "spdx_license_key": "LicenseRef-scancode-ekiga-exception-2.0-plus", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "ekiga-exception-2.0-plus.json", "yml": "ekiga-exception-2.0-plus.yml", "html": "ekiga-exception-2.0-plus.html", "text": "ekiga-exception-2.0-plus.LICENSE"}, {"license_key": "ekioh", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "ekioh.json", "yml": "ekioh.yml", "html": "ekioh.html", "text": "ekioh.LICENSE"}, {"license_key": "elastic-license-2018", "spdx_license_key": "LicenseRef-scancode-elastic-license-2018", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "elastic-license-2018.json", "yml": "elastic-license-2018.yml", "html": "elastic-license-2018.html", "text": "elastic-license-2018.LICENSE"}, {"license_key": "elastic-license-v2", "spdx_license_key": "Elastic-2.0", "other_spdx_license_keys": ["LicenseRef-scancode-elastic-license-v2"], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "elastic-license-v2.json", "yml": "elastic-license-v2.yml", "html": "elastic-license-v2.html", "text": "elastic-license-v2.LICENSE"}, {"license_key": "elib-gpl", "spdx_license_key": "LicenseRef-scancode-elib-gpl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "elib-gpl.json", "yml": "elib-gpl.yml", "html": "elib-gpl.html", "text": "elib-gpl.LICENSE"}, {"license_key": "ellis-lab", "spdx_license_key": "LicenseRef-scancode-ellis-lab", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ellis-lab.json", "yml": "ellis-lab.yml", "html": "ellis-lab.html", "text": "ellis-lab.LICENSE"}, {"license_key": "emit", "spdx_license_key": "LicenseRef-scancode-emit", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "emit.json", "yml": "emit.yml", "html": "emit.html", "text": "emit.LICENSE"}, {"license_key": "emx-library", "spdx_license_key": "LicenseRef-scancode-emx-library", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "emx-library.json", "yml": "emx-library.yml", "html": "emx-library.html", "text": "emx-library.LICENSE"}, {"license_key": "energyplus-bsd", "spdx_license_key": "LicenseRef-scancode-energyplus-bsd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "energyplus-bsd.json", "yml": "energyplus-bsd.yml", "html": "energyplus-bsd.html", "text": "energyplus-bsd.LICENSE"}, {"license_key": "enhydra-1.1", "spdx_license_key": "LicenseRef-scancode-enhydra-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "enhydra-1.1.json", "yml": "enhydra-1.1.yml", "html": "enhydra-1.1.html", "text": "enhydra-1.1.LICENSE"}, {"license_key": "enlightenment", "spdx_license_key": "MIT-advertising", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "enlightenment.json", "yml": "enlightenment.yml", "html": "enlightenment.html", "text": "enlightenment.LICENSE"}, {"license_key": "enna", "spdx_license_key": "MIT-enna", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "enna.json", "yml": "enna.yml", "html": "enna.html", "text": "enna.LICENSE"}, {"license_key": "entessa-1.0", "spdx_license_key": "Entessa", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "entessa-1.0.json", "yml": "entessa-1.0.yml", "html": "entessa-1.0.html", "text": "entessa-1.0.LICENSE"}, {"license_key": "epaperpress", "spdx_license_key": "LicenseRef-scancode-epaperpress", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "epaperpress.json", "yml": "epaperpress.yml", "html": "epaperpress.html", "text": "epaperpress.LICENSE"}, {"license_key": "epics", "spdx_license_key": "EPICS", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "epics.json", "yml": "epics.yml", "html": "epics.html", "text": "epics.LICENSE"}, {"license_key": "epl-1.0", "spdx_license_key": "EPL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "epl-1.0.json", "yml": "epl-1.0.yml", "html": "epl-1.0.html", "text": "epl-1.0.LICENSE"}, {"license_key": "epl-2.0", "spdx_license_key": "EPL-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "epl-2.0.json", "yml": "epl-2.0.yml", "html": "epl-2.0.html", "text": "epl-2.0.LICENSE"}, {"license_key": "epo-osl-2005.1", "spdx_license_key": "LicenseRef-scancode-epo-osl-2005.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "epo-osl-2005.1.json", "yml": "epo-osl-2005.1.yml", "html": "epo-osl-2005.1.html", "text": "epo-osl-2005.1.LICENSE"}, {"license_key": "eric-glass", "spdx_license_key": "LicenseRef-scancode-eric-glass", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "eric-glass.json", "yml": "eric-glass.yml", "html": "eric-glass.html", "text": "eric-glass.LICENSE"}, {"license_key": "erlangpl-1.1", "spdx_license_key": "ErlPL-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "erlangpl-1.1.json", "yml": "erlangpl-1.1.yml", "html": "erlangpl-1.1.html", "text": "erlangpl-1.1.LICENSE"}, {"license_key": "errbot-exception", "spdx_license_key": "LicenseRef-scancode-errbot-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Permissive", "json": "errbot-exception.json", "yml": "errbot-exception.yml", "html": "errbot-exception.html", "text": "errbot-exception.LICENSE"}, {"license_key": "esri", "spdx_license_key": "LicenseRef-scancode-esri", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "esri.json", "yml": "esri.yml", "html": "esri.html", "text": "esri.LICENSE"}, {"license_key": "esri-devkit", "spdx_license_key": "LicenseRef-scancode-esri-devkit", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "esri-devkit.json", "yml": "esri-devkit.yml", "html": "esri-devkit.html", "text": "esri-devkit.LICENSE"}, {"license_key": "etalab-2.0", "spdx_license_key": "etalab-2.0", "other_spdx_license_keys": ["LicenseRef-scancode-etalab-2.0", "LicenseRef-scancode-etalab-2.0-fr"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "etalab-2.0.json", "yml": "etalab-2.0.yml", "html": "etalab-2.0.html", "text": "etalab-2.0.LICENSE"}, {"license_key": "etalab-2.0-en", "spdx_license_key": "LicenseRef-scancode-etalab-2.0-en", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "etalab-2.0-en.json", "yml": "etalab-2.0-en.yml", "html": "etalab-2.0-en.html", "text": "etalab-2.0-en.LICENSE"}, {"license_key": "etalab-2.0-fr", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Unstated License", "json": "etalab-2.0-fr.json", "yml": "etalab-2.0-fr.yml", "html": "etalab-2.0-fr.html", "text": "etalab-2.0-fr.LICENSE"}, {"license_key": "eu-datagrid", "spdx_license_key": "EUDatagrid", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "eu-datagrid.json", "yml": "eu-datagrid.yml", "html": "eu-datagrid.html", "text": "eu-datagrid.LICENSE"}, {"license_key": "eupl-1.0", "spdx_license_key": "EUPL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "eupl-1.0.json", "yml": "eupl-1.0.yml", "html": "eupl-1.0.html", "text": "eupl-1.0.LICENSE"}, {"license_key": "eupl-1.1", "spdx_license_key": "EUPL-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "eupl-1.1.json", "yml": "eupl-1.1.yml", "html": "eupl-1.1.html", "text": "eupl-1.1.LICENSE"}, {"license_key": "eupl-1.2", "spdx_license_key": "EUPL-1.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "eupl-1.2.json", "yml": "eupl-1.2.yml", "html": "eupl-1.2.html", "text": "eupl-1.2.LICENSE"}, {"license_key": "eurosym", "spdx_license_key": "Eurosym", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "eurosym.json", "yml": "eurosym.yml", "html": "eurosym.html", "text": "eurosym.LICENSE"}, {"license_key": "examdiff", "spdx_license_key": "LicenseRef-scancode-examdiff", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "examdiff.json", "yml": "examdiff.yml", "html": "examdiff.html", "text": "examdiff.LICENSE"}, {"license_key": "excelsior-jet-runtime", "spdx_license_key": "LicenseRef-scancode-excelsior-jet-runtime", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "excelsior-jet-runtime.json", "yml": "excelsior-jet-runtime.yml", "html": "excelsior-jet-runtime.html", "text": "excelsior-jet-runtime.LICENSE"}, {"license_key": "fabien-tassin", "spdx_license_key": "LicenseRef-scancode-fabien-tassin", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "fabien-tassin.json", "yml": "fabien-tassin.yml", "html": "fabien-tassin.html", "text": "fabien-tassin.LICENSE"}, {"license_key": "fabric-agreement-2017", "spdx_license_key": "LicenseRef-scancode-fabric-agreement-2017", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "fabric-agreement-2017.json", "yml": "fabric-agreement-2017.yml", "html": "fabric-agreement-2017.html", "text": "fabric-agreement-2017.LICENSE"}, {"license_key": "facebook-nuclide", "spdx_license_key": "LicenseRef-scancode-facebook-nuclide", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "facebook-nuclide.json", "yml": "facebook-nuclide.yml", "html": "facebook-nuclide.html", "text": "facebook-nuclide.LICENSE"}, {"license_key": "facebook-patent-rights-2", "spdx_license_key": "LicenseRef-scancode-facebook-patent-rights-2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "facebook-patent-rights-2.json", "yml": "facebook-patent-rights-2.yml", "html": "facebook-patent-rights-2.html", "text": "facebook-patent-rights-2.LICENSE"}, {"license_key": "facebook-software-license", "spdx_license_key": "LicenseRef-scancode-facebook-software-license", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "facebook-software-license.json", "yml": "facebook-software-license.yml", "html": "facebook-software-license.html", "text": "facebook-software-license.LICENSE"}, {"license_key": "fair", "spdx_license_key": "Fair", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "fair.json", "yml": "fair.yml", "html": "fair.html", "text": "fair.LICENSE"}, {"license_key": "fair-source-0.9", "spdx_license_key": "LicenseRef-scancode-fair-source-0.9", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "fair-source-0.9.json", "yml": "fair-source-0.9.yml", "html": "fair-source-0.9.html", "text": "fair-source-0.9.LICENSE"}, {"license_key": "fancyzoom", "spdx_license_key": "LicenseRef-scancode-fancyzoom", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "fancyzoom.json", "yml": "fancyzoom.yml", "html": "fancyzoom.html", "text": "fancyzoom.LICENSE"}, {"license_key": "far-manager-exception", "spdx_license_key": "LicenseRef-scancode-far-manager-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Permissive", "json": "far-manager-exception.json", "yml": "far-manager-exception.yml", "html": "far-manager-exception.html", "text": "far-manager-exception.LICENSE"}, {"license_key": "fastbuild-2012-2020", "spdx_license_key": "LicenseRef-scancode-fastbuild-2012-2020", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "fastbuild-2012-2020.json", "yml": "fastbuild-2012-2020.yml", "html": "fastbuild-2012-2020.html", "text": "fastbuild-2012-2020.LICENSE"}, {"license_key": "fastcgi-devkit", "spdx_license_key": "OML", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "fastcgi-devkit.json", "yml": "fastcgi-devkit.yml", "html": "fastcgi-devkit.html", "text": "fastcgi-devkit.LICENSE"}, {"license_key": "fatfs", "spdx_license_key": "LicenseRef-scancode-fatfs", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "fatfs.json", "yml": "fatfs.yml", "html": "fatfs.html", "text": "fatfs.LICENSE"}, {"license_key": "fawkes-runtime-exception", "spdx_license_key": "Fawkes-Runtime-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "fawkes-runtime-exception.json", "yml": "fawkes-runtime-exception.yml", "html": "fawkes-runtime-exception.html", "text": "fawkes-runtime-exception.LICENSE"}, {"license_key": "fftpack-2004", "spdx_license_key": "LicenseRef-scancode-fftpack-2004", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "fftpack-2004.json", "yml": "fftpack-2004.yml", "html": "fftpack-2004.html", "text": "fftpack-2004.LICENSE"}, {"license_key": "filament-group-mit", "spdx_license_key": "LicenseRef-scancode-filament-group-mit", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "filament-group-mit.json", "yml": "filament-group-mit.yml", "html": "filament-group-mit.html", "text": "filament-group-mit.LICENSE"}, {"license_key": "first-works-appreciative-1.2", "spdx_license_key": "LicenseRef-scancode-first-works-appreciative-1.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "first-works-appreciative-1.2.json", "yml": "first-works-appreciative-1.2.yml", "html": "first-works-appreciative-1.2.html", "text": "first-works-appreciative-1.2.LICENSE"}, {"license_key": "flex-2.5", "spdx_license_key": "LicenseRef-scancode-flex-2.5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "flex-2.5.json", "yml": "flex-2.5.yml", "html": "flex-2.5.html", "text": "flex-2.5.LICENSE"}, {"license_key": "flex2sdk", "spdx_license_key": "LicenseRef-scancode-flex2sdk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "flex2sdk.json", "yml": "flex2sdk.yml", "html": "flex2sdk.html", "text": "flex2sdk.LICENSE"}, {"license_key": "flora-1.1", "spdx_license_key": "LicenseRef-scancode-flora-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "flora-1.1.json", "yml": "flora-1.1.yml", "html": "flora-1.1.html", "text": "flora-1.1.LICENSE"}, {"license_key": "flowplayer-gpl-3.0", "spdx_license_key": "LicenseRef-scancode-flowplayer-gpl-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "flowplayer-gpl-3.0.json", "yml": "flowplayer-gpl-3.0.yml", "html": "flowplayer-gpl-3.0.html", "text": "flowplayer-gpl-3.0.LICENSE"}, {"license_key": "fltk-exception-lgpl-2.0", "spdx_license_key": "FLTK-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "fltk-exception-lgpl-2.0.json", "yml": "fltk-exception-lgpl-2.0.yml", "html": "fltk-exception-lgpl-2.0.html", "text": "fltk-exception-lgpl-2.0.LICENSE"}, {"license_key": "font-alias", "spdx_license_key": "LicenseRef-scancode-font-alias", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "font-alias.json", "yml": "font-alias.yml", "html": "font-alias.html", "text": "font-alias.LICENSE"}, {"license_key": "font-exception-gpl", "spdx_license_key": "Font-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "font-exception-gpl.json", "yml": "font-exception-gpl.yml", "html": "font-exception-gpl.html", "text": "font-exception-gpl.LICENSE"}, {"license_key": "foobar2000", "spdx_license_key": "LicenseRef-scancode-foobar2000", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "foobar2000.json", "yml": "foobar2000.yml", "html": "foobar2000.html", "text": "foobar2000.LICENSE"}, {"license_key": "fpl", "spdx_license_key": "LicenseRef-scancode-fpl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "fpl.json", "yml": "fpl.yml", "html": "fpl.html", "text": "fpl.LICENSE"}, {"license_key": "fplot", "spdx_license_key": "LicenseRef-scancode-fplot", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "fplot.json", "yml": "fplot.yml", "html": "fplot.html", "text": "fplot.LICENSE"}, {"license_key": "frameworx-1.0", "spdx_license_key": "Frameworx-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "frameworx-1.0.json", "yml": "frameworx-1.0.yml", "html": "frameworx-1.0.html", "text": "frameworx-1.0.LICENSE"}, {"license_key": "fraunhofer-fdk-aac-codec", "spdx_license_key": "FDK-AAC", "other_spdx_license_keys": ["LicenseRef-scancode-fraunhofer-fdk-aac-codec"], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "fraunhofer-fdk-aac-codec.json", "yml": "fraunhofer-fdk-aac-codec.yml", "html": "fraunhofer-fdk-aac-codec.html", "text": "fraunhofer-fdk-aac-codec.LICENSE"}, {"license_key": "fraunhofer-iso-14496-10", "spdx_license_key": "LicenseRef-scancode-fraunhofer-iso-14496-10", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "fraunhofer-iso-14496-10.json", "yml": "fraunhofer-iso-14496-10.yml", "html": "fraunhofer-iso-14496-10.html", "text": "fraunhofer-iso-14496-10.LICENSE"}, {"license_key": "free-art-1.3", "spdx_license_key": "LicenseRef-scancode-free-art-1.3", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "free-art-1.3.json", "yml": "free-art-1.3.yml", "html": "free-art-1.3.html", "text": "free-art-1.3.LICENSE"}, {"license_key": "free-fork", "spdx_license_key": "LicenseRef-scancode-free-fork", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "free-fork.json", "yml": "free-fork.yml", "html": "free-fork.html", "text": "free-fork.LICENSE"}, {"license_key": "free-unknown", "spdx_license_key": "LicenseRef-scancode-free-unknown", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Unstated License", "json": "free-unknown.json", "yml": "free-unknown.yml", "html": "free-unknown.html", "text": "free-unknown.LICENSE"}, {"license_key": "freebsd-boot", "spdx_license_key": "LicenseRef-scancode-freebsd-boot", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "freebsd-boot.json", "yml": "freebsd-boot.yml", "html": "freebsd-boot.html", "text": "freebsd-boot.LICENSE"}, {"license_key": "freebsd-doc", "spdx_license_key": "FreeBSD-DOC", "other_spdx_license_keys": ["LicenseRef-scancode-freebsd-doc"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "freebsd-doc.json", "yml": "freebsd-doc.yml", "html": "freebsd-doc.html", "text": "freebsd-doc.LICENSE"}, {"license_key": "freebsd-first", "spdx_license_key": "LicenseRef-scancode-freebsd-first", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "freebsd-first.json", "yml": "freebsd-first.yml", "html": "freebsd-first.html", "text": "freebsd-first.LICENSE"}, {"license_key": "freeimage-1.0", "spdx_license_key": "FreeImage", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "freeimage-1.0.json", "yml": "freeimage-1.0.yml", "html": "freeimage-1.0.html", "text": "freeimage-1.0.LICENSE"}, {"license_key": "freemarker", "spdx_license_key": "LicenseRef-scancode-freemarker", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "freemarker.json", "yml": "freemarker.yml", "html": "freemarker.html", "text": "freemarker.LICENSE"}, {"license_key": "freertos-exception-2.0", "spdx_license_key": "freertos-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "freertos-exception-2.0.json", "yml": "freertos-exception-2.0.yml", "html": "freertos-exception-2.0.html", "text": "freertos-exception-2.0.LICENSE"}, {"license_key": "freetts", "spdx_license_key": "LicenseRef-scancode-freetts", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "freetts.json", "yml": "freetts.yml", "html": "freetts.html", "text": "freetts.LICENSE"}, {"license_key": "freetype", "spdx_license_key": "FTL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "freetype.json", "yml": "freetype.yml", "html": "freetype.html", "text": "freetype.LICENSE"}, {"license_key": "freetype-patent", "spdx_license_key": "LicenseRef-scancode-freetype-patent", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "freetype-patent.json", "yml": "freetype-patent.yml", "html": "freetype-patent.html", "text": "freetype-patent.LICENSE"}, {"license_key": "froala-owdl-1.0", "spdx_license_key": "LicenseRef-scancode-froala-owdl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "froala-owdl-1.0.json", "yml": "froala-owdl-1.0.yml", "html": "froala-owdl-1.0.html", "text": "froala-owdl-1.0.LICENSE"}, {"license_key": "frontier-1.0", "spdx_license_key": "LicenseRef-scancode-frontier-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "frontier-1.0.json", "yml": "frontier-1.0.yml", "html": "frontier-1.0.html", "text": "frontier-1.0.LICENSE"}, {"license_key": "fsf-ap", "spdx_license_key": "FSFAP", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "fsf-ap.json", "yml": "fsf-ap.yml", "html": "fsf-ap.html", "text": "fsf-ap.LICENSE"}, {"license_key": "fsf-free", "spdx_license_key": "FSFUL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "fsf-free.json", "yml": "fsf-free.yml", "html": "fsf-free.html", "text": "fsf-free.LICENSE"}, {"license_key": "fsf-notice", "spdx_license_key": "LicenseRef-scancode-fsf-notice", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "fsf-notice.json", "yml": "fsf-notice.yml", "html": "fsf-notice.html", "text": "fsf-notice.LICENSE"}, {"license_key": "fsf-unlimited", "spdx_license_key": "FSFULLR", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "fsf-unlimited.json", "yml": "fsf-unlimited.yml", "html": "fsf-unlimited.html", "text": "fsf-unlimited.LICENSE"}, {"license_key": "fsf-unlimited-no-warranty", "spdx_license_key": "LicenseRef-scancode-fsf-unlimited-no-warranty", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "fsf-unlimited-no-warranty.json", "yml": "fsf-unlimited-no-warranty.yml", "html": "fsf-unlimited-no-warranty.html", "text": "fsf-unlimited-no-warranty.LICENSE"}, {"license_key": "ftdi", "spdx_license_key": "LicenseRef-scancode-ftdi", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ftdi.json", "yml": "ftdi.yml", "html": "ftdi.html", "text": "ftdi.LICENSE"}, {"license_key": "ftpbean", "spdx_license_key": "LicenseRef-scancode-ftpbean", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ftpbean.json", "yml": "ftpbean.yml", "html": "ftpbean.html", "text": "ftpbean.LICENSE"}, {"license_key": "gareth-mccaughan", "spdx_license_key": "LicenseRef-scancode-gareth-mccaughan", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "gareth-mccaughan.json", "yml": "gareth-mccaughan.yml", "html": "gareth-mccaughan.html", "text": "gareth-mccaughan.LICENSE"}, {"license_key": "gary-s-brown", "spdx_license_key": "LicenseRef-scancode-gary-s-brown", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "gary-s-brown.json", "yml": "gary-s-brown.yml", "html": "gary-s-brown.html", "text": "gary-s-brown.LICENSE"}, {"license_key": "gcc-compiler-exception-2.0", "spdx_license_key": "LicenseRef-scancode-gcc-compiler-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "gcc-compiler-exception-2.0.json", "yml": "gcc-compiler-exception-2.0.yml", "html": "gcc-compiler-exception-2.0.html", "text": "gcc-compiler-exception-2.0.LICENSE"}, {"license_key": "gcc-exception-3.0", "spdx_license_key": "LicenseRef-scancode-exception-3.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "gcc-exception-3.0.json", "yml": "gcc-exception-3.0.yml", "html": "gcc-exception-3.0.html", "text": "gcc-exception-3.0.LICENSE"}, {"license_key": "gcc-exception-3.1", "spdx_license_key": "GCC-exception-3.1", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "gcc-exception-3.1.json", "yml": "gcc-exception-3.1.yml", "html": "gcc-exception-3.1.html", "text": "gcc-exception-3.1.LICENSE"}, {"license_key": "gcc-linking-exception-2.0", "spdx_license_key": "GCC-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "gcc-linking-exception-2.0.json", "yml": "gcc-linking-exception-2.0.yml", "html": "gcc-linking-exception-2.0.html", "text": "gcc-linking-exception-2.0.LICENSE"}, {"license_key": "gcel-2022", "spdx_license_key": "LicenseRef-scancode-gcel-2022", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "gcel-2022.json", "yml": "gcel-2022.yml", "html": "gcel-2022.html", "text": "gcel-2022.LICENSE"}, {"license_key": "gco-v3.0", "spdx_license_key": "LicenseRef-scancode-gco-v3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "gco-v3.0.json", "yml": "gco-v3.0.yml", "html": "gco-v3.0.html", "text": "gco-v3.0.LICENSE"}, {"license_key": "gdcl", "spdx_license_key": "LicenseRef-scancode-gdcl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "gdcl.json", "yml": "gdcl.yml", "html": "gdcl.html", "text": "gdcl.LICENSE"}, {"license_key": "generic-cla", "spdx_license_key": "LicenseRef-scancode-generic-cla", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Unstated License", "json": "generic-cla.json", "yml": "generic-cla.yml", "html": "generic-cla.html", "text": "generic-cla.LICENSE"}, {"license_key": "generic-exception", "spdx_license_key": "LicenseRef-scancode-generic-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Unstated License", "json": "generic-exception.json", "yml": "generic-exception.yml", "html": "generic-exception.html", "text": "generic-exception.LICENSE"}, {"license_key": "generic-export-compliance", "spdx_license_key": "LicenseRef-scancode-generic-export-compliance", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Unstated License", "json": "generic-export-compliance.json", "yml": "generic-export-compliance.yml", "html": "generic-export-compliance.html", "text": "generic-export-compliance.LICENSE"}, {"license_key": "generic-tos", "spdx_license_key": "LicenseRef-scancode-generic-tos", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Unstated License", "json": "generic-tos.json", "yml": "generic-tos.yml", "html": "generic-tos.html", "text": "generic-tos.LICENSE"}, {"license_key": "generic-trademark", "spdx_license_key": "LicenseRef-scancode-generic-trademark", "other_spdx_license_keys": ["LicenseRef-scancode-trademark-notice"], "is_exception": false, "is_deprecated": false, "category": "Unstated License", "json": "generic-trademark.json", "yml": "generic-trademark.yml", "html": "generic-trademark.html", "text": "generic-trademark.LICENSE"}, {"license_key": "genivia-gsoap", "spdx_license_key": "LicenseRef-scancode-genivia-gsoap", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "genivia-gsoap.json", "yml": "genivia-gsoap.yml", "html": "genivia-gsoap.html", "text": "genivia-gsoap.LICENSE"}, {"license_key": "genode-agpl-3.0-exception", "spdx_license_key": "LicenseRef-scancode-genode-agpl-3.0-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "genode-agpl-3.0-exception.json", "yml": "genode-agpl-3.0-exception.yml", "html": "genode-agpl-3.0-exception.html", "text": "genode-agpl-3.0-exception.LICENSE"}, {"license_key": "geoff-kuenning-1993", "spdx_license_key": "LicenseRef-scancode-geoff-kuenning-1993", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "geoff-kuenning-1993.json", "yml": "geoff-kuenning-1993.yml", "html": "geoff-kuenning-1993.html", "text": "geoff-kuenning-1993.LICENSE"}, {"license_key": "geoserver-exception-2.0-plus", "spdx_license_key": "LicenseRef-scancode-geoserver-exception-2.0-plus", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "geoserver-exception-2.0-plus.json", "yml": "geoserver-exception-2.0-plus.yml", "html": "geoserver-exception-2.0-plus.html", "text": "geoserver-exception-2.0-plus.LICENSE"}, {"license_key": "gfdl-1.1", "spdx_license_key": "GFDL-1.1-only", "other_spdx_license_keys": ["GFDL-1.1"], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gfdl-1.1.json", "yml": "gfdl-1.1.yml", "html": "gfdl-1.1.html", "text": "gfdl-1.1.LICENSE"}, {"license_key": "gfdl-1.1-invariants-only", "spdx_license_key": "GFDL-1.1-invariants-only", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gfdl-1.1-invariants-only.json", "yml": "gfdl-1.1-invariants-only.yml", "html": "gfdl-1.1-invariants-only.html", "text": "gfdl-1.1-invariants-only.LICENSE"}, {"license_key": "gfdl-1.1-invariants-or-later", "spdx_license_key": "GFDL-1.1-invariants-or-later", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gfdl-1.1-invariants-or-later.json", "yml": "gfdl-1.1-invariants-or-later.yml", "html": "gfdl-1.1-invariants-or-later.html", "text": "gfdl-1.1-invariants-or-later.LICENSE"}, {"license_key": "gfdl-1.1-no-invariants-only", "spdx_license_key": "GFDL-1.1-no-invariants-only", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gfdl-1.1-no-invariants-only.json", "yml": "gfdl-1.1-no-invariants-only.yml", "html": "gfdl-1.1-no-invariants-only.html", "text": "gfdl-1.1-no-invariants-only.LICENSE"}, {"license_key": "gfdl-1.1-no-invariants-or-later", "spdx_license_key": "GFDL-1.1-no-invariants-or-later", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gfdl-1.1-no-invariants-or-later.json", "yml": "gfdl-1.1-no-invariants-or-later.yml", "html": "gfdl-1.1-no-invariants-or-later.html", "text": "gfdl-1.1-no-invariants-or-later.LICENSE"}, {"license_key": "gfdl-1.1-plus", "spdx_license_key": "GFDL-1.1-or-later", "other_spdx_license_keys": ["GFDL-1.1+"], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gfdl-1.1-plus.json", "yml": "gfdl-1.1-plus.yml", "html": "gfdl-1.1-plus.html", "text": "gfdl-1.1-plus.LICENSE"}, {"license_key": "gfdl-1.2", "spdx_license_key": "GFDL-1.2-only", "other_spdx_license_keys": ["GFDL-1.2"], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gfdl-1.2.json", "yml": "gfdl-1.2.yml", "html": "gfdl-1.2.html", "text": "gfdl-1.2.LICENSE"}, {"license_key": "gfdl-1.2-invariants-only", "spdx_license_key": "GFDL-1.2-invariants-only", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gfdl-1.2-invariants-only.json", "yml": "gfdl-1.2-invariants-only.yml", "html": "gfdl-1.2-invariants-only.html", "text": "gfdl-1.2-invariants-only.LICENSE"}, {"license_key": "gfdl-1.2-invariants-or-later", "spdx_license_key": "GFDL-1.2-invariants-or-later", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gfdl-1.2-invariants-or-later.json", "yml": "gfdl-1.2-invariants-or-later.yml", "html": "gfdl-1.2-invariants-or-later.html", "text": "gfdl-1.2-invariants-or-later.LICENSE"}, {"license_key": "gfdl-1.2-no-invariants-only", "spdx_license_key": "GFDL-1.2-no-invariants-only", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gfdl-1.2-no-invariants-only.json", "yml": "gfdl-1.2-no-invariants-only.yml", "html": "gfdl-1.2-no-invariants-only.html", "text": "gfdl-1.2-no-invariants-only.LICENSE"}, {"license_key": "gfdl-1.2-no-invariants-or-later", "spdx_license_key": "GFDL-1.2-no-invariants-or-later", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gfdl-1.2-no-invariants-or-later.json", "yml": "gfdl-1.2-no-invariants-or-later.yml", "html": "gfdl-1.2-no-invariants-or-later.html", "text": "gfdl-1.2-no-invariants-or-later.LICENSE"}, {"license_key": "gfdl-1.2-plus", "spdx_license_key": "GFDL-1.2-or-later", "other_spdx_license_keys": ["GFDL-1.2+"], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gfdl-1.2-plus.json", "yml": "gfdl-1.2-plus.yml", "html": "gfdl-1.2-plus.html", "text": "gfdl-1.2-plus.LICENSE"}, {"license_key": "gfdl-1.3", "spdx_license_key": "GFDL-1.3-only", "other_spdx_license_keys": ["GFDL-1.3"], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gfdl-1.3.json", "yml": "gfdl-1.3.yml", "html": "gfdl-1.3.html", "text": "gfdl-1.3.LICENSE"}, {"license_key": "gfdl-1.3-invariants-only", "spdx_license_key": "GFDL-1.3-invariants-only", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gfdl-1.3-invariants-only.json", "yml": "gfdl-1.3-invariants-only.yml", "html": "gfdl-1.3-invariants-only.html", "text": "gfdl-1.3-invariants-only.LICENSE"}, {"license_key": "gfdl-1.3-invariants-or-later", "spdx_license_key": "GFDL-1.3-invariants-or-later", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gfdl-1.3-invariants-or-later.json", "yml": "gfdl-1.3-invariants-or-later.yml", "html": "gfdl-1.3-invariants-or-later.html", "text": "gfdl-1.3-invariants-or-later.LICENSE"}, {"license_key": "gfdl-1.3-no-invariants-only", "spdx_license_key": "GFDL-1.3-no-invariants-only", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gfdl-1.3-no-invariants-only.json", "yml": "gfdl-1.3-no-invariants-only.yml", "html": "gfdl-1.3-no-invariants-only.html", "text": "gfdl-1.3-no-invariants-only.LICENSE"}, {"license_key": "gfdl-1.3-no-invariants-or-later", "spdx_license_key": "GFDL-1.3-no-invariants-or-later", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gfdl-1.3-no-invariants-or-later.json", "yml": "gfdl-1.3-no-invariants-or-later.yml", "html": "gfdl-1.3-no-invariants-or-later.html", "text": "gfdl-1.3-no-invariants-or-later.LICENSE"}, {"license_key": "gfdl-1.3-plus", "spdx_license_key": "GFDL-1.3-or-later", "other_spdx_license_keys": ["GFDL-1.3+"], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gfdl-1.3-plus.json", "yml": "gfdl-1.3-plus.yml", "html": "gfdl-1.3-plus.html", "text": "gfdl-1.3-plus.LICENSE"}, {"license_key": "ghostpdl-permissive", "spdx_license_key": "LicenseRef-scancode-ghostpdl-permissive", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ghostpdl-permissive.json", "yml": "ghostpdl-permissive.yml", "html": "ghostpdl-permissive.html", "text": "ghostpdl-permissive.LICENSE"}, {"license_key": "ghostscript-1988", "spdx_license_key": "LicenseRef-scancode-ghostscript-1988", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "ghostscript-1988.json", "yml": "ghostscript-1988.yml", "html": "ghostscript-1988.html", "text": "ghostscript-1988.LICENSE"}, {"license_key": "gitlab-ee", "spdx_license_key": "LicenseRef-scancode-gitlab-ee", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "gitlab-ee.json", "yml": "gitlab-ee.yml", "html": "gitlab-ee.html", "text": "gitlab-ee.LICENSE"}, {"license_key": "gl2ps", "spdx_license_key": "GL2PS", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gl2ps.json", "yml": "gl2ps.yml", "html": "gl2ps.html", "text": "gl2ps.LICENSE"}, {"license_key": "gladman-older-rijndael-code-use", "spdx_license_key": "LicenseRef-scancode-gladman-older-rijndael-code", "other_spdx_license_keys": ["LicenseRef-scancode-gladman-older-rijndael-code-use"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "gladman-older-rijndael-code-use.json", "yml": "gladman-older-rijndael-code-use.yml", "html": "gladman-older-rijndael-code-use.html", "text": "gladman-older-rijndael-code-use.LICENSE"}, {"license_key": "glide", "spdx_license_key": "Glide", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "glide.json", "yml": "glide.yml", "html": "glide.html", "text": "glide.LICENSE"}, {"license_key": "glulxe", "spdx_license_key": "Glulxe", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "glulxe.json", "yml": "glulxe.yml", "html": "glulxe.html", "text": "glulxe.LICENSE"}, {"license_key": "glut", "spdx_license_key": "LicenseRef-scancode-glut", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "glut.json", "yml": "glut.yml", "html": "glut.html", "text": "glut.LICENSE"}, {"license_key": "glwtpl", "spdx_license_key": "GLWTPL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "glwtpl.json", "yml": "glwtpl.yml", "html": "glwtpl.html", "text": "glwtpl.LICENSE"}, {"license_key": "gnu-emacs-gpl-1988", "spdx_license_key": "LicenseRef-scancode-gnu-emacs-gpl-1988", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "gnu-emacs-gpl-1988.json", "yml": "gnu-emacs-gpl-1988.yml", "html": "gnu-emacs-gpl-1988.html", "text": "gnu-emacs-gpl-1988.LICENSE"}, {"license_key": "gnu-javamail-exception", "spdx_license_key": "gnu-javamail-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "gnu-javamail-exception.json", "yml": "gnu-javamail-exception.yml", "html": "gnu-javamail-exception.html", "text": "gnu-javamail-exception.LICENSE"}, {"license_key": "gnuplot", "spdx_license_key": "gnuplot", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gnuplot.json", "yml": "gnuplot.yml", "html": "gnuplot.html", "text": "gnuplot.LICENSE"}, {"license_key": "goahead", "spdx_license_key": "LicenseRef-scancode-goahead", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "goahead.json", "yml": "goahead.yml", "html": "goahead.html", "text": "goahead.LICENSE"}, {"license_key": "good-boy", "spdx_license_key": "LicenseRef-scancode-good-boy", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "good-boy.json", "yml": "good-boy.yml", "html": "good-boy.html", "text": "good-boy.LICENSE"}, {"license_key": "google-analytics-tos", "spdx_license_key": "LicenseRef-scancode-google-analytics-tos", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-analytics-tos.json", "yml": "google-analytics-tos.yml", "html": "google-analytics-tos.html", "text": "google-analytics-tos.LICENSE"}, {"license_key": "google-analytics-tos-2015", "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2015", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-analytics-tos-2015.json", "yml": "google-analytics-tos-2015.yml", "html": "google-analytics-tos-2015.html", "text": "google-analytics-tos-2015.LICENSE"}, {"license_key": "google-analytics-tos-2016", "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2016", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-analytics-tos-2016.json", "yml": "google-analytics-tos-2016.yml", "html": "google-analytics-tos-2016.html", "text": "google-analytics-tos-2016.LICENSE"}, {"license_key": "google-analytics-tos-2019", "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2019", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-analytics-tos-2019.json", "yml": "google-analytics-tos-2019.yml", "html": "google-analytics-tos-2019.html", "text": "google-analytics-tos-2019.LICENSE"}, {"license_key": "google-apis-tos-2021", "spdx_license_key": "LicenseRef-scancode-google-apis-tos-2021", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-apis-tos-2021.json", "yml": "google-apis-tos-2021.yml", "html": "google-apis-tos-2021.html", "text": "google-apis-tos-2021.LICENSE"}, {"license_key": "google-cla", "spdx_license_key": "LicenseRef-scancode-google-cla", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "google-cla.json", "yml": "google-cla.yml", "html": "google-cla.html", "text": "google-cla.LICENSE"}, {"license_key": "google-corporate-cla", "spdx_license_key": "LicenseRef-scancode-google-corporate-cla", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "google-corporate-cla.json", "yml": "google-corporate-cla.yml", "html": "google-corporate-cla.html", "text": "google-corporate-cla.LICENSE"}, {"license_key": "google-maps-tos-2018-02-07", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-02-07", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-maps-tos-2018-02-07.json", "yml": "google-maps-tos-2018-02-07.yml", "html": "google-maps-tos-2018-02-07.html", "text": "google-maps-tos-2018-02-07.LICENSE"}, {"license_key": "google-maps-tos-2018-05-01", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-05-01", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-maps-tos-2018-05-01.json", "yml": "google-maps-tos-2018-05-01.yml", "html": "google-maps-tos-2018-05-01.html", "text": "google-maps-tos-2018-05-01.LICENSE"}, {"license_key": "google-maps-tos-2018-06-07", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-06-07", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-maps-tos-2018-06-07.json", "yml": "google-maps-tos-2018-06-07.yml", "html": "google-maps-tos-2018-06-07.html", "text": "google-maps-tos-2018-06-07.LICENSE"}, {"license_key": "google-maps-tos-2018-07-09", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-07-09", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-maps-tos-2018-07-09.json", "yml": "google-maps-tos-2018-07-09.yml", "html": "google-maps-tos-2018-07-09.html", "text": "google-maps-tos-2018-07-09.LICENSE"}, {"license_key": "google-maps-tos-2018-07-19", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-07-19", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-maps-tos-2018-07-19.json", "yml": "google-maps-tos-2018-07-19.yml", "html": "google-maps-tos-2018-07-19.html", "text": "google-maps-tos-2018-07-19.LICENSE"}, {"license_key": "google-maps-tos-2018-10-01", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-10-01", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-maps-tos-2018-10-01.json", "yml": "google-maps-tos-2018-10-01.yml", "html": "google-maps-tos-2018-10-01.html", "text": "google-maps-tos-2018-10-01.LICENSE"}, {"license_key": "google-maps-tos-2018-10-31", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-10-31", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-maps-tos-2018-10-31.json", "yml": "google-maps-tos-2018-10-31.yml", "html": "google-maps-tos-2018-10-31.html", "text": "google-maps-tos-2018-10-31.LICENSE"}, {"license_key": "google-maps-tos-2019-05-02", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2019-05-02", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-maps-tos-2019-05-02.json", "yml": "google-maps-tos-2019-05-02.yml", "html": "google-maps-tos-2019-05-02.html", "text": "google-maps-tos-2019-05-02.LICENSE"}, {"license_key": "google-maps-tos-2019-11-21", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2019-11-21", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-maps-tos-2019-11-21.json", "yml": "google-maps-tos-2019-11-21.yml", "html": "google-maps-tos-2019-11-21.html", "text": "google-maps-tos-2019-11-21.LICENSE"}, {"license_key": "google-maps-tos-2020-04-02", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2020-04-02", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-maps-tos-2020-04-02.json", "yml": "google-maps-tos-2020-04-02.yml", "html": "google-maps-tos-2020-04-02.html", "text": "google-maps-tos-2020-04-02.LICENSE"}, {"license_key": "google-maps-tos-2020-04-27", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2020-04-27", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-maps-tos-2020-04-27.json", "yml": "google-maps-tos-2020-04-27.yml", "html": "google-maps-tos-2020-04-27.html", "text": "google-maps-tos-2020-04-27.LICENSE"}, {"license_key": "google-maps-tos-2020-05-06", "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2020-05-06", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-maps-tos-2020-05-06.json", "yml": "google-maps-tos-2020-05-06.yml", "html": "google-maps-tos-2020-05-06.html", "text": "google-maps-tos-2020-05-06.LICENSE"}, {"license_key": "google-ml-kit-tos-2022", "spdx_license_key": "LicenseRef-scancode-google-ml-kit-tos-2022", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-ml-kit-tos-2022.json", "yml": "google-ml-kit-tos-2022.yml", "html": "google-ml-kit-tos-2022.html", "text": "google-ml-kit-tos-2022.LICENSE"}, {"license_key": "google-patent-license", "spdx_license_key": "LicenseRef-scancode-google-patent-license", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "google-patent-license.json", "yml": "google-patent-license.yml", "html": "google-patent-license.html", "text": "google-patent-license.LICENSE"}, {"license_key": "google-patent-license-fuchsia", "spdx_license_key": "LicenseRef-scancode-google-patent-license-fuchsia", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "google-patent-license-fuchsia.json", "yml": "google-patent-license-fuchsia.yml", "html": "google-patent-license-fuchsia.html", "text": "google-patent-license-fuchsia.LICENSE"}, {"license_key": "google-patent-license-fuschia", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Patent License", "json": "google-patent-license-fuschia.json", "yml": "google-patent-license-fuschia.yml", "html": "google-patent-license-fuschia.html", "text": "google-patent-license-fuschia.LICENSE"}, {"license_key": "google-patent-license-golang", "spdx_license_key": "LicenseRef-scancode-google-patent-license-golang", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "google-patent-license-golang.json", "yml": "google-patent-license-golang.yml", "html": "google-patent-license-golang.html", "text": "google-patent-license-golang.LICENSE"}, {"license_key": "google-patent-license-webm", "spdx_license_key": "LicenseRef-scancode-google-patent-license-webm", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "google-patent-license-webm.json", "yml": "google-patent-license-webm.yml", "html": "google-patent-license-webm.html", "text": "google-patent-license-webm.LICENSE"}, {"license_key": "google-patent-license-webrtc", "spdx_license_key": "LicenseRef-scancode-google-patent-license-webrtc", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "google-patent-license-webrtc.json", "yml": "google-patent-license-webrtc.yml", "html": "google-patent-license-webrtc.html", "text": "google-patent-license-webrtc.LICENSE"}, {"license_key": "google-playcore-sdk-tos-2020", "spdx_license_key": "LicenseRef-scancode-google-playcore-sdk-tos-2020", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-playcore-sdk-tos-2020.json", "yml": "google-playcore-sdk-tos-2020.yml", "html": "google-playcore-sdk-tos-2020.html", "text": "google-playcore-sdk-tos-2020.LICENSE"}, {"license_key": "google-tos-2013", "spdx_license_key": "LicenseRef-scancode-google-tos-2013", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-tos-2013.json", "yml": "google-tos-2013.yml", "html": "google-tos-2013.html", "text": "google-tos-2013.LICENSE"}, {"license_key": "google-tos-2014", "spdx_license_key": "LicenseRef-scancode-google-tos-2014", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-tos-2014.json", "yml": "google-tos-2014.yml", "html": "google-tos-2014.html", "text": "google-tos-2014.LICENSE"}, {"license_key": "google-tos-2017", "spdx_license_key": "LicenseRef-scancode-google-tos-2017", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-tos-2017.json", "yml": "google-tos-2017.yml", "html": "google-tos-2017.html", "text": "google-tos-2017.LICENSE"}, {"license_key": "google-tos-2019", "spdx_license_key": "LicenseRef-scancode-google-tos-2019", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-tos-2019.json", "yml": "google-tos-2019.yml", "html": "google-tos-2019.html", "text": "google-tos-2019.LICENSE"}, {"license_key": "google-tos-2020", "spdx_license_key": "LicenseRef-scancode-google-tos-2020", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "google-tos-2020.json", "yml": "google-tos-2020.yml", "html": "google-tos-2020.html", "text": "google-tos-2020.LICENSE"}, {"license_key": "gpl-1.0", "spdx_license_key": "GPL-1.0-only", "other_spdx_license_keys": ["GPL-1.0"], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "gpl-1.0.json", "yml": "gpl-1.0.yml", "html": "gpl-1.0.html", "text": "gpl-1.0.LICENSE"}, {"license_key": "gpl-1.0-plus", "spdx_license_key": "GPL-1.0-or-later", "other_spdx_license_keys": ["GPL-1.0+", "LicenseRef-GPL"], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "gpl-1.0-plus.json", "yml": "gpl-1.0-plus.yml", "html": "gpl-1.0-plus.html", "text": "gpl-1.0-plus.LICENSE"}, {"license_key": "gpl-2.0", "spdx_license_key": "GPL-2.0-only", "other_spdx_license_keys": ["GPL-2.0", "GPL 2.0", "LicenseRef-GPL-2.0"], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "gpl-2.0.json", "yml": "gpl-2.0.yml", "html": "gpl-2.0.html", "text": "gpl-2.0.LICENSE"}, {"license_key": "gpl-2.0-adaptec", "spdx_license_key": "LicenseRef-scancode-gpl-2.0-adaptec", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "gpl-2.0-adaptec.json", "yml": "gpl-2.0-adaptec.yml", "html": "gpl-2.0-adaptec.html", "text": "gpl-2.0-adaptec.LICENSE"}, {"license_key": "gpl-2.0-autoconf", "spdx_license_key": "GPL-2.0-with-autoconf-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-autoconf.json", "yml": "gpl-2.0-autoconf.yml", "html": "gpl-2.0-autoconf.html", "text": "gpl-2.0-autoconf.LICENSE"}, {"license_key": "gpl-2.0-autoopts", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-autoopts.json", "yml": "gpl-2.0-autoopts.yml", "html": "gpl-2.0-autoopts.html", "text": "gpl-2.0-autoopts.LICENSE"}, {"license_key": "gpl-2.0-bison", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-bison.json", "yml": "gpl-2.0-bison.yml", "html": "gpl-2.0-bison.html", "text": "gpl-2.0-bison.LICENSE"}, {"license_key": "gpl-2.0-bison-2.2", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-bison-2.2.json", "yml": "gpl-2.0-bison-2.2.yml", "html": "gpl-2.0-bison-2.2.html", "text": "gpl-2.0-bison-2.2.LICENSE"}, {"license_key": "gpl-2.0-broadcom-linking", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-broadcom-linking.json", "yml": "gpl-2.0-broadcom-linking.yml", "html": "gpl-2.0-broadcom-linking.html", "text": "gpl-2.0-broadcom-linking.LICENSE"}, {"license_key": "gpl-2.0-classpath", "spdx_license_key": "GPL-2.0-with-classpath-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-classpath.json", "yml": "gpl-2.0-classpath.yml", "html": "gpl-2.0-classpath.html", "text": "gpl-2.0-classpath.LICENSE"}, {"license_key": "gpl-2.0-cygwin", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-cygwin.json", "yml": "gpl-2.0-cygwin.yml", "html": "gpl-2.0-cygwin.html", "text": "gpl-2.0-cygwin.LICENSE"}, {"license_key": "gpl-2.0-djvu", "spdx_license_key": "LicenseRef-scancode-gpl-2.0-djvu", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "gpl-2.0-djvu.json", "yml": "gpl-2.0-djvu.yml", "html": "gpl-2.0-djvu.html", "text": "gpl-2.0-djvu.LICENSE"}, {"license_key": "gpl-2.0-font", "spdx_license_key": "GPL-2.0-with-font-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-font.json", "yml": "gpl-2.0-font.yml", "html": "gpl-2.0-font.html", "text": "gpl-2.0-font.LICENSE"}, {"license_key": "gpl-2.0-freertos", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-freertos.json", "yml": "gpl-2.0-freertos.yml", "html": "gpl-2.0-freertos.html", "text": "gpl-2.0-freertos.LICENSE"}, {"license_key": "gpl-2.0-gcc", "spdx_license_key": "GPL-2.0-with-GCC-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-gcc.json", "yml": "gpl-2.0-gcc.yml", "html": "gpl-2.0-gcc.html", "text": "gpl-2.0-gcc.LICENSE"}, {"license_key": "gpl-2.0-gcc-compiler-exception", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-gcc-compiler-exception.json", "yml": "gpl-2.0-gcc-compiler-exception.yml", "html": "gpl-2.0-gcc-compiler-exception.html", "text": "gpl-2.0-gcc-compiler-exception.LICENSE"}, {"license_key": "gpl-2.0-glibc", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-glibc.json", "yml": "gpl-2.0-glibc.yml", "html": "gpl-2.0-glibc.html", "text": "gpl-2.0-glibc.LICENSE"}, {"license_key": "gpl-2.0-guile", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-guile.json", "yml": "gpl-2.0-guile.yml", "html": "gpl-2.0-guile.html", "text": "gpl-2.0-guile.LICENSE"}, {"license_key": "gpl-2.0-ice", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft", "json": "gpl-2.0-ice.json", "yml": "gpl-2.0-ice.yml", "html": "gpl-2.0-ice.html", "text": "gpl-2.0-ice.LICENSE"}, {"license_key": "gpl-2.0-independent-module-linking", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-independent-module-linking.json", "yml": "gpl-2.0-independent-module-linking.yml", "html": "gpl-2.0-independent-module-linking.html", "text": "gpl-2.0-independent-module-linking.LICENSE"}, {"license_key": "gpl-2.0-iolib", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-iolib.json", "yml": "gpl-2.0-iolib.yml", "html": "gpl-2.0-iolib.html", "text": "gpl-2.0-iolib.LICENSE"}, {"license_key": "gpl-2.0-iso-cpp", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-iso-cpp.json", "yml": "gpl-2.0-iso-cpp.yml", "html": "gpl-2.0-iso-cpp.html", "text": "gpl-2.0-iso-cpp.LICENSE"}, {"license_key": "gpl-2.0-javascript", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-javascript.json", "yml": "gpl-2.0-javascript.yml", "html": "gpl-2.0-javascript.html", "text": "gpl-2.0-javascript.LICENSE"}, {"license_key": "gpl-2.0-kernel", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-kernel.json", "yml": "gpl-2.0-kernel.yml", "html": "gpl-2.0-kernel.html", "text": "gpl-2.0-kernel.LICENSE"}, {"license_key": "gpl-2.0-koterov", "spdx_license_key": "LicenseRef-scancode-gpl-2.0-koterov", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "gpl-2.0-koterov.json", "yml": "gpl-2.0-koterov.yml", "html": "gpl-2.0-koterov.html", "text": "gpl-2.0-koterov.LICENSE"}, {"license_key": "gpl-2.0-libgit2", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-libgit2.json", "yml": "gpl-2.0-libgit2.yml", "html": "gpl-2.0-libgit2.html", "text": "gpl-2.0-libgit2.LICENSE"}, {"license_key": "gpl-2.0-library", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-library.json", "yml": "gpl-2.0-library.yml", "html": "gpl-2.0-library.html", "text": "gpl-2.0-library.LICENSE"}, {"license_key": "gpl-2.0-libtool", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-libtool.json", "yml": "gpl-2.0-libtool.yml", "html": "gpl-2.0-libtool.html", "text": "gpl-2.0-libtool.LICENSE"}, {"license_key": "gpl-2.0-lmbench", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft", "json": "gpl-2.0-lmbench.json", "yml": "gpl-2.0-lmbench.yml", "html": "gpl-2.0-lmbench.html", "text": "gpl-2.0-lmbench.LICENSE"}, {"license_key": "gpl-2.0-mysql-connector-odbc", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-mysql-connector-odbc.json", "yml": "gpl-2.0-mysql-connector-odbc.yml", "html": "gpl-2.0-mysql-connector-odbc.html", "text": "gpl-2.0-mysql-connector-odbc.LICENSE"}, {"license_key": "gpl-2.0-mysql-floss", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft", "json": "gpl-2.0-mysql-floss.json", "yml": "gpl-2.0-mysql-floss.yml", "html": "gpl-2.0-mysql-floss.html", "text": "gpl-2.0-mysql-floss.LICENSE"}, {"license_key": "gpl-2.0-openjdk", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-openjdk.json", "yml": "gpl-2.0-openjdk.yml", "html": "gpl-2.0-openjdk.html", "text": "gpl-2.0-openjdk.LICENSE"}, {"license_key": "gpl-2.0-openssl", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-openssl.json", "yml": "gpl-2.0-openssl.yml", "html": "gpl-2.0-openssl.html", "text": "gpl-2.0-openssl.LICENSE"}, {"license_key": "gpl-2.0-oracle-mysql-foss", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft", "json": "gpl-2.0-oracle-mysql-foss.json", "yml": "gpl-2.0-oracle-mysql-foss.yml", "html": "gpl-2.0-oracle-mysql-foss.html", "text": "gpl-2.0-oracle-mysql-foss.LICENSE"}, {"license_key": "gpl-2.0-oracle-openjdk", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-oracle-openjdk.json", "yml": "gpl-2.0-oracle-openjdk.yml", "html": "gpl-2.0-oracle-openjdk.html", "text": "gpl-2.0-oracle-openjdk.LICENSE"}, {"license_key": "gpl-2.0-plus", "spdx_license_key": "GPL-2.0-or-later", "other_spdx_license_keys": ["GPL-2.0+", "GPL 2.0+"], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "gpl-2.0-plus.json", "yml": "gpl-2.0-plus.yml", "html": "gpl-2.0-plus.html", "text": "gpl-2.0-plus.LICENSE"}, {"license_key": "gpl-2.0-plus-ada", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-plus-ada.json", "yml": "gpl-2.0-plus-ada.yml", "html": "gpl-2.0-plus-ada.html", "text": "gpl-2.0-plus-ada.LICENSE"}, {"license_key": "gpl-2.0-plus-ekiga", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-plus-ekiga.json", "yml": "gpl-2.0-plus-ekiga.yml", "html": "gpl-2.0-plus-ekiga.html", "text": "gpl-2.0-plus-ekiga.LICENSE"}, {"license_key": "gpl-2.0-plus-gcc", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-plus-gcc.json", "yml": "gpl-2.0-plus-gcc.yml", "html": "gpl-2.0-plus-gcc.html", "text": "gpl-2.0-plus-gcc.LICENSE"}, {"license_key": "gpl-2.0-plus-geoserver", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-plus-geoserver.json", "yml": "gpl-2.0-plus-geoserver.yml", "html": "gpl-2.0-plus-geoserver.html", "text": "gpl-2.0-plus-geoserver.LICENSE"}, {"license_key": "gpl-2.0-plus-linking", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-plus-linking.json", "yml": "gpl-2.0-plus-linking.yml", "html": "gpl-2.0-plus-linking.html", "text": "gpl-2.0-plus-linking.LICENSE"}, {"license_key": "gpl-2.0-plus-nant", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-plus-nant.json", "yml": "gpl-2.0-plus-nant.yml", "html": "gpl-2.0-plus-nant.html", "text": "gpl-2.0-plus-nant.LICENSE"}, {"license_key": "gpl-2.0-plus-openmotif", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-plus-openmotif.json", "yml": "gpl-2.0-plus-openmotif.yml", "html": "gpl-2.0-plus-openmotif.html", "text": "gpl-2.0-plus-openmotif.LICENSE"}, {"license_key": "gpl-2.0-plus-openssl", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft", "json": "gpl-2.0-plus-openssl.json", "yml": "gpl-2.0-plus-openssl.yml", "html": "gpl-2.0-plus-openssl.html", "text": "gpl-2.0-plus-openssl.LICENSE"}, {"license_key": "gpl-2.0-plus-sane", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-plus-sane.json", "yml": "gpl-2.0-plus-sane.yml", "html": "gpl-2.0-plus-sane.html", "text": "gpl-2.0-plus-sane.LICENSE"}, {"license_key": "gpl-2.0-plus-subcommander", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-plus-subcommander.json", "yml": "gpl-2.0-plus-subcommander.yml", "html": "gpl-2.0-plus-subcommander.html", "text": "gpl-2.0-plus-subcommander.LICENSE"}, {"license_key": "gpl-2.0-plus-syntext", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-plus-syntext.json", "yml": "gpl-2.0-plus-syntext.yml", "html": "gpl-2.0-plus-syntext.html", "text": "gpl-2.0-plus-syntext.LICENSE"}, {"license_key": "gpl-2.0-plus-upx", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-plus-upx.json", "yml": "gpl-2.0-plus-upx.yml", "html": "gpl-2.0-plus-upx.html", "text": "gpl-2.0-plus-upx.LICENSE"}, {"license_key": "gpl-2.0-proguard", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-proguard.json", "yml": "gpl-2.0-proguard.yml", "html": "gpl-2.0-proguard.html", "text": "gpl-2.0-proguard.LICENSE"}, {"license_key": "gpl-2.0-qt-qca", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-qt-qca.json", "yml": "gpl-2.0-qt-qca.yml", "html": "gpl-2.0-qt-qca.html", "text": "gpl-2.0-qt-qca.LICENSE"}, {"license_key": "gpl-2.0-redhat", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-redhat.json", "yml": "gpl-2.0-redhat.yml", "html": "gpl-2.0-redhat.html", "text": "gpl-2.0-redhat.LICENSE"}, {"license_key": "gpl-2.0-rrdtool-floss", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-rrdtool-floss.json", "yml": "gpl-2.0-rrdtool-floss.yml", "html": "gpl-2.0-rrdtool-floss.html", "text": "gpl-2.0-rrdtool-floss.LICENSE"}, {"license_key": "gpl-2.0-uboot", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-2.0-uboot.json", "yml": "gpl-2.0-uboot.yml", "html": "gpl-2.0-uboot.html", "text": "gpl-2.0-uboot.LICENSE"}, {"license_key": "gpl-3.0", "spdx_license_key": "GPL-3.0-only", "other_spdx_license_keys": ["GPL-3.0", "LicenseRef-gpl-3.0"], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "gpl-3.0.json", "yml": "gpl-3.0.yml", "html": "gpl-3.0.html", "text": "gpl-3.0.LICENSE"}, {"license_key": "gpl-3.0-aptana", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft", "json": "gpl-3.0-aptana.json", "yml": "gpl-3.0-aptana.yml", "html": "gpl-3.0-aptana.html", "text": "gpl-3.0-aptana.LICENSE"}, {"license_key": "gpl-3.0-autoconf", "spdx_license_key": "GPL-3.0-with-autoconf-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-3.0-autoconf.json", "yml": "gpl-3.0-autoconf.yml", "html": "gpl-3.0-autoconf.html", "text": "gpl-3.0-autoconf.LICENSE"}, {"license_key": "gpl-3.0-bison", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-3.0-bison.json", "yml": "gpl-3.0-bison.yml", "html": "gpl-3.0-bison.html", "text": "gpl-3.0-bison.LICENSE"}, {"license_key": "gpl-3.0-cygwin", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-3.0-cygwin.json", "yml": "gpl-3.0-cygwin.yml", "html": "gpl-3.0-cygwin.html", "text": "gpl-3.0-cygwin.LICENSE"}, {"license_key": "gpl-3.0-font", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-3.0-font.json", "yml": "gpl-3.0-font.yml", "html": "gpl-3.0-font.html", "text": "gpl-3.0-font.LICENSE"}, {"license_key": "gpl-3.0-gcc", "spdx_license_key": "GPL-3.0-with-GCC-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-3.0-gcc.json", "yml": "gpl-3.0-gcc.yml", "html": "gpl-3.0-gcc.html", "text": "gpl-3.0-gcc.LICENSE"}, {"license_key": "gpl-3.0-linking-exception", "spdx_license_key": "GPL-3.0-linking-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "gpl-3.0-linking-exception.json", "yml": "gpl-3.0-linking-exception.yml", "html": "gpl-3.0-linking-exception.html", "text": "gpl-3.0-linking-exception.LICENSE"}, {"license_key": "gpl-3.0-linking-source-exception", "spdx_license_key": "GPL-3.0-linking-source-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "gpl-3.0-linking-source-exception.json", "yml": "gpl-3.0-linking-source-exception.yml", "html": "gpl-3.0-linking-source-exception.html", "text": "gpl-3.0-linking-source-exception.LICENSE"}, {"license_key": "gpl-3.0-openbd", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft", "json": "gpl-3.0-openbd.json", "yml": "gpl-3.0-openbd.yml", "html": "gpl-3.0-openbd.html", "text": "gpl-3.0-openbd.LICENSE"}, {"license_key": "gpl-3.0-plus", "spdx_license_key": "GPL-3.0-or-later", "other_spdx_license_keys": ["GPL-3.0+", "LicenseRef-GPL-3.0-or-later"], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "gpl-3.0-plus.json", "yml": "gpl-3.0-plus.yml", "html": "gpl-3.0-plus.html", "text": "gpl-3.0-plus.LICENSE"}, {"license_key": "gpl-3.0-plus-openssl", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "gpl-3.0-plus-openssl.json", "yml": "gpl-3.0-plus-openssl.yml", "html": "gpl-3.0-plus-openssl.html", "text": "gpl-3.0-plus-openssl.LICENSE"}, {"license_key": "gpl-generic-additional-terms", "spdx_license_key": "LicenseRef-scancode-gpl-generic-additional-terms", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "gpl-generic-additional-terms.json", "yml": "gpl-generic-additional-terms.yml", "html": "gpl-generic-additional-terms.html", "text": "gpl-generic-additional-terms.LICENSE"}, {"license_key": "gplcc-1.0", "spdx_license_key": "GPL-CC-1.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "gplcc-1.0.json", "yml": "gplcc-1.0.yml", "html": "gplcc-1.0.html", "text": "gplcc-1.0.LICENSE"}, {"license_key": "graphics-gems", "spdx_license_key": "LicenseRef-scancode-graphics-gems", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "graphics-gems.json", "yml": "graphics-gems.yml", "html": "graphics-gems.html", "text": "graphics-gems.LICENSE"}, {"license_key": "greg-roelofs", "spdx_license_key": "LicenseRef-scancode-greg-roelofs", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "greg-roelofs.json", "yml": "greg-roelofs.yml", "html": "greg-roelofs.html", "text": "greg-roelofs.LICENSE"}, {"license_key": "gregory-pietsch", "spdx_license_key": "LicenseRef-scancode-gregory-pietsch", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "gregory-pietsch.json", "yml": "gregory-pietsch.yml", "html": "gregory-pietsch.html", "text": "gregory-pietsch.LICENSE"}, {"license_key": "gsoap-1.3a", "spdx_license_key": "LicenseRef-scancode-gsoap-1.3a", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gsoap-1.3a.json", "yml": "gsoap-1.3a.yml", "html": "gsoap-1.3a.html", "text": "gsoap-1.3a.LICENSE"}, {"license_key": "gsoap-1.3b", "spdx_license_key": "gSOAP-1.3b", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "gsoap-1.3b.json", "yml": "gsoap-1.3b.yml", "html": "gsoap-1.3b.html", "text": "gsoap-1.3b.LICENSE"}, {"license_key": "gstreamer-exception-2.0", "spdx_license_key": "LicenseRef-scancode-gstreamer-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "gstreamer-exception-2.0.json", "yml": "gstreamer-exception-2.0.yml", "html": "gstreamer-exception-2.0.html", "text": "gstreamer-exception-2.0.LICENSE"}, {"license_key": "guile-exception-2.0", "spdx_license_key": "LicenseRef-scancode-guile-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "guile-exception-2.0.json", "yml": "guile-exception-2.0.yml", "html": "guile-exception-2.0.html", "text": "guile-exception-2.0.LICENSE"}, {"license_key": "gust-font-1.0", "spdx_license_key": "LicenseRef-scancode-gust-font-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "gust-font-1.0.json", "yml": "gust-font-1.0.yml", "html": "gust-font-1.0.html", "text": "gust-font-1.0.LICENSE"}, {"license_key": "gust-font-2006-09-30", "spdx_license_key": "LicenseRef-scancode-gust-font-2006-09-30", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "gust-font-2006-09-30.json", "yml": "gust-font-2006-09-30.yml", "html": "gust-font-2006-09-30.html", "text": "gust-font-2006-09-30.LICENSE"}, {"license_key": "gutenberg-2020", "spdx_license_key": "LicenseRef-scancode-gutenberg-2020", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "gutenberg-2020.json", "yml": "gutenberg-2020.yml", "html": "gutenberg-2020.html", "text": "gutenberg-2020.LICENSE"}, {"license_key": "h2-1.0", "spdx_license_key": "LicenseRef-scancode-h2-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "h2-1.0.json", "yml": "h2-1.0.yml", "html": "h2-1.0.html", "text": "h2-1.0.LICENSE"}, {"license_key": "hacos-1.2", "spdx_license_key": "LicenseRef-scancode-hacos-1.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "hacos-1.2.json", "yml": "hacos-1.2.yml", "html": "hacos-1.2.html", "text": "hacos-1.2.LICENSE"}, {"license_key": "happy-bunny", "spdx_license_key": "LicenseRef-scancode-happy-bunny", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "happy-bunny.json", "yml": "happy-bunny.yml", "html": "happy-bunny.html", "text": "happy-bunny.LICENSE"}, {"license_key": "haskell-report", "spdx_license_key": "HaskellReport", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "haskell-report.json", "yml": "haskell-report.yml", "html": "haskell-report.html", "text": "haskell-report.LICENSE"}, {"license_key": "hauppauge-firmware-eula", "spdx_license_key": "LicenseRef-scancode-hauppauge-firmware-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "hauppauge-firmware-eula.json", "yml": "hauppauge-firmware-eula.yml", "html": "hauppauge-firmware-eula.html", "text": "hauppauge-firmware-eula.LICENSE"}, {"license_key": "hauppauge-firmware-oem", "spdx_license_key": "LicenseRef-scancode-hauppauge-firmware-oem", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "hauppauge-firmware-oem.json", "yml": "hauppauge-firmware-oem.yml", "html": "hauppauge-firmware-oem.html", "text": "hauppauge-firmware-oem.LICENSE"}, {"license_key": "hazelcast-community-1.0", "spdx_license_key": "LicenseRef-scancode-hazelcast-community-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "hazelcast-community-1.0.json", "yml": "hazelcast-community-1.0.yml", "html": "hazelcast-community-1.0.html", "text": "hazelcast-community-1.0.LICENSE"}, {"license_key": "hdf4", "spdx_license_key": "LicenseRef-scancode-hdf4", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "hdf4.json", "yml": "hdf4.yml", "html": "hdf4.html", "text": "hdf4.LICENSE"}, {"license_key": "hdf5", "spdx_license_key": "LicenseRef-scancode-hdf5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "hdf5.json", "yml": "hdf5.yml", "html": "hdf5.html", "text": "hdf5.LICENSE"}, {"license_key": "hdparm", "spdx_license_key": "LicenseRef-scancode-hdparm", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "hdparm.json", "yml": "hdparm.yml", "html": "hdparm.html", "text": "hdparm.LICENSE"}, {"license_key": "helios-eula", "spdx_license_key": "LicenseRef-scancode-helios-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "helios-eula.json", "yml": "helios-eula.yml", "html": "helios-eula.html", "text": "helios-eula.LICENSE"}, {"license_key": "helix", "spdx_license_key": "LicenseRef-scancode-helix", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "helix.json", "yml": "helix.yml", "html": "helix.html", "text": "helix.LICENSE"}, {"license_key": "henry-spencer-1999", "spdx_license_key": "Spencer-99", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "henry-spencer-1999.json", "yml": "henry-spencer-1999.yml", "html": "henry-spencer-1999.html", "text": "henry-spencer-1999.LICENSE"}, {"license_key": "here-disclaimer", "spdx_license_key": "LicenseRef-scancode-here-disclaimer", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Unstated License", "json": "here-disclaimer.json", "yml": "here-disclaimer.yml", "html": "here-disclaimer.html", "text": "here-disclaimer.LICENSE"}, {"license_key": "here-proprietary", "spdx_license_key": "LicenseRef-scancode-here-proprietary", "other_spdx_license_keys": ["LicenseRef-Proprietary-HERE"], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "here-proprietary.json", "yml": "here-proprietary.yml", "html": "here-proprietary.html", "text": "here-proprietary.LICENSE"}, {"license_key": "hessla", "spdx_license_key": "LicenseRef-scancode-hessla", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "hessla.json", "yml": "hessla.yml", "html": "hessla.html", "text": "hessla.LICENSE"}, {"license_key": "hidapi", "spdx_license_key": "LicenseRef-scancode-hidapi", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "hidapi.json", "yml": "hidapi.yml", "html": "hidapi.html", "text": "hidapi.LICENSE"}, {"license_key": "hippocratic-1.0", "spdx_license_key": "LicenseRef-scancode-hippocratic-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "hippocratic-1.0.json", "yml": "hippocratic-1.0.yml", "html": "hippocratic-1.0.html", "text": "hippocratic-1.0.LICENSE"}, {"license_key": "hippocratic-1.1", "spdx_license_key": "LicenseRef-scancode-hippocratic-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "hippocratic-1.1.json", "yml": "hippocratic-1.1.yml", "html": "hippocratic-1.1.html", "text": "hippocratic-1.1.LICENSE"}, {"license_key": "hippocratic-1.2", "spdx_license_key": "LicenseRef-scancode-hippocratic-1.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "hippocratic-1.2.json", "yml": "hippocratic-1.2.yml", "html": "hippocratic-1.2.html", "text": "hippocratic-1.2.LICENSE"}, {"license_key": "hippocratic-2.0", "spdx_license_key": "LicenseRef-scancode-hippocratic-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "hippocratic-2.0.json", "yml": "hippocratic-2.0.yml", "html": "hippocratic-2.0.html", "text": "hippocratic-2.0.LICENSE"}, {"license_key": "hippocratic-2.1", "spdx_license_key": "Hippocratic-2.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "hippocratic-2.1.json", "yml": "hippocratic-2.1.yml", "html": "hippocratic-2.1.html", "text": "hippocratic-2.1.LICENSE"}, {"license_key": "hippocratic-3.0", "spdx_license_key": "LicenseRef-scancode-Hippocratic-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "hippocratic-3.0.json", "yml": "hippocratic-3.0.yml", "html": "hippocratic-3.0.html", "text": "hippocratic-3.0.LICENSE"}, {"license_key": "historical", "spdx_license_key": "HPND", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "historical.json", "yml": "historical.yml", "html": "historical.html", "text": "historical.LICENSE"}, {"license_key": "historical-ntp", "spdx_license_key": "LicenseRef-scancode-historical-ntp", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "historical-ntp.json", "yml": "historical-ntp.yml", "html": "historical-ntp.html", "text": "historical-ntp.LICENSE"}, {"license_key": "historical-sell-variant", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "historical-sell-variant.json", "yml": "historical-sell-variant.yml", "html": "historical-sell-variant.html", "text": "historical-sell-variant.LICENSE"}, {"license_key": "homebrewed", "spdx_license_key": "LicenseRef-scancode-homebrewed", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "homebrewed.json", "yml": "homebrewed.yml", "html": "homebrewed.html", "text": "homebrewed.LICENSE"}, {"license_key": "hot-potato", "spdx_license_key": "LicenseRef-scancode-hot-potato", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "hot-potato.json", "yml": "hot-potato.yml", "html": "hot-potato.html", "text": "hot-potato.LICENSE"}, {"license_key": "hp", "spdx_license_key": "LicenseRef-scancode-hp", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "hp.json", "yml": "hp.yml", "html": "hp.html", "text": "hp.LICENSE"}, {"license_key": "hp-enterprise-eula", "spdx_license_key": "LicenseRef-scancode-hp-enterprise-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "hp-enterprise-eula.json", "yml": "hp-enterprise-eula.yml", "html": "hp-enterprise-eula.html", "text": "hp-enterprise-eula.LICENSE"}, {"license_key": "hp-netperf", "spdx_license_key": "LicenseRef-scancode-hp-netperf", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "hp-netperf.json", "yml": "hp-netperf.yml", "html": "hp-netperf.html", "text": "hp-netperf.LICENSE"}, {"license_key": "hp-proliant-essentials", "spdx_license_key": "LicenseRef-scancode-hp-proliant-essentials", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "hp-proliant-essentials.json", "yml": "hp-proliant-essentials.yml", "html": "hp-proliant-essentials.html", "text": "hp-proliant-essentials.LICENSE"}, {"license_key": "hp-snmp-pp", "spdx_license_key": "LicenseRef-scancode-hp-snmp-pp", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "hp-snmp-pp.json", "yml": "hp-snmp-pp.yml", "html": "hp-snmp-pp.html", "text": "hp-snmp-pp.LICENSE"}, {"license_key": "hp-software-eula", "spdx_license_key": "LicenseRef-scancode-hp-software-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "hp-software-eula.json", "yml": "hp-software-eula.yml", "html": "hp-software-eula.html", "text": "hp-software-eula.LICENSE"}, {"license_key": "hp-ux-java", "spdx_license_key": "LicenseRef-scancode-hp-ux-java", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "hp-ux-java.json", "yml": "hp-ux-java.yml", "html": "hp-ux-java.html", "text": "hp-ux-java.LICENSE"}, {"license_key": "hp-ux-jre", "spdx_license_key": "LicenseRef-scancode-hp-ux-jre", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "hp-ux-jre.json", "yml": "hp-ux-jre.yml", "html": "hp-ux-jre.html", "text": "hp-ux-jre.LICENSE"}, {"license_key": "hs-regexp", "spdx_license_key": "Spencer-94", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "hs-regexp.json", "yml": "hs-regexp.yml", "html": "hs-regexp.html", "text": "hs-regexp.LICENSE"}, {"license_key": "hs-regexp-orig", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "hs-regexp-orig.json", "yml": "hs-regexp-orig.yml", "html": "hs-regexp-orig.html", "text": "hs-regexp-orig.LICENSE"}, {"license_key": "html5", "spdx_license_key": "LicenseRef-scancode-html5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "html5.json", "yml": "html5.yml", "html": "html5.html", "text": "html5.LICENSE"}, {"license_key": "httpget", "spdx_license_key": "LicenseRef-scancode-httpget", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "httpget.json", "yml": "httpget.yml", "html": "httpget.html", "text": "httpget.LICENSE"}, {"license_key": "hugo", "spdx_license_key": "LicenseRef-scancode-hugo", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "hugo.json", "yml": "hugo.yml", "html": "hugo.html", "text": "hugo.LICENSE"}, {"license_key": "hxd", "spdx_license_key": "LicenseRef-scancode-hxd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "hxd.json", "yml": "hxd.yml", "html": "hxd.html", "text": "hxd.LICENSE"}, {"license_key": "i2p-gpl-java-exception", "spdx_license_key": "i2p-gpl-java-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "i2p-gpl-java-exception.json", "yml": "i2p-gpl-java-exception.yml", "html": "i2p-gpl-java-exception.html", "text": "i2p-gpl-java-exception.LICENSE"}, {"license_key": "ian-kaplan", "spdx_license_key": "LicenseRef-scancode-ian-kaplan", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ian-kaplan.json", "yml": "ian-kaplan.yml", "html": "ian-kaplan.html", "text": "ian-kaplan.LICENSE"}, {"license_key": "ian-piumarta", "spdx_license_key": "LicenseRef-scancode-ian-piumarta", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ian-piumarta.json", "yml": "ian-piumarta.yml", "html": "ian-piumarta.html", "text": "ian-piumarta.LICENSE"}, {"license_key": "ibm-as-is", "spdx_license_key": "LicenseRef-scancode-ibm-as-is", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ibm-as-is.json", "yml": "ibm-as-is.yml", "html": "ibm-as-is.html", "text": "ibm-as-is.LICENSE"}, {"license_key": "ibm-data-server-2011", "spdx_license_key": "LicenseRef-scancode-ibm-data-server-2011", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ibm-data-server-2011.json", "yml": "ibm-data-server-2011.yml", "html": "ibm-data-server-2011.html", "text": "ibm-data-server-2011.LICENSE"}, {"license_key": "ibm-developerworks-community-download", "spdx_license_key": "LicenseRef-scancode-ibm-developerworks-community", "other_spdx_license_keys": ["LicenseRef-scancode-ibm-developerworks-community-download"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ibm-developerworks-community-download.json", "yml": "ibm-developerworks-community-download.yml", "html": "ibm-developerworks-community-download.html", "text": "ibm-developerworks-community-download.LICENSE"}, {"license_key": "ibm-dhcp", "spdx_license_key": "LicenseRef-scancode-ibm-dhcp", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ibm-dhcp.json", "yml": "ibm-dhcp.yml", "html": "ibm-dhcp.html", "text": "ibm-dhcp.LICENSE"}, {"license_key": "ibm-icu", "spdx_license_key": "LicenseRef-scancode-ibm-icu", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ibm-icu.json", "yml": "ibm-icu.yml", "html": "ibm-icu.html", "text": "ibm-icu.LICENSE"}, {"license_key": "ibm-java-portlet-spec-2.0", "spdx_license_key": "LicenseRef-scancode-ibm-java-portlet-spec-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ibm-java-portlet-spec-2.0.json", "yml": "ibm-java-portlet-spec-2.0.yml", "html": "ibm-java-portlet-spec-2.0.html", "text": "ibm-java-portlet-spec-2.0.LICENSE"}, {"license_key": "ibm-jre", "spdx_license_key": "LicenseRef-scancode-ibm-jre", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ibm-jre.json", "yml": "ibm-jre.yml", "html": "ibm-jre.html", "text": "ibm-jre.LICENSE"}, {"license_key": "ibm-nwsc", "spdx_license_key": "LicenseRef-scancode-ibm-nwsc", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ibm-nwsc.json", "yml": "ibm-nwsc.yml", "html": "ibm-nwsc.html", "text": "ibm-nwsc.LICENSE"}, {"license_key": "ibm-pibs", "spdx_license_key": "IBM-pibs", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ibm-pibs.json", "yml": "ibm-pibs.yml", "html": "ibm-pibs.html", "text": "ibm-pibs.LICENSE"}, {"license_key": "ibm-sample", "spdx_license_key": "LicenseRef-scancode-ibm-sample", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ibm-sample.json", "yml": "ibm-sample.yml", "html": "ibm-sample.html", "text": "ibm-sample.LICENSE"}, {"license_key": "ibmpl-1.0", "spdx_license_key": "IPL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "ibmpl-1.0.json", "yml": "ibmpl-1.0.yml", "html": "ibmpl-1.0.html", "text": "ibmpl-1.0.LICENSE"}, {"license_key": "ibpp", "spdx_license_key": "LicenseRef-scancode-ibpp", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ibpp.json", "yml": "ibpp.yml", "html": "ibpp.html", "text": "ibpp.LICENSE"}, {"license_key": "ic-1.0", "spdx_license_key": "LicenseRef-scancode-ic-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "ic-1.0.json", "yml": "ic-1.0.yml", "html": "ic-1.0.html", "text": "ic-1.0.LICENSE"}, {"license_key": "ic-shared-1.0", "spdx_license_key": "LicenseRef-scancode-ic-shared-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "ic-shared-1.0.json", "yml": "ic-shared-1.0.yml", "html": "ic-shared-1.0.html", "text": "ic-shared-1.0.LICENSE"}, {"license_key": "icann-public", "spdx_license_key": "LicenseRef-scancode-icann-public", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "icann-public.json", "yml": "icann-public.yml", "html": "icann-public.html", "text": "icann-public.LICENSE"}, {"license_key": "ice-exception-2.0", "spdx_license_key": "LicenseRef-scancode-ice-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "ice-exception-2.0.json", "yml": "ice-exception-2.0.yml", "html": "ice-exception-2.0.html", "text": "ice-exception-2.0.LICENSE"}, {"license_key": "icot-free", "spdx_license_key": "LicenseRef-scancode-icot-free", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "icot-free.json", "yml": "icot-free.yml", "html": "icot-free.html", "text": "icot-free.LICENSE"}, {"license_key": "idt-notice", "spdx_license_key": "LicenseRef-scancode-idt-notice", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "idt-notice.json", "yml": "idt-notice.yml", "html": "idt-notice.html", "text": "idt-notice.LICENSE"}, {"license_key": "ietf", "spdx_license_key": "LicenseRef-scancode-ietf", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ietf.json", "yml": "ietf.yml", "html": "ietf.html", "text": "ietf.LICENSE"}, {"license_key": "ietf-trust", "spdx_license_key": "LicenseRef-scancode-ietf-trust", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ietf-trust.json", "yml": "ietf-trust.yml", "html": "ietf-trust.html", "text": "ietf-trust.LICENSE"}, {"license_key": "ijg", "spdx_license_key": "IJG", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ijg.json", "yml": "ijg.yml", "html": "ijg.html", "text": "ijg.LICENSE"}, {"license_key": "ilmid", "spdx_license_key": "LicenseRef-scancode-ilmid", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ilmid.json", "yml": "ilmid.yml", "html": "ilmid.html", "text": "ilmid.LICENSE"}, {"license_key": "imagemagick", "spdx_license_key": "ImageMagick", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "imagemagick.json", "yml": "imagemagick.yml", "html": "imagemagick.html", "text": "imagemagick.LICENSE"}, {"license_key": "imagen", "spdx_license_key": "LicenseRef-scancode-imagen", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "imagen.json", "yml": "imagen.yml", "html": "imagen.html", "text": "imagen.LICENSE"}, {"license_key": "imlib2", "spdx_license_key": "Imlib2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "imlib2.json", "yml": "imlib2.yml", "html": "imlib2.html", "text": "imlib2.LICENSE"}, {"license_key": "independent-module-linking-exception", "spdx_license_key": "LicenseRef-scancode-indie-module-linking-exception", "other_spdx_license_keys": ["LicenseRef-scancode-independent-module-linking-exception"], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "independent-module-linking-exception.json", "yml": "independent-module-linking-exception.yml", "html": "independent-module-linking-exception.html", "text": "independent-module-linking-exception.LICENSE"}, {"license_key": "indiana-extreme", "spdx_license_key": "LicenseRef-scancode-indiana-extreme", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "indiana-extreme.json", "yml": "indiana-extreme.yml", "html": "indiana-extreme.html", "text": "indiana-extreme.LICENSE"}, {"license_key": "indiana-extreme-1.2", "spdx_license_key": "xpp", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "indiana-extreme-1.2.json", "yml": "indiana-extreme-1.2.yml", "html": "indiana-extreme-1.2.html", "text": "indiana-extreme-1.2.LICENSE"}, {"license_key": "infineon-free", "spdx_license_key": "LicenseRef-scancode-infineon-free", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "infineon-free.json", "yml": "infineon-free.yml", "html": "infineon-free.html", "text": "infineon-free.LICENSE"}, {"license_key": "info-zip", "spdx_license_key": "Info-ZIP", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "info-zip.json", "yml": "info-zip.yml", "html": "info-zip.html", "text": "info-zip.LICENSE"}, {"license_key": "info-zip-1997-10", "spdx_license_key": "LicenseRef-scancode-info-zip-1997-10", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "info-zip-1997-10.json", "yml": "info-zip-1997-10.yml", "html": "info-zip-1997-10.html", "text": "info-zip-1997-10.LICENSE"}, {"license_key": "info-zip-2001-01", "spdx_license_key": "LicenseRef-scancode-info-zip-2001-01", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "info-zip-2001-01.json", "yml": "info-zip-2001-01.yml", "html": "info-zip-2001-01.html", "text": "info-zip-2001-01.LICENSE"}, {"license_key": "info-zip-2002-02", "spdx_license_key": "LicenseRef-scancode-info-zip-2002-02", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "info-zip-2002-02.json", "yml": "info-zip-2002-02.yml", "html": "info-zip-2002-02.html", "text": "info-zip-2002-02.LICENSE"}, {"license_key": "info-zip-2003-05", "spdx_license_key": "LicenseRef-scancode-info-zip-2003-05", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "info-zip-2003-05.json", "yml": "info-zip-2003-05.yml", "html": "info-zip-2003-05.html", "text": "info-zip-2003-05.LICENSE"}, {"license_key": "info-zip-2004-05", "spdx_license_key": "LicenseRef-scancode-info-zip-2004-05", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "info-zip-2004-05.json", "yml": "info-zip-2004-05.yml", "html": "info-zip-2004-05.html", "text": "info-zip-2004-05.LICENSE"}, {"license_key": "info-zip-2005-02", "spdx_license_key": "LicenseRef-scancode-info-zip-2005-02", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "info-zip-2005-02.json", "yml": "info-zip-2005-02.yml", "html": "info-zip-2005-02.html", "text": "info-zip-2005-02.LICENSE"}, {"license_key": "info-zip-2007-03", "spdx_license_key": "LicenseRef-scancode-info-zip-2007-03", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "info-zip-2007-03.json", "yml": "info-zip-2007-03.yml", "html": "info-zip-2007-03.html", "text": "info-zip-2007-03.LICENSE"}, {"license_key": "info-zip-2009-01", "spdx_license_key": "LicenseRef-scancode-info-zip-2009-01", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "info-zip-2009-01.json", "yml": "info-zip-2009-01.yml", "html": "info-zip-2009-01.html", "text": "info-zip-2009-01.LICENSE"}, {"license_key": "infonode-1.1", "spdx_license_key": "LicenseRef-scancode-infonode-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "infonode-1.1.json", "yml": "infonode-1.1.yml", "html": "infonode-1.1.html", "text": "infonode-1.1.LICENSE"}, {"license_key": "initial-developer-public", "spdx_license_key": "LicenseRef-scancode-initial-developer-public", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "initial-developer-public.json", "yml": "initial-developer-public.yml", "html": "initial-developer-public.html", "text": "initial-developer-public.LICENSE"}, {"license_key": "inner-net-2.0", "spdx_license_key": "LicenseRef-scancode-inner-net-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "inner-net-2.0.json", "yml": "inner-net-2.0.yml", "html": "inner-net-2.0.html", "text": "inner-net-2.0.LICENSE"}, {"license_key": "inno-setup", "spdx_license_key": "LicenseRef-scancode-inno-setup", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "inno-setup.json", "yml": "inno-setup.yml", "html": "inno-setup.html", "text": "inno-setup.LICENSE"}, {"license_key": "inria-linking-exception", "spdx_license_key": "LicenseRef-scancode-inria-linking-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "inria-linking-exception.json", "yml": "inria-linking-exception.yml", "html": "inria-linking-exception.html", "text": "inria-linking-exception.LICENSE"}, {"license_key": "installsite", "spdx_license_key": "LicenseRef-scancode-installsite", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "installsite.json", "yml": "installsite.yml", "html": "installsite.html", "text": "installsite.LICENSE"}, {"license_key": "intel", "spdx_license_key": "LicenseRef-scancode-intel", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "intel.json", "yml": "intel.yml", "html": "intel.html", "text": "intel.LICENSE"}, {"license_key": "intel-acpi", "spdx_license_key": "Intel-ACPI", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "intel-acpi.json", "yml": "intel-acpi.yml", "html": "intel-acpi.html", "text": "intel-acpi.LICENSE"}, {"license_key": "intel-bcl", "spdx_license_key": "LicenseRef-scancode-intel-bcl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "intel-bcl.json", "yml": "intel-bcl.yml", "html": "intel-bcl.html", "text": "intel-bcl.LICENSE"}, {"license_key": "intel-bsd", "spdx_license_key": "LicenseRef-scancode-intel-bsd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "intel-bsd.json", "yml": "intel-bsd.yml", "html": "intel-bsd.html", "text": "intel-bsd.LICENSE"}, {"license_key": "intel-bsd-2-clause", "spdx_license_key": "LicenseRef-scancode-intel-bsd-2-clause", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "intel-bsd-2-clause.json", "yml": "intel-bsd-2-clause.yml", "html": "intel-bsd-2-clause.html", "text": "intel-bsd-2-clause.LICENSE"}, {"license_key": "intel-bsd-export-control", "spdx_license_key": "Intel", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "intel-bsd-export-control.json", "yml": "intel-bsd-export-control.yml", "html": "intel-bsd-export-control.html", "text": "intel-bsd-export-control.LICENSE"}, {"license_key": "intel-code-samples", "spdx_license_key": "LicenseRef-scancode-intel-code-samples", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "intel-code-samples.json", "yml": "intel-code-samples.yml", "html": "intel-code-samples.html", "text": "intel-code-samples.LICENSE"}, {"license_key": "intel-confidential", "spdx_license_key": "LicenseRef-scancode-intel-confidential", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "intel-confidential.json", "yml": "intel-confidential.yml", "html": "intel-confidential.html", "text": "intel-confidential.LICENSE"}, {"license_key": "intel-firmware", "spdx_license_key": "LicenseRef-scancode-intel-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "intel-firmware.json", "yml": "intel-firmware.yml", "html": "intel-firmware.html", "text": "intel-firmware.LICENSE"}, {"license_key": "intel-master-eula-sw-dev-2016", "spdx_license_key": "LicenseRef-scancode-intel-master-eula-sw-dev-2016", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "intel-master-eula-sw-dev-2016.json", "yml": "intel-master-eula-sw-dev-2016.yml", "html": "intel-master-eula-sw-dev-2016.html", "text": "intel-master-eula-sw-dev-2016.LICENSE"}, {"license_key": "intel-material", "spdx_license_key": "LicenseRef-scancode-intel-material", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "intel-material.json", "yml": "intel-material.yml", "html": "intel-material.html", "text": "intel-material.LICENSE"}, {"license_key": "intel-mcu-2018", "spdx_license_key": "LicenseRef-scancode-intel-mcu-2018", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "intel-mcu-2018.json", "yml": "intel-mcu-2018.yml", "html": "intel-mcu-2018.html", "text": "intel-mcu-2018.LICENSE"}, {"license_key": "intel-microcode", "spdx_license_key": "LicenseRef-scancode-intel-microcode", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "intel-microcode.json", "yml": "intel-microcode.yml", "html": "intel-microcode.html", "text": "intel-microcode.LICENSE"}, {"license_key": "intel-osl-1989", "spdx_license_key": "LicenseRef-scancode-intel-osl-1989", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "intel-osl-1989.json", "yml": "intel-osl-1989.yml", "html": "intel-osl-1989.html", "text": "intel-osl-1989.LICENSE"}, {"license_key": "intel-osl-1993", "spdx_license_key": "LicenseRef-scancode-intel-osl-1993", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "intel-osl-1993.json", "yml": "intel-osl-1993.yml", "html": "intel-osl-1993.html", "text": "intel-osl-1993.LICENSE"}, {"license_key": "intel-royalty-free", "spdx_license_key": "LicenseRef-scancode-intel-royalty-free", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "intel-royalty-free.json", "yml": "intel-royalty-free.yml", "html": "intel-royalty-free.html", "text": "intel-royalty-free.LICENSE"}, {"license_key": "intel-sample-source-code-2015", "spdx_license_key": "LicenseRef-scancode-intel-sample-source-code-2015", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "intel-sample-source-code-2015.json", "yml": "intel-sample-source-code-2015.yml", "html": "intel-sample-source-code-2015.html", "text": "intel-sample-source-code-2015.LICENSE"}, {"license_key": "intel-scl", "spdx_license_key": "LicenseRef-scancode-intel-scl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "intel-scl.json", "yml": "intel-scl.yml", "html": "intel-scl.html", "text": "intel-scl.LICENSE"}, {"license_key": "interbase-1.0", "spdx_license_key": "Interbase-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "interbase-1.0.json", "yml": "interbase-1.0.yml", "html": "interbase-1.0.html", "text": "interbase-1.0.LICENSE"}, {"license_key": "iolib-exception-2.0", "spdx_license_key": "LicenseRef-scancode-iolib-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "iolib-exception-2.0.json", "yml": "iolib-exception-2.0.yml", "html": "iolib-exception-2.0.html", "text": "iolib-exception-2.0.LICENSE"}, {"license_key": "iozone", "spdx_license_key": "LicenseRef-scancode-iozone", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "iozone.json", "yml": "iozone.yml", "html": "iozone.html", "text": "iozone.LICENSE"}, {"license_key": "ipa-font", "spdx_license_key": "IPA", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "ipa-font.json", "yml": "ipa-font.yml", "html": "ipa-font.html", "text": "ipa-font.LICENSE"}, {"license_key": "iptc-2006", "spdx_license_key": "LicenseRef-scancode-iptc-2006", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "iptc-2006.json", "yml": "iptc-2006.yml", "html": "iptc-2006.html", "text": "iptc-2006.LICENSE"}, {"license_key": "irfanview-eula", "spdx_license_key": "LicenseRef-scancode-irfanview-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "irfanview-eula.json", "yml": "irfanview-eula.yml", "html": "irfanview-eula.html", "text": "irfanview-eula.LICENSE"}, {"license_key": "isc", "spdx_license_key": "ISC", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "isc.json", "yml": "isc.yml", "html": "isc.html", "text": "isc.LICENSE"}, {"license_key": "iso-14496-10", "spdx_license_key": "LicenseRef-scancode-iso-14496-10", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "iso-14496-10.json", "yml": "iso-14496-10.yml", "html": "iso-14496-10.html", "text": "iso-14496-10.LICENSE"}, {"license_key": "iso-8879", "spdx_license_key": "LicenseRef-scancode-iso-8879", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "iso-8879.json", "yml": "iso-8879.yml", "html": "iso-8879.html", "text": "iso-8879.LICENSE"}, {"license_key": "iso-recorder", "spdx_license_key": "LicenseRef-scancode-iso-recorder", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "iso-recorder.json", "yml": "iso-recorder.yml", "html": "iso-recorder.html", "text": "iso-recorder.LICENSE"}, {"license_key": "isotope-cla", "spdx_license_key": "LicenseRef-scancode-isotope-cla", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "isotope-cla.json", "yml": "isotope-cla.yml", "html": "isotope-cla.html", "text": "isotope-cla.LICENSE"}, {"license_key": "issl-2018", "spdx_license_key": "LicenseRef-scancode-issl-2018", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "issl-2018.json", "yml": "issl-2018.yml", "html": "issl-2018.html", "text": "issl-2018.LICENSE"}, {"license_key": "itc-eula", "spdx_license_key": "LicenseRef-scancode-itc-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "itc-eula.json", "yml": "itc-eula.yml", "html": "itc-eula.html", "text": "itc-eula.LICENSE"}, {"license_key": "itu", "spdx_license_key": "LicenseRef-scancode-itu", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "itu.json", "yml": "itu.yml", "html": "itu.html", "text": "itu.LICENSE"}, {"license_key": "itu-t", "spdx_license_key": "LicenseRef-scancode-itu-t", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "itu-t.json", "yml": "itu-t.yml", "html": "itu-t.html", "text": "itu-t.LICENSE"}, {"license_key": "itu-t-gpl", "spdx_license_key": "LicenseRef-scancode-itu-t-gpl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "itu-t-gpl.json", "yml": "itu-t-gpl.yml", "html": "itu-t-gpl.html", "text": "itu-t-gpl.LICENSE"}, {"license_key": "itunes", "spdx_license_key": "LicenseRef-scancode-itunes", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "itunes.json", "yml": "itunes.yml", "html": "itunes.html", "text": "itunes.LICENSE"}, {"license_key": "ja-sig", "spdx_license_key": "LicenseRef-scancode-ja-sig", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ja-sig.json", "yml": "ja-sig.yml", "html": "ja-sig.html", "text": "ja-sig.LICENSE"}, {"license_key": "jahia-1.3.1", "spdx_license_key": "LicenseRef-scancode-jahia-1.3.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "jahia-1.3.1.json", "yml": "jahia-1.3.1.yml", "html": "jahia-1.3.1.html", "text": "jahia-1.3.1.LICENSE"}, {"license_key": "jam", "spdx_license_key": "Jam", "other_spdx_license_keys": ["LicenseRef-scancode-jam"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "jam.json", "yml": "jam.yml", "html": "jam.html", "text": "jam.LICENSE"}, {"license_key": "jam-stapl", "spdx_license_key": "LicenseRef-scancode-jam-stapl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "jam-stapl.json", "yml": "jam-stapl.yml", "html": "jam-stapl.html", "text": "jam-stapl.LICENSE"}, {"license_key": "jamon", "spdx_license_key": "LicenseRef-scancode-jamon", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "jamon.json", "yml": "jamon.yml", "html": "jamon.html", "text": "jamon.LICENSE"}, {"license_key": "jason-mayes", "spdx_license_key": "LicenseRef-scancode-jason-mayes", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "jason-mayes.json", "yml": "jason-mayes.yml", "html": "jason-mayes.html", "text": "jason-mayes.LICENSE"}, {"license_key": "jasper-1.0", "spdx_license_key": "LicenseRef-scancode-jasper-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "jasper-1.0.json", "yml": "jasper-1.0.yml", "html": "jasper-1.0.html", "text": "jasper-1.0.LICENSE"}, {"license_key": "jasper-2.0", "spdx_license_key": "JasPer-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "jasper-2.0.json", "yml": "jasper-2.0.yml", "html": "jasper-2.0.html", "text": "jasper-2.0.LICENSE"}, {"license_key": "java-app-stub", "spdx_license_key": "LicenseRef-scancode-java-app-stub", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "java-app-stub.json", "yml": "java-app-stub.yml", "html": "java-app-stub.html", "text": "java-app-stub.LICENSE"}, {"license_key": "java-research-1.5", "spdx_license_key": "LicenseRef-scancode-java-research-1.5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "java-research-1.5.json", "yml": "java-research-1.5.yml", "html": "java-research-1.5.html", "text": "java-research-1.5.LICENSE"}, {"license_key": "java-research-1.6", "spdx_license_key": "LicenseRef-scancode-java-research-1.6", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "java-research-1.6.json", "yml": "java-research-1.6.yml", "html": "java-research-1.6.html", "text": "java-research-1.6.LICENSE"}, {"license_key": "javascript-exception-2.0", "spdx_license_key": "LicenseRef-scancode-javascript-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "javascript-exception-2.0.json", "yml": "javascript-exception-2.0.yml", "html": "javascript-exception-2.0.html", "text": "javascript-exception-2.0.LICENSE"}, {"license_key": "jboss-eula", "spdx_license_key": "LicenseRef-scancode-jboss-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "jboss-eula.json", "yml": "jboss-eula.yml", "html": "jboss-eula.html", "text": "jboss-eula.LICENSE"}, {"license_key": "jdbm-1.00", "spdx_license_key": "LicenseRef-scancode-jdbm-1.00", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "jdbm-1.00.json", "yml": "jdbm-1.00.yml", "html": "jdbm-1.00.html", "text": "jdbm-1.00.LICENSE"}, {"license_key": "jdom", "spdx_license_key": "LicenseRef-scancode-jdom", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "jdom.json", "yml": "jdom.yml", "html": "jdom.html", "text": "jdom.LICENSE"}, {"license_key": "jelurida-public-1.1", "spdx_license_key": "LicenseRef-scancode-jelurida-public-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "jelurida-public-1.1.json", "yml": "jelurida-public-1.1.yml", "html": "jelurida-public-1.1.html", "text": "jelurida-public-1.1.LICENSE"}, {"license_key": "jetbrains-purchase-terms", "spdx_license_key": "LicenseRef-scancode-jetbrains-purchase-terms", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "jetbrains-purchase-terms.json", "yml": "jetbrains-purchase-terms.yml", "html": "jetbrains-purchase-terms.html", "text": "jetbrains-purchase-terms.LICENSE"}, {"license_key": "jetbrains-toolbox-open-source-3", "spdx_license_key": "LicenseRef-scancode-jetbrains-toolbox-oss-3", "other_spdx_license_keys": ["LicenseRef-scancode-jetbrains-toolbox-open-source-3"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "jetbrains-toolbox-open-source-3.json", "yml": "jetbrains-toolbox-open-source-3.yml", "html": "jetbrains-toolbox-open-source-3.html", "text": "jetbrains-toolbox-open-source-3.LICENSE"}, {"license_key": "jetty", "spdx_license_key": "LicenseRef-scancode-jetty", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "jetty.json", "yml": "jetty.yml", "html": "jetty.html", "text": "jetty.LICENSE"}, {"license_key": "jetty-ccla-1.1", "spdx_license_key": "LicenseRef-scancode-jetty-ccla-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "jetty-ccla-1.1.json", "yml": "jetty-ccla-1.1.yml", "html": "jetty-ccla-1.1.html", "text": "jetty-ccla-1.1.LICENSE"}, {"license_key": "jgraph", "spdx_license_key": "LicenseRef-scancode-jgraph", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "jgraph.json", "yml": "jgraph.yml", "html": "jgraph.html", "text": "jgraph.LICENSE"}, {"license_key": "jgraph-general", "spdx_license_key": "LicenseRef-scancode-jgraph-general", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "jgraph-general.json", "yml": "jgraph-general.yml", "html": "jgraph-general.html", "text": "jgraph-general.LICENSE"}, {"license_key": "jide-sla", "spdx_license_key": "LicenseRef-scancode-jide-sla", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "jide-sla.json", "yml": "jide-sla.yml", "html": "jide-sla.html", "text": "jide-sla.LICENSE"}, {"license_key": "jj2000", "spdx_license_key": "LicenseRef-scancode-jj2000", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "jj2000.json", "yml": "jj2000.yml", "html": "jj2000.html", "text": "jj2000.LICENSE"}, {"license_key": "jmagnetic", "spdx_license_key": "LicenseRef-scancode-jmagnetic", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "jmagnetic.json", "yml": "jmagnetic.yml", "html": "jmagnetic.html", "text": "jmagnetic.LICENSE"}, {"license_key": "josl-1.0", "spdx_license_key": "LicenseRef-scancode-josl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "josl-1.0.json", "yml": "josl-1.0.yml", "html": "josl-1.0.html", "text": "josl-1.0.LICENSE"}, {"license_key": "jpnic-idnkit", "spdx_license_key": "JPNIC", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "jpnic-idnkit.json", "yml": "jpnic-idnkit.yml", "html": "jpnic-idnkit.html", "text": "jpnic-idnkit.LICENSE"}, {"license_key": "jpnic-mdnkit", "spdx_license_key": "LicenseRef-scancode-jpnic-mdnkit", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "jpnic-mdnkit.json", "yml": "jpnic-mdnkit.yml", "html": "jpnic-mdnkit.html", "text": "jpnic-mdnkit.LICENSE"}, {"license_key": "jprs-oscl-1.1", "spdx_license_key": "LicenseRef-scancode-jprs-oscl-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "jprs-oscl-1.1.json", "yml": "jprs-oscl-1.1.yml", "html": "jprs-oscl-1.1.html", "text": "jprs-oscl-1.1.LICENSE"}, {"license_key": "jpython-1.1", "spdx_license_key": "LicenseRef-scancode-jpython-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "jpython-1.1.json", "yml": "jpython-1.1.yml", "html": "jpython-1.1.html", "text": "jpython-1.1.LICENSE"}, {"license_key": "jquery-pd", "spdx_license_key": "LicenseRef-scancode-jquery-pd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "jquery-pd.json", "yml": "jquery-pd.yml", "html": "jquery-pd.html", "text": "jquery-pd.LICENSE"}, {"license_key": "jrunner", "spdx_license_key": "LicenseRef-scancode-jrunner", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "jrunner.json", "yml": "jrunner.yml", "html": "jrunner.html", "text": "jrunner.LICENSE"}, {"license_key": "jscheme", "spdx_license_key": "LicenseRef-scancode-jscheme", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "jscheme.json", "yml": "jscheme.yml", "html": "jscheme.html", "text": "jscheme.LICENSE"}, {"license_key": "jsfromhell", "spdx_license_key": "LicenseRef-scancode-jsfromhell", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "jsfromhell.json", "yml": "jsfromhell.yml", "html": "jsfromhell.html", "text": "jsfromhell.LICENSE"}, {"license_key": "json", "spdx_license_key": "JSON", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "json.json", "yml": "json.yml", "html": "json.html", "text": "json.LICENSE"}, {"license_key": "json-js-pd", "spdx_license_key": "LicenseRef-scancode-json-js-pd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "json-js-pd.json", "yml": "json-js-pd.yml", "html": "json-js-pd.html", "text": "json-js-pd.LICENSE"}, {"license_key": "json-pd", "spdx_license_key": "LicenseRef-scancode-json-pd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "json-pd.json", "yml": "json-pd.yml", "html": "json-pd.html", "text": "json-pd.LICENSE"}, {"license_key": "jsr-107-jcache-spec", "spdx_license_key": "LicenseRef-scancode-jsr-107-jcache-spec", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "jsr-107-jcache-spec.json", "yml": "jsr-107-jcache-spec.yml", "html": "jsr-107-jcache-spec.html", "text": "jsr-107-jcache-spec.LICENSE"}, {"license_key": "jsr-107-jcache-spec-2013", "spdx_license_key": "LicenseRef-scancode-jsr-107-jcache-spec-2013", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "jsr-107-jcache-spec-2013.json", "yml": "jsr-107-jcache-spec-2013.yml", "html": "jsr-107-jcache-spec-2013.html", "text": "jsr-107-jcache-spec-2013.LICENSE"}, {"license_key": "jython", "spdx_license_key": "LicenseRef-scancode-jython", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "jython.json", "yml": "jython.yml", "html": "jython.html", "text": "jython.LICENSE"}, {"license_key": "kalle-kaukonen", "spdx_license_key": "LicenseRef-scancode-kalle-kaukonen", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "kalle-kaukonen.json", "yml": "kalle-kaukonen.yml", "html": "kalle-kaukonen.html", "text": "kalle-kaukonen.LICENSE"}, {"license_key": "karl-peterson", "spdx_license_key": "LicenseRef-scancode-karl-peterson", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "karl-peterson.json", "yml": "karl-peterson.yml", "html": "karl-peterson.html", "text": "karl-peterson.LICENSE"}, {"license_key": "katharos-0.1.0", "spdx_license_key": "LicenseRef-scancode-katharos-0.1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "katharos-0.1.0.json", "yml": "katharos-0.1.0.yml", "html": "katharos-0.1.0.html", "text": "katharos-0.1.0.LICENSE"}, {"license_key": "kde-accepted-gpl", "spdx_license_key": "LicenseRef-scancode-kde-accepted-gpl", "other_spdx_license_keys": ["LicenseRef-KDE-Accepted-GPL"], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "kde-accepted-gpl.json", "yml": "kde-accepted-gpl.yml", "html": "kde-accepted-gpl.html", "text": "kde-accepted-gpl.LICENSE"}, {"license_key": "kde-accepted-lgpl", "spdx_license_key": "LicenseRef-scancode-kde-accepted-lgpl", "other_spdx_license_keys": ["LicenseRef-KDE-Accepted-LGPL"], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "kde-accepted-lgpl.json", "yml": "kde-accepted-lgpl.yml", "html": "kde-accepted-lgpl.html", "text": "kde-accepted-lgpl.LICENSE"}, {"license_key": "keith-rule", "spdx_license_key": "LicenseRef-scancode-keith-rule", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "keith-rule.json", "yml": "keith-rule.yml", "html": "keith-rule.html", "text": "keith-rule.LICENSE"}, {"license_key": "kerberos", "spdx_license_key": "LicenseRef-scancode-kerberos", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "kerberos.json", "yml": "kerberos.yml", "html": "kerberos.html", "text": "kerberos.LICENSE"}, {"license_key": "kevan-stannard", "spdx_license_key": "LicenseRef-scancode-kevan-stannard", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "kevan-stannard.json", "yml": "kevan-stannard.yml", "html": "kevan-stannard.html", "text": "kevan-stannard.LICENSE"}, {"license_key": "kevlin-henney", "spdx_license_key": "LicenseRef-scancode-kevlin-henney", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "kevlin-henney.json", "yml": "kevlin-henney.yml", "html": "kevlin-henney.html", "text": "kevlin-henney.LICENSE"}, {"license_key": "kfqf-accepted-gpl", "spdx_license_key": "LicenseRef-scancode-kfqf-accepted-gpl", "other_spdx_license_keys": ["LicenseRef-KFQF-Accepted-GPL"], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "kfqf-accepted-gpl.json", "yml": "kfqf-accepted-gpl.yml", "html": "kfqf-accepted-gpl.html", "text": "kfqf-accepted-gpl.LICENSE"}, {"license_key": "khronos", "spdx_license_key": "LicenseRef-scancode-khronos", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "khronos.json", "yml": "khronos.yml", "html": "khronos.html", "text": "khronos.LICENSE"}, {"license_key": "kicad-libraries-exception", "spdx_license_key": "KiCad-libraries-exception", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "kicad-libraries-exception.json", "yml": "kicad-libraries-exception.yml", "html": "kicad-libraries-exception.html", "text": "kicad-libraries-exception.LICENSE"}, {"license_key": "kreative-relay-fonts-free-use-1.2f", "spdx_license_key": "LicenseRef-scancode-kreative-relay-fonts-free-1.2f", "other_spdx_license_keys": ["LicenseRef-scancode-kreative-relay-fonts-free-use-1.2f"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "kreative-relay-fonts-free-use-1.2f.json", "yml": "kreative-relay-fonts-free-use-1.2f.yml", "html": "kreative-relay-fonts-free-use-1.2f.html", "text": "kreative-relay-fonts-free-use-1.2f.LICENSE"}, {"license_key": "kumar-robotics", "spdx_license_key": "LicenseRef-scancode-kumar-robotics", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "kumar-robotics.json", "yml": "kumar-robotics.yml", "html": "kumar-robotics.html", "text": "kumar-robotics.LICENSE"}, {"license_key": "lal-1.2", "spdx_license_key": "LAL-1.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "lal-1.2.json", "yml": "lal-1.2.yml", "html": "lal-1.2.html", "text": "lal-1.2.LICENSE"}, {"license_key": "lal-1.3", "spdx_license_key": "LAL-1.3", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "lal-1.3.json", "yml": "lal-1.3.yml", "html": "lal-1.3.html", "text": "lal-1.3.LICENSE"}, {"license_key": "larabie", "spdx_license_key": "LicenseRef-scancode-larabie", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "larabie.json", "yml": "larabie.yml", "html": "larabie.html", "text": "larabie.LICENSE"}, {"license_key": "latex2e", "spdx_license_key": "Latex2e", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "latex2e.json", "yml": "latex2e.yml", "html": "latex2e.html", "text": "latex2e.LICENSE"}, {"license_key": "lavantech", "spdx_license_key": "LicenseRef-scancode-lavantech", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "lavantech.json", "yml": "lavantech.yml", "html": "lavantech.html", "text": "lavantech.LICENSE"}, {"license_key": "lbnl-bsd", "spdx_license_key": "BSD-3-Clause-LBNL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "lbnl-bsd.json", "yml": "lbnl-bsd.yml", "html": "lbnl-bsd.html", "text": "lbnl-bsd.LICENSE"}, {"license_key": "lcs-telegraphics", "spdx_license_key": "LicenseRef-scancode-lcs-telegraphics", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "lcs-telegraphics.json", "yml": "lcs-telegraphics.yml", "html": "lcs-telegraphics.html", "text": "lcs-telegraphics.LICENSE"}, {"license_key": "ldap-sdk-free-use", "spdx_license_key": "LicenseRef-scancode-ldap-sdk-free-use", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ldap-sdk-free-use.json", "yml": "ldap-sdk-free-use.yml", "html": "ldap-sdk-free-use.html", "text": "ldap-sdk-free-use.LICENSE"}, {"license_key": "ldpc-1994", "spdx_license_key": "LicenseRef-scancode-ldpc-1994", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "ldpc-1994.json", "yml": "ldpc-1994.yml", "html": "ldpc-1994.html", "text": "ldpc-1994.LICENSE"}, {"license_key": "ldpc-1997", "spdx_license_key": "LicenseRef-scancode-ldpc-1997", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "ldpc-1997.json", "yml": "ldpc-1997.yml", "html": "ldpc-1997.html", "text": "ldpc-1997.LICENSE"}, {"license_key": "ldpc-1999", "spdx_license_key": "LicenseRef-scancode-ldpc-1999", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "ldpc-1999.json", "yml": "ldpc-1999.yml", "html": "ldpc-1999.html", "text": "ldpc-1999.LICENSE"}, {"license_key": "ldpgpl-1", "spdx_license_key": "LicenseRef-scancode-ldpgpl-1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "ldpgpl-1.json", "yml": "ldpgpl-1.yml", "html": "ldpgpl-1.html", "text": "ldpgpl-1.LICENSE"}, {"license_key": "ldpgpl-1a", "spdx_license_key": "LicenseRef-scancode-ldpgpl-1a", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "ldpgpl-1a.json", "yml": "ldpgpl-1a.yml", "html": "ldpgpl-1a.html", "text": "ldpgpl-1a.LICENSE"}, {"license_key": "ldpl-2.0", "spdx_license_key": "LicenseRef-scancode-ldpl-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "ldpl-2.0.json", "yml": "ldpl-2.0.yml", "html": "ldpl-2.0.html", "text": "ldpl-2.0.LICENSE"}, {"license_key": "ldpm-1998", "spdx_license_key": "LicenseRef-scancode-ldpm-1998", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "ldpm-1998.json", "yml": "ldpm-1998.yml", "html": "ldpm-1998.html", "text": "ldpm-1998.LICENSE"}, {"license_key": "leap-motion-sdk-2019", "spdx_license_key": "LicenseRef-scancode-leap-motion-sdk-2019", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "leap-motion-sdk-2019.json", "yml": "leap-motion-sdk-2019.yml", "html": "leap-motion-sdk-2019.html", "text": "leap-motion-sdk-2019.LICENSE"}, {"license_key": "leptonica", "spdx_license_key": "Leptonica", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "leptonica.json", "yml": "leptonica.yml", "html": "leptonica.html", "text": "leptonica.LICENSE"}, {"license_key": "lgpl-2.0", "spdx_license_key": "LGPL-2.0-only", "other_spdx_license_keys": ["LGPL-2.0", "LicenseRef-LGPL-2", "LicenseRef-LGPL-2.0"], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "lgpl-2.0.json", "yml": "lgpl-2.0.yml", "html": "lgpl-2.0.html", "text": "lgpl-2.0.LICENSE"}, {"license_key": "lgpl-2.0-fltk", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "lgpl-2.0-fltk.json", "yml": "lgpl-2.0-fltk.yml", "html": "lgpl-2.0-fltk.html", "text": "lgpl-2.0-fltk.LICENSE"}, {"license_key": "lgpl-2.0-plus", "spdx_license_key": "LGPL-2.0-or-later", "other_spdx_license_keys": ["LGPL-2.0+", "LicenseRef-LGPL"], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "lgpl-2.0-plus.json", "yml": "lgpl-2.0-plus.yml", "html": "lgpl-2.0-plus.html", "text": "lgpl-2.0-plus.LICENSE"}, {"license_key": "lgpl-2.0-plus-gcc", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "lgpl-2.0-plus-gcc.json", "yml": "lgpl-2.0-plus-gcc.yml", "html": "lgpl-2.0-plus-gcc.html", "text": "lgpl-2.0-plus-gcc.LICENSE"}, {"license_key": "lgpl-2.1", "spdx_license_key": "LGPL-2.1-only", "other_spdx_license_keys": ["LGPL-2.1", "LicenseRef-LGPL-2.1"], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "lgpl-2.1.json", "yml": "lgpl-2.1.yml", "html": "lgpl-2.1.html", "text": "lgpl-2.1.LICENSE"}, {"license_key": "lgpl-2.1-digia-qt", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "lgpl-2.1-digia-qt.json", "yml": "lgpl-2.1-digia-qt.yml", "html": "lgpl-2.1-digia-qt.html", "text": "lgpl-2.1-digia-qt.LICENSE"}, {"license_key": "lgpl-2.1-nokia-qt", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "lgpl-2.1-nokia-qt.json", "yml": "lgpl-2.1-nokia-qt.yml", "html": "lgpl-2.1-nokia-qt.html", "text": "lgpl-2.1-nokia-qt.LICENSE"}, {"license_key": "lgpl-2.1-nokia-qt-1.0", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "lgpl-2.1-nokia-qt-1.0.json", "yml": "lgpl-2.1-nokia-qt-1.0.yml", "html": "lgpl-2.1-nokia-qt-1.0.html", "text": "lgpl-2.1-nokia-qt-1.0.LICENSE"}, {"license_key": "lgpl-2.1-nokia-qt-1.1", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "lgpl-2.1-nokia-qt-1.1.json", "yml": "lgpl-2.1-nokia-qt-1.1.yml", "html": "lgpl-2.1-nokia-qt-1.1.html", "text": "lgpl-2.1-nokia-qt-1.1.LICENSE"}, {"license_key": "lgpl-2.1-plus", "spdx_license_key": "LGPL-2.1-or-later", "other_spdx_license_keys": ["LGPL-2.1+"], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "lgpl-2.1-plus.json", "yml": "lgpl-2.1-plus.yml", "html": "lgpl-2.1-plus.html", "text": "lgpl-2.1-plus.LICENSE"}, {"license_key": "lgpl-2.1-plus-linking", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "lgpl-2.1-plus-linking.json", "yml": "lgpl-2.1-plus-linking.yml", "html": "lgpl-2.1-plus-linking.html", "text": "lgpl-2.1-plus-linking.LICENSE"}, {"license_key": "lgpl-2.1-plus-unlimited-linking", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "lgpl-2.1-plus-unlimited-linking.json", "yml": "lgpl-2.1-plus-unlimited-linking.yml", "html": "lgpl-2.1-plus-unlimited-linking.html", "text": "lgpl-2.1-plus-unlimited-linking.LICENSE"}, {"license_key": "lgpl-2.1-qt-company", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "lgpl-2.1-qt-company.json", "yml": "lgpl-2.1-qt-company.yml", "html": "lgpl-2.1-qt-company.html", "text": "lgpl-2.1-qt-company.LICENSE"}, {"license_key": "lgpl-2.1-qt-company-2017", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "lgpl-2.1-qt-company-2017.json", "yml": "lgpl-2.1-qt-company-2017.yml", "html": "lgpl-2.1-qt-company-2017.html", "text": "lgpl-2.1-qt-company-2017.LICENSE"}, {"license_key": "lgpl-2.1-rxtx", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "lgpl-2.1-rxtx.json", "yml": "lgpl-2.1-rxtx.yml", "html": "lgpl-2.1-rxtx.html", "text": "lgpl-2.1-rxtx.LICENSE"}, {"license_key": "lgpl-2.1-spell-checker", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "lgpl-2.1-spell-checker.json", "yml": "lgpl-2.1-spell-checker.yml", "html": "lgpl-2.1-spell-checker.html", "text": "lgpl-2.1-spell-checker.LICENSE"}, {"license_key": "lgpl-3-plus-linking", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "lgpl-3-plus-linking.json", "yml": "lgpl-3-plus-linking.yml", "html": "lgpl-3-plus-linking.html", "text": "lgpl-3-plus-linking.LICENSE"}, {"license_key": "lgpl-3.0", "spdx_license_key": "LGPL-3.0-only", "other_spdx_license_keys": ["LGPL-3.0"], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "lgpl-3.0.json", "yml": "lgpl-3.0.yml", "html": "lgpl-3.0.html", "text": "lgpl-3.0.LICENSE"}, {"license_key": "lgpl-3.0-cygwin", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "lgpl-3.0-cygwin.json", "yml": "lgpl-3.0-cygwin.yml", "html": "lgpl-3.0-cygwin.html", "text": "lgpl-3.0-cygwin.LICENSE"}, {"license_key": "lgpl-3.0-linking-exception", "spdx_license_key": "LGPL-3.0-linking-exception", "other_spdx_license_keys": ["LicenseRef-scancode-lgpl-3-plus-linking", "LicenseRef-scancode-linking-exception-lgpl-3.0"], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "lgpl-3.0-linking-exception.json", "yml": "lgpl-3.0-linking-exception.yml", "html": "lgpl-3.0-linking-exception.html", "text": "lgpl-3.0-linking-exception.LICENSE"}, {"license_key": "lgpl-3.0-plus", "spdx_license_key": "LGPL-3.0-or-later", "other_spdx_license_keys": ["LGPL-3.0+"], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "lgpl-3.0-plus.json", "yml": "lgpl-3.0-plus.yml", "html": "lgpl-3.0-plus.html", "text": "lgpl-3.0-plus.LICENSE"}, {"license_key": "lgpl-3.0-plus-openssl", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "lgpl-3.0-plus-openssl.json", "yml": "lgpl-3.0-plus-openssl.yml", "html": "lgpl-3.0-plus-openssl.html", "text": "lgpl-3.0-plus-openssl.LICENSE"}, {"license_key": "lgpl-3.0-zeromq", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "lgpl-3.0-zeromq.json", "yml": "lgpl-3.0-zeromq.yml", "html": "lgpl-3.0-zeromq.html", "text": "lgpl-3.0-zeromq.LICENSE"}, {"license_key": "lgpllr", "spdx_license_key": "LGPLLR", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "lgpllr.json", "yml": "lgpllr.yml", "html": "lgpllr.html", "text": "lgpllr.LICENSE"}, {"license_key": "lha", "spdx_license_key": "LicenseRef-scancode-lha", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "lha.json", "yml": "lha.yml", "html": "lha.html", "text": "lha.LICENSE"}, {"license_key": "libcap", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "libcap.json", "yml": "libcap.yml", "html": "libcap.html", "text": "libcap.LICENSE"}, {"license_key": "liberation-font-exception", "spdx_license_key": "LicenseRef-scancode-liberation-font-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "liberation-font-exception.json", "yml": "liberation-font-exception.yml", "html": "liberation-font-exception.html", "text": "liberation-font-exception.LICENSE"}, {"license_key": "libgd-2018", "spdx_license_key": "GD", "other_spdx_license_keys": ["LicenseRef-scancode-libgd-2018"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "libgd-2018.json", "yml": "libgd-2018.yml", "html": "libgd-2018.html", "text": "libgd-2018.LICENSE"}, {"license_key": "libgeotiff", "spdx_license_key": "LicenseRef-scancode-libgeotiff", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "libgeotiff.json", "yml": "libgeotiff.yml", "html": "libgeotiff.html", "text": "libgeotiff.LICENSE"}, {"license_key": "libmib", "spdx_license_key": "LicenseRef-scancode-libmib", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "libmib.json", "yml": "libmib.yml", "html": "libmib.html", "text": "libmib.LICENSE"}, {"license_key": "libmng-2007", "spdx_license_key": "LicenseRef-scancode-libmng-2007", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "libmng-2007.json", "yml": "libmng-2007.yml", "html": "libmng-2007.html", "text": "libmng-2007.LICENSE"}, {"license_key": "libpbm", "spdx_license_key": "LicenseRef-scancode-libpbm", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "libpbm.json", "yml": "libpbm.yml", "html": "libpbm.html", "text": "libpbm.LICENSE"}, {"license_key": "libpng", "spdx_license_key": "Libpng", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "libpng.json", "yml": "libpng.yml", "html": "libpng.html", "text": "libpng.LICENSE"}, {"license_key": "libpng-v2", "spdx_license_key": "libpng-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "libpng-v2.json", "yml": "libpng-v2.yml", "html": "libpng-v2.html", "text": "libpng-v2.LICENSE"}, {"license_key": "librato-exception", "spdx_license_key": "LicenseRef-scancode-librato-exception", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "librato-exception.json", "yml": "librato-exception.yml", "html": "librato-exception.html", "text": "librato-exception.LICENSE"}, {"license_key": "libselinux-pd", "spdx_license_key": "LicenseRef-scancode-libselinux-pd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "libselinux-pd.json", "yml": "libselinux-pd.yml", "html": "libselinux-pd.html", "text": "libselinux-pd.LICENSE"}, {"license_key": "libsrv-1.0.2", "spdx_license_key": "LicenseRef-scancode-libsrv-1.0.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "libsrv-1.0.2.json", "yml": "libsrv-1.0.2.yml", "html": "libsrv-1.0.2.html", "text": "libsrv-1.0.2.LICENSE"}, {"license_key": "libtool-exception", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "libtool-exception.json", "yml": "libtool-exception.yml", "html": "libtool-exception.html", "text": "libtool-exception.LICENSE"}, {"license_key": "libtool-exception-2.0", "spdx_license_key": "Libtool-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "libtool-exception-2.0.json", "yml": "libtool-exception-2.0.yml", "html": "libtool-exception-2.0.html", "text": "libtool-exception-2.0.LICENSE"}, {"license_key": "libwebsockets-exception", "spdx_license_key": "LicenseRef-scancode-libwebsockets-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "libwebsockets-exception.json", "yml": "libwebsockets-exception.yml", "html": "libwebsockets-exception.html", "text": "libwebsockets-exception.LICENSE"}, {"license_key": "libzip", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "libzip.json", "yml": "libzip.yml", "html": "libzip.html", "text": "libzip.LICENSE"}, {"license_key": "license-file-reference", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Unstated License", "json": "license-file-reference.json", "yml": "license-file-reference.yml", "html": "license-file-reference.html", "text": "license-file-reference.LICENSE"}, {"license_key": "lil-1", "spdx_license_key": "LicenseRef-scancode-lil-1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "lil-1.json", "yml": "lil-1.yml", "html": "lil-1.html", "text": "lil-1.LICENSE"}, {"license_key": "liliq-p-1.1", "spdx_license_key": "LiLiQ-P-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "liliq-p-1.1.json", "yml": "liliq-p-1.1.yml", "html": "liliq-p-1.1.html", "text": "liliq-p-1.1.LICENSE"}, {"license_key": "liliq-r-1.1", "spdx_license_key": "LiLiQ-R-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "liliq-r-1.1.json", "yml": "liliq-r-1.1.yml", "html": "liliq-r-1.1.html", "text": "liliq-r-1.1.LICENSE"}, {"license_key": "liliq-rplus-1.1", "spdx_license_key": "LiLiQ-Rplus-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "liliq-rplus-1.1.json", "yml": "liliq-rplus-1.1.yml", "html": "liliq-rplus-1.1.html", "text": "liliq-rplus-1.1.LICENSE"}, {"license_key": "lilo", "spdx_license_key": "LicenseRef-scancode-lilo", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "lilo.json", "yml": "lilo.yml", "html": "lilo.html", "text": "lilo.LICENSE"}, {"license_key": "linking-exception-2.0-plus", "spdx_license_key": "LicenseRef-scancode-linking-exception-2.0-plus", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "linking-exception-2.0-plus.json", "yml": "linking-exception-2.0-plus.yml", "html": "linking-exception-2.0-plus.html", "text": "linking-exception-2.0-plus.LICENSE"}, {"license_key": "linking-exception-2.1-plus", "spdx_license_key": "LicenseRef-scancode-linking-exception-2.1-plus", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "linking-exception-2.1-plus.json", "yml": "linking-exception-2.1-plus.yml", "html": "linking-exception-2.1-plus.html", "text": "linking-exception-2.1-plus.LICENSE"}, {"license_key": "linking-exception-agpl-3.0", "spdx_license_key": "LicenseRef-scancode-linking-exception-agpl-3.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "linking-exception-agpl-3.0.json", "yml": "linking-exception-agpl-3.0.yml", "html": "linking-exception-agpl-3.0.html", "text": "linking-exception-agpl-3.0.LICENSE"}, {"license_key": "linking-exception-lgpl-2.0-plus", "spdx_license_key": "LicenseRef-scancode-linking-exception-lgpl-2.0plus", "other_spdx_license_keys": ["LicenseRef-scancode-linking-exception-lgpl-2.0-plus"], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "linking-exception-lgpl-2.0-plus.json", "yml": "linking-exception-lgpl-2.0-plus.yml", "html": "linking-exception-lgpl-2.0-plus.html", "text": "linking-exception-lgpl-2.0-plus.LICENSE"}, {"license_key": "linking-exception-lgpl-3.0", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "linking-exception-lgpl-3.0.json", "yml": "linking-exception-lgpl-3.0.yml", "html": "linking-exception-lgpl-3.0.html", "text": "linking-exception-lgpl-3.0.LICENSE"}, {"license_key": "linotype-eula", "spdx_license_key": "LicenseRef-scancode-linotype-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "linotype-eula.json", "yml": "linotype-eula.yml", "html": "linotype-eula.html", "text": "linotype-eula.LICENSE"}, {"license_key": "linum", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "linum.json", "yml": "linum.yml", "html": "linum.html", "text": "linum.LICENSE"}, {"license_key": "linux-device-drivers", "spdx_license_key": "LicenseRef-scancode-linux-device-drivers", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "linux-device-drivers.json", "yml": "linux-device-drivers.yml", "html": "linux-device-drivers.html", "text": "linux-device-drivers.LICENSE"}, {"license_key": "linux-openib", "spdx_license_key": "Linux-OpenIB", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "linux-openib.json", "yml": "linux-openib.yml", "html": "linux-openib.html", "text": "linux-openib.LICENSE"}, {"license_key": "linux-syscall-exception-gpl", "spdx_license_key": "Linux-syscall-note", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "linux-syscall-exception-gpl.json", "yml": "linux-syscall-exception-gpl.yml", "html": "linux-syscall-exception-gpl.html", "text": "linux-syscall-exception-gpl.LICENSE"}, {"license_key": "linuxbios", "spdx_license_key": "LicenseRef-scancode-linuxbios", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "linuxbios.json", "yml": "linuxbios.yml", "html": "linuxbios.html", "text": "linuxbios.LICENSE"}, {"license_key": "linuxhowtos", "spdx_license_key": "LicenseRef-scancode-linuxhowtos", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "linuxhowtos.json", "yml": "linuxhowtos.yml", "html": "linuxhowtos.html", "text": "linuxhowtos.LICENSE"}, {"license_key": "llgpl", "spdx_license_key": "LicenseRef-scancode-llgpl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "llgpl.json", "yml": "llgpl.yml", "html": "llgpl.html", "text": "llgpl.LICENSE"}, {"license_key": "llnl", "spdx_license_key": "LicenseRef-scancode-llnl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "llnl.json", "yml": "llnl.yml", "html": "llnl.html", "text": "llnl.LICENSE"}, {"license_key": "llvm-exception", "spdx_license_key": "LLVM-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Permissive", "json": "llvm-exception.json", "yml": "llvm-exception.yml", "html": "llvm-exception.html", "text": "llvm-exception.LICENSE"}, {"license_key": "lmbench-exception-2.0", "spdx_license_key": "LicenseRef-scancode-lmbench-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "lmbench-exception-2.0.json", "yml": "lmbench-exception-2.0.yml", "html": "lmbench-exception-2.0.html", "text": "lmbench-exception-2.0.LICENSE"}, {"license_key": "logica-1.0", "spdx_license_key": "LicenseRef-scancode-logica-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "logica-1.0.json", "yml": "logica-1.0.yml", "html": "logica-1.0.html", "text": "logica-1.0.LICENSE"}, {"license_key": "lontium-linux-firmware", "spdx_license_key": "LicenseRef-scancode-lontium-linux-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "lontium-linux-firmware.json", "yml": "lontium-linux-firmware.yml", "html": "lontium-linux-firmware.html", "text": "lontium-linux-firmware.LICENSE"}, {"license_key": "losla", "spdx_license_key": "LicenseRef-scancode-losla", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "losla.json", "yml": "losla.yml", "html": "losla.html", "text": "losla.LICENSE"}, {"license_key": "lppl-1.0", "spdx_license_key": "LPPL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "lppl-1.0.json", "yml": "lppl-1.0.yml", "html": "lppl-1.0.html", "text": "lppl-1.0.LICENSE"}, {"license_key": "lppl-1.1", "spdx_license_key": "LPPL-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "lppl-1.1.json", "yml": "lppl-1.1.yml", "html": "lppl-1.1.html", "text": "lppl-1.1.LICENSE"}, {"license_key": "lppl-1.2", "spdx_license_key": "LPPL-1.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "lppl-1.2.json", "yml": "lppl-1.2.yml", "html": "lppl-1.2.html", "text": "lppl-1.2.LICENSE"}, {"license_key": "lppl-1.3a", "spdx_license_key": "LPPL-1.3a", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "lppl-1.3a.json", "yml": "lppl-1.3a.yml", "html": "lppl-1.3a.html", "text": "lppl-1.3a.LICENSE"}, {"license_key": "lppl-1.3c", "spdx_license_key": "LPPL-1.3c", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "lppl-1.3c.json", "yml": "lppl-1.3c.yml", "html": "lppl-1.3c.html", "text": "lppl-1.3c.LICENSE"}, {"license_key": "lsi-proprietary-eula", "spdx_license_key": "LicenseRef-scancode-lsi-proprietary-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "lsi-proprietary-eula.json", "yml": "lsi-proprietary-eula.yml", "html": "lsi-proprietary-eula.html", "text": "lsi-proprietary-eula.LICENSE"}, {"license_key": "lucent-pl-1.0", "spdx_license_key": "LPL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "lucent-pl-1.0.json", "yml": "lucent-pl-1.0.yml", "html": "lucent-pl-1.0.html", "text": "lucent-pl-1.0.LICENSE"}, {"license_key": "lucent-pl-1.02", "spdx_license_key": "LPL-1.02", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "lucent-pl-1.02.json", "yml": "lucent-pl-1.02.yml", "html": "lucent-pl-1.02.html", "text": "lucent-pl-1.02.LICENSE"}, {"license_key": "lucre", "spdx_license_key": "LicenseRef-scancode-lucre", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "lucre.json", "yml": "lucre.yml", "html": "lucre.html", "text": "lucre.LICENSE"}, {"license_key": "lumisoft-mail-server", "spdx_license_key": "LicenseRef-scancode-lumisoft-mail-server", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "lumisoft-mail-server.json", "yml": "lumisoft-mail-server.yml", "html": "lumisoft-mail-server.html", "text": "lumisoft-mail-server.LICENSE"}, {"license_key": "luxi", "spdx_license_key": "LicenseRef-scancode-luxi", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "luxi.json", "yml": "luxi.yml", "html": "luxi.html", "text": "luxi.LICENSE"}, {"license_key": "lyubinskiy-dropdown", "spdx_license_key": "LicenseRef-scancode-lyubinskiy-dropdown", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "lyubinskiy-dropdown.json", "yml": "lyubinskiy-dropdown.yml", "html": "lyubinskiy-dropdown.html", "text": "lyubinskiy-dropdown.LICENSE"}, {"license_key": "lyubinskiy-popup-window", "spdx_license_key": "LicenseRef-scancode-lyubinskiy-popup-window", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "lyubinskiy-popup-window.json", "yml": "lyubinskiy-popup-window.yml", "html": "lyubinskiy-popup-window.html", "text": "lyubinskiy-popup-window.LICENSE"}, {"license_key": "lzma-cpl-exception", "spdx_license_key": "LZMA-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "lzma-cpl-exception.json", "yml": "lzma-cpl-exception.yml", "html": "lzma-cpl-exception.html", "text": "lzma-cpl-exception.LICENSE"}, {"license_key": "lzma-sdk-2006", "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2006", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "lzma-sdk-2006.json", "yml": "lzma-sdk-2006.yml", "html": "lzma-sdk-2006.html", "text": "lzma-sdk-2006.LICENSE"}, {"license_key": "lzma-sdk-2006-exception", "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2006-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "lzma-sdk-2006-exception.json", "yml": "lzma-sdk-2006-exception.yml", "html": "lzma-sdk-2006-exception.html", "text": "lzma-sdk-2006-exception.LICENSE"}, {"license_key": "lzma-sdk-2008", "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2008", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "lzma-sdk-2008.json", "yml": "lzma-sdk-2008.yml", "html": "lzma-sdk-2008.html", "text": "lzma-sdk-2008.LICENSE"}, {"license_key": "lzma-sdk-original", "spdx_license_key": "LicenseRef-scancode-lzma-sdk-original", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "lzma-sdk-original.json", "yml": "lzma-sdk-original.yml", "html": "lzma-sdk-original.html", "text": "lzma-sdk-original.LICENSE"}, {"license_key": "lzma-sdk-pd", "spdx_license_key": "LicenseRef-scancode-lzma-sdk-pd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "lzma-sdk-pd.json", "yml": "lzma-sdk-pd.yml", "html": "lzma-sdk-pd.html", "text": "lzma-sdk-pd.LICENSE"}, {"license_key": "m-plus", "spdx_license_key": "mplus", "other_spdx_license_keys": ["LicenseRef-scancode-m-plus"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "m-plus.json", "yml": "m-plus.yml", "html": "m-plus.html", "text": "m-plus.LICENSE"}, {"license_key": "madwifi-dual", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "madwifi-dual.json", "yml": "madwifi-dual.yml", "html": "madwifi-dual.html", "text": "madwifi-dual.LICENSE"}, {"license_key": "magpie-exception-1.0", "spdx_license_key": "LicenseRef-scancode-magpie-exception-1.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "magpie-exception-1.0.json", "yml": "magpie-exception-1.0.yml", "html": "magpie-exception-1.0.html", "text": "magpie-exception-1.0.LICENSE"}, {"license_key": "make-human-exception", "spdx_license_key": "LicenseRef-scancode-make-human-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Permissive", "json": "make-human-exception.json", "yml": "make-human-exception.yml", "html": "make-human-exception.html", "text": "make-human-exception.LICENSE"}, {"license_key": "makeindex", "spdx_license_key": "MakeIndex", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "makeindex.json", "yml": "makeindex.yml", "html": "makeindex.html", "text": "makeindex.LICENSE"}, {"license_key": "mame", "spdx_license_key": "LicenseRef-scancode-mame", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "mame.json", "yml": "mame.yml", "html": "mame.html", "text": "mame.LICENSE"}, {"license_key": "manfred-klein-fonts-tos", "spdx_license_key": "LicenseRef-scancode-manfred-klein-fonts-tos", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "manfred-klein-fonts-tos.json", "yml": "manfred-klein-fonts-tos.yml", "html": "manfred-klein-fonts-tos.html", "text": "manfred-klein-fonts-tos.LICENSE"}, {"license_key": "mapbox-tos-2021", "spdx_license_key": "LicenseRef-scancode-mapbox-tos-2021", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "mapbox-tos-2021.json", "yml": "mapbox-tos-2021.yml", "html": "mapbox-tos-2021.html", "text": "mapbox-tos-2021.LICENSE"}, {"license_key": "markus-kuhn-license", "spdx_license_key": "LicenseRef-scancode-markus-kuhn-license", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "markus-kuhn-license.json", "yml": "markus-kuhn-license.yml", "html": "markus-kuhn-license.html", "text": "markus-kuhn-license.LICENSE"}, {"license_key": "martin-birgmeier", "spdx_license_key": "LicenseRef-scancode-martin-birgmeier", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "martin-birgmeier.json", "yml": "martin-birgmeier.yml", "html": "martin-birgmeier.html", "text": "martin-birgmeier.LICENSE"}, {"license_key": "marvell-firmware", "spdx_license_key": "LicenseRef-scancode-marvell-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "marvell-firmware.json", "yml": "marvell-firmware.yml", "html": "marvell-firmware.html", "text": "marvell-firmware.LICENSE"}, {"license_key": "marvell-firmware-2019", "spdx_license_key": "LicenseRef-scancode-marvell-firmware-2019", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "marvell-firmware-2019.json", "yml": "marvell-firmware-2019.yml", "html": "marvell-firmware-2019.html", "text": "marvell-firmware-2019.LICENSE"}, {"license_key": "matt-gallagher-attribution", "spdx_license_key": "LicenseRef-scancode-matt-gallagher-attribution", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "matt-gallagher-attribution.json", "yml": "matt-gallagher-attribution.yml", "html": "matt-gallagher-attribution.html", "text": "matt-gallagher-attribution.LICENSE"}, {"license_key": "matthew-kwan", "spdx_license_key": "LicenseRef-scancode-matthew-kwan", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "matthew-kwan.json", "yml": "matthew-kwan.yml", "html": "matthew-kwan.html", "text": "matthew-kwan.LICENSE"}, {"license_key": "matthew-welch-font-license", "spdx_license_key": "LicenseRef-scancode-matthew-welch-font-license", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "matthew-welch-font-license.json", "yml": "matthew-welch-font-license.yml", "html": "matthew-welch-font-license.html", "text": "matthew-welch-font-license.LICENSE"}, {"license_key": "mattkruse", "spdx_license_key": "LicenseRef-scancode-mattkruse", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mattkruse.json", "yml": "mattkruse.yml", "html": "mattkruse.html", "text": "mattkruse.LICENSE"}, {"license_key": "maxmind-geolite2-eula-2019", "spdx_license_key": "LicenseRef-scancode-maxmind-geolite2-eula-2019", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "maxmind-geolite2-eula-2019.json", "yml": "maxmind-geolite2-eula-2019.yml", "html": "maxmind-geolite2-eula-2019.html", "text": "maxmind-geolite2-eula-2019.LICENSE"}, {"license_key": "maxmind-odl", "spdx_license_key": "LicenseRef-scancode-maxmind-odl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "maxmind-odl.json", "yml": "maxmind-odl.yml", "html": "maxmind-odl.html", "text": "maxmind-odl.LICENSE"}, {"license_key": "mcafee-tou", "spdx_license_key": "LicenseRef-scancode-mcafee-tou", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "mcafee-tou.json", "yml": "mcafee-tou.yml", "html": "mcafee-tou.html", "text": "mcafee-tou.LICENSE"}, {"license_key": "mcrae-pl-4-r53", "spdx_license_key": "LicenseRef-scancode-mcrae-pl-4-r53", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "mcrae-pl-4-r53.json", "yml": "mcrae-pl-4-r53.yml", "html": "mcrae-pl-4-r53.html", "text": "mcrae-pl-4-r53.LICENSE"}, {"license_key": "mediainfo-lib", "spdx_license_key": "LicenseRef-scancode-mediainfo-lib", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mediainfo-lib.json", "yml": "mediainfo-lib.yml", "html": "mediainfo-lib.html", "text": "mediainfo-lib.LICENSE"}, {"license_key": "melange", "spdx_license_key": "LicenseRef-scancode-melange", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "melange.json", "yml": "melange.yml", "html": "melange.html", "text": "melange.LICENSE"}, {"license_key": "mentalis", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "mentalis.json", "yml": "mentalis.yml", "html": "mentalis.html", "text": "mentalis.LICENSE"}, {"license_key": "merit-network-derivative", "spdx_license_key": "LicenseRef-scancode-merit-network-derivative", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "merit-network-derivative.json", "yml": "merit-network-derivative.yml", "html": "merit-network-derivative.html", "text": "merit-network-derivative.LICENSE"}, {"license_key": "metageek-inssider-eula", "spdx_license_key": "LicenseRef-scancode-metageek-inssider-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "metageek-inssider-eula.json", "yml": "metageek-inssider-eula.yml", "html": "metageek-inssider-eula.html", "text": "metageek-inssider-eula.LICENSE"}, {"license_key": "metrolink-1.0", "spdx_license_key": "LicenseRef-scancode-metrolink-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "metrolink-1.0.json", "yml": "metrolink-1.0.yml", "html": "metrolink-1.0.html", "text": "metrolink-1.0.LICENSE"}, {"license_key": "mgopen-font-license", "spdx_license_key": "LicenseRef-scancode-mgopen-font-license", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mgopen-font-license.json", "yml": "mgopen-font-license.yml", "html": "mgopen-font-license.html", "text": "mgopen-font-license.LICENSE"}, {"license_key": "michael-barr", "spdx_license_key": "LicenseRef-scancode-michael-barr", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "michael-barr.json", "yml": "michael-barr.yml", "html": "michael-barr.html", "text": "michael-barr.LICENSE"}, {"license_key": "michigan-disclaimer", "spdx_license_key": "LicenseRef-scancode-michigan-disclaimer", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "michigan-disclaimer.json", "yml": "michigan-disclaimer.yml", "html": "michigan-disclaimer.html", "text": "michigan-disclaimer.LICENSE"}, {"license_key": "microchip-linux-firmware", "spdx_license_key": "LicenseRef-scancode-microchip-linux-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "microchip-linux-firmware.json", "yml": "microchip-linux-firmware.yml", "html": "microchip-linux-firmware.html", "text": "microchip-linux-firmware.LICENSE"}, {"license_key": "microsoft-enterprise-library-eula", "spdx_license_key": "LicenseRef-scancode-ms-enterprise-library-eula", "other_spdx_license_keys": ["LicenseRef-scancode-microsoft-enterprise-library-eula"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "microsoft-enterprise-library-eula.json", "yml": "microsoft-enterprise-library-eula.yml", "html": "microsoft-enterprise-library-eula.html", "text": "microsoft-enterprise-library-eula.LICENSE"}, {"license_key": "microsoft-windows-rally-devkit", "spdx_license_key": "LicenseRef-scancode-microsoft-windows-rally-devkit", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "microsoft-windows-rally-devkit.json", "yml": "microsoft-windows-rally-devkit.yml", "html": "microsoft-windows-rally-devkit.html", "text": "microsoft-windows-rally-devkit.LICENSE"}, {"license_key": "mif-exception", "spdx_license_key": "mif-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "mif-exception.json", "yml": "mif-exception.yml", "html": "mif-exception.html", "text": "mif-exception.LICENSE"}, {"license_key": "mike95", "spdx_license_key": "LicenseRef-scancode-mike95", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "mike95.json", "yml": "mike95.yml", "html": "mike95.html", "text": "mike95.LICENSE"}, {"license_key": "minecraft-mod", "spdx_license_key": "LicenseRef-scancode-minecraft-mod", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "minecraft-mod.json", "yml": "minecraft-mod.yml", "html": "minecraft-mod.html", "text": "minecraft-mod.LICENSE"}, {"license_key": "mini-xml", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "mini-xml.json", "yml": "mini-xml.yml", "html": "mini-xml.html", "text": "mini-xml.LICENSE"}, {"license_key": "mini-xml-exception-lgpl-2.0", "spdx_license_key": "LicenseRef-scancode-mini-xml-exception-lgpl-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "mini-xml-exception-lgpl-2.0.json", "yml": "mini-xml-exception-lgpl-2.0.yml", "html": "mini-xml-exception-lgpl-2.0.html", "text": "mini-xml-exception-lgpl-2.0.LICENSE"}, {"license_key": "minpack", "spdx_license_key": "LicenseRef-scancode-minpack", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "minpack.json", "yml": "minpack.yml", "html": "minpack.html", "text": "minpack.LICENSE"}, {"license_key": "mir-os", "spdx_license_key": "MirOS", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mir-os.json", "yml": "mir-os.yml", "html": "mir-os.html", "text": "mir-os.LICENSE"}, {"license_key": "mit", "spdx_license_key": "MIT", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit.json", "yml": "mit.yml", "html": "mit.html", "text": "mit.LICENSE"}, {"license_key": "mit-0", "spdx_license_key": "MIT-0", "other_spdx_license_keys": ["LicenseRef-scancode-ekioh"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-0.json", "yml": "mit-0.yml", "html": "mit-0.html", "text": "mit-0.LICENSE"}, {"license_key": "mit-1995", "spdx_license_key": "LicenseRef-scancode-mit-1995", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-1995.json", "yml": "mit-1995.yml", "html": "mit-1995.html", "text": "mit-1995.LICENSE"}, {"license_key": "mit-ack", "spdx_license_key": "MIT-feh", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-ack.json", "yml": "mit-ack.yml", "html": "mit-ack.html", "text": "mit-ack.LICENSE"}, {"license_key": "mit-addition", "spdx_license_key": "LicenseRef-scancode-mit-addition", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-addition.json", "yml": "mit-addition.yml", "html": "mit-addition.html", "text": "mit-addition.LICENSE"}, {"license_key": "mit-export-control", "spdx_license_key": "Xerox", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-export-control.json", "yml": "mit-export-control.yml", "html": "mit-export-control.html", "text": "mit-export-control.LICENSE"}, {"license_key": "mit-license-1998", "spdx_license_key": "LicenseRef-scancode-mit-license-1998", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-license-1998.json", "yml": "mit-license-1998.yml", "html": "mit-license-1998.html", "text": "mit-license-1998.LICENSE"}, {"license_key": "mit-modern", "spdx_license_key": "MIT-Modern-Variant", "other_spdx_license_keys": ["LicenseRef-scancode-mit-modern"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-modern.json", "yml": "mit-modern.yml", "html": "mit-modern.html", "text": "mit-modern.LICENSE"}, {"license_key": "mit-nagy", "spdx_license_key": "LicenseRef-scancode-mit-nagy", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-nagy.json", "yml": "mit-nagy.yml", "html": "mit-nagy.html", "text": "mit-nagy.LICENSE"}, {"license_key": "mit-no-advert-export-control", "spdx_license_key": "LicenseRef-scancode-mit-no-advert-export-control", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-no-advert-export-control.json", "yml": "mit-no-advert-export-control.yml", "html": "mit-no-advert-export-control.html", "text": "mit-no-advert-export-control.LICENSE"}, {"license_key": "mit-no-false-attribs", "spdx_license_key": "MITNFA", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-no-false-attribs.json", "yml": "mit-no-false-attribs.yml", "html": "mit-no-false-attribs.html", "text": "mit-no-false-attribs.LICENSE"}, {"license_key": "mit-no-trademarks", "spdx_license_key": "LicenseRef-scancode-mit-no-trademarks", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-no-trademarks.json", "yml": "mit-no-trademarks.yml", "html": "mit-no-trademarks.html", "text": "mit-no-trademarks.LICENSE"}, {"license_key": "mit-old-style", "spdx_license_key": "LicenseRef-scancode-mit-old-style", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-old-style.json", "yml": "mit-old-style.yml", "html": "mit-old-style.html", "text": "mit-old-style.LICENSE"}, {"license_key": "mit-old-style-no-advert", "spdx_license_key": "NTP", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-old-style-no-advert.json", "yml": "mit-old-style-no-advert.yml", "html": "mit-old-style-no-advert.html", "text": "mit-old-style-no-advert.LICENSE"}, {"license_key": "mit-old-style-sparse", "spdx_license_key": "LicenseRef-scancode-mit-old-style-sparse", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-old-style-sparse.json", "yml": "mit-old-style-sparse.yml", "html": "mit-old-style-sparse.html", "text": "mit-old-style-sparse.LICENSE"}, {"license_key": "mit-readme", "spdx_license_key": "LicenseRef-scancode-mit-readme", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-readme.json", "yml": "mit-readme.yml", "html": "mit-readme.html", "text": "mit-readme.LICENSE"}, {"license_key": "mit-specification-disclaimer", "spdx_license_key": "LicenseRef-scancode-mit-specification-disclaimer", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-specification-disclaimer.json", "yml": "mit-specification-disclaimer.yml", "html": "mit-specification-disclaimer.html", "text": "mit-specification-disclaimer.LICENSE"}, {"license_key": "mit-synopsys", "spdx_license_key": "LicenseRef-scancode-mit-synopsys", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-synopsys.json", "yml": "mit-synopsys.yml", "html": "mit-synopsys.html", "text": "mit-synopsys.LICENSE"}, {"license_key": "mit-taylor-variant", "spdx_license_key": "LicenseRef-scancode-mit-taylor-variant", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-taylor-variant.json", "yml": "mit-taylor-variant.yml", "html": "mit-taylor-variant.html", "text": "mit-taylor-variant.LICENSE"}, {"license_key": "mit-veillard-variant", "spdx_license_key": "LicenseRef-scancode-mit-veillard-variant", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-veillard-variant.json", "yml": "mit-veillard-variant.yml", "html": "mit-veillard-variant.html", "text": "mit-veillard-variant.LICENSE"}, {"license_key": "mit-with-modification-obligations", "spdx_license_key": "LicenseRef-scancode-mit-modification-obligations", "other_spdx_license_keys": ["LicenseRef-scancode-mit-with-modification-obligations"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-with-modification-obligations.json", "yml": "mit-with-modification-obligations.yml", "html": "mit-with-modification-obligations.html", "text": "mit-with-modification-obligations.LICENSE"}, {"license_key": "mit-xfig", "spdx_license_key": "LicenseRef-scancode-mit-xfig", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mit-xfig.json", "yml": "mit-xfig.yml", "html": "mit-xfig.html", "text": "mit-xfig.LICENSE"}, {"license_key": "mod-dav-1.0", "spdx_license_key": "LicenseRef-scancode-mod-dav-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mod-dav-1.0.json", "yml": "mod-dav-1.0.yml", "html": "mod-dav-1.0.html", "text": "mod-dav-1.0.LICENSE"}, {"license_key": "monetdb-1.1", "spdx_license_key": "LicenseRef-scancode-monetdb-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "monetdb-1.1.json", "yml": "monetdb-1.1.yml", "html": "monetdb-1.1.html", "text": "monetdb-1.1.LICENSE"}, {"license_key": "mongodb-sspl-1.0", "spdx_license_key": "SSPL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "mongodb-sspl-1.0.json", "yml": "mongodb-sspl-1.0.yml", "html": "mongodb-sspl-1.0.html", "text": "mongodb-sspl-1.0.LICENSE"}, {"license_key": "motorola", "spdx_license_key": "LicenseRef-scancode-motorola", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "motorola.json", "yml": "motorola.yml", "html": "motorola.html", "text": "motorola.LICENSE"}, {"license_key": "motosoto-0.9.1", "spdx_license_key": "Motosoto", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "motosoto-0.9.1.json", "yml": "motosoto-0.9.1.yml", "html": "motosoto-0.9.1.html", "text": "motosoto-0.9.1.LICENSE"}, {"license_key": "moxa-linux-firmware", "spdx_license_key": "LicenseRef-scancode-moxa-linux-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "moxa-linux-firmware.json", "yml": "moxa-linux-firmware.yml", "html": "moxa-linux-firmware.html", "text": "moxa-linux-firmware.LICENSE"}, {"license_key": "mozilla-gc", "spdx_license_key": "LicenseRef-scancode-mozilla-gc", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mozilla-gc.json", "yml": "mozilla-gc.yml", "html": "mozilla-gc.html", "text": "mozilla-gc.LICENSE"}, {"license_key": "mozilla-ospl-1.0", "spdx_license_key": "LicenseRef-scancode-mozilla-ospl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "mozilla-ospl-1.0.json", "yml": "mozilla-ospl-1.0.yml", "html": "mozilla-ospl-1.0.html", "text": "mozilla-ospl-1.0.LICENSE"}, {"license_key": "mpeg-7", "spdx_license_key": "LicenseRef-scancode-mpeg-7", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "mpeg-7.json", "yml": "mpeg-7.yml", "html": "mpeg-7.html", "text": "mpeg-7.LICENSE"}, {"license_key": "mpeg-iso", "spdx_license_key": "LicenseRef-scancode-mpeg-iso", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mpeg-iso.json", "yml": "mpeg-iso.yml", "html": "mpeg-iso.html", "text": "mpeg-iso.LICENSE"}, {"license_key": "mpeg-ssg", "spdx_license_key": "LicenseRef-scancode-mpeg-ssg", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mpeg-ssg.json", "yml": "mpeg-ssg.yml", "html": "mpeg-ssg.html", "text": "mpeg-ssg.LICENSE"}, {"license_key": "mpich", "spdx_license_key": "mpich2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mpich.json", "yml": "mpich.yml", "html": "mpich.html", "text": "mpich.LICENSE"}, {"license_key": "mpl-1.0", "spdx_license_key": "MPL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "mpl-1.0.json", "yml": "mpl-1.0.yml", "html": "mpl-1.0.html", "text": "mpl-1.0.LICENSE"}, {"license_key": "mpl-1.1", "spdx_license_key": "MPL-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "mpl-1.1.json", "yml": "mpl-1.1.yml", "html": "mpl-1.1.html", "text": "mpl-1.1.LICENSE"}, {"license_key": "mpl-2.0", "spdx_license_key": "MPL-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "mpl-2.0.json", "yml": "mpl-2.0.yml", "html": "mpl-2.0.html", "text": "mpl-2.0.LICENSE"}, {"license_key": "mpl-2.0-no-copyleft-exception", "spdx_license_key": "MPL-2.0-no-copyleft-exception", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "mpl-2.0-no-copyleft-exception.json", "yml": "mpl-2.0-no-copyleft-exception.yml", "html": "mpl-2.0-no-copyleft-exception.html", "text": "mpl-2.0-no-copyleft-exception.LICENSE"}, {"license_key": "ms-asp-net-ajax-supplemental-terms", "spdx_license_key": "LicenseRef-scancode-ms-asp-net-ajax-supp-terms", "other_spdx_license_keys": ["LicenseRef-scancode-ms-asp-net-ajax-supplemental-terms"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-asp-net-ajax-supplemental-terms.json", "yml": "ms-asp-net-ajax-supplemental-terms.yml", "html": "ms-asp-net-ajax-supplemental-terms.html", "text": "ms-asp-net-ajax-supplemental-terms.LICENSE"}, {"license_key": "ms-asp-net-mvc3", "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc3", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-asp-net-mvc3.json", "yml": "ms-asp-net-mvc3.yml", "html": "ms-asp-net-mvc3.html", "text": "ms-asp-net-mvc3.LICENSE"}, {"license_key": "ms-asp-net-mvc4", "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc4", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-asp-net-mvc4.json", "yml": "ms-asp-net-mvc4.yml", "html": "ms-asp-net-mvc4.html", "text": "ms-asp-net-mvc4.LICENSE"}, {"license_key": "ms-asp-net-mvc4-extensions", "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc4-extensions", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-asp-net-mvc4-extensions.json", "yml": "ms-asp-net-mvc4-extensions.yml", "html": "ms-asp-net-mvc4-extensions.html", "text": "ms-asp-net-mvc4-extensions.LICENSE"}, {"license_key": "ms-asp-net-software", "spdx_license_key": "LicenseRef-scancode-ms-asp-net-software", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-asp-net-software.json", "yml": "ms-asp-net-software.yml", "html": "ms-asp-net-software.html", "text": "ms-asp-net-software.LICENSE"}, {"license_key": "ms-asp-net-tools-pre-release", "spdx_license_key": "LicenseRef-scancode-ms-asp-net-tools-pre-release", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-asp-net-tools-pre-release.json", "yml": "ms-asp-net-tools-pre-release.yml", "html": "ms-asp-net-tools-pre-release.html", "text": "ms-asp-net-tools-pre-release.LICENSE"}, {"license_key": "ms-asp-net-web-optimization-framework", "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-optimization", "other_spdx_license_keys": ["LicenseRef-scancode-ms-asp-net-web-optimization-framework"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-asp-net-web-optimization-framework.json", "yml": "ms-asp-net-web-optimization-framework.yml", "html": "ms-asp-net-web-optimization-framework.html", "text": "ms-asp-net-web-optimization-framework.LICENSE"}, {"license_key": "ms-asp-net-web-pages-2", "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-pages-2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-asp-net-web-pages-2.json", "yml": "ms-asp-net-web-pages-2.yml", "html": "ms-asp-net-web-pages-2.html", "text": "ms-asp-net-web-pages-2.LICENSE"}, {"license_key": "ms-asp-net-web-pages-templates", "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-pages-templates", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-asp-net-web-pages-templates.json", "yml": "ms-asp-net-web-pages-templates.yml", "html": "ms-asp-net-web-pages-templates.html", "text": "ms-asp-net-web-pages-templates.LICENSE"}, {"license_key": "ms-azure-data-studio", "spdx_license_key": "LicenseRef-scancode-ms-azure-data-studio", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-azure-data-studio.json", "yml": "ms-azure-data-studio.yml", "html": "ms-azure-data-studio.html", "text": "ms-azure-data-studio.LICENSE"}, {"license_key": "ms-azure-spatialanchors-2.9.0", "spdx_license_key": "LicenseRef-scancode-ms-azure-spatialanchors-2.9.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-azure-spatialanchors-2.9.0.json", "yml": "ms-azure-spatialanchors-2.9.0.yml", "html": "ms-azure-spatialanchors-2.9.0.html", "text": "ms-azure-spatialanchors-2.9.0.LICENSE"}, {"license_key": "ms-capicom", "spdx_license_key": "LicenseRef-scancode-ms-capicom", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-capicom.json", "yml": "ms-capicom.yml", "html": "ms-capicom.html", "text": "ms-capicom.LICENSE"}, {"license_key": "ms-cl", "spdx_license_key": "LicenseRef-scancode-ms-cl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "ms-cl.json", "yml": "ms-cl.yml", "html": "ms-cl.html", "text": "ms-cl.LICENSE"}, {"license_key": "ms-cla", "spdx_license_key": "LicenseRef-scancode-ms-cla", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "ms-cla.json", "yml": "ms-cla.yml", "html": "ms-cla.html", "text": "ms-cla.LICENSE"}, {"license_key": "ms-control-spy-2.0", "spdx_license_key": "LicenseRef-scancode-ms-control-spy-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-control-spy-2.0.json", "yml": "ms-control-spy-2.0.yml", "html": "ms-control-spy-2.0.html", "text": "ms-control-spy-2.0.LICENSE"}, {"license_key": "ms-data-tier-af-2022", "spdx_license_key": "LicenseRef-scancode-ms-data-tier-af-2022", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-data-tier-af-2022.json", "yml": "ms-data-tier-af-2022.yml", "html": "ms-data-tier-af-2022.html", "text": "ms-data-tier-af-2022.LICENSE"}, {"license_key": "ms-developer-services-agreement", "spdx_license_key": "LicenseRef-scancode-ms-dev-services-agreement", "other_spdx_license_keys": ["LicenseRef-scancode-ms-developer-services-agreement"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-developer-services-agreement.json", "yml": "ms-developer-services-agreement.yml", "html": "ms-developer-services-agreement.html", "text": "ms-developer-services-agreement.LICENSE"}, {"license_key": "ms-developer-services-agreement-2018-06", "spdx_license_key": "LicenseRef-scancode-ms-dev-services-2018-06", "other_spdx_license_keys": ["LicenseRef-scancode-ms-developer-services-agreement-2018-06"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-developer-services-agreement-2018-06.json", "yml": "ms-developer-services-agreement-2018-06.yml", "html": "ms-developer-services-agreement-2018-06.html", "text": "ms-developer-services-agreement-2018-06.LICENSE"}, {"license_key": "ms-device-emulator-3.0", "spdx_license_key": "LicenseRef-scancode-ms-device-emulator-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-device-emulator-3.0.json", "yml": "ms-device-emulator-3.0.yml", "html": "ms-device-emulator-3.0.html", "text": "ms-device-emulator-3.0.LICENSE"}, {"license_key": "ms-direct3d-d3d120n7-1.1.0", "spdx_license_key": "LicenseRef-scancode-ms-direct3d-d3d120n7-1.1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-direct3d-d3d120n7-1.1.0.json", "yml": "ms-direct3d-d3d120n7-1.1.0.yml", "html": "ms-direct3d-d3d120n7-1.1.0.html", "text": "ms-direct3d-d3d120n7-1.1.0.LICENSE"}, {"license_key": "ms-directx-sdk-eula", "spdx_license_key": "LicenseRef-scancode-ms-directx-sdk-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-directx-sdk-eula.json", "yml": "ms-directx-sdk-eula.yml", "html": "ms-directx-sdk-eula.html", "text": "ms-directx-sdk-eula.LICENSE"}, {"license_key": "ms-dxsdk-d3dx-9.29.952.3", "spdx_license_key": "LicenseRef-scancode-ms-dxsdk-d3dx-9.29.952.3", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-dxsdk-d3dx-9.29.952.3.json", "yml": "ms-dxsdk-d3dx-9.29.952.3.yml", "html": "ms-dxsdk-d3dx-9.29.952.3.html", "text": "ms-dxsdk-d3dx-9.29.952.3.LICENSE"}, {"license_key": "ms-entity-framework-4.1", "spdx_license_key": "LicenseRef-scancode-ms-entity-framework-4.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-entity-framework-4.1.json", "yml": "ms-entity-framework-4.1.yml", "html": "ms-entity-framework-4.1.html", "text": "ms-entity-framework-4.1.LICENSE"}, {"license_key": "ms-entity-framework-5", "spdx_license_key": "LicenseRef-scancode-ms-entity-framework-5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-entity-framework-5.json", "yml": "ms-entity-framework-5.yml", "html": "ms-entity-framework-5.html", "text": "ms-entity-framework-5.LICENSE"}, {"license_key": "ms-eula-win-script-host", "spdx_license_key": "LicenseRef-scancode-ms-eula-win-script-host", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ms-eula-win-script-host.json", "yml": "ms-eula-win-script-host.yml", "html": "ms-eula-win-script-host.html", "text": "ms-eula-win-script-host.LICENSE"}, {"license_key": "ms-exchange-server-2010-sp2-sdk", "spdx_license_key": "LicenseRef-scancode-ms-exchange-srv-2010-sp2-sdk", "other_spdx_license_keys": ["LicenseRef-scancode-ms-exchange-server-2010-sp2-sdk"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-exchange-server-2010-sp2-sdk.json", "yml": "ms-exchange-server-2010-sp2-sdk.yml", "html": "ms-exchange-server-2010-sp2-sdk.html", "text": "ms-exchange-server-2010-sp2-sdk.LICENSE"}, {"license_key": "ms-iis-container-images-eula-2020", "spdx_license_key": "LicenseRef-scancode-ms-iis-container-eula-2020", "other_spdx_license_keys": ["LicenseRef-scancode-ms-iis-container-images-eula-2020"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-iis-container-images-eula-2020.json", "yml": "ms-iis-container-images-eula-2020.yml", "html": "ms-iis-container-images-eula-2020.html", "text": "ms-iis-container-images-eula-2020.LICENSE"}, {"license_key": "ms-ilmerge", "spdx_license_key": "LicenseRef-scancode-ms-ilmerge", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-ilmerge.json", "yml": "ms-ilmerge.yml", "html": "ms-ilmerge.html", "text": "ms-ilmerge.LICENSE"}, {"license_key": "ms-invisible-eula-1.0", "spdx_license_key": "LicenseRef-scancode-ms-invisible-eula-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-invisible-eula-1.0.json", "yml": "ms-invisible-eula-1.0.yml", "html": "ms-invisible-eula-1.0.html", "text": "ms-invisible-eula-1.0.LICENSE"}, {"license_key": "ms-jdbc-driver-40-sql-server", "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-40-sql-server", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-jdbc-driver-40-sql-server.json", "yml": "ms-jdbc-driver-40-sql-server.yml", "html": "ms-jdbc-driver-40-sql-server.html", "text": "ms-jdbc-driver-40-sql-server.LICENSE"}, {"license_key": "ms-jdbc-driver-41-sql-server", "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-41-sql-server", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-jdbc-driver-41-sql-server.json", "yml": "ms-jdbc-driver-41-sql-server.yml", "html": "ms-jdbc-driver-41-sql-server.html", "text": "ms-jdbc-driver-41-sql-server.LICENSE"}, {"license_key": "ms-jdbc-driver-60-sql-server", "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-60-sql-server", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-jdbc-driver-60-sql-server.json", "yml": "ms-jdbc-driver-60-sql-server.yml", "html": "ms-jdbc-driver-60-sql-server.html", "text": "ms-jdbc-driver-60-sql-server.LICENSE"}, {"license_key": "ms-kinext-win-sdk", "spdx_license_key": "LicenseRef-scancode-ms-kinext-win-sdk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-kinext-win-sdk.json", "yml": "ms-kinext-win-sdk.yml", "html": "ms-kinext-win-sdk.html", "text": "ms-kinext-win-sdk.LICENSE"}, {"license_key": "ms-limited-community", "spdx_license_key": "LicenseRef-scancode-ms-limited-community", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-limited-community.json", "yml": "ms-limited-community.yml", "html": "ms-limited-community.html", "text": "ms-limited-community.LICENSE"}, {"license_key": "ms-limited-public", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "ms-limited-public.json", "yml": "ms-limited-public.yml", "html": "ms-limited-public.html", "text": "ms-limited-public.LICENSE"}, {"license_key": "ms-lpl", "spdx_license_key": "LicenseRef-scancode-ms-lpl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ms-lpl.json", "yml": "ms-lpl.yml", "html": "ms-lpl.html", "text": "ms-lpl.LICENSE"}, {"license_key": "ms-msn-webgrease", "spdx_license_key": "LicenseRef-scancode-ms-msn-webgrease", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-msn-webgrease.json", "yml": "ms-msn-webgrease.yml", "html": "ms-msn-webgrease.html", "text": "ms-msn-webgrease.LICENSE"}, {"license_key": "ms-net-framework-4-supplemental-terms", "spdx_license_key": "LicenseRef-scancode-ms-net-framework-4-supp-terms", "other_spdx_license_keys": ["LicenseRef-scancode-ms-net-framework-4-supplemental-terms"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-net-framework-4-supplemental-terms.json", "yml": "ms-net-framework-4-supplemental-terms.yml", "html": "ms-net-framework-4-supplemental-terms.html", "text": "ms-net-framework-4-supplemental-terms.LICENSE"}, {"license_key": "ms-net-framework-deployment", "spdx_license_key": "LicenseRef-scancode-ms-net-framework-deployment", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ms-net-framework-deployment.json", "yml": "ms-net-framework-deployment.yml", "html": "ms-net-framework-deployment.html", "text": "ms-net-framework-deployment.LICENSE"}, {"license_key": "ms-net-library", "spdx_license_key": "LicenseRef-scancode-ms-net-library", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-net-library.json", "yml": "ms-net-library.yml", "html": "ms-net-library.html", "text": "ms-net-library.LICENSE"}, {"license_key": "ms-net-library-2016-05", "spdx_license_key": "LicenseRef-scancode-ms-net-library-2016-05", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-net-library-2016-05.json", "yml": "ms-net-library-2016-05.yml", "html": "ms-net-library-2016-05.html", "text": "ms-net-library-2016-05.LICENSE"}, {"license_key": "ms-net-library-2018-11", "spdx_license_key": "LicenseRef-scancode-ms-net-library-2018-11", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-net-library-2018-11.json", "yml": "ms-net-library-2018-11.yml", "html": "ms-net-library-2018-11.html", "text": "ms-net-library-2018-11.LICENSE"}, {"license_key": "ms-net-library-2019-06", "spdx_license_key": "LicenseRef-scancode-ms-net-library-2019-06", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-net-library-2019-06.json", "yml": "ms-net-library-2019-06.yml", "html": "ms-net-library-2019-06.html", "text": "ms-net-library-2019-06.LICENSE"}, {"license_key": "ms-net-library-2020-09", "spdx_license_key": "LicenseRef-scancode-ms-net-library-2020-09", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-net-library-2020-09.json", "yml": "ms-net-library-2020-09.yml", "html": "ms-net-library-2020-09.html", "text": "ms-net-library-2020-09.LICENSE"}, {"license_key": "ms-nt-resource-kit", "spdx_license_key": "LicenseRef-scancode-ms-nt-resource-kit", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ms-nt-resource-kit.json", "yml": "ms-nt-resource-kit.yml", "html": "ms-nt-resource-kit.html", "text": "ms-nt-resource-kit.LICENSE"}, {"license_key": "ms-nuget", "spdx_license_key": "LicenseRef-scancode-ms-nuget", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-nuget.json", "yml": "ms-nuget.yml", "html": "ms-nuget.html", "text": "ms-nuget.LICENSE"}, {"license_key": "ms-nuget-package-manager", "spdx_license_key": "LicenseRef-scancode-ms-nuget-package-manager", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-nuget-package-manager.json", "yml": "ms-nuget-package-manager.yml", "html": "ms-nuget-package-manager.html", "text": "ms-nuget-package-manager.LICENSE"}, {"license_key": "ms-office-extensible-file", "spdx_license_key": "LicenseRef-scancode-ms-office-extensible-file", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-office-extensible-file.json", "yml": "ms-office-extensible-file.yml", "html": "ms-office-extensible-file.html", "text": "ms-office-extensible-file.LICENSE"}, {"license_key": "ms-office-system-programs-eula", "spdx_license_key": "LicenseRef-scancode-ms-office-system-programs-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ms-office-system-programs-eula.json", "yml": "ms-office-system-programs-eula.yml", "html": "ms-office-system-programs-eula.html", "text": "ms-office-system-programs-eula.LICENSE"}, {"license_key": "ms-patent-promise", "spdx_license_key": "LicenseRef-scancode-ms-patent-promise", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "ms-patent-promise.json", "yml": "ms-patent-promise.yml", "html": "ms-patent-promise.html", "text": "ms-patent-promise.LICENSE"}, {"license_key": "ms-patent-promise-mono", "spdx_license_key": "LicenseRef-scancode-ms-patent-promise-mono", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "ms-patent-promise-mono.json", "yml": "ms-patent-promise-mono.yml", "html": "ms-patent-promise-mono.html", "text": "ms-patent-promise-mono.LICENSE"}, {"license_key": "ms-permissive-1.1", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "ms-permissive-1.1.json", "yml": "ms-permissive-1.1.yml", "html": "ms-permissive-1.1.html", "text": "ms-permissive-1.1.LICENSE"}, {"license_key": "ms-pl", "spdx_license_key": "MS-PL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ms-pl.json", "yml": "ms-pl.yml", "html": "ms-pl.html", "text": "ms-pl.LICENSE"}, {"license_key": "ms-platform-sdk", "spdx_license_key": "LicenseRef-scancode-ms-platform-sdk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ms-platform-sdk.json", "yml": "ms-platform-sdk.yml", "html": "ms-platform-sdk.html", "text": "ms-platform-sdk.LICENSE"}, {"license_key": "ms-programsynthesis-7.22.0", "spdx_license_key": "LicenseRef-scancode-ms-programsynthesis-7.22.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-programsynthesis-7.22.0.json", "yml": "ms-programsynthesis-7.22.0.yml", "html": "ms-programsynthesis-7.22.0.html", "text": "ms-programsynthesis-7.22.0.LICENSE"}, {"license_key": "ms-python-vscode-pylance-2021", "spdx_license_key": "LicenseRef-scancode-ms-python-vscode-pylance-2021", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ms-python-vscode-pylance-2021.json", "yml": "ms-python-vscode-pylance-2021.yml", "html": "ms-python-vscode-pylance-2021.html", "text": "ms-python-vscode-pylance-2021.LICENSE"}, {"license_key": "ms-reactive-extensions-eula", "spdx_license_key": "LicenseRef-scancode-ms-reactive-extensions-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-reactive-extensions-eula.json", "yml": "ms-reactive-extensions-eula.yml", "html": "ms-reactive-extensions-eula.html", "text": "ms-reactive-extensions-eula.LICENSE"}, {"license_key": "ms-refl", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Proprietary Free", "json": "ms-refl.json", "yml": "ms-refl.yml", "html": "ms-refl.html", "text": "ms-refl.LICENSE"}, {"license_key": "ms-remote-ndis-usb-kit", "spdx_license_key": "LicenseRef-scancode-ms-remote-ndis-usb-kit", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ms-remote-ndis-usb-kit.json", "yml": "ms-remote-ndis-usb-kit.yml", "html": "ms-remote-ndis-usb-kit.html", "text": "ms-remote-ndis-usb-kit.LICENSE"}, {"license_key": "ms-research-shared-source", "spdx_license_key": "LicenseRef-scancode-ms-research-shared-source", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-research-shared-source.json", "yml": "ms-research-shared-source.yml", "html": "ms-research-shared-source.html", "text": "ms-research-shared-source.LICENSE"}, {"license_key": "ms-rl", "spdx_license_key": "MS-RL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "ms-rl.json", "yml": "ms-rl.yml", "html": "ms-rl.html", "text": "ms-rl.LICENSE"}, {"license_key": "ms-rsl", "spdx_license_key": "LicenseRef-scancode-ms-rsl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-rsl.json", "yml": "ms-rsl.yml", "html": "ms-rsl.html", "text": "ms-rsl.LICENSE"}, {"license_key": "ms-silverlight-3", "spdx_license_key": "LicenseRef-scancode-ms-silverlight-3", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-silverlight-3.json", "yml": "ms-silverlight-3.yml", "html": "ms-silverlight-3.html", "text": "ms-silverlight-3.LICENSE"}, {"license_key": "ms-sql-server-compact-4.0", "spdx_license_key": "LicenseRef-scancode-ms-sql-server-compact-4.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-sql-server-compact-4.0.json", "yml": "ms-sql-server-compact-4.0.yml", "html": "ms-sql-server-compact-4.0.html", "text": "ms-sql-server-compact-4.0.LICENSE"}, {"license_key": "ms-sql-server-data-tools", "spdx_license_key": "LicenseRef-scancode-ms-sql-server-data-tools", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-sql-server-data-tools.json", "yml": "ms-sql-server-data-tools.yml", "html": "ms-sql-server-data-tools.html", "text": "ms-sql-server-data-tools.LICENSE"}, {"license_key": "ms-sspl", "spdx_license_key": "LicenseRef-scancode-ms-sspl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ms-sspl.json", "yml": "ms-sspl.yml", "html": "ms-sspl.html", "text": "ms-sspl.LICENSE"}, {"license_key": "ms-sysinternals-sla", "spdx_license_key": "LicenseRef-scancode-ms-sysinternals-sla", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ms-sysinternals-sla.json", "yml": "ms-sysinternals-sla.yml", "html": "ms-sysinternals-sla.html", "text": "ms-sysinternals-sla.LICENSE"}, {"license_key": "ms-testplatform-17.0.0", "spdx_license_key": "LicenseRef-scancode-ms-testplatform-17.0.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-testplatform-17.0.0.json", "yml": "ms-testplatform-17.0.0.yml", "html": "ms-testplatform-17.0.0.html", "text": "ms-testplatform-17.0.0.LICENSE"}, {"license_key": "ms-ttf-eula", "spdx_license_key": "LicenseRef-scancode-ms-ttf-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ms-ttf-eula.json", "yml": "ms-ttf-eula.yml", "html": "ms-ttf-eula.html", "text": "ms-ttf-eula.LICENSE"}, {"license_key": "ms-typescript-msbuild-4.1.4", "spdx_license_key": "LicenseRef-scancode-ms-typescript-msbuild-4.1.4", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-typescript-msbuild-4.1.4.json", "yml": "ms-typescript-msbuild-4.1.4.yml", "html": "ms-typescript-msbuild-4.1.4.html", "text": "ms-typescript-msbuild-4.1.4.LICENSE"}, {"license_key": "ms-visual-2008-runtime", "spdx_license_key": "LicenseRef-scancode-ms-visual-2008-runtime", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-visual-2008-runtime.json", "yml": "ms-visual-2008-runtime.yml", "html": "ms-visual-2008-runtime.html", "text": "ms-visual-2008-runtime.LICENSE"}, {"license_key": "ms-visual-2010-runtime", "spdx_license_key": "LicenseRef-scancode-ms-visual-2010-runtime", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-visual-2010-runtime.json", "yml": "ms-visual-2010-runtime.yml", "html": "ms-visual-2010-runtime.html", "text": "ms-visual-2010-runtime.LICENSE"}, {"license_key": "ms-visual-2015-sdk", "spdx_license_key": "LicenseRef-scancode-ms-visual-2015-sdk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-visual-2015-sdk.json", "yml": "ms-visual-2015-sdk.yml", "html": "ms-visual-2015-sdk.html", "text": "ms-visual-2015-sdk.LICENSE"}, {"license_key": "ms-visual-cpp-2015-runtime", "spdx_license_key": "LicenseRef-scancode-ms-visual-cpp-2015-runtime", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-visual-cpp-2015-runtime.json", "yml": "ms-visual-cpp-2015-runtime.yml", "html": "ms-visual-cpp-2015-runtime.html", "text": "ms-visual-cpp-2015-runtime.LICENSE"}, {"license_key": "ms-visual-studio-2017", "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-2017", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ms-visual-studio-2017.json", "yml": "ms-visual-studio-2017.yml", "html": "ms-visual-studio-2017.html", "text": "ms-visual-studio-2017.LICENSE"}, {"license_key": "ms-visual-studio-2017-tools", "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-2017-tools", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ms-visual-studio-2017-tools.json", "yml": "ms-visual-studio-2017-tools.yml", "html": "ms-visual-studio-2017-tools.html", "text": "ms-visual-studio-2017-tools.LICENSE"}, {"license_key": "ms-visual-studio-code", "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-visual-studio-code.json", "yml": "ms-visual-studio-code.yml", "html": "ms-visual-studio-code.html", "text": "ms-visual-studio-code.LICENSE"}, {"license_key": "ms-visual-studio-code-2018", "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code-2018", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-visual-studio-code-2018.json", "yml": "ms-visual-studio-code-2018.yml", "html": "ms-visual-studio-code-2018.html", "text": "ms-visual-studio-code-2018.LICENSE"}, {"license_key": "ms-visual-studio-code-2022", "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code-2022", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-visual-studio-code-2022.json", "yml": "ms-visual-studio-code-2022.yml", "html": "ms-visual-studio-code-2022.html", "text": "ms-visual-studio-code-2022.LICENSE"}, {"license_key": "ms-vs-addons-ext-17.2.0", "spdx_license_key": "LicenseRef-scancode-ms-vs-addons-ext-17.2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-vs-addons-ext-17.2.0.json", "yml": "ms-vs-addons-ext-17.2.0.yml", "html": "ms-vs-addons-ext-17.2.0.html", "text": "ms-vs-addons-ext-17.2.0.LICENSE"}, {"license_key": "ms-web-developer-tools-1.0", "spdx_license_key": "LicenseRef-scancode-ms-web-developer-tools-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-web-developer-tools-1.0.json", "yml": "ms-web-developer-tools-1.0.yml", "html": "ms-web-developer-tools-1.0.html", "text": "ms-web-developer-tools-1.0.LICENSE"}, {"license_key": "ms-windows-container-base-image-eula-2020", "spdx_license_key": "LicenseRef-scancode-ms-win-container-eula-2020", "other_spdx_license_keys": ["LicenseRef-scancode-ms-windows-container-base-image-eula-2020"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-windows-container-base-image-eula-2020.json", "yml": "ms-windows-container-base-image-eula-2020.yml", "html": "ms-windows-container-base-image-eula-2020.html", "text": "ms-windows-container-base-image-eula-2020.LICENSE"}, {"license_key": "ms-windows-driver-kit", "spdx_license_key": "LicenseRef-scancode-ms-windows-driver-kit", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-windows-driver-kit.json", "yml": "ms-windows-driver-kit.yml", "html": "ms-windows-driver-kit.html", "text": "ms-windows-driver-kit.LICENSE"}, {"license_key": "ms-windows-identity-foundation", "spdx_license_key": "LicenseRef-scancode-ms-windows-identity-foundation", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-windows-identity-foundation.json", "yml": "ms-windows-identity-foundation.yml", "html": "ms-windows-identity-foundation.html", "text": "ms-windows-identity-foundation.LICENSE"}, {"license_key": "ms-windows-os-2018", "spdx_license_key": "LicenseRef-scancode-ms-windows-os-2018", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ms-windows-os-2018.json", "yml": "ms-windows-os-2018.yml", "html": "ms-windows-os-2018.html", "text": "ms-windows-os-2018.LICENSE"}, {"license_key": "ms-windows-sdk-server-2008-net-3.5", "spdx_license_key": "LicenseRef-scancode-ms-win-sdk-server-2008-net-3.5", "other_spdx_license_keys": ["LicenseRef-scancode-ms-windows-sdk-server-2008-net-3.5"], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ms-windows-sdk-server-2008-net-3.5.json", "yml": "ms-windows-sdk-server-2008-net-3.5.yml", "html": "ms-windows-sdk-server-2008-net-3.5.html", "text": "ms-windows-sdk-server-2008-net-3.5.LICENSE"}, {"license_key": "ms-windows-sdk-win10", "spdx_license_key": "LicenseRef-scancode-ms-windows-sdk-win10", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ms-windows-sdk-win10.json", "yml": "ms-windows-sdk-win10.yml", "html": "ms-windows-sdk-win10.html", "text": "ms-windows-sdk-win10.LICENSE"}, {"license_key": "ms-windows-sdk-win7-net-4", "spdx_license_key": "LicenseRef-scancode-ms-windows-sdk-win7-net-4", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-windows-sdk-win7-net-4.json", "yml": "ms-windows-sdk-win7-net-4.yml", "html": "ms-windows-sdk-win7-net-4.html", "text": "ms-windows-sdk-win7-net-4.LICENSE"}, {"license_key": "ms-windows-server-2003-ddk", "spdx_license_key": "LicenseRef-scancode-ms-windows-server-2003-ddk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-windows-server-2003-ddk.json", "yml": "ms-windows-server-2003-ddk.yml", "html": "ms-windows-server-2003-ddk.html", "text": "ms-windows-server-2003-ddk.LICENSE"}, {"license_key": "ms-windows-server-2003-sdk", "spdx_license_key": "LicenseRef-scancode-ms-windows-server-2003-sdk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-windows-server-2003-sdk.json", "yml": "ms-windows-server-2003-sdk.yml", "html": "ms-windows-server-2003-sdk.html", "text": "ms-windows-server-2003-sdk.LICENSE"}, {"license_key": "ms-ws-routing-spec", "spdx_license_key": "LicenseRef-scancode-ms-ws-routing-spec", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ms-ws-routing-spec.json", "yml": "ms-ws-routing-spec.yml", "html": "ms-ws-routing-spec.html", "text": "ms-ws-routing-spec.LICENSE"}, {"license_key": "ms-xamarin-uitest3.2.0", "spdx_license_key": "LicenseRef-scancode-ms-xamarin-uitest3.2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-xamarin-uitest3.2.0.json", "yml": "ms-xamarin-uitest3.2.0.yml", "html": "ms-xamarin-uitest3.2.0.html", "text": "ms-xamarin-uitest3.2.0.LICENSE"}, {"license_key": "ms-xml-core-4.0", "spdx_license_key": "LicenseRef-scancode-ms-xml-core-4.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ms-xml-core-4.0.json", "yml": "ms-xml-core-4.0.yml", "html": "ms-xml-core-4.0.html", "text": "ms-xml-core-4.0.LICENSE"}, {"license_key": "msj-sample-code", "spdx_license_key": "LicenseRef-scancode-msj-sample-code", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "msj-sample-code.json", "yml": "msj-sample-code.yml", "html": "msj-sample-code.html", "text": "msj-sample-code.LICENSE"}, {"license_key": "msntp", "spdx_license_key": "LicenseRef-scancode-msntp", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "msntp.json", "yml": "msntp.yml", "html": "msntp.html", "text": "msntp.LICENSE"}, {"license_key": "msppl", "spdx_license_key": "LicenseRef-scancode-msppl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "msppl.json", "yml": "msppl.yml", "html": "msppl.html", "text": "msppl.LICENSE"}, {"license_key": "mtll", "spdx_license_key": "MTLL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mtll.json", "yml": "mtll.yml", "html": "mtll.html", "text": "mtll.LICENSE"}, {"license_key": "mtx-licensing-statement", "spdx_license_key": "LicenseRef-scancode-mtx-licensing-statement", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "mtx-licensing-statement.json", "yml": "mtx-licensing-statement.yml", "html": "mtx-licensing-statement.html", "text": "mtx-licensing-statement.LICENSE"}, {"license_key": "mulanpsl-1.0", "spdx_license_key": "MulanPSL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mulanpsl-1.0.json", "yml": "mulanpsl-1.0.yml", "html": "mulanpsl-1.0.html", "text": "mulanpsl-1.0.LICENSE"}, {"license_key": "mulanpsl-1.0-en", "spdx_license_key": "LicenseRef-scancode-mulanpsl-1.0-en", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mulanpsl-1.0-en.json", "yml": "mulanpsl-1.0-en.yml", "html": "mulanpsl-1.0-en.html", "text": "mulanpsl-1.0-en.LICENSE"}, {"license_key": "mulanpsl-2.0", "spdx_license_key": "MulanPSL-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mulanpsl-2.0.json", "yml": "mulanpsl-2.0.yml", "html": "mulanpsl-2.0.html", "text": "mulanpsl-2.0.LICENSE"}, {"license_key": "mulanpsl-2.0-en", "spdx_license_key": "LicenseRef-scancode-mulanpsl-2.0-en", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mulanpsl-2.0-en.json", "yml": "mulanpsl-2.0-en.yml", "html": "mulanpsl-2.0-en.html", "text": "mulanpsl-2.0-en.LICENSE"}, {"license_key": "mule-source-1.1.3", "spdx_license_key": "LicenseRef-scancode-mule-source-1.1.3", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "mule-source-1.1.3.json", "yml": "mule-source-1.1.3.yml", "html": "mule-source-1.1.3.html", "text": "mule-source-1.1.3.LICENSE"}, {"license_key": "mule-source-1.1.4", "spdx_license_key": "LicenseRef-scancode-mule-source-1.1.4", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "mule-source-1.1.4.json", "yml": "mule-source-1.1.4.yml", "html": "mule-source-1.1.4.html", "text": "mule-source-1.1.4.LICENSE"}, {"license_key": "mulle-kybernetik", "spdx_license_key": "LicenseRef-scancode-mulle-kybernetik", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mulle-kybernetik.json", "yml": "mulle-kybernetik.yml", "html": "mulle-kybernetik.html", "text": "mulle-kybernetik.LICENSE"}, {"license_key": "multics", "spdx_license_key": "Multics", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "multics.json", "yml": "multics.yml", "html": "multics.html", "text": "multics.LICENSE"}, {"license_key": "mup", "spdx_license_key": "Mup", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mup.json", "yml": "mup.yml", "html": "mup.html", "text": "mup.LICENSE"}, {"license_key": "musl-exception", "spdx_license_key": "LicenseRef-scancode-musl-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Permissive", "json": "musl-exception.json", "yml": "musl-exception.yml", "html": "musl-exception.html", "text": "musl-exception.LICENSE"}, {"license_key": "mvt-1.1", "spdx_license_key": "LicenseRef-scancode-mvt-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "mvt-1.1.json", "yml": "mvt-1.1.yml", "html": "mvt-1.1.html", "text": "mvt-1.1.LICENSE"}, {"license_key": "mx4j", "spdx_license_key": "LicenseRef-scancode-mx4j", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "mx4j.json", "yml": "mx4j.yml", "html": "mx4j.html", "text": "mx4j.LICENSE"}, {"license_key": "mysql-connector-odbc-exception-2.0", "spdx_license_key": "LicenseRef-scancode-mysql-con-odbc-exception-2.0", "other_spdx_license_keys": ["LicenseRef-scancode-mysql-connector-odbc-exception-2.0"], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "mysql-connector-odbc-exception-2.0.json", "yml": "mysql-connector-odbc-exception-2.0.yml", "html": "mysql-connector-odbc-exception-2.0.html", "text": "mysql-connector-odbc-exception-2.0.LICENSE"}, {"license_key": "mysql-floss-exception-2.0", "spdx_license_key": "LicenseRef-scancode-mysql-floss-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "mysql-floss-exception-2.0.json", "yml": "mysql-floss-exception-2.0.yml", "html": "mysql-floss-exception-2.0.html", "text": "mysql-floss-exception-2.0.LICENSE"}, {"license_key": "mysql-linking-exception-2018", "spdx_license_key": "LicenseRef-scancode-mysql-linking-exception-2018", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "mysql-linking-exception-2018.json", "yml": "mysql-linking-exception-2018.yml", "html": "mysql-linking-exception-2018.html", "text": "mysql-linking-exception-2018.LICENSE"}, {"license_key": "naist-2003", "spdx_license_key": "NAIST-2003", "other_spdx_license_keys": ["LicenseRef-scancode-naist-2003"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "naist-2003.json", "yml": "naist-2003.yml", "html": "naist-2003.html", "text": "naist-2003.LICENSE"}, {"license_key": "nant-exception-2.0-plus", "spdx_license_key": "LicenseRef-scancode-nant-exception-2.0-plus", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "nant-exception-2.0-plus.json", "yml": "nant-exception-2.0-plus.yml", "html": "nant-exception-2.0-plus.html", "text": "nant-exception-2.0-plus.LICENSE"}, {"license_key": "nasa-1.3", "spdx_license_key": "NASA-1.3", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "nasa-1.3.json", "yml": "nasa-1.3.yml", "html": "nasa-1.3.html", "text": "nasa-1.3.LICENSE"}, {"license_key": "naughter", "spdx_license_key": "LicenseRef-scancode-naughter", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "naughter.json", "yml": "naughter.yml", "html": "naughter.html", "text": "naughter.LICENSE"}, {"license_key": "naumen", "spdx_license_key": "Naumen", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "naumen.json", "yml": "naumen.yml", "html": "naumen.html", "text": "naumen.LICENSE"}, {"license_key": "nbpl-1.0", "spdx_license_key": "NBPL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "nbpl-1.0.json", "yml": "nbpl-1.0.yml", "html": "nbpl-1.0.html", "text": "nbpl-1.0.LICENSE"}, {"license_key": "ncbi", "spdx_license_key": "LicenseRef-scancode-ncbi", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "ncbi.json", "yml": "ncbi.yml", "html": "ncbi.html", "text": "ncbi.LICENSE"}, {"license_key": "ncgl-uk-2.0", "spdx_license_key": "NCGL-UK-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "ncgl-uk-2.0.json", "yml": "ncgl-uk-2.0.yml", "html": "ncgl-uk-2.0.html", "text": "ncgl-uk-2.0.LICENSE"}, {"license_key": "nero-eula", "spdx_license_key": "LicenseRef-scancode-nero-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "nero-eula.json", "yml": "nero-eula.yml", "html": "nero-eula.html", "text": "nero-eula.LICENSE"}, {"license_key": "net-snmp", "spdx_license_key": "Net-SNMP", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "net-snmp.json", "yml": "net-snmp.yml", "html": "net-snmp.html", "text": "net-snmp.LICENSE"}, {"license_key": "netapp-sdk-aug2020", "spdx_license_key": "LicenseRef-scancode-netapp-sdk-aug2020", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "netapp-sdk-aug2020.json", "yml": "netapp-sdk-aug2020.yml", "html": "netapp-sdk-aug2020.html", "text": "netapp-sdk-aug2020.LICENSE"}, {"license_key": "netcat", "spdx_license_key": "LicenseRef-scancode-netcat", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "netcat.json", "yml": "netcat.yml", "html": "netcat.html", "text": "netcat.LICENSE"}, {"license_key": "netcdf", "spdx_license_key": "NetCDF", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "netcdf.json", "yml": "netcdf.yml", "html": "netcdf.html", "text": "netcdf.LICENSE"}, {"license_key": "netcomponents", "spdx_license_key": "LicenseRef-scancode-netcomponents", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "netcomponents.json", "yml": "netcomponents.yml", "html": "netcomponents.html", "text": "netcomponents.LICENSE"}, {"license_key": "netron", "spdx_license_key": "LicenseRef-scancode-netron", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "netron.json", "yml": "netron.yml", "html": "netron.html", "text": "netron.LICENSE"}, {"license_key": "netronome-firmware", "spdx_license_key": "LicenseRef-scancode-netronome-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "netronome-firmware.json", "yml": "netronome-firmware.yml", "html": "netronome-firmware.html", "text": "netronome-firmware.LICENSE"}, {"license_key": "network-time-protocol", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "network-time-protocol.json", "yml": "network-time-protocol.yml", "html": "network-time-protocol.html", "text": "network-time-protocol.LICENSE"}, {"license_key": "new-relic", "spdx_license_key": "LicenseRef-scancode-new-relic", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "new-relic.json", "yml": "new-relic.yml", "html": "new-relic.html", "text": "new-relic.LICENSE"}, {"license_key": "newlib-historical", "spdx_license_key": "LicenseRef-scancode-newlib-historical", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "newlib-historical.json", "yml": "newlib-historical.yml", "html": "newlib-historical.html", "text": "newlib-historical.LICENSE"}, {"license_key": "newran", "spdx_license_key": "LicenseRef-scancode-newran", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "newran.json", "yml": "newran.yml", "html": "newran.html", "text": "newran.LICENSE"}, {"license_key": "newsletr", "spdx_license_key": "Newsletr", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "newsletr.json", "yml": "newsletr.yml", "html": "newsletr.html", "text": "newsletr.LICENSE"}, {"license_key": "newton-king-cla", "spdx_license_key": "LicenseRef-scancode-newton-king-cla", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Unstated License", "json": "newton-king-cla.json", "yml": "newton-king-cla.yml", "html": "newton-king-cla.html", "text": "newton-king-cla.LICENSE"}, {"license_key": "nexb-eula-saas-1.1.0", "spdx_license_key": "LicenseRef-scancode-nexb-eula-saas-1.1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "nexb-eula-saas-1.1.0.json", "yml": "nexb-eula-saas-1.1.0.yml", "html": "nexb-eula-saas-1.1.0.html", "text": "nexb-eula-saas-1.1.0.LICENSE"}, {"license_key": "nexb-ssla-1.1.0", "spdx_license_key": "LicenseRef-scancode-nexb-ssla-1.1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "nexb-ssla-1.1.0.json", "yml": "nexb-ssla-1.1.0.yml", "html": "nexb-ssla-1.1.0.html", "text": "nexb-ssla-1.1.0.LICENSE"}, {"license_key": "ngpl", "spdx_license_key": "NGPL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "ngpl.json", "yml": "ngpl.yml", "html": "ngpl.html", "text": "ngpl.LICENSE"}, {"license_key": "nice", "spdx_license_key": "LicenseRef-scancode-nice", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "nice.json", "yml": "nice.yml", "html": "nice.html", "text": "nice.LICENSE"}, {"license_key": "nicta-exception", "spdx_license_key": "LicenseRef-scancode-nicta-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "nicta-exception.json", "yml": "nicta-exception.yml", "html": "nicta-exception.html", "text": "nicta-exception.LICENSE"}, {"license_key": "nicta-psl", "spdx_license_key": "LicenseRef-scancode-nicta-psl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "nicta-psl.json", "yml": "nicta-psl.yml", "html": "nicta-psl.html", "text": "nicta-psl.LICENSE"}, {"license_key": "niels-ferguson", "spdx_license_key": "LicenseRef-scancode-niels-ferguson", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "niels-ferguson.json", "yml": "niels-ferguson.yml", "html": "niels-ferguson.html", "text": "niels-ferguson.LICENSE"}, {"license_key": "nilsson-historical", "spdx_license_key": "LicenseRef-scancode-nilsson-historical", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "nilsson-historical.json", "yml": "nilsson-historical.yml", "html": "nilsson-historical.html", "text": "nilsson-historical.LICENSE"}, {"license_key": "nist-pd", "spdx_license_key": "NIST-PD", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "nist-pd.json", "yml": "nist-pd.yml", "html": "nist-pd.html", "text": "nist-pd.LICENSE"}, {"license_key": "nist-pd-fallback", "spdx_license_key": "NIST-PD-fallback", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "nist-pd-fallback.json", "yml": "nist-pd-fallback.yml", "html": "nist-pd-fallback.html", "text": "nist-pd-fallback.LICENSE"}, {"license_key": "nist-srd", "spdx_license_key": "LicenseRef-scancode-nist-srd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "nist-srd.json", "yml": "nist-srd.yml", "html": "nist-srd.html", "text": "nist-srd.LICENSE"}, {"license_key": "nlod-1.0", "spdx_license_key": "NLOD-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "nlod-1.0.json", "yml": "nlod-1.0.yml", "html": "nlod-1.0.html", "text": "nlod-1.0.LICENSE"}, {"license_key": "nlod-2.0", "spdx_license_key": "NLOD-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "nlod-2.0.json", "yml": "nlod-2.0.yml", "html": "nlod-2.0.html", "text": "nlod-2.0.LICENSE"}, {"license_key": "nlpl", "spdx_license_key": "NLPL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "nlpl.json", "yml": "nlpl.yml", "html": "nlpl.html", "text": "nlpl.LICENSE"}, {"license_key": "no-license", "spdx_license_key": "LicenseRef-scancode-no-license", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Unstated License", "json": "no-license.json", "yml": "no-license.yml", "html": "no-license.html", "text": "no-license.LICENSE"}, {"license_key": "node-js", "spdx_license_key": "LicenseRef-scancode-node-js", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "node-js.json", "yml": "node-js.yml", "html": "node-js.html", "text": "node-js.LICENSE"}, {"license_key": "nokia-qt-exception-1.1", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "nokia-qt-exception-1.1.json", "yml": "nokia-qt-exception-1.1.yml", "html": "nokia-qt-exception-1.1.html", "text": "nokia-qt-exception-1.1.LICENSE"}, {"license_key": "nokos-1.0a", "spdx_license_key": "Nokia", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "nokos-1.0a.json", "yml": "nokos-1.0a.yml", "html": "nokos-1.0a.html", "text": "nokos-1.0a.LICENSE"}, {"license_key": "non-violent-4.0", "spdx_license_key": "LicenseRef-scancode-non-violent-4.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "non-violent-4.0.json", "yml": "non-violent-4.0.yml", "html": "non-violent-4.0.html", "text": "non-violent-4.0.LICENSE"}, {"license_key": "nonexclusive", "spdx_license_key": "LicenseRef-scancode-nonexclusive", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "nonexclusive.json", "yml": "nonexclusive.yml", "html": "nonexclusive.html", "text": "nonexclusive.LICENSE"}, {"license_key": "nortel-dasa", "spdx_license_key": "LicenseRef-scancode-nortel-dasa", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "nortel-dasa.json", "yml": "nortel-dasa.yml", "html": "nortel-dasa.html", "text": "nortel-dasa.LICENSE"}, {"license_key": "northwoods-sla-2021", "spdx_license_key": "LicenseRef-scancode-northwoods-sla-2021", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "northwoods-sla-2021.json", "yml": "northwoods-sla-2021.yml", "html": "northwoods-sla-2021.html", "text": "northwoods-sla-2021.LICENSE"}, {"license_key": "nosl-1.0", "spdx_license_key": "NOSL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "nosl-1.0.json", "yml": "nosl-1.0.yml", "html": "nosl-1.0.html", "text": "nosl-1.0.LICENSE"}, {"license_key": "nosl-3.0", "spdx_license_key": "NPOSL-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "nosl-3.0.json", "yml": "nosl-3.0.yml", "html": "nosl-3.0.html", "text": "nosl-3.0.LICENSE"}, {"license_key": "notre-dame", "spdx_license_key": "LicenseRef-scancode-notre-dame", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "notre-dame.json", "yml": "notre-dame.yml", "html": "notre-dame.html", "text": "notre-dame.LICENSE"}, {"license_key": "noweb", "spdx_license_key": "Noweb", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "noweb.json", "yml": "noweb.yml", "html": "noweb.html", "text": "noweb.LICENSE"}, {"license_key": "npl-1.0", "spdx_license_key": "NPL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "npl-1.0.json", "yml": "npl-1.0.yml", "html": "npl-1.0.html", "text": "npl-1.0.LICENSE"}, {"license_key": "npl-1.1", "spdx_license_key": "NPL-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "npl-1.1.json", "yml": "npl-1.1.yml", "html": "npl-1.1.html", "text": "npl-1.1.LICENSE"}, {"license_key": "npsl-exception-0.93", "spdx_license_key": "LicenseRef-scancode-npsl-exception-0.93", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "npsl-exception-0.93.json", "yml": "npsl-exception-0.93.yml", "html": "npsl-exception-0.93.html", "text": "npsl-exception-0.93.LICENSE"}, {"license_key": "nrl", "spdx_license_key": "NRL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "nrl.json", "yml": "nrl.yml", "html": "nrl.html", "text": "nrl.LICENSE"}, {"license_key": "nrl-permission", "spdx_license_key": "LicenseRef-scancode-nrl-permission", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "nrl-permission.json", "yml": "nrl-permission.yml", "html": "nrl-permission.html", "text": "nrl-permission.LICENSE"}, {"license_key": "ntlm", "spdx_license_key": "LicenseRef-scancode-ntlm", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ntlm.json", "yml": "ntlm.yml", "html": "ntlm.html", "text": "ntlm.LICENSE"}, {"license_key": "ntp-0", "spdx_license_key": "NTP-0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ntp-0.json", "yml": "ntp-0.yml", "html": "ntp-0.html", "text": "ntp-0.LICENSE"}, {"license_key": "ntpl", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "ntpl.json", "yml": "ntpl.yml", "html": "ntpl.html", "text": "ntpl.LICENSE"}, {"license_key": "ntpl-origin", "spdx_license_key": "LicenseRef-scancode-ntpl-origin", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ntpl-origin.json", "yml": "ntpl-origin.yml", "html": "ntpl-origin.html", "text": "ntpl-origin.LICENSE"}, {"license_key": "numerical-recipes-notice", "spdx_license_key": "LicenseRef-scancode-numerical-recipes-notice", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "numerical-recipes-notice.json", "yml": "numerical-recipes-notice.yml", "html": "numerical-recipes-notice.html", "text": "numerical-recipes-notice.LICENSE"}, {"license_key": "nunit-v2", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "nunit-v2.json", "yml": "nunit-v2.yml", "html": "nunit-v2.html", "text": "nunit-v2.LICENSE"}, {"license_key": "nvidia", "spdx_license_key": "LicenseRef-scancode-nvidia", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "nvidia.json", "yml": "nvidia.yml", "html": "nvidia.html", "text": "nvidia.LICENSE"}, {"license_key": "nvidia-2002", "spdx_license_key": "LicenseRef-scancode-nvidia-2002", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "nvidia-2002.json", "yml": "nvidia-2002.yml", "html": "nvidia-2002.html", "text": "nvidia-2002.LICENSE"}, {"license_key": "nvidia-apex-sdk-eula-2011", "spdx_license_key": "LicenseRef-scancode-nvidia-apex-sdk-eula-2011", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "nvidia-apex-sdk-eula-2011.json", "yml": "nvidia-apex-sdk-eula-2011.yml", "html": "nvidia-apex-sdk-eula-2011.html", "text": "nvidia-apex-sdk-eula-2011.LICENSE"}, {"license_key": "nvidia-cuda-supplement-2020", "spdx_license_key": "LicenseRef-scancode-nvidia-cuda-supplement-2020", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "nvidia-cuda-supplement-2020.json", "yml": "nvidia-cuda-supplement-2020.yml", "html": "nvidia-cuda-supplement-2020.html", "text": "nvidia-cuda-supplement-2020.LICENSE"}, {"license_key": "nvidia-gov", "spdx_license_key": "LicenseRef-scancode-nvidia-gov", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "nvidia-gov.json", "yml": "nvidia-gov.yml", "html": "nvidia-gov.html", "text": "nvidia-gov.LICENSE"}, {"license_key": "nvidia-isaac-eula-2019.1", "spdx_license_key": "LicenseRef-scancode-nvidia-isaac-eula-2019.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "nvidia-isaac-eula-2019.1.json", "yml": "nvidia-isaac-eula-2019.1.yml", "html": "nvidia-isaac-eula-2019.1.html", "text": "nvidia-isaac-eula-2019.1.LICENSE"}, {"license_key": "nvidia-ngx-eula-2019", "spdx_license_key": "LicenseRef-scancode-nvidia-ngx-eula-2019", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "nvidia-ngx-eula-2019.json", "yml": "nvidia-ngx-eula-2019.yml", "html": "nvidia-ngx-eula-2019.html", "text": "nvidia-ngx-eula-2019.LICENSE"}, {"license_key": "nvidia-sdk-eula-v0.11", "spdx_license_key": "LicenseRef-scancode-nvidia-sdk-eula-v0.11", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "nvidia-sdk-eula-v0.11.json", "yml": "nvidia-sdk-eula-v0.11.yml", "html": "nvidia-sdk-eula-v0.11.html", "text": "nvidia-sdk-eula-v0.11.LICENSE"}, {"license_key": "nvidia-video-codec-agreement", "spdx_license_key": "LicenseRef-scancode-nvidia-video-codec-agreement", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "nvidia-video-codec-agreement.json", "yml": "nvidia-video-codec-agreement.yml", "html": "nvidia-video-codec-agreement.html", "text": "nvidia-video-codec-agreement.LICENSE"}, {"license_key": "nwhm", "spdx_license_key": "LicenseRef-scancode-nwhm", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "nwhm.json", "yml": "nwhm.yml", "html": "nwhm.html", "text": "nwhm.LICENSE"}, {"license_key": "nxp-firmware-patent", "spdx_license_key": "LicenseRef-scancode-nxp-firmware-patent", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "nxp-firmware-patent.json", "yml": "nxp-firmware-patent.yml", "html": "nxp-firmware-patent.html", "text": "nxp-firmware-patent.LICENSE"}, {"license_key": "nxp-linux-firmware", "spdx_license_key": "LicenseRef-scancode-nxp-linux-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "nxp-linux-firmware.json", "yml": "nxp-linux-firmware.yml", "html": "nxp-linux-firmware.html", "text": "nxp-linux-firmware.LICENSE"}, {"license_key": "nxp-mc-firmware", "spdx_license_key": "LicenseRef-scancode-nxp-mc-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "nxp-mc-firmware.json", "yml": "nxp-mc-firmware.yml", "html": "nxp-mc-firmware.html", "text": "nxp-mc-firmware.LICENSE"}, {"license_key": "nxp-microcontroller-proprietary", "spdx_license_key": "LicenseRef-scancode-nxp-microctl-proprietary", "other_spdx_license_keys": ["LicenseRef-scancode-nxp-microcontroller-proprietary"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "nxp-microcontroller-proprietary.json", "yml": "nxp-microcontroller-proprietary.yml", "html": "nxp-microcontroller-proprietary.html", "text": "nxp-microcontroller-proprietary.LICENSE"}, {"license_key": "nxp-warranty-disclaimer", "spdx_license_key": "LicenseRef-scancode-nxp-warranty-disclaimer", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "nxp-warranty-disclaimer.json", "yml": "nxp-warranty-disclaimer.yml", "html": "nxp-warranty-disclaimer.html", "text": "nxp-warranty-disclaimer.LICENSE"}, {"license_key": "nysl-0.9982", "spdx_license_key": "LicenseRef-scancode-nysl-0.9982", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "nysl-0.9982.json", "yml": "nysl-0.9982.yml", "html": "nysl-0.9982.html", "text": "nysl-0.9982.LICENSE"}, {"license_key": "nysl-0.9982-jp", "spdx_license_key": "LicenseRef-scancode-nysl-0.9982-jp", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "nysl-0.9982-jp.json", "yml": "nysl-0.9982-jp.yml", "html": "nysl-0.9982-jp.html", "text": "nysl-0.9982-jp.LICENSE"}, {"license_key": "o-uda-1.0", "spdx_license_key": "O-UDA-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "o-uda-1.0.json", "yml": "o-uda-1.0.yml", "html": "o-uda-1.0.html", "text": "o-uda-1.0.LICENSE"}, {"license_key": "o-young-jong", "spdx_license_key": "LicenseRef-scancode-o-young-jong", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "o-young-jong.json", "yml": "o-young-jong.yml", "html": "o-young-jong.html", "text": "o-young-jong.LICENSE"}, {"license_key": "oasis-ipr-2013", "spdx_license_key": "LicenseRef-scancode-oasis-ipr-2013", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "oasis-ipr-2013.json", "yml": "oasis-ipr-2013.yml", "html": "oasis-ipr-2013.html", "text": "oasis-ipr-2013.LICENSE"}, {"license_key": "oasis-ipr-policy-2014", "spdx_license_key": "LicenseRef-scancode-oasis-ipr-policy-2014", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "oasis-ipr-policy-2014.json", "yml": "oasis-ipr-policy-2014.yml", "html": "oasis-ipr-policy-2014.html", "text": "oasis-ipr-policy-2014.LICENSE"}, {"license_key": "oasis-ws-security-spec", "spdx_license_key": "LicenseRef-scancode-oasis-ws-security-spec", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "oasis-ws-security-spec.json", "yml": "oasis-ws-security-spec.yml", "html": "oasis-ws-security-spec.html", "text": "oasis-ws-security-spec.LICENSE"}, {"license_key": "ocaml-lgpl-linking-exception", "spdx_license_key": "OCaml-LGPL-linking-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "ocaml-lgpl-linking-exception.json", "yml": "ocaml-lgpl-linking-exception.yml", "html": "ocaml-lgpl-linking-exception.html", "text": "ocaml-lgpl-linking-exception.LICENSE"}, {"license_key": "ocb-non-military-2013", "spdx_license_key": "LicenseRef-scancode-ocb-non-military-2013", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ocb-non-military-2013.json", "yml": "ocb-non-military-2013.yml", "html": "ocb-non-military-2013.html", "text": "ocb-non-military-2013.LICENSE"}, {"license_key": "ocb-open-source-2013", "spdx_license_key": "LicenseRef-scancode-ocb-open-source-2013", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ocb-open-source-2013.json", "yml": "ocb-open-source-2013.yml", "html": "ocb-open-source-2013.html", "text": "ocb-open-source-2013.LICENSE"}, {"license_key": "ocb-patent-openssl-2013", "spdx_license_key": "LicenseRef-scancode-ocb-patent-openssl-2013", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ocb-patent-openssl-2013.json", "yml": "ocb-patent-openssl-2013.yml", "html": "ocb-patent-openssl-2013.html", "text": "ocb-patent-openssl-2013.LICENSE"}, {"license_key": "occt-exception-1.0", "spdx_license_key": "OCCT-exception-1.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "occt-exception-1.0.json", "yml": "occt-exception-1.0.yml", "html": "occt-exception-1.0.html", "text": "occt-exception-1.0.LICENSE"}, {"license_key": "occt-pl", "spdx_license_key": "OCCT-PL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "occt-pl.json", "yml": "occt-pl.yml", "html": "occt-pl.html", "text": "occt-pl.LICENSE"}, {"license_key": "oclc-1.0", "spdx_license_key": "LicenseRef-scancode-oclc-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "oclc-1.0.json", "yml": "oclc-1.0.yml", "html": "oclc-1.0.html", "text": "oclc-1.0.LICENSE"}, {"license_key": "oclc-2.0", "spdx_license_key": "OCLC-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "oclc-2.0.json", "yml": "oclc-2.0.yml", "html": "oclc-2.0.html", "text": "oclc-2.0.LICENSE"}, {"license_key": "ocsl-1.0", "spdx_license_key": "LicenseRef-scancode-ocsl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "ocsl-1.0.json", "yml": "ocsl-1.0.yml", "html": "ocsl-1.0.html", "text": "ocsl-1.0.LICENSE"}, {"license_key": "oculus-sdk", "spdx_license_key": "LicenseRef-scancode-oculus-sdk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "oculus-sdk.json", "yml": "oculus-sdk.yml", "html": "oculus-sdk.html", "text": "oculus-sdk.LICENSE"}, {"license_key": "oculus-sdk-2020", "spdx_license_key": "LicenseRef-scancode-oculus-sdk-2020", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "oculus-sdk-2020.json", "yml": "oculus-sdk-2020.yml", "html": "oculus-sdk-2020.html", "text": "oculus-sdk-2020.LICENSE"}, {"license_key": "oculus-sdk-3.5", "spdx_license_key": "LicenseRef-scancode-oculus-sdk-3.5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "oculus-sdk-3.5.json", "yml": "oculus-sdk-3.5.yml", "html": "oculus-sdk-3.5.html", "text": "oculus-sdk-3.5.LICENSE"}, {"license_key": "odbl-1.0", "spdx_license_key": "ODbL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "odbl-1.0.json", "yml": "odbl-1.0.yml", "html": "odbl-1.0.html", "text": "odbl-1.0.LICENSE"}, {"license_key": "odc-1.0", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Copyleft", "json": "odc-1.0.json", "yml": "odc-1.0.yml", "html": "odc-1.0.html", "text": "odc-1.0.LICENSE"}, {"license_key": "odc-by-1.0", "spdx_license_key": "ODC-By-1.0", "other_spdx_license_keys": ["LicenseRef-scancode-odc-1.0"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "odc-by-1.0.json", "yml": "odc-by-1.0.yml", "html": "odc-by-1.0.html", "text": "odc-by-1.0.LICENSE"}, {"license_key": "odl", "spdx_license_key": "LicenseRef-scancode-odl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "odl.json", "yml": "odl.yml", "html": "odl.html", "text": "odl.LICENSE"}, {"license_key": "odmg", "spdx_license_key": "LicenseRef-scancode-odmg", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "odmg.json", "yml": "odmg.yml", "html": "odmg.html", "text": "odmg.LICENSE"}, {"license_key": "ofl-1.0", "spdx_license_key": "OFL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ofl-1.0.json", "yml": "ofl-1.0.yml", "html": "ofl-1.0.html", "text": "ofl-1.0.LICENSE"}, {"license_key": "ofl-1.0-no-rfn", "spdx_license_key": "OFL-1.0-no-RFN", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ofl-1.0-no-rfn.json", "yml": "ofl-1.0-no-rfn.yml", "html": "ofl-1.0-no-rfn.html", "text": "ofl-1.0-no-rfn.LICENSE"}, {"license_key": "ofl-1.0-rfn", "spdx_license_key": "OFL-1.0-RFN", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ofl-1.0-rfn.json", "yml": "ofl-1.0-rfn.yml", "html": "ofl-1.0-rfn.html", "text": "ofl-1.0-rfn.LICENSE"}, {"license_key": "ofl-1.1", "spdx_license_key": "OFL-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ofl-1.1.json", "yml": "ofl-1.1.yml", "html": "ofl-1.1.html", "text": "ofl-1.1.LICENSE"}, {"license_key": "ofl-1.1-no-rfn", "spdx_license_key": "OFL-1.1-no-RFN", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ofl-1.1-no-rfn.json", "yml": "ofl-1.1-no-rfn.yml", "html": "ofl-1.1-no-rfn.html", "text": "ofl-1.1-no-rfn.LICENSE"}, {"license_key": "ofl-1.1-rfn", "spdx_license_key": "OFL-1.1-RFN", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ofl-1.1-rfn.json", "yml": "ofl-1.1-rfn.yml", "html": "ofl-1.1-rfn.html", "text": "ofl-1.1-rfn.LICENSE"}, {"license_key": "ogc", "spdx_license_key": "LicenseRef-scancode-ogc", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ogc.json", "yml": "ogc.yml", "html": "ogc.html", "text": "ogc.LICENSE"}, {"license_key": "ogc-1.0", "spdx_license_key": "OGC-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ogc-1.0.json", "yml": "ogc-1.0.yml", "html": "ogc-1.0.html", "text": "ogc-1.0.LICENSE"}, {"license_key": "ogc-2006", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "ogc-2006.json", "yml": "ogc-2006.yml", "html": "ogc-2006.html", "text": "ogc-2006.LICENSE"}, {"license_key": "ogc-document-2020", "spdx_license_key": "LicenseRef-scancode-ogc-document-2020", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ogc-document-2020.json", "yml": "ogc-document-2020.yml", "html": "ogc-document-2020.html", "text": "ogc-document-2020.LICENSE"}, {"license_key": "ogdl-taiwan-1.0", "spdx_license_key": "OGDL-Taiwan-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ogdl-taiwan-1.0.json", "yml": "ogdl-taiwan-1.0.yml", "html": "ogdl-taiwan-1.0.html", "text": "ogdl-taiwan-1.0.LICENSE"}, {"license_key": "ogl-1.0a", "spdx_license_key": "LicenseRef-scancode-ogl-1.0a", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ogl-1.0a.json", "yml": "ogl-1.0a.yml", "html": "ogl-1.0a.html", "text": "ogl-1.0a.LICENSE"}, {"license_key": "ogl-canada-2.0-fr", "spdx_license_key": "LicenseRef-scancode-ogl-canada-2.0-fr", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ogl-canada-2.0-fr.json", "yml": "ogl-canada-2.0-fr.yml", "html": "ogl-canada-2.0-fr.html", "text": "ogl-canada-2.0-fr.LICENSE"}, {"license_key": "ogl-uk-1.0", "spdx_license_key": "OGL-UK-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ogl-uk-1.0.json", "yml": "ogl-uk-1.0.yml", "html": "ogl-uk-1.0.html", "text": "ogl-uk-1.0.LICENSE"}, {"license_key": "ogl-uk-2.0", "spdx_license_key": "OGL-UK-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ogl-uk-2.0.json", "yml": "ogl-uk-2.0.yml", "html": "ogl-uk-2.0.html", "text": "ogl-uk-2.0.LICENSE"}, {"license_key": "ogl-uk-3.0", "spdx_license_key": "OGL-UK-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ogl-uk-3.0.json", "yml": "ogl-uk-3.0.yml", "html": "ogl-uk-3.0.html", "text": "ogl-uk-3.0.LICENSE"}, {"license_key": "ogl-wpd-3.0", "spdx_license_key": "LicenseRef-scancode-ogl-wpd-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ogl-wpd-3.0.json", "yml": "ogl-wpd-3.0.yml", "html": "ogl-wpd-3.0.html", "text": "ogl-wpd-3.0.LICENSE"}, {"license_key": "ohdl-1.0", "spdx_license_key": "LicenseRef-scancode-ohdl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "ohdl-1.0.json", "yml": "ohdl-1.0.yml", "html": "ohdl-1.0.html", "text": "ohdl-1.0.LICENSE"}, {"license_key": "okl", "spdx_license_key": "LicenseRef-scancode-okl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "okl.json", "yml": "okl.yml", "html": "okl.html", "text": "okl.LICENSE"}, {"license_key": "open-diameter", "spdx_license_key": "LicenseRef-scancode-open-diameter", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "open-diameter.json", "yml": "open-diameter.yml", "html": "open-diameter.html", "text": "open-diameter.LICENSE"}, {"license_key": "open-group", "spdx_license_key": "LicenseRef-scancode-open-group", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "open-group.json", "yml": "open-group.yml", "html": "open-group.html", "text": "open-group.LICENSE"}, {"license_key": "open-public", "spdx_license_key": "OPL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "open-public.json", "yml": "open-public.yml", "html": "open-public.html", "text": "open-public.LICENSE"}, {"license_key": "openbd-exception-3.0", "spdx_license_key": "LicenseRef-scancode-openbd-exception-3.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "openbd-exception-3.0.json", "yml": "openbd-exception-3.0.yml", "html": "openbd-exception-3.0.html", "text": "openbd-exception-3.0.LICENSE"}, {"license_key": "opengroup", "spdx_license_key": "OGTSL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "opengroup.json", "yml": "opengroup.yml", "html": "opengroup.html", "text": "opengroup.LICENSE"}, {"license_key": "openi-pl-1.0", "spdx_license_key": "LicenseRef-scancode-openi-pl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "openi-pl-1.0.json", "yml": "openi-pl-1.0.yml", "html": "openi-pl-1.0.html", "text": "openi-pl-1.0.LICENSE"}, {"license_key": "openjdk-assembly-exception-1.0", "spdx_license_key": "OpenJDK-assembly-exception-1.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "openjdk-assembly-exception-1.0.json", "yml": "openjdk-assembly-exception-1.0.yml", "html": "openjdk-assembly-exception-1.0.html", "text": "openjdk-assembly-exception-1.0.LICENSE"}, {"license_key": "openjdk-classpath-exception-2.0", "spdx_license_key": "LicenseRef-scancode-openjdk-classpath-exception2.0", "other_spdx_license_keys": ["LicenseRef-scancode-openjdk-classpath-exception-2.0"], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "openjdk-classpath-exception-2.0.json", "yml": "openjdk-classpath-exception-2.0.yml", "html": "openjdk-classpath-exception-2.0.html", "text": "openjdk-classpath-exception-2.0.LICENSE"}, {"license_key": "openjdk-exception", "spdx_license_key": "LicenseRef-scancode-openjdk-exception", "other_spdx_license_keys": ["Assembly-exception"], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "openjdk-exception.json", "yml": "openjdk-exception.yml", "html": "openjdk-exception.html", "text": "openjdk-exception.LICENSE"}, {"license_key": "openldap-1.1", "spdx_license_key": "OLDAP-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "openldap-1.1.json", "yml": "openldap-1.1.yml", "html": "openldap-1.1.html", "text": "openldap-1.1.LICENSE"}, {"license_key": "openldap-1.2", "spdx_license_key": "OLDAP-1.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "openldap-1.2.json", "yml": "openldap-1.2.yml", "html": "openldap-1.2.html", "text": "openldap-1.2.LICENSE"}, {"license_key": "openldap-1.3", "spdx_license_key": "OLDAP-1.3", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "openldap-1.3.json", "yml": "openldap-1.3.yml", "html": "openldap-1.3.html", "text": "openldap-1.3.LICENSE"}, {"license_key": "openldap-1.4", "spdx_license_key": "OLDAP-1.4", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "openldap-1.4.json", "yml": "openldap-1.4.yml", "html": "openldap-1.4.html", "text": "openldap-1.4.LICENSE"}, {"license_key": "openldap-2.0", "spdx_license_key": "OLDAP-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "openldap-2.0.json", "yml": "openldap-2.0.yml", "html": "openldap-2.0.html", "text": "openldap-2.0.LICENSE"}, {"license_key": "openldap-2.0.1", "spdx_license_key": "OLDAP-2.0.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "openldap-2.0.1.json", "yml": "openldap-2.0.1.yml", "html": "openldap-2.0.1.html", "text": "openldap-2.0.1.LICENSE"}, {"license_key": "openldap-2.1", "spdx_license_key": "OLDAP-2.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "openldap-2.1.json", "yml": "openldap-2.1.yml", "html": "openldap-2.1.html", "text": "openldap-2.1.LICENSE"}, {"license_key": "openldap-2.2", "spdx_license_key": "OLDAP-2.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "openldap-2.2.json", "yml": "openldap-2.2.yml", "html": "openldap-2.2.html", "text": "openldap-2.2.LICENSE"}, {"license_key": "openldap-2.2.1", "spdx_license_key": "OLDAP-2.2.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "openldap-2.2.1.json", "yml": "openldap-2.2.1.yml", "html": "openldap-2.2.1.html", "text": "openldap-2.2.1.LICENSE"}, {"license_key": "openldap-2.2.2", "spdx_license_key": "OLDAP-2.2.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "openldap-2.2.2.json", "yml": "openldap-2.2.2.yml", "html": "openldap-2.2.2.html", "text": "openldap-2.2.2.LICENSE"}, {"license_key": "openldap-2.3", "spdx_license_key": "OLDAP-2.3", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "openldap-2.3.json", "yml": "openldap-2.3.yml", "html": "openldap-2.3.html", "text": "openldap-2.3.LICENSE"}, {"license_key": "openldap-2.4", "spdx_license_key": "OLDAP-2.4", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "openldap-2.4.json", "yml": "openldap-2.4.yml", "html": "openldap-2.4.html", "text": "openldap-2.4.LICENSE"}, {"license_key": "openldap-2.5", "spdx_license_key": "OLDAP-2.5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "openldap-2.5.json", "yml": "openldap-2.5.yml", "html": "openldap-2.5.html", "text": "openldap-2.5.LICENSE"}, {"license_key": "openldap-2.6", "spdx_license_key": "OLDAP-2.6", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "openldap-2.6.json", "yml": "openldap-2.6.yml", "html": "openldap-2.6.html", "text": "openldap-2.6.LICENSE"}, {"license_key": "openldap-2.7", "spdx_license_key": "OLDAP-2.7", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "openldap-2.7.json", "yml": "openldap-2.7.yml", "html": "openldap-2.7.html", "text": "openldap-2.7.LICENSE"}, {"license_key": "openldap-2.8", "spdx_license_key": "OLDAP-2.8", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "openldap-2.8.json", "yml": "openldap-2.8.yml", "html": "openldap-2.8.html", "text": "openldap-2.8.LICENSE"}, {"license_key": "openmap", "spdx_license_key": "LicenseRef-scancode-openmap", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "openmap.json", "yml": "openmap.yml", "html": "openmap.html", "text": "openmap.LICENSE"}, {"license_key": "openmarket-fastcgi", "spdx_license_key": "LicenseRef-scancode-openmarket-fastcgi", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "openmarket-fastcgi.json", "yml": "openmarket-fastcgi.yml", "html": "openmarket-fastcgi.html", "text": "openmarket-fastcgi.LICENSE"}, {"license_key": "openmotif-exception-2.0-plus", "spdx_license_key": "LicenseRef-scancode-openmotif-exception-2.0-plus", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "openmotif-exception-2.0-plus.json", "yml": "openmotif-exception-2.0-plus.yml", "html": "openmotif-exception-2.0-plus.html", "text": "openmotif-exception-2.0-plus.LICENSE"}, {"license_key": "opennetcf-shared-source", "spdx_license_key": "LicenseRef-scancode-opennetcf-shared-source", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "opennetcf-shared-source.json", "yml": "opennetcf-shared-source.yml", "html": "opennetcf-shared-source.html", "text": "opennetcf-shared-source.LICENSE"}, {"license_key": "openorb-1.0", "spdx_license_key": "LicenseRef-scancode-openorb-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "openorb-1.0.json", "yml": "openorb-1.0.yml", "html": "openorb-1.0.html", "text": "openorb-1.0.LICENSE"}, {"license_key": "openpbs-2.3", "spdx_license_key": "LicenseRef-scancode-openpbs-2.3", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "openpbs-2.3.json", "yml": "openpbs-2.3.yml", "html": "openpbs-2.3.html", "text": "openpbs-2.3.LICENSE"}, {"license_key": "openpub", "spdx_license_key": "OPUBL-1.0", "other_spdx_license_keys": ["LicenseRef-scancode-openpub"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "openpub.json", "yml": "openpub.yml", "html": "openpub.html", "text": "openpub.LICENSE"}, {"license_key": "opensaml-1.0", "spdx_license_key": "LicenseRef-scancode-opensaml-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "opensaml-1.0.json", "yml": "opensaml-1.0.yml", "html": "opensaml-1.0.html", "text": "opensaml-1.0.LICENSE"}, {"license_key": "opensc-openssl-openpace-exception-gpl", "spdx_license_key": "LicenseRef-scancode-openpace-exception-gpl", "other_spdx_license_keys": ["LicenseRef-scancode-opensc-openssl-openpace-exception-gpl"], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "opensc-openssl-openpace-exception-gpl.json", "yml": "opensc-openssl-openpace-exception-gpl.yml", "html": "opensc-openssl-openpace-exception-gpl.html", "text": "opensc-openssl-openpace-exception-gpl.LICENSE"}, {"license_key": "openssh", "spdx_license_key": "SSH-OpenSSH", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "openssh.json", "yml": "openssh.yml", "html": "openssh.html", "text": "openssh.LICENSE"}, {"license_key": "openssl", "spdx_license_key": "LicenseRef-scancode-openssl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "openssl.json", "yml": "openssl.yml", "html": "openssl.html", "text": "openssl.LICENSE"}, {"license_key": "openssl-exception-agpl-3.0", "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl-3.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "openssl-exception-agpl-3.0.json", "yml": "openssl-exception-agpl-3.0.yml", "html": "openssl-exception-agpl-3.0.html", "text": "openssl-exception-agpl-3.0.LICENSE"}, {"license_key": "openssl-exception-agpl-3.0-monit", "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl3.0monit", "other_spdx_license_keys": ["LicenseRef-scancode-openssl-exception-agpl-3.0-monit"], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "openssl-exception-agpl-3.0-monit.json", "yml": "openssl-exception-agpl-3.0-monit.yml", "html": "openssl-exception-agpl-3.0-monit.html", "text": "openssl-exception-agpl-3.0-monit.LICENSE"}, {"license_key": "openssl-exception-agpl-3.0-plus", "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl3.0plus", "other_spdx_license_keys": ["LicenseRef-scancode-openssl-exception-agpl-3.0-plus"], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "openssl-exception-agpl-3.0-plus.json", "yml": "openssl-exception-agpl-3.0-plus.yml", "html": "openssl-exception-agpl-3.0-plus.html", "text": "openssl-exception-agpl-3.0-plus.LICENSE"}, {"license_key": "openssl-exception-gpl-2.0", "spdx_license_key": "LicenseRef-scancode-openssl-exception-gpl-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "openssl-exception-gpl-2.0.json", "yml": "openssl-exception-gpl-2.0.yml", "html": "openssl-exception-gpl-2.0.html", "text": "openssl-exception-gpl-2.0.LICENSE"}, {"license_key": "openssl-exception-gpl-2.0-plus", "spdx_license_key": "LicenseRef-scancode-openssl-exception-gpl-2.0-plus", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "openssl-exception-gpl-2.0-plus.json", "yml": "openssl-exception-gpl-2.0-plus.yml", "html": "openssl-exception-gpl-2.0-plus.html", "text": "openssl-exception-gpl-2.0-plus.LICENSE"}, {"license_key": "openssl-exception-gpl-3.0-plus", "spdx_license_key": "LicenseRef-scancode-openssl-exception-gpl-3.0-plus", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "openssl-exception-gpl-3.0-plus.json", "yml": "openssl-exception-gpl-3.0-plus.yml", "html": "openssl-exception-gpl-3.0-plus.html", "text": "openssl-exception-gpl-3.0-plus.LICENSE"}, {"license_key": "openssl-exception-lgpl", "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "openssl-exception-lgpl.json", "yml": "openssl-exception-lgpl.yml", "html": "openssl-exception-lgpl.html", "text": "openssl-exception-lgpl.LICENSE"}, {"license_key": "openssl-exception-lgpl-2.0-plus", "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl2.0plus", "other_spdx_license_keys": ["LicenseRef-scancode-openssl-exception-lgpl-2.0-plus"], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "openssl-exception-lgpl-2.0-plus.json", "yml": "openssl-exception-lgpl-2.0-plus.yml", "html": "openssl-exception-lgpl-2.0-plus.html", "text": "openssl-exception-lgpl-2.0-plus.LICENSE"}, {"license_key": "openssl-exception-lgpl-3.0-plus", "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl3.0plus", "other_spdx_license_keys": ["LicenseRef-scancode-openssl-exception-lgpl-3.0-plus"], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "openssl-exception-lgpl-3.0-plus.json", "yml": "openssl-exception-lgpl-3.0-plus.yml", "html": "openssl-exception-lgpl-3.0-plus.html", "text": "openssl-exception-lgpl-3.0-plus.LICENSE"}, {"license_key": "openssl-exception-mongodb-sspl", "spdx_license_key": "LicenseRef-scancode-openssl-exception-mongodb-sspl", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "openssl-exception-mongodb-sspl.json", "yml": "openssl-exception-mongodb-sspl.yml", "html": "openssl-exception-mongodb-sspl.html", "text": "openssl-exception-mongodb-sspl.LICENSE"}, {"license_key": "openssl-nokia-psk-contribution", "spdx_license_key": "LicenseRef-scancode-openssl-nokia-psk-contribution", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Patent License", "json": "openssl-nokia-psk-contribution.json", "yml": "openssl-nokia-psk-contribution.yml", "html": "openssl-nokia-psk-contribution.html", "text": "openssl-nokia-psk-contribution.LICENSE"}, {"license_key": "openssl-ssleay", "spdx_license_key": "OpenSSL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "openssl-ssleay.json", "yml": "openssl-ssleay.yml", "html": "openssl-ssleay.html", "text": "openssl-ssleay.LICENSE"}, {"license_key": "openvpn-as-eula", "spdx_license_key": "LicenseRef-scancode-openvpn-as-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "openvpn-as-eula.json", "yml": "openvpn-as-eula.yml", "html": "openvpn-as-eula.html", "text": "openvpn-as-eula.LICENSE"}, {"license_key": "openvpn-openssl-exception", "spdx_license_key": "openvpn-openssl-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "openvpn-openssl-exception.json", "yml": "openvpn-openssl-exception.yml", "html": "openvpn-openssl-exception.html", "text": "openvpn-openssl-exception.LICENSE"}, {"license_key": "opera-eula-2018", "spdx_license_key": "LicenseRef-scancode-opera-eula-2018", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "opera-eula-2018.json", "yml": "opera-eula-2018.yml", "html": "opera-eula-2018.html", "text": "opera-eula-2018.LICENSE"}, {"license_key": "opera-eula-eea-2018", "spdx_license_key": "LicenseRef-scancode-opera-eula-eea-2018", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "opera-eula-eea-2018.json", "yml": "opera-eula-eea-2018.yml", "html": "opera-eula-eea-2018.html", "text": "opera-eula-eea-2018.LICENSE"}, {"license_key": "opera-widget-1.0", "spdx_license_key": "LicenseRef-scancode-opera-widget-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "opera-widget-1.0.json", "yml": "opera-widget-1.0.yml", "html": "opera-widget-1.0.html", "text": "opera-widget-1.0.LICENSE"}, {"license_key": "opl-1.0", "spdx_license_key": "LicenseRef-scancode-opl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "opl-1.0.json", "yml": "opl-1.0.yml", "html": "opl-1.0.html", "text": "opl-1.0.LICENSE"}, {"license_key": "opml-1.0", "spdx_license_key": "LicenseRef-scancode-opml-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "opml-1.0.json", "yml": "opml-1.0.yml", "html": "opml-1.0.html", "text": "opml-1.0.LICENSE"}, {"license_key": "opnl-1.0", "spdx_license_key": "LicenseRef-scancode-opnl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "opnl-1.0.json", "yml": "opnl-1.0.yml", "html": "opnl-1.0.html", "text": "opnl-1.0.LICENSE"}, {"license_key": "opnl-2.0", "spdx_license_key": "LicenseRef-scancode-opnl-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "opnl-2.0.json", "yml": "opnl-2.0.yml", "html": "opnl-2.0.html", "text": "opnl-2.0.LICENSE"}, {"license_key": "oracle-bcl-javaee", "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javaee", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "oracle-bcl-javaee.json", "yml": "oracle-bcl-javaee.yml", "html": "oracle-bcl-javaee.html", "text": "oracle-bcl-javaee.LICENSE"}, {"license_key": "oracle-bcl-javase-javafx-2012", "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javase-javafx-2012", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "oracle-bcl-javase-javafx-2012.json", "yml": "oracle-bcl-javase-javafx-2012.yml", "html": "oracle-bcl-javase-javafx-2012.html", "text": "oracle-bcl-javase-javafx-2012.LICENSE"}, {"license_key": "oracle-bcl-javase-javafx-2013", "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javase-javafx-2013", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "oracle-bcl-javase-javafx-2013.json", "yml": "oracle-bcl-javase-javafx-2013.yml", "html": "oracle-bcl-javase-javafx-2013.html", "text": "oracle-bcl-javase-javafx-2013.LICENSE"}, {"license_key": "oracle-bcl-javase-platform-javafx-2013", "spdx_license_key": "LicenseRef-scancode-oracle-bcl-java-platform-2013", "other_spdx_license_keys": ["LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2013"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "oracle-bcl-javase-platform-javafx-2013.json", "yml": "oracle-bcl-javase-platform-javafx-2013.yml", "html": "oracle-bcl-javase-platform-javafx-2013.html", "text": "oracle-bcl-javase-platform-javafx-2013.LICENSE"}, {"license_key": "oracle-bcl-javase-platform-javafx-2017", "spdx_license_key": "LicenseRef-scancode-oracle-bcl-java-platform-2017", "other_spdx_license_keys": ["LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2017"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "oracle-bcl-javase-platform-javafx-2017.json", "yml": "oracle-bcl-javase-platform-javafx-2017.yml", "html": "oracle-bcl-javase-platform-javafx-2017.html", "text": "oracle-bcl-javase-platform-javafx-2017.LICENSE"}, {"license_key": "oracle-bcl-jsse-1.0.3", "spdx_license_key": "LicenseRef-scancode-oracle-bcl-jsse-1.0.3", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "oracle-bcl-jsse-1.0.3.json", "yml": "oracle-bcl-jsse-1.0.3.yml", "html": "oracle-bcl-jsse-1.0.3.html", "text": "oracle-bcl-jsse-1.0.3.LICENSE"}, {"license_key": "oracle-bsd-no-nuclear", "spdx_license_key": "BSD-3-Clause-No-Nuclear-License-2014", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "oracle-bsd-no-nuclear.json", "yml": "oracle-bsd-no-nuclear.yml", "html": "oracle-bsd-no-nuclear.html", "text": "oracle-bsd-no-nuclear.LICENSE"}, {"license_key": "oracle-code-samples-bsd", "spdx_license_key": "LicenseRef-scancode-oracle-code-samples-bsd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "oracle-code-samples-bsd.json", "yml": "oracle-code-samples-bsd.yml", "html": "oracle-code-samples-bsd.html", "text": "oracle-code-samples-bsd.LICENSE"}, {"license_key": "oracle-commercial-database-11g2", "spdx_license_key": "LicenseRef-scancode-oracle-commercial-db-11g2", "other_spdx_license_keys": ["LicenseRef-scancode-oracle-commercial-database-11g2"], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "oracle-commercial-database-11g2.json", "yml": "oracle-commercial-database-11g2.yml", "html": "oracle-commercial-database-11g2.html", "text": "oracle-commercial-database-11g2.LICENSE"}, {"license_key": "oracle-devtools-vsnet-dev", "spdx_license_key": "LicenseRef-scancode-oracle-devtools-vsnet-dev", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "oracle-devtools-vsnet-dev.json", "yml": "oracle-devtools-vsnet-dev.yml", "html": "oracle-devtools-vsnet-dev.html", "text": "oracle-devtools-vsnet-dev.LICENSE"}, {"license_key": "oracle-entitlement-05-15", "spdx_license_key": "LicenseRef-scancode-oracle-entitlement-05-15", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "oracle-entitlement-05-15.json", "yml": "oracle-entitlement-05-15.yml", "html": "oracle-entitlement-05-15.html", "text": "oracle-entitlement-05-15.LICENSE"}, {"license_key": "oracle-java-ee-sdk-2010", "spdx_license_key": "LicenseRef-scancode-oracle-java-ee-sdk-2010", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "oracle-java-ee-sdk-2010.json", "yml": "oracle-java-ee-sdk-2010.yml", "html": "oracle-java-ee-sdk-2010.html", "text": "oracle-java-ee-sdk-2010.LICENSE"}, {"license_key": "oracle-master-agreement", "spdx_license_key": "LicenseRef-scancode-oracle-master-agreement", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "oracle-master-agreement.json", "yml": "oracle-master-agreement.yml", "html": "oracle-master-agreement.html", "text": "oracle-master-agreement.LICENSE"}, {"license_key": "oracle-mysql-foss-exception-2.0", "spdx_license_key": "LicenseRef-scancode-oracle-mysql-foss-exception2.0", "other_spdx_license_keys": ["LicenseRef-scancode-oracle-mysql-foss-exception-2.0"], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "oracle-mysql-foss-exception-2.0.json", "yml": "oracle-mysql-foss-exception-2.0.yml", "html": "oracle-mysql-foss-exception-2.0.html", "text": "oracle-mysql-foss-exception-2.0.LICENSE"}, {"license_key": "oracle-nftc-2021", "spdx_license_key": "LicenseRef-scancode-oracle-nftc-2021", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "oracle-nftc-2021.json", "yml": "oracle-nftc-2021.yml", "html": "oracle-nftc-2021.html", "text": "oracle-nftc-2021.LICENSE"}, {"license_key": "oracle-openjdk-classpath-exception-2.0", "spdx_license_key": "LicenseRef-scancode-oracle-openjdk-exception-2.0", "other_spdx_license_keys": ["LicenseRef-scancode-oracle-openjdk-classpath-exception-2.0"], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "oracle-openjdk-classpath-exception-2.0.json", "yml": "oracle-openjdk-classpath-exception-2.0.yml", "html": "oracle-openjdk-classpath-exception-2.0.html", "text": "oracle-openjdk-classpath-exception-2.0.LICENSE"}, {"license_key": "oracle-otn-javase-2019", "spdx_license_key": "LicenseRef-scancode-oracle-otn-javase-2019", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "oracle-otn-javase-2019.json", "yml": "oracle-otn-javase-2019.yml", "html": "oracle-otn-javase-2019.html", "text": "oracle-otn-javase-2019.LICENSE"}, {"license_key": "oracle-sql-developer", "spdx_license_key": "LicenseRef-scancode-oracle-sql-developer", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "oracle-sql-developer.json", "yml": "oracle-sql-developer.yml", "html": "oracle-sql-developer.html", "text": "oracle-sql-developer.LICENSE"}, {"license_key": "oracle-web-sites-tou", "spdx_license_key": "LicenseRef-scancode-oracle-web-sites-tou", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "oracle-web-sites-tou.json", "yml": "oracle-web-sites-tou.yml", "html": "oracle-web-sites-tou.html", "text": "oracle-web-sites-tou.LICENSE"}, {"license_key": "oreilly-notice", "spdx_license_key": "LicenseRef-scancode-oreilly-notice", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "oreilly-notice.json", "yml": "oreilly-notice.yml", "html": "oreilly-notice.html", "text": "oreilly-notice.LICENSE"}, {"license_key": "oset-pl-2.1", "spdx_license_key": "OSET-PL-2.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "oset-pl-2.1.json", "yml": "oset-pl-2.1.yml", "html": "oset-pl-2.1.html", "text": "oset-pl-2.1.LICENSE"}, {"license_key": "osetpl-2.1", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Copyleft Limited", "json": "osetpl-2.1.json", "yml": "osetpl-2.1.yml", "html": "osetpl-2.1.html", "text": "osetpl-2.1.LICENSE"}, {"license_key": "osf-1990", "spdx_license_key": "LicenseRef-scancode-osf-1990", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "osf-1990.json", "yml": "osf-1990.yml", "html": "osf-1990.html", "text": "osf-1990.LICENSE"}, {"license_key": "osgi-spec-2.0", "spdx_license_key": "LicenseRef-scancode-osgi-spec-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "osgi-spec-2.0.json", "yml": "osgi-spec-2.0.yml", "html": "osgi-spec-2.0.html", "text": "osgi-spec-2.0.LICENSE"}, {"license_key": "osl-1.0", "spdx_license_key": "OSL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "osl-1.0.json", "yml": "osl-1.0.yml", "html": "osl-1.0.html", "text": "osl-1.0.LICENSE"}, {"license_key": "osl-1.1", "spdx_license_key": "OSL-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "osl-1.1.json", "yml": "osl-1.1.yml", "html": "osl-1.1.html", "text": "osl-1.1.LICENSE"}, {"license_key": "osl-2.0", "spdx_license_key": "OSL-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "osl-2.0.json", "yml": "osl-2.0.yml", "html": "osl-2.0.html", "text": "osl-2.0.LICENSE"}, {"license_key": "osl-2.1", "spdx_license_key": "OSL-2.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "osl-2.1.json", "yml": "osl-2.1.yml", "html": "osl-2.1.html", "text": "osl-2.1.LICENSE"}, {"license_key": "osl-3.0", "spdx_license_key": "OSL-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "osl-3.0.json", "yml": "osl-3.0.yml", "html": "osl-3.0.html", "text": "osl-3.0.LICENSE"}, {"license_key": "ossn-3.0", "spdx_license_key": "LicenseRef-scancode-ossn-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ossn-3.0.json", "yml": "ossn-3.0.yml", "html": "ossn-3.0.html", "text": "ossn-3.0.LICENSE"}, {"license_key": "oswego-concurrent", "spdx_license_key": "LicenseRef-scancode-oswego-concurrent", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "oswego-concurrent.json", "yml": "oswego-concurrent.yml", "html": "oswego-concurrent.html", "text": "oswego-concurrent.LICENSE"}, {"license_key": "other-copyleft", "spdx_license_key": "LicenseRef-scancode-other-copyleft", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "other-copyleft.json", "yml": "other-copyleft.yml", "html": "other-copyleft.html", "text": "other-copyleft.LICENSE"}, {"license_key": "other-permissive", "spdx_license_key": "LicenseRef-scancode-other-permissive", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "other-permissive.json", "yml": "other-permissive.yml", "html": "other-permissive.html", "text": "other-permissive.LICENSE"}, {"license_key": "otn-dev-dist", "spdx_license_key": "LicenseRef-scancode-otn-dev-dist", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "otn-dev-dist.json", "yml": "otn-dev-dist.yml", "html": "otn-dev-dist.html", "text": "otn-dev-dist.LICENSE"}, {"license_key": "otn-dev-dist-2009", "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2009", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "otn-dev-dist-2009.json", "yml": "otn-dev-dist-2009.yml", "html": "otn-dev-dist-2009.html", "text": "otn-dev-dist-2009.LICENSE"}, {"license_key": "otn-dev-dist-2014", "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2014", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "otn-dev-dist-2014.json", "yml": "otn-dev-dist-2014.yml", "html": "otn-dev-dist-2014.html", "text": "otn-dev-dist-2014.LICENSE"}, {"license_key": "otn-dev-dist-2016", "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2016", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "otn-dev-dist-2016.json", "yml": "otn-dev-dist-2016.yml", "html": "otn-dev-dist-2016.html", "text": "otn-dev-dist-2016.LICENSE"}, {"license_key": "otn-early-adopter-2018", "spdx_license_key": "LicenseRef-scancode-otn-early-adopter-2018", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "otn-early-adopter-2018.json", "yml": "otn-early-adopter-2018.yml", "html": "otn-early-adopter-2018.html", "text": "otn-early-adopter-2018.LICENSE"}, {"license_key": "otn-early-adopter-development", "spdx_license_key": "LicenseRef-scancode-otn-early-adopter-development", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "otn-early-adopter-development.json", "yml": "otn-early-adopter-development.yml", "html": "otn-early-adopter-development.html", "text": "otn-early-adopter-development.LICENSE"}, {"license_key": "otn-standard-2014-09", "spdx_license_key": "LicenseRef-scancode-otn-standard-2014-09", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "otn-standard-2014-09.json", "yml": "otn-standard-2014-09.yml", "html": "otn-standard-2014-09.html", "text": "otn-standard-2014-09.LICENSE"}, {"license_key": "owal-1.0", "spdx_license_key": "LicenseRef-scancode-owal-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "owal-1.0.json", "yml": "owal-1.0.yml", "html": "owal-1.0.html", "text": "owal-1.0.LICENSE"}, {"license_key": "owf-cla-1.0-copyright", "spdx_license_key": "LicenseRef-scancode-owf-cla-1.0-copyright", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "owf-cla-1.0-copyright.json", "yml": "owf-cla-1.0-copyright.yml", "html": "owf-cla-1.0-copyright.html", "text": "owf-cla-1.0-copyright.LICENSE"}, {"license_key": "owf-cla-1.0-copyright-patent", "spdx_license_key": "LicenseRef-scancode-owf-cla-1.0-copyright-patent", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "owf-cla-1.0-copyright-patent.json", "yml": "owf-cla-1.0-copyright-patent.yml", "html": "owf-cla-1.0-copyright-patent.html", "text": "owf-cla-1.0-copyright-patent.LICENSE"}, {"license_key": "owfa-1-0-patent-only", "spdx_license_key": "LicenseRef-scancode-owfa-1.0-patent-only", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "owfa-1-0-patent-only.json", "yml": "owfa-1-0-patent-only.yml", "html": "owfa-1-0-patent-only.html", "text": "owfa-1-0-patent-only.LICENSE"}, {"license_key": "owfa-1.0", "spdx_license_key": "LicenseRef-scancode-owfa-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "owfa-1.0.json", "yml": "owfa-1.0.yml", "html": "owfa-1.0.html", "text": "owfa-1.0.LICENSE"}, {"license_key": "owtchart", "spdx_license_key": "LicenseRef-scancode-owtchart", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "owtchart.json", "yml": "owtchart.yml", "html": "owtchart.html", "text": "owtchart.LICENSE"}, {"license_key": "oxygen-xml-webhelp-eula", "spdx_license_key": "LicenseRef-scancode-oxygen-xml-webhelp-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "oxygen-xml-webhelp-eula.json", "yml": "oxygen-xml-webhelp-eula.yml", "html": "oxygen-xml-webhelp-eula.html", "text": "oxygen-xml-webhelp-eula.LICENSE"}, {"license_key": "ozplb-1.0", "spdx_license_key": "LicenseRef-scancode-ozplb-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ozplb-1.0.json", "yml": "ozplb-1.0.yml", "html": "ozplb-1.0.html", "text": "ozplb-1.0.LICENSE"}, {"license_key": "ozplb-1.1", "spdx_license_key": "LicenseRef-scancode-ozplb-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ozplb-1.1.json", "yml": "ozplb-1.1.yml", "html": "ozplb-1.1.html", "text": "ozplb-1.1.LICENSE"}, {"license_key": "paint-net", "spdx_license_key": "LicenseRef-scancode-paint-net", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "paint-net.json", "yml": "paint-net.yml", "html": "paint-net.html", "text": "paint-net.LICENSE"}, {"license_key": "paolo-messina-2000", "spdx_license_key": "LicenseRef-scancode-paolo-messina-2000", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "paolo-messina-2000.json", "yml": "paolo-messina-2000.yml", "html": "paolo-messina-2000.html", "text": "paolo-messina-2000.LICENSE"}, {"license_key": "paraview-1.2", "spdx_license_key": "LicenseRef-scancode-paraview-1.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "paraview-1.2.json", "yml": "paraview-1.2.yml", "html": "paraview-1.2.html", "text": "paraview-1.2.LICENSE"}, {"license_key": "parity-6.0.0", "spdx_license_key": "Parity-6.0.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "parity-6.0.0.json", "yml": "parity-6.0.0.yml", "html": "parity-6.0.0.html", "text": "parity-6.0.0.LICENSE"}, {"license_key": "parity-7.0.0", "spdx_license_key": "Parity-7.0.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "parity-7.0.0.json", "yml": "parity-7.0.0.yml", "html": "parity-7.0.0.html", "text": "parity-7.0.0.LICENSE"}, {"license_key": "passive-aggressive", "spdx_license_key": "LicenseRef-scancode-passive-aggressive", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "passive-aggressive.json", "yml": "passive-aggressive.yml", "html": "passive-aggressive.html", "text": "passive-aggressive.LICENSE"}, {"license_key": "patent-disclaimer", "spdx_license_key": "LicenseRef-scancode-patent-disclaimer", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "patent-disclaimer.json", "yml": "patent-disclaimer.yml", "html": "patent-disclaimer.html", "text": "patent-disclaimer.LICENSE"}, {"license_key": "paul-hsieh-derivative", "spdx_license_key": "LicenseRef-scancode-paul-hsieh-derivative", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "paul-hsieh-derivative.json", "yml": "paul-hsieh-derivative.yml", "html": "paul-hsieh-derivative.html", "text": "paul-hsieh-derivative.LICENSE"}, {"license_key": "paul-hsieh-exposition", "spdx_license_key": "LicenseRef-scancode-paul-hsieh-exposition", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "paul-hsieh-exposition.json", "yml": "paul-hsieh-exposition.yml", "html": "paul-hsieh-exposition.html", "text": "paul-hsieh-exposition.LICENSE"}, {"license_key": "paul-mackerras", "spdx_license_key": "LicenseRef-scancode-paul-mackerras", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "paul-mackerras.json", "yml": "paul-mackerras.yml", "html": "paul-mackerras.html", "text": "paul-mackerras.LICENSE"}, {"license_key": "paul-mackerras-binary", "spdx_license_key": "LicenseRef-scancode-paul-mackerras-binary", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "paul-mackerras-binary.json", "yml": "paul-mackerras-binary.yml", "html": "paul-mackerras-binary.html", "text": "paul-mackerras-binary.LICENSE"}, {"license_key": "paul-mackerras-new", "spdx_license_key": "LicenseRef-scancode-paul-mackerras-new", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "paul-mackerras-new.json", "yml": "paul-mackerras-new.yml", "html": "paul-mackerras-new.html", "text": "paul-mackerras-new.LICENSE"}, {"license_key": "paul-mackerras-simplified", "spdx_license_key": "LicenseRef-scancode-paul-mackerras-simplified", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "paul-mackerras-simplified.json", "yml": "paul-mackerras-simplified.yml", "html": "paul-mackerras-simplified.html", "text": "paul-mackerras-simplified.LICENSE"}, {"license_key": "paulo-soares", "spdx_license_key": "LicenseRef-scancode-paulo-soares", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "paulo-soares.json", "yml": "paulo-soares.yml", "html": "paulo-soares.html", "text": "paulo-soares.LICENSE"}, {"license_key": "paypal-sdk-2013-2016", "spdx_license_key": "LicenseRef-scancode-paypal-sdk-2013-2016", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "paypal-sdk-2013-2016.json", "yml": "paypal-sdk-2013-2016.yml", "html": "paypal-sdk-2013-2016.html", "text": "paypal-sdk-2013-2016.LICENSE"}, {"license_key": "pbl-1.0", "spdx_license_key": "LicenseRef-scancode-pbl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "pbl-1.0.json", "yml": "pbl-1.0.yml", "html": "pbl-1.0.html", "text": "pbl-1.0.LICENSE"}, {"license_key": "pcre", "spdx_license_key": "LicenseRef-scancode-pcre", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "pcre.json", "yml": "pcre.yml", "html": "pcre.html", "text": "pcre.LICENSE"}, {"license_key": "pd-mit", "spdx_license_key": "LicenseRef-scancode-pd-mit", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "pd-mit.json", "yml": "pd-mit.yml", "html": "pd-mit.html", "text": "pd-mit.LICENSE"}, {"license_key": "pd-programming", "spdx_license_key": "LicenseRef-scancode-pd-programming", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "pd-programming.json", "yml": "pd-programming.yml", "html": "pd-programming.html", "text": "pd-programming.LICENSE"}, {"license_key": "pddl-1.0", "spdx_license_key": "PDDL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "pddl-1.0.json", "yml": "pddl-1.0.yml", "html": "pddl-1.0.html", "text": "pddl-1.0.LICENSE"}, {"license_key": "pdf-creator-pilot", "spdx_license_key": "LicenseRef-scancode-pdf-creator-pilot", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "pdf-creator-pilot.json", "yml": "pdf-creator-pilot.yml", "html": "pdf-creator-pilot.html", "text": "pdf-creator-pilot.LICENSE"}, {"license_key": "pdl-1.0", "spdx_license_key": "LicenseRef-scancode-pdl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "pdl-1.0.json", "yml": "pdl-1.0.yml", "html": "pdl-1.0.html", "text": "pdl-1.0.LICENSE"}, {"license_key": "perl-1.0", "spdx_license_key": "LicenseRef-scancode-perl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "perl-1.0.json", "yml": "perl-1.0.yml", "html": "perl-1.0.html", "text": "perl-1.0.LICENSE"}, {"license_key": "peter-deutsch-document", "spdx_license_key": "LicenseRef-scancode-peter-deutsch-document", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "peter-deutsch-document.json", "yml": "peter-deutsch-document.yml", "html": "peter-deutsch-document.html", "text": "peter-deutsch-document.LICENSE"}, {"license_key": "pfe-proprietary-notice", "spdx_license_key": "LicenseRef-scancode-pfe-proprietary-notice", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "pfe-proprietary-notice.json", "yml": "pfe-proprietary-notice.yml", "html": "pfe-proprietary-notice.html", "text": "pfe-proprietary-notice.LICENSE"}, {"license_key": "pftijah-1.1", "spdx_license_key": "LicenseRef-scancode-pftijah-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "pftijah-1.1.json", "yml": "pftijah-1.1.yml", "html": "pftijah-1.1.html", "text": "pftijah-1.1.LICENSE"}, {"license_key": "pftus-1.1", "spdx_license_key": "LicenseRef-scancode-pftus-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "pftus-1.1.json", "yml": "pftus-1.1.yml", "html": "pftus-1.1.html", "text": "pftus-1.1.LICENSE"}, {"license_key": "phil-bunce", "spdx_license_key": "LicenseRef-scancode-phil-bunce", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "phil-bunce.json", "yml": "phil-bunce.yml", "html": "phil-bunce.html", "text": "phil-bunce.LICENSE"}, {"license_key": "philippe-de-muyter", "spdx_license_key": "LicenseRef-scancode-philippe-de-muyter", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "philippe-de-muyter.json", "yml": "philippe-de-muyter.yml", "html": "philippe-de-muyter.html", "text": "philippe-de-muyter.LICENSE"}, {"license_key": "philips-proprietary-notice-2000", "spdx_license_key": "LicenseRef-scancode-philips-proprietary-notice2000", "other_spdx_license_keys": ["LicenseRef-scancode-philips-proprietary-notice-2000"], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "philips-proprietary-notice-2000.json", "yml": "philips-proprietary-notice-2000.yml", "html": "philips-proprietary-notice-2000.html", "text": "philips-proprietary-notice-2000.LICENSE"}, {"license_key": "phorum-2.0", "spdx_license_key": "LicenseRef-scancode-phorum-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "phorum-2.0.json", "yml": "phorum-2.0.yml", "html": "phorum-2.0.html", "text": "phorum-2.0.LICENSE"}, {"license_key": "php-2.0.2", "spdx_license_key": "LicenseRef-scancode-php-2.0.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "php-2.0.2.json", "yml": "php-2.0.2.yml", "html": "php-2.0.2.html", "text": "php-2.0.2.LICENSE"}, {"license_key": "php-3.0", "spdx_license_key": "PHP-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "php-3.0.json", "yml": "php-3.0.yml", "html": "php-3.0.html", "text": "php-3.0.LICENSE"}, {"license_key": "php-3.01", "spdx_license_key": "PHP-3.01", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "php-3.01.json", "yml": "php-3.01.yml", "html": "php-3.01.html", "text": "php-3.01.LICENSE"}, {"license_key": "pine", "spdx_license_key": "LicenseRef-scancode-pine", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "pine.json", "yml": "pine.yml", "html": "pine.html", "text": "pine.LICENSE"}, {"license_key": "pivotal-tou", "spdx_license_key": "LicenseRef-scancode-pivotal-tou", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "pivotal-tou.json", "yml": "pivotal-tou.yml", "html": "pivotal-tou.html", "text": "pivotal-tou.LICENSE"}, {"license_key": "pixabay-content", "spdx_license_key": "LicenseRef-scancode-pixabay-content", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "pixabay-content.json", "yml": "pixabay-content.yml", "html": "pixabay-content.html", "text": "pixabay-content.LICENSE"}, {"license_key": "planet-source-code", "spdx_license_key": "LicenseRef-scancode-planet-source-code", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "planet-source-code.json", "yml": "planet-source-code.yml", "html": "planet-source-code.html", "text": "planet-source-code.LICENSE"}, {"license_key": "pml-2020", "spdx_license_key": "LicenseRef-scancode-pml-2020", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "pml-2020.json", "yml": "pml-2020.yml", "html": "pml-2020.html", "text": "pml-2020.LICENSE"}, {"license_key": "pngsuite", "spdx_license_key": "LicenseRef-scancode-pngsuite", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "pngsuite.json", "yml": "pngsuite.yml", "html": "pngsuite.html", "text": "pngsuite.LICENSE"}, {"license_key": "politepix-pl-1.0", "spdx_license_key": "LicenseRef-scancode-politepix-pl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "politepix-pl-1.0.json", "yml": "politepix-pl-1.0.yml", "html": "politepix-pl-1.0.html", "text": "politepix-pl-1.0.LICENSE"}, {"license_key": "polyform-defensive-1.0.0", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Source-available", "json": "polyform-defensive-1.0.0.json", "yml": "polyform-defensive-1.0.0.yml", "html": "polyform-defensive-1.0.0.html", "text": "polyform-defensive-1.0.0.LICENSE"}, {"license_key": "polyform-free-trial-1.0.0", "spdx_license_key": "LicenseRef-scancode-polyform-free-trial-1.0.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "polyform-free-trial-1.0.0.json", "yml": "polyform-free-trial-1.0.0.yml", "html": "polyform-free-trial-1.0.0.html", "text": "polyform-free-trial-1.0.0.LICENSE"}, {"license_key": "polyform-internal-use-1.0.0", "spdx_license_key": "LicenseRef-scancode-polyform-internal-use-1.0.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "polyform-internal-use-1.0.0.json", "yml": "polyform-internal-use-1.0.0.yml", "html": "polyform-internal-use-1.0.0.html", "text": "polyform-internal-use-1.0.0.LICENSE"}, {"license_key": "polyform-noncommercial-1.0.0", "spdx_license_key": "PolyForm-Noncommercial-1.0.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "polyform-noncommercial-1.0.0.json", "yml": "polyform-noncommercial-1.0.0.yml", "html": "polyform-noncommercial-1.0.0.html", "text": "polyform-noncommercial-1.0.0.LICENSE"}, {"license_key": "polyform-perimeter-1.0.0", "spdx_license_key": "LicenseRef-scancode-polyform-perimeter-1.0.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "polyform-perimeter-1.0.0.json", "yml": "polyform-perimeter-1.0.0.yml", "html": "polyform-perimeter-1.0.0.html", "text": "polyform-perimeter-1.0.0.LICENSE"}, {"license_key": "polyform-shield-1.0.0", "spdx_license_key": "LicenseRef-scancode-polyform-shield-1.0.0", "other_spdx_license_keys": ["LicenseRef-scancode-polyform-defensive-1.0.0"], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "polyform-shield-1.0.0.json", "yml": "polyform-shield-1.0.0.yml", "html": "polyform-shield-1.0.0.html", "text": "polyform-shield-1.0.0.LICENSE"}, {"license_key": "polyform-small-business-1.0.0", "spdx_license_key": "PolyForm-Small-Business-1.0.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "polyform-small-business-1.0.0.json", "yml": "polyform-small-business-1.0.0.yml", "html": "polyform-small-business-1.0.0.html", "text": "polyform-small-business-1.0.0.LICENSE"}, {"license_key": "polyform-strict-1.0.0", "spdx_license_key": "LicenseRef-scancode-polyform-strict-1.0.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "polyform-strict-1.0.0.json", "yml": "polyform-strict-1.0.0.yml", "html": "polyform-strict-1.0.0.html", "text": "polyform-strict-1.0.0.LICENSE"}, {"license_key": "postgresql", "spdx_license_key": "PostgreSQL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "postgresql.json", "yml": "postgresql.yml", "html": "postgresql.html", "text": "postgresql.LICENSE"}, {"license_key": "powervr-tools-software-eula", "spdx_license_key": "LicenseRef-scancode-powervr-tools-software-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "powervr-tools-software-eula.json", "yml": "powervr-tools-software-eula.yml", "html": "powervr-tools-software-eula.html", "text": "powervr-tools-software-eula.LICENSE"}, {"license_key": "ppp", "spdx_license_key": "LicenseRef-scancode-ppp", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ppp.json", "yml": "ppp.yml", "html": "ppp.html", "text": "ppp.LICENSE"}, {"license_key": "proguard-exception-2.0", "spdx_license_key": "LicenseRef-scancode-proguard-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "proguard-exception-2.0.json", "yml": "proguard-exception-2.0.yml", "html": "proguard-exception-2.0.html", "text": "proguard-exception-2.0.LICENSE"}, {"license_key": "proprietary", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Proprietary Free", "json": "proprietary.json", "yml": "proprietary.yml", "html": "proprietary.html", "text": "proprietary.LICENSE"}, {"license_key": "proprietary-license", "spdx_license_key": "LicenseRef-scancode-proprietary-license", "other_spdx_license_keys": ["LicenseRef-LICENSE", "LicenseRef-LICENSE.md"], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "proprietary-license.json", "yml": "proprietary-license.yml", "html": "proprietary-license.html", "text": "proprietary-license.LICENSE"}, {"license_key": "prosperity-1.0.1", "spdx_license_key": "LicenseRef-scancode-prosperity-1.0.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "prosperity-1.0.1.json", "yml": "prosperity-1.0.1.yml", "html": "prosperity-1.0.1.html", "text": "prosperity-1.0.1.LICENSE"}, {"license_key": "prosperity-2.0", "spdx_license_key": "LicenseRef-scancode-prosperity-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "prosperity-2.0.json", "yml": "prosperity-2.0.yml", "html": "prosperity-2.0.html", "text": "prosperity-2.0.LICENSE"}, {"license_key": "prosperity-3.0", "spdx_license_key": "LicenseRef-scancode-prosperity-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "prosperity-3.0.json", "yml": "prosperity-3.0.yml", "html": "prosperity-3.0.html", "text": "prosperity-3.0.LICENSE"}, {"license_key": "protobuf", "spdx_license_key": "LicenseRef-scancode-protobuf", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "protobuf.json", "yml": "protobuf.yml", "html": "protobuf.html", "text": "protobuf.LICENSE"}, {"license_key": "ps-or-pdf-font-exception-20170817", "spdx_license_key": "PS-or-PDF-font-exception-20170817", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "ps-or-pdf-font-exception-20170817.json", "yml": "ps-or-pdf-font-exception-20170817.yml", "html": "ps-or-pdf-font-exception-20170817.html", "text": "ps-or-pdf-font-exception-20170817.LICENSE"}, {"license_key": "psf-2.0", "spdx_license_key": "PSF-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "psf-2.0.json", "yml": "psf-2.0.yml", "html": "psf-2.0.html", "text": "psf-2.0.LICENSE"}, {"license_key": "psf-3.7.2", "spdx_license_key": "LicenseRef-scancode-psf-3.7.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "psf-3.7.2.json", "yml": "psf-3.7.2.yml", "html": "psf-3.7.2.html", "text": "psf-3.7.2.LICENSE"}, {"license_key": "psfrag", "spdx_license_key": "psfrag", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "psfrag.json", "yml": "psfrag.yml", "html": "psfrag.html", "text": "psfrag.LICENSE"}, {"license_key": "psutils", "spdx_license_key": "psutils", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "psutils.json", "yml": "psutils.yml", "html": "psutils.html", "text": "psutils.LICENSE"}, {"license_key": "psytec-freesoft", "spdx_license_key": "LicenseRef-scancode-psytec-freesoft", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "psytec-freesoft.json", "yml": "psytec-freesoft.yml", "html": "psytec-freesoft.html", "text": "psytec-freesoft.LICENSE"}, {"license_key": "public-domain", "spdx_license_key": "LicenseRef-scancode-public-domain", "other_spdx_license_keys": ["LicenseRef-PublicDomain"], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "public-domain.json", "yml": "public-domain.yml", "html": "public-domain.html", "text": "public-domain.LICENSE"}, {"license_key": "public-domain-disclaimer", "spdx_license_key": "LicenseRef-scancode-public-domain-disclaimer", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "public-domain-disclaimer.json", "yml": "public-domain-disclaimer.yml", "html": "public-domain-disclaimer.html", "text": "public-domain-disclaimer.LICENSE"}, {"license_key": "purdue-bsd", "spdx_license_key": "LicenseRef-scancode-purdue-bsd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "purdue-bsd.json", "yml": "purdue-bsd.yml", "html": "purdue-bsd.html", "text": "purdue-bsd.LICENSE"}, {"license_key": "pybench", "spdx_license_key": "LicenseRef-scancode-pybench", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "pybench.json", "yml": "pybench.yml", "html": "pybench.html", "text": "pybench.LICENSE"}, {"license_key": "pycrypto", "spdx_license_key": "LicenseRef-scancode-pycrypto", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "pycrypto.json", "yml": "pycrypto.yml", "html": "pycrypto.html", "text": "pycrypto.LICENSE"}, {"license_key": "pygres-2.2", "spdx_license_key": "LicenseRef-scancode-pygres-2.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "pygres-2.2.json", "yml": "pygres-2.2.yml", "html": "pygres-2.2.html", "text": "pygres-2.2.LICENSE"}, {"license_key": "python", "spdx_license_key": "Python-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "python.json", "yml": "python.yml", "html": "python.html", "text": "python.LICENSE"}, {"license_key": "python-cwi", "spdx_license_key": "LicenseRef-scancode-python-cwi", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "python-cwi.json", "yml": "python-cwi.yml", "html": "python-cwi.html", "text": "python-cwi.LICENSE"}, {"license_key": "qaplug", "spdx_license_key": "LicenseRef-scancode-qaplug", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "qaplug.json", "yml": "qaplug.yml", "html": "qaplug.html", "text": "qaplug.LICENSE"}, {"license_key": "qca-linux-firmware", "spdx_license_key": "LicenseRef-scancode-qca-linux-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "qca-linux-firmware.json", "yml": "qca-linux-firmware.yml", "html": "qca-linux-firmware.html", "text": "qca-linux-firmware.LICENSE"}, {"license_key": "qca-technology", "spdx_license_key": "LicenseRef-scancode-qca-technology", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "qca-technology.json", "yml": "qca-technology.yml", "html": "qca-technology.html", "text": "qca-technology.LICENSE"}, {"license_key": "qcad-exception-gpl", "spdx_license_key": "LicenseRef-scancode-qcad-exception-gpl", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "qcad-exception-gpl.json", "yml": "qcad-exception-gpl.yml", "html": "qcad-exception-gpl.html", "text": "qcad-exception-gpl.LICENSE"}, {"license_key": "qhull", "spdx_license_key": "Qhull", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "qhull.json", "yml": "qhull.yml", "html": "qhull.html", "text": "qhull.LICENSE"}, {"license_key": "qlogic-firmware", "spdx_license_key": "LicenseRef-scancode-qlogic-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "qlogic-firmware.json", "yml": "qlogic-firmware.yml", "html": "qlogic-firmware.html", "text": "qlogic-firmware.LICENSE"}, {"license_key": "qlogic-microcode", "spdx_license_key": "LicenseRef-scancode-qlogic-microcode", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "qlogic-microcode.json", "yml": "qlogic-microcode.yml", "html": "qlogic-microcode.html", "text": "qlogic-microcode.LICENSE"}, {"license_key": "qpl-1.0", "spdx_license_key": "QPL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "qpl-1.0.json", "yml": "qpl-1.0.yml", "html": "qpl-1.0.html", "text": "qpl-1.0.LICENSE"}, {"license_key": "qpopper", "spdx_license_key": "LicenseRef-scancode-qpopper", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "qpopper.json", "yml": "qpopper.yml", "html": "qpopper.html", "text": "qpopper.LICENSE"}, {"license_key": "qt-commercial-1.1", "spdx_license_key": "LicenseRef-scancode-qt-commercial-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "qt-commercial-1.1.json", "yml": "qt-commercial-1.1.yml", "html": "qt-commercial-1.1.html", "text": "qt-commercial-1.1.LICENSE"}, {"license_key": "qt-company-exception-2017-lgpl-2.1", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": true, "category": "Copyleft Limited", "json": "qt-company-exception-2017-lgpl-2.1.json", "yml": "qt-company-exception-2017-lgpl-2.1.yml", "html": "qt-company-exception-2017-lgpl-2.1.html", "text": "qt-company-exception-2017-lgpl-2.1.LICENSE"}, {"license_key": "qt-company-exception-lgpl-2.1", "spdx_license_key": "LicenseRef-scancode-qt-company-exception-lgpl-2.1", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "qt-company-exception-lgpl-2.1.json", "yml": "qt-company-exception-lgpl-2.1.yml", "html": "qt-company-exception-lgpl-2.1.html", "text": "qt-company-exception-lgpl-2.1.LICENSE"}, {"license_key": "qt-gpl-exception-1.0", "spdx_license_key": "Qt-GPL-exception-1.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "qt-gpl-exception-1.0.json", "yml": "qt-gpl-exception-1.0.yml", "html": "qt-gpl-exception-1.0.html", "text": "qt-gpl-exception-1.0.LICENSE"}, {"license_key": "qt-kde-linking-exception", "spdx_license_key": "LicenseRef-scancode-qt-kde-linking-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "qt-kde-linking-exception.json", "yml": "qt-kde-linking-exception.yml", "html": "qt-kde-linking-exception.html", "text": "qt-kde-linking-exception.LICENSE"}, {"license_key": "qt-lgpl-exception-1.1", "spdx_license_key": "Qt-LGPL-exception-1.1", "other_spdx_license_keys": ["Nokia-Qt-exception-1.1"], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "qt-lgpl-exception-1.1.json", "yml": "qt-lgpl-exception-1.1.yml", "html": "qt-lgpl-exception-1.1.html", "text": "qt-lgpl-exception-1.1.LICENSE"}, {"license_key": "qt-qca-exception-2.0", "spdx_license_key": "LicenseRef-scancode-qt-qca-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "qt-qca-exception-2.0.json", "yml": "qt-qca-exception-2.0.yml", "html": "qt-qca-exception-2.0.html", "text": "qt-qca-exception-2.0.LICENSE"}, {"license_key": "qti-linux-firmware", "spdx_license_key": "LicenseRef-scancode-qti-linux-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "qti-linux-firmware.json", "yml": "qti-linux-firmware.yml", "html": "qti-linux-firmware.html", "text": "qti-linux-firmware.LICENSE"}, {"license_key": "qualcomm-iso", "spdx_license_key": "LicenseRef-scancode-qualcomm-iso", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "qualcomm-iso.json", "yml": "qualcomm-iso.yml", "html": "qualcomm-iso.html", "text": "qualcomm-iso.LICENSE"}, {"license_key": "qualcomm-turing", "spdx_license_key": "LicenseRef-scancode-qualcomm-turing", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "qualcomm-turing.json", "yml": "qualcomm-turing.yml", "html": "qualcomm-turing.html", "text": "qualcomm-turing.LICENSE"}, {"license_key": "quickfix-1.0", "spdx_license_key": "LicenseRef-scancode-quickfix-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "quickfix-1.0.json", "yml": "quickfix-1.0.yml", "html": "quickfix-1.0.html", "text": "quickfix-1.0.LICENSE"}, {"license_key": "quicktime", "spdx_license_key": "LicenseRef-scancode-quicktime", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "quicktime.json", "yml": "quicktime.yml", "html": "quicktime.html", "text": "quicktime.LICENSE"}, {"license_key": "quin-street", "spdx_license_key": "LicenseRef-scancode-quin-street", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "quin-street.json", "yml": "quin-street.yml", "html": "quin-street.html", "text": "quin-street.LICENSE"}, {"license_key": "quirksmode", "spdx_license_key": "LicenseRef-scancode-quirksmode", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "quirksmode.json", "yml": "quirksmode.yml", "html": "quirksmode.html", "text": "quirksmode.LICENSE"}, {"license_key": "qwt-1.0", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Copyleft Limited", "json": "qwt-1.0.json", "yml": "qwt-1.0.yml", "html": "qwt-1.0.html", "text": "qwt-1.0.LICENSE"}, {"license_key": "qwt-exception-1.0", "spdx_license_key": "Qwt-exception-1.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "qwt-exception-1.0.json", "yml": "qwt-exception-1.0.yml", "html": "qwt-exception-1.0.html", "text": "qwt-exception-1.0.LICENSE"}, {"license_key": "rackspace", "spdx_license_key": "LicenseRef-scancode-rackspace", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "rackspace.json", "yml": "rackspace.yml", "html": "rackspace.html", "text": "rackspace.LICENSE"}, {"license_key": "radvd", "spdx_license_key": "LicenseRef-scancode-radvd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "radvd.json", "yml": "radvd.yml", "html": "radvd.html", "text": "radvd.LICENSE"}, {"license_key": "ralf-corsepius", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "ralf-corsepius.json", "yml": "ralf-corsepius.yml", "html": "ralf-corsepius.html", "text": "ralf-corsepius.LICENSE"}, {"license_key": "ralink-firmware", "spdx_license_key": "LicenseRef-scancode-ralink-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ralink-firmware.json", "yml": "ralink-firmware.yml", "html": "ralink-firmware.html", "text": "ralink-firmware.LICENSE"}, {"license_key": "rar-winrar-eula", "spdx_license_key": "LicenseRef-scancode-rar-winrar-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "rar-winrar-eula.json", "yml": "rar-winrar-eula.yml", "html": "rar-winrar-eula.html", "text": "rar-winrar-eula.LICENSE"}, {"license_key": "rcsl-2.0", "spdx_license_key": "LicenseRef-scancode-rcsl-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "rcsl-2.0.json", "yml": "rcsl-2.0.yml", "html": "rcsl-2.0.html", "text": "rcsl-2.0.LICENSE"}, {"license_key": "rcsl-3.0", "spdx_license_key": "LicenseRef-scancode-rcsl-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "rcsl-3.0.json", "yml": "rcsl-3.0.yml", "html": "rcsl-3.0.html", "text": "rcsl-3.0.LICENSE"}, {"license_key": "rdisc", "spdx_license_key": "Rdisc", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "rdisc.json", "yml": "rdisc.yml", "html": "rdisc.html", "text": "rdisc.LICENSE"}, {"license_key": "realm-platform-extension-2017", "spdx_license_key": "LicenseRef-scancode-realm-platform-extension-2017", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "realm-platform-extension-2017.json", "yml": "realm-platform-extension-2017.yml", "html": "realm-platform-extension-2017.html", "text": "realm-platform-extension-2017.LICENSE"}, {"license_key": "red-hat-attribution", "spdx_license_key": "LicenseRef-scancode-red-hat-attribution", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "red-hat-attribution.json", "yml": "red-hat-attribution.yml", "html": "red-hat-attribution.html", "text": "red-hat-attribution.LICENSE"}, {"license_key": "red-hat-bsd-simplified", "spdx_license_key": "LicenseRef-scancode-red-hat-bsd-simplified", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "red-hat-bsd-simplified.json", "yml": "red-hat-bsd-simplified.yml", "html": "red-hat-bsd-simplified.html", "text": "red-hat-bsd-simplified.LICENSE"}, {"license_key": "red-hat-logos", "spdx_license_key": "LicenseRef-scancode-red-hat-logos", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "red-hat-logos.json", "yml": "red-hat-logos.yml", "html": "red-hat-logos.html", "text": "red-hat-logos.LICENSE"}, {"license_key": "red-hat-trademarks", "spdx_license_key": "LicenseRef-scancode-red-hat-trademarks", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "red-hat-trademarks.json", "yml": "red-hat-trademarks.yml", "html": "red-hat-trademarks.html", "text": "red-hat-trademarks.LICENSE"}, {"license_key": "redis-source-available-1.0", "spdx_license_key": "LicenseRef-scancode-redis-source-available-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "redis-source-available-1.0.json", "yml": "redis-source-available-1.0.yml", "html": "redis-source-available-1.0.html", "text": "redis-source-available-1.0.LICENSE"}, {"license_key": "regexp", "spdx_license_key": "Spencer-86", "other_spdx_license_keys": ["LicenseRef-scancode-regexp"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "regexp.json", "yml": "regexp.yml", "html": "regexp.html", "text": "regexp.LICENSE"}, {"license_key": "reportbug", "spdx_license_key": "LicenseRef-scancode-reportbug", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "reportbug.json", "yml": "reportbug.yml", "html": "reportbug.html", "text": "reportbug.LICENSE"}, {"license_key": "repoze", "spdx_license_key": "BSD-3-Clause-Modification", "other_spdx_license_keys": ["LicenseRef-scancode-repoze"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "repoze.json", "yml": "repoze.yml", "html": "repoze.html", "text": "repoze.LICENSE"}, {"license_key": "rh-eula", "spdx_license_key": "LicenseRef-scancode-rh-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "rh-eula.json", "yml": "rh-eula.yml", "html": "rh-eula.html", "text": "rh-eula.LICENSE"}, {"license_key": "rh-eula-lgpl", "spdx_license_key": "LicenseRef-scancode-rh-eula-lgpl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "rh-eula-lgpl.json", "yml": "rh-eula-lgpl.yml", "html": "rh-eula-lgpl.html", "text": "rh-eula-lgpl.LICENSE"}, {"license_key": "ricebsd", "spdx_license_key": "LicenseRef-scancode-ricebsd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ricebsd.json", "yml": "ricebsd.yml", "html": "ricebsd.html", "text": "ricebsd.LICENSE"}, {"license_key": "richard-black", "spdx_license_key": "LicenseRef-scancode-richard-black", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "richard-black.json", "yml": "richard-black.yml", "html": "richard-black.html", "text": "richard-black.LICENSE"}, {"license_key": "ricoh-1.0", "spdx_license_key": "RSCPL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "ricoh-1.0.json", "yml": "ricoh-1.0.yml", "html": "ricoh-1.0.html", "text": "ricoh-1.0.LICENSE"}, {"license_key": "riverbank-sip", "spdx_license_key": "LicenseRef-scancode-riverbank-sip", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "riverbank-sip.json", "yml": "riverbank-sip.yml", "html": "riverbank-sip.html", "text": "riverbank-sip.LICENSE"}, {"license_key": "robert-hubley", "spdx_license_key": "LicenseRef-scancode-robert-hubley", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "robert-hubley.json", "yml": "robert-hubley.yml", "html": "robert-hubley.html", "text": "robert-hubley.LICENSE"}, {"license_key": "rogue-wave", "spdx_license_key": "LicenseRef-scancode-rogue-wave", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "rogue-wave.json", "yml": "rogue-wave.yml", "html": "rogue-wave.html", "text": "rogue-wave.LICENSE"}, {"license_key": "rpl-1.1", "spdx_license_key": "RPL-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "rpl-1.1.json", "yml": "rpl-1.1.yml", "html": "rpl-1.1.html", "text": "rpl-1.1.LICENSE"}, {"license_key": "rpl-1.5", "spdx_license_key": "RPL-1.5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "rpl-1.5.json", "yml": "rpl-1.5.yml", "html": "rpl-1.5.html", "text": "rpl-1.5.LICENSE"}, {"license_key": "rpsl-1.0", "spdx_license_key": "RPSL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "rpsl-1.0.json", "yml": "rpsl-1.0.yml", "html": "rpsl-1.0.html", "text": "rpsl-1.0.LICENSE"}, {"license_key": "rrdtool-floss-exception-2.0", "spdx_license_key": "LicenseRef-scancode-rrdtool-floss-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "rrdtool-floss-exception-2.0.json", "yml": "rrdtool-floss-exception-2.0.yml", "html": "rrdtool-floss-exception-2.0.html", "text": "rrdtool-floss-exception-2.0.LICENSE"}, {"license_key": "rsa-1990", "spdx_license_key": "LicenseRef-scancode-rsa-1990", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "rsa-1990.json", "yml": "rsa-1990.yml", "html": "rsa-1990.html", "text": "rsa-1990.LICENSE"}, {"license_key": "rsa-cryptoki", "spdx_license_key": "LicenseRef-scancode-rsa-cryptoki", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "rsa-cryptoki.json", "yml": "rsa-cryptoki.yml", "html": "rsa-cryptoki.html", "text": "rsa-cryptoki.LICENSE"}, {"license_key": "rsa-demo", "spdx_license_key": "LicenseRef-scancode-rsa-demo", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "rsa-demo.json", "yml": "rsa-demo.yml", "html": "rsa-demo.html", "text": "rsa-demo.LICENSE"}, {"license_key": "rsa-md2", "spdx_license_key": "LicenseRef-scancode-rsa-md2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "rsa-md2.json", "yml": "rsa-md2.yml", "html": "rsa-md2.html", "text": "rsa-md2.LICENSE"}, {"license_key": "rsa-md4", "spdx_license_key": "LicenseRef-scancode-rsa-md4", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "rsa-md4.json", "yml": "rsa-md4.yml", "html": "rsa-md4.html", "text": "rsa-md4.LICENSE"}, {"license_key": "rsa-md5", "spdx_license_key": "RSA-MD", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "rsa-md5.json", "yml": "rsa-md5.yml", "html": "rsa-md5.html", "text": "rsa-md5.LICENSE"}, {"license_key": "rsa-proprietary", "spdx_license_key": "LicenseRef-scancode-rsa-proprietary", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "rsa-proprietary.json", "yml": "rsa-proprietary.yml", "html": "rsa-proprietary.html", "text": "rsa-proprietary.LICENSE"}, {"license_key": "rtools-util", "spdx_license_key": "LicenseRef-scancode-rtools-util", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "rtools-util.json", "yml": "rtools-util.yml", "html": "rtools-util.html", "text": "rtools-util.LICENSE"}, {"license_key": "ruby", "spdx_license_key": "Ruby", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "ruby.json", "yml": "ruby.yml", "html": "ruby.html", "text": "ruby.LICENSE"}, {"license_key": "rubyencoder-commercial", "spdx_license_key": "LicenseRef-scancode-rubyencoder-commercial", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "rubyencoder-commercial.json", "yml": "rubyencoder-commercial.yml", "html": "rubyencoder-commercial.html", "text": "rubyencoder-commercial.LICENSE"}, {"license_key": "rubyencoder-loader", "spdx_license_key": "LicenseRef-scancode-rubyencoder-loader", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "rubyencoder-loader.json", "yml": "rubyencoder-loader.yml", "html": "rubyencoder-loader.html", "text": "rubyencoder-loader.LICENSE"}, {"license_key": "rute", "spdx_license_key": "LicenseRef-scancode-rute", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "rute.json", "yml": "rute.yml", "html": "rute.html", "text": "rute.LICENSE"}, {"license_key": "rxtx-exception-lgpl-2.1", "spdx_license_key": "LicenseRef-scancode-rxtx-exception-lgpl-2.1", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "rxtx-exception-lgpl-2.1.json", "yml": "rxtx-exception-lgpl-2.1.yml", "html": "rxtx-exception-lgpl-2.1.html", "text": "rxtx-exception-lgpl-2.1.LICENSE"}, {"license_key": "ryszard-szopa", "spdx_license_key": "LicenseRef-scancode-ryszard-szopa", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ryszard-szopa.json", "yml": "ryszard-szopa.yml", "html": "ryszard-szopa.html", "text": "ryszard-szopa.LICENSE"}, {"license_key": "saas-mit", "spdx_license_key": "LicenseRef-scancode-saas-mit", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "saas-mit.json", "yml": "saas-mit.yml", "html": "saas-mit.html", "text": "saas-mit.LICENSE"}, {"license_key": "saf", "spdx_license_key": "LicenseRef-scancode-saf", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "saf.json", "yml": "saf.yml", "html": "saf.html", "text": "saf.LICENSE"}, {"license_key": "safecopy-eula", "spdx_license_key": "LicenseRef-scancode-safecopy-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "safecopy-eula.json", "yml": "safecopy-eula.yml", "html": "safecopy-eula.html", "text": "safecopy-eula.LICENSE"}, {"license_key": "san-francisco-font", "spdx_license_key": "LicenseRef-scancode-san-francisco-font", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "san-francisco-font.json", "yml": "san-francisco-font.yml", "html": "san-francisco-font.html", "text": "san-francisco-font.LICENSE"}, {"license_key": "sandeep", "spdx_license_key": "LicenseRef-scancode-sandeep", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sandeep.json", "yml": "sandeep.yml", "html": "sandeep.html", "text": "sandeep.LICENSE"}, {"license_key": "sane-exception-2.0-plus", "spdx_license_key": "LicenseRef-scancode-sane-exception-2.0-plus", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "sane-exception-2.0-plus.json", "yml": "sane-exception-2.0-plus.yml", "html": "sane-exception-2.0-plus.html", "text": "sane-exception-2.0-plus.LICENSE"}, {"license_key": "sash", "spdx_license_key": "LicenseRef-scancode-sash", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "sash.json", "yml": "sash.yml", "html": "sash.html", "text": "sash.LICENSE"}, {"license_key": "sata", "spdx_license_key": "LicenseRef-scancode-sata", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "sata.json", "yml": "sata.yml", "html": "sata.html", "text": "sata.LICENSE"}, {"license_key": "sax-pd", "spdx_license_key": "SAX-PD", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "sax-pd.json", "yml": "sax-pd.yml", "html": "sax-pd.html", "text": "sax-pd.LICENSE"}, {"license_key": "saxpath", "spdx_license_key": "Saxpath", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "saxpath.json", "yml": "saxpath.yml", "html": "saxpath.html", "text": "saxpath.LICENSE"}, {"license_key": "sbia-b", "spdx_license_key": "LicenseRef-scancode-sbia-b", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "sbia-b.json", "yml": "sbia-b.yml", "html": "sbia-b.html", "text": "sbia-b.LICENSE"}, {"license_key": "scancode-acknowledgment", "spdx_license_key": "LicenseRef-scancode-scancode-acknowledgment", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "scancode-acknowledgment.json", "yml": "scancode-acknowledgment.yml", "html": "scancode-acknowledgment.html", "text": "scancode-acknowledgment.LICENSE"}, {"license_key": "scanlogd-license", "spdx_license_key": "LicenseRef-scancode-scanlogd-license", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "scanlogd-license.json", "yml": "scanlogd-license.yml", "html": "scanlogd-license.html", "text": "scanlogd-license.LICENSE"}, {"license_key": "scansoft-1.2", "spdx_license_key": "LicenseRef-scancode-scansoft-1.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "scansoft-1.2.json", "yml": "scansoft-1.2.yml", "html": "scansoft-1.2.html", "text": "scansoft-1.2.LICENSE"}, {"license_key": "scea-1.0", "spdx_license_key": "SCEA", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "scea-1.0.json", "yml": "scea-1.0.yml", "html": "scea-1.0.html", "text": "scea-1.0.LICENSE"}, {"license_key": "schemereport", "spdx_license_key": "SchemeReport", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "schemereport.json", "yml": "schemereport.yml", "html": "schemereport.html", "text": "schemereport.LICENSE"}, {"license_key": "scilab-en-2005", "spdx_license_key": "LicenseRef-scancode-scilab-en", "other_spdx_license_keys": ["LicenseRef-scancode-scilba-en"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "scilab-en-2005.json", "yml": "scilab-en-2005.yml", "html": "scilab-en-2005.html", "text": "scilab-en-2005.LICENSE"}, {"license_key": "scilab-fr", "spdx_license_key": "LicenseRef-scancode-scilab-fr", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "scilab-fr.json", "yml": "scilab-fr.yml", "html": "scilab-fr.html", "text": "scilab-fr.LICENSE"}, {"license_key": "scintilla", "spdx_license_key": "LicenseRef-scancode-scintilla", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "scintilla.json", "yml": "scintilla.yml", "html": "scintilla.html", "text": "scintilla.LICENSE"}, {"license_key": "scola-en", "spdx_license_key": "LicenseRef-scancode-scola-en", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "scola-en.json", "yml": "scola-en.yml", "html": "scola-en.html", "text": "scola-en.LICENSE"}, {"license_key": "scola-fr", "spdx_license_key": "LicenseRef-scancode-scola-fr", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "scola-fr.json", "yml": "scola-fr.yml", "html": "scola-fr.html", "text": "scola-fr.LICENSE"}, {"license_key": "scribbles", "spdx_license_key": "LicenseRef-scancode-scribbles", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "scribbles.json", "yml": "scribbles.yml", "html": "scribbles.html", "text": "scribbles.LICENSE"}, {"license_key": "script-asylum", "spdx_license_key": "LicenseRef-scancode-script-asylum", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "script-asylum.json", "yml": "script-asylum.yml", "html": "script-asylum.html", "text": "script-asylum.LICENSE"}, {"license_key": "script-nikhilk", "spdx_license_key": "LicenseRef-scancode-script-nikhilk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "script-nikhilk.json", "yml": "script-nikhilk.yml", "html": "script-nikhilk.html", "text": "script-nikhilk.LICENSE"}, {"license_key": "scrub", "spdx_license_key": "LicenseRef-scancode-scrub", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "scrub.json", "yml": "scrub.yml", "html": "scrub.html", "text": "scrub.LICENSE"}, {"license_key": "scsl-3.0", "spdx_license_key": "LicenseRef-scancode-scsl-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "scsl-3.0.json", "yml": "scsl-3.0.yml", "html": "scsl-3.0.html", "text": "scsl-3.0.LICENSE"}, {"license_key": "secret-labs-2011", "spdx_license_key": "LicenseRef-scancode-secret-labs-2011", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "secret-labs-2011.json", "yml": "secret-labs-2011.yml", "html": "secret-labs-2011.html", "text": "secret-labs-2011.LICENSE"}, {"license_key": "see-license", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Unstated License", "json": "see-license.json", "yml": "see-license.yml", "html": "see-license.html", "text": "see-license.LICENSE"}, {"license_key": "selinux-nsa-declaration-1.0", "spdx_license_key": "libselinux-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "selinux-nsa-declaration-1.0.json", "yml": "selinux-nsa-declaration-1.0.yml", "html": "selinux-nsa-declaration-1.0.html", "text": "selinux-nsa-declaration-1.0.LICENSE"}, {"license_key": "sencha-app-floss-exception", "spdx_license_key": "LicenseRef-scancode-sencha-app-floss-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "sencha-app-floss-exception.json", "yml": "sencha-app-floss-exception.yml", "html": "sencha-app-floss-exception.html", "text": "sencha-app-floss-exception.LICENSE"}, {"license_key": "sencha-commercial", "spdx_license_key": "LicenseRef-scancode-sencha-commercial", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "sencha-commercial.json", "yml": "sencha-commercial.yml", "html": "sencha-commercial.html", "text": "sencha-commercial.LICENSE"}, {"license_key": "sencha-commercial-3.17", "spdx_license_key": "LicenseRef-scancode-sencha-commercial-3.17", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "sencha-commercial-3.17.json", "yml": "sencha-commercial-3.17.yml", "html": "sencha-commercial-3.17.html", "text": "sencha-commercial-3.17.LICENSE"}, {"license_key": "sencha-commercial-3.9", "spdx_license_key": "LicenseRef-scancode-sencha-commercial-3.9", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "sencha-commercial-3.9.json", "yml": "sencha-commercial-3.9.yml", "html": "sencha-commercial-3.9.html", "text": "sencha-commercial-3.9.LICENSE"}, {"license_key": "sencha-dev-floss-exception", "spdx_license_key": "LicenseRef-scancode-sencha-dev-floss-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "sencha-dev-floss-exception.json", "yml": "sencha-dev-floss-exception.yml", "html": "sencha-dev-floss-exception.html", "text": "sencha-dev-floss-exception.LICENSE"}, {"license_key": "sendmail", "spdx_license_key": "Sendmail", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "sendmail.json", "yml": "sendmail.yml", "html": "sendmail.html", "text": "sendmail.LICENSE"}, {"license_key": "sendmail-8.23", "spdx_license_key": "Sendmail-8.23", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "sendmail-8.23.json", "yml": "sendmail-8.23.yml", "html": "sendmail-8.23.html", "text": "sendmail-8.23.LICENSE"}, {"license_key": "service-comp-arch", "spdx_license_key": "LicenseRef-scancode-service-comp-arch", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "service-comp-arch.json", "yml": "service-comp-arch.yml", "html": "service-comp-arch.html", "text": "service-comp-arch.LICENSE"}, {"license_key": "sfl-license", "spdx_license_key": "iMatix", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "sfl-license.json", "yml": "sfl-license.yml", "html": "sfl-license.html", "text": "sfl-license.LICENSE"}, {"license_key": "sgi-cid-1.0", "spdx_license_key": "LicenseRef-scancode-sgi-cid-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "sgi-cid-1.0.json", "yml": "sgi-cid-1.0.yml", "html": "sgi-cid-1.0.html", "text": "sgi-cid-1.0.LICENSE"}, {"license_key": "sgi-freeb-1.1", "spdx_license_key": "SGI-B-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "sgi-freeb-1.1.json", "yml": "sgi-freeb-1.1.yml", "html": "sgi-freeb-1.1.html", "text": "sgi-freeb-1.1.LICENSE"}, {"license_key": "sgi-freeb-2.0", "spdx_license_key": "SGI-B-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "sgi-freeb-2.0.json", "yml": "sgi-freeb-2.0.yml", "html": "sgi-freeb-2.0.html", "text": "sgi-freeb-2.0.LICENSE"}, {"license_key": "sgi-fslb-1.0", "spdx_license_key": "SGI-B-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "sgi-fslb-1.0.json", "yml": "sgi-fslb-1.0.yml", "html": "sgi-fslb-1.0.html", "text": "sgi-fslb-1.0.LICENSE"}, {"license_key": "sgi-glx-1.0", "spdx_license_key": "LicenseRef-scancode-sgi-glx-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "sgi-glx-1.0.json", "yml": "sgi-glx-1.0.yml", "html": "sgi-glx-1.0.html", "text": "sgi-glx-1.0.LICENSE"}, {"license_key": "sglib", "spdx_license_key": "LicenseRef-scancode-sglib", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "sglib.json", "yml": "sglib.yml", "html": "sglib.html", "text": "sglib.LICENSE"}, {"license_key": "shavlik-eula", "spdx_license_key": "LicenseRef-scancode-shavlik-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "shavlik-eula.json", "yml": "shavlik-eula.yml", "html": "shavlik-eula.html", "text": "shavlik-eula.LICENSE"}, {"license_key": "shital-shah", "spdx_license_key": "LicenseRef-scancode-shital-shah", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "shital-shah.json", "yml": "shital-shah.yml", "html": "shital-shah.html", "text": "shital-shah.LICENSE"}, {"license_key": "shl-0.5", "spdx_license_key": "SHL-0.5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "shl-0.5.json", "yml": "shl-0.5.yml", "html": "shl-0.5.html", "text": "shl-0.5.LICENSE"}, {"license_key": "shl-0.51", "spdx_license_key": "SHL-0.51", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "shl-0.51.json", "yml": "shl-0.51.yml", "html": "shl-0.51.html", "text": "shl-0.51.LICENSE"}, {"license_key": "shl-2.0", "spdx_license_key": "SHL-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Permissive", "json": "shl-2.0.json", "yml": "shl-2.0.yml", "html": "shl-2.0.html", "text": "shl-2.0.LICENSE"}, {"license_key": "shl-2.1", "spdx_license_key": "SHL-2.1", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Permissive", "json": "shl-2.1.json", "yml": "shl-2.1.yml", "html": "shl-2.1.html", "text": "shl-2.1.LICENSE"}, {"license_key": "signal-gpl-3.0-exception", "spdx_license_key": "LicenseRef-scancode-signal-gpl-3.0-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "signal-gpl-3.0-exception.json", "yml": "signal-gpl-3.0-exception.yml", "html": "signal-gpl-3.0-exception.html", "text": "signal-gpl-3.0-exception.LICENSE"}, {"license_key": "simpl-1.1", "spdx_license_key": "LicenseRef-scancode-simpl-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "simpl-1.1.json", "yml": "simpl-1.1.yml", "html": "simpl-1.1.html", "text": "simpl-1.1.LICENSE"}, {"license_key": "simpl-2.0", "spdx_license_key": "SimPL-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "simpl-2.0.json", "yml": "simpl-2.0.yml", "html": "simpl-2.0.html", "text": "simpl-2.0.LICENSE"}, {"license_key": "sleepycat", "spdx_license_key": "Sleepycat", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "sleepycat.json", "yml": "sleepycat.yml", "html": "sleepycat.html", "text": "sleepycat.LICENSE"}, {"license_key": "slf4j-2005", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "slf4j-2005.json", "yml": "slf4j-2005.yml", "html": "slf4j-2005.html", "text": "slf4j-2005.LICENSE"}, {"license_key": "slf4j-2008", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "slf4j-2008.json", "yml": "slf4j-2008.yml", "html": "slf4j-2008.html", "text": "slf4j-2008.LICENSE"}, {"license_key": "slysoft-eula", "spdx_license_key": "LicenseRef-scancode-slysoft-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "slysoft-eula.json", "yml": "slysoft-eula.yml", "html": "slysoft-eula.html", "text": "slysoft-eula.LICENSE"}, {"license_key": "smail-gpl", "spdx_license_key": "LicenseRef-scancode-smail-gpl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "smail-gpl.json", "yml": "smail-gpl.yml", "html": "smail-gpl.html", "text": "smail-gpl.LICENSE"}, {"license_key": "smartlabs-freeware", "spdx_license_key": "LicenseRef-scancode-smartlabs-freeware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "smartlabs-freeware.json", "yml": "smartlabs-freeware.yml", "html": "smartlabs-freeware.html", "text": "smartlabs-freeware.LICENSE"}, {"license_key": "smppl", "spdx_license_key": "SMPPL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "smppl.json", "yml": "smppl.yml", "html": "smppl.html", "text": "smppl.LICENSE"}, {"license_key": "snapeda-design-exception-1.0", "spdx_license_key": "LicenseRef-scancode-snapeda-design-exception-1.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Permissive", "json": "snapeda-design-exception-1.0.json", "yml": "snapeda-design-exception-1.0.yml", "html": "snapeda-design-exception-1.0.html", "text": "snapeda-design-exception-1.0.LICENSE"}, {"license_key": "snia", "spdx_license_key": "SNIA", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "snia.json", "yml": "snia.yml", "html": "snia.html", "text": "snia.LICENSE"}, {"license_key": "snmp4j-smi", "spdx_license_key": "LicenseRef-scancode-snmp4j-smi", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "snmp4j-smi.json", "yml": "snmp4j-smi.yml", "html": "snmp4j-smi.html", "text": "snmp4j-smi.LICENSE"}, {"license_key": "snprintf", "spdx_license_key": "LicenseRef-scancode-snprintf", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "snprintf.json", "yml": "snprintf.yml", "html": "snprintf.html", "text": "snprintf.LICENSE"}, {"license_key": "softerra-ldap-browser-eula", "spdx_license_key": "LicenseRef-scancode-softerra-ldap-browser-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "softerra-ldap-browser-eula.json", "yml": "softerra-ldap-browser-eula.yml", "html": "softerra-ldap-browser-eula.html", "text": "softerra-ldap-browser-eula.LICENSE"}, {"license_key": "softfloat", "spdx_license_key": "LicenseRef-scancode-softfloat", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "softfloat.json", "yml": "softfloat.yml", "html": "softfloat.html", "text": "softfloat.LICENSE"}, {"license_key": "softfloat-2.0", "spdx_license_key": "LicenseRef-scancode-softfloat-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "softfloat-2.0.json", "yml": "softfloat-2.0.yml", "html": "softfloat-2.0.html", "text": "softfloat-2.0.LICENSE"}, {"license_key": "softsurfer", "spdx_license_key": "LicenseRef-scancode-softsurfer", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "softsurfer.json", "yml": "softsurfer.yml", "html": "softsurfer.html", "text": "softsurfer.LICENSE"}, {"license_key": "solace-software-eula-2020", "spdx_license_key": "LicenseRef-scancode-solace-software-eula-2020", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "solace-software-eula-2020.json", "yml": "solace-software-eula-2020.yml", "html": "solace-software-eula-2020.html", "text": "solace-software-eula-2020.LICENSE"}, {"license_key": "spark-jive", "spdx_license_key": "LicenseRef-scancode-spark-jive", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "spark-jive.json", "yml": "spark-jive.yml", "html": "spark-jive.html", "text": "spark-jive.LICENSE"}, {"license_key": "sparky", "spdx_license_key": "LicenseRef-scancode-sparky", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "sparky.json", "yml": "sparky.yml", "html": "sparky.html", "text": "sparky.LICENSE"}, {"license_key": "speechworks-1.1", "spdx_license_key": "LicenseRef-scancode-speechworks-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "speechworks-1.1.json", "yml": "speechworks-1.1.yml", "html": "speechworks-1.1.html", "text": "speechworks-1.1.LICENSE"}, {"license_key": "spell-checker-exception-lgpl-2.1-plus", "spdx_license_key": "LicenseRef-scancode-spell-exception-lgpl-2.1-plus", "other_spdx_license_keys": ["LicenseRef-scancode-spell-checker-exception-lgpl-2.1-plus"], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "spell-checker-exception-lgpl-2.1-plus.json", "yml": "spell-checker-exception-lgpl-2.1-plus.yml", "html": "spell-checker-exception-lgpl-2.1-plus.html", "text": "spell-checker-exception-lgpl-2.1-plus.LICENSE"}, {"license_key": "spl-1.0", "spdx_license_key": "SPL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "spl-1.0.json", "yml": "spl-1.0.yml", "html": "spl-1.0.html", "text": "spl-1.0.LICENSE"}, {"license_key": "splunk-3pp-eula", "spdx_license_key": "LicenseRef-scancode-splunk-3pp-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "splunk-3pp-eula.json", "yml": "splunk-3pp-eula.yml", "html": "splunk-3pp-eula.html", "text": "splunk-3pp-eula.LICENSE"}, {"license_key": "splunk-mint-tos-2018", "spdx_license_key": "LicenseRef-scancode-splunk-mint-tos-2018", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "splunk-mint-tos-2018.json", "yml": "splunk-mint-tos-2018.yml", "html": "splunk-mint-tos-2018.html", "text": "splunk-mint-tos-2018.LICENSE"}, {"license_key": "splunk-sla", "spdx_license_key": "LicenseRef-scancode-splunk-sla", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "splunk-sla.json", "yml": "splunk-sla.yml", "html": "splunk-sla.html", "text": "splunk-sla.LICENSE"}, {"license_key": "square-cla", "spdx_license_key": "LicenseRef-scancode-square-cla", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Patent License", "json": "square-cla.json", "yml": "square-cla.yml", "html": "square-cla.html", "text": "square-cla.LICENSE"}, {"license_key": "squeak", "spdx_license_key": "LicenseRef-scancode-squeak", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "squeak.json", "yml": "squeak.yml", "html": "squeak.html", "text": "squeak.LICENSE"}, {"license_key": "srgb", "spdx_license_key": "LicenseRef-scancode-srgb", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "srgb.json", "yml": "srgb.yml", "html": "srgb.html", "text": "srgb.LICENSE"}, {"license_key": "ssleay", "spdx_license_key": "LicenseRef-scancode-ssleay", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ssleay.json", "yml": "ssleay.yml", "html": "ssleay.html", "text": "ssleay.LICENSE"}, {"license_key": "ssleay-windows", "spdx_license_key": "LicenseRef-scancode-ssleay-windows", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ssleay-windows.json", "yml": "ssleay-windows.yml", "html": "ssleay-windows.html", "text": "ssleay-windows.LICENSE"}, {"license_key": "st-bsd-restricted", "spdx_license_key": "LicenseRef-scancode-st-bsd-restricted", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "st-bsd-restricted.json", "yml": "st-bsd-restricted.yml", "html": "st-bsd-restricted.html", "text": "st-bsd-restricted.LICENSE"}, {"license_key": "st-mcd-2.0", "spdx_license_key": "LicenseRef-scancode-st-mcd-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "st-mcd-2.0.json", "yml": "st-mcd-2.0.yml", "html": "st-mcd-2.0.html", "text": "st-mcd-2.0.LICENSE"}, {"license_key": "standard-ml-nj", "spdx_license_key": "SMLNJ", "other_spdx_license_keys": ["StandardML-NJ"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "standard-ml-nj.json", "yml": "standard-ml-nj.yml", "html": "standard-ml-nj.html", "text": "standard-ml-nj.LICENSE"}, {"license_key": "stanford-mrouted", "spdx_license_key": "LicenseRef-scancode-stanford-mrouted", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "stanford-mrouted.json", "yml": "stanford-mrouted.yml", "html": "stanford-mrouted.html", "text": "stanford-mrouted.LICENSE"}, {"license_key": "stanford-pvrg", "spdx_license_key": "LicenseRef-scancode-stanford-pvrg", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "stanford-pvrg.json", "yml": "stanford-pvrg.yml", "html": "stanford-pvrg.html", "text": "stanford-pvrg.LICENSE"}, {"license_key": "statewizard", "spdx_license_key": "LicenseRef-scancode-statewizard", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "statewizard.json", "yml": "statewizard.yml", "html": "statewizard.html", "text": "statewizard.LICENSE"}, {"license_key": "stax", "spdx_license_key": "LicenseRef-scancode-stax", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "stax.json", "yml": "stax.yml", "html": "stax.html", "text": "stax.LICENSE"}, {"license_key": "stlport-2000", "spdx_license_key": "LicenseRef-scancode-stlport-2000", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "stlport-2000.json", "yml": "stlport-2000.yml", "html": "stlport-2000.html", "text": "stlport-2000.LICENSE"}, {"license_key": "stlport-4.5", "spdx_license_key": "LicenseRef-scancode-stlport-4.5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "stlport-4.5.json", "yml": "stlport-4.5.yml", "html": "stlport-4.5.html", "text": "stlport-4.5.LICENSE"}, {"license_key": "stmicroelectronics-centrallabs", "spdx_license_key": "LicenseRef-scancode-stmicroelectronics-centrallabs", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "stmicroelectronics-centrallabs.json", "yml": "stmicroelectronics-centrallabs.yml", "html": "stmicroelectronics-centrallabs.html", "text": "stmicroelectronics-centrallabs.LICENSE"}, {"license_key": "stmicroelectronics-linux-firmware", "spdx_license_key": "LicenseRef-scancode-stmicro-linux-firmware", "other_spdx_license_keys": ["LicenseRef-scancode-stmicroelectronics-linux-firmware"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "stmicroelectronics-linux-firmware.json", "yml": "stmicroelectronics-linux-firmware.yml", "html": "stmicroelectronics-linux-firmware.html", "text": "stmicroelectronics-linux-firmware.LICENSE"}, {"license_key": "stream-benchmark", "spdx_license_key": "LicenseRef-scancode-stream-benchmark", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "stream-benchmark.json", "yml": "stream-benchmark.yml", "html": "stream-benchmark.html", "text": "stream-benchmark.LICENSE"}, {"license_key": "strongswan-exception", "spdx_license_key": "LicenseRef-scancode-strongswan-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "strongswan-exception.json", "yml": "strongswan-exception.yml", "html": "strongswan-exception.html", "text": "strongswan-exception.LICENSE"}, {"license_key": "stu-nicholls", "spdx_license_key": "LicenseRef-scancode-stu-nicholls", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "stu-nicholls.json", "yml": "stu-nicholls.yml", "html": "stu-nicholls.html", "text": "stu-nicholls.LICENSE"}, {"license_key": "subcommander-exception-2.0-plus", "spdx_license_key": "LicenseRef-scancode-subcommander-exception-2.0plus", "other_spdx_license_keys": ["LicenseRef-scancode-subcommander-exception-2.0-plus"], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "subcommander-exception-2.0-plus.json", "yml": "subcommander-exception-2.0-plus.yml", "html": "subcommander-exception-2.0-plus.html", "text": "subcommander-exception-2.0-plus.LICENSE"}, {"license_key": "sugarcrm-1.1.3", "spdx_license_key": "SugarCRM-1.1.3", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "sugarcrm-1.1.3.json", "yml": "sugarcrm-1.1.3.yml", "html": "sugarcrm-1.1.3.html", "text": "sugarcrm-1.1.3.LICENSE"}, {"license_key": "sun-bcl-11-06", "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-06", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-11-06.json", "yml": "sun-bcl-11-06.yml", "html": "sun-bcl-11-06.html", "text": "sun-bcl-11-06.LICENSE"}, {"license_key": "sun-bcl-11-07", "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-07", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-11-07.json", "yml": "sun-bcl-11-07.yml", "html": "sun-bcl-11-07.html", "text": "sun-bcl-11-07.LICENSE"}, {"license_key": "sun-bcl-11-08", "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-08", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-11-08.json", "yml": "sun-bcl-11-08.yml", "html": "sun-bcl-11-08.html", "text": "sun-bcl-11-08.LICENSE"}, {"license_key": "sun-bcl-j2re-1.2.x", "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.2.x", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-j2re-1.2.x.json", "yml": "sun-bcl-j2re-1.2.x.yml", "html": "sun-bcl-j2re-1.2.x.html", "text": "sun-bcl-j2re-1.2.x.LICENSE"}, {"license_key": "sun-bcl-j2re-1.4.2", "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.4.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-j2re-1.4.2.json", "yml": "sun-bcl-j2re-1.4.2.yml", "html": "sun-bcl-j2re-1.4.2.html", "text": "sun-bcl-j2re-1.4.2.LICENSE"}, {"license_key": "sun-bcl-j2re-1.4.x", "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.4.x", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-j2re-1.4.x.json", "yml": "sun-bcl-j2re-1.4.x.yml", "html": "sun-bcl-j2re-1.4.x.html", "text": "sun-bcl-j2re-1.4.x.LICENSE"}, {"license_key": "sun-bcl-j2re-5.0", "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-5.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-j2re-5.0.json", "yml": "sun-bcl-j2re-5.0.yml", "html": "sun-bcl-j2re-5.0.html", "text": "sun-bcl-j2re-5.0.LICENSE"}, {"license_key": "sun-bcl-java-servlet-imp-2.1.1", "spdx_license_key": "LicenseRef-scancode-sun-bcl-java-servlet-imp-2.1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-java-servlet-imp-2.1.1.json", "yml": "sun-bcl-java-servlet-imp-2.1.1.yml", "html": "sun-bcl-java-servlet-imp-2.1.1.html", "text": "sun-bcl-java-servlet-imp-2.1.1.LICENSE"}, {"license_key": "sun-bcl-javahelp", "spdx_license_key": "LicenseRef-scancode-sun-bcl-javahelp", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-javahelp.json", "yml": "sun-bcl-javahelp.yml", "html": "sun-bcl-javahelp.html", "text": "sun-bcl-javahelp.LICENSE"}, {"license_key": "sun-bcl-jimi-sdk", "spdx_license_key": "LicenseRef-scancode-sun-bcl-jimi-sdk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-jimi-sdk.json", "yml": "sun-bcl-jimi-sdk.yml", "html": "sun-bcl-jimi-sdk.html", "text": "sun-bcl-jimi-sdk.LICENSE"}, {"license_key": "sun-bcl-jre6", "spdx_license_key": "LicenseRef-scancode-sun-bcl-jre6", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-jre6.json", "yml": "sun-bcl-jre6.yml", "html": "sun-bcl-jre6.html", "text": "sun-bcl-jre6.LICENSE"}, {"license_key": "sun-bcl-jsmq", "spdx_license_key": "LicenseRef-scancode-sun-bcl-jsmq", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-jsmq.json", "yml": "sun-bcl-jsmq.yml", "html": "sun-bcl-jsmq.html", "text": "sun-bcl-jsmq.LICENSE"}, {"license_key": "sun-bcl-opendmk", "spdx_license_key": "LicenseRef-scancode-sun-bcl-opendmk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-opendmk.json", "yml": "sun-bcl-opendmk.yml", "html": "sun-bcl-opendmk.html", "text": "sun-bcl-opendmk.LICENSE"}, {"license_key": "sun-bcl-openjdk", "spdx_license_key": "LicenseRef-scancode-sun-bcl-openjdk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-openjdk.json", "yml": "sun-bcl-openjdk.yml", "html": "sun-bcl-openjdk.html", "text": "sun-bcl-openjdk.LICENSE"}, {"license_key": "sun-bcl-sdk-1.3", "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-1.3", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-sdk-1.3.json", "yml": "sun-bcl-sdk-1.3.yml", "html": "sun-bcl-sdk-1.3.html", "text": "sun-bcl-sdk-1.3.LICENSE"}, {"license_key": "sun-bcl-sdk-1.4.2", "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-1.4.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-sdk-1.4.2.json", "yml": "sun-bcl-sdk-1.4.2.yml", "html": "sun-bcl-sdk-1.4.2.html", "text": "sun-bcl-sdk-1.4.2.LICENSE"}, {"license_key": "sun-bcl-sdk-5.0", "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-5.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-sdk-5.0.json", "yml": "sun-bcl-sdk-5.0.yml", "html": "sun-bcl-sdk-5.0.html", "text": "sun-bcl-sdk-5.0.LICENSE"}, {"license_key": "sun-bcl-sdk-6.0", "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-6.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-sdk-6.0.json", "yml": "sun-bcl-sdk-6.0.yml", "html": "sun-bcl-sdk-6.0.html", "text": "sun-bcl-sdk-6.0.LICENSE"}, {"license_key": "sun-bcl-web-start", "spdx_license_key": "LicenseRef-scancode-sun-bcl-web-start", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-bcl-web-start.json", "yml": "sun-bcl-web-start.yml", "html": "sun-bcl-web-start.html", "text": "sun-bcl-web-start.LICENSE"}, {"license_key": "sun-bsd-extra", "spdx_license_key": "LicenseRef-scancode-sun-bsd-extra", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "sun-bsd-extra.json", "yml": "sun-bsd-extra.yml", "html": "sun-bsd-extra.html", "text": "sun-bsd-extra.LICENSE"}, {"license_key": "sun-bsd-no-nuclear", "spdx_license_key": "BSD-3-Clause-No-Nuclear-License", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "sun-bsd-no-nuclear.json", "yml": "sun-bsd-no-nuclear.yml", "html": "sun-bsd-no-nuclear.html", "text": "sun-bsd-no-nuclear.LICENSE"}, {"license_key": "sun-communications-api", "spdx_license_key": "LicenseRef-scancode-sun-communications-api", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-communications-api.json", "yml": "sun-communications-api.yml", "html": "sun-communications-api.html", "text": "sun-communications-api.LICENSE"}, {"license_key": "sun-ejb-spec-2.1", "spdx_license_key": "LicenseRef-scancode-sun-ejb-spec-2.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-ejb-spec-2.1.json", "yml": "sun-ejb-spec-2.1.yml", "html": "sun-ejb-spec-2.1.html", "text": "sun-ejb-spec-2.1.LICENSE"}, {"license_key": "sun-ejb-spec-3.0", "spdx_license_key": "LicenseRef-scancode-sun-ejb-spec-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-ejb-spec-3.0.json", "yml": "sun-ejb-spec-3.0.yml", "html": "sun-ejb-spec-3.0.html", "text": "sun-ejb-spec-3.0.LICENSE"}, {"license_key": "sun-entitlement-03-15", "spdx_license_key": "LicenseRef-scancode-sun-entitlement-03-15", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-entitlement-03-15.json", "yml": "sun-entitlement-03-15.yml", "html": "sun-entitlement-03-15.html", "text": "sun-entitlement-03-15.LICENSE"}, {"license_key": "sun-entitlement-jaf", "spdx_license_key": "LicenseRef-scancode-sun-entitlement-jaf", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-entitlement-jaf.json", "yml": "sun-entitlement-jaf.yml", "html": "sun-entitlement-jaf.html", "text": "sun-entitlement-jaf.LICENSE"}, {"license_key": "sun-glassfish", "spdx_license_key": "LicenseRef-scancode-sun-glassfish", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-glassfish.json", "yml": "sun-glassfish.yml", "html": "sun-glassfish.html", "text": "sun-glassfish.LICENSE"}, {"license_key": "sun-iiop", "spdx_license_key": "LicenseRef-scancode-sun-iiop", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-iiop.json", "yml": "sun-iiop.yml", "html": "sun-iiop.html", "text": "sun-iiop.LICENSE"}, {"license_key": "sun-java-transaction-api", "spdx_license_key": "LicenseRef-scancode-sun-java-transaction-api", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-java-transaction-api.json", "yml": "sun-java-transaction-api.yml", "html": "sun-java-transaction-api.html", "text": "sun-java-transaction-api.LICENSE"}, {"license_key": "sun-java-web-services-dev-pack-1.6", "spdx_license_key": "LicenseRef-scancode-sun-java-web-services-dev-1.6", "other_spdx_license_keys": ["LicenseRef-scancode-sun-java-web-services-dev-pack-1.6"], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-java-web-services-dev-pack-1.6.json", "yml": "sun-java-web-services-dev-pack-1.6.yml", "html": "sun-java-web-services-dev-pack-1.6.html", "text": "sun-java-web-services-dev-pack-1.6.LICENSE"}, {"license_key": "sun-javamail", "spdx_license_key": "LicenseRef-scancode-sun-javamail", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-javamail.json", "yml": "sun-javamail.yml", "html": "sun-javamail.html", "text": "sun-javamail.LICENSE"}, {"license_key": "sun-jsr-spec-04-2006", "spdx_license_key": "LicenseRef-scancode-sun-jsr-spec-04-2006", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-jsr-spec-04-2006.json", "yml": "sun-jsr-spec-04-2006.yml", "html": "sun-jsr-spec-04-2006.html", "text": "sun-jsr-spec-04-2006.LICENSE"}, {"license_key": "sun-jta-spec-1.0.1", "spdx_license_key": "LicenseRef-scancode-sun-jta-spec-1.0.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-jta-spec-1.0.1.json", "yml": "sun-jta-spec-1.0.1.yml", "html": "sun-jta-spec-1.0.1.html", "text": "sun-jta-spec-1.0.1.LICENSE"}, {"license_key": "sun-jta-spec-1.0.1b", "spdx_license_key": "LicenseRef-scancode-sun-jta-spec-1.0.1b", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-jta-spec-1.0.1b.json", "yml": "sun-jta-spec-1.0.1b.yml", "html": "sun-jta-spec-1.0.1b.html", "text": "sun-jta-spec-1.0.1b.LICENSE"}, {"license_key": "sun-no-high-risk-activities", "spdx_license_key": "LicenseRef-scancode-sun-no-high-risk-activities", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "sun-no-high-risk-activities.json", "yml": "sun-no-high-risk-activities.yml", "html": "sun-no-high-risk-activities.html", "text": "sun-no-high-risk-activities.LICENSE"}, {"license_key": "sun-project-x", "spdx_license_key": "LicenseRef-scancode-sun-project-x", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-project-x.json", "yml": "sun-project-x.yml", "html": "sun-project-x.html", "text": "sun-project-x.LICENSE"}, {"license_key": "sun-prop-non-commercial", "spdx_license_key": "LicenseRef-scancode-sun-prop-non-commercial", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-prop-non-commercial.json", "yml": "sun-prop-non-commercial.yml", "html": "sun-prop-non-commercial.html", "text": "sun-prop-non-commercial.LICENSE"}, {"license_key": "sun-proprietary-jdk", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Commercial", "json": "sun-proprietary-jdk.json", "yml": "sun-proprietary-jdk.yml", "html": "sun-proprietary-jdk.html", "text": "sun-proprietary-jdk.LICENSE"}, {"license_key": "sun-rpc", "spdx_license_key": "LicenseRef-scancode-sun-rpc", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "sun-rpc.json", "yml": "sun-rpc.yml", "html": "sun-rpc.html", "text": "sun-rpc.LICENSE"}, {"license_key": "sun-sdk-spec-1.1", "spdx_license_key": "LicenseRef-scancode-sun-sdk-spec-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-sdk-spec-1.1.json", "yml": "sun-sdk-spec-1.1.yml", "html": "sun-sdk-spec-1.1.html", "text": "sun-sdk-spec-1.1.LICENSE"}, {"license_key": "sun-sissl-1.0", "spdx_license_key": "LicenseRef-scancode-sun-sissl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "sun-sissl-1.0.json", "yml": "sun-sissl-1.0.yml", "html": "sun-sissl-1.0.html", "text": "sun-sissl-1.0.LICENSE"}, {"license_key": "sun-sissl-1.1", "spdx_license_key": "SISSL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-sissl-1.1.json", "yml": "sun-sissl-1.1.yml", "html": "sun-sissl-1.1.html", "text": "sun-sissl-1.1.LICENSE"}, {"license_key": "sun-sissl-1.2", "spdx_license_key": "SISSL-1.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sun-sissl-1.2.json", "yml": "sun-sissl-1.2.yml", "html": "sun-sissl-1.2.html", "text": "sun-sissl-1.2.LICENSE"}, {"license_key": "sun-source", "spdx_license_key": "LicenseRef-scancode-sun-source", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "sun-source.json", "yml": "sun-source.yml", "html": "sun-source.html", "text": "sun-source.LICENSE"}, {"license_key": "sun-ssscfr-1.1", "spdx_license_key": "LicenseRef-scancode-sun-ssscfr-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "sun-ssscfr-1.1.json", "yml": "sun-ssscfr-1.1.yml", "html": "sun-ssscfr-1.1.html", "text": "sun-ssscfr-1.1.LICENSE"}, {"license_key": "sunpro", "spdx_license_key": "LicenseRef-scancode-sunpro", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "sunpro.json", "yml": "sunpro.yml", "html": "sunpro.html", "text": "sunpro.LICENSE"}, {"license_key": "sunsoft", "spdx_license_key": "LicenseRef-scancode-sunsoft", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "sunsoft.json", "yml": "sunsoft.yml", "html": "sunsoft.html", "text": "sunsoft.LICENSE"}, {"license_key": "supervisor", "spdx_license_key": "LicenseRef-scancode-supervisor", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "supervisor.json", "yml": "supervisor.yml", "html": "supervisor.html", "text": "supervisor.LICENSE"}, {"license_key": "sustainable-use-1.0", "spdx_license_key": "LicenseRef-scancode-sustainable-use-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "sustainable-use-1.0.json", "yml": "sustainable-use-1.0.yml", "html": "sustainable-use-1.0.html", "text": "sustainable-use-1.0.LICENSE"}, {"license_key": "svndiff", "spdx_license_key": "LicenseRef-scancode-svndiff", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "svndiff.json", "yml": "svndiff.yml", "html": "svndiff.html", "text": "svndiff.LICENSE"}, {"license_key": "swig", "spdx_license_key": "LicenseRef-scancode-swig", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "swig.json", "yml": "swig.yml", "html": "swig.html", "text": "swig.LICENSE"}, {"license_key": "swl", "spdx_license_key": "SWL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "swl.json", "yml": "swl.yml", "html": "swl.html", "text": "swl.LICENSE"}, {"license_key": "sybase", "spdx_license_key": "Watcom-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "sybase.json", "yml": "sybase.yml", "html": "sybase.html", "text": "sybase.LICENSE"}, {"license_key": "symphonysoft", "spdx_license_key": "LicenseRef-scancode-symphonysoft", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "symphonysoft.json", "yml": "symphonysoft.yml", "html": "symphonysoft.html", "text": "symphonysoft.LICENSE"}, {"license_key": "synopsys-attribution", "spdx_license_key": "LicenseRef-scancode-synopsys-attribution", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "synopsys-attribution.json", "yml": "synopsys-attribution.yml", "html": "synopsys-attribution.html", "text": "synopsys-attribution.LICENSE"}, {"license_key": "synopsys-mit", "spdx_license_key": "LicenseRef-scancode-synopsys-mit", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "synopsys-mit.json", "yml": "synopsys-mit.yml", "html": "synopsys-mit.html", "text": "synopsys-mit.LICENSE"}, {"license_key": "syntext-serna-exception-1.0", "spdx_license_key": "LicenseRef-scancode-syntext-serna-exception-1.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "syntext-serna-exception-1.0.json", "yml": "syntext-serna-exception-1.0.yml", "html": "syntext-serna-exception-1.0.html", "text": "syntext-serna-exception-1.0.LICENSE"}, {"license_key": "synthesis-toolkit", "spdx_license_key": "LicenseRef-scancode-synthesis-toolkit", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "synthesis-toolkit.json", "yml": "synthesis-toolkit.yml", "html": "synthesis-toolkit.html", "text": "synthesis-toolkit.LICENSE"}, {"license_key": "takao-abe", "spdx_license_key": "LicenseRef-scancode-takao-abe", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "takao-abe.json", "yml": "takao-abe.yml", "html": "takao-abe.html", "text": "takao-abe.LICENSE"}, {"license_key": "takuya-ooura", "spdx_license_key": "LicenseRef-scancode-takuya-ooura", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "takuya-ooura.json", "yml": "takuya-ooura.yml", "html": "takuya-ooura.html", "text": "takuya-ooura.LICENSE"}, {"license_key": "taligent-jdk", "spdx_license_key": "LicenseRef-scancode-taligent-jdk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "taligent-jdk.json", "yml": "taligent-jdk.yml", "html": "taligent-jdk.html", "text": "taligent-jdk.LICENSE"}, {"license_key": "tanuki-community-sla-1.0", "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "tanuki-community-sla-1.0.json", "yml": "tanuki-community-sla-1.0.yml", "html": "tanuki-community-sla-1.0.html", "text": "tanuki-community-sla-1.0.LICENSE"}, {"license_key": "tanuki-community-sla-1.1", "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "tanuki-community-sla-1.1.json", "yml": "tanuki-community-sla-1.1.yml", "html": "tanuki-community-sla-1.1.html", "text": "tanuki-community-sla-1.1.LICENSE"}, {"license_key": "tanuki-community-sla-1.2", "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "tanuki-community-sla-1.2.json", "yml": "tanuki-community-sla-1.2.yml", "html": "tanuki-community-sla-1.2.html", "text": "tanuki-community-sla-1.2.LICENSE"}, {"license_key": "tanuki-community-sla-1.3", "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.3", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "tanuki-community-sla-1.3.json", "yml": "tanuki-community-sla-1.3.yml", "html": "tanuki-community-sla-1.3.html", "text": "tanuki-community-sla-1.3.LICENSE"}, {"license_key": "tanuki-development", "spdx_license_key": "LicenseRef-scancode-tanuki-development", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "tanuki-development.json", "yml": "tanuki-development.yml", "html": "tanuki-development.html", "text": "tanuki-development.LICENSE"}, {"license_key": "tanuki-maintenance", "spdx_license_key": "LicenseRef-scancode-tanuki-maintenance", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "tanuki-maintenance.json", "yml": "tanuki-maintenance.yml", "html": "tanuki-maintenance.html", "text": "tanuki-maintenance.LICENSE"}, {"license_key": "tapr-ohl-1.0", "spdx_license_key": "TAPR-OHL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "tapr-ohl-1.0.json", "yml": "tapr-ohl-1.0.yml", "html": "tapr-ohl-1.0.html", "text": "tapr-ohl-1.0.LICENSE"}, {"license_key": "tatu-ylonen", "spdx_license_key": "SSH-short", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "tatu-ylonen.json", "yml": "tatu-ylonen.yml", "html": "tatu-ylonen.html", "text": "tatu-ylonen.LICENSE"}, {"license_key": "tcl", "spdx_license_key": "TCL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "tcl.json", "yml": "tcl.yml", "html": "tcl.html", "text": "tcl.LICENSE"}, {"license_key": "tcp-wrappers", "spdx_license_key": "TCP-wrappers", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "tcp-wrappers.json", "yml": "tcp-wrappers.yml", "html": "tcp-wrappers.html", "text": "tcp-wrappers.LICENSE"}, {"license_key": "teamdev-services", "spdx_license_key": "LicenseRef-scancode-teamdev-services", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "teamdev-services.json", "yml": "teamdev-services.yml", "html": "teamdev-services.html", "text": "teamdev-services.LICENSE"}, {"license_key": "tekhvc", "spdx_license_key": "LicenseRef-scancode-tekhvc", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "tekhvc.json", "yml": "tekhvc.yml", "html": "tekhvc.html", "text": "tekhvc.LICENSE"}, {"license_key": "telerik-eula", "spdx_license_key": "LicenseRef-scancode-telerik-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "telerik-eula.json", "yml": "telerik-eula.yml", "html": "telerik-eula.html", "text": "telerik-eula.LICENSE"}, {"license_key": "tenable-nessus", "spdx_license_key": "LicenseRef-scancode-tenable-nessus", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "tenable-nessus.json", "yml": "tenable-nessus.yml", "html": "tenable-nessus.html", "text": "tenable-nessus.LICENSE"}, {"license_key": "term-readkey", "spdx_license_key": "LicenseRef-scancode-term-readkey", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "term-readkey.json", "yml": "term-readkey.yml", "html": "term-readkey.html", "text": "term-readkey.LICENSE"}, {"license_key": "tested-software", "spdx_license_key": "LicenseRef-scancode-tested-software", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "tested-software.json", "yml": "tested-software.yml", "html": "tested-software.html", "text": "tested-software.LICENSE"}, {"license_key": "tex-exception", "spdx_license_key": "LicenseRef-scancode-tex-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "tex-exception.json", "yml": "tex-exception.yml", "html": "tex-exception.html", "text": "tex-exception.LICENSE"}, {"license_key": "tex-live", "spdx_license_key": "LicenseRef-scancode-tex-live", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "tex-live.json", "yml": "tex-live.yml", "html": "tex-live.html", "text": "tex-live.LICENSE"}, {"license_key": "tfl", "spdx_license_key": "LicenseRef-scancode-tfl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "tfl.json", "yml": "tfl.yml", "html": "tfl.html", "text": "tfl.LICENSE"}, {"license_key": "tgppl-1.0", "spdx_license_key": "LicenseRef-scancode-tgppl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "tgppl-1.0.json", "yml": "tgppl-1.0.yml", "html": "tgppl-1.0.html", "text": "tgppl-1.0.LICENSE"}, {"license_key": "things-i-made-public-license", "spdx_license_key": "LicenseRef-scancode-things-i-made-public-license", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "things-i-made-public-license.json", "yml": "things-i-made-public-license.yml", "html": "things-i-made-public-license.html", "text": "things-i-made-public-license.LICENSE"}, {"license_key": "thomas-bandt", "spdx_license_key": "LicenseRef-scancode-thomas-bandt", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "thomas-bandt.json", "yml": "thomas-bandt.yml", "html": "thomas-bandt.html", "text": "thomas-bandt.LICENSE"}, {"license_key": "thor-pl", "spdx_license_key": "LicenseRef-scancode-thor-pl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "thor-pl.json", "yml": "thor-pl.yml", "html": "thor-pl.html", "text": "thor-pl.LICENSE"}, {"license_key": "ti-broadband-apps", "spdx_license_key": "LicenseRef-scancode-ti-broadband-apps", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ti-broadband-apps.json", "yml": "ti-broadband-apps.yml", "html": "ti-broadband-apps.html", "text": "ti-broadband-apps.LICENSE"}, {"license_key": "ti-linux-firmware", "spdx_license_key": "LicenseRef-scancode-ti-linux-firmware", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "ti-linux-firmware.json", "yml": "ti-linux-firmware.yml", "html": "ti-linux-firmware.html", "text": "ti-linux-firmware.LICENSE"}, {"license_key": "ti-restricted", "spdx_license_key": "LicenseRef-scancode-ti-restricted", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ti-restricted.json", "yml": "ti-restricted.yml", "html": "ti-restricted.html", "text": "ti-restricted.LICENSE"}, {"license_key": "tidy", "spdx_license_key": "HTMLTIDY", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "tidy.json", "yml": "tidy.yml", "html": "tidy.html", "text": "tidy.LICENSE"}, {"license_key": "tiger-crypto", "spdx_license_key": "LicenseRef-scancode-tiger-crypto", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "tiger-crypto.json", "yml": "tiger-crypto.yml", "html": "tiger-crypto.html", "text": "tiger-crypto.LICENSE"}, {"license_key": "tigra-calendar-3.2", "spdx_license_key": "LicenseRef-scancode-tigra-calendar-3.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "tigra-calendar-3.2.json", "yml": "tigra-calendar-3.2.yml", "html": "tigra-calendar-3.2.html", "text": "tigra-calendar-3.2.LICENSE"}, {"license_key": "tigra-calendar-4.0", "spdx_license_key": "LicenseRef-scancode-tigra-calendar-4.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "tigra-calendar-4.0.json", "yml": "tigra-calendar-4.0.yml", "html": "tigra-calendar-4.0.html", "text": "tigra-calendar-4.0.LICENSE"}, {"license_key": "tim-janik-2003", "spdx_license_key": "LicenseRef-scancode-tim-janik-2003", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "tim-janik-2003.json", "yml": "tim-janik-2003.yml", "html": "tim-janik-2003.html", "text": "tim-janik-2003.LICENSE"}, {"license_key": "timestamp-picker", "spdx_license_key": "LicenseRef-scancode-timestamp-picker", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "timestamp-picker.json", "yml": "timestamp-picker.yml", "html": "timestamp-picker.html", "text": "timestamp-picker.LICENSE"}, {"license_key": "tizen-sdk", "spdx_license_key": "LicenseRef-scancode-tizen-sdk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "tizen-sdk.json", "yml": "tizen-sdk.yml", "html": "tizen-sdk.html", "text": "tizen-sdk.LICENSE"}, {"license_key": "tmate", "spdx_license_key": "TMate", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "tmate.json", "yml": "tmate.yml", "html": "tmate.html", "text": "tmate.LICENSE"}, {"license_key": "torque-1.1", "spdx_license_key": "TORQUE-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "torque-1.1.json", "yml": "torque-1.1.yml", "html": "torque-1.1.html", "text": "torque-1.1.LICENSE"}, {"license_key": "tosl", "spdx_license_key": "TOSL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "tosl.json", "yml": "tosl.yml", "html": "tosl.html", "text": "tosl.LICENSE"}, {"license_key": "tpl-1.0", "spdx_license_key": "LicenseRef-scancode-tpl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "tpl-1.0.json", "yml": "tpl-1.0.yml", "html": "tpl-1.0.html", "text": "tpl-1.0.LICENSE"}, {"license_key": "trademark-notice", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Unstated License", "json": "trademark-notice.json", "yml": "trademark-notice.yml", "html": "trademark-notice.html", "text": "trademark-notice.LICENSE"}, {"license_key": "trca-odl-1.0", "spdx_license_key": "LicenseRef-scancode-trca-odl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "trca-odl-1.0.json", "yml": "trca-odl-1.0.yml", "html": "trca-odl-1.0.html", "text": "trca-odl-1.0.LICENSE"}, {"license_key": "treeview-developer", "spdx_license_key": "LicenseRef-scancode-treeview-developer", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "treeview-developer.json", "yml": "treeview-developer.yml", "html": "treeview-developer.html", "text": "treeview-developer.LICENSE"}, {"license_key": "treeview-distributor", "spdx_license_key": "LicenseRef-scancode-treeview-distributor", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "treeview-distributor.json", "yml": "treeview-distributor.yml", "html": "treeview-distributor.html", "text": "treeview-distributor.LICENSE"}, {"license_key": "triptracker", "spdx_license_key": "LicenseRef-scancode-triptracker", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "triptracker.json", "yml": "triptracker.yml", "html": "triptracker.html", "text": "triptracker.LICENSE"}, {"license_key": "trolltech-gpl-exception-1.0", "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "trolltech-gpl-exception-1.0.json", "yml": "trolltech-gpl-exception-1.0.yml", "html": "trolltech-gpl-exception-1.0.html", "text": "trolltech-gpl-exception-1.0.LICENSE"}, {"license_key": "trolltech-gpl-exception-1.1", "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.1", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "trolltech-gpl-exception-1.1.json", "yml": "trolltech-gpl-exception-1.1.yml", "html": "trolltech-gpl-exception-1.1.html", "text": "trolltech-gpl-exception-1.1.LICENSE"}, {"license_key": "trolltech-gpl-exception-1.2", "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.2", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "trolltech-gpl-exception-1.2.json", "yml": "trolltech-gpl-exception-1.2.yml", "html": "trolltech-gpl-exception-1.2.html", "text": "trolltech-gpl-exception-1.2.LICENSE"}, {"license_key": "truecrypt-3.1", "spdx_license_key": "LicenseRef-scancode-truecrypt-3.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "truecrypt-3.1.json", "yml": "truecrypt-3.1.yml", "html": "truecrypt-3.1.html", "text": "truecrypt-3.1.LICENSE"}, {"license_key": "tsl-2018", "spdx_license_key": "LicenseRef-scancode-tsl-2018", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "tsl-2018.json", "yml": "tsl-2018.yml", "html": "tsl-2018.html", "text": "tsl-2018.LICENSE"}, {"license_key": "tsl-2020", "spdx_license_key": "LicenseRef-scancode-tsl-2020", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "tsl-2020.json", "yml": "tsl-2020.yml", "html": "tsl-2020.html", "text": "tsl-2020.LICENSE"}, {"license_key": "tso-license", "spdx_license_key": "LicenseRef-scancode-tso-license", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "tso-license.json", "yml": "tso-license.yml", "html": "tso-license.html", "text": "tso-license.LICENSE"}, {"license_key": "ttcl", "spdx_license_key": "LicenseRef-scancode-ttcl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ttcl.json", "yml": "ttcl.yml", "html": "ttcl.html", "text": "ttcl.LICENSE"}, {"license_key": "ttf2pt1", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "ttf2pt1.json", "yml": "ttf2pt1.yml", "html": "ttf2pt1.html", "text": "ttf2pt1.LICENSE"}, {"license_key": "ttyp0", "spdx_license_key": "LicenseRef-scancode-ttyp0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ttyp0.json", "yml": "ttyp0.yml", "html": "ttyp0.html", "text": "ttyp0.LICENSE"}, {"license_key": "tu-berlin", "spdx_license_key": "TU-Berlin-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "tu-berlin.json", "yml": "tu-berlin.yml", "html": "tu-berlin.html", "text": "tu-berlin.LICENSE"}, {"license_key": "tu-berlin-2.0", "spdx_license_key": "TU-Berlin-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "tu-berlin-2.0.json", "yml": "tu-berlin-2.0.yml", "html": "tu-berlin-2.0.html", "text": "tu-berlin-2.0.LICENSE"}, {"license_key": "tumbolia", "spdx_license_key": "LicenseRef-scancode-tumbolia", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "tumbolia.json", "yml": "tumbolia.yml", "html": "tumbolia.html", "text": "tumbolia.LICENSE"}, {"license_key": "twisted-snmp", "spdx_license_key": "LicenseRef-scancode-twisted-snmp", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "twisted-snmp.json", "yml": "twisted-snmp.yml", "html": "twisted-snmp.html", "text": "twisted-snmp.LICENSE"}, {"license_key": "txl-10.5", "spdx_license_key": "LicenseRef-scancode-txl-10.5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "txl-10.5.json", "yml": "txl-10.5.yml", "html": "txl-10.5.html", "text": "txl-10.5.LICENSE"}, {"license_key": "u-boot-exception-2.0", "spdx_license_key": "u-boot-exception-2.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "u-boot-exception-2.0.json", "yml": "u-boot-exception-2.0.yml", "html": "u-boot-exception-2.0.html", "text": "u-boot-exception-2.0.LICENSE"}, {"license_key": "ubc", "spdx_license_key": "LicenseRef-scancode-ubc", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ubc.json", "yml": "ubc.yml", "html": "ubc.html", "text": "ubc.LICENSE"}, {"license_key": "ubdl", "spdx_license_key": "LicenseRef-scancode-ubdl", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "ubdl.json", "yml": "ubdl.yml", "html": "ubdl.html", "text": "ubdl.LICENSE"}, {"license_key": "ubuntu-font-1.0", "spdx_license_key": "LicenseRef-scancode-ubuntu-font-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "ubuntu-font-1.0.json", "yml": "ubuntu-font-1.0.yml", "html": "ubuntu-font-1.0.html", "text": "ubuntu-font-1.0.LICENSE"}, {"license_key": "ucl-1.0", "spdx_license_key": "UCL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "ucl-1.0.json", "yml": "ucl-1.0.yml", "html": "ucl-1.0.html", "text": "ucl-1.0.LICENSE"}, {"license_key": "unbuntu-font-1.0", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Free Restricted", "json": "unbuntu-font-1.0.json", "yml": "unbuntu-font-1.0.yml", "html": "unbuntu-font-1.0.html", "text": "unbuntu-font-1.0.LICENSE"}, {"license_key": "unicode", "spdx_license_key": "LicenseRef-scancode-unicode", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "unicode.json", "yml": "unicode.yml", "html": "unicode.html", "text": "unicode.LICENSE"}, {"license_key": "unicode-data-software", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "unicode-data-software.json", "yml": "unicode-data-software.yml", "html": "unicode-data-software.html", "text": "unicode-data-software.LICENSE"}, {"license_key": "unicode-dfs-2015", "spdx_license_key": "Unicode-DFS-2015", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "unicode-dfs-2015.json", "yml": "unicode-dfs-2015.yml", "html": "unicode-dfs-2015.html", "text": "unicode-dfs-2015.LICENSE"}, {"license_key": "unicode-dfs-2016", "spdx_license_key": "Unicode-DFS-2016", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "unicode-dfs-2016.json", "yml": "unicode-dfs-2016.yml", "html": "unicode-dfs-2016.html", "text": "unicode-dfs-2016.LICENSE"}, {"license_key": "unicode-icu-58", "spdx_license_key": "LicenseRef-scancode-unicode-icu-58", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "unicode-icu-58.json", "yml": "unicode-icu-58.yml", "html": "unicode-icu-58.html", "text": "unicode-icu-58.LICENSE"}, {"license_key": "unicode-mappings", "spdx_license_key": "LicenseRef-scancode-unicode-mappings", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "unicode-mappings.json", "yml": "unicode-mappings.yml", "html": "unicode-mappings.html", "text": "unicode-mappings.LICENSE"}, {"license_key": "unicode-tou", "spdx_license_key": "Unicode-TOU", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "unicode-tou.json", "yml": "unicode-tou.yml", "html": "unicode-tou.html", "text": "unicode-tou.LICENSE"}, {"license_key": "universal-foss-exception-1.0", "spdx_license_key": "Universal-FOSS-exception-1.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "universal-foss-exception-1.0.json", "yml": "universal-foss-exception-1.0.yml", "html": "universal-foss-exception-1.0.html", "text": "universal-foss-exception-1.0.LICENSE"}, {"license_key": "unknown", "spdx_license_key": "LicenseRef-scancode-unknown", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Unstated License", "json": "unknown.json", "yml": "unknown.yml", "html": "unknown.html", "text": "unknown.LICENSE"}, {"license_key": "unknown-license-reference", "spdx_license_key": "LicenseRef-scancode-unknown-license-reference", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Unstated License", "json": "unknown-license-reference.json", "yml": "unknown-license-reference.yml", "html": "unknown-license-reference.html", "text": "unknown-license-reference.LICENSE"}, {"license_key": "unknown-spdx", "spdx_license_key": "LicenseRef-scancode-unknown-spdx", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Unstated License", "json": "unknown-spdx.json", "yml": "unknown-spdx.yml", "html": "unknown-spdx.html", "text": "unknown-spdx.LICENSE"}, {"license_key": "unlicense", "spdx_license_key": "Unlicense", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "unlicense.json", "yml": "unlicense.yml", "html": "unlicense.html", "text": "unlicense.LICENSE"}, {"license_key": "unlimited-binary-linking", "spdx_license_key": "LicenseRef-scancode-unlimited-binary-linking", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Permissive", "json": "unlimited-binary-linking.json", "yml": "unlimited-binary-linking.yml", "html": "unlimited-binary-linking.html", "text": "unlimited-binary-linking.LICENSE"}, {"license_key": "unlimited-linking-exception-gpl", "spdx_license_key": "LicenseRef-scancode-unlimited-link-exception-gpl", "other_spdx_license_keys": ["LicenseRef-scancode-unlimited-linking-exception-gpl"], "is_exception": true, "is_deprecated": false, "category": "Copyleft", "json": "unlimited-linking-exception-gpl.json", "yml": "unlimited-linking-exception-gpl.yml", "html": "unlimited-linking-exception-gpl.html", "text": "unlimited-linking-exception-gpl.LICENSE"}, {"license_key": "unlimited-linking-exception-lgpl", "spdx_license_key": "LicenseRef-scancode-unlimited-link-exception-lgpl", "other_spdx_license_keys": ["LicenseRef-scancode-unlimited-linking-exception-lgpl"], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "unlimited-linking-exception-lgpl.json", "yml": "unlimited-linking-exception-lgpl.yml", "html": "unlimited-linking-exception-lgpl.html", "text": "unlimited-linking-exception-lgpl.LICENSE"}, {"license_key": "unpbook", "spdx_license_key": "LicenseRef-scancode-unpbook", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "unpbook.json", "yml": "unpbook.yml", "html": "unpbook.html", "text": "unpbook.LICENSE"}, {"license_key": "unpublished-source", "spdx_license_key": "LicenseRef-scancode-unpublished-source", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "unpublished-source.json", "yml": "unpublished-source.yml", "html": "unpublished-source.html", "text": "unpublished-source.LICENSE"}, {"license_key": "unrar", "spdx_license_key": "LicenseRef-scancode-unrar", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "unrar.json", "yml": "unrar.yml", "html": "unrar.html", "text": "unrar.LICENSE"}, {"license_key": "unsplash", "spdx_license_key": "LicenseRef-scancode-unsplash", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "unsplash.json", "yml": "unsplash.yml", "html": "unsplash.html", "text": "unsplash.LICENSE"}, {"license_key": "uofu-rfpl", "spdx_license_key": "LicenseRef-scancode-uofu-rfpl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "uofu-rfpl.json", "yml": "uofu-rfpl.yml", "html": "uofu-rfpl.html", "text": "uofu-rfpl.LICENSE"}, {"license_key": "uoi-ncsa", "spdx_license_key": "NCSA", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "uoi-ncsa.json", "yml": "uoi-ncsa.yml", "html": "uoi-ncsa.html", "text": "uoi-ncsa.LICENSE"}, {"license_key": "upl-1.0", "spdx_license_key": "UPL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "upl-1.0.json", "yml": "upl-1.0.yml", "html": "upl-1.0.html", "text": "upl-1.0.LICENSE"}, {"license_key": "upx-exception-2.0-plus", "spdx_license_key": "LicenseRef-scancode-upx-exception-2.0-plus", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "upx-exception-2.0-plus.json", "yml": "upx-exception-2.0-plus.yml", "html": "upx-exception-2.0-plus.html", "text": "upx-exception-2.0-plus.LICENSE"}, {"license_key": "us-govt-public-domain", "spdx_license_key": "LicenseRef-scancode-us-govt-public-domain", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "us-govt-public-domain.json", "yml": "us-govt-public-domain.yml", "html": "us-govt-public-domain.html", "text": "us-govt-public-domain.LICENSE"}, {"license_key": "us-govt-unlimited-rights", "spdx_license_key": "LicenseRef-scancode-us-govt-unlimited-rights", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "us-govt-unlimited-rights.json", "yml": "us-govt-unlimited-rights.yml", "html": "us-govt-unlimited-rights.html", "text": "us-govt-unlimited-rights.LICENSE"}, {"license_key": "usrobotics-permissive", "spdx_license_key": "LicenseRef-scancode-usrobotics-permissive", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "usrobotics-permissive.json", "yml": "usrobotics-permissive.yml", "html": "usrobotics-permissive.html", "text": "usrobotics-permissive.LICENSE"}, {"license_key": "utopia", "spdx_license_key": "LicenseRef-scancode-utopia", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "utopia.json", "yml": "utopia.yml", "html": "utopia.html", "text": "utopia.LICENSE"}, {"license_key": "vbaccelerator", "spdx_license_key": "LicenseRef-scancode-vbaccelerator", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "vbaccelerator.json", "yml": "vbaccelerator.yml", "html": "vbaccelerator.html", "text": "vbaccelerator.LICENSE"}, {"license_key": "vcalendar", "spdx_license_key": "LicenseRef-scancode-vcalendar", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "vcalendar.json", "yml": "vcalendar.yml", "html": "vcalendar.html", "text": "vcalendar.LICENSE"}, {"license_key": "verbatim-manual", "spdx_license_key": "Linux-man-pages-copyleft", "other_spdx_license_keys": ["Verbatim-man-pages", "LicenseRef-scancode-verbatim-manual"], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "verbatim-manual.json", "yml": "verbatim-manual.yml", "html": "verbatim-manual.html", "text": "verbatim-manual.LICENSE"}, {"license_key": "verisign", "spdx_license_key": "LicenseRef-scancode-verisign", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "verisign.json", "yml": "verisign.yml", "html": "verisign.html", "text": "verisign.LICENSE"}, {"license_key": "vhfpl-1.1", "spdx_license_key": "LicenseRef-scancode-vhfpl-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "vhfpl-1.1.json", "yml": "vhfpl-1.1.yml", "html": "vhfpl-1.1.html", "text": "vhfpl-1.1.LICENSE"}, {"license_key": "vic-metcalfe-pd", "spdx_license_key": "LicenseRef-scancode-vic-metcalfe-pd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "vic-metcalfe-pd.json", "yml": "vic-metcalfe-pd.yml", "html": "vic-metcalfe-pd.html", "text": "vic-metcalfe-pd.LICENSE"}, {"license_key": "vicomsoft-software", "spdx_license_key": "LicenseRef-scancode-vicomsoft-software", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "vicomsoft-software.json", "yml": "vicomsoft-software.yml", "html": "vicomsoft-software.html", "text": "vicomsoft-software.LICENSE"}, {"license_key": "viewflow-agpl-3.0-exception", "spdx_license_key": "LicenseRef-scancode-viewflow-agpl-3.0-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "viewflow-agpl-3.0-exception.json", "yml": "viewflow-agpl-3.0-exception.yml", "html": "viewflow-agpl-3.0-exception.html", "text": "viewflow-agpl-3.0-exception.LICENSE"}, {"license_key": "vim", "spdx_license_key": "Vim", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "vim.json", "yml": "vim.yml", "html": "vim.html", "text": "vim.LICENSE"}, {"license_key": "visual-idiot", "spdx_license_key": "LicenseRef-scancode-visual-idiot", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "visual-idiot.json", "yml": "visual-idiot.yml", "html": "visual-idiot.html", "text": "visual-idiot.LICENSE"}, {"license_key": "visual-numerics", "spdx_license_key": "LicenseRef-scancode-visual-numerics", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "visual-numerics.json", "yml": "visual-numerics.yml", "html": "visual-numerics.html", "text": "visual-numerics.LICENSE"}, {"license_key": "vita-nuova-liberal", "spdx_license_key": "LicenseRef-scancode-vita-nuova-liberal", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "vita-nuova-liberal.json", "yml": "vita-nuova-liberal.yml", "html": "vita-nuova-liberal.html", "text": "vita-nuova-liberal.LICENSE"}, {"license_key": "vitesse-prop", "spdx_license_key": "LicenseRef-scancode-vitesse-prop", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "vitesse-prop.json", "yml": "vitesse-prop.yml", "html": "vitesse-prop.html", "text": "vitesse-prop.LICENSE"}, {"license_key": "vixie-cron", "spdx_license_key": "LicenseRef-scancode-vixie-cron", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "vixie-cron.json", "yml": "vixie-cron.yml", "html": "vixie-cron.html", "text": "vixie-cron.LICENSE"}, {"license_key": "vnc-viewer-ios", "spdx_license_key": "LicenseRef-scancode-vnc-viewer-ios", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "vnc-viewer-ios.json", "yml": "vnc-viewer-ios.yml", "html": "vnc-viewer-ios.html", "text": "vnc-viewer-ios.LICENSE"}, {"license_key": "volatility-vsl-v1.0", "spdx_license_key": "LicenseRef-scancode-volatility-vsl-v1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "volatility-vsl-v1.0.json", "yml": "volatility-vsl-v1.0.yml", "html": "volatility-vsl-v1.0.html", "text": "volatility-vsl-v1.0.LICENSE"}, {"license_key": "vostrom", "spdx_license_key": "VOSTROM", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "vostrom.json", "yml": "vostrom.yml", "html": "vostrom.html", "text": "vostrom.LICENSE"}, {"license_key": "vpl-1.1", "spdx_license_key": "LicenseRef-scancode-vpl-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "vpl-1.1.json", "yml": "vpl-1.1.yml", "html": "vpl-1.1.html", "text": "vpl-1.1.LICENSE"}, {"license_key": "vpl-1.2", "spdx_license_key": "LicenseRef-scancode-vpl-1.2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "vpl-1.2.json", "yml": "vpl-1.2.yml", "html": "vpl-1.2.html", "text": "vpl-1.2.LICENSE"}, {"license_key": "vs10x-code-map", "spdx_license_key": "LicenseRef-scancode-vs10x-code-map", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "vs10x-code-map.json", "yml": "vs10x-code-map.yml", "html": "vs10x-code-map.html", "text": "vs10x-code-map.LICENSE"}, {"license_key": "vsl-1.0", "spdx_license_key": "VSL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "vsl-1.0.json", "yml": "vsl-1.0.yml", "html": "vsl-1.0.html", "text": "vsl-1.0.LICENSE"}, {"license_key": "vuforia-2013-07-29", "spdx_license_key": "LicenseRef-scancode-vuforia-2013-07-29", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "vuforia-2013-07-29.json", "yml": "vuforia-2013-07-29.yml", "html": "vuforia-2013-07-29.html", "text": "vuforia-2013-07-29.LICENSE"}, {"license_key": "w3c", "spdx_license_key": "W3C", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "w3c.json", "yml": "w3c.yml", "html": "w3c.html", "text": "w3c.LICENSE"}, {"license_key": "w3c-docs-19990405", "spdx_license_key": "LicenseRef-scancode-w3c-docs-19990405", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "w3c-docs-19990405.json", "yml": "w3c-docs-19990405.yml", "html": "w3c-docs-19990405.html", "text": "w3c-docs-19990405.LICENSE"}, {"license_key": "w3c-docs-20021231", "spdx_license_key": "LicenseRef-scancode-w3c-docs-20021231", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "w3c-docs-20021231.json", "yml": "w3c-docs-20021231.yml", "html": "w3c-docs-20021231.html", "text": "w3c-docs-20021231.LICENSE"}, {"license_key": "w3c-documentation", "spdx_license_key": "LicenseRef-scancode-w3c-documentation", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "w3c-documentation.json", "yml": "w3c-documentation.yml", "html": "w3c-documentation.html", "text": "w3c-documentation.LICENSE"}, {"license_key": "w3c-software-19980720", "spdx_license_key": "W3C-19980720", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "w3c-software-19980720.json", "yml": "w3c-software-19980720.yml", "html": "w3c-software-19980720.html", "text": "w3c-software-19980720.LICENSE"}, {"license_key": "w3c-software-20021231", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "w3c-software-20021231.json", "yml": "w3c-software-20021231.yml", "html": "w3c-software-20021231.html", "text": "w3c-software-20021231.LICENSE"}, {"license_key": "w3c-software-doc-20150513", "spdx_license_key": "W3C-20150513", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "w3c-software-doc-20150513.json", "yml": "w3c-software-doc-20150513.yml", "html": "w3c-software-doc-20150513.html", "text": "w3c-software-doc-20150513.LICENSE"}, {"license_key": "w3c-test-suite", "spdx_license_key": "LicenseRef-scancode-w3c-test-suite", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "w3c-test-suite.json", "yml": "w3c-test-suite.yml", "html": "w3c-test-suite.html", "text": "w3c-test-suite.LICENSE"}, {"license_key": "warranty-disclaimer", "spdx_license_key": "LicenseRef-scancode-warranty-disclaimer", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Unstated License", "json": "warranty-disclaimer.json", "yml": "warranty-disclaimer.yml", "html": "warranty-disclaimer.html", "text": "warranty-disclaimer.LICENSE"}, {"license_key": "waterfall-feed-parser", "spdx_license_key": "LicenseRef-scancode-waterfall-feed-parser", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "waterfall-feed-parser.json", "yml": "waterfall-feed-parser.yml", "html": "waterfall-feed-parser.html", "text": "waterfall-feed-parser.LICENSE"}, {"license_key": "westhawk", "spdx_license_key": "LicenseRef-scancode-westhawk", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "westhawk.json", "yml": "westhawk.yml", "html": "westhawk.html", "text": "westhawk.LICENSE"}, {"license_key": "whistle", "spdx_license_key": "LicenseRef-scancode-whistle", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "whistle.json", "yml": "whistle.yml", "html": "whistle.html", "text": "whistle.LICENSE"}, {"license_key": "whitecat", "spdx_license_key": "LicenseRef-scancode-whitecat", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "whitecat.json", "yml": "whitecat.yml", "html": "whitecat.html", "text": "whitecat.LICENSE"}, {"license_key": "wide-license", "spdx_license_key": "LicenseRef-scancode-wide-license", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "wide-license.json", "yml": "wide-license.yml", "html": "wide-license.html", "text": "wide-license.LICENSE"}, {"license_key": "wifi-alliance", "spdx_license_key": "LicenseRef-scancode-wifi-alliance", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "wifi-alliance.json", "yml": "wifi-alliance.yml", "html": "wifi-alliance.html", "text": "wifi-alliance.LICENSE"}, {"license_key": "william-alexander", "spdx_license_key": "LicenseRef-scancode-william-alexander", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "william-alexander.json", "yml": "william-alexander.yml", "html": "william-alexander.html", "text": "william-alexander.LICENSE"}, {"license_key": "wince-50-shared-source", "spdx_license_key": "LicenseRef-scancode-wince-50-shared-source", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "wince-50-shared-source.json", "yml": "wince-50-shared-source.yml", "html": "wince-50-shared-source.html", "text": "wince-50-shared-source.LICENSE"}, {"license_key": "windriver-commercial", "spdx_license_key": "LicenseRef-scancode-windriver-commercial", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "windriver-commercial.json", "yml": "windriver-commercial.yml", "html": "windriver-commercial.html", "text": "windriver-commercial.LICENSE"}, {"license_key": "wingo", "spdx_license_key": "LicenseRef-scancode-wingo", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "wingo.json", "yml": "wingo.yml", "html": "wingo.html", "text": "wingo.LICENSE"}, {"license_key": "wink", "spdx_license_key": "LicenseRef-scancode-wink", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "wink.json", "yml": "wink.yml", "html": "wink.html", "text": "wink.LICENSE"}, {"license_key": "winzip-eula", "spdx_license_key": "LicenseRef-scancode-winzip-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "winzip-eula.json", "yml": "winzip-eula.yml", "html": "winzip-eula.html", "text": "winzip-eula.LICENSE"}, {"license_key": "winzip-self-extractor", "spdx_license_key": "LicenseRef-scancode-winzip-self-extractor", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "winzip-self-extractor.json", "yml": "winzip-self-extractor.yml", "html": "winzip-self-extractor.html", "text": "winzip-self-extractor.LICENSE"}, {"license_key": "wol", "spdx_license_key": "LicenseRef-scancode-wol", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "wol.json", "yml": "wol.yml", "html": "wol.html", "text": "wol.LICENSE"}, {"license_key": "wordnet", "spdx_license_key": "LicenseRef-scancode-wordnet", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "wordnet.json", "yml": "wordnet.yml", "html": "wordnet.html", "text": "wordnet.LICENSE"}, {"license_key": "wrox", "spdx_license_key": "LicenseRef-scancode-wrox", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "wrox.json", "yml": "wrox.yml", "html": "wrox.html", "text": "wrox.LICENSE"}, {"license_key": "wrox-download", "spdx_license_key": "LicenseRef-scancode-wrox-download", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Source-available", "json": "wrox-download.json", "yml": "wrox-download.yml", "html": "wrox-download.html", "text": "wrox-download.LICENSE"}, {"license_key": "ws-addressing-spec", "spdx_license_key": "LicenseRef-scancode-ws-addressing-spec", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ws-addressing-spec.json", "yml": "ws-addressing-spec.yml", "html": "ws-addressing-spec.html", "text": "ws-addressing-spec.LICENSE"}, {"license_key": "ws-policy-specification", "spdx_license_key": "LicenseRef-scancode-ws-policy-specification", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ws-policy-specification.json", "yml": "ws-policy-specification.yml", "html": "ws-policy-specification.html", "text": "ws-policy-specification.LICENSE"}, {"license_key": "ws-trust-specification", "spdx_license_key": "LicenseRef-scancode-ws-trust-specification", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "ws-trust-specification.json", "yml": "ws-trust-specification.yml", "html": "ws-trust-specification.html", "text": "ws-trust-specification.LICENSE"}, {"license_key": "wsuipa", "spdx_license_key": "Wsuipa", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "wsuipa.json", "yml": "wsuipa.yml", "html": "wsuipa.html", "text": "wsuipa.LICENSE"}, {"license_key": "wtfnmfpl-1.0", "spdx_license_key": "LicenseRef-scancode-wtfnmfpl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "wtfnmfpl-1.0.json", "yml": "wtfnmfpl-1.0.yml", "html": "wtfnmfpl-1.0.html", "text": "wtfnmfpl-1.0.LICENSE"}, {"license_key": "wtfpl-1.0", "spdx_license_key": "LicenseRef-scancode-wtfpl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "wtfpl-1.0.json", "yml": "wtfpl-1.0.yml", "html": "wtfpl-1.0.html", "text": "wtfpl-1.0.LICENSE"}, {"license_key": "wtfpl-2.0", "spdx_license_key": "WTFPL", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "wtfpl-2.0.json", "yml": "wtfpl-2.0.yml", "html": "wtfpl-2.0.html", "text": "wtfpl-2.0.LICENSE"}, {"license_key": "wthpl-1.0", "spdx_license_key": "LicenseRef-scancode-wthpl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Public Domain", "json": "wthpl-1.0.json", "yml": "wthpl-1.0.yml", "html": "wthpl-1.0.html", "text": "wthpl-1.0.LICENSE"}, {"license_key": "wxwidgets", "spdx_license_key": "LicenseRef-scancode-wxwidgets", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "wxwidgets.json", "yml": "wxwidgets.yml", "html": "wxwidgets.html", "text": "wxwidgets.LICENSE"}, {"license_key": "wxwindows", "spdx_license_key": "wxWindows", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Copyleft Limited", "json": "wxwindows.json", "yml": "wxwindows.yml", "html": "wxwindows.html", "text": "wxwindows.LICENSE"}, {"license_key": "wxwindows-exception-3.1", "spdx_license_key": "WxWindows-exception-3.1", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "wxwindows-exception-3.1.json", "yml": "wxwindows-exception-3.1.yml", "html": "wxwindows-exception-3.1.html", "text": "wxwindows-exception-3.1.LICENSE"}, {"license_key": "wxwindows-r-3.0", "spdx_license_key": "LicenseRef-scancode-wxwindows-r-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "wxwindows-r-3.0.json", "yml": "wxwindows-r-3.0.yml", "html": "wxwindows-r-3.0.html", "text": "wxwindows-r-3.0.LICENSE"}, {"license_key": "wxwindows-u-3.0", "spdx_license_key": "LicenseRef-scancode-wxwindows-u-3.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "wxwindows-u-3.0.json", "yml": "wxwindows-u-3.0.yml", "html": "wxwindows-u-3.0.html", "text": "wxwindows-u-3.0.LICENSE"}, {"license_key": "x11", "spdx_license_key": "ICU", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11.json", "yml": "x11.yml", "html": "x11.html", "text": "x11.LICENSE"}, {"license_key": "x11-acer", "spdx_license_key": "LicenseRef-scancode-x11-acer", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-acer.json", "yml": "x11-acer.yml", "html": "x11-acer.html", "text": "x11-acer.LICENSE"}, {"license_key": "x11-adobe", "spdx_license_key": "LicenseRef-scancode-x11-adobe", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-adobe.json", "yml": "x11-adobe.yml", "html": "x11-adobe.html", "text": "x11-adobe.LICENSE"}, {"license_key": "x11-adobe-dec", "spdx_license_key": "LicenseRef-scancode-x11-adobe-dec", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-adobe-dec.json", "yml": "x11-adobe-dec.yml", "html": "x11-adobe-dec.html", "text": "x11-adobe-dec.LICENSE"}, {"license_key": "x11-bitstream", "spdx_license_key": "LicenseRef-scancode-x11-bitstream", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-bitstream.json", "yml": "x11-bitstream.yml", "html": "x11-bitstream.html", "text": "x11-bitstream.LICENSE"}, {"license_key": "x11-dec1", "spdx_license_key": "LicenseRef-scancode-x11-dec1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-dec1.json", "yml": "x11-dec1.yml", "html": "x11-dec1.html", "text": "x11-dec1.LICENSE"}, {"license_key": "x11-dec2", "spdx_license_key": "LicenseRef-scancode-x11-dec2", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-dec2.json", "yml": "x11-dec2.yml", "html": "x11-dec2.html", "text": "x11-dec2.LICENSE"}, {"license_key": "x11-doc", "spdx_license_key": "LicenseRef-scancode-x11-doc", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-doc.json", "yml": "x11-doc.yml", "html": "x11-doc.html", "text": "x11-doc.LICENSE"}, {"license_key": "x11-dsc", "spdx_license_key": "LicenseRef-scancode-x11-dsc", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-dsc.json", "yml": "x11-dsc.yml", "html": "x11-dsc.html", "text": "x11-dsc.LICENSE"}, {"license_key": "x11-fsf", "spdx_license_key": "X11-distribute-modifications-variant", "other_spdx_license_keys": ["LicenseRef-scancode-x11-fsf"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-fsf.json", "yml": "x11-fsf.yml", "html": "x11-fsf.html", "text": "x11-fsf.LICENSE"}, {"license_key": "x11-hanson", "spdx_license_key": "LicenseRef-scancode-x11-hanson", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-hanson.json", "yml": "x11-hanson.yml", "html": "x11-hanson.html", "text": "x11-hanson.LICENSE"}, {"license_key": "x11-ibm", "spdx_license_key": "LicenseRef-scancode-x11-ibm", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "x11-ibm.json", "yml": "x11-ibm.yml", "html": "x11-ibm.html", "text": "x11-ibm.LICENSE"}, {"license_key": "x11-keith-packard", "spdx_license_key": "HPND-sell-variant", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-keith-packard.json", "yml": "x11-keith-packard.yml", "html": "x11-keith-packard.html", "text": "x11-keith-packard.LICENSE"}, {"license_key": "x11-lucent", "spdx_license_key": "LicenseRef-scancode-x11-lucent", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-lucent.json", "yml": "x11-lucent.yml", "html": "x11-lucent.html", "text": "x11-lucent.LICENSE"}, {"license_key": "x11-lucent-variant", "spdx_license_key": "LicenseRef-scancode-x11-lucent-variant", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-lucent-variant.json", "yml": "x11-lucent-variant.yml", "html": "x11-lucent-variant.html", "text": "x11-lucent-variant.LICENSE"}, {"license_key": "x11-oar", "spdx_license_key": "LicenseRef-scancode-x11-oar", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-oar.json", "yml": "x11-oar.yml", "html": "x11-oar.html", "text": "x11-oar.LICENSE"}, {"license_key": "x11-opengl", "spdx_license_key": "LicenseRef-scancode-x11-opengl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-opengl.json", "yml": "x11-opengl.yml", "html": "x11-opengl.html", "text": "x11-opengl.LICENSE"}, {"license_key": "x11-opengroup", "spdx_license_key": "MIT-open-group", "other_spdx_license_keys": ["LicenseRef-scancode-x11-opengroup"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-opengroup.json", "yml": "x11-opengroup.yml", "html": "x11-opengroup.html", "text": "x11-opengroup.LICENSE"}, {"license_key": "x11-quarterdeck", "spdx_license_key": "LicenseRef-scancode-x11-quarterdeck", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-quarterdeck.json", "yml": "x11-quarterdeck.yml", "html": "x11-quarterdeck.html", "text": "x11-quarterdeck.LICENSE"}, {"license_key": "x11-r75", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "x11-r75.json", "yml": "x11-r75.yml", "html": "x11-r75.html", "text": "x11-r75.LICENSE"}, {"license_key": "x11-realmode", "spdx_license_key": "LicenseRef-scancode-x11-realmode", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-realmode.json", "yml": "x11-realmode.yml", "html": "x11-realmode.html", "text": "x11-realmode.LICENSE"}, {"license_key": "x11-sg", "spdx_license_key": "LicenseRef-scancode-x11-sg", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-sg.json", "yml": "x11-sg.yml", "html": "x11-sg.html", "text": "x11-sg.LICENSE"}, {"license_key": "x11-stanford", "spdx_license_key": "LicenseRef-scancode-x11-stanford", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-stanford.json", "yml": "x11-stanford.yml", "html": "x11-stanford.html", "text": "x11-stanford.LICENSE"}, {"license_key": "x11-tektronix", "spdx_license_key": "LicenseRef-scancode-x11-tektronix", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-tektronix.json", "yml": "x11-tektronix.yml", "html": "x11-tektronix.html", "text": "x11-tektronix.LICENSE"}, {"license_key": "x11-tiff", "spdx_license_key": "libtiff", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-tiff.json", "yml": "x11-tiff.yml", "html": "x11-tiff.html", "text": "x11-tiff.LICENSE"}, {"license_key": "x11-x11r5", "spdx_license_key": "LicenseRef-scancode-x11-x11r5", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-x11r5.json", "yml": "x11-x11r5.yml", "html": "x11-x11r5.html", "text": "x11-x11r5.LICENSE"}, {"license_key": "x11-xconsortium", "spdx_license_key": "X11", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-xconsortium.json", "yml": "x11-xconsortium.yml", "html": "x11-xconsortium.html", "text": "x11-xconsortium.LICENSE"}, {"license_key": "x11-xconsortium-veillard", "spdx_license_key": "LicenseRef-scancode-x11-xconsortium-veillard", "other_spdx_license_keys": ["LicenseRef-scancode-x11-xconsortium_veillard"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "x11-xconsortium-veillard.json", "yml": "x11-xconsortium-veillard.yml", "html": "x11-xconsortium-veillard.html", "text": "x11-xconsortium-veillard.LICENSE"}, {"license_key": "x11-xconsortium_veillard", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "x11-xconsortium_veillard.json", "yml": "x11-xconsortium_veillard.yml", "html": "x11-xconsortium_veillard.html", "text": "x11-xconsortium_veillard.LICENSE"}, {"license_key": "x11r5-authors", "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, "category": "Permissive", "json": "x11r5-authors.json", "yml": "x11r5-authors.yml", "html": "x11r5-authors.html", "text": "x11r5-authors.LICENSE"}, {"license_key": "xceed-community-2021", "spdx_license_key": "LicenseRef-scancode-xceed-community-2021", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "xceed-community-2021.json", "yml": "xceed-community-2021.yml", "html": "xceed-community-2021.html", "text": "xceed-community-2021.LICENSE"}, {"license_key": "xenomai-gpl-exception", "spdx_license_key": "LicenseRef-scancode-xenomai-gpl-exception", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "xenomai-gpl-exception.json", "yml": "xenomai-gpl-exception.yml", "html": "xenomai-gpl-exception.html", "text": "xenomai-gpl-exception.LICENSE"}, {"license_key": "xfree86-1.0", "spdx_license_key": "LicenseRef-scancode-xfree86-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "xfree86-1.0.json", "yml": "xfree86-1.0.yml", "html": "xfree86-1.0.html", "text": "xfree86-1.0.LICENSE"}, {"license_key": "xfree86-1.1", "spdx_license_key": "XFree86-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "xfree86-1.1.json", "yml": "xfree86-1.1.yml", "html": "xfree86-1.1.html", "text": "xfree86-1.1.LICENSE"}, {"license_key": "xilinx-2016", "spdx_license_key": "LicenseRef-scancode-xilinx-2016", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Free Restricted", "json": "xilinx-2016.json", "yml": "xilinx-2016.yml", "html": "xilinx-2016.html", "text": "xilinx-2016.LICENSE"}, {"license_key": "xinetd", "spdx_license_key": "xinetd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "xinetd.json", "yml": "xinetd.yml", "html": "xinetd.html", "text": "xinetd.LICENSE"}, {"license_key": "xming", "spdx_license_key": "LicenseRef-scancode-xming", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "xming.json", "yml": "xming.yml", "html": "xming.html", "text": "xming.LICENSE"}, {"license_key": "xmldb-1.0", "spdx_license_key": "LicenseRef-scancode-xmldb-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "xmldb-1.0.json", "yml": "xmldb-1.0.yml", "html": "xmldb-1.0.html", "text": "xmldb-1.0.LICENSE"}, {"license_key": "xnet", "spdx_license_key": "Xnet", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "xnet.json", "yml": "xnet.yml", "html": "xnet.html", "text": "xnet.LICENSE"}, {"license_key": "xskat", "spdx_license_key": "XSkat", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "xskat.json", "yml": "xskat.yml", "html": "xskat.html", "text": "xskat.LICENSE"}, {"license_key": "xxd", "spdx_license_key": "LicenseRef-scancode-xxd", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "xxd.json", "yml": "xxd.yml", "html": "xxd.html", "text": "xxd.LICENSE"}, {"license_key": "yahoo-browserplus-eula", "spdx_license_key": "LicenseRef-scancode-yahoo-browserplus-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "yahoo-browserplus-eula.json", "yml": "yahoo-browserplus-eula.yml", "html": "yahoo-browserplus-eula.html", "text": "yahoo-browserplus-eula.LICENSE"}, {"license_key": "yahoo-messenger-eula", "spdx_license_key": "LicenseRef-scancode-yahoo-messenger-eula", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "yahoo-messenger-eula.json", "yml": "yahoo-messenger-eula.yml", "html": "yahoo-messenger-eula.html", "text": "yahoo-messenger-eula.LICENSE"}, {"license_key": "yale-cas", "spdx_license_key": "LicenseRef-scancode-yale-cas", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "yale-cas.json", "yml": "yale-cas.yml", "html": "yale-cas.html", "text": "yale-cas.LICENSE"}, {"license_key": "yensdesign", "spdx_license_key": "LicenseRef-scancode-yensdesign", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "yensdesign.json", "yml": "yensdesign.yml", "html": "yensdesign.html", "text": "yensdesign.LICENSE"}, {"license_key": "yolo-1.0", "spdx_license_key": "LicenseRef-scancode-yolo-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "yolo-1.0.json", "yml": "yolo-1.0.yml", "html": "yolo-1.0.html", "text": "yolo-1.0.LICENSE"}, {"license_key": "yolo-2.0", "spdx_license_key": "LicenseRef-scancode-yolo-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "yolo-2.0.json", "yml": "yolo-2.0.yml", "html": "yolo-2.0.html", "text": "yolo-2.0.LICENSE"}, {"license_key": "ypl-1.0", "spdx_license_key": "YPL-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "ypl-1.0.json", "yml": "ypl-1.0.yml", "html": "ypl-1.0.html", "text": "ypl-1.0.LICENSE"}, {"license_key": "ypl-1.1", "spdx_license_key": "YPL-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft", "json": "ypl-1.1.json", "yml": "ypl-1.1.yml", "html": "ypl-1.1.html", "text": "ypl-1.1.LICENSE"}, {"license_key": "zapatec-calendar", "spdx_license_key": "LicenseRef-scancode-zapatec-calendar", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "zapatec-calendar.json", "yml": "zapatec-calendar.yml", "html": "zapatec-calendar.html", "text": "zapatec-calendar.LICENSE"}, {"license_key": "zed", "spdx_license_key": "Zed", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "zed.json", "yml": "zed.yml", "html": "zed.html", "text": "zed.LICENSE"}, {"license_key": "zend-2.0", "spdx_license_key": "Zend-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "zend-2.0.json", "yml": "zend-2.0.yml", "html": "zend-2.0.html", "text": "zend-2.0.LICENSE"}, {"license_key": "zeromq-exception-lgpl-3.0", "spdx_license_key": "LicenseRef-scancode-zeromq-exception-lgpl-3.0", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, "category": "Copyleft Limited", "json": "zeromq-exception-lgpl-3.0.json", "yml": "zeromq-exception-lgpl-3.0.yml", "html": "zeromq-exception-lgpl-3.0.html", "text": "zeromq-exception-lgpl-3.0.LICENSE"}, {"license_key": "zeusbench", "spdx_license_key": "LicenseRef-scancode-zeusbench", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "zeusbench.json", "yml": "zeusbench.yml", "html": "zeusbench.html", "text": "zeusbench.LICENSE"}, {"license_key": "zhorn-stickies", "spdx_license_key": "LicenseRef-scancode-zhorn-stickies", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "zhorn-stickies.json", "yml": "zhorn-stickies.yml", "html": "zhorn-stickies.html", "text": "zhorn-stickies.LICENSE"}, {"license_key": "zimbra-1.3", "spdx_license_key": "Zimbra-1.3", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "zimbra-1.3.json", "yml": "zimbra-1.3.yml", "html": "zimbra-1.3.html", "text": "zimbra-1.3.LICENSE"}, {"license_key": "zimbra-1.4", "spdx_license_key": "Zimbra-1.4", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Copyleft Limited", "json": "zimbra-1.4.json", "yml": "zimbra-1.4.yml", "html": "zimbra-1.4.html", "text": "zimbra-1.4.LICENSE"}, {"license_key": "zipeg", "spdx_license_key": "LicenseRef-scancode-zipeg", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Proprietary Free", "json": "zipeg.json", "yml": "zipeg.yml", "html": "zipeg.html", "text": "zipeg.LICENSE"}, {"license_key": "ziplist5-geocode-duplication-addendum", "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-dup-addendum", "other_spdx_license_keys": ["LicenseRef-scancode-ziplist5-geocode-duplication-addendum"], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ziplist5-geocode-duplication-addendum.json", "yml": "ziplist5-geocode-duplication-addendum.yml", "html": "ziplist5-geocode-duplication-addendum.html", "text": "ziplist5-geocode-duplication-addendum.LICENSE"}, {"license_key": "ziplist5-geocode-end-user-enterprise", "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-enterprise", "other_spdx_license_keys": ["LicenseRef-scancode-ziplist5-geocode-end-user-enterprise"], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ziplist5-geocode-end-user-enterprise.json", "yml": "ziplist5-geocode-end-user-enterprise.yml", "html": "ziplist5-geocode-end-user-enterprise.html", "text": "ziplist5-geocode-end-user-enterprise.LICENSE"}, {"license_key": "ziplist5-geocode-end-user-workstation", "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-workstation", "other_spdx_license_keys": ["LicenseRef-scancode-ziplist5-geocode-end-user-workstation"], "is_exception": false, "is_deprecated": false, "category": "Commercial", "json": "ziplist5-geocode-end-user-workstation.json", "yml": "ziplist5-geocode-end-user-workstation.yml", "html": "ziplist5-geocode-end-user-workstation.html", "text": "ziplist5-geocode-end-user-workstation.LICENSE"}, {"license_key": "zlib", "spdx_license_key": "Zlib", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "zlib.json", "yml": "zlib.yml", "html": "zlib.html", "text": "zlib.LICENSE"}, {"license_key": "zlib-acknowledgement", "spdx_license_key": "zlib-acknowledgement", "other_spdx_license_keys": ["Nunit"], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "zlib-acknowledgement.json", "yml": "zlib-acknowledgement.yml", "html": "zlib-acknowledgement.html", "text": "zlib-acknowledgement.LICENSE"}, {"license_key": "zpl-1.0", "spdx_license_key": "LicenseRef-scancode-zpl-1.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "zpl-1.0.json", "yml": "zpl-1.0.yml", "html": "zpl-1.0.html", "text": "zpl-1.0.LICENSE"}, {"license_key": "zpl-1.1", "spdx_license_key": "ZPL-1.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "zpl-1.1.json", "yml": "zpl-1.1.yml", "html": "zpl-1.1.html", "text": "zpl-1.1.LICENSE"}, {"license_key": "zpl-2.0", "spdx_license_key": "ZPL-2.0", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "zpl-2.0.json", "yml": "zpl-2.0.yml", "html": "zpl-2.0.html", "text": "zpl-2.0.LICENSE"}, {"license_key": "zpl-2.1", "spdx_license_key": "ZPL-2.1", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "zpl-2.1.json", "yml": "zpl-2.1.yml", "html": "zpl-2.1.html", "text": "zpl-2.1.LICENSE"}, {"license_key": "zsh", "spdx_license_key": "LicenseRef-scancode-zsh", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "zsh.json", "yml": "zsh.yml", "html": "zsh.html", "text": "zsh.LICENSE"}, {"license_key": "zuora-software", "spdx_license_key": "LicenseRef-scancode-zuora-software", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "zuora-software.json", "yml": "zuora-software.yml", "html": "zuora-software.html", "text": "zuora-software.LICENSE"}, {"license_key": "zveno-research", "spdx_license_key": "LicenseRef-scancode-zveno-research", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, "category": "Permissive", "json": "zveno-research.json", "yml": "zveno-research.yml", "html": "zveno-research.html", "text": "zveno-research.LICENSE"}] \ No newline at end of file +[ + { + "license_key": "389-exception", + "category": "Copyleft Limited", + "spdx_license_key": "389-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "In addition, as a special exception, Red Hat, Inc. gives You the additional\nright to link the code of this Program with code not covered under the GNU\nGeneral Public License (\"Non-GPL Code\") and to distribute linked combinations\nincluding the two, subject to the limitations in this paragraph. Non-GPL Code\npermitted under this exception must only link to the code of this Program\nthrough those well defined interfaces identified in the file named EXCEPTION\nfound in the source code files (the \"Approved Interfaces\"). The files of Non-GPL\nCode may instantiate templates or use macros or inline functions from the\nApproved Interfaces without causing the resulting work to be covered by the GNU\nGeneral Public License. Only Red Hat, Inc. may make changes or additions to the\nlist of Approved Interfaces. You must obey the GNU General Public License in all\nrespects for all of the Program code and other code used in conjunction with the\nProgram except the Non-GPL Code covered by this exception. If you modify this\nfile, you may extend this exception to your version of the file, but you are not\nobligated to do so. If you do not wish to provide this exception without\nmodification, you must delete this exception statement from your version and\nlicense this file solely under the GPL without exception.", + "json": "389-exception.json", + "yaml": "389-exception.yml", + "html": "389-exception.html", + "license": "389-exception.LICENSE" + }, + { + "license_key": "3com-microcode", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-3com-microcode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms of the \nmicrocode software are permitted provided that the following conditions\nare met:\n1. Redistribution of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n2. Redistribution in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n3. The name of 3Com may not be used to endorse or promote products\n derived from this software without specific prior written permission\n\nTHIS SOFTWARE IS PROVIDED BY 3COM ``AS IS'' AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\nIN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nUSER ACKNOWLEDGES AND AGREES THAT PURCHASE OR USE OF THE\nMICROCODE SOFTWARE WILL NOT CREATE OR GIVE GROUNDS FOR A LICENSE BY\nIMPLICATION, ESTOPPEL, OR OTHERWISE IN ANY INTELLECTUAL PROPERTY RIGHTS\n(PATENT, COPYRIGHT, TRADE SECRET, MASK WORK, OR OTHER PROPRIETARY RIGHT)\nEMBODIED IN ANY OTHER 3COM HARDWARE OR SOFTWARE EITHER SOLELY OR IN\nCOMBINATION WITH THE MICROCODE SOFTWARE", + "json": "3com-microcode.json", + "yaml": "3com-microcode.yml", + "html": "3com-microcode.html", + "license": "3com-microcode.LICENSE" + }, + { + "license_key": "3dslicer-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-3dslicer-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "3D Slicer Contribution and Software License Agreement (\"Agreement\")\nVersion 1.0 (December 20, 2005)\n\nThis Agreement covers contributions to and downloads from the 3D\nSlicer project (\"Slicer\") maintained by The Brigham and Women's\nHospital, Inc. (\"Brigham\"). Part A of this Agreement applies to\ncontributions of software and/or data to Slicer (including making\nrevisions of or additions to code and/or data already in Slicer). Part\nB of this Agreement applies to downloads of software and/or data from\nSlicer. Part C of this Agreement applies to all transactions with\nSlicer. If you distribute Software (as defined below) downloaded from\nSlicer, all of the paragraphs of Part B of this Agreement must be\nincluded with and apply to such Software.\n\nYour contribution of software and/or data to Slicer (including prior\nto the date of the first publication of this Agreement, each a\n\"Contribution\") and/or downloading, copying, modifying, displaying,\ndistributing or use of any software and/or data from Slicer\n(collectively, the \"Software\") constitutes acceptance of all of the\nterms and conditions of this Agreement. If you do not agree to such\nterms and conditions, you have no right to contribute your\nContribution, or to download, copy, modify, display, distribute or use\nthe Software.\n\nPART A. CONTRIBUTION AGREEMENT - License to Brigham with Right to\nSublicense (\"Contribution Agreement\").\n\n1. As used in this Contribution Agreement, \"you\" means the individual\n contributing the Contribution to Slicer and the institution or\n entity which employs or is otherwise affiliated with such\n individual in connection with such Contribution.\n\n2. This Contribution Agreement applies to all Contributions made to\n Slicer, including without limitation Contributions made prior to\n the date of first publication of this Agreement. If at any time you\n make a Contribution to Slicer, you represent that (i) you are\n legally authorized and entitled to make such Contribution and to\n grant all licenses granted in this Contribution Agreement with\n respect to such Contribution; (ii) if your Contribution includes\n any patient data, all such data is de-identified in accordance with\n U.S. confidentiality and security laws and requirements, including\n but not limited to the Health Insurance Portability and\n Accountability Act (HIPAA) and its regulations, and your disclosure\n of such data for the purposes contemplated by this Agreement is\n properly authorized and in compliance with all applicable laws and\n regulations; and (iii) you have preserved in the Contribution all\n applicable attributions, copyright notices and licenses for any\n third party software or data included in the Contribution.\n\n3. Except for the licenses granted in this Agreement, you reserve all\n right, title and interest in your Contribution.\n\n4. You hereby grant to Brigham, with the right to sublicense, a\n perpetual, worldwide, non-exclusive, no charge, royalty-free,\n irrevocable license to use, reproduce, make derivative works of,\n display and distribute the Contribution. If your Contribution is\n protected by patent, you hereby grant to Brigham, with the right to\n sublicense, a perpetual, worldwide, non-exclusive, no-charge,\n royalty-free, irrevocable license under your interest in patent\n rights covering the Contribution, to make, have made, use, sell and\n otherwise transfer your Contribution, alone or in combination with\n any other code.\n\n5. You acknowledge and agree that Brigham may incorporate your\n Contribution into Slicer and may make Slicer available to members\n of the public on an open source basis under terms substantially in\n accordance with the Software License set forth in Part B of this\n Agreement. You further acknowledge and agree that Brigham shall\n have no liability arising in connection with claims resulting from\n your breach of any of the terms of this Agreement.\n\n6. YOU WARRANT THAT TO THE BEST OF YOUR KNOWLEDGE YOUR CONTRIBUTION\n DOES NOT CONTAIN ANY CODE THAT REQURES OR PRESCRIBES AN \"OPEN\n SOURCE LICENSE\" FOR DERIVATIVE WORKS (by way of non-limiting\n example, the GNU General Public License or other so-called\n \"reciprocal\" license that requires any derived work to be licensed\n under the GNU General Public License or other \"open source\n license\").\n\nPART B. DOWNLOADING AGREEMENT - License from Brigham with Right to\nSublicense (\"Software License\").\n\n1. As used in this Software License, \"you\" means the individual\n downloading and/or using, reproducing, modifying, displaying and/or\n distributing the Software and the institution or entity which\n employs or is otherwise affiliated with such individual in\n connection therewith. The Brigham and Women?s Hospital,\n Inc. (\"Brigham\") hereby grants you, with right to sublicense, with\n respect to Brigham's rights in the software, and data, if any,\n which is the subject of this Software License (collectively, the\n \"Software\"), a royalty-free, non-exclusive license to use,\n reproduce, make derivative works of, display and distribute the\n Software, provided that:\n\n(a) you accept and adhere to all of the terms and conditions of this\nSoftware License;\n\n(b) in connection with any copy of or sublicense of all or any portion\nof the Software, all of the terms and conditions in this Software\nLicense shall appear in and shall apply to such copy and such\nsublicense, including without limitation all source and executable\nforms and on any user documentation, prefaced with the following\nwords: \"All or portions of this licensed product (such portions are\nthe \"Software\") have been obtained under license from The Brigham and\nWomen's Hospital, Inc. and are subject to the following terms and\nconditions:\"\n\n(c) you preserve and maintain all applicable attributions, copyright\nnotices and licenses included in or applicable to the Software;\n\n(d) modified versions of the Software must be clearly identified and\nmarked as such, and must not be misrepresented as being the original\nSoftware; and\n\n(e) you consider making, but are under no obligation to make, the\nsource code of any of your modifications to the Software freely\navailable to others on an open source basis.\n\n2. The license granted in this Software License includes without\n limitation the right to (i) incorporate the Software into\n proprietary programs (subject to any restrictions applicable to\n such programs), (ii) add your own copyright statement to your\n modifications of the Software, and (iii) provide additional or\n different license terms and conditions in your sublicenses of\n modifications of the Software; provided that in each case your use,\n reproduction or distribution of such modifications otherwise\n complies with the conditions stated in this Software License.\n\n3. This Software License does not grant any rights with respect to\n third party software, except those rights that Brigham has been\n authorized by a third party to grant to you, and accordingly you\n are solely responsible for (i) obtaining any permissions from third\n parties that you need to use, reproduce, make derivative works of,\n display and distribute the Software, and (ii) informing your\n sublicensees, including without limitation your end-users, of their\n obligations to secure any such required permissions.\n\n4. The Software has been designed for research purposes only and has\n not been reviewed or approved by the Food and Drug Administration\n or by any other agency. YOU ACKNOWLEDGE AND AGREE THAT CLINICAL\n APPLICATIONS ARE NEITHER RECOMMENDED NOR ADVISED. Any\n commercialization of the Software is at the sole risk of the party\n or parties engaged in such commercialization. You further agree to\n use, reproduce, make derivative works of, display and distribute\n the Software in compliance with all applicable governmental laws,\n regulations and orders, including without limitation those relating\n to export and import control.\n\n5. The Software is provided \"AS IS\" and neither Brigham nor any\n contributor to the software (each a \"Contributor\") shall have any\n obligation to provide maintenance, support, updates, enhancements\n or modifications thereto. BRIGHAM AND ALL CONTRIBUTORS SPECIFICALLY\n DISCLAIM ALL EXPRESS AND IMPLIED WARRANTIES OF ANY KIND INCLUDING,\n BUT NOT LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR\n A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n BRIGHAM OR ANY CONTRIBUTOR BE LIABLE TO ANY PARTY FOR DIRECT,\n INDIRECT, SPECIAL, INCIDENTAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY ARISING IN ANY WAY\n RELATED TO THE SOFTWARE, EVEN IF BRIGHAM OR ANY CONTRIBUTOR HAS\n BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. TO THE MAXIMUM\n EXTENT NOT PROHIBITED BY LAW OR REGULATION, YOU FURTHER ASSUME ALL\n LIABILITY FOR YOUR USE, REPRODUCTION, MAKING OF DERIVATIVE WORKS,\n DISPLAY, LICENSE OR DISTRIBUTION OF THE SOFTWARE AND AGREE TO\n INDEMNIFY AND HOLD HARMLESS BRIGHAM AND ALL CONTRIBUTORS FROM AND\n AGAINST ANY AND ALL CLAIMS, SUITS, ACTIONS, DEMANDS AND JUDGMENTS\n ARISING THEREFROM.\n\n6. None of the names, logos or trademarks of Brigham or any of\n Brigham's affiliates or any of the Contributors, or any funding\n agency, may be used to endorse or promote products produced in\n whole or in part by operation of the Software or derived from or\n based on the Software without specific prior written permission\n from the applicable party.\n\n7. Any use, reproduction or distribution of the Software which is not\n in accordance with this Software License shall automatically revoke\n all rights granted to you under this Software License and render\n Paragraphs 1 and 2 of this Software License null and void.\n\n8. This Software License does not grant any rights in or to any\n intellectual property owned by Brigham or any Contributor except\n those rights expressly granted hereunder.\n\nPART C. MISCELLANEOUS\n\nThis Agreement shall be governed by and construed in accordance with\nthe laws of The Commonwealth of Massachusetts without regard to\nprinciples of conflicts of law. This Agreement shall supercede and\nreplace any license terms that you may have agreed to previously with\nrespect to Slicer.", + "json": "3dslicer-1.0.json", + "yaml": "3dslicer-1.0.yml", + "html": "3dslicer-1.0.html", + "license": "3dslicer-1.0.LICENSE" + }, + { + "license_key": "4suite-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-4suite-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License and copyright info for 4Suite software\n=====================================\n\n4Suite software copyright\n-------------------------\n\nThe copyright on 4Suite as a whole is owned by Fourthought, Inc.\n(USA). Copyright on the components of 4Suite is indicated in the\nsource code; most files have their own notice of copyright and\nownership, and a CVS datestamp to clarify the actual date of\nauthorship or last revision/publication. For purposes of usage and\nredistribution, the following Apache-based license applies.\n\nThe 4Suite License, Version 1.1\n-------------------------------\n\nCopyright (c) 2000 Fourthought, Inc. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n 2. Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n\n 3. The end-user documentation included with the redistribution,\n if any, must include the following acknowledgment:\n \"This product includes software developed by\n Fourthought, Inc. (http://www.fourthought.com).\"\n Alternately, this acknowledgment may appear in the software\n itself, if and wherever such third-party acknowledgments\n normally appear.\n\n 4. The names \"4Suite\", \"4Suite Server\" and \"Fourthought\" must not\n be used to endorse or promote products derived from this\n software without prior written permission. For written\n permission, please contact info@fourthought.com.\n\n 5. Products derived from this software may not be called \"4Suite\",\n nor may \"4Suite\" appear in their name, without prior written\n permission of Fourthought, Inc.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL FOURTHOGHT, INC. OR ITS CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n===================================================================\n\nThis license is based on the Apache Software License, Version 1.1,\nCopyright (c) 2000 The Apache Software Foundation.\nAll rights reserved.", + "json": "4suite-1.1.json", + "yaml": "4suite-1.1.yml", + "html": "4suite-1.1.html", + "license": "4suite-1.1.LICENSE" + }, + { + "license_key": "996-icu-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-996-icu-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "\"Anti 996\" License Version 1.0 (Draft)\n\nPermission is hereby granted to any individual or legal entity\nobtaining a copy of this licensed work (including the source code,\ndocumentation and/or related items, hereinafter collectively referred\nto as the \"licensed work\"), free of charge, to deal with the licensed\nwork for any purpose, including without limitation, the rights to use,\nreproduce, modify, prepare derivative works of, distribute, publish\nand sublicense the licensed work, subject to the following conditions:\n\n1. The individual or the legal entity must conspicuously display,\nwithout modification, this License and the notice on each redistributed\nor derivative copy of the Licensed Work.\n\n2. The individual or the legal entity must strictly comply with all\napplicable laws, regulations, rules and standards of the jurisdiction\nrelating to labor and employment where the individual is physically\nlocated or where the individual was born or naturalized; or where the\nlegal entity is registered or is operating (whichever is stricter). In\ncase that the jurisdiction has no such laws, regulations, rules and\nstandards or its laws, regulations, rules and standards are\nunenforceable, the individual or the legal entity are required to\ncomply with Core International Labor Standards.\n\n3. The individual or the legal entity shall not induce, suggest or force\nits employee(s), whether full-time or part-time, or its independent\ncontractor(s), in any methods, to agree in oral or written form, to\ndirectly or indirectly restrict, weaken or relinquish his or her\nrights or remedies under such laws, regulations, rules and standards\nrelating to labor and employment as mentioned above, no matter whether\nsuch written or oral agreements are enforceable under the laws of the\nsaid jurisdiction, nor shall such individual or the legal entity\nlimit, in any methods, the rights of its employee(s) or independent\ncontractor(s) from reporting or complaining to the copyright holder or\nrelevant authorities monitoring the compliance of the license about\nits violation(s) of the said license.\n\nTHE LICENSED WORK IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN ANY WAY CONNECTION WITH THE\nLICENSED WORK OR THE USE OR OTHER DEALINGS IN THE LICENSED WORK.", + "json": "996-icu-1.0.json", + "yaml": "996-icu-1.0.yml", + "html": "996-icu-1.0.html", + "license": "996-icu-1.0.LICENSE" + }, + { + "license_key": "abrms", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-abrms", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The \"Anyone But Richard M Stallman\" license\nDo anything you want with this program, with the exceptions listed below under \"EXCEPTIONS\".\n\nTHIS SOFTWARE IS PROVIDED \"AS IS\" WITH NO WARRANTY OF ANY KIND.\n\nIn the unlikely event that you happen to make a zillion bucks off of this, then good for you; consider buying a homeless person a meal.\n\nEXCEPTIONS\nRichard M Stallman (the guy behind GNU, etc.) may not make use of or redistribute this program or any of its derivatives.", + "json": "abrms.json", + "yaml": "abrms.yml", + "html": "abrms.html", + "license": "abrms.LICENSE" + }, + { + "license_key": "abstyles", + "category": "Permissive", + "spdx_license_key": "Abstyles", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This program is distributed WITHOUT ANY WARRANTY, express or implied. \n\nPermission is granted to make and distribute verbatim copies of this\ndocument provided that the copyright notice and this permission notice are\npreserved on all copies.\n\nPermission is granted to copy and distribute modified versions of this\ndocument under the conditions for verbatim copying, provided that the\nentire resulting derived work is distributed under the terms of a\npermission notice identical to this one.", + "json": "abstyles.json", + "yaml": "abstyles.yml", + "html": "abstyles.html", + "license": "abstyles.LICENSE" + }, + { + "license_key": "ac3filter", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ac3filter", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License:\n========\n\nDistributed under GNU General Public License version 2.\nYou may find it in GNU_eng.txt at english language and GNU_rus.txt at russian \nlanguage. Russain language version is for information purpose only and english \nversion have priority with all variant reading.\n\nThis application may solely be used for demonstration and educational purposes. \nAny other use may be prohibited by law in some coutries. The author has no \nliability regarding this application whatsoever. This application may be \ndistributed freely unless prohibited by law.\n\nThis product distributed in hope it may be useful, but without any warranty; \nwithout even the implied warranty of merchantability or fitness for a \nparticular purpose and compliance with any standards. I do not guarantee \nany support, bug correction, repair of lost data, I am not responsible \nfor broken hardware and lost working time. And I am not responsible for \nlegality of reproduced with this program multimedia production.", + "json": "ac3filter.json", + "yaml": "ac3filter.yml", + "html": "ac3filter.html", + "license": "ac3filter.LICENSE" + }, + { + "license_key": "accellera-systemc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-accellera-systemc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SystemC Open Source License Agreement\n(Download, Use and Contribution License Agreement Version 3.3)\n\nPLEASE READ THIS LICENSE AGREEMENT CAREFULLY BEFORE CLICKING ON THE \"ACCEPT\"\nBUTTON, AS BY CLICKING ON THE \"ACCEPT\" BUTTON YOU ACKNOWLEDGE THAT YOU\nHAVE READ, UNDERSTOOD AND AGREE TO BE BOUND BY THIS LICENSE AGREEMENT AND\nALL OF ITS TERMS AND CONDITIONS.\n\nAccellera Systems Initiative\n\nThe purpose of the following license agreement (the \"Agreement\") is to encourage interoperability and\ndevelopment of a C++ modeling language known as \"SystemC\" for system simulation and design (the\n\"Purpose\"). The SystemC software and other items licensed hereunder are licensed, without fee of any kind,\nfor use pursuant to the terms and conditions set forth in this Agreement.\n\nLicense Agreement\n\nTHE CONTRIBUTORS ARE WILLING TO LICENSE THEIR RESPECTIVE CONTRIBUTIONS TO YOU ONLY\nON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS OF THIS LICENSE AGREEMENT. IF YOU\nDO NOT AGREE TO ALL OF THE TERMS OF THIS LICENSE AGREEMENT, THEN NO RIGHTS ARE\nGRANTED TO YOU HEREUNDER TO USE ANY CONTRIBUTIONS. NOTWITHSTANDING ANYTHING TO\nCONTRARY, ANY USE, REPRODUCTION OR DISTRIBUTION OF ANY CONTRIBUTION CONSTITUTES\nYOUR ACCEPTANCE OF THIS AGREEMENT.\n\n1. Definitions\n\n1.1 \u201cAgreement\u201d means this contract.\n1.2 \u201cAccellera\u201d means Accellera Systems Initiative, a California nonprofit mutual benefit corporation.\n1.3 \u201cAccellera Documentation\u201d means the SystemC language reference manual and any other materials\nassigned to Accellera pursuant to the Copyright Agreement.\n1.4 \u201cAccellera Release\u201d means a Contribution or combination of Contributions which is developed or\ncreated through the Accellera working group process, and the final work approved for release by a Accellera\nworking group, approved for release by the Accellera steering group and approved for release by the board of\ndirectors of Accellera. Examples of Accellera Releases include Accellera libraries and Accellera\nspecifications. Accellera Documentation shall be deemed to be included in the definition of Accellera\nRelease.\n1.5 \u201cCode Contribution\u201d means any Contribution in the form of Source Code.\n1.6 \u201cContribution\u201d means any work of authorship that is deposited or contributed in accordance with\nSection 3 in furtherance of the Purpose including, without limitation, libraries, programs, specifications\nand User Documentation and Modifications. Without limiting the generality of the foregoing, a list of all\nContributions which were deposited or contributed on or before July 13, 2006 is set forth on Exhibit A\nattached hereto and incorporated herein by reference, all of which are considered Contributions pursuant to\nthis Agreement. A list of all Contributions is available upon written request to Accellera and can also be\nfound on the Website. For purposes of clarification, all contributions licensed pursuant to that certain\nSystemC Open Source License Agreement (Software Download and Use License Agreement Version 2.4)\nshall constitute, and be treated as, Contributions pursuant to this Agreement.\n1.7 \u201cCopyright Agreement\u201d means any LRM and Copyright Contribution Agreement entered into\nbetween Accellera and the signatory thereto at any time prior to or after the date hereof.\n1.8 \u201c Contribution Questionnaire\u201d means the questionnaire attached hereto as Exhibit C.\n1.9 \u201cContributor\u201d means any person or entity that makes a Contribution pursuant to Section 3. For\npurposes of clarification, any person or entity depositing or contributing, as part or all of a Contribution, a\nContribution which has previously been so deposited or contributed is not the Contributor of such re-\ndeposited Contribution for the purposes of this Agreement. A list of all Contributors is available upon written\nrequest to Accellera and can also be found on the Website.\n1.10 \u201cContributor's Necessary Patent Claims\u201d means those claims of all patents owned or licensable by\nContributor throughout the world that: (1) Contributor has the right to license (within the scope set forth\nherein) without the obligation to pay royalties or other consideration to third parties; and (2) are necessarily\nand directly infringed solely by the portion of a computer program that either implements, or is compiled\nfrom, either an unmodified Contribution or an Accellera Release. For clarity, Contributor\u2019s Necessary Patent\nClaims shall not include any claim directed towards a data structure, method, algorithm, process, technique,\ncircuit representation, or circuit implementation that is not completely and entirely described either in such\nContributor\u2019s Contribution or in an Accellera Release. Further, a Contributor\u2019s Necessary Patent Claims shall\nnot include any claim based upon the combination of any Contribution or an Accellera Release with other\nworks of authorship, to the extent that the Contributor\u2019s Necessary Patent Claims are infringed as a result of\nsuch combination.\n1.11 \u201cCopyright Rights\u201d means worldwide statutory and common law rights associated solely with works\nof authorship including copyrights, copyright applications, copyright registrations, and \u201cmoral rights\u201d. For\npurposes of clarification, patents are not included in Copyright Rights.\n1.12 \u201cDerivative\u201d or \u201cDerivative work\u201d means a work based upon one or more preexisting works, such\nas a translation, condensation, or any other form in which a work may be recast, transformed, or\nadapted. A work consisting of editorial revisions, annotations, elaborations, or other modifications, which,\nas a whole, represent an original work of authorship, is a \u201cderivative work\u201d.\n1.13 \u201cDistribute\u201d means making a Distribution.\n1.14 \u201cDistribution\u201d means any distribution, sublicensing or other transfer of a Contribution to any third\nparty.\n1.15 \u201cDocumentation\u201d means, collectively, all User Documentation and Accellera Documentation.\n1.16 \u201cMarks\u201d means, collectively, the registered and unregistered marks and logos that Accellera has\nlicensed or otherwise authorized Recipient to use. All marks and logos are listed on Exhibit D, which list\nmay be amended from time to time by Accellera to add or delete any marks or logos.\n1.17 \u201cModification\u201d means any additions or deletions to any Contribution.\n1.18 \u201cRecipient\u201d means any person or entity which receives any Contribution under this Agreement. For\nlegal entities, \u201cRecipient\u201d includes any entity that controls, is controlled by, or is under common control with\nRecipient. For purposes of this Section 1.18, \u201ccontrol\u201d means beneficial ownership of fifty percent (50%) or\nmore of the outstanding shares or similar interest of such entity entitled to vote for election of the board of\ndirectors or similar managing authority.\n1.19 \u201cSource Code\u201d means human readable text in an electronic form suitable for modification that\ndescribe the functions and data structures, including C, C++, and other language modules, plus any associated\ninterface definition files, scripts used to control compilation and installation of a computer program, or a list\nof source code differential comparisons.\n1.20 \u201cUser Documentation\u201d means all user guides, user manuals and other similar materials related to any\nContribution or an Accellera Release.\n1.21 \u201cWebsite\u201d means Accellera\u2019s internet website located at http://www.accellera.org.\n\n2. GRANT OF RIGHTS\n\n2.1 Subject to the terms of this Agreement, each Contributor hereby grants to each Recipient a non-\nexclusive, worldwide, royalty-free license under such Contributor's Copyright Rights to do the following:\n(a) Use, reproduce, prepare Derivative works of, publicly display, publicly perform and Distribute any\nContributions of such Contributor and Derivative works thereof; and\n(b) Use the know-how, information and knowledge embedded in the Contribution, without any\nobligation to keep the foregoing confidential so long as the Recipient does not otherwise violate this\nAgreement.\n2.2 Accellera hereby grants to each Recipient a non-exclusive, worldwide, royalty- free license under\nAccellera's Copyright Rights to use, reproduce, prepare Derivative works of, publicly display, publicly\nperform and distribute the Accellera Documentation and any Derivative works thereof, subject to the terms\nand conditions of this Agreement.\n2.3 Subject to the terms of this Agreement, each Contributor hereby grants to each Recipient, a worldwide,\nroyalty-free, non-exclusive license under such Contributor's Necessary Patent Claims to make, have made,\nuse, sell, offer for sale, or import: (a) such Contributor's Contributions; (b) those portions of a computer\nprogram that either implements, or is compiled from, the Contributor\u2019s unmodified Contribution; and (c)\nthose portions of a computer program that implement, or are compiled from, an Accellera Release.\n2.4 Each Contributor represents that, to its knowledge, it has sufficient rights in and to each of its\nContributions to grant the licenses set forth in Sections 2.1 and 2.3. Accellera represents that, to its\nknowledge, it has sufficient rights in the Accellera Documentation to grant the license set forth in Section\n2.2.\n2.5 Except as expressly stated in Sections 2.1, 2.2 and 2.3, Recipient receives no rights or licenses to the\nintellectual property of any Contributor or Accellera under this Agreement, whether expressly, by implication,\nestoppel or otherwise. All rights in and to any Contribution not expressly granted under this Agreement are\nreserved.\n2.6 Except as specifically set forth in any Copyright Agreement, Contributor shall ensure that transfers or\nassignments of all or any part of its right, title, and interest in and to any Contributions contributed or\ndeposited by Contributor hereunder, including all Copyright Rights and patent rights embodied therein,\nshall be subject to the rights expressly granted in this Agreement including, without limitation, the licenses\ngranted in Sections 2.1 and 2.3. Recipient shall not remove or alter any proprietary notices contained in\nthe Contributions licensed to Recipient hereunder and shall reproduce and include such notices on any copies\nof the Contributions made by Recipient in any media.\n2.7 License to Marks.\n(a) Accellera shall retain all right, title and interest in and to the Marks worldwide, subject to the\nlimited license granted to Recipient in this Section 2.7. Accellera hereby grants Recipient a non-\nexclusive, royalty-free, limited license to use the Marks solely in connection with its exercise of\nthe rights granted pursuant to this Agreement and to indicate that the products being marketed by\nRecipient are compatible with, and meet the standards of, Accellera Releases. All uses of the Marks\nshall be in accordance with Accellera\u2019s trademark usage policy set forth in Exhibit D.\n(b) Recipient shall assist Accellera to the extent reasonably necessary to protect and maintain the\nMarks worldwide, including, but not limited to, giving prompt notice to Accellera of any known or\npotential infringement of the Marks, and cooperating with Accellera in preparing and executing any\ndocuments necessary to register the Marks, or as may be required by the laws or rules of any country\nor jurisdiction. In its sole discretion, Accellera may commence, prosecute or defend any action or\nclaim concerning the Marks. Accellera shall have the right to control any such litigation, and\nRecipient shall fully cooperate with Accellera in any such litigation. Accellera shall reimburse\nRecipient for the reasonable costs associated with providing such assistance, except to the extent that\nsuch costs result from Recipient\u2019s breach of this Section 2.7. Recipient shall not commence any action\nregarding the Marks without Accellera\u2019s prior written consent.\n(c) All goodwill with respect to the Marks shall accrue for the sole benefit of Accellera.\nRecipient shall maintain the quality of any products, associated packaging, collateral and marketing\nmaterials on which it uses any of the Marks in a manner consistent with all terms, conditions and\nrequirements set forth in this Section 2.7 and at a level that meets or exceeds Recipient\u2019s overall\nreputation for quality and that is at least commensurate with industry standards.\n2.8 RECIPIENT UNDERSTANDS THAT ALTHOUGH EACH CONTRIBUTOR AND ACCELLERA GRANTS\nTHE LICENSES SET FORTH HEREIN, NO ASSURANCES ARE PROVIDED BY ANY CONTRIBUTOR OR\nACCELLERA THAT ANY ACCELLERA RELEASE OR ANY CONTRIBUTION, EITHER ALONE OR IN\nCOMBINATION WITH ANY OTHER CONTRIBUTION, DOES NOT INFRINGE THE PATENT OR OTHER\nINTELLECTUAL PROPERTY RIGHTS OF ANY OTHER ENTITY. MOREOVER, NO ASSURANCES ARE\nMADE THAT ANY CONTRIBUTION OF ONE CONTRIBUTOR DOES NOT INFRINGE THE INTELLECTUAL\nPROPERTY RIGHTS OF ANOTHER CONTRIBUTOR. EACH CONTRIBUTOR AND ACCELLERA DISCLAIM\nANY LIABILITY TO RECIPIENT FOR CLAIMS BROUGHT BY ANY OTHER ENTITY BASED ON\nINFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR OTHERWISE. In addition, as a condition to\nexercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to\nsecure any other intellectual property rights needed, if any. For example, if a third party patent license is\nrequired to allow Recipient to distribute a computer program, then it is Recipient's responsibility to acquire\nthat license before Distributing such computer program.\n\n3. DESCRIPTION AND DEPOSIT OF CONTRIBUTIONS\n\n3.1 To the extent Recipient wishes to become a Contributor by making a Contribution, such\nContributor shall:\n(a) (i) Deposit such Contribution at the Website according to the Contribution instructions found at\nsuch Website, or (ii) disclose such Contribution at a meeting of any working group of Accellera;\n(b) (i) Describe such Contribution in reasonable detail on Exhibit B (including the additions or\nchanges such Contributor made to create the Contribution and the date of any such changes or\nadditions), (ii) completing a Contribution Questionnaire with respect to such Contribution, and (iii)\ndelivering both documents to the Secretary of Accellera. All Contributions made after the date\nhereof shall be effectuated by Contributor (x) amending Exhibit B and delivering such amended\nExhibit B to the Secretary of Accellera, which amended exhibit shall automatically replace the existing\nExhibit B, (y) completing a Contribution Questionnaire with respect to such Contribution, and (z)\ndelivering both documents to the Secretary of Accellera;\n(c) Cause such Contribution to contain a file documenting such Contributor's name and contact\ninformation, additions or changes such Contributor made to create the Contribution, and the date of\nany such changes or additions; and\n(d) Cause such Contribution to include in each file a prominent statement substantially similar to the\nfollowing: \u201cAny code contained in this Contribution is derived, directly or indirectly, from the\nSystemC source code. Copyright\u00a9 1996-[current year here] by all Contributors. All Rights reserved.\nThe contents of this file are subject to the restrictions and limitations set forth in the SystemC Open\nSource License Version 3.1 (the \u201cLicense\u201d). You may not use this file except in compliance with such\nrestrictions and limitations. You may obtain instructions on how to receive a copy of the License at\nhttp://www.accellera.org/. Software distributed by Contributors under the License is distributed\nexclusively on an \u201cAS IS\u201d basis, WITHOUT WARRANTY OF ANY KIND, either express or\nimplied. See the License for the specific language governing rights and limitations under the License.\u201d\n3.2 Accellera may from time to time publish policies and procedures regarding the contribution or\ndepositing of Contributions as well as establish additional details regarding the contribution process. Without\nlimiting the foregoing, Accellera or the administrators of the Website shall have the right to remove any\nContribution from the Website at any time.\n\n4. REQUIREMENTS OF DISTRIBUTION\n\n4.1 A Recipient may choose to Distribute any Contribution or any compilation of multiple Contributions\n(except for any Code Contributions) under its own license agreement provided that:\n(a) Recipient complies with the terms and conditions of this Agreement;\n(b) As between Recipient and any other Contributor, Recipient assumes all warranties and conditions,\nexpress and implied, and all liability for damages arising out of its Distribution; and\n(c) Recipient makes available to recipients of such Distribution then Source Code for such\nDistributions, and informs them on how to obtain it in a reasonable manner on or through a medium\ncustomarily used for software exchange.\n4.2 If a Recipient chooses to Distribute any Code Contribution or compilations of Code Contributions\nthen:\n(a) Such Code Contribution must be Distributed under this Agreement; and\n(b) A copy of this Agreement must be included with each copy of such Code Contribution.\n4.3 Each Recipient must include the following in a conspicuous location in the Code Contribution so\nDistributed: \u201cCopyright\u00a9 1996-[current year here], by all Contributors. All rights reserved.\u201d\n4.4 In addition, each Recipient that creates and Distributes or otherwise transfers a Modification whether\nor not such Modification has been deposited pursuant to Section 3 must identify the originator of such\nModification in a manner that reasonably allows third parties to identify the originator of the Modification.\n4.5 A Recipient may choose to Distribute the Accellera Documentation under its own license agreement,\nprovided that Recipient complies with the terms and conditions of this Agreement. Each Recipient must\ninclude the following in a conspicuous location in the Accellera Documentation so Distributed or transferred:\n\u201cCopyright\u00a9 1996-[current year here], by Accellera Systems Initiative. All rights reserved.\u201d\nIn addition, each Recipient that creates and Distributes a modification or Derivative work of the Accellera\nDocumentation, whether or not such modification or Derivative work has been contributed pursuant to a\nCopyright Agreement must identify the originator of such modification or Derivative work in a manner that\nreasonably allows third parties to identify the originator of the modification or derivative work.\n\n5. INDEMNIFICATION\n\nAny Recipient which Distributes any Contribution and/or Accellera Release (a \u201cDistributor\u201d) may accept\ncertain responsibilities with respect to end users, business partners and the like. While this license is\nintended to facilitate the commercial use of Contributions Accellera Documentation and Accellera\nReleases, a Distributor shall Distribute such Contributions, Accellera Documentation and Accellera Releases\nin a manner which does not create potential liability for the Contributors. Therefore each Distributor hereby\nagrees to defend and indemnify every Contributor (\u201cIndemnified Contributor\u201d) against any losses,\ndamages and costs (collectively \u201cLosses\u201d) arising from claims, lawsuits and other legal actions brought\nby a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such\nDistributor, including but not limited to the terms and conditions under which Distributor offered such\nContributions, Accellera Documentation and/or Accellera Releases in connection with its Distribution thereof.\nThe obligations in this Section 5 do not apply to any claims or Losses relating to any actual or alleged\nintellectual property infringement of any Contribution, Accellera Documentation or Accellera Release. In\norder to qualify, an Indemnified Contributor must: (a) promptly notify the Distributor in writing of such\nclaim, and (b) allow the Distributor to control, and cooperate with the Distributor in, the defense and any\nrelated settlement negotiations. The Indemnified Contributor may participate in the defense of any such claim\nat its own expense.\nFor example, a Recipient might include a Contribution in a commercial product offering, Product X. That\nRecipient is then a Distributor. If that Distributor then makes performance claims, or offers warranties,\nsupport, or indemnity or any other license terms related to Product X, those performance claims, offers and\nother terms are such Distributor's responsibility alone. Under this Section 5, the Distributor would have to\ndefend claims against the Contributors related to those performance claims, offers, and other terms, and if a\ncourt requires any Contributor to pay any damages as a result, the Distributor must pay those damages.\n\n6. NO WARRANTY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, ALL CONTRIBUTIONS, ACCELLERA\nDOCUMENTATION AND ACCELLERA RELEASES ARE PROVIDED EXCLUSIVELY ON AN \u201cAS IS\u201d BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,\nWITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,\nMERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. EACH RECIPIENT IS SOLELY\nRESPONSIBLE FOR DETERMINING THE APPROPRIATENESS OF ITS USE AND DISTRIBUTION OF ANY\nCONTRIBUTION, ACCELLERA DOCUMENTATION AND ACCELLERA RELEASE AND ASSUMES ALL\nRISKS ASSOCIATED WITH ITS EXERCISE OF RIGHTS UNDER THIS AGREEMENT, INCLUDING BUT NOT\nLIMITED TO THE RISKS AND COSTS OF PROGRAM ERRORS, COMPLIANCE WITH APPLICABLE LAWS,\nDAMAGE TO OR LOSS OF DATA, PROGRAMS OR EQUIPMENT, AND UNAVAILABILITY OR\nINTERRUPTION OF OPERATIONS. THIS DISCLAIMER OR WARRANTY CONSTITUTES AN ESSENTIAL\nPART OF THIS AGREEMENT. NO USE OF ANY CONTRIBUTION, ACCELLERA DOCUMENTATION OR\nACCELLERA RELEASE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n7. DISCLAIMER OF LIABILITY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NONE OF THE RECIPIENTS, CONTRIBUTORS\nOR ACCELLERA SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, PUNITIVE, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST\nPROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\nUSE OR DISTRIBUTION OF ANY CONTRIBUTION, ACCELLERA DOCUMENTATION OR ACCELLERA\nRELEASE OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n8. U.S. GOVERNMENT USE\n\nIf Recipient is licensing any computer program on behalf of any unit or agency of the United States\nGovernment, then such computer program is commercial computer software, and, pursuant to FAR 12.212 or\nDFARS 227.7202 and their successors, as applicable, shall be licensed to the Government under the terms and\nconditions of this Agreement.\n\n9. PATENT CLAIMS\n\nIf Recipient institutes patent litigation against any entity (including a cross-claim, counterclaim or declaratory\njudgment claim in a lawsuit) alleging that any Contribution, Accellera Release or combination of\nContributions (excluding combinations of any Contribution with other software or hardware) infringes such\nRecipient's patent(s), then the rights granted to Recipient by each Contributor under Section 2 shall terminate\nas of the date such litigation is filed.\n\n10. TERMINATION\n\nAll Recipient's rights under this Agreement shall terminate if Recipient fails to comply with any of the\nmaterial terms or conditions of this Agreement and does not cure such failure in a reasonable period of time\nafter becoming aware of such noncompliance. If such occurs, Recipient shall cease all use and Distribution of\nany Contributions of any other Contributor, Accellera Documentation and Accellera Releases based upon the\nrights granted to Recipient under this Agreement as soon as reasonably practicable. However,\nRecipient's obligations under this Agreement and any licenses granted by Recipient relating to any\nContributions shall survive such termination.\n\n11. LICENSE VERSIONS\n\nAccellera may publish new versions (including revisions) of this Agreement from time to time. Each\nnew version of the Agreement will be given a distinguishing version number. Any Contribution, Accellera\nDocumentation or Accellera Release may always be Distributed subject to the version of the Agreement under\nwhich it was received. In addition, after a new version of the Agreement is published, Contributor may elect\nto Distribute any Contribution, Accellera Documentation or Accellera Release under the new version. No\none other than Accellera, acting by a vote of at least seventy five percent (75%) of the members of its Board\nof Directors, has the right to modify this Agreement; provided that Exhibit B and Exhibit C may be amended\nas specifically set forth in Section 3.1(b), and Exhibit D may be amended as specifically set forth in Section\n1.13.\n\n12. ELECTRONIC ACCEPTANCE\n\nThis Agreement may be executed either electronically or on paper. If this Agreement is executed\nelectronically, by clicking on the \u201cAccept\u201d button, Recipient warrants that it agrees to all of the terms of this\nAgreement, that Recipient is authorized to enter into this Agreement, and that this Agreement is legally\nbinding upon Recipient. If Recipient does not agree to be bound by this Agreement, then Recipient shall\nclick the \u201cDecline\u201d button and Recipient shall not receive any rights from the Contributors nor shall\nRecipient download any Contributions, Accellera Documentation or Accellera Releases.\n\n13. GENERAL\n\nThis Agreement represents the complete agreement concerning the subject matter hereof and supersedes all\nprior agreements or representations, oral or written, regarding the subject matter hereof. If any provision of\nthis Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or\nenforceability of the remainder of the terms of this Agreement, and without further action by the parties\nhereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and\nenforceable. This Agreement shall be executed in multiple counterparts (either electronically and/or on paper),\neach of which shall be deemed to be an original, but all of which shall be one and the same Agreement. A\nfacsimile or other copy of the Agreement shall have the same force and effect as an originally executed copy\nthereof.\nThis Agreement is governed by the laws of California, without reference to conflict of laws principles. Each\nparty waives its rights to a jury trial in any resulting litigation. Any litigation relating to this Agreement shall\nbe subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in\nSanta Clara County, California, or the Santa Clara County Superior Court. The application of the United\nNations Convention on Contracts for the International Sale of Goods is expressly excluded. The provisions of\nthis Agreement shall be construed fairly in accordance with its terms and no rules of construction for or\nagainst either party shall be applied in the interpreting this Agreement. Recipient shall not use any\nContribution, Accellera Documentation or Accellera Release in violation of local and other applicable laws\nincluding, but not limited to, the export control laws of the United States.\n\n\n\nIN WITNESS WHEREOF, duly authorized representatives of the parties have executed and delivered this\nAgreement as of the later of the dates set forth below.\n\nRECIPIENT:\nBy:\nName:\nIts:\nDate:\nACCELLERA SYSTEMS INITIATIVE:\nBy:\nName:\nIts:\nDate:\n\nEXHIBIT A\nList of Contributions as of July 13, 2006\n\nNumber Contribution\n1. Updated TLM Proposal\n2. TLM Extensions\n3. Abstract titled \"Transaction Level Modeling in SystemC\"\n4. Code and related material entitled \"SCE-API Example - Standard Co-emulation APO v1.8 Spec and Routed\n Example\"\n5. Code and related material entitled \"Simplebus v2.2 Example for SystemC v2.0.\n6. Code and related material entitled \"SystemC Generic Transaction Level Communication Channel.\"\n7. Review of TLM API code and related documents.\n8. SystemC Verification Library version 1.0; versions 1.1, 1.2, 2.0, 2.0.1 of the SystemC modeling language as\n released by Accellera and which are, or were, available for download on the website prior to the\n agreement; version 2.1 (beta 11) of the SystemC modeling language to be released and made available by\n Open SystemC Initiative for download on the website.\n9. Code and related material entitled \"System Design with SystemC Examples.\"\n10. Presentation document titled \"Towards a SystemC Transaction Level Modeling Standard,\" dated June\n 2004; presentation document titled \"TLM Extensions,\" dated April 2004; presentation document titled\n \"Updated TLM Proposal,\" dated March 29, 2004; abstract titled \"Transaction Level Modeling in System C.\"\n11. Code and related material entitled \"MP3 Decoder Example plus Performance Benchmark.\"\n12. SystemC October 12 Library.\n13. Source code modifications to the SystemC Library embodied in the October 12, 2004 kit\n (system_2_z_lib.oct_12_2004.tgz).\n Source code modifications to the SystemC Regression Test Suite embodied in the October 12, 2004 kit\n (systemc_2_1_tests.oct_12_2004.tgz).\n14. Synthesizable Subset 1.0.\n15. TLM Contribution (Presentation documents; abstract; code; proposal dated 3/24/04).\n16. Updated version of TLM kit\n17. Code and related material \u201c2.1 Beta Regression Tests\u201d\n18. Code and related material \u201cOSCI SystemC 2.1 Beta\u201d\n19. SystemC 2.1\n20. Assorted recommendations for enhancements, bug fixes and improved cross-platform support, including\n project files for Microsoft Visual C++ versions 6.0 and 7.1 that are contained within the files systemc-\n 2.1.05may05.tgz and systemc_tests-2.105may05.tgz.\n21. Minor modifications incorporated in SystemC 2.1 open source implementation dated July 14, 2005 to\n permit port to Microsoft VC++ Version 7.\n22. Numerous modifications incorporated in SystemC 2.1 open source implementation dated July 14, 2005.\n23. A collection of interfaces and implementations in SystemC for analysis objects.\n A collection of interfaces and implementations in SystemC for configuring components in a design.\n24. Modifications to the most recent version of SCV which allow it to run under the SystemC-2.1v1 kit.\n25. Set of header files intended to be included in the SystemC TLM Modeling library code. The API provides\n for 1 interfaces: (a) \u201cAtom at once (Variously called BA, PVT, CC) in which a single atom is transported at\n once.\n26. Modifications included in SystemC 2.2 library labeled \u201csystemc-2.2.04feb06.tgz;\u201d\n Modifications included in SystemC 2.2 test suites labeled \u201csystemc_tests-2.2.04feb06.tgz.\u201d\n27. Modifications to the SystemC 2.2 library to enable the port to gcc version 4;\n Addition of compliance_1666 tests to the SystemC 2.2 regression test suite.\n28. OSCI_TL3_2006_03_01.zip, including any updates of any of the foregoing, and\n OSCI_SCML_Memory_and_Bitfield_2006_03_01.zip, including any updates of any of the foregoing.\n29. C++/SystemC Code for Mentor\u2019s SMI System PVT channel implementation; An example of a protocol\n specific SystemC PVT channel implementation; Design examples using the above channel models; A\n white-paper describing the channel implementations.\n\nEXHIBIT B\nForm of Description of Contributions\n\nA. Description of Contributions\n1.\n2.\n\nThe undersigned hereby makes the Contributions described above\npursuant to the term, conditions and limitations of the SystemC\nLicense.\nBy:\nName:\nIts:\nDate:\nAddress:\nTel:\nFax:\nEmail:\n\nEXHIBIT C\nContribution Questionnaire\nContribution Number (see Exhibit B):\nDate:\n1. Is Contributor a member of Accellera Systems Initiative?\n\u25a1 Yes\n\u25a1 No\nIf Contributor is a member of Accellera Systems Initiative, please indicate Contributor\u2019s membership status\nand complete questions 2 or 3 (as applicable):\n\u25a1 Corporate Member\n\u25a1 Associate Member\nIf Contributor is not a member of Accellera Systems Initiative, please skip questions 2 and 3 and go to\nquestion 4.\n\n2. If Contributor is a Corporate Member or Associate Member of Accellera Systems Initiative, please indicate the\nname, title, and contact information for the person making this Contribution on behalf of such Corporate Member\nor Associate Member:\nName:\nTitle:\nAddress:\nPhone:\nFax:\nEmail:\n\n3. If Contributor is not a member of Accellera Systems Initiative, then please complete the following:\nIf the Contributor is a natural person, please indicate the name and address of Contributor\u2019s employer\nand the title of the position held at such employer:\nName of Employer:\nTitle with such Employer:\nAddress:\nPhone:\nFax:\nEmail:\nIf Contributor is an entity (corporation, limited liability company, partnership), then please indicate the\nname, title, and contact information for the person making this Contribution on behalf of such Contributor.\nEntity Name:\nName:\nTitle:\nAddress:\nPhone:\nFax:\nEmail:\n\nEXHIBIT D\n\nTrademark Usage Policy\n\nI. LIST OF MARKS\n1. Open SystemC\n2. Open SystemC Initiative\n3. OSCI\n4. SystemC\n5. SystemC Initiative\n6. All logos that incorporate the foregoing word marks\n\nII. PROPER USE OF MARKS\nTrademarks and service marks function as adjectives and generally should not be used as nouns or verbs.\nAccordingly, as often as possible, the Marks should be used as adjectives immediately preceding the generic\nnoun that refers to the service in question. For example:\nThe SystemC\u00ae software\nThe OSCI\u00ae LRM\nNo Possessives or Plurals. Since they are not nouns, the Marks should never be used in the possessive or\nplural forms. For example, it is not appropriate to write \u201cSystemC\u2019s software.\u201d\nNo Use as Verbs or as Puns. The Marks should never be used as verbs or as puns.\n\nIII. PROPER ATTRIBUTION\nTrademark ownership is attributed in two ways, with the use of a symbol (TM, SM, \u00ae) after the mark and with a\nlegal legend, usually found at the end of a document following the copyright notice. Following are Accellera\u2019s\nrules for symbols and legends to attribute the Marks:\nSymbols:\nWhich Symbol Do I Use?\nThe Marks generally function as trademarks rather than service marks. Unless you are specifically directed\notherwise, please use the \u00ae symbol after the Marks.\nWhere Do I Place the \u00ae Symbol?\nThe \u00ae symbol is placed immediately after the mark, either in superscript or subscript.\nWhen Do I Use the Symbol?\nThe \u00ae symbol is to be used after the Marks in the following instances:\nMost Prominent Uses: A \u00ae symbol is required after prominent uses of the Marks, e.g., in the headlines and\nlarge print text of web pages, advertisements, other promotional materials and press releases, except where\nspace limitations or specific style considerations prevent compliance with this requirement.\nFirst Use in Text: A \u00ae symbol is required after the first use of each Mark in text, e.g. advertising copy or the\nbody of press releases, even though the symbol may have already appeared in the headline or after another\nprominent use of the mark in the same document.\nAll Logos: The \u00ae symbol must appear after all logos incorporating the Marks.\n\nIV. LEGENDS\nAll Marks that appear on a web page or in a press release, advertisement or other written material (whether in\nprint or electronic form) must be attributed in an appropriate legend. The legend may be presented in\n\u201cmouseprint\u201d but must be large enough to be read easily. Legends generally appear at the end of a document or\nthe bottom of a web page but may be placed elsewhere, e.g. the inside covers of documentation.\nThe Accellera Systems Initiative Legend: The following legend should be used in all materials in which any\nof the Marks appear:\n[Insert the Marks] are trademarks or registered trademarks of Accellera Systems Initiative, Inc. in the United\nStates and other countries and are used with permission.\n\nV. MARKS NEVER COMBINED\nThe Marks should never be combined with the marks of any business other than Accellera. The Marks should\nalways appear visually separate from any other marks appearing in the same materials such that each mark\ncreates a distinct commercial impression. It would, for instance, not be appropriate to superimpose the logo of\nanother business over any Accellera logo.\n\nVI. LOGOS\nLogos incorporating the Marks can only be used in the format provided to you by Accellera for incorporation\ninto your materials or web pages. The logos provided to you by Accellera cannot be modified in any way\nwithout Accellera\u2019s prior written approval. Logos copied from Accellera web pages or other materials may not\nto be used. Please contact info@accellera.org to obtain electronic files containing the Accellera logos and to\nask any question regarding the logos.", + "json": "accellera-systemc.json", + "yaml": "accellera-systemc.yml", + "html": "accellera-systemc.html", + "license": "accellera-systemc.LICENSE" + }, + { + "license_key": "acdl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "CDL-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-acdl-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Version 1.0 - February 16, 2001\n\nCopyright (C) 2001 Apple Computer, Inc.\n\nPermission is granted to copy and distribute verbatim copies of this License, but changing or adding to it in any way is not permitted.\n\nPlease read this License carefully before downloading or using this material. By downloading or using this material, you are agreeing to be bound by the terms of this License. If you do not or cannot agree to the terms of this License, please do not download or use this material.\n\n0. Preamble. The Common Documentation License (CDL) provides a very simple and consistent license that allows relatively unrestricted use and redistribution of documents while still maintaining the author's credit and intent. To preserve simplicity, the License does not specify in detail how (e.g. font size) or where (e.g. title page, etc.) the author should be credited. To preserve consistency, changes to the CDL are not allowed and all derivatives of CDL documents are required to remain under the CDL. Together, these constraints enable third parties to easily and safely reuse CDL documents, making the CDL ideal for authors who desire a wide distribution of their work. However, this means the CDL does not allow authors to restrict precisely how their work is used or represented, making it inappropriate for those desiring more finely-grained control.\n\n1. General; Definitions. This License applies to any documentation, manual or other work that contains a notice placed by the Copyright Holder stating that it is subject to the terms of this Common Documentation License version 1.0 (or subsequent version thereof) (\"License\"). As used in this License:\n\n1.1 \"Copyright Holder\" means the original author(s) of the Document or other owner(s) of the copyright in the Document.\n\n1.2 \"Document(s)\" means any documentation, manual or other work that has been identified as being subject to the terms of this License.\n\n1.3 \"Derivative Work\" means a work which is based upon a pre-existing Document, such as a revision, modification, translation, abridgment, condensation, expansion, or any other form in which such pre-existing Document may be recast, transformed, or adapted.\n\n1.4 \"You\" or \"Your\" means an individual or a legal entity exercising rights under this License.\n\n2. Basic License. Subject to all the terms and conditions of this License, You may use, copy, modify, publicly display, distribute and publish the Document and your Derivative Works thereof, in any medium physical or electronic, commercially or non-commercially; provided that: (a) all copyright notices in the Document are preserved; (b) a copy of this License, or an incorporation of it by reference in proper form as indicated in Exhibit A below, is included in a conspicuous location in all copies such that it would be reasonably viewed by the recipient of the Document; and (c) You add no other terms or conditions to those of this License.\n\n3. Derivative Works. All Derivative Works are subject to the terms of this License. You may copy and distribute a Derivative Work of the Document under the conditions of Section 2 above, provided that You release the Derivative Work under the exact, verbatim terms of this License (i.e., the Derivative Work is licensed as a \"Document\" under the terms of this License). In addition, Derivative Works of Documents must meet the following requirements:\n\n (a) All copyright and license notices in the original Document must be preserved.\n\n (b) An appropriate copyright notice for your Derivative Work must be added adjacent to the other copyright notices.\n\n (c) A statement briefly summarizing how your Derivative Work is different from the original Document must be included in the same place as your copyright notice.\n\n (d) If it is not reasonably evident to a recipient of your Derivative Work that the Derivative Work is subject to the terms of this License, a statement indicating such fact must be included in the same place as your copyright notice.\n\n4. Compilation with Independent Works. You may compile or combine a Document or its Derivative Works with other separate and independent documents or works to create a compilation work (\"Compilation\"). If included in a Compilation, the Document or Derivative Work thereof must still be provided under the terms of this License, and the Compilation shall contain (a) a notice specifying the inclusion of the Document and/or Derivative Work and the fact that it is subject to the terms of this License, and (b) either a copy of the License or an incorporation by reference in proper form (as indicated in Exhibit A). Mere aggregation of a Document or Derivative Work with other documents or works on the same storage or distribution medium (e.g. a CD-ROM) will not cause this License to apply to those other works.\n\n5. NO WARRANTY. THE DOCUMENT IS PROVIDED 'AS IS' BASIS, WITHOUT WARRANTY OF ANY KIND, AND THE COPYRIGHT HOLDER EXPRESSLY DISCLAIMS ALL WARRANTIES AND/OR CONDITIONS WITH RESPECT TO THE DOCUMENT, EITHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND OF NONINFRINGEMENT OF THIRD PARTY RIGHTS.\n\n6. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO THIS LICENSE OR YOUR USE, REPRODUCTION, MODIFICATION, DISTRIBUTION AND/OR PUBLICATION OF THE DOCUMENT, OR ANY PORTION THEREOF, WHETHER UNDER A THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY.\n\n7. Trademarks. This License does not grant any rights to use any names, trademarks, service marks or logos of the Copyright Holder (collectively \"Marks\") and no such Marks may be used to endorse or promote works or products derived from the Document without the prior written permission of the Copyright Holder.\n\n8. Versions of the License. Apple Computer, Inc. (\"Apple\") may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Once a Document has been published under a particular version of this License, You may continue to use it under the terms of that version. You may also choose to use such Document under the terms of any subsequent version of this License published by Apple. No one other than Apple has the right to modify the terms applicable to Documents created under this License.\n\n9. Termination. This License and the rights granted hereunder will terminate automatically if You fail to comply with any of its terms. Upon termination, You must immediately stop any further reproduction, modification, public display, distr ibution and publication of the Document and Derivative Works. However, all sublicenses to the Document and Derivative Works which have been properly granted prior to termination shall survive any termination of this License. Provisions which, by their nat ure, must remain in effect beyond the termination of this License shall survive, including but not limited to Sections 5, 6, 7, 9 and 10.\n\n10. Waiver; Severability; Governing Law. Failure by the Copyright Holder to enforce any provision of this License will not be deemed a waiver of future enforcement of that or any other provision. If for any reason a court of competent jurisdiction finds any provision of this License, or portion thereof, to be unenforceable, that provision of the License will be enforced to the maximum extent permissible so as to effect the economic benefits and intent of the parties, and the remainder of this License will continue in full force and effect. This License shall be governed by the laws of the United States and the State of California, except that body of California law concerning conflicts of law.\n\nEXHIBIT A\n\nThe proper form for an incorporation of this License by reference is as follows:\n\n\"Copyright (c) [year] by [Copyright Holder's name]. This material has been released under and is subject to the terms of the Common Documentation License, v.1.0, the terms of which are hereby incorporated by reference. Please obtain a copy of the License at http://www.opensource.apple.com/cdl/ and read it before using this material. Your use of this material signifies your agreement to the terms of the License.\"\n\nApple Common Documentation License v1.0", + "json": "acdl-1.0.json", + "yaml": "acdl-1.0.yml", + "html": "acdl-1.0.html", + "license": "acdl-1.0.LICENSE" + }, + { + "license_key": "ace-tao", + "category": "Permissive", + "spdx_license_key": "DOC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright and Licensing Information for ACE(TM), TAO(TM), CIAO(TM), and CoSMIC(TM)\n\nACE(TM),TAO(TM),CIAO(TM),andCoSMIC(TM) (henceforth referred to as \"DOC software\") are copyrighted by Douglas C. Schmidt and his research group at Washington University, University of California, Irvine, and Vanderbilt University, Copyright (c) 1993-2009, all rights reserved. Since DOC software is open-source, freely available software, you are free to use, modify, copy, and distribute--perpetually and irrevocably--the DOC software source code and object code produced from the source, as well as copy and distribute modified versions of this software. You must, however, include this copyright statement along with any code built using DOC software that you release. No copyright statement needs to be provided if you just ship binary executables of your software products.\n\nYou can use DOC software in commercial and/or binary software releases and are under no obligation to redistribute any of your source code that is built using DOC software. Note, however, that you may not misappropriate the DOC software code, such as copyrighting it yourself or claiming authorship of the DOC software code, in a way that will prevent DOC software from being distributed freely using an open-source development model. You needn't inform anyone that you're using DOC software in your software, though we encourage you to let us know so we can promote your project in the DOC software success stories.\n\nThe ACE, TAO, CIAO, and CoSMIC web sites are maintained by the DOC Group at the Institute for Software Integrated Systems (ISIS) and the Center for Distributed Object Computing of Washington University, St. Louis for the development of open-source software as part of the open-source software community. Submissions are provided by the submitter ``as is'' with no warranties whatsoever, including any warranty of merchantability, noninfringement of third party intellectual property, or fitness for any particular purpose. In no event shall the submitter be liable for any direct, indirect, special, exemplary, punitive, or consequential damages, including without limitation, lost profits, even if advised of the possibility of such damages. Likewise, DOC software is provided as is with no warranties of any kind, including the warranties of design, merchantability, and fitness for a particular purpose, noninfringement, or arising from a course of dealing, usage or trade practice. Washington University, UC Irvine, Vanderbilt University, their employees, and students shall have no liability with respect to the infringement of copyrights, trade secrets or any patents by DOC software or any part thereof. Moreover, in no event will Washington University, UC Irvine, or Vanderbilt University, their employees, or students be liable for any lost revenue or profits or other special, indirect and consequential damages.\n\nDOC software is provided with no support and without any obligation on the part of Washington University, UC Irvine, Vanderbilt University, their employees, or students to assist in its use, correction, modification, or enhancement. A number of companies around the world provide commercial support for DOC software, however. DOC software is Y2K-compliant, as long as the underlying OS platform is Y2K-compliant. Likewise, DOC software is compliant with the new US daylight savings rule passed by Congress as \"The Energy Policy Act of 2005,\" which established new daylight savings times (DST) rules for the United States that expand DST as of March 2007. Since DOC software obtains time/date and calendaring information from operating systems users will not be affected by the new DST rules as long as they upgrade their operating systems accordingly.\n\nThe names ACE(TM), TAO(TM), CIAO(TM), CoSMIC(TM), Washington University, UC Irvine, and Vanderbilt University, may not be used to endorse or promote products or services derived from this source without express written permission from Washington University, UC Irvine, or Vanderbilt University. This license grants no permission to call products or services derived from this source ACE(TM), TAO(TM), CIAO(TM), or CoSMIC(TM), nor does it grant permission for the name Washington University, UC Irvine, or Vanderbilt University to appear in their names.\n\nIf you have any suggestions, additions, comments, or questions, please let me know. Douglas C. Schmidt\n\nBack to the ACE home page.", + "json": "ace-tao.json", + "yaml": "ace-tao.yml", + "html": "ace-tao.html", + "license": "ace-tao.LICENSE" + }, + { + "license_key": "acroname-bdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-acroname-bdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " BRAINSTEM DEVELOPMENT KIT SOFTWARE PACKAGE LICENSE AGREEMENT:\n\nPLEASE READ THIS SOFTWARE LICENSE AGREEMENT CAREFULLY BEFORE DOWNLOADING OR USING THE SOFTWARE.\n\nBY USING THE SOFTWARE, OR USING EQUIPMENT THAT CONTAINS THE SOFTWARE, YOU ARE CONSENTING TO BE BOUND BY THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL OF THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE AND DESTROY ALL COPIES IN YOUR POSSESSION.\n\nBRAINSTEM2 LIBRARY SHARED OBJECT, STATIC ARCHIVE, AND LIBRARY HEADERS.\nSOFTWARE LICENSE AGREEMENT Copyright (c) 1994-2020 Acroname Inc.\n\nSingle User and Multiple-Users License Grant: Acroname Inc. (\"Acroname\") and its suppliers grant to Customer (\"Customer\") a nonexclusive and nontransferable license to use the BrainStem2 shared object (.dylib, .framework, .so, .dll, etc) static archive (.a), and associated library header files (\"Software\") in object code form.\n\nCUSTOMER SHALL NOT: MODIFY THE SOFTWARE; REVERSE ENGINEER OR REVERSE COMPILE OR REVERSE ASSEMBLE ALL OR ANY PORTION OF THE SOFTWARE.\n\nCustomer agrees that aspects of the licensed materials, including the specific design and structure of individual programs, constitute trade secrets and/or copyrighted material of Acroname. Title to Software and documentation shall remain solely with Acroname.\n\nCustomer agrees that redistributions of this Software must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nDISCLAIMER. EXCEPT AS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS, AND WARRANTIES INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, \nNONINFRINGEMENT OR ARISING FROM A COURSE OF DEALING, USAGE, OR TRADE PRACTICE, ARE HEREBY EXCLUDED TO THE EXTENT ALLOWED BY APPLICABLE LAW. IN NO EVENT WILL ACRONAME OR ITS SUPPLIERS BE LIABLE FOR ANY LOST REVENUE, PROFIT, OR DATA, \nOR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL, OR PUNITIVE DAMAGES HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE EVEN IF ACRONAME OR ITS SUPPLIERS HAVE BEEN ADVISED OF\nTHE POSSIBILITY OF SUCH DAMAGES. THIS SOFTWARE IS NOT INTENDED FOR USE IN LIFE SUPPORT SYSTEMS. In no event shall Acroname's or its suppliers' liability to Customer, whether in contract, tort (including negligence), or otherwise, exceed the price paid by Customer. Some jurisdictions may not allow limitation or exclusion of liability for consequential or incidental damages.\n\nThis Software License Agreement is effective until terminated. Customer may terminate this License at any time by destroying all copies of the Software including any documentation. This License will terminate immediately without notice from Acroname if Customer fails to comply with any provision of this License. Upon termination, Customer must destroy all copies of the Software.\n\nThis Software, including technical data, is subject to U.S. export control laws, including the U.S. Export Administration Act and its associated regulations, and may be subject to export or import regulations in other countries. Customer agrees to comply strictly with all such regulations and acknowledges that it has the responsibility to obtain licenses to export, re-export, \nor import Software. This License shall be governed by and construed in accordance with the laws of the State of Colorado, United States of America, as if performed wholly within the state and without giving effect to the principles of conflict of law. If any portion hereof is found to be void or unenforceable, the remaining provisions of this License shall remain in full force and effect. \nThis License constitutes the entire License between the parties with respect to the use of the Software.\n\nBRAINSTEM2 DIRECT DEPENDENCY LICENSE NOTIFICATION:\nLIB USB\nThis binary distribution uses libUSB v1.0 (https://libusb.info). LibUSB is licensed under GNU Lesser General Public License (LGPL) v2.1. Acroname will provide, at request (support@acroname.com), object code sufficient to recompile the Acroname BrainStem binary distribution with an updated interface compatible copy of the libUSB library.", + "json": "acroname-bdk.json", + "yaml": "acroname-bdk.yml", + "html": "acroname-bdk.html", + "license": "acroname-bdk.LICENSE" + }, + { + "license_key": "activestate-community", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-activestate-community", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ActiveState Community License \nPreamble:\nThe intent of this document is to state the conditions under which the Package may be copied and distributed, such that ActiveState maintains control over the development and distribution of the Package, while allowing the users of the Package to use the Package in a variety of ways.\n\nDefinitions:\n\n\"ActiveState\" refers to ActiveState Software Inc., the Copyright Holder of the Package.\n\n\"Package\" refers to those files, including, but not limited to, source code, binary executables, images, and scripts, which are distributed by the Copyright Holder under the name ActivePython.\n\n\"You\" is you, if you're thinking about copying or distributing this Package.\n\n1.\tYou may use this Package for commercial or non-commercial purposes without charge. \n\n2.\tYou may make and give away verbatim copies of this Package for personal use, or for use within your organization, provided that you duplicate all of the original copyright notices and associated disclaimers. You may not distribute copies of this Package, or copies of packages derived from this Package, to others outside your organization without specific prior written permission from ActiveState (although you are encouraged to direct them to sources from which they may obtain it for themselves).\n\n3.\tYou may apply bug fixes, portability fixes, and other modifications derived from ActiveState. A Package modified in such a way shall still be covered by the terms of this license.\n\n4.\tIn addition to the above allowed uses, this license does allow for the redistribution of parts of the Package together with other software code in a wrapped format, including but not limited to a format wrapped with executable generators such as \"py2app\" or \"py2exe\". However, if you wish to redistribute the complete Package either as a standalone distribution or in a wrapped format, you must obtain written permission from ActiveState. ActiveState may charge a fee for such license. To obtain permission for redistribution or clarification regarding your particular intended use of the Package, please contact us.\n\n5.\tActiveState's name and trademarks may not be used to endorse or promote packages derived from this Package without specific prior written permission from ActiveState.\n\n6.\tTHIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\n7.\tThis Package may be subject to export controls imposed by applicable laws and regulations, which may prohibit or restrict the distribution, exportation and re-exportation of the Package. You will comply with all applicable export control laws, including such laws of the U.S., Canada and the European Community, in effect from time to time, including without limitation the Canadian Export and Import Permits Act, the Canadian United Nations Act, and the U.S. Foreign Corrupt Practices Act and with all export laws and restrictions and regulations of the United States Department of Commerce or other United States, European Community or other foreign agency or authority, and will not distribute, export or re-export, or allow the distribution, export or re-export, of the Package or any copy or adaptation of direct product thereof, or any underlying technology, except in full compliance with any and all such applicable laws, restrictions and regulations. You represent and warrant that you are not located in, under the control of, or a national or resident of, any restricted country (currently including Myanmar [Burma], Belarus, Cuba, Libya, North Korea, Iran, Iraq, Sudan, Syria, and Afghanistan) or of any designated entity or person.\n\nThe Package may contain software covered by other licenses and copyrights.\n Copyright \u00a9 2001 Python Software Foundation. All Rights Reserved.\n Copyright \u00a9 2000 BeOpen.com. All Rights Reserved. \n Copyright \u00a9 1995-2001 Corporation for National Research Initiatives. All Rights Reserved. \n Copyright \u00a9 1991-1995 Stichting Mathematisch Centrum, Amsterdam. All Rights Reserved.", + "json": "activestate-community.json", + "yaml": "activestate-community.yml", + "html": "activestate-community.html", + "license": "activestate-community.LICENSE" + }, + { + "license_key": "activestate-community-2012", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-activestate-community-2012", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ACTIVESTATE COMMUNITY EDITION SOFTWARE LICENSE AGREEMENT\n\n Version effective date: August 2, 2012\n\nPreamble:\nSupport is available from ACTIVESTATE under a separate agreement, see Part 3.d. For redistribution of the Software, You will require a special license, see part 4.b. For more information on support options and or redistribution (e.g. Business Edition, Enterprise Edition, and or OEM Licensing) please visit www.activestate.com. This license establishes the terms under which the Software may be copied, modified, distributed and/or redistributed. The intent of this license is that ACTIVESTATE maintains control over the development and distribution of the Software, while allowing its use it in a variety of ways. If the terms of this license do not permit Your proposed usage or if You require clarification regarding your intended use of the Software, please contact sales@activestate.com.\n\nACTIVESTATE SOFTWARE INC. (\"ACTIVESTATE\") IS WILLING TO LICENSE THE SOFTWARE ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS SOFTWARE LICENSE AGREEMENT. PLEASE READ THE TERMS CAREFULLY. BY CLICKING ON \"YES, ACCEPT\" OR BY INSTALLING THE SOFTWARE, YOU WILL INDICATE YOUR AGREEMENT WITH THEM. IF YOU ARE ENTERING INTO THIS AGREEMENT ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOUR ACCEPTANCE REPRESENTS THAT YOU HAVE THE AUTHORITY TO BIND SUCH ENTITY TO THESE TERMS, IN WHICH CASE \"YOU\" OR \"YOUR\" SHALL REFER TO YOUR ENTITY. IF YOU DO NOT AGREE WITH THESE TERMS, OR IF YOU DO NOT HAVE THE AUTHORITY TO BIND YOUR ENTITY, THEN ACTIVESTATE IS UNWILLING TO LICENSE THE SOFTWARE, AND YOU SHOULD NOT INSTALL THE SOFTWARE.\n\n1. Parties. The parties to this Agreement are you, the licensee (\"You\") and ACTIVESTATE. If You are not acting on behalf of Yourself as an individual, then \"You\" means Your company or organization. A company or organization shall in either case mean a single business entity, and shall not include its affiliates or wholly owned subsidiaries.\n\n2. The Software. The accompanying materials including, but not limited to, source code, binary executables, documentation, images, and scripts, which are distributed by ACTIVESTATE, and derivatives of that collection and/or those files are referred to herein as the \"Software\".\n\n3. License Grant for the Software.\n\n a. You are granted worldwide, perpetual, paid up, royalty free, non-exclusive rights to install and use the Software subject to the terms and conditions contained herein.\n\n b. You may: (i) copy the Software for archival purposes, (ii) copy the Software for personal use purposes, (iii) use, copy, and distribute the Software solely for Your organization's internal use and or internal business operation purposes including copying the Software to other computers or workstations inside Your organization, (iv) redistribute parts of the Software outside of Your organization only as part of a Wrapped Application utilizing executable generators such as PerlApp, Perl2Exe, PAR, TclApp, py2app, or py2exe. Any copy must contain the original Software's proprietary notices in unaltered form. \"Wrapped Application\" means a single-file executable wherein all binary components are encapsulated in a single binary however You may not expose the base programming language as a scripting language within your own application program to end users.\n\n c. You are permitted to modify the Accessible Code to develop bug fixes, customizations, or additional features, solely for the purpose of using the Software pursuant to this Agreement. \"Accessible Code\" means source code contained within the Software that is under an open source license .\n\n d. No Other Software and Services. ACTIVESTATE will not provide You with any other software or services (including any support or maintenance services) relating to the Software, except to the extent that such software and services, if any, are required and provided pursuant to an applicable maintenance and support agreement.\n\n4. Restrictions.\n\n a. ACTIVESTATE encourages You to promote use of the Software. However this Agreement does not grant permission to use the trade names, trademarks, service marks, or product names of ACTIVESTATE, except as required for reasonable and customary use in describing the origin of the Software. In particular, You cannot use any of these marks in any way that might state or imply that ACTIVESTATE endorses Your work, or might state or imply that You created the Software covered by this Agreement. Except as expressly provided herein, you may not:\ni. modify or translate the Software;\nii. reverse engineer, decompile, or disassemble the Software, except to the extent this restriction is expressly prohibited by applicable law;\niii. create derivative works based on the Software;\niv. merge the Software with another product;\nv. copy the Software; or\nvi. remove or obscure any proprietary rights notices or labels on the Software.\n\n b. Use of the Software through a web server on external-facing servers requires a separate Business Edition license agreement from ACTIVESTATE which will supersede the terms of this license. Except as expressly provided herein, you may not use the Software to provide content or functionality through a web server on external-facing servers,\n\n c. You may not distribute the Software via OEM Distribution (as defined below) without entering into a separate OEM Distribution Agreement with ACTIVESTATE. \"OEM Distribution\" means permitting others outside Your organization to use the Software, distribution and/or use of the Software as either a bundled add-on to, or embedded component of, another application, with such application being made available to its users as, but not limited to, an on-premises application, a hosted application, a Software-as-a-Service offering or a subscription service for which the distributor of the application receives a license fee or any form of direct or indirect compensation. Except as expressly provided herein, you may not:\ni. permit others outside Your organization to use the Software,\nii. redistribute:\n \n1. the Software as a whole whether as a wrapped application or on a stand alone basis, or\n2. parts of the Software to create a language distribution, or\n3. the ACTIVESTATE components with Your Wrapped Application.\n\n d. You are excluded from the foregoing restrictions in this paragraph 4b or 4c if You are using the Software for non-commercial purposes as determined by ACTIVESTATE at its sole discretion, or if You are using the Software solely for Your organization\u2019s internal use and or internal business operation purposes.\n\n5. Ownership. ACTIVESTATE and its suppliers own the Software and all intellectual property rights embodied therein, including copyrights and valuable trade secrets embodied in the Software's design and coding methodology. The Software is protected by Canada and United States copyright laws and international treaty provisions. This Agreement provides You only a limited use license, and no ownership of any intellectual property.\n\n6. Infringement Indemnification. You shall defend or settle, at Your expense, any action brought against ACTIVESTATE based upon the claim that any modifications to the Software or combination of the Software with products infringes or violates any third party right; provided, however, that: (i) ACTIVESTATE shall notify Licensee promptly in writing of any such claim; (ii) ACTIVESTATE shall not enter into any settlement or compromise any such claim without Your prior written consent; (iii) You shall have sole control of any such action and settlement negotiations; and (iv) ACTIVESTATE shall provide You with commercially reasonable information and assistance, at Your request and expense, necessary to settle or defend such claim. You agree to pay all damages and costs finally awarded against ACTIVESTATE attributable to such claim.\n\n7. Limited Warranty. NEITHER ACTIVESTATE NOR ANY OF ITS SUPPLIERS OR RESELLERS MAKES ANY WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, AND ACTIVESTATE AND ITS SUPPLIERS SPECIFICALLY DISCLAIM THE IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SYSTEM INTEGRATION, AND DATA ACCURACY. THERE IS NO WARRANTY OR GUARANTEE THAT THE OPERATION OF THE SOFTWARE WILL BE UNINTERRUPTED, ERROR-FREE, OR VIRUS-FREE, OR THAT THE SOFTWARE WILL MEET ANY PARTICULAR CRITERIA OF PERFORMANCE, QUALITY, ACCURACY, PURPOSE, OR NEED. YOU ASSUME THE ENTIRE RISK OF SELECTION, INSTALLATION, AND USE OF THE SOFTWARE. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS AGREEMENT. NO USE OF THE SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. Local Law. If implied warranties may not be disclaimed under applicable law, then ANY IMPLIED WARRANTIES ARE LIMITED IN DURATION TO THE PERIOD REQUIRED BY APPLICABLE LAW. Some jurisdictions do not allow limitations on how long an implied warranty may last, so the above limitations may not apply to You. This warranty gives you specific rights, and You may have other rights which vary from jurisdiction to jurisdiction.\n\n9. Limitation of Liability. INDEPENDENT OF THE FORGOING PROVISIONS, IN NO EVENT AND UNDER NO LEGAL THEORY, INCLUDING WITHOUT LIMITATION, TORT, CONTRACT, OR STRICT PRODUCTS LIABILITY, SHALL ACTIVESTATE OR ANY OF ITS SUPPLIERS BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY KIND, INCLUDING WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER MALFUNCTION, OR ANY OTHER KIND OF COMMERCIAL DAMAGE, EVEN IF ACTIVESTATE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY TO THE EXTENT PROHIBITED BY APPLICABLE LAW. IN NO EVENT SHALL ACTIVESTATE'S LIABILITY FOR DAMAGES FOR ANY CAUSE WHATSOEVER, AND REGARDLESS OF THE FORM OF ACTION, EXCEED IN THE AGGREGATE THE AMOUNT OF THE PURCHASE PRICE PAID FOR THE SOFTWARE LICENSE.\n\n10. Export Controls. You agree to comply with all export laws and restrictions and regulations of Canada, the United States or foreign agencies or authorities, and not to export or re-export the Software or any direct product thereof in violation of any such restrictions, laws or regulations, or without all necessary approvals. As applicable, each party shall obtain and bear all expenses relating to any necessary licenses and/or exemptions with respect to its own export of the Software from Canada or the U.S. Neither the Software nor the underlying information or technology may be electronically transmitted or otherwise exported or re-exported (i) into Belarus, Myanmar (Burma), Cuba, Iran, Iraq, Libya, North Korea, Sudan, Syria or any other country subject to Canada or U.S. trade sanctions covering the Software, to individuals or entities controlled by such countries, or to nationals or residents of such countries other than nationals who are lawfully admitted permanent residents of countries not subject to such sanctions; or (ii) to anyone on Canada's Area Control List of the Export and Import Permits Act, or; (iii) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals and Blocked Persons or the U.S. Commerce Department's Table of Denial Orders. By downloading or using the Software, You agree to the foregoing and represent and warrant that it complies with these conditions.\n\n11. U.S. Government End-Users. The Software is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire the Software with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Unpublished rights are reserved under the copyright laws of Canada and the United States.\n\n12. Licensee Outside The U.S. If You are located outside the U.S., then the following provisions shall apply: (i) Les parties aux presentes confirment leur volonte que cette convention de meme que tous les documents y compris tout avis qui siy rattache, soient rediges en langue anglaise (translation: \"The parties confirm that this Agreement and all related documentation is and will be in the English language.\"); and (ii) You are responsible for complying with any local laws in your jurisdiction which might impact your right to import, export or use the Software, and You represent that You have complied with any regulations or registration procedures required by applicable law to make this license enforceable.\n\n13. Severability. If any provision of this Agreement is declared invalid or unenforceable, such provision shall be deemed modified to the extent necessary and possible to render it valid and enforceable. In any event, the unenforceability or invalidity of any provision shall not affect any other provision of this Agreement, and this Agreement shall continue in full force and effect, and be construed and enforced, as if such provision had not been included, or had been modified as above provided, as the case may be.\n\n14. Arbitration. Except for actions to protect intellectual property rights and to enforce an arbitrator's decision hereunder, all disputes, controversies, or claims arising out of or relating to this Agreement or a breach thereof shall be submitted to and be finally resolved by arbitration under the rules of the American Arbitration Association (\"AAA\") then in effect. There shall be one arbitrator, and such arbitrator shall be chosen by mutual agreement of the parties in accordance with AAA rules. The arbitration shall take place in Vancouver, BC, Canada, and may be conducted by telephone or online. The arbitrator shall apply the laws of the Province of British Columbia, Canada to all issues in dispute. The controversy or claim shall be arbitrated on an individual basis, and shall not be consolidated in any arbitration with any claim or controversy of any other party. The findings of the arbitrator shall be final and binding on the parties, and may be entered in any court of competent jurisdiction for enforcement. Enforcements of any award or judgment shall be governed by the United Nations Convention on the Recognition and Enforcement of Foreign Arbitral Awards. Should either party file an action contrary to this provision, the other party may recover attorney's fees and costs up to $1000.00.\n\n15. Jurisdiction and Venue. The courts of Vancouver in the Province of British Columbia, Canada and the nearest British Columbia provincial court shall be the exclusive jurisdiction and venue for all legal proceedings that are not arbitrated under this Agreement.\n\n16. Force Majeure. Neither party shall be liable for damages for any delay or failure of delivery arising out of causes beyond their reasonable control and without their fault or negligence, including, but not limited to, Acts of God, acts of civil or military authority, fires, riots, wars, embargoes, Internet disruptions, hacker attacks, or communications failures. Notwithstanding anything to the contrary contained herein, if either party is unable to perform hereunder for a period of thirty (30) consecutive days, then the other party may terminate this Agreement immediately without liability by ten (10) days written notice to the other.\n\n17. Publicity Rights. You grant ACTIVESTATE the right to include Your name, trade name, trademark, service mark or logo in its Software promotional material. You may retract this grant at any time in writing to sales@activestate.com, requesting Your name, trade name, trademark, service mark or logo be excluded from future releases of ACTIVESTATE Software promotional material. Requests cannot be complied with retroactively and may require up to thirty days to process.\n\n18. Assignment. Except as expressly provided herein neither this Agreement nor any rights granted hereunder, nor the use of any of the Software may be assigned, or otherwise transferred, in whole or in part, by Licensee, without the prior written consent of ACTIVESTATE. ACTIVESTATE may assign this Agreement in the event of a merger or sale of all or substantially all of the stock of assets of ACTIVESTATE without the consent of Licensee. Any attempted assignment will be void and of no effect unless permitted by the foregoing. This Agreement shall inure to the benefit of the parties permitted successors and assigns.\n\n19. Miscellaneous. This Agreement constitutes the entire understanding of the parties with respect to the subject matter of this Agreement and merges all prior communications, representations, and agreements. ACTIVESTATE reserves the right to change this Agreement at any time, which change shall be effective immediately upon its posting into any future release of the Software. If any provision of this Agreement is held to be unenforceable for any reason, such provision shall be reformed only to the extent necessary to make it enforceable. This Agreement shall be construed under the laws of the Province of British Columbia, Canada, excluding rules regarding conflicts of law. The application of the United Nations Convention of Contracts for the International Sale of Goods is expressly excluded. The parties agree that the Uniform Computer Transactions Act or any version thereof, adopted by any state, in any form (\"UCITA\"), shall not apply to this Agreement, and to the extent that UCITA may be applicable, the parties agree to opt out of the applicability of UCITA pursuant to the opt-out provision(s) contained therein.", + "json": "activestate-community-2012.json", + "yaml": "activestate-community-2012.yml", + "html": "activestate-community-2012.html", + "license": "activestate-community-2012.LICENSE" + }, + { + "license_key": "activestate-komodo-edit", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-activestate-komodo-edit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ACTIVESTATE\u00ae KOMODO\u00ae EDIT LICENSE AGREEMENT\n\nPlease read carefully: THIS IS A LICENSE AND NOT AN AGREEMENT FOR SALE. By using and installing ActiveState's Software or, where applicable, choosing the \"I ACCEPT...\" option at the end of the License you indicate that you have read, understood, and accepted the terms and conditions of the License. IF YOU DO NOT AGREE WITH THE TERMS AND CONDITIONS, YOU SHOULD NOT ATTEMPT TO INSTALL THE SOFTWARE. If the Software is already downloaded or installed, you should promptly cease using the Software in any manner and destroy all copies of the Software in your possession. You, the user, assume all responsibility for the selection of the Software to achieve your intended results and for the installation, use and results obtained from the Software. If you have any questions concerning this, you may contact ActiveState via license@activestate.com.\n\nVersion 1.1\n\nA SOURCE CODE VERSION OF CERTAIN KOMODO EDIT BROWSER FUNCTIONALITY THAT YOU MAY USE, MODIFY AND DISTRIBUTE IS AVAILABLE TO YOU FREE-OF-CHARGE FROM WWW.ACTIVESTATE.COM UNDER THE MOZILLA PUBLIC and other open source software licenses.\n\nThe accompanying executable code version of ActiveState Komodo Edit and related documentation (the \"Product\") is made available to you under the terms of this ActiveState Komodo Edit END-USER SOFTWARE LICENSE AGREEMENT (THE \"AGREEMENT\"). BY CLICKING THE \"ACCEPT\" BUTTON, OR BY INSTALLING OR USING THE ActiveState Komodo Edit BROWSER, YOU ARE CONSENTING TO BE BOUND BY THE AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT, DO NOT CLICK THE \"ACCEPT\" BUTTON, AND DO NOT INSTALL OR USE ANY PART OF THE ActiveState Komodo Edit BROWSER.\n\nDURING THE ACTIVESTATE KOMODO EDIT INSTALLATION PROCESS, AND AT LATER TIMES, YOU MAY BE GIVEN THE OPTION OF INSTALLING ADDITIONAL COMPONENTS FROM THIRD-PARTY SOFTWARE PROVIDERS. THE INSTALLATION AND USE OF THOSE THIRD-PARTY COMPONENTS MAY BE GOVERNED BY ADDITIONAL LICENSE AGREEMENTS.\n\nLICENSE GRANT. ActiveState Software grants you a non-exclusive license to use the executable code version of the Product. This Agreement will also govern any software upgrades provided by ActiveState that replace and/or supplement the original Product, unless such upgrades are accompanied by a separate license, in which case the terms of that license will govern.\n\nTERMINATION. If you breach this Agreement your right to use the Product will terminate immediately and without notice, but all provisions of this Agreement except the License Grant (Paragraph 1) will survive termination and continue in effect. Upon termination, you must destroy all copies of the Product.\n\nPROPRIETARY RIGHTS. Portions of the Product are available in source code form under the terms of the Mozilla Public License and other open source licenses (collectively, \"Open Source Licenses\") at www.activestate.com. Nothing in this Agreement will be construed to limit any rights granted under the Open Source Licenses. Subject to the foregoing, ActiveState, for itself and on behalf of its licensors, hereby reserves all intellectual property rights in the Product, except for the rights expressly granted in this Agreement. You may not remove or alter any trademark, logo, copyright or other proprietary notice in or on the Product. This license does not grant you any right to use the trademarks, service marks or logos of ActiveState or its licensors.\n\nPRIVACY POLICY. You agree to the ActiveState Komodo Edit Privacy Policy, made available online at privacy policy, as that policy may be changed from time to time. When ActiveState changes the policy in a material way a notice will be posted on the website at www.activestate.com, and when any change is made in the privacy policy, the updated policy will be posted at the above link. It is your responsibility to ensure that you understand the terms of the privacy policy, so you should periodically check the current version of the policy for changes.\n\nDISCLAIMER OF WARRANTY. THE PRODUCT IS PROVIDED \"AS IS\" WITH ALL FAULTS. TO THE EXTENT PERMITTED BY LAW, ACTIVESTATE AND ACTIVESTATE'S DISTRIBUTORS, AND LICENSORS HEREBY DISCLAIM ALL WARRANTIES, WHETHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES THAT THE PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE AND NON-INFRINGING. YOU BEAR THE ENTIRE RISK AS TO SELECTING THE PRODUCT FOR YOUR PURPOSES AND AS TO THE QUALITY AND PERFORMANCE OF THE PRODUCT. THIS LIMITATION WILL APPLY NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF IMPLIED WARRANTIES, SO THIS DISCLAIMER MAY NOT APPLY TO YOU.\nLIMITATION OF LIABILITY. EXCEPT AS REQUIRED BY LAW, ACTIVESTATE AND ITS DISTRIBUTORS, DIRECTORS, LICENSORS, CONTRIBUTORS AND AGENTS (COLLECTIVELY, \"ACTIVESTATE\") WILL NOT BE LIABLE FOR ANY INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES ARISING OUT OF OR IN ANY WAY RELATING TO THIS AGREEMENT OR THE USE OF OR INABILITY TO USE THE PRODUCT, INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, LOST PROFITS, LOSS OF DATA, AND COMPUTER FAILURE OR MALFUNCTION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND REGARDLESS OF THE THEORY (CONTRACT, TORT OR OTHERWISE) UPON WHICH SUCH CLAIM IS BASED. ACTIVESTATE'S LIABILITY UNDER THIS AGREEMENT WILL NOT EXCEED THE GREATER OF $500 (FIVE HUNDRED DOLLARS) AND THE FEES PAID BY YOU UNDER THE LICENSE (IF ANY). SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL, CONSEQUENTIAL OR SPECIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\nEXPORT CONTROLS. This license is subject to all applicable export restrictions. You must comply with all export and import laws and restrictions and regulations of any United States or foreign agency or authority relating to the Product and its use.\nU.S. GOVERNMENT END-USERS. This Product is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101, consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995) and 48 C.F.R. 227.7202 (June 1995). Consistent with 48 C.F.R. 12.212, 48 C.F.R. 27.405(b)(2) (June 1998) and 48 C.F.R. 227.7202, all U.S. Government End Users acquire the Product with only those rights as set forth therein.\n\nMISCELLANEOUS. (a) This Agreement constitutes the entire agreement between ActiveState and you concerning the subject matter hereof, and it may only be modified by a written amendment signed by an authorized executive of ActiveState. (b) Except to the extent applicable law, if any, provides otherwise, this Agreement will be governed by the laws of the state of California, U.S.A., excluding its conflict of law provisions. (c) This Agreement will not be governed by the United Nations Convention on Contracts for the International Sale of Goods. (d) If any part of this Agreement is held invalid or unenforceable, that part will be construed to reflect the parties' original intent, and the remaining portions will remain in full force and effect. (e) A waiver by either party of any term or condition of this Agreement or any breach thereof, in any one instance, will not waive such term or condition or any subsequent breach thereof. (f) Except as required by law, the controlling language of this Agreement is English. (g) You may assign your rights under this Agreement to any party that consents to, and agrees to be bound by, its terms; ActiveState may assign its rights under this Agreement without condition. (h) This Agreement will be binding upon and inure to the benefit of the parties, their successors and permitted assigns.", + "json": "activestate-komodo-edit.json", + "yaml": "activestate-komodo-edit.yml", + "html": "activestate-komodo-edit.html", + "license": "activestate-komodo-edit.LICENSE" + }, + { + "license_key": "actuate-birt-ihub-ftype-sla", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-actuate-birt-ihub-ftype-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Actuate Corporation BIRT iHub F-Type Software License Agreement\n\nIMPORTANT \u2013 READ CAREFULLY.\n\nTHIS ACTUATE CORPORATION F-TYPE LICENSE AGREEMENT (\"AGREEMENT\") GOVERNS THE INSTALLATION AND USE OF THE BIRT iHUB F-TYPE SOFTWARE DESCRIBED HEREIN (\"SOFTWARE\"). YOU WILL BE REQUIRED TO INDICATE YOUR AGREEMENT TO THESE TERMS AND CONDITIONS IN ORDER TO COMPLETE THE INSTALLATION PROCESS. IF YOU DO NOT AGREE WITH ANY TERMS OF THIS AGREEMENT, ACTUATE DOES NOT GRANT ANY LICENSE TO THE SOFTWARE AND YOU MAY NOT INSTALL, COPY, UPLOAD, DOWNLOAD OR OTHERWISE MAKE ANY USE OF THE SOFTWARE. BY CLICKING ON THE \"YES\" OR OTHER BUTTON OR MECHANISM DESIGNED TO ACKNOWLEDGE AGREEMENT TO THIS AGREEMENT, OR INSTALLING THE SOFTWARE, YOU CONSENT TO BE BOUND BY THIS AGREEMENT, INCLUDING ALL TERMS INCORPORATED BY REFERENCE. YOU AGREE THIS AGREEMENT IS EQUIVALENT TO ANY WRITTEN, NEGOTIATED, SIGNED AGREEMENT. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A BUSINESS, GOVERNMENT AGENCY, OR OTHER ORGANIZATION, YOU REPRESENT AND WARRANT THAT YOU HAVE AUTHORITY TO BIND THAT ENTITY TO THIS AGREEMENT, AND YOUR ASSENT TO THESE TERMS WILL BE TREATED AS THE ASSENT OF THAT ENTITY. IN THIS EVENT, \"YOU\" AND \"YOUR\" REFER HEREIN TO THAT ENTITY.\n\n1.\tLICENSE FOR INTERNAL USE. Actuate Corporation (\"Actuate\") grants You a non-exclusive license for Your internal use of one (1) copy of the accompanying software (\"Software\") on one (1) stand-alone server or computer. You acknowledge that the Software may be limited in features, functions, or have other limitations not present in other similar Actuate software that is available for license for a fee.\n\n2.\tRESTRICTIONS. You may not copy or disclose any of the terms of this Agreement. The Software is copyrighted by Actuate. Title to the Software and all rights not specifically granted to you under this Agreement are retained by Actuate and its licensors. Unless enforcement of this term is prohibited by applicable law, you may not modify, decompile, or reverse engineer the Software. Your license does not extend to use in support of any ultra-hazardous activity. No right, title or interest in or to any trademark, service mark, logo or trade name of Actuate or its licensors is granted under this Agreement. You may not transfer, sublicense, or otherwise distribute Software by any electronic or physical method including using the Software as part of any software application (hosted or otherwise) for which You charge customers a fee. The computer on which you install Software may not be connected to any other computer, through a clustered configuration or otherwise, so that they or multiple copies of the Software act as one system or application. With the exception of BIRT Analytics you may not combine installation or use of copies of Software with each other or any software licensed from Actuate or a third party licensor for a fee. You may not use Software for development, test, back-up, or other non-production use in an application where You use commercially licensed Actuate software for production (and vice versa). You agree to re-activate your license to the Software annually on the then current terms provided at http://www.actuate.com/documentation/ihubftype3/license. You agree to only purchase maintenance services, support and professional services from Actuate.\n\n3.\tDATA LIMITS AND REPORTING. The Software is designed to limit the amount of data and information that it can process in each 24 hour period. The Software will not allow generation or viewing of content the third time You exceed these limits. You acknowledge and agree that the Software reports information about Your use of the Software to Actuate, including but not limited to, the type of operation You initiate, the date and time of that operation and the amount of data processed by the Software in a given time. We will not collect the actual information that You process.\n\n4.\tTHIRD PARTY SOFTWARE COMPONENTS. Software contains components licensed by third-parties (\"Third-Party Components\"). Additional information and applicable license terms related to Third-Party Components is contained in the actual files for such Third-Party Components and/or in the third party license file accompanying the Software. In the case of any conflict between the license terms related to Third-Party Components and this license agreement, the license terms related to the Third Party Components shall prevail with respect to the relevant Third Party Component and this license shall prevail with respect to the portion of the Software created by Actuate.\n\n5.\tINDEMNIFICATION. Actuate agrees, to defend or at its option to settle any claim or action brought against You by a third- party, and to indemnify You and Your officers, directors, and employees against all damages and costs finally awarded that are attributable to such claim or action, or the settlement by Actuate thereof, if and to the extent such claim or action is based on actual infringement of the third-party claimant\u2019s United States or Canadian patent, copyright, trade secret or trademark and caused by Your use of the Software in accordance with the rights granted by Actuate under this Agreement. Actuate shall be released from this obligation unless You provide Actuate with (i) prompt written notice of any such claim or action, or possibility thereof, (ii) sole control and authority over the defense or settlement of such claim or action, and (iii) proper and full information and assistance to settle and/or defend any such claim or action. Without limiting this indemnification, if a final injunction is, or Actuate believes in its sole discretion is likely to be, entered prohibiting the use of the Software as contemplated, Actuate will, at its sole option and expense, either (i) procure the right to use the infringing Software as provided herein, (ii) replace the infringing Software with non-infringing,\n \nfunctionally equivalent product, (iii) suitably modify the infringing Software so that it is not infringing, or if (i), (ii) or (iii) above is not obtainable on commercially reasonable terms, (iv) accept return of the infringing Software. Except as specified above, Actuate will not be liable for any costs or expenses incurred without its prior written authorization. Actuate assumes no liability for infringement claims arising from (i) the combination of the Software with products not provided by Actuate, (ii) any modifications to the Software unless such modification was made by Actuate, or (iii) use of the Software that is not in accordance with its documentation. THIS SECTION 5 STATES THE ENTIRE LIABILITY AND OBLIGATIONS OF ACTUATE, AND YOUR EXCLUSIVE REMEDY WITH RESPECT TO ANY ACTUAL OR ALLEGED INFRINGEMENT OF ANY PATENT, COPYRIGHT, TRADE SECRET, TRADEMARK OR OTHER INTELLECTUAL PROPERTY RIGHT BY THE SOFTWARE.\n\n6.\tDISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n7.\tLIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL ACTUATE OR ITS LICENSORS BE LIABLE FOR ANY DIRECT DAMAGES IN EXCESS OF $1,000, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, (INCLUDING BUT NOT LIMTED TO LOST REVENUE OR PROFIT) HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF ACTUATE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n8.\tTerm and Termination. You may terminate this Agreement at any time by destroying all copies of the Software. This Agreement terminates immediately with or without notice from Actuate if you fail to comply with any provision of this Agreement. Upon termination, You agree to de-install and stop using the Software.\n\n9.\tExport Regulations. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you.\n\n10.\tU.S. Government Restricted Rights. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n11.\tGoverning Law. Any action related to this Agreement will be governed by California and controlling U.S. federal law and will be heard in a court having jurisdiction over San Mateo, California. No choice of law rules of any jurisdiction will apply.\n\n12.\tSeverability. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n13.\tIntegration. This Agreement is the entire agreement between you and Actuate relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement.\n\n\nActuate BIRT iHub F-Type \u2013 Actuate License Version 2014-12-10", + "json": "actuate-birt-ihub-ftype-sla.json", + "yaml": "actuate-birt-ihub-ftype-sla.yml", + "html": "actuate-birt-ihub-ftype-sla.html", + "license": "actuate-birt-ihub-ftype-sla.LICENSE" + }, + { + "license_key": "ada-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ada-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, if other files instantiate generics from this \nunit, or you link this unit with other files to produce an executable, \nthis unit does not by itself cause the resulting executable to be \ncovered by the GNU General Public License. This exception does not \nhowever invalidate any other reasons why the executable file might be \ncovered by the GNU Public License.", + "json": "ada-linking-exception.json", + "yaml": "ada-linking-exception.yml", + "html": "ada-linking-exception.html", + "license": "ada-linking-exception.LICENSE" + }, + { + "license_key": "adapt-1.0", + "category": "Copyleft", + "spdx_license_key": "APL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ADAPTIVE PUBLIC LICENSE\nVersion 1.0\nTHE LICENSED WORK IS PROVIDED UNDER THE TERMS OF THIS ADAPTIVE PUBLIC LICENSE\n(\"LICENSE\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE LICENSED WORK CONSTITUTES\nRECIPIENT'S ACCEPTANCE OF THIS LICENSE AND ITS TERMS, WHETHER OR NOT SUCH\nRECIPIENT READS THE TERMS OF THIS LICENSE. \"LICENSED WORK\" AND \"RECIPIENT\" ARE DEFINED BELOW.\n\nIMPORTANT NOTE: This License is \"adaptive\", and the generic version or another version of an Adaptive Public License should not be relied upon to determine your rights and obligations under this License. You must read the specific Adaptive Public License that you receive with the Licensed Work, as certain terms are defined at the outset by the Initial Contributor.\n\nSee Section 2.2 below, Exhibit A attached, and any Suppfile.txt accompanying this License to determine the specific adaptive features applicable to this License. For example, without limiting the foregoing, (a) for selected choice of law and jurisdiction see Part 3 of Exhibit A; (b) for the selected definition of Third Party see Part 4 of Exhibit A; and (c) for selected patent licensing terms (if any) see Section 2.2 below and Part 6 of Exhibit A.\n\n1. DEFINITIONS.\n\n1.1. \"CONTRIBUTION\" means:\n\n(a) In the case of the Initial Contributor, the Initial Work distributed under this License by the Initial Contributor; and\n\n(b) In the case of each Subsequent Contributor, the Subsequent Work originating from and distributed by such Subsequent Contributor.\n\n1.2. \"DESIGNATED WEB SITE\" means the web site having the URL identified in Part 1 of Exhibit A, which URL may be changed by the Initial Contributor by posting on the current Designated Web Site the new URL for at least sixty (60) days.\n\n1.3. \"DISTRIBUTOR\" means any Person that distributes the Licensed Work or any portion thereof to at least one Third Party.\n\n1.4. \"ELECTRONIC DISTRIBUTION MECHANISM\" means any mechanism generally accepted in the software development community for the electronic transfer of data.\n\n1.5. \"EXECUTABLE\" means the Licensed Work in any form other than Source Code.\n\n1.6. \"GOVERNING JURISDICTION\" means the state, province or other legal jurisdiction identified in Part 3 of Exhibit A.\n\n1.7. \"INDEPENDENT MODULE\" means a separate module of software and/or data that is not a derivative work of or copied from the Licensed Work or any portion thereof. In addition, a module does not qualify as an Independent Module but instead forms part of the Licensed Work if the module: (a) is embedded in the Licensed Work; (b) is included by reference in the Licensed Work other than by a function call or a class reference; or (c) must be included or contained, in whole or in part, within a file directory or subdirectory actually containing files making up the Licensed Work.\n\n1.8. \"INITIAL CONTRIBUTOR\" means the Person or entity identified as the Initial Contributor in the notice required by Part 1 of Exhibit A.\n\n1.9. \"INITIAL WORK\" means the initial Source Code, object code (if any) and documentation for the computer program identified in Part 2 of Exhibit A, as such Source Code, object code and documentation is distributed under this License by the Initial Contributor.\n\n1.10. \"LARGER WORK\" means a work that combines the Licensed Work or portions thereof with code not governed by this License.\n\n1.11. \"LICENSED WORK\" means the Initial Work and/or any Subsequent Work, in each case including portions thereof.\n\n1.12. \"LICENSE NOTICE\" has the meaning assigned in Part 5 of Exhibit A.\n\n1.13. \"MODIFICATION\" or \"MODIFICATIONS\" means any change to and/or addition to the Licensed Work.\n\n1.14. \"PERSON\" means an individual or other legal entity, including a corporation, partnership or other body.\n\n1.15. \"RECIPIENT\" means any Person who receives or obtains the Licensed Work under this License (by way of example, without limiting the foregoing, any Subsequent Contributor or Distributor).\n\n1.16. \"SOURCE CODE\" means the source code for a computer program, including the source code for all modules and components of the computer program, plus any associated interface definition files, and scripts used to control compilation and installation of an executable.\n\n1.17. \"SUBSEQUENT CONTRIBUTOR\" means any Person that makes or contributes to the making of any Subsequent Work and that distributes that Subsequent Work to at least one Third Party.\n\n1.18. \"SUBSEQUENT WORK\" means a work that has resulted or arises from changes to and/or additions to:\n\n(a) the Initial Work;\n\n(b) any other Subsequent Work; or\n\n(c) to any combination of the Initial Work and any such other Subsequent Work;\n\nwhere such changes and/or additions originate from a Subsequent Contributor. A Subsequent Work will \"originate\" from a Subsequent Contributor if the Subsequent Work was a result of efforts by such Subsequent Contributor (or anyone acting on such Subsequent Contributor's behalf, such as, a contractor or other entity that is engaged by or under the direction of the Subsequent Contributor). For greater certainty, a Subsequent Work expressly excludes and shall not capture within its meaning any Independent Module.\n\n1.19. \"SUPPLEMENT FILE\" means a file distributed with the Licensed Work having a file name \"suppfile.txt\".\n\n1.20. \"THIRD PARTY\" has the meaning assigned in Part 4 of Exhibit A.\n\n2. LICENSE.\n\n2.1. COPYRIGHT LICENSE FROM INITIAL AND SUBSEQUENT CONTRIBUTORS.\n\n(a) Subject to the terms of this License, the Initial Contributor hereby grants\neach Recipient a world-wide, royalty-free, non-exclusive copyright license to:\n\n(i) reproduce, prepare derivative works of, publicly display, publicly perform,\ndistribute and sublicense the Initial Work; and\n\n(ii) reproduce, publicly display, publicly perform, distribute, and sublicense\nany derivative works (if any) prepared by Recipient;\n\nin Source Code and Executable form, either with other Modifications, on an\nunmodified basis, or as part of a Larger Work.\n\n(b) Subject to the terms of this License, each Subsequent Contributor hereby\ngrants each Recipient a world-wide, royalty-free, non-exclusive copyright\nlicense to:\n\n(i) reproduce, prepare derivative works of, publicly display, publicly perform,\ndistribute and sublicense the Subsequent Work of such Subsequent Contributor;\nand\n\n(ii) reproduce, publicly display, publicly perform, distribute, and sublicense\nany derivative works (if any) prepared by Recipient;\n\nin Source Code and Executable form, either with other Modifications, on an unmodified basis, or as part of a Larger Work.\n2.2. PATENT LICENSE FROM INITIAL AND SUBSEQUENT CONTRIBUTORS.\n\n(a) This License does not include or grant any patent license whatsoever from the Initial Contributor, Subsequent Contributor, or any Distributor unless, at the time the Initial Work is first distributed or made available under this License (as the case may be), the Initial Contributor has selected pursuant to Part 6 of Exhibit A the patent terms in paragraphs A, B, C, D and E from Part 6 of Exhibit A. If this is not done then the Initial Work and any other Subsequent Work is made available under the License without any patent license (the \"PATENTS-EXCLUDED LICENSE\").\n\n(b) However, the Initial Contributor may subsequently distribute or make available (as the case may be) future copies of: (1) the Initial Work; or (2) any Licensed Work distributed by the Initial Contributor which includes the Initial Work (or any portion thereof) and/or any Modification made by the Initial Contributor; available under a License which includes a patent license (the \"PATENTS-INCLUDED LICENSE\") by selecting pursuant to Part 6 of Exhibit A the patent terms in paragraphs A, B, C, D and E from Part 6 of Exhibit A, when the Initial Contributor distributes or makes available (as the case may be) such future copies under this License.\n\n(c) If any Recipient receives or obtains one or more copies of the Initial Work or any other portion of the Licensed Work under the Patents-Included License, then all licensing of such copies under this License shall include the terms in paragraphs A, B, C, D and E from Part 6 of Exhibit A and that Recipient shall not be able to rely upon the Patents-Excluded License for any such copies. However, all Recipients that receive one or more copies of the Initial Work or any other portion of the Licensed Work under a copy of the License which includes the Patents-Excluded License shall have no patent license with respect to such copies received under the Patents-Excluded License and availability and distribution of such copies, including Modifications made by such Recipient to such copies, shall be under a copy of the License without any patent license.\n\n(d) Where a Recipient uses in combination or combines any copy of the Licensed Work (or portion thereof) licensed under a copy of the License having a Patents-Excluded License with any copy of the Licensed Work (or portion thereof) licensed under a copy of the License having a Patents-Included License, the combination (and any portion thereof) shall, from the first time such Recipient uses, makes available or distributes the combination (as the case may be), be subject to only the terms of the License having the Patents-Included License which shall include the terms in paragraphs A, B, C, D and E from Part 6 of Exhibit A.\n\n2.3. ACKNOWLEDGEMENT AND DISCLAIMER.\n\nRecipient understands and agrees that although Initial Contributor and each Subsequent Contributor grants the licenses to its Contributions set forth herein, no representation, warranty, guarantee or assurance is provided by any Initial Contributor, Subsequent Contributor, or Distributor that the Licensed Work does not infringe the patent or other intellectual property rights of any other entity. Initial Contributor, Subsequent Contributor, and each Distributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise, in relation to the Licensed Works. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, without limiting the foregoing disclaimers, if a third party patent license is required to allow Recipient to distribute the Licensed Work, it is Recipient's responsibility to acquire that license before distributing the Licensed Work.\n\n2.4. RESERVATION.\n\nNothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Initial Contributor, Subsequent Contributor, or Distributor except as expressly stated herein.\n\n3. DISTRIBUTION OBLIGATIONS.\n\n3.1. DISTRIBUTION GENERALLY.\n\n(a) A Subsequent Contributor shall make that Subsequent Contributor's Subsequent Work(s) available to the public via an Electronic Distribution Mechanism for a period of at least twelve (12) months. The aforesaid twelve (12) month period shall begin within a reasonable time after the creation of the Subsequent Work and no later than sixty (60) days after first distribution of that Subsequent Contributor's Subsequent Work.\n\n(b) All Distributors must distribute the Licensed Work in accordance with the terms of the License, and must include a copy of this License (including without limitation Exhibit A and the accompanying Supplement File) with each copy of the Licensed Work distributed. In particular, this License must be prominently distributed with the Licensed Work in a file called \"license.txt.\" In addition, the License Notice in Part 5 of Exhibit A must be included at the beginning of all Source Code files, and viewable to a user in any executable such that the License Notice is reasonably brought to the attention of any party using the Licensed Work.\n\n3.2. EXECUTABLE DISTRIBUTIONS OF THE LICENSED WORK.\n\nA Distributor may choose to distribute the Licensed Work, or any portion thereof, in Executable form (an \"EXECUTABLE DISTRIBUTION\") to any third party, under the terms of Section 2 of this License, provided the Executable Distribution is made available under and accompanied by a copy of this License, AND provided at least ONE of the following conditions is fulfilled:\n\n(a) The Executable Distribution must be accompanied by the Source Code for the Licensed Work making up the Executable Distribution, and the Source Code must be distributed on the same media as the Executable Distribution or using an Electronic Distribution Mechanism; or\n\n(b) The Executable Distribution must be accompanied with a written offer, valid for at least thirty six (36) months, to give any third party under the terms of this License, for a charge no more than the cost of physically performing source distribution, a complete machine-readable copy of the Source Code for the Licensed Work making up the Executable Distribution, to be available and distributed using an Electronic Distribution Mechanism, and such Executable Distribution must remain available in Source Code form to any third party via the Electronic Distribution Mechanism (or any replacement Electronic Distribution Mechanism the particular Distributor may reasonably need to turn to as a substitute) for said at least thirty six (36) months.\n\nFor greater certainty, the above-noted requirements apply to any Licensed Work or portion thereof distributed to any third party in Executable form, whether such distribution is made alone, in combination with a Larger Work or Independent Modules, or in some other combination.\n\n3.3. SOURCE CODE DISTRIBUTIONS.\n\nWhen a Distributor makes the Licensed Work, or any portion thereof, available to any Person in Source Code form, it must be made available under this License and a copy of this License must be included with each copy of the Source Code, situated so that the copy of the License is conspicuously brought to the attention of that Person. For greater clarification, this Section 3.3 applies to all distribution of the Licensed Work in any Source Code form. A Distributor may charge a fee for the physical act of transferring a copy, which charge shall be no more than the cost of physically performing source distribution.\n\n3.4. REQUIRED NOTICES IN SOURCE CODE.\n\nEach Subsequent Contributor must ensure that the notice set out in Part 5 of Exhibit A is included in each file of the Source Code for each Subsequent Work originating from that particular Subsequent Contributor, if such notice is not already included in each such file. If it is not possible to put such notice in a particular Source Code file due to its structure, then the Subsequent Contributor must include such notice in a location (such as a relevant directory in which the file is stored) where a user would be likely to look for such a notice.\n\n3.5. NO DISTRIBUTION REQUIREMENTS FOR INTERNALLY USED MODIFICATIONS.\n\nNotwithstanding Sections 3.2, 3.3 and 3.4, Recipient may, internally within its own corporation or organization use the Licensed Work, including the Initial Work and Subsequent Works, and make Modifications for internal use within Recipient's own corporation or organization (collectively, \"INTERNAL USE MODIFICATIONS\"). The Recipient shall have no obligation to distribute, in either Source Code or Executable form, any such Internal Use Modifications made by Recipient in the course of such internal use, except where required below in this Section 3.5. All Internal Use Modifications distributed to any Person, whether or not a Third Party, shall be distributed pursuant to and be accompanied by the terms of this License. If the Recipient chooses to distribute any such Internal Use Modifications to any Third Party, then the Recipient shall be deemed a Subsequent Contributor, and any such Internal Use Modifications distributed to any Third Party shall be deemed a Subsequent Work originating from that Subsequent Contributor, and shall from the first such instance become part of the Licensed Work that must thereafter be distributed and made available to third parties in accordance with the terms of Sections 3.1 to 3.4 inclusive.\n\n3.6. INDEPENDENT MODULES.\n\nThis License shall not apply to Independent Modules of any Initial Contributor, Subsequent Contributor, Distributor or any Recipient, and such Independent Modules may be licensed or made available under one or more separate license agreements.\n\n3.7. LARGER WORKS.\n\nAny Distributor or Recipient may create or contribute to a Larger Work by combining any of the Licensed Work with other code not governed by the terms of this License, and may distribute the Larger Work as one or more products. However, in any such case, Distributor or Recipient (as the case may be) must make sure that the requirements of this License are fulfilled for the Licensed Work portion of the Larger Work.\n\n3.8. DESCRIPTION OF DISTRIBUTED MODIFICATIONS.\n\n(a) Each Subsequent Contributor (including the Initial Contributor where the Initial Contributor also qualifies as a Subsequent Contributor) must cause each Subsequent Work created or contributed to by that Subsequent Contributor to contain a file documenting the changes, in accordance with the requirements of Part 1 of the Supplement File, that such Subsequent Contributor made in the creation or contribution to that Subsequent Work. If no Supplement File exists or no requirements are set out in Part 1 of the Supplement File, then there are no requirements for Subsequent Contributors to document changes that they make resulting in Subsequent Works.\n\n(b) The Initial Contributor may at any time introduce requirements or add to or change earlier requirements (in each case, the \"EARLIER DESCRIPTION REQUIREMENTS\") for documenting changes resulting in Subsequent Works by revising Part 1 of each copy of the Supplement File distributed by the Initial Contributor with future copies of the Licensed Work so that Part 1 then contains new requirements (the \"NEW DESCRIPTION REQUIREMENTS\") for documenting such changes.\n\n(c) Any Recipient receiving at any time any copy of an Initial Work or any Subsequent Work under a copy of this License (in each case, an \"Earlier LICENSED COPY\") having the Earlier Description Requirements may choose, with respect to each such Earlier Licensed Copy, to comply with the Earlier Description Requirements or the New Description Requirements. Where a Recipient chooses to comply with the New Description Requirements, that Recipient will, when thereafter distributing any copies of any such Earlier Licensed Copy, include a Supplement File having a section entitled Part 1 that contains a copy of the New Description Requirements.\n\n(d) For greater certainty, the intent of Part 1 of the Supplement File is to provide a mechanism (if any) by which Subsequent Contributors must document changes that they make to the Licensed Work resulting in Subsequent Works. Part 1 of any Supplement File shall not be used to increase or reduce the scope of the license granted in Article 2 of this License or in any other way increase or decrease the rights and obligations of any Recipient, and shall at no time serve as the basis for terminating the License. Further, a Recipient can be required to correct and change its documentation procedures to comply with Part 1 of the Supplement File, but cannot be penalised with damages. Part 1 of any Supplement File is only binding on each Recipient of any Licensed Work to the extent Part 1 sets out the requirements for documenting changes to the Initial Work or any Subsequent Work.\n\n(e) An example of a set of requirements for documenting changes and contributions made by Subsequent Contributor is set out in Part 7 of Exhibit A of this License. Part 7 is a sample only and is not binding on Recipients, unless (subject to the earlier paragraphs of this Section 3.8) those are the requirements that the Initial Contributor includes in Part 1 of the Supplement File with the copies of the Initial Work distributed under this License.\n\n3.9. USE OF DISTRIBUTOR NAME.\n\nThe name of a Distributor may not be used by any other Distributor to endorse or promote the Licensed Work or products derived from the Licensed Work, without prior written permission.\n\n3.10. LIMITED RECOGNITION OF INITIAL CONTRIBUTOR.\n\n(a) As a modest attribution to the Initial Contributor, in the hope that its promotional value may help justify the time, money and effort invested in writing the Initial Work, the Initial Contributor may include in Part 2 of the Supplement File a requirement that each time an executable program resulting from the Initial Work or any Subsequent Work, or a program dependent thereon, is launched or run, a prominent display of the Initial Contributor's attribution information must occur (the \"ATTRIBUTION INFORMATION\"). The Attribution Information must be included at the beginning of each Source Code file. For greater certainty, the Initial Contributor may specify in the Supplement File that the above attribution requirement only applies to an executable program resulting from the Initial Work or any Subsequent Work, but not a program dependent thereon. The intent is to provide for reasonably modest attribution, therefore the Initial Contributor may not require Recipients to display, at any time, more than the following Attribution Information: (a) a copyright notice including the name of the Initial Contributor; (b) a word or one phrase (not exceeding 10 words); (c) one digital image or graphic provided with the Initial Work; and (d) a URL (collectively, the \"ATTRIBUTION LIMITS\").\n\n(b) If no Supplement File exists, or no Attribution Information is set out in Part 2 of the Supplement File, then there are no requirements for Recipients to display any Attribution Information of the Initial Contributor.\n\n(c) Each Recipient acknowledges that all trademarks, service marks and/or trade names contained within Part 2 of the Supplement File distributed with the Licensed Work are the exclusive property of the Initial Contributor and may only be used with the permission of the Initial Contributor, or under circumstances otherwise permitted by law, or as expressly set out in this License.\n\n3.11. For greater certainty, any description or attribution provisions contained within a Supplement File may only be used to specify the nature of the description or attribution requirements, as the case may be. Any provision in a Supplement File that otherwise purports to modify, vary, nullify or amend any right, obligation or representation contained herein shall be deemed void to that extent, and shall be of no force or effect.\n\n4. COMMERCIAL USE AND INDEMNITY.\n\n4.1. COMMERCIAL SERVICES.\n\nA Recipient (\"COMMERCIAL RECIPIENT\") may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations (collectively, \"SERVICES\") to one or more other Recipients or Distributors. However, such Commercial Recipient may do so only on that Commercial Recipient's own behalf, and not on behalf of any other Distributor or Recipient, and Commercial Recipient must make it clear than any such warranty, support, indemnity or liability obligation(s) is/are offered by Commercial Recipient alone. At no time may Commercial Recipient use any Services to deny any party the Licensed Work in Source Code or Executable form when so required under any of the other terms of this License. For greater certainty, this Section 4.1 does not diminish any of the other terms of this License, including without limitation the obligation of the Commercial Recipient as a Distributor, when distributing any of the Licensed Work in Source Code or Executable form, to make such distribution royalty-free (subject to the right to charge a fee of no more than the cost of physically performing Source Code or Executable distribution (as the case may be)).\n\n4.2. INDEMNITY.\n\nCommercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this License is intended to facilitate the commercial use of the Licensed Work, the Distributor who includes any of the Licensed Work in a commercial product offering should do so in a manner which does not create potential liability for other Distributors. Therefore, if a Distributor includes the Licensed Work in a commercial product offering or offers any Services, such Distributor (\"COMMERCIAL DISTRIBUTOR\") hereby agrees to defend and indemnify every other Distributor or Subsequent Contributor (in each case an \"INDEMNIFIED PARTY\") against any losses, damages and costs (collectively \"LOSSES\") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Party to the extent caused by the acts or omissions of such Commercial Distributor in connection with its distribution of any of the Licensed Work in a commercial product offering or in connection with any Services. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Party must: (a) promptly notify the Commercial Distributor in writing of such claim; and (b) allow the Commercial Distributor to control, and co-operate with the Commercial Distributor in, the defense and any related settlement negotiations. The Indemnified Party may participate in any such claim at its own expense.\n\n5. VERSIONS OF THE LICENSE.\n\n5.1. NEW VERSIONS.\n\nThe Initial Contributor may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number.\n\n5.2. EFFECT OF NEW VERSIONS.\n\nOnce the Licensed Work or any portion thereof has been published by Initial Contributor under a particular version of the License, Recipient may choose to continue to use it under the terms of that version. However, if a Recipient chooses to use the Licensed Work under the terms of any subsequent version of the License published by the Initial Contributor, then from the date of making this choice, the Recipient must comply with the terms of that subsequent version with respect to all further reproduction, preparation of derivative works, public display of, public performance of, distribution and sublicensing by the Recipient in connection with the Licensed Work. No one other than the Initial Contributor has the right to modify the terms applicable to the Licensed Work\n\n6. DISCLAIMER OF WARRANTY.\n\n6.1. GENERAL DISCLAIMER.\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS LICENSE, THE LICENSED WORK IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT ANY REPRESENTATION, WARRANTY, GUARANTEE, ASSURANCE OR CONDITION OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED WORK IS WITH RECIPIENT. SHOULD ANY LICENSED WORK PROVE DEFECTIVE IN ANY RESPECT, RECIPIENT (NOT THE INITIAL CONTRIBUTOR OR ANY SUBSEQUENT CONTRIBUTOR) ASSUMES THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS CLAUSE CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY LICENSED WORK IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS LICENSE INCLUDING WITHOUT LIMITATION THIS DISCLAIMER.\n\n6.2. RESPONSIBILITY OF RECIPIENTS.\n\nEach Recipient is solely responsible for determining the appropriateness of using and distributing the Licensed Work and assumes all risks associated with its exercise of rights under this License, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.\n\n7. TERMINATION.\n\n7.1. This License shall continue until terminated in accordance with the express terms herein.\n\n7.2. Recipient may choose to terminate this License automatically at any time.\n\n7.3. This License, including without limitation the rights granted hereunder to a particular Recipient, will terminate automatically if such Recipient is in material breach of any of the terms of this License and fails to cure such breach within sixty (60) days of becoming aware of the breach. Without limiting the foregoing, any material breach by such Recipient of any term of any other License under which such Recipient is granted any rights to the Licensed Work shall constitute a material breach of this License.\n\n7.4. Upon termination of this License by or with respect to a particular Recipient for any reason, all rights granted hereunder and under any other License to that Recipient shall terminate. However, all sublicenses to the Licensed Work which were previously properly granted by such Recipient under a copy of this License (in each case, an \"Other License\" and in plural, \"Other Licenses\") shall survive any such termination of this License, including without limitation the rights and obligations under such Other Licenses as set out in their respective Sections 2, 3, 4, 5, 6, 7 and 8, mutatis mutandis, for so long as the respective sublicensees (i.e. other Recipients) remain in compliance with the terms of the copy of this License under which such sublicensees received rights to the Licensed Work. Any termination of such Other Licenses shall be pursuant to their respective Section 7, mutatis mutandis. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.\n\n7.5. Upon any termination of this License by or with respect to a particular Recipient, Sections 4.1, 4.2, 6.1, 6.2, 7.4, 7.5, 8.1, and 8.2, together with all provisions of this License necessary for the interpretation and enforcement of same, shall expressly survive such termination.\n\n8. LIMITATION OF LIABILITY.\n\n8.1. IN NO EVENT SHALL ANY OF INITIAL CONTRIBUTOR, ITS SUBSIDIARIES, OR AFFILIATES, OR ANY OF ITS OR THEIR RESPECTIVE OFFICERS, DIRECTORS, EMPLOYEES, AND/OR AGENTS (AS THE CASE MAY BE), HAVE ANY LIABILITY FOR ANY DIRECT DAMAGES, INDIRECT DAMAGES, PUNITIVE DAMAGES, INCIDENTAL DAMAGES, SPECIAL DAMAGES, EXEMPLARY DAMAGES, CONSEQUENTIAL DAMAGES OR ANY OTHER DAMAGES WHATSOEVER (INCLUDING WITHOUT LIMITATION LOSS OF USE, DATA OR PROFITS, OR ANY OTHER LOSS ARISING OUT OF OR IN ANY WAY RELATED TO THE USE, INABILITY TO USE, UNAUTHORIZED USE, PERFORMANCE, OR NON-PERFORMANCE OF THE LICENSED WORK OR ANY PART THEREOF OR THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES, OR THAT RESULT FROM ERRORS, DEFECTS, OMISSIONS, DELAYS IN OPERATION OR TRANSMISSION, OR ANY OTHER FAILURE OF PERFORMANCE), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) IN RELATION TO OR ARISING IN ANY WAY OUT OF THIS LICENSE OR THE USE OR DISTRIBUTION OF THE LICENSED WORK OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. THIS CLAUSE CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY LICENSED WORK IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS LICENSE INCLUDING WITHOUT LIMITATION THE LIMITATIONS SET FORTH IN THIS SECTION 8.1.\n\n8.2. EXCEPT AS EXPRESSLY SET FORTH IN THIS LICENSE, EACH RECIPIENT SHALL NOT HAVE ANY LIABILITY FOR ANY EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE LICENSED WORK OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION.\n\n9. GOVERNING LAW AND LEGAL ACTION.\n\n9.1. This License shall be governed by and construed in accordance with the laws of the Governing Jurisdiction assigned in Part 3 of Exhibit A, without regard to its conflict of law provisions. No party may bring a legal action under this License more than one year after the cause of the action arose. Each party waives its rights (if any) to a jury trial in any litigation arising under this License. Note that if the Governing Jurisdiction is not assigned in Part 3 of Exhibit A, then the Governing Jurisdiction shall be the State of New York.\n\n9.2. The courts of the Governing Jurisdiction shall have jurisdiction, but not exclusive jurisdiction, to entertain and determine all disputes and claims, whether for specific performance, injunction, damages or otherwise, both at law and in equity, arising out of or in any way relating to this License, including without limitation, the legality, validity, existence and enforceability of this License. Each party to this License hereby irrevocably attorns to and accepts the jurisdiction of the courts of the Governing Jurisdiction for such purposes.\n\n9.3. Except as expressly set forth elsewhere herein, in the event of any action or proceeding brought by any party against another under this License the prevailing party shall be entitled to recover all costs and expenses including the fees of its attorneys in such action or proceeding in such amount as the court may adjudge reasonable.\n\n10. MISCELLANEOUS.\n\n10.1. The obligations imposed by this License are for the benefit of the Initial Contributor and any Recipient, and each Recipient acknowledges and agrees that the Initial Contributor and/or any other Recipient may enforce the terms and conditions of this License against any Recipient.\n\n10.2. This License represents the complete agreement concerning subject matter hereof, and supersedes and cancels all previous oral and written communications, representations, agreements and understandings between the parties with respect to the subject matter hereof.\n\n10.3. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded.\n\n10.4. The language in all parts of this License shall be in all cases construed simply according to its fair meaning, and not strictly for or against any of the parties hereto. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n10.5. If any provision of this License is invalid or unenforceable under the laws of the Governing Jurisdiction, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\n10.6. The paragraph headings of this License are for reference and convenience only and are not a part of this License, and they shall have no effect upon the construction or interpretation of any part hereof.\n\n10.7. Each of the terms \"including\", \"include\" and \"includes\", when used in this License, is not limiting whether or not non-limiting language (such as \"without limitation\" or \"but not limited to\" or words of similar import) is used with reference thereto.\n\n10.8. The parties hereto acknowledge they have expressly required that this\nLicense and notices relating thereto be drafted in the English language.\n\n//***THE LICENSE TERMS END HERE (OTHER THAN AS SET OUT IN EXHIBIT A).***//\n\nEXHIBIT A (to the Adaptive Public License)\n\nPART 1: INITIAL CONTRIBUTOR AND DESIGNATED WEB SITE\n\nThe Initial Contributor is:\t \n \t\n[Enter full name of Initial Contributor]\n\nAddress of Initial Contributor:\t \n \t \n \t \n \t\n[Enter address above]\n\nThe Designated Web Site is:\t \n \t\n[Enter URL for Designated Web Site of Initial Contributor]\nNOTE: The Initial Contributor is to complete this Part 1, along with Parts 2, 3, and 5, and, if applicable, Parts 4 and 6.\n\nPART 2: INITIAL WORK\n\nThe Initial Work comprises the computer program(s) distributed by the Initial Contributor having the following title(s): .\n\nThe date on which the Initial Work was first available under this License: \n\nPART 3: GOVERNING JURISDICTION\n\nFor the purposes of this License, the Governing Jurisdiction is . \n[Initial Contributor to Enter Governing Jurisdiction here]\n\nPART 4: THIRD PARTIES\n\nFor the purposes of this License, \"Third Party\" has the definition set forth below in the ONE paragraph selected by the Initial Contributor from paragraphs A, B, C, D and E when the Initial Work is distributed or otherwise made available by the Initial Contributor. To select one of the following paragraphs, the Initial Contributor must place an \"X\" or \"x\" in the selection box alongside the one respective paragraph selected.\n\nSELECTION\t \nBOX\tPARAGRAPH\n[ ]\tA. \"THIRD PARTY\" means any third party.\n \t \n[ ]\tB. \"THIRD PARTY\" means any third party except for any of the following:\n(a) a wholly owned subsidiary of the Subsequent Contributor in question; (b) a legal entity (the \"PARENT\") that wholly owns the Subsequent Contributor in question; or (c) a wholly owned subsidiary of the wholly owned subsidiary in (a) or of the Parent in (b).\n \t \n[ ]\tC. \"THIRD PARTY\" means any third party except for any of the following:\n(a) any Person directly or indirectly owning a majority of the voting interest in the Subsequent Contributor or (b) any Person in which the Subsequent Contributor directly or indirectly owns a majority voting interest.\n \t \n[ ]\tD. \"THIRD PARTY\" means any third party except for any Person directly\nor indirectly controlled by the Subsequent Contributor. For purposes of this\ndefinition, \"control\" shall mean the power to direct or cause the direction\nof, the management and policies of such Person whether through the ownership\nof voting interests, by contract, or otherwise.\n \t \n[ ]\tE. \"THIRD PARTY\" means any third party except for any Person directly or indirectly controlling, controlled by, or under common control with the Subsequent Contributor. For purposes of this definition, \"control\" shall mean the power to direct or cause the direction of, the management and policies of such Person whether through the ownership of voting interests, by contract, or otherwise.\nThe default definition of \"THIRD PARTY\" is the definition set forth in paragraph A, if NONE OR MORE THAN ONE of paragraphs A, B, C, D or E in this Part 4 are selected by the Initial Contributor.\n\nPART 5: NOTICE\n\nTHE LICENSED WORK IS PROVIDED UNDER THE TERMS OF THE ADAPTIVE PUBLIC LICENSE (\"LICENSE\") AS FIRST COMPLETED BY: [Insert the name of the Initial Contributor here]. ANY USE, PUBLIC DISPLAY, PUBLIC PERFORMANCE, REPRODUCTION OR DISTRIBUTION OF, OR PREPARATION OF DERIVATIVE WORKS BASED ON, THE LICENSED WORK CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS LICENSE AND ITS TERMS, WHETHER OR NOT SUCH RECIPIENT READS THE TERMS OF THE LICENSE. \"LICENSED WORK\" AND \"RECIPIENT\" ARE DEFINED IN THE LICENSE. A COPY OF THE LICENSE IS LOCATED IN THE TEXT FILE ENTITLED \"LICENSE.TXT\" ACCOMPANYING THE CONTENTS OF THIS FILE. IF A COPY OF THE LICENSE DOES NOT ACCOMPANY THIS FILE, A COPY OF THE LICENSE MAY ALSO BE OBTAINED AT THE FOLLOWING WEB SITE: [Insert Initial Contributor's Designated Web Site here]\n\nSoftware distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.\n\nPART 6: PATENT LICENSING TERMS\n\nFor the purposes of this License, paragraphs A, B, C, D and E of this Part 6 of Exhibit A are only incorporated and form part of the terms of the License if the Initial Contributor places an \"X\" or \"x\" in the selection box alongside the YES answer to the question immediately below.\n\nIs this a Patents-Included License pursuant to Section 2.2 of the License?\n\nYES\t[ ]\nNO\t[ ]\n\nBy default, if YES is not selected by the Initial Contributor, the answer is NO.\n\nA. For the purposes of the paragraphs in this Part 6 of Exhibit A, \"LICENSABLE\" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights granted herein.\n\nB. The Initial Contributor hereby grants all Recipients a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, under patent claim(s) Licensable by the Initial Contributor that are or would be infringed by the making, using, selling, offering for sale, having made, importing, exporting, transfer or disposal of such Initial Work or any portion thereof. Notwithstanding the foregoing, no patent license is granted under this Paragraph B by the Initial Contributor: (1) for any code that the Initial Contributor deletes from the Initial Work (or any portion thereof) distributed by the Initial Contributor prior to such distribution; (2) for any Modifications made to the Initial Work (or any portion thereof) by any other Person; or (3) separate from the Initial Work (or portions thereof) distributed or made available by the Initial Contributor.\n\nC. Effective upon distribution by a Subsequent Contributor to a Third Party of any Modifications made by that Subsequent Contributor, such Subsequent Contributor hereby grants all Recipients a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, under patent claim(s) Licensable by such Subsequent Contributor that are or would be infringed by the making, using, selling, offering for sale, having made, importing, exporting, transfer or disposal of any such Modifications made by that Subsequent Contributor alone and/or in combination with its Subsequent Work (or portions of such combination) to make, use, sell, offer for sale, have made, import, export, transfer and otherwise dispose of:\n\n(1) Modifications made by that Subsequent Contributor (or portions thereof); and\n\n(2) the combination of Modifications made by that Subsequent Contributor with its Subsequent Work (or portions of such combination);\n\n(collectively and in each case, the \"SUBSEQUENT CONTRIBUTOR VERSION\").\n\nNotwithstanding the foregoing, no patent license is granted under this Paragraph C by such Subsequent Contributor: (1) for any code that such Subsequent Contributor deletes from the Subsequent Contributor Version (or any portion thereof) distributed by the Subsequent Contributor prior to such distribution; (2) for any Modifications made to the Subsequent Contributor Version (or any portion thereof) by any other Person; or (3) separate from the Subsequent Contributor Version (or portions thereof) distributed or made available by the Subsequent Contributor.\n\nD. Effective upon distribution of any Licensed Work by a Distributor to a Third Party, such Distributor hereby grants all Recipients a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, under patent claim(s) Licensable by such Distributor that are or would be infringed by the making, using, selling, offering for sale, having made, importing, exporting, transfer or disposal of any such Licensed Work distributed by such Distributor, to make, use, sell, offer for sale, have made, import, export, transfer and otherwise dispose of such Licensed Work or portions thereof (collectively and in each case, the \"DISTRIBUTOR VERSION\"). Notwithstanding the foregoing, no patent license is granted under this Paragraph D by such Distributor: (1) for any code that such Distributor deletes from the Distributor Version (or any portion thereof) distributed by the Distributor prior to such distribution; (2) for any Modifications made to the Distributor Version (or any portion thereof) by any other Person; or (3) separate from the Distributor Version (or portions thereof) distributed or made available by the Distributor.\n\nE. If Recipient institutes patent litigation against another Recipient (a \"USER\") with respect to a patent applicable to a computer program or software (including a cross-claim or counterclaim in a lawsuit, and whether or not any of the patent claims are directed to a system, method, process, apparatus, device, product, article of manufacture or any other form of patent claim), then any patent or copyright license granted by that User to such Recipient under this License or any other copy of this License shall terminate. The termination shall be effective ninety (90) days after notice of termination from User to Recipient, unless the Recipient withdraws the patent litigation claim before the end of the ninety (90) day period. To be effective, any such notice of license termination must include a specific list of applicable patents and/or a copy of the copyrighted work of User that User alleges will be infringed by Recipient upon License termination. License termination is only effective with respect to patents and/or copyrights for which proper notice has been given.\n\nPART 7: SAMPLE REQUIREMENTS FOR THE DESCRIPTION OF DISTRIBUTED MODIFICATIONS\n\nEach Subsequent Contributor (including the Initial Contributor where the Initial Contributor qualifies as a Subsequent Contributor) is invited (but not required) to cause each Subsequent Work created or contributed to by that Subsequent Contributor to contain a file documenting the changes such Subsequent Contributor made to create that Subsequent Work and the date of any change. //***EXHIBIT A ENDS HERE.***//", + "json": "adapt-1.0.json", + "yaml": "adapt-1.0.yml", + "html": "adapt-1.0.html", + "license": "adapt-1.0.LICENSE" + }, + { + "license_key": "adaptec-downloadable", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adaptec-downloadable", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ADAPTEC, INC. DOWNLOADABLE SOFTWARE LICENSE \n\nDirections to Obtain Your File: Please read the downloadable software license and answer the required question below. \nEligible users will then have access to the requested file. Adaptec reserves the right to record all activities.\n\nTHE ADAPTEC SOFTWARE (\"SOFTWARE\") IS LICENSED TO YOU FOR USE IN ACCORDANCE WITH THIS ADAPTEC SOFTWARE LICENSE. IF YOU ARE NOT WILLING TO ABIDE BY THESE TERMS AND CONDITIONS, DO NOT USE THE SOFTWARE. BY USING THE SOFTWARE, YOU ARE GIVING YOUR ASSENT TO THE TERMS OF THIS LICENSE.\n\n1. LICENSE. Adaptec grants to you a non-exclusive, non-transferable, worldwide license to copy the Software in object code form only, combine it with your software and distribute it, directly to customers, or through your distribution network. You shall have no right to grant any license or sublicense to any third party, to use the Software for any purpose, except a sublicense to use and distribute the copy produced and distributed by you. You shall have no right to modify all or any part of the Software. You shall not disassemble, decompile or otherwise reverse engineer the Software nor permit any third party to do so. All rights not expressly granted herein are reserved by Adaptec.\n\n2. PROPRIETARY OWNERSHIP RIGHTS. Adaptec shall retain all ownership, right, title and interest in and to all current and hereafter existing revisions of or modifications to the Software, including all copies made hereunder and all intellectual property rights related thereto. All copies of the Software made by you shall contain Adaptec's copyright notice and you shall not remove any copyright notices contained in the Software.\n\n3. WARRANTY EXCLUSION. THE SOFTWARE IS PROVIDED \"AS IS\". ADAPTEC MAKES NO WARRANTY OF ANY KIND WITH REGARD TO THE SOFTWARE. ADAPTEC EXPRESSLY DISCLAIMS ANY OTHER WARRANTIES, EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, WHETHER ARISING IN LAW, CUSTOM, CONDUCT OR OTHERWISE.\n\n4. LIMITATION OF LIABILITY. IN NO EVENT SHALL EITHER PARTY BE LIABLE FOR ANY LOSS OF PROFITS, LOSS OF USE, CONSEQUENTIAL, SPECIAL OR INCIDENTAL DAMAGES ARISING UNDER THIS AGREEMENT, EVEN IF THE OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN NO EVENT WILL ANY DAMAGES ATTRIBUTABLE TO ADAPTEC EXCEED THE AMOUNT OF PAYMENTS MADE TO ADAPTEC UNDER THIS AGREEMENT.\n\n5. TERMINATION OF THIS AGREEMENT. Adaptec may terminate this Agreement if you violate its terms. Upon termination, you will immediately destroy the Software or return all copies of the Software to Adaptec.\n\n6. APPLICABLE LAW. This Agreement shall be governed by the laws of the State of California, USA, excluding its principles of conflict of laws and the United Nations Convention on Contracts for the Sale of Goods.\n\n7. AMENDMENT, SEVERABILITY, WAIVER. No supplement or amendment of this Agreement shall be binding, unless executed in writing by both parties and specifically referencing the supplementing or amendment of this Agreement. Any provision of this Agreement found to be illegal or unenforceable shall be deemed severed, and the balance of this Agreement shall remain in full force and effect. Neither party's right to require performance of the other party's obligations hereunder shall be affected by any previous waiver, forbearance or course of dealing, unless or only to the extent of any waiver given in writing. Failure or delay by either party to exercise any of its rights, powers or remedies hereunder shall not constitute a waiver of those rights, powers or remedies.\n\n8. EXPORT COMPLIANCE. Each party agrees that the Software is subject to the U.S. Export Administration Act and Export Administration Regulations, as well as applicable import and export regulations of the countries in which each party transacts business. Each party shall comply with such laws and regulations, as well as all other laws and regulations applicable to the Software. Each party agrees that it will not export, re-export, transfer or divert any of the Software to any country for which United States' laws or regulations require an export license or other governmental approval, without first obtaining such license or approval, nor will each party export, re-export, transfer or divert any of the Software to any restricted place or party in accordance with U.S. export regulations.\n\n9. GOVERNMENT RESTRICTED RIGHTS. The Software is provided with RESTRICTED RIGHTS. Use, duplication or disclosure by the Government is subject to restrictions as set forth in FAR52.227-14 and DFAR252.227-7013 et. seq. or their successors. Us of the Software by the Government constitutes acknowledgment of Adaptec's proprietary right therein. \nAdaptec, Inc., 691 South Milpitas Boulevard, Milpitas, California 95035\n\n * Bureau of Industry and Security's Lists to Check\n\nIf you have any questions concerning this License, contact:\n\nAdaptec, Inc.\nLegal Department\n691 South Milpitas Boulevard\nMilpitas, California 95035.\nt.(408) 957-1718\nf.(408) 957-7137", + "json": "adaptec-downloadable.json", + "yaml": "adaptec-downloadable.yml", + "html": "adaptec-downloadable.html", + "license": "adaptec-downloadable.LICENSE" + }, + { + "license_key": "adaptec-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adaptec-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PMC-Sierra Inc.\nAdaptec by PMC Downloadable Files:\n\nThis License is granted by PMC-Sierra, Inc., referred to in this License as\n\"PMC-Sierra\" or \"ADAPTEC Inc\" or \"ADAPTEC\" or \"we\" or \"us.\" PMC-Sierra reserves\nthe right to record all activities and to use any information obtained in\naccordance with the privacy policy which you can access below.\n\nDirections to Obtain Your File:\n\nCAREFULLY READ THE FOLLOWING TERMS AND CONDITIONS AS WELL AS THE EXPORT\nCOMPLIANCE REQUIREMENTS SET OUT BELOW. YOU MUST ANSWER THE REQUIRED QUESTION\nTRUTHFULLY TO LET US KNOW WHETHER YOU HAVE READ AND UNDERSTOOD THE TERMS AND\nCONDITIONS AND EXPORT COMPLIANCE REQUIREMENTS AND WHETHER YOU AGREE TO COMPLY.\nYOU MUST CLICK A FURTHER BUTTON TO CONFIRM YOUR ANSWER AND IF YOU ANSWER IN THE\nAFFIRMATIVE, A BINDING LICENSE AGREEMENT (\"LICENSE\") WILL BE CONCLUDED BETWEEN\nUS. YOU MAY THEN PROCEED TO DOWNLOAD THE SOFTWARE.\n\nIF YOU DO NOT AGREE TO THESE TERMS, CONDITIONS, AND EXPORT COMPLIANCE\nREQUIREMENTS THEN DO NOT DOWNLOAD THE SOFTWARE. IF YOU WISH TO CANCEL THIS\nLICENSE AT ANY TIME YOU MAY DO SO BY DESTROYING ALL COPIES AND PARTIAL COPIES OF\nTHE SOFTWARE WHICH YOU HAVE DOWNLOADED.\n\nYOU ALSO AGREE THAT YOU HAVE ALL NECESSARY INFORMATION IN ORDER TO ENTER INTO\nTHIS LICENSE WHETHER UNDER AN APPLICABLE EUROPEAN E-COMMERCE DIRECTIVE OR\nOTHERWISE. IF YOU DO NOT AGREE TO THESE TERMS, CONDITIONS, AND REQUIREMENTS, DO\nNOT DOWNLOAD ANY FILES.\n\nPlease retain a copy of the License for your files or you may contact ADAPTEC's\nLegal Department at the address listed below for a further copy. This license\nmay be concluded in English or the language in which it is drafted by ADAPTEC\nand appears to you online, as applicable. If you are a consumer residing in\nEurope (a \"European Consumer\") then this License shall not affect your statutory\nrights under the local laws in Europe.\n\nThis License grants you a non-exclusive license to use the ADAPTEC Software and\nrelated documentation (\"Software\") on the following terms, conditions, and\nexport compliance requirements:\n\nIf you are NOT an individual consumer residing in Europe then the following\nterms, conditions and export compliance requirements apply and are a part of\nyour license: ALL SECTIONS EXCEPT AS SPECIFIED HEREIN.\n\nIf you are an individual consumer residing in Europe (\"European Consumer\") then\nthe following terms, conditions and export compliance requirements apply and are\nmade part of your License: 1, 2, 3, 4, applicable parts of 6, 7, 9 and the first\nparagraph of export compliance. IF YOU ARE A EUROPEAN CONSUMER THIS LICENSE\nSHALL NOT AFFECT YOUR RIGHTS UNDER THE STATUTORY LAWS OF EUROPE.\n\n Your right to use the Software. You may use the Software in machine readable\n form (i.e. the form you download from us) within a single working location.\n You may copy the Software in the same form solely for back-up purposes or\n use within a single working location. You must reproduce ADAPTEC's copyright\n notice and proprietary legends. These requirements apply to European\n Consumers.\n\n Restrictions. This Software contains trade secrets and in order to protect\n them you may not: (1) distribute copies of the Software in any manner,\n including, but not limited to, distribution through web site posting; (2)\n decompile, reverse engineer, disassemble, or otherwise reduce the Software\n to a human perceivable form; (3) MODIFY, ADAPT OR TRANSLATE THE SOFTWARE\n INTO ANY OTHER FORM; (4) RENT, LEASE, LOAN, RESELL FOR PROFIT, OR CREATE\n DERIVATIVE WORKS BASED UPON THE SOFTWARE OR ANY PART OF IT. These\n requirements apply to European Consumers.\n \n Ownership. The Software is copyrighted by, proprietary to and a trade secret\n of ADAPTEC. ADAPTEC retains the title, ownership and intellectual property\n rights in and to the Software and all subsequent copies regardless of the\n form or media. The Software is protected by the copyright laws of the United\n States, the European Union, and international copyright treaties. This\n License is not a sale of the Software. These terms apply to European\n consumers.\n \n Termination. This License is effective until terminated. This License will\n terminate automatically without notice if you fail to comply with any of the\n provisions. Upon termination you shall destroy all copies of the Software\n including any partial copies. This provision applies to European Consumers.\n \n Disclaimer of Warranty. IF YOU ARE A EUROPEAN CONSUMER THEN THIS SECTION 5\n DOES NOT APPLY TO YOU AND DOES NOT FORM PART OF YOUR LICENSE WITH US.\n PROCEED TO SECTION 6. THE SOFTWARE IS LICENSED TO YOU \"AS IS.\" YOU ACCEPT\n ALL RISKS WHICH MAY ARISE FROM THE DOWNLOADING OF THE SOFTWARE, INCLUDING\n BUT NOT LIMITED TO ERRORS IN TRANSMISSION OR CORRUPTION OF EXISTING DATA OR\n SOFTWARE. ADAPTEC MAKES NO WARRANTIES, EXPRESS OR IMPLIED, AND SPECIFICALLY\n DISCLAIMS ANY WARRANTY OF NON INFRINGEMENT OF THIRD PARTIES' RIGHTS,\n WARRANTIES OF SATISFACTORY QUALITY AND OF FITNESS FOR A PARTICULAR PURPOSE.\n Some states do not allow the exclusion of implied warranties or limitations\n of how long an implied warranty may last, so the above exclusion may not\n apply to you. You may also have other rights which vary from state to state.\n \n Limitation of Liability. FOR EUROPEAN CONSUMERS: WE WILL NOT BE LIABLE TO\n YOU WHERE YOU SUFFER LOSS WHICH WAS NOT FORESEEABLE TO YOU AND TO US WHEN\n YOU DOWNLOADED THE SOFTWARE (EVEN IF IT RESULTS FROM OUR FAILURE TO COMPLY\n WITH THIS LICENSE OR OUR NEGLIGENCE); WHERE YOU SUFFER ANY BUSINESS LOSS\n INCLUDING LOSS OF REVENUE, PROFITS OR ANTICIPATED SAVINGS (WHETHER THOSE\n LOSSES ARE THE DIRECT OR INDIRECT RESULT OF OUR DEFAULT); OR WHERE YOUR LOSS\n DOES NOT RESULT FROM OUR FAILURE TO COMPLY WITH THIS LICENSE OR OUR\n NEGLIGENCE. THE SOFTWARE HAS BEEN MADE AVAILABLE TO YOU FREE OF CHARGE. YOU\n MAY AT ANY TIME DOWNLOAD A FURTHER COPY OF THE SOFTWARE FREE OF CHARGE TO\n REPLACE YOUR ORIGINAL COPY OF THE SOFTWARE (CONSEQUENTLY, WE AND OUR\n SUPPLIERS WILL ONLY BE LIABLE TO YOU UP TO A MAXIMUM TOTAL LIMIT OF TWO\n THOUSAND DOLLARS U.S. OR ITS EURO EQUIVALENT AT THE TIME A CLAIM IS MADE).\n OUR MAXIMUM FINANCIAL RESPONSIBILITY TO YOU AND THAT OF OUR SUPPLIERS WILL\n NOT EXCEED THIS LIMIT EVEN IF THE ACTUAL LOSS YOU SUFFER IS MORE THAN THAT.\n HOWEVER, NOTHING IN THIS LICENSE SHALL RESTRICT ANY PARTY'S LIABILITY FOR\n FRAUD, DEATH OR PERSONAL INJURY ARISING FROM ITS NEGLIGENCE OR FOR FRAUD OR\n ANY FRAUDULENT MISREPRESENTATION.\n\n ALL OTHERS DOWNLOADING THE SOFTWARE: THE SOFTWARE IS PROVIDED FREE OF\n CHARGE TO YOU, THEREFORE UNDER NO CIRCUMSTANCES EXCEPT AS DESCRIBED HEREIN\n AND UNDER NO LEGAL THEORY, TORT (INCLUDING NEGLIGENCE), CONTRACT, OR\n OTHERWISE, SHALL ADAPTEC OR ITS SUPPLIERS OR RESELLERS BE LIABLE TO YOU OR\n ANY OTHER PERSON FOR ANY ECONOMIC LOSS (INCLUDING LOSS OF PROFIT) OR FOR ANY\n LOSS OF DATA, LOSS OF BUSINESS, LOSS OF GOODWILL, LOSS OF ANTICIPATED\n SAVINGS (IN EACH CASE WHETHER DIRECT OR INDIRECT) OR FOR ANY OTHER DIRECT OR\n INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER\n EVEN IF ADAPTEC SHALL HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n HOWEVER, NOTHING IN THIS LICENSE SHALL RESTRICT ANY PARTY'S LIABILITY FOR\n FRAUD, DEATH OR PERSONAL INJURY ARISING FROM ITS NEGLIGENCE OR FOR FRAUD OR\n ANY FRAUDULENT MISREPRESENTATION. Export. By downloading, you acknowledge\n that the laws and regulations of the United States and relevant countries\n within the European Union, restrict the export and re-export of the\n Software. Further, you agree that you will not export or re-export the\n Software or media in any form without the appropriate United States and\n foreign government approval. If you are a European Consumer you must not\n export Software outside the country in which you download it without our\n prior written permission. (See below for details on Export Compliance\n Requirements.) U.S. Government Restricted Rights. IF YOU ARE A EUROPEAN\n CONSUMER THEN THIS CLAUSE WILL NOT APPLY TO YOU AND DOES NOT FORM PART OF\n YOUR LICENSE AGREEMENT WITH US. PLEASE PROCEED TO SECTION 9. If the Software\n is acquired under the terms of a United States GSA contract, use,\n reproduction or disclosure is subject to the restrictions set forth in the\n applicable ADP Schedule contract. If the Software is acquired under the\n terms of a DoD or civilian agency contract, use, duplication or disclosure\n by the Government is subject to the restrictions of this License in\n accordance with 48 C.F.R. 12.212 of the Federal Acquisition Regulations and\n its successors and 48 C.F.R. 227.7202-1 of the DoD FAR Supplement and its\n successors. (See below for details on Export Compliance Requirements.)\n General. California residents entered into and to be performed within\n California, except as governed by Federal law. Should any provision of this\n License be declared unenforceable in any jurisdiction, then such provision\n shall be deemed to be severable from this License and shall not affect the\n remainder hereof. All rights in the Software not specifically granted in\n this License are reserved by Adaptec.\n\nEXPORT COMPLIANCE REQUIREMENTS\n\nExport of any information from the Adaptec web site (including Confidential\nInformation obtained through Adaptec Access) outside of the United States is\nsubject to all U.S. export control laws. You will abide by such laws and also to\nthe provision of the U.S. Export-Re-export Requirements and Enhanced\nProliferation Control Initiative set forth here. You and your organization will\nnot sell, license, or otherwise provide or ship Adaptec products or technical\ndata (or the direct product thereof) for export or re-export to the embargoed or\nrestricted* countries listed below:\n\n Afghanistan (Taliban controlled area), Cuba, Iran, Iraq, North Korea*,\n Sudan, and Syria*\n\nYou agree not to transfer, export or re-export Adaptec products, technology or\nsoftware to your customers or any intermediate entity in the chain of supply if\nour products will be used in the design, development, production, stockpiling or\nuse of missiles, chemical or biological weapons or for nuclear end uses without\nobtaining prior authorization from the U.S. Government.\n\nYou also agree that unless you receive prior authorization from the U.S.\nDepartment of Commerce, you shall not transfer, export or re-export, directly or\nindirectly, any Adaptec technology or software (or the direct product of such\ntechnology or software or any part thereof, or any process or service which is\nthe direct product of such technology or software) to any Sanctioned and/or\nEmbargoed entity listed on:\n\n Bureau of Industry and Security's Lists to Check\n\nIf you have any questions concerning this License, contact:\nPMC-Sierra, Inc.\nLegal Department\n1380 Bordeaux Drive\nSunnyvale, CA 94089\nPhone: (408) 239-8000", + "json": "adaptec-eula.json", + "yaml": "adaptec-eula.yml", + "html": "adaptec-eula.html", + "license": "adaptec-eula.LICENSE" + }, + { + "license_key": "adcolony-tos-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adcolony-tos-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Terms of Service for Publishers\n\nAdColony publishing and monetization partners must sign, acknowledge, and agree\nto their own terms of service document within the AdColony portal. The version\nbelow is for general reference purposes and does not serve as a legal or binding\nagreement with any entity.\n\nAdditional agreements and terms of service may be required on a per client basis\nto comply with regulatory needs. Contact support@adcolony.com for more details.\n\n \n\nSDK License and Publisher Terms\n\nThese AdColony SDK License and Publisher Terms (this \u201cAgreement\u201d) is made\navailable by AdColony, Inc. (\u201cAdColony\u201d). By downloading or using the AdColony\nSDK, you and any company, entity, or organization on behalf of which you are\naccepting this Agreement (\u201cDeveloper\u201d) hereby agrees to be bound by all terms\nand conditions of this Agreement, and you represent and warrant that you are an\nauthorized representative of Developer with the authority to bind Developer to\nthis Agreement. IF YOU DO NOT AGREE TO ALL TERMS AND CONDITIONS OF THIS\nAGREEMENT, DO NOT DOWNLOAD OR USE THE ADCOLONY SDK.\n\n1. Definitions\n\n 1. \u201cAdvertisers\u201d means third-party advertisers.\n\n 2. \u201cDeveloper Apps\u201d means the mobile applications owned and/or controlled by\n Developer, including all content images, music and text contained therein,\n that Developer wishes to use with the AdColony SDK and AdColony Platform.\n\n 3. \u201cI/O\u201d means a fully executed insertion order containing advertising\n campaign details for user acquisitions and campaigns run by Developer on\n AdColony\u2019s Platform.\n\n 4. \u201cAdColony Ads\u201d means video, playable, display, or any type of media\n advertisements, sourced by or on behalf of AdColony, which are routed and/or\n served by the AdColony Platform to the Developer Apps.\n \n 5. \u201cAdColony Platform\u201d means AdColony\u2019s advertising system or network, which\n supports advertisement insertion within mobile applications, and related\n advertisement reporting tools.\n \n 6. \u201cAdColony SDK\u201d means the software development kit and any other software\n and documentation that may be provided by AdColony to Developer with the\n software development kit, including any updates thereto.\n \n 7. \u201cPersonally Identifiable Information\u201d or \u201cPII\u201d means information that\n specifically identifies or locates a particular person or entity such as\n name, postal address, telephone number, and email address.\n \n 8. \u201cPseudonymous Identifiers\u201d means data that is linked or reasonably\n linkable to a particular computer or device resettable device identifiers\n such as Google Advertising ID, Apple Identifier for Advertisers, IP address,\n or other similar identifiers. Pseudoymous Identifiers may not be utilized to\n identify a particular person.\n\n2. AdColony SDK License\n\n 1. License Grant. Subject to the terms and conditions of this Agreement,\n AdColony grants Developer a non-exclusive, non-transferable, non-\n sublicenseable, worldwide license to: (a) integrate the AdColony SDK with\n Developer Apps solely for internal use; (b) use, reproduce and distribute\n certain portions of the AdColony SDK as required for Developer\u2019s\n distribution of Developer Apps, solely as enabled by, and in accordance with\n documentation provided by AdColony; and (c) use the AdColony SDK and\n AdColony Platform to have advertisements, including AdColony Ads,\n distributed and presented within Developer Apps.\n\n 2. SDK Updates. AdColony periodically releases new versions of the AdColony\n SDK which may contain new features and fixes, and AdColony may sunset\n versions of the AdColony SDK. Developer is encouraged to check the AdColony\n website (or AdColony-designated distribution site) from time to time for the\n latest version releases, and to download and integrate such new versions\n within the Developer Apps, subject to this Agreement (including any\n amendments).\n\n C. License Restrictions. Except as expressly provided in this Agreement,\n Developer shall not (and shall not allow any third party to): (a) decompile,\n reverse engineer, disassemble, modify, adapt, create derivative works of,\n copy or distribute the AdColony SDK or AdColony Platform, (b) modify,\n remove, or obscure any copyright, trademark, patent or other proprietary\n notices or legends from the AdColony SDK or AdColony Platform; (c) copy,\n distribute, rent, lease, lend, sublicense, transfer or make the AdColony SDK\n or AdColony Platform available to any third party, and (d) use the AdColony\n SDK or AdColony Platform to develop, upload, or transmit any software\n viruses or other computer code, files or programs designed to interrupt,\n destroy, or limit the functionality of any software or hardware.\n\n 3. Intellectual Property. All ownership rights, title, and interest in and\n to the AdColony SDK and AdColony Platform, including all intellectual\n property rights therein, as such may be modified, upgraded, or enhanced from\n time to time (\u201cAdColony Property\u201d) will remain and belong exclusively to\n AdColony. AdColony reserves all rights not expressly granted to Developer\n herein. Developer shall retain all ownership rights, title and interest in\n and to the Developer Apps, including all intellectual property rights\n therein, as such may be modified, upgraded or enhanced from time to time.\n\n 4. Advertising via The AdColony Platform\n\n 1. AdColony Insertion & Sale of Ads. Developer hereby grants AdColony\n the right to sell, and have sold, advertisement inventory in the\n Developer Apps, and to insert AdColony Ads within such inventory. In\n addition, Developer hereby grants AdColony the non-exclusive, worldwide\n right and license to use, reproduce, distribute and display Developer\u2019s\n and the Developer Apps\u2019 trademarks, logos, and images of the Developer\n Apps, in connection with the sale of AdColony Ads hereunder, including:\n (a) listing the Developer Apps and inventory in pitch materials to\n prospective Advertisers; (b) reporting the inclusion of Developer Apps\n and inventory as part of AdColony\u2019s advertising network; and (c)\n identifying the Developer as a publishing partner on AdColony\u2019s website\n and other marketing materials. AdColony also reserves the right to\n utilize publisher results (both specific and aggregate) in case studies\n and white papers for promotional purposes.\n\n 2. Developer Ad Campaigns. For user acquisitions and other campaigns run\n by Developer on the AdColony Platform, Developer shall provide AdColony\n with a signed I/O. The terms of the I/O, including the Interactive\n Advertising Bureau terms and conditions incorporated into the I/O (the\n \u201cIAB Terms\u201d) shall govern such advertising campaigns. In the event of\n any conflict between the I/O and such IAB Terms, the I/O shall govern\n and control with respect to such campaign.\n\n 3. Developer Apps Content Policy. The Developer Apps will not contain,\n consist of, or promote discrimination, illegal activities, hate speech,\n defamation, graphic violence, firearms, tobacco, illegal drugs,\n pornography, profanity, obscenity or sexually explicit material\n (\u201cDeveloper Apps Content Policy\u201d). Developer will notify AdColony\n immediately of any Developer Apps relating to alcohol or gambling or\n that are child-directed as defined under COPPA. Developer agrees that\n AdColony has no responsibility for the Developer Apps, including any\n content therein, and AdColony has no obligation or ability to monitor or\n edit the Developer Apps. Developer will provide as much advance written\n notice as reasonably practicable, but in no event less than fifteen (15)\n days\u2019 notice, regarding any material changes to the nature or design of\n any Developer App, including without limitation, changes to the\n placement of AdColony Ad inventory, any action that will increase or\n reduce expected AdColony Ad inventory within the Developer Apps, the\n type of content contained within the Developer Apps, or the target\n audience of the Developer Apps.\n\n\n 4. Ad Restrictions. Developer may not, and may not authorize or encourage\n any third party to: (a) generate fraudulent impressions of, or fraudulent\n clicks on any AdColony Ads, including through repeated manual clicks, the\n use of robots or other automated tools or any other method that may lead to\n artificially high numbers of impressions, clicks, downloads, installs, app-\n opens, installed app user activity; or (b) edit, modify, filter, or change\n the order of the information contained in any AdColony Ad, or remove,\n obscure or minimize any AdColony Ad in any way. Developer shall promptly\n notify AdColony if it suspects that any third party may be tampering with,\n abusing or manipulating the AdColony Platform or the AdColony Ads within the\n Developer App. AdColony may suspend Developer\u2019s use of the AdColony Platform\n and/or terminate this Agreement immediately should Developer violate the\n foregoing provisions of this Section as determined by AdColony\u2019s sole\n discretion upon evaluating its fraud detection and reporting systems, and\n Developer shall not be entitled to any revenue associated with the\n applicable campaign(s).\n\n 5. Data & Privacy\n\n 1. Collection of Data. Developer acknowledges and agrees that\n Pseudonymous Identifiers may be used in connection with the performance\n of this Agreement in order to collect and use data from end users and\n their devices (\u201cApp Data\u201d) in connection with advertisement performance,\n targeting, and end user interests (\u201cPerformance Data\u201d), and to display\n AdColony Ads to end users. Developer agrees that in connection with\n AdColony Ads, AdColony may access or call to the Developer Apps, or the\n servers that make them available, and cause the routing, transmission,\n reproduction, and presentation of AdColony Ads as contemplated herein.\n Additionally, Developer agrees that AdColony may collect App Data and\n Performance Data, including Pseudonymous Identifiers , usage data, and\n streaming data, with regard to the Developer Apps (and included content)\n within which AdColony Ads are routed and/or served and (i) disclose such\n information to third parties (including Advertisers and attribution\n partners) as reasonably necessary in connection with the operation of\n the AdColony Platform, (ii) disclose such data if required by any court\n order, process, law or governmental agency; (iii) disclose such data\n generally when it is aggregated, such that the specific information\n relating to Developer is not identified as such; and (iv) use such\n information for AdColony\u2019s internal business purposes, including to\n develop and improve the AdColony SDK and AdColony Platform. AdColony\n will collect and use the data in accordance with the Digital Advertising\n Alliance Self-Regulatory Principles (\u201cDAA Codes\u201d), which are available\n at http://www.aboutads.info/principles and AdColony Privacy Policy,\n which is available at https://www.adcolony.com/privacy-policy/ (as\n updated from time to time) and is hereby incorporated by reference.\n \n 2. Compliance with Laws. Developer agrees to comply with all Privacy\n Requirements (as defined below), including conspicuously posting a\n privacy policy that accurately describes the Developer\u2019s and third\n parties\u2019 collection, use, and disclosure of end user data from the\n Developer Apps, which include disclosure that third parties may collect\n or receive information and use that information to provide measurement\n services and targeted ads, and disclosure of how and where users can\n opt-out of collection and use of information for ad targeting. Developer\n will not pass any PII to AdColony unless expressly permitted in writing,\n and as permitted under any Privacy Requirements. Developer represents\n and warrants that any data Developer provides to AdColony regarding\n devices, location, or users, and the ability for AdColony to collect the\n App Data and Performance Data, is permitted and provided in compliance\n with all Privacy Requirements including Developer\u2019s posted privacy\n policy. Developer further represents and warrants that it has made any\n and all disclosures and obtained any and all consents or permissions\n required by law with respect to Developer\u2019s privacy practices, including\n without limitation: (a) any end user data Developer collects, uses,\n and/or discloses, (b) the use and disclosure of App Data and Performance\n Data to AdColony via the AdColony SDK and AdColony Platform, and (c)\n notice and parental consent required by the Children\u2019s Online Privacy\n Protection Act (\u201cCOPPA\u201d). AdColony reserves the right to modify,\n suspend, or terminate this Agreement should Developer violate this\n Section, and/or to remain compliant with law.\n\n C. \u201cPrivacy Requirements\u201d means all (i) applicable laws (including\n COPPA), governmental regulations, court or government agency orders, and\n decrees relating in any manner to the collection, use, or dissemination\n of information from or about users, user traffic, or otherwise relating\n to privacy rights; (ii) the DAA Codes; and (iii) Developer\u2019s posted\n privacy policy.\n\n 6. Developer Payments\n\n 1. Developer Payment. Subject to the terms and conditions of this\n Agreement, AdColony shall pay to Developer Net Revenue amounts\n determined by AdColony. All revenue received from activities that\n AdColony deems to be fraudulent may be refunded to the Advertiser(s) in\n AdColony\u2019s sole discretion.\n\n 2. Payment Terms. AdColony will pay any Developer Payment due to\n Developer sixty (60) days after the completion of the month in which\n such AdColony Ad campaign runs; provided that, AdColony may withhold\n payment until the following month for Developer Payment amounts less\n than $100 U.S. Developer shall be responsible for any bank, transfer or\n transaction fees (e.g., PayPal). AdColony may deduct any withholding,\n sales, value added, and other applicable taxes (other than its net\n income taxes) as required by law. Developer is responsible for paying\n any other taxes, duties, or fees for which Developer is legally\n responsible.\n\n 3. Earnings are forfeited by publisher if a) the publisher\u2019s lifetime\n earnings are less than $100 and it has been more than 12 months since\n the publisher had earnings or b) the publisher has not provided payment\n information, outstanding earnings are less than $1,000 and it has been\n more than 12 months since the publisher had earnings.\n\n\n 7. Term and Termination\n\n 1. Term. This Agreement is effective until terminated in accordance with\n this Agreement.\n\n 2. Termination by AdColony. AdColony may terminate this Agreement at any\n time by providing sixty (60) days\u2019 notice to Developer. Additionally,\n AdColony may terminate this Agreement immediately if Developer breaches\n any provision of this Agreement.\n\n 3. Termination by Developer. Developer may terminate this Agreement at\n any time by providing written notice to AdColony (email to suffice),\n ceasing all use of the AdColony Platform and AdColony Property, and\n destroying or removing from all hard drives, networks, and other storage\n media all copies of the AdColony Property.\n\n 4. Effect of Termination. Upon termination of this Agreement by\n Developer, the Agreement (including all rights and licenses granted and\n obligations assumed hereunder) will remain in force and effect until the\n completion of all AdColony Ad campaigns associated with the Developer\n Apps in effect on the date of such termination (\u201cSell-Off Period\u201d).\n AdColony\u2019s payment obligations will remain in effect during the Sell-Off\n Period. Upon any termination of this Agreement, each party will promptly\n return or destroy all copies of any Confidential Information in its\n possession or control. Sections 3, 7(D) through 13 shall survive any\n expiration or termination of this Agreement.\n\n 8. Confidentiality\n\n A. Definition. \u201cConfidential Information\u201d means any and all business,\n technical and financial information or material of a party, whether\n revealed orally, visually, or in tangible or electronic form, that is\n not generally known to the public, which is disclosed to or made\n available by one party (the \u201cDisclosing Party\u201d) to the other, or which\n one party becomes aware of pursuant to this Agreement (the \u201cReceiving\n Party\u201d). The AdColony SDK is AdColony\u2019s Confidential Information, and\n the terms and conditions of this Agreement shall remain confidential.\n The failure of a Disclosing Party to designate as \u201cconfidential\u201d any\n such information or material at the time of disclosure shall not result\n in a loss of status as Confidential Information to the Disclosing Party.\n Confidential Information shall not include information which: (i) is in\n or has entered the public domain through no breach of this Agreement or\n other act by a Receiving Party; (ii) a Receiving Party rightfully knew\n prior to the time that it was disclosed to a Receiving Party hereunder;\n (iii) a Receiving Party received without restriction from a third-party\n lawfully possessing and lawfully entitled to disclose such information\n without breach of this Agreement; or (iv) was independently developed by\n employees of the Receiving Party who had no access to such information.\n\n B. Use and Disclosure Restrictions. The Receiving Party shall not use\n the Confidential Information except as necessary to exercise its rights\n or perform its obligations under this Agreement, and shall not disclose\n the Confidential Information to any third party, except to those of its\n employees, subcontractors, and advisers that need to know such\n Confidential Information for the purposes of this Agreement, provided\n that each such employee, subcontractor, and advisor is subject to a\n written agreement that includes binding use and disclosure restrictions\n that are at least as protective of the Confidential Information as those\n set forth herein. The Receiving Party will use at least the efforts such\n party ordinarily uses with respect to its own confidential information\n of similar nature and importance to maintain the confidentiality of all\n Confidential Information in its possession or control, but in no event\n less than reasonable efforts. The foregoing obligations will not\n restrict the Receiving Party from disclosing any Confidential\n Information required by applicable law; provided that, the Receiving\n Party must use reasonable efforts to give the Disclosing Party advance\n notice thereof (i.e., so as to afford Disclosing Party an opportunity to\n intervene and seek an order or other relief for protecting its\n Confidential Information from any unauthorized use or disclosure) and\n the Confidential Information is only disclosed to the extent required by\n law. The Receiving Party shall return all of the Disclosing Party\u2019s\n Confidential Information to the Disclosing Party or destroy the same, no\n later than fifteen (15) days after Disclosing Party\u2019s request, or when\n Receiving Party no longer needs Confidential Information for its\n authorized purposes hereunder.\n\n 9. Representations and Warranties of Developer. Developer represents,\n warrants and covenants to AdColony that: (a) it has all necessary rights,\n title, and interest in and to the Developer Apps, and it has obtained all\n necessary rights, releases, and permissions to grant the rights granted to\n AdColony in this Agreement, including to allow AdColony to sell and insert\n the AdColony Ads as contemplated herein; (b) it shall not use the AdColony\n Platform to collect or discern any personally identifiable information of\n end users, or use the data received through the AdColony Platform to re-\n identify an individual; and (c) the Developer Apps will comply with the\n Developer Apps Content Policy, and will not infringe upon, violate, or\n misappropriate any third party right, including any intellectual property,\n privacy, or publicity rights.\n\n 10. Warranty Disclaimer. THE ADCOLONY SDK AND ADCOLONY PLATFORM ARE PROVIDED\n \u201cAS IS\u201d. ADCOLONY DOES NOT MAKE ANY WARRANTIES, EXPRESS, IMPLIED, STATUTORY\n OR OTHERWISE, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY,\n NON-INFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, AND ANY IMPLIED\n WARRANTIES ARISING FROM COURSE OF DEALING OR PERFORMANCE. ADCOLONY AND ITS\n SUPPLIERS, LICENSORS, AND PARTNERS DO NOT WARRANT THAT THE ADCOLONY PLATFORM\n OR ADCOLONY SDK WILL BE CORRECT, UNINTERRUPTED OR ERROR-FREE, THAT DEFECTS\n WILL BE CORRECTED, OR THAT THE ADCOLONY PLATFORM OR ADCOLONY SDK ARE FREE OF\n VIRUSES OR OTHER HARMFUL COMPONENTS. ADCOLONY DOES NOT WARRANT THE RESULTS\n OF USE OF THE ADCOLONY PLATFORM OR ADCOLONY SDK. DEVELOPER ACKNOWLEDGES THAT\n ADCOLONY MAY MODIFY OR SUSPEND THE ADCOLONY PLATFORM AT ANY TIME IN ITS SOLE\n DISCRETION AND WITHOUT NOTICE.\n\n 11. Indemnification.\n\n 1. Developer Indemnification. Developer agrees to indemnify, defend, and\n hold harmless AdColony and its affiliates, and their directors,\n officers, employees, and agents from and against any liabilities,\n damages, costs and expenses (including reasonable attorneys\u2019 fees)\n arising out of any claim, demand, action, or proceeding initiated by a\n third party arising from or in connection with any breach of Developer\u2019s\n obligations, representations or warranties set forth in this Agreement;\n provided that, AdColony: (a) promptly notifies Developer in writing of\n the claim, except that any failure to provide this notice promptly only\n relieves Developer of its responsibility to the extent its defense is\n materially prejudiced by the delay; (b) grants Developer sole control of\n the defense and/or settlement of the claim; and (c) reasonably\n cooperates with Developer in connection with such claim at Developer\u2019s\n cost and expense.\n\n 2. AdColony Indemnification. AdColony agrees to indemnify, reimburse and\n hold harmless, Developer, its officers, directors, employees, and agents\n from and against any and all third party claims, liabilities, demands,\n causes of action, damages, losses and expenses, including, without\n limitation, reasonable attorneys\u2019 fees and costs of suit, arising out of\n or in connection with AdColony\u2019s infringement or misappropriation of a\n third party U.S. copyright, trademark or trade secret by the use of the\n AdColony Platform and/or the AdColony SDK by Developer as permitted\n hereunder; provided that, Developer: (a) promptly notifies AdColony in\n writing of the claim, except that any failure to provide this notice\n promptly only relieves AdColony of its responsibility to the extent its\n defense is materially prejudiced by the delay; (b) grants AdColony sole\n control of the defense and/or settlement of the claim; and (c)\n reasonably cooperates with AdColony in connection with such claim at\n AdColony\u2019s cost and expense. In addition, if the use of the AdColony\n Property by Developer has become, or in AdColony\u2019s opinion is likely to\n become, the subject of any claim of infringement, AdColony may at its\n option and expense (i) procure for Developer the right to continue using\n the AdColony Property as set forth hereunder; (ii) replace or modify the\n AdColony Property to make it non- infringing so long as the AdColony\n Property has substantially equivalent functionality; or (iii) if options\n (i) or (ii) are not reasonably practicable, terminate this Agreement.\n AdColony shall have no liability or obligation under this Section with\n respect to any claim if such claim is caused in whole or in part by (x)\n compliance with designs, data, instructions, or specifications provided\n by Developer; (y) modification of the AdColony Property by any party\n other than AdColony without AdColony\u2019s express consent; or (z) the\n combination, operation, or use of the AdColony Property with other\n applications, portions of applications, product(s), data or services\n where the AdColony Property would not by itself be infringing unless\n AdColony has required or expressly allowed such combination, operation,\n or use. THE INDEMNIFICATION RIGHTS CONTAINED IN THIS SECTION 11 ARE\n DEVELOPER\u2019S SOLE REMEDY FOR THIRD PARTY INFRINGEMENT CLAIMS RELATING TO\n ADCOLONY\u2019S SDK AND THE ADCOLONY PLATFORM.\n\n 12. Limitation of Liability. EXCEPT WITH RESPECT TO INDEMNIFICATION\n OBLIGATIONS HEREIN AND BREACHES OF SECTIONS 2 and 8, NEITHER PARTY SHALL BE\n LIABLE TO OTHER PARTY FOR ANY PUNITIVE, INCIDENTAL, INDIRECT, SPECIAL,\n RELIANCE OR CONSEQUENTIAL DAMAGES, INCLUDING LOST BUSINESS, DATA, REVENUE,\n OR ANTICIPATED PROFITS, WHETHER BASED ON BREACH OF CONTRACT, TORT (INCLUDING\n NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT A PARTY WAS ADVISED OF THE\n POSSIBILITY OF SUCH LOSS OR DAMAGES. EXCEPT WITH RESPECT TO INDEMNIFICATION\n OBLIGATIONS HEREIN AND BREACHES OF SECTIONS 2 and 8, IN NO EVENT WILL EITHER\n PARTY\u2019S AGGREGATE LIABILITY UNDER THIS AGREEMENT EXCEED THE TOTAL DEVELOPER\n PAYMENT PAYABLE TO DEVELOPER UNDER THIS AGREEMENT BY ADCOLONY IN THE TWELVE\n (12) MONTH PERIOD IMMEDIATELY PRECEDING THE DATE OF THE CLAIM.\n\n 13. General.\n\n 1. Relationship of the Parties. Each Party shall be and act as an\n independent contractor and not as partner, joint venturer, or agent of\n the other. No party shall have any right to obligate or bind any other\n party.\n\n 2. Assignment. Neither party may assign any of its rights or obligations\n under this Agreement without the prior written consent of the other\n party, except in connection with any merger (by operation of law or\n otherwise), consolidation, reorganization, change in control or sale of\n all or substantially all of its assets related to this Agreement or\n similar transaction. Notwithstanding the foregoing, Developer may not\n assign this Agreement to a direct competitor of AdColony without\n AdColony\u2019s prior written consent. This Agreement inures to the benefit\n of and shall be binding on the parties\u2019 permitted assignees, transferees\n and successors.\n\n 3. Amendments; Waiver. No changes or modifications or waivers are to be\n made to this Agreement unless evidenced in writing and signed for and on\n behalf of both parties. The failure by either party to insist upon the\n strict performance of this Agreement, or to exercise any term hereof,\n will not act as a waiver of any right, promise or term, which will\n continue in full force and effect.\n\n 4. Governing Law; Jurisdiction. This Agreement shall be governed by, and\n construed in accordance with, the laws of the State of California,\n without reference to conflicts of laws principles. The parties agree\n that the federal and state courts in Los Angeles County, California will\n have exclusive jurisdiction and venue under this Agreement, and the\n parties hereby agree to submit to such jurisdiction exclusively.\n\n 5. Entire Agreement. This Agreement contains the entire understanding of\n the parties regarding its subject matter and supersedes all other\n agreements and understandings, whether oral or written.", + "json": "adcolony-tos-2022.json", + "yaml": "adcolony-tos-2022.yml", + "html": "adcolony-tos-2022.html", + "license": "adcolony-tos-2022.LICENSE" + }, + { + "license_key": "addthis-mobile-sdk-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-addthis-mobile-sdk-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License Agreement\nADDTHIS MOBILE APPLICATION SDK LICENSE AGREEMENT\n\nPLEASE READ THIS CAREFULLY. IF YOU DO NOT AGREE THESE TERMS, YOU ARE NOT AUTHORIZED TO DOWNLOAD OR USE THIS SDK.\n\nTHIS ADDTHIS MOBILE APPLICATION SDK LICENSE AGREEMENT (THIS \"AGREEMENT\") IS A LEGAL AGREEMENT BETWEEN CLEARSPRING TECHNOLOGIES, INC (\"CLEARSPRING\" OR \"WE\") AND YOU INDIVIDUALLY IF YOU ARE AGREEING TO IT IN YOUR PERSONAL CAPACITY, OR IF YOU ARE AUTHORIZED TO DOWNLOAD THE SDK ON BEHALF OF YOUR COMPANY OR ORGANIZATION, BETWEEN THE ENTITY FOR WHOSE BENEFIT YOU ACT (\"YOU\"). CLEARSPRING OWNS AND OPERATES THE ADDTHIS SHARING PLATFORM.\n\nBY DOWNLOADING, INSTALLING, ACTIVATING OR USING THE SDK, YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS AGREEMENT. IF YOU HAVE ANY QUESTIONS OR CONCERNS ABOUT THE TERMS OF THIS AGREEMENT, PLEASE CONTACT US AT SUPPORT@ADDTHIS.COM.\n\nThis Agreement governs your access to, and use of, our proprietary software and associated application programming interface for use with mobile applications, as well as any related materials, including installation tools, sample code, source code, software libraries and documentation and any error corrections, updates, or new releases that we elect, in our sole discretion, to make available to you (all such materials, collectively, the \"SDK\").\n\nThis Agreement hereby incorporates by reference the terms and conditions of the AddThis terms of service (http://www.addthis.com/tos), including, but not limited to, Sections 4, 6, 8 and 12 through 22. For purposes of those terms of service, the SDK will be considered part of \"Our Technology\" and Clearspring's provision of the SDK will constitute one of the Services we provide.\n\n1.\tLicense. Subject to the terms and conditions of this Agreement, Clearspring hereby grants you a non-exclusive, non-transferable, non-sublicenseable, royalty-free right and license to copy and use the SDK solely for the purpose of adding the AddThis functionality into your mobile application in accordance with the documentation. You acknowledge and agree that you have no rights to any upgrades, modifications, enhancements or revisions that Clearspring may make to the SDK. You agree that we have no obligation to provide any support or engineering assistance of any sort unless we otherwise agree in writing.\n\n2.\tRestrictions. You may not use the SDK to: (i) design or develop anything other than a mobile application that contains the AddThis functionality; (ii) make any more copies of the SDK than are reasonably necessary for your authorized use thereof; (iii) modify, create derivative works of, reverse engineer, reverse compile, or disassemble the SDK or any portion thereof; (iv) distribute, publish, sell, transfer, assign, lease, rent, lend, or sublicense either in whole or part the SDK to any third party except as may specifically be permitted in Section 3 herein; (v) redistribute any component of the SDK except as set forth in Section 3 herein, or (vi) remove or otherwise obfuscate any proprietary notices or labels from the SDK. You may not use the SDK except in accordance with applicable laws and regulations, nor may you export the SDK from and outside the United States of America except as permitted under the applicable laws and regulations of the United Sates of America. You may not use the SDK to defraud any third party or to distribute obscene or other unlawful materials or information.\n\n3.\tCopyright Notice. You must include all copyright and other proprietary rights notices that accompany the SDK in any copies that you produce.\n\n4.\tProprietary Rights. Subject always to our ownership of the SDK, you will be the sole and exclusive owner of any software application developed using the SDK, excluding the SDK and any portions thereof.\n\n5.\tConfidential Information. You will safeguard, protect, respect, and maintain as confidential the SDK, the underlying computer code to which you may obtain or receive access, and the functional or technical design, logic, or other internal routines or workings of the SDK, which are considered confidential and proprietary to Clearspring.\n\nVersion 1.0 \u2013 April 4, 2011", + "json": "addthis-mobile-sdk-1.0.json", + "yaml": "addthis-mobile-sdk-1.0.yml", + "html": "addthis-mobile-sdk-1.0.html", + "license": "addthis-mobile-sdk-1.0.LICENSE" + }, + { + "license_key": "adi-bsd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-adi-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in\n the documentation and/or other materials provided with the\n distribution.\n - Neither the name of Analog Devices, Inc. nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n - The use of this software may or may not infringe the patent rights\n of one or more patent holders. This license does not release you\n from the requirement that you obtain separate licenses from these\n patent holders to use this software.\n\nTHIS SOFTWARE IS PROVIDED BY ANALOG DEVICES \"AS IS\" AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, NON-INFRINGEMENT,\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\nIN NO EVENT SHALL ANALOG DEVICES BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO, INTELLECTUAL PROPERTY RIGHTS, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\nOTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE", + "json": "adi-bsd.json", + "yaml": "adi-bsd.yml", + "html": "adi-bsd.html", + "license": "adi-bsd.LICENSE" + }, + { + "license_key": "adobe-acrobat-reader-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-acrobat-reader-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Adobe Acrobat Reader EULA\nADOBE\n\nEnd User License Agreement\n\nPlease return any accompanying registration form to receive registration benefits.\n\nNOTICE TO USER: PLEASE READ THIS CONTRACT CAREFULLY. BY USING ALL OR ANY PORTION OF THE SOFTWARE YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT, INCLUDING, IN PARTICULAR THE LIMITATIONS ON: USE CONTAINED IN SECTION 2; TRANSFERABILITY IN SECTION 4; WARRANTY IN SECTION 6 AND 7; AND LIABILITY IN SECTION 8. YOU AGREE THAT THIS AGREEMENT IS ENFORCEABLE LIKE ANY WRITTEN NEGOTIATED AGREEMENT SIGNED BY YOU. IF YOU DO NOT AGREE, DO NOT USE THIS SOFTWARE. IF YOU ACQUIRED THE SOFTWARE ON TANGIBLE MEDIA (e.g. CD) WITHOUT AN OPPORTUNITY TO REVIEW THIS LICENSE AND YOU DO NOT ACCEPT THIS AGREEMENT, YOU MAY OBTAIN A REFUND OF THE AMOUNT YOU ORIGINALLY PAID IF YOU: (A) DO NOT USE THE SOFTWARE AND (B) RETURN IT, WITH PROOF OF PAYMENT, TO THE LOCATION FROM WHICH IT WAS OBTAINED WITHIN THIRTY (30) DAYS OF THE PURCHASE DATE.\n\n\n1. Definitions. \"Software\" means (a) all of the contents of the files, disk(s), CD-ROM(s) or other media with which this Agreement is provided, including but not limited to (i) Adobe or third party computer information or software; (ii) digital images, stock photographs, clip art, sounds or other artistic works (\"Stock Files\"); (iii) related explanatory written materials or files (\"Documentation\"); and (iv) fonts; and (b) upgrades, modified versions, updates, additions, and copies of the Software, if any, licensed to you by Adobe (collectively, \"Updates\"). \"Use\" or \"Using\" means to access, install, download, copy or otherwise benefit from using the functionality of the Software in accordance with the Documentation. \"Permitted Number\" means one (1) unless otherwise indicated under a valid license (e.g. volume license) granted by Adobe. \"Computer\" means an electronic device that accepts information in digital or similar form and manipulates it for a specific result based on a sequence of instructions. \"Adobe\" means Adobe Systems Incorporated, a Delaware corporation, 345 Park Avenue, San Jose, California 95110, if subsection 10(a) of this Agreement applies; otherwise it means Adobe Systems Benelux BV, Europlaza, Hoogoorddreef 54a, 1101 BE Amsterdam ZO, the Netherlands, a company organized under the laws of the Netherlands and an affiliate and licensee of Adobe Systems Incorporated.\n\n\n2. Software License. As long as you comply with the terms of this End User License Agreement (the \"Agreement\"), Adobe grants to you a non-exclusive license to Use the Software for the purposes described in the Documentation. Some third party materials included in the Software may be subject to other terms and conditions, which are typically found in a \"Read Me\" file located near such materials.\n\n2.1. General Use. You may install and Use a copy of the Software on your compatible computer, up to the Permitted Number of computers; or\n\n2.2. Server Use. You may install one copy of the Software on your computer file server for the purpose of downloading and installing the Software onto other computers within your internal network up to the Permitted Number or you may install one copy of the Software on a computer file server within your internal network for the sole and exclusive purpose of using the Software through commands, data or instructions (e.g. scripts) from an unlimited number of computers on your internal network. No other network use is permitted, including but not limited to, using the Software either directly or through commands, data or instructions from or to a computer not part of your internal network, for internet or web hosting services or by any user not licensed to use this copy of the Software through a valid license from Adobe; and\n\n2.3. Backup Copy. You may make one backup copy of the Software, provided your backup copy is not installed or used on any computer. You may not transfer the rights to a backup copy unless you transfer all rights in the Software as provided under Section 4.\n\n2.4. Home Use. You, as the primary user of the computer on which the Software is installed, may also install the Software on one of your home computers. However, the Software may not be used on your home computer at the same time the Software on the primary computer is being used.\n\n2.5. Stock Files. Unless stated otherwise in the \"Read-Me\" files associated with the Stock Files, which may include specific rights and restrictions with respect to such materials, you may display, modify, reproduce and distribute any of the Stock Files included with the Software. However, you may not distribute the Stock Files on a stand-alone basis, i.e., in circumstances in which the Stock Files constitute the primary value of the product being distributed. Stock Files may not be used in the production of libelous, defamatory, fraudulent, lewd, obscene or pornographic material or any material that infringes upon any third party intellectual property rights or in any otherwise illegal manner. You may not claim any trademark rights in the Stock Files or derivative works thereof.\n\n2.6. Font Software. If the Software includes font software - \n\n2.6.1. You may Use the font software as described above on the Permitted Number of computers and output such font software on any output devices connected to such computers. \n\n2.6.2. If the Permitted Number of computers is five or fewer, you may download the font software to the memory (hard disk or RAM) of one output device connected to at least one of such computers for the purpose of having such font software remain resident in the output device, and of one additional such output device for every multiple of five represented by the Permitted Number of computers. \n\n2.6.3. You may take a copy of the font(s) you have used for a particular file to a commercial printer or other service bureau, and such service bureau may Use the font(s) to process your file, provided such service bureau has a valid license to Use that particular font software. \n\n2.6.4. You may convert and install the font software into another format for use in other environments, subject to the following conditions: A computer on which the converted font software is used or installed shall be considered as one of your Permitted Number of computers. Use of the font software you have converted shall be pursuant to all the terms and conditions of this Agreement. Such converted font software may be used only for your own customary internal business or personal use and may not be distributed or transferred for any purpose, except in accordance with the Transfer section below. \n\n2.6.5 You may embed the font software, or outlines of the font software, into your electronic documents to the extent that the font vendor copyright owner allows for such embedding. The fonts contained in this package may contain both Adobe and non-Adobe owned fonts. You may fully embed any font owned by Adobe. Refer to the font sample sheet or font information file to determine font ownership. See the Documentation for location and information on how to access these sheets and files.\n\n2.7 To the extent that the Software includes Adobe Acrobat Reader software, (i) you may customize the installer for such software in accordance with the restrictions found at www.adobe.com (e.g., installation of additional plug-in and help files); however, you may not otherwise alter or modify the installer program or create a new installer for any of such software, (ii) such software is licensed and distributed by Adobe for viewing, distributing and sharing PDF files, and (iii) you are not authorized to use any plug-in or enhancement that permits you to save modifications to a PDF file with such software; however, such use is authorized with Adobe Acrobat, Adobe Acrobat Business Tools, and other current and future Adobe products that feature the creation or manipulation of PDF files. For information on how to distribute Adobe Acrobat( Reader( and Adobe SVG Viewer please refer to the sections entitled \"How to Distribute Acrobat Reader\" and \"How to Distribute SVG Viewer\" at www.adobe.com. \n\n\n3. Intellectual Property Rights. The Software and any copies that you are authorized by Adobe to make are the intellectual property of and are owned by Adobe Systems Incorporated and its suppliers. The structure, organization and code of the Software are the valuable trade secrets and confidential information of Adobe Systems Incorporated and its suppliers. The Software is protected by copyright, including without limitation by United States Copyright Law, international treaty provisions and applicable laws in the country in which it is being used. You may not copy the Software, except as set forth in Section 2 (\"Software License\"). Any copies that you are permitted to make pursuant to this Agreement must contain the same copyright and other proprietary notices that appear on or in the Software. Except for font software converted to other formats as permitted in section 2.6.4, you agree not to modify, adapt or translate the Software.You also agree not to reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of the Software except to the extent you may be expressly permitted to decompile under applicable law, it is essential to do so in order to achieve operability of the Software with another software program, and you have first requested Adobe to provide the information necessary to achieve such operability and Adobe has not made such information available. Adobe has the right to impose reasonable conditions and to request a reasonable fee before providing such information. Any information supplied by Adobe or obtained by you, as permitted hereunder, may only be used by you for the purpose described herein and may not be disclosed to any third party or used to create any software which is substantially similar to the expression of the Software. Requests for information should be directed to the Adobe Customer Support Department. Trademarks shall be used in accordance with accepted trademark practice, including identification of trademarks owners' names. Trademarks can only be used to identify printed output produced by the Software and such use of any trademark does not give you any rights of ownership in that trademark. Except as expressly stated above, this Agreement does not grant you any intellectual property rights in the Software. \n\n\n4. Transfer. You may not, rent, lease, sublicense or authorize all or any portion of the Software to be copied onto another users computer except as may be expressly permitted herein. You may, however, transfer all your rights to Use the Software to another person or legal entity provided that: (a) you also transfer each this Agreement, the Software and all other software or hardware bundled or pre-installed with the Software, including all copies, Updates and prior versions, and all copies of font software converted into other formats, to such person or entity; (b) you retain no copies, including backups and copies stored on a computer; and (c) the receiving party accepts the terms and conditions of this Agreement and any other terms and conditions upon which you legally purchased a license to the Software. Notwithstanding the foregoing, you may not transfer education, pre-release, or not for resale copies of the Software. \n\n\n5. Multiple Environment Software / Multiple Language Software / Dual Media Software / Multiple Copies/ Bundles / Updates. If the Software supports multiple platforms or languages, if you receive the Software on multiple media, if you otherwise receive multiple copies of the Software, or if you received the Software bundled with other software, the total number of your computers on which all versions of the Software are installed may not exceed the Permitted Number. You may not, rent, lease, sublicense, lend or transfer any versions or copies of such Software you do not Use. If the Software is an Update to a previous version of the Software, you must possess a valid license to such previous version in order to Use the Update. You may continue to Use the previous version of the Software on your computer after you receive the Update to assist you in the transition to the Update, provided that: the Update and the previous version are installed on the same computer; the previous version or copies thereof are not transferred to another party or computer unless all copies of the Update are also transferred to such party or computer; and you acknowledge that any obligation Adobe may have to support the previous version of the Software may be ended upon availability of the Update. \n\n\n6. NO WARRANTY. The Software is being delivered to you \"AS IS\" and Adobe makes no warranty as to its use or performance. ADOBE AND ITS SUPPLIERS DO NOT AND CANNOT WARRANT THE PERFORMANCE OR RESULTS YOU MAY OBTAIN BY USING THE SOFTWARE. EXCEPT FOR ANY WARRANTY, CONDITION, REPRESENTATION OR TERM TO THE EXTENT TO WHICH THE SAME CANNOT OR MAY NOT BE EXCLUDED OR LIMITED BY LAW APPLICABLE TO YOU IN YOUR JURISDICTION, ADOBE AND ITS SUPPLIERS MAKE NO WARRANTIES CONDITIONS, REPRESENTATIONS, OR TERMS (EXPRESS OR IMPLIED WHETHER BY STATUTE, COMMON LAW, CUSTOM, USAGE OR OTHERWISE) AS TO ANY MATTER INCLUDING WITHOUT LIMITATION NONINFRINGEMENT OF THIRD PARTY RIGHTS, MERCHANTABILITY, INTEGRATION, SATISFACTORY QUALITY, OR FITNESS FOR ANY PARTICULAR PURPOSE. \n\n\n7. Pre-release Product Additional Terms. If the product you have received with this license is pre-commercial release or beta Software (\"Pre-release Software\"), then the following Section applies. To the extent that any provision in this Section is in conflict with any other term or condition in this Agreement, this Section shall supercede such other term(s) and condition(s) with respect to the Pre-release Software, but only to the extent necessary to resolve the conflict. You acknowledge that the Software is a pre-release version, does not represent final product from Adobe, and may contain bugs, errors and other problems that could cause system or other failures and data loss. Consequently, the Pre-release Software is provided to you \"AS-IS\", and Adobe disclaims any warranty or liability obligations to you of any kind. WHERE LEGALLY LIABILITY CANNOT BE EXCLUDED FOR PRE-RELEASE SOFTWARE, BUT IT MAY BE LIMITED, ADOBE'S LIABILITY AND THAT OF ITS SUPPLIERS SHALL BE LIMITED TO THE SUM OF FIFTY DOLLARS (U.S. $50) IN TOTAL. You acknowledge that Adobe has not promised or guaranteed to you that Pre-release Software will be announced or made available to anyone in the future, that Adobe has no express or implied obligation to you to announce or introduce the Pre-release Software and that Adobe may not introduce a product similar to or compatible with the Pre-release Software. Accordingly, you acknowledge that any research or development that you perform regarding the Pre-release Software or any product associated with the Pre-release Software is done entirely at your own risk. During the term of this Agreement, if requested by Adobe, you will provide feedback to Adobe regarding testing and use of the Pre-release Software, including error or bug reports. If you have been provided the Pre-release Software pursuant to a separate written agreement, such as the Adobe Systems Incorporated Serial Agreement for Unreleased Products, your use of the Software is also governed by such agreement. You agree that you may not and certify that you will not sublicense, lease, loan, rent, or transfer the Pre-release Software. Upon receipt of a later unreleased version of the Pre-release Software or release by Adobe of a publicly released commercial version of the Software, whether as a stand-alone product or as part of a larger product, you agree to return or destroy all earlier Pre-release Software received from Adobe and to abide by the terms of the End User License Agreement for any such later versions of the Pre-release Software. Notwithstanding anything in this Section to the contrary, if you are located outside the United States of America, you agree that you will return or destroy all unreleased versions of the Pre-release Software within thirty (30) days of the completion of your testing of the Software when such date is earlier than the date for Adobe's first commercial shipment of the publicly released (commercial) Software.\n\n\n8. LIMITATION OF LIABILITY. IN NO EVENT WILL ADOBE OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY DAMAGES, CLAIMS OR COSTS WHATSOEVER OR ANY CONSEQUENTIAL, INDIRECT, INCIDENTAL DAMAGES, OR ANY LOST PROFITS OR LOST SAVINGS, EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS OR FOR ANY CLAIM BY ANY THIRD PARTY. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION. ADOBE'S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT PAID FOR THE SOFTWARE, IF ANY. Nothing contained in this Agreement limits Adobe's liability to you in the event of death or personal injury resulting from Adobe's negligence or for the tort of deceit (fraud). Adobe is acting on behalf of its suppliers for the purpose of disclaiming, excluding and/or limiting obligations, warranties and liability as provided in this Agreement, but in no other respects and for no other purpose. For further information, please see the jurisdiction specific information at the end of this Agreement, if any, or contact Adobe's Customer Support Department.\n\n\n9. Export Rules. You agree that the Software will not be shipped, transferred or exported into any country or used in any manner prohibited by the United States Export Administration Act or any other export laws, restrictions or regulations (collectively the \"Export Laws\"). In addition, if the Software is identified as export controlled items under the Export Laws, you represent and warrant that you are not a citizen, or otherwise located within, an embargoed nation (including without limitation Iran, Iraq, Syria, Sudan, Libya, Cuba, North Korea, and Serbia) and that you are not otherwise prohibited under the Export Laws from receiving the Software. All rights to Use the Software are granted on condition that such rights are forfeited if you fail to comply with the terms of this Agreement.\n\n\n10. Governing Law. This Agreement will be governed by and construed in accordance with the substantive laws in force: (a) in the State of California, if a license to the Software is purchased when you are in the United States, Canada, or Mexico; or (b) in Japan, if a license to the Software is purchased when you are in Japan, China, Korea, R.O.C, or other Southeast Asian country where all official languages are written in either an ideographic script (e.g., hanzi, kanji, or hanja), and/or other script based upon or similar in structure to an ideographic script, such as hangul or kana; or (c) the Netherlands, if a license to the Software is purchased when you are in any other jurisdiction not described above. The respective courts of Santa Clara County, California when California law applies, Tokyo District Court in Japan, when Japanese law applies, and the courts of Amsterdam, the Netherlands, when the law of the Netherlands applies, shall each have non-exclusive jurisdiction over all disputes relating to this Agreement. This Agreement will not be governed by the conflict of law rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. \n\n\n11. General Provisions. If any part of this Agreement is found void and unenforceable, it will not affect the validity of the balance of the Agreement, which shall remain valid and enforceable according to its terms. This Agreement shall not prejudice the statutory rights of any party dealing as a consumer. This Agreement may only be modified by a writing signed by an authorized officer of Adobe. Updates may be licensed to you by Adobe with additional or different terms. This is the entire agreement between Adobe and you relating to the Software and it supersedes any prior representations, discussions, undertakings, communications or advertising relating to the Software. \n\n\n12. Notice to U.S. Government End Users. The Software and Documentation are \"Commercial Items,\" as that term is defined at 48 C.F.R. \u00df2.101, consisting of \"Commercial Computer Software\" and \"Commercial Computer Software Documentation,\" as such terms are used in 48 C.F.R. \u00df12.212 or 48 C.F.R. \u00df227.7202, as applicable. Consistent with 48 C.F.R. \u00df12.212 or 48 C.F.R. \u00df\u00df227.7202-1 through 227.7202-4, as applicable, the Commercial Computer Software and Commercial Computer Software Documentation are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Unpublished-rights reserved under the copyright laws of the United States. Adobe Systems Incorporated, 345 Park Avenue, San Jose, CA 95110-2704, USA. For U.S. Government End Users, Adobe agrees to comply with all applicable equal opportunity laws including, if appropriate, the provisions of Executive Order 11246, as amended, Section 402 of the Vietnam Era Veterans Readjustment Assistance Act of 1974 (38 USC 4212), and Section 503 of the Rehabilitation Act of 1973, as amended, and the regulations at 41 CFR Parts 60-1 through 60-60, 60-250, and 60-741. The affirmative action clause and regulations contained in the preceding sentence shall be incorporated by reference in this Agreement.\n\n\n13. Compliance with Licenses. If you are a business or organisation, you agree that upon request from Adobe or Adobe's authorised representative, you will within thirty (30) days fully document and certify that use of any and all Adobe Software at the time of the request is in conformity with your valid licenses from Adobe.\n\n\nIf you have any questions regarding this Agreement or if you wish to request any information from Adobe please use the address and contact information included with this product to contact the Adobe office serving your jurisdiction. \n\nAdobe, Acrobat, Acrobat Reader, and After Effects are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries.\n\nSVGReader_WWEULA_English_01.15.01_11:15", + "json": "adobe-acrobat-reader-eula.json", + "yaml": "adobe-acrobat-reader-eula.yml", + "html": "adobe-acrobat-reader-eula.html", + "license": "adobe-acrobat-reader-eula.LICENSE" + }, + { + "license_key": "adobe-air-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-air-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Adobe AIR SDK License\nhttp://www.adobe.com/products/eulas/\n\nADOBE SYSTEMS INCORPORATED \nWARRANTY DISCLAIMER AND LICENSE AGREEMENT \nADOBE\u00ae AIR\u00ae SDK\n\nNOTICE TO USER: THIS DOCUMENT INCLUDES A WARRANTY DISCLAIMER (PART I) AND AN SDK LICENSE AGREEMENT (PART II).\nPART I. WARRANTY DISCLAIMER AND LIABILITY LIMITATION\nAdobe provides the SDK Components (defined below) to you \"AS IS.\" ADOBE AND ITS SUPPLIERS DISCLAIM ANY EXPRESS, IMPLIED, OR STATUTORY WARRANTY OF ANY KIND WITH RESPECT TO THE SDK COMPONENTS INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY WITH REGARD TO PERFORMANCE, MERCHANTABILITY, SATISFACTORY QUALITY, NONINFRINGEMENT OR FITNESS FOR ANY PARTICULAR PURPOSE. YOU BEAR THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SDK COMPONENTS. The foregoing exclusions and limitations will apply to the maximum extent permitted by applicable law, even if any remedy fails its essential purpose.\nIN NO EVENT WILL ADOBE OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY DAMAGES, CLAIMS OR COSTS WHATSOEVER ARISING FROM THE SDK COMPONENTS OR YOUR USE OF THE SDK COMPONENTS, INCLUDING WITHOUT LIMITATION ANY CONSEQUENTIAL, INDIRECT, INCIDENTAL DAMAGES, OR ANY LOST PROFITS OR LOST SAVINGS, EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS OR FOR ANY CLAIM BY ANY THIRD PARTY. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION. IN ANY EVENT, ADOBE'S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THE SDK COMPONENTS WILL BE LIMITED TO TEN U.S. DOLLARS. Nothing limits liability to you in the event of death or personal injury resulting from negligence or for the tort of deceit (fraud). Adobe is acting on behalf of its suppliers for the purpose of disclaiming, excluding and/or limiting obligations, warranties and liability, but in no other respects and for no other purpose.\n\nPART II. SDK LICENSE AGREEMENT\nADOBE SOFTWARE DEVELOPMENT KIT LICENSE AGREEMENT ADOBE AIR\nNOTICE TO USER: THIS LICENSE AGREEMENT GOVERNS INSTALLATION AND USE OF THE SDK COMPONENTS (AS DEFINED BELOW). YOU AGREE THAT THIS AGREEMENT IS LIKE ANY WRITTEN NEGOTIATED AGREEMENT SIGNED BY YOU. BY DOWNLOADING, INSTALLING, COPYING, MODIFYING OR DISTRIBUTING ANY SDK COMPONENT, YOU ACCEPT ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. THIS AGREEMENT IS ENFORCEABLE AGAINST YOU AND ANY LEGAL ENTITY THAT OBTAINED THE SDK COMPONENTS AND ON WHOSE BEHALF THEY ARE USED: FOR EXAMPLE, YOUR EMPLOYER. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, DO NOT USE THE SDK COMPONENTS.\nYOU MAY HAVE A SEPARATE WRITTEN AGREEMENT WITH ADOBE THAT SUPPLEMENTS OR SUPERSEDES ALL OR PORTIONS OF THIS AGREEMENT.\nUse of some third party materials included in the SDK Components may be subject to other terms and conditions typically found in a separate license agreement or a \"Read Me\" file located near such materials or in the \"Third Party Software Notices and/or Additional Terms and Conditions\" found at http://www.adobe.com/go/thirdparty.\n\n1.\tDEFINITIONS. \n\"Adobe\" means Adobe Systems Incorporated, a Delaware corporation, 345 Park Avenue, San Jose, California 95110.\n\"Build Tools\" means build files, compilers, runtime libraries (but not the complete Runtime Software), and other tools accompanying this agreement, including, for example, the contents of the Bin, Lib, and runtime directories, adl.exe, adl.bat, and adt.jar.\n\"Developer Application\" means your application software that interoperates with the Runtime Software and complies with the requirements of this Agreement, for example, Section 4.1.\n\"Documentation\" means the written materials accompanying this agreement, including, for example, technical specifications, file format documentation and application programming interface (API) information.\n\"Effective Date\" means the date that you download or otherwise access the SDK Components. \"Material Improvement\" means perceptible, measurable and definable improvements that provide extended or\nadditional significant and primary functionality that adds significant business value.\n\"Runtime Components\" means any of the individual files, libraries, or executable code contained in the Runtime Software installation directory (e.g., the \"Adobe AIR\" and \"Adobe AIR Framework\" folders) or the Runtime Software utilities included in the utilities directory or installer files. Runtime.dll, Runtime executables, template.exe, and template.app are examples of Runtime Components.\n\"Runtime Software\" means the Adobe runtime software in object code format named \"Adobe AIR\" that is to be installed by end-users, and all updates to such software made available by Adobe.\n\"SDK Components\" means the Build Tools, Documentation, Sample Code and SDK Source Files. \"SDK Source Files\" means framework source code files that accompany this agreement.\n\"Sample Code\" means sample software in source code or object code format designated in the Documentation or directories as \"sample code,\" \"samples,\" \"sample application code,\" \"quickstart code\" or \"snippets.\"\n\n2. License. Subject to the terms and conditions of this agreement, including the requirements and restrictions below, Adobe grants you the non-exclusive, non-transferable right to use the SDK Components in accordance with the Documentation as follows:\n2.1 Installation, Use and Copying. You may install and use the Build Tools solely for purpose of developing compliant Developer Applications. You may make a limited and reasonable number of copies of the SDK Components for purposes of your internal development of Developer Applications.\n2.2 Modification. You may modify the Sample Code and SDK Source Files provided to you in human readable (i.e., source code) format. You may incorporate the modified Sample Code and SDK Source Files into your Developer Applications. You may not modify the Build Tools, Documentation or the Runtime Software in any manner. You may not delete or in any manner alter the copyright notices, trademarks, logos or related notices, or other proprietary rights notices of Adobe (and its licensors, if any) appearing on or within any of the SDK Components other than Sample Code or SDK Source Files that are substantially modified by you in accordance with this agreement.\n2.3 Distribution. (a) Distribution Rights. Subject to the provisions of this agreement, including the requirements and restrictions\nbelow, you may copy and distribute the Sample Code and SDK Source Files as follows:\n(i) Distribution with Developer Application. You may distribute Sample Code and SDK Source Files in source code, object code, modified or unmodified form, in all cases incorporated into your Developer Application; and\n(ii) Distribution of Sample Code Stand-alone.\tYou may distribute Sample Code (but not SDK Source Files) in source code or object code format on a stand-alone basis or as bundled with other software, as long as you first make modifications to such code that result in Material Improvements; and\n(iii) Distribution of SDK Source Files. You may distribute SDK Source Files (but not the Sample Code) in source code or object code format on a stand-alone basis or as bundled with other components useful to developers, as long as you first make modifications to such files that result in Material Improvements, and provided that you (A) include a copyright notice reflecting copyright ownership in such modified files, and (B) do not use \"mx,\" \"mxml,\" \"flex,\" \"flash,\" or \"adobe\" in any new package or class names distributed with the SDK Source Files.\n(iv) Distribution of Build Tools. This agreement does not grant you the right to distribute the Documentation, Build Tools or Runtime Software. For information about obtaining the right to distribute such components with your product or service please refer to http://www.adobe.com/go/redistributeairsdk.\n(b) Distribution Requirements. If you distribute the Sample Code or SDK Source Files under this agreement, you must include a copyright notice in such code, files, the relevant Developer Application or other larger work incorporating such code or files. You may not (i) make any statement that any Developer Application or other software is \"certified\" or otherwise guaranteed by Adobe or (ii) use Adobe\u2019s name or trademarks to market any Developer Application or other software without written permission from Adobe. Adobe is not responsible to you or any other party for any software update or support or other liability that may arise from your distribution.\n\n3. Indemnification. You agree to hold Adobe harmless from any and all liabilities, losses, actions, damages or claims (including product liability, warranty and intellectual property claims, and all reasonable expenses, costs and attorneys fees) arising out of or relating to your distribution of any SDK Component or Developer Application; provided that Adobe cooperates with you, at your expense, in resolving any such claim.\n4. Development Requirements and Restrictions.\n4.1 Development. You shall not create or distribute any software, including, without limitation, any Developer Application, that interoperates with individual Runtime Components in a manner not documented by Adobe. You shall not create or distribute any software, including, without limitation, any Developer Application, that is designed to interoperate with an un-installed instance of the Runtime Software. You shall not create or distribute any Developer Application that runs without installation. You are not permitted to install or use the Build Tools or other SDK Components to develop software prohibited by this Section 4.1. Failure to comply with this Section 4.1 is a breach of this agreement that immediately terminates all rights granted to you herein.\n4.2 Other Prohibitions. You will not use the SDK Components to create, develop or use any program, software or service that (a) contains any viruses, Trojan horses, worms, time bombs, cancelbots or other computer programming routines that are intended to damage, detrimentally interfere with, surreptitiously intercept or expropriate any system, data or personal information, (b) when used in the manner in which it is intended or marketed, violates any law, statute, ordinance, regulation or rights (including without limitation any laws, regulations or rights respecting intellectual property, computer spyware, privacy, export control, unfair competition, antidiscrimination or advertising), or (c) interferes with the operability of Adobe or third-party programs or software.\n4.3 AVC Codec Use. THIS PRODUCT IS LICENSED UNDER THE AVC PATENT PORTFOLIO LICENSE FOR THE PERSONAL NON-COMMERCIAL USE OF A CONSUMER TO (i) ENCODE VIDEO IN COMPLIANCE WITH THE AVC STANDARD (\"AVC VIDEO\") AND/OR (ii) DECODE AVC VIDEO THAT WAS ENCODED BY A CONSUMER ENGAGED IN A PERSONAL NON-COMMERCIAL ACTIVITY AND/OR WAS OBTAINED FROM A VIDEO PROVIDER LICENSED TO PROVIDE AVC VIDEO. NO LICENSE IS GRANTED OR SHALL BE IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED FROM MPEG LA, L.L.C. SEE http://www.mpegla.com.\n4.4 MP3 Codec Use. You may not modify the runtime libraries or any other Build Tools. You may not access MP3 codecs within the runtime libraries other than through the published runtime APIs. Development, use or distribution\nof a Developer Application that operates on non-PC devices and that decodes MP3 data not contained within a SWF, FLV or other file format that contains more than MP3 data may require one or more third-party license(s).\n\n5. Intellectual Property Rights. The SDK Components and any copies that you are authorized by Adobe to make are the intellectual property of and are owned by Adobe Systems Incorporated and its suppliers. The structure, organization and code of the SDK Components provided to you in compiled or object code form are the valuable trade secrets and confidential information of Adobe Systems Incorporated and its suppliers. The SDK Components are protected by copyright, including without limitation by United States Copyright Law, international treaty provisions and applicable laws in the country in which they are used. Except as expressly stated herein, this agreement does not grant you any intellectual property rights in the SDK Components and all rights not expressly granted are reserved by Adobe.\n\n6. Reverse Engineering. You will not reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of any SDK Component provided to you in compiled or object code format except to the extent you may be expressly permitted to decompile under applicable law.\n\n7. No Warranty. Adobe provides the SDK Components to you \"AS IS.\" ADOBE AND ITS SUPPLIERS MAKE NO EXPRESS, IMPLIED, OR STATUTORY WARRANTY OF ANY KIND WITH RESPECT TO THE SDK COMPONENTS INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY WITH REGARD TO PERFORMANCE, MERCHANTABILITY, SATISFACTORY QUALITY, NONINFRINGEMENT OR FITNESS FOR ANY PARTICULAR PURPOSE. IN NO EVENT WILL ADOBE OR ITS SUPPLIERS BE LIABLE TO YOU OR ANY OTHER PARTY FOR ANY DAMAGES, INCLUDING ANY LOST PROFITS, LOST SAVINGS OR OTHER INCIDENTAL OR CONSEQUENTIAL DAMAGES EVEN IF ADOBE OR ANY COMPANY REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. YOU BEAR THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SDK COMPONENTS. The foregoing exclusions and limitations will apply to the maximum extent permitted by applicable law, even if any remedy fails its essential purpose.\n\n8. Limitation of Liability. IN NO EVENT WILL ADOBE OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY DAMAGES, CLAIMS OR COSTS WHATSOEVER ARISING FROM THIS LICENSE AGREEMENT AND/OR YOUR USE OF THE SDK COMPONENTS, INCLUDING WITHOUT LIMITATION ANY CONSEQUENTIAL, INDIRECT, INCIDENTAL DAMAGES, OR ANY LOST PROFITS OR LOST SAVINGS, EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS OR FOR ANY CLAIM BY ANY THIRD PARTY. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION. IN ANY EVENT, ADOBE'S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS LICENSE AGREEMENT WILL BE LIMITED TO TEN U.S. DOLLARS. Nothing contained in this agreement limits Adobe's or its suppliers\u2019 liability to you in the event of death or personal injury resulting from negligence or for the tort of deceit (fraud). Adobe is acting on behalf of its suppliers for the purpose of disclaiming, excluding and/or limiting obligations, warranties and liability as provided in this agreement, but in no other respects and for no other purpose.\n\n9. Term and Termination. This agreement will commence upon the Effective Date and continue in perpetuity unless terminated as set forth herein. Adobe may terminate this agreement immediately if you breach any of its terms.\tSections 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 and 14 will survive any termination of this agreement. Upon termination of this Agreement, you will cease all use and distribution of the SDK Components and return to Adobe or destroy (with written confirmation of destruction) the SDK Components promptly at Adobe\u2019s request, together with any copies thereof.\n\n10. Export Rules. You agree that the SDK Components will not be shipped, transferred or exported into any country or used in any manner prohibited by the United States Export Administration Act or any other export laws, restrictions or regulations (collectively the \"Export Laws\"). In addition, if the SDK Components are identified as an export controlled item under the Export Laws, you represent and warrant that you are not a citizen of, or located within, an embargoed or otherwise restricted nation (including Iran, Syria, Sudan, Cuba and North Korea) and that you are not otherwise prohibited under the Export Laws from receiving the SDK Components.\tAll rights to use the\nSDK Components are granted on condition that such rights are forfeited if you fail to comply with the terms of this agreement.\n\n11. Notice to U.S. Government End Users.\nFor U.S. Government End Users, Adobe agrees to comply with all applicable equal opportunity laws including, if appropriate, the provisions of Executive Order 11246, as amended, Section 402 of the Vietnam Era Veterans Readjustment Assistance Act of 1974 (38 USC 4212), and Section 503 of the Rehabilitation Act of 1973, as amended, and the regulations at 41 CFR Parts 60-1 through 60-60, 60-250, and 60-741. The affirmative action clause and regulations contained in the preceding sentence is incorporated by reference in this agreement.\n\n12. Trademark. \"Adobe\u00ae AIR\u00ae\" is a trademark of Adobe that may not be used by others except under a written license from Adobe. You may not incorporate the Adobe AIR trademark, or any other Adobe trademark, in whole or in part, in the title of your Developer Application or in your company name, domain name or the name of a service related to Adobe AIR. You may indicate the interoperability of your Developer Application with the Adobe AIR runtime software, if true, by stating, for example, \"works with Adobe\u00ae AIR\u00ae\" or \"for Adobe\u00ae AIR\u00ae.\" You may use the Adobe AIR trademark to refer to your Developer Application as an \"Adobe\u00ae AIR\u00ae application\" only as a statement that your Developer Application interoperates with the Adobe AIR Runtime Software.\n\n13. Governing Law. This agreement, each transaction entered into hereunder, and all matters arising from or related to this agreement (including its validity and interpretation), will be governed and enforced by and construed in accordance with the substantive laws in force in the State of California. The state or federal courts located in Santa Clara County, California will each have non-exclusive jurisdiction over all disputes relating to this agreement. This agreement will not be governed by the conflict of law rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded.\n\n14. General Provisions. If any part of this agreement is found void and unenforceable, it will not affect the validity of the balance of this agreement, which will remain valid and enforceable according to its terms. Updates may be licensed to you by Adobe with additional or different terms. This is the entire agreement between Adobe and you relating to the SDK Components and it supersedes any prior representations, discussions, undertakings, communications or advertising relating to the SDK Components.\n\nAdobeAIR_ SDK License _20080414_1855", + "json": "adobe-air-sdk.json", + "yaml": "adobe-air-sdk.yml", + "html": "adobe-air-sdk.html", + "license": "adobe-air-sdk.LICENSE" + }, + { + "license_key": "adobe-air-sdk-2014", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-air-sdk-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Adobe AIR SDK - Warranty disclaimer and license agreement\nADOBE SYSTEMS INCORPORATED\nSDK LICENSE AGREEMENT\nADOBE\u00ae AIR\u00ae SDK\n \n1. NO WARRANTY, LIMITATION OF LIABILITY, BINDING AGREEMENT AND ADDITIONAL TERMS AND AGREEMENTS.\n1.1 NO WARRANTY. YOU ACKNOWLEDGE THAT THE SDK (AS DEFINED BELOW) MAY BE PRONE TO BUGS AND/OR STABILITY ISSUES. THE SDK IS PROVIDED TO YOU \"AS IS,\" AND ADOBE AND ITS SUPPLIERS DISCLAIM ANY WARRANTY OR LIABILITY OBLIGATIONS TO YOU OF ANY KIND. YOU ACKNOWLEDGE THAT ADOBE MAKES NO EXPRESS, IMPLIED, OR STATUTORY WARRANTY OF ANY KIND WITH RESPECT TO THE SDK INCLUDING ANY WARRANTY WITH REGARD TO PERFORMANCE, MERCHANTABILITY, SATISFACTORY QUALITY, NONINFRINGEMENT OR FITNESS FOR ANY PARTICULAR PURPOSE. YOU BEAR THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SDK AND YOUR USE OF AND OUTPUT FROM THE SDK. Adobe is not obligated to provide maintenance, technical support or updates to you for any portion of the SDK. The foregoing limitations, exclusions and limitations shall apply to the maximum extent permitted by applicable law, even if any remedy fails its essential purpose.\n\n1.2 Limitation of Liability. IN NO EVENT WILL ADOBE OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY LOSSES, DAMAGES, CLAIMS OR COSTS WHATSOEVER INCLUDING ANY CONSEQUENTIAL, INDIRECT OR INCIDENTAL DAMAGES, ANY LOST PROFITS OR LOST SAVINGS, ANY DAMAGES RESULTING FROM BUSINESS INTERRUPTION, PERSONAL INJURY OR FAILURE TO MEET ANY DUTY OF CARE, OR CLAIMS BY A THIRD PARTY EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSSES, DAMAGES, CLAIMS OR COSTS. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION. ADOBE\u2019S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT PAID FOR THE SDK, IF ANY. THIS LIMITATION ON ADOBE AND ITS SUPPLIERS WILL APPLY EVEN IN THE EVENT OF A FUNDAMENTAL OR MATERIAL BREACH OR A BREACH OF THE FUNDAMENTAL OR MATERIAL TERMS OF THIS AGREEMENT. Nothing contained in this agreement limits Adobe\u2019s, or its suppliers, liability to you in the event of death or personal injury resulting from Adobe\u2019s negligence or for the tort of deceit (fraud). Adobe is acting on behalf of its suppliers for the purpose of disclaiming, excluding and limiting obligations, warranties and liability, but in no other respects and for no other purpose.\n\n1.3 Binding Agreement. This agreement governs installation and use of the SDK. You agree that this agreement is like any written negotiated agreement signed by you. By downloading, installing, copying, modifying or distributing all or any portion of the SDK, you accept all of the terms and conditions of this agreement. This agreement is enforceable against you and any legal entity that obtained the SDK and on whose behalf they are used: for example, your employer. If you do not agree to the terms of this agreement, do not use the SDK.\n\n1.4 Additional Terms and Agreements. You may have a separate written agreement with Adobe that supplements or supersedes all or portions of this agreement. Your use of some third party materials included in the SDK may be subject to other terms and conditions typically found in a separate license agreement or a \"Read Me\" file located near such materials or in the \"Third Party Software Notices and/or Additional Terms and Conditions\" found at www.adobe.com/go/thirdparty. Such other terms and conditions will supersede all or portions of this agreement in the event of a conflict with the terms and conditions of this agreement.\n\n2. DEFINITIONS.\n\"Adobe\" means Adobe Systems Incorporated, a Delaware corporation, 345 Park Avenue, San Jose, California 95110, if Section 14(a) of this agreement applies; otherwise it means Adobe Systems Software Ireland Limited, 4-6 Riverwalk, Citywest Business Campus, Dublin 24, Ireland, a company organized under the laws of Ireland and an affiliate and licensee of Adobe Systems Incorporated.\n\n\"Build Tools\" means build files, compilers, runtime libraries (but not the complete Runtime Software) accompanying this agreement, including, for example, the contents of the bin, lib, and runtime directories, adl.exe, adl.bat and adt.jar.\n\n\"Developer Application\" means your application software that complies with the requirements of this agreement, including Section 5.1, and that either (a) interoperates with the Runtime Software or (b) is an application produced from the Build Tools.\n\n\"Documentation\" means the written materials accompanying this agreement, including, for example, technical specifications, file format documentation and application programming interface (API) information.\n\n\"Effective Date\" means the date that you download or otherwise access the SDK.\n\n\"Material Improvement\" means perceptible, measurable and definable improvements that provide extended or additional significant and primary functionality that adds significant business value.\n\n\"Object Code Redistributables\" means those files in object code format located in the /runtimes/air-captivate/mac, /runtimes/air-captivate/win, lib/aot/lib, and /lib/android/lib/runtimeClasses.jar, and /runtimes/air/android/device/Runtime.apk folders, if included with the version of the SDK provided to you in connection with this agreement.\n\n\"Runtime Components\" means any of the individual files, libraries or executable code contained in the Runtime Software directory (e.g., the runtime folder) or the Runtime Software utilities included in the utilities directory or installer files. Adobe AIR.dll, runtime executables, template.exe and template.app are examples of Runtime Components.\n\n\"Runtime Software\" means the Adobe runtime software in object code format named \"Adobe AIR\" that is to be installed by end-users and all updates to such software made available by Adobe.\n\n\"SDK\" means the Build Tools, Documentation, Object Code Redistributables, Runtime Components, SDK Source Files and Sample Code.\n\n\"SDK Source Files\" means source code files included in the directory \"frameworks\" that accompany this agreement.\n\n\"Sample Code\" means sample software in source code format designated in the Documentation or directories as \"sample code,\" \"samples,\" \"sample application code,\" \"quickstart code\" or \"snippets.\"\n\n3. LICENSE.\nSubject to the terms and conditions of this agreement, including the requirements and restrictions below, Adobe grants you the non-exclusive, non-transferable right to use the SDK in accordance with the Documentation as follows:\n\n3.1 Installation, Use and Copying. You may install and use the Build Tools and Runtime Components solely for purpose of developing compliant Developer Applications. You may make a limited and reasonable number of copies of the SDK for purposes of your internal development of Developer Applications.\n\n3.2 Modification. You may modify the Sample Code and SDK Source Files provided to you in human readable (i.e., source code) format. You may incorporate the modified Sample Code and SDK Source Files into your Developer Applications. You may not modify the Build Tools (except for files that are covered by third party licenses that allow you to do so), Documentation or the Runtime Software in any manner. In no event may you take any action to make the SDK subject to a license or scheme in which there is or could be interpreted that, as a condition of use, modification and/or distribution, the SDK be (a) disclosed or distributed in source code form; (b) licensed for the purpose of making derivative works; or (c) redistributable at no charge. You may not delete or in any manner alter the copyright notices, trademarks, logos or related notices, or other proprietary rights notices of Adobe (and its licensors, if any) appearing on or within any portion of the SDK other than Sample Code or SDK Source Files that are substantially modified by you in accordance with this agreement.\n\n3.3 Distribution.\n\n(a) Distribution Rights. Subject to the provisions of this agreement, including the requirements and restrictions below, you may copy and distribute the Sample Code, SDK Source Files and Object Code Redistributables as follows:\n\n(i) Distribution with Developer Application. You may distribute (A) Sample Code and SDK Source Files in source code, object code, modified or unmodified form, in all cases incorporated into your Developer Application and (B) Object Code Redistributables only as incorporated automatically (i.e., incorporated solely as a byproduct of your use of the Build Tools) into a Developer Application for Mac, Windows, iOS, or Android platforms, by using the Object Code Redistributables in the /runtimes/air-captivate/mac, /runtimes/air-captivate/win, lib/aot/lib, and /lib/android/lib/runtimeClasses.jar, and /runtimes/air/android/device/Runtime.apk folders, respectively; and\n\n(ii) Distribution of Sample Code Stand-alone. You may distribute Sample Code (but not SDK Source Files) in source code or object code format on a stand-alone basis or as bundled with other software, as long as you first make modifications to such code that result in Material Improvements; and\n\n(iii) Distribution of SDK Source Files. You may distribute SDK Source Files (but not the Sample Code) in source code or object code format on a stand-alone basis or as bundled with other components useful to developers, as long as you first make modifications to such files that result in Material Improvements, and provided that you (A) include a copyright notice reflecting copyright ownership in such modified files, and (B) do not use \"mx,\" \"mxml,\" \"flex,\" \"flash,\" \"fl\" or \"adobe\" in any new package or class names distributed with the SDK Source Files.\n\n(iv) No Distribution of Build Tools. This agreement does not grant you the right to distribute the Build Tools (except for files that are covered by third party licenses that allow you to do so), Documentation or Runtime Software. In no event may you take any action to make the SDK subject to a license or scheme in which there is or could be interpreted that, as a condition of use, modification and/or distribution, the SDK be (A) disclosed or distributed in source code form; (B) licensed for the purpose of making derivative works; or (C) redistributable at no charge. For information about obtaining the right to distribute such components with your product or service, please refer to www.adobe.com/go/redistributeairsdk. \n\n(b) Distribution Requirements. If you distribute the Sample Code or SDK Source Files under this agreement, you must include a copyright notice in such code, files, the relevant Developer Application or other larger work incorporating such code or files. You may not (i) make any statement that any Developer Application or other software is \"certified\" or otherwise guaranteed by Adobe or (ii) use Adobe\u2019s name or trademarks to market any Developer Application or other software without written permission from Adobe. Adobe is not responsible to you or any other party for any software update or support or other liability that may arise from your distribution.\n\n3.4 Cross Promotion Program. At your option, you may participate in the Cross Promotion Program by completing the Program agreement which can be found at: www.adobe.com/products/air/crosspromotion-program-agreement.html, and implementing the related API.\n\n4. INDEMNIFICATION.\nYou agree to hold Adobe harmless from any and all liabilities, losses, actions, damages or claims (including product liability, warranty and intellectual property claims, and all reasonable expenses, costs and attorneys fees) arising out of or relating to your distribution of all or any portion of the SDK or any Developer Application; provided that Adobe cooperates with you, at your expense, in resolving any such claim.\n\n5. DEVELOPMENT REQUIREMENTS, RESTRICTIONS AND PRIVACY.\n5.1 Development. You shall not create or distribute any software, including any Developer Application that interoperates with individual Runtime Components in a manner not documented by Adobe. You shall not create or distribute any software, including any Developer Application that is designed to interoperate with an un-installed instance of the Runtime Software. You shall not create or distribute any Developer Application that runs without installation. You are not permitted to install or use the Build Tools or other portions of the SDK to develop software prohibited by this agreement. Failure to comply with this Section 5.1 is a breach of this agreement that immediately terminates all rights granted to you herein.\n\n5.2 Other Prohibitions. You will not use the SDK to create, develop or use any program, software or service that (a) contains any viruses, Trojan horses, worms, time bombs, cancelbots or other computer programming routines that are intended to damage, detrimentally interfere with, surreptitiously intercept or expropriate any system, data or personal information, (b) when used in the manner in which it is intended or marketed, violates any law, statute, ordinance, regulation or rights (including any laws, regulations or rights respecting intellectual property, computer spyware, privacy, export control, unfair competition, antidiscrimination or advertising), or (c) interferes with the operability of Adobe or third-party programs or software.\n\n5.3 AVC Codec Use. THIS PRODUCT IS LICENSED UNDER THE AVC PATENT PORTFOLIO LICENSE FOR THE PERSONAL NON-COMMERCIAL USE OF A CONSUMER TO (a) ENCODE VIDEO IN COMPLIANCE WITH THE AVC STANDARD (\"AVC VIDEO\") AND/OR (b) DECODE AVC VIDEO THAT WAS ENCODED BY A CONSUMER ENGAGED IN A PERSONAL NON-COMMERCIAL ACTIVITY AND/OR WAS OBTAINED FROM A VIDEO PROVIDER LICENSED TO PROVIDE AVC VIDEO. NO LICENSE IS GRANTED OR SHALL BE IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED FROM MPEG LA, L.L.C. SEE www.mpegla.com.\n\n5.4 MP3 Codec Use. You may not modify the runtime libraries or Build Tools. You may not access MP3 codecs within the runtime libraries other than through the published runtime APIs. Development, use or distribution of a Developer Application that operates on non-PC devices and that decodes MP3 data not contained within a SWF, FLV or other file format that contains more than MP3 data may require one or more third-party license(s).\n\n5.5 Privacy. You will comply with all data protection and privacy laws and rules applicable to the personal information of your end users. You will conspicuously post a privacy policy that tells users what personal data you are going to use and how you will use, display, share, or transfer that data. In addition, you will include your privacy policy URL conspicuously in the Developer Application, and you must also include a link to your app's privacy policy in any app marketplace that provides you with the functionality to do so. Adobe provides information about common privacy issues at www.adobe.com/go/air_developer_privacy.\n\n6. INTELLECTUAL PROPERTY RIGHTS.\nThe SDK and any copies that you are authorized by Adobe to make are the intellectual property of and are owned by Adobe Systems Incorporated and its suppliers. The structure, organization and code of the SDK provided to you in compiled or object code form are the valuable trade secrets and confidential information of Adobe Systems Incorporated and its suppliers. The SDK is protected by copyright, including by United States Copyright Law, international treaty provisions and applicable laws in the country in which they are used. Except as expressly stated herein, this agreement does not grant you any intellectual property rights in the SDK and all rights not expressly granted are reserved by Adobe.\n\n7. REVERSE ENGINEERING.\nYou will not reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of all or any portion of the SDK provided to you in compiled or object code format except to the extent you may be expressly permitted to decompile under applicable law.\n\n8. NON-BLOCKING OF ADOBE DEVELOPMENT.\nYou acknowledge that Adobe is currently developing or may develop technologies and products in the future that have or may have design and/or functionality similar to products that you may develop based on your license herein. Nothing in this agreement shall impair, limit or curtail Adobe\u2019s right to continue with its development, maintenance and/or distribution of Adobe\u2019s technology or products. You agree that you shall not assert in any way any patent owned by you arising out of or in connection with the SDK or modifications made thereto against Adobe, its subsidiaries or affiliates, or their customers, direct or indirect, agents and contractors for the manufacture, use, import, licensing, offer for sale or sale of any Adobe products.\n\n9. PRE-RELEASE SDK ADDITIONAL TERMS.\nIf the SDK or any of its components are pre-commercial release or beta software (\"Pre-release Software\"), then this section applies. The Pre-release Software is a pre-release version, does not represent final product from Adobe, and may contain bugs, errors and other problems that could cause system or other failures and data loss. Adobe may never commercially release the Pre-release Software. If you received the Pre-release Software pursuant to a separate written agreement, such as the Adobe Systems Incorporated License Agreement for PreRelease Software, your use of the Software is also governed by such agreement. You will return or destroy all copies of Pre-release Software upon request by Adobe or upon Adobe\u2019s commercial release of such Software. YOUR USE OF PRE-RELEASE SOFTWARE IS AT YOUR OWN RISK.\n\n10. TERM AND TERMINATION.\nThis agreement will commence upon the Effective Date and continue in perpetuity unless terminated as set forth herein. Adobe may terminate this agreement immediately if you breach any of its terms. Sections 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 and 15 will survive any termination of this agreement. Upon termination of this agreement, you will cease all use and distribution of the SDK and return to Adobe or destroy (with written confirmation of destruction) the SDK promptly at Adobe\u2019s request, together with any copies thereof.\n\n11. EXPORT RULES.\nYou acknowledge that the SDK is subject to the U.S. Export Administration Regulations (the \"EAR\") and that you will comply with the EAR. You will not export or re-export the SDK, or any portion hereof, directly or indirectly, to: (a) any countries that are subject to US export restrictions (currently including, but not necessarily limited to, Cuba, Iran, North Korea, Sudan and Syria); (b) any end user who you know or have reason to know will utilize them in the design, development or production of nuclear, chemical or biological weapons, or rocket systems, space launch vehicles, and sounding rockets, or unmanned air vehicle systems; or (c) any end user who has been prohibited from participating in the US export transactions by any federal agency of the US government. In addition, you are responsible for complying with any local laws in your jurisdiction which may impact your right to import, export or use the SDK.\n\n12. NOTICE TO U.S. GOVERNMENT END USERS.\nFor U.S. Government End Users, Adobe agrees to comply with all applicable equal opportunity laws including, if appropriate, the provisions of Executive Order 11246, as amended, Section 402 of the Vietnam Era Veterans Readjustment Assistance Act of 1974 (38 USC 4212), and Section 503 of the Rehabilitation Act of 1973, as amended, and the regulations at 41 CFR Parts 60-1 through 60-60, 60-250, and 60-741. The affirmative action clause and regulations contained in the preceding sentence is incorporated by reference in this agreement.\n\n13. TRADEMARK.\n\"Adobe\u00ae AIR\u00ae\" is a trademark of Adobe that may not be used by others except under a written license from Adobe. You may not incorporate the Adobe AIR trademark, or any other Adobe trademark, in whole or in part, in the title of your Developer Application or in your company name, domain name or the name of a service related to Adobe AIR. You may indicate the interoperability of your Developer Application with the Adobe AIR Runtime Software, if true, by stating, for example, \"works with Adobe\u00ae AIR\u00ae\" or \"for Adobe\u00ae AIR\u00ae.\" You may use the Adobe AIR trademark to refer to your Developer Application as an \"Adobe\u00ae AIR\u00ae application\" only as a statement that your Developer Application interoperates with the Adobe AIR Runtime Software.\n14. GOVERNING LAW.\nIf you are a consumer who uses the SDK for only personal non-business purposes, then this agreement will be governed by the laws of the state in which you purchased the license to use the SDK. If you are not such a consumer, this agreement will be governed by and construed in accordance with the substantive laws in force in: (a) the State of California, if a license to the SDK is obtained when you are in the United States, Canada or Mexico; or (b) Japan, if a license to the is obtained when you are in Japan, China, Korea or other Southeast Asian country where all official languages are written in either an ideographic script (e.g., Hanzi, Kanji, or Hanja), and/or other script based upon or similar in structure to an ideographic script, such as hangul or kana; or (c) England, if a license to the SDK is obtained when you are in any jurisdiction not described above. The respective courts of Santa Clara County, California when California law applies, Tokyo District Court in Japan, when Japanese law applies, and the competent courts of London, England, when the law of England applies, shall each have non-exclusive jurisdiction over all disputes relating to this agreement. This agreement will not be governed by the conflict of law rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded.\n\n15. GENERAL PROVISIONS.\nIf any part of this agreement is found void and unenforceable, it will not affect the validity of the balance of this agreement, which will remain valid and enforceable according to its terms. Updates may be licensed to you by Adobe with additional or different terms. The use of \"includes\" or \"including\" in this agreement shall mean \"including without limitation.\" This is the entire agreement between Adobe and you relating to the SDK and it supersedes any prior representations, discussions, undertakings, communications or advertising relating to the SDK.\n\nAdobeAIR_SDK License-en_US-20140814_0852", + "json": "adobe-air-sdk-2014.json", + "yaml": "adobe-air-sdk-2014.yml", + "html": "adobe-air-sdk-2014.html", + "license": "adobe-air-sdk-2014.LICENSE" + }, + { + "license_key": "adobe-color-profile-bundling", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-color-profile-bundling", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ADOBE SYSTEMS INCORPORATED COLOR PROFILE BUNDLING AGREEMENT\n\nNOTICE TO USER: PLEASE READ THIS CONTRACT CAREFULLY. BY USING ALL OR ANY PORTION OF THE SOFTWARE YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT. YOU AGREE THAT THIS AGREEMENT IS ENFORCEABLE LIKE ANY WRITTEN NEGOTIATED AGREEMENT SIGNED BY YOU. IF YOU DO NOT AGREE WITH THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE.\n\n1. DEFINITIONS. In this Agreement, \"Adobe\" means Adobe Systems Incorporated, a Delaware corporation, located at 345 Park Avenue, San Jose, California 95110. \"Software\" means the software and related items with which this Agreement is provided, as listed in Exhibit A.\n2. LICENSE. Subject to the terms of this Agreement, Adobe hereby grants you the worldwide, non-exclusive, nontransferable, royalty-free license to use, reproduce and publicly display the Software. Adobe also grants you the rights to distribute the Software: (a) on a standalone basis (b) as embedded within digital image files. (c) as embedded within hardware products that author digital images, where there is no End User access to the Software, and (d) as bundled with your own application software, provided that you comply with all the distribution requirements in Section 3 below. No other distribution of the Software is allowed. All individual profiles must be referenced by their ICC Profile description string. YOU MAY NOT MODIFY THE SOFTWARE. Adobe is under no obligation to provide any support under this Agreement, including upgrades or future versions of the Software or other items. No title to the intellectual property in the Software is transferred to you under the terms of this Agreement. You do not acquire any rights to the Software except as expressly set forth in this Agreement. Notwithstanding the above, if you are bundling with Linux or Unix software products, you may (a) add shortcut or menu items within your software that point to the Software, but may not change the name or iconography of the Software, (b) repackage the RPM or Gzip versions of the Software for distribution purposes, and (c) create a graphical user interface as otherwise specifically allowed by instructions found at www.adobe.com or http://partners.adobe.com (e.g., installation of additional plug-in and help files) but may not add, delete, or modify any components of the Software without the explicit written permission of Adobe.\n3. DISTRIBUTION. If you choose to distribute the Software, you do so with the understanding that you agree to defend, indemnify and hold harmless Adobe against any losses, damages or costs arising from any claims, lawsuits or other legal actions arising out of such distribution, including, without limitation, product liability and other claims by consumers and your failure to comply with this Section 3. If you distribute the Software on a standalone or bundled basis, you will do so by first obtaining the agreement of the end user under the terms of either the Adobe End User License Agreement (\u201cAdobe EULA\u201d), attached as Exhibit B, or your own license agreement which (a) complies with the terms and conditions of this Agreement; (b) effectively disclaims all warranties and conditions, express or implied, on behalf of Adobe; (c) effectively excludes all liability for damages on behalf of Adobe; (d) substantially states that any provisions that differ from this Agreement are offered by you alone and not Adobe; and (e) substantially states that the Software is available from you or Adobe and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. Any distributed Software will include the Adobe copyright notices as included in the Software provided to you by Adobe.\n4. DISCLAIMER OF WARRANTY. Adobe licenses the Software to you on an \"AS IS\" basis. Adobe makes no representation as to the adequacy of the Software for any particular purpose or to produce any particular result. Adobe shall not be liable for loss or damage arising out of this Agreement or from the distribution or use of the Software or any other materials. ADOBE AND ITS SUPPLIERS DO NOT AND CANNOT WARRANT THE PERFORMANCE OR RESULTS YOU MAY OBTAIN BY USING THE SOFTWARE, EXCEPT FOR ANY WARRANTY, CONDITION, REPRESENTATION OR TERM TO THE EXTENT TO WHICH THE SAME CANNOT OR MAY NOT BE EXCLUDED OR LIMITED BY LAW APPLICABLE TO YOU IN YOUR JURISDICTION, ADOBE AND ITS SUPPLIERS MAKE NO WARRANTIES, CONDITIONS, REPRESENTATIONS OR TERMS, EXPRESS OR IMPLIED, WHETHER BY STATUTE, COMMON LAW, CUSTOM, USAGE OR OTHERWISE AS TO ANY OTHER MATTERS, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT OF THIRD PARTY RIGHTS, INTEGRATION, SATISFACTORY QUALITY OR FITNESS FOR ANY PARTICULAR PURPOSE. YOU MAY HAVE ADDITIONAL RIGHTS WHICH VARY FROM JURISDICTION TO JURISDICTION. The provisions of Sections 4 and 5 shall survive the termination of this Agreement, howsoever caused, but this shall not imply or create any continued right to use the Software after termination of this Agreement.\n5. LIMITATION OF LIABILITY. IN NO EVENT WILL ADOBE OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY DAMAGES, CLAIMS OR COSTS WHATSOEVER OR ANY CONSEQUENTIAL, INDIRECT, INCIDENTAL DAMAGES, OR ANY LOST PROFITS OR LOST SAVINGS, EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS OR FOR ANY CLAIM BY ANY THIRD PARTY. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION. ADOBE'S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT PAID FOR THE SOFTWARE. Nothing contained in this Agreement limits Adobe's liability to you in the event of death or personal injury resulting from Adobe's negligence or for the tort of deceit (fraud). Adobe is acting on behalf of its suppliers for the purpose of disclaiming, excluding and/or limiting obligations, warranties and liability as provided in this Agreement, but in no other respects and for no other purpose.\n6. TRADEMARKS. Adobe grants you a worldwide, nonexclusive, nontransferable, personal right to use the \u201cAdobe\u201d word trademark (the \u201cTrademark\u201d) solely to identify Adobe as the source of the Adobe RGB (1998) product or Adobe RGB technology, so long as such use complies with the terms of this Agreement, the trademark guidelines available at the \u201cPermissions and trademarks\u201d pages of the Adobe web site (www.adobe.com) and the \u201cAdobe Trademark Guidelines for third parties who license, use or refer to Adobe trademarks,\u201d also available from the Adobe web site. You acknowledge the validity of the Trademark and Adobe\u2019s ownership of the Trademark. Nothing in this Agreement shall give you any right, title or interest in the Trademark, other than the license rights granted in this Agreement. You recognize the value of the goodwill associated with the Trademark and acknowledge that such goodwill exclusively inures to the benefit of and belongs to Adobe. Adobe and the Adobe logo are either registered trademarks or trademarks of Adobe in the United States and/or other countries. With the exception of referential use and the rights granted in this Agreement, you will not use such trademarks or any other Adobe trademark or logo without separate prior written permission from Adobe.\n7. TERM. This Agreement is effective until terminated. Adobe has the right to terminate this Agreement immediately if you fail to comply with any term hereof. Upon any such termination, you must return to Adobe all full and partial copies of the Software in your possession or control.\n8. GOVERNMENT REGULATIONS. If any part of the Software is identified as an export controlled item under the United States Export Administration Act or any other export law, restriction or regulation (the \"Export Laws\"), you represent and warrant that you are not a citizen, or otherwise located within, an embargoed nation (including without limitation Iran, Iraq, Syria, Sudan, Libya, Cuba, North Korea, and Serbia) and that you are not otherwise prohibited under the Export Laws from receiving the Software. All rights to use the Software are granted on condition that such rights are forfeited if you fail to comply with the terms of this Agreement.\n9. GOVERNING LAW. This Agreement will be governed by and construed in accordance with the substantive laws in force in the State of California as such laws are applied to agreements entered into and to be performed entirely within California between California residents. This Agreement will not be governed by the conflict of law rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. All disputes arising out of, under or related to this Agreement will be brought exclusively in the state Santa Clara County, California, USA.\n10. GENERAL. You may not assign your rights or obligations granted under this Agreement without the prior written consent of Adobe. None of the provisions of this Agreement shall be deemed to have been waived by any act or acquiescence on the part of Adobe, its agents, or employees, but only by an instrument in writing signed by an authorized signatory of Adobe. When conflicting language exists between this Agreement and any other agreement included in the Software, the terms of such included agreement shall apply. If either you or Adobe employs attorneys to enforce any rights arising out of or relating to this Agreement, the prevailing party shall be entitled to recover reasonable attorneys\u2019 fees. You acknowledge that you have read this Agreement, understand it, and that it is the complete and exclusive statement of your agreement with Adobe which supersedes any prior agreement, oral or written, between Adobe and you with respect to the licensing to you of the Software. No variation of the terms of this Agreement will be enforceable against Adobe unless Adobe gives its express consent, in writing, signed by an authorized signatory of Adobe.\n\nExhibit A\n\nThe \u201cSoftware\u201d for the purposes of this Agreement and which Licensee is permitted to distribute subject to the terms and conditions of this Agreement, shall consist of one or more of the following color profiles:\n8 RGB profiles\n\n Adobe RGB (1998)\n Apple RGB\n ColorMatch RGB\n SMPTE-C\n PAL/SECAM\n HDTV (Rec. 709)\n SDTV NTSC\n SDTV PAL\n\n14 CMYK profiles\n\n Coated FOGRA27 (ISO 12647-2:2004)\n Web Coated FOGRA28 (ISO 12647-2:2004)\n Uncoated FOGRA29 (ISO 12647-2:2004)\n Coated FOGRA39 (ISO 12647-2:2004)\n Japan Color 2001 Coated\n Japan Color 2001 Uncoated\n Japan Color 2002 Newspaper\n Japan Color 2003 Web Coated\n Japan Web Coated (Ad)\n Web Coated (SWOP) v2\n Web Uncoated v2 Coated\n GRACol 2006 (ISO 12647-2:2004)\n Web Coated SWOP Grade 3 Paper\n Web Coated SWOP Grade 5 Paper\n\nEXHIBIT B\n\nADOBE SYSTEMS INCORPORATED COLOR PROFILE LICENSE AGREEMENT NOTICE TO USER: PLEASE READ THIS CONTRACT CAREFULLY. BY USING ALL OR ANY PORTION OF THE SOFTWARE YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT. YOU AGREE THAT THIS AGREEMENT IS ENFORCEABLE LIKE ANY WRITTEN NEGOTIATED AGREEMENT SIGNED BY YOU. IF YOU DO NOT AGREE WITH THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE.\n\n1. DEFINITIONS In this Agreement, \"Adobe\" means Adobe Systems Incorporated, a Delaware corporation, located at 345 Park Avenue, San Jose, California 95110. \"Software\" means the software and related items with which this Agreement is provided.\n2. LICENSE Subject to the terms of this Agreement, Adobe hereby grants you the worldwide, non-exclusive, nontransferable, royalty-free license to use, reproduce and publicly display the Software. Adobe also grants you the rights to distribute the Software only (a) as embedded within digital image files and (b) on a standalone basis. No other distribution of the Software is allowed; including, without limitation, distribution of the Software when incorporated into or bundled with any application software. All individual profiles must be referenced by their ICC Profile description string. You may not modify the Software. Adobe is under no obligation to provide any support under this Agreement, including upgrades or future versions of the Software or other items. No title to the intellectual property in the Software is transferred to you under the terms of this Agreement. You do not acquire any rights to the Software except as expressly set forth in this Agreement.\n3. DISTRIBUTION If you choose to distribute the Software, you do so with the understanding that you agree to defend, indemnify and hold harmless Adobe against any losses, damages or costs arising from any claims, lawsuits or other legal actions arising out of such distribution, including without limitation, your failure to comply with this Section 3. If you distribute the Software on a standalone basis, you will do so under the terms of this Agreement or your own license agreement which (a) complies with the terms and conditions of this Agreement; (b) effectively disclaims all warranties and conditions, express or implied, on behalf of Adobe; (c) effectively excludes all liability for damages on behalf of Adobe; (d) substantially states that any provisions that differ from this Agreement are offered by you alone and not Adobe and (e) substantially states that the Software is available from you or Adobe and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. Any distributed Software will include the Adobe copyright notices as included in the Software provided to you by Adobe.\n4. DISCLAIMER OF WARRANTY Adobe licenses the Software to you on an \"AS IS\" basis. Adobe makes no representation as to the adequacy of the Software for any particular purpose or to produce any particular result. Adobe shall not be liable for loss or damage arising out of this Agreement or from the distribution or use of the Software or any other materials. ADOBE AND ITS SUPPLIERS DO NOT AND CANNOT WARRANT THE PERFORMANCE OR RESULTS YOU MAY OBTAIN BY USING THE SOFTWARE, EXCEPT FOR ANY WARRANTY, CONDITION, REPRESENTATION OR TERM TO THE EXTENT TO WHICH THE SAME CANNOT OR MAY NOT BE EXCLUDED OR LIMITED BY LAW APPLICABLE TO YOU IN YOUR JURISDICTION, ADOBE AND ITS SUPPLIERS MAKE NO WARRANTIES, CONDITIONS, REPRESENTATIONS OR TERMS, EXPRESS OR IMPLIED, WHETHER BY STATUTE, COMMON LAW, CUSTOM, USAGE OR OTHERWISE AS TO ANY OTHER MATTERS, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT OF THIRD PARTY RIGHTS, INTEGRATION, SATISFACTORY QUALITY OR FITNESS FOR ANY PARTICULAR PURPOSE. YOU MAY HAVE ADDITIONAL RIGHTS WHICH VARY FROM JURISDICTION TO JURISDICTION. The provisions of Sections 4 and 5 shall survive the termination of this Agreement, howsoever caused, but this shall not imply or create any continued right to use the Software after termination of this Agreement.\n5. LIMITATION OF LIABILITY IN NO EVENT WILL ADOBE OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY DAMAGES, CLAIMS OR COSTS WHATSOEVER OR ANY CONSEQUENTIAL, INDIRECT, INCIDENTAL DAMAGES, OR ANY LOST PROFITS OR LOST SAVINGS, EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS OR FOR ANY CLAIM BY ANY THIRD PARTY. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION. ADOBE'S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT PAID FOR THE SOFTWARE. Nothing contained in this Agreement limits Adobe's liability to you in the event of death or personal injury resulting from Adobe's negligence or for the tort of deceit (fraud). Adobe is acting on behalf of its suppliers for the purpose of disclaiming, excluding and/or limiting obligations, warranties and liability as provided in this Agreement, but in no other respects and for no other purpose.\n6. TRADEMARKS Adobe grants you a worldwide, nonexclusive, nontransferable, personal right to use the \u201cAdobe\u201d word trademark (the \u201cTrademark\u201d) solely to identify Adobe as the source of the Adobe RGB (1998) product or Adobe RGB technology, so long as such use complies with the terms of this Agreement, the trademark guidelines available at the \u201cPermissions and trademarks\u201d pages of the Adobe web site (www.adobe.com) and the \u201cAdobe Trademark Guidelines for third parties who license, use or refer to Adobe trademarks,\u201d also available from the Adobe web site. You acknowledge the validity of the Trademark and Adobe\u2019s ownership of the Trademark. Nothing in this Agreement shall give you any right, title or interest in the Trademark, other than the license rights granted in this Agreement. You recognize the value of the goodwill associated with the Trademark and acknowledge that such goodwill exclusively inures to the benefit of and belongs to Adobe. Adobe and the Adobe logo are either registered trademarks or trademarks of Adobe in the United States and/or other countries. With the exception of referential use and the rights granted in this Agreement, you will not use such trademarks or any other Adobe trademark or logo without separate prior written permission granted by Adobe.\n7. TERM This Agreement is effective until terminated. Adobe has the right to terminate this Agreement immediately if you fail to comply with any term hereof. Upon any such termination, you must return to Adobe all full and partial copies of the Software in your possession or control.\n8. GOVERNMENT REGULATIONS If any part of the Software is identified as an export controlled item under the United States Export Administration Act or any other export law, restriction or regulation (the \"Export Laws\"), you represent and warrant that you are not a citizen, or otherwise located within, an embargoed nation (including without limitation Iran, Iraq, Syria, Sudan, Libya, Cuba, North Korea, and Serbia) and that you are not otherwise prohibited under the Export Laws from receiving the Software. All rights to use the Software are granted on condition that such rights are forfeited if you fail to comply with the terms of this Agreement.\n9. GOVERNING LAW This Agreement will be governed by and construed in accordance with the substantive laws in force in the State of California as such laws are applied to agreements entered into and to be performed entirely within California between California residents. This Agreement will not be governed by the conflict of law rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. All disputes arising out of, under or related to this Agreement will be brought exclusively in the state Santa Clara County, California, USA.\n10. GENERAL You may not assign your rights or obligations granted under this Agreement without the prior written consent of Adobe. None of the provisions of this Agreement shall be deemed to have been waived by any act or acquiescence on the part of Adobe, its agents, or employees, but only by an instrument in writing signed by an authorized signatory of Adobe. When conflicting language exists between this Agreement and any other agreement included in the Software, the terms of such included agreement shall apply. If either you or Adobe employs attorneys to enforce any rights arising out of or relating to this Agreement, the prevailing party shall be entitled to recover reasonable attorneys\u2019 fees. You acknowledge that you have read this Agreement, understand it, and that it is the complete and exclusive statement of your agreement with Adobe which supersedes any prior agreement, oral or written, between Adobe and you with respect to the licensing to you of the Software. No variation of the terms of this Agreement will be enforceable against Adobe unless Adobe gives its express consent, in writing, signed by an authorized signatory of Adobe.", + "json": "adobe-color-profile-bundling.json", + "yaml": "adobe-color-profile-bundling.yml", + "html": "adobe-color-profile-bundling.html", + "license": "adobe-color-profile-bundling.LICENSE" + }, + { + "license_key": "adobe-color-profile-license", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-color-profile-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Color Profile License agreement\n\nNOTICE TO USER: PLEASE READ THIS CONTRACT CAREFULLY. BY USING ALL OR ANY PORTION OF THE SOFTWARE, YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE WITH THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE.\n\n1. DEFINITIONS In this Agreement, \"Adobe\" means Adobe Systems Incorporated, a Delaware corporation, located at 345 Park Avenue, San Jose, California 95110. \"Software\" means the software and related items with which this Agreement is provided.\n\n2. LICENSE Subject to the terms of this Agreement, Adobe hereby grants you the worldwide, non-exclusive, nontransferable, royalty-free license to use, reproduce, and publicly display the Software. Adobe also grants you the rights to distribute the Software only (a) as embedded within digital image files and (b) on a standalone basis. No other distribution of the Software is allowed; including, without limitation, distribution of the Software when incorporated into or bundled with any application software. You may not modify the Software. Adobe is under no obligation to provide any support under this Agreement, including upgrades or future versions of the Software or other items. No title to the intellectual property in the Software is transferred to you under the terms of this Agreement. You do not acquire any rights to the Software except as expressly set forth in this Agreement.\n\n3. DISTRIBUTION If you choose to distribute the Software, you do so with the understanding that you agree to defend, indemnify, and hold harmless Adobe against any losses, damages, or costs arising from any claims, lawsuits, or other legal actions arising out of such distribution, including, without limitation, your failure to comply with this Section. If you distribute the Software on a standalone basis, you will do so under the terms of this Agreement or your own license agreement which (a) complies with the terms and conditions of this Agreement; (b) effectively disclaims all warranties and conditions, express or implied, on behalf of Adobe; (c) effectively excludes all liability for damages on behalf of Adobe; (d) states that any provisions that differ from this Agreement are offered by you alone and not Adobe; and (e) states that the Software is available from you or Adobe and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. Any distributed Software will include the Adobe copyright notices as included in the Software provided to you by Adobe.\n\n4. DISCLAIMER OF WARRANTY Adobe licenses the Software to you on an \"AS IS\" basis. Adobe makes no representation as to the adequacy of the Software for any particular purpose or to produce any particular result. Adobe shall not be liable for loss or damage arising out of this Agreement or from the distribution or use of the Software or any other materials. ADOBE AND ITS SUPPLIERS DO NOT AND CANNOT WARRANT THE PERFORMANCE OR RESULTS YOU MAY OBTAIN BY USING THE SOFTWARE, EXCEPT FOR ANY WARRANTY, CONDITION, REPRESENTATION, OR TERM TO THE EXTENT TO WHICH THE SAME CANNOT OR MAY NOT BE EXCLUDED OR LIMITED BY LAW APPLICABLE TO YOU IN YOUR JURISDICTION, ADOBE AND ITS SUPPLIERS MAKE NO WARRANTIES, CONDITIONS, REPRESENTATIONS OR TERMS, EXPRESS OR IMPLIED, WHETHER BY STATUTE, COMMON LAW, CUSTOM, USAGE OR OTHERWISE AS TO ANY OTHER MATTERS, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT OF THIRD PARTY RIGHTS, INTEGRATION, SATISFACTORY QUALITY, OR FITNESS FOR ANY PARTICULAR PURPOSE. YOU MAY HAVE ADDITIONAL RIGHTS WHICH VARY FROM JURISDICTION TO JURISDICTION. The provisions of Sections 4, 5, and 6 shall survive the termination of this Agreement, howsoever caused, but this shall not imply or create any continued right to use the Software after termination of this Agreement.\n\n5. LIMITATION OF LIABILITY IN NO EVENT WILL ADOBE OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY DAMAGES, CLAIMS, OR COSTS WHATSOEVER OR ANY CONSEQUENTIAL, INDIRECT, INCIDENTAL DAMAGES, OR ANY LOST PROFITS OR LOST SAVINGS, EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS OR FOR ANY CLAIM BY ANY THIRD PARTY. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION. ADOBE'S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT PAID FOR THE SOFTWARE. Nothing contained in this Agreement limits Adobe's liability to you in the event of death or personal injury resulting from Adobe's negligence or for the tort of deceit (fraud). Adobe is acting on behalf of its suppliers for the purpose of disclaiming, excluding, and/or limiting obligations, warranties, and liability as provided in this Agreement, but in no other respects and for no other purpose.\n\n6. TRADEMARKS Adobe and the Adobe logo are the registered trademarks or trademarks of Adobe in the United States and other countries. You will not use such trademarks or any other Adobe trademark or logo without separate prior written permission granted by Adobe.\n\n7. TERM This Agreement is effective until terminated. Adobe has the right to terminate this Agreement immediately if you fail to comply with any term hereof. Upon any such termination, you must return to Adobe all full and partial copies of the Software in your possession or control.\n\n8. GOVERNMENT REGULATIONS If any part of the Software is identified as an export controlled item under the United States Export Administration Act or any other export law, restriction or regulation (the \"Export Laws\"), you represent and warrant that you are not a citizen, or otherwise located within, an embargoed nation (including without limitation Iran, Iraq, Syria, Sudan, Libya, Cuba, North Korea, and Serbia) and that you are not otherwise prohibited under the Export Laws from receiving the Software. All rights to use the Software are granted on condition that such rights are forfeited if you fail to comply with the terms of this Agreement.\n\n9. GOVERNING LAW This Agreement will be governed by and construed in accordance with the substantive laws in force in the State of California as such laws are applied to agreements entered into and to be performed entirely within California between California residents. This Agreement will not be governed by the conflict of law rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. All disputes arising out of, under, or related to this Agreement will be brought exclusively in the state or federal courts located in Santa Clara County, California, USA.\n\n10. GENERAL You may not assign your rights or obligations granted under this Agreement without the prior written consent of Adobe. None of the provisions of this Agreement shall be deemed to have been waived by any act or acquiescence on the part of Adobe, its agents, or employees, but only by an instrument in writing signed by an authorized signatory of Adobe. When conflicting language exists between this Agreement and any other agreement included in the Software, the terms of such included agreement shall apply. If either you or Adobe employs attorneys to enforce any rights arising out of or relating to this Agreement, the prevailing party shall be entitled to recover reasonable attorney fees. You acknowledge that you have read this Agreement, understand it, and that it is the complete and exclusive statement of your agreement with Adobe which supersedes any prior agreement, oral or written, between Adobe and you with respect to the licensing to you of the Software. No variation of the terms of this Agreement will be enforceable against Adobe unless Adobe gives its express consent, in writing, signed by an authorized signatory of Adobe.", + "json": "adobe-color-profile-license.json", + "yaml": "adobe-color-profile-license.yml", + "html": "adobe-color-profile-license.html", + "license": "adobe-color-profile-license.LICENSE" + }, + { + "license_key": "adobe-dng-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-dng-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "DNG SDK License Agreement\n\nNOTICE TO USER:\nAdobe Systems Incorporated provides the Software and Documentation for use under the terms of this Agreement. Any download, installation, use, reproduction, modification or distribution of the Software or Documentation, or any derivatives or portions thereof, constitutes your acceptance of this Agreement.\n\nAs used in this Agreement, \"Adobe\" means Adobe Systems Incorporated. \"Software\" means the software code, in any format, including sample code and source code, accompanying this Agreement. \"Documentation\" means the documents, specifications and all other items accompanying this Agreement other than the Software.\n\n1. LICENSE GRANT\nSoftware License. Subject to the restrictions below and other terms of this Agreement, Adobe hereby grants you a non-exclusive, worldwide, royalty free license to use, reproduce, prepare derivative works from, publicly display, publicly perform, distribute and sublicense the Software for any purpose.\n\nDocument License. Subject to the terms of this Agreement, Adobe hereby grants you a non-exclusive, worldwide, royalty free license to make a limited number of copies of the Documentation for your development purposes and to publicly display, publicly perform and distribute such copies. You may not modify the Documentation.\n\n2. RESTRICTIONS AND OWNERSHIP\nYou will not remove any copyright or other notice included in the Software or Documentation and you will include such notices in any copies of the Software that you distribute in human-readable format.\n\nYou will not copy, use, display, modify or distribute the Software or Documentation in any manner not permitted by this Agreement. No title to the intellectual property in the Software or Documentation is transferred to you under the terms of this Agreement. You do not acquire any rights to the Software or the Documentation except as expressly set forth in this Agreement. All rights not granted are reserved by Adobe.\n\n3. DISCLAIMER OF WARRANTY\nADOBE PROVIDES THE SOFTWARE AND DOCUMENTATION ONLY 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. ADOBE MAKES NO WARRANTY THAT THE SOFTWARE OR DOCUMENTATION WILL BE ERROR-FREE. To the extent permissible, any warranties that are not and cannot be excluded by the foregoing are limited to ninety (90) days.\n\n4. LIMITATION OF LIABILITY\nADOBE AND ITS SUPPLIERS SHALL NOT BE LIABLE FOR LOSS OR DAMAGE ARISING OUT OF THIS AGREEMENT OR FROM THE USE OF THE SOFTWARE OR DOCUMENTATION. IN NO EVENT WILL ADOBE BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, INCIDENTAL, OR SPECIAL DAMAGES INCLUDING LOST PROFITS, LOST SAVINGS, COSTS, FEES, OR EXPENSES OF ANY KIND ARISING OUT OF ANY PROVISION OF THIS AGREEMENT OR THE USE OR THE INABILITY TO USE THE SOFTWARE OR DOCUMENTATION, HOWEVER CAUSED AND UNDER ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE), EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ADOBE'S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT PAID BY YOU FOR THE SOFTWARE AND DOCUMENTATION.\n\n5. INDEMNIFICATION\nIf you choose to distribute the Software in a commercial product, you do so with the understanding that you agree to defend, indemnify and hold harmless Adobe against any losses, damages and costs arising from the claims, lawsuits or other legal actions arising out of such distribution.\n\n6. TRADEMARK USAGE\nAdobe and the DNG logo are the trademarks or registered trademarks of Adobe Systems Incorporated in the United States and other countries. Such trademarks may not be used to endorse or promote any product unless expressly permitted under separate agreement with Adobe. For information on how to license the DNG logo please go to www.adobe.com.\n\n7. TERM\nYour rights under this Agreement shall terminate if you fail to comply with any of the material terms or conditions of this Agreement. If all your rights under this Agreement terminate, you will immediately cease use and distribution of the Software and Documentation.\n\n8. GOVERNING LAW AND JURISDICTION. This Agreement is governed by the statutes and laws of the State of California, without regard to the conflicts of law principles thereof. The federal and state courts located in Santa Clara County, California, USA, will have non-exclusive jurisdiction over any dispute arising out of this Agreement.\n\n9. GENERAL\nThis Agreement supersedes any prior agreement, oral or written, between Adobe and you with respect to the licensing to you of the Software and Documentation. No variation of the terms of this Agreement will be enforceable against Adobe unless Adobe gives its express consent in writing signed by an authorized signatory of Adobe. If any part of this Agreement is found void and unenforceable, it will not affect the validity of the balance of the Agreement, which shall remain valid and enforceable according to its terms.\n\nFor licensing information on the DNG File Format Specification, which is not included in the DNG SDK, please visit: http://www.adobe.com/products/dng/license.html.", + "json": "adobe-dng-sdk.json", + "yaml": "adobe-dng-sdk.yml", + "html": "adobe-dng-sdk.html", + "license": "adobe-dng-sdk.LICENSE" + }, + { + "license_key": "adobe-dng-spec-patent", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-adobe-dng-spec-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "DNG Specification patent license\n\nDigital Negative (DNG) Specification patent license\n\nAdobe is the publisher of the Digital Negative (DNG) Specification describing an image file format for storing camera raw information used in a wide range of hardware and software. Adobe provides the DNG Specification to the public for the purpose of encouraging implementation of this file format in a compliant manner. This document is a patent license granted by Adobe to individuals and organizations that desire to develop, market, and/or distribute hardware and software that reads and/or writes image files compliant with the DNG Specification.\n\nGrant of rights\n\nSubject to the terms below and solely to permit the reading and writing of image files that comply with the DNG Specification, Adobe hereby grants all individuals and organizations the worldwide, royalty-free, nontransferable, nonexclusive right under all Essential Claims to make, have made, use, sell, import, and distribute Compliant Implementations.\n\n\u201cCompliant Implementation\u201d means a portion of a software or hardware product that reads or writes computer files compliant with the DNG Specification.\n\n\u201cDNG Specification\u201d means any version of the Adobe DNG Specification made publicly available by Adobe (for example, version 1.0.0.0 dated September 2004).\n\n\u201cEssential Claim\u201d means a claim of a patent, whenever and wherever issued, that Adobe has the right to license without payment of royalty or other fee that is unavoidably infringed by implementation of the DNG Specification. A claim is unavoidably infringed by the DNG Specification only when it is not possible to avoid infringing when conforming with such specification because there is no technically possible noninfringing alternative for achieving such conformity. Essential Claim does not include a claim that is infringed by implementation of (a) enabling technology that may be necessary to make or use any product or portion thereof that complies with the DNG Specification but is not itself expressly set forth in the DNG Specification (for example, compiler technology and basic operating system technology), (b) technology developed elsewhere and merely incorporated by reference in the DNG Specification, or (c) the implementation of file formats other than DNG.\n\nRevocation\n\nAdobe may revoke the rights granted above to any individual or organizational licensee in the event that such licensee or its affiliates brings any patent action against Adobe or its affiliates related to the reading or writing of files that comply with the DNG Specification.\n\nAny Compliant Implementation distributed under this license must include the following notice displayed in a prominent manner within its source code and documentation: \"This product includes DNG technology under license by Adobe.\u201d\n\nNo warranty\n\nThe rights granted herein are provided on an as-is basis without warranty of any kind, including warranty of title or noninfringement. Nothing in this license shall be construed as (a) requiring the maintenance of any patent, (b) a warranty or representation as to the validity or scope of any patent, (c) a warranty or representation that any product or service will be free from infringement of any patent, (d) an agreement to bring or prosecute actions against any infringers of any patent, or (e) conferring any right or license under any patent claim other than Essential Claims.\n\nReservation of rights\n\nAll rights not expressly granted herein are reserved.", + "json": "adobe-dng-spec-patent.json", + "yaml": "adobe-dng-spec-patent.yml", + "html": "adobe-dng-spec-patent.html", + "license": "adobe-dng-spec-patent.LICENSE" + }, + { + "license_key": "adobe-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-adobe-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Patents pending in the United States and \nother countries. Adobe and Flash are either trademarks or registered \ntrademarks in the United States and/or other countries.\n\nAdobe End User License Agreement\n\nhttp://www.adobe.com/products/eulas/", + "json": "adobe-eula.json", + "yaml": "adobe-eula.yml", + "html": "adobe-eula.html", + "license": "adobe-eula.LICENSE" + }, + { + "license_key": "adobe-flash-player-eula-21.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-flash-player-eula-21.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ADOBE\nPersonal Computer Software License Agreement\n\n1. WARRANTY DISCLAIMER, BINDING AGREEMENT AND ADDITIONAL TERMS AND AGREEMENTS.\n1.1 WARRANTY DISCLAIMER. THE SOFTWARE AND OTHER INFORMATION IS DELIVERED TO YOU\n\"AS IS\" AND WITH ALL FAULTS. ADOBE, ITS SUPPLIERS AND CERTIFICATION AUTHORITIES DO NOT\nAND CANNOT WARRANT THE PERFORMANCE OR RESULTS YOU MAY OBTAIN BY USING THE\nSOFTWARE, CERTIFICATE AUTHORITY SERVICES OR OTHER THIRD PARTY OFFERINGS. EXCEPT TO\nTHE EXTENT ANY WARRANTY, CONDITION, REPRESENTATION, OR TERM CANNOT OR MAY NOT BE\nEXCLUDED OR LIMITED BY LAW APPLICABLE TO YOU IN YOUR JURISDICTION, ADOBE AND ITS\nSUPPLIERS AND CERTIFICATION AUTHORITIES MAKE NO WARRANTIES CONDITIONS,\nREPRESENTATIONS, OR TERMS (EXPRESS OR IMPLIED WHETHER BY STATUTE, COMMON LAW,\nCUSTOM, USAGE OR OTHERWISE) AS TO ANY MATTER INCLUDING WITHOUT LIMITATION\nNONINFRINGEMENT OF THIRD PARTY RIGHTS, MERCHANTABILITY, INTEGRATION, SATISFACTORY\nQUALITY, OR FITNESS FOR ANY PARTICULAR PURPOSE. THE PROVISIONS OF SECTIONS 1.1 AND 10\nSHALL SURVIVE THE TERMINATION OF THIS AGREEMENT, HOWSOEVER CAUSED, BUT THIS SHALL\nNOT IMPLY OR CREATE ANY CONTINUED RIGHT TO USE THE SOFTWARE AFTER TERMINATION OF\nTHIS AGREEMENT.\n\n1.2 BINDING AGREEMENT: By using, copying or distributing all or any portion of the Adobe\nSoftware, you accept all the terms and conditions of this agreement, including, in particular, the\nprovisions on:\n- Use (Section 3);\n- Transferability (Section 5);\n- Connectivity and Privacy (Section 7), including:\n - Updating,\n - Local Storage,\n - Settings Manager,\n - Peer Assisted Networking Technology,\n - Content Protection Technology, and\n - Use of Adobe Online Services;\n- Warranty Disclaimer (Section 1.1), and;\n- Liability Limitations (Sections 10 and 17).\nUpon acceptance, this agreement is enforceable against you and any entity that obtained the\nSoftware and on whose behalf it is used. If you do not agree, do not Use the Software.\n\n1.3 ADDITIONAL TERMS AND AGREEMENTS. Adobe permits you to Use the Software only in\naccordance with the terms of this agreement. Use of some third party materials included in the\nSoftware may be subject to other terms and conditions typically found in a separate license\nagreement, a \"Read Me\" file located near such materials or in the \"Third Party Software Notices\nand/or Additional Terms and Conditions\" found at http://www.adobe.com/go/thirdparty. Such other\nterms and conditions will supersede all or portions of this agreement in the event of a conflict with\nthe terms and conditions of this agreement.\n\n2. Definitions.\n\"Adobe\" means Adobe Systems Incorporated, a Delaware corporation, 345 Park Avenue, San Jose,\nCalifornia 95110, if subsection 12(a) of this agreement applies; otherwise it means Adobe Systems\nSoftware Ireland Limited, 4-6 Riverwalk, Citywest Business Campus, Dublin 24, Ireland, a company\norganized under the laws of Ireland and an affiliate and licensee of Adobe Systems Incorporated. \n\"Compatible Computer\" means a Computer that conforms to the system requirements of the Software\nas specified in the Documentation.\n\"Computer\" means a virtual machine or physical personal electronic device that accepts information in\ndigital or similar form and manipulates it for a specific result based on a sequence of instructions.\n\"Personal Computer\" or \"PC\" shall mean a hardware product which is designed and marketed with the\nprimary purpose of operating a wide variety of productivity, entertainment, and other software\napplications provided by unrelated third party software vendors, which operates depending upon the\nuse of a full function and full feature set computer operating system of the type(s) then in widespread\nuse with hardware to operate general purpose laptop, desktop, server, and large format tablet\nmicroprocessor based computers. This definition of Personal Computer shall exclude hardware\nproducts that are designed and/or marketed to have as their primary purpose any number of the\nfollowing: television, television receiver, portable media player, audio/video receiver, radio, audio\nheadphone, audio speaker, personal digital assistant (\"PDA\"), telephone or similar telephony based\ndevice, game console, personal video recorder (\"PVR\"), player for digital versatile disc (\"DVD\") or other\noptical media, video camera, still camera, camcorder, video editing and format conversion device, video\nimage projection device, and shall further exclude any similar type of consumer, professional or\nindustrial device.\n\"Software\" means (a) all of the contents of the files (delivered electronically or on physical media), or\ndisk(s) or other media with which this agreement is provided, which may include (i) Adobe or third\nparty computer information or software, including Adobe Reader\u00ae (\"Adobe Reader\"), Adobe\u00ae AIR\u00ae\n(\"Adobe AIR\"), Adobe Flash\u00ae Player, Shockwave\u00ae Player and Authorware\u00ae Player (collectively, Adobe AIR\nand the Flash, Shockwave and Authorware players are the \"Adobe Runtimes\"); (ii) related explanatory\nwritten materials or files (\"Documentation\"); and (iii) fonts; and (b) upgrades, modified versions,\nupdates, additions, and copies of the foregoing, provided to you by Adobe at any time (collectively,\n\"Updates\").\n\"Use\" means to access, install, download, copy, or otherwise benefit from using the functionality of the\nSoftware.\n\n3. Software License.\nIf you obtained the Software from Adobe or one of its authorized licensees, and subject to your\ncompliance with the terms of this agreement, including the restrictions in Section 4, Adobe grants to\nyou a non-exclusive license to Use the Software in the manner and for the purposes described in the\nDocumentation as follows:\n\n3.1 General Use. You may install and Use one copy of the Software on your Compatible Computer. See\nSection 4 for important restrictions on the Use of the Software.\n\n3.2 Server Use. This agreement does not permit you to install or Use the Software on a computer file\nserver. For information on Use of Software on a computer file server please refer to\nhttp://www.adobe.com/go/acrobat_distribute for information about Adobe Reader; or\nhttp://www.adobe.com/go/licensing for information about the Adobe Runtimes.\n\n3.3 Distribution. This license does not grant you the right to sublicense or distribute the Software. For\ninformation about obtaining the right to distribute the Software on tangible media or through an\ninternal network or with your product or service please refer to\nhttp://www.adobe.com/go/acrobat_distribute for information about Adobe Reader; or\nhttp://www.adobe.com/go/licensing for information about the Adobe Runtimes.\n\n3.4 Backup Copy. You may make one backup copy of the Software, provided your backup copy is not\ninstalled or used other than for archival purposes. You may not transfer the rights to a backup copy\nunless you transfer all rights in the Software as provided under Section 5. \n\n4. Obligations and Restrictions.\n\n4.1 Adobe Runtime Restrictions. You will not Use any Adobe Runtime on any non-PC device or with any\nembedded or device version of any operating system. For the avoidance of doubt, and by example only,\nyou may not Use an Adobe Runtime on any (a) mobile device, set top box (STB), handheld, phone,\ngame console, TV, DVD player, media center (other than with Windows XP Media Center Edition and its\nsuccessors), electronic billboard or other digital signage, Internet appliance or other Internet-connected\ndevice, PDA, medical device, ATM, telematic device, gaming machine, home automation system, kiosk,\nremote control device, or any other consumer electronics device, (b) operator-based mobile, cable,\nsatellite, or television system or (c) other closed system device. No right or license to Use any Adobe\nRuntime is granted for such prohibited uses. For information on Software license terms for non-PC\nversions of Adobe Runtimes please visit http://www.adobe.com/go/runtime_mobile_EULA. For\ninformation on licensing Adobe Runtimes for distribution on such systems please visit\nhttp://www.adobe.com/go/licensing.\n\n4.1.1 AVC Video Restrictions. The Software may contain H.264/AVC video technology, the use of which\nrequires the following notice from MPEG-LA, L.L.C.:\nTHIS SOFTWARE IS LICENSED UNDER THE AVC PATENT PORTFOLIO LICENSE FOR THE PERSONAL\nAND NON-COMMERCIAL USE OF A CONSUMER TO (I) ENCODE VIDEO IN COMPLIANCE WITH THE\nAVC STANDARD (\"AVC VIDEO\") AND/OR (II) DECODE AVC VIDEO THAT WAS ENCODED BY A\nCONSUMER ENGAGED IN A PERSONAL AND NON-COMMERCIAL ACTIVITY AND/OR WAS OBTAINED\nFROM A VIDEO PROVIDER LICENSED TO PROVIDE AVC VIDEO. NO LICENSE IS GRANTED OR SHALL\nBE IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED FROM MPEG LA,\nL.L.C. SEE http://www.adobe.com/go/mpegla.\n\n4.1.2 H.264/AVC Software Encoding. The H.264/AVC software encoding functionality available in the\nAdobe Runtimes is licensed solely for personal, non-commercial use. For more information on\nobtaining the right to use the H.264/AVC software encoding functionality for commercial purposes,\nplease refer to http://www.adobe.com/go/licensing.\n\n4.2 Adobe Flash Player Restrictions. You will not use Adobe Flash Player with any application or device\nthat circumvents technological measures for the protection of video, audio, and/or data content,\nincluding any of Adobe\u2019s secure RTMP measures. No right or license to use Adobe Flash Player is\ngranted for such prohibited uses.\n\n4.3 Adobe Reader Restrictions.\n\n4.3.1 Conversion Restrictions. You will not integrate or use Adobe Reader with any other software, plugin\nor enhancement that uses or relies upon Adobe Reader when converting or transforming PDF files\ninto a different format (e.g., a PDF file into a TIFF, JPEG, or SVG file).\n\n4.3.2 Plug-in Restrictions. You will not integrate or use Adobe Reader with any plug-in software not\ndeveloped in accordance with the Adobe Integration Key License Agreement, more information can be\nfound at http://www.adobe.com/go/rikla_program.\n\n4.3.3 Disabled Features. Adobe Reader may contain features or functionalities that are hidden or appear\ndisabled or \"grayed out\" (the \"Disabled Features\"). Disabled Features will activate only when opening a\nPDF document that was created using enabling technology available only from Adobe. You will not\naccess, or attempt to access, any Disabled Features other than through the use of such enabling\ntechnologies, nor will you rely on Adobe Reader to create a feature substantially similar to any Disabled\nFeature or otherwise circumvent the technology that controls activation of any such feature. For more\ninformation on disabled features, please refer to http://www.adobe.com/go/readerextensions.\n\n4.4 Notices. You shall not alter or remove any copyright or other proprietary notice that appears on or\nin the Software. \n\n4.5 No Modification or Reverse Engineering. You shall not modify, adapt, translate, or create derivative\nworks based upon the Software. You shall not reverse engineer, decompile, disassemble, or otherwise\nattempt to discover the source code of the Software. If you are located in the European Union, please\nrefer to the additional terms at the end of this agreement under the header \"European Union\nProvisions,\" in Section 16.\n\n5. Transfer.\nYou may not rent, lease, sublicense, assign, or transfer your rights in the Software, or authorize all or any\nportion of the Software to be copied onto another user\u2019s Computer except as may be expressly\npermitted by this agreement. You may, however, transfer all your rights to Use the Software to another\nperson or legal entity provided that: (a) you also transfer (i) this agreement, and (ii) the Software and all\nother software or hardware bundled or pre-installed with the Software, including all copies, Updates,\nand prior versions, to such person or entity, (b) you retain no copies, including backups and copies\nstored on a Computer, and (c) the receiving party accepts the terms and conditions of this agreement\nand any other terms and conditions upon which you obtained a valid license to the Software.\nNotwithstanding the foregoing, you may not transfer education, pre-release, or not for resale copies of\nthe Software.\n\n6. Intellectual Property Ownership, Reservation of Rights.\nThe Software and any authorized copies that you make are the intellectual property of Adobe and its\nsuppliers. The structure, organization, and code of the Software are the valuable intellectually property\n(e.g. trade secrets and confidential information) of Adobe and its suppliers. The Software is protected by\nlaw, including without limitation the copyright laws of the United States and other countries, and by\ninternational treaty provisions. Except as expressly stated herein, this agreement does not grant you any\nintellectual property rights in the Software and all rights not expressly granted are reserved by Adobe\nand its suppliers.\n\n7. Connectivity and Privacy. You acknowledge and agree to the following:\n\n7.1 Use of PDF Files. When you Use the Software to open a PDF file that has been enabled to display\nads, your Computer may connect to a website operated by Adobe, an advertiser, or other third party.\nYour Internet Protocol address (\"IP Address\") is sent when this happens. The party hosting the site may\nuse technology to send (or \"serve\") advertising or other electronic content that appears in or near the\nopened PDF file. The website operator may also use JavaScript, web beacons (also known as action tags\nor single-pixel gifs), and other technologies to increase and measure the effectiveness of advertisements\nand to personalize advertising content. Your communication with Adobe websites is governed by the\nAdobe Online Privacy Policy found at http://www.adobe.com/go/privacy (\"Adobe Online Privacy\nPolicy\"). Adobe may not have access to or control over features that a third party may use, and the\ninformation practices of third party websites are not covered by the Adobe Online Privacy Policy.\n\n7.2 Updating. If your Computer is connected to the Internet, the Software may, without additional\nnotice, check for Updates that are available for automatic download and installation to your Computer\nand let Adobe know the Software is successfully installed. For Reader, Updates may be automatically\ndownloaded but not installed without additional notice unless you change your preferences to accept\nautomatic installation. Only non-personally identifying information is transmitted to Adobe when this\nhappens, except to the extent that IP Addresses may be considered personally identifiable in some\njurisdictions. The use of such information, including your IP Address, as provided by the auto update\nprocess is governed by the Adobe Online Privacy Policy. Please consult the Documentation for\ninformation about changing default update settings at http://www.adobe.com/go/settingsmanager for\nFlash Player, http://www.adobe.com/go/update_details_url (or successor website) for Reader, and\nhttp://www.adobe.com/go/air_update_details for Adobe AIR. \n\n7.3 Local Storage. Flash Player and Adobe AIR may allow third parties to store certain information on\nyour Computer in a local data file known as a local shared object. The type and amount of information\nthat the third party application requests to be stored in a local shared object can vary by application and\nsuch requests are controlled by the third party. To find more information on local shared objects and\nlearn how to limit or control the storage of local shared objects on your Computer, please visit\nhttp://www.adobe.com/go/flashplayer_security.\n\n7.4 Settings Manager. Flash Player and third-party programs using Adobe AIR may save certain user\nsettings by storing them on your Computer as a local shared object. These settings do not contain\npersonally identifiable information associated with you. They are associated with the instance of Flash\nPlayer or the third-party program using Adobe AIR on your Computer, allowing you to customize\nruntime features. The Flash Player Settings Manager permits you to modify such settings, including the\nability to limit third parties from storing local shared objects or grant third party content the right to\naccess your computer\u2019s microphone and camera. You can find more information on how to configure\nsettings in your version of Flash Player, including information on how to disable local shared objects\nusing the Flash Player Settings Manager, at http://www.adobe.com/go/settingsmanager. You can\nremove equivalent settings for third-party programs using Adobe AIR by uninstalling the third-party\nprogram.\n\n7.5 Peer Assisted Networking Technology. Adobe Flash Player and Adobe AIR runtimes provide the\nability for applications built by third parties to connect to an Adobe Server or Service and permit direct\ncommunication between two Adobe Runtime clients or to connect an Adobe Runtime client as part of a\npeer or distributed network that allows a portion of your resources, such as network bandwidth, to be\nmade directly available to other participants. Prior to joining such peer or distributed network, you will\nbe provided with the opportunity to accept such connectivity. You can manage Peer Assisted\nNetworking settings using the Flash Player Settings Manager. Learn more about using the Settings\nManager at http://www.adobe.com/go/settingsmanager. You can find more information on Peer\nAssisted Networking at http://www.adobe.com/go/RTMFP.\n\n7.6 Content Protection Technology. If you Use the Adobe Runtimes to access content that has been\nprotected with Adobe Flash Media Rights Management Server or Flash Access software (\"Content\nProtection\"), in order to let you play the protected content, the Software may automatically request\nmedia usage rights and individualization from a server on the Internet, and may download and install\nrequired components of the Software, including any available Content Protection Updates. You can\nclear the content license information using the Flash Player Settings Manager. Learn more about using\nthe Settings Manager at http://www.adobe.com/go/settingsmanager. You can find more information on\nContent Protection at http://www.adobe.com/go/protected_content.\n\n7.7 Use of Adobe Online Services. If your Computer is connected to the Internet, the Software may,\nwithout additional notice and on an intermittent or regular basis, facilitate your access to content and\nservices that are hosted on websites maintained by Adobe or its affiliates (\"Adobe Online Services\").\nExamples of such Adobe Online Services might include, but are not limited to: Acrobat.com. In some\ncases an Adobe Online Service might appear as a feature or extension within the Software even though\nit is hosted on a website. In some cases, access to an Adobe Online Service might require a separate\nsubscription or other fee in order to access it, and/or your assent to additional terms of use. Adobe\nOnline Services might not be available in all languages or to residents of all countries and Adobe may, at\nany time and for any reason, modify or discontinue the availability of any Adobe Online Service. Adobe\nalso reserves the right to begin charging a fee for access to or use of an Adobe Online Service that was\npreviously offered at no charge. If your Computer is connected to the Internet, the Software may,\nwithout additional notice, update downloadable materials from these Adobe Online Services so as to\nprovide immediate availability of these Adobe Online Services even when you are offline. When the\nSoftware connects to the Internet as a function of an Adobe Online Service, your IP Address, user name,\nand password may be sent to Adobe\u2019s servers and stored by Adobe in accordance with the Additional\nTerms of Use or the \"help\" menu in the Software. This information may be used by Adobe to send you\ntransactional messages to facilitate the Adobe Online Service. Adobe may display in-product marketing\nto provide information about the Software and other Adobe products and Services, including but not \nlimited to Adobe Online Services, based on certain Software specific features including but not limited\nto, the version of the Software, including without limitation, platform version, version of the Software,\nand language. For further information about in-product marketing, please see the \"help\" menu in the\nSoftware. Whenever the Software makes an Internet connection and communicates with an Adobe\nwebsite, whether automatically or due to explicit user request, the Adobe Online Privacy Policy shall\napply. Additionally, unless you are provided with separate terms of use at that time, the Adobe.com\nTerms of Use (http://www.adobe.com/go/terms) shall apply. Please note that the Adobe Privacy Policy\nallows tracking of website visits and it addresses in detail the topic of tracking and use of cookies, web\nbeacons, and similar devices.\n\n8. Third Party Offerings. You acknowledge and agree to the following:\n\n8.1 Third Party Offerings. The Software may allow you to access and interoperate with third party\ncontent, software applications, and data services, including rich Internet applications (\"Third Party\nOfferings\"). Your access to and use of any Third Party Offering, including any goods, services, or\ninformation, is governed by the terms and conditions respecting such offerings and copyright laws of the\nUnited States and other countries. Third Party Offerings are not owned or provided by Adobe. You agree\nthat you will not use any of such Third Party Offerings in violation of copyright laws of the United States\nor other countries. Adobe or the third party may at any time, for any reason, modify or discontinue the\navailability of any Third Party Offerings. Adobe does not control, endorse, or accept responsibility for\nThird Party Offerings. Any dealings between you and any third party in connection with a Third Party\nOfferings, including such party\u2019s privacy policies and use of your personal information, delivery of and\npayment for goods and services, and any other terms, conditions, warranties, or representations\nassociated with such dealings, are solely between you and such third party. Third Party Offerings might\nnot be available in all languages or to residents of all countries and Adobe or the third party may, at any\ntime and for any reason, modify or discontinue the availability of any Third Party Offerings.\n\n8.2 EXCEPT AS EXPRESSLY AGREED BY ADOBE OR ITS AFFILIATES OR A THIRD PARTY IN A SEPARATE\nAGREEMENT, YOUR USE OF ADOBE AND THIRD PARTY OFFERINGS IS AT YOUR OWN RISK UNDER\nTHE WARRANTY AND LIABILITY LIMITATIONS OF SECTIONS 1.1 AND 10.\n\n9. Digital Certificates. You acknowledge and agree to the following:\n\n9.1 Use. Adobe AIR uses digital certificates to help you identify the publisher of Adobe AIR applications\ncreated by third parties. Additionally, Adobe AIR uses digital certificates to establish the identity of\nservers accessed via the Transport Layer Security (TLS) protocol, including access via HTTPS. Adobe\nReader uses digital certificates to sign and validate signatures within PDF documents and to validate\ncertified PDF documents. Adobe Runtimes use digital certificates to secure protected content from\nunauthorized usage. Your Computer may connect to the Internet at the time of validation of a digital\ncertificate in order to download current certificate revocation lists (CRLs) or to update the list of digital\ncertificates. This access may be made both by the Software and by applications based on the Software.\nDigital certificates are issued by third party certificate authorities, including Adobe Certified Document\nServices (CDS) vendors listed at http://www.adobe.com/go/partners_cds and Adobe Approved Trust\nList (AATL) vendors listed at http://www.adobe.com/go/aatl, and individualization vendors found at\nhttp://www.adobe.com/go/protected_content (collectively \"Certification Authorities\"), or can be selfsigned.\n\n9.2 Terms and Conditions. Purchase, use and reliance upon digital certificates are the responsibility of\nyou and a Certification Authority. Before you rely upon any certified document, digital signature, or\nCertification Authority services, you should review the applicable terms and conditions under which the\nrelevant Certification Authority provides services, including, for example, any subscriber agreements,\nrelying party agreements, certificate policies, and practice statements. See the links on\nhttp://www.adobe.com/go/partners_cds for information about Adobe\u2019s CDS vendors and\nhttp://www.adobe.com/go/aatl for information about Adobe\u2019s AATL vendors. \n\n9.3 Acknowledgement. You agree that (a) a digital certificate may have been revoked prior to the time\nof verification, making the digital signature or certificate appear valid when in fact it is not, (b) the\nsecurity or integrity of a digital certificate may be compromised due to an act or omission by the signer\nof the document, the applicable Certification Authority, or any other third party, and (c) a certificate may\nbe a self-signed certificate not provided by a Certification Authority. YOU ARE SOLELY RESPONSIBLE\nFOR DECIDING WHETHER OR NOT TO RELY ON A CERTIFICATE. UNLESS A SEPARATE WRITTEN\nWARRANTY IS PROVIDED TO YOU BY A CERTIFICATION AUTHORITY, YOU USE DIGITAL\nCERTIFICATES AT YOUR SOLE RISK.\n\n9.4 Third Party Beneficiaries. You agree that any Certification Authority you rely upon is a third party\nbeneficiary of this agreement and shall have the right to enforce this agreement in its own name as if it\nwere Adobe.\n\n9.5 Indemnity. You agree to hold Adobe and any applicable Certification Authority (except as expressly\nprovided in its terms and conditions) harmless from any and all liabilities, losses, actions, damages, or\nclaims (including all reasonable expenses, costs, and attorneys fees) arising out of or relating to any use\nof, or reliance on, by you or any third party that receives a document from you with a digital certificate,\nany service of such authority, including, without limitation (a) reliance on an expired or revoked\ncertificate, (b) improper verification of a certificate, (c) use of a certificate other than as permitted by any\napplicable terms and conditions, this agreement, or applicable law; (d) failure to exercise reasonable\njudgment under the circumstances in relying on issuer services or certificates, or (e) failure to perform\nany of the obligations as required in the terms and conditions related to the services.\n\n10. Limitation of Liability.\nIN NO EVENT WILL ADOBE, ITS SUPPLIERS, OR CERTIFICATION AUTHORITIES BE LIABLE TO YOU FOR\nANY DAMAGES, CLAIMS OR COSTS WHATSOEVER INCLUDING ANY CONSEQUENTIAL, INDIRECT,\nINCIDENTAL DAMAGES, OR ANY LOST PROFITS OR LOST SAVINGS, EVEN IF AN ADOBE\nREPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, OR CLAIMS.\nTHE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE\nLAW IN YOUR JURISDICTION. ADOBE\u2019S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS AND\nCERTIFICATION AUTHORITIES UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE\nLIMITED TO THE AMOUNT PAID FOR THE SOFTWARE, IF ANY. Nothing contained in this agreement\nlimits Adobe\u2019s liability to you in the event of death or personal injury resulting from Adobe\u2019s negligence\nor for the tort of deceit (fraud). Adobe is acting on behalf of its suppliers and Certification Authorities for\nthe purpose of disclaiming, excluding, and/or limiting obligations, warranties, and liability as provided in\nthis agreement, but in no other respects and for no other purpose. For further information, please see\nthe jurisdiction specific information at the end of this agreement, if any, or contact Adobe\u2019s Customer\nSupport Department.\n\n11. Export Rules.\nYou agree that the Software will not be shipped, transferred, or exported into any country or used in any\nmanner prohibited by the United States Export Administration Act or any other export laws, restrictions,\nor regulations (collectively the \"Export Laws\"). In addition, if the Software is identified as export\ncontrolled items under the Export Laws, you represent and warrant that you are not a citizen, or\notherwise located within, an embargoed nation (including without limitation Iran, Syria, Sudan, Cuba,\nand North Korea) and that you are not otherwise prohibited under the Export Laws from receiving the\nSoftware. All rights to Use the Software are granted on condition that such rights are forfeited if you fail\nto comply with the terms of this agreement. \n\n12. Governing Law.\nIf you are a consumer who uses the Software for only personal non-business purposes, then this\nagreement will be governed by the laws of the state in which you purchased the license to use the\nSoftware. If you are not such a consumer, this agreement will be governed by and construed in\naccordance with the substantive laws in force in: (a) the State of California, if a license to the Software is\nobtained when you are in the United States, Canada, or Mexico; or (b) Japan, if a license to the Software\nis obtained when you are in Japan; or (c) Singapore, if a license to the Software is obtained when you\nare in a member state of the Association of Southeast Asian Nations, the People\u2019s Republic of China\n(including Hong Kong S.A.R. and Macau S.A.R.), Taiwan, or the Republic of Korea; or (d) England, if a\nlicense to the Software is obtained when you are in any jurisdiction not described above. The respective\ncourts of Santa Clara County, California when California law applies, Tokyo District Court in Japan, when\nJapanese law applies, and the competent courts of London, England, when the law of England applies,\nshall each have non-exclusive jurisdiction over all disputes relating to this agreement. When Singapore\nlaw applies, any dispute arising out of or in connection with this agreement, including any question\nregarding its existence, validity, or termination, shall be referred to and finally resolved by arbitration in\nSingapore in accordance with the Arbitration Rules of the Singapore International Arbitration Centre\n(\"SIAC\") for the time being in force, which rules are deemed to be incorporated by reference in this\nsection. There shall be one arbitrator, selected jointly by the parties. If the arbitrator is not selected\nwithin thirty (30) days of the written demand by a party to submit to arbitration, the Chairman of the\nSIAC shall make the selection. The language of the arbitration shall be English. Notwithstanding any\nprovision in this agreement, Adobe or you may request any judicial, administrative, or other authority to\norder any provisional or conservatory measure, including injunctive relief, specific performance, or other\nequitable relief, prior to the institution of legal or arbitration proceedings, or during the proceedings, for\nthe preservation of its rights and interests or to enforce specific terms that are suitable for provisional\nremedies. The English version of this agreement will be the version used when interpreting or\nconstruing this agreement. This agreement will not be governed by the conflict of law rules of any\njurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the\napplication of which is expressly excluded.\n\n13. General Provisions.\nIf any part of this agreement is found void and unenforceable, it will not affect the validity of the balance\nof this agreement, which shall remain valid and enforceable according to its terms. This agreement shall\nnot prejudice the statutory rights of any party dealing as a consumer. This agreement may only be\nmodified by a writing signed by an authorized officer of Adobe. Updates may be licensed to you by\nAdobe with additional or different terms. This is the entire agreement between Adobe and you relating\nto the Software and it supersedes any prior representations, discussions, undertakings, communications,\nor advertising relating to the Software.\n\n14. Notice to U.S. Government End Users.\nFor U.S. Government End Users, Adobe agrees to comply with all applicable equal opportunity laws\nincluding, if appropriate, the provisions of Executive Order 11246, as amended, Section 402 of the\nVietnam Era Veterans Readjustment Assistance Act of 1974 (38 USC 4212), and Section 503 of the\nRehabilitation Act of 1973, as amended, and the regulations at 41 CFR Parts 60-1 through 60-60,\n60-250, and 60-741. The affirmative action clause and regulations contained in the preceding sentence\nshall be incorporated by reference in this agreement.\n\n15. Compliance with Licenses.\nIf you are a business or organization, you agree that upon request from Adobe or Adobe\u2019s authorized\nrepresentative, you will, within thirty (30) days, fully document and certify that use of any and all\nSoftware at the time of the request is in conformity with your valid licenses from Adobe. \n\n16. European Union Provisions.\nNothing included in this agreement (including Section 4.5) shall limit any non-waivable right to\ndecompile the Software that you may enjoy under mandatory law. For example, if you are located in the\nEuropean Union (EU), you may have the right upon certain conditions specified in the applicable law to\ndecompile the Software if it is necessary to do so in order to achieve interoperability of the Software\nwith another software program, and you have first asked Adobe in writing to provide the information\nnecessary to achieve such interoperability and Adobe has not made such information available. In\naddition, such decompilation may only be done by you or someone else entitled to use a copy of the\nSoftware on your behalf. Adobe has the right to impose reasonable conditions before providing such\ninformation. Any information supplied by Adobe or obtained by you, as permitted hereunder, may only\nbe used by you for the purpose described herein and may not be disclosed to any third party or used to\ncreate any software which is substantially similar to the expression of the Software or used for any other\nact which infringes Adobe or its licensors\u2019 copyright.\n\n17. Specific Provisions and Exceptions.\n\n17.1 Limitation of Liability for Users Residing in Germany and Austria.\n\n17.1.1 If you obtained the Software in Germany or Austria, and you usually reside in such country, then\nSection 10 does not apply. Instead, subject to the provisions in Section 17.1.2, Adobe\u2019s statutory liability\nfor damages shall be limited as follows: (a) Adobe shall be liable only up to the amount of damages as\ntypically foreseeable at the time of entering into the license agreement in respect of damages caused by\na slightly negligent breach of a material contractual obligation and (b) Adobe shall not be liable for\ndamages caused by a slightly negligent breach of a non-material contractual obligation.\n\n17.1.2 The aforesaid limitation of liability shall not apply to any mandatory statutory liability, in\nparticular, to liability under the German Product Liability Act, liability for assuming a specific guarantee\nor liability for culpably caused personal injuries.\n\n17.1.3 You are required to take all reasonable measures to avoid and reduce damages, in particular to\nmake back-up copies of the Software and your computer data subject to the provisions of this\nagreement.\n\nIf you have any questions regarding this agreement, or if you wish to request any information from\nAdobe, please use the address and contact information included with this product or via the web at\nhttp://www.adobe.com to contact the Adobe office serving your jurisdiction.\n\nAdobe, Adobe AIR, AIR, Authorware, Flash, Reader, and Shockwave are either registered trademarks or\ntrademarks of Adobe Systems Incorporated in the United States and/or other countries.\n\nPlatformClients_PC_WWEULA-en_US-20110809_1357", + "json": "adobe-flash-player-eula-21.0.json", + "yaml": "adobe-flash-player-eula-21.0.yml", + "html": "adobe-flash-player-eula-21.0.html", + "license": "adobe-flash-player-eula-21.0.LICENSE" + }, + { + "license_key": "adobe-flex-4-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-flex-4-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ADOBE SYSTEMS INCORPORATED\nSOFTWARE DEVELOPMENT KIT\nLICENSE AGREEMENT\nAdobe\u00ae Flex\u00ae 4 SDK\n\n1. NO WARRANTY, LIMITATION OF LIABILITY, BINDING AGREEMENT AND ADDITIONAL TERMS AND AGREEMENTS.\n\n1.1 WARRANTY DISCLAIMER. YOU ACKNOWLEDGE THAT THE SDK MAY BE PRONE TO BUGS AND/OR STABILITY ISSUES. THE SDK IS PROVIDED TO YOU \"AS IS,\" AND ADOBE AND ITS SUPPLIERS DISCLAIM ANY WARRANTY OR LIABILITY OBLIGATIONS TO YOU OF ANY KIND. YOU ACKNOWLEDGE THAT ADOBE MAKES NO EXPRESS, IMPLIED, OR STATUTORY WARRANTY OF ANY KIND WITH RESPECT TO THE SDK INCLUDING ANY WARRANTY WITH REGARD TO PERFORMANCE, MERCHANTABILITY, SATISFACTORY QUALITY, NONINFRINGEMENT OR FITNESS FOR ANY PARTICULAR PURPOSE. YOU BEAR THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SDK AND YOUR USE OF AND OUTPUT FROM THE SDK. Adobe is not obligated to provide maintenance, technical support or updates to you for any portion of the SDK. The foregoing limitations, exclusions and limitations shall apply to the maximum extent permitted by applicable law, even if any remedy fails its essential purpose.\n\n1.2 LIMITATION OF LIABILITY. IN NO EVENT WILL ADOBE OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY LOSSES, DAMAGES, CLAIMS OR COSTS WHATSOEVER INCLUDING ANY CONSEQUENTIAL, INDIRECT OR INCIDENTAL DAMAGES, ANY LOST PROFITS OR LOST SAVINGS, ANY DAMAGES RESULTING FROM BUSINESS INTERRUPTION, PERSONAL INJURY OR FAILURE TO MEET ANY DUTY OF CARE, OR CLAIMS BY A THIRD PARTY EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSSES, DAMAGES, CLAIMS OR COSTS. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION. ADOBE\u2019S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT PAID FOR THE SDK, IF ANY. THIS LIMITATION ON ADOBE AND ITS SUPPLIERS WILL APPLY EVEN IN THE EVENT OF A FUNDAMENTAL OR MATERIAL BREACH OR A BREACH OF THE FUNDAMENTAL OR MATERIAL TERMS OF THIS AGREEMENT. Nothing contained in this Agreement limits Adobe\u2019s, or its suppliers, liability to you in the event of death or personal injury resulting from Adobe\u2019s negligence or for the tort of deceit (fraud). Adobe is acting on behalf of its suppliers for the purpose of disclaiming, excluding and limiting obligations, warranties and liability, but in no other respects and for no other purpose.\n\n1.3 Binding Agreement. This Agreement governs installation and use of the Flex SDK. You agree that this Agreement is like any written negotiated agreement signed by you. By clicking to acknowledge agreement to be bound during review of an electronic version of this Agreement or by downloading, copying, installing or using any portion of this SDK, you accept all the terms and conditions of this Agreement. This Agreement is enforceable against you and any person or entity that obtains this SDK or on whose behalf they are used: for example, your employer. If you do not agree to the terms of this Agreement, do not use any portion of this SDK. This Agreement shall apply to any portion of the SDK, regardless of whether other software is referred to or described herein.\n\n1.4 Additional Terms and Agreements. You may have a separate written agreement with Adobe that supplements or supersedes all or portions of this Agreement. Your use of some third party materials included in the SDK may be subject to other terms and conditions typically found in a separate license agreement or a \"Read Me\" file located near such materials or in the \"Third Party Software Notices and/or Additional Terms and Conditions\" found at http://www.adobe.com/go/thirdparty. Such other terms and conditions may require you to pass through notices to your end users. Such other terms and conditions will supersede all or portions of this Agreement in the event of a conflict with the terms and conditions of this Agreement.\n\n2. Definitions.\n\n2.1 \"Adobe\" means Adobe Systems Incorporated, a Delaware corporation, 345 Park Avenue, San Jose, California 95110, if Section 9(a) of this Agreement applies; otherwise it means Adobe Systems Software Ireland Limited, 4-6 Riverwalk, Citywest Business Campus, Dublin 24, Ireland, a company organized under the laws of Ireland and an affiliate and licensee of Adobe Systems Incorporated.\n\n2.2 \"Authorized Users\" means employees and individual contractors (i.e., temporary employees) of you.\n\n2.3 \"Build Tools\" means build files, compilers, runtime libraries (but not the complete Runtime Software), and other tools accompanying this Agreement, including, for example, the contents of the bin, lib, and runtime directories, adl.exe, adl.bat and adt.jar.\n\n2.4 \"Developer Programs\" means your applications, libraries, components or programs that are created using portions of this SDK in accordance with the terms of this Agreement.\n\n2.5 \"Documentation\" means the written materials accompanying this Agreement, including, for example, technical specifications, file format documentation and application programming interface (API) information.\n\n2.6 \"Effective Date\" means the date that you download or otherwise access the any portion of the SDK.\n\n2.7 \"Material Improvement\" means perceptible, measurable and definable improvements that provide extended or additional significant and primary functionality and adds significant business value.\n\n2.8 \"Professional Component Source Files\" means, if you receive the Build Tools and Documentation in connection with licensing Adobe Flash\u00ae Builder\u2122, each Flex Framework source code file that is provided with the SDK in a directory or directories as specified by Adobe from time to time.\n\n2.9 \"Runtime Components\" means any of the individual files, libraries, or executable code contained in the Runtime Software directory (e.g. the runtime folder) or the Runtime Software utilities included with the utilities directory or installer files.\n\n2.10 \"Runtime Software\" means the Adobe runtime software in object code format named \"Adobe AIR\" or \"Adobe Flash Player \"that is to be installed by end-users and all updates to such software made available by Adobe.\n\n2.11 \"Sample Code\" means sample software in source code format and found in directories labeled \"samples\" and \"templates\" and any other directory or directories as specified by Adobe from time to time.\n\n2.12 \"SDK\" means the Build Tools, Documentation, Professional Component Source File, Runtime Components, Runtime Software, Sample Code, SDK Source Files, files, libraries and executables that are described in a \"Read Me\" file or other similar file as being included as part of the Flex Software Development Kit, including the build files, compilers, and related information, as well as the file format specifications, if any, and any related information accompanying this Flex Software Development Kit, including any updates thereto, that are downloaded to your computer or otherwise used by you.\n\n2.13 \"SDK Source Files\" means source code files included in the directory \"frameworks\" that accompany this Agreement.\n\n3. License and License Restrictions.\nSubject to the terms and conditions of this Agreement, Adobe grants to you a non-exclusive, non-transferable license to use this SDK according to the terms and conditions of this Agreement, on the licensed platforms and configurations.\n\n3.1 Build Tools, Documentation, Professional Component Source Files, Sample Code and SDK Source Files.\n\n3.1.1 Build Tools and Documentation. Subject to the terms and conditions of this Agreement and except as otherwise expressly provided in this Agreement, Adobe grants you a non-exclusive, nontransferable license to (a) use the Build Tools and Documentation for the sole purpose of internally developing Developer Programs, and (b) use the Build Tools and Documentation as part of your website for the sole purpose of compiling the Developer Programs that are distributed through the your website. This Agreement does not grant you the right to distribute the Build Tools, Documentation or Runtime Software. For more information about obtaining the rights to distribute such components with your product or service, please refer to http://www.adobe.com/go/redistributeairsdk and http://opensource.adobe.com/wiki/display/flexsdk/Legal+Stuff.\n\n3.1.2 Professional Component Source Files. With respect to each Professional Component Source Files and subject to the terms and conditions of this Agreement, if your version of the SDK includes Professional Component Source Files, Adobe grants you a non-exclusive, nontransferable license to (a) modify and reproduce such Professional Component Source File for use as a component of your Developer Programs provided that you add Material Improvements to such Professional Component Source File; (b) distribute such Professional Component Source File in object code form and/or source code form only as a component of Developer Programs that add Material Improvements to such Professional Component Source File subject to the requirements in Section 3.2 below; and (c) for the avoidance of doubt, you shall have no rights to the Professional Component Source Files (or the object code form of such files), except to the extent such Professional Component Source Files are provided to you in connection with your licensing of Flash Builder Premium.\n\n3.1.3 Sample Code.\n(a) Distribution with Developer Programs. You may modify the Sample Code solely for the purposes of designing, developing and testing your own Developer Programs. However, you are permitted to use, copy and redistribute its modified Sample Code only if all of the following conditions in 3.2 below are met.\n(b) Distribution of Sample Code Stand-Alone. You may distribute Sample Code in source code or object code format on a stand-alone basis or as bundled with other software, as long as you first make modifications to such Sample Code that result in Material Improvements.\n\n3.1.4 SDK Source Files.\n(a) You may modify the SDK Source Files provided to you in human readable (i.e. source code) format. You may incorporate the modified SDK Source Files into your Developer Programs. You may not modify any other portions of the SDK, except as explicitly set forth in in this Agreement. You may not delete or in any manner alter the copyright notices, trademarks, logos or related notices, or other proprietary notices of Adobe (and its licensors, if any) appearing on or within any portion of this SDK other than Sample Code or SDK Source Files that constitute Material Improvements by you in accordance with this Agreement; \n(b) You may distribute SDK Source Files in source code or object code format on a stand-alone basis or as bundled with other components useful to developers, as long as you first make modifications to such files that result in Material Improvements, and provided that you include a copyright notice reflecting copyright ownership in such modified files.\n\n3.2 Additional Distribution Requirements. If you distribute Professional Component Source Files, Sample Code or SDK Source Files under this Agreement, you must (a) include a copyright notice in such code, files, the relevant Developer Program or other larger work incorporating such code or files, including every location in which any other copyright notice appears in such application and (b) distribute such object code and/or source code under the terms and conditions of an end user license agreement that provides (i) a prohibition against reverse engineering, decompiling, disassembling or otherwise attempting to discover the source code of the subject Developer Program that is substantially similar to the prohibition set forth in Section 3.3.1 below; (ii) a statement that your suppliers disclaim all warranties, conditions, representations or terms with respect to the subject Developer Program; and (iii) a limitation of liability that disclaims all liability for the benefit of your suppliers. You may not delete or in any manner alter the copyright notices, trademarks, logos or related notices, or other proprietary rights notices of Adobe (and its licensors, if any) appearing on or within such Professional Component Source File and/or Build Tools and Documentation, or any documentation relating to the Build Tools and Documentation. You may not make any statement that any Developer Program or other software is \"certified\" or otherwise guaranteed by Adobe. You may not use Adobe\u2019s name, trademarks or logos to market any Developer Program or other software without written permission from Adobe. Adobe is not responsible to you or any other party for any software updates or support or other liability that may arise from your distribution. You may not use \"flex,\" \"flash,\" \"fl\", \"adobe\" or \"air\" in any new package or class names distributed with the Professional Component Source Files, Sample Code, or SDK Source Files. You agree to identify any modified files with a prominent notice stating that you have changed the file. Any Developer Programs developed by you will be designed to operate in connection with Adobe Flash Builder, Adobe Flex Data Services Software, Adobe LiveCycle Data Services, the Runtime Software or with portions of this SDK.\n\n3.3 Restrictions.\n\n3.3.1 No Modifications, No Reverse Engineering. Except as specifically provided herein, you shall not (a) modify, port, adapt or translate the any portion of this SDK; (b) add or delete any program files that would modify the functionality and/or appearance of other Adobe software and/or any component thereof; or (c) reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of any portion of this SDK. Notwithstanding the foregoing, decompiling the SDK is permitted to the extent the laws of your jurisdiction give you the right to do so to obtain information necessary to render the licensed portions of the SDK interoperable with other software; provided, however, that you must first request such information from Adobe and Adobe may, in its sole discretion, either provide such information to you or impose reasonable conditions, including a reasonable fee, on such use of the source code to ensure that Adobe\u2019s and its suppliers\u2019 proprietary rights in the source code for the SDK are protected.\n\n3.3.2 No Unbundling. The SDK may include various applications, utilities and components, may support multiple platforms and languages or may be provided to you on multiple media or in multiple copies. Nonetheless, the SDK is designed and provided to you as a single product to be used as a single product on computers and platforms as permitted herein. You are not required to use all component parts of the SDK, but you shall not unbundle or repackage the component parts of the SDK for distribution, transfer, resale or use on different computers.\n\n3.3.3 No Transfer. You shall not sublicense, assign or transfer the SDK or your rights in the SDK, or authorize any portion of the SDK to be copied onto or accessed from another individual\u2019s or entity\u2019s computer except as may be explicitly provided in this Agreement. Notwithstanding anything to the contrary in this Section 3.3.3, you may transfer copies of the SDK installed on one of your computers to another one of your computers provided that the resulting installation and use of the SDK is in accordance with the terms of this Agreement and does not cause you to exceed your right to use the SDK under this Agreement.\n\n3.3.4 Prohibited Use. Except as expressly authorized under this Agreement, you are prohibited from: (a) using the SDK on behalf of third parties; (b) renting, leasing, lending or granting other rights in the SDK, including rights on a membership or subscription basis; and (c) providing use of the SDK in a computer service business, third party outsourcing facility or service, service bureau arrangement, network, or time sharing basis; (d) creating or distributing any software, including any Developer Program, that interoperates with individual Runtime Components in a manner not documented by Adobe; (e) creating or distributing any software, including any Developer Programs, that is designed to interoperate with an un-installed instance of the Runtime Software; (f) distributing your Developer Program as an AIR application, if such application does not interoperate with the Runtime Software; (g) creating or distributing any Developer Program that runs without installation; (h) installing or using the Build Tools or other portions of the SDK to develop software prohibited by this Section 3.3. Failure to comply with this Section 3.3.4 is a breach of this Agreement that immediately terminates all rights granted to you herein.\n\n3.3.5 Other Prohibitions. You will not use the SDK to create, develop or use any program, software or service that (a) contains any viruses, Trojan horses, worms, time bombs, cancelbots or other computer programming routines that are intended to damage, detrimentally interfere with, surreptitiously intercept or expropriate any system, data or personal information, (b) when used in the manner in which it is intended or marketed, violates any law, statute, ordinance, regulation or rights (including any laws, regulations or rights respecting intellectual property, computer spyware, privacy, export control, unfair competition, antidiscrimination or false advertising), or (c) interferes with the operability of Adobe or third-party programs or software.\n\n3.3.6 AVC Codec Use. PORTIONS OF THIS PRODUCT ARE LICENSED UNDER THE AVC PATENT PORTFOLIO LICENSE FOR THE PERSONAL NON-COMMERCIAL USE OF A CONSUMER TO (i) ENCODE VIDEO IN COMPLIANCE WITH THE AVC STANDARD (\"AVC VIDEO\") AND/OR (ii) DECODE AVC VIDEO THAT WAS ENCODED BY A CONSUMER ENGAGED IN A PERSONAL NON-COMMERCIAL ACTIVITY AND/OR WAS OBTAINED FROM A VIDEO PROVIDER LICENSED TO PROVIDE AVC VIDEO. NO LICENSE IS GRANTED OR SHALL BE IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED FROM MPEG LA, L.L.C. SEE http://www.mpegla.com.\n\n4. Indemnification.\nYou agree to defend, indemnify, and hold Adobe and its suppliers harmless from and against any and all liabilities, losses, actions, damages, lawsuits, or claims (including product liability, warranty and intellectual property claims, and all reasonable expenses, costs and attorneys fees), that arise or result from the use or distribution of any portion of the SDK or your Developer Programs, provided that Adobe gives you prompt written notice of any such claim, and cooperates with you, at your expense, in defending or settling such claim.\n\n5. Intellectual Property Rights.\nThe SDK and any copies that you are authorized by Adobe to make are the intellectual property of and are owned by Adobe Systems Incorporated and its suppliers. The structure, organization and code of the SDK are the valuable trade secrets and confidential information of Adobe Systems Incorporated and its suppliers. The SDK is protected by copyright, including by United States Copyright Law, international treaty provisions and applicable laws in the country in which it is being used. Except as expressly stated herein, this Agreement does not grant you any intellectual property rights in the SDK and all rights not expressly granted are reserved by Adobe.\n\n6. MP3 Codec Use.\nYou may not modify the runtime libraries or any other Build Tools. You may not access MP3 codecs within the runtime libraries other than through the published runtime APIs. Development, use or distribution of a Developer Program that operates on non-PC devices and that decodes MP3 data not contained within a SWF, FLV or other file format that contains more than MP3 data may require one or more third-party license(s).\n\n7. Export Rules.\nYou acknowledge that this SDK is subject to the U.S. Export Administration Regulations (the \"EAR\") and that you will comply with the EAR. You will not export or re-export this SDK, or any portion hereof, directly or indirectly, to: (1) any countries that are subject to US export restrictions (currently including, but not necessarily limited to, Cuba, Iran, North Korea, Sudan, and Syria); (2) any end user who you know or have reason to know will utilize them in the design, development or production of nuclear, chemical or biological weapons, or rocket systems, space launch vehicles, and sounding rockets, or unmanned air vehicle systems; or (3) any end user who has been prohibited from participating in the US export transactions by any federal agency of the US government. In addition, you are responsible for complying with any local laws in your jurisdiction which may impact your right to import, export or use the SDK. \n\n8. Adobe AIR Trademark Guidelines.\n\"Adobe\u00ae AIR\u00ae\" is a trademark of Adobe that may not be used by others except under a written license from Adobe. You may not incorporate the Adobe AIR trademark, or any other Adobe trademark, in whole or in part, in the title of your Developer Programs or in your company name, domain name or the name of a service related to Adobe AIR. You may indicate the interoperability of its Developer Program with the Adobe AIR Runtime Software, if true, by stating, for example, \"works with Adobe\u00ae AIR\u00ae\" or \"for Adobe\u00ae AIR\u00ae.\" You may use the Adobe AIR trademark to refer to your Developer Program as an \"Adobe\u00ae AIR\u00ae application\" only as a statement that your Developer Program interoperates with the Adobe AIR Runtime Software.\n\n9. Governing Law.\nIf you are a consumer who uses the SDK for only personal non-business purposes, then this Agreement will be governed by the laws of the state in which you purchased the license to use the SDK. If you are not such a consumer, this Agreement will be governed by and construed in accordance with the substantive laws in force in: (a) the State of California, if a license to the SDK is obtained when you are in the United States, Canada, or Mexico; or (b) Japan, if a license to the SDK is obtained when you are in Japan, China, Korea, or other Southeast Asian country where all official languages are written in either an ideographic script (e.g., Hanzi, Kanji, or Hanja), and/or other script based upon or similar in structure to an ideographic script, such as hangul or kana; or (c) England, if a license to the SDK is obtained when you are in any jurisdiction not described above. The respective courts of Santa Clara County, California when California law applies, Tokyo District Court in Japan, when Japanese law applies, and the competent courts of London, England, when the law of England applies, shall each have non-exclusive jurisdiction over all disputes relating to this Agreement. This Agreement will not be governed by the conflict of law rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded.\n\n10. Non-Blocking of Adobe Development.\nYou acknowledge that Adobe is currently developing or may develop technologies and products in the future that have or may have design and/or functionality similar to products that you may develop based on your license herein. Nothing in this Agreement shall impair, limit or curtail Adobe\u2019s right to continue with its development, maintenance and/or distribution of Adobe\u2019s technology or products. You agree that you shall not assert in any way any patent owned by you arising out of or in connection with this SDK or modifications made thereto against Adobe, its subsidiaries or affiliates, or their customers, direct or indirect, agents and contractors for the manufacture, use, import, licensing, offer for sale or sale of any Adobe products.\n\n11. Term and Termination.\nThis Agreement will commence upon the Effective Date and continue in perpetuity unless terminated as set forth herein. Adobe may terminate this Agreement immediately if you breach any of its terms. Sections 1, 2, 3.3, 4, 5, 6, 7, 8, 9, 10, 11, 12, and 13 will survive any termination of this Agreement. Upon termination of this Agreement, you will cease all use and distribution of the SDK and return to Adobe or destroy (with written confirmation of destruction) the SDK promptly at Adobe\u2019s request, together with any copies thereof.\n\n12. General Provisions.\nIf any part of this Agreement is found void and unenforceable, it will not affect the validity of the balance of this Agreement, which shall remain valid and enforceable according to its terms. Updates may be licensed to you by Adobe with additional or different terms. The English version of this Agreement shall be the version used when interpreting or construing this Agreement. This is the entire agreement between Adobe and you relating to the SDK and it supersedes any prior representations, discussions, undertakings, communications or advertising relating to the SDK. The use of \"includes\" or \"including\" in this Agreement shall mean \"including without limitation.\"\n\n13. Notice to U.S. Government End Users.\nThe SDK and any Documentation are \"Commercial Item(s),\" as that term is defined at 48 C.F.R. Section 2.101, consisting of \"Commercial Computer Software\" and \"Commercial Computer Software Documentation,\" as such terms are used in 48 C.F.R. Section 12.212 or 48 C.F.R. Section 227.7202, as applicable. Consistent with 48 C.F.R. Section 12.212 or 48 C.F.R. Sections 227.7202-1 through 227.7202-4, as applicable, the Commercial Computer Software and Commercial Computer Software Documentation are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Unpublished-rights reserved under the copyright laws of the United States. Adobe Systems Incorporated, 345 Park Avenue, San Jose, CA 95110-2704, USA.\n\n14. Third-Party Beneficiary.\nYou acknowledge and agree that Adobe\u2019s licensors (and/or Adobe if you obtained the SDK from any party other than Adobe) are third party beneficiaries of this Agreement, with the right to enforce the obligations set forth herein with respect to the respective technology of such licensors and/or Adobe.\nAdobe, AIR, Flash Builder, Flex and LiveCycle are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries.\n\nAdobe_Flex_Software_Development_Kit-en_US-20100101_1530", + "json": "adobe-flex-4-sdk.json", + "yaml": "adobe-flex-4-sdk.yml", + "html": "adobe-flex-4-sdk.html", + "license": "adobe-flex-4-sdk.LICENSE" + }, + { + "license_key": "adobe-flex-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-flex-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ADOBE SYSTEMS INCORPORATED\nADOBE FLEX SOFTWARE DEVELOPMENT KIT\nSoftware License Agreement.\n\nNOTICE TO USER: THIS LICENSE AGREEMENT GOVERNS INSTALLATION AND USE OF THE ADOBE SOFTWARE DESCRIBED HEREIN BY LICENSEES OF SUCH SOFTWARE. LICENSEE AGREES THAT THIS AGREEMENT IS LIKE ANY WRITTEN NEGOTIATED AGREEMENT SIGNED BY LICENSEE. BY CLICKING TO ACKNOWLEDGE AGREEMENT TO BE BOUND DURING REVIEW OF AN ELECTRONIC VERSION OF THIS LICENSE, OR DOWNLOADING, COPYING, INSTALLING OR USING THE SOFTWARE, LICENSEE ACCEPTS ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT. THIS AGREEMENT IS ENFORCEABLE AGAINST ANY PERSON OR ENTITY THAT INSTALLS AND USES THE SOFTWARE AND ANY PERSON OR ENTITY (E.G., SYSTEM INTEGRATOR, CONSULTANT OR CONTRACTOR) THAT INSTALLS OR USES THE SOFTWARE ON ANOTHER PERSON\u2019S OR ENTITY\u2019S BEHALF.\n\nTHIS AGREEMENT SHALL APPLY ONLY TO THE SOFTWARE TO WHICH LICENSEE HAS OBTAINED A VALID LICENSE, REGARDLESS OF WHETHER OTHER SOFTWARE IS REFERRED TO OR DESCRIBED HEREIN.\n\nLICENSEE\u2019S RIGHTS UNDER THIS AGREEMENT MAY BE SUBJECT TO ADDITIONAL TERMS AND CONDITIONS IN A SEPARATE WRITTEN AGREEMENT WITH ADOBE THAT SUPPLEMENTS OR SUPERSEDES ALL OR PORTIONS OF THIS AGREEMENT.\n\n1. Definitions.\n\n1.1 \"Adobe\" means Adobe Systems Incorporated, a Delaware corporation, 345 Park Avenue, San Jose, California 95110, if subsection 7(a) of this Agreement applies; otherwise it means Adobe Systems Software Ireland Limited, Unit 3100, Lake Drive, City West Campus, Saggart D24, Dublin, Republic of Ireland, a company organized under the laws of Ireland and an affiliate and licensee of Adobe Systems Incorporated.\n\n1.2 \"Authorized Users\" means employees and individual contractors (i.e., temporary employees) of Licensee.\n\n1.3 \"Computer\" means one or more central processing units (\"CPU\") in a hardware device (including hardware devices accessed by multiple users through a network (\"Server\")) that accepts information in digital or similar form and manipulates it for a specific result based on a sequence of instructions.\n\n1.4 \"Internal Network\" means Licensee\u2019s private, proprietary network resource accessible only by Authorized Users. \"Internal Network\" specifically excludes the Internet (as such term is commonly defined) or any other network community open to the public, including membership or subscription driven groups, associations or similar organizations. Connection by secure links such as VPN or dial up to Licensee\u2019s Internal Network for the purpose of allowing Authorized Users to use the SDK Components should be deemed use over an Internal Network.\n\n1.5 \"Sample Code\" means sample software in source code format and found in directories labeled \"samples\" and \"templates.\"\n\n1.6 \"SDK Components\" means the files, libraries, and executables (i) contained in the directories labeled flex_sdk_3, or as applicable, subsequently labeled directories(e.g.flex_sdk_4, etc.) , and/or (ii) that are described in a \"Read Me\" file or other similar file as being included as part of the Flex Software Development Kit and/or SDK Components and governed by this Agreement, including the Professional Component Source Files (as defined below in Section 2.1), build files, compilers, and related information, as well as the file format specifications, if any.\n\n2. License.\n\nSubject to the terms and conditions of this Agreement, Adobe grants to Licensee a perpetual, non-exclusive license to use the SDK Components delivered hereunder according to the terms and conditions of this Agreement, on Computers connected to Licensee\u2019s Internal Network, on the licensed platforms and configurations.\n\n2.1 SDK Components.\n\n2.1.1 License Grant.\n\n(a) SDK Components. Subject to the terms and conditions of this Agreement, Adobe grants Licensee a non-exclusive, nontransferable license to (A) use the SDK Components for the sole purpose of internally developing Developer Programs, and (B) use the SDK Components as part of Licensee\u2019s website for the sole purpose of compiling the Developer Programs that are distributed through the Licensee\u2019s website.\n\n(b) Professional Component Source Files. Subject to the terms and conditions of this Agreement, with respect to each Professional Component Source File, Adobe grants Licensee a non-exclusive, nontransferable license to (A) modify and reproduce such Professional Component Source File (as defined below) for use as a component of Developer Programs that add Material Improvements to such Professional Component Source File, and (B) distribute such Professional Component Source File in object code form and/or source code form only as a component of Developer Programs that add Material Improvements to such Professional Component Source File, provided that (1) such Developer Programs are designed to operate in connection with Adobe Flex Builder, Adobe Flex Data Services Software, Adobe LiveCycle Data Services Software or the SDK Components, (2) Licensee distributes such object code and/or source code under the terms and conditions of an End User License Agreement, (3) Licensee includes a copyright notice reflecting the copyright ownership of Developer in such Developer Programs, (4) Licensee shall be solely responsible to its customers for any update or support obligation or other liability which may arise from such distribution, (5) Licensee does not make any statements that its Developer Program is \"certified,\" or that its performance is guaranteed, by Adobe, (6) Licensee does not use Adobe\u2019s name or trademarks to market its Developer Programs without written permission of Adobe, (7) Licensee does not delete or in any manner alter the copyright notices, trademarks, logos or related notices, or other proprietary rights notices of Adobe (and its licensors, if any) appearing on or within such Professional Component Source File and/or SDK Components, or any documentation relating to the SDK Components, (8) Licensee causes any modified files to carry prominent notices stating that Licensee changed the files, (9) Licensee does not use \"mx,\" \"mxml,\" \"flex,\" \"flash,\" \"livecycle\" or \"adobe\" in any new package or class names distributed with such Professional Component Source File, and (10) Licensee complies with the below Adobe\u00ae AIR\u2122 Trademark Use Terms. Any modified or merged portion of Professional Component Source Files is subject to this Agreement. For the avoidance of doubt, Licensee shall have no rights to the Professional Component Source Files (or the object code form of such files), except to the extent such Professional Component Source Files are provided to Licensee in connection with Licensee\u2019s licensing of Flex Builder Professional.\n\n(c) \"Adobe\u00ae AIR\u2122\" is a trademark of Adobe that may not be used by others except under a written license from Adobe. Licensee may not incorporate the Adobe AIR trademark, or any other Adobe trademark, in whole or in part, in the title of your Developer Programs or in your company name, domain name or the name of a service related to Adobe AIR. Licensee may indicate the interoperability of its Developer Program with the Adobe AIR runtime software, if true, by stating, for example, \"works with Adobe\u00ae AIR\u2122\" or \"for Adobe\u00ae AIR\u2122.\" Licensee may use the Adobe AIR trademark to refer to its Developer Program as an \"Adobe\u00ae AIR\u2122 application\" only as a statement that its Developer Program interoperates with the Adobe AIR runtime software. For purposes of this Agreement, the terms in this paragraph shall constitute the \"Adobe\u00ae AIR\u2122 Trademark Use Terms.\"\n\n2.1.2 Definitions Related To SDK Components.\n\n(a) \"Developer Programs\" shall mean programs that are built consisting partly of the Professional Component Source Files and other SDK Components and partly of user\u2019s Material Improvement to add to or extend the Professional Component Source Files.\n\n(b) \"End User License Agreement\" means an end user license agreement that provides a: (1) limited, nonexclusive right to use the subject Developer Program; (2) set of provisions that ensures that any sublicensee of Licensee exercising the rights in such End User License Agreement complies with all restrictions and obligations set forth herein with respect to SDK Components; (3) prohibition against reverse engineering, decompiling, disassembling or otherwise attempting to discover the source code of the subject Developer Program that is substantially similar to that set forth in Section 2.3.1 below; (4) statement that, if Licensee\u2019s customer requires any Adobe software in order to use the Developer Program, (i) Licensee\u2019s customer must obtain such Adobe software via a valid license, and (ii) Licensee\u2019s customer\u2019s use of such Adobe software must be in accordance with the terms and conditions of the end user license agreement that ships with such Adobe software; (5) statement that Licensee and its suppliers retain all right, title and interest in the subject Developer Program that is substantially similar to that set forth as Section 3 below, (6) statement that Licensee\u2019s suppliers disclaim all warranties, conditions, representations or terms with respect to the subject Developer Program, and (7) limit of liability that disclaims all liability for the benefit of Licensee\u2019s suppliers.\n\n(c) \"Material Improvement\" shall mean perceptible, measurable and definable improvements to the Professional Component Source Files that provide extended or additional significant and primary functionality that add significant business value to the Professional Component Source Files.\n\n(d) \"Professional Component Source File\" shall mean, if Licensee receives the SDK Components in connection with licensing Flex Builder, each Flex Framework source code file that is provided with the SDK Components in the directory labeled fbpro and/or another directory or directories as specified by Adobe from time to time.\n\n2.1.3 Restrictions.\n\n(a) General Restrictions. Except for the limited distribution rights as provided in Section 2.1.1 above with respect to Professional Component Source Files, Licensee may not distribute, sell, sublicense, rent, loan, or lease the SDK Components and/or any component thereof to any third party. Licensee also agrees not to add or delete any program files that would modify the functionality and/or appearance of other Adobe software and/or any component thereof. \n\n(b) Development Restrictions. Licensee agrees that Licensee will not use the SDK Components to create, develop or use any program, software or service which (1) contains any viruses, Trojan horses, worms, time bombs, cancelbots or other computer programming routines that are intended to damage, detrimentally interfere with, surreptitiously intercept or expropriate any system, data or personal information; (2) when used in the manner in which it is intended, violates any material law, statute, ordinance or regulation (including without limitation the laws and regulations governing export control, unfair competition, antidiscrimination or false advertising); or (3) interferes with the operability of other Adobe or third-party programs or software.\n\n(c) Indemnification. Licensee agrees to defend, indemnify, and hold Adobe and its suppliers harmless from and against any claims or lawsuits, including attorneys\u2019 reasonable fees, that arise or result from the use or distribution of Developer Programs, provided that Adobe gives Licensee prompt written notice of any such claim, tenders to Licensee the defense or settlement of such a claim at Licensee\u2019s expense, and cooperates with Licensee, at Licensee\u2019s expense, in defending or settling such claim.\n\n2.2 Sample Code. Licensee may modify the Sample Code solely for the purposes of designing, developing and testing Licensee\u2019s own software applications. However, Licensee is permitted to use, copy and redistribute its modified Sample Code only if all of the following conditions are met: (a) Licensee includes Adobe\u2019s copyright notice (if any) with Licensee\u2019s application, including every location in which any other copyright notice appears in such application; and (b) Licensee does not otherwise use Adobe\u2019s name, logos or other Adobe trademarks to market Licensee\u2019s application. Licensee agrees to defend, indemnify, and hold Adobe and its suppliers harmless from and against any claims or lawsuits, including attorneys\u2019 reasonable fees, that arise or result from the use or distribution of Licensee\u2019s applications, provided that Adobe gives Licensee prompt written notice of any such claim, tenders to Licensee the defense or settlement of such a claim at Licensee\u2019s expense, and cooperates with Licensee, at Licensee\u2019s expense, in defending or settling such claim.\n\n2.3 Restrictions\n\n2.3.1 No Modifications, No Reverse Engineering. Except as specifically provided herein , Licensee shall not modify, port, adapt or translate the SDK Components. Licensee shall not reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of the SDK Components. Notwithstanding the foregoing, decompiling the SDK Components is permitted to the extent the laws of Licensee\u2019s jurisdiction give Licensee the right to do so to obtain information necessary to render the SDK Components interoperable with other software; provided, however, that Licensee must first request such information from Adobe and Adobe may, in its discretion, either provide such information to Licensee or impose reasonable conditions, including a reasonable fee, on such use of the source code to ensure that Adobe\u2019s and its suppliers\u2019 proprietary rights in the source code for the SDK Components are protected.\n\n2.3.2 No Unbundling. The SDK Components may include various applications, utilities and components, may support multiple platforms and languages or may be provided to Licensee on multiple media or in multiple copies. Nonetheless, the SDK Components are designed and provided to Licensee as a single product to be used as a single product on Computers and platforms as permitted herein. Licensee is not required to use all component parts of the SDK Components, but Licensee shall not unbundle the component parts of the SDK Components for use on different Computers. Licensee shall not unbundle or repackage the SDK Components for distribution, transfer or resale.\n\n2.3.3 No Transfer. Licensee shall not sublicense, assign or transfer the SDK Components or Licensee\u2019s rights in the SDK Components, or authorize any portion of the SDK Components to be copied onto or accessed from another individual\u2019s or entity\u2019s Computer except as may be explicitly provided in this Agreement. Notwithstanding anything to the contrary in this Section 2.3.3, Licensee may transfer copies of the SDK Components installed on one of Licensee\u2019s Computers to another one of Licensee\u2019s Computers provided that the resulting installation and use of the SDK Components is in accordance with the terms of this Agreement and does not cause Licensee to exceed Licensee\u2019s right to use the SDK Components under this Agreement.\n\n2.3.4 Prohibited Use. Except as expressly authorized under this Agreement, Licensee is prohibited from: (a) using the SDK Components on behalf of third parties; (b) renting, leasing, lending or granting other rights in the SDK Components including rights on a membership or subscription basis; and (c) providing use of the SDK Components in a computer service business, third party outsourcing facility or service, service bureau arrangement, network, or time sharing basis.\n\n2.3.5 Export Rules. Licensee agrees that the SDK Components will not be shipped, transferred or exported into any country or used in any manner prohibited by the United States Export Administration Act or any other export laws, restrictions or regulations (collectively the \"Export Laws\"). In addition, if the SDK Components is identified as an export controlled item under the Export Laws, Licensee represents and warrants that Licensee is not a citizen of, or located within, an embargoed or otherwise restricted nation (including Iran, Iraq, Syria, Sudan, Libya, Cuba and North Korea) and that Licensee is not otherwise prohibited under the Export Laws from receiving the SDK Components. All rights to install and use the SDK Components are granted on condition that such rights are forfeited if Licensee fails to comply with the terms of this Agreement.\n\n3. Intellectual Property Rights.\n\nThe SDK Components and any copies that Licensee is authorized by Adobe to make are the intellectual property of and are owned by Adobe Systems Incorporated and its suppliers. The structure, organization and code of the SDK Components are the valuable trade secrets and confidential information of Adobe Systems Incorporated and its suppliers. The SDK Components is protected by copyright, including without limitation by United States Copyright Law, international treaty provisions and applicable laws in the country in which it is being used. Except as expressly stated herein, this Agreement does not grant Licensee any intellectual property rights in the SDK Components and all rights not expressly granted are reserved by Adobe.\n\n4. Updates.\n\nIf the SDK Components is an upgrade or update to a previous version of the SDK Components, Licensee must possess a valid license to such previous version in order to use such upgrade or update. All upgrades and updates are provided to Licensee subject to the terms of this Agreement on a license exchange basis. Licensee agrees that by using an upgrade or update, Licensee voluntarily terminates Licensee\u2019s right to use any previous version of the SDK Components. As an exception, Licensee may continue to use previous versions of the SDK Components on Licensee\u2019s Computers after Licensee obtains the upgrade or update but only for a reasonable period of time to assist Licensee in the transition to the upgrade or update, and further provided that such simultaneous use shall not be deemed to increase the number of copies, licensed amounts or scope of use granted to Licensee hereunder. Upgrades and updates may be licensed to Licensee by Adobe with additional or different terms.\n\n5. NO WARRANTY.\n\nNo Warranty. Licensee acknowledges that the SDK Components is provided to Licensee \"AS IS,\" and Adobe disclaims any warranty or liability obligations to Licensee of any kind. Licensee acknowledges that ADOBE MAKES NO EXPRESS, IMPLIED, OR STATUTORY WARRANTY OF ANY KIND WITH RESPECT TO THE SDK COMPONENTS INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY WITH REGARD TO PERFORMANCE, MERCHANTABILITY, SATISFACTORY QUALITY, NONINFRINGEMENT OR FITNESS FOR ANY PARTICULAR PURPOSE. Adobe is not obligated to provide maintenance, technical support or updates to Licensee for any SDK Components. The foregoing limitations, exclusions and limitations shall apply to the maximum extent permitted by applicable law, even if any remedy fails its essential purpose.\n\n6. LIMITATION OF LIABILITY.\n\nIN NO EVENT WILL ADOBE, ITS AFFILIATES OR ITS SUPPLIERS BE LIABLE TO LICENSEE FOR ANY LOSS, DAMAGES, CLAIMS OR COSTS WHATSOEVER INCLUDING ANY CONSEQUENTIAL, INDIRECT OR INCIDENTAL DAMAGES, ANY LOST PROFITS OR LOST SAVINGS, ANY DAMAGES RESULTING FROM BUSINESS INTERRUPTION, PERSONAL INJURY OR FAILURE TO MEET ANY DUTY OF CARE, OR CLAIMS BY A THIRD PARTY EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN LICENSEE\u2019S JURISDICTION. ADOBE\u2019S AGGREGATE LIABILITY AND THAT OF ITS AFFILIATES AND SUPPLIERS UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT PAID FOR THE SDK COMPONENTS, IF ANY. THIS LIMITATION WILL APPLY EVEN IN THE EVENT OF A FUNDAMENTAL OR MATERIAL BREACH OR A BREACH OF THE FUNDAMENTAL OR MATERIAL TERMS OF THIS AGREEMENT. Nothing contained in this Agreement limits Adobe\u2019s liability to Licensee in the event of death or personal injury resulting from Adobe\u2019s negligence or for the tort of deceit (fraud). Adobe is acting on behalf of its affiliates and suppliers for the purpose of disclaiming, excluding and limiting obligations, warranties and liability, but in no other respects and for no other purpose. For further information, please see the jurisdiction specific information at the end of this agreement, if any, or contact Adobe\u2019s Licensee Support Department.\n\n7. Governing Law. \n\nThis Agreement, each transaction entered into hereunder, and all matters arising from or related to this Agreement (including its validity and interpretation), will be governed and enforced by and construed in accordance with the substantive laws in force in: (a) the State of California, if a license to the SDK Components is acquired when Licensee is in the United States, Canada, or Mexico; or (b) Japan, if a license to the SDK Components is acquired when Licensee is in Japan, China, Korea, or other Southeast Asian country where all official languages are written in either an ideographic script (e.g., hanzi, kanji, or hanja), and/or other script based upon or similar in structure to an ideographic script, such as hangul or kana; or (c) England, if a license to the SDK Components is purchased when Licensee is in any other jurisdiction not described above. The respective courts of Santa Clara County, California when California law applies, Tokyo District Court in Japan, when Japanese law applies, and the competent courts of London, England, when the law of England applies, shall each have non-exclusive jurisdiction over all disputes relating to this Agreement. This Agreement will not be governed by the conflict of law rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded.\n\n8. General Provisions.\n\nIf any part of this Agreement is found void and unenforceable, it will not affect the validity of the balance of this Agreement, which shall remain valid and enforceable according to its terms. Updates may be licensed to Licensee by Adobe with additional or different terms. The English version of this Agreement shall be the version used when interpreting or construing this Agreement. This is the entire agreement between Adobe and Licensee relating to the SDK Components and it supersedes any prior representations, discussions, undertakings, communications or advertising relating to the SDK Components.\n\n9. Notice to U.S. Government End Users.\n\n9.1 Commercial Items. The SDK Components and any documentation are \"Commercial Item(s),\" as that term is defined at 48 C.F.R. Section 2.101, consisting of \"Commercial Computer Software\" and \"Commercial Computer Software Documentation,\" as such terms are used in 48 C.F.R. Section 12.212 or 48 C.F.R. Section 227.7202, as applicable. Consistent with 48 C.F.R. Section 12.212 or 48 C.F.R. Sections 227.7202-1 through 227.7202-4, as applicable, the Commercial Computer Software and Commercial Computer Software Documentation are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Unpublished-rights reserved under the copyright laws of the United States. Adobe Systems Incorporated, 345 Park Avenue, San Jose, CA 95110-2704, USA.\n\n9.2 U.S. Government Licensing of Adobe Technology. Licensee agrees that when licensing Adobe SDK Components for acquisition by the U.S. Government, or any contractor therefore, Licensee will license consistent with the policies set forth in 48 C.F.R. Section 12.212 (for civilian agencies) and 48 C.F.R. Sections 227-7202-1 and 227-7202-4 (for the Department of Defense). For U.S. Government End Users, Adobe agrees to comply with all applicable equal opportunity laws including, if appropriate, the provisions of Executive Order 11246, as amended, Section 402 of the Vietnam Era Veterans Readjustment Assistance Act of 1974 (38 USC 4212), and Section 503 of the Rehabilitation Act of 1973, as amended, and the regulations at 41 CFR Parts 60-1 through 60-60, 60-250, and 60-741. The affirmative action clause and regulations contained in the preceding sentence shall be incorporated by reference in this Agreement.\n\n10. Compliance with Licenses.\n\nAdobe may, at its expense, and no more than once every twelve (12) months, appoint its own personnel or an independent third party to verify the number of copies and installations as well as usage of the Adobe software in use by Licensee. Any such verification shall be conducted upon seven (7) business days notice, during regular business hours at Licensee\u2019s offices and shall not unreasonably interfere with Licensee\u2019s business activities. Both Adobe and its auditors shall execute a commercially reasonable non-disclosure agreement with Licensee before proceeding with the verification. If such verification shows that Licensee is using a greater number of copies of the SDK Components than that legitimately licensed, or are deploying or using the SDK Components in any way not permitted under this Agreement and which would require additional license fees, Licensee shall pay the applicable fees for such additional copies within thirty (30) days of invoice date, with such underpaid fees being the license fees as per Adobe\u2019s then-current, country specific, license fee list. If underpaid fees are in excess of five percent (5%) of the value of the fees paid under this Agreement, then Licensee shall pay such underpaid fees and Adobe\u2019s reasonable costs of conducting the verification. This Section shall survive expiration or termination of this Agreement for a period of two (2) years.\n\n11. Third-Party Beneficiary.\n\nLicensee acknowledges and agrees that Adobe\u2019s licensors (and/or Adobe if Licensee obtained the SDK Components from any party other than Adobe) are third party beneficiaries of this Agreement, with the right to enforce the obligations set forth herein with respect to the respective technology of such licensors and/or Adobe.\n\n12. Specific Provisions and Exceptions.\n\nThis section sets forth specific provisions related to certain components of the SDK Components as well as limited exceptions to the above terms and conditions. To the extent that any provision in this section is in conflict with any other term or condition in this agreement, this section will supersede such other term or condition.\n\n12.1 Limitation of Liability for Users Residing in Germany and Austria.\n\n12.1.1 If Licensee obtained the SDK Components in Germany or Austria, and Licensee usually resides in such country, then Section 6 does not apply. Instead, subject to the provisions in Section 12.1.2, Adobe and its affiliates\u2019 statutory liability for damages will be limited as follows: (i) Adobe and its affiliates will be liable only up to the amount of damages as typically foreseeable at the time of entering into the purchase agreement in respect of damages caused by a slightly negligent breach of a material contractual obligation and (ii) Adobe and its affiliates will not be liable for damages caused by a slightly negligent breach of a non-material contractual obligation.\n\n12.1.2 The aforesaid limitation of liability will not apply to any mandatory statutory liability, in particular, to liability under the German Product Liability Act, liability for assuming a specific guarantee or liability for culpably caused personal injuries.\n\n12.1.3 Licensee is required to take all reasonable measures to avoid and reduce damages, in particular to make back-up copies of the SDK Components and Licensee\u2019s computer data subject to the provisions of this agreement.\n\n13. Third Party Software.\n\nThe Software may contain third party software which requires notices and/or additional terms and conditions. Such required third party software notices and/or additional terms and conditions are located at http://www.adobe.com/go/thirdparty (or a successor website thereto) and are made a part of and incorporated by reference into this Agreement.\n\nIf Licensee has any questions regarding this agreement or if Licensee wishes to request any information from Adobe please use the address and contact information included with this product to contact the Adobe office serving Licensee\u2019s jurisdiction.\n\nAdobe is either a registered trademark or trademark of Adobe Systems Incorporated in the United States and/or other countries.\n\nAdobe_Flex_Software_Development_Kit-en_US-20071221_1748", + "json": "adobe-flex-sdk.json", + "yaml": "adobe-flex-sdk.yml", + "html": "adobe-flex-sdk.html", + "license": "adobe-flex-sdk.LICENSE" + }, + { + "license_key": "adobe-general-tou", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-adobe-general-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Adobe General Terms of Use\n\nLast updated June 18, 2014. Replaces the October 16, 2012 version in its entirety.\n\nThese terms govern your use of our website or services such as the Creative Cloud (collectively, \"Services\") and software that we include as part of the Services, including any applications, Content Files (defined below), scripts, instruction sets, and any related documentation (collectively \"Software\"). By using the Services or Software, you agree to these terms. If you have entered into another agreement with us concerning specific Services or Software, then the terms of that agreement controls where it conflicts with these terms. As discussed more in Section 3 below, you retain all rights and ownership you have in your content that you make available through the Services.\n\n1. How this Agreement Works.\n\n1.1 Choice of Law. If you reside in North America, your relationship is with Adobe Systems Incorporated, a United States company, and the Services and Software are governed by the law of California, U.S.A. If you reside outside of North America, your relationship is with Adobe Systems Software Ireland Limited, and the Services and Software are governed by the law of Ireland. You may have additional rights under the law. We do not seek to limit those rights to the extent prohibited by law.\n\n1.2 Eligibility. You may only use the Services if you are (a) over 13 years old and (b) allowed by law to enter into a binding contract.\n\n1.3 Privacy. The Privacy Policy at http://www.adobe.com/go/privacy governs any personal information you provide to us. By using the Services or Software you agree to the terms of the Privacy Policy.\n\n1.4 Availability. Pages describing the Services are accessible worldwide but this does not mean all Services or service features are available in your country, or that user-generated content available via the Services is legal in your country. We may block access to certain Services (or certain service features or content) in certain countries. It is your responsibility to make sure your use of the Services is legal where you use them. Services are not available in all languages.\n\n1.5 Software. The Software is licensed, not sold, only in accordance with these terms.\n\n1.6 Additional Terms. Some Services or Software are also subject to the additional terms below (the \"Additional Terms\"). New Additional Terms may be added from time to time.\nAcrobat.com \tBusiness Catalyst \tAdobe Translation Center \tCS6 Software\nAdobe Content Server 4 \tDigital Publishing Suite \tPhoneGap Build \tCC 2013 Software\nBehance \tEchoSign \tTypekit \tAdobe Creative SDK\nPresenter Dashboard Service \t \t \t \n\n1.7 Order of Precedence. If there is any conflict between the terms in this Agreement and the Additional Terms, then the Additional Terms govern in relation to that Service or Software.\n\n1.8 Modification. We may modify or discontinue the Services, Software, or any portions or features thereof at any time without liability to you or anyone else. However, we will make reasonable effort to notify you before we make the change. We will also allow you a reasonable time to download your content. If we discontinue a Service in its entirety, then we will provide you with a pro rata refund for any unused fees for that Service that you may have prepaid.\n\n2. Use of Service.\n\n2.1 License. Subject to your compliance with these terms and the law, you may access and use the Services.\n\n2.2 Adobe Intellectual Property. We (and our licensors) remain the sole owner of all right, title, and interest in the Services and Software. We reserve all rights not granted under these terms.\n\n2.3 Storage. When the Services provide storage, we recommend that you continue to back up your content regularly. We may create reasonable technical limits on your content, such as limits on file size, storage space, processing capacity, and other technical limits. We may suspend the Services until you are within the storage space limit associated with your account.\n\n2.4 User-Generated Content. We may host user-generated content from our users. If you access our Services, you may come across content that you find offensive or upsetting. Your sole remedy is to simply stop viewing the content. If available, you may also click on the \u2018Report\u2019 button to report the content to us.\n\n3. Your Content.\n\n3.1 Ownership. You retain all rights and ownership of your content. We do not claim any ownership rights to your content.\n\n3.2 Licenses to Your Content in Order to Operate the Services. We require certain licenses from you to your content to operate and enable the Services. When you upload content to the Services, you grant us a non-exclusive, worldwide, royalty-free, sub-licensable, and transferrable license to use, reproduce, publicly display, distribute, modify (so as to better showcase your content, for example), publicly perform, and translate the content as needed in response to user driven actions (such as when you choose to store privately or share your content with others). This license is only for the purpose of operating and improving the Services.\n\n3.3 Our Access. We will not access, view, or listen to any of your content, except as reasonably necessary to perform the Services. Actions reasonably necessary to perform the Services may include (but are not limited to) (a) responding to support requests; (b) detecting, preventing, or otherwise addressing fraud, security, unlawful, or technical issues; and (c) enforcing these terms.\n\n3.4 Sharing Your Content.\n\n(a) Sharing. Some Services may provide features that allow you to Share your content with other users or to make it public. \"Share\" means to email, post, transmit, upload, or otherwise make available (whether to us or other users) through your use of the Services. Other users may use, copy, modify, or re-share your content in many ways. Please consider carefully what you choose to Share or make public as you are entirely responsible for the content that you Share.\n\n(b) Level of Access. We do not monitor or control what others do with your content. You are responsible for determining the limitations that are placed on your content and for applying the appropriate level of access to your content. If you do not choose the access level to apply to your content, the system may default to its most permissive setting. It\u2019s your responsibility to let other users know how your content may be shared and adjust the setting related to accessing or sharing of your content.\n\n(c) Comments. The Services may allow you to comment on content. Comments are not anonymous, and may be viewed by other users. Your comments may be deleted by you, other users, or us.\n\n3.5 Termination of License. You may revoke this license to your content and terminate our rights at any time by removing your content from the Service. However, some copies of your content may be retained as part of our routine backups.\n\n3.6 Feedback. You have no obligation to provide us with ideas, suggestions, or proposals (\"Feedback\"). However, if you submit Feedback to us, then you grant us a non-exclusive, worldwide, royalty-free license that is sub-\u00adlicensable and transferrable, to use, reproduce, publicly display, distribute, modify, and publicly perform the Feedback.\n\n3.7 Account Information.\n\nYou are responsible for all activity that occurs via your account. Please notify Customer Support immediately if you become aware of any unauthorized use of your account. You may not (a) Share your account information (except with an authorized account administrator) or (b) use another person\u2019s account. Your account administrator may use your account information to manage your use and access to the Services.\n\n4. Use of Software.\n\n4.1 Subscription-Based Software License.\n\nIf we provide the Software to you as part of your subscription to use the Services, then subject to your compliance with these terms, we grant you a non-exclusive license to install and use the Software: (a) in the Territory, (b) so long as your subscription is valid, and (c) consistent with these terms and related documentation accompanying the Software. \"Territory\" means worldwide, but excludes any U.S. embargoed countries and countries where you are prohibited from using the Software or the Services. You may activate the Software on up to 2 devices (or virtual machines) at a time, if these activations are associated with the same Adobe ID for the same individual, unless stated at http://www.adobe.com/go/activation. However, you may not use the Software on these devices simultaneously.\n\n4.2 Device-Based Software License. If you have purchased a Software license based on number of devices (such as if you have purchased Creative Cloud for education), then this Section 4.2 applies:\n\n(a) License. Subject to your compliance with these terms and the license scope specified in the documentation accompanying the Software, we grant you a non-exclusive license to install and use the Software: (1) in the Territory, (2) during the term of the license, (3) within the license scope, and (4) consistent with these terms and related documentation accompanying the Software.\n\n(b) Distribution from a Server. If permitted in a license document between us and you, you may copy an image of the Software onto a computer file server within your Intranet for the purpose of downloading and installing the Software onto computers within the same Intranet. \"Intranet\" means a private, proprietary computer network you and your authorized employees and contractors can access. Intranet does not include portions of the Internet, network communities open to suppliers, vendors, or service providers, or network communities open to the public (such as membership or subscription-driven groups, associations, and similar organizations).\n\n4.3 General License. If the Software is provided as part of the Services without restrictions on subscription or number of devices, then subject to your compliance with these terms, we grant you a non-exclusive license to install and use the Software (a) in the Territory, (b) for the purpose of using and accessing of the Services, and (c) consistent with these terms and related documentation accompanying the Software.\n\n4.4 Other License Types.\n\n(a) Evaluation Version. We may designate the Software or Services as \"trial\", \"evaluation\", \"not for resale\", or other similar designation (\"Evaluation Version\"). You may install and use the Evaluation Version only during the evaluation period and only for evaluation purposes. You must not use any materials you produce with the Evaluation Version for anything other than non-commercial purposes.\n\n(b) Pre-release Version. We may designate the Software or Services as a pre-release or beta version (\"Pre\u2011release Version\"). Pre-release Version does not represent the final product and may contain bugs that may cause system or other failure and data loss. We may choose not to commercially release the Pre-release Version. You must promptly cease using the Pre-release Version and destroy all copies of Pre-release Version if we request you to do so, or if we release a commercial version of the Pre-release Version. Any separate agreement we enter into with you governing the Pre-release Version will supersede this section.\n\n(c) Education Version. If we designate the Software or Service as for use by educational users (\"Educational Version\"), then you may only use the Educational Version if you meet the eligibility requirements stated at http://www.adobe.com/go/edu_purchasing. You may install and use Educational Version only in the country where you are qualified as an educational user. If you reside in the European Economic Area, then the word \"country\" in the sentence preceding this one means the European Economic Area.\n\n(d) Content Files. \"Content Files\" means Adobe-provided sample files such as stock images or sounds. Unless the documentation or specific license associated with the Content Files state otherwise, you may use, display, modify, reproduce, and distribute any of the Content Files. However, you may not distribute the Content Files on a stand-alone basis (i.e., in circumstances in which the Content Files constitute the primary value of the product being distributed), and you must not claim any trademark rights in the Content Files or derivative works of the Content Files.\n\n(e) Software Development Kit. If the Software includes a software development kit (\"SDK\") that does not reference a separate license agreement, then you may use that SDK to develop applications that interoperate with the Software (\"Developer Application\"). The SDK may include source code of implementation examples (\"Sample Code\"), runtime components, or libraries that may be included in the Developer Application to ensure proper interoperation with the Software. You may use the SDK only for the purpose of internal development of Developer Applications and may redistribute the Sample Code, runtimes and libraries included in the SDK only as is necessary to properly implement the SDK in the Developer Application. You will indemnify us from any loss, damage, claims, or lawsuit, including attorney\u2019s fees that arise or result from any Developer Application or your use of the SDK. Any separate license agreement for an SDK will supersede this section.\n\n4.5 Restrictions and Requirements.\n\n(a) Proprietary Notices. You must ensure that any permitted copy of the Software that you make contains the same copyright and other proprietary notices that appear on or in the Software.\n\n(b) Restrictions. Unless permitted in these terms, you must not:\n\n(1) modify, port, adapt, or translate the Software;\n\n(2) reverse engineer, decompile, disassemble, or otherwise attempt to discover the source code of the Software;\n\n(3) use or offer the Software on a service bureau basis;\n\n(4) (i) circumvent technological measures intended to control access to the Software or (ii) develop, distribute, or use with the Software, products that circumvent the technological measures; or\n\n(5) rent, lease, sell, sublicense, assign, or transfer your rights in the Software, or authorize any portion of the Software to be copied onto another\u2019s device. If you purchase Creative Cloud for team or Creative Cloud for education (named user), then you may designate seats pursuant to the applicable documentation. \n\n4.6 Territory. If you purchase more than one Software license, you must not install or deploy the Software outside of the country where you purchased the license unless otherwise permitted under volume licensing program you have entered into with us. If you live in the European Economic Area, \"country\" means the European Economic Area. We may terminate the license granted herein or suspend the Creative Cloud subscription or access to the Services if we determine that you are using the Software or Services in violation of this Section.\n\n4.7 Activation.\n\nThe Software may require you to take certain steps to activate your Software or validate your subscription. Failure to activate or register the Software, validate the subscription, or a determination by us of fraudulent or unauthorized use of the Software may result in reduced functionality, inoperability of the Software, or a termination or suspension of the subscription.\n\n5. User Conduct.\n\n5.1 Responsible Use. The Adobe communities often consist of users who expect a certain degree of courtesy and professionalism. You must use the Services responsibly.\n\n5.2 Misuse. You must not misuse the Services or Software. For example, you must not:\n\n(a) copy, modify, host, sublicense, or resell the Services;\n\n(b) enable or allow others to use the Service or Software using your account information;\n\n(c) use the content or Software included in the Services to construct any kind of database;\n\n(d) access or attempt to access the Services by any means other than the interface we provided or authorized;\n\n(e) circumvent any access or use restrictions put into place to prevent certain uses of the Services;\n\n(f) Share content or engage in behavior that violates anyone\u2019s Intellectual Property Right (\"Intellectual Property Rights\" means copyright, moral rights, trademark, trade dress, patent, trade secret, unfair competition, right of privacy, right of publicity, and any other proprietary rights.);\n\n(g) Share any content that is unlawful, harmful, threatening, abusive, tortious, defamatory, libelous, vulgar, lewd, profane, invasive of another\u2019s privacy, or hateful;\n\n(h) impersonate any person or entity, or falsely state or otherwise misrepresent your affiliation with a person or entity;\n\n(i) attempt to disable, impair, or destroy the Services, software, or hardware;\n\n(j) disrupt, interfere with, or inhibit any other user from using the Services (such as stalking, intimidating, or harassing others, inciting others to commit violence, or harming minors in any way),\n\n(k) engage in chain letters, junk mails, pyramid schemes, spamming, or other unsolicited messages;\n\n(l) market or advertise any products or services through the Services unless we specifically allowed you to do so;\n\n(m) use any data mining or similar data gathering and extraction methods in connection with the Services; or\n\n(n) violate applicable law.\n\n6. Fees.\n\nYou must pay any applicable taxes, and any applicable third-party fee (including, for example telephone toll charges, mobile carrier fees, ISP charges, data plan charges, credit card fees, foreign exchange fees). We are not responsible for these fees. We may take steps to collect the fees you owe us. You are responsible for all related collection costs and expenses.\n\n7. Your Warranty and Indemnification Obligations.\n\n7.1 Warranty. By uploading your content to the Services, you agree that you have: (a) all necessary licenses and permissions, to use and Share your content and (b) the rights necessary to grant the licenses in these terms.\n\n7.2 Indemnification. You will indemnify us and our subsidiaries, affiliates, officers, agents, employees, partners, and licensors from any claim, demand, loss, or damages, including reasonable attorneys\u2019 fees, arising out of or related to your content, your use of the Services or Software, or your violation of these terms.\n\n8. Disclaimers of Warranties.\n\n8.1 Unless stated in the Additional Terms, the Services and Software are provided \"AS-IS.\" To the maximum extent permitted by law, we disclaim all warranties express or implied, including the implied warranties of non-infringement, merchantability, and fitness for a particular purpose. We make no commitments about the content within the Services. We further disclaim any warranty that (a) the Services or Software will meet your requirements or will be constantly available, uninterrupted, timely, secure, or error-free; (b) the results that may be obtained from the use of the Services or Software will be effective, accurate, or reliable; (c) the quality of the Services or Software will meet your expectations; or that (d) any errors or defects in the Services or Software will be corrected.\n\n8.2 We specifically disclaim any liability for any actions resulting from your use of any Services or Software. You may use and access the Services or Software at your own discretion and risk, and you are solely responsible for any damage to your computer system or loss of data that results from the use and access of any Service or Software.\n\n9. Limitation of Liability.\n\n9.1 Unless stated in the Additional Terms, we are not liable to you or anyone else for any special, incidental, indirect, consequential, or punitive damages whatsoever (even if we have been advised of the possibility of these damages), including those (a) resulting from loss of use, data, or profits, whether or not foreseeable, (b)based on any theory of liability, including breach of contract or warranty, negligence or other tortious action, or (c) arising from any other claim arising out of or in connection with your use of or access to the Services or Software. Nothing in these terms limits or excludes our liability for gross negligence, for our (or our employees\u2019) intentional misconduct, or for death or personal injury.\n\n9.2 Our total liability in any matter arising out of or related to these terms is limited to US $100 or the aggregate amount that you paid for access to the Service and Software during the three-month period preceding the event giving rise to the liability, whichever is larger. This limitation will apply even if we have been advised of the possibility of the liability exceeding the amount and notwithstanding any failure of essential purpose of any limited remedy.\n\n9.3 The limitations and exclusions in this Section 9 apply to the maximum extent permitted by law.\n\n10. Termination.\n\n10.1 Termination by You. You may stop using the Services at any time. Termination of your account does not relieve you of any obligation to pay any outstanding fees.\n\n10.2 Termination by Us. If we terminate these terms for reasons other than for cause, then we will make reasonable effort to notify you at least 30 days prior to termination via the email address you provide to us with instructions on how to retrieve your content. Unless stated in Additional Terms, we may at any time terminate these terms with you if:\n\n(a) you breach any provision of these terms (or act in a manner that clearly shows you do not intend to, or are unable to, comply with these terms);\n\n(b) you fail to make the timely payment of fees for the Software or the Services, if any;\n\n(c) we are required to do so by law (for example, where the provision of the Services or Software to you is, or becomes, unlawful);\n\n(d) we elect to discontinue the Services or Software, in whole or in part; or\n\n(e) there has been an extended period of inactivity in your free account.\n\n10.3 Termination by Group Administrator. Group administrators for a Service such as \"Creative Cloud for team\" may terminate a user\u2019s access to a Service at any time. If your group administrator terminates your access, then you may no longer be able to access content that you or other users of the group have shared on a shared workspace within that Service.\n\n10.4 Survival. Upon expiration or termination of these terms, any perpetual licenses you have granted, your indemnification obligations, our warranty disclaimers or limitations of liabilities, and dispute resolution provisions stated in these terms will survive. Upon the expiration or termination of the Services, some or all of the Software may cease to operate without prior notice.\n\n11. Investigations.\n\n11.1 Screening. We do not review all content uploaded to the Services, but we may use available technologies or processes to screen for certain types of illegal content (for example, child pornography) or other abusive content or behavior (for example, patterns of activity that indicate spam or phishing, or keywords).\n\n11.2 Disclosure. We may access or disclose information about you, or your use of the Services, (a) when it is required by law (such as when we receive a valid subpoena or search warrant); (b) to respond to your requests for customer service support; or (c) when we, in our discretion, think it is necessary to protect the rights, property, or personal safety of us, our users, or the public.\n\n12. Export Control Laws.\n\nThe Software, Services, content, and your use of the Software, Services, and content, are subject to U.S. and international laws, restrictions, and regulations that may govern the import, export, and use of the Software, Services, and content. You agree to comply with all the laws, restrictions, and regulations.\n\n13. Dispute Resolution.\n\n13.1 Venue. Any claim or dispute you may have against us must be resolved by (a) a court located in Santa Clara County, California, U.S.A., if the law of California, U.S.A., governs the Services, and (b) a court located in Dublin, Ireland, if the law of Ireland governs the Services. You agree to submit to the personal jurisdiction of the applicable court for the purpose of litigating the claim or dispute. The parties specifically disclaim the applicability of the U.N. Convention on Contracts for the International Sale of Goods.\n\n13.2 Injunctive Relief. Notwithstanding the foregoing, in the event of your or others\u2019 unauthorized access to or use of the Services or content in violation of these terms you agree that we are entitled to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.\n\n14. Specific Software Terms.\n\nThis section applies to specific Software and components. If there is any conflict between this section and other sections, then this section governs in relation to the relevant Software or components.\n\n14.1 Font Software. If the Software includes font software (except for fonts available under Typekit, which is governed by its Additional Terms):\n\n(a) You may provide font(s) you have used for a particular file to a commercial printer or other service bureau, and the service bureau may use the font(s) to process its file, provided the service bureau has a valid license to use that particular font software.\n\n(b) You may embed copies of the font software into its electronic documents for the purpose of printing, viewing, and editing the document. No other embedding rights are implied or permitted under this license.\n\n(c) As an exception to the above, the fonts listed at http://www.adobe.com/go/restricted_fonts re included with the Software only for purposes of operation of the Software user interface and not for inclusion within any output files. The listed fonts are not licensed under this Section 14.1. You may not copy, move, activate or use, or allow any font management tool to copy, move, activate or use, the listed fonts in or with any software application, program, or file other than the Software.\n\n(d) Open-Source Fonts. Some fonts distributed by Adobe with the Software may be open-source fonts. Your use of these open-source fonts will be governed by the applicable license terms available at http://www.adobe.com/go/font_licensing.\n\n14.2 After Effects Render Engine. If the Software includes the full version of Adobe After Effects, then you may install an unlimited number of Render Engines on computers within your Intranet which includes at least one device on which the full version of the Adobe After Effects software is installed. The term \"Render Engine\" means an installable portion of the Software that allows After Effects projects to be rendered but which cannot be used to create or modify projects and does not include the complete After Effects user interface.\n\n14.3 Acrobat. If the Software includes Acrobat Standard, Acrobat Pro, Acrobat Suite, or certain features within this software, then this Section 14.3 applies.\n\n(a) Additional Definitions.\n\n(1) \"Deploy\" means to deliver or otherwise make available, directly or indirectly, by any means including but not limited to a network or Internet, an Extended Document to one or more recipients.\n\n(2) \"Extended Document\" means a PDF file manipulated by the Software to enable the ability to locally save documents with filled-in PDF forms.\n\n(b) The Software may include enabling technology that allows you to enable PDF documents with certain features through the use of a digital credential located within the Software (\"Key\"). You must not access, attempt to access, control, disable, remove, use, or distribute the Key for any purpose.\n\n(c) For any unique Extended Document, you may only (a) Deploy that Extended Document to an unlimited number of recipients, but you may not extract data from more than 500 instances of the Extended Document (or any hardcopy representation of that Extended Document) that contains data from a recipient; or (b) Deploy an Extended Document to no more than 500 recipients without limits on the number of times you may extract data from a recipient from that Extended Document. Obtaining additional licenses to use Acrobat Standard, Acrobat Pro, or Adobe Acrobat Suite will not increase the foregoing limits (that is, the foregoing limits are the aggregate total limits regardless of how many additional licenses to use Acrobat Standard, Acrobat Pro, or Adobe Acrobat Suite you may have obtained). For the avoidance of doubt, if you purchase another Adobe product or service that allows you to send a greater number of PDF files or forms (e.g., Adobe FormsCentral or Adobe LiveCycle Reader Extensions), then the terms of that Adobe product or service supersedes the terms of this Section 14.3.\n\n(d) Digital Certificates. Digital certificates may be issued by third party certificate authorities, including Adobe Certified Document Services vendors, Adobe Approved Trust List vendors (collectively \"Certificate Authorities\"), or may be self-signed. You and the Certified Authority are responsible for the purchase, use, and reliance upon digital certificates. You are solely responsible for deciding whether or not to rely on a certificate. Unless a separate written warranty is provided to you by a Certificate Authority, your use of digital certificates is at your sole risk. You will indemnify Adobe from any and all liabilities, losses, actions, damages, or claims (including all reasonable expenses, costs, and attorneys\u2019 fees) arising out of or relating to your use of, or any reliance on, any digital certificate or Certificate Authority.\n\n14.4 Adobe Runtime. If the Software includes Adobe AIR, Adobe Flash Player, Shockwave Player, or Authorware Player (collectively \"Adobe Runtime\"), then this Section 14.4 applies:\n\n(a) Adobe Runtime Restrictions. You must not use Adobe Runtimes on any non-PC device or with any embedded or device version of any operating system. For the avoidance of doubt, and by example only, you may not use Adobe Runtimes on any (1) mobile device, set top box, handheld, phone, game console, TV, DVD player, media center (other than with Windows XP Media Center Edition and its successors), electronic billboard or other digital signage, Internet appliance or other Internet-connected device, PDA, medical device, ATM, telematic device, gaming machine, home automation system, kiosk, remote control device, or any other consumer electronics device; (2) operator-based mobile, cable, satellite, or television system; or (3) other closed system device. Additional information on licensing Adobe Runtimes is available at http://www.adobe.com/go/licensing.\n\n(b) Adobe Runtime Distribution. You must not distribute an Adobe Runtime except as a fully integrated portion of a developer application that is created using the Software, including the utilities provided with the Software, for example as part of an application that is packaged to run on the Apple iOS or Android\u2122 operating systems. Distribution of the resulting output file or developer application on a non-PC device requires you to obtain licenses which may be subject to additional royalties. It is solely your responsibility to obtain licenses for non-PC devices and pay applicable royalties; we grant no license to any third party technologies to run developer applications or output files on non-PC devices under these terms. Except as expressly provided in this Section, you may not distribute Adobe Runtime.\n\n14.5 Contribute Publishing Services. Subject to the Contribute Publishing Services software end user license agreement accompanying the Software, you may not connect to the Contribute Publishing Services software unless you have purchased a license to connect to the Contribute Publishing Services software for each individual who may connect to the Contribute Publishing Services software. However, trial versions of Adobe Contribute software may install and connect to the Contribute Publishing Services software in accordance with the Contribute Publishing Services software end user license agreement.\n\n14.6 Adobe Presenter. If the Software includes Adobe Presenter and you install or use the Adobe Connect Add-in in connection with the use of the Software, you must not install or use the Adobe Connect Add-in on anything other than a computer, and you must not install or use the Adobe Add-In on any non-PC product, including, but not limited to, a web appliance, set top box, handheld, phone, or web pad device. Further, you may only use the portion of the Software that is embedded in a presentation, information, or content created and generated using the Software (the \"Adobe Presenter Run-Time\") together with the presentation, information, or content in which it is embedded. You must not use, and must cause all licensees of the presentation, information, or content not to use, the Adobe Presenter Run-Time other than as embedded in the presentation, information or content. In addition, you must not use, and must cause all licensees of the presentation, information, or content not to, modify, reverse engineer, or disassemble the Adobe Presenter Run-Time.\n\n14.7 Flash Builder with LiveCycle Data Services Data Management Library. Adobe Flash Builder may include the fds.swc library. You must not use fds.swc for any purpose other than to provide client-side data management capabilities and as an output file within software you develop, subject to the following: You must not (a) use fds.swc to enable associations or offline capabilities within software or (b) incorporate fds.swc into any software that is similar to Adobe LiveCycle Data Services or BlazeDS. If you would like to do any of the foregoing, you will need to request a separate license from us.\n\n14.8 Digital Publishing Suite (\"DPS\") and InDesign. If the Software includes certain components designed to work with or access the DPS services (\"DPS Desktop Tools\"), then you must only install and use the DPS Desktop Tools to (a) create or produce the content to be displayed within a Content Viewer (as defined in the terms of use related to DPS; the content is referred to as \"Output\"); (b) evaluate and testing the Output; or (c) where available, accessing and using DPS. Except as explicitly permitted in this Section 14.8, you must not display, distribute, modify, or publicly perform the DPS Desktop Tools.\n\n15. Jurisdiction-Specific Terms.\n\nThis section applies to specific jurisdictions. If there is any conflict between this section and other sections, then this section governs in relation to the relevant jurisdiction.\n\n15.1 New Zealand. For consumers in New Zealand who obtain the Software for personal, domestic, or household use (not business purposes), this agreement is subject to the Consumer Guarantees Act.\n\n15.2 European Economic Area.\n\n(a) Warranty. If you obtained the Software in the European Economic Area (EEA), you usually reside in the EEA and you are a consumer (that is, your use of the Software is for personal, non-business related purposes), then your warranty period with regard to the Software is the duration of your subscription. Our entire liability related to any warranty claim and your sole and exclusive remedy under any warranty will be limited to either, at our option, support of our Software based on the warranty claim, replacement of the Software, or if support or replacement is not practicable, refund of prepaid and unused subscription fee proportionate to the specific Software. Furthermore, while these terms apply to any damages claims you make in respect of your use of the Software, we will be liable for direct losses that are reasonably foreseeable in the event of our breach of this agreement. You should take all reasonable measures to avoid and reduce damages, in particular by making backup copies of the Software and its computer data.\n\n(b) Decompilation. Nothing included in these terms limits any non-waivable right to decompile the Software that you may enjoy under the law. For example, if you are located in the European Union (EU), you may have the right under applicable law to decompile the Software if it is necessary to do so in order to achieve interoperability of the Software with another software program and we has not made this information available. Under this circumstance, you must first ask us in writing to provide the information necessary to achieve this interoperability. In addition, the decompilation may only be performed by you or someone who may use the Software on your behalf. We have the right to impose reasonable conditions before providing the information. You may use the information we supply or that you obtain only for the purpose described in this paragraph. You may not disclose the information to any third party or use the information in a manner that infringes our copyright or a copyright of one or our licensors.\n\n15.3 Australia. If you obtained the Software in Australia, then the following provision applies, notwithstanding anything stated to the contrary in these terms:\n\nNOTICE TO CONSUMERS IN AUSTRALIA:\n\nOur goods come with guarantees that cannot be excluded under the Australian Consumer Law. You are entitled to a replacement or refund for a major failure and for compensation for any other reasonably foreseeable loss or damage. You are also entitled to have the goods repaired or replaced if the goods fail to be of acceptable quality and the failure does not amount to a major failure.\n\n16. Notice to U.S. Government End Users.\n\nFor U.S. Government procurements, Software is a commercial computer software as defined in FAR 12.212 and subject to restricted rights as defined in FAR Section 52.227-19 \"Commercial Computer Software - Restricted Rights\" and DFARS 227.7202, \"Rights in Commercial Computer Software or Commercial Computer Software Documentation\", as applicable, and any successor regulations. Any use, modification, reproduction release, performance, display or disclosure of the Software by the U.S. Government must be in accordance with license rights and restrictions described in these terms.\n\n17. Notification of Copyright Infringement.\n\n17.1 DMCA. We respect the Intellectual Property Rights of others and we expect our users to do the same. We will respond to clear notices of copyright infringement consistent with the Digital Millennium Copyright Act (\"DMCA\").\n\n17.2 Take-Down Notice. If you believe that your work has been infringed in connection with the Services, please provide written notification via regular mail or via fax (not via email or phone) to our Copyright Agent (contact information below) that contains all of the following elements:\n\n(a) A physical or electronic signature of the person authorized to act on behalf of the owner of the copyright interest that is alleged to have been infringed;\n\n(b) A description of the copyrighted work(s) infringed;\n\n(c) A description of where the content that you claim is infringing is located on the Services;\n\n(d) Information sufficient to permit us to contact you, such as your physical address, telephone number, and email address;\n\n(e) A statement by you that you have a good faith belief that the use of the content identified in your notice in the manner complained of is not authorized by the copyright owner, its agent, or the law; and\n\n(f) A statement by you that the information in your notice is accurate and, under penalty of perjury, that you are the copyright owner or are authorized to act on the copyright owner\u2019s behalf.\n\nBefore you file the notification, please carefully consider whether or not the use of copyrighted material at issue is protected by the \"fair use\" doctrine, as you could be liable for costs and attorneys\u2019 fees should you file a takedown notice where there is no infringing use. If you are unsure whether a use of your copyrighted material constitutes infringement, please contact an attorney. In addition, you may wish to consult publicly available reference materials such as those found at the U.S. Copyright website or at www.chillingeffects.org.\n\n17.3 Counter-Notice. If you believe we disabled or removed access to your content as a result of an improper copyright infringement notice, please provide, pursuant to the DMCA, written notification via regular mail or via fax (not via email or phone) to our Copyright Agent (contact information below), which must contain all of the following elements:\n\n(a) A physical or electronic signature of the subscriber;\n\n(b) Identification of the content that was removed from the Services and the location of the Service on which the content appeared before it was removed;\n\n(c) A statement under penalty of perjury that you have a good faith belief that the content was removed or disabled as a result of mistake or misidentification of the content to be removed or disabled;\n\n(d) Information sufficient to permit us to contact you, such as your physical address, telephone number, and email address; and\n\n(e) A statement that you consent to jurisdiction of the Federal District court for the district where you reside (or of Santa Clara County, California if you reside outside of the United Sates) and that you will accept service of process from the person who provided notification under DMCA subsection (c)(1)(C) or an agent of the person.\n\nBefore you file a counter-notification, please carefully consider whether or not the use of the copyrighted material at issue is infringing, as you could be liable for costs and attorneys\u2019 fees in the event that a court determines your counter-notification misrepresented that the content was removed by mistake. If you are unsure whether use of the content at issue constitutes infringement, please contact an attorney. In addition, you may wish to consult publicly available reference materials such as those found at www.chillingeffects.org.\n\n17.4 Copyright Agent. Our Copyright Agent for notice of claims of copyright infringement can be reached as follows:\n\nBy mail:\nCopyright Agent\nAdobe Systems Incorporated\n601 Townsend Street\nSan Francisco, CA 94103\n\nBy fax: (415) 723\u20117869\nBy email: copyright@adobe.com\nBy telephone: (408) 536\u20114030\n\nThe Copyright Agent will not remove content from the Services in response to phone or email notifications regarding allegedly infringing content, since a valid DMCA notice must be signed, under penalty of perjury, by the copyright owner or by a person authorized to act on his or her behalf. Please submit the notifications by fax or ordinary mail only and as further described by this section. The Copyright Agent should be contacted only if you believe that your work has been used or copied in a way that constitutes copyright infringement and that the infringement is occurring on the Services. All other inquiries directed to the Copyright Agent will not be responded to.\n\n18. Compliance with Licenses.\n\nIf you are a business, company, or organization, then we may, no more than once every 12 months, upon seven 7 days\u2019 prior notice to you, appoint our personnel or an independent third party auditor who is obliged to maintain confidentiality to inspect your records, systems, and facilities to verify that your installation and use of any and all Software or Services is in conformity with its valid licenses from us. Additionally, you will provide us with all records and information requested by us in order to verify that its installation and use of any and all Software and Services is in conformity with your valid licenses from us within 30 days of our request. If the verification discloses a shortfall in licenses for the Software or Services, you will immediately acquire any necessary licenses, subscriptions, and any applicable back maintenance and support. If the underpaid fees exceed 5% of the value of the payable license fees, then you will also pay for our reasonable cost of conducting the verification.\n\n19. Miscellaneous.\n\n19.1 English Version. The English version of these terms will be the version used when interpreting or construing these terms.\n\n19.2 Notice to Adobe. You may send the notices to us to at the following address: Adobe Systems, 345 Park Avenue, San Jose, California 95110\u20112704, Attention: General Counsel.\n\n19.3 Notice to You. We may notify you by email, postal mail, postings within the Services, or other legally acceptable means.\n\n19.4 Entire Agreement. These terms constitute the entire agreement between you and us regarding your use of the Services and Software and supersede any prior agreements between you and us relating to the Services.\n\n19.5 Non-Assignment. You may not assign or otherwise transfer these terms or your rights and obligations under these terms, in whole or in part, without our written consent. We may transfer our rights under these terms to a third party.\n\n19.6 Severability. If a particular term is not enforceable, the unenforceability of that term will not affect any other terms.\n\n19.7 No Waiver. Our failure to enforce or exercise any of these terms is not a waiver of that section.\n\n20. Third-Party Notices.\n\n20.1 Third-Party Software. The Software may contain third-party software, subject to additional terms and conditions, available at http://www.adobe.com/go/thirdparty.\n\n20.2 AVC DISTRIBUTION. The following notice applies to Software containing AVC import and export functionality: THIS PRODUCT IS LICENSED UNDER THE AVC PATENT PORTFOLIO LICENSE FOR THE PERSONAL NON-COMMERCIAL USE OF A CONSUMER TO (a) ENCODE VIDEO IN COMPLIANCE WITH THE AVC STANDARD (\"AVC VIDEO\") AND/OR (b) DECODE AVC VIDEO THAT WAS ENCODED BY A CONSUMER ENGAGED IN A PERSONAL NON-COMMERCIAL ACTIVITY AND/OR WAS OBTAINED FROM A VIDEO PROVIDER LICENSED TO PROVIDE AVC VIDEO. NO LICENSE IS GRANTED OR IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED FROM MPEG LA, L.L.C. SEE http://www.adobe.com/go/mpegla.\n\n20.3 MPEG-2 DISTRIBUTION. The following notice applies to Software containing MPEG 2 import and export functionality: USE OF THIS PRODUCT OTHER THAN CONSUMER PERSONAL USE IN ANY MANNER THAT COMPLIES WITH THE MPEG 2 STANDARD FOR ENCODING VIDEO INFORMATION FOR PACKAGED MEDIA IS EXPRESSLY PROHIBITED WITHOUT A LICENSE UNDER APPLICABLE PATENTS IN THE MPEG 2 PATENT PORTFOLIO, WHICH LICENSE IS AVAILABLE FROM MPEG LA, L.L.C. 250 STEELE STREET, SUITE 300 DENVER, COLORADO 80206.\n\n21. Application Platform Terms.\n\n21.1 Apple. If the Software is downloaded from the Apple iTunes Application Store, then you acknowledge and agree to the following additional terms: (a) Apple has no liability for the Software and its content; (b) Your Use of the Software is limited to a non-transferable license to Use the Software on any iPhone\u2122, iPad\u2122 or iPod Touch\u2122 that you own or control as allowed by the Application Store Terms of Service; (c) Apple has no obligation whatsoever to furnish any maintenance or support services for the Software; (d) to the extent permitted by applicable law, Apple has no warranty obligation to the Software and Adobe will be responsible for any claims, losses, liabilities, damages, costs, or expenses attributable to any failure to conform to any warranty set forth in this Agreement; (e) Apple is not liable for any claims relating to the Software or your possession and/or Use of the Software, including, but not limited to: (i) product liability claims; (ii) any claim that the Software fails to conform to any applicable legal requirement; and (iii) consumer protection claims; (f) Apple is not liable for any third-party claims that the Software infringes a third party\u2019s intellectual property rights; and (g) Apple and its subsidiaries are third party beneficiaries of this Agreement with respect to any Software, and that Apple will have the right to enforce the Agreement against you as a third party beneficiary.\n\n21.2 Microsoft. If the Software is downloaded from the Windows Phone Apps + Game Store, then you acknowledge and agree to the following additional terms: (a) you may only Use the Software on up to five (5) Windows 8 devices associated with your account; (b) Microsoft has no liability for the Software and its content; (c) Microsoft, device manufacturers, and network operators have no obligation whatsoever to furnish any maintenance or support services for the Software; (d) to the extent permitted by applicable law, Microsoft has no warranty obligation to the Software and Adobe will be responsible for any claims, losses, liabilities, damages, costs, or expenses attributable to any failure to conform to any warranty set forth in this Agreement; (e) Microsoft is not liable for any claims relating to the Software or your possession and/or Use of the Software, including, but not limited to: (1) product liability claims; (2) any claim that the Software fails to conform to any applicable legal requirement; and (3) consumer protection claims; and (f) Microsoft is not liable for any third-party claims that the Software infringes a third party\u2019s intellectual property rights.\n\nAdobe Systems Incorporated: 345 Park Avenue, San Jose, California 95110-2704\n\nAdobe Systems Software Ireland Limited: 4-6 Riverwalk, City West Business Campus, Saggart, Dublin 24\n\nAdobe_General_Terms_of_Use-en_US-20140618_2200", + "json": "adobe-general-tou.json", + "yaml": "adobe-general-tou.yml", + "html": "adobe-general-tou.html", + "license": "adobe-general-tou.LICENSE" + }, + { + "license_key": "adobe-glyph", + "category": "Permissive", + "spdx_license_key": "Adobe-Glyph", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy of this documentation file to use, copy, publish, distribute, sublicense, and/or sell copies of the documentation, and to permit others to do the same, provided that: \n - No modification, editing or other alteration of this document is allowed; and \n - The above copyright notice and this permission notice shall be included in all copies of the documentation. \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this documentation file, to create their own derivative works from the content of this document to use, copy, publish, distribute, sublicense, and/or sell the derivative works, and to permit others to do the same, provided that the derived work is not represented as being a copy or version of this document. \n\nAdobe shall not be liable to any party for any loss of revenue or profit or for indirect, incidental, special, consequential, or other similar damages, whether based on tort (including without limitation negligence or strict liability), contract or other legal or equitable grounds even if Adobe has been advised or had reason to know of the possibility of such damages. The Adobe materials are provided on an \"AS IS\" basis. Adobe specifically disclaims all express, statutory, or implied warranties relating to the Adobe materials, including but not limited to those concerning merchantability or fitness for a particular purpose or non-infringement of any third party rights regarding the Adobe materials.", + "json": "adobe-glyph.json", + "yaml": "adobe-glyph.yml", + "html": "adobe-glyph.html", + "license": "adobe-glyph.LICENSE" + }, + { + "license_key": "adobe-indesign-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-indesign-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ADOBE SOFTWARE DEVELOPMENT KIT LICENSE FOR INDESIGN, INDESIGN SERVER AND INCOPY SOFTWARE.\n\nNOTICE TO USER: THIS IS A LICENSE BETWEEN YOU AND ADOBE. BY INDICATING YOUR ACCEPTANCE BELOW, YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS LICENSE. THIS LICENSE ACCOMPANIES THE SOFTWARE DEVELOPMENT KIT(S) FOR ADOBE INDESIGN, INDESIGN SERVER AND/OR INCOPY SOFTWARE AND RELATED EXPLANATORY MATERIALS (COLLECTIVELY, THE \"SDK\") AND INCLUDES ANY UPGRADES, MODIFIED VERSIONS, UPDATES, ADDITIONS, AND COPIES OF THE SDK LICENSED TO YOU BY ADOBE.\n\n1. Definitions.\n\n1.1 Adobe means Adobe Systems Incorporated, a Delaware corporation, 345 Park Avenue, San Jose, California 95110, if Section 11 of this License applies; otherwise, it means Adobe Systems Software Ireland Limited, 4\u20116 Riverwalk, Citywest Business Campus, Dublin 24, Ireland, a company organized under the laws of Ireland and an affiliate and licensee of Adobe Systems Incorporated.\n\n1.2 API Development Software means the SDK API (Application Programming Interface) Specification, header files, JAR files, the SDK Plug-In APIs as defined in the header files and demonstrated in plug-in example code and related information in object code format and/or as libraries, both native and Java, not otherwise made available by Adobe as a commercial product, that Adobe has included for You as part of the SDK to distribute unmodified with Your application programs.\n\n1.3 Content Files means sample and stock photographs, images, sounds, clip art and other artistic works included as part of the SDK.\n\n1.4 Developer, You and Your refer to any person or entity acquiring or using the SDK under the terms of this License.\n\n1.5 Documentation means the written materials accompanying this License, including, for example, technical specifications, file format documentation and application programming interface (API) information.\n\n1.6 Effective Date means the date that You download or otherwise access the any portion of the SDK.\n\n1.7 Sample Code means object code and/or source code, excluding Content Files, that Adobe has included for You to incorporate into Your application programs, subject to the limitations set forth in Section 2.\n\n1.8 SDK means the API information, Sample Code, Tools, Documentation and other related items. Only those items placed on Your computer extracted from the SDK archive are part of the SDK. This License does not govern Adobe Products (See Adobe Products end user license agreements for governing terms). Adobe Products refer to Adobe\u2019s application programs and technologies such as Adobe-developed plug-ins which are or may be made available for licensing to the general public, including any modified versions or upgrades thereof\n\n1.9 Tools refer to programs and Utilities that may be included for You to test or compile Your application programs. Documentation means any related explanatory materials accompanying the SDK.\n\n2. License and License Restrictions.\n\nSubject to the restrictions contained in this Section 2, Adobe grants to You a nonexclusive, nontransferable, royalty-free license to use the items in the SDK only for the purpose of internal development of application programs designed to function with Adobe products.\n\n(a) Under this License, You may use, modify or merge all or portions of the Sample Code with Your application programs and distribute it only as part of Your products in object code form only. Any modified or merged portion of the Sample Code is subject to this License. You are required to include Adobe\u2019s copyright notices on Your application programs except for those programs in which You include a copyright notice reflecting the copyright ownership of Developer in such programs. You may not use Adobe\u2019s name, logo or trademarks to market Your products. You may not assign Your rights or obligations granted under this License without the prior written consent of Adobe. Any attempted assignment or transfer without such prior written consent from Adobe shall be void and of no effect. Sample Code is compiled with a unique plug-in ID. If You distribute modified or merged versions of the Sample Code. You agree to replace Adobe\u2019s unique plug-in ID that is included in any Sample Code with a unique plug-in ID specific to You. Instructions for requesting a unique plug-in ID from Adobe may be found at http://support.adobe.com/devsup/devsup.nsf/docs/50093.htm.\n\n(b) Subject to the permissions in 2(a) above, You may use the SDK solely for the purpose of internal development.\n\n(c) You may make a limited number of copies of the SDK to be used by Your employees or consultants as provided herein, and not for general business purposes, and such employees or consultants shall be subject to this License. \nYou may use API Development Software only as provided in the Adobe specification applicable thereto, and distribute it solely with Your products on the same media. You may not modify API Development Software.\n\n(d) Content Files. Unless stated otherwise in \"ReadMe\" files associated with the Content Files, which may include specific rights and restrictions with respect to such materials, You may not use, modify, reproduce or distribute any of the Content Files. For the avoidance of doubt, the Content Files are included as examples only. You acquire no rights to the Content Files.\n\n(e) License Restrictions\n\n(i) World Ready Composer. The APIs contained in this SDK for the World Ready Composer are designed to be used for the purpose of internal development of application programs designed to function with Adobe InDesign Server. Internal development of application programs designed to function with Adobe InDesign and/or Adobe InCopy software using the World Ready Composer API\u2019s is not supported by Adobe.\n\n(ii) Localization of Adobe Products. You are prohibited from using this SDK for development of Your Developer products which would include functionality allowing for the Localization of Adobe Products. For purposes of this License, \"Localization\" means a modification to the default language of the installed Adobe Product, including but not limited to the Adobe Product\u2019s user interface.\n\n(iii) No Modifications, No Reverse Engineering. Except as specifically provided herein, You shall not (a) modify, port, adapt or translate the any portion of this SDK; (b) add or delete any program files that would modify the functionality and/or appearance of other Adobe software and/or any component thereof; or (c) reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of any portion of this SDK. Notwithstanding the foregoing, decompiling the SDK is permitted to the extent the laws of Your jurisdiction give You the right to do so to obtain information necessary to render the licensed portions of the SDK interoperable with other software; provided, however, that You must first request such information from Adobe and Adobe may, in its discretion, either provide such information to You or impose reasonable conditions, including a reasonable fee, on such use of the source code to ensure that Adobe\u2019s and its suppliers\u2019 proprietary rights in the source code for the SDK are protected.\n\n(iv) No Unbundling. The SDK may include various applications, utilities and components, may support multiple platforms and languages or may be provided to You on multiple media or in multiple copies. Nonetheless, the SDK is designed and provided to You as a single product to be used as a single product on computers and platforms as permitted herein. You are not required to use all component parts of the SDK, but You shall not unbundle or repackage the component parts of the SDK for distribution, transfer, resale or use on different computers.\n\n(v) No Transfer. You shall not sublicense, assign or transfer the SDK or Your rights in the SDK, or authorize any portion of the SDK to be copied onto or accessed from another individual\u2019s or entity\u2019s computer except as may be explicitly provided in this License. Notwithstanding anything to the contrary in this Section 2(e)(v), You may transfer copies of the SDK installed on one of Your computers to another one of Your computers provided that the resulting installation and use of the SDK is in accordance with the terms of this License and does not cause You to exceed Your right to use the SDK under this License.\n\n(vi) Prohibited Use. Except as expressly authorized under this License, You are prohibited from: (a) renting, leasing, lending or granting other rights in the SDK including rights on a membership or subscription basis; and (b) providing use of the SDK in a computer service business, third party outsourcing facility or service, service bureau arrangement, network, or time sharing basis; Failure to comply with this Section 2(e)(vi) is a breach of this License that immediately terminates all rights granted to You herein.\n\n(vii) Other Prohibitions. You will not use the SDK to create, develop or use any program, software or service that (a) contains any viruses, Trojan horses, worms, time bombs, cancelbots or other computer programming routines that are intended to damage, detrimentally interfere with, surreptitiously intercept or expropriate any system, data or personal information, (b) when used in the manner in which it is intended or marketed, violates any law, statute, ordinance, regulation or rights (including any laws, regulations or rights respecting intellectual property, computer spyware, privacy, export control, unfair competition, antidiscrimination or false advertising), or (c) interferes with the operability of Adobe or third-party programs or software.\n\n3. Proprietary Rights.\n\nThe items contained in the SDK are the intellectual property of Adobe and its suppliers and are protected by United States copyright and patent law, international treaty provisions and applicable laws of the country in which it is being used. You agree to protect all copyright and other ownership interests of Adobe and/or its suppliers in all items in the SDK supplied under this License. You agree that all copies of the items in the SDK, reproduced for any reason by You, contain the same copyright notices, and other proprietary notices, as appropriate, which appear on or in the master items delivered by Adobe in the SDK. Adobe and/or its suppliers retain title and ownership of the items in the SDK, the media on which it is recorded and all subsequent copies, regardless of the form or media in or on which the original and other copies may exist. Except as stated above, this License does not grant You any rights to patents, copyrights, trade secrets, trademarks or any other rights in respect to the items in the SDK.\n\n4. Non-Blocking of Adobe Development.\n\nYou acknowledge that Adobe is currently developing or may develop technologies and products in the future that have or may have design and/or functionality similar to products that You may develop based on Your license herein. Nothing in this License shall impair, limit or curtail Adobe\u2019s right to continue with its development, maintenance and/or distribution of Adobe\u2019s technology or products. You agree that You shall not assert in any way any patent owned by You arising out of or in connection with this SDK or modifications made thereto against Adobe, its subsidiaries or affiliates, or their customers, direct or indirect, agents and contractors (collectively, the \"Adobe Product Users\") for the manufacture, use, import, licensing, offer for sale or sale of any Adobe products.\n\n5. Confidential Information.\n\nWith respect to the API Development Software, You agree that You will treat the API Development Software with the same degree of care as You accord to Your own confidential information which You exercise reasonable care to protect. Your obligations under this section with respect to the API Development Software shall terminate when You can document that (a) it was in the public domain at or subsequent to the time it was communicated to You by Adobe through no fault of Yours, (b) it was developed by Your employees or agents independently of and without reference to any information communicated to You by Adobe; or (c) the communication was in response to a valid order by a court or other governmental body, was otherwise required by law, or was necessary to establish the rights of either party under this License.\n\n6. Open Source Software.\n\nNotwithstanding anything to the contrary, You are not licensed to (and You agree that You will not) integrate or use this SDK with any Open Source Software or otherwise take any action that could require disclosure, distribution or licensing of all or any part of the SDK in source code form, for the purpose of making derivative works, or at no charge. For the purposes of this Section 6, \"Open Source Software\" shall mean software licensed under the GNU General Public License, the GNU Lesser General Public License or any other license terms that could require, or condition Your use, modification or distribution of such software on, the disclosure, distribution or licensing of any other software in source code form, for the purpose of making derivative works, or at no charge. Any violation of the foregoing provision shall immediately terminate all of Your licenses and other rights to the SDK granted under this License.\n\n7. Term and Termination.\n\nThis License will commence upon the Effective Date and continue in perpetuity unless terminated as set forth herein. Adobe may terminate this License immediately if You breach any of its terms. Sections 1, 2(e), 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 16 and 17 will survive any termination of this License. Upon termination of this License, You will cease all use and distribution of the SDK and return to Adobe or destroy (with written confirmation of destruction) the SDK promptly at Adobe\u2019s request, together with any copies thereof.\n\n8. Disclaimer of Warranty.\n\nAdobe licenses the SDK to Developer only on an \"AS-IS\" basis. Adobe makes no representation with respect to the adequacy of any items in the SDK whether or not used by You in the development of any products for any particular purpose or with respect to their adequacy to produce any particular result. Adobe and its suppliers shall not be liable for loss or damage arising out of this License or from the distribution or use of Developers products containing portions of the SDK. ADOBE AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO IMPLIED CONDITIONS OR WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT OF ANY THIRD PARTY RIGHT IN RESPECT OF THE ITEMS IN THE SDK OR ANY SERVICES RELATED TO THE SDK.\n\nSome states or jurisdictions do not allow the exclusion or limitation of incidental, consequential or special damages, or the exclusion of implied warranties or limitations on how long an implied warranty may last, so the above limitations may not apply to You. You may have rights which vary from state to state or jurisdiction to jurisdiction. The foregoing does not affect or prejudice Your statutory rights. To the extent permissible, any implied warranties are limited to ninety (90) days. For further warranty information You may contact Adobe\u2019s Customer Support Department.\n\nAdobe is under no obligation to provide any support under this License, including upgrades or future versions of this SDK or any portions thereof, to Developer, end user or to any other party. Adobe is acting on behalf of its suppliers for the purpose of disclaiming, excluding and/or restricting obligations, warranties and liability as provided in this Section 8, but in no other respects and for no other purpose.\n\n9. Limitation of Liability.\n\nNotwithstanding any other provisions of this License, Adobe\u2019s liability to You under this License shall be limited to the amount paid by You for the SDK.\n\nIN NO EVENT WILL ADOBE OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY CONSEQUENTIAL, INCIDENTAL OR SPECIAL DAMAGES INCLUDING DAMAGES FOR ANY LOST PROFITS, LOST SAVINGS, LOSS OF DATA, COSTS, FEES OR EXPENSES OF ANY KIND OR NATURE ARISING OUT OF ANY PROVISION OF THIS LICENSE OR THE USE OR INABILITY TO USE THE ITEMS IN THE SDK, EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY ANY PARTY. Some jurisdictions do not allow the exclusion or limitation of incidental, consequential or special damages, so the above limitation or exclusion may not apply to You. Nothing contained in this License shall prejudice the statutory rights of any party dealing as a consumer.\n\n10. Indemnification.\n\nYou agree to indemnify, hold harmless and defend Adobe and its suppliers from and against any liabilities, losses, actions damages, claims or lawsuits (including product liability, warranty and intellectual property claims and all reasonable expenses, costs and attorney\u2019s fees), that arise or result from the use or distribution of Developer\u2019s products that contains or is based upon any portion of the SDK, provided that Adobe gives You prompt written notice of any such claim and cooperates with You, at Your expense, in defending or settling such claim.\n\n11. Choice Of Law.\n\nIf You are a consumer who uses the SDK for only personal non-business purposes, then this License will be governed by the laws of the state in which You purchased the license to use the SDK. If You are not such a consumer, this License is governed by and construed in accordance with the substantive laws in force: (a) in the State of California, if a license to the Software is obtained when You are in the United States, Canada, or Mexico; or (b) in Japan, if a license to the Software is obtained when You are in Japan, China, Korea, R.O.C, or other Southeast Asian country where all official languages are written in either an ideographic script (e.g., Hanzi, Kanji or Hanja), and/or other script based upon or similar in structure to an ideographic script, such as Hangul or Kana; or (c) the Republic of Ireland, if a license to the Software is obtained when You are in any other jurisdiction not described above. The respective courts of Santa Clara County, California, when California law applies, Tokyo District Court in Japan, when Japanese law applies, and the courts of the Republic of Ireland, when the law of the Republic of Ireland applies, shall each have non-exclusive jurisdiction over all disputes relating to this License. This License will not be governed by the conflict of law rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded.\n\n12. Export Rules.\n\nYou acknowledge that this Software is subject to the U.S. Export Administration Regulations (the \"EAR\") and that You will comply with the EAR. You will not export or re-export this Software, directly or indirectly, to: (a) any countries that are subject to US export restrictions (currently including, but not necessarily limited to, Cuba, Iran, North Korea, Sudan and Syria); (b) any end user who You know or have reason to know will utilize them in the design, development or production of nuclear, chemical or biological weapons, or rocket systems, space launch vehicles and sounding rockets or unmanned air vehicle systems; or (c) any end user who has been prohibited from participating in the US export transactions by any federal agency of the US government. In addition, You are responsible for complying with any local laws in Your jurisdiction which may impact Your right to import, export or use this Software. All rights to use this Software are granted on condition that such rights are forfeited if You fail to comply with the terms of this Section 12..\n\n13. Waiver.\n\nNone of the provisions of this License shall be deemed to have been waived by any act or acquiescence on the part of Adobe, its agents or employees, but only by an instrument in writing signed by an officer of Adobe.\n\n14. Notice to U.S. Government End Users.\n\nThe SDK and any documentation are \"Commercial Item(s),\" as that term is defined at 48 C.F.R. Section 2.101, consisting of \"Commercial Computer Software\" and \"Commercial Computer Software Documentation,\" as such terms are used in 48 C.F.R. Section 12.212 or 48 C.F.R. Section 227.7202, as applicable. Consistent with 48 C.F.R. Section 12.212 or 48 C.F.R. Sections 227.7202-1 through 227.7202-4, as applicable, the Commercial Computer Software and Commercial Computer Software Documentation are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Unpublished-rights reserved under the copyright laws of the United States. Adobe Systems Incorporated, 345 Park Avenue, San Jose, CA 95110-2704, USA.\n\n15. Integration.\n\nWhen conflicting language exists between this License and any other agreement included in the SDK, this License shall supersede. If either Adobe or Developer employs attorneys to enforce any rights arising out of or relating to this License, the prevailing party shall be entitled to recover reasonable attorneys\u2019 fees. You acknowledge that You have read this License, understand it and that it is the complete and exclusive statement of Your agreement with Adobe, which supersedes any prior agreement, oral or written, between Adobe and You with respect to the licensing to You of the SDK. No variation of the terms of this License will be enforceable against Adobe unless Adobe gives its express consent, in writing signed by an officer of Adobe. The English language version of this License shall be the version used in the event any dispute arises hereunder. All translations of this License are for convenience only and shall not be used by the parties or any court when interpreting or construing this License.\n\n16. Binding Agreement.\n\nThis License governs installation and use of the SDK. You agree that this License is like any written negotiated agreement signed by You. By clicking to acknowledge agreement to be bound during review of an electronic version of this License or by downloading, copying, installing or using any portion of this SDK, You accept all the terms and conditions of this License. This License is enforceable against You and any person or entity that obtains this SDK or on whose behalf they are used: for example, Your employer. If You do not agree to the terms of this License, do not use any portion of this SDK. This License shall apply to any portion of the SDK, regardless of whether other software is referred to or described herein.\n\n17. Additional Terms.\n\nYou may have a separate written agreement with Adobe that supplements or supersedes all or portions of this License. Your use of some third party materials included in the SDK may be subject to other terms and conditions typically found in a separate license agreement or a \"ReadMe\" file located near such materials or in the \"Third Party Software Notices and/or Additional Terms and Conditions\" found at http://www.adobe.com/go/thirdparty. Such other terms and conditions may require You to pass through notices to Your end users. Such other terms and conditions will supersede all or portions of this License in the event of a conflict with the terms and conditions of this License.\n\nInDesign_InCopy_InDesignServerSDK_IHC-en_US-20110502", + "json": "adobe-indesign-sdk.json", + "yaml": "adobe-indesign-sdk.yml", + "html": "adobe-indesign-sdk.html", + "license": "adobe-indesign-sdk.LICENSE" + }, + { + "license_key": "adobe-postscript", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-postscript", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Patents Pending\n\nNOTICE: All information contained herein is the property\nof Adobe Systems Incorporated.\n\nPermission is granted for redistribution of this file\nprovided this copyright notice is maintained intact and\nthat the contents of this file are not altered in any\nway from its original form.\n\nPostScript and Display PostScript are trademarks of\nAdobe Systems Incorporated which may be registered in\ncertain jurisdictions.", + "json": "adobe-postscript.json", + "yaml": "adobe-postscript.yml", + "html": "adobe-postscript.html", + "license": "adobe-postscript.LICENSE" + }, + { + "license_key": "adobe-scl", + "category": "Permissive", + "spdx_license_key": "Adobe-2006", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Please read this Source Code License Agreement carefully before using the source\ncode.\n\nAdobe Systems Incorporated grants to you a perpetual, worldwide, non-exclusive, no-\ncharge, royalty-free, irrevocable copyright license, to reproduce, prepare derivative\nworks of, publicly display, publicly perform, and distribute this source code and\nsuch derivative works in source or object code form without any attribution\nrequirements.\n\nThe name \"Adobe Systems Incorporated\" must not be used to endorse or promote products\nderived from the source code without prior written permission.\n\nYou agree to indemnify, hold harmless and defend Adobe Systems Incorporated from and\nagainst any loss, damage, claims or lawsuits, including attorney's fees that arise or\nresult from your use or distribution of the source code.\n\nTHIS SOURCE CODE IS PROVIDED \"AS IS\" AND \"WITH ALL FAULTS\", WITHOUT ANY TECHNICAL\nSUPPORT OR ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. ALSO, THERE IS NO WARRANTY OF NON-INFRINGEMENT, TITLE OR QUIET ENJOYMENT.\nIN NO EVENT SHALL MACROMEDIA OR ITS SUPPLIERS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\nANY WAY OUT OF THE USE OF THIS SOURCE CODE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.", + "json": "adobe-scl.json", + "yaml": "adobe-scl.yml", + "html": "adobe-scl.html", + "license": "adobe-scl.LICENSE" + }, + { + "license_key": "adrian", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-adrian", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You are allowed to use this source code in any open source or closed\nsource software you want. You are allowed to use the algorithms for a\nhardware solution. You are allowed to modify the source code.\nYou are not allowed to remove the name of the author from this memo or\nfrom the source code files. You are not allowed to monopolize the\nsource code or the algorithms behind the source code as your\nintellectual property. This source code is free of royalty and comes\nwith no warranty.", + "json": "adrian.json", + "yaml": "adrian.yml", + "html": "adrian.html", + "license": "adrian.LICENSE" + }, + { + "license_key": "adsl", + "category": "Permissive", + "spdx_license_key": "ADSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software code is made available \"AS IS\" without warranties of any kind.\n\nYou may copy, display, modify and redistribute the software code either by\nitself or as incorporated into your code; provided that you do not remove any\nproprietary notices.\n\nYour use of this software code is at your own risk and you waive any claim\nagainst Amazon Digital Services, Inc. or its affiliates with respect to your use\nof this software code.", + "json": "adsl.json", + "yaml": "adsl.yml", + "html": "adsl.html", + "license": "adsl.LICENSE" + }, + { + "license_key": "aes-128-3.0", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-aes-128-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "All code contained in this distributed is placed in the public domain.\n============================================================= \nDisclaimer:\nTHIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' \nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, \nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR \nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, \nOR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT \nOF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR \nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, \nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE \nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, \nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n=============================================================", + "json": "aes-128-3.0.json", + "yaml": "aes-128-3.0.yml", + "html": "aes-128-3.0.html", + "license": "aes-128-3.0.LICENSE" + }, + { + "license_key": "afl-1.1", + "category": "Permissive", + "spdx_license_key": "AFL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Academic Free License\nVersion 1.1\n\nThe Academic Free License applies to any original work of authorship\n(the \"Original Work\") whose owner (the \"Licensor\") has placed the\nfollowing notice immediately following the copyright notice for the\nOriginal Work: \"Licensed under the Academic Free License version 1.1.\"\n\nGrant of License. Licensor hereby grants to any person obtaining a\ncopy of the Original Work (\"You\") a world-wide, royalty-free,\nnon-exclusive, perpetual, non-sublicenseable license (1) to use, copy,\nmodify, merge, publish, perform, distribute and/or sell copies of the\nOriginal Work and derivative works thereof, and (2) under patent\nclaims owned or controlled by the Licensor that are embodied in the\nOriginal Work as furnished by the Licensor, to make, use, sell and\noffer for sale the Original Work and derivative works thereof, subject\nto the following conditions.\n\nRight of Attribution. Redistributions of the Original Work must\nreproduce all copyright notices in the Original Work as furnished by\nthe Licensor, both in the Original Work itself and in any\ndocumentation and/or other materials provided with the distribution of\nthe Original Work in executable form.\n\nExclusions from License Grant. Neither the names of Licensor, nor the\nnames of any contributors to the Original Work, nor any of their\ntrademarks or service marks, may be used to endorse or promote\nproducts derived from this Original Work without express prior written\npermission of the Licensor.\n\nWARRANTY AND DISCLAIMERS. LICENSOR WARRANTS THAT THE COPYRIGHT IN AND\nTO THE ORIGINAL WORK IS OWNED BY THE LICENSOR OR THAT THE ORIGINAL\nWORK IS DISTRIBUTED BY LICENSOR UNDER A VALID CURRENT LICENSE FROM THE\nCOPYRIGHT OWNER. EXCEPT AS EXPRESSLY STATED IN THE IMMEDIATELY\nPRECEEDING SENTENCE, THE ORIGINAL WORK IS PROVIDED UNDER THIS LICENSE\nON AN \"AS IS\" BASIS, WITHOUT WARRANTY, EITHER EXPRESS OR IMPLIED,\nINCLUDING, WITHOUT LIMITATION, THE WARRANTY OF NON-INFRINGEMENT AND\nWARRANTIES THAT THE ORIGINAL WORK IS MERCHANTABLE OR FIT FOR A\nPARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL\nWORK IS WITH YOU. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL\nPART OF THIS LICENSE. NO LICENSE TO ORIGINAL WORK IS GRANTED HEREUNDER\nEXCEPT UNDER THIS DISCLAIMER.\n\nLIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL\nTHEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE,\nSHALL THE LICENSOR BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT,\nSPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING\nAS A RESULT OF THIS LICENSE OR THE USE OF THE ORIGINAL WORK INCLUDING,\nWITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE,\nCOMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL\nDAMAGES OR LOSSES, EVEN IF SUCH PERSON SHALL HAVE BEEN INFORMED OF THE\nPOSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT\nAPPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH\nPARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH\nLIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR\nLIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION\nAND LIMITATION MAY NOT APPLY TO YOU.\n\nLicense to Source Code. The term \"Source Code\" means the preferred\nform of the Original Work for making modifications to it and all\navailable documentation describing how to access and modify the\nOriginal Work. Licensor hereby agrees to provide a machine-readable\ncopy of the Source Code of the Original Work along with each copy of\nthe Original Work that Licensor distributes. Licensor reserves the\nright to satisfy this obligation by placing a machine-readable copy of\nthe Source Code in an information repository reasonably calculated to\npermit inexpensive and convenient access by You for as long as\nLicensor continues to distribute the Original Work, and by publishing\nthe address of that information repository in a notice immediately\nfollowing the copyright notice that applies to the Original Work.\n\nMutual Termination for Patent Action. This License shall terminate\nautomatically and You may no longer exercise any of the rights granted\nto You by this License if You file a lawsuit in any court alleging\nthat any OSI Certified open source software that is licensed under any\nlicense containing this \"Mutual Termination for Patent Action\" clause\ninfringes any patent claims that are essential to use that software.\n\nThis license is Copyright (C) 2002 Lawrence E. Rosen. All rights\nreserved. Permission is hereby granted to copy and distribute this\nlicense without modification. This license may not be modified without\nthe express written permission of its copyright owner.\n\n--\nEND OF LICENSE.", + "json": "afl-1.1.json", + "yaml": "afl-1.1.yml", + "html": "afl-1.1.html", + "license": "afl-1.1.LICENSE" + }, + { + "license_key": "afl-1.2", + "category": "Permissive", + "spdx_license_key": "AFL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Academic Free License\n\t\tVersion 1.2\n\nThis Academic Free License applies to any original work of authorship \n(the \"Original Work\") whose owner (the \"Licensor\") has placed the \nfollowing notice immediately following the copyright notice for the \nOriginal Work:\n\nLicensed under the Academic Free License version 1.2\n\nGrant of License. Licensor hereby grants to any person obtaining a \ncopy of the Original Work (\"You\") a world-wide, royalty-free, \nnon-exclusive, perpetual, non-sublicenseable license (1) to use, copy, \nmodify, merge, publish, perform, distribute and/or sell copies of the \nOriginal Work and derivative works thereof, and (2) under patent claims \nowned or controlled by the Licensor that are embodied in the Original \nWork as furnished by the Licensor, to make, use, sell and offer for \nsale the Original Work and derivative works thereof, subject to the \nfollowing conditions.\n\nAttribution Rights. You must retain, in the Source Code of any \nDerivative Works that You create, all copyright, patent or trademark \nnotices from the Source Code of the Original Work, as well as any \nnotices of licensing and any descriptive text identified therein as an \n\"Attribution Notice.\" You must cause the Source Code for any Derivative \nWorks that You create to carry a prominent Attribution Notice reasonably \ncalculated to inform recipients that You have modified the Original Work.\n\nExclusions from License Grant. Neither the names of Licensor, nor the \nnames of any contributors to the Original Work, nor any of their \ntrademarks or service marks, may be used to endorse or promote products \nderived from this Original Work without express prior written permission \nof the Licensor.\n\nWarranty and Disclaimer of Warranty. Licensor warrants that the copyright \nin and to the Original Work is owned by the Licensor or that the Original \nWork is distributed by Licensor under a valid current license from the \ncopyright owner. Except as expressly stated in the immediately proceeding \nsentence, the Original Work is provided under this License on an \"AS IS\" \nBASIS and WITHOUT WARRANTY, either express or implied, including, without \nlimitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS \nFOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL \nWORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part \nof this License. No license to Original Work is granted hereunder except \nunder this disclaimer.\n\nLimitation of Liability. Under no circumstances and under no legal theory, \nwhether in tort (including negligence), contract, or otherwise, shall the \nLicensor be liable to any person for any direct, indirect, special, \nincidental, or consequential damages of any character arising as a result \nof this License or the use of the Original Work including, without \nlimitation, damages for loss of goodwill, work stoppage, computer failure \nor malfunction, or any and all other commercial damages or losses. This \nlimitation of liability shall not apply to liability for death or personal \ninjury resulting from Licensor's negligence to the extent applicable law \nprohibits such limitation. Some jurisdictions do not allow the exclusion or \nlimitation of incidental or consequential damages, so this exclusion and \nlimitation may not apply to You.\n\nLicense to Source Code. The term \"Source Code\" means the preferred form of \nthe Original Work for making modifications to it and all available \ndocumentation describing how to modify the Original Work. Licensor hereby \nagrees to provide a machine-readable copy of the Source Code of the Original \nWork along with each copy of the Original Work that Licensor distributes. \nLicensor reserves the right to satisfy this obligation by placing a \nmachine-readable copy of the Source Code in an information repository \nreasonably calculated to permit inexpensive and convenient access by You for \nas long as Licensor continues to distribute the Original Work, and by \npublishing the address of that information repository in a notice immediately \nfollowing the copyright notice that applies to the Original Work.\n\nMutual Termination for Patent Action. This License shall terminate \nautomatically and You may no longer exercise any of the rights granted to You \nby this License if You file a lawsuit in any court alleging that any OSI \nCertified open source software that is licensed under any license containing \nthis \"Mutual Termination for Patent Action\" clause infringes any patent \nclaims that are essential to use that software.\n\nRight to Use. You may use the Original Work in all ways not otherwise \nrestricted or conditioned by this License or by law, and Licensor promises \nnot to interfere with or be responsible for such uses by You.\n\nThis license is Copyright (C) 2002 Lawrence E. Rosen. All rights reserved. \nPermission is hereby granted to copy and distribute this license without \nmodification. This license may not be modified without the express written \npermission of its copyright owner.", + "json": "afl-1.2.json", + "yaml": "afl-1.2.yml", + "html": "afl-1.2.html", + "license": "afl-1.2.LICENSE" + }, + { + "license_key": "afl-2.0", + "category": "Permissive", + "spdx_license_key": "AFL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Academic Free License\nv. 2.0\n\nThis Academic Free License (the \"License\") applies to any original work of authorship (the \"Original Work\") whose owner (the \"Licensor\") has placed the following notice immediately following the copyright notice for the Original Work:\n\n Licensed under the Academic Free License version 2.0\n\n1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following:\n\n a) to reproduce the Original Work in copies;\n\n b) to prepare derivative works (\"Derivative Works\") based upon the Original Work;\n\n c) to distribute copies of the Original Work and Derivative Works to the public;\n\n d) to perform the Original Work publicly; and\n\n e) to display the Original Work publicly. \n\n2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works.\n\n3) Grant of Source Code License. The term \"Source Code\" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work.\n\n4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license.\n\n5) This section intentionally omitted.\n\n6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an \"Attribution Notice.\" You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work.\n7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an \"AS IS\" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer.\n\n8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You.\n\n9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions.\n\n10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, for patent infringement (i) against Licensor with respect to a patent applicable to software or (ii) against any entity with respect to a patent applicable to the Original Work (but excluding combinations of the Original Work with other software or hardware).\n\n11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License.\n\n12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including anyluding any appeal of such action. This section shall survive the termination of this License.\n\n13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable.\n\n14) Definition of \"You\" in This License. \"You\" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, \"You\" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, \"control\" means (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.\n\n15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You.", + "json": "afl-2.0.json", + "yaml": "afl-2.0.yml", + "html": "afl-2.0.html", + "license": "afl-2.0.LICENSE" + }, + { + "license_key": "afl-2.1", + "category": "Permissive", + "spdx_license_key": "AFL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Academic Free License\nv. 2.1\n\nThis Academic Free License (the \"License\") applies to any original work of authorship (the \"Original Work\") whose owner (the \"Licensor\") has placed the following notice immediately following the copyright notice for the Original Work:\n\nLicensed under the Academic Free License version 2.1\n\n1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following:\n\na) to reproduce the Original Work in copies;\n\nb) to prepare derivative works (\"Derivative Works\") based upon the Original Work;\n\nc) to distribute copies of the Original Work and Derivative Works to the public;\n\nd) to perform the Original Work publicly; and\n\ne) to display the Original Work publicly.\n\n2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works.\n\n3) Grant of Source Code License. The term \"Source Code\" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work.\n\n4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license.\n\n5) This section intentionally omitted.\n\n6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an \"Attribution Notice.\" You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work.\n\n7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an \"AS IS\" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer.\n\n8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You.\n\n9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions.\n\n10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware.\n\n11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. \u00a7 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License.\n\n12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License.\n\n13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable.\n\n14) Definition of \"You\" in This License. \"You\" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, \"You\" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, \"control\" means (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.\n\n15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You.\n\nThis license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner.", + "json": "afl-2.1.json", + "yaml": "afl-2.1.yml", + "html": "afl-2.1.html", + "license": "afl-2.1.LICENSE" + }, + { + "license_key": "afl-3.0", + "category": "Permissive", + "spdx_license_key": "AFL-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This Academic Free License (the \"License\") applies to any original work of authorship (the \"Original Work\") whose owner (the \"Licensor\") has placed the following licensing notice adjacent to the copyright notice for the Original Work:\n\nLicensed under the Academic Free License version 3.0\n\n1) Grant of Copyright License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, for the duration of the copyright, to do the following:\n\na) to reproduce the Original Work in copies, either alone or as part of a collective work;\n\nb) to translate, adapt, alter, transform, modify, or arrange the Original Work, thereby creating derivative works (\"Derivative Works\") based upon the Original Work;\n\nc) to distribute or communicate copies of the Original Work and Derivative Works to the public, under any license of your choice that does not contradict the terms and conditions, including Licensor's reserved rights and remedies, in this Academic Free License;\n\nd) to perform the Original Work publicly; and\n\ne) to display the Original Work publicly.\n\n2) Grant of Patent License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, for the duration of the patents, to make, use, sell, offer for sale, have made, and import the Original Work and Derivative Works.\n\n3) Grant of Source Code License. The term \"Source Code\" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work.\n\n4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior permission of the Licensor. Except as expressly stated herein, nothing in this License grants any license to Licensor's trademarks, copyrights, patents, trade secrets or any other intellectual property. No patent license is granted to make, use, sell, offer for sale, have made, or import embodiments of any patent claims other than the licensed claims defined in Section 2. No license is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under terms different from this License any Original Work that Licensor otherwise would have a right to license.\n\n5) External Deployment. The term \"External Deployment\" means the use, distribution, or communication of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether those works are distributed or communicated to those persons or made available as an application intended for use over a network. As an express condition for the grants of license hereunder, You must treat any External Deployment by You of the Original Work or a Derivative Work as a distribution under section 1(c).\n\n6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent, or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an \"Attribution Notice.\" You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work.\n\n7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately preceding sentence, the Original Work is provided under this License on an \"AS IS\" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of non-infringement, merchantability or fitness for a particular purpose. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to the Original Work is granted by this License except under this disclaimer.\n\n8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to anyone for any indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to the extent applicable law prohibits such limitation.\n\n9) Acceptance and Termination. If, at any time, You expressly assented to this License, that assent indicates your clear and irrevocable acceptance of this License and all of its terms and conditions. If You distribute or communicate copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. This License conditions your rights to undertake the activities listed in Section 1, including your right to create Derivative Works based upon the Original Work, and doing so without honoring these terms and conditions is prohibited by copyright law and international treaty. Nothing in this License is intended to affect copyright exceptions and limitations (including \"fair use\" or \"fair dealing\"). This License shall terminate immediately and You may no longer exercise any of the rights granted to You by this License upon your failure to honor the conditions in Section 1(c).\n\n10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware.\n\n11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of copyright or patent law in the appropriate jurisdiction. This section shall survive the termination of this License.\n\n12) Attorneys' Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License.\n\n13) Miscellaneous. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable.\n\n14) Definition of \"You\" in This License. \"You\" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, \"You\" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, \"control\" means (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.\n\n15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You.\n\n16) Modification of This License. This License is Copyright \u00a9 2005 Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the \"Modified License\") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the \"Academic Free License\" or \"AFL\" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice \"Licensed under \" or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process.", + "json": "afl-3.0.json", + "yaml": "afl-3.0.yml", + "html": "afl-3.0.html", + "license": "afl-3.0.LICENSE" + }, + { + "license_key": "afmparse", + "category": "Permissive", + "spdx_license_key": "Afmparse", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This file may be freely copied and redistributed as long as: \n\n 1) This entire notice continues to be included in the file, \n\n 2) If the file has been modified in any way, a notice of such modification\n is conspicuously indicated.\n\nPostScript, Display PostScript,and Adobe are registered trademarks of Adobe\nSystems Incorporated.\n\nTHE INFORMATION BELOW IS FURNISHED AS IS, IS SUBJECT TO CHANGE WITHOUT NOTICE,\nAND SHOULD NOT BE CONSTRUED AS A COMMITMENT BY ADOBE SYSTEMS INCORPORATED. ADOBE\nSYSTEMS INCORPORATED ASSUMES NO RESPONSIBILITY OR LIABILITY FOR ANY ERRORS OR\nINACCURACIES, MAKES NO WARRANTY OF ANY KIND (EXPRESS, IMPLIED OR STATUTORY) WITH\nRESPECT TO THIS INFORMATION, AND EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR PARTICULAR PURPOSES AND NONINFRINGEMENT OF THIRD\nPARTY RIGHTS.", + "json": "afmparse.json", + "yaml": "afmparse.yml", + "html": "afmparse.html", + "license": "afmparse.LICENSE" + }, + { + "license_key": "afpl-8.0", + "category": "Copyleft", + "spdx_license_key": "Aladdin", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Aladdin Free Public License\n(Version 8, November 18, 1999)\n\nCopyright (C) 1994, 1995, 1997, 1998, 1999 Aladdin Enterprises,\nMenlo Park, California, U.S.A. All rights reserved.\n\nNOTE: This License is not the same as any of the GNU Licenses published by the\nFree Software Foundation. Its terms are substantially different from those of\nthe GNU Licenses. If you are familiar with the GNU Licenses, please read this\nlicense with extra care.\n\nAladdin Enterprises hereby grants to anyone the permission to apply this License\nto their own work, as long as the entire License (including the above notices\nand this paragraph) is copied with no changes, additions, or deletions except\nfor changing the first paragraph of Section 0 to include a suitable description\nof the work to which the license is being applied and of the person or entity\nthat holds the copyright in the work, and, if the License is being applied to a\nwork created in a country other than the United States, replacing the first\nparagraph of Section 6 with an appropriate reference to the laws of the\nappropriate country.\n\n0. Subject Matter \nThis License applies to the computer program known as \"Aladdin Ghostscript.\" The\n\"Program\", below, refers to such program. The Program is a copyrighted work\nwhose copyright is held by Aladdin Enterprises (the \"Licensor\"). Please note\nthat Aladdin Ghostscript is neither the program known as \"GNU Ghostscript\" nor\nthe version of Ghostscript available for commercial licensing from Artifex\nSoftware Inc.\n\nA \"work based on the Program\" means either the Program or any derivative work of\nthe Program, as defined in the United States Copyright Act of 1976, such as a\ntranslation or a modification.\n\nBY MODIFYING OR DISTRIBUTING THE PROGRAM (OR ANY WORK BASED ON THE PROGRAM), YOU\nINDICATE YOUR ACCEPTANCE OF THIS LICENSE TO DO SO, AND ALL ITS TERMS AND\nCONDITIONS FOR COPYING, DISTRIBUTING OR MODIFYING THE PROGRAM OR WORKS BASED ON\nIT. NOTHING OTHER THAN THIS LICENSE GRANTS YOU PERMISSION TO MODIFY OR\nDISTRIBUTE THE PROGRAM OR ITS DERIVATIVE WORKS. THESE ACTIONS ARE PROHIBITED BY\nLAW. IF YOU DO NOT ACCEPT THESE TERMS AND CONDITIONS, DO NOT MODIFY OR\nDISTRIBUTE THE PROGRAM.\n\n1. Licenses.\nLicensor hereby grants you the following rights, provided that you comply with\nall of the restrictions set forth in this License and provided, further, that\nyou distribute an unmodified copy of this License with the Program:\n\n(a)\nYou may copy and distribute literal (i.e., verbatim) copies of the Program's\nsource code as you receive it throughout the world, in any medium.\n\n(b)\nYou may modify the Program, create works based on the Program and distribute\ncopies of such throughout the world, in any medium.\n\n\n2. Restrictions.\nThis license is subject to the following restrictions:\n\n(a)\nDistribution of the Program or any work based on the Program by a commercial\norganization to any third party is prohibited if any payment is made in\nconnection with such distribution, whether directly (as in payment for a copy of\nthe Program) or indirectly (as in payment for some service related to the\nProgram, or payment for some product or service that includes a copy of the\nProgram \"without charge\"; these are only examples, and not an exhaustive\nenumeration of prohibited activities). The following methods of distribution\ninvolving payment shall not in and of themselves be a violation of this\nrestriction:\n\n(i)\nPosting the Program on a public access information storage and retrieval service\nfor which a fee is received for retrieving information (such as an on-line\nservice), provided that the fee is not content-dependent (i.e., the fee would be\nthe same for retrieving the same volume of information consisting of random\ndata) and that access to the service and to the Program is available independent\nof any other product or service. An example of a service that does not fall\nunder this section is an on-line service that is operated by a company and that\nis only available to customers of that company. (This is not an exhaustive\nenumeration.)\n\n(ii)\nDistributing the Program on removable computer-readable media, provided that the\nfiles containing the Program are reproduced entirely and verbatim on such media,\nthat all information on such media be redistributable for non-commercial\npurposes without charge, and that such media are distributed by themselves\n(except for accompanying documentation) independent of any other product or\nservice. Examples of such media include CD-ROM, magnetic tape, and optical\nstorage media. (This is not intended to be an exhaustive list.) An example of a\ndistribution that does not fall under this section is a CD-ROM included in a\nbook or magazine. (This is not an exhaustive enumeration.)\n\n(b)\nActivities other than copying, distribution and modification of the Program are\nnot subject to this License and they are outside its scope. Functional use\n(running) of the Program is not restricted, and any output produced through the\nuse of the Program is subject to this license only if its contents constitute a\nwork based on the Program (independent of having been made by running the\nProgram).\n\n(c)\nYou must meet all of the following conditions with respect to any work that you\ndistribute or publish that in whole or in part contains or is derived from the\nProgram or any part thereof (\"the Work\"):\n\n(i)\nIf you have modified the Program, you must cause the Work to carry prominent\nnotices stating that you have modified the Program's files and the date of any\nchange. In each source file that you have modified, you must include a prominent\nnotice that you have modified the file, including your name, your e-mail address\n(if any), and the date and purpose of the change;\n\n(ii)\nYou must cause the Work to be licensed as a whole and at no charge to all third\nparties under the terms of this License;\n\n(iii)\nIf the Work normally reads commands interactively when run, you must cause it,\nat each time the Work commences operation, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is no warranty\n(or else, saying that you provide a warranty). Such notice must also state that\nusers may redistribute the Work only under the conditions of this License and\ntell the user how to view the copy of this License included with the Work.\n(Exceptions: if the Program is interactive but normally prints or displays such\nan announcement only at the request of a user, such as in an \"About box\", the\nWork is required to print or display the notice only under the same\ncircumstances; if the Program itself is interactive but does not normally print\nsuch an announcement, the Work is not required to print an announcement.);\n\n(iv)\nYou must accompany the Work with the complete corresponding machine-readable\nsource code, delivered on a medium customarily used for software interchange.\nThe source code for a work means the preferred form of the work for making\nmodifications to it. For an executable work, complete source code means all the\nsource code for all modules it contains, plus any associated interface\ndefinition files, plus the scripts used to control compilation and installation\nof the executable code. If you distribute with the Work any component that is\nnormally distributed (in either source or binary form) with the major components\n(compiler, kernel, and so on) of the operating system on which the executable\nruns, you must also distribute the source code of that component if you have it\nand are allowed to do so;\n\n(v)\nIf you distribute any written or printed material at all with the Work, such\nmaterial must include either a written copy of this License, or a prominent\nwritten indication that the Work is covered by this License and written\ninstructions for printing and/or displaying the copy of the License on the\ndistribution medium;\n\n(vi)\nYou may not impose any further restrictions on the recipient's exercise of the\nrights granted herein.\n\nIf distribution of executable or object code is made by offering the equivalent\nability to copy from a designated place, then offering equivalent ability to\ncopy the source code from the same place counts as distribution of the source\ncode, even though third parties are not compelled to copy the source code along\nwith the object code.\n\n3. Reservation of Rights.\nNo rights are granted to the Program except as expressly set forth herein. You\nmay not copy, modify, sublicense, or distribute the Program except as expressly\nprovided under this License. Any attempt otherwise to copy, modify, sublicense\nor distribute the Program is void, and will automatically terminate your rights\nunder this License. However, parties who have received copies, or rights, from\nyou under this License will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n4. Other Restrictions.\nIf the distribution and/or use of the Program is restricted in certain countries\nfor any reason, Licensor may add an explicit geographical distribution\nlimitation excluding those countries, so that distribution is permitted only in\nor among countries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n5. Limitations.\nTHE PROGRAM IS PROVIDED TO YOU \"AS IS,\" WITHOUT WARRANTY. THERE IS NO WARRANTY\nFOR THE PROGRAM, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT OF THIRD PARTY RIGHTS. THE ENTIRE RISK AS TO THE QUALITY AND\nPERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU\nASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL\nLICENSOR, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS\nPERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,\nINCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE\nTHE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED\nINACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE\nPROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY\nHAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n6. General.\n\nThis License is governed by the laws of the State of California, U.S.A.,\nexcluding choice of law rules.\n\nIf any part of this License is found to be in conflict with the law, that part\nshall be interpreted in its broadest meaning consistent with the law, and no\nother parts of the License shall be affected.\n\nFor United States Government users, the Program is provided with RESTRICTED\nRIGHTS. If you are a unit or agency of the United States Government or are\nacquiring the Program for any such unit or agency, the following apply:\n\nIf the unit or agency is the Department of Defense (\"DOD\"), the Program and its\ndocumentation are classified as \"commercial computer software\" and \"commercial\ncomputer software documentation\" respectively and, pursuant to DFAR Section\n227.7202, the Government is acquiring the Program and its documentation in\naccordance with the terms of this License. If the unit or agency is other than\nDOD, the Program and its documentation are classified as \"commercial computer\nsoftware\" and \"commercial computer software documentation\" respectively and,\npursuant to FAR Section 12.212, the Government is acquiring the Program and its\ndocumentation in accordance with the terms of this License.", + "json": "afpl-8.0.json", + "yaml": "afpl-8.0.yml", + "html": "afpl-8.0.html", + "license": "afpl-8.0.LICENSE" + }, + { + "license_key": "afpl-9.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-afpl-9.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Aladdin Free Public License\n(Version 9, September 18, 2000)\n\nCopyright (C) 1994, 1995, 1997, 1998, 1999, 2000 Aladdin Enterprises,\nMenlo Park, California, U.S.A. All rights reserved.\n\nNOTE: This License is not the same as any of the GNU Licenses published by the\nFree Software Foundation. Its terms are substantially different from those of\nthe GNU Licenses. If you are familiar with the GNU Licenses, please read this\nlicense with extra care.\n\nAladdin Enterprises hereby grants to anyone the permission to apply this License\nto their own work, as long as the entire License (including the above notices\nand this paragraph) is copied with no changes, additions, or deletions except\nfor changing the first paragraph of Section 0 to include a suitable description\nof the work to which the license is being applied and of the person or entity\nthat holds the copyright in the work, and, if the License is being applied to a\nwork created in a country other than the United States, replacing the first\nparagraph of Section 6 with an appropriate reference to the laws of the\nappropriate country.\n\nThis License is not an Open Source license: among other things, it places\nrestrictions on distribution of the Program, specifically including sale of the\nProgram. While Aladdin Enterprises respects and supports the philosophy of the\nOpen Source Definition, and shares the desire of the GNU project to keep\nlicensed software freely redistributable in both source and object form, we feel\nthat Open Source licenses unfairly prevent developers of useful software from\nbeing compensated proportionately when others profit financially from their\nwork. This License attempts to ensure that those who receive, redistribute, and\ncontribute to the licensed Program according to the Open Source and Free\nSoftware philosophies have the right to do so, while retaining for the\ndeveloper(s) of the Program the power to make those who use the Program to\nenhance the value of commercial products pay for the privilege of doing so.\n\n0. Subject Matter\nThis License applies to the computer programs known as \"AFPL Ghostscript\",\n\"AFPL Ghostscript PCL5e\", \"AFPL Ghostscript PCL5c\", and \"AFPL Ghostscript\nPXL\". The \"Program\", below, refers to such program. The Program is\na copyrighted work whose copyright is held by Artifex Software Inc., located\nin San Rafael California and artofcode LLC, located in Benicia, California\n(the \"Licensor\"). Please note that AFPL Ghostscript is neither the program\nknown as \"GNU Ghostscript\" nor the version of Ghostscript available for\ncommercial licensing from Artifex Software Inc.\n\nA \"work based on the Program\" means either the Program or any derivative work of\nthe Program, as defined in the United States Copyright Act of 1976, such as a\ntranslation or a modification.\n\nBY MODIFYING OR DISTRIBUTING THE PROGRAM (OR ANY WORK BASED ON THE PROGRAM), YOU\nINDICATE YOUR ACCEPTANCE OF THIS LICENSE TO DO SO, AND ALL ITS TERMS AND\nCONDITIONS FOR COPYING, DISTRIBUTING OR MODIFYING THE PROGRAM OR WORKS BASED ON\nIT. NOTHING OTHER THAN THIS LICENSE GRANTS YOU PERMISSION TO MODIFY OR\nDISTRIBUTE THE PROGRAM OR ITS DERIVATIVE WORKS. THESE ACTIONS ARE PROHIBITED BY\nLAW. IF YOU DO NOT ACCEPT THESE TERMS AND CONDITIONS, DO NOT MODIFY OR\nDISTRIBUTE THE PROGRAM.\n\n1. Licenses.\nLicensor hereby grants you the following rights, provided that you comply with\nall of the restrictions set forth in this License and provided, further, that\nyou distribute an unmodified copy of this License with the Program:\n\n(a)\nYou may copy and distribute literal (i.e., verbatim) copies of the Program's\nsource code as you receive it throughout the world, in any medium.\n\n(b)\nYou may modify the Program, create works based on the Program and distribute\ncopies of such throughout the world, in any medium.\n\n\n2. Restrictions.\nThis license is subject to the following restrictions:\n\n(a)\nDistribution of the Program or any work based on the Program by a commercial\norganization to any third party is prohibited if any payment is made in\nconnection with such distribution, whether directly (as in payment for a copy of\nthe Program) or indirectly (as in payment for some service related to the\nProgram, or payment for some product or service that includes a copy of the\nProgram \"without charge\"; these are only examples, and not an exhaustive\nenumeration of prohibited activities). The following methods of distribution\ninvolving payment shall not in and of themselves be a violation of this\nrestriction:\n\n(i)\nPosting the Program on a public access information storage and retrieval service\nfor which a fee is received for retrieving information (such as an on-line\nservice), provided that the fee is not content-dependent (i.e., the fee would be\nthe same for retrieving the same volume of information consisting of random\ndata) and that access to the service and to the Program is available independent\nof any other product or service. An example of a service that does not fall\nunder this section is an on-line service that is operated by a company and that\nis only available to customers of that company. (This is not an exhaustive\nenumeration.)\n\n(ii)\nDistributing the Program on removable computer-readable media, provided that the\nfiles containing the Program are reproduced entirely and verbatim on such media,\nthat all information on such media be redistributable for non-commercial\npurposes without charge, and that such media are distributed by themselves\n(except for accompanying documentation) independent of any other product or\nservice. Examples of such media include CD-ROM, magnetic tape, and optical\nstorage media. (This is not intended to be an exhaustive list.) An example of a\ndistribution that does not fall under this section is a CD-ROM included in a\nbook or magazine. (This is not an exhaustive enumeration.)\n\n(b)\nActivities other than copying, distribution and modification of the Program are\nnot subject to this License and they are outside its scope. Functional use\n(running) of the Program is not restricted, and any output produced through the\nuse of the Program is subject to this license only if its contents constitute a\nwork based on the Program (independent of having been made by running the\nProgram).\n\n(c)\nYou must meet all of the following conditions with respect to any work that you\ndistribute or publish that in whole or in part contains or is derived from the\nProgram or any part thereof (\"the Work\"):\n\n(i)\nIf you have modified the Program, you must cause the Work to carry prominent\nnotices stating that you have modified the Program's files and the date of any\nchange. In each source file that you have modified, you must include a prominent\nnotice that you have modified the file, including your name, your e-mail address\n(if any), and the date and purpose of the change;\n\n(ii)\nYou must cause the Work to be licensed as a whole and at no charge to all third\nparties under the terms of this License;\n\n(iii)\nIf the Work normally reads commands interactively when run, you must cause it,\nat each time the Work commences operation, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is no warranty\n(or else, saying that you provide a warranty). Such notice must also state that\nusers may redistribute the Work only under the conditions of this License and\ntell the user how to view the copy of this License included with the Work.\n(Exceptions: if the Program is interactive but normally prints or displays such\nan announcement only at the request of a user, such as in an \"About box\", the\nWork is required to print or display the notice only under the same\ncircumstances; if the Program itself is interactive but does not normally print\nsuch an announcement, the Work is not required to print an announcement.);\n\n(iv)\nYou must accompany the Work with the complete corresponding machine-readable\nsource code, delivered on a medium customarily used for software interchange.\nThe source code for a work means the preferred form of the work for making\nmodifications to it. For an executable work, complete source code means all the\nsource code for all modules it contains, plus any associated interface\ndefinition files, plus the scripts used to control compilation and installation\nof the executable code. If you distribute with the Work any component that is\nnormally distributed (in either source or binary form) with the major components\n(compiler, kernel, and so on) of the operating system on which the executable\nruns, you must also distribute the source code of that component if you have it\nand are allowed to do so;\n\n(v)\nIf you distribute any written or printed material at all with the Work, such\nmaterial must include either a written copy of this License, or a prominent\nwritten indication that the Work is covered by this License and written\ninstructions for printing and/or displaying the copy of the License on the\ndistribution medium;\n\n(vi)\nYou may not impose any further restrictions on the recipient's exercise of the\nrights granted herein.\n\nIf distribution of executable or object code is made by offering the equivalent\nability to copy from a designated place, then offering equivalent ability to\ncopy the source code from the same place counts as distribution of the source\ncode, even though third parties are not compelled to copy the source code along\nwith the object code.\n\n3. Reservation of Rights.\nNo rights are granted to the Program except as expressly set forth herein. You\nmay not copy, modify, sublicense, or distribute the Program except as expressly\nprovided under this License. Any attempt otherwise to copy, modify, sublicense\nor distribute the Program is void, and will automatically terminate your rights\nunder this License. However, parties who have received copies, or rights, from\nyou under this License will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n4. Other Restrictions.\nIf the distribution and/or use of the Program is restricted in certain countries\nfor any reason, Licensor may add an explicit geographical distribution\nlimitation excluding those countries, so that distribution is permitted only in\nor among countries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n5. Limitations.\nTHE PROGRAM IS PROVIDED TO YOU \"AS IS,\" WITHOUT WARRANTY. THERE IS NO WARRANTY\nFOR THE PROGRAM, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT OF THIRD PARTY RIGHTS. THE ENTIRE RISK AS TO THE QUALITY AND\nPERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU\nASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL\nLICENSOR, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS\nPERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,\nINCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE\nTHE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED\nINACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE\nPROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY\nHAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n6. General.\n\nThis License is governed by the laws of the State of California, U.S.A.,\nexcluding choice of law rules.\n\nIf any part of this License is found to be in conflict with the law, that part\nshall be interpreted in its broadest meaning consistent with the law, and no\nother parts of the License shall be affected.\n\nFor United States Government users, the Program is provided with RESTRICTED\nRIGHTS. If you are a unit or agency of the United States Government or are\nacquiring the Program for any such unit or agency, the following apply:\n\nIf the unit or agency is the Department of Defense (\"DOD\"), the Program and its\ndocumentation are classified as \"commercial computer software\" and \"commercial\ncomputer software documentation\" respectively and, pursuant to DFAR Section\n227.7202, the Government is acquiring the Program and its documentation in\naccordance with the terms of this License. If the unit or agency is other than\nDOD, the Program and its documentation are classified as \"commercial computer\nsoftware\" and \"commercial computer software documentation\" respectively and,\npursuant to FAR Section 12.212, the Government is acquiring the Program and its\ndocumentation in accordance with the terms of this License.", + "json": "afpl-9.0.json", + "yaml": "afpl-9.0.yml", + "html": "afpl-9.0.html", + "license": "afpl-9.0.LICENSE" + }, + { + "license_key": "agentxpp", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-agentxpp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "AGENTX++ LICENSE AGREEMENT \n==========================\n\nTHIS LICENSE AGREEMENT (this \"Agreement\") is made effective as of the date the\nproduct is installed by and between (i) Frank Fock, the author of AgentX++\n(\"LICENSOR\") and the party executing this Agreement as Licensee (\"LICENSEE\").\n\n\n1. DEFINITIONS.\n\n1.1 The term \"Software Product\" means Frank Fock's AgentX++ computer software\n(including Source Code, derived Object Code, and derived Executable Code as\ndefined in Section 1.3, 1.4, and 1.5) and documentation thereof, as specified in\nExhibit A, that is provided by LICENSOR to LICENSEE hereunder, including bug\nfixes and updates thereto provided by LICENSOR to LICENSEE in connection with\nthis Agreement. The term \"derived\" in the above context refers to the process of\ncreating machine executable code from the original Source Code only. It does\nnot refer to amendment or alteration of the original Source Code by LICENSOR\nor any third party.\n\n1.2 The term \"Intellectual Property Rights\" means patent rights, copyright\nrights, trade secret rights, and any other intellectual property rights.\n\n1.3 The term \"Executable Code\" is a fully compiled and linked program that\ncontains any code derived from the Software Product. It can no longer be altered\nor combined with any other code. Executable code is ready to be executed by a\ncomputer and is essentially a complete software image for use in a specific\nproduct. \n\n1.4 The term \"Object Code\" is any compiled version of the Software Product that\ncan be linked and therefore combined with other code to create Executable Code.\nExamples of Object Code are libraries and software development kits, in\nparticular SNMP agent development kits. \n\n1.5 The term \"Source Code\" is the human readable form of the Software Product,\nas specified in Exhibit A.\n\n1.6 Documentation means the documentation regarding the Licensed Software\nprovided by LICENSOR to LICENSEE hereunder.\n\n1.7 The term \"Site\" is a specific address belonging to a single business unit\noperating at that address.\n\n\n2. GRANT OF LICENSE.\n\n2.1 Source Code Site License. Subject to the terms and conditions of this\nAgreement, and upon payment by LICENSEE to LICENSOR of the one-time license fee\nset forth in Addendum A, LICENSOR grants LICENSEE a perpetual (subject to\ntermination rights in Section 6), non-exclusive, non-transferable license to\nreproduce, use, modify, or have modified by a third party contractor\n(modifications in accordance to Section 2.6) subject to a confidentiality\nagreement no less restrictive than this Agreement, the Source Code for\ninternal use only, for the sole purpose of developing AgentX-enabled SNMP\nagents at the Site (hereafter \"Licensed Site\") specified by LICENSEE during\nlicense purchase. Additionally, Customer\u2019s contractors and employees reporting\ndirectly and only to a manager at the Licensed Site, such as telecommuters, may\nuse the Software Product at remote locations. Off-site employees re-porting in\nany way to a manager at their location are not covered under this Site License. \n\n2.2 Except as specified in 2.1, neither the Software Product Source Code nor\nObject Code derived from the Software Product may be redistributed or resold.\nExecutable Code programs derived from the Software Product may be redistributed\nand resold without limitation and without royalty, provided that LICENSEE\nadded significant functionality to those derived Excecutable Code programs.\nFunctionality in this context refers to the program's behavior, not appearance.\n\n2.3 No Sublicense Right. LICENSEE has no right to transfer, or sublicense\nthe Licensed Software to any third party, except as specified in 2.2 and\nexcept if the third party takes over the business of LICENSEE. \n\n2.4 Other Restrictions in License Grants. LICENSEE may not: (i) copy the\nLicensed Software, except as necessary to use the Licensed Software in\naccordance with the license granted under Section 2.1 and 2.2, and\nexcept for a reasonable number of backup copies.\n\n2.5 No Trademark License. LICENSEE has no right or license to use any trademark\nof LICENSOR during or after the term of this Agreement.\n\n2.6 Proprietary Notices. The Licensed Software is copyrighted. All proprietary\nnotices incorporated in, marked on, or affixed to the Licensed Software by\nLICENSOR shall be duplicated by LICENSEE on all copies, in whole or in part, in\nany form of the Licensed Software and not be altered, removed, or obliterated on\nsuch copies.\n\n2.7 Reservation. LICENSOR reserve all rights and licenses to the Licensed\nSoftware not expressly granted to LICENSEE under this Agreement.\n\n2.8 Delivery. Upon execution of this Agreement, and payment of the amounts due\nand owing under this Agreement, LICENSOR will provide LICENSEE with one (1) copy\nof the Software Product by downloading from LICENSOR's Web site.\n\n\n\n3. PRODUCT WARRANTY.\n\n3.1. LICENSOR warrants to LICENSEE that, at the date of delivery of the Software\nProduct to LICENSEE and for a period ending 90 days following the date of\ndelivery of the Software Product to LICENSEE the Software Product shall perform\nsubstantially in accordance with the published specifications and\nDocumentation. If notified in writing by LICENSEE, LICENSOR may, at its\noption, correct significant program errors in the Software Product within a\nreasonable time period. THE FOREGOING PRODUCT WARRANTY IS IN LIEU OF ALL OTHER\nWARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, WHETHER\nIMPOSED BY CONTRACT, STATUTE, COURSE OF DEALING, CUSTOM OR USAGE OR\nOTHERWISE.\n\n3.2. In no event shall LICENSOR be liable to LICENSEE, in excess of the\nprice paid to LICENSOR by LICENSEE for the Software Product hereunder, for any\nbreach of warranty or any claim, loss or damage arising from or relating to the\ninstallation, use or performance of the Software Product (including, without\nlimitation, any indirect, special, incidental or consequential damages).\n\n3.3. LICENSOR reserves the right at any time to make changes to the Software\nProduct.\n\n3.4. IN NO EVENT SHALL LICENSOR BE LIABLE (WHETHER IN TORT, NEGLIGENCE,\nCONTRACT, WARRANTY, PRODUCT LIABILITY OR OTHERWISE) FOR ANY INDIRECT,\nINCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES OR LOSS OF PROFITS OR SAVINGS\nARISING OUT OF ITS PERFORMANCE OR NONPERFORMANCE OF TERMS OF THIS AGREEMENT OR\nTHE USE, INABILITY TO USE OR RESULTS OF USE OF THE SOFTWARE PRODUCT EVEN IF\nLICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n3.5 In no event will LICENSOR be liable for any third-party products used with,\nor installed in, the Software Product. LICENSOR does not warrant the\ncompatibility of the Software Product with any third-party products, whether\nhardware or software.\n\n3.6 The above sections do not apply for liability for damages caused by gross\nnegligence or wilful default.\n\n3.7 General Provision. This warranty shall not apply in any case of amendment or\nalterations of the Software Product made by LICENSEE. \n\n\n\n4. INTELLECTUAL AND PROPERTY INDEMNIFICATION.\n\n4.1. LICENSOR agrees to indemnify and hold LICENSEE harmless from any final\naward of costs and damages against LICENSEE for any action based on infringement\nof any German intellectual property rights as a result of the use of the\nLicensed Software: (i) under the terms and conditions specified herein; (ii)\nunder normal use; and (iii) not in combination with other items; provided\nthat LICENSOR is promptly notified in writing of any such suit or claim\nagainst LICENSEE and further provided that LICENSEE permits LICENSOR to\ndefend, compromise or settle the same and gives LICENSOR all available\ninformation, reasonable assistance and authority to enable LICENSOR to do\nso. LICENSOR'S LIABILITY TO LICENSEE PURSUANT TO THIS ARTICLE IS LIMITED TO THE\nTOTAL FEES PAID BY LICENSEE TO LICENSOR IN THE CALENDAR YEAR IN WHICH ANY FINAL\nAWARD OF COSTS AND DAMAGES IS DUE AND OWING.\n\n\n5. TRADE SECRETS AND PROPRIETARY INFORMATION.\n\n5.1. LICENSEE acknowledges that LICENSOR is the owner of the Software Product,\nthat the Software Product is confidential in nature and not in the public\ndomain, that LICENSOR claims all intellectual and industrial property rights\ngranted by law therein and that, except as set forth herein, LICENSOR does not\nhereby grant any rights or ownership of the Software Product to LICENSEE or\nany third party. Except as set forth herein, LICENSEE agrees not to copy or\notherwise reproduce the Software Product, in whole or in part, without\nLICENSOR's prior written consent. LICENSEE further agrees to take all\nreasonable steps to ensure that no unauthorized persons shall have access to the\nSoftware Product and that all authorized persons having access to the Software\nProduct shall refrain from any such disclosure, duplication or\nreproduction except to the extent reasonably required in the performance of\nLICENSEE'S rights under this Agreement.\n\n5.2. LICENSEE agrees to accord the Software Product and the Documentation and\nall other confidential information relating to this Agreement the same degree\nand methods of protection as LICENSEE undertakes with respect to its\nconfidential information, trade secrets and other proprietary data.\n\n5.3. LICENSEE agrees not to challenge, directly or indirectly, the right, title\nand interest of LICENSOR in and to the Software Product, nor the\nvalidity or enforceability of LICENSOR's rights under applicable law. LICENSEE\nagrees not to directly or indirectly, register, apply for registration or\nattempt to acquire any legal protection for the Software Product or any\nproprietary rights therein or to take any other action which may adversely\naffect LICENSOR's right, title or interest in or to the Software Product in any\njurisdiction.\n\n5.4. LICENSEE acknowledges that, in the event of a material breach by LICENSEE\nof its obligations under this Article 5, LICENSOR may immediately\nterminate this Agreement, without liability to LICENSEE and may bring an\nappropriate legal action to enjoin any such breach hereof, and shall be\nentitled to recover from LICENSEE reasonable legal fees and costs in\naddition to other appropriate relief.\n\n5.5. LICENSEE agrees to notify LICENSOR immediately and in writing of all\ncircumstances surrounding the unauthorized possession or use of the Software\nProduct and Documentation by any person or entity. LICENSEE agrees to cooperate\nfully with LICENSOR in any litigation relating to or arising from such\nunauthorized possession or use.\n\n\n6. TERMINATION. \n\n6.1. LICENSOR may terminate this Agreement at any time after the occurrence of\nany of the following events if LICENSOR provides 30 days notice of its intention\nto terminate as a result of the occurrence and LICENSEE fails to cure such\noccurrence within such 30 days:\n\n(a) LICENSEE is declared or acknowledges that it is insolvent or otherwise\nunable to pay its debts as they become due or upon the filing of any proceeding\n(whether voluntary or involuntary) for bankruptcy, insolvency or relief from\ncreditors of LICENSEE; \n\n(b) LICENSEE assigns or transfers this Agreement or any of its rights to\nobligations hereunder, without LICENSOR's prior written consent; or \n\n(c) LICENSEE violates any material provision of this Agreement, including\nwithout limitation, the payment obligations set forth in Addendum A.\n\n6.2. LICENSEE may terminate this Agreement at any time after the occurrence of\nany of the following events if LICENSEE provides 30 days notice of its intention\nto terminate as a result of the occurrence and LICENSOR fails to cure such\noccurrence within such 30 days: \n\n(a) LICENSOR is declared or acknowledges that it is insolvent or otherwise\nunable to pay its debts as they become due or upon the filing of any\nproceeding (whether voluntary or involuntary) for bankruptcy, insolvency or\nrelief from creditors or LICENSOR; or \n\n(b) LICENSOR violates any material provision of this Agreement.\n\n6.3. Upon the termination of this Agreement for any reason, LICENSEE will\ndiscontinue all use of the Software Product and, within ten (10) days after\ntermination, will destroy or delete all copies of the Software Product then\nin its possession, including but not limited to, any back-up or archival copies\nof the Software Product and Documentation. At LICENSOR's request, LICENSEE\nwill verify in writing to LICENSOR that such actions have been taken.\n\n6.4. No termination of this Agreement for any reason whatsoever shall in any way\naffect the continuing obligations of the parties under Articles 5 hereof.\n\n\n7. APPLICABLE LAW\n\nThis LICENSE shall be deemed to have been made in, and shall be construed\npursuant to, the laws of Germany, without reference to conflicts of laws\nprinciples. All controversies and disputes arising out of or relating to this\nAgreement shall be submitted to the exclusive jurisdiction of Esslingen am\nNeckar, Germany, as long as LICENSEE is deemed to be a merchant (as defined by\nHandelsgesetzbuch, \u00a71-7). The United Nations Convention on Contracts\nfor the International Sale of Goods is specifically disclaimed. \n\n\n\n8. GENERAL PROVISIONS.\n\n8.1. This Agreement does not create any relationship of association,\npartnership, joint venture or agency between the parties.\n\n8.2. This Agreement (including the Exhibit and Addendum attached to the\nAgreement) sets forth the entire agreement and understandings between the\nparties hereto with respect to the subject matter hereof. This Agreement\nmerges all previous discussions and negotiations between the parties and\nsupersedes and replaces any and every other agreement, which may have existed\nbetween LICENSOR and LICENSEE with respect to the contents hereof.\n\n8.3. Except to the extent and in the manner specified in this Agreement, any\nmodification or amendment of any provision of this Agreement must be in writing\nand bear the signature of the duly authorized representative of each party.\n\n8.4. The failure of either party to exercise any right granted herein, or to\nrequire the performance by the other party hereto of any provision if this\nAgreement, or the waiver by either party of any breach of this Agreement, shall\nnot prevent a subsequent exercise or enforcement of such provisions or be deemed\na waiver of any subsequent breach of the same or any other provision of this\nAgreement.\n\n8.5. Except in the case of merger, acquisition or the sale of substantial assets\nor equity of Licensee or assignment to any direct or indirect subsidiary or\naffiliate of LICENSEE, LICENSEE shall not sell, assign or transfer any of its\nrights, duties or obligations hereunder without the prior written consent of\nLICENSOR. LICENSOR reserves the right to assign or transfer this Agreement or\nany of its rights, duties and obligations hereunder, to any direct or\nindirect subsidiary or affiliate of LICENSOR.\n\n8.6. All notices required by this Agreement must be sent by certified mail in\norder to be deemed effective when sent to the following:\n\nFOR LICENSOR:\n\nFrank Fock \nMaximilian-Kolbe-Str. 10 \n73257 Koengen, Germany\n\n\nEXHIBIT A\n\nLicensed Software\n\nAgentX++\n\na. Source Code - (ANSI C++ for Linux, Solaris, Win32) \n Includes AgentX++ and Agent++Win32 Source Code.\n\nb. Executable Code - AgentX++Win32 Master Agent (Win XP/2000/NT4)\n\n\nADDENDUM A\n\nFor evaluation purposes and non commercial use only, a free license is granted,\nprovided that the LINCENSEE accepts this license agreement. \n\nIn order to obtain a license to use AgentX++ in a commercial environment,\nLICENSEE has to purchase a commercial license from LICENSOR. The actual pricing\nlist and other related information can be found at http://www.agentpp.com", + "json": "agentxpp.json", + "yaml": "agentxpp.yml", + "html": "agentxpp.html", + "license": "agentxpp.LICENSE" + }, + { + "license_key": "agere-bsd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-agere-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SOFTWARE LICENSE\n\nThis software is provided subject to the following terms and conditions,\nwhich you should read carefully before using the software. Using this\nsoftware indicates your acceptance of these terms and conditions. If you do\nnot agree with these terms and conditions, do not use the software.\n\nRedistribution and use in source or binary forms, with or without\nmodifications, are permitted provided that the following conditions are met:\n\n. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following Disclaimer as comments in the code as\n well as in the documentation and/or other materials provided with the\n distribution.\n\n. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following Disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n. Neither the name of Agere Systems Inc. nor the names of the contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nDisclaimer\n\nTHIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, INFRINGEMENT AND THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ANY\nUSE, MODIFICATION OR DISTRIBUTION OF THIS SOFTWARE IS SOLELY AT THE USERS OWN\nRISK. IN NO EVENT SHALL AGERE SYSTEMS INC. OR CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, INCLUDING, BUT NOT LIMITED TO, CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\nOF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGE.", + "json": "agere-bsd.json", + "yaml": "agere-bsd.yml", + "html": "agere-bsd.html", + "license": "agere-bsd.LICENSE" + }, + { + "license_key": "agere-sla", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-agere-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Agere Systems WinModem End User SOFTWARE LICENSE AGREEMENT\n\n\nYOU SHOULD READ THE TERMS AND CONDITIONS OF THIS AGREEMENT BEFORE \nYOU DOWNLOAD AND USE THE AGERE SYSTEMS WINMODEM LICENSED SOFTWARE. \nONCE YOU HAVE READ THIS LICENSE AGREEMENT AND AGREE TO ITS TERMS, \nYOU MAY DOWNLOAD AND USE THE AGERE SYSTEMS WINMODEM LICENSED SOFTWARE. \nDOWNLOADING OR USING THE AGERE SYSTEMS WINMODEM LICENSED SOFTWARE SHOWS \nYOUR ACCEPTANCE OF THE TERMS OF THIS LICENSE AGREEMENT. \n\nThe terms and conditions of this Agreement will apply to the Agere \nSystems WinModem Software (hereafter \"Software\") supplied under this Agreement \nand any derivatives obtained therefrom, including any copy. The term Software \nincludes programs and related documentation supplied herewith.\n\nThe following file is made available under the standard Linux license, \na copy of which may be found at .\nserial.c\nserial24.c\n \nThese additional files are not derived from any Linux open source content, \nand are subject to the following restrictions.\nltmodem.c\nlinuxif.h\nltmdmobj.o\nMakefile\nltinst\nltuninst\nreadme.txt\n\n1.0 TITLE AND LICENSE GRANT\n\n\t1.1\tThe Software is copyrighted and/or contains proprietary \n information protected by law. All Software and all copies \n thereof are and will remain the sole property of Agere Systems or \n its suppliers. Agere Systems hereby grants you a non-exclusive right \n to use the Software, in whatever form recorded, which is furnished to \n you under or in contemplation of this Agreement, in an Agere Systems \n winmodem. Any other use of the Software or removal of the Software from \n a country in which use is licensed shall automatically terminate this license.\n\n\t1.2\tYou agree to use your best efforts to see that any user of the Software \n licensed hereunder complies with the terms and conditions of this Agreement.\n\n\n2.0 SOFTWARE USE\n\n\t2.1\tYou are permitted to make copies of the Software provided that any such copy \n shall contain the same copyright notice and proprietary marking included on \n the original Software.\n\n\t2.2\tYou agree not to merge or combine any portion of the Software with any other \n software, other than the Linux operating system, unless expressly permitted by \n the laws of the jurisdiction where you are located. Any portion of the Software \n merged or combined with the other software will continue to be the subject of the \n terms and conditions of this Agreement and you agree to reproduce on the merged \n or combined portion of the Software the copyright and other proprietary rights \n notices included in the original Software.\n\n 2.3 Redistribution and Usage\n Agere permits use and limited redistribution of this Licensed Software in source and \n binary forms, with or without modification, subject to the following terms and conditions, \n in addition to the terms mentioned in this agreement. \n \n 2.3.1 \tAgere Systems reserves the right not to allow a third party to reuse or \n redistribute the software, at its sole discretion.\n \n 2.3.2\tUser hereby agrees not to remove or alter any copyright, trademark, credits \n and other proprietary notices contained within or associated with the Licensed \n Software, and shall include all such unaltered copyright, trademark, credits and \n other proprietary notices on or in every copy of the Software.\n\n 2.3.3\tNotwithstanding any other provisions in this Agreement to the contrary, any \n modifications or alterations made to the Licensed Software shall cause any \n warranties and intellectual property indemnifications to become null and \n void and of no further effect.\n\n3.0 DISCLAIMER OF WARRANTY\n\n\t3.1 You understand and acknowledge that the Software may contain errors, bugs or other \n defects. The Software is provided on AS-IS basis, without warranty of any kind.\n\n\t3.2 Agere Systems has used reasonable efforts to minimize defects or errors in the Software. \n HOWEVER, YOU ASSUME THE RISK OF ANY AND ALL DAMAGE OR LOSS FROM USE OR INABILITY TO USE \n THE SOFTWARE. Specifically, but not in limitation of the foregoing disclaimers, Agere \n Systems does not warrant that the functions of the Software will meet your requirements \n or that the Software operation will be error-free or uninterrupted.\n\n\t3.3 Agere Systems bears no responsibility for supplying assistance for fixing or for \n communicating known errors to you pertaining to the Software supplied hereunder.\n\n\t3.4 YOU UNDERSTAND THAT AGERE SYSTEMS, ITS AFFILIATES, CONTRACTORS, SUPPLIERS, AND AGENTS \n MAKE NO WARRANTIES, EXPRESS OR IMPLIED, AND SPECIFICALLY DISCLAIM ANY WARRANTY OF \n MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.\n\n4.0 EXCLUSIVE REMEDIES AND LIMITATION OF LIABILITIES\n\n\t4.1 Regardless of any other provisions of this Agreement, neither Agere Systems nor its \n affiliates, contractors, suppliers, or agents shall be liable for any indirect, incidental, \n or consequential damages (including lost profits) sustained or incurred in connection with \n the use, operation, or inability to use the Software or for damages due to causes beyond \n the reasonable control of Agere Systems, its affiliates, contractors, suppliers, and agents \n attributable to any service, products, or action of any other person.\n\n\t4.2 This Agreement shall be construed in accordance with and governed by the laws of the \n State of New York.\n\nYOU ACKNOWLEDGE THAT YOU HAVE READ THIS AGREEMENT AND UNDERSTAND IT, AND THAT BY DOWNLOADING OR USING \nTHE SOFTWARE, YOU AGREE TO BE BOUND BY ITS TERMS AND CONDITIONS. YOU FURTHER AGREE THAT THIS AGREEMENT \nIS THE COMPLETE AND EXCLUSIVE STATEMENT OF THE RIGHTS AND LIABILITIES OF THE PARTIES. THIS AGREEMENT \nSUPERCEDES ALL PRIOR ORAL AGREEMENTS, PROPOSALS OR UNDERSTANDINGS, AND ANY OTHER COMMUNICATIONS BETWEEN \nUS RELATING TO THE SUBJECT MATTER OF THIS AGREEMENT.", + "json": "agere-sla.json", + "yaml": "agere-sla.yml", + "html": "agere-sla.html", + "license": "agere-sla.LICENSE" + }, + { + "license_key": "ago-private-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ago-private-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Ago's Private License 1.0:\n-----------------------------\n\nRedistribution and use in binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n1. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n2. The binary and source may not be sold and/or given away for free.\n3. The licensee may only create binaries for his own usage, not for any\n third parties.\n4. The person using this sourcecode is a developer of said sourcecode.\n\nRedistribution and use in source forms, with or without modification,\nare not permitted.\n\nThis license may be changed without prior notice.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\nIN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "ago-private-1.0.json", + "yaml": "ago-private-1.0.yml", + "html": "ago-private-1.0.html", + "license": "ago-private-1.0.LICENSE" + }, + { + "license_key": "agpl-1.0", + "category": "Copyleft", + "spdx_license_key": "AGPL-1.0-only", + "other_spdx_license_keys": [ + "AGPL-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "text": "AFFERO GENERAL PUBLIC LICENSE\n\nVersion 1, March 2002\n\nCopyright \u00a9 2002 Affero Inc.\n510 Third Street - Suite 225, San Francisco, CA 94107, USA\n\nThis license is a modified version of the GNU General Public License copyright\n(C) 1989, 1991 Free Software Foundation, Inc. made with their permission.\nSection 2(d) has been added to cover use of software over a computer network.\n\nEveryone is permitted to copy and distribute verbatim copies of this license\ndocument, but changing it is not allowed.\n\nPreamble\n\nThe licenses for most software are designed to take away your freedom to share\nand change it. By contrast, the Affero General Public License is intended to\nguarantee your freedom to share and change free software--to make sure the\nsoftware is free for all its users. This Public License applies to most of\nAffero's software and to any other program whose authors commit to using it.\n(Some other Affero software is covered by the GNU Library General Public License\ninstead.) You can apply it to your programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. This\nGeneral Public License is designed to make sure that you have the freedom to\ndistribute copies of free software (and charge for this service if you wish),\nthat you receive source code or can get it if you want it, that you can change\nthe software or use pieces of it in new free programs; and that you know you can\ndo these things.\n\nTo protect your rights, we need to make restrictions that forbid anyone to deny\nyou these rights or to ask you to surrender the rights. These restrictions\ntranslate to certain responsibilities for you if you distribute copies of the\nsoftware, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether gratis or for a\nfee, you must give the recipients all the rights that you have. You must make\nsure that they, too, receive or can get the source code. And you must show them\nthese terms so they know their rights.\n\nWe protect your rights with two steps: (1) copyright the software, and (2) offer\nyou this license which gives you legal permission to copy, distribute and/or\nmodify the software.\n\nAlso, for each author's protection and ours, we want to make certain that\neveryone understands that there is no warranty for this free software. If the\nsoftware is modified by someone else and passed on, we want its recipients to\nknow that what they have is not the original, so that any problems introduced by\nothers will not reflect on the original authors' reputations.\n\nFinally, any free program is threatened constantly by software patents. We wish\nto avoid the danger that redistributors of a free program will individually\nobtain patent licenses, in effect making the program proprietary. To prevent\nthis, we have made it clear that any patent must be licensed for everyone's free\nuse or not licensed at all.\n\nThe precise terms and conditions for copying, distribution and modification\nfollow.\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n0. This License applies to any program or other work which contains a notice\nplaced by the copyright holder saying it may be distributed under the terms of\nthis Affero General Public License. The \"Program\", below, refers to any such\nprogram or work, and a \"work based on the Program\" means either the Program or\nany derivative work under copyright law: that is to say, a work containing the\nProgram or a portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is included without\nlimitation in the term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not covered by\nthis License; they are outside its scope. The act of running the Program is not\nrestricted, and the output from the Program is covered only if its contents\nconstitute a work based on the Program (independent of having been made by\nrunning the Program). Whether that is true depends on what the Program does.\n\n1. You may copy and distribute verbatim copies of the Program's source code as\nyou receive it, in any medium, provided that you conspicuously and appropriately\npublish on each copy an appropriate copyright notice and disclaimer of warranty;\nkeep intact all the notices that refer to this License and to the absence of any\nwarranty; and give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and you may at\nyour option offer warranty protection in exchange for a fee.\n\n2. You may modify your copy or copies of the Program or any portion of it, thus\nforming a work based on the Program, and copy and distribute such modifications\nor work under the terms of Section 1 above, provided that you also meet all of\nthese conditions:\n\n* a) You must cause the modified files to carry prominent notices stating that\nyou changed the files and the date of any change.\n\n* b) You must cause any work that you distribute or publish, that in whole or in\npart contains or is derived from the Program or any part thereof, to be licensed\nas a whole at no charge to all third parties under the terms of this License.\n\n* c) If the modified program normally reads commands interactively when run, you\nmust cause it, when started running for such interactive use in the most\nordinary way, to print or display an announcement including an appropriate\ncopyright notice and a notice that there is no warranty (or else, saying that\nyou provide a warranty) and that users may redistribute the program under these\nconditions, and telling the user how to view a copy of this License. (Exception:\nif the Program itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print an\nannouncement.)\n\n* d) If the Program as you received it is intended to interact with users\nthrough a computer network and if, in the version you received, any user\ninteracting with the Program was given the opportunity to request transmission\nto that user of the Program's complete source code, you must not remove that\nfacility from your modified version of the Program or work based on the Program,\nand must offer an equivalent opportunity for all users interacting with your\nProgram through a computer network to request immediate transmission by HTTP of\nthe complete source code of your modified version or other derivative work.\n\nThese requirements apply to the modified work as a whole. If identifiable\nsections of that work are not derived from the Program, and can be reasonably\nconsidered independent and separate works in themselves, then this License, and\nits terms, do not apply to those sections when you distribute them as separate\nworks. But when you distribute the same sections as part of a whole which is a\nwork based on the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the entire whole,\nand thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest your\nrights to work written entirely by you; rather, the intent is to exercise the\nright to control the distribution of derivative or collective works based on the\nProgram.\n\nIn addition, mere aggregation of another work not based on the Program with the\nProgram (or with a work based on the Program) on a volume of a storage or\ndistribution medium does not bring the other work under the scope of this\nLicense.\n\n3. You may copy and distribute the Program (or a work based on it, under Section\n2) in object code or executable form under the terms of Sections 1 and 2 above\nprovided that you also do one of the following:\n\n* a) Accompany it with the complete corresponding machine-readable source code,\nwhich must be distributed under the terms of Sections 1 and 2 above on a medium\ncustomarily used for software interchange; or,\n\n* b) Accompany it with a written offer, valid for at least three years, to give\nany third party, for a charge no more than your cost of physically performing\nsource distribution, a complete machine-readable copy of the corresponding\nsource code, to be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily used for software interchange; or,\n\n* c) Accompany it with the information you received as to the offer to\ndistribute corresponding source code. (This alternative is allowed only for\nnoncommercial distribution and only if you received the program in object code\nor executable form with such an offer, in accord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for making\nmodifications to it. For an executable work, complete source code means all the\nsource code for all modules it contains, plus any associated interface\ndefinition files, plus the scripts used to control compilation and installation\nof the executable. However, as a special exception, the source code distributed\nneed not include anything that is normally distributed (in either source or\nbinary form) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component itself\naccompanies the executable.\n\nIf distribution of executable or object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the source code\nfrom the same place counts as distribution of the source code, even though third\nparties are not compelled to copy the source along with the object code.\n\n4. You may not copy, modify, sublicense, or distribute the Program except as\nexpressly provided under this License. Any attempt otherwise to copy, modify,\nsublicense or distribute the Program is void, and will automatically terminate\nyour rights under this License. However, parties who have received copies, or\nrights, from you under this License will not have their licenses terminated so\nlong as such parties remain in full compliance.\n\n5. You are not required to accept this License, since you have not signed it.\nHowever, nothing else grants you permission to modify or distribute the Program\nor its derivative works. These actions are prohibited by law if you do not\naccept this License. Therefore, by modifying or distributing the Program (or any\nwork based on the Program), you indicate your acceptance of this License to do\nso, and all its terms and conditions for copying, distributing or modifying the\nProgram or works based on it.\n\n6. Each time you redistribute the Program (or any work based on the Program),\nthe recipient automatically receives a license from the original licensor to\ncopy, distribute or modify the Program subject to these terms and conditions.\nYou may not impose any further restrictions on the recipients' exercise of the\nrights granted herein. You are not responsible for enforcing compliance by third\nparties to this License.\n\n7. If, as a consequence of a court judgment or allegation of patent infringement\nor for any other reason (not limited to patent issues), conditions are imposed\non you (whether by court order, agreement or otherwise) that contradict the\nconditions of this License, they do not excuse you from the conditions of this\nLicense. If you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations, then as a\nconsequence you may not distribute the Program at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by all those\nwho receive copies directly or indirectly through you, then the only way you\ncould satisfy both it and this License would be to refrain entirely from\ndistribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply and the\nsection as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any patents or\nother property right claims or to contest validity of any such claims; this\nsection has the sole purpose of protecting the integrity of the free software\ndistribution system, which is implemented by public license practices. Many\npeople have made generous contributions to the wide range of software\ndistributed through that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing to\ndistribute software through any other system and a licensee cannot impose that\nchoice.\n\nThis section is intended to make thoroughly clear what is believed to be a\nconsequence of the rest of this License.\n\n8. If the distribution and/or use of the Program is restricted in certain\ncountries either by patents or by copyrighted interfaces, the original copyright\nholder who places the Program under this License may add an explicit\ngeographical distribution limitation excluding those countries, so that\ndistribution is permitted only in or among countries not thus excluded. In such\ncase, this License incorporates the limitation as if written in the body of this\nLicense.\n\n9. Affero Inc. may publish revised and/or new versions of the Affero General\nPublic License from time to time. Such new versions will be similar in spirit to\nthe present version, but may differ in detail to address new problems or\nconcerns.\n\nEach version is given a distinguishing version number. If the Program specifies\na version number of this License which applies to it and \"any later version\",\nyou have the option of following the terms and conditions either of that version\nor of any later version published by Affero, Inc. If the Program does not\nspecify a version number of this License, you may choose any version ever\npublished by Affero, Inc.\n\nYou may also choose to redistribute modified versions of this program under any\nversion of the Free Software Foundation's GNU General Public License version 3\nor higher, so long as that version of the GNU GPL includes terms and conditions\nsubstantially equivalent to those of this license.\n\n10. If you wish to incorporate parts of the Program into other free programs\nwhose distribution conditions are different, write to the author to ask for\npermission. For software which is copyrighted by Affero, Inc., write to us; we\nsometimes make exceptions for this. Our decision will be guided by the two goals\nof preserving the free status of all derivatives of our free software and of\npromoting the sharing and reuse of software generally.\n\nNO WARRANTY\n\n11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE\nPROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED\nIN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS\nIS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT\nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL\nANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE\nPROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL,\nSPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY\nTO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF\nTHE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER\nPARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.", + "json": "agpl-1.0.json", + "yaml": "agpl-1.0.yml", + "html": "agpl-1.0.html", + "license": "agpl-1.0.LICENSE" + }, + { + "license_key": "agpl-1.0-plus", + "category": "Copyleft", + "spdx_license_key": "AGPL-1.0-or-later", + "other_spdx_license_keys": [ + "AGPL-1.0+" + ], + "is_exception": false, + "is_deprecated": false, + "text": "This is free software; you can redistribute it and/or modify\nit under the terms of the AFFERO GENERAL PUBLIC LICENSE as published by\nAffero Inc; either version 1, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the \nAFFERO GENERAL PUBLIC LICENSE for more details.\n\n\nAFFERO GENERAL PUBLIC LICENSE\n\nVersion 1, March 2002\n\nCopyright \u00a9 2002 Affero Inc.\n510 Third Street - Suite 225, San Francisco, CA 94107, USA\n\nThis license is a modified version of the GNU General Public License copyright\n(C) 1989, 1991 Free Software Foundation, Inc. made with their permission.\nSection 2(d) has been added to cover use of software over a computer network.\n\nEveryone is permitted to copy and distribute verbatim copies of this license\ndocument, but changing it is not allowed.\n\nPreamble\n\nThe licenses for most software are designed to take away your freedom to share\nand change it. By contrast, the Affero General Public License is intended to\nguarantee your freedom to share and change free software--to make sure the\nsoftware is free for all its users. This Public License applies to most of\nAffero's software and to any other program whose authors commit to using it.\n(Some other Affero software is covered by the GNU Library General Public License\ninstead.) You can apply it to your programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. This\nGeneral Public License is designed to make sure that you have the freedom to\ndistribute copies of free software (and charge for this service if you wish),\nthat you receive source code or can get it if you want it, that you can change\nthe software or use pieces of it in new free programs; and that you know you can\ndo these things.\n\nTo protect your rights, we need to make restrictions that forbid anyone to deny\nyou these rights or to ask you to surrender the rights. These restrictions\ntranslate to certain responsibilities for you if you distribute copies of the\nsoftware, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether gratis or for a\nfee, you must give the recipients all the rights that you have. You must make\nsure that they, too, receive or can get the source code. And you must show them\nthese terms so they know their rights.\n\nWe protect your rights with two steps: (1) copyright the software, and (2) offer\nyou this license which gives you legal permission to copy, distribute and/or\nmodify the software.\n\nAlso, for each author's protection and ours, we want to make certain that\neveryone understands that there is no warranty for this free software. If the\nsoftware is modified by someone else and passed on, we want its recipients to\nknow that what they have is not the original, so that any problems introduced by\nothers will not reflect on the original authors' reputations.\n\nFinally, any free program is threatened constantly by software patents. We wish\nto avoid the danger that redistributors of a free program will individually\nobtain patent licenses, in effect making the program proprietary. To prevent\nthis, we have made it clear that any patent must be licensed for everyone's free\nuse or not licensed at all.\n\nThe precise terms and conditions for copying, distribution and modification\nfollow.\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n0. This License applies to any program or other work which contains a notice\nplaced by the copyright holder saying it may be distributed under the terms of\nthis Affero General Public License. The \"Program\", below, refers to any such\nprogram or work, and a \"work based on the Program\" means either the Program or\nany derivative work under copyright law: that is to say, a work containing the\nProgram or a portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is included without\nlimitation in the term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not covered by\nthis License; they are outside its scope. The act of running the Program is not\nrestricted, and the output from the Program is covered only if its contents\nconstitute a work based on the Program (independent of having been made by\nrunning the Program). Whether that is true depends on what the Program does.\n\n1. You may copy and distribute verbatim copies of the Program's source code as\nyou receive it, in any medium, provided that you conspicuously and appropriately\npublish on each copy an appropriate copyright notice and disclaimer of warranty;\nkeep intact all the notices that refer to this License and to the absence of any\nwarranty; and give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and you may at\nyour option offer warranty protection in exchange for a fee.\n\n2. You may modify your copy or copies of the Program or any portion of it, thus\nforming a work based on the Program, and copy and distribute such modifications\nor work under the terms of Section 1 above, provided that you also meet all of\nthese conditions:\n\n* a) You must cause the modified files to carry prominent notices stating that\nyou changed the files and the date of any change.\n\n* b) You must cause any work that you distribute or publish, that in whole or in\npart contains or is derived from the Program or any part thereof, to be licensed\nas a whole at no charge to all third parties under the terms of this License.\n\n* c) If the modified program normally reads commands interactively when run, you\nmust cause it, when started running for such interactive use in the most\nordinary way, to print or display an announcement including an appropriate\ncopyright notice and a notice that there is no warranty (or else, saying that\nyou provide a warranty) and that users may redistribute the program under these\nconditions, and telling the user how to view a copy of this License. (Exception:\nif the Program itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print an\nannouncement.)\n\n* d) If the Program as you received it is intended to interact with users\nthrough a computer network and if, in the version you received, any user\ninteracting with the Program was given the opportunity to request transmission\nto that user of the Program's complete source code, you must not remove that\nfacility from your modified version of the Program or work based on the Program,\nand must offer an equivalent opportunity for all users interacting with your\nProgram through a computer network to request immediate transmission by HTTP of\nthe complete source code of your modified version or other derivative work.\n\nThese requirements apply to the modified work as a whole. If identifiable\nsections of that work are not derived from the Program, and can be reasonably\nconsidered independent and separate works in themselves, then this License, and\nits terms, do not apply to those sections when you distribute them as separate\nworks. But when you distribute the same sections as part of a whole which is a\nwork based on the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the entire whole,\nand thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest your\nrights to work written entirely by you; rather, the intent is to exercise the\nright to control the distribution of derivative or collective works based on the\nProgram.\n\nIn addition, mere aggregation of another work not based on the Program with the\nProgram (or with a work based on the Program) on a volume of a storage or\ndistribution medium does not bring the other work under the scope of this\nLicense.\n\n3. You may copy and distribute the Program (or a work based on it, under Section\n2) in object code or executable form under the terms of Sections 1 and 2 above\nprovided that you also do one of the following:\n\n* a) Accompany it with the complete corresponding machine-readable source code,\nwhich must be distributed under the terms of Sections 1 and 2 above on a medium\ncustomarily used for software interchange; or,\n\n* b) Accompany it with a written offer, valid for at least three years, to give\nany third party, for a charge no more than your cost of physically performing\nsource distribution, a complete machine-readable copy of the corresponding\nsource code, to be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily used for software interchange; or,\n\n* c) Accompany it with the information you received as to the offer to\ndistribute corresponding source code. (This alternative is allowed only for\nnoncommercial distribution and only if you received the program in object code\nor executable form with such an offer, in accord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for making\nmodifications to it. For an executable work, complete source code means all the\nsource code for all modules it contains, plus any associated interface\ndefinition files, plus the scripts used to control compilation and installation\nof the executable. However, as a special exception, the source code distributed\nneed not include anything that is normally distributed (in either source or\nbinary form) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component itself\naccompanies the executable.\n\nIf distribution of executable or object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the source code\nfrom the same place counts as distribution of the source code, even though third\nparties are not compelled to copy the source along with the object code.\n\n4. You may not copy, modify, sublicense, or distribute the Program except as\nexpressly provided under this License. Any attempt otherwise to copy, modify,\nsublicense or distribute the Program is void, and will automatically terminate\nyour rights under this License. However, parties who have received copies, or\nrights, from you under this License will not have their licenses terminated so\nlong as such parties remain in full compliance.\n\n5. You are not required to accept this License, since you have not signed it.\nHowever, nothing else grants you permission to modify or distribute the Program\nor its derivative works. These actions are prohibited by law if you do not\naccept this License. Therefore, by modifying or distributing the Program (or any\nwork based on the Program), you indicate your acceptance of this License to do\nso, and all its terms and conditions for copying, distributing or modifying the\nProgram or works based on it.\n\n6. Each time you redistribute the Program (or any work based on the Program),\nthe recipient automatically receives a license from the original licensor to\ncopy, distribute or modify the Program subject to these terms and conditions.\nYou may not impose any further restrictions on the recipients' exercise of the\nrights granted herein. You are not responsible for enforcing compliance by third\nparties to this License.\n\n7. If, as a consequence of a court judgment or allegation of patent infringement\nor for any other reason (not limited to patent issues), conditions are imposed\non you (whether by court order, agreement or otherwise) that contradict the\nconditions of this License, they do not excuse you from the conditions of this\nLicense. If you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations, then as a\nconsequence you may not distribute the Program at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by all those\nwho receive copies directly or indirectly through you, then the only way you\ncould satisfy both it and this License would be to refrain entirely from\ndistribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply and the\nsection as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any patents or\nother property right claims or to contest validity of any such claims; this\nsection has the sole purpose of protecting the integrity of the free software\ndistribution system, which is implemented by public license practices. Many\npeople have made generous contributions to the wide range of software\ndistributed through that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing to\ndistribute software through any other system and a licensee cannot impose that\nchoice.\n\nThis section is intended to make thoroughly clear what is believed to be a\nconsequence of the rest of this License.\n\n8. If the distribution and/or use of the Program is restricted in certain\ncountries either by patents or by copyrighted interfaces, the original copyright\nholder who places the Program under this License may add an explicit\ngeographical distribution limitation excluding those countries, so that\ndistribution is permitted only in or among countries not thus excluded. In such\ncase, this License incorporates the limitation as if written in the body of this\nLicense.\n\n9. Affero Inc. may publish revised and/or new versions of the Affero General\nPublic License from time to time. Such new versions will be similar in spirit to\nthe present version, but may differ in detail to address new problems or\nconcerns.\n\nEach version is given a distinguishing version number. If the Program specifies\na version number of this License which applies to it and \"any later version\",\nyou have the option of following the terms and conditions either of that version\nor of any later version published by Affero, Inc. If the Program does not\nspecify a version number of this License, you may choose any version ever\npublished by Affero, Inc.\n\nYou may also choose to redistribute modified versions of this program under any\nversion of the Free Software Foundation's GNU General Public License version 3\nor higher, so long as that version of the GNU GPL includes terms and conditions\nsubstantially equivalent to those of this license.\n\n10. If you wish to incorporate parts of the Program into other free programs\nwhose distribution conditions are different, write to the author to ask for\npermission. For software which is copyrighted by Affero, Inc., write to us; we\nsometimes make exceptions for this. Our decision will be guided by the two goals\nof preserving the free status of all derivatives of our free software and of\npromoting the sharing and reuse of software generally.\n\nNO WARRANTY\n\n11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE\nPROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED\nIN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS\nIS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT\nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL\nANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE\nPROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL,\nSPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY\nTO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF\nTHE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER\nPARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.", + "json": "agpl-1.0-plus.json", + "yaml": "agpl-1.0-plus.yml", + "html": "agpl-1.0-plus.html", + "license": "agpl-1.0-plus.LICENSE" + }, + { + "license_key": "agpl-2.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-agpl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "AFFERO GENERAL PUBLIC LICENSE\n\nVersion 2, November 2007\n\nCopyright \u00a9 2007 Affero Inc.\n510 Third Street - Suite 225, San Francisco, CA 94107, USA\n\nThis is version 2 of the Affero General Public License. It gives each licensee\npermission to distribute the Program or a work based on the Program (as defined\nin version 1 of the Affero GPL) under the GNU Affero General Public License,\nversion 3 or any later version.\n\nIf the Program was licensed under version 1 of the Affero GPL \"or any later\nversion\", no additional obligations are imposed on any author or copyright\nholder of the Program as a result of a licensee's choice to follow this version\n2 of the Affero GPL.", + "json": "agpl-2.0.json", + "yaml": "agpl-2.0.yml", + "html": "agpl-2.0.html", + "license": "agpl-2.0.LICENSE" + }, + { + "license_key": "agpl-3.0", + "category": "Copyleft", + "spdx_license_key": "AGPL-3.0-only", + "other_spdx_license_keys": [ + "AGPL-3.0", + "LicenseRef-AGPL-3.0" + ], + "is_exception": false, + "is_deprecated": false, + "text": " GNU AFFERO GENERAL PUBLIC LICENSE\n Version 3, 19 November 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU Affero General Public License is a free, copyleft license for\nsoftware and other kinds of works, specifically designed to ensure\ncooperation with the community in the case of network server software.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nour General Public Licenses are intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n Developers that use our General Public Licenses protect your rights\nwith two steps: (1) assert copyright on the software, and (2) offer\nyou this License which gives you legal permission to copy, distribute\nand/or modify the software.\n\n A secondary benefit of defending all users' freedom is that\nimprovements made in alternate versions of the program, if they\nreceive widespread use, become available for other developers to\nincorporate. Many developers of free software are heartened and\nencouraged by the resulting cooperation. However, in the case of\nsoftware used on network servers, this result may fail to come about.\nThe GNU General Public License permits making a modified version and\nletting the public access it on a server without ever releasing its\nsource code to the public.\n\n The GNU Affero General Public License is designed specifically to\nensure that, in such cases, the modified source code becomes available\nto the community. It requires the operator of a network server to\nprovide the source code of the modified version running there to the\nusers of that server. Therefore, public use of a modified version, on\na publicly accessible server, gives the public access to the source\ncode of the modified version.\n\n An older license, called the Affero General Public License and\npublished by Affero, was designed to accomplish similar goals. This is\na different license, not a version of the Affero GPL, but Affero has\nreleased a new version of the Affero GPL which permits relicensing under\nthis license.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU Affero General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Remote Network Interaction; Use with the GNU General Public License.\n\n Notwithstanding any other provision of this License, if you modify the\nProgram, your modified version must prominently offer all users\ninteracting with it remotely through a computer network (if your version\nsupports such interaction) an opportunity to receive the Corresponding\nSource of your version by providing access to the Corresponding Source\nfrom a network server at no charge, through some standard or customary\nmeans of facilitating copying of software. This Corresponding Source\nshall include the Corresponding Source for any work covered by version 3\nof the GNU General Public License that is incorporated pursuant to the\nfollowing paragraph.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the work with which it is combined will remain governed by version\n3 of the GNU General Public License.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU Affero General Public License from time to time. Such new versions\nwill be similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU Affero General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU Affero General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU Affero General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Affero General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Affero General Public License for more details.\n\n You should have received a copy of the GNU Affero General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If your software can interact with users remotely through a computer\nnetwork, you should also make sure that it provides a way for users to\nget its source. For example, if your program is a web application, its\ninterface could display a \"Source\" link that leads users to an archive\nof the code. There are many ways you could offer source, and different\nsolutions will be better for different programs; see section 13 for the\nspecific requirements.\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU AGPL, see\n.", + "json": "agpl-3.0.json", + "yaml": "agpl-3.0.yml", + "html": "agpl-3.0.html", + "license": "agpl-3.0.LICENSE" + }, + { + "license_key": "agpl-3.0-bacula", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "Last revision: 21 May 2017\n\nBacula is licensed under the GNU Affero General Public License, version\n3.0 as published by the Free Software Foundation, Inc. (\"AGPLv3\").\n\nAdditional Terms on the work licensed herein, pursuant to Section 7 of\nAffero General Public License are as follows:\n\n 1. The name Bacula is a registered trademark of Kern Sibbald, and Kern\n Sibbald hereby declines to grant a trademark license to \"Bacula\"\n pursuant to AGPLv3, Section 7(e) without a separate agreement with Kern\n Sibbald.\n\n 2. Pursuant to AGPLv3, Section 7(a), in addition to the warranty and\n liability disclaimers already found in AGPLv3, the copyright holders\n specifically disclaim any liability for accusations of patent\n infringement by any third party.\n\n 3. Pursuant to AGPLv3, Section 7(b), the portions of the file AUTHORS that\n are deemed to be specified reasonable legal notices and/or author\n attributions shall be preserved in redistribution of source code and/or\n modifications thereof. Furthermore, when the following notice appears in\n a source code file, it must be preserved when source code is conveyed\n and/or propagated:\n\n Bacula(R) - The Network Backup Solution\n\n Copyright (C) 2000-2017 Kern Sibbald\n\n The original author of Bacula is Kern Sibbald, with contributions\n from many others, a complete list can be found in the file AUTHORS.\n\n You may use this file and others of this release according to the\n license defined in the LICENSE file, which includes the Affero General\n Public License, v3.0 (\"AGPLv3\") and some additional permissions and\n terms pursuant to its AGPLv3 Section 7.\n\n This notice must be preserved when any source code is conveyed\n and/or propagated.\n\n Bacula(R) is a registered trademark of Kern Sibbald.\n\nAdditional Permissions on the work licensed herein, pursuant to Section 7 of\nAGPLv3 are as follows:\n\n1. As a special exception to the AGPLv3, the copyright holders give\n permission to link the code of its release of Bacula with the OpenSSL\n project's \"OpenSSL\" library (or with modified versions of it that use the\n same license as the \"OpenSSL\" library), and distribute the linked\n executables. You must follow the requirements of AGPLv3 in all respects\n for all of the code used other than \"OpenSSL\".\n\n2. As a special exception to the AGPLv3, the copyright holders give\n permission to link the code of its release of the Bacula Win32 File daemon\n with the Microsoft supplied Volume Shadow Copy (VSS) libraries and\n distribute the linked executables. You must follow the requirements of\n the AGPLv3 in all respects for all of the code used other than for the\n Microsoft VSS code.\n\nIf you want to fork Bacula, please read the file LICENSE-FAQ.\n\nThe copyright for certain source files may include in addition to what is\nlisted above the following copyright:\n\n Copyright (C) 2000-2014 Free Software Foundation Europe e.V.\n\nThe copyright on the Baculum code is:\n\n Copyright (C) 2013-2017 Marcin Haba\n\nCopyrights of certain \"script\" files such as headers, shell script, Makefiles,\netc ... were previously never explicitly defined. In almost all cases,\nthey have been copyrighted with a BSD 2-Clause copyright to make them\neasier. However, as is the case of all BSD type copyrights you must keep\nthe copyright in place and on any binary only released the copyright notice\nmust also be released with the binaries. An example of such a copyright\nis:\n\n#\n# Copyright (C) 2000-2017 Kern Sibbald\n# License: BSD 2-Clause; see file LICENSE-FOSS\n#\n\nIt is equivalent to the full BSD copyright of:\n\n=====\nCopyright (C) 2000-2017 Kern Sibbald\nLicense: BSD 2-Clause; see file LICENSE-FOSS\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice,\nthis list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation\nand/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n====\n\nNote: the exact form of the copyright (dates, name, and text formatting)\nmight vary, but the intent is the same, namely that the full BSD 2-Clause\ncoypright applies. The file LICENSE-FOSS has a few more details.\n\n\n######################################################################\nThe entire AGPL is below, in the manuals distributed with the Bacula\ndocumentation and can also be found online on the GNU web site at\nwww.bacula.org. You may also obtain a copy of the AGPL (or LGPL) by writing\nto: Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n02110-1301 USA\n\n\n GNU AFFERO GENERAL PUBLIC LICENSE\n Version 3, 19 November 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU Affero General Public License is a free, copyleft license for\nsoftware and other kinds of works, specifically designed to ensure\ncooperation with the community in the case of network server software.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nour General Public Licenses are intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n Developers that use our General Public Licenses protect your rights\nwith two steps: (1) assert copyright on the software, and (2) offer\nyou this License which gives you legal permission to copy, distribute\nand/or modify the software.\n\n A secondary benefit of defending all users' freedom is that\nimprovements made in alternate versions of the program, if they\nreceive widespread use, become available for other developers to\nincorporate. Many developers of free software are heartened and\nencouraged by the resulting cooperation. However, in the case of\nsoftware used on network servers, this result may fail to come about.\nThe GNU General Public License permits making a modified version and\nletting the public access it on a server without ever releasing its\nsource code to the public.\n\n The GNU Affero General Public License is designed specifically to\nensure that, in such cases, the modified source code becomes available\nto the community. It requires the operator of a network server to\nprovide the source code of the modified version running there to the\nusers of that server. Therefore, public use of a modified version, on\na publicly accessible server, gives the public access to the source\ncode of the modified version.\n\n An older license, called the Affero General Public License and\npublished by Affero, was designed to accomplish similar goals. This is\na different license, not a version of the Affero GPL, but Affero has\nreleased a new version of the Affero GPL which permits relicensing under\nthis license.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU Affero General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Remote Network Interaction; Use with the GNU General Public License.\n\n Notwithstanding any other provision of this License, if you modify the\nProgram, your modified version must prominently offer all users\ninteracting with it remotely through a computer network (if your version\nsupports such interaction) an opportunity to receive the Corresponding\nSource of your version by providing access to the Corresponding Source\nfrom a network server at no charge, through some standard or customary\nmeans of facilitating copying of software. This Corresponding Source\nshall include the Corresponding Source for any work covered by version 3\nof the GNU General Public License that is incorporated pursuant to the\nfollowing paragraph.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the work with which it is combined will remain governed by version\n3 of the GNU General Public License.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU Affero General Public License from time to time. Such new versions\nwill be similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU Affero General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU Affero General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU Affero General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Affero General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Affero General Public License for more details.\n\n You should have received a copy of the GNU Affero General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If your software can interact with users remotely through a computer\nnetwork, you should also make sure that it provides a way for users to\nget its source. For example, if your program is a web application, its\ninterface could display a \"Source\" link that leads users to an archive\nof the code. There are many ways you could offer source, and different\nsolutions will be better for different programs; see section 13 for the\nspecific requirements.\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU AGPL, see\n.", + "json": "agpl-3.0-bacula.json", + "yaml": "agpl-3.0-bacula.yml", + "html": "agpl-3.0-bacula.html", + "license": "agpl-3.0-bacula.LICENSE" + }, + { + "license_key": "agpl-3.0-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "Additional permission under the GNU Affero GPL version 3 section 7:\n\nIf you modify this Program, or any covered work, by linking or\ncombining it with other code, such other code is not for that reason\nalone subject to any of the requirements of the GNU Affero GPL\nversion 3.", + "json": "agpl-3.0-linking-exception.json", + "yaml": "agpl-3.0-linking-exception.yml", + "html": "agpl-3.0-linking-exception.html", + "license": "agpl-3.0-linking-exception.LICENSE" + }, + { + "license_key": "agpl-3.0-openssl", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "As a special exception, the copyright holders give permission to link the\ncode of portions of this program with the OpenSSL library under certain\nconditions as described in each individual source file and distribute\nlinked combinations including the program with the OpenSSL library. You\nmust comply with the GNU Affero General Public License in all respects for\nall of the code used other than as permitted herein. If you modify file(s)\nwith this exception, you may extend this exception to your version of the\nfile(s), but you are not obligated to do so. If you do not wish to do so,\ndelete this exception statement from your version. If you delete this\nexception statement from all source files in the program, then also delete\nit in the license file.", + "json": "agpl-3.0-openssl.json", + "yaml": "agpl-3.0-openssl.yml", + "html": "agpl-3.0-openssl.html", + "license": "agpl-3.0-openssl.LICENSE" + }, + { + "license_key": "agpl-3.0-plus", + "category": "Copyleft", + "spdx_license_key": "AGPL-3.0-or-later", + "other_spdx_license_keys": [ + "AGPL-3.0+", + "LicenseRef-AGPL" + ], + "is_exception": false, + "is_deprecated": false, + "text": "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU Affero General Public License as\npublished by the Free Software Foundation, either version 3 of the\nLicense, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU Affero General Public License for more details.\n\nYou should have received a copy of the GNU Affero General Public License\nalong with this program. If not, see .\n\n GNU AFFERO GENERAL PUBLIC LICENSE\n Version 3, 19 November 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU Affero General Public License is a free, copyleft license for\nsoftware and other kinds of works, specifically designed to ensure\ncooperation with the community in the case of network server software.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nour General Public Licenses are intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n Developers that use our General Public Licenses protect your rights\nwith two steps: (1) assert copyright on the software, and (2) offer\nyou this License which gives you legal permission to copy, distribute\nand/or modify the software.\n\n A secondary benefit of defending all users' freedom is that\nimprovements made in alternate versions of the program, if they\nreceive widespread use, become available for other developers to\nincorporate. Many developers of free software are heartened and\nencouraged by the resulting cooperation. However, in the case of\nsoftware used on network servers, this result may fail to come about.\nThe GNU General Public License permits making a modified version and\nletting the public access it on a server without ever releasing its\nsource code to the public.\n\n The GNU Affero General Public License is designed specifically to\nensure that, in such cases, the modified source code becomes available\nto the community. It requires the operator of a network server to\nprovide the source code of the modified version running there to the\nusers of that server. Therefore, public use of a modified version, on\na publicly accessible server, gives the public access to the source\ncode of the modified version.\n\n An older license, called the Affero General Public License and\npublished by Affero, was designed to accomplish similar goals. This is\na different license, not a version of the Affero GPL, but Affero has\nreleased a new version of the Affero GPL which permits relicensing under\nthis license.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU Affero General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Remote Network Interaction; Use with the GNU General Public License.\n\n Notwithstanding any other provision of this License, if you modify the\nProgram, your modified version must prominently offer all users\ninteracting with it remotely through a computer network (if your version\nsupports such interaction) an opportunity to receive the Corresponding\nSource of your version by providing access to the Corresponding Source\nfrom a network server at no charge, through some standard or customary\nmeans of facilitating copying of software. This Corresponding Source\nshall include the Corresponding Source for any work covered by version 3\nof the GNU General Public License that is incorporated pursuant to the\nfollowing paragraph.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the work with which it is combined will remain governed by version\n3 of the GNU General Public License.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU Affero General Public License from time to time. Such new versions\nwill be similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU Affero General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU Affero General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU Affero General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Affero General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Affero General Public License for more details.\n\n You should have received a copy of the GNU Affero General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If your software can interact with users remotely through a computer\nnetwork, you should also make sure that it provides a way for users to\nget its source. For example, if your program is a web application, its\ninterface could display a \"Source\" link that leads users to an archive\nof the code. There are many ways you could offer source, and different\nsolutions will be better for different programs; see section 13 for the\nspecific requirements.\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU AGPL, see\n.", + "json": "agpl-3.0-plus.json", + "yaml": "agpl-3.0-plus.yml", + "html": "agpl-3.0-plus.html", + "license": "agpl-3.0-plus.LICENSE" + }, + { + "license_key": "agpl-generic-additional-terms", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-agpl-generic-additional-terms", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "", + "json": "agpl-generic-additional-terms.json", + "yaml": "agpl-generic-additional-terms.yml", + "html": "agpl-generic-additional-terms.html", + "license": "agpl-generic-additional-terms.LICENSE" + }, + { + "license_key": "aladdin-md5", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "This software is provided 'as-is', without any express or implied warranty. In\nno event will the authors be held liable for any damages arising from the use of\nthis software.\n\nPermission is granted to anyone to use this software for any purpose, including\ncommercial applications, and to alter it and redistribute it freely, subject to\nthe following restrictions:\n\n1. The origin of this software must not be misrepresented; you must not claim\n that you wrote the original software. If you use this software in a product,\n an acknowledgment in the product documentation would be appreciated but is\n not required.\n\n2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n\n3. This notice may not be removed or altered from any source distribution.\n\nL. Peter Deutsch ghost@aladdin.com", + "json": "aladdin-md5.json", + "yaml": "aladdin-md5.yml", + "html": "aladdin-md5.html", + "license": "aladdin-md5.LICENSE" + }, + { + "license_key": "alasir", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-alasir", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Alasir Licence\n\n This is a free software. It's provided as-is and carries absolutely no\nwarranty or responsibility by the author and the contributors, neither in\ngeneral nor in particular. No matter if this software is able or unable to\ncause any damage to your or third party's computer hardware, software, or any\nother asset available, neither the author nor a separate contributor may be\nfound liable for any harm or its consequences resulting from either proper or\nimproper use of the software, even if advised of the possibility of certain\ninjury as such and so forth.\n\n The software isn't a public domain, it's a copyrighted one. In no event\nshall the author's or a separate contributor's copyright be denied or violated\notherwise. No copyright may be removed unless together with the code\ncontributed to the software by a holder of the respective copyright. A\ncopyright itself indicates the rights of ownership over the code contributed.\nBack and forth, the author is defined as the one who holds the oldest\ncopyright over the software. Furthermore, the software is defined as either\nsource or binary computer code, which is organised in the form of a single\ncomputer file usually.\n\n The software, the whole or a part of it, is prohibited from being sold or\nleased in any form or manner with the only possible exceptions:\n\na) money may be charged for a physical medium used to transfer the software;\nb) money may be charged for optional warranty or support services related to\n the software.\n\n Nevertheless, if the software, the whole or a part of it, is expected to\nbecome an object of sale or lease, the whole or a part of it, then a separate\nnon-exclusive licence agreement must be negotiated from the author. Benefits\naccrued should be distributed between the contributors or likewise at the\nauthor's discretion.\n\n Whenever and wherever the software is distributed, in either source or\nbinary form, either in whole or in part, it must include the complete\nunchanged text of this licence agreement unless different conditions have been\nnegotiated. In case of a binary only distribution, the names of the copyright\nholders must be mentioned in the documentation supplied with the software.\nThis is supposed to protect rights and freedom of those who have contributed\ntheir time and labour to free software development, because otherwise the\ndevelopment itself and this licence agreement are of a very little sense.\n\n Nothing else but this licence agreement grants you rights to use, modify\nand distribute the software. Any violation of this licence agreement is\nrecognised as an action prohibited by an applicable legislation.", + "json": "alasir.json", + "yaml": "alasir.yml", + "html": "alasir.html", + "license": "alasir.LICENSE" + }, + { + "license_key": "alexisisaac-freeware", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-alexisisaac-freeware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "FREEWARE LICENSE AGREEMENT\nBefore loading this software on your computer, please carefully read the following terms and conditions.\n\nFREEWARE\nAlexisisaac.net Software, developed and licenses this software program (\"Software\"). This Software is distributed as FREEWARE. You could make a donation if you want to support development of future products from Alexisisaac.net.\n\nLICENSE GRANT\nThis is a License between you (\"Licensee\") and Alexisisaac.net. Alexisisaac.net grants to you a non-exclusive license to use the enclosed copy of software in accord with the terms set forth in this License Agreement. The software is owned by Alexisisaac.net or its licensors and protected by copyright and trademark laws.\n\nLICENSE DOES NOT PERMIT\nLicensee may not charge fees for distribution or delivery of the Software without expressed written consent of Alexisisaac.net.\n\nDISTRIBUTION\nThis software may be freely distributed, so long as no fees are charged, and original packaging and documentation are retained. In particular, please distribute this application to friends and associates. In most cases, linking to http://www.alexisisaac.net/products is all that would be necessary.\n\nNO WARRANTY\nThis software has no warranty of fitness, suitability for a particular purpose or satisfactory quality. This Software is provided to licensee \"as is\".\n\nDISCLAIMER\nLicensee hereby disclaims and indemnifies Alexisisaac.net from any claims or complaints about the Software.", + "json": "alexisisaac-freeware.json", + "yaml": "alexisisaac-freeware.yml", + "html": "alexisisaac-freeware.html", + "license": "alexisisaac-freeware.LICENSE" + }, + { + "license_key": "alfresco-exception-0.5", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-alfresco-exception-0.5", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Alfresco Software, Ltd. FLOSS License Exception\n\n The Alfresco Software, Ltd. Exception for Free/Libre and Open Source Software-only Applications Using Alfresco software (the `FLOSS Exception').\n\nVersion 0.5, 30 August 2006\nException Intent\n\nWe want specified Free/Libre and Open Source Software (\"FLOSS\") applications to be able to use specified GPL-licensed Alfresco software (the \"Program\") despite the fact that not all FLOSS licenses are compatible with version 2 of the GNU General Public License (the \"GPL\").\nLegal Terms and Conditions\n\nAs a special exception to the terms and conditions of version 2.0 of the GPL:\n\nYou are free to distribute a Derivative Work that is formed entirely from the Program and one or more works (each, a \"FLOSS Work\") licensed under one or more of the licenses listed below in section 1, as long as:\n\n You obey the GPL in all respects for the Program and the Derivative Work, except for identifiable sections of the Derivative Work which are not derived from the Program, and which can reasonably be considered independent and separate works in themselves,\n all identifiable sections of the Derivative Work which are not derived from the Program, and which can reasonably be considered independent and separate works in themselves,\n are distributed subject to one of the FLOSS licenses listed below, and\n the object code or executable form of those sections are accompanied by the complete corresponding machine-readable source code for those sections on the same medium and under the same FLOSS license as the corresponding object code or executable forms of those sections, and\n any works which are aggregated with the Program or with a Derivative Work on a volume of a storage or distribution medium in accordance with the GPL, can reasonably be considered independent and separate works in themselves which are not derivatives of either the Program, a Derivative Work or a FLOSS Work.\n\nIf the above conditions are not met, then the Program may only be copied, modified, distributed or used under the terms and conditions of the GPL or another valid licensing option from Alfresco Software, Ltd.\n1. FLOSS License List\nLicense name\tVersion(s)/Copyright Date\nAcademic Free License \t2.0\nApache Software License \t1.0/1.1/2.0\nApple Public Source License \t2.0\nArtistic license \tFrom Perl 5.8.0\nBSD license \t\"July 22 1999\"\nCommon Development and Distribution License (CDDL) \t1.0\nCommon Public License \t1.0\nGNU Library or \"Lesser\" General Public License (LGPL) \t2.0/2.1\nJabber Open Source License \t1.0\nMIT License (As listed in file MIT-License.txt) \t-\nMozilla Public License (MPL) \t1.0/1.1\nOpen Software License \t2.0\nOpenSSL license (with original SSLeay license) \t\"2003\" (\"1998\")\nPHP License \t3.0\nPython license (CNRI Python License) \t-\nPython Software Foundation License \t2.1.1\nSleepycat License \t\"1999\"\nUniversity of Illinois/NCSA Open Source License \t-\nW3C License \t\"2001\"\nX11 License \t\"2001\"\nZlib/libpng License \t-\nZope Public License \t2.0\n\nDue to the many variants of some of the above licenses, we require that any version follow the 2003 version of the Free Software Foundation's Free Software Definition (http://www.gnu.org/philosophy/free-sw.html) or version 1.9 of the Open Source Definition by the Open Source Initiative (http://www.opensource.org/docs/definition.php).\n2. Definitions\n\n Terms used, but not defined, herein shall have the meaning provided in the GPL.\n Derivative Work means a derivative work under copyright law.\n\n3. Applicability\n\nThis FLOSS Exception applies to all Programs that contain a notice placed by Alfresco Software, Ltd. saying that the Program may be distributed under the terms of this FLOSS Exception. If you create or distribute a work which is a Derivative Work of both the Program and any other work licensed under the GPL, then this FLOSS Exception is not available for that work; thus, you must remove the FLOSS Exception notice from that work and comply with the GPL in all respects, including by retaining all GPL notices. You may choose to redistribute a copy of the Program exclusively under the terms of the GPL by removing the FLOSS Exception notice from that copy of the Program, provided that the copy has never been modified by you or any third party.\nAppendix A. Qualified Libraries and Packages\n\nThe following is a a non-exhaustive list of libraries and packages which are covered by the FLOSS License Exception. Please note that appendix is merely provided as an additional service to specific FLOSS projects who wish to simplify licensing information for their users. Compliance with one of the licenses noted under the \"FLOSS license list\" section remains a prerequisite.\nPackage name\tQualifying License and Version\nApache Portable Runtime (APR) \tApache Software License 2.0", + "json": "alfresco-exception-0.5.json", + "yaml": "alfresco-exception-0.5.yml", + "html": "alfresco-exception-0.5.html", + "license": "alfresco-exception-0.5.LICENSE" + }, + { + "license_key": "allegro-4", + "category": "Permissive", + "spdx_license_key": "Giftware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Allegro 4 (the giftware license)\n\nAllegro is gift-ware. It was created by a number of people working in cooperation, and is given to you freely as a gift. You may use, modify, redistribute, and generally hack it about in any way you like, and you do not have to give us anything in return.\n\nHowever, if you like this product you are encouraged to thank us by making a return gift to the Allegro community. This could be by writing an add-on package, providing a useful bug report, making an improvement to the library, or perhaps just releasing the sources of your program so that other people can learn from them. If you redistribute parts of this code or make a game using it, it would be nice if you mentioned Allegro somewhere in the credits, but you are not required to do this. We trust you not to abuse our generosity.\n\nBy Shawn Hargreaves, 18 October 1998.\n\nDISCLAIMER: THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "allegro-4.json", + "yaml": "allegro-4.yml", + "html": "allegro-4.html", + "license": "allegro-4.LICENSE" + }, + { + "license_key": "allen-institute-software-2018", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-allen-institute-software-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification, are permitted provided that the\nfollowing conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following\ndisclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following\ndisclaimer in the documentation and/or other materials provided with the distribution.\n\n3. Redistributions for commercial purposes are not permitted without the Allen Institute\u2019s written permission. For\npurposes of this license, commercial purposes is the incorporation of the Allen Institute's software into anything for\nwhich you will charge fees or other compensation. Contact terms@alleninstitute.org for commercial licensing\nopportunities.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "allen-institute-software-2018.json", + "yaml": "allen-institute-software-2018.yml", + "html": "allen-institute-software-2018.html", + "license": "allen-institute-software-2018.LICENSE" + }, + { + "license_key": "altermime", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-altermime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "alterMIME LICENSE\n\nThe following license terms and conditions apply, unless a different\nlicense is obtained from P.L.Daniels, P.O.Box 6, Ravenswood, 4816\nAustralia, or by electronic mail at pldaniels@pldaniels.com.\n\nLicense Terms:\n\nUse, Modification and Redistribution (including distribution of any\nmodified or derived work) in source and binary forms is permitted only if\neach of the following conditions is met:\n\n1. Redistributions qualify as \"freeware\" or \"Open Source Software\" under\n one of the following terms:\n\n (a) Redistributions are made at no charge beyond the reasonable cost of\n materials and delivery.\n\n (b) Redistributions are accompanied by a copy of the Source Code or by an\n irrevocable offer to provide a copy of the Source Code for up to three\n years at the cost of materials and delivery. Such redistributions\n must allow further use, modification, and redistribution of the Source\n Code under substantially the same terms as this license. For the\n purposes of redistribution \"Source Code\" means the complete compilable\n and linkable source code of alterMIME including all modifications.\n\n2. Redistributions of source code must retain the copyright notices as they\n appear in each source code file, these license terms, and the\n disclaimer/limitation of liability set forth as paragraph 6 below.\n\n3. Redistributions in binary form must reproduce the Copyright Notice,\n these license terms, and the disclaimer/limitation of liability set\n forth as paragraph 6 below, in the documentation and/or other materials\n provided with the distribution. For the purposes of binary distribution\n the \"Copyright Notice\" refers to the following language:\n \"Copyright (c) 2000 P.L.Daniels, All rights reserved.\"\n\n4. Neither the name of alterMIME, nor Paul L Daniels, nor the\n the names of their contributors may be used to endorse or promote\n products derived from this software without specific prior written\n permission. \n\n5. All redistributions must comply with the conditions imposed by the\n University of California on certain embedded code, whose copyright\n notice and conditions for redistribution are as follows:\n\n (a) Copyright (c) 2000 P.L.Daniels, All rights reserved.\n\n (b) Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n\n (i) Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n (ii) Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n\n (iii) Neither the name of alterMIME, nor P.L.Daniels, nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n\n6. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY\n P.L.Daniels. AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN\n NO EVENT SHALL SENDMAIL, INC., THE REGENTS OF THE UNIVERSITY OF\n CALIFORNIA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\n USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\n ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.", + "json": "altermime.json", + "yaml": "altermime.yml", + "html": "altermime.html", + "license": "altermime.LICENSE" + }, + { + "license_key": "altova-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-altova-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "THIS IS A LEGAL DOCUMENT -- RETAIN FOR YOUR RECORDS\n\nALTOVA\u00ae END-USER LICENSE AGREEMENT\n\nLicensor:\n\nAltova GmbH\nRudolfsplatz 13a/9\nA-1010 Wien\nAustria\n\nImportant - Read Carefully. Notice to User:\n\nThis End User License Agreement (\"Agreement\") is a legal document between you and Altova GmbH (\"Altova\"). It is important that you read this document before using the Altova-provided software (\"Software\") and any accompanying documentation, including, without limitation printed materials, \u2018online\u2019 files, or electronic documentation (\"Documentation\"). By clicking the \"I accept\" and \"Next\" buttons below, or by installing, or otherwise using the Software, you agree to be bound by the terms of this Agreement as well as the Altova Privacy Policy (\"Privacy Policy\") including, without limitation, the warranty disclaimers, limitation of liability, data use and termination provisions below, whether or not you decide to purchase the Software. You agree that this agreement is enforceable like any written agreement negotiated and signed by you. If you do not agree, you are not licensed to use the Software, and you must destroy any downloaded copies of the Software in your possession or control. You may print a copy of this Agreement as part of the installation process at the time of acceptance. Alternatively, a copy of this Agreement may be found at http://www.altova.com/eula and a copy of the Privacy Policy may be found at http://www.altova.com/privacy.\n\n1.\tSOFTWARE LICENSE\n\n(a)\tLicense Grant.\n\n(i) Upon your acceptance of this Agreement Altova grants you a non-exclusive, non-transferable (except as provided below), limited license, without the right to grant sublicenses, to install and use a copy of the Software on one compatible personal computer or workstation up to the Permitted Number of computers. Subject to the limitations set forth in Section 1(c), you may install and use a copy of the Software on more than one of your compatible personal computers or workstations if you have purchased a Named-User license. Subject to the limitations set forth in Sections 1(d) and 1(e), users may use the software concurrently on a network. The Permitted Number of computers and/or users and the type of license, e.g. Installed, Named-Users, and Concurrent-User, shall be determined and specified at such time as you elect to purchase the Software. Installed user licenses are intended to be fixed and not concurrent. In other words, you cannot uninstall the Software on one machine in order to reinstall that license to a different machine and then uninstall and reinstall back to the original machine. Installations should be static. Notwithstanding the foregoing, permanent uninstallations and redeployments are acceptable in limited circumstances such as if an employee leaves the company or the machine is permanently decommissioned. During the evaluation period, hereinafter defined, only a single user may install and use the software on one (1) personal computer or workstation. If you have licensed the Software as part of a suite of Altova software products (collectively, the \"Suite\") and have not installed each product individually, then the Agreement governs your use of all of the software included in the Suite.\n\n(ii) If you have licensed SchemaAgent, then the terms and conditions of this Agreement apply to your use of the SchemaAgent server software (\"SchemaAgent Server\") included therein, as applicable, and you are licensed to use SchemaAgent Server solely in connection with your use of Altova Software and solely for the purposes described in the accompanying documentation.\n\n(iii) If you have licensed Software that enables users to generate source code, your license to install and use a copy of the Software as provided herein permits you to generate source code based on (i) Altova Library modules that are included in the Software (such generated code hereinafter referred to as the \"Restricted Source Code\") and (ii) schemas or mappings that you create or provide (such code as may be generated from your schema or mapping source materials hereinafter referred to as the \"Unrestricted Source Code\"). In addition to the rights granted herein, Altova grants you a non-exclusive, non-transferable, limited license to compile the complete generated code (comprised of the combination of the Restricted Source Code and the Unrestricted Source Code) into executable object code form, and to use, copy, distribute or license that executable. You may not distribute or redistribute, sublicense, sell, or transfer the Restricted Source Code to a third-party in the un-compiled form unless said third-party already has a license to the Restricted Source Code through their separate agreement with Altova. Notwithstanding anything to the contrary herein, you may not distribute, incorporate or combine with other software, or otherwise use the Altova Library modules or Restricted Source Code, or any Altova intellectual property embodied in or associated with the Altova Library modules or Restricted Source Code, in any manner that would subject the Restricted Source Code to the terms of a copyleft, free software or open source license that would require the Restricted Source Code or Altova Library modules source code to be disclosed in source code form. Notwithstanding anything to the contrary herein, you may not use the Software to develop and distribute other software programs that directly compete with any Altova software or service without prior written permission. Altova reserves all other rights in and to the Software. With respect to the feature(s) of UModel that permit reverse-engineering of your own source code or other source code that you have lawfully obtained, such use by you does not constitute a violation of this Agreement. Except as otherwise expressly permitted in Section 1(j) reverse engineering of the Software is strictly prohibited as further detailed therein.\n\n(iv) In the event Restricted Source Code is incorporated into executable object code form, you will include the following statement in (1) introductory splash screens, or if none, within one or more screens readily accessible by the end-user, and (2) in the electronic and/or hard copy documentation: \"Portions of this program were developed using Altova\u00ae [name of Altova Software, e.g. MapForce\u00ae 2011] and includes libraries owned by Altova GmbH, Copyright \u00a9 2007-2011 Altova GmbH (www.altova.com).\"\n\n(b)\tServer Use for Installation and Use of SchemaAgent. You may install one (1) copy of the Software on a computer file server within your internal network solely for the purpose of downloading and installing the Software onto other computers within your internal network up to the Permitted Number of computers in a commercial environment only. If you have licensed SchemaAgent, then you may install SchemaAgent Server on any server computer or workstation and use it in connection with your Software. No other network use is permitted, including without limitation using the Software either directly or through commands, data or instructions from or to a computer not part of your internal network, for Internet or Web-hosting services or by any user not licensed to use this copy of the Software through a valid license from Altova.\n\n(c)\tNamed Use. If you have licensed the \"Named-User\" version of the software, you may install the Software on up to five (5) compatible personal computers or workstations of which you are the primary user thereby allowing you to switch from one computer to the other as necessary provided that only one (1) instance of the Software will be used by you as the Named-User at any given time. If you have purchased multiple Named-User licenses, each individual Named-User will receive a separate license key code.\n\n(d)\tConcurrent Use in Same Physical Network or Office Location. If you have licensed a \"Concurrent-User\" version of the Software, you may install the Software on any compatible computers in a commercial environment only, up to ten (10) times the Permitted Number of users, provided that only the Permitted Number of users actually use the Software at the same time and further provided that the computers on which the Software is installed are on the same physical computer network. The Permitted Number of concurrent users shall be delineated at such time as you elect to purchase the Software licenses. Each separate physical network or office location requires its own set of separate Concurrent User Licenses for those wishing to use the Concurrent User versions of the Software in more than one location or on more than one network, all subject to the above Permitted Number limitations and based on the number of users using the Software. If a computer is not on the same physical network, then a locally installed user license or a license dedicated to concurrent use in a virtual environment is required. Home User restrictions and limitations with respect to the Concurrent User licenses used on home computers are set forth in Section 1(g).\n\n(e)\tConcurrent Use in a Virtual Environment. If you have purchased Concurrent-User Licenses, you may install a copy of the Software on a terminal server (Microsoft Terminal Server or Citrix Metaframe), application virtualization server (Microsoft App-V, Citrix XenApp, or VMWare ThinApp) or virtual machine environment within your internal network for the sole and exclusive purpose of permitting individual users within your organization to access and use the Software through a terminal server, application virtualization session, or virtual machine environment from another computer provided that the total number of users that access or use the Software concurrently at any given point in time on such network, virtual machine or terminal server does not exceed the Permitted Number; and provided that the total number of users authorized to use the Software through the terminal server, application virtualization session, or virtual machine environment does not exceed ten (10) times the Permitted Number of users. In a virtual environment, you must deploy a reliable and accurate means of preventing users from exceeding the Permitted Number of concurrent users. Altova makes no warranties or representations about the performance of Altova software in a terminal server, application virtualization session, or virtual machine environment and the foregoing are expressly excluded from the limited warranty in Section 5 hereof. Technical support is not available with respect to issues arising from use in such environments.\n\n(f)\tBackup and Archival Copies. You may make one (1) backup and one (1) archival copy of the Software, provided your backup and archival copies are not installed or used on any computer and further provided that all such copies shall bear the original and unmodified copyright, patent and other intellectual property markings that appear on or in the Software. You may not transfer the rights to a backup or archival copy unless you transfer all rights in the Software as provided under Section 3.\n\n(g)\tHome Use (Personal and Non-Commercial). In order to further familiarize yourself with the Software and allow you to explore its features and functions, you, as the primary user of the computer on which the Software is installed for commercial purposes, may also install one copy of the Software on only one (1) home personal computer (such as your laptop or desktop) solely for your personal and non-commercial (\"HPNC\") use. This HPNC copy may not be used in any commercial or revenue-generating business activities, including without limitation, work-from-home, teleworking, telecommuting, or other work-related use of the Software. The HPNC copy of the Software may not be used at the same time on a home personal computer as the Software is being used on the primary computer.\n\n(h)\tKey Codes, Upgrades and Updates. Prior to your purchase and as part of the registration for the thirty (30) day evaluation period, as applicable, you will receive an evaluation key code. You will receive a purchase key code when you elect to purchase the Software from either Altova GmbH or an authorized reseller. The purchase key code will enable you to activate the Software beyond the initial evaluation period. You may not re-license, reproduce or distribute any key code except with the express written permission of Altova. If the Software that you have licensed is an upgrade or an update, then the latest update or upgrade that you download and install replaces all or part of the Software previously licensed. The update or upgrade and the associated license keys does not constitute the granting of a second license to the Software in that you may not use the upgrade or updated copy in addition to the copy of the Software that it is replacing and whose license has terminated.\n\n(i)\tTitle. Title to the Software is not transferred to you. Ownership of all copies of the Software and of copies made by you is vested in Altova, subject to the rights of use granted to you in this Agreement. As between you and Altova, documents, files, stylesheets, generated program code (including the Unrestricted Source Code) and schemas that are authored or created by you via your utilization of the Software, in accordance with its Documentation and the terms of this Agreement, are your property unless they are created using Evaluation Software, as defined in Section 4 of this Agreement, in which case you have only a limited license to use any output that contains generated program code (including Unrestricted Source Code) such as Java, C++, C#, VB.NET or XSLT and associated project files and build scripts, as well as generated XML, XML Schemas, documentation, UML diagrams, and database structures only for the thirty (30) day evaluation period.\n\n(j)\tReverse Engineering. Except and to the limited extent as may be otherwise specifically provided by applicable law in the European Union, you may not reverse engineer, decompile, disassemble or otherwise attempt to discover the source code, underlying ideas, underlying user interface techniques or algorithms of the Software by any means whatsoever, directly or indirectly, or disclose any of the foregoing, except to the extent you may be expressly permitted to decompile under applicable law in the European Union, if it is essential to do so in order to achieve operability of the Software with another software program, and you have first requested Altova to provide the information necessary to achieve such operability and Altova has not made such information available. Altova has the right to impose reasonable conditions and to request a reasonable fee before providing such information. Any information supplied by Altova or obtained by you, as permitted hereunder, may only be used by you for the purpose described herein and may not be disclosed to any third party or used to create any software which is substantially similar to the expression of the Software. Requests for information from users in the European Union with respect to the above should be directed to the Altova Customer Support Department.\n\n(k)\tOther Restrictions.You may not loan, rent, lease, sublicense, distribute or otherwise transfer all or any portion of the Software to third parties except to the limited extent set forth in Section 3 or as otherwise expressly provided. You may not copy the Software except as expressly set forth above, and any copies that you are permitted to make pursuant to this Agreement must contain the same copyright, patent and other intellectual property markings that appear on or in the Software. You may not modify, adapt or translate the Software. You may not, directly or indirectly, encumber or suffer to exist any lien or security interest on the Software; knowingly take any action that would cause the Software to be placed in the public domain; or use the Software in any computer environment not specified in this Agreement. You may not permit any use of or access to the Software by any third party in connection with a commercial service offering, such as for a cloud-based or web-based SaaS offering.\n\nYou will comply with applicable law and Altova\u2019s instructions regarding the use of the Software. You agree to notify your employees and agents who may have access to the Software of the restrictions contained in this Agreement and to ensure their compliance with these restrictions.\n\n(l)\tNO GUARANTEE. THE SOFTWARE IS NEITHER GUARANTEED NOR WARRANTED TO BE ERROR-FREE NOR SHALL ANY LIABILITY BE ASSUMED BY ALTOVA IN THIS RESPECT. NOTWITHSTANDING ANY SUPPORT FOR ANY TECHNICAL STANDARD, THE SOFTWARE IS NOT INTENDED FOR USE IN OR IN CONNECTION WITH, WITHOUT LIMITATION, THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION, COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL EQUIPMENT, MEDICAL DEVICES OR LIFE SUPPORT SYSTEMS, MEDICAL OR HEALTH CARE APPLICATIONS, OR OTHER APPLICATIONS WHERE THE FAILURE OF THE SOFTWARE OR ERRORS IN DATA PROCESSING COULD LEAD TO DEATH, PERSONAL INJURY OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE. YOU AGREE THAT YOU ARE SOLELY RESPONSIBLE FOR THE ACCURACY AND ADEQUACY OF THE SOFTWARE AND ANY DATA GENERATED OR PROCESSED BY THE SOFTWARE FOR YOUR INTENDED USE AND YOU WILL DEFEND, INDEMNIFY AND HOLD ALTOVA, ITS OFFICERS AND EMPLOYEES HARMLESS FROM ANY THIRD PARTY CLAIMS, DEMANDS, OR SUITS THAT ARE BASED UPON THE ACCURACY AND ADEQUACY OF THE SOFTWARE IN YOUR USE OR ANY DATA GENERATED BY THE SOFTWARE IN YOUR USE.\n\n2.\tINTELLECTUAL PROPERTY RIGHTS\n\nYou acknowledge that the Software and any copies that you are authorized by Altova to make are the intellectual property of and are owned by Altova and its suppliers. The structure, organization and code of the Software are the valuable trade secrets and confidential information of Altova and its suppliers. The Software is protected by copyright, including without limitation by United States Copyright Law, international treaty provisions and applicable laws in the country in which it is being used. You acknowledge that Altova retains the ownership of all patents, copyrights, trade secrets, trademarks and other intellectual property rights pertaining to the Software, and that Altova\u2019s ownership rights extend to any images, photographs, animations, videos, audio, music, text and \"applets\" incorporated into the Software and all accompanying printed materials. You will take no actions which adversely affect Altova\u2019s intellectual property rights in the Software. Trademarks shall be used in accordance with accepted trademark practice, including identification of trademark owners\u2019 names. Trademarks may only be used to identify printed output produced by the Software, and such use of any trademark does not give you any right of ownership in that trademark. Altova\u00ae, XMLSpy\u00ae, Authentic\u00ae, StyleVision\u00ae, MapForce\u00ae, UModel\u00ae, DatabaseSpy\u00ae, DiffDog\u00ae, SchemaAgent\u00ae, SemanticWorks\u00ae, MissionKit\u00ae, Markup Your Mind\u00ae, Nanonull\u2122, RaptorXML\u2122, RaptorXML Server\u2122, RaptorXML +XBRL Server\u2122, Powered By RaptorXML\u2122, FlowForce Server\u2122, and StyleVision Server\u2122 are trademarks of Altova GmbH (pending or registered in numerous countries). Unicode and the Unicode Logo are trademarks of Unicode, Inc. Windows, Windows XP, Windows Vista, Windows 7, and Windows 8 are trademarks of Microsoft. W3C, CSS, DOM, MathML, RDF, XHTML, XML and XSL are trademarks (registered in numerous countries) of the World Wide Web Consortium (W3C); marks of the W3C are registered and held by its host institutions, MIT, INRIA and Keio. Except as expressly stated above, this Agreement does not grant you any intellectual property rights in the Software. Notifications of claimed copyright infringement should be sent to Altova\u2019s copyright agent as further provided on the Altova Web Site.\n\n3.\tLIMITED TRANSFER RIGHTS\n\nNotwithstanding the foregoing, you may transfer all your rights to use the Software to another person or legal entity provided that: (a) you also transfer this Agreement, the Software and all other software or hardware bundled or pre-installed with the Software, including all copies, updates and prior versions, and all copies of font software converted into other formats, to such person or entity; (b) you retain no copies, including backups and copies stored on a computer; (c) the receiving party secures a personalized key code from Altova; and (d) the receiving party accepts the terms and conditions of this Agreement and any other terms and conditions upon which you legally purchased a license to the Software. Notwithstanding the foregoing, you may not transfer education, pre-release, or not-for-resale copies of the Software.\n\n4.\tPRE-RELEASE AND EVALUATION PRODUCT ADDITIONAL TERMS\n\nIf the product you have received with this license is pre-commercial release or beta Software (\"Pre-release Software\"), then this Section applies. In addition, this section applies to all evaluation and/or demonstration copies of Altova software (\"Evaluation Software\") and continues in effect until you purchase a license. To the extent that any provision in this section is in conflict with any other term or condition in this Agreement, this section shall supersede such other term(s) and condition(s) with respect to the Pre-release and/or Evaluation Software, but only to the extent necessary to resolve the conflict. You acknowledge that the Pre-release Software is a pre-release version, does not represent final product from Altova, and may contain bugs, errors and other problems that could cause system or other failures and data loss. CONSEQUENTLY, THE PRE-RELEASE AND/OR EVALUATION SOFTWARE IS PROVIDED TO YOU \"AS-IS\" WITH NO WARRANTIES FOR USE OR PERFORMANCE, AND ALTOVA DISCLAIMS ANY WARRANTY OR LIABILITY OBLIGATIONS TO YOU OF ANY KIND, WHETHER EXPRESS OR IMPLIED. WHERE LEGALLY LIABILITY CANNOT BE EXCLUDED FOR PRE-RELEASE AND/OR EVALUATION SOFTWARE, BUT IT MAY BE LIMITED, ALTOVA\u2019S LIABILITY AND THAT OF ITS SUPPLIERS SHALL BE LIMITED TO THE SUM OF FIFTY DOLLARS (USD $50) IN TOTAL. If the Evaluation Software has a time-out feature, then the software will cease operation after the conclusion of the designated evaluation period. Upon such expiration date, your license will expire unless otherwise extended. Your license to use any output created with the Evaluation Software that contains generated program code (including Unrestricted Source Code) such as Java, C++, C, VB.NET or XSLT and associated project files and build scripts as well as generated XML, XML Schemas, documentation, UML diagrams, and database structures terminates automatically upon the expiration of the designated evaluation period but the license to use such output is revived upon your purchase of a license for the Software that you evaluated and used to create such output. Access to any files created with the Evaluation Software is entirely at your risk. You acknowledge that Altova has not promised or guaranteed to you that Pre-release Software will be announced or made available to anyone in the future, that Altova has no express or implied obligation to you to announce or introduce the Pre-release Software, and that Altova may not introduce a product similar to or compatible with the Pre-release Software. Accordingly, you acknowledge that any research or development that you perform regarding the Pre-release Software or any product associated with the Pre-release Software is done entirely at your own risk. During the term of this Agreement, if requested by Altova, you will provide feedback to Altova regarding testing and use of the Pre-release Software, including error or bug reports. If you have been provided the Pre-release Software pursuant to a separate written agreement, your use of the Software is governed by such agreement. You may not sublicense, lease, loan, rent, distribute or otherwise transfer the Pre-release Software. Upon receipt of a later unreleased version of the Pre-release Software or release by Altova of a publicly released commercial version of the Software, whether as a stand-alone product or as part of a larger product, you agree to return or destroy all earlier Pre-release Software received from Altova and to abide by the terms of the license agreement for any such later versions of the Pre-release Software.\n\n5.\tLIMITED WARRANTY AND LIMITATION OF LIABILITY\n\n(a)\tLimited Warranty and Customer Remedies. Altova warrants to the person or entity that first purchases a license for use of the Software pursuant to the terms of this Agreement that (i) the Software will perform substantially in accordance with any accompanying Documentation for a period of ninety (90) days from the date of receipt, and (ii) any support services provided by Altova shall be substantially as described in Section 6 of this agreement. Some states and jurisdictions do not allow limitations on duration of an implied warranty, so the above limitation may not apply to you. To the extent allowed by applicable law, implied warranties on the Software, if any, are limited to ninety (90) days. Altova\u2019s and its suppliers\u2019 entire liability and your exclusive remedy shall be, at Altova\u2019s option, either (i) return of the price paid, if any, or (ii) repair or replacement of the Software that does not meet Altova\u2019s Limited Warranty and which is returned to Altova with a copy of your receipt. This Limited Warranty is void if failure of the Software has resulted from accident, abuse, misapplication, abnormal use, Trojan horse, virus, or any other malicious external code. Any replacement Software will be warranted for the remainder of the original warranty period or thirty (30) days, whichever is longer. This limited warranty does not apply to Evaluation and/or Pre-release Software.\n\n(b)\tNo Other Warranties and Disclaimer. THE FOREGOING LIMITED WARRANTY AND REMEDIES STATE THE SOLE AND EXCLUSIVE REMEDIES FOR ALTOVA OR ITS SUPPLIER\u2019S BREACH OF WARRANTY. ALTOVA AND ITS SUPPLIERS DO NOT AND CANNOT WARRANT THE PERFORMANCE OR RESULTS YOU MAY OBTAIN BY USING THE SOFTWARE. EXCEPT FOR THE FOREGOING LIMITED WARRANTY, AND FOR ANY WARRANTY, CONDITION, REPRESENTATION OR TERM TO THE EXTENT WHICH THE SAME CANNOT OR MAY NOT BE EXCLUDED OR LIMITED BY LAW APPLICABLE TO YOU IN YOUR JURISDICTION, ALTOVA AND ITS SUPPLIERS MAKE NO WARRANTIES, CONDITIONS, REPRESENTATIONS OR TERMS, EXPRESS OR IMPLIED, WHETHER BY STATUTE, COMMON LAW, CUSTOM, USAGE OR OTHERWISE AS TO ANY OTHER MATTERS. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, ALTOVA AND ITS SUPPLIERS DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SATISFACTORY QUALITY, INFORMATIONAL CONTENT OR ACCURACY, QUIET ENJOYMENT, TITLE AND NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE, AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES. THIS LIMITED WARRANTY GIVES YOU SPECIFIC LEGAL RIGHTS. YOU MAY HAVE OTHERS, WHICH VARY FROM STATE/JURISDICTION TO STATE/JURISDICTION.\n\n(c)\tLimitation of Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW EVEN IF A REMEDY FAILS ITS ESSENTIAL PURPOSE, IN NO EVENT SHALL ALTOVA OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE OR THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES, EVEN IF ALTOVA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ANY CASE, ALTOVA\u2019S ENTIRE LIABILITY UNDER ANY PROVISION OF THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE PRODUCT. Because some states and jurisdictions do not allow the exclusion or limitation of liability, the above limitation may not apply to you. In such states and jurisdictions, Altova\u2019s liability shall be limited to the greatest extent permitted by law and the limitations or exclusions of warranties and liability contained herein do not prejudice applicable statutory consumer rights of person acquiring goods otherwise than in the course of business. The disclaimer and limited liability above are fundamental to this Agreement between Altova and you.\n\n(d)\tInfringement Claims. Altova will indemnify and hold you harmless and will defend or settle any claim, suit or proceeding brought against you by a third party that is based upon a claim that the content contained in the Software infringes a copyright or violates an intellectual or proprietary right protected by United States or European Union law (\"Claim\"), but only to the extent the Claim arises directly out of the use of the Software and subject to the limitations set forth in Section 5 of this Agreement except as otherwise expressly provided. You must notify Altova in writing of any Claim within ten (10) business days after you first receive notice of the Claim, and you shall provide to Altova at no cost such assistance and cooperation as Altova may reasonably request from time to time in connection with the defense of the Claim. Altova shall have sole control over any Claim (including, without limitation, the selection of counsel and the right to settle on your behalf on any terms Altova deems desirable in the sole exercise of its discretion). You may, at your sole cost, retain separate counsel and participate in the defense or settlement negotiations. Altova shall pay actual damages, costs, and attorney fees awarded against you (or payable by you pursuant to a settlement agreement) in connection with a Claim to the extent such direct damages and costs are not reimbursed to you by insurance or a third party, to an aggregate maximum equal to the purchase price of the Software. If the Software or its use becomes the subject of a Claim or its use is enjoined, or if in the opinion of Altova\u2019s legal counsel the Software is likely to become the subject of a Claim, Altova shall attempt to resolve the Claim by using commercially reasonable efforts to modify the Software or obtain a license to continue using the Software. If in the opinion of Altova\u2019s legal counsel the Claim, the injunction or potential Claim cannot be resolved through reasonable modification or licensing, Altova, at its own election, may terminate this Agreement without penalty, and will refund to you on a pro rata basis any fees paid in advance by you to Altova. THE FOREGOING CONSTITUTES ALTOVA\u2019S SOLE AND EXCLUSIVE LIABILITY FOR INTELLECTUAL PROPERTY INFRINGEMENT. This indemnity does not apply to situations where the alleged infringement, whether patent or otherwise, is the result of a combination of the Altova software and additional elements supplied by you.\n\n6.\tSUPPORT AND MAINTENANCE\n\nAltova offers multiple optional \"Support & Maintenance Package(s)\" (\"SMP\") for the version of Software product edition that you have licensed, which you may elect to purchase in addition to your Software license. The Support Period, hereinafter defined, covered by such SMP shall be delineated at such time as you elect to purchase a SMP. Your rights with respect to support and maintenance as well as your upgrade eligibility depend on your decision to purchase SMP and the level of SMP that you have purchased:\n\n(a)\tIf you have not purchased SMP, you will receive the Software AS IS and will not receive any maintenance releases or updates. However, Altova, at its option and in its sole discretion on a case by case basis, may decide to offer maintenance releases to you as a courtesy, but these maintenance releases will not include any new features in excess of the feature set at the time of your purchase of the Software. In addition, Altova will provide free technical support to you for thirty (30) days after the date of your purchase (the \"Support Period\" for the purposes of this paragraph 6(a), and Altova, in its sole discretion on a case by case basis, may also provide free courtesy technical support during your thirty (30) day evaluation period. Technical support is provided via a Web-based support form only, and there is no guaranteed response time.\n\n(b)\tIf you have purchased SMP, then solely for the duration of its delineated Support Period, you are eligible to receive the version of the Software edition that you have licensed and all maintenance releases and updates for that edition that are released during your Support Period. For the duration of your SMP\u2019s Support Period, you will also be eligible to receive upgrades to the comparable edition of the next version of the Software that succeeds the Software edition that you have licensed for applicable upgrades released during your Support Period. The specific upgrade edition that you are eligible to receive based on your Support Period is further detailed in the SMP that you have purchased. Software that is introduced as separate product is not included in SMP. Maintenance releases, updates and upgrades may or may not include additional features. In addition, Altova will provide Priority Technical Support to you for the duration of the Support Period. Priority Technical Support is provided via a Web-based support form only and Altova will make commercially reasonable efforts to respond via e-mail to all requests within forty-eight (48) hours during Altova\u2019s business hours (MO-FR, 8am UTC \u2013 10pm UTC, Austrian and US holidays excluded) and to make reasonable efforts to provide work-arounds to errors reported in the Software.\n\nDuring the Support Period you may also report any Software problem or error to Altova. If Altova determines that a reported reproducible material error in the Software exists and significantly impairs the usability and utility of the Software, Altova agrees to use reasonable commercial efforts to correct or provide a usable work-around solution in an upcoming maintenance release or update, which is made available at certain times at Altova\u2019s sole discretion.\n\nIf Altova, in its discretion, requests written verification of an error or malfunction discovered by you or requests supporting example files that exhibit the Software problem, you shall promptly provide such verification or files, by email, telecopy, or overnight mail, setting forth in reasonable detail the respects in which the Software fails to perform. You shall use reasonable efforts to cooperate in diagnosis or study of errors. Altova may include error corrections in maintenance releases, updates, or new major releases of the Software. Altova is not obligated to fix errors that are immaterial. Immaterial errors are those that do not significantly impact use of the Software as determined by Altova in its sole discretion. Whether or not you have purchased the Support & Maintenance Package, technical support only covers issues or questions resulting directly out of the operation of the Software and Altova will not provide you with generic consultation, assistance, or advice under any circumstances.\n\nUpdating Software may require the updating of software not covered by this Agreement before installation. Updates of the operating system and application software not specifically covered by this Agreement are your responsibility and will not be provided by Altova under this Agreement. Altova\u2019s obligations under this Section 6 are contingent upon your proper use of the Software and your compliance with the terms and conditions of this Agreement at all times. Altova shall be under no obligation to provide the above technical support if, in Altova\u2019s opinion, the Software has failed due to the following conditions: (i) damage caused by the relocation of the Software to another location or CPU; (ii) alterations, modifications or attempts to change the Software without Altova\u2019s written approval; (iii) causes external to the Software, such as natural disasters, the failure or fluctuation of electrical power, or computer equipment failure; (iv) your failure to maintain the Software at Altova\u2019s specified release level; or (v) use of the Software with other software without Altova\u2019s prior written approval. It will be your sole responsibility to: (i) comply with all Altova-specified operating and troubleshooting procedures and then notify Altova immediately of Software malfunction and provide Altova with complete information thereof; (ii) provide for the security of your confidential information; (iii) establish and maintain backup systems and procedures necessary to reconstruct lost or altered files, data or programs.\n\n7.\tSOFTWARE ACTIVATION, UPDATES AND LICENSE METERING\n\n(a) License Metering. The Software includes a built-in license metering module that is designed to assist you with monitoring license compliance in small local networks. The metering module attempts to communicate with other machines on your local area network. You permit Altova to use your internal network for license monitoring for this purpose. This license metering module may be used to assist with your license compliance but should not be the sole method. Should your firewall settings block said communications, you must deploy an accurate means of monitoring usage by the end user and preventing users from using the Software more than the Permitted Number.\n\n(b) License Compliance Monitoring. You are required to utilize a process or tool to ensure that the Permitted Number is not exceeded. Without prejudice or waiver of any potential violations of the Agreement, Altova may provide you with additional compliance tools should you be unable to accurately account for license usage within your organization. If provided with such a tool by Altova, you (a) are required to use it in order to comply with the terms of this Agreement and (b) permit Altova to use your internal network for license monitoring and metering and to generate compliance reports that are communicated to Altova from time to time.\n\n(c)\tSoftware Activation. The Software may use your internal network and Internet connection for the purpose of transmitting license-related data at the time of installation, registration, use, or update to an Altova Master License Server and validating the authenticity of the license-related data in order to protect Altova against unlicensed or illegal use of the Software and to improve customer service. Activation is based on the exchange of license related data between your computer and the Altova Master License Server. You agree that Altova may use these measures and you agree to follow any applicable requirements. You further agree that use of license key codes that are not or were not generated by Altova and lawfully obtained from Altova, or an authorized reseller as part of an effort to activate or use the Software violates Altova\u2019s intellectual property rights as well as the terms of this Agreement. You agree that efforts to circumvent or disable Altova\u2019s copyright protection mechanisms, the license management mechanism, or the Altova Master License Server violate Altova\u2019s intellectual property rights as well as the terms of this Agreement. Altova expressly reserves the rights to seek all available legal and equitable remedies to prevent such actions and to recover lost profits, damages and costs.\n\n(d)\tLiveUpdate.\tAltova provides a new LiveUpdate notification service to you, which is free of charge. Altova may use your internal network and Internet connection for the purpose of transmitting license-related data to an Altova-operated LiveUpdate server to validate your license at appropriate intervals and determine if there is any update available for you.\n\n(e)\tUse of Data. The terms and conditions of the Privacy Policy are set out in full at http://www.altova.com/privacy and are incorporated by reference into this Agreement. By your acceptance of the terms of this Agreement and/or use of the Software, you authorize the collection, use and disclosure of information collected by Altova for the purposes provided for in this Agreement and/or the Privacy Policy. Altova has the right in its sole discretion to amend this provision of the Agreement and/or Privacy Policy at any time. You are encouraged to review the terms of the Privacy Policy as posted on the Altova Web site from time to time.\n\n(f)\tAudit Rights. You agree that Altova may audit your use of the Software for compliance with the terms of this Agreement at any time, upon reasonable notice. In the event that such audit reveals any use of the Software by you other than in full compliance with the terms of this Agreement, you shall reimburse Altova for all reasonable expenses related to such audit in addition to any other liabilities you may incur as a result of such non-compliance.\n\n(g)\tNotice to European Users. Please note that the information as described in paragraph 7(d) above may be transferred outside of the European Economic Area, for purposes of processing, analysis, and review, by Altova, Inc., a company located in Beverly, Massachusetts, U.S.A., or its subsidiaries or Altova\u2019s subsidiaries or divisions, or authorized partners, located worldwide. You are advised that the United States uses a sectoral model of privacy protection that relies on a mix of legislation, governmental regulation, and self-regulation. You are further advised that the Council of the European Union has found that this model does not provide \"adequate\" privacy protections as contemplated by Article 25 of the European Union's Data Directive. (Directive 95/46/EC, 1995 O.J. (L 281) 31). Article 26 of the European Union's Data Directive allows for transfer of personal data from the European Union to a third country if the individual has unambiguously given his consent to the transfer of personal information, regardless of the third country's level of protection. By agreeing to this Agreement, you consent to the transfer of all such information to the United States and the processing of that information as described in this Agreement and the Privacy Policy.\n\n8.\tTERM AND TERMINATION\n\nThis Agreement may be terminated (a) by your giving Altova written notice of termination; (b) by Altova, at its option, giving you written notice of termination if you commit a breach of this Agreement and fail to cure such breach within ten (10) days after notice from Altova; or (c) at the request of an authorized Altova reseller in the event that you fail to make your license payment or other monies due and payable. In addition the Agreement governing your use of a previous version of the Software that you have upgraded or updated of the Software is terminated upon your acceptance of the terms and conditions of the Agreement accompanying such upgrade or update. Upon any termination of the Agreement, you must cease all use of the Software that this Agreement governs, destroy all copies then in your possession or control and take such other actions as Altova may reasonably request to ensure that no copies of the Software remain in your possession or control. The terms and conditions set forth in Sections 1(h), 1(i), 1(j), 1(k), 1(l), 2, 5, 7, 9, 10, 11, and 11 survive termination as applicable.\n\n9.\tRESTRICTED RIGHTS NOTICE AND EXPORT RESTRICTIONS\n\nThe Software was developed entirely at private expense and is commercial computer software provided with RESTRICTED RIGHTS. Use, duplication or disclosure by the U.S. Government or a U.S. Government contractor or subcontractor is subject to the restrictions set forth in this Agreement and as provided in FAR 12.211 and 12.212 (48 C.F.R. \u00a712.211 and 12.212) or DFARS 227. 7202 (48 C.F.R. \u00a7227-7202) as applicable. Consistent with the above as applicable, Commercial Computer Software and Commercial Computer Documentation licensed to U.S. government end users only as commercial items and only with those rights as are granted to all other end users under the terms and conditions set forth in this Agreement. Manufacturer is Altova GmbH, Rudolfsplatz, 13a/9, A-1010 Vienna, Austria/EU. You may not use or otherwise export or re-export the Software or Documentation except as authorized by United States law and the laws of the jurisdiction in which the Software was obtained. In particular, but without limitation, the Software or Documentation may not be exported or re-exported (i) into (or to a national or resident of) any U.S. embargoed country or (ii) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Department of Commerce's Table of Denial Orders. By using the Software, you represent and warrant that you are not located in, under control of, or a national or resident of any such country or on any such list.\n\n10. US GOVERNMENT ENTITIES\n\nNotwithstanding the foregoing, if you are an agency, instrumentality or department of the federal government of the United States, then this Agreement shall be governed in accordance with the laws of the United States of America, and in the absence of applicable federal law, the laws of the Commonwealth of Massachusetts will apply. Further, and notwithstanding anything to the contrary in this Agreement (including but not limited to Section 5 (Indemnification)), all claims, demands, complaints and disputes will be subject to the Contract Disputes Act (41 U.S.C. \u00a7\u00a77101 et seq.), the Tucker Act (28 U.S.C. \u00a71346(a) and \u00a71491), or the Federal Tort Claims Act (28 U.S.C. \u00a7\u00a71346(b), 2401-2402, 2671-2672, 2674-2680), FAR 1.601(a) and 43.102 (Contract Modifications); FAR 12.302(b), as applicable, or other applicable governing authority. For the avoidance of doubt, if you are an agency, instrumentality, or department of the federal, state or local government of the U.S. or a U.S. public and accredited educational institution, then your indemnification obligations are only applicable to the extent they would not cause you to violate any applicable law (e.g., the Anti-Deficiency Act), and you have any legally required authorization or authorizing statute.\n\n11. THIRD PARTY SOFTWARE\n\nThe Software may contain third party software which requires notices and/or additional terms and conditions. Such required third party software notices and/or additional terms and conditions are located at our Website at http://www.altova.com/legal_3rdparty.html and are made a part of and incorporated by reference into this Agreement. By accepting this Agreement, you are also accepting the additional terms and conditions, if any, set forth therein.\n\n12. JURISDICTION, CHOICE OF LAW, AND VENUE\n\nIf you are located in the European Union and are using the Software in the European Union and not in the United States, then this Agreement will be governed by and construed in accordance with the laws of the Republic of Austria (excluding its conflict of laws principles and the U.N. Convention on Contracts for the International Sale of Goods) and you expressly agree that exclusive jurisdiction for any claim or dispute with Altova or relating in any way to your use of the Software resides in the Handelsgericht, Wien (Commercial Court, Vienna) and you further agree and expressly consent to the exercise of personal jurisdiction in the Handelsgericht, Wien (Commercial Court, Vienna) in connection with any such dispute or claim.\n\nIf you are located in the United States or are using the Software in the United States then this Agreement will be governed by and construed in accordance with the laws of the Commonwealth of Massachusetts, USA (excluding its conflict of laws principles and the U.N. Convention on Contracts for the International Sale of Goods) and you expressly agree that exclusive jurisdiction for any claim or dispute with Altova or relating in any way to your use of the Software resides in the federal or state courts of the Commonwealth of Massachusetts and you further agree and expressly consent to the exercise of personal jurisdiction in the federal or state courts of the Commonwealth of Massachusetts in connection with any such dispute or claim.\n\nIf you are located outside of the European Union or the United States and are not using the Software in the United States, then this Agreement will be governed by and construed in accordance with the laws of the Republic of Austria (excluding its conflict of laws principles and the U.N. Convention on Contracts for the International Sale of Goods) and you expressly agree that exclusive jurisdiction for any claim or dispute with Altova or relating in any way to your use of the Software resides in the Handelsgericht, Wien (Commercial Court, Vienna) and you further agree and expressly consent to the exercise of personal jurisdiction in the Handelsgericht Wien (Commercial Court, Vienna) in connection with any such dispute or claim. This Agreement will not be governed by the conflict of law rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded.\n\n13.\tTRANSLATIONS\n\nWhere Altova has provided you with a foreign translation of the English language version, you agree that the translation is provided for your convenience only and that the English language version will control. If there is any contradiction between the English language version and a translation, then the English language version shall take precedence.\n\n14.\tGENERAL PROVISIONS\n\nThis Agreement contains the entire agreement and understanding of the parties with respect to the subject matter hereof, and supersedes all prior written and oral understandings of the parties with respect to the subject matter hereof. Any notice or other communication given under this Agreement shall be in writing and shall have been properly given by either of us to the other if sent by certified or registered mail, return receipt requested, or by overnight courier to the address shown on Altova\u2019s Web site for Altova and the address shown in Altova\u2019s records for you, or such other address as the parties may designate by notice given in the manner set forth above. This Agreement will bind and inure to the benefit of the parties and our respective heirs, personal and legal representatives, affiliates, successors and permitted assigns. The failure of either of us at any time to require performance of any provision hereof shall in no manner affect such party\u2019s right at a later time to enforce the same or any other term of this Agreement. This Agreement may be amended only by a document in writing signed by both of us. In the event of a breach or threatened breach of this Agreement by either party, the other shall have all applicable equitable as well as legal remedies. Each party is duly authorized and empowered to enter into and perform this Agreement. If, for any reason, any provision of this Agreement is held invalid or otherwise unenforceable, such invalidity or unenforceability shall not affect the remainder of this Agreement, and this Agreement shall continue in full force and effect to the fullest extent allowed by law. The parties knowingly and expressly consent to the foregoing terms and conditions.", + "json": "altova-eula.json", + "yaml": "altova-eula.yml", + "html": "altova-eula.html", + "license": "altova-eula.LICENSE" + }, + { + "license_key": "amazon-redshift-jdbc", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-amazon-redshift-jdbc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Amazon Redshift JDBC Driver License Agreement\n\nTHIS IS AN AGREEMENT BETWEEN YOU AND AMAZON WEB SERVICES, INC. (WITH ITS AFFILIATES, \"AWS\" OR \"WE\")\nTHAT GOVERNS YOUR USE OF THE AMAZON REDSHIFT JDBC DRIVER SOFTWARE (TOGETHER WITH ANY UPDATES\nAND ENHANCEMENTS TO IT, AND ACCOMPANYING DOCUMENTATION, THE \"SOFTWARE\") THAT WE MAKE\nAVAILABLE TO YOU (THIS \"LICENSE AGREEMENT\"). IF YOU INSTALL OR USE THE SOFTWARE, YOU WILL BE BOUND\nBY THIS LICENSE AGREEMENT. UNLESS OTHERWISE DEFINED IN THIS LICENSE AGREEMENT, CAPITALIZED TERMS\nWILL HAVE THE SAME MEANING AS SET FORTH IN THE AWS CUSTOMER AGREEMENT POSTED AT\nAWS.AMAZON.COM/AGREEMENT (THE \"AWS CUSTOMER AGREEMENT\").\n\n1. Use of the Software\nWe hereby grant you a personal, limited, nonexclusive, non-transferable, non-sublicenseable license to install and\nuse the Software on computer equipment owned or controlled by you solely to access Amazon Redshift for your\ninternal business purposes. Some components of the Software (whether developed by AWS or third parties) may\nbe governed by applicable open source software licenses. Your license rights with respect to these individual\ncomponents are defined by the applicable open source software licenses, and nothing in this License Agreement\nwill restrict, limit, or otherwise affect any rights or obligations you may have, or conditions to which you may be\nsubject, under such open source software licenses.\n\n2. Limitations\nYou may not, and you will not encourage, assist or authorize any other person to, (a) incorporate any portion of\nthe Software into your own programs or compile any portion of it in combination with your own programs; (b) sell,\nrent, lease, lend, loan, distribute, act as a service bureau, publicly communicate, transform, or sub-license the\nSoftware or otherwise assign any rights to the Software in whole or in part; (c) modify, alter, tamper with, repair,\nor otherwise create derivative works of the Software, (d) reverse engineer, disassemble, or decompile the\nSoftware or apply any other process or procedure to derive the source code of any software included in the\nSoftware, or (e) access or use the Software or the Service in a way intended to avoid incurring fees or exceeding\nusage limits or quotas.\n\n3. Reservation of Rights\nYou may not use the Software for any illegal purpose. The Software is the intellectual property of AWS or its\nlicensors. The structure, organization, and code of the Software are valuable trade secrets and confidential\ninformation of AWS. The Software is protected by law, including without limitation copyright laws and\ninternational treaty provisions. Except for the rights explicitly granted to you in this License Agreement, all right,\ntitle and interest in the Software are reserved and retained by us and our licensors. You do not acquire any\nintellectual property or other rights in the Software as a result of downloading the Software.\n\n4. Updates\nIn order to keep the Software up-to-date, we may offer automatic or manual updates at any time. If we elect to\nprovide maintenance or support of any kind, we may terminate that maintenance or support at any time without\nnotice to you.\n\n5. Termination\nYou may terminate this License Agreement at any time by uninstalling or destroying all copies of the Software that\nare in your possession or control. Your rights under this License Agreement will immediately and automatically\nterminate if you do not comply with any term or condition of this License Agreement or the AWS Customer\nAgreement, including any failure to remit timely payment. In the case of termination, you must cease all use and\ndestroy all copies of the Software. We may modify, suspend, discontinue, or terminate your right to use part or all\nof the Software at any time without notice to you, and in that event we may modify the Software to make it \ninoperable. AWS will not be liable to you should it exercise those rights. Our failure to insist upon or enforce your\nstrict compliance with this License Agreement will not constitute a waiver of any of our rights.\n\n6. Disclaimer of Warranties and Limitation of Liability\n\na. YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT INSTALLATION AND USE OF, AND ANY OTHER ACCESS TO,\nTHE APPLICATION IS AT YOUR SOLE RISK. THE APPLICATION IS DELIVERED TO YOU \"AS IS\" WITH ALL FAULTS AND\nWITHOUT WARRANTY OF ANY KIND, AND AWS, ITS LICENSORS AND DISTRIBUTORS, AND EACH OF THEIR\nRESPECTIVE AFFILIATES AND SUPPLIERS (COLLECTIVELY, THE \"RELEASED PARTIES\") DISCLAIM ALL WARRANTIES,\nEXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE, ACCURACY, QUIET ENJOYMENT, AND NON-INFRINGEMENT. NO ORAL OR\nWRITTEN INFORMATION OR ADVICE GIVEN BY A RELEASED PARTY OR AN AUTHORIZED REPRESENTATIVE OF A\nRELEASED PARTY WILL CREATE A WARRANTY. THE LAWS OF CERTAIN JURISDICTIONS DO NOT ALLOW THE\nDISCLAIMER OF IMPLIED WARRANTIES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE DISCLAIMERS,\nEXCLUSIONS, OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MAY HAVE ADDITIONAL RIGHTS.\n\nb. TO THE EXTENT NOT PROHIBITED BY LAW, NO RELEASED PARTY WILL BE LIABLE TO YOU FOR ANY INCIDENTAL\nOR CONSEQUENTIAL DAMAGES FOR BREACH OF ANY EXPRESS OR IMPLIED WARRANTY, BREACH OF CONTRACT,\nNEGLIGENCE, STRICT LIABILITY, OR ANY OTHER LEGAL THEORY RELATED TO THE APPLICATION, INCLUDING\nWITHOUT LIMITATION ANY DAMAGES ARISING OUT OF LOSS OF PROFITS, REVENUE, DATA, OR USE OF THE\nAPPLICATION, EVEN IF A RELEASED PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ANY\nCASE, ANY RELEASED PARTY\u2019S AGGREGATE LIABILITY UNDER THIS LICENSE AGREEMENT WILL BE LIMITED TO\n$50.00. THE LAWS OF CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR\nCONSEQUENTIAL DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR\nLIMITATIONS MAY NOT APPLY TO YOU, AND YOU MAY HAVE ADDITIONAL RIGHTS.\n\n7. Indemnification\nYou are liable for and will defend, indemnify, and hold harmless the Released Parties and their officers, directors,\nagents, and employees, from and against any liability, loss, damage, cost, or expense (including reasonable\nattorneys\u2019 fees) arising out of your use of the Software, violation of the License Agreement, violation of applicable\nlaw, or violation of any right of any person or entity, including without limitation intellectual property rights.\n\n8. Source Code\nPlease see the Amazon Redshift technical documentation located on the AWS website (aws.amazon.com) for\ninformation on how to retrieve a copy of the source code for certain software components included with the\nSoftware.\n\n9. Export Regulations\nYou will comply with all export and re-export restrictions and regulations of the United States Department of\nCommerce and other United States and foreign agencies and authorities that may apply to the Software, and not\nto transfer, or encourage, assist, or authorize the transfer of the Software to a prohibited country or otherwise in\nviolation of any applicable restrictions or regulations.\n\n10. U.S. Government End Users\nThe Software is provided to the U.S. Government as \"commercial items,\" \"commercial computer software,\"\n\"commercial computer software documentation,\" and \"technical data\" with the same rights and restrictions\ngenerally applicable to the Software. If you are using the Software on behalf of the U.S. Government and these\nterms fail to meet the U.S. Government\u2019s needs or are inconsistent in any respect with federal law, you will\nimmediately discontinue your use of the Software. The terms \"commercial item\" \"commercial computer \nsoftware,\" \"commercial computer software documentation,\" and \"technical data\" are defined in the Federal\nAcquisition Regulation and the Defense Federal Acquisition Regulation Supplement.\n\n11. Amendment\nWe may amend this License Agreement at our sole discretion by posting the revised terms on the AWS website\n(aws.amazon.com) or within the Software. Your continued use of the Software after any amendment's effective\ndate evidences your agreement to be bound by it.\n\n12. Conflicts\nThe terms of this License Agreement govern the Software and any updates or upgrades to the Software that we\nmay provide that replace or supplement the original Software, unless the update or upgrade is accompanied by a\nseparate license, in which case the terms of that license will govern.", + "json": "amazon-redshift-jdbc.json", + "yaml": "amazon-redshift-jdbc.yml", + "html": "amazon-redshift-jdbc.html", + "license": "amazon-redshift-jdbc.LICENSE" + }, + { + "license_key": "amazon-sl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-.amazon.com.-AmznSL-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-amazon-sl" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Amazon Software License\n\nThis Amazon Software License (\"License\") governs your use, reproduction, and distribution of the accompanying software as specified below.\n\n1. Definitions\n\n\"Licensor\" means any person or entity that distributes its Work.\n\n\"Software\" means the original work of authorship made available under this License.\n\n\"Work\" means the Software and any additions to or derivative works of the Software that are made available under this License.\n\nThe terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and \"distribution\" have the meaning as provided under U.S. copyright law; provided, however, that 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.\n\nWorks, including the Software, are \"made available\" under this License by including in or with the Work either (a) a copyright notice referencing the applicability of this License to the Work, or (b) a copy of this License.\n\n2. License Grants\n\n2.1 Copyright Grant. Subject to the terms and conditions of this License, each Licensor grants to you a perpetual, worldwide, non-exclusive, royalty-free, copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense and distribute its Work and any resulting derivative works in any form.\n\n2.2 Patent Grant. Subject to the terms and conditions of this License, each Licensor grants to you a perpetual, worldwide, non-exclusive, royalty-free patent license to make, have made, use, sell, offer for sale, import, and otherwise transfer its Work, in whole or in part. The foregoing license applies only to the patent claims licensable by Licensor that would be infringed by Licensor\u2019s Work (or portion thereof) individually and excluding any combinations with any other materials or technology.\n\n3. Limitations\n\n3.1 Redistribution. You may reproduce or distribute the Work only if (a) you do so under this License, (b) you include a complete copy of this License with your distribution, and (c) you retain without modification any copyright, patent, trademark, or attribution notices that are present in the Work.\n\n3.2 Derivative Works. You may specify that additional or different terms apply to the use, reproduction, and distribution of your derivative works of the Work (\"Your Terms\") only if (a) Your Terms provide that the use limitation in Section 3.3 applies to your derivative works, and (b) you identify the specific derivative works that are subject to Your Terms. Notwithstanding Your Terms, this License (including the redistribution requirements in Section 3.1) will continue to apply to the Work itself.\n\n3.3 Use Limitation. The Work and any derivative works thereof only may be used or intended for use with the web services, computing platforms or applications provided by Amazon.com, Inc. or its affiliates, including Amazon Web Services LLC.\n\n3.4 Patent Claims. If you bring or threaten to bring a patent claim against any Licensor (including any claim, cross-claim or counterclaim in a lawsuit) to enforce any patents that you allege are infringed by any Work, then your rights under this License from such Licensor (including the grants in Sections 2.1 and 2.2) will terminate immediately.\n\n3.5 Trademarks. This License does not grant any rights to use any Licensor\u2019s or its affiliates\u2019 names, logos, or trademarks, except as necessary to reproduce the notices described in this License.\n\n3.6 Termination. If you violate any term of this License, then your rights under this License (including the grants in Sections 2.1 and 2.2) will terminate immediately.\n\n4. Disclaimer of Warranty.\n\nTHE WORK IS PROVIDED \"AS IS\" WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WARRANTIES OR CONDITIONS OF M ERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE OR NON-INFRINGEMENT. YOU BEAR THE RISK OF UNDERTAKING ANY ACTIVITIES UNDER THIS LICENSE. SOME STATES\u2019 CONSUMER LAWS DO NOT ALLOW EXCLUSION OF AN IMPLIED WARRANTY, SO THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\n5. Limitation of Liability.\n\nEXCEPT AS PROHIBITED BY APPLICABLE LAW, IN NO EVENT AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE SHALL ANY LICENSOR BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATED TO THIS LICENSE, THE USE OR INABILITY TO USE THE WORK (INCLUDING BUT NOT LIMITED TO LOSS OF GOODWILL, BUSINESS INTERRUPTION, LOST PROFITS OR DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY OTHER COMM ERCIAL DAMAGES OR LOSSES), EVEN IF THE LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nEffective Date \u2013 April 18, 2008 \u00a9 2008 Amazon.com, Inc. or its affiliates. All rights reserved.", + "json": "amazon-sl.json", + "yaml": "amazon-sl.yml", + "html": "amazon-sl.html", + "license": "amazon-sl.LICENSE" + }, + { + "license_key": "amd-historical", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-amd-historical", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software is the property of Advanced Micro Devices, Inc (AMD) which\nspecifically grants the user the right to modify, use and distribute this\nsoftware provided this notice is not removed or altered. All other rights\nare reserved by AMD.\n\nAMD MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO THIS\nSOFTWARE. IN NO EVENT SHALL AMD BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL\nDAMAGES IN CONNECTION WITH OR ARISING FROM THE FURNISHING, PERFORMANCE, OR\nUSE OF THIS SOFTWARE.", + "json": "amd-historical.json", + "yaml": "amd-historical.yml", + "html": "amd-historical.html", + "license": "amd-historical.LICENSE" + }, + { + "license_key": "amd-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-amd-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "REDISTRIBUTION: Permission is hereby granted, free of any license fees,\nto any person obtaining a copy of this microcode (the \"Software\"), to\ninstall, reproduce, copy and distribute copies, in binary form only, of\nthe Software and to permit persons to whom the Software is provided to\ndo the same, provided that the following conditions are met:\n\nNo reverse engineering, decompilation, or disassembly of this Software\nis permitted.\n\nRedistributions must reproduce the above copyright notice, this\npermission notice, and the following disclaimers and notices in the\nSoftware documentation and/or other materials provided with the\nSoftware.\n\nDISCLAIMER: THE USE OF THE SOFTWARE IS AT YOUR SOLE RISK. THE SOFTWARE\nIS PROVIDED \"AS IS\" AND WITHOUT WARRANTY OF ANY KIND AND COPYRIGHT\nHOLDER AND ITS LICENSORS EXPRESSLY DISCLAIM ALL WARRANTIES, EXPRESS AND\nIMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\nCOPYRIGHT HOLDER AND ITS LICENSORS DO NOT WARRANT THAT THE SOFTWARE WILL\nMEET YOUR REQUIREMENTS, OR THAT THE OPERATION OF THE SOFTWARE WILL BE\nUNINTERRUPTED OR ERROR-FREE. THE ENTIRE RISK ASSOCIATED WITH THE USE OF\nTHE SOFTWARE IS ASSUMED BY YOU. FURTHERMORE, COPYRIGHT HOLDER AND ITS\nLICENSORS DO NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE\nOR THE RESULTS OF THE USE OF THE SOFTWARE IN TERMS OF ITS CORRECTNESS,\nACCURACY, RELIABILITY, CURRENTNESS, OR OTHERWISE.\n\nDISCLAIMER: UNDER NO CIRCUMSTANCES INCLUDING NEGLIGENCE, SHALL COPYRIGHT\nHOLDER AND ITS LICENSORS OR ITS DIRECTORS, OFFICERS, EMPLOYEES OR AGENTS\n(\"AUTHORIZED REPRESENTATIVES\") BE LIABLE FOR ANY INCIDENTAL, INDIRECT,\nSPECIAL OR CONSEQUENTIAL DAMAGES (INCLUDING DAMAGES FOR LOSS OF BUSINESS\nPROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, AND THE\nLIKE) ARISING OUT OF THE USE, MISUSE OR INABILITY TO USE THE SOFTWARE,\nBREACH OR DEFAULT, INCLUDING THOSE ARISING FROM INFRINGEMENT OR ALLEGED\nINFRINGEMENT OF ANY PATENT, TRADEMARK, COPYRIGHT OR OTHER INTELLECTUAL\nPROPERTY RIGHT EVEN IF COPYRIGHT HOLDER AND ITS AUTHORIZED\nREPRESENTATIVES HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN\nNO EVENT SHALL COPYRIGHT HOLDER OR ITS AUTHORIZED REPRESENTATIVES TOTAL\nLIABILITY FOR ALL DAMAGES, LOSSES, AND CAUSES OF ACTION (WHETHER IN\nCONTRACT, TORT (INCLUDING NEGLIGENCE) OR OTHERWISE) EXCEED THE AMOUNT OF\nUS$10.\n\nNotice: The Software is subject to United States export laws and\nregulations. You agree to comply with all domestic and international\nexport laws and regulations that apply to the Software, including but\nnot limited to the Export Administration Regulations administered by the\nU.S. Department of Commerce and International Traffic in Arm Regulations\nadministered by the U.S. Department of State. These laws include\nrestrictions on destinations, end users and end use.", + "json": "amd-linux-firmware.json", + "yaml": "amd-linux-firmware.yml", + "html": "amd-linux-firmware.html", + "license": "amd-linux-firmware.LICENSE" + }, + { + "license_key": "amd-linux-firmware-export", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-amd-linux-firmware-export", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted by Advanced Micro Devices, Inc. (\"AMD\"),\nfree of any license fees, to any person obtaining a copy of this\nmicrocode in binary form (the \"Software\") (\"You\"), to install,\nreproduce, copy and distribute copies of the Software and to permit\npersons to whom the Software is provided to do the same, subject to\nthe following terms and conditions. Your use of any portion of the\nSoftware shall constitute Your acceptance of the following terms and\nconditions. If You do not agree to the following terms and conditions,\ndo not use, retain or redistribute any portion of the Software.\n\nIf You redistribute this Software, You must reproduce the above\ncopyright notice and this license with the Software.\nWithout specific, prior, written permission from AMD, You may not\nreference AMD or AMD products in the promotion of any product derived\nfrom or incorporating this Software in any manner that implies that\nAMD endorses or has certified such product derived from or\nincorporating this Software.\n\nYou may not reverse engineer, decompile, or disassemble this Software\nor any portion thereof.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" WITHOUT ANY EXPRESS OR IMPLIED\nWARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO WARRANTIES OF\nMERCHANTABILITY, NONINFRINGEMENT, TITLE, FITNESS FOR ANY PARTICULAR\nPURPOSE, OR WARRANTIES ARISING FROM CONDUCT, COURSE OF DEALING, OR\nUSAGE OF TRADE. IN NO EVENT SHALL AMD OR ITS LICENSORS BE LIABLE FOR\nANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR\nLOSS OF PROFITS, BUSINESS INTERRUPTION, OR LOSS OF DATA OR\nINFORMATION) ARISING OUT OF AMD'S NEGLIGENCE, GROSS NEGLIGENCE, THE\nUSE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF AMD HAS BEEN ADVISED\nOF THE POSSIBILITY OF SUCH DAMAGES. BECAUSE SOME JURISDICTIONS\nPROHIBIT THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR\nINCIDENTAL DAMAGES OR THE EXCLUSION OF IMPLIED WARRANTIES, THE ABOVE\nLIMITATION MAY NOT APPLY TO YOU.\n\nWithout limiting the foregoing, the Software may implement third party\ntechnologies for which You must obtain licenses from parties other\nthan AMD. You agree that AMD has not obtained or conveyed to You, and\nthat You shall be responsible for obtaining the rights to use and/or\ndistribute the applicable underlying intellectual property rights\nrelated to the third party technologies. These third party\ntechnologies are not licensed hereunder.\n\nIf You use the Software (in whole or in part), You shall adhere to all\napplicable U.S., European, and other export laws, including but not\nlimited to the U.S. Export Administration Regulations (\"EAR\"), (15\nC.F.R. Sections 730 through 774), and E.U. Council Regulation (EC) No\n1334/2000 of 22 June 2000. Further, pursuant to Section 740.6 of the\nEAR, You hereby certify that, except pursuant to a license granted by\nthe United States Department of Commerce Bureau of Industry and\nSecurity or as otherwise permitted pursuant to a License Exception\nunder the U.S. Export Administration Regulations (\"EAR\"), You will not\n(1) export, re-export or release to a national of a country in Country\nGroups D:1, E:1 or E:2 any restricted technology, software, or source\ncode You receive hereunder, or (2) export to Country Groups D:1, E:1\nor E:2 the direct product of such technology or software, if such\nforeign produced direct product is subject to national security\ncontrols as identified on the Commerce Control List (currently found\nin Supplement 1 to Part 774 of EAR). For the most current Country\nGroup listings, or for additional information about the EAR or Your\nobligations under those regulations, please refer to the U.S. Bureau\nof Industry and Security?s website at ttp://www.bis.doc.gov/.", + "json": "amd-linux-firmware-export.json", + "yaml": "amd-linux-firmware-export.yml", + "html": "amd-linux-firmware-export.html", + "license": "amd-linux-firmware-export.LICENSE" + }, + { + "license_key": "amdplpa", + "category": "Permissive", + "spdx_license_key": "AMDPLPA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in any form of this material and any product thereof including\nsoftware in source or binary forms, along with any related documentation, with or\nwithout modification (\"this material\"), is permitted provided that the following\nconditions are met:\n\n Redistributions of source code of any software must retain the above copyright\n notice and all terms of this license as part of the code.\n\n Redistributions in binary form of any software must reproduce the above\n copyright notice and all terms of this license in any related documentation\n and/or other materials.\n\n Neither the names nor trademarks of Advanced Micro Devices, Inc. or any\n copyright holders or contributors may be used to endorse or promote products\n derived from this material without specific prior written permission.\n\n Notice about U.S. Government restricted rights: This material is provided with\n \"RESTRICTED RIGHTS.\" Use, duplication or disclosure by the U.S. Government is\n subject to the full extent of restrictions set forth in FAR52.227 and\n DFARS252.227 et seq., or any successor or applicable regulations. Use of this\n material by the U.S. Government constitutes acknowledgment of the proprietary\n rights of Advanced Micro Devices, Inc. and any copyright holders and\n contributors.\n\n ANY BREACH OF ANY TERM OF THIS LICENSE SHALL RESULT IN THE IMMEDIATE REVOCATION\n OF ALL RIGHTS TO REDISTRIBUTE, ACCESS OR USE THIS MATERIAL.\n\nTHIS MATERIAL IS PROVIDED BY ADVANCED MICRO DEVICES, INC. AND ANY COPYRIGHT HOLDERS\nAND CONTRIBUTORS \"AS IS\" IN ITS CURRENT CONDITION AND WITHOUT ANY REPRESENTATIONS,\nGUARANTEE, OR WARRANTY OF ANY KIND OR IN ANY WAY RELATED TO SUPPORT, INDEMNITY, ERROR\nFREE OR UNINTERRUPTED OPERATION, OR THAT IT IS FREE FROM DEFECTS OR VIRUSES. ALL\nOBLIGATIONS ARE HEREBY DISCLAIMED - WHETHER EXPRESS, IMPLIED, OR STATUTORY -\nINCLUDING, BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE, ACCURACY, COMPLETENESS, OPERABILITY, QUALITY OF\nSERVICE, OR NON-INFRINGEMENT. IN NO EVENT SHALL ADVANCED MICRO DEVICES, INC. OR ANY\nCOPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, PUNITIVE, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, REVENUE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED OR BASED ON ANY THEORY OF LIABILITY\nARISING IN ANY WAY RELATED TO THIS MATERIAL, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE. THE ENTIRE AND AGGREGATE LIABILITY OF ADVANCED MICRO DEVICES, INC. AND\nANY COPYRIGHT HOLDERS AND CONTRIBUTORS SHALL NOT EXCEED TEN DOLLARS (US $10.00).\nANYONE REDISTRIBUTING OR ACCESSING OR USING THIS MATERIAL ACCEPTS THIS ALLOCATION OF\nRISK AND AGREES TO RELEASE ADVANCED MICRO DEVICES, INC. AND ANY COPYRIGHT HOLDERS AND\nCONTRIBUTORS FROM ANY AND ALL LIABILITIES, OBLIGATIONS, CLAIMS, OR DEMANDS IN EXCESS\nOF TEN DOLLARS (US $10.00). THE FOREGOING ARE ESSENTIAL TERMS OF THIS LICENSE AND, IF\nANY OF THESE TERMS ARE CONSTRUED AS UNENFORCEABLE, FAIL IN ESSENTIAL PURPOSE, OR\nBECOME VOID OR DETRIMENTAL TO ADVANCED MICRO DEVICES, INC. OR ANY COPYRIGHT HOLDERS\nOR CONTRIBUTORS FOR ANY REASON, THEN ALL RIGHTS TO REDISTRIBUTE, ACCESS OR USE THIS\nMATERIAL SHALL TERMINATE IMMEDIATELY. MOREOVER, THE FOREGOING SHALL SURVIVE ANY\nEXPIRATION OR TERMINATION OF THIS LICENSE OR ANY AGREEMENT OR ACCESS OR USE RELATED\nTO THIS MATERIAL.\n\nNOTICE IS HEREBY PROVIDED, AND BY REDISTRIBUTING OR ACCESSING OR USING THIS MATERIAL\nSUCH NOTICE IS ACKNOWLEDGED, THAT THIS MATERIAL MAY BE SUBJECT TO RESTRICTIONS UNDER\nTHE LAWS AND REGULATIONS OF THE UNITED STATES OR OTHER COUNTRIES, WHICH INCLUDE BUT\nARE NOT LIMITED TO, U.S. EXPORT CONTROL LAWS SUCH AS THE EXPORT ADMINISTRATION\nREGULATIONS AND NATIONAL SECURITY CONTROLS AS DEFINED THEREUNDER, AS WELL AS STATE\nDEPARTMENT CONTROLS UNDER THE U.S. MUNITIONS LIST. THIS MATERIAL MAY NOT BE USED,\nRELEASED, TRANSFERRED, IMPORTED, EXPORTED AND/OR RE- EXPORTED IN ANY MANNER\nPROHIBITED UNDER ANY APPLICABLE LAWS, INCLUDING U.S. EXPORT CONTROL LAWS REGARDING\nSPECIFICALLY DESIGNATED PERSONS, COUNTRIES AND NATIONALS OF COUNTRIES SUBJECT TO\nNATIONAL SECURITY CONTROLS. MOREOVER, THE FOREGOING SHALL SURVIVE ANY EXPIRATION OR\nTERMINATION OF ANY LICENSE OR AGREEMENT OR ACCESS OR USE RELATED TO THIS MATERIAL.\n\nThis license forms the entire agreement regarding the subject matter hereof and\nsupersedes all proposals and prior discussions and writings between the parties with\nrespect thereto. This license does not affect any ownership, rights, title, or\ninterest in, or relating to, this material. No terms of this license can be modified\nor waived, and no breach of this license can be excused, unless done so in a writing\nsigned by all affected parties. Each term of this license is separately enforceable.\nIf any term of this license is determined to be or becomes unenforceable or illegal,\nsuch term shall be reformed to the minimum extent necessary in order for this license\nto remain in effect in accordance with its terms as modified by such reformation.\nThis license shall be governed by and construed in accordance with the laws of the\nState of Texas without regard to rules on conflicts of law of any state or\njurisdiction or the United Nations Convention on the International Sale of Goods. All\ndisputes arising out of this license shall be subject to the jurisdiction of the\nfederal and state courts in Austin, Texas, and all defenses are hereby waived\nconcerning personal jurisdiction and venue of these courts.", + "json": "amdplpa.json", + "yaml": "amdplpa.yml", + "html": "amdplpa.html", + "license": "amdplpa.LICENSE" + }, + { + "license_key": "aml", + "category": "Permissive", + "spdx_license_key": "AML", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "IMPORTANT: This Apple software is supplied to you by Apple Computer, Inc. (\"Apple\") in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this Apple software constitutes acceptance of these terms. If you do not agree with these terms, please do not use, install, modify or redistribute this Apple software.\n\nIn consideration of your agreement to abide by the following terms, and subject to these terms, Apple grants you a personal, non-exclusive license, under Apple's copyrights in this original Apple software (the \"Apple Software\"), to use, reproduce, modify and redistribute the Apple Software, with or without modifications, in source and/or binary forms; provided that if you redistribute the Apple Software in its entirety and without modifications, you must retain this notice and the following text and disclaimers in all such redistributions of the Apple Software. Neither the name, trademarks, service marks or logos of Apple Computer, Inc. may be used to endorse or promote products derived from the Apple Software without specific prior written permission from Apple. Except as expressly stated in this notice, no other rights or licenses, express or implied, are granted by Apple herein, including but not limited to any patent rights that may be infringed by your derivative works or by other works in which the Apple Software may be incorporated.\n\nThe Apple Software is provided by Apple on an \"AS IS\" basis. APPLE MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.\n\nIN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "aml.json", + "yaml": "aml.yml", + "html": "aml.html", + "license": "aml.LICENSE" + }, + { + "license_key": "amlogic-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-amlogic-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Amlogic Co., Inc. grants permission to use and redistribute\naforementioned firmware files for the use with devices containing\nAmlogic chipsets, but not as part of the Linux kernel or in any other\nform which would require these files themselves to be covered by the\nterms of the GNU General Public License or the GNU Lesser General\nPublic License.\n\nThese firmware files are distributed in the hope that they will be\nuseful, but are provided WITHOUT ANY WARRANTY, INCLUDING BUT NOT\nLIMITED TO IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A\nPARTICULAR PURPOSE.", + "json": "amlogic-linux-firmware.json", + "yaml": "amlogic-linux-firmware.yml", + "html": "amlogic-linux-firmware.html", + "license": "amlogic-linux-firmware.LICENSE" + }, + { + "license_key": "ampas", + "category": "Permissive", + "spdx_license_key": "AMPAS", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "A world-wide, royalty-free, non-exclusive right to distribute, copy, modify, create derivatives, and use, in source and binary forms, is hereby granted, subject to acceptance of this license. Performance of any of the aforementioned acts indicates acceptance to be bound by the following terms and conditions:\n\n * Redistributions of source code must retain the above copyright notice, this list of conditions and the Disclaimer of Warranty.\n\n * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the Disclaimer of Warranty in the documentation and/or other materials provided with the distribution.\n\n * Nothing in this license shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of A.M.P.A.S. or any contributors, except as expressly stated herein, and neither the name of A.M.P.A.S. nor of any other contributors to this software, may be used to endorse or promote products derived from this software without specific prior written permission of A.M.P.A.S. or contributor, as appropriate.\n\nThis license shall be governed by the laws of the State of California, and subject to the jurisdiction of the courts therein.\n\nDisclaimer of Warranty: THIS SOFTWARE IS PROVIDED BY A.M.P.A.S. AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL A.M.P.A.S., ANY CONTRIBUTORS OR DISTRIBUTORS 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.", + "json": "ampas.json", + "yaml": "ampas.yml", + "html": "ampas.html", + "license": "ampas.LICENSE" + }, + { + "license_key": "ams-fonts", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ams-fonts", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The PostScript Type 1 implementation of the Computer Modern and AMSFonts produced by and previously distributed by Blue Sky Research and Y&Y, Inc., are now \nfreely available for general use. This has been accomplished through the cooperation of a consortium of scientific publishers with Blue Sky Research and Y&Y. \nMembers of this consortium include:\n\n * Elsevier Science\n * IBM Corporation\n * Society for Industrial and Applied Mathematics (SIAM)\n * Springer-Verlag\n * American Mathematical Society (AMS)\n\nIn order to assure the authenticity of these fonts, copyright will be held by the American Mathematical Society. This is not meant to restrict in any way \nthe legitimate use of the fonts, such as (but not limited to) electronic distribution of documents containing these fonts, inclusion of these fonts into \nother public domain or commercial font collections or computer applications, use of the outline data to create derivative fonts or faces, etc. However, \nthe AMS does require that the AMS copyright notice be removed from any derivative versions of the fonts which have been altered in any way. In addition, \nto ensure the fidelity of TeX documents using Computer Modern fonts, Professor Donald Knuth, creator of the Computer Modern faces, has requested that any \nalterations which yield different font metrics be given a different name.", + "json": "ams-fonts.json", + "yaml": "ams-fonts.yml", + "html": "ams-fonts.html", + "license": "ams-fonts.LICENSE" + }, + { + "license_key": "android-sdk-2009", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-android-sdk-2009", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ANDROID SOFTWARE DEVELOPMENT KIT\n\nTerms and Conditions\n\nThis is the Android Software Development Kit License Agreement.\n\n1. Introduction\n\n1.1 The Android Software Development Kit (referred to in this License Agreement as the \"SDK\" and\nspecifically including the Android system files, packaged APIs, and Google APIs add-ons) is\nlicensed to you subject to the terms of this License Agreement. This License Agreement forms a\nlegally binding contract between you and Google in relation to your use of the SDK.\n\n1.2 \"Google\" means Google Inc., a Delaware corporation with principal place of business at 1600\nAmphitheatre Parkway, Mountain View, CA 94043, United States.\n\n2. Accepting this License Agreement\n\n2.1 In order to use the SDK, you must first agree to this License Agreement. You may not use the\nSDK if you do not accept this License Agreement.\n\n2.2 You can accept this License Agreement by:\n(A) clicking to accept or agree to this License Agreement, where this option is made available to\nyou; or\n(B) by actually using the SDK. In this case, you agree that use of the SDK constitutes acceptance of\nthe Licensing Agreement from that point onwards.\n\n2.3 You may not use the SDK and may not accept the Licensing Agreement if you are a person barred\nfrom receiving the SDK under the laws of the United States or other countries including the country\nin which you are resident or from which you use the SDK.\n\n2.4 If you are agreeing to be bound by this License Agreement on behalf of your employer or other\nentity, you represent and warrant that you have full legal authority to bind your employer or such\nentity to this License Agreement. If you do not have the requisite authority, you may not accept\nthe Licensing Agreement or use the SDK on behalf of your employer or other entity.\n\n3. SDK License from Google\n\n3.1 Subject to the terms of this License Agreement, Google grants you a limited, worldwide,\nroyalty-free, non- assignable and non-exclusive license to use the SDK solely to develop\napplications to run on the Android platform.\n\n3.2 You agree that Google or third parties own all legal right, title and interest in and to the\nSDK, including any Intellectual Property Rights that subsist in the SDK. \"Intellectual Property\nRights\" means any and all rights under patent law, copyright law, trade secret law, trademark law,\nand any and all other proprietary rights. Google reserves all rights not expressly granted to you.\n\n3.3 Except to the extent required by applicable third party licenses, you may not copy (except for\nbackup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create\nderivative works of the SDK or any part of the SDK. Except to the extent required by applicable\nthird party licenses, you may not load any part of the SDK onto a mobile handset or any other\nhardware device except a personal computer, combine any part of the SDK with other software, or\ndistribute any software or device incorporating a part of the SDK.\n\n3.4 Use, reproduction and distribution of components of the SDK licensed under an open source\nsoftware license are governed solely by the terms of that open source software license and not\nthis License Agreement.\n\n3.5 You agree that the form and nature of the SDK that Google provides may change without prior\nnotice to you and that future versions of the SDK may be incompatible with applications developed\non previous versions of the SDK. You agree that Google may stop (permanently or temporarily)\nproviding the SDK (or any features within the SDK) to you or to users generally at Google's sole\ndiscretion, without prior notice to you.\n\n3.6 Nothing in this License Agreement gives you a right to use any of Google's trade names,\ntrademarks, service marks, logos, domain names, or other distinctive brand features.\n\n3.7 You agree that you will not remove, obscure, or alter any proprietary rights notices (including\ncopyright and trademark notices) that may be affixed to or contained within the SDK.\n\n4. Use of the SDK by You\n\n4.1 Google agrees that it obtains no right, title or interest from you (or your licensors) under\nthis License Agreement in or to any software applications that you develop using the SDK, including\nany intellectual property rights that subsist in those applications.\n\n4.2 You agree to use the SDK and write applications only for purposes that are permitted by (a) this\nLicense Agreement and (b) any applicable law, regulation or generally accepted practices or\nguidelines in the relevant jurisdictions (including any laws regarding the export of data or\nsoftware to and from the United States or other relevant countries).\n\n4.3 You agree that if you use the SDK to develop applications for general public users, you will\nprotect the privacy and legal rights of those users. If the users provide you with user names,\npasswords, or other login information or personal information, your must make the users aware that\nthe information will be available to your application, and you must provide legally adequate privacy\nnotice and protection for those users. If your application stores personal or sensitive information\nprovided by users, it must do so securely. If the user provides your application with Google Account\ninformation, your application may only use that information to access the user's Google Account\nwhen, and for the limited purposes for which, the user has given you permission to do so.\n\n4.4 You agree that you will not engage in any activity with the SDK, including the development or\ndistribution of an application, that interferes with, disrupts, damages, or accesses in an\nunauthorized manner the servers, networks, or other properties or services of any third party\nincluding, but not limited to, Google or any mobile communications carrier.\n\n4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or\nto any third party for) any data, content, or resources that you create, transmit or display through\nthe Android platform and/or applications for the Android platform, and for the consequences of your\nactions (including any loss or damage which Google may suffer) by doing so.\n\n4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or\nto any third party for) any breach of your obligations under this License Agreement, any applicable\nthird party contract or Terms of Service, or any applicable law or regulation, and for the\nconsequences (including any loss or damage which Google or any third party may suffer) of any such\nbreach.\n\n5. Your Developer Credentials\n\n5.1 You agree that you are responsible for maintaining the confidentiality of any developer\ncredentials that may be issued to you by Google or which you may choose yourself and that you will\nbe solely responsible for all applications that are developed under your developer credentials.\n\n6. Privacy and Information\n\n6.1 In order to continually innovate and improve the SDK, Google may collect certain usage\nstatistics from the software including but not limited to a unique identifier, associated IP\naddress, version number of the software, and information on which tools and/or services in the SDK\nare being used and how they are being used. Before any of this information is collected, the SDK\nwill notify you and seek your consent. If you withhold consent, the information will not be\ncollected.\n\n6.2 The data collected is examined in the aggregate to improve the SDK and is maintained in\naccordance with Google's Privacy Policy.\n\n7. Third Party Applications for the Android Platform\n\n7.1 If you use the SDK to run applications developed by a third party or that access data, content\nor resources provided by a third party, you agree that Google is not responsible for those\napplications, data, content, or resources. You understand that all data, content or resources which\nyou may access through such third party applications are the sole responsibility of the person from\nwhich they originated and that Google is not liable for any loss or damage that you may experience\nas a result of the use or access of any of those third party applications, data, content, or\nresources.\n\n7.2 You should be aware the data, content, and resources presented to you through such a third party\napplication may be protected by intellectual property rights which are owned by the providers (or by\nother persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute\nor create derivative works based on these data, content, or resources (either in whole or in part)\nunless you have been specifically given permission to do so by the relevant owners.\n\n7.3 You acknowledge that your use of such third party applications, data, content, or resources may\nbe subject to separate terms between you and the relevant third party. In that case, this License\nAgreement does not affect your legal relationship with these third parties.\n\n8. Using Android APIs\n\n8.1 Google Data APIs\n\n8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be\nprotected by intellectual property rights which are owned by Google or those parties that provide\nthe data (or by other persons or companies on their behalf). Your use of any such API may be subject\nto additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create\nderivative works based on this data (either in whole or in part) unless allowed by the relevant\nTerms of Service.\n\n8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you\nshall retrieve data only with the user's explicit consent and only when, and for the limited\npurposes for which, the user has given you permission to do so.\n\n9. Terminating this License Agreement\n\n9.1 This License Agreement will continue to apply until terminated by either you or Google as set\nout below.\n\n9.2 If you want to terminate this License Agreement, you may do so by ceasing your use of the SDK\nand any relevant developer credentials.\n\n9.3 Google may at any time, terminate this License Agreement with you if:\n(A) you have breached any provision of this License Agreement; or\n(B) Google is required to do so by law; or\n(C) the partner with whom Google offered certain parts of SDK (such as APIs) to you has terminated\nits relationship with Google or ceased to offer certain parts of the SDK to you; or\n(D) Google decides to no longer providing the SDK or certain parts of the SDK to users in the\ncountry in which you are resident or from which you use the service, or the provision of the SDK or\ncertain SDK services to you by Google is, in Google's sole discretion, no longer commercially\nviable.\n\n9.4 When this License Agreement comes to an end, all of the legal rights, obligations and\nliabilities that you and Google have benefited from, been subject to (or which have accrued over\ntime whilst this License Agreement has been in force) or which are expressed to continue\nindefinitely, shall be unaffected by this cessation, and the provisions of paragraph 14.7 shall\ncontinue to apply to such rights, obligations and liabilities indefinitely.\n\n10. DISCLAIMER OF WARRANTIES\n\n10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE RISK AND THAT THE\nSDK IS PROVIDED \"AS IS\" AND \"AS AVAILABLE\" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.\n\n10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE\nSDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR\nCOMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE.\n\n10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n11. LIMITATION OF LIABILITY\n\n11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS\nLICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY\nLOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN\nAWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.\n\n12. Indemnification\n\n12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless\nGoogle, its affiliates and their respective directors, officers, employees and agents from and\nagainst any and all claims, actions, suits or proceedings, as well as any and all losses,\nliabilities, damages, costs and expenses (including reasonable attorneys fees) arising out of or\naccruing from (a) your use of the SDK, (b) any application you develop on the SDK that infringes any\ncopyright, trademark, trade secret, trade dress, patent or other intellectual property right of any\nperson or defames any person or violates their rights of publicity or privacy, and (c) any\nnon-compliance by you with this License Agreement.\n\n13. Changes to the License Agreement\n\n13.1 Google may make changes to the License Agreement as it distributes new versions of the SDK.\nWhen these changes are made, Google will make a new version of the License Agreement available on\nthe website where the SDK is made available.\n\n14. General Legal Terms\n\n14.1 This License Agreement constitute the whole legal agreement between you and Google and govern\nyour use of the SDK (excluding any services which Google may provide to you under a separate written\nagreement), and completely replace any prior agreements between you and Google in relation to the\nSDK.\n\n14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is\ncontained in this License Agreement (or which Google has the benefit of under any applicable law),\nthis will not be taken to be a formal waiver of Google's rights and that those rights or remedies\nwill still be available to Google.\n\n14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision\nof this License Agreement is invalid, then that provision will be removed from this License\nAgreement without affecting the rest of this License Agreement. The remaining provisions of this\nLicense Agreement will continue to be valid and enforceable.\n\n14.4 You acknowledge and agree that each member of the group of companies of which Google is the\nparent shall be third party beneficiaries to this License Agreement and that such other companies\nshall be entitled to directly enforce, and rely upon, any provision of this License Agreement that\nconfers a benefit on (or rights in favor of) them. Other than this, no other person or company shall\nbe third party beneficiaries to this License Agreement.\n\n14.5 EXPORT RESTRICTIONS. THE SDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST\nCOMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE SDK. THESE\nLAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.\n\n14.6 The rights granted in this License Agreement may not be assigned or transferred by either you\nor Google without the prior written approval of the other party. Neither you nor Google shall be\npermitted to delegate their responsibilities or obligations under this License Agreement without the\nprior written approval of the other party.\n\n14.7 This License Agreement, and your relationship with Google under this License Agreement, shall\nbe governed by the laws of the State of California without regard to its conflict of laws\nprovisions. You and Google agree to submit to the exclusive jurisdiction of the courts located\nwithin the county of Santa Clara, California to resolve any legal matter arising from this License\nAgreement. Notwithstanding this, you agree that Google shall still be allowed to apply for\ninjunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.\n\nApril 10, 2009", + "json": "android-sdk-2009.json", + "yaml": "android-sdk-2009.yml", + "html": "android-sdk-2009.html", + "license": "android-sdk-2009.LICENSE" + }, + { + "license_key": "android-sdk-2012", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-android-sdk-2012", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is the Android Software Development Kit License Agreement\n\n\n 1. Introduction\n\n\n1.1 The Android Software Development Kit (referred to in this License Agreement\nas the \"SDK\" and specifically including the Android system files, packaged APIs,\nand Google APIs add-ons) is licensed to you subject to the terms of this License\nAgreement. This License Agreement forms a legally binding contract between you\nand Google in relation to your use of the SDK.\n\n1.2 \"Android\" means the Android software stack for devices, as made available\nunder the Android Open Source Project, which is located at the following URL:\nhttp://source.android.com/, as updated from time to time.\n\n1.3 \"Google\" means Google Inc., a Delaware corporation with principal place of\nbusiness at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.\n\n\n 2. Accepting this License Agreement\n\n\n2.1 In order to use the SDK, you must first agree to this License Agreement. You\nmay not use the SDK if you do not accept this License Agreement.\n\n2.2 By clicking to accept, you hereby agree to the terms of this License\nAgreement.\n\n2.3 You may not use the SDK and may not accept the License Agreement if you are\na person barred from receiving the SDK under the laws of the United States or\nother countries including the country in which you are resident or from which\nyou use the SDK.\n\n2.4 If you are agreeing to be bound by this License Agreement on behalf of your\nemployer or other entity, you represent and warrant that you have full legal\nauthority to bind your employer or such entity to this License Agreement. If you\ndo not have the requisite authority, you may not accept the License Agreement or\nuse the SDK on behalf of your employer or other entity.\n\n\n 3. SDK License from Google\n\n\n3.1 Subject to the terms of this License Agreement, Google grants you a limited,\nworldwide, royalty-free, non-assignable and non-exclusive license to use the SDK\nsolely to develop applications to run on the Android platform.\n\n3.2 You agree that Google or third parties own all legal right, title and\ninterest in and to the SDK, including any Intellectual Property Rights that\nsubsist in the SDK. \"Intellectual Property Rights\" means any and all rights\nunder patent law, copyright law, trade secret law, trademark law, and any and\nall other proprietary rights. Google reserves all rights not expressly granted\nto you.\n\n3.3 You may not use the SDK for any purpose not expressly permitted by this\nLicense Agreement. Except to the extent required by applicable third party\nlicenses, you may not: (a) copy (except for backup purposes), modify, adapt,\nredistribute, decompile, reverse engineer, disassemble, or create derivative\nworks of the SDK or any part of the SDK; or (b) load any part of the SDK onto a\nmobile handset or any other hardware device except a personal computer, combine\nany part of the SDK with other software, or distribute any software or device\nincorporating a part of the SDK.\n\n3.4 You agree that you will not take any actions that may cause or result in the\nfragmentation of Android, including but not limited to distributing,\nparticipating in the creation of, or promoting in any way a software development\nkit derived from the SDK.\n\n3.5 Use, reproduction and distribution of components of the SDK licensed under\nan open source software license are governed solely by the terms of that open\nsource software license and not this License Agreement.\n\n3.6 You agree that the form and nature of the SDK that Google provides may\nchange without prior notice to you and that future versions of the SDK may be\nincompatible with applications developed on previous versions of the SDK. You\nagree that Google may stop (permanently or temporarily) providing the SDK (or\nany features within the SDK) to you or to users generally at Google's sole\ndiscretion, without prior notice to you.\n\n3.7 Nothing in this License Agreement gives you a right to use any of Google's\ntrade names, trademarks, service marks, logos, domain names, or other\ndistinctive brand features.\n\n3.8 You agree that you will not remove, obscure, or alter any proprietary rights\nnotices (including copyright and trademark notices) that may be affixed to or\ncontained within the SDK.\n\n\n 4. Use of the SDK by You\n\n\n4.1 Google agrees that it obtains no right, title or interest from you (or your\nlicensors) under this License Agreement in or to any software applications that\nyou develop using the SDK, including any intellectual property rights that\nsubsist in those applications.\n\n4.2 You agree to use the SDK and write applications only for purposes that are\npermitted by (a) this License Agreement and (b) any applicable law, regulation\nor generally accepted practices or guidelines in the relevant jurisdictions\n(including any laws regarding the export of data or software to and from the\nUnited States or other relevant countries).\n\n4.3 You agree that if you use the SDK to develop applications for general public\nusers, you will protect the privacy and legal rights of those users. If the\nusers provide you with user names, passwords, or other login information or\npersonal information, you must make the users aware that the information will be\navailable to your application, and you must provide legally adequate privacy\nnotice and protection for those users. If your application stores personal or\nsensitive information provided by users, it must do so securely. If the user\nprovides your application with Google Account information, your application may\nonly use that information to access the user's Google Account when, and for the\nlimited purposes for which, the user has given you permission to do so.\n\n4.4 You agree that you will not engage in any activity with the SDK, including\nthe development or distribution of an application, that interferes with,\ndisrupts, damages, or accesses in an unauthorized manner the servers, networks,\nor other properties or services of any third party including, but not limited\nto, Google or any mobile communications carrier.\n\n4.5 You agree that you are solely responsible for (and that Google has no\nresponsibility to you or to any third party for) any data, content, or resources\nthat you create, transmit or display through Android and/or applications for\nAndroid, and for the consequences of your actions (including any loss or damage\nwhich Google may suffer) by doing so.\n\n4.6 You agree that you are solely responsible for (and that Google has no\nresponsibility to you or to any third party for) any breach of your obligations\nunder this License Agreement, any applicable third party contract or Terms of\nService, or any applicable law or regulation, and for the consequences\n(including any loss or damage which Google or any third party may suffer) of any\nsuch breach.\n\n\n 5. Your Developer Credentials\n\n\n5.1 You agree that you are responsible for maintaining the confidentiality of\nany developer credentials that may be issued to you by Google or which you may\nchoose yourself and that you will be solely responsible for all applications\nthat are developed under your developer credentials.\n\n\n 6. Privacy and Information\n\n\n6.1 In order to continually innovate and improve the SDK, Google may collect\ncertain usage statistics from the software including but not limited to a unique\nidentifier, associated IP address, version number of the software, and\ninformation on which tools and/or services in the SDK are being used and how\nthey are being used. Before any of this information is collected, the SDK will\nnotify you and seek your consent. If you withhold consent, the information will\nnot be collected.\n\n6.2 The data collected is examined in the aggregate to improve the SDK and is\nmaintained in accordance with Google's Privacy Policy.\n\n\n 7. Third Party Applications\n\n\n7.1 If you use the SDK to run applications developed by a third party or that\naccess data, content or resources provided by a third party, you agree that\nGoogle is not responsible for those applications, data, content, or resources.\nYou understand that all data, content or resources which you may access through\nsuch third party applications are the sole responsibility of the person from\nwhich they originated and that Google is not liable for any loss or damage that\nyou may experience as a result of the use or access of any of those third party\napplications, data, content, or resources.\n\n7.2 You should be aware the data, content, and resources presented to you\nthrough such a third party application may be protected by intellectual property\nrights which are owned by the providers (or by other persons or companies on\ntheir behalf). You may not modify, rent, lease, loan, sell, distribute or create\nderivative works based on these data, content, or resources (either in whole or\nin part) unless you have been specifically given permission to do so by the\nrelevant owners.\n\n7.3 You acknowledge that your use of such third party applications, data,\ncontent, or resources may be subject to separate terms between you and the\nrelevant third party. In that case, this License Agreement does not affect your\nlegal relationship with these third parties.\n\n\n 8. Using Android APIs\n\n\n8.1 Google Data APIs\n\n8.1.1 If you use any API to retrieve data from Google, you acknowledge that the\ndata may be protected by intellectual property rights which are owned by Google\nor those parties that provide the data (or by other persons or companies on\ntheir behalf). Your use of any such API may be subject to additional Terms of\nService. You may not modify, rent, lease, loan, sell, distribute or create\nderivative works based on this data (either in whole or in part) unless allowed\nby the relevant Terms of Service.\n\n8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge\nand agree that you shall retrieve data only with the user's explicit consent and\nonly when, and for the limited purposes for which, the user has given you\npermission to do so.\n\n\n 9. Terminating this License Agreement\n\n\n9.1 This License Agreement will continue to apply until terminated by either you\nor Google as set out below.\n\n9.2 If you want to terminate this License Agreement, you may do so by ceasing\nyour use of the SDK and any relevant developer credentials.\n\n9.3 Google may at any time, terminate this License Agreement with you if:\n(A) you have breached any provision of this License Agreement; or\n(B) Google is required to do so by law; or\n(C) the partner with whom Google offered certain parts of SDK (such as APIs) to\nyou has terminated its relationship with Google or ceased to offer certain parts\nof the SDK to you; or\n(D) Google decides to no longer provide the SDK or certain parts of the SDK to\nusers in the country in which you are resident or from which you use the\nservice, or the provision of the SDK or certain SDK services to you by Google\nis, in Google's sole discretion, no longer commercially viable.\n\n9.4 When this License Agreement comes to an end, all of the legal rights,\nobligations and liabilities that you and Google have benefited from, been\nsubject to (or which have accrued over time whilst this License Agreement has\nbeen in force) or which are expressed to continue indefinitely, shall be\nunaffected by this cessation, and the provisions of paragraph 14.7 shall\ncontinue to apply to such rights, obligations and liabilities indefinitely.\n\n\n 10. DISCLAIMER OF WARRANTIES\n\n\n10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE\nRISK AND THAT THE SDK IS PROVIDED \"AS IS\" AND \"AS AVAILABLE\" WITHOUT WARRANTY OF\nANY KIND FROM GOOGLE.\n\n10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED\nTHROUGH THE USE OF THE SDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY\nRESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF\nDATA THAT RESULTS FROM SUCH USE.\n\n10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY\nKIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED\nWARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\nAND NON-INFRINGEMENT.\n\n\n 11. LIMITATION OF LIABILITY\n\n\n11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND\nAFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF\nLIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR\nEXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA,\nWHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE\nBEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.\n\n\n 12. Indemnification\n\n\n12.1 To the maximum extent permitted by law, you agree to defend, indemnify and\nhold harmless Google, its affiliates and their respective directors, officers,\nemployees and agents from and against any and all claims, actions, suits or\nproceedings, as well as any and all losses, liabilities, damages, costs and\nexpenses (including reasonable attorneys fees) arising out of or accruing from\n(a) your use of the SDK, (b) any application you develop on the SDK that\ninfringes any copyright, trademark, trade secret, trade dress, patent or other\nintellectual property right of any person or defames any person or violates\ntheir rights of publicity or privacy, and (c) any non-compliance by you with\nthis License Agreement.\n\n\n 13. Changes to the License Agreement\n\n\n13.1 Google may make changes to the License Agreement as it distributes new\nversions of the SDK. When these changes are made, Google will make a new version\nof the License Agreement available on the website where the SDK is made\navailable.\n\n\n 14. General Legal Terms\n\n\n14.1 This License Agreement constitutes the whole legal agreement between you\nand Google and governs your use of the SDK (excluding any services which Google\nmay provide to you under a separate written agreement), and completely replaces\nany prior agreements between you and Google in relation to the SDK.\n\n14.2 You agree that if Google does not exercise or enforce any legal right or\nremedy which is contained in this License Agreement (or which Google has the\nbenefit of under any applicable law), this will not be taken to be a formal\nwaiver of Google's rights and that those rights or remedies will still be\navailable to Google.\n\n14.3 If any court of law, having the jurisdiction to decide on this matter,\nrules that any provision of this License Agreement is invalid, then that\nprovision will be removed from this License Agreement without affecting the rest\nof this License Agreement. The remaining provisions of this License Agreement\nwill continue to be valid and enforceable.\n\n14.4 You acknowledge and agree that each member of the group of companies of\nwhich Google is the parent shall be third party beneficiaries to this License\nAgreement and that such other companies shall be entitled to directly enforce,\nand rely upon, any provision of this License Agreement that confers a benefit on\n(or rights in favor of) them. Other than this, no other person or company shall\nbe third party beneficiaries to this License Agreement.\n\n14.5 EXPORT RESTRICTIONS. THE SDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND\nREGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND\nREGULATIONS THAT APPLY TO THE SDK. THESE LAWS INCLUDE RESTRICTIONS ON\nDESTINATIONS, END USERS AND END USE.\n\n14.6 The rights granted in this License Agreement may not be assigned or\ntransferred by either you or Google without the prior written approval of the\nother party. Neither you nor Google shall be permitted to delegate their\nresponsibilities or obligations under this License Agreement without the prior\nwritten approval of the other party.\n\n14.7 This License Agreement, and your relationship with Google under this\nLicense Agreement, shall be governed by the laws of the State of California\nwithout regard to its conflict of laws provisions. You and Google agree to\nsubmit to the exclusive jurisdiction of the courts located within the county of\nSanta Clara, California to resolve any legal matter arising from this License\nAgreement. Notwithstanding this, you agree that Google shall still be allowed to\napply for injunctive remedies (or an equivalent type of urgent legal relief) in\nany jurisdiction.\n\n\n/November 13, 2012/", + "json": "android-sdk-2012.json", + "yaml": "android-sdk-2012.yml", + "html": "android-sdk-2012.html", + "license": "android-sdk-2012.LICENSE" + }, + { + "license_key": "android-sdk-2021", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-android-sdk-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Terms and Conditions\nThis is the Android Software Development Kit License Agreement\n\n1. Introduction\n1.1 The Android Software Development Kit (referred to in the License Agreement as the \"SDK\" and specifically including the Android system files, packaged APIs, and Google APIs add-ons) is licensed to you subject to the terms of the License Agreement. The License Agreement forms a legally binding contract between you and Google in relation to your use of the SDK.\n\n1.2 \"Android\" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: https://source.android.com/, as updated from time to time.\n\n1.3 A \"compatible implementation\" means any Android device that (i) complies with the Android Compatibility Definition document, which can be found at the Android compatibility website (https://source.android.com/compatibility) and which may be updated from time to time; and (ii) successfully passes the Android Compatibility Test Suite (CTS).\n\n1.4 \"Google\" means Google LLC, organized under the laws of the State of Delaware, USA, and operating under the laws of the USA with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA.\n\n\n2. Accepting this License Agreement\n2.1 In order to use the SDK, you must first agree to the License Agreement. You may not use the SDK if you do not accept the License Agreement.\n\n2.2 By clicking to accept and/or using this SDK, you hereby agree to the terms of the License Agreement.\n\n2.3 You may not use the SDK and may not accept the License Agreement if you are a person barred from receiving the SDK under the laws of the United States or other countries, including the country in which you are resident or from which you use the SDK.\n\n2.4 If you are agreeing to be bound by the License Agreement on behalf of your employer or other entity, you represent and warrant that you have full legal authority to bind your employer or such entity to the License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the SDK on behalf of your employer or other entity.\n\n\n3. SDK License from Google\n3.1 Subject to the terms of the License Agreement, Google grants you a limited, worldwide, royalty-free, non-assignable, non-exclusive, and non-sublicensable license to use the SDK solely to develop applications for compatible implementations of Android.\n\n3.2 You may not use this SDK to develop applications for other platforms (including non-compatible implementations of Android) or to develop another SDK. You are of course free to develop applications for other platforms, including non-compatible implementations of Android, provided that this SDK is not used for that purpose.\n\n3.3 You agree that Google or third parties own all legal right, title and interest in and to the SDK, including any Intellectual Property Rights that subsist in the SDK. \"Intellectual Property Rights\" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.\n\n3.4 You may not use the SDK for any purpose not expressly permitted by the License Agreement. Except to the extent required by applicable third party licenses, you may not copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the SDK or any part of the SDK.\n\n3.5 Use, reproduction and distribution of components of the SDK licensed under an open source software license are governed solely by the terms of that open source software license and not the License Agreement.\n\n3.6 You agree that the form and nature of the SDK that Google provides may change without prior notice to you and that future versions of the SDK may be incompatible with applications developed on previous versions of the SDK. You agree that Google may stop (permanently or temporarily) providing the SDK (or any features within the SDK) to you or to users generally at Google's sole discretion, without prior notice to you.\n\n3.7 Nothing in the License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.\n\n3.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the SDK.\n\n\n4. Use of the SDK by You\n4.1 Google agrees that it obtains no right, title or interest from you (or your licensors) under the License Agreement in or to any software applications that you develop using the SDK, including any intellectual property rights that subsist in those applications.\n\n4.2 You agree to use the SDK and write applications only for purposes that are permitted by (a) the License Agreement and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).\n\n4.3 You agree that if you use the SDK to develop applications for general public users, you will protect the privacy and legal rights of those users. If the users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If the user provides your application with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, the user has given you permission to do so.\n\n4.4 You agree that you will not engage in any activity with the SDK, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of any third party including, but not limited to, Google or any mobile communications carrier.\n\n4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through Android and/or applications for Android, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.\n\n4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under the License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.\n\n\n5. Your Developer Credentials\n5.1 You agree that you are responsible for maintaining the confidentiality of any developer credentials that may be issued to you by Google or which you may choose yourself and that you will be solely responsible for all applications that are developed under your developer credentials.\n\n\n6. Privacy and Information\n6.1 In order to continually innovate and improve the SDK, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the SDK are being used and how they are being used. Before any of this information is collected, the SDK will notify you and seek your consent. If you withhold consent, the information will not be collected.\n\n6.2 The data collected is examined in the aggregate to improve the SDK and is maintained in accordance with Google's Privacy Policy, which is located at the following URL: https://policies.google.com/privacy\n\n6.3 Anonymized and aggregated sets of the data may be shared with Google partners to improve the SDK.\n\n7. Third Party Applications\n7.1 If you use the SDK to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.\n\n7.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners.\n\n7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party. In that case, the License Agreement does not affect your legal relationship with these third parties.\n\n\n8. Using Android APIs\n8.1 Google Data APIs\n\n8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service.\n\n8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so. If you use the Android Recognition Service API, documented at the following URL: https://developer.android.com/reference/android/speech/RecognitionService, as updated from time to time, you acknowledge that the use of the API is subject to the Data Processing Addendum for Products where Google is a Data Processor, which is located at the following URL: https://privacy.google.com/businesses/gdprprocessorterms/, as updated from time to time. By clicking to accept, you hereby agree to the terms of the Data Processing Addendum for Products where Google is a Data Processor.\n\n\n\n9. Terminating this License Agreement\n9.1 The License Agreement will continue to apply until terminated by either you or Google as set out below.\n\n9.2 If you want to terminate the License Agreement, you may do so by ceasing your use of the SDK and any relevant developer credentials.\n\n9.3 Google may at any time, terminate the License Agreement with you if:\n(A) you have breached any provision of the License Agreement; or\n(B) Google is required to do so by law; or\n(C) the partner with whom Google offered certain parts of SDK (such as APIs) to you has terminated its relationship with Google or ceased to offer certain parts of the SDK to you; or\n(D) Google decides to no longer provide the SDK or certain parts of the SDK to users in the country in which you are resident or from which you use the service, or the provision of the SDK or certain SDK services to you by Google is, in Google's sole discretion, no longer commercially viable.\n\n9.4 When the License Agreement comes to an end, all of the legal rights, obligations and liabilities that you and Google have benefited from, been subject to (or which have accrued over time whilst the License Agreement has been in force) or which are expressed to continue indefinitely, shall be unaffected by this cessation, and the provisions of paragraph 14.7 shall continue to apply to such rights, obligations and liabilities indefinitely.\n\n\n10. DISCLAIMER OF WARRANTIES\n10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE RISK AND THAT THE SDK IS PROVIDED \"AS IS\" AND \"AS AVAILABLE\" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.\n\n10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE SDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE.\n\n10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n\n11. LIMITATION OF LIABILITY\n11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.\n\n\n12. Indemnification\n12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys fees) arising out of or accruing from (a) your use of the SDK, (b) any application you develop on the SDK that infringes any copyright, trademark, trade secret, trade dress, patent or other intellectual property right of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you with the License Agreement.\n\n\n13. Changes to the License Agreement\n13.1 Google may make changes to the License Agreement as it distributes new versions of the SDK. When these changes are made, Google will make a new version of the License Agreement available on the website where the SDK is made available.\n\n\n14. General Legal Terms\n14.1 The License Agreement constitutes the whole legal agreement between you and Google and governs your use of the SDK (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the SDK.\n\n14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in the License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.\n\n14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of the License Agreement is invalid, then that provision will be removed from the License Agreement without affecting the rest of the License Agreement. The remaining provisions of the License Agreement will continue to be valid and enforceable.\n\n14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to the License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of the License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to the License Agreement.\n\n14.5 EXPORT RESTRICTIONS. THE SDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE SDK. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.\n\n14.6 The rights granted in the License Agreement may not be assigned or transferred by either you or Google without the prior written approval of the other party. Neither you nor Google shall be permitted to delegate their responsibilities or obligations under the License Agreement without the prior written approval of the other party.\n\n14.7 The License Agreement, and your relationship with Google under the License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.\n\nJuly 27, 2021", + "json": "android-sdk-2021.json", + "yaml": "android-sdk-2021.yml", + "html": "android-sdk-2021.html", + "license": "android-sdk-2021.LICENSE" + }, + { + "license_key": "android-sdk-license", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-android-sdk-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is the Android Software Development Kit License Agreement\n\n1. Introduction\n\n1.1 The Android Software Development Kit (referred to in the License Agreement\nas the \"SDK\" and specifically including the Android system files, packaged APIs,\nand Google APIs add-ons) is licensed to you subject to the terms of the License\nAgreement. The License Agreement forms a legally binding contract between you\nand Google in relation to your use of the SDK.\n\n1.2 \"Android\" means the Android software stack for devices, as made available\nunder the Android Open Source Project, which is located at the following URL:\nhttp://source.android.com/, as updated from time to time.\n\n1.3 A \"compatible implementation\" means any Android device that (i) complies\nwith the Android Compatibility Definition document, which can be found at the\nAndroid compatibility website (http://source.android.com/compatibility) and\nwhich may be updated from time to time; and (ii) successfully passes the Android\nCompatibility Test Suite (CTS).\n\n1.4 \"Google\" means Google Inc., a Delaware corporation with principal place of\nbusiness at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.\n\n\n2. Accepting this License Agreement\n\n2.1 In order to use the SDK, you must first agree to the License Agreement. You\nmay not use the SDK if you do not accept the License Agreement.\n\n2.2 By clicking to accept, you hereby agree to the terms of the License\nAgreement.\n\n2.3 You may not use the SDK and may not accept the License Agreement if you are\na person barred from receiving the SDK under the laws of the United States or\nother countries, including the country in which you are resident or from which\nyou use the SDK.\n\n2.4 If you are agreeing to be bound by the License Agreement on behalf of your\nemployer or other entity, you represent and warrant that you have full legal\nauthority to bind your employer or such entity to the License Agreement. If you\ndo not have the requisite authority, you may not accept the License Agreement or\nuse the SDK on behalf of your employer or other entity.\n\n\n3. SDK License from Google\n\n3.1 Subject to the terms of the License Agreement, Google grants you a limited,\nworldwide, royalty-free, non-assignable, non-exclusive, and non-sublicensable\nlicense to use the SDK solely to develop applications for compatible\nimplementations of Android.\n\n3.2 You may not use this SDK to develop applications for other platforms\n(including non-compatible implementations of Android) or to develop another SDK.\nYou are of course free to develop applications for other platforms, including\nnon-compatible implementations of Android, provided that this SDK is not used\nfor that purpose.\n\n3.3 You agree that Google or third parties own all legal right, title and\ninterest in and to the SDK, including any Intellectual Property Rights that\nsubsist in the SDK. \"Intellectual Property Rights\" means any and all rights\nunder patent law, copyright law, trade secret law, trademark law, and any and\nall other proprietary rights. Google reserves all rights not expressly granted\nto you.\n\n3.4 You may not use the SDK for any purpose not expressly permitted by the\nLicense Agreement. Except to the extent required by applicable third party\nlicenses, you may not: (a) copy (except for backup purposes), modify, adapt,\nredistribute, decompile, reverse engineer, disassemble, or create derivative\nworks of the SDK or any part of the SDK; or (b) load any part of the SDK onto a\nmobile handset or any other hardware device except a personal computer, combine\nany part of the SDK with other software, or distribute any software or device\nincorporating a part of the SDK.\n\n3.5 Use, reproduction and distribution of components of the SDK licensed under\nan open source software license are governed solely by the terms of that open\nsource software license and not the License Agreement.\n\n3.6 You agree that the form and nature of the SDK that Google provides may\nchange without prior notice to you and that future versions of the SDK may be\nincompatible with applications developed on previous versions of the SDK. You\nagree that Google may stop (permanently or temporarily) providing the SDK (or\nany features within the SDK) to you or to users generally at Google's sole\ndiscretion, without prior notice to you.\n\n3.7 Nothing in the License Agreement gives you a right to use any of Google's\ntrade names, trademarks, service marks, logos, domain names, or other\ndistinctive brand features.\n\n3.8 You agree that you will not remove, obscure, or alter any proprietary rights\nnotices (including copyright and trademark notices) that may be affixed to or\ncontained within the SDK.\n\n\n4. Use of the SDK by You\n\n4.1 Google agrees that it obtains no right, title or interest from you (or your\nlicensors) under the License Agreement in or to any software applications that\nyou develop using the SDK, including any intellectual property rights that\nsubsist in those applications.\n\n4.2 You agree to use the SDK and write applications only for purposes that are\npermitted by (a) the License Agreement and (b) any applicable law, regulation or\ngenerally accepted practices or guidelines in the relevant jurisdictions\n(including any laws regarding the export of data or software to and from the\nUnited States or other relevant countries).\n\n4.3 You agree that if you use the SDK to develop applications for general public\nusers, you will protect the privacy and legal rights of those users. If the\nusers provide you with user names, passwords, or other login information or\npersonal information, you must make the users aware that the information will be\navailable to your application, and you must provide legally adequate privacy\nnotice and protection for those users. If your application stores personal or\nsensitive information provided by users, it must do so securely. If the user\nprovides your application with Google Account information, your application may\nonly use that information to access the user's Google Account when, and for the\nlimited purposes for which, the user has given you permission to do so.\n\n4.4 You agree that you will not engage in any activity with the SDK, including\nthe development or distribution of an application, that interferes with,\ndisrupts, damages, or accesses in an unauthorized manner the servers, networks,\nor other properties or services of any third party including, but not limited\nto, Google or any mobile communications carrier.\n\n4.5 You agree that you are solely responsible for (and that Google has no\nresponsibility to you or to any third party for) any data, content, or resources\nthat you create, transmit or display through Android and/or applications for\nAndroid, and for the consequences of your actions (including any loss or damage\nwhich Google may suffer) by doing so.\n\n4.6 You agree that you are solely responsible for (and that Google has no\nresponsibility to you or to any third party for) any breach of your obligations\nunder the License Agreement, any applicable third party contract or Terms of\nService, or any applicable law or regulation, and for the consequences\n(including any loss or damage which Google or any third party may suffer) of any\nsuch breach.\n\n\n5. Your Developer Credentials\n\n5.1 You agree that you are responsible for maintaining the confidentiality of\nany developer credentials that may be issued to you by Google or which you may\nchoose yourself and that you will be solely responsible for all applications\nthat are developed under your developer credentials.\n\n\n6. Privacy and Information\n\n6.1 In order to continually innovate and improve the SDK, Google may collect\ncertain usage statistics from the software including but not limited to a unique\nidentifier, associated IP address, version number of the software, and\ninformation on which tools and/or services in the SDK are being used and how\nthey are being used. Before any of this information is collected, the SDK will\nnotify you and seek your consent. If you withhold consent, the information will\nnot be collected.\n\n6.2 The data collected is examined in the aggregate to improve the SDK and is\nmaintained in accordance with Google's Privacy Policy.\n\n\n7. Third Party Applications\n\n7.1 If you use the SDK to run applications developed by a third party or that\naccess data, content or resources provided by a third party, you agree that\nGoogle is not responsible for those applications, data, content, or resources.\nYou understand that all data, content or resources which you may access through\nsuch third party applications are the sole responsibility of the person from\nwhich they originated and that Google is not liable for any loss or damage that\nyou may experience as a result of the use or access of any of those third party\napplications, data, content, or resources.\n\n7.2 You should be aware the data, content, and resources presented to you\nthrough such a third party application may be protected by intellectual property\nrights which are owned by the providers (or by other persons or companies on\ntheir behalf). You may not modify, rent, lease, loan, sell, distribute or create\nderivative works based on these data, content, or resources (either in whole or\nin part) unless you have been specifically given permission to do so by the\nrelevant owners.\n\n7.3 You acknowledge that your use of such third party applications, data,\ncontent, or resources may be subject to separate terms between you and the\nrelevant third party. In that case, the License Agreement does not affect your\nlegal relationship with these third parties.\n\n\n8. Using Android APIs\n\n8.1 Google Data APIs\n\n8.1.1 If you use any API to retrieve data from Google, you acknowledge that the\ndata may be protected by intellectual property rights which are owned by Google\nor those parties that provide the data (or by other persons or companies on\ntheir behalf). Your use of any such API may be subject to additional Terms of\nService. You may not modify, rent, lease, loan, sell, distribute or create\nderivative works based on this data (either in whole or in part) unless allowed\nby the relevant Terms of Service.\n\n8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge\nand agree that you shall retrieve data only with the user's explicit consent and\nonly when, and for the limited purposes for which, the user has given you\npermission to do so.\n\n\n9. Terminating this License Agreement\n\n9.1 The License Agreement will continue to apply until terminated by either you\nor Google as set out below.\n\n9.2 If you want to terminate the License Agreement, you may do so by ceasing\nyour use of the SDK and any relevant developer credentials.\n\n9.3 Google may at any time, terminate the License Agreement with you if:\n(A) you have breached any provision of the License Agreement; or\n\n(B) Google is required to do so by law; or\n\n(C) the partner with whom Google offered certain parts of SDK (such as APIs) to\nyou has terminated its relationship with Google or ceased to offer certain parts\nof the SDK to you; or\n\n(D) Google decides to no longer provide the SDK or certain parts of the SDK to\nusers in the country in which you are resident or from which you use the\nservice, or the provision of the SDK or certain SDK services to you by Google\nis, in Google's sole discretion, no longer commercially viable.\n\n9.4 When the License Agreement comes to an end, all of the legal rights,\nobligations and liabilities that you and Google have benefited from, been\nsubject to (or which have accrued over time whilst the License Agreement has\nbeen in force) or which are expressed to continue indefinitely, shall be\nunaffected by this cessation, and the provisions of paragraph 14.7 shall\ncontinue to apply to such rights, obligations and liabilities indefinitely.\n\n\n10. DISCLAIMER OF WARRANTIES\n\n10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE\nRISK AND THAT THE SDK IS PROVIDED \"AS IS\" AND \"AS AVAILABLE\" WITHOUT WARRANTY OF\nANY KIND FROM GOOGLE.\n\n10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED\nTHROUGH THE USE OF THE SDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY\nRESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF\nDATA THAT RESULTS FROM SUCH USE.\n\n10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY\nKIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED\nWARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\nAND NON-INFRINGEMENT.\n\n\n11. LIMITATION OF LIABILITY\n\n11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND\nAFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF\nLIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR\nEXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA,\nWHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE\nBEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.\n\n\n12. Indemnification\n\n12.1 To the maximum extent permitted by law, you agree to defend, indemnify and\nhold harmless Google, its affiliates and their respective directors, officers,\nemployees and agents from and against any and all claims, actions, suits or\nproceedings, as well as any and all losses, liabilities, damages, costs and\nexpenses (including reasonable attorneys fees) arising out of or accruing from\n(a) your use of the SDK, (b) any application you develop on the SDK that\ninfringes any copyright, trademark, trade secret, trade dress, patent or other\nintellectual property right of any person or defames any person or violates\ntheir rights of publicity or privacy, and (c) any non-compliance by you with the\nLicense Agreement.\n\n\n13. Changes to the License Agreement\n\n13.1 Google may make changes to the License Agreement as it distributes new\nversions of the SDK. When these changes are made, Google will make a new version\nof the License Agreement available on the website where the SDK is made\navailable.\n\n\n14. General Legal Terms\n\n14.1 The License Agreement constitutes the whole legal agreement between you and\nGoogle and governs your use of the SDK (excluding any services which Google may\nprovide to you under a separate written agreement), and completely replaces any\nprior agreements between you and Google in relation to the SDK.\n\n14.2 You agree that if Google does not exercise or enforce any legal right or\nremedy which is contained in the License Agreement (or which Google has the\nbenefit of under any applicable law), this will not be taken to be a formal\nwaiver of Google's rights and that those rights or remedies will still be\navailable to Google.\n\n14.3 If any court of law, having the jurisdiction to decide on this matter,\nrules that any provision of the License Agreement is invalid, then that\nprovision will be removed from the License Agreement without affecting the rest\nof the License Agreement. The remaining provisions of the License Agreement will\ncontinue to be valid and enforceable.\n\n14.4 You acknowledge and agree that each member of the group of companies of\nwhich Google is the parent shall be third party beneficiaries to the License\nAgreement and that such other companies shall be entitled to directly enforce,\nand rely upon, any provision of the License Agreement that confers a benefit on\n(or rights in favor of) them. Other than this, no other person or company shall\nbe third party beneficiaries to the License Agreement.\n\n14.5 EXPORT RESTRICTIONS. THE SDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND\nREGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND\nREGULATIONS THAT APPLY TO THE SDK. THESE LAWS INCLUDE RESTRICTIONS ON\nDESTINATIONS, END USERS AND END USE.\n\n14.6 The rights granted in the License Agreement may not be assigned or\ntransferred by either you or Google without the prior written approval of the\nother party. Neither you nor Google shall be permitted to delegate their\nresponsibilities or obligations under the License Agreement without the prior\nwritten approval of the other party.\n\n14.7 The License Agreement, and your relationship with Google under the License\nAgreement, shall be governed by the laws of the State of California without\nregard to its conflict of laws provisions. You and Google agree to submit to the\nexclusive jurisdiction of the courts located within the county of Santa Clara,\nCalifornia to resolve any legal matter arising from the License Agreement.\nNotwithstanding this, you agree that Google shall still be allowed to apply for\ninjunctive remedies (or an equivalent type of urgent legal relief) in any\njurisdiction.\n\n\nNovember 20, 2015", + "json": "android-sdk-license.json", + "yaml": "android-sdk-license.yml", + "html": "android-sdk-license.html", + "license": "android-sdk-license.LICENSE" + }, + { + "license_key": "android-sdk-preview-2015", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-android-sdk-preview-2015", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is the Android SDK Preview License Agreement (the \"License Agreement\").\n\n1. Introduction\n\n1.1 The Android SDK Preview (referred to in the License Agreement as the\n\"Preview\" and specifically including the Android system files, packaged APIs,\nand Preview library files, if and when they are made available) is licensed to\nyou subject to the terms of the License Agreement. The License Agreement forms a\nlegally binding contract between you and Google in relation to your use of the\nPreview.\n\n1.2 \"Android\" means the Android software stack for devices, as made available\nunder the Android Open Source Project, which is located at the following URL:\nhttp://source.android.com/, as updated from time to time.\n\n1.3 \"Google\" means Google Inc., a Delaware corporation with principal place of\nbusiness at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.\n\n2. Accepting the License Agreement\n\n2.1 In order to use the Preview, you must first agree to the License Agreement.\nYou may not use the Preview if you do not accept the License Agreement.\n\n2.2 By clicking to accept and/or using the Preview, you hereby agree to the\nterms of the License Agreement.\n\n2.3 You may not use the Preview and may not accept the License Agreement if you\nare a person barred from receiving the Preview under the laws of the United\nStates or other countries including the country in which you are resident or\nfrom which you use the Preview.\n\n2.4 If you will use the Preview internally within your company or organization\nyou agree to be bound by the License Agreement on behalf of your employer or\nother entity, and you represent and warrant that you have full legal authority\nto bind your employer or such entity to the License Agreement. If you do not\nhave the requisite authority, you may not accept the License Agreement or use\nthe Preview on behalf of your employer or other entity.\n\n3. Preview License from Google\n\n3.1 Subject to the terms of the License Agreement, Google grants you a royalty-\nfree, non-assignable, non-exclusive, non-sublicensable, limited, revocable\nlicense to use the Preview, personally or internally within your company or\norganization, solely to develop applications to run on the Android platform.\n\n3.2 You agree that Google or third parties owns all legal right, title and\ninterest in and to the Preview, including any Intellectual Property Rights that\nsubsist in the Preview. \"Intellectual Property Rights\" means any and all rights\nunder patent law, copyright law, trade secret law, trademark law, and any and\nall other proprietary rights. Google reserves all rights not expressly granted\nto you.\n\n3.3 You may not use the Preview for any purpose not expressly permitted by the\nLicense Agreement. Except to the extent required by applicable third party\nlicenses, you may not: (a) copy (except for backup purposes), modify, adapt,\nredistribute, decompile, reverse engineer, disassemble, or create derivative\nworks of the Preview or any part of the Preview; or (b) load any part of the\nPreview onto a mobile handset or any other hardware device except a personal\ncomputer, combine any part of the Preview with other software, or distribute any\nsoftware or device incorporating a part of the Preview.\n\n3.4 You agree that you will not take any actions that may cause or result in the\nfragmentation of Android, including but not limited to distributing,\nparticipating in the creation of, or promoting in any way a software development\nkit derived from the Preview.\n\n3.5 Use, reproduction and distribution of components of the Preview licensed\nunder an open source software license are governed solely by the terms of that\nopen source software license and not the License Agreement. You agree to remain\na licensee in good standing in regard to such open source software licenses\nunder all the rights granted and to refrain from any actions that may terminate,\nsuspend, or breach such rights.\n\n3.6 You agree that the form and nature of the Preview that Google provides may\nchange without prior notice to you and that future versions of the Preview may\nbe incompatible with applications developed on previous versions of the Preview.\nYou agree that Google may stop (permanently or temporarily) providing the\nPreview (or any features within the Preview) to you or to users generally at\nGoogle's sole discretion, without prior notice to you.\n\n3.7 Nothing in the License Agreement gives you a right to use any of Google's\ntrade names, trademarks, service marks, logos, domain names, or other\ndistinctive brand features.\n\n3.8 You agree that you will not remove, obscure, or alter any proprietary rights\nnotices (including copyright and trademark notices) that may be affixed to or\ncontained within the Preview.\n\n4. Use of the Preview by You\n\n4.1 Google agrees that nothing in the License Agreement gives Google any right,\ntitle or interest from you (or your licensors) under the License Agreement in or\nto any software applications that you develop using the Preview, including any\nintellectual property rights that subsist in those applications.\n\n4.2 You agree to use the Preview and write applications only for purposes that\nare permitted by (a) the License Agreement, and (b) any applicable law,\nregulation or generally accepted practices or guidelines in the relevant\njurisdictions (including any laws regarding the export of data or software to\nand from the United States or other relevant countries).\n\n4.3 You agree that if you use the Preview to develop applications, you will\nprotect the privacy and legal rights of users. If users provide you with user\nnames, passwords, or other login information or personal information, you must\nmake the users aware that the information will be available to your application,\nand you must provide legally adequate privacy notice and protection for those\nusers. If your application stores personal or sensitive information provided by\nusers, it must do so securely. If users provide you with Google Account\ninformation, your application may only use that information to access the user's\nGoogle Account when, and for the limited purposes for which, each user has given\nyou permission to do so.\n\n4.4 You agree that you will not engage in any activity with the Preview,\nincluding the development or distribution of an application, that interferes\nwith, disrupts, damages, or accesses in an unauthorized manner the servers,\nnetworks, or other properties or services of Google or any third party.\n\n4.5 You agree that you are solely responsible for (and that Google has no\nresponsibility to you or to any third party for) any data, content, or resources\nthat you create, transmit or display through Android and/or applications for\nAndroid, and for the consequences of your actions (including any loss or damage\nwhich Google may suffer) by doing so.\n\n4.6 You agree that you are solely responsible for (and that Google has no\nresponsibility to you or to any third party for) any breach of your obligations\nunder the License Agreement, any applicable third party contract or Terms of\nService, or any applicable law or regulation, and for the consequences\n(including any loss or damage which Google or any third party may suffer) of any\nsuch breach.\n\n4.7 The Preview is in development, and your testing and feedback are an\nimportant part of the development process. By using the Preview, you acknowledge\nthat implementation of some features are still under development and that you\nshould not rely on the Preview having the full functionality of a stable\nrelease. You agree not to publicly distribute or ship any application using this\nPreview as this Preview will no longer be supported after the official Android\nSDK is released.\n\n5. Your Developer Credentials\n\n5.1 You agree that you are responsible for maintaining the confidentiality of\nany developer credentials that may be issued to you by Google or which you may\nchoose yourself and that you will be solely responsible for all applications\nthat are developed under your developer credentials.\n\n6. Privacy and Information\n\n6.1 In order to continually innovate and improve the Preview, Google may collect\ncertain usage statistics from the software including but not limited to a unique\nidentifier, associated IP address, version number of the software, and\ninformation on which tools and/or services in the Preview are being used and how\nthey are being used. Before any of this information is collected, the Preview\nwill notify you and seek your consent. If you withhold consent, the information\nwill not be collected.\n\n6.2 The data collected is examined in the aggregate to improve the Preview and\nis maintained in accordance with Google's Privacy Policy located at\nhttp://www.google.com/policies/privacy/.\n\n7. Third Party Applications\n\n7.1 If you use the Preview to run applications developed by a third party or\nthat access data, content or resources provided by a third party, you agree that\nGoogle is not responsible for those applications, data, content, or resources.\nYou understand that all data, content or resources which you may access through\nsuch third party applications are the sole responsibility of the person from\nwhich they originated and that Google is not liable for any loss or damage that\nyou may experience as a result of the use or access of any of those third party\napplications, data, content, or resources.\n\n7.2 You should be aware the data, content, and resources presented to you\nthrough such a third party application may be protected by intellectual property\nrights which are owned by the providers (or by other persons or companies on\ntheir behalf). You may not modify, rent, lease, loan, sell, distribute or create\nderivative works based on these data, content, or resources (either in whole or\nin part) unless you have been specifically given permission to do so by the\nrelevant owners.\n\n7.3 You acknowledge that your use of such third party applications, data,\ncontent, or resources may be subject to separate terms between you and the\nrelevant third party.\n\n8. Using Google APIs\n\n8.1 Google APIs\n\n8.1.1 If you use any API to retrieve data from Google, you acknowledge that the\ndata may be protected by intellectual property rights which are owned by Google\nor those parties that provide the data (or by other persons or companies on\ntheir behalf). Your use of any such API may be subject to additional Terms of\nService. You may not modify, rent, lease, loan, sell, distribute or create\nderivative works based on this data (either in whole or in part) unless allowed\nby the relevant Terms of Service.\n\n8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge\nand agree that you shall retrieve data only with the user's explicit consent and\nonly when, and for the limited purposes for which, the user has given you\npermission to do so.\n\n9. Terminating the License Agreement\n\n9.1 the License Agreement will continue to apply until terminated by either you\nor Google as set out below.\n\n9.2 If you want to terminate the License Agreement, you may do so by ceasing\nyour use of the Preview and any relevant developer credentials.\n\n9.3 Google may at any time, terminate the License Agreement, with or without\ncause, upon notice to you.\n\n9.4 The License Agreement will automatically terminate without notice or other\naction upon the earlier of: (A) when Google ceases to provide the Preview or\ncertain parts of the Preview to users in the country in which you are resident\nor from which you use the service; and (B) Google issues a final release version\nof the Android SDK.\n\n9.5 When the License Agreement is terminated, the license granted to you in the\nLicense Agreement will terminate, you will immediately cease all use of the\nPreview, and the provisions of paragraphs 10, 11, 12 and 14 shall survive\nindefinitely.\n\n10. DISCLAIMERS\n\n10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE PREVIEW IS AT YOUR\nSOLE RISK AND THAT THE PREVIEW IS PROVIDED \"AS IS\" AND \"AS AVAILABLE\" WITHOUT\nWARRANTY OF ANY KIND FROM GOOGLE.\n\n10.2 YOUR USE OF THE PREVIEW AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED\nTHROUGH THE USE OF THE PREVIEW IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE\nSOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR\nLOSS OF DATA THAT RESULTS FROM SUCH USE. WITHOUT LIMITING THE FOREGOING, YOU\nUNDERSTAND THAT THE PREVIEW IS NOT A STABLE RELEASE AND MAY CONTAIN ERRORS,\nDEFECTS AND SECURITY VULNERABILITIES THAT CAN RESULT IN SIGNIFICANT DAMAGE,\nINCLUDING THE COMPLETE, IRRECOVERABLE LOSS OF USE OF YOUR COMPUTER SYSTEM OR\nOTHER DEVICE.\n\n10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY\nKIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED\nWARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\nAND NON-INFRINGEMENT.\n\n11. LIMITATION OF LIABILITY\n\n11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND\nAFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF\nLIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR\nEXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA,\nWHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE\nBEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.\n\n12. Indemnification\n\n12.1 To the maximum extent permitted by law, you agree to defend, indemnify and\nhold harmless Google, its affiliates and their respective directors, officers,\nemployees and agents from and against any and all claims, actions, suits or\nproceedings, as well as any and all losses, liabilities, damages, costs and\nexpenses (including reasonable attorneys\u2019 fees) arising out of or accruing from\n(a) your use of the Preview, (b) any application you develop on the Preview that\ninfringes any Intellectual Property Rights of any person or defames any person\nor violates their rights of publicity or privacy, and (c) any non-compliance by\nyou of the License Agreement.\n\n13. Changes to the License Agreement\n\n13.1 Google may make changes to the License Agreement as it distributes new\nversions of the Preview. When these changes are made, Google will make a new\nversion of the License Agreement available on the website where the Preview is\nmade available.\n\n14. General Legal Terms\n\n14.1 the License Agreement constitutes the whole legal agreement between you and\nGoogle and governs your use of the Preview (excluding any services which Google\nmay provide to you under a separate written agreement), and completely replaces\nany prior agreements between you and Google in relation to the Preview.\n\n14.2 You agree that if Google does not exercise or enforce any legal right or\nremedy which is contained in the License Agreement (or which Google has the\nbenefit of under any applicable law), this will not be taken to be a formal\nwaiver of Google's rights and that those rights or remedies will still be\navailable to Google.\n\n14.3 If any court of law, having the jurisdiction to decide on this matter,\nrules that any provision of the License Agreement is invalid, then that\nprovision will be removed from the License Agreement without affecting the rest\nof the License Agreement. The remaining provisions of the License Agreement will\ncontinue to be valid and enforceable.\n\n14.4 You acknowledge and agree that each member of the group of companies of\nwhich Google is the parent shall be third party beneficiaries to the License\nAgreement and that such other companies shall be entitled to directly enforce,\nand rely upon, any provision of the License Agreement that confers a benefit on\n(or rights in favor of) them. Other than this, no other person or company shall\nbe third party beneficiaries to the License Agreement.\n\n14.5 EXPORT RESTRICTIONS. THE PREVIEW IS SUBJECT TO UNITED STATES EXPORT LAWS\nAND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS\nAND REGULATIONS THAT APPLY TO THE PREVIEW. THESE LAWS INCLUDE RESTRICTIONS ON\nDESTINATIONS, END USERS AND END USE.\n\n14.6 The License Agreement may not be assigned or transferred by you without the\nprior written approval of Google, and any attempted assignment without such\napproval will be void. You shall not delegate your responsibilities or\nobligations under the License Agreement without the prior written approval of\nGoogle.\n\n14.7 The License Agreement, and your relationship with Google under the License\nAgreement, shall be governed by the laws of the State of California without\nregard to its conflict of laws provisions. You and Google agree to submit to the\nexclusive jurisdiction of the courts located within the county of Santa Clara,\nCalifornia to resolve any legal matter arising from the License Agreement.\nNotwithstanding this, you agree that Google shall still be allowed to apply for\ninjunctive remedies (or an equivalent type of urgent legal relief) in any\njurisdiction.", + "json": "android-sdk-preview-2015.json", + "yaml": "android-sdk-preview-2015.yml", + "html": "android-sdk-preview-2015.html", + "license": "android-sdk-preview-2015.LICENSE" + }, + { + "license_key": "anepokis-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-anepokis-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Anepokis License v. 1.0\n\nThis Anepokis License (the \"License\") applies to any original work of\nauthorship (the \"Original Work\") whose owner (the \"Licensor\") has placed\nthe following licensing notice adjacent to the copyright notice for the\nOriginal Work:\n\n Licensed under the Anepokis License version 1.0\n\nor has expressed by any other means his willingness to license the\nOriginal Work under this License.\n\n1. Grant of Copyright License.\n\nLicensor grants You a worldwide, royalty-free, non-exclusive, sublicensable\nlicense, for the duration of the copyright, to do the following:\n\n a) to reproduce the Original Work in copies, either alone or as part of a\n collective work;\n\n b) to translate, adapt, alter, transform, modify, or arrange the Original\n Work, thereby creating derivative works (\"Derivative Works\") based upon\n the Original Work;\n\n c) to distribute or communicate copies of the Original Work and Derivative\n Works to the public, with the proviso that copies of Original Work or\n Derivative Works that You distribute or communicate shall be licensed\n under this Anepokis License;\n\n d) to perform the Original Work publicly; and\n\n e) to display the Original Work publicly.\n\n2. Grant of Patent License.\n\nLicensor grants You a worldwide, royalty-free, non-exclusive, sublicensable\nlicense, under patent claims owned or controlled by the Licensor that are\nembodied in the Original Work as furnished by the Licensor, for the duration\nof the patents, to make, use, sell, offer for sale, have made, and import the\nOriginal Work and Derivative Works.\n\n3. Grant of Source Code License.\n\nThe term \"Source Code\" means the preferred form of the Original Work for making\nmodifications to it and all available documentation describing how to modify\nthe Original Work. Licensor agrees to provide a machine-readable copy of the\nSource Code of the Original Work along with each copy of the Original Work that\nLicensor distributes. Licensor reserves the right to satisfy this obligation by\nplacing a machine-readable copy of the Source Code in an information repository\nreasonably calculated to permit inexpensive and convenient access by You for as\nlong as Licensor continues to distribute the Original Work.\n\n4. Exclusions From License Grant.\n\nNeither the names of Licensor, nor the names of any contributors to the\nOriginal Work, nor any of their trademarks or service marks, may be used to\nendorse or promote products derived from this Original Work without express\nprior permission of the Licensor. Except as expressly stated herein, nothing in\nthis License grants any license to Licensor's trademarks, copyrights, patents,\ntrade secrets or any other intellectual property. No patent license is granted\nto make, use, sell, offer for sale, have made, or import embodiments of any\npatent claims other than the licensed claims defined in Section 2. No license\nis granted to the trademarks of Licensor even if such marks are included in the\nOriginal Work. Nothing in this License shall be interpreted to prohibit Licensor\nfrom licensing under terms different from this License any Original Work that\nLicensor otherwise would have a right to license.\n\n5. External Deployment.\n\nThe term \"External Deployment\" means the use, distribution, or communication of\nthe Original Work or Derivative Works in any way such that the Original Work or\nDerivative Works may be used by anyone other than You, whether those works are\ndistributed or communicated to those persons or made available as an application\nintended for use over a network. As an express condition for the grants of\nlicense hereunder, You must treat any External Deployment by You of the Original\nWork or a Derivative Work as a distribution under Section 1(c).\n\n6. Attribution Rights.\n\nYou must retain, in the Source Code of any Derivative Works that You create,\nall copyright, patent, or trademark notices from the Source Code of the\nOriginal Work, as well as any notices of licensing and any descriptive text\nidentified therein as an \"Attribution Notice.\" You must cause the Source Code\nfor any Derivative Works that You create to carry a prominent Attribution\nNotice reasonably calculated to inform recipients that You have modified the\nOriginal Work.\n\n7. Warranty of Provenance and Disclaimer of Warranty.\n\nLicensor warrants that the copyright in and to the Original Work and the\npatent rights granted herein by Licensor are owned by the Licensor or are\nsublicensed to You under the terms of this License with the permission of\nthe contributor(s) of those copyrights and patent rights. Except as expressly\nstated in the immediately preceding sentence, the Original Work is provided\nunder this License on an \"AS IS\" BASIS and WITHOUT WARRANTY, either express or\nimplied, including, without limitation, the warranties of non-infringement,\nmerchantability or fitness for a particular purpose. THE ENTIRE RISK AS TO THE\nQUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY\nconstitutes an essential part of this License. No license to the Original Work\nis granted by this License except under this disclaimer.\n\n8. Limitation of Liability.\n\nUnder no circumstances and under no legal theory, whether in tort (including\nnegligence), contract, or otherwise, shall the Licensor be liable to anyone for\nany indirect, special, incidental, or consequential damages of any character\narising as a result of this License or the use of the Original Work including,\nwithout limitation, damages for loss of goodwill, work stoppage, computer\nfailure or malfunction, or any and all other commercial damages or losses.\nThis limitation of liability shall not apply to the extent applicable law\nprohibits such limitation.\n\n9. Acceptance and Termination.\n\nIf, at any time, You exercise any rights granted to You by Section 1 of this\nLicense, that exercising indicates your irrevocable acceptance of this License\nand all of its terms and conditions. Nothing in this License is intended to\naffect copyright exceptions and limitations (including \"fair use\" or \"fair\ndealing\"). This License shall terminate immediately and You may no longer\nexercise any of the rights granted to You by this License upon your failure to\nhonor the conditions in Section 1(c).\n\n10. Termination for Patent Action.\n\nThis License shall terminate automatically and You may no longer exercise any\nof the rights granted to You by this License as of the date You commence an\naction, including a cross-claim or counterclaim, against Licensor or any\nlicensee alleging that the Original Work infringes a patent. This termination\nprovision shall not apply for an action alleging patent infringement by\ncombinations of the Original Work with other software or hardware.\n\n11. Jurisdiction, Venue and Governing Law.\n\nAny action or suit relating to this License may be brought only in the courts\nof a jurisdiction wherein the Licensor resides or in which Licensor conducts\nits primary business, and under the laws of that jurisdiction excluding its\nconflict-of-law provisions. The application of the United Nations Convention on\nContracts for the International Sale of Goods is expressly excluded. Any use of\nthe Original Work outside the scope of this License or after its termination\nshall be subject to the requirements and penalties of copyright or patent law\nin the appropriate jurisdiction. This section shall survive the termination of\nthis License.\n\n12. Attorneys' Fees.\n\nIn any action to enforce the terms of this License or seeking damages relating\nthereto, the prevailing party shall be entitled to recover its costs and\nexpenses, including, without limitation, reasonable attorneys' fees and costs\nincurred in connection with such action, including any appeal of such action.\nThis section shall survive the termination of this License.\n\n13. Miscellaneous.\n\nIf any provision of this License is held to be unenforceable, such provision\nshall be reformed only to the extent necessary to make it enforceable.\n\n14. Definition of \"You\" in This License.\n\n\"You\" throughout this License, whether in upper or lower case, means an\nindividual or a legal entity exercising rights under, and complying with all of\nthe terms of, this License. For legal entities, \"You\" includes any entity that\ncontrols, is controlled by, or is under common control with you. For purposes\nof this definition, \"control\" means (i) the power, direct or indirect, to cause\nthe direction or management of such entity, whether by contract or otherwise,\nor (ii) ownership of fifty percent (50%) or more of the outstanding shares,\nor (iii) beneficial ownership of such entity.\n\n15. Right to Use.\n\nYou may use the Original Work in all ways not otherwise restricted or\nconditioned by this License or by law, and Licensor promises not to interfere\nwith or be responsible for such uses by You.\n\n16. Modification of This License.\n\nThis License is Copyright 2005 Lawrence Rosen, Copyright 2020 Salif Mehmed.\nPermission is granted to copy, distribute, or communicate this License without\nmodification. Nothing in this License permits You to modify this License as\napplied to the Original Work or to Derivative Works. However, You may modify\nthe text of this License and copy, distribute or communicate your modified\nversion (the \"Modified License\") and apply it to other original works of\nauthorship subject to the following conditions: (i) You may not indicate in\nany way that your Modified License is the \"Anepokis License\" and you may not\nuse this name in the name of your Modified License; (ii) You must replace\nthe notice specified in the first paragraph above with the notice \"Licensed\nunder \" or with a notice of your own that is not\nconfusingly similar to the notice in this License; and (iii) You may not claim\nthat your original works are open source software unless your Modified License\nhas been approved by Open Source Initiative (OSI) and You comply with its\nlicense review and certification process.", + "json": "anepokis-1.0.json", + "yaml": "anepokis-1.0.yml", + "html": "anepokis-1.0.html", + "license": "anepokis-1.0.LICENSE" + }, + { + "license_key": "anti-capitalist-1.4", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-anti-capitalist-1.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ANTI-CAPITALIST SOFTWARE LICENSE (v 1.4)\n\nThis is anti-capitalist software, released for free use by individuals and organizations that do not operate by capitalist principles.\n\nPermission is hereby granted, free of charge, to any person or organization (the \"User\") obtaining a copy of this software and associated documentation files (the \"Software\"), to use, copy, modify, merge, distribute, and/or sell copies of the Software, subject to the following conditions:\n\n1. The above copyright notice and this permission notice shall be included in all copies or modified versions of the Software.\n\n2. The User is one of the following:\na. An individual person, laboring for themselves\nb. A non-profit organization\nc. An educational institution\nd. An organization that seeks shared profit for all of its members, and allows non-members to set the cost of their labor\n\n3. If the User is an organization with owners, then all owners are workers and all workers are owners with equal equity and/or equal vote.\n\n4. If the User is an organization, then the User is not law enforcement or military, or working for or under either.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "anti-capitalist-1.4.json", + "yaml": "anti-capitalist-1.4.yml", + "html": "anti-capitalist-1.4.html", + "license": "anti-capitalist-1.4.LICENSE" + }, + { + "license_key": "antlr-pd", + "category": "Permissive", + "spdx_license_key": "ANTLR-PD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ANTLR SOFTWARE RIGHTS\n\nANTLR 1989-2006 Developed by Terence Parr\nPartially supported by University of San Francisco & jGuru.com\n\nWe reserve no legal rights to the ANTLR --it is fully in the public domain. An\nindividual or company may do whatever they wish with source code distributed\nwith ANTLR or the code generated by ANTLR, including the incorporation of ANTLR,\nor its output, into commerical software.\n\nWe encourage users to develop software with ANTLR. However, we do ask that\ncredit is given to us for developing ANTLR. By \"credit\", we mean that if you use\nANTLR or incorporate any source code into one of your programs (commercial\nproduct, research project, or otherwise) that you acknowledge this fact\nsomewhere in the documentation, research report, etc... If you like ANTLR and\nhave developed a nice tool with the output, please mention that you developed it\nusing ANTLR. In addition, we ask that the headers remain intact in our source\ncode. As long as these guidelines are kept, we expect to continue enhancing this\nsystem and expect to make other tools available as they are completed.\n\nThe primary ANTLR guy:\n\nTerence Parr\nparrt@cs.usfca.edu\nparrt@antlr.org", + "json": "antlr-pd.json", + "yaml": "antlr-pd.yml", + "html": "antlr-pd.html", + "license": "antlr-pd.LICENSE" + }, + { + "license_key": "antlr-pd-fallback", + "category": "Public Domain", + "spdx_license_key": "ANTLR-PD-fallback", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ANTLR 2 License\n\nWe reserve no legal rights to the ANTLR --it is fully in the public domain. An\nindividual or company may do whatever they wish with source code distributed\nwith ANTLR or the code generated by ANTLR, including the incorporation of ANTLR,\nor its output, into commerical software.\n\nWe encourage users to develop software with ANTLR. However, we do ask that\ncredit is given to us for developing ANTLR. By \"credit\", we mean that if you use\nANTLR or incorporate any source code into one of your programs (commercial\nproduct, research project, or otherwise) that you acknowledge this fact\nsomewhere in the documentation, research report, etc... If you like ANTLR and\nhave developed a nice tool with the output, please mention that you developed it\nusing ANTLR. In addition, we ask that the headers remain intact in our source\ncode. As long as these guidelines are kept, we expect to continue enhancing this\nsystem and expect to make other tools available as they are completed.\n\nIn countries where the Public Domain status of the work may not be valid, the\nauthor grants a copyright licence to the general public to deal in the work\nwithout restriction and permission to sublicence derivates under the terms of\nany (OSI approved) Open Source licence.", + "json": "antlr-pd-fallback.json", + "yaml": "antlr-pd-fallback.yml", + "html": "antlr-pd-fallback.html", + "license": "antlr-pd-fallback.LICENSE" + }, + { + "license_key": "anu-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-anu-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software and its\ndocumentation is hereby granted, provided that the above copyright notice\nappears in all copies. This software is provided without any warranty, express\nor implied. The Australian National University makes no representations about\nthe suitability of this software for any purpose.\n\nIN NO EVENT SHALL THE AUSTRALIAN NATIONAL UNIVERSITY BE LIABLE TO ANY PARTY\nFOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\nOF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE AUSTRALIAN\nNATIONAL UNIVERSITY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nTHE AUSTRALIAN NATIONAL UNIVERSITY SPECIFICALLY DISCLAIMS ANY WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN\n\"AS IS\" BASIS, AND THE AUSTRALIAN NATIONAL UNIVERSITY HAS NO OBLIGATION TO\nPROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.", + "json": "anu-license.json", + "yaml": "anu-license.yml", + "html": "anu-license.html", + "license": "anu-license.LICENSE" + }, + { + "license_key": "aop-pd", + "category": "Public Domain", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "The person or persons who have associated work with this document (the \"Dedicator\" or \"Certifier\") hereby either (a) certifies that, to the best of his knowledge, the work of authorship identified is in the public domain of the country from which the work is published, or (b) hereby dedicates whatever copyright the dedicators holds in the work of authorship identified below (the \"Work\") to the public domain. A certifier, moreover, dedicates any copyright interest he may have in the associated work, and for these purposes, is described as a \"dedicator\" below.\n\nA certifier has taken reasonable steps to verify the copyright status of this work. Certifier recognizes that his good faith efforts may not shield him from liability if in fact the work certified is not in the public domain.\n\nDedicator makes this dedication for the benefit of the public at large and to the detriment of the Dedicator's heirs and successors. Dedicator intends this dedication to be an overt act of relinquishment in perpetuity of all present and future rights under copyright law, whether vested or contingent, in the Work. Dedicator understands that such relinquishment of all rights includes the relinquishment of all rights to enforce (by lawsuit or otherwise) those copyrights in the Work.\n\nDedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived.", + "json": "aop-pd.json", + "yaml": "aop-pd.yml", + "html": "aop-pd.html", + "license": "aop-pd.LICENSE" + }, + { + "license_key": "apache-1.0", + "category": "Permissive", + "spdx_license_key": "Apache-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer. \n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in\n the documentation and/or other materials provided with the\n distribution.\n\n3. All advertising materials mentioning features or use of this\n software must display the following acknowledgment:\n \"This product includes software developed by the Apache Group\n for use in the Apache HTTP server project (http://www.apache.org/).\"\n\n4. The names \"Apache Server\" and \"Apache Group\" must not be used to\n endorse or promote products derived from this software without\n prior written permission. For written permission, please contact\n apache@apache.org.\n\n5. Products derived from this software may not be called \"Apache\"\n nor may \"Apache\" appear in their names without prior written\n permission of the Apache Group.\n\n6. Redistributions of any form whatsoever must retain the following\n acknowledgment:\n \"This product includes software developed by the Apache Group\n for use in the Apache HTTP server project (http://www.apache.org/).\"\n\nTHIS SOFTWARE IS PROVIDED BY THE APACHE GROUP ``AS IS'' AND ANY\nEXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE APACHE GROUP OR\nITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\nOF THE POSSIBILITY OF SUCH DAMAGE.\n====================================================================\n\nThis software consists of voluntary contributions made by many\nindividuals on behalf of the Apache Group and was originally based\non public domain software written at the National Center for\nSupercomputing Applications, University of Illinois, Urbana-Champaign.\nFor more information on the Apache Group and the Apache HTTP server\nproject, please see .", + "json": "apache-1.0.json", + "yaml": "apache-1.0.yml", + "html": "apache-1.0.html", + "license": "apache-1.0.LICENSE" + }, + { + "license_key": "apache-1.1", + "category": "Permissive", + "spdx_license_key": "Apache-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Apache Software License, Version 1.1\n\nCopyright (c) 2000 The Apache Software Foundation. All rights\nreserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in\n the documentation and/or other materials provided with the\n distribution.\n\n3. The end-user documentation included with the redistribution,\n if any, must include the following acknowledgment:\n \"This product includes software developed by the\n Apache Software Foundation (http://www.apache.org/).\"\n Alternately, this acknowledgment may appear in the software itself,\n if and wherever such third-party acknowledgments normally appear.\n\n4. The names \"Apache\" and \"Apache Software Foundation\" must\n not be used to endorse or promote products derived from this\n software without prior written permission. For written\n permission, please contact apache@apache.org.\n\n5. Products derived from this software may not be called \"Apache\",\n nor may \"Apache\" appear in their name, without prior written\n permission of the Apache Software Foundation.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR\nITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\nUSE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\nOF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.", + "json": "apache-1.1.json", + "yaml": "apache-1.1.yml", + "html": "apache-1.1.html", + "license": "apache-1.1.LICENSE" + }, + { + "license_key": "apache-2.0", + "category": "Permissive", + "spdx_license_key": "Apache-2.0", + "other_spdx_license_keys": [ + "LicenseRef-Apache", + "LicenseRef-Apache-2.0" + ], + "is_exception": false, + "is_deprecated": false, + "text": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.", + "json": "apache-2.0.json", + "yaml": "apache-2.0.yml", + "html": "apache-2.0.html", + "license": "apache-2.0.LICENSE" + }, + { + "license_key": "apache-2.0-linking-exception", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "EXCEPTION TO THE APACHE 2.0 LICENSE\n\nAs a special exception to the Apache License 2.0 (and referring to the\ndefinitions in Section 1 of this license), you may link, statically or\ndynamically, the \"Work\" to other modules to produce an executable file\ncontaining portions of the \"Work\", and distribute that executable file\nin \"Object\" form under the terms of your choice, without any of the\nadditional requirements listed in Section 4 of the Apache License 2.0.\nThis exception applies only to redistributions in \"Object\" form (not\n\"Source\" form) and only if no modifications have been made to the \"Work\".", + "json": "apache-2.0-linking-exception.json", + "yaml": "apache-2.0-linking-exception.yml", + "html": "apache-2.0-linking-exception.html", + "license": "apache-2.0-linking-exception.LICENSE" + }, + { + "license_key": "apache-2.0-runtime-library-exception", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "## Runtime Library Exception to the Apache 2.0 License: ##\n\n As an exception, if you use this Software to compile your source code and\n portions of this Software are embedded into the binary product as a result,\n you may redistribute such product without providing attribution as would\n otherwise be required by Sections 4(a), 4(b) and 4(d) of the License.", + "json": "apache-2.0-runtime-library-exception.json", + "yaml": "apache-2.0-runtime-library-exception.yml", + "html": "apache-2.0-runtime-library-exception.html", + "license": "apache-2.0-runtime-library-exception.LICENSE" + }, + { + "license_key": "apache-due-credit", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Redistribution and use of this software and associated documentation\n(\"Software\"), with or without modification, are permitted provided that the\nfollowing conditions are met:\n\n1. Redistributions of source code must retain copyright statements and\nnotices. Redistributions must also contain a copy of this document.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation\nand/or other materials provided with the distribution.\n\n3. The name \"Author\" must not be used to endorse or promote products derived\nfrom this Software without prior written permission of Author. For\nwritten permission, please contact Author.\n\n4. Products derived from this Software may not be called \"Product\" nor may\n\"Author\" appear in their names without prior written permission of Author.\nProduct is a registered trademark of Author.\n\n5. Due credit should be given to Author.\n\nTHIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ''AS IS'' AND\nANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED.\n\nIN NO EVENT SHALL AUTHOR OR ITS CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "apache-due-credit.json", + "yaml": "apache-due-credit.yml", + "html": "apache-due-credit.html", + "license": "apache-due-credit.LICENSE" + }, + { + "license_key": "apache-exception-llvm", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "---- LLVM Exceptions to the Apache 2.0 License ----\n\nAs an exception, if, as a result of your compiling your source code, portions\nof this Software are embedded into an Object form of such source code, you\nmay redistribute such embedded portions in such Object form without complying\nwith the conditions of Sections 4(a), 4(b) and 4(d) of the License.\n\nIn addition, if you combine or link compiled forms of this Software with\nsoftware that is licensed under the GPLv2 (\"Combined Software\") and if a\ncourt of competent jurisdiction determines that the patent provision (Section\n3),the indemnity provision (Section 9) or other Section of the License\nconflicts with the conditions of the GPLv2, you may retroactively and\nprospectively choose to deem waived or otherwise exclude such Section(s) of\nthe License, but only in their entirety and only with respect to the Combined\nSoftware.", + "json": "apache-exception-llvm.json", + "yaml": "apache-exception-llvm.yml", + "html": "apache-exception-llvm.html", + "license": "apache-exception-llvm.LICENSE" + }, + { + "license_key": "apache-patent-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-apache-patent-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-apache-patent-provision-exception" + ], + "is_exception": true, + "is_deprecated": false, + "text": "(Optional) Exceptions to the Apache 2.0 License:\n================================================\n\nIn addition, if you combine or link compiled forms of this Software with\nsoftware that is licensed under the GPLv2 or LGPLv2 (\u201cCombined Software\u201d) and if\na court of competent jurisdiction determines that the patent provision (Section\n3), the indemnity provision (Section 9) or other Section of the License\nconflicts with the conditions of the GPLv2 or LGPLv2, you may retroactively and\nprospectively choose to deem waived or otherwise exclude such Section(s) of the\nLicense, but only in their entirety and only with respect to the Combined\nSoftware.", + "json": "apache-patent-exception.json", + "yaml": "apache-patent-exception.yml", + "html": "apache-patent-exception.html", + "license": "apache-patent-exception.LICENSE" + }, + { + "license_key": "apache-patent-provision-exception", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "(Optional) Exceptions to the Apache 2.0 License:\n================================================\n\nIn addition, if you combine or link compiled forms of this Software with\nsoftware that is licensed under the GPLv2 or LGPLv2 (\u201cCombined Software\u201d) and if\na court of competent jurisdiction determines that the patent provision (Section\n3), the indemnity provision (Section 9) or other Section of the License\nconflicts with the conditions of the GPLv2 or LGPLv2, you may retroactively and\nprospectively choose to deem waived or otherwise exclude such Section(s) of the\nLicense, but only in their entirety and only with respect to the Combined\nSoftware.", + "json": "apache-patent-provision-exception.json", + "yaml": "apache-patent-provision-exception.yml", + "html": "apache-patent-provision-exception.html", + "license": "apache-patent-provision-exception.LICENSE" + }, + { + "license_key": "apafml", + "category": "Permissive", + "spdx_license_key": "APAFML", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This file and the 14 PostScript(R) AFM files it accompanies may be used, copied,\nand distributed for any purpose and without charge, with or without\nmodification, provided that all copyright notices are retained; that the AFM\nfiles are not distributed without this file; that all modifications to this file\nor any of the AFM files are prominently noted in the modified file(s); and that\nthis paragraph is not modified. Adobe Systems has no responsibility or\nobligation to support the use of the AFM files.", + "json": "apafml.json", + "yaml": "apafml.yml", + "html": "apafml.html", + "license": "apafml.LICENSE" + }, + { + "license_key": "apl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-apl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ACADEMIC PUBLIC LICENSE\n version 1.1\n\n Copyright (C) 2003, 2010, 2015 Andras Varga\n\n\n Preamble\n\n This license contains the terms and conditions of using OMNeT++ in\nnoncommercial settings: at academic institutions for teaching and research\nuse and for personal or educational purposes. You will find that this\nlicense provides noncommercial users of OMNeT++ with rights that are\nsimilar to the well-known GNU General Public License, yet it retains the\npossibility for OMNeT++ authors to financially support the development by\nselling commercial licenses. In fact, if you intend to use OMNeT++ in a\n\"for-profit\" environment, where research is conducted to develop or enhance\na product, is used in a commercial service offering, or when an entity uses\nOMNeT++ to participate in government-funded, EU-funded, military or similar\nresearch projects, then you need to obtain a commercial license (OMNEST).\nIn that case, or if you are unsure, please visit www.omnest.com to inquire about \ncommercial licenses.\n\n What are the rights given to noncommercial users? Similarly to GPL, you\nhave the right to use the software, to distribute copies, to receive source\ncode, to change the software and distribute your modifications or the\nmodified software. Also similarly to the GPL, if you distribute verbatim or\nmodified copies of this software, they must be distributed under this\nlicense.\n\n By modeling the GPL, this license guarantees that you're safe when using\nOMNeT++ in your work, for teaching or research. This license guarantees\nthat OMNeT++ will remain available free of charge for nonprofit use. You\ncan modify OMNeT++ to your purposes, and you can also share your modifications.\nEven in the unlikely case of the authors abandoning OMNeT++ entirely, this\nlicense permits anyone to continue developing it from the last release, and\nto create further releases under this license.\n\n We believe that the combination of noncommercial open-source and commercial\nlicensing will be beneficial for the whole user community, because income from\ncommercial licenses will enable faster development and a higher level of\nsoftware quality, while further enjoying the informal, open communication\nand collaboration channels of open source development.\n\n The precise terms and conditions for using, copying, distribution and\nmodification follow.\n\n\n ACADEMIC PUBLIC LICENSE\n\n TERMS AND CONDITIONS FOR USE, COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. Definitions\n\n \"Program\" means a copy of OMNeT++, which is said to be distributed under\nthis Academic Public License.\n\n \"Work based on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or a\nportion of it, either verbatim or with modifications and/or translated into\nanother language. (Hereinafter, translation is included without limitation\nin the term \"modification\".)\n\n \"Using the Program\" means any act of creating executables that contain or\ndirectly use libraries that are part of the Program, running any of the\ntools that are part of the Program, or creating works based on the Program.\n\nEach licensee is addressed as \"you\".\n\n 1. Permission is hereby granted to use the Program free of charge for\nnoncommercial purposes, including teaching and academic research at\nuniversities, colleges and other educational institutions and personal\nnon-profit purposes. For using the Program for commercial purposes,\nincluding but not restricted to consulting activities, design of commercial\nhardware or software networking products, and joint research with a\ncommercial entity, government-funded, EU-funded, military or similar\nresearch projects, you have to contact the author. Or you can also visit www.omnest.com\nfor an appropriate license. Permission is also granted to use the Program\nfor a reasonably limited period of time for the purpose of evaluating its\nusefulness for a particular purpose.\n\n 2. You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\n 3. You may modify your copy or copies of the Program or any portion\nof it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 2\nabove, provided that you also meet all of these conditions:\n\n a) You must cause the modified files to carry prominent notices\n stating that you changed the files and the date of any change.\n\n b) You must cause any work that you distribute or publish, that in\n whole or in part contains or is derived from the Program or any\n part thereof, to be licensed as a whole at no charge to all third\n parties under the terms of this License.\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose regulations for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote it.\n(If the same, independent sections are distributed as part of a package\nthat is otherwise reliant on, or is based on the Program, then the\ndistribution of the whole package, including but not restricted to the\nindependent section, must be on the unmodified terms of this License,\nregadless of who the author of the included sections was.)\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based or reliant on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\nstorage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 4. You may copy and distribute the Program (or a work based on it,\nunder Section 3) in object code or executable form under the terms of\nSections 2 and 3 above provided that you also do one of the following:\n\n a) Accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of Sections\n 2 and 3 above on a medium customarily used for software interchange; or,\n\n b) Accompany it with a written offer, valid for at least three\n years, to give any third party, for a charge no more than your\n cost of physically performing source distribution, a complete\n machine-readable copy of the corresponding source code, to be\n distributed under the terms of Sections 2 and 3 above on a medium\n customarily used for software interchange; or,\n\n c) Accompany it with the information you received as to the offer\n to distribute corresponding source code. (This alternative is\n allowed only for noncommercial distribution and only if you received\n the program in object code or executable form with such an offer,\n in accord with Subsection b) above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 5. You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt\notherwise to copy, modify, sublicense or distribute the Program is\nvoid, and will automatically terminate your rights under this License.\nHowever, parties who have received copies, or rights, from you under\nthis License will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n 6. You are not required to accept this License, since you have not\nsigned it. Nothing else grants you permission to modify or distribute\nthe Program or its derivative works; law prohibits these actions\nif you do not accept this License. Therefore, by modifying or distributing\nthe Program (or any work based on the Program), you indicate your\nacceptance of this License and all its terms and conditions for copying,\ndistributing or modifying the Program or works based on it, to do so.\n\n 7. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n 8. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Program at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\n 9. If the distribution and/or use of the Program are restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n NO WARRANTY\n\n 10. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\nREPAIR OR CORRECTION.\n\n 11. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED ON IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\nOUT OF THE USE OR INABILITY TO USE THE PROGRAM INCLUDING BUT NOT LIMITED\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n END OF TERMS AND CONDITIONS", + "json": "apl-1.1.json", + "yaml": "apl-1.1.yml", + "html": "apl-1.1.html", + "license": "apl-1.1.LICENSE" + }, + { + "license_key": "app-s2p", + "category": "Permissive", + "spdx_license_key": "App-s2p", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "COPYRIGHT and LICENSE\n\n This program is free and open software. You may use, modify,\n distribute, and sell this program (and any modified variants) in any\n way you wish, provided you do not restrict others from doing the same.", + "json": "app-s2p.json", + "yaml": "app-s2p.yml", + "html": "app-s2p.html", + "license": "app-s2p.LICENSE" + }, + { + "license_key": "appfire-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-appfire-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Appfire EULA\nIMPORTANT! BE SURE TO CAREFULLY READ AND UNDERSTAND ALL OF THE RIGHTS AND RESTRICTIONS SET FORTH IN THIS END USER LICENSE AGREEMENT (\u201cEULA\u201d). YOU ARE NOT AUTHORIZED TO USE THIS SOFTWARE UNLESS AND UNTIL YOU ACCEPT THE TERMS OF THIS EULA.\n\nThis EULA is a binding legal agreement between Appfire Technologies, Inc. (hereinafter \u201cLicensor\u201d), a provider of downloadable and cloud-based applications under the Bob Swift Atlassian Add-ons and Wittified Atlassian Add-ons brand names through the Atlassian Marketplace or any other means that interoperate with applicable products manufactured by Atlassian Pty Ltd (\u201cAtlassian\u201d), and you (either an individual or a single legal entity you represent) whose details are provided to Licensor upon purchase (hereinafter \u201cLicensee\u201d or \u201cyou\u201d) for the materials accompanying this EULA, including the accompanying computer software, associated media, printed materials and any \u201conline\u201d or electronic documentation.\n\nBy clicking on the \u201cI agree\u201d (or similar button) that is presented to you at the time of your order, or by installing, copying, downloading or otherwise using the Software, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, you may not install, copy, download or otherwise use the Software. If you are agreeing to this EULA on behalf of a company or other organization, you represent that you have the authority to bind that company or organization to this EULA, and the terms Licensee, \"you\" and \u201cyour\" refer to that company or organization. If you do not have that authority, you may not install, copy, download or otherwise use the Software.\n\nThis is a \u201cPublisher EULA\u201d as referred to in the Atlassian Marketplace Terms of Use, found at https://www.atlassian.com/licensing/marketplace/termsofuse.\n\n1. Scope of the Agreement\n\nA. This EULA governs (a) Licensor\u2019s commercially available downloadable software products sold, or made available at no charge (\u201cSoftware\u201d), (b) Licensor\u2019s Software provided in a hosted or cloud-based environment (\u201cHosted Services\u201d), and (c) any support services provided by Licensor relating to the Software or Hosted Services. Software and Hosted Services, together with related Documentation, are referred to herein as \u201cProducts\u201d.\n\nB. This EULA does not cover the sale or resale of Atlassian-manufactured software, Licensor\u2019s other professional services relating to Atlassian-manufactured software, nor any physical hardware products provided by Licensor.\n\n2. Account Registration\n\nYou may need to register on the Atlassian Marketplace at https://marketplace.atlassian.com in order to place orders or access or receive any Products. Any registration information that you provide must be accurate, current and complete. You must also update your information so that Licensor may send notices, statements and other information to you by email or through your account. You are responsible for all actions taken through your accounts. \n\n3. Orders\n\nYour order through the Atlassian Marketplace or with an authorized Reseller (\u201cOrder\u201d) will specify your authorized scope of use for the Products, which may include: (a) the defined number of installations, the number of specific individuals for whom you have paid the required fees and whom you designate through the applicable Product (\u201cAuthorized Users\u201d), the number of authorized servers, the number of unique data set platforms, and/or other defined resource utilization limitations, (b) storage or capacity (for Hosted Services), (c) numbers of licenses, copies or instances (for Software), or (d) other restrictions or billable units (all of the above, as applicable, the \u201cScope of Use\u201d). The term \u201cOrder\u201d also includes any applicable Product or Support Services renewal, or purchases you make to increase or upgrade your Scope of Use. You may increase the number of Authorized Users permitted to access your instance of the Product by placing a new Order or, in some cases, directly through the Product.\n\n4. Grant of License\n\nThe Products are licensed, not sold, and no ownership right is conveyed to you, irrespective of the use of terms in this EULA such as \u201cpurchase\u201d or \u201csale\u201d.\n\nA. This EULA grants you the following rights:\n\nStandard Use. For other than No-Charge Products, the Licensor grants you a perpetual (subject to termination for breach), worldwide, non-exclusive, non-transferable, non-sub licensable license to install and use the Software in object code only, limited to the Scope of Use as designated in your Order.\n\nHosted Services. The Licensor grants you a monthly (paid in advance) subscription for worldwide, non-exclusive, non-transferable, non-sub licensable use of the Hosted Services, subject to automatic renewal for successive monthly terms unless either Licensor or you notifies the other of non-renewal or Licensor ceases to make a particular Hosted Service available. If you cancel, your subscription will terminate at the end of the then-current billing cycle, but you will not be entitled to any credits or refunds for amounts accrued or paid prior to such termination. You acknowledge that Hosted Services are on-line, subscription-based products, hosted by Licensor and/or Atlassian, and that Licensor and/or Atlassian may make changes to the Hosted Services from time to time.\n\nNo-Charge Products. The Licensor may offer you a time-limited, worldwide, non-exclusive, non-transferable, non-sublicensable limited license for certain Products at no charge, including free accounts, trial use, and access to Beta Versions as defined below (\u201cNo-Charge Products\u201d). Your use of No-Charge Products is subject to any additional terms specified by Licensor and is only permitted for the evaluation period designated by Licensor. After the evaluation period is expired you must abide by the Standard Use rights, or must remove and delete all copies of the Software in your possession. You may not use No-Charge Products for competitive analysis or similar purposes. Licensor may terminate your right to use No-Charge Products at any time and for any reason in its sole discretion, without liability to you. You understand that any pre-release and beta products (\u201cBeta Versions\u201d) are still under development, may be inoperable or incomplete and are likely to contain more errors and bugs than generally available Products. Licensor makes no promises that any Beta Versions will ever be made generally available. In some circumstances, Licensor may charge a fee in order to allow you to access Beta Versions, but the Beta Versions will still remain subject to this paragraph. All information regarding the characteristics, features or performance of Beta Versions constitutes Licensor\u2019s Confidential Information. To the maximum extent permitted by applicable law, Licensor disclaims all obligations or liabilities with respect to No-Charge Products, including any Support Services, warranty, and indemnity obligations.\n\nB. Your license rights under this EULA are non-exclusive, non-transferable and non-sublicensable. You may not sell, transfer or convey the Software to any third party without Licensor\u2019s prior express written consent. Licensor reserves all rights not expressly granted to the Licensee in this EULA.\n\nC. Standard Use licensees are permitted to make one (1) copy of the Software for data protection, archiving and backup purposes only and for no other purpose.\n\nD. You may only install the Software and make the Software available for use on hardware systems owned, leased or controlled by you, or your third party service providers so long as you remain responsible for their compliance with the terms and conditions of this EULA.\n\nE. This EULA applies whether you purchase Products directly from Licensor, through the Atlassian marketplace, through an authorized Reseller or otherwise. If you purchase through a Reseller, your license rights shall be as stated in the Order placed by Reseller for you, and the Reseller is responsible for the accuracy of any such Order. Resellers are not authorized to make any promises or commitments on Licensor\u2019s behalf, and Licensor is not bound by any obligations to you other than what is included in this EULA.\n\n5. Third-Party Software\n\nA. You acknowledge the Products may contain software licensed by Licensor from third parties, including open source software, and embedded in the Products, and that in addition to the obligations of this EULA, additional obligations may apply in relation to any use of the third party software by you which is not in accordance with the use of the Products as permitted under the terms of this EULA. In such circumstances you must consult the relevant third party to acquire any necessary licenses and consents in relation to your use of the third party software.\n\nB. The Software uses, requires and depends on various third party APIs. Licensor disclaims any liability for any failure or limitations of these APIs or services. Atlassian, or any other API provider, may remove the API end points required for the Software to function properly. Licensor disclaims any liability for the consequence of such actions by such third parties.\n\n6. Price and Payment\n\nIf you have not previously paid the license fee for the Product, then you must pay the license fee within the period indicated in the applicable invoice or as otherwise provided in Licensor\u2019s pricing terms as published on the Atlassian Marketplace. Failure to pay any license fees by the due date will result in the immediate termination of the license(s) granted under this EULA.\n\n7. Support Services\n\nA. Licensor may provide you with online support services related to the Products (\u201cSupport Services\u201d), in its discretion and for the sole purpose of addressing technical issues relating to the use of the Products. Support Services also include access to bug fixes, patches, modifications, or enhancements (together, \u201cReleases\u201d) to the Products that Licensor makes generally commercially available during the \u201cSupport Period.\u201d When accepted by you, any such Releases will be considered part of the Products and subject to the terms of this EULA.\n\nB. The Initial Support Period for each Product is for twelve (12) months starting at the time each Product is purchased, and may be renewed for additional twelve (12) month periods (each, a \u201cRenewal Support Period\u201d) at the then-current rate for Support Services. Renewal Support Periods commence upon the expiration of the prior Support Period regardless of when the Product is purchased.\n\nC. Use of Support Services, if any, is governed by Licensor\u2019s policies and programs described in any user manual, in online documentation, and/or other Licensor-provided materials. Any supplemental software code provided to you as a part of Support Services will be considered part of the Products and subject to the terms of this EULA.\n\nD. All deliveries of Software will be electronic. For the avoidance of doubt, you are responsible for the installation of any Software.\n\nE. Licensor encourages feedback from its customers. If you have any feedback regarding your purchase or use of the Products, please provide that feedback to Licensor at: https://bobswift.atlassian.net/wiki/questions for Bob Swift Atlassian Add-on brand Product purchases or at https://wittified.atlassian.net/wiki/questions for Wittified Atlassian Add-on brand Product purchases.\n\n8. Data Security & Privacy\n\nA. Licensor values your privacy and is committed to secure private information from loss, misuse, unauthorized access, disclosure, alteration and destruction. Licensor will not sell or otherwise redistribute to third parties the information Licensor collects from you, as described in this Section. \n\nB. Licensor constantly strives to improve its Products. To do so, Licensor needs to measure, analyze, and aggregate how users interact with the Products, such as usage patterns and characteristics of its user base. Licensor collects and uses analytics data regarding your use of the Products.\n\nC. You agree that Licensor may collect and use technical data and related information, including without limitation, technical information relating to your device, system, and Products, that is gathered periodically to facilitate the provision of software updates, product support, marketing efforts and other services and communications to you related to the Products, including providing you with information about services, features, surveys, newsletters, offers, promotions; providing other news or information about us and our select partners; and sending you technical notices, updates, security alerts, and support and administrative messages. Licensor may use this technical data and related information, as long as it is in a form that does not personally identify you, except to the extent necessary to provide you with support, or communications to improve its products or to provide services or technology to you. Licensor agrees to handle your data in accordance with (i) all applicable laws; and (ii) privacy and security measures reasonably adequate to preserve your data\u2019s confidentiality and security. Licensee may opt out of promotions by sending an email to unsubscribe@appfire.com. Requests to opt out may take thirty (30) calendar days to process.\n\nD. You retain all right, title and interest in and to any data, content, code, video, images or other materials of any type (\u201cYour Data\u201d) that you upload, submit or otherwise transmit to or through the Hosted Services or through Licensor\u2019s online support systems including the Bob Swift Atlassian Add-ons Defect Tracker available at: https://bobswift.atlassian.net, the Wittified Atlassian Add-ons Defect Tracker available at: https://wittified.atlassian.net, the Bob Swift Atlassian Add-ons Community Forum available at: https://bobswift.atlassian.net/wiki/questions, the Wittified Atlassian Add-ons Community Forum available at: https://wittified.atlassian.net/wiki/questions, and any other related platforms used to collect customer feedback or to provide support. Subject to the terms of this EULA, you grant Licensor a non-exclusive, worldwide, royalty-free right to (a) collect, use, copy, store, transmit, modify and create derivative works of Your Data, in each case solely to the extent necessary to provide the applicable Hosted Service to you and (b) for Hosted Services that enable you to share Your Data or interact with other people, to distribute and publicly perform and display Your Data as you (or your Authorized Users) direct or enable through the Hosted Service.\n\nE. Customer order data, if any, is stored encrypted and in access-controlled servers. Application data, if any, is stored on redundant storage nodes to protect data from hardware failures. Your Data is stored in the United State of America.\n\nF. Licensor agrees (i) to handle Your Data in accordance with all applicable laws; and (ii) not share Your Data with third parties except as required by law. You acknowledge and agree that Licensor may disclose personally identifiable information under special circumstances, such as to comply with law.\n\nG. Licensor has implemented privacy and security measures reasonably adequate to preserve Your Data from loss, misuse, unauthorized access, disclosure, alteration and destruction. Licensor uses a self-assessment approach to ensure compliance with this Privacy policy and verifies periodically that the policy is accurate and comprehensive for the information intended to be covered, prominently displayed, completely implemented, and accessible and in conformity with the Privacy Principles. Licensor encourages interested parties to contact us with any concerns using the contact information provided. Licensor will investigate and attempt to resolve any complaints and disputes regarding use and disclosure of private information in accordance with the Privacy Principles.\n\n9. Termination\n\nYou may terminate your license to the Products at any time by destroying all your copies of the Software or ceasing your access to the Hosted Services. Your license to the Products shall automatically terminate if you fail to comply with the terms of this EULA. Upon termination of your license, you are required to remove all Software from your computer systems and destroy any copies of the Software in your possession.\n\n10. Copyright\n\nA. The Products and all copies thereof are protected by copyright and other intellectual property laws and treaties. Licensor or its relevant third parties own the title, copyright, and all other intellectual property rights in the Products and all subsequent copies of the Products.\n\nB. All title and copyrights in and to the Products (including but not limited to any images, icons, text files, pdfs or other static non-code assets contained within the Products), the accompanying printed materials, and any copies of the Products, are owned by Licensor or its suppliers. This EULA does not grant you any rights to use such content. If the Products contain documentation that is provided only in electronic form, you may print one copy of such electronic documentation. Except for any copies of this EULA, you may not copy the printed materials accompanying the Products.\n\nC. Other than as allowed by this EULA, you may not (i) reverse engineer, de-compile, disassemble, alter, duplicate, modify, rent, lease, loan, sublicense, make copies of, create derivative works from, distribute or provide non-Authorized Users with access to the Products in whole or part, (ii) use the Products for the benefit of any third party, (iii) incorporate any Products into a product or service you provide to a third party, (iv) interfere with any license key mechanism in the Products or otherwise circumvent mechanisms in the Products intended to limit your use, (v) remove or obscure any proprietary notices on the Products or any permitted copies of the Products , or (vi) publicly disseminate information regarding the benchmarking performance of the Products.\n\nD. You may not copy or embed elements of the Source Code into other applications, or publish, transmit or communicate the Source Code to other parties other than yourself or the entity you represent.\n\n11. Confidentiality.\n\nYou agree that all code, inventions, know-how, business, technical and financial information disclosed to you by Licensor constitute the confidential property of Licensor (\u201cConfidential Information\u201d). Any intellectual property, the underlying technology, and any performance information relating to the Products shall be deemed Confidential Information without any marking or further designation. Except as expressly authorized herein, you will hold in confidence and not use or disclose any Confidential Information. Your nondisclosure obligation shall not apply to information that you can document: (i) was rightfully in your possession or known to you prior to receipt of the Confidential Information; (ii) is or has become public knowledge through no fault of your own; (iii) is rightfully obtained by you from a third party without breach of any confidentiality obligation; or (iv) is independently developed by you or your employees who had no access to such information. You may also disclose Confidential Information if so required pursuant to a regulation, law or court order (but only to the minimum extent required to comply with such regulation or order and with advance notice to Licensor). You acknowledge that disclosure of Confidential Information would cause substantial harm for which damages alone would not be a sufficient remedy, and therefore that upon any such disclosure by you, Licensor shall be entitled to appropriate equitable relief in addition to whatever other remedies it might have at law. For the avoidance of doubt, this Section shall not operate as a separate warranty with respect to the operation of any Products.\n\n12. License Certifications and Audits\n\nAt Licensor\u2019s request, you agree to provide a signed certification that you are using all Products pursuant to the terms of this EULA, including the Scope of Use. You agree to allow Licensor or its agent, to audit your use of the Products. Licensor will provide you with at least 10 days advance notice prior to the audit, and the audit will be conducted during normal business hours. Licensor will bear all its own out-of-pocket costs for the audit, unless the audit reveals that you have exceeded the Scope of Use. You will provide reasonable assistance, cooperation, and access to relevant information in the course of any audit at your own cost. If you exceed your Scope of Use, Licensor may invoice you for any past or ongoing excessive use, and you will pay the invoice promptly after receipt. This remedy is without prejudice to any other remedies available to Licensor at law or equity or under this EULA. To the extent necessary, Licensor may share audit results with certain of its third party licensors or assign the audit rights specified in this Section to such licensors. \n\n13. Publicity Rights\n\nThe Licensee grants Licensor the right to include the Licensee\u2019s name, company name, logo, and/or likeness that you provide during registration, and any review that Licensee may provide (in full or in part) to Licensor, within Product promotional material and on Licensor\u2019s web site. Licensee can revoke this right at any time by submitting a written request via email to operations@appfire.com, requesting to be excluded from future Product promotional material. Requests made after purchasing may take thirty (30) calendar days to process.\n\n14. Export Restrictions\n\nYou may not use or otherwise export or re-export any Product(s) except as authorized by United States law and the laws of the jurisdiction in which the Product(s) was obtained. In particular, but without limitation, the Product(s) may not be exported or re-exported (a) into any U.S. embargoed countries or (b) to anyone on the U.S Treasury Department\u2019s list of Specially Designated Nationals or the U.S. Department of Commerce Denied Person\u2019s List or Entity List. By using the Product(s), you represent and warrant that you are not located in any such country or on any such list.\n\n15. Disclaimer of Warranties\n\nSave as provided in Sections 17 and 18 below, the Products are provided on an \u201cas is\u201d and \u201cas available\u201d basis without warranty, express or implied, of any kind or nature, including, but not limited to, any warranties of performance, merchantability, fitness for a particular purpose, or title. You may have other statutory rights, but the duration of statutorily required warranties, if any, shall be limited to the shortest period permitted by law. Licensor shall not be liable for delays, interruptions, service failures and other problems inherent in use of the internet and electronic communications or other systems outside the reasonable control of Licensor. To the maximum extent permitted by law, Licensor does not make any representation, warranty or guarantee that: (a) the use of the Products will be secure, timely, uninterrupted or error-free; (b) the Products will operate in combination with any other hardware, software, system, or data; (c) the Products will meet your requirements or expectations; (d) any stored data will be accurate or reliable or that any stored data will not be lost or corrupted; (e) errors or defects will be corrected; or (f) the Products (or any server(s) that make a Hosted Service available) are free of viruses or other harmful components.\n\n16. Return Policy\n\nLicensor\u2019s customary business practice is to allow customers to return Software within 30 days of payment for any reason or no reason and to receive a refund of the amount paid for the returned Software. A return means that Licensor will disable the license key that allowed the Software to operate. Licensor will not accept returns after the 30-day return period. Returns are not available for Hosted Services.\n\n17. Infringement; Indemnification\n\nA. If you purchase a Standard Use license, and if the Software becomes, or in the opinion of Licensor may become, the subject of a claim of infringement of any third party right, Licensor may, at its option and in its discretion: (i) procure for Licensee the right to use the Software free of any liability; (ii) replace or modify the Software to make it non-infringing; or (iii) refund any license fees paid by you for the current Support Period for that Software.\n\nB. Licensee will defend or settle, at Licensee\u2019s expense, any action brought against Licensor based upon the claim that any modifications to the Software or combination of the Software with other, third-party, products infringes or violates any third party right, and only to the extent that such modification or combination contributes to such claim; provided, however, that: (i) Licensor shall notify Licensee promptly in writing of any such claim; (ii) Licensor shall not enter into any settlement or compromise any such claim without Licensee\u2019s prior written consent; (iii) Licensee shall have sole control of any such action and settlement negotiations; and (iv) Licensor shall provide Licensee with information and reasonable assistance, at Licensee\u2019s request and expense, necessary to settle or defend such claim. Licensee agrees to pay all damages and costs finally awarded against Licensor attributable to such claim.\n\nC. Licensee agrees to indemnify and hold Licensor, and its subsidiaries, affiliates, officers, agents, and employees, harmless from any claims by third parties, and any related damages, losses or costs (including reasonable attorney fees and costs), arising out of Licensee\u2019s use of the Software, or Licensee\u2019s violation of the EULA or any rights of a third party.\n\nD. Licensor assumes no liability hereunder for, and shall have no obligation to defend Licensee or to pay costs, damages or attorney\u2019s fees for, any claim based upon any modifications to any of the Software not approved by Licensor or combination of any of the Software with products not approved by Licensor, and only to the extent that such modification or combination contributes to such claim.\n\n18. Limitation of Liability\n\nA. Except for the indemnification obligations of Section 17 or breach of Sections 6 or 10, neither party will be liable to any person, with respect to any loss, damage, cost, expense or other claim, for any consequential (such as loss of income; loss of business profits or contracts; business interruption; loss of the use of money or anticipated savings; loss of information; loss of opportunity, goodwill or reputation; loss of, damage to or corruption of data), indirect, special, punitive or other damages in relation to the Products including, without limitation: (a) any use or reliance on a Product by the person (including the form and content of errors in and/or omissions from any information contained in the Products); (b) any delay, interruption or other failure in the provision of a Product; or (c) any change in the form or content of a Product. All the foregoing limitations shall apply even if Licensor has been informed of the possibility of such damages.\n\nB. In no event will Licensor\u2019s aggregate liability under any claims arising out of this EULA exceed the fees paid by you for the current Support Period, except where not permitted by applicable law, in which case Licensor\u2019s liability shall be limited to the maximum extent allowed by such applicable law.\n\nC. Except for each party\u2019s indemnification obligations or breach of Sections 6 or 10, neither party will be liable for lost profits or for special, indirect, incidental or consequential damages, regardless of the form of action, even if such party is advised of the possibility of such damages. The foregoing liability limitations shall apply to the maximum extent allowed by applicable law. To the extent the foregoing liability limitations or the warranty disclaimers of Section 15 are not allowed by applicable law, then the liability of Licensor, and the remedy of Licensee, shall be limited to: (i) the re-supply of any defective Product; or (ii) the refund of the license fees paid by you for the current Support Period for such defective Product.\n\nD. These limitations will apply to you even if the remedies fail of their essential purpose.\n\n19. Dispute Resolution\n\nThe parties agree that this EULA will be governed by and construed and interpreted in accordance with the laws of the Commonwealth of Massachusetts in the United States. The parties irrevocably and unconditionally submit to the non-exclusive jurisdiction of the federal and state courts of Middlesex County, Massachusetts. The terms of the United Nations Convention on Contracts for the Sale of Goods do not apply to this EULA.\n\n20. Severability\n\nIf any term of this EULA is found to be unenforceable or contrary to law, it will be modified to the least extent necessary to make it enforceable, and the remaining portions of this EULA will remain in full force and effect.\n\n21. No Waiver\n\nNo waiver of any right under this EULA will be deemed effective unless contained in writing signed by a duly authorized representative of the party against whom the waiver is to be asserted, and no waiver of any past or present right arising from any breach or failure to perform will be deemed to be a waiver of any future rights arising out of this EULA.\n\n22. Assignment\n\nLicensee may assign this EULA to succeeding parties in the case of a merger, acquisition or change of control; provided, however, that in each case, (a) Licensor is notified in writing within ninety (90) days of such assignment, (b) the assignee agrees to be bound by the terms and conditions contained in this EULA and (c) upon such assignment the assignee makes no further use of the Product(s) licensed under this EULA. Licensor may assign its rights and obligation under this EULA without consent of Licensee. Any permitted assignee shall be bound by the terms and conditions of this EULA.\n\n23. U.S. Government Users\n\nIf you are a U.S. Government end user, Licensor is providing the Products to you as a \"Commercial Item\" as that term is defined in the U.S. Code of Federal Regulations (see 48 C.F.R. \u00a7 2.101), and the rights granted to you by Licensor for the Products are the same as the rights Licensor customarily grant to others under this EULA.\n\n24. Revisions to EULA\n\nLicensor may update, modify or amend (together, \u201cRevise\u201d) this EULA from time to time, including any referenced policies and other documents. If a revision meaningfully reduces your rights, Licensor will use reasonable efforts to notify you by, for example, sending an email to the billing or technical contact you designate in the applicable Order, posting on our blog, website, on the Atlassian Marketplace website (https://marketplace.atlassian.com) or within the Licensor\u2019s then currently published product documentation wiki. If Licensor revises this EULA during your term of your license or subscription, the revised version will be effective upon your next renewal of a License Term, Support Services, Hosted Services or Subscription Term, as applicable. In this case, if you object to any revisions, as your exclusive remedy, you may choose not to renew, including cancelling any terms set to auto-renew. With respect to No-Charge Products, accepting the revised EULA is required for you to continue using the No-Charge Products. You may be required to click through the updated EULA to show your acceptance. If you do not agree to the revised EULA after it becomes effective, you will no longer have a right to use No-Charge Products. For the avoidance of doubt, any Order is subject to the version of the EULA in effect at the time of the Order. You may not revise this EULA without Licensor\u2019s written agreement (which may be withheld in Licensor\u2019s complete discretion).\n\n25. Entire Agreement\n\nThis EULA constitutes the entire agreement between the parties with respect to its subject matter, and supersedes all prior agreements, proposals, negotiations, representations or communications relating to the subject matter. Both parties acknowledge that they have not been induced to enter into this EULA by any representations or promises not specifically stated herein. This EULA may not be modified or amended by you without Licensor\u2019s written agreement (which may be withheld in Licensor\u2019s complete discretion).\n\nIn the event of a conflict between the terms of this EULA and the terms of any open source licenses applicable to the Software, for the specific terms in conflict the terms of the open source licenses shall control with regard to the Software, or part-thereof. \n\n26. Contact Information\n\nFor communications concerning this EULA, please write to legal@appfire.com.\n\nLast updated: October 6, 2016", + "json": "appfire-eula.json", + "yaml": "appfire-eula.yml", + "html": "appfire-eula.html", + "license": "appfire-eula.LICENSE" + }, + { + "license_key": "apple-attribution", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-apple-attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Warranty Information\nEven though Apple has reviewed this software, Apple makes no warranty\nor representation, either express or implied, with respect to this\nsoftware, its quality, accuracy, merchantability, or fitness for a\nparticular purpose. As a result, this software is provided \"as is,\"\nand you, its user, are assuming the entire risk as to its quality\nand accuracy.\n\nThis code may be used and freely distributed as long as it includes\nthis copyright notice and the warranty information.", + "json": "apple-attribution.json", + "yaml": "apple-attribution.yml", + "html": "apple-attribution.html", + "license": "apple-attribution.LICENSE" + }, + { + "license_key": "apple-attribution-1997", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-apple-attribution-1997", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software and\nits documentation for any purpose and without fee is hereby granted,\nprovided that the above copyright notice appears in all copies and\nthat both the copyright notice and this permission notice appear in\nsupporting documentation.\n\nAPPLE COMPUTER DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE\nINCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\nFOR A PARTICULAR PURPOSE.\n\nIN NO EVENT SHALL APPLE COMPUTER BE LIABLE FOR ANY SPECIAL, INDIRECT, OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN ACTION OF CONTRACT,\nNEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION\nWITH THE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "apple-attribution-1997.json", + "yaml": "apple-attribution-1997.yml", + "html": "apple-attribution-1997.html", + "license": "apple-attribution-1997.LICENSE" + }, + { + "license_key": "apple-excl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-apple-excl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Inc.\n(\"Apple\") in consideration of your agreement to the following terms, and your\nuse, installation, modification or redistribution of this Apple software\nconstitutes acceptance of these terms. If you do not agree with these terms,\nplease do not use, install, modify or redistribute this Apple software.\n\nIn consideration of your agreement to abide by the following terms, and subject\nto these terms, Apple grants you a personal, non-exclusive license, under\nApple's copyrights in this original Apple software (the \"Apple Software\"), to\nuse, reproduce, modify and redistribute the Apple Software, with or without\nmodifications, in source and/or binary forms; provided that if you redistribute\nthe Apple Software in its entirety and without modifications, you must retain\nthis notice and the following text and disclaimers in all such redistributions\nof the Apple Software.\n\nNeither the name, trademarks, service marks or logos of Apple Inc. may be used\nto endorse or promote products derived from the Apple Software without specific\nprior written permission from Apple. Except as expressly stated in this notice,\nno other rights or licenses, express or implied, are granted by Apple herein,\nincluding but not limited to any patent rights that may be infringed by your\nderivative works or by other works in which the Apple Software may be\nincorporated.\n\nThe Apple Software is provided by Apple on an \"AS IS\" basis. APPLE MAKES NO\nWARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED\nWARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN\nCOMBINATION WITH YOUR PRODUCTS.\n\nIN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\nGOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR\nDISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF\nCONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF\nAPPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "apple-excl.json", + "yaml": "apple-excl.yml", + "html": "apple-excl.html", + "license": "apple-excl.LICENSE" + }, + { + "license_key": "apple-mfi-license", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-apple-mfi-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Disclaimer: IMPORTANT: This Apple software is supplied to you, by Apple Inc. (\"Apple\"), in your\ncapacity as a current, and in good standing, Licensee in the MFi Licensing Program. Use of this\nApple software is governed by and subject to the terms and conditions of your MFi License,\nincluding, but not limited to, the restrictions specified in the provision entitled \u201dPublic\nSoftware\u201d, and is further subject to your agreement to the following additional terms, and your\nagreement that the use, installation, modification or redistribution of this Apple software\nconstitutes acceptance of these additional terms. If you do not agree with these additional terms,\nplease do not use, install, modify or redistribute this Apple software.\n\nSubject to all of these terms and in consideration of your agreement to abide by them, Apple grants\nyou, for as long as you are a current and in good-standing MFi Licensee, a personal, non-exclusive\nlicense, under Apple's copyrights in this original Apple software (the \"Apple Software\"), to use,\nreproduce, and modify the Apple Software in source form, and to use, reproduce, modify, and\nredistribute the Apple Software, with or without modifications, in binary form. While you may not\nredistribute the Apple Software in source form, should you redistribute the Apple Software in binary\nform, you must retain this notice and the following text and disclaimers in all such redistributions\nof the Apple Software. Neither the name, trademarks, service marks, or logos of Apple Inc. may be\nused to endorse or promote products derived from the Apple Software without specific prior written\npermission from Apple. Except as expressly stated in this notice, no other rights or licenses,\nexpress or implied, are granted by Apple herein, including but not limited to any patent rights that\nmay be infringed by your derivative works or by other works in which the Apple Software may be\nincorporated.\n\nUnless you explicitly state otherwise, if you provide any ideas, suggestions, recommendations, bug\nfixes or enhancements to Apple in connection with this software (\u201cFeedback\u201d), you hereby grant to\nApple a non-exclusive, fully paid-up, perpetual, irrevocable, worldwide license to make, use,\nreproduce, incorporate, modify, display, perform, sell, make or have made derivative works of,\ndistribute (directly or indirectly) and sublicense, such Feedback in connection with Apple products\nand services. Providing this Feedback is voluntary, but if you do provide Feedback to Apple, you\nacknowledge and agree that Apple may exercise the license granted above without the payment of\nroyalties or further consideration to Participant.\n\nThe Apple Software is provided by Apple on an \"AS IS\" basis. APPLE MAKES NO WARRANTIES, EXPRESS OR\nIMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY\nAND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR\nIN COMBINATION WITH YOUR PRODUCTS.\n\nIN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION\nAND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, TORT\n(INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.", + "json": "apple-mfi-license.json", + "yaml": "apple-mfi-license.yml", + "html": "apple-mfi-license.html", + "license": "apple-mfi-license.LICENSE" + }, + { + "license_key": "apple-mpeg-4", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-apple-mpeg-4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software module was originally developed by Apple Computer, Inc. in the\ncourse of development of MPEG-4. This software module is an implementation of\na part of one or more MPEG-4 tools as specified by MPEG-4. ISO/IEC gives users\nof MPEG-4 free license to this software module or modifications thereof for\nuse in hardware or software products claiming conformance to MPEG-4. Those\nintending to use this software module in hardware or software products are\nadvised that its use may infringe existing patents. The original developer of\nthis software module and his/her company, the subsequent editors and their\ncompanies, and ISO/IEC have no liability for use of this software module or\nmodifications thereof in an implementation. Copyright is not released for non\nMPEG-4 conforming products. Apple Computer, Inc. retains full right to use the\ncode for its own purpose, assign or donate the code to a third party and to\ninhibit third parties from using the code for non MPEG-4 conforming products.\nThis copyright notice must be included in all copies or\tderivative works.\nCopyright (c) 1999.", + "json": "apple-mpeg-4.json", + "yaml": "apple-mpeg-4.yml", + "html": "apple-mpeg-4.html", + "license": "apple-mpeg-4.LICENSE" + }, + { + "license_key": "apple-runtime-library-exception", + "category": "Permissive", + "spdx_license_key": "Swift-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Runtime Library Exception to the Apache 2.0 License\n\nAs an exception, if you use this Software to compile your source code and\nportions of this Software are embedded into the binary product as a result,\nyou may redistribute such product without providing attribution as would\notherwise be required by Sections 4(a), 4(b) and 4(d) of the License.", + "json": "apple-runtime-library-exception.json", + "yaml": "apple-runtime-library-exception.yml", + "html": "apple-runtime-library-exception.html", + "license": "apple-runtime-library-exception.LICENSE" + }, + { + "license_key": "apple-sscl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-apple-sscl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Apple Sample Source Code License\n\nYou may incorporate this Apple sample source code into your program(s) without restriction. This Apple sample source code has been provided \"AS IS\" and the responsibility for its operation is yours. You are not permitted to redistribute this Apple sample source code as \"Apple sample source code\" after having made changes. If you're going to re-distribute the source, we require that you make it clear in the source that the code was descended from Apple sample source code, but that you've made changes.", + "json": "apple-sscl.json", + "yaml": "apple-sscl.yml", + "html": "apple-sscl.html", + "license": "apple-sscl.LICENSE" + }, + { + "license_key": "appsflyer-framework", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-appsflyer-framework", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Terms of Use\nAppsFlyer Ltd. (\u201cAppsFlyer\u201d or \u201cus\u201d, \u201cour\u201d, \u201cwe\u201d) provides a software development kit which allows the tracking of mobile application use, installations and downloads (the \u201cService(s)\u201d). These Terms of use (this \u201cAgreement\u201d) govern your access and use of the Services, and any code provided by AppsFlyer. \u201cYou\u201d/\u201dCompany\u201d means any third party that uses the Service.\n\nPlease read this Agreement carefully. You must accept this Agreement prior to using the Service or any code provided by AppsFlyer. By downloading or installing the AppsFlyer code or using the Service, you signify your assent to this Agreement. Changes may be made to this Agreement from time to time. We will make reasonable commercial efforts to notify you of any material updates to this Agreement. Notwithstanding the foregoing, your continued use of the Service will be deemed acceptance to amended or updated Terms. As such, you should check frequently to see if we have updated this Agreement. If you do not agree to any terms or conditions of this Agreement, please do not use the Service.\n\n1. Services. Subject to the terms and conditions hereof, during the Term (as defined below) AppsFlyer shall provide Company with the Services on a non-exclusive basis solely for Company\u2019s own internal uses and, for this purpose, Company shall integrate the code provided by AppsFlyer, including AppsFlyer\u2019s SDK, tracking links and APIs (collectively, the \u201cCode\u201d), into Company\u2019s own proprietary mobile application (Company\u2019s \u201cApplication\u201d).\n\n2. Registration. In order to use the Services, Company will be required to register with AppsFlyer and open an account. Company must provide all information necessary for the registration process. Company represents and warrants that all such information shall be accurate and complete. Company shall keep such information up-to-date. Company shall immediately notify AppsFlyer if there is any change in such information or security breach of the account.\n\n3. Restrictions.\n\n3.1. Except as set forth expressly herein or as permitted by the Services, Company shall not, and shall not permit any third party, to (a) reverse engineer or attempt to find the underlying code of the Services; (b) modify the Services, or insert any code or product, or in any other way manipulate the Services in any way; (c) modify the Code in any way without AppsFlyer\u2019s prior written consent; (d) sublicense, sell, or distribute the Code or bypass any security measure of AppsFlyer with respect to the Services; (e) distribute the Code on a stand-alone basis; or (f) use the Services except for Company\u2019s own internal purposes.\n\n3.2. To the extent any of the restrictions set forth above are not enforceable under applicable law, Company shall inform AppsFlyer in writing prior to engaging in any of the applicable activities.\n\n4. Warranties.\n\n4.1. Mutual Warranties. Each party represents and warrants that (a) it is duly organized under applicable law and has sufficient authority to enter into this Agreement and that, (b) the execution and performance under this Agreement does not conflict with any contractual obligations such party has to any third party.\n\n4.2. AppsFlyer Warranties. AppsFlyer represents and warrants that the Services (a) do not, to the best of its knowledge, infringe the intellectual property rights of any third party, (b) do not contain any defamatory, libelous, obscene or otherwise offensive material, (c) comply with all applicable law and regulations (provided, that with respect to data provided by Company to AppsFlyer, AppsFlyer\u2019s compliance with applicable law is subject to Company\u2019s full compliance with applicable law with respect to such data, including its transfer to, and processing by, AppsFlyer), (d) do not collect, use or transfer the data of end users except pursuant to the terms of this Agreement or for the provision of the Services, and (e) do not to the best of its knowledge contain any worms, viruses, spyware, adware or other malicious or intrusive software.\n\n4.3. Company Warranties. Company represents and warrants that its Application and Data (a) do not, to the best of its knowledge, infringe the intellectual property rights of any third party, (b) do not contain any defamatory, libelous, obscene or otherwise offensive material, (c) comply with all applicable law and regulations, including applicable data protection law, (d) do not collect, use or transfer the data of end users in any manner not clearly and accurately disclosed pursuant to a privacy policy that complies with applicable law and regulations, and (e) do not contain any worms, viruses, spyware, adware or other malicious or intrusive software and (f) provides to its users a clear description of its use of the data, including its transfer to, and processing by, AppsFlyer.\n\n5. Intellectual Property. Company shall have all right, title and interest in its Application. AppsFlyer shall have all right, title and interest in the Code and the Services, and all software that provides the Services. If Company provides AppsFlyer with any feedback regarding the Code and/or the Services, AppsFlyer may use all such feedback without restriction. Nothing herein shall be interpreted to provide Company any rights in the Code or the Services except the limited right to use the Code and receive the Service as set forth herein.\n\n6. Payment. AppsFlyer offers several pricing plans, and Company must choose a pricing plan prior to downloading and using the Services. If required by law, Company must add applicable VAT to the amounts payable under such pricing plan. Company shall make payment to AppsFlyer without deduction for and free and clear of any taxes and government charges. Amounts are due and payable within 10 days of AppsFlyer\u2019s issuance of the applicable invoice. Late payments shall bear interest at the rate of 12% per annum. If Company pays using a third party payment processor or credit card, AppsFlyer accepts no responsibility or liability for the actions, omissions or privacy policies of the third party payment processor.\n\n7. Data, Privacy, Retention and Restricted Data.\n\n7.1. The Services enable the Company to collect and track data concerning the characteristics and activities of Application end users as long as the Code is installed (\u201cData\u201d). Company owns, and retains all right, title and interest in Data. Company may modify the categories of Data collected by the Service through configuration of the Services. Accordingly, to the extent the Services are configured as such, Data may contain personally-identifiable information. AppsFlyer shall not transfer Data to third parties except as set forth in this Agreement or as directed by Company. Company represents and warrants that Company is permitted to collect, use and transfer Data through the Services.\n\n7.2. Any personally identifiable information or Personal Data, as such term is defined under the EU General Data Protection Regulation 2016/679 (\u201cGDPR\u201d and \u201cPersonal Data\u201d respectively) provided to AppsFlyer on Company\u2019s behalf, if any, and the processing thereof, shall be governed under the terms and conditions set forth in the AppsFlyer Data Processing Agreement (\u201cDPA\u201d). A current version of the DPA executed by AppsFlyer is available at https://www.appsflyer.com/gdpr/dpa.pdf, and shall become effective as of May 25 2018. AppsFlyer shall provide prior notification to Company in writing upon any material change to the DPA. The DPA is an integral part of this Agreement. Unless otherwise explicitly agreed in writing by the parties, it is agreed and acknowledged that with respect to any personally-identifiable information and Personal Data included in the Data, Company shall be considered as the Controller and AppsFlyer shall be considered as the Processor (as such terms are defined under the GDPR and the DPA).\n\n7.3. AppsFlyer may use aggregated anonymized data, from time to time, for analytics, improvement of the Services and internal purposes (\u201cAggregated Data\u201d). Aggregated Data may include data derived from the Company\u2019s Data, provided that Aggregated Data does not contain data solely derived from Company\u2019s Data and does not identify or trace to Company or any of Company\u2019s end users.\n\n7.4. AppsFlyer publishes a privacy policy, as required under applicable law, which describes AppsFlyer\u2019s collection and use of data. A current copy of AppsFlyer\u2019s privacy policy is available at https://www.appsflyer.com/privacy-policy (\u201cPrivacy Policy\u201d). AppsFlyer shall provide prior notification to Company in writing upon any material change to the privacy policy.\n\n7.5. AppsFlyer and its agents may process Data outside of the jurisdiction of Company.\n\n7.6. AppsFlyer\u2019 is required by certain third parties (such as advertising networks) to delete data they provide after a specified period of time. As such, AppsFlyer may delete Data provided by such third parties in accordance with its standard data retention policies.\n\n7.7. Company may only provide to AppsFlyer, or otherwise have AppsFlyer (or anyone on its behalf) process, such Data types and parameters which are explicitly permitted under AppsFlyer\u2019s Privacy Policy (\u201cPermitted Controller Personal Data Types and Parameters\u201d, as also defined under the DPA). Solely Company (and not AppsFlyer) shall be liable for any data which is provided or otherwise made available to AppsFlyer or anyone on its behalf in excess of the Permitted Controller Personal Data Types and Parameters (\u201cExcess Data\u201d). AppsFlyer\u2019s obligations under the Agreement or the DPA shall not apply to any such Excess Data.\n\n7.8. Without derogating from any of the obligations of Company hereunder, Company shall not provide to AppsFlyer any data regarding children, or any health, financial, or insurance data or other data subject to specific regulatory or statutory protection regimes, except as may otherwise be expressly agreed in writing between the parties and in accordance with applicable law.\n\n8. Confidentiality.\n\n8.1. In the context of the relationship under this Agreement, either party (a \u201cDisclosing Party\u201d) may disclose to the other party (a \u201cReceiving Party\u201d) certain confidential information regarding its technology and business (\u201cConfidential Information\u201d). AppsFlyer\u2019s Confidential Information includes, among others, the terms and pricing of this Agreement.\n\n8.2. Subject to the terms and conditions of this Agreement, Receiving Party agrees to keep confidential and not disclose or use any Confidential Information except to support its use or provision of the Services. Confidential Information shall not include information that Receiving Party can show (a) was already lawfully known to or independently developed by Receiving Party without access to or use of Confidential Information, (b) was received by Receiving Party from any third party without restrictions, (c) is publicly and generally available, free of confidentiality restrictions; or (d) is required to be disclosed by law, regulation or is requested in the context of a law enforcement investigation, provided that Receiving Party provides Disclosing Party with prompt notice of such requirement and cooperates in order to minimize such requirement. Receiving Party shall restrict disclosure of Confidential Information to those of its employees and contractors with a reasonable need to know such information and which are bound by written confidentiality obligations no less restrictive than those set out herein. Company will not disclose any information regarding the results of any testing or evaluation of the Services to any third party without AppsFlyer\u2019s prior written consent.\n\n8.3. The non-disclosure and non-use obligations set forth in this Section 8 shall survive the termination or expiration of this Agreement for a period of 5 years.\n\n9. Analytics. The Services include the provision of certain reports and analytics regarding the Data (\u201cAnalytics\u201d). AppsFlyer makes no warranty that the Analytics provided shall be useful to Company\u2019s business. Company is solely responsible for any actions Company may take based on the Analytics.\n\n10. Support. Company may contact AppsFlyer with regard to support for the Services by sending an email to support@appsflyer.com. AppsFlyer shall provide up to 5 hours of support each month at no additional charge.\n\n11. Service Levels. AppsFlyer shall provide Services in accordance with the service commitments in Appendix B.\n\n12. Indemnification.\n\n12.1. AppsFlyer Indemnification.\n\n12.1.1. AppsFlyer shall defend, indemnify and hold harmless Company (and its affiliates, officers, directors and employees) from and against any and all damages, costs, losses, liabilities or expenses (including court costs and reasonable attorneys\u2019 legal fees) which Company may suffer or incur in connection with any actual claim, demand, action or other proceeding by any third party arising from: (a) any breach of AppsFlyer\u2019s obligations, representations or warranties herein; or (b) a claim that the Code and/or Services infringe the intellectual property rights of a third party. This Section 12.1 sets forth AppsFlyer\u2019s sole obligations and Company\u2019s sole remedies for any claim that the Code and/or Services infringe the intellectual property rights of a third party.\n\n12.1.2. Notwithstanding the foregoing, AppsFlyer shall have no responsibility or liability for any claim to the extent resulting from or arising out of (a) the use of the Code or Services not in compliance with this Agreement or applicable law, (b) the combination of the Code or Services with any code or services not provided by AppsFlyer, (c) the modification of any Code or Services by any party other than AppsFlyer or (d) the use of any Code that is not the most up-to-date Code.\n\n12.1.3. If the Services shall be the subject of an infringement claim, or AppsFlyer reasonably believes that the Services shall be the subject of an infringement claim, AppsFlyer may terminate this Agreement with written notice if modification of the Services to be non-infringing is not reasonably practical.\n\n12.2. Company Indemnification. Company shall defend and indemnify AppsFlyer (and its affiliates, officers, directors and employees) from and against any and all damages, costs, losses, liabilities or expenses (including court costs and attorneys\u2019 fees) which AppsFlyer may suffer or incur in connection with any actual claim, demand, action or other proceeding by any third party arising from: (a) any breach of Company\u2019s obligations, representations or warranties herein; or (b) any use or distribution of the Company\u2019s Application in violation of this Agreement or applicable law or regulations.\n\n12.3. Procedure. The obligations of either party to provide indemnification under this Agreement will be contingent upon the indemnified party (i) providing the indemnifying party with prompt written notice of any claim for which indemnification is sought (provided that the indemnified party\u2019s failure to notify the indemnifying party will not diminish the indemnifying party\u2019s obligations under this Section 12 except to the extent that the indemnifying party is materially prejudiced as a result of such failure), (ii) cooperating fully with the indemnifying party (at the indemnifying party\u2019s expense), and (iii) allowing the indemnifying party to control the defense and settlement of such claim, provided that no settlement may be entered into without the consent of the indemnified party if such settlement would require any action on the part of the indemnified party other than to cease using any allegedly infringing or illegal content or services. Subject to the foregoing, an indemnified party will at all times have the option to participate in any matter or litigation through counsel of its own selection at its own expense.\n\n13. Disclaimer of Warranties. EXCEPT AS EXPRESSLY PROVIDED HEREIN, COMPANY ACCEPTS THE CODE AND SERVICES \u201cAS IS\u201d AND ACKNOWLEDGES THAT APPSFLYER MAKES NO OTHER WARRANTY AND DISCLAIMS ALL IMPLIED AND STATUTORY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT.\n\n14. Limitation of Liability.\n\n14.1. IN NO EVENT SHALL APPSFLYER, ITS DIRECTORS, OFFICERS, AFFILIATES OR AGENTS BE LIABLE FOR ANY CONSEQUENTIAL, INDIRECT, SPECIAL OR PUNITIVE DAMAGES, ARISING OUT OF OR RELATING TO THE SERVICES OR THE ARRANGEMENTS CONTEMPLATED HEREIN.\n\n14.2. EXCEPT FOR INTENTIONAL MISCONDUCT, GROSS NEGLIGENCE, BREACH OF CONFIDENTIALITY, DATA OR PRIVACY OBLIGATIONS AND APPSFLYER\u2019S INDEMNIFICATION OBLIGATIONS FOR INTELLECTUAL PROPERTY INFRINGEMENT (THE \u201cCARVE-OUT CLAIMS\u201d), APPSFLYER\u2019S ENTIRE LIABILITY FOR THE PROVISION OF THE SERVICES OR UNDER ANY PROVISION OF THIS AGREEMENT SHALL NOT EXCEED THE AMOUNT OF PAYMENT RECEIVED BY APPSFLYER FROM COMPANY IN THE 12 MONTHS PRECEDING THE APPLICABLE CLAIM, IN THE AGGREGATE. WITH RESPECT TO THE CARVE-OUT CLAIMS, APPSFLYER\u2019S ENTIRE LIABILITY FOR THE PROVISION OF THE SERVICES OR UNDER ANY PROVISION OF THIS AGREEMENT SHALL NOT EXCEED TWO (2) TIMES THE AMOUNT OF PAYMENT RECEIVED BY APPSFLYER FROM COMPANY IN THE TWELVE (12) MONTHS PRECEDING THE APPLICABLE CLAIM, IN THE AGGREGATE.\n\n15. Term and Termination.\n\n15.1. The term of this Agreement shall commence as of the day you accept this Agreement or, if earlier, the date that you integrate the Code into an Application and shall continue in effect for a period of twelve (12) months (the \u201cInitial Term\u201d); provided that if Company selects the \u201cBasic Pay-Per-Use\u201d package, as shown on AppsFlyer\u2019s website, this Agreement shall be in effect on a month-to-month basis. Following the Initial Term, this Agreement shall automatically renew for subsequent terms of twelve (12) months each (each a \u201cRenewal Term\u201d and together with the Initial Term, the \u201cTerm\u201d), unless one of the parties notifies the other party of its intention not to renew the Agreement at least 45 days prior to the commencement of any Renewal Term.\n\n15.2. Either party may terminate this Agreement with written notice if it has reason to believe that the other Party is in material breach of this Agreement, and such breach is not cured within 30 days from the receipt of written notice of such breach. In addition, either party shall have the right to terminate this Agreement upon 30 days\u2019 written notice to the other party pursuant to section 5.3 of the DPA.\n\n15.3. This agreement is based on a reasonable and fair use of the Services. Notwithstanding anything to the contrary herein, any use that is not aligned with such fair use may be overcharged or terminated immediately by AppsFlyer.\n\n15.4. Upon any termination or expiration of this Agreement, AppsFlyer will cease providing the Services. In the event of any termination (a) Company will not be entitled to any refunds of any nonrefundable fees, (b) any outstanding balance for Services rendered through the date of termination will be immediately due and payable in full, and (c) Company\u2019s historical data will be available for download through AppsFlyer\u2019s standard user interface for a period of 30 days. Any obligations of the Parties that by their nature are intended to survive the termination or expiration of this Agreement, including the obligations of the Parties in Sections 3 \u2013 9 and 12 \u2013 15 of this Agreement, shall survive any termination thereof.\n\n16. Publicity. During the Term, AppsFlyer may refer to Company as a customer of AppsFlyer, including by displaying Company\u2019s name and logo on AppsFlyer\u2019s website and other marketing materials.\n\n17. Miscellaneous.\n\n17.1. This Agreement represents the entire agreement between the parties regarding the subject matter hereof and supersedes any and all other agreements between the parties, whether written or oral, regarding the subject matter hereof. For clarity, the provisions of this Agreement supersede any earlier non-disclosure or confidentiality agreements between the parties. Except as expressly set forth herein, this Agreement may not be modified or amended except in a writing executed by both parties.\n\n17.2. All waivers must be in writing. A waiver of any default hereunder or of any of the terms and conditions of this Agreement shall not be deemed to be a continuing waiver or a waiver of any other default or of any other term or condition, but shall apply solely to the instance to which such waiver is directed. AppsFlyer may provide Company with notices required hereunder by contacting Company at any email address Company provided, including in its registration information.\n\n17.3. Neither Party may assign any of its rights and obligations under this Agreement without the prior written consent of the other Party, such consent not to be required in the event of an assignment by one of the Parties to a purchaser of all or substantially all of the assignor\u2019s assets or share capital. The assignor shall provide the other Party with written notice of the assignment. Assignment in violation of the foregoing shall be void.\n\n17.4. If any part of this Agreement shall be invalid or unenforceable, such part shall be interpreted to give the maximum force possible to such terms as possible under applicable law, and such invalidity or unenforceability shall not affect the validity or enforceability of any other part or provision of this Agreement which shall remain in full force and effect.\n17.5. This Agreement shall be governed by the laws of the State of New York, and the competent courts in the city of New York shall have exclusive jurisdiction to hear any disputes arising hereunder.\n\nAppendix A: Fees and Services\n\n[PACKAGE OF SERVICES TO BE CHOSEN BY COMPANY]\n\nAppendix B: Service Levels\n\nAppsFlyer service commitments do not include downtime to extent resulting from: previously scheduled maintenance and events beyond AppsFlyer\u2019s reasonable control, such as any down time (a) caused by outages to any public Internet backbones, networks or servers, (b) caused by any failures of Company\u2019s Application, equipment, systems or local access services, or (c) strikes, riots, insurrection, fires, floods, explosions, war, governmental action, labor conditions, earthquakes or natural disasters.", + "json": "appsflyer-framework.json", + "yaml": "appsflyer-framework.yml", + "html": "appsflyer-framework.html", + "license": "appsflyer-framework.LICENSE" + }, + { + "license_key": "apsl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "APSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "APPLE PUBLIC SOURCE LICENSE\n\t\t Version 1.0 - March 16, 1999\n\nPlease read this License carefully before downloading this software.\nBy downloading and using this software, you are agreeing to be bound\nby the terms of this License. If you do not or cannot agree to the\nterms of this License, please do not download or use the software.\n\n1. General; Definitions. This License applies to any program or other\n work which Apple Computer, Inc. (\"Apple\") publicly announces as\n subject to this Apple Public Source License and which contains a\n notice placed by Apple identifying such program or work as \"Original\n Code\" and stating that it is subject to the terms of this Apple\n Public Source License version 1.0 (or subsequent version thereof),\n as it may be revised from time to time by Apple (\"License\"). As\n used in this License:\n\n1.1 \"Applicable Patents\" mean: (a) in the case where Apple is the\n grantor of rights, (i) patents or patent applications that are now\n or hereafter acquired, owned by or assigned to Apple and (ii) whose\n claims cover subject matter contained in the Original Code, but only\n to the extent necessary to use, reproduce and/or distribute the\n Original Code without infringement; and (b) in the case where You\n are the grantor of rights, (i) patents and patent applications that\n are now or hereafter acquired, owned by or assigned to You and (ii)\n whose claims cover subject matter in Your Modifications, taken alone\n or in combination with Original Code.\n\n1.2 \"Covered Code\" means the Original Code, Modifications, the\n combination of Original Code and any Modifications, and/or any\n respective portions thereof.\n\n1.3 \"Deploy\" means to use, sublicense or distribute Covered Code other\n than for Your internal research and development (R&D), and includes\n without limitation, any and all internal use or distribution of\n Covered Code within Your business or organization except for R&D\n use, as well as direct or indirect sublicensing or distribution of\n Covered Code by You to any third party in any form or manner.\n\n1.4 \"Larger Work\" means a work which combines Covered Code or portions\n thereof with code not governed by the terms of this License.\n\n1.5 \"Modifications\" mean any addition to, deletion from, and/or change\n to, the substance and/or structure of Covered Code. When code is\n released as a series of files, a Modification is: (a) any addition\n to or deletion from the contents of a file containing Covered Code;\n and/or (b) any new file or other representation of computer program\n statements that contains any part of Covered Code.\n\n1.6 \"Original Code\" means the Source Code of a program or other work\n as originally made available by Apple under this License, including\n the Source Code of any updates or upgrades to such programs or works\n made available by Apple under this License, and that has been\n expressly identified by Apple as such in the header file(s) of such\n work.\n\n1.7 \"Source Code\" means the human readable form of a program or other\n work that is suitable for making modifications to it, including all\n modules it contains, plus any associated interface definition files,\n scripts used to control compilation and installation of an\n executable (object code).\n\n1.8 \"You\" or \"Your\" means an individual or a legal entity exercising\n rights under this License. For legal entities, \"You\" or \"Your\"\n includes any entity which controls, is controlled by, or is under\n common control with, You, where \"control\" means (a) the power,\n direct or indirect, to cause the direction or management of such\n entity, whether by contract or otherwise, or (b) ownership of fifty\n percent (50%) or more of the outstanding shares or beneficial\n ownership of such entity.\n\n2. Permitted Uses; Conditions & Restrictions. Subject to the terms\n and conditions of this License, Apple hereby grants You, effective\n on the date You accept this License and download the Original Code,\n a world-wide, royalty-free, non-exclusive license, to the extent of\n Apple's Applicable Patents and copyrights covering the Original\n Code, to do the following:\n\n2.1 You may use, copy, modify and distribute Original Code, with or\n without Modifications, solely for Your internal research and\n development, provided that You must in each instance:\n\n(a) retain and reproduce in all copies of Original Code the copyright\nand other proprietary notices and disclaimers of Apple as they appear\nin the Original Code, and keep intact all notices in the Original Code\nthat refer to this License;\n\n(b) include a copy of this License with every copy of Source Code of\nCovered Code and documentation You distribute, and You may not offer\nor impose any terms on such Source Code that alter or restrict this\nLicense or the recipients' rights hereunder, except as permitted under\nSection 6; and\n\n(c) completely and accurately document all Modifications that you have\nmade and the date of each such Modification, designate the version of\nthe Original Code you used, prominently include a file carrying such\ninformation with the Modifications, and duplicate the notice in\nExhibit A in each file of the Source Code of all such Modifications.\n\n2.2 You may Deploy Covered Code, provided that You must in each\n instance:\n\n(a) satisfy all the conditions of Section 2.1 with respect to the\nSource Code of the Covered Code;\n\n(b) make all Your Deployed Modifications publicly available in Source\nCode form via electronic distribution (e.g. download from a web site)\nunder the terms of this License and subject to the license grants set\nforth in Section 3 below, and any additional terms You may choose to\noffer under Section 6. You must continue to make the Source Code of\nYour Deployed Modifications available for as long as you Deploy the\nCovered Code or twelve (12) months from the date of initial\nDeployment, whichever is longer;\n\n(c) must notify Apple and other third parties of how to obtain Your\nDeployed Modifications by filling out and submitting the required\ninformation found at\nhttp://www.apple.com/publicsource/modifications.html; and\n\n(d) if you Deploy Covered Code in object code, executable form only,\ninclude a prominent notice, in the code itself as well as in related\ndocumentation, stating that Source Code of the Covered Code is\navailable under the terms of this License with information on how and\nwhere to obtain such Source Code.\n\n3. Your Grants. In consideration of, and as a condition to, the\n licenses granted to You under this License:\n\n(a) You hereby grant to Apple and all third parties a non-exclusive,\nroyalty-free license, under Your Applicable Patents and other\nintellectual property rights owned or controlled by You, to use,\nreproduce, modify, distribute and Deploy Your Modifications of the\nsame scope and extent as Apple's licenses under Sections 2.1 and 2.2;\nand\n\n(b) You hereby grant to Apple and its subsidiaries a non-exclusive,\nworldwide, royalty-free, perpetual and irrevocable license, under Your\nApplicable Patents and other intellectual property rights owned or\ncontrolled by You, to use, reproduce, execute, compile, display,\nperform, modify or have modified (for Apple and/or its subsidiaries),\nsublicense and distribute Your Modifications, in any form, through\nmultiple tiers of distribution.\n\n4. Larger Works. You may create a Larger Work by combining Covered\n Code with other code not governed by the terms of this License and\n distribute the Larger Work as a single product. In each such\n instance, You must make sure the requirements of this License are\n fulfilled for the Covered Code or any portion thereof.\n\n5. Limitations on Patent License. Except as expressly stated in\n Section 2, no other patent rights, express or implied, are granted\n by Apple herein. Modifications and/or Larger Works may require\n additional patent licenses from Apple which Apple may grant in its\n sole discretion.\n\n6. Additional Terms. You may choose to offer, and to charge a fee\n for, warranty, support, indemnity or liability obligations and/or\n other rights consistent with the scope of the license granted herein\n (\"Additional Terms\") to one or more recipients of Covered\n Code. However, You may do so only on Your own behalf and as Your\n sole responsibility, and not on behalf of Apple. You must obtain the\n recipient's agreement that any such Additional Terms are offered by\n You alone, and You hereby agree to indemnify, defend and hold Apple\n harmless for any liability incurred by or claims asserted against\n Apple by reason of any such Additional Terms.\n\n7. Versions of the License. Apple may publish revised and/or new\n versions of this License from time to time. Each version will be\n given a distinguishing version number. Once Original Code has been\n published under a particular version of this License, You may\n continue to use it under the terms of that version. You may also\n choose to use such Original Code under the terms of any subsequent\n version of this License published by Apple. No one other than Apple\n has the right to modify the terms applicable to Covered Code created\n under this License.\n\n8. NO WARRANTY OR SUPPORT. The Original Code may contain in whole or\n in part pre-release, untested, or not fully tested works. The\n Original Code may contain errors that could cause failures or loss\n of data, and may be incomplete or contain inaccuracies. You\n expressly acknowledge and agree that use of the Original Code, or\n any portion thereof, is at Your sole and entire risk. THE ORIGINAL\n CODE IS PROVIDED \"AS IS\" AND WITHOUT WARRANTY, UPGRADES OR SUPPORT\n OF ANY KIND AND APPLE AND APPLE'S LICENSOR(S) (FOR THE PURPOSES OF\n SECTIONS 8 AND 9, APPLE AND APPLE'S LICENSOR(S) ARE COLLECTIVELY\n REFERRED TO AS \"APPLE\") EXPRESSLY DISCLAIM ALL WARRANTIES AND/OR\n CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY OR\n SATISFACTORY QUALITY AND FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT OF THIRD PARTY RIGHTS. APPLE DOES NOT WARRANT THAT\n THE FUNCTIONS CONTAINED IN THE ORIGINAL CODE WILL MEET YOUR\n REQUIREMENTS, OR THAT THE OPERATION OF THE ORIGINAL CODE WILL BE\n UNINTERRUPTED OR ERROR-FREE, OR THAT DEFECTS IN THE ORIGINAL CODE\n WILL BE CORRECTED. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN\n BY APPLE OR AN APPLE AUTHORIZED REPRESENTATIVE SHALL CREATE A\n WARRANTY OR IN ANY WAY INCREASE THE SCOPE OF THIS WARRANTY. You\n acknowledge that the Original Code is not intended for use in the\n operation of nuclear facilities, aircraft navigation, communication\n systems, or air traffic control machines in which case the failure\n of the Original Code could lead to death, personal injury, or severe\n physical or environmental damage.\n\n9. Liability.\n\n9.1 Infringement. If any of the Original Code becomes the subject of\n a claim of infringement (\"Affected Original Code\"), Apple may, at\n its sole discretion and option: (a) attempt to procure the rights\n necessary for You to continue using the Affected Original Code; (b)\n modify the Affected Original Code so that it is no longer\n infringing; or (c) terminate Your rights to use the Affected\n Original Code, effective immediately upon Apple's posting of a\n notice to such effect on the Apple web site that is used for\n implementation of this License.\n\n9.2 LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES SHALL APPLE BE\n LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL\n DAMAGES ARISING OUT OF OR RELATING TO THIS LICENSE OR YOUR USE OR\n INABILITY TO USE THE ORIGINAL CODE, OR ANY PORTION THEREOF, WHETHER\n UNDER A THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE),\n PRODUCTS LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF\n THE POSSIBILITY OF SUCH DAMAGES AND NOTWITHSTANDING THE FAILURE OF\n ESSENTIAL PURPOSE OF ANY REMEDY. In no event shall Apple's total\n liability to You for all damages under this License exceed the\n amount of fifty dollars ($50.00).\n\n10. Trademarks. This License does not grant any rights to use the\n trademarks or trade names \"Apple\", \"Apple Computer\", \"Mac OS X\",\n \"Mac OS X Server\" or any other trademarks or trade names belonging\n to Apple (collectively \"Apple Marks\") and no Apple Marks may be\n used to endorse or promote products derived from the Original Code\n other than as permitted by and in strict compliance at all times\n with Apple's third party trademark usage guidelines which are\n posted at http://www.apple.com/legal/guidelinesfor3rdparties.html.\n\n11. Ownership. Apple retains all rights, title and interest in and to\n the Original Code and any Modifications made by or on behalf of\n Apple (\"Apple Modifications\"), and such Apple Modifications will\n not be automatically subject to this License. Apple may, at its\n sole discretion, choose to license such Apple Modifications under\n this License, or on different terms from those contained in this\n License or may choose not to license them at all. Apple's\n development, use, reproduction, modification, sublicensing and\n distribution of Covered Code will not be subject to this License.\n\n12. Termination.\n\n12.1 Termination. This License and the rights granted hereunder will\n terminate:\n\n(a) automatically without notice from Apple if You fail to comply with\nany term(s) of this License and fail to cure such breach within 30\ndays of becoming aware of such breach; (b) immediately in the event of\nthe circumstances described in Sections 9.1 and/or 13.6(b); or (c)\nautomatically without notice from Apple if You, at any time during the\nterm of this License, commence an action for patent infringement\nagainst Apple.\n\n12.2 Effect of Termination. Upon termination, You agree to\n immediately stop any further use, reproduction, modification and\n distribution of the Covered Code, or Affected Original Code in the\n case of termination under Section 9.1, and to destroy all copies of\n the Covered Code or Affected Original Code (in the case of\n termination under Section 9.1) that are in your possession or\n control. All sublicenses to the Covered Code which have been\n properly granted prior to termination shall survive any termination\n of this License. Provisions which, by their nature, should remain\n in effect beyond the termination of this License shall survive,\n including but not limited to Sections 3, 5, 8, 9, 10, 11, 12.2 and\n 13. Neither party will be liable to the other for compensation,\n indemnity or damages of any sort solely as a result of terminating\n this License in accordance with its terms, and termination of this\n License will be without prejudice to any other right or remedy of\n either party.\n\n13. Miscellaneous.\n\n13.1 Export Law Assurances. You may not use or otherwise export or\n re-export the Original Code except as authorized by United States\n law and the laws of the jurisdiction in which the Original Code was\n obtained. In particular, but without limitation, the Original Code\n may not be exported or re-exported (a) into (or to a national or\n resident of) any U.S. embargoed country or (b) to anyone on the\n U.S. Treasury Department's list of Specially Designated Nationals\n or the U.S. Department of Commerce's Table of Denial Orders. By\n using the Original Code, You represent and warrant that You are not\n located in, under control of, or a national or resident of any such\n country or on any such list.\n\n13.2 Government End Users. The Covered Code is a \"commercial item\" as\n defined in FAR 2.101. Government software and technical data\n rights in the Covered Code include only those rights customarily\n provided to the public as defined in this License. This customary\n commercial license in technical data and software is provided in\n accordance with FAR 12.211 (Technical Data) and 12.212 (Computer\n Software) and, for Department of Defense purchases, DFAR\n 252.227-7015 (Technical Data -- Commercial Items) and 227.7202-3\n (Rights in Commercial Computer Software or Computer Software\n Documentation). Accordingly, all U.S. Government End Users acquire\n Covered Code with only those rights set forth herein.\n\n13.3 Relationship of Parties. This License will not be construed as\n creating an agency, partnership, joint venture or any other form of\n legal association between You and Apple, and You will not represent\n to the contrary, whether expressly, by implication, appearance or\n otherwise.\n\n13.4 Independent Development. Nothing in this License will impair\n Apple's right to acquire, license, develop, have others develop for\n it, market and/or distribute technology or products that perform\n the same or similar functions as, or otherwise compete with,\n Modifications, Larger Works, technology or products that You may\n develop, produce, market or distribute.\n\n13.5 Waiver; Construction. Failure by Apple to enforce any provision\n of this License will not be deemed a waiver of future enforcement\n of that or any other provision. Any law or regulation which\n provides that the language of a contract shall be construed against\n the drafter will not apply to this License.\n\n13.6 Severability. (a) If for any reason a court of competent\n jurisdiction finds any provision of this License, or portion\n thereof, to be unenforceable, that provision of the License will be\n enforced to the maximum extent permissible so as to effect the\n economic benefits and intent of the parties, and the remainder of\n this License will continue in full force and effect. (b)\n Notwithstanding the foregoing, if applicable law prohibits or\n restricts You from fully and/or specifically complying with\n Sections 2 and/or 3 or prevents the enforceability of either of\n those Sections, this License will immediately terminate and You\n must immediately discontinue any use of the Covered Code and\n destroy all copies of it that are in your possession or control.\n\n13.7 Dispute Resolution. Any litigation or other dispute resolution\n between You and Apple relating to this License shall take place in\n the Northern District of California, and You and Apple hereby\n consent to the personal jurisdiction of, and venue in, the state\n and federal courts within that District with respect to this\n License. The application of the United Nations Convention on\n Contracts for the International Sale of Goods is expressly\n excluded.\n\n13.8 Entire Agreement; Governing Law. This License constitutes the\n entire agreement between the parties with respect to the subject\n matter hereof. This License shall be governed by the laws of the\n United States and the State of California, except that body of\n California law concerning conflicts of law.\n\nWhere You are located in the province of Quebec, Canada, the following\nclause applies: The parties hereby confirm that they have requested\nthat this License and all related documents be drafted in English. Les\nparties ont exige que le present contrat et tous les documents\nconnexes soient rediges en anglais.\n\nEXHIBIT A. \n\n\"Portions Copyright (c) 1999 Apple Computer, Inc. All Rights\nReserved. This file contains Original Code and/or Modifications of\nOriginal Code as defined in and that are subject to the Apple Public\nSource License Version 1.0 (the 'License'). You may not use this file\nexcept in compliance with the License. Please obtain a copy of the\nLicense at http://www.apple.com/publicsource and read it before using\nthis file.\n\nThe Original Code and all software distributed under the License are\ndistributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER\nEXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,\nINCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the\nLicense for the specific language governing rights and limitations\nunder the License.\"", + "json": "apsl-1.0.json", + "yaml": "apsl-1.0.yml", + "html": "apsl-1.0.html", + "license": "apsl-1.0.LICENSE" + }, + { + "license_key": "apsl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "APSL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "APPLE PUBLIC SOURCE LICENSE\nVersion 1.1 - April 19,1999\n\nPlease read this License carefully before downloading this software.\nBy downloading and using this software, you are agreeing to be bound\nby the terms of this License. If you do not or cannot agree to the\nterms of this License, please do not download or use the software.\n\n1. General; Definitions. This License applies to any program or other\nwork which Apple Computer, Inc. (\"Apple\") publicly announces as\nsubject to this Apple Public Source License and which contains a\nnotice placed by Apple identifying such program or work as \"Original\nCode\" and stating that it is subject to the terms of this Apple Public\nSource License version 1.1 (or subsequent version thereof), as it may\nbe revised from time to time by Apple (\"License\"). As used in this\nLicense:\n\n1.1 \"Affected Original Code\" means only those specific portions of\nOriginal Code that allegedly infringe upon any party's intellectual\nproperty rights or are otherwise the subject of a claim of\ninfringement.\n\n1.2 \"Applicable Patent Rights\" mean: (a) in the case where Apple is\nthe grantor of rights, (i) claims of patents that are now or hereafter\nacquired, owned by or assigned to Apple and (ii) that cover subject\nmatter contained in the Original Code, but only to the extent\nnecessary to use, reproduce and/or distribute the Original Code\nwithout infringement; and (b) in the case where You are the grantor of\nrights, (i) claims of patents that are now or hereafter acquired,\nowned by or assigned to You and (ii) that cover subject matter in Your\nModifications, taken alone or in combination with Original Code.\n\n1.3 \"Covered Code\" means the Original Code, Modifications, the\ncombination of Original Code and any Modifications, and/or any\nrespective portions thereof.\n\n1.4 \"Deploy\" means to use, sublicense or distribute Covered Code other\nthan for Your internal research and development (R&D), and includes\nwithout limitation, any and all internal use or distribution of\nCovered Code within Your business or organization except for R&D use,\nas well as direct or indirect sublicensing or distribution of Covered\nCode by You to any third party in any form or manner.\n\n1.5 \"Larger Work\" means a work which combines Covered Code or portions\nthereof with code not governed by the terms of this License.\n\n1.6 \"Modifications\" mean any addition to, deletion from, and/or change\nto, the substance and/or structure of Covered Code. When code is\nreleased as a series of files, a Modification is: (a) any addition to\nor deletion from the contents of a file containing Covered Code;\nand/or (b) any new file or other representation of computer program\nstatements that contains any part of Covered Code.\n\n1.7 \"Original Code\" means (a) the Source Code of a program or other\nwork as originally made available by Apple under this License,\nincluding the Source Code of any updates or upgrades to such programs\nor works made available by Apple under this License, and that has been\nexpressly identified by Apple as such in the header file(s) of such\nwork; and (b) the object code compiled from such Source Code and\noriginally made available by Apple under this License.\n\n1.8 \"Source Code\" means the human readable form of a program or other\nwork that is suitable for making modifications to it, including all\nmodules it contains, plus any associated interface definition files,\nscripts used to control compilation and installation of an executable\n(object code).\n\n1.9 \"You\" or \"Your\" means an individual or a legal entity exercising\nrights under this License. For legal entities, \"You\" or \"Your\"\nincludes any entity which controls, is controlled by, or is under\ncommon control with, You, where \"control\" means (a) the power, direct\nor indirect, to cause the direction or management of such entity,\nwhether by contract or otherwise, or (b) ownership of fifty percent\n(50%) or more of the outstanding shares or beneficial ownership of\nsuch entity.\n\n2. Permitted Uses; Conditions & Restrictions. Subject to the terms\nand conditions of this License, Apple hereby grants You, effective on\nthe date You accept this License and download the Original Code, a\nworld-wide, royalty-free, non- exclusive license, to the extent of\nApple's Applicable Patent Rights and copyrights covering the Original\nCode, to do the following:\n\n2.1 You may use, copy, modify and distribute Original Code, with or\nwithout Modifications, solely for Your internal research and\ndevelopment, provided that You must in each instance:\n\n(a) retain and reproduce in all copies of Original Code the copyright\nand other proprietary notices and disclaimers of Apple as they appear\nin the Original Code, and keep intact all notices in the Original Code\nthat refer to this License;\n\n(b) include a copy of this License with every copy of Source Code of\nCovered Code and documentation You distribute, and You may not offer\nor impose any terms on such Source Code that alter or restrict this\nLicense or the recipients' rights hereunder, except as permitted under\nSection 6; and\n\n(c) completely and accurately document all Modifications that you have\nmade and the date of each such Modification, designate the version of\nthe Original Code you used, prominently include a file carrying such\ninformation with the Modifications, and duplicate the notice in\nExhibit A in each file of the Source Code of all such Modifications.\n\n2.2 You may Deploy Covered Code, provided that You must in each\n instance:\n\n(a) satisfy all the conditions of Section 2.1 with respect to the\nSource Code of the Covered Code;\n\n(b) make all Your Deployed Modifications publicly available in Source\nCode form via electronic distribution (e.g. download from a web site)\nunder the terms of this License and subject to the license grants set\nforth in Section 3 below, and any additional terms You may choose to\noffer under Section 6. You must continue to make the Source Code of\nYour Deployed Modifications available for as long as you Deploy the\nCovered Code or twelve (12) months from the date of initial\nDeployment, whichever is longer;\n\n(c) if You Deploy Covered Code containing Modifications made by You,\ninform others of how to obtain those Modifications by filling out and\nsubmitting the information found at\nhttp://www.apple.com/publicsource/modifications.html, if available;\nand\n\n(d) if You Deploy Covered Code in object code, executable form only,\ninclude a prominent notice, in the code itself as well as in related\ndocumentation, stating that Source Code of the Covered Code is\navailable under the terms of this License with information on how and\nwhere to obtain such Source Code.\n\n3. Your Grants. In consideration of, and as a condition to, the\nlicenses granted to You under this License:\n\n(a) You hereby grant to Apple and all third parties a non-exclusive,\nroyalty-free license, under Your Applicable Patent Rights and other\nintellectual property rights owned or controlled by You, to use,\nreproduce, modify, distribute and Deploy Your Modifications of the\nsame scope and extent as Apple's licenses under Sections 2.1 and 2.2;\nand\n\n(b) You hereby grant to Apple and its subsidiaries a non-exclusive,\nworldwide, royalty-free, perpetual and irrevocable license, under Your\nApplicable Patent Rights and other intellectual property rights owned\nor controlled by You, to use, reproduce, execute, compile, display,\nperform, modify or have modified (for Apple and/or its subsidiaries),\nsublicense and distribute Your Modifications, in any form, through\nmultiple tiers of distribution.\n\n4. Larger Works. You may create a Larger Work by combining Covered\nCode with other code not governed by the terms of this License and\ndistribute the Larger Work as a single product. In each such\ninstance, You must make sure the requirements of this License are\nfulfilled for the Covered Code or any portion thereof.\n\n5. Limitations on Patent License. Except as expressly stated in\nSection 2, no other patent rights, express or implied, are granted by\nApple herein. Modifications and/or Larger Works may require\nadditional patent licenses from Apple which Apple may grant in its\nsole discretion.\n\n6. Additional Terms. You may choose to offer, and to charge a fee\nfor, warranty, support, indemnity or liability obligations and/or\nother rights consistent with the scope of the license granted herein\n(\"Additional Terms\") to one or more recipients of Covered\nCode. However, You may do so only on Your own behalf and as Your sole\nresponsibility, and not on behalf of Apple. You must obtain the\nrecipient's agreement that any such Additional Terms are offered by\nYou alone, and You hereby agree to indemnify, defend and hold Apple\nharmless for any liability incurred by or claims asserted against\nApple by reason of any such Additional Terms.\n\n7. Versions of the License. Apple may publish revised and/or new\nversions of this License from time to time. Each version will be\ngiven a distinguishing version number. Once Original Code has been\npublished under a particular version of this License, You may continue\nto use it under the terms of that version. You may also choose to use\nsuch Original Code under the terms of any subsequent version of this\nLicense published by Apple. No one other than Apple has the right to\nmodify the terms applicable to Covered Code created under this\nLicense.\n\n8. NO WARRANTY OR SUPPORT. The Original Code may contain in whole or\nin part pre-release, untested, or not fully tested works. The\nOriginal Code may contain errors that could cause failures or loss of\ndata, and may be incomplete or contain inaccuracies. You expressly\nacknowledge and agree that use of the Original Code, or any portion\nthereof, is at Your sole and entire risk. THE ORIGINAL CODE IS\nPROVIDED \"AS IS\" AND WITHOUT WARRANTY, UPGRADES OR SUPPORT OF ANY KIND\nAND APPLE AND APPLE'S LICENSOR(S) (FOR THE PURPOSES OF SECTIONS 8 AND\n9, APPLE AND APPLE'S LICENSOR(S) ARE COLLECTIVELY REFERRED TO AS\n\"APPLE\") EXPRESSLY DISCLAIM ALL WARRANTIES AND/OR CONDITIONS, EXPRESS\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nAND/OR CONDITIONS OF MERCHANTABILITY OR SATISFACTORY QUALITY AND\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY\nRIGHTS. APPLE DOES NOT WARRANT THAT THE FUNCTIONS CONTAINED IN THE\nORIGINAL CODE WILL MEET YOUR REQUIREMENTS, OR THAT THE OPERATION OF\nTHE ORIGINAL CODE WILL BE UNINTERRUPTED OR ERROR- FREE, OR THAT\nDEFECTS IN THE ORIGINAL CODE WILL BE CORRECTED. NO ORAL OR WRITTEN\nINFORMATION OR ADVICE GIVEN BY APPLE OR AN APPLE AUTHORIZED\nREPRESENTATIVE SHALL CREATE A WARRANTY OR IN ANY WAY INCREASE THE\nSCOPE OF THIS WARRANTY. You acknowledge that the Original Code is not\nintended for use in the operation of nuclear facilities, aircraft\nnavigation, communication systems, or air traffic control machines in\nwhich case the failure of the Original Code could lead to death,\npersonal injury, or severe physical or environmental damage.\n\n9. Liability.\n\n9.1 Infringement. If any portion of, or functionality implemented by,\nthe Original Code becomes the subject of a claim of infringement,\nApple may, at its option: (a) attempt to procure the rights necessary\nfor Apple and You to continue using the Affected Original Code; (b)\nmodify the Affected Original Code so that it is no longer infringing;\nor (c) suspend Your rights to use, reproduce, modify, sublicense and\ndistribute the Affected Original Code until a final determination of\nthe claim is made by a court or governmental administrative agency of\ncompetent jurisdiction and Apple lifts the suspension as set forth\nbelow. Such suspension of rights will be effective immediately upon\nApple's posting of a notice to such effect on the Apple web site that\nis used for implementation of this License. Upon such final\ndetermination being made, if Apple is legally able, without the\npayment of a fee or royalty, to resume use, reproduction,\nmodification, sublicensing and distribution of the Affected Original\nCode, Apple will lift the suspension of rights to the Affected\nOriginal Code by posting a notice to such effect on the Apple web site\nthat is used for implementation of this License. If Apple suspends\nYour rights to Affected Original Code, nothing in this License shall\nbe construed to restrict You, at Your option and subject to applicable\nlaw, from replacing the Affected Original Code with non-infringing\ncode or independently negotiating for necessary rights from such third\nparty.\n\n9.2 LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES SHALL APPLE BE\nLIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES\nARISING OUT OF OR RELATING TO THIS LICENSE OR YOUR USE OR INABILITY TO\nUSE THE ORIGINAL CODE, OR ANY PORTION THEREOF, WHETHER UNDER A THEORY\nOF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCTS LIABILITY\nOR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF\nANY REMEDY. In no event shall Apple's total liability to You for all\ndamages under this License exceed the amount of fifty dollars\n($50.00).\n\n10. Trademarks. This License does not grant any rights to use the\ntrademarks or trade names \"Apple\", \"Apple Computer\", \"Mac OS X\", \"Mac\nOS X Server\" or any other trademarks or trade names belonging to Apple\n(collectively \"Apple Marks\") and no Apple Marks may be used to endorse\nor promote products derived from the Original Code other than as\npermitted by and in strict compliance at all times with Apple's third\nparty trademark usage guidelines which are posted at\nhttp://www.apple.com/legal/guidelinesfor3rdparties.html.\n\n11. Ownership. Apple retains all rights, title and interest in and to\nthe Original Code and any Modifications made by or on behalf of Apple\n(\"Apple Modifications\"), and such Apple Modifications will not be\nautomatically subject to this License. Apple may, at its sole\ndiscretion, choose to license such Apple Modifications under this\nLicense, or on different terms from those contained in this License or\nmay choose not to license them at all. Apple's development, use,\nreproduction, modification, sublicensing and distribution of Covered\nCode will not be subject to this License.\n\n12. Termination.\n\n12.1 Termination. This License and the rights granted hereunder will\n terminate:\n\n(a) automatically without notice from Apple if You fail to comply with\nany term(s) of this License and fail to cure such breach within 30\ndays of becoming aware of such breach; (b) immediately in the event of\nthe circumstances described in Section 13.5(b); or (c) automatically\nwithout notice from Apple if You, at any time during the term of this\nLicense, commence an action for patent infringement against Apple.\n\n12.2 Effect of Termination. Upon termination, You agree to\nimmediately stop any further use, reproduction, modification,\nsublicensing and distribution of the Covered Code and to destroy all\ncopies of the Covered Code that are in your possession or control.\nAll sublicenses to the Covered Code which have been properly granted\nprior to termination shall survive any termination of this License.\nProvisions which, by their nature, should remain in effect beyond the\ntermination of this License shall survive, including but not limited\nto Sections 3, 5, 8, 9, 10, 11, 12.2 and 13. Neither party will be\nliable to the other for compensation, indemnity or damages of any sort\nsolely as a result of terminating this License in accordance with its\nterms, and termination of this License will be without prejudice to\nany other right or remedy of either party.\n\n13. Miscellaneous.\n\n13.1 Government End Users. The Covered Code is a \"commercial item\" as\ndefined in FAR 2.101. Government software and technical data rights\nin the Covered Code include only those rights customarily provided to\nthe public as defined in this License. This customary commercial\nlicense in technical data and software is provided in accordance with\nFAR 12.211 (Technical Data) and 12.212 (Computer Software) and, for\nDepartment of Defense purchases, DFAR 252.227-7015 (Technical Data --\nCommercial Items) and 227.7202-3 (Rights in Commercial Computer\nSoftware or Computer Software Documentation). Accordingly, all U.S.\nGovernment End Users acquire Covered Code with only those rights set\nforth herein.\n\n13.2 Relationship of Parties. This License will not be construed as\ncreating an agency, partnership, joint venture or any other form of\nlegal association between You and Apple, and You will not represent to\nthe contrary, whether expressly, by implication, appearance or\notherwise.\n\n13.3 Independent Development. Nothing in this License will impair\nApple's right to acquire, license, develop, have others develop for\nit, market and/or distribute technology or products that perform the\nsame or similar functions as, or otherwise compete with,\nModifications, Larger Works, technology or products that You may\ndevelop, produce, market or distribute.\n\n13.4 Waiver; Construction. Failure by Apple to enforce any provision\nof this License will not be deemed a waiver of future enforcement of\nthat or any other provision. Any law or regulation which provides\nthat the language of a contract shall be construed against the drafter\nwill not apply to this License.\n\n13.5 Severability. (a) If for any reason a court of competent\njurisdiction finds any provision of this License, or portion thereof,\nto be unenforceable, that provision of the License will be enforced to\nthe maximum extent permissible so as to effect the economic benefits\nand intent of the parties, and the remainder of this License will\ncontinue in full force and effect. (b) Notwithstanding the foregoing,\nif applicable law prohibits or restricts You from fully and/or\nspecifically complying with Sections 2 and/or 3 or prevents the\nenforceability of either of those Sections, this License will\nimmediately terminate and You must immediately discontinue any use of\nthe Covered Code and destroy all copies of it that are in your\npossession or control.\n\n13.6 Dispute Resolution. Any litigation or other dispute resolution\nbetween You and Apple relating to this License shall take place in the\nNorthern District of California, and You and Apple hereby consent to\nthe personal jurisdiction of, and venue in, the state and federal\ncourts within that District with respect to this License. The\napplication of the United Nations Convention on Contracts for the\nInternational Sale of Goods is expressly excluded.\n\n13.7 Entire Agreement; Governing Law. This License constitutes the\nentire agreement between the parties with respect to the subject\nmatter hereof. This License shall be governed by the laws of the\nUnited States and the State of California, except that body of\nCalifornia law concerning conflicts of law.\n\nWhere You are located in the province of Quebec, Canada, the following\nclause applies: The parties hereby confirm that they have requested\nthat this License and all related documents be drafted in English. Les\nparties ont exige que le present contrat et tous les documents\nconnexes soient rediges en anglais.\n\nEXHIBIT A.\n\n\"Portions Copyright (c) 1999-2000 Apple Computer, Inc. All Rights\nReserved. This file contains Original Code and/or Modifications of\nOriginal Code as defined in and that are subject to the Apple Public\nSource License Version 1.1 (the \"License\"). You may not use this file\nexcept in compliance with the License. Please obtain a copy of the\nLicense at http://www.apple.com/publicsource and read it before using\nthis file.\n\nThe Original Code and all software distributed under the License are\ndistributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, EITHER\nEXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,\nINCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the\nLicense for the specific language governing rights and limitations\nunder the License.\"", + "json": "apsl-1.1.json", + "yaml": "apsl-1.1.yml", + "html": "apsl-1.1.html", + "license": "apsl-1.1.LICENSE" + }, + { + "license_key": "apsl-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "APSL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "APPLE PUBLIC SOURCE LICENSE\nVersion 1.2 - January 4, 2001\n\nPlease read this License carefully before downloading this software.\nBy downloading or using this software, you are agreeing to be bound by\nthe terms of this License. If you do not or cannot agree to the terms\nof this License, please do not download or use the software.\n\n1. General; Definitions. This License applies to any program or other\nwork which Apple Computer, Inc. (\"Apple\") makes publicly available and\nwhich contains a notice placed by Apple identifying such program or\nwork as \"Original Code\" and stating that it is subject to the terms of\nthis Apple Public Source License version 1.2 (or subsequent version\nthereof) (\"License\"). As used in this License:\n\n1.1 \"Applicable Patent Rights\" mean: (a) in the case where Apple is\nthe grantor of rights, (i) claims of patents that are now or hereafter\nacquired, owned by or assigned to Apple and (ii) that cover subject\nmatter contained in the Original Code, but only to the extent\nnecessary to use, reproduce and/or distribute the Original Code\nwithout infringement; and (b) in the case where You are the grantor of\nrights, (i) claims of patents that are now or hereafter acquired,\nowned by or assigned to You and (ii) that cover subject matter in Your\nModifications, taken alone or in combination with Original Code.\n\n1.2 \"Contributor\" means any person or entity that creates or\ncontributes to the creation of Modifications.\n\n1.3 \"Covered Code\" means the Original Code, Modifications, the\ncombination of Original Code and any Modifications, and/or any\nrespective portions thereof.\n\n1.4 \"Deploy\" means to use, sublicense or distribute Covered Code other\nthan for Your internal research and development (R&D) and/or\nPersonal Use, and includes without limitation, any and all internal\nuse or distribution of Covered Code within Your business or\norganization except for R&D use and/or Personal Use, as well as\ndirect or indirect sublicensing or distribution of Covered Code by You\nto any third party in any form or manner.\n\n1.5 \"Larger Work\" means a work which combines Covered Code or portions\nthereof with code not governed by the terms of this License.\n\n1.6 \"Modifications\" mean any addition to, deletion from, and/or change\nto, the substance and/or structure of the Original Code, any previous\nModifications, the combination of Original Code and any previous\nModifications, and/or any respective portions thereof. When code is\nreleased as a series of files, a Modification is: (a) any addition to\nor deletion from the contents of a file containing Covered Code;\nand/or (b) any new file or other representation of computer program\nstatements that contains any part of Covered Code.\n\n1.7 \"Original Code\" means (a) the Source Code of a program or other\nwork as originally made available by Apple under this License,\nincluding the Source Code of any updates or upgrades to such programs\nor works made available by Apple under this License, and that has been\nexpressly identified by Apple as such in the header file(s) of such\nwork; and (b) the object code compiled from such Source Code and\noriginally made available by Apple under this License.\n\n1.8 \"Personal Use\" means use of Covered Code by an individual solely\nfor his or her personal, private and non-commercial purposes. An\nindividual's use of Covered Code in his or her capacity as an officer,\nemployee, member, independent contractor or agent of a corporation,\nbusiness or organization (commercial or non-commercial) does not\nqualify as Personal Use.\n\n1.9 \"Source Code\" means the human readable form of a program or other\nwork that is suitable for making modifications to it, including all\nmodules it contains, plus any associated interface definition files,\nscripts used to control compilation and installation of an executable\n(object code).\n\n1.10 \"You\" or \"Your\" means an individual or a legal entity exercising\nrights under this License. For legal entities, \"You\" or \"Your\"\nincludes any entity which controls, is controlled by, or is under\ncommon control with, You, where \"control\" means (a) the power, direct\nor indirect, to cause the direction or management of such entity,\nwhether by contract or otherwise, or (b) ownership of fifty percent\n(50%) or more of the outstanding shares or beneficial ownership of\nsuch entity.\n\n2. Permitted Uses; Conditions & Restrictions. Subject to the terms\nand conditions of this License, Apple hereby grants You, effective on\nthe date You accept this License and download the Original Code, a\nworld-wide, royalty-free, non-exclusive license, to the extent of\nApple's Applicable Patent Rights and copyrights covering the Original\nCode, to do the following:\n\n2.1 You may use, reproduce, display, perform, modify and distribute\nOriginal Code, with or without Modifications, solely for Your internal\nresearch and development and/or Personal Use, provided that in each\ninstance:\n\n(a) You must retain and reproduce in all copies of Original Code the\ncopyright and other proprietary notices and disclaimers of Apple as\nthey appear in the Original Code, and keep intact all notices in the\nOriginal Code that refer to this License; and\n\n(b) You must include a copy of this License with every copy of Source\nCode of Covered Code and documentation You distribute, and You may not\noffer or impose any terms on such Source Code that alter or restrict\nthis License or the recipients' rights hereunder, except as permitted\nunder Section 6.\n\n2.2 You may use, reproduce, display, perform, modify and Deploy\nCovered Code, provided that in each instance:\n\n(a) You must satisfy all the conditions of Section 2.1 with respect to\nthe Source Code of the Covered Code;\n\n(b) You must duplicate, to the extent it does not already exist, the\nnotice in Exhibit A in each file of the Source Code of all Your\nModifications, and cause the modified files to carry prominent notices\nstating that You changed the files and the date of any change;\n\n(c) You must make Source Code of all Your Deployed Modifications\npublicly available under the terms of this License, including the\nlicense grants set forth in Section 3 below, for as long as you Deploy\nthe Covered Code or twelve (12) months from the date of initial\nDeployment, whichever is longer. You should preferably distribute the\nSource Code of Your Deployed Modifications electronically (e.g.\ndownload from a web site); and\n\n(d) if You Deploy Covered Code in object code, executable form only,\nYou must include a prominent notice, in the code itself as well as in\nrelated documentation, stating that Source Code of the Covered Code is\navailable under the terms of this License with information on how and\nwhere to obtain such Source Code.\n\n2.3 You expressly acknowledge and agree that although Apple and each\nContributor grants the licenses to their respective portions of the\nCovered Code set forth herein, no assurances are provided by Apple or\nany Contributor that the Covered Code does not infringe the patent or\nother intellectual property rights of any other entity. Apple and each\nContributor disclaim any liability to You for claims brought by any\nother entity based on infringement of intellectual property rights or\notherwise. As a condition to exercising the rights and licenses\ngranted hereunder, You hereby assume sole responsibility to secure any\nother intellectual property rights needed, if any. For example, if a\nthird party patent license is required to allow You to distribute the\nCovered Code, it is Your responsibility to acquire that license before\ndistributing the Covered Code.\n\n3. Your Grants. In consideration of, and as a condition to, the\nlicenses granted to You under this License:\n\n(a) You hereby grant to Apple and all third parties a non-exclusive,\nroyalty-free license, under Your Applicable Patent Rights and other\nintellectual property rights (other than patent) owned or controlled\nby You, to use, reproduce, display, perform, modify, distribute and\nDeploy Your Modifications of the same scope and extent as Apple's\nlicenses under Sections 2.1 and 2.2; and\n\n(b) You hereby grant to Apple and its subsidiaries a non-exclusive,\nworldwide, royalty-free, perpetual and irrevocable license, under Your\nApplicable Patent Rights and other intellectual property rights (other\nthan patent) owned or controlled by You, to use, reproduce, display,\nperform, modify or have modified (for Apple and/or its subsidiaries),\nsublicense and distribute Your Modifications, in any form, through\nmultiple tiers of distribution.\n\n4. Larger Works. You may create a Larger Work by combining Covered\nCode with other code not governed by the terms of this License and\ndistribute the Larger Work as a single product. In each such instance,\nYou must make sure the requirements of this License are fulfilled for\nthe Covered Code or any portion thereof.\n\n5. Limitations on Patent License. Except as expressly stated in\nSection 2, no other patent rights, express or implied, are granted by\nApple herein. Modifications and/or Larger Works may require additional\npatent licenses from Apple which Apple may grant in its sole\ndiscretion.\n\n6. Additional Terms. You may choose to offer, and to charge a fee for,\nwarranty, support, indemnity or liability obligations and/or other\nrights consistent with the scope of the license granted herein\n(\"Additional Terms\") to one or more recipients of Covered Code.\nHowever, You may do so only on Your own behalf and as Your sole\nresponsibility, and not on behalf of Apple or any Contributor. You\nmust obtain the recipient's agreement that any such Additional Terms\nare offered by You alone, and You hereby agree to indemnify, defend\nand hold Apple and every Contributor harmless for any liability\nincurred by or claims asserted against Apple or such Contributor by\nreason of any such Additional Terms.\n\n7. Versions of the License. Apple may publish revised and/or new\nversions of this License from time to time. Each version will be given\na distinguishing version number. Once Original Code has been published\nunder a particular version of this License, You may continue to use it\nunder the terms of that version. You may also choose to use such\nOriginal Code under the terms of any subsequent version of this\nLicense published by Apple. No one other than Apple has the right to\nmodify the terms applicable to Covered Code created under this\nLicense.\n\n8. NO WARRANTY OR SUPPORT. The Covered Code may contain in whole or in\npart pre-release, untested, or not fully tested works. The Covered\nCode may contain errors that could cause failures or loss of data, and\nmay be incomplete or contain inaccuracies. You expressly acknowledge\nand agree that use of the Covered Code, or any portion thereof, is at\nYour sole and entire risk. THE COVERED CODE IS PROVIDED \"AS IS\" AND\nWITHOUT WARRANTY, UPGRADES OR SUPPORT OF ANY KIND AND APPLE AND\nAPPLE'S LICENSOR(S) (COLLECTIVELY REFERRED TO AS \"APPLE\" FOR THE\nPURPOSES OF SECTIONS 8 AND 9) AND ALL CONTRIBUTORS EXPRESSLY DISCLAIM\nALL WARRANTIES AND/OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT\nNOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF\nMERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR\nPURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND NONINFRINGEMENT OF THIRD\nPARTY RIGHTS. APPLE AND EACH CONTRIBUTOR DOES NOT WARRANT AGAINST\nINTERFERENCE WITH YOUR ENJOYMENT OF THE COVERED CODE, THAT THE\nFUNCTIONS CONTAINED IN THE COVERED CODE WILL MEET YOUR REQUIREMENTS,\nTHAT THE OPERATION OF THE COVERED CODE WILL BE UNINTERRUPTED OR\nERROR-FREE, OR THAT DEFECTS IN THE COVERED CODE WILL BE CORRECTED. NO\nORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE, AN APPLE\nAUTHORIZED REPRESENTATIVE OR ANY CONTRIBUTOR SHALL CREATE A WARRANTY.\nYou acknowledge that the Covered Code is not intended for use in the\noperation of nuclear facilities, aircraft navigation, communication\nsystems, or air traffic control machines in which case the failure of\nthe Covered Code could lead to death, personal injury, or severe\nphysical or environmental damage.\n\n9. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO\nEVENT SHALL APPLE OR ANY CONTRIBUTOR BE LIABLE FOR ANY INCIDENTAL,\nSPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING\nTO THIS LICENSE OR YOUR USE OR INABILITY TO USE THE COVERED CODE, OR\nANY PORTION THEREOF, WHETHER UNDER A THEORY OF CONTRACT, WARRANTY,\nTORT (INCLUDING NEGLIGENCE), PRODUCTS LIABILITY OR OTHERWISE, EVEN IF\nAPPLE OR SUCH CONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY\nREMEDY. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY OF\nINCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY\nTO YOU. In no event shall Apple's total liability to You for all\ndamages (other than as may be required by applicable law) under this\nLicense exceed the amount of fifty dollars ($50.00).\n\n10. Trademarks. This License does not grant any rights to use the\ntrademarks or trade names \"Apple\", \"Apple Computer\", \"Mac OS X\", \"Mac\nOS X Server\", \"QuickTime\", \"QuickTime Streaming Server\" or any other\ntrademarks or trade names belonging to Apple (collectively \"Apple\nMarks\") or to any trademark or trade name belonging to any\nContributor. No Apple Marks may be used to endorse or promote products\nderived from the Original Code other than as permitted by and in\nstrict compliance at all times with Apple's third party trademark\nusage guidelines which are posted at\nhttp://www.apple.com/legal/guidelinesfor3rdparties.html.\n\n11. Ownership. Subject to the licenses granted under this License,\neach Contributor retains all rights, title and interest in and to any\nModifications made by such Contributor. Apple retains all rights,\ntitle and interest in and to the Original Code and any Modifications\nmade by or on behalf of Apple (\"Apple Modifications\"), and such Apple\nModifications will not be automatically subject to this License. Apple\nmay, at its sole discretion, choose to license such Apple\nModifications under this License, or on different terms from those\ncontained in this License or may choose not to license them at all.\n\n12. Termination.\n\n12.1 Termination. This License and the rights granted hereunder will\nterminate:\n\n(a) automatically without notice from Apple if You fail to comply with\nany term(s) of this License and fail to cure such breach within 30\ndays of becoming aware of such breach;\n\n(b) immediately in the event of the circumstances described in Section\n13.5(b); or\n\n(c) automatically without notice from Apple if You, at any time during\nthe term of this License, commence an action for patent infringement\nagainst Apple.\n\n12.2 Effect of Termination. Upon termination, You agree to immediately\nstop any further use, reproduction, modification, sublicensing and\ndistribution of the Covered Code and to destroy all copies of the\nCovered Code that are in your possession or control. All sublicenses\nto the Covered Code which have been properly granted prior to\ntermination shall survive any termination of this License. Provisions\nwhich, by their nature, should remain in effect beyond the termination\nof this License shall survive, including but not limited to Sections\n3, 5, 8, 9, 10, 11, 12.2 and 13. No party will be liable to any other\nfor compensation, indemnity or damages of any sort solely as a result\nof terminating this License in accordance with its terms, and\ntermination of this License will be without prejudice to any other\nright or remedy of any party.\n\n13. Miscellaneous.\n\n13.1 Government End Users. The Covered Code is a \"commercial item\" as\ndefined in FAR 2.101. Government software and technical data rights in\nthe Covered Code include only those rights customarily provided to the\npublic as defined in this License. This customary commercial license\nin technical data and software is provided in accordance with FAR\n12.211 (Technical Data) and 12.212 (Computer Software) and, for\nDepartment of Defense purchases, DFAR 252.227-7015 (Technical Data --\nCommercial Items) and 227.7202-3 (Rights in Commercial Computer\nSoftware or Computer Software Documentation). Accordingly, all U.S.\nGovernment End Users acquire Covered Code with only those rights set\nforth herein.\n\n13.2 Relationship of Parties. This License will not be construed as\ncreating an agency, partnership, joint venture or any other form of\nlegal association between or among You, Apple or any Contributor, and\nYou will not represent to the contrary, whether expressly, by\nimplication, appearance or otherwise.\n\n13.3 Independent Development. Nothing in this License will impair\nApple's right to acquire, license, develop, have others develop for\nit, market and/or distribute technology or products that perform the\nsame or similar functions as, or otherwise compete with,\nModifications, Larger Works, technology or products that You may\ndevelop, produce, market or distribute.\n\n13.4 Waiver; Construction. Failure by Apple or any Contributor to\nenforce any provision of this License will not be deemed a waiver of\nfuture enforcement of that or any other provision. Any law or\nregulation which provides that the language of a contract shall be\nconstrued against the drafter will not apply to this License.\n\n13.5 Severability. (a) If for any reason a court of competent\njurisdiction finds any provision of this License, or portion thereof,\nto be unenforceable, that provision of the License will be enforced to\nthe maximum extent permissible so as to effect the economic benefits\nand intent of the parties, and the remainder of this License will\ncontinue in full force and effect. (b) Notwithstanding the foregoing,\nif applicable law prohibits or restricts You from fully and/or\nspecifically complying with Sections 2 and/or 3 or prevents the\nenforceability of either of those Sections, this License will\nimmediately terminate and You must immediately discontinue any use of\nthe Covered Code and destroy all copies of it that are in your\npossession or control.\n\n13.6 Dispute Resolution. Any litigation or other dispute resolution\nbetween You and Apple relating to this License shall take place in the\nNorthern District of California, and You and Apple hereby consent to\nthe personal jurisdiction of, and venue in, the state and federal\ncourts within that District with respect to this License. The\napplication of the United Nations Convention on Contracts for the\nInternational Sale of Goods is expressly excluded.\n\n13.7 Entire Agreement; Governing Law. This License constitutes the\nentire agreement between the parties with respect to the subject\nmatter hereof. This License shall be governed by the laws of the\nUnited States and the State of California, except that body of\nCalifornia law concerning conflicts of law.\n\nWhere You are located in the province of Quebec, Canada, the following\nclause applies: The parties hereby confirm that they have requested\nthat this License and all related documents be drafted in English. Les\nparties ont exige que le present contrat et tous les documents\nconnexes soient rediges en anglais.\n\nEXHIBIT A.\n\n\"Portions Copyright (c) 1999-2003 Apple Computer, Inc. All Rights\nReserved.\n\nThis file contains Original Code and/or Modifications of Original Code\nas defined in and that are subject to the Apple Public Source License\nVersion 1.2 (the 'License'). You may not use this file except in\ncompliance with the License. Please obtain a copy of the License at\nhttp://www.apple.com/publicsource and read it before using this file.\n\nThe Original Code and all software distributed under the License are\ndistributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER\nEXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,\nINCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.\nPlease see the License for the specific language governing rights and\nlimitations under the License.\"", + "json": "apsl-1.2.json", + "yaml": "apsl-1.2.yml", + "html": "apsl-1.2.html", + "license": "apsl-1.2.LICENSE" + }, + { + "license_key": "apsl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "APSL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "APPLE PUBLIC SOURCE LICENSE\nVersion 2.0 - August 6, 2003\n\nPlease read this License carefully before downloading this software. By downloading or using this software, you are agreeing to be bound by the terms of this License. If you do not or cannot agree to the terms of this License, please do not download or use the software.\n\n1. General; Definitions. This License applies to any program or other work which Apple Computer, Inc. (\"Apple\") makes publicly available and which contains a notice placed by Apple identifying such program or work as \"Original Code\" and stating that it is subject to the terms of this Apple Public Source License version 2.0 (\"License\"). As used in this License:\n\n1.1 \"Applicable Patent Rights\" mean: (a) in the case where Apple is the grantor of rights, (i) claims of patents that are now or hereafter acquired, owned by or assigned to Apple and (ii) that cover subject matter contained in the Original Code, but only to the extent necessary to use, reproduce and/or distribute the Original Code without infringement; and (b) in the case where You are the grantor of rights, (i) claims of patents that are now or hereafter acquired, owned by or assigned to You and (ii) that cover subject matter in Your Modifications, taken alone or in combination with Original Code.\n\n1.2 \"Contributor\" means any person or entity that creates or contributes to the creation of Modifications. \n\n1.3 \"Covered Code\" means the Original Code, Modifications, the combination of Original Code and any Modifications, and/or any respective portions thereof.\n\n1.4 \"Externally Deploy\" means: (a) to sublicense, distribute or otherwise make Covered Code available, directly or indirectly, to anyone other than You; and/or (b) to use Covered Code, alone or as part of a Larger Work, in any way to provide a service, including but not limited to delivery of content, through electronic communication with a client other than You.\n\n1.5 \"Larger Work\" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License.\n\n1.6 \"Modifications\" mean any addition to, deletion from, and/or change to, the substance and/or structure of the Original Code, any previous Modifications, the combination of Original Code and any previous Modifications, and/or any respective portions thereof. When code is released as a series of files, a Modification is: (a) any addition to or deletion from the contents of a file containing Covered Code; and/or (b) any new file or other representation of computer program statements that contains any part of Covered Code.\n\n1.7 \"Original Code\" means (a) the Source Code of a program or other work as originally made available by Apple under this License, including the Source Code of any updates or upgrades to such programs or works made available by Apple under this License, and that has been expressly identified by Apple as such in the header file(s) of such work; and (b) the object code compiled from such Source Code and originally made available by Apple under this License.\n\n1.8 \"Source Code\" means the human readable form of a program or other work that is suitable for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an executable (object code).\n\n1.9 \"You\" or \"Your\" means an individual or a legal entity exercising rights under this License. For legal entities, \"You\" or \"Your\" includes any entity which controls, is controlled by, or is under common control with, You, where \"control\" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity.\n\n2. Permitted Uses; Conditions & Restrictions. Subject to the terms and conditions of this License, Apple hereby grants You, effective on the date You accept this License and download the Original Code, a world-wide, royalty-free, non-exclusive license, to the extent of Apple's Applicable Patent Rights and copyrights covering the Original Code, to do the following:\n\n2.1 Unmodified Code. You may use, reproduce, display, perform, internally distribute within Your organization, and Externally Deploy verbatim, unmodified copies of the Original Code, for commercial or non-commercial purposes, provided that in each instance: \n\n(a) You must retain and reproduce in all copies of Original Code the copyright and other proprietary notices and disclaimers of Apple as they appear in the Original Code, and keep intact all notices in the Original Code that refer to this License; and \n\n(b) You must include a copy of this License with every copy of Source Code of Covered Code and documentation You distribute or Externally Deploy, and You may not offer or impose any terms on such Source Code that alter or restrict this License or the recipients' rights hereunder, except as permitted under Section 6.\n\n2.2 Modified Code. You may modify Covered Code and use, reproduce, display, perform, internally distribute within Your organization, and Externally Deploy Your Modifications and Covered Code, for commercial or non-commercial purposes, provided that in each instance You also meet all of these conditions:\n\n(a) You must satisfy all the conditions of Section 2.1 with respect to the Source Code of the Covered Code;\n\n(b) You must duplicate, to the extent it does not already exist, the notice in Exhibit A in each file of the Source Code of all Your Modifications, and cause the modified files to carry prominent notices stating that You changed the files and the date of any change; and\n\n(c) If You Externally Deploy Your Modifications, You must make Source Code of all Your Externally Deployed Modifications either available to those to whom You have Externally Deployed Your Modifications, or publicly available. Source Code of Your Externally Deployed Modifications must be released under the terms set forth in this License, including the license grants set forth in Section 3 below, for as long as you Externally Deploy the Covered Code or twelve (12) months from the date of initial External Deployment, whichever is longer. You should preferably distribute the Source Code of Your Externally Deployed Modifications electronically (e.g. download from a web site).\n\n2.3 Distribution of Executable Versions. In addition, if You Externally Deploy Covered Code (Original Code and/or Modifications) in object code, executable form only, You must include a prominent notice, in the code itself as well as in related documentation, stating that Source Code of the Covered Code is available under the terms of this License with information on how and where to obtain such Source Code.\n\n2.4 Third Party Rights. You expressly acknowledge and agree that although Apple and each Contributor grants the licenses to their respective portions of the Covered Code set forth herein, no assurances are provided by Apple or any Contributor that the Covered Code does not infringe the patent or other intellectual property rights of any other entity. Apple and each Contributor disclaim any liability to You for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, You hereby assume sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow You to distribute the Covered Code, it is Your responsibility to acquire that license before distributing the Covered Code. \n\n3. Your Grants. In consideration of, and as a condition to, the licenses granted to You under this License, You hereby grant to any person or entity receiving or distributing Covered Code under this License a non-exclusive, royalty-free, perpetual, irrevocable license, under Your Applicable Patent Rights and other intellectual property rights (other than patent) owned or controlled by You, to use, reproduce, display, perform, modify, sublicense, distribute and Externally Deploy Your Modifications of the same scope and extent as Apple's licenses under Sections 2.1 and 2.2 above. \n\n4. Larger Works. You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In each such instance, You must make sure the requirements of this License are fulfilled for the Covered Code or any portion thereof. \n\n5. Limitations on Patent License. Except as expressly stated in Section 2, no other patent rights, express or implied, are granted by Apple herein. Modifications and/or Larger Works may require additional patent licenses from Apple which Apple may grant in its sole discretion.\n\n6. Additional Terms. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations and/or other rights consistent with the scope of the license granted herein (\"Additional Terms\") to one or more recipients of Covered Code. However, You may do so only on Your own behalf and as Your sole responsibility, and not on behalf of Apple or any Contributor. You must obtain the recipient's agreement that any such Additional Terms are offered by You alone, and You hereby agree to indemnify, defend and hold Apple and every Contributor harmless for any liability incurred by or claims asserted against Apple or such Contributor by reason of any such Additional Terms.\n\n7. Versions of the License. Apple may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Once Original Code has been published under a particular version of this License, You may continue to use it under the terms of that version. You may also choose to use such Original Code under the terms of any subsequent version of this License published by Apple. No one other than Apple has the right to modify the terms applicable to Covered Code created under this License.\n\n8. NO WARRANTY OR SUPPORT. The Covered Code may contain in whole or in part pre-release, untested, or not fully tested works. The Covered Code may contain errors that could cause failures or loss of data, and may be incomplete or contain inaccuracies. You expressly acknowledge and agree that use of the Covered Code, or any portion thereof, is at Your sole and entire risk. THE COVERED CODE IS PROVIDED \"AS IS\" AND WITHOUT WARRANTY, UPGRADES OR SUPPORT OF ANY KIND AND APPLE AND APPLE'S LICENSOR(S) (COLLECTIVELY REFERRED TO AS \"APPLE\" FOR THE PURPOSES OF SECTIONS 8 AND 9) AND ALL CONTRIBUTORS EXPRESSLY DISCLAIM ALL WARRANTIES AND/OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. APPLE AND EACH CONTRIBUTOR DOES NOT WARRANT AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE COVERED CODE, THAT THE FUNCTIONS CONTAINED IN THE COVERED CODE WILL MEET YOUR REQUIREMENTS, THAT THE OPERATION OF THE COVERED CODE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT DEFECTS IN THE COVERED CODE WILL BE CORRECTED. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE, AN APPLE AUTHORIZED REPRESENTATIVE OR ANY CONTRIBUTOR SHALL CREATE A WARRANTY. You acknowledge that the Covered Code is not intended for use in the operation of nuclear facilities, aircraft navigation, communication systems, or air traffic control machines in which case the failure of the Covered Code could lead to death, personal injury, or severe physical or environmental damage. \n\n9. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT SHALL APPLE OR ANY CONTRIBUTOR BE LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO THIS LICENSE OR YOUR USE OR INABILITY TO USE THE COVERED CODE, OR ANY PORTION THEREOF, WHETHER UNDER A THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCTS LIABILITY OR OTHERWISE, EVEN IF APPLE OR SUCH CONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY TO YOU. In no event shall Apple's total liability to You for all damages (other than as may be required by applicable law) under this License exceed the amount of fifty dollars ($50.00).\n\n10. Trademarks. This License does not grant any rights to use the trademarks or trade names \"Apple\", \"Apple Computer\", \"Mac\", \"Mac OS\", \"QuickTime\", \"QuickTime Streaming Server\" or any other trademarks, service marks, logos or trade names belonging to Apple (collectively \"Apple Marks\") or to any trademark, service mark, logo or trade name belonging to any Contributor. You agree not to use any Apple Marks in or as part of the name of products derived from the Original Code or to endorse or promote products derived from the Original Code other than as expressly permitted by and in strict compliance at all times with Apple's third party trademark usage guidelines which are posted at http://www.apple.com/legal/guidelinesfor3rdparties.html.\n\n11. Ownership. Subject to the licenses granted under this License, each Contributor retains all rights, title and interest in and to any Modifications made by such Contributor. Apple retains all rights, title and interest in and to the Original Code and any Modifications made by or on behalf of Apple (\"Apple Modifications\"), and such Apple Modifications will not be automatically subject to this License. Apple may, at its sole discretion, choose to license such Apple Modifications under this License, or on different terms from those contained in this License or may choose not to license them at all.\n\n12. Termination.\n\n12.1 Termination. This License and the rights granted hereunder will terminate:\n\n(a) automatically without notice from Apple if You fail to comply with any term(s) of this License and fail to cure such breach within 30 days of becoming aware of such breach;\n\n(b) immediately in the event of the circumstances described in Section 13.5(b); or\n\n(c) automatically without notice from Apple if You, at any time during the term of this License, commence an action for patent infringement against Apple; provided that Apple did not first commence an action for patent infringement against You in that instance.\n\n12.2 Effect of Termination. Upon termination, You agree to immediately stop any further use, reproduction, modification, sublicensing and distribution of the Covered Code. All sublicenses to the Covered Code which have been properly granted prior to termination shall survive any termination of this License. Provisions which, by their nature, should remain in effect beyond the termination of this License shall survive, including but not limited to Sections 3, 5, 8, 9, 10, 11, 12.2 and 13. No party will be liable to any other for compensation, indemnity or damages of any sort solely as a result of terminating this License in accordance with its terms, and termination of this License will be without prejudice to any other right or remedy of any party.\n\n13. Miscellaneous.\n\n13.1 Government End Users. The Covered Code is a \"commercial item\" as defined in FAR 2.101. Government software and technical data rights in the Covered Code include only those rights customarily provided to the public as defined in this License. This customary commercial license in technical data and software is provided in accordance with FAR 12.211 (Technical Data) and 12.212 (Computer Software) and, for Department of Defense purchases, DFAR 252.227-7015 (Technical Data -- Commercial Items) and 227.7202-3 (Rights in Commercial Computer Software or Computer Software Documentation). Accordingly, all U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n\n13.2 Relationship of Parties. This License will not be construed as creating an agency, partnership, joint venture or any other form of legal association between or among You, Apple or any Contributor, and You will not represent to the contrary, whether expressly, by implication, appearance or otherwise.\n\n13.3 Independent Development. Nothing in this License will impair Apple's right to acquire, license, develop, have others develop for it, market and/or distribute technology or products that perform the same or similar functions as, or otherwise compete with, Modifications, Larger Works, technology or products that You may develop, produce, market or distribute.\n\n13.4 Waiver; Construction. Failure by Apple or any Contributor to enforce any provision of this License will not be deemed a waiver of future enforcement of that or any other provision. Any law or regulation which provides that the language of a contract shall be construed against the drafter will not apply to this License.\n\n13.5 Severability. (a) If for any reason a court of competent jurisdiction finds any provision of this License, or portion thereof, to be unenforceable, that provision of the License will be enforced to the maximum extent permissible so as to effect the economic benefits and intent of the parties, and the remainder of this License will continue in full force and effect. (b) Notwithstanding the foregoing, if applicable law prohibits or restricts You from fully and/or specifically complying with Sections 2 and/or 3 or prevents the enforceability of either of those Sections, this License will immediately terminate and You must immediately discontinue any use of the Covered Code and destroy all copies of it that are in your possession or control.\n\n13.6 Dispute Resolution. Any litigation or other dispute resolution between You and Apple relating to this License shall take place in the Northern District of California, and You and Apple hereby consent to the personal jurisdiction of, and venue in, the state and federal courts within that District with respect to this License. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded.\n\n13.7 Entire Agreement; Governing Law. This License constitutes the entire agreement between the parties with respect to the subject matter hereof. This License shall be governed by the laws of the United States and the State of California, except that body of California law concerning conflicts of law.\n\nWhere You are located in the province of Quebec, Canada, the following clause applies: The parties hereby confirm that they have requested that this License and all related documents be drafted in English. Les parties ont exige que le present contrat et tous les documents connexes soient rediges en anglais.\n\nEXHIBIT A.\n\n\"Portions Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.\n\nThis file contains Original Code and/or Modifications of Original Code as defined in and that are subject to the Apple Public Source License Version 2.0 (the 'License'). You may not use this file except in compliance with the License. Please obtain a copy of the License at http://www.opensource.apple.com/apsl/ and read it before using this file.\n\nThe Original Code and all software distributed under the License are distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the specific language governing rights and limitations under the License.\"", + "json": "apsl-2.0.json", + "yaml": "apsl-2.0.yml", + "html": "apsl-2.0.html", + "license": "apsl-2.0.LICENSE" + }, + { + "license_key": "aptana-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-aptana-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Aptana Public License - 1.0\n\nTHE PROGRAM (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS APTANA PUBLIC LICENSE (\"LICENSE\"). THE PROGRAM IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. BY EXERCISING ANY RIGHTS TO THE PROGRAM PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE.\n\nTHIS LICENSE GRANTS PERMISSIONS ONLY FOR YOUR INTERNAL USE (AS DEFINED BELOW). IF YOU WISH TO DISTRIBUTE OR MAKE OTHER USES OF THE PROGRAM, PLEASE CONTACT APTANA.\n\n1. Definitions. When used in this License:\n\n\"Aptana\" means Aptana, Inc.\n\n\"Internal Use\" means use by You for Your personal or internal business purposes only, specifically excluding any use, distribution, or communication of the Program or any derivative work of the Program in any way such that the Program or any derivative work of the Program may be used by anyone other than You, whether those works are distributed or communicated to those persons or otherwise made available for use over a network.\n\n\"Program\" means the code and documentation owned by Aptana and distributed under this License by Aptana. In case of any doubt as to whether any code or documentation is part of the Program covered by this license, the notices placed by Aptana in the source code or documentation will govern\n\n\"You\" means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, You includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, control means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2. License Grants\n\na) Subject to the terms and conditions of this License, Aptana hereby grants to You a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, install, and execute the Program in source code and object code form, in each case solely for Your Internal Use.\n\nb) Subject to the terms and conditions of this License, Aptana hereby grants to You a worldwide, non-exclusive, royalty-free, patent license under Aptana's Licensed Patent Claims to make and use the Program in source code and object code form, in each case solely for Your Internal Use. As used herein, \"Licensed Patent Claims\" means only those patent claims owned by Aptana that are necessarily infringed by Your making and using the Program for Your Internal Use. Notwithstanding this Section 2.1(b), no patent license is granted: (i) for code that You delete from the Program or (ii) for infringements caused by: (1) the modification of the Program or (2) the combination of the Program with other software or devices.\n\n3. Certain Limitations and Conditions\n\nYou are not licensed under this License to distribute the Program or derivative works thereof, or to make any use other than Internal Use of the Program or derivative works thereof.\n\nYou may not remove or alter any copyright or other proprietary rights notices, or other means of attribution, contained within the Program.\n\n4. No Warranty\n\nAptana represents that to its knowledge as of the date of first publication of the Program under this License, it has sufficient copyright rights in the Program, to grant the copyright license set forth in this License.\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS SECTION 4, THE PROGRAM IS PROVIDED \"AS IS\", 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 and reproducing the Program and assume any and all risks associated with its exercise of rights under this License, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.\n\nWithout limiting the foregoing, Aptana provides no assurances that the Program does not infringe the patent or other intellectual property rights of any third party. Aptana disclaims any liability for claims based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, You hereby assume sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow You to use the Program, it is Your responsibility to acquire that license before using the Program.\n\n5. Limitation of Liability\n\nTo the maximum extent permissible by applicable law, in no event and under no legal theory, whether in tort (including negligence and strict liability), contract, or otherwise, shall Aptana 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 Program (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 Aptana has been advised of the possibility of such damages.\n\n6. General\n\nThis License represents the complete agreement concerning subject matter hereof. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\nExcept as expressly stated in Section 2 above, You receive no rights or licenses to the intellectual property of Aptana under this License, whether expressly, by implication, estoppel or otherwise. In particular, without limitation, this License does not grant permission to use the trade names, trademarks, service marks, or product names of Aptana. All rights in the Program not expressly granted under this License are reserved.\n\nIf You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Program shall terminate as of the date such litigation is filed.\n\nAll Your rights under this License shall terminate if You fail to comply with any of the terms or conditions of this License and do not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Your rights under this License terminate, You agree to cease use of the Program as soon as reasonably practicable. However, Your obligations under this License, and this Section 6, shall continue and survive.\n\nThis Agreement is governed by the laws of the State of California and the intellectual property laws of the United States of America, without reference to conflicts of laws principles that would require the application of the laws of any other jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. No party to this License will bring a legal action under this License more than one year after the cause of action arose. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. You agree that You alone are responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries) when You exercise rights under this License.", + "json": "aptana-1.0.json", + "yaml": "aptana-1.0.yml", + "html": "aptana-1.0.html", + "license": "aptana-1.0.LICENSE" + }, + { + "license_key": "aptana-exception-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-aptana-exception-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Appcelerator GPL Exception\nSection 7 Exception\n\nAs a special exception to the terms and conditions of the GNU General Public License Version 3 (the \"GPL\"): You are free to convey a modified version that is formed entirely from this file (for purposes of this exception, the \"Program\" under the GPL) and the works identified at http://www.aptana.com/legal/gpl (each an \"Excepted Work\"), which are conveyed to you by Appcelerator, Inc. and licensed under one or more of the licenses identified in the Excepted License List below (each an \"Excepted License\"), as long as:\n\n 1. you obey the GPL in all respects for the Program and the modified version, except for Excepted Works which are identifiable sections of the modified version, which are not derived from the Program, and which can reasonably be considered independent and separate works in themselves,\n 2. all Excepted Works which are identifiable sections of the modified version, which are not derived from the Program, and which can reasonably be considered independent and separate works in themselves,\n 1. are distributed subject to the Excepted License under which they were originally licensed, and\n 2. are not themselves modified from the form in which they are conveyed to you by Aptana, and\n 3. the object code or executable form of those sections are accompanied by the complete corresponding machine-readable source code for those sections, on the same medium as the corresponding object code or executable forms of those sections, and are licensed under the applicable Excepted License as the corresponding object code or executable forms of those sections, and\n 3. any works which are aggregated with the Program, or with a modified version on a volume of a storage or distribution medium in accordance with the GPL, are aggregates (as defined in Section 5 of the GPL) which can reasonably be considered independent and separate works in themselves and which are not modified versions of either the Program, a modified version, or an Excepted Work.\n\nIf the above conditions are not met, then the Program may only be copied, modified, distributed or used under the terms and conditions of the GPL or another valid licensing option from Appcelerator, Inc. Terms used but not defined in the foregoing paragraph have the meanings given in the GPL.", + "json": "aptana-exception-3.0.json", + "yaml": "aptana-exception-3.0.yml", + "html": "aptana-exception-3.0.html", + "license": "aptana-exception-3.0.LICENSE" + }, + { + "license_key": "arachni-psl-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-arachni-psl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Arachni Public Source License\n Version 1.0, June 2015\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work, that is intentionally submitted to Licensor for inclusion in\n the Work by the copyright owner or by an individual or Legal Entity\n authorized to submit on behalf of the copyright owner. For the purposes of\n this definition, \"submitted\" means any form of electronic, verbal, or\n written communication sent to the Licensor or its representatives, including\n but not limited to communication on electronic mailing lists, source code\n control systems, and issue tracking systems that are managed by, or on\n behalf of, the Licensor for the purpose of discussing and improving the Work,\n but excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n \"Commercialization\" shall mean intention to use this software for commercial \n advantage or monetary compensation.\n \n Cases of commercialization include but are not limited to:\n\n 1. Use of the Work to provide commercial managed/Software-as-a-Service services.\n 2. Distribution of the Work as a commercial product or as part of one.\n 3. Use or distribution of the Work as a value added service/product.\n\n Exempt cases:\n\n 1. Penetration testers (or penetration testing organizations) using\n this Work as part of their manual assessment toolkit.\n 2. Using this Work to assess the security of Your own systems.\n\n2. Basic Permissions\n\nUse of the Work is permitted free of charge, provided that said use does not \ninvolve Commercialization.\n\nAny use of the Work, in whole or in part, involving Commercialization, is\nstrictly prohibited without the prior written consent of Licensor.\n\nShould You require a license that allows for Commercialization, please contact\nLicensor at:\n license@arachni-scanner.com\n\nIn cases of uncertainty, clarifications can be provided by Licensor on a\ncase-by-case basis, please contact: \n license@arachni-scanner.com\n\n3. Redistribution\n\nRedistribution is permitted under the following conditions:\n\n1. Unmodified License is provided with the Work.\n2. Unmodified Copyright notices are provided with the Work.\n3. Does not conflict with Section 2.\n\n4. Copying\n\nCopying is permitted so long as it does not conflict with Section 3.\n\n5. Modification\n\nModification is permitted so long as it does not conflict with Section 3.\n\n6. Submission of Contributions\n\nUpon submission, Contributor grants to Licensor a perpetual, worldwide,\nnon-exclusive, no-charge, royalty-free, irrevocable copyright and patent license\nto reproduce, publicly display, publicly perform, sublicense, distribute, use, \noffer to sell, sell, import, and otherwise transfer the Contribution in Source \nor Object form.\n\n7. Trademarks\n\nThis License does not grant permission to use the trade names, trademarks, service\nmarks, or product names of the Licensor.\n\n8. Disclaimer of Warranty\n\nUnless required by applicable law or agreed to in writing, Licensor provides the \nWork (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT \nWARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without \nlimitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, \nor FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the\nappropriateness of using or redistributing the Work and assume any risks associated \nwith Your exercise of permissions under this License.\n\n9. Limitation of Liability\n\nIn no event and under no legal theory, whether in tort (including negligence), \ncontract, or otherwise, unless required by applicable law (such as deliberate \nand grossly negligent acts) or agreed to in writing, shall any Contributor be\nliable to You for damages, including any direct, indirect, special, incidental, \nor consequential damages of any character arising as a result of this License or \nout of the use or inability to use the Work (including but not limited to damages \nfor loss of goodwill, work stoppage, computer failure or malfunction, or any and\nall other commercial damages or losses), even if such Contributor has been advised \nof the possibility of such damages.", + "json": "arachni-psl-1.0.json", + "yaml": "arachni-psl-1.0.yml", + "html": "arachni-psl-1.0.html", + "license": "arachni-psl-1.0.LICENSE" + }, + { + "license_key": "aravindan-premkumar", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-aravindan-premkumar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This piece of code does not have any registered copyright and is free to be \nused as necessary. The user is free to modify as per the requirements. As a\nfellow developer, all that I expect and request for is to be given the \ncredit for intially developing this reusable code by not removing my name as \nthe author.", + "json": "aravindan-premkumar.json", + "yaml": "aravindan-premkumar.yml", + "html": "aravindan-premkumar.html", + "license": "aravindan-premkumar.LICENSE" + }, + { + "license_key": "argouml", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-argouml", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software and its\ndocumentation without fee, and without a written agreement is hereby\ngranted, provided that the above copyright notice and this paragraph\nappear in all copies.\n\nThis software program and documentation are copyrighted by The Regents\nof the University of California.\n\nThe software program and documentation are supplied \"AS IS\", without any\naccompanying services from The Regents. The Regents does not warrant\nthat the operation of the program will be uninterrupted or error-free.\n\nThe end-user understands that the program was developed for research\npurposes and is advised not to rely exclusively on the program for any\nreason.\n\nIN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY\nFOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,\nINCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS\nDOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF\nTHE POSSIBILITY OF SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA\nSPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN \"AS IS\" BASIS, AND THE\nUNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE,\nSUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.", + "json": "argouml.json", + "yaml": "argouml.yml", + "html": "argouml.html", + "license": "argouml.LICENSE" + }, + { + "license_key": "arm-cortex-mx", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-arm-cortex-mx", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ARM Limited (ARM) is supplying this software for use with Cortex-Mx \nprocessor based microcontrollers. This file can be freely distributed \nwithin development tools that are supporting such ARM based processors. \n\nTHIS SOFTWARE IS PROVIDED \"AS IS\". NO WARRANTIES, WHETHER EXPRESS, IMPLIED\nOR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\nARM SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR\nCONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.", + "json": "arm-cortex-mx.json", + "yaml": "arm-cortex-mx.yml", + "html": "arm-cortex-mx.html", + "license": "arm-cortex-mx.LICENSE" + }, + { + "license_key": "arm-llvm-sga", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-arm-llvm-sga", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ARM Limited\n\nSoftware Grant License Agreement (\"Agreement\")\n\nExcept for the license granted herein to you, ARM Limited (\"ARM\") reserves all\nright, title, and interest in and to the Software (defined below).\n\nDefinition\n\n\"Software\" means the code and documentation as well as any original work of\nauthorship, including any modifications or additions to an existing work, that\nis intentionally submitted by ARM to llvm.org (http://llvm.org) (\"LLVM\") for\ninclusion in, or documentation of, any of the products owned or managed by LLVM\n(the \"Work\"). For the purposes of this definition, \"submitted\" means any form of\nelectronic, verbal, or written communication sent to LLVM or its\nrepresentatives, including but not limited to communication on electronic\nmailing lists, source code control systems, and issue tracking systems that are\nmanaged by, or on behalf of, LLVM for the purpose of discussing and improving\nthe Work, but excluding communication that is conspicuously marked otherwise.\n\n1. Grant of Copyright License. Subject to the terms and conditions of this\n Agreement, ARM hereby grants to you and to recipients of the Software\n distributed by LLVM a perpetual, worldwide, non-exclusive, no-charge,\n royalty-free, irrevocable copyright license to reproduce, prepare derivative\n works of, publicly display, publicly perform, sublicense, and distribute the\n Software and such derivative works.\n\n2. Grant of Patent License. Subject to the terms and conditions of this\n Agreement, ARM hereby grants you and to recipients of the Software\n distributed by LLVM a perpetual, worldwide, non-exclusive, no-charge,\n royalty-free, irrevocable (except as stated in this section) patent license\n to make, have made, use, offer to sell, sell, import, and otherwise transfer\n the Work, where such license applies only to those patent claims licensable\n by ARM that are necessarily infringed by ARM's Software alone or by\n combination of the Software with the Work to which such Software was\n submitted. If any entity institutes patent litigation against ARM or any\n other entity (including a cross-claim or counterclaim in a lawsuit) alleging\n that ARM's Software, or the Work to which ARM has contributed constitutes\n direct or contributory patent infringement, then any patent licenses granted\n to that entity under this Agreement for the Software or Work shall terminate\n as of the date such litigation is filed.\n\nUnless required by applicable law or agreed to in writing, the software is\nprovided on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\neither express or implied, including, without limitation, any warranties or\nconditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\nPARTICULAR PURPOSE.", + "json": "arm-llvm-sga.json", + "yaml": "arm-llvm-sga.yml", + "html": "arm-llvm-sga.html", + "license": "arm-llvm-sga.LICENSE" + }, + { + "license_key": "arphic-public", + "category": "Copyleft", + "spdx_license_key": "Arphic-1999", + "other_spdx_license_keys": [ + "LicenseRef-scancode-arphic-public" + ], + "is_exception": false, + "is_deprecated": false, + "text": "ARPHIC PUBLIC LICENSE\n\nCopyright (C) 1999 Arphic Technology Co., Ltd.\n11Fl. No.168, Yung Chi Rd., Taipei, 110 Taiwan\nAll rights reserved except as specified below.\n\nEveryone is permitted to copy and distribute verbatim copies of this license\ndocument, but changing it is forbidden.\n\nPreamble\n\n The licenses for most software are designed to take away your freedom to share and\n change it. By contrast, the ARPHIC PUBLIC LICENSE specifically permits and\n encourages you to use this software, provided that you give the recipients all the\n rights that we gave you and make sure they can get the modifications of this\n software.\n\nLegal Terms\n\n0. Definitions:\n Throughout this License, \"Font\" means the TrueType fonts \"AR PL Mingti2L Big5\",\n \"AR PL KaitiM Big5\" (BIG-5 character set) and \"AR PL SungtiL GB\", \"AR PL KaitiM\n GB\" (GB character set) which are originally distributed by Arphic, and the\n derivatives of those fonts created through any modification including modifying\n glyph, reordering glyph, converting format, changing font name, or adding/deleting\n some characters in/from glyph table.\n\n \"PL\" means \"Public License\".\n\n \"Copyright Holder\" means whoever is named in the copyright or copyrights for the\n Font.\n\n \"You\" means the licensee, or person copying, redistributing or modifying the Font.\n\n \"Freely Available\" means that you have the freedom to copy or modify the Font as\n well as redistribute copies of the Font under the same conditions you received,\n not price. If you wish, you can charge for this service.\n\n1. Copying & Distribution\n\n You may copy and distribute verbatim copies of this Font in any medium, without\n restriction, provided that you retain this license file (ARPHICPL.TXT) unaltered\n in all copies.\n\n2. Modification\n\n You may otherwise modify your copy of this Font in any way, including modifying\n glyph, reordering glyph, converting format, changing font name, or adding/deleting\n some characters in/from glyph table, and copy and distribute such modifications\n under the terms of Section 1 above, provided that the following conditions are\n met:\n\n a) You must insert a prominent notice in each modified file stating how and when\n you changed that file.\n\n b) You must make such modifications Freely Available as a whole to all third\n parties under the terms of this License, such as by offering access to copy the\n modifications from a designated place, or distributing the modifications on a\n medium customarily used for software interchange.\n\n c) If the modified fonts normally reads commands interactively when run, you must\n cause it, when started running for such interactive use in the most ordinary way,\n to print or display an announcement including an appropriate copyright notice and\n a notice that there is no warranty (or else, saying that you provide a warranty)\n and that users may redistribute the Font under these conditions, and telling the\n user how to view a copy of this License.\n\n These requirements apply to the modified work as a whole. If identifiable sections\n of that work are not derived from the Font, and can be reasonably considered\n independent and separate works in themselves, then this License and its terms, do\n not apply to those sections when you distribute them as separate works. Therefore,\n mere aggregation of another work not based on the Font with the Font on a volume\n of a storage or distribution medium does not bring the other work under the scope\n of this License.\n\n3. Condition Subsequent\n\n You may not copy, modify, sublicense, or distribute the Font except as expressly\n provided under this License. Any attempt otherwise to copy, modify, sublicense or\n distribute the Font will automatically retroactively void your rights under this\n License. However, parties who have received copies or rights from you under this\n License will keep their licenses valid so long as such parties remain in full\n compliance.\n\n4. Acceptance\n\n You are not required to accept this License, since you have not signed it.\n However, nothing else grants you permission to copy, modify, sublicense or\n distribute the Font. These actions are prohibited by law if you do not accept this\n License. Therefore, by copying, modifying, sublicensing or distributing the Font,\n you indicate your acceptance of this License and all its terms and conditions.\n\n5. Automatic Receipt\n\n Each time you redistribute the Font, the recipient automatically receives a\n license from the original licensor to copy, distribute or modify the Font subject\n to these terms and conditions. You may not impose any further restrictions on the\n recipients' exercise of the rights granted herein. You are not responsible for\n enforcing compliance by third parties to this License.\n\n6. Contradiction\n\n If, as a consequence of a court judgment or allegation of patent infringement or\n for any other reason (not limited to patent issues), conditions are imposed on you\n (whether by court order, agreement or otherwise) that contradict the conditions of\n this License, they do not excuse you from the conditions of this License. If you\n cannot distribute so as to satisfy simultaneously your obligations under this\n License and any other pertinent obligations, then as a consequence you may not\n distribute the Font at all. For example, if a patent license would not permit\n royalty-free redistribution of the Font by all those who receive copies directly\n or indirectly through you, then the only way you could satisfy both it and this\n License would be to refrain entirely from distribution of the Font.\n\n If any portion of this section is held invalid or unenforceable under any\n particular circumstance, the balance of the section is intended to apply and the\n section as a whole is intended to apply in other circumstances.\n\n7. NO WARRANTY\n\n BECAUSE THE FONT IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE FONT, TO\n THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING\n THE COPYRIGHT HOLDERS OR OTHER PARTIES PROVIDE THE FONT \"AS IS\" WITHOUT WARRANTY\n OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE\n RISK AS TO THE QUALITY AND PERFORMANCE OF THE FONT IS WITH YOU. SHOULD THE FONT\n PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR\n CORRECTION.\n\n8. DAMAGES WAIVER\n\n UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING, IN NO EVENT WILL ANY\n COPYRIGHTT HOLDERS, OR OTHER PARTIES WHO MAY COPY, MODIFY OR REDISTRIBUTE THE FONT\n AS PERMITTED ABOVE, BE LIABLE TO YOU FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL,\n INCIDENTAL, SPECIAL OR EXEMPLARY DAMAGES ARISING OUT OF THE USE OR INABILITY TO\n USE THE FONT (INCLUDING BUT NOT LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA OR PROFITS; OR BUSINESS INTERRUPTION), EVEN IF SUCH\n HOLDERS OR OTHER PARTIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.", + "json": "arphic-public.json", + "yaml": "arphic-public.yml", + "html": "arphic-public.html", + "license": "arphic-public.LICENSE" + }, + { + "license_key": "array-input-method-pl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-array-input-method-pl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Array Input Method Public License\n\n1. OBJECTS\n\n Specification, design, and user interaction behavior designed for Array\n Input Method.\n All mapping tables and related information for Array Input Method.\n\n2. GRANTING\n\n License is granted, free of charge, to everyone if the conditions described\n in PERMISSION AND RESPONSIBILITY are met.\n\n3. PERMISSION AND RESPONSIBILITY\n\n A. Permission:\n\n 1. Grant of copyright license\n\n Subject to the terms and conditions of this License, every one is\n granted a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\n irrevocable copyright license to reproduce, prepare Derivative Works\n of, publicly display, publicly perform, sub-license, and distribute the\n Work and such Derivative Works\n\n 2. Grant of patent license\n\n No patent is issued for Array Input Method.\n And the inventor will never claim patents for Array Input Method.\n\n B. Responsibility:\n\n 1. While distributing the Array Input Method or derivative works\n thereof, Licensee may choose to offer, and charge a fee for, acceptance\n of support, warranty, indemnity, or other liability obligations and/or\n rights consistent with this License. However, in accepting such\n obligations, Licensee may act only on his own behalf and on his sole\n responsibility, not on behalf of the licensor, and only if Licensee\n agrees to indemnify, defend, and hold the licensor harmless for any\n liability incurred by, or claims asserted against, the licensor by\n reason of Licensee's accepting any such warranty or additional liability.\n\n4. CLAIM FROM LICENSOR\n\n This license is issued by the original inventor and copyright holder of\n Array Input Method, who owns the full and original rights to the Array\n Input Method.\n\n This license is the formal license for Array Input Method. A licensee does\n not need to request additional license documentation from the licensor.\n\nISSUED DATE: 2010/11/24\nBY LICENSOR: Inventor of Array Input Method, Ming-Te Liao, \u5ed6\u660e\u5fb7\n\nREVISE DATE: 2011/12/20\nDelete clause 3-B-2. \u201c\u2026the licensee must inform the original author of Array Input Method\u2026\u201d\n\nREVISE DATE: 2013/07/05\nReplaced B-1, Due to some vague wording problem in this section, replace \"hold\neveryone else harmless\u201dwith \u201chold the licensor harmless\u201d etc. , the original text was :\n\u201c1. Licensee may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity,\nor other liability obligations and/or rights consistent with this License. However, in accepting such\nobligations, licensee may act only on his own behalf and on his sole responsibility, not on behalf of\nanyone else, and only if the licensee agrees toindemnify, defend, and hold everyone else harmless\nfor any liability incurred by, or claims asserted against, such everyone else by reason of licensee's\naccepting any such warranty or additional liability.", + "json": "array-input-method-pl.json", + "yaml": "array-input-method-pl.yml", + "html": "array-input-method-pl.html", + "license": "array-input-method-pl.LICENSE" + }, + { + "license_key": "artistic-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "Artistic-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Preamble\n\nThe intent of this document is to state the conditions under which a Package may\nbe copied, such that the Copyright Holder maintains some semblance of artistic\ncontrol over the development of the package, while giving the users of the\npackage the right to use and distribute the Package in a more-or-less customary\nfashion, plus the right to make reasonable modifications.\n\nDefinitions:\n\n\"Package\" refers to the collection of files distributed by the Copyright Holder,\nand derivatives of that collection of files created through textual modification.\n\n\"Standard Version\" refers to such a Package if it has not been modified, or has\nbeen modified in accordance with the wishes of the Copyright Holder.\n\n\"Copyright Holder\" is whoever is named in the copyright or copyrights for the\npackage.\n\n\"You\" is you, if you're thinking about copying or distributing this Package.\n\n\"Reasonable copying fee\" is whatever you can justify on the basis of media cost,\nduplication charges, time of people involved, and so on. (You will not be\nrequired to justify it to the Copyright Holder, but only to the computing\ncommunity at large as a market that must bear the fee.)\n\n\"Freely Available\" means that no fee is charged for the item itself, though\nthere may be fees involved in handling the item. It also means that recipients\nof the item may redistribute it under the same conditions they received it.\n\n1. You may make and give away verbatim copies of the source form of the Standard\nVersion of this Package without restriction, provided that you duplicate all of\nthe original copyright notices and associated disclaimers.\n\n2. You may apply bug fixes, portability fixes and other modifications derived\nfrom the Public Domain or from the Copyright Holder. A Package modified in such\na way shall still be considered the Standard Version.\n\n3. You may otherwise modify your copy of this Package in any way, provided that\nyou insert a prominent notice in each changed file stating how and when you\nchanged that file, and provided that you do at least ONE of the following:\n\na) place your modifications in the Public Domain or otherwise make them Freely\nAvailable, such as by posting said modifications to Usenet or an equivalent\nmedium, or placing the modifications on a major archive site such as ftp.uu.net,\nor by allowing the Copyright Holder to include your modifications in the\nStandard Version of the Package.\n\nb) use the modified Package only within your corporation or organization.\n\nc) rename any non-standard executables so the names do not conflict with\nstandard executables, which must also be provided, and provide a separate manual\npage for each non-standard executable that clearly documents how it differs from\nthe Standard Version.\n\nd) make other distribution arrangements with the Copyright Holder.\n\n4. You may distribute the programs of this Package in object code or executable\nform, provided that you do at least ONE of the following:\n\na) distribute a Standard Version of the executables and library files, together\nwith instructions (in the manual page or equivalent) on where to get the\nStandard Version.\n\nb) accompany the distribution with the machine-readable source of the Package\nwith your modifications.\n\nc) accompany any non-standard executables with their corresponding Standard\nVersion executables, giving the non-standard executables non-standard names, and\nclearly documenting the differences in manual pages (or equivalent), together\nwith instructions on where to get the Standard Version.\n\nd) make other distribution arrangements with the Copyright Holder.\n\n5. You may charge a reasonable copying fee for any distribution of this Package.\nYou may charge any fee you choose for support of this Package. You may not\ncharge a fee for this Package itself. However, you may distribute this Package\nin aggregate with other (possibly commercial) programs as part of a larger\n(possibly commercial) software distribution provided that you do not advertise\nthis Package as a product of your own.\n\n6. The scripts and library files supplied as input to or produced as output from\nthe programs of this Package do not automatically fall under the copyright of\nthis Package, but belong to whomever generated them, and may be sold\ncommercially, and may be aggregated with this Package.\n\n7. C or perl subroutines supplied by you and linked into this Package shall not\nbe considered part of this Package.\n\n8. The name of the Copyright Holder may not be used to endorse or promote\nproducts derived from this software without specific prior written permission.\n\n9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF\nMERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nThe End", + "json": "artistic-1.0.json", + "yaml": "artistic-1.0.yml", + "html": "artistic-1.0.html", + "license": "artistic-1.0.LICENSE" + }, + { + "license_key": "artistic-1.0-cl8", + "category": "Copyleft Limited", + "spdx_license_key": "Artistic-1.0-cl8", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Preamble\n\nThe intent of this document is to state the conditions under which a Package may\nbe copied, such that the Copyright Holder maintains some semblance of artistic\ncontrol over the development of the package, while giving the users of the\npackage the right to use and distribute the Package in a more-or-less customary\nfashion, plus the right to make reasonable modifications.\n\nDefinitions:\n\n\"Package\" refers to the collection of files distributed by the Copyright Holder,\nand derivatives of that collection of files created through textual modification.\n\n\"Standard Version\" refers to such a Package if it has not been modified, or has\nbeen modified in accordance with the wishes of the Copyright Holder.\n\n\"Copyright Holder\" is whoever is named in the copyright or copyrights for the\npackage.\n\n\"You\" is you, if you're thinking about copying or distributing this Package.\n\n\"Reasonable copying fee\" is whatever you can justify on the basis of media cost,\nduplication charges, time of people involved, and so on. (You will not be\nrequired to justify it to the Copyright Holder, but only to the computing\ncommunity at large as a market that must bear the fee.)\n\n\"Freely Available\" means that no fee is charged for the item itself, though\nthere may be fees involved in handling the item. It also means that recipients\nof the item may redistribute it under the same conditions they received it.\n\n1. You may make and give away verbatim copies of the source form of the Standard\nVersion of this Package without restriction, provided that you duplicate all of\nthe original copyright notices and associated disclaimers.\n\n2. You may apply bug fixes, portability fixes and other modifications derived\nfrom the Public Domain or from the Copyright Holder. A Package modified in such\na way shall still be considered the Standard Version.\n\n3. You may otherwise modify your copy of this Package in any way, provided that\nyou insert a prominent notice in each changed file stating how and when you\nchanged that file, and provided that you do at least ONE of the following:\n\na) place your modifications in the Public Domain or otherwise make them Freely\nAvailable, such as by posting said modifications to Usenet or an equivalent\nmedium, or placing the modifications on a major archive site such as ftp.uu.net,\nor by allowing the Copyright Holder to include your modifications in the\nStandard Version of the Package.\n\nb) use the modified Package only within your corporation or organization.\n\nc) rename any non-standard executables so the names do not conflict with\nstandard executables, which must also be provided, and provide a separate manual\npage for each non-standard executable that clearly documents how it differs from\nthe Standard Version.\n\nd) make other distribution arrangements with the Copyright Holder.\n\n4. You may distribute the programs of this Package in object code or executable\nform, provided that you do at least ONE of the following:\n\na) distribute a Standard Version of the executables and library files, together\nwith instructions (in the manual page or equivalent) on where to get the\nStandard Version.\n\nb) accompany the distribution with the machine-readable source of the Package\nwith your modifications.\n\nc) accompany any non-standard executables with their corresponding Standard\nVersion executables, giving the non-standard executables non-standard names, and\nclearly documenting the differences in manual pages (or equivalent), together\nwith instructions on where to get the Standard Version.\n\nd) make other distribution arrangements with the Copyright Holder.\n\n5. You may charge a reasonable copying fee for any distribution of this Package.\nYou may charge any fee you choose for support of this Package. You may not\ncharge a fee for this Package itself. However, you may distribute this Package\nin aggregate with other (possibly commercial) programs as part of a larger\n(possibly commercial) software distribution provided that you do not advertise\nthis Package as a product of your own.\n\n6. The scripts and library files supplied as input to or produced as output from\nthe programs of this Package do not automatically fall under the copyright of\nthis Package, but belong to whomever generated them, and may be sold\ncommercially, and may be aggregated with this Package.\n\n7. C or perl subroutines supplied by you and linked into this Package shall not\nbe considered part of this Package.\n\n8.Aggregation of this Package with a commercial distribution is always permitted\nprovided that the use of this Package is embedded; that is, when no overt\nattempt is made to make this Package's interfaces visible to the end user of the\ncommercial distribution. Such use shall not be construed as a distribution of\nthis Package.\n\n9. The name of the Copyright Holder may not be used to endorse or promote\nproducts derived from this software without specific prior written permission.\n\n10. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF\nMERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nThe End", + "json": "artistic-1.0-cl8.json", + "yaml": "artistic-1.0-cl8.yml", + "html": "artistic-1.0-cl8.html", + "license": "artistic-1.0-cl8.LICENSE" + }, + { + "license_key": "artistic-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "Artistic-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " The Artistic License 2.0\n\n Copyright (c) 2000-2006, The Perl Foundation.\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nPreamble\n\nThis license establishes the terms under which a given free software\nPackage may be copied, modified, distributed, and/or redistributed.\nThe intent is that the Copyright Holder maintains some artistic\ncontrol over the development of that Package while still keeping the\nPackage available as open source and free software.\n\nYou are always permitted to make arrangements wholly outside of this\nlicense directly with the Copyright Holder of a given Package. If the\nterms of this license do not permit the full use that you propose to\nmake of the Package, you should contact the Copyright Holder and seek\na different licensing arrangement. \n\nDefinitions\n\n \"Copyright Holder\" means the individual(s) or organization(s)\n named in the copyright notice for the entire Package.\n\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n\n \"You\" and \"your\" means any person who would like to copy,\n distribute, or modify the Package.\n\n \"Package\" means the collection of files distributed by the\n Copyright Holder, and derivatives of that collection and/or of\n those files. A given Package may consist of either the Standard\n Version, or a Modified Version.\n\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n\n \"Distributor Fee\" means any fee that you charge for Distributing\n this Package or providing support for this Package to another\n party. It does not mean licensing fees.\n\n \"Standard Version\" refers to the Package if it has not been\n modified, or has been modified only in ways explicitly requested\n by the Copyright Holder.\n\n \"Modified Version\" means the Package, if it has been changed, and\n such changes were not explicitly requested by the Copyright\n Holder. \n\n \"Original License\" means this Artistic License as Distributed with\n the Standard Version of the Package, in its current version or as\n it may be modified by The Perl Foundation in the future.\n\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n\n \"Compiled\" form means the compiled bytecode, object code, binary,\n or any other form resulting from mechanical transformation or\n translation of the Source form.\n\n\nPermission for Use and Modification Without Distribution\n\n(1) You are permitted to use the Standard Version and create and use\nModified Versions for any purpose without restriction, provided that\nyou do not Distribute the Modified Version.\n\n\nPermissions for Redistribution of the Standard Version\n\n(2) You may Distribute verbatim copies of the Source form of the\nStandard Version of this Package in any medium without restriction,\neither gratis or for a Distributor Fee, provided that you duplicate\nall of the original copyright notices and associated disclaimers. At\nyour discretion, such verbatim copies may or may not include a\nCompiled form of the Package.\n\n(3) You may apply any bug fixes, portability changes, and other\nmodifications made available from the Copyright Holder. The resulting\nPackage will still be considered the Standard Version, and as such\nwill be subject to the Original License.\n\n\nDistribution of Modified Versions of the Package as Source \n\n(4) You may Distribute your Modified Version as Source (either gratis\nor for a Distributor Fee, and with or without a Compiled form of the\nModified Version) provided that you clearly document how it differs\nfrom the Standard Version, including, but not limited to, documenting\nany non-standard features, executables, or modules, and provided that\nyou do at least ONE of the following:\n\n (a) make the Modified Version available to the Copyright Holder\n of the Standard Version, under the Original License, so that the\n Copyright Holder may include your modifications in the Standard\n Version.\n\n (b) ensure that installation of your Modified Version does not\n prevent the user installing or running the Standard Version. In\n addition, the Modified Version must bear a name that is different\n from the name of the Standard Version.\n\n (c) allow anyone who receives a copy of the Modified Version to\n make the Source form of the Modified Version available to others\n under\n \n (i) the Original License or\n\n (ii) a license that permits the licensee to freely copy,\n modify and redistribute the Modified Version using the same\n licensing terms that apply to the copy that the licensee\n received, and requires that the Source form of the Modified\n Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor\n Fees are allowed.\n\n\nDistribution of Compiled Forms of the Standard Version \nor Modified Versions without the Source\n\n(5) You may Distribute Compiled forms of the Standard Version without\nthe Source, provided that you include complete instructions on how to\nget the Source of the Standard Version. Such instructions must be\nvalid at the time of your distribution. If these instructions, at any\ntime while you are carrying out such distribution, become invalid, you\nmust provide new instructions on demand or cease further distribution.\nIf you provide valid instructions or cease distribution within thirty\ndays after you become aware that the instructions are invalid, then\nyou do not forfeit any of your rights under this license.\n\n(6) You may Distribute a Modified Version in Compiled form without\nthe Source, provided that you comply with Section 4 with respect to\nthe Source of the Modified Version.\n\n\nAggregating or Linking the Package \n\n(7) You may aggregate the Package (either the Standard Version or\nModified Version) with other packages and Distribute the resulting\naggregation provided that you do not charge a licensing fee for the\nPackage. Distributor Fees are permitted, and licensing fees for other\ncomponents in the aggregation are permitted. The terms of this license\napply to the use and Distribution of the Standard or Modified Versions\nas included in the aggregation.\n\n(8) You are permitted to link Modified and Standard Versions with\nother works, to embed the Package in a larger work of your own, or to\nbuild stand-alone binary or bytecode versions of applications that\ninclude the Package, and Distribute the result without restriction,\nprovided the result does not expose a direct interface to the Package.\n\n\nItems That are Not Considered Part of a Modified Version \n\n(9) Works (including, but not limited to, modules and scripts) that\nmerely extend or make use of the Package, do not, by themselves, cause\nthe Package to be a Modified Version. In addition, such works are not\nconsidered parts of the Package itself, and are not subject to the\nterms of this license.\n\n\nGeneral Provisions\n\n(10) Any use, modification, and distribution of the Standard or\nModified Versions is governed by this Artistic License. By using,\nmodifying or distributing the Package, you accept this license. Do not\nuse, modify, or distribute the Package, if you do not accept this\nlicense.\n\n(11) If your Modified Version has been derived from a Modified\nVersion made by someone other than you, you are nevertheless required\nto ensure that your Modified Version complies with the requirements of\nthis license.\n\n(12) This license does not grant you the right to use any trademark,\nservice mark, tradename, or logo of the Copyright Holder.\n\n(13) This license includes the non-exclusive, worldwide,\nfree-of-charge patent license to make, have made, use, offer to sell,\nsell, import and otherwise transfer the Package with respect to any\npatent claims licensable by the Copyright Holder that are necessarily\ninfringed by the Package. If you institute patent litigation\n(including a cross-claim or counterclaim) against any party alleging\nthat the Package constitutes direct or contributory patent\ninfringement, then this Artistic License to you shall terminate on the\ndate that such litigation is filed.\n\n(14) Disclaimer of Warranty:\nTHE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS \"AS\nIS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\nNON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL\nLAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "artistic-2.0.json", + "yaml": "artistic-2.0.yml", + "html": "artistic-2.0.html", + "license": "artistic-2.0.LICENSE" + }, + { + "license_key": "artistic-clarified", + "category": "Copyleft Limited", + "spdx_license_key": "ClArtistic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " The Clarified Artistic License\n\n Preamble\n\nThe intent of this document is to state the conditions under which a\nPackage may be copied, such that the Copyright Holder maintains some\nsemblance of artistic control over the development of the package,\nwhile giving the users of the package the right to use and distribute\nthe Package in a more-or-less customary fashion, plus the right to make\nreasonable modifications.\n\nDefinitions:\n\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n\n \"Distribution fee\" is a fee you charge for providing a copy\n of this Package to another party.\n\n \"Freely Available\" means that no fee is charged for the right to\n use the item, though there may be fees involved in handling the\n item. It also means that recipients of the item may redistribute\n it under the same conditions they received it.\n\n1. You may make and give away verbatim copies of the source form of the\nStandard Version of this Package without restriction, provided that you\nduplicate all of the original copyright notices and associated disclaimers.\n\n2. You may apply bug fixes, portability fixes and other modifications\nderived from the Public Domain, or those made Freely Available, or from\nthe Copyright Holder. A Package modified in such a way shall still be\nconsidered the Standard Version.\n\n3. You may otherwise modify your copy of this Package in any way, provided\nthat you insert a prominent notice in each changed file stating how and\nwhen you changed that file, and provided that you do at least ONE of the\nfollowing:\n\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or an\n equivalent medium, or placing the modifications on a major network\n archive site allowing unrestricted access to them, or by allowing the\n Copyright Holder to include your modifications in the Standard Version\n of the Package.\n\n b) use the modified Package only within your corporation or organization.\n\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n\n d) make other distribution arrangements with the Copyright Holder.\n\n e) permit and encourge anyone who receives a copy of the modified Package\n permission to make your modifications Freely Available\n in some specific way.\n\n\n4. You may distribute the programs of this Package in object code or\nexecutable form, provided that you do at least ONE of the following:\n\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n\n d) make other distribution arrangements with the Copyright Holder.\n\n e) offer the machine-readable source of the Package, with your\n modifications, by mail order.\n\n5. You may charge a distribution fee for any distribution of this Package.\nIf you offer support for this Package, you may charge any fee you choose\nfor that support. You may not charge a license fee for the right to use\nthis Package itself. You may distribute this Package in aggregate with\nother (possibly commercial and possibly nonfree) programs as part of a\nlarger (possibly commercial and possibly nonfree) software distribution,\nand charge license fees for other parts of that software distribution,\nprovided that you do not advertise this Package as a product of your own.\nIf the Package includes an interpreter, You may embed this Package's\ninterpreter within an executable of yours (by linking); this shall be\nconstrued as a mere form of aggregation, provided that the complete\nStandard Version of the interpreter is so embedded.\n\n6. The scripts and library files supplied as input to or produced as\noutput from the programs of this Package do not automatically fall\nunder the copyright of this Package, but belong to whoever generated\nthem, and may be sold commercially, and may be aggregated with this\nPackage. If such scripts or library files are aggregated with this\nPackage via the so-called \"undump\" or \"unexec\" methods of producing a\nbinary executable image, then distribution of such an image shall\nneither be construed as a distribution of this Package nor shall it\nfall under the restrictions of Paragraphs 3 and 4, provided that you do\nnot represent such an executable image as a Standard Version of this\nPackage.\n\n7. C subroutines (or comparably compiled subroutines in other\nlanguages) supplied by you and linked into this Package in order to\nemulate subroutines and variables of the language defined by this\nPackage shall not be considered part of this Package, but are the\nequivalent of input as in Paragraph 6, provided these subroutines do\nnot change the language in any way that would cause it to fail the\nregression tests for the language.\n\n8. Aggregation of the Standard Version of the Package with a commercial\ndistribution is always permitted provided that the use of this Package\nis embedded; that is, when no overt attempt is made to make this Package's\ninterfaces visible to the end user of the commercial distribution.\nSuch use shall not be construed as a distribution of this Package.\n\n9. The name of the Copyright Holder may not be used to endorse or promote\nproducts derived from this software without specific prior written permission.\n\n10. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\nWARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\n The End", + "json": "artistic-clarified.json", + "yaml": "artistic-clarified.yml", + "html": "artistic-clarified.html", + "license": "artistic-clarified.LICENSE" + }, + { + "license_key": "artistic-dist-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-artistic-1988-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " The \"Artistic License\"\n\n Preamble\n\nThe intent of this document is to state the conditions under which a\nPackage may be copied, such that the Copyright Holder maintains some\nsemblance of artistic control over the development of the Package,\nwhile giving the users of the package the right to use and distribute\nthe Package in a more-or-less customary fashion, plus the right to make\nreasonable modifications.\n\nIt also grants you the rights to reuse parts of a Package in your own\nprograms without transferring this License to those programs, provided\nthat you meet some reasonable requirements.\n\nDefinitions:\n\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n\n1. You may make and give away verbatim copies of the source form of the\nStandard Version of this Package without restriction, provided that you\nduplicate all of the original copyright notices and associated disclaimers.\n\n2. You may apply bug fixes, portability fixes and other modifications\nderived from the Public Domain or from the Copyright Holder. A Package\nmodified in such a way shall still be considered the Standard Version.\n\n3. You may otherwise modify your copy of this Package in any way, provided\nthat you insert a prominent notice in each changed file stating how and\nwhen you changed that file, and provided that you do at least ONE of the\nfollowing:\n\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n\n b) use the modified Package only within your corporation or organization.\n\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n\n d) make other distribution arrangements with the Copyright Holder.\n\n4. You may distribute the programs of this Package in object code or\nexecutable form, provided that you do at least ONE of the following:\n\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n\n d) make other distribution arrangements with the Copyright Holder.\n\n5. You may charge a reasonable copying fee for any distribution of this\nPackage. You may charge any fee you choose for support of this\nPackage. You may not charge a fee for this Package itself. However,\nyou may distribute this Package in aggregate with other (possibly\ncommercial) programs as part of a larger (possibly commercial) software\ndistribution provided that you do not advertise this Package as a\nproduct of your own.\n\n6. The scripts and library files supplied as input to or produced as\noutput from the programs of this Package do not automatically fall\nunder the copyright of this Package, but belong to whoever generated\nthem, and may be sold commercially, and may be aggregated with this\nPackage. If such scripts or library files are aggregated with this\nPackage via the so-called \"undump\" or \"unexec\" methods of producing a\nbinary executable image, then distribution of such an image shall\nneither be construed as a distribution of this Package nor shall it\nfall under the restrictions of Paragraphs 3 and 4, provided that you do\nnot represent such an executable image as a Standard Version of this\nPackage.\n\n7. You may reuse parts of this Package in your own programs, provided that\nyou explicitly state where you got them from, in the source code (and, left\nto your courtesy, in the documentation), duplicating all the associated\ncopyright notices and disclaimers. Besides your changes, if any, must be\nclearly marked as such. Parts reused that way will no longer fall under this\nlicense if, and only if, the name of your program(s) have no immediate\nconnection with the name of the Package itself or its associated programs.\nYou may then apply whatever restrictions you wish on the reused parts or\nchoose to place them in the Public Domain--this will apply only within the\ncontext of your package.\n\n8. The name of the Copyright Holder may not be used to endorse or promote\nproducts derived from this software without specific prior written permission.\n\n9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\nWARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\n The End", + "json": "artistic-dist-1.0.json", + "yaml": "artistic-dist-1.0.yml", + "html": "artistic-dist-1.0.html", + "license": "artistic-dist-1.0.LICENSE" + }, + { + "license_key": "artistic-perl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "Artistic-1.0-Perl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " The \"Artistic License\"\n\n Preamble\n\nThe intent of this document is to state the conditions under which a\nPackage may be copied, such that the Copyright Holder maintains some\nsemblance of artistic control over the development of the package,\nwhile giving the users of the package the right to use and distribute\nthe Package in a more-or-less customary fashion, plus the right to make\nreasonable modifications.\n\nDefinitions:\n\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n\n1. You may make and give away verbatim copies of the source form of the\nStandard Version of this Package without restriction, provided that you\nduplicate all of the original copyright notices and associated disclaimers.\n\n2. You may apply bug fixes, portability fixes and other modifications\nderived from the Public Domain or from the Copyright Holder. A Package\nmodified in such a way shall still be considered the Standard Version.\n\n3. You may otherwise modify your copy of this Package in any way, provided\nthat you insert a prominent notice in each changed file stating how and\nwhen you changed that file, and provided that you do at least ONE of the\nfollowing:\n\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n\n b) use the modified Package only within your corporation or organization.\n\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n\n d) make other distribution arrangements with the Copyright Holder.\n\n4. You may distribute the programs of this Package in object code or\nexecutable form, provided that you do at least ONE of the following:\n\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n\n d) make other distribution arrangements with the Copyright Holder.\n\n5. You may charge a reasonable copying fee for any distribution of this\nPackage. You may charge any fee you choose for support of this\nPackage. You may not charge a fee for this Package itself. However,\nyou may distribute this Package in aggregate with other (possibly\ncommercial) programs as part of a larger (possibly commercial) software\ndistribution provided that you do not advertise this Package as a\nproduct of your own. You may embed this Package's interpreter within\nan executable of yours (by linking); this shall be construed as a mere\nform of aggregation, provided that the complete Standard Version of the\ninterpreter is so embedded.\n\n6. The scripts and library files supplied as input to or produced as\noutput from the programs of this Package do not automatically fall\nunder the copyright of this Package, but belong to whoever generated\nthem, and may be sold commercially, and may be aggregated with this\nPackage. If such scripts or library files are aggregated with this\nPackage via the so-called \"undump\" or \"unexec\" methods of producing a\nbinary executable image, then distribution of such an image shall\nneither be construed as a distribution of this Package nor shall it\nfall under the restrictions of Paragraphs 3 and 4, provided that you do\nnot represent such an executable image as a Standard Version of this\nPackage.\n\n7. C subroutines (or comparably compiled subroutines in other\nlanguages) supplied by you and linked into this Package in order to\nemulate subroutines and variables of the language defined by this\nPackage shall not be considered part of this Package, but are the\nequivalent of input as in Paragraph 6, provided these subroutines do\nnot change the language in any way that would cause it to fail the\nregression tests for the language.\n\n8. Aggregation of this Package with a commercial distribution is always\npermitted provided that the use of this Package is embedded; that is,\nwhen no overt attempt is made to make this Package's interfaces visible\nto the end user of the commercial distribution. Such use shall not be\nconstrued as a distribution of this Package.\n\n9. The name of the Copyright Holder may not be used to endorse or promote\nproducts derived from this software without specific prior written permission.\n\n10. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\nWARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\n The End", + "json": "artistic-perl-1.0.json", + "yaml": "artistic-perl-1.0.yml", + "html": "artistic-perl-1.0.html", + "license": "artistic-perl-1.0.LICENSE" + }, + { + "license_key": "aslp", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-aslp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Artop Software License for Preparatory Development (ASLP)\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ARTOP SOFTWARE LICENSE FOR PREPARATORY DEVELOPMENT (ASLP) (\"LICENSE\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n\n1. DEFINITIONS\n\"Affiliated Company\" means, with respect to any party, any other legal entity that, directly, or indirectly, controls, or is controlled by or is under common control with, such party. For purposes of this definition, \"control\" (including the terms \"controlling,\" \"controlled by\" and \"under common control with\"), as used with respect to such party, shall mean the possession, directly or indirectly, of the power to direct or cause the direction of management or policies of such party through the majority ownership of voting securities. Any Affiliated Company shall not be deemed as third party in this ASLP.\n\n\"AUTOSAR\" means a system architecture that is standardized by the AUTOSAR development cooperation.\n\n\"AUTOSAR Associate Partner\" means a party committed to the commercial exploitation of AUTOSAR, which is effectively bound to the terms of an AUTOSAR Associate Partner agreement.\n\n\"AUTOSAR Core Partner\" means a party which is effectively bound to the terms of the AUTOSAR development agreement.\n\n\"AUTOSAR Development License\" means the license granted by the AUTOSAR development cooperation for the development of future AUTOSAR releases as defined in the respective AUTOSAR agreement. For example such a license is only granted to current AUTOSAR Core Partners, AUTOSAR Premium Partners and AUTOSAR Development Partners.\n\n\"AUTOSAR Development Material\" means a general term for preparatory documents and specifications (including AUTOSAR Released Materials) that are used by the AUTOSAR development cooperation for the development of future AUTOSAR releases also including already released materials. The use of AUTOSAR Development Materials and the contained intellectual property is regulated by the AUTOSAR Development License and other AUTOSAR regulations.\n\n\"AUTOSAR Development Partner\" means a party interested in the development and/or committed to the commercial exploitation of AUTOSAR, which is effectively bound to the terms of an AUTOSAR Development Partner agreement.\n\n\"AUTOSAR Exploitation License\" means the license granted by the AUTOSAR development cooperation for the automotive exploitation of AUTOSAR as defined in the respective AUTOSAR agreement. For example such a license is granted to current AUTOSAR Core Partners, AUTOSAR Premium Partners, AUTOSAR Development Partners and AUTOSAR Associate Partners.\n\n\"AUTOSAR Premium Partner\" means a party interested in the development and/or committed to the commercial exploitation of AUTOSAR, which is effectively bound to the terms of an AUTOSAR Premium Partner agreement.\n\n\"AUTOSAR Released Material\" means a general term for documents and specifications that are officially released by the AUTOSAR development cooperation. The use of AUTOSAR Released Material and the contained intellectual property is regulated by the AUTOSAR Exploitation License and other AUTOSAR regulations.\n\n\"Contribution\" means:\na) in the case of the initial Contributor, the initial code and documentation distributed under this License, and\nb) in the case of each subsequent Contributor:\ni) changes to the Program, and\nii) additions to the Program;\nwhere such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.\n\n\"Contributor\" means any party that has an AUTOSAR Development License that distributes or provides Contributions to the Program.\n\n\"Licensed Patents\" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.\n\n\"Program\" means the Contributions distributed in accordance with this License.\n\n\"Recipient\" means any party that has an AUTOSAR Development License that receives the Program under this License, including all Contributors.\n\n2. GRANT OF RIGHTS\nGrant of Rights by Contributor to Recipient\n\na) Copyright License\nSubject to the terms of this License, each Contributor hereby grants Recipient a nonexclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, display, perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.\n\nb) Patent License\nSubject to the terms of this License, each Contributor hereby grants Recipient a nonexclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.\n\nc) Licensing under the Terms of the Artop Software License Based on AUTOSAR Released Material (ASLR)\nSubject to the terms of this License, each Contributor hereby grants Recipient the right to license the Program to third parties under the terms of the ASLR, provided that:\n(i) the AUTOSAR Development Materials used in the Program have been officially released entirely or partially by the AUTOSAR development cooperation;\n(ii) Recipient removes parts of the Program that have not been officially released by the AUTOSAR development cooperation as required by AUTOSAR regulations.\n\nThe AUTOSAR development cooperation is not obliged to use the entire set of AUTOSAR Development Materials for an official release. AUTOSAR Released Materials can be based on subsets of the AUTOSAR Development Materials.\n\nd) Third Party Intellectual Property Rights\nRecipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any.\n\nFor example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.\n\ne) Contributor Represents Sufficient Rights\nEach Contributor represents that to its knowledge it has sufficient rights in its Contribution, if any, to grant the licenses set forth in this License.\n\n3. NON-ASSERTION\nEach Recipient agrees not to assert against any other Recipient exploiting Artop commercially regarding any intellectual property rights used by the Program.\n\nAny beneficiary of this non-assertion may enforce it for its own benefit, provided that it grants similar non-assertion commitments to the Recipient or properly obligated successors in rights to the respective intellectual property.\n\n4. REQUIREMENTS\n4.1 Distribution of the Program in Object Code\nA Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:\na) it complies with the terms and conditions of this License; and\nb) its license agreement:\ni) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;\nii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;\niii) states that any provisions which differ from this License are offered by that Contributor alone and not by any other party; and\niv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.\n4.2 Distribution of the Program in Source Code\nWhen the Program is made available in source code form:\na) it must be made available under this License; and\nb) a copy of this License must be included with each copy of the Program.\n4.3 Alteration of Copyrights\nContributors may not remove or alter any copyright notices contained within the Program.\n4.4 Identification of the Original Contributor\nEach Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.\n4.5 AUTOSAR Requirements\nThe Contributor and the Recipient must have an AUTOSAR Development License for the AUTOSAR Development Materials that are used in the Program.\n\nThe use of the Program is limited to AUTOSAR development work.\n\n5. COMMERCIAL DISTRIBUTION\nFor commercial distribution and exploitation the acceptance of the \"Artop Software License Based on AUTOSAR Released Material (ASLR)\" is required.\n\n6. NO WARRANTY\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED 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.\n\nEach Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this License, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.\n\n7. DISCLAIMER OF LIABILITY\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n8. GENERAL\n8.1 Severability\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n8.2 Recipient Claims Intellectual Property Rights Infringements\nIf Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.\n8.3 Term\nThe term of this License shall expire as soon as:\na) the development work in AUTOSAR for the AUTOSAR Development Materials used in the Program is completed and the AUTOSAR Development Materials have been officially released entirely or partially by the AUTOSAR development cooperation; or\nb) Recipient's AUTOSAR Development License is terminated.\nThe rights and obligations stated in Section 2(c) shall continue to be in force after the end of the term of this License.\n8.4 Termination of Rights\nAll Recipient's rights under this License shall terminate if it fails to comply with any of the material terms or conditions of this License and does not cure such failure in a reasonable period of time after becoming aware of such non-compliance. If all Recipient's rights under this License terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this License and any licenses granted by Recipient relating to the Program shall continue and survive.\n8.5 Restrictions of Granted Rights\nExcept as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this License, whether expressly, by implication, estoppel or otherwise.\nAll rights in the Program not expressly granted under this License are reserved.\n8.6 Governing Law\nThis License is governed by the laws of the Federal Republic of Germany. The application of the United Nations Convention for the International Sale of Goods (CISG) is hereby excluded.", + "json": "aslp.json", + "yaml": "aslp.yml", + "html": "aslp.html", + "license": "aslp.LICENSE" + }, + { + "license_key": "aslr", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-aslr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Artop Software License Based on AUTOSAR Released Material (ASLR)\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ARTOP SOFTWARE LICENSE BASED ON AUTOSAR RELEASED MATERIAL (ASLR) (\"LICENSE\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n\n1. DEFINITIONS\n\n\"Affiliated Company\" means, with respect to any party, any other legal entity that, directly, or indirectly, controls, or is controlled by or is under common control with, such party. For purposes of this definition, \"control\" (including the terms \"controlling,\" \"controlled by\" and \"under common control with\"), as used with respect to such party, shall mean the possession, directly or indirectly, of the power to direct or cause the direction of management or policies of such party through the majority ownership of voting securities. Any Affiliated Company shall not be deemed as third party in this ASLR.\n\n\"AUTOSAR\" means a system architecture that is standardized by the AUTOSAR development cooperation.\n\n\"AUTOSAR Associate Partner\" means a party committed to the commercial exploitation of AUTOSAR, which is effectively bound to the terms of an AUTOSAR Associate Partner agreement.\n\n\"AUTOSAR Core Partner\" means a party which is effectively bound to the terms of the AUTOSAR development agreement.\n\n\"AUTOSAR Development Partner\" means a party interested in the development and/or committed to the commercial exploitation of AUTOSAR, which is effectively bound to the terms of an AUTOSAR Development Partner agreement.\n\n\"AUTOSAR Exploitation License\" means the license granted by the AUTOSAR development cooperation for the automotive exploitation of AUTOSAR as defined in the respective AUTOSAR agreement. For example such a license is granted to current AUTOSAR Core Partners, AUTOSAR Premium Partners, AUTOSAR Development Partners and AUTOSAR Associate Partners.\n\n\"AUTOSAR Premium Partner\" means a party interested in the development and/or committed to the commercial exploitation of AUTOSAR, which is effectively bound to the terms of an AUTOSAR Premium Partner agreement.\n\n\"AUTOSAR Released Material\" means a general term for documents and specifications that are officially released by the AUTOSAR development cooperation. The use of AUTOSAR Released Material and the contained intellectual property is regulated by the AUTOSAR Exploitation License and other AUTOSAR regulations.\n\n\"Contribution\" means:\na) in the case of the initial Contributor, the initial code and documentation distributed under this License, and\nb) in the case of each subsequent Contributor:\ni) changes to the Program, and\nii) additions to the Program;\nwhere such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.\n\n\"Contributor\" means any party that has an AUTOSAR Exploitation License that distributes or provides Contributions to the Program.\n\n\"Distributor\" means any Contributor that distributes the Program.\n\n\"Licensed Patents\" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.\n\n\"Program\" means the Contributions distributed in accordance with this License.\n\n\"Recipient\" means any party that has an AUTOSAR Exploitation License that receives the Program under this License, including all Contributors.\n\n2. GRANT OF RIGHTS\nGrant of Rights by Contributor to Recipient\n\na) Copyright License\nSubject to the terms of this License, each Contributor hereby grants Recipient a nonexclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, display, perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.\n\nb) Patent License\nSubject to the terms of this License, each Contributor hereby grants Recipient a nonexclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.\n\nc) Licensing under the Terms of the Eclipse Public License (EPL)\nSubject to the terms of this License, each Contributor hereby grants Recipient the right to license the Program to third parties under the terms of the EPL, if the Program does not use any AUTOSAR Released Materials.\n\nd) Third Party Intellectual Property Rights\nRecipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any.\n\nFor example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.\n\ne) Contributor Represents Sufficient Rights\nEach Contributor represents that to its knowledge it has sufficient rights in its Contribution, if any, to grant the licenses set forth in this License.\n\n3. NON-ASSERTION\nEach Recipient agrees not to assert against any other Recipient exploiting Artop commercially regarding any intellectual property rights used by the Program.\n\nAny beneficiary of this non-assertion may enforce it for its own benefit, provided that it grants similar non-assertion commitments to the Recipient or properly obligated successors in rights to the respective intellectual property.\n\n4. REQUIREMENTS\n4.1 Distribution of the Program in Object Code\nA Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:\na) it complies with the terms and conditions of this License; and\nb) its license agreement:\ni) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;\nii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;\niii) states that any provisions which differ from this License are offered by that Contributor alone and not by any other party; and\niv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.\n4.2 Distribution of the Program in Source Code\nWhen the Program is made available in source code form:\na) it must be made available under this License; and\nb) a copy of this License must be included with each copy of the Program.\n4.3 Alteration of Copyrights\nContributors may not remove or alter any copyright notices contained within the Program.\n4.4 Identification of the Original Contributor\nEach Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.\n4.5 AUTOSAR Requirements\nThe Contributor and the Recipient must have an AUTOSAR Exploitation License for the AUTOSAR Released Materials that are used in the Program.\n\n5. COMMERCIAL DISTRIBUTION\n5.1 Obligation Regarding Product Behavior\nCommercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Distributor who includes the Program in a commercial product offering must do so in a manner which does not create potential liability for other Contributors.\n\nTherefore, if a Distributor includes the Program in a commercial product offering, such Distributor hereby agrees to defend and indemnify every other Contributor against any losses, damages and costs (collectively \"Losses\") arising from claims, lawsuits and other legal actions brought by a third party against the indemnified Contributor to the extent caused by the acts or omissions of such Distributor in connection with its distribution of the Program in a commercial product offering.\n\n5.2 Obligations Regarding Intellectual Property Rights of Third Parties\nThe obligations in section 5.1 do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an indemnified Contributor must:\na) promptly notify the Distributor in writing of such claim, and\nb) allow the Distributor to control, and cooperate with the Distributor in, the defense and any related settlement negotiations.\nThe indemnified Contributor may participate in any such claim at its own expense.\n\n5.3 Example to Section 5.1\nFor example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Distributor. If that Distributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Distributor's responsibility alone. Under this section, the Distributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Distributor must pay those damages.\n\n6. NO WARRANTY\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED 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.\n\nEach Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this License, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.\n\n7. DISCLAIMER OF LIABILITY\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n8. GENERAL\n8.1 Severability\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n8.2 Recipient Claims Intellectual Property Rights Infringements\nIf Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.\n8.3 Termination of Rights\nAll Recipient's rights under this License shall terminate if it fails to comply with any of the material terms or conditions of this License and does not cure such failure in a reasonable period of time after becoming aware of such non-compliance. If all Recipient's rights under this License terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this License and any licenses granted by Recipient relating to the Program shall continue and survive.\n8.4 Restrictions of Granted Rights\nExcept as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this License, whether expressly, by implication, estoppel or otherwise.\nAll rights in the Program not expressly granted under this License are reserved.\n8.5 Governing Law\nThis License is governed by the laws of the Federal Republic of Germany. The application of the United Nations Convention for the International Sale of Goods (CISG) is hereby excluded.", + "json": "aslr.json", + "yaml": "aslr.yml", + "html": "aslr.html", + "license": "aslr.LICENSE" + }, + { + "license_key": "asmus", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-asmus", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ASMUS License\n\nDisclaimer and legal rights\n---------------------------\n\nThis file contains bugs. All representations to the contrary are void.\n\nSource code in this file and the accompanying headers and included \nfiles may be distributed free of charge by anyone, as long as full \ncredit is given and any and all liabilities are assumed by the \nrecipient.", + "json": "asmus.json", + "yaml": "asmus.yml", + "html": "asmus.html", + "license": "asmus.LICENSE" + }, + { + "license_key": "asn1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-asn1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ASN.1 Object Dumping Code License\n\nASN.1 object dumping code, copyright Peter Gutmann , based on ASN.1 dump program by David Kemp , with contributions from various people including Matthew Hamrick , Bruno Couillard , Hallvard Furuseth , Geoff Thorpe , David Boyce , John Hughes , Life is hard, and then you die , Hans-Olof Hermansson , Tor Rustad , Kjetil Barvik , James Sweeny , Chris Ridd , and several other people whose names I've misplaced (a number of those email addresses probably no longer work, since this code has been around for awhile).\n\nAvailable from http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c Last updated 7 January 2009 (version 20090107, if you prefer it that way). To build under Windows, use 'cl /MD dumpasn1.c'. To build on OS390 or z/OS, use '/bin/c89 -D OS390 -o dumpasn1 dumpasn1.c'.\n\nThis code grew slowly over time without much design or planning, and with extra features being tacked on as required. It's not representative of my normal coding style.\n\nThis version of dumpasn1 requires a config file dumpasn1.cfg to be present in the same location as the program itself or in a standard directory where binaries live (it will run without it but will display a warning message, you can configure the path either by hardcoding it in or using an environment variable as explained further down). The config file is available from http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.cfg\n\nThis code assumes that the input data is binary, having come from a MIME-aware mailer or been piped through a decoding utility if the original format used base64 encoding. If you need to decode it, it's recommended that you use a utility like uudeview, which will strip virtually any kind of encoding (MIME, PEM, PGP, whatever) to recover the binary original.\n\nYou can use this code in whatever way you want, as long as you don't try to claim you wrote it.\n\nEditing notes: Tabs to 4, phasers to stun (and in case anyone wants to complain about that, see \"Program Indentation and Comprehensiblity\", Richard Miara, Joyce Musselman, Juan Navarro, and Ben Shneiderman, Communications of the ACM, Vol.26, No.11 (November 1983), p.861)", + "json": "asn1.json", + "yaml": "asn1.yml", + "html": "asn1.html", + "license": "asn1.LICENSE" + }, + { + "license_key": "aswf-digital-assets-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-aswf-digital-assets-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ASWF Digital Assets License v1.0\n\nLicense for (the \u201cAsset Name\u201d).\n\n Copyright . All rights reserved.\n\nRedistribution and use of these digital assets, with or without modification, solely for education, training, research, software and hardware development, performance benchmarking (including publication of benchmark results and permitting reproducibility of the benchmark results by third parties), or software and hardware product demonstrations, are permitted provided that the following conditions are met:\n\n1. Redistributions of these digital assets or any part of them must include the above copyright notice, this list of conditions and the disclaimer below.\n\n2. Publications showing images derived from these digital assets must include the above copyright notice.\n\n3. The names of copyright holder or the names of its contributors may NOT be used to promote or to imply endorsement, sponsorship, or affiliation with products developed or tested utilizing these digital assets or benchmarking results obtained from these digital assets, without prior written permission from copyright holder.\n\n4. The assets and their output may only be referred to as the Asset Name listed above, and your use of the Asset Name shall be solely to identify the digital assets. Other than as expressly permitted by this License, you may NOT use any trade names, trademarks, service marks, or product names of the copyright holder for any purpose.\n\nDISCLAIMER: THESE DIGITAL ASSETS ARE PROVIDED BY THE COPYRIGHT HOLDER \u201cAS IS\u201d 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 COPYRIGHT HOLDER 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 THESE DIGITAL ASSETS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "aswf-digital-assets-1.0.json", + "yaml": "aswf-digital-assets-1.0.yml", + "html": "aswf-digital-assets-1.0.html", + "license": "aswf-digital-assets-1.0.LICENSE" + }, + { + "license_key": "aswf-digital-assets-1.1", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-aswf-digital-assets-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ASWF Digital Assets License v1.1\n\nLicense for (the \u201cAsset Name\u201d).\n\n Copyright . All rights reserved.\n\nRedistribution and use of these digital assets, with or without modification, solely for education, training, research, software and hardware development, performance benchmarking (including publication of benchmark results and permitting reproducibility of the benchmark results by third parties), or software and hardware product demonstrations, are permitted provided that the following conditions are met:\n\n1. Redistributions of these digital assets or any part of them must include the above copyright notice, this list of conditions and the disclaimer below, and if applicable, a description of how the redistributed versions of the digital assets differ from the originals.\n\n2. Publications showing images derived from these digital assets must include the above copyright notice.\n\n3. The names of copyright holder or the names of its contributors may NOT be used to promote or to imply endorsement, sponsorship, or affiliation with products developed or tested utilizing these digital assets or benchmarking results obtained from these digital assets, without prior written permission from copyright holder.\n\n4. The assets and their output may only be referred to as the Asset Name listed above, and your use of the Asset Name shall be solely to identify the digital assets. Other than as expressly permitted by this License, you may NOT use any trade names, trademarks, service marks, or product names of the copyright holder for any purpose.\n\nDISCLAIMER: THESE DIGITAL ASSETS ARE PROVIDED BY THE COPYRIGHT HOLDER \u201cAS IS\u201d 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 COPYRIGHT HOLDER 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 THESE DIGITAL ASSETS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nFooter", + "json": "aswf-digital-assets-1.1.json", + "yaml": "aswf-digital-assets-1.1.yml", + "html": "aswf-digital-assets-1.1.html", + "license": "aswf-digital-assets-1.1.LICENSE" + }, + { + "license_key": "ati-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ati-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ATI Software End User License Agreement\n\nPLEASE READ THIS LICENSE CAREFULLY BEFORE USING THE SOFTWARE. BY\nDOWNLOADING, INSTALLING, COPYING OR USING THE SOFTWARE, YOU ARE AGREEING TO\nBE BOUND BY THE TERMS OF THIS LICENSE. IF YOU ARE ACCESSING THE SOFTWARE\nELECTRONICALLY, SIGNIFY YOUR AGREEMENT BY CLICKING THE \"AGREE/ACCEPT\"\nBUTTON. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE, PROMPTLY RETURN\nTHE SOFTWARE TO THE PLACE WHERE YOU OBTAINED IT AND (IF APPLICABLE) YOUR\nMONEY WILL BE REFUNDED OR IF THE SOFTWARE WAS ACCESSED ELECTRONICALLY CLICK\n\"DISAGREE/DECLINE\".\n\n1. License. ATI Technologies Inc., on behalf of itself, its subsidiaries\nand licensors (referred collectively as \"ATI\") grants to you the following\nnon-exclusive, right to use the software accompanying this License\n(hereinafter \"Software\") subject to the following terms and limitations:\n\n(a) Regardless of the media upon which it is distributed, the Software is\nlicensed to you for use solely in conjunction with ATI hardware products to\nwhich the Software relates (\"ATI Hardware\").\n\n(b) You own the medium on which the Software is recorded, but ATI and, if\napplicable, its licensors retain title to the Software and related\ndocumentation.\n\n(c) You may:\n\n i) use the Software solely in connection with the ATI Hardware on a\n single computer;\n\n ii) make one copy of the Software in machine-readable form for backup\n purposes only. You must reproduce on such copy ATI's copyright notice and\n any other proprietary legends that were on the original copy of the\n Software;\n\n iii) transfer all your license rights in the Software provided you must\n also transfer a copy of this License, the backup copy of the Software,\n the ATI Hardware and the related documentation and provided the other\n party reads and agrees to accept the terms and conditions of this\n License. Upon such transfer your license rights are then terminated.\n\n(d) In addition to the license terms above, with respect to portions of\nthe Software in source code or binary form designed exclusively for use\nwith the Linux operating system (\"ATI Linux Code\"), you may use, display,\nmodify, copy, distribute, allow others to re-distribute, package and re-\npackage such ATI Linux Code for commercial and non-commercial purposes,\nprovided that:\n\n i) all binary components of the ATI Linux Code are not modified in any\n way;\n\n ii) the ATI Linux Code is only used as part of the Software and in\n connection with ATI Hardware;\n\n iii) all copyright notices of ATI are reproduced and you refer to these\n license terms;\n\n iv) you may not offer or impose any terms on the use of ATI Linux\n Code that alter or restrict this License; and\n\n v) if you have modified the ATI Linux Code, such modifications will be\n made publicly available and are licensed under the same terms provided\n herein to ATI or any other third party without further restriction,\n royalty or any other license requirement;\n\n vi) to the extent there is any ATI sample or control panel source\n code included in the ATI Linux Code, no rights are granted to modify such\n code except for portions thereof that may be subject to third party\n license terms that grant such rights; and\n\n vii) ATI is not obligated to provide any maintenance or technical support\n for any code resulting from ATI Linux Code.\n\n2. Restrictions. The Software contains copyrighted and patented material,\ntrade secrets and other proprietary material. In order to protect them,\nand except as permitted by this license or applicable legislation, you may\nnot:\n\n a) decompile, reverse engineer, disassemble or otherwise reduce the\n Software to a human-perceivable form;\n\n b) modify, network, rent, lend, loan, distribute or create derivative\n works based upon the Software in whole or in part; or\n\n c) electronically transmit the Software from one computer to another or\n over a network or otherwise transfer the Software except as permitted by\n this License.\n\n3. Termination. This License is effective until terminated. You may\nterminate this License at any time by destroying the Software, related\ndocumentation and all copies thereof. This License will terminate\nimmediately without notice from ATI if you fail to comply with any\nprovision of this License. Upon termination you must destroy the Software,\nrelated documentation and all copies thereof.\n\n4. Government End Users. If you are acquiring the Software on behalf of\nany unit or agency of the United States Government, the following\nprovisions apply. The Government agrees the Software and documentation\nwere developed at private expense and are provided with \"RESTRICTED\nRIGHTS\". Use, duplication, or disclosure by the Government is subject to\nrestrictions as set forth in DFARS 227.7202-1(a) and 227.7202-3(a) (1995),\nDFARS 252.227-7013(c)(1)(ii) (Oct 1988), FAR 12.212(a)(1995), FAR 52.227-\n19, (June 1987) or FAR 52.227-14(ALT III) (June 1987),as amended from time\nto time. In the event that this License, or any part thereof, is deemed\ninconsistent with the minimum rights identified in the Restricted Rights\nprovisions, the minimum rights shall prevail.\n\n5. No Other License. No rights or licenses are granted by ATI under this\nLicense, expressly or by implication, with respect to any proprietary\ninformation or patent, copyright, trade secret or other intellectual\nproperty right owned or controlled by ATI, except as expressly provided in\nthis License.\n\n6. Additional Licenses. DISTRIBUTION OR USE OF THE SOFTWARE WITH AN\nOPERATING SYSTEM MAY REQUIRE ADDITIONAL LICENSES FROM THE OPERATING SYSTEM\nVENDOR.\n\n7. Disclaimer of Warranty on Software. You expressly acknowledge and\nagree that use of the Software is at your sole risk. The Software and\nrelated documentation are provided \"AS IS\" and without warranty of any kind\nand ATI EXPRESSLY DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\nFORA PARTICULAR PURPOSE, OF QUALITY, OF QUIET ENJOYMENT AND OF NON-\nINFRINGEMENT OF THIRD PARTY RIGHTS. ATI DOES NOT WARRANT THAT THE\nFUNCTIONS CONTAINED IN THE SOFTWARE WILL MEET YOUR REQUIREMENTS, OR THAT\nTHE OPERATION OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT\nDEFECTS IN THE SOFTWARE WILL BE CORRECTED. THE ENTIRE RISK AS TO THE\nRESULTS AND PERFORMANCE OF THE SOFTWARE IS ASSUMED BY YOU. FURTHERMORE,\nATI DOES NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE ORTHE\nRESULTS OF THE USE OF THE SOFTWARE OR RELATED DOCUMENTATION IN TERMS OF\nTHEIR CORRECTNESS, ACCURACY, RELIABILITY, CURRENTNESS, OR OTHERWISE. NO\nORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY ATI OR ATI'S AUTHORIZED\nREPRESENTATIVE SHALL CREATE A WARRANTY OR IN ANY WAY INCREASE THE SCOPE OF\nTHIS WARRANTY. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU (AND NOT ATI OR\nATI'S AUTHORIZED REPRESENTATIVE) ASSUME THE ENTIRE COST OF ALL NECESSARY\nSERVICING, REPAIR OR CORRECTION. THE SOFTWARE IS NOT INTENDED FOR USE IN\nMEDICAL, LIFE SAVING OR LIFE SUSTAINING APPLICATIONS. SOME JURISDICTIONS\nDO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO THE ABOVE EXCLUSION\nMAY NOT APPLY TO YOU.\n\n8. Limitation of Liability. TO THE MAXIMUM EXTENT PERMITTED BY LAW, UNDER\nNO CIRCUMSTANCES INCLUDING NEGLIGENCE, SHALL ATI, OR ITS DIRECTORS,\nOFFICERS, EMPLOYEES OR AGENTS, BE LIABLE TO YOU FOR ANY INCIDENTAL,\nINDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES (INCLUDING DAMAGES FOR LOSS OF\nBUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESSINFORMATION, AND\nTHE LIKE) ARISING OUT OF THE USE, MISUSE OR INABILITY TO USE THE SOFTWARE\nOR RELATED DOCUMENTATION, BREACH OR DEFAULT, INCLUDING THOSE ARISING FROM\nINFRINGEMENT OR ALLEGED INFRINGEMENT OF ANY PATENT, TRADEMARK, COPYRIGHT OR\nOTHER INTELLECTUAL PROPERTY RIGHT, BY ATI, EVEN IF ATI OR ATI'S AUTHORIZED\nREPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME\nJURISDICTIONS DO NOT ALLOW THE LIMITATION OR EXCLUSION OF LIABILITY FOR\nINCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE LIMITATION OR EXCLUSION\nMAY NOT APPLY TO YOU. ATI will not be liable for 1) loss of, or damage to,\nyour records or data or 2) any damages claimed by you based on any third\nparty claim. In no event shall ATI's total liability to you for all\ndamages, losses, and causes of action (whether in contract, tort (including\nnegligence) or otherwise) exceed the amount paid by you for the Software.\nThe foregoing limitations will apply even if the above stated limitation\nfails of its essential purpose.\n\n9. Controlling Law and Severability. This License shall be governed by\nand construed under the laws of the Province of Ontario, Canada without\nreference to its conflict of law principles. Any dispute related hereto\nwill be brought only in the courts in Toronto, Ontario, Canada and such\ncourts are agreed to be the convenient forum. In the event of any\nconflicts between foreign law, rules, and regulations, and Canadian law,\nrules, and regulations, Canadian law, rules and regulations shall prevail\nand govern. The United Nations Convention on Contracts for the\nInternational Sale of Goods shall not apply to this License. If for any\nreason a court of competent jurisdiction finds any provision of this\nLicense or portion thereof, to be unenforceable, that provision of the\nLicense shall be enforced to the maximum extent permissible so as to effect\nthe intent of the parties, and the remainder of this License shall continue\nin full force and effect.\n\n10. Complete Agreement. This License constitutes the entire agreement\nbetween the parties with respect to the use of the Software and the related\ndocumentation, and supersedes all prior or contemporaneous understandings\nor agreements, written or oral, regarding such subject matter. No\namendment to or modification of this License will be binding unless in\nwriting and signed by a duly authorized representative of ATI.", + "json": "ati-eula.json", + "yaml": "ati-eula.yml", + "html": "ati-eula.html", + "license": "ati-eula.LICENSE" + }, + { + "license_key": "atkinson-hyperlegible-font", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-atkinson-hyperlegible-font", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Atkinson Hyperlegible Font License\n\nGENERAL\nCopyright Holder allows the Font to be used, studied, modified and redistributed freely as long as it\nis not sold by itself. The Font, including any derivative works, may be bundled, embedded,\nredistributed and/or sold with any software or other work provided that the Reserved Typeface Name\nis not used on, in or by any derivative work. The Font and derivatives, however, cannot be released\nunder any other type of license. The requirement for the Font to remain under this license does not\napply to any document created using the Font or any of its derivatives.\n\nDEFINITIONS\n\"Author\" refers to any designer, engineer, programmer, technical writer or other person who\ncontributed to the Font Software.\n\u201cCopyright Holder\u201d refers to Braille Institute of America, Inc.\n\u201cFont\u201d refers to the Atkinson Hyperlegible Font developed by Copyright Holder.\n\"Font Software\" refers to the set of files released by Copyright Holder under this license. This may\ninclude source files, build scripts and documentation.\n\"Modified Version\" refers to any derivative made by adding to, deleting, or substituting -- in part or\nin whole -- any of the components of the Original Version, by changing formats or by porting the\nFont Software to a new environment.\n\"Original Version\" refers to the collection of the Font Software components as distributed by\nCopyright Holder.\n\"Reserved Typeface Name\" refers to the name Atkinson Hyperlegible Font.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining a copy of the Font Software,\nto use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of\nthe Font Software, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components, in Original Version or Modified\nVersion, may be sold by itself.\n\n2) The Original Version or Modified Version of the Font Software may be bundled, redistributed\nand/or sold with any other software, provided that each copy contains the above copyright notice\nand this license. These can be included either as stand-alone text files, human-readable headers\nor in the appropriate machine-readable metadata fields within text or binary files as long as those\nfields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Typeface Name unless explicit\nwritten permission is granted by Copyright Holder. This restriction only applies to the primary font\nname as presented to the users.\n\n4) The name of Copyright Holder or the Author(s) of the Font Software shall not be used to promote,\nendorse or advertise any Modified Version or any related software or other product, except:\n(a) to acknowledge the contribution(s) of Copyright Holder and the Author(s); or\n(b) with the prior written permission of Copyright Holder.\n\n5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under\nthis license, and must not be distributed under any other license.\n\nTERMINATION\nThis license shall immediately terminate and become null and void if any of the above conditions\nare not met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT,\nTRADEMARK OR OTHER RIGHT. IN NO EVENT SHALL COPYRIGHT HOLDER BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT,\nINCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT\nOR OTHERWISE, ARISING FROM, OUT OF THE USE OF OR INABILITY TO USE THE FONT\nSOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.", + "json": "atkinson-hyperlegible-font.json", + "yaml": "atkinson-hyperlegible-font.yml", + "html": "atkinson-hyperlegible-font.html", + "license": "atkinson-hyperlegible-font.LICENSE" + }, + { + "license_key": "atlassian-marketplace-tou", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-atlassian-marketplace-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Atlassian Marketplace Terms of Use\nWelcome to the Atlassian Marketplace! The Atlassian Marketplace is an online marketplace for cloud and downloadable software applications, plugins and extensions (\u201cMarketplace Apps\u201d or \u201cApps\u201d) that are designed to interoperate with Atlassian\u2019s software and cloud offerings (\u201cAtlassian Products\u201d).\n\nUse of the Atlassian Marketplace is governed by these Atlassian Marketplace Terms of Use (\u201cTerms of Use\u201d), which form a legally binding agreement between you (defined in Section 1.1) and Atlassian Pty Ltd, an Australian corporation (ABN 53 102 443 916) (\u201cAtlassian\u201d or \u201cwe\u201d).\n\nBy placing an Order for an App, or accessing or using the Atlassian Marketplace, you indicate your assent to be bound by these Terms of Use. If you do not agree to these Terms of Use, do not place an Order or use or access the Atlassian Marketplace.\n\n1. Introduction\n1.1. Who are You? Because all Apps available through the Atlassian Marketplace are designed for use with Atlassian Products, in these Terms of Use, \u201cyou\u201d refers to the Atlassian customer (e.g., person or entity) who holds a license or subscription to the Atlassian Product with which the App will be enabled or used. That Atlassian customer is fully responsible for compliance with these Terms of Use by anyone using the Atlassian Marketplace or placing Orders on its behalf. Any person using the Atlassian Marketplace or placing an Order on behalf of an Atlassian customer is binding that Atlassian customer to these Terms of Use. These Terms of Use also apply to you if you are browsing the Marketplace or leaving a review.\n\n1.2. Types of Apps. Some Marketplace Apps are made available at no charge, and others require payment of fees. The listing for each App will identify the provider of the App (\u201cVendor\u201d), which may be Atlassian or a third party. Apps for which Atlassian is the Vendor are \u201cAtlassian Apps,\u201d and Apps for which the Vendor is a third party are \u201cThird Party Apps\u201d. Most Vendors are third parties, who create, own and are responsible for their own Apps as further described in these Terms of Use. In all cases, you may only use Apps with the Atlassian Products with which they are designed to be used (as identified in the App\u2019s listing).\n\n1.3. Finding Apps and Placing Orders. We want it to be easy to find great Apps throughout your Atlassian experience. Therefore, \u201cAtlassian Marketplace\u201d includes https://marketplace.atlassian.com and any other webpage, application, interface, service or in-product experience at which we make available or list Apps (such as our Universal Plugin Manager). Likewise, when we refer to \u201cOrders\u201d, that includes any order, purchase, installation, trial, download or enablement of an App (including renewals and upgrades), whether through the Atlassian Marketplace, Atlassian Products or other processes or interfaces we make available. All Orders are subject to these Terms of Use.\n\n1.4. Marketplace Policies. Your Orders and use of the Atlassian Marketplace are also subject to Atlassian\u2019s marketplace FAQs and posted policies, as may be modified from time to time (\u201cMarketplace Policies\u201d), which are incorporated into these Terms of Use.\n\n2. Your Orders\n2.1. Order Details. Your Order will identify the Vendor, your authorized scope of use of the App (such as the platform or number of seats) and license or subscription term, as applicable. Once you complete your Order, Atlassian will provide with you access to the applicable Apps, including any relevant license or access keys, as described in the Marketplace Policies.\n\n2.2. Paid Apps. To receive access to paid Apps, you must pay Atlassian the fees, including all taxes, indicated at the time of your Order. Terms for renewals, including pricing, will be described within the App\u2019s listing on the Atlassian Marketplace (or if different, your Order). You can disable renewals by visiting my.atlassian.com or by emailing sales@atlassian.com (but you will not receive any refunds except as described in Section 2.3). For any Third Party App, you acknowledge and agree that Atlassian is the Vendor\u2019s commercial agent and that you are required to make any related payments directly to Atlassian (and your sales contract with Atlassian includes these Terms of Use and the applicable Order). However, after you complete your Order, your usage of any Third Party Apps will be governed by the applicable Vendor Terms, as described in Section 3.\n\nNote: this Section 2.2 does not apply to Paid-via-Vendor Apps (see Section 2.5 below).\n\n2.3. Return Policy. Returns and refunds of Atlassian Apps are governed by the Atlassian Terms, as defined in Section 3.1(b). For Third Party Apps, you have thirty (30) days from the date you place your Order to cancel your Order and return the App. If you cancel your Order of a Third Party App within this 30-day period, Atlassian will refund the amount you paid for the applicable Third Party App, and you must cease using the App and delete any copies of the App in your possession. Except as expressly provided in this Section 2.3, all Orders are non-cancelable and non-refundable.\n\nNote: this Section 2.3 does not apply to Paid-via-Vendor Apps (see Section 2.5 below).\n\n2.4. Trial Periods. The Atlassian Marketplace may offer free trial periods for Apps. After expiration of the trial period, if you do not place an Order for the App, the App will cease to function and you must cease using and delete your copies of the App and any related license or access keys.\n\n2.5. Paid-via-Vendor Apps. While most Apps are provisioned by Atlassian as described in Section 1, some Third Party Apps may be enabled or paid for through a third party Vendor\u2019s own website (\u201cPaid-via-Vendor Apps\u201d). Paid-via-Vendor Apps will be identified in their listings or when you enable or pay for the App. Section 2.2 (Paid Apps) and Section 2.3 (Return Policy) do not apply to Paid-via-Vendor Apps and returns, if any, would be governed by the applicable Vendor Terms.\n\n3. Use of Marketplace Apps.\n3.1. Vendor Terms. Without limiting the disclaimers, restrictions or other provisions in these Terms of Use, usage of Apps is subject to the license or subscription terms, privacy policies and other applicable terms specified by the Vendor (\u201cVendor Terms\u201d). Vendor Terms are typically included on the App\u2019s listing page or presented through the Order process. You may not use an App if you do not agree to the relevant Vendor Terms.\n\n(a) Third Party Apps. Third Party Apps are subject to the third party\u2019s Vendor Terms, not the Atlassian Terms. By ordering, installing or enabling any Third Party App, you are entering into the Vendor Terms directly with the applicable third party Vendor. Atlassian is not a party to, or responsible for compliance with, any third party Vendor Terms, and does not guarantee any third party Vendor Terms are adequate for your own needs. Please see Section 4 (Data Collection and Sharing) for additional information about how third party Vendors use your data.\n\n(b) Atlassian Apps. If Atlassian is the Vendor of the App, the Vendor Terms are the Atlassian terms that govern the Atlassian Product with which the App is enabled or used (listed here) and as may be modified from time to time (the \u201cAtlassian Terms\u201d). The Atlassian Terms include the Atlassian Privacy Policy. In event of a conflict between these Terms of Use and the Atlassian Terms, the Atlassian Terms will control as to each party\u2019s rights and responsibilities related to the App itself, while these Terms of Use will control as to the Atlassian Marketplace generally.\n\n3.2. Support and Maintenance. Any support and maintenance of Third Party Apps will be provided by the applicable Vendor and only to the extent described in the applicable Vendor Terms. Atlassian is not responsible for any support and maintenance for Third Party Apps, and a Vendor\u2019s failure to provide any support or maintenance does not entitle you to any refund. If Atlassian is the Vendor, it will provide any support and maintenance in accordance with the Atlassian Terms.\n\n3.3. Reservation of Rights. Except for the rights explicitly granted to you in these Terms of Use and in the Vendor Terms for each App, all right, title and interest (including intellectual property rights) in the Atlassian Marketplace are reserved by Atlassian, and all right, title and interest (including intellectual property rights) in the Apps are reserved and retained by their respective Vendors and licensors. Apps are provided on a license or subscription basis, not sold, and you do not acquire any ownership rights in the Atlassian Marketplace or the Apps.\n\n4. Data Collection and Sharing.\n4.1. Order Information. If you order a Marketplace App through Atlassian, Atlassian will provide the Vendor with the information you provide in completing the order, such as your name, company name (if any), addresses (including e-mail address) and phone number.\n\n4.2. Third Party Vendor Use of Data. As referenced in the Atlassian Terms, if you place an Order for Third Party Apps, you authorize Vendors to access or use certain data in the applicable Atlassian Products. This may include transmitting, transferring, modifying or deleting such data, or storing such data on Vendor or third party systems. Any third party Vendor\u2019s use of accessed data (whether data in the Atlassian Products or separately collected from you or your device) is subject to the applicable Vendor Terms. Atlassian is not responsible for any access, use, transfer or security of data or information by third party Vendors or by Third Party Apps, or for the security or privacy practices of any third party Vendor, Third Party App or their processors. You are solely responsible for your decision to permit any third party Vendor or Third Party App to access or use data to which you\u2019ve granted access. It is your responsibility to carefully review the Vendor Terms, as provided by the applicable third party Vendor.\n\n4.3. Atlassian Use of Data. Any data that Atlassian collects from you based on your use of the Atlassian Marketplace and your Orders, or that it receives from third party Vendors on your behalf (e.g., order details related to purchases under Section 2.5 (Paid-via-Vendor Apps)), is subject to the Atlassian Privacy Policy.\n\n4.4. Analytics and Usage Data. In addition, you authorize the Vendor and Atlassian (if Atlassian is not the Vendor) to collect and use technical data and related information (including technical information relating to your device, system, and the App), in non-personally identifiable form, to facilitate the provision of software updates, product support, marketing efforts and other services to you related to the App. Vendor and Atlassian (if Atlassian is not the Vendor) may each use this information, as long as it is in a form that does not personally identify individual users, to improve their respective products or to provide services or technology to you (including with respect to Atlassian, the Atlassian Marketplace and Atlassian Products).\n\n5. Reviews of Marketplace Apps.\nThe Atlassian Marketplace allows users to post reviews (e.g., a star rating) of Marketplace Apps and to post comments on your or other users\u2019 reviews.\n\n5.1. User Names Displayed. Reviews and comments are posted under the name and profile of the user submitting the content (as listed in his or her Atlassian account). Users who do not want their names or other profile information (such as profile photographs) to appear may not post reviews or comments on the Atlassian Marketplace.\n\n5.2. Rules for Reviews. All reviews and comments must comply with Atlassian\u2019s Acceptable Use Policy and the terms below. To make your reviews and comments useful to others:\n\nReviews must be made in good faith after reasonable evaluation of the relevant App.\n\nUsers may post only one review per App, unless the latter review reflects a good-faith rating change based on further evaluation. Any modified reviews will be marked as \u201cedited\u201d.\n\nYou (including anyone acting on your behalf) may not review or comment on your own App, an App owned by a company you work for, or those of competitors. As an exception, you may provide informational responses to support requests or other inquiries directed to you within the reviews or comments section of your App listing.\n\nA Review must evaluate the App itself and not be an evaluation of the underlying product with which the App integrates or functions.\n\nReviews or comments unrelated to the relevant App are prohibited \u2013 for example, discussing Atlassian\u2019s employees, business or stock, or those of other companies, or unrelated products or services.\n\n5.3. Atlassian Rights. Atlassian reserves the right, in its sole discretion and for any reason at any time, to remove or edit any review or comment on the Atlassian Marketplace. Atlassian does not claim ownership of the content of reviews or comments you post on the Atlassian Marketplace. However, you hereby grant Atlassian a nonexclusive, worldwide, irrevocable, perpetual, transferable, sublicenseable (through multiple tiers), fully paid-up, royalty-free license to use, distribute, reproduce, modify, excerpt, attribute, adapt, publicly perform and publicly display that content (in whole or in part) and to incorporate it into other works in any format or medium now known or later developed, and to permit others to do so.\n\n6. Your Responsibilities.\n6.1. Representations and Warranties. You (including anyone acting on your behalf) represent and warrant that you have all necessary right, power and authority (i) to enter into and be legally bound by these Terms of Use, (ii) to place any Orders, and (iii) and to authorize Vendors to access and use your data and information as described in Section 4, all without violation of any other agreements or policies.\n\n6.2 Compliance with Law and Reservation of Rights. You must use the Atlassian Marketplace and Marketplace Apps in compliance with all applicable laws.\n\n6.3. Indemnification. You agree to indemnify, defend (at Atlassian\u2019s request) and hold Atlassian, its affiliates, and its and their officers, agents and employees harmless from any claims by third parties, and any related damages, losses or costs (including reasonable attorney fees and costs) arising out of your violation of these Terms of Use or the applicable Vendor Terms, your violation of any rights of a third party, or any content you submit to or publish on the Atlassian Marketplace. You may not settle any such claim without Atlassian\u2019s prior written consent.\n\n7. Term and Termination.\n7.1. For Cause. Your rights hereunder will automatically terminate upon your failure to comply with any of the provisions in these Terms of Use. In case of such termination, you must cease all use of the Atlassian Marketplace, and Atlassian may immediately revoke your access to the Atlassian Marketplace without notice to you and without refund of any purchases.\n\n7.2. Discontinuation of Marketplace. Atlassian may terminate these Terms of Use without notice to you if Atlassian, in its discretion, discontinues the Atlassian Marketplace.\n\n7.3. Effect on Apps. If these Terms of Use terminate, your rights to use any previously obtained Apps will survive in accordance with the applicable Vendor Terms.\n\n7.4. Survival. The following Sections will survive any termination or expiration of these Terms of Use: 3.1(b) (Atlassian Terms) (if applicable for continued use of Atlassian Apps), 3.3 (Reservation of Rights), 4 (Data Collection and Sharing), 5.3 (Atlassian Rights) and 6 (Your Responsibilities) through 10 (General).\n\n8. Important Disclaimers and Limitations of Liability.\n8.1. Third Party Apps. A significant portion of the Marketplace Apps in the Atlassian Marketplace are provided by parties other than Atlassian. Third party Vendors are solely responsible for their Apps and any related content or materials included in their Apps. Atlassian has no liability or responsibility whatsoever for any Third Party Apps, including their accuracy, reliability, availability, security, data handling, data processing, completeness, usefulness or quality, even if Atlassian is hosting such App. These disclaimers apply even if an App complies with Atlassian\u2019s guidelines for Third Party Apps (located on Atlassian\u2019s web properties such as developer.atlassian.com), and even if Atlassian has reviewed, certified, or approved the Third Party App or the Vendor participates in any one of Atlassian\u2019s App programs such as those described here (\u201cApp Programs\u201d). Any use of Third Party Apps is at your sole discretion and risk. Vendors are solely responsible for ensuring that any information they submit in connection with any App Program is accurate, complete and correct, and Atlassian is not responsible for the standards or business practices of any third party Vendor (whether support, availability, security or otherwise), even if the Vendor participates in an App Program. You should always independently verify that any Third Party Apps or Vendor business practices meet your needs. In addition, Atlassian is not responsible for any third party websites to which the Atlassian Marketplace links or their terms of use or privacy policies. You should use your discretion when visiting third party websites.\n\n8.2. Removal of Apps. At any time, Atlassian may remove an App from the Atlassian Marketplace in accordance with its applicable policies, and Vendors may also update, modify or remove their own Apps at any time.\n\n8.3. Interoperability. Atlassian makes no guarantee that any Apps will work properly with Atlassian Products or that Apps will continue to work with Atlassian Products as they change over time. Some Apps rely on hosted or cloud services provided by the Vendor or third parties, and these Apps may not function properly or may become inoperable if those services are discontinued.\n\n8.4. Disclaimer of Warranties. To the maximum extent permitted by law, Atlassian offers the Atlassian Marketplace and all Third Party Apps \u201cAS IS\u201d and \u201cAS AVAILABLE\u201d, and Atlassian hereby disclaims all warranties, whether express, implied or statutory, including but not limited to any implied warranties of title, non-infringement, merchantability or fitness for a particular purpose, relating to the Atlassian Marketplace or this Agreement. You may have other statutory rights, in which case the duration of any statutory warranties will be limited to the maximum extent permitted by law.\n\n8.5. Limitations of Liability. To the maximum extent permitted by law, in no event will Atlassian be liable for any direct, indirect, consequential, special, exemplary, punitive or other liability related to the Atlassian Marketplace or any Third Party Apps, including for any loss of use, lost or inaccurate data, failure of security mechanisms, interruption of business or costs of delay. If the foregoing disclaimer of direct damages is not enforceable at law for any reason, in no event will Atlassian\u2019s aggregate liability to you under these Terms of Use exceed the greater of (1) the amount you paid to Atlassian for the Third Party App related to your claim, or (2) fifty dollars (US$50).\n\n8.6. Disclaimers and Limitations of Liability for Atlassian Apps. Section 8.4 (Disclaimer of Warranties) and 8.5 (Limitations of Liability) do not alter the disclaimers or limitations of liability for Atlassian Apps in the Atlassian Terms, which continue to fully apply.\n\n8.7. Basis of Bargain; Failure of Essential Purpose. Atlassian entered into these Terms of Use relying on the limitations of liability, disclaimers of warranty and other provisions relating to allocation of risk herein, and you agree that such provisions are an essential basis of the bargain between the parties. You agree that the waivers and limitations specified in this Section 8 apply regardless of the form of action, whether in contract, tort (including negligence), strict liability or otherwise and will survive and apply even if any limited remedy specified in these Terms of Use is found to have failed of its essential purpose.\n\n8.8. Atlassian Affiliates and Contractors. You acknowledge and agree that Atlassian\u2019s affiliates, contractors and service providers may exercise all rights of Atlassian under these Terms of Use, and that all limitations of liability and disclaimers in these Terms of Use apply fully to and benefit Atlassian\u2019s affiliates.\n\n9. Dispute Resolution; Governing Law.\n9.1. Informal Resolution. In the event of any controversy or claim arising out of or relating to these Terms of Use, the parties will consult and negotiate with each other and, recognizing their mutual interests, attempt to reach a solution satisfactory to both parties. If the parties do not reach settlement within a period of sixty (60) days, either party may pursue relief as may be available under these Terms of Use pursuant to Section 9.2 (Governing Law; Jurisdiction). All negotiations pursuant to this Section 9.1 will be confidential and treated as compromise and settlement negotiations for purposes of all similar rules and codes of evidence of applicable legislation and jurisdictions.\n\n9.2. Governing Law; Jurisdiction. These Terms of Use will be governed by and construed in accordance with the applicable laws of the State of California, USA, without giving effect to the principles of that State relating to conflicts of laws. Each party irrevocably agrees that any legal action, suit or proceeding arising out of or related to these Terms of Use must be brought solely and exclusively in, and will be subject to the service of process and other applicable procedural rules of, the State or Federal court in San Francisco, California, USA, and each party irrevocably submits to the sole and exclusive personal jurisdiction of the courts in San Francisco, California, USA, generally and unconditionally, with respect to any action, suit or proceeding brought by it or against it by the other party.\n\n9.3. Injunctive Relief; Enforcement. Notwithstanding the provisions of Section 9.1 (Informal Resolution) and 9.2 (Governing Law; Jurisdiction), nothing in these Terms of Use will prevent Atlassian from seeking injunctive relief with respect to a violation of intellectual property rights, confidentiality obligations or enforcement or recognition of any award or order in any appropriate jurisdiction.\n\n9.4. Exclusion of UN Convention and UCITA. The terms of the United Nations Convention on Contracts for the Sale of Goods do not apply to these Terms of Use. The Uniform Computer Information Transactions Act (UCITA) will not apply to these Terms of Use regardless of when or where adopted.\n\n10. General.\n10.1. Changes to Terms. Atlassian may modify these Terms of Use at its sole discretion by posting the revised terms on the Atlassian Marketplace. You may be required to click to agree to the modified Terms of Use in order to continue using the Marketplace, and in any event your continued use of the Atlassian Marketplace (including any future Orders) after the effective date of the modifications constitutes your acceptance of the modified terms. For clarity, the version of these Terms of Use in place at the time of your Order will apply for purposes of that Order. Except as provided in this Section 10.1, all changes or amendments to these Terms of Use require the written agreement of you and Atlassian.\n\n10.2. Reporting Copyright and Trademark Violations. If you believe that any content in the Atlassian Marketplace violates your copyright, please follow the process described at Reporting Copyright and Trademark Violations.\n\n10.3. Contact Information. For communications concerning these Terms of Use (other than copyright and trademark concerns covered in Section 10.2), please write to legal@atlassian.com. Atlassian may send you notices through your Atlassian account or to your email address that is on file with Atlassian.\n\n10.4. Entire Agreement. These Terms of Use constitute the entire agreement between the parties with respect to their subject matter and supersedes any and all prior or contemporaneous agreements between the parties with respect to their subject matter. For clarity, this does not limit the Vendor Terms, which apply in accordance with Section 3 above.\n\n10.5. Interpretation. If any provision of these Terms of Use is held invalid by a court with jurisdiction over the parties to these Terms of Use, such provision will be deemed to be restated to reflect as nearly as possible the original intentions of the parties in accordance with applicable law, and the remainder of these Terms of Use will remain in full force and effect. Atlassian\u2019s failure to enforce any provision of these Terms of Use will not constitute a waiver of Atlassian\u2019s rights to subsequently enforce the provision. In these Terms of Use, headings are for convenience only and terms such as \u201cincluding\u201d are to be construed without limitation.\n\n10.6. Assignment. You may not assign or transfer these Terms of Use. Atlassian may freely assign, transfer and delegate its rights and obligations under these Terms of Use.\n\n10.7. No agency. Nothing in these Terms of Use or any Order is intended to, or shall be deemed to, make Atlassian your agent, or authorize Atlassian to make or enter into any commitments for you or on your behalf.\n\n10.8. Export Laws and Regulations. You may not use or otherwise export or re-export the Marketplace Apps except as authorized by United States law and the laws of the jurisdiction in which the App was obtained. In particular, but without limitation, Apps may not be exported or re-exported (a) into any U.S. embargoed countries or (b) to anyone on the U.S Treasury Department\u2019s list of Specially Designated Nationals and Consolidated Sanctions list or the U.S. Department of Commerce\u2019s Denied Persons, Entity, or Unverified Lists. By using any Marketplace App, you represent and warrant that you are not located in any such country or on any such list. You agree not to use or provide the Apps for any prohibited end use, including to support any nuclear, chemical, or biological weapons proliferation, or missile technology, without the prior permission of the United States government.\n\nLast Revised: March 31, 2019", + "json": "atlassian-marketplace-tou.json", + "yaml": "atlassian-marketplace-tou.yml", + "html": "atlassian-marketplace-tou.html", + "license": "atlassian-marketplace-tou.LICENSE" + }, + { + "license_key": "atmel-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-atmel-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use of the microcode software ( Firmware ) is \npermitted provided that the following conditions are met: \n \n 1. Firmware is redistributed in object code only; \n 2. Any reproduction of Firmware must contain the above \n copyright notice, this list of conditions and the below \n disclaimer in the documentation and/or other materials \n provided with the distribution; and \n 3. The name of Atmel Corporation may not be used to endorse \n or promote products derived from this Firmware without specific \n prior written consent. \n \nDISCLAIMER: ATMEL PROVIDES THIS FIRMWARE \"AS IS\" WITH NO WARRANTIES OR \nINDEMNITIES WHATSOEVER. ATMEL EXPRESSLY DISCLAIMS ANY EXPRESS, STATUTORY \nOR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED \nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND \nNON-INFRINGEMENT. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN \nANY WAY OUT OF THE USE OF THIS FIRMWARE, EVEN IF ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE. USER ACKNOWLEDGES AND AGREES THAT THE \nPURCHASE OR USE OF THE FIRMWARE WILL NOT CREATE OR GIVE GROUNDS FOR A \nLICENSE BY IMPLICATION, ESTOPPEL, OR OTHERWISE IN ANY INTELLECTUAL \nPROPERTY RIGHTS (PATENT, COPYRIGHT, TRADE SECRET, MASK WORK, OR OTHER \nPROPRIETARY RIGHT) EMBODIED IN ANY OTHER ATMEL HARDWARE OR FIRMWARE \nEITHER SOLELY OR IN COMBINATION WITH THE FIRMWARE.", + "json": "atmel-firmware.json", + "yaml": "atmel-firmware.yml", + "html": "atmel-firmware.html", + "license": "atmel-firmware.LICENSE" + }, + { + "license_key": "atmel-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-atmel-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "REDISTRIBUTION: Permission is hereby granted by Atmel Corporation (Atmel), free\nof any license fees, to any person obtaining a copy of this firmware (the\n\"Software\"), to install, reproduce, copy and distribute copies, in binary form,\nin hexadecimal or equivalent formats, of the Software and to permit persons to\nwhom the Software is provided to do the same, subject to the following\nconditions:\n\n* Any redistribution of the Software must reproduce the above copyright notice,\n this license notice, and the following disclaimers and notices in the\n documentation and/or other materials provided with the Software.\n\n* Neither the name of Atmel Corporation, its products nor the names of its\n suppliers may be used to endorse or promote products derived from this\n Software without specific prior written permission.\n\n* All matters arising out of or in connection with this License and/or Software\n shall be governed by California law and the parties agree to the exclusive\n jurisdiction of the Californian courts to decide all disputes arising.\n\n* The licensee shall defend and indemnify Atmel against any and all claims,\n costs, losses and damages (including reasonable legal fees) incurred by tme\n arising out of any claim relating to the Software due to the licensee\u2019s use or\n sub-licensing of the Software\n\nDISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL \"AS IS\" AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE\nDISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "atmel-linux-firmware.json", + "yaml": "atmel-linux-firmware.yml", + "html": "atmel-linux-firmware.html", + "license": "atmel-linux-firmware.LICENSE" + }, + { + "license_key": "atmel-microcontroller", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-atmel-microcontroller", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without \nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, \nthis list of conditions and the following disclaimer in the documentation \nand/or other materials provided with the distribution.\n\n3. The name of Atmel may not be used to endorse or promote products derived \nfrom this software without specific prior written permission. \n\n4. This software may only be redistributed and used in connection with an \nAtmel microcontroller product.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" \nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE \nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE \nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE \nGOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY \nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "atmel-microcontroller.json", + "yaml": "atmel-microcontroller.yml", + "html": "atmel-microcontroller.html", + "license": "atmel-microcontroller.LICENSE" + }, + { + "license_key": "atmosphere-0.4", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-atmosphere-0.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Atmosphere Software License Version 0.4\nPreamble\n\nSoftware developers cannot ignore the impact of networked computation on the global climate crisis. The energy demands of the global economy exceed the current production of renewable energy. While software development has the potential to make economic activity far more efficient, fossil fuel's high subsidies and disastrous social costs mean that improvements to software often give their users the ability to optimize for financial profit at the expense of the environment, by increasing their fossil fuel extraction and polluting activities. This rebound effect has been worsened by the rise of cryptocurrency, which has made it possible to monetize computation roughly in proportion to the amount of energy consumed. Computation, energy, economics, and ecology are now locked in a harmful cycle. The purpose of the Atmosphere License is to let developers push back against this cycle, supporting environmental sustainabiliy by creating code that increases the relative economic value of renewable energy.\n\nDevelopers often release their software under open licenses out of a charitable impulse to help users accomplish their tasks more easily. The Atmosphere License acknowledges that if a contribution to open source helps its users to worsen the climate crisis and endanger the ecosystem that everyone depends on to survive, then the contribution is not effective altruism. The pursuit of open source software users' freedom must respect the physical safety of all stakeholders, including the users and the developers themselves.\n\nThe precise terms and conditions for copying, distribution and modification follow.\nTERMS AND CONDITIONS\n0. Scope\n\nThis 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 Atmosphere 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\".\n\nActivities 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.\n1. Verbatim Copies\n\nYou 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.\n\nYou 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.\n2. Modified Copies\n\nYou 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 each time you do so you also meet all of these conditions:\n\n a. You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change.\n 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.\n 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.)\n d. You must divest from all Disqualifying Assets as listed in Section 3.\n e. You must comply with any Obligations to Remote Users as defined below.\n\nThese 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.\n\nThus, 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.\n\nIn 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.\n2.1. Obligations to Remote Users\n\nNotwithstanding any other provision of this License, you may allow users to interact with your modified version remotely through a computer network only if you meet the following Obligations to Remote Users:\n\n a. your modified version of the Program must prominently offer all users interacting with it remotely through a computer network an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software.\n\n3. Divestment\n\n\"Divestment\" of an asset means relinquishing all ownership interest in the asset, all profit rights in the asset, or right to control the asset, through sale or other disposal of the asset, or placing the asset under a conservation easement or other effective legal restriction, valid for at least three years, barring use of the asset for the activities that caused it to qualify as a \"Disqualifying Asset\".\n\n\"Disqualifying Assets\" subject to Divestment under the terms of this License include \"Disqualifying Investments\" and \"Disqualifying Facilities\".\n\nA \"Disqualifying Investment\" is any investment exceeding $10,000 in value in a company, agency, or entity that operates any Disqualifying Facility or has a majority ownership interest or majority profit rights in any Disqualifying Facility. A Disqualifying Investment may take the form of direct ownership, shares, commingled mutual funds containing shares, or corporate bonds.\n\n a. If you have the right to determine whether a Disqualifying Investment should be held in a fund for the benefit of others, such as a pension fund, endowment, or insurance fund, then you have a \"right to control\" the Disqualifying Investment for purposes of determining your obligation to divest.\n\n\"Disqualifying Facilities\" include any of the following:\n\n a. any coal mine or any coal extraction operations.\n b. any oil or natural gas wells or extraction operations.\n c. any coal, oil, or natural gas processing facility.\n d. any pipeline longer than 10 kilometers used for fossil fuel transportation.\n\n4. Source Code\n\nYou may copy and distribute the Program (or a work based on it, under Sections 2 and 3) in object code or executable form under the terms of the Sections above provided that you also do one of the following:\n\n 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,\n 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,\n 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.\n\nIf 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.\n5. Termination\n\nYou 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.\n\nHowever, 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.\n\nMoreover, 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.\n6. Acceptance\n\nYou 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.\n7. Additional Terms\n\nEach 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.\n\nIf the original license omitted any of the optional provisions regarding Privacy of Remote Users, Deforestation, Nonrenewable Power Generation, Civilian Internment, or For-Profit Prisons, you may add one or more of those provisions to the license as additional terms when conveying modified versions of the Program. However, you may not add the \"Offset for Renewable Investments\" provision.\n\nYou may also subject parts of the Program to restrictions derived from the Apache License Version 2.0, regarding matters such as patent termination and indemnification, if those parts of the Program were previously licensed under the Apache License. This is necessary to stay in compliance with the Apache License when relicensing under the Atmosphere License. To do this, add the phrase \"subject to restrictions in Apache License Version 2.0\" to the boilerplate Atmosphere License notices for your Program, or for the files or other parts of the Program that were covered by the Apache License.\n\nYou 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.\n8. Inconsistent Conditions\n\nIf, 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.\n\nIf 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.\n\nIt 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 and ethical software distribution system, which is implemented by public license practices. An author/donor distributes software 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.\n9. Permission from Authors\n\nIf you wish to incorporate parts of the Program into other programs whose distribution conditions are different, or if you wish to distribute modified versions of the Program or offer users Remote Network Interaction with a modified version of the Program without divesting from Disqualifying Assets, write to the author(s) to ask for permission to do so under the terms of a different license.\n10. No Warranty\n\nBecause 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.\n11. No Liability\n\nIn 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.\n12. No Trademark Waiver\n\nTrademark rights are not licensed under this public license.\nEND OF TERMS AND CONDITIONS", + "json": "atmosphere-0.4.json", + "yaml": "atmosphere-0.4.yml", + "html": "atmosphere-0.4.html", + "license": "atmosphere-0.4.LICENSE" + }, + { + "license_key": "attribution", + "category": "Permissive", + "spdx_license_key": "AAL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PROFESSIONAL IDENTIFICATION * URL\n\"PROMOTIONAL SLOGAN FOR AUTHOR'S PROFESSIONAL PRACTICE\"\n\nAll Rights Reserved\nATTRIBUTION ASSURANCE LICENSE (adapted from the original BSD license)\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the conditions below are met.\nThese conditions require a modest attribution to (the\n\"Author\"), who hopes that its promotional value may help justify the\nthousands of dollars in otherwise billable time invested in writing\nthis and other freely available, open-source software.\n\n1. Redistributions of source code, in whole or part and with or without\nmodification (the \"Code\"), must prominently display this GPG-signed\ntext in verifiable form.\n2. Redistributions of the Code in binary form must be accompanied by\nthis GPG-signed text in any documentation and, each time the resulting\nexecutable program or a program dependent thereon is launched, a\nprominent display (e.g., splash screen or banner text) of the Author's\nattribution information, which includes:\n(a) Name (\"AUTHOR\"),\n(b) Professional identification (\"PROFESSIONAL IDENTIFICATION\"), and\n(c) URL (\"URL\").\n3. Neither the name nor any trademark of the Author may be used to\nendorse or promote products derived from this software without specific\nprior written permission.\n4. Users are entirely responsible, to the exclusion of the Author and\nany other persons, for compliance with (1) regulations set by owners or\nadministrators of employed equipment, (2) licensing terms of any other\nsoftware, and (3) local regulations regarding use, including those\nregarding import, export, and use of encryption software.\n\nTHIS FREE SOFTWARE IS PROVIDED BY THE AUTHOR \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO\nEVENT SHALL THE AUTHOR OR ANY CONTRIBUTOR BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nEFFECTS OF UNAUTHORIZED OR MALICIOUS NETWORK ACCESS;\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED\nAND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\nIF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n--End of License", + "json": "attribution.json", + "yaml": "attribution.yml", + "html": "attribution.html", + "license": "attribution.LICENSE" + }, + { + "license_key": "autoconf-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "Autoconf-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, the Free Software Foundation gives unlimited\npermission to copy, distribute and modify the configure scripts that\nare the output of Autoconf. You need not follow the terms of the GNU\nGeneral Public License when using or distributing such scripts, even\nthough portions of the text of Autoconf appear in them. The GNU\nGeneral Public License (GPL) does govern all other use of the material\nthat constitutes the Autoconf program.\n\nCertain portions of the Autoconf source text are designed to be copied\n(in certain cases, depending on the input) into the output of\nAutoconf. We call these the \"data\" portions. The rest of the Autoconf\nsource text consists of comments plus executable code that decides which\nof the data portions to output in any given case. We call these\ncomments and executable code the \"non-data\" portions. Autoconf never\ncopies any of the non-data portions into its output.\n\nThis special exception to the GPL applies to versions of Autoconf\nreleased by the Free Software Foundation. When you make and\ndistribute a modified version of Autoconf, you may extend this special\nexception to the GPL to apply to your modified version as well, *unless*\nyour modified version has the potential to copy into its output some\nof the text that was the non-data portion of the version that you started\nwith. (In other words, unless your change moves or copies text from\nthe non-data portions to the data portions.) If your modification has\nsuch potential, you must delete any notice of this special exception\nto the GPL from your modified version.", + "json": "autoconf-exception-2.0.json", + "yaml": "autoconf-exception-2.0.yml", + "html": "autoconf-exception-2.0.html", + "license": "autoconf-exception-2.0.LICENSE" + }, + { + "license_key": "autoconf-exception-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "Autoconf-exception-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "AUTOCONF CONFIGURE SCRIPT EXCEPTION\n\nVersion 3.0, 18 August 2009\n\nCopyright \u00a9 2009 Free Software Foundation, Inc. \n\nEveryone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nThis Exception is an additional permission under section 7 of the GNU General Public License, version 3 (\"GPLv3\"). It applies to a given file that bears a notice placed by the copyright holder of the file stating that the file is governed by GPLv3 along with this Exception.\n\nThe purpose of this Exception is to allow distribution of Autoconf's typical output under terms of the recipient's choice (including proprietary).\n\n0. Definitions.\n\"Covered Code\" is the source or object code of a version of Autoconf that is a covered work under this License.\n\n\"Normally Copied Code\" for a version of Autoconf means all parts of its Covered Code which that version can copy from its code (i.e., not from its input file) into its minimally verbose, non-debugging and non-tracing output.\n\n\"Ineligible Code\" is Covered Code that is not Normally Copied Code.\n\n1. Grant of Additional Permission.\nYou have permission to propagate output of Autoconf, even if such propagation would otherwise violate the terms of GPLv3. However, if by modifying Autoconf you cause any Ineligible Code of the version you received to become Normally Copied Code of your modified version, then you void this Exception for the resulting covered work. If you convey that resulting covered work, you must remove this Exception in accordance with the second paragraph of Section 7 of GPLv3.\n\n2. No Weakening of Autoconf Copyleft.\nThe availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of Autoconf.", + "json": "autoconf-exception-3.0.json", + "yaml": "autoconf-exception-3.0.yml", + "html": "autoconf-exception-3.0.html", + "license": "autoconf-exception-3.0.LICENSE" + }, + { + "license_key": "autoconf-macro-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-autoconf-macro-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, the respective Autoconf Macro's copyright\nowner gives unlimited permission to copy, distribute and modify the\nconfigure scripts that are the output of Autoconf when processing\nthe Macro. You need not follow the terms of the GNU General Public\nLicense when using or distributing such scripts, even though\nportions of the text of the Macro appear in them. The GNU General\nPublic License (GPL) does govern all other use of the material that\nconstitutes the Autoconf Macro.\n\nThis special exception to the GPL applies to versions of the\nAutoconf Macro released by the Autoconf Macro Archive. When you\nmake and distribute a modified version of the Autoconf Macro, you\nmay extend this special exception to the GPL to apply to your\nmodified version as well.", + "json": "autoconf-macro-exception.json", + "yaml": "autoconf-macro-exception.yml", + "html": "autoconf-macro-exception.html", + "license": "autoconf-macro-exception.LICENSE" + }, + { + "license_key": "autoconf-simple-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-autoconf-simple-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception to the GNU General Public License, if you\ndistribute this file as part of a program that contains a\nconfiguration script generated by Autoconf, you may include it under\nthe same distribution terms that you use for the rest of that\nprogram. This Exception is an additional permission under section 7\nof the GNU General Public License, version 3 (\"GPLv3\").", + "json": "autoconf-simple-exception.json", + "yaml": "autoconf-simple-exception.yml", + "html": "autoconf-simple-exception.html", + "license": "autoconf-simple-exception.LICENSE" + }, + { + "license_key": "autoconf-simple-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-autoconf-simple-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception to the GNU General Public License, if you\ndistribute this file as part of a program that contains a\nconfiguration script generated by Autoconf, you may include it under\nthe same distribution terms that you use for the rest of that\nprogram.", + "json": "autoconf-simple-exception-2.0.json", + "yaml": "autoconf-simple-exception-2.0.yml", + "html": "autoconf-simple-exception-2.0.html", + "license": "autoconf-simple-exception-2.0.LICENSE" + }, + { + "license_key": "autodesk-3d-sft-3.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-autodesk-3d-sft-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "/**************************************************************************\n * 3D Studio File Toolkit for Release 3 \n * \n * (C) Copyright 1997 by Autodesk, Inc. \n *\n * License Agreement\n *\n * This Autodesk Program is copyrighted by Autodesk, Inc. and is\n * licensed to you (individual or a legal entity) under the following\n * conditions:\n *\n * You may use, modify, copy, reproduce, distribute, sell, and market\n * the Autodesk Program, incorporated in whole or a portion thereof,\n * solely as a part of a Larger Work (\"Larger Work\" is defined as a\n * work which contains the Autodesk Program or portions thereof with\n * software/programs not governed by the terms of this License) provided\n * such Larger Works:\n * (i) are designed and intended to work solely with Autodesk, Inc.\n * products,\n * (ii.) conspicuously contain Autodesk's copyright notice\n * \"(C) Copyright 1995 by Autodesk, Inc.\",\n * (iii) contain a copy of this license along with the Autodesk\n * Program, (iv) contain the disclaimer of warranty and all\n * notices that refer to this License and to the absence of\n * any warranty;\n * (v) add substantial value in addition to the Autodesk Program. \n *\n * Any derivative or modification of this Autodesk Program must be\n * distributed, published and licensed under the same conditions as\n * this License. \n *\n * You may not license or distribute the Autodesk Program as a standalone\n * program or product including OEM and private label.\n *\n * You may not use, copy, modify, sublicense or distribute the Autodesk\n * Program or any portion thereof in any form if such use or distribution\n * is not expressly licensed and or is expressly prohibited under this\n * License. \n * \n * You acknowledge and agree that Autodesk shall own all right, title\n * and interest in the Autodesk Program and all rights in patents whether\n * now known or hereafter discovered. You do not hold and shall not claim\n * any interest whatsoever in the Autodesk Program. \n *\n * You agree that the Autodesk Program, any portion or derivative\n * thereof will not be shipped, transferred or exported into any country\n * or used in any manner prohibited by the United States Export\n * Administration Act or any other applicable export control law,\n * restriction or regulation.\n *\n * NO WARRANTY.\n * AUTODESK PROVIDES THIS PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND,\n * EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\n * NON-INFRINGEMENT OF THIRD PARTY RIGHTS, THE IMPLIED WARRANTIES OF\n * MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. AUTODESK, INC. DOES\n * NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE UNINTERRUPTED\n * OR ERROR FREE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF\n * THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU\n * (NOT AUTODESK) ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR\n * OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL\n * PART OF THIS LICENSE. NO USE OF THE PROGRAM IS AUTHORIZED HEREUNDER\n * EXCEPT UNDER THIS DISCLAIMER.\n *\n * LIMITATION OF LIABILITY.\n * IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL AUTODESK, OR ANY\n * OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THIS PROGRAM AS\n * PERMITTED HEREIN, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL,\n * SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE\n * OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\n * DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR\n * THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\n * SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\n * POSSIBILITY OF SUCH DAMAGES. \n *\n * This License will be governed by the laws of the State of California,\n * U.S.A., excluding the application of its conflicts of law rules.\n * If any part of this License is found void and unenforceable, it will\n * not affect the validity of the balance of the License, which shall\n * remain valid and enforceable according to its terms.\n *\n * This License and the rights granted hereunder will terminate\n * automatically if you fail to comply with the terms herein. All\n * sublicenses to the Autodesk Program which are properly granted shall\n * survive any termination of this license.\n *************************************************************************/", + "json": "autodesk-3d-sft-3.0.json", + "yaml": "autodesk-3d-sft-3.0.yml", + "html": "autodesk-3d-sft-3.0.html", + "license": "autodesk-3d-sft-3.0.LICENSE" + }, + { + "license_key": "autoit-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-autoit-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Software License\nAutoIt\nAuthor : Jonathan Bennett and the AutoIt Team\nWWW : https://www.autoitscript.com/site/autoit/\nEmail : support at autoitscript dot com\n \nEND-USER LICENSE AGREEMENT FOR THIS SOFTWARE\nThis End-User License Agreement (\"EULA\") is a legal agreement between you (either an individual or a single entity) and the mentioned author of this Software for the software product identified above, which includes computer software and may include associated media, printed materials, and \"online\" or electronic documentation (\"SOFTWARE PRODUCT\"). By installing, copying, or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, do not install or use the SOFTWARE PRODUCT.\n \nSOFTWARE PRODUCT LICENSE\nThe SOFTWARE PRODUCT is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The SOFTWARE PRODUCT is licensed, not sold.\n\nThe definition of SOFTWARE PRODUCT does not includes any files generated by the SOFTWARE PRODUCT, such as compiled script files in the form of standalone executables.\n\n1. GRANT OF LICENSE\n\nThis EULA grants you the following rights:\n\nInstallation and Use. You may install and use an unlimited number of copies of the SOFTWARE PRODUCT.\n\nReproduction and Distribution. You may reproduce and distribute an unlimited number of copies of the SOFTWARE PRODUCT either in whole or in part; each copy should include all copyright and trademark notices, and shall be accompanied by a copy of this EULA. Copies of the SOFTWARE PRODUCT may be distributed as a standalone product or included with your own product.\n\nCommercial Use. You may use the SOFTWARE PRODUCT for commercial purposes. You may sell for profit and freely distribute scripts and/or compiled scripts that were created with the SOFTWARE PRODUCT.\n\nReverse engineering. You may not reverse engineer or disassemble the SOFTWARE PRODUCT.\n\n2. COPYRIGHT\n\nAll title and copyrights in and to the SOFTWARE PRODUCT (including but not limited to any images, photographs, animations, video, audio, music, text, and \"applets\" incorporated into the SOFTWARE PRODUCT), the accompanying printed materials, and any copies of the SOFTWARE PRODUCT are owned by the Author of this Software. The SOFTWARE PRODUCT is protected by copyright laws and international treaty provisions. Therefore, you must treat the SOFTWARE PRODUCT like any other copyrighted material.\n \nMISCELLANEOUS\n\nIf you acquired this product in the United Kingdom, this EULA is governed by the laws of the United Kingdom. If this product was acquired outside the United Kingdom, then local law may apply.\n\nShould you have any questions concerning this EULA, or if you desire to contact the author of this Software for any reason, please contact him/her at the email address mentioned at the top of this EULA.\n \nLIMITED WARRANTY\n\n1. NO WARRANTIES\n\nThe Author of this Software expressly disclaims any warranty for the SOFTWARE PRODUCT. The SOFTWARE PRODUCT and any related documentation is provided \"as is\" without warranty of any kind, either express or implied, including, without limitation, the implied warranties or merchantability, fitness for a particular purpose, or non-infringement. The entire risk arising out of use or performance of the SOFTWARE PRODUCT remains with you.\n\n2. NO LIABILITY FOR DAMAGES\n\nIn no event shall the author of this Software be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or any other pecuniary loss) arising out of the use of or inability to use this product, even if the Author of this Software has been advised of the possibility of such damages. Because some states/jurisdictions do not allow the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply to you.\n \n[END OF LICENSE]", + "json": "autoit-eula.json", + "yaml": "autoit-eula.yml", + "html": "autoit-eula.html", + "license": "autoit-eula.LICENSE" + }, + { + "license_key": "autoopts-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-autoopts-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, Bruce Korb gives permission for additional\nuses of the text contained in his release of AutoOpts.\n\nThe exception is that, if you link the AutoOpts library with other\nfiles to produce an executable, this does not by itself cause the\nresulting executable to be covered by the GNU General Public License.\nYour use of that executable is in no way restricted on account of\nlinking the AutoOpts library code into it.\n\nThis exception does not however invalidate any other reasons why\nthe executable file might be covered by the GNU General Public License.\n\nThis exception applies only to the code released by Bruce Korb under\nthe name AutoOpts. If you copy code from other sources under the\nGeneral Public License into a copy of AutoOpts, as the General Public\nLicense permits, the exception does not apply to the code that you add\nin this way. To avoid misleading anyone as to the status of such\nmodified files, you must delete this exception notice from them.\n\nIf you write modifications of your own for AutoOpts, it is your choice\nwhether to permit this exception to apply to your modifications.\nIf you do not wish that, delete this exception notice.", + "json": "autoopts-exception-2.0.json", + "yaml": "autoopts-exception-2.0.yml", + "html": "autoopts-exception-2.0.html", + "license": "autoopts-exception-2.0.LICENSE" + }, + { + "license_key": "avisynth-c-interface-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-avisynth-c-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, I give you permission to link to the Avisynth\nC interface with independent modules that communicate with the\nAvisynth C interface solely through the interfaces defined in\navisynth_c.h, regardless of the license terms of these independent\nmodules, and to copy and distribute the resulting combined work under\nterms of your choice, provided that every copy of the combined work is\naccompanied by a complete copy of the source code of the Avisynth C\ninterface and Avisynth itself (with the version used to produce the\ncombined work), being distributed under the terms of the GNU General\nPublic License plus this exception. An independent module is a module\nwhich is not derived from or based on Avisynth C Interface, such as\n3rd-party filters, import and export plugins, or graphical user\ninterfaces.", + "json": "avisynth-c-interface-exception.json", + "yaml": "avisynth-c-interface-exception.yml", + "html": "avisynth-c-interface-exception.html", + "license": "avisynth-c-interface-exception.LICENSE" + }, + { + "license_key": "avisynth-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-avisynth-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Linking Avisynth statically or dynamically with other modules is making a\ncombined work based on Avisynth. Thus, the terms and conditions of the GNU\nGeneral Public License cover the whole combination.\n\nAs a special exception, the copyright holders of Avisynth give you\npermission to link Avisynth with independent modules that communicate\nwith Avisynth solely through the interfaces defined in avisynth.h,\nregardless of the license terms of these independent modules, and to\ncopy and distribute the resulting combined work under terms of your\nchoice, provided that every copy of the combined work is accompanied by\na complete copy of the source code of Avisynth (the version of Avisynth\nused to produce the combined work), being distributed under the terms of\nthe GNU General Public License plus this exception. An independent\nmodule is a module which is not derived from or based on Avisynth, such\nas 3rd-party filters, import and export plugins, or graphical user\ninterfaces.", + "json": "avisynth-linking-exception.json", + "yaml": "avisynth-linking-exception.yml", + "html": "avisynth-linking-exception.html", + "license": "avisynth-linking-exception.LICENSE" + }, + { + "license_key": "bacula-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-bacula-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Last revision: 21 May 2017\n\nBacula is licensed under the GNU Affero General Public License, version\n3.0 as published by the Free Software Foundation, Inc. (\"AGPLv3\").\n\nAdditional Terms on the work licensed herein, pursuant to Section 7 of\nAffero General Public License are as follows:\n\n 1. The name Bacula is a registered trademark of Kern Sibbald, and Kern\n Sibbald hereby declines to grant a trademark license to \"Bacula\"\n pursuant to AGPLv3, Section 7(e) without a separate agreement with Kern\n Sibbald.\n\n 2. Pursuant to AGPLv3, Section 7(a), in addition to the warranty and\n liability disclaimers already found in AGPLv3, the copyright holders\n specifically disclaim any liability for accusations of patent\n infringement by any third party.\n\n 3. Pursuant to AGPLv3, Section 7(b), the portions of the file AUTHORS that\n are deemed to be specified reasonable legal notices and/or author\n attributions shall be preserved in redistribution of source code and/or\n modifications thereof. Furthermore, when the following notice appears in\n a source code file, it must be preserved when source code is conveyed\n and/or propagated:\n\n Bacula(R) - The Network Backup Solution\n\n Copyright (C) 2000-2017 Kern Sibbald\n\n The original author of Bacula is Kern Sibbald, with contributions\n from many others, a complete list can be found in the file AUTHORS.\n\n You may use this file and others of this release according to the\n license defined in the LICENSE file, which includes the Affero General\n Public License, v3.0 (\"AGPLv3\") and some additional permissions and\n terms pursuant to its AGPLv3 Section 7.\n\n This notice must be preserved when any source code is conveyed\n and/or propagated.\n\n Bacula(R) is a registered trademark of Kern Sibbald.\n\nAdditional Permissions on the work licensed herein, pursuant to Section 7 of\nAGPLv3 are as follows:\n\n1. As a special exception to the AGPLv3, the copyright holders give\n permission to link the code of its release of Bacula with the OpenSSL\n project's \"OpenSSL\" library (or with modified versions of it that use the\n same license as the \"OpenSSL\" library), and distribute the linked\n executables. You must follow the requirements of AGPLv3 in all respects\n for all of the code used other than \"OpenSSL\".\n\n2. As a special exception to the AGPLv3, the copyright holders give\n permission to link the code of its release of the Bacula Win32 File daemon\n with the Microsoft supplied Volume Shadow Copy (VSS) libraries and\n distribute the linked executables. You must follow the requirements of\n the AGPLv3 in all respects for all of the code used other than for the\n Microsoft VSS code.\n\nIf you want to fork Bacula, please read the file LICENSE-FAQ.", + "json": "bacula-exception.json", + "yaml": "bacula-exception.yml", + "html": "bacula-exception.html", + "license": "bacula-exception.LICENSE" + }, + { + "license_key": "baekmuk-fonts", + "category": "Permissive", + "spdx_license_key": "Baekmuk", + "other_spdx_license_keys": [ + "LicenseRef-scancode-baekmuk-fonts" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Baekmuk Fonts License\n\nCopyright (c) Kim Jeong-Hwan All rights reserved.\n\nPermission to use, copy, modify and distribute this font is\nhereby granted, provided that both the copyright notice and\nthis permission notice appear in all copies of the font,\nderivative works or modified versions, and that the following\nacknowledgement appear in supporting documentation:\n Baekmuk Batang, Baekmuk Dotum, Baekmuk Gulim, and\n Baekmuk Headline are registered trademarks owned by\n Kim Jeong-Hwan.", + "json": "baekmuk-fonts.json", + "yaml": "baekmuk-fonts.yml", + "html": "baekmuk-fonts.html", + "license": "baekmuk-fonts.LICENSE" + }, + { + "license_key": "bahyph", + "category": "Permissive", + "spdx_license_key": "Bahyph", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "COPYRIGHT NOTICE \n\nThese patterns and the generating sh script are Copyright (c) GMV 1991 \n\nThese patterns were developed for internal GMV use and are made public in the hope that they will benefit others. Also, spreading these patterns throughout the Spanish-language TeX community is expected to provide back-benefits to GMV in that it can help keeping GMV in the mainstream of spanish users. \n\nHowever, this is given for free and WITHOUT ANY WARRANTY. Under no circumstances can Julio Sanchez, GMV, Jos'e A. Ma~nas or any agents or representatives thereof be held responsible for any errors in this software nor for any damages derived from its use, even in case any of the above has been notified of the possibility of such damages. If any such situation arises, you responsible for repair. Use of this software is an explicit acceptance of these conditions. \n\nYou can use this software for any purpose. You cannot delete this copyright notice. If you change this software, you must include comments explaining who, when and why. You are kindly requested to send any changes to tex@gmv.es. If you change the generating script, you must include code in it such that any output is clearly labeled as generated by a modified script. Despite the lack of warranty, we would like to hear about any problem you find. Please report problems to tex@gmv.es. \n\nEND OF COPYRIGHT NOTICE", + "json": "bahyph.json", + "yaml": "bahyph.yml", + "html": "bahyph.html", + "license": "bahyph.LICENSE" + }, + { + "license_key": "bakoma-fonts-1995", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bakoma-fonts-1995", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "\t\t\tBaKoMa Fonts Licence\n\t\t\t--------------------\n\n This licence covers two font packs (known as BaKoMa Fonts Colelction,\n which is available at `CTAN:fonts/cm/ps-type1/bakoma/'):\n\n 1) BaKoMa-CM (1.1/12-Nov-94)\n Computer Modern Fonts in PostScript Type 1 and TrueType font formats.\n\n 2) BaKoMa-AMS (1.2/19-Jan-95)\n AMS TeX fonts in PostScript Type 1 and TrueType font formats.\n \n Copyright (C) 1994, 1995, Basil K. Malyshev. All Rights Reserved.\n\n Permission to copy and distribute these fonts for any purpose is \n hereby granted without fee, provided that the above copyright notice, \n author statement and this permission notice appear in all copies of \n these fonts and related documentation.\n\n Permission to modify and distribute modified fonts for any purpose is \n hereby granted without fee, provided that the copyright notice, \n author statement, this permission notice and location of original \n fonts (http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma)\n appear in all copies of modified fonts and related documentation.\n\n Permission to use these fonts (embedding into PostScript, PDF, SVG\n and printing by using any software) is hereby granted without fee. \n It is not required to provide any notices about using these fonts.\n\n Basil K. Malyshev\n INSTITUTE FOR HIGH ENERGY PHYSICS\n IHEP, OMVT\n Moscow Region\n 142281 PROTVINO\n RUSSIA\n\n E-Mail:\tbakoma@mail.ru\n or\tmalyshev@mail.ihep.ru", + "json": "bakoma-fonts-1995.json", + "yaml": "bakoma-fonts-1995.yml", + "html": "bakoma-fonts-1995.html", + "license": "bakoma-fonts-1995.LICENSE" + }, + { + "license_key": "bapl-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-bapl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "## Booz Allen Public License v1.0 \n\n\n### INTRODUCTION\nThe Booz Allen Public License allows government, non-profit academic, other non-profit, and commercial entities access to distinctive, disruptive, and robust code with the goal of Empowering People to Change the World℠. Products licensed under the Booz Allen Public License are founded on the basis that collective ingenuity can make the largest impact in the community. \n\n### DEFINITIONS\n* **Commercial Entity.** \u201cCommercial Entity\u201d means any individual or entity other than a government, non-profit academic, or other non-profit entity.\n* **Derivative.** \u201cDerivative\u201d means any work of authorship in Source Code or Object Code form that results from an addition to, deletion from, or modification of the Source Code of the Product.\n* **License.** \u201cLicense\u201d means this Booz Allen Public License.\n* **Object Code.** \u201cObject Code\u201d means the form resulting from transformation or translation of Source Code into machine readable code, including but not limited to, compiled object code.\n* **Originator.** \u201cOriginator\u201d means each individual or legal entity that creates, contributes to the creation of, or owns the Product. \n* **Patent Claims.** \u201cPatent Claims\u201d means any patent claim(s) in any patent to which Originator has a right to grant a license that would be infringed by Your making, using, selling, offering for sale, having made, or importing of the Product, but for the grant of this License. \n* **Product.** \u201cProduct\u201d means the Source Code of the software which the initial Originator made available under this License, and any Derivative of such Source Code. \n* **Source Code.** \u201cSource Code\u201d means software in human-readable form.\n* **You.** \u201cYou\u201d means either an individual or an entity (if you are taking this license on behalf of an entity) that exercises the rights granted under this License. \n \n### LICENSE\n**Government/Non-Profit Academic/Other Non-Profit.** \nThis Section applies if You are not a Commercial Entity. \n\n* **License.** Subject to the terms and conditions of this License, each Originator hereby grants You a perpetual, worldwide, non-exclusive, royalty-free license to reproduce, display, perform, modify, distribute and otherwise use the Product and Derivatives, in Source Code and Object Code form, in accordance with the terms and conditions of this License in order to support the general public good and for your internal business purposes.\n* **Distribution.** You may distribute to third parties copies of the Product, including any Derivative that You create, in Source Code or Object Code form. If You distribute copies of the Product, including any Derivative that You create, in Source Code form, such distribution must be under the terms of this License and You must inform recipients of the Source Code that the Product is governed under this License and how they can obtain a copy of this License. You may distribute to third parties copies of the Product, including any Derivative that You create, in Object Code form, or allow third parties to access or use the Product, including any Derivative that You create, under a license of Your choice.\n* **Commercial Sales.** You may not distribute, or allow third parties to access or use, the Product or any Derivative for a fee, unless You first obtain permission from the Originator. If Booz Allen Hamilton is the Originator, please contact Booz Allen Hamilton at . \n\n**Commercial Entities**. \nThis Section applies if You are a Commercial Entity.\n\n* **License.** Subject to the terms and conditions of this License, each Originator hereby grants You a perpetual, worldwide, non-exclusive, royalty-free license to reproduce, display, perform, modify, distribute and otherwise use the Product and Derivatives, in Source Code and Object Code form, in accordance with the terms and conditions of this License for the sole purpose of Your internal business purposes and the provision of services to government, non-profit academic, and other non-profit entities. \n* **Distribution and Derivatives.** You may distribute to third parties copies of the Product, including any Derivative that You create, in Source Code or Object Code form. If You distribute copies of the Product, including any Derivative that You create, in Source Code form, such distribution must be under the terms of this License and You must inform recipients of the Source Code that the Product is governed under this License and how they can obtain a copy of this License. You may distribute to third parties copies of the Product, including any Derivative that You create, in Object Code form, or allow third parties to access or use the Product, including any Derivative that You create, under a license of Your choice, provided that You make available, and inform the recipient of such distribution how they can obtain, a copy of the Source Code thereof, at no charge, and inform the recipient of the Source Code that the Product is governed under this License and how they can obtain a copy of this License.\n* **Commercial Sales.** You may not distribute, or allow third parties to access or use, the Product or any Derivative for a fee, unless You first obtain permission from the Originator. If Booz Allen Hamilton, please contact Booz Allen Hamilton at . \n\n \n**Patent Claim(s)**. \nThis Section applies regardless of whether You are a government, non-profit academic, or other non-profit entity or a Commercial Entity. \n\n* **Patent License.** Subject to the limitations in the Sections above, each Originator hereby grants You a perpetual, worldwide, non-exclusive, royalty-free license under Patent Claims of such Originator to make, use, sell, offer for sale, have made, and import the Product. The foregoing patent license does not apply (a) to any code that an Originator has removed from the Product, or (b) for infringement caused by Your modifications of the Product or the combination of any Derivative created by You or on Your behalf with other software. \n\n### GENERAL TERMS \nThis Section applies regardless of whether You are a government, non-profit academic, or other non-profit entity or a Commercial Entity.\n\n* **Required Notices.** If You distribute the Product or a Derivative, in Object Code or Source Code form, You shall not remove or otherwise modify any proprietary markings or notices contained within or placed upon the Product or any Derivative. Any distribution of the Product or a Derivative, in Object Code or Source Code form, shall contain a clear and conspicuous Originator copyright and license reference in accordance with the below:\n\t* *Unmodified Product Notice*: \u201cThis software package is licensed under the Booz Allen Public License. Copyright \u00a9 20__ [Copyright Holder Name]. All Rights Reserved.\u201d\n\t* *Derivative Notice*: \u201cThis software package is licensed under the Booz Allen Public License. Portions of this code are Copyright \u00a9 20__ [Copyright Holder Name]. All Rights Reserved.\u201d\n* **Compliance with Laws.** You agree that You shall not reproduce, display, perform, modify, distribute and otherwise use the Product in any way that violates applicable law or regulation or infringes or violates the rights of others, including, but not limited to, third party intellectual property, privacy, and publicity rights.\n* **Disclaimer.** You understand that the Product is licensed to You, and not sold. The Product is provided on an \u201cAs Is\u201d basis, without any warranties, representations, and guarantees, whether oral or written, express, implied or statutory, with regard to the Product, including without limitation, warranties of merchantability, fitness for a particular purpose, title, non-infringement, non-interference, and warranties arising from course of dealing or usage of trade, to the maximum extent permitted by applicable law. Originator does not warrant that (i) the Product will meet your needs; (ii) the Product will be error-free or accessible at all times; or (iii) the use or the results of the use of the Product will be correct, accurate, timely, or otherwise reliable. You acknowledge that the Product has not been prepared to meet Your individual requirements, whether or not such requirements have been communicated to Originator. You assume all responsibility for use of the Product.\n* **Limitation of Liability.** Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Originator, or anyone who distributes the Product in accordance with this License, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if informed of the possibility of such damages.\n* **Export Control.** The Product is subject to U.S. export control laws and may be subject to export or import regulations in other countries. You agree to strictly comply with all such laws and regulations and acknowledges that You are responsible for obtaining such licenses to export, re-export, or import as may be required.\n* **Severability.** If the application of any provision of this License to any particular facts or circumstances shall be held to be invalid or unenforceable, then the validity and enforceability of other provisions of this License shall not in any way be affected or impaired thereby.", + "json": "bapl-1.0.json", + "yaml": "bapl-1.0.yml", + "html": "bapl-1.0.html", + "license": "bapl-1.0.LICENSE" + }, + { + "license_key": "barr-tex", + "category": "Permissive", + "spdx_license_key": "Barr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is a package of commutative diagram macros built on top of Xy-pic by\nMichael Barr (email: barr@barrs.org). Its use is unrestricted. It may be freely\ndistributed, unchanged, for non-commercial or commercial use. If changed, it\nmust be renamed. Inclusion in a commercial software package is also permitted,\nbut I would appreciate receiving a free copy for my personal examination and\nuse. There are no guarantees that this package is good for anything. I have\ntested it with LaTeX 2e, LaTeX 2.09 and Plain TeX. Although I know of no reason\nit will not work with AMSTeX, I have not tested it.", + "json": "barr-tex.json", + "yaml": "barr-tex.yml", + "html": "barr-tex.html", + "license": "barr-tex.LICENSE" + }, + { + "license_key": "bash-exception-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-bash-exception-gpl-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "The Free Software Foundation has exempted Bash from the requirement of\nParagraph 2c of the General Public License. This is to say, there is\nno requirement for Bash to print a notice when it is started\ninteractively in the usual way. We made this exception because users\nand standards expect shells not to print such messages. This\nexception applies to any program that serves as a shell and that is\nbased primarily on Bash as opposed to other GNU software.", + "json": "bash-exception-gpl.json", + "yaml": "bash-exception-gpl.yml", + "html": "bash-exception-gpl.html", + "license": "bash-exception-gpl.LICENSE" + }, + { + "license_key": "bea-2.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bea-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BEA Public License Version 2.1\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. \tDefinitions.\n\n\"License\" shall mean the terms and conditions of this agreement.\n\n\"Licensor\" shall mean BEA Systems, Inc.\n\n\"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. \n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License, including but not limited to each Contributor other than Licensor in such Contributor's role as a licensee for the Software.\n\n\"Source Format\" shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object Format\" shall mean any form resulting from mechanical transformation or translation of a Source Format, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Software\" shall mean the original version of the software accompanying this agreement as released by BEA, including in Source or Object Format, and also any documentation provided therewith.\n\n\"Derivative Works\" shall mean any work, whether in Source or Object Format, that is based on (or derived from) the Software 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 Software and derivative works\nthereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Software and any modifications or additions to that Software or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Software 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 Software, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"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 Software.\n\n2. \tGrant 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 Software and such Derivative Works in Source or Object Format. Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the foregoing copyright license.\n\n3. \tGrant of Patent License. \tSubject 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 Software, 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 Software 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 Software or a Contribution incorporated within the Software constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Software shall terminate as of the date such litigation is filed. \n\n4. \tRedistribution. You may reproduce and distribute copies of the Software or Derivative Works thereof in any medium, with or without modifications, and in Source or Object Format, provided that You meet the following conditions: \n\n (a) \tYou must give any other recipients of the Software or Derivative Works a copy of this License; and\n\n (b) \tYou must cause any modified files to carry prominent notices stating that You changed the files; and\n\n(c) \tYou must retain, in the Source Format of any Derivative Works that You distribute, BEA's copyright notice, \u00a9 [Date] BEA Systems, Inc. All rights Reserved. and all other copyright, patent, trademark, and attribution notices from the Source Format of the Software, excluding those notices that do not pertain to any part of the Derivative Works; and \n\n(d)\tYou must affix to the Software or any Derivative Works in a prominent manner BEA's copyright notice, \u00a9 [Date] BEA Systems, Inc. All rights Reserved whenever You distribute the Software or such Derivative Works in Object Format.\n\nYou 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 Software otherwise complies with the conditions stated in this License.\n\n5. \tSubmission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Software 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.\n\n6. \tTrademarks. 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 Software and reproducing the content of the NOTICE file.\n\n7. \tDisclaimer of Warranty. EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using and distributing the Software and assume all risks associated with Your exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. Further, You understand that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that its Contribution does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to You for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, You hereby assume sole responsibility to secure any other intellectual property rights needed, if any.\n\n8. \tLimitation of Liability. EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NO CONTRIBUTOR SHALL HAVE ANY LIABILITY TO YOU FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE SOFTWARE OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n9. \tAccepting Warranty or Additional Liability. Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Software, if You include the Software in a commercial product offering, You may do so only in a manner which does not create potential liability for any Contributor. Therefore, if You include the Software in a commercial product offering, You shall and hereby do agree to defend and indemnify each and every Contributor against any losses, damages and costs (collectively \"Losses\") arising from claims, lawsuits and other legal actions brought by a third party against such Contributor(s) to the extent caused by Your acts or omissions in connection with Your distribution of the Software in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify to receive indemnification from You, a Contributor must: a) promptly notify You in writing of such claim, and b) allow the You to control, and cooperate with the You in, the defense and any related settlement negotiations. The Contributor indemnified by You may participate in any such claim at its own expense.", + "json": "bea-2.1.json", + "yaml": "bea-2.1.yml", + "html": "bea-2.1.html", + "license": "bea-2.1.LICENSE" + }, + { + "license_key": "beal-screamer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-beal-screamer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License\nby \"Beal Screamer\"\n\n-----BEGIN PGP SIGNED MESSAGE-----\nA license???? For anonymously published software? Yes! The purpose here is to outline how I would like the software used. Putting together all this has been a lot of work, and I hope people can respect the purpose behind the software, as spelled out here.\n\nThe purpose of this software is to re-assert your rights over fair use of audio files that you have legally purchased or otherwise obtained legally. Please use it for that purpose only. Do not use it to unprotect files you don't have a legal right to, or to unprotect legal files for the purpose of re-distributing them to others who do not have a legal right to the content. In other words, in use of this software obey traditional copyright laws -- but the DMCA may be completely ignored as far as this license concerned (although you must accept responsibility for ignoring this law, since it is enforceable).\n\nThis is free software, without any warranties, guarantees, or any assurance that it will work as described. It relies on certain other software (from Microsoft) operating as it currently does, so I don't take any responsibility for what happens if Microsoft updates their software to render this useless, or even if they put bombs in their new software to erase all your files if they detect this software. But I sure hope they wouldn't do that.\n\n-----BEGIN PGP SIGNATURE-----\nVersion: 2.6.2\n\niQCVAwUBO5qtlZCr1f2GXCalAQHLNAP+IU9J5wnZPihRsRGqkqK01cWAHPfrmwfx\npyEelwSpOf2Vd+kPTg3oViscg7PNr2jS92yDS8X8manr6qZmJE2zZ+r4G5o8SmBp\nzLQiQHXsIuy4Looy9NxNe0REhDT0yg141Kvd+Sbpx2iv7A6H1aelxC4G1JkHU4Rq\nhFobp8IvAC0=\n=cO5z\n-----END PGP SIGNATURE-----", + "json": "beal-screamer.json", + "yaml": "beal-screamer.yml", + "html": "beal-screamer.html", + "license": "beal-screamer.LICENSE" + }, + { + "license_key": "beerware", + "category": "Permissive", + "spdx_license_key": "Beerware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "\"THE BEER-WARE LICENSE\" (Revision 42):\n wrote this file. As long as you retain this notice you\ncan do whatever you want with this stuff. If we meet some day, and you think\nthis stuff is worth it, you can buy me a beer in return Poul-Henning Kamp", + "json": "beerware.json", + "yaml": "beerware.yml", + "html": "beerware.html", + "license": "beerware.LICENSE" + }, + { + "license_key": "beri-hw-sw-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-beri-hw-sw-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BERI HARDWARE-SOFTWARE LICENSE v1.0\n\n This license is based closely on the Apache License Version 2.0, but is\n not approved or endorsed by the Apache Foundation. Changes primarily\n relate to broadening the set of rights covered by the license from simple\n copyright to other hardware-related rights such as board layouts and CAD\n files. A copy of the non-modified Apache License 2.0 can be found at\n http://www.apache.org/licenses/LICENSE-2.0\n \n As this license is not currently OSI or FSF approved, the Licensor\n permits any Work licensed under this License, at the option of the\n Licensee, to be treated as licensed under the Apache License Version 2.0\n (which is so approved).\n \n This License is licensed under the terms of this License and in\n particular clause 7 below (Disclaimer of Warranties) applies in relation\n to its use.\n \n \n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the Rights owner or entity authorized by\n the Rights owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Rights\" means copyright and any similar right including design right\n (whether registered or unregistered), semiconductor topography (mask)\n rights and database rights (but excluding Patents and Trademarks).\n \n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to source code, net lists, board layouts,\n CAD files, documentation source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but not\n limited to compiled object code, generated documentation, the\n instantiation of a hardware design and conversions to other media\n types, including intermediate forms such as bytecodes, FPGA\n bitstreams, artwork and semiconductor topographies (mask works).\n\n \"Work\" shall mean the work of authorship, whether in Source form or\n other Object form, made available under the License, as indicated by a\n Rights notice that is included in or attached to the work (an example\n is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the\n purposes of this License, Derivative Works shall not include works\n that remain separable from, or merely link (or bind by name) or\n physically connect to or interoperate with the interfaces of, the Work\n and Derivative Works thereof.\n\n \"Contribution\" shall mean any design or work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the Rights owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the Rights owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the Rights owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of License. Subject to the terms and conditions of this License,\n each Contributor hereby grants to You a perpetual, worldwide,\n non-exclusive, no-charge, royalty-free, irrevocable license under the\n Rights to reproduce, prepare Derivative Works of, publicly display,\n publicly perform, sublicense, and distribute the Work and such\n Derivative Works in Source or Object form and do anything in relation\n to the Work as if the Rights did not exist.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply this license to your work.\n\n To apply this license to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Copyright and related rights are licensed under the BERI Hardware-Software\n License, Version 1.0 (the \"License\"); you may not use this file except\n in compliance with the License. You may obtain a copy of the License at:\n\n http://www.beri-open-systems.org/legal/license-1-0.txt\n\n Unless required by applicable law or agreed to in writing, software,\n hardware and materials distributed under this License is distributed on\n an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n express or implied. See the License for the specific language governing\n permissions and limitations under the License.", + "json": "beri-hw-sw-1.0.json", + "yaml": "beri-hw-sw-1.0.yml", + "html": "beri-hw-sw-1.0.html", + "license": "beri-hw-sw-1.0.LICENSE" + }, + { + "license_key": "bigdigits", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bigdigits", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BigDigits License \n\nThis source code is part of the BIGDIGITS multiple-precision arithmetic\nlibrary Version 2.3 originally written by David Ireland, copyright (c)\n2001-11 D.I. Management Services Pty Limited, all rights reserved.\n\nYou are permitted to use compiled versions of this code at no charge as\npart of your own executable files and to distribute unlimited copies of\nsuch executable files for any purposes including commercial ones\nprovided you agree to these terms and conditions and keep the copyright\nnotices intact in the source code and you ensure that the following\ncharacters remain in any object or executable files you distribute AND\nclearly in any accompanying documentation:\n\n\"Contains BIGDIGITS multiple-precision arithmetic code originally\nwritten by David Ireland, copyright (c) 2001-11 by D.I. Management\nServices Pty Limited , and is used with permission.\"\n\nDavid Ireland and DI Management Services Pty Limited make no\nrepresentations concerning either the merchantability of this software\nor the suitability of this software for any particular purpose. It is\nprovided \"as is\" without express or implied warranty of any kind. Our\nliability will be limited exclusively to the refund of the money you\npaid us for the software, namely nothing. By using the software you\nexpressly agree to such a waiver. If you do not agree to the terms, do\nnot use the software.\n\nPlease forward any comments and bug reports to . The\nlatest version of the source code can be downloaded from \n.\n\nLast updated: 11 November 2011.", + "json": "bigdigits.json", + "yaml": "bigdigits.yml", + "html": "bigdigits.html", + "license": "bigdigits.LICENSE" + }, + { + "license_key": "bigelow-holmes", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bigelow-holmes", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is the LEGAL NOTICE pertaining to the Lucida fonts from Bigelow & Holmes:\n\n\tNOTICE TO USER: The source code, including the glyphs or icons \n\tforming a par of the OPEN LOOK TM Graphic User Interface, on this \n\ttape and in these files is copyrighted under U.S. and international\n\tlaws. Sun Microsystems, Inc. of Mountain View, California owns\n\tthe copyright and has design patents pending on many of the icons. \n\tAT&T is the owner of the OPEN LOOK trademark associated with the\n\tmaterials on this tape. Users and possessors of this source code \n\tare hereby granted a nonexclusive, royalty-free copyright and \n\tdesign patent license to use this code in individual and \n\tcommercial software. A royalty-free, nonexclusive trademark\n\tlicense to refer to the code and output as \"OPEN LOOK\" compatible \n\tis available from AT&T if, and only if, the appearance of the \n\ticons or glyphs is not changed in any manner except as absolutely\n\tnecessary to accommodate the standard resolution of the screen or\n\tother output device, the code and output is not changed except as \n\tauthorized herein, and the code and output is validated by AT&T. \n\tBigelow & Holmes is the owner of the Lucida (R) trademark for the\n\tfonts and bit-mapped images associated with the materials on this \n\ttape. Users are granted a royalty-free, nonexclusive license to use\n\tthe trademark only to identify the fonts and bit-mapped images if, \n\tand only if, the fonts and bit-mapped images are not modified in any\n\tway by the user. \n\n\tAny use of this source code must include, in the user documentation \n\tand internal comments to the code, notices to the end user as \n\tfollows:\n\n\t(c) Copyright 1989 Sun Microsystems, Inc. Sun design patents\n\tpending in the U.S. and foreign countries. OPEN LOOK is a \n\ttrademark of AT&T. Used by written permission of the owners.\n\n \t(c) Copyright Bigelow & Holmes 1986, 1985. Lucida is a registered \n\ttrademark of Bigelow & Holmes. Permission to use the Lucida \n\ttrademark is hereby granted only in association with the images \n\tand fonts described in this file.\n\n\tSUN MICROSYSTEMS, INC., AT&T, AND BIGELOW & HOLMES \n\tMAKE NO REPRESENTATIONS ABOUT THE SUITABILITY OF\n \tTHIS SOURCE CODE FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\" \n\tWITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND. \n\tSUN MICROSYSTEMS, INC., AT&T AND BIGELOW & HOLMES, \n\tSEVERALLY AND INDIVIDUALLY, DISCLAIM ALL WARRANTIES \n\tWITH REGARD TO THIS SOURCE CODE, INCLUDING ALL IMPLIED\n\tWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n\tPARTICULAR PURPOSE. IN NO EVENT SHALL SUN MICROSYSTEMS,\n\tINC., AT&T OR BIGELOW & HOLMES BE LIABLE FOR ANY\n\tSPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,\n\tOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA \t\n\tOR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\n\tOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION\n\tWITH THE USE OR PERFORMANCE OF THIS SOURCE CODE.", + "json": "bigelow-holmes.json", + "yaml": "bigelow-holmes.yml", + "html": "bigelow-holmes.html", + "license": "bigelow-holmes.LICENSE" + }, + { + "license_key": "bigscience-rail-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bigscience-rail-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BigScience RAIL License v1.0\ndated May 19, 2022\n\nThis is a license (the \u201cLicense\u201d) between you (\u201cYou\u201d) and the participants of BigScience (\u201cLicensor\u201d). Whereas the Apache 2.0 license was applicable to resources used to develop the Model, the licensing conditions have been modified for the access and distribution of the Model. This has been done to further BigScience\u2019s aims of promoting not just open-access to its artifacts, but also a responsible use of these artifacts. Therefore, this Responsible AI License (RAIL)[1] aims at having an open and permissive character while striving for responsible use of the Model.\n\n\n Section I: PREAMBLE\n\n\nBigScience is a collaborative open innovation project aimed at the responsible development and use of large multilingual datasets and Large Language Models (\u201cLLM\u201d), as well as, the documentation of best practices and tools stemming from this collaborative effort. Further, BigScience participants wish to promote collaboration and sharing of research artifacts - including the Model - for the benefit of society, pursuant to this License.\n\n\nThe development and use of LLMs, and broadly artificial intelligence (\u201cAI\u201d), does not come without concerns. The world has witnessed how just a few companies/institutions are able to develop LLMs, and moreover, how Natural Language Processing techniques might, in some instances, become a risk for the public in general. Concerns might come in many forms, from racial discrimination to the treatment of sensitive information. \n\n\nBigScience believes in the intersection between open and responsible AI development, thus, this License aims to strike a balance between both in order to enable responsible open-science for large language models and future NLP techniques. \nThis License governs the use of the BigScience BLOOM models (and their derivatives) and is informed by both the BigScience Ethical Charter and the model cards associated with the BigScience BLOOM models. BigScience has set forth its Ethical Charter representing the values of its community. Although the BigScience community does not aim to impose its values on potential users of this Model, it is determined to take tangible steps towards protecting the community from inappropriate uses of the work being developed by BigScience.\nFurthermore, the model cards for the BigScience BLOOM models will inform the user about the limitations of the Model, and thus serves as the basis of some of the use-based restrictions in this License (See Part II).\n\nNOW THEREFORE, You and Licensor agree as follows:\n\n1. Definitions \n\n\n1. \"License\" shall mean the terms and conditions for use, reproduction, and Distribution as defined in this document.\n2. \u201cData\u201d means a collection of texts extracted from the BigScience Corpus used with the Model, including to train, pretrain, or otherwise evaluate the Model. The Data is not licensed under this License. The BigScience Corpus is a collection of existing sources of language data documented on the BigScience website.\n3. \u201cOutput\u201d means the results of operating a Model as embodied in informational content resulting therefrom.\n4. \u201cModel\u201d means any accompanying machine-learning based assemblies (including checkpoints), consisting of learnt weights, parameters (including optimizer states), corresponding to the BigScience BLOOM model architecture as embodied in the Complementary Material, that have been trained or tuned, in whole or in part, on the Data using the Complementary Material. \n5. \u201cDerivatives of the Model\u201d means all modifications to the Model, works based on the Model, or any other model which is created or initialized by transfer of patterns of the weights, parameters, activations or output of the Model, to the other model, in order to cause the other model to perform similarly to the Model, including - but not limited to - distillation methods entailing the use of intermediate data representations or methods based on the generation of synthetic data by the Model for training the other model.\n6. \u201cComplementary Material\u201d shall mean the accompanying source code and scripts used to define, run, load, benchmark or evaluate the Model, and used to prepare data for training or evaluation. This includes any accompanying documentation, tutorials, examples etc.\n7. \u201cDistribution\u201d means any transmission, reproduction, publication or other sharing of the Model or Derivatives of the Model to a third party, including providing the Model as a hosted service made available by electronic or other remote means - e.g. API-based or web access. \n8. \u201cLicensor\u201d means the copyright owner or entity authorized by the copyright owner that is granting the License, including the persons or entities that may have rights in the Model and/or distributing the Model.\n9. \"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License and/or making use of the Model for whichever purpose and in any field of use, including usage of the Model in an end-use application - e.g. chatbot, translator.\n10. \u201cThird Parties\u201d means individuals or legal entities that are not under common control with Licensor or You.\n11. \"Contribution\" shall mean any work of authorship, including the original version of the Model and any modifications or additions to that Model or Derivatives of the Model thereof, that is intentionally submitted to Licensor for inclusion in the Model 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, \u201csubmitted\u201d 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 Model, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\" \n12. \"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 Model.\n\n\n Section II: INTELLECTUAL PROPERTY RIGHTS\nBoth copyright and patent grants apply to the Model, Derivatives of the Model and Complementary Material. The Model and Derivatives of the Model are subject to additional terms as described in Section III.\n2. 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, publicly display, publicly perform, sublicense, and distribute the Complementary Material, the Model, and Derivatives of the Model.\n3. 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 paragraph) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Model and the Complementary Material, 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 Model 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 Model and/or Complementary Material or a Contribution incorporated within the Model and/or Complementary Material constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for the Model and/or Work shall terminate as of the date such litigation is filed.\n\n\nSection III: CONDITIONS OF USAGE, DISTRIBUTION AND REDISTRIBUTION\n\n\n4. Distribution and Redistribution. You may host for Third Party remote access purposes (e.g. software-as-a-service), reproduce and distribute copies of the Model or Derivatives of the Model thereof in any medium, with or without modifications, provided that You meet the following conditions:\n1. Use-based restrictions as referenced in paragraph 5 MUST be included as an enforceable provision by You in any type of legal agreement (e.g. a license) governing the use and/or distribution of the Model or Derivatives of the Model, and You shall give notice to subsequent users You Distribute to, that the Model or Derivatives of the Model are subject to paragraph 5. This provision does not apply to the use of Complementary Material.\n2. You must give any Third Party recipients of the Model or Derivatives of the Model a copy of this License; \n3. You must cause any modified files to carry prominent notices stating that You changed the files; \n4. You must retain all copyright, patent, trademark, and attribution notices excluding those notices that do not pertain to any part of the Model, Derivatives of the Model.\nYou may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions - respecting paragraph 4.a. - for use, reproduction, or Distribution of Your modifications, or for any such Derivatives of the Model as a whole, provided Your use, reproduction, and Distribution of the Model otherwise complies with the conditions stated in this License.\n5. Use-based restrictions. The restrictions set forth in Attachment A are considered Use-based restrictions. Therefore You cannot use the Model and the Derivatives of the Model for the specified restricted uses. You may use the Model subject to this License, including only for lawful purposes and in accordance with the License. Use may include creating any content with, finetuning, updating, running, training, evaluating and/or reparametrizing the Model. You shall require all of Your users who use the Model or a Derivative of the Model to comply with the terms of this paragraph (paragraph 5). \n6. The Output You Generate. Except as set forth herein, Licensor claims no rights in the Output You generate using the Model. You are accountable for the Output you generate and its subsequent uses. No use of the output can contravene any provision as stated in the License. \n\n\nSection IV: OTHER PROVISIONS\n7. Updates and Runtime Restrictions. To the maximum extent permitted by law, Licensor reserves the right to restrict (remotely or otherwise) usage of the Model in violation of this License, update the Model through electronic means, or modify the Output of the Model based on updates. You shall undertake reasonable efforts to use the latest version of the Model.\n8. Trademarks and related. Nothing in this License permits You to make use of Licensors\u2019 trademarks, trade names, logos or to otherwise suggest endorsement or misrepresent the relationship between the parties; and any rights not expressly granted herein are reserved by the Licensors.\n9. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Model and the Complementary Material (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 Model, Derivatives of the Model, and the Complementary Material and assume any risks associated with Your exercise of permissions under this License.\n10. 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 Model and the Complementary Material (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.\n11. Accepting Warranty or Additional Liability. While redistributing the Model, Derivatives of the Model and the Complementary Material 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.\n12. If any provision of this License is held to be invalid, illegal or unenforceable, the remaining provisions shall be unaffected thereby and remain valid as if such provision had not been set forth herein.\nEND OF TERMS AND CONDITIONS\n\nAttachment A\nUse Restrictions\nYou agree not to use the Model or Derivatives of the Model:\n1. In any way that violates any applicable national, federal, state, local or international law or regulation;\n2. For the purpose of exploiting, harming or attempting to exploit or harm minors in any way;\n3. To generate or disseminate verifiably false information with the purpose of harming others;\n4. To generate or disseminate personal identifiable information that can be used to harm an individual;\n5. To generate or disseminate information or content, in any context (e.g. posts, articles, tweets, chatbots or other kinds of automated bots) without expressly and intelligibly disclaiming that the text is machine generated; \n6. To defame, disparage or otherwise harass others;\n7. To impersonate or attempt to impersonate others;\n8. For fully automated decision making that adversely impacts an individual\u2019s legal rights or otherwise creates or modifies a binding, enforceable obligation;\n9. For any use intended to or which has the effect of discriminating against or harming individuals or groups based on online or offline social behavior or known or predicted personal or personality characteristics\n10. To exploit any of the vulnerabilities of a specific group of persons based on their age, social, physical or mental characteristics, in order to materially distort the behavior of a person pertaining to that group in a manner that causes or is likely to cause that person or another person physical or psychological harm;\n11. For any use intended to or which has the effect of discriminating against individuals or groups based on legally protected characteristics or categories;\n12. To provide medical advice and medical results interpretation; \n13. To generate or disseminate information for the purpose to be used for administration of justice, law enforcement, immigration or asylum processes, such as predicting an individual will commit fraud/crime commitment (e.g. by text profiling, drawing causal relationships between assertions made in documents, indiscriminate and arbitrarily-targeted use).", + "json": "bigscience-rail-1.0.json", + "yaml": "bigscience-rail-1.0.yml", + "html": "bigscience-rail-1.0.html", + "license": "bigscience-rail-1.0.LICENSE" + }, + { + "license_key": "binary-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-binary-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution. Redistribution and use in binary form, without\nmodification, are permitted provided that the following conditions are\nmet:\n\n* Redistributions must reproduce the above copyright notice and the\nfollowing disclaimer in the documentation and/or other materials\nprovided with the distribution.\n\n* Neither the name of the Copyright Holder nor the names of its\nsuppliers may be used to endorse or promote products derived from this\nsoftware without specific prior written permission.\n\n* No reverse engineering, decompilation, or disassembly of this software\nis permitted.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\nCOPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\nUSE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE", + "json": "binary-linux-firmware.json", + "yaml": "binary-linux-firmware.yml", + "html": "binary-linux-firmware.html", + "license": "binary-linux-firmware.LICENSE" + }, + { + "license_key": "binary-linux-firmware-patent", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-binary-linux-firmware-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution. Redistribution and use in binary form, without \nmodification, are permitted provided that the following conditions are \nmet:\n\n* Redistributions must reproduce the above copyright notice and the \n following disclaimer in the documentation and/or other materials \n provided with the distribution. \n* Neither the name of the Copyright Holder nor the names of its\n suppliers may be used to endorse or promote products derived from this\n software without specific prior written permission. \n* No reverse engineering, decompilation, or disassembly of this software \n is permitted.\n\nLimited patent license. The Copyright Holder grants a world-wide, \nroyalty-free, non-exclusive license under patents it now or hereafter \nowns or controls to make, have made, use, import, offer to sell and \nsell (\"Utilize\") this software, but solely to the extent that any \nsuch patent is necessary to Utilize the software alone, or in \ncombination with an operating system licensed under an approved Open \nSource license as listed by the Open Source Initiative at \nhttp://opensource.org/licenses. The patent license shall not apply to \nany other combinations which include this software. No hardware per \nse is licensed hereunder.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND \nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, \nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE \nCOPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, \nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS \nOF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND \nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR \nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE \nUSE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH \nDAMAGE.", + "json": "binary-linux-firmware-patent.json", + "yaml": "binary-linux-firmware-patent.yml", + "html": "binary-linux-firmware-patent.html", + "license": "binary-linux-firmware-patent.LICENSE" + }, + { + "license_key": "biopython", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-biopython", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Biopython License Agreement\n\nPermission to use, copy, modify, and distribute this software and its\ndocumentation with or without modifications and for any purpose and\nwithout fee is hereby granted, provided that any copyright notices\nappear in all copies and that both those copyright notices and this\npermission notice appear in supporting documentation, and that the\nnames of the contributors or copyright holders not be used in\nadvertising or publicity pertaining to distribution of the software\nwithout specific prior permission.\n\nTHE CONTRIBUTORS AND COPYRIGHT HOLDERS OF THIS SOFTWARE DISCLAIM ALL\nWARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL THE\nCONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT\nOR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE\nOR PERFORMANCE OF THIS SOFTWARE.", + "json": "biopython.json", + "yaml": "biopython.yml", + "html": "biopython.html", + "license": "biopython.LICENSE" + }, + { + "license_key": "biosl-4.0", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-biosl-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "", + "json": "biosl-4.0.json", + "yaml": "biosl-4.0.yml", + "html": "biosl-4.0.html", + "license": "biosl-4.0.LICENSE" + }, + { + "license_key": "bison-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-bison-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. This special exception was added by the Free Software Foundation in version 1.24 of Bison.", + "json": "bison-exception-2.0.json", + "yaml": "bison-exception-2.0.yml", + "html": "bison-exception-2.0.html", + "license": "bison-exception-2.0.LICENSE" + }, + { + "license_key": "bison-exception-2.2", + "category": "Copyleft Limited", + "spdx_license_key": "Bison-exception-2.2", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, you may create a larger work that contains part or all\nof the Bison parser skeleton and distribute that work under terms of your\nchoice, so long as that work isn't itself a parser generator using the skeleton\nor a modified version thereof as a parser skeleton. Alternatively, if you\nmodify or redistribute the parser skeleton itself, you may (at your option)\nremove this special exception, which will cause the skeleton and the resulting\nBison output files to be licensed under the GNU General Public License without\nthis special exception.\n\nThis special exception was added by the Free Software Foundation in version 2.2\nof Bison.", + "json": "bison-exception-2.2.json", + "yaml": "bison-exception-2.2.yml", + "html": "bison-exception-2.2.html", + "license": "bison-exception-2.2.LICENSE" + }, + { + "license_key": "bitstream", + "category": "Permissive", + "spdx_license_key": "Bitstream-Vera", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bitstream" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining\na copy of the fonts accompanying this license (\"Fonts\") and associated\ndocumentation files (the \"Font Software\"), to reproduce and distribute\nthe Font Software, including without limitation the rights to use,\ncopy, merge, publish, distribute, and/or sell copies of the Font\nSoftware, and to permit persons to whom the Font Software is furnished\nto do so, subject to the following conditions:\n\nThe above copyright and trademark notices and this permission notice\nshall be included in all copies of one or more of the Font Software\ntypefaces.\n\nThe Font Software may be modified, altered, or added to, and in\nparticular the designs of glyphs or characters in the Fonts may be\nmodified and additional glyphs or characters may be added to the\nFonts, only if the fonts are renamed to names not containing either\nthe words \"Bitstream\" or the word \"Vera\".\n\nThis License becomes null and void to the extent applicable to Fonts\nor Font Software that has been modified and is distributed under the\n\"Bitstream Vera\" names.\n\nThe Font Software may be sold as part of a larger software package but\nno copy of one or more of the Font Software typefaces may be sold by\nitself.\n\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL\nBITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR\nOTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL,\nOR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT\nSOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.\n\nExcept as contained in this notice, the names of Gnome, the Gnome\nFoundation, and Bitstream Inc., shall not be used in advertising or\notherwise to promote the sale, use or other dealings in this Font\nSoftware without prior written authorization from the Gnome Foundation\nor Bitstream Inc., respectively. For further information, contact:\nfonts at gnome dot org.", + "json": "bitstream.json", + "yaml": "bitstream.yml", + "html": "bitstream.html", + "license": "bitstream.LICENSE" + }, + { + "license_key": "bittorrent-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "BitTorrent-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BitTorrent Open Source License\n\nVersion 1.0\n\nThis BitTorrent Open Source License (the \"License\") applies to the BitTorrent client and related software products as\nwell as any updates or maintenance releases of that software (\"BitTorrent Products\") that are distributed by\nBitTorrent, Inc. (\"Licensor\"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product.\nLicensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which\nyou may use, copy, distribute or modify Licensed Product. \n\nPreamble\n\nThis Preamble is intended to describe, in plain English, the nature and scope of this License. However, this\nPreamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the\nLicense and not this Preamble.\n\nThis License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the\n\"JOSL\"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been\ndropped.\n\nThis License provides that:\n\n1. You may use, sell or give away the Licensed Product, alone or as a component of an aggregate software\ndistribution containing programs from several different sources. No royalty or other fee is required.\n\n2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous\nContributors, are available for your use. (The terms \"Licensed Product,\" \"Modifications,\" \"Contributors\" and \"Source\nCode\" are defined in the License.)\n\n3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it.\n(The term \"Derivative Works\" is defined in the License.)\n\n4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you\nmake to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you\nmust make the Source Code of your Modifications available to others.\n\n5. You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty\nwhatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly\nor causes you any injury or damages.\n\n6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or\nfor accepting indemnity or liability obligations to your customers. You cannot charge for the Source Code.\n\n7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any\nterms of the License, your rights to the Licensed Product under this License automatically terminate.\n\nYou may use this License to distribute your own Derivative Works, in which case the provisions of this License will\napply to your Derivative Works just as they do to the original Licensed Product.\n\nAlternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a\nproprietary license of your choice. If you use any license other than this License, however, you must continue to\nfulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those\nportions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.\n\nNew versions of this License may be published from time to time. You may choose to continue to use the license\nterms in this version of the License or those from the new version. However, only the Licensor has the right to\nchange the License terms as they apply to the Licensed Product. \n\nThis License relies on precise definitions for certain terms. Those terms are defined when they are first used, and\nthe definitions are repeated for your convenience in a Glossary at the end of the License.\n\n\nLicense Terms\n\n1. Grant of License From Licensor. Licensor hereby grants you a world-wide, royalty-free, non-exclusive\nlicense, subject to third party intellectual property claims, to do the following:\n\na. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such\nContributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as\npart of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for\nsale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any\nsuch claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of\nModifications or portions thereof or Derivative Works thereof.\n\n\n2. Grant of License to Modifications From Contributor. \"Modifications\" means any additions to or deletions from the\nsubstance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of\nLicensed Product. Hereinafter in this License, the term \"Licensed Product\" shall include all previous Modifications\nthat you receive from any Contributor. By application of the provisions in Section 4(a) below, each person or entity\nwho created or contributed to the creation of, and distributed, a Modification (a \"Contributor\") hereby grants you a\nworld-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the\nfollowing:\n\n 1. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such\nContributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as\npart of Derivative Works.\n\n 2. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for\nsale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any\nsuch claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of\nModifications or portions thereof or Derivative Works thereof. \n\n\n3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks,\ncopyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as\nexpressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete\nfrom the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is\ngranted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product.\nNothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this\nLicense any code that Licensor otherwise would have a right to license.\n\n\n4. Your Obligations Regarding Distribution. \n\na. Application of This License to Your Modifications. As an express condition for your use of the Licensed\nProduct, you hereby agree that any Modifications that you create or to which you contribute, and which you\ndistribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications\nthat you create or to which you contribute may be distributed only under the terms of this License or a future\nversion of this License released under Section 7. You must include a copy of this License with every copy of the\nModifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of\nthe Licensed Product or Modifications that alter or restrict the applicable version of this License or the\nrecipients' rights hereunder. However, you may include an additional document offering the additional rights\ndescribed in Section 4(d).\n\nb. Availability of Source Code. You must make available, under the terms of this License, the Source Code of\nthe Licensed Product and any Modifications that you distribute, either on the same media as you distribute any\nexecutable or other form of the Licensed Product, or via a mechanism generally accepted in the software development\ncommunity for the electronic transfer of data (an \"Electronic Distribution Mechanism\"). The Source Code for any\nversion of Licensed Product or Modifications that you distribute must remain available for at least twelve (12)\nmonths after the date it initially became available, or at least six (6) months after a subsequent version of said\nLicensed Product or Modifications has been made available. You are responsible for ensuring that the Source Code\nversion remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\nc. Intellectual Property Matters. \n\n i. Third Party Claims. If you have knowledge that a license to a third\nparty's intellectual property right is required to exercise the rights granted by this License, you must include a\ntext file with the Source Code distribution titled \"LEGAL\" that describes the claim and the party making the claim in\nsufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any\nModifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make\navailable thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups)\nreasonably calculated to inform those who received the Licensed Product from you that new knowledge has been\nobtained.\n\n ii. Contributor APIs. If your Modifications include an application\nprogramming interface (\"API\") and you have knowledge of patent licenses that are reasonably necessary to implement\nthat API, you must also include this information in the LEGAL file.\n\n iii. Representations. You represent that, except as disclosed pursuant to\n4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have\nsufficient rights to grant the rights conveyed by this License.\n\nd. Required Notices. You must duplicate this License in any documentation you provide along with the Source\nCode of any Modifications you create or to which you contribute, and which you distribute, wherever you describe\nrecipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the \"Notice\")\nin each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification,\nyou may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source\nCode file due to its structure, then you must include such Notice in a location (such as a relevant directory file)\nwhere a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty,\nsupport, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so\nonly on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such\nwarranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the\nLicensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of\nwarranty, support, indemnity or liability terms you offer.\n\ne. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a\nlicense of your choice that may contain terms different from this License provided (i) you have satisfied the\nrequirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the\nexecutable version, related documentation and collateral materials stating that the Source Code version of the\nLicensed Product is available under the terms of this License, including a description of how and where you have\nfulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License\nare offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every\nContributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. \n\nf. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the\nLicensed Product with other code) and distribute the Derivative Works as products under any other license you select,\nwith the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that\nconsist of the Licensed Product or any Modifications thereto. \n\n\n5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the\nterms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or\nregulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the\nstatute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the\ncode they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included\nwith all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such\ndescription must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to\nunderstand it. \n\n\n6. Application of This License. This License applies to code to which Licensor or Contributor has attached the\nNotice in Exhibit A, which is incorporated herein by this reference.\n\n\n7. Versions of This License.\n\na. New Versions. Licensor may publish from time to time revised and/or new versions of the License. \n\nb. Effect of New Versions. Once Licensed Product has been published under a particular version of the License,\nyou may always continue to use it under the terms of that version. You may also choose to use such Licensed Product\nunder the terms of any subsequent version of the License published by Licensor. No one other than Licensor has the\nright to modify the terms applicable to Licensed Product created under this License.\n\nc. Derivative Works of this License. If you create or use a modified version of this License, which you may do\nonly in order to apply it to software that is not already a Licensed Product under this License, you must rename your\nlicense so that it is not confusingly similar to this License, and must make it clear that your license contains\nterms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any\nContributor.\n\n\n8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE\nOF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND\nPERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND\nNOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS\nDISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED\nHEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n\n9. Termination. \n\na. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate\nautomatically if you fail to comply with the terms herein and fail to cure such breach within thirty (30) days of\nbecoming aware of the breach. All sublicenses to the Licensed Product that are properly granted shall survive any\ntermination of this license. Provisions that, by their nature, must remain in effect beyond the termination of this\nLicense, shall survive.\n\nb. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent\ninfringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or\nContributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product\ndirectly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections\n1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the \"Notice\nPeriod\") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable\nreasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your\nlitigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable\nroyalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not\nwithdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of\nsaid Notice Period.\n\nc. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging\nthat Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or\nsettlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses\ngranted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of\nany payment or license.\n\nd. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all\nend user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you\nor any distributor hereunder prior to termination shall survive termination.\n\n\n10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE),\nCONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER\nOF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF\nANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR\nMALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE\nPOSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO\nNOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY\nNOT APPLY TO YOU. \n\n\n11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and\ndamages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with\nLicensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or\nshall be deemed to constitute any admission of liability.\n\n\n12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R.\n2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such\nterms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through\n227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth\nherein.\n\n\n13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any\nprovision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary\nto make it enforceable. This License shall be governed by California law provisions (except to the extent applicable\nlaw, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that any litigation\nrelating to this license shall be subject to the jurisdiction of the Federal Courts of the Northern District of\nCalifornia or the Superior Court of the County of Santa Clara, California (as appropriate), with venue lying in Santa\nClara County, California, with the losing party responsible for costs including, without limitation, court costs and\nreasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the\nInternational Sale of Goods is expressly excluded. You and Licensor expressly waive any rights to a jury trial in\nany litigation concerning Licensed Product or this License. Any law or regulation that provides that the language of\na contract shall be construed against the drafter shall not apply to this License.\n\n\n14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an\nindividual or a legal entity exercising rights under, and complying with all of the terms of, this License or a\nfuture version of this License issued under Section 7. For legal entities, you includes any entity that controls, is\ncontrolled by, or is under common control with you. For purposes of this definition, control means (i) the power,\ndirect or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii)\nownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\n15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated\nhere, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined\nterm is first used is shown in parentheses. \n\nContributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification.\n(See Section 2)\n\nDerivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b))\n\nLicense: This BitTorrent Open Source License. (See first paragraph of License)\n\nLicensed Product: Any BitTorrent Product licensed pursuant to this License. The term \"Licensed Product\" includes\nall previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)\n\nLicensor: BitTorrent, Inc. (See first paragraph of License)\n\nModifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed\nProduct, or (ii) any new file that contains any part of Licensed Product. (See Section 2)\n\nNotice: The notice contained in Exhibit A. (See Section 4(e))\n\nSource Code: The preferred form for making modifications to the Licensed Product, including all modules contained\ntherein, plus any associated interface definition files, scripts used to control compilation and installation of an\nexecutable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See\nSection 1(a))\n\nYou: This term is defined in Section 14 of this License.\n\n\nEXHIBIT A\n\nThe Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or\nany hereto. Contributors to any Modifications may add their own copyright notices to identify their own\ncontributions.\n\nLicense:\n\nThe contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not\ncopy or use this file, in either source code or executable form, except in compliance with the License. You may\nobtain a copy of the License at http://www.bittorrent.com/license/.\n\nSoftware distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express\nor implied. See the License for the specific language governing rights and limitations under the License.", + "json": "bittorrent-1.0.json", + "yaml": "bittorrent-1.0.yml", + "html": "bittorrent-1.0.html", + "license": "bittorrent-1.0.LICENSE" + }, + { + "license_key": "bittorrent-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "BitTorrent-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BitTorrent Open Source License\n\nVersion 1.1\n\nThis BitTorrent Open Source License (the \"License\") applies to the BitTorrent client and related software products as well as any updates or maintenance releases of that software (\"BitTorrent Products\") that are distributed by BitTorrent, Inc. (\"Licensor\"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product.\n\nPreamble\n\nThis Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble.\n\nThis License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the \"JOSL\"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted.\n\nThis License provides that:\n\n1. You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required.\n\n2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms \"Licensed Product,\" \"Modifications,\" \"Contributors\" and \"Source Code\" are defined in the License.)\n\n3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term \"Derivative Works\" is defined in the License.)\n\n4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty.\n\n5. You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor?s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable.\n\nYou may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages.\n\n6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code.\n\n7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate.\n\nYou may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product.\n\nAlternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.\n\nNew versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product.\n\nThis License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License.\n\nLicense Terms\n\n1. Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\n\na. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\n\n2. Grant of License to Modifications From Contributor. \"Modifications\" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term \"Licensed Product\" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a \"Contributor\") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\n\na. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\n\n3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media.\n\n4. Your Obligations Regarding Distribution.\n\na. Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d).\n\nb. Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an \"Electronic Distribution Mechanism\"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\nc. Intellectual Property Matters.\n\ni. Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled \"LEGAL\" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained.\n\nii. Contributor APIs. If your Modifications include an application programming interface (\"API\") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file.\n\niii. Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License.\n\nd. Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the \"Notice\") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer.\n\ne. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.\n\nf. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto.\n\ng. Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor?s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party?s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party?s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code.\n\n5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it.\n\n6. Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference.\n\n7. Versions of This License.\n\na. New Versions. Licensor may publish from time to time revised and/or new versions of the License.\n\nb. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License.\n\nc. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor.\n\n8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n9. Termination.\n\na. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the ?WHOIS? database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to complye with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive.\n\nb. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the \"Notice Period\") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period.\n\nc. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license.\n\nd. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination.\n\n10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\n12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein.\n\n13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein.\n\n15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses.\n\nContributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2)\n\nDerivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b))\n\nLicense: This BitTorrent Open Source License. (See first paragraph of License)\n\nLicensed Product: Any BitTorrent Product licensed pursuant to this License. The term \"Licensed Product\" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)\n\nLicensor: BitTorrent, Inc. (See first paragraph of License)\n\nModifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2)\n\nNotice: The notice contained in Exhibit A. (See Section 4(e))\n\nSource Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a))\n\nYou: This term is defined in Section 14 of this License.\n\nEXHIBIT A\n\nThe Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions.\n\nLicense:\n\nThe contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/.\n\nSoftware distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.", + "json": "bittorrent-1.1.json", + "yaml": "bittorrent-1.1.yml", + "html": "bittorrent-1.1.html", + "license": "bittorrent-1.1.LICENSE" + }, + { + "license_key": "bittorrent-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-bittorrent-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BitTorrent Open Source License\nVersion 1.2\n\nThis BitTorrent Open Source License (the \"License\") applies to certain software that is distributed by BitTorrent, Inc. (\"Licensor\") specifically under this license (\"BitTorrent Products\"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product.\nPreamble\n\nThis Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble.\n\nThis License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the \"JOSL\"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted.\n\nThis License provides that:\n\n You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required.\n Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms \"Licensed Product,\" \"Modifications,\" \"Contributors\" and \"Source Code\" are defined in the License.)\n You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term \"Derivative Works\" is defined in the License.)\n By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty.\n You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor\u2019s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor\u2019s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable.\n You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages.\n If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code.\n If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate.\n You may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product.\n\nAlternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.\n\nNew versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product.\n\nThis License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License.\n\nLicense Terms\n\n Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\n Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\n Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\n Grant of License to Modifications From Contributor. \"Modifications\" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term \"Licensed Product\" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a \"Contributor\") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\n Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\n Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\n Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media.\n Your Obligations Regarding Distribution.\n Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d).\n Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an \"Electronic Distribution Mechanism\"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n Intellectual Property Matters.\n Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled \"LEGAL\" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained.\n Contributor APIs. If your Modifications include an application programming interface (\"API\") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file.\n Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License.\n Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the \"Notice\") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer.\n Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.\n Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto.\n Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor\u2019s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party\u2019s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party\u2019s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor\u2019s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code.\n Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it.\n Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference.\n Versions of This License.\n New Versions. Licensor may publish from time to time revised and/or new versions of the License.\n Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License.\n Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor.\n Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n Termination.\n Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the WHOIS database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to comply with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive.\n Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the \"Notice Period\") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonable royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period.\n Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license.\n No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination.\n Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein.\n Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein.\n Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses.\n Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2)\n Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b))\n License: This BitTorrent Open Source License. (See first paragraph of License)\n Licensed Product: Any BitTorrent Product licensed pursuant to this License. The term \"Licensed Product\" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)\n Licensor: BitTorrent, Inc. (See first paragraph of License)\n Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2)\n Notice: The notice contained in Exhibit A. (See Section 4(e))\n Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a))\n You: This term is defined in Section 14 of this License.\n\nEXHIBIT A\n\nThe Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions.\n\nLicense:\n\nThe contents of this file are subject to the BitTorrent Open Source License Version 1.2 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/.\n\nSoftware distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.", + "json": "bittorrent-1.2.json", + "yaml": "bittorrent-1.2.yml", + "html": "bittorrent-1.2.html", + "license": "bittorrent-1.2.LICENSE" + }, + { + "license_key": "bittorrent-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bittorrent-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "End User License Agreement (EULA)\n\nBy accepting this agreement or by installing BitTorrent or uTorrent or other software offered by or on behalf of BitTorrent, Inc. (the \"Software\") or by clicking \"Install\", you agree to the following terms, notwithstanding anything to the contrary in this agreement.\n\nThe Software is a peer-to-peer file distribution application distributed by BitTorrent, Inc.\n\nLicense\nSubject to your compliance with these terms and conditions, BitTorrent, Inc. grants you a royalty-free, non-exclusive, non-transferable license to use the Software, solely for your personal, non-commercial purposes. BitTorrent, Inc. reserves all rights in the Software not expressly granted to you here.\n\nRestrictions\nThe source code, design, and structure of the Software are trade secrets. You will not disassemble, decompile, or reverse engineer it, in whole or in part, except to the extent expressly permitted by law, or distribute it. You will not use the Software for illegal purposes. You will comply with all export laws. The Software is licensed, not sold.\n\nThe BitTorrent Technologies\nDownloading and Updates\n\nThe Software downloads only those files that are both authorized by you for download (specifically or by category or subscription), except that the Software automatically updates itself.\n\nAutomatic Uploading\n\nThe Software accelerates downloads by enabling your computer to grab pieces of files from other BitTorrent users simultaneously. Your use of the Software to download files will, in turn, enable other users to download pieces of those files from you, thereby maximizing download speeds for all users. In the Software, only files that you are explicitly downloading or sharing or have downloaded or shared through BitTorrent will be made available to others. You consent to other users' use of your network connection to download portions of such files from you. At any time, you may uninstall the Software through the Add/Remove Programs control panel utility. In addition, for the BitTorrent or uTorrent software, you can control the Software in multiple ways through its user interface without affecting any files you have already downloaded.\n\nDisclaimer of Warranty\nBitTorrent, Inc. disclaims any responsibility for harm resulting from the Software or any software or content downloaded using the Software, whether or not BitTorrent, Inc. approved such software or content. BitTorrent, Inc. approval does not guarantee that software or content from an approved partner will function, sound, or appear as offered or hoped, or be complete, accurate, or free from bugs, errors, viruses, or other harmful content. BitTorrent, Inc expressly disclaims all warranties and conditions, express or implied, including any implied warranties and conditions of merchantability, fitness for a particular purpose, and noninfringement, and any warranties and conditions arising out of course of dealing or usage of trade regarding the Software or any software or content you download using the Software. No advice or information, whether oral or written, obtained from BitTorrent, Inc or elsewhere will create any warranty or condition not expressly stated in this agreement. Some jurisdictions do not allow certain limitations on implied warranties, so the above limitation may not apply to you to its full extent.\n\nLimitation of Liability\nBitTorrent, Inc's total liability to you from all causes of action and under all theories of liability will be limited to $50.00. In no event and under no theory of liability will BitTorrent, Inc be liable to you for any special, incidental, exemplary, or consequential damages arising out of or in connection with this agreement or the software whether or not BitTorrent, Inc has been advised of the possibility of such damages. The foregoing limitations will survive even if any limited remedy specified is found to have failed of its essential purpose. Some jurisdictions do not allow the limitation or exclusion of liability for incidental or consequential damages, so the above limitation or exclusion may not apply to you to its full extent.\n\nU.S. Government Users\nThe Software is \"commercial computer software\" any use of which by or on behalf of the U.S. Government is subject to the restrictions herein. Manufactured by BitTorrent, Inc.\n\nGeneral\nThese BitTorrent, Inc. terms will be governed by and construed in accordance with the laws of California, USA, without regard to conflicts of law rules. The United Nations Convention on Contracts for the International Sale of Goods will not apply. The failure by either party to enforce any provision will not constitute a waiver. Any waiver, modification, or amendment of the BitTorrent, Inc. terms will be effective only if signed. If any provision is held to be unenforceable, it will be enforced to the maximum extent possible and will not diminish other provisions. BitTorrent, Inc. may make changes to these terms from time to time. When these changes are made, BitTorrent, Inc. will make a new copy of the terms available at www.bittorrent.com/legal/eula. You understand and agree that if you use the Software after the date on which the terms have changed, BitTorrent, Inc. will treat your use as acceptance of the updated terms. You agree that BitTorrent, Inc. may provide you with notices, including those regarding changes to the terms, by postings on www.bittorrent.com/legal/eula. This and the Terms of Use at www.bittorrent.com/legal/terms-of-use are BitTorrent, Inc.'s complete and exclusive understanding with you regarding your use of the Software as an end user.\n\nContact\nIf you have any questions, contact us at legal@bittorrent.com.", + "json": "bittorrent-eula.json", + "yaml": "bittorrent-eula.yml", + "html": "bittorrent-eula.html", + "license": "bittorrent-eula.LICENSE" + }, + { + "license_key": "bitwarden-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-bitwarden-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BITWARDEN LICENSE AGREEMENT\nVersion 1, 4 September 2020\n\nPLEASE CAREFULLY READ THIS BITWARDEN LICENSE AGREEMENT (\"AGREEMENT\"). THIS\nAGREEMENT CONSTITUTES A LEGALLY BINDING AGREEMENT BETWEEN YOU AND BITWARDEN,\nINC. (\"BITWARDEN\") AND GOVERNS YOUR USE OF THE COMMERCIAL MODULES (DEFINED\nBELOW). BY COPYING OR USING THE COMMERCIAL MODULES, YOU AGREE TO THIS AGREEMENT.\nIF YOU DO NOT AGREE WITH THIS AGREEMENT, YOU MAY NOT COPY OR USE THE COMMERCIAL\nMODULES. IF YOU ARE COPYING OR USING THE COMMERCIAL MODULES ON BEHALF OF A LEGAL\nENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE AUTHORITY TO AGREE TO THIS\nAGREEMENT ON BEHALF OF SUCH ENTITY. IF YOU DO NOT HAVE SUCH AUTHORITY, DO NOT\nCOPY OR USE THE COMMERCIAL MODULES IN ANY MANNER.\n\nThis Agreement is entered into by and between Bitwarden and you, or the legal\nentity on behalf of whom you are acting (as applicable, \"You\" or \"Your\").\n\n1. DEFINITIONS\n\n\"Bitwarden Software\" means the Bitwarden server software, libraries, and\nCommercial Modules.\n\n\"Commercial Modules\" means the modules designed to work with and enhance the\nBitwarden Software to which this Agreement is linked, referenced, or appended.\n\n2. LICENSES, RESTRICTIONS AND THIRD PARTY CODE\n\n2.1 Commercial Module License. Subject to Your compliance with this Agreement,\nBitwarden hereby grants to You a limited, non-exclusive, non-transferable,\nroyalty-free license to use the Commercial Modules for the sole purposes of\ninternal development and internal testing, and only in a non-production\nenvironment.\n\n2.2 Reservation of Rights. As between Bitwarden and You, Bitwarden owns all\nright, title and interest in and to the Bitwarden Software, and except as\nexpressly set forth in Sections 2.1, no other license to the Bitwarden Software\nis granted to You under this Agreement, by implication, estoppel, or otherwise.\n\n2.3 Restrictions. You agree not to: (i) except as expressly permitted in\nSection 2.1, sell, rent, lease, distribute, sublicense, loan or otherwise\ntransfer the Commercial Modules to any third party; (ii) alter or remove any\ntrademarks, service mark, and logo included with the Commercial Modules, or\n(iii) use the Commercial Modules to create a competing product or service.\nBitwarden is not obligated to provide maintenance and support services for the\nBitwarden Software licensed under this Agreement.\n\n2.4 Third Party Software. The Commercial Modules may contain or be provided\nwith third party open source libraries, components, utilities and other open\nsource software (collectively, \"Open Source Software\"). Notwithstanding anything\nto the contrary herein, use of the Open Source Software will be subject to the\nlicense terms and conditions applicable to such Open Source Software. To the\nextent any condition of this Agreement conflicts with any license to the Open\nSource Software, the Open Source Software license will govern with respect to\nsuch Open Source Software only.\n\n3. TERMINATION\n\n3.1 Termination. This Agreement will automatically terminate upon notice from\nBitwarden, which notice may be by email or posting in the location where the\nCommercial Modules are made available.\n\n3.2 Effect of Termination. Upon any termination of this Agreement, for any\nreason, You will promptly cease use of the Commercial Modules and destroy any\ncopies thereof. For the avoidance of doubt, termination of this Agreement will\nnot affect Your right to Bitwarden Software, other than the Commercial Modules,\nmade available pursuant to an Open Source Software license.\n\n3.3 Survival. Sections 1, 2.2 -2.4, 3.2, 3.3, 4, and 5 will survive any\ntermination of this Agreement.\n\n4. DISCLAIMER AND LIMITATION OF LIABILITY\n\n4.1 Disclaimer of Warranties. TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE\nLAW, THE BITWARDEN SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED REGARDING OR RELATING TO THE BITWARDEN SOFTWARE, INCLUDING\nANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,\nTITLE, AND NON-INFRINGEMENT. FURTHER, BITWARDEN DOES NOT WARRANT RESULTS OF USE\nOR THAT THE BITWARDEN SOFTWARE WILL BE ERROR FREE OR THAT THE USE OF THE\nBITWARDEN SOFTWARE WILL BE UNINTERRUPTED.\n\n4.2 Limitation of Liability. IN NO EVENT WILL BITWARDEN OR ITS LICENSORS BE\nLIABLE TO YOU OR ANY THIRD PARTY UNDER THIS AGREEMENT FOR (I) ANY AMOUNTS IN\nEXCESS OF US $25 OR (II) FOR ANY SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OF\nANY KIND, INCLUDING FOR ANY LOSS OF PROFITS, LOSS OF USE, BUSINESS INTERRUPTION,\nLOSS OF DATA, COST OF SUBSTITUTE GOODS OR SERVICES, WHETHER ALLEGED AS A BREACH\nOF CONTRACT OR TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, EVEN IF BITWARDEN HAS\nBEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n5. MISCELLANEOUS\n\n5.1 Assignment. You may not assign or otherwise transfer this Agreement or any\nrights or obligations hereunder, in whole or in part, whether by operation of\nlaw or otherwise, to any third party without Bitwarden's prior written consent.\nAny purported transfer, assignment or delegation without such prior written\nconsent will be null and void and of no force or effect. Bitwarden may assign\nthis Agreement to any successor to its business or assets to which this\nAgreement relates, whether by merger, sale of assets, sale of stock,\nreorganization or otherwise. Subject to this Section 5.1, this Agreement will be\nbinding upon and inure to the benefit of the parties hereto, and their\nrespective successors and permitted assigns.\n\n5.2 Entire Agreement; Modification; Waiver. This Agreement represents the\nentire agreement between the parties, and supersedes all prior agreements and\nunderstandings, written or oral, with respect to the matters covered by this\nAgreement, and is not intended to confer upon any third party any rights or\nremedies hereunder. You acknowledge that You have not entered in this Agreement\nbased on any representations other than those contained herein. No modification\nof or amendment to this Agreement, nor any waiver of any rights under this\nAgreement, will be effective unless in writing and signed by both parties. The\nwaiver of one breach or default or any delay in exercising any rights will not\nconstitute a waiver of any subsequent breach or default.\n\n5.3 Governing Law. This Agreement will in all respects be governed by the laws\nof the State of California without reference to its principles of conflicts of\nlaws. The parties hereby agree that all disputes arising out of this Agreement\nwill be subject to the exclusive jurisdiction of and venue in the federal and\nstate courts within Los Angeles County, California. You hereby consent to the\npersonal and exclusive jurisdiction and venue of these courts. The parties\nhereby disclaim and exclude the application hereto of the United Nations\nConvention on Contracts for the International Sale of Goods.\n\n5.4 Severability. If any provision of this Agreement is held invalid or\nunenforceable under applicable law by a court of competent jurisdiction, it will\nbe replaced with the valid provision that most closely reflects the intent of\nthe parties and the remaining provisions of the Agreement will remain in full\nforce and effect.\n\n5.5 Relationship of the Parties. Nothing in this Agreement is to be construed\nas creating an agency, partnership, or joint venture relationship between the\nparties hereto. Neither party will have any right or authority to assume or\ncreate any obligations or to make any representations or warranties on behalf of\nany other party, whether express or implied, or to bind the other party in any\nrespect whatsoever.\n\n5.6 Notices. All notices permitted or required under this Agreement will be in\nwriting and will be deemed to have been given when delivered in person\n(including by overnight courier), or three (3) business days after being mailed\nby first class, registered or certified mail, postage prepaid, to the address of\nthe party specified in this Agreement or such other address as either party may\nspecify in writing.\n\n5.7 U.S. Government Restricted Rights. If Commercial Modules is being licensed\nby the U.S. Government, the Commercial Modules is deemed to be \"commercial\ncomputer software\" and \"commercial computer documentation\" developed exclusively\nat private expense, and (a) if acquired by or on behalf of a civilian agency,\nwill be subject solely to the terms of this computer software license as\nspecified in 48 C.F.R. 12.212 of the Federal Acquisition Regulations and its\nsuccessors; and (b) if acquired by or on behalf of units of the Department of\nDefense (\"DOD\") will be subject to the terms of this commercial computer\nsoftware license as specified in 48 C.F.R. 227.7202-2, DOD FAR Supplement and\nits successors.\n\n5.8 Injunctive Relief. A breach or threatened breach by You of Section 2 may\ncause irreparable harm for which damages at law may not provide adequate relief,\nand therefore Bitwarden will be entitled to seek injunctive relief in any\napplicable jurisdiction without being required to post a bond.\n\n5.9 Export Law Assurances. You understand that the Commercial Modules is\nsubject to export control laws and regulations. You may not download or\notherwise export or re-export the Commercial Modules or any underlying\ninformation or technology except in full compliance with all applicable laws and\nregulations, in particular, but without limitation, United States export control\nlaws. None of the Commercial Modules or any underlying information or technology\nmay be downloaded or otherwise exported or re- exported: (a) into (or to a\nnational or resident of) any country to which the United States has embargoed\ngoods; or (b) to anyone on the U.S. Treasury Department's list of specially\ndesignated nationals or the U.S. Commerce Department's list of prohibited\ncountries or debarred or denied persons or entities. You hereby agree to the\nforegoing and represents and warrants that You are not located in, under control\nof, or a national or resident of any such country or on any such list.\n\n5.10 Construction. The titles and section headings used in this Agreement are\nfor ease of reference only and will not be used in the interpretation or\nconstruction of this Agreement. No rule of construction resolving any ambiguity\nin favor of the non-drafting party will be applied hereto. The word \"including\",\nwhen used herein, is illustrative rather than exclusive and means \"including,\nwithout limitation.\"", + "json": "bitwarden-1.0.json", + "yaml": "bitwarden-1.0.yml", + "html": "bitwarden-1.0.html", + "license": "bitwarden-1.0.LICENSE" + }, + { + "license_key": "bitzi-pd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bitzi-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BITZI PUBLIC DOMAIN NOTICES \n\nUPDATED July 13, 2006 \n\nWhen we publish our source code, we usually place it in \nthe public domain, whenever possible, to allow the widest \npossible reuse and benefit. \n\nWe try to include on most such released files a small notice \nsuch as: \n\n/* (PD) 2006 The Bitzi Corporation \n * Please see file COPYING or http://bitzi.com/publicdomain \n * for more info. \n */ \n\nFor major standalone files, or as the \"COPYING\" file, we \ninclude a version of this longer explanation: \n\n/* (PD) 2006 The Bitzi Corporation \n * \n * 1. Authorship. This work and others bearing the above \n * label were created by, or on behalf of, the Bitzi \n * Corporation. Often other public domain material by \n * other authors is incorporated; this should be clear \n * from notations in the source code. If other non- \n * public-domain code or libraries are included, this is \n * is done under those works' respective licenses. \n * \n * 2. Release. The Bitzi Corporation places its portion \n * of these labelled works into the public domain, \n * disclaiming all rights granted us by copyright law. \n * \n * Bitzi places no restrictions on your freedom to copy, \n * use, redistribute and modify this work, though you \n * should be aware of points (3), (4), and (5) below. \n * \n * 3. Trademark Advisory. The Bitzi Corporation reserves \n * all rights with regard to any of its trademarks which \n * may appear herein, such as \"Bitzi\", \"Bitcollider\", or \n * \"Bitpedia\". Please take care that your uses of this \n * work do not infringe on our trademarks or imply our \n * endorsement. For example, you should change labels \n * and identifier strings in your derivative works where \n * appropriate. \n * \n * 4. Licensed portions. Some code and libraries may be \n * incorporated in this work in accordance with the \n * licenses offered by their respective rightsholders. \n * Further copying, use, redistribution and modification \n * of these third-party portions remains subject to \n * their original licenses. \n * \n * 5. Disclaimer. THIS SOFTWARE IS PROVIDED BY THE AUTHOR \n * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, \n * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES \n * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE \n * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE \n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, \n * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT \n * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \n * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS \n * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF \n * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR \n * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN \n * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF \n * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \n * \n * Please see http://bitzi.com/publicdomain or write \n * info@bitzi.com for more info. \n */ \n \nWe hope you find our public-domain source code useful, \nbut remember that we can provide absolutely no support \nor assurances about it; your use is entirely at your \nown risk. \n\nThank you. \n\n- Bitzi \n- March 3, 2001 \n- updated July 13, 2006 (clarifying that sometimes our \n- public-domain releases include portions that remain \n- under original licenses)", + "json": "bitzi-pd.json", + "yaml": "bitzi-pd.yml", + "html": "bitzi-pd.html", + "license": "bitzi-pd.LICENSE" + }, + { + "license_key": "blas-2017", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-blas-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The reference BLAS is a freely-available software package. It is\navailable from netlib via anonymous ftp and the World Wide Web. Thus,\nit can be included in commercial software packages (and has been). We\nonly ask that proper credit be given to the authors.\n\nLike all software, it is copyrighted. It is not trademarked, but we do\nask the following:\n\nIf you modify the source for these routines we ask that you change the\nname of the routine and comment the changes made to the original.\n\nWe will gladly answer any questions regarding the software. If a\nmodification is done, however, it is the responsibility of the person\nwho modified the routine to provide support", + "json": "blas-2017.json", + "yaml": "blas-2017.yml", + "html": "blas-2017.html", + "license": "blas-2017.LICENSE" + }, + { + "license_key": "blessing", + "category": "Public Domain", + "spdx_license_key": "blessing", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The author disclaims copyright to this source code.\nIn place of a legal notice, here is a blessing:\n May you do good and not evil.\n May you find forgiveness for yourself and forgive others.\n May you share freely, never taking more than you give.", + "json": "blessing.json", + "yaml": "blessing.yml", + "html": "blessing.html", + "license": "blessing.LICENSE" + }, + { + "license_key": "blitz-artistic", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-blitz-artistic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The `Blitz++ Artistic License'\n(with thanks and apologies to authors of the Perl Artistic License)\n\nPreamble\n\nThe intent of this document is to state the conditions under which \nBlitz++ may be copied, such that the authors maintains some\nsemblance of artistic control over the development of the package,\nwhile giving the users of the package the right to use and\ndistribute Blitz++ in a more-or-less customary fashion, plus the\nright to make reasonable modifications.\n\nDefinitions\n\n`Library' refers to the collection of files distributed by the\nCopyright Holder, and derivatives of that collection of files\ncreated through textual modification.\n\n`Standard Version' refers to such a Library if it has not been\nmodified, or has been modified in accordance with the wishes of the\nCopyright Holder as specified below.\n\nCopyright Holder' is whoever is named in the copyright or\ncopyrights for the package.\n\n`You' is you, if you're thinking about copying, modifying or\ndistributing this Library.\n\n`Freely Available' means that no fee is charged for the item.\nIt also means that recipients of the item may redistribute it \nunder the same conditions they received it.\n\n``Reasonable copying fee'' is whatever you can justify on the basis\nof media cost, duplication charges, time of people involved, and so\non. (You will not be required to justify it to the Copyright Holder,\nbut only to the computing community at large as a market that must\nbear the fee.)\n\n1. You may make and give away verbatim copies of the \nStandard Version of this Library without restriction, provided that\nyou duplicate all of the original copyright notices, this license,\nand associated disclaimers. \n\n2. The Standard Version of the Library may be distributed as part\nof a collection of software, provided no more than a reasonable\ncopying fee is charged for the software collection.\n\n3. You may apply bug fixes, portability fixes and other modifications\nderived from the Public Domain or from the Copyright Holder. A\nLibrary modified in such a way shall still be considered the\nStandard Version.\n\n4. You may otherwise modify your copy of this Library in any way,\nprovided that you insert a prominent notice in each changed file\nstating how and when you changed that file, and provided that you do\nat least ONE of the following:\n\na. place your modifications in the Public Domain or otherwise\nmake them Freely Available, such as by posting said\nmodifications to the Blitz++ development list, \nand allowing the Copyright Holder to include\nyour modifications in the Standard Version of the Library.\n\nb. use the modified Library only within your corporation or\norganization. \n\nc. make other distribution arrangements with the Copyright\nHolder.\n\n5. You may distribute programs which use this Library\nin object code or executable form without restriction.\n\n6. Any object code generated as a result of using this Library \ndoes not fall under the copyright of this Library, but\nbelongs to whomever generated it, and may be sold commercially.\n\n7. The name of the Copyright Holder or the Library may not be used to \nendorse or promote products derived from this software without \nspecific prior written permission.\n\n8. THIS PACKAGE IS PROVIDED `AS IS' AND WITHOUT ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\nWARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.", + "json": "blitz-artistic.json", + "yaml": "blitz-artistic.yml", + "html": "blitz-artistic.html", + "license": "blitz-artistic.LICENSE" + }, + { + "license_key": "bloomberg-blpapi", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bloomberg-blpapi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy of\nthis proprietary software and associated documentation files (the \"Software\"),\nto use, publish, or distribute copies of the Software, and to permit persons to\nwhom the Software is furnished to do so.\n\nAny other use, including modifying, adapting, reverse engineering, decompiling,\nor disassembling, is not permitted.\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.", + "json": "bloomberg-blpapi.json", + "yaml": "bloomberg-blpapi.yml", + "html": "bloomberg-blpapi.html", + "license": "bloomberg-blpapi.LICENSE" + }, + { + "license_key": "blueoak-1.0.0", + "category": "Permissive", + "spdx_license_key": "BlueOak-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "# Blue Oak Model License\n\nVersion 1.0.0\n\n## Purpose\n\nThis license gives everyone as much permission to work with\nthis software as possible, while protecting contributors\nfrom liability.\n\n## Acceptance\n\nIn order to receive this license, you must agree to its\nrules. The rules of this license are both obligations\nunder that agreement and conditions to your license.\nYou must not do anything with this software that triggers\na rule that you cannot or will not follow.\n\n## Copyright\n\nEach contributor licenses you to do everything with this\nsoftware that would otherwise infringe that contributor's\ncopyright in it.\n\n## Notices\n\nYou must ensure that everyone who gets a copy of\nany part of this software from you, with or without\nchanges, also gets the text of this license or a link to\n.\n\n## Excuse\n\nIf anyone notifies you in writing that you have not\ncomplied with [Notices](#notices), you can keep your\nlicense by taking all practical steps to comply within 30\ndays after the notice. If you do not do so, your license\nends immediately.\n\n## Patent\n\nEach contributor licenses you to do everything with this\nsoftware that would otherwise infringe any patent claims\nthey can license or become able to license.\n\n## Reliability\n\nNo contributor can revoke this license.\n\n## No Liability\n\n***As far as the law allows, this software comes as is,\nwithout any warranty or condition, and no contributor\nwill be liable to anyone for any damages related to this\nsoftware or this license, under any kind of legal claim.***", + "json": "blueoak-1.0.0.json", + "yaml": "blueoak-1.0.0.yml", + "html": "blueoak-1.0.0.html", + "license": "blueoak-1.0.0.LICENSE" + }, + { + "license_key": "bohl-0.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bohl-0.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Balloon Open Hardware License (BOHL)\nVersion 0.2 For Discussion\nThe Text of this License is Copyright (c) 2006 2007 iTechnic Ltd\nPermission is granted to copy this license unmodified and use it to protect Open Hardware\nDesigns.\n\nPreamble\nThis license agreement covers hardware designed, manufactured and distributed on an open basis.\nThe license outlines the Terms and Conditions placed on the use of the design. When licensing\nOpen Hardware it is important to note that there is a significant distinction between Open\nHardware and Open Software particularly with respect to both the design process and the\nreplication process.\nFirstly the design and replication of hardware is different because there are intermediate steps in\nthe processes that are valuable in their own right. Secondly the process of replication can involve\nconsiderable time, cost and expertise. For these reasons it is not appropriate to simply transfer\nlicenses that have validity in the software domain (such as the GPL) to the hardware domain.\nThis license is intended to establish an Open Design approach in the hardware domain while\nbuilding in practical safeguards, which are necessary for the design and manufacture of hardware,\nwhere manufacturers take a financial and legal risk when replicating Open Hardware and where\nthe physical product must conform to approvals if its sale is to be legal. It is also important to\nprotect designers from issues of liability particularly as many designers may be working as\nindividuals and therefore not protected by an employer.\nThe license is written to apply to any type of hardware produced using an Open Hardware design\nprocess. It has originated from the Balloon Project (www.balloonboard.org) but the license can be\nfreely applied to any Open Hardware.\nIn order to augment the text of the license it is accompanied by Notes and Appendices. The\nnotes help to provide interpretation and guidance within the text of the license and the\nappendices contain more detailed discussions about the operation of the license and detail the\ntypes of Manufacturing Information and Design Documentation that might be provided as a part\nof any Open Hardware Design. The notes do not form part of the License but are intended to\nclarify the intention of the license. The Appendices are intended to provide uniformity to the way\nthat hardware designs are released and managed when using this license.\n{Notes occur in the text of the License between curly brackets and in italics}\n\nPurpose\nThe purpose of this license is to protect the designers of the hardware from any form of litigation\nresulting from its design, manufacture, distribution or use. \nIt is also the purpose of this license to ensure that the design remains Open in the sense detailed\nin the license and that manufacturers, distributors, and users are obliged to adhere to the Open\nprinciples of the design and to protect their rights to access the design as specified in the license.", + "json": "bohl-0.2.json", + "yaml": "bohl-0.2.yml", + "html": "bohl-0.2.html", + "license": "bohl-0.2.LICENSE" + }, + { + "license_key": "boost-1.0", + "category": "Permissive", + "spdx_license_key": "BSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Boost Software License - Version 1.0 - August 17th, 2003\n\nPermission is hereby granted, free of charge, to any person or organization\nobtaining a copy of the software and accompanying documentation covered by\nthis license (the \"Software\") to use, reproduce, display, distribute,\nexecute, and transmit the Software, and to prepare derivative works of the\nSoftware, and to permit third-parties to whom the Software is furnished to\ndo so, all subject to the following:\n\nThe copyright notices in the Software and this entire statement, including\nthe above license grant, this restriction and the following disclaimer,\nmust be included in all copies of the Software, in whole or in part, and\nall derivative works of the Software, unless such copies or derivative\nworks are solely in the form of machine-executable object code generated by\na source language processor.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\nSHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\nFOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.", + "json": "boost-1.0.json", + "yaml": "boost-1.0.yml", + "html": "boost-1.0.html", + "license": "boost-1.0.LICENSE" + }, + { + "license_key": "boost-original", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-boost-original", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to copy, use, modify, sell and distribute this software is granted\nprovided this copyright notice appears in all copies. This software is provided \"as\nis\" without express or implied warranty, and with no claim as to its suitability for\nany purpose.", + "json": "boost-original.json", + "yaml": "boost-original.yml", + "html": "boost-original.html", + "license": "boost-original.LICENSE" + }, + { + "license_key": "bootloader-exception", + "category": "Copyleft Limited", + "spdx_license_key": "Bootloader-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Bootloader Exception\n\nIn addition to the permissions in the GNU General Public License, the authors give you unlimited permission to link or embed compiled bootloader and related files into combinations with other programs, and to distribute those combinations without any restriction coming from the use of those files. (The General Public License restrictions do apply in other respects; for example, they cover modification of the files, and distribution when not linked into a combined executable.)", + "json": "bootloader-exception.json", + "yaml": "bootloader-exception.yml", + "html": "bootloader-exception.html", + "license": "bootloader-exception.LICENSE" + }, + { + "license_key": "borceux", + "category": "Permissive", + "spdx_license_key": "Borceux", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright 1993 Francis Borceux\nYou may freely use, modify, and/or distribute each of the files in this package without limitation. The package consists of the following files:\n\nREADME\ncompatibility/OldDiagram\ncompatibility/OldMaxiDiagram\ncompatibility/OldMicroDiagram\ncompatibility/OldMiniDiagram\ncompatibility/OldMultipleArrows\ndiagram/Diagram\ndiagram/MaxiDiagram\ndiagram/MicroDiagram\ndiagram/MiniDiagram\ndiagram/MultipleArrows\nuser-guides/Diagram_Mode_d_Emploi\nuser-guides/Diagram_Read_Me\n\nOf course no support is guaranteed, but the author will attempt to assist with problems. Current email address:\nfrancis dot borceux at uclouvain dot be.", + "json": "borceux.json", + "yaml": "borceux.yml", + "html": "borceux.html", + "license": "borceux.LICENSE" + }, + { + "license_key": "boutell-libgd-2021", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-boutell-libgd-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "* Permission to use, copy, modify, and distribute this software and its\n * documentation for any purpose and without fee is hereby granted, provided\n * that the above copyright notice appear in all copies and that both that\n * copyright notice and this permission notice appear in supporting\n * documentation. This software is provided \"AS IS.\" Thomas Boutell and\n * Boutell.Com, Inc. disclaim all warranties, either express or implied,\n * including but not limited to implied warranties of merchantability and\n * fitness for a particular purpose, with respect to this code and accompanying\n * documentation.", + "json": "boutell-libgd-2021.json", + "yaml": "boutell-libgd-2021.yml", + "html": "boutell-libgd-2021.html", + "license": "boutell-libgd-2021.LICENSE" + }, + { + "license_key": "bpel4ws-spec", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bpel4ws-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "[BPEL4WS Specification Version 1,1 Dated May 5, 2003, Copyright statement]\n\nCopyright (c) 2002, 2003 BEA Systems, International Business Machines\nCorporation, Microsoft Corporation, SAP AG, Siebel Systems. All rights\nreserved.\n\nPermission to copy and display the \"Business Process Execution Language for\nWeb Services Specification, version 1.1 dated May 5, 2003\" (hereafter \"the\nBPEL4WS Specification\"), in any medium without fee or royalty is hereby\ngranted, provided that you include the following on ALL copies of the\nBPEL4WS Specification, or portions thereof, that you make:\n\n A link to the BPEL4WS Specification at these locations:\n http://dev2dev.bea.com/technologies/webservices/BPEL4WS.jsp\n http://www-106.ibm.com/developerworks/webservices/library/ws-bpel/\n http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbiz2k2/html/bpel1-1.asp\n http://ifr.sap.com/bpel4ws/\n http://www.siebel.com/bpel\n\n The copyright notice as shown in the BPEL4WS Specification:\n\n BEA, IBM, Microsoft, SAP AG and Siebel Systems (collectively, the\n \"Authors\") agree to grant you a royalty-free license, under reasonable,\n non-discriminatory terms and conditions, to patents that they deem\n necessary to implement the Business Process Execution Language for Web\n Services Specification.\n\n THE Business Process Execution Language for Web Services SPECIFICATION\n IS PROVIDED \"AS IS,\" AND THE AUTHORS MAKE NO REPRESENTATIONS OR\n WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-\n INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE BPEL4WS SPECIFICATION\n ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH\n CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS,\n TRADEMARKS OR OTHER RIGHTS.\n\n THE AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL,\n INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO ANY\n USE OR DISTRIBUTION OF THE BPEL4WS SPECIFICATION.\n\n The name and trademarks of the Authors may NOT be used in any manner,\n including advertising or publicity pertaining to the BPEL4WS\n Specification or its contents without specific, written prior\n permission. Title to copyright in the BPEL4WS Specification will at all\n times remain with the Authors.\n\n No other rights are granted by implication, estoppel or otherwise.", + "json": "bpel4ws-spec.json", + "yaml": "bpel4ws-spec.yml", + "html": "bpel4ws-spec.html", + "license": "bpel4ws-spec.LICENSE" + }, + { + "license_key": "bpmn-io", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bpmn-io", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nThe source code responsible for displaying the bpmn.io logo (two green cogwheels\nin a box) that links back to http://bpmn.io as part of rendered diagrams MUST\nNOT be removed or changed. When this software is being used in a website or\napplication, the logo must stay fully visible and not visually overlapped by\nother elements.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "bpmn-io.json", + "yaml": "bpmn-io.yml", + "html": "bpmn-io.html", + "license": "bpmn-io.LICENSE" + }, + { + "license_key": "brad-martinez-vb-32", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-brad-martinez-vb-32", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Rules\n\nUnless noted otherwise, all files and code available on this site are authored by Brad Martinez, who retains exclusive copyright protection and distribution rights. \n\nDevelopers are free to use any code or concepts presented on this site in their applications without liability or compensation, but the courtesy of both notification of use and inclusion of due credit are requested.\n\nIt is PROHIBITED to distribute or reproduce any of the files or code found in this site for profit or otherwise, on any web site, ftp server or BBS, or by any other means, including CD-ROM or other physical media, without the EXPRESS WRITTEN PERMISSION of the author.\n\nThe Questions\n\nDue to an inordinate amount of email I receive regarding development specific questions, I find it sometimes difficult to respond. If you don't hear from me, I recommend searching either Microsoft's MSDN Library Online, Microsoft's Online Support Knowledge Base, or Deja News newsgroup archives for answers to your Visual Basic related questions.\n\nYou may find me frequenting some of the \"vb\" newsgroups on the Microsoft news server msnews.microsoft.com, and on occasion, the \"vb\" newsgroups on the news server news.devx.com.\n\nThe Disclaimer\n\nNo warranty is implied as to the accuracy and/or reliability of the programs and code available on this site. The developer assumes all risk.", + "json": "brad-martinez-vb-32.json", + "yaml": "brad-martinez-vb-32.yml", + "html": "brad-martinez-vb-32.html", + "license": "brad-martinez-vb-32.LICENSE" + }, + { + "license_key": "brankas-open-license-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-brankas-open-license-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BRANKAS OPEN LICENSE\nVersion 1.0, September 2022\n\n Preamble\n\n This License establishes the terms under which the Software under this License may be copied, modified, distributed, or redistributed.\n\n Definitions\n\n 2.1. \u201cDerivative Works\u201d shall mean any work, whether in Source Form or Object Form, that is based on (or derived from) the Software and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship and not an exact or repackaged copy of the Software. It includes proprietary complements, add-ons, modules, or modifications to the Object Form that link to the interfaces of the Software and the Derivative Works thereof. It shall include, among others:\n\n 2.1.1. Any software that results from an addition to, deletion from, or modification of the contents of a file containing Original Software or Derivative Works thereof; and\n\n 2.1.2. Any new file that is contributed or otherwise made available under the terms of this License.\n\n 2.1.3. \u201cLicense\u201d means the terms and conditions for use, reproduction, and distribution as defined in this document.\n\n 2.1.4. \u201cLicensor\u201d shall mean Brankas, its affiliates, subsidiaries, or permitted assigns.\n\n 2.1.5. \u201cObject Form\u201d 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.\n\n 2.1.6. \u201cOriginal Software\u201d means the Source Code of computer software code that was originally released under this License.\n\n 2.1.7. \u201cSoftware\u201d means (a) the Original Software; (b) Derivative Works; or (c) the combination of files containing Original Software with files containing Derivative Works, in each case, including portions thereof.\n\n 2.1.8. \u201cSource Code\u201d means (a) the common form of computer software code in which modifications are made, and (b) associated documentation included in or with such code.\n\n 2.1.9. \u201cSource Form\u201d shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n 2.1.10. \u201cYou\u201d means an individual or a legal entity exercising rights under this License. For legal entities, \u201cYou\u201d includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, \u201ccontrol\u201d means (a) the power, direct or indirect, to cause the direction or management of an entity, whether by contract or otherwise; or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of an entity.\n\n Grants\n\n 3.1. Copyright License\n The Licensor grants you a perpetual, non-exclusive, royalty-free, worldwide, non-sublicensable, non-transferable license to use, copy, modify, distribute, make available, display, and prepare Derivative Works of the Software, in each case subject to the limitations and conditions of this License.\n\n 3.1.1. Right to Distribute\n Subject to Clause 5, you may distribute the Derivative Works of the Software, provided that you have clear documentation as to how your Derivative Works differ from the Original Software. You are not required to make such documentation public.\n\n 3.1.2. Aggregation\n Subject to Clause 5, you may aggregate the Original Software with Derivative Works in Object Form or Source Form and distribute the resulting aggregation.\n\n 3.2. Patent License\n The Licensor grants You a license, under any patent claims the Licensor can license or becomes able to license, to make, have made, use, sell, offer for sale, import, and have imported the software, in each case subject to the limitations and conditions in this License.\n\n Effective date\n\n 4.1. The licenses required and granted under Clause 3 with respect to any Derivative Works become effective, for each Derivative Works, on the date you first distribute such Derivative Works.\n\n Limitations and Conditions of this License\n\n 5.1. You may not, whether by yourself or with other persons, provide the Software, whether in a repackaged version thereof or in a resulting aggregation with Derivative Works, to a third party as a hosted or managed service, including where you will provide access to any substantial set of the features or functionality of the Software.\n\n Your Responsibilities\n\n 6.1. The Derivative Works that you create or to which you contribute are governed by the terms of this License. You represent that the Derivative Works are your original creation(s), as clearly documented by you, and/or you have sufficient rights to grant the rights conveyed by this License.\n\n 6.2. You assume full responsibility for informing the recipients of this Software of the terms of this License, and how they can obtain a copy of this License.\n\n 6.3. In incorporating Derivative Works into this Software, you must include a statement in your license to that effect in the aggregated Software.\n\n Termination\n\n 7.1. If you violate the terms of this License, your use is not licensed and will result in the termination of the licenses granted to you hereunder.\n\n 7.2. If the Licensor provides you with a notice of your violation, you shall cease all violations of this license no later than 30 days after receipt of that notice and your licenses will be reinstated retroactively.\n\n 7.3. If you violate the terms of this License after such reinstatement under Clause 7.2, any subsequent violations of these terms will result in the termination of your license automatically and permanently.\n\n 7.4. This License does not cover any patent claims that you cause to be infringed by Derivative Works or additions to the Software. Should you make any written claim that the Software infringes or contributes to infringement of any patent, the patent license for this Software granted under the terms of this License ends immediately. If Your representative makes a patent claim, the patent license granted under this License likewise ends immediately.\n\n Disclaimer of Warranty\n\n 8.1. Unless required by applicable law or agreed to in writing, the Licensor provides the Software on an \u201cAS IS\u201d 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 Software and assume any risks associated with Your exercise of permissions under this License.\n\n Limitation of Liability\n\n 9.1. 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 the Licensor 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 Software (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 the Licensor has been advised of the possibility of such damages.\n\n General\n\n 10.1. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\n 10.2. This License shall not be enforceable except by a Licensor acting as such, and third-party beneficiary rights are specifically excluded.", + "json": "brankas-open-license-1.0.json", + "yaml": "brankas-open-license-1.0.yml", + "html": "brankas-open-license-1.0.html", + "license": "brankas-open-license-1.0.LICENSE" + }, + { + "license_key": "brent-corkum", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-brent-corkum", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Brent Corkum License\n\nDate : April 2002 \nAuthor : Brent Corkum Email : corkum@rocscience.com \nLatest Version : http:www.rocscience.com/~corkum/BCMenu.html\n\nBug Fixes and portions of code supplied by:\n\nBen Ashley,Girish Bharadwaj,Jean-Edouard Lachand-Robert, Robert Edward Caldecott,Kenny Goers,Leonardo Zide, Stefan Kuhr,Reiner Jung,Martin Vladic,Kim Yoo Chul, Oz Solomonovich,Tongzhe Cui,Stephane Clog,Warren Stevens, Damir Valiulin,David Kinder,Marc Loiry\n\nYou are free to use/modify this code but leave this header intact. This class is public domain so you are free to use it any of your applications (Freeware,Shareware,Commercial). All I ask is that you let me know so that if you have a real winner I can brag to my buddies that some of my code is in your app. I also wouldn't mind if you sent me a copy of your application since I like to play with new stuff.", + "json": "brent-corkum.json", + "yaml": "brent-corkum.yml", + "html": "brent-corkum.html", + "license": "brent-corkum.LICENSE" + }, + { + "license_key": "brian-clapper", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-brian-clapper", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms are\npermitted provided that: (1) source distributions retain\nthis entire copyright notice and comment; (2) modifications\nmade to the software are prominently mentioned, and a copy\nof the original software (or a pointer to its location) are\nincluded; and (3) distributions including binaries display\nthe following acknowledgement: \"This product includes\nsoftware developed by Brian M. Clapper \"\nin the documentation or other materials provided with the\ndistribution. The name of the author may not be used to\nendorse or promote products derived from this software\nwithout specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS\nOR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE.\n\nEffectively, this means you can do what you want with the software\nexcept remove this notice or take advantage of the author's name.\nIf you modify the software and redistribute your modified version,\nyou must indicate that your version is a modification of the\noriginal, and you must provide either a pointer to or a copy of the\noriginal.", + "json": "brian-clapper.json", + "yaml": "brian-clapper.yml", + "html": "brian-clapper.html", + "license": "brian-clapper.LICENSE" + }, + { + "license_key": "brian-gladman", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-brian-gladman", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The redistribution and use of this software (with or without changes)\nis allowed without the payment of fees or royalties provided that:\n\n source code distributions include the above copyright notice, this\n list of conditions and the following disclaimer;\n\n binary distributions include the above copyright notice, this list\n of conditions and the following disclaimer in their documentation.\n\nThis software is provided 'as is' with no explicit or implied warranties\nin respect of its operation, including, but not limited to, correctness\nand fitness for purpose.", + "json": "brian-gladman.json", + "yaml": "brian-gladman.yml", + "html": "brian-gladman.html", + "license": "brian-gladman.LICENSE" + }, + { + "license_key": "brian-gladman-3-clause", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-brian-gladman-3-clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " LICENSE TERMS\n\n The free distribution and use of this software in both source and binary\n form is allowed (with or without changes) provided that:\n\n 1. distributions of this source code include the above copyright\n notice, this list of conditions and the following disclaimer;\n\n 2. distributions in binary form include the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other associated materials;\n\n 3. the copyright holder's name is not used to endorse products\n built using this software without specific written permission.\n\n DISCLAIMER\n\n This software is provided 'as is' with no explicit or implied warranties\n in respect of its properties, including, but not limited to, correctness\n and fitness for purpose.", + "json": "brian-gladman-3-clause.json", + "yaml": "brian-gladman-3-clause.yml", + "html": "brian-gladman-3-clause.html", + "license": "brian-gladman-3-clause.LICENSE" + }, + { + "license_key": "brian-gladman-dual", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "LICENSE TERMS\n\n The free distribution and use of this software in both source and binary\n form is allowed (with or without changes) provided that:\n\n 1. distributions of this source code include the above copyright\n notice, this list of conditions and the following disclaimer;\n\n 2. distributions in binary form include the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other associated materials;\n\n 3. the copyright holder's name is not used to endorse products\n built using this software without specific written permission.\n\n ALTERNATIVELY, provided that this notice is retained in full, this product\n may be distributed under the terms of the GNU General Public License (GPL),\n of your choice\n in which case the provisions of the GPL apply INSTEAD OF those given above.\n\n DISCLAIMER\n\n This software is provided 'as is' with no explicit or implied warranties\n in respect of its properties, including, but not limited to, correctness\n and/or fitness for purpose.", + "json": "brian-gladman-dual.json", + "yaml": "brian-gladman-dual.yml", + "html": "brian-gladman-dual.html", + "license": "brian-gladman-dual.LICENSE" + }, + { + "license_key": "broadcom-cfe", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-broadcom-cfe", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software is furnished under license and may be used and copied only in\naccordance with the following terms and conditions. Subject to these conditions, you\nmay download, copy, install, use, modify and distribute modified or unmodified copies\nof this software in source and/or binary form. No title or ownership is transferred\nhereby.\n\n1) Any source code used, modified or distributed must reproduce and retain this\ncopyright notice and list of conditions as they appear in the source file.\n\n2) No right is granted to use any trade name, trademark, or logo of Broadcom\nCorporation. Neither the \"Broadcom Corporation\" name nor any trademark or logo of\nBroadcom Corporation may be used to endorse or promote products derived from this\nsoftware without the prior written permission of Broadcom Corporation.\n\n3) THIS SOFTWARE IS PROVIDED \"AS-IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING\nBUT NOT LIMITED TO, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL BROADCOM BE\nLIABLE FOR ANY DAMAGES WHATSOEVER, AND IN PARTICULAR, BROADCOM SHALL NOT BE LIABLE\nFOR DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\nUSE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\nOTHERWISE), EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "broadcom-cfe.json", + "yaml": "broadcom-cfe.yml", + "html": "broadcom-cfe.html", + "license": "broadcom-cfe.LICENSE" + }, + { + "license_key": "broadcom-commercial", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-broadcom-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Confidential Property of Broadcom Corporation\n\nTHIS SOFTWARE MAY ONLY BE USED SUBJECT TO AN EXECUTED SOFTWARE LICENSE\nAGREEMENT BETWEEN THE USER AND BROADCOM. YOU HAVE NO RIGHT TO USE OR\nEXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT.", + "json": "broadcom-commercial.json", + "yaml": "broadcom-commercial.yml", + "html": "broadcom-commercial.html", + "license": "broadcom-commercial.LICENSE" + }, + { + "license_key": "broadcom-confidential", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-broadcom-confidential", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "No portions of this material may be reproduced in any form without the written permission of:\n Broadcom Corporation\n 16251 Laguna Canyon Road\n Irvine, California 92618\nAll information contained in this document is Broadcom Corporation company private, proprietary, and trade secret.", + "json": "broadcom-confidential.json", + "yaml": "broadcom-confidential.yml", + "html": "broadcom-confidential.html", + "license": "broadcom-confidential.LICENSE" + }, + { + "license_key": "broadcom-dual", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Unless you and Broadcom execute a separate written software license agreement\ngoverning use of this software, this software is licensed to you under the\nterms of the GNU General Public License version 2, available at\n\nhttp://www.broadcom.com/licenses/GPLv2.php (the \"GPL\").\n\nNotwithstanding the above, under no circumstances may you combine this software\nin any way with any other Broadcom software provided under a license other than\nthe GPL, without Broadcom's express prior written consent.", + "json": "broadcom-dual.json", + "yaml": "broadcom-dual.yml", + "html": "broadcom-dual.html", + "license": "broadcom-dual.LICENSE" + }, + { + "license_key": "broadcom-linking-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-bcm-linking-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, the copyright holders of this software give you permission to link this software with independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module.\n\nAn independent module is a module which is not derived from this software. The special exception does not apply to any modifications of the software.\n\nNot withstanding the above, under no circumstances may you combine this software in any way with any other Broadcom software provided under a license other than the GPL, without Broadcom's express prior written consent.", + "json": "broadcom-linking-exception-2.0.json", + "yaml": "broadcom-linking-exception-2.0.yml", + "html": "broadcom-linking-exception-2.0.html", + "license": "broadcom-linking-exception-2.0.LICENSE" + }, + { + "license_key": "broadcom-linking-unmodified", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-broadcom-linking-unmodified", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "As a special exception, the copyright holders of this software give you\npermission to link this software with independent modules, and to copy\nand distribute the resulting executable under terms of your choice,\nprovided that you also meet, for each linked independent module, the\nterms and conditions of the license of that module.\n\nAn independent module is a module which is not derived from this\nsoftware. The special exception does not apply to any modifications of\nthe software.", + "json": "broadcom-linking-unmodified.json", + "yaml": "broadcom-linking-unmodified.yml", + "html": "broadcom-linking-unmodified.html", + "license": "broadcom-linking-unmodified.LICENSE" + }, + { + "license_key": "broadcom-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-broadcom-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SOFTWARE LICENSE AGREEMENT\n\nThe accompanying software in binary code form (\u201cSoftware\u201d), is licensed to you,\nor, if you are accepting on behalf of an entity, the entity and its affiliates\nexercising rights hereunder (\u201cLicensee\u201d) subject to the terms of this software\nlicense agreement (\u201cAgreement\u201d), unless Licensee and Broadcom Corporation\n(\u201cBroadcom\u201d) execute a separate written software license agreement governing\nuse of the Software. ANY USE, REPRODUCTION, OR DISTRIBUTION OF THE SOFTWARE\nCONSTITUTES LICENSEE\u2019S ACCEPTANCE OF THIS AGREEMENT.\n\n1.\tLicense. Subject to the terms and conditions of this Agreement,\nBroadcom hereby grants to Licensee a limited, non-exclusive, non-transferable,\nroyalty-free license: (i) to use and integrate the Software with any other\nsoftware; and (ii) to reproduce and distribute the Software complete,\nunmodified, and as provided by Broadcom, solely for use with Broadcom\nproprietary integrated circuit product(s) sold by Broadcom with which the\nSoftware was designed to be used, or their successors.\n\n2.\tRestrictions. Licensee shall distribute Software with a copy of this\nAgreement. Licensee shall not remove, efface or obscure any copyright or\ntrademark notices from the Software. Reproductions of the Broadcom copyright\nnotice shall be included with each copy of the Software, except where such\nSoftware is embedded in a manner not readily accessible to the end user.\nLicensee shall not: (i) use, license, sell or otherwise distribute the Software\nexcept as provided in this Agreement; (ii) attempt to modify in any way,\nreverse engineer, decompile or disassemble any portion of the Software; or\n(iii) use the Software or other material in violation of any applicable law or\nregulation, including but not limited to any regulatory agency. This Agreement\nshall automatically terminate upon Licensee\u2019s failure to comply with any of the\nterms of this Agreement. In such event, Licensee will destroy all copies of the\nSoftware and its component parts.\n\n3.\tOwnership. The Software is licensed and not sold. Title to and\nownership of the Software, including all intellectual property rights thereto,\nand any portion thereof remain with Broadcom or its licensors. Licensee hereby\ncovenants that it will not assert any claim that the Software created by or for\nBroadcom infringe any intellectual property right owned or controlled by\nLicensee.\n\n4. \tDisclaimer. THE SOFTWARE IS OFFERED \u201cAS IS,\u201d AND BROADCOM PROVIDES AND\nGRANTS AND LICENSEE RECEIVES NO SUPPORT AND NO WARRANTIES OF ANY KIND, EXPRESS\nOR IMPLIED, BY STATUTE, COMMUNICATION OR CONDUCT WITH LICENSEE, OR OTHERWISE.\nBROADCOM SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A SPECIFIC PURPOSE, OR NONINFRINGEMENT CONCERNING THE SOFTWARE OR\nANY UPGRADES TO OR DOCUMENTATION FOR THE SOFTWARE. WITHOUT LIMITATION OF THE\nABOVE, BROADCOM GRANTS NO WARRANTY THAT THE SOFTWARE IS ERROR-FREE OR WILL\nOPERATE WITHOUT INTERRUPTION, AND GRANTS NO WARRANTY REGARDING ITS USE OR THE\nRESULTS THEREFROM INCLUDING, WITHOUT LIMITATION, ITS CORRECTNESS, ACCURACY, OR\nRELIABILITY. TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL BROADCOM\nOR ANY OF ITS LICENSORS HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES, HOWEVER CAUSED AND ON ANY THEORY\nOF LIABILITY, WHETHER FOR BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE) OR\nOTHERWISE, ARISING OUT OF THIS AGREEMENT OR USE, REPRODUCTION, OR DISTRIBUTION\nOF THE SOFTWARE, INCLUDING BUT NOT LIMITED TO LOSS OF DATA AND LOSS OF PROFITS,\nEVEN IF SUCH PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THESE\nLIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY\nLIMITED REMEDY.\n\n5. \tExport Laws. LICENSEE UNDERSTANDS AND AGREES THAT THE SOFTWARE IS\nSUBJECT TO UNITED STATES AND OTHER APPLICABLE EXPORT-RELATED LAWS AND\nREGULATIONS AND THAT LICENSEE MAY NOT EXPORT, RE-EXPORT OR TRANSFER THE\nSOFTWARE OR ANY DIRECT PRODUCT OF THE SOFTWARE EXCEPT AS PERMITTED UNDER THOSE\nLAWS. WITHOUT LIMITING THE FOREGOING, EXPORT, RE-EXPORT, OR TRANSFER OF THE\nSOFTWARE TO CUBA, IRAN, NORTH KOREA, SUDAN, AND SYRIA IS PROHIBITED.", + "json": "broadcom-linux-firmware.json", + "yaml": "broadcom-linux-firmware.yml", + "html": "broadcom-linux-firmware.html", + "license": "broadcom-linux-firmware.LICENSE" + }, + { + "license_key": "broadcom-linux-timer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-broadcom-linux-timer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright (c) Broadcom Corporation All Rights Reserved. \n\nTHIS SOFTWARE IS OFFERED \"AS IS\", AND BROADCOM GRANTS NO WARRANTIES OF\nANY KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE.\nBROADCOM SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT\nCONCERNING THIS SOFTWARE.\n\nLow resolution timer interface linux specific implementation.", + "json": "broadcom-linux-timer.json", + "yaml": "broadcom-linux-timer.yml", + "html": "broadcom-linux-timer.html", + "license": "broadcom-linux-timer.LICENSE" + }, + { + "license_key": "broadcom-proprietary", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-broadcom-proprietary", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SOFTWARE LICENSE AGREEMENT \n \nUnless you and Broadcom Corporation (\"Broadcom\") execute a separate written \nsoftware license agreement governing use of the accompanying software, this \nsoftware is licensed to you under the terms of this Software License \nAgreement (\"Agreement\"). \n \nANY USE, REPRODUCTION OR DISTRIBUTION OF THE SOFTWARE CONSTITUTES YOUR \nACCEPTANCE OF THIS AGREEMENT. \n \n1.\tDEFINITIONS. \n \n1.1.\t\"Broadcom Product\" means any of the proprietary integrated circuit \nproduct(s) sold by Broadcom with which the Software was designed to be used, \nor their successors. \n \n1.2.\t\"Licensee\" means you or if you are accepting on behalf of an entity \nthen the entity and its affiliates exercising rights under, and complying \nwith all of the terms of this Agreement. \n \n1.3.\t\"Software\" shall mean that software made available by Broadcom to \nLicensee in binary code form with this Agreement. \n \n2.\tLICENSE GRANT; OWNERSHIP \n \n2.1.\tLicense Grants. Subject to the terms and conditions of this Agreement, \nBroadcom hereby grants to Licensee a non-exclusive, non-transferable, \nroyalty-free license (i) to use and integrate the Software in conjunction \nwith any other software; and (ii) to reproduce and distribute the Software \ncomplete, unmodified and only for use with a Broadcom Product. \n \n2.2.\tRestriction on Modification. If and to the extent that the Software is \ndesigned to be compliant with any published communications standard \n(including, without limitation, DOCSIS, HomePNA, IEEE, and ITU standards), \nLicensee may not make any modifications to the Software that would cause the \nSoftware or the accompanying Broadcom Products to be incompatible with such \nstandard. \n \n2.3.\tRestriction on Distribution. Licensee shall only distribute the \nSoftware (a) under the terms of this Agreement and a copy of this Agreement \naccompanies such distribution, and (b) agrees to defend and indemnify \nBroadcom and its licensors from and against any damages, costs, liabilities, \nsettlement amounts and/or expenses (including attorneys' fees) incurred in \nconnection with any claim, lawsuit or action by any third party that arises \nor results from the use or distribution of any and all Software by the \nLicensee except as contemplated herein. \n \n2.4.\tProprietary Notices. Licensee shall not remove, efface or obscure any \ncopyright or trademark notices from the Software. Licensee shall include \nreproductions of the Broadcom copyright notice with each copy of the \nSoftware, except where such Software is embedded in a manner not readily \naccessible to the end user. Licensee acknowledges that any symbols, \ntrademarks, tradenames, and service marks adopted by Broadcom to identify the \nSoftware belong to Broadcom and that Licensee shall have no rights therein. \n \n2.5.\tOwnership. Broadcom shall retain all right, title and interest, \nincluding all intellectual property rights, in and to the Software. Licensee \nhereby covenants that it will not assert any claim that the Software created \nby or for Broadcom infringe any intellectual property right owned or \ncontrolled by Licensee. \n \n2.6.\tNo Other Rights Granted; Restrictions. Apart from the license rights \nexpressly set forth in this Agreement, Broadcom does not grant and Licensee \ndoes not receive any ownership right, title or interest nor any security \ninterest or other interest in any intellectual property rights relating to \nthe Software, nor in any copy of any part of the foregoing. No license is \ngranted to Licensee in any human readable code of the Software (source code). \nLicensee shall not (i) use, license, sell or otherwise distribute the \nSoftware except as provided in this Agreement, (ii) attempt to reverse \nengineer, decompile or disassemble any portion of the Software; or (iii) use \nthe Software or other material in violation of any applicable law or \nregulation, including but not limited to any regulatory agency, such as FCC, \nrules. \n \n3.\tNO WARRANTY OR SUPPORT \n \n3.1.\tNo Warranty. THE SOFTWARE IS OFFERED \"AS IS,\" AND BROADCOM GRANTS AND \nLICENSEE RECEIVES NO WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, BY STATUTE, \nCOMMUNICATION OR CONDUCT WITH LICENSEE, OR OTHERWISE. BROADCOM SPECIFICALLY \nDISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A SPECIFIC \nPURPOSE OR NONINFRINGEMENT CONCERNING THE SOFTWARE OR ANY UPGRADES TO OR \nDOCUMENTATION FOR THE SOFTWARE. WITHOUT LIMITATION OF THE ABOVE, BROADCOM \nGRANTS NO WARRANTY THAT THE SOFTWARE IS ERROR-FREE OR WILL OPERATE WITHOUT \nINTERRUPTION, AND GRANTS NO WARRANTY REGARDING ITS USE OR THE RESULTS \nTHEREFROM INCLUDING, WITHOUT LIMITATION, ITS CORRECTNESS, ACCURACY OR \nRELIABILITY. \n \n3.2.\tNo Support. Nothing in this agreement shall obligate Broadcom to \nprovide any support for the Software. Broadcom may, but shall be under no \nobligation to, correct any defects in the Software and/or provide updates to \nlicensees of the Software. Licensee shall make reasonable efforts to \npromptly report to Broadcom any defects it finds in the Software, as an aid \nto creating improved revisions of the Software. \n \n3.3.\tDangerous Applications. The Software is not designed, intended, or \ncertified for use in components of systems intended for the operation of \nweapons, weapons systems, nuclear installations, means of mass \ntransportation, aviation, life-support computers or equipment (including \nresuscitation equipment and surgical implants), pollution control, hazardous \nsubstances management, or for any other dangerous application in which the \nfailure of the Software could create a situation where personal injury or \ndeath may occur. Licensee understands that use of the Software in such \napplications is fully at the risk of Licensee. \n \n4.\tTERM AND TERMINATION \n \n4.1.\tTermination. This Agreement will automatically terminate if Licensee \nfails to comply with any of the terms and conditions hereof. In such event, \nLicensee must destroy all copies of the Software and all of its component \nparts. \n \n4.2.\tEffect Of Termination. Upon any termination of this Agreement, the \nrights and licenses granted to Licensee under this Agreement shall \nimmediately terminate. \n \n4.3.\tSurvival. The rights and obligations under this Agreement which by \ntheir nature should survive termination will remain in effect after \nexpiration or termination of this Agreement. \n \n5.\tCONFIDENTIALITY \n \n5.1.\tObligations. Licensee acknowledges and agrees that any documentation \nrelating to the Software, and any other information (if such other \ninformation is identified as confidential or should be recognized as \nconfidential under the circumstances) provided to Licensee by Broadcom \nhereunder (collectively, \"Confidential Information\") constitute the \nconfidential and proprietary information of Broadcom, and that Licensee's \nprotection thereof is an essential condition to Licensee's use and possession \nof the Software. Licensee shall retain all Confidential Information in \nstrict confidence and not disclose it to any third party or use it in any way \nexcept under a written agreement with terms and conditions at least as \nprotective as the terms of this Section. Licensee will exercise at least the \nsame amount of diligence in preserving the secrecy of the Confidential \nInformation as it uses in preserving the secrecy of its own most valuable \nconfidential information, but in no event less than reasonable diligence. \nInformation shall not be considered Confidential Information if and to the \nextent that it: (i) was in the public domain at the time it was disclosed or \nhas entered the public domain through no fault of Licensee; (ii) was known to \nLicensee, without restriction, at the time of disclosure as proven by the \nfiles of Licensee in existence at the time of disclosure; or (iii) becomes \nknown to Licensee, without restriction, from a source other than Broadcom \nwithout breach of this Agreement by Licensee and otherwise not in violation \nof Broadcom's rights. \n \n5.2.\tReturn of Confidential Information. Notwithstanding the foregoing, all \ndocuments and other tangible objects containing or representing Broadcom \nConfidential Information and all copies thereof which are in the possession \nof Licensee shall be and remain the property of Broadcom, and shall be \npromptly returned to Broadcom upon written request by Broadcom or upon \ntermination of this Agreement. \n \n6.\tLIMITATION OF LIABILITY \nTO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL BROADCOM OR ANY OF \nBROADCOM'S LICENSORS HAVE ANY LIABILITY FOR ANY INDIRECT, INCIDENTAL, \nSPECIAL, OR CONSEQUENTIAL DAMAGES, HOWEVER CAUSED AND ON ANY THEORY OF \nLIABILITY, WHETHER FOR BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE) OR \nOTHERWISE, ARISING OUT OF THIS AGREEMENT, INCLUDING BUT NOT LIMITED TO LOSS \nOF PROFITS, EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH \nDAMAGES. IN NO EVENT WILL BROADCOM'S LIABILITY WHETHER IN CONTRACT, TORT \n(INCLUDING NEGLIGENCE), OR OTHERWISE, EXCEED THE AMOUNT PAID BY LICENSEE FOR \nSOFTWARE UNDER THIS AGREEMENT. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING \nANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY. \n \n7.\tMISCELLANEOUS \n \n7.1.\tExport Regulations. YOU UNDERSTAND AND AGREE THAT THE SOFTWARE IS \nSUBJECT TO UNITED STATES AND OTHER APPLICABLE EXPORT-RELATED LAWS AND \nREGULATIONS AND THAT YOU MAY NOT EXPORT, RE-EXPORT OR TRANSFER THE SOFTWARE \nOR ANY DIRECT PRODUCT OF THE SOFTWARE EXCEPT AS PERMITTED UNDER THOSE LAWS. \nWITHOUT LIMITING THE FOREGOING, EXPORT, RE-EXPORT OR TRANSFER OF THE SOFTWARE \nTO CUBA, IRAN, NORTH KOREA, SUDAN AND SYRIA IS PROHIBITED. \n \n7.2\tAssignment. This Agreement shall be binding upon and inure to the \nbenefit of the parties and their respective successors and assigns, provided, \nhowever that Licensee may not assign this Agreement or any rights or \nobligation hereunder, directly or indirectly, by operation of law or \notherwise, without the prior written consent of Broadcom, and any such \nattempted assignment shall be void. Notwithstanding the foregoing, Licensee \nmay assign this Agreement to a successor to all or substantially all of its \nbusiness or assets to which this Agreement relates that is not a competitor \nof Broadcom. \n \n7.3.\tGoverning Law; Venue. This Agreement shall be governed by the laws of \nCalifornia without regard to any conflict-of-laws rules, and the United \nNations Convention on Contracts for the International Sale of Goods is hereby \nexcluded. The sole jurisdiction and venue for actions related to the subject \nmatter hereof shall be the state and federal courts located in the County of \nOrange, California, and both parties hereby consent to such jurisdiction and \nvenue. \n \n7.4.\tSeverability. All terms and provisions of this Agreement shall, if \npossible, be construed in a manner which makes them valid, but in the event \nany term or provision of this Agreement is found by a court of competent \njurisdiction to be illegal or unenforceable, the validity or enforceability \nof the remainder of this Agreement shall not be affected if the illegal or \nunenforceable provision does not materially affect the intent of this \nAgreement. If the illegal or unenforceable provision materially affects the \nintent of the parties to this Agreement, this Agreement shall become \nterminated. \n \n7.5.\tEquitable Relief. Licensee hereby acknowledges that its breach of this \nAgreement would cause irreparable harm and significant injury to Broadcom \nthat may be difficult to ascertain and that a remedy at law would be \ninadequate. Accordingly, Licensee agrees that Broadcom shall have the right \nto seek and obtain immediate injunctive relief to enforce obligations under \nthe Agreement in addition to any other rights and remedies it may have. \n \n7.6.\tWaiver. The waiver of, or failure to enforce, any breach or default \nhereunder shall not constitute the waiver of any other or subsequent breach \nor default. \n \n7.7.\tEntire Agreement. This Agreement sets forth the entire Agreement \nbetween the parties and supersedes any and all prior proposals, agreements \nand representations between them, whether written or oral concerning the \nSoftware. This Agreement may be changed only by mutual agreement of the \nparties in writing.", + "json": "broadcom-proprietary.json", + "yaml": "broadcom-proprietary.yml", + "html": "broadcom-proprietary.html", + "license": "broadcom-proprietary.LICENSE" + }, + { + "license_key": "broadcom-raspberry-pi", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-broadcom-raspberry-pi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution. Redistribution and use in binary form, without\nmodification, are permitted provided that the following conditions are\nmet:\n\n* This software may only be used for the purposes of developing for, \n running or using a Raspberry Pi device, or authorised derivative\n device manufactured via the element14 Raspberry Pi Customization Service\n* Redistributions must reproduce the above copyright notice and the\n following disclaimer in the documentation and/or other materials\n provided with the distribution.\n* Neither the name of Broadcom Corporation nor the names of its suppliers\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\nCOPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\nOF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\nUSE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGE.", + "json": "broadcom-raspberry-pi.json", + "yaml": "broadcom-raspberry-pi.yml", + "html": "broadcom-raspberry-pi.html", + "license": "broadcom-raspberry-pi.LICENSE" + }, + { + "license_key": "broadcom-standard-terms", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-broadcom-standard-terms", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This program is the proprietary software of Broadcom Corporation and/or\nits licensors, and may only be used, duplicated, modified or distributed\npursuant to the terms and conditions of a separate, written license\nagreement executed between you and Broadcom (an \"Authorized License\").\nExcept as set forth in an Authorized License, Broadcom grants no license\n(express or implied), right to use, or waiver of any kind with respect to\nthe Software, and Broadcom expressly reserves all rights in and to the\nSoftware and all intellectual property rights therein. IF YOU HAVE NO\nAUTHORIZED LICENSE, THEN YOU HAVE NO RIGHT TO USE THIS SOFTWARE IN ANY WAY,\nAND SHOULD IMMEDIATELY NOTIFY BROADCOM AND DISCONTINUE ALL USE OF THE\nSOFTWARE. \n\nExcept as expressly set forth in the Authorized License,\n\n1. This program, including its structure, sequence and organization,\nconstitutes the valuable trade secrets of Broadcom, and you shall use all\nreasonable efforts to protect the confidentiality thereof, and to use this\ninformation only in connection with your use of Broadcom integrated circuit\nproducts.\n\n2. TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED\n\"AS IS\" AND WITH ALL FAULTS AND BROADCOM MAKES NO PROMISES, REPRESENTATIONS\nOR WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH\nRESPECT TO THE SOFTWARE. BROADCOM SPECIFICALLY DISCLAIMS ANY AND ALL\nIMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR\nA PARTICULAR PURPOSE, LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET\nENJOYMENT, QUIET POSSESSION OR CORRESPONDENCE TO DESCRIPTION. YOU ASSUME\nTHE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE.\n\n3. TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL BROADCOM\nOR ITS LICENSORS BE LIABLE FOR (i) CONSEQUENTIAL, INCIDENTAL, SPECIAL,\nINDIRECT, OR EXEMPLARY DAMAGES WHATSOEVER ARISING OUT OF OR IN ANY WAY\nRELATING TO YOUR USE OF OR INABILITY TO USE THE SOFTWARE EVEN IF BROADCOM\nHAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES; OR (ii) ANY AMOUNT IN\nEXCESS OF THE AMOUNT ACTUALLY PAID FOR THE SOFTWARE ITSELF OR U.S. $1,\nWHICHEVER IS GREATER. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY\nFAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY.", + "json": "broadcom-standard-terms.json", + "yaml": "broadcom-standard-terms.yml", + "html": "broadcom-standard-terms.html", + "license": "broadcom-standard-terms.LICENSE" + }, + { + "license_key": "broadcom-unmodified-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-broadcom-unmodified-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, the copyright holders of this software give you\npermission to link this software with independent modules, and to copy\nand distribute the resulting executable under terms of your choice,\nprovided that you also meet, for each linked independent module, the\nterms and conditions of the license of that module.\n\nAn independent module is a module which is not derived from this\nsoftware. The special exception does not apply to any modifications of\nthe software.", + "json": "broadcom-unmodified-exception.json", + "yaml": "broadcom-unmodified-exception.yml", + "html": "broadcom-unmodified-exception.html", + "license": "broadcom-unmodified-exception.LICENSE" + }, + { + "license_key": "broadcom-unpublished-source", + "category": "Commercial", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation; the contents of this file may not be disclosed to third parties, copied or duplicated in any form, in whole or in part, without the prior written permission of Broadcom Corporation.", + "json": "broadcom-unpublished-source.json", + "yaml": "broadcom-unpublished-source.yml", + "html": "broadcom-unpublished-source.html", + "license": "broadcom-unpublished-source.LICENSE" + }, + { + "license_key": "broadcom-wiced", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-broadcom-wiced", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BROADCOM WICED DEVELOPMENT KIT LICENSE AGREEMENT\n\nIMPORTANT\u2014BY OPENING THE PACKAGE FOR THIS BROADCOM WIRELESS INTERNET CONNECTIVITY FOR EMBEDDED DEVICES DEVELOPER\u2019S KIT (\"SDK\"), YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS LICENSE AGREEMENT (\"AGREEMENT\"). IF YOU DO NOT AGREE WITH THE TERMS OF THIS AGREEMENT, DO NOT DOWNLOAD, INSTALL OR USE THE SOFTWARE AND PROMPTLY RETURN THE SDK AND THE ACCOMPANYING DOCUMENTATION TO BROADCOM. IF YOU AGREE WITH AND ACCEPT THE TERMS AND CONDITIONS OF THIS AGREEMENT, IT SHALL BECOME A LEGALLY BINDING AGREEMENT BETWEEN YOU AND BROADCOM CORPORATION (\"BROADCOM\"), AND YOU MAY PROCEED TO DOWNLOAD, INSTALL, AND USE THE SDK IN ACCORDANCE WITH THE TERMS AND CONDITIONS OF THIS AGREEMENT.\n\n1. GRANT OF LICENSE.\n\nSubject to the terms and conditions of this Agreement, BROADCOM grants You the following license with respect to the: (1) enclosed software in object code and source code formats, as more specifically described in the Documentation, and upgrades thereto, if any, provided by BROADCOM pursuant to Section 7 hereof (collectively, the \"Software\"); (2) software tools in object code and source code format; and (3) accompanying documentation (\"Documentation\"):\n\nBROADCOM grants You a limited, revocable, non-exclusive, non-transferable license solely (i) to use the Software and Documentation for your internal evaluation solely for the purpose of developing application programs (\"Developer Programs\") that will be used in conjunction with, or will interface with, the Software and Broadcom proprietary integrated circuits, chips, chipsets, or modules described in the Documentation (\"Broadcom Chips\"); (ii) to use and modify the Software provided in source code format to create derivative works, and (iv) reproduce and distribute the Software, solely in object code form, incorporated into or integrated with Developer Programs solely for use with Broadcom Chips.\n\nTHIRD PARTY SOFTWARE. The SDK may include software which is owned or controlled and provided by third parties (\"Third Party Software\"). Such Third Party Software is subject to the terms set forth or at the links provided in Exhibit A and incorporated by reference herein. You agree to acknowledge and comply with this following third party licensing obligations and/or notices in connection with its use.\n\n2. PROPRIETARY RIGHTS. The Software and the Documentation are proprietary products of BROADCOM. BROADCOM or its suppliers will retain ownership of the SDK, the Software, Documentation and all patents, copyrights, trade secrets and other proprietary rights relating thereto. Except as provided in Section 1 above, you have no right, title or interest in the Software or the Documentation. You will own all rights, title and interest in and to the Developer Programs you may develop, except for any libraries, data or code included in the Developer Programs that are also included in the Software. You hereby covenant that you will not assert any claim that the Software or derivative works thereof created by or for BROADCOM infringe any intellectual property right owned or controlled by You.\n\n3. RESTRICTIONS. The SDK is licensed, not sold. You may not rent, lease or sublicense the Software. You may not reverse engineer, decompile, or disassemble the Software. Except as expressly permitted in Section 1, you may not use, copy, modify, create derivative works of, distribute, sell, assign, pledge, sublicense, lease, deliver or otherwise transfer the SDK or any portion thereof in any form, and you may not cause or permit anyone else to do any of the foregoing. You may not alter, obscure, or remove any BROADCOM trademark, trade name, logo, patent or copyright notice, or other notice or marking on the Broadcom Chips, Software or Documentation or add any notices or markings to the Broadcom Chips, Software or Documentation. Without limiting the foregoing restriction, except as otherwise permitted in Section 1, You may not provide access to others on a service bureau basis or otherwise. The Software is not designed or licensed for use in hazardous environments, safety critical or life support applications, or where personal injury or bodily harm may result from Software use. You shall not use the Software or other material provided in the SDK in violation of any applicable law or regulation, including but not limited to any regulatory agency. This Agreement shall automatically terminate upon your failure to comply with any of the terms of this Agreement. In such event, You will destroy all copies of the SDK and its component parts.\n\nYou hereby acknowledge that You are not a national of, nor located in, a country designated in Country Group E of Supplement Number 1 to Part 740 of the Export Administration Regulations, 15 CFR Parts 730-774 (\"EAR\"), which includes, but may not be limited to, Cuba, Iran, North Korea, Sudan, and Syria. Further, You acknowledge that these commodities, technology or software were exported from the United States in accordance with the EAR. Diversion contrary to U.S. law is prohibited. Notwithstanding other provisions of U.S. law, You acknowledge that transfer or re-export to any country, entity, or person subject to U.S. sanctions, a denial order, or identified in Country Group E, requires prior authorization from the U.S. Government.\n\nYou agree that you shall indemnify and hold BROADCOM harmless for any liabilities, losses, damages, costs and expenses (including attorneys\u2019 fees and costs) arising from or relating to your failure to comply with any such law or regulation or to obtain any such license, permit or approval.\n\n\nYou may not attempt to obtain the source code for the Software (except for the source code provided) by any means, including but not limited to reverse engineering, decompilation, disassembly, translation or similar manipulation of the Software, unless and only to the extent that applicable law in your jurisdiction specifically gives you the right to do any of the foregoing.\n\n4. LIMITED WARRANTY. THE SDK IS OFFERED \"AS IS,\" AND BROADCOM PROVIDES AND GRANTS AND YOU RECEIVE NO SUPPORT AND NO WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR CONDUCT WITH LICENSEE, OR OTHERWISE. BROADCOM SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A SPECIFIC PURPOSE, OR NONINFRINGEMENT CONCERNING THE SOFTWARE OR ANY UPGRADES TO OR DOCUMENTATION FOR THE SDK. WITHOUT LIMITATION OF THE ABOVE, BROADCOM GRANTS NO WARRANTY THAT THE SDK IS ERROR-FREE OR WILL OPERATE WITHOUT INTERRUPTION, AND GRANTS NO WARRANTY REGARDING ITS USE OR THE RESULTS THEREFROM INCLUDING, WITHOUT LIMITATION, ITS CORRECTNESS, ACCURACY, OR RELIABILITY.\n\n5. NO LIABILITY FOR DAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL BROADCOM OR ANY OF ITS LICENSORS HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR OTHER DAMAGES, HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER FOR BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE) OR OTHERWISE, ARISING OUT OF THIS AGREEMENT OR USE, REPRODUCTION, OR DISTRIBUTION OF THE SDK, INCLUDING BUT NOT LIMITED TO LOSS OF DATA AND LOSS OF PROFITS, EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW.\n\n6. INDEMNIFICATION. You will indemnify, defend and hold harmless BROADCOM and its employees, directors, representatives and agents (\"Indemnified Parties\") for all losses, damages and all reasonable expenses and costs, including reasonable attorneys\u2019 fees, incurred by them in any third party claim, suit or proceeding based upon use or distribution of the Developer Programs or upon your breach of your obligations under this Agreement; provided that the Indemnified Parties give you written notice of any such claim, suit or proceeding within a reasonable time and control of the defense thereof.\n\n7. SUPPORT. Please refer to BROADCOM\u2019s website at www.Broadcom.com for the current terms of any support BROADCOM elects to make available. In the event that BROADCOM elects to provide upgrades to the Software in connection with any such support, such upgrades shall be included within the definition of Software and shall be provided subject to the rights and restrictions set forth in this Agreement. You shall, at it your own expense, be solely responsible for providing technical support and training to your customers for Developer Programs and/or Software, and BROADCOM shall have no obligation with respect thereto. You shall be solely responsible for, and BROADCOM shall have no obligation to honor, any warranties that you provide to your customers or to end users with respect to the Software, derivative works, or Developer Programs. You shall defend any claim against BROADCOM arising in connection with any such warranties, express, implied, statutory, or otherwise, and shall pay any settlements or damages awarded against BROADCOM that are based on any such warranties.\n\n8. CONFIDENTIALITY. The SDK contains proprietary and confidential technology and information of BROADCOM. Accordingly, you must limit access to the SDK to those of your employees who need to use the SDK for purposes permitted hereunder and who have been clearly informed of their obligation to maintain the confidentiality of the SDK. In addition, you must treat the Software and Documentation as strictly confidential and you must use the same care to protect it from unauthorized use, access or disclosure as you use to protect your own confidential and proprietary information, but never less than the care a reasonable person would use under similar circumstances. Any breach of this Section 8 would cause irreparable injury to BROADCOM for which no adequate remedy at law exists. Therefore, you agree that equitable remedies, including injunctive relief and specific performance, are appropriate remedies to redress any breach or threatened breach of this Section 8, in addition to all other remedies available to BROADCOM. You will not directly or indirectly disclose or provide a copy of SDK to any other wireless silicon solution provider.\n\n9. TERMINATION. Broadcom may terminate this Agreement at any time if you breach this Agreement or any terms and conditions herein and you have failed to immediately cure such breach. Upon termination, you will immediately destroy or return all copies of the SDK and documentation.\n\n0. U.S. GOVERNMENT RESTRICTED RIGHTS. The Software and Documentation are commercial products, developed at private expense, and provided with restricted rights. Use, reproduction, release, modification or disclosure of the Software or Documentation, or any part thereof, including technical data, by the Government is restricted in accordance with Federal Acquisition Regulation (\"FAR\") 12.212 for civilian agencies and Defense (\"DFARS\") 227.7202 for military agencies. The Software and Documentation are \"commercial items,\" as that term is defined in 48 C.F.R. 2.101, consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212. Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4, all U.S. Government End Users acquire Software and Documentation with only those rights set forth in this Agreement.\n\n11. MISCELLANEOUS. The laws of the state of California govern this Agreement, and it shall inure to the benefit of BROADCOM, its successors, administrators, heirs and assigns. In any action regarding this Agreement, the prevailing party shall be entitled to receive, in addition to any other relief, reasonable attorneys' fees and expenses. If one or more of the provisions contained in this Agreement shall be unenforceable, then such provision shall be considered inoperative to the extent of such enforceability and the remainder of this Agreement shall continue in full force and effect. The parties hereto agree to replace any such invalid or unenforceable provision with a new provision that has the most nearly similar permissible economic or other effect. You may not assign, delegate or otherwise transfer, whether by agreement, operation of law or otherwise, any right or obligation hereunder without the express prior written consent of BROADCOM, and any attempted assignment, delegation or transfer without such consent shall be void. This Agreement supersedes all prior or contemporaneous proposals, representations, warranties, promises and other communications, whether oral or written, relating to the Software and Documentation. This Agreement may not be amended or modified, except by a written document signed by an authorized representative of each party. Any term or condition in any purchase order or other document you may submit to BROADCOM will have no legal effect.\n\n12. ACKNOWLEDGMENT. You acknowledge that you have read this Agreement, understand it, and agree to its terms and conditions. You also agree that this Agreement covers any merged or partial copies of the Software and is the complete and exclusive Agreement between the parties and supersedes all related proposals, communications or prior agreements, oral or written.", + "json": "broadcom-wiced.json", + "yaml": "broadcom-wiced.yml", + "html": "broadcom-wiced.html", + "license": "broadcom-wiced.LICENSE" + }, + { + "license_key": "broadleaf-fair-use", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-broadleaf-fair-use", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Broadleaf Fair Use License Agreement - Version 1.0\n\nBY USING THE SOFTWARE, YOU (EITHER AN INDIVIDUAL OR A SINGLE ENTITY) AGREE THAT THIS COMMUNITY FAIR USE LICENSE AGREEMENT (\"AGREEMENT\") IS ENFORCEABLE LIKE ANY WRITTEN CONTRACT SIGNED BY YOU. IF YOU DO NOT AGREE TO ALL THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE. THE SOFTWARE YOU HAVE RECEIVED WITH OR SUBJECT TO THIS LICENSE IS THE SOFTWARE FOR COMMUNITY USE (\"COMMUNITY SOFTWARE\") AND IS SUBJECT TO VERY SPECIFIC LIMITATIONS BELOW. IF YOU EXCEED SUCH LIMITATIONS, THEN YOU WILL BE IMMEDIATELY REQUIRED TO PURCHASE A PAID PRODUCT AND LICENSE FEES WILL BE DUE FOR ANY PERIOD OF SUCH PAST USE IN VIOLATION HEREOF.\n\n1. Definitions.\n\n1.1 \"Broadleaf\" means Broadleaf Commerce, LLC a Texas limited liability company, with offices located at 5550 Granite Parkway, Suite 155, Plano, Texas 75024 USA.\n\n1.2 \"Internal Business Purpose\" means the use of any of the Community Software, associated documentation or other materials, as applicable, only for your internal business use with your systems, networks, devices and data. Such use does not include use of your systems, networks or devices as part of services you provide for a third party's benefit or for competing with Broadleaf.\n\n1.3 \"Software\" means (a) all of the contents of the files with which this Agreement is provided; or such contents as are hosted by Broadleaf; (b) any Updates; and (c) any documentation regarding such.\n\n1.4 \"Territory\" means worldwide, except for any countries under embargo or as restricted by the US government.\n\n1.5 \"Updates\" means upgrades, updates, or any new version of Community Software that is made available to you, but does not mean a new Broadleaf product.\n\n1.6 \"Use\", \"Used\" or \"Using\" means to access, install, download, copy, prepare derivative works of, privately perform and display, and use the Community Software subject to any limitations herein.\n\n2. License. Subject to your compliance with the terms of this Agreement, termination hereof and unless otherwise varied by Broadleaf in writing to you, Broadleaf hereby grants to you a perpetual, non-exclusive, non-transferable, non-assignable, revocable (under the conditions of this Agreement), personal, license to Use the Community Software in the Territory at no additional charge so long as: (i) your Use is solely for the purposes provided by Broadleaf in this Agreement; (ii) your Use is for Internal Business Purposes; or iii) you, your entity, and/or any affiliate has not generated more than $5,000,000 USD in gross revenue in any twelve (12) month period during the period of Use. If you are found to be using the Community Software beyond any of the terms or limitations contained in this Section and/or the broader Agreement, you shall immediately pay Broadleaf a license Fee for such usage of the Community Software and those terms set forth in the Broadleaf Enterprise EULA (located at http://www.broadleafcommerce.com/license/commercial) will be binding once paid. For purposes of calculation of such usage, any metric will include you, your entity, and all affiliates, meaning legal entities controlling, controlled by, or under common control with you. The Community Software licensed will either be substituted with the Broadleaf Enterprise Software as defined under that agreement or will simply be governed thereby. In the event Community Software contains or uses third party software, Broadleaf will have no responsibility and claims no right with respect to such third party software. Your use of such third party software and other copyrighted material is governed by their respective terms you acknowledge that the Community Software may contain bugs, errors and other problems that could cause system or other failures and data loss or have less functionality than a paid for version of the Broadleaf Software (\"Paid Products\"). Broadleaf is under no obligation to provide or continue providing Community Software or any Updates thereto. If you violate the terms of this Agreement or Broadleaf terminates it under Section 6, below, your license and all rights hereunder shall immediately cease and you must return or destroy the Community Software within ten (10) days thereof.\n\n3. Special Terms Applicable to the Community Software. You acknowledge that any research or development that you perform regarding the Community Software or any product associated with the Community Software is done entirely at your own risk and subject to this Agreement and restrictions herein. If you submit any information or feedback to Broadleaf regarding testing and use of the Community Software, including error or bug reports; you agree to grant Broadleaf a perpetual, non-exclusive, fully-paid up, royalty-free, worldwide license to use, copy, distribute, make derivative works and incorporate the feedback into any Broadleaf Product at Broadleaf's sole discretion. Redistribution in source code or other forms must include a copy of this license document and any redistribution of the Community Software is only allowed subject to this license.\n\n4. Restrictions. You (or a third party acting on your behalf) may not: (i) sell, lease, rent, loan, or resell, with or without consideration, the Community Software; (ii) permit third parties to benefit from the use or functionality of the Community Software via a timesharing, service bureau or other arrangement; (iii) Use the Community Software to compete with Broadleaf or any other Broadleaf offerings; (iv) use the Community Software to investigate a claim or as the basis of a claim against Broadleaf; or (v) violate the usage restrictions in this Agreement. Any consultant, contractor, or agent hired to perform services for you may operate the Community Software on your behalf under these terms and conditions, provided that you remain fully liable for any and all acts or omissions by such third parties related to this Agreement. This license does not grant you any right in the trademarks, service marks, brand names or logos of Broadleaf. All rights not expressly set forth hereunder are reserved by Broadleaf.\n\n5. Warranty and Disclaimer. THE COMMUNITY SOFTWARE IS PROVIDED \"AS IS\" AND BROADLEAF MAKES NO WARRANTY AS TO ITS USE OR PERFORMANCE EXCEPTING ANY WARRANTY, CONDITION, REPRESENTATION OR TERM THE EXTENT TO WHICH CANNOT BE EXCLUDED OR LIMITED BY APPLICABLE LAW. BROADLEAF, AND ITS SUPPLIERS MAKE NO WARRANTY, CONDITION, REPRESENTATION, OR TERM (EXPRESS OR IMPLIED, WHETHER BY STATUTE, COMMON LAW, CUSTOM, USAGE OR OTHERWISE) AS TO ANY MATTER INCLUDING, WITHOUT LIMITATION, NONINFRINGEMENT OF THIRD PARTY RIGHTS, MERCHANTABILITY, SATISFACTORY QUALITY, INTEGRATION, OR FITNESS FOR A PARTICULAR PURPOSE. WITHOUT LIMITING THE FOREGOING PROVISIONS, BROADLEAF MAKES NO WARRANTY THAT THE COMMUNITY SOFTWARE WILL BE ERROR-FREE OR FREE FROM INTERRUPTIONS OR OTHER FAILURES OR THAT THE COMMUNITY SOFTWARE WILL MEET YOUR REQUIREMENTS.\n\n6. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT, CONTRACT, OR OTHERWISE, SHALL BROADLEAF OR SUPPLIERS BE LIABLE TO YOU OR TO ANY OTHER PERSON FOR LOSS OF PROFITS, LOSS OF GOODWILL, LOSS OF DATA, OR ANY INDIRECT, DIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OR DAMAGES FOR GROSS NEGLIGENCE OF ANY FORM INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, APPLIANCE FAILURE OR MALFUNCTION, OR FOR ANY OTHER DAMAGE OR LOSS. WHERE LEGAL LIABILITY CANNOT BE EXCLUDED, BUT MAY BE LIMITED, BROADLEAF'S LIABILITY AND THAT OF ITS SUPPLIERS SHALL BE LIMITED TO THE SUM OF ONE HUNDRED DOLLARS ($100 USD) IN TOTAL. THIS LIMITATION SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY TO THE EXTENT THAT APPLICABLE LAW PROHIBITS SUCH LIMITATION. FURTHERMORE, SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION AND EXCLUSION MAY NOT APPLY TO YOU. BROADLEAF IS ACTING ON BEHALF OF ITS SUPPLIERS FOR THE PURPOSE OF DISCLAIMING, EXCLUDING AND/OR LIMITING OBLIGATIONS, WARRANTIES AND LIABILITY AS PROVIDED IN THIS AGREEMENT, BUT IN NO OTHER RESPECTS AND FOR NO OTHER PURPOSE. BROADLEAF SHALL HAVE NO LIABILITY TO YOU FOR ANY ACTION (OR ANY PRIOR RELATED CLAIMS) BROUGHT BY OR AGAINST YOU ALLEGING THAT YOUR SALE, USE OR OTHER DISPOSITION OF ANY COMMUNITY SOFTWARE INFRINGES ANY PATENT, COPYRIGHT, TRADE SECRET OR OTHER INTELLECTUAL PROPERTY RIGHT. IN THE EVENT OF SUCH AN ACTION OR IF BROADLEAF BELIEVES AN ACTION POSSIBLE, BROADLEAF RETAINS THE RIGHT TO TERMINATE THIS AGREEMENT AND TAKE POSSESSION OF THE COMMUNITY SOFTWARE. THIS SECTION STATES BROADLEAF'S ENTIRE LIABILITY WITH RESPECT TO ALLEGED INFRINGEMENTS OF INTELLECTUAL PROPERTY RIGHTS BY COMMUNITY SOFTWARE ANY PART THEREOF OR OPERATION. THE FOREGOING PROVISIONS SHALL BE ENFORCEABLE TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW.\n\n7. Export Controls. You acknowledge that the Community Software may be subject to the export control laws and regulations of the United States of America (\"US\"), and any amendments thereof. You further acknowledge that Community Software may include technical data subject to export and re-export restrictions imposed by US law.\n\n8. Governing Law. This Agreement will be governed by and construed in accordance with the substantive laws in force in the State of New York. This Agreement will not be governed by the conflict of laws rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. The United States District Court for the Southern District of New York, and the Courts of New York County, New York shall each have non-exclusive jurisdiction over all disputes relating to this Agreement.\n\n9. Audit. You understand and acknowledge that Broadleaf utilizes a number of methods to verify and support software Use by its customers. These methods may include technological features of the Broadleaf software that prevent unauthorized use and provide software deployment verification and other information regarding the limitations above. In the event that Broadleaf requests a report for confirmation, you will provide a system generated report verifying your software deployment.\n\n10. Miscellaneous. This Agreement is dated and will be archived when it is superseded by a newer version. Broadleaf shall not change any Agreement retroactively with regard to any Community Software issued prior to the date of the applicable Agreement. This Agreement sets forth all rights for the user of the Community Software and is the entire Agreement between the parties. This Agreement supersedes any other communications, representations or advertising relating to the Community Software and Documentation, except for a duly executed written agreement between Broadleaf and you for the Community Software. This Agreement may not be modified except by a written modification issued by a duly authorized representative of Broadleaf, which may be done electronically on Broadleaf's website. No provision hereof shall be deemed waived unless such waiver shall be in writing and signed by Broadleaf. If any provision of this Agreement is held invalid, the remainder of this Agreement shall continue in full force and effect.", + "json": "broadleaf-fair-use.json", + "yaml": "broadleaf-fair-use.yml", + "html": "broadleaf-fair-use.html", + "license": "broadleaf-fair-use.LICENSE" + }, + { + "license_key": "brocade-firmware", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-brocade-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Brocade Linux Fibre Channel HBA Firmware\n\nYou may redistribute the hardware specific firmware binary file\nunder the following terms:\n\n1. Redistribution of source code (only if applicable),\nmust retain the above copyright notice, this list of\nconditions and the following disclaimer.\n\n2. Redistribution in binary form must reproduce the above\ncopyright notice, this list of conditions and the\nfollowing disclaimer in the documentation and/or other\nmaterials provided with the distribution.\n\n3. The name of Brocade Communications Systems, Inc. (\"Brocade\")\nmay not be used to endorse or promote products derived from this\nsoftware without specific prior written permission by Brocade.\n\nREGARDLESS OF WHAT LICENSING MECHANISM IS USED OR APPLICABLE,\nTHIS PROGRAM IS PROVIDED BY BROCADE \"AS IS'' AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE IS DISCLAIMED. IN NO EVENT SHALL THE AUTHOR\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\n\nUSER ACKNOWLEDGES AND AGREES THAT USE OF THIS PROGRAM WILL NOT\nCREATE OR GIVE GROUNDS FOR A LICENSE BY IMPLICATION, ESTOPPEL, OR\nOTHERWISE IN ANY INTELLECTUAL PROPERTY RIGHTS (PATENT, COPYRIGHT,\nTRADE SECRET, MASK WORK, OR OTHER PROPRIETARY RIGHT) EMBODIED IN\nANY OTHER BROCADE HARDWARE OR SOFTWARE EITHER SOLELY OR IN\nCOMBINATION WITH THIS PROGRAM.", + "json": "brocade-firmware.json", + "yaml": "brocade-firmware.yml", + "html": "brocade-firmware.html", + "license": "brocade-firmware.LICENSE" + }, + { + "license_key": "bruno-podetti", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bruno-podetti", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You are free to use/modify this code but leave this header intact.\nThis class is public domain so you are free to use it any of your \napplications (Freeware, Shareware, Commercial). \nAll I ask is that you let me know so that if you have a real winner I can\nbrag to my buddies that some of my code is in your app. I also wouldn't \nmind if you sent me a copy of your application since I like to play with\nnew stuff.", + "json": "bruno-podetti.json", + "yaml": "bruno-podetti.yml", + "html": "bruno-podetti.html", + "license": "bruno-podetti.LICENSE" + }, + { + "license_key": "bsd-1-clause", + "category": "Permissive", + "spdx_license_key": "BSD-1-Clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR AND CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.", + "json": "bsd-1-clause.json", + "yaml": "bsd-1-clause.yml", + "html": "bsd-1-clause.html", + "license": "bsd-1-clause.LICENSE" + }, + { + "license_key": "bsd-1-clause-build", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-1-clause-build", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use, with or without modification, are permitted provided\nthat the following condition is met:\n\n Redistributions of this build system must retain the above copyright notice,\n this condition and the following disclaimer.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nNote that while this license applies to the build system itself the\nsoftware it builds is separately licensed under its own terms and conditions.", + "json": "bsd-1-clause-build.json", + "yaml": "bsd-1-clause-build.yml", + "html": "bsd-1-clause-build.html", + "license": "bsd-1-clause-build.LICENSE" + }, + { + "license_key": "bsd-1988", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-1988", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms are permitted provided that: \n\n(1) source distributions retain this entire copyright notice and comment, and \n\n(2) distributions including binaries display the following acknowledgement:\n``This product includes software developed by copyright holder and its\ncontributors'' in the documentation or other materials provided with the\ndistribution and in all advertising materials mentioning features or use of this\nsoftware.\n\nNeither the name of the {copyright-holder} nor the names of its contributors may\nbe used to endorse or promote products derived from this software without\nspecific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.", + "json": "bsd-1988.json", + "yaml": "bsd-1988.yml", + "html": "bsd-1988.html", + "license": "bsd-1988.LICENSE" + }, + { + "license_key": "bsd-2-clause-freebsd", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "The FreeBSD Copyright\n\nCopyright (c) The FreeBSD Project. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list\nof conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE FREEBSD PROJECT ``AS IS'' AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT\nSHALL THE FREEBSD PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nThe views and conclusions contained in the software and documentation are those\nof the authors and should not be interpreted as representing official policies,\neither expressed or implied, of the FreeBSD Project.", + "json": "bsd-2-clause-freebsd.json", + "yaml": "bsd-2-clause-freebsd.yml", + "html": "bsd-2-clause-freebsd.html", + "license": "bsd-2-clause-freebsd.LICENSE" + }, + { + "license_key": "bsd-2-clause-netbsd", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-2-clause-netbsd.json", + "yaml": "bsd-2-clause-netbsd.yml", + "html": "bsd-2-clause-netbsd.html", + "license": "bsd-2-clause-netbsd.LICENSE" + }, + { + "license_key": "bsd-2-clause-plus-advertizing", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-2-clause-plus-advertizing", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n\tThis product includes software developed by author\n\tand its contributors.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.", + "json": "bsd-2-clause-plus-advertizing.json", + "yaml": "bsd-2-clause-plus-advertizing.yml", + "html": "bsd-2-clause-plus-advertizing.html", + "license": "bsd-2-clause-plus-advertizing.LICENSE" + }, + { + "license_key": "bsd-2-clause-views", + "category": "Permissive", + "spdx_license_key": "BSD-2-Clause-Views", + "other_spdx_license_keys": [ + "BSD-2-Clause-FreeBSD" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list\nof conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nThe views and conclusions contained in the software and documentation are those\nof the authors and should not be interpreted as representing official policies,\neither expressed or implied, of the FreeBSD Project.", + "json": "bsd-2-clause-views.json", + "yaml": "bsd-2-clause-views.yml", + "html": "bsd-2-clause-views.html", + "license": "bsd-2-clause-views.LICENSE" + }, + { + "license_key": "bsd-3-clause-devine", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-devine", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n * Redistributions of source code _must_ retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form may or may not reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n * Neither the name of XySSL nor the names of its contributors may be\n used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\nFOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-3-clause-devine.json", + "yaml": "bsd-3-clause-devine.yml", + "html": "bsd-3-clause-devine.html", + "license": "bsd-3-clause-devine.LICENSE" + }, + { + "license_key": "bsd-3-clause-fda", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-fda", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above notice, this list of\n conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above notice, this list of\n conditions and the following disclaimer in the documentation and/or other\n materials provided with the distribution.\n\n* Neither the name of the United States Government, nor the \n U.S. Food and Drug Administration (FDA), nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nThis program is distributed in the hope that it will be useful. Responsibility\nfor the use of the system and interpretation of documentation and results lies\nsolely with the user. In no event shall FDA be liable for direct, indirect,\nspecial, incidental, or consequential damages resulting from the use, misuse,\nor inability to use the system and accompanying documentation. Third parties'\nuse of or acknowledgment of the system does not in any way represent that\nFDA endorses such third parties or expresses any opinion with respect to their\nstatements. \n\nThis program is free software: you can redistribute it and/or modify it\nunder the terms of the included License.", + "json": "bsd-3-clause-fda.json", + "yaml": "bsd-3-clause-fda.yml", + "html": "bsd-3-clause-fda.html", + "license": "bsd-3-clause-fda.LICENSE" + }, + { + "license_key": "bsd-3-clause-jtag", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-jtag", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above\n copyright notice, this list of conditions and the following\n two paragraphs of disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n two paragraphs of disclaimer in the documentation and/or other materials\n provided with the distribution.\n * Neither the name of the Regents nor the names of its contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n\nIN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,\nSPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS,\nARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF\nREGENTS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nREGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF\nANY, PROVIDED HEREUNDER IS PROVIDED \"AS IS\". REGENTS HAS NO OBLIGATION\nTO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR\nMODIFICATIONS.", + "json": "bsd-3-clause-jtag.json", + "yaml": "bsd-3-clause-jtag.yml", + "html": "bsd-3-clause-jtag.html", + "license": "bsd-3-clause-jtag.LICENSE" + }, + { + "license_key": "bsd-3-clause-no-change", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-no-change", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nChanges to this license can be made only by the copyright author with \nexplicit written consent.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\nIN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-3-clause-no-change.json", + "yaml": "bsd-3-clause-no-change.yml", + "html": "bsd-3-clause-no-change.html", + "license": "bsd-3-clause-no-change.LICENSE" + }, + { + "license_key": "bsd-3-clause-no-military", + "category": "Free Restricted", + "spdx_license_key": "BSD-3-Clause-No-Military-License", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsd-3-clause-no-military" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n 1. Redistribution of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n 2. Redistribution in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n 3. Neither the name of the copyright holder nor the names of its contributors\n may be used to endorse or promote products derived from this software without\n specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\nIN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\nOF THE POSSIBILITY OF SUCH DAMAGE.\n\nYOU ACKNOWLEDGE THAT THIS SOFTWARE IS NOT DESIGNED, LICENSED OR INTENDED FOR USE\nIN THE DESIGN, CONSTRUCTION, OPERATION OR MAINTENANCE OF ANY MILITARY FACILITY.", + "json": "bsd-3-clause-no-military.json", + "yaml": "bsd-3-clause-no-military.yml", + "html": "bsd-3-clause-no-military.html", + "license": "bsd-3-clause-no-military.LICENSE" + }, + { + "license_key": "bsd-3-clause-no-nuclear-warranty", + "category": "Free Restricted", + "spdx_license_key": "BSD-3-Clause-No-Nuclear-Warranty", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\nRedistribution of source code must retain the above copyright notice,\nthis list of conditions and the following disclaimer.\n\nRedistribution in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n\nNeither the name of Sun Microsystems, Inc. or the names of contributors\nmay be used to endorse or promote products derived from this software\nwithout specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED \"AS IS\", WITHOUT A WARRANTY OF ANY KIND. ALL\nEXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING\nANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\nPURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MICROSYSTEMS, INC.\n(\"SUN\") AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED\nBY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS\nSOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE\nLIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT,\nSPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED\nAND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR\nINABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nYou acknowledge that this software is not designed or intended for use\nin the design, construction, operation or maintenance of any nuclear\nfacility.", + "json": "bsd-3-clause-no-nuclear-warranty.json", + "yaml": "bsd-3-clause-no-nuclear-warranty.yml", + "html": "bsd-3-clause-no-nuclear-warranty.html", + "license": "bsd-3-clause-no-nuclear-warranty.LICENSE" + }, + { + "license_key": "bsd-3-clause-no-trademark", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-no-trademark", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n \n1. Redistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n \n2. Redistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n \n3. Neither the name of the copyright holder(s) nor the names of any contributors\nmay be used to endorse or promote products derived from this software without\nspecific prior written permission. No license is granted to the trademarks of\nthe copyright holders even if such marks are included in this software.\n \nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-3-clause-no-trademark.json", + "yaml": "bsd-3-clause-no-trademark.yml", + "html": "bsd-3-clause-no-trademark.html", + "license": "bsd-3-clause-no-trademark.LICENSE" + }, + { + "license_key": "bsd-3-clause-open-mpi", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-Open-MPI", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n- Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n- Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer listed\n in this license in the documentation and/or other materials\n provided with the distribution.\n\n- Neither the name of the copyright holders nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nThe copyright holders provide no reassurances that the source code\nprovided does not infringe any patent, copyright, or any other\nintellectual property rights of third parties. The copyright holders\ndisclaim any liability to any recipient for claims brought against\nrecipient by any third party for infringement of that parties\nintellectual property rights.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-3-clause-open-mpi.json", + "yaml": "bsd-3-clause-open-mpi.yml", + "html": "bsd-3-clause-open-mpi.html", + "license": "bsd-3-clause-open-mpi.LICENSE" + }, + { + "license_key": "bsd-3-clause-sun", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-sun", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n-Redistribution of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n-Redistribution in binary form must reproduce the above copyright notice, \n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\nNeither the name of Sun Microsystems, Inc. or the names of contributors may \nbe used to endorse or promote products derived from this software without \nspecific prior written permission.\n\nThis software is provided \"AS IS,\" without a warranty of any kind. ALL \nEXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING\nANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\nOR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MICROSYSTEMS, INC. (\"SUN\")\nAND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE\nAS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS\nDERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST \nREVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, \nINCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY \nOF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, \nEVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.", + "json": "bsd-3-clause-sun.json", + "yaml": "bsd-3-clause-sun.yml", + "html": "bsd-3-clause-sun.html", + "license": "bsd-3-clause-sun.LICENSE" + }, + { + "license_key": "bsd-4-clause-shortened", + "category": "Permissive", + "spdx_license_key": "BSD-4-Clause-Shortened", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that:\n\n(1) source code distributions retain the above copyright notice and this\nparagraph in its entirety,\n\n(2) distributions including binary code include the above copyright notice and\nthis paragraph in its entirety in the documentation or other materials provided\nwith the distribution, and\n\n(3) all advertising materials mentioning features or use of this software\ndisplay the following acknowledgement:\n\n\"This product includes software developed by the University of California,\nLawrence Berkeley Laboratory and its contributors.\"\n\nNeither the name of the University nor the names of its contributors may be used\nto endorse or promote products derived from this software without specific prior\nwritten permission.\n\nTHIS SOFTWARE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES,\nINCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE.", + "json": "bsd-4-clause-shortened.json", + "yaml": "bsd-4-clause-shortened.yml", + "html": "bsd-4-clause-shortened.html", + "license": "bsd-4-clause-shortened.LICENSE" + }, + { + "license_key": "bsd-ack", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-Attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n 1. Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\n 3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from this\n software without specific prior written permission.\n\n 4. Redistributions of any form whatsoever must retain the following\n acknowledgment: 'This product includes software developed by the\n \"Universidad de Palermo, Argentina\" (http://www.palermo.edu/).'\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-ack.json", + "yaml": "bsd-ack.yml", + "html": "bsd-ack.html", + "license": "bsd-ack.LICENSE" + }, + { + "license_key": "bsd-ack-carrot2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-ack-carrot2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n- Redistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\n- Redistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\n- Neither the name of the Carrot2 Project nor the names of its contributors\nmay be used to endorse or promote products derived from this software\nwithout specific prior written permission.\n\n- We kindly request that you include in the end-user documentation provided with\nthe redistribution and/or in the software itself an acknowledgement equivalent\nto the following: \"This product includes software developed by the Carrot2\nProject.\"\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-ack-carrot2.json", + "yaml": "bsd-ack-carrot2.yml", + "html": "bsd-ack-carrot2.html", + "license": "bsd-ack-carrot2.LICENSE" + }, + { + "license_key": "bsd-artwork", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-artwork", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This logo or a modified version may be used by anyone to refer to the \nproject, but does not indicate endorsement by the project.\n\nRedistribution and use in source (the SVG file) and binary forms\n(rendered PNG files etc.) of the image, with or without modification,\nare permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice\n and this list of conditions.\n \n The names of the contributors to the softwaremay not be used to endorse or\n promote products derived from this software without specific prior written permission.", + "json": "bsd-artwork.json", + "yaml": "bsd-artwork.yml", + "html": "bsd-artwork.html", + "license": "bsd-artwork.LICENSE" + }, + { + "license_key": "bsd-atmel", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-atmel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n- Redistributions of source code must retain the above copyright notice,\nthis list of conditions and the disclaimer below.\n\n- Author's name may not be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nDISCLAIMER: THIS SOFTWARE IS PROVIDED BY AUTHOR \"AS IS\" AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE\nDISCLAIMED. IN NO EVENT SHALL AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\nOR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-atmel.json", + "yaml": "bsd-atmel.yml", + "html": "bsd-atmel.html", + "license": "bsd-atmel.LICENSE" + }, + { + "license_key": "bsd-axis", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. Neither the name of the copyright holders nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nHOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\nIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-axis.json", + "yaml": "bsd-axis.yml", + "html": "bsd-axis.html", + "license": "bsd-axis.LICENSE" + }, + { + "license_key": "bsd-axis-nomod", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-axis-nomod", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer,\n without modification.\n\n2. Neither the name of the copyright holders nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND ITS CONTRIBUTORS\n``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nHOLDERS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\nIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-axis-nomod.json", + "yaml": "bsd-axis-nomod.yml", + "html": "bsd-axis-nomod.html", + "license": "bsd-axis-nomod.LICENSE" + }, + { + "license_key": "bsd-credit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-credit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nModification and redistribution in source and binary forms is permitted provided\nthat due credit is given to the author and the OpenBSD project (for instance by\nleaving this copyright notice intact).\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.", + "json": "bsd-credit.json", + "yaml": "bsd-credit.yml", + "html": "bsd-credit.html", + "license": "bsd-credit.LICENSE" + }, + { + "license_key": "bsd-dpt", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-dpt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source form, with or without modification, are\npermitted provided that redistributions of source code must retain the\nabove copyright notice, this list of conditions and the following\ndisclaimer.\n\nThis software is provided `as is' by Distributed Processing Technology\nand any express or implied warranties, including, but not limited to,\nthe implied warranties of merchantability and fitness for a particular\npurpose, are disclaimed. In no event shall Distributed Processing\nTechnology be liable for any direct, indirect, incidental, special,\nexemplary or consequential damages (including, but not limited to,\nprocurement of substitute goods or services; loss of use, data, or\nprofits; or business interruptions) however caused and on any theory of\nliability, whether in contract, strict liability, or tort (including\nnegligence or otherwise) arising in any way out of the use of this\ndriver software, even if advised of the possibility of such damage.", + "json": "bsd-dpt.json", + "yaml": "bsd-dpt.yml", + "html": "bsd-dpt.html", + "license": "bsd-dpt.LICENSE" + }, + { + "license_key": "bsd-export", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-export", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n1. Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n3. {Copyright holder} name may not be used to endorse or promote products\nderived from this software without specific prior written permission.\n\nThis Software, including technical data, may be subject to U.S. export\ncontrol laws, including the U.S. Export Administration Act and its\nassociated regulations, and may be subject to export or import\nregulations in other countries. You warrant that You will comply\nstrictly in all respects with all such regulations and acknowledge that\nyou have the responsibility to obtain licenses to export, re-export or\nimport the Software.\n\nTO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED \"AS IS\"\nAND WITH ALL FAULTS AND {Copyright holder} MAKES NO PROMISES, REPRESENTATIONS OR\nWARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH\nRESPECT TO THE SOFTWARE, INCLUDING ITS CONDITION, ITS CONFORMITY TO ANY\nREPRESENTATION OR DESCRIPTION, OR THE EXISTENCE OF ANY LATENT OR PATENT\nDEFECTS, AND {Copyright holder} SPECIFICALLY DISCLAIMS ALL IMPLIED (IF ANY)\nWARRANTIES OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A\nPARTICULAR PURPOSE, LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET\nENJOYMENT, QUIET POSSESSION OR CORRESPONDENCE TO DESCRIPTION. THE ENTIRE\nRISK ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE LIES WITH YOU.", + "json": "bsd-export.json", + "yaml": "bsd-export.yml", + "html": "bsd-export.html", + "license": "bsd-export.LICENSE" + }, + { + "license_key": "bsd-innosys", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-innosys", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n1. Redistributions of source code must retain this licence text\nwithout modification, this list of conditions, and the following\ndisclaimer. The following copyright notice must appear immediately at\nthe beginning of all source files:\n\n Copyright (C) InnoSys Incorporated. All Rights Reserved\n\n This file is available under a BSD-style copyright\n\n2. The name of InnoSys Incorporated may not be used to endorse or promote\nproducts derived from this software without specific prior written\npermission.\n\nTHIS SOFTWARE IS PROVIDED BY INNOSYS CORP. ``AS IS'' AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN\nNO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.", + "json": "bsd-innosys.json", + "yaml": "bsd-innosys.yml", + "html": "bsd-innosys.html", + "license": "bsd-innosys.LICENSE" + }, + { + "license_key": "bsd-intel", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\n* The name of Intel Corporation may not be used to endorse or promote products\nderived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL INTEL OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-intel.json", + "yaml": "bsd-intel.yml", + "html": "bsd-intel.html", + "license": "bsd-intel.LICENSE" + }, + { + "license_key": "bsd-mylex", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-mylex", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n1. Redistributions of source code must retain this LICENSE.FlashPoint\n file, without modification, this list of conditions, and the following\n disclaimer. The following copyright notice must appear immediately at\n the beginning of all source files:\n\n Copyright 1995-1996 by Mylex Corporation. All Rights Reserved\n\n This file is available under both the GNU General Public License\n and a BSD-style copyright; see LICENSE.FlashPoint for details.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\n3. The name of Mylex Corporation may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n\nTHIS SOFTWARE IS PROVIDED BY MYLEX CORP. ``AS IS'' AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN\nNO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.", + "json": "bsd-mylex.json", + "yaml": "bsd-mylex.yml", + "html": "bsd-mylex.html", + "license": "bsd-mylex.LICENSE" + }, + { + "license_key": "bsd-new", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause", + "other_spdx_license_keys": [ + "LicenseRef-scancode-libzip" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list\nof conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\nNeither the name of the ORGANIZATION nor the names of its contributors may be\nused to endorse or promote products derived from this software without specific\nprior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\nGOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF\nTHE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-new.json", + "yaml": "bsd-new.yml", + "html": "bsd-new.html", + "license": "bsd-new.LICENSE" + }, + { + "license_key": "bsd-new-derivative", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-new-derivative", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Because this is a derivative work, you must comply with the {\"sniffer.c\"}\n terms reproduced above.\n2. Redistributions of source code must retain the Tcpdump Group copyright\n notice at the top of this source file, this list of conditions and the\n following disclaimer.\n3. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n4. The names {\"tcpdump\"} or {\"libpcap\"} may not be used to endorse or promote\n products derived from this software without prior written permission.\n\nTHERE IS ABSOLUTELY NO WARRANTY FOR THIS PROGRAM.\nBECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\nREPAIR OR CORRECTION.\n\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\nOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.", + "json": "bsd-new-derivative.json", + "yaml": "bsd-new-derivative.yml", + "html": "bsd-new-derivative.html", + "license": "bsd-new-derivative.LICENSE" + }, + { + "license_key": "bsd-new-far-manager", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n3. The name of the authors may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\nIN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nEXCEPTION:\nFar Manager plugins that use only the following header files from this\ndistribution (none or any): farcolor.hpp, farkeys.hpp, plugin.hpp,\nfarcolorW.pas, farkeysW.pas and pluginW.pas; can be distributed under any other\npossible license with no implications from the above license on them.", + "json": "bsd-new-far-manager.json", + "yaml": "bsd-new-far-manager.yml", + "html": "bsd-new-far-manager.html", + "license": "bsd-new-far-manager.LICENSE" + }, + { + "license_key": "bsd-new-nomod", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-new-nomod", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list\nof conditions and the following disclaimer, without modification.\n\nRedistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\nNeither the name of the ORGANIZATION nor the names of its contributors may be\nused to endorse or promote products derived from this software without specific\nprior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\nGOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF\nTHE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-new-nomod.json", + "yaml": "bsd-new-nomod.yml", + "html": "bsd-new-nomod.html", + "license": "bsd-new-nomod.LICENSE" + }, + { + "license_key": "bsd-new-tcpdump", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-new-tcpdump", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that: (1) source code\n * distributions retain the above copyright notice and this paragraph\n * in its entirety, and (2) distributions including binary code include\n * the above copyright notice and this paragraph in its entirety in\n * the documentation or other materials provided with the distribution.\n * The name of author may not be used to endorse or\n * promote products derived from this software without specific prior\n * written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND\n * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT\n * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\n * FOR A PARTICULAR PURPOSE.", + "json": "bsd-new-tcpdump.json", + "yaml": "bsd-new-tcpdump.yml", + "html": "bsd-new-tcpdump.html", + "license": "bsd-new-tcpdump.LICENSE" + }, + { + "license_key": "bsd-no-disclaimer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-no-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions\n# are met:\n# 1. Redistributions of source code must retain the above copyright\n# notice and this list of conditions.\n# 2. Redistributions in binary form must reproduce the above copyright\n# notice and this list of conditions in the\n# documentation and/or other materials provided with the distribution.", + "json": "bsd-no-disclaimer.json", + "yaml": "bsd-no-disclaimer.yml", + "html": "bsd-no-disclaimer.html", + "license": "bsd-no-disclaimer.LICENSE" + }, + { + "license_key": "bsd-no-disclaimer-unmodified", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-no-disclaimer-unmodified", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice and this list of conditions, without modification.\n * 2. The name of the author may not be used to endorse or promote products\n * derived from this software without specific prior written permission.", + "json": "bsd-no-disclaimer-unmodified.json", + "yaml": "bsd-no-disclaimer-unmodified.yml", + "html": "bsd-no-disclaimer-unmodified.html", + "license": "bsd-no-disclaimer-unmodified.LICENSE" + }, + { + "license_key": "bsd-no-mod", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-bsd-no-mod", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms are permitted\nprovided that the following conditions are met:\n1. The materials contained herein are unmodified and are used\n unmodified.\n2. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following NO\n ''WARRANTY'' disclaimer below (''Disclaimer''), without\n modification.\n3. Redistributions in binary form must reproduce at minimum a\n disclaimer similar to the Disclaimer below and any redistribution\n must be conditioned upon including a substantially similar\n Disclaimer requirement for further binary redistribution.\n4. Neither the names of the above-listed copyright holders nor the\n names of any contributors may be used to endorse or promote\n product derived from this software without specific prior written\n permission.\n\nNO WARRANTY\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT,\nMERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\nIN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE\nFOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\nUSE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\nOF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.", + "json": "bsd-no-mod.json", + "yaml": "bsd-no-mod.yml", + "html": "bsd-no-mod.html", + "license": "bsd-no-mod.LICENSE" + }, + { + "license_key": "bsd-original", + "category": "Permissive", + "spdx_license_key": "BSD-4-Clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice,\nthis list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation\nand/or other materials provided with the distribution.\n\n3. All advertising materials mentioning features or use of this software\nmust display the following acknowledgement: This product includes software\ndeveloped by the .\n\n4. Neither the name of the nor the names of its contributors\nmay be used to endorse or promote products derived from this software\nwithout specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY ''AS IS'' AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO\nEVENT SHALL BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\nOR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-original.json", + "yaml": "bsd-original.yml", + "html": "bsd-original.html", + "license": "bsd-original.LICENSE" + }, + { + "license_key": "bsd-original-muscle", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-original-muscle", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by: \n David Corcoran \n http://www.linuxnet.com (MUSCLE)\n4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nChanges to this license can be made only by the copyright author with \nexplicit written consent.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\nIN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-original-muscle.json", + "yaml": "bsd-original-muscle.yml", + "html": "bsd-original-muscle.html", + "license": "bsd-original-muscle.LICENSE" + }, + { + "license_key": "bsd-original-uc", + "category": "Permissive", + "spdx_license_key": "BSD-4-Clause-UC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n 1. Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n 3. \n\n 4. Neither the name of the University nor the names of its contributors may\n be used to endorse or promote products derived from this software without\n specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nOn on July 22 1999, per notice reproduced below, the advertising clause (clause\n3) of this license was officially rescinded by the Director of the Office of\nTechnology Licensing of the University of California.\n\nThis applies only to BSD Unix files copyrighted by the Regents of the University\nof California under this license.\n\nFrom: ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change :\n\n\"July 22, 1999\n\nTo All Licensees, Distributors of Any Version of BSD:\n\nAs you know, certain of the Berkeley Software Distribution (\"BSD\") source\ncode files require that further distributions of products containing all or\nportions of the software, acknowledge within their advertising materials\nthat such products contain software developed by UC Berkeley and its\ncontributors.\n\nSpecifically, the provision reads:\n\n\" * 3. All advertising materials mentioning features or use of this software\n * must display the following acknowledgement:\n * This product includes software developed by the University of\n * California, Berkeley and its contributors.\"\n\nEffective immediately, licensees and distributors are no longer required to\ninclude the acknowledgement within advertising materials. Accordingly, the\nforegoing paragraph of those BSD Unix files containing it is hereby deleted\nin its entirety.\n\nWilliam Hoskins\nDirector, Office of Technology Licensing\nUniversity of California, Berkeley\"\n\nNote also that in many variants of this original BSD license, both occurrences\nof the phrase \"REGENTS AND CONTRIBUTORS\" is replaced in the disclaimer section\nby \"COPYRIGHT HOLDERS AND CONTRIBUTORS\".", + "json": "bsd-original-uc.json", + "yaml": "bsd-original-uc.yml", + "html": "bsd-original-uc.html", + "license": "bsd-original-uc.LICENSE" + }, + { + "license_key": "bsd-original-uc-1986", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-original-uc-1986", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms are permitted provided that\nthis notice is preserved and that due credit is given to the University of\nCalifornia Berkeley. The name of the University may not be used to endorse or\npromote products derived from this software without specific prior written\npermission. This software is provieded \"as is\" without express or implied\nwarranty", + "json": "bsd-original-uc-1986.json", + "yaml": "bsd-original-uc-1986.yml", + "html": "bsd-original-uc-1986.html", + "license": "bsd-original-uc-1986.LICENSE" + }, + { + "license_key": "bsd-original-uc-1990", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Redistribution and use in source and binary forms are permitted\nprovided that the above copyright notice and this paragraph are\nduplicated in all such forms and that any documentation,\nadvertising materials, and other materials related to such\ndistribution and use acknowledge that the software was developed\nby the University of California, Berkeley. The name of the\nUniversity may not be used to endorse or promote products derived\nfrom this software without specific prior written permission.\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.", + "json": "bsd-original-uc-1990.json", + "yaml": "bsd-original-uc-1990.yml", + "html": "bsd-original-uc-1990.html", + "license": "bsd-original-uc-1990.LICENSE" + }, + { + "license_key": "bsd-original-voices", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-original-voices", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "* Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. All advertising materials mentioning features or use of this software\n * must display the following acknowledgement:\n *\tThis product includes software developed by Bill Paul.\n * 4. Neither the name of the author nor the names of any co-contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD\n * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n * THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-original-voices.json", + "yaml": "bsd-original-voices.yml", + "html": "bsd-original-voices.html", + "license": "bsd-original-voices.LICENSE" + }, + { + "license_key": "bsd-plus-mod-notice", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-plus-mod-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names\n of any contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n\n* Modified source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-plus-mod-notice.json", + "yaml": "bsd-plus-mod-notice.yml", + "html": "bsd-plus-mod-notice.html", + "license": "bsd-plus-mod-notice.LICENSE" + }, + { + "license_key": "bsd-plus-patent", + "category": "Permissive", + "spdx_license_key": "BSD-2-Clause-Patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n1. Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n\nSubject to the terms and conditions of this license, each copyright\nholder and contributor hereby grants to those receiving rights under\nthis license a perpetual, worldwide, non-exclusive, no-charge, royalty-\nfree, irrevocable (except for failure to satisfy the conditions of this\nlicense) patent license to make, have made, use, offer to sell, sell,\nimport, and otherwise transfer this software, where such license applies\nonly to those patent claims, already acquired or hereafter acquired,\nlicensable by such copyright holder or contributor that are necessarily\ninfringed by:\n\n(a) their Contribution(s) (the licensed copyrights of copyright holders\nand non-copyrightable additions of contributors, in source or binary\nform) alone; or\n\n(b) combination of their Contribution(s) with the work of authorship to\nwhich such Contribution(s) was added by such copyright holder or\ncontributor, if, at the time the Contribution is added, such addition\ncauses such combination to be necessarily infringed. The patent license\nshall not apply to any other combinations which include the\nContribution.\n\nExcept as expressly stated above, no rights or licenses from any\ncopyright holder or contributor is granted under this license, whether\nexpressly, by implication, estoppel or otherwise.\n\nDISCLAIMER\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\nIS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nHOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-plus-patent.json", + "yaml": "bsd-plus-patent.yml", + "html": "bsd-plus-patent.html", + "license": "bsd-plus-patent.LICENSE" + }, + { + "license_key": "bsd-protection", + "category": "Copyleft", + "spdx_license_key": "BSD-Protection", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BSD Protection License\nFebruary 2002\n\nPreamble\n--------\n\nThe Berkeley Software Distribution (\"BSD\") license has proven very effective\nover the years at allowing for a wide spread of work throughout both\ncommercial and non-commercial products. For programmers whose primary\nintention is to improve the general quality of available software, it is\narguable that there is no better license than the BSD license, as it\npermits improvements to be used wherever they will help, without\nidealogical or metallic constraint.\n\nThis is of particular value to those who produce reference\nimplementations of proposed standards: The case of TCP/IP clearly\nillustrates that freely and universally available implementations leads\nthe rapid acceptance of standards -- often even being used instead of a\nde jure standard (eg, OSI network models).\n\nWith the rapid proliferation of software licensed under the GNU General\nPublic License, however, the continued success of this role is called\ninto question. Given that the inclusion of a few lines of \"GPL-tainted\"\nwork into a larger body of work will result in restricted distribution\n-- and given that further work will likely build upon the \"tainted\"\nportions, making them difficult to remove at a future date -- there are\ninevitable circumstances where authors would, in order to protect their\ngoal of providing for the widespread usage of their work, wish to guard\nagainst such \"GPL-taint\".\n\nIn addition, one can imagine that companies which operate by producing\nand selling (possibly closed-source) code would wish to protect\nthemselves against the rise of a GPL-licensed competitor. While under\nexisting licenses this would mean not releasing their code under any\nform of open license, if a license existed under which they could\nincorporate any improvements back into their own (commercial) products\nthen they might be far more willing to provide for non-closed distribution.\n\nFor the above reasons, we put forth this \"BSD Protection License\": A\nlicense designed to retain the freedom granted by the BSD license to use\nlicensed works in a wide variety of settings, both non-commercial and\ncommercial, while protecting the work from having future contributors\nrestrict that freedom.\n\nThe precise terms and conditions for copying, distribution, and\nmodification follow.\n\nBSD PROTECTION LICENSE\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION, AND MODIFICATION\n----------------------------------------------------------------\n\n0. Definitions.\n a) \"Program\", below, refers to any program or work distributed under\n the terms of this license.\n b) A \"work based on the Program\", below, refers to either the Program\n or any derivative work under copyright law.\n c) \"Modification\", below, refers to the act of creating derivative\n works.\n d) \"You\", below, refers to each licensee.\n\n1. Scope.\n This license governs the copying, distribution, and modification of\n the Program. Other activities are outside the scope of this\n license; The act of running the Program is not restricted, and the\n output from the Program is covered only if its contents constitute a\n work based on the Program.\n\n2. Verbatim copies.\n You may copy and distribute verbatim copies of the Program as you\n receive it, in any medium, provided that you conspicuously and\n appropriately publish on each copy an appropriate copyright notice;\n keep intact all the notices that refer to this License and to the\n absence of any warranty; and give any other recipients of the\n Program a copy of this License along with the Program.\n\n3. Modification and redistribution under closed license.\n You may modify your copy or copies of the Program, and distribute\n the resulting derivative works, provided that you meet the\n following conditions:\n a) The copyright notice and disclaimer on the Program must be\n reproduced and included in the source code, documentation, and/or\n other materials provided in a manner in which such notices are\n normally distributed.\n b) The derivative work must be clearly identified as such, in order\n that it may not be confused with the original work.\n c) The license under which the derivative work is distributed must\n expressly prohibit the distribution of further derivative works.\n\n4. Modification and redistribution under open license.\n You may modify your copy or copies of the Program, and distribute\n the resulting derivative works, provided that you meet the\n following conditions:\n a) The copyright notice and disclaimer on the Program must be\n reproduced and included in the source code, documentation, and/or\n other materials provided in a manner in which such notices are\n normally distributed.\n b) You must clearly indicate the nature and date of any changes made\n to the Program. The full details need not necessarily be\n included in the individual modified files, provided that each\n modified file is clearly marked as such and instructions are\n included on where the full details of the modifications may be\n found.\n c) You must cause any work that you distribute or publish, that in\n whole or in part contains or is derived from the Program or any\n part thereof, to be licensed as a whole at no charge to all third\n parties under the terms of this License.\n\n5. Implied acceptance.\n You may not copy or distribute the Program or any derivative works\n except as expressly provided under this license. Consequently, any\n such action will be taken as implied acceptance of the terms of this\n license.\n\n6. NO WARRANTY.\n THIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER, OR ANY OTHER\n PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED\n ABOVE, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\n INABILITY TO USE THE PROGRAM (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY\n OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT, EVEN\n IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGES.", + "json": "bsd-protection.json", + "yaml": "bsd-protection.yml", + "html": "bsd-protection.html", + "license": "bsd-protection.LICENSE" + }, + { + "license_key": "bsd-simplified", + "category": "Permissive", + "spdx_license_key": "BSD-2-Clause", + "other_spdx_license_keys": [ + "BSD-2-Clause-NetBSD", + "BSD-2" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list\nof conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-simplified.json", + "yaml": "bsd-simplified.yml", + "html": "bsd-simplified.html", + "license": "bsd-simplified.LICENSE" + }, + { + "license_key": "bsd-simplified-darwin", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-simplified-darwin", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software is not subject to any export provision of the United States\nDepartment of Commerce, and may be exported to any country or planet.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.", + "json": "bsd-simplified-darwin.json", + "yaml": "bsd-simplified-darwin.yml", + "html": "bsd-simplified-darwin.html", + "license": "bsd-simplified-darwin.LICENSE" + }, + { + "license_key": "bsd-simplified-intel", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-simplified-intel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that: (1) source code distributions retain the above\ncopyright notice and this paragraph in its entirety, (2) distributions including\nbinary code include the above copyright notice and this paragraph in its\nentirety in the documentation or other materials provided with the distribution\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.", + "json": "bsd-simplified-intel.json", + "yaml": "bsd-simplified-intel.yml", + "html": "bsd-simplified-intel.html", + "license": "bsd-simplified-intel.LICENSE" + }, + { + "license_key": "bsd-simplified-source", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-simplified-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that redistributions of source\ncode retain the above copyright notice and this comment without\nmodification.", + "json": "bsd-simplified-source.json", + "yaml": "bsd-simplified-source.yml", + "html": "bsd-simplified-source.html", + "license": "bsd-simplified-source.LICENSE" + }, + { + "license_key": "bsd-source-code", + "category": "Permissive", + "spdx_license_key": "BSD-Source-Code", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n- Redistributions of source code must retain the above copyright notice,\nthis list of conditions and the following disclaimer.\n\n- Neither name of the copyright holders nor the names of their contributors\nmay be used to endorse or promote products derived from this software\nwithout specific prior written permission.\n\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS\nIS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-source-code.json", + "yaml": "bsd-source-code.yml", + "html": "bsd-source-code.html", + "license": "bsd-source-code.LICENSE" + }, + { + "license_key": "bsd-top", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-top", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions, and the following disclaimer,\n without modification, immediately at the beginning of the file.\n2. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.", + "json": "bsd-top.json", + "yaml": "bsd-top.yml", + "html": "bsd-top.html", + "license": "bsd-top.LICENSE" + }, + { + "license_key": "bsd-top-gpl-addition", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-top-gpl-addition", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions, and the following disclaimer,\n * without modification, immediately at the beginning of the file.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. The name of the author may not be used to endorse or promote products\n * derived from this software without specific prior written permission.\n *\n * Where this Software is combined with software released under the terms of \n * the GNU General Public License (\"GPL\") and the terms of the GPL would require the \n * combined work to also be released under the terms of the GPL, the terms\n * and conditions of this License will apply in addition to those of the\n * GPL with the exception of any terms or conditions of this License that\n * conflict with, or are expressly prohibited by, the GPL.\n *\n * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR\n * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.", + "json": "bsd-top-gpl-addition.json", + "yaml": "bsd-top-gpl-addition.yml", + "html": "bsd-top-gpl-addition.html", + "license": "bsd-top-gpl-addition.LICENSE" + }, + { + "license_key": "bsd-unchanged", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-unchanged", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer in this\n position and unchanged.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\nTHE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-unchanged.json", + "yaml": "bsd-unchanged.yml", + "html": "bsd-unchanged.html", + "license": "bsd-unchanged.LICENSE" + }, + { + "license_key": "bsd-unmodified", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-unmodified", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\n notice unmodified, this list of conditions, and the following\n disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\nIN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-unmodified.json", + "yaml": "bsd-unmodified.yml", + "html": "bsd-unmodified.html", + "license": "bsd-unmodified.LICENSE" + }, + { + "license_key": "bsd-x11", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-x11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\nRedistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following\ndisclaimer in the documentation and/or other materials provided\nwith the distribution.\n\nNeither the name of the copyright owner nor the names of its\ncontributors may be used to endorse or promote products derived\nfrom this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT\nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\nIF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bsd-x11.json", + "yaml": "bsd-x11.yml", + "html": "bsd-x11.html", + "license": "bsd-x11.LICENSE" + }, + { + "license_key": "bsd-zero", + "category": "Permissive", + "spdx_license_key": "0BSD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "bsd-zero.json", + "yaml": "bsd-zero.yml", + "html": "bsd-zero.html", + "license": "bsd-zero.LICENSE" + }, + { + "license_key": "bsl-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-bsl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Business Source License 1.0\n\nLicensor: MariaDB Corporation Ab\n\nSoftware: MariaDB MaxScale\u2122 v.2.0. The Software is \u00a9 2016 MariaDB Corporation Ab\n\nUse Limitation: Usage of the software is free when your application uses the Software with a total of less than three database server instances for production purposes.\n\nChange Date: 2019-01-01\n\nChange License: Version 2 or later of the GNU General Public License as published by the Free Software Foundation.\n\nFor information about alternative licensing arrangements for the Software, please visit: https://mariadb.com/products/mariadb-enterprise\n\n \n\nYou are granted limited license to the Software under this Business Source License. Please read this Business Source License carefully, particularly the Use Limitation set forth above. \n\nSubject to the Use Limitation, Licensor grants you a non-exclusive, worldwide (subject to applicable laws) license to copy, modify, display, use, create derivative works, and redistribute the Software until the Change Date. If your use of the Software exceeds, or will exceed, the foregoing limitations you MUST obtain alternative licensing terms for the Software directly from Licensor, its affiliated entities, or authorized resellers. For the avoidance of doubt, prior to the Change Date, there is no Use Limitations for non-production purposes.\n\nAfter the Change Date, this Business Source License will convert to the Change License and your use of the Software, including modified versions of the Software, will be governed by such Change License.\n\nAll copies of original and modified Software, and derivative works of the Software, are subject to this Business Source License. This Business Source License applies separately for each version of the Software and the Change Date will vary for each version of the Software released by Licensor.\n\nYou must conspicuously display this Business Source License on each original or modified copy of the Software. If you receive the Software in original or modified form from a third party, the restrictions set forth in this Business Source License apply to your use of such Software.\n\nAny use of the Software in violation of this Business Source License will automatically terminate your rights under this Business Source License for the current and all future versions of the Software.\n\nYou may not use the marks or logos of Licensor or its affiliates for commercial purposes without prior written consent from Licensor.\n\nTO THE EXTENT PERMITTED BY APPLICABLE LAW, THE SOFTWARE AND ALL SERVICES PROVIDED BY LICENSOR OR ITS AFFILIATES UNDER OR IN CONNECTION WITH WITH THIS BUSINESS SOURCE LICENSE ARE PROVIDED ON AN \"AS IS\" AND \"AS AVAILABLE\" BASIS. YOU EXPRESSLY WAIVE ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, TITLE, SYSTEM INTEGRATION, AND ACCURACY OF INFORMATIONAL CONTENT.", + "json": "bsl-1.0.json", + "yaml": "bsl-1.0.yml", + "html": "bsl-1.0.html", + "license": "bsl-1.0.LICENSE" + }, + { + "license_key": "bsl-1.1", + "category": "Source-available", + "spdx_license_key": "BUSL-1.1", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsl-1.1" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Business Source License 1.1\n\nLicense text copyright \u00a9 2017 MariaDB Corporation Ab, All Rights Reserved.\n\"Business Source License\" is a trademark of MariaDB Corporation Ab.\n\nTerms\n\nThe Licensor hereby grants you the right to copy, modify, create derivative\nworks, redistribute, and make non-production use of the Licensed Work. The\nLicensor may make an Additional Use Grant, above, permitting limited production\nuse.\n\nEffective on the Change Date, or the fourth anniversary of the first publicly\navailable distribution of a specific version of the Licensed Work under this\nLicense, whichever comes first, the Licensor hereby grants you rights under the\nterms of the Change License, and the rights granted in the paragraph above\nterminate.\n\nIf your use of the Licensed Work does not comply with the requirements currently\nin effect as described in this License, you must purchase a commercial license\nfrom the Licensor, its affiliated entities, or authorized resellers, or you must\nrefrain from using the Licensed Work.\n\nAll copies of the original and modified Licensed Work, and derivative works of\nthe Licensed Work, are subject to this License. This License applies separately\nfor each version of the Licensed Work and the Change Date may vary for each\nversion of the Licensed Work released by Licensor.\n\nYou must conspicuously display this License on each original or modified copy of\nthe Licensed Work. If you receive the Licensed Work in original or modified form\nfrom a third party, the terms and conditions set forth in this License apply to\nyour use of that work.\n\nAny use of the Licensed Work in violation of this License will automatically\nterminate your rights under this License for the current and all other versions\nof the Licensed Work.\n\nThis License does not grant you any right in any trademark or logo of Licensor\nor its affiliates (provided that you may use a trademark or logo of Licensor as\nexpressly required by this License).\n\nTO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON AN\n\"AS IS\" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS\nOR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND TITLE.MariaDB hereby\ngrants you permission to use this License\u2019s text to license your works, and to\nrefer to it using the trademark \"Business Source License\", as long as you comply\nwith the Covenants of Licensor below.\n\nCovenants of Licensor\n\nIn consideration of the right to use this License\u2019s text and the \"Business\nSource License\" name and trademark, Licensor covenants to MariaDB, and to all\nother recipients of the licensed work to be provided by Licensor:\n\n 1. To specify as the Change License the GPL Version 2.0 or any later\n version, or a license that is compatible with GPL Version 2.0 or a later\n version, where \"compatible\" means that software provided under the Change\n License can be included in a program with software provided under GPL\n Version 2.0 or a later version. Licensor may specify additional Change\n Licenses without limitation.\n\n 2. To either: (a) specify an additional grant of rights to use that does not\n impose any additional restriction on the right granted in this License, as\n the Additional Use Grant; or (b) insert the text \"None\".\n\n 3. To specify a Change Date.\n\n 4. Not to modify this License in any other way.\n\nNotice\n\nThe Business Source License (this document, or the \"License\") is not an Open\nSource license. However, the Licensed Work will eventually be made available\nunder an Open Source License, as stated in this License.", + "json": "bsl-1.1.json", + "yaml": "bsl-1.1.yml", + "html": "bsl-1.1.html", + "license": "bsl-1.1.LICENSE" + }, + { + "license_key": "bsla", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms are permitted\nprovided that the above copyright notice and this paragraph are\nduplicated in all such forms and that any documentation,\nadvertising materials, and other materials related to such\ndistribution and use acknowledge that the software was developed\nby the University of California, Berkeley. The name of the\nUniversity may not be used to endorse or promote products derived\nfrom this software without specific prior written permission.\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.", + "json": "bsla.json", + "yaml": "bsla.yml", + "html": "bsla.html", + "license": "bsla.LICENSE" + }, + { + "license_key": "bsla-no-advert", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsla-no-advert", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms are permitted\nprovided that the above copyright notice and this paragraph are\nduplicated in all such forms and that any documentation,\nand other materials related to such\ndistribution and use acknowledge that the software was developed\nby the University of California, Berkeley. The name of the\nUniversity may not be used to endorse or promote products derived\nfrom this software without specific prior written permission.\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.", + "json": "bsla-no-advert.json", + "yaml": "bsla-no-advert.yml", + "html": "bsla-no-advert.html", + "license": "bsla-no-advert.LICENSE" + }, + { + "license_key": "bugsense-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bugsense-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SDK LICENSE AGREEMENT\nInformation\nLast Updated: September 25, 2013\nYOU SHOULD READ THIS AGREEMENT CAREFULLY, AS IT CONSTITUTES A BINDING CONTRACT BETWEEN YOU AND BUGSENSE.\n\nBy downloading, installing, accessing, or otherwise copying or using all or any portion of the BugSense SDK, (i) you accept this SDK License Agreement (\"Agreement\") on behalf of the entity for which you are authorized to act (e.g., an employer) and acknowledge that such entity is legally bound by this Agreement or, if there is no such entity for which you are authorized to act, you accept this Agreement on behalf of yourself as an individual and acknowledge that you are legally bound by this Agreement, and (ii) you represent and warrant that you have the right, power and authority to act on behalf of and bind such entity (if any) and yourself. Also, to enter into this Agreement, and thereby use the BugSense SDK, you as an individual must be at least 18 years old. Accordingly, you represent and warrant that you are at least 18 years old.\n\nIn this Agreement, \"BugSense,\" \"we,\" \"us,\" and \"our\" refers to BugSense, Inc., a Delaware corporation, and \"you\" and \"your\" refer to the entity on whose behalf you are entering into this Agreement or, if there is no such entity, you as an individual.\n\nIF YOU DO NOT AGREE TO THE TERMS CONTAINED IN THIS AGREEMENT, OR IF YOU DO NOT HAVE THE RIGHT, POWER AND AUTHORITY TO ACT ON BEHALF OF AND BIND SUCH ENTITY OR YOURSELF AS AN INDIVIDUAL (IF THERE IS NO SUCH ENTITY), DO NOT DOWNLOAD, INSTALL, ACCESS OR OTHERWISE COPY OR USE ALL OR ANY PORTION OF THE BUGSENSE SDK. THE BUGSENSE SDK IS BEING LICENSED AND NOT SOLD TO YOU. BUGSENSE PERMITS YOU TO DOWNLOAD, INSTALL, ACCESS, OR OTHERWISE COPY OR USE THE BUGSENSE SDK (INCLUDING THE FUNCTIONALITY OR FEATURES THEREOF) ONLY IN ACCORDANCE WITH THIS AGREEMENT.\n\n1.\tDefinitions.\nCapitalized terms not otherwise defined in the text can be found in Exhibit A.\n\n2.\tChanges to Agreement.\nWe reserve the right to update or otherwise make changes to this Agreement from time to time on at least thirty (30) days\u2019 notice, which notice we will provide to you by any reasonable means, including without limitation by posting the revised version of this Agreement on the website located at www.bugsense.com (or such other website as we may designate). If you object to the revised version of this Agreement, you will within such thirty (30) day period notify us of your objection and, if you so notify us, the revised version will not apply to you. Instead, effective at the end of such thirty (30) day period, your existing Agreement will terminate; you will cease all access to and use of the BugSense SDK; and we will have no obligation to further provide the BugSense SDK to you. If you do not notify us of your objection during the thirty (30) day period, your continued access to and use of the BugSense SDK after the effective date of such revised version of this Agreement will be deemed your acceptance of such revised version; however, changes to this Agreement will not apply to any dispute between you and us based on a claim filed before the effective date of the changes. You can determine when this Agreement was last revised by referring to the \"LAST UPDATED\" or similar legend at the top of this Agreement.\n\n3.\tLicense.\nSubject to and conditioned on compliance with the terms and conditions of this Agreement, including without limitation compliance with the obligations regarding the End User Requirements (defined below), BugSense hereby grants you a nonexclusive, limited, non-transferable, revocable license (without the right to sublicense except as expressly permitted by this Section) to (i) install, use, and copy the BugSense SDK for the purpose of debugging, monitoring, developing and operating your User App and (ii) include the BugSense SDK in your User App and distribute to End Users (directly or indirectly in accordance with your regular distribution channels for the User App) the BugSense SDK as contained within your User App. For each distribution and copy of your User App that contains the BugSense SDK, you will require the applicable End User to enter into a legally binding license agreement with you that, at a minimum, complies with the following (such criteria, the \"End User Requirements\"): (a) limits the license grant to use of the User App by the End User on the applicable mobile device(s) on a specified mobile platform; (b) disclaims all warranties by and on behalf of and limits all liabilities of BugSense; (c) prohibits decompilation and other reverse engineering of the BugSense SDK; (d) provides that you will protect the privacy and legal rights of End Users under all applicable laws and regulations, which includes communicating a legally adequate privacy notice; (e) notifies End Users that certain information will be made available to you, BugSense and other entities and that additional charges (e.g., data usage charges) may be incurred by End Users (e.g., in the transmission of such information) by their mobile service providers; (f) obtains sufficient authorization from End Users to transfer such information to you, BugSense and other entities and to permit the storage and processing of such information; and (g) otherwise obtains and maintains any required consents from End Users to allow BugSense (including its service providers) to provide or have provided products and services to you, including without limitation consent for you, BugSense and other entities to access, monitor, use and disclose End User data. Except as required by Section 4 below, in the license agreement with End Users (and notwithstanding anything to the contrary in this Section), you will not refer to BugSense by name or with other identifying information; instead, you will address the End User Requirements by referring to your \"suppliers,\" \"licensors\" and \"service providers\" (or using similar words that refer to BugSense).\n\n4.\tOwnership.\nBugSense and/or its suppliers, licensors and service providers own all worldwide right, title and interest in and to the BugSense SDK, including all worldwide patent rights; copyright rights (including those with respect to computer software, software design, software code, software architecture, programming tools, graphical user interfaces, applications programming interfaces, reports, dashboard, business rules, use cases, screens, alerts, notifications, drawings, specifications and databases); trade secrets and other rights with respect to confidential or proprietary information; know-how; other rights with respect to inventions, discoveries, ideas, improvements, techniques, formulae, algorithms, processes, schematics, testing procedures, technical information and other technology; and any other intellectual property and proprietary rights, whether or not subject to registration; and all rights under any license or other arrangement with respect to the foregoing. Except as expressly stated in this Agreement, BugSense does not grant you any license or other rights under or with respect to any intellectual property rights in the BugSense SDK; all right, title, and interest in and to the BugSense SDK not expressly granted in this Agreement remain with BugSense and/or its suppliers, licensors and service providers; and no license or other rights with respect to the BugSense SDK or related intellectual property rights shall be implied. You may not remove or obscure any copyright, trademark, confidentiality, or any other intellectual property or proprietary rights notices from the BugSense SDK. \"BugSense\" and related trademarks and service marks (including related graphics and logos) and trade names used on or in the BugSense SDK are the trademarks of BugSense, and you may not use, or authorize the use of, such trademarks, service marks or trade names without our express written permission (whether in connection with any products or services or otherwise). Other trademarks, service marks, and trade names that may appear on or in the BugSense SDK are the property of their respective owners. Except as expressly set forth in this Agreement, we retain all rights to our trademarks and service marks.\n\n5.\tAdditional Obligations and Restrictions.\nYou will at all times access and use the BugSense SDK only in accordance with this Agreement and only in accordance with all applicable laws and regulations. In all circumstances, as a condition to your access to and use of the Software, you agree that you will not access or use the BugSense SDK for any purpose that is unlawful or in any manner which could damage, disable, overburden or impair the operation of the Software or interfere with any other party\u2019s use of the BugSense SDK. BugSense may take whatever steps we believe are appropriate, at our sole discretion, to detect and prevent any such activities. Further, BugSense may take whatever steps we believe are appropriate, at our sole discretion, to enforce or verify compliance with any part of this Agreement (including without limitation our right to pursue or cooperate with any legal process relating to your use of the BugSense SDK or any third party claim that your use of the BugSense SDK is unlawful or infringes such third party\u2019s rights).\nExcept as expressly permitted in this Agreement, you may not (a) create any derivative works of or otherwise modify, or decompile or otherwise reverse engineer, all or any portion of the BugSense SDK (except that you may modify portions of the BugSense SDK provided to you in source code form in accordance with, and to the extent instructions to modify such portions are set forth in, the Documentation); or (b) remove, circumvent, disable, damage or otherwise interfere with any security features of the BugSense SDK.\nYou agree not to use the BugSense SDK to transmit any protected health data, as defined in the U.S. Health Insurance Portability and Accountability Act of 1996 (\"HIPAA\") as amended by the U.S. Health Information Technology for Economic and Clinical Health Act, including the HIPAA omnibus final rule.\nIf you fail to comply with any of the terms and conditions of this Agreement, your right to use the BugSense SDK automatically terminates. Further, we reserve the right to deny you access to and use of the BugSense SDK if you fail to comply with such terms and condition or if you are the subject of complaints by others.\n\n6.\tFeedback.\nIf you provide any information, sample data, event types, tags, comments, or other content related to the BugSense SDK or your use of the BugSense SDK (your\"Feedback\") to BugSense, you hereby grant to BugSense a perpetual, irrevocable, worldwide, royalty free license to use, make, have made, offer for sale, sell, copy, distribute, perform, display, transmit, create derivative works of, and otherwise exploit such Feedback, and to grant to others rights to do any of the foregoing.\n\n7.\tOpen Source.\nThe BugSense SDK includes open source components, which are licensed for use and distribution by us under applicable open source licenses. Use of these open source components is governed by and subject to the terms and conditions of the applicable open source license.\n\n8.\tFeedback.\nIf you post any information, sample data, event types, tags, comments, or other content (your \"Feedback\") to the Site or through the Services, or otherwise provide any Feedback to BugSense, you hereby grant to BugSense a perpetual, irrevocable, world-wide, royalty free license to use, make, have made, offer for sale, sell, copy, distribute, perform, display, transmit, create derivative works of, and otherwise exploit such Feedback, and to grant to others rights to do any of the foregoing.\n\n9.\tOpen Source.\nThe Software includes open source components, which are licensed for use and distribution by us under applicable open source licenses. Use of these open source components is governed by and subject to the terms and conditions of the applicable open source license.\n\n10.\tInformation Processing.\nYou are responsible for how content is submitted and the security of such transmission. Although, through the BugSense SDK, BugSense may permit submission of free form information into BugSense\u2019s platform, potentially including personal information of your customers, you agree not to transmit any personal information to the BugSense platform through the BugSense SDK, as personal information may be defined by applicable law due to the data type, use or location. For this situation, BugSense is acting as a service provider to you and will handle any personal information only on your instructions.\n\n11.\tWarranty Disclaimer.\nBUGSENSE AND ITS AFFILIATES, AND THEIR SUPPLIERS, LICENSORS AND SERVICE PROVIDERS, PROVIDE THE BUGSENSE SDK ASIS AND EXPRESSLY DISCLAIM ANY AND ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT ANY QUIET ENJOYMENT AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. BUGSENSE DOES NOT WARRANT THAT THE BUGSENSE SDK WILL BE ERROR-FREE, NOR DOES BUGSENSE PROVIDE ANY WARRANTIES AS TO THE ACCURACY OR COMPLETENESS OF THE BUGSENSE SDK. YOU AGREE THAT, AS BETWEEN YOU AND BUGSENSE, YOU ARE RESPONSIBLE FOR THE ACCURACY AND QUALITY OF THE DATA PROVIDED BY YOU OR YOUR END USERS TO BUGSENSE AND ITS AFFILIATES AND THEIR SUPPLIERS, LICENSORS AND SERVICE PROVIDERS. BECAUSE THIS DISCLAIMER OF WARRANTY MAY NOT BE VALID IN SOME STATES OR JURISDICTIONS, THE ABOVE DISCLAIMER MAY NOT APPLY TO YOU.\n\n12.\tLimitation of Liability.\nBUGSENSE AND ITS AFFILIATES, AND THEIR SUPPLIERS, LICENSORS AND SERVICE PROVIDERS, PROVIDE THE SITE, SERVICES AND SOFTWARE AS-IS AND EXPRESSLY DISCLAIM ANY AND ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT ANY QUIET ENJOYMENT AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. BUGSENSE DOES NOT WARRANT THAT THE SITE, SERVICES OR SOFTWARE WILL BE ERROR-FREE, NOR DOES BUGSENSE PROVIDE ANY WARRANTIES AS TO THE ACCURACY OR COMPLETENESS OF THE SITE, SERVICES OR SOFTWARE, OR THE INFORMATION PROVIDED ON THE SITE OR BY THE SERVICES. YOU AGREE THAT, AS BETWEEN YOU AND BUGSENSE, YOU ARE RESPONSIBLE FOR THE ACCURACY AND QUALITY OF THE DATA PROVIDED BY YOU OR YOUR END USERS TO BUGSENSE AND ITS AFFILIATES AND THEIR SUPPLIERS, LICENSORS AND SERVICE PROVIDERS. BECAUSE THIS DISCLAIMER OF WARRANTY MAY NOT BE VALID IN SOME STATES OR JURISDICTIONS, THE ABOVE DISCLAIMER MAY NOT APPLY TO YOU.\n\n13.\tLimitation of Liability.\nTO THE EXTENT PERMITTED BY APPLICABLE LAW, BUGSENSE\u2019S TOTAL CUMULATIVE LIABILITY TO YOU, FROM ALL CAUSES OF ACTION AND BASED ON ANY THEORIES OF LIABILITY, WILL BE LIMITED TO AND WILL NOT EXCEED THE GREATER OF (i) ONE HUNDRED DOLLARS ($100) AND (ii) THE AMOUNTS PAID BY YOU TO BUGSENSE IN THE TWELVE MONTHS PRIOR TO THE EVENT GIVING RISE TO SUCH LIABILITY. IN NO EVENT WILL BUGSENSE OR ANY OF ITS AFFILIATES OR THEIR SUPPLIERS, LICENSORS OR SERVICE PROVIDERS (OR THE RESPECTIVE OFFICERS, DIRECTORS, EMPLOYEES, AGENTS AND PARTNERS OF THE FOREGOING) (COLLECTIVELY, THE \"BUGSENSE ENTITIES\") BE LIABLE TO YOU FOR ANY SPECIAL, INDIRECT, INCIDENTAL, CONSEQUENTIAL OR PUNITIVE DAMAGES (OR FOR ANY LOSS OF USE, DATA OR PROFITS OR BUSINESS INTERRUPTION) ARISING OUT OF OR OTHERWISE RELATING TO THIS AGREEMENT OR THE ACCESS TO OR USE OF THE BUGSENSE SDK, WHETHER SUCH LIABILITY ARISES FROM CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, INDEMNIFICATION, OR OTHERWISE, AND WHETHER OR NOT THE BUGSENSE ENTITIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGE. YOU AGREE THAT THESE LIMITATIONS WILL SURVIVE AND APPLY EVEN IF ANY REMEDY IS FOUND TO HAVE FAILED OF ITS ESSENTIAL PURPOSE. IN ADDITION, AND WITHOUT LIMITING THE FOREGOING, THE BUGSENSE ENTITIES WILL HAVE NO LIABILITY OR RESPONSIBILITY FOR ANY LOSS OF USE, DATA OR PROFITS OR BUSINESS INTERRUPTION RESULTING FROM THE TERMINATION OF RIGHTS GRANTED IN THIS AGREEMENT AND ANY ASSOCIATED CESSATION OF THE FUNCTIONS OF THE BUGSENSE SDK. BECAUSE SOME STATES OR JURISDICTIONS DO NOT ALLOW LIMITATION OR EXCLUSION OF CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU. BugSense is acting on behalf of its affiliates and their licensors, suppliers and service providers for the purpose of disclaiming, excluding and limiting obligations, warranties and liabilities, but in no other respects and for no other purposes.\n\n14.\tExport.\nThe BugSense Materials, or any feature or portion thereof, may not be available for use in all jurisdictions, and BugSense makes no representation that any of the foregoing is appropriate or available for use in any particular jurisdiction. To the extent you choose to access and use the BugSense Materials, you do so at your own initiative and at your own risk, and you are responsible for complying with all applicable laws and regulations.\n\n15.\tExport.\nYour access to and use of the BugSense SDK are subject to the customs and export control laws and regulations of the United States and may also be subject to the customs and export laws and regulations of other countries. You will comply fully with all applicable customs and export control laws and regulations of the United States and any other country where you access or use any of the BugSense SDK. You certify that you are not on any of the relevant U.S. Government Lists of prohibited persons, including but not limited to the U.S. Treasury Department\u2019s List of Specially Designated Nationals, and the U.S. Commerce Department\u2019s List of Denied Persons or Entity List. You further certify that you will not export, re-export, ship, transfer or otherwise use the BugSense SDK in any country subject to an embargo or other sanction by the United States, including without limitation Iran, Syria, Cuba, Sudan and North Korea, and that you will not use the BugSense SDK for any purpose prohibited by U.S. laws or for any nuclear, chemical, missile or biological weapons related end uses.\n\n16.\tAnti-Bribery/Foreign Corrupt Practices Act.\nYou acknowledge that you are familiar with and understand the provisions of the U.S. Foreign Corrupt Practices Act (\"FCPA\") and the U.K. Bribery Act of 2010 (\"UKBA\") (and any other similar laws in other jurisdictions (collectively, \"Anti-Bribery Laws\") and you agree to comply with their terms as well as any provisions of related local law and Splunk Inc.\u2019s corporate policy and procedures related thereto, which policy and procedures we will make available to you upon your written request. You further understand the provisions relating to the Anti-Bribery Laws\u2019 prohibitions regarding the payment or giving of anything of value, either directly or indirectly, to an official of a foreign government or political party for the purpose of influencing an act or decision in his or her official capacity or inducing the official to use his or her party\u2019s influence with that government, in each case to obtain or retain business or otherwise gain an advantage. You are also aware of the UKBA\u2019s prohibition relating to providing things of value to any person, not only foreign officials, with the intent to induce such party to not act with good faith or impartiality or to abuse a position of trust. You, including but not limited to your officers, directors, employees, agents or subsidiaries (if any), agree not to violate or knowingly let anyone violate the Anti-Bribery Laws. Upon our request, you agree to provide us with written certifications of your Anti-Bribery Laws compliance and assist us with an investigation into possible wrongdoing if we have reason to believe violations of the Anti-Bribery Laws have occurred in connection with this Agreement.\n\n17.\tFees.\nTo the extent you have agreed to pay specified fees to BugSense pursuant to a separate order or other arrangement with BugSense, you may access and use the BugSense SDK only so long as you are current in your payment obligations.\n\n18.\tNo Support.\nBugSense has no obligation to provide maintenance or support of the BugSense SDK.\n\n19.\tTermination by You.\nYou may terminate this Agreement at any time and for any or no reason by written notice to BugSense. If you terminate this Agreement, you are not entitled to receive (and BugSense has no obligation to provide) any refund of or credit for any fees paid prior to such termination.\n\n20.\tTermination by BugSense.\nWe may terminate this Agreement by written notice to you at any time if we determine that such action is appropriate\u2014for example, to (i) prevent errors or any other harm with respect to the BugSense SDK; (ii) respond to your breach of this Agreement; (iii) mitigate or otherwise limit our damages or our liability; or (iv) respond to applicable law or regulation or any court or governing agency order. Further, we may terminate this Agreement by written notice to you at any time if (a) you fail to make payments to BugSense when due; or (b) you otherwise access or use the BugSense SDK in violation of this Agreement or you otherwise fail to comply with this Agreement.\n\n21.\tEffect of Termination.\nUpon any termination of this Agreement: (i) you will immediately cease access to and use of the BugSense SDK; (ii) all license and other rights granted to you under this Agreement will immediately terminate; (iii) you will promptly return or, if instructed by BugSense, destroy all copies of the BugSense SDK in your possession or control; and (iv) except as expressly set forth in Section 2 of this Agreement, you will not be entitled to receive (and BugSense has no obligation to provide) any refund of or credit for any fees paid prior to such termination. In addition, Sections 4, 6, 8-13, and 17-21 will survive any termination of this Agreement (regardless of the basis for termination).\n\n22.\tIndemnity.\nYou will defend, indemnify and hold harmless each of the BugSense Entities from and against any and all third party claims, damages, losses, liabilities, demands, costs and expenses (including reasonable attorneys\u2019 fees and costs) relating to or arising, directly or indirectly, in whole or in part, from:\no\tYour use of the BugSense SDK;\no\tAny breach or violation by you of this Agreement or of any applicable law;\no\tAny breach or violation by you of this Agreement or of any applicable law;\no\tAny action taken by BugSense as part of its investigation of a suspected violation of this Agreement by you, or as a result of our finding or decision that such violation has occurred; or\no\tYour violation of any rights of any third party, including without limitation in connection with a dispute between you and another customer of BugSense.\nWe reserve the right to assume, at our sole expense, the exclusive defense and control of any such claim or action and all negotiations for settlement or compromise, and you agree to fully cooperate with us in (and, upon our request, tender to us) the defense of any such claim, action, settlement, or compromise negotiations, as requested by us. In no event will you settle any claim or action without our prior written approval.\nYou agree not to sue any of the BugSense Entities as a result of its decision to remove or refuse to process any information or content, to warn you, to suspend or terminate your access to the BugSense SDK, or to take any other action during the investigation of a suspected violation or as a result of BugSense\u2019s conclusion that a violation of this Agreement has occurred.\n\n23.\tSeverability.\nUnless otherwise provided herein, all rights and remedies, whether conferred hereunder or by any other instrument or law, will be cumulative and may be exercised singularly or concurrently. The failure by either party to enforce any provisions of this Agreement will not constitute a waiver of any other right hereunder or of any subsequent enforcement of that or any other provisions. The terms and conditions stated herein are declared to be severable. If a court of competent jurisdiction holds any provision of this Agreement invalid or unenforceable, the remaining provisions of the Agreement will remain in full force and effect, and the provision affected will be construed so as to be enforceable to the maximum extent permissible by law.\n\n24.\tChoice of Law and Disputes.\nThe following Choice of Law and Disputes terms and conditions will apply under this Agreement: This Agreement will be governed by and construed in accordance with the laws of the State of California, as if performed wholly within the state and without giving effect to the principles of conflict of law rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. (i) For other than the U.S. Government as a party, any legal action or proceeding arising under this Agreement will be brought exclusively in the federal or state courts located in San Francisco, California and the parties hereby consent to personal jurisdiction and venue therein. If a dispute arises between you and BugSense, and either you or BugSense files suit in any court of competent jurisdiction to enforce rights under this Agreement, then the prevailing party will be entitled to recover from the other party all costs of such action or suit, including but not limited to investigative costs, court costs and reasonable attorneys\u2019 fees (including expenses incurred to collect those expenses). (ii) If a dispute arises between you and BugSense that is related to a government customer that is subject to the Contract Disputes Act, 41 U.S.C. 601 et seq., concerning issues of fact or law which relate to this Agreement (a\"CDA Dispute\"), the following dispute procedures will apply. If the U.S. Government issues a final decision regarding a CDA Dispute, such decision will be provided within ten (10) days of receipt by you by written notification to BugSense and subsequently binding upon BugSense to the same extent it is binding upon you, subject to BugSense\u2019s right to seek additional time, cost or both. BugSense will continue performance in accordance with the decision pending any appeal that may be initiated pursuant to the provisions below. If you elect to appeal such decision under your prime contract \"Disputes\" clause, BugSense will be permitted to participate fully in such appeal concerning issues of fact or law which relate to this Agreement for the purpose of protecting BugSense\u2019s interest. You will not enter into a settlement with the government as to any portion of the appeal affecting BugSense without BugSense\u2019s prior written consent. If you elect not to appeal a CDA Dispute, such election must be made within thirty (30) days of the government\u2019s final decision and you agree to notify BugSense within three (3) days after you elect not to appeal. If BugSense elects to pursue appeal of such decision by the Contracting Officer, BugSense will provide written notice of such election to you, and the parties will enter into a sponsorship agreement pursuant to which BugSense will have the right to prosecute in your name any and all appeals arising from the government\u2019s determination. Any such appeal brought by BugSense in your name will be at the expense of BugSense, provided, however, that you, at your expense, will provide BugSense with reasonable assistance in the presentation of such appeal. (iii) If you are the U.S. Government as a party to this Agreement, this Agreement will be governed by and interpreted in accordance with the Contract Disputes Act of 1978, as amended (41 U.S.C. 601-613). Failure of the parties to reach agreement on any request for equitable adjustment, claim, appeal, or action arising under or relating to this Agreement will be a dispute to be resolved in accordance with the clause at 48 C.F.R 52.233-1, which is incorporated in this Agreement by reference.\n\n25.\tGeneral.\nAll notices required or permitted under this Agreement will be by email. All notices to BugSense will be sent to mobilesupport@splunk.com (or to such other email address as we may notice to you from time to time). All notices to you will be sent to the email address you provide to BugSense as part of registering and establishing an account with us (or to such other email address as you may notice to us from time to time). You may not assign, delegate or transfer this Agreement, in whole or in part, by agreement, operation of law or otherwise. BugSense may assign this Agreement in whole or in part to (i) an affiliate, (ii) in connection with an internal reorganization, or (iii) in connection with a merger, acquisition, sale of all or a portion of BugSense\u2019s business, assets or stock, or similar transaction. Further, BugSense may assign its rights to receive payment due as a result of performance of this Agreement to a bank, trust company, or other financing institution, including any Federal lending agency in accordance with the Assignment of Claims Act (31 U.S.C. 3727) and may assign this Agreement in accordance with the provisions at 48 C.F.R 42.12, as applicable. Any attempt to assign this Agreement other than as permitted herein will be null and void. Subject to the foregoing, this Agreement will bind and inure to the benefit of the parties\u2019 permitted successors and assigns. This Agreement, including any exhibits or schedules hereto and any additional terms incorporated by reference, constitutes the complete and exclusive understanding and agreement between the parties and supersedes any and all prior or contemporaneous agreements, communications and understandings, written or oral, relating to their subject matter. Any waiver, modification or amendment of any provision of this Agreement will be effective only if in writing and signed by duly authorized representatives of both parties. Any terms and conditions contained or referenced by either party in a quote, purchase order, acceptance, invoice or any similar document purporting to modify the terms and conditions contained in this Agreement are hereby rejected and will be disregarded and have no effect unless otherwise expressly agreed to by the parties in accordance with the preceding sentence. This Agreement is a binding contract between you and BugSense governing your use of the BugSense SDK; however, if you and BugSense enter into a separate written agreement that specifically states that it supersedes this Agreement, in whole or in part, such separate written agreement will apply to your use of the BugSense SDK and supersede this Agreement to the extent and as set forth in such separate written agreement. In addition, this Agreement may be amended and become effective as set forth in Section 2 above.", + "json": "bugsense-sdk.json", + "yaml": "bugsense-sdk.yml", + "html": "bugsense-sdk.html", + "license": "bugsense-sdk.LICENSE" + }, + { + "license_key": "bytemark", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bytemark", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BYTEmark (tm)\nBYTE's Native Mode Benchmarks\nRick Grehan, BYTE Magazine\n\nCreation:\nRevision: 3/95;10/95\n 10/95 - Removed allocation that was taking place inside\n the LU Decomposition benchmark. Though it didn't seem to\n make a difference on systems we ran it on, it nonetheless\n removes an operating system dependency that probably should\n not have been there.\n\nDISCLAIMER\nThe source, executable, and documentation files that comprise\nthe BYTEmark benchmarks are made available on an \"as is\" basis.\nThis means that we at BYTE Magazine have made every reasonable\neffort to verify that the there are no errors in the source and\nexecutable code. We cannot, however, guarantee that the programs\nare error-free. Consequently, McGraw-HIll and BYTE Magazine make\nno claims in regard to the fitness of the source code, executable\ncode, and documentation of the BYTEmark.\n Furthermore, BYTE Magazine, McGraw-Hill, and all employees\nof McGraw-Hill cannot be held responsible for any damages resulting\nfrom the use of this code or the results obtained from using\nthis code.", + "json": "bytemark.json", + "yaml": "bytemark.yml", + "html": "bytemark.html", + "license": "bytemark.LICENSE" + }, + { + "license_key": "bzip2-libbzip-1.0.5", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "The bzip2 license\nTerms\nThis program, \"bzip2\" and associated library \"libbzip2\", are \ncopyright (C) Julian R Seward. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n\n3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n\n4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\nOR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\nGOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nJulian Seward, Cambridge, UK.\njseward@acm.org", + "json": "bzip2-libbzip-1.0.5.json", + "yaml": "bzip2-libbzip-1.0.5.yml", + "html": "bzip2-libbzip-1.0.5.html", + "license": "bzip2-libbzip-1.0.5.LICENSE" + }, + { + "license_key": "bzip2-libbzip-2010", + "category": "Permissive", + "spdx_license_key": "bzip2-1.0.6", + "other_spdx_license_keys": [ + "bzip2-1.0.5" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n\n3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n\n4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\nOR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\nGOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "bzip2-libbzip-2010.json", + "yaml": "bzip2-libbzip-2010.yml", + "html": "bzip2-libbzip-2010.html", + "license": "bzip2-libbzip-2010.LICENSE" + }, + { + "license_key": "c-fsl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-c-fsl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CONVERTIBLE FREE SOFTWARE LICENSE\n Version 1.1, 2016-08-11\ncopyright 2016, by Elmar Stellnberger\nEveryone is permitted to copy and distribute verbatim copies of this license document. You must not modify the license itself.\nThis license applies to any software containing a notice by the copyright holder saying that it may be used under the terms of the Convertible Free Software License. If a specific version number is mentioned then usage rights include this version as well as any newer version which will always be similar in spirit to this license. The term Convertible Free Software license may be abbreviated as C-FSL.\n\n1. Any work under this license comes completely without any warranty or any kind of liability such as lost revenues, profits, harm or damage of any kind even if the authors should have been advised of the possibility of such harm or damage. It may be seen as research work and does not claim for fitness to any particular usage purpose.\n\n2. The term 'source code' applies to the preferred form that is used to develop or apply changes to a work under this license referred to herein as 'the work'. You are allowed to modify or change the source code if you accept that the resulting changed work will become subject to this license. As soon as you apply any change this is an implicit consent to fully comply with this license and a consent that the work may be used under this license. \n\n3. It is your obligation that the changed version of your sources will be available to the public for free within the time frame of a month at least if there is no undue hindrance by the authors to make it available. Modifications which result in a broken or unusable program which the authors do not plan to continue their work on are considered dead end and do not need to be published. Available for free means that there will be no undue hindrance in obtaining the given item like a registration of the person who wants to download or obtain the given item. Available for free also means that you must not charge for the given item itself apart from the possibility to require a reasonable charge for the physical reproduction of the data.\n\n4. You are allowed to issue an 'automatic derivation process' on the source code which will result in so called 'object code'. You are obligated to provide sufficient data, tools and utilities so that a functionally equivalent object code can be compiled merely from programs and work licensed either under any open source license approved by opensource.org or under C-FSL. The given data and utilities for obtaining functionally equivalent results need to be available to the public for free.\n\n5. When applying changes to the source code you need to leave your name, your email address and the date of your modifications so that other people may contact you. If a contributor should not have a steady access to the internet or a satisfying access to an emailing service he may leave another way by which he can be contacted. We suggest to list all changes by contributors either in a separate changelog file or in the header of the changed file. Several consecutive changes may be collapsed. Furthermore you need to give your changed version a 'marker' which may be used to distinguish it from the upstream version when being distributed to other people. The distributed product needs to be of the form upstream name - dash upstream version - dash your marker optionally followed by a version number under your control. If there should be a chain of upstream contributors there only needs to be one marker by the party which is at the end of the chain as long as that chain remains to be documented in some place where it is shipped with your software. The marker needs to be unique, at least two letters in size. We suggest it to reflect the name of your company or distribution. You may always distribute an upstream version in unchanged form either with your own marker or without.\n\n6. You may choose to create a fork of a work under C-FSL by giving it a completely different name. However you need to assert that people will know that your fork is based on the original work. If your program has a graphical user interface the whole C-FSL license must be referenced via the GUI. Otherwise a plain text copy of this license needs to be given and packed alongside the distributed product. A complete reference to the base product including email address and web presence must be referenced via the GUI for any GUI program that is a fork of another C-FSL program. If your program has a comprehensive help, manual or info page and is a fork a similar reference to the base product must be given there. It does not apply to quick or short command line help output as long as a more comprehensive help page is also available. Any program under C-FSL which is a fork of another C-FSL program must ship with a reference to the base product. \n\n7. Contributing to a work under C-FSL means that you will give a group called the 'original authors' a consensus based right to re-license your derived work so that it will be available under both licenses: the C-FSL and the newly applied license. In order to re-license consensus is only required between these original authors. The original authors are the group of people who have initially started to create a work. They shall be mentioned at the beginning of the changelog or the file header of changes. As soon as there is a consensus to do so by all original authors the work may either be re-licensed, published as upstream version without a marker or new people may be accepted and mentioned as 'original authors'. \n\n8. No work under C-FSL shall be deemed part of an effective measure under anti-circumvention laws like under article 11 of the WIPO copyright treaty adopted on 1996-12-20 or any similar law. By your consent to work under this license you waive any legal power to forbid such circumventions regarding the work under C-FSL or any work combined with it. You must assert that the right to use, modify, generate object code and distribute any software under C-FSL will not be infringed by patent claims or similar law. If you modify a work under C-FSL so that it will knowingly rely on a patent license then it means that you will thereby grant to extend the patent license to any recipient of the work. Every contributor grants by the act of contributing to a work under C-FSL a non-exclusive, worldwide and royalty-free patent license to any prospective contributor or user of the given work applicable to all his 'essential patent claims'. The essential patent claims comprise all claims owned or controlled by the contributor.\n\n9. A work under C-FSL which has another component or plug-in as well as a work under C-FSL which is used itself as a component, plug-in, add-on of another product, any product under C-FSL which is combined or which links against another work requires that the other work will either be put under an open source license as approved by opensource.org or it needs to be put under C-FSL as well. Usage of proprietary libraries and kernel modules pose an exception to this rule. There must be a functionally equivalent open source library for any proprietary library so that a work under C-FSL can run and execute even without any proprietary library. No such restriction applies to kernel modules. The term 'kernel' refers to the core of an operating system. Libraries are separate components which link against the given work or other components. The term 'linking' refers to the relocation of references or addresses when the library is combined with another component in order to make the combined aggregate executable or runnable. Such references are bound to symbols which are part of the common interface between the library and the component which the library is combined with at runtime. Libraries which provide operating system services use a well defined binary interface but do not 'link' against the kernel.\n\n10. This license is either governed by the Laws of Austria or by the laws of the country where the first mentioned original author lives or is a resident. Disputes shall be settled by the nearest proper court given the home town or location of the first original author unless there is a common consensus for another place of court by all original authors. If any of the terms stated in this license were not in accordance with the law of the country that governs this license all other parts of the license shall remain valid.", + "json": "c-fsl-1.1.json", + "yaml": "c-fsl-1.1.yml", + "html": "c-fsl-1.1.html", + "license": "c-fsl-1.1.LICENSE" + }, + { + "license_key": "c-uda-1.0", + "category": "Free Restricted", + "spdx_license_key": "C-UDA-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Computational Use of Data Agreement v1.0\n\nThis is the Computational Use of Data Agreement, Version 1.0 (the \u201cC-UDA\u201d). Capitalized terms are defined in Section 5. Data Provider and you agree as follows:\n\n1. Provision of the Data\n\n1.1. You may use, modify, and distribute the Data made available to you by the Data Provider under this C-UDA for Computational Use if you follow the C-UDA's terms.\n\n1.2. Data Provider will not sue you or any Downstream Recipient for any claim arising out of the use, modification, or distribution of the Data provided you meet the terms of the C-UDA.\n\n1.3 This C-UDA does not restrict your use, modification, or distribution of any portions of the Data that are in the public domain or that may be used, modified, or distributed under any other legal exception or limitation.\n\n2. Restrictions\n\n2.1 You agree that you will use the Data solely for Computational Use.\n\n2.2 The C-UDA does not impose any restriction with respect to the use, modification, or distribution of Results.\n\n3. Redistribution of Data\n\n3.1. You may redistribute the Data, so long as:\n\n3.1.1. You include with any Data you redistribute all credit or attribution information that you received with the Data, and your terms require any Downstream Recipient to do the same; and\n\n3.1.2. You bind each recipient to whom you redistribute the Data to the terms of the C-UDA.\n\n4. No Warranty, Limitation of Liability\n\n4.1. Data Provider does not represent or warrant that it has any rights whatsoever in the Data.\n\n4.2. THE DATA IS PROVIDED ON AN \u201cAS IS\u201d 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.\n\n4.3. NEITHER DATA PROVIDER NOR ANY UPSTREAM DATA PROVIDER SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 DATA OR RESULTS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n5. Definitions\n\n5.1. \u201cComputational Use\u201d means activities necessary to enable the use of Data (alone or along with other material) for analysis by a computer.\n\n5.2.\u201cData\u201d means the material you receive under the C-UDA in modified or unmodified form, but not including Results.\n\n5.3. \u201cData Provider\u201d means the source from which you receive the Data and with whom you enter into the C-UDA.\n\n5.4. \u201cDownstream Recipient\u201d means any person or persons who receives the Data directly or indirectly from you in accordance with the C-UDA.\n\n5.5. \u201cResult\u201d means anything that you develop or improve from your use of Data that does not include more than a de minimis portion of the Data on which the use is based. Results may include de minimis portions of the Data necessary to report on or explain use that has been conducted with the Data, such as figures in scientific papers, but do not include more. Artificial intelligence models trained on Data (and which do not include more than a de minimis portion of Data) are Results.\n\n5.6. \u201cUpstream Data Providers\u201d means the source or sources from which the Data Provider directly or indirectly received, under the terms of the C-UDA, material that is included in the Data.", + "json": "c-uda-1.0.json", + "yaml": "c-uda-1.0.yml", + "html": "c-uda-1.0.html", + "license": "c-uda-1.0.LICENSE" + }, + { + "license_key": "ca-tosl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "CATOSL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Computer Associates Trusted Open Source License\n\nVersion 1.1\n\nPLEASE READ THIS DOCUMENT CAREFULLY AND IN ITS ENTIRETY. THE\nACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMPUTER\nASSOCIATES TRUSTED OPEN SOURCE LICENSE (\"LICENSE\"). ANY USE,\nREPRODUCTION, MODIFICATION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES\nTHE RECIPIENT'S ACCEPTANCE OF THIS LICENSE.\n\nLicense Background\n\nComputer Associates International, Inc. (CA) believes in open source. We\nbelieve that the open source development approach can take appropriate\nsoftware programs to unprecedented levels of quality, growth, and\ninnovation. To demonstrate our continuing commitment to open source, we\nare releasing the Program (as defined below) under this License.\n\nThis License is intended to permit contributors and recipients of the\nProgram to use the Program, including its source code, freely and\nwithout many of the concerns of some other open source licenses.\nAlthough we expect the underlying Program, and Contributions (as defined\nbelow) made to such Program, to remain open, this License is designed to\npermit you to maintain your own software programs free of this License\nunless you choose to do so. Thus, only your Contributions to the Program\nmust be distributed under the terms of this License.\n\nThe provisions that follow set forth the terms and conditions under\nwhich you may use the Program.\n\n1. DEFINITIONS\n\n1.1 Contribution means (a) in the case of CA, the Original Program; and\n(b) in the case of each Contributor (including CA), changes and\nadditions to the Program, where such changes and/or additions to the\nProgram originate from and are distributed by that particular\nContributor to unaffiliated third parties. A Contribution originates\nfrom a Contributor if it was added to the Program by such Contributor\nitself or anyone acting on such Contributors behalf. Contributions do\nnot include additions to the Program which: (x) are separate modules of\nsoftware distributed in conjunction with the Program under their own\nlicense agreement, and (y) are not derivative works of the Program.\n\n1.2 Contributor means CA and any other person or entity that distributes\nthe Program.\n\n1.3 Contributor Version means as to a Contributor, that version of the\nProgram that includes the Contributors Contribution but not any\nContributions made to the Program thereafter.\n\n1.4 Larger Work means a work that combines the Program or portions\nthereof with code not governed by the terms of this License.\n\n1.5 Licensed Patents mean patents licensable by a Contributor that are\ninfringed by the use or sale of its Contribution alone or when combined\nwith the Program.\n\n1.6 Original Program means the original version of the software to which\nthis License is attached and as released by CA, including source code,\nobject code and documentation, if any.\n\n1.7 Program means the Original Program and Contributions.\n\n1.8 Recipient means anyone who modifies, copies, uses or distributes the\nProgram.\n\n2. GRANT OF RIGHTS\n\n2.1 Subject to the terms of this License, each Contributor hereby grants\nRecipient an irrevocable, non-exclusive, worldwide, royalty-free license\nto reproduce, prepare derivative works of, publicly display, publicly\nperform, distribute and sublicense the Contribution of such Contributor,\nif any, and such derivative works, in source code and object code form.\nFor the avoidance of doubt, the license provided in this Section 2.1\nshall not include a license to any Licensed Patents of a Contributor.\n\n2.2 Subject to the terms of this License, each Contributor hereby grants\nRecipient an irrevocable, non-exclusive, worldwide, royalty-free license\nto the Licensed Patents to the extent necessary to make, use, sell,\noffer to sell and import the Contribution of such Contributor, if any,\nin source code and object code form. The license granted in this Section\n2.2 shall apply to the combination of the Contribution and the Program\nif, at the time the Contribution is added by the Contributor, such\naddition of the Contribution causes the Licensed Patents to be infringed\nby such combination. Notwithstanding the foregoing, no license is\ngranted under this Section 2.2: (a) for any code or works that do not\ninclude the Contributor Version, as it exists and is used in accordance\nwith the terms hereof; (b) for infringements caused by: (i) third party\nmodifications of the Contributor Version; or (ii) the combination of\nContributions made by each such Contributor with other software (except\nas part of the Contributor Version) or other devices; or (c) with\nrespect to Licensed Patents infringed by the Program in the absence of\nContributions made by that Contributor.\n\n2.3 Recipient understands that although each Contributor grants the\nlicenses to its Contributions set forth herein, except as provided in\nSection 2.4, no assurances are provided by any Contributor that the\nProgram does not infringe the patent or other intellectual property\nrights of any other person or entity. Each Contributor disclaims any\nliability to Recipient for claims brought by any other person or entity\nbased on infringement of intellectual property rights or otherwise. As a\ncondition to exercising the rights and licenses granted hereunder, each\nRecipient hereby assumes sole responsibility to secure any other\nintellectual property rights needed, if any.\n\n2.4 Each Contributor represents and warrants that it has all right,\ntitle and interest in the copyrights in its Contributions, and has the\nright to grant the copyright licenses set forth in this License.\n\n3. DISTRIBUTION REQUIREMENTS\n\n3.1 If the Program is distributed in object code form, then a prominent\nnotice must be included in the code itself as well as in any related\ndocumentation, stating that the source code for the Program is available\nfrom the Contributor with information on how and where to obtain the\nsource code. A Contributor may choose to distribute the Program in\nobject code form under its own license agreement, provided that:\n\na. it complies with the terms and conditions of this License; and \nb. its license agreement: \n\ti. effectively disclaims on behalf of all Contributors all warranties and \n\tconditions, express and implied, including warranties or conditions of title\n\tand non-infringement, and implied warranties or conditions of \n\tmerchantability and fitness for a particular purpose, to the maximum extent\n\tpermitted by applicable law;\n\tii. effectively excludes on behalf of all Contributors all liability for \n\tdamages, including direct, indirect, special, incidental and consequential \n\tdamages, such as lost profits, to the maximum extent permitted by applicable\n\tlaw; \n\tiii. states that any provisions which are inconsistent with this License are\n\toffered by that Contributor alone and not by any other party; and \n\tiv. states that source code for the Program is available from such \n\tContributor at the cost of distribution, and informs licensees how to obtain\n\tit in a reasonable manner.\n\n3.2 When the Program is made available in source code form:\n\na. it must be made available under this License; and \nb. a copy of this License must be included with each copy of the Program.\n\n3.3 This License is intended to facilitate the commercial distribution\nof the Program by any Contributor. However, Contributors may only charge\nRecipients a one-time, upfront fee for the distribution of the Program.\nContributors may not charge Recipients any recurring charge, license\nfee, or any ongoing royalty for the Recipients exercise of its rights\nunder this License to the Program. Contributors shall make the source\ncode for the Contributor Version they distribute available at a cost, if\nany, equal to the cost to the Contributor to physically copy and\ndistribute the work. It is not the intent of this License to prohibit a\nContributor from charging fees for any service or maintenance that a\nContributor may charge to a Recipient, so long as such fees are not an\nattempt to circumvent the foregoing restrictions on charging royalties\nor other recurring fees for the Program itself.\n\n3.4 A Contributor may create a Larger Work by combining the Program with\nother software code not governed by the terms of this License, and\ndistribute the Larger Work as a single product. In such a case, the\nContributor must make sure that the requirements of this License are\nfulfilled for the Program. Any Contributor who includes the Program in a\ncommercial product offering, including as part of a Larger Work, may\nsubject itself, but not any other Contributor, to additional contractual\ncommitments, including, but not limited to, performance warranties and\nnon-infringement representations on suchContributors behalf. No\nContributor may create any additional liability for other Contributors.\nTherefore, if a Contributor includes the Program in a commercial product\noffering, such Contributor (Commercial Contributor) hereby agrees to\ndefend and indemnify every other Contributor (Indemnified Contributor)\nwho made Contributions to the Program distributed by the Commercial\nContributor against any losses, damages and costs (collectively Losses)\narising from claims, lawsuits and other legal actions brought by a third\nparty against the Indemnified Contributor to the extent caused by the\nacts or omissions, including any additional contractual commitments, of\nsuch Commercial Contributor in connection with its distribution of the\nProgram. The obligations in this section do not apply to any claims or\nLosses relating to any actual or alleged intellectual property\ninfringement.\n\n3.5 If Contributor has knowledge that a license under a third partys\nintellectual property rights is required to exercise the rights granted\nby such Contributor under Sections 2.1 or 2.2, Contributor must (a)\ninclude a text file with the Program source code distribution titled\n../IP_ISSUES, and (b) notify CA in writing at Computer Associates\nInternational, Inc., One Computer Associates Plaza, Islandia, New York\n11749, Attn: Open Source Group or by email at opensource@ca.com, both\ndescribing the claim and the party making the claim in sufficient detail\nthat a Recipient and CA will know whom to contact with regard to such\nmatter. If Contributor obtains such knowledge after the Contribution is\nmade available, Contributor shall also promptly modify the IP_ISSUES\nfile in all copies Contributor makes available thereafter and shall take\nother steps (such as notifying appropriate mailing lists or newsgroups)\nreasonably calculated to inform those who received the Program that such\nnew knowledge has been obtained.\n\n3.6 Recipient shall not remove, obscure, or modify any CA or other\nContributor copyright or patent proprietary notices appearing in the\nProgram, whether in the source code, object code or in any\ndocumentation. In addition to the obligations set forth in Section 4,\neach Contributor must identify itself as the originator of its\nContribution, if any, in a manner that reasonably allows subsequent\nRecipients to identify the originator of the Contribution.\n\n4. CONTRIBUTION RESTRICTIONS\n\n4.1 Each Contributor must cause the Program to which the Contributor\nprovides a Contribution to contain a file documenting the changes the\nContributor made to create its version of the Program and the date of\nany change. Each Contributor must also include a prominent statement\nthat the Contribution is derived, directly or indirectly, from the\nProgram distributed by a prior Contributor, including the name of the\nprior Contributor from which such Contribution was derived, in (a) the\nProgram source code, and (b) in any notice in an executable version or\nrelated documentation in which the Contributor describes the origin or\nownership of the Program.\n\n5. NO WARRANTY\n\n5.1 EXCEPT AS EXPRESSLY SET FORTH IN THIS LICENSE, THE PROGRAM IS\nPROVIDED AS IS AND IN ITS PRESENT STATE AND CONDITION. NO WARRANTY,\nREPRESENTATION, CONDITION, UNDERTAKING OR TERM, EXPRESS OR IMPLIED,\nSTATUTORY OR OTHERWISE, AS TO THE CONDITION, QUALITY, DURABILITY,\nPERFORMANCE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A\nPARTICULAR PURPOSE OR USE OF THE PROGRAM IS GIVEN OR ASSUMED BY ANY\nCONTRIBUTOR AND ALL SUCH WARRANTIES, REPRESENTATIONS, CONDITIONS,\nUNDERTAKINGS AND TERMS ARE HEREBY EXCLUDED TO THE FULLEST EXTENT\nPERMITTED BY LAW.\n\n5.2 Each Recipient is solely responsible for determining the\nappropriateness of using and distributing the Program and assumes all\nrisks associated with its exercise of rights under this License,\nincluding but not limited to the risks and costs of program errors,\ncompliance with applicable laws, damage to or loss of data, programs or\nequipment, and unavailability or interruption of operations.\n\n5.3 Each Recipient acknowledges that the Program is not intended for use\nin the operation of nuclear facilities, aircraft navigation,\ncommunication systems, or air traffic control machines in which case the\nfailure of the Program could lead to death, personal injury, or severe\nphysical or environmental damage.\n\n6. DISCLAIMER OF LIABILITY\n\n6.1 EXCEPT AS EXPRESSLY SET FORTH IN THIS LICENSE, AND TO THE EXTENT\nPERMITTED BY LAW, NO CONTRIBUTOR SHALL HAVE ANY LIABILITY FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\nUSE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED\nHEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. TRADEMARKS AND BRANDING\n\n7.1 This License does not grant any Recipient or any third party any\nrights to use the trademarks or trade names now or subsequently posted\nat http://www.ca.com/catrdmrk.htm, or any other trademarks, service\nmarks, logos or trade names belonging to CA (collectively CA Marks) or\nto any trademark, service mark, logo or trade name belonging to any\nContributor. Recipient agrees not to use any CA Marks in or as part of\nthe name of products derived from the Original Program or to endorse or\npromote products derived from the Original Program.\n\n7.2 Subject to Section 7.1, Recipients may distribute the Program under\ntrademarks, logos, and product names belonging to the Recipient provided\nthat all copyright and other attribution notices remain in the Program.\n\n8. PATENT LITIGATION\n\n8.1 If Recipient institutes patent litigation against any person or\nentity (including a cross-claim or counterclaim in a lawsuit) alleging\nthat the Program itself (excluding combinations of the Program with\nother software or hardware) infringes such Recipients patent(s), then\nsuch Recipients rights granted under Section 2.2 shall terminate as of\nthe date such litigation is filed.\n\n9. OWNERSHIP\n\n9.1 Subject to the licenses granted under this License in Sections 2.1\nand 2.2 above, each Contributor retains all rights, title and interest\nin and to any Contributions made by such Contributor. CA retains all\nrights, title and interest in and to the Original Program and any\nContributions made by or on behalf of CA (CA Contributions), and such CA\nContributions will not be automatically subject to this License. CA may,\nat its sole discretion, choose to license such CA Contributions under\nthis License, or on different terms from those contained in this License\nor may choose not to license them at all.\n\n10. TERMINATION\n\n10.1 All of Recipients rights under this License shall terminate if it\nfails to comply with any of the material terms or conditions of this\nLicense and does not cure such failure in a reasonable period of time\nafter becoming aware of such noncompliance. If Recipients rights under\nthis License terminate, Recipient agrees to cease use and distribution\nof the Program as soon as reasonably practicable. However, Recipients\nobligations under this License and any licenses granted by Recipient as\na Contributor relating to the Program shall continue and survive\ntermination.\n\n11. GENERAL\n\n11.1 If any provision of this License is invalid or unenforceable under\napplicable law, it shall not affect the validity or enforceability of\nthe remainder of the terms of this License, and without further action\nby the parties hereto, such provision shall be reformed to the minimum\nextent necessary to make such provision valid and enforceable.\n\n11.2 CA may publish new versions (including revisions) of this License\nfrom time to time. Each new version of the License will be given a\ndistinguishing version number. The Program (including Contributions) may\nalways be distributed subject to the version of the License under which\nit was received. In addition, after a new version of the License is\npublished, Contributor may elect to distribute the Program (including\nits Contributions) under the new version. No one other than CA has the\nright to modify this License.\n\n11.3 If it is impossible for Recipient to comply with any of the terms\nof this License with respect to some or all of the Program due to\nstatute, judicial order, or regulation, then Recipient must: (a) comply\nwith the terms of this License to the maximum extent possible; and (b)\ndescribe the limitations and the code they affect. Such description must\nbe included in the IP_ISSUES file described in Section 3.5 and must be\nincluded with all distributions of the Program source code. Except to\nthe extent prohibited by statute or regulation, such description must be\nsufficiently detailed for a Recipient of ordinary skill to be able to\nunderstand it.\n\n11.4 This License is governed by the laws of the State of New York. No\nRecipient will bring a legal action under this License more than one\nyear after the cause of action arose. Each Recipient waives its rights\nto a jury trial in any resulting litigation. Any litigation or other\ndispute resolution between a Recipient and CA relating to this License\nshall take place in the State of New York, and Recipient and CA hereby\nconsent to the personal jurisdiction of, and venue in, the state and\nfederal courts within that district with respect to this License. The\napplication of the United Nations Convention on Contracts for the\nInternational Sale of Goods is expressly excluded.\n\n11.5 Where Recipient is located in the province of Quebec, Canada, the\nfollowing clause applies: The parties hereby confirm that they have\nrequested that this License and all related documents be drafted in\nEnglish. Les parties contractantes confirment qu'elles ont exige que le\npresent contrat et tous les documents associes soient rediges en\nanglais.\n\n11.6 The Program is subject to all export and import laws, restrictions\nand regulations of the country in which Recipient receives the Program.\nRecipient is solely responsible for complying with and ensuring that\nRecipient does not export, re-export, or import the Program in violation\nof such laws, restrictions or regulations, or without any necessary\nlicenses and authorizations.\n\n11.7 This License constitutes the entire agreement between the parties\nwith respect to the subject matter hereof.", + "json": "ca-tosl-1.1.json", + "yaml": "ca-tosl-1.1.yml", + "html": "ca-tosl-1.1.html", + "license": "ca-tosl-1.1.LICENSE" + }, + { + "license_key": "cadence-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cadence-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution. Redistribution and use in binary form, without\nmodification, are permitted provided that the following conditions are\nmet:\n\n* Redistributions must reproduce the above copyright notice and the\n following disclaimer in the documentation and/or other materials\n provided with the distribution.\n\n* Neither the name of Cadence Design Systems, Inc., its products\n nor the names of its suppliers may be used to endorse or promote products\n derived from this Software without specific prior written permission.\n\n* No reverse engineering, decompilation, or disassembly of this software\n is permitted.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\nCOPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\nOF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\nUSE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGE.", + "json": "cadence-linux-firmware.json", + "yaml": "cadence-linux-firmware.yml", + "html": "cadence-linux-firmware.html", + "license": "cadence-linux-firmware.LICENSE" + }, + { + "license_key": "cal-1.0", + "category": "Copyleft", + "spdx_license_key": "CAL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "# The Cryptographic Autonomy License, v. 1.0\n\n*This Cryptographic Autonomy License (the \"License\") applies to any\nWork whose owner has marked it with any of the following notices, or a\nsimilar demonstration of intent:*\n\nSPDX-License-Identifier: CAL-1.0\nLicensed under the Cryptographic Autonomy License version 1.0\n\n*or*\n\nSPDX-License-Identifier: CAL-1.0-Combined-Work-Exception\nLicensed under the Cryptographic Autonomy License version 1.0, with\nCombined Work Exception\n\n______________________________________________________________________\n\n## 1. Purpose\n\nThis License gives You unlimited permission to use and modify the\nsoftware to which it applies (the \"Work\"), either as-is or in modified\nform, for Your private purposes, while protecting the owners and\ncontributors to the software from liability.\n\nThis License also strives to protect the freedom and autonomy of third\nparties who receive the Work from you. If any non-affiliated third\nparty receives any part, aspect, or element of the Work from You, this\nLicense requires that You provide that third party all the permissions\nand materials needed to independently use and modify the Work without\nthat third party having a loss of data or capability due to your\nactions.\n\nThe full permissions, conditions, and other terms are laid out below.\n\n## 2. Receiving a License\n\nIn order to receive this License, You must agree to its rules. The\nrules of this License are both obligations of Your agreement with the\nLicensor and conditions to your License. You must not do anything with\nthe Work that triggers a rule You cannot or will not follow.\n\n### 2.1. Application\n\nThe terms of this License apply to the Work as you receive it from\nLicensor, as well as to any modifications, elaborations, or\nimplementations created by You that contain any licensable portion of\nthe Work (a \"Modified Work\"). Unless specified, any reference to the\nWork also applies to a Modified Work.\n\n### 2.2. Offer and Acceptance\n\nThis License is automatically offered to every person and\norganization. You show that you accept this License and agree to its\nconditions by taking any action with the Work that, absent this\nLicense, would infringe any intellectual property right held by\nLicensor.\n\n### 2.3. Compliance and Remedies\n\nAny failure to act according to the terms and conditions of this\nLicense places Your use of the Work outside the scope of the License\nand infringes the intellectual property rights of the Licensor. In the\nevent of infringement, the terms and conditions of this License may be\nenforced by Licensor under the intellectual property laws of any\njurisdiction to which You are subject. You also agree that either the\nLicensor or a Recipient (as an intended third-party beneficiary) may\nenforce the terms and conditions of this License against You via\nspecific performance.\n\n## 3. Permissions\n### 3.1. Permissions Granted\n\nConditioned on compliance with section 4, and subject to the\nlimitations of section 3.2, Licensor grants You the world-wide,\nroyalty-free, non-exclusive permission to:\n\n+ a) Take any action with the Work that would infringe the non-patent\nintellectual property laws of any jurisdiction to which You are\nsubject; and\n\n+ b) claims that Licensor can license or becomes able to\nlicense, to the extent that those claims are embodied in the Work as\ndistributed by Licensor. ### 3.2. Limitations on Permissions Granted\n\nThe following limitations apply to the permissions granted in section\n3.1:\n\n+ a) Licensor does not grant any patent license for claims that are\nonly infringed due to modification of the Work as provided by\nLicensor, or the combination of the Work as provided by Licensor,\ndirectly or indirectly, with any other component, including other\nsoftware or hardware.\n\n+ b) Licensor does not grant any license to the trademarks, service\nmarks, or logos of Licensor, except to the extent necessary to comply\nwith the attribution conditions in section 4.1 of this License.\n\n## 4. Conditions\n\nIf You exercise any permission granted by this License, such that the\nWork, or any part, aspect, or element of the Work, is distributed,\ncommunicated, made available, or made perceptible to a non-Affiliate\nthird party (a \"Recipient\"), either via physical delivery or via a\nnetwork connection to the Recipient, You must comply with the\nfollowing conditions:\n\n### 4.1. Provide Access to Source Code\n\nSubject to the exception in section 4.4, You must provide to each\nRecipient a copy of, or no-charge unrestricted network access to, the\nSource Code corresponding to the Work (\"Access\").\n\nThe \"Source Code\" of the Work means the form of the Work preferred for\nmaking modifications, including any comments, configuration\ninformation, documentation, help materials, installation instructions,\ncryptographic seeds or keys, and any information reasonably necessary\nfor the Recipient to independently compile and use the Source Code and\nto have full access to the functionality contained in the Work.\n\n#### 4.1.1. Providing Network Access to the Source Code\n\nNetwork Access to the Notices and Source Code may be provided by You\nor by a third party, such as a public software repository, and must\npersist during the same period in which You exercise any of the\npermissions granted to You under this License and for at least one\nyear thereafter.\n\n#### 4.1.2. Source Code for a Modified Work\n\nSubject to the exception in section 4.5, You must provide to each\nRecipient of a Modified Work Access to Source Code corresponding to\nthose portions of the Work remaining in the Modified Work as well as\nthe modifications used by You to create the Modified Work. The Source\nCode corresponding to the modifications in the Modified Work must be\nprovided to the Recipient either a) under this License, or b) under a\nCompatible Open Source License.\n\nA \u201cCompatible Open Source License\u201d means a license accepted by the Open Source \nInitiative that allows object code created using both Source Code provided under \nthis License and Source Code provided under the other open source license to be \ndistributed together as a single work.\n\n#### 4.1.3. Coordinated Disclosure of Security Vulnerabilities\n\nYou may delay providing the Source Code corresponding to a particular\nmodification of the Work for up to ninety (90) days (the \"Embargo\nPeriod\") if:\n\n+ a) the modification is intended to address a newly-identified\nvulnerability or a security flaw in the Work,\n\n+ b) disclosure of the vulnerability or security flaw before the end\nof the Embargo Period would put the data, identity, or autonomy of one\nor more Recipients of the Work at significant risk,\n\n+ c) You are participating in a coordinated disclosure of the\nvulnerability or security flaw with one or more additional Licensees,\nand\n\n+ d) Access to the Source Code pertaining to the modification is\nprovided to all Recipients at the end of the Embargo Period.\n\n### 4.2. Maintain User Autonomy\n\nIn addition to providing each Recipient the opportunity to have Access\nto the Source Code, You cannot use the permissions given under this\nLicense to interfere with a Recipient's ability to fully use an\nindependent copy of the Work generated from the Source Code You\nprovide with the Recipient's own User Data.\n\n\"User Data\" means any data that is an input to or an output from the\nWork, where the presence of the data is necessary for substantially\nidentical use of the Work in an equivalent context chosen by the\nRecipient, and where the Recipient has an existing ownership interest,\nan existing right to possess, or where the data has been generated by,\nfor, or has been assigned to the Recipient.\n\n#### 4.2.1. No Withholding User Data\n\nThroughout any period in which You exercise any of the permissions\ngranted to You under this License, You must also provide to any\nRecipient to whom you provide services via the Work, a no-charge copy,\nprovided in a commonly used electronic form, of the Recipient's User\nData in your possession, to the extent that such User Data is\navailable to You for use in conjunction with the Work.\n\n#### 4.2.2. No Technical Measures that Limit Access\n\nYou may not, by means of the use cryptographic methods applied to\nanything provided to the Recipient, by possession or control of\ncryptographic keys, seeds, hashes, by any other technological\nprotection measures, or by any other method, limit a Recipient's\nability to access any functionality present in Recipient's independent\ncopy of the Work, or to deny a Recipient full control of the\nRecipient's User Data.\n\n#### 4.2.3. No Legal or Contractual Measures that Limit Access\n\nYou may not contractually restrict a Recipient's ability to\nindependently exercise the permissions granted under this License. You\nwaive any legal power to forbid circumvention of technical protection\nmeasures that include use of the Work, and You waive any claim that\nthe capabilities of the Work were limited or modified as a means of\nenforcing the legal rights of third parties against Recipients.\n\n### 4.3. Provide Notices and Attribution\n\nYou must retain all licensing, authorship, or attribution notices\ncontained in the Source Code (the \"Notices\"), and provide all such\nNotices to each Recipient, together with a statement acknowledging the\nuse of the Work. Notices may be provided directly to a Recipient or\nvia an easy-to-find hyperlink to an Internet location also providing\nAccess to Source Code.\n\n### 4.4. Scope of Conditions in this License\n\nYou are required to uphold the conditions of this License only\nrelative to those who are Recipients of the Work from You. Other than\nproviding Recipients with the applicable Notices, Access to Source\nCode, and a copy of and full control of their User Data, nothing in\nthis License requires You to provide processing services to or engage\nin network interactions with anyone.\n\n### 4.5. Combined Work Exception\n\nAs an exception to condition that You provide Recipients Access to\nSource Code, any Source Code files marked by the Licensor as having\nthe \"Combined Work Exception,\" or any object code exclusively\nresulting from Source Code files so marked, may be combined with other\nSoftware into a \"Larger Work.\" So long as you comply with the\nrequirements to provide Recipients the applicable Notices and Access\nto the Source Code provided to You by Licensor, and you provide\nRecipients access to their User Data and do not limit Recipient's\nability to independently work with their User Data, any other Software\nin the Larger Work as well as the Larger Work as a whole may be\nlicensed under the terms of your choice.\n\n## 5. Term and Termination\n\nThe term of this License begins when You receive the Work, and\ncontinues until terminated for any of the reasons described herein, or\nuntil all Licensor's intellectual property rights in the Software\nexpire, whichever comes first (\"Term\"). This License cannot be\nrevoked, only terminated for the reasons listed below.\n\n### 5.1. Effect of Termination\n\nIf this License is terminated for any reason, all permissions granted\nto You under Section 3 by any Licensor automatically terminate. You\nwill immediately cease exercising any permissions granted in this\nLicense relative to the Work, including as part of any Modified Work.\n\n### 5.2. Termination for Non-Compliance; Reinstatement\n\nThis License terminates automatically if You fail to comply with any\nof the conditions in section 4. As a special exception to termination\nfor non-compliance, Your permissions for the Work under this License\nwill automatically be reinstated if You come into compliance with all\nthe conditions in section 2 within sixty (60) days of being notified\nby Licensor or an intended third-party beneficiary of Your\nnoncompliance. You are eligible for reinstatement of permissions for\nthe Work one time only, and only for the sixty days immediately after\nbecoming aware of noncompliance. Loss of permissions granted for the\nWork under this License due to either a) sustained noncompliance\nlasting more than sixty days or b) subsequent termination for\nnoncompliance after reinstatement, is permanent, unless rights are\nspecifically restored by Licensor in writing.\n\n### 5.3. Termination Due to Litigation\n\nIf You initiate litigation against Licensor, or any Recipient of the\nWork, either direct or indirect, asserting that the Work directly or\nindirectly infringes any patent, then all permissions granted to You\nby this License shall terminate. In the event of termination due to\nlitigation, all permissions validly granted by You under this License,\ndirectly or indirectly, shall survive termination. Administrative\nreview procedures, declaratory judgment actions, counterclaims in\nresponse to patent litigation, and enforcement actions against former\nLicensees terminated under this section do not cause termination due\nto litigation.\n\n## 6. Disclaimer of Warranty and Limit on Liability\n\nAs far as the law allows, the Work comes AS-IS, without any warranty\nof any kind, and no Licensor or contributor will be liable to anyone\nfor any damages related to this software or this license, under any\nkind of legal claim, or for any type of damages, including indirect,\nspecial, incidental, or consequential damages of any type arising as a\nresult of this License or the use of the Work including, without\nlimitation, damages for loss of goodwill, work stoppage, computer\nfailure or malfunction, loss of profits, revenue, or any and all other\ncommercial damages or losses.\n\n## 7. Other Provisions\n### 7.1. Affiliates\n\nAn \"Affiliate\" means any other entity that, directly or indirectly\nthrough one or more intermediaries, controls, is controlled by, or is\nunder common control with, the Licensee. Employees of a Licensee and\nnatural persons acting as contractors exclusively providing services\nto Licensee are also Affiliates.\n\n### 7.2. Choice of Jurisdiction and Governing Law\n\nA Licensor may require that any action or suit by a Licensee relating\nto a Work provided by Licensor under this License may be brought only\nin the courts of a particular jurisdiction and under the laws of a\nparticular jurisdiction (excluding its conflict-of-law provisions), if\nLicensor provides conspicuous notice of the particular jurisdiction to\nall Licensees.\n\n### 7.3. No Sublicensing\n\nThis License is not sublicensable. Each time You provide the Work or a\nModified Work to a Recipient, the Recipient automatically receives a\nlicense under the terms described in this License. You may not impose\nany further reservations, conditions, or other provisions on any\nRecipients' exercise of the permissions granted herein.\n\n### 7.4. Attorneys' Fees\n\nIn any action to enforce the terms of this License, or seeking damages\nrelating thereto, including by an intended third-party beneficiary,\nthe prevailing party shall be entitled to recover its costs and\nexpenses, including, without limitation, reasonable attorneys' fees\nand costs incurred in connection with such action, including any\nappeal of such action. A \"prevailing party\" is the party that\nachieves, or avoids, compliance with this License, including through\nsettlement. This section shall survive the termination of this\nLicense.\n\n### 7.5. No Waiver\n\nAny failure by Licensor to enforce any provision of this License will\nnot constitute a present or future waiver of such provision nor limit\nLicensor's ability to enforce such provision at a later time.\n\n### 7.6. Severability\n\nIf any provision of this License is held to be unenforceable, such\nprovision shall be reformed only to the extent necessary to make it\nenforceable. Any invalid or unenforceable portion will be interpreted\nto the effect and intent of the original portion. If such a\nconstruction is not possible, the invalid or unenforceable portion\nwill be severed from this License but the rest of this License will\nremain in full force and effect.\n\n### 7.7. License for the Text of this License\n\nThe text of this license is released under the Creative Commons\nAttribution-ShareAlike 4.0 International License, with the caveat that\nany modifications of this license may not use the name \"Cryptographic\nAutonomy License\" or any name confusingly similar thereto to describe\nany derived work of this License.", + "json": "cal-1.0.json", + "yaml": "cal-1.0.yml", + "html": "cal-1.0.html", + "license": "cal-1.0.LICENSE" + }, + { + "license_key": "cal-1.0-combined-work-exception", + "category": "Copyleft Limited", + "spdx_license_key": "CAL-1.0-Combined-Work-Exception", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "# The Cryptographic Autonomy License, v. 1.0, with Combined Work Exception\n\n*This Cryptographic Autonomy License (the \"License\") applies to any\nWork whose owner has marked it with any of the following notices, or a\nsimilar demonstration of intent:*\n\nSPDX-License-Identifier: CAL-1.0\nLicensed under the Cryptographic Autonomy License version 1.0\n\n*or*\n\nSPDX-License-Identifier: CAL-1.0-Combined-Work-Exception\nLicensed under the Cryptographic Autonomy License version 1.0, with\nCombined Work Exception\n\n______________________________________________________________________\n\n## 1. Purpose\n\nThis License gives You unlimited permission to use and modify the\nsoftware to which it applies (the \"Work\"), either as-is or in modified\nform, for Your private purposes, while protecting the owners and\ncontributors to the software from liability.\n\nThis License also strives to protect the freedom and autonomy of third\nparties who receive the Work from you. If any non-affiliated third\nparty receives any part, aspect, or element of the Work from You, this\nLicense requires that You provide that third party all the permissions\nand materials needed to independently use and modify the Work without\nthat third party having a loss of data or capability due to your\nactions.\n\nThe full permissions, conditions, and other terms are laid out below.\n\n## 2. Receiving a License\n\nIn order to receive this License, You must agree to its rules. The\nrules of this License are both obligations of Your agreement with the\nLicensor and conditions to your License. You must not do anything with\nthe Work that triggers a rule You cannot or will not follow.\n\n### 2.1. Application\n\nThe terms of this License apply to the Work as you receive it from\nLicensor, as well as to any modifications, elaborations, or\nimplementations created by You that contain any licensable portion of\nthe Work (a \"Modified Work\"). Unless specified, any reference to the\nWork also applies to a Modified Work.\n\n### 2.2. Offer and Acceptance\n\nThis License is automatically offered to every person and\norganization. You show that you accept this License and agree to its\nconditions by taking any action with the Work that, absent this\nLicense, would infringe any intellectual property right held by\nLicensor.\n\n### 2.3. Compliance and Remedies\n\nAny failure to act according to the terms and conditions of this\nLicense places Your use of the Work outside the scope of the License\nand infringes the intellectual property rights of the Licensor. In the\nevent of infringement, the terms and conditions of this License may be\nenforced by Licensor under the intellectual property laws of any\njurisdiction to which You are subject. You also agree that either the\nLicensor or a Recipient (as an intended third-party beneficiary) may\nenforce the terms and conditions of this License against You via\nspecific performance.\n\n## 3. Permissions\n### 3.1. Permissions Granted\n\nConditioned on compliance with section 4, and subject to the\nlimitations of section 3.2, Licensor grants You the world-wide,\nroyalty-free, non-exclusive permission to:\n\n+ a) Take any action with the Work that would infringe the non-patent\nintellectual property laws of any jurisdiction to which You are\nsubject; and\n\n+ b) claims that Licensor can license or becomes able to\nlicense, to the extent that those claims are embodied in the Work as\ndistributed by Licensor. ### 3.2. Limitations on Permissions Granted\n\nThe following limitations apply to the permissions granted in section\n3.1:\n\n+ a) Licensor does not grant any patent license for claims that are\nonly infringed due to modification of the Work as provided by\nLicensor, or the combination of the Work as provided by Licensor,\ndirectly or indirectly, with any other component, including other\nsoftware or hardware.\n\n+ b) Licensor does not grant any license to the trademarks, service\nmarks, or logos of Licensor, except to the extent necessary to comply\nwith the attribution conditions in section 4.1 of this License.\n\n## 4. Conditions\n\nIf You exercise any permission granted by this License, such that the\nWork, or any part, aspect, or element of the Work, is distributed,\ncommunicated, made available, or made perceptible to a non-Affiliate\nthird party (a \"Recipient\"), either via physical delivery or via a\nnetwork connection to the Recipient, You must comply with the\nfollowing conditions:\n\n### 4.1. Provide Access to Source Code\n\nSubject to the exception in section 4.4, You must provide to each\nRecipient a copy of, or no-charge unrestricted network access to, the\nSource Code corresponding to the Work (\"Access\").\n\nThe \"Source Code\" of the Work means the form of the Work preferred for\nmaking modifications, including any comments, configuration\ninformation, documentation, help materials, installation instructions,\ncryptographic seeds or keys, and any information reasonably necessary\nfor the Recipient to independently compile and use the Source Code and\nto have full access to the functionality contained in the Work.\n\n#### 4.1.1. Providing Network Access to the Source Code\n\nNetwork Access to the Notices and Source Code may be provided by You\nor by a third party, such as a public software repository, and must\npersist during the same period in which You exercise any of the\npermissions granted to You under this License and for at least one\nyear thereafter.\n\n#### 4.1.2. Source Code for a Modified Work\n\nSubject to the exception in section 4.5, You must provide to each\nRecipient of a Modified Work Access to Source Code corresponding to\nthose portions of the Work remaining in the Modified Work as well as\nthe modifications used by You to create the Modified Work. The Source\nCode corresponding to the modifications in the Modified Work must be\nprovided to the Recipient either a) under this License, or b) under a\nCompatible Open Source License.\n\nA \u201cCompatible Open Source License\u201d means a license accepted by the Open Source \nInitiative that allows object code created using both Source Code provided under \nthis License and Source Code provided under the other open source license to be \ndistributed together as a single work.\n\n#### 4.1.3. Coordinated Disclosure of Security Vulnerabilities\n\nYou may delay providing the Source Code corresponding to a particular\nmodification of the Work for up to ninety (90) days (the \"Embargo\nPeriod\") if:\n\n+ a) the modification is intended to address a newly-identified\nvulnerability or a security flaw in the Work,\n\n+ b) disclosure of the vulnerability or security flaw before the end\nof the Embargo Period would put the data, identity, or autonomy of one\nor more Recipients of the Work at significant risk,\n\n+ c) You are participating in a coordinated disclosure of the\nvulnerability or security flaw with one or more additional Licensees,\nand\n\n+ d) Access to the Source Code pertaining to the modification is\nprovided to all Recipients at the end of the Embargo Period.\n\n### 4.2. Maintain User Autonomy\n\nIn addition to providing each Recipient the opportunity to have Access\nto the Source Code, You cannot use the permissions given under this\nLicense to interfere with a Recipient's ability to fully use an\nindependent copy of the Work generated from the Source Code You\nprovide with the Recipient's own User Data.\n\n\"User Data\" means any data that is an input to or an output from the\nWork, where the presence of the data is necessary for substantially\nidentical use of the Work in an equivalent context chosen by the\nRecipient, and where the Recipient has an existing ownership interest,\nan existing right to possess, or where the data has been generated by,\nfor, or has been assigned to the Recipient.\n\n#### 4.2.1. No Withholding User Data\n\nThroughout any period in which You exercise any of the permissions\ngranted to You under this License, You must also provide to any\nRecipient to whom you provide services via the Work, a no-charge copy,\nprovided in a commonly used electronic form, of the Recipient's User\nData in your possession, to the extent that such User Data is\navailable to You for use in conjunction with the Work.\n\n#### 4.2.2. No Technical Measures that Limit Access\n\nYou may not, by means of the use cryptographic methods applied to\nanything provided to the Recipient, by possession or control of\ncryptographic keys, seeds, hashes, by any other technological\nprotection measures, or by any other method, limit a Recipient's\nability to access any functionality present in Recipient's independent\ncopy of the Work, or to deny a Recipient full control of the\nRecipient's User Data.\n\n#### 4.2.3. No Legal or Contractual Measures that Limit Access\n\nYou may not contractually restrict a Recipient's ability to\nindependently exercise the permissions granted under this License. You\nwaive any legal power to forbid circumvention of technical protection\nmeasures that include use of the Work, and You waive any claim that\nthe capabilities of the Work were limited or modified as a means of\nenforcing the legal rights of third parties against Recipients.\n\n### 4.3. Provide Notices and Attribution\n\nYou must retain all licensing, authorship, or attribution notices\ncontained in the Source Code (the \"Notices\"), and provide all such\nNotices to each Recipient, together with a statement acknowledging the\nuse of the Work. Notices may be provided directly to a Recipient or\nvia an easy-to-find hyperlink to an Internet location also providing\nAccess to Source Code.\n\n### 4.4. Scope of Conditions in this License\n\nYou are required to uphold the conditions of this License only\nrelative to those who are Recipients of the Work from You. Other than\nproviding Recipients with the applicable Notices, Access to Source\nCode, and a copy of and full control of their User Data, nothing in\nthis License requires You to provide processing services to or engage\nin network interactions with anyone.\n\n### 4.5. Combined Work Exception\n\nAs an exception to condition that You provide Recipients Access to\nSource Code, any Source Code files marked by the Licensor as having\nthe \"Combined Work Exception,\" or any object code exclusively\nresulting from Source Code files so marked, may be combined with other\nSoftware into a \"Larger Work.\" So long as you comply with the\nrequirements to provide Recipients the applicable Notices and Access\nto the Source Code provided to You by Licensor, and you provide\nRecipients access to their User Data and do not limit Recipient's\nability to independently work with their User Data, any other Software\nin the Larger Work as well as the Larger Work as a whole may be\nlicensed under the terms of your choice.\n\n## 5. Term and Termination\n\nThe term of this License begins when You receive the Work, and\ncontinues until terminated for any of the reasons described herein, or\nuntil all Licensor's intellectual property rights in the Software\nexpire, whichever comes first (\"Term\"). This License cannot be\nrevoked, only terminated for the reasons listed below.\n\n### 5.1. Effect of Termination\n\nIf this License is terminated for any reason, all permissions granted\nto You under Section 3 by any Licensor automatically terminate. You\nwill immediately cease exercising any permissions granted in this\nLicense relative to the Work, including as part of any Modified Work.\n\n### 5.2. Termination for Non-Compliance; Reinstatement\n\nThis License terminates automatically if You fail to comply with any\nof the conditions in section 4. As a special exception to termination\nfor non-compliance, Your permissions for the Work under this License\nwill automatically be reinstated if You come into compliance with all\nthe conditions in section 2 within sixty (60) days of being notified\nby Licensor or an intended third-party beneficiary of Your\nnoncompliance. You are eligible for reinstatement of permissions for\nthe Work one time only, and only for the sixty days immediately after\nbecoming aware of noncompliance. Loss of permissions granted for the\nWork under this License due to either a) sustained noncompliance\nlasting more than sixty days or b) subsequent termination for\nnoncompliance after reinstatement, is permanent, unless rights are\nspecifically restored by Licensor in writing.\n\n### 5.3. Termination Due to Litigation\n\nIf You initiate litigation against Licensor, or any Recipient of the\nWork, either direct or indirect, asserting that the Work directly or\nindirectly infringes any patent, then all permissions granted to You\nby this License shall terminate. In the event of termination due to\nlitigation, all permissions validly granted by You under this License,\ndirectly or indirectly, shall survive termination. Administrative\nreview procedures, declaratory judgment actions, counterclaims in\nresponse to patent litigation, and enforcement actions against former\nLicensees terminated under this section do not cause termination due\nto litigation.\n\n## 6. Disclaimer of Warranty and Limit on Liability\n\nAs far as the law allows, the Work comes AS-IS, without any warranty\nof any kind, and no Licensor or contributor will be liable to anyone\nfor any damages related to this software or this license, under any\nkind of legal claim, or for any type of damages, including indirect,\nspecial, incidental, or consequential damages of any type arising as a\nresult of this License or the use of the Work including, without\nlimitation, damages for loss of goodwill, work stoppage, computer\nfailure or malfunction, loss of profits, revenue, or any and all other\ncommercial damages or losses.\n\n## 7. Other Provisions\n### 7.1. Affiliates\n\nAn \"Affiliate\" means any other entity that, directly or indirectly\nthrough one or more intermediaries, controls, is controlled by, or is\nunder common control with, the Licensee. Employees of a Licensee and\nnatural persons acting as contractors exclusively providing services\nto Licensee are also Affiliates.\n\n### 7.2. Choice of Jurisdiction and Governing Law\n\nA Licensor may require that any action or suit by a Licensee relating\nto a Work provided by Licensor under this License may be brought only\nin the courts of a particular jurisdiction and under the laws of a\nparticular jurisdiction (excluding its conflict-of-law provisions), if\nLicensor provides conspicuous notice of the particular jurisdiction to\nall Licensees.\n\n### 7.3. No Sublicensing\n\nThis License is not sublicensable. Each time You provide the Work or a\nModified Work to a Recipient, the Recipient automatically receives a\nlicense under the terms described in this License. You may not impose\nany further reservations, conditions, or other provisions on any\nRecipients' exercise of the permissions granted herein.\n\n### 7.4. Attorneys' Fees\n\nIn any action to enforce the terms of this License, or seeking damages\nrelating thereto, including by an intended third-party beneficiary,\nthe prevailing party shall be entitled to recover its costs and\nexpenses, including, without limitation, reasonable attorneys' fees\nand costs incurred in connection with such action, including any\nappeal of such action. A \"prevailing party\" is the party that\nachieves, or avoids, compliance with this License, including through\nsettlement. This section shall survive the termination of this\nLicense.\n\n### 7.5. No Waiver\n\nAny failure by Licensor to enforce any provision of this License will\nnot constitute a present or future waiver of such provision nor limit\nLicensor's ability to enforce such provision at a later time.\n\n### 7.6. Severability\n\nIf any provision of this License is held to be unenforceable, such\nprovision shall be reformed only to the extent necessary to make it\nenforceable. Any invalid or unenforceable portion will be interpreted\nto the effect and intent of the original portion. If such a\nconstruction is not possible, the invalid or unenforceable portion\nwill be severed from this License but the rest of this License will\nremain in full force and effect.\n\n### 7.7. License for the Text of this License\n\nThe text of this license is released under the Creative Commons\nAttribution-ShareAlike 4.0 International License, with the caveat that\nany modifications of this license may not use the name \"Cryptographic\nAutonomy License\" or any name confusingly similar thereto to describe\nany derived work of this License.", + "json": "cal-1.0-combined-work-exception.json", + "yaml": "cal-1.0-combined-work-exception.yml", + "html": "cal-1.0-combined-work-exception.html", + "license": "cal-1.0-combined-work-exception.LICENSE" + }, + { + "license_key": "caldera", + "category": "Permissive", + "spdx_license_key": "Caldera", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Caldera International, Inc. hereby grants a fee free license that includes the\nrights use, modify and distribute this named source code, including creating\nderived binary products created from the source code. The source code for which\nCaldera International, Inc. grants rights are limited to the following UNIX\nOperating Systems that operate on the 16-Bit PDP-11 CPU and early versions of\nthe 32-Bit UNIX Operating System, with specific exclusion of UNIX System III and\nUNIX System V and successor operating systems:\n\n32-bit 32V UNIX\n16 bit UNIX Versions 1, 2, 3, 4, 5, 6, 7\n\nCaldera International, Inc. makes no guarantees or commitments that any source\ncode is available from Caldera International, Inc.\n\nThe following copyright notice applies to the source code files for which this\nlicense is granted.\n\nCopyright(C) Caldera International Inc. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\nRedistributions of source code and documentation must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\nAll advertising materials mentioning features or use of this software must\ndisplay the following acknowledgement: This product includes software developed\nor owned by Caldera International, Inc.\n\nNeither the name of Caldera International, Inc. nor the names of other\ncontributors may be used to endorse or promote products derived from this\nsoftware without specific prior written permission.\n\nUSE OF THE SOFTWARE PROVIDED FOR UNDER THIS LICENSE BY CALDERA INTERNATIONAL,\nINC. AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CALDERA\nINTERNATIONAL, INC. BE LIABLE FOR ANY DIRECT, INDIRECT INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\nOF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\nIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY\nOF SUCH DAMAGE.", + "json": "caldera.json", + "yaml": "caldera.yml", + "html": "caldera.html", + "license": "caldera.LICENSE" + }, + { + "license_key": "can-ogl-2.0-en", + "category": "Permissive", + "spdx_license_key": "OGL-Canada-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Government Licence - Canada\n\nYou are encouraged to use the Information that is available under this licence with only a few conditions.\nUsing Information under this licence\n\n Use of any Information indicates your acceptance of the terms below.\n The Information Provider grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information, including for commercial purposes, subject to the terms below.\n\nYou are free to:\n\n Copy, modify, publish, translate, adapt, distribute or otherwise use the Information in any medium, mode or format for any lawful purpose.\n\nYou must, where you do any of the above:\n\n Acknowledge the source of the Information by including any attribution statement specified by the Information Provider(s) and, where possible, provide a link to this licence.\n If the Information Provider does not provide a specific attribution statement, or if you are using Information from several information providers and multiple attributions are not practical for your product or application, you must use the following attribution statement:\n\nContains information licensed under the Open Government Licence \u2013 Canada.\n\nThe terms of this licence are important, and if you fail to comply with any of them, the rights granted to you under this licence, or any similar licence granted by the Information Provider, will end automatically.\nExemptions\n\nThis licence does not grant you any right to use:\n\n Personal Information;\n third party rights the Information Provider is not authorized to license;\n the names, crests, logos, or other official symbols of the Information Provider; and\n Information subject to other intellectual property rights, including patents, trade-marks and official marks.\n\nNon-endorsement\n\nThis licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider endorses you or your use of the Information.\nNo Warranty\n\nThe Information is licensed \"as is\", and the Information Provider excludes all representations, warranties, obligations, and liabilities, whether express or implied, to the maximum extent permitted by law.\n\nThe Information Provider is not liable for any errors or omissions in the Information, and will not under any circumstances be liable for any direct, indirect, special, incidental, consequential, or other loss, injury or damage caused by its use or otherwise arising in connection with this licence or the Information, even if specifically advised of the possibility of such loss, injury or damage.\nGoverning Law\n\nThis licence is governed by the laws of the province of Ontario and the applicable laws of Canada.\n\nLegal proceedings related to this licence may only be brought in the courts of Ontario or the Federal Court of Canada.\nDefinitions\n\nIn this licence, the terms below have the following meanings:\n\n\"Information\"\n means information resources protected by copyright or other information that is offered for use under the terms of this licence.\n\"Information Provider\"\n means Her Majesty the Queen in right of Canada.\n\"Personal Information\"\n means \"personal information\" as defined in section 3 of the Privacy Act, R.S.C. 1985, c. P-21.\n\"You\"\n means the natural or legal person, or body of persons corporate or incorporate, acquiring rights under this licence.\n\nVersioning\n\nThis is version 2.0 of the Open Government Licence \u2013 Canada. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information.", + "json": "can-ogl-2.0-en.json", + "yaml": "can-ogl-2.0-en.yml", + "html": "can-ogl-2.0-en.html", + "license": "can-ogl-2.0-en.LICENSE" + }, + { + "license_key": "can-ogl-alberta-2.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-can-ogl-alberta-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Government Licence - Alberta\n\nYou are encouraged to use the Information that is available under this licence with only a few conditions.\n\nUsing Information under this licence\n\n Use of any Information indicates your acceptance of the terms below.\n The Information Provider grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information, including for commercial purposes, subject to the terms below.\n\nYou are free to:\n\n Copy, modify, publish, translate, adapt, distribute or otherwise use the Information in any medium, mode or format for any lawful purpose.\n\nYou must, where you do any of the above:\n\n Acknowledge the source of the Information by including any attribution statement specified by the Information Provider(s) and, where possible, provide a link to this licence.\n\nIf the Information Provider does not provide a specific attribution statement, or if you are using Information from several Information Providers and multiple attributions are not practical for your product or application, you must use the following attribution statement:\n\n Contains information licensed under the Open Government Licence \u2013 Alberta.\n\n The terms of this licence are important, and if you fail to comply with any of them, the rights granted to you under this licence, or any similar licence granted by the Information Provider, will end automatically.\n\nExemptions\n\n This licence does not grant you any right to use:\n\n Personal Information;\n Information or Records that are not accessible under applicable laws;\n third party rights the Information Provider is not authorized to license;\n the names, crests, logos, or other official symbols of the Information Provider; and\n Information subject to other intellectual property rights, including patents, trade-marks and official marks.\n\nNon-endorsement\n\nThis licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider endorses you or your use of the Information.\n\nNo warranty\n\nThe Information is licensed \"as is\", and the Information Provider excludes all representations, warranties, obligations, and liabilities, whether express or implied, to the maximum extent permitted by law.\nThe Information Provider is not liable for any errors or omissions in the Information, and will not under any circumstances be liable for any direct, indirect, special, incidental, consequential, or other loss, injury or damage caused by its use or otherwise arising in connection with this licence or the Information, even if specifically advised of the possibility of such loss, injury or damage.\n\nGoverning Law\n\nThis licence is governed by the laws of the province of Alberta and the applicable laws of Canada. \nLegal proceedings related to this licence may only be brought in the courts of Alberta.\n\nDefinitions\n\n In this licence, the terms below have the following meanings:\n\n\"Information\"\n\nmeans information resources or Records protected by copyright or other information or Records that are offered for use under the terms of this licence.\n\n\"Information Provider\"\n\nmeans Her Majesty the Queen in right of Alberta, and agencies, boards, commissions or provincial corporations of Her Majesty.\n\n\"Personal Information\"\n\nhas the meaning set out in section 1(n) of the Freedom of Information and Protection of Privacy Act (Alberta)\n\n\"Records\"\n\nhas the meaning set out in section 1(q) of the Freedom of Information and Protection of Privacy Act (Alberta)\n\n\"You\"\n\nmeans the natural or legal person, or body of persons corporate or incorporate, acquiring rights under this licence.\n\nVersioning\n\n This is version 2.1 of the Open Government Licence \u2013 Alberta. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information.", + "json": "can-ogl-alberta-2.1.json", + "yaml": "can-ogl-alberta-2.1.yml", + "html": "can-ogl-alberta-2.1.html", + "license": "can-ogl-alberta-2.1.LICENSE" + }, + { + "license_key": "can-ogl-british-columbia-2.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-can-ogl-british-columbia-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Government Licence - British Columbia\n\nNote: as per B.C. Government Copyright, the following licence only applies to records in the B.C. Data Catalogue that specify it.\n\nYou are encouraged to use the Information that is available under this licence with only a few conditions.\nUsing Information under this licence\n\n Use of any Information indicates your acceptance of the terms below.\n The Information Provider grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information, including for commercial purposes, subject to the terms below.\n\nYou are free to:\n\n Copy, modify, publish, translate, adapt, distribute or otherwise use the Information in any medium, mode or format for any lawful purpose.\n\nYou must, where you do any of the above:\n\n Acknowledge the source of the Information by including any attribution statement specified by the Information Provider(s) and, where possible, provide a link to this licence.\n\nIf the Information Provider does not provide a specific attribution statement, or if you are using Information from several Information Providers and multiple attributions are not practical for your product or application, you must use the following attribution statement:\n\nContains information licensed under the Open Government Licence \u2013 British Columbia.\n\n The terms of this licence are important, and if you fail to comply with any of them, the rights granted to you under this licence, or any similar licence granted by the Information Provider, will end automatically.\n\nExemptions\n\n This licence does not grant you any right to use:\n Personal Information;\n Information or Records not accessible under the Freedom of Information and Protection of Privacy Act (B.C.);\n third party rights the Information Provider is not authorized to licence;\n the names, crests, logos, or other official marks of the Information Provider; and\n Information subject to other intellectual property rights, including patents, trade-marks and official marks.\n\nNon-endorsement\n\n This licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider endorses you or your use of the Information.\n\nNo warranty\n\n The Information is licensed \"as is\", and the Information Provider excludes all representations, warranties, obligations, and liabilities, whether express or implied, to the maximum extent permitted by law.\n The Information Provider is not liable for any errors or omissions in the Information, and will not under any circumstances be liable for any direct, indirect, special, incidental, consequential, or other loss, injury or damage caused by its use or otherwise arising in connection with this licence or the Information, even if specifically advised of the possibility of such loss, injury or damage.\n\nGoverning Law\n\n This licence is governed by the laws of the province of British Columbia and the applicable laws of Canada.\n Legal proceedings related to this licence may only be brought in the courts of British Columbia.\n\nDefinitions\n\n In this licence, the terms below have the following meanings:\n\n\"Information\"\n\nmeans information resources or Records protected by copyright or other information or Records that is are offered for use under the terms of this licence.\n\n\"Information Provider\"\n\nmeans Her Majesty the Queen in right of the Province of British Columbia.\n\n\"Personal Information\"\n\nhas the meaning set out in Schedule 1 of the Freedom of Information and Protection of Privacy Act (B.C.).\n\n\"Records\"\n\nhas the meaning set out in section 29 of the Interpretation Act (B.C.).\n\n\"You\"\n\nmeans the natural or legal person, or body of persons corporate or incorporate, acquiring rights under this licence.\n\nVersioning\n\n This is version 2.0 of the Open Government Licence for Government of British Columbia Information. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the Information.", + "json": "can-ogl-british-columbia-2.0.json", + "yaml": "can-ogl-british-columbia-2.0.yml", + "html": "can-ogl-british-columbia-2.0.html", + "license": "can-ogl-british-columbia-2.0.LICENSE" + }, + { + "license_key": "can-ogl-nova-scotia-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-can-ogl-nova-scotia-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Government Licence \u2013 Nova Scotia\n\nYou are encouraged to use the Information that is available under this licence with only a few conditions.\nUsing Information under this licence\n\n Use of any Information indicates your acceptance of the terms below.\n The Information Provider grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information, including for commercial purposes, subject to the terms below.\n\nYou are free to:\n\n Copy, modify, publish, translate, adapt, distribute or otherwise use the Information in any medium, mode or format for any lawful purpose.\n\nYou must, where you do any of the above:\n\n Acknowledge the source of the Information by including any attribution statement specified by the Information Provider(s) and, where possible, provide a link to this licence.\n If the Information Provider does not provide a specific attribution statement, or if you are using Information from several information providers and multiple attributions are not practical for your product or application, you must use the following attribution statement:\n\n Contains information licensed under the Open Government Licence \u2013 Nova Scotia\n\nThe terms of this licence are important, and if you fail to comply with any of them, the rights granted to you under this licence, or any similar licence granted by the Information Provider, will end automatically.\nExemptions\n\nThis licence does not grant you any right to use:\n\n Personal Information;\n Information or Records not accessible under the Freedom of Information and Protection of Privacy Act (Nova Scotia) or any other applicable laws;\n third party rights the Information Provider is not authorized to license;\n the names, crests, logos, or other official symbols of the Information Provider; and\n Information subject to other intellectual property rights, including patents, trade-marks and official marks.\n\nNon-endorsement\n\nThis licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider endorses you or your use of the Information.\nNo Warranty\n\nThe Information is licensed \"as is\", and the Information Provider excludes all representations, warranties, obligations, and liabilities, whether express or implied, to the maximum extent permitted by law.\n\nThe Information Provider is not liable for any errors or omissions in the Information, and will not under any circumstances be liable for any direct, indirect, special, incidental, consequential, or other loss, injury or damage caused by its use or otherwise arising in connection with this licence or the Information, even if specifically advised of the possibility of such loss, injury or damage.\nGoverning Law\n\nThis licence is governed by the laws of the Province of Nova Scotia and the applicable laws of Canada.\n\nLegal proceedings related to this licence may only be brought in the courts of Nova Scotia.\nDefinitions\n\nIn this licence, the terms below have the following meanings:\n\n\"Information\"\n means information resources or Records protected by copyright or other information or Records that are offered for use under the terms of this licence.\n\"Information Provider\"\n means Her Majesty the Queen in right of Province of Nova Scotia.\n\"Personal Information\"\n means \"personal information\" as defined in section 3(1) of the Freedom of Information and Protection of Privacy Act (Nova Scotia).\n\"Records\"\n has the meaning of \"record\" set out in the Government Records Act (Nova Scotia).\n\"You\"\n means the natural or legal person, or body of persons corporate or incorporate, acquiring rights under this licence.\n\nVersioning\n\nThis is version 1.0 of the Open Government Licence \u2013 Nova Scotia. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information.", + "json": "can-ogl-nova-scotia-1.0.json", + "yaml": "can-ogl-nova-scotia-1.0.yml", + "html": "can-ogl-nova-scotia-1.0.html", + "license": "can-ogl-nova-scotia-1.0.LICENSE" + }, + { + "license_key": "can-ogl-ontario-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-can-ogl-ontario-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Government Licence \u2013 Ontario\n\nYou are encouraged to use the Information that is available under this licence with only a few conditions.\n\n\nUsing Information under this licence\n\n Use of any Information indicates your acceptance of the terms below.\n The Information Provider grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information, including for commercial purposes, subject to the terms below.\n\nYou are free to:\n\n Copy, modify, publish, translate, adapt, distribute or otherwise use the Information in any medium, mode or format for any lawful purpose.\n\nYou must, where you do any of the above:\n\n Acknowledge the source of the Information by including any attribution statement specified by the Information Provider(s) and, where possible, provide a link to this licence.\n\nIf the Information Provider does not provide a specific attribution statement, or if you are using Information from several Information Providers and multiple attributions are not practical for your product or application, you must use the following attribution statement:\n\nContains information licensed under the Open Government Licence \u2013 Ontario.\n\n The terms of this licence are important, and if you fail to comply with any of them, the rights granted to you under this licence, or any similar licence granted by the Information Provider, will end automatically.\n\nExemptions\n\n This licence does not grant you any right to use:\n Personal Information;\n Information or Records not accessible under the Freedom of Information and Protection of Privacy Act (Ontario);\n third party rights the Information Provider is not authorized to license;\n the names, crests, logos, or other official symbols of the Information Provider; and\n Information subject to other intellectual property rights, including patents, trade-marks and official marks.\n\nNon-endorsement\n\n This licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider endorses you or your use of the Information.\n\nNo warranty\n\n The Information is licensed \"as is\", and the Information Provider excludes all representations, warranties, obligations, and liabilities, whether express or implied, to the maximum extent permitted by law.\n The Information Provider is not liable for any errors or omissions in the Information, and will not under any circumstances be liable for any direct, indirect, special, incidental, consequential, or other loss, injury or damage caused by its use or otherwise arising in connection with this licence or the Information, even if specifically advised of the possibility of such loss, injury or damage.\n\nGoverning Law\n\n This licence is governed by the laws of the Province of Ontario and the applicable laws of Canada. \n Legal proceedings related to this licence may only be brought in the courts of Ontario.\n\nDefinitions\n\n\"Information\"\n means information resources or Records protected by copyright or other information or Records that are offered for use under the terms of this licence.\n\"Information Provider\"\n means Her Majesty the Queen in right of Ontario.\n\"Personal Information\"\n has the meaning set out in section 2(1) of Freedom of Information and Protection of Privacy Act (Ontario).\n\"Records\"\n has the meaning of \"record\" as set out in the Freedom of Information and Protection of Privacy Act (Ontario).\n\"You\"\n means the natural or legal person, or body of persons corporate or incorporate, acquiring rights under this licence.\n\n In this licence, the terms below have the following meanings:\n\nVersioning\n\n This is version 1.0 of the Open Government Licence \u2013 Ontario. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information.\n\nUpdated: September 6, 2018\nPublished: June 18, 2013", + "json": "can-ogl-ontario-1.0.json", + "yaml": "can-ogl-ontario-1.0.yml", + "html": "can-ogl-ontario-1.0.html", + "license": "can-ogl-ontario-1.0.LICENSE" + }, + { + "license_key": "can-ogl-toronto-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-can-ogl-toronto-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Government Licence \u2013 Toronto\n\nThis licence is based on version 1.0 of the Open Government Licence \u2013 Ontario, which was developed through public consultation and a collaborative effort by the provincial and federal government. The only substantive changes in this licence are to replace direct references to the Province of Ontario with the City of Toronto and the inclusion of a provision for the Ontario Personal Health Information Protection Act, 2004.\n\nYou are encouraged to use the Information that is available under this licence with only a few conditions.\nUsing Information under this licence\n\n Use of any Information indicates your acceptance of the terms below.\n The Information Provider grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information, including for commercial purposes, subject to the terms below.\n\nYou are free to:\n\n Copy, modify, publish, translate, adapt, distribute or otherwise use the Information in any medium, mode or format for any lawful purpose.\n\nYou must, where you do any of the above:\n\n Acknowledge the source of the Information by including any attribution statement specified by the Information Provider and, where possible, provide a link to this licence.\n\nIf the Information Provider does not provide a specific attribution statement, or if you are using Information from several information providers and multiple attributions are not practical for your product or application, you must use the following attribution statement:\n\n Contains information licensed under the Open Government Licence \u2013 Toronto.\n\n The terms of this licence are important, and if you fail to comply with any of them, the rights granted to you under this licence, or any similar licence granted by the Information Provider, will end automatically.\n\nExemptions\n\nThis licence does not grant you any right to use:\n\n Personal Information;\n Information not accessible under the Ontario Municipal Freedom of Information and Protection of Privacy Act or the Ontario Personal Health Information Protection Act, 2004;\n Third party rights the Information Provider is not authorized to licence;\n The names, crests, logos, or other official symbols of the Information Provider; and\n Information subject to other intellectual property rights, including patents, trade-marks and official marks.\n\nNon-endorsement\n\nThis licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider endorses you or your use of the Information.\n\nNo Warranty\n\nThe Information is licensed \"as is\", and the Information Provider excludes all representations, warranties, obligations, and liabilities, whether express or implied, to the maximum extent permitted by law.\nThe Information Provider is not liable for any errors or omissions in the Information, and will not under any circumstances be liable for any direct, indirect, special, incidental, consequential, or other loss, injury or damage caused by its use or otherwise arising in connection with this licence or the Information, even if specifically advised of the possibility of such loss, injury or damage.\n\nGoverning Law\n\nThis licence is governed by the laws of the province of Ontario and the applicable laws of Canada.\nLegal proceedings related to this licence may only be brought against the Information Provider in the courts of the Province of Ontario.\nDefinitions\n\nIn this licence, the terms below have the following meanings:\n\n\"Information\"\nmeans information resources or Records protected by copyright or other information resources or Records that are offered for use under the terms of this licence.\n\n\"Information Provider\"\nmeans the City of Toronto.\n\n\"Personal Information\"\nmeans \"personal information\" as defined in subsection 2(1) of the Ontario Municipal Freedom of Information and Protection of Privacy Act.\n\n\"Records\"\nmeans \"Records\" as defined in subsection 2(1) of the Ontario Municipal Freedom of Information and Protection of Privacy Act.\n\n\"You\"\nmeans the natural or legal person or body of persons corporate or incorporate, acquiring rights under this licence.\n\nVersioning\nThis is version 1.0 of the Open Government Licence \u2013 Toronto. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information.", + "json": "can-ogl-toronto-1.0.json", + "yaml": "can-ogl-toronto-1.0.yml", + "html": "can-ogl-toronto-1.0.html", + "license": "can-ogl-toronto-1.0.LICENSE" + }, + { + "license_key": "careware", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-careware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CAREWARE LICENSE\n\nThis script is released as \"CAREWARE\", it may be freely distributed, used,\nmodified and whatever, provided that the user, at least once per use, performs\nANY of the following\n\n1 - Smiles at somebody/something\n\n2 - Hugs or pats on the shoulder a friend/colleague/pet/furry little creature from Alpha Centauri\n\n3 - Acts nicely towards a friend/foreigner/alien/any other living being\n\n4 - Kisses his/her girlfriend/wife/boyfriend/husband/any other living being (de gustibus...)\n\n5 - Feels happy even without apparent reason\n\n6 - Stops whining for an hour, a day, a week, your choice\n\nImportant Note: if you don't like this idea, just ignore it -- you can have this anyway.\n\nThat's one way to distinguish the world of ideas from the rest of human history:\n\nyou can disregard an idea ...\n\n...and no one knocks on your door at midnight.\n\n(Unless it's your neighbour in need of a cup of sugar), in which case you MAY act NON-nicely\n\n\nSTANDARD DISCLAIMER\n\nThough every reasonable effort has been made in testing this script, the Author\naccepts no liability whatsoever. This script may or may not do whatever it is\nsupposed to do, it could even possibly completely destroy your software,\nhardware and set your house/office to fire.\n\nNo warranty implied, not even that of fitness for any particular purpose apart\ntaking up a little bit of your hard disk space.", + "json": "careware.json", + "yaml": "careware.yml", + "html": "careware.html", + "license": "careware.LICENSE" + }, + { + "license_key": "carnegie-mellon", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-carnegie-mellon", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this program for any purpose and\nwithout fee is hereby granted, provided that this copyright and permission\nnotice appear on all copies and supporting documentation, the name of Carnegie\nMellon not be used in advertising or publicity pertaining to distribution of the\nprogram without specific prior permission, and notice be given in supporting\ndocumentation that copying and distribution is by permission of Carnegie Mellon\nand Stanford University. Carnegie Mellon makes no representations about the\nsuitability of this software for any purpose. It is provided \"as is\" without\nexpress or implied warranty.", + "json": "carnegie-mellon.json", + "yaml": "carnegie-mellon.yml", + "html": "carnegie-mellon.html", + "license": "carnegie-mellon.LICENSE" + }, + { + "license_key": "carnegie-mellon-contributors", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-carnegie-mellon-contributors", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify and distribute this software and its\ndocumentation is hereby granted, provided that both the copyright notice and\nthis permission notice appear in all copies of the software, derivative works or\nmodified versions, and any portions thereof, and that both notices appear in\nsupporting documentation.\n\nCARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS \"AS IS\" CONDITION.\nCARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER\nRESULTING FROM THE USE OF THIS SOFTWARE.\n\nCarnegie Mellon requests users of this software to return to\n\n Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU \n School of Computer Science \n Carnegie Mellon University \n Pittsburgh PA 15213-3890\n\nany improvements or extensions that they make and grant Carnegie the rights to\nredistribute these changes.", + "json": "carnegie-mellon-contributors.json", + "yaml": "carnegie-mellon-contributors.yml", + "html": "carnegie-mellon-contributors.html", + "license": "carnegie-mellon-contributors.LICENSE" + }, + { + "license_key": "cavium-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cavium-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Software License Agreement\n\nANY USE, REPRODUCTION, OR DISTRIBUTION OF THE ACCOMPANYING BINARY SOFTWARE\nCONSTITUTES LICENSEEE'S ACCEPTANCE OF THE TERMS AND CONDITIONS OF THIS AGREEMENT.\n\nLicensed Software. Subject to the terms and conditions of this Agreement,\nCavium, Inc. (\"Cavium\") grants to Licensee a worldwide, non-exclusive, and\nroyalty-free license to use, reproduce, and distribute the binary software in\nits complete and unmodified form as provided by Cavium.\n\nRestrictions. Licensee must reproduce the Cavium copyright notice above with\neach binary software copy. Licensee must not reverse engineer, decompile,\ndisassemble or modify in any way the binary software. Licensee must not use\nthe binary software in violation of any applicable law or regulation. This\nAgreement shall automatically terminate upon Licensee's breach of any term or\ncondition of this Agreement in which case, Licensee shall destroy all copies of\nthe binary software.\n\nWarranty Disclaimer. THE LICENSED SOFTWARE IS OFFERED \"AS IS,\" AND CAVIUM\nGRANTS AND LICENSEE RECEIVES NO WARRANTIES OF ANY KIND, WHETHER EXPRESS,\nIMPLIED, STATUTORY, OR BY COURSE OF COMMUNICATION OR DEALING WITH LICENSEE, OR\nOTHERWISE. CAVIUM AND ITS LICENSORS SPECIFICALLY DISCLAIM ANY IMPLIED\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, OR\nNONINFRINGEMENT OF THIRD PARTY RIGHTS, CONCERNING THE LICENSED SOFTWARE,\nDERIVATIVE WORKS, OR ANY DOCUMENTATION PROVIDED WITH THE FOREGOING. WITHOUT\nLIMITING THE GENERALITY OF THE FOREGOING, CAVIUM DOES NOT WARRANT THAT THE\nLICENSED SOFTWARE IS ERROR-FREE OR WILL OPERATE WITHOUT INTERRUPTION, AND\nCAVIUM GRANTS NO WARRANTY REGARDING ITS USE OR THE RESULTS THEREFROM, INCLUDING\nITS CORRECTNESS, ACCURACY, OR RELIABILITY.\n\nLimitation of Liability. IN NO EVENT WILL LICENSEE, CAVIUM, OR ANY OF CAVIUM'S\nLICENSORS HAVE ANY LIABILITY HEREUNDER FOR ANY INDIRECT, SPECIAL, OR\nCONSEQUENTIAL DAMAGES, HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER\nFOR BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, ARISING OUT\nOF THIS AGREEMENT, INCLUDING DAMAGES FOR LOSS OF PROFITS, OR THE COST OF\nPROCUREMENT OF SUBSTITUTE GOODS, EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nExport and Import Laws. Licensee acknowledges and agrees that the Licensed\nSoftware (including technical data and related technology) may be controlled by\nthe export control laws, rules, regulations, restrictions and national security\ncontrols of the United States and other applicable foreign agencies (the\n\"Export Controls\"), and agrees not export or re-export, or allow the export or\nre-export of export-controlled the Licensed Software (including technical data\nand related technology) or any copy, portion or direct product of the foregoing\nin violation of the Export Controls. Licensee hereby represents that\n(i) Licensee is not an entity or person to whom provision of the Licensed\nSoftware (including technical data and related technology) is restricted or\nprohibited by the Export Controls; and (ii) Licensee will not export, re-export\nor otherwise transfer the export-controlled Licensed Software (including\ntechnical data and related technology) in violation of U.S. sanction programs\nor export control regulations to (a) any country, or national or resident of\nany country, subject to a United States trade embargo, (b) any person or entity\nto whom shipment is restricted or prohibited by the Export Controls, or\n(c) anyone who is engaged in activities related to the design, development,\nproduction, or use of nuclear materials, nuclear facilities, nuclear weapons,\nmissiles or chemical or biological weapons.", + "json": "cavium-linux-firmware.json", + "yaml": "cavium-linux-firmware.yml", + "html": "cavium-linux-firmware.html", + "license": "cavium-linux-firmware.LICENSE" + }, + { + "license_key": "cavium-malloc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cavium-malloc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, distribute, and sell this software and its\ndocumentation for any purpose is hereby granted without fee, provided that (i)\nthe above copyright notices and this permission notice appear in all copies of\nthe software and related documentation, and (ii) the name of Wolfram Gloger may\nnot be used in any advertising or publicity relating to the software.\n\nTHE SOFTWARE IS PROVIDED \"AS-IS\" AND WITHOUT WARRANTY OF ANY KIND,\nEXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY\nWARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.\n\nIN NO EVENT SHALL WOLFRAM GLOGER BE LIABLE FOR ANY SPECIAL,\nINCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY\nDAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY\nOF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.", + "json": "cavium-malloc.json", + "yaml": "cavium-malloc.yml", + "html": "cavium-malloc.html", + "license": "cavium-malloc.LICENSE" + }, + { + "license_key": "cavium-targeted-hardware", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-cavium-targeted-hardware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice,\nthis list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n\n This product includes software developed by Cavium Networks\n\n4. Cavium Networks' name may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n\n5. User agrees to enable and utilize only the features and performance\n purchased on the target hardware.\n\nThis Software,including technical data,may be subject to U.S. export control\nlaws, including the U.S. Export Administration Act and its associated\nregulations, and may be subject to export or import regulations in other\ncountries. You warrant that You will comply strictly in all respects with all\nsuch regulations and acknowledge that you have the responsibility to obtain\nlicenses to export, re-export or import the Software.\n\nTO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED \"AS IS\" AND\nWITH ALL FAULTS AND CAVIUM MAKES NO PROMISES, REPRESENTATIONS OR WARRANTIES,\nEITHER EXPRESS,IMPLIED,STATUTORY, OR OTHERWISE, WITH RESPECT TO THE SOFTWARE,\nINCLUDING ITS CONDITION,ITS CONFORMITY TO ANY REPRESENTATION OR DESCRIPTION,\nOR THE EXISTENCE OF ANY LATENT OR PATENT DEFECTS, AND CAVIUM SPECIFICALLY\nDISCLAIMS ALL IMPLIED (IF ANY) WARRANTIES OF TITLE, MERCHANTABILITY,\nNONINFRINGEMENT,FITNESS FOR A PARTICULAR PURPOSE,LACK OF VIRUSES, ACCURACY OR\nCOMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION OR CORRESPONDENCE TO\nDESCRIPTION. THE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE\nSOFTWARE LIES WITH YOU.", + "json": "cavium-targeted-hardware.json", + "yaml": "cavium-targeted-hardware.yml", + "html": "cavium-targeted-hardware.html", + "license": "cavium-targeted-hardware.LICENSE" + }, + { + "license_key": "cc-by-1.0", + "category": "Permissive", + "spdx_license_key": "CC-BY-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution 1.0\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto create and reproduce Derivative Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works;\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.\n\n4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., \"French translation of the Work by Original Author,\" or \"Screenplay based on original Work by Original Author\"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\n5. Representations, Warranties and Disclaimer\n\nBy offering the Work for public release under this License, Licensor represents and warrants that, to the best of Licensor's knowledge after reasonable inquiry:\nLicensor has secured all rights in the Work necessary to grant the license rights hereunder and to permit the lawful exercise of the rights granted hereunder without You having any obligation to pay any royalties, compulsory license fees, residuals or any other payments;\nThe Work does not infringe the copyright, trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party.\nEXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF THE WORK.\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nEach time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", + "json": "cc-by-1.0.json", + "yaml": "cc-by-1.0.yml", + "html": "cc-by-1.0.html", + "license": "cc-by-1.0.LICENSE" + }, + { + "license_key": "cc-by-2.0", + "category": "Permissive", + "spdx_license_key": "CC-BY-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution 2.0\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this License.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto create and reproduce Derivative Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works.\nFor the avoidance of doubt, where the work is a musical composition:\n\nPerformance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work.\nMechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work (\"cover version\") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions).\nWebcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions).\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.\n\n4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., \"French translation of the Work by Original Author,\" or \"Screenplay based on original Work by Original Author\"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nEach time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", + "json": "cc-by-2.0.json", + "yaml": "cc-by-2.0.yml", + "html": "cc-by-2.0.html", + "license": "cc-by-2.0.LICENSE" + }, + { + "license_key": "cc-by-2.0-uk", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cc-by-2.0-uk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution 2.0 England and Wales\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicence\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENCE (\"CCPL\" OR \"LICENCE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENCE OR COPYRIGHT LAW IS PROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENCE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\nThis Creative Commons England and Wales Public Licence enables You (all capitalised terms defined below) to view, edit, modify, translate and distribute Works worldwide, provided that You credit the Original Author.\n\n'The Licensor' [one or more legally recognised persons or entities offering the Work under the terms and conditions of this Licence]\n\nand\n\n'You'\n\nagree as follows:\n\n1. Definitions\n\n\"Attribution\" means acknowledging all the parties who have contributed to and have rights in the Work, Derivative Work or Collective Work under this Licence.\n\"Collective Work\" means the Work in its entirety in unmodified form along with a number of other separate and independent works, assembled into a collective whole.\n\"Derivative Work\" means any work created by the editing, modification, adaptation or translation of the Work in any media (however a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this Licence). For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this Licence.\n\"Licence\" means this Creative Commons England and Wales Public Licence agreement.\n\"Original Author\" means the individual (or entity) who created the Work.\n\"Work\" means the work protected by copyright which is offered under the terms of this Licence.\nFor the purpose of this Licence, when not inconsistent with the context, words in the singular number include the plural number.\n2. Licence Terms\n\n2.1 The Licensor hereby grants to You a worldwide, royalty-free, non-exclusive, Licence for use and for the duration of copyright in the Work.\n\nYou may:\n\ncopy the Work;\ncreate one or more Derivative Works;\nincorporate the Work into one or more Collective Works;\ncopy Derivative Works or the Work as incorporated in any Collective Work; and\npublish, distribute, archive, perform or otherwise disseminate the Work, Derivative Works or the Work as incorporated in any Collective Work, to the public in any material form in any media whether now known or hereafter created.\n\nHOWEVER,\n\nYou must not:\n\nimpose any terms on the use to be made of the Work, the Derivative Work or the Work as incorporated in a Collective Work that alter or restrict the terms of this Licence or any rights granted under it or has the effect or intent of restricting the ability to exercise those rights;\nimpose any digital rights management technology on the Work, the Derivative Work or the Work as incorporated in a Collective Work that alters or restricts the terms of this Licence or any rights granted under it or has the effect or intent of restricting the ability to exercise those rights;\nsublicense the Work;\nsubject the Work to any derogatory treatment as defined in the Copyright, Designs and Patents Act 1988.\n\nFINALLY,\n\nYou must:\n\nmake reference to this Licence (by Uniform Resource Identifier (URI), spoken word or as appropriate to the media used) on all copies of the Work and Derivative Works and Collective Works published, distributed, performed or otherwise disseminated or made available to the public by You;\nrecognise the Licensor's / Original Author's right of attribution in any Work, Derivative Work and Collective Work that You publish, distribute, perform or otherwise disseminate to the public and ensure that You credit the Licensor / Original Author as appropriate to the media used; and\nto the extent reasonably practicable, keep intact all notices that refer to this Licence, in particular the URI, if any, that the Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work.\nAdditional Provisions for third parties making use of the Work\n\n2.2. Further licence from the Licensor\n\nEach time You publish, distribute, perform or otherwise disseminate\n\nthe Work; or\nany Derivative Work; or\nthe Work as incorporated in a Collective Work\nthe Licensor agrees to offer to the relevant third party making use of the Work (in any of the alternatives set out above) a licence to use the Work on the same terms and conditions as granted to You hereunder.\n\n2.3. This Licence does not affect any rights that the User may have under any applicable law, including fair use, fair dealing or any other legally recognised limitation or exception to copyright infringement.\n\n2.4. All rights not expressly granted by the Licensor are hereby reserved, including but not limited to, the exclusive right to collect, whether individually or via a licensing body, such as a collecting society, royalties for any use of the Work.\n\n3. Warranties and Disclaimer\n\nExcept as required by law, the Work or any Derivative Work is licensed by the Licensor on an \"as is\" and \"as available\" basis and without any warranty of any kind, either express or implied.\n\n4. Limit of Liability\n\nSubject to any liability which may not be excluded or limited by law the Licensor shall not be liable and hereby expressly excludes all liability for loss or damage howsoever and whenever caused to You.\n\n5. Termination\n\nThe rights granted to You under this Licence shall terminate automatically upon any breach by You of the terms of this Licence. Individuals or entities who have received Derivative Works or Collective Works from You under this Licence, however, will not have their Licences terminated provided such individuals or entities remain in full compliance with those Licences.\n\n6. General\n\n6.1. The validity or enforceability of the remaining terms of this agreement is not affected by the holding of any provision of it to be invalid or unenforceable.\n\n6.2. This Licence constitutes the entire Licence Agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. The Licensor shall not be bound by any additional provisions that may appear in any communication in any form.\n\n6.3. A person who is not a party to this Licence shall have no rights under the Contracts (Rights of Third Parties) Act 1999 to enforce any of its terms.\n\n6.4. This Licence shall be governed by the law of England and Wales and the parties irrevocably submit to the exclusive jurisdiction of the Courts of England and Wales.\n\n7. On the role of Creative Commons\n\n7.1. Neither the Licensor nor the User may use the Creative Commons logo except to indicate that the Work is licensed under a Creative Commons Licence. Any permitted use has to be in compliance with the Creative Commons trade mark usage guidelines at the time of use of the Creative Commons trade mark. These guidelines may be found on the Creative Commons website or be otherwise available upon request from time to time.\n\n7.2. Creative Commons Corporation does not profit financially from its role in providing this Licence and will not investigate the claims of any Licensor or user of the Licence.\n\n7.3. One of the conditions that Creative Commons Corporation requires of the Licensor and You is an acknowledgement of its limited role and agreement by all who use the Licence that the Corporation is not responsible to anyone for the statements and actions of You or the Licensor or anyone else attempting to use or using this Licence.\n\n7.4. Creative Commons Corporation is not a party to this Licence, and makes no warranty whatsoever in connection to the Work or in connection to the Licence, and in all events is not liable for any loss or damage resulting from the Licensor's or Your reliance on this Licence or on its enforceability.\n\n7.5. USE OF THIS LICENCE MEANS THAT YOU AND THE LICENSOR EACH ACCEPTS THESE CONDITIONS IN SECTION 7.1, 7.2, 7.3, 7.4 AND EACH ACKNOWLEDGES CREATIVE COMMONS CORPORATION'S VERY LIMITED ROLE AS A FACILITATOR OF THE LICENCE FROM THE LICENSOR TO YOU.\n\nCreative Commons is not a party to this Licence, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this licence. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", + "json": "cc-by-2.0-uk.json", + "yaml": "cc-by-2.0-uk.yml", + "html": "cc-by-2.0-uk.html", + "license": "cc-by-2.0-uk.LICENSE" + }, + { + "license_key": "cc-by-2.5", + "category": "Permissive", + "spdx_license_key": "CC-BY-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution 2.5\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this License.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto create and reproduce Derivative Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works.\nFor the avoidance of doubt, where the work is a musical composition:\n\nPerformance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work.\nMechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work (\"cover version\") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions).\nWebcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions).\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.\n\n4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(b), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by clause 4(b), as requested.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., \"French translation of the Work by Original Author,\" or \"Screenplay based on original Work by Original Author\"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nEach time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", + "json": "cc-by-2.5.json", + "yaml": "cc-by-2.5.yml", + "html": "cc-by-2.5.html", + "license": "cc-by-2.5.LICENSE" + }, + { + "license_key": "cc-by-2.5-au", + "category": "Permissive", + "spdx_license_key": "CC-BY-2.5-AU", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Attribution 2.5 Australia\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\n\nLicence\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENCE (\"CCPL\" OR \"LICENCE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORISED UNDER THIS LICENCE AND/OR APPLICABLE LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENCE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n 1. Definitions\n\n a. \"Collective Work\" means a work, such as a periodical issue, anthology or encyclopaedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this Licence.\n\n b. \"Derivative Work\" means a work that reproduces a substantial part of the Work, or of the Work and other pre-existing works protected by copyright, or that is an adaptation of a Work that is a literary, dramatic, musical or artistic work. Derivative Works include a translation, musical arrangement, dramatisation, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which a work may be adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this Licence. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this Licence.\n\n c. \"Licensor\" means the individual or entity that offers the Work under the terms of this Licence.\n\n d. \"Moral rights law\" means laws under which an individual who creates a work protected by copyright has rights of integrity of authorship of the work, rights of attribution of authorship of the work, rights not to have authorship of the work falsely attributed, or rights of a similar or analogous nature in the work anywhere in the world.\n\n e. \"Original Author\" means the individual or entity who created the Work.\n\n f. \"Work\" means the work or other subject-matter protected by copyright that is offered under the terms of this Licence, which may include (without limitation) a literary, dramatic, musical or artistic work, a sound recording or cinematograph film, a published edition of a literary, dramatic, musical or artistic work or a television or sound broadcast.\n\n g. \"You\" means an individual or entity exercising rights under this Licence who has not previously violated the terms of this Licence with respect to the Work, or who has received express permission from the Licensor to exercise rights under this Licence despite a previous violation.\n\n h. \"Licence Elements\" means the following high-level licence attributes as selected by Licensor and indicated in the title of this Licence: Attribution, NonCommercial, NoDerivatives, ShareAlike.\n\n2. Fair Dealing and Other Rights. Nothing in this Licence excludes or modifies, or is intended to exclude or modify, (including by reducing, limiting, or restricting) the rights of You or others to use the Work arising from fair dealings or other limitations on the rights of the copyright owner or the Original Author under copyright law, moral rights law or other applicable laws.\n\n3. Licence Grant. Subject to the terms and conditions of this Licence, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) licence to exercise the rights in the Work as stated below:\n\n a. to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\n\n b. to create and reproduce Derivative Works;\n\n c. to publish, communicate to the public, distribute copies or records of, exhibit or display publicly, perform publicly and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\n\n d. to publish, communicate to the public, distribute copies or records of, exhibit or display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works;\n\n e. For the avoidance of doubt, where the Work is a musical composition:\n\n i. Performance Royalties Under Blanket Licences. Licensor will not collect, whether individually or via a performance rights society, royalties for Your communication to the public, broadcast, public performance or public digital performance (e.g. webcast) of the Work.\n\n ii. Mechanical Rights and Statutory Royalties. Licensor will not collect, whether individually or via a music rights agency, designated agent or a music publisher, royalties for any record You create from the Work (\"cover version\") and distribute, subject to the compulsory licence created by 17 USC Section 115 of the US Copyright Act (or an equivalent statutory licence under the Australian Copyright Act or in other jurisdictions).\n\n\n f. Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor will not collect, whether individually or via a performance-rights society, royalties for Your public digital performance (e.g. webcast) of the Work, subject to the compulsory licence created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions).\n\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor under this Licence are hereby reserved.\n\n4. Restrictions. The licence granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\n a. You may publish, communicate to the public, distribute, publicly exhibit or display, publicly perform, or publicly digitally perform the Work only under the terms of this Licence, and You must include a copy of, or the Uniform Resource Identifier for, this Licence with every copy or record of the Work You publish, communicate to the public, distribute, publicly exhibit or display, publicly perform or publicly digitally perform. You may not offer or impose any terms on the Work that exclude, alter or restrict the terms of this Licence or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this Licence and to the disclaimer of representations and warranties. You may not publish, communicate to the public, distribute, publicly exhibit or display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this Licence. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this Licence. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by Section 4(b), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by Section 4(b), as requested.\n\n b. If you publish, communicate to the public, distribute, publicly exhibit or display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work. You must also give clear and reasonably prominent credit to (i) the Original Author (by name or pseudonym if applicable), if the name or pseudonym is supplied; and (ii) if another party or parties (eg a sponsor institute, publishing entity or journal) is designated for attribution in the copyright notice, terms of service or other reasonable means associated with the Work, such party or parties. If applicable, that credit must be given in the particular way made known by the Original Author and otherwise as reasonable to the medium or means You are utilizing, by conveying the identity of the Original Author and the other designated party or parties (if applicable); the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., \"French translation of the Work by Original Author,\" or \"Screenplay based on original Work by Original Author\"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\n\n c. False attribution prohibited. Except as otherwise agreed in writing by the Licensor, if You publish, communicate to the public, distribute, publicly exhibit or display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works in accordance with this Licence, You must not falsely attribute the Work to someone other than the Original Author.\n\n d. Prejudice to honour or reputation prohibited. Except as otherwise agreed in writing by the Licensor, if you publish, communicate to the public, distribute, publicly exhibit or display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must not do anything that results in a material distortion of, the mutilation of, or a material alteration to, the Work that is prejudicial to the Original Author's honour or reputation, and You must not do anything else in relation to the Work that is prejudicial to the Original Author's honour or reputation.\n\n5. Disclaimer.\n\nEXCEPT AS EXPRESSLY STATED IN THIS LICENCE OR OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, AND TO THE FULL EXTENT PERMITTED BY APPLICABLE LAW, LICENSOR OFFERS THE WORK \"AS-IS\" AND MAKES NO REPRESENTATIONS, WARRANTIES OR CONDITIONS OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, ANY REPRESENTATIONS, WARRANTIES OR CONDITIONS REGARDING THE CONTENTS OR ACCURACY OF THE WORK, OR OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, THE ABSENCE OF LATENT OR OTHER DEFECTS, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE.\n\n6. Limitation on Liability.\n\nTO THE FULL EXTENT PERMITTED BY APPLICABLE LAW, AND EXCEPT FOR ANY LIABILITY ARISING FROM CONTRARY MUTUAL AGREEMENT AS REFERRED TO IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE) FOR ANY LOSS OR DAMAGE WHATSOEVER, INCLUDING (WITHOUT LIMITATION) LOSS OF PRODUCTION OR OPERATION TIME, LOSS, DAMAGE OR CORRUPTION OF DATA OR RECORDS; OR LOSS OF ANTICIPATED SAVINGS, OPPORTUNITY, REVENUE, PROFIT OR GOODWILL, OR OTHER ECONOMIC LOSS; OR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH THIS LICENCE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nIf applicable legislation implies warranties or conditions, or imposes obligations or liability on the Licensor in respect of this Licence that cannot be wholly or partly excluded, restricted or modified, the Licensor's liability is limited, to the full extent permitted by the applicable legislation, at its option, to:\n\n a. in the case of goods, any one or more of the following:\n\n i. the replacement of the goods or the supply of equivalent goods;\n\n ii. the repair of the goods;\n\n iii. the payment of the cost of replacing the goods or of acquiring equivalent goods;\n\n iv. the payment of the cost of having the goods repaired; or\n\n b. in the case of services:\n\n i. the supplying of the services again; or\n\n ii. the payment of the cost of having the services supplied again.\n\n7. Termination.\n\n a. This Licence and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this Licence. Individuals or entities who have received Derivative Works or Collective Works from You under this Licence, however, will not have their licences terminated provided such individuals or entities remain in full compliance with those licences. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this Licence.\n\n b. Subject to the above terms and conditions, the licence granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different licence terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this Licence (or any other licence that has been, or is required to be, granted under the terms of this Licence), and this Licence will continue in full force and effect unless terminated as stated above.\n\n8. Miscellaneous.\n\n a. Each time You publish, communicate to the public, distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a licence to the Work on the same terms and conditions as the licence granted to You under this Licence.\n\n b. Each time You publish, communicate to the public, distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a licence to the original Work on the same terms and conditions as the licence granted to You under this Licence.\n\n c. If any provision of this Licence is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Licence, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\n d. No term or provision of this Licence shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\n\n e. This Licence constitutes the entire agreement between the parties with respect to the Work licensed here. To the full extent permitted by applicable law, there are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This Licence may not be modified without the mutual written agreement of the Licensor and You.\n\n f. The construction, validity and performance of this Licence shall be governed by the laws in force in New South Wales, Australia.\n\nCreative Commons is not a party to this Licence, and, to the full extent permitted by applicable law, makes no representation or warranty whatsoever in connection with the Work. To the full extent permitted by applicable law, Creative Commons will not be liable to You or any party on any legal theory (including, without limitation, negligence) for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this licence. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at https://creativecommons.org/.", + "json": "cc-by-2.5-au.json", + "yaml": "cc-by-2.5-au.yml", + "html": "cc-by-2.5-au.html", + "license": "cc-by-2.5-au.LICENSE" + }, + { + "license_key": "cc-by-3.0", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Legal Code\n\nAttribution 3.0 Unported\n\n CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\n LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN\n ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS\n INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES\n REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR\n DAMAGES RESULTING FROM ITS USE.\n\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE\nCOMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY\nCOPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS\nAUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE\nTO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY\nBE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS\nCONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND\nCONDITIONS.\n\n1. Definitions\n\n a. \"Adaptation\" means a work based upon the Work, or upon the Work and\n other pre-existing works, such as a translation, adaptation,\n derivative work, arrangement of music or other alterations of a\n literary or artistic work, or phonogram or performance and includes\n cinematographic adaptations or any other form in which the Work may be\n recast, transformed, or adapted including in any form recognizably\n derived from the original, except that a work that constitutes a\n Collection will not be considered an Adaptation for the purpose of\n this License. For the avoidance of doubt, where the Work is a musical\n work, performance or phonogram, the synchronization of the Work in\n timed-relation with a moving image (\"synching\") will be considered an\n Adaptation for the purpose of this License.\n b. \"Collection\" means a collection of literary or artistic works, such as\n encyclopedias and anthologies, or performances, phonograms or\n broadcasts, or other works or subject matter other than works listed\n in Section 1(f) below, which, by reason of the selection and\n arrangement of their contents, constitute intellectual creations, in\n which the Work is included in its entirety in unmodified form along\n with one or more other contributions, each constituting separate and\n independent works in themselves, which together are assembled into a\n collective whole. A work that constitutes a Collection will not be\n considered an Adaptation (as defined above) for the purposes of this\n License.\n c. \"Distribute\" means to make available to the public the original and\n copies of the Work or Adaptation, as appropriate, through sale or\n other transfer of ownership.\n d. \"Licensor\" means the individual, individuals, entity or entities that\n offer(s) the Work under the terms of this License.\n e. \"Original Author\" means, in the case of a literary or artistic work,\n the individual, individuals, entity or entities who created the Work\n or if no individual or entity can be identified, the publisher; and in\n addition (i) in the case of a performance the actors, singers,\n musicians, dancers, and other persons who act, sing, deliver, declaim,\n play in, interpret or otherwise perform literary or artistic works or\n expressions of folklore; (ii) in the case of a phonogram the producer\n being the person or legal entity who first fixes the sounds of a\n performance or other sounds; and, (iii) in the case of broadcasts, the\n organization that transmits the broadcast.\n f. \"Work\" means the literary and/or artistic work offered under the terms\n of this License including without limitation any production in the\n literary, scientific and artistic domain, whatever may be the mode or\n form of its expression including digital form, such as a book,\n pamphlet and other writing; a lecture, address, sermon or other work\n of the same nature; a dramatic or dramatico-musical work; a\n choreographic work or entertainment in dumb show; a musical\n composition with or without words; a cinematographic work to which are\n assimilated works expressed by a process analogous to cinematography;\n a work of drawing, painting, architecture, sculpture, engraving or\n lithography; a photographic work to which are assimilated works\n expressed by a process analogous to photography; a work of applied\n art; an illustration, map, plan, sketch or three-dimensional work\n relative to geography, topography, architecture or science; a\n performance; a broadcast; a phonogram; a compilation of data to the\n extent it is protected as a copyrightable work; or a work performed by\n a variety or circus performer to the extent it is not otherwise\n considered a literary or artistic work.\n g. \"You\" means an individual or entity exercising rights under this\n License who has not previously violated the terms of this License with\n respect to the Work, or who has received express permission from the\n Licensor to exercise rights under this License despite a previous\n violation.\n h. \"Publicly Perform\" means to perform public recitations of the Work and\n to communicate to the public those public recitations, by any means or\n process, including by wire or wireless means or public digital\n performances; to make available to the public Works in such a way that\n members of the public may access these Works from a place and at a\n place individually chosen by them; to perform the Work to the public\n by any means or process and the communication to the public of the\n performances of the Work, including by public digital performance; to\n broadcast and rebroadcast the Work by any means including signs,\n sounds or images.\n i. \"Reproduce\" means to make copies of the Work by any means including\n without limitation by sound or visual recordings and the right of\n fixation and reproducing fixations of the Work, including storage of a\n protected performance or phonogram in digital form or other electronic\n medium.\n\n2. Fair Dealing Rights. Nothing in this License is intended to reduce,\nlimit, or restrict any uses free from copyright or rights arising from\nlimitations or exceptions that are provided for in connection with the\ncopyright protection under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License,\nLicensor hereby grants You a worldwide, royalty-free, non-exclusive,\nperpetual (for the duration of the applicable copyright) license to\nexercise the rights in the Work as stated below:\n\n a. to Reproduce the Work, to incorporate the Work into one or more\n Collections, and to Reproduce the Work as incorporated in the\n Collections;\n b. to create and Reproduce Adaptations provided that any such Adaptation,\n including any translation in any medium, takes reasonable steps to\n clearly label, demarcate or otherwise identify that changes were made\n to the original Work. For example, a translation could be marked \"The\n original work was translated from English to Spanish,\" or a\n modification could indicate \"The original work has been modified.\";\n c. to Distribute and Publicly Perform the Work including as incorporated\n in Collections; and,\n d. to Distribute and Publicly Perform Adaptations.\n e. For the avoidance of doubt:\n\n i. Non-waivable Compulsory License Schemes. In those jurisdictions in\n which the right to collect royalties through any statutory or\n compulsory licensing scheme cannot be waived, the Licensor\n reserves the exclusive right to collect such royalties for any\n exercise by You of the rights granted under this License;\n ii. Waivable Compulsory License Schemes. In those jurisdictions in\n which the right to collect royalties through any statutory or\n compulsory licensing scheme can be waived, the Licensor waives the\n exclusive right to collect such royalties for any exercise by You\n of the rights granted under this License; and,\n iii. Voluntary License Schemes. The Licensor waives the right to\n collect royalties, whether individually or, in the event that the\n Licensor is a member of a collecting society that administers\n voluntary licensing schemes, via that society, from any exercise\n by You of the rights granted under this License.\n\nThe above rights may be exercised in all media and formats whether now\nknown or hereafter devised. The above rights include the right to make\nsuch modifications as are technically necessary to exercise the rights in\nother media and formats. Subject to Section 8(f), all rights not expressly\ngranted by Licensor are hereby reserved.\n\n4. Restrictions. The license granted in Section 3 above is expressly made\nsubject to and limited by the following restrictions:\n\n a. You may Distribute or Publicly Perform the Work only under the terms\n of this License. You must include a copy of, or the Uniform Resource\n Identifier (URI) for, this License with every copy of the Work You\n Distribute or Publicly Perform. You may not offer or impose any terms\n on the Work that restrict the terms of this License or the ability of\n the recipient of the Work to exercise the rights granted to that\n recipient under the terms of the License. You may not sublicense the\n Work. You must keep intact all notices that refer to this License and\n to the disclaimer of warranties with every copy of the Work You\n Distribute or Publicly Perform. When You Distribute or Publicly\n Perform the Work, You may not impose any effective technological\n measures on the Work that restrict the ability of a recipient of the\n Work from You to exercise the rights granted to that recipient under\n the terms of the License. This Section 4(a) applies to the Work as\n incorporated in a Collection, but this does not require the Collection\n apart from the Work itself to be made subject to the terms of this\n License. If You create a Collection, upon notice from any Licensor You\n must, to the extent practicable, remove from the Collection any credit\n as required by Section 4(b), as requested. If You create an\n Adaptation, upon notice from any Licensor You must, to the extent\n practicable, remove from the Adaptation any credit as required by\n Section 4(b), as requested.\n b. If You Distribute, or Publicly Perform the Work or any Adaptations or\n Collections, You must, unless a request has been made pursuant to\n Section 4(a), keep intact all copyright notices for the Work and\n provide, reasonable to the medium or means You are utilizing: (i) the\n name of the Original Author (or pseudonym, if applicable) if supplied,\n and/or if the Original Author and/or Licensor designate another party\n or parties (e.g., a sponsor institute, publishing entity, journal) for\n attribution (\"Attribution Parties\") in Licensor's copyright notice,\n terms of service or by other reasonable means, the name of such party\n or parties; (ii) the title of the Work if supplied; (iii) to the\n extent reasonably practicable, the URI, if any, that Licensor\n specifies to be associated with the Work, unless such URI does not\n refer to the copyright notice or licensing information for the Work;\n and (iv) , consistent with Section 3(b), in the case of an Adaptation,\n a credit identifying the use of the Work in the Adaptation (e.g.,\n \"French translation of the Work by Original Author,\" or \"Screenplay\n based on original Work by Original Author\"). The credit required by\n this Section 4 (b) may be implemented in any reasonable manner;\n provided, however, that in the case of a Adaptation or Collection, at\n a minimum such credit will appear, if a credit for all contributing\n authors of the Adaptation or Collection appears, then as part of these\n credits and in a manner at least as prominent as the credits for the\n other contributing authors. For the avoidance of doubt, You may only\n use the credit required by this Section for the purpose of attribution\n in the manner set out above and, by exercising Your rights under this\n License, You may not implicitly or explicitly assert or imply any\n connection with, sponsorship or endorsement by the Original Author,\n Licensor and/or Attribution Parties, as appropriate, of You or Your\n use of the Work, without the separate, express prior written\n permission of the Original Author, Licensor and/or Attribution\n Parties.\n c. Except as otherwise agreed in writing by the Licensor or as may be\n otherwise permitted by applicable law, if You Reproduce, Distribute or\n Publicly Perform the Work either by itself or as part of any\n Adaptations or Collections, You must not distort, mutilate, modify or\n take other derogatory action in relation to the Work which would be\n prejudicial to the Original Author's honor or reputation. Licensor\n agrees that in those jurisdictions (e.g. Japan), in which any exercise\n of the right granted in Section 3(b) of this License (the right to\n make Adaptations) would be deemed to be a distortion, mutilation,\n modification or other derogatory action prejudicial to the Original\n Author's honor and reputation, the Licensor will waive or not assert,\n as appropriate, this Section, to the fullest extent permitted by the\n applicable national law, to enable You to reasonably exercise Your\n right under Section 3(b) of this License (right to make Adaptations)\n but not otherwise.\n\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR\nOFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY\nKIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,\nINCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,\nFITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF\nLATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS,\nWHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION\nOF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE\nLAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR\nANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES\nARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS\nBEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\n a. This License and the rights granted hereunder will terminate\n automatically upon any breach by You of the terms of this License.\n Individuals or entities who have received Adaptations or Collections\n from You under this License, however, will not have their licenses\n terminated provided such individuals or entities remain in full\n compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will\n survive any termination of this License.\n b. Subject to the above terms and conditions, the license granted here is\n perpetual (for the duration of the applicable copyright in the Work).\n Notwithstanding the above, Licensor reserves the right to release the\n Work under different license terms or to stop distributing the Work at\n any time; provided, however that any such election will not serve to\n withdraw this License (or any other license that has been, or is\n required to be, granted under the terms of this License), and this\n License will continue in full force and effect unless terminated as\n stated above.\n\n8. Miscellaneous\n\n a. Each time You Distribute or Publicly Perform the Work or a Collection,\n the Licensor offers to the recipient a license to the Work on the same\n terms and conditions as the license granted to You under this License.\n b. Each time You Distribute or Publicly Perform an Adaptation, Licensor\n offers to the recipient a license to the original Work on the same\n terms and conditions as the license granted to You under this License.\n c. If any provision of this License is invalid or unenforceable under\n applicable law, it shall not affect the validity or enforceability of\n the remainder of the terms of this License, and without further action\n by the parties to this agreement, such provision shall be reformed to\n the minimum extent necessary to make such provision valid and\n enforceable.\n d. No term or provision of this License shall be deemed waived and no\n breach consented to unless such waiver or consent shall be in writing\n and signed by the party to be charged with such waiver or consent.\n e. This License constitutes the entire agreement between the parties with\n respect to the Work licensed here. There are no understandings,\n agreements or representations with respect to the Work not specified\n here. Licensor shall not be bound by any additional provisions that\n may appear in any communication from You. This License may not be\n modified without the mutual written agreement of the Licensor and You.\n f. The rights granted under, and the subject matter referenced, in this\n License were drafted utilizing the terminology of the Berne Convention\n for the Protection of Literary and Artistic Works (as amended on\n September 28, 1979), the Rome Convention of 1961, the WIPO Copyright\n Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996\n and the Universal Copyright Convention (as revised on July 24, 1971).\n These rights and subject matter take effect in the relevant\n jurisdiction in which the License terms are sought to be enforced\n according to the corresponding provisions of the implementation of\n those treaty provisions in the applicable national law. If the\n standard suite of rights granted under applicable copyright law\n includes additional rights not granted under this License, such\n additional rights are deemed to be included in the License; this\n License is not intended to restrict the license of any rights under\n applicable law.\n\n\nCreative Commons Notice\n\n Creative Commons is not a party to this License, and makes no warranty\n whatsoever in connection with the Work. Creative Commons will not be\n liable to You or any party on any legal theory for any damages\n whatsoever, including without limitation any general, special,\n incidental or consequential damages arising in connection to this\n license. Notwithstanding the foregoing two (2) sentences, if Creative\n Commons has expressly identified itself as the Licensor hereunder, it\n shall have all rights and obligations of Licensor.\n\n Except for the limited purpose of indicating to the public that the\n Work is licensed under the CCPL, Creative Commons does not authorize\n the use by either party of the trademark \"Creative Commons\" or any\n related trademark or logo of Creative Commons without the prior\n written consent of Creative Commons. Any permitted use will be in\n compliance with Creative Commons' then-current trademark usage\n guidelines, as may be published on its website or otherwise made\n available upon request from time to time. For the avoidance of doubt,\n this trademark restriction does not form part of this License.\n\n Creative Commons may be contacted at https://creativecommons.org/.", + "json": "cc-by-3.0.json", + "yaml": "cc-by-3.0.yml", + "html": "cc-by-3.0.html", + "license": "cc-by-3.0.LICENSE" + }, + { + "license_key": "cc-by-3.0-at", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0-AT", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Namensnennung 3.0 \u00d6sterreich\n\nCREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ F\u00dcHRT ZU KEINEM MANDATSVERH\u00c4LTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEW\u00c4HR ZUR VERF\u00dcGUNG. CREATIVE COMMONS \u00dcBERNIMMT KEINE GEW\u00c4HRLEISTUNG F\u00dcR DIE GELIEFERTEN INFORMATIONEN UND SCHLIE\u00dfT DIE HAFTUNG F\u00dcR SCH\u00c4DEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN.\n\nLizenz\n\nDER GEGENSTAND DIESER LIZENZ (WIE UNTER \"SCHUTZGEGENSTAND\" DEFINIERT) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\", \"LIZENZ\" ODER \"LIZENZVERTRAG\") ZUR VERF\u00dcGUNG GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER ANDERE GESETZE GESCH\u00dcTZT. JEDE FORM DER NUTZUNG DES SCHUTZGEGENSTANDES, DIE NICHT AUFGRUND DIESER LIZENZ ODER DURCH GESETZE GESTATTET IST, IST UNZUL\u00c4SSIG.\n\nDURCH DIE AUS\u00dcBUNG EINES DURCH DIESE LIZENZ GEW\u00c4HRTEN RECHTS AN DEM SCHUTZGEGENSTAND ERKL\u00c4REN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH EINVERSTANDEN. SOWEIT DIESE LIZENZ ALS LIZENZVERTRAG ANZUSEHEN IST, GEW\u00c4HRT IHNEN DER LIZENZGEBER DIE IN DER LIZENZ GENANNTEN RECHTE UNENTGELTLICH UND IM AUSTAUSCH DAF\u00dcR, DASS SIE DAS GEBUNDENSEIN AN DIE LIZENZBEDINGUNGEN AKZEPTIEREN.\n\n1. Definitionen\n\n a. Der Begriff \"Bearbeitung\" im Sinne dieser Lizenz bezeichnet das Ergebnis jeglicher Art von Ver\u00e4nderung des Schutzgegenstandes, solange dieses erkennbar vom Schutzgegenstand abgeleitet wurde. Dies kann insbesondere auch eine Umgestaltung, \u00c4nderung, Anpassung, \u00dcbersetzung oder Heranziehung des Schutzgegenstandes zur Vertonung von Laufbildern sein. Nicht als Bearbeitung des Schutzgegenstandes gelten seine Aufnahme in eine Sammlung oder ein Sammelwerk und die freie Nutzung des Schutzgegenstandes.\n\n b. Der Begriff \"Sammelwerk\" im Sinne dieser Lizenz meint eine Zusammenstellung von literarischen, k\u00fcnstlerischen oder wissenschaftlichen Inhalten zu einem einheitlichen Ganzen, sofern diese Zusammenstellung aufgrund von Auswahl und Anordnung der darin enthaltenen selbst\u00e4ndigen Elemente eine eigent\u00fcmliche geistige Sch\u00f6pfung darstellt, unabh\u00e4ngig davon, ob die Elemente systematisch oder methodisch angelegt und dadurch einzeln zug\u00e4nglich sind oder nicht.\n\n c. \"Verbreiten\" im Sinne dieser Lizenz bedeutet, den Schutzgegenstand oder Bearbeitungen im Original oder in Form von Vervielf\u00e4ltigungsst\u00fccken, mithin in k\u00f6rperlich fixierter Form der \u00d6ffentlichkeit zug\u00e4nglich zu machen oder in Verkehr zu bringen.\n\n d. Der \"Lizenzgeber\" im Sinne dieser Lizenz ist diejenige nat\u00fcrliche oder juristische Person oder Gruppe, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet und insoweit als Rechteinhaberin auftritt.\n\n e. \"Rechteinhaber\" im Sinne dieser Lizenz ist der Urheber des Schutzgegenstandes oder jede andere nat\u00fcrliche oder juristische Person, die am Schutzgegenstand ein Immaterialg\u00fcterrecht erlangt hat, welches die in Abschnitt 3 genannten Handlungen erfasst und eine Erteilung, \u00dcbertragung oder Einr\u00e4umung von Nutzungsbewilligungen bzw Nutzungsrechten an Dritte erlaubt.\n\n f. Der Begriff \"Schutzgegenstand\" bezeichnet in dieser Lizenz den literarischen, k\u00fcnstlerischen oder wissenschaftlichen Inhalt, der unter den Bedingungen dieser Lizenz angeboten wird. Das kann insbesondere eine eigent\u00fcmliche geistige Sch\u00f6pfung jeglicher Art oder ein Werk der kleinen M\u00fcnze, ein nachgelassenes Werk oder auch ein Lichtbild oder anderes Objekt eines verwandten Schutzrechts sein, unabh\u00e4ngig von der Art seiner Fixierung und unabh\u00e4ngig davon, auf welche Weise jeweils eine Wahrnehmung erfolgen kann, gleichviel ob in analoger oder digitaler Form. Soweit Datenbanken oder Zusammenstellungen von Daten einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen, unterfallen auch sie dem Begriff \u201eSchutzgegenstand\u201c im Sinne dieser Lizenz.\n\n g. Mit \"Sie\" bzw. \"Ihnen\" ist die nat\u00fcrliche oder juristische Person gemeint, die in dieser Lizenz im Abschnitt 3 genannte Nutzungen des Schutzgegenstandes vornimmt und zuvor in Hinblick auf den Schutzgegenstand nicht gegen Bedingungen dieser Lizenz versto\u00dfen oder aber die ausdr\u00fcckliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese Lizenz gew\u00e4hrte Nutzungsbewilligung trotz eines vorherigen Versto\u00dfes auszu\u00fcben.\n\n h. Unter \"\u00d6ffentlich Wiedergeben\" im Sinne dieser Lizenz sind Wahrnehmbarmachungen des Schutzgegenstandes in unk\u00f6rperlicher Form zu verstehen, die f\u00fcr eine Mehrzahl von Mitgliedern der \u00d6ffentlichkeit bestimmt sind und mittels \u00f6ffentlicher Wiedergabe in Form von Vortrag, Auff\u00fchrung, Vorf\u00fchrung, Darbietung, Sendung, Weitersendung oder zeit- und ortsunabh\u00e4ngiger Zurverf\u00fcgungstellung erfolgen, unabh\u00e4ngig von den zum Einsatz kommenden Techniken und Verfahren, einschlie\u00dflich drahtgebundener oder drahtloser Mittel und Einstellen in das Internet.\n\n i. \"Vervielf\u00e4ltigen\" im Sinne dieser Lizenz bedeutet, gleichviel in welchem Verfahren, auf welchem Tr\u00e4ger, in welcher Menge und ob vor\u00fcbergehend oder dauerhaft, Vervielf\u00e4ltigungsst\u00fccke des Schutzgegenstandes herzustellen, insbesondere durch Ton- oder Bildaufzeichnungen, und umfasst auch das erstmalige Festhalten des Schutzgegenstandes oder dessen Wahrnehmbarmachung auf Mitteln der wiederholbaren Wiedergabe sowie das Herstellen von Vervielf\u00e4ltigungsst\u00fccken dieser Festhaltung, sowie die Speicherung einer gesch\u00fctzten Darbietung oder eines Bild- und/oder Schalltr\u00e4gers in digitaler Form oder auf einem anderen elektronischen Medium.\n\n2. Beschr\u00e4nkungen der Verwertungsrechte\n\nDiese Lizenz ist in keiner Weise darauf gerichtet, Befugnisse zur Nutzung des Schutzgegenstandes zu vermindern, zu beschr\u00e4nken oder zu vereiteln, die sich aus den Beschr\u00e4nkungen der Verwertungsrechte, anderen Beschr\u00e4nkungen der Ausschlie\u00dflichkeitsrechte des Rechtsinhabers oder anderen entsprechenden Rechtsnormen oder sich aus dem Fehlen eines immaterialg\u00fcterrechtlichen Schutzes ergeben.\n\n3. Lizenzierung\n\nUnter den Bedingungen dieser Lizenz erteilt Ihnen der Lizenzgeber - unbeschadet unverzichtbarer Rechte und vorbehaltlich des Abschnitts 3.e) - die verg\u00fctungsfreie, r\u00e4umlich und zeitlich (f\u00fcr die Dauer des Urheberrechts oder verwandten Schutzrechts am Schutzgegenstand) unbeschr\u00e4nkte Nutzungsbewilligung, den Schutzgegenstand in der folgenden Art und Weise zu nutzen:\n\n a. Den Schutzgegenstand in beliebiger Form und Menge zu vervielf\u00e4ltigen, ihn in Sammelwerke zu integrieren und ihn als Teil solcher Sammelwerke zu vervielf\u00e4ltigen;\n\n b. Den Schutzgegenstand zu bearbeiten, einschlie\u00dflich \u00dcbersetzungen unter Nutzung jedweder Medien anzufertigen, sofern deutlich erkennbar gemacht wird, dass es sich um eine Bearbeitung handelt;\n\n c. Den Schutzgegenstand, allein oder in Sammelwerke aufgenommen, \u00f6ffentlich wiederzugeben und zu verbreiten; und\n\n d. Bearbeitungen des Schutzgegenstandes zu ver\u00f6ffentlichen, \u00f6ffentlich wiederzugeben und zu verbreiten.\n\n e. Bez\u00fcglich der Verg\u00fctung f\u00fcr die Nutzung des Schutzgegenstandes gilt Folgendes:\n\n i. Unverzichtbare gesetzliche Verg\u00fctungsanspr\u00fcche: Soweit unverzichtbare Verg\u00fctungsanspr\u00fcche im Gegenzug f\u00fcr gesetzliche Lizenzen vorgesehen oder Pauschalabgabensysteme (zum Beispiel f\u00fcr Leermedien) vorhanden sind, beh\u00e4lt sich der Lizenzgeber das ausschlie\u00dfliche Recht vor, die entsprechenden Verg\u00fctungsanspr\u00fcche f\u00fcr jede Aus\u00fcbung eines Rechts aus dieser Lizenz durch Sie geltend zu machen.\n\n ii. Verg\u00fctung bei Zwangslizenzen: Sofern Zwangslizenzen au\u00dferhalb dieser Lizenz vorgesehen sind und zustande kommen, verzichtet der Lizenzgeber f\u00fcr alle F\u00e4lle einer lizenzgerechten Nutzung des Schutzgegenstandes durch Sie auf jegliche Verg\u00fctung.\n\n iii. Verg\u00fctung in sonstigen F\u00e4llen: Bez\u00fcglich lizenzgerechter Nutzung des Schutzgegenstandes durch Sie, die nicht unter die beiden vorherigen Abschnitte (i) und (ii) f\u00e4llt, verzichtet der Lizenzgeber auf jegliche Verg\u00fctung, unabh\u00e4ngig davon, ob eine Geltendmachung der Verg\u00fctungsanspr\u00fcche durch ihn selbst oder nur durch eine Verwertungsgesellschaft m\u00f6glich w\u00e4re.\n\nDie vorgenannte Nutzungsbewilligung wird f\u00fcr alle bekannten sowie alle noch nicht bekannten Nutzungsarten einger\u00e4umt. Sie beinhaltet auch das Recht, solche \u00c4nderungen am Schutzgegenstand vorzunehmen, die f\u00fcr bestimmte nach dieser Lizenz zul\u00e4ssige Nutzungen technisch erforderlich sind. Alle sonstigen Rechte, die \u00fcber diesen Abschnitt hinaus nicht ausdr\u00fccklich vom Lizenzgeber einger\u00e4umt werden, bleiben diesem allein vorbehalten. Soweit Datenbanken oder Zusammenstellungen von Daten Schutzgegenstand dieser Lizenz oder Teil dessen sind und einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen, verzichtet der Lizenzgeber auf die Geltendmachung s\u00e4mtlicher daraus resultierender Rechte.\n\n4. Bedingungen\n\nDie Erteilung der Nutzungsbewilligung gem\u00e4\u00df Abschnitt 3 dieser Lizenz erfolgt ausdr\u00fccklich nur unter den folgenden Bedingungen:\n\n a. Sie d\u00fcrfen den Schutzgegenstand ausschlie\u00dflich unter den Bedingungen dieser Lizenz verbreiten oder \u00f6ffentlich wiedergeben. Sie m\u00fcssen dabei stets eine Kopie dieser Lizenz oder deren vollst\u00e4ndige Internetadresse in Form des Uniform-Resource-Identifier (URI) beif\u00fcgen. Sie d\u00fcrfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen dieser Lizenz oder die durch diese Lizenz gew\u00e4hrten Rechte beschr\u00e4nken. Sie d\u00fcrfen den Schutzgegenstand nicht unterlizenzieren. Bei jeder Kopie des Schutzgegenstandes, die Sie verbreiten oder \u00f6ffentlich wiedergeben, m\u00fcssen Sie alle Hinweise unver\u00e4ndert lassen, die auf diese Lizenz und den Haftungsausschluss hinweisen. Wenn Sie den Schutzgegenstand verbreiten oder \u00f6ffentlich wiedergeben, d\u00fcrfen Sie (in Bezug auf den Schutzgegenstand) keine technischen Ma\u00dfnahmen ergreifen, die den Nutzer des Schutzgegenstandes in der Aus\u00fcbung der ihm durch diese Lizenz gew\u00e4hrten Rechte behindern k\u00f6nnen. Dasselbe gilt auch f\u00fcr den Fall, dass der Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt dieser Lizenz unterstellt werden muss. Sofern Sie ein Sammelwerk erstellen, m\u00fcssen Sie - soweit dies praktikabel ist - auf die Mitteilung eines Lizenzgebers hin aus dem Sammelwerk die in Abschnitt 4.b) aufgez\u00e4hlten Hinweise entfernen. Wenn Sie eine Bearbeitung vornehmen, m\u00fcssen Sie \u2013 soweit dies praktikabel ist \u2013 auf die Mitteilung eines Lizenzgebers hin von der Bearbeitung die in Abschnitt 4.b) aufgez\u00e4hlten Hinweise entfernen.\n\n b. Die Verbreitung und die \u00f6ffentliche Wiedergabe des Schutzgegenstandes oder auf ihm aufbauender Inhalte oder ihn enthaltender Sammelwerke ist Ihnen nur unter der Bedingung gestattet, dass Sie, vorbehaltlich etwaiger Mitteilungen im Sinne von Abschnitt 4.a), alle dazu geh\u00f6renden Rechtevermerke unber\u00fchrt lassen. Sie sind verpflichtet, die Urheberschaft oder die Rechteinhaberschaft in einer der Nutzung entsprechenden, angemessenen Form anzuerkennen, indem Sie selbst \u2013 soweit bekannt \u2013 Folgendes angeben:\n\n i. Den Namen (oder das Pseudonym, falls ein solches verwendet wird) Rechteinhabers, und/oder falls der Lizenzgeber im Rechtevermerk, in den Nutzungsbedingungen oder auf andere angemessene Weise eine Zuschreibung an Dritte vorgenommen hat (z.B. an eine Stiftung, ein Verlagshaus oder eine Zeitung) (\u201eZuschreibungsempf\u00e4nger\u201c), Namen bzw. Bezeichnung dieses oder dieser Dritten;\n\n ii. den Titel des Inhaltes;\n\n iii. in einer praktikablen Form den Uniform-Resource-Identifier (URI, z.B. Internetadresse), den der Lizenzgeber zum Schutzgegenstand angegeben hat, es sei denn, dieser URI verweist nicht auf den Rechtevermerk oder die Lizenzinformationen zum Schutzgegenstand;\n\n iv. und im Falle einer Bearbeitung des Schutzgegenstandes in \u00dcbereinstimmung mit Abschnitt 3.b) einen Hinweis darauf, dass es sich um eine Bearbeitung handelt.\n\n Die nach diesem Abschnitt 4.b) erforderlichen Angaben k\u00f6nnen in jeder angemessenen Form gemacht werden; im Falle einer Bearbeitung des Schutzgegenstandes oder eines Sammelwerkes m\u00fcssen diese Angaben das Minimum darstellen und bei gemeinsamer Nennung aller Beitragenden dergestalt erfolgen, dass sie zumindest ebenso hervorgehoben sind wie die Hinweise auf die \u00fcbrigen Rechteinhaber. Die Angaben nach diesem Abschnitt d\u00fcrfen Sie ausschlie\u00dflich zur Angabe der Rechteinhaberschaft in der oben bezeichneten Weise verwenden. Durch die Aus\u00fcbung Ihrer Rechte aus dieser Lizenz d\u00fcrfen Sie ohne eine vorherige, separat und schriftlich vorliegende Zustimmung des Urhebers, des Lizenzgebers und/oder des Zuschreibungsempf\u00e4ngers weder implizit noch explizit irgendeine Verbindung mit dem oder eine Unterst\u00fctzung oder Billigung durch den Urheber, den Lizenzgeber oder den Zuschreibungsempf\u00e4nger andeuten oder erkl\u00e4ren.\n\n c. Die oben unter 4.a) und b) genannten Einschr\u00e4nkungen gelten nicht f\u00fcr solche Teile des Schutzgegenstandes, die allein deshalb unter den Schutzgegenstandsbegriff fallen, weil sie als Datenbanken oder Zusammenstellungen von Daten einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen.\n\n d. (Urheber)Pers\u00f6nlichkeitsrechte bleiben - soweit sie bestehen - von dieser Lizenz unber\u00fchrt.\n\n5. Gew\u00e4hrleistung\n\nSOFERN KEINE ANDERS LAUTENDE, SCHRIFTLICHE VEREINBARUNG ZWISCHEN DEM LIZENZGEBER UND IHNEN GESCHLOSSEN WURDE UND SOWEIT M\u00c4NGEL NICHT ARGLISTIG VERSCHWIEGEN WURDEN, BIETET DER LIZENZGEBER DEN SCHUTZGEGENSTAND UND DIE ERTEILUNG DER NUTZUNGSBEWILLIGUNG UNTER AUSSCHLUSS JEGLICHER GEW\u00c4HRLEISTUNG AN UND \u00dcBERNIMMT WEDER AUSDR\u00dcCKLICH NOCH KONKLUDENT GARANTIEN IRGENDEINER ART. DIES UMFASST INSBESONDERE DAS FREISEIN VON SACH- UND RECHTSM\u00c4NGELN, UNABH\u00c4NGIG VON DEREN ERKENNBARKEIT F\u00dcR DEN LIZENZGEBER, DIE VERKEHRSF\u00c4HIGKEIT DES SCHUTZGEGENSTANDES, SEINE VERWENDBARKEIT F\u00dcR EINEN BESTIMMTEN ZWECK SOWIE DIE KORREKTHEIT VON BESCHREIBUNGEN.\n\n6. Haftungsbeschr\u00e4nkung\n\n\u00dcBER DIE IN ZIFFER 5 GENANNTE GEW\u00c4HRLEISTUNG HINAUS HAFTET DER LIZENZGEBER IHNEN GEGEN\u00dcBER F\u00dcR SCH\u00c4DEN JEGLICHER ART NUR BEI GROBER FAHRL\u00c4SSIGKEIT ODER VORSATZ, UND \u00dcBERNIMMT DAR\u00dcBER HINAUS KEINERLEI FREIWILLIGE HAFTUNG F\u00dcR FOLGE- ODER ANDERE SCH\u00c4DEN, AUCH WENN ER \u00dcBER DIE M\u00d6GLICHKEIT IHRES EINTRITTS UNTERRICHTET WURDE.\n\n7. Erl\u00f6schen\n\n a. Diese Lizenz und die durch sie erteilte Nutzungsbewilligung erl\u00f6schen mit Wirkung f\u00fcr die Zukunft im Falle eines Versto\u00dfes gegen die Lizenzbedingungen durch Sie, ohne dass es dazu der Kenntnis des Lizenzgebers vom Versto\u00df oder einer weiteren Handlung einer der Vertragsparteien bedarf. Mit nat\u00fcrlichen oder juristischen Personen, die Bearbeitungen des Schutzgegenstandes oder diesen enthaltende Sammelwerke sowie entsprechende Vervielf\u00e4ltigungsst\u00fccke unter den Bedingungen dieser Lizenz von Ihnen erhalten haben, bestehen nachtr\u00e4glich entstandene Lizenzbeziehungen jedoch solange weiter, wie die genannten Personen sich ihrerseits an s\u00e4mtliche Lizenzbedingungen halten. Dar\u00fcber hinaus gelten die Ziffern 1, 2, 5, 6, 7, und 8 auch nach einem Erl\u00f6schen dieser Lizenz fort.\n\n b. Vorbehaltlich der oben genannten Bedingungen gilt diese Lizenz unbefristet bis der rechtliche Schutz f\u00fcr den Schutzgegenstand ausl\u00e4uft. Davon abgesehen beh\u00e4lt der Lizenzgeber das Recht, den Schutzgegenstand unter anderen Lizenzbedingungen anzubieten oder die eigene Weitergabe des Schutzgegenstandes jederzeit einzustellen, solange die Aus\u00fcbung dieses Rechts nicht einer K\u00fcndigung oder einem Widerruf dieser Lizenz (oder irgendeiner Weiterlizenzierung, die auf Grundlage dieser Lizenz bereits erfolgt ist bzw. zuk\u00fcnftig noch erfolgen muss) dient und diese Lizenz unter Ber\u00fccksichtigung der oben zum Erl\u00f6schen genannten Bedingungen vollumf\u00e4nglich wirksam bleibt.\n\n8. Sonstige Bestimmungen\n\n a. Jedes Mal wenn Sie den Schutzgegenstand f\u00fcr sich genommen oder als Teil eines Sammelwerkes verbreiten oder \u00f6ffentlich wiedergeben, bietet der Lizenzgeber dem Empf\u00e4nger eine Lizenz zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz.\n\n b. Jedes Mal wenn Sie eine Bearbeitung des Schutzgegenstandes verbreiten oder \u00f6ffentlich wiedergeben, bietet der Lizenzgeber dem Empf\u00e4nger eine Lizenz am urspr\u00fcnglichen Schutzgegenstand zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz.\n\n c. Sollte eine Bestimmung dieser Lizenz unwirksam sein, so bleibt davon die Wirksamkeit der Lizenz im \u00dcbrigen unber\u00fchrt.\n\n d. Keine Bestimmung dieser Lizenz soll als abbedungen und kein Versto\u00df gegen sie als zul\u00e4ssig gelten, solange die von dem Verzicht oder von dem Versto\u00df betroffene Seite nicht schriftlich zugestimmt hat.\n\n e. Diese Lizenz (zusammen mit in ihr ausdr\u00fccklich vorgesehenen Erlaubnissen, Mitteilungen und Zustimmungen, soweit diese tats\u00e4chlich vorliegen) stellt die vollst\u00e4ndige Vereinbarung zwischen dem Lizenzgeber und Ihnen in Bezug auf den Schutzgegenstand dar. Es bestehen keine Abreden, Vereinbarungen oder Erkl\u00e4rungen in Bezug auf den Schutzgegenstand, die in dieser Lizenz nicht genannt sind. Rechtsgesch\u00e4ftliche \u00c4nderungen des Verh\u00e4ltnisses zwischen dem Lizenzgeber und Ihnen sind nur \u00fcber Modifikationen dieser Lizenz m\u00f6glich. Der Lizenzgeber ist an etwaige zus\u00e4tzliche, einseitig durch Sie \u00fcbermittelte Bestimmungen nicht gebunden. Diese Lizenz kann nur durch schriftliche Vereinbarung zwischen Ihnen und dem Lizenzgeber modifiziert werden. Derlei Modifikationen wirken ausschlie\u00dflich zwischen dem Lizenzgeber und Ihnen und wirken sich nicht auf die Dritten gem\u00e4\u00df 8.a) und b) angebotenen Lizenzen aus.\n\n f. Sofern zwischen Ihnen und dem Lizenzgeber keine anderweitige Vereinbarung getroffen wurde und soweit Wahlfreiheit besteht, findet auf diesen Lizenzvertrag das Recht der Republik \u00d6sterreich Anwendung.\n\nCreative Commons Notice\n\nCreative Commons ist nicht Partei dieser Lizenz und \u00fcbernimmt keinerlei Gew\u00e4hr oder dergleichen in Bezug auf den Schutzgegenstand. Creative Commons haftet Ihnen oder einer anderen Partei unter keinem rechtlichen Gesichtspunkt f\u00fcr irgendwelche Sch\u00e4den, die - abstrakt oder konkret, zuf\u00e4llig oder vorhersehbar - im Zusammenhang mit dieser Lizenz entstehen. Unbeschadet der vorangegangen beiden S\u00e4tze, hat Creative Commons alle Rechte und Pflichten eines Lizenzgebers, wenn es sich ausdr\u00fccklich als Lizenzgeber im Sinne dieser Lizenz bezeichnet.\n\nCreative Commons gew\u00e4hrt den Parteien nur insoweit das Recht, das Logo und die Marke \"Creative Commons\" zu nutzen, als dies notwendig ist, um der \u00d6ffentlichkeit gegen\u00fcber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein dar\u00fcber hinaus gehender Gebrauch der Marke \"Creative Commons\" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website ver\u00f6ffentlicht oder auf andere Weise auf Anfrage zug\u00e4nglich gemacht wird. Zur Klarstellung: Die genannten Einschr\u00e4nkungen der Markennutzung sind nicht Bestandteil dieser Lizenz.\n\nCreative Commons kann kontaktiert werden \u00fcber https://creativecommons.org/.", + "json": "cc-by-3.0-at.json", + "yaml": "cc-by-3.0-at.yml", + "html": "cc-by-3.0-at.html", + "license": "cc-by-3.0-at.LICENSE" + }, + { + "license_key": "cc-by-3.0-de", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Namensnennung 3.0 Deutschland\n\n CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ F\u00dcHRT ZU KEINEM MANDATSVERH\u00c4LTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEW\u00c4HR ZUR VERF\u00dcGUNG. CREATIVE COMMONS \u00dcBERNIMMT KEINE GEW\u00c4HRLEISTUNG F\u00dcR DIE GELIEFERTEN INFORMATIONEN UND SCHLIE\u00dfT DIE HAFTUNG F\u00dcR SCH\u00c4DEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN.\n\nLizenz\n\nDER GEGENSTAND DIESER LIZENZ (WIE UNTER \"SCHUTZGEGENSTAND\" DEFINIERT) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\", \"LIZENZ\" ODER \"LIZENZVERTRAG\") ZUR VERF\u00dcGUNG GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER ANDERE GESETZE GESCH\u00dcTZT. JEDE FORM DER NUTZUNG DES SCHUTZGEGENSTANDES, DIE NICHT AUFGRUND DIESER LIZENZ ODER DURCH GESETZE GESTATTET IST, IST UNZUL\u00c4SSIG.\n\nDURCH DIE AUS\u00dcBUNG EINES DURCH DIESE LIZENZ GEW\u00c4HRTEN RECHTS AN DEM SCHUTZGEGENSTAND ERKL\u00c4REN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH EINVERSTANDEN. SOWEIT DIESE LIZENZ ALS LIZENZVERTRAG ANZUSEHEN IST, GEW\u00c4HRT IHNEN DER LIZENZGEBER DIE IN DER LIZENZ GENANNTEN RECHTE UNENTGELTLICH UND IM AUSTAUSCH DAF\u00dcR, DASS SIE DAS GEBUNDENSEIN AN DIE LIZENZBEDINGUNGEN AKZEPTIEREN.\n\n1. Definitionen\n\n a. Der Begriff \"Abwandlung\" im Sinne dieser Lizenz bezeichnet das Ergebnis jeglicher Art von Ver\u00e4nderung des Schutzgegenstandes, solange die eigenpers\u00f6nlichen Z\u00fcge des Schutzgegenstandes darin nicht verblassen und daran eigene Schutzrechte entstehen. Das kann insbesondere eine Bearbeitung, Umgestaltung, \u00c4nderung, Anpassung, \u00dcbersetzung oder Heranziehung des Schutzgegenstandes zur Vertonung von Laufbildern sein. Nicht als Abwandlung des Schutzgegenstandes gelten seine Aufnahme in eine Sammlung oder ein Sammelwerk und die freie Benutzung des Schutzgegenstandes.\n\n b. Der Begriff \"Sammelwerk\" im Sinne dieser Lizenz meint eine Zusammenstellung von literarischen, k\u00fcnstlerischen oder wissenschaftlichen Inhalten, sofern diese Zusammenstellung aufgrund von Auswahl und Anordnung der darin enthaltenen selbst\u00e4ndigen Elemente eine geistige Sch\u00f6pfung darstellt, unabh\u00e4ngig davon, ob die Elemente systematisch oder methodisch angelegt und dadurch einzeln zug\u00e4nglich sind oder nicht.\n\n c. \"Verbreiten\" im Sinne dieser Lizenz bedeutet, den Schutzgegenstand oder Abwandlungen im Original oder in Form von Vervielf\u00e4ltigungsst\u00fccken, mithin in k\u00f6rperlich fixierter Form der \u00d6ffentlichkeit anzubieten oder in Verkehr zu bringen.\n\n d. Der \"Lizenzgeber\" im Sinne dieser Lizenz ist diejenige nat\u00fcrliche oder juristische Person oder Gruppe, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet und insoweit als Rechteinhaberin auftritt.\n\n e. \"Rechteinhaber\" im Sinne dieser Lizenz ist der Urheber des Schutzgegenstandes oder jede andere nat\u00fcrliche oder juristische Person oder Gruppe von Personen, die am Schutzgegenstand ein Immaterialg\u00fcterrecht erlangt hat, welches die in Abschnitt 3 genannten Handlungen erfasst und bei dem eine Einr\u00e4umung von Nutzungsrechten oder eine Weiter\u00fcbertragung an Dritte m\u00f6glich ist.\n\n f. Der Begriff \"Schutzgegenstand\" bezeichnet in dieser Lizenz den literarischen, k\u00fcnstlerischen oder wissenschaftlichen Inhalt, der unter den Bedingungen dieser Lizenz angeboten wird. Das kann insbesondere eine pers\u00f6nliche geistige Sch\u00f6pfung jeglicher Art, ein Werk der kleinen M\u00fcnze, ein nachgelassenes Werk oder auch ein Lichtbild oder anderes Objekt eines verwandten Schutzrechts sein, unabh\u00e4ngig von der Art seiner Fixierung und unabh\u00e4ngig davon, auf welche Weise jeweils eine Wahrnehmung erfolgen kann, gleichviel ob in analoger oder digitaler Form. Soweit Datenbanken oder Zusammenstellungen von Daten einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen, unterfallen auch sie dem Begriff \"Schutzgegenstand\" im Sinne dieser Lizenz.\n\n g. Mit \"Sie\" bzw. \"Ihnen\" ist die nat\u00fcrliche oder juristische Person gemeint, die in dieser Lizenz im Abschnitt 3 genannte Nutzungen des Schutzgegenstandes vornimmt und zuvor in Hinblick auf den Schutzgegenstand nicht gegen Bedingungen dieser Lizenz versto\u00dfen oder aber die ausdr\u00fcckliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese Lizenz gew\u00e4hrten Nutzungsrechte trotz eines vorherigen Versto\u00dfes auszu\u00fcben.\n\n h. Unter \"\u00d6ffentlich Zeigen\" im Sinne dieser Lizenz sind Ver\u00f6ffentlichungen und Pr\u00e4sentationen des Schutzgegenstandes zu verstehen, die f\u00fcr eine Mehrzahl von Mitgliedern der \u00d6ffentlichkeit bestimmt sind und in unk\u00f6rperlicher Form mittels \u00f6ffentlicher Wiedergabe in Form von Vortrag, Auff\u00fchrung, Vorf\u00fchrung, Darbietung, Sendung, Weitersendung, zeit- und ortsunabh\u00e4ngiger Zug\u00e4nglichmachung oder in k\u00f6rperlicher Form mittels Ausstellung erfolgen, unabh\u00e4ngig von bestimmten Veranstaltungen und unabh\u00e4ngig von den zum Einsatz kommenden Techniken und Verfahren, einschlie\u00dflich drahtgebundener oder drahtloser Mittel und Einstellen in das Internet.\n\n i. \"Vervielf\u00e4ltigen\" im Sinne dieser Lizenz bedeutet, mittels beliebiger Verfahren Vervielf\u00e4ltigungsst\u00fccke des Schutzgegenstandes herzustellen, insbesondere durch Ton- oder Bildaufzeichnungen, und umfasst auch den Vorgang, erstmals k\u00f6rperliche Fixierungen des Schutzgegenstandes sowie Vervielf\u00e4ltigungsst\u00fccke dieser Fixierungen anzufertigen, sowie die \u00dcbertragung des Schutzgegenstandes auf einen Bild- oder Tontr\u00e4ger oder auf ein anderes elektronisches Medium, gleichviel ob in digitaler oder analoger Form.\n\n2. Schranken des Immaterialg\u00fcterrechts. Diese Lizenz ist in keiner Weise darauf gerichtet, Befugnisse zur Nutzung des Schutzgegenstandes zu vermindern, zu beschr\u00e4nken oder zu vereiteln, die Ihnen aufgrund der Schranken des Urheberrechts oder anderer Rechtsnormen bereits ohne Weiteres zustehen oder sich aus dem Fehlen eines immaterialg\u00fcterrechtlichen Schutzes ergeben.\n\n3. Einr\u00e4umung von Nutzungsrechten. Unter den Bedingungen dieser Lizenz r\u00e4umt Ihnen der Lizenzgeber - unbeschadet unverzichtbarer Rechte und vorbehaltlich des Abschnitts 3.e) - das verg\u00fctungsfreie, r\u00e4umlich und zeitlich (f\u00fcr die Dauer des Schutzrechts am Schutzgegenstand) unbeschr\u00e4nkte einfache Recht ein, den Schutzgegenstand auf die folgenden Arten und Weisen zu nutzen (\"unentgeltlich einger\u00e4umtes einfaches Nutzungsrecht f\u00fcr jedermann\"):\n\n a. den Schutzgegenstand in beliebiger Form und Menge zu vervielf\u00e4ltigen, ihn in Sammelwerke zu integrieren und ihn als Teil solcher Sammelwerke zu vervielf\u00e4ltigen;\n\n b. Abwandlungen des Schutzgegenstandes anzufertigen, einschlie\u00dflich \u00dcbersetzungen unter Nutzung jedweder Medien, sofern deutlich erkennbar gemacht wird, dass es sich um Abwandlungen handelt;\n\n c. den Schutzgegenstand, allein oder in Sammelwerke aufgenommen, \u00f6ffentlich zu zeigen und zu verbreiten;\n\n d. Abwandlungen des Schutzgegenstandes zu ver\u00f6ffentlichen, \u00f6ffentlich zu zeigen und zu verbreiten.\n\n e. Bez\u00fcglich Verg\u00fctung f\u00fcr die Nutzung des Schutzgegenstandes gilt Folgendes:\n\n i. Unverzichtbare gesetzliche Verg\u00fctungsanspr\u00fcche: Soweit unverzichtbare Verg\u00fctungsanspr\u00fcche im Gegenzug f\u00fcr gesetzliche Lizenzen vorgesehen oder Pauschalabgabensysteme (zum Beispiel f\u00fcr Leermedien) vorhanden sind, beh\u00e4lt sich der Lizenzgeber das ausschlie\u00dfliche Recht vor, die entsprechende Verg\u00fctung einzuziehen f\u00fcr jede Aus\u00fcbung eines Rechts aus dieser Lizenz durch Sie.\n\n ii. Verg\u00fctung bei Zwangslizenzen: Sofern Zwangslizenzen au\u00dferhalb dieser Lizenz vorgesehen sind und zustande kommen, verzichtet der Lizenzgeber f\u00fcr alle F\u00e4lle einer lizenzgerechten Nutzung des Schutzgegenstandes durch Sie auf jegliche Verg\u00fctung.\n\n iii. Verg\u00fctung in sonstigen F\u00e4llen: Bez\u00fcglich lizenzgerechter Nutzung des Schutzgegenstandes durch Sie, die nicht unter die beiden vorherigen Abschnitte (i) und (ii) f\u00e4llt, verzichtet der Lizenzgeber auf jegliche Verg\u00fctung, unabh\u00e4ngig davon, ob eine Einziehung der Verg\u00fctung durch ihn selbst oder nur durch eine Verwertungsgesellschaft m\u00f6glich w\u00e4re.\n\nDas vorgenannte Nutzungsrecht wird f\u00fcr alle bekannten sowie f\u00fcr alle noch nicht bekannten Nutzungsarten einger\u00e4umt. Es beinhaltet auch das Recht, solche \u00c4nderungen am Schutzgegenstand vorzunehmen, die f\u00fcr bestimmte nach dieser Lizenz zul\u00e4ssige Nutzungen technisch erforderlich sind. Alle sonstigen Rechte, die \u00fcber diesen Abschnitt hinaus nicht ausdr\u00fccklich durch den Lizenzgeber einger\u00e4umt werden, bleiben diesem allein vorbehalten. Soweit Datenbanken oder Zusammenstellungen von Daten Schutzgegenstand dieser Lizenz oder Teil dessen sind und einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen, verzichtet der Lizenzgeber auf s\u00e4mtliche aus diesem Schutz resultierenden Rechte.\n\n4. Bedingungen. Die Einr\u00e4umung des Nutzungsrechts gem\u00e4\u00df Abschnitt 3 dieser Lizenz erfolgt ausdr\u00fccklich nur unter den folgenden Bedingungen:\n\n a. Sie d\u00fcrfen den Schutzgegenstand ausschlie\u00dflich unter den Bedingungen dieser Lizenz verbreiten oder \u00f6ffentlich zeigen. Sie m\u00fcssen dabei stets eine Kopie dieser Lizenz oder deren vollst\u00e4ndige Internetadresse in Form des Uniform-Resource-Identifier (URI) beif\u00fcgen. Sie d\u00fcrfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen dieser Lizenz oder die durch diese Lizenz gew\u00e4hrten Rechte beschr\u00e4nken. Sie d\u00fcrfen den Schutzgegenstand nicht unterlizenzieren. Bei jeder Kopie des Schutzgegenstandes, die Sie verbreiten oder \u00f6ffentlich zeigen, m\u00fcssen Sie alle Hinweise unver\u00e4ndert lassen, die auf diese Lizenz und den Haftungsausschluss hinweisen. Wenn Sie den Schutzgegenstand verbreiten oder \u00f6ffentlich zeigen, d\u00fcrfen Sie (in Bezug auf den Schutzgegenstand) keine technischen Ma\u00dfnahmen ergreifen, die den Nutzer des Schutzgegenstandes in der Aus\u00fcbung der ihm durch diese Lizenz gew\u00e4hrten Rechte behindern k\u00f6nnen. Dieser Abschnitt 4.a) gilt auch f\u00fcr den Fall, dass der Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt dieser Lizenz unterstellt werden muss. Sofern Sie ein Sammelwerk erstellen, m\u00fcssen Sie auf die Mitteilung eines Lizenzgebers hin aus dem Sammelwerk die in Abschnitt 4.b) aufgez\u00e4hlten Hinweise entfernen. Wenn Sie eine Abwandlung vornehmen, m\u00fcssen Sie auf die Mitteilung eines Lizenzgebers hin von der Abwandlung die in Abschnitt 4.b) aufgez\u00e4hlten Hinweise entfernen.\n\n b. Die Verbreitung und das \u00f6ffentliche Zeigen des Schutzgegenstandes oder auf ihm aufbauender Abwandlungen oder ihn enthaltender Sammelwerke ist Ihnen nur unter der Bedingung gestattet, dass Sie, vorbehaltlich etwaiger Mitteilungen im Sinne von Abschnitt 4.a), alle dazu geh\u00f6renden Rechtevermerke unber\u00fchrt lassen. Sie sind verpflichtet, die Rechteinhaberschaft in einer der Nutzung entsprechenden, angemessenen Form anzuerkennen, indem Sie - soweit bekannt - Folgendes angeben:\n\n i. Den Namen (oder das Pseudonym, falls ein solches verwendet wird) des Rechteinhabers und / oder, falls der Lizenzgeber im Rechtevermerk, in den Nutzungsbedingungen oder auf andere angemessene Weise eine Zuschreibung an Dritte vorgenommen hat (z.B. an eine Stiftung, ein Verlagshaus oder eine Zeitung) (\"Zuschreibungsempf\u00e4nger\"), Namen bzw. Bezeichnung dieses oder dieser Dritten;\n\n ii. den Titel des Inhaltes;\n\n iii. in einer praktikablen Form den Uniform-Resource-Identifier (URI, z.B. Internetadresse), den der Lizenzgeber zum Schutzgegenstand angegeben hat, es sei denn, dieser URI verweist nicht auf den Rechtevermerk oder die Lizenzinformationen zum Schutzgegenstand;\n\n iv. und im Falle einer Abwandlung des Schutzgegenstandes in \u00dcbereinstimmung mit Abschnitt 3.b) einen Hinweis darauf, dass es sich um eine Abwandlung handelt.\n\n Die nach diesem Abschnitt 4.b) erforderlichen Angaben k\u00f6nnen in jeder angemessenen Form gemacht werden; im Falle einer Abwandlung des Schutzgegenstandes oder eines Sammelwerkes m\u00fcssen diese Angaben das Minimum darstellen und bei gemeinsamer Nennung mehrerer Rechteinhaber dergestalt erfolgen, dass sie zumindest ebenso hervorgehoben sind wie die Hinweise auf die \u00fcbrigen Rechteinhaber. Die Angaben nach diesem Abschnitt d\u00fcrfen Sie ausschlie\u00dflich zur Angabe der Rechteinhaberschaft in der oben bezeichneten Weise verwenden. Durch die Aus\u00fcbung Ihrer Rechte aus dieser Lizenz d\u00fcrfen Sie ohne eine vorherige, separat und schriftlich vorliegende Zustimmung des Lizenzgebers und / oder des Zuschreibungsempf\u00e4ngers weder explizit noch implizit irgendeine Verbindung zum Lizenzgeber oder Zuschreibungsempf\u00e4nger und ebenso wenig eine Unterst\u00fctzung oder Billigung durch ihn andeuten.\n\n c. Die oben unter 4.a) und b) genannten Einschr\u00e4nkungen gelten nicht f\u00fcr solche Teile des Schutzgegenstandes, die allein deshalb unter den Schutzgegenstandsbegriff fallen, weil sie als Datenbanken oder Zusammenstellungen von Daten einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen.\n\n d. Pers\u00f6nlichkeitsrechte bleiben - soweit sie bestehen - von dieser Lizenz unber\u00fchrt.\n\n5. Gew\u00e4hrleistung\n\nSOFERN KEINE ANDERS LAUTENDE, SCHRIFTLICHE VEREINBARUNG ZWISCHEN DEM LIZENZGEBER UND IHNEN GESCHLOSSEN WURDE UND SOWEIT M\u00c4NGEL NICHT ARGLISTIG VERSCHWIEGEN WURDEN, BIETET DER LIZENZGEBER DEN SCHUTZGEGENSTAND UND DIE EINR\u00c4UMUNG VON RECHTEN UNTER AUSSCHLUSS JEGLICHER GEW\u00c4HRLEISTUNG AN UND \u00dcBERNIMMT WEDER AUSDR\u00dcCKLICH NOCH KONKLUDENT GARANTIEN IRGENDEINER ART. DIES UMFASST INSBESONDERE DAS FREISEIN VON SACH- UND RECHTSM\u00c4NGELN, UNABH\u00c4NGIG VON DEREN ERKENNBARKEIT F\u00dcR DEN LIZENZGEBER, DIE VERKEHRSF\u00c4HIGKEIT DES SCHUTZGEGENSTANDES, SEINE VERWENDBARKEIT F\u00dcR EINEN BESTIMMTEN ZWECK SOWIE DIE KORREKTHEIT VON BESCHREIBUNGEN. DIESE GEW\u00c4HRLEISTUNGSBESCHR\u00c4NKUNG GILT NICHT, SOWEIT M\u00c4NGEL ZU SCH\u00c4DEN DER IN ABSCHNITT 6 BEZEICHNETEN ART F\u00dcHREN UND AUF SEITEN DES LIZENZGEBERS DAS JEWEILS GENANNTE VERSCHULDEN BZW. VERTRETENM\u00dcSSEN EBENFALLS VORLIEGT.\n\n6. Haftungsbeschr\u00e4nkung\n\nDER LIZENZGEBER HAFTET IHNEN GEGEN\u00dcBER IN BEZUG AUF SCH\u00c4DEN AUS DER VERLETZUNG DES LEBENS, DES K\u00d6RPERS ODER DER GESUNDHEIT NUR, SOFERN IHM WENIGSTENS FAHRL\u00c4SSIGKEIT VORZUWERFEN IST, F\u00dcR SONSTIGE SCH\u00c4DEN NUR BEI GROBER FAHRL\u00c4SSIGKEIT ODER VORSATZ, UND \u00dcBERNIMMT DAR\u00dcBER HINAUS KEINERLEI FREIWILLIGE HAFTUNG.\n\n7. Erl\u00f6schen\n\n a. Diese Lizenz und die durch sie einger\u00e4umten Nutzungsrechte erl\u00f6schen mit Wirkung f\u00fcr die Zukunft im Falle eines Versto\u00dfes gegen die Lizenzbedingungen durch Sie, ohne dass es dazu der Kenntnis des Lizenzgebers vom Versto\u00df oder einer weiteren Handlung einer der Vertragsparteien bedarf. Mit nat\u00fcrlichen oder juristischen Personen, die Abwandlungen des Schutzgegenstandes oder diesen enthaltende Sammelwerke unter den Bedingungen dieser Lizenz von Ihnen erhalten haben, bestehen nachtr\u00e4glich entstandene Lizenzbeziehungen jedoch solange weiter, wie die genannten Personen sich ihrerseits an s\u00e4mtliche Lizenzbedingungen halten. Dar\u00fcber hinaus gelten die Ziffern 1, 2, 5, 6, 7, und 8 auch nach einem Erl\u00f6schen dieser Lizenz fort.\n\n b. Vorbehaltlich der oben genannten Bedingungen gilt diese Lizenz unbefristet bis der rechtliche Schutz f\u00fcr den Schutzgegenstand ausl\u00e4uft. Davon abgesehen beh\u00e4lt der Lizenzgeber das Recht, den Schutzgegenstand unter anderen Lizenzbedingungen anzubieten oder die eigene Weitergabe des Schutzgegenstandes jederzeit einzustellen, solange die Aus\u00fcbung dieses Rechts nicht einer K\u00fcndigung oder einem Widerruf dieser Lizenz (oder irgendeiner Weiterlizenzierung, die auf Grundlage dieser Lizenz bereits erfolgt ist bzw. zuk\u00fcnftig noch erfolgen muss) dient und diese Lizenz unter Ber\u00fccksichtigung der oben zum Erl\u00f6schen genannten Bedingungen vollumf\u00e4nglich wirksam bleibt.\n\n8. Sonstige Bestimmungen\n\n a. Jedes Mal, wenn Sie den Schutzgegenstand f\u00fcr sich genommen oder als Teil eines Sammelwerkes verbreiten oder \u00f6ffentlich zeigen, bietet der Lizenzgeber dem Empf\u00e4nger eine Lizenz zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz.\n\n b. Jedes Mal, wenn Sie eine Abwandlung des Schutzgegenstandes verbreiten oder \u00f6ffentlich zeigen, bietet der Lizenzgeber dem Empf\u00e4nger eine Lizenz am urspr\u00fcnglichen Schutzgegenstand zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz.\n\n c. Sollte eine Bestimmung dieser Lizenz unwirksam sein, so bleibt davon die Wirksamkeit der Lizenz im \u00dcbrigen davon unber\u00fchrt.\n\n d. Keine Bestimmung dieser Lizenz soll als abbedungen und kein Versto\u00df gegen sie als zul\u00e4ssig gelten, solange die von dem Verzicht oder von dem Versto\u00df betroffene Seite nicht schriftlich zugestimmt hat.\n\n e. Diese Lizenz (zusammen mit in ihr ausdr\u00fccklich vorgesehenen Erlaubnissen, Mitteilungen und Zustimmungen, soweit diese tats\u00e4chlich vorliegen) stellt die vollst\u00e4ndige Vereinbarung zwischen dem Lizenzgeber und Ihnen in Bezug auf den Schutzgegenstand dar. Es bestehen keine Abreden, Vereinbarungen oder Erkl\u00e4rungen in Bezug auf den Schutzgegenstand, die in dieser Lizenz nicht genannt sind. Rechtsgesch\u00e4ftliche \u00c4nderungen des Verh\u00e4ltnisses zwischen dem Lizenzgeber und Ihnen sind nur \u00fcber Modifikationen dieser Lizenz m\u00f6glich. Der Lizenzgeber ist an etwaige zus\u00e4tzliche, einseitig durch Sie \u00fcbermittelte Bestimmungen nicht gebunden. Diese Lizenz kann nur durch schriftliche Vereinbarung zwischen Ihnen und dem Lizenzgeber modifiziert werden. Derlei Modifikationen wirken ausschlie\u00dflich zwischen dem Lizenzgeber und Ihnen und wirken sich nicht auf die Dritten gem\u00e4\u00df Ziffern 8.a) und b) angebotenen Lizenzen aus.\n\n f. Sofern zwischen Ihnen und dem Lizenzgeber keine anderweitige Vereinbarung getroffen wurde und soweit Wahlfreiheit besteht, findet auf diesen Lizenzvertrag das Recht der Bundesrepublik Deutschland Anwendung.\n\n\nCreative Commons Notice\n\nCreative Commons ist nicht Partei dieser Lizenz und \u00fcbernimmt keinerlei Gew\u00e4hr oder dergleichen in Bezug auf den Schutzgegenstand. Creative Commons haftet Ihnen oder einer anderen Partei unter keinem rechtlichen Gesichtspunkt f\u00fcr irgendwelche Sch\u00e4den, die - abstrakt oder konkret, zuf\u00e4llig oder vorhersehbar - im Zusammenhang mit dieser Lizenz entstehen. Unbeschadet der vorangegangen beiden S\u00e4tze, hat Creative Commons alle Rechte und Pflichten eines Lizenzgebers, wenn es sich ausdr\u00fccklich als Lizenzgeber im Sinne dieser Lizenz bezeichnet.\n\nCreative Commons gew\u00e4hrt den Parteien nur insoweit das Recht, das Logo und die Marke \"Creative Commons\" zu nutzen, als dies notwendig ist, um der \u00d6ffentlichkeit gegen\u00fcber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein dar\u00fcber hinaus gehender Gebrauch der Marke \"Creative Commons\" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website ver\u00f6ffentlicht oder auf andere Weise auf Anfrage zug\u00e4nglich gemacht wird. Zur Klarstellung: Die genannten Einschr\u00e4nkungen der Markennutzung sind nicht Bestandteil dieser Lizenz.\n\nCreative Commons kann kontaktiert werden \u00fcber https://creativecommons.org/.", + "json": "cc-by-3.0-de.json", + "yaml": "cc-by-3.0-de.yml", + "html": "cc-by-3.0-de.html", + "license": "cc-by-3.0-de.LICENSE" + }, + { + "license_key": "cc-by-3.0-igo", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0-IGO", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Attribution 3.0 IGO\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. THE LICENSOR IS NOT NECESSARILY AN INTERGOVERNMENTAL ORGANIZATION (IGO), AS DEFINED IN THE LICENSE BELOW. \n\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"LICENSE\"). THE LICENSOR (DEFINED BELOW) HOLDS COPYRIGHT AND OTHER RIGHTS IN THE WORK. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION FOR YOUR ACCEPTANCE AND AGREEMENT TO THE TERMS OF THE LICENSE.\n\n1. Definitions\n\n a. \"IGO\" means, solely and exclusively for purposes of this License, an organization established by a treaty or other instrument governed by international law and possessing its own international legal personality. Other organizations established to carry out activities across national borders and that accordingly enjoy immunity from legal process are also IGOs for the sole and exclusive purposes of this License. IGOs may include as members, in addition to states, other entities.\n\n b. \"Work\" means the literary and/or artistic work eligible for copyright protection, whatever may be the mode or form of its expression including digital form, and offered under the terms of this License. It is understood that a database, which by reason of the selection and arrangement of its contents constitutes an intellectual creation, is considered a Work.\n\n c. \"Licensor\" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License and may be, but is not necessarily, an IGO.\n\n d. \"You\" means an individual or entity exercising rights under this License.\n\n e. \"Reproduce\" means to make a copy of the Work in any manner or form, and by any means.\n\n f. \"Distribute\" means the activity of making publicly available the Work or Adaptation (or copies of the Work or Adaptation), as applicable, by sale, rental, public lending or any other known form of transfer of ownership or possession of the Work or copy of the Work.\n\n g. \"Publicly Perform\" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images.\n\n h. \"Adaptation\" means a work derived from or based upon the Work, or upon the Work and other pre-existing works. Adaptations may include works such as translations, derivative works, or any alterations and arrangements of any kind involving the Work. For purposes of this License, where the Work is a musical work, performance, or phonogram, the synchronization of the Work in timed-relation with a moving image is an Adaptation. For the avoidance of doubt, including the Work in a Collection is not an Adaptation.\n\n i. \"Collection\" means a collection of literary or artistic works or other works or subject matter other than works listed in Section 1(b) which by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. For the avoidance of doubt, a Collection will not be considered as an Adaptation.\n\n2. Scope of this License. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright protection.\n\n3. License Grant. Subject to the terms and conditions of this License, the Licensor hereby grants You a worldwide, royalty-free, non-exclusive license to exercise the rights in the Work as follows:\n\n a. to Reproduce, Distribute and Publicly Perform the Work, to incorporate the Work into one or more Collections, and to Reproduce, Distribute and Publicly Perform the Work as incorporated in the Collections; and,\n\n b. to create, Reproduce, Distribute and Publicly Perform Adaptations, provided that You clearly label, demarcate or otherwise identify that changes were made to the original Work.\n\n c. For the avoidance of doubt:\n\n i. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License;\n\n ii. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and,\n\n iii. Voluntary License Schemes. To the extent possible, the Licensor waives the right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary licensing scheme.\n\nThis License lasts for the duration of the term of the copyright in the Work licensed by the Licensor. The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by the Licensor are hereby reserved.\n\n4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\n a. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work (see section 8(a)). You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from a Licensor You must, to the extent practicable, remove from the Collection any credit (inclusive of any logo, trademark, official mark or official emblem) as required by Section 4(b), as requested. If You create an Adaptation, upon notice from a Licensor You must, to the extent practicable, remove from the Adaptation any credit (inclusive of any logo, trademark, official mark or official emblem) as required by Section 4(b), as requested.\n\n b. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) any attributions that the Licensor indicates be associated with the Work as indicated in a copyright notice, (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that the Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and, (iv) consistent with Section 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation. The credit required by this Section 4(b) may be implemented in any reasonable manner; provided, however, that in the case of an Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributors to the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Licensor or others designated for attribution, of You or Your use of the Work, without the separate, express prior written permission of the Licensor or such others.\n\n c. Except as otherwise agreed in writing by the Licensor, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the honor or reputation of the Licensor where moral rights apply.\n\n5. Representations, Warranties and Disclaimer\n\nTHE LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE.\n\n6. Limitation on Liability\n\nIN NO EVENT WILL THE LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF THE LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\n a. Subject to the terms and conditions set forth in this License, the license granted here lasts for the duration of the term of the copyright in the Work licensed by the Licensor as stated in Section 3. Notwithstanding the above, the Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated below.\n\n b. If You fail to comply with this License, then this License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. Notwithstanding the foregoing, this License reinstates automatically as of the date the violation is cured, provided it is cured within 30 days of You discovering the violation, or upon express reinstatement by the Licensor. For the avoidance of doubt, this Section 7(b) does not affect any rights the Licensor may have to seek remedies for violations of this License by You.\n\n8. Miscellaneous\n\n a. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\n\n b. Each time You Distribute or Publicly Perform an Adaptation, the Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\n\n c. If any provision of this License is invalid or unenforceable, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\n d. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the Licensor.\n\n e. This License constitutes the entire agreement between You and the Licensor with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. The Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\n\n f. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). Interpretation of the scope of the rights granted by the Licensor and the conditions imposed on You under this License, this License, and the rights and conditions set forth herein shall be made with reference to copyright as determined in accordance with general principles of international law, including the above mentioned conventions.\n\n g. Nothing in this License constitutes or may be interpreted as a limitation upon or waiver of any privileges and immunities that may apply to the Licensor or You, including immunity from the legal processes of any jurisdiction, national court or other authority.\n\n h. Where the Licensor is an IGO, any and all disputes arising under this License that cannot be settled amicably shall be resolved in accordance with the following procedure:\n\n i. Pursuant to a notice of mediation communicated by reasonable means by either You or the Licensor to the other, the dispute shall be submitted to non-binding mediation conducted in accordance with rules designated by the Licensor in the copyright notice published with the Work, or if none then in accordance with those communicated in the notice of mediation. The language used in the mediation proceedings shall be English unless otherwise agreed.\n\n ii. If any such dispute has not been settled within 45 days following the date on which the notice of mediation is provided, either You or the Licensor may, pursuant to a notice of arbitration communicated by reasonable means to the other, elect to have the dispute referred to and finally determined by arbitration. The arbitration shall be conducted in accordance with the rules designated by the Licensor in the copyright notice published with the Work, or if none then in accordance with the UNCITRAL Arbitration Rules as then in force. The arbitral tribunal shall consist of a sole arbitrator and the language of the proceedings shall be English unless otherwise agreed. The place of arbitration shall be where the Licensor has its headquarters. The arbitral proceedings shall be conducted remotely (e.g., via telephone conference or written submissions) whenever practicable.\n\n iii. Interpretation of this License in any dispute submitted to mediation or arbitration shall be as set forth in Section 8(f), above.\n\nCreative Commons Notice\n\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of the Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License.\n\nCreative Commons may be contacted at https://creativecommons.org/.", + "json": "cc-by-3.0-igo.json", + "yaml": "cc-by-3.0-igo.yml", + "html": "cc-by-3.0-igo.html", + "license": "cc-by-3.0-igo.LICENSE" + }, + { + "license_key": "cc-by-3.0-nl", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0-NL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Naamsvermelding 3.0\n\n CREATIVE COMMONS CORPORATION IS GEEN ADVOCATENPRAKTIJK EN VERLEENT GEEN JURIDISCHE DIENSTEN. DE VERSPREIDING VAN DEZE LICENTIE ROEPT GEEN JURIDISCHE RELATIE MET CREATIVE COMMONS IN HET LEVEN. CREATIVE COMMONS VERSPREIDT DEZE INFORMATIE 'AS-IS'. CREATIVE COMMONS STAAT NIET IN VOOR DE INHOUD VAN DE VERSTREKTE INFORMATIE EN SLUIT ALLE AANSPRAKELIJKHEID UIT VOOR ENIGERLEI SCHADE VOORTVLOEIEND UIT HET GEBRUIK VAN DEZE INFORMATIE INDIEN EN VOORZOVER DE WET NIET ANDERS BEPAALT.\n\nLicentie\n\nHET WERK (ALS HIERONDER OMSCHREVEN) WORDT TER BESCHIKKING GESTELD OVEREENKOMSTIG DE VOORWAARDEN VAN DEZE CREATIVE COMMONS PUBLIEKE LICENTIE ('CCPL' OF 'LICENTIE'). HET WERK WORDT BESCHERMD OP GROND VAN HET AUTEURSRECHT, NABURIGE RECHTEN, HET DATABANKENRECHT EN/OF ENIGE ANDERE TOEPASSELIJKE RECHTEN. MET UITZONDERING VAN HET IN DEZE LICENTIE OMSCHREVEN TOEGESTANE GEBRUIK VAN HET WERK IS ENIG ANDER GEBRUIK VAN HET WERK NIET TOEGESTAAN.\n\nDOOR HET UITOEFENEN VAN DE IN DEZE LICENTIE VERLEENDE RECHTEN MET BETREKKING TOT HET WERK AANVAARDT EN GAAT DE GEBRUIKER AKKOORD MET DE VOORWAARDEN VAN DEZE LICENTIE, MET DIEN VERSTANDE DAT (DE INHOUD VAN) DEZE LICENTIE OP VOORHAND VOLDOENDE DUIDELIJK KENBAAR DIENT TE ZIJN VOOR DE ONTVANGER VAN HET WERK.\n\nDE LICENTIEGEVER VERLEENT DE GEBRUIKER DE IN DEZE LICENTIE OMSCHREVEN RECHTEN MET INACHTNEMING VAN DE DESBETREFFENDE VOORWAARDEN.\n\n1. Definities\n\n a. 'Verzamelwerk' een werk waarin het Werk, in zijn geheel en in ongewijzigde vorm, samen met een of meer andere werken, die elk een afzonderlijk en zelfstandig werk vormen, tot een geheel is samengevoegd. Voorbeelden van een verzamelwerk zijn een tijdschrift, een bloemlezing of een encyclopedie. Een Verzamelwerk zal voor de toepassing van deze Licentie niet als een Afgeleid werk (als hieronder omschreven) worden beschouwd.\n\n b. 'Afgeleid werk' een werk dat is gebaseerd op het Werk of op het Werk en andere reeds bestaande werken. Voorbeelden van een Afgeleid werk zijn een vertaling, een muziekschikking (arrangement), een toneelbewerking, een literaire bewerking, een verfilming, een geluidsopname, een kunstreproductie, een verkorte versie, een samenvatting of enig andere bewerking van het Werk, met dien verstande dat een Verzamelwerk voor de toepassing van deze Licentie niet als een Afgeleid werk zal worden beschouwd.\n\n Indien het Werk een muziekwerk betreft, zal de synchronisatie van de tijdslijnen van het Werk en een bewegend beeld ('synching') voor de toepassing van deze Licentie als een Afgeleid Werk worden beschouwd.\n\n c. 'Licentiegever' de natuurlijke persoon/personen of rechtspersoon/rechtspersonen die het Werk volgens de voorwaarden van deze Licentie aanbiedt/aanbieden.\n\n d. 'Maker' de natuurlijke persoon/personen of rechtspersoon/personen die het oorspronkelijke werk gemaakt heeft/hebben. Voor de toepassing van deze Licentie wordt onder de Maker mede verstaan de uitvoerende kunstenaar, film- en fonogramproducent en omroeporganisaties in de zin van de Wet op de naburige rechten en de producent van een databank in de zin van de Databankenwet.\n\n e. 'Werk' het auteursrechtelijk beschermde werk dat volgens de voorwaarden van deze Licentie wordt aangeboden. Voor de toepassing van deze Licentie wordt onder het Werk mede verstaan het fonogram, de eerste vastlegging van een film en het (omroep)programma in de zin van de Wet op de naburige rechten en de databank in de zin van de Databankenwet, voor zover dit fonogram, deze eerste vastlegging van een film, dit (omroep)programma en deze databank beschermd wordt krachtens de toepasselijke wet in de jurisdictie van de Gebruiker.\n\n f. 'Gebruiker' de natuurlijke persoon of rechtspersoon die rechten ingevolge deze Licentie uitoefent en die de voorwaarden van deze Licentie met betrekking tot het Werk niet eerder geschonden heeft, of die van de Licentiegever uitdrukkelijke toestemming gekregen heeft om rechten ingevolge deze Licentie uit te oefenen ondanks een eerdere schending.\n\n2. Beperkingen van de uitsluitende rechten. Niets in deze Licentie strekt ertoe om de rechten te beperken die voortvloeien uit de beperkingen en uitputting van de uitsluitende rechten van de rechthebbende krachtens het auteursrecht, de naburige rechten, het databankenrecht of enige andere toepasselijke rechten.\n\n3. Licentieverlening. Met inachtneming van de voorwaarden van deze Licentie verleent de Licentiegever hierbij aan de Gebruiker een wereldwijde, niet-exclusieve licentie om de navolgende rechten met betrekking tot het Werk vrij van royalty's uit te oefenen voor de duur van de toepasselijke intellectuele eigendomsrechten:\n\n a. het reproduceren van het Werk, het opnemen van het Werk in een of meerdere Verzamelwerken, en het reproduceren van het in de Verzamelwerken opgenomen Werk;\n\n b. het maken en reproduceren van Afgeleide werken met dien verstande dat met betrekking tot het Afgeleide werk, met inbegrip van welke vertaling in welk medium dan ook, duidelijk wordt gemaakt dat er wijzigingen in het oorspronkelijke Werk zijn aangebracht. Bijvoorbeeld, aan een vertaling kan worden toegevoegd dat 'het oorspronkelijke Werk is van het Engels in het Spaans vertaald', of in geval van een verandering kan worden aangegeven dat 'het oorspronkelijke werk is veranderd';\n\n c. het verspreiden van exemplaren van het Werk, het in het openbaar tonen, op- en uitvoeren en het on-line beschikbaar stellen van het Werk, afzonderlijk en als deel van een Verzamelwerk;\n\n d. het verspreiden van exemplaren van Afgeleide werken, het in het openbaar te tonen, op- en uitvoeren en het on-line beschikbaar stellen van Afgeleide werken;\n\n e. het opvragen en hergebruiken van het Werk;\n\n f. Volledigheidshalve dient te worden vermeld dat:\n\n i. Niet voor afstand vatbare heffingsregelingen. in het geval van niet voor afstand vatbare heffingsregelingen (bijvoorbeeld met betrekking tot thuiskopie\u00ebn) de Licentiegever zich het recht voorbehoudt om dergelijke heffingen te innen (al dan niet door middel van een auteursrechtenorganisatie) bij zowel commercieel als niet-commercieel gebruik van het Werk;\n\n ii. Voor afstand vatbare heffingsregeling. in het geval van voor afstand vatbare heffingsregelingen (bijvoorbeeld met betrekking tot leenrechten) de Licentiegever afstand doet van het recht om dergelijke heffingen te innen bij zowel commercieel als niet-commercieel gebruik van het Werk;\n\n iii. Collectief rechtenbeheer. de Licentiegever afstand doet van het recht om vergoedingen te innen (zelfstandig of, indien de Licentiegever lid is van een auteursrechtenorganisatie, door middel van die organisatie) bij zowel commercieel als niet-commercieel gebruik van het Werk.\n\nDe Gebruiker mag deze rechten uitoefenen met behulp van alle thans bekende media, dragers en formats. De Gebruiker is tevens gerechtigd om technische wijzigingen aan te brengen die noodzakelijk zijn om de rechten met behulp van andere media, dragers en formats uit te oefenen. Alle niet uitdrukkelijk verleende rechten zijn hierbij voorbehouden aan de Licentiegever, met inbegrip van maar niet beperkt tot de rechten die in artikel 4(d) worden genoemd. Voor zover de Licentiegever op basis van het nationale recht ter implementatie van de Europese Databankenrichtlijn over uitsluitende rechten beschickt doet de Licentiegever afstand van deze rechten.\n\n4. Beperkingen. De in artikel 3 verleende Licentie is uitdrukkelijk gebonden aan de volgende beperkingen:\n\n a. De Gebruiker mag het Werk uitsluitend verspreiden, in het openbaar tonen, op- of uitvoeren of on-line beschikbaar stellen met inachtneming van de voorwaarden van deze Licentie, en de Gebruiker dient een exemplaar van, of de Uniform Resource Identifier voor, deze Licentie toe te voegen aan elk exemplaar van het Werk dat de Gebruiker verspreidt, in het openbaar toont, op- of uitvoert, of on-line beschikbaar stelt. Het is de Gebruiker niet toegestaan om het Werk onder enige afwijkende voorwaarden aan te bieden waardoor de voorwaarden van deze Licentie dan wel de mogelijkheid van de ontvangers van het Werk om de rechten krachtens deze Licentie uit te oefenen worden beperkt. Het is de Gebruiker niet toegestaan om het Werk in sublicentie te geven. De Gebruiker dient alle vermeldingen die verwijzen naar deze Licentie dan wel naar de uitsluiting van garantie te laten staan. Het is de Gebruiker niet toegestaan om het Werk te verspreiden, in het openbaar te tonen, op- of uit te voeren of on-line beschikbaar te stellen met toepassing van technologische voorzieningen waardoor de voorwaarden van deze Licentie dan wel de mogelijkheid van de ontvangers van het Werk om de rechten krachtens deze Licentie uit te oefenen worden beperkt. Het voorgaande is tevens van toepassing op het Werk dat deel uitmaakt van een Verzamelwerk, maar dat houdt niet in dat het Verzamelwerk, afgezien van het Werk zelf, gebonden is aan de voorwaarden van deze Licentie. Indien de Gebruiker een Verzamelwerk maakt, dient deze, op verzoek van welke Licentiegever ook, de op grond van artikel 4(b) vereiste naamsvermelding uit het Verzamelwerk te verwijderen, voor zover praktisch mogelijk, conform het verzoek. Indien de Gebruiker een Afgeleid werk maakt, dient hij, op verzoek van welke Licentiegever ook, de op grond van artikel 4(b) vereiste naamsvermelding uit het Afgeleide werk te verwijderen, voorzover praktisch mogelijk, conform het verzoek.\n\n b. Indien de Gebruiker het Werk, Afgeleide Werken of Verzamelwerken verspreidt, in het openbaar toont, op- of uitvoert of on-line beschikbaar stelt, dient de Gebruiker, tenzij er sprake is van een verzoek als vermeld in lid 4(a), alle auteursrechtvermeldingen met betrekking tot het Werk te laten staan. Tevens dient de Gebruiker, op een wijze die redelijk is in verhouding tot het gebruikte medium, de naam te vermelden van (i) de Maker (of zijn/haar pseudoniem indien van toepassing) indien deze wordt vermeld; en/of (ii) van (een) andere partij(en) (b.v. sponsor, uitgeverij, tijdschrift) indien de naamsvermelding van deze partij(en) (\"Naamsvermeldingsgerechtigden\") in de auteursrechtvermelding of algemene voorwaarden van de Licentiegever of op een andere redelijke wijze verplicht is gesteld door de Maker en/of de Licentiegever; de titel van het Werk indien deze wordt vermeld; voorzover redelijkerwijs toepasbaar de Uniform Resource Identifier, indien aanwezig, waarvan de Licentiegever heeft aangegeven dat deze bij het Werk hoort, tenzij de URI niet verwijst naar de auteursrechtvermeldingen of de licentie-informatie betreffende het Werk; in overeenstemming met artikel 3(b) in geval van een Afgeleid werk, door te verwijzen naar het gebruik van het Werk in het Afgeleide werk (bijvoorbeeld: 'De Franse vertaling van het Werk van de Maker' of 'Scenario gebaseerd op het Werk van de Maker'). De Gebruiker dient op redelijke wijze aan de in dit artikel genoemde vereisten te voldoen; echter, met dien verstande dat, in geval van een Afgeleid werk of een Verzamelwerk, de naamsvermeldingen in ieder geval geplaatst dienen te worden, indien er een naamsvermelding van alle makers van het Afgeleide werk of het Verzamelwerk geplaatst wordt dan als deel van die naamsvermeldingen, en op een wijze die in ieder geval even duidelijk is als de naamsvermeldingen van de overige makers.\n\n Volledigheidshalve dient te worden vermeld dat de Gebruiker uitsluitend gebruik mag maken van de naamsvermelding op de in dit artikel omschreven wijze teneinde te voldoen aan de naamsvermeldingsverplichting en, door gebruikmaking van zijn rechten krachtens deze Licentie, is het de Gebruiker niet toegestaan om op enigerlei wijze de indruk te wekken dat er sprake is van enig verband met, sponsorschap van of goedkeuring van de (toepasselijke) Maker, Licentiegever c.q. Naamsvermeldingsgerechtigden van de Gebruiker of diens gebruik van het Werk, zonder de afzonderlijke, uitdrukkelijke, voorafgaande, schriftelijke toestemming van de Maker, Licentiegever c.q. Naamsvermeldingsgerechtigden.\n\n c. Volledigheidshalve dient te worden vermeld, dat de hierboven vermelde beperkingen (lid 4(a) en lid 4(b)) niet van toepassing zijn op die onderdelen van het Werk die geacht worden te vallen onder de definitie van het 'Werk' zoals vermeld in deze Licentie uitsluitend omdat zij voldoen aan de criteria van het sui generis databankenrecht krachtens het nationale recht ter implementatie van de Europese Databankenrichtlijn.\n\n d. De in artikel 3 verleende rechten moeten worden uitgeoefend met inachtneming van het morele recht van de Maker (en/of de uitvoerende kunstenaar) om zich te verzetten tegen elke misvorming, verminking of andere aantasting van het werk, welke nadeel zou kunnen toebrengen aan de eer of de naam van de Maker (en/of de uitvoerende kunstenaar) of aan zijn waarde in deze hoedanigheid, indien en voor zover de Maker (en/of de uitvoerende kunstenaar) op grond van een op hem van toepassing zijnde wettelijke bepaling geen afstand kan doen van dat morele recht.\n\n5. Garantie en vrijwaring.\n\nTENZIJ ANDERS SCHRIFTELIJK IS OVEREENGEKOMEN DOOR DE PARTIJEN, STELT DE LICENTIEGEVER HET WERK BESCHIKBAAR OP 'AS-IS' BASIS, ZONDER ENIGE GARANTIE, HETZIJ DIRECT, INDIRECT OF ANDERSZINS, MET BETREKKING TOT HET WERK, MET INBEGRIP VAN, MAAR NIET BEPERKT TOT GARANTIES MET BETREKKING TOT DE EIGENDOMSTITEL, DE VERKOOPBAARHEID, DE GESCHIKTHEID VOOR BEPAALDE DOELEINDEN, MOGELIJKE INBREUK, DE AFWEZIGHEID VAN LATENTE OF ANDERE TEKORTKOMINGEN, DE JUISTHEID OF DE AAN- OF AFWEZIGHEID VAN FOUTEN, ONGEACHT DE OPSPOORBAARHEID DAARVAN, INDIEN EN VOORZOVER DE WET NIET ANDERS BEPAALT.\n\n6. Beperking van de aansprakelijkheid.\n\nDE LICENTIEGEVER AANVAARDT GEEN ENKELE AANSPRAKELIJKHEID JEGENS DE GEBRUIKER VOOR ENIGE BIJZONDERE OF INCIDENTELE SCHADE OF GEVOLGSCHADE VOORTVLOEIEND UIT DEZE LICENTIE OF HET GEBRUIK VAN HET WERK, ZELFS NIET INDIEN DE LICENTIEGEVER OP DE HOOGTE IS GESTELD VAN HET RISICO VAN DERGELIJKE SCHADE, INDIEN EN VOORZOVER DE WET NIET ANDERS BEPAALT.\n\n7. Be\u00ebindiging\n\n a. Deze Licentie en de daarin verleende rechten vervallen automatisch op het moment dat de Gebruiker in strijd handelt met de voorwaarden van deze Licentie. De licenties van natuurlijke personen of rechtspersonen die Verzamelwerken hebben ontvangen van de Gebruiker krachtens deze Licentie blijven echter in stand zolang dergelijke natuurlijke personen of rechtspersonen zich houden aan de voorwaarden van die licenties. Na de be\u00ebindiging van deze Licentie blijven artikelen 1, 2, 5, 6, 7 en 8 onverminderd van kracht.\n\n b. Met inachtneming van de hierboven vermelde voorwaarden wordt de Licentie verleend voor de duur van de toepasselijke intellectuele eigendomsrechten op het Werk. De Licentiegever behoudt zich desalniettemin te allen tijde het recht voor om het Werk volgens gewijzigde licentievoorwaarden te verspreiden of om het Werk niet langer te verspreiden; met dien verstande dat een dergelijk besluit niet de intrekking van deze Licentie (of enig andere licentie die volgens de voorwaarden van deze Licentie (verplicht) is verleend) tot gevolg heeft, en deze Licentie onverminderd van kracht blijft tenzij zij op de in lid a omschreven wijze wordt be\u00ebindigd.\n\n8. Diversen\n\n a. Elke keer dat de Gebruiker het Werk of een Verzamelwerk verspreidt of on-line beschikbaar stelt, biedt de Licentiegever de ontvanger een licentie op het Werk aan volgens de algemene voorwaarden van deze Licentie.\n\n b. Elke keer dat de Gebruiker een Afgeleid werk verspreidt of on-line beschikbaar stelt, biedt de Licentiegever de ontvanger een licentie op het oorspronkelijke werk aan volgens de algemene voorwaarden van deze Licentie.\n\n c. Indien enige bepaling van deze Licentie nietig of niet rechtens afdwingbaar is, zullen de overige voorwaarden van deze Licentie volledig van kracht blijven. De nietige of niet-afdwingbare bepaling zal, zonder tussenkomst van de partijen, worden vervangen door een geldige en afdwingbare bepaling waarbij het doel en de strekking van de oorspronkelijke bepaling zoveel mogelijk in acht worden genomen.\n\n d. Een verklaring van afstand van in deze Licentie verleende rechten of een wijziging van de voorwaarden van deze Licentie dient schriftelijk te geschieden en getekend te zijn door de partij die verantwoordelijk is voor de verklaring van afstand respectievelijk de partij wiens toestemming voor de wijziging is vereist.\n\n f. Deze Licentie bevat de volledige overeenkomst tussen de partijen met betrekking tot het in licentie gegeven Werk. Er zijn geen andere afspraken gemaakt met betrekking tot het Werk. De Licentiegever is niet gebonden aan enige aanvullende bepalingen die worden vermeld in mededelingen van de Gebruiker. Deze licentie kan uitsluitend worden gewijzigd met de wederzijdse, schriftelijke instemming van de Licentiegever en de Gebruiker.\n\nAansprakelijkheid en merkrechten van Creative Commons\n\nCreative Commons is geen partij bij deze Licentie en stelt geen enkele garantie met betrekking tot het Werk. Creative Commons kan op geen enkele wijze aansprakelijk worden gehouden jegens de Gebruiker of derden voor enigerlei schade met inbegrip van, maar niet beperkt tot enige algemene, bijzondere, incidentele of gevolgschade voortvloeiend uit deze Licentie. Onverminderd het bepaalde in de twee (2) voorgaande volzinnen is Creative Commons gebonden aan alle rechten en verplichtingen van de Licentiegever indien Creative Commons zichzelf uitdrukkelijk kenbaar gemaakt heeft als de Licentiegever krachtens deze Licentie.\n\nMet uitzondering van het beperkte doel om iedereen erop te wijzen dat het Werk in licentie is gegeven krachtens de CCPL, geeft Creative Commons aan geen van de partijen toestemming om gebruik te maken van de merknaam 'Creative Commons', enige daarmee verband houdende merknamen dan wel het logo van Creative Commons gebruiken zonder de voorafgaande schriftelijke toestemming van Creative Commons. Het geoorloofde gebruik dient in overeenstemming te zijn met de alsdan geldende richtlijnen betreffende het gebruik van merknamen van Creative Commons zoals die bekend worden gemaakt op de website of anderszins van tijd tot tijd, desgevraagd, ter beschikking worden gesteld. Volledigheidshalve dient te worden vermeld dat deze merkrechtelijke beperking geen deel uitmaakt van de Licentie.\n\nU kunt contact opnemen met Creative Commons via de website: https://creativecommons.org/.", + "json": "cc-by-3.0-nl.json", + "yaml": "cc-by-3.0-nl.yml", + "html": "cc-by-3.0-nl.html", + "license": "cc-by-3.0-nl.LICENSE" + }, + { + "license_key": "cc-by-3.0-us", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0-US", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Attribution 3.0 United States\n\n CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\n\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n a. \"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with one or more other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\n b. \"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this License.\n\n c. \"Licensor\" means the individual, individuals, entity or entities that offers the Work under the terms of this License.\n\n d. \"Original Author\" means the individual, individuals, entity or entities who created the Work.\n\n e. \"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\n f. \"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\n a. to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\n\n b. to create and reproduce Derivative Works provided that any such Derivative Work, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked \"The original work was translated from English to Spanish,\" or a modification could indicate \"The original work has been modified.\";;\n\n c. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\n\n d. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works.\n\n e. For the avoidance of doubt, where the Work is a musical composition:\n\n i. Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or, in the event that Licensor is a member of a performance rights society (e.g. ASCAP, BMI, SESAC), via that society, royalties for the public performance or public digital performance (e.g. webcast) of the Work.\n\n ii. Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work (\"cover version\") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions).\n\n f. Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions).\n\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.\n\n4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\n a. You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of a recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. When You distribute, publicly display, publicly perform, or publicly digitally perform the Work, You may not impose any technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by Section 4(b), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by Section 4(b), as requested.\n\n b. If You distribute, publicly display, publicly perform, or publicly digitally perform the Work (as defined in Section 1 above) or any Derivative Works (as defined in Section 1 above) or Collective Works (as defined in Section 1 above), You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution (\"Attribution Parties\") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and, consistent with Section 3(b) in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., \"French translation of the Work by Original Author,\" or \"Screenplay based on original Work by Original Author\"). The credit required by this Section 4(b) may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear, if a credit for all contributing authors of the Derivative Work or Collective Work appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties.\n\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND ONLY TO THE EXTENT OF ANY RIGHTS HELD IN THE LICENSED WORK BY THE LICENSOR. THE LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MARKETABILITY, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\n a. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works (as defined in Section 1 above) or Collective Works (as defined in Section 1 above) from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\n\n b. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n\n8. Miscellaneous\n\n a. Each time You distribute or publicly digitally perform the Work (as defined in Section 1 above) or a Collective Work (as defined in Section 1 above), the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\n\n b. Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\n\n c. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\n d. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\n\n e. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\n\nCreative Commons Notice\n\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of the License.\n\nCreative Commons may be contacted at https://creativecommons.org/.", + "json": "cc-by-3.0-us.json", + "yaml": "cc-by-3.0-us.yml", + "html": "cc-by-3.0-us.html", + "license": "cc-by-3.0-us.LICENSE" + }, + { + "license_key": "cc-by-4.0", + "category": "Permissive", + "spdx_license_key": "CC-BY-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution 4.0 International\n\n=======================================================================\n\nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide legal services or legal advice. Distribution of\nCreative Commons public licenses does not create a lawyer-client or\nother relationship. Creative Commons makes its licenses and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\nwarranties regarding its licenses, any material licensed under their\nterms and conditions, or any related information. Creative Commons\ndisclaims all liability for damages resulting from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\nCreative Commons public licenses provide a standard set of terms and\nconditions that creators and other rights holders may use to share\noriginal works of authorship and other material subject to copyright\nand certain other rights specified in the public license below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive, and do not form part of our licenses.\n\n Considerations for licensors: Our public licenses are\n intended for use by those authorized to give the public\n permission to use material in ways otherwise restricted by\n copyright and certain other rights. Our licenses are\n irrevocable. Licensors should read and understand the terms\n and conditions of the license they choose before applying it.\n Licensors should also secure all rights necessary before\n applying our licenses so that the public can reuse the\n material as expected. Licensors should clearly mark any\n material not subject to the license. This includes other CC-\n licensed material, or material used under an exception or\n limitation to copyright. More considerations for licensors:\n\twiki.creativecommons.org/Considerations_for_licensors\n\n Considerations for the public: By using one of our public\n licenses, a licensor grants the public permission to use the\n licensed material under specified terms and conditions. If\n the licensor's permission is not necessary for any reason--for\n example, because of any applicable exception or limitation to\n copyright--then that use is not regulated by the license. Our\n licenses grant only permissions under copyright and certain\n other rights that a licensor has authority to grant. Use of\n the licensed material may still be restricted for other\n reasons, including because others have copyright or other\n rights in the material. A licensor may make special requests,\n such as asking that all changes be marked or described.\n Although not required by our licenses, you are encouraged to\n respect those requests where reasonable. More considerations\n for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\nCreative Commons Attribution 4.0 International Public License\n\nBy exercising the Licensed Rights (defined below), You accept and agree\nto be bound by the terms and conditions of this Creative Commons\nAttribution 4.0 International Public License (\"Public License\"). To the\nextent this Public License may be interpreted as a contract, You are\ngranted the Licensed Rights in consideration of Your acceptance of\nthese terms and conditions, and the Licensor grants You such rights in\nconsideration of benefits the Licensor receives from making the\nLicensed Material available under these terms and conditions.\n\n\nSection 1 -- Definitions.\n\n a. Adapted Material means material subject to Copyright and Similar\n Rights that is derived from or based upon the Licensed Material\n and in which the Licensed Material is translated, altered,\n arranged, transformed, or otherwise modified in a manner requiring\n permission under the Copyright and Similar Rights held by the\n Licensor. For purposes of this Public License, where the Licensed\n Material is a musical work, performance, or sound recording,\n Adapted Material is always produced where the Licensed Material is\n synched in timed relation with a moving image.\n\n b. Adapter's License means the license You apply to Your Copyright\n and Similar Rights in Your contributions to Adapted Material in\n accordance with the terms and conditions of this Public License.\n\n c. Copyright and Similar Rights means copyright and/or similar rights\n closely related to copyright including, without limitation,\n performance, broadcast, sound recording, and Sui Generis Database\n Rights, without regard to how the rights are labeled or\n categorized. For purposes of this Public License, the rights\n specified in Section 2(b)(1)-(2) are not Copyright and Similar\n Rights.\n\n d. Effective Technological Measures means those measures that, in the\n absence of proper authority, may not be circumvented under laws\n fulfilling obligations under Article 11 of the WIPO Copyright\n Treaty adopted on December 20, 1996, and/or similar international\n agreements.\n\n e. Exceptions and Limitations means fair use, fair dealing, and/or\n any other exception or limitation to Copyright and Similar Rights\n that applies to Your use of the Licensed Material.\n\n f. Licensed Material means the artistic or literary work, database,\n or other material to which the Licensor applied this Public\n License.\n\n g. Licensed Rights means the rights granted to You subject to the\n terms and conditions of this Public License, which are limited to\n all Copyright and Similar Rights that apply to Your use of the\n Licensed Material and that the Licensor has authority to license.\n\n h. Licensor means the individual(s) or entity(ies) granting rights\n under this Public License.\n\n i. Share means to provide material to the public by any means or\n process that requires permission under the Licensed Rights, such\n as reproduction, public display, public performance, distribution,\n dissemination, communication, or importation, and to make material\n available to the public including in ways that members of the\n public may access the material from a place and at a time\n individually chosen by them.\n\n j. Sui Generis Database Rights means rights other than copyright\n resulting from Directive 96/9/EC of the European Parliament and of\n the Council of 11 March 1996 on the legal protection of databases,\n as amended and/or succeeded, as well as other essentially\n equivalent rights anywhere in the world.\n\n k. You means the individual or entity exercising the Licensed Rights\n under this Public License. Your has a corresponding meaning.\n\n\nSection 2 -- Scope.\n\n a. License grant.\n\n 1. Subject to the terms and conditions of this Public License,\n the Licensor hereby grants You a worldwide, royalty-free,\n non-sublicensable, non-exclusive, irrevocable license to\n exercise the Licensed Rights in the Licensed Material to:\n\n a. reproduce and Share the Licensed Material, in whole or\n in part; and\n\n b. produce, reproduce, and Share Adapted Material.\n\n 2. Exceptions and Limitations. For the avoidance of doubt, where\n Exceptions and Limitations apply to Your use, this Public\n License does not apply, and You do not need to comply with\n its terms and conditions.\n\n 3. Term. The term of this Public License is specified in Section\n 6(a).\n\n 4. Media and formats; technical modifications allowed. The\n Licensor authorizes You to exercise the Licensed Rights in\n all media and formats whether now known or hereafter created,\n and to make technical modifications necessary to do so. The\n Licensor waives and/or agrees not to assert any right or\n authority to forbid You from making technical modifications\n necessary to exercise the Licensed Rights, including\n technical modifications necessary to circumvent Effective\n Technological Measures. For purposes of this Public License,\n simply making modifications authorized by this Section 2(a)\n (4) never produces Adapted Material.\n\n 5. Downstream recipients.\n\n a. Offer from the Licensor -- Licensed Material. Every\n recipient of the Licensed Material automatically\n receives an offer from the Licensor to exercise the\n Licensed Rights under the terms and conditions of this\n Public License.\n\n b. No downstream restrictions. You may not offer or impose\n any additional or different terms or conditions on, or\n apply any Effective Technological Measures to, the\n Licensed Material if doing so restricts exercise of the\n Licensed Rights by any recipient of the Licensed\n Material.\n\n 6. No endorsement. Nothing in this Public License constitutes or\n may be construed as permission to assert or imply that You\n are, or that Your use of the Licensed Material is, connected\n with, or sponsored, endorsed, or granted official status by,\n the Licensor or others designated to receive attribution as\n provided in Section 3(a)(1)(A)(i).\n\n b. Other rights.\n\n 1. Moral rights, such as the right of integrity, are not\n licensed under this Public License, nor are publicity,\n privacy, and/or other similar personality rights; however, to\n the extent possible, the Licensor waives and/or agrees not to\n assert any such rights held by the Licensor to the limited\n extent necessary to allow You to exercise the Licensed\n Rights, but not otherwise.\n\n 2. Patent and trademark rights are not licensed under this\n Public License.\n\n 3. To the extent possible, the Licensor waives any right to\n collect royalties from You for the exercise of the Licensed\n Rights, whether directly or through a collecting society\n under any voluntary or waivable statutory or compulsory\n licensing scheme. In all other cases the Licensor expressly\n reserves any right to collect such royalties.\n\n\nSection 3 -- License Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the\nfollowing conditions.\n\n a. Attribution.\n\n 1. If You Share the Licensed Material (including in modified\n form), You must:\n\n a. retain the following if it is supplied by the Licensor\n with the Licensed Material:\n\n i. identification of the creator(s) of the Licensed\n Material and any others designated to receive\n attribution, in any reasonable manner requested by\n the Licensor (including by pseudonym if\n designated);\n\n ii. a copyright notice;\n\n iii. a notice that refers to this Public License;\n\n iv. a notice that refers to the disclaimer of\n warranties;\n\n v. a URI or hyperlink to the Licensed Material to the\n extent reasonably practicable;\n\n b. indicate if You modified the Licensed Material and\n retain an indication of any previous modifications; and\n\n c. indicate the Licensed Material is licensed under this\n Public License, and include the text of, or the URI or\n hyperlink to, this Public License.\n\n 2. You may satisfy the conditions in Section 3(a)(1) in any\n reasonable manner based on the medium, means, and context in\n which You Share the Licensed Material. For example, it may be\n reasonable to satisfy the conditions by providing a URI or\n hyperlink to a resource that includes the required\n information.\n\n 3. If requested by the Licensor, You must remove any of the\n information required by Section 3(a)(1)(A) to the extent\n reasonably practicable.\n\n 4. If You Share Adapted Material You produce, the Adapter's\n License You apply must not prevent recipients of the Adapted\n Material from complying with this Public License.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database Rights that\napply to Your use of the Licensed Material:\n\n a. for the avoidance of doubt, Section 2(a)(1) grants You the right\n to extract, reuse, reproduce, and Share all or a substantial\n portion of the contents of the database;\n\n b. if You include all or a substantial portion of the database\n contents in a database in which You have Sui Generis Database\n Rights, then the database in which You have Sui Generis Database\n Rights (but not its individual contents) is Adapted Material; and\n\n c. You must comply with the conditions in Section 3(a) if You Share\n all or a substantial portion of the contents of the database.\n\nFor the avoidance of doubt, this Section 4 supplements and does not\nreplace Your obligations under this Public License where the Licensed\nRights include other Copyright and Similar Rights.\n\n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\n a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\n PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\n b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE\n TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\n COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR\n USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR\n IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.\n\n c. The disclaimer of warranties and limitation of liability provided\n above shall be interpreted in a manner that, to the extent\n possible, most closely approximates an absolute disclaimer and\n waiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\n a. This Public License applies for the term of the Copyright and\n Similar Rights licensed here. However, if You fail to comply with\n this Public License, then Your rights under this Public License\n terminate automatically.\n\n b. Where Your right to use the Licensed Material has terminated under\n Section 6(a), it reinstates:\n\n 1. automatically as of the date the violation is cured, provided\n it is cured within 30 days of Your discovery of the\n violation; or\n\n 2. upon express reinstatement by the Licensor.\n\n For the avoidance of doubt, this Section 6(b) does not affect any\n right the Licensor may have to seek remedies for Your violations\n of this Public License.\n\n c. For the avoidance of doubt, the Licensor may also offer the\n Licensed Material under separate terms or conditions or stop\n distributing the Licensed Material at any time; however, doing so\n will not terminate this Public License.\n\n d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n License.\n\n\nSection 7 -- Other Terms and Conditions.\n\n a. The Licensor shall not be bound by any additional or different\n terms or conditions communicated by You unless expressly agreed.\n\n b. Any arrangements, understandings, or agreements regarding the\n Licensed Material not stated herein are separate from and\n independent of the terms and conditions of this Public License.\n\n\nSection 8 -- Interpretation.\n\n a. For the avoidance of doubt, this Public License does not, and\n shall not be interpreted to, reduce, limit, restrict, or impose\n conditions on any use of the Licensed Material that could lawfully\n be made without permission under this Public License.\n\n b. To the extent possible, if any provision of this Public License is\n deemed unenforceable, it shall be automatically reformed to the\n minimum extent necessary to make it enforceable. If the provision\n cannot be reformed, it shall be severed from this Public License\n without affecting the enforceability of the remaining terms and\n conditions.\n\n c. No term or condition of this Public License will be waived and no\n failure to comply consented to unless expressly agreed to by the\n Licensor.\n\n d. Nothing in this Public License constitutes or may be interpreted\n as a limitation upon, or waiver of, any privileges and immunities\n that apply to the Licensor or You, including from the legal\n processes of any jurisdiction or authority.\n\n\n=======================================================================\n\nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons may elect to apply one of\nits public licenses to material it publishes and in those instances\nwill be considered the \u201cLicensor.\u201d The text of the Creative Commons\npublic licenses is dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the limited purpose of indicating that\nmaterial is shared under a Creative Commons public license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies, Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or any other trademark or logo\nof Creative Commons without its prior written consent including,\nwithout limitation, in connection with any unauthorized modifications\nto any of its public licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic licenses.\n\nCreative Commons may be contacted at creativecommons.org.", + "json": "cc-by-4.0.json", + "yaml": "cc-by-4.0.yml", + "html": "cc-by-4.0.html", + "license": "cc-by-4.0.LICENSE" + }, + { + "license_key": "cc-by-nc-1.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-NonCommercial 1.0\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto create and reproduce Derivative Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works;\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.\n\n4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested.\nYou may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., \"French translation of the Work by Original Author,\" or \"Screenplay based on original Work by Original Author\"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\n5. Representations, Warranties and Disclaimer\n\nBy offering the Work for public release under this License, Licensor represents and warrants that, to the best of Licensor's knowledge after reasonable inquiry:\nLicensor has secured all rights in the Work necessary to grant the license rights hereunder and to permit the lawful exercise of the rights granted hereunder without You having any obligation to pay any royalties, compulsory license fees, residuals or any other payments;\nThe Work does not infringe the copyright, trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party.\nEXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF THE WORK.\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nEach time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", + "json": "cc-by-nc-1.0.json", + "yaml": "cc-by-nc-1.0.yml", + "html": "cc-by-nc-1.0.html", + "license": "cc-by-nc-1.0.LICENSE" + }, + { + "license_key": "cc-by-nc-2.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-NonCommercial 2.0\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this License.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto create and reproduce Derivative Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works;\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved, including but not limited to the rights set forth in Sections 4(d) and 4(e).\n\n4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested.\nYou may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., \"French translation of the Work by Original Author,\" or \"Screenplay based on original Work by Original Author\"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\nFor the avoidance of doubt, where the Work is a musical composition:\n\nPerformance Royalties Under Blanket Licenses. Licensor reserves the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work if that performance is primarily intended for or directed toward commercial advantage or private monetary compensation.\nMechanical Rights and Statutory Royalties. Licensor reserves the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work (\"cover version\") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions), if Your distribution of such cover version is primarily intended for or directed toward commercial advantage or private monetary compensation.\nWebcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor reserves the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions), if Your public digital performance is primarily intended for or directed toward commercial advantage or private monetary compensation.\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nEach time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", + "json": "cc-by-nc-2.0.json", + "yaml": "cc-by-nc-2.0.yml", + "html": "cc-by-nc-2.0.html", + "license": "cc-by-nc-2.0.LICENSE" + }, + { + "license_key": "cc-by-nc-2.5", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-NonCommercial 2.5\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this License.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto create and reproduce Derivative Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works;\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved, including but not limited to the rights set forth in Sections 4(d) and 4(e).\n\n4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(c), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by clause 4(c), as requested.\nYou may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., \"French translation of the Work by Original Author,\" or \"Screenplay based on original Work by Original Author\"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\nFor the avoidance of doubt, where the Work is a musical composition:\n\nPerformance Royalties Under Blanket Licenses. Licensor reserves the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work if that performance is primarily intended for or directed toward commercial advantage or private monetary compensation.\nMechanical Rights and Statutory Royalties. Licensor reserves the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work (\"cover version\") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions), if Your distribution of such cover version is primarily intended for or directed toward commercial advantage or private monetary compensation.\nWebcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor reserves the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions), if Your public digital performance is primarily intended for or directed toward commercial advantage or private monetary compensation.\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nEach time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", + "json": "cc-by-nc-2.5.json", + "yaml": "cc-by-nc-2.5.yml", + "html": "cc-by-nc-2.5.html", + "license": "cc-by-nc-2.5.LICENSE" + }, + { + "license_key": "cc-by-nc-3.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Legal Code\n\nAttribution-NonCommercial 3.0 Unported\n\n CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\n LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN\n ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS\n INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES\n REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR\n DAMAGES RESULTING FROM ITS USE.\n\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE\nCOMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY\nCOPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS\nAUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE\nTO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY\nBE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS\nCONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND\nCONDITIONS.\n\n1. Definitions\n\n a. \"Adaptation\" means a work based upon the Work, or upon the Work and\n other pre-existing works, such as a translation, adaptation,\n derivative work, arrangement of music or other alterations of a\n literary or artistic work, or phonogram or performance and includes\n cinematographic adaptations or any other form in which the Work may be\n recast, transformed, or adapted including in any form recognizably\n derived from the original, except that a work that constitutes a\n Collection will not be considered an Adaptation for the purpose of\n this License. For the avoidance of doubt, where the Work is a musical\n work, performance or phonogram, the synchronization of the Work in\n timed-relation with a moving image (\"synching\") will be considered an\n Adaptation for the purpose of this License.\n b. \"Collection\" means a collection of literary or artistic works, such as\n encyclopedias and anthologies, or performances, phonograms or\n broadcasts, or other works or subject matter other than works listed\n in Section 1(f) below, which, by reason of the selection and\n arrangement of their contents, constitute intellectual creations, in\n which the Work is included in its entirety in unmodified form along\n with one or more other contributions, each constituting separate and\n independent works in themselves, which together are assembled into a\n collective whole. A work that constitutes a Collection will not be\n considered an Adaptation (as defined above) for the purposes of this\n License.\n c. \"Distribute\" means to make available to the public the original and\n copies of the Work or Adaptation, as appropriate, through sale or\n other transfer of ownership.\n d. \"Licensor\" means the individual, individuals, entity or entities that\n offer(s) the Work under the terms of this License.\n e. \"Original Author\" means, in the case of a literary or artistic work,\n the individual, individuals, entity or entities who created the Work\n or if no individual or entity can be identified, the publisher; and in\n addition (i) in the case of a performance the actors, singers,\n musicians, dancers, and other persons who act, sing, deliver, declaim,\n play in, interpret or otherwise perform literary or artistic works or\n expressions of folklore; (ii) in the case of a phonogram the producer\n being the person or legal entity who first fixes the sounds of a\n performance or other sounds; and, (iii) in the case of broadcasts, the\n organization that transmits the broadcast.\n f. \"Work\" means the literary and/or artistic work offered under the terms\n of this License including without limitation any production in the\n literary, scientific and artistic domain, whatever may be the mode or\n form of its expression including digital form, such as a book,\n pamphlet and other writing; a lecture, address, sermon or other work\n of the same nature; a dramatic or dramatico-musical work; a\n choreographic work or entertainment in dumb show; a musical\n composition with or without words; a cinematographic work to which are\n assimilated works expressed by a process analogous to cinematography;\n a work of drawing, painting, architecture, sculpture, engraving or\n lithography; a photographic work to which are assimilated works\n expressed by a process analogous to photography; a work of applied\n art; an illustration, map, plan, sketch or three-dimensional work\n relative to geography, topography, architecture or science; a\n performance; a broadcast; a phonogram; a compilation of data to the\n extent it is protected as a copyrightable work; or a work performed by\n a variety or circus performer to the extent it is not otherwise\n considered a literary or artistic work.\n g. \"You\" means an individual or entity exercising rights under this\n License who has not previously violated the terms of this License with\n respect to the Work, or who has received express permission from the\n Licensor to exercise rights under this License despite a previous\n violation.\n h. \"Publicly Perform\" means to perform public recitations of the Work and\n to communicate to the public those public recitations, by any means or\n process, including by wire or wireless means or public digital\n performances; to make available to the public Works in such a way that\n members of the public may access these Works from a place and at a\n place individually chosen by them; to perform the Work to the public\n by any means or process and the communication to the public of the\n performances of the Work, including by public digital performance; to\n broadcast and rebroadcast the Work by any means including signs,\n sounds or images.\n i. \"Reproduce\" means to make copies of the Work by any means including\n without limitation by sound or visual recordings and the right of\n fixation and reproducing fixations of the Work, including storage of a\n protected performance or phonogram in digital form or other electronic\n medium.\n\n2. Fair Dealing Rights. Nothing in this License is intended to reduce,\nlimit, or restrict any uses free from copyright or rights arising from\nlimitations or exceptions that are provided for in connection with the\ncopyright protection under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License,\nLicensor hereby grants You a worldwide, royalty-free, non-exclusive,\nperpetual (for the duration of the applicable copyright) license to\nexercise the rights in the Work as stated below:\n\n a. to Reproduce the Work, to incorporate the Work into one or more\n Collections, and to Reproduce the Work as incorporated in the\n Collections;\n b. to create and Reproduce Adaptations provided that any such Adaptation,\n including any translation in any medium, takes reasonable steps to\n clearly label, demarcate or otherwise identify that changes were made\n to the original Work. For example, a translation could be marked \"The\n original work was translated from English to Spanish,\" or a\n modification could indicate \"The original work has been modified.\";\n c. to Distribute and Publicly Perform the Work including as incorporated\n in Collections; and,\n d. to Distribute and Publicly Perform Adaptations.\n\nThe above rights may be exercised in all media and formats whether now\nknown or hereafter devised. The above rights include the right to make\nsuch modifications as are technically necessary to exercise the rights in\nother media and formats. Subject to Section 8(f), all rights not expressly\ngranted by Licensor are hereby reserved, including but not limited to the\nrights set forth in Section 4(d).\n\n4. Restrictions. The license granted in Section 3 above is expressly made\nsubject to and limited by the following restrictions:\n\n a. You may Distribute or Publicly Perform the Work only under the terms\n of this License. You must include a copy of, or the Uniform Resource\n Identifier (URI) for, this License with every copy of the Work You\n Distribute or Publicly Perform. You may not offer or impose any terms\n on the Work that restrict the terms of this License or the ability of\n the recipient of the Work to exercise the rights granted to that\n recipient under the terms of the License. You may not sublicense the\n Work. You must keep intact all notices that refer to this License and\n to the disclaimer of warranties with every copy of the Work You\n Distribute or Publicly Perform. When You Distribute or Publicly\n Perform the Work, You may not impose any effective technological\n measures on the Work that restrict the ability of a recipient of the\n Work from You to exercise the rights granted to that recipient under\n the terms of the License. This Section 4(a) applies to the Work as\n incorporated in a Collection, but this does not require the Collection\n apart from the Work itself to be made subject to the terms of this\n License. If You create a Collection, upon notice from any Licensor You\n must, to the extent practicable, remove from the Collection any credit\n as required by Section 4(c), as requested. If You create an\n Adaptation, upon notice from any Licensor You must, to the extent\n practicable, remove from the Adaptation any credit as required by\n Section 4(c), as requested.\n b. You may not exercise any of the rights granted to You in Section 3\n above in any manner that is primarily intended for or directed toward\n commercial advantage or private monetary compensation. The exchange of\n the Work for other copyrighted works by means of digital file-sharing\n or otherwise shall not be considered to be intended for or directed\n toward commercial advantage or private monetary compensation, provided\n there is no payment of any monetary compensation in connection with\n the exchange of copyrighted works.\n c. If You Distribute, or Publicly Perform the Work or any Adaptations or\n Collections, You must, unless a request has been made pursuant to\n Section 4(a), keep intact all copyright notices for the Work and\n provide, reasonable to the medium or means You are utilizing: (i) the\n name of the Original Author (or pseudonym, if applicable) if supplied,\n and/or if the Original Author and/or Licensor designate another party\n or parties (e.g., a sponsor institute, publishing entity, journal) for\n attribution (\"Attribution Parties\") in Licensor's copyright notice,\n terms of service or by other reasonable means, the name of such party\n or parties; (ii) the title of the Work if supplied; (iii) to the\n extent reasonably practicable, the URI, if any, that Licensor\n specifies to be associated with the Work, unless such URI does not\n refer to the copyright notice or licensing information for the Work;\n and, (iv) consistent with Section 3(b), in the case of an Adaptation,\n a credit identifying the use of the Work in the Adaptation (e.g.,\n \"French translation of the Work by Original Author,\" or \"Screenplay\n based on original Work by Original Author\"). The credit required by\n this Section 4(c) may be implemented in any reasonable manner;\n provided, however, that in the case of a Adaptation or Collection, at\n a minimum such credit will appear, if a credit for all contributing\n authors of the Adaptation or Collection appears, then as part of these\n credits and in a manner at least as prominent as the credits for the\n other contributing authors. For the avoidance of doubt, You may only\n use the credit required by this Section for the purpose of attribution\n in the manner set out above and, by exercising Your rights under this\n License, You may not implicitly or explicitly assert or imply any\n connection with, sponsorship or endorsement by the Original Author,\n Licensor and/or Attribution Parties, as appropriate, of You or Your\n use of the Work, without the separate, express prior written\n permission of the Original Author, Licensor and/or Attribution\n Parties.\n d. For the avoidance of doubt:\n\n i. Non-waivable Compulsory License Schemes. In those jurisdictions in\n which the right to collect royalties through any statutory or\n compulsory licensing scheme cannot be waived, the Licensor\n reserves the exclusive right to collect such royalties for any\n exercise by You of the rights granted under this License;\n ii. Waivable Compulsory License Schemes. In those jurisdictions in\n which the right to collect royalties through any statutory or\n compulsory licensing scheme can be waived, the Licensor reserves\n the exclusive right to collect such royalties for any exercise by\n You of the rights granted under this License if Your exercise of\n such rights is for a purpose or use which is otherwise than\n noncommercial as permitted under Section 4(b) and otherwise waives\n the right to collect royalties through any statutory or compulsory\n licensing scheme; and,\n iii. Voluntary License Schemes. The Licensor reserves the right to\n collect royalties, whether individually or, in the event that the\n Licensor is a member of a collecting society that administers\n voluntary licensing schemes, via that society, from any exercise\n by You of the rights granted under this License that is for a\n purpose or use which is otherwise than noncommercial as permitted\n under Section 4(c).\n e. Except as otherwise agreed in writing by the Licensor or as may be\n otherwise permitted by applicable law, if You Reproduce, Distribute or\n Publicly Perform the Work either by itself or as part of any\n Adaptations or Collections, You must not distort, mutilate, modify or\n take other derogatory action in relation to the Work which would be\n prejudicial to the Original Author's honor or reputation. Licensor\n agrees that in those jurisdictions (e.g. Japan), in which any exercise\n of the right granted in Section 3(b) of this License (the right to\n make Adaptations) would be deemed to be a distortion, mutilation,\n modification or other derogatory action prejudicial to the Original\n Author's honor and reputation, the Licensor will waive or not assert,\n as appropriate, this Section, to the fullest extent permitted by the\n applicable national law, to enable You to reasonably exercise Your\n right under Section 3(b) of this License (right to make Adaptations)\n but not otherwise.\n\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR\nOFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY\nKIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,\nINCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,\nFITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF\nLATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS,\nWHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION\nOF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE\nLAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR\nANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES\nARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS\nBEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\n a. This License and the rights granted hereunder will terminate\n automatically upon any breach by You of the terms of this License.\n Individuals or entities who have received Adaptations or Collections\n from You under this License, however, will not have their licenses\n terminated provided such individuals or entities remain in full\n compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will\n survive any termination of this License.\n b. Subject to the above terms and conditions, the license granted here is\n perpetual (for the duration of the applicable copyright in the Work).\n Notwithstanding the above, Licensor reserves the right to release the\n Work under different license terms or to stop distributing the Work at\n any time; provided, however that any such election will not serve to\n withdraw this License (or any other license that has been, or is\n required to be, granted under the terms of this License), and this\n License will continue in full force and effect unless terminated as\n stated above.\n\n8. Miscellaneous\n\n a. Each time You Distribute or Publicly Perform the Work or a Collection,\n the Licensor offers to the recipient a license to the Work on the same\n terms and conditions as the license granted to You under this License.\n b. Each time You Distribute or Publicly Perform an Adaptation, Licensor\n offers to the recipient a license to the original Work on the same\n terms and conditions as the license granted to You under this License.\n c. If any provision of this License is invalid or unenforceable under\n applicable law, it shall not affect the validity or enforceability of\n the remainder of the terms of this License, and without further action\n by the parties to this agreement, such provision shall be reformed to\n the minimum extent necessary to make such provision valid and\n enforceable.\n d. No term or provision of this License shall be deemed waived and no\n breach consented to unless such waiver or consent shall be in writing\n and signed by the party to be charged with such waiver or consent.\n e. This License constitutes the entire agreement between the parties with\n respect to the Work licensed here. There are no understandings,\n agreements or representations with respect to the Work not specified\n here. Licensor shall not be bound by any additional provisions that\n may appear in any communication from You. This License may not be\n modified without the mutual written agreement of the Licensor and You.\n f. The rights granted under, and the subject matter referenced, in this\n License were drafted utilizing the terminology of the Berne Convention\n for the Protection of Literary and Artistic Works (as amended on\n September 28, 1979), the Rome Convention of 1961, the WIPO Copyright\n Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996\n and the Universal Copyright Convention (as revised on July 24, 1971).\n These rights and subject matter take effect in the relevant\n jurisdiction in which the License terms are sought to be enforced\n according to the corresponding provisions of the implementation of\n those treaty provisions in the applicable national law. If the\n standard suite of rights granted under applicable copyright law\n includes additional rights not granted under this License, such\n additional rights are deemed to be included in the License; this\n License is not intended to restrict the license of any rights under\n applicable law.\n\n\nCreative Commons Notice\n\n Creative Commons is not a party to this License, and makes no warranty\n whatsoever in connection with the Work. Creative Commons will not be\n liable to You or any party on any legal theory for any damages\n whatsoever, including without limitation any general, special,\n incidental or consequential damages arising in connection to this\n license. Notwithstanding the foregoing two (2) sentences, if Creative\n Commons has expressly identified itself as the Licensor hereunder, it\n shall have all rights and obligations of Licensor.\n\n Except for the limited purpose of indicating to the public that the\n Work is licensed under the CCPL, Creative Commons does not authorize\n the use by either party of the trademark \"Creative Commons\" or any\n related trademark or logo of Creative Commons without the prior\n written consent of Creative Commons. Any permitted use will be in\n compliance with Creative Commons' then-current trademark usage\n guidelines, as may be published on its website or otherwise made\n available upon request from time to time. For the avoidance of doubt,\n this trademark restriction does not form part of the License.\n\n Creative Commons may be contacted at https://creativecommons.org/.", + "json": "cc-by-nc-3.0.json", + "yaml": "cc-by-nc-3.0.yml", + "html": "cc-by-nc-3.0.html", + "license": "cc-by-nc-3.0.LICENSE" + }, + { + "license_key": "cc-by-nc-3.0-de", + "category": "Free Restricted", + "spdx_license_key": "CC-BY-NC-3.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Namensnennung - Keine kommerzielle Nutzung 3.0 Deutschland\n\n CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ F\u00dcHRT ZU KEINEM MANDATSVERH\u00c4LTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEW\u00c4HR ZUR VERF\u00dcGUNG. CREATIVE COMMONS \u00dcBERNIMMT KEINE GEW\u00c4HRLEISTUNG F\u00dcR DIE GELIEFERTEN INFORMATIONEN UND SCHLIE\u00dfT DIE HAFTUNG F\u00dcR SCH\u00c4DEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN.\n\nLizenz\n\nDER GEGENSTAND DIESER LIZENZ (WIE UNTER \"SCHUTZGEGENSTAND\" DEFINIERT) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\", \"LIZENZ\" ODER \"LIZENZVERTRAG\") ZUR VERF\u00dcGUNG GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER ANDERE GESETZE GESCH\u00dcTZT. JEDE FORM DER NUTZUNG DES SCHUTZGEGENSTANDES, DIE NICHT AUFGRUND DIESER LIZENZ ODER DURCH GESETZE GESTATTET IST, IST UNZUL\u00c4SSIG.\n\nDURCH DIE AUS\u00dcBUNG EINES DURCH DIESE LIZENZ GEW\u00c4HRTEN RECHTS AN DEM SCHUTZGEGENSTAND ERKL\u00c4REN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH EINVERSTANDEN. SOWEIT DIESE LIZENZ ALS LIZENZVERTRAG ANZUSEHEN IST, GEW\u00c4HRT IHNEN DER LIZENZGEBER DIE IN DER LIZENZ GENANNTEN RECHTE UNENTGELTLICH UND IM AUSTAUSCH DAF\u00dcR, DASS SIE DAS GEBUNDENSEIN AN DIE LIZENZBEDINGUNGEN AKZEPTIEREN.\n\n1. Definitionen\n\n a. Der Begriff \"Abwandlung\" im Sinne dieser Lizenz bezeichnet das Ergebnis jeglicher Art von Ver\u00e4nderung des Schutzgegenstandes, solange die eigenpers\u00f6nlichen Z\u00fcge des Schutzgegenstandes darin nicht verblassen und daran eigene Schutzrechte entstehen. Das kann insbesondere eine Bearbeitung, Umgestaltung, \u00c4nderung, Anpassung, \u00dcbersetzung oder Heranziehung des Schutzgegenstandes zur Vertonung von Laufbildern sein. Nicht als Abwandlung des Schutzgegenstandes gelten seine Aufnahme in eine Sammlung oder ein Sammelwerk und die freie Benutzung des Schutzgegenstandes.\n\n b. Der Begriff \"Sammelwerk\" im Sinne dieser Lizenz meint eine Zusammenstellung von literarischen, k\u00fcnstlerischen oder wissenschaftlichen Inhalten, sofern diese Zusammenstellung aufgrund von Auswahl und Anordnung der darin enthaltenen selbst\u00e4ndigen Elemente eine geistige Sch\u00f6pfung darstellt, unabh\u00e4ngig davon, ob die Elemente systematisch oder methodisch angelegt und dadurch einzeln zug\u00e4nglich sind oder nicht.\n\n c. \"Verbreiten\" im Sinne dieser Lizenz bedeutet, den Schutzgegenstand oder Abwandlungen im Original oder in Form von Vervielf\u00e4ltigungsst\u00fccken, mithin in k\u00f6rperlich fixierter Form der \u00d6ffentlichkeit anzubieten oder in Verkehr zu bringen.\n\n d. Der \"Lizenzgeber\" im Sinne dieser Lizenz ist diejenige nat\u00fcrliche oder juristische Person oder Gruppe, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet und insoweit als Rechteinhaberin auftritt.\n\n e. \"Rechteinhaber\" im Sinne dieser Lizenz ist der Urheber des Schutzgegenstandes oder jede andere nat\u00fcrliche oder juristische Person oder Gruppe von Personen, die am Schutzgegenstand ein Immaterialg\u00fcterrecht erlangt hat, welches die in Abschnitt 3 genannten Handlungen erfasst und bei dem eine Einr\u00e4umung von Nutzungsrechten oder eine Weiter\u00fcbertragung an Dritte m\u00f6glich ist.\n\n f. Der Begriff \"Schutzgegenstand\" bezeichnet in dieser Lizenz den literarischen, k\u00fcnstlerischen oder wissenschaftlichen Inhalt, der unter den Bedingungen dieser Lizenz angeboten wird. Das kann insbesondere eine pers\u00f6nliche geistige Sch\u00f6pfung jeglicher Art, ein Werk der kleinen M\u00fcnze, ein nachgelassenes Werk oder auch ein Lichtbild oder anderes Objekt eines verwandten Schutzrechts sein, unabh\u00e4ngig von der Art seiner Fixierung und unabh\u00e4ngig davon, auf welche Weise jeweils eine Wahrnehmung erfolgen kann, gleichviel ob in analoger oder digitaler Form. Soweit Datenbanken oder Zusammenstellungen von Daten einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen, unterfallen auch sie dem Begriff \"Schutzgegenstand\" im Sinne dieser Lizenz.\n\n g. Mit \"Sie\" bzw. \"Ihne*\" ist die nat\u00fcrliche oder juristische Person gemeint, die in dieser Lizenz im Abschnitt 3 genannte Nutzungen des Schutzgegenstandes vornimmt und zuvor in Hinblick auf den Schutzgegenstand nicht gegen Bedingungen dieser Lizenz versto\u00dfen oder aber die ausdr\u00fcckliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese Lizenz gew\u00e4hrten Nutzungsrechte trotz eines vorherigen Versto\u00dfes auszu\u00fcben.\n\n h. Unter \"\u00d6ffentlich Zeigen\" im Sinne dieser Lizenz sind Ver\u00f6ffentlichungen und Pr\u00e4sentationen des Schutzgegenstandes zu verstehen, die f\u00fcr eine Mehrzahl von Mitgliedern der \u00d6ffentlichkeit bestimmt sind und in unk\u00f6rperlicher Form mittels \u00f6ffentlicher Wiedergabe in Form von Vortrag, Auff\u00fchrung, Vorf\u00fchrung, Darbietung, Sendung, Weitersendung, zeit- und ortsunabh\u00e4ngiger Zug\u00e4nglichmachung oder in k\u00f6rperlicher Form mittels Ausstellung erfolgen, unabh\u00e4ngig von bestimmten Veranstaltungen und unabh\u00e4ngig von den zum Einsatz kommenden Techniken und Verfahren, einschlie\u00dflich drahtgebundener oder drahtloser Mittel und Einstellen in das Internet.\n\n i. \"Vervielf\u00e4ltigen\" im Sinne dieser Lizenz bedeutet, mittels beliebiger Verfahren Vervielf\u00e4ltigungsst\u00fccke des Schutzgegenstandes herzustellen, insbesondere durch Ton- oder Bildaufzeichnungen, und umfasst auch den Vorgang, erstmals k\u00f6rperliche Fixierungen des Schutzgegenstandes sowie Vervielf\u00e4ltigungsst\u00fccke dieser Fixierungen anzufertigen, sowie die \u00dcbertragung des Schutzgegenstandes auf einen Bild- oder Tontr\u00e4ger oder auf ein anderes elektronisches Medium, gleichviel ob in digitaler oder analoger Form.\n\n2. Schranken des Immaterialg\u00fcterrechts. Diese Lizenz ist in keiner Weise darauf gerichtet, Befugnisse zur Nutzung des Schutzgegenstandes zu vermindern, zu beschr\u00e4nken oder zu vereiteln, die Ihnen aufgrund der Schranken des Urheberrechts oder anderer Rechtsnormen bereits ohne Weiteres zustehen oder sich aus dem Fehlen eines immaterialg\u00fcterrechtlichen Schutzes ergeben.\n\n3. Einr\u00e4umung von Nutzungsrechten. Unter den Bedingungen dieser Lizenz r\u00e4umt Ihnen der Lizenzgeber - unbeschadet unverzichtbarer Rechte und vorbehaltlich des Abschnitts 4.e) - das verg\u00fctungsfreie, r\u00e4umlich und zeitlich (f\u00fcr die Dauer des Schutzrechts am Schutzgegenstand) unbeschr\u00e4nkte einfache Recht ein, den Schutzgegenstand auf die folgenden Arten und Weisen zu nutzen (\"unentgeltlich einger\u00e4umtes einfaches Nutzungsrecht f\u00fcr jedermann\"):\n\n a. Den Schutzgegenstand in beliebiger Form und Menge zu vervielf\u00e4ltigen, ihn in Sammelwerke zu integrieren und ihn als Teil solcher Sammelwerke zu vervielf\u00e4ltigen;\n\n b. Abwandlungen des Schutzgegenstandes anzufertigen, einschlie\u00dflich \u00dcbersetzungen unter Nutzung jedweder Medien, sofern deutlich erkennbar gemacht wird, dass es sich um Abwandlungen handelt;\n\n c. den Schutzgegenstand, allein oder in Sammelwerke aufgenommen, \u00f6ffentlich zu zeigen und zu verbreiten;\n\n d. Abwandlungen des Schutzgegenstandes zu ver\u00f6ffentlichen, \u00f6ffentlich zu zeigen und zu verbreiten.\n\nDas vorgenannte Nutzungsrecht wird f\u00fcr alle bekannten sowie f\u00fcr alle noch nicht bekannten Nutzungsarten einger\u00e4umt. Es beinhaltet auch das Recht, solche \u00c4nderungen am Schutzgegenstand vorzunehmen, die f\u00fcr bestimmte nach dieser Lizenz zul\u00e4ssige Nutzungen technisch erforderlich sind. Alle sonstigen Rechte, die \u00fcber diesen Abschnitt hinaus nicht ausdr\u00fccklich durch den Lizenzgeber einger\u00e4umt werden, bleiben diesem allein vorbehalten. Soweit Datenbanken oder Zusammenstellungen von Daten Schutzgegenstand dieser Lizenz oder Teil dessen sind und einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen, verzichtet der Lizenzgeber auf s\u00e4mtliche aus diesem Schutz resultierenden Rechte.\n\n4. Bedingungen. Die Einr\u00e4umung des Nutzungsrechts gem\u00e4\u00df Abschnitt 3 dieser Lizenz erfolgt ausdr\u00fccklich nur unter den folgenden Bedingungen:\n\n a. Sie d\u00fcrfen den Schutzgegenstand ausschlie\u00dflich unter den Bedingungen dieser Lizenz verbreiten oder \u00f6ffentlich zeigen. Sie m\u00fcssen dabei stets eine Kopie dieser Lizenz oder deren vollst\u00e4ndige Internetadresse in Form des Uniform-Resource-Identifier (URI) beif\u00fcgen. Sie d\u00fcrfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen dieser Lizenz oder die durch diese Lizenz gew\u00e4hrten Rechte beschr\u00e4nken. Sie d\u00fcrfen den Schutzgegenstand nicht unterlizenzieren. Bei jeder Kopie des Schutzgegenstandes, die Sie verbreiten oder \u00f6ffentlich zeigen, m\u00fcssen Sie alle Hinweise unver\u00e4ndert lassen, die auf diese Lizenz und den Haftungsausschluss hinweisen. Wenn Sie den Schutzgegenstand verbreiten oder \u00f6ffentlich zeigen, d\u00fcrfen Sie (in Bezug auf den Schutzgegenstand) keine technischen Ma\u00dfnahmen ergreifen, die den Nutzer des Schutzgegenstandes in der Aus\u00fcbung der ihm durch diese Lizenz gew\u00e4hrten Rechte behindern k\u00f6nnen. Dieser Abschnitt 4.a) gilt auch f\u00fcr den Fall, dass der Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt dieser Lizenz unterstellt werden muss. Sofern Sie ein Sammelwerk erstellen, m\u00fcssen Sie auf die Mitteilung eines Lizenzgebers hin aus dem Sammelwerk die in Abschnitt 4.c) aufgez\u00e4hlten Hinweise entfernen. Wenn Sie eine Abwandlung vornehmen, m\u00fcssen Sie auf die Mitteilung eines Lizenzgebers hin von der Abwandlung die in Abschnitt 4.c) aufgez\u00e4hlten Hinweise entfernen.\n\n b. Die Rechteeinr\u00e4umung gem\u00e4\u00df Abschnitt 3 gilt nur f\u00fcr Handlungen, die nicht vorrangig auf einen gesch\u00e4ftlichen Vorteil oder eine geldwerte Verg\u00fctung gerichtet sind (\"nicht-kommerzielle Nutzung\", \"Non-commercial-Option\"). Wird Ihnen in Zusammenhang mit dem Schutzgegenstand dieser Lizenz ein anderer Schutzgegenstand \u00fcberlassen, ohne dass eine vertragliche Verpflichtung hierzu besteht (etwa im Wege von File-Sharing), so wird dies nicht als auf gesch\u00e4ftlichen Vorteil oder geldwerte Verg\u00fctung gerichtet angesehen, wenn in Verbindung mit dem Austausch der Schutzgegenst\u00e4nde tats\u00e4chlich keine Zahlung oder geldwerte Verg\u00fctung geleistet wird.\n\n c. Die Verbreitung und das \u00f6ffentliche Zeigen des Schutzgegenstandes oder auf ihm aufbauender Abwandlungen oder ihn enthaltender Sammelwerke ist Ihnen nur unter der Bedingung gestattet, dass Sie, vorbehaltlich etwaiger Mitteilungen im Sinne von Abschnitt 4.a), alle dazu geh\u00f6renden Rechtevermerke unber\u00fchrt lassen. Sie sind verpflichtet, die Rechteinhaberschaft in einer der Nutzung entsprechenden, angemessenen Form anzuerkennen, indem Sie - soweit bekannt - Folgendes angeben:\n\n i. Den Namen (oder das Pseudonym, falls ein solches verwendet wird) des Rechteinhabers und / oder, falls der Lizenzgeber im Rechtevermerk, in den Nutzungsbedingungen oder auf andere angemessene Weise eine Zuschreibung an Dritte vorgenommen hat (z.B. an eine Stiftung, ein Verlagshaus oder eine Zeitung) (\"Zuschreibungsempf\u00e4nger\"), Namen bzw. Bezeichnung dieses oder dieser Dritten;\n\n ii. den Titel des Inhaltes;\n\n iii. in einer praktikablen Form den Uniform-Resource-Identifier (URI, z.B. Internetadresse), den der Lizenzgeber zum Schutzgegenstand angegeben hat, es sei denn, dieser URI verweist nicht auf den Rechtevermerk oder die Lizenzinformationen zum Schutzgegenstand;\n\n iv. und im Falle einer Abwandlung des Schutzgegenstandes in \u00dcbereinstimmung mit Abschnitt 3.b) einen Hinweis darauf, dass es sich um eine Abwandlung handelt.\n\n Die nach diesem Abschnitt 4.c) erforderlichen Angaben k\u00f6nnen in jeder angemessenen Form gemacht werden; im Falle einer Abwandlung des Schutzgegenstandes oder eines Sammelwerkes m\u00fcssen diese Angaben das Minimum darstellen und bei gemeinsamer Nennung mehrerer Rechteinhaber dergestalt erfolgen, dass sie zumindest ebenso hervorgehoben sind wie die Hinweise auf die \u00fcbrigen Rechteinhaber. Die Angaben nach diesem Abschnitt d\u00fcrfen Sie ausschlie\u00dflich zur Angabe der Rechteinhaberschaft in der oben bezeichneten Weise verwenden. Durch die Aus\u00fcbung Ihrer Rechte aus dieser Lizenz d\u00fcrfen Sie ohne eine vorherige, separat und schriftlich vorliegende Zustimmung des Lizenzgebers und / oder des Zuschreibungsempf\u00e4ngers weder explizit noch implizit irgendeine Verbindung zum Lizenzgeber oder Zuschreibungsempf\u00e4nger und ebenso wenig eine Unterst\u00fctzung oder Billigung durch ihn andeuten.\n\n d. Die oben unter 4.a) bis c) genannten Einschr\u00e4nkungen gelten nicht f\u00fcr solche Teile des Schutzgegenstandes, die allein deshalb unter den Schutzgegenstandsbegriff fallen, weil sie als Datenbanken oder Zusammenstellungen von Daten einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen.\n\n e. Bez\u00fcglich Verg\u00fctung f\u00fcr die Nutzung des Schutzgegenstandes gilt Folgendes:\n\n i. Unverzichtbare gesetzliche Verg\u00fctungsanspr\u00fcche: Soweit unverzichtbare Verg\u00fctungsanspr\u00fcche im Gegenzug f\u00fcr gesetzliche Lizenzen vorgesehen oder Pauschalabgabensysteme (zum Beispiel f\u00fcr Leermedien) vorhanden sind, beh\u00e4lt sich der Lizenzgeber das ausschlie\u00dfliche Recht vor, die entsprechende Verg\u00fctung einzuziehen f\u00fcr jede Aus\u00fcbung eines Rechts aus dieser Lizenz durch Sie.\n\n ii. Verg\u00fctung bei Zwangslizenzen: Sofern Zwangslizenzen au\u00dferhalb dieser Lizenz vorgesehen sind und zustande kommen, beh\u00e4lt sich der Lizenzgeber das ausschlie\u00dfliche Recht auf Einziehung der entsprechenden Verg\u00fctung f\u00fcr den Fall vor, dass Sie eine Nutzung des Schutzgegenstandes f\u00fcr andere als die in Abschnitt 4.b) als nicht-kommerziell definierten Zwecke vornehmen, verzichtet f\u00fcr alle \u00fcbrigen, lizenzgerechten F\u00e4lle von Nutzung jedoch auf jegliche Verg\u00fctung.\n\n iii. Verg\u00fctung in sonstigen F\u00e4llen: Bez\u00fcglich lizenzgerechter Nutzung des Schutzgegenstandes durch Sie, die nicht unter die beiden vorherigen Abschnitte (i) und (ii) f\u00e4llt, verzichtet der Lizenzgeber auf jegliche Verg\u00fctung, unabh\u00e4ngig davon, ob eine Einziehung der Verg\u00fctung durch ihn selbst oder nur durch eine Verwertungsgesellschaft m\u00f6glich w\u00e4re. Der Lizenzgeber beh\u00e4lt sich jedoch das ausschlie\u00dfliche Recht auf Einziehung der entsprechenden Verg\u00fctung (durch ihn selbst oder eine Verwertungsgesellschaft) f\u00fcr den Fall vor, dass Sie eine Nutzung des Schutzgegenstandes f\u00fcr andere als die in Abschnitt 4.b) als nicht-kommerziell definierten Zwecke vornehmen.\n\n f. Pers\u00f6nlichkeitsrechte bleiben - soweit sie bestehen - von dieser Lizenz unber\u00fchrt.\n\n5. Gew\u00e4hrleistung\n\nSOFERN KEINE ANDERS LAUTENDE, SCHRIFTLICHE VEREINBARUNG ZWISCHEN DEM LIZENZGEBER UND IHNEN GESCHLOSSEN WURDE UND SOWEIT M\u00c4NGEL NICHT ARGLISTIG VERSCHWIEGEN WURDEN, BIETET DER LIZENZGEBER DEN SCHUTZGEGENSTAND UND DIE EINR\u00c4UMUNG VON RECHTEN UNTER AUSSCHLUSS JEGLICHER GEW\u00c4HRLEISTUNG AN UND \u00dcBERNIMMT WEDER AUSDR\u00dcCKLICH NOCH KONKLUDENT GARANTIEN IRGENDEINER ART. DIES UMFASST INSBESONDERE DAS FREISEIN VON SACH- UND RECHTSM\u00c4NGELN, UNABH\u00c4NGIG VON DEREN ERKENNBARKEIT F\u00dcR DEN LIZENZGEBER, DIE VERKEHRSF\u00c4HIGKEIT DES SCHUTZGEGENSTANDES, SEINE VERWENDBARKEIT F\u00dcR EINEN BESTIMMTEN ZWECK SOWIE DIE KORREKTHEIT VON BESCHREIBUNGEN. DIESE GEW\u00c4HRLEISTUNGSBESCHR\u00c4NKUNG GILT NICHT, SOWEIT M\u00c4NGEL ZU SCH\u00c4DEN DER IN ABSCHNITT 6 BEZEICHNETEN ART F\u00dcHREN UND AUF SEITEN DES LIZENZGEBERS DAS JEWEILS GENANNTE VERSCHULDEN BZW. VERTRETENM\u00dcSSEN EBENFALLS VORLIEGT.\n\n6. Haftungsbeschr\u00e4nkung\n\nDER LIZENZGEBER HAFTET IHNEN GEGEN\u00dcBER IN BEZUG AUF SCH\u00c4DEN AUS DER VERLETZUNG DES LEBENS, DES K\u00d6RPERS ODER DER GESUNDHEIT NUR, SOFERN IHM WENIGSTENS FAHRL\u00c4SSIGKEIT VORZUWERFEN IST, F\u00dcR SONSTIGE SCH\u00c4DEN NUR BEI GROBER FAHRL\u00c4SSIGKEIT ODER VORSATZ, UND \u00dcBERNIMMT DAR\u00dcBER HINAUS KEINERLEI FREIWILLIGE HAFTUNG.\n\n7. Erl\u00f6schen\n\n a. Diese Lizenz und die durch sie einger\u00e4umten Nutzungsrechte erl\u00f6schen mit Wirkung f\u00fcr die Zukunft im Falle eines Versto\u00dfes gegen die Lizenzbedingungen durch Sie, ohne dass es dazu der Kenntnis des Lizenzgebers vom Versto\u00df oder einer weiteren Handlung einer der Vertragsparteien bedarf. Mit nat\u00fcrlichen oder juristischen Personen, die Abwandlungen des Schutzgegenstandes oder diesen enthaltende Sammelwerke unter den Bedingungen dieser Lizenz von Ihnen erhalten haben, bestehen nachtr\u00e4glich entstandene Lizenzbeziehungen jedoch solange weiter, wie die genannten Personen sich ihrerseits an s\u00e4mtliche Lizenzbedingungen halten. Dar\u00fcber hinaus gelten die Ziffern 1, 2, 5, 6, 7, und 8 auch nach einem Erl\u00f6schen dieser Lizenz fort.\n\n b. Vorbehaltlich der oben genannten Bedingungen gilt diese Lizenz unbefristet bis der rechtliche Schutz f\u00fcr den Schutzgegenstand ausl\u00e4uft. Davon abgesehen beh\u00e4lt der Lizenzgeber das Recht, den Schutzgegenstand unter anderen Lizenzbedingungen anzubieten oder die eigene Weitergabe des Schutzgegenstandes jederzeit einzustellen, solange die Aus\u00fcbung dieses Rechts nicht einer K\u00fcndigung oder einem Widerruf dieser Lizenz (oder irgendeiner Weiterlizenzierung, die auf Grundlage dieser Lizenz bereits erfolgt ist bzw. zuk\u00fcnftig noch erfolgen muss) dient und diese Lizenz unter Ber\u00fccksichtigung der oben zum Erl\u00f6schen genannten Bedingungen vollumf\u00e4nglich wirksam bleibt.\n\n8. Sonstige Bestimmungen\n\n a. Jedes Mal wenn Sie den Schutzgegenstand f\u00fcr sich genommen oder als Teil eines Sammelwerkes verbreiten oder \u00f6ffentlich zeigen, bietet der Lizenzgeber dem Empf\u00e4nger eine Lizenz zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz.\n\n b. Jedes Mal wenn Sie eine Abwandlung des Schutzgegenstandes verbreiten oder \u00f6ffentlich zeigen, bietet der Lizenzgeber dem Empf\u00e4nger eine Lizenz am urspr\u00fcnglichen Schutzgegenstand zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz.\n\n c. Sollte eine Bestimmung dieser Lizenz unwirksam sein, so bleibt davon die Wirksamkeit der Lizenz im \u00dcbrigen unber\u00fchrt.\n\n d. Keine Bestimmung dieser Lizenz soll als abbedungen und kein Versto\u00df gegen sie als zul\u00e4ssig gelten, solange die von dem Verzicht oder von dem Versto\u00df betroffene Seite nicht schriftlich zugestimmt hat.\n\n e. Diese Lizenz (zusammen mit in ihr ausdr\u00fccklich vorgesehenen Erlaubnissen, Mitteilungen und Zustimmungen, soweit diese tats\u00e4chlich vorliegen) stellt die vollst\u00e4ndige Vereinbarung zwischen dem Lizenzgeber und Ihnen in Bezug auf den Schutzgegenstand dar. Es bestehen keine Abreden, Vereinbarungen oder Erkl\u00e4rungen in Bezug auf den Schutzgegenstand, die in dieser Lizenz nicht genannt sind. Rechtsgesch\u00e4ftliche \u00c4nderungen des Verh\u00e4ltnisses zwischen dem Lizenzgeber und Ihnen sind nur \u00fcber Modifikationen dieser Lizenz m\u00f6glich. Der Lizenzgeber ist an etwaige zus\u00e4tzliche, einseitig durch Sie \u00fcbermittelte Bestimmungen nicht gebunden. Diese Lizenz kann nur durch schriftliche Vereinbarung zwischen Ihnen und dem Lizenzgeber modifiziert werden. Derlei Modifikationen wirken ausschlie\u00dflich zwischen dem Lizenzgeber und Ihnen und wirken sich nicht auf die Dritten gem\u00e4\u00df Ziffern 8.a) und b) angeboteten Lizenzen aus.\n\n f. Sofern zwischen Ihnen und dem Lizenzgeber keine anderweitige Vereinbarung getroffen wurde und soweit Wahlfreiheit besteht, findet auf diesen Lizenzvertrag das Recht der Bundesrepublik Deutschland Anwendung.\n\n\nCreative Commons Notice\n\nCreative Commons ist nicht Partei dieser Lizenz und \u00fcbernimmt keinerlei Gew\u00e4hr oder dergleichen in Bezug auf den Schutzgegenstand. Creative Commons haftet Ihnen oder einer anderen Partei unter keinem rechtlichen Gesichtspunkt f\u00fcr irgendwelche Sch\u00e4den, die - abstrakt oder konkret, zuf\u00e4llig oder vorhersehbar - im Zusammenhang mit dieser Lizenz entstehen. Unbeschadet der vorangegangen beiden S\u00e4tze, hat Creative Commons alle Rechte und Pflichten eines Lizenzgebers, wenn es sich ausdr\u00fccklich als Lizenzgeber im Sinne dieser Lizenz bezeichnet.\n\nCreative Commons gew\u00e4hrt den Parteien nur insoweit das Recht, das Logo und die Marke \"Creative Commons\" zu nutzen, als dies notwendig ist, um der \u00d6ffentlichkeit gegen\u00fcber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein dar\u00fcber hinaus gehender Gebrauch der Marke \"Creative Commons\" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website ver\u00f6ffentlicht oder auf andere Weise auf Anfrage zug\u00e4nglich gemacht wird. Zur Klarstellung: Die genannten Einschr\u00e4nkungen der Markennutzung sind nicht Bestandteil dieser Lizenz.\n\nCreative Commons kann kontaktiert werden \u00fcber https://creativecommons.org/.", + "json": "cc-by-nc-3.0-de.json", + "yaml": "cc-by-nc-3.0-de.yml", + "html": "cc-by-nc-3.0-de.html", + "license": "cc-by-nc-3.0-de.LICENSE" + }, + { + "license_key": "cc-by-nc-4.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-NonCommercial 4.0 International\n\n=======================================================================\n\nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide legal services or legal advice. Distribution of\nCreative Commons public licenses does not create a lawyer-client or\nother relationship. Creative Commons makes its licenses and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\nwarranties regarding its licenses, any material licensed under their\nterms and conditions, or any related information. Creative Commons\ndisclaims all liability for damages resulting from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\nCreative Commons public licenses provide a standard set of terms and\nconditions that creators and other rights holders may use to share\noriginal works of authorship and other material subject to copyright\nand certain other rights specified in the public license below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive, and do not form part of our licenses.\n\n Considerations for licensors: Our public licenses are\n intended for use by those authorized to give the public\n permission to use material in ways otherwise restricted by\n copyright and certain other rights. Our licenses are\n irrevocable. Licensors should read and understand the terms\n and conditions of the license they choose before applying it.\n Licensors should also secure all rights necessary before\n applying our licenses so that the public can reuse the\n material as expected. Licensors should clearly mark any\n material not subject to the license. This includes other CC-\n licensed material, or material used under an exception or\n limitation to copyright. More considerations for licensors:\n\twiki.creativecommons.org/Considerations_for_licensors\n\n Considerations for the public: By using one of our public\n licenses, a licensor grants the public permission to use the\n licensed material under specified terms and conditions. If\n the licensor's permission is not necessary for any reason--for\n example, because of any applicable exception or limitation to\n copyright--then that use is not regulated by the license. Our\n licenses grant only permissions under copyright and certain\n other rights that a licensor has authority to grant. Use of\n the licensed material may still be restricted for other\n reasons, including because others have copyright or other\n rights in the material. A licensor may make special requests,\n such as asking that all changes be marked or described.\n Although not required by our licenses, you are encouraged to\n respect those requests where reasonable. More considerations\n for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\nCreative Commons Attribution-NonCommercial 4.0 International Public\nLicense\n\nBy exercising the Licensed Rights (defined below), You accept and agree\nto be bound by the terms and conditions of this Creative Commons\nAttribution-NonCommercial 4.0 International Public License (\"Public\nLicense\"). To the extent this Public License may be interpreted as a\ncontract, You are granted the Licensed Rights in consideration of Your\nacceptance of these terms and conditions, and the Licensor grants You\nsuch rights in consideration of benefits the Licensor receives from\nmaking the Licensed Material available under these terms and\nconditions.\n\n\nSection 1 -- Definitions.\n\n a. Adapted Material means material subject to Copyright and Similar\n Rights that is derived from or based upon the Licensed Material\n and in which the Licensed Material is translated, altered,\n arranged, transformed, or otherwise modified in a manner requiring\n permission under the Copyright and Similar Rights held by the\n Licensor. For purposes of this Public License, where the Licensed\n Material is a musical work, performance, or sound recording,\n Adapted Material is always produced where the Licensed Material is\n synched in timed relation with a moving image.\n\n b. Adapter's License means the license You apply to Your Copyright\n and Similar Rights in Your contributions to Adapted Material in\n accordance with the terms and conditions of this Public License.\n\n c. Copyright and Similar Rights means copyright and/or similar rights\n closely related to copyright including, without limitation,\n performance, broadcast, sound recording, and Sui Generis Database\n Rights, without regard to how the rights are labeled or\n categorized. For purposes of this Public License, the rights\n specified in Section 2(b)(1)-(2) are not Copyright and Similar\n Rights.\n d. Effective Technological Measures means those measures that, in the\n absence of proper authority, may not be circumvented under laws\n fulfilling obligations under Article 11 of the WIPO Copyright\n Treaty adopted on December 20, 1996, and/or similar international\n agreements.\n\n e. Exceptions and Limitations means fair use, fair dealing, and/or\n any other exception or limitation to Copyright and Similar Rights\n that applies to Your use of the Licensed Material.\n\n f. Licensed Material means the artistic or literary work, database,\n or other material to which the Licensor applied this Public\n License.\n\n g. Licensed Rights means the rights granted to You subject to the\n terms and conditions of this Public License, which are limited to\n all Copyright and Similar Rights that apply to Your use of the\n Licensed Material and that the Licensor has authority to license.\n\n h. Licensor means the individual(s) or entity(ies) granting rights\n under this Public License.\n\n i. NonCommercial means not primarily intended for or directed towards\n commercial advantage or monetary compensation. For purposes of\n this Public License, the exchange of the Licensed Material for\n other material subject to Copyright and Similar Rights by digital\n file-sharing or similar means is NonCommercial provided there is\n no payment of monetary compensation in connection with the\n exchange.\n\n j. Share means to provide material to the public by any means or\n process that requires permission under the Licensed Rights, such\n as reproduction, public display, public performance, distribution,\n dissemination, communication, or importation, and to make material\n available to the public including in ways that members of the\n public may access the material from a place and at a time\n individually chosen by them.\n\n k. Sui Generis Database Rights means rights other than copyright\n resulting from Directive 96/9/EC of the European Parliament and of\n the Council of 11 March 1996 on the legal protection of databases,\n as amended and/or succeeded, as well as other essentially\n equivalent rights anywhere in the world.\n\n l. You means the individual or entity exercising the Licensed Rights\n under this Public License. Your has a corresponding meaning.\n\n\nSection 2 -- Scope.\n\n a. License grant.\n\n 1. Subject to the terms and conditions of this Public License,\n the Licensor hereby grants You a worldwide, royalty-free,\n non-sublicensable, non-exclusive, irrevocable license to\n exercise the Licensed Rights in the Licensed Material to:\n\n a. reproduce and Share the Licensed Material, in whole or\n in part, for NonCommercial purposes only; and\n\n b. produce, reproduce, and Share Adapted Material for\n NonCommercial purposes only.\n\n 2. Exceptions and Limitations. For the avoidance of doubt, where\n Exceptions and Limitations apply to Your use, this Public\n License does not apply, and You do not need to comply with\n its terms and conditions.\n\n 3. Term. The term of this Public License is specified in Section\n 6(a).\n\n 4. Media and formats; technical modifications allowed. The\n Licensor authorizes You to exercise the Licensed Rights in\n all media and formats whether now known or hereafter created,\n and to make technical modifications necessary to do so. The\n Licensor waives and/or agrees not to assert any right or\n authority to forbid You from making technical modifications\n necessary to exercise the Licensed Rights, including\n technical modifications necessary to circumvent Effective\n Technological Measures. For purposes of this Public License,\n simply making modifications authorized by this Section 2(a)\n (4) never produces Adapted Material.\n\n 5. Downstream recipients.\n\n a. Offer from the Licensor -- Licensed Material. Every\n recipient of the Licensed Material automatically\n receives an offer from the Licensor to exercise the\n Licensed Rights under the terms and conditions of this\n Public License.\n\n b. No downstream restrictions. You may not offer or impose\n any additional or different terms or conditions on, or\n apply any Effective Technological Measures to, the\n Licensed Material if doing so restricts exercise of the\n Licensed Rights by any recipient of the Licensed\n Material.\n\n 6. No endorsement. Nothing in this Public License constitutes or\n may be construed as permission to assert or imply that You\n are, or that Your use of the Licensed Material is, connected\n with, or sponsored, endorsed, or granted official status by,\n the Licensor or others designated to receive attribution as\n provided in Section 3(a)(1)(A)(i).\n\n b. Other rights.\n\n 1. Moral rights, such as the right of integrity, are not\n licensed under this Public License, nor are publicity,\n privacy, and/or other similar personality rights; however, to\n the extent possible, the Licensor waives and/or agrees not to\n assert any such rights held by the Licensor to the limited\n extent necessary to allow You to exercise the Licensed\n Rights, but not otherwise.\n\n 2. Patent and trademark rights are not licensed under this\n Public License.\n\n 3. To the extent possible, the Licensor waives any right to\n collect royalties from You for the exercise of the Licensed\n Rights, whether directly or through a collecting society\n under any voluntary or waivable statutory or compulsory\n licensing scheme. In all other cases the Licensor expressly\n reserves any right to collect such royalties, including when\n the Licensed Material is used other than for NonCommercial\n purposes.\n\n\nSection 3 -- License Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the\nfollowing conditions.\n\n a. Attribution.\n\n 1. If You Share the Licensed Material (including in modified\n form), You must:\n\n a. retain the following if it is supplied by the Licensor\n with the Licensed Material:\n\n i. identification of the creator(s) of the Licensed\n Material and any others designated to receive\n attribution, in any reasonable manner requested by\n the Licensor (including by pseudonym if\n designated);\n\n ii. a copyright notice;\n\n iii. a notice that refers to this Public License;\n\n iv. a notice that refers to the disclaimer of\n warranties;\n\n v. a URI or hyperlink to the Licensed Material to the\n extent reasonably practicable;\n\n b. indicate if You modified the Licensed Material and\n retain an indication of any previous modifications; and\n\n c. indicate the Licensed Material is licensed under this\n Public License, and include the text of, or the URI or\n hyperlink to, this Public License.\n\n 2. You may satisfy the conditions in Section 3(a)(1) in any\n reasonable manner based on the medium, means, and context in\n which You Share the Licensed Material. For example, it may be\n reasonable to satisfy the conditions by providing a URI or\n hyperlink to a resource that includes the required\n information.\n\n 3. If requested by the Licensor, You must remove any of the\n information required by Section 3(a)(1)(A) to the extent\n reasonably practicable.\n\n 4. If You Share Adapted Material You produce, the Adapter's\n License You apply must not prevent recipients of the Adapted\n Material from complying with this Public License.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database Rights that\napply to Your use of the Licensed Material:\n\n a. for the avoidance of doubt, Section 2(a)(1) grants You the right\n to extract, reuse, reproduce, and Share all or a substantial\n portion of the contents of the database for NonCommercial purposes\n only;\n\n b. if You include all or a substantial portion of the database\n contents in a database in which You have Sui Generis Database\n Rights, then the database in which You have Sui Generis Database\n Rights (but not its individual contents) is Adapted Material; and\n\n c. You must comply with the conditions in Section 3(a) if You Share\n all or a substantial portion of the contents of the database.\n\nFor the avoidance of doubt, this Section 4 supplements and does not\nreplace Your obligations under this Public License where the Licensed\nRights include other Copyright and Similar Rights.\n\n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\n a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\n PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\n b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE\n TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\n COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR\n USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR\n IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.\n\n c. The disclaimer of warranties and limitation of liability provided\n above shall be interpreted in a manner that, to the extent\n possible, most closely approximates an absolute disclaimer and\n waiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\n a. This Public License applies for the term of the Copyright and\n Similar Rights licensed here. However, if You fail to comply with\n this Public License, then Your rights under this Public License\n terminate automatically.\n\n b. Where Your right to use the Licensed Material has terminated under\n Section 6(a), it reinstates:\n\n 1. automatically as of the date the violation is cured, provided\n it is cured within 30 days of Your discovery of the\n violation; or\n\n 2. upon express reinstatement by the Licensor.\n\n For the avoidance of doubt, this Section 6(b) does not affect any\n right the Licensor may have to seek remedies for Your violations\n of this Public License.\n\n c. For the avoidance of doubt, the Licensor may also offer the\n Licensed Material under separate terms or conditions or stop\n distributing the Licensed Material at any time; however, doing so\n will not terminate this Public License.\n\n d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n License.\n\n\nSection 7 -- Other Terms and Conditions.\n\n a. The Licensor shall not be bound by any additional or different\n terms or conditions communicated by You unless expressly agreed.\n\n b. Any arrangements, understandings, or agreements regarding the\n Licensed Material not stated herein are separate from and\n independent of the terms and conditions of this Public License.\n\n\nSection 8 -- Interpretation.\n\n a. For the avoidance of doubt, this Public License does not, and\n shall not be interpreted to, reduce, limit, restrict, or impose\n conditions on any use of the Licensed Material that could lawfully\n be made without permission under this Public License.\n\n b. To the extent possible, if any provision of this Public License is\n deemed unenforceable, it shall be automatically reformed to the\n minimum extent necessary to make it enforceable. If the provision\n cannot be reformed, it shall be severed from this Public License\n without affecting the enforceability of the remaining terms and\n conditions.\n\n c. No term or condition of this Public License will be waived and no\n failure to comply consented to unless expressly agreed to by the\n Licensor.\n\n d. Nothing in this Public License constitutes or may be interpreted\n as a limitation upon, or waiver of, any privileges and immunities\n that apply to the Licensor or You, including from the legal\n processes of any jurisdiction or authority.\n\n=======================================================================\n\nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons may elect to apply one of\nits public licenses to material it publishes and in those instances\nwill be considered the \u201cLicensor.\u201d The text of the Creative Commons\npublic licenses is dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the limited purpose of indicating that\nmaterial is shared under a Creative Commons public license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies, Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or any other trademark or logo\nof Creative Commons without its prior written consent including,\nwithout limitation, in connection with any unauthorized modifications\nto any of its public licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic licenses.\n\nCreative Commons may be contacted at creativecommons.org.", + "json": "cc-by-nc-4.0.json", + "yaml": "cc-by-nc-4.0.yml", + "html": "cc-by-nc-4.0.html", + "license": "cc-by-nc-4.0.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-1.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons\n\nAttribution-NoDerivs-NonCommercial 1.0\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.\n\n4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested.\nYou may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied. Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\n5. Representations, Warranties and Disclaimer\n\nBy offering the Work for public release under this License, Licensor represents and warrants that, to the best of Licensor's knowledge after reasonable inquiry:\nLicensor has secured all rights in the Work necessary to grant the license rights hereunder and to permit the lawful exercise of the rights granted hereunder without You having any obligation to pay any royalties, compulsory license fees, residuals or any other payments;\nThe Work does not infringe the copyright, trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party.\nEXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF THE WORK.\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.\n\n\u00ab Back to Commons Deed", + "json": "cc-by-nc-nd-1.0.json", + "yaml": "cc-by-nc-nd-1.0.yml", + "html": "cc-by-nc-nd-1.0.html", + "license": "cc-by-nc-nd-1.0.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-2.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-NonCommercial-NoDerivs 2.0\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\nLEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN\nATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION\nON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE\nINFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM\nITS USE.\n\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE\nCOMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY\nCOPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS\nAUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE\nTO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE\nRIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS\nAND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or\nencyclopedia, in which the Work in its entirety in unmodified form,\nalong with a number of other contributions, constituting separate and\nindependent works in themselves, are assembled into a collective whole.\nA work that constitutes a Collective Work will not be considered a\nDerivative Work (as defined below) for the purposes of this License.\n\n\"Derivative Work\" means a work based upon the Work or upon the Work and\nother pre-existing works, such as a translation, musical arrangement,\ndramatization, fictionalization, motion picture version, sound\nrecording, art reproduction, abridgment, condensation, or any other form\nin which the Work may be recast, transformed, or adapted, except that a\nwork that constitutes a Collective Work will not be considered a\nDerivative Work for the purpose of this License. For the avoidance of\ndoubt, where the Work is a musical composition or sound recording, the\nsynchronization of the Work in timed-relation with a moving image\n(\"synching\") will be considered a Derivative Work for the purpose of\nthis License.\n\n\"Licensor\" means the individual or entity that offers the Work under the\nterms of this License.\n\n\"Original Author\" means the individual or entity who created the Work.\n\n\"Work\" means the copyrightable work of authorship offered under the\nterms of this License.\n\n\"You\" means an individual or entity exercising rights under this License\nwho has not previously violated the terms of this License with respect\nto the Work, or who has received express permission from the Licensor to\nexercise rights under this License despite a previous violation. 2. Fair\nUse Rights. Nothing in this license is intended to reduce, limit, or\nrestrict any rights arising from fair use, first sale or other\nlimitations on the exclusive rights of the copyright owner under\ncopyright law or other applicable laws.\n\n3. License Grant. \n\nSubject to the terms and conditions of this License, Licensor hereby\ngrants You a worldwide, royalty-free, non-exclusive, perpetual (for the\nduration of the applicable copyright) license to exercise the rights in\nthe Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more\nCollective Works, and to reproduce the Work as incorporated in the\nCollective Works;\n\nto distribute copies or phonorecords of, display publicly, perform\npublicly, and perform publicly by means of a digital audio transmission\nthe Work including as incorporated in Collective Works;\n\nThe above rights may be exercised in all media and formats whether now\nknown or hereafter devised. The above rights include the right to make\nsuch modifications as are technically necessary to exercise the rights\nin other media and formats, but otherwise you have no rights to make\nDerivative Works. All rights not expressly granted by Licensor are\nhereby reserved, including but not limited to the rights set forth in\nSections 4(d) and 4(e).\n\n4. Restrictions.\n\nThe license granted in Section 3 above is expressly made subject to and\nlimited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly\ndigitally perform the Work only under the terms of this License, and You\nmust include a copy of, or the Uniform Resource Identifier for, this\nLicense with every copy or phonorecord of the Work You distribute,\npublicly display, publicly perform, or publicly digitally perform. You\nmay not offer or impose any terms on the Work that alter or restrict the\nterms of this License or the recipients' exercise of the rights granted\nhereunder. You may not sublicense the Work. You must keep intact all\nnotices that refer to this License and to the disclaimer of warranties.\nYou may not distribute, publicly display, publicly perform, or publicly\ndigitally perform the Work with any technological measures that control\naccess or use of the Work in a manner inconsistent with the terms of\nthis License Agreement. The above applies to the Work as incorporated in\na Collective Work, but this does not require the Collective Work apart\nfrom the Work itself to be made subject to the terms of this License. If\nYou create a Collective Work, upon notice from any Licensor You must, to\nthe extent practicable, remove from the Collective Work any reference to\nsuch Licensor or the Original Author, as requested.\n\nYou may not exercise any of the rights granted to You in Section 3 above\nin any manner that is primarily intended for or directed toward\ncommercial advantage or private monetary compensation. The exchange of\nthe Work for other copyrighted works by means of digital file-sharing or\notherwise shall not be considered to be intended for or directed toward\ncommercial advantage or private monetary compensation, provided there is\nno payment of any monetary compensation in connection with the exchange\nof copyrighted works.\n\nIf you distribute, publicly display, publicly perform, or publicly\ndigitally perform the Work, You must keep intact all copyright notices\nfor the Work and give the Original Author credit reasonable to the\nmedium or means You are utilizing by conveying the name (or pseudonym if\napplicable) of the Original Author if supplied; the title of the Work if\nsupplied; and to the extent reasonably practicable, the Uniform Resource\nIdentifier, if any, that Licensor specifies to be associated with the\nWork, unless such URI does not refer to the copyright notice or\nlicensing information for the Work. Such credit may be implemented in\nany reasonable manner; provided, however, that in the case of a\nCollective Work, at a minimum such credit will appear where any other\ncomparable authorship credit appears and in a manner at least as\nprominent as such other comparable authorship credit.\n\nFor the avoidance of doubt, where the Work is a musical composition:\n\nPerformance Royalties Under Blanket Licenses. Licensor reserves the\nexclusive right to collect, whether individually or via a performance\nrights society (e.g. ASCAP, BMI, SESAC), royalties for the public\nperformance or public digital performance (e.g. webcast) of the Work if\nthat performance is primarily intended for or directed toward commercial\nadvantage or private monetary compensation.\n\nMechanical Rights and Statutory Royalties. Licensor reserves the\nexclusive right to collect, whether individually or via a music rights\nagency or designated agent (e.g. Harry Fox Agency), royalties for any\nphonorecord You create from the Work (\"cover version\") and distribute,\nsubject to the compulsory license created by 17 USC Section 115 of the\nUS Copyright Act (or the equivalent in other jurisdictions), if Your\ndistribution of such cover version is primarily intended for or directed\ntoward commercial advantage or private monetary compensation.\n\nWebcasting Rights and Statutory Royalties. For the avoidance of doubt,\nwhere the Work is a sound recording, Licensor reserves the exclusive\nright to collect, whether individually or via a performance-rights\nsociety (e.g. SoundExchange), royalties for the public digital\nperformance (e.g. webcast) of the Work, subject to the compulsory\nlicense created by 17 USC Section 114 of the US Copyright Act (or the\nequivalent in other jurisdictions), if Your public digital performance\nis primarily intended for or directed toward commercial advantage or\nprivate monetary compensation.\n\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED BY THE PARTIES IN WRITING, LICENSOR\nOFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY\nKIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,\nINCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,\nFITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF\nLATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS,\nWHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE\nEXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability.\n\nEXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL\nLICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL,\nINCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF\nTHIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED\nOF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate\nautomatically upon any breach by You of the terms of this License.\nIndividuals or entities who have received Collective Works from You\nunder this License, however, will not have their licenses terminated\nprovided such individuals or entities remain in full compliance with\nthose licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any\ntermination of this License.\n\nSubject to the above terms and conditions, the license granted here is\nperpetual (for the duration of the applicable copyright in the Work).\nNotwithstanding the above, Licensor reserves the right to release the\nWork under different license terms or to stop distributing the Work at\nany time; provided, however that any such election will not serve to\nwithdraw this License (or any other license that has been, or is\nrequired to be, granted under the terms of this License), and this\nLicense will continue in full force and effect unless terminated as\nstated above.\n\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a\nCollective Work, the Licensor offers to the recipient a license to the\nWork on the same terms and conditions as the license granted to You\nunder this License.\n\nIf any provision of this License is invalid or unenforceable under\napplicable law, it shall not affect the validity or enforceability of\nthe remainder of the terms of this License, and without further action\nby the parties to this agreement, such provision shall be reformed to\nthe minimum extent necessary to make such provision valid and\nenforceable.\n\nNo term or provision of this License shall be deemed waived and no\nbreach consented to unless such waiver or consent shall be in writing\nand signed by the party to be charged with such waiver or consent.\n\nThis License constitutes the entire agreement between the parties with\nrespect to the Work licensed here. There are no understandings,\nagreements or representations with respect to the Work not specified\nhere. Licensor shall not be bound by any additional provisions that may\nappear in any communication from You. This License may not be modified\nwithout the mutual written agreement of the Licensor and You.\n\nCreative Commons is not a party to this License, and makes no warranty\nwhatsoever in connection with the Work. Creative Commons will not be\nliable to You or any party on any legal theory for any damages\nwhatsoever, including without limitation any general, special,\nincidental or consequential damages arising in connection to this\nlicense. Notwithstanding the foregoing two (2) sentences, if Creative\nCommons has expressly identified itself as the Licensor hereunder, it\nshall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work\nis licensed under the CCPL, neither party will use the trademark\n\"Creative Commons\" or any related trademark or logo of Creative Commons\nwithout the prior written consent of Creative Commons. Any permitted use\nwill be in compliance with Creative Commons' then-current trademark\nusage guidelines, as may be published on its website or otherwise made\navailable upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", + "json": "cc-by-nc-nd-2.0.json", + "yaml": "cc-by-nc-nd-2.0.yml", + "html": "cc-by-nc-nd-2.0.html", + "license": "cc-by-nc-nd-2.0.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-2.0-at", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-cc-by-nc-nd-2.0-at", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Namensnennung - Nicht-kommerziell - Keine Bearbeitung 2.0\n\n\nCREATIVE COMMONS IST KEINE RECHTSANWALTSGESELLSCHAFT UND LEISTET KEINE RECHTSBERATUNG. DIE WEITERGABE DIESES LIZENZENTWURFES F\u00dcHRT ZU KEINEM MANDATSVERH\u00c4LTNIS. CREATIVE COMMONS ERBRINGT DIESE INFORMATIONEN OHNE GEW\u00c4HR. CREATIVE COMMONS \u00dcBERNIMMT KEINE GEW\u00c4HRLEISTUNG F\u00dcR DIE GELIEFERTEN INFORMATIONEN UND SCHLIE\u00dfT DIE HAFTUNG F\u00dcR SCH\u00c4DEN AUS, DIE SICH AUS IHREM GEBRAUCH ERGEBEN.\n\nLizenzvertrag\nDAS URHEBERRECHTLICH GESCH\u00dcTZTE WERK ODER DER SONSTIGE SCHUTZGEGENSTAND (WIE UNTEN BESCHRIEBEN) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" ODER \"LIZENZVERTRAG\") ZUR VERF\u00dcGUNG GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER EINSCHL\u00c4GIGE GESETZE GESCH\u00dcTZT.\nDURCH DIE AUS\u00dcBUNG EINER DURCH DIESEN LIZENZVERTRAG ERTEILTEN BEFUGNIS ERKL\u00c4REN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH EINVERSTANDEN. DER LIZENZGEBER ERTEILT IHNEN DIE HIER BESCHRIEBENE NUTZUNGSBEWILLIGUNG UNTER DER VORAUSSETZUNG, DASS SIE SICH MIT DIESEN VERTRAGSBEDINGUNGEN EINVERSTANDEN ERKL\u00c4REN.\n1. Definitionen\n\nUnter einer \"Bearbeitung\" wird eine \u00dcbersetzung oder andere Bearbeitung des Werkes verstanden, die eine eigent\u00fcmliche geistige Sch\u00f6pfung von Ihnen ist bzw eine \u00dcbersetzung oder andere Bearbeitung eines anderen urheberrechtlichen Schutzgegenstandes als einem Werk, wenn diese zu einem eigenen Schutzrecht f\u00fchrt. Eine freie Benutzung eines Werkes wird nicht als Bearbeitung angesehen.\n\nUnter den \"Lizenzelementen\" werden\ndie folgenden Lizenzcharakteristika verstanden, die vom Lizenzgeber ausgew\u00e4hlt und in der Bezeichnung der Lizenz genannt werden: \"Namensnennung\", \"Nicht-kommerziell\", \"Weitergabe unter gleichen Bedingungen\".\nUnter dem \"Lizenzgeber\" wird die nat\u00fcrliche oder juristische Person verstanden, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet.\nUnter einem \"Sammelwerk\" wird eine Sammlung verstanden, die infolge der Zusammenstellung einzelner Beitr\u00e4ge zu einem einheitlichen Ganzen eine eigent\u00fcmliche geistige Sch\u00f6pfung darstellt. Darunter fallen auch Sammlungen von Werken, Daten oder anderen unabh\u00e4ngigen Elementen, die systematisch oder methodisch angeordnet und einzeln mit elektronischen Mitteln oder auf andere Weise zug\u00e4nglich sind, wenn sie infolge der Auswahl oder Anordnung des Stoffes eine eigent\u00fcmliche geistige Sch\u00f6pfung sind (Datenbankwerke). Ein Sammelwerk wird im Zusammenhang mit dieser Lizenz nicht als Bearbeitung (wie oben beschrieben) angesehen.\n\n\nMit \"SIE\" und \"Ihnen\" ist die nat\u00fcrliche oder juristische Person gemeint, die die in dieser Lizenz erteilte Nutzungsbewilligung (Befugnisse) aus\u00fcbt und die zuvor die Bedingungen dieser Lizenz im Hinblick auf das Werk nicht verletzt hat, oder die die ausdr\u00fcckliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese Lizenz erteilte Nutzungsbewilligung trotz einer vorherigen Verletzung auszu\u00fcben.\nUnter dem \"Schutzgegenstand\" wird das Werk oder Sammelwerk oder das Schutzobjekt eines verwandten Schutzrechts verstanden, das Ihnen unter den Bedingungen dieser Lizenz angeboten wird.\n\nUnter dem \"Urheber\" wird die nat\u00fcrliche Person verstanden, die das Werk geschaffen hat.\n\n\n\nUnter einem \"verwandten Schutzrecht\" wird das Recht an einem anderen urheberrechtlichen Schutzgegenstand als einem Werk verstanden, zum Beispiel einem nachgelassenen Werk, einem Lichtbild, einer Datenbank, einem Schalltr\u00e4ger, einer Rundfunksendung, einem Laufbild oder einer Darbietung eines aus\u00fcbenden K\u00fcnstlers.\nUnter dem \"Werk\" wird eine eigent\u00fcmliche geistige Sch\u00f6pfung verstanden, die Ihnen unter den Bedingungen dieser Lizenz angeboten wird.\n\n2. Schranken des Urheberrechts. Diese Lizenz l\u00e4sst s\u00e4mtliche Rechte unber\u00fchrt, die sich aus den Beschr\u00e4nkungen der Verwertungsrechte, aus dem Ersch\u00f6pfungsgrundsatz oder anderen Beschr\u00e4nkungen der Ausschlie\u00dflichkeitsrechte des Rechtsinhabers durch die Anwendung findenden Gesetze ergeben.\n3. Lizenzierung. Unter den Bedingungen dieses Lizenzvertrages erteilt Ihnen der Lizenzgeber eine unentgeltliche, r\u00e4umlich und zeitlich (f\u00fcr die Dauer des Urheberrechts oder verwandten Schutzrechts) unbeschr\u00e4nkte, nicht-ausschlie\u00dfliche Nutzungsbewilligung, den Schutzgegenstand in der folgenden Art und Weise zu nutzen:\n\nden Schutzgegenstand in k\u00f6rperlicher Form zu verwerten, insbesondere zu vervielf\u00e4ltigen und zu verbreiten;\nden Schutzgegenstand in unk\u00f6rperlicher Form \u00f6ffentlich wiederzugeben, insbesondere zu senden, weiterzusenden, vorzutragen, aufzuf\u00fchren, vorzuf\u00fchren und \u00f6ffentlich zur Verf\u00fcgung zu stellen;\nden Schutzgegenstand auf Bild- oder Schalltr\u00e4ger festzuhalten und mit dem Bild- oder Schalltr\u00e4ger auf die in 3 a. oder b. erlaubte Weise zu verfahren.\n\n\nDie in diesem Lizenzvertrag erteilte Nutzungsbewilligung kann f\u00fcr alle bekannten Nutzungsarten ausge\u00fcbt werden. Die genannte Nutzungsbewilligung beinhaltet die Befugnis, solche Ver\u00e4nderungen an dem Werk vorzunehmen, die technisch erforderlich sind, um die Nutzungsbewilligung f\u00fcr alle Nutzungsarten wahrzunehmen. Insbesondere sind davon die Anpassung an andere Medien und auf andere Dateiformate umfasst.\n4. Beschr\u00e4nkungen. Die Erteilung der Nutzungsbewilligung gem\u00e4\u00df Ziffer 3 erfolgt ausdr\u00fccklich nur unter den folgenden Bedingungen:\n\nSie d\u00fcrfen den Schutzgegenstand ausschlie\u00dflich unter den Bedingungen dieser Lizenz vervielf\u00e4ltigen, verbreiten oder im Sinne von Ziffer 3.b. dieses Vertrags \u00f6ffentlich wiedergeben und Sie m\u00fcssen stets eine Kopie oder die vollst\u00e4ndige Internetadresse in Form des Uniform-Resource-Identifier (URI) dieser Lizenz beif\u00fcgen, wenn Sie den Schutzgegenstand vervielf\u00e4ltigen, verbreiten oder im Sinne von Ziffer 3.b. dieses Vertrags \u00f6ffentlich wiedergeben. Sie d\u00fcrfen keine Vertragsbedingungen anbieten oder fordern, die die Bedingungen dieser Lizenz oder die durch sie gew\u00e4hrten Befugnisse \u00e4ndern oder beschr\u00e4nken. Sie d\u00fcrfen den Schutzgegenstand nicht unterlizenzieren. Sie m\u00fcssen alle Hinweise unver\u00e4ndert lassen, die auf diese Lizenz und den Haftungs- und/oder Gew\u00e4hrleistungsausschluss hinweisen. Sie d\u00fcrfen den Schutzgegenstand mit keinen technischen Schutzma\u00dfnahmen versehen, die den Zugang oder den Gebrauch des Schutzgegenstandes in einer Weise kontrollieren, die mit den Bedingungen dieser Lizenz im Widerspruch stehen. Die genannten Beschr\u00e4nkungen gelten auch f\u00fcr den Fall, dass der Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet; sie verlangen aber nicht, dass das Sammelwerk insgesamt zum Gegenstand dieser Lizenz gemacht wird. Wenn Sie ein Sammelwerk erstellen, m\u00fcssen Sie - soweit dies praktikabel ist - auf die Aufforderung eines Lizenzgebers oder Urhebers hin aus dem Sammelwerk jeglichen Hinweis auf diesen Lizenzgeber oder diesen Urheber entfernen.\n\nSie d\u00fcrfen die in Ziffer 3 erteilten Befugnisse in keiner Weise verwenden, die \u00fcberwiegend auf einen gesch\u00e4ftlichen Vorteil oder eine vertraglich geschuldete geldwerte Verg\u00fctung abzielt oder darauf gerichtet ist.\nWenn Sie den Schutzgegenstand oder ein Sammelwerk vervielf\u00e4ltigen, verbreiten oder im Sinne von Ziffer 3.b. dieses Vertrags \u00f6ffentlich wiedergeben, m\u00fcssen Sie alle Urhebervermerke f\u00fcr den Schutzgegenstand unver\u00e4ndert lassen und die Urheberschaft oder Rechtsinhaberschaft in einer der von Ihnen vorgenommenen Nutzung angemessenen Form anerkennen, indem Sie den Namen (oder das Pseudonym, falls ein solches verwendet wird) des Urhebers oder Rechtsinhabers nennen, wenn dieser angegeben ist. Dies gilt auch f\u00fcr den Titel des Schutzgegenstandes, wenn dieser angegeben ist, sowie - in einem vern\u00fcnftigerweise durchf\u00fchrbaren Umfang - f\u00fcr die mit dem Schutzgegenstand zu verbindende vollst\u00e4ndige Internetadresse in Form des Uniform-Resource-Identifier (URI), wie sie der Lizenzgeber angegeben hat, sofern dies geschehen ist, es sei denn, diese Internetadresse verweist nicht auf den Urhebervermerk oder die Lizenzinformationen zu dem Schutzgegenstand.\nObwohl die gem\u00e4\u00df Ziffer 3 erteilten Befugnisse in umfassender Weise ausge\u00fcbt werden d\u00fcrfen, findet diese Erlaubnis ihre gesetzliche Grenze in den Pers\u00f6nlichkeitsrechten sowie im Schutz der berechtigten geistigen Interessen der Urheber und aus\u00fcbenden K\u00fcnstler, die nicht dadurch gef\u00e4hrdet werden d\u00fcrfen, dass ein Schutzgegenstand \u00fcber das gesetzlich zul\u00e4ssige Ma\u00df hinaus beeintr\u00e4chtigt wird.\n5. Gew\u00e4hrleistung.\nSofern dies von den Vertragsparteien nicht schriftlich anders vereinbart wurde, bietet der Lizenzgeber keine Gew\u00e4hrleistung f\u00fcr die in diesem Lizenzvertrag erteilte Nutzungsbewilligung. F\u00fcr M\u00e4ngel anderer Art, insbesondere bei der mangelhaften Lieferung von Verk\u00f6rperungen des Schutzgegenstandes, richtet sich die Gew\u00e4hrleistung nach der Regelung, die die Person, die Ihnen den Schutzgegenstand zur Verf\u00fcgung stellt, mit Ihnen au\u00dferhalb der Lizenz vereinbart, oder - wenn eine solche Regelung nicht getroffen wurde - nach den gesetzlichen Vorschriften.\n6. Haftung. \u00dcber die in Ziffer 5 genannte Gew\u00e4hrleistung hinaus haftet Ihnen der Lizenzgeber bez\u00fcglich Sch\u00e4den, die in Verbindung mit der Erteilung der Nutzungsbewilligung entstehen, nur f\u00fcr Vorsatz. F\u00fcr Gesch\u00e4fte zwischen Unternehmern und Verbrauchern im Sinne des \u00f6sterreichischen Konsumentenschutzgesetzes gilt die Abweichung, dass nur die Haftung f\u00fcr leichte Fahrl\u00e4ssigkeit bei anderen Sch\u00e4den als Personensch\u00e4den ausgeschlossen ist.\n7. Vertragsende\n\nDieser Lizenzvertrag und die durch diesen erteilten Befugnisse enden automatisch bei jeder Verletzung der Vertragsbedingungen durch Sie. Die Ziffern 1, 2, 5, 6, 7 und 8 gelten bei einer Vertragsbeendigung fort.\nUnter den oben genannten Bedingungen erfolgt die Lizenz dauerhaft (f\u00fcr die Dauer des Urheberrechts oder verwandten Schutzrechts). Dennoch beh\u00e4lt sich der Lizenzgeber das Recht vor, den Schutzgegenstand unter anderen Lizenzbedingungen zu nutzen oder die eigene Weitergabe des Schutzgegenstandes jederzeit zu beenden, vorausgesetzt, dass solche Handlungen nicht dem Widerruf dieser Lizenz dienen (oder jeder anderen Lizenzierung, die auf Grundlage dieser Lizenz erfolgt ist oder erfolgen muss) und diese Lizenz wirksam bleibt, bis sie unter den oben genannten Voraussetzungen endet.\n8. Schlussbestimmungen\n\nJedes Mal, wenn Sie den Schutzgegenstand vervielf\u00e4ltigen, verbreiten oder im Sinne von Ziffer 3.b. dieses Vertrags \u00f6ffentlich wiedergeben, bietet der Lizenzgeber dem Erwerber eine Lizenz f\u00fcr den Schutzgegenstand unter denselben Vertragsbedingungen an, unter denen er Ihnen die Lizenz erteilt hat.\nSollte eine Bestimmung dieses Lizenzvertrages unwirksam sein, so wird die Wirksamkeit der \u00fcbrigen Lizenzbestimmungen dadurch nicht ber\u00fchrt und an die Stelle der unwirksamen Bestimmung tritt die wirksame Bestimmung, die dem mit der unwirksamen Bestimmung angestrebten Zweck am n\u00e4chsten kommt.\nNichts soll dahingehend ausgelegt werden, dass auf eine Bestimmung dieses Lizenzvertrages verzichtet oder einer Vertragsverletzung zugestimmt wird, so lange ein solcher Verzicht oder eine solche Zustimmung nicht schriftlich vorliegt und von der verzichtenden oder zustimmenden Vertragspartei unterschrieben ist.\nDieser Lizenzvertrag stellt die vollst\u00e4ndige Vereinbarung zwischen den Vertragsparteien hinsichtlich des Schutzgegenstandes dar. Es gibt keine weiteren erg\u00e4nzenden Vereinbarungen oder m\u00fcndlichen Abreden im Hinblick auf den Schutzgegenstand. Der Lizenzgeber ist an keine zus\u00e4tzlichen Abreden gebunden, die aus irgendeiner Absprache mit Ihnen entstehen k\u00f6nnten. Der Lizenzvertrag kann nicht ohne eine \u00fcbereinstimmende schriftliche Vereinbarung zwischen dem Lizenzgeber und Ihnen abge\u00e4ndert werden.\nAuf diesen Lizenzvertrag findet das Recht der Bundesrepublik \u00d6sterreich Anwendung.\n\n\u00ab Zur\u00fcck zu Commons Deed", + "json": "cc-by-nc-nd-2.0-at.json", + "yaml": "cc-by-nc-nd-2.0-at.yml", + "html": "cc-by-nc-nd-2.0-at.html", + "license": "cc-by-nc-nd-2.0-at.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-2.0-au", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cc-by-nc-nd-2.0-au", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-NonCommercial-NoDerivs 2.0 Australia\n\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\nLEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES NOT CREATE AN\nATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION\nON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE\nINFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM\nITS USE.\n\nLicence \n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE\nCOMMONS PUBLIC LICENCE (\"CCPL\" OR \"LICENCE\"). THE WORK IS PROTECTED BY\nCOPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS\nAUTHORISED UNDER THIS LICENCE AND/OR APPLICABLE LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE\nTO BE BOUND BY THE TERMS OF THIS LICENCE. THE LICENSOR GRANTS YOU THE\nRIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS\nAND CONDITIONS.\n\n1. Definitions \n\n\"Collective Work\" means a work, such as a periodical issue, anthology or\nencyclopaedia, in which the Work in its entirety in unmodified form,\nalong with a number of other contributions, constituting separate and\nindependent works in themselves, are assembled into a collective whole.\nA work that constitutes a Collective Work will not be considered a\nDerivative Work (as defined below) for the purposes of this Licence.\n\n\"Derivative Work\" means a work that reproduces a substantial part of the\nWork, or of the Work and other pre-existing works protected by\ncopyright, or that is an adaptation of a Work that is a literary,\ndramatic, musical or artistic work. Derivative Works include a\ntranslation, musical arrangement, dramatisation, motion picture version,\nsound recording, art reproduction, abridgment, condensation, or any\nother form in which a work may be adapted, except that a work that\nconstitutes a Collective Work will not be considered a Derivative Work\nfor the purpose of this Licence. For the avoidance of doubt, where the\nWork is a musical composition or sound recording, the synchronization of\nthe Work in timed-relation with a moving image (\"synching\") will be\nconsidered a Derivative Work for the purpose of this Licence.\n\n\"Licensor\" means the individual or entity that offers the Work under the\nterms of this Licence. \n\n\"Moral rights law\" means laws under which an individual who creates a\nwork protected by copyright has rights of integrity of authorship of the\nwork, rights of attribution of authorship of the work, rights not to\nhave authorship of the work falsely attributed, or rights of a similar\nor analogous nature in the work anywhere in the world.\n\n\"Original Author\" means the individual or entity who created the Work. \n\n\"Work\" means the work or other subject-matter protected by copyright\nthat is offered under the terms of this Licence, which may include\n(without limitation) a literary, dramatic, musical or artistic work, a\nsound recording, cinematograph film, a published edition of a literary,\ndramatic, musical or artistic work or a television or sound broadcast.\n\n\"You\" means an individual or entity exercising rights under this Licence\nwho has not previously violated the terms of this Licence with respect\nto the Work, or who has received express permission from the Licensor to\nexercise rights under this Licence despite a previous violation.\n\n\"Licence Elements\" means the following high-level licence attributes as\nselected by Licensor and indicated in the title of this Licence:\nAttribution, NonCommercial, NoDerivatives, ShareAlike.\n\n2. Fair Dealing and Other Rights.\n\nNothing in this Licence excludes or modifies, or is intended to exclude\nor modify, (including by reducing, limiting, or restricting) the rights\nof You or others to use the Work arising from fair dealings or other\nlimitations on the rights of the copyright owner or the Original Author\nunder copyright law, moral rights law or other applicable laws.\n\n3. Licence Grant. \n\nSubject to the terms and conditions of this Licence, Licensor hereby\ngrants You a worldwide, royalty-free, non-exclusive, perpetual (for the\nduration of the applicable copyright) licence to exercise the rights in\nthe Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more\nCollective Works, and to reproduce the Work as incorporated in the\nCollective Works;\n\nto publish, communicate to the public, distribute copies or records of,\nexhibit or display publicly, perform publicly and perform publicly by\nmeans of a digital audio transmission the Work including as incorporated\nin Collective Works;\n\nThe above rights may be exercised in all media and formats whether now\nknown or hereafter devised. The above rights include the right to make\nsuch modifications as are technically necessary to exercise the rights\nin other media and formats. All rights not expressly granted by Licensor\nunder this Licence are hereby reserved, including but not limited to the\nrights set forth in Sections 4(d) and 4(e).\n\n4. Restrictions. \n\nThe licence granted in Section 3 above is expressly made subject to and\nlimited by the following restrictions:\n\nYou may publish, communicate to the public, distribute, publicly exhibit\nor display, publicly perform, or publicly digitally perform the Work\nonly under the terms of this Licence, and You must include a copy of, or\nthe Uniform Resource Identifier for, this Licence with every copy or\nrecord of the Work You publish, communicate to the public, distribute,\npublicly exhibit or display, publicly perform or publicly digitally\nperform. You may not offer or impose any terms on the Work that exclude,\nalter or restrict the terms of this Licence or the recipients' exercise\nof the rights granted hereunder. You may not sublicense the Work. You\nmust keep intact all notices that refer to this Licence and to the\ndisclaimer of representations and warranties. You may not publish,\ncommunicate to the public, distribute, publicly exhibit or display,\npublicly perform, or publicly digitally perform the Work with any\ntechnological measures that control access or use of the Work in a\nmanner inconsistent with the terms of this Licence. The above applies to\nthe Work as incorporated in a Collective Work, but this does not require\nthe Collective Work apart from the Work itself to be made subject to the\nterms of this Licence. If You create a Collective Work, upon notice from\nany Licensor You must, to the extent practicable, remove from the\nCollective Work any reference to such Licensor or the Original Author,\nas requested.\n\nYou may not exercise any of the rights granted to You in Section 3 above\nin any manner that is primarily intended for or directed toward\ncommercial advantage or private monetary compensation. The exchange of\nthe Work for other copyrighted works by means of digital file-sharing or\notherwise shall not be considered to be intended for or directed toward\ncommercial advantage or private monetary compensation, provided there is\nno payment of any monetary compensation in connection with the exchange\nof copyrighted works.\n\nIf you publish, communicate to the public, distribute, publicly exhibit\nor display, publicly perform, or publicly digitally perform the Work or\nany Collective Works, You must keep intact all copyright notices for the\nWork. You must also give the Original Author clear and reasonably\nprominent credit, and (if applicable) that credit must be given in the\nparticular way made known by the Original Author and otherwise as\nreasonable to the medium or means You are utilizing, by conveying the\nidentity (such as by name or pseudonym if applicable) of the Original\nAuthor if supplied; the title of the Work if supplied; to the extent\nreasonably practicable, the Uniform Resource Identifier, if any, that\nLicensor specifies to be associated with the Work, unless such URI does\nnot refer to the copyright notice or licensing information for the Work.\nSuch credit may be implemented in any reasonable manner; provided,\nhowever, that in the case of a Collective Work, at a minimum such credit\nwill appear where any other comparable authorship credit appears and in\na manner at least as prominent as such other comparable authorship\ncredit.\n\nFor the avoidance of doubt, where the Work is a musical composition: \n\nPerformance Royalties Under Blanket Licences. Licensor reserves the\nexclusive right to collect, whether individually or via a performance\nrights society (e.g. ASCAP, BMI, SESAC), royalties for the communication\nto the public, broadcast, public performance or public digital\nperformance (e.g. webcast) of the Work if that performance is primarily\nintended for or directed toward commercial advantage or private monetary\ncompensation.\n\nMechanical Rights and Statutory Royalties. Licensor reserves the\nexclusive right to collect, whether individually or via a music rights\nagency, designated agent (e.g. Harry Fox Agency) or a music publisher,\nroyalties for any record You create from the Work (\"cover version\") and\ndistribute, subject to the compulsory licence created by 17 USC Section\n115 of the US Copyright Act (or an equivalent statutory licence under\nthe Australian Copyright Act or in other jurisdictions), if Your\ndistribution of such cover version is primarily intended for or directed\ntoward commercial advantage or private monetary compensation.\n\nWebcasting Rights and Statutory Royalties. For the avoidance of doubt,\nwhere the Work is a sound recording, Licensor reserves the exclusive\nright to collect, whether individually or via a performance-rights\nsociety (e.g. SoundExchange), royalties for the public digital\nperformance (e.g. webcast) of the Work, subject to the compulsory\nlicence created by 17 USC Section 114 of the US Copyright Act (or the\nequivalent in other jurisdictions), if Your public digital performance\nis primarily intended for or directed toward commercial advantage or\nprivate monetary compensation.\n\nFalse attribution prohibited. Except as otherwise agreed in writing by\nthe Licensor, if You publish, communicate to the public, distribute,\npublicly exhibit or display, publicly perform, or publicly digitally\nperform the Work or any Collective Works in accordance with this\nLicence, You must not falsely attribute the Work to someone other than\nthe Original Author.\n\nPrejudice to honour or reputation prohibited. Except as otherwise agreed\nin writing by the Licensor, if you publish, communicate to the public,\ndistribute, publicly exhibit or display, publicly perform, or publicly\ndigitally perform the Work or any Collective Works, You must not do\nanything that results in a material distortion of, the mutilation of, or\na material alteration to, the Work that is prejudicial to the Original\nAuthor's honour or reputation, and You must not do anything else in\nrelation to the Work that is prejudicial to the Original Author's honour\nor reputation.\n\n5. Disclaimer.\n\nEXCEPT AS EXPRESSLY STATED IN THIS LICENCE OR OTHERWISE MUTUALLY AGREED\nTO BY THE PARTIES IN WRITING, AND TO THE FULL EXTENT PERMITTED BY\nAPPLICABLE LAW, LICENSOR OFFERS THE WORK \"AS-IS\" AND MAKES NO\nREPRESENTATIONS, WARRANTIES OR CONDITIONS OF ANY KIND CONCERNING THE\nWORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT\nLIMITATION, ANY REPRESENTATIONS, WARRANTIES OR CONDITIONS REGARDING THE\nCONTENTS OR ACCURACY OF THE WORK, OR OF TITLE, MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE, NONINFRINGEMENT, THE ABSENCE OF LATENT OR\nOTHER DEFECTS, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\nDISCOVERABLE.\n\n6. Limitation on Liability.\n\nTO THE FULL EXTENT PERMITTED BY APPLICABLE LAW, AND EXCEPT FOR ANY\nLIABILITY ARISING FROM CONTRARY MUTUAL AGREEMENT AS REFERRED TO IN\nSECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL\nTHEORY (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE) FOR ANY LOSS OR\nDAMAGE WHATSOEVER, INCLUDING (WITHOUT LIMITATION) LOSS OF PRODUCTION OR\nOPERATION TIME, LOSS, DAMAGE OR CORRUPTION OF DATA OR RECORDS; OR LOSS\nOF ANTICIPATED SAVINGS, OPPORTUNITY, REVENUE, PROFIT OR GOODWILL, OR\nOTHER ECONOMIC LOSS; OR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE\nOR EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH THIS LICENCE\nOR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nIf applicable legislation implies warranties or conditions, or imposes\nobligations or liability on the Licensor in respect of this Licence that\ncannot be wholly or partly excluded, restricted or modified, the\nLicensor's liability is limited, to the full extent permitted by the\napplicable legislation, at its option, to:\n\nin the case of goods, any one or more of the following:\n \nthe replacement of the goods or the supply of equivalent goods;\nthe repair of the goods;\nthe payment of the cost of replacing the goods or of acquiring equivalent goods;\nthe payment of the cost of having the goods repaired; or\n\nin the case of services:\n\t\nthe supplying of the services again; or \nthe payment of the cost of having the services supplied again.\n\n\n7. Termination.\n\nThis Licence and the rights granted hereunder will terminate\nautomatically upon any breach by You of the terms of this Licence.\nIndividuals or entities who have received Collective Works from You\nunder this Licence, however, will not have their licences terminated\nprovided such individuals or entities remain in full compliance with\nthose licences. Sections 1, 2, 5, 6, 7, and 8 will survive any\ntermination of this Licence.\n\nSubject to the above terms and conditions, the licence granted here is\nperpetual (for the duration of the applicable copyright in the Work).\nNotwithstanding the above, Licensor reserves the right to release the\nWork under different licence terms or to stop distributing the Work at\nany time; provided, however that any such election will not serve to\nwithdraw this Licence (or any other licence that has been, or is\nrequired to be, granted under the terms of this Licence), and this\nLicence will continue in full force and effect unless terminated as\nstated above.\n\n8. Miscellaneous.\n\nEach time You publish, communicate to the public, distribute or publicly\ndigitally perform the Work or a Collective Work, the Licensor offers to\nthe recipient a licence to the Work on the same terms and conditions as\nthe licence granted to You under this Licence.\n\nIf any provision of this Licence is invalid or unenforceable under\napplicable law, it shall not affect the validity or enforceability of\nthe remainder of the terms of this Licence, and without further action\nby the parties to this agreement, such provision shall be reformed to\nthe minimum extent necessary to make such provision valid and\nenforceable.\n\nNo term or provision of this Licence shall be deemed waived and no\nbreach consented to unless such waiver or consent shall be in writing\nand signed by the party to be charged with such waiver or consent.\n\nThis Licence constitutes the entire agreement between the parties with\nrespect to the Work licensed here. To the full extent permitted by\napplicable law, there are no understandings, agreements or\nrepresentations with respect to the Work not specified here. Licensor\nshall not be bound by any additional provisions that may appear in any\ncommunication from You. This Licence may not be modified without the\nmutual written agreement of the Licensor and You.\n\nThe construction, validity and performance of this Licence shall be\ngoverned by the laws in force in New South Wales, Australia.", + "json": "cc-by-nc-nd-2.0-au.json", + "yaml": "cc-by-nc-nd-2.0-au.yml", + "html": "cc-by-nc-nd-2.0-au.html", + "license": "cc-by-nc-nd-2.0-au.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-2.5", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-NonCommercial-NoDerivs 2.5\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this License.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats, but otherwise you have no rights to make Derivative Works. All rights not expressly granted by Licensor are hereby reserved, including but not limited to the rights set forth in Sections 4(d) and 4(e).\n\n4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(c), as requested.\nYou may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; and to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work. Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\nFor the avoidance of doubt, where the Work is a musical composition:\n\nPerformance Royalties Under Blanket Licenses. Licensor reserves the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work if that performance is primarily intended for or directed toward commercial advantage or private monetary compensation.\nMechanical Rights and Statutory Royalties. Licensor reserves the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work (\"cover version\") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions), if Your distribution of such cover version is primarily intended for or directed toward commercial advantage or private monetary compensation.\nWebcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor reserves the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions), if Your public digital performance is primarily intended for or directed toward commercial advantage or private monetary compensation.\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", + "json": "cc-by-nc-nd-2.5.json", + "yaml": "cc-by-nc-nd-2.5.yml", + "html": "cc-by-nc-nd-2.5.html", + "license": "cc-by-nc-nd-2.5.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-3.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Legal Code\n\nAttribution-NonCommercial-NoDerivs 3.0 Unported\n\n CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\n LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN\n ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS\n INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES\n REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR\n DAMAGES RESULTING FROM ITS USE.\n\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE\nCOMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY\nCOPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS\nAUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE\nTO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY\nBE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS\nCONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND\nCONDITIONS.\n\n1. Definitions\n\n a. \"Adaptation\" means a work based upon the Work, or upon the Work and\n other pre-existing works, such as a translation, adaptation,\n derivative work, arrangement of music or other alterations of a\n literary or artistic work, or phonogram or performance and includes\n cinematographic adaptations or any other form in which the Work may be\n recast, transformed, or adapted including in any form recognizably\n derived from the original, except that a work that constitutes a\n Collection will not be considered an Adaptation for the purpose of\n this License. For the avoidance of doubt, where the Work is a musical\n work, performance or phonogram, the synchronization of the Work in\n timed-relation with a moving image (\"synching\") will be considered an\n Adaptation for the purpose of this License.\n b. \"Collection\" means a collection of literary or artistic works, such as\n encyclopedias and anthologies, or performances, phonograms or\n broadcasts, or other works or subject matter other than works listed\n in Section 1(f) below, which, by reason of the selection and\n arrangement of their contents, constitute intellectual creations, in\n which the Work is included in its entirety in unmodified form along\n with one or more other contributions, each constituting separate and\n independent works in themselves, which together are assembled into a\n collective whole. A work that constitutes a Collection will not be\n considered an Adaptation (as defined above) for the purposes of this\n License.\n c. \"Distribute\" means to make available to the public the original and\n copies of the Work through sale or other transfer of ownership.\n d. \"Licensor\" means the individual, individuals, entity or entities that\n offer(s) the Work under the terms of this License.\n e. \"Original Author\" means, in the case of a literary or artistic work,\n the individual, individuals, entity or entities who created the Work\n or if no individual or entity can be identified, the publisher; and in\n addition (i) in the case of a performance the actors, singers,\n musicians, dancers, and other persons who act, sing, deliver, declaim,\n play in, interpret or otherwise perform literary or artistic works or\n expressions of folklore; (ii) in the case of a phonogram the producer\n being the person or legal entity who first fixes the sounds of a\n performance or other sounds; and, (iii) in the case of broadcasts, the\n organization that transmits the broadcast.\n f. \"Work\" means the literary and/or artistic work offered under the terms\n of this License including without limitation any production in the\n literary, scientific and artistic domain, whatever may be the mode or\n form of its expression including digital form, such as a book,\n pamphlet and other writing; a lecture, address, sermon or other work\n of the same nature; a dramatic or dramatico-musical work; a\n choreographic work or entertainment in dumb show; a musical\n composition with or without words; a cinematographic work to which are\n assimilated works expressed by a process analogous to cinematography;\n a work of drawing, painting, architecture, sculpture, engraving or\n lithography; a photographic work to which are assimilated works\n expressed by a process analogous to photography; a work of applied\n art; an illustration, map, plan, sketch or three-dimensional work\n relative to geography, topography, architecture or science; a\n performance; a broadcast; a phonogram; a compilation of data to the\n extent it is protected as a copyrightable work; or a work performed by\n a variety or circus performer to the extent it is not otherwise\n considered a literary or artistic work.\n g. \"You\" means an individual or entity exercising rights under this\n License who has not previously violated the terms of this License with\n respect to the Work, or who has received express permission from the\n Licensor to exercise rights under this License despite a previous\n violation.\n h. \"Publicly Perform\" means to perform public recitations of the Work and\n to communicate to the public those public recitations, by any means or\n process, including by wire or wireless means or public digital\n performances; to make available to the public Works in such a way that\n members of the public may access these Works from a place and at a\n place individually chosen by them; to perform the Work to the public\n by any means or process and the communication to the public of the\n performances of the Work, including by public digital performance; to\n broadcast and rebroadcast the Work by any means including signs,\n sounds or images.\n i. \"Reproduce\" means to make copies of the Work by any means including\n without limitation by sound or visual recordings and the right of\n fixation and reproducing fixations of the Work, including storage of a\n protected performance or phonogram in digital form or other electronic\n medium.\n\n2. Fair Dealing Rights. Nothing in this License is intended to reduce,\nlimit, or restrict any uses free from copyright or rights arising from\nlimitations or exceptions that are provided for in connection with the\ncopyright protection under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License,\nLicensor hereby grants You a worldwide, royalty-free, non-exclusive,\nperpetual (for the duration of the applicable copyright) license to\nexercise the rights in the Work as stated below:\n\n a. to Reproduce the Work, to incorporate the Work into one or more\n Collections, and to Reproduce the Work as incorporated in the\n Collections; and,\n b. to Distribute and Publicly Perform the Work including as incorporated\n in Collections.\n\nThe above rights may be exercised in all media and formats whether now\nknown or hereafter devised. The above rights include the right to make\nsuch modifications as are technically necessary to exercise the rights in\nother media and formats, but otherwise you have no rights to make\nAdaptations. Subject to 8(f), all rights not expressly granted by Licensor\nare hereby reserved, including but not limited to the rights set forth in\nSection 4(d).\n\n4. Restrictions. The license granted in Section 3 above is expressly made\nsubject to and limited by the following restrictions:\n\n a. You may Distribute or Publicly Perform the Work only under the terms\n of this License. You must include a copy of, or the Uniform Resource\n Identifier (URI) for, this License with every copy of the Work You\n Distribute or Publicly Perform. You may not offer or impose any terms\n on the Work that restrict the terms of this License or the ability of\n the recipient of the Work to exercise the rights granted to that\n recipient under the terms of the License. You may not sublicense the\n Work. You must keep intact all notices that refer to this License and\n to the disclaimer of warranties with every copy of the Work You\n Distribute or Publicly Perform. When You Distribute or Publicly\n Perform the Work, You may not impose any effective technological\n measures on the Work that restrict the ability of a recipient of the\n Work from You to exercise the rights granted to that recipient under\n the terms of the License. This Section 4(a) applies to the Work as\n incorporated in a Collection, but this does not require the Collection\n apart from the Work itself to be made subject to the terms of this\n License. If You create a Collection, upon notice from any Licensor You\n must, to the extent practicable, remove from the Collection any credit\n as required by Section 4(c), as requested.\n b. You may not exercise any of the rights granted to You in Section 3\n above in any manner that is primarily intended for or directed toward\n commercial advantage or private monetary compensation. The exchange of\n the Work for other copyrighted works by means of digital file-sharing\n or otherwise shall not be considered to be intended for or directed\n toward commercial advantage or private monetary compensation, provided\n there is no payment of any monetary compensation in connection with\n the exchange of copyrighted works.\n c. If You Distribute, or Publicly Perform the Work or Collections, You\n must, unless a request has been made pursuant to Section 4(a), keep\n intact all copyright notices for the Work and provide, reasonable to\n the medium or means You are utilizing: (i) the name of the Original\n Author (or pseudonym, if applicable) if supplied, and/or if the\n Original Author and/or Licensor designate another party or parties\n (e.g., a sponsor institute, publishing entity, journal) for\n attribution (\"Attribution Parties\") in Licensor's copyright notice,\n terms of service or by other reasonable means, the name of such party\n or parties; (ii) the title of the Work if supplied; (iii) to the\n extent reasonably practicable, the URI, if any, that Licensor\n specifies to be associated with the Work, unless such URI does not\n refer to the copyright notice or licensing information for the Work.\n The credit required by this Section 4(c) may be implemented in any\n reasonable manner; provided, however, that in the case of a\n Collection, at a minimum such credit will appear, if a credit for all\n contributing authors of Collection appears, then as part of these\n credits and in a manner at least as prominent as the credits for the\n other contributing authors. For the avoidance of doubt, You may only\n use the credit required by this Section for the purpose of attribution\n in the manner set out above and, by exercising Your rights under this\n License, You may not implicitly or explicitly assert or imply any\n connection with, sponsorship or endorsement by the Original Author,\n Licensor and/or Attribution Parties, as appropriate, of You or Your\n use of the Work, without the separate, express prior written\n permission of the Original Author, Licensor and/or Attribution\n Parties.\n d. For the avoidance of doubt:\n\n i. Non-waivable Compulsory License Schemes. In those jurisdictions in\n which the right to collect royalties through any statutory or\n compulsory licensing scheme cannot be waived, the Licensor\n reserves the exclusive right to collect such royalties for any\n exercise by You of the rights granted under this License;\n ii. Waivable Compulsory License Schemes. In those jurisdictions in\n which the right to collect royalties through any statutory or\n compulsory licensing scheme can be waived, the Licensor reserves\n the exclusive right to collect such royalties for any exercise by\n You of the rights granted under this License if Your exercise of\n such rights is for a purpose or use which is otherwise than\n noncommercial as permitted under Section 4(b) and otherwise waives\n the right to collect royalties through any statutory or compulsory\n licensing scheme; and,\n iii. Voluntary License Schemes. The Licensor reserves the right to\n collect royalties, whether individually or, in the event that the\n Licensor is a member of a collecting society that administers\n voluntary licensing schemes, via that society, from any exercise\n by You of the rights granted under this License that is for a\n purpose or use which is otherwise than noncommercial as permitted\n under Section 4(b).\n e. Except as otherwise agreed in writing by the Licensor or as may be\n otherwise permitted by applicable law, if You Reproduce, Distribute or\n Publicly Perform the Work either by itself or as part of any\n Collections, You must not distort, mutilate, modify or take other\n derogatory action in relation to the Work which would be prejudicial\n to the Original Author's honor or reputation.\n\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED BY THE PARTIES IN WRITING, LICENSOR\nOFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY\nKIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,\nINCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,\nFITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF\nLATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS,\nWHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION\nOF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE\nLAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR\nANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES\nARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS\nBEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\n a. This License and the rights granted hereunder will terminate\n automatically upon any breach by You of the terms of this License.\n Individuals or entities who have received Collections from You under\n this License, however, will not have their licenses terminated\n provided such individuals or entities remain in full compliance with\n those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any\n termination of this License.\n b. Subject to the above terms and conditions, the license granted here is\n perpetual (for the duration of the applicable copyright in the Work).\n Notwithstanding the above, Licensor reserves the right to release the\n Work under different license terms or to stop distributing the Work at\n any time; provided, however that any such election will not serve to\n withdraw this License (or any other license that has been, or is\n required to be, granted under the terms of this License), and this\n License will continue in full force and effect unless terminated as\n stated above.\n\n8. Miscellaneous\n\n a. Each time You Distribute or Publicly Perform the Work or a Collection,\n the Licensor offers to the recipient a license to the Work on the same\n terms and conditions as the license granted to You under this License.\n b. If any provision of this License is invalid or unenforceable under\n applicable law, it shall not affect the validity or enforceability of\n the remainder of the terms of this License, and without further action\n by the parties to this agreement, such provision shall be reformed to\n the minimum extent necessary to make such provision valid and\n enforceable.\n c. No term or provision of this License shall be deemed waived and no\n breach consented to unless such waiver or consent shall be in writing\n and signed by the party to be charged with such waiver or consent.\n d. This License constitutes the entire agreement between the parties with\n respect to the Work licensed here. There are no understandings,\n agreements or representations with respect to the Work not specified\n here. Licensor shall not be bound by any additional provisions that\n may appear in any communication from You. This License may not be\n modified without the mutual written agreement of the Licensor and You.\n e. The rights granted under, and the subject matter referenced, in this\n License were drafted utilizing the terminology of the Berne Convention\n for the Protection of Literary and Artistic Works (as amended on\n September 28, 1979), the Rome Convention of 1961, the WIPO Copyright\n Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996\n and the Universal Copyright Convention (as revised on July 24, 1971).\n These rights and subject matter take effect in the relevant\n jurisdiction in which the License terms are sought to be enforced\n according to the corresponding provisions of the implementation of\n those treaty provisions in the applicable national law. If the\n standard suite of rights granted under applicable copyright law\n includes additional rights not granted under this License, such\n additional rights are deemed to be included in the License; this\n License is not intended to restrict the license of any rights under\n applicable law.\n\n\nCreative Commons Notice\n\n Creative Commons is not a party to this License, and makes no warranty\n whatsoever in connection with the Work. Creative Commons will not be\n liable to You or any party on any legal theory for any damages\n whatsoever, including without limitation any general, special,\n incidental or consequential damages arising in connection to this\n license. Notwithstanding the foregoing two (2) sentences, if Creative\n Commons has expressly identified itself as the Licensor hereunder, it\n shall have all rights and obligations of Licensor.\n\n Except for the limited purpose of indicating to the public that the\n Work is licensed under the CCPL, Creative Commons does not authorize\n the use by either party of the trademark \"Creative Commons\" or any\n related trademark or logo of Creative Commons without the prior\n written consent of Creative Commons. Any permitted use will be in\n compliance with Creative Commons' then-current trademark usage\n guidelines, as may be published on its website or otherwise made\n available upon request from time to time. For the avoidance of doubt,\n this trademark restriction does not form part of this License.\n\n Creative Commons may be contacted at https://creativecommons.org/.", + "json": "cc-by-nc-nd-3.0.json", + "yaml": "cc-by-nc-nd-3.0.yml", + "html": "cc-by-nc-nd-3.0.html", + "license": "cc-by-nc-nd-3.0.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-3.0-de", + "category": "Free Restricted", + "spdx_license_key": "CC-BY-NC-ND-3.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Namensnennung - Keine kommerzielle Nutzung - Keine Bearbeitungen 3.0 Deutschland\n\n CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ F\u00dcHRT ZU KEINEM MANDATSVERH\u00c4LTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEW\u00c4HR ZUR VERF\u00dcGUNG. CREATIVE COMMONS \u00dcBERNIMMT KEINE GEW\u00c4HRLEISTUNG F\u00dcR DIE GELIEFERTEN INFORMATIONEN UND SCHLIE\u00dfT DIE HAFTUNG F\u00dcR SCH\u00c4DEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN.\n\nLizenz\n\nDER GEGENSTAND DIESER LIZENZ (WIE UNTER \"SCHUTZGEGENSTAND\" DEFINIERT) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\", \"LIZENZ\" ODER \"LIZENZVERTRAG\") ZUR VERF\u00dcGUNG GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER ANDERE GESETZE GESCH\u00dcTZT. JEDE FORM DER NUTZUNG DES SCHUTZGEGENSTANDES, DIE NICHT AUFGRUND DIESER LIZENZ ODER DURCH GESETZE GESTATTET IST, IST UNZUL\u00c4SSIG.\n\nDURCH DIE AUS\u00dcBUNG EINES DURCH DIESE LIZENZ GEW\u00c4HRTEN RECHTS AN DEM SCHUTZGEGENSTAND ERKL\u00c4REN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH EINVERSTANDEN. SOWEIT DIESE LIZENZ ALS LIZENZVERTRAG ANZUSEHEN IST, GEW\u00c4HRT IHNEN DER LIZENZGEBER DIE IN DER LIZENZ GENANNTEN RECHTE UNENTGELTLICH UND IM AUSTAUSCH DAF\u00dcR, DASS SIE DAS GEBUNDENSEIN AN DIE LIZENZBEDINGUNGEN AKZEPTIEREN.\n\n1. Definitionen\n\n a. Der Begriff \"Abwandlung\" im Sinne dieser Lizenz bezeichnet das Ergebnis jeglicher Art von Ver\u00e4nderung des Schutzgegenstandes, solange die eigenpers\u00f6nlichen Z\u00fcge des Schutzgegenstandes darin nicht verblassen und daran eigene Schutzrechte entstehen. Das kann insbesondere eine Bearbeitung, Umgestaltung, \u00c4nderung, Anpassung, \u00dcbersetzung oder Heranziehung des Schutzgegenstandes zur Vertonung von Laufbildern sein. Nicht als Abwandlung des Schutzgegenstandes gelten seine Aufnahme in eine Sammlung oder ein Sammelwerk und die freie Benutzung des Schutzgegenstandes.\n\n b. Der Begriff \"Sammelwerk\" im Sinne dieser Lizenz meint eine Zusammenstellung von literarischen, k\u00fcnstlerischen oder wissenschaftlichen Inhalten, sofern diese Zusammenstellung aufgrund von Auswahl und Anordnung der darin enthaltenen selbst\u00e4ndigen Elemente eine geistige Sch\u00f6pfung darstellt, unabh\u00e4ngig davon, ob die Elemente systematisch oder methodisch angelegt und dadurch einzeln zug\u00e4nglich sind oder nicht.\n\n c. \"Verbreiten\" im Sinne dieser Lizenz bedeutet, den Schutzgegenstand im Original oder in Form von Vervielf\u00e4ltigungsst\u00fccken, mithin in k\u00f6rperlich fixierter Form der \u00d6ffentlichkeit anzubieten oder in Verkehr zu bringen.\n\n d. Der \"Lizenzgeber\" im Sinne dieser Lizenz ist diejenige nat\u00fcrliche oder juristische Person oder Gruppe, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet und insoweit als Rechteinhaberin auftritt.\n\n e. \"Rechteinhaber\" im Sinne dieser Lizenz ist der Urheber des Schutzgegenstandes oder jede andere nat\u00fcrliche oder juristische Person oder Gruppe von Personen, die am Schutzgegenstand ein Immaterialg\u00fcterrecht erlangt hat, welches die in Abschnitt 3 genannten Handlungen erfasst und bei dem eine Einr\u00e4umung von Nutzungsrechten oder eine Weiter\u00fcbertragung an Dritte m\u00f6glich ist.\n\n f. Der Begriff \"Schutzgegenstand\" bezeichnet in dieser Lizenz den literarischen, k\u00fcnstlerischen oder wissenschaftlichen Inhalt, der unter den Bedingungen dieser Lizenz angeboten wird. Das kann insbesondere eine pers\u00f6nliche geistige Sch\u00f6pfung jeglicher Art, ein Werk der kleinen M\u00fcnze, ein nachgelassenes Werk oder auch ein Lichtbild oder anderes Objekt eines verwandten Schutzrechts sein, unabh\u00e4ngig von der Art seiner Fixierung und unabh\u00e4ngig davon, auf welche Weise jeweils eine Wahrnehmung erfolgen kann, gleichviel ob in analoger oder digitaler Form. Soweit Datenbanken oder Zusammenstellungen von Daten einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen, unterfallen auch sie dem Begriff \"Schutzgegenstand\" im Sinne dieser Lizenz.\n\n g. Mit \"Sie\" bzw. \"Ihnen\" ist die nat\u00fcrliche oder juristische Person gemeint, die in dieser Lizenz im Abschnitt 3 genannte Nutzungen des Schutzgegenstandes vornimmt und zuvor in Hinblick auf den Schutzgegenstand nicht gegen Bedingungen dieser Lizenz versto\u00dfen oder aber die ausdr\u00fcckliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese Lizenz gew\u00e4hrten Nutzungsrechte trotz eines vorherigen Versto\u00dfes auszu\u00fcben.\n\n h. Unter \"\u00d6ffentlich Zeigen\" im Sinne dieser Lizenz sind Ver\u00f6ffentlichungen und Pr\u00e4sentationen des Schutzgegenstandes zu verstehen, die f\u00fcr eine Mehrzahl von Mitgliedern der \u00d6ffentlichkeit bestimmt sind und in unk\u00f6rperlicher Form mittels \u00f6ffentlicher Wiedergabe in Form von Vortrag, Auff\u00fchrung, Vorf\u00fchrung, Darbietung, Sendung, Weitersendung, zeit- und ortsunabh\u00e4ngiger Zug\u00e4nglichmachung oder in k\u00f6rperlicher Form mittels Ausstellung erfolgen, unabh\u00e4ngig von bestimmten Veranstaltungen und unabh\u00e4ngig von den zum Einsatz kommenden Techniken und Verfahren, einschlie\u00dflich drahtgebundener oder drahtloser Mittel und Einstellen in das Internet.\n\n i. \"Vervielf\u00e4ltigen\" im Sinne dieser Lizenz bedeutet, mittels beliebiger Verfahren Vervielf\u00e4ltigungsst\u00fccke des Schutzgegenstandes herzustellen, insbesondere durch Ton- oder Bildaufzeichnungen, und umfasst auch den Vorgang, erstmals k\u00f6rperliche Fixierungen des Schutzgegenstandes sowie Vervielf\u00e4ltigungsst\u00fccke dieser Fixierungen anzufertigen, sowie die \u00dcbertragung des Schutzgegenstandes auf einen Bild- oder Tontr\u00e4ger oder auf ein anderes elektronisches Medium, gleichviel ob in digitaler oder analoger Form.\n\n2. Schranken des Immaterialg\u00fcterrechts. Diese Lizenz ist in keiner Weise darauf gerichtet, Befugnisse zur Nutzung des Schutzgegenstandes zu vermindern, zu beschr\u00e4nken oder zu vereiteln, die Ihnen aufgrund der Schranken des Urheberrechts oder anderer Rechtsnormen bereits ohne Weiteres zustehen oder sich aus dem Fehlen eines immaterialg\u00fcterrechtlichen Schutzes ergeben.\n\n3. Einr\u00e4umung von Nutzungsrechten. Unter den Bedingungen dieser Lizenz r\u00e4umt Ihnen der Lizenzgeber - unbeschadet unverzichtbarer Rechte und vorbehaltlich des Abschnitts 4.e) - das verg\u00fctungsfreie, r\u00e4umlich und zeitlich (f\u00fcr die Dauer des Schutzrechts am Schutzgegenstand) unbeschr\u00e4nkte einfache Recht ein, den Schutzgegenstand auf die folgenden Arten und Weisen zu nutzen (\"unentgeltlich einger\u00e4umtes einfaches Nutzungsrecht f\u00fcr jedermann\"):\n\n a. den Schutzgegenstand in beliebiger Form und Menge zu vervielf\u00e4ltigen, ihn in Sammelwerke zu integrieren und ihn als Teil solcher Sammelwerke zu vervielf\u00e4ltigen;\n\n b. den Schutzgegenstand, allein oder in Sammelwerke aufgenommen, \u00f6ffentlich zu zeigen und zu verbreiten.\n\nDas vorgenannte Nutzungsrecht wird f\u00fcr alle bekannten sowie f\u00fcr alle noch nicht bekannten Nutzungsarten einger\u00e4umt. Es beinhaltet auch das Recht, solche \u00c4nderungen am Schutzgegenstand vorzunehmen, die f\u00fcr bestimmte nach dieser Lizenz zul\u00e4ssige Nutzungen technisch erforderlich sind. Weitergehende \u00c4nderungen oder Abwandlungen sind jedoch untersagt. Alle sonstigen Rechte, die \u00fcber diesen Abschnitt hinaus nicht ausdr\u00fccklich durch den Lizenzgeber einger\u00e4umt werden, bleiben diesem allein vorbehalten. Soweit Datenbanken oder Zusammenstellungen von Daten Schutzgegenstand dieser Lizenz oder Teil dessen sind und einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen, verzichtet der Lizenzgeber auf s\u00e4mtliche aus diesem Schutz resultierenden Rechte.\n\n4. Bedingungen. Die Einr\u00e4umung des Nutzungsrechts gem\u00e4\u00df Abschnitt 3 dieser Lizenz erfolgt ausdr\u00fccklich nur unter den folgenden Bedingungen:\n\n a. Sie d\u00fcrfen den Schutzgegenstand ausschlie\u00dflich unter den Bedingungen dieser Lizenz verbreiten oder \u00f6ffentlich zeigen. Sie m\u00fcssen dabei stets eine Kopie dieser Lizenz oder deren vollst\u00e4ndige Internetadresse in Form des Uniform-Resource-Identifier (URI) beif\u00fcgen. Sie d\u00fcrfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen dieser Lizenz oder die durch diese Lizenz gew\u00e4hrten Rechte beschr\u00e4nken. Sie d\u00fcrfen den Schutzgegenstand nicht unterlizenzieren. Bei jeder Kopie des Schutzgegenstandes, die Sie verbreiten oder \u00f6ffentlich zeigen, m\u00fcssen Sie alle Hinweise unver\u00e4ndert lassen, die auf diese Lizenz und den Haftungsausschluss hinweisen. Wenn Sie den Schutzgegenstand verbreiten oder \u00f6ffentlich zeigen, d\u00fcrfen Sie (in Bezug auf den Schutzgegenstand) keine technischen Ma\u00dfnahmen ergreifen, die den Nutzer des Schutzgegenstandes in der Aus\u00fcbung der ihm durch diese Lizenz gew\u00e4hrten Rechte behindern k\u00f6nnen. Dieser Abschnitt 4.a) gilt auch f\u00fcr den Fall, dass der Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt dieser Lizenz unterstellt werden muss. Sofern Sie ein Sammelwerk erstellen, m\u00fcssen Sie auf die Mitteilung eines Lizenzgebers hin aus dem Sammelwerk die in Abschnitt 4.c) aufgez\u00e4hlten Hinweise entfernen.\n\n b. Die Rechteeinr\u00e4umung gem\u00e4\u00df Abschnitt 3 gilt nur f\u00fcr Handlungen, die nicht vorrangig auf einen gesch\u00e4ftlichen Vorteil oder eine geldwerte Verg\u00fctung gerichtet sind (\"nicht-kommerzielle Nutzung\", \"Non-commercial-Option\"). Wird Ihnen in Zusammenhang mit dem Schutzgegenstand dieser Lizenz ein anderer Schutzgegenstand \u00fcberlassen, ohne dass eine vertragliche Verpflichtung hierzu besteht (etwa im Wege von File-Sharing), so wird dies nicht als auf gesch\u00e4ftlichen Vorteil oder geldwerte Verg\u00fctung gerichtet angesehen, wenn in Verbindung mit dem Austausch der Schutzgegenst\u00e4nde tats\u00e4chlich keine Zahlung oder geldwerte Verg\u00fctung geleistet wird.\n\n c. Die Verbreitung und das \u00f6ffentliche Zeigen des Schutzgegenstandes oder ihn enthaltender Sammelwerke ist Ihnen nur unter der Bedingung gestattet, dass Sie, vorbehaltlich etwaiger Mitteilungen im Sinne von Abschnitt 4.a), alle dazu geh\u00f6renden Rechtevermerke unber\u00fchrt lassen. Sie sind verpflichtet, die Rechteinhaberschaft in einer der Nutzung entsprechenden, angemessenen Form anzuerkennen, indem Sie - soweit bekannt - Folgendes angeben:\n\n i. Den Namen (oder das Pseudonym, falls ein solches verwendet wird) des Rechteinhabers und / oder, falls der Lizenzgeber im Rechtevermerk, in den Nutzungsbedingungen oder auf andere angemessene Weise eine Zuschreibung an Dritte vorgenommen hat (z.B. an eine Stiftung, ein Verlagshaus oder eine Zeitung) (\"Zuschreibungsempf\u00e4nger\"), Namen bzw. Bezeichnung dieses oder dieser Dritten;\n\n ii. den Titel des Inhaltes;\n\n iii. in einer praktikablen Form den Uniform-Resource-Identifier (URI, z.B. Internetadresse), den der Lizenzgeber zum Schutzgegenstand angegeben hat, es sei denn, dieser URI verweist nicht auf den Rechtevermerk oder die Lizenzinformationen zum Schutzgegenstand.\n\n Die nach diesem Abschnitt 4.c) erforderlichen Angaben k\u00f6nnen in jeder angemessenen Form gemacht werden; im Falle eines Sammelwerkes m\u00fcssen diese Angaben das Minimum darstellen und bei gemeinsamer Nennung mehrerer Rechteinhaber dergestalt erfolgen, dass sie zumindest ebenso hervorgehoben sind wie die Hinweise auf die \u00fcbrigen Rechteinhaber. Die Angaben nach diesem Abschnitt d\u00fcrfen Sie ausschlie\u00dflich zur Angabe der Rechteinhaberschaft in der oben bezeichneten Weise verwenden. Durch die Aus\u00fcbung Ihrer Rechte aus dieser Lizenz d\u00fcrfen Sie ohne eine vorherige, separat und schriftlich vorliegende Zustimmung des Lizenzgebers und / oder des Zuschreibungsempf\u00e4ngers weder explizit noch implizit irgendeine Verbindung zum Lizenzgeber oder Zuschreibungsempf\u00e4nger und ebenso wenig eine Unterst\u00fctzung oder Billigung durch ihn andeuten.\n\n d. Die oben unter 4.a) bis c) genannten Einschr\u00e4nkungen gelten nicht f\u00fcr solche Teile des Schutzgegenstandes, die allein deshalb unter den Schutzgegenstandsbegriff fallen, weil sie als Datenbanken oder Zusammenstellungen von Daten einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen.\n\n e. Bez\u00fcglich Verg\u00fctung f\u00fcr die Nutzung des Schutzgegenstandes gilt Folgendes:\n\n i. Unverzichtbare gesetzliche Verg\u00fctungsanspr\u00fcche: Soweit unverzichtbare Verg\u00fctungsanspr\u00fcche im Gegenzug f\u00fcr gesetzliche Lizenzen vorgesehen oder Pauschalabgabensysteme (zum Beispiel f\u00fcr Leermedien) vorhanden sind, beh\u00e4lt sich der Lizenzgeber das ausschlie\u00dfliche Recht vor, die entsprechende Verg\u00fctung einzuziehen f\u00fcr jede Aus\u00fcbung eines Rechts aus dieser Lizenz durch Sie.\n\n ii. Verg\u00fctung bei Zwangslizenzen: Sofern Zwangslizenzen au\u00dferhalb dieser Lizenz vorgesehen sind und zustande kommen, beh\u00e4lt sich der Lizenzgeber das ausschlie\u00dfliche Recht auf Einziehung der entsprechenden Verg\u00fctung f\u00fcr den Fall vor, dass Sie eine Nutzung des Schutzgegenstandes f\u00fcr andere als die in Abschnitt 4.b) als nicht-kommerziell definierten Zwecke vornehmen, verzichtet f\u00fcr alle \u00fcbrigen, lizenzgerechten F\u00e4lle von Nutzung jedoch auf jegliche Verg\u00fctung.\n\n iii. Verg\u00fctung in sonstigen F\u00e4llen: Bez\u00fcglich lizenzgerechter Nutzung des Schutzgegenstandes durch Sie, die nicht unter die beiden vorherigen Abschnitte (i) und (ii) f\u00e4llt, verzichtet der Lizenzgeber auf jegliche Verg\u00fctung, unabh\u00e4ngig davon, ob eine Einziehung der Verg\u00fctung durch ihn selbst oder nur durch eine Verwertungsgesellschaft m\u00f6glich w\u00e4re. Der Lizenzgeber beh\u00e4lt sich jedoch das ausschlie\u00dfliche Recht auf Einziehung der entsprechenden Verg\u00fctung (durch ihn selbst oder eine Verwertungsgesellschaft) f\u00fcr den Fall vor, dass Sie eine Nutzung des Schutzgegenstandes f\u00fcr andere als die in Abschnitt 4.b) als nicht-kommerziell definierten Zwecke vornehmen.\n\n f. Pers\u00f6nlichkeitsrechte bleiben - soweit sie bestehen - von dieser Lizenz unber\u00fchrt.\n\n5. Gew\u00e4hrleistung\n\nSOFERN KEINE ANDERS LAUTENDE, SCHRIFTLICHE VEREINBARUNG ZWISCHEN DEM LIZENZGEBER UND IHNEN GESCHLOSSEN WURDE UND SOWEIT M\u00c4NGEL NICHT ARGLISTIG VERSCHWIEGEN WURDEN, BIETET DER LIZENZGEBER DEN SCHUTZGEGENSTAND UND DIE EINR\u00c4UMUNG VON RECHTEN UNTER AUSSCHLUSS JEGLICHER GEW\u00c4HRLEISTUNG AN UND \u00dcBERNIMMT WEDER AUSDR\u00dcCKLICH NOCH KONKLUDENT GARANTIEN IRGENDEINER ART. DIES UMFASST INSBESONDERE DAS FREISEIN VON SACH- UND RECHTSM\u00c4NGELN, UNABH\u00c4NGIG VON DEREN ERKENNBARKEIT F\u00dcR DEN LIZENZGEBER, DIE VERKEHRSF\u00c4HIGKEIT DES SCHUTZGEGENSTANDES, SEINE VERWENDBARKEIT F\u00dcR EINEN BESTIMMTEN ZWECK SOWIE DIE KORREKTHEIT VON BESCHREIBUNGEN. DIESE GEW\u00c4HRLEISTUNGSBESCHR\u00c4NKUNG GILT NICHT, SOWEIT M\u00c4NGEL ZU SCH\u00c4DEN DER IN ABSCHNITT 6 BEZEICHNETEN ART F\u00dcHREN UND AUF SEITEN DES LIZENZGEBERS DAS JEWEILS GENANNTE VERSCHULDEN BZW. VERTRETENM\u00dcSSEN EBENFALLS VORLIEGT.\n\n6. Haftungsbeschr\u00e4nkung\n\nDER LIZENZGEBER HAFTET IHNEN GEGEN\u00dcBER IN BEZUG AUF SCH\u00c4DEN AUS DER VERLETZUNG DES LEBENS, DES K\u00d6RPERS ODER DER GESUNDHEIT NUR, SOFERN IHM WENIGSTENS FAHRL\u00c4SSIGKEIT VORZUWERFEN IST, F\u00dcR SONSTIGE SCH\u00c4DEN NUR BEI GROBER FAHRL\u00c4SSIGKEIT ODER VORSATZ, UND \u00dcBERNIMMT DAR\u00dcBER HINAUS KEINERLEI FREIWILLIGE HAFTUNG.\n\n7. Erl\u00f6schen\n\n a. Diese Lizenz und die durch sie einger\u00e4umten Nutzungsrechte erl\u00f6schen mit Wirkung f\u00fcr die Zukunft im Falle eines Versto\u00dfes gegen die Lizenzbedingungen durch Sie, ohne dass es dazu der Kenntnis des Lizenzgebers vom Versto\u00df oder einer weiteren Handlung einer der Vertragsparteien bedarf. Mit nat\u00fcrlichen oder juristischen Personen, die den Schutzgegenstand enthaltende Sammelwerke unter den Bedingungen dieser Lizenz von Ihnen erhalten haben, bestehen nachtr\u00e4glich entstandene Lizenzbeziehungen jedoch solange weiter, wie die genannten Personen sich ihrerseits an s\u00e4mtliche Lizenzbedingungen halten. Dar\u00fcber hinaus gelten die Ziffern 1, 2, 5, 6, 7, und 8 auch nach einem Erl\u00f6schen dieser Lizenz fort.\n\n b. Vorbehaltlich der oben genannten Bedingungen gilt diese Lizenz unbefristet bis der rechtliche Schutz f\u00fcr den Schutzgegenstand ausl\u00e4uft. Davon abgesehen beh\u00e4lt der Lizenzgeber das Recht, den Schutzgegenstand unter anderen Lizenzbedingungen anzubieten oder die eigene Weitergabe des Schutzgegenstandes jederzeit einzustellen, solange die Aus\u00fcbung dieses Rechts nicht einer K\u00fcndigung oder einem Widerruf dieser Lizenz (oder irgendeiner Weiterlizenzierung, die auf Grundlage dieser Lizenz bereits erfolgt ist bzw. zuk\u00fcnftig noch erfolgen muss) dient und diese Lizenz unter Ber\u00fccksichtigung der oben zum Erl\u00f6schen genannten Bedingungen vollumf\u00e4nglich wirksam bleibt.\n\n8. Sonstige Bestimmungen\n\n a. Jedes Mal wenn Sie den Schutzgegenstand f\u00fcr sich genommen oder als Teil eines Sammelwerkes verbreiten oder \u00f6ffentlich zeigen, bietet der Lizenzgeber dem Empf\u00e4nger eine Lizenz zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz.\n\n b. Sollte eine Bestimmung dieser Lizenz unwirksam sein, so bleibt davon die Wirksamkeit der Lizenz im \u00dcbrigen unber\u00fchrt.\n\n c. Keine Bestimmung dieser Lizenz soll als abbedungen und kein Versto\u00df gegen sie als zul\u00e4ssig gelten, solange die von dem Verzicht oder von dem Versto\u00df betroffene Seite nicht schriftlich zugestimmt hat.\n\n d. Diese Lizenz (zusammen mit in ihr ausdr\u00fccklich vorgesehenen Erlaubnissen, Mitteilungen und Zustimmungen, soweit diese tats\u00e4chlich vorliegen) stellt die vollst\u00e4ndige Vereinbarung zwischen dem Lizenzgeber und Ihnen in Bezug auf den Schutzgegenstand dar. Es bestehen keine Abreden, Vereinbarungen oder Erkl\u00e4rungen in Bezug auf den Schutzgegenstand, die in dieser Lizenz nicht genannt sind. Rechtsgesch\u00e4ftliche \u00c4nderungen des Verh\u00e4ltnisses zwischen dem Lizenzgeber und Ihnen sind nur \u00fcber Modifikationen dieser Lizenz m\u00f6glich. Der Lizenzgeber ist an etwaige zus\u00e4tzliche, einseitig durch Sie \u00fcbermittelte Bestimmungen nicht gebunden. Diese Lizenz kann nur durch schriftliche Vereinbarung zwischen Ihnen und dem Lizenzgeber modifiziert werden. Derlei Modifikationen wirken ausschlie\u00dflich zwischen dem Lizenzgeber und Ihnen und wirken sich nicht auf die Dritten gem\u00e4\u00df Ziffern 8.a) angeboteten Lizenzen aus.\n\n e. Sofern zwischen Ihnen und dem Lizenzgeber keine anderweitige Vereinbarung getroffen wurde und soweit Wahlfreiheit besteht, findet auf diesen Lizenzvertrag das Recht der Bundesrepublik Deutschland Anwendung.\n\nCreative Commons Notice\n\nCreative Commons ist nicht Partei dieser Lizenz und \u00fcbernimmt keinerlei Gew\u00e4hr oder dergleichen in Bezug auf den Schutzgegenstand. Creative Commons haftet Ihnen oder einer anderen Partei unter keinem rechtlichen Gesichtspunkt f\u00fcr irgendwelche Sch\u00e4den, die - abstrakt oder konkret, zuf\u00e4llig oder vorhersehbar - im Zusammenhang mit dieser Lizenz entstehen. Unbeschadet der vorangegangen beiden S\u00e4tze, hat Creative Commons alle Rechte und Pflichten eines Lizenzgebers, wenn es sich ausdr\u00fccklich als Lizenzgeber im Sinne dieser Lizenz bezeichnet.\n\nCreative Commons gew\u00e4hrt den Parteien nur insoweit das Recht, das Logo und die Marke \"Creative Commons\" zu nutzen, als dies notwendig ist, um der \u00d6ffentlichkeit gegen\u00fcber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein dar\u00fcber hinaus gehender Gebrauch der Marke \"Creative Commons\" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website ver\u00f6ffentlicht oder auf andere Weise auf Anfrage zug\u00e4nglich gemacht wird. Zur Klarstellung: Die genannten Einschr\u00e4nkungen der Markennutzung sind nicht Bestandteil dieser Lizenz.\n\nCreative Commons kann kontaktiert werden \u00fcber https://creativecommons.org/.", + "json": "cc-by-nc-nd-3.0-de.json", + "yaml": "cc-by-nc-nd-3.0-de.yml", + "html": "cc-by-nc-nd-3.0-de.html", + "license": "cc-by-nc-nd-3.0-de.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-3.0-igo", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-3.0-IGO", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-NonCommercial-NoDerivs 3.0 IGO\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. THE LICENSOR IS NOT NECESSARILY AN INTERGOVERNMENTAL ORGANIZATION (IGO), AS DEFINED IN THE LICENSE BELOW.\n\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"LICENSE\"). THE LICENSOR (DEFINED BELOW) HOLDS COPYRIGHT AND OTHER RIGHTS IN THE WORK. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION FOR YOUR ACCEPTANCE AND AGREEMENT TO THE TERMS OF THE LICENSE.\n\n1. Definitions\na. \"IGO\" means, solely and exclusively for purposes of this License, an organization established by a treaty or other instrument governed by international law and possessing its own international legal personality. Other organizations established to carry out activities across national borders and that accordingly enjoy immunity from legal process are also IGOs for the sole and exclusive purposes of this License. IGOs may include as members, in addition to states, other entities.\nb. \"Work\" means the literary and/or artistic work eligible for copyright protection, whatever may be the mode or form of its expression including digital form, and offered under the terms of this License. It is understood that a database, which by reason of the selection and arrangement of its contents constitutes an intellectual creation, is considered a Work.\nc. \"Licensor\" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License and may be, but is not necessarily, an IGO.\nd. \"You\" means an individual or entity exercising rights under this License.\ne. \"Reproduce\" means to make a copy of the Work in any manner or form, and by any means.\nf. \"Distribute\" means the activity of making publicly available the Work (or copies of the Work), as applicable, by sale, rental, public lending or any other known form of transfer of ownership or possession of the Work or copy of the Work.\ng. \"Publicly Perform\" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images.\nh. \"Adaptation\" means a work derived from or based upon the Work, or upon the Work and other pre-existing works. Adaptations may include works such as translations, derivative works, or any alterations and arrangements of any kind involving the Work. For purposes of this License, where the Work is a musical work, performance, or phonogram, the synchronization of the Work in timed-relation with a moving image is an Adaptation. For the avoidance of doubt, including the Work in a Collection is not an Adaptation.\ni. \"Collection\" means a collection of literary or artistic works or other works or subject matter other than works listed in Section 1(b) which by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. For the avoidance of doubt, a Collection will not be considered as an Adaptation.\n2. Scope of this License. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright protection.\n3. License Grant. Subject to the terms and conditions of this License, the Licensor hereby grants You a worldwide, royalty-free, non-exclusive license to exercise the rights in the Work as follows:\na. to Reproduce, Distribute and Publicly Perform the Work, to incorporate the Work into one or more Collections, and to Reproduce, Distribute and Publicly Perform the Work as incorporated in the Collections.\nThis License lasts for the duration of the term of the copyright in the Work licensed by the Licensor. The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats, but otherwise you have no rights to make Adaptations. All rights not expressly granted by the Licensor are hereby reserved, including but not limited to the rights set forth in Section 4(d).\n4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\na. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work (see section 8(a)). You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from a Licensor You must, to the extent practicable, remove from the Collection any credit (inclusive of any logo, trademark, official mark or official emblem) as required by Section 4(c), as requested.\nb. You may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be primarily intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works.\nc. If You Distribute, or Publicly Perform the Work or any Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) any attributions that the Licensor indicates be associated with the Work as indicated in a copyright notice, (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that the Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work. The credit required by this Section 4(c) may be implemented in any reasonable manner; provided, however, that in the case of a Collection, at a minimum such credit will appear, if a credit for all contributors to the Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Licensor or others designated for attribution, of You or Your use of the Work, without the separate, express prior written permission of the Licensor or such others.\nd. For the avoidance of doubt:\ni. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License;\nii. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License if Your exercise of such rights is for a purpose or use which is otherwise than noncommercial as permitted under Section 4(b) and otherwise waives the right to collect royalties through any statutory or compulsory licensing scheme; and,\niii. Voluntary License Schemes. To the extent possible, the Licensor waives the right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary licensing scheme. In all other cases the Licensor expressly reserves the right to collect such royalties.\ne. Except as otherwise agreed in writing by the Licensor, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the honor or reputation of the Licensor where moral rights apply.\n5. Representations, Warranties and Disclaimer THE LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE.\n6. Limitation on Liability IN NO EVENT WILL THE LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF THE LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n7. Termination\na. Subject to the terms and conditions set forth in this License, the license granted here lasts for the duration of the term of the copyright in the Work licensed by the Licensor as stated in Section 3. Notwithstanding the above, the Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated below.\nb. If You fail to comply with this License, then this License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. Notwithstanding the foregoing, this License reinstates automatically as of the date the violation is cured, provided it is cured within 30 days of You discovering the violation, or upon express reinstatement by the Licensor. For the avoidance of doubt, this Section 7(b) does not affect any rights the Licensor may have to seek remedies for violations of this License by You.\n8. Miscellaneous\na. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nb. If any provision of this License is invalid or unenforceable, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nc. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the Licensor.\nd. This License constitutes the entire agreement between You and the Licensor with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. The Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\ne. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). Interpretation of the scope of the rights granted by the Licensor and the conditions imposed on You under this License, this License, and the rights and conditions set forth herein shall be made with reference to copyright as determined in accordance with general principles of international law, including the above mentioned conventions.\nf. Nothing in this License constitutes or may be interpreted as a limitation upon or waiver of any privileges and immunities that may apply to the Licensor or You, including immunity from the legal processes of any jurisdiction, national court or other authority.\ng. Where the Licensor is an IGO, any and all disputes arising under this License that cannot be settled amicably shall be resolved in accordance with the following procedure:\ni. Pursuant to a notice of mediation communicated by reasonable means by either You or the Licensor to the other, the dispute shall be submitted to non-binding mediation conducted in accordance with rules designated by the Licensor in the copyright notice published with the Work, or if none then in accordance with those communicated in the notice of mediation. The language used in the mediation proceedings shall be English unless otherwise agreed.\nii. If any such dispute has not been settled within 45 days following the date on which the notice of mediation is provided, either You or the Licensor may, pursuant to a notice of arbitration communicated by reasonable means to the other, elect to have the dispute referred to and finally determined by arbitration. The arbitration shall be conducted in accordance with the rules designated by the Licensor in the copyright notice published with the Work, or if none then in accordance with the UNCITRAL Arbitration Rules as then in force. The arbitral tribunal shall consist of a sole arbitrator and the language of the proceedings shall be English unless otherwise agreed. The place of arbitration shall be where the Licensor has its headquarters. The arbitral proceedings shall be conducted remotely (e.g., via telephone conference or written submissions) whenever practicable.\niii. Interpretation of this License in any dispute submitted to mediation or arbitration shall be as set forth in Section 8(e), above.\nCreative Commons Notice\n\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of the Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License.\n\nCreative Commons may be contacted at https://creativecommons.org/.", + "json": "cc-by-nc-nd-3.0-igo.json", + "yaml": "cc-by-nc-nd-3.0-igo.yml", + "html": "cc-by-nc-nd-3.0-igo.html", + "license": "cc-by-nc-nd-3.0-igo.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-4.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-NonCommercial-NoDerivatives 4.0 International\n\n=======================================================================\n\nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide legal services or legal advice. Distribution of\nCreative Commons public licenses does not create a lawyer-client or\nother relationship. Creative Commons makes its licenses and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\nwarranties regarding its licenses, any material licensed under their\nterms and conditions, or any related information. Creative Commons\ndisclaims all liability for damages resulting from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\nCreative Commons public licenses provide a standard set of terms and\nconditions that creators and other rights holders may use to share\noriginal works of authorship and other material subject to copyright\nand certain other rights specified in the public license below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive, and do not form part of our licenses.\n\n Considerations for licensors: Our public licenses are\n intended for use by those authorized to give the public\n permission to use material in ways otherwise restricted by\n copyright and certain other rights. Our licenses are\n irrevocable. Licensors should read and understand the terms\n and conditions of the license they choose before applying it.\n Licensors should also secure all rights necessary before\n applying our licenses so that the public can reuse the\n material as expected. Licensors should clearly mark any\n material not subject to the license. This includes other CC-\n licensed material, or material used under an exception or\n limitation to copyright. More considerations for licensors:\n\twiki.creativecommons.org/Considerations_for_licensors\n\n Considerations for the public: By using one of our public\n licenses, a licensor grants the public permission to use the\n licensed material under specified terms and conditions. If\n the licensor's permission is not necessary for any reason--for\n example, because of any applicable exception or limitation to\n copyright--then that use is not regulated by the license. Our\n licenses grant only permissions under copyright and certain\n other rights that a licensor has authority to grant. Use of\n the licensed material may still be restricted for other\n reasons, including because others have copyright or other\n rights in the material. A licensor may make special requests,\n such as asking that all changes be marked or described.\n Although not required by our licenses, you are encouraged to\n respect those requests where reasonable. More considerations\n for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\nCreative Commons Attribution-NonCommercial-NoDerivatives 4.0\nInternational Public License\n\nBy exercising the Licensed Rights (defined below), You accept and agree\nto be bound by the terms and conditions of this Creative Commons\nAttribution-NonCommercial-NoDerivatives 4.0 International Public\nLicense (\"Public License\"). To the extent this Public License may be\ninterpreted as a contract, You are granted the Licensed Rights in\nconsideration of Your acceptance of these terms and conditions, and the\nLicensor grants You such rights in consideration of benefits the\nLicensor receives from making the Licensed Material available under\nthese terms and conditions.\n\n\nSection 1 -- Definitions.\n\n a. Adapted Material means material subject to Copyright and Similar\n Rights that is derived from or based upon the Licensed Material\n and in which the Licensed Material is translated, altered,\n arranged, transformed, or otherwise modified in a manner requiring\n permission under the Copyright and Similar Rights held by the\n Licensor. For purposes of this Public License, where the Licensed\n Material is a musical work, performance, or sound recording,\n Adapted Material is always produced where the Licensed Material is\n synched in timed relation with a moving image.\n\n b. Copyright and Similar Rights means copyright and/or similar rights\n closely related to copyright including, without limitation,\n performance, broadcast, sound recording, and Sui Generis Database\n Rights, without regard to how the rights are labeled or\n categorized. For purposes of this Public License, the rights\n specified in Section 2(b)(1)-(2) are not Copyright and Similar\n Rights.\n\n c. Effective Technological Measures means those measures that, in the\n absence of proper authority, may not be circumvented under laws\n fulfilling obligations under Article 11 of the WIPO Copyright\n Treaty adopted on December 20, 1996, and/or similar international\n agreements.\n\n d. Exceptions and Limitations means fair use, fair dealing, and/or\n any other exception or limitation to Copyright and Similar Rights\n that applies to Your use of the Licensed Material.\n\n e. Licensed Material means the artistic or literary work, database,\n or other material to which the Licensor applied this Public\n License.\n\n f. Licensed Rights means the rights granted to You subject to the\n terms and conditions of this Public License, which are limited to\n all Copyright and Similar Rights that apply to Your use of the\n Licensed Material and that the Licensor has authority to license.\n\n g. Licensor means the individual(s) or entity(ies) granting rights\n under this Public License.\n\n h. NonCommercial means not primarily intended for or directed towards\n commercial advantage or monetary compensation. For purposes of\n this Public License, the exchange of the Licensed Material for\n other material subject to Copyright and Similar Rights by digital\n file-sharing or similar means is NonCommercial provided there is\n no payment of monetary compensation in connection with the\n exchange.\n\n i. Share means to provide material to the public by any means or\n process that requires permission under the Licensed Rights, such\n as reproduction, public display, public performance, distribution,\n dissemination, communication, or importation, and to make material\n available to the public including in ways that members of the\n public may access the material from a place and at a time\n individually chosen by them.\n\n j. Sui Generis Database Rights means rights other than copyright\n resulting from Directive 96/9/EC of the European Parliament and of\n the Council of 11 March 1996 on the legal protection of databases,\n as amended and/or succeeded, as well as other essentially\n equivalent rights anywhere in the world.\n\n k. You means the individual or entity exercising the Licensed Rights\n under this Public License. Your has a corresponding meaning.\n\n\nSection 2 -- Scope.\n\n a. License grant.\n\n 1. Subject to the terms and conditions of this Public License,\n the Licensor hereby grants You a worldwide, royalty-free,\n non-sublicensable, non-exclusive, irrevocable license to\n exercise the Licensed Rights in the Licensed Material to:\n\n a. reproduce and Share the Licensed Material, in whole or\n in part, for NonCommercial purposes only; and\n\n b. produce and reproduce, but not Share, Adapted Material\n for NonCommercial purposes only.\n\n 2. Exceptions and Limitations. For the avoidance of doubt, where\n Exceptions and Limitations apply to Your use, this Public\n License does not apply, and You do not need to comply with\n its terms and conditions.\n\n 3. Term. The term of this Public License is specified in Section\n 6(a).\n\n 4. Media and formats; technical modifications allowed. The\n Licensor authorizes You to exercise the Licensed Rights in\n all media and formats whether now known or hereafter created,\n and to make technical modifications necessary to do so. The\n Licensor waives and/or agrees not to assert any right or\n authority to forbid You from making technical modifications\n necessary to exercise the Licensed Rights, including\n technical modifications necessary to circumvent Effective\n Technological Measures. For purposes of this Public License,\n simply making modifications authorized by this Section 2(a)\n (4) never produces Adapted Material.\n\n 5. Downstream recipients.\n\n a. Offer from the Licensor -- Licensed Material. Every\n recipient of the Licensed Material automatically\n receives an offer from the Licensor to exercise the\n Licensed Rights under the terms and conditions of this\n Public License.\n\n b. No downstream restrictions. You may not offer or impose\n any additional or different terms or conditions on, or\n apply any Effective Technological Measures to, the\n Licensed Material if doing so restricts exercise of the\n Licensed Rights by any recipient of the Licensed\n Material.\n\n 6. No endorsement. Nothing in this Public License constitutes or\n may be construed as permission to assert or imply that You\n are, or that Your use of the Licensed Material is, connected\n with, or sponsored, endorsed, or granted official status by,\n the Licensor or others designated to receive attribution as\n provided in Section 3(a)(1)(A)(i).\n\n b. Other rights.\n\n 1. Moral rights, such as the right of integrity, are not\n licensed under this Public License, nor are publicity,\n privacy, and/or other similar personality rights; however, to\n the extent possible, the Licensor waives and/or agrees not to\n assert any such rights held by the Licensor to the limited\n extent necessary to allow You to exercise the Licensed\n Rights, but not otherwise.\n\n 2. Patent and trademark rights are not licensed under this\n Public License.\n\n 3. To the extent possible, the Licensor waives any right to\n collect royalties from You for the exercise of the Licensed\n Rights, whether directly or through a collecting society\n under any voluntary or waivable statutory or compulsory\n licensing scheme. In all other cases the Licensor expressly\n reserves any right to collect such royalties, including when\n the Licensed Material is used other than for NonCommercial\n purposes.\n\n\nSection 3 -- License Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the\nfollowing conditions.\n\n a. Attribution.\n\n 1. If You Share the Licensed Material, You must:\n\n a. retain the following if it is supplied by the Licensor\n with the Licensed Material:\n\n i. identification of the creator(s) of the Licensed\n Material and any others designated to receive\n attribution, in any reasonable manner requested by\n the Licensor (including by pseudonym if\n designated);\n\n ii. a copyright notice;\n\n iii. a notice that refers to this Public License;\n\n iv. a notice that refers to the disclaimer of\n warranties;\n\n v. a URI or hyperlink to the Licensed Material to the\n extent reasonably practicable;\n\n b. indicate if You modified the Licensed Material and\n retain an indication of any previous modifications; and\n\n c. indicate the Licensed Material is licensed under this\n Public License, and include the text of, or the URI or\n hyperlink to, this Public License.\n\n For the avoidance of doubt, You do not have permission under\n this Public License to Share Adapted Material.\n\n 2. You may satisfy the conditions in Section 3(a)(1) in any\n reasonable manner based on the medium, means, and context in\n which You Share the Licensed Material. For example, it may be\n reasonable to satisfy the conditions by providing a URI or\n hyperlink to a resource that includes the required\n information.\n\n 3. If requested by the Licensor, You must remove any of the\n information required by Section 3(a)(1)(A) to the extent\n reasonably practicable.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database Rights that\napply to Your use of the Licensed Material:\n\n a. for the avoidance of doubt, Section 2(a)(1) grants You the right\n to extract, reuse, reproduce, and Share all or a substantial\n portion of the contents of the database for NonCommercial purposes\n only and provided You do not Share Adapted Material;\n\n b. if You include all or a substantial portion of the database\n contents in a database in which You have Sui Generis Database\n Rights, then the database in which You have Sui Generis Database\n Rights (but not its individual contents) is Adapted Material; and\n\n c. You must comply with the conditions in Section 3(a) if You Share\n all or a substantial portion of the contents of the database.\n\nFor the avoidance of doubt, this Section 4 supplements and does not\nreplace Your obligations under this Public License where the Licensed\nRights include other Copyright and Similar Rights.\n\n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\n a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\n PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\n b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE\n TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\n COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR\n USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR\n IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.\n\n c. The disclaimer of warranties and limitation of liability provided\n above shall be interpreted in a manner that, to the extent\n possible, most closely approximates an absolute disclaimer and\n waiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\n a. This Public License applies for the term of the Copyright and\n Similar Rights licensed here. However, if You fail to comply with\n this Public License, then Your rights under this Public License\n terminate automatically.\n\n b. Where Your right to use the Licensed Material has terminated under\n Section 6(a), it reinstates:\n\n 1. automatically as of the date the violation is cured, provided\n it is cured within 30 days of Your discovery of the\n violation; or\n\n 2. upon express reinstatement by the Licensor.\n\n For the avoidance of doubt, this Section 6(b) does not affect any\n right the Licensor may have to seek remedies for Your violations\n of this Public License.\n\n c. For the avoidance of doubt, the Licensor may also offer the\n Licensed Material under separate terms or conditions or stop\n distributing the Licensed Material at any time; however, doing so\n will not terminate this Public License.\n\n d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n License.\n\n\nSection 7 -- Other Terms and Conditions.\n\n a. The Licensor shall not be bound by any additional or different\n terms or conditions communicated by You unless expressly agreed.\n\n b. Any arrangements, understandings, or agreements regarding the\n Licensed Material not stated herein are separate from and\n independent of the terms and conditions of this Public License.\n\n\nSection 8 -- Interpretation.\n\n a. For the avoidance of doubt, this Public License does not, and\n shall not be interpreted to, reduce, limit, restrict, or impose\n conditions on any use of the Licensed Material that could lawfully\n be made without permission under this Public License.\n\n b. To the extent possible, if any provision of this Public License is\n deemed unenforceable, it shall be automatically reformed to the\n minimum extent necessary to make it enforceable. If the provision\n cannot be reformed, it shall be severed from this Public License\n without affecting the enforceability of the remaining terms and\n conditions.\n\n c. No term or condition of this Public License will be waived and no\n failure to comply consented to unless expressly agreed to by the\n Licensor.\n\n d. Nothing in this Public License constitutes or may be interpreted\n as a limitation upon, or waiver of, any privileges and immunities\n that apply to the Licensor or You, including from the legal\n processes of any jurisdiction or authority.\n\n=======================================================================\n\nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons may elect to apply one of\nits public licenses to material it publishes and in those instances\nwill be considered the \u201cLicensor.\u201d The text of the Creative Commons\npublic licenses is dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the limited purpose of indicating that\nmaterial is shared under a Creative Commons public license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies, Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or any other trademark or logo\nof Creative Commons without its prior written consent including,\nwithout limitation, in connection with any unauthorized modifications\nto any of its public licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic licenses.\n\nCreative Commons may be contacted at creativecommons.org.", + "json": "cc-by-nc-nd-4.0.json", + "yaml": "cc-by-nc-nd-4.0.yml", + "html": "cc-by-nc-nd-4.0.html", + "license": "cc-by-nc-nd-4.0.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-1.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-NonCommercial-ShareAlike 1.0\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto create and reproduce Derivative Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works;\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.\n\n4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested.\nYou may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License.\nYou may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., \"French translation of the Work by Original Author,\" or \"Screenplay based on original Work by Original Author\"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\n5. Representations, Warranties and Disclaimer\n\nBy offering the Work for public release under this License, Licensor represents and warrants that, to the best of Licensor's knowledge after reasonable inquiry:\nLicensor has secured all rights in the Work necessary to grant the license rights hereunder and to permit the lawful exercise of the rights granted hereunder without You having any obligation to pay any royalties, compulsory license fees, residuals or any other payments;\nThe Work does not infringe the copyright, trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party.\nEXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF THE WORK.\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nEach time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", + "json": "cc-by-nc-sa-1.0.json", + "yaml": "cc-by-nc-sa-1.0.yml", + "html": "cc-by-nc-sa-1.0.html", + "license": "cc-by-nc-sa-1.0.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-2.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-NonCommercial-ShareAlike 2.0\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this License.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n\"License Elements\" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, Noncommercial, ShareAlike.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto create and reproduce Derivative Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works;\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved, including but not limited to the rights set forth in Sections 4(e) and 4(f).\n\n4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested.\nYou may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, a later version of this License with the same License Elements as this License, or a Creative Commons iCommons license that contains the same License Elements as this License (e.g. Attribution-NonCommercial-ShareAlike 2.0 Japan). You must include a copy of, or the Uniform Resource Identifier for, this License or other license specified in the previous sentence with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License.\nYou may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., \"French translation of the Work by Original Author,\" or \"Screenplay based on original Work by Original Author\"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\nFor the avoidance of doubt, where the Work is a musical composition:\n\nPerformance Royalties Under Blanket Licenses. Licensor reserves the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work if that performance is primarily intended for or directed toward commercial advantage or private monetary compensation.\nMechanical Rights and Statutory Royalties. Licensor reserves the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work (\"cover version\") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions), if Your distribution of such cover version is primarily intended for or directed toward commercial advantage or private monetary compensation.\nWebcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor reserves the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions), if Your public digital performance is primarily intended for or directed toward commercial advantage or private monetary compensation.\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nEach time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", + "json": "cc-by-nc-sa-2.0.json", + "yaml": "cc-by-nc-sa-2.0.yml", + "html": "cc-by-nc-sa-2.0.html", + "license": "cc-by-nc-sa-2.0.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-2.0-fr", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-2.0-FR", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Paternit\u00e9 - Pas d'Utilisation Commerciale - Partage Des Conditions Initiales A l'Identique 2.0\n\n Creative Commons n'est pas un cabinet d'avocats et ne fournit pas de services de conseil juridique. La distribution de la pr\u00e9sente version de ce contrat ne cr\u00e9e aucune relation juridique entre les parties au contrat pr\u00e9sent\u00e9 ci-apr\u00e8s et Creative Commons. Creative Commons fournit cette offre de contrat-type en l'\u00e9tat, \u00e0 seule fin d'information. Creative Commons ne saurait \u00eatre tenu responsable des \u00e9ventuels pr\u00e9judices r\u00e9sultant du contenu ou de l'utilisation de ce contrat.\n\nContrat\n\nL'Oeuvre (telle que d\u00e9finie ci-dessous) est mise \u00e0 disposition selon les termes du pr\u00e9sent contrat appel\u00e9 Contrat Public Creative Commons (d\u00e9nomm\u00e9 ici \u00ab CPCC \u00bb ou \u00ab Contrat \u00bb). L'Oeuvre est prot\u00e9g\u00e9e par le droit de la propri\u00e9t\u00e9 litt\u00e9raire et artistique (droit d'auteur, droits voisins, droits des producteurs de bases de donn\u00e9es) ou toute autre loi applicable. Toute utilisation de l'Oeuvre autrement qu'explicitement autoris\u00e9e selon ce Contrat ou le droit applicable est interdite.\n\nL'exercice sur l'Oeuvre de tout droit propos\u00e9 par le pr\u00e9sent contrat vaut acceptation de celui-ci. Selon les termes et les obligations du pr\u00e9sent contrat, la partie Offrante propose \u00e0 la partie Acceptante l'exercice de certains droits pr\u00e9sent\u00e9s ci-apr\u00e8s, et l'Acceptant en approuve les termes et conditions d'utilisation.\n\n1. D\u00e9finitions\n\n a. \u00ab Oeuvre \u00bb : oeuvre de l'esprit prot\u00e9geable par le droit de la propri\u00e9t\u00e9 litt\u00e9raire et artistique ou toute loi applicable et qui est mise \u00e0 disposition selon les termes du pr\u00e9sent Contrat.\n\n b. \u00ab Oeuvre dite Collective \u00bb : une oeuvre dans laquelle l'oeuvre, dans sa forme int\u00e9grale et non modifi\u00e9e, est assembl\u00e9e en un ensemble collectif avec d'autres contributions qui constituent en elles-m\u00eames des oeuvres s\u00e9par\u00e9es et ind\u00e9pendantes. Constituent notamment des Oeuvres dites Collectives les publications p\u00e9riodiques, les anthologies ou les encyclop\u00e9dies. Aux termes de la pr\u00e9sente autorisation, une oeuvre qui constitue une Oeuvre dite Collective ne sera pas consid\u00e9r\u00e9e comme une Oeuvre dite D\u00e9riv\u00e9e (telle que d\u00e9finie ci-apr\u00e8s).\n\n c. \u00ab Oeuvre dite D\u00e9riv\u00e9e \u00bb : une oeuvre cr\u00e9\u00e9e soit \u00e0 partir de l'Oeuvre seule, soit \u00e0 partir de l'Oeuvre et d'autres oeuvres pr\u00e9existantes. Constituent notamment des Oeuvres dites D\u00e9riv\u00e9es les traductions, les arrangements musicaux, les adaptations th\u00e9\u00e2trales, litt\u00e9raires ou cin\u00e9matographiques, les enregistrements sonores, les reproductions par un art ou un proc\u00e9d\u00e9 quelconque, les r\u00e9sum\u00e9s, ou toute autre forme sous laquelle l'Oeuvre puisse \u00eatre remani\u00e9e, modifi\u00e9e, transform\u00e9e ou adapt\u00e9e, \u00e0 l'exception d'une oeuvre qui constitue une Oeuvre dite Collective. Une Oeuvre dite Collective ne sera pas consid\u00e9r\u00e9e comme une Oeuvre dite D\u00e9riv\u00e9e aux termes du pr\u00e9sent Contrat. Dans le cas o\u00f9 l'Oeuvre serait une composition musicale ou un enregistrement sonore, la synchronisation de l'oeuvre avec une image anim\u00e9e sera consid\u00e9r\u00e9e comme une Oeuvre dite D\u00e9riv\u00e9e pour les propos de ce Contrat.\n\n d. \u00ab Auteur original \u00bb : la ou les personnes physiques qui ont cr\u00e9\u00e9 l'Oeuvre.\n\n e. \u00ab Offrant \u00bb : la ou les personne(s) physique(s) ou morale(s) qui proposent la mise \u00e0 disposition de l'Oeuvre selon les termes du pr\u00e9sent Contrat.\n\n f. \u00ab Acceptant \u00bb : la personne physique ou morale qui accepte le pr\u00e9sent contrat et exerce des droits sans en avoir viol\u00e9 les termes au pr\u00e9alable ou qui a re\u00e7u l'autorisation expresse de l'Offrant d'exercer des droits dans le cadre du pr\u00e9sent contrat malgr\u00e9 une pr\u00e9c\u00e9dente violation de ce contrat.\n\n g. \u00ab Options du Contrat \u00bb : les attributs g\u00e9n\u00e9riques du Contrat tels qu'ils ont \u00e9t\u00e9 choisis par l'Offrant et indiqu\u00e9s dans le titre de ce Contrat : Paternit\u00e9 - Pas d'Utilisation Commerciale - Partage Des Conditions Initiales A l'Identique.\n\n2. Exceptions aux droits exclusifs. Aucune disposition de ce contrat n'a pour intention de r\u00e9duire, limiter ou restreindre les pr\u00e9rogatives issues des exceptions aux droits, de l'\u00e9puisement des droits ou d'autres limitations aux droits exclusifs des ayants droit selon le droit de la propri\u00e9t\u00e9 litt\u00e9raire et artistique ou les autres lois applicables.\n\n3. Autorisation. Soumis aux termes et conditions d\u00e9finis dans cette autorisation, et ceci pendant toute la dur\u00e9e de protection de l'Oeuvre par le droit de la propri\u00e9t\u00e9 litt\u00e9raire et artistique ou le droit applicable, l'Offrant accorde \u00e0 l'Acceptant l'autorisation mondiale d'exercer \u00e0 titre gratuit et non exclusif les droits suivants :\n\n a. reproduire l'Oeuvre, incorporer l'Oeuvre dans une ou plusieurs Oeuvres dites Collectives et reproduire l'Oeuvre telle qu'incorpor\u00e9e dans lesdites Oeuvres dites Collectives;\n\n b. cr\u00e9er et reproduire des Oeuvres dites D\u00e9riv\u00e9es;\n\n c. distribuer des exemplaires ou enregistrements, pr\u00e9senter, repr\u00e9senter ou communiquer l'Oeuvre au public par tout proc\u00e9d\u00e9 technique, y compris incorpor\u00e9e dans des Oeuvres Collectives;\n\n d. distribuer des exemplaires ou phonogrammes, pr\u00e9senter, repr\u00e9senter ou communiquer au public des Oeuvres dites D\u00e9riv\u00e9es par tout proc\u00e9d\u00e9 technique;\n\n e. lorsque l'Oeuvre est une base de donn\u00e9es, extraire et r\u00e9utiliser des parties substantielles de l'Oeuvre.\n\nLes droits mentionn\u00e9s ci-dessus peuvent \u00eatre exerc\u00e9s sur tous les supports, m\u00e9dias, proc\u00e9d\u00e9s techniques et formats. Les droits ci-dessus incluent le droit d'effectuer les modifications n\u00e9cessaires techniquement \u00e0 l'exercice des droits dans d'autres formats et proc\u00e9d\u00e9s techniques. L'exercice de tous les droits qui ne sont pas express\u00e9ment autoris\u00e9s par l'Offrant ou dont il n'aurait pas la gestion demeure r\u00e9serv\u00e9, notamment les m\u00e9canismes de gestion collective obligatoire applicables d\u00e9crits \u00e0 l'article 4(e).\n\n4. Restrictions. L'autorisation accord\u00e9e par l'article 3 est express\u00e9ment assujettie et limit\u00e9e par le respect des restrictions suivantes :\n\n\n a. L'Acceptant peut reproduire, distribuer, repr\u00e9senter ou communiquer au public l'Oeuvre y compris par voie num\u00e9rique uniquement selon les termes de ce Contrat. L'Acceptant doit inclure une copie ou l'adresse Internet (Identifiant Uniforme de Ressource) du pr\u00e9sent Contrat \u00e0 toute reproduction ou enregistrement de l'Oeuvre que l'Acceptant distribue, repr\u00e9sente ou communique au public y compris par voie num\u00e9rique. L'Acceptant ne peut pas offrir ou imposer de conditions d'utilisation de l'Oeuvre qui alt\u00e8rent ou restreignent les termes du pr\u00e9sent Contrat ou l'exercice des droits qui y sont accord\u00e9s au b\u00e9n\u00e9ficiaire. L'Acceptant ne peut pas c\u00e9der de droits sur l'Oeuvre. L'Acceptant doit conserver intactes toutes les informations qui renvoient \u00e0 ce Contrat et \u00e0 l'exon\u00e9ration de responsabilit\u00e9. L'Acceptant ne peut pas reproduire, distribuer, repr\u00e9senter ou communiquer au public l'Oeuvre, y compris par voie num\u00e9rique, en utilisant une mesure technique de contr\u00f4le d'acc\u00e8s ou de contr\u00f4le d'utilisation qui serait contradictoire avec les termes de cet Accord contractuel. Les mentions ci-dessus s'appliquent \u00e0 l'Oeuvre telle qu'incorpor\u00e9e dans une Oeuvre dite Collective, mais, en dehors de l'Oeuvre en elle-m\u00eame, ne soumettent pas l'Oeuvre dite Collective, aux termes du pr\u00e9sent Contrat. Si l'Acceptant cr\u00e9e une Oeuvre dite Collective, \u00e0 la demande de tout Offrant, il devra, dans la mesure du possible, retirer de l'Oeuvre dite Collective toute r\u00e9f\u00e9rence au dit Offrant, comme demand\u00e9. Si l'Acceptant cr\u00e9e une Oeuvre dite Collective, \u00e0 la demande de tout Auteur, il devra, dans la mesure du possible, retirer de l'Oeuvre dite Collective toute r\u00e9f\u00e9rence au dit Auteur, comme demand\u00e9. Si l'Acceptant cr\u00e9e une Oeuvre dite D\u00e9riv\u00e9e, \u00e0 la demande de tout Offrant, il devra, dans la mesure du possible, retirer de l'Oeuvre dite D\u00e9riv\u00e9e toute r\u00e9f\u00e9rence au dit Offrant, comme demand\u00e9. Si l'Acceptant cr\u00e9e une Oeuvre dite D\u00e9riv\u00e9e, \u00e0 la demande de tout Auteur, il devra, dans la mesure du possible, retirer de l'Oeuvre dite D\u00e9riv\u00e9e toute r\u00e9f\u00e9rence au dit Auteur, comme demand\u00e9.\n\n b. L'Acceptant peut reproduire, distribuer, repr\u00e9senter ou communiquer au public une Oeuvre dite D\u00e9riv\u00e9e y compris par voie num\u00e9rique uniquement sous les termes de ce Contrat, ou d'une version ult\u00e9rieure de ce Contrat comprenant les m\u00eames Options du Contrat que le pr\u00e9sent Contrat, ou un Contrat Creative Commons iCommons comprenant les m\u00eames Options du Contrat que le pr\u00e9sent Contrat (par exemple Paternit\u00e9 - Pas d'Utilisation Commerciale - Partage Des Conditions Initiales A l'Identique 2.0 Japon). L'Acceptant doit inclure une copie ou l'adresse Internet (Identifiant Uniforme de Ressource) du pr\u00e9sent Contrat, ou d'un autre Contrat tel que d\u00e9crit \u00e0 la phrase pr\u00e9c\u00e9dente, \u00e0 toute reproduction ou enregistrement de l'Oeuvre dite D\u00e9riv\u00e9e que l'Acceptant distribue, repr\u00e9sente ou communique au public y compris par voie num\u00e9rique. L'Acceptant ne peut pas offrir ou imposer de conditions d'utilisation sur l'Oeuvre dite D\u00e9riv\u00e9e qui alt\u00e8rent ou restreignent les termes du pr\u00e9sent Contrat ou l'exercice des droits qui y sont accord\u00e9s au b\u00e9n\u00e9ficiaire, et doit conserver intactes toutes les informations qui renvoient \u00e0 ce Contrat et \u00e0 l'avertissement sur les garanties. L'Acceptant ne peut pas reproduire, distribuer, repr\u00e9senter ou communiquer au public y compris par voie num\u00e9rique l'Oeuvre dite D\u00e9riv\u00e9e en utilisant une mesure technique de contr\u00f4le d'acc\u00e8s ou de contr\u00f4le d'utilisation qui serait contradictoire avec les termes de cet Accord contractuel. Les mentions ci-dessus s'appliquent \u00e0 l'Oeuvre dite D\u00e9riv\u00e9e telle qu'incorpor\u00e9e dans une Oeuvre dite Collective, mais, en dehors de l'Oeuvre dite D\u00e9riv\u00e9e en elle-m\u00eame, ne soumettent pas l'Oeuvre Collective, aux termes du pr\u00e9sent Contrat.\n\n c. L'Acceptant ne peut exercer aucun des droits conf\u00e9r\u00e9s par l'article 3 avec l'intention ou l'objectif d'obtenir un profit commercial ou une compensation financi\u00e8re personnelle. L'\u00e9change de l'Oeuvre avec d'autres Oeuvres prot\u00e9g\u00e9es par le droit de la propri\u00e9t\u00e9 litt\u00e9raire et artistique par le partage \u00e9lectronique de fichiers, ou par tout autre moyen, n'est pas consid\u00e9r\u00e9 comme un \u00e9change avec l'intention ou l'objectif d'un profit commercial ou d'une compensation financi\u00e8re personnelle, dans la mesure o\u00f9 aucun paiement ou compensation financi\u00e8re n'intervient en relation avec l'\u00e9change d'Oeuvres prot\u00e9g\u00e9es.\n\n d. Si l'Acceptant reproduit, distribue, repr\u00e9sente ou communique au public, y compris par voie num\u00e9rique, l'Oeuvre ou toute Oeuvre dite D\u00e9riv\u00e9e ou toute Oeuvre dite Collective, il doit conserver intactes toutes les informations sur le r\u00e9gime des droits et en attribuer la paternit\u00e9 \u00e0 l'Auteur Original, de mani\u00e8re raisonnable au regard au m\u00e9dium ou au moyen utilis\u00e9. Il doit communiquer le nom de l'Auteur Original ou son \u00e9ventuel pseudonyme s'il est indiqu\u00e9 ; le titre de l'Oeuvre Originale s'il est indiqu\u00e9 ; dans la mesure du possible, l'adresse Internet ou Identifiant Uniforme de Ressource (URI), s'il existe, sp\u00e9cifi\u00e9 par l'Offrant comme associ\u00e9 \u00e0 l'Oeuvre, \u00e0 moins que cette adresse ne renvoie pas aux informations l\u00e9gales (paternit\u00e9 et conditions d'utilisation de l'Oeuvre). Dans le cas d'une Oeuvre dite D\u00e9riv\u00e9e, il doit indiquer les \u00e9l\u00e9ments identifiant l'utilisation l'Oeuvre dans l'Oeuvre dite D\u00e9riv\u00e9e par exemple \u00ab Traduction anglaise de l'Oeuvre par l'Auteur Original \u00bb ou \u00ab Sc\u00e9nario bas\u00e9 sur l'Oeuvre par l'Auteur Original \u00bb. Ces obligations d'attribution de paternit\u00e9 doivent \u00eatre ex\u00e9cut\u00e9es de mani\u00e8re raisonnable. Cependant, dans le cas d'une Oeuvre dite D\u00e9riv\u00e9e ou d'une Oeuvre dite Collective, ces informations doivent, au minimum, appara\u00eetre \u00e0 la place et de mani\u00e8re aussi visible que celles \u00e0 laquelle apparaissent les informations de m\u00eame nature.\n\n e. Dans le cas o\u00f9 une utilisation de l'Oeuvre serait soumise \u00e0 un r\u00e9gime l\u00e9gal de gestion collective obligatoire, l'Offrant se r\u00e9serve le droit exclusif de collecter ces redevances par l'interm\u00e9diaire de la soci\u00e9t\u00e9 de perception et de r\u00e9partition des droits comp\u00e9tente. Sont notamment concern\u00e9s la radiodiffusion et la communication dans un lieu public de phonogrammes publi\u00e9s \u00e0 des fins de commerce, certains cas de retransmission par c\u00e2ble et satellite, la copie priv\u00e9e d'Oeuvres fix\u00e9es sur phonogrammes ou vid\u00e9ogrammes, la reproduction par reprographie.\n\n5. Garantie et exon\u00e9ration de responsabilit\u00e9\n\n\n a. En mettant l'Oeuvre \u00e0 la disposition du public selon les termes de ce Contrat, l'Offrant d\u00e9clare de bonne foi qu'\u00e0 sa connaissance et dans les limites d'une enqu\u00eate raisonnable :\n\n i. L'Offrant a obtenu tous les droits sur l'Oeuvre n\u00e9cessaires pour pouvoir autoriser l'exercice des droits accord\u00e9s par le pr\u00e9sent Contrat, et permettre la jouissance paisible et l'exercice licite de ces droits, ceci sans que l'Acceptant n'ait aucune obligation de verser de r\u00e9mun\u00e9ration ou tout autre paiement ou droits, dans la limite des m\u00e9canismes de gestion collective obligatoire applicables d\u00e9crits \u00e0 l'article 4(e);\n\n ii. L'Oeuvre n'est constitutive ni d'une violation des droits de tiers, notamment du droit de la propri\u00e9t\u00e9 litt\u00e9raire et artistique, du droit des marques, du droit de l'information, du droit civil ou de tout autre droit, ni de diffamation, de violation de la vie priv\u00e9e ou de tout autre pr\u00e9judice d\u00e9lictuel \u00e0 l'\u00e9gard de toute tierce partie.\n\n b. A l'exception des situations express\u00e9ment mentionn\u00e9es dans le pr\u00e9sent Contrat ou dans un autre accord \u00e9crit, ou exig\u00e9es par la loi applicable, l'Oeuvre est mise \u00e0 disposition en l'\u00e9tat sans garantie d'aucune sorte, qu'elle soit expresse ou tacite, y compris \u00e0 l'\u00e9gard du contenu ou de l'exactitude de l'Oeuvre.\n\n6. Limitation de responsabilit\u00e9. A l'exception des garanties d'ordre public impos\u00e9es par la loi applicable et des r\u00e9parations impos\u00e9es par le r\u00e9gime de la responsabilit\u00e9 vis-\u00e0-vis d'un tiers en raison de la violation des garanties pr\u00e9vues par l'article 5 du pr\u00e9sent contrat, l'Offrant ne sera en aucun cas tenu responsable vis-\u00e0-vis de l'Acceptant, sur la base d'aucune th\u00e9orie l\u00e9gale ni en raison d'aucun pr\u00e9judice direct, indirect, mat\u00e9riel ou moral, r\u00e9sultant de l'ex\u00e9cution du pr\u00e9sent Contrat ou de l'utilisation de l'Oeuvre, y compris dans l'hypoth\u00e8se o\u00f9 l'Offrant avait connaissance de la possible existence d'un tel pr\u00e9judice.\n\n7. R\u00e9siliation\n\n a. Tout manquement aux termes du contrat par l'Acceptant entra\u00eene la r\u00e9siliation automatique du Contrat et la fin des droits qui en d\u00e9coulent. Cependant, le contrat conserve ses effets envers les personnes physiques ou morales qui ont re\u00e7u de la part de l'Acceptant, en ex\u00e9cution du pr\u00e9sent contrat, la mise \u00e0 disposition d'Oeuvres dites D\u00e9riv\u00e9es, ou d'Oeuvres dites Collectives, ceci tant qu'elles respectent pleinement leurs obligations. Les sections 1, 2, 5, 6 et 7 du contrat continuent \u00e0 s'appliquer apr\u00e8s la r\u00e9siliation de celui-ci.\n\n b. Dans les limites indiqu\u00e9es ci-dessus, le pr\u00e9sent Contrat s'applique pendant toute la dur\u00e9e de protection de l'Oeuvre selon le droit applicable. N\u00e9anmoins, l'Offrant se r\u00e9serve \u00e0 tout moment le droit d'exploiter l'Oeuvre sous des conditions contractuelles diff\u00e9rentes, ou d'en cesser la diffusion; cependant, le recours \u00e0 cette option ne doit pas conduire \u00e0 retirer les effets du pr\u00e9sent Contrat (ou de tout contrat qui a \u00e9t\u00e9 ou doit \u00eatre accord\u00e9 selon les termes de ce Contrat), et ce Contrat continuera \u00e0 s'appliquer dans tous ses effets jusqu'\u00e0 ce que sa r\u00e9siliation intervienne dans les conditions d\u00e9crites ci-dessus.\n\n8. Divers\n\n a. A chaque reproduction ou communication au public par voie num\u00e9rique de l'Oeuvre ou d'une Oeuvre dite Collective par l'Acceptant, l'Offrant propose au b\u00e9n\u00e9ficiaire une offre de mise \u00e0 disposition de l'Oeuvre dans des termes et conditions identiques \u00e0 ceux accord\u00e9s \u00e0 la partie Acceptante dans le pr\u00e9sent Contrat.\n\n b. A chaque reproduction ou communication au public par voie num\u00e9rique d'une Oeuvre dite D\u00e9riv\u00e9e par l'Acceptant, l'Offrant propose au b\u00e9n\u00e9ficiaire une offre de mise \u00e0 disposition du b\u00e9n\u00e9ficiaire de l'Oeuvre originale dans des termes et conditions identiques \u00e0 ceux accord\u00e9s \u00e0 la partie Acceptante dans le pr\u00e9sent Contrat.\n\n c. La nullit\u00e9 ou l'inapplicabilit\u00e9 d'une quelconque disposition de ce Contrat au regard de la loi applicable n'affecte pas celle des autres dispositions qui resteront pleinement valides et applicables. Sans action additionnelle par les parties \u00e0 cet accord, lesdites dispositions devront \u00eatre interpr\u00e9t\u00e9es dans la mesure minimum n\u00e9cessaire \u00e0 leur validit\u00e9 et leur applicabilit\u00e9.\n\n d. Aucune limite, renonciation ou modification des termes ou dispositions du pr\u00e9sent Contrat ne pourra \u00eatre accept\u00e9e sans le consentement \u00e9crit et sign\u00e9 de la partie comp\u00e9tente.\n\n e. Ce Contrat constitue le seul accord entre les parties \u00e0 propos de l'Oeuvre mise ici \u00e0 disposition. Il n'existe aucun \u00e9l\u00e9ment annexe, accord suppl\u00e9mentaire ou mandat portant sur cette Oeuvre en dehors des \u00e9l\u00e9ments mentionn\u00e9s ici. L'Offrant ne sera tenu par aucune disposition suppl\u00e9mentaire qui pourrait appara\u00eetre dans une quelconque communication en provenance de l'Acceptant. Ce Contrat ne peut \u00eatre modifi\u00e9 sans l'accord mutuel \u00e9crit de l'Offrant et de l'Acceptant.\n\n f. Le droit applicable est le droit fran\u00e7ais.\n\nCreative Commons n'est pas partie \u00e0 ce Contrat et n'offre aucune forme de garantie relative \u00e0 l'Oeuvre. Creative Commons d\u00e9cline toute responsabilit\u00e9 \u00e0 l'\u00e9gard de l'Acceptant ou de toute autre partie, quel que soit le fondement l\u00e9gal de cette responsabilit\u00e9 et quel que soit le pr\u00e9judice subi, direct, indirect, mat\u00e9riel ou moral, qui surviendrait en rapport avec le pr\u00e9sent Contrat. Cependant, si Creative Commons s'est express\u00e9ment identifi\u00e9 comme Offrant pour mettre une Oeuvre \u00e0 disposition selon les termes de ce Contrat, Creative Commons jouira de tous les droits et obligations d'un Offrant.\n\nA l'exception des fins limit\u00e9es \u00e0 informer le public que l'Oeuvre est mise \u00e0 disposition sous CPCC, aucune des parties n'utilisera la marque \u00ab Creative Commons \u00bb ou toute autre indication ou logo aff\u00e9rent sans le consentement pr\u00e9alable \u00e9crit de Creative Commons. Toute utilisation autoris\u00e9e devra \u00eatre effectu\u00e9e en conformit\u00e9 avec les lignes directrices de Creative Commons \u00e0 jour au moment de l'utilisation, telles qu'elles sont disponibles sur son site Internet ou sur simple demande.\n\nCreative Commons peut \u00eatre contact\u00e9 \u00e0 https://creativecommons.org/.", + "json": "cc-by-nc-sa-2.0-fr.json", + "yaml": "cc-by-nc-sa-2.0-fr.yml", + "html": "cc-by-nc-sa-2.0-fr.html", + "license": "cc-by-nc-sa-2.0-fr.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-2.0-uk", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-2.0-UK", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Attribution - Non-Commercial - Share-Alike 2.0 England and Wales\n\n CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\n\nLicence\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENCE (\"CCPL\" OR \"LICENCE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENCE OR COPYRIGHT LAW IS PROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENCE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\nThis Creative Commons England and Wales Public Licence enables You (all capitalised terms defined below) to view, edit, modify, translate and distribute Works worldwide, under the terms of this licence, provided that You credit the Original Author.\n\n'The Licensor' [one or more legally recognised persons or entities offering the Work under the terms and conditions of this Licence]\n\nand\n\n'You'\n\nagree as follows:\n\n1. Definitions\n\n a. \"Attribution\" means acknowledging all the parties who have contributed to and have rights in the Work or Collective Work under this Licence.\n\n b. \"Collective Work\" means the Work in its entirety in unmodified form along with a number of other separate and independent works, assembled into a collective whole.\n\n c. \"Derivative Work\" means any work created by the editing, modification, adaptation or translation of the Work in any media (however a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this Licence). For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this Licence.\n\n d. \"Licence\" means this Creative Commons England and Wales Public Licence agreement.\n\n e. \"Licence Elements\" means the following high-level licence attributes indicated in the title of this Licence: Attribution, Non-Commercial, Share-Alike.\n\n f. \"Non-Commercial\" means \"not primarily intended for or directed towards commercial advantage or private monetary compensation\". The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed towards commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works.\n\n g. \"Original Author\" means the individual (or entity) who created the Work.\n\n h. \"Work\" means the work protected by copyright which is offered under the terms of this Licence.\n\nFor the purpose of this Licence, when not inconsistent with the context, words in the singular number include the plural number.\n\n2. Licence Terms\n\n2.1 The Licensor hereby grants to You a worldwide, royalty-free, non-exclusive, Licence for Non-Commercial use and for the duration of copyright in the Work.\n\nYou may:\n\n \u2022 copy the Work;\n\n \u2022 create one or more Derivative Works;\n\n \u2022 incorporate the Work into one or more Collective Works;\n\n \u2022 copy Derivative Works or the Work as incorporated in any Collective Work; and\n\n \u2022 publish, distribute, archive, perform or otherwise disseminate the Work or the Work as incorporated in any Collective Work, to the public in any material form in any media whether now known or hereafter created.\n\nHOWEVER,\n\nYou must not:\n\n \u2022 impose any terms on the use to be made of the Work, the Derivative Work or the Work as incorporated in a Collective Work that alter or restrict the terms of this Licence or any rights granted under it or has the effect or intent of restricting the ability to exercise those rights;\n\n \u2022 impose any digital rights management technology on the Work or the Work as incorporated in a Collective Work that alters or restricts the terms of this Licence or any rights granted under it or has the effect or intent of restricting the ability to exercise those rights;\n\n \u2022 sublicense the Work;\n\n \u2022 subject the Work to any derogatory treatment as defined in the Copyright, Designs and Patents Act 1988.\n\nFINALLY,\n\nYou must:\n\n \u2022 make reference to this Licence (by Uniform Resource Identifier (URI), spoken word or as appropriate to the media used) on all copies of the Work and Collective Works published, distributed, performed or otherwise disseminated or made available to the public by You;\n\n \u2022 recognise the Licensor's / Original Author's right of attribution in any Work and Collective Work that You publish, distribute, perform or otherwise disseminate to the public and ensure that You credit the Licensor / Original Author as appropriate to the media used; and\n\n \u2022 to the extent reasonably practicable, keep intact all notices that refer to this Licence, in particular the URI, if any, that the Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work.\n\nAdditional Provisions for third parties making use of the Work\n\n2.2. Further licence from the Licensor\n\nEach time You publish, distribute, perform or otherwise disseminate\n\n \u2022 the Work; or\n\n \u2022 any Derivative Work; or\n\n \u2022 the Work as incorporated in a Collective Work\n\nthe Licensor agrees to offer to the relevant third party making use of the Work (in any of the alternatives set out above) a licence to use the Work on the same terms and conditions as granted to You hereunder.\n\n2.3. Further licence from You\n\nEach time You publish, distribute, perform or otherwise disseminate\n\n \u2022 a Derivative Work; or\n\n \u2022 a Derivative Work as incorporated in a Collective Work\n\nYou agree to offer to the relevant third party making use of the Work (in either of the alternatives set out above) a licence to use the Derivative Work on any of the following premises:\n\n \u2022 a licence on the same terms and conditions as the licence granted to You hereunder; or\n\n \u2022 a later version of the licence granted to You hereunder; or\n\n \u2022 any other Creative Commons licence with the same Licence Elements.\n\n2.4. This Licence does not affect any rights that the User may have under any applicable law, including fair use, fair dealing or any other legally recognised limitation or exception to copyright infringement.\n\n2.5. All rights not expressly granted by the Licensor are hereby reserved, including but not limited to, the exclusive right to collect, whether individually or via a licensing body, such as a collecting society, royalties for any use of the Work which results in commercial advantage or private monetary compensation.\n\n3. Warranties and Disclaimer\n\nExcept as required by law, the Work is licensed by the Licensor on an \"as is\" and \"as available\" basis and without any warranty of any kind, either express or implied.\n\n4. Limit of Liability\n\nSubject to any liability which may not be excluded or limited by law the Licensor shall not be liable and hereby expressly excludes all liability for loss or damage howsoever and whenever caused to You.\n\n5. Termination\n\nThe rights granted to You under this Licence shall terminate automatically upon any breach by You of the terms of this Licence. Individuals or entities who have received Collective Works from You under this Licence, however, will not have their Licences terminated provided such individuals or entities remain in full compliance with those Licences.\n\n6. General\n\n6.1. The validity or enforceability of the remaining terms of this agreement is not affected by the holding of any provision of it to be invalid or unenforceable.\n\n6.2. This Licence constitutes the entire Licence Agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. The Licensor shall not be bound by any additional provisions that may appear in any communication in any form.\n\n6.3. A person who is not a party to this Licence shall have no rights under the Contracts (Rights of Third Parties) Act 1999 to enforce any of its terms.\n\n6.4. This Licence shall be governed by the law of England and Wales and the parties irrevocably submit to the exclusive jurisdiction of the Courts of England and Wales.\n\n7. On the role of Creative Commons\n\n7.1. Neither the Licensor nor the User may use the Creative Commons logo except to indicate that the Work is licensed under a Creative Commons Licence. Any permitted use has to be in compliance with the Creative Commons trade mark usage guidelines at the time of use of the Creative Commons trade mark. These guidelines may be found on the Creative Commons website or be otherwise available upon request from time to time.\n\n7.2. Creative Commons Corporation does not profit financially from its role in providing this Licence and will not investigate the claims of any Licensor or user of the Licence.\n\n7.3. One of the conditions that Creative Commons Corporation requires of the Licensor and You is an acknowledgement of its limited role and agreement by all who use the Licence that the Corporation is not responsible to anyone for the statements and actions of You or the Licensor or anyone else attempting to use or using this Licence.\n\n7.4. Creative Commons Corporation is not a party to this Licence, and makes no warranty whatsoever in connection to the Work or in connection to the Licence, and in all events is not liable for any loss or damage resulting from the Licensor's or Your reliance on this Licence or on its enforceability.\n\n7.5. USE OF THIS LICENCE MEANS THAT YOU AND THE LICENSOR EACH ACCEPTS THESE CONDITIONS IN SECTION 7.1, 7.2, 7.3, 7.4 AND EACH ACKNOWLEDGES CREATIVE COMMONS CORPORATION'S VERY LIMITED ROLE AS A FACILITATOR OF THE LICENCE FROM THE LICENSOR TO YOU.\n\n Creative Commons is not a party to this Licence, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this licence. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\n Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\n Creative Commons may be contacted at https://creativecommons.org/.", + "json": "cc-by-nc-sa-2.0-uk.json", + "yaml": "cc-by-nc-sa-2.0-uk.yml", + "html": "cc-by-nc-sa-2.0-uk.html", + "license": "cc-by-nc-sa-2.0-uk.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-2.5", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-NonCommercial-ShareAlike 2.5\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this License.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n\"License Elements\" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, Noncommercial, ShareAlike.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto create and reproduce Derivative Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works;\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved, including but not limited to the rights set forth in Sections 4(e) and 4(f).\n\n4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(d), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by clause 4(d), as requested.\nYou may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, a later version of this License with the same License Elements as this License, or a Creative Commons iCommons license that contains the same License Elements as this License (e.g. Attribution-NonCommercial-ShareAlike 2.5 Japan). You must include a copy of, or the Uniform Resource Identifier for, this License or other license specified in the previous sentence with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License.\nYou may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., \"French translation of the Work by Original Author,\" or \"Screenplay based on original Work by Original Author\"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\nFor the avoidance of doubt, where the Work is a musical composition:\n\nPerformance Royalties Under Blanket Licenses. Licensor reserves the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work if that performance is primarily intended for or directed toward commercial advantage or private monetary compensation.\nMechanical Rights and Statutory Royalties. Licensor reserves the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work (\"cover version\") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions), if Your distribution of such cover version is primarily intended for or directed toward commercial advantage or private monetary compensation.\nWebcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor reserves the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions), if Your public digital performance is primarily intended for or directed toward commercial advantage or private monetary compensation.\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nEach time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", + "json": "cc-by-nc-sa-2.5.json", + "yaml": "cc-by-nc-sa-2.5.yml", + "html": "cc-by-nc-sa-2.5.html", + "license": "cc-by-nc-sa-2.5.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-3.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Legal Code\n\nAttribution-NonCommercial-ShareAlike 3.0 Unported\n\n CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\n LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN\n ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS\n INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES\n REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR\n DAMAGES RESULTING FROM ITS USE.\n\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE\nCOMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY\nCOPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS\nAUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE\nTO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY\nBE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS\nCONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND\nCONDITIONS.\n\n1. Definitions\n\n a. \"Adaptation\" means a work based upon the Work, or upon the Work and\n other pre-existing works, such as a translation, adaptation,\n derivative work, arrangement of music or other alterations of a\n literary or artistic work, or phonogram or performance and includes\n cinematographic adaptations or any other form in which the Work may be\n recast, transformed, or adapted including in any form recognizably\n derived from the original, except that a work that constitutes a\n Collection will not be considered an Adaptation for the purpose of\n this License. For the avoidance of doubt, where the Work is a musical\n work, performance or phonogram, the synchronization of the Work in\n timed-relation with a moving image (\"synching\") will be considered an\n Adaptation for the purpose of this License.\n b. \"Collection\" means a collection of literary or artistic works, such as\n encyclopedias and anthologies, or performances, phonograms or\n broadcasts, or other works or subject matter other than works listed\n in Section 1(g) below, which, by reason of the selection and\n arrangement of their contents, constitute intellectual creations, in\n which the Work is included in its entirety in unmodified form along\n with one or more other contributions, each constituting separate and\n independent works in themselves, which together are assembled into a\n collective whole. A work that constitutes a Collection will not be\n considered an Adaptation (as defined above) for the purposes of this\n License.\n c. \"Distribute\" means to make available to the public the original and\n copies of the Work or Adaptation, as appropriate, through sale or\n other transfer of ownership.\n d. \"License Elements\" means the following high-level license attributes\n as selected by Licensor and indicated in the title of this License:\n Attribution, Noncommercial, ShareAlike.\n e. \"Licensor\" means the individual, individuals, entity or entities that\n offer(s) the Work under the terms of this License.\n f. \"Original Author\" means, in the case of a literary or artistic work,\n the individual, individuals, entity or entities who created the Work\n or if no individual or entity can be identified, the publisher; and in\n addition (i) in the case of a performance the actors, singers,\n musicians, dancers, and other persons who act, sing, deliver, declaim,\n play in, interpret or otherwise perform literary or artistic works or\n expressions of folklore; (ii) in the case of a phonogram the producer\n being the person or legal entity who first fixes the sounds of a\n performance or other sounds; and, (iii) in the case of broadcasts, the\n organization that transmits the broadcast.\n g. \"Work\" means the literary and/or artistic work offered under the terms\n of this License including without limitation any production in the\n literary, scientific and artistic domain, whatever may be the mode or\n form of its expression including digital form, such as a book,\n pamphlet and other writing; a lecture, address, sermon or other work\n of the same nature; a dramatic or dramatico-musical work; a\n choreographic work or entertainment in dumb show; a musical\n composition with or without words; a cinematographic work to which are\n assimilated works expressed by a process analogous to cinematography;\n a work of drawing, painting, architecture, sculpture, engraving or\n lithography; a photographic work to which are assimilated works\n expressed by a process analogous to photography; a work of applied\n art; an illustration, map, plan, sketch or three-dimensional work\n relative to geography, topography, architecture or science; a\n performance; a broadcast; a phonogram; a compilation of data to the\n extent it is protected as a copyrightable work; or a work performed by\n a variety or circus performer to the extent it is not otherwise\n considered a literary or artistic work.\n h. \"You\" means an individual or entity exercising rights under this\n License who has not previously violated the terms of this License with\n respect to the Work, or who has received express permission from the\n Licensor to exercise rights under this License despite a previous\n violation.\n i. \"Publicly Perform\" means to perform public recitations of the Work and\n to communicate to the public those public recitations, by any means or\n process, including by wire or wireless means or public digital\n performances; to make available to the public Works in such a way that\n members of the public may access these Works from a place and at a\n place individually chosen by them; to perform the Work to the public\n by any means or process and the communication to the public of the\n performances of the Work, including by public digital performance; to\n broadcast and rebroadcast the Work by any means including signs,\n sounds or images.\n j. \"Reproduce\" means to make copies of the Work by any means including\n without limitation by sound or visual recordings and the right of\n fixation and reproducing fixations of the Work, including storage of a\n protected performance or phonogram in digital form or other electronic\n medium.\n\n2. Fair Dealing Rights. Nothing in this License is intended to reduce,\nlimit, or restrict any uses free from copyright or rights arising from\nlimitations or exceptions that are provided for in connection with the\ncopyright protection under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License,\nLicensor hereby grants You a worldwide, royalty-free, non-exclusive,\nperpetual (for the duration of the applicable copyright) license to\nexercise the rights in the Work as stated below:\n\n a. to Reproduce the Work, to incorporate the Work into one or more\n Collections, and to Reproduce the Work as incorporated in the\n Collections;\n b. to create and Reproduce Adaptations provided that any such Adaptation,\n including any translation in any medium, takes reasonable steps to\n clearly label, demarcate or otherwise identify that changes were made\n to the original Work. For example, a translation could be marked \"The\n original work was translated from English to Spanish,\" or a\n modification could indicate \"The original work has been modified.\";\n c. to Distribute and Publicly Perform the Work including as incorporated\n in Collections; and,\n d. to Distribute and Publicly Perform Adaptations.\n\nThe above rights may be exercised in all media and formats whether now\nknown or hereafter devised. The above rights include the right to make\nsuch modifications as are technically necessary to exercise the rights in\nother media and formats. Subject to Section 8(f), all rights not expressly\ngranted by Licensor are hereby reserved, including but not limited to the\nrights described in Section 4(e).\n\n4. Restrictions. The license granted in Section 3 above is expressly made\nsubject to and limited by the following restrictions:\n\n a. You may Distribute or Publicly Perform the Work only under the terms\n of this License. You must include a copy of, or the Uniform Resource\n Identifier (URI) for, this License with every copy of the Work You\n Distribute or Publicly Perform. You may not offer or impose any terms\n on the Work that restrict the terms of this License or the ability of\n the recipient of the Work to exercise the rights granted to that\n recipient under the terms of the License. You may not sublicense the\n Work. You must keep intact all notices that refer to this License and\n to the disclaimer of warranties with every copy of the Work You\n Distribute or Publicly Perform. When You Distribute or Publicly\n Perform the Work, You may not impose any effective technological\n measures on the Work that restrict the ability of a recipient of the\n Work from You to exercise the rights granted to that recipient under\n the terms of the License. This Section 4(a) applies to the Work as\n incorporated in a Collection, but this does not require the Collection\n apart from the Work itself to be made subject to the terms of this\n License. If You create a Collection, upon notice from any Licensor You\n must, to the extent practicable, remove from the Collection any credit\n as required by Section 4(d), as requested. If You create an\n Adaptation, upon notice from any Licensor You must, to the extent\n practicable, remove from the Adaptation any credit as required by\n Section 4(d), as requested.\n b. You may Distribute or Publicly Perform an Adaptation only under: (i)\n the terms of this License; (ii) a later version of this License with\n the same License Elements as this License; (iii) a Creative Commons\n jurisdiction license (either this or a later license version) that\n contains the same License Elements as this License (e.g.,\n Attribution-NonCommercial-ShareAlike 3.0 US) (\"Applicable License\").\n You must include a copy of, or the URI, for Applicable License with\n every copy of each Adaptation You Distribute or Publicly Perform. You\n may not offer or impose any terms on the Adaptation that restrict the\n terms of the Applicable License or the ability of the recipient of the\n Adaptation to exercise the rights granted to that recipient under the\n terms of the Applicable License. You must keep intact all notices that\n refer to the Applicable License and to the disclaimer of warranties\n with every copy of the Work as included in the Adaptation You\n Distribute or Publicly Perform. When You Distribute or Publicly\n Perform the Adaptation, You may not impose any effective technological\n measures on the Adaptation that restrict the ability of a recipient of\n the Adaptation from You to exercise the rights granted to that\n recipient under the terms of the Applicable License. This Section 4(b)\n applies to the Adaptation as incorporated in a Collection, but this\n does not require the Collection apart from the Adaptation itself to be\n made subject to the terms of the Applicable License.\n c. You may not exercise any of the rights granted to You in Section 3\n above in any manner that is primarily intended for or directed toward\n commercial advantage or private monetary compensation. The exchange of\n the Work for other copyrighted works by means of digital file-sharing\n or otherwise shall not be considered to be intended for or directed\n toward commercial advantage or private monetary compensation, provided\n there is no payment of any monetary compensation in con-nection with\n the exchange of copyrighted works.\n d. If You Distribute, or Publicly Perform the Work or any Adaptations or\n Collections, You must, unless a request has been made pursuant to\n Section 4(a), keep intact all copyright notices for the Work and\n provide, reasonable to the medium or means You are utilizing: (i) the\n name of the Original Author (or pseudonym, if applicable) if supplied,\n and/or if the Original Author and/or Licensor designate another party\n or parties (e.g., a sponsor institute, publishing entity, journal) for\n attribution (\"Attribution Parties\") in Licensor's copyright notice,\n terms of service or by other reasonable means, the name of such party\n or parties; (ii) the title of the Work if supplied; (iii) to the\n extent reasonably practicable, the URI, if any, that Licensor\n specifies to be associated with the Work, unless such URI does not\n refer to the copyright notice or licensing information for the Work;\n and, (iv) consistent with Section 3(b), in the case of an Adaptation,\n a credit identifying the use of the Work in the Adaptation (e.g.,\n \"French translation of the Work by Original Author,\" or \"Screenplay\n based on original Work by Original Author\"). The credit required by\n this Section 4(d) may be implemented in any reasonable manner;\n provided, however, that in the case of a Adaptation or Collection, at\n a minimum such credit will appear, if a credit for all contributing\n authors of the Adaptation or Collection appears, then as part of these\n credits and in a manner at least as prominent as the credits for the\n other contributing authors. For the avoidance of doubt, You may only\n use the credit required by this Section for the purpose of attribution\n in the manner set out above and, by exercising Your rights under this\n License, You may not implicitly or explicitly assert or imply any\n connection with, sponsorship or endorsement by the Original Author,\n Licensor and/or Attribution Parties, as appropriate, of You or Your\n use of the Work, without the separate, express prior written\n permission of the Original Author, Licensor and/or Attribution\n Parties.\n e. For the avoidance of doubt:\n\n i. Non-waivable Compulsory License Schemes. In those jurisdictions in\n which the right to collect royalties through any statutory or\n compulsory licensing scheme cannot be waived, the Licensor\n reserves the exclusive right to collect such royalties for any\n exercise by You of the rights granted under this License;\n ii. Waivable Compulsory License Schemes. In those jurisdictions in\n which the right to collect royalties through any statutory or\n compulsory licensing scheme can be waived, the Licensor reserves\n the exclusive right to collect such royalties for any exercise by\n You of the rights granted under this License if Your exercise of\n such rights is for a purpose or use which is otherwise than\n noncommercial as permitted under Section 4(c) and otherwise waives\n the right to collect royalties through any statutory or compulsory\n licensing scheme; and,\n iii. Voluntary License Schemes. The Licensor reserves the right to\n collect royalties, whether individually or, in the event that the\n Licensor is a member of a collecting society that administers\n voluntary licensing schemes, via that society, from any exercise\n by You of the rights granted under this License that is for a\n purpose or use which is otherwise than noncommercial as permitted\n under Section 4(c).\n f. Except as otherwise agreed in writing by the Licensor or as may be\n otherwise permitted by applicable law, if You Reproduce, Distribute or\n Publicly Perform the Work either by itself or as part of any\n Adaptations or Collections, You must not distort, mutilate, modify or\n take other derogatory action in relation to the Work which would be\n prejudicial to the Original Author's honor or reputation. Licensor\n agrees that in those jurisdictions (e.g. Japan), in which any exercise\n of the right granted in Section 3(b) of this License (the right to\n make Adaptations) would be deemed to be a distortion, mutilation,\n modification or other derogatory action prejudicial to the Original\n Author's honor and reputation, the Licensor will waive or not assert,\n as appropriate, this Section, to the fullest extent permitted by the\n applicable national law, to enable You to reasonably exercise Your\n right under Section 3(b) of this License (right to make Adaptations)\n but not otherwise.\n\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING AND TO THE\nFULLEST EXTENT PERMITTED BY APPLICABLE LAW, LICENSOR OFFERS THE WORK AS-IS\nAND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE\nWORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT\nLIMITATION, WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\nPURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS,\nACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT\nDISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED\nWARRANTIES, SO THIS EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE\nLAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR\nANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES\nARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS\nBEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\n a. This License and the rights granted hereunder will terminate\n automatically upon any breach by You of the terms of this License.\n Individuals or entities who have received Adaptations or Collections\n from You under this License, however, will not have their licenses\n terminated provided such individuals or entities remain in full\n compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will\n survive any termination of this License.\n b. Subject to the above terms and conditions, the license granted here is\n perpetual (for the duration of the applicable copyright in the Work).\n Notwithstanding the above, Licensor reserves the right to release the\n Work under different license terms or to stop distributing the Work at\n any time; provided, however that any such election will not serve to\n withdraw this License (or any other license that has been, or is\n required to be, granted under the terms of this License), and this\n License will continue in full force and effect unless terminated as\n stated above.\n\n8. Miscellaneous\n\n a. Each time You Distribute or Publicly Perform the Work or a Collection,\n the Licensor offers to the recipient a license to the Work on the same\n terms and conditions as the license granted to You under this License.\n b. Each time You Distribute or Publicly Perform an Adaptation, Licensor\n offers to the recipient a license to the original Work on the same\n terms and conditions as the license granted to You under this License.\n c. If any provision of this License is invalid or unenforceable under\n applicable law, it shall not affect the validity or enforceability of\n the remainder of the terms of this License, and without further action\n by the parties to this agreement, such provision shall be reformed to\n the minimum extent necessary to make such provision valid and\n enforceable.\n d. No term or provision of this License shall be deemed waived and no\n breach consented to unless such waiver or consent shall be in writing\n and signed by the party to be charged with such waiver or consent.\n e. This License constitutes the entire agreement between the parties with\n respect to the Work licensed here. There are no understandings,\n agreements or representations with respect to the Work not specified\n here. Licensor shall not be bound by any additional provisions that\n may appear in any communication from You. This License may not be\n modified without the mutual written agreement of the Licensor and You.\n f. The rights granted under, and the subject matter referenced, in this\n License were drafted utilizing the terminology of the Berne Convention\n for the Protection of Literary and Artistic Works (as amended on\n September 28, 1979), the Rome Convention of 1961, the WIPO Copyright\n Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996\n and the Universal Copyright Convention (as revised on July 24, 1971).\n These rights and subject matter take effect in the relevant\n jurisdiction in which the License terms are sought to be enforced\n according to the corresponding provisions of the implementation of\n those treaty provisions in the applicable national law. If the\n standard suite of rights granted under applicable copyright law\n includes additional rights not granted under this License, such\n additional rights are deemed to be included in the License; this\n License is not intended to restrict the license of any rights under\n applicable law.\n\n\nCreative Commons Notice\n\n Creative Commons is not a party to this License, and makes no warranty\n whatsoever in connection with the Work. Creative Commons will not be\n liable to You or any party on any legal theory for any damages\n whatsoever, including without limitation any general, special,\n incidental or consequential damages arising in connection to this\n license. Notwithstanding the foregoing two (2) sentences, if Creative\n Commons has expressly identified itself as the Licensor hereunder, it\n shall have all rights and obligations of Licensor.\n\n Except for the limited purpose of indicating to the public that the\n Work is licensed under the CCPL, Creative Commons does not authorize\n the use by either party of the trademark \"Creative Commons\" or any\n related trademark or logo of Creative Commons without the prior\n written consent of Creative Commons. Any permitted use will be in\n compliance with Creative Commons' then-current trademark usage\n guidelines, as may be published on its website or otherwise made\n available upon request from time to time. For the avoidance of doubt,\n this trademark restriction does not form part of this License.\n\n Creative Commons may be contacted at https://creativecommons.org/.", + "json": "cc-by-nc-sa-3.0.json", + "yaml": "cc-by-nc-sa-3.0.yml", + "html": "cc-by-nc-sa-3.0.html", + "license": "cc-by-nc-sa-3.0.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-3.0-de", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-3.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Namensnennung - Keine kommerzielle Nutzung - Weitergabe unter gleichen Bedingungen 3.0 Deutschland\n\n CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ F\u00dcHRT ZU KEINEM MANDATSVERH\u00c4LTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEW\u00c4HR ZUR VERF\u00dcGUNG. CREATIVE COMMONS \u00dcBERNIMMT KEINE GEW\u00c4HRLEISTUNG F\u00dcR DIE GELIEFERTEN INFORMATIONEN UND SCHLIE\u00dfT DIE HAFTUNG F\u00dcR SCH\u00c4DEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN.\n\nLizenz\n\nDER GEGENSTAND DIESER LIZENZ (WIE UNTER \"SCHUTZGEGENSTAND\" DEFINIERT) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\", \"LIZENZ\" ODER \"LIZENZVERTRAG\") ZUR VERF\u00dcGUNG GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER ANDERE GESETZE GESCH\u00dcTZT. JEDE FORM DER NUTZUNG DES SCHUTZGEGENSTANDES, DIE NICHT AUFGRUND DIESER LIZENZ ODER DURCH GESETZE GESTATTET IST, IST UNZUL\u00c4SSIG.\n\nDURCH DIE AUS\u00dcBUNG EINES DURCH DIESE LIZENZ GEW\u00c4HRTEN RECHTS AN DEM SCHUTZGEGENSTAND ERKL\u00c4REN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH EINVERSTANDEN. SOWEIT DIESE LIZENZ ALS LIZENZVERTRAG ANZUSEHEN IST, GEW\u00c4HRT IHNEN DER LIZENZGEBER DIE IN DER LIZENZ GENANNTEN RECHTE UNENTGELTLICH UND IM AUSTAUSCH DAF\u00dcR, DASS SIE DAS GEBUNDENSEIN AN DIE LIZENZBEDINGUNGEN AKZEPTIEREN.\n\n1. Definitionen\n\n a. Der Begriff \"Abwandlung\" im Sinne dieser Lizenz bezeichnet das Ergebnis jeglicher Art von Ver\u00e4nderung des Schutzgegenstandes, solange die eigenpers\u00f6nlichen Z\u00fcge des Schutzgegenstandes darin nicht verblassen und daran eigene Schutzrechte entstehen. Das kann insbesondere eine Bearbeitung, Umgestaltung, \u00c4nderung, Anpassung, \u00dcbersetzung oder Heranziehung des Schutzgegenstandes zur Vertonung von Laufbildern sein. Nicht als Abwandlung des Schutzgegenstandes gelten seine Aufnahme in eine Sammlung oder ein Sammelwerk und die freie Benutzung des Schutzgegenstandes.\n\n b. Der Begriff \"Sammelwerk\" im Sinne dieser Lizenz meint eine Zusammenstellung von literarischen, k\u00fcnstlerischen oder wissenschaftlichen Inhalten, sofern diese Zusammenstellung aufgrund von Auswahl und Anordnung der darin enthaltenen selbst\u00e4ndigen Elemente eine geistige Sch\u00f6pfung darstellt, unabh\u00e4ngig davon, ob die Elemente systematisch oder methodisch angelegt und dadurch einzeln zug\u00e4nglich sind oder nicht.\n\n c. \"Verbreiten\" im Sinne dieser Lizenz bedeutet, den Schutzgegenstand oder Abwandlungen im Original oder in Form von Vervielf\u00e4ltigungsst\u00fccken, mithin in k\u00f6rperlich fixierter Form der \u00d6ffentlichkeit anzubieten oder in Verkehr zu bringen.\n\n d. Unter \"Lizenzelementen\" werden im Sinne dieser Lizenz die folgenden \u00fcbergeordneten Lizenzcharakteristika verstanden, die vom Lizenzgeber ausgew\u00e4hlt wurden und in der Bezeichnung der Lizenz zum Ausdruck kommen: \"Namensnennung\", \"Keine kommerzielle Nutzung\", \"Weitergabe unter gleichen Bedingungen\".\n\n e. Der \"Lizenzgeber\" im Sinne dieser Lizenz ist diejenige nat\u00fcrliche oder juristische Person oder Gruppe, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet und insoweit als Rechteinhaberin auftritt.\n\n f. \"Rechteinhaber\" im Sinne dieser Lizenz ist der Urheber des Schutzgegenstandes oder jede andere nat\u00fcrliche oder juristische Person oder Gruppe von Personen, die am Schutzgegenstand ein Immaterialg\u00fcterrecht erlangt hat, welches die in Abschnitt 3 genannten Handlungen erfasst und bei dem eine Einr\u00e4umung von Nutzungsrechten oder eine Weiter\u00fcbertragung an Dritte m\u00f6glich ist.\n\n g. Der Begriff \"Schutzgegenstand\" bezeichnet in dieser Lizenz den literarischen, k\u00fcnstlerischen oder wissenschaftlichen Inhalt, der unter den Bedingungen dieser Lizenz angeboten wird. Das kann insbesondere eine pers\u00f6nliche geistige Sch\u00f6pfung jeglicher Art, ein Werk der kleinen M\u00fcnze, ein nachgelassenes Werk oder auch ein Lichtbild oder anderes Objekt eines verwandten Schutzrechts sein, unabh\u00e4ngig von der Art seiner Fixierung und unabh\u00e4ngig davon, auf welche Weise jeweils eine Wahrnehmung erfolgen kann, gleichviel ob in analoger oder digitaler Form. Soweit Datenbanken oder Zusammenstellungen von Daten einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen, unterfallen auch sie dem Begriff \"Schutzgegenstand\" im Sinne dieser Lizenz.\n\n h. Mit \"Sie\" bzw. \"Ihnen\" ist die nat\u00fcrliche oder juristische Person gemeint, die in dieser Lizenz im Abschnitt 3 genannte Nutzungen des Schutzgegenstandes vornimmt und zuvor in Hinblick auf den Schutzgegenstand nicht gegen Bedingungen dieser Lizenz versto\u00dfen oder aber die ausdr\u00fcckliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese Lizenz gew\u00e4hrten Nutzungsrechte trotz eines vorherigen Versto\u00dfes auszu\u00fcben.\n\n i. Unter \"\u00d6ffentlich Zeigen\" im Sinne dieser Lizenz sind Ver\u00f6ffentlichungen und Pr\u00e4sentationen des Schutzgegenstandes zu verstehen, die f\u00fcr eine Mehrzahl von Mitgliedern der \u00d6ffentlichkeit bestimmt sind und in unk\u00f6rperlicher Form mittels \u00f6ffentlicher Wiedergabe in Form von Vortrag, Auff\u00fchrung, Vorf\u00fchrung, Darbietung, Sendung, Weitersendung, zeit- und ortsunabh\u00e4ngiger Zug\u00e4nglichmachung oder in k\u00f6rperlicher Form mittels Ausstellung erfolgen, unabh\u00e4ngig von bestimmten Veranstaltungen und unabh\u00e4ngig von den zum Einsatz kommenden Techniken und Verfahren, einschlie\u00dflich drahtgebundener oder drahtloser Mittel und Einstellen in das Internet.\n\n j. \"Vervielf\u00e4ltigen\" im Sinne dieser Lizenz bedeutet, mittels beliebiger Verfahren Vervielf\u00e4ltigungsst\u00fccke des Schutzgegenstandes herzustellen, insbesondere durch Ton- oder Bildaufzeichnungen, und umfasst auch den Vorgang, erstmals k\u00f6rperliche Fixierungen des Schutzgegenstandes sowie Vervielf\u00e4ltigungsst\u00fccke dieser Fixierungen anzufertigen, sowie die \u00dcbertragung des Schutzgegenstandes auf einen Bild- oder Tontr\u00e4ger oder auf ein anderes elektronisches Medium, gleichviel ob in digitaler oder analoger Form.\n\n2. Schranken des Immaterialg\u00fcterrechts. Diese Lizenz ist in keiner Weise darauf gerichtet, Befugnisse zur Nutzung des Schutzgegenstandes zu vermindern, zu beschr\u00e4nken oder zu vereiteln, die Ihnen aufgrund der Schranken des Urheberrechts oder anderer Rechtsnormen bereits ohne Weiteres zustehen oder sich aus dem Fehlen eines immaterialg\u00fcterrechtlichen Schutzes ergeben.\n\n3. Einr\u00e4umung von Nutzungsrechten. Unter den Bedingungen dieser Lizenz r\u00e4umt Ihnen der Lizenzgeber - unbeschadet unverzichtbarer Rechte und vorbehaltlich des Abschnitts 4.f) - das verg\u00fctungsfreie, r\u00e4umlich und zeitlich (f\u00fcr die Dauer des Schutzrechts am Schutzgegenstand) unbeschr\u00e4nkte einfache Recht ein, den Schutzgegenstand auf die folgenden Arten und Weisen zu nutzen (\"unentgeltlich einger\u00e4umtes einfaches Nutzungsrecht f\u00fcr jedermann\"):\n\n a. Den Schutzgegenstand in beliebiger Form und Menge zu vervielf\u00e4ltigen, ihn in Sammelwerke zu integrieren und ihn als Teil solcher Sammelwerke zu vervielf\u00e4ltigen;\n\n b. Abwandlungen des Schutzgegenstandes anzufertigen, einschlie\u00dflich \u00dcbersetzungen unter Nutzung jedweder Medien, sofern deutlich erkennbar gemacht wird, dass es sich um Abwandlungen handelt;\n\n c. den Schutzgegenstand, allein oder in Sammelwerke aufgenommen, \u00f6ffentlich zu zeigen und zu verbreiten;\n\n d. Abwandlungen des Schutzgegenstandes zu ver\u00f6ffentlichen, \u00f6ffentlich zu zeigen und zu verbreiten.\n\nDas vorgenannte Nutzungsrecht wird f\u00fcr alle bekannten sowie f\u00fcr alle noch nicht bekannten Nutzungsarten einger\u00e4umt. Es beinhaltet auch das Recht, solche \u00c4nderungen am Schutzgegenstand vorzunehmen, die f\u00fcr bestimmte nach dieser Lizenz zul\u00e4ssige Nutzungen technisch erforderlich sind. Alle sonstigen Rechte, die \u00fcber diesen Abschnitt hinaus nicht ausdr\u00fccklich durch den Lizenzgeber einger\u00e4umt werden, bleiben diesem allein vorbehalten. Soweit Datenbanken oder Zusammenstellungen von Daten Schutzgegenstand dieser Lizenz oder Teil dessen sind und einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen, verzichtet der Lizenzgeber auf s\u00e4mtliche aus diesem Schutz resultierenden Rechte.\n\n4. Bedingungen. Die Einr\u00e4umung des Nutzungsrechts gem\u00e4\u00df Abschnitt 3 dieser Lizenz erfolgt ausdr\u00fccklich nur unter den folgenden Bedingungen:\n\n a. Sie d\u00fcrfen den Schutzgegenstand ausschlie\u00dflich unter den Bedingungen dieser Lizenz verbreiten oder \u00f6ffentlich zeigen. Sie m\u00fcssen dabei stets eine Kopie dieser Lizenz oder deren vollst\u00e4ndige Internetadresse in Form des Uniform-Resource-Identifier (URI) beif\u00fcgen. Sie d\u00fcrfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen dieser Lizenz oder die durch diese Lizenz gew\u00e4hrten Rechte beschr\u00e4nken. Sie d\u00fcrfen den Schutzgegenstand nicht unterlizenzieren. Bei jeder Kopie des Schutzgegenstandes, die Sie verbreiten oder \u00f6ffentlich zeigen, m\u00fcssen Sie alle Hinweise unver\u00e4ndert lassen, die auf diese Lizenz und den Haftungsausschluss hinweisen. Wenn Sie den Schutzgegenstand verbreiten oder \u00f6ffentlich zeigen, d\u00fcrfen Sie (in Bezug auf den Schutzgegenstand) keine technischen Ma\u00dfnahmen ergreifen, die den Nutzer des Schutzgegenstandes in der Aus\u00fcbung der ihm durch diese Lizenz gew\u00e4hrten Rechte behindern k\u00f6nnen. Dieser Abschnitt 4.a) gilt auch f\u00fcr den Fall, dass der Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt dieser Lizenz unterstellt werden muss. Sofern Sie ein Sammelwerk erstellen, m\u00fcssen Sie auf die Mitteilung eines Lizenzgebers hin aus dem Sammelwerk die in Abschnitt 4.d) aufgez\u00e4hlten Hinweise entfernen. Wenn Sie eine Abwandlung vornehmen, m\u00fcssen Sie auf die Mitteilung eines Lizenzgebers hin von der Abwandlung die in Abschnitt 4.d) aufgez\u00e4hlten Hinweise entfernen.\n\n b. Sie d\u00fcrfen eine Abwandlung ausschlie\u00dflich unter den Bedingungen\n\n i. dieser Lizenz,\n\n ii. einer sp\u00e4teren Version dieser Lizenz mit denselben Lizenzelementen;\n\n iii. einer rechtsordnungsspezifischen Creative-Commons-Lizenz mit denselben Lizenzelementen ab Version 3.0 aufw\u00e4rts (z.B. Namensnennung - Keine kommerzielle Nutzung - Weitergabe unter gleichen Bedingungen 3.0 US) oder\n\n iv. der Creative-Commons-Unported-Lizenz mit denselben Lizenzelementen ab Version 3.0 aufw\u00e4rts\n\n verbreiten oder \u00f6ffentlich zeigen (\"Verwendbare Lizenz\").\n\n Sie m\u00fcssen stets eine Kopie der verwendbaren Lizenz oder deren vollst\u00e4ndige Internetadresse in Form des Uniform-Resource-Identifier (URI) beif\u00fcgen, wenn Sie die Abwandlung verbreiten oder \u00f6ffentlich zeigen. Sie d\u00fcrfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen der verwendbaren Lizenz oder die durch sie gew\u00e4hrten Rechte beschr\u00e4nken. Bei jeder Abwandlung, die Sie verbreiten oder \u00f6ffentlich zeigen, m\u00fcssen Sie alle Hinweise auf die verwendbare Lizenz und den Haftungsausschluss unver\u00e4ndert lassen. Wenn Sie die Abwandlung verbreiten oder \u00f6ffentlich zeigen, d\u00fcrfen Sie (in Bezug auf die Abwandlung) keine technischen Ma\u00dfnahmen ergreifen, die den Nutzer der Abwandlung in der Aus\u00fcbung der ihm durch die verwendbare Lizenz gew\u00e4hrten Rechte behindern k\u00f6nnen. Dieser Abschnitt 4.b) gilt auch f\u00fcr den Fall, dass die Abwandlung einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt der verwendbaren Lizenz unterstellt werden muss.\n\n c. Die Rechteeinr\u00e4umung gem\u00e4\u00df Abschnitt 3 gilt nur f\u00fcr Handlungen, die nicht vorrangig auf einen gesch\u00e4ftlichen Vorteil oder eine geldwerte Verg\u00fctung gerichtet sind (\"nicht-kommerzielle Nutzung\", \"Non-commercial-Option\"). Wird Ihnen in Zusammenhang mit dem Schutzgegenstand dieser Lizenz ein anderer Schutzgegenstand \u00fcberlassen, ohne dass eine vertragliche Verpflichtung hierzu besteht (etwa im Wege von File-Sharing), so wird dies nicht als auf gesch\u00e4ftlichen Vorteil oder geldwerte Verg\u00fctung gerichtet angesehen, wenn in Verbindung mit dem Austausch der Schutzgegenst\u00e4nde tats\u00e4chlich keine Zahlung oder geldwerte Verg\u00fctung geleistet wird.\n\n d. Die Verbreitung und das \u00f6ffentliche Zeigen des Schutzgegenstandes oder auf ihm aufbauender Abwandlungen oder ihn enthaltender Sammelwerke ist Ihnen nur unter der Bedingung gestattet, dass Sie, vorbehaltlich etwaiger Mitteilungen im Sinne von Abschnitt 4.a), alle dazu geh\u00f6renden Rechtevermerke unber\u00fchrt lassen. Sie sind verpflichtet, die Rechteinhaberschaft in einer der Nutzung entsprechenden, angemessenen Form anzuerkennen, indem Sie - soweit bekannt - Folgendes angeben:\n\n i. Den Namen (oder das Pseudonym, falls ein solches verwendet wird) des Rechteinhabers und / oder, falls der Lizenzgeber im Rechtevermerk, in den Nutzungsbedingungen oder auf andere angemessene Weise eine Zuschreibung an Dritte vorgenommen hat (z.B. an eine Stiftung, ein Verlagshaus oder eine Zeitung) (\"Zuschreibungsempf\u00e4nger\"), Namen bzw. Bezeichnung dieses oder dieser Dritten;\n\n ii. den Titel des Inhaltes;\n\n iii. in einer praktikablen Form den Uniform-Resource-Identifier (URI, z.B. Internetadresse), den der Lizenzgeber zum Schutzgegenstand angegeben hat, es sei denn, dieser URI verweist nicht auf den Rechtevermerk oder die Lizenzinformationen zum Schutzgegenstand;\n\n iv. und im Falle einer Abwandlung des Schutzgegenstandes in \u00dcbereinstimmung mit Abschnitt 3.b) einen Hinweis darauf, dass es sich um eine Abwandlung handelt.\n\n Die nach diesem Abschnitt 4.d) erforderlichen Angaben k\u00f6nnen in jeder angemessenen Form gemacht werden; im Falle einer Abwandlung des Schutzgegenstandes oder eines Sammelwerkes m\u00fcssen diese Angaben das Minimum darstellen und bei gemeinsamer Nennung mehrerer Rechteinhaber dergestalt erfolgen, dass sie zumindest ebenso hervorgehoben sind wie die Hinweise auf die \u00fcbrigen Rechteinhaber. Die Angaben nach diesem Abschnitt d\u00fcrfen Sie ausschlie\u00dflich zur Angabe der Rechteinhaberschaft in der oben bezeichneten Weise verwenden. Durch die Aus\u00fcbung Ihrer Rechte aus dieser Lizenz d\u00fcrfen Sie ohne eine vorherige, separat und schriftlich vorliegende Zustimmung des Lizenzgebers und / oder des Zuschreibungsempf\u00e4ngers weder explizit noch implizit irgendeine Verbindung zum Lizenzgeber oder Zuschreibungsempf\u00e4nger und ebenso wenig eine Unterst\u00fctzung oder Billigung durch ihn andeuten.\n\n e. Die oben unter 4.a) bis d) genannten Einschr\u00e4nkungen gelten nicht f\u00fcr solche Teile des Schutzgegenstandes, die allein deshalb unter den Schutzgegenstandsbegriff fallen, weil sie als Datenbanken oder Zusammenstellungen von Daten einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen.\n\n f. Bez\u00fcglich Verg\u00fctung f\u00fcr die Nutzung des Schutzgegenstandes gilt Folgendes:\n\n i. Unverzichtbare gesetzliche Verg\u00fctungsanspr\u00fcche: Soweit unverzichtbare Verg\u00fctungsanspr\u00fcche im Gegenzug f\u00fcr gesetzliche Lizenzen vorgesehen oder Pauschalabgabensysteme (zum Beispiel f\u00fcr Leermedien) vorhanden sind, beh\u00e4lt sich der Lizenzgeber das ausschlie\u00dfliche Recht vor, die entsprechende Verg\u00fctung einzuziehen f\u00fcr jede Aus\u00fcbung eines Rechts aus dieser Lizenz durch Sie.\n\n ii. Verg\u00fctung bei Zwangslizenzen: Sofern Zwangslizenzen au\u00dferhalb dieser Lizenz vorgesehen sind und zustande kommen, beh\u00e4lt sich der Lizenzgeber das ausschlie\u00dfliche Recht auf Einziehung der entsprechenden Verg\u00fctung f\u00fcr den Fall vor, dass Sie eine Nutzung des Schutzgegenstandes f\u00fcr andere als die in Abschnitt 4.c) als nicht-kommerziell definierten Zwecke vornehmen, verzichtet f\u00fcr alle \u00fcbrigen, lizenzgerechten F\u00e4lle von Nutzung jedoch auf jegliche Verg\u00fctung.\n\n iii. Verg\u00fctung in sonstigen F\u00e4llen: Bez\u00fcglich lizenzgerechter Nutzung des Schutzgegenstandes durch Sie, die nicht unter die beiden vorherigen Abschnitte (i) und (ii) f\u00e4llt, verzichtet der Lizenzgeber auf jegliche Verg\u00fctung, unabh\u00e4ngig davon, ob eine Einziehung der Verg\u00fctung durch ihn selbst oder nur durch eine Verwertungsgesellschaft m\u00f6glich w\u00e4re. Der Lizenzgeber beh\u00e4lt sich jedoch das ausschlie\u00dfliche Recht auf Einziehung der entsprechenden Verg\u00fctung (durch ihn selbst oder eine Verwertungsgesellschaft) f\u00fcr den Fall vor, dass Sie eine Nutzung des Schutzgegenstandes f\u00fcr andere als die in Abschnitt 4.c) als nicht-kommerziell definierten Zwecke vornehmen.\n\n g. Pers\u00f6nlichkeitsrechte bleiben - soweit sie bestehen - von dieser Lizenz unber\u00fchrt.\n\n5. Gew\u00e4hrleistung\n\nSOFERN KEINE ANDERS LAUTENDE, SCHRIFTLICHE VEREINBARUNG ZWISCHEN DEM LIZENZGEBER UND IHNEN GESCHLOSSEN WURDE UND SOWEIT M\u00c4NGEL NICHT ARGLISTIG VERSCHWIEGEN WURDEN, BIETET DER LIZENZGEBER DEN SCHUTZGEGENSTAND UND DIE EINR\u00c4UMUNG VON RECHTEN UNTER AUSSCHLUSS JEGLICHER GEW\u00c4HRLEISTUNG AN UND \u00dcBERNIMMT WEDER AUSDR\u00dcCKLICH NOCH KONKLUDENT GARANTIEN IRGENDEINER ART. DIES UMFASST INSBESONDERE DAS FREISEIN VON SACH- UND RECHTSM\u00c4NGELN, UNABH\u00c4NGIG VON DEREN ERKENNBARKEIT F\u00dcR DEN LIZENZGEBER, DIE VERKEHRSF\u00c4HIGKEIT DES SCHUTZGEGENSTANDES, SEINE VERWENDBARKEIT F\u00dcR EINEN BESTIMMTEN ZWECK SOWIE DIE KORREKTHEIT VON BESCHREIBUNGEN. DIESE GEW\u00c4HRLEISTUNGSBESCHR\u00c4NKUNG GILT NICHT, SOWEIT M\u00c4NGEL ZU SCH\u00c4DEN DER IN ABSCHNITT 6 BEZEICHNETEN ART F\u00dcHREN UND AUF SEITEN DES LIZENZGEBERS DAS JEWEILS GENANNTE VERSCHULDEN BZW. VERTRETENM\u00dcSSEN EBENFALLS VORLIEGT.\n\n6. Haftungsbeschr\u00e4nkung\n\nDER LIZENZGEBER HAFTET IHNEN GEGEN\u00dcBER IN BEZUG AUF SCH\u00c4DEN AUS DER VERLETZUNG DES LEBENS, DES K\u00d6RPERS ODER DER GESUNDHEIT NUR, SOFERN IHM WENIGSTENS FAHRL\u00c4SSIGKEIT VORZUWERFEN IST, F\u00dcR SONSTIGE SCH\u00c4DEN NUR BEI GROBER FAHRL\u00c4SSIGKEIT ODER VORSATZ, UND \u00dcBERNIMMT DAR\u00dcBER HINAUS KEINERLEI FREIWILLIGE HAFTUNG.\n\n7. Erl\u00f6schen\n\n a. Diese Lizenz und die durch sie einger\u00e4umten Nutzungsrechte erl\u00f6schen mit Wirkung f\u00fcr die Zukunft im Falle eines Versto\u00dfes gegen die Lizenzbedingungen durch Sie, ohne dass es dazu der Kenntnis des Lizenzgebers vom Versto\u00df oder einer weiteren Handlung einer der Vertragsparteien bedarf. Mit nat\u00fcrlichen oder juristischen Personen, die Abwandlungen des Schutzgegenstandes oder diesen enthaltende Sammelwerke unter den Bedingungen dieser Lizenz von Ihnen erhalten haben, bestehen nachtr\u00e4glich entstandene Lizenzbeziehungen jedoch solange weiter, wie die genannten Personen sich ihrerseits an s\u00e4mtliche Lizenzbedingungen halten. Dar\u00fcber hinaus gelten die Ziffern 1, 2, 5, 6, 7, und 8 auch nach einem Erl\u00f6schen dieser Lizenz fort.\n\n b. Vorbehaltlich der oben genannten Bedingungen gilt diese Lizenz unbefristet bis der rechtliche Schutz f\u00fcr den Schutzgegenstand ausl\u00e4uft. Davon abgesehen beh\u00e4lt der Lizenzgeber das Recht, den Schutzgegenstand unter anderen Lizenzbedingungen anzubieten oder die eigene Weitergabe des Schutzgegenstandes jederzeit einzustellen, solange die Aus\u00fcbung dieses Rechts nicht einer K\u00fcndigung oder einem Widerruf dieser Lizenz (oder irgendeiner Weiterlizenzierung, die auf Grundlage dieser Lizenz bereits erfolgt ist bzw. zuk\u00fcnftig noch erfolgen muss) dient und diese Lizenz unter Ber\u00fccksichtigung der oben zum Erl\u00f6schen genannten Bedingungen vollumf\u00e4nglich wirksam bleibt.\n\n8. Sonstige Bestimmungen\n\n a. Jedes Mal wenn Sie den Schutzgegenstand f\u00fcr sich genommen oder als Teil eines Sammelwerkes verbreiten oder \u00f6ffentlich zeigen, bietet der Lizenzgeber dem Empf\u00e4nger eine Lizenz zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz.\n\n b. Jedes Mal wenn Sie eine Abwandlung des Schutzgegenstandes verbreiten oder \u00f6ffentlich zeigen, bietet der Lizenzgeber dem Empf\u00e4nger eine Lizenz am urspr\u00fcnglichen Schutzgegenstand zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz.\n\n c. Sollte eine Bestimmung dieser Lizenz unwirksam sein, so bleibt davon die Wirksamkeit der Lizenz im \u00dcbrigen unber\u00fchrt.\n\n d. Keine Bestimmung dieser Lizenz soll als abbedungen und kein Versto\u00df gegen sie als zul\u00e4ssig gelten, solange die von dem Verzicht oder von dem Versto\u00df betroffene Seite nicht schriftlich zugestimmt hat.\n\n e. Diese Lizenz (zusammen mit in ihr ausdr\u00fccklich vorgesehenen Erlaubnissen, Mitteilungen und Zustimmungen, soweit diese tats\u00e4chlich vorliegen) stellt die vollst\u00e4ndige Vereinbarung zwischen dem Lizenzgeber und Ihnen in Bezug auf den Schutzgegenstand dar. Es bestehen keine Abreden, Vereinbarungen oder Erkl\u00e4rungen in Bezug auf den Schutzgegenstand, die in dieser Lizenz nicht genannt sind. Rechtsgesch\u00e4ftliche \u00c4nderungen des Verh\u00e4ltnisses zwischen dem Lizenzgeber und Ihnen sind nur \u00fcber Modifikationen dieser Lizenz m\u00f6glich. Der Lizenzgeber ist an etwaige zus\u00e4tzliche, einseitig durch Sie \u00fcbermittelte Bestimmungen nicht gebunden. Diese Lizenz kann nur durch schriftliche Vereinbarung zwischen Ihnen und dem Lizenzgeber modifiziert werden. Derlei Modifikationen wirken ausschlie\u00dflich zwischen dem Lizenzgeber und Ihnen und wirken sich nicht auf die Dritten gem\u00e4\u00df Ziffern 8.a) und b) angeboteten Lizenzen aus.\n\n f. Sofern zwischen Ihnen und dem Lizenzgeber keine anderweitige Vereinbarung getroffen wurde und soweit Wahlfreiheit besteht, findet auf diesen Lizenzvertrag das Recht der Bundesrepublik Deutschland Anwendung.\n\nCreative Commons Notice\n\nCreative Commons ist nicht Partei dieser Lizenz und \u00fcbernimmt keinerlei Gew\u00e4hr oder dergleichen in Bezug auf den Schutzgegenstand. Creative Commons haftet Ihnen oder einer anderen Partei unter keinem rechtlichen Gesichtspunkt f\u00fcr irgendwelche Sch\u00e4den, die - abstrakt oder konkret, zuf\u00e4llig oder vorhersehbar - im Zusammenhang mit dieser Lizenz entstehen. Unbeschadet der vorangegangen beiden S\u00e4tze, hat Creative Commons alle Rechte und Pflichten eines Lizenzgebers, wenn es sich ausdr\u00fccklich als Lizenzgeber im Sinne dieser Lizenz bezeichnet.\n\nCreative Commons gew\u00e4hrt den Parteien nur insoweit das Recht, das Logo und die Marke \"Creative Commons\" zu nutzen, als dies notwendig ist, um der \u00d6ffentlichkeit gegen\u00fcber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein dar\u00fcber hinaus gehender Gebrauch der Marke \"Creative Commons\" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website ver\u00f6ffentlicht oder auf andere Weise auf Anfrage zug\u00e4nglich gemacht wird. Zur Klarstellung: Die genannten Einschr\u00e4nkungen der Markennutzung sind nicht Bestandteil dieser Lizenz.\n\nCreative Commons kann kontaktiert werden \u00fcber https://creativecommons.org/.", + "json": "cc-by-nc-sa-3.0-de.json", + "yaml": "cc-by-nc-sa-3.0-de.yml", + "html": "cc-by-nc-sa-3.0-de.html", + "license": "cc-by-nc-sa-3.0-de.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-3.0-igo", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-3.0-IGO", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-NonCommercial-ShareAlike 3.0 IGO\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. THE LICENSOR IS NOT NECESSARILY AN INTERGOVERNMENTAL ORGANIZATION (IGO), AS DEFINED IN THE LICENSE BELOW.\n\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\u201cLICENSE\u201d). THE LICENSOR (DEFINED BELOW) HOLDS COPYRIGHT AND OTHER RIGHTS IN THE WORK. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION FOR YOUR ACCEPTANCE AND AGREEMENT TO THE TERMS OF THE LICENSE.\n\n1. Definitions\n\n a. \"IGO\" means, solely and exclusively for purposes of this License, an organization established by a treaty or other instrument governed by international law and possessing its own international legal personality. Other organizations established to carry out activities across national borders and that accordingly enjoy immunity from legal process are also IGOs for the sole and exclusive purposes of this License. IGOs may include as members, in addition to states, other entities.\n \n b. \"Work\" means the literary and/or artistic work eligible for copyright protection, whatever may be the mode or form of its expression including digital form, and offered under the terms of this License. It is understood that a database, which by reason of the selection and arrangement of its contents constitutes an intellectual creation, is considered a Work.\n \n c. \"Licensor\" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License and may be, but is not necessarily, an IGO.\n \n d. \"You\" means an individual or entity exercising rights under this License.\n \n e. \"License Elements\" means the following high-level license attributes as selected by the Licensor and indicated in the title of this License: Attribution, Noncommercial, ShareAlike.\n \n f. \"Reproduce\" means to make a copy of the Work in any manner or form, and by any means.\n \n g. \"Distribute\" means the activity of making publicly available the Work or Adaptation (or copies of the Work or Adaptation), as applicable, by sale, rental, public lending or any other known form of transfer of ownership or possession of the Work or copy of the Work.\n \n h. \"Publicly Perform\" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images.\n \n i. \"Adaptation\" means a work derived from or based upon the Work, or upon the Work and other pre-existing works. Adaptations may include works such as translations, derivative works, or any alterations and arrangements of any kind involving the Work. For purposes of this License, where the Work is a musical work, performance, or phonogram, the synchronization of the Work in timed-relation with a moving image is an Adaptation. For the avoidance of doubt, including the Work in a Collection is not an Adaptation.\n \n j. \"Collection\" means a collection of literary or artistic works or other works or subject matter other than works listed in Section 1(b) which by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. For the avoidance of doubt, a Collection will not be considered as an Adaptation.\n\n2. Scope of this License. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright protection.\n\n3. License Grant. Subject to the terms and conditions of this License, the Licensor hereby grants You a worldwide, royalty-free, non-exclusive license to exercise the rights in the Work as follows:\n\n a. to Reproduce, Distribute and Publicly Perform the Work, to incorporate the Work into one or more Collections, and to Reproduce, Distribute and Publicly Perform the Work as incorporated in the Collections; and,\n \n b. to create, Reproduce, Distribute and Publicly Perform Adaptations, provided that You clearly label, demarcate or otherwise identify that changes were made to the original Work.\n\nThis License lasts for the duration of the term of the copyright in the Work licensed by the Licensor. The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by the Licensor are hereby reserved, including but not limited to the rights set forth in Section 4(e).\n\n4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\n a. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work (see section 8(a)). You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from a Licensor You must, to the extent practicable, remove from the Collection any credit (inclusive of any logo, trademark, official mark or official emblem) as required by Section 4(d), as requested. If You create an Adaptation, upon notice from a Licensor You must, to the extent practicable, remove from the Adaptation any credit (inclusive of any logo, trademark, official mark or official emblem) as required by Section 4(d), as requested.\n \n b. You may Distribute or Publicly Perform an Adaptation only under the terms of: (i) this License; (ii) a later version of this License with the same License Elements as this License; or (iii) either the unported Creative Commons license or a ported Creative Commons license (either this or a later license version) containing the same License Elements (the \u201cApplicable License\u201d). (I) You must include a copy of, or the URI for, the Applicable License with every copy of each Adaptation You Distribute or Publicly Perform. (II) You may not offer or impose any terms on the Adaptation that restrict the terms of the Applicable License or the ability of the recipient of the Adaptation to exercise the rights granted to that recipient under the terms of the Applicable License. (III) You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work as included in the Adaptation You Distribute or Publicly Perform. (IV) When You Distribute or Publicly Perform the Adaptation, You may not impose any effective technological measures on the Adaptation that restrict the ability of a recipient of the Adaptation from You to exercise the rights granted to that recipient under the terms of the Applicable License. This Section 4(b) applies to the Adaptation as incorporated in a Collection, but this does not require the Collection apart from the Adaptation itself to be made subject to the terms of the Applicable License.\n \n c. You may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be primarily intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works.\n \n d. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) any attributions that the Licensor indicates be associated with the Work as indicated in a copyright notice, (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that the Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and, (iv) consistent with Section 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation. The credit required by this Section 4(d) may be implemented in any reasonable manner; provided, however, that in the case of an Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributors to the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Licensor or others designated for attribution, of You or Your use of the Work, without the separate, express prior written permission of the Licensor or such others.\n \n e. For the avoidance of doubt:\n \n i. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License;\n \n ii. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License if Your exercise of such rights is for a purpose or use which is otherwise than noncommercial as permitted under Section 4(c) and otherwise waives the right to collect royalties through any statutory or compulsory licensing scheme; and,\n \n iii. Voluntary License Schemes. To the extent possible, the Licensor waives the right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary licensing scheme. In all other cases the Licensor expressly reserves the right to collect such royalties.\n \n f. Except as otherwise agreed in writing by the Licensor, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the honor or reputation of the Licensor where moral rights apply.\n\n5. Representations, Warranties and Disclaimer\n\nTHE LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE.\n\n6. Limitation on Liability\n\nIN NO EVENT WILL THE LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF THE LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\n a. Subject to the terms and conditions set forth in this License, the license granted here lasts for the duration of the term of the copyright in the Work licensed by the Licensor as stated in Section 3. Notwithstanding the above, the Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated below.\n \n b. If You fail to comply with this License, then this License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. Notwithstanding the foregoing, this License reinstates automatically as of the date the violation is cured, provided it is cured within 30 days of You discovering the violation, or upon express reinstatement by the Licensor. For the avoidance of doubt, this Section 7(b) does not affect any rights the Licensor may have to seek remedies for violations of this License by You.\n\n8. Miscellaneous\n\n a. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\n \n b Each time You Distribute or Publicly Perform an Adaptation, the Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\n \n c. If any provision of this License is invalid or unenforceable, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n \n d. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the Licensor.\n \n e. This License constitutes the entire agreement between You and the Licensor with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. The Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\n \n f. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). Interpretation of the scope of the rights granted by the Licensor and the conditions imposed on You under this License, this License, and the rights and conditions set forth herein shall be made with reference to copyright as determined in accordance with general principles of international law, including the above mentioned conventions.\n \n g. Nothing in this License constitutes or may be interpreted as a limitation upon or waiver of any privileges and immunities that may apply to the Licensor or You, including immunity from the legal processes of any jurisdiction, national court or other authority.\n \n h. Where the Licensor is an IGO, any and all disputes arising under this License that cannot be settled amicably shall be resolved in accordance with the following procedure:\n \n i. Pursuant to a notice of mediation communicated by reasonable means by either You or the Licensor to the other, the dispute shall be submitted to non-binding mediation conducted in accordance with rules designated by the Licensor in the copyright notice published with the Work, or if none then in accordance with those communicated in the notice of mediation. The language used in the mediation proceedings shall be English unless otherwise agreed.\n \n ii. If any such dispute has not been settled within 45 days following the date on which the notice of mediation is provided, either You or the Licensor may, pursuant to a notice of arbitration communicated by reasonable means to the other, elect to have the dispute referred to and finally determined by arbitration. The arbitration shall be conducted in accordance with the rules designated by the Licensor in the copyright notice published with the Work, or if none then in accordance with the UNCITRAL Arbitration Rules as then in force. The arbitral tribunal shall consist of a sole arbitrator and the language of the proceedings shall be English unless otherwise agreed. The place of arbitration shall be where the Licensor has its headquarters. The arbitral proceedings shall be conducted remotely (e.g., via telephone conference or written submissions) whenever practicable.\n \n iii. Interpretation of this License in any dispute submitted to mediation or arbitration shall be as set forth in Section 8(f), above.\n \nCreative Commons Notice\n\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of the Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License.\n\nCreative Commons may be contacted at https://creativecommons.org/.", + "json": "cc-by-nc-sa-3.0-igo.json", + "yaml": "cc-by-nc-sa-3.0-igo.yml", + "html": "cc-by-nc-sa-3.0-igo.html", + "license": "cc-by-nc-sa-3.0-igo.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-3.0-us", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cc-by-nc-sa-3.0-us", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n \"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with one or more other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n \"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this License.\n \"Licensor\" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License.\n \"Original Author\" means the individual, individuals, entity or entities who created the Work.\n \"Work\" means the copyrightable work of authorship offered under the terms of this License.\n \"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n \"License Elements\" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, Noncommercial, ShareAlike.\n\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\n to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\n to create and reproduce Derivative Works provided that any such Derivative Work, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked \"The original work was translated from English to Spanish,\" or a modification could indicate \"The original work has been modified.\";\n to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\n to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works;\n\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved, including but not limited to the rights set forth in Sections 4(e) and 4(f).\n\n4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\n You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of a recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. When You distribute, publicly display, publicly perform, or publicly digitally perform the Work, You may not impose any technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by Section 4(d), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by Section 4(d), as requested.\n You may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under: (i) the terms of this License; (ii) a later version of this License with the same License Elements as this License; or, (iii) either the unported Creative Commons license or a Creative Commons license for another jurisdiction (either this or a later license version) that contains the same License Elements as this License (e.g. Attribution-NonCommercial-ShareAlike 3.0 (Unported)) (\"the Applicable License\"). You must include a copy of, or the Uniform Resource Identifier for, the Applicable License with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that restrict the terms of the Applicable License or the ability of a recipient of the Work to exercise the rights granted to that recipient under the terms of the Applicable License. You must keep intact all notices that refer to the Applicable License and to the disclaimer of warranties. When You distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work, You may not impose any technological measures on the Derivative Work that restrict the ability of a recipient of the Derivative Work from You to exercise the rights granted to that recipient under the terms of the Applicable License. This Section 4(b) applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of the Applicable License.\n You may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works.\n If You distribute, publicly display, publicly perform, or publicly digitally perform the Work (as defined in Section 1 above) or any Derivative Works (as defined in Section 1 above) or Collective Works (as defined in Section 1 above), You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution (\"Attribution Parties\") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and, consistent with Section 3(b) in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., \"French translation of the Work by Original Author,\" or \"Screenplay based on original Work by Original Author\"). The credit required by this Section 4(d) may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear, if a credit for all contributing authors of the Derivative Work or Collective Work appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties.\n\n For the avoidance of doubt, where the Work is a musical composition:\n Performance Royalties Under Blanket Licenses. Licensor reserves the exclusive right to collect whether individually or, in the event that Licensor is a member of a performance rights society (e.g. ASCAP, BMI, SESAC), via that society, royalties for the public performance or public digital performance (e.g. webcast) of the Work if that performance is primarily intended for or directed toward commercial advantage or private monetary compensation.\n Mechanical Rights and Statutory Royalties. Licensor reserves the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work (\"cover version\") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions), if Your distribution of such cover version is primarily intended for or directed toward commercial advantage or private monetary compensation.\n Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor reserves the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions), if Your public digital performance is primarily intended for or directed toward commercial advantage or private monetary compensation.\n\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND ONLY TO THE EXTENT OF ANY RIGHTS HELD IN THE LICENSED WORK BY THE LICENSOR. THE LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MARKETABILITY, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\n This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works (as defined in Section 1 above) or Collective Works (as defined in Section 1 above) from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\n Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n\n8. Miscellaneous\n\n Each time You distribute or publicly digitally perform the Work (as defined in Section 1 above) or a Collective Work (as defined in Section 1 above), the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\n Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\n If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\n This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\n\n Creative Commons Notice\n\n Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\n Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License.\n\n Creative Commons may be contacted at https://creativecommons.org/.", + "json": "cc-by-nc-sa-3.0-us.json", + "yaml": "cc-by-nc-sa-3.0-us.yml", + "html": "cc-by-nc-sa-3.0-us.html", + "license": "cc-by-nc-sa-3.0-us.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-4.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-NonCommercial-ShareAlike 4.0 International\n\n=======================================================================\n\nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide legal services or legal advice. Distribution of\nCreative Commons public licenses does not create a lawyer-client or\nother relationship. Creative Commons makes its licenses and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\nwarranties regarding its licenses, any material licensed under their\nterms and conditions, or any related information. Creative Commons\ndisclaims all liability for damages resulting from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\nCreative Commons public licenses provide a standard set of terms and\nconditions that creators and other rights holders may use to share\noriginal works of authorship and other material subject to copyright\nand certain other rights specified in the public license below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive, and do not form part of our licenses.\n\n Considerations for licensors: Our public licenses are\n intended for use by those authorized to give the public\n permission to use material in ways otherwise restricted by\n copyright and certain other rights. Our licenses are\n irrevocable. Licensors should read and understand the terms\n and conditions of the license they choose before applying it.\n Licensors should also secure all rights necessary before\n applying our licenses so that the public can reuse the\n material as expected. Licensors should clearly mark any\n material not subject to the license. This includes other CC-\n licensed material, or material used under an exception or\n limitation to copyright. More considerations for licensors:\n\twiki.creativecommons.org/Considerations_for_licensors\n\n Considerations for the public: By using one of our public\n licenses, a licensor grants the public permission to use the\n licensed material under specified terms and conditions. If\n the licensor's permission is not necessary for any reason--for\n example, because of any applicable exception or limitation to\n copyright--then that use is not regulated by the license. Our\n licenses grant only permissions under copyright and certain\n other rights that a licensor has authority to grant. Use of\n the licensed material may still be restricted for other\n reasons, including because others have copyright or other\n rights in the material. A licensor may make special requests,\n such as asking that all changes be marked or described.\n Although not required by our licenses, you are encouraged to\n respect those requests where reasonable. More considerations\n for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\nCreative Commons Attribution-NonCommercial-ShareAlike 4.0 International\nPublic License\n\nBy exercising the Licensed Rights (defined below), You accept and agree\nto be bound by the terms and conditions of this Creative Commons\nAttribution-NonCommercial-ShareAlike 4.0 International Public License\n(\"Public License\"). To the extent this Public License may be\ninterpreted as a contract, You are granted the Licensed Rights in\nconsideration of Your acceptance of these terms and conditions, and the\nLicensor grants You such rights in consideration of benefits the\nLicensor receives from making the Licensed Material available under\nthese terms and conditions.\n\n\nSection 1 -- Definitions.\n\n a. Adapted Material means material subject to Copyright and Similar\n Rights that is derived from or based upon the Licensed Material\n and in which the Licensed Material is translated, altered,\n arranged, transformed, or otherwise modified in a manner requiring\n permission under the Copyright and Similar Rights held by the\n Licensor. For purposes of this Public License, where the Licensed\n Material is a musical work, performance, or sound recording,\n Adapted Material is always produced where the Licensed Material is\n synched in timed relation with a moving image.\n\n b. Adapter's License means the license You apply to Your Copyright\n and Similar Rights in Your contributions to Adapted Material in\n accordance with the terms and conditions of this Public License.\n\n c. BY-NC-SA Compatible License means a license listed at\n creativecommons.org/compatiblelicenses, approved by Creative\n Commons as essentially the equivalent of this Public License.\n\n d. Copyright and Similar Rights means copyright and/or similar rights\n closely related to copyright including, without limitation,\n performance, broadcast, sound recording, and Sui Generis Database\n Rights, without regard to how the rights are labeled or\n categorized. For purposes of this Public License, the rights\n specified in Section 2(b)(1)-(2) are not Copyright and Similar\n Rights.\n\n e. Effective Technological Measures means those measures that, in the\n absence of proper authority, may not be circumvented under laws\n fulfilling obligations under Article 11 of the WIPO Copyright\n Treaty adopted on December 20, 1996, and/or similar international\n agreements.\n\n f. Exceptions and Limitations means fair use, fair dealing, and/or\n any other exception or limitation to Copyright and Similar Rights\n that applies to Your use of the Licensed Material.\n\n g. License Elements means the license attributes listed in the name\n of a Creative Commons Public License. The License Elements of this\n Public License are Attribution, NonCommercial, and ShareAlike.\n\n h. Licensed Material means the artistic or literary work, database,\n or other material to which the Licensor applied this Public\n License.\n\n i. Licensed Rights means the rights granted to You subject to the\n terms and conditions of this Public License, which are limited to\n all Copyright and Similar Rights that apply to Your use of the\n Licensed Material and that the Licensor has authority to license.\n\n j. Licensor means the individual(s) or entity(ies) granting rights\n under this Public License.\n\n k. NonCommercial means not primarily intended for or directed towards\n commercial advantage or monetary compensation. For purposes of\n this Public License, the exchange of the Licensed Material for\n other material subject to Copyright and Similar Rights by digital\n file-sharing or similar means is NonCommercial provided there is\n no payment of monetary compensation in connection with the\n exchange.\n\n l. Share means to provide material to the public by any means or\n process that requires permission under the Licensed Rights, such\n as reproduction, public display, public performance, distribution,\n dissemination, communication, or importation, and to make material\n available to the public including in ways that members of the\n public may access the material from a place and at a time\n individually chosen by them.\n\n m. Sui Generis Database Rights means rights other than copyright\n resulting from Directive 96/9/EC of the European Parliament and of\n the Council of 11 March 1996 on the legal protection of databases,\n as amended and/or succeeded, as well as other essentially\n equivalent rights anywhere in the world.\n\n n. You means the individual or entity exercising the Licensed Rights\n under this Public License. Your has a corresponding meaning.\n\n\nSection 2 -- Scope.\n\n a. License grant.\n\n 1. Subject to the terms and conditions of this Public License,\n the Licensor hereby grants You a worldwide, royalty-free,\n non-sublicensable, non-exclusive, irrevocable license to\n exercise the Licensed Rights in the Licensed Material to:\n\n a. reproduce and Share the Licensed Material, in whole or\n in part, for NonCommercial purposes only; and\n\n b. produce, reproduce, and Share Adapted Material for\n NonCommercial purposes only.\n\n 2. Exceptions and Limitations. For the avoidance of doubt, where\n Exceptions and Limitations apply to Your use, this Public\n License does not apply, and You do not need to comply with\n its terms and conditions.\n\n 3. Term. The term of this Public License is specified in Section\n 6(a).\n\n 4. Media and formats; technical modifications allowed. The\n Licensor authorizes You to exercise the Licensed Rights in\n all media and formats whether now known or hereafter created,\n and to make technical modifications necessary to do so. The\n Licensor waives and/or agrees not to assert any right or\n authority to forbid You from making technical modifications\n necessary to exercise the Licensed Rights, including\n technical modifications necessary to circumvent Effective\n Technological Measures. For purposes of this Public License,\n simply making modifications authorized by this Section 2(a)\n (4) never produces Adapted Material.\n\n 5. Downstream recipients.\n\n a. Offer from the Licensor -- Licensed Material. Every\n recipient of the Licensed Material automatically\n receives an offer from the Licensor to exercise the\n Licensed Rights under the terms and conditions of this\n Public License.\n\n b. Additional offer from the Licensor -- Adapted Material.\n Every recipient of Adapted Material from You\n automatically receives an offer from the Licensor to\n exercise the Licensed Rights in the Adapted Material\n under the conditions of the Adapter's License You apply.\n\n c. No downstream restrictions. You may not offer or impose\n any additional or different terms or conditions on, or\n apply any Effective Technological Measures to, the\n Licensed Material if doing so restricts exercise of the\n Licensed Rights by any recipient of the Licensed\n Material.\n\n 6. No endorsement. Nothing in this Public License constitutes or\n may be construed as permission to assert or imply that You\n are, or that Your use of the Licensed Material is, connected\n with, or sponsored, endorsed, or granted official status by,\n the Licensor or others designated to receive attribution as\n provided in Section 3(a)(1)(A)(i).\n\n b. Other rights.\n\n 1. Moral rights, such as the right of integrity, are not\n licensed under this Public License, nor are publicity,\n privacy, and/or other similar personality rights; however, to\n the extent possible, the Licensor waives and/or agrees not to\n assert any such rights held by the Licensor to the limited\n extent necessary to allow You to exercise the Licensed\n Rights, but not otherwise.\n\n 2. Patent and trademark rights are not licensed under this\n Public License.\n\n 3. To the extent possible, the Licensor waives any right to\n collect royalties from You for the exercise of the Licensed\n Rights, whether directly or through a collecting society\n under any voluntary or waivable statutory or compulsory\n licensing scheme. In all other cases the Licensor expressly\n reserves any right to collect such royalties, including when\n the Licensed Material is used other than for NonCommercial\n purposes.\n\n\nSection 3 -- License Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the\nfollowing conditions.\n\n a. Attribution.\n\n 1. If You Share the Licensed Material (including in modified\n form), You must:\n\n a. retain the following if it is supplied by the Licensor\n with the Licensed Material:\n\n i. identification of the creator(s) of the Licensed\n Material and any others designated to receive\n attribution, in any reasonable manner requested by\n the Licensor (including by pseudonym if\n designated);\n\n ii. a copyright notice;\n\n iii. a notice that refers to this Public License;\n\n iv. a notice that refers to the disclaimer of\n warranties;\n\n v. a URI or hyperlink to the Licensed Material to the\n extent reasonably practicable;\n\n b. indicate if You modified the Licensed Material and\n retain an indication of any previous modifications; and\n\n c. indicate the Licensed Material is licensed under this\n Public License, and include the text of, or the URI or\n hyperlink to, this Public License.\n\n 2. You may satisfy the conditions in Section 3(a)(1) in any\n reasonable manner based on the medium, means, and context in\n which You Share the Licensed Material. For example, it may be\n reasonable to satisfy the conditions by providing a URI or\n hyperlink to a resource that includes the required\n information.\n 3. If requested by the Licensor, You must remove any of the\n information required by Section 3(a)(1)(A) to the extent\n reasonably practicable.\n\n b. ShareAlike.\n\n In addition to the conditions in Section 3(a), if You Share\n Adapted Material You produce, the following conditions also apply.\n\n 1. The Adapter's License You apply must be a Creative Commons\n license with the same License Elements, this version or\n later, or a BY-NC-SA Compatible License.\n\n 2. You must include the text of, or the URI or hyperlink to, the\n Adapter's License You apply. You may satisfy this condition\n in any reasonable manner based on the medium, means, and\n context in which You Share Adapted Material.\n\n 3. You may not offer or impose any additional or different terms\n or conditions on, or apply any Effective Technological\n Measures to, Adapted Material that restrict exercise of the\n rights granted under the Adapter's License You apply.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database Rights that\napply to Your use of the Licensed Material:\n\n a. for the avoidance of doubt, Section 2(a)(1) grants You the right\n to extract, reuse, reproduce, and Share all or a substantial\n portion of the contents of the database for NonCommercial purposes\n only;\n\n b. if You include all or a substantial portion of the database\n contents in a database in which You have Sui Generis Database\n Rights, then the database in which You have Sui Generis Database\n Rights (but not its individual contents) is Adapted Material,\n including for purposes of Section 3(b); and\n\n c. You must comply with the conditions in Section 3(a) if You Share\n all or a substantial portion of the contents of the database.\n\nFor the avoidance of doubt, this Section 4 supplements and does not\nreplace Your obligations under this Public License where the Licensed\nRights include other Copyright and Similar Rights.\n\n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\n a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\n PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\n b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE\n TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\n COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR\n USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR\n IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.\n\n c. The disclaimer of warranties and limitation of liability provided\n above shall be interpreted in a manner that, to the extent\n possible, most closely approximates an absolute disclaimer and\n waiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\n a. This Public License applies for the term of the Copyright and\n Similar Rights licensed here. However, if You fail to comply with\n this Public License, then Your rights under this Public License\n terminate automatically.\n\n b. Where Your right to use the Licensed Material has terminated under\n Section 6(a), it reinstates:\n\n 1. automatically as of the date the violation is cured, provided\n it is cured within 30 days of Your discovery of the\n violation; or\n\n 2. upon express reinstatement by the Licensor.\n\n For the avoidance of doubt, this Section 6(b) does not affect any\n right the Licensor may have to seek remedies for Your violations\n of this Public License.\n\n c. For the avoidance of doubt, the Licensor may also offer the\n Licensed Material under separate terms or conditions or stop\n distributing the Licensed Material at any time; however, doing so\n will not terminate this Public License.\n\n d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n License.\n\n\nSection 7 -- Other Terms and Conditions.\n\n a. The Licensor shall not be bound by any additional or different\n terms or conditions communicated by You unless expressly agreed.\n\n b. Any arrangements, understandings, or agreements regarding the\n Licensed Material not stated herein are separate from and\n independent of the terms and conditions of this Public License.\n\n\nSection 8 -- Interpretation.\n\n a. For the avoidance of doubt, this Public License does not, and\n shall not be interpreted to, reduce, limit, restrict, or impose\n conditions on any use of the Licensed Material that could lawfully\n be made without permission under this Public License.\n\n b. To the extent possible, if any provision of this Public License is\n deemed unenforceable, it shall be automatically reformed to the\n minimum extent necessary to make it enforceable. If the provision\n cannot be reformed, it shall be severed from this Public License\n without affecting the enforceability of the remaining terms and\n conditions.\n\n c. No term or condition of this Public License will be waived and no\n failure to comply consented to unless expressly agreed to by the\n Licensor.\n\n d. Nothing in this Public License constitutes or may be interpreted\n as a limitation upon, or waiver of, any privileges and immunities\n that apply to the Licensor or You, including from the legal\n processes of any jurisdiction or authority.\n\n=======================================================================\n\nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons may elect to apply one of\nits public licenses to material it publishes and in those instances\nwill be considered the \u201cLicensor.\u201d The text of the Creative Commons\npublic licenses is dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the limited purpose of indicating that\nmaterial is shared under a Creative Commons public license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies, Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or any other trademark or logo\nof Creative Commons without its prior written consent including,\nwithout limitation, in connection with any unauthorized modifications\nto any of its public licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic licenses.\n\nCreative Commons may be contacted at creativecommons.org.", + "json": "cc-by-nc-sa-4.0.json", + "yaml": "cc-by-nc-sa-4.0.yml", + "html": "cc-by-nc-sa-4.0.html", + "license": "cc-by-nc-sa-4.0.LICENSE" + }, + { + "license_key": "cc-by-nd-1.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-ND-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-NoDerivs 1.0\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.\n\n4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied. Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\n\n5. Representations, Warranties and Disclaimer\nBy offering the Work for public release under this License, Licensor represents and warrants that, to the best of Licensor's knowledge after reasonable inquiry:\nLicensor has secured all rights in the Work necessary to grant the license rights hereunder and to permit the lawful exercise of the rights granted hereunder without You having any obligation to pay any royalties, compulsory license fees, residuals or any other payments;\nThe Work does not infringe the copyright, trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party.\nEXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF THE WORK.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n\n8. Miscellaneous\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", + "json": "cc-by-nd-1.0.json", + "yaml": "cc-by-nd-1.0.yml", + "html": "cc-by-nd-1.0.html", + "license": "cc-by-nd-1.0.LICENSE" + }, + { + "license_key": "cc-by-nd-2.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-ND-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-NoDerivs 2.0\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this License.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works.\nFor the avoidance of doubt, where the work is a musical composition:\n\nPerformance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work.\nMechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights society or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work (\"cover version\") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions).\nWebcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions).\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats, but otherwise you have no rights to make Derivative Works. All rights not expressly granted by Licensor are hereby reserved.\n\n4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; and to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work. Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE MATERIALS, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", + "json": "cc-by-nd-2.0.json", + "yaml": "cc-by-nd-2.0.yml", + "html": "cc-by-nd-2.0.html", + "license": "cc-by-nd-2.0.LICENSE" + }, + { + "license_key": "cc-by-nd-2.5", + "category": "Source-available", + "spdx_license_key": "CC-BY-ND-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-NoDerivs 2.5\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this License.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works.\nFor the avoidance of doubt, where the work is a musical composition:\n\nPerformance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work.\nMechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights society or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work (\"cover version\") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions).\nWebcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions).\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats, but otherwise you have no rights to make Derivative Works. All rights not expressly granted by Licensor are hereby reserved.\n\n4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(b), as requested.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; and to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work. Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE MATERIALS, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", + "json": "cc-by-nd-2.5.json", + "yaml": "cc-by-nd-2.5.yml", + "html": "cc-by-nd-2.5.html", + "license": "cc-by-nd-2.5.LICENSE" + }, + { + "license_key": "cc-by-nd-3.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-ND-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Legal Code\n\nAttribution-NoDerivs 3.0 Unported\n\n CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\n LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN\n ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS\n INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES\n REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR\n DAMAGES RESULTING FROM ITS USE.\n\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE\nCOMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY\nCOPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS\nAUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE\nTO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY\nBE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS\nCONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND\nCONDITIONS.\n\n1. Definitions\n\n a. \"Adaptation\" means a work based upon the Work, or upon the Work and\n other pre-existing works, such as a translation, adaptation,\n derivative work, arrangement of music or other alterations of a\n literary or artistic work, or phonogram or performance and includes\n cinematographic adaptations or any other form in which the Work may be\n recast, transformed, or adapted including in any form recognizably\n derived from the original, except that a work that constitutes a\n Collection will not be considered an Adaptation for the purpose of\n this License. For the avoidance of doubt, where the Work is a musical\n work, performance or phonogram, the synchronization of the Work in\n timed-relation with a moving image (\"synching\") will be considered an\n Adaptation for the purpose of this License.\n b. \"Collection\" means a collection of literary or artistic works, such as\n encyclopedias and anthologies, or performances, phonograms or\n broadcasts, or other works or subject matter other than works listed\n in Section 1(f) below, which, by reason of the selection and\n arrangement of their contents, constitute intellectual creations, in\n which the Work is included in its entirety in unmodified form along\n with one or more other contributions, each constituting separate and\n independent works in themselves, which together are assembled into a\n collective whole. A work that constitutes a Collection will not be\n considered an Adaptation (as defined above) for the purposes of this\n License.\n c. \"Distribute\" means to make available to the public the original and\n copies of the Work through sale or other transfer of ownership.\n d. \"Licensor\" means the individual, individuals, entity or entities that\n offer(s) the Work under the terms of this License.\n e. \"Original Author\" means, in the case of a literary or artistic work,\n the individual, individuals, entity or entities who created the Work\n or if no individual or entity can be identified, the publisher; and in\n addition (i) in the case of a performance the actors, singers,\n musicians, dancers, and other persons who act, sing, deliver, declaim,\n play in, interpret or otherwise perform literary or artistic works or\n expressions of folklore; (ii) in the case of a phonogram the producer\n being the person or legal entity who first fixes the sounds of a\n performance or other sounds; and, (iii) in the case of broadcasts, the\n organization that transmits the broadcast.\n f. \"Work\" means the literary and/or artistic work offered under the terms\n of this License including without limitation any production in the\n literary, scientific and artistic domain, whatever may be the mode or\n form of its expression including digital form, such as a book,\n pamphlet and other writing; a lecture, address, sermon or other work\n of the same nature; a dramatic or dramatico-musical work; a\n choreographic work or entertainment in dumb show; a musical\n composition with or without words; a cinematographic work to which are\n assimilated works expressed by a process analogous to cinematography;\n a work of drawing, painting, architecture, sculpture, engraving or\n lithography; a photographic work to which are assimilated works\n expressed by a process analogous to photography; a work of applied\n art; an illustration, map, plan, sketch or three-dimensional work\n relative to geography, topography, architecture or science; a\n performance; a broadcast; a phonogram; a compilation of data to the\n extent it is protected as a copyrightable work; or a work performed by\n a variety or circus performer to the extent it is not otherwise\n considered a literary or artistic work.\n g. \"You\" means an individual or entity exercising rights under this\n License who has not previously violated the terms of this License with\n respect to the Work, or who has received express permission from the\n Licensor to exercise rights under this License despite a previous\n violation.\n h. \"Publicly Perform\" means to perform public recitations of the Work and\n to communicate to the public those public recitations, by any means or\n process, including by wire or wireless means or public digital\n performances; to make available to the public Works in such a way that\n members of the public may access these Works from a place and at a\n place individually chosen by them; to perform the Work to the public\n by any means or process and the communication to the public of the\n performances of the Work, including by public digital performance; to\n broadcast and rebroadcast the Work by any means including signs,\n sounds or images.\n i. \"Reproduce\" means to make copies of the Work by any means including\n without limitation by sound or visual recordings and the right of\n fixation and reproducing fixations of the Work, including storage of a\n protected performance or phonogram in digital form or other electronic\n medium.\n\n2. Fair Dealing Rights. Nothing in this License is intended to reduce,\nlimit, or restrict any uses free from copyright or rights arising from\nlimitations or exceptions that are provided for in connection with the\ncopyright protection under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License,\nLicensor hereby grants You a worldwide, royalty-free, non-exclusive,\nperpetual (for the duration of the applicable copyright) license to\nexercise the rights in the Work as stated below:\n\n a. to Reproduce the Work, to incorporate the Work into one or more\n Collections, and to Reproduce the Work as incorporated in the\n Collections; and,\n b. to Distribute and Publicly Perform the Work including as incorporated\n in Collections.\n c. For the avoidance of doubt:\n\n i. Non-waivable Compulsory License Schemes. In those jurisdictions in\n which the right to collect royalties through any statutory or\n compulsory licensing scheme cannot be waived, the Licensor\n reserves the exclusive right to collect such royalties for any\n exercise by You of the rights granted under this License;\n ii. Waivable Compulsory License Schemes. In those jurisdictions in\n which the right to collect royalties through any statutory or\n compulsory licensing scheme can be waived, the Licensor waives the\n exclusive right to collect such royalties for any exercise by You\n of the rights granted under this License; and,\n iii. Voluntary License Schemes. The Licensor waives the right to\n collect royalties, whether individually or, in the event that the\n Licensor is a member of a collecting society that administers\n voluntary licensing schemes, via that society, from any exercise\n by You of the rights granted under this License.\n\nThe above rights may be exercised in all media and formats whether now\nknown or hereafter devised. The above rights include the right to make\nsuch modifications as are technically necessary to exercise the rights in\nother media and formats, but otherwise you have no rights to make\nAdaptations. Subject to Section 8(f), all rights not expressly granted by\nLicensor are hereby reserved.\n\n4. Restrictions. The license granted in Section 3 above is expressly made\nsubject to and limited by the following restrictions:\n\n a. You may Distribute or Publicly Perform the Work only under the terms\n of this License. You must include a copy of, or the Uniform Resource\n Identifier (URI) for, this License with every copy of the Work You\n Distribute or Publicly Perform. You may not offer or impose any terms\n on the Work that restrict the terms of this License or the ability of\n the recipient of the Work to exercise the rights granted to that\n recipient under the terms of the License. You may not sublicense the\n Work. You must keep intact all notices that refer to this License and\n to the disclaimer of warranties with every copy of the Work You\n Distribute or Publicly Perform. When You Distribute or Publicly\n Perform the Work, You may not impose any effective technological\n measures on the Work that restrict the ability of a recipient of the\n Work from You to exercise the rights granted to that recipient under\n the terms of the License. This Section 4(a) applies to the Work as\n incorporated in a Collection, but this does not require the Collection\n apart from the Work itself to be made subject to the terms of this\n License. If You create a Collection, upon notice from any Licensor You\n must, to the extent practicable, remove from the Collection any credit\n as required by Section 4(b), as requested.\n b. If You Distribute, or Publicly Perform the Work or Collections, You\n must, unless a request has been made pursuant to Section 4(a), keep\n intact all copyright notices for the Work and provide, reasonable to\n the medium or means You are utilizing: (i) the name of the Original\n Author (or pseudonym, if applicable) if supplied, and/or if the\n Original Author and/or Licensor designate another party or parties\n (e.g., a sponsor institute, publishing entity, journal) for\n attribution (\"Attribution Parties\") in Licensor's copyright notice,\n terms of service or by other reasonable means, the name of such party\n or parties; (ii) the title of the Work if supplied; (iii) to the\n extent reasonably practicable, the URI, if any, that Licensor\n specifies to be associated with the Work, unless such URI does not\n refer to the copyright notice or licensing information for the Work.\n The credit required by this Section 4(b) may be implemented in any\n reasonable manner; provided, however, that in the case of a\n Collection, at a minimum such credit will appear, if a credit for all\n contributing authors of the Collection appears, then as part of these\n credits and in a manner at least as prominent as the credits for the\n other contributing authors. For the avoidance of doubt, You may only\n use the credit required by this Section for the purpose of attribution\n in the manner set out above and, by exercising Your rights under this\n License, You may not implicitly or explicitly assert or imply any\n connection with, sponsorship or endorsement by the Original Author,\n Licensor and/or Attribution Parties, as appropriate, of You or Your\n use of the Work, without the separate, express prior written\n permission of the Original Author, Licensor and/or Attribution\n Parties.\n c. Except as otherwise agreed in writing by the Licensor or as may be\n otherwise permitted by applicable law, if You Reproduce, Distribute or\n Publicly Perform the Work either by itself or as part of any\n Collections, You must not distort, mutilate, modify or take other\n derogatory action in relation to the Work which would be prejudicial\n to the Original Author's honor or reputation.\n\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR\nOFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY\nKIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,\nINCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,\nFITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF\nLATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS,\nWHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION\nOF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE\nLAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR\nANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES\nARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS\nBEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\n a. This License and the rights granted hereunder will terminate\n automatically upon any breach by You of the terms of this License.\n Individuals or entities who have received Collections from You under\n this License, however, will not have their licenses terminated\n provided such individuals or entities remain in full compliance with\n those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any\n termination of this License.\n b. Subject to the above terms and conditions, the license granted here is\n perpetual (for the duration of the applicable copyright in the Work).\n Notwithstanding the above, Licensor reserves the right to release the\n Work under different license terms or to stop distributing the Work at\n any time; provided, however that any such election will not serve to\n withdraw this License (or any other license that has been, or is\n required to be, granted under the terms of this License), and this\n License will continue in full force and effect unless terminated as\n stated above.\n\n8. Miscellaneous\n\n a. Each time You Distribute or Publicly Perform the Work or a Collection,\n the Licensor offers to the recipient a license to the Work on the same\n terms and conditions as the license granted to You under this License.\n b. If any provision of this License is invalid or unenforceable under\n applicable law, it shall not affect the validity or enforceability of\n the remainder of the terms of this License, and without further action\n by the parties to this agreement, such provision shall be reformed to\n the minimum extent necessary to make such provision valid and\n enforceable.\n c. No term or provision of this License shall be deemed waived and no\n breach consented to unless such waiver or consent shall be in writing\n and signed by the party to be charged with such waiver or consent.\n d. This License constitutes the entire agreement between the parties with\n respect to the Work licensed here. There are no understandings,\n agreements or representations with respect to the Work not specified\n here. Licensor shall not be bound by any additional provisions that\n may appear in any communication from You. This License may not be\n modified without the mutual written agreement of the Licensor and You.\n e. The rights granted under, and the subject matter referenced, in this\n License were drafted utilizing the terminology of the Berne Convention\n for the Protection of Literary and Artistic Works (as amended on\n September 28, 1979), the Rome Convention of 1961, the WIPO Copyright\n Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996\n and the Universal Copyright Convention (as revised on July 24, 1971).\n These rights and subject matter take effect in the relevant\n jurisdiction in which the License terms are sought to be enforced\n according to the corresponding provisions of the implementation of\n those treaty provisions in the applicable national law. If the\n standard suite of rights granted under applicable copyright law\n includes additional rights not granted under this License, such\n additional rights are deemed to be included in the License; this\n License is not intended to restrict the license of any rights under\n applicable law.\n\n\nCreative Commons Notice\n\n Creative Commons is not a party to this License, and makes no warranty\n whatsoever in connection with the Work. Creative Commons will not be\n liable to You or any party on any legal theory for any damages\n whatsoever, including without limitation any general, special,\n incidental or consequential damages arising in connection to this\n license. Notwithstanding the foregoing two (2) sentences, if Creative\n Commons has expressly identified itself as the Licensor hereunder, it\n shall have all rights and obligations of Licensor.\n\n Except for the limited purpose of indicating to the public that the\n Work is licensed under the CCPL, Creative Commons does not authorize\n the use by either party of the trademark \"Creative Commons\" or any\n related trademark or logo of Creative Commons without the prior\n written consent of Creative Commons. Any permitted use will be in\n compliance with Creative Commons' then-current trademark usage\n guidelines, as may be published on its website or otherwise made\n available upon request from time to time. For the avoidance of doubt,\n this trademark restriction does not form part of this License.\n\n Creative Commons may be contacted at https://creativecommons.org/.", + "json": "cc-by-nd-3.0.json", + "yaml": "cc-by-nd-3.0.yml", + "html": "cc-by-nd-3.0.html", + "license": "cc-by-nd-3.0.LICENSE" + }, + { + "license_key": "cc-by-nd-3.0-de", + "category": "Free Restricted", + "spdx_license_key": "CC-BY-ND-3.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Namensnennung - Keine Bearbeitungen 3.0 Deutschland\n\n CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ F\u00dcHRT ZU KEINEM MANDATSVERH\u00c4LTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEW\u00c4HR ZUR VERF\u00dcGUNG. CREATIVE COMMONS \u00dcBERNIMMT KEINE GEW\u00c4HRLEISTUNG F\u00dcR DIE GELIEFERTEN INFORMATIONEN UND SCHLIE\u00dfT DIE HAFTUNG F\u00dcR SCH\u00c4DEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN.\n\nLizenz\n\nDER GEGENSTAND DIESER LIZENZ (WIE UNTER \"SCHUTZGEGENSTAND\" DEFINIERT) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\", \"LIZENZ\" ODER \"LIZENZVERTRAG\") ZUR VERF\u00dcGUNG GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER ANDERE GESETZE GESCH\u00dcTZT. JEDE FORM DER NUTZUNG DES SCHUTZGEGENSTANDES, DIE NICHT AUFGRUND DIESER LIZENZ ODER DURCH GESETZE GESTATTET IST, IST UNZUL\u00c4SSIG.\n\nDURCH DIE AUS\u00dcBUNG EINES DURCH DIESE LIZENZ GEW\u00c4HRTEN RECHTS AN DEM SCHUTZGEGENSTAND ERKL\u00c4REN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH EINVERSTANDEN. SOWEIT DIESE LIZENZ ALS LIZENZVERTRAG ANZUSEHEN IST, GEW\u00c4HRT IHNEN DER LIZENZGEBER DIE IN DER LIZENZ GENANNTEN RECHTE UNENTGELTLICH UND IM AUSTAUSCH DAF\u00dcR, DASS SIE DAS GEBUNDENSEIN AN DIE LIZENZBEDINGUNGEN AKZEPTIEREN.\n\n1. Definitionen\n\n a. Der Begriff \"Abwandlung\" im Sinne dieser Lizenz bezeichnet das Ergebnis jeglicher Art von Ver\u00e4nderung des Schutzgegenstandes, solange die eigenpers\u00f6nlichen Z\u00fcge des Schutzgegenstandes darin nicht verblassen und daran eigene Schutzrechte entstehen. Das kann insbesondere eine Bearbeitung, Umgestaltung, \u00c4nderung, Anpassung, \u00dcbersetzung oder Heranziehung des Schutzgegenstandes zur Vertonung von Laufbildern sein. Nicht als Abwandlung des Schutzgegenstandes gelten seine Aufnahme in eine Sammlung oder ein Sammelwerk und die freie Benutzung des Schutzgegenstandes.\n\n b. Der Begriff \"Sammelwerk\" im Sinne dieser Lizenz meint eine Zusammenstellung von literarischen, k\u00fcnstlerischen oder wissenschaftlichen Inhalten, sofern diese Zusammenstellung aufgrund von Auswahl und Anordnung der darin enthaltenen selbst\u00e4ndigen Elemente eine geistige Sch\u00f6pfung darstellt, unabh\u00e4ngig davon, ob die Elemente systematisch oder methodisch angelegt und dadurch einzeln zug\u00e4nglich sind oder nicht.\n\n c. \"Verbreiten\" im Sinne dieser Lizenz bedeutet, den Schutzgegenstand im Original oder in Form von Vervielf\u00e4ltigungsst\u00fccken, mithin in k\u00f6rperlich fixierter Form der \u00d6ffentlichkeit anzubieten oder in Verkehr zu bringen.\n\n d. Der \"Lizenzgeber\" im Sinne dieser Lizenz ist diejenige nat\u00fcrliche oder juristische Person oder Gruppe, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet und insoweit als Rechteinhaberin auftritt.\n\n e. \"Rechteinhaber\" im Sinne dieser Lizenz ist der Urheber des Schutzgegenstandes oder jede andere nat\u00fcrliche oder juristische Person oder Gruppe von Personen, die am Schutzgegenstand ein Immaterialg\u00fcterrecht erlangt hat, welches die in Abschnitt 3 genannten Handlungen erfasst und bei dem eine Einr\u00e4umung von Nutzungsrechten oder eine Weiter\u00fcbertragung an Dritte m\u00f6glich ist.\n\n f. Der Begriff \"Schutzgegenstand\" bezeichnet in dieser Lizenz den literarischen, k\u00fcnstlerischen oder wissenschaftlichen Inhalt, der unter den Bedingungen dieser Lizenz angeboten wird. Das kann insbesondere eine pers\u00f6nliche geistige Sch\u00f6pfung jeglicher Art, ein Werk der kleinen M\u00fcnze, ein nachgelassenes Werk oder auch ein Lichtbild oder anderes Objekt eines verwandten Schutzrechts sein, unabh\u00e4ngig von der Art seiner Fixierung und unabh\u00e4ngig davon, auf welche Weise jeweils eine Wahrnehmung erfolgen kann, gleichviel ob in analoger oder digitaler Form. Soweit Datenbanken oder Zusammenstellungen von Daten einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen, unterfallen auch sie dem Begriff \"Schutzgegenstand\" im Sinne dieser Lizenz.\n\n g. Mit \"Sie\" bzw. \"Ihnen\" ist die nat\u00fcrliche oder juristische Person gemeint, die in dieser Lizenz im Abschnitt 3 genannte Nutzungen des Schutzgegenstandes vornimmt und zuvor in Hinblick auf den Schutzgegenstand nicht gegen Bedingungen dieser Lizenz versto\u00dfen oder aber die ausdr\u00fcckliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese Lizenz gew\u00e4hrten Nutzungsrechte trotz eines vorherigen Versto\u00dfes auszu\u00fcben.\n\n h. Unter \"\u00d6ffentlich Zeigen\" im Sinne dieser Lizenz sind Ver\u00f6ffentlichungen und Pr\u00e4sentationen des Schutzgegenstandes zu verstehen, die f\u00fcr eine Mehrzahl von Mitgliedern der \u00d6ffentlichkeit bestimmt sind und in unk\u00f6rperlicher Form mittels \u00f6ffentlicher Wiedergabe in Form von Vortrag, Auff\u00fchrung, Vorf\u00fchrung, Darbietung, Sendung, Weitersendung, zeit- und ortsunabh\u00e4ngiger Zug\u00e4nglichmachung oder in k\u00f6rperlicher Form mittels Ausstellung erfolgen, unabh\u00e4ngig von bestimmten Veranstaltungen und unabh\u00e4ngig von den zum Einsatz kommenden Techniken und Verfahren, einschlie\u00dflich drahtgebundener oder drahtloser Mittel und Einstellen in das Internet.\n\n i. \"Vervielf\u00e4ltigen\" im Sinne dieser Lizenz bedeutet, mittels beliebiger Verfahren Vervielf\u00e4ltigungsst\u00fccke des Schutzgegenstandes herzustellen, insbesondere durch Ton- oder Bildaufzeichnungen, und umfasst auch den Vorgang, erstmals k\u00f6rperliche Fixierungen des Schutzgegenstandes sowie Vervielf\u00e4ltigungsst\u00fccke dieser Fixierungen anzufertigen, sowie die \u00dcbertragung des Schutzgegenstandes auf einen Bild- oder Tontr\u00e4ger oder auf ein anderes elektronisches Medium, gleichviel ob in digitaler oder analoger Form.\n\n2. Schranken des Immaterialg\u00fcterrechts. Diese Lizenz ist in keiner Weise darauf gerichtet, Befugnisse zur Nutzung des Schutzgegenstandes zu vermindern, zu beschr\u00e4nken oder zu vereiteln, die Ihnen aufgrund der Schranken des Urheberrechts oder anderer Rechtsnormen bereits ohne Weiteres zustehen oder sich aus dem Fehlen eines immaterialg\u00fcterrechtlichen Schutzes ergeben.\n\n3. Einr\u00e4umung von Nutzungsrechten. Unter den Bedingungen dieser Lizenz r\u00e4umt Ihnen der Lizenzgeber - unbeschadet unverzichtbarer Rechte und vorbehaltlich des Abschnitts 3.c) - das verg\u00fctungsfreie, r\u00e4umlich und zeitlich (f\u00fcr die Dauer des Schutzrechts am Schutzgegenstand) unbeschr\u00e4nkte einfache Recht ein, den Schutzgegenstand auf die folgenden Arten und Weisen zu nutzen (\"unentgeltlich einger\u00e4umtes einfaches Nutzungsrecht f\u00fcr jedermann\"):\n\n a. Den Schutzgegenstand in beliebiger Form und Menge zu vervielf\u00e4ltigen, ihn in Sammelwerke zu integrieren und ihn als Teil solcher Sammelwerke zu vervielf\u00e4ltigen;\n\n b. den Schutzgegenstand, allein oder in Sammelwerke aufgenommen, \u00f6ffentlich zu zeigen und zu verbreiten.\n\n c. Bez\u00fcglich Verg\u00fctung f\u00fcr die Nutzung des Schutzgegenstandes gilt Folgendes:\n\n i. Unverzichtbare gesetzliche Verg\u00fctungsanspr\u00fcche: Soweit unverzichtbare Verg\u00fctungsanspr\u00fcche im Gegenzug f\u00fcr gesetzliche Lizenzen vorgesehen oder Pauschalabgabensysteme (zum Beispiel f\u00fcr Leermedien) vorhanden sind, beh\u00e4lt sich der Lizenzgeber das ausschlie\u00dfliche Recht vor, die entsprechende Verg\u00fctung einzuziehen f\u00fcr jede Aus\u00fcbung eines Rechts aus dieser Lizenz durch Sie.\n\n ii. Verg\u00fctung bei Zwangslizenzen: Sofern Zwangslizenzen au\u00dferhalb dieser Lizenz vorgesehen sind und zustande kommen, verzichtet der Lizenzgeber f\u00fcr alle F\u00e4lle einer lizenzgerechten Nutzung des Schutzgegenstandes durch Sie auf jegliche Verg\u00fctung.\n\n iii. Verg\u00fctung in sonstigen F\u00e4llen: Bez\u00fcglich lizenzgerechter Nutzung des Schutzgegenstandes durch Sie, die nicht unter die beiden vorherigen Abschnitte (i) und (ii) f\u00e4llt, verzichtet der Lizenzgeber auf jegliche Verg\u00fctung, unabh\u00e4ngig davon, ob eine Einziehung der Verg\u00fctung durch ihn selbst oder nur durch eine Verwertungsgesellschaft m\u00f6glich w\u00e4re.\n\nDas vorgenannte Nutzungsrecht wird f\u00fcr alle bekannten sowie f\u00fcr alle noch nicht bekannten Nutzungsarten einger\u00e4umt. Es beinhaltet auch das Recht, solche \u00c4nderungen am Schutzgegenstand vorzunehmen, die f\u00fcr bestimmte nach dieser Lizenz zul\u00e4ssige Nutzungen technisch erforderlich sind. Weitergehende \u00c4nderungen oder Abwandlungen sind jedoch untersagt. Alle sonstigen Rechte, die \u00fcber diesen Abschnitt hinaus nicht ausdr\u00fccklich durch den Lizenzgeber einger\u00e4umt werden, bleiben diesem allein vorbehalten. Soweit Datenbanken oder Zusammenstellungen von Daten Schutzgegenstand dieser Lizenz oder Teil dessen sind und einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen, verzichtet der Lizenzgeber auf s\u00e4mtliche aus diesem Schutz resultierenden Rechte.\n\n4. Bedingungen. Die Einr\u00e4umung des Nutzungsrechts gem\u00e4\u00df Abschnitt 3 dieser Lizenz erfolgt ausdr\u00fccklich nur unter den folgenden Bedingungen:\n\n a. Sie d\u00fcrfen den Schutzgegenstand ausschlie\u00dflich unter den Bedingungen dieser Lizenz verbreiten oder \u00f6ffentlich zeigen. Sie m\u00fcssen dabei stets eine Kopie dieser Lizenz oder deren vollst\u00e4ndige Internetadresse in Form des Uniform-Resource-Identifier (URI) beif\u00fcgen. Sie d\u00fcrfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen dieser Lizenz oder die durch diese Lizenz gew\u00e4hrten Rechte beschr\u00e4nken. Sie d\u00fcrfen den Schutzgegenstand nicht unterlizenzieren. Bei jeder Kopie des Schutzgegenstandes, die Sie verbreiten oder \u00f6ffentlich zeigen, m\u00fcssen Sie alle Hinweise unver\u00e4ndert lassen, die auf diese Lizenz und den Haftungsausschluss hinweisen. Wenn Sie den Schutzgegenstand verbreiten oder \u00f6ffentlich zeigen, d\u00fcrfen Sie (in Bezug auf den Schutzgegenstand) keine technischen Ma\u00dfnahmen ergreifen, die den Nutzer des Schutzgegenstandes in der Aus\u00fcbung der ihm durch diese Lizenz gew\u00e4hrten Rechte behindern k\u00f6nnen. Dieser Abschnitt 4.a) gilt auch f\u00fcr den Fall, dass der Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt dieser Lizenz unterstellt werden muss. Sofern Sie ein Sammelwerk erstellen, m\u00fcssen Sie auf die Mitteilung eines Lizenzgebers hin aus dem Sammelwerk die in Abschnitt 4.b) aufgez\u00e4hlten Hinweise entfernen.\n\n b. Die Verbreitung und das \u00f6ffentliche Zeigen des Schutzgegenstandes oder ihn enthaltender Sammelwerke ist Ihnen nur unter der Bedingung gestattet, dass Sie, vorbehaltlich etwaiger Mitteilungen im Sinne von Abschnitt 4.a), alle dazu geh\u00f6renden Rechtevermerke unber\u00fchrt lassen. Sie sind verpflichtet, die Rechteinhaberschaft in einer der Nutzung entsprechenden, angemessenen Form anzuerkennen, indem Sie - soweit bekannt - Folgendes angeben:\n\n i. Den Namen (oder das Pseudonym, falls ein solches verwendet wird) des Rechteinhabers und / oder, falls der Lizenzgeber im Rechtevermerk, in den Nutzungsbedingungen oder auf andere angemessene Weise eine Zuschreibung an Dritte vorgenommen hat (z.B. an eine Stiftung, ein Verlagshaus oder eine Zeitung) (\"Zuschreibungsempf\u00e4nger\"), Namen bzw. Bezeichnung dieses oder dieser Dritten;\n\n ii. den Titel des Inhaltes;\n\n iii. in einer praktikablen Form den Uniform-Resource-Identifier (URI, z.B. Internetadresse), den der Lizenzgeber zum Schutzgegenstand angegeben hat, es sei denn, dieser URI verweist nicht auf den Rechtevermerk oder die Lizenzinformationen zum Schutzgegenstand.\n\n Die nach diesem Abschnitt 4.b) erforderlichen Angaben k\u00f6nnen in jeder angemessenen Form gemacht werden; im Falle eines Sammelwerkes m\u00fcssen diese Angaben das Minimum darstellen und bei gemeinsamer Nennung mehrerer Rechteinhaber dergestalt erfolgen, dass sie zumindest ebenso hervorgehoben sind wie die Hinweise auf die \u00fcbrigen Rechteinhaber. Die Angaben nach diesem Abschnitt d\u00fcrfen Sie ausschlie\u00dflich zur Angabe der Rechteinhaberschaft in der oben bezeichneten Weise verwenden. Durch die Aus\u00fcbung Ihrer Rechte aus dieser Lizenz d\u00fcrfen Sie ohne eine vorherige, separat und schriftlich vorliegende Zustimmung des Lizenzgebers und / oder des Zuschreibungsempf\u00e4ngers weder explizit noch implizit irgendeine Verbindung zum Lizenzgeber oder Zuschreibungsempf\u00e4nger und ebenso wenig eine Unterst\u00fctzung oder Billigung durch ihn andeuten.\n\n c. Die oben unter 4.a) und b) genannten Einschr\u00e4nkungen gelten nicht f\u00fcr solche Teile des Schutzgegenstandes, die allein deshalb unter den Schutzgegenstandsbegriff fallen, weil sie als Datenbanken oder Zusammenstellungen von Daten einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen.\n\n d. Pers\u00f6nlichkeitsrechte bleiben - soweit sie bestehen - von dieser Lizenz unber\u00fchrt.\n\n5. Gew\u00e4hrleistung\n\nSOFERN KEINE ANDERS LAUTENDE, SCHRIFTLICHE VEREINBARUNG ZWISCHEN DEM LIZENZGEBER UND IHNEN GESCHLOSSEN WURDE UND SOWEIT M\u00c4NGEL NICHT ARGLISTIG VERSCHWIEGEN WURDEN, BIETET DER LIZENZGEBER DEN SCHUTZGEGENSTAND UND DIE EINR\u00c4UMUNG VON RECHTEN UNTER AUSSCHLUSS JEGLICHER GEW\u00c4HRLEISTUNG AN UND \u00dcBERNIMMT WEDER AUSDR\u00dcCKLICH NOCH KONKLUDENT GARANTIEN IRGENDEINER ART. DIES UMFASST INSBESONDERE DAS FREISEIN VON SACH- UND RECHTSM\u00c4NGELN, UNABH\u00c4NGIG VON DEREN ERKENNBARKEIT F\u00dcR DEN LIZENZGEBER, DIE VERKEHRSF\u00c4HIGKEIT DES SCHUTZGEGENSTANDES, SEINE VERWENDBARKEIT F\u00dcR EINEN BESTIMMTEN ZWECK SOWIE DIE KORREKTHEIT VON BESCHREIBUNGEN. DIESE GEW\u00c4HRLEISTUNGSBESCHR\u00c4NKUNG GILT NICHT, SOWEIT M\u00c4NGEL ZU SCH\u00c4DEN DER IN ABSCHNITT 6 BEZEICHNETEN ART F\u00dcHREN UND AUF SEITEN DES LIZENZGEBERS DAS JEWEILS GENANNTE VERSCHULDEN BZW. VERTRETENM\u00dcSSEN EBENFALLS VORLIEGT.\n\n6. Haftungsbeschr\u00e4nkung\n\nDER LIZENZGEBER HAFTET IHNEN GEGEN\u00dcBER IN BEZUG AUF SCH\u00c4DEN AUS DER VERLETZUNG DES LEBENS, DES K\u00d6RPERS ODER DER GESUNDHEIT NUR, SOFERN IHM WENIGSTENS FAHRL\u00c4SSIGKEIT VORZUWERFEN IST, F\u00dcR SONSTIGE SCH\u00c4DEN NUR BEI GROBER FAHRL\u00c4SSIGKEIT ODER VORSATZ, UND \u00dcBERNIMMT DAR\u00dcBER HINAUS KEINERLEI FREIWILLIGE HAFTUNG.\n\n7. Erl\u00f6schen\n\n a. Diese Lizenz und die durch sie einger\u00e4umten Nutzungsrechte erl\u00f6schen mit Wirkung f\u00fcr die Zukunft im Falle eines Versto\u00dfes gegen die Lizenzbedingungen durch Sie, ohne dass es dazu der Kenntnis des Lizenzgebers vom Versto\u00df oder einer weiteren Handlung einer der Vertragsparteien bedarf. Mit nat\u00fcrlichen oder juristischen Personen, die den Schutzgegenstand enthaltende Sammelwerke unter den Bedingungen dieser Lizenz von Ihnen erhalten haben, bestehen nachtr\u00e4glich entstandene Lizenzbeziehungen jedoch solange weiter, wie die genannten Personen sich ihrerseits an s\u00e4mtliche Lizenzbedingungen halten. Dar\u00fcber hinaus gelten die Ziffern 1, 2, 5, 6, 7, und 8 auch nach einem Erl\u00f6schen dieser Lizenz fort.\n\n b. Vorbehaltlich der oben genannten Bedingungen gilt diese Lizenz unbefristet bis der rechtliche Schutz f\u00fcr den Schutzgegenstand ausl\u00e4uft. Davon abgesehen beh\u00e4lt der Lizenzgeber das Recht, den Schutzgegenstand unter anderen Lizenzbedingungen anzubieten oder die eigene Weitergabe des Schutzgegenstandes jederzeit einzustellen, solange die Aus\u00fcbung dieses Rechts nicht einer K\u00fcndigung oder einem Widerruf dieser Lizenz (oder irgendeiner Weiterlizenzierung, die auf Grundlage dieser Lizenz bereits erfolgt ist bzw. zuk\u00fcnftig noch erfolgen muss) dient und diese Lizenz unter Ber\u00fccksichtigung der oben zum Erl\u00f6schen genannten Bedingungen vollumf\u00e4nglich wirksam bleibt.\n\n8. Sonstige Bestimmungen\n\n a. Jedes Mal wenn Sie den Schutzgegenstand f\u00fcr sich genommen oder als Teil eines Sammelwerkes verbreiten oder \u00f6ffentlich zeigen, bietet der Lizenzgeber dem Empf\u00e4nger eine Lizenz zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz.\n\n b. Sollte eine Bestimmung dieser Lizenz unwirksam sein, so bleibt davon die Wirksamkeit der Lizenz im \u00dcbrigen unber\u00fchrt.\n\n c. Keine Bestimmung dieser Lizenz soll als abbedungen und kein Versto\u00df gegen sie als zul\u00e4ssig gelten, solange die von dem Verzicht oder von dem Versto\u00df betroffene Seite nicht schriftlich zugestimmt hat.\n\n d. Diese Lizenz (zusammen mit in ihr ausdr\u00fccklich vorgesehenen Erlaubnissen, Mitteilungen und Zustimmungen, soweit diese tats\u00e4chlich vorliegen) stellt die vollst\u00e4ndige Vereinbarung zwischen dem Lizenzgeber und Ihnen in Bezug auf den Schutzgegenstand dar. Es bestehen keine Abreden, Vereinbarungen oder Erkl\u00e4rungen in Bezug auf den Schutzgegenstand, die in dieser Lizenz nicht genannt sind. Rechtsgesch\u00e4ftliche \u00c4nderungen des Verh\u00e4ltnisses zwischen dem Lizenzgeber und Ihnen sind nur \u00fcber Modifikationen dieser Lizenz m\u00f6glich. Der Lizenzgeber ist an etwaige zus\u00e4tzliche, einseitig durch Sie \u00fcbermittelte Bestimmungen nicht gebunden. Diese Lizenz kann nur durch schriftliche Vereinbarung zwischen Ihnen und dem Lizenzgeber modifiziert werden. Derlei Modifikationen wirken ausschlie\u00dflich zwischen dem Lizenzgeber und Ihnen und wirken sich nicht auf die Dritten gem\u00e4\u00df Ziffern 8.a) angeboteten Lizenzen aus.\n\n e. Sofern zwischen Ihnen und dem Lizenzgeber keine anderweitige Vereinbarung getroffen wurde und soweit Wahlfreiheit besteht, findet auf diesen Lizenzvertrag das Recht der Bundesrepublik Deutschland Anwendung.\n\n\nCreative Commons Notice\n\nCreative Commons ist nicht Partei dieser Lizenz und \u00fcbernimmt keinerlei Gew\u00e4hr oder dergleichen in Bezug auf den Schutzgegenstand. Creative Commons haftet Ihnen oder einer anderen Partei unter keinem rechtlichen Gesichtspunkt f\u00fcr irgendwelche Sch\u00e4den, die - abstrakt oder konkret, zuf\u00e4llig oder vorhersehbar - im Zusammenhang mit dieser Lizenz entstehen. Unbeschadet der vorangegangen beiden S\u00e4tze, hat Creative Commons alle Rechte und Pflichten eines Lizenzgebers, wenn es sich ausdr\u00fccklich als Lizenzgeber im Sinne dieser Lizenz bezeichnet.\n\nCreative Commons gew\u00e4hrt den Parteien nur insoweit das Recht, das Logo und die Marke \"Creative Commons\" zu nutzen, als dies notwendig ist, um der \u00d6ffentlichkeit gegen\u00fcber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein dar\u00fcber hinaus gehender Gebrauch der Marke \"Creative Commons\" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website ver\u00f6ffentlicht oder auf andere Weise auf Anfrage zug\u00e4nglich gemacht wird. Zur Klarstellung: Die genannten Einschr\u00e4nkungen der Markennutzung sind nicht Bestandteil dieser Lizenz.\n\nCreative Commons kann kontaktiert werden \u00fcber https://creativecommons.org/.", + "json": "cc-by-nd-3.0-de.json", + "yaml": "cc-by-nd-3.0-de.yml", + "html": "cc-by-nd-3.0-de.html", + "license": "cc-by-nd-3.0-de.LICENSE" + }, + { + "license_key": "cc-by-nd-4.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-ND-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-NoDerivatives 4.0 International\n\n=======================================================================\n\nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide legal services or legal advice. Distribution of\nCreative Commons public licenses does not create a lawyer-client or\nother relationship. Creative Commons makes its licenses and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\nwarranties regarding its licenses, any material licensed under their\nterms and conditions, or any related information. Creative Commons\ndisclaims all liability for damages resulting from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\nCreative Commons public licenses provide a standard set of terms and\nconditions that creators and other rights holders may use to share\noriginal works of authorship and other material subject to copyright\nand certain other rights specified in the public license below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive, and do not form part of our licenses.\n\n Considerations for licensors: Our public licenses are\n intended for use by those authorized to give the public\n permission to use material in ways otherwise restricted by\n copyright and certain other rights. Our licenses are\n irrevocable. Licensors should read and understand the terms\n and conditions of the license they choose before applying it.\n Licensors should also secure all rights necessary before\n applying our licenses so that the public can reuse the\n material as expected. Licensors should clearly mark any\n material not subject to the license. This includes other CC-\n licensed material, or material used under an exception or\n limitation to copyright. More considerations for licensors:\n\twiki.creativecommons.org/Considerations_for_licensors\n\n Considerations for the public: By using one of our public\n licenses, a licensor grants the public permission to use the\n licensed material under specified terms and conditions. If\n the licensor's permission is not necessary for any reason--for\n example, because of any applicable exception or limitation to\n copyright--then that use is not regulated by the license. Our\n licenses grant only permissions under copyright and certain\n other rights that a licensor has authority to grant. Use of\n the licensed material may still be restricted for other\n reasons, including because others have copyright or other\n rights in the material. A licensor may make special requests,\n such as asking that all changes be marked or described.\n Although not required by our licenses, you are encouraged to\n respect those requests where reasonable. More considerations\n for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\t\n\n=======================================================================\n\nCreative Commons Attribution-NoDerivatives 4.0 International Public\nLicense\n\nBy exercising the Licensed Rights (defined below), You accept and agree\nto be bound by the terms and conditions of this Creative Commons\nAttribution-NoDerivatives 4.0 International Public License (\"Public\nLicense\"). To the extent this Public License may be interpreted as a\ncontract, You are granted the Licensed Rights in consideration of Your\nacceptance of these terms and conditions, and the Licensor grants You\nsuch rights in consideration of benefits the Licensor receives from\nmaking the Licensed Material available under these terms and\nconditions.\n\n\nSection 1 -- Definitions.\n\n a. Adapted Material means material subject to Copyright and Similar\n Rights that is derived from or based upon the Licensed Material\n and in which the Licensed Material is translated, altered,\n arranged, transformed, or otherwise modified in a manner requiring\n permission under the Copyright and Similar Rights held by the\n Licensor. For purposes of this Public License, where the Licensed\n Material is a musical work, performance, or sound recording,\n Adapted Material is always produced where the Licensed Material is\n synched in timed relation with a moving image.\n\n b. Copyright and Similar Rights means copyright and/or similar rights\n closely related to copyright including, without limitation,\n performance, broadcast, sound recording, and Sui Generis Database\n Rights, without regard to how the rights are labeled or\n categorized. For purposes of this Public License, the rights\n specified in Section 2(b)(1)-(2) are not Copyright and Similar\n Rights.\n\n c. Effective Technological Measures means those measures that, in the\n absence of proper authority, may not be circumvented under laws\n fulfilling obligations under Article 11 of the WIPO Copyright\n Treaty adopted on December 20, 1996, and/or similar international\n agreements.\n\n d. Exceptions and Limitations means fair use, fair dealing, and/or\n any other exception or limitation to Copyright and Similar Rights\n that applies to Your use of the Licensed Material.\n\n e. Licensed Material means the artistic or literary work, database,\n or other material to which the Licensor applied this Public\n License.\n\n f. Licensed Rights means the rights granted to You subject to the\n terms and conditions of this Public License, which are limited to\n all Copyright and Similar Rights that apply to Your use of the\n Licensed Material and that the Licensor has authority to license.\n\n g. Licensor means the individual(s) or entity(ies) granting rights\n under this Public License.\n\n h. Share means to provide material to the public by any means or\n process that requires permission under the Licensed Rights, such\n as reproduction, public display, public performance, distribution,\n dissemination, communication, or importation, and to make material\n available to the public including in ways that members of the\n public may access the material from a place and at a time\n individually chosen by them.\n\n i. Sui Generis Database Rights means rights other than copyright\n resulting from Directive 96/9/EC of the European Parliament and of\n the Council of 11 March 1996 on the legal protection of databases,\n as amended and/or succeeded, as well as other essentially\n equivalent rights anywhere in the world.\n\n j. You means the individual or entity exercising the Licensed Rights\n under this Public License. Your has a corresponding meaning.\n\n\nSection 2 -- Scope.\n\n a. License grant.\n\n 1. Subject to the terms and conditions of this Public License,\n the Licensor hereby grants You a worldwide, royalty-free,\n non-sublicensable, non-exclusive, irrevocable license to\n exercise the Licensed Rights in the Licensed Material to:\n\n a. reproduce and Share the Licensed Material, in whole or\n in part; and\n\n b. produce and reproduce, but not Share, Adapted Material.\n\n 2. Exceptions and Limitations. For the avoidance of doubt, where\n Exceptions and Limitations apply to Your use, this Public\n License does not apply, and You do not need to comply with\n its terms and conditions.\n\n 3. Term. The term of this Public License is specified in Section\n 6(a).\n\n 4. Media and formats; technical modifications allowed. The\n Licensor authorizes You to exercise the Licensed Rights in\n all media and formats whether now known or hereafter created,\n and to make technical modifications necessary to do so. The\n Licensor waives and/or agrees not to assert any right or\n authority to forbid You from making technical modifications\n necessary to exercise the Licensed Rights, including\n technical modifications necessary to circumvent Effective\n Technological Measures. For purposes of this Public License,\n simply making modifications authorized by this Section 2(a)\n (4) never produces Adapted Material.\n\n 5. Downstream recipients.\n\n a. Offer from the Licensor -- Licensed Material. Every\n recipient of the Licensed Material automatically\n receives an offer from the Licensor to exercise the\n Licensed Rights under the terms and conditions of this\n Public License.\n\n b. No downstream restrictions. You may not offer or impose\n any additional or different terms or conditions on, or\n apply any Effective Technological Measures to, the\n Licensed Material if doing so restricts exercise of the\n Licensed Rights by any recipient of the Licensed\n Material.\n\n 6. No endorsement. Nothing in this Public License constitutes or\n may be construed as permission to assert or imply that You\n are, or that Your use of the Licensed Material is, connected\n with, or sponsored, endorsed, or granted official status by,\n the Licensor or others designated to receive attribution as\n provided in Section 3(a)(1)(A)(i).\n\n b. Other rights.\n\n 1. Moral rights, such as the right of integrity, are not\n licensed under this Public License, nor are publicity,\n privacy, and/or other similar personality rights; however, to\n the extent possible, the Licensor waives and/or agrees not to\n assert any such rights held by the Licensor to the limited\n extent necessary to allow You to exercise the Licensed\n Rights, but not otherwise.\n\n 2. Patent and trademark rights are not licensed under this\n Public License.\n\n 3. To the extent possible, the Licensor waives any right to\n collect royalties from You for the exercise of the Licensed\n Rights, whether directly or through a collecting society\n under any voluntary or waivable statutory or compulsory\n licensing scheme. In all other cases the Licensor expressly\n reserves any right to collect such royalties.\n\n\nSection 3 -- License Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the\nfollowing conditions.\n\n a. Attribution.\n\n 1. If You Share the Licensed Material, You must:\n\n a. retain the following if it is supplied by the Licensor\n with the Licensed Material:\n\n i. identification of the creator(s) of the Licensed\n Material and any others designated to receive\n attribution, in any reasonable manner requested by\n the Licensor (including by pseudonym if\n designated);\n\n ii. a copyright notice;\n\n iii. a notice that refers to this Public License;\n\n iv. a notice that refers to the disclaimer of\n warranties;\n\n v. a URI or hyperlink to the Licensed Material to the\n extent reasonably practicable;\n\n b. indicate if You modified the Licensed Material and\n retain an indication of any previous modifications; and\n\n c. indicate the Licensed Material is licensed under this\n Public License, and include the text of, or the URI or\n hyperlink to, this Public License.\n\n For the avoidance of doubt, You do not have permission under\n this Public License to Share Adapted Material.\n\n 2. You may satisfy the conditions in Section 3(a)(1) in any\n reasonable manner based on the medium, means, and context in\n which You Share the Licensed Material. For example, it may be\n reasonable to satisfy the conditions by providing a URI or\n hyperlink to a resource that includes the required\n information.\n\n 3. If requested by the Licensor, You must remove any of the\n information required by Section 3(a)(1)(A) to the extent\n reasonably practicable.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database Rights that\napply to Your use of the Licensed Material:\n\n a. for the avoidance of doubt, Section 2(a)(1) grants You the right\n to extract, reuse, reproduce, and Share all or a substantial\n portion of the contents of the database, provided You do not Share\n Adapted Material;\n b. if You include all or a substantial portion of the database\n contents in a database in which You have Sui Generis Database\n Rights, then the database in which You have Sui Generis Database\n Rights (but not its individual contents) is Adapted Material; and\n c. You must comply with the conditions in Section 3(a) if You Share\n all or a substantial portion of the contents of the database.\n\nFor the avoidance of doubt, this Section 4 supplements and does not\nreplace Your obligations under this Public License where the Licensed\nRights include other Copyright and Similar Rights.\n\n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\n a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\n PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\n b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE\n TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\n COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR\n USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR\n IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.\n\n c. The disclaimer of warranties and limitation of liability provided\n above shall be interpreted in a manner that, to the extent\n possible, most closely approximates an absolute disclaimer and\n waiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\n a. This Public License applies for the term of the Copyright and\n Similar Rights licensed here. However, if You fail to comply with\n this Public License, then Your rights under this Public License\n terminate automatically.\n\n b. Where Your right to use the Licensed Material has terminated under\n Section 6(a), it reinstates:\n\n 1. automatically as of the date the violation is cured, provided\n it is cured within 30 days of Your discovery of the\n violation; or\n\n 2. upon express reinstatement by the Licensor.\n\n For the avoidance of doubt, this Section 6(b) does not affect any\n right the Licensor may have to seek remedies for Your violations\n of this Public License.\n\n c. For the avoidance of doubt, the Licensor may also offer the\n Licensed Material under separate terms or conditions or stop\n distributing the Licensed Material at any time; however, doing so\n will not terminate this Public License.\n\n d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n License.\n\n\nSection 7 -- Other Terms and Conditions.\n\n a. The Licensor shall not be bound by any additional or different\n terms or conditions communicated by You unless expressly agreed.\n\n b. Any arrangements, understandings, or agreements regarding the\n Licensed Material not stated herein are separate from and\n independent of the terms and conditions of this Public License.\n\n\nSection 8 -- Interpretation.\n\n a. For the avoidance of doubt, this Public License does not, and\n shall not be interpreted to, reduce, limit, restrict, or impose\n conditions on any use of the Licensed Material that could lawfully\n be made without permission under this Public License.\n\n b. To the extent possible, if any provision of this Public License is\n deemed unenforceable, it shall be automatically reformed to the\n minimum extent necessary to make it enforceable. If the provision\n cannot be reformed, it shall be severed from this Public License\n without affecting the enforceability of the remaining terms and\n conditions.\n\n c. No term or condition of this Public License will be waived and no\n failure to comply consented to unless expressly agreed to by the\n Licensor.\n\n d. Nothing in this Public License constitutes or may be interpreted\n as a limitation upon, or waiver of, any privileges and immunities\n that apply to the Licensor or You, including from the legal\n processes of any jurisdiction or authority.\n\n=======================================================================\n\nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons may elect to apply one of\nits public licenses to material it publishes and in those instances\nwill be considered the \u201cLicensor.\u201d The text of the Creative Commons\npublic licenses is dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the limited purpose of indicating that\nmaterial is shared under a Creative Commons public license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies, Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or any other trademark or logo\nof Creative Commons without its prior written consent including,\nwithout limitation, in connection with any unauthorized modifications\nto any of its public licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic licenses.\n\nCreative Commons may be contacted at creativecommons.org.", + "json": "cc-by-nd-4.0.json", + "yaml": "cc-by-nd-4.0.yml", + "html": "cc-by-nd-4.0.html", + "license": "cc-by-nd-4.0.LICENSE" + }, + { + "license_key": "cc-by-sa-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-ShareAlike 1.0\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto create and reproduce Derivative Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works;\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.\n\n4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested.\nYou may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., \"French translation of the Work by Original Author,\" or \"Screenplay based on original Work by Original Author\"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\n5. Representations, Warranties and Disclaimer\n\nBy offering the Work for public release under this License, Licensor represents and warrants that, to the best of Licensor's knowledge after reasonable inquiry:\nLicensor has secured all rights in the Work necessary to grant the license rights hereunder and to permit the lawful exercise of the rights granted hereunder without You having any obligation to pay any royalties, compulsory license fees, residuals or any other payments;\nThe Work does not infringe the copyright, trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party.\nEXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF THE WORK.\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nEach time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", + "json": "cc-by-sa-1.0.json", + "yaml": "cc-by-sa-1.0.yml", + "html": "cc-by-sa-1.0.html", + "license": "cc-by-sa-1.0.LICENSE" + }, + { + "license_key": "cc-by-sa-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-ShareAlike 2.0\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this License.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n\"License Elements\" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto create and reproduce Derivative Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works.\nFor the avoidance of doubt, where the work is a musical composition:\n\nPerformance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work.\nMechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights society or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work (\"cover version\") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions).\nWebcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions).\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.\n\n4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested.\nYou may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, a later version of this License with the same License Elements as this License, or a Creative Commons iCommons license that contains the same License Elements as this License (e.g. Attribution-ShareAlike 2.0 Japan). You must include a copy of, or the Uniform Resource Identifier for, this License or other license specified in the previous sentence with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., \"French translation of the Work by Original Author,\" or \"Screenplay based on original Work by Original Author\"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE MATERIALS, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nEach time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", + "json": "cc-by-sa-2.0.json", + "yaml": "cc-by-sa-2.0.yml", + "html": "cc-by-sa-2.0.html", + "license": "cc-by-sa-2.0.LICENSE" + }, + { + "license_key": "cc-by-sa-2.0-uk", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-2.0-UK", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Attribution - Share-Alike 2.0 England and Wales\n\n CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\n\nLicence\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENCE (\"CCPL\" OR \"LICENCE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENCE OR COPYRIGHT LAW IS PROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENCE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\nThis Creative Commons England and Wales Public Licence enables You (all capitalised terms defined below) to view, edit, modify, translate and distribute Works worldwide, under the terms of this licence, provided that You credit the Original Author.\n\n'The Licensor' [one or more legally recognised persons or entities offering the Work under the terms and conditions of this Licence]\n\nand\n\n'You'\n\nagree as follows:\n\n1. Definitions\n\n a. \"Attribution\" means acknowledging all the parties who have contributed to and have rights in the Work or Collective Work under this Licence.\n\n b. \"Collective Work\" means the Work in its entirety in unmodified form along with a number of other separate and independent works, assembled into a collective whole.\n\n c. \"Derivative Work\" means any work created by the editing, modification, adaptation or translation of the Work in any media (however a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this Licence). For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this Licence.\n\n d. \"Licence\" means this Creative Commons England and Wales Public Licence agreement.\n\n e. \"Licence Elements\" means the following high-level licence attributes indicated in the title of this Licence: Attribution, Share-Alike.\n\n f. \"Original Author\" means the individual (or entity) who created the Work.\n\n g. \"Work\" means the work protected by copyright which is offered under the terms of this Licence.\n\n h. For the purpose of this Licence, when not inconsistent with the context, words in the singular number include the plural number.\n\n2. Licence Terms\n\n2.1 The Licensor hereby grants to You a worldwide, royalty-free, non-exclusive, Licence for use and for the duration of copyright in the Work.\n\nYou may:\n\n * copy the Work;\n\n * create one or more derivative Works;\n\n * incorporate the Work into one or more Collective Works;\n\n * copy Derivative Works or the Work as incorporated in any Collective Work; and\n\n * publish, distribute, archive, perform or otherwise disseminate the Work or the Work as incorporated in any Collective Work, to the public in any material form in any media whether now known or hereafter created.\n\nHOWEVER,\n\nYou must not:\n\n * impose any terms on the use to be made of the Work, the Derivative Work or the Work as incorporated in a Collective Work that alter or restrict the terms of this Licence or any rights granted under it or has the effect or intent of restricting the ability to exercise those rights;\n\n * impose any digital rights management technology on the Work or the Work as incorporated in a Collective Work that alters or restricts the terms of this Licence or any rights granted under it or has the effect or intent of restricting the ability to exercise those rights;\n\n * sublicense the Work;\n\n * subject the Work to any derogatory treatment as defined in the Copyright, Designs and Patents Act 1988.\n\nFINALLY,\n\nYou must:\n\n * make reference to this Licence (by Uniform Resource Identifier (URI), spoken word or as appropriate to the media used) on all copies of the Work and Collective Works published, distributed, performed or otherwise disseminated or made available to the public by You;\n\n * recognise the Licensor's / Original Author's right of attribution in any Work and Collective Work that You publish, distribute, perform or otherwise disseminate to the public and ensure that You credit the Licensor / Original Author as appropriate to the media used; and\n\n * to the extent reasonably practicable, keep intact all notices that refer to this Licence, in particular the URI, if any, that the Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work.\n\nAdditional Provisions for third parties making use of the Work\n\n2.2. Further licence from the Licensor\n\nEach time You publish, distribute, perform or otherwise disseminate\n\n * the Work; or\n\n * any Derivative Work; or\n\n * the Work as incorporated in a Collective Work\n\nthe Licensor agrees to offer to the relevant third party making use of the Work (in any of the alternatives set out above) a licence to use the Work on the same terms and conditions as granted to You hereunder.\n\n2.3. Further licence from You\n\nEach time You publish, distribute, perform or otherwise disseminate\n\n * a Derivative Work; or\n\n * a Derivative Work as incorporated in a Collective Work\n\nYou agree to offer to the relevant third party making use of the Work (in either of the alternatives set out above) a licence to use the Derivative Work on any of the following premises:\n\n * a licence to the Derivative Work on the same terms and conditions as the licence granted to You hereunder; or\n\n * a later version of the licence granted to You hereunder; or\n\n * any other Creative Commons licence with the same Licence Elements.\n\n2.4. This Licence does not affect any rights that the User may have under any applicable law, including fair use, fair dealing or any other legally recognised limitation or exception to copyright infringement.\n\n2.5. All rights not expressly granted by the Licensor are hereby reserved, including but not limited to, the exclusive right to collect, whether individually or via a licensing body, such as a collecting society, royalties for any use of the Work which results in commercial advantage or private monetary compensation.\n\n3. Warranties and Disclaimer\n\nExcept as required by law, the Work is licensed by the Licensor on an \"as is\" and \"as available\" basis and without any warranty of any kind, either express or implied.\n\n4. Limit of Liability\n\nSubject to any liability which may not be excluded or limited by law the Licensor shall not be liable and hereby expressly excludes all liability for loss or damage howsoever and whenever caused to You.\n\n5. Termination\n\nThe rights granted to You under this Licence shall terminate automatically upon any breach by You of the terms of this Licence. Individuals or entities who have received Collective Works from You under this Licence, however, will not have their Licences terminated provided such individuals or entities remain in full compliance with those Licences.\n\n6. General\n\n6.1. The validity or enforceability of the remaining terms of this agreement is not affected by the holding of any provision of it to be invalid or unenforceable.\n\n6.2. This Licence constitutes the entire Licence Agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. The Licensor shall not be bound by any additional provisions that may appear in any communication in any form.\n\n6.3. A person who is not a party to this Licence shall have no rights under the Contracts (Rights of Third Parties) Act 1999 to enforce any of its terms.\n\n6.4. This Licence shall be governed by the law of England and Wales and the parties irrevocably submit to the exclusive jurisdiction of the Courts of England and Wales.\n\n7. On the role of Creative Commons\n\n7.1. Neither the Licensor nor the User may use the Creative Commons logo except to indicate that the Work is licensed under a Creative Commons Licence. Any permitted use has to be in compliance with the Creative Commons trade mark usage guidelines at the time of use of the Creative Commons trade mark. These guidelines may be found on the Creative Commons website or be otherwise available upon request from time to time.\n\n7.2. Creative Commons Corporation does not profit financially from its role in providing this Licence and will not investigate the claims of any Licensor or user of the Licence.\n\n7.3. One of the conditions that Creative Commons Corporation requires of the Licensor and You is an acknowledgement of its limited role and agreement by all who use the Licence that the Corporation is not responsible to anyone for the statements and actions of You or the Licensor or anyone else attempting to use or using this Licence.\n\n7.4. Creative Commons Corporation is not a party to this Licence, and makes no warranty whatsoever in connection to the Work or in connection to the Licence, and in all events is not liable for any loss or damage resulting from the Licensor's or Your reliance on this Licence or on its enforceability.\n\n7.5. USE OF THIS LICENCE MEANS THAT YOU AND THE LICENSOR EACH ACCEPTS THESE CONDITIONS IN SECTION 7.1, 7.2, 7.3, 7.4 AND EACH ACKNOWLEDGES CREATIVE COMMONS CORPORATION'S VERY LIMITED ROLE AS A FACILITATOR OF THE LICENCE FROM THE LICENSOR TO YOU.\n\nCreative Commons is not a party to this Licence, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this licence. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at https://creativecommons.org/.", + "json": "cc-by-sa-2.0-uk.json", + "yaml": "cc-by-sa-2.0-uk.yml", + "html": "cc-by-sa-2.0-uk.html", + "license": "cc-by-sa-2.0-uk.LICENSE" + }, + { + "license_key": "cc-by-sa-2.1-jp", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-2.1-JP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "\u30a2\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u2014\u30b7\u30a7\u30a2\u30a2\u30e9\u30a4\u30af 2.1\n\uff08\u5e30\u5c5e\u2014\u540c\u4e00\u6761\u4ef6\u8a31\u8afe\uff09\n\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30fb\u30b3\u30e2\u30f3\u30ba\u53ca\u3073\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30fb\u30b3\u30e2\u30f3\u30ba\u30fb\u30b8\u30e3\u30d1\u30f3\u306f\u6cd5\u5f8b\u4e8b\u52d9\u6240\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u3053\u306e\u5229\u7528\u8a31\u8afe\u6761\u9805\u306e\u9812\u5e03\u306f\u6cd5\u7684\u30a2\u30c9\u30d0\u30a4\u30b9\u305d\u306e\u4ed6\u306e\u6cd5\u5f8b\u696d\u52d9\u3092\u884c\u3046\u3082\u306e\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30fb\u30b3\u30e2\u30f3\u30ba\u53ca\u3073\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30fb\u30b3\u30e2\u30f3\u30ba\u30fb\u30b8\u30e3\u30d1\u30f3\u306f\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u5f53\u4e8b\u8005\u3067\u306f\u306a\u304f\u3001\u3053\u3053\u306b\u63d0\u4f9b\u3059\u308b\u60c5\u5831\u53ca\u3073\u672c\u4f5c\u54c1\u306b\u95a2\u3057\u3044\u304b\u306a\u308b\u4fdd\u8a3c\u3082\u884c\u3044\u307e\u305b\u3093\u3002\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30fb\u30b3\u30e2\u30f3\u30ba\u53ca\u3073\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30fb\u30b3\u30e2\u30f3\u30ba\u30fb\u30b8\u30e3\u30d1\u30f3\u306f\u3001\u3044\u304b\u306a\u308b\u6cd5\u4ee4\u306b\u57fa\u3065\u3053\u3046\u3068\u3082\u3001\u3042\u306a\u305f\u53c8\u306f\u3044\u304b\u306a\u308b\u7b2c\u4e09\u8005\u306e\u640d\u5bb3\uff08\u3053\u306e\u5229\u7528\u8a31\u8afe\u306b\u95a2\u9023\u3059\u308b\u901a\u5e38\u640d\u5bb3\u3001\u7279\u5225\u640d\u5bb3\u3092\u542b\u307f\u307e\u3059\u304c\u3053\u308c\u3089\u306b\u9650\u3089\u308c\u307e\u305b\u3093\uff09\u306b\u3064\u3044\u3066\u8cac\u4efb\u3092\u8ca0\u3044\u307e\u305b\u3093\u3002\n\n\u5229\u7528\u8a31\u8afe\n\n\u672c\u4f5c\u54c1\uff08\u4e0b\u8a18\u306b\u5b9a\u7fa9\u3059\u308b\uff09\u306f\u3001\u3053\u306e\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30fb\u30b3\u30e2\u30f3\u30ba\uff65\u30d1\u30d6\u30ea\u30c3\u30af\uff65\u30e9\u30a4\u30bb\u30f3\u30b9\u65e5\u672c\u7248\uff08\u4ee5\u4e0b\u300c\u3053\u306e\u5229\u7528\u8a31\u8afe\u300d\u3068\u3044\u3046\uff09\u306e\u6761\u9805\u306e\u4e0b\u3067\u63d0\u4f9b\u3055\u308c\u308b\u3002\u672c\u4f5c\u54c1\u306f\u3001\u8457\u4f5c\u6a29\u6cd5\u53ca\u3073\uff0f\u53c8\u306f\u4ed6\u306e\u9069\u7528\u6cd5\u306b\u3088\u3063\u3066\u4fdd\u8b77\u3055\u308c\u308b\u3002\u672c\u4f5c\u54c1\u3092\u3053\u306e\u5229\u7528\u8a31\u8afe\u53c8\u306f\u8457\u4f5c\u6a29\u6cd5\u306e\u4e0b\u3067\u6388\u6a29\u3055\u308c\u305f\u4ee5\u5916\u306e\u65b9\u6cd5\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u7981\u6b62\u3059\u308b\u3002\n\n\u8a31\u8afe\u8005\u306f\u3001\u304b\u304b\u308b\u6761\u9805\u3092\u3042\u306a\u305f\u304c\u627f\u8afe\u3059\u308b\u3053\u3068\u3068\u3072\u304d\u304b\u3048\u306b\u3001\u3053\u3053\u306b\u898f\u5b9a\u3055\u308c\u308b\u6a29\u5229\u3092\u3042\u306a\u305f\u306b\u4ed8\u4e0e\u3059\u308b\u3002\u672c\u4f5c\u54c1\u306b\u95a2\u3057\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u4e0b\u3067\u8a8d\u3081\u3089\u308c\u308b\u3044\u305a\u308c\u304b\u306e\u5229\u7528\u3092\u884c\u3046\u3053\u3068\u306b\u3088\u308a\u3001\u3042\u306a\u305f\u306f\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\uff08\u6761\u9805\uff09\u306b\u62d8\u675f\u3055\u308c\u308b\u3053\u3068\u3092\u627f\u8afe\u3057\u540c\u610f\u3057\u305f\u3053\u3068\u3068\u306a\u308b\u3002\n\n\u7b2c1\u6761 \u5b9a\u7fa9\n\n\u3053\u306e\u5229\u7528\u8a31\u8afe\u4e2d\u306e\u7528\u8a9e\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5b9a\u7fa9\u3059\u308b\u3002\u305d\u306e\u4ed6\u306e\u7528\u8a9e\u306f\u3001\u8457\u4f5c\u6a29\u6cd5\u305d\u306e\u4ed6\u306e\u6cd5\u4ee4\u3067\u5b9a\u3081\u308b\u610f\u5473\u3092\u6301\u3064\u3082\u306e\u3068\u3059\u308b\u3002\n\n a. \u300c\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u300d\u3068\u306f\u3001\u8457\u4f5c\u7269\u3092\u7ffb\u8a33\u3057\u3001\u7de8\u66f2\u3057\u3001\u82e5\u3057\u304f\u306f\u5909\u5f62\u3057\u3001\u307e\u305f\u306f\u811a\u8272\u3057\u3001\u6620\u753b\u5316\u3057\u3001\u305d\u306e\u4ed6\u7ffb\u6848\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u5275\u4f5c\u3057\u305f\u8457\u4f5c\u7269\u3092\u3044\u3046\u3002\u305f\u3060\u3057\u3001\u7de8\u96c6\u8457\u4f5c\u7269\u53c8\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u8457\u4f5c\u7269\uff08\u4ee5\u4e0b\u3001\u3053\u306e\u4e8c\u3064\u3092\u4f75\u305b\u3066\u300c\u7de8\u96c6\u8457\u4f5c\u7269\u7b49\u300d\u3068\u3044\u3046\u3002\uff09\u3092\u69cb\u6210\u3059\u308b\u8457\u4f5c\u7269\u306f\u3001\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u3068\u307f\u306a\u3055\u308c\u306a\u3044\u3002\u307e\u305f\u3001\u539f\u8457\u4f5c\u8005\u53ca\u3073\u5b9f\u6f14\u5bb6\u306e\u540d\u8a89\u53c8\u306f\u58f0\u671b\u3092\u5bb3\u3059\u308b\u65b9\u6cd5\u3067\u539f\u8457\u4f5c\u7269\u3092\u6539\u4f5c\u3001\u5909\u5f62\u3082\u3057\u304f\u306f\u7ffb\u6848\u3057\u3066\u751f\u3058\u308b\u8457\u4f5c\u7269\u306f\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u76ee\u7684\u306b\u304a\u3044\u3066\u306f\u3001\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u306b\u542b\u307e\u308c\u306a\u3044\u3002\n b. \u300c\u8a31\u8afe\u8005\u300d\u3068\u306f\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u6761\u9805\u306e\u4e0b\u3067\u672c\u4f5c\u54c1\u3092\u63d0\u4f9b\u3059\u308b\u500b\u4eba\u53c8\u306f\u56e3\u4f53\u3092\u3044\u3046\u3002\n c. \u300c\u3042\u306a\u305f\u300d\u3068\u306f\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306b\u57fa\u3065\u304f\u6a29\u5229\u3092\u884c\u4f7f\u3059\u308b\u500b\u4eba\u53c8\u306f\u56e3\u4f53\u3092\u3044\u3046\u3002\n d. \u300c\u539f\u8457\u4f5c\u8005\u300d\u3068\u306f\u3001\u672c\u4f5c\u54c1\u306b\u542b\u307e\u308c\u308b\u8457\u4f5c\u7269\u3092\u5275\u4f5c\u3057\u305f\u500b\u4eba\u53c8\u306f\u56e3\u4f53\u3092\u3044\u3046\u3002\n e. \u300c\u672c\u4f5c\u54c1\u300d\u3068\u306f\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u6761\u9805\u306b\u57fa\u3065\u3044\u3066\u5229\u7528\u3059\u308b\u6a29\u5229\u304c\u4ed8\u4e0e\u3055\u308c\u308b\u5bfe\u8c61\u305f\u308b\u7121\u4f53\u7269\u3092\u3044\u3044\u3001\u8457\u4f5c\u7269\u3001\u5b9f\u6f14\u3001\u30ec\u30b3\u30fc\u30c9\u3001\u653e\u9001\u306b\u304b\u304b\u308b\u97f3\u53c8\u306f\u5f71\u50cf\u3001\u3082\u3057\u304f\u306f\u6709\u7dda\u653e\u9001\u306b\u304b\u304b\u308b\u97f3\u53c8\u306f\u5f71\u50cf\u3092\u3059\u3079\u3066\u542b\u3080\u3082\u306e\u3068\u3059\u308b\u3002\n f. \u300c\u30e9\u30a4\u30bb\u30f3\u30b9\u8981\u7d20\u300d\u3068\u306f\u3001\u8a31\u8afe\u8005\u304c\u9078\u629e\u3057\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306b\u8868\u793a\u3055\u308c\u3066\u3044\u308b\u3001\u4ee5\u4e0b\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u5c5e\u6027\u3092\u3044\u3046\uff1a\u5e30\u5c5e\u30fb\u540c\u4e00\u6761\u4ef6\u8a31\u8afe\n\n\u7b2c2\u6761 \u8457\u4f5c\u6a29\u7b49\u306b\u5bfe\u3059\u308b\u5236\u9650\n\n\u3053\u306e\u5229\u7528\u8a31\u8afe\u306b\u542b\u307e\u308c\u308b\u3044\u304b\u306a\u308b\u6761\u9805\u306b\u3088\u3063\u3066\u3082\u3001\u8a31\u8afe\u8005\u306f\u3001\u3042\u306a\u305f\u304c\u8457\u4f5c\u6a29\u306e\u5236\u9650\uff08\u8457\u4f5c\u6a29\u6cd5\u7b2c30\u6761\u301c49\u6761\uff09\u3001\u8457\u4f5c\u8005\u4eba\u683c\u6a29\u306b\u5bfe\u3059\u308b\u5236\u9650\uff08\u8457\u4f5c\u6a29\u6cd5\u7b2c18\u67612\u9805\u301c4\u9805\u3001\u7b2c19\u67612\u9805\u301c4\u9805\u3001\u7b2c20\u67612\u9805\uff09\u3001\u8457\u4f5c\u96a3\u63a5\u6a29\u306b\u5bfe\u3059\u308b\u5236\u9650\uff08\u8457\u4f5c\u6a29\u6cd5\u7b2c102\u6761\uff09\u305d\u306e\u4ed6\u3001\u8457\u4f5c\u6a29\u6cd5\u53c8\u306f\u305d\u306e\u4ed6\u306e\u9069\u7528\u6cd5\u306b\u57fa\u3065\u3044\u3066\u8a8d\u3081\u3089\u308c\u308b\u3053\u3068\u3068\u306a\u308b\u672c\u4f5c\u54c1\u306e\u5229\u7528\u3092\u7981\u6b62\u3057\u306a\u3044\u3002\n\n\u7b2c3\u6761 \u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u4ed8\u4e0e\n\n\u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u6761\u9805\u306b\u5f93\u3044\u3001\u8a31\u8afe\u8005\u306f\u3042\u306a\u305f\u306b\u3001\u672c\u4f5c\u54c1\u306b\u95a2\u3057\u3001\u3059\u3079\u3066\u306e\u56fd\u3067\u3001\u30ed\u30a4\u30e4\u30ea\u30c6\u30a3\u30fb\u30d5\u30ea\u30fc\u3001\u975e\u6392\u4ed6\u7684\u3067\u3001\uff08\u7b2c7\u6761b\u306b\u5b9a\u3081\u308b\u671f\u9593\uff09\u7d99\u7d9a\u7684\u306a\u4ee5\u4e0b\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u4ed8\u4e0e\u3059\u308b\u3002\u305f\u3060\u3057\u3001\u3042\u306a\u305f\u304c\u4ee5\u524d\u306b\u672c\u4f5c\u54c1\u306b\u95a2\u3059\u308b\u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u6761\u9805\u306b\u9055\u53cd\u3057\u305f\u3053\u3068\u304c\u306a\u3044\u304b\u3001\u3042\u308b\u3044\u306f\u3001\u4ee5\u524d\u306b\u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u6761\u9805\u306b\u9055\u53cd\u3057\u305f\u304c\u3053\u306e\u5229\u7528\u8a31\u8afe\u306b\u57fa\u3065\u304f\u6a29\u5229\u3092\u884c\u4f7f\u3059\u308b\u305f\u3081\u306b\u8a31\u8afe\u8005\u304b\u3089\u660e\u793a\u7684\u306a\u8a31\u53ef\u3092\u5f97\u3066\u3044\u308b\u5834\u5408\u306b\u9650\u308b\u3002\n\n a. \u672c\u4f5c\u54c1\u306b\u542b\u307e\u308c\u308b\u8457\u4f5c\u7269\uff08\u4ee5\u4e0b\u300c\u672c\u8457\u4f5c\u7269\u300d\u3068\u3044\u3046\u3002\uff09\u3092\u8907\u88fd\u3059\u308b\u3053\u3068\uff08\u7de8\u96c6\u8457\u4f5c\u7269\u7b49\u306b\u7d44\u307f\u8fbc\u307f\u8907\u88fd\u3059\u308b\u3053\u3068\u3092\u542b\u3080\u3002\u4ee5\u4e0b\u3001\u540c\u3058\u3002\uff09\u3001\n b. \u672c\u8457\u4f5c\u7269\u3092\u7ffb\u6848\u3057\u3066\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u3092\u5275\u4f5c\u3057\u3001\u8907\u88fd\u3059\u308b\u3053\u3068\u3001\n c. \u672c\u8457\u4f5c\u7269\u53c8\u306f\u305d\u306e\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u306e\u8907\u88fd\u7269\u3092\u9812\u5e03\u3059\u308b\u3053\u3068\uff08\u8b72\u6e21\u307e\u305f\u306f\u8cb8\u4e0e\u306b\u3088\u308a\u516c\u8846\u306b\u63d0\u4f9b\u3059\u308b\u3053\u3068\u3092\u542b\u3080\u3002\u4ee5\u4e0b\u540c\u3058\u3002\uff09\u3001\u4e0a\u6f14\u3059\u308b\u3053\u3068\u3001\u6f14\u594f\u3059\u308b\u3053\u3068\u3001\u4e0a\u6620\u3059\u308b\u3053\u3068\u3001\u516c\u8846\u9001\u4fe1\u3092\u884c\u3046\u3053\u3068\uff08\u9001\u4fe1\u53ef\u80fd\u5316\u3092\u542b\u3080\u3002\u4ee5\u4e0b\u3001\u540c\u3058\u3002\uff09\u3001\u516c\u306b\u53e3\u8ff0\u3059\u308b\u3053\u3068\u3001\u516c\u306b\u5c55\u793a\u3059\u308b\u3053\u3068\u3001\n d. \u672c\u4f5c\u54c1\u306b\u542b\u307e\u308c\u308b\u5b9f\u6f14\u3092\u3001\u9332\u97f3\u30fb\u9332\u753b\u3059\u308b\u3053\u3068\uff08\u9332\u97f3\uff65\u9332\u753b\u7269\u3092\u5897\u88fd\u3059\u308b\u3053\u3068\u3092\u542b\u3080\uff09\u3001\u9332\u97f3\uff65\u9332\u753b\u7269\u306b\u3088\u308a\u9812\u5e03\u3059\u308b\u3053\u3068\u3001\u516c\u8846\u9001\u4fe1\u3092\u884c\u3046\u3053\u3068\u3001\n e. \u672c\u4f5c\u54c1\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u3001\u8907\u88fd\u3059\u308b\u3053\u3068\u3001\u9812\u5e03\u3059\u308b\u3053\u3068\u3001\u516c\u8846\u9001\u4fe1\u3092\u884c\u3046\u3053\u3068\u3001\n f. \u672c\u4f5c\u54c1\u306b\u542b\u307e\u308c\u308b\u3001\u653e\u9001\u306b\u4fc2\u308b\u97f3\u53c8\u306f\u5f71\u50cf\u3092\u3001\u8907\u88fd\u3059\u308b\u3053\u3068\u3001\u305d\u306e\u653e\u9001\u3092\u53d7\u4fe1\u3057\u3066\u518d\u653e\u9001\u3059\u308b\u3053\u3068\u53c8\u306f\u6709\u7dda\u653e\u9001\u3059\u308b\u3053\u3068\u3001\u305d\u306e\u653e\u9001\u53c8\u306f\u3053\u308c\u3092\u53d7\u4fe1\u3057\u3066\u884c\u3046\u6709\u7dda\u653e\u9001\u3092\u53d7\u4fe1\u3057\u3066\u9001\u4fe1\u53ef\u80fd\u5316\u3059\u308b\u3053\u3068\u3001\u305d\u306e\u30c6\u30ec\u30d3\u30b8\u30e7\u30f3\u653e\u9001\u53c8\u306f\u3053\u308c\u3092\u53d7\u4fe1\u3057\u3066\u884c\u3046\u6709\u7dda\u653e\u9001\u3092\u53d7\u4fe1\u3057\u3066\u3001\u5f71\u50cf\u3092\u62e1\u5927\u3059\u308b\u7279\u5225\u306e\u88c5\u7f6e\u3092\u7528\u3044\u3066\u516c\u306b\u4f1d\u9054\u3059\u308b\u3053\u3068\u3001\n g. \u672c\u4f5c\u54c1\u306b\u542b\u307e\u308c\u308b\u3001\u6709\u7dda\u653e\u9001\u306b\u4fc2\u308b\u97f3\u53c8\u306f\u5f71\u50cf\u3092\u3001\u8907\u88fd\u3059\u308b\u3053\u3068\u3001\u305d\u306e\u6709\u7dda\u653e\u9001\u3092\u53d7\u4fe1\u3057\u3066\u653e\u9001\u3057\u3001\u53c8\u306f\u518d\u6709\u7dda\u653e\u9001\u3059\u308b\u3053\u3068\u3001\u305d\u306e\u6709\u7dda\u653e\u9001\u3092\u53d7\u4fe1\u3057\u3066\u9001\u4fe1\u53ef\u80fd\u5316\u3059\u308b\u3053\u3068\u3001\u305d\u306e\u6709\u7dda\u30c6\u30ec\u30d3\u30b8\u30e7\u30f3\u653e\u9001\u3092\u53d7\u4fe1\u3057\u3066\u3001\u5f71\u50cf\u3092\u62e1\u5927\u3059\u308b\u7279\u5225\u306e\u88c5\u7f6e\u3092\u7528\u3044\u3066\u516c\u306b\u4f1d\u9054\u3059\u308b\u3053\u3068\u3001\n\n\u4e0a\u8a18\u306b\u5b9a\u3081\u3089\u308c\u305f\u672c\u4f5c\u54c1\u53c8\u306f\u305d\u306e\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u306e\u5229\u7528\u306f\u3001\u73fe\u5728\u53ca\u3073\u5c06\u6765\u306e\u3059\u3079\u3066\u306e\u5a92\u4f53\u30fb\u5f62\u5f0f\u3067\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u308b\u3002\u3042\u306a\u305f\u306f\u3001\u4ed6\u306e\u5a92\u4f53\u53ca\u3073\u5f62\u5f0f\u3067\u672c\u4f5c\u54c1\u53c8\u306f\u305d\u306e\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u3092\u5229\u7528\u3059\u308b\u306e\u306b\u6280\u8853\u7684\u306b\u5fc5\u8981\u306a\u5909\u66f4\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u308b\u3002\u8a31\u8afe\u8005\u306f\u672c\u4f5c\u54c1\u53c8\u306f\u305d\u306e\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u306b\u95a2\u3057\u3066\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306b\u5f93\u3063\u305f\u5229\u7528\u306b\u3064\u3044\u3066\u306f\u81ea\u5df1\u304c\u6709\u3059\u308b\u8457\u4f5c\u8005\u4eba\u683c\u6a29\u53ca\u3073\u5b9f\u6f14\u5bb6\u4eba\u683c\u6a29\u3092\u884c\u4f7f\u3057\u306a\u3044\u3002\u8a31\u8afe\u8005\u306b\u3088\u3063\u3066\u660e\u793a\u7684\u306b\u4ed8\u4e0e\u3055\u308c\u306a\u3044\u5168\u3066\u306e\u6a29\u5229\u306f\u3001\u7559\u4fdd\u3055\u308c\u308b\u3002\n\n\u7b2c4\u6761 \u53d7\u9818\u8005\u3078\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u63d0\u4f9b\n\n\u3042\u306a\u305f\u304c\u672c\u4f5c\u54c1\u3092\u3053\u306e\u5229\u7528\u8a31\u8afe\u306b\u57fa\u3065\u3044\u3066\u5229\u7528\u3059\u308b\u5ea6\u6bce\u306b\u3001\u8a31\u8afe\u8005\u306f\u672c\u4f5c\u54c1\u53c8\u306f\u672c\u4f5c\u54c1\u306e\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u306e\u53d7\u9818\u8005\u306b\u5bfe\u3057\u3066\u3001\u76f4\u63a5\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u4e0b\u3067\u3042\u306a\u305f\u306b\u8a31\u53ef\u3055\u308c\u305f\u5229\u7528\u8a31\u8afe\u3068\u540c\u3058\u6761\u4ef6\u306e\u672c\u4f5c\u54c1\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u63d0\u4f9b\u3059\u308b\u3002\n\n\u7b2c5\u6761 \u5236\u9650\n\n\u4e0a\u8a18\u7b2c3\u6761\u53ca\u3073\u7b2c4\u6761\u306b\u3088\u308a\u4ed8\u4e0e\u3055\u308c\u305f\u30e9\u30a4\u30bb\u30f3\u30b9\u306f\u3001\u4ee5\u4e0b\u306e\u5236\u9650\u306b\u660e\u793a\u7684\u306b\u5f93\u3044\u3001\u5236\u7d04\u3055\u308c\u308b\u3002\n\n a. \u3042\u306a\u305f\u306f\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u6761\u9805\u306b\u57fa\u3065\u3044\u3066\u306e\u307f\u3001\u672c\u4f5c\u54c1\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3002\n b. \u3042\u306a\u305f\u306f\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u53c8\u306f\u3053\u306e\u5229\u7528\u8a31\u8afe\u3068\u540c\u4e00\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u8981\u7d20\u3092\u542b\u3080\u307b\u304b\u306e\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\uff65\u30b3\u30e2\u30f3\u30ba\u30fb\u30e9\u30a4\u30bb\u30f3\u30b9\uff08\u4f8b\u3048\u3070\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u65b0\u3057\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u3001\u53c8\u306f\u3053\u306e\u5229\u7528\u8a31\u8afe\u3068\u540c\u4e00\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u8981\u7d20\u306e\u4ed6\u56fd\u7c4d\u30e9\u30a4\u30bb\u30f3\u30b9\u306a\u3069\uff09\u306b\u57fa\u3065\u3044\u3066\u306e\u307f\u3001\u672c\u4f5c\u54c1\u306e\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3002\n c. \u3042\u306a\u305f\u306f\u3001\u672c\u4f5c\u54c1\u3092\u5229\u7528\u3059\u308b\u3068\u304d\u306f\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u5199\u3057\u53c8\u306fURI\uff08Uniform Resource Identifier\uff09\u3092\u672c\u4f5c\u54c1\u306e\u8907\u88fd\u7269\u306b\u6dfb\u4ed8\u53c8\u306f\u8868\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u3002\n d. \u3042\u306a\u305f\u306f\u3001\u672c\u4f5c\u54c1\u306e\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u3092\u5229\u7528\u3059\u308b\u3068\u304d\u306f\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u53c8\u306f\u3053\u306e\u5229\u7528\u8a31\u8afe\u3068\u540c\u4e00\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u8981\u7d20\u3092\u542b\u3080\u307b\u304b\u306e\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\uff65\u30b3\u30e2\u30f3\u30ba\uff65\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u5199\u3057\u53c8\u306fURI\u3092\u672c\u4f5c\u54c1\u306e\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u306e\u8907\u88fd\u7269\u306b\u6dfb\u4ed8\u307e\u305f\u306f\u8868\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u3002\n e. \u3042\u306a\u305f\u306f\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u6761\u9805\u53ca\u3073\u3053\u306e\u5229\u7528\u8a31\u8afe\u306b\u3088\u3063\u3066\u4ed8\u4e0e\u3055\u308c\u308b\u5229\u7528\u8a31\u8afe\u53d7\u9818\u8005\u306e\u6a29\u5229\u306e\u884c\u4f7f\u3092\u5909\u66f4\u53c8\u306f\u5236\u9650\u3059\u308b\u3088\u3046\u306a\u3001\u672c\u4f5c\u54c1\u53c8\u306f\u305d\u306e\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u306b\u4fc2\u308b\u6761\u4ef6\u3092\u63d0\u6848\u3057\u305f\u308a\u8ab2\u3057\u305f\u308a\u3057\u3066\u306f\u306a\u3089\u306a\u3044\u3002\n f. \u3042\u306a\u305f\u306f\u3001\u672c\u4f5c\u54c1\u3092\u518d\u5229\u7528\u8a31\u8afe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u3002\n g. \u3042\u306a\u305f\u306f\u3001\u672c\u4f5c\u54c1\u53c8\u306f\u305d\u306e\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u306e\u5229\u7528\u306b\u3042\u305f\u3063\u3066\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u53ca\u3073\u305d\u306e\u514d\u8cac\u6761\u9805\u306b\u95a2\u3059\u308b\u6ce8\u610f\u66f8\u304d\u306e\u5185\u5bb9\u3092\u5909\u66f4\u305b\u305a\u3001\u898b\u3084\u3059\u3044\u614b\u69d8\u3067\u305d\u306e\u307e\u307e\u63b2\u8f09\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u3002\n h. \u3042\u306a\u305f\u306f\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u6761\u9805\u3068\u77db\u76fe\u3059\u308b\u65b9\u6cd5\u3067\u672c\u8457\u4f5c\u7269\u3078\u306e\u30a2\u30af\u30bb\u30b9\u53c8\u306f\u4f7f\u7528\u3092\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3059\u308b\u3088\u3046\u306a\u6280\u8853\u7684\u4fdd\u8b77\u624b\u6bb5\u3092\u7528\u3044\u3066\u3001\u672c\u4f5c\u54c1\u53c8\u306f\u305d\u306e\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u3092\u5229\u7528\u3057\u3066\u306f\u306a\u3089\u306a\u3044\u3002\n i. \u672c\u6761\u306e\u5236\u9650\u306f\u3001\u672c\u4f5c\u54c1\u53c8\u306f\u305d\u306e\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u304c\u7de8\u96c6\u8457\u4f5c\u7269\u7b49\u306b\u7d44\u307f\u8fbc\u307e\u308c\u305f\u5834\u5408\u306b\u3082\u3001\u305d\u306e\u7d44\u307f\u8fbc\u307e\u308c\u305f\u4f5c\u54c1\u306b\u95a2\u3057\u3066\u306f\u9069\u7528\u3055\u308c\u308b\u3002\u3057\u304b\u3057\u3001\u672c\u4f5c\u54c1\u53c8\u306f\u305d\u306e\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u304c\u7d44\u307f\u8fbc\u307e\u308c\u305f\u7de8\u96c6\u8457\u4f5c\u7269\u7b49\u305d\u306e\u3082\u306e\u306f\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u6761\u9805\u306b\u5f93\u3046\u5fc5\u8981\u306f\u306a\u3044\u3002\n j. \u3042\u306a\u305f\u306f\u3001\u672c\u4f5c\u54c1\u3001\u305d\u306e\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u53c8\u306f\u672c\u4f5c\u54c1\u3092\u7d44\u307f\u8fbc\u3093\u3060\u7de8\u96c6\u8457\u4f5c\u7269\u7b49\u3092\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f\u3001\uff081\uff09\u672c\u4f5c\u54c1\u306b\u4fc2\u308b\u3059\u3079\u3066\u306e\u8457\u4f5c\u6a29\u8868\u793a\u3092\u305d\u306e\u307e\u307e\u306b\u3057\u3066\u304a\u304b\u306a\u3051\u308c\u3070\u306a\u3089\u305a\u3001\uff082\uff09\u539f\u8457\u4f5c\u8005\u53ca\u3073\u5b9f\u6f14\u5bb6\u306e\u30af\u30ec\u30b8\u30c3\u30c8\u3092\u3001\u5408\u7406\u7684\u306a\u65b9\u5f0f\u3067\u3001\uff08\u3082\u3057\u793a\u3055\u308c\u3066\u3044\u308c\u3070\u539f\u8457\u4f5c\u8005\u53ca\u3073\u5b9f\u6f14\u5bb6\u306e\u540d\u524d\u53c8\u306f\u5909\u540d\u3092\u4f1d\u3048\u308b\u3053\u3068\u306b\u3088\u308a\u3001\uff09\u8868\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a\u3001\uff083\uff09\u672c\u4f5c\u54c1\u306e\u30bf\u30a4\u30c8\u30eb\u304c\u793a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306b\u306f\u3001\u305d\u306e\u30bf\u30a4\u30c8\u30eb\u3092\u8868\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a\u3001\uff084\uff09\u8a31\u8afe\u8005\u304c\u672c\u4f5c\u54c1\u306b\u6dfb\u4ed8\u3059\u308b\u3088\u3046\u6307\u5b9a\u3057\u305fURI\u304c\u3042\u308c\u3070\u3001\u5408\u7406\u7684\u306b\u5b9f\u884c\u53ef\u80fd\u306a\u7bc4\u56f2\u3067\u3001\u305d\u306eURI\u3092\u8868\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a\uff08\u305f\u3060\u3057\u3001\u305d\u306eURI\u304c\u672c\u4f5c\u54c1\u306e\u8457\u4f5c\u6a29\u8868\u793a\u307e\u305f\u306f\u30e9\u30a4\u30bb\u30f3\u30b9\u60c5\u5831\u3092\u53c2\u7167\u3059\u308b\u3082\u306e\u3067\u306a\u3044\u3068\u304d\u306f\u3053\u306e\u9650\u308a\u3067\u306a\u3044\u3002\uff09\uff085\uff09\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u306e\u5834\u5408\u306b\u306f\u3001\u5f53\u8a72\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u4e2d\u306e\u539f\u8457\u4f5c\u7269\u306e\u5229\u7528\u3092\u793a\u3059\u30af\u30ec\u30b8\u30c3\u30c8\u3092\u8868\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u3002\u3053\u308c\u3089\u306e\u30af\u30ec\u30b8\u30c3\u30c8\u306f\u3001\u5408\u7406\u7684\u3067\u3042\u308c\u3070\u3069\u3093\u306a\u65b9\u6cd5\u3067\u3082\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u308b\u3002\u3057\u304b\u3057\u306a\u304c\u3089\u3001\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u53c8\u306f\u7de8\u96c6\u8457\u4f5c\u7269\u7b49\u306e\u5834\u5408\u306b\u306f\u3001\u5c11\u306a\u304f\u3068\u3082\u4ed6\u306e\u540c\u69d8\u306e\u8457\u4f5c\u8005\u306e\u30af\u30ec\u30b8\u30c3\u30c8\u304c\u8868\u793a\u3055\u308c\u308b\u7b87\u6240\u3067\u5f53\u8a72\u30af\u30ec\u30b8\u30c3\u30c8\u3092\u8868\u793a\u3057\u3001\u5c11\u306a\u304f\u3068\u3082\u4ed6\u306e\u540c\u69d8\u306e\u8457\u4f5c\u8005\u306e\u30af\u30ec\u30b8\u30c3\u30c8\u3068\u540c\u7a0b\u5ea6\u306b\u76ee\u7acb\u3064\u65b9\u6cd5\u3067\u3042\u308b\u3053\u3068\u3092\u8981\u3059\u308b\u3002\n k. \u3082\u3057\u3001\u3042\u306a\u305f\u304c\u3001\u672c\u4f5c\u54c1\u306e\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u3001\u53c8\u306f\u672c\u4f5c\u54c1\u3082\u3057\u304f\u306f\u305d\u306e\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u3092\u7d44\u307f\u8fbc\u3093\u3060\u7de8\u96c6\u8457\u4f5c\u7269\u7b49\u3092\u5275\u4f5c\u3057\u305f\u5834\u5408\u3001\u3042\u306a\u305f\u306f\u3001\u8a31\u8afe\u8005\u304b\u3089\u306e\u901a\u77e5\u304c\u3042\u308c\u3070\u3001\u5b9f\u884c\u53ef\u80fd\u306a\u7bc4\u56f2\u3067\u3001\u8981\u6c42\u306b\u5fdc\u3058\u3066\u3001\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u53c8\u306f\u7de8\u96c6\u8457\u4f5c\u7269\u7b49\u304b\u3089\u3001\u8a31\u8afe\u8005\u53c8\u306f\u539f\u8457\u4f5c\u8005\u3078\u306e\u8a00\u53ca\u3092\u3059\u3079\u3066\u9664\u53bb\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u3002\n\n\u7b2c6\u6761 \u8cac\u4efb\u5236\u9650\n\n\u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u4e21\u5f53\u4e8b\u8005\u304c\u66f8\u9762\u306b\u3066\u5225\u9014\u5408\u610f\u3057\u306a\u3044\u9650\u308a\u3001\u8a31\u8afe\u8005\u306f\u672c\u4f5c\u54c1\u3092\u73fe\u72b6\u306e\u307e\u307e\u63d0\u4f9b\u3059\u308b\u3082\u306e\u3068\u3057\u3001\u660e\u793a\u30fb\u9ed9\u793a\u3092\u554f\u308f\u305a\u3001\u672c\u4f5c\u54c1\u306b\u95a2\u3057\u3066\u3044\u304b\u306a\u308b\u4fdd\u8a3c\uff08\u7279\u5b9a\u306e\u5229\u7528\u76ee\u7684\u3078\u306e\u9069\u5408\u6027\u3001\u7b2c\u4e09\u8005\u306e\u6a29\u5229\u306e\u975e\u4fb5\u5bb3\u3001\u6b20\u9665\u306e\u4e0d\u5b58\u5728\u3092\u542b\u3080\u304c\u3001\u3053\u308c\u306b\u9650\u3089\u308c\u306a\u3044\u3002\uff09\u3082\u3057\u306a\u3044\u3002\n\n\u3053\u306e\u5229\u7528\u8a31\u8afe\u53c8\u306f\u3053\u306e\u5229\u7528\u8a31\u8afe\u306b\u57fa\u3065\u304f\u672c\u4f5c\u54c1\u306e\u5229\u7528\u304b\u3089\u767a\u751f\u3059\u308b\u3001\u3044\u304b\u306a\u308b\u640d\u5bb3\uff08\u8a31\u8afe\u8005\u304c\u3001\u672c\u4f5c\u54c1\u306b\u304b\u304b\u308b\u8457\u4f5c\u6a29\u3001\u8457\u4f5c\u96a3\u63a5\u6a29\u3001\u8457\u4f5c\u8005\u4eba\u683c\u6a29\u3001\u5b9f\u6f14\u5bb6\u4eba\u683c\u6a29\u3001\u5546\u6a19\u6a29\u3001\u30d1\u30d6\u30ea\u30b7\u30c6\u30a3\u6a29\u3001\u4e0d\u6b63\u7af6\u4e89\u9632\u6b62\u6cd5\u305d\u306e\u4ed6\u95a2\u9023\u6cd5\u898f\u4e0a\u4fdd\u8b77\u3055\u308c\u308b\u5229\u76ca\u3092\u6709\u3059\u308b\u8005\u304b\u3089\u306e\u8a31\u8afe\u3092\u5f97\u308b\u3053\u3068\u306a\u304f\u672c\u4f5c\u54c1\u306e\u5229\u7528\u8a31\u8afe\u3092\u884c\u3063\u305f\u3053\u3068\u306b\u3088\u308a\u767a\u751f\u3059\u308b\u640d\u5bb3\u3001\u30d7\u30e9\u30a4\u30d0\u30b7\u30fc\u4fb5\u5bb3\u53c8\u306f\u540d\u8a89\u6bc0\u640d\u304b\u3089\u767a\u751f\u3059\u308b\u640d\u5bb3\u7b49\u306e\u901a\u5e38\u640d\u5bb3\u3001\u53ca\u3073\u7279\u5225\u640d\u5bb3\u3092\u542b\u3080\u304c\u3001\u3053\u308c\u306b\u9650\u3089\u306a\u3044\u3002\uff09\u306b\u3064\u3044\u3066\u3082\u3001\u8a31\u8afe\u8005\u306b\u6545\u610f\u53c8\u306f\u91cd\u5927\u306a\u904e\u5931\u304c\u3042\u308b\u5834\u5408\u3092\u9664\u304d\u3001\u8a31\u8afe\u8005\u304c\u305d\u306e\u3088\u3046\u306a\u640d\u5bb3\u767a\u751f\u306e\u53ef\u80fd\u6027\u3092\u77e5\u3089\u3055\u308c\u305f\u304b\u5426\u304b\u3092\u554f\u308f\u305a\u3001\u8a31\u8afe\u8005\u306f\u3001\u3042\u306a\u305f\u306b\u5bfe\u3057\u3001\u3053\u308c\u3092\u8ce0\u511f\u3059\u308b\u8cac\u4efb\u3092\u8ca0\u308f\u306a\u3044\u3002\n\n\u7b2c7\u6761 \u7d42\u4e86\n\n a. \u3053\u306e\u5229\u7528\u8a31\u8afe\u306f\u3001\u3042\u306a\u305f\u304c\u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u6761\u9805\u306b\u9055\u53cd\u3059\u308b\u3068\u81ea\u52d5\u7684\u306b\u7d42\u4e86\u3059\u308b\u3002\u3057\u304b\u3057\u3001\u672c\u4f5c\u54c1\u3001\u305d\u306e\u4e8c\u6b21\u7684\u8457\u4f5c\u7269\u53c8\u306f\u7de8\u96c6\u8457\u4f5c\u7269\u7b49\u3092\u3042\u306a\u305f\u304b\u3089\u3053\u306e\u5229\u7528\u8a31\u8afe\u306b\u57fa\u3065\u304d\u53d7\u9818\u3057\u305f\u7b2c\u4e09\u8005\u306b\u5bfe\u3057\u3066\u306f\u3001\u305d\u306e\u53d7\u9818\u8005\u304c\u3053\u306e\u5229\u7528\u8a31\u8afe\u3092\u9075\u5b88\u3057\u3066\u3044\u308b\u9650\u308a\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306f\u7d42\u4e86\u3057\u306a\u3044\u3002\u7b2c1\u6761\u3001\u7b2c2\u6761\u3001\u7b2c4\u6761\u304b\u3089\u7b2c9\u6761\u306f\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u304c\u7d42\u4e86\u3057\u3066\u3082\u306a\u304a\u6709\u52b9\u306b\u5b58\u7d9a\u3059\u308b\u3002\n b. \u4e0a\u8a18a\u306b\u5b9a\u3081\u308b\u5834\u5408\u3092\u9664\u304d\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306b\u57fa\u3065\u304f\u30e9\u30a4\u30bb\u30f3\u30b9\u306f\u3001\u672c\u4f5c\u54c1\u306b\u542b\u307e\u308c\u308b\u8457\u4f5c\u6a29\u6cd5\u4e0a\u306e\u6a29\u5229\u304c\u5b58\u7d9a\u3059\u308b\u304b\u304e\u308a\u7d99\u7d9a\u3059\u308b\u3002\n c. \u8a31\u8afe\u8005\u306f\u3001\u4e0a\u8a18a\u304a\u3088\u3073b\u306b\u95a2\u308f\u3089\u305a\u3001\u3044\u3064\u3067\u3082\u3001\u672c\u4f5c\u54c1\u3092\u3053\u306e\u5229\u7528\u8a31\u8afe\u306b\u57fa\u3065\u3044\u3066\u9812\u5e03\u3059\u308b\u3053\u3068\u3092\u5c06\u6765\u306b\u5411\u304b\u3063\u3066\u4e2d\u6b62\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3002\u305f\u3060\u3057\u3001\u8a31\u8afe\u8005\u304c\u3053\u306e\u5229\u7528\u8a31\u8afe\u306b\u57fa\u3065\u304f\u9812\u5e03\u3092\u5c06\u6765\u306b\u5411\u304b\u3063\u3066\u4e2d\u6b62\u3057\u305f\u5834\u5408\u3067\u3082\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306b\u57fa\u3065\u3044\u3066\u3059\u3067\u306b\u672c\u4f5c\u54c1\u3092\u53d7\u9818\u3057\u305f\u5229\u7528\u8005\u306b\u5bfe\u3057\u3066\u306f\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306b\u57fa\u3065\u3044\u3066\u904e\u53bb\u53ca\u3073\u5c06\u6765\u306b\u4e0e\u3048\u3089\u308c\u308b\u3044\u304b\u306a\u308b\u30e9\u30a4\u30bb\u30f3\u30b9\u3082\u7d42\u4e86\u3059\u308b\u3053\u3068\u306f\u306a\u3044\u3002\u307e\u305f\u3001\u4e0a\u8a18\u306b\u3088\u3063\u3066\u7d42\u4e86\u3057\u306a\u3044\u9650\u308a\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306f\u3001\u5168\u9762\u7684\u306b\u6709\u52b9\u306a\u3082\u306e\u3068\u3057\u3066\u7d99\u7d9a\u3059\u308b\u3002\n\n\u7b2c8\u6761 \u305d\u306e\u4ed6\n\n a. \u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u3044\u305a\u308c\u304b\u306e\u898f\u5b9a\u304c\u3001\u9069\u7528\u6cd5\u306e\u4e0b\u3067\u7121\u52b9\u53ca\u3073\uff0f\u53c8\u306f\u57f7\u884c\u4e0d\u80fd\u306e\u5834\u5408\u3067\u3042\u3063\u3066\u3082\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u4ed6\u306e\u6761\u9805\u306e\u6709\u52b9\u6027\u53ca\u3073\u57f7\u884c\u53ef\u80fd\u6027\u306b\u306f\u5f71\u97ff\u3057\u306a\u3044\u3002\n b. \u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u6761\u9805\u306e\u5168\u90e8\u53c8\u306f\u4e00\u90e8\u306e\u653e\u68c4\u53c8\u306f\u305d\u306e\u9055\u53cd\u306b\u95a2\u3059\u308b\u627f\u8afe\u306f\u3001\u3053\u308c\u304c\u66f8\u9762\u306b\u3055\u308c\u3001\u5f53\u8a72\u653e\u68c4\u53c8\u306f\u627f\u8afe\u306b\u8cac\u4efb\u3092\u8ca0\u3046\u5f53\u4e8b\u8005\u306b\u3088\u308b\u7f72\u540d\u53c8\u306f\u8a18\u540d\u62bc\u5370\u304c\u306a\u3055\u308c\u306a\u3044\u9650\u308a\u3001\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u3002\n c. \u3053\u306e\u5229\u7528\u8a31\u8afe\u306f\u3001\u5f53\u4e8b\u8005\u304c\u672c\u4f5c\u54c1\u306b\u95a2\u3057\u3066\u884c\u3063\u305f\u6700\u7d42\u304b\u3064\u552f\u4e00\u306e\u5408\u610f\u306e\u5185\u5bb9\u3067\u3042\u308b\u3002\u3053\u306e\u5229\u7528\u8a31\u8afe\u306f\u3001\u8a31\u8afe\u8005\u3068\u3042\u306a\u305f\u3068\u306e\u76f8\u4e92\u306e\u66f8\u9762\u306b\u3088\u308b\u5408\u610f\u306a\u304f\u4fee\u6b63\u3055\u308c\u306a\u3044\u3002\n d. \u3053\u306e\u5229\u7528\u8a31\u8afe\u306f\u65e5\u672c\u8a9e\u306b\u3088\u308a\u63d0\u4f9b\u3055\u308c\u308b\u3002\u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u82f1\u8a9e\u305d\u306e\u4ed6\u306e\u8a00\u8a9e\u3078\u306e\u7ffb\u8a33\u306f\u53c2\u7167\u306e\u305f\u3081\u306e\u3082\u306e\u306b\u904e\u304e\u305a\u3001\u3053\u306e\u5229\u7528\u8a31\u8afe\u306e\u65e5\u672c\u8a9e\u7248\u3068\u7ffb\u8a33\u3068\u306e\u9593\u306b\u4f55\u3089\u304b\u306e\u9f5f\u9f6c\u304c\u3042\u308b\u5834\u5408\u306b\u306f\u65e5\u672c\u8a9e\u7248\u304c\u512a\u5148\u3059\u308b\u3002\n\n\u7b2c9\u6761 \u6e96\u62e0\u6cd5\n\n\u3053\u306e\u5229\u7528\u8a31\u8afe\u306f\u3001\u65e5\u672c\u6cd5\u306b\u57fa\u3065\u304d\u89e3\u91c8\u3055\u308c\u308b\u3002\n\n\u672c\u4f5c\u54c1\u304c\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30fb\u30b3\u30e2\u30f3\u30ba\u30fb\u30e9\u30a4\u30bb\u30f3\u30b9\u306b\u57fa\u3065\u304d\u5229\u7528\u8a31\u8afe\u3055\u308c\u305f\u3053\u3068\u3092\u516c\u8846\u306b\u793a\u3059\u3068\u3044\u3046\u9650\u5b9a\u3055\u308c\u305f\u76ee\u7684\u306e\u5834\u5408\u3092\u9664\u304d\u3001\u8a31\u8afe\u8005\u3082\u88ab\u8a31\u8afe\u8005\u3082\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30fb\u30b3\u30e2\u30f3\u30ba\u306e\u4e8b\u524d\u306e\u66f8\u9762\u306b\u3088\u308b\u540c\u610f\u306a\u3057\u306b\u300c\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30fb\u30b3\u30e2\u30f3\u30ba\u300d\u306e\u5546\u6a19\u82e5\u3057\u304f\u306f\u95a2\u9023\u5546\u6a19\u53c8\u306f\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30fb\u30b3\u30e2\u30f3\u30ba\u306e\u30ed\u30b4\u3092\u4f7f\u7528\u3057\u306a\u3044\u3082\u306e\u3068\u3057\u307e\u3059\u3002\u4f7f\u7528\u304c\u8a31\u53ef\u3055\u308c\u305f\u5834\u5408\u306f\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30fb\u30b3\u30e2\u30f3\u30ba\u304a\u3088\u3073\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\uff65\u30b3\u30e2\u30f3\u30ba\uff65\u30b8\u30e3\u30d1\u30f3\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u4e0a\u306b\u516c\u8868\u3055\u308c\u308b\u3001\u53c8\u306f\u305d\u306e\u4ed6\u968f\u6642\u8981\u6c42\u306b\u5f93\u3044\u5229\u7528\u53ef\u80fd\u3068\u306a\u308b\u3001\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30fb\u30b3\u30e2\u30f3\u30ba\u306e\u5f53\u8a72\u6642\u70b9\u306b\u304a\u3051\u308b\u5546\u6a19\u4f7f\u7528\u6307\u91dd\u3092\u9075\u5b88\u3059\u308b\u3082\u306e\u3068\u3057\u307e\u3059\u3002\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30fb\u30b3\u30e2\u30f3\u30ba\u306f https://creativecommons.org/\u304b\u3089\u3001\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30fb\u30b3\u30e2\u30f3\u30ba\u30fb\u30b8\u30e3\u30d1\u30f3\u306fhttp://www.creativecommons.jp/\u304b\u3089\u9023\u7d61\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002", + "json": "cc-by-sa-2.1-jp.json", + "yaml": "cc-by-sa-2.1-jp.yml", + "html": "cc-by-sa-2.1-jp.html", + "license": "cc-by-sa-2.1-jp.LICENSE" + }, + { + "license_key": "cc-by-sa-2.5", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-ShareAlike 2.5\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this License.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n\"License Elements\" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto create and reproduce Derivative Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works.\nFor the avoidance of doubt, where the work is a musical composition:\n\nPerformance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work.\nMechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights society or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work (\"cover version\") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions).\nWebcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions).\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.\n\n4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(c), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by clause 4(c), as requested.\nYou may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, a later version of this License with the same License Elements as this License, or a Creative Commons iCommons license that contains the same License Elements as this License (e.g. Attribution-ShareAlike 2.5 Japan). You must include a copy of, or the Uniform Resource Identifier for, this License or other license specified in the previous sentence with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., \"French translation of the Work by Original Author,\" or \"Screenplay based on original Work by Original Author\"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE MATERIALS, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nEach time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\nCreative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\n\nExcept for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark \"Creative Commons\" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\n\nCreative Commons may be contacted at http://creativecommons.org/.", + "json": "cc-by-sa-2.5.json", + "yaml": "cc-by-sa-2.5.yml", + "html": "cc-by-sa-2.5.html", + "license": "cc-by-sa-2.5.LICENSE" + }, + { + "license_key": "cc-by-sa-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Legal Code\n\nAttribution-ShareAlike 3.0 Unported\n\n CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\n LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN\n ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS\n INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES\n REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR\n DAMAGES RESULTING FROM ITS USE.\n\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE\nCOMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY\nCOPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS\nAUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE\nTO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY\nBE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS\nCONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND\nCONDITIONS.\n\n1. Definitions\n\n a. \"Adaptation\" means a work based upon the Work, or upon the Work and\n other pre-existing works, such as a translation, adaptation,\n derivative work, arrangement of music or other alterations of a\n literary or artistic work, or phonogram or performance and includes\n cinematographic adaptations or any other form in which the Work may be\n recast, transformed, or adapted including in any form recognizably\n derived from the original, except that a work that constitutes a\n Collection will not be considered an Adaptation for the purpose of\n this License. For the avoidance of doubt, where the Work is a musical\n work, performance or phonogram, the synchronization of the Work in\n timed-relation with a moving image (\"synching\") will be considered an\n Adaptation for the purpose of this License.\n b. \"Collection\" means a collection of literary or artistic works, such as\n encyclopedias and anthologies, or performances, phonograms or\n broadcasts, or other works or subject matter other than works listed\n in Section 1(f) below, which, by reason of the selection and\n arrangement of their contents, constitute intellectual creations, in\n which the Work is included in its entirety in unmodified form along\n with one or more other contributions, each constituting separate and\n independent works in themselves, which together are assembled into a\n collective whole. A work that constitutes a Collection will not be\n considered an Adaptation (as defined below) for the purposes of this\n License.\n c. \"Creative Commons Compatible License\" means a license that is listed\n at https://creativecommons.org/compatiblelicenses that has been\n approved by Creative Commons as being essentially equivalent to this\n License, including, at a minimum, because that license: (i) contains\n terms that have the same purpose, meaning and effect as the License\n Elements of this License; and, (ii) explicitly permits the relicensing\n of adaptations of works made available under that license under this\n License or a Creative Commons jurisdiction license with the same\n License Elements as this License.\n d. \"Distribute\" means to make available to the public the original and\n copies of the Work or Adaptation, as appropriate, through sale or\n other transfer of ownership.\n e. \"License Elements\" means the following high-level license attributes\n as selected by Licensor and indicated in the title of this License:\n Attribution, ShareAlike.\n f. \"Licensor\" means the individual, individuals, entity or entities that\n offer(s) the Work under the terms of this License.\n g. \"Original Author\" means, in the case of a literary or artistic work,\n the individual, individuals, entity or entities who created the Work\n or if no individual or entity can be identified, the publisher; and in\n addition (i) in the case of a performance the actors, singers,\n musicians, dancers, and other persons who act, sing, deliver, declaim,\n play in, interpret or otherwise perform literary or artistic works or\n expressions of folklore; (ii) in the case of a phonogram the producer\n being the person or legal entity who first fixes the sounds of a\n performance or other sounds; and, (iii) in the case of broadcasts, the\n organization that transmits the broadcast.\n h. \"Work\" means the literary and/or artistic work offered under the terms\n of this License including without limitation any production in the\n literary, scientific and artistic domain, whatever may be the mode or\n form of its expression including digital form, such as a book,\n pamphlet and other writing; a lecture, address, sermon or other work\n of the same nature; a dramatic or dramatico-musical work; a\n choreographic work or entertainment in dumb show; a musical\n composition with or without words; a cinematographic work to which are\n assimilated works expressed by a process analogous to cinematography;\n a work of drawing, painting, architecture, sculpture, engraving or\n lithography; a photographic work to which are assimilated works\n expressed by a process analogous to photography; a work of applied\n art; an illustration, map, plan, sketch or three-dimensional work\n relative to geography, topography, architecture or science; a\n performance; a broadcast; a phonogram; a compilation of data to the\n extent it is protected as a copyrightable work; or a work performed by\n a variety or circus performer to the extent it is not otherwise\n considered a literary or artistic work.\n i. \"You\" means an individual or entity exercising rights under this\n License who has not previously violated the terms of this License with\n respect to the Work, or who has received express permission from the\n Licensor to exercise rights under this License despite a previous\n violation.\n j. \"Publicly Perform\" means to perform public recitations of the Work and\n to communicate to the public those public recitations, by any means or\n process, including by wire or wireless means or public digital\n performances; to make available to the public Works in such a way that\n members of the public may access these Works from a place and at a\n place individually chosen by them; to perform the Work to the public\n by any means or process and the communication to the public of the\n performances of the Work, including by public digital performance; to\n broadcast and rebroadcast the Work by any means including signs,\n sounds or images.\n k. \"Reproduce\" means to make copies of the Work by any means including\n without limitation by sound or visual recordings and the right of\n fixation and reproducing fixations of the Work, including storage of a\n protected performance or phonogram in digital form or other electronic\n medium.\n\n2. Fair Dealing Rights. Nothing in this License is intended to reduce,\nlimit, or restrict any uses free from copyright or rights arising from\nlimitations or exceptions that are provided for in connection with the\ncopyright protection under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License,\nLicensor hereby grants You a worldwide, royalty-free, non-exclusive,\nperpetual (for the duration of the applicable copyright) license to\nexercise the rights in the Work as stated below:\n\n a. to Reproduce the Work, to incorporate the Work into one or more\n Collections, and to Reproduce the Work as incorporated in the\n Collections;\n b. to create and Reproduce Adaptations provided that any such Adaptation,\n including any translation in any medium, takes reasonable steps to\n clearly label, demarcate or otherwise identify that changes were made\n to the original Work. For example, a translation could be marked \"The\n original work was translated from English to Spanish,\" or a\n modification could indicate \"The original work has been modified.\";\n c. to Distribute and Publicly Perform the Work including as incorporated\n in Collections; and,\n d. to Distribute and Publicly Perform Adaptations.\n e. For the avoidance of doubt:\n\n i. Non-waivable Compulsory License Schemes. In those jurisdictions in\n which the right to collect royalties through any statutory or\n compulsory licensing scheme cannot be waived, the Licensor\n reserves the exclusive right to collect such royalties for any\n exercise by You of the rights granted under this License;\n ii. Waivable Compulsory License Schemes. In those jurisdictions in\n which the right to collect royalties through any statutory or\n compulsory licensing scheme can be waived, the Licensor waives the\n exclusive right to collect such royalties for any exercise by You\n of the rights granted under this License; and,\n iii. Voluntary License Schemes. The Licensor waives the right to\n collect royalties, whether individually or, in the event that the\n Licensor is a member of a collecting society that administers\n voluntary licensing schemes, via that society, from any exercise\n by You of the rights granted under this License.\n\nThe above rights may be exercised in all media and formats whether now\nknown or hereafter devised. The above rights include the right to make\nsuch modifications as are technically necessary to exercise the rights in\nother media and formats. Subject to Section 8(f), all rights not expressly\ngranted by Licensor are hereby reserved.\n\n4. Restrictions. The license granted in Section 3 above is expressly made\nsubject to and limited by the following restrictions:\n\n a. You may Distribute or Publicly Perform the Work only under the terms\n of this License. You must include a copy of, or the Uniform Resource\n Identifier (URI) for, this License with every copy of the Work You\n Distribute or Publicly Perform. You may not offer or impose any terms\n on the Work that restrict the terms of this License or the ability of\n the recipient of the Work to exercise the rights granted to that\n recipient under the terms of the License. You may not sublicense the\n Work. You must keep intact all notices that refer to this License and\n to the disclaimer of warranties with every copy of the Work You\n Distribute or Publicly Perform. When You Distribute or Publicly\n Perform the Work, You may not impose any effective technological\n measures on the Work that restrict the ability of a recipient of the\n Work from You to exercise the rights granted to that recipient under\n the terms of the License. This Section 4(a) applies to the Work as\n incorporated in a Collection, but this does not require the Collection\n apart from the Work itself to be made subject to the terms of this\n License. If You create a Collection, upon notice from any Licensor You\n must, to the extent practicable, remove from the Collection any credit\n as required by Section 4(c), as requested. If You create an\n Adaptation, upon notice from any Licensor You must, to the extent\n practicable, remove from the Adaptation any credit as required by\n Section 4(c), as requested.\n b. You may Distribute or Publicly Perform an Adaptation only under the\n terms of: (i) this License; (ii) a later version of this License with\n the same License Elements as this License; (iii) a Creative Commons\n jurisdiction license (either this or a later license version) that\n contains the same License Elements as this License (e.g.,\n Attribution-ShareAlike 3.0 US)); (iv) a Creative Commons Compatible\n License. If you license the Adaptation under one of the licenses\n mentioned in (iv), you must comply with the terms of that license. If\n you license the Adaptation under the terms of any of the licenses\n mentioned in (i), (ii) or (iii) (the \"Applicable License\"), you must\n comply with the terms of the Applicable License generally and the\n following provisions: (I) You must include a copy of, or the URI for,\n the Applicable License with every copy of each Adaptation You\n Distribute or Publicly Perform; (II) You may not offer or impose any\n terms on the Adaptation that restrict the terms of the Applicable\n License or the ability of the recipient of the Adaptation to exercise\n the rights granted to that recipient under the terms of the Applicable\n License; (III) You must keep intact all notices that refer to the\n Applicable License and to the disclaimer of warranties with every copy\n of the Work as included in the Adaptation You Distribute or Publicly\n Perform; (IV) when You Distribute or Publicly Perform the Adaptation,\n You may not impose any effective technological measures on the\n Adaptation that restrict the ability of a recipient of the Adaptation\n from You to exercise the rights granted to that recipient under the\n terms of the Applicable License. This Section 4(b) applies to the\n Adaptation as incorporated in a Collection, but this does not require\n the Collection apart from the Adaptation itself to be made subject to\n the terms of the Applicable License.\n c. If You Distribute, or Publicly Perform the Work or any Adaptations or\n Collections, You must, unless a request has been made pursuant to\n Section 4(a), keep intact all copyright notices for the Work and\n provide, reasonable to the medium or means You are utilizing: (i) the\n name of the Original Author (or pseudonym, if applicable) if supplied,\n and/or if the Original Author and/or Licensor designate another party\n or parties (e.g., a sponsor institute, publishing entity, journal) for\n attribution (\"Attribution Parties\") in Licensor's copyright notice,\n terms of service or by other reasonable means, the name of such party\n or parties; (ii) the title of the Work if supplied; (iii) to the\n extent reasonably practicable, the URI, if any, that Licensor\n specifies to be associated with the Work, unless such URI does not\n refer to the copyright notice or licensing information for the Work;\n and (iv) , consistent with Ssection 3(b), in the case of an\n Adaptation, a credit identifying the use of the Work in the Adaptation\n (e.g., \"French translation of the Work by Original Author,\" or\n \"Screenplay based on original Work by Original Author\"). The credit\n required by this Section 4(c) may be implemented in any reasonable\n manner; provided, however, that in the case of a Adaptation or\n Collection, at a minimum such credit will appear, if a credit for all\n contributing authors of the Adaptation or Collection appears, then as\n part of these credits and in a manner at least as prominent as the\n credits for the other contributing authors. For the avoidance of\n doubt, You may only use the credit required by this Section for the\n purpose of attribution in the manner set out above and, by exercising\n Your rights under this License, You may not implicitly or explicitly\n assert or imply any connection with, sponsorship or endorsement by the\n Original Author, Licensor and/or Attribution Parties, as appropriate,\n of You or Your use of the Work, without the separate, express prior\n written permission of the Original Author, Licensor and/or Attribution\n Parties.\n d. Except as otherwise agreed in writing by the Licensor or as may be\n otherwise permitted by applicable law, if You Reproduce, Distribute or\n Publicly Perform the Work either by itself or as part of any\n Adaptations or Collections, You must not distort, mutilate, modify or\n take other derogatory action in relation to the Work which would be\n prejudicial to the Original Author's honor or reputation. Licensor\n agrees that in those jurisdictions (e.g. Japan), in which any exercise\n of the right granted in Section 3(b) of this License (the right to\n make Adaptations) would be deemed to be a distortion, mutilation,\n modification or other derogatory action prejudicial to the Original\n Author's honor and reputation, the Licensor will waive or not assert,\n as appropriate, this Section, to the fullest extent permitted by the\n applicable national law, to enable You to reasonably exercise Your\n right under Section 3(b) of this License (right to make Adaptations)\n but not otherwise.\n\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR\nOFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY\nKIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,\nINCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,\nFITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF\nLATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS,\nWHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION\nOF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE\nLAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR\nANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES\nARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS\nBEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\n a. This License and the rights granted hereunder will terminate\n automatically upon any breach by You of the terms of this License.\n Individuals or entities who have received Adaptations or Collections\n from You under this License, however, will not have their licenses\n terminated provided such individuals or entities remain in full\n compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will\n survive any termination of this License.\n b. Subject to the above terms and conditions, the license granted here is\n perpetual (for the duration of the applicable copyright in the Work).\n Notwithstanding the above, Licensor reserves the right to release the\n Work under different license terms or to stop distributing the Work at\n any time; provided, however that any such election will not serve to\n withdraw this License (or any other license that has been, or is\n required to be, granted under the terms of this License), and this\n License will continue in full force and effect unless terminated as\n stated above.\n\n8. Miscellaneous\n\n a. Each time You Distribute or Publicly Perform the Work or a Collection,\n the Licensor offers to the recipient a license to the Work on the same\n terms and conditions as the license granted to You under this License.\n b. Each time You Distribute or Publicly Perform an Adaptation, Licensor\n offers to the recipient a license to the original Work on the same\n terms and conditions as the license granted to You under this License.\n c. If any provision of this License is invalid or unenforceable under\n applicable law, it shall not affect the validity or enforceability of\n the remainder of the terms of this License, and without further action\n by the parties to this agreement, such provision shall be reformed to\n the minimum extent necessary to make such provision valid and\n enforceable.\n d. No term or provision of this License shall be deemed waived and no\n breach consented to unless such waiver or consent shall be in writing\n and signed by the party to be charged with such waiver or consent.\n e. This License constitutes the entire agreement between the parties with\n respect to the Work licensed here. There are no understandings,\n agreements or representations with respect to the Work not specified\n here. Licensor shall not be bound by any additional provisions that\n may appear in any communication from You. This License may not be\n modified without the mutual written agreement of the Licensor and You.\n f. The rights granted under, and the subject matter referenced, in this\n License were drafted utilizing the terminology of the Berne Convention\n for the Protection of Literary and Artistic Works (as amended on\n September 28, 1979), the Rome Convention of 1961, the WIPO Copyright\n Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996\n and the Universal Copyright Convention (as revised on July 24, 1971).\n These rights and subject matter take effect in the relevant\n jurisdiction in which the License terms are sought to be enforced\n according to the corresponding provisions of the implementation of\n those treaty provisions in the applicable national law. If the\n standard suite of rights granted under applicable copyright law\n includes additional rights not granted under this License, such\n additional rights are deemed to be included in the License; this\n License is not intended to restrict the license of any rights under\n applicable law.\n\n\nCreative Commons Notice\n\n Creative Commons is not a party to this License, and makes no warranty\n whatsoever in connection with the Work. Creative Commons will not be\n liable to You or any party on any legal theory for any damages\n whatsoever, including without limitation any general, special,\n incidental or consequential damages arising in connection to this\n license. Notwithstanding the foregoing two (2) sentences, if Creative\n Commons has expressly identified itself as the Licensor hereunder, it\n shall have all rights and obligations of Licensor.\n\n Except for the limited purpose of indicating to the public that the\n Work is licensed under the CCPL, Creative Commons does not authorize\n the use by either party of the trademark \"Creative Commons\" or any\n related trademark or logo of Creative Commons without the prior\n written consent of Creative Commons. Any permitted use will be in\n compliance with Creative Commons' then-current trademark usage\n guidelines, as may be published on its website or otherwise made\n available upon request from time to time. For the avoidance of doubt,\n this trademark restriction does not form part of the License.\n\n Creative Commons may be contacted at https://creativecommons.org/.", + "json": "cc-by-sa-3.0.json", + "yaml": "cc-by-sa-3.0.yml", + "html": "cc-by-sa-3.0.html", + "license": "cc-by-sa-3.0.LICENSE" + }, + { + "license_key": "cc-by-sa-3.0-at", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-3.0-AT", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ F\u00dcHRT ZU KEINEM MANDATSVERH\u00c4LTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEW\u00c4HR ZUR VERF\u00dcGUNG. CREATIVE COMMONS \u00dcBERNIMMT KEINE GEW\u00c4HRLEISTUNG F\u00dcR DIE GELIEFERTEN INFORMATIONEN UND SCHLIE\u00dfT DIE HAFTUNG F\u00dcR SCH\u00c4DEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN.\n\nLizenz\n\nDER GEGENSTAND DIESER LIZENZ (WIE UNTER \"SCHUTZGEGENSTAND\" DEFINIERT) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\", \"LIZENZ\" ODER \"LIZENZVERTRAG\") ZUR VERF\u00dcGUNG GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER ANDERE GESETZE GESCH\u00dcTZT. JEDE FORM DER NUTZUNG DES SCHUTZGEGENSTANDES, DIE NICHT AUFGRUND DIESER LIZENZ ODER DURCH GESETZE GESTATTET IST, IST UNZUL\u00c4SSIG.\n\nDURCH DIE AUS\u00dcBUNG EINES DURCH DIESE LIZENZ GEW\u00c4HRTEN RECHTS AN DEM SCHUTZGEGENSTAND ERKL\u00c4REN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH EINVERSTANDEN. SOWEIT DIESE LIZENZ ALS LIZENZVERTRAG ANZUSEHEN IST, GEW\u00c4HRT IHNEN DER LIZENZGEBER DIE IN DER LIZENZ GENANNTEN RECHTE UNENTGELTLICH UND IM AUSTAUSCH DAF\u00dcR, DASS SIE DAS GEBUNDENSEIN AN DIE LIZENZBEDINGUNGEN AKZEPTIEREN.\n\n1. Definitionen\n\n a. Der Begriff \"Bearbeitung\" im Sinne dieser Lizenz bezeichnet das Ergebnis jeglicher Art von Ver\u00e4nderung des Schutzgegenstandes, solange dieses erkennbar vom Schutzgegenstand abgeleitet wurde. Dies kann insbesondere auch eine Umgestaltung, \u00c4nderung, Anpassung, \u00dcbersetzung oder Heranziehung des Schutzgegenstandes zur Vertonung von Laufbildern sein. Nicht als Bearbeitung des Schutzgegenstandes gelten seine Aufnahme in eine Sammlung oder ein Sammelwerk und die freie Nutzung des Schutzgegenstandes.\n\n b. Der Begriff \"Sammelwerk\" im Sinne dieser Lizenz meint eine Zusammenstellung von literarischen, k\u00fcnstlerischen oder wissenschaftlichen Inhalten zu einem einheitlichen Ganzen, sofern diese Zusammenstellung aufgrund von Auswahl und Anordnung der darin enthaltenen selbst\u00e4ndigen Elemente eine eigent\u00fcmliche geistige Sch\u00f6pfung darstellt, unabh\u00e4ngig davon, ob die Elemente systematisch oder methodisch angelegt und dadurch einzeln zug\u00e4nglich sind oder nicht.\n\n c. \"Verbreiten\" im Sinne dieser Lizenz bedeutet, den Schutzgegenstand oder Bearbeitungen im Original oder in Form von Vervielf\u00e4ltigungsst\u00fccken, mithin in k\u00f6rperlich fixierter Form der \u00d6ffentlichkeit zug\u00e4nglich zu machen oder in Verkehr zu bringen.\n\n d. Unter \"Lizenzelementen\" werden im Sinne dieser Lizenz die folgenden \u00fcbergeordneten Lizenzcharakteristika verstanden, die vom Lizenzgeber ausgew\u00e4hlt wurden und in der Bezeichnung der Lizenz zum Ausdruck kommen: \"Namensnennung\", \"Weitergabe unter gleichen Bedingungen\".\n\n e. Der \"Lizenzgeber\" im Sinne dieser Lizenz ist diejenige nat\u00fcrliche oder juristische Person oder Gruppe, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet und insoweit als Rechteinhaberin auftritt.\n\n f. \"Rechteinhaber\" im Sinne dieser Lizenz ist der Urheber des Schutzgegenstandes oder jede andere nat\u00fcrliche oder juristische Person, die am Schutzgegenstand ein Immaterialg\u00fcterrecht erlangt hat, welches die in Abschnitt 3 genannten Handlungen erfasst und eine Erteilung, \u00dcbertragung oder Einr\u00e4umung von Nutzungsbewilligungen bzw Nutzungsrechten an Dritte erlaubt.\n\n g. Der Begriff \"Schutzgegenstand\" bezeichnet in dieser Lizenz den literarischen, k\u00fcnstlerischen oder wissenschaftlichen Inhalt, der unter den Bedingungen dieser Lizenz angeboten wird. Das kann insbesondere eine eigent\u00fcmliche geistige Sch\u00f6pfung jeglicher Art oder ein Werk der kleinen M\u00fcnze, ein nachgelassenes Werk oder auch ein Lichtbild oder anderes Objekt eines verwandten Schutzrechts sein, unabh\u00e4ngig von der Art seiner Fixierung und unabh\u00e4ngig davon, auf welche Weise jeweils eine Wahrnehmung erfolgen kann, gleichviel ob in analoger oder digitaler Form. Soweit Datenbanken oder Zusammenstellungen von Daten einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen, unterfallen auch sie dem Begriff \"Schutzgegenstand\" im Sinne dieser Lizenz.\n\n h. Mit \"Sie\" bzw. \"Ihnen\" ist die nat\u00fcrliche oder juristische Person gemeint, die in dieser Lizenz im Abschnitt 3 genannte Nutzungen des Schutzgegenstandes vornimmt und zuvor in Hinblick auf den Schutzgegenstand nicht gegen Bedingungen dieser Lizenz versto\u00dfen oder aber die ausdr\u00fcckliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese Lizenz gew\u00e4hrte Nutzungsbewilligung trotz eines vorherigen Versto\u00dfes auszu\u00fcben.\n\n i. Unter \"\u00d6ffentlich Wiedergeben\" im Sinne dieser Lizenz sind Wahrnehmbarmachungen des Schutzgegenstandes in unk\u00f6rperlicher Form zu verstehen, die f\u00fcr eine Mehrzahl von Mitgliedern der \u00d6ffentlichkeit bestimmt sind und mittels \u00f6ffentlicher Wiedergabe in Form von Vortrag, Auff\u00fchrung, Vorf\u00fchrung, Darbietung, Sendung, Weitersendung oder zeit- und ortsunabh\u00e4ngiger Zurverf\u00fcgungstellung erfolgen, unabh\u00e4ngig von den zum Einsatz kommenden Techniken und Verfahren, einschlie\u00dflich drahtgebundener oder drahtloser Mittel und Einstellen in das Internet.\n\n j. \"Vervielf\u00e4ltigen\" im Sinne dieser Lizenz bedeutet, gleichviel in welchem Verfahren, auf welchem Tr\u00e4ger, in welcher Menge und ob vor\u00fcbergehend oder dauerhaft, Vervielf\u00e4ltigungsst\u00fccke des Schutzgegenstandes herzustellen, insbesondere durch Ton- oder Bildaufzeichnungen, und umfasst auch das erstmalige Festhalten des Schutzgegenstandes oder dessen Wahrnehmbarmachung auf Mitteln der wiederholbaren Wiedergabe sowie das Herstellen von Vervielf\u00e4ltigungsst\u00fccken dieser Festhaltung, sowie die Speicherung einer gesch\u00fctzten Darbietung oder eines Bild- und/oder Schalltr\u00e4gers in digitaler Form oder auf einem anderen elektronischen Medium.\n\n k. \"Mit Creative Commons kompatible Lizenz\" bezeichnet eine Lizenz, die unter https://creativecommons.org/compatiblelicenses aufgelistet ist und die durch Creative Commons als grunds\u00e4tzlich zur vorliegenden Lizenz \u00e4quivalent akzeptiert wurde, da zumindest folgende Voraussetzungen erf\u00fcllt sind:\n\n Diese mit Creative Commons kompatible Lizenz\n\n i. enth\u00e4lt Bestimmungen, welche die gleichen Ziele verfolgen, die gleiche Bedeutung haben und die gleichen Wirkungen erzeugen wie die Lizenzelemente der vorliegenden Lizenz; und\n\n ii. erlaubt ausdr\u00fccklich das Lizenzieren von ihr unterstellten Abwandlungen unter vorliegender Lizenz, unter einer anderen rechtsordnungsspezifisch angepassten Creative-Commons-Lizenz mit denselben Lizenzelementen wie vorliegende Lizenz aufweist oder unter der entsprechenden Creative-Commons-Unported-Lizenz.\n\n2. Beschr\u00e4nkungen der Verwertungsrechte\n\nDiese Lizenz ist in keiner Weise darauf gerichtet, Befugnisse zur Nutzung des Schutzgegenstandes zu vermindern, zu beschr\u00e4nken oder zu vereiteln, die sich aus den Beschr\u00e4nkungen der Verwertungsrechte, anderen Beschr\u00e4nkungen der Ausschlie\u00dflichkeitsrechte des Rechtsinhabers oder anderen entsprechenden Rechtsnormen oder sich aus dem Fehlen eines immaterialg\u00fcterrechtlichen Schutzes ergeben.\n\n3. Lizenzierung\n\nUnter den Bedingungen dieser Lizenz erteilt Ihnen der Lizenzgeber - unbeschadet unverzichtbarer Rechte und vorbehaltlich des Abschnitts 3.e) - die verg\u00fctungsfreie, r\u00e4umlich und zeitlich (f\u00fcr die Dauer des Urheberrechts oder verwandten Schutzrechts am Schutzgegenstand) unbeschr\u00e4nkte Nutzungsbewilligung, den Schutzgegenstand in der folgenden Art und Weise zu nutzen:\n\n a. Den Schutzgegenstand in beliebiger Form und Menge zu vervielf\u00e4ltigen, ihn in Sammelwerke zu integrieren und ihn als Teil solcher Sammelwerke zu vervielf\u00e4ltigen;\n\n b. Den Schutzgegenstand zu bearbeiten, einschlie\u00dflich \u00dcbersetzungen unter Nutzung jedweder Medien anzufertigen, sofern deutlich erkennbar gemacht wird, dass es sich um eine Bearbeitung handelt;\n\n c. Den Schutzgegenstand, allein oder in Sammelwerke aufgenommen, \u00f6ffentlich wiederzugeben und zu verbreiten; und\n\n d. Bearbeitungen des Schutzgegenstandes zu ver\u00f6ffentlichen, \u00f6ffentlich wiederzugeben und zu verbreiten.\n\n e. Bez\u00fcglich Verg\u00fctung f\u00fcr die Nutzung des Schutzgegenstandes gilt Folgendes:\n\n i. Unverzichtbare gesetzliche Verg\u00fctungsanspr\u00fcche: Soweit unverzichtbare Verg\u00fctungsanspr\u00fcche im Gegenzug f\u00fcr gesetzliche Lizenzen vorgesehen oder Pauschalabgabensysteme (zum Beispiel f\u00fcr Leermedien) vorhanden sind, beh\u00e4lt sich der Lizenzgeber das ausschlie\u00dfliche Recht vor, die entsprechenden Verg\u00fctungsanspr\u00fcche f\u00fcr jede Aus\u00fcbung eines Rechts aus dieser Lizenz durch Sie geltend zu machen.\n\n ii. Verg\u00fctung bei Zwangslizenzen: Soweit Zwangslizenzen au\u00dferhalb dieser Lizenz vorgesehen sind und zustande kommen, verzichtet der Lizenzgeber f\u00fcr alle F\u00e4lle einer lizenzgerechten Nutzung des Schutzgegenstandes durch Sie auf jegliche Verg\u00fctung.\n\n iii. Verg\u00fctung in sonstigen F\u00e4llen: Bez\u00fcglich lizenzgerechter Nutzung des Schutzgegenstandes durch Sie, die nicht unter die beiden vorherigen Abschnitte (i) und (ii) f\u00e4llt, verzichtet der Lizenzgeber auf jegliche Verg\u00fctung, unabh\u00e4ngig davon, ob eine Geltendmachung der Verg\u00fctungsanspr\u00fcche durch ihn selbst oder nur durch eine Verwertungsgesellschaft m\u00f6glich w\u00e4re.\n\nDie vorgenannte Nutzungsbewilligung wird f\u00fcr alle bekannten sowie alle noch nicht bekannten Nutzungsarten einger\u00e4umt. Sie beinhaltet auch das Recht, solche \u00c4nderungen am Schutzgegenstand vorzunehmen, die f\u00fcr bestimmte nach dieser Lizenz zul\u00e4ssige Nutzungen technisch erforderlich sind. Alle sonstigen Rechte, die \u00fcber diesen Abschnitt hinaus nicht ausdr\u00fccklich vom Lizenzgeber einger\u00e4umt werden, bleiben diesem allein vorbehalten. Soweit Datenbanken oder Zusammenstellungen von Daten Schutzgegenstand dieser Lizenz oder Teil dessen sind und einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen, verzichtet der Lizenzgeber auf die Geltendmachung s\u00e4mtlicher daraus resultierender Rechte.\n\n4. Bedingungen\n\nDie Erteilung der Nutzungsbewilligung gem\u00e4\u00df Abschnitt 3 dieser Lizenz erfolgt ausdr\u00fccklich nur unter den folgenden Bedingungen:\n\n a. Sie d\u00fcrfen den Schutzgegenstand ausschlie\u00dflich unter den Bedingungen dieser Lizenz verbreiten oder \u00f6ffentlich wiedergeben. Sie m\u00fcssen dabei stets eine Kopie dieser Lizenz oder deren vollst\u00e4ndige Internetadresse in Form des Uniform-Resource-Identifier (URI) beif\u00fcgen. Sie d\u00fcrfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen dieser Lizenz oder die durch diese Lizenz gew\u00e4hrten Rechte beschr\u00e4nken. Sie d\u00fcrfen den Schutzgegenstand nicht unterlizenzieren. Bei jeder Kopie des Schutzgegenstandes, die Sie verbreiten oder \u00f6ffentlich wiedergeben, m\u00fcssen Sie alle Hinweise unver\u00e4ndert lassen, die auf diese Lizenz und den Haftungsausschluss hinweisen. Wenn Sie den Schutzgegenstand verbreiten oder \u00f6ffentlich wiedergeben, d\u00fcrfen Sie (in Bezug auf den Schutzgegenstand) keine technischen Ma\u00dfnahmen ergreifen, die den Nutzer des Schutzgegenstandes in der Aus\u00fcbung der ihm durch diese Lizenz gew\u00e4hrten Rechte behindern k\u00f6nnen. Dasselbe gilt auch f\u00fcr den Fall, dass der Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt dieser Lizenz unterstellt werden muss. Sofern Sie ein Sammelwerk erstellen, m\u00fcssen Sie - soweit dies praktikabel ist - auf die Mitteilung eines Lizenzgebers hin aus dem Sammelwerk die in Abschnitt 4.c) aufgez\u00e4hlten Hinweise entfernen. Wenn Sie eine Bearbeitung vornehmen, m\u00fcssen Sie - soweit dies praktikabel ist - auf die Mitteilung eines Lizenzgebers hin von der Bearbeitung die in Abschnitt 4.c) aufgez\u00e4hlten Hinweise entfernen.\n\n b. Sie d\u00fcrfen eine Bearbeitung ausschlie\u00dflich unter den Bedingungen\n\n i. dieser Lizenz,\n\n ii. einer sp\u00e4teren Version dieser Lizenz mit denselben Lizenzelementen,\n\n iii. einer rechtsordnungsspezifischen Creative-Commons-Lizenz mit denselben Lizenzelementen ab Version 3.0 aufw\u00e4rts (z.B. Namensnennung - Weitergabe unter gleichen Bedingungen 3.0 US),\n\n iv. der Creative-Commons-Unported-Lizenz mit denselben Lizenzelementen ab Version 3.0 aufw\u00e4rts, oder\n\n v. einer mit Creative Commons kompatiblen Lizenz\n\n verbreiten oder \u00f6ffentlich wiedergeben.\n\n Falls Sie die Bearbeitung gem\u00e4\u00df Abschnitt b)(v) unter einer mit Creative Commons kompatiblen Lizenz lizenzieren, m\u00fcssen Sie deren Lizenzbestimmungen Folge leisten.\n\n Falls Sie die Bearbeitung unter einer der unter b)(i)-(iv) genannten Lizenzen (\"Verwendbare Lizenzen\") lizenzieren, m\u00fcssen Sie deren Lizenzbestimmungen sowie folgenden Bestimmungen Folge leisten: Sie m\u00fcssen stets eine Kopie der verwendbaren Lizenz oder deren vollst\u00e4ndige Internetadresse in Form des Uniform-Resource-Identifier (URI) beif\u00fcgen, wenn Sie die Bearbeitung verbreiten oder \u00f6ffentlich wiedergeben. Sie d\u00fcrfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen der verwendbaren Lizenz oder die durch sie gew\u00e4hrten Rechte beschr\u00e4nken. Bei jeder Bearbeitung, die Sie verbreiten oder \u00f6ffentlich wiedergeben, m\u00fcssen Sie alle Hinweise auf die verwendbare Lizenz und den Haftungsausschluss unver\u00e4ndert lassen. Wenn Sie die Bearbeitung verbreiten oder \u00f6ffentlich wiedergeben, d\u00fcrfen Sie (in Bezug auf die Bearbeitung) keine technischen Ma\u00dfnahmen ergreifen, die den Nutzer der Bearbeitung in der Aus\u00fcbung der ihm durch die verwendbare Lizenz gew\u00e4hrten Rechte behindern k\u00f6nnen. Dieser Abschnitt 4.b) gilt auch f\u00fcr den Fall, dass die Bearbeitung einen Bestandteil eines Sammelwerkes bildet; dies bedeutet jedoch nicht, dass das Sammelwerk insgesamt der verwendbaren Lizenz unterstellt werden muss.\n\n c. Die Verbreitung und die \u00f6ffentliche Wiedergabe des Schutzgegenstandes oder auf ihm aufbauender Inhalte oder ihn enthaltender Sammelwerke ist Ihnen nur unter der Bedingung gestattet, dass Sie, vorbehaltlich etwaiger Mitteilungen im Sinne von Abschnitt 4.a), alle dazu geh\u00f6renden Rechtevermerke unber\u00fchrt lassen. Sie sind verpflichtet, die Urheberschaft oder die Rechteinhaberschaft in einer der Nutzung entsprechenden, angemessenen Form anzuerkennen, indem Sie selbst - soweit bekannt - Folgendes angeben:\n\n i. Den Namen (oder das Pseudonym, falls ein solches verwendet wird) des Rechteinhabers, und/oder falls der Lizenzgeber im Rechtevermerk, in den Nutzungsbedingungen oder auf andere angemessene Weise eine Zuschreibung an Dritte vorgenommen hat (z.B. an eine Stiftung, ein Verlagshaus oder eine Zeitung) (\"Zuschreibungsempf\u00e4nger\"), Namen bzw. Bezeichnung dieses oder dieser Dritten;\n\n ii. den Titel des Inhaltes;\n\n iii. in einer praktikablen Form den Uniform-Resource-Identifier (URI, z.B. Internetadresse), den der Lizenzgeber zum Schutzgegenstand angegeben hat, es sei denn, dieser URI verweist nicht auf den Rechtevermerk oder die Lizenzinformationen zum Schutzgegenstand;\n\n iv. und im Falle einer Bearbeitung des Schutzgegenstandes in \u00dcbereinstimmung mit Abschnitt 3.b) einen Hinweis darauf, dass es sich um eine Bearbeitung handelt.\n\n Die nach diesem Abschnitt 4.c) erforderlichen Angaben k\u00f6nnen in jeder angemessenen Form gemacht werden; im Falle einer Bearbeitung des Schutzgegenstandes oder eines Sammelwerkes m\u00fcssen diese Angaben das Minimum darstellen und bei gemeinsamer Nennung aller Beitragenden dergestalt erfolgen, dass sie zumindest ebenso hervorgehoben sind wie die Hinweise auf die \u00fcbrigen Rechteinhaber. Die Angaben nach diesem Abschnitt d\u00fcrfen Sie ausschlie\u00dflich zur Angabe der Rechteinhaberschaft in der oben bezeichneten Weise verwenden. Durch die Aus\u00fcbung Ihrer Rechte aus dieser Lizenz d\u00fcrfen Sie ohne eine vorherige, separat und schriftlich vorliegende Zustimmung des Urhebers, des Lizenzgebers und/oder des Zuschreibungsempf\u00e4ngers weder implizit noch explizit irgendeine Verbindung mit dem oder eine Unterst\u00fctzung oder Billigung durch den Lizenzgeber oder den Zuschreibungsempf\u00e4nger andeuten oder erkl\u00e4ren.\n\n d. Die oben unter 4.a) bis c) genannten Einschr\u00e4nkungen gelten nicht f\u00fcr solche Teile des Schutzgegenstandes, die allein deshalb unter den Schutzgegenstandsbegriff fallen, weil sie als Datenbanken oder Zusammenstellungen von Daten einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen.\n\n e. (Urheber)Pers\u00f6nlichkeitsrechte bleiben - soweit sie bestehen - von dieser Lizenz unber\u00fchrt.\n\n5. Gew\u00e4hrleistung\n\nSOFERN KEINE ANDERS LAUTENDE, SCHRIFTLICHE VEREINBARUNG ZWISCHEN DEM LIZENZGEBER UND IHNEN GESCHLOSSEN WURDE UND SOWEIT M\u00c4NGEL NICHT ARGLISTIG VERSCHWIEGEN WURDEN, BIETET DER LIZENZGEBER DEN SCHUTZGEGENSTAND UND DIE ERTEILUNG DER NUTZUNGSBEWILLIGUNG UNTER AUSSCHLUSS JEGLICHER GEW\u00c4HRLEISTUNG AN UND \u00dcBERNIMMT WEDER AUSDR\u00dcCKLICH NOCH KONKLUDENT GARANTIEN IRGENDEINER ART. DIES UMFASST INSBESONDERE DAS FREISEIN VON SACH- UND RECHTSM\u00c4NGELN, UNABH\u00c4NGIG VON DEREN ERKENNBARKEIT F\u00dcR DEN LIZENZGEBER, DIE VERKEHRSF\u00c4HIGKEIT DES SCHUTZGEGENSTANDES, SEINE VERWENDBARKEIT F\u00dcR EINEN BESTIMMTEN ZWECK SOWIE DIE KORREKTHEIT VON BESCHREIBUNGEN.\n\n6. Haftungsbeschr\u00e4nkung\n\n\u00dcBER DIE IN ZIFFER 5 GENANNTE GEW\u00c4HRLEISTUNG HINAUS HAFTET DER LIZENZGEBER IHNEN GEGEN\u00dcBER F\u00dcR SCH\u00c4DEN JEGLICHER ART NUR BEI GROBER FAHRL\u00c4SSIGKEIT ODER VORSATZ, UND \u00dcBERNIMMT DAR\u00dcBER HINAUS KEINERLEI FREIWILLIGE HAFTUNG F\u00dcR FOLGE- ODER ANDERE SCH\u00c4DEN, AUCH WENN ER \u00dcBER DIE M\u00d6GLICHKEIT IHRES EINTRITTS UNTERRICHTET WURDE.\n\n7. Erl\u00f6schen\n\n a. Diese Lizenz und die durch sie erteilte Nutzungsbewilligung erl\u00f6schen mit Wirkung f\u00fcr die Zukunft im Falle eines Versto\u00dfes gegen die Lizenzbedingungen durch Sie, ohne dass es dazu der Kenntnis des Lizenzgebers vom Versto\u00df oder einer weiteren Handlung einer der Vertragsparteien bedarf. Mit nat\u00fcrlichen oder juristischen Personen, die Bearbeitungen des Schutzgegenstandes oder diesen enthaltende Sammelwerke sowie entsprechende Vervielf\u00e4ltigungsst\u00fccke unter den Bedingungen dieser Lizenz von Ihnen erhalten haben, bestehen nachtr\u00e4glich entstandene Lizenzbeziehungen jedoch solange weiter, wie die genannten Personen sich ihrerseits an s\u00e4mtliche Lizenzbedingungen halten. Dar\u00fcber hinaus gelten die Ziffern 1, 2, 5, 6, 7, und 8 auch nach einem Erl\u00f6schen dieser Lizenz fort.\n\n b. Vorbehaltlich der oben genannten Bedingungen gilt diese Lizenz unbefristet bis der rechtliche Schutz f\u00fcr den Schutzgegenstand ausl\u00e4uft. Davon abgesehen beh\u00e4lt der Lizenzgeber das Recht, den Schutzgegenstand unter anderen Lizenzbedingungen anzubieten oder die eigene Weitergabe des Schutzgegenstandes jederzeit einzustellen, solange die Aus\u00fcbung dieses Rechts nicht einer K\u00fcndigung oder einem Widerruf dieser Lizenz (oder irgendeiner Weiterlizenzierung, die auf Grundlage dieser Lizenz bereits erfolgt ist bzw. zuk\u00fcnftig noch erfolgen muss) dient und diese Lizenz unter Ber\u00fccksichtigung der oben zum Erl\u00f6schen genannten Bedingungen vollumf\u00e4nglich wirksam bleibt.\n\n8. Sonstige Bestimmungen\n\n a. Jedes Mal wenn Sie den Schutzgegenstand f\u00fcr sich genommen oder als Teil eines Sammelwerkes verbreiten oder \u00f6ffentlich wiedergeben, bietet der Lizenzgeber dem Empf\u00e4nger eine Lizenz zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz.\n\n b. Jedes Mal wenn Sie eine Bearbeitung des Schutzgegenstandes verbreiten oder \u00f6ffentlich wiedergeben, bietet der Lizenzgeber dem Empf\u00e4nger eine Lizenz am urspr\u00fcnglichen Schutzgegenstand zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz.\n\n c. Sollte eine Bestimmung dieser Lizenz unwirksam sein, so bleibt davon die Wirksamkeit der Lizenz im \u00dcbrigen unber\u00fchrt.\n\n d. Keine Bestimmung dieser Lizenz soll als abbedungen und kein Versto\u00df gegen sie als zul\u00e4ssig gelten, solange die von dem Verzicht oder von dem Versto\u00df betroffene Seite nicht schriftlich zugestimmt hat.\n\n e. Diese Lizenz (zusammen mit in ihr ausdr\u00fccklich vorgesehenen Erlaubnissen, Mitteilungen und Zustimmungen, soweit diese tats\u00e4chlich vorliegen) stellt die vollst\u00e4ndige Vereinbarung zwischen dem Lizenzgeber und Ihnen in Bezug auf den Schutzgegenstand dar. Es bestehen keine Abreden, Vereinbarungen oder Erkl\u00e4rungen in Bezug auf den Schutzgegenstand, die in dieser Lizenz nicht genannt sind. Rechtsgesch\u00e4ftliche \u00c4nderungen des Verh\u00e4ltnisses zwischen dem Lizenzgeber und Ihnen sind nur \u00fcber Modifikationen dieser Lizenz m\u00f6glich. Der Lizenzgeber ist an etwaige zus\u00e4tzliche, einseitig durch Sie \u00fcbermittelte Bestimmungen nicht gebunden. Diese Lizenz kann nur durch schriftliche Vereinbarung zwischen Ihnen und dem Lizenzgeber modifiziert werden. Derlei Modifikationen wirken ausschlie\u00dflich zwischen dem Lizenzgeber und Ihnen und wirken sich nicht auf die Dritten gem\u00e4\u00df 8.a) und b) angebotenen Lizenzen aus.\n\n f. Sofern zwischen Ihnen und dem Lizenzgeber keine anderweitige Vereinbarung getroffen wurde und soweit Wahlfreiheit besteht, findet auf diesen Lizenzvertrag das Recht der Republik \u00d6sterreich Anwendung.\n\nCreative Commons Notice\n\nCreative Commons ist nicht Partei dieser Lizenz und \u00fcbernimmt keinerlei Gew\u00e4hr oder dergleichen in Bezug auf den Schutzgegenstand. Creative Commons haftet Ihnen oder einer anderen Partei unter keinem rechtlichen Gesichtspunkt f\u00fcr irgendwelche Sch\u00e4den, die - abstrakt oder konkret, zuf\u00e4llig oder vorhersehbar - im Zusammenhang mit dieser Lizenz entstehen. Unbeschadet der vorangegangen beiden S\u00e4tze, hat Creative Commons alle Rechte und Pflichten eines Lizenzgebers, wenn es sich ausdr\u00fccklich als Lizenzgeber im Sinne dieser Lizenz bezeichnet.\n\nCreative Commons gew\u00e4hrt den Parteien nur insoweit das Recht, das Logo und die Marke \"Creative Commons\" zu nutzen, als dies notwendig ist, um der \u00d6ffentlichkeit gegen\u00fcber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein dar\u00fcber hinaus gehender Gebrauch der Marke \"Creative Commons\" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website ver\u00f6ffentlicht oder auf andere Weise auf Anfrage zug\u00e4nglich gemacht wird. Zur Klarstellung: Die genannten Einschr\u00e4nkungen der Markennutzung sind nicht Bestandteil dieser Lizenz.\n\nCreative Commons kann kontaktiert werden \u00fcber https://creativecommons.org/.", + "json": "cc-by-sa-3.0-at.json", + "yaml": "cc-by-sa-3.0-at.yml", + "html": "cc-by-sa-3.0-at.html", + "license": "cc-by-sa-3.0-at.LICENSE" + }, + { + "license_key": "cc-by-sa-3.0-de", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-3.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Namensnennung - Weitergabe unter gleichen Bedingungen 3.0 Deutschland\n\n CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ F\u00dcHRT ZU KEINEM MANDATSVERH\u00c4LTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEW\u00c4HR ZUR VERF\u00dcGUNG. CREATIVE COMMONS \u00dcBERNIMMT KEINE GEW\u00c4HRLEISTUNG F\u00dcR DIE GELIEFERTEN INFORMATIONEN UND SCHLIE\u00dfT DIE HAFTUNG F\u00dcR SCH\u00c4DEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN.\n\nLizenz\n\nDER GEGENSTAND DIESER LIZENZ (WIE UNTER \"SCHUTZGEGENSTAND\" DEFINIERT) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\", \"LIZENZ\" ODER \"LIZENZVERTRAG\") ZUR VERF\u00dcGUNG GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER ANDERE GESETZE GESCH\u00dcTZT. JEDE FORM DER NUTZUNG DES SCHUTZGEGENSTANDES, DIE NICHT AUFGRUND DIESER LIZENZ ODER DURCH GESETZE GESTATTET IST, IST UNZUL\u00c4SSIG.\n\nDURCH DIE AUS\u00dcBUNG EINES DURCH DIESE LIZENZ GEW\u00c4HRTEN RECHTS AN DEM SCHUTZGEGENSTAND ERKL\u00c4REN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH EINVERSTANDEN. SOWEIT DIESE LIZENZ ALS LIZENZVERTRAG ANZUSEHEN IST, GEW\u00c4HRT IHNEN DER LIZENZGEBER DIE IN DER LIZENZ GENANNTEN RECHTE UNENTGELTLICH UND IM AUSTAUSCH DAF\u00dcR, DASS SIE DAS GEBUNDENSEIN AN DIE LIZENZBEDINGUNGEN AKZEPTIEREN.\n\n1. Definitionen\n\n a. Der Begriff \"Abwandlung\" im Sinne dieser Lizenz bezeichnet das Ergebnis jeglicher Art von Ver\u00e4nderung des Schutzgegenstandes, solange die eigenpers\u00f6nlichen Z\u00fcge des Schutzgegenstandes darin nicht verblassen und daran eigene Schutzrechte entstehen. Das kann insbesondere eine Bearbeitung, Umgestaltung, \u00c4nderung, Anpassung, \u00dcbersetzung oder Heranziehung des Schutzgegenstandes zur Vertonung von Laufbildern sein. Nicht als Abwandlung des Schutzgegenstandes gelten seine Aufnahme in eine Sammlung oder ein Sammelwerk und die freie Benutzung des Schutzgegenstandes.\n\n b. Der Begriff \"Sammelwerk\" im Sinne dieser Lizenz meint eine Zusammenstellung von literarischen, k\u00fcnstlerischen oder wissenschaftlichen Inhalten, sofern diese Zusammenstellung aufgrund von Auswahl und Anordnung der darin enthaltenen selbst\u00e4ndigen Elemente eine geistige Sch\u00f6pfung darstellt, unabh\u00e4ngig davon, ob die Elemente systematisch oder methodisch angelegt und dadurch einzeln zug\u00e4nglich sind oder nicht.\n\n c. \"Verbreiten\" im Sinne dieser Lizenz bedeutet, den Schutzgegenstand oder Abwandlungen im Original oder in Form von Vervielf\u00e4ltigungsst\u00fccken, mithin in k\u00f6rperlich fixierter Form der \u00d6ffentlichkeit anzubieten oder in Verkehr zu bringen.\n\n d. Unter \"Lizenzelementen\" werden im Sinne dieser Lizenz die folgenden \u00fcbergeordneten Lizenzcharakteristika verstanden, die vom Lizenzgeber ausgew\u00e4hlt wurden und in der Bezeichnung der Lizenz zum Ausdruck kommen: \"Namensnennung\", \"Weitergabe unter gleichen Bedingungen\".\n\n e. Der \"*Lizenzgeber*\" im Sinne dieser Lizenz ist diejenige nat\u00fcrliche oder juristische Person oder Gruppe, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet und insoweit als Rechteinhaberin auftritt.\n\n f. \"Rechteinhaber\" im Sinne dieser Lizenz ist der Urheber des Schutzgegenstandes oder jede andere nat\u00fcrliche oder juristische Person oder Gruppe von Personen, die am Schutzgegenstand ein Immaterialg\u00fcterrecht erlangt hat, welches die in Abschnitt 3 genannten Handlungen erfasst und bei dem eine Einr\u00e4umung von Nutzungsrechten oder eine Weiter\u00fcbertragung an Dritte m\u00f6glich ist.\n\n g. Der Begriff \"Schutzgegenstand\" bezeichnet in dieser Lizenz den literarischen, k\u00fcnstlerischen oder wissenschaftlichen Inhalt, der unter den Bedingungen dieser Lizenz angeboten wird. Das kann insbesondere eine pers\u00f6nliche geistige Sch\u00f6pfung jeglicher Art, ein Werk der kleinen M\u00fcnze, ein nachgelassenes Werk oder auch ein Lichtbild oder anderes Objekt eines verwandten Schutzrechts sein, unabh\u00e4ngig von der Art seiner Fixierung und unabh\u00e4ngig davon, auf welche Weise jeweils eine Wahrnehmung erfolgen kann, gleichviel ob in analoger oder digitaler Form. Soweit Datenbanken oder Zusammenstellungen von Daten einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen, unterfallen auch sie dem Begriff \"Schutzgegenstand\" im Sinne dieser Lizenz.\n\n h. Mit \"Sie\" bzw. \"Ihnen\" ist die nat\u00fcrliche oder juristische Person gemeint, die in dieser Lizenz im Abschnitt 3 genannte Nutzungen des Schutzgegenstandes vornimmt und zuvor in Hinblick auf den Schutzgegenstand nicht gegen Bedingungen dieser Lizenz versto\u00dfen oder aber die ausdr\u00fcckliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese Lizenz gew\u00e4hrten Nutzungsrechte trotz eines vorherigen Versto\u00dfes auszu\u00fcben.\n\n i. Unter \"\u00d6ffentlich Zeigen\" im Sinne dieser Lizenz sind Ver\u00f6ffentlichungen und Pr\u00e4sentationen des Schutzgegenstandes zu verstehen, die f\u00fcr eine Mehrzahl von Mitgliedern der \u00d6ffentlichkeit bestimmt sind und in unk\u00f6rperlicher Form mittels \u00f6ffentlicher Wiedergabe in Form von Vortrag, Auff\u00fchrung, Vorf\u00fchrung, Darbietung, Sendung, Weitersendung, zeit- und ortsunabh\u00e4ngiger Zug\u00e4nglichmachung oder in k\u00f6rperlicher Form mittels Ausstellung erfolgen, unabh\u00e4ngig von bestimmten Veranstaltungen und unabh\u00e4ngig von den zum Einsatz kommenden Techniken und Verfahren, einschlie\u00dflich drahtgebundener oder drahtloser Mittel und Einstellen in das Internet.\n\n j. \"Vervielf\u00e4ltigen\" im Sinne dieser Lizenz bedeutet, mittels beliebiger Verfahren Vervielf\u00e4ltigungsst\u00fccke des Schutzgegenstandes herzustellen, insbesondere durch Ton- oder Bildaufzeichnungen, und umfasst auch den Vorgang, erstmals k\u00f6rperliche Fixierungen des Schutzgegenstandes sowie Vervielf\u00e4ltigungsst\u00fccke dieser Fixierungen anzufertigen, sowie die \u00dcbertragung des Schutzgegenstandes auf einen Bild- oder Tontr\u00e4ger oder auf ein anderes elektronisches Medium, gleichviel ob in digitaler oder analoger Form.\n\n k. \"Mit Creative Commons kompatible Lizenz\" bezeichnet eine Lizenz, die unter https://creativecommons.org/compatiblelicenses aufgelistet ist und die durch Creative Commons als grunds\u00e4tzlich zur vorliegenden Lizenz \u00e4quivalent akzeptiert wurde, da zumindest folgende Voraussetzungen erf\u00fcllt sind:\n\n Diese mit Creative Commons kompatible Lizenz\n\n i. enth\u00e4lt Bestimmungen, welche die gleichen Ziele verfolgen, die gleiche Bedeutung haben und die gleichen Wirkungen erzeugen wie die Lizenzelemente der vorliegenden Lizenz; und\n\n ii. erlaubt ausdr\u00fccklich das Lizenzieren von ihr unterstellten Abwandlungen unter vorliegender Lizenz, unter einer anderen rechtsordnungsspezifisch angepassten Creative-Commons-Lizenz mit denselben Lizenzelementen, wie sie die vorliegende Lizenz aufweist, oder unter der entsprechenden Creative-Commons-Unported-Lizenz.\n\n2. Schranken des Immaterialg\u00fcterrechts. Diese Lizenz ist in keiner Weise darauf gerichtet, Befugnisse zur Nutzung des Schutzgegenstandes zu vermindern, zu beschr\u00e4nken oder zu vereiteln, die Ihnen aufgrund der Schranken des Urheberrechts oder anderer Rechtsnormen bereits ohne Weiteres zustehen oder sich aus dem Fehlen eines immaterialg\u00fcterrechtlichen Schutzes ergeben.\n\n3. Einr\u00e4umung von Nutzungsrechten. Unter den Bedingungen dieser Lizenz r\u00e4umt Ihnen der Lizenzgeber - unbeschadet unverzichtbarer Rechte und vorbehaltlich des Abschnitts 3.e) - das verg\u00fctungsfreie, r\u00e4umlich und zeitlich (f\u00fcr die Dauer des Schutzrechts am Schutzgegenstand) unbeschr\u00e4nkte einfache Recht ein, den Schutzgegenstand auf die folgenden Arten und Weisen zu nutzen (\"unentgeltlich einger\u00e4umtes einfaches Nutzungsrecht f\u00fcr jedermann\"):\n\n a. Den Schutzgegenstand in beliebiger Form und Menge zu vervielf\u00e4ltigen, ihn in Sammelwerke zu integrieren und ihn als Teil solcher Sammelwerke zu vervielf\u00e4ltigen;\n\n b. Abwandlungen des Schutzgegenstandes anzufertigen, einschlie\u00dflich \u00dcbersetzungen unter Nutzung jedweder Medien, sofern deutlich erkennbar gemacht wird, dass es sich um Abwandlungen handelt;\n\n c. den Schutzgegenstand, allein oder in Sammelwerke aufgenommen, \u00f6ffentlich zu zeigen und zu verbreiten;\n\n d. Abwandlungen des Schutzgegenstandes zu ver\u00f6ffentlichen, \u00f6ffentlich zu zeigen und zu verbreiten.\n\n e. Bez\u00fcglich Verg\u00fctung f\u00fcr die Nutzung des Schutzgegenstandes gilt Folgendes:\n\n i. Unverzichtbare gesetzliche Verg\u00fctungsanspr\u00fcche: Soweit unverzichtbare Verg\u00fctungsanspr\u00fcche im Gegenzug f\u00fcr gesetzliche Lizenzen vorgesehen oder Pauschalabgabensysteme (zum Beispiel f\u00fcr Leermedien) vorhanden sind, beh\u00e4lt sich der Lizenzgeber das ausschlie\u00dfliche Recht vor, die entsprechende Verg\u00fctung einzuziehen f\u00fcr jede Aus\u00fcbung eines Rechts aus dieser Lizenz durch Sie.\n\n ii. Verg\u00fctung bei Zwangslizenzen: Sofern Zwangslizenzen au\u00dferhalb dieser Lizenz vorgesehen sind und zustande kommen, verzichtet der Lizenzgeber f\u00fcr alle F\u00e4lle einer lizenzgerechten Nutzung des Schutzgegenstandes durch Sie auf jegliche Verg\u00fctung.\n\n iii. Verg\u00fctung in sonstigen F\u00e4llen: Bez\u00fcglich lizenzgerechter Nutzung des Schutzgegenstandes durch Sie, die nicht unter die beiden vorherigen Abschnitte (i) und (ii) f\u00e4llt, verzichtet der Lizenzgeber auf jegliche Verg\u00fctung, unabh\u00e4ngig davon, ob eine Einziehung der Verg\u00fctung durch ihn selbst oder nur durch eine Verwertungsgesellschaft m\u00f6glich w\u00e4re.\n\nDas vorgenannte Nutzungsrecht wird f\u00fcr alle bekannten sowie f\u00fcr alle noch nicht bekannten Nutzungsarten einger\u00e4umt. Es beinhaltet auch das Recht, solche \u00c4nderungen am Schutzgegenstand vorzunehmen, die f\u00fcr bestimmte nach dieser Lizenz zul\u00e4ssige Nutzungen technisch erforderlich sind. Alle sonstigen Rechte, die \u00fcber diesen Abschnitt hinaus nicht ausdr\u00fccklich durch den Lizenzgeber einger\u00e4umt werden, bleiben diesem allein vorbehalten. Soweit Datenbanken oder Zusammenstellungen von Daten Schutzgegenstand dieser Lizenz oder Teil dessen sind und einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen, verzichtet der Lizenzgeber auf s\u00e4mtliche aus diesem Schutz resultierenden Rechte.\n\n4. Bedingungen. Die Einr\u00e4umung des Nutzungsrechts gem\u00e4\u00df Abschnitt 3 dieser Lizenz erfolgt ausdr\u00fccklich nur unter den folgenden Bedingungen:\n\n a. Sie d\u00fcrfen den Schutzgegenstand ausschlie\u00dflich unter den Bedingungen dieser Lizenz verbreiten oder \u00f6ffentlich zeigen. Sie m\u00fcssen dabei stets eine Kopie dieser Lizenz oder deren vollst\u00e4ndige Internetadresse in Form des Uniform-Resource-Identifier (URI) beif\u00fcgen. Sie d\u00fcrfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen dieser Lizenz oder die durch diese Lizenz gew\u00e4hrten Rechte beschr\u00e4nken. Sie d\u00fcrfen den Schutzgegenstand nicht unterlizenzieren. Bei jeder Kopie des Schutzgegenstandes, die Sie verbreiten oder \u00f6ffentlich zeigen, m\u00fcssen Sie alle Hinweise unver\u00e4ndert lassen, die auf diese Lizenz und den Haftungsausschluss hinweisen. Wenn Sie den Schutzgegenstand verbreiten oder \u00f6ffentlich zeigen, d\u00fcrfen Sie (in Bezug auf den Schutzgegenstand) keine technischen Ma\u00dfnahmen ergreifen, die den Nutzer des Schutzgegenstandes in der Aus\u00fcbung der ihm durch diese Lizenz gew\u00e4hrten Rechte behindern k\u00f6nnen. Dieser Abschnitt 4.a) gilt auch f\u00fcr den Fall, dass der Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt dieser Lizenz unterstellt werden muss. Sofern Sie ein Sammelwerk erstellen, m\u00fcssen Sie auf die Mitteilung eines Lizenzgebers hin aus dem Sammelwerk die in Abschnitt 4.c) aufgez\u00e4hlten Hinweise entfernen. Wenn Sie eine Abwandlung vornehmen, m\u00fcssen Sie auf die Mitteilung eines Lizenzgebers hin von der Abwandlung die in Abschnitt 4.c) aufgez\u00e4hlten Hinweise entfernen.\n\n b. Sie d\u00fcrfen eine Abwandlung ausschlie\u00dflich unter den Bedingungen\n\n i. dieser Lizenz,\n\n ii. einer sp\u00e4teren Version dieser Lizenz mit denselben Lizenzelementen,\n\n iii. einer rechtsordnungsspezifischen Creative-Commons-Lizenz mit denselben Lizenzelementen ab Version 3.0 aufw\u00e4rts (z.B. Namensnennung - Weitergabe unter gleichen Bedingungen 3.0 US),\n\n iv. der Creative-Commons-Unported-Lizenz mit denselben Lizenzelementen ab Version 3.0 aufw\u00e4rts, oder\n\n v. einer mit Creative Commons kompatiblen Lizenz\n\n verbreiten oder \u00f6ffentlich zeigen.\n\n Falls Sie die Abwandlung gem\u00e4\u00df Abschnitt (v) unter einer mit Creative Commons kompatiblen Lizenz lizenzieren, m\u00fcssen Sie deren Lizenzbestimmungen Folge leisten.\n\n Falls Sie die Abwandlungen unter einer der unter (i)-(iv) genannten Lizenzen (\"Verwendbare Lizenzen\") lizenzieren, m\u00fcssen Sie deren Lizenzbestimmungen sowie folgenden Bestimmungen Folge leisten: Sie m\u00fcssen stets eine Kopie der verwendbaren Lizenz oder deren vollst\u00e4ndige Internetadresse in Form des Uniform-Resource-Identifier (URI) beif\u00fcgen, wenn Sie die Abwandlung verbreiten oder \u00f6ffentlich zeigen. Sie d\u00fcrfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen der verwendbaren Lizenz oder die durch sie gew\u00e4hrten Rechte beschr\u00e4nken. Bei jeder Abwandlung, die Sie verbreiten oder \u00f6ffentlich zeigen, m\u00fcssen Sie alle Hinweise auf die verwendbare Lizenz und den Haftungsausschluss unver\u00e4ndert lassen. Wenn Sie die Abwandlung verbreiten oder \u00f6ffentlich zeigen, d\u00fcrfen Sie (in Bezug auf die Abwandlung) keine technischen Ma\u00dfnahmen ergreifen, die den Nutzer der Abwandlung in der Aus\u00fcbung der ihm durch die verwendbare Lizenz gew\u00e4hrten Rechte behindern k\u00f6nnen. Dieser Abschnitt 4.b) gilt auch f\u00fcr den Fall, dass die Abwandlung einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt der verwendbaren Lizenz unterstellt werden muss.\n\n c. Die Verbreitung und das \u00f6ffentliche Zeigen des Schutzgegenstandes oder auf ihm aufbauender Abwandlungen oder ihn enthaltender Sammelwerke ist Ihnen nur unter der Bedingung gestattet, dass Sie, vorbehaltlich etwaiger Mitteilungen im Sinne von Abschnitt 4.a), alle dazu geh\u00f6renden Rechtevermerke unber\u00fchrt lassen. Sie sind verpflichtet, die Rechteinhaberschaft in einer der Nutzung entsprechenden, angemessenen Form anzuerkennen, indem Sie - soweit bekannt - Folgendes angeben:\n\n i. Den Namen (oder das Pseudonym, falls ein solches verwendet wird) des Rechteinhabers und / oder, falls der Lizenzgeber im Rechtevermerk, in den Nutzungsbedingungen oder auf andere angemessene Weise eine Zuschreibung an Dritte vorgenommen hat (z.B. an eine Stiftung, ein Verlagshaus oder eine Zeitung) (\"Zuschreibungsempf\u00e4nger\"), Namen bzw. Bezeichnung dieses oder dieser Dritten;\n\n ii. den Titel des Inhaltes;\n\n iii. in einer praktikablen Form den Uniform-Resource-Identifier (URI, z.B. Internetadresse), den der Lizenzgeber zum Schutzgegenstand angegeben hat, es sei denn, dieser URI verweist nicht auf den Rechtevermerk oder die Lizenzinformationen zum Schutzgegenstand;\n\n iv. und im Falle einer Abwandlung des Schutzgegenstandes in \u00dcbereinstimmung mit Abschnitt 3.b) einen Hinweis darauf, dass es sich um eine Abwandlung handelt.\n\n Die nach diesem Abschnitt 4.c) erforderlichen Angaben k\u00f6nnen in jeder angemessenen Form gemacht werden; im Falle einer Abwandlung des Schutzgegenstandes oder eines Sammelwerkes m\u00fcssen diese Angaben das Minimum darstellen und bei gemeinsamer Nennung mehrerer Rechteinhaber dergestalt erfolgen, dass sie zumindest ebenso hervorgehoben sind wie die Hinweise auf die \u00fcbrigen Rechteinhaber. Die Angaben nach diesem Abschnitt d\u00fcrfen Sie ausschlie\u00dflich zur Angabe der Rechteinhaberschaft in der oben bezeichneten Weise verwenden. Durch die Aus\u00fcbung Ihrer Rechte aus dieser Lizenz d\u00fcrfen Sie ohne eine vorherige, separat und schriftlich vorliegende Zustimmung des Lizenzgebers und / oder des Zuschreibungsempf\u00e4ngers weder explizit noch implizit irgendeine Verbindung zum Lizenzgeber oder Zuschreibungsempf\u00e4nger und ebenso wenig eine Unterst\u00fctzung oder Billigung durch ihn andeuten.\n\n d. Die oben unter 4.a) bis c) genannten Einschr\u00e4nkungen gelten nicht f\u00fcr solche Teile des Schutzgegenstandes, die allein deshalb unter den Schutzgegenstandsbegriff fallen, weil sie als Datenbanken oder Zusammenstellungen von Daten einen immaterialg\u00fcterrechtlichen Schutz eigener Art genie\u00dfen.\n\n e. Pers\u00f6nlichkeitsrechte bleiben - soweit sie bestehen - von dieser Lizenz unber\u00fchrt.\n\n5. Gew\u00e4hrleistung\n\nSOFERN KEINE ANDERS LAUTENDE, SCHRIFTLICHE VEREINBARUNG ZWISCHEN DEM LIZENZGEBER UND IHNEN GESCHLOSSEN WURDE UND SOWEIT M\u00c4NGEL NICHT ARGLISTIG VERSCHWIEGEN WURDEN, BIETET DER LIZENZGEBER DEN SCHUTZGEGENSTAND UND DIE EINR\u00c4UMUNG VON RECHTEN UNTER AUSSCHLUSS JEGLICHER GEW\u00c4HRLEISTUNG AN UND \u00dcBERNIMMT WEDER AUSDR\u00dcCKLICH NOCH KONKLUDENT GARANTIEN IRGENDEINER ART. DIES UMFASST INSBESONDERE DAS FREISEIN VON SACH- UND RECHTSM\u00c4NGELN, UNABH\u00c4NGIG VON DEREN ERKENNBARKEIT F\u00dcR DEN LIZENZGEBER, DIE VERKEHRSF\u00c4HIGKEIT DES SCHUTZGEGENSTANDES, SEINE VERWENDBARKEIT F\u00dcR EINEN BESTIMMTEN ZWECK SOWIE DIE KORREKTHEIT VON BESCHREIBUNGEN. DIESE GEW\u00c4HRLEISTUNGSBESCHR\u00c4NKUNG GILT NICHT, SOWEIT M\u00c4NGEL ZU SCH\u00c4DEN DER IN ABSCHNITT 6 BEZEICHNETEN ART F\u00dcHREN UND AUF SEITEN DES LIZENZGEBERS DAS JEWEILS GENANNTE VERSCHULDEN BZW. VERTRETENM\u00dcSSEN EBENFALLS VORLIEGT.\n\n6. Haftungsbeschr\u00e4nkung\n\nDER LIZENZGEBER HAFTET IHNEN GEGEN\u00dcBER IN BEZUG AUF SCH\u00c4DEN AUS DER VERLETZUNG DES LEBENS, DES K\u00d6RPERS ODER DER GESUNDHEIT NUR, SOFERN IHM WENIGSTENS FAHRL\u00c4SSIGKEIT VORZUWERFEN IST, F\u00dcR SONSTIGE SCH\u00c4DEN NUR BEI GROBER FAHRL\u00c4SSIGKEIT ODER VORSATZ, UND \u00dcBERNIMMT DAR\u00dcBER HINAUS KEINERLEI FREIWILLIGE HAFTUNG.\n\n7. Erl\u00f6schen\n\n a. Diese Lizenz und die durch sie einger\u00e4umten Nutzungsrechte erl\u00f6schen mit Wirkung f\u00fcr die Zukunft im Falle eines Versto\u00dfes gegen die Lizenzbedingungen durch Sie, ohne dass es dazu der Kenntnis des Lizenzgebers vom Versto\u00df oder einer weiteren Handlung einer der Vertragsparteien bedarf. Mit nat\u00fcrlichen oder juristischen Personen, die Abwandlungen des Schutzgegenstandes oder diesen enthaltende Sammelwerke unter den Bedingungen dieser Lizenz von Ihnen erhalten haben, bestehen nachtr\u00e4glich entstandene Lizenzbeziehungen jedoch solange weiter, wie die genannten Personen sich ihrerseits an s\u00e4mtliche Lizenzbedingungen halten. Dar\u00fcber hinaus gelten die Ziffern 1, 2, 5, 6, 7, und 8 auch nach einem Erl\u00f6schen dieser Lizenz fort.\n\n b. Vorbehaltlich der oben genannten Bedingungen gilt diese Lizenz unbefristet bis der rechtliche Schutz f\u00fcr den Schutzgegenstand ausl\u00e4uft. Davon abgesehen beh\u00e4lt der Lizenzgeber das Recht, den Schutzgegenstand unter anderen Lizenzbedingungen anzubieten oder die eigene Weitergabe des Schutzgegenstandes jederzeit einzustellen, solange die Aus\u00fcbung dieses Rechts nicht einer K\u00fcndigung oder einem Widerruf dieser Lizenz (oder irgendeiner Weiterlizenzierung, die auf Grundlage dieser Lizenz bereits erfolgt ist bzw. zuk\u00fcnftig noch erfolgen muss) dient und diese Lizenz unter Ber\u00fccksichtigung der oben zum Erl\u00f6schen genannten Bedingungen vollumf\u00e4nglich wirksam bleibt.\n\n8. Sonstige Bestimmungen\n\n a. Jedes Mal wenn Sie den Schutzgegenstand f\u00fcr sich genommen oder als Teil eines Sammelwerkes verbreiten oder \u00f6ffentlich zeigen, bietet der Lizenzgeber dem Empf\u00e4nger eine Lizenz zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz.\n\n b. Jedes Mal wenn Sie eine Abwandlung des Schutzgegenstandes verbreiten oder \u00f6ffentlich zeigen, bietet der Lizenzgeber dem Empf\u00e4nger eine Lizenz am urspr\u00fcnglichen Schutzgegenstand zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz.\n\n c. Sollte eine Bestimmung dieser Lizenz unwirksam sein, so bleibt davon die Wirksamkeit der Lizenz im \u00dcbrigen unber\u00fchrt.\n\n d. Keine Bestimmung dieser Lizenz soll als abbedungen und kein Versto\u00df gegen sie als zul\u00e4ssig gelten, solange die von dem Verzicht oder von dem Versto\u00df betroffene Seite nicht schriftlich zugestimmt hat.\n\n e. Diese Lizenz (zusammen mit in ihr ausdr\u00fccklich vorgesehenen Erlaubnissen, Mitteilungen und Zustimmungen, soweit diese tats\u00e4chlich vorliegen) stellt die vollst\u00e4ndige Vereinbarung zwischen dem Lizenzgeber und Ihnen in Bezug auf den Schutzgegenstand dar. Es bestehen keine Abreden, Vereinbarungen oder Erkl\u00e4rungen in Bezug auf den Schutzgegenstand, die in dieser Lizenz nicht genannt sind. Rechtsgesch\u00e4ftliche \u00c4nderungen des Verh\u00e4ltnisses zwischen dem Lizenzgeber und Ihnen sind nur \u00fcber Modifikationen dieser Lizenz m\u00f6glich. Der Lizenzgeber ist an etwaige zus\u00e4tzliche, einseitig durch Sie \u00fcbermittelte Bestimmungen nicht gebunden. Diese Lizenz kann nur durch schriftliche Vereinbarung zwischen Ihnen und dem Lizenzgeber modifiziert werden. Derlei Modifikationen wirken ausschlie\u00dflich zwischen dem Lizenzgeber und Ihnen und wirken sich nicht auf die Dritten gem\u00e4\u00df Ziffern 8.a) und b) angeboteten Lizenzen aus.\n\n f. Sofern zwischen Ihnen und dem Lizenzgeber keine anderweitige Vereinbarung getroffen wurde und soweit Wahlfreiheit besteht, findet auf diesen Lizenzvertrag das Recht der Bundesrepublik Deutschland Anwendung.\n\nCreative Commons Notice\n\nCreative Commons ist nicht Partei dieser Lizenz und \u00fcbernimmt keinerlei Gew\u00e4hr oder dergleichen in Bezug auf den Schutzgegenstand. Creative Commons haftet Ihnen oder einer anderen Partei unter keinem rechtlichen Gesichtspunkt f\u00fcr irgendwelche Sch\u00e4den, die - abstrakt oder konkret, zuf\u00e4llig oder vorhersehbar - im Zusammenhang mit dieser Lizenz entstehen. Unbeschadet der vorangegangen beiden S\u00e4tze, hat Creative Commons alle Rechte und Pflichten eines Lizenzgebers, wenn es sich ausdr\u00fccklich als Lizenzgeber im Sinne dieser Lizenz bezeichnet.\n\nCreative Commons gew\u00e4hrt den Parteien nur insoweit das Recht, das Logo und die Marke \"Creative Commons\" zu nutzen, als dies notwendig ist, um der \u00d6ffentlichkeit gegen\u00fcber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein dar\u00fcber hinaus gehender Gebrauch der Marke \"Creative Commons\" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website ver\u00f6ffentlicht oder auf andere Weise auf Anfrage zug\u00e4nglich gemacht wird. Zur Klarstellung: Die genannten Einschr\u00e4nkungen der Markennutzung sind nicht Bestandteil dieser Lizenz.\n\nCreative Commons kann kontaktiert werden \u00fcber https://creativecommons.org/.", + "json": "cc-by-sa-3.0-de.json", + "yaml": "cc-by-sa-3.0-de.yml", + "html": "cc-by-sa-3.0-de.html", + "license": "cc-by-sa-3.0-de.LICENSE" + }, + { + "license_key": "cc-by-sa-4.0", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Attribution-ShareAlike 4.0 International\n\n=======================================================================\n\nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide legal services or legal advice. Distribution of\nCreative Commons public licenses does not create a lawyer-client or\nother relationship. Creative Commons makes its licenses and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\nwarranties regarding its licenses, any material licensed under their\nterms and conditions, or any related information. Creative Commons\ndisclaims all liability for damages resulting from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\nCreative Commons public licenses provide a standard set of terms and\nconditions that creators and other rights holders may use to share\noriginal works of authorship and other material subject to copyright\nand certain other rights specified in the public license below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive, and do not form part of our licenses.\n\n Considerations for licensors: Our public licenses are\n intended for use by those authorized to give the public\n permission to use material in ways otherwise restricted by\n copyright and certain other rights. Our licenses are\n irrevocable. Licensors should read and understand the terms\n and conditions of the license they choose before applying it.\n Licensors should also secure all rights necessary before\n applying our licenses so that the public can reuse the\n material as expected. Licensors should clearly mark any\n material not subject to the license. This includes other CC-\n licensed material, or material used under an exception or\n limitation to copyright. More considerations for licensors:\n\twiki.creativecommons.org/Considerations_for_licensors\n\n Considerations for the public: By using one of our public\n licenses, a licensor grants the public permission to use the\n licensed material under specified terms and conditions. If\n the licensor's permission is not necessary for any reason--for\n example, because of any applicable exception or limitation to\n copyright--then that use is not regulated by the license. Our\n licenses grant only permissions under copyright and certain\n other rights that a licensor has authority to grant. Use of\n the licensed material may still be restricted for other\n reasons, including because others have copyright or other\n rights in the material. A licensor may make special requests,\n such as asking that all changes be marked or described.\n Although not required by our licenses, you are encouraged to\n respect those requests where reasonable. More considerations\n for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\nCreative Commons Attribution-ShareAlike 4.0 International Public\nLicense\n\nBy exercising the Licensed Rights (defined below), You accept and agree\nto be bound by the terms and conditions of this Creative Commons\nAttribution-ShareAlike 4.0 International Public License (\"Public\nLicense\"). To the extent this Public License may be interpreted as a\ncontract, You are granted the Licensed Rights in consideration of Your\nacceptance of these terms and conditions, and the Licensor grants You\nsuch rights in consideration of benefits the Licensor receives from\nmaking the Licensed Material available under these terms and\nconditions.\n\n\nSection 1 -- Definitions.\n\n a. Adapted Material means material subject to Copyright and Similar\n Rights that is derived from or based upon the Licensed Material\n and in which the Licensed Material is translated, altered,\n arranged, transformed, or otherwise modified in a manner requiring\n permission under the Copyright and Similar Rights held by the\n Licensor. For purposes of this Public License, where the Licensed\n Material is a musical work, performance, or sound recording,\n Adapted Material is always produced where the Licensed Material is\n synched in timed relation with a moving image.\n\n b. Adapter's License means the license You apply to Your Copyright\n and Similar Rights in Your contributions to Adapted Material in\n accordance with the terms and conditions of this Public License.\n\n c. BY-SA Compatible License means a license listed at\n creativecommons.org/compatiblelicenses, approved by Creative\n Commons as essentially the equivalent of this Public License.\n\n d. Copyright and Similar Rights means copyright and/or similar rights\n closely related to copyright including, without limitation,\n performance, broadcast, sound recording, and Sui Generis Database\n Rights, without regard to how the rights are labeled or\n categorized. For purposes of this Public License, the rights\n specified in Section 2(b)(1)-(2) are not Copyright and Similar\n Rights.\n\n e. Effective Technological Measures means those measures that, in the\n absence of proper authority, may not be circumvented under laws\n fulfilling obligations under Article 11 of the WIPO Copyright\n Treaty adopted on December 20, 1996, and/or similar international\n agreements.\n\n f. Exceptions and Limitations means fair use, fair dealing, and/or\n any other exception or limitation to Copyright and Similar Rights\n that applies to Your use of the Licensed Material.\n\n g. License Elements means the license attributes listed in the name\n of a Creative Commons Public License. The License Elements of this\n Public License are Attribution and ShareAlike.\n\n h. Licensed Material means the artistic or literary work, database,\n or other material to which the Licensor applied this Public\n License.\n\n i. Licensed Rights means the rights granted to You subject to the\n terms and conditions of this Public License, which are limited to\n all Copyright and Similar Rights that apply to Your use of the\n Licensed Material and that the Licensor has authority to license.\n\n j. Licensor means the individual(s) or entity(ies) granting rights\n under this Public License.\n\n k. Share means to provide material to the public by any means or\n process that requires permission under the Licensed Rights, such\n as reproduction, public display, public performance, distribution,\n dissemination, communication, or importation, and to make material\n available to the public including in ways that members of the\n public may access the material from a place and at a time\n individually chosen by them.\n\n l. Sui Generis Database Rights means rights other than copyright\n resulting from Directive 96/9/EC of the European Parliament and of\n the Council of 11 March 1996 on the legal protection of databases,\n as amended and/or succeeded, as well as other essentially\n equivalent rights anywhere in the world.\n\n m. You means the individual or entity exercising the Licensed Rights\n under this Public License. Your has a corresponding meaning.\n\n\nSection 2 -- Scope.\n\n a. License grant.\n\n 1. Subject to the terms and conditions of this Public License,\n the Licensor hereby grants You a worldwide, royalty-free,\n non-sublicensable, non-exclusive, irrevocable license to\n exercise the Licensed Rights in the Licensed Material to:\n\n a. reproduce and Share the Licensed Material, in whole or\n in part; and\n\n b. produce, reproduce, and Share Adapted Material.\n\n 2. Exceptions and Limitations. For the avoidance of doubt, where\n Exceptions and Limitations apply to Your use, this Public\n License does not apply, and You do not need to comply with\n its terms and conditions.\n\n 3. Term. The term of this Public License is specified in Section\n 6(a).\n\n 4. Media and formats; technical modifications allowed. The\n Licensor authorizes You to exercise the Licensed Rights in\n all media and formats whether now known or hereafter created,\n and to make technical modifications necessary to do so. The\n Licensor waives and/or agrees not to assert any right or\n authority to forbid You from making technical modifications\n necessary to exercise the Licensed Rights, including\n technical modifications necessary to circumvent Effective\n Technological Measures. For purposes of this Public License,\n simply making modifications authorized by this Section 2(a)\n (4) never produces Adapted Material.\n\n 5. Downstream recipients.\n\n a. Offer from the Licensor -- Licensed Material. Every\n recipient of the Licensed Material automatically\n receives an offer from the Licensor to exercise the\n Licensed Rights under the terms and conditions of this\n Public License.\n\n b. Additional offer from the Licensor -- Adapted Material.\n Every recipient of Adapted Material from You\n automatically receives an offer from the Licensor to\n exercise the Licensed Rights in the Adapted Material\n under the conditions of the Adapter's License You apply.\n\n c. No downstream restrictions. You may not offer or impose\n any additional or different terms or conditions on, or\n apply any Effective Technological Measures to, the\n Licensed Material if doing so restricts exercise of the\n Licensed Rights by any recipient of the Licensed\n Material.\n\n 6. No endorsement. Nothing in this Public License constitutes or\n may be construed as permission to assert or imply that You\n are, or that Your use of the Licensed Material is, connected\n with, or sponsored, endorsed, or granted official status by,\n the Licensor or others designated to receive attribution as\n provided in Section 3(a)(1)(A)(i).\n\n b. Other rights.\n\n 1. Moral rights, such as the right of integrity, are not\n licensed under this Public License, nor are publicity,\n privacy, and/or other similar personality rights; however, to\n the extent possible, the Licensor waives and/or agrees not to\n assert any such rights held by the Licensor to the limited\n extent necessary to allow You to exercise the Licensed\n Rights, but not otherwise.\n\n 2. Patent and trademark rights are not licensed under this\n Public License.\n\n 3. To the extent possible, the Licensor waives any right to\n collect royalties from You for the exercise of the Licensed\n Rights, whether directly or through a collecting society\n under any voluntary or waivable statutory or compulsory\n licensing scheme. In all other cases the Licensor expressly\n reserves any right to collect such royalties.\n\n\nSection 3 -- License Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the\nfollowing conditions.\n\n a. Attribution.\n\n 1. If You Share the Licensed Material (including in modified\n form), You must:\n\n a. retain the following if it is supplied by the Licensor\n with the Licensed Material:\n\n i. identification of the creator(s) of the Licensed\n Material and any others designated to receive\n attribution, in any reasonable manner requested by\n the Licensor (including by pseudonym if\n designated);\n\n ii. a copyright notice;\n\n iii. a notice that refers to this Public License;\n\n iv. a notice that refers to the disclaimer of\n warranties;\n\n v. a URI or hyperlink to the Licensed Material to the\n extent reasonably practicable;\n\n b. indicate if You modified the Licensed Material and\n retain an indication of any previous modifications; and\n\n c. indicate the Licensed Material is licensed under this\n Public License, and include the text of, or the URI or\n hyperlink to, this Public License.\n\n 2. You may satisfy the conditions in Section 3(a)(1) in any\n reasonable manner based on the medium, means, and context in\n which You Share the Licensed Material. For example, it may be\n reasonable to satisfy the conditions by providing a URI or\n hyperlink to a resource that includes the required\n information.\n\n 3. If requested by the Licensor, You must remove any of the\n information required by Section 3(a)(1)(A) to the extent\n reasonably practicable.\n\n b. ShareAlike.\n\n In addition to the conditions in Section 3(a), if You Share\n Adapted Material You produce, the following conditions also apply.\n\n 1. The Adapter's License You apply must be a Creative Commons\n license with the same License Elements, this version or\n later, or a BY-SA Compatible License.\n\n 2. You must include the text of, or the URI or hyperlink to, the\n Adapter's License You apply. You may satisfy this condition\n in any reasonable manner based on the medium, means, and\n context in which You Share Adapted Material.\n\n 3. You may not offer or impose any additional or different terms\n or conditions on, or apply any Effective Technological\n Measures to, Adapted Material that restrict exercise of the\n rights granted under the Adapter's License You apply.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database Rights that\napply to Your use of the Licensed Material:\n\n a. for the avoidance of doubt, Section 2(a)(1) grants You the right\n to extract, reuse, reproduce, and Share all or a substantial\n portion of the contents of the database;\n\n b. if You include all or a substantial portion of the database\n contents in a database in which You have Sui Generis Database\n Rights, then the database in which You have Sui Generis Database\n Rights (but not its individual contents) is Adapted Material,\n\n including for purposes of Section 3(b); and\n c. You must comply with the conditions in Section 3(a) if You Share\n all or a substantial portion of the contents of the database.\n\nFor the avoidance of doubt, this Section 4 supplements and does not\nreplace Your obligations under this Public License where the Licensed\nRights include other Copyright and Similar Rights.\n\n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\n a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\n PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\n b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE\n TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\n COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR\n USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR\n IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.\n\n c. The disclaimer of warranties and limitation of liability provided\n above shall be interpreted in a manner that, to the extent\n possible, most closely approximates an absolute disclaimer and\n waiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\n a. This Public License applies for the term of the Copyright and\n Similar Rights licensed here. However, if You fail to comply with\n this Public License, then Your rights under this Public License\n terminate automatically.\n\n b. Where Your right to use the Licensed Material has terminated under\n Section 6(a), it reinstates:\n\n 1. automatically as of the date the violation is cured, provided\n it is cured within 30 days of Your discovery of the\n violation; or\n\n 2. upon express reinstatement by the Licensor.\n\n For the avoidance of doubt, this Section 6(b) does not affect any\n right the Licensor may have to seek remedies for Your violations\n of this Public License.\n\n c. For the avoidance of doubt, the Licensor may also offer the\n Licensed Material under separate terms or conditions or stop\n distributing the Licensed Material at any time; however, doing so\n will not terminate this Public License.\n\n d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n License.\n\n\nSection 7 -- Other Terms and Conditions.\n\n a. The Licensor shall not be bound by any additional or different\n terms or conditions communicated by You unless expressly agreed.\n\n b. Any arrangements, understandings, or agreements regarding the\n Licensed Material not stated herein are separate from and\n independent of the terms and conditions of this Public License.\n\n\nSection 8 -- Interpretation.\n\n a. For the avoidance of doubt, this Public License does not, and\n shall not be interpreted to, reduce, limit, restrict, or impose\n conditions on any use of the Licensed Material that could lawfully\n be made without permission under this Public License.\n\n b. To the extent possible, if any provision of this Public License is\n deemed unenforceable, it shall be automatically reformed to the\n minimum extent necessary to make it enforceable. If the provision\n cannot be reformed, it shall be severed from this Public License\n without affecting the enforceability of the remaining terms and\n conditions.\n\n c. No term or condition of this Public License will be waived and no\n failure to comply consented to unless expressly agreed to by the\n Licensor.\n\n d. Nothing in this Public License constitutes or may be interpreted\n as a limitation upon, or waiver of, any privileges and immunities\n that apply to the Licensor or You, including from the legal\n processes of any jurisdiction or authority.\n\n\n=======================================================================\n\nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons may elect to apply one of\nits public licenses to material it publishes and in those instances\nwill be considered the \u201cLicensor.\u201d The text of the Creative Commons\npublic licenses is dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the limited purpose of indicating that\nmaterial is shared under a Creative Commons public license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies, Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or any other trademark or logo\nof Creative Commons without its prior written consent including,\nwithout limitation, in connection with any unauthorized modifications\nto any of its public licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic licenses.\n\nCreative Commons may be contacted at creativecommons.org.", + "json": "cc-by-sa-4.0.json", + "yaml": "cc-by-sa-4.0.yml", + "html": "cc-by-sa-4.0.html", + "license": "cc-by-sa-4.0.LICENSE" + }, + { + "license_key": "cc-devnations-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cc-devnations-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Developing Nations 2.0\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this License.\n\"Developing Nation\" means any nation that is not classified as a \"high-income enconomy\" by the World Bank.\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\"Original Author\" means the individual or entity who created the Work.\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright or subject to Section 7(a)) license to exercise the rights in the Work, in any Developing Nation, solely within the geographic territory of one or more Developing Nations, as stated below:\n\nto reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nto create and reproduce Derivative Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\nto distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works;\nFor the avoidance of doubt, where the work is a musical composition:\n\nPerformance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society, royalties for the public performance or public digital performance (e.g. webcast) of the Work.\nMechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights agency or designated agent, royalties for any phonorecord You create from the Work (\"cover version\") and distribute, subject to any compulsory license that may apply.\nWebcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society, royalties for the public digital performance (e.g. webcast) of the Work, subject to any compulsory license that may apply.\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved, including but not limited to the rights and restrictions described in Section 4.\n\n4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n\nYou may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested.\nIf you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and, in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., \"French translation of the Work by Original Author,\" or \"Screenplay based on original Work by Original Author\"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\nThe Work and any Derivative Works and Collective Works may only be exported to other Developing Nations, but may not be exported to countries classified as \"high income\" by the World Bank.\nThis License does not authorize making the Work, any Derivative Works or any Collective Works publicly available on the Internet unless reasonable measures are undertaken to verify that the recipient is located in a Developing Nation, such as by requiring recipients to provide name and postal mailing address, or by limiting the distribution of the Work to Internet IP addresses within a Developing Nation.\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon (i) any breach by You of the terms of this License or (ii) if any Developing Nation in which the Work is used, exported or distributed ceases at any time to qualify as a Developing Nation, in which case this License will automatically terminate with respect to such country five (5) years after the date of such re-classification; provided that You will not be liable for copyright infringement unless and until You continue to exercise such rights after You have actual knowledge of the termination of this License for such country. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nEach time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.", + "json": "cc-devnations-2.0.json", + "yaml": "cc-devnations-2.0.yml", + "html": "cc-devnations-2.0.html", + "license": "cc-devnations-2.0.LICENSE" + }, + { + "license_key": "cc-gpl-2.0-pt", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-cc-gpl-2.0-pt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Licen\u00e7a P\u00fablica Geral do GNU (GPL) [General Public License] \n\n\nThis is an unofficial translation of the GNU General Public License into Portuguese. It was not published by the Free Software Foundation, and does not legally state the distribution terms for software that uses the GNU GPL--only the original English text of the GNU GPL does that. However, we hope that this translation will help Portuguese speakers understand the GNU GPL better.\nEsta \u00e9 uma tradu\u00e7\u00e3o n\u00e3o-oficial da GNU General Public License para o Portugu\u00eas. Ela n\u00e3o \u00e9 publicada pela Free Software Foundation e n\u00e3o traz os termos de distribui\u00e7\u00e3o legal do software que usa a GNU GPL -- estes termos est\u00e3o contidos apenas no texto da GNU GPL original em ingl\u00eas. No entanto, esperamos que esta tradu\u00e7\u00e3o ajudar\u00e1 no melhor entendimento da GNU GPL em Portugu\u00eas.\n\nVers\u00e3o 2, Junho de 1991 Direitos Autorais Reservados \u00a9 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite [conjunto] 330, Boston, MA [Massachusetts] 02111-1307 USA [Estados Unidos da Am\u00e9rica]\n\u00c9 permitido a qualquer pessoa copiar e distribuir c\u00f3pias sem altera\u00e7\u00f5es deste documento de licen\u00e7a, sendo vedada, entretanto, qualquer modifica\u00e7\u00e3o. \nIntrodu\u00e7\u00e3o\nAs licen\u00e7as da maioria dos softwares s\u00e3o elaboradas para suprimir sua liberdade de compartilh\u00e1-los e modific\u00e1-los. A Licen\u00e7a P\u00fablica Geral do GNU, ao contr\u00e1rio, visa garantir sua liberdade de compartilhar e modificar softwares livres para assegurar que o software seja livre para todos os seus usu\u00e1rios. Esta Licen\u00e7a P\u00fablica Geral \u00e9 aplic\u00e1vel \u00e0 maioria dos softwares da Free Software Foundation [Funda\u00e7\u00e3o do Software Livre] e a qualquer outro programa cujos autores se comprometerem a us\u00e1-la. (Em vez dela, alguns outros softwares da Free Software Foundation s\u00e3o cobertos pela Licen\u00e7a P\u00fablica Geral de Biblioteca do GNU). Voc\u00ea tamb\u00e9m poder\u00e1 aplic\u00e1-la aos seus programas. \nQuando falamos de software livre, estamos nos referindo \u00e0 liberdade, n\u00e3o ao pre\u00e7o. Nossas Licen\u00e7as P\u00fablicas Gerais visam garantir que voc\u00ea tenha a liberdade de distribuir c\u00f3pias de software livre (e cobrar por isso se desejar), que receba c\u00f3digo-fonte ou possa obt\u00ea-lo se desejar, que possa modific\u00e1-lo ou usar partes dele em novos programas livres; finalmente, que voc\u00ea tenha ci\u00eancia de que pode fazer tudo isso. \nPara proteger seus direitos, necessitamos fazer restri\u00e7\u00f5es que pro\u00edbem que algu\u00e9m negue esses direitos a voc\u00ea ou que solicite que voc\u00ea renuncie a eles. Essas restri\u00e7\u00f5es se traduzem em determinadas responsabilidades que voc\u00ea dever\u00e1 assumir, se for distribuir c\u00f3pias do software ou modific\u00e1-lo. \nPor exemplo, se voc\u00ea distribuir c\u00f3pias de algum desses programas, tanto gratuitamente como mediante uma taxa, voc\u00ea ter\u00e1 de conceder aos receptores todos os direitos que voc\u00ea possui. Voc\u00ea ter\u00e1 de garantir que, tamb\u00e9m eles, recebam ou possam obter o c\u00f3digo-fonte. E voc\u00ea ter\u00e1 a obriga\u00e7\u00e3o de exibir a eles esses termos, para que eles conhe\u00e7am seus direitos. \nProtegemos seus direitos atrav\u00e9s de dois passos: (1) estabelecendo direitos autorais sobre o software e (2) concedendo a voc\u00ea esta licen\u00e7a, que d\u00e1 permiss\u00e3o legal para copiar, distribuir e/ou modificar o software. \nAl\u00e9m disso, para a prote\u00e7\u00e3o de cada autor e a nossa, queremos ter certeza de que todos entendam que n\u00e3o h\u00e1 nenhuma garantia para este software livre. Se o software for modificado por algu\u00e9m e passado adiante, queremos que seus receptores saibam que o que receberam n\u00e3o \u00e9 o original, de forma que quaisquer problemas introduzidos por terceiros n\u00e3o afetem as reputa\u00e7\u00f5es dos autores originais. \nFinalmente, qualquer programa livre \u00e9 constantemente amea\u00e7ado por patentes de software. Queremos evitar o risco de que redistribuidores de um programa livre obtenham individualmente licen\u00e7as sob uma patente, tornando o programa, com efeito, propriet\u00e1rio. Para impedir isso, deixamos claro que qualquer patente deve ser licenciada para o uso livre por parte de qualquer pessoa ou, ent\u00e3o, simplesmente n\u00e3o deve ser licenciada. \nOs exatos termos e condi\u00e7\u00f5es para c\u00f3pia, distribui\u00e7\u00e3o e modifica\u00e7\u00e3o seguem abaixo. \nTERMOS E CONDI\u00c7\u00d5ES PARA C\u00d3PIA, DISTRIBUI\u00c7\u00c3O E MODIFICA\u00c7\u00c3O \n\nEsta Licen\u00e7a se aplica a qualquer programa ou outra obra que contenha um aviso inserido pelo respectivo titular dos direitos autorais, informando que a referida obra pode ser distribu\u00edda em conformidade com os termos desta Licen\u00e7a P\u00fablica Geral. O termo \"Programa\", utilizado abaixo, refere-se a qualquer programa ou obra, e o termo \"obras baseadas no Programa\" significa tanto o Programa, como qualquer obra derivada nos termos da legisla\u00e7\u00e3o de direitos autorais: isto \u00e9, uma obra contendo o Programa ou uma parte dele, tanto de forma id\u00eantica como com modifica\u00e7\u00f5es, e/ou traduzida para outra linguagem. (Doravante, o termo \"modifica\u00e7\u00e3o\" inclui tamb\u00e9m, sem reservas, a tradu\u00e7\u00e3o). Cada licenciado, doravante, ser\u00e1 denominado \"voc\u00ea\".\nOutras atividades que n\u00e3o a c\u00f3pia, distribui\u00e7\u00e3o e modifica\u00e7\u00e3o, n\u00e3o s\u00e3o cobertas por esta Licen\u00e7a; elas est\u00e3o fora de seu escopo. O ato de executar o Programa n\u00e3o tem restri\u00e7\u00f5es e o resultado gerado a partir do Programa encontra-se coberto somente se seu conte\u00fado constituir uma obra baseada no Programa (independente de ter sido produzida pela execu\u00e7\u00e3o do Programa). Na verdade, isto depender\u00e1 daquilo que o Programa faz.\n\nVoc\u00ea poder\u00e1 fazer c\u00f3pias id\u00eanticas do c\u00f3digo-fonte do Programa ao receb\u00ea-lo e distribui-las, em qualquer m\u00eddia ou meio, desde que publique, de forma ostensiva e adequada, em cada c\u00f3pia, um aviso de direitos autorais (ou copyright) apropriado e uma notifica\u00e7\u00e3o sobre a exonera\u00e7\u00e3o de garantia; mantenha intactas as informa\u00e7\u00f5es, avisos ou notifica\u00e7\u00f5es referentes a esta Licen\u00e7a e \u00e0 aus\u00eancia de qualquer garantia; e forne\u00e7a a quaisquer outros receptores do Programa uma c\u00f3pia desta Licen\u00e7a junto com o Programa. \nVoc\u00ea poder\u00e1 cobrar um valor pelo ato f\u00edsico de transferir uma c\u00f3pia, e voc\u00ea pode oferecer, se quiser, a prote\u00e7\u00e3o de uma garantia em troca de um valor. \nVoc\u00ea poder\u00e1 modificar sua c\u00f3pia ou c\u00f3pias do Programa ou qualquer parte dele, formando, dessa forma, uma obra baseada no Programa, bem como copiar e distribuir essas modifica\u00e7\u00f5es ou obra, de acordo com os termos da Cl\u00e1usula 1 acima, desde que voc\u00ea tamb\u00e9m atenda a todas as seguintes condi\u00e7\u00f5es: \n\n\n\nVoc\u00ea deve fazer com que os arquivos modificados contenham avisos, em destaque, informando que voc\u00ea modificou os arquivos, bem como a data de qualquer modifica\u00e7\u00e3o. \n\nVoc\u00ea deve fazer com que qualquer obra que voc\u00ea distribuir ou publicar, que no todo ou em parte contenha o Programa ou seja dele derivada, ou derivada de qualquer parte dele, seja licenciada como um todo sem qualquer custo para todos terceiros nos termos desta licen\u00e7a.\n\nSe o programa modificado normalmente l\u00ea comandos interativamente quando executado, voc\u00ea dever\u00e1 fazer com que ele, ao come\u00e7ar a ser executado para esse uso interativo em sua forma mais simples, imprima ou exiba um aviso incluindo o aviso de direitos autorais (ou copyright) apropriado, al\u00e9m de uma notifica\u00e7\u00e3o de que n\u00e3o h\u00e1 garantia (ou, ent\u00e3o, informando que voc\u00ea oferece garantia) e informando que os usu\u00e1rios poder\u00e3o redistribuir o programa de acordo com essas condi\u00e7\u00f5es, esclarecendo ao usu\u00e1rio como visualizar uma c\u00f3pia desta Licen\u00e7a. (Exce\u00e7\u00e3o: se o Programa em si for interativo mas n\u00e3o imprimir normalmente avisos como esses, n\u00e3o \u00e9 obrigat\u00f3rio que a sua obra baseada no Programa imprima um aviso). \nEssas exig\u00eancias se aplicam \u00e0 obra modificada como um todo. Se partes identific\u00e1veis dessa obra n\u00e3o forem derivadas do Programa e puderem ser consideradas razoavelmente como obras independentes e separadas por si pr\u00f3prias, nesse caso, esta Licen\u00e7a e seus termos n\u00e3o se aplicar\u00e3o a essas partes quando voc\u00ea distribui-las como obras separadas. Todavia, quando voc\u00ea distribui-las como parte de um todo que constitui uma obra baseada no Programa, a distribui\u00e7\u00e3o deste todo ter\u00e1 de ser realizada em conformidade com esta Licen\u00e7a, cujas permiss\u00f5es para outros licenciados se estender\u00e3o \u00e0 obra por completo e, conseq\u00fcentemente, a toda e qualquer parte, independentemente de quem a escreveu. \nPortanto, esta cl\u00e1usula n\u00e3o tem a inten\u00e7\u00e3o de afirmar direitos ou contestar os seus direitos sobre uma obra escrita inteiramente por voc\u00ea; a inten\u00e7\u00e3o \u00e9, antes, de exercer o direito de controlar a distribui\u00e7\u00e3o de obras derivadas ou obras coletivas baseadas no Programa. \nAl\u00e9m do mais, a simples agrega\u00e7\u00e3o de outra obra que n\u00e3o seja baseada no Programa a ele (ou a uma obra baseada no Programa) em um volume de m\u00eddia ou meio de armazenamento ou distribui\u00e7\u00e3o, n\u00e3o inclui esta outra obra no \u00e2mbito desta Licen\u00e7a. \n\n\n\n\nVoc\u00ea poder\u00e1 copiar e distribuir o Programa (ou uma obra baseada nele, de acordo com a Cl\u00e1usula 2) em c\u00f3digo-objeto ou formato execut\u00e1vel de acordo com os termos das Cl\u00e1usulas 1 e 2 acima, desde que voc\u00ea tamb\u00e9m tome uma das provid\u00eancias seguintes: \n\n\n\nIncluir o c\u00f3digo-fonte correspondente completo, pass\u00edvel de leitura pela m\u00e1quina, o qual ter\u00e1 de ser distribu\u00eddo de acordo com as Cl\u00e1usulas 1 e 2 acima, em um meio ou m\u00eddia habitualmente usado para interc\u00e2mbio de software; ou, \n\n\nIncluir uma oferta por escrito, v\u00e1lida por pelo menos tr\u00eas anos, para fornecer a qualquer terceiro, por um custo que n\u00e3o seja superior ao seu custo de fisicamente realizar a distribui\u00e7\u00e3o da fonte, uma c\u00f3pia completa pass\u00edvel de leitura pela m\u00e1quina, do c\u00f3digo-fonte correspondente, a ser distribu\u00eddo de acordo com as Cl\u00e1usulas 1 e 2 acima, em um meio ou m\u00eddia habitualmente usado para interc\u00e2mbio de software; ou, \n\n\nIncluir as informa\u00e7\u00f5es recebidas por voc\u00ea, quanto \u00e0 oferta para distribuir o c\u00f3digo-fonte correspondente. (Esta alternativa \u00e9 permitida somente para distribui\u00e7\u00e3o n\u00e3o-comercial e apenas se voc\u00ea tiver recebido o programa em c\u00f3digo-objeto ou formato execut\u00e1vel com essa oferta, de acordo com a letra b, acima). \nO c\u00f3digo-fonte de uma obra significa o formato preferencial da obra para que sejam feitas modifica\u00e7\u00f5es na mesma. Para uma obra execut\u00e1vel, o c\u00f3digo-fonte completo significa o c\u00f3digo-fonte inteiro de todos os m\u00f3dulos que ela contiver, mais quaisquer arquivos de defini\u00e7\u00e3o de interface associados, al\u00e9m dos scripts usados para controlar a compila\u00e7\u00e3o e instala\u00e7\u00e3o do execut\u00e1vel. Entretanto, como uma exce\u00e7\u00e3o especial, o c\u00f3digo-fonte distribu\u00eddo n\u00e3o precisa incluir nada que n\u00e3o seja normalmente distribu\u00eddo (tanto no formato fonte como no bin\u00e1rio) com os componentes principais (compilador, kernel e assim por diante) do sistema operacional no qual o execut\u00e1vel \u00e9 executado, a menos que este componente em si acompanhe o execut\u00e1vel. \nSe a distribui\u00e7\u00e3o do execut\u00e1vel ou c\u00f3digo-objeto for feita mediante a permiss\u00e3o de acesso para copiar, a partir de um local designado, ent\u00e3o, a permiss\u00e3o de acesso equivalente para copiar o c\u00f3digo-fonte a partir do mesmo local ser\u00e1 considerada como distribui\u00e7\u00e3o do c\u00f3digo-fonte, mesmo que os terceiros n\u00e3o sejam levados a copiar a fonte junto com o c\u00f3digo-objeto. \n\n\n\n\nVoc\u00ea n\u00e3o poder\u00e1 copiar, modificar, sublicenciar ou distribuir o Programa, exceto conforme expressamente estabelecido nesta Licen\u00e7a. Qualquer tentativa de, de outro modo, copiar, modificar, sublicenciar ou distribuir o Programa ser\u00e1 inv\u00e1lida, e automaticamente rescindir\u00e1 seus direitos sob esta Licen\u00e7a. Entretanto, terceiros que tiverem recebido c\u00f3pias ou direitos de voc\u00ea de acordo esta Licen\u00e7a n\u00e3o ter\u00e3o suas licen\u00e7as rescindidas, enquanto estes terceiros mantiverem o seu pleno cumprimento. \n\n\nVoc\u00ea n\u00e3o \u00e9 obrigado a aceitar esta Licen\u00e7a, uma vez que voc\u00ea n\u00e3o a assinou. Por\u00e9m, nada mais concede a voc\u00ea permiss\u00e3o para modificar ou distribuir o Programa ou respectivas obras derivativas. Tais atos s\u00e3o proibidos por lei se voc\u00ea n\u00e3o aceitar esta Licen\u00e7a. Conseq\u00fcentemente, ao modificar ou distribuir o Programa (ou qualquer obra baseada no Programa), voc\u00ea estar\u00e1 manifestando sua aceita\u00e7\u00e3o desta Licen\u00e7a para faz\u00ea-lo, bem como de todos os seus termos e condi\u00e7\u00f5es para copiar, distribuir ou modificar o Programa ou obras nele baseadas. \n\n\nCada vez que voc\u00ea redistribuir o Programa (ou obra baseada no Programa), o receptor receber\u00e1, automaticamente, uma licen\u00e7a do licenciante original, para copiar, distribuir ou modificar o Programa, sujeito a estes termos e condi\u00e7\u00f5es. Voc\u00ea n\u00e3o poder\u00e1 impor quaisquer restri\u00e7\u00f5es adicionais ao exerc\u00edcio, pelos receptores, dos direitos concedidos por este instrumento. Voc\u00ea n\u00e3o tem responsabilidade de promover o cumprimento por parte de terceiros desta licen\u00e7a. \n\n\nSe, como resultado de uma senten\u00e7a judicial ou alega\u00e7\u00e3o de viola\u00e7\u00e3o de patente, ou por qualquer outro motivo (n\u00e3o restrito \u00e0s quest\u00f5es de patentes), forem impostas a voc\u00ea condi\u00e7\u00f5es (tanto atrav\u00e9s de mandado judicial, contrato ou qualquer outra forma) que contradigam as condi\u00e7\u00f5es desta Licen\u00e7a, voc\u00ea n\u00e3o estar\u00e1 desobrigado quanto \u00e0s condi\u00e7\u00f5es desta Licen\u00e7a. Se voc\u00ea n\u00e3o puder atuar como distribuidor de modo a satisfazer simultaneamente suas obriga\u00e7\u00f5es sob esta licen\u00e7a e quaisquer outras obriga\u00e7\u00f5es pertinentes, ent\u00e3o, como conseq\u00fc\u00eancia, voc\u00ea n\u00e3o poder\u00e1 distribuir o Programa de nenhuma forma. Por exemplo, se uma licen\u00e7a sob uma patente n\u00e3o permite a redistribui\u00e7\u00e3o por parte de todos aqueles que tiverem recebido c\u00f3pias, direta ou indiretamente de voc\u00ea, sem o pagamento de royalties, ent\u00e3o, a \u00fanica forma de cumprir tanto com esta exig\u00eancia quanto com esta licen\u00e7a ser\u00e1 deixar de distribuir, por completo, o Programa. \nSe qualquer parte desta Cl\u00e1usula for considerada inv\u00e1lida ou n\u00e3o execut\u00e1vel, sob qualquer circunst\u00e2ncia espec\u00edfica, o restante da cl\u00e1usula dever\u00e1 continuar a ser aplicado e a cl\u00e1usula, como um todo, dever\u00e1 ser aplicada em outras circunst\u00e2ncias. \nEsta cl\u00e1usula n\u00e3o tem a finalidade de induzir voc\u00ea a infringir quaisquer patentes ou direitos de propriedade, nem de contestar a validade de quaisquer reivindica\u00e7\u00f5es deste tipo; a \u00fanica finalidade desta cl\u00e1usula \u00e9 proteger a integridade do sistema de distribui\u00e7\u00e3o do software livre, o qual \u00e9 implementado mediante pr\u00e1ticas de licen\u00e7as p\u00fablicas. Muitas pessoas t\u00eam feito generosas contribui\u00e7\u00f5es \u00e0 ampla gama de software distribu\u00eddo atrav\u00e9s desse sistema, confiando na aplica\u00e7\u00e3o consistente deste sistema; cabe ao autor/doador decidir se deseja distribuir software atrav\u00e9s de qualquer outro sistema e um licenciado n\u00e3o pode impor esta escolha. \nEsta cl\u00e1usula visa deixar absolutamente claro o que se acredita ser uma conseq\u00fc\u00eancia do restante desta Licen\u00e7a. \n\n\nSe a distribui\u00e7\u00e3o e/ou uso do Programa for restrito em determinados pa\u00edses, tanto por patentes ou por interfaces protegidas por direito autoral, o titular original dos direitos autorais que colocar o Programa sob esta Licen\u00e7a poder\u00e1 acrescentar uma limita\u00e7\u00e3o geogr\u00e1fica de distribui\u00e7\u00e3o expl\u00edcita excluindo esses pa\u00edses, de modo que a distribui\u00e7\u00e3o seja permitida somente nos pa\u00edses ou entre os pa\u00edses que n\u00e3o foram exclu\u00eddos dessa forma. Nesse caso, esta Licen\u00e7a passa a incorporar a limita\u00e7\u00e3o como se esta tivesse sido escrita no corpo desta Licen\u00e7a. \n\n\nA Free Software Foundation poder\u00e1 de tempos em tempos publicar novas vers\u00f5es e/ou vers\u00f5es revisadas da Licen\u00e7a P\u00fablica Geral. Essas novas vers\u00f5es ser\u00e3o semelhantes em esp\u00edrito \u00e0 presente vers\u00e3o, mas podem diferenciar-se, por\u00e9m, em detalhe, para tratar de novos problemas ou preocupa\u00e7\u00f5es. \nCada vers\u00e3o recebe um n\u00famero de vers\u00e3o distinto. Se o Programa especificar um n\u00famero de vers\u00e3o desta Licen\u00e7a que se aplique a ela e a \"qualquer vers\u00e3o posterior\", voc\u00ea ter\u00e1 a op\u00e7\u00e3o de seguir os termos e condi\u00e7\u00f5es tanto daquela vers\u00e3o como de qualquer vers\u00e3o posterior publicada pela Free Software Foundation. Se o Programa n\u00e3o especificar um n\u00famero de vers\u00e3o desta Licen\u00e7a, voc\u00ea poder\u00e1 escolher qualquer vers\u00e3o j\u00e1 publicada pela Free Software Foundation. \n\n\nSe voc\u00ea desejar incorporar partes do Programa em outros programas livres cujas condi\u00e7\u00f5es de distribui\u00e7\u00e3o sejam diferentes, escreva ao autor solicitando a respectiva permiss\u00e3o. Para software cujos direitos autorais sejam da Free Software Foundation, escreva para ela; algumas vezes, abrimos exce\u00e7\u00f5es para isso. Nossa decis\u00e3o ser\u00e1 guiada pelos dois objetivos de preservar a condi\u00e7\u00e3o livre de todos os derivados de nosso software livre e de promover o compartilhamento e reutiliza\u00e7\u00e3o de software, de modo geral. \n\n\nEXCLUS\u00c3O DE GARANTIA \n\n\nCOMO O PROGRAMA \u00c9 LICENCIADO SEM CUSTO, N\u00c3O H\u00c1 NENHUMA GARANTIA PARA O PROGRAMA, NO LIMITE PERMITIDO PELA LEI APLIC\u00c1VEL. EXCETO QUANDO DE OUTRA FORMA ESTABELECIDO POR ESCRITO, OS TITULARES DOS DIREITOS AUTORAIS E/OU OUTRAS PARTES, FORNECEM O PROGRAMA \"NO ESTADO EM QUE SE ENCONTRA\", SEM NENHUMA GARANTIA DE QUALQUER TIPO, TANTO EXPRESSA COMO IMPL\u00cdCITA, INCLUINDO, DENTRE OUTRAS, AS GARANTIAS IMPL\u00cdCITAS DE COMERCIABILIDADE E ADEQUA\u00c7\u00c3O A UMA FINALIDADE ESPEC\u00cdFICA. O RISCO INTEGRAL QUANTO \u00c0 QUALIDADE E DESEMPENHO DO PROGRAMA \u00c9 ASSUMIDO POR VOC\u00ca. CASO O PROGRAMA CONTENHA DEFEITOS, VOC\u00ca ARCAR\u00c1 COM OS CUSTOS DE TODOS OS SERVI\u00c7OS, REPAROS OU CORRE\u00c7\u00d5ES NECESS\u00c1RIAS. \n\n\nEM NENHUMA CIRCUNST\u00c2NCIA, A MENOS QUE EXIGIDO PELA LEI APLIC\u00c1VEL OU ACORDADO POR ESCRITO, QUALQUER TITULAR DE DIREITOS AUTORAIS OU QUALQUER OUTRA PARTE QUE POSSA MODIFICAR E/OU REDISTRIBUIR O PROGRAMA, CONFORME PERMITIDO ACIMA, SER\u00c1 RESPONS\u00c1VEL PARA COM VOC\u00ca POR DANOS, INCLUINDO ENTRE OUTROS, QUAISQUER DANOS GERAIS, ESPECIAIS, FORTUITOS OU EMERGENTES, ADVINDOS DO USO OU IMPOSSIBILIDADE DE USO DO PROGRAMA (INCLUINDO, ENTRE OUTROS, PERDAS DE DADOS OU DADOS SENDO GERADOS DE FORMA IMPRECISA, PERDAS SOFRIDAS POR VOC\u00ca OU TERCEIROS OU A IMPOSSIBILIDADE DO PROGRAMA DE OPERAR COM QUAISQUER OUTROS PROGRAMAS), MESMO QUE ESSE TITULAR, OU OUTRA PARTE, TENHA SIDO ALERTADA SOBRE A POSSIBILIDADE DE OCORR\u00caNCIA DESSES DANOS. \n\n\nFINAL DOS TERMOS E CONDI\u00c7\u00d5ES \nComo Aplicar Estes Termos para Seus Novos Programas \nSe voc\u00ea desenvolver um programa novo e quiser que ele seja da maior utilidade poss\u00edvel para o p\u00fablico, o melhor caminho para obter isto \u00e9 fazer dele um software livre, o qual qualquer pessoa pode redistribuir e modificar sob os presentes termos.\nPara fazer isto, anexe as notifica\u00e7\u00f5es seguintes ao programa. \u00c9 mais seguro anex\u00e1-las ao come\u00e7o de cada arquivo-fonte, de modo a transmitir do modo mais eficiente a exclus\u00e3o de garantia; e cada arquivo deve ter ao menos a linha de \"direitos autorais reservados\" e uma indica\u00e7\u00e3o de onde a notifica\u00e7\u00e3o completa se encontra.\n\n\nDireitos Autorais Reservados (c) \nEste programa \u00e9 software livre; voc\u00ea pode redistribu\u00ed-lo e/ou modific\u00e1-lo sob os termos da Licen\u00e7a P\u00fablica Geral GNU conforme publicada pela Free Software Foundation; tanto a vers\u00e3o 2 da Licen\u00e7a, como (a seu crit\u00e9rio) qualquer vers\u00e3o posterior.\nEste programa \u00e9 distribu\u00eddo na expectativa de que seja \u00fatil, por\u00e9m, SEM NENHUMA GARANTIA; nem mesmo a garantia impl\u00edcita de COMERCIABILIDADE OU ADEQUA\u00c7\u00c3O A UMA FINALIDADE ESPEC\u00cdFICA. Consulte a Licen\u00e7a P\u00fablica Geral do GNU para mais detalhes. \nVoc\u00ea deve ter recebido uma c\u00f3pia da Licen\u00e7a P\u00fablica Geral do GNU junto com este programa; se n\u00e3o, escreva para a Free Software Foundation, Inc., no endere\u00e7o 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA. \nInclua tamb\u00e9m informa\u00e7\u00f5es sobre como contatar voc\u00ea por correio eletr\u00f4nico e por meio postal. \n\nSe o programa for interativo, fa\u00e7a com que produza uma pequena notifica\u00e7\u00e3o como esta, quando for iniciado em um modo interativo: \nVers\u00e3o 69 do Gnomovision, Direitos Autorais Reservados (c) ano nome do autor. O Gnomovision N\u00c3O POSSUI QUALQUER TIPO DE GARANTIA; para detalhes, digite 'show w'. Este \u00e9 um software livre e voc\u00ea \u00e9 bem-vindo para redistribu\u00ed-lo sob certas condi\u00e7\u00f5es; digite 'show c' para detalhes. \nOs comandos hipot\u00e9ticos `show w' e `show c' devem mostrar as partes apropriadas da Licen\u00e7a P\u00fablica Geral. Naturalmente, os comandos que voc\u00ea utilizar poder\u00e3o ter outras denomina\u00e7\u00f5es que n\u00e3o `show w' e `show c'; eles poder\u00e3o at\u00e9 ser cliques do mouse ou itens de um menu - o que for adequado ao seu programa. \nVoc\u00ea tamb\u00e9m pode solicitar a seu empregador (se voc\u00ea for um programador) ou sua institui\u00e7\u00e3o acad\u00eamica, se for o caso, para assinar uma \"ren\u00fancia de direitos autorais\" sobre o programa, se necess\u00e1rio. Segue um exemplo; altere os nomes: \n\nA Yoyodyne Ltda., neste ato, renuncia a todos eventuais direitos autorais sobre o programa `Gnomovision' (que realiza passagens em compiladores), escrito por James Hacker. \n\n1\u00ba de abril de 1989, Ty Coon, Presidente\nEsta Licen\u00e7a P\u00fablica Geral n\u00e3o permite a incorpora\u00e7\u00e3o do seu programa a programas propriet\u00e1rios. Se seu programa \u00e9 uma biblioteca de sub-rotinas, voc\u00ea poder\u00e1 considerar ser mais \u00fatil permitir a liga\u00e7\u00e3o de aplica\u00e7\u00f5es propriet\u00e1rias \u00e0 sua biblioteca. Se isso \u00e9 o que voc\u00ea deseja fazer, utilize a Licen\u00e7a P\u00fablica Geral de Biblioteca do GNU, ao inv\u00e9s desta Licen\u00e7a.", + "json": "cc-gpl-2.0-pt.json", + "yaml": "cc-gpl-2.0-pt.yml", + "html": "cc-gpl-2.0-pt.html", + "license": "cc-gpl-2.0-pt.LICENSE" + }, + { + "license_key": "cc-lgpl-2.1-pt", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cc-lgpl-2.1-pt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Licen\u00e7a P\u00fablica Geral Menor do GNU \n\n\nThis is an unofficial translation of the GNU Lesser General Public License into Portuguese. It was not published by the Free Software Foundation, and does not legally state the distribution terms for software that uses the GNU LGPL--only the original English text of the GNU LGPL does that. However, we hope that this translation will help Portuguese speakers understand the GNU LGPL better.\nEsta \u00e9 uma tradu\u00e7\u00e3o n\u00e3o-oficial da GNU Lesser General Public License para o Portugu\u00eas. Ela n\u00e3o \u00e9 publicada pela Free Software Foundation e n\u00e3o traz os termos de distribui\u00e7\u00e3o legal do software que usa a GNU LGPL -- estes termos est\u00e3o contidos apenas no texto da GNU LGPL original em ingl\u00eas. No entanto, esperamos que esta tradu\u00e7\u00e3o ajudar\u00e1 no melhor entendimento da GNU LGPL em Portugu\u00eas.\n\nVers\u00e3o 2.1, Fevereiro de 1999 \nCopyright \u00a9 1991, 1999 Free Software Foundation, Inc.\n59 Temple Place, Suite [conjunto] 330, Boston, MA [Massachusetts] 021111307 USA [Estados Unidos da Am\u00e9rica] \u00c9 permitido a qualquer pessoa copiar e distribuir c\u00f3pias sem altera\u00e7\u00f5es deste documento de licen\u00e7a, sendo vedada, entretanto, sua modifica\u00e7\u00e3o. \n[Esta \u00e9 a primeira vers\u00e3o da GPL Menor a ser lan\u00e7ada. Ela tamb\u00e9m constitui a sucessora da Licen\u00e7a P\u00fablica de Biblioteca do GNU, da\u00ed o n\u00famero 2.1. da vers\u00e3o]. \nIntrodu\u00e7\u00e3o\nAs licen\u00e7as da maioria dos softwares s\u00e3o elaboradas para suprimir sua liberdade de compartilh\u00e1-los e modific\u00e1-los. As Licen\u00e7as P\u00fablicas do GNU, ao contr\u00e1rio, t\u00eam o objetivo de assegurar sua liberdade para compartilhar e modificar softwares livres para garantir que o software seja livre para todos os seus usu\u00e1rios. \nA presente Licen\u00e7a P\u00fablica Geral Menor se aplica a alguns pacotes de software especialmente designados - normalmente bibliotecas - da Free Software Foundation e de outros autores que decidam utiliz\u00e1-la. Voc\u00ea pode utiliz\u00e1-la tamb\u00e9m, mas recomendamos que antes, voc\u00ea analise cuidadosamente se esta licen\u00e7a, ou a Licen\u00e7a P\u00fablica Geral comum, \u00e9 a melhor estrat\u00e9gia a ser adotada em cada caso espec\u00edfico, tendo como base as explica\u00e7\u00f5es abaixo. \nQuando falamos de software livre, estamos nos referindo a liberdade de uso e n\u00e3o de gratuidade de pre\u00e7o. Nossas Licen\u00e7as P\u00fablicas Gerais s\u00e3o elaboradas para garantir que voc\u00ea tenha liberdade para distribuir c\u00f3pias de software livre (cobrando por esse servi\u00e7o se voc\u00ea assim o desejar); que voc\u00ea receba c\u00f3digo-fonte ou o obtenha, se quiser; que voc\u00ea modifique o software e utilize partes dele em novos programas livres; e que voc\u00ea tenha ci\u00eancia de que pode praticar estes atos. \nA fim de proteger seus direitos, \u00e9 necess\u00e1rio que fa\u00e7amos restri\u00e7\u00f5es que pro\u00edbam distribu\u00eddores de negar estes direitos a voc\u00ea ou de pedir que voc\u00ea que renuncie a eles. Essas restri\u00e7\u00f5es se traduzem em determinadas responsabilidades que voc\u00ea dever\u00e1 assumir, se vier a distribuir c\u00f3pias da biblioteca ou modific\u00e1-la. \nPor exemplo, se voc\u00ea distribuir c\u00f3pias da biblioteca, seja gratuitamente ou mediante um valor, ter\u00e1 de conceder a seus receptores todos os direitos que estamos concedendo a voc\u00ea. Voc\u00ea ter\u00e1 de garantir que eles, tamb\u00e9m, recebam ou possam obter o c\u00f3digo-fonte. Se voc\u00ea ligar outro c\u00f3digo com a biblioteca, voc\u00ea deve fornecer os arquivos-objeto completos para os receptores, de modo que eles possam lig\u00e1-los novamente com a biblioteca ap\u00f3s terem feito mudan\u00e7as na biblioteca e recompilado a mesma. E voc\u00ea ter\u00e1 de exibir a eles esses termos, para que eles conhe\u00e7am seus direitos. \nProtegemos seus direitos atrav\u00e9s de um m\u00e9todo que envolve dois passos: (1) estabelecemos direitos autorais sobre a biblioteca e (2) oferecemos a voc\u00ea esta licen\u00e7a, que d\u00e1 a voc\u00ea permiss\u00e3o para copiar, distribuir e/ou modificar a biblioteca. \nPara proteger cada distribuidor, queremos deixar bem claro que n\u00e3o h\u00e1 nenhuma garantia para a biblioteca livre. Al\u00e9m disso, se a biblioteca for modificada por algu\u00e9m e passada adiante, os receptores devem saber que o que eles t\u00eam n\u00e3o \u00e9 a vers\u00e3o original, de modo que a reputa\u00e7\u00e3o do autor original n\u00e3o ser\u00e1 afetada por problemas que possam ser introduzidos por outros. \nPor fim, as patentes de software representam uma amea\u00e7a constante para a exist\u00eancia de qualquer programa livre. Queremos assegurar que uma empresa n\u00e3o possa efetivamente restringir os usu\u00e1rios de um programa livre por ter obtido uma licen\u00e7a restritiva de um titular de direitos de patente. Por isso, insistimos que qualquer licen\u00e7a de patente obtida para alguma vers\u00e3o da biblioteca seja consistente com a plena liberdade de uso, especificada nesta licen\u00e7a. \nA maior parte dos softwares do GNU, incluindo algumas bibliotecas, est\u00e1 coberta pela Licen\u00e7a P\u00fablica Geral comum do GNU. A presente Licen\u00e7a P\u00fablica Geral Menor do GNU se aplica a determinadas bibliotecas designadas, sendo bastante diferente da Licen\u00e7a P\u00fablica Geral comum. Usamos esta licen\u00e7a para determinadas bibliotecas, a fim de permitir a liga\u00e7\u00e3o dessas bibliotecas a programas n\u00e3o-livres. \nQuando um programa \u00e9 ligado a uma biblioteca, seja estaticamente ou usando uma biblioteca compartilhada, essa combina\u00e7\u00e3o das duas \u00e9 em termos legais uma obra combinada, uma deriva\u00e7\u00e3o da biblioteca original. Por essa raz\u00e3o, a Licen\u00e7a P\u00fablica Geral comum somente permite essa liga\u00e7\u00e3o se a combina\u00e7\u00e3o como um todo atender a seus crit\u00e9rios de liberdade. A Licen\u00e7a P\u00fablica Geral Menor permite crit\u00e9rios mais flex\u00edveis para a liga\u00e7\u00e3o de outros c\u00f3digos \u00e0 biblioteca. \nChamamos esta licen\u00e7a de Licen\u00e7a P\u00fablica Geral \"Menor\" porque ela faz Menos para proteger a liberdade do usu\u00e1rio do que a Licen\u00e7a P\u00fablica Geral comum. Ela tamb\u00e9m oferece a outros desenvolvedores de software livre uma Menor vantagem na competi\u00e7\u00e3o com com programas n\u00e3o livres. Essas desvantagens s\u00e3o o motivo pelo qual usamos a Licen\u00e7a P\u00fablica Geral comum para muitas bibliotecas. Por outro lado, em determinadas circunst\u00e2ncias especiais, a licen\u00e7a Menor oferece vantagens. \nPor exemplo, em raras ocasi\u00f5es, pode existir uma necessidade especial de se incentivar a mais ampla utiliza\u00e7\u00e3o poss\u00edvel de uma determinada biblioteca, para que ela se torne um padr\u00e3o de fato. Para conseguir isso, deve-se permitir que programas n\u00e3o-livres utilizem a biblioteca. Um caso mais freq\u00fcente ocorre quando uma biblioteca livre desempenha a mesma fun\u00e7\u00e3o de bibliotecas n\u00e3o-livres amplamente usadas. Nesse caso, existem poucas vantagens em restringir a biblioteca livre somente para software livre, ent\u00e3o utilizamos a Licen\u00e7a P\u00fablica Geral Menor. \nEm outros casos, a permiss\u00e3o para usar uma determinada biblioteca em programas n\u00e3o-livres possibilita que um maior n\u00famero de pessoas use um amplo leque de softwares livres. Por exemplo, a permiss\u00e3o para usar a Biblioteca C do GNU permite que muito mais pessoas usem todo o sistema operacional do GNU, bem como sua variante, o sistema operacional do GNU/Linux. \nMesmo protegendo a liberdade dos usu\u00e1rios em menor grau, a Licen\u00e7a P\u00fablica Geral Menor garante ao usu\u00e1rio de um programa que esteja ligado \u00e0 Biblioteca a liberdade e os meios para executar o programa, usando uma vers\u00e3o modificada da Biblioteca. \nSeguem abaixo os termos e condi\u00e7\u00f5es exatos para a c\u00f3pia, distribui\u00e7\u00e3o e modifica\u00e7\u00e3o. Preste muita aten\u00e7\u00e3o \u00e0 diferen\u00e7a entre uma \"obra baseada na biblioteca\" e uma \"obra que usa a biblioteca\". O primeiro cont\u00e9m c\u00f3digo que \u00e9 derivado da biblioteca, enquanto o segundo tem de ser combinado \u00e0 biblioteca para que possa ser executado. \nLICEN\u00c7A P\u00daBLICA GERAL MENOR DO GNU\nTERMOS E CONDI\u00c7\u00d5ES PARA C\u00d3PIA, DISTRIBUI\u00c7\u00c3O E MODIFICA\u00c7\u00c3O \n\n\nO presente Contrato de Licen\u00e7a se aplica a qualquer biblioteca de software ou a outro programa que contenha um aviso colocado pelo titular dos direitos autorais ou outra parte autorizada, informando que ela pode ser distribu\u00edda nos termos desta Licen\u00e7a P\u00fablica Geral Menor (tamb\u00e9m denominada \"esta Licen\u00e7a\"). Cada licenciado doravante ser\u00e1 denominado \"voc\u00ea\". \nUma \"biblioteca\" significa uma cole\u00e7\u00e3o de fun\u00e7\u00f5es de software e/ou dados preparados, de forma a serem convenientemente ligados com programas de aplica\u00e7\u00e3o (que usam algumas dessas fun\u00e7\u00f5es e dados) para formar execut\u00e1veis. \nO termo \"Biblioteca\", abaixo, refere-se a qualquer biblioteca de software ou obra que tenha sido distribu\u00edda de acordo com esses termos. Uma \"obra baseada na Biblioteca\" significa tanto a Biblioteca como qualquer obra derivada, nos termos da legisla\u00e7\u00e3o autoral: isto \u00e9, uma obra contendo a Biblioteca ou parte dela, seja sem altera\u00e7\u00f5es ou com modifica\u00e7\u00f5es e/ou traduzida diretamente para outra linguagem. (Doravante, o termo \"modifica\u00e7\u00e3o\" inclui, sem reservas, o termo \"tradu\u00e7\u00e3o\"). \nO c\u00f3digo-fonte de uma obra significa o formato preferencial da obra para que sejam feitas modifica\u00e7\u00f5es na mesma. Para uma biblioteca, o c\u00f3digo-fonte completo significa todo o c\u00f3digo fonte para todos os m\u00f3dulos contidos na mesma, al\u00e9m de quaisquer arquivos de defini\u00e7\u00e3o de interface associados, al\u00e9m dos scripts utilizados para controlar a compila\u00e7\u00e3o e a instala\u00e7\u00e3o da biblioteca.\nOutras atividades que n\u00e3o a c\u00f3pia, distribui\u00e7\u00e3o e modifica\u00e7\u00e3o n\u00e3o s\u00e3o cobertas por esta Licen\u00e7a; elas est\u00e3o fora de seu escopo. O ato de executar um programa usando a Biblioteca n\u00e3o tem restri\u00e7\u00f5es, e o resultado gerado a partir desse programa encontra-se coberto somente se seu conte\u00fado constituir uma obra baseada na Biblioteca (independente do uso da Biblioteca em uma ferramenta para escrev\u00ea-lo). Na verdade, isto depender\u00e1 daquilo que a Biblioteca faz e o que o programa que usa a biblioteca faz. \n\n\nVoc\u00ea pode copiar e distribuir c\u00f3pias sem altera\u00e7\u00f5es do c\u00f3digo-fonte completo da Biblioteca ao receb\u00ea-lo, em qualquer meio ou m\u00eddia, desde que publique, ostensiva e adequadamente, um aviso de direitos autorais (ou copyright) apropriado e uma notifica\u00e7\u00e3o sobre a exonera\u00e7\u00e3o de garantias; mantenha intactas as informa\u00e7\u00f5es, avisos ou notifica\u00e7\u00f5es referentes a esta Licen\u00e7a e \u00e0 aus\u00eancia de qualquer garantia; e distribua uma c\u00f3pia desta Licen\u00e7a junto com a Biblioteca. \nVoc\u00ea poder\u00e1 cobrar um valor pelo ato f\u00edsico de transferir uma c\u00f3pia, e voc\u00ea pode oferecer, se quiser, a prote\u00e7\u00e3o de uma garantia em troca de um valor. \n\n\n\nVoc\u00ea pode modificar sua c\u00f3pia ou c\u00f3pias da Biblioteca ou qualquer parte dela, formando, assim, uma obra baseada na Biblioteca, bem como copiar e distribuir essas modifica\u00e7\u00f5es ou obra, em conformidade com a Cl\u00e1usula 1 acima, desde que atenda, ainda, a todas as seguintes condi\u00e7\u00f5es: \n\n\n\n\t\nO obra modificada tem de ser, por si s\u00f3, uma biblioteca de software. \nVoc\u00ea tem de fazer com que os arquivos modificados contenham avisos, em destaque, de que voc\u00ea modificou os arquivos e a data de qualquer modifica\u00e7\u00e3o. \nVoc\u00ea tem de fazer com que a obra como um todo seja licenciada, sem nenhum custo, a todos os terceiros, de acordo com esta Licen\u00e7a.\nSe um dispositivo, na Biblioteca modificada, se referir a uma fun\u00e7\u00e3o ou a uma tabela de dados a ser fornecida por um programa de aplica\u00e7\u00e3o que usa esse dispositivo, outro que n\u00e3o um argumento transmitido quando o dispositivo \u00e9 invocado, nesse caso, voc\u00ea ter\u00e1 de fazer um esfor\u00e7o de boa-f\u00e9 para assegurar que, no caso de uma aplica\u00e7\u00e3o que n\u00e3o forne\u00e7a essa fun\u00e7\u00e3o ou tabela, o dispositivo ainda assim opere, e ir\u00e1 realizar qualquer parte de sua finalidade que permanecer significativa.\n\n(Por exemplo, uma fun\u00e7\u00e3o de uma biblioteca para computar ra\u00edzes quadradas tem uma finalidade que \u00e9 completamente bem definida independentemente da aplica\u00e7\u00e3o. Por essa raz\u00e3o, a letra d, da Cl\u00e1usula 2, exige que qualquer fun\u00e7\u00e3o ou tabela fornecida pela aplica\u00e7\u00e3o, usada por essa fun\u00e7\u00e3o, tem de ser opcional: se a aplica\u00e7\u00e3o n\u00e3o fornec\u00ea-la, a fun\u00e7\u00e3o de ra\u00edzes quadradas dever\u00e1 ainda assim computar ra\u00edzes quadradas). \nEssas exig\u00eancias se aplicam \u00e0 obra modificada como um todo. Se partes identific\u00e1veis dessa obra n\u00e3o forem derivadas da Biblioteca e puderem ser consideradas razoavelmente, em si, como obras independentes e separadas, nesse caso, esta Licen\u00e7a e seus termos n\u00e3o se aplicar\u00e3o a essas partes quando voc\u00ea distribui-las como obras separadas. Todavia, quando voc\u00ea distribuir essas mesmas partes como partes de um todo, que por si seja uma obra baseada na Biblioteca, a distribui\u00e7\u00e3o desse todo dever\u00e1 ser realizada de acordo com esta Licen\u00e7a, cujas respectivas permiss\u00f5es para outros licenciados extendem-se \u00e0 integralidade deste todo, dessa forma, a toda e qualquer parte, independentemente de quem a escreveu. \nAssim, esta cl\u00e1usula n\u00e3o tem a inten\u00e7\u00e3o de afirmar direitos ou contestar os seus direitos sobre uma obra escrita inteiramente por voc\u00ea; a inten\u00e7\u00e3o \u00e9, antes, de exercer o direito de controlar a distribui\u00e7\u00e3o de obras derivadas ou obras coletivas baseadas na Biblioteca. \nAl\u00e9m disto, a simples agrega\u00e7\u00e3o de outra obra, que n\u00e3o seja baseada na Biblioteca, \u00e0 Biblioteca (ou a uma obra baseada na Biblioteca) em um volume de meio ou m\u00eddia de armazenamento ou distribui\u00e7\u00e3o, n\u00e3o inclui esta outra obra no \u00e2mbito desta Licen\u00e7a. \n\n\nVoc\u00ea poder\u00e1 optar por aplicar os termos da Licen\u00e7a P\u00fablica Geral do GNU ao inv\u00e9s desta Licen\u00e7a, para uma determinada c\u00f3pia da Biblioteca. Para tanto, voc\u00ea dever\u00e1 alterar todos os avisos ou notifica\u00e7\u00f5es que se refiram a esta Licen\u00e7a, para que eles se refiram \u00e0 Licen\u00e7a P\u00fablica Geral comum do GNU, vers\u00e3o 2, ao inv\u00e9s desta Licen\u00e7a. (Se uma vers\u00e3o mais nova do que a vers\u00e3o 2 da Licen\u00e7a P\u00fablica Geral comum do GNU tiver sido gerada, ent\u00e3o voc\u00ea poder\u00e1 especificar essa vers\u00e3o, se preferir). N\u00e3o fa\u00e7a nenhuma outra altera\u00e7\u00e3o nesses avisos ou notifica\u00e7\u00f5es. \nUma vez que essa altera\u00e7\u00e3o tenha sido feita em uma determinada c\u00f3pia, ela \u00e9 irrevers\u00edvel para esta c\u00f3pia, passando a Licen\u00e7a P\u00fablica Geral comum do GNU a ser aplicada para todas as c\u00f3pias e obras derivadas subseq\u00fcentes, feitas a partir dessa c\u00f3pia. \nEssa op\u00e7\u00e3o \u00e9 \u00fatil quando voc\u00ea desejar copiar parte do c\u00f3digo da Biblioteca em um programa que n\u00e3o seja uma biblioteca. \n\n\nVoc\u00ea poder\u00e1 copiar e distribuir a Biblioteca (ou uma parte ou obra derivada dela, de acordo com a Cl\u00e1usula 2) em c\u00f3digo-objeto ou formato execut\u00e1vel, sob as Cl\u00e1usulas 1 e 2 acima, desde que inclua todo o c\u00f3digo-fonte correspondente, pass\u00edvel de leitura pela m\u00e1quina, que deve ser distribu\u00eddo sob os termos das Cl\u00e1usulas 1 e 2 acima, em um meio ou m\u00eddia costumeiramente utilizado para o interc\u00e2mbio de software. \nSe a distribui\u00e7\u00e3o do c\u00f3digo-objeto for feita pela oferta de acesso para c\u00f3pia a partir de um local designado, ent\u00e3o a permiss\u00e3o de acesso equivalente para copiar o c\u00f3digo-fonte a partir do mesmo local atende a exig\u00eancia de distribui\u00e7\u00e3o do c\u00f3digo-fonte, mesmo que terceiros n\u00e3o sejam levados a copiar a fonte junto com o c\u00f3digo-objeto. \n\n\nUm programa que n\u00e3o contenha nenhum derivativo de qualquer parte da Biblioteca, mas que seja desenhado para operar com a Biblioteca ao ser compilado ou ligado a ela, \u00e9 chamado de uma \"obra que usa a Biblioteca\". Essa obra, isoladamente, n\u00e3o \u00e9 uma obra derivada da Biblioteca e, portanto, fica de fora do \u00e2mbito desta Licen\u00e7a. \n\nEntretanto, a liga\u00e7\u00e3o de uma \"obra que usa a Biblioteca\" com a Biblioteca constitui um execut\u00e1vel que \u00e9 um derivado da Biblioteca (pois cont\u00e9m partes da Biblioteca), e n\u00e3o uma \"obra que usa a Biblioteca\". O execut\u00e1vel \u00e9, assim, coberto por esta Licen\u00e7a. A Cl\u00e1usula 6 estabelece os termos para a distribui\u00e7\u00e3o desses execut\u00e1veis. \nQuando uma \"obra que usa a Biblioteca\" usar material de um arquivo de cabe\u00e7alho que \u00e9 parte da Biblioteca, o c\u00f3digo-objeto para a obra poder\u00e1 ser uma obra derivada da Biblioteca, mesmo que o c\u00f3digo-fonte n\u00e3o o seja. Para que isto seja verdade, \u00e9 especialmente importante se a obra pode ser ligada sem a Biblioteca, ou se a obra \u00e9, em si mesma, uma biblioteca. O limiar para que isto seja verdade n\u00e3o \u00e9 definido com precis\u00e3o pela lei. \nSe um arquivo-objeto usar somente par\u00e2metros num\u00e9ricos, layouts e accessors da estrutura de dados, bem como pequenas macros e pequenas fun\u00e7\u00f5es inline (dez linhas ou menos de extens\u00e3o), ent\u00e3o o uso do arquivo-objeto n\u00e3o \u00e9 restrito, independente de ser ele legalmente uma obra derivada. (Execut\u00e1veis contendo este c\u00f3digo-objeto mais partes da Biblioteca continuam submetidos aos termos da Cl\u00e1usula 6). \nDo contr\u00e1rio, se a obra for um derivado da Biblioteca, voc\u00ea poder\u00e1 distribuir o c\u00f3digo objeto da obra sob os termos da Cl\u00e1usula 6. Quaisquer execut\u00e1veis contendo esta obra tamb\u00e9m se submetmem \u00e0 Cl\u00e1usula 6, estejam ou n\u00e3o diretamente ligados \u00e0 Biblioteca em si. \n\n\nComo exce\u00e7\u00e3o \u00e0 Cl\u00e1usula acima, voc\u00ea tamb\u00e9m pode combinar ou ligar uma \"obra que usa a Biblioteca\" \u00e0 Biblioteca para produzir uma obra contendo partes da Biblioteca e distribu\u00ed-la de acordo com os termos de sua escolha, desde que estes termos permitam modifica\u00e7\u00f5es na obra para uso pr\u00f3prio por parte do cliente e engenharia reversa para depura\u00e7\u00e3o dessas modifica\u00e7\u00f5es. \nEm cada c\u00f3pia da obra, voc\u00ea ter\u00e1 de colocar um aviso, em destaque, de que a Biblioteca foi usada e que ela e seu uso est\u00e3o cobertos por esta Licen\u00e7a. Voc\u00ea dever\u00e1 fornecer uma c\u00f3pia desta Licen\u00e7a. Se, durante a execu\u00e7\u00e3o, a obra exibir avisos ou notifica\u00e7\u00f5es de direitos autorais (ou copyright), voc\u00ea ter\u00e1 de incluir, entre eles, o aviso de direitos autorais (ou copyright) referente \u00e0 Biblioteca, bem como uma refer\u00eancia direcionando o usu\u00e1rio para a c\u00f3pia desta Licen\u00e7a. Al\u00e9m disso, voc\u00ea dever tomar ao menos uma das seguintes provid\u00eancias: \n\n\n\nIncluir na obra todo o c\u00f3digo-fonte da Biblioteca, pass\u00edvel de leitura pela m\u00e1quina, incluindo quaisquer modifica\u00e7\u00f5es que foram usadas na obra (as quais devem ser distribu\u00eddas conforme as Cl\u00e1usulas 1 e 2 acima); e, se a obra for um execut\u00e1vel ligado \u00e0 Biblioteca, com toda a \"obra que usa a Bilblioteca\" pass\u00edvel de leitura pela m\u00e1quina, como c\u00f3digo-objeto e/ou c\u00f3digo-fonte, de modo que o usu\u00e1rio possa modificar a biblioteca e, depois, religar para produzir um execut\u00e1vel modificado contendo a Biblioteca modificada. (Fica entendido que o usu\u00e1rio que modificar o conte\u00fado dos arquivos de defini\u00e7\u00f5es da Biblioteca n\u00e3o necessariamente ser\u00e1 capaz de recompilar a aplica\u00e7\u00e3o para usar as defini\u00e7\u00f5es modificadas). \n\n\n\n\nUsar um mecanismo adequado de biblioteca compartilhada para ligar com a Biblioteca. Um mecanismo adequado \u00e9 aquele que (a) usa, ao tempo da execu\u00e7\u00e3o, uma c\u00f3pia da biblioteca j\u00e1 presente no sistema do computador do usu\u00e1rio, e (2) ir\u00e1 operar adequadamente com uma vers\u00e3o modificada da biblioteca, se o usu\u00e1rio instalar uma, desde que a vers\u00e3o modificada seja compat\u00edvel com a interface da vers\u00e3o com a qual a obra foi feita. \n\n\n\n\nIncluir na obra uma oferta por escrito, v\u00e1lida por pelo menos 3 anos, oferencendo ao mesmo usu\u00e1rio os materiais especificados na letra \"a\" da Cl\u00e1usula 6 acima, por um custo n\u00e3o superior ao custo de fazer esta distribui\u00e7\u00e3o. \n\n\n\n\nSe a distribui\u00e7\u00e3o da obra for feita com a permiss\u00e3o de acesso para copiar, a partir de um local designado, oferecer acesso equivalente para copiar os materiais acima especificados, a partir do mesmo local. \n\n\nCertificar-se se o usu\u00e1rio j\u00e1 recebeu uma c\u00f3pia desses materiais ou de que voc\u00ea j\u00e1 enviou uma c\u00f3pia a esse usu\u00e1rio.\n\nPara um execut\u00e1vel, o formato exigido da \"obra que usa a Biblioteca\" deve incluir quaisquer dados e programas utilit\u00e1rios necess\u00e1rios para reprodu\u00e7\u00e3o do execut\u00e1vel a partir dele. Todavia, como uma exce\u00e7\u00e3o especial, os materiais a serem distribu\u00eddos n\u00e3o necessitam incluir algo que seja normalmente distribu\u00eddo (tanto no formato fonte quanto bin\u00e1rio) com os componentes mais importantes (compilador, kernel, e assim por diante) do sistema operacional no qual execut\u00e1vel \u00e9 executado, a menos que esse componente, em si, acompanhe o execut\u00e1vel.\nPode ocorrer que essa exig\u00eancia contradiga as restri\u00e7\u00f5es da licen\u00e7a de outras bibliotecas propriet\u00e1rias que normalmente n\u00e3o acompanham o sistema operacional. Essa contradi\u00e7\u00e3o significa que voc\u00ea n\u00e3o pode utilizar ambas e a Biblioteca juntas em um execut\u00e1vel distribu\u00eddo por voc\u00ea. \n\n\n\nVoc\u00ea pode colocar dispositivos da biblioteca que sejam uma obra baseada na Biblioteca lado-a-lado em uma \u00fanica biblioteca junto com outros dispositivos de bibliotecas, desde que uma distribui\u00e7\u00e3o separada da obra baseada na Biblioteca e dos outros dispositivos de bibliotecas seja, de outro modo, permitida e desde que voc\u00ea tome uma das seguintes provid\u00eancias: \n\n\n\n\n\n\nIncluir na biblioteca combinada uma c\u00f3pia dessa obra baseada na Biblioteca sem a combina\u00e7\u00e3o com quaisquer outros dispositivos de biblioteca. Essa c\u00f3pia tem de ser distribu\u00edda de acordo com as condi\u00e7\u00f5es das cl\u00e1usulas acima. \n\n\n\n\nJunto com a biblioteca combinada, fornecer um aviso, em destaque, sobre o fato de que parte dela \u00e9 uma obra baseada na Biblioteca, e explicando onde encontrar o formato n\u00e3o combinado incluso dessa mesma obra. \n\n\n\n\n\n\nVoc\u00ea n\u00e3o poder\u00e1 copiar, modificar, sublicenciar, ligar, ou distribuir a Biblioteca, exceto conforme expressamente disposto nesta Licen\u00e7a. Qualquer tentativa de, de outro modo, copiar, modificar, sublicenciar, ligar ou distribuir a Biblioteca \u00e9 inv\u00e1lida, e automaticamente terminar\u00e1 seus direitos sob esta Licen\u00e7a. Todavia, terceiros que tiverem recebido c\u00f3pias ou direitos de voc\u00ea, de acordo com esta Licen\u00e7a, n\u00e3o ter\u00e3o seus direitos rescindidos, enquanto estes terceiros mantiverem o seu pleno cumprimento. \n\n\n\n\nVoc\u00ea n\u00e3o \u00e9 obrigado a aceitar esta Licen\u00e7a, uma vez que voc\u00ea n\u00e3o a assinou. Entretanto, nada mais concede a voc\u00ea permiss\u00e3o para modificar ou distribuir a Biblioteca ou suas obras derivadas. Esses atos s\u00e3o proibidos por lei se voc\u00ea n\u00e3o aceitar esta Licen\u00e7a. Portanto, ao modificar ou distribuir a Biblioteca (ou qualquer obra baseada na Biblioteca), voc\u00ea manifesta sua aceita\u00e7\u00e3o desta Licen\u00e7a para faz\u00ea-lo, bem como de todos os seus termos e condi\u00e7\u00f5es para c\u00f3pia, distribui\u00e7\u00e3o ou modifica\u00e7\u00e3o da Biblioteca ou obras nela baseadas. \n\n\n\n\nA cada vez que voc\u00ea redistribuir a Biblioteca (ou qualquer obra nela baseada), o receptor automaticamente recebe uma licen\u00e7a do licenciante original para copiar, distribuir, ligar ou modificar a Biblioteca, sujeito a estes respectivos termos e condi\u00e7\u00f5es. Voc\u00ea n\u00e3o poder\u00e1 impor quaisquer restri\u00e7\u00f5es adicionais ao exerc\u00edcio, pelos receptores, dos direitos concedidos por este instrumento. Voc\u00ea n\u00e3o tem responsabilidade de promover o cumprimento desta licen\u00e7a por parte de terceiros. \n\n\n\nSe, como resultado de uma senten\u00e7a judicial ou alega\u00e7\u00e3o de viola\u00e7\u00e3o de patente, ou por qualquer outro motivo (n\u00e3o restrito \u00e0s quest\u00f5es de patentes), forem impostas a voc\u00ea condi\u00e7\u00f5es (tanto atrav\u00e9s de mandado judicial, contrato ou qualquer outra forma) que contradigam as condi\u00e7\u00f5es desta Licen\u00e7a, voc\u00ea n\u00e3o estar\u00e1 desobrigado quanto \u00e0s condi\u00e7\u00f5es desta Licen\u00e7a. Se voc\u00ea n\u00e3o puder atuar como distribuidor de modo a satisfazer simultaneamente suas obriga\u00e7\u00f5es sob esta licen\u00e7a e quaisquer outras obriga\u00e7\u00f5es pertinentes, ent\u00e3o, como conseq\u00fc\u00eancia, voc\u00ea n\u00e3o poder\u00e1 distribuir a Biblioteca de nenhuma forma. Por exemplo, se uma licen\u00e7a sob uma patente n\u00e3o permite a redistribui\u00e7\u00e3o por parte de todos aqueles que tiverem recebido c\u00f3pias, direta ou indiretamente de voc\u00ea, sem o pagamento de royalties, ent\u00e3o, a \u00fanica forma de cumprir tanto com esta exig\u00eancia quanto com esta licen\u00e7a ser\u00e1 deixar de distribuir, por completo, a Biblioteca. \nSe qualquer parte desta Cl\u00e1usula for considerada inv\u00e1lida ou n\u00e3o execut\u00e1vel, sob qualquer circunst\u00e2ncia espec\u00edfica, o restante da cl\u00e1usula dever\u00e1 continuar a ser aplicado e a cl\u00e1usula, como um todo, dever\u00e1 ser aplicada em outras circunst\u00e2ncias. \nEsta cl\u00e1usula n\u00e3o tem a finalidade de induzir voc\u00ea a infringir quaisquer patentes ou direitos de propriedade, nem de contestar a validade de quaisquer reivindica\u00e7\u00f5es deste tipo; a \u00fanica finalidade desta cl\u00e1usula \u00e9 proteger a integridade do sistema de distribui\u00e7\u00e3o do software livre, o qual \u00e9 implementado mediante pr\u00e1ticas de licen\u00e7as p\u00fablicas. Muitas pessoas t\u00eam feito generosas contribui\u00e7\u00f5es \u00e0 ampla gama de software distribu\u00eddo atrav\u00e9s desse sistema, confiando na aplica\u00e7\u00e3o consistente deste sistema; cabe ao autor/doador decidir se deseja distribuir software atrav\u00e9s de qualquer outro sistema e um licenciado n\u00e3o pode impor esta escolha. \nEsta cl\u00e1usula visa deixar absolutamente claro o que se acredita ser uma conseq\u00fc\u00eancia do restante desta Licen\u00e7a. \n\n\n\nSe a distribui\u00e7\u00e3o e/ou uso da Biblioteca for restrito em determinados pa\u00edses, tanto por patentes ou por interfaces protegidas por direito autoral, o titular original dos direitos autorais que colocar a Biblioteca sob esta Licen\u00e7a poder\u00e1 acrescentar uma limita\u00e7\u00e3o geogr\u00e1fica de distribui\u00e7\u00e3o expl\u00edcita excluindo esses pa\u00edses, de modo que a distribui\u00e7\u00e3o seja permitida somente nos pa\u00edses ou entre os pa\u00edses que n\u00e3o foram exclu\u00eddos dessa forma. Nesse caso, esta Licen\u00e7a passa a incorporar a limita\u00e7\u00e3o como se esta tivesse sido escrita no corpo desta Licen\u00e7a \n\n\n\nA Free Software Foundation [Funda\u00e7\u00e3o Software Livre] poder\u00e1 de tempos em tempos publicar vers\u00f5es revisadas e/ou novas da Licen\u00e7a P\u00fablica Geral Menor. Essas novas vers\u00f5es ser\u00e3o semelhantes em esp\u00edrito \u00e0 presente vers\u00e3o, podendo, por\u00e9m, ter diferen\u00e7as nos detalhes, para tratar de novos problemas ou preocupa\u00e7\u00f5es. \nCada vers\u00e3o recebe um n\u00famero distinto de vers\u00e3o. Se a Biblioteca especificar um n\u00famero de vers\u00e3o desta Licen\u00e7a, aplic\u00e1vel \u00e0 Biblioteca ou a \"qualquer vers\u00e3o posterior\", voc\u00ea ter\u00e1 a op\u00e7\u00e3o de seguir os termos e condi\u00e7\u00f5es tanto daquela vers\u00e3o como de qualquer vers\u00e3o posterior publicada pela Free Software Foundation. Se a Biblioteca n\u00e3o especificar um n\u00famero de licen\u00e7a da vers\u00e3o, voc\u00ea poder\u00e1 escolher qualquer vers\u00e3o j\u00e1 publicada pela Free Software Foundation. \n\n\n\nSe voc\u00ea desejar incorporar partes da Biblioteca em outros programas livres cujas condi\u00e7\u00f5es de distribui\u00e7\u00e3o sejam incompat\u00edveis com estas, escreva ao autor para solicitar permiss\u00e3o. Para software cujos direitos autorais pertencerem \u00e0 Free Software Foundation, escreva \u00e0 Funda\u00e7\u00e3o; algumas vezes, fazemos exce\u00e7\u00f5es nesse sentido. Nossa decis\u00e3o ser\u00e1 guiada pelos dois objetivos de preservar a condi\u00e7\u00e3o livre de todos os derivados de nosso software livre e de promover o compartilhamento e reutiliza\u00e7\u00e3o de softwares, de modo geral. \n\n\n\nEXCLUS\u00c3O DE GARANTIA \n\n\n\nCOMO A BIBLIOTECA \u00c9 LICENCIADA SEM CUSTO, N\u00c3O H\u00c1 NENHUMA GARANTIA PARA A BIBLIOTECA, NO LIMITE PERMITIDO PELA LEI APLIC\u00c1VEL. EXCETO QUANDO DE OUTRA FORMA ESTABELECIDO POR ESCRITO, OS TITULARES DOS DIREITOS AUTORAIS E/OU OUTRAS PARTES FORNECEM A BIBLIOTECA \"NO ESTADO EM QUE SE ENCONTRA\", SEM NENHUMA GARANTIA DE QUALQUER TIPO, TANTO EXPRESSA COMO IMPL\u00cdCITA, INCLUINDO, DENTRE OUTRAS, AS GARANTIAS IMPL\u00cdCITAS DE COMERCIABILIDADE E ADEQUA\u00c7\u00c3O PARA UMA FINALIDADE ESPEC\u00cdFICA. O RISCO INTEGRAL QUANTO \u00c0 QUALIDADE E DESEMPENHO DA BIBLIOTECA \u00c9 ASSUMIDO POR VOC\u00ca. CASO A BIBLIOTECA CONTENHA DEFEITOS, VOC\u00ca ARCAR\u00c1 COM OS CUSTOS DE TODOS OS SERVI\u00c7OS, REPAROS OU CORRE\u00c7\u00d5ES NECESS\u00c1RIAS. \n\n\n\n\nEM NENHUMA CIRCUNST\u00c2NCIA, A MENOS QUE EXIGIDO PELA LEI APLIC\u00c1VEL OU ACORDADO POR ESCRITO, QUALQUER TITULAR DE DIREITOS AUTORAIS OU QUALQUER OUTRA PARTE QUE POSSA MODIFICAR E/OU REDISTRIBUIR A BIBLIOTECA, CONFORME PERMITIDO ACIMA, SER\u00c1 RESPONS\u00c1VEL PARA COM VOC\u00ca POR DANOS, INCLUINDO ENTRE OUTROS QUAISQUER DANOS GERAIS, ESPECIAIS, FORTUITOS OU EMERGENTES, ADVINDOS DO USO OU IMPOSSIBILIDADE DE USO DA BIBLIOTECA (INCLUINDO, ENTRE OUTROS, PERDA DE DADOS, DADOS SENDO GERADOS DE FORMA IMPRECISA, PERDAS SOFRIDAS POR VOC\u00ca OU TERCEIROS OU A IMPOSSIBILIDADE DA BIBLIOTECA DE OPERAR COM QUALQUER OUTRO SOFTWARE), MESMO QUE ESSE TITULAR, OU OUTRA PARTE, TENHA SIDO AVISADO SOBRE A POSSIBILIDADE DESSES DANOS. \n\n\n\nFINAL DOS TERMOS E CONDI\u00c7\u00d5ES \nComo Aplicar Estes Termos para Suas Novas Bibliotecas\nSe voc\u00ea desenvolver uma nova biblioteca e quiser que ela seja da maior utilidade poss\u00edvel para o p\u00fablico, n\u00f3s recomendamos fazer dela um software livre que todos possam redistribuir e modificar. Voc\u00ea pode fazer isto permitindo a redistribui\u00e7\u00e3o sob estes termos (ou, alternativamente, sob os termos da Licen\u00e7a P\u00fablica Geral comum)\nPara fazer isto, anexe as notifica\u00e7\u00f5es seguintes \u00e0 biblioteca. \u00c9 mais seguro anex\u00e1-las ao come\u00e7o de cada arquivo-fonte, de modo a transmitir do modo mais eficiente a exclus\u00e3o de garantia; e cada arquivo deve ter ao menos a linha de \"direitos autorais reservados\" e uma indica\u00e7\u00e3o de onde a notifica\u00e7\u00e3o completa se encontra.\n\n\nDireitos Autorais Reservados (c) \nEsta biblioteca \u00e9 software livre; voc\u00ea pode redistribu\u00ed-la e/ou modific\u00e1-la sob os termos da Licen\u00e7a P\u00fablica Geral \n\nMenor do GNU conforme publicada pela Free Software Foundation; tanto a vers\u00e3o 2.1 da Licen\u00e7a, ou (a seu crit\u00e9rio) qualquer vers\u00e3o posterior.\nEsta biblioteca \u00e9 distribu\u00eddo na expectativa de que seja \u00fatil, por\u00e9m, SEM NENHUMA GARANTIA; nem mesmo a garantia impl\u00edcita de COMERCIABILIDADE OU ADEQUA\u00c7\u00c3O A UMA FINALIDADE ESPEC\u00cdFICA. Consulte a Licen\u00e7a P\u00fablica Geral Menor do GNU para mais detalhes. \nVoc\u00ea deve ter recebido uma c\u00f3pia da Licen\u00e7a P\u00fablica Geral Menor do GNU junto com esta biblioteca; se n\u00e3o, escreva para a Free Software Foundation, Inc., no endere\u00e7o 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA. \nInclua tamb\u00e9m informa\u00e7\u00f5es sobre como contatar voc\u00ea por correio eletr\u00f4nico e por meio postal.\n\n\n\n\nVoc\u00ea tamb\u00e9m pode solicitar a seu empregador (se voc\u00ea for um programador) ou a sua institui\u00e7\u00e3o acad\u00eamica, se for o caso, para assinar uma \"ren\u00fancia de direitos autorais\" sobre a biblioteca, se necess\u00e1rio. Segue um exemplo; altere os nomes: \n\n\n\n\nA Yoyodyne Ltda., neste ato, renuncia a todos eventuais direitos autorais sobre a biblioteca 'Frob' (uma biblioteca para ajustar fechaduras), escrita por James Random Hacker. \n\n1\u00ba de abril de 1990, Ty Coon, Presidente \nIsto \u00e9 tudo!", + "json": "cc-lgpl-2.1-pt.json", + "yaml": "cc-lgpl-2.1-pt.yml", + "html": "cc-lgpl-2.1-pt.html", + "license": "cc-lgpl-2.1-pt.LICENSE" + }, + { + "license_key": "cc-nc-sampling-plus-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cc-nc-sampling-plus-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Noncommercial Sampling Plus 1.0 \nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License.\n\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\n\"Original Author\" means the individual or entity who created the Work.\n\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant & Restrictions. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below on the conditions as stated below:\n\nNoncommercial use only. You may not exercise any of the rights granted to You in this license in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works.\nNoncommercial re-creativity permitted. You may create and reproduce Derivative Works, provided that:\nthe Derivative Work(s) constitute a good-faith partial or recombined usage employing \"sampling,\" \"collage,\" \"mash-up,\" or other comparable artistic technique, whether now known or hereafter devised, that is highly transformative of the original, as appropriate to the medium, genre, and market niche; and\n\nYour Derivative Work(s) must only make a partial use of the original Work, or if You choose to use the original Work as a whole, You must either use the Work as an insubstantial portion of Your Derivative Work(s) or transform it into something substantially different from the original Work. In the case of a musical Work and/or audio recording, the mere synchronization (\"synching\") of the Work with a moving image shall not be considered a transformation of the Work into something substantially different.\n\nYou may distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission, any Derivative Work(s) authorized under this License.\n\nNoncommercial sharing of verbatim copies permitted.\n\nYou may reproduce the Work, incorporate the Work into one or more Collective Works, and reproduce the Work as incorporated in the Collective Works. You may distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including or incorporated in Collective Works.\n\nAttribution and Notice.\n\nIf You distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; to the extent reasonably practicable, provide the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work or a Derivative Work, unless such Uniform Resource Identifier does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, provide a credit identifying the use of the Work in the Derivative Work (e.g., \"Remix of the Work by Original Author,\" or \"Inclusion of a portion of the Work by Original Author in collage\"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\n\nYou may distribute, publicly display, publicly perform or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work or Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access of use of the Work in a manner inconsistent with the terms of this License. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. Upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work or Collective Work any reference to such Licensor or the Original Author, as requested.\n\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.\n\n4. Disclaimer\n\nUNLESS SPECIFIED OTHERWISE BY THE PARTIES IN A SEPARATE WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE.\n\n5. Limitation on Liability.\n\nIN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n6. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 4, 5, 6, and 7 will survive any termination of this License.\n\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n\n7. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\n\nEach time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\n\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\n\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements, or representations with respect to the Work, and with respect to the subject matter hereof, not specified above. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.", + "json": "cc-nc-sampling-plus-1.0.json", + "yaml": "cc-nc-sampling-plus-1.0.yml", + "html": "cc-nc-sampling-plus-1.0.html", + "license": "cc-nc-sampling-plus-1.0.LICENSE" + }, + { + "license_key": "cc-pd", + "category": "Public Domain", + "spdx_license_key": "CC-PDDC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The person or persons who have associated work with this document (the \"Dedicator\" or \"Certifier\") hereby either (a) certifies that, to the best of his knowledge, the work of authorship identified is in the public domain of the country from which the work is published, or (b) hereby dedicates whatever copyright the dedicators holds in the work of authorship identified below (the \"Work\") to the public domain. A certifier, moreover, dedicates any copyright interest he may have in the associated work, and for these purposes, is described as a \"dedicator\" below.\n\nA certifier has taken reasonable steps to verify the copyright status of this work. Certifier recognizes that his good faith efforts may not shield him from liability if in fact the work certified is not in the public domain.\n\nDedicator makes this dedication for the benefit of the public at large and to the detriment of the Dedicator's heirs and successors. Dedicator intends this dedication to be an overt act of relinquishment in perpetuity of all present and future rights under copyright law, whether vested or contingent, in the Work. Dedicator understands that such relinquishment of all rights includes the relinquishment of all rights to enforce (by lawsuit or otherwise) those copyrights in the Work.\n\nDedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived.", + "json": "cc-pd.json", + "yaml": "cc-pd.yml", + "html": "cc-pd.html", + "license": "cc-pd.LICENSE" + }, + { + "license_key": "cc-pdm-1.0", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-cc-pdm-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Public Domain Mark 1.0\nNo Copyright\n\n This work has been identified as being free of known restrictions under copyright law, including all related and neighboring rights.\n\n\n You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission. See Other Information below.\n\n\nOther Information\n\n The work may not be free of known copyright restrictions in all jurisdictions.\n\n Persons may have other rights in or related to the work, such as patent or trademark rights, and others may have rights in how the work is used, such as publicity or privacy rights.\n\n In some jurisdictions moral rights of the author may persist beyond the term of copyright. These rights may include the right to be identified as the author and the right to object to derogatory treatments.\n\n Unless expressly stated otherwise, the person who identified the work makes no warranties about the work, and disclaims liability for all uses of the work, to the fullest extent permitted by applicable law.\n\n When using or citing the work, you should not imply endorsement by the author or the person who identified the work.", + "json": "cc-pdm-1.0.json", + "yaml": "cc-pdm-1.0.yml", + "html": "cc-pdm-1.0.html", + "license": "cc-pdm-1.0.LICENSE" + }, + { + "license_key": "cc-sampling-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cc-sampling-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " Sampling 1.0 \nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License.\n\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\n\"Original Author\" means the individual or entity who created the Work.\n\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant & Restrictions. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below on the conditions as stated below:\n\nRe-creativity. You may create and reproduce Derivative Works, provided that\nthe Derivative Work(s) constitute a good-faith partial or recombined usage employing \"sampling,\" \"collage,\" \"mash-up,\" or other comparable artistic technique, whether now known or hereafter devised, that is highly transformative of the original, as appropriate to the medium, genre, and market niche; and\n\nYour Derivative Work(s) must only make a partial use of the original Work, or if you choose to use the original Work as a whole, you must either use the Work as an insubstantial portion of Your Derivative Work(s) or transform it into something substantially different from the original Work. In the case of a musical Work and/or audio recording, the mere synchronization (\"synching\") of the Work with a moving image shall not be considered a transformation of the Work into something substantially different.\n\nYou may distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission, any Derivative Work(s).\n\nProhibition on advertising. All advertising and promotional uses are excluded from the above rights, except for advertisement and promotion of the Derivative Work(s) that you are creating from the Work and Yourself as the author thereof.\n\nAttribution and Notice. If you distribute, publicly display, publicly perform, or publicly digitally perform any Derivative Work(s), You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; to the extent reasonably practicable, provide the Uniform Resource Identifier, if any, that Licensor specifies to be associated with a Derivative Work, unless such Uniform Resource Identifier does not refer to the copyright notice or licensing information for the Work; and provide a credit identifying the use of the Work in the Derivative Work (e.g., \"Remix of the Work by Original Author,\" or \"Inclusion of a portion of the Work by Original Author in a collage\"). Such credit may be implemented in any reasonable manner; provided, however, that at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\n\nYou must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. Upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested.\n\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.\n\n4. Disclaimer\n\nUNLESS SPECIFIED OTHERWISE BY THE PARTIES IN A SEPARATE WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE.\n\n5. Limitation on Liability.\n\nIN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n6. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 4, 5, 6, and 7 will survive any termination of this License.\n\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n\n7. Miscellaneous\n\nEach time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\n\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\n\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements, or representations with respect to the subject matter here, not specified above. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.", + "json": "cc-sampling-1.0.json", + "yaml": "cc-sampling-1.0.yml", + "html": "cc-sampling-1.0.html", + "license": "cc-sampling-1.0.LICENSE" + }, + { + "license_key": "cc-sampling-plus-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cc-sampling-plus-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sampling Plus 1.0 \nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\n\n\"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License.\n\n\"Licensor\" means the individual or entity that offers the Work under the terms of this License.\n\n\"Original Author\" means the individual or entity who created the Work.\n\n\"Work\" means the copyrightable work of authorship offered under the terms of this License.\n\n\"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n\n3. License Grant & Restrictions. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below on the conditions as stated below:\n\nRe-creativity permitted. You may create and reproduce Derivative Works, provided that:\nthe Derivative Work(s) constitute a good-faith partial or recombined usage employing \"sampling,\" \"collage,\" \"mash-up,\" or other comparable artistic technique, whether now known or hereafter devised, that is highly transformative of the original, as appropriate to the medium, genre, and market niche; and\n\nYour Derivative Work(s) must only make a partial use of the original Work, or if You choose to use the original Work as a whole, You must either use the Work as an insubstantial portion of Your Derivative Work(s) or transform it into something substantially different from the original Work. In the case of a musical Work and/or audio recording, the mere synchronization (\"synching\") of the Work with a moving image shall not be considered a transformation of the Work into something substantially different.\n\nYou may distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission, any Derivative Work(s) authorized under this License.\n\nProhibition on advertising. All advertising and promotional uses are excluded from the above rights, except for advertisement and promotion of the Derivative Work(s) that You are creating from the Work and Yourself as the author thereof.\n\nNoncommercial sharing of verbatim copies permitted.\n\nYou may reproduce the Work, incorporate the Work into one or more Collective Works, and reproduce the Work as incorporated in the Collective Works. You may distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including or incorporated in Collective Works.\n\nYou may not exercise any of the rights granted to You in the paragraph immediately above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works.\n\nAttribution and Notice.\n\nIf You distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; to the extent reasonably practicable, provide the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work or a Derivative Work, unless such Uniform Resource Identifier does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, provide a credit identifying the use of the Work in the Derivative Work (e.g., \"Remix of the Work by Original Author,\" or \"Inclusion of a portion of the Work by Original Author in collage\"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\n\nYou may distribute, publicly display, publicly perform or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work or Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access of use of the Work in a manner inconsistent with the terms of this License. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. Upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work or Collective Work any reference to such Licensor or the Original Author, as requested.\n\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.\n\n4. Disclaimer\n\nUNLESS SPECIFIED OTHERWISE BY THE PARTIES IN A SEPARATE WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE.\n\n5. Limitation on Liability.\n\nIN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n6. Termination\n\nThis License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 4, 5, 6, and 7 will survive any termination of this License.\n\nSubject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n\n7. Miscellaneous\n\nEach time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\n\nEach time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\n\nIf any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\nNo term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\n\nThis License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements, or representations with respect to the Work, and with respect to the subject matter hereof, not specified above. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.", + "json": "cc-sampling-plus-1.0.json", + "yaml": "cc-sampling-plus-1.0.yml", + "html": "cc-sampling-plus-1.0.html", + "license": "cc-sampling-plus-1.0.LICENSE" + }, + { + "license_key": "cc0-1.0", + "category": "Public Domain", + "spdx_license_key": "CC0-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Creative Commons Legal Code\n\nCC0 1.0 Universal\n\n CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\n LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN\n ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS\n INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES\n REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS\n PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM\n THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED\n HEREUNDER.\n\nStatement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator\nand subsequent owner(s) (each and all, an \"owner\") of an original work of\nauthorship and/or a database (each, a \"Work\").\n\nCertain owners wish to permanently relinquish those rights to a Work for\nthe purpose of contributing to a commons of creative, cultural and\nscientific works (\"Commons\") that the public can reliably and without fear\nof later claims of infringement build upon, modify, incorporate in other\nworks, reuse and redistribute as freely as possible in any form whatsoever\nand for any purposes, including without limitation commercial purposes.\nThese owners may contribute to the Commons to promote the ideal of a free\nculture and the further production of creative, cultural and scientific\nworks, or to gain reputation or greater distribution for their Work in\npart through the use and efforts of others.\n\nFor these and/or other purposes and motivations, and without any\nexpectation of additional consideration or compensation, the person\nassociating CC0 with a Work (the \"Affirmer\"), to the extent that he or she\nis an owner of Copyright and Related Rights in the Work, voluntarily\nelects to apply CC0 to the Work and publicly distribute the Work under its\nterms, with knowledge of his or her Copyright and Related Rights in the\nWork and the meaning and intended legal effect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\nprotected by copyright and related or neighboring rights (\"Copyright and\nRelated Rights\"). Copyright and Related Rights include, but are not\nlimited to, the following:\n\n i. the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n ii. moral rights retained by the original author(s) and/or performer(s);\niii. publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n iv. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n v. rights protecting the extraction, dissemination, use and reuse of data\n in a Work;\n vi. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation\n thereof, including any amended or successor version of such\n directive); and\nvii. other similar, equivalent or corresponding rights throughout the\n world based on applicable law or treaty, and any national\n implementations thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention\nof, applicable law, Affirmer hereby overtly, fully, permanently,\nirrevocably and unconditionally waives, abandons, and surrenders all of\nAffirmer's Copyright and Related Rights and associated claims and causes\nof action, whether now known or unknown (including existing as well as\nfuture claims and causes of action), in the Work (i) in all territories\nworldwide, (ii) for the maximum duration provided by applicable law or\ntreaty (including future time extensions), (iii) in any current or future\nmedium and for any number of copies, and (iv) for any purpose whatsoever,\nincluding without limitation commercial, advertising or promotional\npurposes (the \"Waiver\"). Affirmer makes the Waiver for the benefit of each\nmember of the public at large and to the detriment of Affirmer's heirs and\nsuccessors, fully intending that such Waiver shall not be subject to\nrevocation, rescission, cancellation, termination, or any other legal or\nequitable action to disrupt the quiet enjoyment of the Work by the public\nas contemplated by Affirmer's express Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason\nbe judged legally invalid or ineffective under applicable law, then the\nWaiver shall be preserved to the maximum extent permitted taking into\naccount Affirmer's express Statement of Purpose. In addition, to the\nextent the Waiver is so judged Affirmer hereby grants to each affected\nperson a royalty-free, non transferable, non sublicensable, non exclusive,\nirrevocable and unconditional license to exercise Affirmer's Copyright and\nRelated Rights in the Work (i) in all territories worldwide, (ii) for the\nmaximum duration provided by applicable law or treaty (including future\ntime extensions), (iii) in any current or future medium and for any number\nof copies, and (iv) for any purpose whatsoever, including without\nlimitation commercial, advertising or promotional purposes (the\n\"License\"). The License shall be deemed effective as of the date CC0 was\napplied by Affirmer to the Work. Should any part of the License for any\nreason be judged legally invalid or ineffective under applicable law, such\npartial invalidity or ineffectiveness shall not invalidate the remainder\nof the License, and in such case Affirmer hereby affirms that he or she\nwill not (i) exercise any of his or her remaining Copyright and Related\nRights in the Work or (ii) assert any associated claims and causes of\naction with respect to the Work, in either case contrary to Affirmer's\nexpress Statement of Purpose.\n\n4. Limitations and Disclaimers.\n\n a. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n b. Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties of\n title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy, or\n the present or absence of errors, whether or not discoverable, all to\n the greatest extent permissible under applicable law.\n c. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person's Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the\n Work.\n d. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to\n this CC0 or use of the Work.", + "json": "cc0-1.0.json", + "yaml": "cc0-1.0.yml", + "html": "cc0-1.0.html", + "license": "cc0-1.0.LICENSE" + }, + { + "license_key": "cclrc", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-cclrc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CCLRC License for CCLRC Software forming part of the Climate Model Output \nRewriter Tools Package.\n\nThe Council for the Central Laboratory of the Research Councils (CCLRC)\ngrants any person who obtains a copy of this software (the Software),\nfree of charge, the non-exclusive, worldwide right to use, copy, modify,\ndistribute and sub-license the use of the Software on the terms and\nconditions appearing below:\n\n1)The Software may be used only as part of the Climate Data Analysis\nTools Package, made available to users free of charge.\n\n2)The CCLRC copyright notice and any other notice placed by CCLRC on the\nSoftware must be reproduced on every copy of the Software, and on every\nDerived Work. A Derived Work means any modification of, or enhancement\nor improvement to, any of the Software, and any software or other work\ndeveloped or derived from any of the Software.\n\n3)CCLRC gives no warranty and makes no representation in relation to\nthe Software. The Licensee and anyone to whom the Licensee makes the\nSoftware or any Derived Work available, use the Software at their own\nrisk.\n\n4)All warranties, conditions, terms, undertakings and obligations on the\npart of CCLRC, implied by statute, common law, custom, trade usage,\ncourse of dealing or in any other way are excluded to the fullest extent\npermitted by law.\n\n5)Subject to condition 6, CCLRC will not be liable for:\n a)any loss of profits, loss of revenue, loss or corruption\n of data, loss of contracts or opportunity, loss of savings or third\n party claims (in each case whether direct or indirect);\n b)any indirect loss or damage arising out of or in\n connection with the Software;\n c)any direct loss or damage arising out of, or in connection\n with, the Software in each case, whether that loss arises as a result of\n CCLRC's negligence, or in any other way, even if CCLRC has been\n advised of the possibility of that loss arising, or if it was within\n CCLRC's contemplation.\n\n6)None of these conditions limits or excludes CCLRC's liability for\ndeath or personal injury caused by its negligence or for any fraud, or\nfor any sort of liability that, by law, cannot be limited or excluded.\n\n7)These conditions set out the entire agreement relating to the\nSoftware. The licensee acknowledges that it has not relied on any\nwarranty, representation, statement, agreement or undertaking given by\nCCLRC, and waives any claim in respect of any of the same.\n\n8)The rights granted above will cease immediately on any breach of these\nconditions and the licensee will destroy all copies of the Software and\nany Derived Work in its control or possession. Conditions 3, 4, 5, 6, 7,\n8, 9 and 10 will survive termination and continue indefinitely.\n\n9)The licence and these conditions are governed by, and are to be\nconstrued in accordance with, English law. The English Courts will have\nexclusive jurisdiction to deal with any dispute which has arisen or may\narise out of or in connection with the Software, the rights granted and\nthese conditions, except that CCLRC may bring proceedings for an\ninjunction in any jurisdiction.\n\n10)If the whole or any part of these conditions are void or\nunenforceable in any jurisdiction, the other provisions, and the rest of\nthe void or unenforceable provision, will continue in force in that\njurisdiction, and the validity and enforceability of that provision in\nany other jurisdiction will not be affected.", + "json": "cclrc.json", + "yaml": "cclrc.yml", + "html": "cclrc.html", + "license": "cclrc.LICENSE" + }, + { + "license_key": "ccrc-1.0", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Common Cure Rights Commitment\nVersion 1.0\n \nBefore filing or continuing to prosecute any legal proceeding or claim\n(other than a Defensive Action) arising from termination of a Covered\nLicense, we commit to extend to the person or entity ('you') accused\nof violating the Covered License the following provisions regarding\ncure and reinstatement, taken from GPL version 3. As used here, the\nterm 'this License' refers to the specific Covered License being\nenforced.\n\n However, if you cease all violation of this License, then your\n license from a particular copyright holder is reinstated (a)\n provisionally, unless and until the copyright holder explicitly\n and finally terminates your license, and (b) permanently, if the\n copyright holder fails to notify you of the violation by some\n reasonable means prior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\n reinstated permanently if the copyright holder notifies you of the\n violation by some reasonable means, this is the first time you\n have received notice of violation of this License (for any work)\n from that copyright holder, and you cure the violation prior to 30\n days after your receipt of the notice.\n\nWe intend this Commitment to be irrevocable, and binding and\nenforceable against us and assignees of or successors to our\ncopyrights.\n\nDefinitions\n\n'Covered License' means the GNU General Public License, version 2\n(GPLv2), the GNU Lesser General Public License, version 2.1\n(LGPLv2.1), or the GNU Library General Public License, version 2\n(LGPLv2), all as published by the Free Software Foundation.\n\n'Defensive Action' means a legal proceeding or claim that We bring\nagainst you in response to a prior proceeding or claim initiated by\nyou or your affiliate.\n\n'We' means each contributor to this repository as of the date of\ninclusion of this file, including subsidiaries of a corporate\ncontributor.\n\nThis work is available under a Creative Commons Attribution-ShareAlike\n4.0 International license (https://creativecommons.org/licenses/by-sa/4.0/).", + "json": "ccrc-1.0.json", + "yaml": "ccrc-1.0.yml", + "html": "ccrc-1.0.html", + "license": "ccrc-1.0.LICENSE" + }, + { + "license_key": "cddl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "CDDL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 \n\n1. Definitions.\n\n1.1. Contributor means each individual or entity that creates or contributes to the creation of Modifications.\n\n1.2. Contributor Version means the combination of the Original Software, prior Modifications used by a Contributor (if any), and the Modifications made by that particular Contributor.\n\n1.3. Covered Software means (a) the Original Software, or (b) Modifications, or (c) the combination of files containing Original Software with files containing Modifications, in each case including portions thereof.\n\n1.4. Executable means the Covered Software in any form other than Source Code.\n\n1.5. Initial Developer means the individual or entity that first makes Original Software available under this License.\n\n1.6. Larger Work means a work which combines Covered Software or portions thereof with code not governed by the terms of this License.\n\n1.7. License means this document.\n\n1.8. Licensable means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein.\n\n1.9. Modifications means the Source Code and Executable form of any of the following: A. Any file that results from an addition to, deletion from or modification of the contents of a file containing Original Software or previous Modifications; B. Any new file that contains any part of the Original Software or previous Modification; or C. Any new file that is contributed or otherwise made available under the terms of this License.\n\n1.10. Original Software means the Source Code and Executable form of computer software code that is originally released under this License.\n\n1.11. Patent Claims means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor.\n\n1.12. Source Code means (a) the common form of computer software code in which modifications are made and (b) associated documentation included in or with such code.\n\n1.13. You (or Your) means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, You includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, control means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2. License Grants.\n\n 2.1. The Initial Developer Grant. Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, the Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license:\n\n(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer, to use, reproduce, modify, display, perform, sublicense and distribute the Original Software (or portions thereof), with or without Modifications, and/or as part of a Larger Work; and\n\n(b) under Patent Claims infringed by the making, using or selling of Original Software, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Software (or portions thereof);\n\n (c) The licenses granted in Sections 2.1(a) and (b) are effective on the date Initial Developer first distributes or otherwise makes the Original Software available to a third party under the terms of this License;\n\n (d) Notwithstanding Section 2.1(b) above, no patent license is granted: (1) for code that You delete from the Original Software, or (2) for infringements caused by: (i) the modification of the Original Software, or (ii) the combination of the Original Software with other software or devices.\n\n2.2. Contributor Grant. Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license:\n\n(a) under intellectual property rights (other than patent or trademark) Licensable by Contributor to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof), either on an unmodified basis, with other Modifications, as Covered Software and/or as part of a Larger Work; and\n\n(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: (1) Modifications made by that Contributor (or portions thereof); and (2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination).\n\n(c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first distributes or otherwise makes the Modifications available to a third party.\n\n(d) Notwithstanding Section 2.2(b) above, no patent license is granted: (1) for any code that Contributor has deleted from the Contributor Version; (2) for infringements caused by: (i) third party modifications of Contributor Version, or (ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or (3) under Patent Claims infringed by Covered Software in the absence of Modifications made by that Contributor.\n\n3. Distribution Obligations.\n\n3.1. Availability of Source Code. Any Covered Software that You distribute or otherwise make available in Executable form must also be made available in Source Code form and that Source Code form must be distributed only under the terms of this License. You must include a copy of this License with every copy of the Source Code form of the Covered Software You distribute or otherwise make available. You must inform recipients of any such Covered Software in Executable form as to how they can obtain such Covered Software in Source Code form in a reasonable manner on or through a medium customarily used for software exchange.\n\n3.2. Modifications. The Modifications that You create or to which You contribute are governed by the terms of this License. You represent that You believe Your Modifications are Your original creation(s) and/or You have sufficient rights to grant the rights conveyed by this License.\n\n3.3. Required Notices. You must include a notice in each of Your Modifications that identifies You as the Contributor of the Modification. You may not remove or alter any copyright, patent or trademark notices contained within the Covered Software, or any notices of licensing or any descriptive text giving attribution to any Contributor or the Initial Developer.\n\n3.4. Application of Additional Terms. You may not offer or impose any terms on any Covered Software in Source Code form that alters or restricts the applicable version of this License or the recipients rights hereunder. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, you may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer.\n\n3.5. Distribution of Executable Versions. You may distribute the Executable form of the Covered Software under the terms of this License or under the terms of a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable form does not attempt to limit or alter the recipients rights in the Source Code form from the rights set forth in this License. If You distribute the Covered Software in Executable form under a different license, You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer.\n\n3.6. Larger Works. You may create a Larger Work by combining Covered Software with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Software.\n\n4. Versions of the License.\n\n4.1. New Versions. Sun Microsystems, Inc. is the initial license steward and may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Except as provided in Section 4.3, no one other than the license steward has the right to modify this License.\n\n4.2. Effect of New Versions. You may always continue to use, distribute or otherwise make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. If the Initial Developer includes a notice in the Original Software prohibiting it from being distributed or otherwise made available under any subsequent version of the License, You must distribute and make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. Otherwise, You may also choose to use, distribute or otherwise make the Covered Software available under the terms of any subsequent version of the License published by the license steward.\n\n4.3. Modified Versions. When You are an Initial Developer and You want to create a new license for Your Original Software, You may create and use a modified version of this License if You: (a) rename the license and remove any references to the name of the license steward (except to note that the license differs from this License); and (b) otherwise make it clear that the license contains terms which differ from this License.\n\n5. DISCLAIMER OF WARRANTY. COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n6. TERMINATION.\n\n6.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.\n\n6.2. If You assert a patent infringement claim (excluding declaratory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You assert such claim is referred to as Participant) alleging that the Participant Software (meaning the Contributor Version where the Participant is a Contributor or the Original Software where the Participant is the Initial Developer) directly or indirectly infringes any patent, then any and all rights granted directly or indirectly to You by such Participant, the Initial Developer (if the Initial Developer is not the Participant) and all Contributors under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively and automatically at the expiration of such 60 day notice period, unless if within such 60 day period You withdraw Your claim with respect to the Participant Software against such Participant either unilaterally or pursuant to a written agreement with Participant.\n\n6.3. In the event of termination under Sections 6.1 or 6.2 above, all end user licenses that have been validly granted by You or any distributor hereunder prior to termination (excluding licenses granted to You by any distributor) shall survive termination.\n\n7. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n8. U.S. GOVERNMENT END USERS. The Covered Software is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software (as that term is defined at 48 C.F.R. 252.227-7014(a)(1)) and commercial computer software documentation as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software with only those rights set forth herein. This U.S. Government Rights clause is in lieu of, and supersedes, any other FAR, DFAR, or other clause or provision that addresses Government rights in computer software under this License.\n\n9. MISCELLANEOUS. This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by the law of the jurisdiction specified in a notice contained within the Original Software (except to the extent applicable law, if any, provides otherwise), excluding such jurisdictions conflict-of-law provisions. Any litigation relating to this License shall be subject to the jurisdiction of the courts located in the jurisdiction and venue specified in a notice contained within the Original Software, with the losing party responsible for costs, including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. You agree that You alone are responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries) when You use, distribute or otherwise make available any Covered Software.\n\n10. RESPONSIBILITY FOR CLAIMS. As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\nNOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) The code released under the CDDL shall be governed by the laws of the State of California (excluding conflict-of-law provisions). Any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California and the state courts of the State of California, with venue lying in Santa Clara County, California.", + "json": "cddl-1.0.json", + "yaml": "cddl-1.0.yml", + "html": "cddl-1.0.html", + "license": "cddl-1.0.LICENSE" + }, + { + "license_key": "cddl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "CDDL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)Version 1.1\n\n1. Definitions.\n\n1.1. \"Contributor\" means each individual or entity that creates or contributes to the creation of Modifications.\n1.2. \"Contributor Version\" means the combination of the Original Software, prior Modifications used by a Contributor (if any), and the Modifications made by that particular Contributor.\n1.3. \"Covered Software\" means (a) the Original Software, or (b) Modifications, or (c) the combination of files containing Original Software with files containing Modifications, in each case including portions thereof.\n1.4. \"Executable\" means the Covered Software in any form other than Source Code.\n1.5. \"Initial Developer\" means the individual or entity that first makes Original Software available under this License.\n1.6. \"Larger Work\" means a work which combines Covered Software or portions thereof with code not governed by the terms of this License.\n1.7. \"License\" means this document.\n1.8. \"Licensable\" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein.\n1.9. \"Modifications\" means the Source Code and Executable form of any of the following:\nA. Any file that results from an addition to, deletion from or modification of the contents of a file containing Original Software or previous Modifications;\nB. Any new file that contains any part of the Original Software or previous Modification; or\nC. Any new file that is contributed or otherwise made available under the terms of this License.\n1.10. \"Original Software\" means the Source Code and Executable form of computer software code that is originally released under this License.\n1.11. \"Patent Claims\" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor.\n1.12. \"Source Code\" means (a) the common form of computer software code in which modifications are made and (b) associated documentation included in or with such code.\n1.13. \"You\" (or \"Your\") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, \"You\" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, \"control\" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n2. License Grants.\n\n2.1. The Initial Developer Grant.\nConditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, the Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license:\n(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer, to use, reproduce, modify, display, perform, sublicense and distribute the Original Software (or portions thereof), with or without Modifications, and/or as part of a Larger Work; and\n(b) under Patent Claims infringed by the making, using or selling of Original Software, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Software (or portions thereof).\n(c) The licenses granted in Sections 2.1(a) and (b) are effective on the date Initial Developer first distributes or otherwise makes the Original Software available to a third party under the terms of this License.\n(d) Notwithstanding Section 2.1(b) above, no patent license is granted: (1) for code that You delete from the Original Software, or (2) for infringements caused by: (i) the modification of the Original Software, or (ii) the combination of the Original Software with other software or devices.\n2.2. Contributor Grant.\nConditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license:\n(a) under intellectual property rights (other than patent or trademark) Licensable by Contributor to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof), either on an unmodified basis, with other Modifications, as Covered Software and/or as part of a Larger Work; and\n(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: (1) Modifications made by that Contributor (or portions thereof); and (2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination).\n(c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first distributes or otherwise makes the Modifications available to a third party.\n(d) Notwithstanding Section 2.2(b) above, no patent license is granted: (1) for any code that Contributor has deleted from the Contributor Version; (2) for infringements caused by: (i) third party modifications of Contributor Version, or (ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or (3) under Patent Claims infringed by Covered Software in the absence of Modifications made by that Contributor.\n3. Distribution Obligations.\n\n3.1. Availability of Source Code.\nAny Covered Software that You distribute or otherwise make available in Executable form must also be made available in Source Code form and that Source Code form must be distributed only under the terms of this License. You must include a copy of this License with every copy of the Source Code form of the Covered Software You distribute or otherwise make available. You must inform recipients of any such Covered Software in Executable form as to how they can obtain such Covered Software in Source Code form in a reasonable manner on or through a medium customarily used for software exchange.\n3.2. Modifications.\nThe Modifications that You create or to which You contribute are governed by the terms of this License. You represent that You believe Your Modifications are Your original creation(s) and/or You have sufficient rights to grant the rights conveyed by this License.\n3.3. Required Notices.\nYou must include a notice in each of Your Modifications that identifies You as the Contributor of the Modification. You may not remove or alter any copyright, patent or trademark notices contained within the Covered Software, or any notices of licensing or any descriptive text giving attribution to any Contributor or the Initial Developer.\n3.4. Application of Additional Terms.\nYou may not offer or impose any terms on any Covered Software in Source Code form that alters or restricts the applicable version of this License or the recipients' rights hereunder. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, you may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer.\n3.5. Distribution of Executable Versions.\nYou may distribute the Executable form of the Covered Software under the terms of this License or under the terms of a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable form does not attempt to limit or alter the recipient's rights in the Source Code form from the rights set forth in this License. If You distribute the Covered Software in Executable form under a different license, You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer.\n3.6. Larger Works.\nYou may create a Larger Work by combining Covered Software with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Software.\n4. Versions of the License.\n\n4.1. New Versions.\nOracle is the initial license steward and may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Except as provided in Section 4.3, no one other than the license steward has the right to modify this License.\n4.2. Effect of New Versions.\nYou may always continue to use, distribute or otherwise make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. If the Initial Developer includes a notice in the Original Software prohibiting it from being distributed or otherwise made available under any subsequent version of the License, You must distribute and make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. Otherwise, You may also choose to use, distribute or otherwise make the Covered Software available under the terms of any subsequent version of the License published by the license steward.\n4.3. Modified Versions.\nWhen You are an Initial Developer and You want to create a new license for Your Original Software, You may create and use a modified version of this License if You: (a) rename the license and remove any references to the name of the license steward (except to note that the license differs from this License); and (b) otherwise make it clear that the license contains terms which differ from this License.\n5. DISCLAIMER OF WARRANTY.\n\nCOVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n6. TERMINATION.\n\n6.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.\n6.2. If You assert a patent infringement claim (excluding declaratory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You assert such claim is referred to as \"Participant\") alleging that the Participant Software (meaning the Contributor Version where the Participant is a Contributor or the Original Software where the Participant is the Initial Developer) directly or indirectly infringes any patent, then any and all rights granted directly or indirectly to You by such Participant, the Initial Developer (if the Initial Developer is not the Participant) and all Contributors under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively and automatically at the expiration of such 60 day notice period, unless if within such 60 day period You withdraw Your claim with respect to the Participant Software against such Participant either unilaterally or pursuant to a written agreement with Participant.\n6.3. If You assert a patent infringement claim against Participant alleging that the Participant Software directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license.\n6.4. In the event of termination under Sections 6.1 or 6.2 above, all end user licenses that have been validly granted by You or any distributor hereunder prior to termination (excluding licenses granted to You by any distributor) shall survive termination.\n7. LIMITATION OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n8. U.S. GOVERNMENT END USERS.\n\nThe Covered Software is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" (as that term is defined at 48 C.F.R. \u00a7 252.227-7014(a)(1)) and \"commercial computer software documentation\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software with only those rights set forth herein. This U.S. Government Rights clause is in lieu of, and supersedes, any other FAR, DFAR, or other clause or provision that addresses Government rights in computer software under this License.\n\n9. MISCELLANEOUS.\n\nThis License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by the law of the jurisdiction specified in a notice contained within the Original Software (except to the extent applicable law, if any, provides otherwise), excluding such jurisdiction's conflict-of-law provisions. Any litigation relating to this License shall be subject to the jurisdiction of the courts located in the jurisdiction and venue specified in a notice contained within the Original Software, with the losing party responsible for costs, including, without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. You agree that You alone are responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries) when You use, distribute or otherwise make available any Covered Software.\n\n10. RESPONSIBILITY FOR CLAIMS.\n\nAs between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\nNOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)\n\nThe code released under the CDDL shall be governed by the laws of the State of California (excluding conflict-of-law provisions). Any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California and the state courts of the State of California, with venue lying in Santa Clara County, California.", + "json": "cddl-1.1.json", + "yaml": "cddl-1.1.yml", + "html": "cddl-1.1.html", + "license": "cddl-1.1.LICENSE" + }, + { + "license_key": "cdla-permissive-1.0", + "category": "Permissive", + "spdx_license_key": "CDLA-Permissive-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Community Data License Agreement \u2013 Permissive \u2013 Version 1.0\n\nThis is the Community Data License Agreement \u2013 Permissive, Version 1.0 (\"Agreement\"). Data is provided to You under this Agreement by each of the Data Providers. Your exercise of any of the rights and permissions granted below constitutes Your acceptance and agreement to be bound by the terms and conditions of this Agreement.\n\nThe benefits that each Data Provider receives from making Data available and that You receive from Data or otherwise under these terms and conditions shall be deemed sufficient consideration for the formation of this Agreement. Accordingly, Data Provider(s) and You (the \"Parties\") agree as follows:\n\nSection 1. Definitions\n\n1.1 \"Add\" means to supplement Data with Your own or someone else\u2019s Data, resulting in Your \"Additions.\" Additions do not include Results.\n\n1.2 \"Computational Use\" means Your analysis (through the use of computational devices or otherwise) or other interpretation of Data. By way of example and not limitation, \"Computational Use\" includes the application of any computational analytical technique, the purpose of which is the analysis of any Data in digital form to generate information about Data such as patterns, trends, correlations, inferences, insights and attributes.\n\n1.3 \"Data\" means the information (including copyrightable information, such as images or text), collectively or individually, whether created or gathered by a Data Provider or an Entity acting on its behalf, to which rights are granted under this Agreement.\n\n1.4 \"Data Provider\" means any Entity (including any employee or contractor of such Entity authorized to Publish Data on behalf of such Entity) that Publishes Data under this Agreement prior to Your Receiving it.\n\n1.5 \"Enhanced Data\" means the subset of Data that You Publish and that is composed of (a) Your Additions and/or (b) Modifications to Data You have received under this Agreement.\n\n1.6 \"Entity\" means any natural person or organization that exists under the laws of the jurisdiction in which it is organized, together with all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (a) the power, directly or indirectly, to cause the direction or management of such entity, whether by contract or otherwise, (b) the ownership of more than fifty percent (50%) of the outstanding shares or securities, (c) the beneficial ownership of such entity or, (d) the ability to appoint, whether by agreement or right, the majority of directors of an Entity.\n\n1.7 \"Modify\" means to delete, erase, correct or re-arrange Data, resulting in \"Modifications.\" Modifications do not include Results.\n\n1.8 \"Publish\" means to make all or a subset of Data (including Your Enhanced Data) available in any manner which enables its Use, including by providing a copy on physical media or remote access. For any form of Entity, that is to make the Data available to any individual who is not employed by that Entity or engaged as a contractor or agent to perform work on that Entity\u2019s behalf. A \"Publication\" occurs each time You Publish Data.\n\n1.9 \"Receive\" or \"Receives\" means to have been given access to Data, locally or remotely.\n\n1.10 \"Results\" means the outcomes or outputs that You obtain from Your Computational Use of Data. Results shall not include more than a de minimis portion of the Data on which the Computational Use is based.\n\n1.11 \"Sui Generis Database Rights\" means rights, other than copyright, resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other equivalent rights anywhere in the world.\n\n1.12 \"Use\" means using Data (including accessing, copying, studying, reviewing, adapting, analyzing, evaluating, or making Computational Use of it), either by machines or humans, or a combination of both.\n\n1.13 \"You\" or \"Your\" means any Entity that Receives Data under this Agreement.\n\nSection 2. Right and License to Use and to Publish\n\n2.1 Subject to the conditions set forth in Section 3 of this Agreement, Data Provider(s) hereby grant(s) to You a worldwide, non-exclusive, irrevocable (except as provided in Section 5) right to: (a) Use Data; and (b) Publish Data.\n\n2.2 To the extent that the Data or the coordination, selection or arrangement of Data is protected or protectable under copyright, Sui Generis Database Rights, or other law, Data Provider(s) further agree(s) that such Data or coordination, selection or arrangement is hereby licensed to You and to anyone else who Receives Data under this Agreement for Use and Publication, subject to the conditions set forth in Section 3 of this Agreement.\n\n2.3 Except for these rights and licenses expressly granted, no other intellectual property rights are granted or should be implied.\n\nSection 3. Conditions on Rights Granted\n\n3.1 If You Publish Data You Receive or Enhanced Data:\n\n(a) You may do so under a license of Your choice provided that You give anyone who Receives the Data from You the text of this Agreement, the name of this Agreement and/or a hyperlink or other method reasonably likely to provide a copy of the text of this Agreement; and\n\n(b) You must cause any Data files containing Enhanced Data to carry prominent notices that You have changed those files; and\n\n(c) If You Publish Data You Receive, You must preserve all credit or attribution to the Data Provider(s). Such retained credit or attribution includes any of the following to the extent they exist in Data as You have Received it: legal notices or metadata; identification of the Data Provider(s); or hyperlinks to Data to the extent it is practical to do so.\n\n3.2 You may provide additional or different license terms and conditions for use, reproduction, or distribution of that Enhanced Data, or for any combination of Data and Enhanced Data as a whole, provided that Your Use and Publication of that combined Data otherwise complies with the conditions stated in this License.\n\n3.3 You and each Data Provider agree that Enhanced Data shall not be considered a work of joint authorship by virtue of its relationship to Data licensed under this Agreement and shall not require either any obligation of accounting to or the consent of any Data Provider.\n\n3.4 This Agreement imposes no obligations or restrictions on Your Use or Publication of Results.\n\nSection 4. Data Provider(s)\u2019 Representations\n\n4.1 Each Data Provider represents that the Data Provider has exercised reasonable care, to assure that: (a) the Data it Publishes was created or generated by it or was obtained from others with the right to Publish the Data under this Agreement; and (b) Publication of such Data does not violate any privacy or confidentiality obligation undertaken by the Data Provider.\n\nSection 5. Termination\n\n5.1 All of Your rights under this Agreement will terminate, and Your right to Receive, Use or Publish the Data will be revoked or modified if You materially fail to comply with the terms and conditions of this Agreement and You do not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If Your rights under this Agreement terminate, You agree to cease Receipt, Use and Publication of Data. However, Your obligations and any rights and permissions granted by You under this Agreement relating to Data that You Published prior to such termination will continue and survive.\n\n5.2 If You institute litigation against a Data Provider or anyone else who Receives the Data (including a cross-claim in a lawsuit) based on the Data, other than a claim asserting breach of this Agreement, then any rights previously granted to You to Receive, Use and Publish Data under this Agreement will terminate as of the date such litigation is filed.\n\nSection 6. Disclaimer of Warranties and Limitation of Liability\n\n6.1 EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE DATA (INCLUDING ENHANCED DATA) IS PROVIDED 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.\n\n6.2 NEITHER YOU NOR ANY DATA PROVIDERS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE DATA OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nSection 7. Miscellaneous\n\n7.1 You agree that it is solely Your responsibility to comply with all applicable laws with regard to Your Use or Publication of Data, including any applicable privacy, data protection, security and export laws. You agree to take reasonable steps to assist a Data Provider fulfilling responsibilities to comply with applicable laws with regard to Use or Publication of Data Received hereunder.\n\n7.2 You and Data Provider(s), collectively and individually, waive and/or agree not to assert, to the extent permitted by law, any moral rights You or they hold in Data.\n\n7.3 This Agreement confers no rights or remedies upon any person or entity other than the Parties and their respective heirs, executors, successors and assigns.\n\n7.4 The Data Provider(s) reserve no right or expectation of privacy, data protection or confidentiality in any Data that they Publish under this Agreement. If You choose to Publish Data under this Agreement, You similarly do so with no reservation or expectation of any rights of privacy or confidentiality in that Data.\n\n7.5 The Community Data License Agreement workgroup under The Linux Foundation is the steward of this Agreement (\"Steward\"). No one other than the Steward has the right to modify or publish new versions of this Agreement. Each version will be given a distinguishing version number. You may Use and Publish Data Received hereunder under the terms of the version of the Agreement under which You originally Received the Data, or under the terms of any subsequent version published by the Steward.", + "json": "cdla-permissive-1.0.json", + "yaml": "cdla-permissive-1.0.yml", + "html": "cdla-permissive-1.0.html", + "license": "cdla-permissive-1.0.LICENSE" + }, + { + "license_key": "cdla-permissive-2.0", + "category": "Permissive", + "spdx_license_key": "CDLA-Permissive-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Community Data License Agreement - Permissive - Version 2.0\n\nThis is the Community Data License Agreement - Permissive, Version 2.0 (the \"agreement\"). Data Provider(s) and Data Recipient(s) agree as follows:\n\n1. Provision of the Data\n\n1.1. A Data Recipient may use, modify, and share the Data made available by Data Provider(s) under this agreement if that Data Recipient follows the terms of this agreement.\n\n1.2. This agreement does not impose any restriction on a Data Recipient's use, modification, or sharing of any portions of the Data that are in the public domain or that may be used, modified, or shared under any other legal exception or limitation.\n\n2. Conditions for Sharing Data\n\n2.1. A Data Recipient may share Data, with or without modifications, so long as the Data Recipient makes available the text of this agreement with the shared Data.\n\n3. No Restrictions on Results\n\n3.1. This agreement does not impose any restriction or obligations with respect to the use, modification, or sharing of Results.\n\n4. No Warranty; Limitation of Liability\n\n4.1. All Data Recipients receive the Data subject to the following terms:\n\nTHE DATA IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT REPRESENTATIONS, 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.\n\nNO DATA PROVIDER SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 DATA OR RESULTS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n5. Definitions\n\n5.1. \"Data\" means the material received by a Data Recipient under this agreement.\n\n5.2. \"Data Provider\" means any person who is the source of Data provided under this agreement and in reliance on a Data Recipient's agreement to its terms.\n\n5.3. \"Data Recipient\" means any person who receives Data directly or indirectly from a Data Provider and agrees to the terms of this agreement.\n\n5.4. \"Results\" means any outcome obtained by computational analysis of Data, including for example machine learning models and models' insights.", + "json": "cdla-permissive-2.0.json", + "yaml": "cdla-permissive-2.0.yml", + "html": "cdla-permissive-2.0.html", + "license": "cdla-permissive-2.0.LICENSE" + }, + { + "license_key": "cdla-sharing-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "CDLA-Sharing-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Community Data License Agreement \u2013 Sharing \u2013 Version 1.0\n\nThis is the Community Data License Agreement \u2013 Sharing, Version 1.0 (\"Agreement\"). Data is provided to You under this Agreement by each of the Data Providers. Your exercise of any of the rights and permissions granted below constitutes Your acceptance and agreement to be bound by the terms and conditions of this Agreement.\n\nThe benefits that each Data Provider receives from making Data available and that You receive from Data or otherwise under these terms and conditions shall be deemed sufficient consideration for the formation of this Agreement. Accordingly, Data Provider(s) and You (the \"Parties\") agree as follows:\n\nSection 1. Definitions\n\n1.1 \"Add\" means to supplement Data with Your own or someone else\u2019s Data, resulting in Your \"Additions.\" Additions do not include Results.\n\n1.2 \"Computational Use\" means Your analysis (through the use of computational devices or otherwise) or other interpretation of Data. By way of example and not limitation, \"Computational Use\" includes the application of any computational analytical technique, the purpose of which is the analysis of any Data in digital form to generate information about Data such as patterns, trends, correlations, inferences, insights and attributes.\n\n1.3 \"Data\" means the information (including copyrightable information, such as images or text), collectively or individually, whether created or gathered by a Data Provider or an Entity acting on its behalf, to which rights are granted under this Agreement.\n\n1.4 \"Data Provider\" means any Entity (including any employee or contractor of such Entity authorized to Publish Data on behalf of such Entity) that Publishes Data under this Agreement prior to Your Receiving it.\n\n1.5 \"Enhanced Data\" means the subset of Data that You Publish and that is composed of (a) Your Additions and/or (b) Modifications to Data You have received under this Agreement.\n\n1.6 \"Entity\" means any natural person or organization that exists under the laws of the jurisdiction in which it is organized, together with all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (a) the power, directly or indirectly, to cause the direction or management of such entity, whether by contract or otherwise, (b) the ownership of more than fifty percent (50%) of the outstanding shares or securities, (c) the beneficial ownership of such entity or, (d) the ability to appoint, whether by agreement or right, the majority of directors of an Entity.\n\n1.7 \"Ledger\" means a digital record of Data or grants of rights in Data governed by this Agreement, using any technology having functionality to record and store Data or grants, contributions, or licenses to Data governed by this Agreement.\n\n1.8 \"Modify\" means to delete, erase, correct or re-arrange Data, resulting in \"Modifications.\" Modifications do not include Results.\n\n1.9 \"Publish\" means to make all or a subset of Data (including Your Enhanced Data) available in any manner which enables its Use, including by providing a copy on physical media or remote access. For any form of Entity, that is to make the Data available to any individual who is not employed by that Entity or engaged as a contractor or agent to perform work on that Entity\u2019s behalf. A \"Publication\" occurs each time You Publish Data.\n\n1.10 \"Receive\" or \"Receives\" means to have been given access to Data, locally or remotely.\n\n1.11 \"Results\" means the outcomes or outputs that You obtain from Your Computational Use of Data. Results shall not include more than a de minimis portion of the Data on which the Computational Use is based.\n\n1.12 \"Sui Generis Database Rights\" means rights, other than copyright, resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other equivalent rights anywhere in the world.\n\n1.13 \"Use\" means using Data (including accessing, copying, studying, reviewing, adapting, analyzing, evaluating, or making Computational Use of it), either by machines or humans, or a combination of both.\n\n1.14 \"You\" or \"Your\" means any Entity that Receives Data under this Agreement.\n\nSection 2. Right and License to Use and to Publish\n\n2.1 Subject to the conditions set forth in Section 3 of this Agreement, Data Provider(s) hereby grant(s) to You a worldwide, non-exclusive, irrevocable (except as provided in Section 5) right to: (a) Use Data; and (b) Publish Data.\n\n2.2 To the extent that the Data or the coordination, selection or arrangement of Data is protected or protectable under copyright, Sui Generis Database Rights, or other law, Data Provider(s) further agree(s) that such Data or coordination, selection or arrangement is hereby licensed to You and to anyone else who Receives Data under this Agreement for Use and Publication, subject to the conditions set forth in Section 3 of this Agreement.\n\n2.3 Except for these rights and licenses expressly granted, no other intellectual property rights are granted or should be implied.\n\nSection 3. Conditions on Rights Granted\n\n3.1 If You Publish Data You Receive or Enhanced Data:\n\n(a) The Data (including the Enhanced Data) must be Published under this Agreement in accordance with this Section 3; and\n\n(b) You must cause any Data files containing Enhanced Data to carry prominent notices that You have changed those files; and\n\n(c) If You Publish Data You Receive, You must preserve all credit or attribution to the Data Provider(s). Such retained credit or attribution includes any of the following to the extent they exist in Data as You have Received it: legal notices or metadata; identification of the Data Provider(s); or hyperlinks to Data to the extent it is practical to do so.\n\n3.2 You may not restrict or deter the ability of anyone who Receives the Data (a) to Publish the Data in a publicly-accessible manner or (b) if the project has designated a Ledger for recording Data or grants of rights in Data for purposes of this Agreement, to record the Data or grants of rights in Data in the Ledger.\n\n3.3 If You Publish Data You Receive, You must do so under an unmodified form of this Agreement and include the text of this Agreement, the name of this Agreement and/or a hyperlink or other method reasonably likely to provide a copy of the text of this Agreement. You may not modify this Agreement or impose any further restrictions on the exercise of the rights granted under this Agreement, including by adding any restriction on commercial or non-commercial Use of Data (including Your Enhanced Data) or by limiting permitted Use of such Data to any particular platform, technology or field of endeavor. Notices that purport to modify this Agreement shall be of no effect.\n\n3.4 You and each Data Provider agree that Enhanced Data shall not be considered a work of joint authorship by virtue of its relationship to Data licensed under this Agreement and shall not require either any obligation of accounting to or the consent of any Data Provider.\n\n3.5 This Agreement imposes no obligations or restrictions on Your Use or Publication of Results.\n\nSection 4. Data Provider(s)\u2019 Representations\n\n4.1 Each Data Provider represents that the Data Provider has exercised reasonable care, to assure that: (a) the Data it Publishes was created or generated by it or was obtained from others with the right to Publish the Data under this Agreement; and (b) Publication of such Data does not violate any privacy or confidentiality obligation undertaken by the Data Provider.\n\nSection 5. Termination\n\n5.1 All of Your rights under this Agreement will terminate, and Your right to Receive, Use or Publish the Data will be revoked or modified if You materially fail to comply with the terms and conditions of this Agreement and You do not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If Your rights under this Agreement terminate, You agree to cease Receipt, Use and Publication of Data. However, Your obligations and any rights and permissions granted by You under this Agreement relating to Data that You Published prior to such termination will continue and survive.\n\n5.2 If You institute litigation against a Data Provider or anyone else who Receives the Data (including a cross-claim in a lawsuit) based on the Data, other than a claim asserting breach of this Agreement, then any rights previously granted to You to Receive, Use and Publish Data under this Agreement will terminate as of the date such litigation is filed.\n\nSection 6. Disclaimer of Warranties and Limitation of Liability\n\n6.1 EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE DATA (INCLUDING ENHANCED DATA) IS PROVIDED 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.\n\n6.2 NEITHER YOU NOR ANY DATA PROVIDERS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE DATA OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nSection 7. Miscellaneous\n\n7.1 You agree that it is solely Your responsibility to comply with all applicable laws with regard to Your Use or Publication of Data, including any applicable privacy, data protection, security and export laws. You agree to take reasonable steps to assist a Data Provider fulfilling responsibilities to comply with applicable laws with regard to Use or Publication of Data Received hereunder.\n\n7.2 You and Data Provider(s), collectively and individually, waive and/or agree not to assert, to the extent permitted by law, any moral rights You or they hold in Data.\n\n7.3 This Agreement confers no rights or remedies upon any person or entity other than the Parties and their respective heirs, executors, successors and assigns.\n\n7.4 The Data Provider(s) reserve no right or expectation of privacy, data protection or confidentiality in any Data that they Publish under this Agreement. If You choose to Publish Data under this Agreement, You similarly do so with no reservation or expectation of any rights of privacy or confidentiality in that Data.\n\n7.5 The Community Data License Agreement workgroup under The Linux Foundation is the steward of this Agreement (\"Steward\"). No one other than the Steward has the right to modify or publish new versions of this Agreement. Each version will be given a distinguishing version number. You may Use and Publish Data Received hereunder under the terms of the version of the Agreement under which You originally Received the Data, or under the terms of any subsequent version published by the Steward.", + "json": "cdla-sharing-1.0.json", + "yaml": "cdla-sharing-1.0.yml", + "html": "cdla-sharing-1.0.html", + "license": "cdla-sharing-1.0.LICENSE" + }, + { + "license_key": "cecill-1.0", + "category": "Copyleft", + "spdx_license_key": "CECILL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL\n ===========================================\n\n\nAvertissement\n-------------\n\nCe contrat est une licence de logiciel libre issue d'une concertation entre\nses auteurs afin que le respect de deux grands principes pr\u00e9side \u00e0 sa\nr\u00e9daction :\n - d'une part, sa conformit\u00e9 au droit fran\u00e7ais, tant au regard du droit de\n la responsabilit\u00e9 civile que du droit de la propri\u00e9t\u00e9 intellectuelle\n et de la protection qu'il offre aux auteurs et titulaires des droits\n patrimoniaux sur un logiciel.\n - d'autre part, le respect des principes de diffusion des logiciels\n libres : acc\u00e8s au code source, droits \u00e9tendus conf\u00e9r\u00e9s aux\n utilisateurs.\n\nLes auteurs de la cette licence CeCILL (Ce : CEA, C : CNRS, I : INRIA, LL :\nLogiciel Libre) sont :\n\nCommissariat \u00e0 l'Energie Atomique - CEA, \u00e9tablissement public de caract\u00e8re\nscientifique technique et industriel, dont le si\u00e8ge est situ\u00e9 31-33 rue de\nla F\u00e9d\u00e9ration, 75752 PARIS cedex 15.\n\nCentre National de la Recherche Scientifique - CNRS, \u00e9tablissement public \u00e0\ncaract\u00e8re scientifique et technologique, dont le si\u00e8ge est situ\u00e9 3 rue\nMichel-Ange 75794 Paris cedex 16.\n\nInstitut National de Recherche en Informatique et en Automatique - INRIA,\n\u00e9tablissement public \u00e0 caract\u00e8re scientifique et technologique, dont le\nsi\u00e8ge est situ\u00e9 Domaine de Voluceau, Rocquencourt, BP 105, 78153 Le Chesnay\ncedex.\n\n\nPREAMBULE\n---------\n\nCe contrat est une licence de logiciel libre dont l'objectif est de\nconf\u00e9rer aux utilisateurs la libert\u00e9 de modification et de redistribution\ndu logiciel r\u00e9gi par cette licence dans le cadre d'un mod\u00e8le de diffusion\n\u00ab open source \u00bb fond\u00e9e sur le droit fran\u00e7ais.\n\nL'exercice de ces libert\u00e9s est assorti de certains devoirs \u00e0 la charge des\nutilisateurs afin de pr\u00e9server ce statut au cours des redistributions\nult\u00e9rieures.\n\nL'accessibilit\u00e9 au code source et les droits de copie, de modification et\nde redistribution qui en d\u00e9coulent ont pour contrepartie de n'offrir aux\nutilisateurs qu'une garantie limit\u00e9e et de ne faire peser sur l'auteur du\nlogiciel, le titulaire des droits patrimoniaux et les conc\u00e9dants successifs\nqu'une responsabilit\u00e9 restreinte.\n\nA cet \u00e9gard l'attention de l'utilisateur est attir\u00e9e sur les risques\nassoci\u00e9s au chargement, \u00e0 l'utilisation, \u00e0 la modification et/ou au\nd\u00e9veloppement et \u00e0 la reproduction du logiciel par l'utilisateur \u00e9tant\ndonn\u00e9 sa sp\u00e9cificit\u00e9 de logiciel libre, qui peut le rendre complexe \u00e0\nmanipuler et qui le r\u00e9serve donc \u00e0 des d\u00e9veloppeurs et des professionnels\navertis poss\u00e9dant des connaissances informatiques approfondies. Les\nutilisateurs sont donc invit\u00e9s \u00e0 charger et tester l'ad\u00e9quation du Logiciel\n\u00e0 leurs besoins dans des conditions permettant d'assurer la s\u00e9curit\u00e9 de\nleurs syst\u00e8mes et ou de leurs donn\u00e9es et, plus g\u00e9n\u00e9ralement, \u00e0 l'utiliser\net l'exploiter dans les m\u00eame conditions de s\u00e9curit\u00e9. Ce contrat peut \u00eatre\nreproduit et diffus\u00e9 librement, sous r\u00e9serve de le conserver en l'\u00e9tat,\nsans ajout ni suppression de clauses.\n\nCe contrat est susceptible de s'appliquer \u00e0 tout logiciel dont le titulaire\ndes droits patrimoniaux d\u00e9cide de soumettre l'exploitation aux dispositions\nqu'il contient.\n\n\nArticle 1er - DEFINITIONS\n-------------------------\n\nDans ce contrat, les termes suivants, lorsqu'ils seront \u00e9crits avec une\nlettre capitale, auront la signification suivante :\n\nContrat : d\u00e9signe le pr\u00e9sent contrat de licence, ses \u00e9ventuelles versions\npost\u00e9rieures avenants et annexes.\n\nLogiciel : d\u00e9signe le logiciel sous sa forme de Code Objet et/ou de Code\nSource et le cas \u00e9ch\u00e9ant sa documentation, dans leur \u00e9tat au moment de\nl'acceptation du Contrat par le Licenci\u00e9.\n\nLogiciel Initial : d\u00e9signe le Logiciel sous sa forme de Code Source et de\nCode Objet et le cas \u00e9ch\u00e9ant sa documentation, dans leur \u00e9tat au moment de\nleur premi\u00e8re diffusion sous les termes du Contrat.\n\nLogiciel Modifi\u00e9 : d\u00e9signe le Logiciel modifi\u00e9 par au moins une\nContribution.\n\nCode Source : d\u00e9signe l'ensemble des instructions et des lignes de\nprogramme du Logiciel et auquel l'acc\u00e8s est n\u00e9cessaire en vue de modifier\nle Logiciel.\n\nCode Objet : d\u00e9signe les fichiers binaires issus de la compilation du Code\nSource.\n\nTitulaire : d\u00e9signe le d\u00e9tenteur des droits patrimoniaux d'auteur sur le\nLogiciel Initial.\n\nLicenci\u00e9(s) : d\u00e9signe le ou les utilisateur(s) du Logiciel ayant accept\u00e9 le\nContrat.\n\nContributeur : d\u00e9signe le Licenci\u00e9 auteur d'au moins une Contribution.\n\nConc\u00e9dant : d\u00e9signe le Titulaire ou toute personne physique ou morale\ndistribuant le Logiciel sous le Contrat.\n\nContributions : d\u00e9signe l'ensemble des modifications, corrections,\ntraductions, adaptations et/ou nouvelles fonctionnalit\u00e9s int\u00e9gr\u00e9es dans le\nLogiciel par tout Contributeur, ainsi que les Modules Statiques.\n\nModule : d\u00e9signe un ensemble de fichiers sources y compris leur\ndocumentation qui, une fois compil\u00e9 sous forme ex\u00e9cutable, permet de\nr\u00e9aliser des fonctionnalit\u00e9s ou services suppl\u00e9mentaires \u00e0 ceux fournis par\nle Logiciel.\n\nModule Dynamique : d\u00e9signe tout Module, cr\u00e9\u00e9 par le Contributeur,\nind\u00e9pendant du Logiciel, tel que ce Module et le Logiciel sont sous forme\nde deux ex\u00e9cutables ind\u00e9pendants qui s'ex\u00e9cutent dans un espace d'adressage\nind\u00e9pendant, l'un appelant l'autre au moment de leur ex\u00e9cution.\n\nModule Statique : d\u00e9signe tout Module cr\u00e9\u00e9 par le Contributeur et li\u00e9 au\nLogiciel par un lien statique rendant leur code objet d\u00e9pendant l'un de\nl'autre. Ce Module et le Logiciel auquel il est li\u00e9, sont regroup\u00e9s en un\nseul ex\u00e9cutable.\n\nParties : d\u00e9signe collectivement le Licenci\u00e9 et le Conc\u00e9dant.\n\nCes termes s'entendent au singulier comme au pluriel.\n\n\nArticle 2 - OBJET\n-----------------\n\nLe Contrat a pour objet la concession par le Conc\u00e9dant au Licenci\u00e9 d'une\nLicence non exclusive, transf\u00e9rable et mondiale du Logiciel telle que\nd\u00e9finie ci-apr\u00e8s \u00e0 l'article 5 pour toute la dur\u00e9e de protection des droits\nportant sur ce Logiciel.\n\n\nArticle 3 - ACCEPTATION\n-----------------------\n\n3.1. L'acceptation par le Licenci\u00e9 des termes du Contrat est r\u00e9put\u00e9e\nacquise du fait du premier des faits suivants :\n- (i) le chargement du Logiciel par tout moyen notamment par\n t\u00e9l\u00e9chargement \u00e0 partir d'un serveur distant ou par chargement \u00e0\n partir d'un support physique ;\n- (ii) le premier exercice par le Licenci\u00e9 de l'un quelconque des droits\n conc\u00e9d\u00e9s par le Contrat.\n\n3.2. Un exemplaire du Contrat, contenant notamment un avertissement relatif\naux sp\u00e9cificit\u00e9s du Logiciel, \u00e0 la restriction de garantie et \u00e0 la\nlimitation \u00e0 un usage par des utilisateurs exp\u00e9riment\u00e9s a \u00e9t\u00e9 mis \u00e0\ndisposition du Licenci\u00e9 pr\u00e9alablement \u00e0 son acceptation telle que d\u00e9finie \u00e0\nl'article 3.1 ci dessus et le Licenci\u00e9 reconna\u00eet en avoir pris\nconnaissances.\n\n\nArticle 4 - ENTREE EN VIGUEUR ET DUREE\n--------------------------------------\n\n4.1. ENTREE EN VIGUEUR\n\nLe Contrat entre en vigueur \u00e0 la date de son acceptation par le Licenci\u00e9\ntelle que d\u00e9finie en 3.1.\n\n4.2. DUREE\n\nLe Contrat produira ses effets pendant toute la dur\u00e9e l\u00e9gale de protection\ndes droits patrimoniaux portant sur le Logiciel.\n\n\nArticle 5 - ETENDUE DES DROITS CONCEDES\n---------------------------------------\n\nLe Conc\u00e9dant conc\u00e8de au Licenci\u00e9, qui accepte, les droits suivants sur le\nLogiciel pour toutes destinations et pour la dur\u00e9e du Contrat dans les\nconditions ci-apr\u00e8s d\u00e9taill\u00e9es.\n\nPar ailleurs, le Conc\u00e9dant conc\u00e8de au Licenci\u00e9 \u00e0 titre gracieux les droits\nd'exploitation du ou des brevets qu'il d\u00e9tient sur toute ou partie des\ninventions impl\u00e9ment\u00e9es dans le Logiciel.\n\n5.1. DROITS D'UTILISATION\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 utiliser le Logiciel, sans restriction quant aux\ndomaines d'application, \u00e9tant ci-apr\u00e8s pr\u00e9cis\u00e9 que cela comporte :\n- la reproduction permanente ou provisoire du Logiciel en tout ou partie\n par tout moyen et sous toute forme.\n- le chargement, l'affichage, l'ex\u00e9cution, ou le stockage du Logiciel\n sur tout support.\n- la possibilit\u00e9 d'en observer, d'en \u00e9tudier, ou d'en tester le\n fonctionnement afin de d\u00e9terminer les id\u00e9es et principes qui sont \u00e0 la\n base de n'importe quel \u00e9l\u00e9ment de ce Logiciel ; et ceci, lorsque le\n Licenci\u00e9 effectue toute op\u00e9ration de chargement, d'affichage,\n d'ex\u00e9cution, de transmission ou de stockage du Logiciel qu'il est en\n droit d'effectuer en vertu du Contrat.\n\n5.2. DROIT D'APPORTER DES CONTRIBUTIONS\n\nLe droit d'apporter des Contributions comporte le droit de traduire,\nd'adapter, d'arranger ou d'apporter toute autre modification du Logiciel et\nle droit de reproduire le Logiciel en r\u00e9sultant.\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 apporter toute Contribution au Logiciel sous\nr\u00e9serve de mentionner, de fa\u00e7on explicite, son nom en tant qu'auteur de\ncette Contribution et la date de cr\u00e9ation de celle-ci.\n\n5.3. DROITS DE DISTRIBUTION ET DE DIFFUSION\n\nLe droit de distribution et de diffusion comporte notamment le droit de\ntransmettre et de communiquer le Logiciel au public sur tout support et\npar tout moyen ainsi que le droit de mettre sur le march\u00e9 \u00e0 titre on\u00e9reux\nou gratuit, un ou des exemplaires du Logiciel par tout proc\u00e9d\u00e9.\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 redistribuer des copies du Logiciel, modifi\u00e9 ou\nnon, \u00e0 des tiers dans les conditions ci-apr\u00e8s d\u00e9taill\u00e9es.\n\n5.3.1. REDISTRIBUTION DU LOGICIEL SANS MODIFICATION\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 redistribuer des copies conformes du Logiciel,\nsous forme de Code Source ou de Code Objet, \u00e0 condition que cette\nredistribution respecte les dispositions du Contrat dans leur totalit\u00e9 et\nsoit accompagn\u00e9e :\n- d'un exemplaire du Contrat,\n- d'un avertissement relatif \u00e0 la restriction de garantie et de\n responsabilit\u00e9 du Conc\u00e9dant telle que pr\u00e9vue aux articles 8 et 9,\net que, dans le cas o\u00f9 seul le Code Objet du Logiciel est redistribu\u00e9, le\nLicenci\u00e9 permette aux futurs Licenci\u00e9s d'acc\u00e9der facilement au Code Source\ncomplet du Logiciel en indiquant les modalit\u00e9s d'acc\u00e8s, \u00e9tant entendu que\nle co\u00fbt additionnel d'acquisition du Code Source ne devra pas exc\u00e9der le\nsimple co\u00fbt de transfert des donn\u00e9es.\n\n5.3.2. REDISTRIBUTION DU LOGICIEL MODIFIE\n\nLorsque le Licenci\u00e9 apporte une Contribution au Logiciel, les conditions de\nredistribution du Logiciel Modifi\u00e9 sont alors soumises \u00e0 l'int\u00e9gralit\u00e9 des\ndispositions du Contrat.\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 redistribuer le Logiciel Modifi\u00e9, sous forme de\nCode Source ou de Code Objet, \u00e0 condition que cette redistribution respecte\nles dispositions du Contrat dans leur totalit\u00e9 et soit accompagn\u00e9e :\n- d'un exemplaire du Contrat,\n- d'un avertissement relatif \u00e0 la restriction de garantie et de\n responsabilit\u00e9 du conc\u00e9dant telle que pr\u00e9vue aux articles 8 et 9,\net que, dans le cas o\u00f9 seul le Code Objet du Logiciel Modifi\u00e9 est\nredistribu\u00e9, le Licenci\u00e9 permette aux futurs Licenci\u00e9s d'acc\u00e9der facilement\nau Code Source complet du Logiciel Modifi\u00e9 en indiquant les modalit\u00e9s\nd'acc\u00e8s, \u00e9tant entendu que le co\u00fbt additionnel d'acquisition du Code Source\nne devra pas exc\u00e9der le simple co\u00fbt de transfert des donn\u00e9es.\n\n5.3.3. redistribution des MODULES DYNAMIQUES\n\nLorsque le Licenci\u00e9 a d\u00e9velopp\u00e9 un Module Dynamique les conditions du\nContrat ne s'appliquent pas \u00e0 ce Module Dynamique, qui peut \u00eatre distribu\u00e9\nsous un contrat de licence diff\u00e9rent.\n\n5.3.4. COMPATIBILITE AVEC LA LICENCE GPL\n\nDans le cas o\u00f9 le Logiciel, Modifi\u00e9 ou non, est int\u00e9gr\u00e9 \u00e0 un code soumis\naux dispositions de la licence GPL, le Licenci\u00e9 est autoris\u00e9 \u00e0 redistribuer\nl'ensemble sous la licence GPL.\n\nDans le cas o\u00f9 le Logiciel Modifi\u00e9 int\u00e8gre un code soumis aux dispositions\nde la licence GPL, le Licenci\u00e9 est autoris\u00e9 \u00e0 redistribuer le Logiciel\nModifi\u00e9 sous la licence GPL.\n\n\nArticle 6 - PROPRIETE INTELLECTUELLE\n------------------------------------\n\n6.1. SUR LE LOGICIEL INITIAL\n\nLe Titulaire est d\u00e9tenteur des droits patrimoniaux sur le Logiciel Initial.\nToute utilisation du Logiciel Initial est soumise au respect des conditions\ndans lesquelles le Titulaire a choisi de diffuser son oeuvre et nul autre\nn'a la facult\u00e9 de modifier les conditions de diffusion de ce Logiciel \nInitial.\n\nLe Titulaire s'engage \u00e0 maintenir la diffusion du Logiciel initial sous\nles conditions du Contrat et ce, pour la dur\u00e9e vis\u00e9e \u00e0 l'article 4.2.\n\n6.2. SUR LES CONTRIBUTIONS\n\nLes droits de propri\u00e9t\u00e9 intellectuelle sur les Contributions sont attach\u00e9s\nau titulaire de droits patrimoniaux d\u00e9sign\u00e9s par la l\u00e9gislation applicable.\n\n6.3. SUR LES MODULES DYNAMIQUES\n\nLe Licenci\u00e9 ayant d\u00e9velopp\u00e9 un Module Dynamique est titulaire des droits de\npropri\u00e9t\u00e9 intellectuelle sur ce Module Dynamique et reste libre du choix du\ncontrat r\u00e9gissant sa diffusion.\n\n6.4. DISPOSITIONS COMMUNES\n\n6.4.1. Le Licenci\u00e9 s'engage express\u00e9ment :\n- \u00e0 ne pas supprimer ou modifier de quelque mani\u00e8re que ce soit les\n mentions de propri\u00e9t\u00e9 intellectuelle appos\u00e9es sur le Logiciel;\n- \u00e0 reproduire \u00e0 l'identique lesdites mentions de propri\u00e9t\u00e9\n intellectuelle sur les copies du Logiciel.\n\n6.4.2. Le Licenci\u00e9 s'engage \u00e0 ne pas porter atteinte, directement ou\nindirectement, aux droits de propri\u00e9t\u00e9 intellectuelle du Titulaire et/ou\ndes Contributeurs et \u00e0 prendre, le cas \u00e9ch\u00e9ant, \u00e0 l'\u00e9gard de son personnel\ntoutes les mesures n\u00e9cessaires pour assurer le respect des dits droits de\npropri\u00e9t\u00e9 intellectuelle du Titulaire et/ou des Contributeurs.\n\n\nArticle 7 - SERVICES ASSOCIES\n-----------------------------\n\n7.1. Le Contrat n'oblige en aucun cas le Conc\u00e9dant \u00e0 la r\u00e9alisation de\nprestations d'assistance technique ou de maintenance du Logiciel.\n\nCependant le Conc\u00e9dant reste libre de proposer ce type de services. Les\ntermes et conditions d'une telle assistance technique et/ou d'une telle\nmaintenance seront alors d\u00e9termin\u00e9s dans un acte s\u00e9par\u00e9. Ces actes de\nmaintenance et/ou assistance technique n'engageront que la seule\nresponsabilit\u00e9 du Conc\u00e9dant qui les propose.\n\n7.2. De m\u00eame, tout Conc\u00e9dant est libre de proposer, sous sa seule\nresponsabilit\u00e9, \u00e0 ses licenci\u00e9s une garantie, qui n'engagera que lui, lors\nde la redistribution du Logiciel et/ou du Logiciel Modifi\u00e9 et ce, dans les\nconditions qu'il souhaite. Cette garantie et les modalit\u00e9s financi\u00e8res de\nson application feront l'objet d'un acte s\u00e9par\u00e9 entre le Conc\u00e9dant et le\nLicenci\u00e9.\n\n\nArticle 8 - RESPONSABILITE\n--------------------------\n\n8.1. Sous r\u00e9serve des dispositions de l'article 8.2, si le Conc\u00e9dant\nn'ex\u00e9cute pas tout ou partie des obligations mises \u00e0 sa charge par le\nContrat, le Licenci\u00e9 a la facult\u00e9, sous r\u00e9serve de prouver la faute du\nConc\u00e9dant concern\u00e9, de solliciter la r\u00e9paration du pr\u00e9judice direct qu'il\nsubit et dont il apportera la preuve.\n\n8.2. La responsabilit\u00e9 du Conc\u00e9dant est limit\u00e9e aux engagements pris en\napplication du Contrat et ne saurait \u00eatre engag\u00e9e\nen raison notamment :(i) des dommages dus \u00e0 l'inex\u00e9cution, totale ou\npartielle, de ses obligations par le Licenci\u00e9, (ii) des dommages directs ou\nindirects d\u00e9coulant de l'utilisation ou des performances du Logiciel subis\npar le Licenci\u00e9 lorsqu'il s'agit d'un professionnel utilisant le Logiciel \u00e0\ndes fins professionnelles et (iii) des dommages indirects d\u00e9coulant de\nl'utilisation ou des performances du Logiciel. Les Parties conviennent\nexpress\u00e9ment que tout pr\u00e9judice financier ou commercial (par exemple perte\nde donn\u00e9es, perte de b\u00e9n\u00e9fices, perte d'exploitation, perte de client\u00e8le ou\nde commandes, manque \u00e0 gagner, trouble commercial quelconque) ou toute\naction dirig\u00e9e contre le Licenci\u00e9 par un tiers, constitue un dommage\nindirect et n'ouvre pas droit \u00e0 r\u00e9paration par le Conc\u00e9dant.\n\n\nArticle 9 - GARANTIE\n--------------------\n\n9.1. Le Licenci\u00e9 reconna\u00eet que l'\u00e9tat actuel des connaissances\nscientifiques et techniques au moment de la mise en circulation du Logiciel\nne permet pas d'en tester et d'en v\u00e9rifier toutes les utilisations ni de\nd\u00e9tecter l'existence d'\u00e9ventuels d\u00e9fauts. L'attention du Licenci\u00e9 a \u00e9t\u00e9\nattir\u00e9e sur ce point sur les risques associ\u00e9s au chargement, \u00e0\nl'utilisation, la modification et/ou au d\u00e9veloppement et \u00e0 la reproduction\ndu Logiciel qui sont r\u00e9serv\u00e9s \u00e0 des utilisateurs avertis.\n\nIl rel\u00e8ve de la responsabilit\u00e9 du Licenci\u00e9 de contr\u00f4ler, par tous moyens,\nl'ad\u00e9quation du produit \u00e0 ses besoins, son bon fonctionnement et de\ns'assurer qu'il ne causera pas de dommages aux personnes et aux biens.\n\n9.2. Le Conc\u00e9dant d\u00e9clare de bonne foi \u00eatre en droit de conc\u00e9der l'ensemble\ndes droits attach\u00e9s au Logiciel (comprenant notamment les droits vis\u00e9s \u00e0\nl'article 5).\n\n9.3. Le Licenci\u00e9 reconna\u00eet que le Logiciel est fourni \u00ab en l'\u00e9tat \u00bb par le\nConc\u00e9dant sans autre garantie, expresse ou tacite, que celle pr\u00e9vue \u00e0\nl'article 9.2 et notamment sans aucune garantie sur sa valeur commerciale,\nson caract\u00e8re s\u00e9curis\u00e9, innovant ou pertinent.\n\nEn particulier, le Conc\u00e9dant ne garantit pas que le Logiciel est exempt\nd'erreur, qu'il fonctionnera sans interruption, qu'il sera compatible avec\nl'\u00e9quipement du Licenci\u00e9 et sa configuration logicielle ni qu'il remplira\nles besoins du Licenci\u00e9.\n\n9.4. Le Conc\u00e9dant ne garantit pas, de mani\u00e8re expresse ou tacite, que le\nLogiciel ne porte pas atteinte \u00e0 un quelconque droit de propri\u00e9t\u00e9\nintellectuelle d'un tiers portant sur un brevet, un logiciel ou sur tout\nautre droit de propri\u00e9t\u00e9. Ainsi, le Conc\u00e9dant exclut toute garantie au\nprofit du Licenci\u00e9 contre les actions en contrefa\u00e7on qui pourraient \u00eatre\ndiligent\u00e9es au titre de l'utilisation, de la modification, et de la\nredistribution du Logiciel. N\u00e9anmoins, si de telles actions sont exerc\u00e9es\ncontre le Licenci\u00e9, le Conc\u00e9dant lui apportera son aide technique et\njuridique pour sa d\u00e9fense. Cette aide technique et juridique est d\u00e9termin\u00e9e\nau cas par cas entre le Conc\u00e9dant concern\u00e9 et le Licenci\u00e9 dans le cadre\nd'un protocole d'accord. Le Conc\u00e9dant d\u00e9gage toute responsabilit\u00e9 quant \u00e0\nl'utilisation de la d\u00e9nomination du Logiciel par le Licenci\u00e9. Aucune\ngarantie n'est apport\u00e9e quant \u00e0 l'existence de droits ant\u00e9rieurs sur le nom\ndu Logiciel et sur l'existence d'une marque.\n\n\nArticle 10 - RESILIATION\n-------------------------\n\n10.1. En cas de manquement par le Licenci\u00e9 aux obligations mises \u00e0 sa\ncharge par le Contrat, le Conc\u00e9dant pourra r\u00e9silier de plein droit le\nContrat trente (30) jours apr\u00e8s notification adress\u00e9e au Licenci\u00e9 et rest\u00e9e\nsans effet.\n\n10.2. Le Licenci\u00e9 dont le Contrat est r\u00e9sili\u00e9 n'est plus autoris\u00e9 \u00e0\nutiliser, modifier ou distribuer le Logiciel. Cependant, toutes les\nLicences licences qu'il aura conc\u00e9d\u00e9es ant\u00e9rieurement \u00e0 la r\u00e9siliation du\nContrat resteront valides sous r\u00e9serve qu'elles aient \u00e9t\u00e9 effectu\u00e9es en\nconformit\u00e9 avec le Contrat.\n\n\nArticle 11 - DISPOSITIONS DIVERSES\n----------------------------------\n\n11.1. CAUSE EXTERIEURE\n\nAucune des Parties ne sera responsable d'un retard ou d'une d\u00e9faillance\nd'ex\u00e9cution du Contrat qui serait d\u00fb \u00e0 un cas de force majeure, un cas\nfortuit ou une cause ext\u00e9rieure, telle que, notamment, le mauvais\nfonctionnement ou les interruptions du r\u00e9seau \u00e9lectrique ou de\nt\u00e9l\u00e9communication, la paralysie du r\u00e9seau li\u00e9e \u00e0 une attaque informatique,\nl'intervention des autorit\u00e9s gouvernementales, les catastrophes naturelles,\nles d\u00e9g\u00e2ts des eaux, les tremblements de terre, le feu, les explosions, les\ngr\u00e8ves et les conflits sociaux, l'\u00e9tat de guerre.\n\n11.2. Le fait, par l'une ou l'autre des Parties, d'omettre en une ou\nplusieurs occasions de se pr\u00e9valoir d'une ou plusieurs dispositions du\nContrat, ne pourra en aucun cas impliquer renonciation par la Partie\nint\u00e9ress\u00e9e \u00e0 s'en pr\u00e9valoir ult\u00e9rieurement.\n\n11.3. Le Contrat annule et remplace toute convention ant\u00e9rieure, \u00e9crite ou\norale, entre les Parties sur le m\u00eame objet et constitue l'accord entier\nentre les Parties sur cet objet. Aucune addition ou modification aux termes\ndu Contrat n'aura d'effet \u00e0 l'\u00e9gard des Parties \u00e0 moins d'\u00eatre faite par\n\u00e9crit et sign\u00e9e par leurs repr\u00e9sentants d\u00fbment habilit\u00e9s.\n\n11.4. Dans l'hypoth\u00e8se o\u00f9 une ou plusieurs des dispositions du Contrat\ns'av\u00e8rerait contraire \u00e0 une loi ou \u00e0 un texte applicable, existants ou\nfuturs, cette loi ou ce texte pr\u00e9vaudrait, et les Parties feraient les\namendements n\u00e9cessaires pour se conformer \u00e0 cette loi ou \u00e0 ce texte. Toutes\nles autres dispositions resteront en vigueur. De m\u00eame, la nullit\u00e9, pour\nquelque raison que ce soit, d'une des dispositions du Contrat ne saurait\nentra\u00eener la nullit\u00e9 de l'ensemble du Contrat.\n\n11.5. LANGUE\n\nLe Contrat est r\u00e9dig\u00e9 en langue fran\u00e7aise et en langue anglaise. En cas de\ndivergence d'interpr\u00e9tation, seule la version fran\u00e7aise fait foi.\n\n\nArticle 12 - NOUVELLES VERSIONS DU CONTRAT\n------------------------------------------\n\n12.1. Toute personne est autoris\u00e9e \u00e0 copier et distribuer des copies de ce\nContrat.\n\n12.2. Afin d'en pr\u00e9server la coh\u00e9rence, le texte du Contrat est prot\u00e9g\u00e9 et\nne peut \u00eatre modifi\u00e9 que par les auteurs de la licence, lesquels se\nr\u00e9servent le droit de publier p\u00e9riodiquement des mises \u00e0 jour ou de\nnouvelles versions du Contrat, qui poss\u00e8deront chacune un num\u00e9ro distinct.\nCes versions ult\u00e9rieures seront susceptibles de prendre en compte de\nnouvelles probl\u00e9matiques rencontr\u00e9es par les logiciels libres.\n\n12.3. Tout Logiciel diffus\u00e9 sous une version donn\u00e9e du Contrat ne pourra\nfaire l'objet d'une diffusion ult\u00e9rieure que sous la m\u00eame version du\nContrat ou une version post\u00e9rieure, sous r\u00e9serve des dispositions de\nl'article 5.3.4.\n\n\nArticle 13 - LOI APPLICABLE ET COMPETENCE TERRITORIALE\n------------------------------------------------------\n\n13.1. Le Contrat est r\u00e9gi par la loi fran\u00e7aise. Les Parties conviennent de\ntenter de r\u00e9gler \u00e0 l'amiable les diff\u00e9rends ou litiges qui viendraient \u00e0 se\nproduire par suite ou \u00e0 l'occasion du Contrat.\n\n13.2. A d\u00e9faut d'accord amiable dans un d\u00e9lai de deux (2) mois \u00e0 compter de\nleur survenance et sauf situation relevant d'une proc\u00e9dure d'urgence, les\ndiff\u00e9rends ou litiges seront port\u00e9s par la Partie la plus diligente devant\nles Tribunaux comp\u00e9tents de Paris.\n\n\n\n Version 1 du 21/06/2004", + "json": "cecill-1.0.json", + "yaml": "cecill-1.0.yml", + "html": "cecill-1.0.html", + "license": "cecill-1.0.LICENSE" + }, + { + "license_key": "cecill-1.0-en", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-cecill-1.0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " FREE SOFTWARE LICENSING AGREEMENT CeCILL\n ========================================\n\n\nNotice\n------\n\n\nThis Agreement is a free software license that is the result of discussions\nbetween its authors in order to ensure compliance with the two main\nprinciples guiding its drafting:\n - firstly, its conformity with French law, both as regards the law of\n torts and intellectual property law, and the protection that it offers\n to authors and the holders of economic rights over software.\n - secondly, compliance with the principles for the distribution of free\n software: access to source codes, extended user-rights.\n\nThe following bodies are the authors of this license CeCILL (Ce : CEA, C :\nCNRS, I : INRIA, LL : Logiciel Libre):\n\nCommissariat \u00e0 l'Energie Atomique - CEA, a public scientific, technical and\nindustrial establishment, having its principal place of business at 31-33\nrue de la F\u00e9d\u00e9ration, 75752 PARIS cedex 15.\n\nCentre National de la Recherche Scientifique - CNRS, a public scientific\nand technological establishment, having its principal place of business at\n3 rue Michel-Ange 75794 Paris cedex 16.\n\nInstitut National de Recherche en Informatique et en Automatique - INRIA, a\npublic scientific and technological establishment, having its principal\nplace of business at Domaine de Voluceau, Rocquencourt, BP 105, 78153 Le\nChesnay cedex.\n\n\nPREAMBLE\n--------\n\n\nThe purpose of this Free Software Licensing Agreement is to grant users the\nright to modify and redistribute the software governed by this license\nwithin the framework of an \"open source\" distribution model.\n\nThe exercising of these rights is conditional upon certain obligations for\nusers so as to ensure that this status is retained for subsequent\nredistribution operations.\n\nNevertheless, access to the source code, and the resulting rights to copy,\nmodify and redistribute only provide users with a limited warranty and the\nsoftware's author, the holder of the economic rights, and the successive\nlicensors only have limited liability.\n\nIn this respect, the user's attention is drawn to the risks associated with\nloading, using, modifying and/or developing or reproducing the software by\nthe user in light of its specific status of free software, that may mean\nthat it is complicated to manipulate, and that also therefore means that it\nis reserved for developers and experienced professionals having in-depth IT\nknowledge. Users are therefore encouraged to load and test the Software's\nsuitability as regards their requirements in conditions enabling the\nsecurity of their systems and/or data to be ensured and, more generally, to\nuse and operate it in the same conditions as regards security. This\nAgreement may be freely reproduced and published, provided it is not\naltered, and that no Articles are either added or removed herefrom.\n\nThis Agreement may apply to any or all software for which the holder of the\neconomic rights decides to submit the operation thereof to its provisions.\n\n\nArticle 1 - DEFINITIONS\n------------------------\n\n\nFor the purposes of this Agreement, when the following expressions commence\nwith a capital letter, they shall have the following meaning:\n\nAgreement: means this Licensing Agreement, and any or all of its subsequent\nversions.\n\nSoftware: means the software in its Object Code and/or Source Code form\nand, where applicable, its documentation, \"as is\" at the time when the\nLicensee accepts the Agreement.\n\nInitial Software: means the Software in its Source Code and/or Object Code\nform and, where applicable, its documentation, \"as is\" at the time when it\nis distributed for the first time under the terms and conditions of the\nAgreement.\n\nModified Software: means the Software modified by at least one\nContribution.\n\nSource Code: means all the Software's instructions and program lines to\nwhich access is required so as to modify the Software.\n\nObject Code: means the binary files originating from the compilation of the\nSource Code.\n\nHolder: means the holder of the economic copyright over the Initial\nSoftware.\n\nLicensee(s): mean(s) the Software user(s) having accepted the Agreement.\n\nContributor: means a Licensee having made at least one Contribution.\n\nLicensor: means the Holder, or any or all other individual or legal entity,\nthat distributes the Software under the Agreement.\n\nContributions: mean any or all modifications, corrections, translations,\nadaptations and/or new functionalities integrated into the Software by any\nor all Contributor, and the Static Modules.\n\nModule: means a set of sources files including their documentation that,\nonce compiled in executable form, enables supplementary functionalities or\nservices to be developed in addition to those offered by the Software.\n\nDynamic Module: means any or all module, created by the Contributor, that\nis independent of the Software, so that this module and the Software are in\ntwo different executable forms that are run in separate address spaces,\nwith one calling the other when they are run.\n\nStatic Module: means any or all module, created by the Contributor and\nconnected to the Software by a static link that makes their object codes\ninterdependent. This module and the Software to which it is connected, are\ncombined in a single executable.\n\nParties: mean both the Licensee and the Licensor.\n\nThese expressions may be used both in singular and plural form.\n\n\nArticle 2 - PURPOSE\n-------------------\n\n\nThe purpose of the Agreement is to enable the Licensor to grant the\nLicensee a free, non-exclusive, transferable and worldwide License for the\nSoftware as set forth in Article 5 hereinafter for the whole term of\nprotection of the rights over said Software.\n\n\nArticle 3 - ACCEPTANCE\n----------------------\n\n\n3.1. The Licensee shall be deemed as having accepted the terms and\nconditions of this Agreement by the occurrence of the first of the\nfollowing events:\n- (i) loading the Software by any or all means, notably, by downloading\n from a remote server, or by loading from a physical medium;\n- (ii) the first time the Licensee exercises any of the rights granted\n hereunder.\n\n3.2. One copy of the Agreement, containing a notice relating to the\nspecific nature of the Software, to the limited warranty, and to the\nlimitation to use by experienced users has been provided to the Licensee\nprior to its acceptance as set forth in Article 3.1 hereinabove, and the\nLicensee hereby acknowledges that it is aware thereof.\n\n\nArticle 4 - EFFECTIVE DATE AND TERM\n-----------------------------------\n\n\n4.1. EFFECTIVE DATE\n\nThe Agreement shall become effective on the date when it is accepted by the\nLicensee as set forth in Article 3.1.\n\n4.2. TERM\n\nThe Agreement shall remain in force during the whole legal term of\nprotection of the economic rights over the Software.\n\n\nArticle 5 - SCOPE OF THE RIGHTS GRANTED\n---------------------------------------\n\n\nThe Licensor hereby grants to the Licensee, that accepts such, the\nfollowing rights as regards the Software for any or all use, and for the\nterm of the Agreement, on the basis of the terms and conditions set forth\nhereinafter.\n\nOtherwise, the Licensor grants to the Licensee free of charge exploitation\nrights on the patents he holds on whole or part of the inventions\nimplemented in the Software.\n\n5.1. RIGHTS OF USE\n\nThe Licensee is authorized to use the Software, unrestrictedly, as regards\nthe fields of application, with it being hereinafter specified that this\nrelates to:\n- permanent or temporary reproduction of all or part of the Software by\n any or all means and in any or all form.\n- loading, displaying, running, or storing the Software on any or all\n medium.\n- entitlement to observe, study or test the operation thereof so as to\n establish the ideas and principles that form the basis for any or all\n constituent elements of said Software. This shall apply when the\n Licensee carries out any or all loading, displaying, running,\n transmission or storage operation as regards the Software, that it is\n entitled to carry out hereunder.\n\n5.2. entitlement to make CONTRIBUTIONS\n\nThe right to make Contributions includes the right to translate, adapt,\narrange, or make any or all modification to the Software, and the right to\nreproduce the resulting Software.\n\nThe Licensee is authorized to make any or all Contribution to the Software\nprovided that it explicitly mentions its name as the author of said\nContribution and the date of the development thereof.\n\n5.3. DISTRIBUTION AND PUBLICATION RIGHTS\n\nIn particular, the right of distribution and publication includes the right\nto transmit and communicate the Software to the general public on any or\nall medium, and by any or all means, and the right to market, either in\nconsideration of a fee, or free of charge, a copy or copies of the Software \nby means of any or all process.\nThe Licensee is further authorized to redistribute copies of the modified\nor unmodified Software to third parties according to the terms and\nconditions set forth hereinafter.\n\n5.3.1. REDISTRIBUTION OF SOFTWARE WITHOUT MODIFICATION\n\nThe Licensee is authorized to redistribute true copies of the Software in\nSource Code or Object Code form, provided that said redistribution complies\nwith all the provisions of the Agreement and is accompanied by:\n- a copy of the Agreement,\n- a notice relating to the limitation of both the Licensor's warranty\n and liability as set forth in Articles 8 and 9,\nand that, in the event that only the Software's Object Code is\nredistributed, the Licensee allows future Licensees unhindered access to\nthe Software's full Source Code by providing them with the terms and\nconditions for access thereto, it being understood that the additional cost\nof acquiring the Source Code shall not exceed the cost of transferring the\ndata.\n\n5.3.2. REDISTRIBUTION OF MODIFIED SOFTWARE\n\nWhen the Licensee makes a Contribution to the Software, the terms and\nconditions for the redistribution of the Modified Software shall then be\nsubject to all the provisions hereof.\n\nThe Licensee is authorized to redistribute the Modified Software, in Source\nCode or Object Code form, provided that said redistribution complies with\nall the provisions of the Agreement and is accompanied by:\n- a copy of the Agreement,\n- a notice relating to the limitation of both the Licensor's warranty\n and liability as set forth in Articles 8 and 9,\nand that, in the event that only the Modified Software's Object Code is\nredistributed, the Licensee allows future Licensees unhindered access to\nthe Modified Software's full Source Code by providing them with the terms\nand conditions for access thereto, it being understood that the additional\ncost of acquiring the Source Code shall not exceed the cost of transferring\nthe data.\n\n\n5.3.3. redistribution OF DYNAMIC MODULES\n\nWhen the Licensee has developed a Dynamic Module, the terms and conditions\nhereof do not apply to said Dynamic Module, that may be distributed under \na separate Licensing Agreement.\n\n5.3.4. COMPATIBILITY WITH THE GPL LICENSE\n\nIn the event that the Modified or unmodified Software includes a code that\nis subject to the provisions of the GPL License, the Licensee is authorized\nto redistribute the whole under the GPL License.\n\nIn the event that the Modified Software includes a code that is subject to\nthe provisions of the GPL License, the Licensee is authorized to\nredistribute the Modified Software under the GPL License.\n\n\nArticle 6 - INTELLECTUAL PROPERTY\n----------------------------------\n\n\n6.1. OVER THE INITIAL SOFTWARE\n\nThe Holder owns the economic rights over the Initial Software. Any or all\nuse of the Initial Software is subject to compliance with the terms and\nconditions under which the Holder has elected to distribute its work and no\none shall be entitled to and it shall have sole entitlement to modify the\nterms and conditions for the distribution of said Initial Software.\n\nThe Holder undertakes to maintain the distribution of the Initial Software\nunder the conditions of the Agreement, for the duration set forth in\narticle 4.2..\n\n6.2. OVER THE CONTRIBUTIONS\n\nThe intellectual property rights over the Contributions are attached to the\nholder of the economic rights as designated by effective legislation.\n\n6.3. OVER THE DYNAMIC MODULES\n\nThe Licensee having developed a Dynamic Module is the holder of the\nintellectual property rights over said Dynamic Module and is free to choose\nthe agreement that shall govern its distribution.\n\n6.4. JOINT PROVISIONS\n\n6.4.1. The Licensee expressly undertakes:\n- not to remove, or modify, in any or all manner, the intellectual\n property notices affixed to the Software;\n- to reproduce said notices, in an identical manner, in the copies of\n the Software.\n\n6.4.2. The Licensee undertakes not to directly or indirectly infringe the\nintellectual property rights of the Holder and/or Contributors and to take,\nwhere applicable, vis-\u00e0-vis its staff, any or all measures required to\nensure respect for said intellectual property rights of the Holder and/or\nContributors.\n\n\nArticle 7 - RELATED SERVICES\n-----------------------------\n\n\n7.1. Under no circumstances shall the Agreement oblige the Licensor to\nprovide technical assistance or maintenance services for the Software.\n\nHowever, the Licensor is entitled to offer this type of service. The\nterms and conditions of such technical assistance, and/or such \nmaintenance, shall then be set forth in a separate instrument. Only the\nLicensor offering said maintenance and/or technical assistance services\nshall incur liability therefor.\n\n7.2. Similarly, any or all Licensor shall be entitled to offer to its\nLicensees, under its own responsibility, a warranty, that shall only be\nbinding upon itself, for the redistribution of the Software and/or the\nModified Software, under terms and conditions that it shall decide upon\nitself. Said warranty, and the financial terms and conditions of its\napplication, shall be subject to a separate instrument executed between the\nLicensor and the Licensee.\n\n\nArticle 8 - LIABILITY\n----------------------\n\n\n8.1. Subject to the provisions of Article 8.2, should the Licensor fail to\nfulfill all or part of its obligations hereunder, the Licensee shall be\nentitled to claim compensation for the direct loss suffered that it is able\nto justify, subject to providing proof of negligence by the Licensor in\nquestion.\n\n8.2. The Licensor's liability is limited to the commitments made under this\nLicensing Agreement and shall not be incurred as a result , in particular:\n(i) of loss due the Licensee's total or partial failure to fulfill its\nobligations, (ii) direct or consequential loss due to the Software's use or\nperformance that is suffered by the Licensee, when the latter is a\nprofessional using said Software for professional purposes and (iii)\nconsequential loss due to the Software's use or performance. The Parties\nexpressly agree that any or all pecuniary or business loss (i.e. loss of\ndata, loss of profits, operating loss, loss of customers or orders,\nopportunity cost, any disturbance to business activities) or any or all\nlegal proceedings instituted against the Licensee by a third party, shall\nconstitute consequential loss and shall not provide entitlement to any or\nall compensation from the Licensor.\n\n\nArticle 9 - WARRANTY\n---------------------\n\n\n9.1. The Licensee acknowledges that the current situation as regards\nscientific and technical know-how at the time when the Software was\ndistributed did not enable all possible uses to be tested and verified, nor\nfor the presence of any or all faults to be detected. In this respect, the\nLicensee's attention has been drawn to the risks associated with loading,\nusing, modifying and/or developing and reproducing the Software that are\nreserved for experienced users.\n\nThe Licensee shall be responsible for verifying, by any or all means, the\nproduct's suitability for its requirements, its due and proper functioning,\nand for ensuring that it shall not cause damage to either persons or\nproperty.\n\n9.2. The Licensor hereby represents, in good faith, that it is entitled to\ngrant all the rights on the Software (including in particular the rights\nset forth in Article 5 hereof over the Software).\n\n9.3. The Licensee acknowledges that the Software is supplied \"as is\" by the\nLicensor without any or all other express or tacit warranty, other than\nthat provided for in Article 9.2 and, in particular, without any or all\nwarranty as to its market value, its securised, innovative or relevant\nnature.\n\nSpecifically, the Licensor does not warrant that the Software is free from\nany or all error, that it shall operate continuously, that it shall be\ncompatible with the Licensee's own equipment and its software\nconfiguration, nor that it shall meet the Licensee's requirements.\n\n9.4. The Licensor does not either expressly or tacitly warrant that the\nSoftware does not infringe any or all third party intellectual right\nrelating to a patent, software or to any or all other property right.\nMoreover, the Licensor shall not hold the Licensee harmless against any or\nall proceedings for infringement that may be instituted in respect of the\nuse, modification and redistribution of the Software. Nevertheless, should\nsuch proceedings be instituted against the Licensee, the Licensor shall\nprovide it with technical and legal assistance for its defense. Such\ntechnical and legal assistance shall be decided upon on a case-by-case\nbasis between the relevant Licensor and the Licensee pursuant to a\nmemorandum of understanding. The Licensor disclaims any or all liability as\nregards the Licensee's use of the Software's name. No warranty shall be\nprovided as regards the existence of prior rights over the name of the\nSoftware and as regards the existence of a trademark.\n\n\nArticle 10 - TERMINATION\n-------------------------\n\n\n10.1. In the event of a breach by the Licensee of its obligations\nhereunder, the Licensor may automatically terminate this Agreement thirty\n(30) days after notice has been sent to the Licensee and has remained\nineffective.\n\n10.2. The Licensee whose Agreement is terminated shall no longer be\nauthorized to use, modify or distribute the Software. However, any or all\nlicenses that it may have granted prior to termination of the Agreement\nshall remain valid subject to their having been granted in compliance with\nthe terms and conditions hereof.\n\n\nArticle 11 - MISCELLANEOUS PROVISIONS\n--------------------------------------\n\n\n11.1. EXCUSABLE EVENTS\n\nNeither Party shall be liable for any or all delay, or failure to perform\nthe Agreement, that may be attributable to an event of force majeure, an\nact of God or an outside cause, such as, notably, defective functioning, or\ninterruptions affecting the electricity or telecommunications networks,\nblocking of the network following a virus attack, the intervention of the\ngovernment authorities, natural disasters, water damage, earthquakes, fire,\nexplosions, strikes and labor unrest, war, etc.\n\n11.2. The fact that either Party may fail, on one or several occasions, to\ninvoke one or several of the provisions hereof, shall under no\ncircumstances be interpreted as being a waiver by the interested Party of\nits entitlement to invoke said provision(s) subsequently.\n\n11.3. The Agreement cancels and replaces any or all previous agreement,\nwhether written or oral, between the Parties and having the same purpose,\nand constitutes the entirety of the agreement between said Parties\nconcerning said purpose. No supplement or modification to the terms and\nconditions hereof shall be effective as regards the Parties unless it is\nmade in writing and signed by their duly authorized representatives.\n\n11.4. In the event that one or several of the provisions hereof were to\nconflict with a current or future applicable act or legislative text, said\nact or legislative text shall take precedence, and the Parties shall make\nthe necessary amendments so as to be in compliance with said act or\nlegislative text. All the other provisions shall remain effective.\nSimilarly, the fact that a provision of the Agreement may be null and\nvoid, for any reason whatsoever, shall not cause the Agreement as a whole\nto be null and void.\n\n11.5. LANGUAGE\n\nThe Agreement is drafted in both French and English. In the event of a\nconflict as regards construction, the French version shall be deemed\nauthentic.\n\n\nArticle 12 - NEW VERSIONS OF THE AGREEMENT\n-------------------------------------------\n\n\n12.1. Any or all person is authorized to duplicate and distribute copies of\nthis Agreement.\n\n12.2. So as to ensure coherence, the wording of this Agreement is protected\nand may only be modified by the authors of the License, that reserve the\nright to periodically publish updates or new versions of the Agreement,\neach with a separate number. These subsequent versions may incorporate new\nproblems encountered by the free software.\n\n12.3. Any or all Software distributed under a given version of the\nAgreement may only be subsequently distributed under the same version of\nthe Agreement, or a subsequent version, subject to the provisions of\narticle 5.3.4.\n\n\nArticle 13 - GOVERNING LAW AND JURISDICTION\n-------------------------------------------\n\n\n13.1. The Agreement is governed by French law. The Parties agree to\nendeavor to settle the disagreements or disputes that may arise during the\nperformance of the Agreement out-of-court.\n\n13.2. In the absence of an out-of-court settlement within two (2) months as\nfrom their occurrence, and unless emergency proceedings are necessary, the\ndisagreements or disputes shall be referred to the Paris Courts having\njurisdiction, by the first Party to take action.\n\n\n Version 1 of 06/21/2004", + "json": "cecill-1.0-en.json", + "yaml": "cecill-1.0-en.yml", + "html": "cecill-1.0-en.html", + "license": "cecill-1.0-en.LICENSE" + }, + { + "license_key": "cecill-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "CECILL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " FREE SOFTWARE LICENSING AGREEMENT CeCILL\n ========================================\n\n\nNotice\n------\n\n\nThis Agreement is a free software license that is the result of discussions\nbetween its authors in order to ensure compliance with the two main\nprinciples guiding its drafting:\n - firstly, its conformity with French law, both as regards the law of\n torts and intellectual property law, and the protection that it offers\n to authors and the holders of economic rights over software.\n - secondly, compliance with the principles for the distribution of free\n software: access to source codes, extended user-rights.\n\nThe following bodies are the authors of this license CeCILL (Ce : CEA, C :\nCNRS, I : INRIA, LL : Logiciel Libre):\n\nCommissariat \u00e0 l'Energie Atomique - CEA, a public scientific, technical and\nindustrial establishment, having its principal place of business at 31-33\nrue de la F\u00e9d\u00e9ration, 75752 PARIS cedex 15, France.\n\nCentre National de la Recherche Scientifique - CNRS, a public scientific\nand technological establishment, having its principal place of business at\n3 rue Michel-Ange 75794 Paris cedex 16, France.\n\nInstitut National de Recherche en Informatique et en Automatique - INRIA, a\npublic scientific and technological establishment, having its principal\nplace of business at Domaine de Voluceau, Rocquencourt, BP 105, 78153 Le\nChesnay cedex.\n\n\nPREAMBLE\n--------\n\n\nThe purpose of this Free Software Licensing Agreement is to grant users the\nright to modify and redistribute the software governed by this license\nwithin the framework of an \"open source\" distribution model.\n\nThe exercising of these rights is conditional upon certain obligations for\nusers so as to ensure that this status is retained for subsequent\nredistribution operations.\n\nAs a counterpart to the access to the source code and rights to copy, modify\nand redistribute granted by the license, users are provided only with a\nlimited warranty and the software's author, the holder of the economic\nrights, and the successive licensors only have limited liability.\n\nIn this respect, it is brought to the user's attention that the risks\nassociated with loading, using, modifying and/or developing or reproducing\nthe software by the user given its nature of Free Software, that may \nmean that it is complicated to manipulate, and that also therefore means \nthat it is reserved for developers and experienced professionals having\nin-depth computer knowledge. Users are therefore encouraged to load and test\nthe Software's suitability as regards their requirements in conditions\nenabling the security of their systems and/or data to be ensured and, more\ngenerally, to use and operate it in the same conditions of security.\nThis Agreement may be freely reproduced and published, provided it is\nnot altered, and that no Articles are either added or removed herefrom. \n\nThis Agreement may apply to any or all software for which the holder of the\neconomic rights decides to submit the operation thereof to its provisions.\n\n\nArticle 1 - DEFINITIONS\n------------------------\n\n\nFor the purposes of this Agreement, when the following expressions commence\nwith a capital letter, they shall have the following meaning:\n\nAgreement: means this Licensing Agreement, and any or all of its subsequent\nversions.\n\nSoftware: means the software in its Object Code and/or Source Code form\nand, where applicable, its documentation, \"as is\" at the time when the\nLicensee accepts the Agreement.\n\nInitial Software: means the Software in its Source Code and/or Object Code\nform and, where applicable, its documentation, \"as is\" at the time when it\nis distributed for the first time under the terms and conditions of the\nAgreement.\n\nModified Software: means the Software modified by at least one\nContribution.\n\nSource Code: means all the Software's instructions and program lines to\nwhich access is required so as to modify the Software.\n\nObject Code: means the binary files originating from the compilation of the\nSource Code.\n\nHolder: means the holder of the economic rights over the Initial\nSoftware.\n\nLicensee(s): mean(s) the Software user(s) having accepted the Agreement.\n\nContributor: means a Licensee having made at least one Contribution.\n\nLicensor: means the Holder, or any or all other individual or legal entity,\nthat distributes the Software under the Agreement.\n\nContributions: mean any or all modifications, corrections, translations,\nadaptations and/or new functionalities integrated into the Software by any\nor all Contributor, and the Static Modules.\n\nModule: means a set of sources files including their documentation that,\nonce compiled in executable form, enables supplementary functionalities or\nservices to be developed in addition to those offered by the Software.\n\nDynamic Module: means any or all module, created by the Contributor, that\nis independent of the Software, so that this module and the Software are in\ntwo different executable forms that are run in separate address spaces,\nwith one calling the other when they are run.\n\nStatic Module: means any or all module, created by the Contributor and\nconnected to the Software by a static link that makes their object codes\ninterdependent. This module and the Software to which it is connected, are\ncombined in a single executable.\n\nParties: mean both the Licensee and the Licensor.\n\nThese expressions may be used both in singular and plural form.\n\n\nArticle 2 - PURPOSE\n-------------------\n\n\nThe purpose of the Agreement is to enable the Licensor to grant the\nLicensee a free, non-exclusive, transferable and worldwide License for the\nSoftware as set forth in Article 5 hereinafter for the whole term of\nprotection of the rights over said Software.\n\n\nArticle 3 - ACCEPTANCE\n----------------------\n\n\n3.1. The Licensee shall be deemed as having accepted the terms and\nconditions of this Agreement by the occurrence of the first of the\nfollowing events:\n- (i) loading the Software by any or all means, notably, by downloading\n from a remote server, or by loading from a physical medium;\n- (ii) the first time the Licensee exercises any of the rights granted\n hereunder.\n\n3.2. One copy of the Agreement, containing a notice relating to the\nspecific nature of the Software, to the limited warranty, and to the\nlimitation to use by experienced users has been provided to the Licensee\nprior to its acceptance as set forth in Article 3.1 hereinabove, and the\nLicensee hereby acknowledges that it is aware thereof.\n\n\nArticle 4 - EFFECTIVE DATE AND TERM\n-----------------------------------\n\n\n4.1. EFFECTIVE DATE\n\nThe Agreement shall become effective on the date when it is accepted by the\nLicensee as set forth in Article 3.1.\n\n4.2. TERM\n\nThe Agreement shall remain in force during the whole legal term of\nprotection of the economic rights over the Software.\n\n\nArticle 5 - SCOPE OF THE RIGHTS GRANTED\n---------------------------------------\n\n\nThe Licensor hereby grants to the Licensee, that accepts such, the\nfollowing rights as regards the Software for any or all use, and for the\nterm of the Agreement, on the basis of the terms and conditions set forth\nhereinafter.\n\nOtherwise, the Licensor grants to the Licensee free of charge exploitation\nrights on the patents he holds on whole or part of the inventions\nimplemented in the Software.\n\n5.1. RIGHTS OF USE\n\nThe Licensee is authorized to use the Software, unrestrictedly, as regards\nthe fields of application, with it being hereinafter specified that this\nrelates to:\n- permanent or temporary reproduction of all or part of the Software by\n any or all means and in any or all form.\n- loading, displaying, running, or storing the Software on any or all\n medium.\n- entitlement to observe, study or test the operation thereof so as to\n establish the ideas and principles that form the basis for any or all\n constituent elements of said Software. This shall apply when the\n Licensee carries out any or all loading, displaying, running,\n transmission or storage operation as regards the Software, that it is\n entitled to carry out hereunder.\n\n5.2. entitlement to make CONTRIBUTIONS\n\nThe right to make Contributions includes the right to translate, adapt,\narrange, or make any or all modification to the Software, and the right to\nreproduce the resulting Software.\n\nThe Licensee is authorized to make any or all Contribution to the Software\nprovided that it explicitly mentions its name as the author of said\nContribution and the date of the development thereof.\n\n5.3. DISTRIBUTION AND PUBLICATION RIGHTS\n\nIn particular, the right of distribution and publication includes the right\nto transmit and communicate the Software to the general public on any or\nall medium, and by any or all means, and the right to market, either in\nconsideration of a fee, or free of charge, a copy or copies of the Software \nby means of any or all process.\nThe Licensee is further authorized to redistribute copies of the modified\nor unmodified Software to third parties according to the terms and\nconditions set forth hereinafter.\n\n5.3.1. REDISTRIBUTION OF SOFTWARE WITHOUT MODIFICATION\n\nThe Licensee is authorized to redistribute true copies of the Software in\nSource Code or Object Code form, provided that said redistribution complies\nwith all the provisions of the Agreement and is accompanied by:\n- a copy of the Agreement,\n- a notice relating to the limitation of both the Licensor's warranty\n and liability as set forth in Articles 8 and 9,\nand that, in the event that only the Software's Object Code is\nredistributed, the Licensee allows future Licensees unhindered access to\nthe Software's full Source Code by providing them with the terms and\nconditions for access thereto, it being understood that the additional cost\nof acquiring the Source Code shall not exceed the cost of transferring the\ndata.\n\n5.3.2. REDISTRIBUTION OF MODIFIED SOFTWARE\n\nWhen the Licensee makes a Contribution to the Software, the terms and\nconditions for the redistribution of the Modified Software shall then be\nsubject to all the provisions hereof.\n\nThe Licensee is authorized to redistribute the Modified Software, in Source\nCode or Object Code form, provided that said redistribution complies with\nall the provisions of the Agreement and is accompanied by:\n- a copy of the Agreement,\n- a notice relating to the limitation of both the Licensor's warranty\n and liability as set forth in Articles 8 and 9,\nand that, in the event that only the Modified Software's Object Code is\nredistributed, the Licensee allows future Licensees unhindered access to\nthe Modified Software's full Source Code by providing them with the terms\nand conditions for access thereto, it being understood that the additional\ncost of acquiring the Source Code shall not exceed the cost of transferring\nthe data.\n\n\n5.3.3. redistribution OF DYNAMIC MODULES\n\nWhen the Licensee has developed a Dynamic Module, the terms and conditions\nhereof do not apply to said Dynamic Module, that may be distributed under \na separate Licensing Agreement.\n\n5.3.4. COMPATIBILITY WITH THE GPL LICENSE\n\nIn the event that the Modified or unmodified Software is included in a code\nthat is subject to the provisions of the GPL License, the Licensee is\nauthorized to redistribute the whole under the GPL License.\n\nIn the event that the Modified Software includes a code that is subject to\nthe provisions of the GPL License, the Licensee is authorized to\nredistribute the Modified Software under the GPL License.\n\n\nArticle 6 - INTELLECTUAL PROPERTY\n----------------------------------\n\n\n6.1. OVER THE INITIAL SOFTWARE\n\nThe Holder owns the economic rights over the Initial Software. Any or all\nuse of the Initial Software is subject to compliance with the terms and\nconditions under which the Holder has elected to distribute its work and no\none shall be entitled to and it shall have sole entitlement to modify the\nterms and conditions for the distribution of said Initial Software.\n\nThe Holder undertakes to maintain the distribution of the Initial Software\nunder the conditions of the Agreement, for the duration set forth in\narticle 4.2..\n\n6.2. OVER THE CONTRIBUTIONS\n\nThe intellectual property rights over the Contributions belong to the\nholder of the economic rights as designated by effective legislation.\n\n6.3. OVER THE DYNAMIC MODULES\n\nThe Licensee having developed a Dynamic Module is the holder of the\nintellectual property rights over said Dynamic Module and is free to choose\nthe agreement that shall govern its distribution.\n\n6.4. JOINT PROVISIONS\n\n6.4.1. The Licensee expressly undertakes:\n- not to remove, or modify, in any or all manner, the intellectual\n property notices affixed to the Software;\n- to reproduce said notices, in an identical manner, in the copies of\n the Software.\n\n6.4.2. The Licensee undertakes not to directly or indirectly infringe the\nintellectual property rights of the Holder and/or Contributors and to take,\nwhere applicable, vis-\u00e0-vis its staff, any or all measures required to\nensure respect for said intellectual property rights of the Holder and/or\nContributors.\n\n\nArticle 7 - RELATED SERVICES\n-----------------------------\n\n\n7.1. Under no circumstances shall the Agreement oblige the Licensor to\nprovide technical assistance or maintenance services for the Software.\n\nHowever, the Licensor is entitled to offer this type of service. The\nterms and conditions of such technical assistance, and/or such \nmaintenance, shall then be set forth in a separate instrument. Only the\nLicensor offering said maintenance and/or technical assistance services\nshall incur liability therefor.\n\n7.2. Similarly, any or all Licensor shall be entitled to offer to its\nLicensees, under its own responsibility, a warranty, that shall only be\nbinding upon itself, for the redistribution of the Software and/or the\nModified Software, under terms and conditions that it shall decide upon\nitself. Said warranty, and the financial terms and conditions of its\napplication, shall be subject to a separate instrument executed between the\nLicensor and the Licensee.\n\n\nArticle 8 - LIABILITY\n----------------------\n\n\n8.1. Subject to the provisions of Article 8.2, should the Licensor fail to\nfulfill all or part of its obligations hereunder, the Licensee shall be\nentitled to claim compensation for the direct loss suffered as a result of\na fault on the part of the Licensor, subject to providing evidence of it. \n\n8.2. The Licensor's liability is limited to the commitments made under this\nLicensing Agreement and shall not be incurred as a result , in particular:\n(i) of loss due the Licensee's total or partial failure to fulfill its\nobligations, (ii) direct or consequential loss due to the Software's use or\nperformance that is suffered by the Licensee, when the latter is a\nprofessional using said Software for professional purposes and (iii)\nconsequential loss due to the Software's use or performance. The Parties\nexpressly agree that any or all pecuniary or business loss (i.e. loss of\ndata, loss of profits, operating loss, loss of customers or orders,\nopportunity cost, any disturbance to business activities) or any or all\nlegal proceedings instituted against the Licensee by a third party, shall\nconstitute consequential loss and shall not provide entitlement to any or\nall compensation from the Licensor.\n\n\nArticle 9 - WARRANTY\n---------------------\n\n\n9.1. The Licensee acknowledges that the current situation as regards\nscientific and technical know-how at the time when the Software was\ndistributed did not enable all possible uses to be tested and verified, nor\nfor the presence of any or all faults to be detected. In this respect, the\nLicensee's attention has been drawn to the risks associated with loading,\nusing, modifying and/or developing and reproducing the Software that are\nreserved for experienced users.\n\nThe Licensee shall be responsible for verifying, by any or all means, the\nproduct's suitability for its requirements, its due and proper functioning,\nand for ensuring that it shall not cause damage to either persons or\nproperty.\n\n9.2. The Licensor hereby represents, in good faith, that it is entitled to\ngrant all the rights on the Software (including in particular the rights\nset forth in Article 5 hereof over the Software).\n\n9.3. The Licensee acknowledges that the Software is supplied \"as is\" by the\nLicensor without any or all other express or tacit warranty, other than\nthat provided for in Article 9.2 and, in particular, without any or all\nwarranty as to its market value, its secured, innovative or relevant\nnature.\n\nSpecifically, the Licensor does not warrant that the Software is free from\nany or all error, that it shall operate continuously, that it shall be\ncompatible with the Licensee's own equipment and its software\nconfiguration, nor that it shall meet the Licensee's requirements.\n\n9.4. The Licensor does not either expressly or tacitly warrant that the\nSoftware does not infringe any or all third party intellectual right\nrelating to a patent, software or to any or all other property right.\nMoreover, the Licensor shall not hold the Licensee harmless against any or\nall proceedings for infringement that may be instituted in respect of the\nuse, modification and redistribution of the Software. Nevertheless, should\nsuch proceedings be instituted against the Licensee, the Licensor shall\nprovide it with technical and legal assistance for its defense. Such\ntechnical and legal assistance shall be decided upon on a case-by-case\nbasis between the relevant Licensor and the Licensee pursuant to a\nmemorandum of understanding. The Licensor disclaims any or all liability as\nregards the Licensee's use of the Software's name. No warranty shall be\nprovided as regards the existence of prior rights over the name of the\nSoftware and as regards the existence of a trademark.\n\n\nArticle 10 - TERMINATION\n-------------------------\n\n\n10.1. In the event of a breach by the Licensee of its obligations\nhereunder, the Licensor may automatically terminate this Agreement thirty\n(30) days after notice has been sent to the Licensee and has remained\nineffective.\n\n10.2. The Licensee whose Agreement is terminated shall no longer be\nauthorized to use, modify or distribute the Software. However, any or all\nlicenses that it may have granted prior to termination of the Agreement\nshall remain valid subject to their having been granted in compliance with\nthe terms and conditions hereof.\n\n\nArticle 11 - MISCELLANEOUS PROVISIONS\n--------------------------------------\n\n\n11.1. EXCUSABLE EVENTS\n\nNeither Party shall be liable for any or all delay, or failure to perform\nthe Agreement, that may be attributable to an event of force majeure, an\nact of God or an outside cause, such as, notably, defective functioning, or\ninterruptions affecting the electricity or telecommunications networks,\nblocking of the network following a virus attack, the intervention of the\ngovernment authorities, natural disasters, water damage, earthquakes, fire,\nexplosions, strikes and labor unrest, war, etc.\n\n11.2. The fact that either Party may fail, on one or several occasions, to\ninvoke one or several of the provisions hereof, shall under no\ncircumstances be interpreted as being a waiver by the interested Party of\nits entitlement to invoke said provision(s) subsequently.\n\n11.3. The Agreement cancels and replaces any or all previous agreement,\nwhether written or oral, between the Parties and having the same purpose,\nand constitutes the entirety of the agreement between said Parties\nconcerning said purpose. No supplement or modification to the terms and\nconditions hereof shall be effective as regards the Parties unless it is\nmade in writing and signed by their duly authorized representatives.\n\n11.4. In the event that one or several of the provisions hereof were to\nconflict with a current or future applicable act or legislative text, said\nact or legislative text shall take precedence, and the Parties shall make\nthe necessary amendments so as to be in compliance with said act or\nlegislative text. All the other provisions shall remain effective.\nSimilarly, the fact that a provision of the Agreement may be null and\nvoid, for any reason whatsoever, shall not cause the Agreement as a whole\nto be null and void.\n\n11.5. LANGUAGE\n\nThe Agreement is drafted in both French and English. In the event of a\nconflict as regards construction, the French version shall be deemed\nauthentic.\n\n\nArticle 12 - NEW VERSIONS OF THE AGREEMENT\n-------------------------------------------\n\n\n12.1. Any or all person is authorized to duplicate and distribute copies of\nthis Agreement.\n\n12.2. So as to ensure coherence, the wording of this Agreement is protected\nand may only be modified by the authors of the License, that reserve the\nright to periodically publish updates or new versions of the Agreement,\neach with a separate number. These subsequent versions may address new issues\nencountered by Free Software.\n\n12.3. Any or all Software distributed under a given version of the\nAgreement may only be subsequently distributed under the same version of\nthe Agreement, or a subsequent version, subject to the provisions of\narticle 5.3.4.\n\n\nArticle 13 - GOVERNING LAW AND JURISDICTION\n-------------------------------------------\n\n\n13.1. The Agreement is governed by French law. The Parties agree to\nendeavor to settle the disagreements or disputes that may arise during the\nperformance of the Agreement out-of-court.\n\n13.2. In the absence of an out-of-court settlement within two (2) months as\nfrom their occurrence, and unless emergency proceedings are necessary, the\ndisagreements or disputes shall be referred to the Paris Courts having\njurisdiction, by the first Party to take action.\n\n\n Version 1.1 of 10/26/2004", + "json": "cecill-1.1.json", + "yaml": "cecill-1.1.yml", + "html": "cecill-1.1.html", + "license": "cecill-1.1.LICENSE" + }, + { + "license_key": "cecill-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "CECILL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CeCILL FREE SOFTWARE LICENSE AGREEMENT\n\n Notice\n\nThis Agreement is a Free Software license agreement that is the result\nof discussions between its authors in order to ensure compliance with\nthe two main principles guiding its drafting:\n\n * firstly, compliance with the principles governing the distribution\n of Free Software: access to source code, broad rights granted to\n users,\n * secondly, the election of a governing law, French law, with which\n it is conformant, both as regards the law of torts and\n intellectual property law, and the protection that it offers to\n both authors and holders of the economic rights over software.\n\nThe authors of the CeCILL (for Ce[a] C[nrs] I[nria] L[ogiciel] L[ibre])\nlicense are:\n\nCommissariat \u00e0 l'Energie Atomique - CEA, a public scientific, technical\nand industrial research establishment, having its principal place of\nbusiness at 25 rue Leblanc, immeuble Le Ponant D, 75015 Paris, France.\n\nCentre National de la Recherche Scientifique - CNRS, a public scientific\nand technological establishment, having its principal place of business\nat 3 rue Michel-Ange, 75794 Paris cedex 16, France.\n\nInstitut National de Recherche en Informatique et en Automatique -\nINRIA, a public scientific and technological establishment, having its\nprincipal place of business at Domaine de Voluceau, Rocquencourt, BP\n105, 78153 Le Chesnay cedex, France.\n\n\n Preamble\n\nThe purpose of this Free Software license agreement is to grant users\nthe right to modify and redistribute the software governed by this\nlicense within the framework of an open source distribution model.\n\nThe exercising of these rights is conditional upon certain obligations\nfor users so as to preserve this status for all subsequent redistributions.\n\nIn consideration of access to the source code and the rights to copy,\nmodify and redistribute granted by the license, users are provided only\nwith a limited warranty and the software's author, the holder of the\neconomic rights, and the successive licensors only have limited liability.\n\nIn this respect, the risks associated with loading, using, modifying\nand/or developing or reproducing the software by the user are brought to\nthe user's attention, given its Free Software status, which may make it\ncomplicated to use, with the result that its use is reserved for\ndevelopers and experienced professionals having in-depth computer\nknowledge. Users are therefore encouraged to load and test the\nsuitability of the software as regards their requirements in conditions\nenabling the security of their systems and/or data to be ensured and,\nmore generally, to use and operate it in the same conditions of\nsecurity. This Agreement may be freely reproduced and published,\nprovided it is not altered, and that no provisions are either added or\nremoved herefrom.\n\nThis Agreement may apply to any or all software for which the holder of\nthe economic rights decides to submit the use thereof to its provisions.\n\n\n Article 1 - DEFINITIONS\n\nFor the purpose of this Agreement, when the following expressions\ncommence with a capital letter, they shall have the following meaning:\n\nAgreement: means this license agreement, and its possible subsequent\nversions and annexes.\n\nSoftware: means the software in its Object Code and/or Source Code form\nand, where applicable, its documentation, \"as is\" when the Licensee\naccepts the Agreement.\n\nInitial Software: means the Software in its Source Code and possibly its\nObject Code form and, where applicable, its documentation, \"as is\" when\nit is first distributed under the terms and conditions of the Agreement.\n\nModified Software: means the Software modified by at least one\nContribution.\n\nSource Code: means all the Software's instructions and program lines to\nwhich access is required so as to modify the Software.\n\nObject Code: means the binary files originating from the compilation of\nthe Source Code.\n\nHolder: means the holder(s) of the economic rights over the Initial\nSoftware.\n\nLicensee: means the Software user(s) having accepted the Agreement.\n\nContributor: means a Licensee having made at least one Contribution.\n\nLicensor: means the Holder, or any other individual or legal entity, who\ndistributes the Software under the Agreement.\n\nContribution: means any or all modifications, corrections, translations,\nadaptations and/or new functions integrated into the Software by any or\nall Contributors, as well as any or all Internal Modules.\n\nModule: means a set of sources files including their documentation that\nenables supplementary functions or services in addition to those offered\nby the Software.\n\nExternal Module: means any or all Modules, not derived from the\nSoftware, so that this Module and the Software run in separate address\nspaces, with one calling the other when they are run.\n\nInternal Module: means any or all Module, connected to the Software so\nthat they both execute in the same address space.\n\nGNU GPL: means the GNU General Public License version 2 or any\nsubsequent version, as published by the Free Software Foundation Inc.\n\nParties: mean both the Licensee and the Licensor.\n\nThese expressions may be used both in singular and plural form.\n\n\n Article 2 - PURPOSE\n\nThe purpose of the Agreement is the grant by the Licensor to the\nLicensee of a non-exclusive, transferable and worldwide license for the\nSoftware as set forth in Article 5 hereinafter for the whole term of the\nprotection granted by the rights over said Software. \n\n\n Article 3 - ACCEPTANCE\n\n3.1 The Licensee shall be deemed as having accepted the terms and\nconditions of this Agreement upon the occurrence of the first of the\nfollowing events:\n\n * (i) loading the Software by any or all means, notably, by\n downloading from a remote server, or by loading from a physical\n medium;\n * (ii) the first time the Licensee exercises any of the rights\n granted hereunder.\n\n3.2 One copy of the Agreement, containing a notice relating to the\ncharacteristics of the Software, to the limited warranty, and to the\nfact that its use is restricted to experienced users has been provided\nto the Licensee prior to its acceptance as set forth in Article 3.1\nhereinabove, and the Licensee hereby acknowledges that it has read and\nunderstood it.\n\n\n Article 4 - EFFECTIVE DATE AND TERM\n\n\n 4.1 EFFECTIVE DATE\n\nThe Agreement shall become effective on the date when it is accepted by\nthe Licensee as set forth in Article 3.1.\n\n\n 4.2 TERM\n\nThe Agreement shall remain in force for the entire legal term of\nprotection of the economic rights over the Software.\n\n\n Article 5 - SCOPE OF RIGHTS GRANTED\n\nThe Licensor hereby grants to the Licensee, who accepts, the following\nrights over the Software for any or all use, and for the term of the\nAgreement, on the basis of the terms and conditions set forth hereinafter.\n\nBesides, if the Licensor owns or comes to own one or more patents\nprotecting all or part of the functions of the Software or of its\ncomponents, the Licensor undertakes not to enforce the rights granted by\nthese patents against successive Licensees using, exploiting or\nmodifying the Software. If these patents are transferred, the Licensor\nundertakes to have the transferees subscribe to the obligations set\nforth in this paragraph.\n\n\n 5.1 RIGHT OF USE\n\nThe Licensee is authorized to use the Software, without any limitation\nas to its fields of application, with it being hereinafter specified\nthat this comprises:\n\n 1. permanent or temporary reproduction of all or part of the Software\n by any or all means and in any or all form.\n\n 2. loading, displaying, running, or storing the Software on any or\n all medium.\n\n 3. entitlement to observe, study or test its operation so as to\n determine the ideas and principles behind any or all constituent\n elements of said Software. This shall apply when the Licensee\n carries out any or all loading, displaying, running, transmission\n or storage operation as regards the Software, that it is entitled\n to carry out hereunder.\n\n\n 5.2 ENTITLEMENT TO MAKE CONTRIBUTIONS\n\nThe right to make Contributions includes the right to translate, adapt,\narrange, or make any or all modifications to the Software, and the right\nto reproduce the resulting software.\n\nThe Licensee is authorized to make any or all Contributions to the\nSoftware provided that it includes an explicit notice that it is the\nauthor of said Contribution and indicates the date of the creation thereof.\n\n\n 5.3 RIGHT OF DISTRIBUTION\n\nIn particular, the right of distribution includes the right to publish,\ntransmit and communicate the Software to the general public on any or\nall medium, and by any or all means, and the right to market, either in\nconsideration of a fee, or free of charge, one or more copies of the\nSoftware by any means.\n\nThe Licensee is further authorized to distribute copies of the modified\nor unmodified Software to third parties according to the terms and\nconditions set forth hereinafter.\n\n\n 5.3.1 DISTRIBUTION OF SOFTWARE WITHOUT MODIFICATION\n\nThe Licensee is authorized to distribute true copies of the Software in\nSource Code or Object Code form, provided that said distribution\ncomplies with all the provisions of the Agreement and is accompanied by:\n\n 1. a copy of the Agreement,\n\n 2. a notice relating to the limitation of both the Licensor's\n warranty and liability as set forth in Articles 8 and 9,\n\nand that, in the event that only the Object Code of the Software is\nredistributed, the Licensee allows future Licensees unhindered access to\nthe full Source Code of the Software by indicating how to access it, it\nbeing understood that the additional cost of acquiring the Source Code\nshall not exceed the cost of transferring the data.\n\n\n 5.3.2 DISTRIBUTION OF MODIFIED SOFTWARE\n\nWhen the Licensee makes a Contribution to the Software, the terms and\nconditions for the distribution of the resulting Modified Software\nbecome subject to all the provisions of this Agreement.\n\nThe Licensee is authorized to distribute the Modified Software, in\nsource code or object code form, provided that said distribution\ncomplies with all the provisions of the Agreement and is accompanied by:\n\n 1. a copy of the Agreement,\n\n 2. a notice relating to the limitation of both the Licensor's\n warranty and liability as set forth in Articles 8 and 9,\n\nand that, in the event that only the object code of the Modified\nSoftware is redistributed, the Licensee allows future Licensees\nunhindered access to the full source code of the Modified Software by\nindicating how to access it, it being understood that the additional\ncost of acquiring the source code shall not exceed the cost of\ntransferring the data.\n\n\n 5.3.3 DISTRIBUTION OF EXTERNAL MODULES\n\nWhen the Licensee has developed an External Module, the terms and\nconditions of this Agreement do not apply to said External Module, that\nmay be distributed under a separate license agreement.\n\n\n 5.3.4 COMPATIBILITY WITH THE GNU GPL\n\nThe Licensee can include a code that is subject to the provisions of one\nof the versions of the GNU GPL in the Modified or unmodified Software,\nand distribute that entire code under the terms of the same version of\nthe GNU GPL.\n\nThe Licensee can include the Modified or unmodified Software in a code\nthat is subject to the provisions of one of the versions of the GNU GPL,\nand distribute that entire code under the terms of the same version of\nthe GNU GPL.\n\n\n Article 6 - INTELLECTUAL PROPERTY\n\n\n 6.1 OVER THE INITIAL SOFTWARE\n\nThe Holder owns the economic rights over the Initial Software. Any or\nall use of the Initial Software is subject to compliance with the terms\nand conditions under which the Holder has elected to distribute its work\nand no one shall be entitled to modify the terms and conditions for the\ndistribution of said Initial Software.\n\nThe Holder undertakes that the Initial Software will remain ruled at\nleast by this Agreement, for the duration set forth in Article 4.2.\n\n\n 6.2 OVER THE CONTRIBUTIONS\n\nThe Licensee who develops a Contribution is the owner of the\nintellectual property rights over this Contribution as defined by\napplicable law.\n\n\n 6.3 OVER THE EXTERNAL MODULES\n\nThe Licensee who develops an External Module is the owner of the\nintellectual property rights over this External Module as defined by\napplicable law and is free to choose the type of agreement that shall\ngovern its distribution.\n\n\n 6.4 JOINT PROVISIONS\n\nThe Licensee expressly undertakes:\n\n 1. not to remove, or modify, in any manner, the intellectual property\n notices attached to the Software;\n\n 2. to reproduce said notices, in an identical manner, in the copies\n of the Software modified or not.\n\nThe Licensee undertakes not to directly or indirectly infringe the\nintellectual property rights of the Holder and/or Contributors on the\nSoftware and to take, where applicable, vis-\u00e0-vis its staff, any and all\nmeasures required to ensure respect of said intellectual property rights\nof the Holder and/or Contributors.\n\n\n Article 7 - RELATED SERVICES\n\n7.1 Under no circumstances shall the Agreement oblige the Licensor to\nprovide technical assistance or maintenance services for the Software.\n\nHowever, the Licensor is entitled to offer this type of services. The\nterms and conditions of such technical assistance, and/or such\nmaintenance, shall be set forth in a separate instrument. Only the\nLicensor offering said maintenance and/or technical assistance services\nshall incur liability therefor.\n\n7.2 Similarly, any Licensor is entitled to offer to its licensees, under\nits sole responsibility, a warranty, that shall only be binding upon\nitself, for the redistribution of the Software and/or the Modified\nSoftware, under terms and conditions that it is free to decide. Said\nwarranty, and the financial terms and conditions of its application,\nshall be subject of a separate instrument executed between the Licensor\nand the Licensee.\n\n\n Article 8 - LIABILITY\n\n8.1 Subject to the provisions of Article 8.2, the Licensee shall be\nentitled to claim compensation for any direct loss it may have suffered\nfrom the Software as a result of a fault on the part of the relevant\nLicensor, subject to providing evidence thereof.\n\n8.2 The Licensor's liability is limited to the commitments made under\nthis Agreement and shall not be incurred as a result of in particular:\n(i) loss due the Licensee's total or partial failure to fulfill its\nobligations, (ii) direct or consequential loss that is suffered by the\nLicensee due to the use or performance of the Software, and (iii) more\ngenerally, any consequential loss. In particular the Parties expressly\nagree that any or all pecuniary or business loss (i.e. loss of data,\nloss of profits, operating loss, loss of customers or orders,\nopportunity cost, any disturbance to business activities) or any or all\nlegal proceedings instituted against the Licensee by a third party,\nshall constitute consequential loss and shall not provide entitlement to\nany or all compensation from the Licensor.\n\n\n Article 9 - WARRANTY\n\n9.1 The Licensee acknowledges that the scientific and technical\nstate-of-the-art when the Software was distributed did not enable all\npossible uses to be tested and verified, nor for the presence of\npossible defects to be detected. In this respect, the Licensee's\nattention has been drawn to the risks associated with loading, using,\nmodifying and/or developing and reproducing the Software which are\nreserved for experienced users.\n\nThe Licensee shall be responsible for verifying, by any or all means,\nthe suitability of the product for its requirements, its good working\norder, and for ensuring that it shall not cause damage to either persons\nor properties.\n\n9.2 The Licensor hereby represents, in good faith, that it is entitled\nto grant all the rights over the Software (including in particular the\nrights set forth in Article 5).\n\n9.3 The Licensee acknowledges that the Software is supplied \"as is\" by\nthe Licensor without any other express or tacit warranty, other than\nthat provided for in Article 9.2 and, in particular, without any warranty \nas to its commercial value, its secured, safe, innovative or relevant\nnature.\n\nSpecifically, the Licensor does not warrant that the Software is free\nfrom any error, that it will operate without interruption, that it will\nbe compatible with the Licensee's own equipment and software\nconfiguration, nor that it will meet the Licensee's requirements.\n\n9.4 The Licensor does not either expressly or tacitly warrant that the\nSoftware does not infringe any third party intellectual property right\nrelating to a patent, software or any other property right. Therefore,\nthe Licensor disclaims any and all liability towards the Licensee\narising out of any or all proceedings for infringement that may be\ninstituted in respect of the use, modification and redistribution of the\nSoftware. Nevertheless, should such proceedings be instituted against\nthe Licensee, the Licensor shall provide it with technical and legal\nassistance for its defense. Such technical and legal assistance shall be\ndecided on a case-by-case basis between the relevant Licensor and the\nLicensee pursuant to a memorandum of understanding. The Licensor\ndisclaims any and all liability as regards the Licensee's use of the\nname of the Software. No warranty is given as regards the existence of\nprior rights over the name of the Software or as regards the existence\nof a trademark.\n\n\n Article 10 - TERMINATION\n\n10.1 In the event of a breach by the Licensee of its obligations\nhereunder, the Licensor may automatically terminate this Agreement\nthirty (30) days after notice has been sent to the Licensee and has\nremained ineffective.\n\n10.2 A Licensee whose Agreement is terminated shall no longer be\nauthorized to use, modify or distribute the Software. However, any\nlicenses that it may have granted prior to termination of the Agreement\nshall remain valid subject to their having been granted in compliance\nwith the terms and conditions hereof.\n\n\n Article 11 - MISCELLANEOUS\n\n\n 11.1 EXCUSABLE EVENTS\n\nNeither Party shall be liable for any or all delay, or failure to\nperform the Agreement, that may be attributable to an event of force\nmajeure, an act of God or an outside cause, such as defective\nfunctioning or interruptions of the electricity or telecommunications\nnetworks, network paralysis following a virus attack, intervention by\ngovernment authorities, natural disasters, water damage, earthquakes,\nfire, explosions, strikes and labor unrest, war, etc.\n\n11.2 Any failure by either Party, on one or more occasions, to invoke\none or more of the provisions hereof, shall under no circumstances be\ninterpreted as being a waiver by the interested Party of its right to\ninvoke said provision(s) subsequently.\n\n11.3 The Agreement cancels and replaces any or all previous agreements,\nwhether written or oral, between the Parties and having the same\npurpose, and constitutes the entirety of the agreement between said\nParties concerning said purpose. No supplement or modification to the\nterms and conditions hereof shall be effective as between the Parties\nunless it is made in writing and signed by their duly authorized\nrepresentatives.\n\n11.4 In the event that one or more of the provisions hereof were to\nconflict with a current or future applicable act or legislative text,\nsaid act or legislative text shall prevail, and the Parties shall make\nthe necessary amendments so as to comply with said act or legislative\ntext. All other provisions shall remain effective. Similarly, invalidity\nof a provision of the Agreement, for any reason whatsoever, shall not\ncause the Agreement as a whole to be invalid.\n\n\n 11.5 LANGUAGE\n\nThe Agreement is drafted in both French and English and both versions\nare deemed authentic.\n\n\n Article 12 - NEW VERSIONS OF THE AGREEMENT\n\n12.1 Any person is authorized to duplicate and distribute copies of this\nAgreement.\n\n12.2 So as to ensure coherence, the wording of this Agreement is\nprotected and may only be modified by the authors of the License, who\nreserve the right to periodically publish updates or new versions of the\nAgreement, each with a separate number. These subsequent versions may\naddress new issues encountered by Free Software.\n\n12.3 Any Software distributed under a given version of the Agreement may\nonly be subsequently distributed under the same version of the Agreement\nor a subsequent version, subject to the provisions of Article 5.3.4.\n\n\n Article 13 - GOVERNING LAW AND JURISDICTION\n\n13.1 The Agreement is governed by French law. The Parties agree to\nendeavor to seek an amicable solution to any disagreements or disputes\nthat may arise during the performance of the Agreement.\n\n13.2 Failing an amicable solution within two (2) months as from their\noccurrence, and unless emergency proceedings are necessary, the\ndisagreements or disputes shall be referred to the Paris Courts having\njurisdiction, by the more diligent Party.\n\n\nVersion 2.0 dated 2006-09-05.", + "json": "cecill-2.0.json", + "yaml": "cecill-2.0.yml", + "html": "cecill-2.0.html", + "license": "cecill-2.0.LICENSE" + }, + { + "license_key": "cecill-2.0-fr", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cecill-2.0-fr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL\n\n\n Avertissement\n\nCe contrat est une licence de logiciel libre issue d'une concertation\nentre ses auteurs afin que le respect de deux grands principes pr\u00e9side \u00e0\nsa r\u00e9daction:\n\n * d'une part, le respect des principes de diffusion des logiciels\n libres: acc\u00e8s au code source, droits \u00e9tendus conf\u00e9r\u00e9s aux\n utilisateurs,\n * d'autre part, la d\u00e9signation d'un droit applicable, le droit\n fran\u00e7ais, auquel elle est conforme, tant au regard du droit de la\n responsabilit\u00e9 civile que du droit de la propri\u00e9t\u00e9 intellectuelle\n et de la protection qu'il offre aux auteurs et titulaires des\n droits patrimoniaux sur un logiciel.\n\nLes auteurs de la licence CeCILL (pour Ce[a] C[nrs] I[nria] L[ogiciel]\nL[ibre]) sont:\n\nCommissariat \u00e0 l'Energie Atomique - CEA, \u00e9tablissement public de\nrecherche \u00e0 caract\u00e8re scientifique, technique et industriel, dont le\nsi\u00e8ge est situ\u00e9 25 rue Leblanc, immeuble Le Ponant D, 75015 Paris.\n\nCentre National de la Recherche Scientifique - CNRS, \u00e9tablissement\npublic \u00e0 caract\u00e8re scientifique et technologique, dont le si\u00e8ge est\nsitu\u00e9 3 rue Michel-Ange, 75794 Paris cedex 16.\n\nInstitut National de Recherche en Informatique et en Automatique -\nINRIA, \u00e9tablissement public \u00e0 caract\u00e8re scientifique et technologique,\ndont le si\u00e8ge est situ\u00e9 Domaine de Voluceau, Rocquencourt, BP 105, 78153\nLe Chesnay cedex.\n\n\n Pr\u00e9ambule\n\nCe contrat est une licence de logiciel libre dont l'objectif est de\nconf\u00e9rer aux utilisateurs la libert\u00e9 de modification et de\nredistribution du logiciel r\u00e9gi par cette licence dans le cadre d'un\nmod\u00e8le de diffusion en logiciel libre.\n\nL'exercice de ces libert\u00e9s est assorti de certains devoirs \u00e0 la charge\ndes utilisateurs afin de pr\u00e9server ce statut au cours des\nredistributions ult\u00e9rieures.\n\nL'accessibilit\u00e9 au code source et les droits de copie, de modification\net de redistribution qui en d\u00e9coulent ont pour contrepartie de n'offrir\naux utilisateurs qu'une garantie limit\u00e9e et de ne faire peser sur\nl'auteur du logiciel, le titulaire des droits patrimoniaux et les\nconc\u00e9dants successifs qu'une responsabilit\u00e9 restreinte.\n\nA cet \u00e9gard l'attention de l'utilisateur est attir\u00e9e sur les risques\nassoci\u00e9s au chargement, \u00e0 l'utilisation, \u00e0 la modification et/ou au\nd\u00e9veloppement et \u00e0 la reproduction du logiciel par l'utilisateur \u00e9tant\ndonn\u00e9 sa sp\u00e9cificit\u00e9 de logiciel libre, qui peut le rendre complexe \u00e0\nmanipuler et qui le r\u00e9serve donc \u00e0 des d\u00e9veloppeurs ou des\nprofessionnels avertis poss\u00e9dant des connaissances informatiques\napprofondies. Les utilisateurs sont donc invit\u00e9s \u00e0 charger et tester\nl'ad\u00e9quation du logiciel \u00e0 leurs besoins dans des conditions permettant\nd'assurer la s\u00e9curit\u00e9 de leurs syst\u00e8mes et/ou de leurs donn\u00e9es et, plus\ng\u00e9n\u00e9ralement, \u00e0 l'utiliser et l'exploiter dans les m\u00eames conditions de\ns\u00e9curit\u00e9. Ce contrat peut \u00eatre reproduit et diffus\u00e9 librement, sous\nr\u00e9serve de le conserver en l'\u00e9tat, sans ajout ni suppression de clauses.\n\nCe contrat est susceptible de s'appliquer \u00e0 tout logiciel dont le\ntitulaire des droits patrimoniaux d\u00e9cide de soumettre l'exploitation aux\ndispositions qu'il contient.\n\n\n Article 1 - DEFINITIONS\n\nDans ce contrat, les termes suivants, lorsqu'ils seront \u00e9crits avec une\nlettre capitale, auront la signification suivante:\n\nContrat: d\u00e9signe le pr\u00e9sent contrat de licence, ses \u00e9ventuelles versions\npost\u00e9rieures et annexes.\n\nLogiciel: d\u00e9signe le logiciel sous sa forme de Code Objet et/ou de Code\nSource et le cas \u00e9ch\u00e9ant sa documentation, dans leur \u00e9tat au moment de\nl'acceptation du Contrat par le Licenci\u00e9.\n\nLogiciel Initial: d\u00e9signe le Logiciel sous sa forme de Code Source et\n\u00e9ventuellement de Code Objet et le cas \u00e9ch\u00e9ant sa documentation, dans\nleur \u00e9tat au moment de leur premi\u00e8re diffusion sous les termes du Contrat.\n\nLogiciel Modifi\u00e9: d\u00e9signe le Logiciel modifi\u00e9 par au moins une\nContribution.\n\nCode Source: d\u00e9signe l'ensemble des instructions et des lignes de\nprogramme du Logiciel et auquel l'acc\u00e8s est n\u00e9cessaire en vue de\nmodifier le Logiciel.\n\nCode Objet: d\u00e9signe les fichiers binaires issus de la compilation du\nCode Source.\n\nTitulaire: d\u00e9signe le ou les d\u00e9tenteurs des droits patrimoniaux d'auteur\nsur le Logiciel Initial.\n\nLicenci\u00e9: d\u00e9signe le ou les utilisateurs du Logiciel ayant accept\u00e9 le\nContrat.\n\nContributeur: d\u00e9signe le Licenci\u00e9 auteur d'au moins une Contribution.\n\nConc\u00e9dant: d\u00e9signe le Titulaire ou toute personne physique ou morale\ndistribuant le Logiciel sous le Contrat.\n\nContribution: d\u00e9signe l'ensemble des modifications, corrections,\ntraductions, adaptations et/ou nouvelles fonctionnalit\u00e9s int\u00e9gr\u00e9es dans\nle Logiciel par tout Contributeur, ainsi que tout Module Interne.\n\nModule: d\u00e9signe un ensemble de fichiers sources y compris leur\ndocumentation qui permet de r\u00e9aliser des fonctionnalit\u00e9s ou services\nsuppl\u00e9mentaires \u00e0 ceux fournis par le Logiciel.\n\nModule Externe: d\u00e9signe tout Module, non d\u00e9riv\u00e9 du Logiciel, tel que ce\nModule et le Logiciel s'ex\u00e9cutent dans des espaces d'adressage\ndiff\u00e9rents, l'un appelant l'autre au moment de leur ex\u00e9cution.\n\nModule Interne: d\u00e9signe tout Module li\u00e9 au Logiciel de telle sorte\nqu'ils s'ex\u00e9cutent dans le m\u00eame espace d'adressage.\n\nGNU GPL: d\u00e9signe la GNU General Public License dans sa version 2 ou\ntoute version ult\u00e9rieure, telle que publi\u00e9e par Free Software Foundation\nInc.\n\nParties: d\u00e9signe collectivement le Licenci\u00e9 et le Conc\u00e9dant.\n\nCes termes s'entendent au singulier comme au pluriel.\n\n\n Article 2 - OBJET\n\nLe Contrat a pour objet la concession par le Conc\u00e9dant au Licenci\u00e9 d'une\nlicence non exclusive, cessible et mondiale du Logiciel telle que\nd\u00e9finie ci-apr\u00e8s \u00e0 l'article 5 pour toute la dur\u00e9e de protection des droits\nportant sur ce Logiciel.\n\n\n Article 3 - ACCEPTATION\n\n3.1 L'acceptation par le Licenci\u00e9 des termes du Contrat est r\u00e9put\u00e9e\nacquise du fait du premier des faits suivants:\n\n * (i) le chargement du Logiciel par tout moyen notamment par\n t\u00e9l\u00e9chargement \u00e0 partir d'un serveur distant ou par chargement \u00e0\n partir d'un support physique;\n * (ii) le premier exercice par le Licenci\u00e9 de l'un quelconque des\n droits conc\u00e9d\u00e9s par le Contrat.\n\n3.2 Un exemplaire du Contrat, contenant notamment un avertissement\nrelatif aux sp\u00e9cificit\u00e9s du Logiciel, \u00e0 la restriction de garantie et \u00e0\nla limitation \u00e0 un usage par des utilisateurs exp\u00e9riment\u00e9s a \u00e9t\u00e9 mis \u00e0\ndisposition du Licenci\u00e9 pr\u00e9alablement \u00e0 son acceptation telle que\nd\u00e9finie \u00e0 l'article 3.1 ci dessus et le Licenci\u00e9 reconna\u00eet en avoir pris\nconnaissance.\n\n\n Article 4 - ENTREE EN VIGUEUR ET DUREE\n\n\n 4.1 ENTREE EN VIGUEUR\n\nLe Contrat entre en vigueur \u00e0 la date de son acceptation par le Licenci\u00e9\ntelle que d\u00e9finie en 3.1.\n\n\n 4.2 DUREE\n\nLe Contrat produira ses effets pendant toute la dur\u00e9e l\u00e9gale de\nprotection des droits patrimoniaux portant sur le Logiciel.\n\n\n Article 5 - ETENDUE DES DROITS CONCEDES\n\nLe Conc\u00e9dant conc\u00e8de au Licenci\u00e9, qui accepte, les droits suivants sur\nle Logiciel pour toutes destinations et pour la dur\u00e9e du Contrat dans\nles conditions ci-apr\u00e8s d\u00e9taill\u00e9es.\n\nPar ailleurs, si le Conc\u00e9dant d\u00e9tient ou venait \u00e0 d\u00e9tenir un ou\nplusieurs brevets d'invention prot\u00e9geant tout ou partie des\nfonctionnalit\u00e9s du Logiciel ou de ses composants, il s'engage \u00e0 ne pas\nopposer les \u00e9ventuels droits conf\u00e9r\u00e9s par ces brevets aux Licenci\u00e9s\nsuccessifs qui utiliseraient, exploiteraient ou modifieraient le\nLogiciel. En cas de cession de ces brevets, le Conc\u00e9dant s'engage \u00e0\nfaire reprendre les obligations du pr\u00e9sent alin\u00e9a aux cessionnaires.\n\n\n 5.1 DROIT D'UTILISATION\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 utiliser le Logiciel, sans restriction quant\naux domaines d'application, \u00e9tant ci-apr\u00e8s pr\u00e9cis\u00e9 que cela comporte:\n\n 1. la reproduction permanente ou provisoire du Logiciel en tout ou\n partie par tout moyen et sous toute forme.\n\n 2. le chargement, l'affichage, l'ex\u00e9cution, ou le stockage du\n Logiciel sur tout support.\n\n 3. la possibilit\u00e9 d'en observer, d'en \u00e9tudier, ou d'en tester le\n fonctionnement afin de d\u00e9terminer les id\u00e9es et principes qui sont\n \u00e0 la base de n'importe quel \u00e9l\u00e9ment de ce Logiciel; et ceci,\n lorsque le Licenci\u00e9 effectue toute op\u00e9ration de chargement,\n d'affichage, d'ex\u00e9cution, de transmission ou de stockage du\n Logiciel qu'il est en droit d'effectuer en vertu du Contrat.\n\n\n 5.2 DROIT D'APPORTER DES CONTRIBUTIONS\n\nLe droit d'apporter des Contributions comporte le droit de traduire,\nd'adapter, d'arranger ou d'apporter toute autre modification au Logiciel\net le droit de reproduire le logiciel en r\u00e9sultant.\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 apporter toute Contribution au Logiciel sous\nr\u00e9serve de mentionner, de fa\u00e7on explicite, son nom en tant qu'auteur de\ncette Contribution et la date de cr\u00e9ation de celle-ci.\n\n\n 5.3 DROIT DE DISTRIBUTION\n\nLe droit de distribution comporte notamment le droit de diffuser, de\ntransmettre et de communiquer le Logiciel au public sur tout support et\npar tout moyen ainsi que le droit de mettre sur le march\u00e9 \u00e0 titre\non\u00e9reux ou gratuit, un ou des exemplaires du Logiciel par tout proc\u00e9d\u00e9.\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 distribuer des copies du Logiciel, modifi\u00e9 ou\nnon, \u00e0 des tiers dans les conditions ci-apr\u00e8s d\u00e9taill\u00e9es.\n\n\n 5.3.1 DISTRIBUTION DU LOGICIEL SANS MODIFICATION\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 distribuer des copies conformes du Logiciel,\nsous forme de Code Source ou de Code Objet, \u00e0 condition que cette\ndistribution respecte les dispositions du Contrat dans leur totalit\u00e9 et\nsoit accompagn\u00e9e:\n\n 1. d'un exemplaire du Contrat,\n\n 2. d'un avertissement relatif \u00e0 la restriction de garantie et de\n responsabilit\u00e9 du Conc\u00e9dant telle que pr\u00e9vue aux articles 8\n et 9,\n\net que, dans le cas o\u00f9 seul le Code Objet du Logiciel est redistribu\u00e9,\nle Licenci\u00e9 permette aux futurs Licenci\u00e9s d'acc\u00e9der facilement au Code\nSource complet du Logiciel en indiquant les modalit\u00e9s d'acc\u00e8s, \u00e9tant\nentendu que le co\u00fbt additionnel d'acquisition du Code Source ne devra\npas exc\u00e9der le simple co\u00fbt de transfert des donn\u00e9es.\n\n\n 5.3.2 DISTRIBUTION DU LOGICIEL MODIFIE\n\nLorsque le Licenci\u00e9 apporte une Contribution au Logiciel, les conditions\nde distribution du Logiciel Modifi\u00e9 en r\u00e9sultant sont alors soumises \u00e0\nl'int\u00e9gralit\u00e9 des dispositions du Contrat.\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 distribuer le Logiciel Modifi\u00e9, sous forme de\ncode source ou de code objet, \u00e0 condition que cette distribution\nrespecte les dispositions du Contrat dans leur totalit\u00e9 et soit\naccompagn\u00e9e:\n\n 1. d'un exemplaire du Contrat,\n\n 2. d'un avertissement relatif \u00e0 la restriction de garantie et de\n responsabilit\u00e9 du Conc\u00e9dant telle que pr\u00e9vue aux articles 8\n et 9,\n\net que, dans le cas o\u00f9 seul le code objet du Logiciel Modifi\u00e9 est\nredistribu\u00e9, le Licenci\u00e9 permette aux futurs Licenci\u00e9s d'acc\u00e9der\nfacilement au code source complet du Logiciel Modifi\u00e9 en indiquant les\nmodalit\u00e9s d'acc\u00e8s, \u00e9tant entendu que le co\u00fbt additionnel d'acquisition\ndu code source ne devra pas exc\u00e9der le simple co\u00fbt de transfert des donn\u00e9es.\n\n\n 5.3.3 DISTRIBUTION DES MODULES EXTERNES\n\nLorsque le Licenci\u00e9 a d\u00e9velopp\u00e9 un Module Externe les conditions du\nContrat ne s'appliquent pas \u00e0 ce Module Externe, qui peut \u00eatre distribu\u00e9\nsous un contrat de licence diff\u00e9rent.\n\n\n 5.3.4 COMPATIBILITE AVEC LA LICENCE GNU GPL\n\nLe Licenci\u00e9 peut inclure un code soumis aux dispositions d'une des\nversions de la licence GNU GPL dans le Logiciel modifi\u00e9 ou non et\ndistribuer l'ensemble sous les conditions de la m\u00eame version de la\nlicence GNU GPL.\n\nLe Licenci\u00e9 peut inclure le Logiciel modifi\u00e9 ou non dans un code soumis\naux dispositions d'une des versions de la licence GNU GPL et distribuer\nl'ensemble sous les conditions de la m\u00eame version de la licence GNU GPL.\n\n\n Article 6 - PROPRIETE INTELLECTUELLE\n\n\n 6.1 SUR LE LOGICIEL INITIAL\n\nLe Titulaire est d\u00e9tenteur des droits patrimoniaux sur le Logiciel\nInitial. Toute utilisation du Logiciel Initial est soumise au respect\ndes conditions dans lesquelles le Titulaire a choisi de diffuser son\noeuvre et nul autre n'a la facult\u00e9 de modifier les conditions de\ndiffusion de ce Logiciel Initial.\n\nLe Titulaire s'engage \u00e0 ce que le Logiciel Initial reste au moins r\u00e9gi\npar le Contrat et ce, pour la dur\u00e9e vis\u00e9e \u00e0 l'article 4.2.\n\n\n 6.2 SUR LES CONTRIBUTIONS\n\nLe Licenci\u00e9 qui a d\u00e9velopp\u00e9 une Contribution est titulaire sur celle-ci\ndes droits de propri\u00e9t\u00e9 intellectuelle dans les conditions d\u00e9finies par\nla l\u00e9gislation applicable.\n\n\n 6.3 SUR LES MODULES EXTERNES\n\nLe Licenci\u00e9 qui a d\u00e9velopp\u00e9 un Module Externe est titulaire sur celui-ci\ndes droits de propri\u00e9t\u00e9 intellectuelle dans les conditions d\u00e9finies par\nla l\u00e9gislation applicable et reste libre du choix du contrat r\u00e9gissant\nsa diffusion.\n\n\n 6.4 DISPOSITIONS COMMUNES\n\nLe Licenci\u00e9 s'engage express\u00e9ment:\n\n 1. \u00e0 ne pas supprimer ou modifier de quelque mani\u00e8re que ce soit les\n mentions de propri\u00e9t\u00e9 intellectuelle appos\u00e9es sur le Logiciel;\n\n 2. \u00e0 reproduire \u00e0 l'identique lesdites mentions de propri\u00e9t\u00e9\n intellectuelle sur les copies du Logiciel modifi\u00e9 ou non.\n\nLe Licenci\u00e9 s'engage \u00e0 ne pas porter atteinte, directement ou\nindirectement, aux droits de propri\u00e9t\u00e9 intellectuelle du Titulaire et/ou\ndes Contributeurs sur le Logiciel et \u00e0 prendre, le cas \u00e9ch\u00e9ant, \u00e0\nl'\u00e9gard de son personnel toutes les mesures n\u00e9cessaires pour assurer le\nrespect des dits droits de propri\u00e9t\u00e9 intellectuelle du Titulaire et/ou\ndes Contributeurs.\n\n\n Article 7 - SERVICES ASSOCIES\n\n7.1 Le Contrat n'oblige en aucun cas le Conc\u00e9dant \u00e0 la r\u00e9alisation de\nprestations d'assistance technique ou de maintenance du Logiciel.\n\nCependant le Conc\u00e9dant reste libre de proposer ce type de services. Les\ntermes et conditions d'une telle assistance technique et/ou d'une telle\nmaintenance seront alors d\u00e9termin\u00e9s dans un acte s\u00e9par\u00e9. Ces actes de\nmaintenance et/ou assistance technique n'engageront que la seule\nresponsabilit\u00e9 du Conc\u00e9dant qui les propose.\n\n7.2 De m\u00eame, tout Conc\u00e9dant est libre de proposer, sous sa seule\nresponsabilit\u00e9, \u00e0 ses licenci\u00e9s une garantie, qui n'engagera que lui,\nlors de la redistribution du Logiciel et/ou du Logiciel Modifi\u00e9 et ce,\ndans les conditions qu'il souhaite. Cette garantie et les modalit\u00e9s\nfinanci\u00e8res de son application feront l'objet d'un acte s\u00e9par\u00e9 entre le\nConc\u00e9dant et le Licenci\u00e9.\n\n\n Article 8 - RESPONSABILITE\n\n8.1 Sous r\u00e9serve des dispositions de l'article 8.2, le Licenci\u00e9 a la \nfacult\u00e9, sous r\u00e9serve de prouver la faute du Conc\u00e9dant concern\u00e9, de\nsolliciter la r\u00e9paration du pr\u00e9judice direct qu'il subirait du fait du\nLogiciel et dont il apportera la preuve.\n\n8.2 La responsabilit\u00e9 du Conc\u00e9dant est limit\u00e9e aux engagements pris en\napplication du Contrat et ne saurait \u00eatre engag\u00e9e en raison notamment:\n(i) des dommages dus \u00e0 l'inex\u00e9cution, totale ou partielle, de ses\nobligations par le Licenci\u00e9, (ii) des dommages directs ou indirects\nd\u00e9coulant de l'utilisation ou des performances du Logiciel subis par le\nLicenci\u00e9 et (iii) plus g\u00e9n\u00e9ralement d'un quelconque dommage indirect. En\nparticulier, les Parties conviennent express\u00e9ment que tout pr\u00e9judice\nfinancier ou commercial (par exemple perte de donn\u00e9es, perte de\nb\u00e9n\u00e9fices, perte d'exploitation, perte de client\u00e8le ou de commandes,\nmanque \u00e0 gagner, trouble commercial quelconque) ou toute action dirig\u00e9e\ncontre le Licenci\u00e9 par un tiers, constitue un dommage indirect et\nn'ouvre pas droit \u00e0 r\u00e9paration par le Conc\u00e9dant.\n\n\n Article 9 - GARANTIE\n\n9.1 Le Licenci\u00e9 reconna\u00eet que l'\u00e9tat actuel des connaissances\nscientifiques et techniques au moment de la mise en circulation du\nLogiciel ne permet pas d'en tester et d'en v\u00e9rifier toutes les\nutilisations ni de d\u00e9tecter l'existence d'\u00e9ventuels d\u00e9fauts. L'attention\ndu Licenci\u00e9 a \u00e9t\u00e9 attir\u00e9e sur ce point sur les risques associ\u00e9s au\nchargement, \u00e0 l'utilisation, la modification et/ou au d\u00e9veloppement et \u00e0\nla reproduction du Logiciel qui sont r\u00e9serv\u00e9s \u00e0 des utilisateurs avertis.\n\nIl rel\u00e8ve de la responsabilit\u00e9 du Licenci\u00e9 de contr\u00f4ler, par tous\nmoyens, l'ad\u00e9quation du produit \u00e0 ses besoins, son bon fonctionnement et\nde s'assurer qu'il ne causera pas de dommages aux personnes et aux biens.\n\n9.2 Le Conc\u00e9dant d\u00e9clare de bonne foi \u00eatre en droit de conc\u00e9der\nl'ensemble des droits attach\u00e9s au Logiciel (comprenant notamment les\ndroits vis\u00e9s \u00e0 l'article 5).\n\n9.3 Le Licenci\u00e9 reconna\u00eet que le Logiciel est fourni \"en l'\u00e9tat\" par le\nConc\u00e9dant sans autre garantie, expresse ou tacite, que celle pr\u00e9vue \u00e0\nl'article 9.2 et notamment sans aucune garantie sur sa valeur commerciale, \nson caract\u00e8re s\u00e9curis\u00e9, innovant ou pertinent.\n\nEn particulier, le Conc\u00e9dant ne garantit pas que le Logiciel est exempt\nd'erreur, qu'il fonctionnera sans interruption, qu'il sera compatible\navec l'\u00e9quipement du Licenci\u00e9 et sa configuration logicielle ni qu'il\nremplira les besoins du Licenci\u00e9.\n\n9.4 Le Conc\u00e9dant ne garantit pas, de mani\u00e8re expresse ou tacite, que le\nLogiciel ne porte pas atteinte \u00e0 un quelconque droit de propri\u00e9t\u00e9\nintellectuelle d'un tiers portant sur un brevet, un logiciel ou sur tout\nautre droit de propri\u00e9t\u00e9. Ainsi, le Conc\u00e9dant exclut toute garantie au\nprofit du Licenci\u00e9 contre les actions en contrefa\u00e7on qui pourraient \u00eatre\ndiligent\u00e9es au titre de l'utilisation, de la modification, et de la\nredistribution du Logiciel. N\u00e9anmoins, si de telles actions sont\nexerc\u00e9es contre le Licenci\u00e9, le Conc\u00e9dant lui apportera son aide\ntechnique et juridique pour sa d\u00e9fense. Cette aide technique et\njuridique est d\u00e9termin\u00e9e au cas par cas entre le Conc\u00e9dant concern\u00e9 et\nle Licenci\u00e9 dans le cadre d'un protocole d'accord. Le Conc\u00e9dant d\u00e9gage\ntoute responsabilit\u00e9 quant \u00e0 l'utilisation de la d\u00e9nomination du\nLogiciel par le Licenci\u00e9. Aucune garantie n'est apport\u00e9e quant \u00e0\nl'existence de droits ant\u00e9rieurs sur le nom du Logiciel et sur\nl'existence d'une marque.\n\n\n Article 10 - RESILIATION\n\n10.1 En cas de manquement par le Licenci\u00e9 aux obligations mises \u00e0 sa\ncharge par le Contrat, le Conc\u00e9dant pourra r\u00e9silier de plein droit le\nContrat trente (30) jours apr\u00e8s notification adress\u00e9e au Licenci\u00e9 et\nrest\u00e9e sans effet.\n\n10.2 Le Licenci\u00e9 dont le Contrat est r\u00e9sili\u00e9 n'est plus autoris\u00e9 \u00e0\nutiliser, modifier ou distribuer le Logiciel. Cependant, toutes les\nlicences qu'il aura conc\u00e9d\u00e9es ant\u00e9rieurement \u00e0 la r\u00e9siliation du Contrat\nresteront valides sous r\u00e9serve qu'elles aient \u00e9t\u00e9 effectu\u00e9es en\nconformit\u00e9 avec le Contrat.\n\n\n Article 11 - DISPOSITIONS DIVERSES\n\n\n 11.1 CAUSE EXTERIEURE\n\nAucune des Parties ne sera responsable d'un retard ou d'une d\u00e9faillance\nd'ex\u00e9cution du Contrat qui serait d\u00fb \u00e0 un cas de force majeure, un cas\nfortuit ou une cause ext\u00e9rieure, telle que, notamment, le mauvais\nfonctionnement ou les interruptions du r\u00e9seau \u00e9lectrique ou de\nt\u00e9l\u00e9communication, la paralysie du r\u00e9seau li\u00e9e \u00e0 une attaque\ninformatique, l'intervention des autorit\u00e9s gouvernementales, les\ncatastrophes naturelles, les d\u00e9g\u00e2ts des eaux, les tremblements de terre,\nle feu, les explosions, les gr\u00e8ves et les conflits sociaux, l'\u00e9tat de\nguerre...\n\n11.2 Le fait, par l'une ou l'autre des Parties, d'omettre en une ou\nplusieurs occasions de se pr\u00e9valoir d'une ou plusieurs dispositions du\nContrat, ne pourra en aucun cas impliquer renonciation par la Partie\nint\u00e9ress\u00e9e \u00e0 s'en pr\u00e9valoir ult\u00e9rieurement.\n\n11.3 Le Contrat annule et remplace toute convention ant\u00e9rieure, \u00e9crite\nou orale, entre les Parties sur le m\u00eame objet et constitue l'accord\nentier entre les Parties sur cet objet. Aucune addition ou modification\naux termes du Contrat n'aura d'effet \u00e0 l'\u00e9gard des Parties \u00e0 moins\nd'\u00eatre faite par \u00e9crit et sign\u00e9e par leurs repr\u00e9sentants d\u00fbment habilit\u00e9s.\n\n11.4 Dans l'hypoth\u00e8se o\u00f9 une ou plusieurs des dispositions du Contrat\ns'av\u00e8rerait contraire \u00e0 une loi ou \u00e0 un texte applicable, existants ou\nfuturs, cette loi ou ce texte pr\u00e9vaudrait, et les Parties feraient les\namendements n\u00e9cessaires pour se conformer \u00e0 cette loi ou \u00e0 ce texte.\nToutes les autres dispositions resteront en vigueur. De m\u00eame, la\nnullit\u00e9, pour quelque raison que ce soit, d'une des dispositions du\nContrat ne saurait entra\u00eener la nullit\u00e9 de l'ensemble du Contrat.\n\n\n 11.5 LANGUE\n\nLe Contrat est r\u00e9dig\u00e9 en langue fran\u00e7aise et en langue anglaise, ces\ndeux versions faisant \u00e9galement foi.\n\n\n Article 12 - NOUVELLES VERSIONS DU CONTRAT\n\n12.1 Toute personne est autoris\u00e9e \u00e0 copier et distribuer des copies de\nce Contrat.\n\n12.2 Afin d'en pr\u00e9server la coh\u00e9rence, le texte du Contrat est prot\u00e9g\u00e9\net ne peut \u00eatre modifi\u00e9 que par les auteurs de la licence, lesquels se\nr\u00e9servent le droit de publier p\u00e9riodiquement des mises \u00e0 jour ou de\nnouvelles versions du Contrat, qui poss\u00e9deront chacune un num\u00e9ro\ndistinct. Ces versions ult\u00e9rieures seront susceptibles de prendre en\ncompte de nouvelles probl\u00e9matiques rencontr\u00e9es par les logiciels libres.\n\n12.3 Tout Logiciel diffus\u00e9 sous une version donn\u00e9e du Contrat ne pourra\nfaire l'objet d'une diffusion ult\u00e9rieure que sous la m\u00eame version du\nContrat ou une version post\u00e9rieure, sous r\u00e9serve des dispositions de\nl'article 5.3.4.\n\n\n Article 13 - LOI APPLICABLE ET COMPETENCE TERRITORIALE\n\n13.1 Le Contrat est r\u00e9gi par la loi fran\u00e7aise. Les Parties conviennent\nde tenter de r\u00e9gler \u00e0 l'amiable les diff\u00e9rends ou litiges qui\nviendraient \u00e0 se produire par suite ou \u00e0 l'occasion du Contrat.\n\n13.2 A d\u00e9faut d'accord amiable dans un d\u00e9lai de deux (2) mois \u00e0 compter\nde leur survenance et sauf situation relevant d'une proc\u00e9dure d'urgence,\nles diff\u00e9rends ou litiges seront port\u00e9s par la Partie la plus diligente\ndevant les Tribunaux comp\u00e9tents de Paris.\n\n\nVersion 2.0 du 2006-09-05.", + "json": "cecill-2.0-fr.json", + "yaml": "cecill-2.0-fr.yml", + "html": "cecill-2.0-fr.html", + "license": "cecill-2.0-fr.LICENSE" + }, + { + "license_key": "cecill-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "CECILL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " CeCILL FREE SOFTWARE LICENSE AGREEMENT\n\nVersion 2.1 dated 2013-06-21\n\n\n Notice\n\nThis Agreement is a Free Software license agreement that is the result\nof discussions between its authors in order to ensure compliance with\nthe two main principles guiding its drafting:\n\n * firstly, compliance with the principles governing the distribution\n of Free Software: access to source code, broad rights granted to users,\n * secondly, the election of a governing law, French law, with which it\n is conformant, both as regards the law of torts and intellectual\n property law, and the protection that it offers to both authors and\n holders of the economic rights over software.\n\nThe authors of the CeCILL (for Ce[a] C[nrs] I[nria] L[ogiciel] L[ibre]) \nlicense are: \n\nCommissariat \u00e0 l'\u00e9nergie atomique et aux \u00e9nergies alternatives - CEA, a\npublic scientific, technical and industrial research establishment,\nhaving its principal place of business at 25 rue Leblanc, immeuble Le\nPonant D, 75015 Paris, France.\n\nCentre National de la Recherche Scientifique - CNRS, a public scientific\nand technological establishment, having its principal place of business\nat 3 rue Michel-Ange, 75794 Paris cedex 16, France.\n\nInstitut National de Recherche en Informatique et en Automatique -\nInria, a public scientific and technological establishment, having its\nprincipal place of business at Domaine de Voluceau, Rocquencourt, BP\n105, 78153 Le Chesnay cedex, France.\n\n\n Preamble\n\nThe purpose of this Free Software license agreement is to grant users\nthe right to modify and redistribute the software governed by this\nlicense within the framework of an open source distribution model.\n\nThe exercising of this right is conditional upon certain obligations for\nusers so as to preserve this status for all subsequent redistributions.\n\nIn consideration of access to the source code and the rights to copy,\nmodify and redistribute granted by the license, users are provided only\nwith a limited warranty and the software's author, the holder of the\neconomic rights, and the successive licensors only have limited liability.\n\nIn this respect, the risks associated with loading, using, modifying\nand/or developing or reproducing the software by the user are brought to\nthe user's attention, given its Free Software status, which may make it\ncomplicated to use, with the result that its use is reserved for\ndevelopers and experienced professionals having in-depth computer\nknowledge. Users are therefore encouraged to load and test the\nsuitability of the software as regards their requirements in conditions\nenabling the security of their systems and/or data to be ensured and,\nmore generally, to use and operate it in the same conditions of\nsecurity. This Agreement may be freely reproduced and published,\nprovided it is not altered, and that no provisions are either added or\nremoved herefrom.\n\nThis Agreement may apply to any or all software for which the holder of\nthe economic rights decides to submit the use thereof to its provisions.\n\nFrequently asked questions can be found on the official website of the\nCeCILL licenses family (http://www.cecill.info/index.en.html) for any \nnecessary clarification.\n\n\n Article 1 - DEFINITIONS\n\nFor the purpose of this Agreement, when the following expressions\ncommence with a capital letter, they shall have the following meaning:\n\nAgreement: means this license agreement, and its possible subsequent\nversions and annexes.\n\nSoftware: means the software in its Object Code and/or Source Code form\nand, where applicable, its documentation, \"as is\" when the Licensee\naccepts the Agreement.\n\nInitial Software: means the Software in its Source Code and possibly its\nObject Code form and, where applicable, its documentation, \"as is\" when\nit is first distributed under the terms and conditions of the Agreement.\n\nModified Software: means the Software modified by at least one\nContribution.\n\nSource Code: means all the Software's instructions and program lines to\nwhich access is required so as to modify the Software.\n\nObject Code: means the binary files originating from the compilation of\nthe Source Code.\n\nHolder: means the holder(s) of the economic rights over the Initial\nSoftware.\n\nLicensee: means the Software user(s) having accepted the Agreement.\n\nContributor: means a Licensee having made at least one Contribution.\n\nLicensor: means the Holder, or any other individual or legal entity, who\ndistributes the Software under the Agreement.\n\nContribution: means any or all modifications, corrections, translations,\nadaptations and/or new functions integrated into the Software by any or\nall Contributors, as well as any or all Internal Modules.\n\nModule: means a set of sources files including their documentation that\nenables supplementary functions or services in addition to those offered\nby the Software.\n\nExternal Module: means any or all Modules, not derived from the\nSoftware, so that this Module and the Software run in separate address\nspaces, with one calling the other when they are run.\n\nInternal Module: means any or all Module, connected to the Software so\nthat they both execute in the same address space.\n\nGNU GPL: means the GNU General Public License version 2 or any\nsubsequent version, as published by the Free Software Foundation Inc.\n\nGNU Affero GPL: means the GNU Affero General Public License version 3 or\nany subsequent version, as published by the Free Software Foundation Inc.\n\nEUPL: means the European Union Public License version 1.1 or any\nsubsequent version, as published by the European Commission.\n\nParties: mean both the Licensee and the Licensor.\n\nThese expressions may be used both in singular and plural form.\n\n\n Article 2 - PURPOSE\n\nThe purpose of the Agreement is the grant by the Licensor to the\nLicensee of a non-exclusive, transferable and worldwide license for the\nSoftware as set forth in Article 5 <#scope> hereinafter for the whole\nterm of the protection granted by the rights over said Software.\n\n\n Article 3 - ACCEPTANCE\n\n3.1 The Licensee shall be deemed as having accepted the terms and\nconditions of this Agreement upon the occurrence of the first of the\nfollowing events:\n\n * (i) loading the Software by any or all means, notably, by\n downloading from a remote server, or by loading from a physical medium;\n * (ii) the first time the Licensee exercises any of the rights granted\n hereunder.\n\n3.2 One copy of the Agreement, containing a notice relating to the\ncharacteristics of the Software, to the limited warranty, and to the\nfact that its use is restricted to experienced users has been provided\nto the Licensee prior to its acceptance as set forth in Article 3.1\n<#accepting> hereinabove, and the Licensee hereby acknowledges that it\nhas read and understood it.\n\n\n Article 4 - EFFECTIVE DATE AND TERM\n\n\n 4.1 EFFECTIVE DATE\n\nThe Agreement shall become effective on the date when it is accepted by\nthe Licensee as set forth in Article 3.1 <#accepting>.\n\n\n 4.2 TERM\n\nThe Agreement shall remain in force for the entire legal term of\nprotection of the economic rights over the Software.\n\n\n Article 5 - SCOPE OF RIGHTS GRANTED\n\nThe Licensor hereby grants to the Licensee, who accepts, the following\nrights over the Software for any or all use, and for the term of the\nAgreement, on the basis of the terms and conditions set forth hereinafter.\n\nBesides, if the Licensor owns or comes to own one or more patents\nprotecting all or part of the functions of the Software or of its\ncomponents, the Licensor undertakes not to enforce the rights granted by\nthese patents against successive Licensees using, exploiting or\nmodifying the Software. If these patents are transferred, the Licensor\nundertakes to have the transferees subscribe to the obligations set\nforth in this paragraph.\n\n\n 5.1 RIGHT OF USE\n\nThe Licensee is authorized to use the Software, without any limitation\nas to its fields of application, with it being hereinafter specified\nthat this comprises:\n\n 1. permanent or temporary reproduction of all or part of the Software\n by any or all means and in any or all form.\n\n 2. loading, displaying, running, or storing the Software on any or all\n medium.\n\n 3. entitlement to observe, study or test its operation so as to\n determine the ideas and principles behind any or all constituent\n elements of said Software. This shall apply when the Licensee\n carries out any or all loading, displaying, running, transmission or\n storage operation as regards the Software, that it is entitled to\n carry out hereunder.\n\n\n 5.2 ENTITLEMENT TO MAKE CONTRIBUTIONS\n\nThe right to make Contributions includes the right to translate, adapt,\narrange, or make any or all modifications to the Software, and the right\nto reproduce the resulting software.\n\nThe Licensee is authorized to make any or all Contributions to the\nSoftware provided that it includes an explicit notice that it is the\nauthor of said Contribution and indicates the date of the creation thereof.\n\n\n 5.3 RIGHT OF DISTRIBUTION\n\nIn particular, the right of distribution includes the right to publish,\ntransmit and communicate the Software to the general public on any or\nall medium, and by any or all means, and the right to market, either in\nconsideration of a fee, or free of charge, one or more copies of the\nSoftware by any means.\n\nThe Licensee is further authorized to distribute copies of the modified\nor unmodified Software to third parties according to the terms and\nconditions set forth hereinafter.\n\n\n 5.3.1 DISTRIBUTION OF SOFTWARE WITHOUT MODIFICATION\n\nThe Licensee is authorized to distribute true copies of the Software in\nSource Code or Object Code form, provided that said distribution\ncomplies with all the provisions of the Agreement and is accompanied by:\n\n 1. a copy of the Agreement,\n\n 2. a notice relating to the limitation of both the Licensor's warranty\n and liability as set forth in Articles 8 and 9,\n\nand that, in the event that only the Object Code of the Software is\nredistributed, the Licensee allows effective access to the full Source\nCode of the Software for a period of at least three years from the\ndistribution of the Software, it being understood that the additional\nacquisition cost of the Source Code shall not exceed the cost of the\ndata transfer.\n\n\n 5.3.2 DISTRIBUTION OF MODIFIED SOFTWARE\n\nWhen the Licensee makes a Contribution to the Software, the terms and\nconditions for the distribution of the resulting Modified Software\nbecome subject to all the provisions of this Agreement.\n\nThe Licensee is authorized to distribute the Modified Software, in\nsource code or object code form, provided that said distribution\ncomplies with all the provisions of the Agreement and is accompanied by:\n\n 1. a copy of the Agreement,\n\n 2. a notice relating to the limitation of both the Licensor's warranty\n and liability as set forth in Articles 8 and 9,\n\nand, in the event that only the object code of the Modified Software is\nredistributed,\n\n 3. a note stating the conditions of effective access to the full source\n code of the Modified Software for a period of at least three years\n from the distribution of the Modified Software, it being understood\n that the additional acquisition cost of the source code shall not\n exceed the cost of the data transfer.\n\n\n 5.3.3 DISTRIBUTION OF EXTERNAL MODULES\n\nWhen the Licensee has developed an External Module, the terms and\nconditions of this Agreement do not apply to said External Module, that\nmay be distributed under a separate license agreement.\n\n\n 5.3.4 COMPATIBILITY WITH OTHER LICENSES\n\nThe Licensee can include a code that is subject to the provisions of one\nof the versions of the GNU GPL, GNU Affero GPL and/or EUPL in the\nModified or unmodified Software, and distribute that entire code under\nthe terms of the same version of the GNU GPL, GNU Affero GPL and/or EUPL.\n\nThe Licensee can include the Modified or unmodified Software in a code\nthat is subject to the provisions of one of the versions of the GNU GPL,\nGNU Affero GPL and/or EUPL and distribute that entire code under the\nterms of the same version of the GNU GPL, GNU Affero GPL and/or EUPL.\n\n\n Article 6 - INTELLECTUAL PROPERTY\n\n\n 6.1 OVER THE INITIAL SOFTWARE\n\nThe Holder owns the economic rights over the Initial Software. Any or\nall use of the Initial Software is subject to compliance with the terms\nand conditions under which the Holder has elected to distribute its work\nand no one shall be entitled to modify the terms and conditions for the\ndistribution of said Initial Software.\n\nThe Holder undertakes that the Initial Software will remain ruled at\nleast by this Agreement, for the duration set forth in Article 4.2 <#term>.\n\n\n 6.2 OVER THE CONTRIBUTIONS\n\nThe Licensee who develops a Contribution is the owner of the\nintellectual property rights over this Contribution as defined by\napplicable law.\n\n\n 6.3 OVER THE EXTERNAL MODULES\n\nThe Licensee who develops an External Module is the owner of the\nintellectual property rights over this External Module as defined by\napplicable law and is free to choose the type of agreement that shall\ngovern its distribution.\n\n\n 6.4 JOINT PROVISIONS\n\nThe Licensee expressly undertakes:\n\n 1. not to remove, or modify, in any manner, the intellectual property\n notices attached to the Software;\n\n 2. to reproduce said notices, in an identical manner, in the copies of\n the Software modified or not.\n\nThe Licensee undertakes not to directly or indirectly infringe the\nintellectual property rights on the Software of the Holder and/or\nContributors, and to take, where applicable, vis-\u00e0-vis its staff, any\nand all measures required to ensure respect of said intellectual\nproperty rights of the Holder and/or Contributors.\n\n\n Article 7 - RELATED SERVICES\n\n7.1 Under no circumstances shall the Agreement oblige the Licensor to\nprovide technical assistance or maintenance services for the Software.\n\nHowever, the Licensor is entitled to offer this type of services. The\nterms and conditions of such technical assistance, and/or such\nmaintenance, shall be set forth in a separate instrument. Only the\nLicensor offering said maintenance and/or technical assistance services\nshall incur liability therefor.\n\n7.2 Similarly, any Licensor is entitled to offer to its licensees, under\nits sole responsibility, a warranty, that shall only be binding upon\nitself, for the redistribution of the Software and/or the Modified\nSoftware, under terms and conditions that it is free to decide. Said\nwarranty, and the financial terms and conditions of its application,\nshall be subject of a separate instrument executed between the Licensor\nand the Licensee.\n\n\n Article 8 - LIABILITY\n\n8.1 Subject to the provisions of Article 8.2, the Licensee shall be\nentitled to claim compensation for any direct loss it may have suffered\nfrom the Software as a result of a fault on the part of the relevant\nLicensor, subject to providing evidence thereof.\n\n8.2 The Licensor's liability is limited to the commitments made under\nthis Agreement and shall not be incurred as a result of in particular:\n(i) loss due the Licensee's total or partial failure to fulfill its\nobligations, (ii) direct or consequential loss that is suffered by the\nLicensee due to the use or performance of the Software, and (iii) more\ngenerally, any consequential loss. In particular the Parties expressly\nagree that any or all pecuniary or business loss (i.e. loss of data,\nloss of profits, operating loss, loss of customers or orders,\nopportunity cost, any disturbance to business activities) or any or all\nlegal proceedings instituted against the Licensee by a third party,\nshall constitute consequential loss and shall not provide entitlement to\nany or all compensation from the Licensor.\n\n\n Article 9 - WARRANTY\n\n9.1 The Licensee acknowledges that the scientific and technical\nstate-of-the-art when the Software was distributed did not enable all\npossible uses to be tested and verified, nor for the presence of\npossible defects to be detected. In this respect, the Licensee's\nattention has been drawn to the risks associated with loading, using,\nmodifying and/or developing and reproducing the Software which are\nreserved for experienced users.\n\nThe Licensee shall be responsible for verifying, by any or all means,\nthe suitability of the product for its requirements, its good working\norder, and for ensuring that it shall not cause damage to either persons\nor properties.\n\n9.2 The Licensor hereby represents, in good faith, that it is entitled\nto grant all the rights over the Software (including in particular the\nrights set forth in Article 5 <#scope>).\n\n9.3 The Licensee acknowledges that the Software is supplied \"as is\" by\nthe Licensor without any other express or tacit warranty, other than\nthat provided for in Article 9.2 <#good-faith> and, in particular,\nwithout any warranty as to its commercial value, its secured, safe,\ninnovative or relevant nature.\n\nSpecifically, the Licensor does not warrant that the Software is free\nfrom any error, that it will operate without interruption, that it will\nbe compatible with the Licensee's own equipment and software\nconfiguration, nor that it will meet the Licensee's requirements.\n\n9.4 The Licensor does not either expressly or tacitly warrant that the\nSoftware does not infringe any third party intellectual property right\nrelating to a patent, software or any other property right. Therefore,\nthe Licensor disclaims any and all liability towards the Licensee\narising out of any or all proceedings for infringement that may be\ninstituted in respect of the use, modification and redistribution of the\nSoftware. Nevertheless, should such proceedings be instituted against\nthe Licensee, the Licensor shall provide it with technical and legal\nexpertise for its defense. Such technical and legal expertise shall be\ndecided on a case-by-case basis between the relevant Licensor and the\nLicensee pursuant to a memorandum of understanding. The Licensor\ndisclaims any and all liability as regards the Licensee's use of the\nname of the Software. No warranty is given as regards the existence of\nprior rights over the name of the Software or as regards the existence\nof a trademark.\n\n\n Article 10 - TERMINATION\n\n10.1 In the event of a breach by the Licensee of its obligations\nhereunder, the Licensor may automatically terminate this Agreement\nthirty (30) days after notice has been sent to the Licensee and has\nremained ineffective.\n\n10.2 A Licensee whose Agreement is terminated shall no longer be\nauthorized to use, modify or distribute the Software. However, any\nlicenses that it may have granted prior to termination of the Agreement\nshall remain valid subject to their having been granted in compliance\nwith the terms and conditions hereof.\n\n\n Article 11 - MISCELLANEOUS\n\n\n 11.1 EXCUSABLE EVENTS\n\nNeither Party shall be liable for any or all delay, or failure to\nperform the Agreement, that may be attributable to an event of force\nmajeure, an act of God or an outside cause, such as defective\nfunctioning or interruptions of the electricity or telecommunications\nnetworks, network paralysis following a virus attack, intervention by\ngovernment authorities, natural disasters, water damage, earthquakes,\nfire, explosions, strikes and labor unrest, war, etc.\n\n11.2 Any failure by either Party, on one or more occasions, to invoke\none or more of the provisions hereof, shall under no circumstances be\ninterpreted as being a waiver by the interested Party of its right to\ninvoke said provision(s) subsequently.\n\n11.3 The Agreement cancels and replaces any or all previous agreements,\nwhether written or oral, between the Parties and having the same\npurpose, and constitutes the entirety of the agreement between said\nParties concerning said purpose. No supplement or modification to the\nterms and conditions hereof shall be effective as between the Parties\nunless it is made in writing and signed by their duly authorized\nrepresentatives.\n\n11.4 In the event that one or more of the provisions hereof were to\nconflict with a current or future applicable act or legislative text,\nsaid act or legislative text shall prevail, and the Parties shall make\nthe necessary amendments so as to comply with said act or legislative\ntext. All other provisions shall remain effective. Similarly, invalidity\nof a provision of the Agreement, for any reason whatsoever, shall not\ncause the Agreement as a whole to be invalid.\n\n\n 11.5 LANGUAGE\n\nThe Agreement is drafted in both French and English and both versions\nare deemed authentic.\n\n\n Article 12 - NEW VERSIONS OF THE AGREEMENT\n\n12.1 Any person is authorized to duplicate and distribute copies of this\nAgreement.\n\n12.2 So as to ensure coherence, the wording of this Agreement is\nprotected and may only be modified by the authors of the License, who\nreserve the right to periodically publish updates or new versions of the\nAgreement, each with a separate number. These subsequent versions may\naddress new issues encountered by Free Software.\n\n12.3 Any Software distributed under a given version of the Agreement may\nonly be subsequently distributed under the same version of the Agreement\nor a subsequent version, subject to the provisions of Article 5.3.4\n<#compatibility>.\n\n\n Article 13 - GOVERNING LAW AND JURISDICTION\n\n13.1 The Agreement is governed by French law. The Parties agree to\nendeavor to seek an amicable solution to any disagreements or disputes\nthat may arise during the performance of the Agreement.\n\n13.2 Failing an amicable solution within two (2) months as from their\noccurrence, and unless emergency proceedings are necessary, the\ndisagreements or disputes shall be referred to the Paris Courts having\njurisdiction, by the more diligent Party.", + "json": "cecill-2.1.json", + "yaml": "cecill-2.1.yml", + "html": "cecill-2.1.html", + "license": "cecill-2.1.LICENSE" + }, + { + "license_key": "cecill-2.1-fr", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cecill-2.1-fr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL\n\nVersion 2.1 du 2013-06-21\n\n\n Avertissement\n\nCe contrat est une licence de logiciel libre issue d'une concertation\nentre ses auteurs afin que le respect de deux grands principes pr\u00e9side \u00e0\nsa r\u00e9daction:\n\n * d'une part, le respect des principes de diffusion des logiciels\n libres: acc\u00e8s au code source, droits \u00e9tendus conf\u00e9r\u00e9s aux utilisateurs,\n * d'autre part, la d\u00e9signation d'un droit applicable, le droit\n fran\u00e7ais, auquel elle est conforme, tant au regard du droit de la\n responsabilit\u00e9 civile que du droit de la propri\u00e9t\u00e9 intellectuelle et\n de la protection qu'il offre aux auteurs et titulaires des droits\n patrimoniaux sur un logiciel.\n\nLes auteurs de la licence CeCILL (Ce[a] C[nrs] I[nria] L[ogiciel] L[ibre])\nsont:\n\nCommissariat \u00e0 l'\u00e9nergie atomique et aux \u00e9nergies alternatives - CEA,\n\u00e9tablissement public de recherche \u00e0 caract\u00e8re scientifique, technique et\nindustriel, dont le si\u00e8ge est situ\u00e9 25 rue Leblanc, immeuble Le Ponant\nD, 75015 Paris.\n\nCentre National de la Recherche Scientifique - CNRS, \u00e9tablissement\npublic \u00e0 caract\u00e8re scientifique et technologique, dont le si\u00e8ge est\nsitu\u00e9 3 rue Michel-Ange, 75794 Paris cedex 16.\n\nInstitut National de Recherche en Informatique et en Automatique -\nInria, \u00e9tablissement public \u00e0 caract\u00e8re scientifique et technologique,\ndont le si\u00e8ge est situ\u00e9 Domaine de Voluceau, Rocquencourt, BP 105, 78153\nLe Chesnay cedex.\n\n\n Pr\u00e9ambule\n\nCe contrat est une licence de logiciel libre dont l'objectif est de\nconf\u00e9rer aux utilisateurs la libert\u00e9 de modification et de\nredistribution du logiciel r\u00e9gi par cette licence dans le cadre d'un\nmod\u00e8le de diffusion en logiciel libre.\n\nL'exercice de ces libert\u00e9s est assorti de certains devoirs \u00e0 la charge\ndes utilisateurs afin de pr\u00e9server ce statut au cours des\nredistributions ult\u00e9rieures.\n\nL'accessibilit\u00e9 au code source et les droits de copie, de modification\net de redistribution qui en d\u00e9coulent ont pour contrepartie de n'offrir\naux utilisateurs qu'une garantie limit\u00e9e et de ne faire peser sur\nl'auteur du logiciel, le titulaire des droits patrimoniaux et les\nconc\u00e9dants successifs qu'une responsabilit\u00e9 restreinte.\n\nA cet \u00e9gard l'attention de l'utilisateur est attir\u00e9e sur les risques\nassoci\u00e9s au chargement, \u00e0 l'utilisation, \u00e0 la modification et/ou au\nd\u00e9veloppement et \u00e0 la reproduction du logiciel par l'utilisateur \u00e9tant\ndonn\u00e9 sa sp\u00e9cificit\u00e9 de logiciel libre, qui peut le rendre complexe \u00e0\nmanipuler et qui le r\u00e9serve donc \u00e0 des d\u00e9veloppeurs ou des\nprofessionnels avertis poss\u00e9dant des connaissances informatiques\napprofondies. Les utilisateurs sont donc invit\u00e9s \u00e0 charger et tester\nl'ad\u00e9quation du logiciel \u00e0 leurs besoins dans des conditions permettant\nd'assurer la s\u00e9curit\u00e9 de leurs syst\u00e8mes et/ou de leurs donn\u00e9es et, plus\ng\u00e9n\u00e9ralement, \u00e0 l'utiliser et l'exploiter dans les m\u00eames conditions de\ns\u00e9curit\u00e9. Ce contrat peut \u00eatre reproduit et diffus\u00e9 librement, sous\nr\u00e9serve de le conserver en l'\u00e9tat, sans ajout ni suppression de clauses.\n\nCe contrat est susceptible de s'appliquer \u00e0 tout logiciel dont le\ntitulaire des droits patrimoniaux d\u00e9cide de soumettre l'exploitation aux\ndispositions qu'il contient.\n\nUne liste de questions fr\u00e9quemment pos\u00e9es se trouve sur le site web\nofficiel de la famille des licences CeCILL \n(http://www.cecill.info/index.fr.html) pour toute clarification qui\nserait n\u00e9cessaire.\n\n\n Article 1 - DEFINITIONS\n\nDans ce contrat, les termes suivants, lorsqu'ils seront \u00e9crits avec une\nlettre capitale, auront la signification suivante:\n\nContrat: d\u00e9signe le pr\u00e9sent contrat de licence, ses \u00e9ventuelles versions\npost\u00e9rieures et annexes.\n\nLogiciel: d\u00e9signe le logiciel sous sa forme de Code Objet et/ou de Code\nSource et le cas \u00e9ch\u00e9ant sa documentation, dans leur \u00e9tat au moment de\nl'acceptation du Contrat par le Licenci\u00e9.\n\nLogiciel Initial: d\u00e9signe le Logiciel sous sa forme de Code Source et\n\u00e9ventuellement de Code Objet et le cas \u00e9ch\u00e9ant sa documentation, dans\nleur \u00e9tat au moment de leur premi\u00e8re diffusion sous les termes du Contrat.\n\nLogiciel Modifi\u00e9: d\u00e9signe le Logiciel modifi\u00e9 par au moins une\nContribution.\n\nCode Source: d\u00e9signe l'ensemble des instructions et des lignes de\nprogramme du Logiciel et auquel l'acc\u00e8s est n\u00e9cessaire en vue de\nmodifier le Logiciel.\n\nCode Objet: d\u00e9signe les fichiers binaires issus de la compilation du\nCode Source.\n\nTitulaire: d\u00e9signe le ou les d\u00e9tenteurs des droits patrimoniaux d'auteur\nsur le Logiciel Initial.\n\nLicenci\u00e9: d\u00e9signe le ou les utilisateurs du Logiciel ayant accept\u00e9 le\nContrat.\n\nContributeur: d\u00e9signe le Licenci\u00e9 auteur d'au moins une Contribution.\n\nConc\u00e9dant: d\u00e9signe le Titulaire ou toute personne physique ou morale\ndistribuant le Logiciel sous le Contrat.\n\nContribution: d\u00e9signe l'ensemble des modifications, corrections,\ntraductions, adaptations et/ou nouvelles fonctionnalit\u00e9s int\u00e9gr\u00e9es dans\nle Logiciel par tout Contributeur, ainsi que tout Module Interne.\n\nModule: d\u00e9signe un ensemble de fichiers sources y compris leur\ndocumentation qui permet de r\u00e9aliser des fonctionnalit\u00e9s ou services\nsuppl\u00e9mentaires \u00e0 ceux fournis par le Logiciel.\n\nModule Externe: d\u00e9signe tout Module, non d\u00e9riv\u00e9 du Logiciel, tel que ce\nModule et le Logiciel s'ex\u00e9cutent dans des espaces d'adressage\ndiff\u00e9rents, l'un appelant l'autre au moment de leur ex\u00e9cution.\n\nModule Interne: d\u00e9signe tout Module li\u00e9 au Logiciel de telle sorte\nqu'ils s'ex\u00e9cutent dans le m\u00eame espace d'adressage.\n\nGNU GPL: d\u00e9signe la GNU General Public License dans sa version 2 ou\ntoute version ult\u00e9rieure, telle que publi\u00e9e par Free Software Foundation\nInc.\n\nGNU Affero GPL: d\u00e9signe la GNU Affero General Public License dans sa\nversion 3 ou toute version ult\u00e9rieure, telle que publi\u00e9e par Free\nSoftware Foundation Inc.\n\nEUPL: d\u00e9signe la Licence Publique de l'Union europ\u00e9enne dans sa version\n1.1 ou toute version ult\u00e9rieure, telle que publi\u00e9e par la Commission\nEurop\u00e9enne.\n\nParties: d\u00e9signe collectivement le Licenci\u00e9 et le Conc\u00e9dant.\n\nCes termes s'entendent au singulier comme au pluriel.\n\n\n Article 2 - OBJET\n\nLe Contrat a pour objet la concession par le Conc\u00e9dant au Licenci\u00e9 d'une\nlicence non exclusive, cessible et mondiale du Logiciel telle que\nd\u00e9finie ci-apr\u00e8s \u00e0 l'article 5 <#etendue> pour toute la dur\u00e9e de\nprotection des droits portant sur ce Logiciel.\n\n\n Article 3 - ACCEPTATION\n\n3.1 L'acceptation par le Licenci\u00e9 des termes du Contrat est r\u00e9put\u00e9e\nacquise du fait du premier des faits suivants:\n\n * (i) le chargement du Logiciel par tout moyen notamment par\n t\u00e9l\u00e9chargement \u00e0 partir d'un serveur distant ou par chargement \u00e0\n partir d'un support physique;\n * (ii) le premier exercice par le Licenci\u00e9 de l'un quelconque des\n droits conc\u00e9d\u00e9s par le Contrat.\n\n3.2 Un exemplaire du Contrat, contenant notamment un avertissement\nrelatif aux sp\u00e9cificit\u00e9s du Logiciel, \u00e0 la restriction de garantie et \u00e0\nla limitation \u00e0 un usage par des utilisateurs exp\u00e9riment\u00e9s a \u00e9t\u00e9 mis \u00e0\ndisposition du Licenci\u00e9 pr\u00e9alablement \u00e0 son acceptation telle que\nd\u00e9finie \u00e0 l'article 3.1 <#acceptation-acquise> ci dessus et le Licenci\u00e9\nreconna\u00eet en avoir pris connaissance.\n\n\n Article 4 - ENTREE EN VIGUEUR ET DUREE\n\n\n 4.1 ENTREE EN VIGUEUR\n\nLe Contrat entre en vigueur \u00e0 la date de son acceptation par le Licenci\u00e9\ntelle que d\u00e9finie en 3.1 <#acceptation-acquise>.\n\n\n 4.2 DUREE\n\nLe Contrat produira ses effets pendant toute la dur\u00e9e l\u00e9gale de\nprotection des droits patrimoniaux portant sur le Logiciel.\n\n\n Article 5 - ETENDUE DES DROITS CONCEDES\n\nLe Conc\u00e9dant conc\u00e8de au Licenci\u00e9, qui accepte, les droits suivants sur\nle Logiciel pour toutes destinations et pour la dur\u00e9e du Contrat dans\nles conditions ci-apr\u00e8s d\u00e9taill\u00e9es.\n\nPar ailleurs, si le Conc\u00e9dant d\u00e9tient ou venait \u00e0 d\u00e9tenir un ou\nplusieurs brevets d'invention prot\u00e9geant tout ou partie des\nfonctionnalit\u00e9s du Logiciel ou de ses composants, il s'engage \u00e0 ne pas\nopposer les \u00e9ventuels droits conf\u00e9r\u00e9s par ces brevets aux Licenci\u00e9s\nsuccessifs qui utiliseraient, exploiteraient ou modifieraient le\nLogiciel. En cas de cession de ces brevets, le Conc\u00e9dant s'engage \u00e0\nfaire reprendre les obligations du pr\u00e9sent alin\u00e9a aux cessionnaires.\n\n\n 5.1 DROIT D'UTILISATION\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 utiliser le Logiciel, sans restriction quant\naux domaines d'application, \u00e9tant ci-apr\u00e8s pr\u00e9cis\u00e9 que cela comporte:\n\n 1.\n\n la reproduction permanente ou provisoire du Logiciel en tout ou\n partie par tout moyen et sous toute forme.\n\n 2.\n\n le chargement, l'affichage, l'ex\u00e9cution, ou le stockage du Logiciel\n sur tout support.\n\n 3.\n\n la possibilit\u00e9 d'en observer, d'en \u00e9tudier, ou d'en tester le\n fonctionnement afin de d\u00e9terminer les id\u00e9es et principes qui sont \u00e0\n la base de n'importe quel \u00e9l\u00e9ment de ce Logiciel; et ceci, lorsque\n le Licenci\u00e9 effectue toute op\u00e9ration de chargement, d'affichage,\n d'ex\u00e9cution, de transmission ou de stockage du Logiciel qu'il est en\n droit d'effectuer en vertu du Contrat.\n\n\n 5.2 DROIT D'APPORTER DES CONTRIBUTIONS\n\nLe droit d'apporter des Contributions comporte le droit de traduire,\nd'adapter, d'arranger ou d'apporter toute autre modification au Logiciel\net le droit de reproduire le logiciel en r\u00e9sultant.\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 apporter toute Contribution au Logiciel sous\nr\u00e9serve de mentionner, de fa\u00e7on explicite, son nom en tant qu'auteur de\ncette Contribution et la date de cr\u00e9ation de celle-ci.\n\n\n 5.3 DROIT DE DISTRIBUTION\n\nLe droit de distribution comporte notamment le droit de diffuser, de\ntransmettre et de communiquer le Logiciel au public sur tout support et\npar tout moyen ainsi que le droit de mettre sur le march\u00e9 \u00e0 titre\non\u00e9reux ou gratuit, un ou des exemplaires du Logiciel par tout proc\u00e9d\u00e9.\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 distribuer des copies du Logiciel, modifi\u00e9 ou\nnon, \u00e0 des tiers dans les conditions ci-apr\u00e8s d\u00e9taill\u00e9es.\n\n\n 5.3.1 DISTRIBUTION DU LOGICIEL SANS MODIFICATION\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 distribuer des copies conformes du Logiciel,\nsous forme de Code Source ou de Code Objet, \u00e0 condition que cette\ndistribution respecte les dispositions du Contrat dans leur totalit\u00e9 et\nsoit accompagn\u00e9e:\n\n 1.\n\n d'un exemplaire du Contrat,\n\n 2.\n\n d'un avertissement relatif \u00e0 la restriction de garantie et de\n responsabilit\u00e9 du Conc\u00e9dant telle que pr\u00e9vue aux articles 8\n <#responsabilite> et 9 <#garantie>,\n\net que, dans le cas o\u00f9 seul le Code Objet du Logiciel est redistribu\u00e9,\nle Licenci\u00e9 permette un acc\u00e8s effectif au Code Source complet du\nLogiciel pour une dur\u00e9e d'au moins 3 ans \u00e0 compter de la distribution du\nlogiciel, \u00e9tant entendu que le co\u00fbt additionnel d'acquisition du Code\nSource ne devra pas exc\u00e9der le simple co\u00fbt de transfert des donn\u00e9es.\n\n\n 5.3.2 DISTRIBUTION DU LOGICIEL MODIFIE\n\nLorsque le Licenci\u00e9 apporte une Contribution au Logiciel, les conditions\nde distribution du Logiciel Modifi\u00e9 en r\u00e9sultant sont alors soumises \u00e0\nl'int\u00e9gralit\u00e9 des dispositions du Contrat.\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 distribuer le Logiciel Modifi\u00e9, sous forme de\ncode source ou de code objet, \u00e0 condition que cette distribution\nrespecte les dispositions du Contrat dans leur totalit\u00e9 et soit\naccompagn\u00e9e:\n\n 1.\n\n d'un exemplaire du Contrat,\n\n 2.\n\n d'un avertissement relatif \u00e0 la restriction de garantie et de\n responsabilit\u00e9 du Conc\u00e9dant telle que pr\u00e9vue aux articles 8\n <#responsabilite> et 9 <#garantie>,\n\net, dans le cas o\u00f9 seul le code objet du Logiciel Modifi\u00e9 est redistribu\u00e9,\n\n 3.\n\n d'une note pr\u00e9cisant les conditions d'acc\u00e8s effectif au code source\n complet du Logiciel Modifi\u00e9, pendant une p\u00e9riode d'au moins 3 ans \u00e0\n compter de la distribution du Logiciel Modifi\u00e9, \u00e9tant entendu que le\n co\u00fbt additionnel d'acquisition du code source ne devra pas exc\u00e9der\n le simple co\u00fbt de transfert des donn\u00e9es.\n\n\n 5.3.3 DISTRIBUTION DES MODULES EXTERNES\n\nLorsque le Licenci\u00e9 a d\u00e9velopp\u00e9 un Module Externe les conditions du\nContrat ne s'appliquent pas \u00e0 ce Module Externe, qui peut \u00eatre distribu\u00e9\nsous un contrat de licence diff\u00e9rent.\n\n\n 5.3.4 COMPATIBILITE AVEC D'AUTRES LICENCES\n\nLe Licenci\u00e9 peut inclure un code soumis aux dispositions d'une des\nversions de la licence GNU GPL, GNU Affero GPL et/ou EUPL dans le\nLogiciel modifi\u00e9 ou non et distribuer l'ensemble sous les conditions de\nla m\u00eame version de la licence GNU GPL, GNU Affero GPL et/ou EUPL.\n\nLe Licenci\u00e9 peut inclure le Logiciel modifi\u00e9 ou non dans un code soumis\naux dispositions d'une des versions de la licence GNU GPL, GNU Affero\nGPL et/ou EUPL et distribuer l'ensemble sous les conditions de la m\u00eame\nversion de la licence GNU GPL, GNU Affero GPL et/ou EUPL.\n\n\n Article 6 - PROPRIETE INTELLECTUELLE\n\n\n 6.1 SUR LE LOGICIEL INITIAL\n\nLe Titulaire est d\u00e9tenteur des droits patrimoniaux sur le Logiciel\nInitial. Toute utilisation du Logiciel Initial est soumise au respect\ndes conditions dans lesquelles le Titulaire a choisi de diffuser son\noeuvre et nul autre n'a la facult\u00e9 de modifier les conditions de\ndiffusion de ce Logiciel Initial.\n\nLe Titulaire s'engage \u00e0 ce que le Logiciel Initial reste au moins r\u00e9gi\npar le Contrat et ce, pour la dur\u00e9e vis\u00e9e \u00e0 l'article 4.2 <#duree>.\n\n\n 6.2 SUR LES CONTRIBUTIONS\n\nLe Licenci\u00e9 qui a d\u00e9velopp\u00e9 une Contribution est titulaire sur celle-ci\ndes droits de propri\u00e9t\u00e9 intellectuelle dans les conditions d\u00e9finies par\nla l\u00e9gislation applicable.\n\n\n 6.3 SUR LES MODULES EXTERNES\n\nLe Licenci\u00e9 qui a d\u00e9velopp\u00e9 un Module Externe est titulaire sur celui-ci\ndes droits de propri\u00e9t\u00e9 intellectuelle dans les conditions d\u00e9finies par\nla l\u00e9gislation applicable et reste libre du choix du contrat r\u00e9gissant\nsa diffusion.\n\n\n 6.4 DISPOSITIONS COMMUNES\n\nLe Licenci\u00e9 s'engage express\u00e9ment:\n\n 1.\n\n \u00e0 ne pas supprimer ou modifier de quelque mani\u00e8re que ce soit les\n mentions de propri\u00e9t\u00e9 intellectuelle appos\u00e9es sur le Logiciel;\n\n 2.\n\n \u00e0 reproduire \u00e0 l'identique lesdites mentions de propri\u00e9t\u00e9\n intellectuelle sur les copies du Logiciel modifi\u00e9 ou non.\n\nLe Licenci\u00e9 s'engage \u00e0 ne pas porter atteinte, directement ou\nindirectement, aux droits de propri\u00e9t\u00e9 intellectuelle du Titulaire et/ou\ndes Contributeurs sur le Logiciel et \u00e0 prendre, le cas \u00e9ch\u00e9ant, \u00e0\nl'\u00e9gard de son personnel toutes les mesures n\u00e9cessaires pour assurer le\nrespect des dits droits de propri\u00e9t\u00e9 intellectuelle du Titulaire et/ou\ndes Contributeurs.\n\n\n Article 7 - SERVICES ASSOCIES\n\n7.1 Le Contrat n'oblige en aucun cas le Conc\u00e9dant \u00e0 la r\u00e9alisation de\nprestations d'assistance technique ou de maintenance du Logiciel.\n\nCependant le Conc\u00e9dant reste libre de proposer ce type de services. Les\ntermes et conditions d'une telle assistance technique et/ou d'une telle\nmaintenance seront alors d\u00e9termin\u00e9s dans un acte s\u00e9par\u00e9. Ces actes de\nmaintenance et/ou assistance technique n'engageront que la seule\nresponsabilit\u00e9 du Conc\u00e9dant qui les propose.\n\n7.2 De m\u00eame, tout Conc\u00e9dant est libre de proposer, sous sa seule\nresponsabilit\u00e9, \u00e0 ses licenci\u00e9s une garantie, qui n'engagera que lui,\nlors de la redistribution du Logiciel et/ou du Logiciel Modifi\u00e9 et ce,\ndans les conditions qu'il souhaite. Cette garantie et les modalit\u00e9s\nfinanci\u00e8res de son application feront l'objet d'un acte s\u00e9par\u00e9 entre le\nConc\u00e9dant et le Licenci\u00e9.\n\n\n Article 8 - RESPONSABILITE\n\n8.1 Sous r\u00e9serve des dispositions de l'article 8.2\n<#limite-responsabilite>, le Licenci\u00e9 a la facult\u00e9, sous r\u00e9serve de\nprouver la faute du Conc\u00e9dant concern\u00e9, de solliciter la r\u00e9paration du\npr\u00e9judice direct qu'il subirait du fait du Logiciel et dont il apportera\nla preuve.\n\n8.2 La responsabilit\u00e9 du Conc\u00e9dant est limit\u00e9e aux engagements pris en\napplication du Contrat et ne saurait \u00eatre engag\u00e9e en raison notamment:\n(i) des dommages dus \u00e0 l'inex\u00e9cution, totale ou partielle, de ses\nobligations par le Licenci\u00e9, (ii) des dommages directs ou indirects\nd\u00e9coulant de l'utilisation ou des performances du Logiciel subis par le\nLicenci\u00e9 et (iii) plus g\u00e9n\u00e9ralement d'un quelconque dommage indirect. En\nparticulier, les Parties conviennent express\u00e9ment que tout pr\u00e9judice\nfinancier ou commercial (par exemple perte de donn\u00e9es, perte de\nb\u00e9n\u00e9fices, perte d'exploitation, perte de client\u00e8le ou de commandes,\nmanque \u00e0 gagner, trouble commercial quelconque) ou toute action dirig\u00e9e\ncontre le Licenci\u00e9 par un tiers, constitue un dommage indirect et\nn'ouvre pas droit \u00e0 r\u00e9paration par le Conc\u00e9dant.\n\n\n Article 9 - GARANTIE\n\n9.1 Le Licenci\u00e9 reconna\u00eet que l'\u00e9tat actuel des connaissances\nscientifiques et techniques au moment de la mise en circulation du\nLogiciel ne permet pas d'en tester et d'en v\u00e9rifier toutes les\nutilisations ni de d\u00e9tecter l'existence d'\u00e9ventuels d\u00e9fauts. L'attention\ndu Licenci\u00e9 a \u00e9t\u00e9 attir\u00e9e sur ce point sur les risques associ\u00e9s au\nchargement, \u00e0 l'utilisation, la modification et/ou au d\u00e9veloppement et \u00e0\nla reproduction du Logiciel qui sont r\u00e9serv\u00e9s \u00e0 des utilisateurs avertis.\n\nIl rel\u00e8ve de la responsabilit\u00e9 du Licenci\u00e9 de contr\u00f4ler, par tous\nmoyens, l'ad\u00e9quation du produit \u00e0 ses besoins, son bon fonctionnement et\nde s'assurer qu'il ne causera pas de dommages aux personnes et aux biens.\n\n9.2 Le Conc\u00e9dant d\u00e9clare de bonne foi \u00eatre en droit de conc\u00e9der\nl'ensemble des droits attach\u00e9s au Logiciel (comprenant notamment les\ndroits vis\u00e9s \u00e0 l'article 5 <#etendue>).\n\n9.3 Le Licenci\u00e9 reconna\u00eet que le Logiciel est fourni \"en l'\u00e9tat\" par le\nConc\u00e9dant sans autre garantie, expresse ou tacite, que celle pr\u00e9vue \u00e0\nl'article 9.2 <#bonne-foi> et notamment sans aucune garantie sur sa\nvaleur commerciale, son caract\u00e8re s\u00e9curis\u00e9, innovant ou pertinent.\n\nEn particulier, le Conc\u00e9dant ne garantit pas que le Logiciel est exempt\nd'erreur, qu'il fonctionnera sans interruption, qu'il sera compatible\navec l'\u00e9quipement du Licenci\u00e9 et sa configuration logicielle ni qu'il\nremplira les besoins du Licenci\u00e9.\n\n9.4 Le Conc\u00e9dant ne garantit pas, de mani\u00e8re expresse ou tacite, que le\nLogiciel ne porte pas atteinte \u00e0 un quelconque droit de propri\u00e9t\u00e9\nintellectuelle d'un tiers portant sur un brevet, un logiciel ou sur tout\nautre droit de propri\u00e9t\u00e9. Ainsi, le Conc\u00e9dant exclut toute garantie au\nprofit du Licenci\u00e9 contre les actions en contrefa\u00e7on qui pourraient \u00eatre\ndiligent\u00e9es au titre de l'utilisation, de la modification, et de la\nredistribution du Logiciel. N\u00e9anmoins, si de telles actions sont\nexerc\u00e9es contre le Licenci\u00e9, le Conc\u00e9dant lui apportera son expertise\ntechnique et juridique pour sa d\u00e9fense. Cette expertise technique et\njuridique est d\u00e9termin\u00e9e au cas par cas entre le Conc\u00e9dant concern\u00e9 et\nle Licenci\u00e9 dans le cadre d'un protocole d'accord. Le Conc\u00e9dant d\u00e9gage\ntoute responsabilit\u00e9 quant \u00e0 l'utilisation de la d\u00e9nomination du\nLogiciel par le Licenci\u00e9. Aucune garantie n'est apport\u00e9e quant \u00e0\nl'existence de droits ant\u00e9rieurs sur le nom du Logiciel et sur\nl'existence d'une marque.\n\n\n Article 10 - RESILIATION\n\n10.1 En cas de manquement par le Licenci\u00e9 aux obligations mises \u00e0 sa\ncharge par le Contrat, le Conc\u00e9dant pourra r\u00e9silier de plein droit le\nContrat trente (30) jours apr\u00e8s notification adress\u00e9e au Licenci\u00e9 et\nrest\u00e9e sans effet.\n\n10.2 Le Licenci\u00e9 dont le Contrat est r\u00e9sili\u00e9 n'est plus autoris\u00e9 \u00e0\nutiliser, modifier ou distribuer le Logiciel. Cependant, toutes les\nlicences qu'il aura conc\u00e9d\u00e9es ant\u00e9rieurement \u00e0 la r\u00e9siliation du Contrat\nresteront valides sous r\u00e9serve qu'elles aient \u00e9t\u00e9 effectu\u00e9es en\nconformit\u00e9 avec le Contrat.\n\n\n Article 11 - DISPOSITIONS DIVERSES\n\n\n 11.1 CAUSE EXTERIEURE\n\nAucune des Parties ne sera responsable d'un retard ou d'une d\u00e9faillance\nd'ex\u00e9cution du Contrat qui serait d\u00fb \u00e0 un cas de force majeure, un cas\nfortuit ou une cause ext\u00e9rieure, telle que, notamment, le mauvais\nfonctionnement ou les interruptions du r\u00e9seau \u00e9lectrique ou de\nt\u00e9l\u00e9communication, la paralysie du r\u00e9seau li\u00e9e \u00e0 une attaque\ninformatique, l'intervention des autorit\u00e9s gouvernementales, les\ncatastrophes naturelles, les d\u00e9g\u00e2ts des eaux, les tremblements de terre,\nle feu, les explosions, les gr\u00e8ves et les conflits sociaux, l'\u00e9tat de\nguerre...\n\n11.2 Le fait, par l'une ou l'autre des Parties, d'omettre en une ou\nplusieurs occasions de se pr\u00e9valoir d'une ou plusieurs dispositions du\nContrat, ne pourra en aucun cas impliquer renonciation par la Partie\nint\u00e9ress\u00e9e \u00e0 s'en pr\u00e9valoir ult\u00e9rieurement.\n\n11.3 Le Contrat annule et remplace toute convention ant\u00e9rieure, \u00e9crite\nou orale, entre les Parties sur le m\u00eame objet et constitue l'accord\nentier entre les Parties sur cet objet. Aucune addition ou modification\naux termes du Contrat n'aura d'effet \u00e0 l'\u00e9gard des Parties \u00e0 moins\nd'\u00eatre faite par \u00e9crit et sign\u00e9e par leurs repr\u00e9sentants d\u00fbment habilit\u00e9s.\n\n11.4 Dans l'hypoth\u00e8se o\u00f9 une ou plusieurs des dispositions du Contrat\ns'av\u00e8rerait contraire \u00e0 une loi ou \u00e0 un texte applicable, existants ou\nfuturs, cette loi ou ce texte pr\u00e9vaudrait, et les Parties feraient les\namendements n\u00e9cessaires pour se conformer \u00e0 cette loi ou \u00e0 ce texte.\nToutes les autres dispositions resteront en vigueur. De m\u00eame, la\nnullit\u00e9, pour quelque raison que ce soit, d'une des dispositions du\nContrat ne saurait entra\u00eener la nullit\u00e9 de l'ensemble du Contrat.\n\n\n 11.5 LANGUE\n\nLe Contrat est r\u00e9dig\u00e9 en langue fran\u00e7aise et en langue anglaise, ces\ndeux versions faisant \u00e9galement foi.\n\n\n Article 12 - NOUVELLES VERSIONS DU CONTRAT\n\n12.1 Toute personne est autoris\u00e9e \u00e0 copier et distribuer des copies de\nce Contrat.\n\n12.2 Afin d'en pr\u00e9server la coh\u00e9rence, le texte du Contrat est prot\u00e9g\u00e9\net ne peut \u00eatre modifi\u00e9 que par les auteurs de la licence, lesquels se\nr\u00e9servent le droit de publier p\u00e9riodiquement des mises \u00e0 jour ou de\nnouvelles versions du Contrat, qui poss\u00e9deront chacune un num\u00e9ro\ndistinct. Ces versions ult\u00e9rieures seront susceptibles de prendre en\ncompte de nouvelles probl\u00e9matiques rencontr\u00e9es par les logiciels libres.\n\n12.3 Tout Logiciel diffus\u00e9 sous une version donn\u00e9e du Contrat ne pourra\nfaire l'objet d'une diffusion ult\u00e9rieure que sous la m\u00eame version du\nContrat ou une version post\u00e9rieure, sous r\u00e9serve des dispositions de\nl'article 5.3.4 <#compatibilite>.\n\n\n Article 13 - LOI APPLICABLE ET COMPETENCE TERRITORIALE\n\n13.1 Le Contrat est r\u00e9gi par la loi fran\u00e7aise. Les Parties conviennent\nde tenter de r\u00e9gler \u00e0 l'amiable les diff\u00e9rends ou litiges qui\nviendraient \u00e0 se produire par suite ou \u00e0 l'occasion du Contrat.\n\n13.2 A d\u00e9faut d'accord amiable dans un d\u00e9lai de deux (2) mois \u00e0 compter\nde leur survenance et sauf situation relevant d'une proc\u00e9dure d'urgence,\nles diff\u00e9rends ou litiges seront port\u00e9s par la Partie la plus diligente\ndevant les Tribunaux comp\u00e9tents de Paris.", + "json": "cecill-2.1-fr.json", + "yaml": "cecill-2.1-fr.yml", + "html": "cecill-2.1-fr.html", + "license": "cecill-2.1-fr.LICENSE" + }, + { + "license_key": "cecill-b", + "category": "Permissive", + "spdx_license_key": "CECILL-B", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL-B\n\n\n Avertissement\n\nCe contrat est une licence de logiciel libre issue d'une concertation\nentre ses auteurs afin que le respect de deux grands principes pr\u00e9side \u00e0\nsa r\u00e9daction:\n\n * d'une part, le respect des principes de diffusion des logiciels\n libres: acc\u00e8s au code source, droits \u00e9tendus conf\u00e9r\u00e9s aux\n utilisateurs,\n * d'autre part, la d\u00e9signation d'un droit applicable, le droit\n fran\u00e7ais, auquel elle est conforme, tant au regard du droit de la\n responsabilit\u00e9 civile que du droit de la propri\u00e9t\u00e9 intellectuelle\n et de la protection qu'il offre aux auteurs et titulaires des\n droits patrimoniaux sur un logiciel.\n\nLes auteurs de la licence CeCILL-B (pour Ce[a] C[nrs] I[nria] L[ogiciel]\nL[ibre]) sont:\n\nCommissariat \u00e0 l'Energie Atomique - CEA, \u00e9tablissement public de\nrecherche \u00e0 caract\u00e8re scientifique, technique et industriel, dont le\nsi\u00e8ge est situ\u00e9 25 rue Leblanc, immeuble Le Ponant D, 75015 Paris.\n\nCentre National de la Recherche Scientifique - CNRS, \u00e9tablissement\npublic \u00e0 caract\u00e8re scientifique et technologique, dont le si\u00e8ge est\nsitu\u00e9 3 rue Michel-Ange, 75794 Paris cedex 16.\n\nInstitut National de Recherche en Informatique et en Automatique -\nINRIA, \u00e9tablissement public \u00e0 caract\u00e8re scientifique et technologique,\ndont le si\u00e8ge est situ\u00e9 Domaine de Voluceau, Rocquencourt, BP 105, 78153\nLe Chesnay cedex.\n\n\n Pr\u00e9ambule\n\nCe contrat est une licence de logiciel libre dont l'objectif est de\nconf\u00e9rer aux utilisateurs une tr\u00e8s large libert\u00e9 de modification et de\nredistribution du logiciel r\u00e9gi par cette licence.\n\nL'exercice de cette libert\u00e9 est assorti d'une obligation forte de\ncitation \u00e0 la charge de ceux qui distribueraient un logiciel incorporant\nun logiciel r\u00e9gi par la pr\u00e9sente licence afin d'assurer que les\ncontributions de tous soient correctement identifi\u00e9es et reconnues.\n\nL'accessibilit\u00e9 au code source et les droits de copie, de modification\net de redistribution qui d\u00e9coulent de ce contrat ont pour contrepartie\nde n'offrir aux utilisateurs qu'une garantie limit\u00e9e et de ne faire\npeser sur l'auteur du logiciel, le titulaire des droits patrimoniaux et\nles conc\u00e9dants successifs qu'une responsabilit\u00e9 restreinte.\n\nA cet \u00e9gard l'attention de l'utilisateur est attir\u00e9e sur les risques\nassoci\u00e9s au chargement, \u00e0 l'utilisation, \u00e0 la modification et/ou au\nd\u00e9veloppement et \u00e0 la reproduction du logiciel par l'utilisateur \u00e9tant\ndonn\u00e9 sa sp\u00e9cificit\u00e9 de logiciel libre, qui peut le rendre complexe \u00e0\nmanipuler et qui le r\u00e9serve donc \u00e0 des d\u00e9veloppeurs ou des\nprofessionnels avertis poss\u00e9dant des connaissances informatiques\napprofondies. Les utilisateurs sont donc invit\u00e9s \u00e0 charger et tester\nl'ad\u00e9quation du logiciel \u00e0 leurs besoins dans des conditions permettant\nd'assurer la s\u00e9curit\u00e9 de leurs syst\u00e8mes et/ou de leurs donn\u00e9es et, plus\ng\u00e9n\u00e9ralement, \u00e0 l'utiliser et l'exploiter dans les m\u00eames conditions de\ns\u00e9curit\u00e9. Ce contrat peut \u00eatre reproduit et diffus\u00e9 librement, sous\nr\u00e9serve de le conserver en l'\u00e9tat, sans ajout ni suppression de clauses.\n\nCe contrat est susceptible de s'appliquer \u00e0 tout logiciel dont le\ntitulaire des droits patrimoniaux d\u00e9cide de soumettre l'exploitation aux\ndispositions qu'il contient.\n\n\n Article 1 - DEFINITIONS\n\nDans ce contrat, les termes suivants, lorsqu'ils seront \u00e9crits avec une\nlettre capitale, auront la signification suivante:\n\nContrat: d\u00e9signe le pr\u00e9sent contrat de licence, ses \u00e9ventuelles versions\npost\u00e9rieures et annexes.\n\nLogiciel: d\u00e9signe le logiciel sous sa forme de Code Objet et/ou de Code\nSource et le cas \u00e9ch\u00e9ant sa documentation, dans leur \u00e9tat au moment de\nl'acceptation du Contrat par le Licenci\u00e9.\n\nLogiciel Initial: d\u00e9signe le Logiciel sous sa forme de Code Source et\n\u00e9ventuellement de Code Objet et le cas \u00e9ch\u00e9ant sa documentation, dans\nleur \u00e9tat au moment de leur premi\u00e8re diffusion sous les termes du Contrat.\n\nLogiciel Modifi\u00e9: d\u00e9signe le Logiciel modifi\u00e9 par au moins une\nContribution.\n\nCode Source: d\u00e9signe l'ensemble des instructions et des lignes de\nprogramme du Logiciel et auquel l'acc\u00e8s est n\u00e9cessaire en vue de\nmodifier le Logiciel.\n\nCode Objet: d\u00e9signe les fichiers binaires issus de la compilation du\nCode Source.\n\nTitulaire: d\u00e9signe le ou les d\u00e9tenteurs des droits patrimoniaux d'auteur\nsur le Logiciel Initial.\n\nLicenci\u00e9: d\u00e9signe le ou les utilisateurs du Logiciel ayant accept\u00e9 le\nContrat.\n\nContributeur: d\u00e9signe le Licenci\u00e9 auteur d'au moins une Contribution.\n\nConc\u00e9dant: d\u00e9signe le Titulaire ou toute personne physique ou morale\ndistribuant le Logiciel sous le Contrat.\n\nContribution: d\u00e9signe l'ensemble des modifications, corrections,\ntraductions, adaptations et/ou nouvelles fonctionnalit\u00e9s int\u00e9gr\u00e9es dans\nle Logiciel par tout Contributeur, ainsi que tout Module Interne.\n\nModule: d\u00e9signe un ensemble de fichiers sources y compris leur\ndocumentation qui permet de r\u00e9aliser des fonctionnalit\u00e9s ou services\nsuppl\u00e9mentaires \u00e0 ceux fournis par le Logiciel.\n\nModule Externe: d\u00e9signe tout Module, non d\u00e9riv\u00e9 du Logiciel, tel que ce\nModule et le Logiciel s'ex\u00e9cutent dans des espaces d'adressage\ndiff\u00e9rents, l'un appelant l'autre au moment de leur ex\u00e9cution.\n\nModule Interne: d\u00e9signe tout Module li\u00e9 au Logiciel de telle sorte\nqu'ils s'ex\u00e9cutent dans le m\u00eame espace d'adressage.\n\nParties: d\u00e9signe collectivement le Licenci\u00e9 et le Conc\u00e9dant.\n\nCes termes s'entendent au singulier comme au pluriel.\n\n\n Article 2 - OBJET\n\nLe Contrat a pour objet la concession par le Conc\u00e9dant au Licenci\u00e9 d'une\nlicence non exclusive, cessible et mondiale du Logiciel telle que\nd\u00e9finie ci-apr\u00e8s \u00e0 l'article 5 pour toute la dur\u00e9e de protection des droits \nportant sur ce Logiciel. \n\n\n Article 3 - ACCEPTATION\n\n3.1 L'acceptation par le Licenci\u00e9 des termes du Contrat est r\u00e9put\u00e9e\nacquise du fait du premier des faits suivants:\n\n * (i) le chargement du Logiciel par tout moyen notamment par\n t\u00e9l\u00e9chargement \u00e0 partir d'un serveur distant ou par chargement \u00e0\n partir d'un support physique;\n * (ii) le premier exercice par le Licenci\u00e9 de l'un quelconque des\n droits conc\u00e9d\u00e9s par le Contrat.\n\n3.2 Un exemplaire du Contrat, contenant notamment un avertissement\nrelatif aux sp\u00e9cificit\u00e9s du Logiciel, \u00e0 la restriction de garantie et \u00e0\nla limitation \u00e0 un usage par des utilisateurs exp\u00e9riment\u00e9s a \u00e9t\u00e9 mis \u00e0\ndisposition du Licenci\u00e9 pr\u00e9alablement \u00e0 son acceptation telle que\nd\u00e9finie \u00e0 l'article 3.1 ci dessus et le Licenci\u00e9 reconna\u00eet en avoir pris\nconnaissance.\n\n\n Article 4 - ENTREE EN VIGUEUR ET DUREE\n\n\n 4.1 ENTREE EN VIGUEUR\n\nLe Contrat entre en vigueur \u00e0 la date de son acceptation par le Licenci\u00e9\ntelle que d\u00e9finie en 3.1.\n\n\n 4.2 DUREE\n\nLe Contrat produira ses effets pendant toute la dur\u00e9e l\u00e9gale de\nprotection des droits patrimoniaux portant sur le Logiciel.\n\n\n Article 5 - ETENDUE DES DROITS CONCEDES\n\nLe Conc\u00e9dant conc\u00e8de au Licenci\u00e9, qui accepte, les droits suivants sur\nle Logiciel pour toutes destinations et pour la dur\u00e9e du Contrat dans\nles conditions ci-apr\u00e8s d\u00e9taill\u00e9es.\n\nPar ailleurs, si le Conc\u00e9dant d\u00e9tient ou venait \u00e0 d\u00e9tenir un ou\nplusieurs brevets d'invention prot\u00e9geant tout ou partie des\nfonctionnalit\u00e9s du Logiciel ou de ses composants, il s'engage \u00e0 ne pas\nopposer les \u00e9ventuels droits conf\u00e9r\u00e9s par ces brevets aux Licenci\u00e9s\nsuccessifs qui utiliseraient, exploiteraient ou modifieraient le\nLogiciel. En cas de cession de ces brevets, le Conc\u00e9dant s'engage \u00e0\nfaire reprendre les obligations du pr\u00e9sent alin\u00e9a aux cessionnaires.\n\n\n 5.1 DROIT D'UTILISATION\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 utiliser le Logiciel, sans restriction quant\naux domaines d'application, \u00e9tant ci-apr\u00e8s pr\u00e9cis\u00e9 que cela comporte:\n\n 1. la reproduction permanente ou provisoire du Logiciel en tout ou\n partie par tout moyen et sous toute forme.\n\n 2. le chargement, l'affichage, l'ex\u00e9cution, ou le stockage du\n Logiciel sur tout support.\n\n 3. la possibilit\u00e9 d'en observer, d'en \u00e9tudier, ou d'en tester le\n fonctionnement afin de d\u00e9terminer les id\u00e9es et principes qui sont\n \u00e0 la base de n'importe quel \u00e9l\u00e9ment de ce Logiciel; et ceci,\n lorsque le Licenci\u00e9 effectue toute op\u00e9ration de chargement,\n d'affichage, d'ex\u00e9cution, de transmission ou de stockage du\n Logiciel qu'il est en droit d'effectuer en vertu du Contrat.\n\n\n 5.2 DROIT D'APPORTER DES CONTRIBUTIONS\n\nLe droit d'apporter des Contributions comporte le droit de traduire,\nd'adapter, d'arranger ou d'apporter toute autre modification au Logiciel\net le droit de reproduire le logiciel en r\u00e9sultant.\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 apporter toute Contribution au Logiciel sous\nr\u00e9serve de mentionner, de fa\u00e7on explicite, son nom en tant qu'auteur de\ncette Contribution et la date de cr\u00e9ation de celle-ci.\n\n\n 5.3 DROIT DE DISTRIBUTION\n\nLe droit de distribution comporte notamment le droit de diffuser, de\ntransmettre et de communiquer le Logiciel au public sur tout support et\npar tout moyen ainsi que le droit de mettre sur le march\u00e9 \u00e0 titre\non\u00e9reux ou gratuit, un ou des exemplaires du Logiciel par tout proc\u00e9d\u00e9.\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 distribuer des copies du Logiciel, modifi\u00e9 ou\nnon, \u00e0 des tiers dans les conditions ci-apr\u00e8s d\u00e9taill\u00e9es.\n\n\n 5.3.1 DISTRIBUTION DU LOGICIEL SANS MODIFICATION\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 distribuer des copies conformes du Logiciel,\nsous forme de Code Source ou de Code Objet, \u00e0 condition que cette\ndistribution respecte les dispositions du Contrat dans leur totalit\u00e9 et\nsoit accompagn\u00e9e:\n\n 1. d'un exemplaire du Contrat,\n\n 2. d'un avertissement relatif \u00e0 la restriction de garantie et de\n responsabilit\u00e9 du Conc\u00e9dant telle que pr\u00e9vue aux articles 8\n et 9,\n\net que, dans le cas o\u00f9 seul le Code Objet du Logiciel est redistribu\u00e9,\nle Licenci\u00e9 permette un acc\u00e8s effectif au Code Source complet du\nLogiciel pendant au moins toute la dur\u00e9e de sa distribution du Logiciel,\n\u00e9tant entendu que le co\u00fbt additionnel d'acquisition du Code Source ne\ndevra pas exc\u00e9der le simple co\u00fbt de transfert des donn\u00e9es.\n\n\n 5.3.2 DISTRIBUTION DU LOGICIEL MODIFIE\n\nLorsque le Licenci\u00e9 apporte une Contribution au Logiciel, le Logiciel\nModifi\u00e9 peut \u00eatre distribu\u00e9 sous un contrat de licence autre que le\npr\u00e9sent Contrat sous r\u00e9serve du respect des dispositions de l'article\n5.3.4.\n\n\n 5.3.3 DISTRIBUTION DES MODULES EXTERNES\n\nLorsque le Licenci\u00e9 a d\u00e9velopp\u00e9 un Module Externe les conditions du\nContrat ne s'appliquent pas \u00e0 ce Module Externe, qui peut \u00eatre distribu\u00e9\nsous un contrat de licence diff\u00e9rent.\n\n\n 5.3.4 CITATIONS\n\nLe Licenci\u00e9 qui distribue un Logiciel Modifi\u00e9 s'engage express\u00e9ment:\n\n 1. \u00e0 indiquer dans sa documentation qu'il a \u00e9t\u00e9 r\u00e9alis\u00e9 \u00e0 partir du\n Logiciel r\u00e9gi par le Contrat, en reproduisant les mentions de\n propri\u00e9t\u00e9 intellectuelle du Logiciel,\n\n 2. \u00e0 faire en sorte que l'utilisation du Logiciel, ses mentions de\n propri\u00e9t\u00e9 intellectuelle et le fait qu'il est r\u00e9gi par le Contrat\n soient indiqu\u00e9s dans un texte facilement accessible depuis\n l'interface du Logiciel Modifi\u00e9,\n\n 3. \u00e0 mentionner, sur un site Web librement accessible d\u00e9crivant le\n Logiciel Modifi\u00e9, et pendant au moins toute la dur\u00e9e de sa\n distribution, qu'il a \u00e9t\u00e9 r\u00e9alis\u00e9 \u00e0 partir du Logiciel r\u00e9gi par le\n Contrat, en reproduisant les mentions de propri\u00e9t\u00e9 intellectuelle\n du Logiciel,\n\n 4. lorsqu'il le distribue \u00e0 un tiers susceptible de distribuer\n lui-m\u00eame un Logiciel Modifi\u00e9, sans avoir \u00e0 en distribuer le code\n source, \u00e0 faire ses meilleurs efforts pour que les obligations du\n pr\u00e9sent article 5.3.4 soient reprises par le dit tiers.\n\nLorsque le Logiciel modifi\u00e9 ou non est distribu\u00e9 avec un Module Externe\nqui a \u00e9t\u00e9 con\u00e7u pour l'utiliser, le Licenci\u00e9 doit soumettre le dit\nModule Externe aux obligations pr\u00e9c\u00e9dentes.\n\n\n 5.3.5 COMPATIBILITE AVEC LES LICENCES CeCILL et CeCILL-C\n\nLorsqu'un Logiciel Modifi\u00e9 contient une Contribution soumise au contrat\nde licence CeCILL, les stipulations pr\u00e9vues \u00e0 l'article 5.3.4 sont \nfacultatives.\n\nUn Logiciel Modifi\u00e9 peut \u00eatre distribu\u00e9 sous le contrat de licence\nCeCILL-C. Les stipulations pr\u00e9vues \u00e0 l'article 5.3.4 sont alors \nfacultatives.\n\n\n Article 6 - PROPRIETE INTELLECTUELLE\n\n\n 6.1 SUR LE LOGICIEL INITIAL\n\nLe Titulaire est d\u00e9tenteur des droits patrimoniaux sur le Logiciel\nInitial. Toute utilisation du Logiciel Initial est soumise au respect\ndes conditions dans lesquelles le Titulaire a choisi de diffuser son\noeuvre et nul autre n'a la facult\u00e9 de modifier les conditions de\ndiffusion de ce Logiciel Initial.\n\nLe Titulaire s'engage \u00e0 ce que le Logiciel Initial reste au moins r\u00e9gi\npar le Contrat et ce, pour la dur\u00e9e vis\u00e9e \u00e0 l'article 4.2.\n\n\n 6.2 SUR LES CONTRIBUTIONS\n\nLe Licenci\u00e9 qui a d\u00e9velopp\u00e9 une Contribution est titulaire sur celle-ci\ndes droits de propri\u00e9t\u00e9 intellectuelle dans les conditions d\u00e9finies par\nla l\u00e9gislation applicable.\n\n\n 6.3 SUR LES MODULES EXTERNES\n\nLe Licenci\u00e9 qui a d\u00e9velopp\u00e9 un Module Externe est titulaire sur celui-ci\ndes droits de propri\u00e9t\u00e9 intellectuelle dans les conditions d\u00e9finies par\nla l\u00e9gislation applicable et reste libre du choix du contrat r\u00e9gissant\nsa diffusion.\n\n\n 6.4 DISPOSITIONS COMMUNES\n\nLe Licenci\u00e9 s'engage express\u00e9ment:\n\n 1. \u00e0 ne pas supprimer ou modifier de quelque mani\u00e8re que ce soit les\n mentions de propri\u00e9t\u00e9 intellectuelle appos\u00e9es sur le Logiciel;\n\n 2. \u00e0 reproduire \u00e0 l'identique lesdites mentions de propri\u00e9t\u00e9\n intellectuelle sur les copies du Logiciel modifi\u00e9 ou non.\n\nLe Licenci\u00e9 s'engage \u00e0 ne pas porter atteinte, directement ou\nindirectement, aux droits de propri\u00e9t\u00e9 intellectuelle du Titulaire et/ou\ndes Contributeurs sur le Logiciel et \u00e0 prendre, le cas \u00e9ch\u00e9ant, \u00e0\nl'\u00e9gard de son personnel toutes les mesures n\u00e9cessaires pour assurer le\nrespect des dits droits de propri\u00e9t\u00e9 intellectuelle du Titulaire et/ou\ndes Contributeurs.\n\n\n Article 7 - SERVICES ASSOCIES\n\n7.1 Le Contrat n'oblige en aucun cas le Conc\u00e9dant \u00e0 la r\u00e9alisation de\nprestations d'assistance technique ou de maintenance du Logiciel.\n\nCependant le Conc\u00e9dant reste libre de proposer ce type de services. Les\ntermes et conditions d'une telle assistance technique et/ou d'une telle\nmaintenance seront alors d\u00e9termin\u00e9s dans un acte s\u00e9par\u00e9. Ces actes de\nmaintenance et/ou assistance technique n'engageront que la seule\nresponsabilit\u00e9 du Conc\u00e9dant qui les propose.\n\n7.2 De m\u00eame, tout Conc\u00e9dant est libre de proposer, sous sa seule\nresponsabilit\u00e9, \u00e0 ses licenci\u00e9s une garantie, qui n'engagera que lui,\nlors de la redistribution du Logiciel et/ou du Logiciel Modifi\u00e9 et ce,\ndans les conditions qu'il souhaite. Cette garantie et les modalit\u00e9s\nfinanci\u00e8res de son application feront l'objet d'un acte s\u00e9par\u00e9 entre le\nConc\u00e9dant et le Licenci\u00e9.\n\n\n Article 8 - RESPONSABILITE\n\n8.1 Sous r\u00e9serve des dispositions de l'article 8.2, le Licenci\u00e9 a la \nfacult\u00e9, sous r\u00e9serve de prouver la faute du Conc\u00e9dant concern\u00e9, de\nsolliciter la r\u00e9paration du pr\u00e9judice direct qu'il subirait du fait du\nLogiciel et dont il apportera la preuve.\n\n8.2 La responsabilit\u00e9 du Conc\u00e9dant est limit\u00e9e aux engagements pris en\napplication du Contrat et ne saurait \u00eatre engag\u00e9e en raison notamment:\n(i) des dommages dus \u00e0 l'inex\u00e9cution, totale ou partielle, de ses\nobligations par le Licenci\u00e9, (ii) des dommages directs ou indirects\nd\u00e9coulant de l'utilisation ou des performances du Logiciel subis par le\nLicenci\u00e9 et (iii) plus g\u00e9n\u00e9ralement d'un quelconque dommage indirect. En\nparticulier, les Parties conviennent express\u00e9ment que tout pr\u00e9judice\nfinancier ou commercial (par exemple perte de donn\u00e9es, perte de\nb\u00e9n\u00e9fices, perte d'exploitation, perte de client\u00e8le ou de commandes,\nmanque \u00e0 gagner, trouble commercial quelconque) ou toute action dirig\u00e9e\ncontre le Licenci\u00e9 par un tiers, constitue un dommage indirect et\nn'ouvre pas droit \u00e0 r\u00e9paration par le Conc\u00e9dant.\n\n\n Article 9 - GARANTIE\n\n9.1 Le Licenci\u00e9 reconna\u00eet que l'\u00e9tat actuel des connaissances\nscientifiques et techniques au moment de la mise en circulation du\nLogiciel ne permet pas d'en tester et d'en v\u00e9rifier toutes les\nutilisations ni de d\u00e9tecter l'existence d'\u00e9ventuels d\u00e9fauts. L'attention\ndu Licenci\u00e9 a \u00e9t\u00e9 attir\u00e9e sur ce point sur les risques associ\u00e9s au\nchargement, \u00e0 l'utilisation, la modification et/ou au d\u00e9veloppement et \u00e0\nla reproduction du Logiciel qui sont r\u00e9serv\u00e9s \u00e0 des utilisateurs avertis.\n\nIl rel\u00e8ve de la responsabilit\u00e9 du Licenci\u00e9 de contr\u00f4ler, par tous\nmoyens, l'ad\u00e9quation du produit \u00e0 ses besoins, son bon fonctionnement et\nde s'assurer qu'il ne causera pas de dommages aux personnes et aux biens.\n\n9.2 Le Conc\u00e9dant d\u00e9clare de bonne foi \u00eatre en droit de conc\u00e9der\nl'ensemble des droits attach\u00e9s au Logiciel (comprenant notamment les\ndroits vis\u00e9s \u00e0 l'article 5).\n\n9.3 Le Licenci\u00e9 reconna\u00eet que le Logiciel est fourni \"en l'\u00e9tat\" par le\nConc\u00e9dant sans autre garantie, expresse ou tacite, que celle pr\u00e9vue \u00e0\nl'article 9.2 et notamment sans aucune garantie sur sa valeur commerciale,\nson caract\u00e8re s\u00e9curis\u00e9, innovant ou pertinent.\n\nEn particulier, le Conc\u00e9dant ne garantit pas que le Logiciel est exempt\nd'erreur, qu'il fonctionnera sans interruption, qu'il sera compatible\navec l'\u00e9quipement du Licenci\u00e9 et sa configuration logicielle ni qu'il\nremplira les besoins du Licenci\u00e9.\n\n9.4 Le Conc\u00e9dant ne garantit pas, de mani\u00e8re expresse ou tacite, que le\nLogiciel ne porte pas atteinte \u00e0 un quelconque droit de propri\u00e9t\u00e9\nintellectuelle d'un tiers portant sur un brevet, un logiciel ou sur tout\nautre droit de propri\u00e9t\u00e9. Ainsi, le Conc\u00e9dant exclut toute garantie au\nprofit du Licenci\u00e9 contre les actions en contrefa\u00e7on qui pourraient \u00eatre\ndiligent\u00e9es au titre de l'utilisation, de la modification, et de la\nredistribution du Logiciel. N\u00e9anmoins, si de telles actions sont\nexerc\u00e9es contre le Licenci\u00e9, le Conc\u00e9dant lui apportera son aide\ntechnique et juridique pour sa d\u00e9fense. Cette aide technique et\njuridique est d\u00e9termin\u00e9e au cas par cas entre le Conc\u00e9dant concern\u00e9 et\nle Licenci\u00e9 dans le cadre d'un protocole d'accord. Le Conc\u00e9dant d\u00e9gage\ntoute responsabilit\u00e9 quant \u00e0 l'utilisation de la d\u00e9nomination du\nLogiciel par le Licenci\u00e9. Aucune garantie n'est apport\u00e9e quant \u00e0\nl'existence de droits ant\u00e9rieurs sur le nom du Logiciel et sur\nl'existence d'une marque.\n\n\n Article 10 - RESILIATION\n\n10.1 En cas de manquement par le Licenci\u00e9 aux obligations mises \u00e0 sa\ncharge par le Contrat, le Conc\u00e9dant pourra r\u00e9silier de plein droit le\nContrat trente (30) jours apr\u00e8s notification adress\u00e9e au Licenci\u00e9 et\nrest\u00e9e sans effet.\n\n10.2 Le Licenci\u00e9 dont le Contrat est r\u00e9sili\u00e9 n'est plus autoris\u00e9 \u00e0\nutiliser, modifier ou distribuer le Logiciel. Cependant, toutes les\nlicences qu'il aura conc\u00e9d\u00e9es ant\u00e9rieurement \u00e0 la r\u00e9siliation du Contrat\nresteront valides sous r\u00e9serve qu'elles aient \u00e9t\u00e9 effectu\u00e9es en\nconformit\u00e9 avec le Contrat.\n\n\n Article 11 - DISPOSITIONS DIVERSES\n\n\n 11.1 CAUSE EXTERIEURE\n\nAucune des Parties ne sera responsable d'un retard ou d'une d\u00e9faillance\nd'ex\u00e9cution du Contrat qui serait d\u00fb \u00e0 un cas de force majeure, un cas\nfortuit ou une cause ext\u00e9rieure, telle que, notamment, le mauvais\nfonctionnement ou les interruptions du r\u00e9seau \u00e9lectrique ou de\nt\u00e9l\u00e9communication, la paralysie du r\u00e9seau li\u00e9e \u00e0 une attaque\ninformatique, l'intervention des autorit\u00e9s gouvernementales, les\ncatastrophes naturelles, les d\u00e9g\u00e2ts des eaux, les tremblements de terre,\nle feu, les explosions, les gr\u00e8ves et les conflits sociaux, l'\u00e9tat de\nguerre...\n\n11.2 Le fait, par l'une ou l'autre des Parties, d'omettre en une ou\nplusieurs occasions de se pr\u00e9valoir d'une ou plusieurs dispositions du\nContrat, ne pourra en aucun cas impliquer renonciation par la Partie\nint\u00e9ress\u00e9e \u00e0 s'en pr\u00e9valoir ult\u00e9rieurement.\n\n11.3 Le Contrat annule et remplace toute convention ant\u00e9rieure, \u00e9crite\nou orale, entre les Parties sur le m\u00eame objet et constitue l'accord\nentier entre les Parties sur cet objet. Aucune addition ou modification\naux termes du Contrat n'aura d'effet \u00e0 l'\u00e9gard des Parties \u00e0 moins\nd'\u00eatre faite par \u00e9crit et sign\u00e9e par leurs repr\u00e9sentants d\u00fbment habilit\u00e9s.\n\n11.4 Dans l'hypoth\u00e8se o\u00f9 une ou plusieurs des dispositions du Contrat\ns'av\u00e8rerait contraire \u00e0 une loi ou \u00e0 un texte applicable, existants ou\nfuturs, cette loi ou ce texte pr\u00e9vaudrait, et les Parties feraient les\namendements n\u00e9cessaires pour se conformer \u00e0 cette loi ou \u00e0 ce texte.\nToutes les autres dispositions resteront en vigueur. De m\u00eame, la\nnullit\u00e9, pour quelque raison que ce soit, d'une des dispositions du\nContrat ne saurait entra\u00eener la nullit\u00e9 de l'ensemble du Contrat.\n\n\n 11.5 LANGUE\n\nLe Contrat est r\u00e9dig\u00e9 en langue fran\u00e7aise et en langue anglaise, ces\ndeux versions faisant \u00e9galement foi.\n\n\n Article 12 - NOUVELLES VERSIONS DU CONTRAT\n\n12.1 Toute personne est autoris\u00e9e \u00e0 copier et distribuer des copies de\nce Contrat.\n\n12.2 Afin d'en pr\u00e9server la coh\u00e9rence, le texte du Contrat est prot\u00e9g\u00e9\net ne peut \u00eatre modifi\u00e9 que par les auteurs de la licence, lesquels se\nr\u00e9servent le droit de publier p\u00e9riodiquement des mises \u00e0 jour ou de\nnouvelles versions du Contrat, qui poss\u00e9deront chacune un num\u00e9ro\ndistinct. Ces versions ult\u00e9rieures seront susceptibles de prendre en\ncompte de nouvelles probl\u00e9matiques rencontr\u00e9es par les logiciels libres.\n\n12.3 Tout Logiciel diffus\u00e9 sous une version donn\u00e9e du Contrat ne pourra\nfaire l'objet d'une diffusion ult\u00e9rieure que sous la m\u00eame version du\nContrat ou une version post\u00e9rieure.\n\n\n Article 13 - LOI APPLICABLE ET COMPETENCE TERRITORIALE\n\n13.1 Le Contrat est r\u00e9gi par la loi fran\u00e7aise. Les Parties conviennent\nde tenter de r\u00e9gler \u00e0 l'amiable les diff\u00e9rends ou litiges qui\nviendraient \u00e0 se produire par suite ou \u00e0 l'occasion du Contrat.\n\n13.2 A d\u00e9faut d'accord amiable dans un d\u00e9lai de deux (2) mois \u00e0 compter\nde leur survenance et sauf situation relevant d'une proc\u00e9dure d'urgence,\nles diff\u00e9rends ou litiges seront port\u00e9s par la Partie la plus diligente\ndevant les Tribunaux comp\u00e9tents de Paris.\n\n\nVersion 1.0 du 2006-09-05.", + "json": "cecill-b.json", + "yaml": "cecill-b.yml", + "html": "cecill-b.html", + "license": "cecill-b.LICENSE" + }, + { + "license_key": "cecill-b-en", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cecill-b-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CeCILL-B FREE SOFTWARE LICENSE AGREEMENT\n\n\n Notice\n\nThis Agreement is a Free Software license agreement that is the result\nof discussions between its authors in order to ensure compliance with\nthe two main principles guiding its drafting:\n\n * firstly, compliance with the principles governing the distribution\n of Free Software: access to source code, broad rights granted to\n users,\n * secondly, the election of a governing law, French law, with which\n it is conformant, both as regards the law of torts and\n intellectual property law, and the protection that it offers to\n both authors and holders of the economic rights over software.\n\nThe authors of the CeCILL-B (for Ce[a] C[nrs] I[nria] L[ogiciel] L[ibre])\nlicense are: \n\nCommissariat \u00e0 l'Energie Atomique - CEA, a public scientific, technical\nand industrial research establishment, having its principal place of\nbusiness at 25 rue Leblanc, immeuble Le Ponant D, 75015 Paris, France.\n\nCentre National de la Recherche Scientifique - CNRS, a public scientific\nand technological establishment, having its principal place of business\nat 3 rue Michel-Ange, 75794 Paris cedex 16, France.\n\nInstitut National de Recherche en Informatique et en Automatique -\nINRIA, a public scientific and technological establishment, having its\nprincipal place of business at Domaine de Voluceau, Rocquencourt, BP\n105, 78153 Le Chesnay cedex, France.\n\n\n Preamble\n\nThis Agreement is an open source software license intended to give users\nsignificant freedom to modify and redistribute the software licensed\nhereunder.\n\nThe exercising of this freedom is conditional upon a strong obligation\nof giving credits for everybody that distributes a software\nincorporating a software ruled by the current license so as all\ncontributions to be properly identified and acknowledged.\n\nIn consideration of access to the source code and the rights to copy,\nmodify and redistribute granted by the license, users are provided only\nwith a limited warranty and the software's author, the holder of the\neconomic rights, and the successive licensors only have limited liability.\n\nIn this respect, the risks associated with loading, using, modifying\nand/or developing or reproducing the software by the user are brought to\nthe user's attention, given its Free Software status, which may make it\ncomplicated to use, with the result that its use is reserved for\ndevelopers and experienced professionals having in-depth computer\nknowledge. Users are therefore encouraged to load and test the\nsuitability of the software as regards their requirements in conditions\nenabling the security of their systems and/or data to be ensured and,\nmore generally, to use and operate it in the same conditions of\nsecurity. This Agreement may be freely reproduced and published,\nprovided it is not altered, and that no provisions are either added or\nremoved herefrom.\n\nThis Agreement may apply to any or all software for which the holder of\nthe economic rights decides to submit the use thereof to its provisions.\n\n\n Article 1 - DEFINITIONS\n\nFor the purpose of this Agreement, when the following expressions\ncommence with a capital letter, they shall have the following meaning:\n\nAgreement: means this license agreement, and its possible subsequent\nversions and annexes.\n\nSoftware: means the software in its Object Code and/or Source Code form\nand, where applicable, its documentation, \"as is\" when the Licensee\naccepts the Agreement.\n\nInitial Software: means the Software in its Source Code and possibly its\nObject Code form and, where applicable, its documentation, \"as is\" when\nit is first distributed under the terms and conditions of the Agreement.\n\nModified Software: means the Software modified by at least one\nContribution.\n\nSource Code: means all the Software's instructions and program lines to\nwhich access is required so as to modify the Software.\n\nObject Code: means the binary files originating from the compilation of\nthe Source Code.\n\nHolder: means the holder(s) of the economic rights over the Initial\nSoftware.\n\nLicensee: means the Software user(s) having accepted the Agreement.\n\nContributor: means a Licensee having made at least one Contribution.\n\nLicensor: means the Holder, or any other individual or legal entity, who\ndistributes the Software under the Agreement.\n\nContribution: means any or all modifications, corrections, translations,\nadaptations and/or new functions integrated into the Software by any or\nall Contributors, as well as any or all Internal Modules.\n\nModule: means a set of sources files including their documentation that\nenables supplementary functions or services in addition to those offered\nby the Software.\n\nExternal Module: means any or all Modules, not derived from the\nSoftware, so that this Module and the Software run in separate address\nspaces, with one calling the other when they are run.\n\nInternal Module: means any or all Module, connected to the Software so\nthat they both execute in the same address space.\n\nParties: mean both the Licensee and the Licensor.\n\nThese expressions may be used both in singular and plural form.\n\n\n Article 2 - PURPOSE\n\nThe purpose of the Agreement is the grant by the Licensor to the\nLicensee of a non-exclusive, transferable and worldwide license for the\nSoftware as set forth in Article 5 hereinafter for the whole term of the\nprotection granted by the rights over said Software.\n\n\n Article 3 - ACCEPTANCE\n\n3.1 The Licensee shall be deemed as having accepted the terms and\nconditions of this Agreement upon the occurrence of the first of the\nfollowing events:\n\n * (i) loading the Software by any or all means, notably, by\n downloading from a remote server, or by loading from a physical\n medium;\n * (ii) the first time the Licensee exercises any of the rights\n granted hereunder.\n\n3.2 One copy of the Agreement, containing a notice relating to the\ncharacteristics of the Software, to the limited warranty, and to the\nfact that its use is restricted to experienced users has been provided\nto the Licensee prior to its acceptance as set forth in Article 3.1\nhereinabove, and the Licensee hereby acknowledges that it has read and\nunderstood it.\n\n\n Article 4 - EFFECTIVE DATE AND TERM\n\n\n 4.1 EFFECTIVE DATE\n\nThe Agreement shall become effective on the date when it is accepted by\nthe Licensee as set forth in Article 3.1.\n\n\n 4.2 TERM\n\nThe Agreement shall remain in force for the entire legal term of\nprotection of the economic rights over the Software.\n\n\n Article 5 - SCOPE OF RIGHTS GRANTED\n\nThe Licensor hereby grants to the Licensee, who accepts, the following\nrights over the Software for any or all use, and for the term of the\nAgreement, on the basis of the terms and conditions set forth hereinafter.\n\nBesides, if the Licensor owns or comes to own one or more patents\nprotecting all or part of the functions of the Software or of its\ncomponents, the Licensor undertakes not to enforce the rights granted by\nthese patents against successive Licensees using, exploiting or\nmodifying the Software. If these patents are transferred, the Licensor\nundertakes to have the transferees subscribe to the obligations set\nforth in this paragraph.\n\n\n 5.1 RIGHT OF USE\n\nThe Licensee is authorized to use the Software, without any limitation\nas to its fields of application, with it being hereinafter specified\nthat this comprises:\n\n 1. permanent or temporary reproduction of all or part of the Software\n by any or all means and in any or all form.\n\n 2. loading, displaying, running, or storing the Software on any or\n all medium.\n\n 3. entitlement to observe, study or test its operation so as to\n determine the ideas and principles behind any or all constituent\n elements of said Software. This shall apply when the Licensee\n carries out any or all loading, displaying, running, transmission\n or storage operation as regards the Software, that it is entitled\n to carry out hereunder.\n\n\n 5.2 ENTITLEMENT TO MAKE CONTRIBUTIONS\n\nThe right to make Contributions includes the right to translate, adapt,\narrange, or make any or all modifications to the Software, and the right\nto reproduce the resulting software.\n\nThe Licensee is authorized to make any or all Contributions to the\nSoftware provided that it includes an explicit notice that it is the\nauthor of said Contribution and indicates the date of the creation thereof.\n\n\n 5.3 RIGHT OF DISTRIBUTION\n\nIn particular, the right of distribution includes the right to publish,\ntransmit and communicate the Software to the general public on any or\nall medium, and by any or all means, and the right to market, either in\nconsideration of a fee, or free of charge, one or more copies of the\nSoftware by any means.\n\nThe Licensee is further authorized to distribute copies of the modified\nor unmodified Software to third parties according to the terms and\nconditions set forth hereinafter.\n\n\n 5.3.1 DISTRIBUTION OF SOFTWARE WITHOUT MODIFICATION\n\nThe Licensee is authorized to distribute true copies of the Software in\nSource Code or Object Code form, provided that said distribution\ncomplies with all the provisions of the Agreement and is accompanied by:\n\n 1. a copy of the Agreement,\n\n 2. a notice relating to the limitation of both the Licensor's\n warranty and liability as set forth in Articles 8 and 9,\n\nand that, in the event that only the Object Code of the Software is\nredistributed, the Licensee allows effective access to the full Source\nCode of the Software at a minimum during the entire period of its\ndistribution of the Software, it being understood that the additional\ncost of acquiring the Source Code shall not exceed the cost of\ntransferring the data.\n\n\n 5.3.2 DISTRIBUTION OF MODIFIED SOFTWARE\n\nIf the Licensee makes any Contribution to the Software, the resulting\nModified Software may be distributed under a license agreement other\nthan this Agreement subject to compliance with the provisions of Article\n5.3.4.\n\n\n 5.3.3 DISTRIBUTION OF EXTERNAL MODULES\n\nWhen the Licensee has developed an External Module, the terms and\nconditions of this Agreement do not apply to said External Module, that\nmay be distributed under a separate license agreement.\n\n\n 5.3.4 CREDITS\n\nAny Licensee who may distribute a Modified Software hereby expressly\nagrees to:\n\n 1. indicate in the related documentation that it is based on the\n Software licensed hereunder, and reproduce the intellectual\n property notice for the Software,\n\n 2. ensure that written indications of the Software intended use,\n intellectual property notice and license hereunder are included in\n easily accessible format from the Modified Software interface,\n\n 3. mention, on a freely accessible website describing the Modified\n Software, at least throughout the distribution term thereof, that\n it is based on the Software licensed hereunder, and reproduce the\n Software intellectual property notice,\n\n 4. where it is distributed to a third party that may distribute a\n Modified Software without having to make its source code\n available, make its best efforts to ensure that said third party\n agrees to comply with the obligations set forth in this Article .\n\nIf the Software, whether or not modified, is distributed with an\nExternal Module designed for use in connection with the Software, the\nLicensee shall submit said External Module to the foregoing obligations.\n\n\n 5.3.5 COMPATIBILITY WITH THE CeCILL AND CeCILL-C LICENSES\n\nWhere a Modified Software contains a Contribution subject to the CeCILL\nlicense, the provisions set forth in Article 5.3.4 shall be optional.\n\nA Modified Software may be distributed under the CeCILL-C license. In\nsuch a case the provisions set forth in Article 5.3.4 shall be optional.\n\n\n Article 6 - INTELLECTUAL PROPERTY\n\n\n 6.1 OVER THE INITIAL SOFTWARE\n\nThe Holder owns the economic rights over the Initial Software. Any or\nall use of the Initial Software is subject to compliance with the terms\nand conditions under which the Holder has elected to distribute its work\nand no one shall be entitled to modify the terms and conditions for the\ndistribution of said Initial Software.\n\nThe Holder undertakes that the Initial Software will remain ruled at\nleast by this Agreement, for the duration set forth in Article 4.2.\n\n\n 6.2 OVER THE CONTRIBUTIONS\n\nThe Licensee who develops a Contribution is the owner of the\nintellectual property rights over this Contribution as defined by\napplicable law.\n\n\n 6.3 OVER THE EXTERNAL MODULES\n\nThe Licensee who develops an External Module is the owner of the\nintellectual property rights over this External Module as defined by\napplicable law and is free to choose the type of agreement that shall\ngovern its distribution.\n\n\n 6.4 JOINT PROVISIONS\n\nThe Licensee expressly undertakes:\n\n 1. not to remove, or modify, in any manner, the intellectual property\n notices attached to the Software;\n\n 2. to reproduce said notices, in an identical manner, in the copies\n of the Software modified or not.\n\nThe Licensee undertakes not to directly or indirectly infringe the\nintellectual property rights of the Holder and/or Contributors on the\nSoftware and to take, where applicable, vis-\u00e0-vis its staff, any and all\nmeasures required to ensure respect of said intellectual property rights\nof the Holder and/or Contributors.\n\n\n Article 7 - RELATED SERVICES\n\n7.1 Under no circumstances shall the Agreement oblige the Licensor to\nprovide technical assistance or maintenance services for the Software.\n\nHowever, the Licensor is entitled to offer this type of services. The\nterms and conditions of such technical assistance, and/or such\nmaintenance, shall be set forth in a separate instrument. Only the\nLicensor offering said maintenance and/or technical assistance services\nshall incur liability therefor.\n\n7.2 Similarly, any Licensor is entitled to offer to its licensees, under\nits sole responsibility, a warranty, that shall only be binding upon\nitself, for the redistribution of the Software and/or the Modified\nSoftware, under terms and conditions that it is free to decide. Said\nwarranty, and the financial terms and conditions of its application,\nshall be subject of a separate instrument executed between the Licensor\nand the Licensee.\n\n\n Article 8 - LIABILITY\n\n8.1 Subject to the provisions of Article 8.2, the Licensee shall be\nentitled to claim compensation for any direct loss it may have suffered\nfrom the Software as a result of a fault on the part of the relevant\nLicensor, subject to providing evidence thereof.\n\n8.2 The Licensor's liability is limited to the commitments made under\nthis Agreement and shall not be incurred as a result of in particular:\n(i) loss due the Licensee's total or partial failure to fulfill its\nobligations, (ii) direct or consequential loss that is suffered by the\nLicensee due to the use or performance of the Software, and (iii) more\ngenerally, any consequential loss. In particular the Parties expressly\nagree that any or all pecuniary or business loss (i.e. loss of data,\nloss of profits, operating loss, loss of customers or orders,\nopportunity cost, any disturbance to business activities) or any or all\nlegal proceedings instituted against the Licensee by a third party,\nshall constitute consequential loss and shall not provide entitlement to\nany or all compensation from the Licensor.\n\n\n Article 9 - WARRANTY\n\n9.1 The Licensee acknowledges that the scientific and technical\nstate-of-the-art when the Software was distributed did not enable all\npossible uses to be tested and verified, nor for the presence of\npossible defects to be detected. In this respect, the Licensee's\nattention has been drawn to the risks associated with loading, using,\nmodifying and/or developing and reproducing the Software which are\nreserved for experienced users.\n\nThe Licensee shall be responsible for verifying, by any or all means,\nthe suitability of the product for its requirements, its good working\norder, and for ensuring that it shall not cause damage to either persons\nor properties.\n\n9.2 The Licensor hereby represents, in good faith, that it is entitled\nto grant all the rights over the Software (including in particular the\nrights set forth in Article 5).\n\n9.3 The Licensee acknowledges that the Software is supplied \"as is\" by\nthe Licensor without any other express or tacit warranty, other than\nthat provided for in Article 9.2 and, in particular, without any warranty \nas to its commercial value, its secured, safe, innovative or relevant \nnature.\n\nSpecifically, the Licensor does not warrant that the Software is free\nfrom any error, that it will operate without interruption, that it will\nbe compatible with the Licensee's own equipment and software\nconfiguration, nor that it will meet the Licensee's requirements.\n\n9.4 The Licensor does not either expressly or tacitly warrant that the\nSoftware does not infringe any third party intellectual property right\nrelating to a patent, software or any other property right. Therefore,\nthe Licensor disclaims any and all liability towards the Licensee\narising out of any or all proceedings for infringement that may be\ninstituted in respect of the use, modification and redistribution of the\nSoftware. Nevertheless, should such proceedings be instituted against\nthe Licensee, the Licensor shall provide it with technical and legal\nassistance for its defense. Such technical and legal assistance shall be\ndecided on a case-by-case basis between the relevant Licensor and the\nLicensee pursuant to a memorandum of understanding. The Licensor\ndisclaims any and all liability as regards the Licensee's use of the\nname of the Software. No warranty is given as regards the existence of\nprior rights over the name of the Software or as regards the existence\nof a trademark.\n\n\n Article 10 - TERMINATION\n\n10.1 In the event of a breach by the Licensee of its obligations\nhereunder, the Licensor may automatically terminate this Agreement\nthirty (30) days after notice has been sent to the Licensee and has\nremained ineffective.\n\n10.2 A Licensee whose Agreement is terminated shall no longer be\nauthorized to use, modify or distribute the Software. However, any\nlicenses that it may have granted prior to termination of the Agreement\nshall remain valid subject to their having been granted in compliance\nwith the terms and conditions hereof.\n\n\n Article 11 - MISCELLANEOUS\n\n\n 11.1 EXCUSABLE EVENTS\n\nNeither Party shall be liable for any or all delay, or failure to\nperform the Agreement, that may be attributable to an event of force\nmajeure, an act of God or an outside cause, such as defective\nfunctioning or interruptions of the electricity or telecommunications\nnetworks, network paralysis following a virus attack, intervention by\ngovernment authorities, natural disasters, water damage, earthquakes,\nfire, explosions, strikes and labor unrest, war, etc.\n\n11.2 Any failure by either Party, on one or more occasions, to invoke\none or more of the provisions hereof, shall under no circumstances be\ninterpreted as being a waiver by the interested Party of its right to\ninvoke said provision(s) subsequently.\n\n11.3 The Agreement cancels and replaces any or all previous agreements,\nwhether written or oral, between the Parties and having the same\npurpose, and constitutes the entirety of the agreement between said\nParties concerning said purpose. No supplement or modification to the\nterms and conditions hereof shall be effective as between the Parties\nunless it is made in writing and signed by their duly authorized\nrepresentatives.\n\n11.4 In the event that one or more of the provisions hereof were to\nconflict with a current or future applicable act or legislative text,\nsaid act or legislative text shall prevail, and the Parties shall make\nthe necessary amendments so as to comply with said act or legislative\ntext. All other provisions shall remain effective. Similarly, invalidity\nof a provision of the Agreement, for any reason whatsoever, shall not\ncause the Agreement as a whole to be invalid.\n\n\n 11.5 LANGUAGE\n\nThe Agreement is drafted in both French and English and both versions\nare deemed authentic.\n\n\n Article 12 - NEW VERSIONS OF THE AGREEMENT\n\n12.1 Any person is authorized to duplicate and distribute copies of this\nAgreement.\n\n12.2 So as to ensure coherence, the wording of this Agreement is\nprotected and may only be modified by the authors of the License, who\nreserve the right to periodically publish updates or new versions of the\nAgreement, each with a separate number. These subsequent versions may\naddress new issues encountered by Free Software.\n\n12.3 Any Software distributed under a given version of the Agreement may\nonly be subsequently distributed under the same version of the Agreement\nor a subsequent version.\n\n\n Article 13 - GOVERNING LAW AND JURISDICTION\n\n13.1 The Agreement is governed by French law. The Parties agree to\nendeavor to seek an amicable solution to any disagreements or disputes\nthat may arise during the performance of the Agreement.\n\n13.2 Failing an amicable solution within two (2) months as from their\noccurrence, and unless emergency proceedings are necessary, the\ndisagreements or disputes shall be referred to the Paris Courts having\njurisdiction, by the more diligent Party.\n\n\nVersion 1.0 dated 2006-09-05.", + "json": "cecill-b-en.json", + "yaml": "cecill-b-en.yml", + "html": "cecill-b-en.html", + "license": "cecill-b-en.LICENSE" + }, + { + "license_key": "cecill-c", + "category": "Copyleft", + "spdx_license_key": "CECILL-C", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL-C\n\n\n Avertissement\n\nCe contrat est une licence de logiciel libre issue d'une concertation\nentre ses auteurs afin que le respect de deux grands principes pr\u00e9side \u00e0\nsa r\u00e9daction:\n\n * d'une part, le respect des principes de diffusion des logiciels\n libres: acc\u00e8s au code source, droits \u00e9tendus conf\u00e9r\u00e9s aux\n utilisateurs,\n * d'autre part, la d\u00e9signation d'un droit applicable, le droit\n fran\u00e7ais, auquel elle est conforme, tant au regard du droit de la\n responsabilit\u00e9 civile que du droit de la propri\u00e9t\u00e9 intellectuelle\n et de la protection qu'il offre aux auteurs et titulaires des\n droits patrimoniaux sur un logiciel.\n\nLes auteurs de la licence CeCILL-C (pour Ce[a] C[nrs] I[nria] L[ogiciel]\nL[ibre]) sont:\n\nCommissariat \u00e0 l'Energie Atomique - CEA, \u00e9tablissement public de\nrecherche \u00e0 caract\u00e8re scientifique, technique et industriel, dont le\nsi\u00e8ge est situ\u00e9 25 rue Leblanc, immeuble Le Ponant D, 75015 Paris.\n\nCentre National de la Recherche Scientifique - CNRS, \u00e9tablissement\npublic \u00e0 caract\u00e8re scientifique et technologique, dont le si\u00e8ge est\nsitu\u00e9 3 rue Michel-Ange, 75794 Paris cedex 16.\n\nInstitut National de Recherche en Informatique et en Automatique -\nINRIA, \u00e9tablissement public \u00e0 caract\u00e8re scientifique et technologique,\ndont le si\u00e8ge est situ\u00e9 Domaine de Voluceau, Rocquencourt, BP 105, 78153\nLe Chesnay cedex.\n\n\n Pr\u00e9ambule\n\nCe contrat est une licence de logiciel libre dont l'objectif est de\nconf\u00e9rer aux utilisateurs la libert\u00e9 de modifier et de r\u00e9utiliser le\nlogiciel r\u00e9gi par cette licence.\n\nL'exercice de cette libert\u00e9 est assorti d'une obligation de remettre \u00e0\nla disposition de la communaut\u00e9 les modifications apport\u00e9es au code\nsource du logiciel afin de contribuer \u00e0 son \u00e9volution.\n\nL'accessibilit\u00e9 au code source et les droits de copie, de modification\net de redistribution qui d\u00e9coulent de ce contrat ont pour contrepartie\nde n'offrir aux utilisateurs qu'une garantie limit\u00e9e et de ne faire\npeser sur l'auteur du logiciel, le titulaire des droits patrimoniaux et\nles conc\u00e9dants successifs qu'une responsabilit\u00e9 restreinte.\n\nA cet \u00e9gard l'attention de l'utilisateur est attir\u00e9e sur les risques\nassoci\u00e9s au chargement, \u00e0 l'utilisation, \u00e0 la modification et/ou au\nd\u00e9veloppement et \u00e0 la reproduction du logiciel par l'utilisateur \u00e9tant\ndonn\u00e9 sa sp\u00e9cificit\u00e9 de logiciel libre, qui peut le rendre complexe \u00e0\nmanipuler et qui le r\u00e9serve donc \u00e0 des d\u00e9veloppeurs ou des\nprofessionnels avertis poss\u00e9dant des connaissances informatiques\napprofondies. Les utilisateurs sont donc invit\u00e9s \u00e0 charger et tester\nl'ad\u00e9quation du logiciel \u00e0 leurs besoins dans des conditions permettant\nd'assurer la s\u00e9curit\u00e9 de leurs syst\u00e8mes et/ou de leurs donn\u00e9es et, plus\ng\u00e9n\u00e9ralement, \u00e0 l'utiliser et l'exploiter dans les m\u00eames conditions de\ns\u00e9curit\u00e9. Ce contrat peut \u00eatre reproduit et diffus\u00e9 librement, sous\nr\u00e9serve de le conserver en l'\u00e9tat, sans ajout ni suppression de clauses.\n\nCe contrat est susceptible de s'appliquer \u00e0 tout logiciel dont le\ntitulaire des droits patrimoniaux d\u00e9cide de soumettre l'exploitation aux\ndispositions qu'il contient.\n\n\n Article 1 - DEFINITIONS\n\nDans ce contrat, les termes suivants, lorsqu'ils seront \u00e9crits avec une\nlettre capitale, auront la signification suivante:\n\nContrat: d\u00e9signe le pr\u00e9sent contrat de licence, ses \u00e9ventuelles versions\npost\u00e9rieures et annexes.\n\nLogiciel: d\u00e9signe le logiciel sous sa forme de Code Objet et/ou de Code\nSource et le cas \u00e9ch\u00e9ant sa documentation, dans leur \u00e9tat au moment de\nl'acceptation du Contrat par le Licenci\u00e9.\n\nLogiciel Initial: d\u00e9signe le Logiciel sous sa forme de Code Source et\n\u00e9ventuellement de Code Objet et le cas \u00e9ch\u00e9ant sa documentation, dans\nleur \u00e9tat au moment de leur premi\u00e8re diffusion sous les termes du Contrat.\n\nLogiciel Modifi\u00e9: d\u00e9signe le Logiciel modifi\u00e9 par au moins une\nContribution Int\u00e9gr\u00e9e.\n\nCode Source: d\u00e9signe l'ensemble des instructions et des lignes de\nprogramme du Logiciel et auquel l'acc\u00e8s est n\u00e9cessaire en vue de\nmodifier le Logiciel.\n\nCode Objet: d\u00e9signe les fichiers binaires issus de la compilation du\nCode Source.\n\nTitulaire: d\u00e9signe le ou les d\u00e9tenteurs des droits patrimoniaux d'auteur\nsur le Logiciel Initial.\n\nLicenci\u00e9: d\u00e9signe le ou les utilisateurs du Logiciel ayant accept\u00e9 le\nContrat.\n\nContributeur: d\u00e9signe le Licenci\u00e9 auteur d'au moins une Contribution\nInt\u00e9gr\u00e9e.\n\nConc\u00e9dant: d\u00e9signe le Titulaire ou toute personne physique ou morale\ndistribuant le Logiciel sous le Contrat.\n\nContribution Int\u00e9gr\u00e9e: d\u00e9signe l'ensemble des modifications,\ncorrections, traductions, adaptations et/ou nouvelles fonctionnalit\u00e9s\nint\u00e9gr\u00e9es dans le Code Source par tout Contributeur.\n\nModule Li\u00e9: d\u00e9signe un ensemble de fichiers sources y compris leur\ndocumentation qui, sans modification du Code Source, permet de r\u00e9aliser\ndes fonctionnalit\u00e9s ou services suppl\u00e9mentaires \u00e0 ceux fournis par le\nLogiciel.\n\nLogiciel D\u00e9riv\u00e9: d\u00e9signe toute combinaison du Logiciel, modifi\u00e9 ou non,\net d'un Module Li\u00e9.\n\nParties: d\u00e9signe collectivement le Licenci\u00e9 et le Conc\u00e9dant.\n\nCes termes s'entendent au singulier comme au pluriel.\n\n\n Article 2 - OBJET\n\nLe Contrat a pour objet la concession par le Conc\u00e9dant au Licenci\u00e9 d'une\nlicence non exclusive, cessible et mondiale du Logiciel telle que\nd\u00e9finie ci-apr\u00e8s \u00e0 l'article 5 pour toute la dur\u00e9e de protection des droits\nportant sur ce Logiciel.\n\n\n Article 3 - ACCEPTATION\n\n3.1 L'acceptation par le Licenci\u00e9 des termes du Contrat est r\u00e9put\u00e9e\nacquise du fait du premier des faits suivants:\n\n * (i) le chargement du Logiciel par tout moyen notamment par\n t\u00e9l\u00e9chargement \u00e0 partir d'un serveur distant ou par chargement \u00e0\n partir d'un support physique;\n * (ii) le premier exercice par le Licenci\u00e9 de l'un quelconque des\n droits conc\u00e9d\u00e9s par le Contrat.\n\n3.2 Un exemplaire du Contrat, contenant notamment un avertissement\nrelatif aux sp\u00e9cificit\u00e9s du Logiciel, \u00e0 la restriction de garantie et \u00e0\nla limitation \u00e0 un usage par des utilisateurs exp\u00e9riment\u00e9s a \u00e9t\u00e9 mis \u00e0\ndisposition du Licenci\u00e9 pr\u00e9alablement \u00e0 son acceptation telle que\nd\u00e9finie \u00e0 l'article 3.1 ci dessus et le Licenci\u00e9 reconna\u00eet en avoir pris\nconnaissance.\n\n\n Article 4 - ENTREE EN VIGUEUR ET DUREE\n\n\n 4.1 ENTREE EN VIGUEUR\n\nLe Contrat entre en vigueur \u00e0 la date de son acceptation par le Licenci\u00e9\ntelle que d\u00e9finie en 3.1.\n\n\n 4.2 DUREE\n\nLe Contrat produira ses effets pendant toute la dur\u00e9e l\u00e9gale de\nprotection des droits patrimoniaux portant sur le Logiciel.\n\n\n Article 5 - ETENDUE DES DROITS CONCEDES\n\nLe Conc\u00e9dant conc\u00e8de au Licenci\u00e9, qui accepte, les droits suivants sur\nle Logiciel pour toutes destinations et pour la dur\u00e9e du Contrat dans\nles conditions ci-apr\u00e8s d\u00e9taill\u00e9es.\n\nPar ailleurs, si le Conc\u00e9dant d\u00e9tient ou venait \u00e0 d\u00e9tenir un ou\nplusieurs brevets d'invention prot\u00e9geant tout ou partie des\nfonctionnalit\u00e9s du Logiciel ou de ses composants, il s'engage \u00e0 ne pas\nopposer les \u00e9ventuels droits conf\u00e9r\u00e9s par ces brevets aux Licenci\u00e9s\nsuccessifs qui utiliseraient, exploiteraient ou modifieraient le\nLogiciel. En cas de cession de ces brevets, le Conc\u00e9dant s'engage \u00e0\nfaire reprendre les obligations du pr\u00e9sent alin\u00e9a aux cessionnaires.\n\n\n 5.1 DROIT D'UTILISATION\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 utiliser le Logiciel, sans restriction quant\naux domaines d'application, \u00e9tant ci-apr\u00e8s pr\u00e9cis\u00e9 que cela comporte:\n\n 1. la reproduction permanente ou provisoire du Logiciel en tout ou\n partie par tout moyen et sous toute forme.\n\n 2. le chargement, l'affichage, l'ex\u00e9cution, ou le stockage du\n Logiciel sur tout support.\n\n 3. la possibilit\u00e9 d'en observer, d'en \u00e9tudier, ou d'en tester le\n fonctionnement afin de d\u00e9terminer les id\u00e9es et principes qui sont\n \u00e0 la base de n'importe quel \u00e9l\u00e9ment de ce Logiciel; et ceci,\n lorsque le Licenci\u00e9 effectue toute op\u00e9ration de chargement,\n d'affichage, d'ex\u00e9cution, de transmission ou de stockage du\n Logiciel qu'il est en droit d'effectuer en vertu du Contrat.\n\n\n 5.2 DROIT DE MODIFICATION\n\nLe droit de modification comporte le droit de traduire, d'adapter,\nd'arranger ou d'apporter toute autre modification au Logiciel et le\ndroit de reproduire le logiciel en r\u00e9sultant. Il comprend en particulier\nle droit de cr\u00e9er un Logiciel D\u00e9riv\u00e9.\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 apporter toute modification au Logiciel sous\nr\u00e9serve de mentionner, de fa\u00e7on explicite, son nom en tant qu'auteur de\ncette modification et la date de cr\u00e9ation de celle-ci.\n\n\n 5.3 DROIT DE DISTRIBUTION\n\nLe droit de distribution comporte notamment le droit de diffuser, de\ntransmettre et de communiquer le Logiciel au public sur tout support et\npar tout moyen ainsi que le droit de mettre sur le march\u00e9 \u00e0 titre\non\u00e9reux ou gratuit, un ou des exemplaires du Logiciel par tout proc\u00e9d\u00e9.\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 distribuer des copies du Logiciel, modifi\u00e9 ou\nnon, \u00e0 des tiers dans les conditions ci-apr\u00e8s d\u00e9taill\u00e9es.\n\n\n 5.3.1 DISTRIBUTION DU LOGICIEL SANS MODIFICATION\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 distribuer des copies conformes du Logiciel,\nsous forme de Code Source ou de Code Objet, \u00e0 condition que cette\ndistribution respecte les dispositions du Contrat dans leur totalit\u00e9 et\nsoit accompagn\u00e9e:\n\n 1. d'un exemplaire du Contrat,\n\n 2. d'un avertissement relatif \u00e0 la restriction de garantie et de\n responsabilit\u00e9 du Conc\u00e9dant telle que pr\u00e9vue aux articles 8\n et 9,\n\net que, dans le cas o\u00f9 seul le Code Objet du Logiciel est redistribu\u00e9,\nle Licenci\u00e9 permette un acc\u00e8s effectif au Code Source complet du\nLogiciel pendant au moins toute la dur\u00e9e de sa distribution du Logiciel,\n\u00e9tant entendu que le co\u00fbt additionnel d'acquisition du Code Source ne\ndevra pas exc\u00e9der le simple co\u00fbt de transfert des donn\u00e9es.\n\n\n 5.3.2 DISTRIBUTION DU LOGICIEL MODIFIE\n\nLorsque le Licenci\u00e9 apporte une Contribution Int\u00e9gr\u00e9e au Logiciel, les\nconditions de distribution du Logiciel Modifi\u00e9 en r\u00e9sultant sont alors\nsoumises \u00e0 l'int\u00e9gralit\u00e9 des dispositions du Contrat.\n\nLe Licenci\u00e9 est autoris\u00e9 \u00e0 distribuer le Logiciel Modifi\u00e9 sous forme de\ncode source ou de code objet, \u00e0 condition que cette distribution\nrespecte les dispositions du Contrat dans leur totalit\u00e9 et soit\naccompagn\u00e9e:\n\n 1. d'un exemplaire du Contrat,\n\n 2. d'un avertissement relatif \u00e0 la restriction de garantie et de\n responsabilit\u00e9 du Conc\u00e9dant telle que pr\u00e9vue aux articles 8\n et 9,\n\net que, dans le cas o\u00f9 seul le code objet du Logiciel Modifi\u00e9 est\nredistribu\u00e9, le Licenci\u00e9 permette un acc\u00e8s effectif \u00e0 son code source\ncomplet pendant au moins toute la dur\u00e9e de sa distribution du Logiciel\nModifi\u00e9, \u00e9tant entendu que le co\u00fbt additionnel d'acquisition du code\nsource ne devra pas exc\u00e9der le simple co\u00fbt de transfert des donn\u00e9es.\n\n\n 5.3.3 DISTRIBUTION DU LOGICIEL DERIVE\n\nLorsque le Licenci\u00e9 cr\u00e9e un Logiciel D\u00e9riv\u00e9, ce Logiciel D\u00e9riv\u00e9 peut\n\u00eatre distribu\u00e9 sous un contrat de licence autre que le pr\u00e9sent Contrat \u00e0\ncondition de respecter les obligations de mention des droits sur le\nLogiciel telles que d\u00e9finies \u00e0 l'article 6.4. Dans le cas o\u00f9 la cr\u00e9ation du\nLogiciel D\u00e9riv\u00e9 a n\u00e9cessit\u00e9 une modification du Code Source le licenci\u00e9\ns'engage \u00e0 ce que: \n\n 1. le Logiciel Modifi\u00e9 correspondant \u00e0 cette modification soit r\u00e9gi\n par le pr\u00e9sent Contrat,\n 2. les Contributions Int\u00e9gr\u00e9es dont le Logiciel Modifi\u00e9 r\u00e9sulte\n soient clairement identifi\u00e9es et document\u00e9es,\n 3. le Licenci\u00e9 permette un acc\u00e8s effectif au code source du Logiciel\n Modifi\u00e9, pendant au moins toute la dur\u00e9e de la distribution du\n Logiciel D\u00e9riv\u00e9, de telle sorte que ces modifications puissent\n \u00eatre reprises dans une version ult\u00e9rieure du Logiciel, \u00e9tant\n entendu que le co\u00fbt additionnel d'acquisition du code source du\n Logiciel Modifi\u00e9 ne devra pas exc\u00e9der le simple co\u00fbt du transfert\n des donn\u00e9es.\n\n\n 5.3.4 COMPATIBILITE AVEC LA LICENCE CeCILL\n\nLorsqu'un Logiciel Modifi\u00e9 contient une Contribution Int\u00e9gr\u00e9e soumise au\ncontrat de licence CeCILL, ou lorsqu'un Logiciel D\u00e9riv\u00e9 contient un\nModule Li\u00e9 soumis au contrat de licence CeCILL, les stipulations pr\u00e9vues\nau troisi\u00e8me item de l'article 6.4 sont facultatives.\n\n\n Article 6 - PROPRIETE INTELLECTUELLE\n\n\n 6.1 SUR LE LOGICIEL INITIAL\n\nLe Titulaire est d\u00e9tenteur des droits patrimoniaux sur le Logiciel\nInitial. Toute utilisation du Logiciel Initial est soumise au respect\ndes conditions dans lesquelles le Titulaire a choisi de diffuser son\noeuvre et nul autre n'a la facult\u00e9 de modifier les conditions de\ndiffusion de ce Logiciel Initial.\n\nLe Titulaire s'engage \u00e0 ce que le Logiciel Initial reste au moins r\u00e9gi\npar le Contrat et ce, pour la dur\u00e9e vis\u00e9e \u00e0 l'article 4.2.\n\n\n 6.2 SUR LES CONTRIBUTIONS INTEGREES\n\nLe Licenci\u00e9 qui a d\u00e9velopp\u00e9 une Contribution Int\u00e9gr\u00e9e est titulaire sur\ncelle-ci des droits de propri\u00e9t\u00e9 intellectuelle dans les conditions\nd\u00e9finies par la l\u00e9gislation applicable.\n\n\n 6.3 SUR LES MODULES LIES\n\nLe Licenci\u00e9 qui a d\u00e9velopp\u00e9 un Module Li\u00e9 est titulaire sur celui-ci des\ndroits de propri\u00e9t\u00e9 intellectuelle dans les conditions d\u00e9finies par la\nl\u00e9gislation applicable et reste libre du choix du contrat r\u00e9gissant sa\ndiffusion dans les conditions d\u00e9finies \u00e0 l'article 5.3.3.\n\n\n 6.4 MENTIONS DES DROITS\n\nLe Licenci\u00e9 s'engage express\u00e9ment:\n\n 1. \u00e0 ne pas supprimer ou modifier de quelque mani\u00e8re que ce soit les\n mentions de propri\u00e9t\u00e9 intellectuelle appos\u00e9es sur le Logiciel;\n\n 2. \u00e0 reproduire \u00e0 l'identique lesdites mentions de propri\u00e9t\u00e9\n intellectuelle sur les copies du Logiciel modifi\u00e9 ou non;\n\n 3. \u00e0 faire en sorte que l'utilisation du Logiciel, ses mentions de\n propri\u00e9t\u00e9 intellectuelle et le fait qu'il est r\u00e9gi par le Contrat\n soient indiqu\u00e9s dans un texte facilement accessible notamment\n depuis l'interface de tout Logiciel D\u00e9riv\u00e9.\n\nLe Licenci\u00e9 s'engage \u00e0 ne pas porter atteinte, directement ou\nindirectement, aux droits de propri\u00e9t\u00e9 intellectuelle du Titulaire et/ou\ndes Contributeurs sur le Logiciel et \u00e0 prendre, le cas \u00e9ch\u00e9ant, \u00e0\nl'\u00e9gard de son personnel toutes les mesures n\u00e9cessaires pour assurer le\nrespect des dits droits de propri\u00e9t\u00e9 intellectuelle du Titulaire et/ou\ndes Contributeurs.\n\n\n Article 7 - SERVICES ASSOCIES\n\n7.1 Le Contrat n'oblige en aucun cas le Conc\u00e9dant \u00e0 la r\u00e9alisation de\nprestations d'assistance technique ou de maintenance du Logiciel.\n\nCependant le Conc\u00e9dant reste libre de proposer ce type de services. Les\ntermes et conditions d'une telle assistance technique et/ou d'une telle\nmaintenance seront alors d\u00e9termin\u00e9s dans un acte s\u00e9par\u00e9. Ces actes de\nmaintenance et/ou assistance technique n'engageront que la seule\nresponsabilit\u00e9 du Conc\u00e9dant qui les propose.\n\n7.2 De m\u00eame, tout Conc\u00e9dant est libre de proposer, sous sa seule\nresponsabilit\u00e9, \u00e0 ses licenci\u00e9s une garantie, qui n'engagera que lui,\nlors de la redistribution du Logiciel et/ou du Logiciel Modifi\u00e9 et ce,\ndans les conditions qu'il souhaite. Cette garantie et les modalit\u00e9s\nfinanci\u00e8res de son application feront l'objet d'un acte s\u00e9par\u00e9 entre le\nConc\u00e9dant et le Licenci\u00e9.\n\n\n Article 8 - RESPONSABILITE\n\n8.1 Sous r\u00e9serve des dispositions de l'article 8.2, le Licenci\u00e9 a la \nfacult\u00e9, sous r\u00e9serve de prouver la faute du Conc\u00e9dant concern\u00e9, de\nsolliciter la r\u00e9paration du pr\u00e9judice direct qu'il subirait du fait du\nLogiciel et dont il apportera la preuve.\n\n8.2 La responsabilit\u00e9 du Conc\u00e9dant est limit\u00e9e aux engagements pris en\napplication du Contrat et ne saurait \u00eatre engag\u00e9e en raison notamment:\n(i) des dommages dus \u00e0 l'inex\u00e9cution, totale ou partielle, de ses\nobligations par le Licenci\u00e9, (ii) des dommages directs ou indirects\nd\u00e9coulant de l'utilisation ou des performances du Logiciel subis par le\nLicenci\u00e9 et (iii) plus g\u00e9n\u00e9ralement d'un quelconque dommage indirect. En\nparticulier, les Parties conviennent express\u00e9ment que tout pr\u00e9judice\nfinancier ou commercial (par exemple perte de donn\u00e9es, perte de\nb\u00e9n\u00e9fices, perte d'exploitation, perte de client\u00e8le ou de commandes,\nmanque \u00e0 gagner, trouble commercial quelconque) ou toute action dirig\u00e9e\ncontre le Licenci\u00e9 par un tiers, constitue un dommage indirect et\nn'ouvre pas droit \u00e0 r\u00e9paration par le Conc\u00e9dant.\n\n\n Article 9 - GARANTIE\n\n9.1 Le Licenci\u00e9 reconna\u00eet que l'\u00e9tat actuel des connaissances\nscientifiques et techniques au moment de la mise en circulation du\nLogiciel ne permet pas d'en tester et d'en v\u00e9rifier toutes les\nutilisations ni de d\u00e9tecter l'existence d'\u00e9ventuels d\u00e9fauts. L'attention\ndu Licenci\u00e9 a \u00e9t\u00e9 attir\u00e9e sur ce point sur les risques associ\u00e9s au\nchargement, \u00e0 l'utilisation, la modification et/ou au d\u00e9veloppement et \u00e0\nla reproduction du Logiciel qui sont r\u00e9serv\u00e9s \u00e0 des utilisateurs avertis.\n\nIl rel\u00e8ve de la responsabilit\u00e9 du Licenci\u00e9 de contr\u00f4ler, par tous\nmoyens, l'ad\u00e9quation du produit \u00e0 ses besoins, son bon fonctionnement et\nde s'assurer qu'il ne causera pas de dommages aux personnes et aux biens.\n\n9.2 Le Conc\u00e9dant d\u00e9clare de bonne foi \u00eatre en droit de conc\u00e9der\nl'ensemble des droits attach\u00e9s au Logiciel (comprenant notamment les\ndroits vis\u00e9s \u00e0 l'article 5).\n\n9.3 Le Licenci\u00e9 reconna\u00eet que le Logiciel est fourni \"en l'\u00e9tat\" par le\nConc\u00e9dant sans autre garantie, expresse ou tacite, que celle pr\u00e9vue \u00e0\nl'article 9.2 et notamment sans aucune garantie sur sa valeur commerciale,\nson caract\u00e8re s\u00e9curis\u00e9, innovant ou pertinent.\n\nEn particulier, le Conc\u00e9dant ne garantit pas que le Logiciel est exempt\nd'erreur, qu'il fonctionnera sans interruption, qu'il sera compatible\navec l'\u00e9quipement du Licenci\u00e9 et sa configuration logicielle ni qu'il\nremplira les besoins du Licenci\u00e9.\n\n9.4 Le Conc\u00e9dant ne garantit pas, de mani\u00e8re expresse ou tacite, que le\nLogiciel ne porte pas atteinte \u00e0 un quelconque droit de propri\u00e9t\u00e9\nintellectuelle d'un tiers portant sur un brevet, un logiciel ou sur tout\nautre droit de propri\u00e9t\u00e9. Ainsi, le Conc\u00e9dant exclut toute garantie au\nprofit du Licenci\u00e9 contre les actions en contrefa\u00e7on qui pourraient \u00eatre\ndiligent\u00e9es au titre de l'utilisation, de la modification, et de la\nredistribution du Logiciel. N\u00e9anmoins, si de telles actions sont\nexerc\u00e9es contre le Licenci\u00e9, le Conc\u00e9dant lui apportera son aide\ntechnique et juridique pour sa d\u00e9fense. Cette aide technique et\njuridique est d\u00e9termin\u00e9e au cas par cas entre le Conc\u00e9dant concern\u00e9 et\nle Licenci\u00e9 dans le cadre d'un protocole d'accord. Le Conc\u00e9dant d\u00e9gage\ntoute responsabilit\u00e9 quant \u00e0 l'utilisation de la d\u00e9nomination du\nLogiciel par le Licenci\u00e9. Aucune garantie n'est apport\u00e9e quant \u00e0\nl'existence de droits ant\u00e9rieurs sur le nom du Logiciel et sur\nl'existence d'une marque.\n\n\n Article 10 - RESILIATION\n\n10.1 En cas de manquement par le Licenci\u00e9 aux obligations mises \u00e0 sa\ncharge par le Contrat, le Conc\u00e9dant pourra r\u00e9silier de plein droit le\nContrat trente (30) jours apr\u00e8s notification adress\u00e9e au Licenci\u00e9 et\nrest\u00e9e sans effet.\n\n10.2 Le Licenci\u00e9 dont le Contrat est r\u00e9sili\u00e9 n'est plus autoris\u00e9 \u00e0\nutiliser, modifier ou distribuer le Logiciel. Cependant, toutes les\nlicences qu'il aura conc\u00e9d\u00e9es ant\u00e9rieurement \u00e0 la r\u00e9siliation du Contrat\nresteront valides sous r\u00e9serve qu'elles aient \u00e9t\u00e9 effectu\u00e9es en\nconformit\u00e9 avec le Contrat.\n\n\n Article 11 - DISPOSITIONS DIVERSES\n\n\n 11.1 CAUSE EXTERIEURE\n\nAucune des Parties ne sera responsable d'un retard ou d'une d\u00e9faillance\nd'ex\u00e9cution du Contrat qui serait d\u00fb \u00e0 un cas de force majeure, un cas\nfortuit ou une cause ext\u00e9rieure, telle que, notamment, le mauvais\nfonctionnement ou les interruptions du r\u00e9seau \u00e9lectrique ou de\nt\u00e9l\u00e9communication, la paralysie du r\u00e9seau li\u00e9e \u00e0 une attaque\ninformatique, l'intervention des autorit\u00e9s gouvernementales, les\ncatastrophes naturelles, les d\u00e9g\u00e2ts des eaux, les tremblements de terre,\nle feu, les explosions, les gr\u00e8ves et les conflits sociaux, l'\u00e9tat de\nguerre...\n\n11.2 Le fait, par l'une ou l'autre des Parties, d'omettre en une ou\nplusieurs occasions de se pr\u00e9valoir d'une ou plusieurs dispositions du\nContrat, ne pourra en aucun cas impliquer renonciation par la Partie\nint\u00e9ress\u00e9e \u00e0 s'en pr\u00e9valoir ult\u00e9rieurement.\n\n11.3 Le Contrat annule et remplace toute convention ant\u00e9rieure, \u00e9crite\nou orale, entre les Parties sur le m\u00eame objet et constitue l'accord\nentier entre les Parties sur cet objet. Aucune addition ou modification\naux termes du Contrat n'aura d'effet \u00e0 l'\u00e9gard des Parties \u00e0 moins\nd'\u00eatre faite par \u00e9crit et sign\u00e9e par leurs repr\u00e9sentants d\u00fbment habilit\u00e9s.\n\n11.4 Dans l'hypoth\u00e8se o\u00f9 une ou plusieurs des dispositions du Contrat\ns'av\u00e8rerait contraire \u00e0 une loi ou \u00e0 un texte applicable, existants ou\nfuturs, cette loi ou ce texte pr\u00e9vaudrait, et les Parties feraient les\namendements n\u00e9cessaires pour se conformer \u00e0 cette loi ou \u00e0 ce texte.\nToutes les autres dispositions resteront en vigueur. De m\u00eame, la\nnullit\u00e9, pour quelque raison que ce soit, d'une des dispositions du\nContrat ne saurait entra\u00eener la nullit\u00e9 de l'ensemble du Contrat.\n\n\n 11.5 LANGUE\n\nLe Contrat est r\u00e9dig\u00e9 en langue fran\u00e7aise et en langue anglaise, ces\ndeux versions faisant \u00e9galement foi.\n\n\n Article 12 - NOUVELLES VERSIONS DU CONTRAT\n\n12.1 Toute personne est autoris\u00e9e \u00e0 copier et distribuer des copies de\nce Contrat.\n\n12.2 Afin d'en pr\u00e9server la coh\u00e9rence, le texte du Contrat est prot\u00e9g\u00e9\net ne peut \u00eatre modifi\u00e9 que par les auteurs de la licence, lesquels se\nr\u00e9servent le droit de publier p\u00e9riodiquement des mises \u00e0 jour ou de\nnouvelles versions du Contrat, qui poss\u00e9deront chacune un num\u00e9ro\ndistinct. Ces versions ult\u00e9rieures seront susceptibles de prendre en\ncompte de nouvelles probl\u00e9matiques rencontr\u00e9es par les logiciels libres.\n\n12.3 Tout Logiciel diffus\u00e9 sous une version donn\u00e9e du Contrat ne pourra\nfaire l'objet d'une diffusion ult\u00e9rieure que sous la m\u00eame version du\nContrat ou une version post\u00e9rieure.\n\n\n Article 13 - LOI APPLICABLE ET COMPETENCE TERRITORIALE\n\n13.1 Le Contrat est r\u00e9gi par la loi fran\u00e7aise. Les Parties conviennent\nde tenter de r\u00e9gler \u00e0 l'amiable les diff\u00e9rends ou litiges qui\nviendraient \u00e0 se produire par suite ou \u00e0 l'occasion du Contrat.\n\n13.2 A d\u00e9faut d'accord amiable dans un d\u00e9lai de deux (2) mois \u00e0 compter\nde leur survenance et sauf situation relevant d'une proc\u00e9dure d'urgence,\nles diff\u00e9rends ou litiges seront port\u00e9s par la Partie la plus diligente\ndevant les Tribunaux comp\u00e9tents de Paris.\n\n\nVersion 1.0 du 2006-09-05.", + "json": "cecill-c.json", + "yaml": "cecill-c.yml", + "html": "cecill-c.html", + "license": "cecill-c.LICENSE" + }, + { + "license_key": "cecill-c-en", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cecill-c-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CeCILL-C FREE SOFTWARE LICENSE AGREEMENT\n\n\n Notice\n\nThis Agreement is a Free Software license agreement that is the result\nof discussions between its authors in order to ensure compliance with\nthe two main principles guiding its drafting:\n\n * firstly, compliance with the principles governing the distribution\n of Free Software: access to source code, broad rights granted to\n users,\n * secondly, the election of a governing law, French law, with which\n it is conformant, both as regards the law of torts and\n intellectual property law, and the protection that it offers to\n both authors and holders of the economic rights over software.\n\nThe authors of the CeCILL-C (for Ce[a] C[nrs] I[nria] L[ogiciel] L[ibre])\nlicense are:\n\nCommissariat \u00e0 l'Energie Atomique - CEA, a public scientific, technical\nand industrial research establishment, having its principal place of\nbusiness at 25 rue Leblanc, immeuble Le Ponant D, 75015 Paris, France.\n\nCentre National de la Recherche Scientifique - CNRS, a public scientific\nand technological establishment, having its principal place of business\nat 3 rue Michel-Ange, 75794 Paris cedex 16, France.\n\nInstitut National de Recherche en Informatique et en Automatique -\nINRIA, a public scientific and technological establishment, having its\nprincipal place of business at Domaine de Voluceau, Rocquencourt, BP\n105, 78153 Le Chesnay cedex, France.\n\n\n Preamble\n\nThe purpose of this Free Software license agreement is to grant users\nthe right to modify and re-use the software governed by this license.\n\nThe exercising of this right is conditional upon the obligation to make\navailable to the community the modifications made to the source code of\nthe software so as to contribute to its evolution.\n\nIn consideration of access to the source code and the rights to copy,\nmodify and redistribute granted by the license, users are provided only\nwith a limited warranty and the software's author, the holder of the\neconomic rights, and the successive licensors only have limited liability.\n\nIn this respect, the risks associated with loading, using, modifying\nand/or developing or reproducing the software by the user are brought to\nthe user's attention, given its Free Software status, which may make it\ncomplicated to use, with the result that its use is reserved for\ndevelopers and experienced professionals having in-depth computer\nknowledge. Users are therefore encouraged to load and test the\nsuitability of the software as regards their requirements in conditions\nenabling the security of their systems and/or data to be ensured and,\nmore generally, to use and operate it in the same conditions of\nsecurity. This Agreement may be freely reproduced and published,\nprovided it is not altered, and that no provisions are either added or\nremoved herefrom.\n\nThis Agreement may apply to any or all software for which the holder of\nthe economic rights decides to submit the use thereof to its provisions.\n\n\n Article 1 - DEFINITIONS\n\nFor the purpose of this Agreement, when the following expressions\ncommence with a capital letter, they shall have the following meaning:\n\nAgreement: means this license agreement, and its possible subsequent\nversions and annexes.\n\nSoftware: means the software in its Object Code and/or Source Code form\nand, where applicable, its documentation, \"as is\" when the Licensee\naccepts the Agreement.\n\nInitial Software: means the Software in its Source Code and possibly its\nObject Code form and, where applicable, its documentation, \"as is\" when\nit is first distributed under the terms and conditions of the Agreement.\n\nModified Software: means the Software modified by at least one\nIntegrated Contribution.\n\nSource Code: means all the Software's instructions and program lines to\nwhich access is required so as to modify the Software.\n\nObject Code: means the binary files originating from the compilation of\nthe Source Code.\n\nHolder: means the holder(s) of the economic rights over the Initial\nSoftware.\n\nLicensee: means the Software user(s) having accepted the Agreement.\n\nContributor: means a Licensee having made at least one Integrated\nContribution.\n\nLicensor: means the Holder, or any other individual or legal entity, who\ndistributes the Software under the Agreement.\n\nIntegrated Contribution: means any or all modifications, corrections,\ntranslations, adaptations and/or new functions integrated into the\nSource Code by any or all Contributors.\n\nRelated Module: means a set of sources files including their\ndocumentation that, without modification to the Source Code, enables\nsupplementary functions or services in addition to those offered by the\nSoftware.\n\nDerivative Software: means any combination of the Software, modified or\nnot, and of a Related Module.\n\nParties: mean both the Licensee and the Licensor.\n\nThese expressions may be used both in singular and plural form.\n\n\n Article 2 - PURPOSE\n\nThe purpose of the Agreement is the grant by the Licensor to the\nLicensee of a non-exclusive, transferable and worldwide license for the\nSoftware as set forth in Article 5 hereinafter for the whole term of the\nprotection granted by the rights over said Software. \n\n\n Article 3 - ACCEPTANCE\n\n3.1 The Licensee shall be deemed as having accepted the terms and\nconditions of this Agreement upon the occurrence of the first of the\nfollowing events:\n\n * (i) loading the Software by any or all means, notably, by\n downloading from a remote server, or by loading from a physical\n medium;\n * (ii) the first time the Licensee exercises any of the rights\n granted hereunder.\n\n3.2 One copy of the Agreement, containing a notice relating to the\ncharacteristics of the Software, to the limited warranty, and to the\nfact that its use is restricted to experienced users has been provided\nto the Licensee prior to its acceptance as set forth in Article 3.1\nhereinabove, and the Licensee hereby acknowledges that it has read and\nunderstood it.\n\n\n Article 4 - EFFECTIVE DATE AND TERM\n\n\n 4.1 EFFECTIVE DATE\n\nThe Agreement shall become effective on the date when it is accepted by\nthe Licensee as set forth in Article 3.1.\n\n\n 4.2 TERM\n\nThe Agreement shall remain in force for the entire legal term of\nprotection of the economic rights over the Software.\n\n\n Article 5 - SCOPE OF RIGHTS GRANTED\n\nThe Licensor hereby grants to the Licensee, who accepts, the following\nrights over the Software for any or all use, and for the term of the\nAgreement, on the basis of the terms and conditions set forth hereinafter.\n\nBesides, if the Licensor owns or comes to own one or more patents\nprotecting all or part of the functions of the Software or of its\ncomponents, the Licensor undertakes not to enforce the rights granted by\nthese patents against successive Licensees using, exploiting or\nmodifying the Software. If these patents are transferred, the Licensor\nundertakes to have the transferees subscribe to the obligations set\nforth in this paragraph.\n\n\n 5.1 RIGHT OF USE\n\nThe Licensee is authorized to use the Software, without any limitation\nas to its fields of application, with it being hereinafter specified\nthat this comprises:\n\n 1. permanent or temporary reproduction of all or part of the Software\n by any or all means and in any or all form.\n\n 2. loading, displaying, running, or storing the Software on any or\n all medium.\n\n 3. entitlement to observe, study or test its operation so as to\n determine the ideas and principles behind any or all constituent\n elements of said Software. This shall apply when the Licensee\n carries out any or all loading, displaying, running, transmission\n or storage operation as regards the Software, that it is entitled\n to carry out hereunder.\n\n\n 5.2 RIGHT OF MODIFICATION\n\nThe right of modification includes the right to translate, adapt,\narrange, or make any or all modifications to the Software, and the right\nto reproduce the resulting software. It includes, in particular, the\nright to create a Derivative Software.\n\nThe Licensee is authorized to make any or all modification to the\nSoftware provided that it includes an explicit notice that it is the\nauthor of said modification and indicates the date of the creation thereof.\n\n\n 5.3 RIGHT OF DISTRIBUTION\n\nIn particular, the right of distribution includes the right to publish,\ntransmit and communicate the Software to the general public on any or\nall medium, and by any or all means, and the right to market, either in\nconsideration of a fee, or free of charge, one or more copies of the\nSoftware by any means.\n\nThe Licensee is further authorized to distribute copies of the modified\nor unmodified Software to third parties according to the terms and\nconditions set forth hereinafter.\n\n\n 5.3.1 DISTRIBUTION OF SOFTWARE WITHOUT MODIFICATION\n\nThe Licensee is authorized to distribute true copies of the Software in\nSource Code or Object Code form, provided that said distribution\ncomplies with all the provisions of the Agreement and is accompanied by:\n\n 1. a copy of the Agreement,\n\n 2. a notice relating to the limitation of both the Licensor's\n warranty and liability as set forth in Articles 8 and 9,\n\nand that, in the event that only the Object Code of the Software is\nredistributed, the Licensee allows effective access to the full Source\nCode of the Software at a minimum during the entire period of its\ndistribution of the Software, it being understood that the additional\ncost of acquiring the Source Code shall not exceed the cost of\ntransferring the data.\n\n\n 5.3.2 DISTRIBUTION OF MODIFIED SOFTWARE\n\nWhen the Licensee makes an Integrated Contribution to the Software, the\nterms and conditions for the distribution of the resulting Modified\nSoftware become subject to all the provisions of this Agreement.\n\nThe Licensee is authorized to distribute the Modified Software, in\nsource code or object code form, provided that said distribution\ncomplies with all the provisions of the Agreement and is accompanied by:\n\n 1. a copy of the Agreement,\n\n 2. a notice relating to the limitation of both the Licensor's\n warranty and liability as set forth in Articles 8 and 9,\n\nand that, in the event that only the object code of the Modified\nSoftware is redistributed, the Licensee allows effective access to the\nfull source code of the Modified Software at a minimum during the entire\nperiod of its distribution of the Modified Software, it being understood\nthat the additional cost of acquiring the source code shall not exceed\nthe cost of transferring the data.\n\n\n 5.3.3 DISTRIBUTION OF DERIVATIVE SOFTWARE\n\nWhen the Licensee creates Derivative Software, this Derivative Software\nmay be distributed under a license agreement other than this Agreement,\nsubject to compliance with the requirement to include a notice\nconcerning the rights over the Software as defined in Article 6.4.\nIn the event the creation of the Derivative Software required modification \nof the Source Code, the Licensee undertakes that:\n\n 1. the resulting Modified Software will be governed by this Agreement,\n 2. the Integrated Contributions in the resulting Modified Software\n will be clearly identified and documented,\n 3. the Licensee will allow effective access to the source code of the\n Modified Software, at a minimum during the entire period of\n distribution of the Derivative Software, such that such\n modifications may be carried over in a subsequent version of the\n Software; it being understood that the additional cost of\n purchasing the source code of the Modified Software shall not\n exceed the cost of transferring the data.\n\n\n 5.3.4 COMPATIBILITY WITH THE CeCILL LICENSE\n\nWhen a Modified Software contains an Integrated Contribution subject to\nthe CeCILL license agreement, or when a Derivative Software contains a\nRelated Module subject to the CeCILL license agreement, the provisions\nset forth in the third item of Article 6.4 are optional.\n\n\n Article 6 - INTELLECTUAL PROPERTY\n\n\n 6.1 OVER THE INITIAL SOFTWARE\n\nThe Holder owns the economic rights over the Initial Software. Any or\nall use of the Initial Software is subject to compliance with the terms\nand conditions under which the Holder has elected to distribute its work\nand no one shall be entitled to modify the terms and conditions for the\ndistribution of said Initial Software.\n\nThe Holder undertakes that the Initial Software will remain ruled at\nleast by this Agreement, for the duration set forth in Article 4.2.\n\n\n 6.2 OVER THE INTEGRATED CONTRIBUTIONS\n\nThe Licensee who develops an Integrated Contribution is the owner of the\nintellectual property rights over this Contribution as defined by\napplicable law.\n\n\n 6.3 OVER THE RELATED MODULES\n\nThe Licensee who develops a Related Module is the owner of the\nintellectual property rights over this Related Module as defined by\napplicable law and is free to choose the type of agreement that shall\ngovern its distribution under the conditions defined in Article 5.3.3.\n\n\n 6.4 NOTICE OF RIGHTS\n\nThe Licensee expressly undertakes:\n\n 1. not to remove, or modify, in any manner, the intellectual property\n notices attached to the Software;\n\n 2. to reproduce said notices, in an identical manner, in the copies\n of the Software modified or not;\n\n 3. to ensure that use of the Software, its intellectual property\n notices and the fact that it is governed by the Agreement is\n indicated in a text that is easily accessible, specifically from\n the interface of any Derivative Software.\n\nThe Licensee undertakes not to directly or indirectly infringe the\nintellectual property rights of the Holder and/or Contributors on the\nSoftware and to take, where applicable, vis-\u00e0-vis its staff, any and all\nmeasures required to ensure respect of said intellectual property rights\nof the Holder and/or Contributors.\n\n\n Article 7 - RELATED SERVICES\n\n7.1 Under no circumstances shall the Agreement oblige the Licensor to\nprovide technical assistance or maintenance services for the Software.\n\nHowever, the Licensor is entitled to offer this type of services. The\nterms and conditions of such technical assistance, and/or such\nmaintenance, shall be set forth in a separate instrument. Only the\nLicensor offering said maintenance and/or technical assistance services\nshall incur liability therefor.\n\n7.2 Similarly, any Licensor is entitled to offer to its licensees, under\nits sole responsibility, a warranty, that shall only be binding upon\nitself, for the redistribution of the Software and/or the Modified\nSoftware, under terms and conditions that it is free to decide. Said\nwarranty, and the financial terms and conditions of its application,\nshall be subject of a separate instrument executed between the Licensor\nand the Licensee.\n\n\n Article 8 - LIABILITY\n\n8.1 Subject to the provisions of Article 8.2, the Licensee shall be\nentitled to claim compensation for any direct loss it may have suffered\nfrom the Software as a result of a fault on the part of the relevant\nLicensor, subject to providing evidence thereof.\n\n8.2 The Licensor's liability is limited to the commitments made under\nthis Agreement and shall not be incurred as a result of in particular:\n(i) loss due the Licensee's total or partial failure to fulfill its\nobligations, (ii) direct or consequential loss that is suffered by the\nLicensee due to the use or performance of the Software, and (iii) more\ngenerally, any consequential loss. In particular the Parties expressly\nagree that any or all pecuniary or business loss (i.e. loss of data,\nloss of profits, operating loss, loss of customers or orders,\nopportunity cost, any disturbance to business activities) or any or all\nlegal proceedings instituted against the Licensee by a third party,\nshall constitute consequential loss and shall not provide entitlement to\nany or all compensation from the Licensor.\n\n\n Article 9 - WARRANTY\n\n9.1 The Licensee acknowledges that the scientific and technical\nstate-of-the-art when the Software was distributed did not enable all\npossible uses to be tested and verified, nor for the presence of\npossible defects to be detected. In this respect, the Licensee's\nattention has been drawn to the risks associated with loading, using,\nmodifying and/or developing and reproducing the Software which are\nreserved for experienced users.\n\nThe Licensee shall be responsible for verifying, by any or all means,\nthe suitability of the product for its requirements, its good working\norder, and for ensuring that it shall not cause damage to either persons\nor properties.\n\n9.2 The Licensor hereby represents, in good faith, that it is entitled\nto grant all the rights over the Software (including in particular the\nrights set forth in Article 5).\n\n9.3 The Licensee acknowledges that the Software is supplied \"as is\" by\nthe Licensor without any other express or tacit warranty, other than\nthat provided for in Article 9.2 and, in particular, without any warranty\nas to its commercial value, its secured, safe, innovative or relevant\nnature.\n\nSpecifically, the Licensor does not warrant that the Software is free\nfrom any error, that it will operate without interruption, that it will\nbe compatible with the Licensee's own equipment and software\nconfiguration, nor that it will meet the Licensee's requirements.\n\n9.4 The Licensor does not either expressly or tacitly warrant that the\nSoftware does not infringe any third party intellectual property right\nrelating to a patent, software or any other property right. Therefore,\nthe Licensor disclaims any and all liability towards the Licensee\narising out of any or all proceedings for infringement that may be\ninstituted in respect of the use, modification and redistribution of the\nSoftware. Nevertheless, should such proceedings be instituted against\nthe Licensee, the Licensor shall provide it with technical and legal\nassistance for its defense. Such technical and legal assistance shall be\ndecided on a case-by-case basis between the relevant Licensor and the\nLicensee pursuant to a memorandum of understanding. The Licensor\ndisclaims any and all liability as regards the Licensee's use of the\nname of the Software. No warranty is given as regards the existence of\nprior rights over the name of the Software or as regards the existence\nof a trademark.\n\n\n Article 10 - TERMINATION\n\n10.1 In the event of a breach by the Licensee of its obligations\nhereunder, the Licensor may automatically terminate this Agreement\nthirty (30) days after notice has been sent to the Licensee and has\nremained ineffective.\n\n10.2 A Licensee whose Agreement is terminated shall no longer be\nauthorized to use, modify or distribute the Software. However, any\nlicenses that it may have granted prior to termination of the Agreement\nshall remain valid subject to their having been granted in compliance\nwith the terms and conditions hereof.\n\n\n Article 11 - MISCELLANEOUS\n\n\n 11.1 EXCUSABLE EVENTS\n\nNeither Party shall be liable for any or all delay, or failure to\nperform the Agreement, that may be attributable to an event of force\nmajeure, an act of God or an outside cause, such as defective\nfunctioning or interruptions of the electricity or telecommunications\nnetworks, network paralysis following a virus attack, intervention by\ngovernment authorities, natural disasters, water damage, earthquakes,\nfire, explosions, strikes and labor unrest, war, etc.\n\n11.2 Any failure by either Party, on one or more occasions, to invoke\none or more of the provisions hereof, shall under no circumstances be\ninterpreted as being a waiver by the interested Party of its right to\ninvoke said provision(s) subsequently.\n\n11.3 The Agreement cancels and replaces any or all previous agreements,\nwhether written or oral, between the Parties and having the same\npurpose, and constitutes the entirety of the agreement between said\nParties concerning said purpose. No supplement or modification to the\nterms and conditions hereof shall be effective as between the Parties\nunless it is made in writing and signed by their duly authorized\nrepresentatives.\n\n11.4 In the event that one or more of the provisions hereof were to\nconflict with a current or future applicable act or legislative text,\nsaid act or legislative text shall prevail, and the Parties shall make\nthe necessary amendments so as to comply with said act or legislative\ntext. All other provisions shall remain effective. Similarly, invalidity\nof a provision of the Agreement, for any reason whatsoever, shall not\ncause the Agreement as a whole to be invalid.\n\n\n 11.5 LANGUAGE\n\nThe Agreement is drafted in both French and English and both versions\nare deemed authentic.\n\n\n Article 12 - NEW VERSIONS OF THE AGREEMENT\n\n12.1 Any person is authorized to duplicate and distribute copies of this\nAgreement.\n\n12.2 So as to ensure coherence, the wording of this Agreement is\nprotected and may only be modified by the authors of the License, who\nreserve the right to periodically publish updates or new versions of the\nAgreement, each with a separate number. These subsequent versions may\naddress new issues encountered by Free Software.\n\n12.3 Any Software distributed under a given version of the Agreement may\nonly be subsequently distributed under the same version of the Agreement\nor a subsequent version.\n\n\n Article 13 - GOVERNING LAW AND JURISDICTION\n\n13.1 The Agreement is governed by French law. The Parties agree to\nendeavor to seek an amicable solution to any disagreements or disputes\nthat may arise during the performance of the Agreement.\n\n13.2 Failing an amicable solution within two (2) months as from their\noccurrence, and unless emergency proceedings are necessary, the\ndisagreements or disputes shall be referred to the Paris Courts having\njurisdiction, by the more diligent Party.\n\n\nVersion 1.0 dated 2006-09-05.", + "json": "cecill-c-en.json", + "yaml": "cecill-c-en.yml", + "html": "cecill-c-en.html", + "license": "cecill-c-en.LICENSE" + }, + { + "license_key": "cern-attribution-1995", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cern-attribution-1995", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This product includes computer software created and made available by CERN. This acknowledgment shall be mentioned in full in any product which includes the CERN computer software included herein or parts thereof.", + "json": "cern-attribution-1995.json", + "yaml": "cern-attribution-1995.yml", + "html": "cern-attribution-1995.html", + "license": "cern-attribution-1995.LICENSE" + }, + { + "license_key": "cern-ohl-1.1", + "category": "Permissive", + "spdx_license_key": "CERN-OHL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CERN OHL v1.1\n\n2011-07-08 - CERN, Geneva, Switzerland\n\nCERN Open Hardware Licence v1.1\n\nPreamble\n\nThrough this CERN Open Hardware Licence (\"CERN OHL\") version 1.1, the Organization wishes to disseminate its hardware designs (as published on http://www.ohwr.org/) as widely as possible, and generally to foster collaboration among public research hardware designers. The CERN OHL is copyright of CERN. Anyone is welcome to use the CERN OHL, in unmodified form only, for the distribution of his own Open Hardware designs. Any other right is reserved.\n\n1. Definitions\n\nIn this Licence, the following terms have the following meanings:\n\n\"Licence\" means this CERN OHL.\n\n\"Documentation\" means schematic diagrams, designs, circuit or circuit board layouts, mechanical drawings, flow charts and descriptive text, and other explanatory material that is explicitly stated as being made available under the conditions of this Licence. The Documentation may be in any medium, including but not limited to computer files and representations on paper, film, or any other media.\n\n\"Product\" means either an entire, or any part of a, device built using the Documentation or the modified Documentation.\n\n\"Licensee\" means any natural or legal person exercising rights under this Licence.\n\n\"Licensor\" means any natural or legal person that creates or modifies Documentation and subsequently communicates to the public and/ or distributes the resulting Documentation under the terms and conditions of this Licence.\n\nA Licensee may at the same time be a Licensor, and vice versa.\n\n\n\n2. Applicability\n\n 2.1 This Licence governs the use, copying, modification, communication to the public and distribution of the Documentation, and the manufacture and distribution of Products. By exercising any right granted under this Licence, the Licensee irrevocably accepts these terms and conditions.\n\n 2.2 This Licence is granted by the Licensor directly to the Licensee, and shall apply worldwide and without limitation in time. The Licensee may assign his licence rights or grant sub-licences.\n\n 2.3 This Licence does not apply to software, firmware, or code loaded into programmable devices which may be used in conjunction with the Documentation, the modified Documentation or with Products. The use of such software, firmware, or code is subject to the applicable licence terms and conditions.\n\n3. Copying, modification, communication to the public and distribution of the Documentation\n\n 3.1 The Licensee shall keep intact all copyright and trademarks notices and all notices that refer to this Licence and to the disclaimer of warranties that is included in the Documentation. He shall include a copy thereof in every copy of the documentation or, as the case may be, modified Documentation, that he communicates to the public or distributes.\n\n 3.2 The Licensee may use, copy, communicate to the public and distribute verbatim copies of the Documentation, in any medium, subject to the requirements specified in section 3.1.\n\n 3.3 The Licensee may modify the Documentation or any portion thereof. The Licensee may communicate to the public and distribute the modified Documentation (thereby in addition to being a Licensee also becoming a Licensor), always provided that he shall:\n\n a. comply with section 3.1;\n\n b. cause the modified Documentation to carry prominent notices stating that the Licensee has modified the Documentation, with the date and details of the modifications;\n\n c. license the modified Documentation under the terms and conditions of this Licence or, where applicable, a later version of this Licence as may be issued by CERN; and\n\n d. send a copy of the modified Documentation to all Licensors that contributed to the parts of the Documentation that were modified, as well as to any other Licensor who has requested to receive a copy of the modified Documentation and has provided a means of contact with the Documentation.\n\n 3.4 The Licence includes a licence to those patents or registered designs that are held by the Licensor, to the extent necessary to make use of the rights granted under this Licence. The scope of this section 3.4 shall be strictly limited to the parts of the Documentation or modified Documentation created by the Licensor.\n\n4. Manufacture and distribution of Products\n\n 4.1 The Licensee may manufacture or distribute Products always provided that the Licensee distributes to each recipient of such Products a copy of the Documentation or modified Documentation, as applicable, and complies with section 3.\n\n 4.2 The Licensee is invited to inform in writing any Licensor who has indicated its wish to receive this information about the type, quantity and dates of production of Products the Licensee has (had) manufactured.\n\n5. Warranty and liability\n\n 5.1 DISCLAIMER \u2013 The Documentation and any modified Documentation are provided \"as is\" and any express or implied warranties, including, but not limited to, implied warranties of merchantability, of satisfactory quality, and fitness for a particular purpose or use are disclaimed in respect of the Documentation, the modified Documentation or any Product. The Licensor makes no representation that the Documentation, modified Documentation, or any Product, does or will not infringe any patent, copyright, trade secret or other proprietary right. The entire risk as to the use, quality, and performance of a Product shall be with the Licensee and not the Licensor. This disclaimer of warranty is an essential part of this Licence and a condition for the grant of any rights granted under this Licence. The Licensee warrants that it does not act in a consumer capacity.\n\n 5.2 LIMITATION OF LIABILITY \u2013 The Licensor shall have no liability for direct, indirect, special, incidental, consequential, exemplary, punitive or other damages of any character including, without limitation, procurement of substitute goods or services, loss of use, data or profits, or business interruption, however caused and on any theory of contract, warranty, tort (including negligence), product liability or otherwise, arising in any way in relation to the Documentation, modified Documentation and/or the use, manufacture or distribution of a Product, even if advised of the possibility of such damages, and the Licensee shall hold the Licensor(s) free and harmless from any liability, costs, damages, fees and expenses, including claims by third parties, in relation to such use.\n\n6. General\n\n 6.1 The rights granted under this Licence do not imply or represent any transfer or assignment of intellectual property rights to the Licensee.\n\n 6.2 The Licensee shall not use or make reference to any of the names, acronyms, images or logos under which the Licensor is known, save in so far as required to comply with section 3. Any such permitted use or reference shall be factual and shall in no event suggest any kind of endorsement by the Licensor or its personnel of the modified Documentation or any Product, or any kind of implication by the Licensor or its personnel in the preparation of the modified Documentation or Product.\n\n 6.3 CERN may publish updated versions of this Licence which retain the same general provisions as this version, but differ in detail so far this is required and reasonable. New versions will be published with a unique version number.\n\n 6.4 This Licence shall terminate with immediate effect, upon written notice and without involvement of a court if the Licensee fails to comply with any of its terms and conditions, or if the Licensee initiates legal action against Licensor in relation to this Licence. Section 5 shall continue to apply.\n\n 6.5 Except as may be otherwise agreed with the Intergovernmental Organization, any dispute with respect to this Licence involving an Intergovernmental Organization shall, by virtue of the latter's Intergovernmental status, be settled by international arbitration. The arbitration proceedings shall be held at the place where the Intergovernmental Organization has its seat. The arbitral award shall be final and binding upon the parties, who hereby expressly agree to renounce any form of appeal or revision.", + "json": "cern-ohl-1.1.json", + "yaml": "cern-ohl-1.1.yml", + "html": "cern-ohl-1.1.html", + "license": "cern-ohl-1.1.LICENSE" + }, + { + "license_key": "cern-ohl-1.2", + "category": "Permissive", + "spdx_license_key": "CERN-OHL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CERN OHL v1.2\n\n2013-09-06 - CERN, Geneva, Switzerland\n\nCERN Open Hardware Licence v1.2\n\nPreamble\n\nThrough this CERN Open Hardware Licence (\"CERN OHL\") version 1.2, CERN wishes to provide a tool to foster collaboration and sharing among hardware designers. The CERN OHL is copyright CERN. Anyone is welcome to use the CERN OHL, in unmodified form only, for the distribution of their own Open Hardware designs. Any other right is reserved. Release of hardware designs under the CERN OHL does not constitute an endorsement of the licensor or its designs nor does it imply any involvement by CERN in the development of such designs.\n\n1. Definitions\n\nIn this Licence, the following terms have the following meanings:\n\n\"Licence\" means this CERN OHL.\n\n\"Documentation\" means schematic diagrams, designs, circuit or circuit board layouts, mechanical drawings, flow charts and descriptive text, and other explanatory material that is explicitly stated as being made available under the conditions of this Licence. The Documentation may be in any medium, including but not limited to computer files and representations on paper, film, or any other media.\n\n\"Documentation Location\" means a location where the Licensor has placed Documentation, and which he believes will be publicly accessible for at least three years from the first communication to the public or distribution of Documentation.\n\n\"Product\" means either an entire, or any part of a, device built using the Documentation or the modified Documentation.\n\n\"Licensee\" means any natural or legal person exercising rights under this Licence.\n\n\"Licensor\" means any natural or legal person that creates or modifies Documentation and subsequently communicates to the public and/ or distributes the resulting Documentation under the terms and conditions of this Licence.\n\nA Licensee may at the same time be a Licensor, and vice versa.\n\nUse of the masculine gender includes the feminine and neuter genders and is employed solely to facilitate reading.\n\n\n\n2. Applicability\n\n 2.1. This Licence governs the use, copying, modification, communication to the public and distribution of the Documentation, and the manufacture and distribution of Products. By exercising any right granted under this Licence, the Licensee irrevocably accepts these terms and conditions.\n\n 2.2. This Licence is granted by the Licensor directly to the Licensee, and shall apply worldwide and without limitation in time. The Licensee may assign his licence rights or grant sub-licences.\n\n 2.3. This Licence does not extend to software, firmware, or code loaded into programmable devices which may be used in conjunction with the Documentation, the modified Documentation or with Products, unless such software, firmware, or code is explicitly expressed to be subject to this Licence. The use of such software, firmware, or code is otherwise subject to the applicable licence terms and conditions.\n\n3. Copying, modification, communication to the public and distribution of the Documentation\n\n 3.1. The Licensee shall keep intact all copyright and trademarks notices, all notices referring to Documentation Location, and all notices that refer to this Licence and to the disclaimer of warranties that are included in the Documentation. He shall include a copy thereof in every copy of the Documentation or, as the case may be, modified Documentation, that he communicates to the public or distributes.\n\n 3.2. The Licensee may copy, communicate to the public and distribute verbatim copies of the Documentation, in any medium, subject to the requirements specified in section 3.1.\n\n 3.3. The Licensee may modify the Documentation or any portion thereof provided that upon modification of the Documentation, the Licensee shall make the modified Documentation available from a Documentation Location such that it can be easily located by an original Licensor once the Licensee communicates to the public or distributes the modified Documentation under section 3.4, and, where required by section 4.1, by a recipient of a Product. However, the Licensor shall not assert his rights under the foregoing proviso unless or until a Product is distributed.\n\n 3.4. The Licensee may communicate to the public and distribute the modified Documentation (thereby in addition to being a Licensee also becoming a Licensor), always provided that he shall:\n\n a) comply with section 3.1;\n\n b) cause the modified Documentation to carry prominent notices stating that the Licensee has modified the Documentation, with the date and description of the modifications;\n\n c) cause the modified Documentation to carry a new Documentation Location notice if the original Documentation provided for one;\n\n d) make available the modified Documentation at the same level of abstraction as that of the Documentation, in the preferred format for making modifications to it (e.g. the native format of the CAD tool as applicable), and in the event that format is proprietary, in a format viewable with a tool licensed under an OSI-approved license if the proprietary tool can create it; and\n\n e) license the modified Documentation under the terms and conditions of this Licence or, where applicable, a later version of this Licence as may be issued by CERN.\n\n 3.5. The Licence includes a non-exclusive licence to those patents or registered designs that are held by, under the control of, or sub-licensable by the Licensor, to the extent necessary to make use of the rights granted under this Licence. The scope of this section 3.5 shall be strictly limited to the parts of the Documentation or modified Documentation created by the Licensor.\n\n4. Manufacture and distribution of Products\n\n 4.1. The Licensee may manufacture or distribute Products always provided that, where such manufacture or distribution requires a licence under this Licence the Licensee provides to each recipient of such Products an easy means of accessing a copy of the Documentation or modified Documentation, as applicable, as set out in section 3.\n\n 4.2. The Licensee is invited to inform any Licensor who has indicated his wish to receive this information about the type, quantity and dates of production of Products the Licensee has (had) manufactured\n\n5. Warranty and liability\n\n 5.1. DISCLAIMER \u2013 The Documentation and any modified Documentation are provided \"as is\" and any express or implied warranties, including, but not limited to, implied warranties of merchantability, of satisfactory quality, non-infringement of third party rights, and fitness for a particular purpose or use are disclaimed in respect of the Documentation, the modified Documentation or any Product. The Licensor makes no representation that the Documentation, modified Documentation, or any Product, does or will not infringe any patent, copyright, trade secret or other proprietary right. The entire risk as to the use, quality, and performance of a Product shall be with the Licensee and not the Licensor. This disclaimer of warranty is an essential part of this Licence and a condition for the grant of any rights granted under this Licence. The Licensee warrants that it does not act in a consumer capacity.\n\n 5.2. LIMITATION OF LIABILITY \u2013 The Licensor shall have no liability for direct, indirect, special, incidental, consequential, exemplary, punitive or other damages of any character including, without limitation, procurement of substitute goods or services, loss of use, data or profits, or business interruption, however caused and on any theory of contract, warranty, tort (including negligence), product liability or otherwise, arising in any way in relation to the Documentation, modified Documentation and/or the use, manufacture or distribution of a Product, even if advised of the possibility of such damages, and the Licensee shall hold the Licensor(s) free and harmless from any liability, costs, damages, fees and expenses, including claims by third parties, in relation to such use.\n\n6. General\n\n 6.1. Except for the rights explicitly granted hereunder, this Licence does not imply or represent any transfer or assignment of intellectual property rights to the Licensee.\n\n 6.2. The Licensee shall not use or make reference to any of the names (including acronyms and abbreviations), images, or logos under which the Licensor is known, save in so far as required to comply with section 3. Any such permitted use or reference shall be factual and shall in no event suggest any kind of endorsement by the Licensor or its personnel of the modified Documentation or any Product, or any kind of implication by the Licensor or its personnel in the preparation of the modified Documentation or Product.\n\n 6.3. CERN may publish updated versions of this Licence which retain the same general provisions as this version, but differ in detail so far this is required and reasonable. New versions will be published with a unique version number.\n\n 6.4. This Licence shall terminate with immediate effect, upon written notice and without involvement of a court if the Licensee fails to comply with any of its terms and conditions, or if the Licensee initiates legal action against Licensor in relation to this Licence. Section 5 shall continue to apply.", + "json": "cern-ohl-1.2.json", + "yaml": "cern-ohl-1.2.yml", + "html": "cern-ohl-1.2.html", + "license": "cern-ohl-1.2.LICENSE" + }, + { + "license_key": "cern-ohl-p-2.0", + "category": "Permissive", + "spdx_license_key": "CERN-OHL-P-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CERN Open Hardware Licence Version 2 - Permissive\n\n\nPreamble\n\nCERN has developed this licence to promote collaboration among\nhardware designers and to provide a legal tool which supports the\nfreedom to use, study, modify, share and distribute hardware designs\nand products based on those designs. Version 2 of the CERN Open\nHardware Licence comes in three variants: this licence, CERN-OHL-P\n(permissive); and two reciprocal licences: CERN- OHL-W (weakly\nreciprocal) and CERN-OHL-S (strongly reciprocal).\n\nThe CERN-OHL-P is copyright CERN 2020. Anyone is welcome to use it, in\nunmodified form only.\n\nUse of this Licence does not imply any endorsement by CERN of any\nLicensor or their designs nor does it imply any involvement by CERN in\ntheir development.\n\n\n1 Definitions\n\n 1.1 'Licence' means this CERN-OHL-P.\n\n 1.2 'Source' means information such as design materials or digital\n code which can be applied to Make or test a Product or to\n prepare a Product for use, Conveyance or sale, regardless of its\n medium or how it is expressed. It may include Notices.\n\n 1.3 'Covered Source' means Source that is explicitly made available\n under this Licence.\n\n 1.4 'Product' means any device, component, work or physical object,\n whether in finished or intermediate form, arising from the use,\n application or processing of Covered Source.\n\n 1.5 'Make' means to create or configure something, whether by\n manufacture, assembly, compiling, loading or applying Covered\n Source or another Product or otherwise.\n\n 1.6 'Notice' means copyright, acknowledgement and trademark notices,\n references to the location of any Notices, modification notices\n (subsection 3.3(b)) and all notices that refer to this Licence\n and to the disclaimer of warranties that are included in the\n Covered Source.\n\n 1.7 'Licensee' or 'You' means any person exercising rights under\n this Licence.\n\n 1.8 'Licensor' means a person who creates Source or modifies Covered\n Source and subsequently Conveys the resulting Covered Source\n under the terms and conditions of this Licence. A person may be\n a Licensee and a Licensor at the same time.\n\n 1.9 'Convey' means to communicate to the public or distribute.\n\n\n2 Applicability\n\n 2.1 This Licence governs the use, copying, modification, Conveying\n of Covered Source and Products, and the Making of Products. By\n exercising any right granted under this Licence, You irrevocably\n accept these terms and conditions.\n\n 2.2 This Licence is granted by the Licensor directly to You, and\n shall apply worldwide and without limitation in time.\n\n 2.3 You shall not attempt to restrict by contract or otherwise the\n rights granted under this Licence to other Licensees.\n\n 2.4 This Licence is not intended to restrict fair use, fair dealing,\n or any other similar right.\n\n\n3 Copying, modifying and Conveying Covered Source\n\n 3.1 You may copy and Convey verbatim copies of Covered Source, in\n any medium, provided You retain all Notices.\n\n 3.2 You may modify Covered Source, other than Notices.\n\n You may only delete Notices if they are no longer applicable to\n the corresponding Covered Source as modified by You and You may\n add additional Notices applicable to Your modifications.\n\n 3.3 You may Convey modified Covered Source (with the effect that You\n shall also become a Licensor) provided that You:\n\n a) retain Notices as required in subsection 3.2; and\n\n b) add a Notice to the modified Covered Source stating that You\n have modified it, with the date and brief description of how\n You have modified it.\n\n 3.4 You may Convey Covered Source or modified Covered Source under\n licence terms which differ from the terms of this Licence\n provided that:\n\n a) You comply at all times with subsection 3.3; and\n\n b) You provide a copy of this Licence to anyone to whom You\n Convey Covered Source or modified Covered Source.\n\n\n4 Making and Conveying Products\n\nYou may Make Products, and/or Convey them, provided that You ensure\nthat the recipient of the Product has access to any Notices applicable\nto the Product.\n\n\n5 DISCLAIMER AND LIABILITY\n\n 5.1 DISCLAIMER OF WARRANTY -- The Covered Source and any Products\n are provided 'as is' and any express or implied warranties,\n including, but not limited to, implied warranties of\n merchantability, of satisfactory quality, non-infringement of\n third party rights, and fitness for a particular purpose or use\n are disclaimed in respect of any Source or Product to the\n maximum extent permitted by law. The Licensor makes no\n representation that any Source or Product does not or will not\n infringe any patent, copyright, trade secret or other\n proprietary right. The entire risk as to the use, quality, and\n performance of any Source or Product shall be with You and not\n the Licensor. This disclaimer of warranty is an essential part\n of this Licence and a condition for the grant of any rights\n granted under this Licence.\n\n 5.2 EXCLUSION AND LIMITATION OF LIABILITY -- The Licensor shall, to\n the maximum extent permitted by law, have no liability for\n direct, indirect, special, incidental, consequential, exemplary,\n punitive or other damages of any character including, without\n limitation, procurement of substitute goods or services, loss of\n use, data or profits, or business interruption, however caused\n and on any theory of contract, warranty, tort (including\n negligence), product liability or otherwise, arising in any way\n in relation to the Covered Source, modified Covered Source\n and/or the Making or Conveyance of a Product, even if advised of\n the possibility of such damages, and You shall hold the\n Licensor(s) free and harmless from any liability, costs,\n damages, fees and expenses, including claims by third parties,\n in relation to such use.\n\n\n6 Patents\n\n 6.1 Subject to the terms and conditions of this Licence, each\n Licensor hereby grants to You a perpetual, worldwide,\n non-exclusive, no-charge, royalty-free, irrevocable (except as\n stated in this section 6, or where terminated by the Licensor\n for cause) patent license to Make, have Made, use, offer to\n sell, sell, import, and otherwise transfer the Covered Source\n and Products, where such licence applies only to those patent\n claims licensable by such Licensor that are necessarily\n infringed by exercising rights under the Covered Source as\n Conveyed by that Licensor.\n\n 6.2 If You institute patent litigation against any entity (including\n a cross-claim or counterclaim in a lawsuit) alleging that the\n Covered Source or a Product constitutes direct or contributory\n patent infringement, or You seek any declaration that a patent\n licensed to You under this Licence is invalid or unenforceable\n then any rights granted to You under this Licence shall\n terminate as of the date such process is initiated.\n\n\n7 General\n\n 7.1 If any provisions of this Licence are or subsequently become\n invalid or unenforceable for any reason, the remaining\n provisions shall remain effective.\n\n 7.2 You shall not use any of the name (including acronyms and\n abbreviations), image, or logo by which the Licensor or CERN is\n known, except where needed to comply with section 3, or where\n the use is otherwise allowed by law. Any such permitted use\n shall be factual and shall not be made so as to suggest any kind\n of endorsement or implication of involvement by the Licensor or\n its personnel.\n\n 7.3 CERN may publish updated versions and variants of this Licence\n which it considers to be in the spirit of this version, but may\n differ in detail to address new problems or concerns. New\n versions will be published with a unique version number and a\n variant identifier specifying the variant. If the Licensor has\n specified that a given variant applies to the Covered Source\n without specifying a version, You may treat that Covered Source\n as being released under any version of the CERN-OHL with that\n variant. If no variant is specified, the Covered Source shall be\n treated as being released under CERN-OHL-S. The Licensor may\n also specify that the Covered Source is subject to a specific\n version of the CERN-OHL or any later version in which case You\n may apply this or any later version of CERN-OHL with the same\n variant identifier published by CERN.\n\n 7.4 This Licence shall not be enforceable except by a Licensor\n acting as such, and third party beneficiary rights are\n specifically excluded.", + "json": "cern-ohl-p-2.0.json", + "yaml": "cern-ohl-p-2.0.yml", + "html": "cern-ohl-p-2.0.html", + "license": "cern-ohl-p-2.0.LICENSE" + }, + { + "license_key": "cern-ohl-s-2.0", + "category": "Copyleft", + "spdx_license_key": "CERN-OHL-S-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CERN Open Hardware Licence Version 2 - Strongly Reciprocal\n\n\nPreamble\n\nCERN has developed this licence to promote collaboration among\nhardware designers and to provide a legal tool which supports the\nfreedom to use, study, modify, share and distribute hardware designs\nand products based on those designs. Version 2 of the CERN Open\nHardware Licence comes in three variants: CERN-OHL-P (permissive); and\ntwo reciprocal licences: CERN-OHL-W (weakly reciprocal) and this\nlicence, CERN-OHL-S (strongly reciprocal).\n\nThe CERN-OHL-S is copyright CERN 2020. Anyone is welcome to use it, in\nunmodified form only.\n\nUse of this Licence does not imply any endorsement by CERN of any\nLicensor or their designs nor does it imply any involvement by CERN in\ntheir development.\n\n\n1 Definitions\n\n 1.1 'Licence' means this CERN-OHL-S.\n\n 1.2 'Compatible Licence' means\n\n a) any earlier version of the CERN Open Hardware licence, or\n\n b) any version of the CERN-OHL-S, or\n\n c) any licence which permits You to treat the Source to which\n it applies as licensed under CERN-OHL-S provided that on\n Conveyance of any such Source, or any associated Product You\n treat the Source in question as being licensed under\n CERN-OHL-S.\n\n 1.3 'Source' means information such as design materials or digital\n code which can be applied to Make or test a Product or to\n prepare a Product for use, Conveyance or sale, regardless of its\n medium or how it is expressed. It may include Notices.\n\n 1.4 'Covered Source' means Source that is explicitly made available\n under this Licence.\n\n 1.5 'Product' means any device, component, work or physical object,\n whether in finished or intermediate form, arising from the use,\n application or processing of Covered Source.\n\n 1.6 'Make' means to create or configure something, whether by\n manufacture, assembly, compiling, loading or applying Covered\n Source or another Product or otherwise.\n\n 1.7 'Available Component' means any part, sub-assembly, library or\n code which:\n\n a) is licensed to You as Complete Source under a Compatible\n Licence; or\n\n b) is available, at the time a Product or the Source containing\n it is first Conveyed, to You and any other prospective\n licensees\n\n i) as a physical part with sufficient rights and\n information (including any configuration and\n programming files and information about its\n characteristics and interfaces) to enable it either to\n be Made itself, or to be sourced and used to Make the\n Product; or\n ii) as part of the normal distribution of a tool used to\n design or Make the Product.\n\n 1.8 'Complete Source' means the set of all Source necessary to Make\n a Product, in the preferred form for making modifications,\n including necessary installation and interfacing information\n both for the Product, and for any included Available Components.\n If the format is proprietary, it must also be made available in\n a format (if the proprietary tool can create it) which is\n viewable with a tool available to potential licensees and\n licensed under a licence approved by the Free Software\n Foundation or the Open Source Initiative. Complete Source need\n not include the Source of any Available Component, provided that\n You include in the Complete Source sufficient information to\n enable a recipient to Make or source and use the Available\n Component to Make the Product.\n\n 1.9 'Source Location' means a location where a Licensor has placed\n Covered Source, and which that Licensor reasonably believes will\n remain easily accessible for at least three years for anyone to\n obtain a digital copy.\n\n 1.10 'Notice' means copyright, acknowledgement and trademark notices,\n Source Location references, modification notices (subsection\n 3.3(b)) and all notices that refer to this Licence and to the\n disclaimer of warranties that are included in the Covered\n Source.\n\n 1.11 'Licensee' or 'You' means any person exercising rights under\n this Licence.\n\n 1.12 'Licensor' means a natural or legal person who creates or\n modifies Covered Source. A person may be a Licensee and a\n Licensor at the same time.\n\n 1.13 'Convey' means to communicate to the public or distribute.\n\n\n2 Applicability\n\n 2.1 This Licence governs the use, copying, modification, Conveying\n of Covered Source and Products, and the Making of Products. By\n exercising any right granted under this Licence, You irrevocably\n accept these terms and conditions.\n\n 2.2 This Licence is granted by the Licensor directly to You, and\n shall apply worldwide and without limitation in time.\n\n 2.3 You shall not attempt to restrict by contract or otherwise the\n rights granted under this Licence to other Licensees.\n\n 2.4 This Licence is not intended to restrict fair use, fair dealing,\n or any other similar right.\n\n\n3 Copying, modifying and Conveying Covered Source\n\n 3.1 You may copy and Convey verbatim copies of Covered Source, in\n any medium, provided You retain all Notices.\n\n 3.2 You may modify Covered Source, other than Notices, provided that\n You irrevocably undertake to make that modified Covered Source\n available from a Source Location should You Convey a Product in\n circumstances where the recipient does not otherwise receive a\n copy of the modified Covered Source. In each case subsection 3.3\n shall apply.\n\n You may only delete Notices if they are no longer applicable to\n the corresponding Covered Source as modified by You and You may\n add additional Notices applicable to Your modifications.\n Including Covered Source in a larger work is modifying the\n Covered Source, and the larger work becomes modified Covered\n Source.\n\n 3.3 You may Convey modified Covered Source (with the effect that You\n shall also become a Licensor) provided that You:\n\n a) retain Notices as required in subsection 3.2;\n\n b) add a Notice to the modified Covered Source stating that You\n have modified it, with the date and brief description of how\n You have modified it;\n\n c) add a Source Location Notice for the modified Covered Source\n if You Convey in circumstances where the recipient does not\n otherwise receive a copy of the modified Covered Source; and\n\n d) license the modified Covered Source under the terms and\n conditions of this Licence (or, as set out in subsection\n 8.3, a later version, if permitted by the licence of the\n original Covered Source). Such modified Covered Source must\n be licensed as a whole, but excluding Available Components\n contained in it, which remain licensed under their own\n applicable licences.\n\n\n4 Making and Conveying Products\n\nYou may Make Products, and/or Convey them, provided that You either\nprovide each recipient with a copy of the Complete Source or ensure\nthat each recipient is notified of the Source Location of the Complete\nSource. That Complete Source is Covered Source, and You must\naccordingly satisfy Your obligations set out in subsection 3.3. If\nspecified in a Notice, the Product must visibly and securely display\nthe Source Location on it or its packaging or documentation in the\nmanner specified in that Notice.\n\n\n5 Research and Development\n\nYou may Convey Covered Source, modified Covered Source or Products to\na legal entity carrying out development, testing or quality assurance\nwork on Your behalf provided that the work is performed on terms which\nprevent the entity from both using the Source or Products for its own\ninternal purposes and Conveying the Source or Products or any\nmodifications to them to any person other than You. Any modifications\nmade by the entity shall be deemed to be made by You pursuant to\nsubsection 3.2.\n\n\n6 DISCLAIMER AND LIABILITY\n\n 6.1 DISCLAIMER OF WARRANTY -- The Covered Source and any Products\n are provided 'as is' and any express or implied warranties,\n including, but not limited to, implied warranties of\n merchantability, of satisfactory quality, non-infringement of\n third party rights, and fitness for a particular purpose or use\n are disclaimed in respect of any Source or Product to the\n maximum extent permitted by law. The Licensor makes no\n representation that any Source or Product does not or will not\n infringe any patent, copyright, trade secret or other\n proprietary right. The entire risk as to the use, quality, and\n performance of any Source or Product shall be with You and not\n the Licensor. This disclaimer of warranty is an essential part\n of this Licence and a condition for the grant of any rights\n granted under this Licence.\n\n 6.2 EXCLUSION AND LIMITATION OF LIABILITY -- The Licensor shall, to\n the maximum extent permitted by law, have no liability for\n direct, indirect, special, incidental, consequential, exemplary,\n punitive or other damages of any character including, without\n limitation, procurement of substitute goods or services, loss of\n use, data or profits, or business interruption, however caused\n and on any theory of contract, warranty, tort (including\n negligence), product liability or otherwise, arising in any way\n in relation to the Covered Source, modified Covered Source\n and/or the Making or Conveyance of a Product, even if advised of\n the possibility of such damages, and You shall hold the\n Licensor(s) free and harmless from any liability, costs,\n damages, fees and expenses, including claims by third parties,\n in relation to such use.\n\n\n7 Patents\n\n 7.1 Subject to the terms and conditions of this Licence, each\n Licensor hereby grants to You a perpetual, worldwide,\n non-exclusive, no-charge, royalty-free, irrevocable (except as\n stated in subsections 7.2 and 8.4) patent license to Make, have\n Made, use, offer to sell, sell, import, and otherwise transfer\n the Covered Source and Products, where such licence applies only\n to those patent claims licensable by such Licensor that are\n necessarily infringed by exercising rights under the Covered\n Source as Conveyed by that Licensor.\n\n 7.2 If You institute patent litigation against any entity (including\n a cross-claim or counterclaim in a lawsuit) alleging that the\n Covered Source or a Product constitutes direct or contributory\n patent infringement, or You seek any declaration that a patent\n licensed to You under this Licence is invalid or unenforceable\n then any rights granted to You under this Licence shall\n terminate as of the date such process is initiated.\n\n\n8 General\n\n 8.1 If any provisions of this Licence are or subsequently become\n invalid or unenforceable for any reason, the remaining\n provisions shall remain effective.\n\n 8.2 You shall not use any of the name (including acronyms and\n abbreviations), image, or logo by which the Licensor or CERN is\n known, except where needed to comply with section 3, or where\n the use is otherwise allowed by law. Any such permitted use\n shall be factual and shall not be made so as to suggest any kind\n of endorsement or implication of involvement by the Licensor or\n its personnel.\n\n 8.3 CERN may publish updated versions and variants of this Licence\n which it considers to be in the spirit of this version, but may\n differ in detail to address new problems or concerns. New\n versions will be published with a unique version number and a\n variant identifier specifying the variant. If the Licensor has\n specified that a given variant applies to the Covered Source\n without specifying a version, You may treat that Covered Source\n as being released under any version of the CERN-OHL with that\n variant. If no variant is specified, the Covered Source shall be\n treated as being released under CERN-OHL-S. The Licensor may\n also specify that the Covered Source is subject to a specific\n version of the CERN-OHL or any later version in which case You\n may apply this or any later version of CERN-OHL with the same\n variant identifier published by CERN.\n\n 8.4 This Licence shall terminate with immediate effect if You fail\n to comply with any of its terms and conditions.\n\n 8.5 However, if You cease all breaches of this Licence, then Your\n Licence from any Licensor is reinstated unless such Licensor has\n terminated this Licence by giving You, while You remain in\n breach, a notice specifying the breach and requiring You to cure\n it within 30 days, and You have failed to come into compliance\n in all material respects by the end of the 30 day period. Should\n You repeat the breach after receipt of a cure notice and\n subsequent reinstatement, this Licence will terminate\n immediately and permanently. Section 6 shall continue to apply\n after any termination.\n\n 8.6 This Licence shall not be enforceable except by a Licensor\n acting as such, and third party beneficiary rights are\n specifically excluded.", + "json": "cern-ohl-s-2.0.json", + "yaml": "cern-ohl-s-2.0.yml", + "html": "cern-ohl-s-2.0.html", + "license": "cern-ohl-s-2.0.LICENSE" + }, + { + "license_key": "cern-ohl-w-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "CERN-OHL-W-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CERN Open Hardware Licence Version 2 - Weakly Reciprocal\n\n\nPreamble\n\nCERN has developed this licence to promote collaboration among\nhardware designers and to provide a legal tool which supports the\nfreedom to use, study, modify, share and distribute hardware designs\nand products based on those designs. Version 2 of the CERN Open\nHardware Licence comes in three variants: CERN-OHL-P (permissive); and\ntwo reciprocal licences: this licence, CERN- OHL-W (weakly reciprocal)\nand CERN-OHL-S (strongly reciprocal).\n\nThe CERN-OHL-W is copyright CERN 2020. Anyone is welcome to use it, in\nunmodified form only.\n\nUse of this Licence does not imply any endorsement by CERN of any\nLicensor or their designs nor does it imply any involvement by CERN in\ntheir development.\n\n\n1 Definitions\n\n 1.1 'Licence' means this CERN-OHL-W.\n\n 1.2 'Compatible Licence' means\n\n a) any earlier version of the CERN Open Hardware licence, or\n\n b) any version of the CERN-OHL-S or the CERN-OHL-W, or\n\n c) any licence which permits You to treat the Source to which\n it applies as licensed under CERN-OHL-S or CERN-OHL-W\n provided that on Conveyance of any such Source, or any\n associated Product You treat the Source in question as being\n licensed under CERN-OHL-S or CERN-OHL-W as appropriate.\n\n 1.3 'Source' means information such as design materials or digital\n code which can be applied to Make or test a Product or to\n prepare a Product for use, Conveyance or sale, regardless of its\n medium or how it is expressed. It may include Notices.\n\n 1.4 'Covered Source' means Source that is explicitly made available\n under this Licence.\n\n 1.5 'Product' means any device, component, work or physical object,\n whether in finished or intermediate form, arising from the use,\n application or processing of Covered Source.\n\n 1.6 'Make' means to create or configure something, whether by\n manufacture, assembly, compiling, loading or applying Covered\n Source or another Product or otherwise.\n\n 1.7 'Available Component' means any part, sub-assembly, library or\n code which:\n\n a) is licensed to You as Complete Source under a Compatible\n Licence; or\n\n b) is available, at the time a Product or the Source containing\n it is first Conveyed, to You and any other prospective\n licensees\n\n i) with sufficient rights and information (including any\n configuration and programming files and information\n about its characteristics and interfaces) to enable it\n either to be Made itself, or to be sourced and used to\n Make the Product; or\n ii) as part of the normal distribution of a tool used to\n design or Make the Product.\n\n 1.8 'External Material' means anything (including Source) which:\n\n a) is only combined with Covered Source in such a way that it\n interfaces with the Covered Source using a documented\n interface which is described in the Covered Source; and\n\n b) is not a derivative of or contains Covered Source, or, if it\n is, it is solely to the extent necessary to facilitate such\n interfacing.\n\n 1.9 'Complete Source' means the set of all Source necessary to Make\n a Product, in the preferred form for making modifications,\n including necessary installation and interfacing information\n both for the Product, and for any included Available Components.\n If the format is proprietary, it must also be made available in\n a format (if the proprietary tool can create it) which is\n viewable with a tool available to potential licensees and\n licensed under a licence approved by the Free Software\n Foundation or the Open Source Initiative. Complete Source need\n not include the Source of any Available Component, provided that\n You include in the Complete Source sufficient information to\n enable a recipient to Make or source and use the Available\n Component to Make the Product.\n\n 1.10 'Source Location' means a location where a Licensor has placed\n Covered Source, and which that Licensor reasonably believes will\n remain easily accessible for at least three years for anyone to\n obtain a digital copy.\n\n 1.11 'Notice' means copyright, acknowledgement and trademark notices,\n Source Location references, modification notices (subsection\n 3.3(b)) and all notices that refer to this Licence and to the\n disclaimer of warranties that are included in the Covered\n Source.\n\n 1.12 'Licensee' or 'You' means any person exercising rights under\n this Licence.\n\n 1.13 'Licensor' means a natural or legal person who creates or\n modifies Covered Source. A person may be a Licensee and a\n Licensor at the same time.\n\n 1.14 'Convey' means to communicate to the public or distribute.\n\n\n2 Applicability\n\n 2.1 This Licence governs the use, copying, modification, Conveying\n of Covered Source and Products, and the Making of Products. By\n exercising any right granted under this Licence, You irrevocably\n accept these terms and conditions.\n\n 2.2 This Licence is granted by the Licensor directly to You, and\n shall apply worldwide and without limitation in time.\n\n 2.3 You shall not attempt to restrict by contract or otherwise the\n rights granted under this Licence to other Licensees.\n\n 2.4 This Licence is not intended to restrict fair use, fair dealing,\n or any other similar right.\n\n\n3 Copying, modifying and Conveying Covered Source\n\n 3.1 You may copy and Convey verbatim copies of Covered Source, in\n any medium, provided You retain all Notices.\n\n 3.2 You may modify Covered Source, other than Notices, provided that\n You irrevocably undertake to make that modified Covered Source\n available from a Source Location should You Convey a Product in\n circumstances where the recipient does not otherwise receive a\n copy of the modified Covered Source. In each case subsection 3.3\n shall apply.\n\n You may only delete Notices if they are no longer applicable to\n the corresponding Covered Source as modified by You and You may\n add additional Notices applicable to Your modifications.\n\n 3.3 You may Convey modified Covered Source (with the effect that You\n shall also become a Licensor) provided that You:\n\n a) retain Notices as required in subsection 3.2;\n\n b) add a Notice to the modified Covered Source stating that You\n have modified it, with the date and brief description of how\n You have modified it;\n\n c) add a Source Location Notice for the modified Covered Source\n if You Convey in circumstances where the recipient does not\n otherwise receive a copy of the modified Covered Source; and\n\n d) license the modified Covered Source under the terms and\n conditions of this Licence (or, as set out in subsection\n 8.3, a later version, if permitted by the licence of the\n original Covered Source). Such modified Covered Source must\n be licensed as a whole, but excluding Available Components\n contained in it or External Material to which it is\n interfaced, which remain licensed under their own applicable\n licences.\n\n\n4 Making and Conveying Products\n\n 4.1 You may Make Products, and/or Convey them, provided that You\n either provide each recipient with a copy of the Complete Source\n or ensure that each recipient is notified of the Source Location\n of the Complete Source. That Complete Source includes Covered\n Source and You must accordingly satisfy Your obligations set out\n in subsection 3.3. If specified in a Notice, the Product must\n visibly and securely display the Source Location on it or its\n packaging or documentation in the manner specified in that\n Notice.\n\n 4.2 Where You Convey a Product which incorporates External Material,\n the Complete Source for that Product which You are required to\n provide under subsection 4.1 need not include any Source for the\n External Material.\n\n 4.3 You may license Products under terms of Your choice, provided\n that such terms do not restrict or attempt to restrict any\n recipients' rights under this Licence to the Covered Source.\n\n\n5 Research and Development\n\nYou may Convey Covered Source, modified Covered Source or Products to\na legal entity carrying out development, testing or quality assurance\nwork on Your behalf provided that the work is performed on terms which\nprevent the entity from both using the Source or Products for its own\ninternal purposes and Conveying the Source or Products or any\nmodifications to them to any person other than You. Any modifications\nmade by the entity shall be deemed to be made by You pursuant to\nsubsection 3.2.\n\n\n6 DISCLAIMER AND LIABILITY\n\n 6.1 DISCLAIMER OF WARRANTY -- The Covered Source and any Products\n are provided 'as is' and any express or implied warranties,\n including, but not limited to, implied warranties of\n merchantability, of satisfactory quality, non-infringement of\n third party rights, and fitness for a particular purpose or use\n are disclaimed in respect of any Source or Product to the\n maximum extent permitted by law. The Licensor makes no\n representation that any Source or Product does not or will not\n infringe any patent, copyright, trade secret or other\n proprietary right. The entire risk as to the use, quality, and\n performance of any Source or Product shall be with You and not\n the Licensor. This disclaimer of warranty is an essential part\n of this Licence and a condition for the grant of any rights\n granted under this Licence.\n\n 6.2 EXCLUSION AND LIMITATION OF LIABILITY -- The Licensor shall, to\n the maximum extent permitted by law, have no liability for\n direct, indirect, special, incidental, consequential, exemplary,\n punitive or other damages of any character including, without\n limitation, procurement of substitute goods or services, loss of\n use, data or profits, or business interruption, however caused\n and on any theory of contract, warranty, tort (including\n negligence), product liability or otherwise, arising in any way\n in relation to the Covered Source, modified Covered Source\n and/or the Making or Conveyance of a Product, even if advised of\n the possibility of such damages, and You shall hold the\n Licensor(s) free and harmless from any liability, costs,\n damages, fees and expenses, including claims by third parties,\n in relation to such use.\n\n\n7 Patents\n\n 7.1 Subject to the terms and conditions of this Licence, each\n Licensor hereby grants to You a perpetual, worldwide,\n non-exclusive, no-charge, royalty-free, irrevocable (except as\n stated in subsections 7.2 and 8.4) patent license to Make, have\n Made, use, offer to sell, sell, import, and otherwise transfer\n the Covered Source and Products, where such licence applies only\n to those patent claims licensable by such Licensor that are\n necessarily infringed by exercising rights under the Covered\n Source as Conveyed by that Licensor.\n\n 7.2 If You institute patent litigation against any entity (including\n a cross-claim or counterclaim in a lawsuit) alleging that the\n Covered Source or a Product constitutes direct or contributory\n patent infringement, or You seek any declaration that a patent\n licensed to You under this Licence is invalid or unenforceable\n then any rights granted to You under this Licence shall\n terminate as of the date such process is initiated.\n\n\n8 General\n\n 8.1 If any provisions of this Licence are or subsequently become\n invalid or unenforceable for any reason, the remaining\n provisions shall remain effective.\n\n 8.2 You shall not use any of the name (including acronyms and\n abbreviations), image, or logo by which the Licensor or CERN is\n known, except where needed to comply with section 3, or where\n the use is otherwise allowed by law. Any such permitted use\n shall be factual and shall not be made so as to suggest any kind\n of endorsement or implication of involvement by the Licensor or\n its personnel.\n\n 8.3 CERN may publish updated versions and variants of this Licence\n which it considers to be in the spirit of this version, but may\n differ in detail to address new problems or concerns. New\n versions will be published with a unique version number and a\n variant identifier specifying the variant. If the Licensor has\n specified that a given variant applies to the Covered Source\n without specifying a version, You may treat that Covered Source\n as being released under any version of the CERN-OHL with that\n variant. If no variant is specified, the Covered Source shall be\n treated as being released under CERN-OHL-S. The Licensor may\n also specify that the Covered Source is subject to a specific\n version of the CERN-OHL or any later version in which case You\n may apply this or any later version of CERN-OHL with the same\n variant identifier published by CERN.\n\n You may treat Covered Source licensed under CERN-OHL-W as\n licensed under CERN-OHL-S if and only if all Available\n Components referenced in the Covered Source comply with the\n corresponding definition of Available Component for CERN-OHL-S.\n\n 8.4 This Licence shall terminate with immediate effect if You fail\n to comply with any of its terms and conditions.\n\n 8.5 However, if You cease all breaches of this Licence, then Your\n Licence from any Licensor is reinstated unless such Licensor has\n terminated this Licence by giving You, while You remain in\n breach, a notice specifying the breach and requiring You to cure\n it within 30 days, and You have failed to come into compliance\n in all material respects by the end of the 30 day period. Should\n You repeat the breach after receipt of a cure notice and\n subsequent reinstatement, this Licence will terminate\n immediately and permanently. Section 6 shall continue to apply\n after any termination.\n\n 8.6 This Licence shall not be enforceable except by a Licensor\n acting as such, and third party beneficiary rights are\n specifically excluded.", + "json": "cern-ohl-w-2.0.json", + "yaml": "cern-ohl-w-2.0.yml", + "html": "cern-ohl-w-2.0.html", + "license": "cern-ohl-w-2.0.LICENSE" + }, + { + "license_key": "cgic", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cgic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CGIC License Terms \n------------------\nBasic License \n-------------\nCGIC, copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 by Thomas Boutell and Boutell.Com, Inc.. \n\nPermission is granted to use CGIC in any application, commercial or\nnoncommercial, at no cost. HOWEVER, this copyright paragraph must appear on a\n\"credits\" page accessible in the public online and offline documentation of the\nprogram. Modified versions of the CGIC library should not be distributed without\nthe attachment of a clear statement regarding the author of the modifications,\nand this notice may in no case be removed. Modifications may also be submitted\nto the author for inclusion in the main CGIC distribution.\n\nIF YOU WOULD PREFER NOT TO ATTACH THE ABOVE NOTICE to the public documentation\nof your application, consult the information which follows regarding the\navailability of a nonexclusive commercial license for CGIC.\n\nCommercial License \n------------------\nThe price of a nonexclusive commercial license is $200 U.S. To purchase the license:\n1. Print and sign two copies of the document below.\n\n2. Send both copies, along with Visa, Mastercard, Discover, or Amex card number,\ncardholder's name, and expiration date OR a check for $200 in U.S. funds drawn\non a U.S. bank, to:\n\nBoutell.Com, Inc. PO Box 63767 Philadelphia, PA 19147 USA\nCredit card orders may alternatively be faxed to:\nBoutell.Com, Inc. (208) 445-0327\nBE SURE TO INCLUDE AN EMAIL ADDRESS, as well as a postal address and phone number.\n3. We will return one signed copy to you promptly.\nYou will also receive swift notification of new versions of CGIC, in addition to ongoing email support.\n\n*** CGIC Nonexclusive Commercial License\n\nThe licensee named below is granted the right to utilize CGIC, major version 1\nor 2, any minor version thereof, in CGI applications without the need for a\ncredit notice of any kind. CGI applications developed by the holder of this\nlicense may be distributed freely in source code or binary form without\nadditional fees or royalties. This license does not grant the right to use CGIC\nto create a development tool which passes on substantially all of the\ncapabilities of the CGIC library to the user of the tool, unless that tool is to\nbe used internally by the license holder only in order to develop CGI\napplications. This license may not be resold, but applications developed in\naccordance with the terms of the license may be distributed freely subject to\nthe limitations described above.\n\nFuture minor (2.x) versions of CGIC will be covered by this license free of\ncharge. If significant defects of workmanship are discovered in version 2.x,\nminor releases to correct them will be made available before or at the same time\nthat those defects are addressed in any future major version. Future \"major\"\n(3.x) versions will be available to licensees at an upgrade price of $50.\n\nIf, for any reason, any portion of this license is found to be invalid, that\nportion of the license only is invalidated and the remainder of the agreement\nremains in effect.\n\nIf this license has not been signed by Thomas Boutell or M. L. Grant on behalf\nof Boutell. Com, Inc., it is invalid.\n\nLicensee's Name: \nSigned for Licensee: \nComplete Mailing Address:\nPhone Number: \nEmail Address: \nSigned for Boutell.Com, Inc.: \nDate:", + "json": "cgic.json", + "yaml": "cgic.yml", + "html": "cgic.html", + "license": "cgic.LICENSE" + }, + { + "license_key": "chartdirector-6.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-chartdirector-6.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ChartDirector 6.0 (ASP/COM/VB Edition)\nLicense Agreement\nYou should carefully read the following terms and conditions before using the ChartDirector software. Your use of the ChartDirector software indicates your acceptance of this license agreement. Do not use the ChartDirector software if you do not agree with this license agreement.\n\nDisclaimer of Warranty\nThe ChartDirector software and the accompanying files are distributed and licensed \"as is\". Advanced Software Engineering Limited disclaims all warranties, either express or implied, including, but not limited to implied warranties of merchantability and fitness for a particular purpose. Should the ChartDirector software prove defective, the licensee assumes the risk of paying the entire cost of all necessary servicing, repair, or correction and any incidental or consequential damages. In no event will Advanced Software Engineering Limited be liable for any damages whatsoever (including without limitation damages for loss of business profits, business interruption, loss of business information and the like) arising out of the use or the inability to use the ChartDirector software even if Advanced Software Engineering Limited has been advised of the possibility of such damages.\n\nIntellectual Property\nThe ChartDirector software is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The ChartDirector software is licensed, not sold. Title to the ChartDirector software shall at all times remain with Advanced Software Engineering Limited.\n\nYou agree not to modify, decompile, reverse engineer, disassemble or otherwise attempt to derive source code from the ChartDirector software.\n\nTrial Version\nThe trial version of the ChartDirector software will produce yellow banner messages at the bottom of the chart images generated by it. You agree to not remove, obscure, or alter this message.\n\nSubjected to the conditions in this license agreement:\n\nYou may use the unmodified trial version of the ChartDirector software without charge.\n\nYou may redistribute the unmodified trial version of the ChartDirector software, provided you do not charge for it.\n\nYou may embed the unmodified trial version of the ChartDirector software (or part of it), in a product and distribute the product, provided you do not charge for the product.\n\nIf you do not want the yellow banner messages appearing in the charts, or you want to embed the ChartDirector software (or part of it) in a product that is not free, you must purchase a commercial license to use the ChartDirector software from Advanced Software Engineering Limited. Please refer to Advanced Software Engineering's web site at www.advsofteng.com for details.\n\nCredits\nThe ChartDirector software is developed using code from the Independent JPEG Group and the FreeType team. Any software that is derived from the ChartDirector software must include the following text in its documentation. This applies to both the trial version of the ChartDirector software and to the commercial version of the ChartDirector software.\n\nThis software is based in part on the work of the Independent JPEG Group\n\nThis software is based in part of the work of the FreeType Team\n\n\u00a9 2015 Advanced Software Engineering Limited. All rights reserved.", + "json": "chartdirector-6.0.json", + "yaml": "chartdirector-6.0.yml", + "html": "chartdirector-6.0.html", + "license": "chartdirector-6.0.LICENSE" + }, + { + "license_key": "checkmk", + "category": "Permissive", + "spdx_license_key": "checkmk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution of this program in any form, with or without\nmodifications, is permitted, provided that the above copyright is\nretained in distributions of this program in source form.\n\n(This is a free, non-copyleft license compatible with pretty much any\nother free or proprietary license, including the GPL. It's essentially\na scaled-down version of the \"modified\" BSD license.)", + "json": "checkmk.json", + "yaml": "checkmk.yml", + "html": "checkmk.html", + "license": "checkmk.LICENSE" + }, + { + "license_key": "chelsio-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-chelsio-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Chelsio Communication Terminator 4/5 ethernet controller firmware\n\nRedistribution and use in binary form, without modification, are permitted provided\nthat the following conditions are met:\n\n1. Redistribution in binary form must reproduce the above copyright notice, this\n list of conditions and the following disclaimer in the documentation and/or\n other materials provided with the distribution.\n2. The name of Chelsio Communications may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n3. Reverse engineering, decompilation, or disassembly of this firmware is not\n permitted.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\nTHE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\nOF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\nUSE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "chelsio-linux-firmware.json", + "yaml": "chelsio-linux-firmware.yml", + "html": "chelsio-linux-firmware.html", + "license": "chelsio-linux-firmware.LICENSE" + }, + { + "license_key": "chicken-dl-0.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-chicken-dl-0.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Chicken Dance License v0.2\nhttp://supertunaman.com/cdl/\n\nRedistribution and use in source and binary forms, with \nor without modification, are permitted provided that the \nfollowing conditions are met:\n\n 1. Redistributions of source code must retain the \n above copyright notice, this list of conditions and \n the following disclaimer.\n 2. Redistributions in binary form must reproduce the \n above copyright notice, this list of conditions and \n the following disclaimer in the documentation and/or \n other materials provided with the distribution.\n 3. Neither the name of the nor the names \n of its contributors may be used to endorse or promote \n products derived from this software without specific \n prior written permission.\n 4. An entity wishing to redistribute in binary form or \n include this software in their product without \n redistribution of this software's source code with the \n product must also submit to these conditions where \n applicable: \n * For every thousand (1000) units distributed, at \n least half of the employees or persons \n affiliated with the product must listen to the \n \"Der Ententanz\" (AKA \"The Chicken Dance\") as \n composed by Werner Thomas for no less than two \n (2) minutes\n * For every twenty-thousand (20000) units distributed, \n one (1) or more persons affiliated with the entity \n must be recorded performing the full Chicken Dance, \n in an original video at the entity's own expense,\n and a video encoded in OGG Theora format or a format\n and codec specified by , at least three (3) \n minutes in length, must be submitted to , \n provided 's contact information. Any and all\n copyrights to this video must be transfered to \n . The dance featured in the video\n must be based upon the instructions on how to perform \n the Chicken Dance that you should have received with\n this software. \n * Any employee or person affiliated with the product \n must be prohibited from saying the word \"gazorninplat\" in \n public at all times, as long as distribution of the \n product continues. \n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT \nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS \nFOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE \nCOPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, \nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; \nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER \nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT \nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN \nANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE. ACCEPTS NO LIABILITY FOR\nANY INJURIES OR EXPENSES SUSTAINED IN THE ACT OF FULFILLING ANY OF \nTHE ABOVE TERMS AND CONDITIONS, ACCIDENTAL OR OTHERWISE.", + "json": "chicken-dl-0.2.json", + "yaml": "chicken-dl-0.2.yml", + "html": "chicken-dl-0.2.html", + "license": "chicken-dl-0.2.LICENSE" + }, + { + "license_key": "chris-maunder", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-chris-maunder", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This code may be used in compiled form in any way you desire. This file may be\nredistributed unmodified by any means PROVIDING it is not sold for profit\nwithout the authors written consent, and providing that this notice and the\nauthors name and all copyright notices remains intact.\n\nAn email letting me know how you are using it would be nice as well.\n\nThis file is provided \"as is\" with no expressed or implied warranty. The author\naccepts no liability for any damage/loss of business that this product may\ncause.", + "json": "chris-maunder.json", + "yaml": "chris-maunder.yml", + "html": "chris-maunder.html", + "license": "chris-maunder.LICENSE" + }, + { + "license_key": "chris-stoy", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-chris-stoy", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You are free to use this code in all commercial and non-commercial applications\nas long as this copyright message is left intact.\nUse this code at your own risk. I take no responsibility if it should fail to\ndo anything you would expect it to do and it could, at any time, fail to function\nin any manner. You have the source code, make it do what you want.", + "json": "chris-stoy.json", + "yaml": "chris-stoy.yml", + "html": "chris-stoy.html", + "license": "chris-stoy.LICENSE" + }, + { + "license_key": "christopher-velazquez", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-christopher-velazquez", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Any duplication of the content on this web site without permission of the author\nis strictly prohibited.", + "json": "christopher-velazquez.json", + "yaml": "christopher-velazquez.yml", + "html": "christopher-velazquez.html", + "license": "christopher-velazquez.LICENSE" + }, + { + "license_key": "classic-vb", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-classic-vb", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Policy\n\nAll code samples, tools, articles, and other content provided by this website is\nconsidered to be protected by United States and international copyright law. It\nis provided for the educational use of site visitors. Free license is hereby\ngranted to use the code provided and techniques discussed here within your\napplications. You are not licensed to share any of the samples, or other content\non this website, in any form of mass distribution. Specifically,\n\nyou may not repost on other websites material(s) found here,\n\nyou may not sell compilation CDs or DVDs that contain material taken directly\nfrom this website,\n\nyou may provide modules found here, as source, within applications delivered to\nyour clients provided they agree to the same policies stated here and that you\nboth retain the embedded copyright notice(s),\n\nyou may email samples you consider cool to your friends, if you tell them where\nyou found them,\n\nyou may cite this site and its owner in the credits for your application, if you\nwish,\n\nyou may choose to donate to support this website, if material found here has\nsaved you time/money.\n\nCopyright violations will be pursued vigorously.\n\nRationale\n\nThis site is intended to be a benefit to the community of Classic VB developers.\nCode provided here is subject to continual update, as site visitors report bugs,\nand fixes are found. Having a single source for this codebase allows folks to\nalways know where they can turn to find the latest and presumably greatest. This\nway, if you have downloaded code from this site, and it isn't behaving in a\nreasonable manner, the first thing you can do is return to see if it's been\nupdated recently.\n\nWhen the contents of this site are redistributed elsewhere, I lose control over\nversioning, and inevitably end up with emails asking about bugs fixed long ago.\nIt really is easier for everyone to have a single source. The policy stated here\nisn't meant to be a hindrance to visitors, and if you find it so it's very\nlikely I haven't explained it well enough.\n\nIf you find problems with code here, or wonder about licensing and\nredistribution, please let me know!\n\nThanks for understanding...\n\nExceptions\n\nYou're probably thinking, \"Yeah, but maybe if I email him and ask really nice,\n... , after all, my posting to the internet will absolutely benefit all\nhumanity, and I stand to gain nothing personally, and yadda yadda yadda...\" I\nknow. A million good causes, and a free sample to go with each. Well, yeah, I\nreally do mean, and want to stick with, what I wrote above. I'm very glad you\nlike my code, so much so that you want to repost it somewhere else. I'd really\nprefer you didn't do that. I do appreciate your understanding.\n\nDisclaimer\n\nMicrosoft is in no way affiliated with, nor offering endorsement of, this site.\nIt happens that we used to share a common interest in certain topics, but that's\nthe extent of the relationship with regard to what's presented here.\n\nAll software offered on this site is considered to work, but no liability is\nassumed by the author(s). As a developer yourself, it is assumed you realize\nthat sample code is just that. It is your responsibility to use what you find\nhere responsibly.", + "json": "classic-vb.json", + "yaml": "classic-vb.yml", + "html": "classic-vb.html", + "license": "classic-vb.LICENSE" + }, + { + "license_key": "classpath-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "Classpath-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Linking this library statically or dynamically with other modules is making a\ncombined work based on this library. Thus, the terms and conditions of the GNU\nGeneral Public License cover the whole combination.\n\nAs a special exception, the copyright holders of this library give you\npermission to link this library with independent modules to produce an\nexecutable, regardless of the license terms of these independent modules, and to\ncopy and distribute the resulting executable under terms of your choice,\nprovided that you also meet, for each linked independent module, the terms and\nconditions of the license of that module. An independent module is a module\nwhich is not derived from or based on this library. If you modify this library,\nyou may extend this exception to your version of the library, but you are not\nobligated to do so. If you do not wish to do so, delete this exception statement\nfrom your version.", + "json": "classpath-exception-2.0.json", + "yaml": "classpath-exception-2.0.yml", + "html": "classpath-exception-2.0.html", + "license": "classpath-exception-2.0.LICENSE" + }, + { + "license_key": "classworlds", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Redistribution and use of this software and associated documentation\n(\"Software\"), with or without modification, are permitted provided that the\nfollowing conditions are met:\n\n1. Redistributions of source code must retain copyright statements and notices.\nRedistributions must also contain a copy of this document.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\n3. The name \"classworlds\" must not be used to endorse or promote products\nderived from this Software without prior written permission of The Codehaus. For\nwritten permission, please contact bob@codehaus.org.\n\n4. Products derived from this Software may not be called \"classworlds\" nor may\n\"classworlds\" appear in their names without prior written permission of The\nCodehaus. \"classworlds\" is a registered trademark of The Codehaus.\n\n5. Due credit should be given to The Codehaus.\n(http://classworlds.codehaus.org/).\n\nTHIS SOFTWARE IS PROVIDED BY THE CODEHAUS AND CONTRIBUTORS ``AS IS'' AND ANY\nEXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE CODEHAUS OR ITS CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "classworlds.json", + "yaml": "classworlds.yml", + "html": "classworlds.html", + "license": "classworlds.LICENSE" + }, + { + "license_key": "clause-6-exception-lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-clause-6-exception-lgpl-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a relaxation of clause 6 of the LGPL, the copyright holders of this\nlibrary give permission to use, copy, link, modify, and distribute,\nbinary-only object-code versions of an executable linked with the\noriginal unmodified Library, without requiring the supply of any\nmechanism to modify or replace the Library and relink (clauses 6a,\n6b, 6c, 6d, 6e), provided that all the other terms of clause 6 are\ncomplied with.", + "json": "clause-6-exception-lgpl-2.1.json", + "yaml": "clause-6-exception-lgpl-2.1.yml", + "html": "clause-6-exception-lgpl-2.1.html", + "license": "clause-6-exception-lgpl-2.1.LICENSE" + }, + { + "license_key": "clear-bsd", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-Clear", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted (subject to the limitations in the\ndisclaimer below) provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the\n distribution.\n\n * Neither the name of {Owner Organization} nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n\nNO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE\nGRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT\nHOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\nIF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "clear-bsd.json", + "yaml": "clear-bsd.yml", + "html": "clear-bsd.html", + "license": "clear-bsd.LICENSE" + }, + { + "license_key": "clear-bsd-1-clause", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-clear-bsd-1-clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted (subject to the limitations in the\ndisclaimer below) provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\nNO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE\nGRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT\nHOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\nIF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "clear-bsd-1-clause.json", + "yaml": "clear-bsd-1-clause.yml", + "html": "clear-bsd-1-clause.html", + "license": "clear-bsd-1-clause.LICENSE" + }, + { + "license_key": "click-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-click-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the \"Software\"),\nto deal in the Software without restriction, including without limitation\nthe rights to use, copy, modify, merge, publish, distribute, sublicense,\nand/or sell copies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nThe name and trademarks of copyright holders may NOT be used in advertising\nor publicity pertaining to the Software without specific, written prior\npermission. Title to copyright in this Software and any associated\ndocumentation will at all times remain with copyright holders.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.", + "json": "click-license.json", + "yaml": "click-license.yml", + "html": "click-license.html", + "license": "click-license.LICENSE" + }, + { + "license_key": "clips-2017", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-clips-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CLIPS License Information\n\nPermission is hereby granted, free of charge, to any person obtaining a \ncopy of this software (the \"Software\"), to deal in the Software without \nrestriction, including without limitation the rights to use, copy, modify, \nmerge, publish, distribute, and/or sell copies of the Software, and to \npermit persons to whom the Software is furnished to do so. \n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR \nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, \nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. \nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL \nINDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM \nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE \nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR \nPERFORMANCE OF THIS SOFTWARE.", + "json": "clips-2017.json", + "yaml": "clips-2017.yml", + "html": "clips-2017.html", + "license": "clips-2017.LICENSE" + }, + { + "license_key": "clisp-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "CLISP-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "This copyright does NOT cover user programs that run in CLISP and third-party\npackages not part of CLISP, if a) They only reference external symbols in\nCLISP's public packages that define API also provided by many other Common Lisp\nimplementations (namely the packages COMMON-LISP, COMMON-LISP-USER, KEYWORD,\nCLOS, GRAY, EXT), i.e. if they don't rely on CLISP internals and would as well\nrun in any other Common Lisp implementation. Or b) They only reference external\nsymbols in CLISP's public packages that define API also provided by many other\nCommon Lisp implementations (namely the packages COMMON-LISP, COMMON-LISP-USER,\nKEYWORD, CLOS, GRAY, EXT) and some external, not CLISP specific, symbols in\nthird-party packages that are released with source code under a GPL compatible\nlicense and that run in a great number of Common Lisp implementations, i.e. if\nthey rely on CLISP internals only to the extent needed for gaining some\nfunctionality also available in a great number of Common Lisp implementations.\nSuch user programs are not covered by the term \"derived work\" used in the\nGNU GPL. Neither is their compiled code, i.e. the result of compiling them by\nuse of the function COMPILE-FILE. We refer to such user programs as\n\"independent work\".\n\nYou may copy and distribute memory image files generated by the function\nSAVEINITMEM, if it was generated only from CLISP and independent work, and\nprovided that you accompany them, in the sense of section 3 of the GNU GPL, with\nthe source code of CLISP - precisely the same CLISP version that was used to\nbuild the memory image -, the source or compiled code of the user programs\nneeded to rebuild the memory image (source code for all the parts that are not\nindependent work, see above), and a precise description how to rebuild the\nmemory image from these.\n\nForeign non-Lisp code that is linked with CLISP or loaded into CLISP through\ndynamic linking is not exempted from this copyright. I.e. such code, when\ndistributed for use with CLISP, must be distributed under the GPL.", + "json": "clisp-exception-2.0.json", + "yaml": "clisp-exception-2.0.yml", + "html": "clisp-exception-2.0.html", + "license": "clisp-exception-2.0.LICENSE" + }, + { + "license_key": "cloudera-express", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cloudera-express", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Cloudera Express License\n\nEND USER LICENSE TERMS AND CONDITIONS\n\nTHESE TERMS AND CONDITIONS (THESE \"TERMS\") APPLY TO YOUR USE OF THE PRODUCTS (AS DEFINED BELOW) PROVIDED BY CLOUDERA, INC. (\"CLOUDERA\").\n\nPLEASE READ THESE TERMS CAREFULLY.\n\nIF YOU (\"YOU\" OR \"CUSTOMER\") PLAN TO USE ANY OF THE PRODUCTS ON BEHALF OF A COMPANY OR OTHER ENTITY, YOU REPRESENT THAT YOU ARE THE EMPLOYEE OR AGENT OF SUCH COMPANY (OR OTHER ENTITY) AND YOU HAVE THE AUTHORITY TO ACCEPT ALL OF THE TERMS AND CONDITIONS SET FORTH IN AN ACCEPTED REQUEST (AS DEFINED BELOW) AND THESE TERMS (COLLECTIVELY, THE \"AGREEMENT\") ON BEHALF OF SUCH COMPANY (OR OTHER ENTITY).\n\nBY USING ANY OF THE PRODUCTS, YOU ACKNOWLEDGE AND AGREE THAT:\n(A) YOU HAVE READ ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT;\n(B) YOU UNDERSTAND ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT;\n(C) YOU AGREE TO BE LEGALLY BOUND BY ALL OF THE TERMS AND CONDITIONS SET FORTH IN THIS AGREEMENT\n\nIF YOU DO NOT AGREE WITH ANY OF THE TERMS OR CONDITIONS OF THESE TERMS, YOU MAY NOT USE ANY PORTION OF THE PRODUCTS.\n\nTHE \"EFFECTIVE DATE\" OF THIS AGREEMENT IS THE DATE YOU FIRST DOWNLOAD ANY OF THE PRODUCTS.\n\n1. For the purpose of this Agreement, \"Product\" shall mean the Cloudera Manager, Cloudera Standard, Cloudera Enterprise Trial and related software.\n\n2. Entire Agreement. This Agreement includes these Terms any exhibits attached to these Terms and any terms set forth on the Cloudera Site (as defined below). This Agreement is the entire agreement of the parties regarding the subject matter hereof, superseding all other agreements between them, whether oral or written, regarding the subject matter hereof\n\n3. License Delivery. Cloudera grants to Customer a nonexclusive, nontransferable, nonsublicensable, revocable and limited license to access and use the Product as defined above in Section 1 solely for Customer's internal purposes. The Product is delivered via electronic download from the ftp site made available following Customer's execution of this Agreement.\n\n4. License Restrictions. Unless expressly otherwise set forth in this Agreement, Customer will not: \n(a) modify, translate or create derivative works of the Product;\n(b) decompile, reverse engineer or reverse assemble any portion of the Product or attempt to discover any source code or underlying ideas or algorithms of the Product;\n(c) sell, assign, sublicense, rent, lease, loan, provide, distribute or otherwise transfer all or any portion of the Product;\n(d) make, have made, reproduce or copy the Product; (e) remove or alter any trademark, logo, copyright or other proprietary notices associated with the Product; and\n(f) cause or permit any other party to do any of the foregoing.\n\n5. Ownership. As between Cloudera and Customer and subject to the grants under this Agreement, Cloudera owns all right, title and interest in and to: (a) the Product (including, but not limited to, any modifications thereto); (b) all ideas, inventions, discoveries, improvements, information, creative works and any other works discovered, prepared or developed by Cloudera in the course of or resulting from the provision of any services under this Agreement; and (c) any and all Intellectual Property Rights embodied in the foregoing. For the purpose of this Agreement, \"Intellectual Property Rights\" means any and all patents, copyrights, moral rights, trademarks, trade secrets and any other form of intellectual property rights recognized in any jurisdiction, including applications and registrations for any of the foregoing. As between the parties and subject to the terms and conditions of this Agreement, Customer owns all right, title and interest in and to the data generated by the use of the Products by Customer. There are no implied licenses in this Agreement, and Cloudera reserves all rights not expressly granted under this Agreement. No licenses are granted by Cloudera to Customer under this Agreement, whether by implication, estoppels or otherwise, except as expressly set forth in this Agreement.\n\n6. Nondisclosure. \"Confidential Information\" means all information disclosed (whether in oral, written, or other tangible or intangible form) by Cloudera to Customer concerning or related to this Agreement or Cloudera (whether before, on or after the Effective Date) which Customer knows or should know, given the facts and circumstances surrounding the disclosure of the information by Customer, is confidential information of Cloudera. Confidential Information includes, but is not limited to, the components of the business plans, the Products, inventions, design plans, financial plans, computer programs, know-how, customer information, strategies and other similar information. Customer will, during the term of this Agreement, and thereafter maintain in confidence the Confidential Information and will not use such Confidential Information except as expressly permitted herein. Customer will use the same degree of care in protecting the Confidential Information as Customer uses to protect its own confidential information from unauthorized use or disclosure, but in no event less than reasonable care. Confidential Information will be used by Customer solely for the purpose of carrying out Customer's obligations under this Agreement. In addition, Customer: (a) will not reproduce Confidential Information, in any form, except as required to accomplish Customer's obligations under this Agreement; and (b) will only disclose Confidential Information to its employees and consultants who have a need to know such Confidential Information in order to perform their duties under this Agreement and if such employees and consultants have executed a non-disclosure agreement with Customer with terms no less restrictive than the non-disclosure obligations contained in this Section. Confidential Information will not include information that: (i) is in or enters the public domain without breach of this Agreement through no fault of Customer; (ii) Customer can reasonably demonstrate was in its possession prior to first receiving it from Cloudera; (iii) Customer can demonstrate was developed by Customer independently and without use of or reference to the Confidential Information; or (iv) Customer receives from a third-party without restriction on disclosure and without breach of a nondisclosure obligation. Notwithstanding any terms to the contrary in this Agreement, any suggestions, comments or other feedback provided by Customer to Cloudera with respect to the Products (collectively, \"Feedback\") will constitute Confidential Information. Further, Cloudera will be free to use, disclose, reproduce, license and otherwise distribute, and exploit the Feedback provided to it as it sees fit, entirely without obligation or restriction of any kind on account of Intellectual Property Rights or otherwise.\n\n7. Warranty Disclaimer. Customer represents warrants and covenants that: (a) all of its employees and consultants will abide by the terms of this Agreement; (b) it will comply with all applicable laws, regulations, rules, orders and other requirements, now or hereafter in effect, of any applicable governmental authority, in its performance of this Agreement. Notwithstanding any terms to the contrary in this Agreement, Customer will remain responsible for acts or omissions of all employees or consultants of Customer to the same extent as if such acts or omissions were undertaken by Customer. THE PRODUCTS ARE PROVIDED ON AN \"AS IS\" OR \"AS AVAILABLE\" BASIS WITHOUT ANY REPRESENTATIONS, WARRANTIES, COVENANTS OR CONDITIONS OF ANY KIND. CLOUDERA AND ITS SUPPLIERS DO NOT WARRANT THAT ANY OF THE PRODUCTS WILL BE FREE FROM ALL BUGS, ERRORS, OR OMISSIONS. CLOUDERA AND ITS SUPPLIERS DISCLAIM ANY AND ALL OTHER WARRANTIES AND REPRESENTATIONS (EXPRESS OR IMPLIED, ORAL OR WRITTEN) WITH RESPECT TO THE PRODUCTS WHETHER ALLEGED TO ARISE BY OPERATION OF LAW, BY REASON OF CUSTOM OR USAGE IN THE TRADE, BY COURSE OF DEALING OR OTHERWISE, INCLUDING ANY AND ALL (I) WARRANTIES OF MERCHANTABILITY, (II) WARRANTIES OF FITNESS OR SUITABILITY FOR ANY PURPOSE (WHETHER OR NOT CLOUDERA KNOWS, HAS REASON TO KNOW, HAS BEEN ADVISED, OR IS OTHERWISE AWARE OF ANY SUCH PURPOSE), AND (III) WARRANTIES OF NONINFRINGEMENT OR CONDITION OF TITLE. CUSTOMER ACKNOWLEDGES AND AGREES THAT CUSTOMER HAS RELIED ON NO WARRANTIES.\n\n8. Indemnification. Customer will indemnify, defend and hold Cloudera and its directors, officers, employees, suppliers, consultants, contractors, and agents (\"Cloudera Indemnitees\") harmless from and against any and all actual or threatened suits, actions, proceedings (at law or in equity), claims (groundless or otherwise), damages, payments, deficiencies, fines, judgments, settlements, liabilities, losses, costs and expenses (including, but not limited to, reasonable attorney fees, costs, penalties, interest and disbursements) resulting from any claim (including third-party claims), suit, action, or proceeding against any Cloudera Indemnitees, whether successful or not, caused by, arising out of, resulting from, attributable to or in any way incidental to:\n(a) any breach of this Agreement (including, but not limited to, any breach of any of Customer's representations, warranties or covenants);\n(b) the negligence or willful misconduct of Customer; or\n(c) the data and information used in connection with or generated by the use of the Products.\n\n9. Limitation of Liability. EXCEPT FOR ANY ACTS OF FRAUD, GROSS NEGLIGENCE OR WILLFUL MISCONDUCT, IN NO EVENT WILL: (A) CLOUDERA BE LIABLE TO CUSTOMER OR ANY THIRD-PARTY FOR ANY LOSS OF PROFITS, LOSS OF USE, LOSS OF REVENUE, LOSS OF GOODWILL, ANY INTERRUPTION OF BUSINESS, OR FOR ANY INDIRECT, SPECIAL, INCIDENTAL, EXEMPLARY, PUNITIVE OR CONSEQUENTIAL DAMAGES OF ANY KIND ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT OR THE PRODUCTS, REGARDLESS OF THE FORM OF ACTION, WHETHER IN CONTRACT, TORT, STRICT LIABILITY OR OTHERWISE, EVEN IF CLOUDERA HAS BEEN ADVISED OR IS OTHERWISE AWARE OF THE POSSIBILITY OF SUCH DAMAGES; AND (B) CLOUDERA's TOTAL LIABILITY ARISING OUT OF OR RELATED TO THIS AGREEMENT EXCEED THE AGGREGATE OF THE AMOUNTS PAID OR PAYABLE TO CLOUDERA, IF ANY, UNDER THIS AGREEMENT. MULTIPLE CLAIMS WILL NOT EXPAND THIS LIMITATION.\n\n10. Third-Party Suppliers. The Product may include software or other code distributed under license from third-party suppliers. Customer acknowledges that such third-party suppliers disclaim and make no representation or warranty with respect to the Products or any portion thereof and assume no liability for any claim that may arise with respect to the Products or Customer's use or inability to use the same.\n\n11. Google Analytics. To improve the product and gather feedback pro-actively from users, Google Analytics will be enabled by default in the product. Users have the option to disable this feature via the 'Administration -> Properties' settings in the product. Link to Google Analytics Terms of Service: http://www.google.com/analytics/terms/us.html\n\n12. Reporting. Customer acknowledges that the product contains a diagnostic functionality as its default configuration. The diagnostic function collects configuration files, node count, software versions, log files and other information regarding your environment, and reports that information to Cloudera in order for Cloudera to proactively diagnose any potential issues in the product. The diagnostic function may be modified by Customer in order to disable regular automatic reporting or to report only on filing of a support ticket.\n\n13. Termination. The term of this Agreement commences on the Effective Date and continues unless terminated for Customer's breach of any material term herein. Notwithstanding any terms to the contrary in this Agreement, in the event of a breach of Sections 3, 4 or 6, Cloudera may immediately terminate this Agreement. Upon expiration or termination of this Agreement: (a) all rights granted to Customer under this Agreement will immediately cease; and (b) Customer will promptly provide Cloudera with all Confidential Information (including, but not limited to the Products) then in its possession or destroy all copies of such Confidential Information, at Cloudera's sole discretion and direction. Notwithstanding any terms to the contrary in this Agreement, this sentence and the following Sections will survive any termination or expiration of this Agreement: 4, 6, 7, 8, 9, 10, 13 and 15.\n\n14. In the event that Customer uses the functionality in the Product for the purposes of downloading and installing any Cloudera-provided public beta software, such beta software will be subject either to the Apache 2 license, or to the terms and conditions of the Public Beta License located here: (http://ccp.cloudera.com/display/SUPPORT/CLOUDERA+PUBLIC+BETA+AGREEMENT) as applicable.\n\n15. Miscellaneous. This Agreement will be governed by and construed in accordance with the laws of the State of California applicable to agreements made and to be entirely performed within the State of California, without resort to its conflict of law provisions. The parties agree that any action at law or in equity arising out of or relating to this Agreement will be filed only in the state and federal courts located in Santa Clara County, and the parties hereby irrevocably and unconditionally consent and submit to the exclusive jurisdiction of such courts over any suit, action or proceeding arising out of this Agy. Upon such determination that any provision is invalid, illegal, or incapable of being enforced, the parties will negotiate in good faith to modify this Agreement so as to effect the original intent of the parties as closely as possible in an acceptable manner to the end that the transactions contemplated hereby are fulfilled. Except for payments due under this Agreement, neither party will be responsible for any failure to perform or delay attributable in whole or in part to any cause beyond its reasonable control, including but not limited to acts of God (fire, storm, floods, earthquakes, etc.), civil disturbances, disruption of telecommunications, disruption of power or other essential services, interruption or termination of service by any service providers being used by Cloudera to link its servers to the Internet, labor disturbances, vandalism, cable cut, computer viruses or other similar occurrences, or any malicious or unlawful acts of any third-party (each a \"Force Majeure Event\"). In the event of any such delay the date of delivery will be deferred for a period equal to the time lost by reason of the delay. Any notice or communication required or permitted to be given hereunder must be in writing signed or authorized by the party giving notice, and may be delivered by hand, deposited with an overnight courier, sent by confirmed email, confirmed facsimile or mailed by registered or certified mail, return receipt requested, postage prepaid, in each case to the address below or at such other address as may hereafter be furnished in accordance with this Section. No modification, addition or deletion, or waiver of any rights under this Agreement will be binding on a party unless made in an agreement clearly understood by the parties to be a modification or waiver and signed by a duly authorized representative of each party. No failure or delay (in whole or in part) on the part of a party to exercise any right or remedy hereunder will operate as a waiver thereof or effect any other right or remedy. All rights and remedies hereunder are cumulative and are not exclusive of any other rights or remedies provided hereunder or by law. The waiver of one breach or default or any delay in exercising any rights will not constitute a waiver of any subsequent breach or default.", + "json": "cloudera-express.json", + "yaml": "cloudera-express.yml", + "html": "cloudera-express.html", + "license": "cloudera-express.LICENSE" + }, + { + "license_key": "cmigemo", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cmigemo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "THE PERMISSION CONDITION ABOUT USING C/Migemo AND Migemo DLL\n\n Since: 16-Dec-2001\n Version 1.0\n Author: MURAOKA Taro (KoRoN)\n Last Change: 16-Dec-2003\n\n Translated into English by:\n Translator: Mamoru Tasaka \n Version 1.0-1\n Date: Apr, 10 2007\n\nTHE DEFINITION OF TERMS\nThe meaning of each term is defined as below:\n\nThis software: C/Migemo and Migemo DLL\n (including binary form and source codes, but\n excluding dictionary data).\nMalfunction: The behavior which differs from which is\n documented or which is not documented.\nManager: Those who own this software (who are\n the developers or the copyright owners of this\n software). At the time this copyright is\n written, it is Taro Muraoka.\n \nUser: Those who use or used this software.\nothers: Those who are not managers or users. Especially,\n the developers and the copyright owner of \n the dictionaries for this software are included\n into \"others\".\n\nTHE MAIN RULE\nThose who agreed with the following conditions may use this \nsoftware. Those who won't agree with them should stop using \nthis software and should remove the files related to this software \nfrom the memory media they are using.\n\nTHE CONDITIONS IMPOSED ON MANAGERS\nThe managers own the following rights related to this software.\n - the right to modify this software\n - the right to distribute this software\n - the right to let this software used\n - the right to devolve the part or the whole of the rights\n related to this software\n\nThe managers have a duty to resolve malfunctions of this software.\n\nThe managers have no responsibility for any damages the users\nmay cause and may sustain.\n\nTHE CONDITIONS IMPOSED ON USERS\nA user has the following duties on using this software\n - The duty to pay a fee to the developers based on the \n consideration regulation described below.\n - To protect the rights of the managers\n - To protect the rights of others.\n\nA user has a right to use this software for any purpose\nprovided the usage won't violate any other conditions.\n\nTHE CONSIDERATION REGULATION\nThe consideration regulation of this software is defined as\nbelow.\n - zero yen\n\nTHE MAIN RULE ENDS HERE\nIf you cannot agree with the conditions above, please\nstop using this software.", + "json": "cmigemo.json", + "yaml": "cmigemo.yml", + "html": "cmigemo.html", + "license": "cmigemo.LICENSE" + }, + { + "license_key": "cmr-no", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Permission to use, copy, modify, distribute and sell this software\nand its documentation for any purpose is hereby granted without fee,\nprovided that the above copyright notice appear in all copies and\nthat both that copyright notice and this permission notice appear\nin supporting documentation. Christian Michelsen Research AS\nmakes no representations about the suitability of this software for\nany purpose. It is provided \"as is\" without express or implied warranty.", + "json": "cmr-no.json", + "yaml": "cmr-no.yml", + "html": "cmr-no.html", + "license": "cmr-no.LICENSE" + }, + { + "license_key": "cmu-computing-services", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cmu-computing-services", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer. \n\n2. Redistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in\nthe documentation and/or other materials provided with the\ndistribution.\n\n3. The name \"Carnegie Mellon University\" must not be used to\nendorse or promote products derived from this software without\nprior written permission. For permission or any legal\ndetails, please contact \n Office of Technology Transfer\n Carnegie Mellon University\n 5000 Forbes Avenue\n Pittsburgh, PA 15213-3890\n (412) 268-4387, fax: (412) 268-7395\n tech-transfer@andrew.cmu.edu\n\n4. Redistributions of any form whatsoever must retain the following\nacknowledgment:\n\"This product includes software developed by Computing Services\nat Carnegie Mellon University (http://www.cmu.edu/computing/).\"\n\nCARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO\nTHIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE\nFOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN\nAN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING\nOUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "cmu-computing-services.json", + "yaml": "cmu-computing-services.yml", + "html": "cmu-computing-services.html", + "license": "cmu-computing-services.LICENSE" + }, + { + "license_key": "cmu-mit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cmu-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software and\nits documentation is hereby granted (including for commercial or\nfor-profit use), provided that both the copyright notice and this\npermission notice appear in all copies of the software, derivative\nworks, or modified versions, and any portions thereof.\n\nTHIS SOFTWARE IS EXPERIMENTAL AND IS KNOWN TO HAVE BUGS, SOME OF\nWHICH MAY HAVE SERIOUS CONSEQUENCES. CARNEGIE MELLON PROVIDES THIS\nSOFTWARE IN ITS ``AS IS'' CONDITION, AND ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\nOF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\nUSE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGE.\n\nCarnegie Mellon encourages (but does not require) users of this\nsoftware to return any improvements or extensions that they make,\nand to grant Carnegie Mellon the rights to redistribute these\nchanges without encumbrance.", + "json": "cmu-mit.json", + "yaml": "cmu-mit.yml", + "html": "cmu-mit.html", + "license": "cmu-mit.LICENSE" + }, + { + "license_key": "cmu-simple", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cmu-simple", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software and its\ndocumentation is hereby granted, provided that the above copyright\nnotice appears in all copies. This software is provided without any\nwarranty, express or implied.", + "json": "cmu-simple.json", + "yaml": "cmu-simple.yml", + "html": "cmu-simple.html", + "license": "cmu-simple.LICENSE" + }, + { + "license_key": "cmu-template", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cmu-template", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify and distribute this software and its\ndocumentation is hereby granted, provided that both the copyright notice and\nthis permission notice appear in all copies of the software, derivative works\nor modified versions, and any portions thereof, and that both notices appear\nin supporting documentation.\n\nCOPYRIGHT HOLDER ALLOWS FREE USE OF THIS SOFTWARE IN ITS \"AS IS\" CONDITION.\nCOPYRIGHT HOLDER DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES\nWHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.", + "json": "cmu-template.json", + "yaml": "cmu-template.yml", + "html": "cmu-template.html", + "license": "cmu-template.LICENSE" + }, + { + "license_key": "cmu-uc", + "category": "Permissive", + "spdx_license_key": "MIT-CMU", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify and distribute this software and its\ndocumentation for any purpose and without fee is hereby granted, provided that\nthe above copyright notice appears in all copies and that both that copyright\nnotice and this permission notice appear in supporting documentation, and that\nthe name of CMU and The Regents of the University of California not be used in\nadvertising or publicity pertaining to distribution of the software without\nspecific written permission.\n\nCMU AND THE REGENTS OF THE UNIVERSITY OF CALIFORNIA DISCLAIM ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL CMU OR THE REGENTS OF THE UNIVERSITY OF CALIFORNIA BE\nLIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM THE LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\nOF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN\nCONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "cmu-uc.json", + "yaml": "cmu-uc.yml", + "html": "cmu-uc.html", + "license": "cmu-uc.LICENSE" + }, + { + "license_key": "cncf-corporate-cla-1.0", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-cncf-corporate-cla-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Cloud\u00a0Native\u00a0Computing\u00a0Foundation\nA\u00a0project\u00a0of\u00a0The\u00a0Linux\u00a0Foundation\nSoftware\u00a0Grant\u00a0and\u00a0Corporate\u00a0Contributor\u00a0License\u00a0Agreement\u00a0(\"Agreement\")\u00a0v1.0\n\nThank\u00a0you\u00a0for\u00a0your\u00a0interest\u00a0in\u00a0the\u00a0Cloud\u00a0Native\u00a0Computing\u00a0Foundation\u00a0project\u00a0(\u201cCNCF\u201d)\u00a0of\u00a0The\nLinux\u00a0Foundation\u00a0(the\u00a0\"Foundation\").\u00a0In\u00a0order\u00a0to\u00a0clarify\u00a0the\u00a0intellectual\u00a0property\u00a0license\u00a0granted\nwith\u00a0Contributions\u00a0from\u00a0any\u00a0person\u00a0or\u00a0entity,\u00a0the\u00a0Foundation\u00a0must\u00a0have\u00a0a\u00a0Contributor\u00a0License\nAgreement\u00a0(CLA)\u00a0on\u00a0file\u00a0that\u00a0has\u00a0been\u00a0signed\u00a0by\u00a0each\u00a0Contributor,\u00a0indicating\u00a0agreement\u00a0to\u00a0the\nlicense\u00a0terms\u00a0below.\u00a0This\u00a0license\u00a0is\u00a0for\u00a0your\u00a0protection\u00a0as\u00a0a\u00a0Contributor\u00a0as\u00a0well\u00a0as\u00a0the\u00a0protection\nof\u00a0CNCF,\u00a0the\u00a0Foundation\u00a0and\u00a0its\u00a0users\u037e\u00a0it\u00a0does\u00a0not\u00a0change\u00a0your\u00a0rights\u00a0to\u00a0use\u00a0your\u00a0own\nContributions\u00a0for\u00a0any\u00a0other\u00a0purpose.\n\nThis\u00a0version\u00a0of\u00a0the\u00a0Agreement\u00a0allows\u00a0an\u00a0entity\u00a0(the\u00a0\"Corporation\")\u00a0to\u00a0submit\u00a0Contributions\u00a0to\u00a0the\nFoundation,\u00a0to\u00a0authorize\u00a0Contributions\u00a0submitted\u00a0by\u00a0its\u00a0designated\u00a0employees\u00a0to\u00a0the\nFoundation,\u00a0and\u00a0to\u00a0grant\u00a0copyright\u00a0and\u00a0patent\u00a0licenses\u00a0thereto.\n\nIf\u00a0you\u00a0have\u00a0not\u00a0already\u00a0done\u00a0so,\u00a0please\u00a0complete\u00a0and\u00a0sign,\u00a0then\u00a0scan\u00a0and\u00a0email\u00a0a\u00a0PDF\u00a0file\u00a0of\nthis\u00a0Agreement\u00a0to\u00a0\u200bcla@cncf.io\u200b\nIf\u00a0necessary,\u00a0send\u00a0an\u00a0original\u00a0signed\u00a0Agreement\u00a0to\u00a0The\u00a0Linux\nFoundation,\u00a01\u00a0Letterman\u00a0Drive,\u00a0Building\u00a0D,\u00a0Suite\u00a0D4700,\u00a0San\u00a0Francisco\u00a0CA\u00a094129,\u00a0U.S.A.\nPlease\u00a0read\u00a0this\u00a0document\u00a0carefully\u00a0before\u00a0signing\u00a0and\u00a0keep\u00a0a\u00a0copy\u00a0for\u00a0your\u00a0records.\n\n\u00a0Corporation\u00a0name:\u00a0________________________________________________\n\u00a0Corporation\u00a0address:\u00a0________________________________________________\n\u00a0________________________________________________\n\u00a0________________________________________________\n\n\u00a0Point\u00a0of\u00a0Contact:\u00a0________________________________________________\n\u00a0E\u00adMail:\u00a0________________________________________________\n\u00a0Telephone:\u00a0_____________________\n\nYou\u00a0accept\u00a0and\u00a0agree\u00a0to\u00a0the\u00a0following\u00a0terms\u00a0and\u00a0conditions\u00a0for\u00a0Your\u00a0present\u00a0and\u00a0future\nContributions\u00a0submitted\u00a0to\u00a0the\u00a0Foundation.\u00a0In\u00a0return,\u00a0the\u00a0Foundation\u00a0shall\u00a0not\u00a0use\u00a0Your\nContributions\u00a0in\u00a0a\u00a0way\u00a0that\u00a0is\u00a0contrary\u00a0to\u00a0the\u00a0public\u00a0benefit\u00a0or\u00a0inconsistent\u00a0with\u00a0its\u00a0nonprofit\nstatus\u00a0and\u00a0bylaws\u00a0in\u00a0effect\u00a0at\u00a0the\u00a0time\u00a0of\u00a0the\u00a0Contribution.\u00a0Except\u00a0for\u00a0the\u00a0license\u00a0granted\u00a0herein\nto\u00a0the\u00a0Foundation\u00a0and\u00a0recipients\u00a0of\u00a0software\u00a0distributed\u00a0by\u00a0the\u00a0Foundation,\u00a0You\u00a0reserve\u00a0all\u00a0right,\ntitle,\u00a0and\u00a0interest\u00a0in\u00a0and\u00a0to\u00a0Your\u00a0Contributions.\n\n\u00a01.\u00a0Definitions.\n\n\u00a0\"You\"\u00a0(or\u00a0\"Your\")\u00a0shall\u00a0mean\u00a0the\u00a0copyright\u00a0owner\u00a0or\u00a0legal\u00a0entity\u00a0authorized\u00a0by\u00a0the\u00a0copyright\nowner\u00a0that\u00a0is\u00a0making\u00a0this\u00a0Agreement\u00a0with\u00a0the\u00a0Foundation.\u00a0For\u00a0legal\u00a0entities,\u00a0the\u00a0entity\u00a0making\u00a0a\nContribution\u00a0and\u00a0all\u00a0other\u00a0entities\u00a0that\u00a0control,\u00a0are\u00a0controlled\u00a0by,\u00a0or\u00a0are\u00a0under\u00a0common\u00a0control\nwith\u00a0that\u00a0entity\u00a0are\u00a0considered\u00a0to\u00a0be\u00a0a\u00a0single\u00a0Contributor.\u00a0For\u00a0the\u00a0purposes\u00a0of\u00a0this\u00a0definition,\n\"control\"\u00a0means\u00a0(i)\u00a0the\u00a0power,\u00a0direct\u00a0or\u00a0indirect,\u00a0to\u00a0cause\u00a0the\u00a0direction\u00a0or\u00a0management\u00a0of\u00a0such\nentity,\u00a0whether\u00a0by\u00a0contract\u00a0or\u00a0otherwise,\u00a0or\u00a0(ii)\u00a0ownership\u00a0of\u00a0fifty\u00a0percent\u00a0(50%)\u00a0or\u00a0more\u00a0of\u00a0the\noutstanding\u00a0shares,\u00a0or\u00a0(iii)\u00a0beneficial\u00a0ownership\u00a0of\u00a0such\u00a0entity.\n\n\u00a0\"Contribution\"\u00a0shall\u00a0mean\u00a0the\u00a0code,\u00a0documentation\u00a0or\u00a0other\u00a0original\u00a0works\u00a0of\u00a0authorship\nexpressly\u00a0identified\u00a0in\u00a0Schedule\u00a0B,\u00a0as\u00a0well\u00a0as\u00a0any\u00a0original\u00a0work\u00a0of\u00a0authorship,\u00a0including\u00a0any\nmodifications\u00a0or\u00a0additions\u00a0to\u00a0an\u00a0existing\u00a0work,\u00a0that\u00a0is\u00a0intentionally\u00a0submitted\u00a0by\u00a0You\u00a0to\u00a0the\nFoundation\u00a0for\u00a0inclusion\u00a0in,\u00a0or\u00a0documentation\u00a0of,\u00a0any\u00a0of\u00a0the\u00a0products\u00a0owned\u00a0or\u00a0managed\u00a0by\u00a0the\nFoundation\u00a0(the\u00a0\"Work\").\u00a0For\u00a0the\u00a0purposes\u00a0of\u00a0this\u00a0definition,\u00a0\"submitted\"\u00a0means\u00a0any\u00a0form\u00a0of\nelectronic,\u00a0verbal,\u00a0or\u00a0written\u00a0communication\u00a0sent\u00a0to\u00a0the\u00a0Foundation\u00a0or\u00a0its\u00a0representatives,\nincluding\u00a0but\u00a0not\u00a0limited\u00a0to\u00a0communication\u00a0on\u00a0electronic\u00a0mailing\u00a0lists,\u00a0source\u00a0code\u00a0control\nsystems,\u00a0and\u00a0issue\u00a0tracking\u00a0systems\u00a0that\u00a0are\u00a0managed\u00a0by,\u00a0or\u00a0on\u00a0behalf\u00a0of,\u00a0the\u00a0Foundation\u00a0for\nthe\u00a0purpose\u00a0of\u00a0discussing\u00a0and\u00a0improving\u00a0the\u00a0Work,\u00a0but\u00a0excluding\u00a0communication\u00a0that\u00a0is\nconspicuously\u00a0marked\u00a0or\u00a0otherwise\u00a0designated\u00a0in\u00a0writing\u00a0by\u00a0You\u00a0as\u00a0\"Not\u00a0a\u00a0Contribution.\"\n\n\u00a02.\u00a0Grant\u00a0of\u00a0Copyright\u00a0License.\u00a0Subject\u00a0to\u00a0the\u00a0terms\u00a0and\u00a0conditions\u00a0of\u00a0this\u00a0Agreement,\u00a0You\nhereby\u00a0grant\u00a0to\u00a0the\u00a0Foundation\u00a0and\u00a0to\u00a0recipients\u00a0of\u00a0software\u00a0distributed\u00a0by\u00a0the\u00a0Foundation\u00a0a\nperpetual,\u00a0worldwide,\u00a0non\u00adexclusive,\u00a0no\u00adcharge,\u00a0royalty\u00adfree,\u00a0irrevocable\u00a0copyright\u00a0license\u00a0to\nreproduce,\u00a0prepare\u00a0derivative\u00a0works\u00a0of,\u00a0publicly\u00a0display,\u00a0publicly\u00a0perform,\u00a0sublicense,\u00a0and\ndistribute\u00a0Your\u00a0Contributions\u00a0and\u00a0such\u00a0derivative\u00a0works.\n\n\u00a03.\u00a0Grant\u00a0of\u00a0Patent\u00a0License.\u00a0Subject\u00a0to\u00a0the\u00a0terms\u00a0and\u00a0conditions\u00a0of\u00a0this\u00a0Agreement,\u00a0You\u00a0hereby\ngrant\u00a0to\u00a0the\u00a0Foundation\u00a0and\u00a0to\u00a0recipients\u00a0of\u00a0software\u00a0distributed\u00a0by\u00a0the\u00a0Foundation\u00a0a\u00a0perpetual,\nworldwide,\u00a0non\u00adexclusive,\u00a0no\u00adcharge,\u00a0royalty\u00adfree,\u00a0irrevocable\u00a0(except\u00a0as\u00a0stated\u00a0in\u00a0this\u00a0section)\npatent\u00a0license\u00a0to\u00a0make,\u00a0have\u00a0made,\u00a0use,\u00a0offer\u00a0to\u00a0sell,\u00a0sell,\u00a0import,\u00a0and\u00a0otherwise\u00a0transfer\u00a0the\nWork,\u00a0where\u00a0such\u00a0license\u00a0applies\u00a0only\u00a0to\u00a0those\u00a0patent\u00a0claims\u00a0licensable\u00a0by\u00a0You\u00a0that\u00a0are\nnecessarily\u00a0infringed\u00a0by\u00a0Your\u00a0Contribution(s)\u00a0alone\u00a0or\u00a0by\u00a0combination\u00a0of\u00a0Your\u00a0Contribution(s)\nwith\u00a0the\u00a0Work\u00a0to\u00a0which\u00a0such\u00a0Contribution(s)\u00a0were\u00a0submitted.\u00a0If\u00a0any\u00a0entity\u00a0institutes\u00a0patent\nlitigation\u00a0against\u00a0You\u00a0or\u00a0any\u00a0other\u00a0entity\u00a0(including\u00a0a\u00a0cross\u00adclaim\u00a0or\u00a0counterclaim\u00a0in\u00a0a\u00a0lawsuit)\nalleging\u00a0that\u00a0your\u00a0Contribution,\u00a0or\u00a0the\u00a0Work\u00a0to\u00a0which\u00a0you\u00a0have\u00a0contributed,\u00a0constitutes\u00a0direct\u00a0or\ncontributory\u00a0patent\u00a0infringement,\u00a0then\u00a0any\u00a0patent\u00a0licenses\u00a0granted\u00a0to\u00a0that\u00a0entity\u00a0under\u00a0this\nAgreement\u00a0for\u00a0that\u00a0Contribution\u00a0or\u00a0Work\u00a0shall\u00a0terminate\u00a0as\u00a0of\u00a0the\u00a0date\u00a0such\u00a0litigation\u00a0is\u00a0filed.\n\n\u00a04.\u00a0You\u00a0represent\u00a0that\u00a0You\u00a0are\u00a0legally\u00a0entitled\u00a0to\u00a0grant\u00a0the\u00a0above\u00a0license.\u00a0You\u00a0represent\u00a0further\nthat\u00a0each\u00a0employee\u00a0of\u00a0the\u00a0Corporation\u00a0designated\u00a0on\u00a0Schedule\u00a0A\u00a0below\u00a0(or\u00a0in\u00a0a\u00a0subsequent\nwritten\u00a0modification\u00a0to\u00a0that\u00a0Schedule)\u00a0is\u00a0authorized\u00a0to\u00a0submit\u00a0Contributions\u00a0on\u00a0behalf\u00a0of\u00a0the\nCorporation.\n\n\u00a05.\u00a0You\u00a0represent\u00a0that\u00a0each\u00a0of\u00a0Your\u00a0Contributions\u00a0is\u00a0Your\u00a0original\u00a0creation\u00a0(see\u00a0section\u00a07\u00a0for\nsubmissions\u00a0on\u00a0behalf\u00a0of\u00a0others).\n\n\u00a06.\u00a0You\u00a0are\u00a0not\u00a0expected\u00a0to\u00a0provide\u00a0support\u00a0for\u00a0Your\u00a0Contributions,\u00a0except\u00a0to\u00a0the\u00a0extent\u00a0You\ndesire\u00a0to\u00a0provide\u00a0support.\u00a0You\u00a0may\u00a0provide\u00a0support\u00a0for\u00a0free,\u00a0for\u00a0a\u00a0fee,\u00a0or\u00a0not\u00a0at\u00a0all.\u00a0Unless\nrequired\u00a0by\u00a0applicable\u00a0law\u00a0or\u00a0agreed\u00a0to\u00a0in\u00a0writing,\u00a0You\u00a0provide\u00a0Your\u00a0Contributions\u00a0on\u00a0an\u00a0\"AS\u00a0IS\"\nBASIS,\u00a0WITHOUT\u00a0WARRANTIES\u00a0OR\u00a0CONDITIONS\u00a0OF\u00a0ANY\u00a0KIND,\u00a0either\u00a0express\u00a0or\u00a0implied,\nincluding,\u00a0without\u00a0limitation,\u00a0any\u00a0warranties\u00a0or\u00a0conditions\u00a0of\u00a0TITLE,\u00a0NON\u00adINFRINGEMENT,\nMERCHANTABILITY,\u00a0or\u00a0FITNESS\u00a0FOR\u00a0A\u00a0PARTICULAR\u00a0PURPOSE.\n\n\u00a07.\u00a0Should\u00a0You\u00a0wish\u00a0to\u00a0submit\u00a0work\u00a0that\u00a0is\u00a0not\u00a0Your\u00a0original\u00a0creation,\u00a0You\u00a0may\u00a0submit\u00a0it\u00a0to\u00a0the\nFoundation\u00a0separately\u00a0from\u00a0any\u00a0Contribution,\u00a0identifying\u00a0the\u00a0complete\u00a0details\u00a0of\u00a0its\u00a0source\u00a0and\nof\u00a0any\u00a0license\u00a0or\u00a0other\u00a0restriction\u00a0(including,\u00a0but\u00a0not\u00a0limited\u00a0to,\u00a0related\u00a0patents,\u00a0trademarks,\u00a0and\nlicense\u00a0agreements)\u00a0of\u00a0which\u00a0you\u00a0are\u00a0personally\u00a0aware,\u00a0and\u00a0conspicuously\u00a0marking\u00a0the\u00a0work\u00a0as\n\"Submitted\u00a0on\u00a0behalf\u00a0of\u00a0a\u00a0third\u00adparty:\u00a0[named\u00a0here]\".\n\n\u00a08.\u00a0It\u00a0is\u00a0your\u00a0responsibility\u00a0to\u00a0notify\u00a0the\u00a0Foundation\u00a0when\u00a0any\u00a0change\u00a0is\u00a0required\u00a0to\u00a0the\u00a0list\u00a0of\ndesignated\u00a0employees\u00a0authorized\u00a0to\u00a0submit\u00a0Contributions\u00a0on\u00a0behalf\u00a0of\u00a0the\u00a0Corporation,\u00a0or\u00a0to\u00a0the\nCorporation's\u00a0Point\u00a0of\u00a0Contact\u00a0with\u00a0the\u00a0Foundation.\n\n\n\nPlease\u00a0sign:\u00a0__________________________________\u00a0Date:\u00a0_______________\n\nTitle:\u00a0__________________________________\n\nCorporation:\u00a0__________________________________\n\n\nSchedule\u00a0A\n\nInitial\u00a0list\u00a0of\u00a0designated\u00a0employees.\u00a0NB:\u00a0authorization\u00a0is\u00a0not\u00a0tied\u00a0to\u00a0particular\u00a0Contributions.\nPlease\u00a0indicate\u00a0\u201cCLA\u00a0Manager\u201d\u00a0next\u00a0to\u00a0the\u00a0name\u00a0of\u00a0any\u00a0employees\u00a0listed\u00a0below\u00a0that\u00a0are\nauthorized\u00a0to\u00a0add\u00a0or\u00a0remove\u00a0designated\u00a0employees\u00a0from\u00a0this\u00a0list\u00a0in\u00a0the\u00a0future.\n\n\n\nSchedule\u00a0B\n\n[Identification\u00a0of\u00a0optional\u00a0concurrent\u00a0software\u00a0grant.\u00a0Would\u00a0be\u00a0left\u00a0blank\u00a0or\u00a0omitted\u00a0if\u00a0there\u00a0is\u00a0no\nconcurrent\u00a0software\u00a0grant.]", + "json": "cncf-corporate-cla-1.0.json", + "yaml": "cncf-corporate-cla-1.0.yml", + "html": "cncf-corporate-cla-1.0.html", + "license": "cncf-corporate-cla-1.0.LICENSE" + }, + { + "license_key": "cncf-individual-cla-1.0", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-cncf-individual-cla-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Cloud\u00a0Native\u00a0Computing\u00a0Foundation\nA\u00a0project\u00a0of\u00a0The\u00a0Linux\u00a0Foundation\nIndividual\u00a0Contributor\u00a0License\u00a0Agreement\u00a0(\"Agreement\")\u00a0v1.0\n\nThank\u00a0you\u00a0for\u00a0your\u00a0interest\u00a0in\u00a0the\u00a0Cloud\u00a0Native\u00a0Computing\u00a0Foundation\u00a0project\u00a0(\u201cCNCF\u201d)\u00a0of\u00a0The\nLinux\u00a0Foundation\u00a0(the\u00a0\"Foundation\").\u00a0In\u00a0order\u00a0to\u00a0clarify\u00a0the\u00a0intellectual\u00a0property\u00a0license\u00a0granted\nwith\u00a0Contributions\u00a0from\u00a0any\u00a0person\u00a0or\u00a0entity,\u00a0the\u00a0Foundation\u00a0must\u00a0have\u00a0a\u00a0Contributor\u00a0License\nAgreement\u00a0(\"CLA\")\u00a0on\u00a0file\u00a0that\u00a0has\u00a0been\u00a0signed\u00a0by\u00a0each\u00a0Contributor,\u00a0indicating\u00a0agreement\u00a0to\nthe\u00a0license\u00a0terms\u00a0below.\u00a0This\u00a0license\u00a0is\u00a0for\u00a0your\u00a0protection\u00a0as\u00a0a\u00a0Contributor\u00a0as\u00a0well\u00a0as\u00a0the\nprotection\u00a0of\u00a0CNCF,\u00a0the\u00a0Foundation\u00a0and\u00a0its\u00a0users\u037e\u00a0it\u00a0does\u00a0not\u00a0change\u00a0your\u00a0rights\u00a0to\u00a0use\u00a0your\nown\u00a0Contributions\u00a0for\u00a0any\u00a0other\u00a0purpose.\u00a0\n\nIf\u00a0you\u00a0have\u00a0not\u00a0already\u00a0done\u00a0so,\u00a0please\u00a0complete\u00a0and\u00a0sign,\u00a0then\u00a0scan\u00a0and\u00a0email\u00a0a\u00a0pdf\u00a0file\u00a0of\u00a0this\nAgreement\u00a0to\u00a0\u200bcla@cncf.io\u200b\nIf\u00a0necessary,\u00a0send\u00a0an\u00a0original\u00a0signed\u00a0Agreement\u00a0to\u00a0The\u00a0Linux\nFoundation,\u00a01\u00a0Letterman\u00a0Drive,\u00a0Building\u00a0D,\u00a0Suite\u00a0D4700,\u00a0San\u00a0Francisco\u00a0CA\u00a094129,\u00a0U.S.A.\nPlease\u00a0read\u00a0this\u00a0document\u00a0carefully\u00a0before\u00a0signing\u00a0and\u00a0keep\u00a0a\u00a0copy\u00a0for\u00a0your\u00a0records.\n\nFull\u00a0name:\u00a0______________________________________________________\nPublic\u00a0name:\u00a0_________________________________________\nMailing\u00a0Address:\u00a0________________________________________________\n\u00a0________________________________________________\nCountry:\u00a0______________________________________________________\nTelephone:\u00a0______________________________________________________\nE\u00adMail:\u00a0______________________________________________________\n\nYou\u00a0accept\u00a0and\u00a0agree\u00a0to\u00a0the\u00a0following\u00a0terms\u00a0and\u00a0conditions\u00a0for\u00a0Your\u00a0present\u00a0and\u00a0future\nContributions\u00a0submitted\u00a0to\u00a0the\u00a0Foundation.\u00a0In\u00a0return,\u00a0the\u00a0Foundation\u00a0shall\u00a0not\u00a0use\u00a0Your\nContributions\u00a0in\u00a0a\u00a0way\u00a0that\u00a0is\u00a0contrary\u00a0to\u00a0the\u00a0public\u00a0benefit\u00a0or\u00a0inconsistent\u00a0with\u00a0its\u00a0nonprofit\nstatus\u00a0and\u00a0bylaws\u00a0in\u00a0effect\u00a0at\u00a0the\u00a0time\u00a0of\u00a0the\u00a0Contribution.\u00a0Except\u00a0for\u00a0the\u00a0license\u00a0granted\u00a0herein\nto\u00a0the\u00a0Foundation\u00a0and\u00a0recipients\u00a0of\u00a0software\u00a0distributed\u00a0by\u00a0the\u00a0Foundation,\u00a0You\u00a0reserve\u00a0all\u00a0right,\ntitle,\u00a0and\u00a0interest\u00a0in\u00a0and\u00a0to\u00a0Your\u00a0Contributions.\n\n1.\u00a0Definitions.\n\n\"You\"\u00a0(or\u00a0\"Your\")\u00a0shall\u00a0mean\u00a0the\u00a0copyright\u00a0owner\u00a0or\u00a0legal\u00a0entity\u00a0authorized\u00a0by\u00a0the\u00a0copyright\nowner\u00a0that\u00a0is\u00a0making\u00a0this\u00a0Agreement\u00a0with\u00a0the\u00a0Foundation.\u00a0For\u00a0legal\u00a0entities,\u00a0the\u00a0entity\u00a0making\u00a0a\nContribution\u00a0and\u00a0all\u00a0other\u00a0entities\u00a0that\u00a0control,\u00a0are\u00a0controlled\u00a0by,\u00a0or\u00a0are\u00a0under\u00a0common\u00a0control\nwith\u00a0that\u00a0entity\u00a0are\u00a0considered\u00a0to\u00a0be\u00a0a\u00a0single\u00a0Contributor.\u00a0For\u00a0the\u00a0purposes\u00a0of\u00a0this\u00a0definition,\n\"control\"\u00a0means\u00a0(i)\u00a0the\u00a0power,\u00a0direct\u00a0or\u00a0indirect,\u00a0to\u00a0cause\u00a0the\u00a0direction\u00a0or\u00a0management\u00a0of\u00a0such\nentity,\u00a0whether\u00a0by\u00a0contract\u00a0or\u00a0otherwise,\u00a0or\u00a0(ii)\u00a0ownership\u00a0of\u00a0fifty\u00a0percent\u00a0(50%)\u00a0or\u00a0more\u00a0of\u00a0the\noutstanding\u00a0shares,\u00a0or\u00a0(iii)\u00a0beneficial\u00a0ownership\u00a0of\u00a0such\u00a0entity.\n\n\"Contribution\"\u00a0shall\u00a0mean\u00a0any\u00a0original\u00a0work\u00a0of\u00a0authorship,\u00a0including\u00a0any\u00a0modifications\u00a0or\nadditions\u00a0to\u00a0an\u00a0existing\u00a0work,\u00a0that\u00a0is\u00a0intentionally\u00a0submitted\u00a0by\u00a0You\u00a0to\u00a0the\u00a0Foundation\u00a0for\ninclusion\u00a0in,\u00a0or\u00a0documentation\u00a0of,\u00a0any\u00a0of\u00a0the\u00a0products\u00a0owned\u00a0or\u00a0managed\u00a0by\u00a0the\u00a0Foundation\u00a0(the\n\"Work\").\u00a0For\u00a0the\u00a0purposes\u00a0of\u00a0this\u00a0definition,\u00a0\"submitted\"\u00a0means\u00a0any\u00a0form\u00a0of\u00a0electronic,\u00a0verbal,\u00a0or\nwritten\u00a0communication\u00a0sent\u00a0to\u00a0the\u00a0Foundation\u00a0or\u00a0its\u00a0representatives,\u00a0including\u00a0but\u00a0not\u00a0limited\u00a0to\ncommunication\u00a0on\u00a0electronic\u00a0mailing\u00a0lists,\u00a0source\u00a0code\u00a0control\u00a0systems,\u00a0and\u00a0issue\u00a0tracking\nsystems\u00a0that\u00a0are\u00a0managed\u00a0by,\u00a0or\u00a0on\u00a0behalf\u00a0of,\u00a0the\u00a0Foundation\u00a0for\u00a0the\u00a0purpose\u00a0of\u00a0discussing\u00a0and\nimproving\u00a0the\u00a0Work,\u00a0but\u00a0excluding\u00a0communication\u00a0that\u00a0is\u00a0conspicuously\u00a0marked\u00a0or\u00a0otherwise\ndesignated\u00a0in\u00a0writing\u00a0by\u00a0You\u00a0as\u00a0\"Not\u00a0a\u00a0Contribution.\"\n\n2.\u00a0Grant\u00a0of\u00a0Copyright\u00a0License.\u00a0Subject\u00a0to\u00a0the\u00a0terms\u00a0and\u00a0conditions\u00a0of\u00a0this\u00a0Agreement,\u00a0You\nhereby\u00a0grant\u00a0to\u00a0the\u00a0Foundation\u00a0and\u00a0to\u00a0recipients\u00a0of\u00a0software\u00a0distributed\u00a0by\u00a0the\u00a0Foundation\u00a0a\nperpetual,\u00a0worldwide,\u00a0non\u00adexclusive,\u00a0no\u00adcharge,\u00a0royalty\u00adfree,\u00a0irrevocable\u00a0copyright\u00a0license\u00a0to\nreproduce,\u00a0prepare\u00a0derivative\u00a0works\u00a0of,\u00a0publicly\u00a0display,\u00a0publicly\u00a0perform,\u00a0sublicense,\u00a0and\ndistribute\u00a0Your\u00a0Contributions\u00a0and\u00a0such\u00a0derivative\u00a0works.\n\n3.\u00a0Grant\u00a0of\u00a0Patent\u00a0License.\u00a0Subject\u00a0to\u00a0the\u00a0terms\u00a0and\u00a0conditions\u00a0of\u00a0this\u00a0Agreement,\u00a0You\u00a0hereby\ngrant\u00a0to\u00a0the\u00a0Foundation\u00a0and\u00a0to\u00a0recipients\u00a0of\u00a0software\u00a0distributed\u00a0by\u00a0the\u00a0Foundation\u00a0a\u00a0perpetual,\nworldwide,\u00a0non\u00adexclusive,\u00a0no\u00adcharge,\u00a0royalty\u00adfree,\u00a0irrevocable\u00a0(except\u00a0as\u00a0stated\u00a0in\u00a0this\u00a0section)\npatent\u00a0license\u00a0to\u00a0make,\u00a0have\u00a0made,\u00a0use,\u00a0offer\u00a0to\u00a0sell,\u00a0sell,\u00a0import,\u00a0and\u00a0otherwise\u00a0transfer\u00a0the\nWork,\u00a0where\u00a0such\u00a0license\u00a0applies\u00a0only\u00a0to\u00a0those\u00a0patent\u00a0claims\u00a0licensable\u00a0by\u00a0You\u00a0that\u00a0are\nnecessarily\u00a0infringed\u00a0by\u00a0Your\u00a0Contribution(s)\u00a0alone\u00a0or\u00a0by\u00a0combination\u00a0of\u00a0Your\u00a0Contribution(s)\nwith\u00a0the\u00a0Work\u00a0to\u00a0which\u00a0such\u00a0Contribution(s)\u00a0was\u00a0submitted.\u00a0If\u00a0any\u00a0entity\u00a0institutes\u00a0patent\nlitigation\u00a0against\u00a0You\u00a0or\u00a0any\u00a0other\u00a0entity\u00a0(including\u00a0a\u00a0cross\u00adclaim\u00a0or\u00a0counterclaim\u00a0in\u00a0a\u00a0lawsuit)\nalleging\u00a0that\u00a0your\u00a0Contribution,\u00a0or\u00a0the\u00a0Work\u00a0to\u00a0which\u00a0you\u00a0have\u00a0contributed,\u00a0constitutes\u00a0direct\u00a0or\ncontributory\u00a0patent\u00a0infringement,\u00a0then\u00a0any\u00a0patent\u00a0licenses\u00a0granted\u00a0to\u00a0that\u00a0entity\u00a0under\u00a0this\nAgreement\u00a0for\u00a0that\u00a0Contribution\u00a0or\u00a0Work\u00a0shall\u00a0terminate\u00a0as\u00a0of\u00a0the\u00a0date\u00a0such\u00a0litigation\u00a0is\u00a0filed.\n\n4.\u00a0You\u00a0represent\u00a0that\u00a0you\u00a0are\u00a0legally\u00a0entitled\u00a0to\u00a0grant\u00a0the\u00a0above\u00a0license.\u00a0If\u00a0your\u00a0employer(s)\u00a0has\nrights\u00a0to\u00a0intellectual\u00a0property\u00a0that\u00a0you\u00a0create\u00a0that\u00a0includes\u00a0your\u00a0Contributions,\u00a0you\u00a0represent\u00a0that\nyou\u00a0have\u00a0received\u00a0permission\u00a0to\u00a0make\u00a0Contributions\u00a0on\u00a0behalf\u00a0of\u00a0that\u00a0employer,\u00a0that\u00a0your\nemployer\u00a0has\u00a0waived\u00a0such\u00a0rights\u00a0for\u00a0your\u00a0Contributions\u00a0to\u00a0the\u00a0Foundation,\u00a0or\u00a0that\u00a0your\u00a0employer\nhas\u00a0executed\u00a0a\u00a0separate\u00a0Corporate\u00a0CLA\u00a0with\u00a0the\u00a0Foundation.\n\n5.\u00a0You\u00a0represent\u00a0that\u00a0each\u00a0of\u00a0Your\u00a0Contributions\u00a0is\u00a0Your\u00a0original\u00a0creation\u00a0(see\u00a0section\u00a07\u00a0for\nsubmissions\u00a0on\u00a0behalf\u00a0of\u00a0others).\u00a0You\u00a0represent\u00a0that\u00a0Your\u00a0Contribution\u00a0submissions\u00a0include\ncomplete\u00a0details\u00a0of\u00a0any\u00a0third\u00adparty\u00a0license\u00a0or\u00a0other\u00a0restriction\u00a0(including,\u00a0but\u00a0not\u00a0limited\u00a0to,\nrelated\u00a0patents\u00a0and\u00a0trademarks)\u00a0of\u00a0which\u00a0you\u00a0are\u00a0personally\u00a0aware\u00a0and\u00a0which\u00a0are\u00a0associated\nwith\u00a0any\u00a0part\u00a0of\u00a0Your\u00a0Contributions.\n\n6.\u00a0You\u00a0are\u00a0not\u00a0expected\u00a0to\u00a0provide\u00a0support\u00a0for\u00a0Your\u00a0Contributions,\u00a0except\u00a0to\u00a0the\u00a0extent\u00a0You\ndesire\u00a0to\u00a0provide\u00a0support.\u00a0You\u00a0may\u00a0provide\u00a0support\u00a0for\u00a0free,\u00a0for\u00a0a\u00a0fee,\u00a0or\u00a0not\u00a0at\u00a0all.\u00a0Unless\nrequired\u00a0by\u00a0applicable\u00a0law\u00a0or\u00a0agreed\u00a0to\u00a0in\u00a0writing,\u00a0You\u00a0provide\u00a0Your\u00a0Contributions\u00a0on\u00a0an\u00a0\"AS\u00a0IS\"\nBASIS,\u00a0WITHOUT\u00a0WARRANTIES\u00a0OR\u00a0CONDITIONS\u00a0OF\u00a0ANY\u00a0KIND,\u00a0either\u00a0express\u00a0or\u00a0implied,\nincluding,\u00a0without\u00a0limitation,\u00a0any\u00a0warranties\u00a0or\u00a0conditions\u00a0of\u00a0TITLE,\u00a0NON\u00adINFRINGEMENT,\nMERCHANTABILITY,\u00a0or\u00a0FITNESS\u00a0FOR\u00a0A\u00a0PARTICULAR\u00a0PURPOSE.\n\n7.\u00a0Should\u00a0You\u00a0wish\u00a0to\u00a0submit\u00a0work\u00a0that\u00a0is\u00a0not\u00a0Your\u00a0original\u00a0creation,\u00a0You\u00a0may\u00a0submit\u00a0it\u00a0to\u00a0the\nFoundation\u00a0separately\u00a0from\u00a0any\u00a0Contribution,\u00a0identifying\u00a0the\u00a0complete\u00a0details\u00a0of\u00a0its\u00a0source\u00a0and\nof\u00a0any\u00a0license\u00a0or\u00a0other\u00a0restriction\u00a0(including,\u00a0but\u00a0not\u00a0limited\u00a0to,\u00a0related\u00a0patents,\u00a0trademarks,\u00a0and\nlicense\u00a0agreements)\u00a0of\u00a0which\u00a0you\u00a0are\u00a0personally\u00a0aware,\u00a0and\u00a0conspicuously\u00a0marking\u00a0the\u00a0work\u00a0as\n\"Submitted\u00a0on\u00a0behalf\u00a0of\u00a0a\u00a0third\u00adparty:\u00a0[named\u00a0here]\".\n\n8.\u00a0You\u00a0agree\u00a0to\u00a0notify\u00a0the\u00a0Foundation\u00a0of\u00a0any\u00a0facts\u00a0or\u00a0circumstances\u00a0of\u00a0which\u00a0you\u00a0become\u00a0aware\nthat\u00a0would\u00a0make\u00a0these\u00a0representations\u00a0inaccurate\u00a0in\u00a0any\u00a0respect.\n\n\nPlease\u00a0sign:\u00a0__________________________________\u00a0Date:\u00a0________________", + "json": "cncf-individual-cla-1.0.json", + "yaml": "cncf-individual-cla-1.0.yml", + "html": "cncf-individual-cla-1.0.html", + "license": "cncf-individual-cla-1.0.LICENSE" + }, + { + "license_key": "cnri-jython", + "category": "Permissive", + "spdx_license_key": "CNRI-Jython", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "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 using JPython version 1.1.x in source or binary form and its associated documentation as provided herein (\"Software\").\u2028 \n\n2. Subject to the terms and conditions of this License Agreement, CNRI hereby grants Licensee a non-exclusive, non-transferable, 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 CNRI's License Agreement and CNRI's notice of copyright, i.e., \"Copyright (c) 1996-1999 Corporation for National Research Initiatives; All Rights Reserved\" are both retained in the Software, alone or in any derivative version prepared by Licensee.\u2028Alternatively, in lieu of CNRI's License Agreement, Licensee may substitute the following text (omitting the quotes), provided, however, that such text is displayed prominently in the Software alone or in any derivative version prepared by Licensee: \"JPython (Version 1.1.x) is made available subject to the terms and conditions in CNRI's License Agreement. This Agreement may be located on the Internet using the following unique, persistent identifier (known as a handle): 1895.22/1006. The License may also be obtained from a proxy server on the Web using the following URL: http://hdl.handle.net/1895.22/1006.\"\u2028 \n\n3. In the event Licensee prepares a derivative work that is based on or incorporates the Software or any part thereof, and wants to make the derivative work available to the public as provided herein, then Licensee hereby agrees to indicate in any such work, in a prominently visible way, the nature of the modifications made to CNRI's Software.\u2028\t\n\n4. Licensee may not use CNRI trademarks or trade name, including JPython or CNRI, in a trademark sense to endorse or promote products or services of Licensee, or any third party. Licensee may use the mark JPython in connection with Licensee's derivative versions that are based on or incorporate the Software, but only in the form \"JPython-based ,\" or equivalent.\u2028 \n\n5. CNRI is making the Software 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 THE SOFTWARE WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.\u2028 \n\n6. CNRI SHALL NOT BE LIABLE TO LICENSEE OR 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. SOME STATES DO NOT ALLOW THE LIMITATION OR EXCLUSION OF LIABILITY SO THE ABOVE DISCLAIMER MAY NOT APPLY TO LICENSEE.\u2028 \n\n7. This License Agreement may be terminated by CNRI (i) immediately upon written notice from CNRI of any material breach by the Licensee, if the nature of the breach is such that it cannot be promptly remedied; or (ii) sixty (60) days following notice from CNRI to Licensee of a material remediable breach, if Licensee has not remedied such breach within that sixty-day period.\u2028 \n\n8. This License Agreement shall be governed by and interpreted in all respects by the law of the State of Virginia, excluding conflict of law provisions. Nothing in this Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee.\u2028 \n\n9. By clicking on the \"ACCEPT\" button where indicated, or by installing, copying or otherwise using the Software, Licensee agrees to be bound by the terms and conditions of this License Agreement.", + "json": "cnri-jython.json", + "yaml": "cnri-jython.yml", + "html": "cnri-jython.html", + "license": "cnri-jython.LICENSE" + }, + { + "license_key": "cnri-python-1.6", + "category": "Permissive", + "spdx_license_key": "CNRI-Python", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CNRI OPEN SOURCE LICENSE AGREEMENT\n\nIMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. BY CLICKING ON \"ACCEPT\" WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHERWISE USING PYTHON 1.6 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT.\n\n1. 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 software in source or binary form and its associated documentation, as released at the www.python.org Internet site on September 5, 2000 (\"Python 1.6\").\n\n2. 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 alone or in any derivative version, provided, however, that CNRI's License Agreement and CNRI's notice of copyright, i.e., \"Copyright (c) 1995-2000 Corporation for National Research Initiatives; All Rights Reserved\" are retained in Python 1.6 alone or in any derivative version prepared by\n\nLicensee. Alternately, in lieu of CNRI's License Agreement, Licensee may substitute the following text (omitting the quotes): \"Python 1.6 is made available subject to the terms and conditions in CNRI's License Agreement. This Agreement together with Python 1.6 may be located on the Internet using the following unique, persistent identifier (known as a handle): 1895.22/1012. This Agreement may also be obtained from a proxy server on the Internet using the following URL: http://hdl.handle.net/1895.22/1012\".\n\n3. In the event Licensee prepares a derivative work that is based on or incorporates Python 1.6 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.\n\n4. CNRI is making Python 1.6 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 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.\n\n5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 1.6 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n6. This License Agreement will automatically terminate upon a material breach of its terms and conditions.\n\n7. This License Agreement shall be governed by and interpreted in all respects by the law of the State of Virginia, excluding conflict of law provisions. 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.\n\n8. By clicking on the \"ACCEPT\" button where indicated, or by copying, installing or otherwise using Python 1.6, Licensee agrees to be bound by the terms and conditions of this License Agreement.", + "json": "cnri-python-1.6.json", + "yaml": "cnri-python-1.6.yml", + "html": "cnri-python-1.6.html", + "license": "cnri-python-1.6.LICENSE" + }, + { + "license_key": "cnri-python-1.6.1", + "category": "Permissive", + "spdx_license_key": "CNRI-Python-GPL-Compatible", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CNRI OPEN SOURCE GPL-COMPATIBLE LICENSE AGREEMENT \n\nIMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. \n\nBY CLICKING ON \"ACCEPT\" WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHERWISE USING PYTHON 1.6.1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT. \n\n1. 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. \n\n2. 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 \u00a9 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\". \n\n3. 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. \n\n4. 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. \n\n5. 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. \n\n6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. \n\n7. 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. \n\n8. 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. \n\nACCEPT", + "json": "cnri-python-1.6.1.json", + "yaml": "cnri-python-1.6.1.yml", + "html": "cnri-python-1.6.1.html", + "license": "cnri-python-1.6.1.LICENSE" + }, + { + "license_key": "cockroach", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cockroach", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CockroachDB Community License Agreement\n\nPlease read this CockroachDB Community License Agreement (the \"Agreement\")\ncarefully before using CockroachDB (as defined below), which is offered by\nCockroach Labs, Inc. or its affiliated Legal Entities (\"Cockroach Labs\").\n\nBy downloading CockroachDB or using it in any manner, You agree that You have\nread and agree to be bound by the terms of this Agreement.If You are accessing\nCockroachDB on behalf of a Legal Entity, You represent and warrant that You have\nthe authority to agree to these terms on its behalf and the right to bind that\nLegal Entity to this Agreement.Use of CockroachDB is expressly conditioned upon\nYour assent to all the terms of this Agreement, to the exclusion of all other\nterms.\n\n1. Definitions.In addition to other terms defined elsewhere in this Agreement,\nthe terms below have the following meanings.\n\n(a) \"CockroachDB\" shall mean the SQL database software provided by Cockroach\nLabs, including both CockroachDB Core and CockroachDB Enterprise editions, as\ndefined below.\n\n(b) \"CockroachDB Core\" shall mean the open source version of CockroachDB,\navailable free of charge at\n\nhttps://github.com/cockroachdb/cockroach\n\n(c) \"Cockroach Enterprise Edition\" shall mean the additional features made\navailable by Cockroach Labs, the use of which is subject to additional terms set\nout below.\n\n(d) \"Contribution\" shall mean any work of authorship, including the original\nversion of the Work and any modifications or additions to that Work or\nDerivative Works thereof, that is intentionally submitted Cockroach Labs for\ninclusion in the Work by the copyright owner or by an individual or Legal Entity\nauthorized to submit on behalf of the copyright owner.For the purposes of this\ndefinition, \"submitted\" means any form of electronic, verbal, or written\ncommunication sent to Cockroach Labs or its representatives, including but not\nlimited to communication on electronic mailing lists, source code control\nsystems, and issue tracking systems that are managed by, or on behalf of,\nCockroach Labs for the purpose of discussing and improving the Work, but\nexcluding communication that is conspicuously marked or otherwise designated in\nwriting by the copyright owner as \"Not a Contribution.\"\n\n(e) \"Contributor\" shall mean any copyright owner or individual or Legal\nEntity authorized by the copyright owner, other than Cockroach Labs, from whom\nCockroach Labs receives a Contribution that Cockroach Labs subsequently\nincorporates within the Work.\n\n(f) \"Derivative Works\" shall mean any work, whether in Source or Object\nform, that is based on (or derived from) the Work, such as a translation,\nabridgement, condensation, or any other recasting, transformation, or adaptation\nfor which the editorial revisions, annotations, elaborations, or other\nmodifications represent, as a whole, an original work of authorship. For the\npurposes of this License, Derivative Works shall not include works that remain\nseparable from, or merely link (or bind by name) to the interfaces of, the Work\nand Derivative Works thereof.\n\n(g) \"Legal Entity\" shall mean the union of the acting entity and all other\nentities that control, are controlled by, or are under common control with that\nentity.For the purposes of this definition, \"control\" means (i) the power,\ndirect or indirect, to cause the direction or management of such entity, whether\nby contract or otherwise, or (ii) ownership of fifty percent (50%) or more of\nthe outstanding shares, or (iii) beneficial ownership of such entity.\n\n(h) \"License\" shall mean the terms and conditions for use, reproduction, and\ndistribution of a Work as defined by this Agreement.\n\n(i) \"Licensor\" shall mean Cockroach Labs or a Contributor, as applicable.\n\n(j) \"Object\" form shall mean any form resulting from mechanical\ntransformation or translation of a Source form, including but not limited to\ncompiled object code, generated documentation, and conversions to other media\ntypes.\n\n(k) \"Source\" form shall mean the preferred form for making modifications,\nincluding but not limited to software source code, documentation source, and\nconfiguration files.\n\n(l) \"Third Party Works\" shall mean Works, including Contributions, and other\ntechnology owned by a person or Legal Entity other than Cockroach Labs, as\nindicated by a copyright notice that is included in or attached to such Works or\ntechnology.\n\n(m) \"Work\" shall mean the work of authorship, whether in Source or Object\nform, made available under a License, as indicated by a copyright notice that is\nincluded in or attached to the work.\n\n(n) \"You\" (or \"Your\") shall mean an individual or Legal Entity\nexercising permissions granted by this License.\n\n2. Licenses.\n\n(a) License to CockroachDB Core.The License for CockroachDB Core is the Apache\nLicense, Version 2.0 (\"Apache License\").The Apache License includes a grant\nof patent license, as well as redistribution rights that are contingent on\nseveral requirements.Please see\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nfor full terms.CockroachDB Core is a no-cost, entry-level license and as such,\ncontains the following disclaimers: NOTWITHSTANDING ANYTHING TO THE CONTRARY\nHEREIN, COCKROACHDB CORE IS PROVIDED \"AS IS\" AND \"AS AVAILABLE\", AND ALL\nEXPRESS OR IMPLIED WARRANTIES ARE EXCLUDED AND DISCLAIMED, INCLUDING WITHOUT\nLIMITATION THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\nPURPOSE, NON-INFRINGEMENT, AND ANY WARRANTIES ARISING BY STATUTE OR OTHERWISE IN\nLAW OR FROM COURSE OF DEALING, COURSE OF PERFORMANCE, OR USE IN TRADE.For\nclarity, the terms of this Agreement, other than the relevant definitions in\nSection 1 and this Section 2(a) do not apply to CockroachDB Core.\n\n(b) License to CockroachDB Enterprise Edition.\n\ni Grant of Copyright License: Subject to the terms of this Agreement, Licensor\nhereby grants to You a worldwide, non-exclusive, non-transferable limited\nlicense to reproduce, prepare Enterprise Derivative Works (as defined below) of,\npublicly display, publicly perform, sublicense, and distribute CockroachDB\nEnterprise Edition for Your business purposes, for so long as You are not in\nviolation of this Section 2(b) and are current on all payments required by\nSection 4 below.\n\nii Grant of Patent License: Subject to the terms of this Agreement, Licensor\nhereby grants to You a worldwide, non-exclusive, non-transferable limited patent\nlicense to make, have made, use, offer to sell, sell, import, and otherwise\ntransfer CockroachDB Enterprise Edition, where such license applies only to\nthose patent claims licensable by Licensor that are necessarily infringed by\ntheir Contribution(s) alone or by combination of their Contribution(s) with the\nWork to which such Contribution(s) was submitted.If You institute patent\nlitigation against any entity (including a cross-claim or counterclaim in a\nlawsuit) alleging that the Work or a Contribution incorporated within the Work\nconstitutes direct or contributory patent infringement, then any patent licenses\ngranted to You under this License for that Work shall terminate as of the date\nsuch litigation is filed.\n\niii License to Third Party Works:From time to time Cockroach Labs may use, or\nprovide You access to, Third Party Works in connection CockroachDB Enterprise\nEdition.You acknowledge and agree that in addition to this Agreement, Your use\nof Third Party Works is subject to all other terms and conditions set forth in\nthe License provided with or contained in such Third Party Works.Some Third\nParty Works may be licensed to You solely for use with CockroachDB Enterprise\nEdition under the terms of a third party License, or as otherwise notified by\nCockroach Labs, and not under the terms of this Agreement.You agree that the\nowners and third party licensors of Third Party Works are intended third party\nbeneficiaries to this Agreement.\n\n3. Support.From time to time, in its sole discretion, Cockroach Labs may offer\nprofessional services or support for CockroachDB, which may now or in the future\nbe subject to additional fees.\n\n4. Fees for CockroachDB Enterprise Edition or CockroachDB Support.\n\n(a) Fees.The License to CockroachDB Enterprise Edition is conditioned upon Your\npayment of the fees specified on\n\n/pricing/\n\nwhich You agree to pay to Cockroach Labs in accordance with the payment terms\nset out on that page.Any professional services or support for CockroachDB may\nalso be subject to Your payment of fees, which will be specified by Cockroach\nLabs when you sign up to receive such professional services or support.\nCockroach Labs reserves the right to change the fees at any time with prior\nwritten notice; for recurring fees, any such adjustments will take effect as of\nthe next pay period.\n\n(b) Overdue Payments and Taxes. Overdue payments are subject to a service charge\nequal to the lesser of 1.5% per month or the maximum legal interest rate allowed\nby law, and You shall pay all Cockroach Labs\u2019 reasonable costs of collection,\nincluding court costs and attorneys\u2019 fees.Fees are stated and payable in U.S.\ndollars and are exclusive of all sales, use, value added and similar taxes,\nduties, withholdings and other governmental assessments (but excluding taxes\nbased on Cockroach Labs\u2019 income) that may be levied on the transactions\ncontemplated by this Agreement in any jurisdiction, all of which are Your\nresponsibility unless you have provided Cockroach Labs with a valid tax-exempt\ncertificate.\n\n(c) Record-keeping and Audit.If fees for CockroachDB Enterprise Edition are\nbased on the number of cores or servers running on CockroachDB Enterprise\nEdition or another use-based unit of measurement, You must maintain complete and\naccurate records with respect Your use of CockroachDB Enterprise Edition and\nwill provide such records to Cockroach Labs for inspection or audit upon\nCockroach Labs\u2019 reasonable request.If an inspection or audit uncovers\nadditional usage by You for which fees are owed under this Agreement, then You\nshall pay for such additional usage at Cockroach Labs\u2019 then-current rates.\n\n5. Trial License.If You have signed up for a trial or evaluation of CockroachDB\nEnterprise Edition, Your License to CockroachDB Enterprise Edition is granted\nwithout charge for the trial or evaluation period specified when You signed up,\nor if no term was specified, for thirty (30) calendar days, provided that Your\nLicense is granted solely for purposes of Your internal evaluation of Cockroach\nEnterprise Edition during the trial or evaluation period (a \"Trial\nLicense\").You may not use CockroachDB Enterprise Edition under a Trial License\nmore than once in any twelve (12) month period.Cockroach Labs may revoke a Trial\nLicense at any time and for any reason.Sections 3, 4, 9 and 11 of this Agreement\ndo not apply to Trial Licenses.\n\n6. Redistribution.You may reproduce and distribute copies of the Work or\nDerivative Works thereof in any medium, with or without modifications, and in\nSource or Object form, provided that You meet the following conditions:\n\n(a) You must give any other recipients of the Work or Derivative Works a copy of\nthis License; and\n\n(b) You must cause any modified files to carry prominent notices stating that\nYou changed the files; and\n\n(c) You must retain, in the Source form of any Derivative Works that You\ndistribute, all copyright, patent, trademark, and attribution notices from the\nSource form of the Work, excluding those notices that do not pertain to any part\nof the Derivative Works; and\n\n(d) If the Work includes a \"NOTICE\" text file as part of its distribution,\nthen any Derivative Works that You distribute must include a readable copy of\nthe attribution notices contained within such NOTICE file, excluding those\nnotices that do not pertain to any part of the Derivative Works, in at least one\nof the following places: within a NOTICE text file distributed as part of the\nDerivative Works; within the Source form or documentation, if provided along\nwith the Derivative Works; or, within a display generated by the Derivative\nWorks, if and wherever such third-party notices normally appear.The contents of\nthe NOTICE file are for informational purposes only and do not modify the\nLicense.You may add Your own attribution notices within Derivative Works that\nYou distribute, alongside or as an addendum to the NOTICE text from the Work,\nprovided that such additional attribution notices cannot be construed as\nmodifying the License.\n\nYou may add Your own copyright statement to Your modifications and may provide\nadditional or different license terms and conditions for use, reproduction, or\ndistribution of Your modifications, or for any such Derivative Works as a whole,\nprovided Your use, reproduction, and distribution of the Work otherwise complies\nwith the conditions stated in this License.\n\n(e) Enterprise Derivative Works: Derivative Works of CockroachDB Enterprise\nEdition (\"Enterprise Derivative Works\") may be made, reproduced and\ndistributed in any medium, with or without modifications, in Source or Object\nform, provided that each Enterprise Derivative Work will be considered to\ninclude a License to CockroachDB Enterprise Edition and thus will be subject to\nthe payment of fees to Cockroach Labs by any user of the Enterprise Derivative\nWork.\n\n7. Submission of Contributions. Unless You explicitly state otherwise, any\nContribution intentionally submitted for inclusion in CockroachDB by You to\nCockroach Labs shall be under the terms and conditions of\n\nhttps://cla-assistant.io/cockroachdb/cockroach\n\n(which is based off of the Apache License), without any additional terms or\nconditions, payments of royalties or otherwise to Your benefit.Notwithstanding\nthe above, nothing herein shall supersede or modify the terms of any separate\nlicense agreement You may have executed with Cockroach Labs regarding such\nContributions.\n\n8. Trademarks.This License does not grant permission to use the trade names,\ntrademarks, service marks, or product names of Licensor, except as required for\nreasonable and customary use in describing the origin of the Work and\nreproducing the content of the NOTICE file.\n\n9. Limited Warranty.\n\n(a) Warranties.Cockroach Labs warrants to You that: (i) CockroachDB Enterprise\nEdition will materially perform in accordance with the applicable documentation\nfor ninety (90) days after initial delivery to You; and (ii) any professional\nservices performed by Cockroach Labs under this Agreement will be performed in a\nworkmanlike manner, in accordance with general industry standards.\n\n(b) Exclusions.Cockroach Labs\u2019 warranties in this Section 9 do not extend to\nproblems that result from: (i) Your failure to implement updates issued by\nCockroach Labs during the warranty period; (ii) any alterations or additions\n(including Enterprise Derivative Works and Contributions) to CockroachDB not\nperformed by or at the direction of Cockroach Labs; (iii) failures that are not\nreproducible by Cockroach Labs; (iv) operation of CockroachDB Enterprise Edition\nin violation of this Agreement or not in accordance with its documentation; (v)\nfailures caused by software, hardware or products not licensed or provided by\nCockroach Labs hereunder; or (vi) Third Party Works.\n\n(c) Remedies.In the event of a breach of a warranty under this Section 9,\nCockroach Labs will, at its discretion and cost, either repair, replace or\nre-perform the applicable Works or services or refund a portion of fees\npreviously paid to Cockroach Labs that are associated with the defective Works\nor services. This is Your exclusive remedy, and Cockroach Labs\u2019 sole\nliability, arising in connection with the limited warranties herein.\n\n10. Disclaimer of Warranty.Except as set out in Section 9, unless required by\napplicable law, Licensor provides the Work (and each Contributor provides its\nContributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, either express or implied, arising out of course of dealing, course of\nperformance, or usage in trade, including, without limitation, any warranties or\nconditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, CORRECTNESS,\nRELIABILITY, or FITNESS FOR A PARTICULAR PURPOSE, all of which are hereby\ndisclaimed.You are solely responsible for determining the appropriateness of\nusing or redistributing Works and assume any risks associated with Your exercise\nof permissions under the applicable License for such Works.\n\n11. Limited Indemnity.\n\n(a) Indemnity.Cockroach Labs will defend, indemnify and hold You harmless\nagainst any third party claims, liabilities or expenses incurred (including\nreasonable attorneys\u2019 fees), as well as amounts finally awarded in a\nsettlement or a non-appealable judgement by a court (\"Losses\"), to the\nextent arising from any claim or allegation by a third party that CockroachDB\nEnterprise Edition infringes or misappropriates a valid United States patent,\ncopyright or trade secret right of a third party; provided that You give\nCockroach Labs: (i) prompt written notice of any such claim or allegation; (ii)\nsole control of the defense and settlement thereof; and (iii) reasonable\ncooperation and assistance in such defense or settlement.If any Work within\nCockroachDB Enterprise Edition becomes or, in Cockroach Labs\u2019 opinion, is\nlikely to become, the subject of an injunction, Cockroach Labs may, at its\noption, (A) procure for You the right to continue using such Work, (B) replace\nor modify such Work so that it becomes non-infringing without substantially\ncompromising its functionality, or, if (A) and (B) are not commercially\npracticable, then (C) terminate Your license to the allegedly infringing Work\nand refund to You a prorated portion of the prepaid and unearned fees for such\ninfringing Work.The foregoing states the entire liability of Cockroach Labs with\nrespect to infringement of patents, copyrights, trade secrets or other\nintellectual property rights.\n\n(b) Exclusions.The foregoing obligations shall not apply to: (i) Works modified\nby any party other than Cockroach Labs (including Enterprise Derivative Works\nand Contributions), if the alleged infringement relates to such modification,\n(ii) Works combined or bundled with any products, processes or materials not\nprovided by Cockroach Labs where the alleged infringement relates to such\ncombination, (iii) use of a version of CockroachDB Enterprise Edition other than\nthe version that was current at the time of such use, as long as a\nnon-infringing version had been released, (iv) any Works created to Your\nspecifications, (v) infringement or misappropriation of any proprietary right in\nwhich You have an interest, or (vi) Third Party Works.You will defend, indemnify\nand hold Cockroach Labs harmless against any Losses arising from any such claim\nor allegation, subject to conditions reciprocal to those in Section 11(a).\n\n12. Limitation of Liability.In no event and under no legal or equitable theory,\nwhether in tort (including negligence), contract, or otherwise, unless required\nby applicable law (such as deliberate and grossly negligent acts), and\nnotwithstanding anything in this Agreement to the contrary, shall Licensor or\nany Contributor be liable to You for (i) any amounts in excess, in the\naggregate, of the fees paid by You to Cockroach Labs under this Agreement in the\ntwelve (12) months preceding the date the first cause of liability arose), or\n(ii) any indirect, special, incidental, punitive, exemplary, reliance, or\nconsequential damages of any character arising as a result of this Agreement or\nout of the use or inability to use the Work (including but not limited to\ndamages for loss of goodwill, profits, data or data use, work stoppage, computer\nfailure or malfunction, cost of procurement of substitute goods, technology or\nservices, or any and all other commercial damages or losses), even if such\nLicensor or Contributor has been advised of the possibility of such damages.\nTHESE LIMITATIONS SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL\nPURPOSE OF ANY LIMITED REMEDY.\n\n13. Accepting Warranty or Additional Liability.While redistributing Works or\nDerivative Works thereof, and without limiting your obligations under Section 6,\nYou may choose to offer, and charge a fee for, acceptance of support, warranty,\nindemnity, or other liability obligations and/or rights consistent with this\nLicense.However, in accepting such obligations, You may act only on Your own\nbehalf and on Your sole responsibility, not on behalf of any other Contributor,\nand only if You agree to indemnify, defend, and hold Cockroach Labs and each\nother Contributor harmless for any liability incurred by, or claims asserted\nagainst, such Contributor by reason of your accepting any such warranty or\nadditional liability.\n\n14. General.\n\n(a) Relationship of Parties.You and Cockroach Labs are independent contractors,\nand nothing herein shall be deemed to constitute either party as the agent or\nrepresentative of the other or both parties as joint venturers or partners for\nany purpose.\n\n(b) Export Control.You shall comply with the U.S. Foreign Corrupt Practices Act\nand all applicable export laws, restrictions and regulations of the U.S.\nDepartment of Commerce, and any other applicable U.S. and foreign authority.\n\n(c) Assignment.This Agreement and the rights and obligations herein may not be\nassigned or transferred, in whole or in part, by You without the prior written\nconsent of Cockroach Labs.Any assignment in violation of this provision is\nvoid.This Agreement shall be binding upon, and inure to the benefit of, the\nsuccessors and permitted assigns of the parties.\n\n(d) Governing Law.This Agreement shall be governed by and construed under the\nlaws of the State of New York and the United States without regard to conflicts\nof laws provisions thereof, and without regard to the Uniform Computer\nInformation Transactions Act.\n\n(e) Attorneys\u2019 Fees.In any action or proceeding to enforce rights under this\nAgreement, the prevailing party shall be entitled to recover its costs, expenses\nand attorneys\u2019 fees.\n\n(f) Severability.If any provision of this Agreement is held to be invalid,\nillegal or unenforceable in any respect, that provision shall be limited or\neliminated to the minimum extent necessary so that this Agreement otherwise\nremains in full force and effect and enforceable.\n\n(g) Entire Agreement; Waivers; Modification.This Agreement constitutes the\nentire agreement between the parties relating to the subject matter hereof and\nsupersedes all proposals, understandings, or discussions, whether written or\noral, relating to the subject matter of this Agreement and all past dealing or\nindustry custom. The failure of either party to enforce its rights under this\nAgreement at any time for any period shall not be construed as a waiver of such\nrights. No changes, modifications or waivers to this Agreement will be effective\nunless in writing and signed by both parties.", + "json": "cockroach.json", + "yaml": "cockroach.yml", + "html": "cockroach.html", + "license": "cockroach.LICENSE" + }, + { + "license_key": "cockroachdb-use-grant-for-bsl-1.1", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cockroachdb-use-grant-bsl-1.1", + "other_spdx_license_keys": [ + "LicenseRef-scancode-cockroachdb-use-grant-for-bsl-1.1" + ], + "is_exception": true, + "is_deprecated": false, + "text": "Parameters\nLicensor: Cockroach Labs, Inc.\nLicensed Work: CockroachDB 19.2\n The Licensed Work is (c) 2019 Cockroach Labs, Inc.\n\nAdditional Use Grant: You may make use of the Licensed Work, provided that\n you may not use the Licensed Work for a Database\n Service.\n\n A \u201cDatabase Service\u201d is a commercial offering that\n allows third parties (other than your employees and\n contractors) to access the functionality of the\n Licensed Work by creating tables whose schemas are\n controlled by such third parties.\n\nChange Date: 2022-10-01\n\nChange License: Apache License, Version 2.0\n\nFor information about alternative licensing arrangements for the Software,\nplease visit: https://cockroachlabs.com/\n\nNotice\n\nThe Business Source License (this document, or the \u201cLicense\u201d) is not an Open\nSource license. However, the Licensed Work will eventually be made available\nunder an Open Source License, as stated in this License.", + "json": "cockroachdb-use-grant-for-bsl-1.1.json", + "yaml": "cockroachdb-use-grant-for-bsl-1.1.yml", + "html": "cockroachdb-use-grant-for-bsl-1.1.html", + "license": "cockroachdb-use-grant-for-bsl-1.1.LICENSE" + }, + { + "license_key": "code-credit-license-1.0.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-code-credit-license-1.0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "# Code Credit License\n\nVersion 1.0.1\n\n## Purpose\n\nThis license gives everyone as much permission to work with\nthis software as possible, while protecting contributors\nfrom liability and requiring credit for their work.\n\n## Agreement\n\nIn order to receive this license, you have to agree\nto its rules. Those rules are both obligations under\nthat agreement and conditions to your license. Don't do\nanything with this software that triggers a rule you can't\nor won't follow.\n\n## Notices\n\nMake sure everyone who gets a copy of any part of\nthis software from you, with or without changes,\nalso gets the text of this license or a link to\n.\n\n## Give Credit\n\nYou must give this software and each contributor credit\nfor contributing to goods or services that you develop,\ntest, produce, or provide with the help of this software.\n\n## How to Give Credit\n\nIn general, you must give credit in such a way that others\ncan freely and readily find a written notice identifying\nthis software, by name, as a contribution to your goods\nor services, as well as each contributor, by name, as a\ncontributor to this software. You must not do anything\nto stop others from sharing, publishing, or using those\ncredits.\n\n## Conventions\n\nIf widespread convention dictates a particular way to\ngive credit for your kind of goods or services, such as\nby end credit for a film, citation for an academic paper,\nacknowledgment for a book, or billing for a show, then\nfollow that convention. For software provided to users to\nrun on their own computers, give credit in documentation,\nnotice files, and any \"about\" page or screen. For software\nprovided as a web service, give credit in `credits.txt`\naccording to .\n\n## Who to Credit\n\nIf contributors give their names or the name of this\nsoftware along with the software in a conventional way,\nsuch as in software package metadata or on an \"about\"\npage or screen, you may rely on the names they give that\nway to be accurate and complete. If contributors don't\ngive names that way, but include a link to a homepage\nfor this software, you must investigate that homepage for\nnames to credit. If contributors give neither names to\ncredit nor a link to a homepage, you do not have to do\nindependent research to find names to credit.\n\n## Declining Credit\n\nOn written request from a contributor, you must remove\ntheir name from the credits for your goods or services\ngoing forward. On written request from all credited\ncontributors to this software, you must do the same for\nthe name of this software.\n\n## Copyright\n\nEach contributor licenses you to do everything with this\nsoftware that would otherwise infringe that contributor's\ncopyright in it.\n\n## Patent\n\nEach contributor licenses you to do everything with this\nsoftware that would otherwise infringe any patent claims\nthey can license or become able to license.\n\n## Excuse\n\nIf anyone notifies you in writing that you have\nnot complied with [Notices](#notices) or [Give\nCredit](#give-credit), you can keep your license by\ntaking all practical steps to comply within thirty days\nafter the notice. If you do not do so, your license\nends immediately.\n\n## Reliability\n\nNo contributor can revoke this license.\n\n## No Liability\n\n***As far as the law allows, this software comes as is,\nwithout any warranty or condition, and no contributor\nwill be liable to anyone for any damages related to this\nsoftware or this license, under any kind of legal claim.***", + "json": "code-credit-license-1.0.1.json", + "yaml": "code-credit-license-1.0.1.yml", + "html": "code-credit-license-1.0.1.html", + "license": "code-credit-license-1.0.1.LICENSE" + }, + { + "license_key": "codeguru-permissions", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-codeguru-permissions", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permissions\n\nAs you know, this site is a valuable resource for the developer community.\nPlease note, however, that to avoid legal complications, we need to obtain your\npermission to use any computer code and any related materials (\"resources\") that\nyou are providing to us. Accordingly, by submitting any such resource to\nCodeGuru, you grant to QuinStreet a nonexclusive, worldwide, perpetual license\nto reproduce, distribute, adapt, perform, display, and sublicense the submitted\nresource (in both object and source code formats, as well as on and off the\nWeb), and you acknowledge that you have the authority to grant such rights to\nQuinStreet.\n\nBy submitting the resource, you also grant your article's readers the permission\nto use any source code in the resource for commercial or noncommercial software.\nPLEASE NOTE THAT YOU RETAIN OWNERSHIP OF ANY COPYRIGHTS IN ANY RESOURCES\nSUBMITTED!\n\nALSO, IN MAKING THE RESOURCE AVAILABLE TO OTHER SITE VISITORS FOR DOWNLOADING,\nQUINSTREET WILL INFORM SUCH OTHER VISITORS THAT, ALTHOUGH THEY MAY DOWNLOAD ANY\nRESOURCES FOR COMMERCIAL OR NONCOMMERCIAL USES, THEY MAY NOT REPUBLISH THE\nSOURCE CODE SO THAT IT IS ACCESSIBLE TO THE PUBLIC WITHOUT FIRST OBTAINING THE\nCOPYRIGHT OWNER'S PERMISSION.\n\nFor CodeGuru's standard Legal Notices, Licensing, Reprints & Permissions, and\nPrivacy Policy, see the links at the bottom of any CodeGuru page.", + "json": "codeguru-permissions.json", + "yaml": "codeguru-permissions.yml", + "html": "codeguru-permissions.html", + "license": "codeguru-permissions.LICENSE" + }, + { + "license_key": "codesourcery-2004", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-codesourcery-2004", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this file\nfor any purpose is hereby granted without fee, provided that\nthe above copyright notice and this notice appears in all\ncopies.\n\nThis file is distributed WITHOUT ANY WARRANTY; without even the implied\nwarranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.", + "json": "codesourcery-2004.json", + "yaml": "codesourcery-2004.yml", + "html": "codesourcery-2004.html", + "license": "codesourcery-2004.LICENSE" + }, + { + "license_key": "codexia", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-codexia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "By Mike Ryan (mike@codexia.com)\nCopyright (c) 2000, portions (c) Allen Denver\n07.30.2000\n\nSome of the code based on Allen Denver's article \"Using the Performance Data Helper Library\"\n\nFree usage granted in all applications including commercial.\nDo NOT distribute without permission from me. I can be reached\nat mike@codexia.com, http://www.codexia.com\nPlease feel free to email me about this class.\n\nCompatibility:\nWindows 98, Windows NT 4.0 SP 3 (Dlls required), Windows 2000\n\nDevelopment Environ:\nVisual C++ 6.0\n\nLibraries / DLLs:\npdh.lib (linked in)\npdh.dll (provided with Windows 2000, must copy in for NT 4.0)", + "json": "codexia.json", + "yaml": "codexia.yml", + "html": "codexia.html", + "license": "codexia.LICENSE" + }, + { + "license_key": "cognitive-web-osl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cognitive-web-osl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CognitiveWeb Open Source License\n\nVersion 1.1\n\nThis CognitiveWeb\u2122 Open Source License (the \"License\") applies to\nCognitiveWeb software products as well as any updates or maintenance\nreleases of that software (\"CognitiveWeb Products\") that are distributed\nby CognitiveWeb. (\"Licensor\"). Any CognitiveWeb Product licensed\npursuant to this License is a Licensed Product. Licensed Product, in\nits entirety, is protected by U.S. copyright law. This License\nidentifies the terms under which you may use, copy, distribute or modify\nLicensed Product.\n\nPreamble\n\nThis Preamble is intended to describe, in plain English, the nature and\nscope of this License. However, this Preamble is not a part of this\nlicense. The legal effect of this License is dependent only upon the\nterms of the License and not this Preamble. This License complies with\nthe Open Source Definition and has been approved by Open Source\nInitiative. Software distributed under this License may be marked as\n\"OSI Certified Open Source Software.\"\n\nThis License provides that:\n\n1. You may use, sell or give away the Licensed Product, alone or as\na component of an aggregate software distribution containing programs\nfrom several different sources. No royalty or other fee is required.\n\n2. Both Source Code and executable versions of the Licensed\nProduct, including Modifications made by previous Contributors, are\navailable for your use. (The terms \"Licensed Product,\" \"Modifications,\"\n\"Contributors\" and \"Source Code\" are defined in the License.)\n\n3. You are allowed to make Modifications to the Licensed Product,\nand you can create Derivative Works from it. (The term \"Derivative\nWorks\" is defined in the License.)\n\n4. By accepting the Licensed Product under the provisions of this\nLicense, you agree that any Modifications you make to the Licensed\nProduct and then distribute are governed by the provisions of this\nLicense. In particular, you must make the Source Code of your\nModifications available to others.\n\n5. You may use the Licensed Product for any purpose, but the\nLicensor is not providing you any warranty whatsoever, nor is the\nLicensor accepting any liability in the event that the Licensed Product\ndoesn't work properly or causes you any injury or damages.\n\n6. If you sublicense the Licensed Product or Derivative Works, you\nmay charge fees for warranty or support, or for accepting indemnity or\nliability obligations to your customers. You cannot charge for the\nSource Code.\n\n7. If you assert any patent claims against the Licensor relating to\nthe Licensed Product, or if you breach any terms of the License, your\nrights to the Licensed Product under this License automatically\nterminate. You may use this License to distribute your own Derivative\nWorks, in which case the provisions of this License will apply to your\nDerivative Works just as they do to the original Licensed Product.\nAlternatively, you may distribute your Derivative Works under any other\nOSI-approved Open Source license, or under a proprietary license of your\nchoice. If you use any license other than this License, however, you\nmust continue to fulfill the requirements of this License (including the\nprovisions relating to publishing the Source Code) for those portions of\nyour Derivative Works that consist of the Licensed Product, including\nthe files containing Modifications.\n\nNew versions of this License may be published from time to time. You\nmay choose to continue to use the license terms in this version of the\nLicense or those from the new version. However, only the Licensor has\nthe right to change the License terms as they apply to the Licensed\nProduct. This License relies on precise definitions for certain terms.\nThose terms are defined when they are first used, and the definitions\nare repeated for your convenience in a Glossary at the end of the\nLicense.\n\nLicense Terms\n\n1. Grant of License From Licensor. Licensor hereby grants you a\nworld-wide, royalty-free, non-exclusive license, subject to third party\nintellectual property claims, to do the following:\n\na. Use, reproduce, modify, display, perform, sublicense and\ndistribute any Modifications created by such Contributor or portions\nthereof, in both Source Code or as an executable program, either on an\nunmodified basis or as part of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled by\nContributor, to make, use, sell, offer for sale, have made, and/or\notherwise dispose of Modifications or portions thereof, but solely to\nthe extent that any such claim is necessary to enable you to make, use,\nsell, offer for sale, have made, and/or otherwise dispose of\nModifications or portions thereof or Derivative Works thereof.\n\n2. Grant of License to Modifications From Contributor. \"Modifications\"\nmeans any additions to or deletions from the substance or structure of\n(i) a file containing Licensed Product, or (ii) any new file that\ncontains any part of Licensed Product. Hereinafter in this License, the\nterm \"Licensed Product\" shall include all previous Modifications that\nyou receive from any Contributor. By application of the provisions in\nSection 4(a) below, each person or entity who created or contributed to\nthe creation of, and distributed, a Modification (a \"Contributor\")\nhereby grants you a world-wide, royalty-free, non-exclusive license,\nsubject to third party intellectual property claims, to do the\nfollowing:\n\na. Use, reproduce, modify, display, perform, sublicense and distribute\nany Modifications created by such Contributor or portions thereof, in\nboth Source Code or as an executable program, either on an unmodified\nbasis or as part of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled by\nContributor, to make, use, sell, offer for sale, have made, and/or\notherwise dispose of Modifications or portions thereof, but solely to\nthe extent that any such claim is necessary to enable you to make, use,\nsell, offer for sale, have made, and/or otherwise dispose of\nModifications or portions thereof or Derivative Works thereof.\n\n3. Exclusions From License Grant. Nothing in this License shall be\ndeemed to grant any rights to trademarks, copyrights, patents, trade\nsecrets or any other intellectual property of Licensor or any\nContributor except as expressly stated herein. No patent license is\ngranted separate from the Licensed Product, for code that you delete\nfrom the Licensed Product, or for combinations of the Licensed Product\nwith other software or hardware. No right is granted to the trademarks\nof Licensor or any Contributor even if such marks are included in the\nLicensed Product. Nothing in this License shall be interpreted to\nprohibit Licensor from licensing under different terms from this License\nany code that Licensor otherwise would have a right to license.\n\n4. Your Obligations Regarding Distribution. \n\na. Application of This License to Your Modifications. As an\nexpress condition for your use of the Licensed Product, you hereby agree\nthat any Modifications that you create or to which you contribute, and\nwhich you distribute, are governed by the terms of this License\nincluding, without limitation, Section 2. Any Modifications that you\ncreate or to which you contribute may be distributed only under the\nterms of this License or a future version of this License released under\nSection 7. You must include a copy of this License with every copy of\nthe Modifications you distribute. You agree not to offer or impose any\nterms on any Source Code or executable version of the Licensed Product\nor Modifications that alter or restrict the applicable version of this\nLicense or the recipients' rights hereunder. However, you may include an\nadditional document offering the additional rights described in Section\n4(e).\n\nb. Availability of Source Code. You must make available, under\nthe terms of this License, the Source Code of the Licensed Product and\nany Modifications that you distribute, either on the same media as you\ndistribute any executable or other form of the Licensed Product, or via\na mechanism generally accepted in the software development community for\nthe electronic transfer of data (an \"Electronic Distribution\nMechanism\"). The Source Code for any version of Licensed Product or\nModifications that you distribute must remain available for at least\ntwelve (12) months after the date it initially became available, or at\nleast six (6) months after a subsequent version of said Licensed Product\nor Modifications has been made available. You are responsible for\nensuring that the Source Code version remains available even if the\nElectronic Distribution Mechanism is maintained by a third party.\n\nc. Description of Modifications. You must cause any Modifications\nthat you create or to which you contribute, and which you distribute, to\ncontain a file documenting the additions, changes or deletions you made\nto create or contribute to those Modifications, and the dates of any\nsuch additions, changes or deletions. You must include a prominent\nstatement that the Modifications are derived, directly or indirectly,\nfrom the Licensed Product and include the names of the Licensor and any\nContributor to the Licensed Product in (i) the Source Code and (ii) in\nany notice displayed by a version of the Licensed Product you distribute\nor in related documentation in which you describe the origin or\nownership of the Licensed Product. You may not modify or delete any\npreexisting copyright notices in the Licensed Product.\n\nd. Intellectual Property Matters.\n\n i. Third Party Claims. \nIf you have knowledge that a license to a third party's intellectual\nproperty right is required to exercise the rights granted by this\nLicense, you must include a text file with the Source Code distribution\ntitled \"LEGAL\" that describes the claim and the party making the claim\nin sufficient detail that a recipient will know whom to contact. If you\nobtain such knowledge after you make any Modifications available as\ndescribed in Section 4(b), you shall promptly modify the LEGAL file in\nall copies you make available thereafter and shall take other steps\n(such as notifying appropriate mailing lists or newsgroups) reasonably\ncalculated to inform those who received the Licensed Product from you\nthat new knowledge has been obtained.\n\n ii. Contributor APIs. If your Modifications include \nan application programming interface (\"API\") and you have knowledge of\npatent licenses that are reasonably necessary to implement that API, you\nmust also include this information in the LEGAL file.\n\n iii. Representations. You represent that, except as \ndisclosed pursuant to 4(d)(i) above, you believe that any Modifications\nyou distribute are your original creations and that you have sufficient\nrights to grant the rights conveyed by this License.\n\ne. Required Notices. You must duplicate this License in any\ndocumentation you provide along with the Source Code of any\nModifications you create or to which you contribute, and which you\ndistribute, wherever you describe recipients' rights relating to\nLicensed Product. You must duplicate the notice contained in Exhibit A\n(the \"Notice\") in each file of the Source Code of any copy you\ndistribute of the Licensed Product. If you created a Modification, you\nmay add your name as a Contributor to the Notice. If it is not possible\nto put the Notice in a particular Source Code file due to its structure,\nthen you must include such Notice in a location (such as a relevant\ndirectory file) where a user would be likely to look for such a notice.\nYou may choose to offer, and charge a fee for, warranty, support,\nindemnity or liability obligations to one or more recipients of Licensed\nProduct. However, you may do so only on your own behalf, and not on\nbehalf of the Licensor or any Contributor. You must make it clear that\nany such warranty, support, indemnity or liability obligation is offered\nby you alone, and you hereby agree to indemnify the Licensor and every\nContributor for any liability incurred by the Licensor or such\nContributor as a result of warranty, support, indemnity or liability\nterms you offer.\n\nf. Distribution of Executable Versions. You may distribute\nLicensed Product as an executable program under a license of your choice\nthat may contain terms different from this License provided (i) you have\nsatisfied the requirements of Sections 4(a) through 4(e) for that\ndistribution, (ii) you include a conspicuous notice in the executable\nversion, related documentation and collateral materials stating that the\nSource Code version of the Licensed Product is available under the terms\nof this License, including a description of how and where you have\nfulfilled the obligations of Section 4(b), (iii) you retain all existing\ncopyright notices in the Licensed Product, and (iv) you make it clear\nthat any terms that differ from this License are offered by you alone,\nnot by Licensor or any Contributor. You hereby agree to indemnify the\nLicensor and every Contributor for any liability incurred by Licensor or\nsuch Contributor as a result of any terms you offer.\n\ng. Distribution of Derivative Works. You may create Derivative\nWorks (e.g., combinations of some or all of the Licensed Product with\nother code) and distribute the Derivative Works as products under any\nother license you select, with the proviso that the requirements of this\nLicense are fulfilled for those portions of the Derivative Works that\nconsist of the Licensed Product or any Modifications thereto.\n\n5. Inability to Comply Due to Statute or Regulation. If it is\nimpossible for you to comply with any of the terms of this License with\nrespect to some or all of the Licensed Product due to statute, judicial\norder, or regulation, then you must (i) comply with the terms of this\nLicense to the maximum extent possible, (ii) cite the statute or\nregulation that prohibits you from adhering to the License, and (iii)\ndescribe the limitations and the code they affect. Such description must\nbe included in the LEGAL file described in Section 4(d), and must be\nincluded with all distributions of the Source Code. Except to the\nextent prohibited by statute or regulation, such description must be\nsufficiently detailed for a recipient of ordinary skill at computer\nprogramming to be able to understand it.\n\n6. Application of This License. This License applies to code to\nwhich Licensor or Contributor has attached the Notice in Exhibit A,\nwhich is incorporated herein by this reference.\n\n7. Versions of This License.\n\na. New Versions. Licensor may publish from time to time revised\nand/or new versions of the License.\n\nb. Effect of New Versions. Once Licensed Product has been\npublished under a particular version of the License, you may always\ncontinue to use it under the terms of that version. You may also choose\nto use such Licensed Product under the terms of any subsequent version\nof the License published by Licensor. No one other than Licensor has\nthe right to modify the terms applicable to Licensed Product created\nunder this License.\n\nc. Derivative Works of this License. If you create or use a\nmodified version of this License, which you may do only in order to\napply it to software that is not already a Licensed Product under this\nLicense, you must rename your license so that it is not confusingly\nsimilar to this License, and must make it clear that your license\ncontains terms that differ from this License. In so naming your\nlicense, you may not use any trademark of Licensor or any Contributor.\n\n8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS\nLICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS\nOR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED\nPRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE\nOR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF\nTHE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE\nDEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER\nCONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR\nCORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF\nTHIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT\nUNDER THIS DISCLAIMER.\n\n9. Termination. \n\na. Automatic Termination Upon Breach. This license and the rights\ngranted hereunder will terminate automatically if you fail to comply\nwith the terms herein and fail to cure such breach within thirty (30)\ndays of becoming aware of the breach. All sublicenses to the Licensed\nProduct that are properly granted shall survive any termination of this\nlicense. Provisions that, by their nature, must remain in effect beyond\nthe termination of this License, shall survive.\n\nb. Termination Upon Assertion of Patent Infringement. If you\ninitiate litigation by asserting a patent infringement claim (excluding\ndeclaratory judgment actions) against Licensor or a Contributor\n(Licensor or Contributor against whom you file such an action is\nreferred to herein as Respondent) alleging that Licensed Product\ndirectly or indirectly infringes any patent, then any and all rights\ngranted by such Respondent to you under Sections 1 or 2 of this License\nshall terminate prospectively upon sixty (60) days notice from\nRespondent (the \"Notice Period\") unless within that Notice Period you\neither agree in writing (i) to pay Respondent a mutually agreeable\nreasonably royalty for your past or future use of Licensed Product made\nby such Respondent, or (ii) withdraw your litigation claim with respect\nto Licensed Product against such Respondent. If within said Notice\nPeriod a reasonable royalty and payment arrangement are not mutually\nagreed upon in writing by the parties or the litigation claim is not\nwithdrawn, the rights granted by Licensor to you under Sections 1 and 2\nautomatically terminate at the expiration of said Notice Period.\n\nc. Reasonable Value of This License. If you assert a patent\ninfringement claim against Respondent alleging that Licensed Product\ndirectly or indirectly infringes any patent where such claim is resolved\n(such as by license or settlement) prior to the initiation of patent\ninfringement litigation, then the reasonable value of the licenses\ngranted by said Respondent under Sections 1 and 2 shall be taken into\naccount in determining the amount or value of any payment or license.\n\nd. No Retroactive Effect of Termination. In the event of\ntermination under Sections 9(a) or 9(b) above, all end user license\nagreements (excluding licenses to distributors and resellers) that have\nbeen validly granted by you or any distributor hereunder prior to\ntermination shall survive termination.\n\n10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL\nTHEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE,\nSHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED\nPRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON\nFOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY\nCHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,\nWORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\nCOMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\nINFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF\nLIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW\nPROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE\nEXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS\nEXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n11. Responsibility for Claims. As between Licensor and Contributors,\neach party is responsible for claims and damages arising, directly or\nindirectly, out of its utilization of rights under this License. You\nagree to work with Licensor and Contributors to distribute such\nresponsibility on an equitable basis. Nothing herein is intended or\nshall be deemed to constitute any admission of liability.\n\n12. U.S. Government End Users. The Licensed Product is a commercial\nitem, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting\nof commercial computer software and commercial computer software\ndocumentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995).\nConsistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through\n227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed\nProduct with only those rights set forth herein.\n\n13. Miscellaneous. This License represents the complete agreement\nconcerning the subject matter hereof. If any provision of this License\nis held to be unenforceable, such provision shall be reformed only to\nthe extent necessary to make it enforceable. Any action or suit relating\nto this License may be brought only in the courts of a jurisdiction\nwherein the Licensor resides or in which Licensor conducts its primary\nbusiness, and under the laws of that jurisdiction excluding its\nconflict-of-law provisions. The losing party is responsible for costs\nincluding, without limitation, court costs and reasonable attorneys fees\nand expenses. You and Licensor expressly waive any rights to a jury\ntrial in any litigation concerning Licensed Product or this License.\nAny law or regulation that provides that the language of a contract\nshall be construed against the drafter shall not apply to this License.\nThe application of the United Nations Convention on Contracts for the\nInternational Sale of Goods is expressly excluded. Any use of the\nOriginal Work outside the scope of this License or after its termination\nshall be subject to the requirements and penalties of the U.S. Copyright\nAct, 17 U.S.C. 101 et seq., the equivalent laws of other countries, and\ninternational treaty. This section shall survive the termination of this\nLicense.\n\n14. Definition of You in This License. You throughout this License,\nwhether in upper or lower case, means an individual or a legal entity\nexercising rights under, and complying with all of the terms of, this\nLicense or a future version of this License issued under Section 7. For\nlegal entities, you includes any entity that controls, is controlled by,\nor is under common control with you. For purposes of this definition,\ncontrol means (i) the power, direct or indirect, to cause the direction\nor management of such entity, whether by contract or otherwise, or (ii)\nownership of fifty percent (50%) or more of the outstanding shares, or\n(iii) beneficial ownership of such entity.\n\n15. Glossary. All defined terms in this License that are used in more\nthan one Section of this License are repeated here, in alphabetical\norder, for the convenience of the reader. The Section of this License\nin which each defined term is first used is shown in parentheses.\n\nContributor: Each person or entity who created or contributed to the\ncreation of, and distributed, a Modification. (See Section 2)\n\nDerivative Works: That term as used in this License is defined under\nU.S. copyright law. (See Section 1(b))\n\nFile: A persistent or transient representation, including without\nlimitation, a computer system file, an information resource, and a web\nresource.\n\nLicense: This CognitiveWeb Open Source License. (See first paragraph\nof License)\n\nLicensed Product: Any CognitiveWeb Product licensed pursuant to this\nLicense. The term \"Licensed Product\" includes all previous\nModifications from any Contributor that you receive. (See first\nparagraph of License and Section 2)\n\nLicensor: Bryan Thompson dba CognitiveWeb (See first paragraph of\nLicense)\n\nModifications: Any additions to or deletions from the substance or\nstructure of (i) a file containing Licensed Product, or (ii) any new\nfile that contains any part of Licensed Product. (See Section 2)\n\nNotice: The notice contained in Exhibit A. (See Section 4(e))\n\nSource Code: The preferred form for making modifications to the Licensed\nProduct, including all modules contained therein, plus any associated\ninterface definition files, scripts used to control compilation and\ninstallation of an executable program, or a list of differential\ncomparisons against the Source Code of the Licensed Product. (See\nSection 1(a))\n\nYou: This term is defined in Section 14 of this License.\n\nEXHIBIT A\n\nThe Notice below must appear in each file of the Source Code of any copy\nyou distribute of the Licensed Product. Contributors to any\nModifications may add their own copyright notices to identify their own\ncontributions.\n\nLicense:\n\nThe contents of this file are subject to the CognitiveWeb Open Source\nLicense Version 1.1 (the License). You may not copy or use this file,\nin either source code or executable form, except in compliance with the\nLicense. You may obtain a copy of the License from\nhttp://www.CognitiveWeb.org/legal/license/. Software distributed under\nthe License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY\nKIND, either express or implied. See the License for the specific\nlanguage governing rights and limitations under the License.\n\nCopyrights:\n\nPortions created by or assigned to CognitiveWeb are Copyright (c)\n2003-2003 CognitiveWeb. All Rights Reserved. Contact information for\nCognitiveWeb is available at http://www.CognitiveWeb.org. Portions\nCopyright (c) 2002-2003 Bryan Thompson. Acknowledgements Special thanks\nto the developers of the Jabber Open Source License 1.0 (JOSL), from\nwhich this License was derived. This License contains terms that differ\nfrom JOSL. Special thanks to the CognitiveWeb Open Source Contributors\nfor their suggestions and support of the Cognitive Web. \n\nModifications:", + "json": "cognitive-web-osl-1.1.json", + "yaml": "cognitive-web-osl-1.1.yml", + "html": "cognitive-web-osl-1.1.html", + "license": "cognitive-web-osl-1.1.LICENSE" + }, + { + "license_key": "coil-1.0", + "category": "Permissive", + "spdx_license_key": "COIL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "# Copyfree Open Innovation License\n\nThis is version 1.0 of the Copyfree Open Innovation License.\n\n## Terms and Conditions\n\nRedistributions, modified or unmodified, in whole or in part, must retain\napplicable notices of copyright or other legal privilege, these conditions, and\nthe following license terms and disclaimer. Subject to these conditions, each\nholder of copyright or other legal privileges, author or assembler, and\ncontributor of this work, henceforth \"licensor\", hereby grants to any person\nwho obtains a copy of this work in any form:\n\n1. Permission to reproduce, modify, distribute, publish, sell, sublicense, use,\nand/or otherwise deal in the licensed material without restriction.\n\n2. A perpetual, worldwide, non-exclusive, royalty-free, gratis, irrevocable\npatent license to make, have made, provide, transfer, import, use, and/or\notherwise deal in the licensed material without restriction, for any and all\npatents held by such licensor and necessarily infringed by the form of the work\nupon distribution of that licensor's contribution to the work under the terms\nof this license.\n\nNO WARRANTY OF ANY KIND IS IMPLIED BY, OR SHOULD BE INFERRED FROM, THIS LICENSE\nOR THE ACT OF DISTRIBUTION UNDER THE TERMS OF THIS LICENSE, INCLUDING BUT NOT\nLIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,\nAND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS, ASSEMBLERS, OR HOLDERS OF\nCOPYRIGHT OR OTHER LEGAL PRIVILEGE BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER\nLIABILITY, WHETHER IN ACTION OF CONTRACT, TORT, OR OTHERWISE ARISING FROM, OUT\nOF, OR IN CONNECTION WITH THE WORK OR THE USE OF OR OTHER DEALINGS IN THE WORK.", + "json": "coil-1.0.json", + "yaml": "coil-1.0.yml", + "html": "coil-1.0.html", + "license": "coil-1.0.LICENSE" + }, + { + "license_key": "colt", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-colt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Colt License Agreement\n\nhttp://acs.lbl.gov/software/colt/license.html\n\nPackages cern.colt* , cern.jet*, cern.clhep\n\nCopyright (c) 1999 CERN - European Organization for Nuclear Research.\n\nPermission to use, copy, modify, distribute and sell this software and its\ndocumentation for any purpose is hereby granted without fee, provided that the\nabove copyright notice appear in all copies and that both that copyright notice\nand this permission notice appear in supporting documentation. CERN makes no\nrepresentations about the suitability of this software for any purpose. It is\nprovided \"as is\" without expressed or implied warranty.\n\nPackages hep.aida.* Written by Pavel Binko, Dino Ferrero Merlino, Wolfgang\nHoschek, Tony Johnson, Andreas Pfeiffer, and others. Check the FreeHEP home page\nfor more info. Permission to use and/or redistribute this work is granted under\nthe terms of the LGPL License, with the exception that any usage related to\nmilitary applications is expressly forbidden. The software and documentation\nmade available under the terms of this license are provided with no warranty.", + "json": "colt.json", + "yaml": "colt.yml", + "html": "colt.html", + "license": "colt.LICENSE" + }, + { + "license_key": "com-oreilly-servlet", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-com-oreilly-servlet", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright (C) 2001-2009 by Jason Hunter, jhunter_AT_servlets.com.\nAll rights reserved.\n\nThe source code, object code, and documentation in the com.oreilly.servlet\npackage is copyright and owned by Jason Hunter.\n\nON-SITE USE RIGHTS\n\nPermission is granted to use the com.oreilly.servlet.* packages in the\ndevelopment of any non-commercial project. For this use you are granted a non-\nexclusive, non-transferable limited license at no cost.\n\nFor a commercial project, permission is granted to use the com.oreilly.servlet.*\npackages provided that every person on the development team for that project\nowns a copy of the book Java Servlet Programming (O'Reilly) in its most recent\nedition. The most recent edition is currently the 2nd Edition, available in\nassociation with Amazon.com at\nhttp://www.amazon.com/exec/obidos/ASIN/0596000405/jasonhunter.\n\nOther (sometimes cheaper) license terms are available upon request; please write\nto jhunter_AT_servlets.com for more information.\n\nREDISTRIBUTION RIGHTS\n\nCommercial redistribution rights of the com.oreilly.servlet.* packages are\navailable by writing jhunter_AT_servlets.com.\n\nNon-commercial redistribution is permitted provided that:\n\n1. You redistribute the package in object code form only (as Java .class files\nor a .jar file containing the .class files) and only as part of a product that\nuses the classes as part of its primary functionality.\n\n2. The product containing the package is non-commercial in nature.\n\n3. The public interface to the classes in the package, and the public interface\nto any classes with similar functionality, is hidden from end users when engaged\nin normal use of the product.\n\n4. The distribution is not part of a software development kit, operating system,\nother library, or a development tool without written permission from the\ncopyright holder.\n\n5. The distribution includes copyright notice as follows: \"The source code,\nobject code, and documentation in the com.oreilly.servlet package is copyright\nand owned by Jason Hunter.\" in the documentation and/or other materials provided\nwith the distribution.\n\n6. You reproduce the above copyright notice, this list of conditions, and the\nfollowing disclaimer in the documentation and/or other materials provided with\nthe distribution.\n\n7. Licensor retains title to and ownership of the Software and all enhancements,\nmodifications, and updates to the Software.\n\nNote that the com.oreilly.servlet package is provided \"as is\" and the author\nwill not be liable for any damages suffered as a result of your use.\nFurthermore, you understand the package comes without any technical support.\n\nYou can always find the latest version of the com.oreilly.servlet package at\nhttp://www.servlets.com.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\nOR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED \nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\nThanks,\nJason Hunter\njhunter_AT_servlets.com", + "json": "com-oreilly-servlet.json", + "yaml": "com-oreilly-servlet.yml", + "html": "com-oreilly-servlet.html", + "license": "com-oreilly-servlet.LICENSE" + }, + { + "license_key": "commercial-license", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-commercial-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This component is licensed under a commercial contract from the supplier.", + "json": "commercial-license.json", + "yaml": "commercial-license.yml", + "html": "commercial-license.html", + "license": "commercial-license.LICENSE" + }, + { + "license_key": "commercial-option", + "category": "Commercial", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "This component may be licensed under a commercial contract from the supplier.", + "json": "commercial-option.json", + "yaml": "commercial-option.yml", + "html": "commercial-option.html", + "license": "commercial-option.LICENSE" + }, + { + "license_key": "commonj-timer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-commonj-timer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CommonJ Timer and Work Manager License\nGeneral information:\nhttp://dev2dev.bea.com/wlplatform/commonj/twm.html\nLicense Text\n\n The Timer and Work Manager for Application Servers Specification is being provided by the copyright holders under\n the following license. By using and/or copying this work, you agree that you have read, understood and will comply\n with the following terms and conditions:\n\n Permission to copy and display the Timer and Work Manager for Application Servers\n Specification and/or portions thereof, without modification, in any medium without fee or\n royalty is hereby granted, provided that you include the following on ALL copies of the\n Timer and Work Manager for Application Servers Specification, or portions thereof, that\n you make:\n 1. A link or URL to the Timer and Work Manager for Application Servers Specification at\n this location: http://dev2dev.bea.com/technologies/commonj/index.jsp\n or at this location:\n http://www.ibm.com/developerworks/library/j-commonj-sdowmt/\n 2. The full text of this copyright notice as shown in the Timer and Work Manager for\n Application Servers Specification.\n\n IBM and BEA (collectively, the 'Authors') agree to grant you a royalty-free license,\n under reasonable, non-discriminatory terms and conditions to patents that they deem\n necessary to implement the Timer and Work Manager for Application Servers Specification.\n THE Timer and Work Manager for Application Servers SPECIFICATION IS PROVIDED 'AS IS,' AND\n THE AUTHORS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS\n SPECIFICATION AND THE IMPLEMENTATION OF ITS CONTENTS, INCLUDING, BUT NOT LIMITED TO,\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT OR\n TITLE.\n\n THE AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR\n CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO ANY USE OR DISTRIBUTION OF THE Timer\n and Work Manager for Application Servers SPECIFICATION.\n The name and trademarks of the Authors may NOT be used in any manner, including\n advertising or publicity pertaining to the Timer and Work Manager for Application Servers\n Specification or its contents without specific, written prior permission. Title to\n copyright in the Timer and Work Manager for Application Servers Specification will at all\n times remain with the Authors.\n\n No other rights are granted by implication, estoppel or otherwise.", + "json": "commonj-timer.json", + "yaml": "commonj-timer.yml", + "html": "commonj-timer.html", + "license": "commonj-timer.LICENSE" + }, + { + "license_key": "commons-clause", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-commons-clause", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "\"Commons Clause\" License Condition v1.0\n\nThe Software is provided to you by the Licensor under the License, as defined below, subject to the following condition.\n\nWithout limiting other conditions in the License, the grant of rights under the License will not include, and the License does not grant to you, the right to Sell the Software.\n\nFor purposes of the foregoing, \"Sell\" means practicing any or all of the rights granted to you under the License to provide to third parties, for a fee or other consideration (including without limitation fees for hosting or consulting/ support services related to the Software), a product or service whose value derives, entirely or substantially, from the functionality of the Software. Any license notice or attribution required by the License must also include this Commons Cause License Condition notice.\n\nSoftware: [name software]\n\nLicense: [i.e. Apache 2.0]\n\nLicensor: [ABC company]", + "json": "commons-clause.json", + "yaml": "commons-clause.yml", + "html": "commons-clause.html", + "license": "commons-clause.LICENSE" + }, + { + "license_key": "compass", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-compass", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software. No attribution is required by\nproducts that make use of this software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nExcept as contained in this notice, the name(s) of the above copyright holders\nshall not be used in advertising or otherwise to promote the sale, use or other\ndealings in this Software without prior written authorization.\n\nContributors to this project agree to grant all rights to the copyright holder\nof the primary product. Attribution is maintained in the source control history\nof the product.", + "json": "compass.json", + "yaml": "compass.yml", + "html": "compass.html", + "license": "compass.LICENSE" + }, + { + "license_key": "componentace-jcraft", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-componentace-jcraft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright (c) 2006, ComponentAce http://www.componentace.com All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer. \n\nRedistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\nNeither the name of ComponentAce nor the names of its contributors may be used\nto endorse or promote products derived from this software without specific prior\nwritten permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\nOR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\nIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY\nOF SUCH DAMAGE.\n\nCopyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\n3. The names of the authors may not be used to endorse or promote products\nderived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, INC.\nOR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nThis program is based on zlib-1.1.3,\nso all credit should go authors Jean-loup Gailly(jloup@gzip.org) and Mark\nAdler(madler@alumni.caltech.edu) and contributors of zlib.", + "json": "componentace-jcraft.json", + "yaml": "componentace-jcraft.yml", + "html": "componentace-jcraft.html", + "license": "componentace-jcraft.LICENSE" + }, + { + "license_key": "compuphase-linking-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-compuphase-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "EXCEPTION TO THE APACHE 2.0 LICENSE\n\nAs a special exception to the Apache License 2.0 (and referring to the\ndefinitions in Section 1 of this license), you may link, statically or\ndynamically, the \"Work\" to other modules to produce an executable file\ncontaining portions of the \"Work\", and distribute that executable file\nin \"Object\" form under the terms of your choice, without any of the\nadditional requirements listed in Section 4 of the Apache License 2.0.\nThis exception applies only to redistributions in \"Object\" form (not\n\"Source\" form) and only if no modifications have been made to the \"Work\".", + "json": "compuphase-linking-exception.json", + "yaml": "compuphase-linking-exception.yml", + "html": "compuphase-linking-exception.html", + "license": "compuphase-linking-exception.LICENSE" + }, + { + "license_key": "concursive-pl-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-concursive-pl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Concursive Public License\nVersion 1, April 2014\n\nPreamble\n\nThis Concursive Public License is based on United States Copyright law, as\ndefined by Title 17 of the United States Code.\n\nIn particular, our intent is that:\n\nYou may use, copy, modify, and make derivative works from the code for internal\nuse only.\n\nYou may provide the code in object format for the use of your customers only,\npursuant to a current resale agreement with Concursive Corporation.\u2028\n\nYou may not redistribute the code, and you may not sublicense copies or\nderivatives of the code, either as software or as a service.\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n1. This License applies to any program or other work which contains a notice\nplaced by the copyright holder saying it may be distributed under the terms of\nthis Concursive Public License. The \"Program\", below, refers to any such program\nor work, and a \"work based on the Program\" means either the Program or any\nderivative work under copyright law: that is to say, a work containing the\nProgram or a portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is included without\nlimitation in the term \"modification\".) Each licensee is addressed as \"you\".\n\n2. By using the software you agree to abide by these terms.\n\n3. You may modify your copy or copies of the Program or any portion of it, thus\nforming a work based on the Program, for internal use and the use of your\ncustomers only, pursuant to a current resale agreement with Concursive\nCorporation.\n\n4. If the distribution and/or use of the Program is restricted in certain\ncountries either by patents or by copyrighted interfaces, Concursive Corporation\nmay add an explicit geographical distribution limitation excluding those\ncountries, so that distribution is permitted only in or among countries not thus\nexcluded. In such case, this License incorporates the limitation as if written\nin the body of this License.\n\n5. Concursive Corporation may publish revised and/or new versions of the\nConcursive Public License from time to time. Such new versions will be similar\nin spirit to the present version, but may differ in detail to address new\nproblems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies\na version number of this License which applies to it and \"any later version\",\nyou have the option of following the terms and conditions either of that version\nor of any later version published by Concursive Corporation. If the Program does\nnot specify a version number of this License, you may choose any version ever\npublished by Concursive Corporation.\n\n6. If any portion of this license is held invalid or unenforceable under any\nparticular circumstance, the balance of the license is intended to apply and the\nlicense as a whole is intended to apply in other circumstances.\n\nNO WARRANTY\n\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER\nPARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER\nEXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE\nQUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE\nDEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY\nCOPYRIGHT HOLDER BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,\nINCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE\nTHE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED\nINACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE\nPROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY\nHAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nEND OF TERMS AND CONDITIONS", + "json": "concursive-pl-1.0.json", + "yaml": "concursive-pl-1.0.yml", + "html": "concursive-pl-1.0.html", + "license": "concursive-pl-1.0.LICENSE" + }, + { + "license_key": "condor-1.1", + "category": "Permissive", + "spdx_license_key": "Condor-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CONDOR PUBLIC LICENSE\n\nVersion 1.1, October 30, 2003\n\nCopyright 1990-2006 Condor Team, Computer Sciences Department,\nUniversity of Wisconsin-Madison, Madison, WI. All Rights Reserved. For\nmore information contact: Condor Team, Attention: Professor Miron Livny,\nDept of Computer Sciences, 1210 W. Dayton St., Madison, WI 53706-1685, (608)\n262-0856 or miron@cs.wisc.edu. \n\nThis software referred to as the Condor\n Version 6.x software\n(\"Software\") was developed by the Condor Project, Condor Team,\nComputer Sciences Department, University of Wisconsin-Madison, under\nthe authority of the Board of Regents of the University of Wisconsin\nSystem and includes voluntary contributions made to the Condor Project\n(\"Copyright Holders and Contributors and the University\"). For more\ninformation on the Condor Project, please see\nhttp://www.condorproject.org/.\n\nInstallation, use, reproduction, display, modification and\nredistribution of this Software, with or without modification, in\nsource and binary forms, are permitted. Any exercise of rights under\nthis license including sublicenses by you is subject to the following\nconditions:\n\nRedistributions of this Software, with or without modification,\n must reproduce this Condor Public License in: (1) the Software,\n and (2) any user documentation or other similar material\n which is provided with the Software.\n\nAny user documentation included with a redistribution\n must include the following notice:\n\n\"This product includes software from the Condor Project (http://www.condorproject.org/)\"\n\t\nAlternatively, if that is where third-party acknowledgments\n normally appear, this acknowledgment must be reproduced in the\n Software itself.\n\nAny academic report, publication, or other academic disclosure \n of results obtained with this Software will acknowledge this\n Software's use by an appropriate citation.\n\nThe name Condor\n is a registered trademark of the University of\n Wisconsin-Madison. The trademark may not be used to endorse or\n promote software, or products derived therefrom, and, other than\n as required by section 2 and 3 above, it may not be affixed to modified\n redistributions of this Software without the prior written\n approval, obtainable via email to condor-admin@cs.wisc.edu.\n\nTo the extent that patent claims licensable by the University of\n Wisconsin-Madison are necessarily infringed by the use or sale of\n the Software, you are granted a non-exclusive, worldwide, royalty-\n free perpetual license under such patent claims, with the rights\n for you to make, use, sell, offer to sell, import and otherwise\n transfer the Software in source code and object code form and\n derivative works. This patent license shall apply to the\n combination of the Software with other software if, at the time\n the Software is added by you, such addition of the Software causes\n such combination to be covered by such patent claims. This patent\n license shall not apply to any other combinations which include\n the Software. No hardware per se is licensed hereunder.\n\nIf you or any subsequent sub-licensee (a ``Recipient\") institutes\n patent litigation against any entity (including a cross-claim or\n counterclaim in a lawsuit) alleging that the Software infringes\n such Recipient's patent(s), then such Recipient's rights granted\n (directly or indirectly) under the patent license above shall\n terminate as of the date such litigation is filed. All\n sublicenses to the Software which have been properly granted prior\n to termination shall survive any termination of said patent\n license, if not otherwise terminated pursuant to this section.\n\nDISCLAIMER\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n AND THE UNIVERSITY \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY, OF SATISFACTORY QUALITY, AND FITNESS FOR A\n PARTICULAR PURPOSE OR USE ARE DISCLAIMED. THE COPYRIGHT HOLDERS\n AND CONTRIBUTORS AND THE UNIVERSITY MAKE NO REPRESENTATION THAT THE\n SOFTWARE, MODIFICATIONS, ENHANCEMENTS OR DERIVATIVE WORKS THEREOF,\n WILL NOT INFRINGE ANY PATENT, COPYRIGHT, TRADEMARK, TRADE SECRET OR\n OTHER PROPRIETARY RIGHT.\n\nLIMITATION OF LIABILITY\n\nTHE COPYRIGHT HOLDERS AND CONTRIBUTORS AND ANY OTHER OFFICER,\n AGENT, OR EMPLOYEE OF THE UNIVERSITY SHALL HAVE NO LIABILITY TO\n LICENSEE OR OTHER PERSONS FOR DIRECT, INDIRECT, SPECIAL,\n INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES OF ANY\n CHARACTER INCLUDING, WITHOUT LIMITATION, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES, LOSS OF USE, DATA OR PROFITS, OR BUSINESS\n INTERRUPTION, HOWEVER CAUSED AND ON ANY THEORY OF CONTRACT,\n WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR\n OTHERWISE, ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nCertain uses and transfers of the Software or documentation, and/or\n items or software incorporating the Condor Software or\n documentation, may require a license under U.S. Export Control\n laws. Licensee represents and warrants that all uses and transfers\n of the Condor Software or documentation and/or any items or\n software incorporating Condor shall be in compliance with U.S.\n Export Control laws, and Licensee further understands that failure\n to comply with such export control laws may result in criminal\n liability to Licensee under U.S. laws.\n\nThe Condor Team may publish revised and/or new versions of this\n Condor Public License (``this License\") from time to time. Each\n version will be given a distinguishing version number. Once\n Software has been published under a particular version of this\n License, you may always continue to use it under the terms of that\n version. You may also choose to use such Software under the terms\n of any subsequent version of this License published by the Condor\n Team. No one other than the Condor Team has the right to modify\n the terms of this License.", + "json": "condor-1.1.json", + "yaml": "condor-1.1.yml", + "html": "condor-1.1.html", + "license": "condor-1.1.LICENSE" + }, + { + "license_key": "confluent-community-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-confluent-community-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Confluent Community License Version 1.0\n\nThis Confluent Community License Agreement Version 1.0 (the \u201cAgreement\u201d) sets forth the terms on which Confluent, Inc. (\u201cConfluent\u201d) makes available certain software made available by Confluent under this Agreement (the \u201cSoftware\u201d). BY INSTALLING, DOWNLOADING, ACCESSING, USING OR DISTRIBUTING ANY OF THE SOFTWARE, YOU AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO SUCH TERMS AND CONDITIONS, YOU MUST NOT USE THE SOFTWARE. IF YOU ARE RECEIVING THE SOFTWARE ON BEHALF OF A LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE THE ACTUAL AUTHORITY TO AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT ON BEHALF OF SUCH ENTITY. \u201cLicensee\u201d means you, an individual, or the entity on whose behalf you are receiving the Software.\n\nLICENSE GRANT AND CONDITIONS.\n1.1 License. Subject to the terms and conditions of this Agreement, Confluent hereby grants to Licensee a non-exclusive, royalty-free, worldwide, non-transferable, non-sublicenseable license during the term of this Agreement to: (a) use the Software; (b) prepare modifications and derivative works of the Software; (c) distribute the Software (including without limitation in source code or object code form); and (d) reproduce copies of the Software (the \u201cLicense\u201d). Licensee is not granted the right to, and Licensee shall not, exercise the License for an Excluded Purpose. For purposes of this Agreement, \u201cExcluded Purpose\u201d means making available any software-as-a-service, platform-as-a-service, infrastructure-as-a-service or other similar online service that competes with Confluent products or services that provide the Software.\n\n1.2 Conditions. In consideration of the License, Licensee\u2019s distribution of the Software is subject to the following conditions:\n\na. Licensee must cause any Software modified by Licensee to carry prominent notices stating that Licensee modified the Software.\n\nb. On each Software copy, Licensee shall reproduce and not remove or alter all Confluent or third party copyright or other proprietary notices contained in the Software, and Licensee must provide the notice below with each copy.\n\n\u201cThis software is made available by Confluent, Inc., under the terms of the Confluent Community License Agreement, Version 1.0 located at http://www.confluent.io/confluent-community-license. BY INSTALLING, DOWNLOADING, ACCESSING, USING OR DISTRIBUTING ANY OF THE SOFTWARE, YOU AGREE TO THE TERMS OF SUCH LICENSE AGREEMENT.\u201d\n\n1.3 Licensee Modifications. Licensee may add its own copyright notices to modifications made by Licensee and may provide additional or different license terms and conditions for use, reproduction, or distribution of Licensee\u2019s modifications. While redistributing the Software or modifications thereof, Licensee may choose to offer, for a fee or free of charge, support, warranty, indemnity, or other obligations. Licensee, and not Confluent, will be responsible for any such obligations.\n\n1.4 No Sublicensing. The License does not include the right to sublicense the Software, however, each recipient to which Licensee provides the Software may exercise the Licenses so long as such recipient agrees to the terms and conditions of this Agreement.\n\nTERM AND TERMINATION.\nThis Agreement will continue unless and until earlier terminated as set forth herein. If Licensee breaches any of its conditions or obligations under this Agreement, this Agreement will terminate automatically and the License will terminate automatically and permanently.\n\nINTELLECTUAL PROPERTY.\nAs between the parties, Confluent will retain all right, title, and interest in the Software, and all intellectual property rights therein. Confluent hereby reserves all rights not expressly granted to Licensee in this Agreement. Confluent hereby reserves all rights in its trademarks and service marks, and no licenses therein are granted in this Agreement.\n\nDISCLAIMER.\nCONFLUENT HEREBY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS, EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, AND SPECIFICALLY DISCLAIMS ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, WITH RESPECT TO THE SOFTWARE.\n\nLIMITATION OF LIABILITY.\nCONFLUENT WILL NOT BE LIABLE FOR ANY DAMAGES OF ANY KIND, INCLUDING BUT NOT LIMITED TO, LOST PROFITS OR ANY CONSEQUENTIAL, SPECIAL, INCIDENTAL, INDIRECT, OR DIRECT DAMAGES, HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, ARISING OUT OF THIS AGREEMENT. THE FOREGOING SHALL APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW.\n\nGENERAL.\n6.1 Governing Law. This Agreement will be governed by and interpreted in accordance with the laws of the state of California, without reference to its conflict of laws principles. If Licensee is located within the United States, all disputes arising out of this Agreement are subject to the exclusive jurisdiction of courts located in Santa Clara County, California. USA. If Licensee is located outside of the United States, any dispute, controversy or claim arising out of or relating to this Agreement will be referred to and finally determined by arbitration in accordance with the JAMS International Arbitration Rules. The tribunal will consist of one arbitrator. The place of arbitration will be Palo Alto, California. The language to be used in the arbitral proceedings will be English. Judgment upon the award rendered by the arbitrator may be entered in any court having jurisdiction thereof.\n\n6.2. Assignment. Licensee is not authorized to assign its rights under this Agreement to any third party. Confluent may freely assign its rights under this Agreement to any third party.\n\n6.3. Other. This Agreement is the entire agreement between the parties regarding the subject matter hereof. No amendment or modification of this Agreement will be valid or binding upon the parties unless made in writing and signed by the duly authorized representatives of both parties. In the event that any provision, including without limitation any condition, of this Agreement is held to be unenforceable, this Agreement and all licenses and rights granted hereunder will immediately terminate. Waiver by Confluent of a breach of any provision of this Agreement or the failure by Confluent to exercise any right hereunder will not be construed as a waiver of any subsequent breach of that right or as a waiver of any other right.", + "json": "confluent-community-1.0.json", + "yaml": "confluent-community-1.0.yml", + "html": "confluent-community-1.0.html", + "license": "confluent-community-1.0.LICENSE" + }, + { + "license_key": "cooperative-non-violent-4.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cooperative-non-violent-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "COOPERATIVE NON-VIOLENT PUBLIC LICENSE v4\n\nPreamble\n\nThe Cooperative Non-Violent Public license is a freedom-respecting sharealike\nlicense for both the author of a work as well as those subject to a work.\nIt aims to protect the basic rights of human beings from exploitation,\nthe earth from plunder, and the equal treatment of the workers involved in the\ncreation of the work. It aims to ensure a copyrighted work is forever\navailable for public use, modification, and redistribution under the same\nterms so long as the work is not used for harm. For more information about\nthe CNPL refer to the official webpage\n\nOfficial Webpage: https://thufie.lain.haus/NPL.html\n\nTerms and Conditions\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS\nCOOPERATIVE NON-VIOLENT PUBLIC LICENSE v4 (\"LICENSE\"). THE WORK IS\nPROTECTED BY COPYRIGHT AND ALL OTHER APPLICABLE LAWS. ANY USE OF THE\nWORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS\nPROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED IN THIS\nLICENSE, YOU AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE.\nTO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT,\nTHE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN AS CONSIDERATION\nFOR ACCEPTING THE TERMS AND CONDITIONS OF THIS LICENSE AND FOR AGREEING\nTO BE BOUND BY THE TERMS AND CONDITIONS OF THIS LICENSE.\n\n1. DEFINITIONS\n\n a. \"Act of War\" means any action of one country against any group\n either with an intention to provoke a conflict or an action that\n occurs during a declared war or during armed conflict between\n military forces of any origin. This includes but is not limited\n to enforcing sanctions or sieges, supplying armed forces,\n or profiting from the manufacture of tools or weaponry used in\n military conflict.\n\n b. \"Adaptation\" means a work based upon the Work, or upon the\n Work and other pre-existing works, such as a translation,\n adaptation, derivative work, arrangement of music or other\n alterations of a literary or artistic work, or phonogram or\n performance and includes cinematographic adaptations or any\n other form in which the Work may be recast, transformed, or\n adapted including in any form recognizably derived from the\n original, except that a work that constitutes a Collection will\n not be considered an Adaptation for the purpose of this License.\n For the avoidance of doubt, where the Work is a musical work,\n performance or phonogram, the synchronization of the Work in\n timed-relation with a moving image (\"synching\") will be\n considered an Adaptation for the purpose of this License.\n\n c. \"Bodily Harm\" means any physical hurt or injury to a person that\n interferes with the health or comfort of the person and that is more\n more than merely transient or trifling in nature.\n\n d. \"Collection\" means a collection of literary or artistic\n works, such as encyclopedias and anthologies, or performances,\n phonograms or broadcasts, or other works or subject matter other\n than works listed in Section 1(i) below, which, by reason of the\n selection and arrangement of their contents, constitute\n intellectual creations, in which the Work is included in its\n entirety in unmodified form along with one or more other\n contributions, each constituting separate and independent works\n in themselves, which together are assembled into a collective\n whole. A work that constitutes a Collection will not be\n considered an Adaptation (as defined above) for the purposes of\n this License.\n\n e. \"Distribute\" means to make available to the public the\n original and copies of the Work or Adaptation, as appropriate,\n through sale, gift or any other transfer of possession or\n ownership.\n\n f. \"Incarceration\" means confinement in a jail, prison, or any\n other place where individuals of any kind are held against\n either their will or the will of their legal guardians.\n\n g. \"Licensor\" means the individual, individuals, entity or\n entities that offer(s) the Work under the terms of this License.\n\n h. \"Original Author\" means, in the case of a literary or\n artistic work, the individual, individuals, entity or entities\n who created the Work or if no individual or entity can be\n identified, the publisher; and in addition (i) in the case of a\n performance the actors, singers, musicians, dancers, and other\n persons who act, sing, deliver, declaim, play in, interpret or\n otherwise perform literary or artistic works or expressions of\n folklore; (ii) in the case of a phonogram the producer being the\n person or legal entity who first fixes the sounds of a\n performance or other sounds; and, (iii) in the case of\n broadcasts, the organization that transmits the broadcast.\n\n i. \"Work\" means the literary and/or artistic work offered under\n the terms of this License including without limitation any\n production in the literary, scientific and artistic domain,\n whatever may be the mode or form of its expression including\n digital form, such as a book, pamphlet and other writing; a\n lecture, address, sermon or other work of the same nature; a\n dramatic or dramatico-musical work; a choreographic work or\n entertainment in dumb show; a musical composition with or\n without words; a cinematographic work to which are assimilated\n works expressed by a process analogous to cinematography; a work\n of drawing, painting, architecture, sculpture, engraving or\n lithography; a photographic work to which are assimilated works\n expressed by a process analogous to photography; a work of\n applied art; an illustration, map, plan, sketch or\n three-dimensional work relative to geography, topography,\n architecture or science; a performance; a broadcast; a\n phonogram; a compilation of data to the extent it is protected\n as a copyrightable work; or a work performed by a variety or\n circus performer to the extent it is not otherwise considered a\n literary or artistic work.\n\n j. \"You\" means an individual or entity exercising rights under\n this License who has not previously violated the terms of this\n License with respect to the Work, or who has received express\n permission from the Licensor to exercise rights under this\n License despite a previous violation.\n\n k. \"Publicly Perform\" means to perform public recitations of the\n Work and to communicate to the public those public recitations,\n by any means or process, including by wire or wireless means or\n public digital performances; to make available to the public\n Works in such a way that members of the public may access these\n Works from a place and at a place individually chosen by them;\n to perform the Work to the public by any means or process and\n the communication to the public of the performances of the Work,\n including by public digital performance; to broadcast and\n rebroadcast the Work by any means including signs, sounds or\n images.\n\n l. \"Reproduce\" means to make copies of the Work by any means\n including without limitation by sound or visual recordings and\n the right of fixation and reproducing fixations of the Work,\n including storage of a protected performance or phonogram in\n digital form or other electronic medium.\n\n m. \"Software\" means any digital Work which, through use of a\n third-party piece of Software or through the direct usage of\n itself on a computer system, the memory of the computer is\n modified dynamically or semi-dynamically. \"Software\",\n secondly, processes or interprets information.\n\n n. \"Source Code\" means the human-readable form of Software\n through which the Original Author and/or Distributor originally\n created, derived, and/or modified it.\n\n o. \"Surveilling\" means the use of the Work to either\n overtly or covertly observe and record persons and or their\n activities.\n\n p. \"Web Service\" means the use of a piece of Software to\n interpret or modify information that is subsequently and directly\n served to users over the Internet.\n\n q. \"Discriminate\" means the use of a work to differentiate between\n humans in a such a way which prioritizes some above others on the\n basis of percieved membership within certain groups.\n\n r. \"Hate Speech\" means communication or any form\n of expression which is solely for the purpose of expressing hatred\n for some group or advocating a form of Discrimination\n (to Discriminate per definition in (q)) between humans.\n\n2. FAIR DEALING RIGHTS\n\n Nothing in this License is intended to reduce, limit, or restrict any\n uses free from copyright or rights arising from limitations or\n exceptions that are provided for in connection with the copyright\n protection under copyright law or other applicable laws.\n\n3. LICENSE GRANT\n\n Subject to the terms and conditions of this License, Licensor hereby\n grants You a worldwide, royalty-free, non-exclusive, perpetual (for the\n duration of the applicable copyright) license to exercise the rights in\n the Work as stated below:\n\n a. to Reproduce the Work, to incorporate the Work into one or\n more Collections, and to Reproduce the Work as incorporated in\n the Collections;\n\n b. to create and Reproduce Adaptations provided that any such\n Adaptation, including any translation in any medium, takes\n reasonable steps to clearly label, demarcate or otherwise\n identify that changes were made to the original Work. For\n example, a translation could be marked \"The original work was\n translated from English to Spanish,\" or a modification could\n indicate \"The original work has been modified.\";\n\n c. to Distribute and Publicly Perform the Work including as\n incorporated in Collections; and,\n\n d. to Distribute and Publicly Perform Adaptations. The above\n rights may be exercised in all media and formats whether now\n known or hereafter devised. The above rights include the right\n to make such modifications as are technically necessary to\n exercise the rights in other media and formats. Subject to\n Section 8(g), all rights not expressly granted by Licensor are\n hereby reserved, including but not limited to the rights set\n forth in Section 4(i).\n\n4. RESTRICTIONS\n\n The license granted in Section 3 above is expressly made subject to and\n limited by the following restrictions:\n\n a. You may Distribute or Publicly Perform the Work only under\n the terms of this License. You must include a copy of, or the\n Uniform Resource Identifier (URI) for, this License with every\n copy of the Work You Distribute or Publicly Perform. You may not\n offer or impose any terms on the Work that restrict the terms of\n this License or the ability of the recipient of the Work to\n exercise the rights granted to that recipient under the terms of\n the License. You may not sublicense the Work. You must keep\n intact all notices that refer to this License and to the\n disclaimer of warranties with every copy of the Work You\n Distribute or Publicly Perform. When You Distribute or Publicly\n Perform the Work, You may not impose any effective technological\n measures on the Work that restrict the ability of a recipient of\n the Work from You to exercise the rights granted to that\n recipient under the terms of the License. This Section 4(a)\n applies to the Work as incorporated in a Collection, but this\n does not require the Collection apart from the Work itself to be\n made subject to the terms of this License. If You create a\n Collection, upon notice from any Licensor You must, to the\n extent practicable, remove from the Collection any credit as\n required by Section 4(h), as requested. If You create an\n Adaptation, upon notice from any Licensor You must, to the\n extent practicable, remove from the Adaptation any credit as\n required by Section 4(h), as requested.\n\n b. Subject to the exception in Section 4(e), you may not\n exercise any of the rights granted to You in Section 3 above in\n any manner that is primarily intended for or directed toward\n commercial advantage or private monetary compensation. The\n exchange of the Work for other copyrighted works by means of\n digital file-sharing or otherwise shall not be considered to be\n intended for or directed toward commercial advantage or private\n monetary compensation, provided there is no payment of any\n monetary compensation in connection with the exchange of\n copyrighted works.\n\n c. If the Work meets the definition of Software, You may exercise\n the rights granted in Section 3 only if You provide a copy of the\n corresponding Source Code from which the Work was derived in digital\n form, or You provide a URI for the corresponding Source Code of\n the Work, to any recipients upon request.\n\n d. If the Work is used as or for a Web Service, You may exercise\n the rights granted in Section 3 only if You provide a copy of the\n corresponding Source Code from which the Work was derived in digital\n form, or You provide a URI for the corresponding Source Code to the\n Work, to any recipients of the data served or modified by the Web\n Service.\n\n e. You may exercise the rights granted in Section 3 for\n commercial purposes only if you satisfy any of the following:\n\n i. You are a worker-owned business or worker-owned\n collective; and\n ii. after tax, all financial gain, surplus, profits and \n benefits produced by the business or collective are\n distributed among the worker-owners unless a set amount\n is to be allocated towards community projects as decided\n by a previously-established consensus agreement between the\n worker-owners where all worker-owners agreed\n iii. You are not using such rights on behalf of a business\n other than those specified in 4(e.i) and elaborated upon in\n 4(e.ii), nor are using such rights as a proxy on behalf of a\n business with the intent to circumvent the aforementioned\n restrictions on such a business.\n\n f. Any use by a business that is privately owned and managed,\n and that seeks to generate profit from the labor of employees\n paid by salary or other wages, is not permitted under this\n license.\n\n g. You may exercise the rights granted in Section 3 for\n any purposes only if:\n\n i. You do not use the Work for the purpose of inflicting\n Bodily Harm on human beings (subject to criminal\n prosecution or otherwise) outside of providing medical aid.\n ii.You do not use the Work for the purpose of Surveilling\n or tracking individuals for financial gain.\n iii. You do not use the Work in an Act of War.\n iv. You do not use the Work for the purpose of supporting\n or profiting from an Act of War.\n v. You do not use the Work for the purpose of Incarceration.\n vi. You do not use the Work for the purpose of extracting\n oil, gas, or coal.\n vii. You do not use the Work for the purpose of\n expediting, coordinating, or facilitating paid work\n undertaken by individuals under the age of 12 years.\n viii. You do not use the Work to either Discriminate or\n spread Hate Speech on the basis of sex, sexual orientation,\n gender identity, race, age, disability, color, national origin,\n religion, or lower economic status.\n\n h. If You Distribute, or Publicly Perform the Work or any\n Adaptations or Collections, You must, unless a request has been\n made pursuant to Section 4(a), keep intact all copyright notices\n for the Work and provide, reasonable to the medium or means You\n are utilizing: (i) the name of the Original Author (or\n pseudonym, if applicable) if supplied, and/or if the Original\n Author and/or Licensor designate another party or parties (e.g.,\n a sponsor institute, publishing entity, journal) for attribution\n (\"Attribution Parties\") in Licensor!s copyright notice, terms of\n service or by other reasonable means, the name of such party or\n parties; (ii) the title of the Work if supplied; (iii) to the\n extent reasonably practicable, the URI, if any, that Licensor\n specifies to be associated with the Work, unless such URI does\n not refer to the copyright notice or licensing information for\n the Work; and, (iv) consistent with Section 3(b), in the case of\n an Adaptation, a credit identifying the use of the Work in the\n Adaptation (e.g., \"French translation of the Work by Original\n Author,\" or \"Screenplay based on original Work by Original\n Author\"). The credit required by this Section 4(h) may be\n implemented in any reasonable manner; provided, however, that in\n the case of an Adaptation or Collection, at a minimum such credit\n will appear, if a credit for all contributing authors of the\n Adaptation or Collection appears, then as part of these credits\n and in a manner at least as prominent as the credits for the\n other contributing authors. For the avoidance of doubt, You may\n only use the credit required by this Section for the purpose of\n attribution in the manner set out above and, by exercising Your\n rights under this License, You may not implicitly or explicitly\n assert or imply any connection with, sponsorship or endorsement\n by the Original Author, Licensor and/or Attribution Parties, as\n appropriate, of You or Your use of the Work, without the\n separate, express prior written permission of the Original\n Author, Licensor and/or Attribution Parties.\n\n i. For the avoidance of doubt:\n\n i. Non-waivable Compulsory License Schemes. In those\n jurisdictions in which the right to collect royalties\n through any statutory or compulsory licensing scheme\n cannot be waived, the Licensor reserves the exclusive\n right to collect such royalties for any exercise by You of\n the rights granted under this License;\n\n ii. Waivable Compulsory License Schemes. In those\n jurisdictions in which the right to collect royalties\n through any statutory or compulsory licensing scheme can\n be waived, the Licensor reserves the exclusive right to\n collect such royalties for any exercise by You of the\n rights granted under this License if Your exercise of such\n rights is for a purpose or use which is otherwise than\n noncommercial as permitted under Section 4(b) and\n otherwise waives the right to collect royalties through\n any statutory or compulsory licensing scheme; and,\n iii.Voluntary License Schemes. The Licensor reserves the\n right to collect royalties, whether individually or, in\n the event that the Licensor is a member of a collecting\n society that administers voluntary licensing schemes, via\n that society, from any exercise by You of the rights\n granted under this License that is for a purpose or use\n which is otherwise than noncommercial as permitted under\n Section 4(b).\n\n j. Except as otherwise agreed in writing by the Licensor or as\n may be otherwise permitted by applicable law, if You Reproduce,\n Distribute or Publicly Perform the Work either by itself or as\n part of any Adaptations or Collections, You must not distort,\n mutilate, modify or take other derogatory action in relation to\n the Work which would be prejudicial to the Original Author's\n honor or reputation. Licensor agrees that in those jurisdictions\n (e.g. Japan), in which any exercise of the right granted in\n Section 3(b) of this License (the right to make Adaptations)\n would be deemed to be a distortion, mutilation, modification or\n other derogatory action prejudicial to the Original Author's\n honor and reputation, the Licensor will waive or not assert, as\n appropriate, this Section, to the fullest extent permitted by\n the applicable national law, to enable You to reasonably\n exercise Your right under Section 3(b) of this License (right to\n make Adaptations) but not otherwise.\n\n k. Do not make any legal claim against anyone accusing the\n Work, with or without changes, alone or with other works,\n of infringing any patent claim.\n\n5. REPRESENTATIONS, WARRANTIES AND DISCLAIMER\n\n UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR\n OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY\n KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,\n INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,\n FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF\n LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF\n ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW\n THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO\n YOU.\n\n6. LIMITATION ON LIABILITY\n\n EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL\n LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL,\n INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF\n THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. TERMINATION\n\n a. This License and the rights granted hereunder will terminate\n automatically upon any breach by You of the terms of this\n License. Individuals or entities who have received Adaptations\n or Collections from You under this License, however, will not\n have their licenses terminated provided such individuals or\n entities remain in full compliance with those licenses. Sections\n 1, 2, 5, 6, 7, and 8 will survive any termination of this\n License.\n\n b. Subject to the above terms and conditions, the license\n granted here is perpetual (for the duration of the applicable\n copyright in the Work). Notwithstanding the above, Licensor\n reserves the right to release the Work under different license\n terms or to stop distributing the Work at any time; provided,\n however that any such election will not serve to withdraw this\n License (or any other license that has been, or is required to\n be, granted under the terms of this License), and this License\n will continue in full force and effect unless terminated as\n stated above.\n\n8. REVISED LICENSE VERSIONS\n\n a. This License may receive future revisions in the original\n spirit of the license intended to strengthen This License.\n Each version of This License has an incrementing version number.\n\n b. Unless otherwise specified like in Section 8(c) The Licensor\n has only granted this current version of This License for The Work.\n In this case future revisions do not apply.\n\n c. The Licensor may specify that the latest available\n revision of This License be used for The Work by either explicitly\n writing so or by suffixing the License URI with a \"+\" symbol.\n\n d. The Licensor may specify that The Work is also available\n under the terms of This License's current revision as well\n as specific future revisions. The Licensor may do this by\n writing it explicitly or suffixing the License URI with any\n additional version numbers each separated by a comma.\n\n9. MISCELLANEOUS\n\n a. Each time You Distribute or Publicly Perform the Work or a\n Collection, the Licensor offers to the recipient a license to\n the Work on the same terms and conditions as the license granted\n to You under this License.\n\n b. Each time You Distribute or Publicly Perform an Adaptation,\n Licensor offers to the recipient a license to the original Work\n on the same terms and conditions as the license granted to You\n under this License.\n\n c. If the Work is classified as Software, each time You Distribute\n or Publicly Perform an Adaptation, Licensor offers to the recipient\n a copy and/or URI of the corresponding Source Code on the same\n terms and conditions as the license granted to You under this License.\n\n d. If the Work is used as a Web Service, each time You Distribute\n or Publicly Perform an Adaptation, or serve data derived from the\n Software, the Licensor offers to any recipients of the data a copy\n and/or URI of the corresponding Source Code on the same terms and\n conditions as the license granted to You under this License.\n\n e. If any provision of this License is invalid or unenforceable\n under applicable law, it shall not affect the validity or\n enforceability of the remainder of the terms of this License,\n and without further action by the parties to this agreement,\n such provision shall be reformed to the minimum extent necessary\n to make such provision valid and enforceable.\n\n f. No term or provision of this License shall be deemed waived\n and no breach consented to unless such waiver or consent shall\n be in writing and signed by the party to be charged with such\n waiver or consent.\n\n g. This License constitutes the entire agreement between the\n parties with respect to the Work licensed here. There are no\n understandings, agreements or representations with respect to\n the Work not specified here. Licensor shall not be bound by any\n additional provisions that may appear in any communication from\n You. This License may not be modified without the mutual written\n agreement of the Licensor and You.\n\n h. The rights granted under, and the subject matter referenced,\n in this License were drafted utilizing the terminology of the\n Berne Convention for the Protection of Literary and Artistic\n Works (as amended on September 28, 1979), the Rome Convention of\n 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances\n and Phonograms Treaty of 1996 and the Universal Copyright\n Convention (as revised on July 24, 1971). These rights and\n subject matter take effect in the relevant jurisdiction in which\n the License terms are sought to be enforced according to the\n corresponding provisions of the implementation of those treaty\n provisions in the applicable national law. If the standard suite\n of rights granted under applicable copyright law includes\n additional rights not granted under this License, such\n additional rights are deemed to be included in the License; this\n License is not intended to restrict the license of any rights\n under applicable law.", + "json": "cooperative-non-violent-4.0.json", + "yaml": "cooperative-non-violent-4.0.yml", + "html": "cooperative-non-violent-4.0.html", + "license": "cooperative-non-violent-4.0.LICENSE" + }, + { + "license_key": "copyheart", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-copyheart", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "\u2661 Copying is an act of love. Please copy.", + "json": "copyheart.json", + "yaml": "copyheart.yml", + "html": "copyheart.html", + "license": "copyheart.LICENSE" + }, + { + "license_key": "copyleft-next-0.3.0", + "category": "Copyleft", + "spdx_license_key": "copyleft-next-0.3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "copyleft-next 0.3.0 (\"this License\")\nRelease date: 2013-05-16\n\n1. License Grants; No Trademark License\n\n Subject to the terms of this License, I grant You:\n\n a) A non-exclusive, worldwide, perpetual, royalty-free, irrevocable\n copyright license, to reproduce, Distribute, prepare derivative works\n of, publicly perform and publicly display My Work.\n\n b) A non-exclusive, worldwide, perpetual, royalty-free, irrevocable\n patent license under Licensed Patents to make, have made, use, sell,\n offer for sale, and import Covered Works.\n\n This License does not grant any rights in My name, trademarks, service\n marks, or logos.\n\n2. Distribution: General Conditions\n\n You may Distribute Covered Works, provided that You (i) inform\n recipients how they can obtain a copy of this License; (ii) satisfy the\n applicable conditions of sections 3 through 6; and (iii) preserve all\n Legal Notices contained in My Work (to the extent they remain\n pertinent). \"Legal Notices\" means copyright notices, license notices,\n license texts, and author attributions, but does not include logos,\n other graphical images, trademarks or trademark legends.\n\n3. Conditions for Distributing Derived Works; Outbound GPL Compatibility\n\n If You Distribute a Derived Work, You must license the entire Derived\n Work as a whole under this License, with prominent notice of such\n licensing. This condition may not be avoided through such means as\n separate Distribution of portions of the Derived Work. You may\n additionally license the Derived Work under the GPL, so that the\n recipient may further Distribute the Derived Work under either this\n License or the GPL.\n\n4. Condition Against Further Restrictions; Inbound License Compatibility\n\n When Distributing a Covered Work, You may not impose further\n restrictions on the exercise of rights in the Covered Work granted under\n this License. This condition is not excused merely because such\n restrictions result from Your compliance with conditions or obligations\n extrinsic to this License (such as a court order or an agreement with a\n third party).\n\n However, You may Distribute a Covered Work incorporating material\n governed by a license that is both OSI-Approved and FSF-Free as of the\n release date of this License, provided that Your Distribution complies\n with such other license.\n\n5. Conditions for Distributing Object Code\n\n You may Distribute an Object Code form of a Covered Work, provided that\n you accompany the Object Code with a URL through which the Corresponding\n Source is made available, at no charge, by some standard or customary\n means of providing network access to source code.\n\n If you Distribute the Object Code in a physical product or tangible\n storage medium (\"Product\"), the Corresponding Source must be available\n through such URL for two years from the date of Your most recent\n Distribution of the Object Code in the Product. However, if the Product\n itself contains or is accompanied by the Corresponding Source (made\n available in a customarily accessible manner), You need not also comply\n with the first paragraph of this section.\n\n Each recipient of the Covered Work from You is an intended third-party\n beneficiary of this License solely as to this section 5, with the right\n to enforce its terms.\n\n6. Symmetrical Licensing Condition for Upstream Contributions\n\n If You Distribute a work to Me specifically for inclusion in or\n modification of a Covered Work (a \"Patch\"), and no explicit licensing\n terms apply to the Patch, You license the Patch under this License, to\n the extent of Your copyright in the Patch. This condition does not\n negate the other conditions of this License, if applicable to the Patch.\n\n7. Nullification of Copyleft/Proprietary Dual Licensing\n\n If I offer to license, for a fee, a Covered Work under terms other than\n a license that is OSI-Approved or FSF-Free as of the release date of this\n License or a numbered version of copyleft-next released by the\n Copyleft-Next Project, then the license I grant You under section 1 is no\n longer subject to the conditions in sections 2 through 5.\n\n8. Copyleft Sunset\n\n The conditions in sections 2 through 5 no longer apply once fifteen\n years have elapsed from the date of My first Distribution of My Work\n under this License.\n\n9. Pass-Through\n\n When You Distribute a Covered Work, the recipient automatically receives\n a license to My Work from Me, subject to the terms of this License.\n\n10. Termination\n\n Your license grants under section 1 are automatically terminated if You\n\n a) fail to comply with the conditions of this License, unless You cure\n such noncompliance within thirty days after becoming aware of it, or\n\n b) initiate a patent infringement litigation claim (excluding\n declaratory judgment actions, counterclaims, and cross-claims)\n alleging that any part of My Work directly or indirectly infringes\n any patent.\n\n Termination of Your license grants extends to all copies of Covered\n Works You subsequently obtain. Termination does not terminate the\n rights of those who have received copies or rights from You subject to\n this License.\n\n To the extent permission to make copies of a Covered Work is necessary\n merely for running it, such permission is not terminable.\n\n11. Later License Versions\n\n The Copyleft-Next Project may release new versions of copyleft-next,\n designated by a distinguishing version number (\"Later Versions\").\n Unless I explicitly remove the option of Distributing Covered Works\n under Later Versions, You may Distribute Covered Works under any Later\n Version.\n\n** 12. No Warranty **\n** **\n** My Work is provided \"as-is\", without warranty. You bear the risk **\n** of using it. To the extent permitted by applicable law, each **\n** Distributor of My Work excludes the implied warranties of title, **\n** merchantability, fitness for a particular purpose and **\n** non-infringement. **\n\n** 13. Limitation of Liability **\n** **\n** To the extent permitted by applicable law, in no event will any **\n** Distributor of My Work be liable to You for any damages **\n** whatsoever, whether direct, indirect, special, incidental, or **\n** consequential damages, whether arising under contract, tort **\n** (including negligence), or otherwise, even where the Distributor **\n** knew or should have known about the possibility of such damages. **\n\n14. Severability\n\n The invalidity or unenforceability of any provision of this License\n does not affect the validity or enforceability of the remainder of\n this License. Such provision is to be reformed to the minimum extent\n necessary to make it valid and enforceable.\n\n15. Definitions\n\n \"Copyleft-Next Project\" means the project that maintains the source\n code repository at as of the\n release date of this License.\n\n \"Corresponding Source\" of a Covered Work in Object Code form means (i)\n the Source Code form of the Covered Work; (ii) all scripts,\n instructions and similar information that are reasonably necessary for\n a skilled developer to generate such Object Code from the Source Code\n provided under (i); and (iii) a list clearly identifying all Separate\n Works (other than those provided in compliance with (ii)) that were\n specifically used in building and (if applicable) installing the\n Covered Work (for example, a specified proprietary compiler including\n its version number). Corresponding Source must be machine-readable.\n\n \"Covered Work\" means My Work or a Derived Work.\n\n \"Derived Work\" means a work of authorship that copies from, modifies,\n adapts, is based on, is a derivative work of, transforms, translates or\n contains all or part of My Work, such that copyright permission is\n required. The following are not Derived Works: (i) Mere Aggregation;\n (ii) a mere reproduction of My Work; and (iii) if My Work fails to\n explicitly state an expectation otherwise, a work that merely makes\n reference to My Work.\n\n \"Distribute\" means to distribute, transfer or make a copy available to\n someone else, such that copyright permission is required.\n\n \"Distributor\" means Me and anyone else who Distributes a Covered Work.\n\n \"FSF-Free\" means classified as 'free' by the Free Software Foundation.\n\n \"GPL\" means a version of the GNU General Public License or the GNU\n Affero General Public License.\n\n \"I\"/\"Me\"/\"My\" refers to the individual or legal entity that places My\n Work under this License. \"You\"/\"Your\" refers to the individual or legal\n entity exercising rights in My Work under this License. A legal entity\n includes each entity that controls, is controlled by, or is under\n common control with such legal entity. \"Control\" means (a) the power to\n direct the actions of such legal entity, whether by contract or\n otherwise, or (b) ownership of more than fifty percent of the\n outstanding shares or beneficial ownership of such legal entity.\n\n \"Licensed Patents\" means all patent claims licensable royalty-free by\n Me, now or in the future, that are necessarily infringed by making,\n using, or selling My Work, and excludes claims that would be infringed\n only as a consequence of further modification of My Work.\n\n \"Mere Aggregation\" means an aggregation of a Covered Work with a\n Separate Work.\n\n \"My Work\" means the particular work of authorship I license to You\n under this License.\n\n \"Object Code\" means any form of a work that is not Source Code.\n\n \"OSI-Approved\" means approved as 'Open Source' by the Open Source\n Initiative.\n\n \"Separate Work\" means a work that is separate from and independent of a\n particular Covered Work and is not by its nature an extension or\n enhancement of the Covered Work, and/or a runtime library, standard\n library or similar component that is used to generate an Object Code\n form of a Covered Work.\n\n \"Source Code\" means the preferred form of a work for making\n modifications to it.", + "json": "copyleft-next-0.3.0.json", + "yaml": "copyleft-next-0.3.0.yml", + "html": "copyleft-next-0.3.0.html", + "license": "copyleft-next-0.3.0.LICENSE" + }, + { + "license_key": "copyleft-next-0.3.1", + "category": "Copyleft", + "spdx_license_key": "copyleft-next-0.3.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "copyleft-next 0.3.1 (\"this License\")\nRelease date: 2016-04-29\n\n1. License Grants; No Trademark License\n\n Subject to the terms of this License, I grant You:\n\n a) A non-exclusive, worldwide, perpetual, royalty-free, irrevocable\n copyright license, to reproduce, Distribute, prepare derivative works\n of, publicly perform and publicly display My Work.\n\n b) A non-exclusive, worldwide, perpetual, royalty-free, irrevocable\n patent license under Licensed Patents to make, have made, use, sell,\n offer for sale, and import Covered Works.\n\n This License does not grant any rights in My name, trademarks, service\n marks, or logos.\n\n2. Distribution: General Conditions\n\n You may Distribute Covered Works, provided that You (i) inform\n recipients how they can obtain a copy of this License; (ii) satisfy the\n applicable conditions of sections 3 through 6; and (iii) preserve all\n Legal Notices contained in My Work (to the extent they remain\n pertinent). \"Legal Notices\" means copyright notices, license notices,\n license texts, and author attributions, but does not include logos,\n other graphical images, trademarks or trademark legends.\n\n3. Conditions for Distributing Derived Works; Outbound GPL Compatibility\n\n If You Distribute a Derived Work, You must license the entire Derived\n Work as a whole under this License, with prominent notice of such\n licensing. This condition may not be avoided through such means as\n separate Distribution of portions of the Derived Work.\n\n If the Derived Work includes material licensed under the GPL, You may\n instead license the Derived Work under the GPL.\n \n4. Condition Against Further Restrictions; Inbound License Compatibility\n\n When Distributing a Covered Work, You may not impose further\n restrictions on the exercise of rights in the Covered Work granted under\n this License. This condition is not excused merely because such\n restrictions result from Your compliance with conditions or obligations\n extrinsic to this License (such as a court order or an agreement with a\n third party).\n\n However, You may Distribute a Covered Work incorporating material\n governed by a license that is both OSI-Approved and FSF-Free as of the\n release date of this License, provided that compliance with such\n other license would not conflict with any conditions stated in other\n sections of this License.\n\n5. Conditions for Distributing Object Code\n\n You may Distribute an Object Code form of a Covered Work, provided that\n you accompany the Object Code with a URL through which the Corresponding\n Source is made available, at no charge, by some standard or customary\n means of providing network access to source code.\n\n If you Distribute the Object Code in a physical product or tangible\n storage medium (\"Product\"), the Corresponding Source must be available\n through such URL for two years from the date of Your most recent\n Distribution of the Object Code in the Product. However, if the Product\n itself contains or is accompanied by the Corresponding Source (made\n available in a customarily accessible manner), You need not also comply\n with the first paragraph of this section.\n\n Each direct and indirect recipient of the Covered Work from You is an\n intended third-party beneficiary of this License solely as to this\n section 5, with the right to enforce its terms.\n\n6. Symmetrical Licensing Condition for Upstream Contributions\n\n If You Distribute a work to Me specifically for inclusion in or\n modification of a Covered Work (a \"Patch\"), and no explicit licensing\n terms apply to the Patch, You license the Patch under this License, to\n the extent of Your copyright in the Patch. This condition does not\n negate the other conditions of this License, if applicable to the Patch.\n\n7. Nullification of Copyleft/Proprietary Dual Licensing\n\n If I offer to license, for a fee, a Covered Work under terms other than\n a license that is OSI-Approved or FSF-Free as of the release date of this\n License or a numbered version of copyleft-next released by the\n Copyleft-Next Project, then the license I grant You under section 1 is no\n longer subject to the conditions in sections 3 through 5.\n\n8. Copyleft Sunset\n\n The conditions in sections 3 through 5 no longer apply once fifteen\n years have elapsed from the date of My first Distribution of My Work\n under this License.\n\n9. Pass-Through\n\n When You Distribute a Covered Work, the recipient automatically receives\n a license to My Work from Me, subject to the terms of this License.\n\n10. Termination\n\n Your license grants under section 1 are automatically terminated if You\n\n a) fail to comply with the conditions of this License, unless You cure\n such noncompliance within thirty days after becoming aware of it, or\n\n b) initiate a patent infringement litigation claim (excluding\n declaratory judgment actions, counterclaims, and cross-claims)\n alleging that any part of My Work directly or indirectly infringes\n any patent.\n\n Termination of Your license grants extends to all copies of Covered\n Works You subsequently obtain. Termination does not terminate the\n rights of those who have received copies or rights from You subject to\n this License.\n\n To the extent permission to make copies of a Covered Work is necessary\n merely for running it, such permission is not terminable.\n\n11. Later License Versions\n\n The Copyleft-Next Project may release new versions of copyleft-next,\n designated by a distinguishing version number (\"Later Versions\").\n Unless I explicitly remove the option of Distributing Covered Works\n under Later Versions, You may Distribute Covered Works under any Later\n Version.\n\n** 12. No Warranty **\n** **\n** My Work is provided \"as-is\", without warranty. You bear the risk **\n** of using it. To the extent permitted by applicable law, each **\n** Distributor of My Work excludes the implied warranties of title, **\n** merchantability, fitness for a particular purpose and **\n** non-infringement. **\n\n** 13. Limitation of Liability **\n** **\n** To the extent permitted by applicable law, in no event will any **\n** Distributor of My Work be liable to You for any damages **\n** whatsoever, whether direct, indirect, special, incidental, or **\n** consequential damages, whether arising under contract, tort **\n** (including negligence), or otherwise, even where the Distributor **\n** knew or should have known about the possibility of such damages. **\n\n14. Severability\n\n The invalidity or unenforceability of any provision of this License\n does not affect the validity or enforceability of the remainder of\n this License. Such provision is to be reformed to the minimum extent\n necessary to make it valid and enforceable.\n\n15. Definitions\n\n \"Copyleft-Next Project\" means the project that maintains the source\n code repository at \n as of the release date of this License.\n\n \"Corresponding Source\" of a Covered Work in Object Code form means (i)\n the Source Code form of the Covered Work; (ii) all scripts,\n instructions and similar information that are reasonably necessary for\n a skilled developer to generate such Object Code from the Source Code\n provided under (i); and (iii) a list clearly identifying all Separate\n Works (other than those provided in compliance with (ii)) that were\n specifically used in building and (if applicable) installing the\n Covered Work (for example, a specified proprietary compiler including\n its version number). Corresponding Source must be machine-readable.\n\n \"Covered Work\" means My Work or a Derived Work.\n\n \"Derived Work\" means a work of authorship that copies from, modifies,\n adapts, is based on, is a derivative work of, transforms, translates or\n contains all or part of My Work, such that copyright permission is\n required. The following are not Derived Works: (i) Mere Aggregation;\n (ii) a mere reproduction of My Work; and (iii) if My Work fails to\n explicitly state an expectation otherwise, a work that merely makes\n reference to My Work.\n\n \"Distribute\" means to distribute, transfer or make a copy available to\n someone else, such that copyright permission is required.\n\n \"Distributor\" means Me and anyone else who Distributes a Covered Work.\n\n \"FSF-Free\" means classified as 'free' by the Free Software Foundation.\n\n \"GPL\" means a version of the GNU General Public License or the GNU\n Affero General Public License.\n\n \"I\"/\"Me\"/\"My\" refers to the individual or legal entity that places My\n Work under this License. \"You\"/\"Your\" refers to the individual or legal\n entity exercising rights in My Work under this License. A legal entity\n includes each entity that controls, is controlled by, or is under\n common control with such legal entity. \"Control\" means (a) the power to\n direct the actions of such legal entity, whether by contract or\n otherwise, or (b) ownership of more than fifty percent of the\n outstanding shares or beneficial ownership of such legal entity.\n\n \"Licensed Patents\" means all patent claims licensable royalty-free by\n Me, now or in the future, that are necessarily infringed by making,\n using, or selling My Work, and excludes claims that would be infringed\n only as a consequence of further modification of My Work.\n\n \"Mere Aggregation\" means an aggregation of a Covered Work with a\n Separate Work.\n\n \"My Work\" means the particular work of authorship I license to You\n under this License.\n\n \"Object Code\" means any form of a work that is not Source Code.\n\n \"OSI-Approved\" means approved as 'Open Source' by the Open Source\n Initiative.\n\n \"Separate Work\" means a work that is separate from and independent of a\n particular Covered Work and is not by its nature an extension or\n enhancement of the Covered Work, and/or a runtime library, standard\n library or similar component that is used to generate an Object Code\n form of a Covered Work.\n\n \"Source Code\" means the preferred form of a work for making\n modifications to it.", + "json": "copyleft-next-0.3.1.json", + "yaml": "copyleft-next-0.3.1.yml", + "html": "copyleft-next-0.3.1.html", + "license": "copyleft-next-0.3.1.LICENSE" + }, + { + "license_key": "corporate-accountability-1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-corporate-accountability-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The +CAL Software License Agreement Legal Notice\n\nThis Software is available without charge but subject to compliance obligations; you can redistribute and/or modify this Software under the terms of the +CAL Software License Agreement (the \"Agreement\"), as published by the Corporate Accountability Lab NFP (\"CAL\"), available here: https://www.legaldesign.org/cal-software-license. CAL is a 501(c)(3) non-profit organization based in Chicago, IL that designs legal solutions to protect people and the environment from corporate abuse. Through this Agreement, CAL seeks to empower producers of intellectual property to keep their intellectual property out of unethical supply chains and to support ethical and sustainable commercial use of intellectual property. \n\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; including without even the implied warranty of MERCHANTABILITY, NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. See the Agreement for more details.\n\nThe +CAL Software License Agreement (the \"Agreement\") (Version 1.1)\n\nBy exercising any of the rights licensed below, you (whether an individual or legal entity, the \"Licensee\") accept and agree to be bound by the terms and conditions of this Agreement. Licensee acknowledges and agrees that Licensee is granted the licensed rights set forth in Section 1 from the party listed above in the legal notice (whether an individual or legal entity, the \"Licensor\") in consideration of Licensee's acceptance of these terms and conditions, and Licensor grants Licensee such rights in consideration of benefits the Licensor receives from making the software and associated documentation files (the \"Software\") available under these terms and conditions. Licensor shall notify Corporate Accountability Lab (\"CAL\") of use of this Agreement by completing the form on the website at https://www.legaldesign.org/cal-software-license. Additional obligations apply only to use of the Software for Commercial Purpose, as stated in Sections 2(b) and 6(a). \"Commercial Purpose\" means any use of the Software other than for individual, personal, and non-business use and Commercial Purpose includes, without limitation, the (i) internal use of the Software (including Modified Software) for business purposes or (ii) Sharing (defined below) of the Software (including Modified Software) -- alone, in combination with, or embedded in other products or services that are made available to third parties -- for a fee or other consideration, or directly or indirectly in connection with any business.\n\nFor consideration Licensee and Licensor agree is satisfactory:\n\nSection 1. License.\n\n(a) Permission is hereby granted by Licensor, on a non-exclusive basis and free of charge to Licensee obtaining a copy of this Software, to use, copy, modify, merge, publish, distribute, embed in other products, sell copies of, or otherwise Share (defined below) the Software, and to permit persons to whom the Software is furnished to do all of the above, subject to compliance with the terms and conditions set forth in this Agreement. For the avoidance of doubt, nothing herein is intended to nor shall be interpreted to interfere with any \"fair use\" rights available under copyright law nor grant any rights that are not protected by copyright law.\n\n(b) Each time Licensee distributes, publishes, or otherwise makes the Software (or any component thereof) available to another person or entity in any manner (including embedded in another product) (\"Share\" or \"Sharing\"), the Licensee's recipient automatically receives a license from the original licensors, including Licensor, subject to this Agreement, and the recipient then becomes a Licensee that must comply with the terms of this Agreement.\n\n(c) If Licensee creates a modified version of the Software (including any derivative work thereof) (\"Modified Software\"), Licensee may in turn Share the Modified Software; provided, however, that Licensee must apply this Agreement (or a later version) to any Sharing of the Modified Software as further described in Section 2, in which event Licensee would become a licensor and its recipient(s) would become licensee(s) with respect to the Modified Software.\n\n(d) For the avoidance of doubt, Licensor may also offer the Software (but not Modified Software) under separate terms or conditions or stop distributing the Software at any time; however, doing so will not terminate this Agreement to Licensee nor Licensee's obligations pursuant to this Agreement.\n\nSection 2. License Conditions. The grant of rights stated in Section 1 is expressly made subject to ongoing compliance with the following conditions and restrictions (the \"Conditions\") which are hereby accepted and agreed to by Licensee as obligations:\n\n(a) Notice and Registration. The above legal notice shall be included in all copies or substantial portions of the Software (including Modified Software) in both the code (e.g., in comments included in the source and object code) and human readable form (e.g., in a \"readme\" file or credits screen). Corporate Accountability Lab requests, though does not require, that Licensee register its use of the Software (including Modified Software) with CAL by completing the form on the website at https://www.legaldesign.org/cal-software-license. For the avoidance of doubt, failure to register use shall not relieve Licensee from its obligations to comply with the Conditions of the Agreement.\n\n(b) Morals Clause for Safe and Environmentally Sustainable Supply Chains. If Licensee is a commercial entity, Licensee accepts a duty of care, as that term is used in tort law, delict law, and/or similar bodies of law closely related to tort and/or delict law, including without limitation, a requirement to act with the watchfulness, attention, caution, and prudence that a reasonable person in the circumstances would use (\"Duty of Care\") towards any person directly impacted by any supply chain utilizing the Software for Commercial Purposes (e.g., any person working in, or residing in proximity to, any supply chain activities, or person harmed in the production of Licensee's goods or provision of Licensee's services) and towards the environment directly impacted by any supply chain utilizing the Software for Commercial Purposes (e.g., any natural resources used in the production or manufacturing of Licensee's goods or provision of Licensee's services, or environment harmed by the disposal or removal of any by-products created during the production or manufacturing of Licensee's goods or provision of Licensee's services). If Licensee, its subsidiaries, affiliates, contractors, or suppliers should, during the term of this Agreement,\n\n engage in any negligent conduct with respect to any person directly impacted by any supply chain utilizing the Software for Commercial Purposes (e.g., violate any applicable labor law, fail to uphold a Duty of Care towards any worker or impacted person, fail to uphold a Licensee's own corporate-social responsibility commitments), or\n\n engage in any negligent conduct with respect to the environment directly impacted by any supply chain utilizing the Software for Commercial Purposes (e.g., violate any applicable environmental law, fail to conduct environmental impact assessments of supply chain activities or otherwise fail to uphold a Duty of Care towards the environment, fail to uphold Licensee's own environmental commitments),\n\nLicensor and any Third-Party Beneficiary, and only Licensor and any Third-Party Beneficiary, will have the right to terminate this Agreement for cause. This shall not be interpreted to include acts committed by individuals outside the scope of their employment. If the Agreement is terminated pursuant to this clause, Licensor, and any Third-Party Beneficiary will each have an independent right to seek appropriate remedies at law or equity.\n\nSection 3. No Warranties; Liability Limitations.\n\n(a) 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.\n\n(b) To the extent possible, in no event will the Licensor be liable to Licensee on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Agreement or use of the Software, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to Licensee.\n\n(c) Licensor and CAL make no representations or warranties regarding the Agreement, including its legal enforceability. The Agreement is offered on an \"AS IS\" basis and Licensor and Licensee agree to defend, indemnify, and hold CAL harmless from any claims relating to the use of the Agreement.\n\n(d) The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability.\n\nSection 4. Term; Survival.\n\n(a) Term and Termination. This Agreement applies for the term of the copyright in the Software licensed hereunder. However, if Licensee fails to comply with this Agreement, then all rights licensed hereunder terminate automatically.\n\n(b) Survival. Sections 2, 3, 4, 5, 6, 7, and 8 shall survive termination of this Agreement.\n\nSection 5. Equitable Relief; Non-Exclusive Remedies. The parties agree that irreparable damage would occur if any provision of Section 2 were not performed in accordance with the terms hereof by Licensee and that the Licensor and any Third-Party Beneficiary shall be entitled to equitable relief, including injunctive relief or specific performance of the terms hereof, in addition to any other remedy to which they are entitled at law or in equity.\n\nSection 6. Third-Party Beneficiaries.\n\n(a) Licensee acknowledges and agrees that the Conditions are intended to benefit and protect not only Licensor but also any person directly impacted by any supply chain utilizing the Software for Commercial Purposes by creating a Duty of Care relating to the Conditions. Any individual who is injured or suffers damages, including but not limited to workers, laborers, landowners, property owners, those residing in proximity to supply chain activities, survivors of those killed or disabled including but not limited to widows, widowers, children, and community members, due to Licensee's breach of a Duty of Care arising through this Agreement or due to negligent conduct proscribed in the Conditions, is an intended third-party beneficiary of this Agreement (\"Third-Party Beneficiary\"), having the independent right to seek enforcement of Sections 2, 4, 5, 6, 7, and 8 and any other available remedy at law and equity.\n\n(b) Except as expressly stated in this Agreement, there are no third-party beneficiaries of this Agreement.\n\nSection 7. Interpretation. For purposes of this Agreement, (a) the words \"include,\" \"includes,\" and \"including\" are deemed to be followed by the words \"without limitation\"; (b) the word \"or\" is not exclusive; and (c) the words \"herein,\" \"hereof,\" \"hereby,\" and \"hereunder\" refer to this Agreement as a whole. \"Conditions\" is to be read as both condition and covenant, actionable under both contract and copyright law to the extent permissible by law. Unless the context otherwise requires, references herein to a statute, regulation, treaty, guideline, and similar instruments means such statute, regulation, treaty, guideline, and similar instrument as amended from time to time and includes any successor thereto and any regulations promulgated thereunder. This Agreement shall be construed without regard to any presumption or rule requiring construction or interpretation against the party drafting an instrument or causing any instrument to be drafted.\n\n\nSection 8. Severability. To the extent possible, if any provision of this Agreement is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable; if the provision cannot be reformed, it shall be severed from this Agreement without affecting the enforceability of the remaining terms and conditions, and any such prohibition or unenforceability in any jurisdiction shall not invalidate or render unenforceable such provision in any other jurisdiction. Nothing in this Agreement constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or Licensee, including from the legal processes of any jurisdiction or authority to the extent such privileges and immunities may not be waived under applicable law.", + "json": "corporate-accountability-1.1.json", + "yaml": "corporate-accountability-1.1.yml", + "html": "corporate-accountability-1.1.html", + "license": "corporate-accountability-1.1.LICENSE" + }, + { + "license_key": "corporate-accountability-commercial-1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-accountability-commercial-1.1", + "other_spdx_license_keys": [ + "LicenseRef-scancode-corporate-accountability-commercial-1.1" + ], + "is_exception": true, + "is_deprecated": false, + "text": "The CC+CAL Commercial Use License Agreement Legal Notice\n\nThe CC+CAL Commercial Use License Agreement (the \"Agreement\") is intended to be used in tandem with any standard Creative Commons Public License that does not provide the public with rights to use licensed material for commercial purposes (i.e., a Creative Commons Public License that includes a NonCommercial restriction). Through this Agreement, licensors using a Creative Commons Public License grant additional permissions to the public to use the licensed material for commercial purposes subject to a Morals Clause for Safe and Environmentally Sustainable Supply Chains set forth in this Agreement. For the avoidance of doubt, this Agreement does not modify or customize any Creative Commons Public License. This Agreement is a separate and independent agreement intended to exist alongside a Creative Commons Public License, granting additional permissions not provided by the Creative Commons Public License that pertain specifically to the commercial use of licensed material and the use of licensed material to promote safe and environmentally sustainable supply chains.\n\nThe CC+CAL Commercial Use License Agreement is published by the Corporate Accountability Lab NFP (\"CAL\"). CAL is a 501(c)(3) non-profit organization based in Chicago, IL that designs legal solutions to protect people and the environment from corporate abuse. Through this Agreement, CAL seeks to empower producers of intellectual property to keep their intellectual property out of unethical supply chains and to support ethical and environmentally sustainable commercial use of intellectual property. CAL is not affiliated with Creative Commons and makes no representations as to Creative Commons' opinion of this Agreement or of CAL. \n\nMore information about Creative Commons Public Licenses can be found at https://creativecommons.org/choose/.\n\nMore information about CCPlus, which denotes the combination of a Creative Commons official license (unmodified and verbatim) with another separate and independent agreement granting more permissions (here, this Agreement), can be found at https://wiki.creativecommons.org/wiki/CCPlus.\n\n \nThe CC+CAL Commercial Use License Agreement (the \"Agreement\") (Version 1.1)\n\nBy exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Agreement. To the extent this Agreement may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions.\n\nSection 1 - Definitions.\n\na. Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Agreement, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synced in timed relation with a moving image.\n\nb. Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Agreement.\n\nc. Commercial means primarily intended for or directed towards commercial advantage or monetary compensation. For purposes of this Agreement, the exchange of the Licensed Material for other material subject to Copyright and Similar Rights by digital file-sharing or similar means is Commercial if there is payment of monetary compensation or payment in other goods in connection with the exchange.\n\nd. Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Agreement, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.\n\ne. Duty of Care means a duty of care as used in tort law, delict law, and/or similar bodies of law closely related to tort and/or delict law. For the purposes of this Agreement, a Duty of Care includes, without limitation, a requirement to act with the watchfulness, attention, caution, and prudence that a reasonable person in the circumstances would use.\n\nf. Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements.\n\ng. Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material.\n\nh. Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Agreement.\n\ni. Licensed Rights means the rights granted to You subject to the terms and conditions of this Agreement, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license.\n\nj. Licensor means the individual(s) or entity(ies) granting rights under this Agreement.\n\nk. Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them.\n\nl. Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.\n\nm. You means the individual or entity exercising the Licensed Rights under this Agreement. Your has a corresponding meaning.\n\nSection 2 - Scope\n\na. License grant.\n\n Subject to the terms and conditions of this Agreement, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to:\n\nA. reproduce and Share the Licensed Material, in whole or in part, for Commercial purposes only; and\n\nB. produce, reproduce, and Share Adapted Material for Commercial purposes only.\n\n2. Exceptions and Limitations.\n\nA. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Agreement does not apply, and You do not need to comply with its terms and conditions.\n\nB. For the avoidance of doubt, this Agreement does not alter, supersede, or terminate any Licensed Rights to the Licensed Material extended by a NonCommercial Creative Commons Public License.\n\n3.Term. The term of this Agreement is specified in Section 6(a).\n\n4. Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Agreement, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material.\n\n5. Downstream recipients.\n\nA. Offer from the Licensor - Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Agreement.\n\nB. No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material.\n\n6. No endorsement. Nothing in this Agreement constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor, others designated to receive attribution as provided in Section 3(b)(1)(A)(i), or Corporate Accountability Lab.\n\nb. Other rights.\n\n Aside from any moral rights that are exercised by Licensor by including the Morals Clause for Safe and Environmentally Sustainable Supply Chains in Section 3(a), moral rights, such as the right of integrity, are not licensed under this Agreement, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise.\n\n Patent and trademark rights are not licensed under this Agreement.\n\n To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties, including when the Licensed Material is used for Commercial purposes after Your rights under this Agreement have been terminated pursuant to Section 6(a).\n\nSection 3 - License Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the following conditions.\n\na. Morals Clause for Safe and Environmentally Sustainable Supply Chains. If You are a commercial entity and You exercise the Licensed Rights for Commercial purposes, You accept:\n\n1. a Duty of Care towards any person directly impacted by any supply chain utilizing the Licensed Material for Commercial purposes (e.g., any person working in, or residing in proximity to, any supply chain activities, or person harmed in the production of Your goods or provision of Your services), and\n\n2. a Duty of Care towards the environment directly impacted by any supply chain utilizing the Licensed Material for Commercial purposes (e.g., any natural resources used in the production or manufacturing of Your goods or provision of Your services, or environment harmed by the disposal or removal of any by-products created during the production or manufacturing of Your goods or provision of Your services).\n\nb. Attribution.\n\n1. If You Share the Licensed Material (including in modified form), You must:\n\nA. retain the following if it is supplied by the Licensor with the Licensed Material:\n\ni. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated);\n\nii. a copyright notice;\n\niii. a notice that refers to this Agreement;\n\niv. a notice that refers to the disclaimer of warranties;\n\nv. a URI or hyperlink to the Licensed Material to the extent reasonably practicable;\n\nB. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and\n\nC. indicate the Licensed Material is licensed under this Agreement, and include the text of, or the URI or hyperlink to, this Agreement.\n\n2. You may satisfy the conditions in Section 3(b)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information.\n\n3. If requested by the Licensor, You must remove any of the information required by Section 3(b)(1)(A) to the extent reasonably practicable.\n\n4. If You Share Adapted Material You produce, the Adapter's License You apply must not prevent recipients of the Adapted Material from complying with this Agreement.\n\nSection 4 - Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:\n\na. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database for Commercial purposes, subject to the terms and conditions of this Agreement;\n\nb. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material; and\n\nc. You must comply with the conditions in Section 3(b) if You Share all or a substantial portion of the contents of the database.\n\nFor the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Agreement where the Licensed Rights include other Copyright and Similar Rights.\n\nSection 5 - Disclaimer of Warranties and Limitation of Liability.\n\na. Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.\n\nb. To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Agreement or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.\n\nc. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability.\n\nSection 6 - Term and Termination.\n\na. This Agreement applies for the term of the Copyright and Similar Rights licensed here. However, if You, Your subsidiaries, affiliates, contractors, or suppliers should, during the term of this Agreement,\n\n engage in any negligent conduct or conduct in violation of Section 3.a. of this agreement, with respect to any person directly impacted by any supply chain utilizing the Licensed Material for Commercial purposes (e.g., violate any applicable labor law, fail to uphold a Duty of Care towards any worker or impacted person, fail to uphold Your own corporate-social responsibility commitments), or\n engage in any negligent conduct or conduct in violation of Section 3.a. of this agreement, with respect to the environment directly impacted by any supply chain utilizing the Licensed Material for Commercial purposes (e.g., violate any applicable environmental law, fail to conduct environmental impact assessments of supply chain activities or otherwise fail to uphold a Duty of Care towards the environment, fail to uphold Your own environmental commitments),\n\nYour rights under this Agreement terminate automatically. For the avoidance of doubt, termination pursuant to this Section 6(a) shall not be triggered by any negligent conduct committed by individuals acting outside the scope of their employment for You, Your subsidiaries, affiliates, contractors, or suppliers.\n\nb. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates:\n\n automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or\n\n upon express reinstatement by the Licensor.\n\nFor the avoidance of doubt, this Section 6(b) does not affect any right the Licensor and any third-party beneficiary may have to seek remedies for Your violations of this Agreement.\n\nc. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Agreement.\n\nd. Sections 1, 5, 6, 7, 8 and 9 survive termination of this Agreement.\n\nSection 7 -- Third-Party Beneficiaries.\n\na. Licensor intends the terms of Section 3(a) to benefit and protect not only Licensor but also any person directly impacted by any supply chain utilizing the Licensed Material for Commercial purposes. Any individual who is injured, harmed, or otherwise suffers damages, including but not limited to workers, laborers, landowners, property owners, those residing in proximity to supply chain activities, survivors of those killed or disabled including but not limited to widows, widowers, children, and community members, due to Your breach of a Duty of Care arising through this Agreement or through negligent conduct proscribed in Section 6(a)(1)-(2), is an intended third-party beneficiary of this Agreement, having the independent right to seek remedies for Your violations of this Agreement, including but not limited to termination of Your Licensed Rights.\n\nb. Except as expressly stated in this Agreement, there are no third-party beneficiaries of this Agreement.\n\nSection 8 - Other Terms and Conditions.\n\na. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed.\n\nb. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Agreement.\n\nSection 9 - Interpretation.\n\na. For the avoidance of doubt, this Agreement does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Agreement.\n\nb. To the extent possible, if any provision of this Agreement is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Agreement without affecting the enforceability of the remaining terms and conditions.\n\nc. No term or condition of this Agreement will be waived and no failure to comply consented to unless expressly agreed to by the Licensor.\n\nNothing in this Agreement constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.", + "json": "corporate-accountability-commercial-1.1.json", + "yaml": "corporate-accountability-commercial-1.1.yml", + "html": "corporate-accountability-commercial-1.1.html", + "license": "corporate-accountability-commercial-1.1.LICENSE" + }, + { + "license_key": "cosl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cosl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Cougaar Open Source License \n\nThe Cougaar Open Source License (COSL) is a modified version of the OSI \napproved BSD License. Sections 3 and 4 have been modified. \n\nCOSL License : \n\nRedistribution and use in source and binary forms, with or without \nmodification, are permitted provided that the following conditions \nare met: \n\n1. Redistributions of source code must retain the original author's copyright notice, \nthis list of conditions and the following disclaimer. \n\n2. Redistributions in binary form must reproduce the original author's copyright \nnotice, this list of conditions and the following disclaimer in the \ndocumentation and/or other materials provided with the distribution. \n\n3. The end-user documentation included with the redistribution, if \nany, must include the following acknowledgement: \"This product includes \nsoftware developed in part by support from the Defense Advanced Research \nProject Agency (DARPA).\" \n\n4. Neither the name of the DARPA nor the names of its contributors may \nbe used to endorse or promote products derived from this software without \nspecific prior written permission. \n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT \nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR \nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT \nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, \nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED \nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR \nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF \nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING \nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS \nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "cosl.json", + "yaml": "cosl.yml", + "html": "cosl.html", + "license": "cosl.LICENSE" + }, + { + "license_key": "cosli", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-cosli", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Civilian Open Source License (COSLi)\n-------------------------------------------------------------------------------\n\nCopyright (c) 2017-2019 The Fieldtracks Project. All rights reserved.\n\nBased on the OpenSSL License // Copyright (c) The OpenSSL Project\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. The software must not be used for millitary purposes. This includes:\n (i) use in the context of military operations (i.e. trainings, maneuvers,\n combat), (ii) use by armed forces, private military companies and\n intelligence services and (iii) use in cooperation with such\n organisations. Please contact info@fieldtracks.org for:\n - A written permission in dual-use situations.\n - Clarification for a specific application, organisation or\n use-case.\n - Re-licensing for inclusion in other OpenSource projects (i.e. GPL\n based ones).\n\n2. Redistributions of source code must retain the above copyright\n notice, this list of conditions, this restriction on military usage\n and the following disclaimer.\n\n3. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions, this restriction on military usage\n and the following disclaimer in the documentation and/or other\n materials provided with the distribution.\n\n4. All advertising materials mentioning features or use of this\n software must display the following acknowledgment:\n \"This product includes software developed by the fieldtracks Project\n (https://www.fieldtracks.org/)\"\n\n5. The name \"Fieldtracks\" must not be used to\n endorse or promote products derived from this software without\n prior written permission. For written permission, please contact\n info@fieldtracks.org.\n\n6. Products derived from this software may not be called \"Fieldtracks\"\n nor may \"Fieldtracks\" appear in their names without prior written\n permission of the Fieldtracks Project.\n\n7. Redistributions of any form whatsoever must retain the restriction on\n military usage and following acknowledgment:\n \"This product includes software developed by the Fieldtracks Project\n (https://fieldtracks.org/) - military use is forbidden\"\n\nTHIS SOFTWARE IS PROVIDED BY THE Fieldtracks PROJECT ``AS IS'' AND ANY\nEXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE Fieldtracks PROJECT OR\nITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\nOF THE POSSIBILITY OF SUCH DAMAGE. MILITARY USAGE IS FORBIDDEN.", + "json": "cosli.json", + "yaml": "cosli.yml", + "html": "cosli.html", + "license": "cosli.LICENSE" + }, + { + "license_key": "couchbase-community", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-couchbase-community", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "COUCHBASE INC. COMMUNITY EDITION LICENSE AGREEMENT\n\nIMPORTANT-READ CAREFULLY: BY CLICKING THE \"I ACCEPT\" BOX OR\nINSTALLING, DOWNLOADING OR OTHERWISE USING THIS SOFTWARE AND ANY\nASSOCIATED DOCUMENTATION, YOU, ON BEHALF OF YOURSELF OR AS AN\nAUTHORIZED REPRESENTATIVE ON BEHALF OF AN ENTITY (\"LICENSEE\") AGREE TO\nALL THE TERMS OF THIS COMMUNITY EDITION LICENSE AGREEMENT (THE\n\"AGREEMENT\") REGARDING YOUR USE OF THE SOFTWARE. YOU REPRESENT AND\nWARRANT THAT YOU HAVE FULL LEGAL AUTHORITY TO BIND THE LICENSEE TO\nTHIS AGREEMENT. IF YOU DO NOT AGREE WITH ALL OF THESE TERMS, DO NOT\nSELECT THE \"I ACCEPT\" BOX AND DO NOT INSTALL, DOWNLOAD OR OTHERWISE\nUSE THE SOFTWARE. THE EFFECTIVE DATE OF THIS AGREEMENT IS THE DATE ON\nWHICH YOU CLICK \"I ACCEPT\" OR OTHERWISE INSTALL, DOWNLOAD OR USE THE\nSOFTWARE.\n\n1. License Grant. Couchbase Inc. hereby grants Licensee, free of\ncharge, the non-exclusive right to use, copy, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nLicensee including the following copyright notice in all copies or\nsubstantial portions of the Software:\n\nCouchbase (r)\nhttp://www.Couchbase.com \nCopyright 2010 Couchbase, Inc.\n\nAs used in this Agreement, \"Software\" means the object code version of\nthe applicable elastic data management server software provided by\nCouchbase Inc..\n\n2. Support. Couchbase Inc. will provide Licensee with access to, and\nuse of, the Couchbase Inc. support forum available at the following\nURL: http://couchbase.com . Couchbase Inc. may, at its discretion,\nmodify, suspend or terminate support at any time upon notice to\nLicensee.\n\n3. Warranty Disclaimer and Limitation of Liability. THE SOFTWARE IS\nPROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\nINCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT\nSHALL COUCHBASE INC. OR THE AUTHORS OR COPYRIGHT HOLDERS IN THE\nSOFTWARE BE LIABLE FOR ANY CLAIM, DAMAGES (IINCLUDING, WITHOUT\nLIMITATION, DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES) OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.", + "json": "couchbase-community.json", + "yaml": "couchbase-community.yml", + "html": "couchbase-community.html", + "license": "couchbase-community.LICENSE" + }, + { + "license_key": "couchbase-enterprise", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-couchbase-enterprise", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "COUCHBASE INC. ENTERPRISE LICENSE AGREEMENT - FREE EDITION\n\nIMPORTANT-READ CAREFULLY: BY CLICKING THE \"I ACCEPT\" BOX OR INSTALLING,\nDOWNLOADING OR OTHERWISE USING THIS SOFTWARE AND ANY ASSOCIATED\nDOCUMENTATION, YOU, ON BEHALF OF YOURSELF OR AS AN AUTHORIZED\nREPRESENTATIVE ON BEHALF OF AN ENTITY (\"LICENSEE\") AGREE TO ALL THE\nTERMS OF THIS ENTERPRISE LICENSE AGREEMENT - FREE EDITION (THE\n\"AGREEMENT\") REGARDING YOUR USE OF THE SOFTWARE. YOU REPRESENT AND\nWARRANT THAT YOU HAVE FULL LEGAL AUTHORITY TO BIND THE LICENSEE TO THIS\nAGREEMENT. IF YOU DO NOT AGREE WITH ALL OF THESE TERMS, DO NOT SELECT\nTHE \"I ACCEPT\" BOX AND DO NOT INSTALL, DOWNLOAD OR OTHERWISE USE THE\nSOFTWARE. THE EFFECTIVE DATE OF THIS AGREEMENT IS THE DATE ON WHICH YOU\nCLICK \"I ACCEPT\" OR OTHERWISE INSTALL, DOWNLOAD OR USE THE SOFTWARE.\n\n1. License Grant. Subject to Licensee's compliance with the terms and\nconditions of this Agreement, Couchbase Inc. hereby grants to Licensee a\nperpetual, non-exclusive, non-transferable, non-sublicensable,\nroyalty-free, limited license to install and use the Software only for\nLicensee's own internal production use on up to two (2) Licensed Servers\nor for Licensee's own internal non-production use for the purpose of\nevaluation and/or development on an unlimited number of Licensed\nServers.\n\n2. Restrictions. Licensee will not: (a) copy or use the Software in any\nmanner except as expressly permitted in this Agreement; (b) use or\ndeploy the Software on any server in excess of the Licensed Servers for\nwhich Licensee has paid the applicable Subscription Fee unless it is\ncovered by a valid license; (c) transfer, sell, rent, lease, lend,\ndistribute, or sublicense the Software to any third party; (d) use the\nSoftware for providing time-sharing services, service bureau services or\nas part of an application services provider or as a service offering\nprimarily designed to offer the functionality of the Software; (e)\nreverse engineer, disassemble, or decompile the Software (except to the\nextent such restrictions are prohibited by law); (f) alter, modify,\nenhance or prepare any derivative work from or of the Software; (g)\nalter or remove any proprietary notices in the Software; (h) make\navailable to any third party the functionality of the Software or any\nlicense keys used in connection with the Software; (i) publically\ndisplay or communicate the results of internal performance testing or\nother benchmarking or performance evaluation of the Software; or (j)\nexport the Software in violation of U.S. Department of Commerce export\nadministration rules or any other export laws or regulations.\n\n3. Proprietary Rights. The Software, and any modifications or\nderivatives thereto, is and shall remain the sole property of Couchbase\nInc. and its licensors, and, except for the license rights granted\nherein, Couchbase Inc. and its licensors retain all right, title and\ninterest in and to the Software, including all intellectual property\nrights therein and thereto. The Software may include third party open\nsource software components. If Licensee is the United States Government\nor any contractor thereof, all licenses granted hereunder are subject to\nthe following: (a) for acquisition by or on behalf of civil agencies, as\nnecessary to obtain protection as \"commercial computer software\" and\nrelated documentation in accordance with the terms of this Agreement and\nas specified in Subpart 12.1212 of the Federal Acquisition Regulation\n(FAR), 48 C.F.R.12.1212, and its successors; and (b) for acquisition by\nor on behalf of the Department of Defense (DOD) and any agencies or\nunits thereof, as necessary to obtain protection as \"commercial computer\nsoftware\" and related documentation in accordance with the terms of this\nAgreement and as specified in Subparts 227.7202-1 and 227.7202-3 of the\nDOD FAR Supplement, 48 C.F.R.227.7202-1 and 227.7202-3, and its\nsuccessors. Manufacturer is Couchbase, Inc.\n\n4. Support. Couchbase Inc. will provide Licensee with: (a) periodic\nSoftware updates to correct known bugs and errors to the extent\nCouchbase Inc. incorporates such corrections into the free edition\nversion of the Software; and (b) access to, and use of, the Couchbase\nInc. support forum available at the following URL:\nhttp://www.couchbase.org/forums/. Licensee must have Licensed Servers\nat the same level of Support Services for all instances in a production\ndeployment running the Software. Licensee must also have Licensed\nServers at the same level of Support Services for all instances in a\ndevelopment and test environment running the Software, although these\nSupport Services may be at a different level than the production\nLicensed Servers. Couchbase Inc. may, at its discretion, modify,\nsuspend or terminate support at any time upon notice to Licensee.\n\n5. Records Retention and Audit. Licensee shall maintain complete and\naccurate records to permit Couchbase Inc. to verify the number of\nLicensed Servers used by Licensee hereunder. Upon Couchbase Inc.'s\nwritten request, Licensee shall: (a) provide Couchbase Inc. with such\nrecords within ten (10) days; and (b) will furnish Couchbase Inc. with a\ncertification signed by an officer of Licensee verifying that the\nSoftware is being used pursuant to the terms of this Agreement. Upon at\nleast thirty (30) days prior written notice, Couchbase Inc. may audit\nLicensee's use of the Software to ensure that Licensee is in compliance\nwith the terms of this Agreement. Any such audit will be conducted\nduring regular business hours at Licensee's facilities and will not\nunreasonably interfere with Licensee's business activities. Licensee\nwill provide Couchbase Inc. with access to the relevant Licensee records\nand facilities. If an audit reveals that Licensee has used the Software\nin excess of the authorized Licensed Servers, then (i) Couchbase Inc.\nwill invoice Licensee, and Licensee will promptly pay Couchbase Inc.,\nthe applicable licensing fees for such excessive use of the Software,\nwhich fees will be based on Couchbase Inc.'s price list in effect at the\ntime the audit is completed; and (ii) Licensee will pay Couchbase Inc.'s\nreasonable costs of conducting the audit.\n\n6. Confidentiality. Licensee and Couchbase Inc. will maintain the\nconfidentiality of Confidential Information. The receiving party of any\nConfidential Information of the other party agrees not to use such\nConfidential Information for any purpose except as necessary to fulfill\nits obligations and exercise its rights under this Agreement. The\nreceiving party shall protect the secrecy of and prevent disclosure and\nunauthorized use of the disclosing party's Confidential Information\nusing the same degree of care that it takes to protect its own\nconfidential information and in no event shall use less than reasonable\ncare. The terms of this Confidentiality section shall survive\ntermination of this Agreement. Upon termination or expiration of this\nAgreement, the receiving party will, at the disclosing party's option,\npromptly return or destroy (and provide written certification of such\ndestruction) the disclosing party's Confidential Information.\n\n7. Disclaimer of Warranty. THE SOFTWARE AND ANY SERVICES PROVIDED\nHEREUNDER ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. COUCHBASE\nINC. DOES NOT WARRANT THAT THE SOFTWARE OR THE SERVICES PROVIDED\nHEREUNDER WILL MEET LICENSEE'S REQUIREMENTS, THAT THE SOFTWARE WILL\nOPERATE IN THE COMBINATIONS LICENSEE MAY SELECT FOR USE, THAT THE\nOPERATION OF THE SOFTWARE WILL BE ERROR-FREE OR UNINTERRUPTED OR THAT\nALL SOFTWARE ERRORS WILL BE CORRECTED. COUCHBASE INC. HEREBY DISCLAIMS\nALL WARRANTIES, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED\nTO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\nPURPOSE, NON-INFRINGEMENT, TITLE, AND ANY WARRANTIES ARISING OUT OF\nCOURSE OF DEALING, USAGE OR TRADE.\n\n8. Agreement Term and Termination. The term of this Agreement shall\nbegin on the Effective Date and will continue until terminated by the\nparties. Licensee may terminate this Agreement for any reason, or for no\nreason, by providing at least ten (10) days prior written notice to\nCouchbase Inc. Couchbase Inc. may terminate this Agreement if Licensee\nmaterially breaches its obligations hereunder and, where such breach is\ncurable, such breach remains uncured for ten (10) days following written\nnotice of the breach. Licensee acknowledges that the Software may\ncontain a license key with a time-out mechanism that will suspend and/or\nterminate Licensee's use of the Software upon termination of this\nAgreement. Upon termination of this Agreement, Licensee will, at\nCouchbase Inc.'s option, promptly return or destroy (and provide written\ncertification of such destruction) the applicable Software and all\ncopies and portions thereof, in all forms and types of media. The\nfollowing sections will survive termination or expiration of this\nAgreement: Sections 2, 3, 6, 7, 8, 9, 10 and 11.\n\n9. Limitation of Liability. TO THE MAXIMUM EXTENT PERMITTED BY\nAPPLICABLE LAW, IN NO EVENT WILL COUCHBASE INC. OR ITS LICENSORS BE\nLIABLE TO LICENSEE OR TO ANY THIRD PARTY FOR ANY INDIRECT, SPECIAL,\nINCIDENTAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES OR FOR THE COST OF\nPROCURING SUBSTITUTE PRODUCTS OR SERVICES ARISING OUT OF OR IN ANY WAY\nRELATING TO OR IN CONNECTION WITH THIS AGREEMENT OR THE USE OF OR\nINABILITY TO USE THE SOFTWARE OR DOCUMENTATION OR THE SERVICES PROVIDED\nBY COUCHBASE INC. HEREUNDER INCLUDING, WITHOUT LIMITATION, DAMAGES OR\nOTHER LOSSES FOR LOSS OF USE, LOSS OF BUSINESS, LOSS OF GOODWILL, WORK\nSTOPPAGE, LOST PROFITS, LOSS OF DATA, COMPUTER FAILURE OR ANY AND ALL\nOTHER COMMERCIAL DAMAGES OR LOSSES EVEN IF ADVISED OF THE POSSIBILITY\nTHEREOF AND REGARDLESS OF THE LEGAL OR EQUITABLE THEORY (CONTRACT, TORT\nOR OTHERWISE) UPON WHICH THE CLAIM IS BASED. IN NO EVENT WILL COUCHBASE\nINC.'S OR ITS LICENSORS' AGGREGATE LIABILITY TO LICENSEE, FROM ALL\nCAUSES OF ACTION AND UNDER ALL THEORIES OF LIABILITY, EXCEED ONE\nTHOUSAND DOLLARS (US $1,000). The parties expressly acknowledge and\nagree that Couchbase Inc. has set its prices and entered into this\nAgreement in reliance upon the limitations of liability specified\nherein, which allocate the risk between Couchbase Inc. and Licensee and\nform a basis of the bargain between the parties.\n\n10. General. Couchbase Inc. shall not be liable for any delay or failure\nin performance due to causes beyond its reasonable control. Neither\nparty will, without the other party's prior written consent, make any\nnews release, public announcement, denial or confirmation of this\nAgreement, its value, or its terms and conditions, or in any manner\nadvertise or publish the fact of this Agreement. Notwithstanding the\nabove, Couchbase Inc. may use Licensee's name and logo, consistent with\nLicensee's trademark policies, on customer lists so long as such use in\nno way promotes either endorsement or approval of Couchbase Inc. or any\nCouchbase Inc. products or services. Licensee may not assign this\nAgreement, in whole or in part, by operation of law or otherwise,\nwithout Couchbase Inc.'s prior written consent. Any attempt to assign\nthis Agreement, without such consent, will be null and of no effect.\nSubject to the foregoing, this Agreement will bind and inure to the\nbenefit of each party's successors and permitted assigns. If for any\nreason a court of competent jurisdiction finds any provision of this\nAgreement invalid or unenforceable, that provision of the Agreement will\nbe enforced to the maximum extent permissible and the other provisions\nof this Agreement will remain in full force and effect. The failure by\neither party to enforce any provision of this Agreement will not\nconstitute a waiver of future enforcement of that or any other\nprovision. All waivers must be in writing and signed by both parties.\nAll notices permitted or required under this Agreement shall be in\nwriting and shall be delivered in person, by confirmed facsimile,\novernight courier service or mailed by first class, registered or\ncertified mail, postage prepaid, to the address of the party specified\nabove or such other address as either party may specify in writing. Such\nnotice shall be deemed to have been given upon receipt. This Agreement\nshall be governed by the laws of the State of California, U.S.A.,\nexcluding its conflicts of law rules. The parties expressly agree that\nthe UN Convention for the International Sale of Goods (CISG) will not\napply. Any legal action or proceeding arising under this Agreement will\nbe brought exclusively in the federal or state courts located in the\nNorthern District of California and the parties hereby irrevocably\nconsent to the personal jurisdiction and venue therein. Any amendment or\nmodification to the Agreement must be in writing signed by both parties.\nThis Agreement constitutes the entire agreement and supersedes all prior\nor contemporaneous oral or written agreements regarding the subject\nmatter hereof. To the extent there is a conflict between this Agreement\nand the terms of any \"shrinkwrap\" or \"clickwrap\" license included in any\npackage, media, or electronic version of Couchbase Inc.-furnished\nsoftware, the terms and conditions of this Agreement will control. Each\nof the parties has caused this Agreement to be executed by its duly\nauthorized representatives as of the Effective Date. Except as expressly\nset forth in this Agreement, the exercise by either party of any of its\nremedies under this Agreement will be without prejudice to its other\nremedies under this Agreement or otherwise. The parties to this\nAgreement are independent contractors and this Agreement will not\nestablish any relationship of partnership, joint venture, employment,\nfranchise, or agency between the parties. Neither party will have the\npower to bind the other or incur obligations on the other's behalf\nwithout the other's prior written consent.\n\n11. Definitions. Capitalized terms used herein shall have the following\ndefinitions: \"Confidential Information\" means any proprietary\ninformation received by the other party during, or prior to entering\ninto, this Agreement that a party should know is confidential or\nproprietary based on the circumstances surrounding the disclosure\nincluding, without limitation, the Software and any non-public technical\nand business information. Confidential Information does not include\ninformation that (a) is or becomes generally known to the public through\nno fault of or breach of this Agreement by the receiving party; (b) is\nrightfully known by the receiving party at the time of disclosure\nwithout an obligation of confidentiality; (c) is independently developed\nby the receiving party without use of the disclosing party's\nConfidential Information; or (d) the receiving party rightfully obtains\nfrom a third party without restriction on use or disclosure.\n\"Documentation\" means any technical user guides or manuals provided by\nCouchbase Inc. related to the Software. \"Licensed Server\" means an\ninstance of the Software running on one (1) operating system. Each\noperating system instance may be running directly on physical hardware,\nin a virtual machine, or on a cloud server. \"Couchbase Website\" means\nwww.couchbase.com.\"Software\" means the object code version of the\napplicable elastic data management server software provided by Couchbase\nInc. and ordered by Licensee during the ordering process on the\nCouchbase Website. If you have any questions regarding this Agreement,\nplease contact us at 650-417-7500.", + "json": "couchbase-enterprise.json", + "yaml": "couchbase-enterprise.yml", + "html": "couchbase-enterprise.html", + "license": "couchbase-enterprise.LICENSE" + }, + { + "license_key": "cpal-1.0", + "category": "Copyleft", + "spdx_license_key": "CPAL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Common Public Attribution License Version 1.0 (CPAL)\n1.\t\"Definitions\"\n1.0.1\t\"Commercial Use\" means distribution or otherwise making the Covered Code available to a third party.\n1.1\t\"Contributor\" means each entity that creates or contributes to the creation of Modifications.\n1.2\t\"Contributor Version\" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor.\n1.3\t\"Covered Code\" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof.\n1.4\t\"Electronic Distribution Mechanism\" means a mechanism generally accepted in the software development community for the electronic transfer of data.\n1.5\t\"Executable\" means Covered Code in any form other than Source Code.\n1.6\t\"Initial Developer\" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A.\n1.7\t\"Larger Work\" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License.\n1.8\t\"License\" means this document.\n1.8.1\t\"Licensable\" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein.\n1.9\t\"Modifications\" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is:\nA.\tAny addition to or deletion from the contents of a file containing Original Code or previous Modifications.\nB.\tAny new file that contains any part of the Original Code or previous Modifications.\n1.10\t\"Original Code\" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License.\n1.10.1\t\"Patent Claims\" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor.\n1.11\t\"Source Code\" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor\u2019s choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge.\n1.12\t\"You\" (or \"Your\") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, \"You\" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, \"control\" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n2.\tSource Code License.\n2.1\tThe Initial Developer Grant.\nThe Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims:\n(a)\tunder intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and\n(b)\tunder Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof).\n(c)\tthe licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License.\n(d)\tNotwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices.\n2.2\tContributor Grant.\nSubject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license\n(a)\tunder intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and\n(b)\tunder Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination).\n(c)\tthe licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code.\n(d)\tNotwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor.\n3.\tDistribution Obligations.\n3.1\tApplication of License.\nThe Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients\u2019 rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5.\n3.2\tAvailability of Source Code.\nAny Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n3.3\tDescription of Modifications.\nYou must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code.\n3.4\tIntellectual Property Matters\n(a)\tThird Party Claims.\nIf Contributor has knowledge that a license under a third party\u2019s intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled \"LEGAL\" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained.\n(b)\tContributor APIs.\nIf Contributor\u2019s Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file.\n(c)\tRepresentations.\nContributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor\u2019s Modifications are Contributor\u2019s original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License.\n3.5\tRequired Notices.\nYou must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients\u2019 rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer.\n3.6\tDistribution of Executable Versions.\nYou may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients\u2019 rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient\u2019s rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer, Original Developer or any Contributor. You hereby agree to indemnify the Initial Developer, Original Developer and every Contributor for any liability incurred by the Initial Developer, Original Developer or such Contributor as a result of any such terms You offer.\n3.7\tLarger Works.\nYou may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code.\n4.\tInability to Comply Due to Statute or Regulation.\nIf it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n5.\tApplication of this License.\nThis License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code.\n6.\tVersions of the License.\n6.1\tNew Versions.\nSocialtext, Inc. (\"Socialtext\") may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number.\n6.2\tEffect of New Versions.\nOnce Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Socialtext. No one other than Socialtext has the right to modify the terms applicable to Covered Code created under this License.\n6.3\tDerivative Works.\nIf You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases \"Socialtext\", \"CPAL\" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the CPAL. (Filling in the name of the Initial Developer, Original Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.)\n7.\tDISCLAIMER OF WARRANTY.\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER, ORIGINAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n8.\tTERMINATION.\n8.1\tThis License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.\n8.2\tIf You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer, Original Developer or a Contributor (the Initial Developer, Original Developer or Contributor against whom You file such action is referred to as \"Participant\") alleging that:\n(a)\tsuch Participant\u2019s Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above.\n(b)\tany software, hardware, or device, other than such Participant\u2019s Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant.\n8.3\tIf You assert a patent infringement claim against Participant alleging that such Participant\u2019s Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license.\n8.4\tIn the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination.\n9.\tLIMITATION OF LIABILITY.\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ORIGINAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY\u2019S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n10.\tU.S. GOVERNMENT END USERS.\nThe Covered Code is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n11.\tMISCELLANEOUS.\nThis License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys\u2019 fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n12.\tRESPONSIBILITY FOR CLAIMS.\nAs between Initial Developer, Original Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer, Original Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n13.\tMULTIPLE-LICENSED CODE.\nInitial Developer may designate portions of the Covered Code as Multiple-Licensed. Multiple-Licensed means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the CPAL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A.\n14.\tADDITIONAL TERM: ATTRIBUTION\n(a)\tAs a modest attribution to the organizer of the development of the Original Code (\"Original Developer\"), in the hope that its promotional value may help justify the time, money and effort invested in writing the Original Code, the Original Developer may include in Exhibit B (\"Attribution Information\") a requirement that each time an Executable and Source Code or a Larger Work is launched or initially run (which includes initiating a session), a prominent display of the Original Developer\u2019s Attribution Information (as defined below) must occur on the graphic user interface employed by the end user to access such Covered Code (which may include display on a splash screen), if any. The size of the graphic image should be consistent with the size of the other elements of the Attribution Information. If the access by the end user to the Executable and Source Code does not create a graphic user interface for access to the Covered Code, this obligation shall not apply. If the Original Code displays such Attribution Information in a particular form (such as in the form of a splash screen, notice at login, an \"about\" display, or dedicated attribution area on user interface screens), continued use of such form for that Attribution Information is one way of meeting this requirement for notice.\n(b)\tAttribution information may only include a copyright notice, a brief phrase, graphic image and a URL (\"Attribution Information\") and is subject to the Attribution Limits as defined below. For these purposes, prominent shall mean display for sufficient duration to give reasonable notice to the user of the identity of the Original Developer and that if You include Attribution Information or similar information for other parties, You must ensure that the Attribution Information for the Original Developer shall be no less prominent than such Attribution Information or similar information for the other party. For greater certainty, the Original Developer may choose to specify in Exhibit B below that the above attribution requirement only applies to an Executable and Source Code resulting from the Original Code or any Modification, but not a Larger Work. The intent is to provide for reasonably modest attribution, therefore the Original Developer cannot require that You display, at any time, more than the following information as Attribution Information: (a) a copyright notice including the name of the Original Developer; (b) a word or one phrase (not exceeding 10 words); (c) one graphic image provided by the Original Developer; and (d) a URL (collectively, the \"Attribution Limits\").\n(c)\tIf Exhibit B does not include any Attribution Information, then there are no requirements for You to display any Attribution Information of the Original Developer.\n(d)\tYou acknowledge that all trademarks, service marks and/or trade names contained within the Attribution Information distributed with the Covered Code are the exclusive property of their owners and may only be used with the permission of their owners, or under circumstances otherwise permitted by law or as expressly set out in this License.\n15.\tADDITIONAL TERM: NETWORK USE.\nThe term \"External Deployment\" means the use, distribution, or communication of the Original Code or Modifications in any way such that the Original Code or Modifications may be used by anyone other than You, whether those works are distributed or communicated to those persons or made available as an application intended for use over a network. As an express condition for the grants of license hereunder, You must treat any External Deployment by You of the Original Code or Modifications as a distribution under section 3.1 and make Source Code available under Section 3.2.\n\n\nEXHIBIT A. Common Public Attribution License Version 1.0.\n\"The contents of this file are subject to the Common Public Attribution License Version 1.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . The License is based on the Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover use of software over a computer network and provide for limited attribution for the Original Developer. In addition, Exhibit A has been modified to be consistent with Exhibit B.\nSoftware distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.\nThe Original Code is .\nThe Original Developer is not the Initial Developer and is . If left blank, the Original Developer is the Initial Developer.\nThe Initial Developer of the Original Code is . All portions of the code written by are Copyright (c) . All Rights Reserved.\nContributor .\nAlternatively, the contents of this file may be used under the terms of the license (the [ ] License), in which case the provisions of [ ] License are applicable instead of those above.\nIf you wish to allow use of your version of this file only under the terms of the [ ] License and not to allow others to use your version of this file under the CPAL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [ ] License. If you do not delete the provisions above, a recipient may use your version of this file under either the CPAL or the [ ] License.\"\n[NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.]\n\n\nEXHIBIT B. Attribution Information\nAttribution Copyright Notice: \nAttribution Phrase (not exceeding 10 words): \nAttribution URL: \nGraphic Image as provided in the Covered Code, if any.\nDisplay of Attribution Information is [required/not required] in Larger Works which are defined in the CPAL as a work which combines Covered Code or portions thereof with code not governed by the terms of the CPAL.", + "json": "cpal-1.0.json", + "yaml": "cpal-1.0.yml", + "html": "cpal-1.0.html", + "license": "cpal-1.0.LICENSE" + }, + { + "license_key": "cpl-0.5", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cpl-0.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Common Public License Version 0.5\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC\nLICENSE (\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM\nCONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n\n1. DEFINITIONS\n\n\"Contribution\" means:\n\n a) in the case of the initial Contributor, the initial code and\n documentation distributed under this Agreement, and\n\n b) in the case of each subsequent Contributor:\n\n i) changes to the Program, and\n\n ii) additions to the Program;\n\n where such changes and/or additions to the Program originate from and are\n distributed by that particular Contributor. A Contribution 'originates' from\n a Contributor if it was added to the Program by such Contributor itself or\n anyone acting on such Contributor's behalf. Contributions do not include\n additions to the Program which: (i) are separate modules of software\n distributed in conjunction with the Program under their own license\n agreement, and (ii) are not derivative works of the Program.\n\n\"Contributor\" means any person or entity that distributes the Program.\n\n\"Licensed Patents \" mean patent claims licensable by a Contributor which are \nnecessarily infringed by the use or sale of its Contribution alone or when\ncombined with the Program.\n\n\"Program\" means the Contributions distributed in accordance with this Agreement.\n\n\"Recipient\" means anyone who receives the Program under this Agreement,\nincluding all Contributors.\n\n2. GRANT OF RIGHTS\n\n a) Subject to the terms of this Agreement, each Contributor hereby grants\n Recipient a non-exclusive, worldwide, royalty-free copyright license to\n reproduce, prepare derivative works of, publicly display, publicly perform,\n distribute and sublicense the Contribution of such Contributor, if any, and\n such derivative works, in source code and object code form.\n\n b) Subject to the terms of this Agreement, each Contributor hereby grants\n Recipient a non-exclusive, worldwide, royalty-free patent license under\n Licensed Patents to make, use, sell, offer to sell, import and otherwise\n transfer the Contribution of such Contributor, if any, in source code and\n object code form. This patent license shall apply to the combination of the\n Contribution and the Program if, at the time the Contribution is added by\n the Contributor, such addition of the Contribution causes such combination\n to be covered by the Licensed Patents. The patent license shall not apply to\n any other combinations which include the Contribution. No hardware per se is\n licensed hereunder.\n\n c) Recipient understands that although each Contributor grants the licenses\n to its Contributions set forth herein, no assurances are provided by any\n Contributor that the Program does not infringe the patent or other\n intellectual property rights of any other entity. Each Contributor disclaims\n any liability to Recipient for claims brought by any other entity based on\n infringement of intellectual property rights or otherwise. As a condition to\n exercising the rights and licenses granted hereunder, each Recipient hereby\n assumes sole responsibility to secure any other intellectual property rights\n needed, if any. For example, if a third party patent license is required to\n allow Recipient to distribute the Program, it is Recipient's responsibility\n to acquire that license before distributing the Program.\n\n d) Each Contributor represents that to its knowledge it has sufficient\n copyright rights in its Contribution, if any, to grant the copyright license\n set forth in this Agreement.\n\n3. REQUIREMENTS\n\nA Contributor may choose to distribute the Program in object code form under its\nown license agreement, provided that:\n\n a) it complies with the terms and conditions of this Agreement; and\n\n b) its license agreement:\n\n i) effectively disclaims on behalf of all Contributors all warranties and\n conditions, express and implied, including warranties or conditions of title\n and non-infringement, and implied warranties or conditions of\n merchantability and fitness for a particular purpose;\n\n ii) effectively excludes on behalf of all Contributors all liability for\n damages, including direct, indirect, special, incidental and consequential\n damages, such as lost profits;\n\n iii) states that any provisions which differ from this Agreement are offered\n by that Contributor alone and not by any other party; and\n\n iv) states that source code for the Program is available from such\n Contributor, and informs licensees how to obtain it in a reasonable manner\n on or through a medium customarily used for software exchange.\n\nWhen the Program is made available in source code form:\n\n a) it must be made available under this Agreement; and\n\n b) a copy of this Agreement must be included with each copy of the Program.\n\nContributors may not remove or alter any copyright notices contained within the\nProgram.\n\nEach Contributor must identify itself as the originator of its Contribution, if\nany, in a manner that reasonably allows subsequent Recipients to identify the\noriginator of the Contribution.\n\n4. COMMERCIAL DISTRIBUTION\n\nCommercial distributors of software may accept certain responsibilities with\nrespect to end users, business partners and the like. While this license is\nintended to facilitate the commercial use of the Program, the Contributor who\nincludes the Program in a commercial product offering should do so in a manner\nwhich does not create potential liability for other Contributors. Therefore, if\na Contributor includes the Program in a commercial product offering, such\nContributor (\"Commercial Contributor\") hereby agrees to defend and indemnify\nevery other Contributor (\"Indemnified Contributor\") against any losses, damages\nand costs (collectively \"Losses\") arising from claims, lawsuits and other legal\nactions brought by a third party against the Indemnified Contributor to the\nextent caused by the acts or omissions of such Commercial Contributor in\nconnection with its distribution of the Program in a commercial product\noffering. The obligations in this section do not apply to any claims or Losses\nrelating to any actual or alleged intellectual property infringement. In order\nto qualify, an Indemnified Contributor must: a) promptly notify the Commercial\nContributor in writing of such claim, and b) allow the Commercial Contributor to\ncontrol, and cooperate with the Commercial Contributor in, the defense and any\nrelated settlement negotiations. The Indemnified Contributor may participate in\nany such claim at its own expense.\n\nFor example, a Contributor might include the Program in a commercial product\noffering, Product X. That Contributor is then a Commercial Contributor. If that\nCommercial Contributor then makes performance claims, or offers warranties\nrelated to Product X, those performance claims and warranties are such\nCommercial Contributor's responsibility alone. Under this section, the\nCommercial Contributor would have to defend claims against the other\nContributors related to those performance claims and warranties, and if a court\nrequires any other Contributor to pay any damages as a result, the Commercial\nContributor must pay those damages.\n\n5. NO WARRANTY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN\n\"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR\nIMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each\nRecipient is solely responsible for determining the appropriateness of using and\ndistributing the Program and assumes all risks associated with its exercise of\nrights under this Agreement, including but not limited to the risks and costs of\nprogram errors, compliance with applicable laws, damage to or loss of data,\nprograms or equipment, and unavailability or interruption of operations.\n\n6. DISCLAIMER OF LIABILITY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY\nCONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST\nPROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS\nGRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. GENERAL\n\nIf any provision of this Agreement is invalid or unenforceable under applicable\nlaw, it shall not affect the validity or enforceability of the remainder of the\nterms of this Agreement, and without further action by the parties hereto, such\nprovision shall be reformed to the minimum extent necessary to make such\nprovision valid and enforceable.\n\nIf Recipient institutes patent litigation against a Contributor with respect to\na patent applicable to software (including a cross-claim or counterclaim in a\nlawsuit), then any patent licenses granted by that Contributor to such Recipient\nunder this Agreement shall terminate as of the date such litigation is filed. In\naddition, If Recipient institutes patent litigation against any entity\n(including a cross-claim or counterclaim in a lawsuit) alleging that the Program\nitself (excluding combinations of the Program with other software or hardware)\ninfringes such Recipient's patent(s), then such Recipient's rights granted under\nSection 2(b) shall terminate as of the date such litigation is filed.\n\nAll Recipient's rights under this Agreement shall terminate if it fails to\ncomply with any of the material terms or conditions of this Agreement and does\nnot cure such failure in a reasonable period of time after becoming aware of\nsuch noncompliance. If all Recipient's rights under this Agreement terminate,\nRecipient agrees to cease use and distribution of the Program as soon as\nreasonably practicable. However, Recipient's obligations under this Agreement\nand any licenses granted by Recipient relating to the Program shall continue and\nsurvive.\n\nEveryone is permitted to copy and distribute copies of this Agreement, but in\norder to avoid inconsistency the Agreement is copyrighted and may only be\nmodified in the following manner. The Agreement Steward reserves the right to\npublish new versions (including revisions) of this Agreement from time to time.\nNo one other than the Agreement Steward has the right to modify this Agreement.\nIBM is the initial Agreement Steward. IBM may assign the responsibility to serve\nas the Agreement Steward to a suitable separate entity. Each new version of the\nAgreement will be given a distinguishing version number. The Program (including\nContributions) may always be distributed subject to the version of the Agreement\nunder which it was received. In addition, after a new version of the Agreement\nis published, Contributor may elect to distribute the Program (including its\nContributions) under the new version. Except as expressly stated in Sections\n2(a) and 2(b) above, Recipient receives no rights or licenses to the\nintellectual property of any Contributor under this Agreement, whether\nexpressly, by implication, estoppel or otherwise. All rights in the Program not\nexpressly granted under this Agreement are reserved.\n\nThis Agreement is governed by the laws of the State of New York and the\nintellectual property laws of the United States of America. No party to this\nAgreement will bring a legal action under this Agreement more than one year\nafter the cause of action arose. Each party waives its rights to a jury trial in\nany resulting litigation.", + "json": "cpl-0.5.json", + "yaml": "cpl-0.5.yml", + "html": "cpl-0.5.html", + "license": "cpl-0.5.LICENSE" + }, + { + "license_key": "cpl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "CPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Common Public License - v 1.0\n\nUpdated 16 Apr 2009\n\nAs of 25 Feb 2009, IBM has assigned the Agreement Steward role for the CPL to the Eclipse Foundation. Eclipse has designated the Eclipse Public License (EPL) as the follow-on version of the CPL.\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE (\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n\n\n1. DEFINITIONS\n\n\"Contribution\" means:\n\na) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and\nb) in the case of each subsequent Contributor:\ni)\t changes to the Program, and\nii)\t additions to the Program;\nwhere such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.\n\n\"Contributor\" means any person or entity that distributes the Program.\n\n\n\"Licensed Patents \" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.\n\n\n\"Program\" means the Contributions distributed in accordance with this Agreement.\n\n\n\"Recipient\" means anyone who receives the Program under this Agreement, including all Contributors.\n\n\n2. GRANT OF RIGHTS\n\na)\tSubject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.\nb) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.\nc)\tRecipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.\nd)\tEach Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.\n3. REQUIREMENTS\n\nA Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:\n\na)\tit complies with the terms and conditions of this Agreement; and\nb)\tits license agreement:\ni)\teffectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;\nii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;\niii)\tstates that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and\niv)\tstates that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.\nWhen the Program is made available in source code form:\n\na)\tit must be made available under this Agreement; and\nb)\ta copy of this Agreement must be included with each copy of the Program.\n\nContributors may not remove or alter any copyright notices contained within the Program.\n\n\nEach Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.\n\n\n4. COMMERCIAL DISTRIBUTION\n\nCommercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor (\"Commercial Contributor\") hereby agrees to defend and indemnify every other Contributor (\"Indemnified Contributor\") against any losses, damages and costs (collectively \"Losses\") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.\n\n\nFor example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.\n\n\n5. NO WARRANTY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED 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. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.\n\n\n6. DISCLAIMER OF LIABILITY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n\n7. GENERAL\n\nIf any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\n\nIf Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.\n\n\nAll Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.\n\n\nEveryone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.\n\n\nThis Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.", + "json": "cpl-1.0.json", + "yaml": "cpl-1.0.yml", + "html": "cpl-1.0.html", + "license": "cpl-1.0.LICENSE" + }, + { + "license_key": "cpm-2022", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cpm-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Let this paragraph represent a right to use, distribute, modify, enhance, and otherwise \nmake available in a nonexclusive manner CP/M and its derivatives. This right comes from \nthe company, DRDOS, Inc.'s purchase of Digital Research, the company and all assets, \ndating back to the mid-1990's. DRDOS, Inc. and I, Bryan Sparks, President of DRDOS, \nInc. as its representative, is the owner of CP/M and the successor in interest of \nDigital Research assets.", + "json": "cpm-2022.json", + "yaml": "cpm-2022.yml", + "html": "cpm-2022.html", + "license": "cpm-2022.LICENSE" + }, + { + "license_key": "cpol-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-cpol-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Code Project Open License (CPOL) 1.0\n\n***** Preamble *****\nThis License governs Your use of the Work. This License is intended to allow\ndevelopers to use the Source Code and Executable Files provided as part of the\nWork in any application in any form.\nThe main points subject to the terms of the License are:\n * Source Code and Executable Files can be used in commercial applications;\n * Source Code and Executable Files can be redistributed; and\n * Source Code can be modified to create derivative works.\n * No claim of suitability, guarantee, or any warranty whatsoever is\n provided. The software is provided \"as-is\".\nThis License is entered between You, the individual or other entity reading or\notherwise making use of the Work licensed pursuant to this License and the\nindividual or other entity which offers the Work under the terms of this\nLicense (\"Author\").\n***** License *****\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT\nOPEN LICENSE (\"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER\nAPPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE\nOR COPYRIGHT LAW IS PROHIBITED.\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO\nBE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS\nCONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND\nCONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS\nLICENSE, YOU CANNOT MAKE ANY USE OF THE WORK.\n 1. Definitions.\n 1. \"Articles\" means, collectively, all articles written by Author\n which describes how the Source Code and Executable Files for the\n Work may be used by a user.\n 2. \"Author\" means the individual or entity that offers the Work under\n the terms of this License.\n 3. \"Derivative Work\" means a work based upon the Work or upon the Work\n and other pre-existing works.\n 4. \"Executable Files\" refer to the executables, binary files,\n configuration and any required data files included in the Work.\n 5. \"Publisher\" means the provider of the website, magazine, CD-ROM,\n DVD or other medium from or by which the Work is obtained by You.\n 6. \"Source Code\" refers to the collection of source code and\n configuration files used to create the Executable Files.\n 7. \"Standard Version\" refers to such a Work if it has not been\n modified, or has been modified in accordance with the consent of\n the Author, such consent being in the full discretion of the\n Author.\n 8. \"Work\" refers to the collection of files distributed by the\n Publisher, including the Source Code, Executable Files, binaries,\n data files, documentation, whitepapers and the Articles.\n 9. \"You\" is you, an individual or entity wishing to use the Work and\n exercise your rights under this License.\n 2. Fair Use/Fair Use Rights. Nothing in this License is intended to reduce,\n limit, or restrict any rights arising from fair use, fair dealing, first\n sale or other limitations on the exclusive rights of the copyright owner\n under copyright law or other applicable laws.\n 3. License Grant. Subject to the terms and conditions of this License, the\n Author hereby grants You a worldwide, royalty-free, non-exclusive,\n perpetual (for the duration of the applicable copyright) license to\n exercise the rights in the Work as stated below:\n 1. You may use the standard version of the Source Code or Executable\n Files in Your own applications.\n 2. You may apply bug fixes, portability fixes and other modifications\n obtained from the Public Domain or from the Author. A Work modified\n in such a way shall still be considered the standard version and\n will be subject to this License.\n 3. You may otherwise modify Your copy of this Work (excluding the\n Articles) in any way to create a Derivative Work, provided that You\n insert a prominent notice in each changed file stating how, when\n and where You changed that file.\n 4. You may distribute the standard version of the Executable Files and\n Source Code or Derivative Work in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial)\n software distribution.\n 5. The Articles discussing the Work published in any form by the\n author may not be distributed or republished without the Author's\n consent. The author retains copyright to any such Articles. You may\n use the Executable Files and Source Code pursuant to this License\n but you may not repost or republish or otherwise distribute or make\n available the Articles, without the prior written consent of the\n Author.\n Any subroutines or modules supplied by You and linked into the Source\n Code or Executable Files this Work shall not be considered part of this\n Work and will not be subject to the terms of this License.\n 4. Patent License. Subject to the terms and conditions of this License, each\n Author hereby grants to You a perpetual, worldwide, non-exclusive, no-\n charge, royalty-free, irrevocable (except as stated in this section)\n patent license to make, have made, use, import, and otherwise transfer\n the Work.\n 5. Restrictions. The license granted in Section 3 above is expressly made\n subject to and limited by the following restrictions:\n 1. You agree not remove any of the original copyright, patent,\n trademark, and attribution notices and associated disclaimers that\n may appear in the Source Code or Executable Files.\n 2. You agree not to advertise or in any way imply that this Work is a\n product of Your own.\n 3. The name of the Author may not be used to endorse or promote\n products derived from the Work without the prior written consent of\n the Author.\n 4. You agree not to sell, lease, or rent any part of the Work.\n 5. You may distribute the Executable Files and Source Code only under\n the terms of this License, and You must include a copy of, or the\n Uniform Resource Identifier for, this License with every copy of\n the Executable Files or Source Code You distribute and ensure that\n anyone receiving such Executable Files and Source Code agrees that\n the terms of this License apply to such Executable Files and/or\n Source Code. You may not offer or impose any terms on the Work that\n alter or restrict the terms of this License or the recipients'\n exercise of the rights granted hereunder. You may not sublicense\n the Work. You must keep intact all notices that refer to this\n License and to the disclaimer of warranties. You may not distribute\n the Executable Files or Source Code with any technological measures\n that control access or use of the Work in a manner inconsistent\n with the terms of this License.\n 6. You agree not to use the Work for illegal, immoral or improper\n purposes, or on pages containing illegal, immoral or improper\n material. The Work is subject to applicable export laws. You agree\n to comply with all such laws and regulations that may apply to the\n Work after Your receipt of the Work.\n 6. Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED \"AS\n IS\", \"WHERE IS\" AND \"AS AVAILABLE\", WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN\n ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT,\n SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR\n STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION,\n WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR\n FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-\n INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT,\n USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON\n WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS.\n 7. Indemnity.You agree to defend, indemnify and hold harmless the Author and\n the Publisher from and against any claims, suits, losses, damages,\n liabilities, costs, and expenses (including reasonable legal or\n attorneys\u00e2\u0080\u0099 fees) resulting from or relating to any use of the Work by\n You.\n 8. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW,\n IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY\n LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR\n EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR\n OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGES.\n 9. Termination.\n 1. This License and the rights granted hereunder will terminate\n automatically upon any breach by You of any term of this License.\n Individuals or entities who have received Derivative Works from You\n under this License, however, will not have their licenses\n terminated provided such individuals or entities remain in full\n compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and\n 11 will survive any termination of this License.\n 2. If You bring a copyright, trademark, patent or any other\n infringement claim against any contributor over infringements You\n claim are made by the Work, your License from such contributor to\n the Work ends automatically.\n 3. Subject to the above terms and conditions, this License is\n perpetual (for the duration of the applicable copyright in the\n Work). Notwithstanding the above, the Author reserves the right to\n release the Work under different license terms or to stop\n distributing the Work at any time; provided, however that any such\n election will not serve to withdraw this License (or any other\n license that has been, or is required to be, granted under the\n terms of this License), and this License will continue in full\n force and effect unless terminated as stated above.\n 10. Publisher. The parties hereby confirm that the Publisher shall not, under\n any circumstances, be responsible for and shall not have any liability in\n respect of the subject matter of this License. The Publisher makes no\n warranty whatsoever in connection with the Work and shall not be liable\n to You or any party on any legal theory for any damages whatsoever,\n including without limitation any general, special, incidental or\n consequential damages arising in connection to this license. The\n Publisher reserves the right to cease making the Work available to You at\n any time without notice\n 11. Miscellaneous\n 1. This License shall be governed by the laws of the location of the\n head office of the Author or if the Author is an individual, the\n laws of location of the principal place of residence of the Author.\n 2. If any provision of this License is invalid or unenforceable under\n applicable law, it shall not affect the validity or enforceability\n of the remainder of the terms of this License, and without further\n action by the parties to this License, such provision shall be\n reformed to the minimum extent necessary to make such provision\n valid and enforceable.\n 3. No term or provision of this License shall be deemed waived and no\n breach consented to unless such waiver or consent shall be in\n writing and signed by the party to be charged with such waiver or\n consent.\n 4. This License constitutes the entire agreement between the parties\n with respect to the Work licensed herein. There are no\n understandings, agreements or representations with respect to the\n Work not specified herein. The Author shall not be bound by any\n additional provisions that may appear in any communication from\n You. This License may not be modified without the mutual written\n agreement of the Author and You.", + "json": "cpol-1.0.json", + "yaml": "cpol-1.0.yml", + "html": "cpol-1.0.html", + "license": "cpol-1.0.LICENSE" + }, + { + "license_key": "cpol-1.02", + "category": "Free Restricted", + "spdx_license_key": "CPOL-1.02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Code Project Open License (CPOL) 1.02\n\nPreamble\n\nThis License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form.\n\nThe main points subject to the terms of the License are:\n\n * Source Code and Executable Files can be used in commercial applications;\n * Source Code and Executable Files can be redistributed; and\n * Source Code can be modified to create derivative works.\n * No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided \"as-is\".\n * The Article accompanying the Work may not be distributed or republished without the Author's consent\n\nThis License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License (\"Author\").\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE (\"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK.\n\n 1. Definitions.\n 1. \"Articles\" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user.\n 2. \"Author\" means the individual or entity that offers the Work under the terms of this License.\n 3. \"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works.\n 4. \"Executable Files\" refer to the executables, binary files, configuration and any required data files included in the Work.\n 5. \"Publisher\" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You.\n 6. \"Source Code\" refers to the collection of source code and configuration files used to create the Executable Files.\n 7. \"Standard Version\" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author.\n 8. \"Work\" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles.\n 9. \"You\" is you, an individual or entity wishing to use the Work and exercise your rights under this License.\n 2. Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n 3. License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\n 1. You may use the standard version of the Source Code or Executable Files in Your own applications.\n 2. You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License.\n 3. You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file.\n 4. You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution.\n 5. The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author.\n Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License.\n 4. Patent License. Subject to the terms and conditions of this License, each Author 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, import, and otherwise transfer the Work.\n 5. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\n 1. You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files.\n 2. You agree not to advertise or in any way imply that this Work is a product of Your own.\n 3. The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author.\n 4. You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented.\n 5. You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License.\n 6. You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work.\n 6. Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED \"AS IS\", \"WHERE IS\" AND \"AS AVAILABLE\", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS.\n 7. Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys\u2019 fees) resulting from or relating to any use of the Work by You.\n 8. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n 9. Termination.\n 1. This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License.\n 2. If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically.\n 3. Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n 10. Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice\n 11. Miscellaneous\n 1. This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author.\n 2. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n 3. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\n 4. This License constitutes the entire agreement between the parties with respect to the Work licensed herein. There are no understandings, agreements or representations with respect to the Work not specified herein. The Author shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Author and You.", + "json": "cpol-1.02.json", + "yaml": "cpol-1.02.yml", + "html": "cpol-1.02.html", + "license": "cpol-1.02.LICENSE" + }, + { + "license_key": "cpp-core-guidelines", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cpp-core-guidelines", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Standard C++ Foundation grants you a worldwide, nonexclusive, royalty-free,\nperpetual license to copy, use, modify, and create derivative works from this\nproject for your personal or internal business use only. The above copyright\nnotice and this permission notice shall be included in all copies or\nsubstantial portions of the project. This license does not grant permission\nto use the trade names, trademarks, service marks, or product names of the\nlicensor, except as required for reasonable and customary use in describing\nthe origin of the project.\n\nStandard C++ Foundation reserves the right to accept contributions to the\nproject at its discretion.\n\nBy contributing material to this project, you grant Standard C++ Foundation,\nand those who receive the material directly or indirectly from Standard C++\nFoundation, a perpetual, worldwide, non-exclusive, royalty-free, irrevocable,\ntransferrable license to reproduce, prepare derivative works of, publicly\ndisplay, publicly perform, and distribute your contributed material and such\nderivative works, and to sublicense any or all of the foregoing rights to third\nparties for commercial or non-commercial use. You also grant Standard C++\nFoundation, and those who receive the material directly or indirectly from\nStandard C++ Foundation, a perpetual, worldwide, non-exclusive, royalty-free,\nirrevocable license under your patent claims that directly read on your\ncontributed material to make, have made, use, offer to sell, sell and import\nor otherwise dispose of the material. You warrant that your material is your\noriginal work, or that you have the right to grant the above licenses.\n\nTHE PROJECT IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE PROJECT OR THE USE OR OTHER DEALINGS IN THE\nPROJECT.\n\nIf you believe that anything in the project infringes your copyright, please\ncontact us at admin@isocpp.org with your contact information and a detailed\ndescription of your intellectual property, including a specific URL where you\nbelieve your intellectual property is being infringed.", + "json": "cpp-core-guidelines.json", + "yaml": "cpp-core-guidelines.yml", + "html": "cpp-core-guidelines.html", + "license": "cpp-core-guidelines.LICENSE" + }, + { + "license_key": "crapl-0.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-crapl-0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " THE CRAPL v0 BETA 1\n\n\n0. Information about the CRAPL\n\nIf you have questions or concerns about the CRAPL, or you need more\ninformation about this license, please contact:\n\n Matthew Might\n http://matt.might.net/\n\n\nI. Preamble\n\nScience thrives on openness.\n\nIn modern science, it is often infeasible to replicate claims without\naccess to the software underlying those claims.\n\nLet's all be honest: when scientists write code, aesthetics and\nsoftware engineering principles take a back seat to having running,\nworking code before a deadline.\n\nSo, let's release the ugly. And, let's be proud of that.\n\n\nII. Definitions\n\n1. \"This License\" refers to version 0 beta 1 of the Community\n Research and Academic Programming License (the CRAPL). \n\n2. \"The Program\" refers to the medley of source code, shell scripts,\n executables, objects, libraries and build files supplied to You,\n or these files as modified by You.\n\n [Any appearance of design in the Program is purely coincidental and\n should not in any way be mistaken for evidence of thoughtful\n software construction.]\n\n3. \"You\" refers to the person or persons brave and daft enough to use\n the Program.\n\n4. \"The Documentation\" refers to the Program.\n\n5. \"The Author\" probably refers to the caffeine-addled graduate\n student that got the Program to work moments before a submission\n deadline.\n\n\nIII. Terms\n\n1. By reading this sentence, You have agreed to the terms and\n conditions of this License.\n \n2. If the Program shows any evidence of having been properly tested\n or verified, You will disregard this evidence.\n\n3. You agree to hold the Author free from shame, embarrassment or\n ridicule for any hacks, kludges or leaps of faith found within the\n Program.\n\n4. You recognize that any request for support for the Program will be\n discarded with extreme prejudice.\n\n5. The Author reserves all rights to the Program, except for any\n rights granted under any additional licenses attached to the\n Program.\n\n\nIV. Permissions\n\n1. You are permitted to use the Program to validate published\n scientific claims.\n\n2. You are permitted to use the Program to validate scientific claims\n submitted for peer review, under the condition that You keep\n modifications to the Program confidential until those claims have\n been published.\n \n3. You are permitted to use and/or modify the Program for the\n validation of novel scientific claims if You make a good-faith\n attempt to notify the Author of Your work and Your claims prior to\n submission for publication.\n \n4. If You publicly release any claims or data that were supported or\n generated by the Program or a modification thereof, in whole or in\n part, You will release any inputs supplied to the Program and any\n modifications You made to the Progam. This License will be in\n effect for the modified program.\n\n\nV. Disclaimer of Warranty\n\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT\nWARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND\nPERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE\nDEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR\nCORRECTION.\n\n\nVI. Limitation of Liability\n\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR\nCONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES\nARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT\nNOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR\nLOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM\nTO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER\nPARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.", + "json": "crapl-0.1.json", + "yaml": "crapl-0.1.yml", + "html": "crapl-0.1.html", + "license": "crapl-0.1.LICENSE" + }, + { + "license_key": "crashlytics-agreement-2018", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-crashlytics-agreement-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Last Updated: July 23, 2018\n\nThis Crashlytics Agreement (\"Agreement\") is entered into by Crashlytics (defined as either: (a) Google Ireland Limited, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Your principal place of business (for entities) or place of residence (for individuals) is in any country within Europe, the Middle East, or Africa (\"EMEA\"), (b) Google Asia Pacific Pte. Ltd., with offices at 8 Marina View Asia Square 1 #30-01 Singapore 018960, if Your principal place of business (for entities) or place of residence (for individuals) is in any country within the Asia Pacific region (\"APAC\"), or (c) Google LLC, with offices at 1600 Amphitheatre Parkway, Mountain View, California 94043, if Your principal place of business (for entities) or place of residence (for individuals) is in any country in the world other than those in EMEA and APAC) and you (\"Developer\" or \"You\") and governs your access and use of www.crashlytics.com and the Crashlytics crash reporting and beta testing solution (collectively, the \"Services\" as more fully described below). If You are accessing or using the Services on behalf of a company or other legal entity, You represent and warrant that You are an authorized representative of that entity and have the authority to bind such entity to this Agreement, in which case the terms \"Developer\" and \"You\" shall refer to such entity. You and Crashlytics hereby agree as follows:\n\nYOUR RIGHT TO ACCESS AND USE THE SERVICES IS EXPRESSLY CONDITIONED ON ACCEPTANCE OF THIS AGREEMENT. BY ACCESSING OR USING THE SERVICES, YOU AGREE TO BE BOUND BY THIS AGREEMENT. IF YOU ARE ACCESSING OR USING THE SERVICES ON BEHALF OF YOUR EMPLOYER OR ANOTHER ENTITY (\"ENTITY\"), YOU AGREE TO PROVIDE CRASHLYTICS WITH THE NAME OF THE ENTITY AND OBTAIN CRASHLYTICS'S APPROVAL TO USE THE SOFTWARE ON YOUR BEHALF AND BEHALF OF THE ENTITY AND YOU AGREE TO REMAIN RESPONSIBLE AND LIABLE FOR YOUR AND SUCH ENTITY'S COMPLIANCE WITH THIS AGREEMENT. FURTHER, YOU REPRESENT AND WARRANT THAT: (I) YOU ARE THE AUTHORIZED AGENT OF THE APPLICABLE ENTITY AND HAVE THE LEGAL AUTHORITY TO ENTER INTO THE AGREEMENT ON BEHALF OF YOURSELF AND THE ENTITY, AND (II) YOU HAVE OBTAINED, ON BEHALF OF YOURSELF AND THE ENTITY (IF APPLICABLE), ALL NECESSARY RIGHTS, WAIVERS, CONSENTS AND PERMISSIONS NECESSARY TO COLLECT, USE, STORE, AND SHARE USER INFORMATION IN CONNECTION WITH THE SOFTWARE.\n\nEffective November 20, 2015, this Agreement does not cover www.answers.io or the related \"Answers\" service, which is a software development kit and associated services focused on analysis and computation of the behavior and usage of mobile applications, including app analytics, event tracking, and conversion tracking. If you use Answers, then please consult the Answers Agreement, which is the contract governing your use of Answers. If you have questions regarding this Agreement, please contact Crashlytics at support@crashlytics.com.\n\nSECTION 1. OVERVIEW OF THE SERVICES\n\n1.1 The Services provide a reporting solution for developers of mobile applications, including publicly released mobile applications (\"Application(s)\"), and facilitates Developers' ability to invite certain designated users (\"Beta Tester(s)\") to test mobile applications that have not yet been publicly released (\"Beta Application(s)\"). The Services provide information to Developers about the functioning of Applications and Beta Applications they own or manage, including, but not limited to, information about how and under what circumstances such applications crashed and how many users interact with such applications and how they do so.\n\nSECTION 2. SPECIFIC TERMS FOR DEVELOPERS\n\n2.1 Service and Access Credentials. Developer will provide reasonable cooperation, assistance, information and access to Crashlytics as may be necessary to initiate Developer's use of the Services. During the Term, and subject to Developer's compliance with all terms and conditions of this Agreement, Crashlytics will provide Developer with access to the Services. As part of the implementation process, Developer will identify a user name and password that will be used to set up Developer's account. Developer will not share its user name or password with any third party and will be responsible and liable for the acts or omissions of any person who accesses the Services using passwords or access procedures provided to Developer. Crashlytics reserves the right to refuse registration of, or to suspend or cancel, login IDs used by Developer to access the Services for any reason, including if Developer violates the terms and conditions set forth in this Agreement.\n\n2.2 License to Developer. During the Term, and subject to all terms and conditions of this Agreement (as a condition to the grants below), Crashlytics grants Developer and Developer accepts a nonexclusive, nontransferable right and license (without right to sublicense) to: (a) access and use the Services, solely for the purpose of accessing and downloading the Software (defined below) and assessing the performance of its own Applications and Beta Applications for Developer's internal business purposes; and (b) download, install and use a reasonable number of copies of the Crashlytics software development kit (the \"SDK\") and any tools provided as part of the SDK, including, but not limited to, any plugins (collectively, the \"Software\") solely for the integration of the Software into an Application or Beta Application. Developer may use the Services and the Software solely for the purpose: (i) enabling Developer's users, including Beta Testers, to access and use Applications and Beta Applications, (ii) obtaining information regarding the installation, use of and engagement with, and the functionality of Developer's Applications and Beta Applications, including reporting on errors or bugs (collectively, \"Performance Data\"), (iii) improving the functionality of Developer's Applications, Beta Applications and related products and services, and/or (iv) communicating with users, including Beta Testers, about Developer's Applications and Beta Applications. Developer's access and use of the Services shall also comply with all other conditions set forth in all documentation, instructions, end user guides and other documents regarding the Services and Software, in each case that is provided or made available by Crashlytics to Developer in electronic or other form (collectively, \"Documentation\"). Developer shall comply with all: (a) applicable laws, rules, and regulations, and (b) any applicable third party terms, including any third party terms applicable to Developer's development and distribution of any Application or Beta Application operating on the Android or iOS mobile operating systems, or any other operating system upon which the Application or Beta Application is made available and upon which Crashlytics makes the Services available to Developer.\n\n2.3 Restrictions. Developer shall not directly or indirectly, or allow any third-party to: (a) use the Services or any of Crashlytics's Confidential Information (as defined below) to create any service, software, or documentation that is the same as, substantially similar to or has similar functionality as the Services, (b) disassemble, decompile, reverse engineer, decipher, translate or use any other means to attempt to discover any source code, algorithms, or trade secrets underlying the Services or Background Materials (defined below), except and only to the extent these restrictions are expressly prohibited by applicable statutory law, (c) encumber, sublicense, transfer, distribute, rent, lease, timeshare, or use any Crashlytics Properties (as defined below) in any service bureau, rental or managed services arrangement or permit other individuals or entities to create Internet \"links\" to the Crashlytics Properties or \"frame\" or \"mirror\" the Crashlytics Properties on any other server, or wireless or Internet-based device, (d) adapt, combine, create derivative works of, or otherwise modify any Crashlytics Properties, (e) use or allow the transmission, transfer, export, reexport, or other transfer of any product, technology, or information it obtains or learns in connection with Developer's use of the Services in violation of any export control or other laws and regulations of the United States or any other relevant jurisdiction, (f) remove or alter any proprietary notices or labels on or in any Crashlytics Properties; (g) use any Crashlytics Properties in connection with the development or transmission of any virus, worms or malicious code, (h) use any Crashlytics Properties to infringe the rights of Crashlytics or any third party, or in any way that does not comply with all applicable laws, or (i) use any Crashlytics Properties (including to create any Application) in any way that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of Crashlytics or any third party, including any mobile communications carrier.\n\n2.4 Developer Feedback. From time to time, Crashlytics may solicit from Developer or Developer may make, in its sole discretion, suggestions for changes, modifications or improvements to the Crashlytics Properties (as defined below) or any other feedback related to Crashlytics or the Crashlytics Properties (collectively, \"Developer Feedback\"). All Developer Feedback shall be solely owned by Crashlytics (including all intellectual property rights therein and thereto) and shall also be Crashlytics's confidential information. Developer hereby assigns all of its right, title and interest in and to any Developer Feedback to Crashlytics and acknowledges that Crashlytics has the unrestricted right to use and exploit such Developer Feedback in any manner, without attribution, and without any obligations or compensation to Developer.\n\n2.5 Developer Data. Developer hereby grants Crashlytics a nonexclusive, license fee free and royalty free right and license to access, copy, distribute, process and use all information, data and other content provided by Developer or received by Crashlytics in connection with Developer's authorized use of the Services, including, without limitation information provided through any Application or Beta Application that Developer makes available for testing through the Services (collectively, \"Developer Data\"), solely for the purpose of providing, developing, and maintaining the Services, along with any related customer or technical support, and as otherwise expressly permitted in this Agreement. Developer agrees that: (a) the Services depend on the availability of the Developer Data, and (b) Crashlytics will not assume any responsibility or liability for, or undertake to verify, the legality, accuracy or completeness of the Developer Data. Crashlytics shall have no obligation to store any Developer Data or Results (as defined below).\n\n2.6 Access by Beta Testers; EULA; End Users; Compliance. Developer shall provide to Crashlytics the contact information of any user of Developer's application(s) whom Developer intends to invite to become a Beta Tester. Developer is solely responsible for determining which users will receive an invitation to become a Beta Tester, and for ensuring the accuracy of any user contact information provided to Crashlytics. Developer may provide Beta Testers with its own EULA for a Beta Application that will be accessed by Beta Testers (\"Developer EULA\"); provided that the Developer EULA provides terms and conditions consistent with this Agreement and, with respect to Crashlytics, no less protective than those terms and conditions set forth in the standard EULA provided in Appendix A (\"Standard EULA\"). If Developer does not provide a separate Developer EULA to Beta Testers in connection with Developer's Beta Application, then Developer acknowledges and agrees that such Beta Testers, by accessing the Beta Application through the Services, will be made subject to the terms and conditions of the Standard EULA between Developer and such Beta Testers. Developer acknowledges and agrees that Crashlytics provides the Standard EULA by way of convenience only, and does not represent or warrant that the Standard EULA will be enforceable under, or in compliance with, all applicable laws, rules, regulations, or otherwise. Developer acknowledges and agrees that the EULA applicable to Developer's Beta Application shall be between Developer and any Beta Tester, and Crashlytics shall not be responsible for, and shall not have any liability whatsoever for, such EULA, any application tested by a Beta Tester, or for any breach by Developer or any Beta Tester of the terms and conditions of such EULA. The Services allow the Developer to collect information relating to performance of Developer's applications, including, without limitation, device state information, unique device identifiers, information relating to the physical location of a device, and information about how the application was used. Developer may turn on features of the Services to allow collection of other information via the Services, including some personally identifiable information (e.g., a user's email address), which allows Developers to communicate with users about the engagement with and functionality of their applications and to invite them to become Beta Testers. Developer represents and warrants that Developer is collecting information via the Services solely to obtain information about the user engagement with and functionality of Developer's applications, and to communicate with users about such engagement and functionality. Developer agrees that it will not enable collection of personally identifiable information via the Services unless it is necessary to communicate with users about the applications or Developer wishes to invite users to be Beta Testers and the user has provided affirmative consent to the collection and use of such information. Subject to and without limiting the foregoing, Developer agrees it will not enable collection or use of credit card information, Social Security numbers, driver's license numbers, dates of birth or physical addresses via the Services. Developer further agrees it will not invite any user to be a Beta Tester that is under the age of consent as defined under any applicable laws, rules, or regulations relating to data collection, including without limitation the Children's Online Privacy Protection Act of 1998 (\"COPPA\"), the Regulation (EU) 2016/679 of the European Parliament and of the Council of 27 April 2016 on the protection of natural persons with regard to the processing of personal data and on the free movement of such data, and repealing Directive 95/46/EC (General Data Protection Regulation or \"GDPR\"), and all other relevant laws and regulations. At all times during the term of this Agreement, Developer shall maintain a privacy policy: (a) that is readily accessible to users from its website or within its online service (as applicable), (b) that fully and accurately discloses to its users what information is collected about its users, and (c) that states that such information is disclosed to and processed by third party providers like Crashlytics in the manner contemplated by the Services, including, without limitation, disclosure of the use of technology to track users' activity and otherwise collect information from users. For Developer's users in the European Union, Developer shall provide such users with clear notice of, and obtain such users' consent to, the transfer, storage, and use of their information in the United States and any other country where Crashlytics, or any third party service providers acting on its behalf, operates, and shall further notify such users that the privacy and data protection laws in some of these countries may vary from the laws in the country where such users live. Developer shall at all times comply with all applicable laws, rules and regulations relating to data collection, privacy and security, including without limitation, COPPA, GDPR, and all other such laws and regulations. Developer will obtain and maintain any required consents necessary and will comply with any other applicable requirements to permit the processing of Developer Data under this Agreement.\n\n2.7 Developer Systems. Developer is responsible for providing: (a) all equipment, subscriptions and credentials necessary for Crashlytics to receive the Developer Data, and (b) all modems, servers, devices, storage, software (other than Software), databases, network and communications equipment and ancillary services needed to connect to, access, or otherwise use the Services at its facility (collectively, \"Developer Systems\"). Developer shall ensure that Developer Systems are compatible with the Services and comply with all configurations and specifications described in the Documentation.\n\n2.8 Limitations. Crashlytics will not be responsible or liable for any failures in the Services or any other problems which are related to: (a) the Developer Data or Developer Systems, or (b) any satellite, telecommunications, network or other equipment or service outside of Crashlytics's facilities or control.\n\n2.9 Confidentiality. \"Confidential Information\" means any information disclosed by one party (\"Discloser\") to the other party (\"Recipient\") that is marked or otherwise identified as \"confidential\" or \"proprietary,\" or by its nature or the circumstances of disclosure should reasonably be understood to be confidential, including without limitation, all financial, business or technical information disclosed in relation to this Agreement. Except for the specific rights granted by this Agreement, the Recipient may not use, copy or disclose any Confidential Information of the Discloser without Discloser's prior written consent, and shall use no less than reasonable care to safeguard Discloser's Confidential Information, including ensuring that Recipient's employees, contractors and agents (\"Representatives\")with access to Discloser's Confidential Information have a need to know such Confidential Information for the purposes of this Agreement and are bound by confidentiality obligations no less protective of the parties as those set forth herein. The foregoing obligations shall not apply to any Confidential Information that Recipient can demonstrate is: (a) already known by it without restriction, (b) rightfully furnished to it without restriction by a third party not in breach of any obligation to Discloser, (c) generally available to the public without breach of this Agreement or (d) independently developed by it without reference to or use of any of Discloser's Confidential Information and without any violation of any obligation of this Agreement. Each party shall be responsible for any breach of confidentiality by its Representatives, as applicable. Promptly upon Discloser's request at any time, Recipient shall, or in the case of Developer Data shall use reasonable efforts to, return all of Discloser's tangible Confidential Information, permanently erase all Confidential Information from any storage media and destroy all information, records, copies, summaries, analyses and materials developed therefrom. Nothing herein shall prevent a party from disclosing any of the other's Confidential Information as necessary pursuant to any court order or any legal, regulatory, law enforcement or similar requirement or investigation; provided, however, prior to any such disclosure, Recipient shall use reasonable efforts to: (i) promptly notify Discloser in writing of such requirement to disclose where permitted by law, and (ii) cooperate with Discloser in protecting against or minimizing any such disclosure and/or obtaining a protective order.\n\n2.10 Proprietary Rights. As used in this Agreement: \"Background Materials\" means all ideas, concepts, inventions, systems, platforms, software (including all Software), interfaces, tools, utilities, templates, forms, Report Formats, techniques, methods, processes, algorithms, knowhow, trade secrets and other technologies and information that are used by Crashlytics in providing the Services and Results (including any correction, improvement, derivative work, extension or other modification to the Services made, created, conceived or developed by or for Crashlytics, including at Developer's request or as a result of feedback provided by Developer to Crashlytics); \"Reports\" means the reports, charts, graphs and other presentation in which the Results are presented to Developer; \"Report Formats\" means the formatting, look and feel of the Reports; and \"Results\" means the work products resulting from the Services that are delivered to Developer by Crashlytics through the Services, and which are based on the Developer Data. For the sake of clarity, Results shall expressly exclude all Background Materials. Developer shall own all right, title and interest (including all intellectual property and other proprietary rights) in and to: (a) feedback, suggestions, ideas or other materials and information provided by Beta Testers with respect to any Beta Application (\"User Feedback\"), (b) the Results and (c) Developer Data. Developer acknowledges and agrees that the Results will be presented to it in a Report, the Report Format of which is Confidential Information and proprietary to Crashlytics. Developer may make a reasonable number of copies of the Reports only for its internal purposes in using the Results.\n\n2.11 General Learning; Aggregate Data. Crashlytics reserves the right to disclose aggregate information of Services usage, engagement, and performance, and to reuse all general knowledge, experience, knowhow, works and technologies (including ideas, concepts, processes and techniques) related to the Results or acquired during provision of the Services (including without limitation, that which it could have acquired performing the same or similar services for another customer).\n\n2.12 Reservation of Rights. Except for the limited rights and licenses expressly granted hereunder, no other license is granted, no other use is permitted and Crashlytics (and its licensors) shall retain all right, title, and interest (including all intellectual property and proprietary rights embodied therein) in and to the Services, Software, Documentation, Background Materials, aggregate data, and analyses (collectively, \"Crashlytics Properties\").\n\nSECTION 3. SPECIFIC TERMS FOR BETA TESTERS\n\n3.1 License; Restrictions. In order to access and use the Services to test any Beta Application, you may need to download or install Software (defined in Section 2 above), web clips, certificates, or other materials provided by Crashlytics (\"Crashlytics Material\"). Subject to your compliance with this Agreement, Crashlytics grants you a limited, nonexclusive, non-assignable, non-sublicensable license to access, download, and use any Crashlytics Material made available to you by Crashlytics, solely to access and use the Services. Crashlytics reserves all right, title, and interest in the Crashlytics Material not expressly granted to you, including but not limited to intellectual property rights. To the maximum extent permitted by law, you may not do any of the following with respect to any Crashlytics Material you receive or otherwise have access to: (a) modify, reverse engineer, decompile, or disassemble any Crashlytics Material, (b) rent, lease, loan, sell, sublicense, distribute, transmit, or otherwise transfer any Crashlytics Material, (c) make any copy of or otherwise reproduce any Crashlytics Material, (d) remove, alter, or obscure any copyright, trademark or other proprietary rights notice on or in any Crashlytics Material, (e) work around any technical limitations in any Crashlytics Material, or (f) use any Crashlytics Material for purposes for which it is not designed.\n\n3.2 No Responsibility for Beta Applications. If you have any complaints or disputes relating to your use of any Beta Application, you agree to look solely to the applicable Developer of such Beta Application and not Crashlytics. You acknowledge and agree that the applicable Developer, not Crashlytics, is fully responsible for any Beta Application, and the processing of information about your use of any Beta Application. If you want to terminate this Agreement, you must stop using the Services and delete from your device all Crashlytics Material.\n\n3.3 Consent to Data Processing and Transfer. Irrespective of which country you live in, you authorize Crashlytics to use your information in, and as a result to transfer it to and store it in, the United States and any other country where Crashlytics operates. Privacy and data protection laws in some of these countries may vary from the laws in the country where you live.\n\n3.4 No Compensation. By becoming a Beta Tester, you are acting as a volunteer. You will bear your own costs, including any mobile carrier and data costs that you incur in connection with your use of the Beta Application or any User Feedback (defined above) that you submit.\n\n3.5 Standard EULA for Beta Applications. You agree to comply with the terms of the Standard EULA in connection with your access and use of any Beta Application of a Developer, unless you agree to comply with a separate license agreement that the Developer provides in connection with such Beta Application, in which case the terms of that separate license agreement will govern.\n\nSECTION 4. WARRANTY, LIABILITY & INDEMNITY\n\n4.1 Warranties. Crashlytics represents and warrants that it has full right, power, and authority to enter into this Agreement and to perform its obligations and duties under this Agreement, and that the performance of such obligations and duties does not conflict with or result in a breach of any other agreement of Crashlytics, or any judgment, order, or decree by which such party is bound. Developer's sole and exclusive remedy for any and all breaches of this provision is the remedy set forth in Section 4.4. Developer represents and warrants that it owns all right, title and interest, or possesses sufficient license rights, in and to the Developer Data as may be necessary to grant the rights and licenses, and provide the representations, and for Crashlytics to provide the Services set forth herein. Developer bears all responsibility and liability for the legality, accuracy and completeness of the Developer Data and Crashlytics's access, possession, distribution, and use thereof, as permitted herein.\n\n4.2 Disclaimers. THE CRASHLYTICS SERVICES, CRASHLYTICS PROPERTIES AND RESULTS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. WITHOUT LIMITING THE FOREGOING, CRASHLYTICS AND ITS PARENTS, SUBSIDIARIES, AFFILIATES, RELATED COMPANIES, OFFICERS, DIRECTORS, EMPLOYEES, AGENTS, REPRESENTATIVES, PARTNERS AND LICENSORS (COLLECTIVELY, THE \"CRASHLYTICS ENTITIES\") MAKE NO WARRANTY: (A) THAT THE SERVICES OR RESULTS WILL MEET YOUR REQUIREMENTS OR BE UNINTERRUPTED, ERROR FREE OR BUGFREE, (B) REGARDING THE RELIABILITY, TIMELINESS, OR PERFORMANCE OF THE SERVICES, OR (C) THAT ANY ERRORS IN THE SERVICES CAN OR WILL BE CORRECTED. THE CRASHLYTICS ENTITIES HEREBY DISCLAIM (FOR THEMSELVES AND THEIR SUPPLIERS) ALL WARRANTIES, WHETHER EXPRESS OR IMPLIED, ORAL OR WRITTEN, INCLUDING WITHOUT LIMITATION, ALL IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTABILITY, TITLE OR FITNESS FOR ANY PARTICULAR PURPOSE AND ALL WARRANTIES ARISING FROM ANY COURSE OF DEALING, COURSE OF PERFORMANCE OR USAGE OF TRADE.\n\n4.3 Claims Against Crashlytics. Developer will defend Crashlytics from all third party claims, whether actual or alleged (collectively, \"Crashlytics Claims\"), and will indemnify Crashlytics and hold Crashlytics harmless from any and all losses, liabilities, damages, costs, and expenses (including reasonable attorney's fees) resulting from such Crashlytics Claims that arise out of Developer's: (a) use of the Services, (b) actual or alleged infringement or misappropriation of the rights of any third party, including, without limitation, any intellectual property rights, privacy rights or publicity rights, and (c) breach of any representations and warranties set forth in the Agreement. Developer is solely responsible for defending any such Crashlytics Claims, subject to Crashlytics's right to participate with counsel of its own choosing, and for payment of all judgments, settlements, damages, losses, liabilities, costs, and expenses, including reasonable attorneys' fees, resulting from such Claims against Crashlytics, provided that Developer will not agree to any settlement related to any such Crashlytics Claims without Crashlytics's prior express written consent regardless of whether or not such settlement releases Crashlytics from any obligation or liability. If Developer uses the Services in an official capacity as an employee or representative of a United States federal, state, or local government entity and is legally unable to accept this indemnification provision, then it does not apply to such entity, but only to the extent required by applicable law.\n\n4.4 Claims Against Developer. Crashlytics will defend the Developer from all third party claims, actions, suits, or proceedings, whether actual or alleged (collectively, \"Developer Claims\"), and will indemnify Developer and hold Developer harmless from any and all losses, liabilities, damages, costs, and expenses (including reasonable attorney's fees) resulting from such Developer Claims, that arise out of an allegation that the Services, when used as expressly permitted by this Agreement, infringes the intellectual property rights of such third party. Notwithstanding the foregoing, Crashlytics will have no obligation under this Section 4.4 or otherwise with respect to any infringement claim based upon: (a) any use of the Services not expressly permitted under this Agreement; (b) any use of the Services in combination with products, equipment, software, or data not made available by Crashlytics if such infringement would have been avoided without the combination with such other products, equipment, software, or data; (c) any modification of the Services by any person other than Crashlytics or its authorized agents or subcontractors; or (d) any claim not clearly based on the Services itself. This Section 4.4 states Crashlytics's entire liability and Developer's sole and exclusive remedy for all third party claims.\n\n4.5 Procedure. The foregoing obligations are conditioned on the party seeking indemnification: (a) promptly notifying the other party in writing of such claim; (b) giving the other party sole control of the defense thereof and any related settlement negotiations; and (c) cooperating and, at the other party's request and expense, assisting in such defense. Neither party may make any public announcement of any claim, defense or settlement without the other party's prior written approval. The indemnifying party may not settle, compromise or resolve a claim without the consent of the indemnified party, if such settlement, compromise or resolution (i) causes or requires an admission or finding of guilt against the indemnified party, (i) imposes any monetary damages against the indemnified party, or (iii) does not fully release the indemnified party from liability with respect to the claim.\n\n4.6 Limitation of Liability.\n\n(a) IN NO EVENT WILL EITHER PARTY BE LIABLE TO THE OTHER FOR ANY INDIRECT, SPECIAL, INCIDENTAL, EXEMPLARY, PUNITIVE, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT, OR FOR ANY DAMAGES ASSOCIATED WITH ANY LOSS OF USE, BUSINESS, PROFITS, OR GOODWILL OR FOR INTERRUPTION, LOSS OR CORRUPTION OF DATA OR NETWORKS.\n\n(b) IN NO EVENT WILL EITHER PARTY'S AGGREGATE LIABILITY FOR ANY AND ALL CLAIMS UNDER THIS AGREEMENT EXCEED FIFTY ($50.00) DOLLARS (USD).\n\n(c) THE FOREGOING LIMITATIONS SHALL NOT APPLY TO BREACHES OF CONFIDENTIALITY OBLIGATIONS OR FOR MISAPPROPRIATION OR INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS, AND SHALL APPLY NOTWITHSTANDING THE FAILURE OF ANY REMEDY PROVIDED HEREIN.\n\nTHE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS SHALL APPLY TO ANY AND ALL CLAIMS, REGARDLESS OF WHETHER SUCH LIABILITY ARISES FROM ANY CLAIM BASED UPON CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, OR OTHERWISE, AND WHETHER OR NOT THE PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGE. Some states do not allow the exclusion or limitation of incidental or consequential damages, so the above limitation or exclusion may not apply to You. INSOFAR AS APPLICABLE LAW PROHIBITS ANY LIMITATION ON LIABILITY HEREIN, THE PARTIES AGREE THAT SUCH LIMITATION WILL BE AUTOMATICALLY MODIFIED, BUT ONLY TO THE EXTENT SO AS TO MAKE THE LIMITATION COMPLIANT WITH APPLICABLE LAW.\n\nSECTION 5. TERM AND TERMINATION\n\n5.1 Term. The term of this Agreement will begin on the date you first agree to this Agreement and are approved to register for the Services, and continue until terminated as set forth herein (\"Term\"). Your use of the Services may be terminated by Crashlytics or you at any time, for any reason, effective immediately upon notice provided by one party to the other party as set forth herein.\n\n5.2 Effects of Termination. Upon any expiration or termination of this Agreement, all rights, obligations and licenses of the parties shall cease, except that: (a) all obligations that accrued prior to the effective date of termination and all remedies for breach of this Agreement shall survive, (b) you must discontinue accessing and using the Services and delete all Software, Crashlytics Properties, and Crashlytics Material, and (c) the provisions in Section 2 titled Restrictions, Developer Feedback, Confidentiality, Proprietary Rights, General Learning; Aggregate Data, the provisions of Section 4 and the provisions in this Section 5 shall survive. Crashlytics has no obligation to store, delete or return any User Feedback, Performance Data, Developer Data, or Results.\nSECTION 6. MISCELLANEOUS\n\n6.1 Entire Agreement. This Agreement (which includes any order form completed by Developer) constitutes the entire agreement, and supersede all prior negotiations, understandings, or agreements (oral or written), between the parties about the subject matter of this Agreement.\n\n6.2 Waivers, Consents and Amendments. No waiver, consent, or modification of this Agreement shall bind the Crashlytics Entities unless in writing and signed by Crashlytics. Crashlytics may amend this Agreement from time to time. If we make a change to this Agreement that, in our sole discretion, is material, we will notify you at the email address that you provided upon signing up to access the Services or upon signing up to access the Crashlytics Fabric services, at crashlytics.com, or otherwise through the Services. If you do not agree to the modified terms, you shall notify Crashlytics in writing within thirty (30) days, after which your right to access and use the Services shall immediately terminate and the Crashlytics Entities shall have no further responsibility or liability to you. The failure of either party to enforce its rights under this Agreement at any time for any period will not be construed as a waiver of such rights.\n\n6.3 Severability. If any provision of this Agreement is determined to be illegal or unenforceable, that provision will be limited or eliminated to the minimum extent necessary so that this Agreement will otherwise remain in full force and effect and enforceable.\n\n6.4 Governing Law and Disputes. This Agreement shall be governed by and construed in accordance with the laws of the State of California, without regard to its conflicts of law provisions.\n\n(a) Except as set forth in Section 6.4(b) below, all claims arising out of or relating to this Agreement or the Services (\"Disputes\") will be governed by California law, excluding California's conflict of laws rules, and all Disputes will be litigated exclusively in the federal or state courts of Santa Clara County, California, USA, and You and Crashlytics consent to personal jurisdiction in those courts.\n\n(b) If Your principal place of business (for entities) or place of residence (for individuals) is in any country within APAC (other than Australia, Japan, New Zealand or Singapore) or Latin America, this Section 6.4(b) will apply instead of Section 6.4(a) above. ALL DISPUTES (AS DEFINED ABOVE) WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING CALIFORNIA'S CONFLICT OF LAWS RULES.The parties will try in good faith to settle any Dispute within 30 days after the Dispute arises. If the Dispute is not resolved within 30 days, it must be resolved by arbitration by the American Arbitration Association's International Centre for Dispute Resolution in accordance with its Expedited Commercial Rules in force as of the date of this Agreement (\"Rules\"). The parties will mutually select one arbitrator. The arbitration will be conducted in English in Santa Clara County, California, USA. Either party may apply to any competent court for injunctive relief necessary to protect its rights pending resolution of the arbitration. The arbitrator may order equitable or injunctive relief consistent with the remedies and limitations in this Agreement. Subject to the confidentiality requirements in of this Agreement, either party may petition any competent court to issue any order necessary to protect that party's rights or property; this petition will not be considered a violation or waiver of this governing law and arbitration section and will not affect the arbitrator's powers, including the power to review the judicial decision. The parties stipulate that the courts of Santa Clara County, California, USA, are competent to grant any order under this subsection. The arbitral award will be final and binding on the parties and its execution may be presented in any competent court, including any court with jurisdiction over either party or any of its property. Any arbitration proceeding conducted in accordance with this section will be considered Confidential Information under this Agreement's confidentiality section, including: (i) the existence of, (ii) any information disclosed during, and (iii) any oral communications or documents related to the arbitration proceedings. The parties may also disclose the information described in this section to a competent court as may be necessary to file any order under this section or execute any arbitral decision, but the parties must request that those judicial proceedings be conducted in camera (in private). The parties will pay the arbitrator's fees, the arbitrator's appointed experts' fees and expenses, and the arbitration center's administrative expenses in accordance with the Rules. In its final decision, the arbitrator will determine the non-prevailing party's obligation to reimburse the amount paid in advance by the prevailing party for these fees. Each party will bear its own lawyers' and experts' fees and expenses, regardless of the arbitrator's final decision.\n\n6.5 Force Majeure. In the event that either party is prevented from performing, or is unable to perform, any of its obligations under this Agreement (except payment obligations) due to any cause beyond its reasonable control, the affected party shall give written notice thereof to the other party and its performance shall be extended for the period of delay or inability to perform due to such occurrence.\n\n6.6 Notices. Any notice or communication hereunder shall be in writing and either personally delivered or sent via confirmed facsimile, confirmed electronic transmission, recognized express delivery courier or certified or registered mail, prepaid and return receipt requested, addressed to the other party, which, in the case of Developer, shall be the email address provided to Crashlytics upon signing up for the Services or upon signing up to access the Crashlytics Fabric services, and, in the case of Crashlytics, shall be Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA, with a copy to Legal Department. All notices shall be in English, and deemed to have been received when they are hand delivered, or five business days after their mailing, or upon confirmed electronic transmission or confirmed facsimile transmission.\n\n6.7 Assignment. This Agreement and the rights and obligations hereunder may not be assigned, transferred or delegated, in whole or in part, whether voluntarily or by operation of law, contract, merger (whether Developer is the surviving or disappearing entity), stock or asset sale, consolidation, dissolution, through government action or otherwise, by Developer without Crashlytics's prior written consent. Any assignment or transfer in violation of the foregoing shall automatically be null and void, and Crashlytics may immediately terminate this Agreement upon such an attempt. This Agreement shall be binding upon, and inure to the benefit of, any permitted successors, representatives, and permitted assigns of the parties hereto.\n\n6.8 Independent Contractors. The parties shall be independent contractors under this Agreement, and nothing herein will constitute either party as the employer, employee, agent, or representative of the other party, or both parties as joint venturers or partners for any purpose.\nAppendix A - Standard EULA\n\nYou, the Beta Tester, and the Developer (\"Licensor\") of the Beta Application you access and use via the Services agree to comply with the terms of this EULA in connection with your access and use of such Beta Application (the \"Application\").\n\n Relationship between the Parties. Licensor and the Beta Tester acknowledge that this Standard EULA is entered into by and between Licensor and the Beta Tester only, and not with Google LLCand its worldwide affiliates (\"Crashlytics\"), and Licensor, not Crashlytics, is solely responsible and liable for the Application accessed and used by the Beta Tester, including (i) any related maintenance and support, (ii) any and all express, implied, or statutory warranties associated with the Application, and (iii) any disputes or claims arising out of or related to the access and use of the Application.\n\n License. Subject to your compliance with this Standard EULA, the Licensor grants you a limited, nonexclusive, non-assignable, non-sublicensable license to access, download, and use the Application and any related documentation made available to you by the Licensor, solely for beta testing purposes. Licensor reserves all right, title, and interest in the Application not expressly granted to you, including but not limited to intellectual property rights. To the maximum extent permitted by law, you may not do any of the following with respect to the Application: (a) modify, reverse engineer, decompile, or disassemble the Application; (b) rent, lease, loan, sell, sublicense, distribute, transmit, or otherwise transfer the Application; or (c) make any copy of or otherwise reproduce the Application. This license is effective until terminated by you or the Licensor. Your rights under this license will terminate automatically without notice from the Licensor if you fail to comply with any term of this Standard EULA. Upon termination of the license, you shall cease all use of the Application, and destroy all copies, full or partial, of the Application.\n\n Consent to Data Processing and Transfer. Irrespective of which country you live in, you authorize us to use your information in, and as a result to transfer it to and store it in, the United States and any other country where we or Crashlytics operate. Privacy and data protection laws in some of these countries may vary from the laws in the country where you live.\n\n No Compensation. By becoming a Beta Tester, you are acting as a volunteer. You will bear your own costs, including any mobile carrier and data costs that you incur in connection with your use of the Application or any User Feedback (defined in Section 2 above) that you submit.\n\n User Feedback. You agree to use reasonable efforts to beta test any application downloaded from the Services. User Feedback shall be owned by the Licensor. You hereby assign all of your right, title, and interest in and to any User Feedback to Licensor and acknowledge that Licensor has the unrestricted right to use and exploit such User Feedback in any manner, with or without attribution, and without compensation or any duty to account to you for such use.\n\n Confidentiality. The Application and related information that Licensor provides to you are Licensor's confidential information. You will not disclose information about the Application or any other Licensor confidential information to anyone other than Licensor's employees, unless Licensor gives you written permission. For example, do not share screenshots or video clips of the Application with your friends, family, coworkers, or the media. You will also take reasonable precautions to prevent anyone from obtaining Licensor's confidential information. For example, you should restrict access to your mobile device, prevent others from watching you use the Application, and not create any screenshots or video clips of the Application.\n\n Disclaimer. THE APPLICATION IS A TEST VERSION THAT IS MADE AVAILABLE TO YOU FOR TESTING AND EVALUATION PURPOSES ONLY. THE APPLICATION IS NOT READY FOR COMMERCIAL RELEASE AND MAY CONTAIN BUGS, ERRORS, AND DEFECTS. ACCORDINGLY, THE APPLICATION IS PROVIDED \"AS IS,\" WITH ALL FAULTS, DEFECTS, AND ERRORS, AND WITHOUT WARRANTY OF ANY KIND. LICENSOR AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES (EXPRESS, IMPLIED, ARISING BY LAW, OR OTHERWISE) REGARDING THE APPLICATION AND ITS PERFORMANCE OR SUITABILITY FOR YOUR INTENDED USE, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT.\n\n Limitation of Liability. EXCEPT TO THE EXTENT PROHIBITED BY LAW, IN NO EVENT WILL LICENSOR OR ITS SUPPLIERS BE LIABLE (UNDER ANY THEORY OF LIABILITY) FOR PERSONAL INJURY OR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL OR SPECIAL DAMAGES (INCLUDING FOR LOSS OF DATA, LOSS OF CONTENT, LOSS OF IN-APPLICATION FEATURES, LOSS OF PROFITS, OR BUSINESS INTERRUPTION) ARISING OUT OF OR RELATED TO YOUR USE OF OR INABILITY TO USE THE APPLICATION, EVEN IF LICENSOR AND/OR ITS SUPPLIERS HAS/HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS DO NOT ALLOW THE FOREGOING LIMITATIONS OF LIABILITY, SO THESE LIMITATIONS MAY NOT APPLY TO YOU. IN NO EVENT SHALL LICENSOR AND ITS SUPPLIERS' AGGREGATE LIABILITY ARISING FROM YOUR USE OR INABILITY TO USE THE APPLICATION EXCEED FIFTY UNITED STATES DOLLARS (US $50.00).\n\nPrevious versions\n\n January 27, 2017", + "json": "crashlytics-agreement-2018.json", + "yaml": "crashlytics-agreement-2018.yml", + "html": "crashlytics-agreement-2018.html", + "license": "crashlytics-agreement-2018.LICENSE" + }, + { + "license_key": "crcalc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-crcalc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted free of charge to copy, modify, use and distribute\nthis software provided you include the entirety of this notice in all\ncopies made.\n\nTHIS SOFTWARE IS PROVIDED ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION,\nWARRANTIES THAT THE SUBJECT SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT\nFOR A PARTICULAR PURPOSE OR NON-INFRINGING. COPY ASSUMES\nNO RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE.\nSHOULD THE SOFTWARE PROVE DEFECTIVE IN ANY RESPECT,\nHEWLETT-PACKARD ASSUMES NO COST OR LIABILITY FOR ANY\nSERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES\nAN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY SUBJECT SOFTWARE IS\nAUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING,\nWITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY), CONTRACT, OR\nOTHERWISE, SHALL HEWLETT-PACKARD BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL,\nINCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER WITH RESPECT TO THE\nSOFTWARE INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK\nSTOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL\nOTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF HEWLETT-PACKARD SHALL\nHAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES.\nTHIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY RESULTING\nFROM HEWLETT-PACKARD's NEGLIGENCE TO THE EXTENT APPLICABLE\nLAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE\nEXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT\nEXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.", + "json": "crcalc.json", + "yaml": "crcalc.yml", + "html": "crcalc.html", + "license": "crcalc.LICENSE" + }, + { + "license_key": "crossword", + "category": "Permissive", + "spdx_license_key": "Crossword", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright (C) 1995-2009 Gerd Neugebauer\n \u00a0\ncwpuzzle.dtx is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY. No author or distributor accepts responsibility to anyone for the\nconsequences of using it or for whether it serves any particular purpose or\nworks at all, unless he says so in writing.\n\nEveryone is granted permission to copy, modify and redistribute cwpuzzle.dtx,\nprovided this copyright notice is preserved and any modifications are indicated.", + "json": "crossword.json", + "yaml": "crossword.yml", + "html": "crossword.html", + "license": "crossword.LICENSE" + }, + { + "license_key": "crypto-keys-redistribution", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-crypto-keys-redistribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "For the avoidance of doubt the \"preferred form\" of this code is one which\nis in an open non patent encumbered format. Where cryptographic key signing\nforms part of the process of creating an executable the information\nincluding keys needed to generate an equivalently functional executable\nare deemed to be part of the source code.", + "json": "crypto-keys-redistribution.json", + "yaml": "crypto-keys-redistribution.yml", + "html": "crypto-keys-redistribution.html", + "license": "crypto-keys-redistribution.LICENSE" + }, + { + "license_key": "cryptopp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cryptopp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Compilation Copyright (c) 1995-2010 by Wei Dai. All rights reserved.\n\nThis copyright applies only to this software distribution package as a\ncompilation, and does not imply a copyright on any particular file in the\npackage.\n\nAll individual files in this compilation are placed in the public domain by Wei\nDai and other contributors. I would like to thank the following authors for\nplacing their works into the public domain:\n\nJoan Daemen - 3way.cpp Leonard Janke - cast.cpp, seal.cpp Steve Reid - cast.cpp\nPhil Karn - des.cpp Andrew M. Kuchling - md2.cpp, md4.cpp Colin Plumb - md5.cpp\nSeal Woods - rc6.cpp Chris Morgan - rijndael.cpp Paulo Baretto - rijndael.cpp,\nskipjack.cpp, square.cpp Richard De Moliner - safer.cpp Matthew Skala -\ntwofish.cpp Kevin Springle - camellia.cpp, shacal2.cpp, ttmac.cpp, whrlpool.cpp,\nripemd.cpp\n\nPermission to use, copy, modify, and distribute this compilation for any\npurpose, including commercial applications, is hereby granted without fee,\nsubject to the following restrictions:\n\n1. Any copy or modification of this compilation in any form, except in object\ncode form as part of an application software, must include the above copyright\nnotice and this license.\n\n2. Users of this software agree that any modification or extension they provide\nto Wei Dai will be considered public domain and not copyrighted unless it\nincludes an explicit copyright notice.\n\n3. Wei Dai makes no warranty or representation that the operation of the\nsoftware in this compilation will be error-free, and Wei Dai is under no\nobligation to provide any services, by way of maintenance, update, or otherwise.\nTHE SOFTWARE AND ANY DOCUMENTATION ARE PROVIDED \"AS IS\" WITHOUT EXPRESS OR\nIMPLIED WARRANTY INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL WEI DAI\nOR ANY OTHER CONTRIBUTOR BE LIABLE FOR DIRECT, INCIDENTAL OR CONSEQUENTIAL\nDAMAGES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n4. Users will not use Wei Dai or any other contributor's name in any publicity\nor advertising, without prior written consent in each case.\n\n5. Export of this software from the United States may require a specific license\nfrom the United States Government. It is the responsibility of any person or\norganization contemplating export to obtain such a license before exporting.\n\n6. Certain parts of this software may be protected by patents. It is the users'\nresponsibility to obtain the appropriate licenses before using those parts.\n\nIf this compilation is used in object code form in an application software,\nacknowledgement of the author is not required but would be appreciated. The\ncontribution of any useful modifications or extensions to Wei Dai is not\nrequired but would also be appreciated.", + "json": "cryptopp.json", + "yaml": "cryptopp.yml", + "html": "cryptopp.html", + "license": "cryptopp.LICENSE" + }, + { + "license_key": "crystal-stacker", + "category": "Permissive", + "spdx_license_key": "CrystalStacker", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Crystal Stacker is freeware. This means you can pass copies around freely provided you include this document in it's original form in your distribution. Please see the \"Contacting Us\" section of this document if you need to contact us for any reason.\n\nDisclaimer\n\nNewCreature Design makes no guarantees regarding the Crystal Stacker software. We are not responsible for damages caused by it, though the software is not known to cause any problems. If you have trouble with the software, see the \"Contacting Us\" section of this document.\n\nThe source code is provided as-is and you may do with it whatsoever you please provided that you include this file in its unmodified form with any new distribution. NewCreature Design makes no gaurantees regarding the usability of the source but are willing to help with any problems you might run into. Please see the \"Contacting Us\" section of this document if you need to get in touch with us about any issues you have regarding the source.", + "json": "crystal-stacker.json", + "yaml": "crystal-stacker.yml", + "html": "crystal-stacker.html", + "license": "crystal-stacker.LICENSE" + }, + { + "license_key": "csl-1.0", + "category": "Permissive", + "spdx_license_key": "Community-Spec-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-csl-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Community Specification License 1.0\n\nThe Purpose of this License. This License sets forth the terms under which\n1) Contributor will participate in and contribute to the development\nof specifications, standards, best practices, guidelines, and other\nsimilar materials under this Working Group, and 2) how the materials\ndeveloped under this License may be used. It is not intended for source\ncode. Capitalized terms are defined in the License\u2019s last section.\n\n1. Copyright.\n\n1.1. Copyright License. Contributor grants everyone a non-sublicensable,\nperpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n(except as expressly stated in this License) copyright license, without\nany obligation for accounting, to reproduce, prepare derivative works\nof, publicly display, publicly perform, and distribute any materials\nit submits to the full extent of its copyright interest in those\nmaterials. Contributor also acknowledges that the Working Group may\nexercise copyright rights in the Specification, including the rights to\nsubmit the Specification to another standards organization.\n\n1.2. Copyright Attribution. As a condition, anyone exercising this\ncopyright license must include attribution to the Working Group in any\nderivative work based on materials developed by the Working Group.\nThat attribution must include, at minimum, the material\u2019s name,\nversion number, and source from where the materials were retrieved.\nAttribution is not required for implementations of the Specification.\n\n2. Patents.\n\n2.1. Patent License.\n\n2.1.1. As a Result of Contributions.\n\n2.1.1.1. As a Result of Contributions to Draft Specifications.\nContributor grants Licensee a non-sublicensable, perpetual, worldwide,\nnon-exclusive, no-charge, royalty-free, irrevocable (except as\nexpressly stated in this License) license to its Necessary Claims in 1)\nContributor\u2019s Contributions and 2) to the Draft Specification that\nis within Scope as of the date of that Contribution, in both cases for\nLicensee\u2019s Implementation of the Draft Specification, except for those\npatent claims excluded by Contributor under Section 3.\n\n2.1.1.2. For Approved Specifications. Contributor grants Licensee a\nnon-sublicensable, perpetual, worldwide, non-exclusive, no-charge,\nroyalty-free, irrevocable (except as expressly stated in this License)\nlicense to its Necessary Claims included the Approved Specification\nthat are within Scope for Licensee\u2019s Implementation of the Approved\nSpecification, except for those patent claims excluded by Contributor\nunder Section 3.\n\n2.1.2. Patent Grant from Licensee. Licensee grants each other Licensee\na non-sublicensable, perpetual, worldwide, non-exclusive, no-charge,\nroyalty-free, irrevocable (except as expressly stated in this License)\nlicense to its Necessary Claims for its Implementation, except for those\npatent claims excluded under Section 3.\n\n2.1.3. Licensee Acceptance. The patent grants set forth in Section 2.1\nextend only to Licensees that have indicated their agreement to this\nLicense as follows:\n\n2.1.3.1. Source Code Distributions. For distribution in source code,\nby including this License in the root directory of the source code with\nthe Implementation;\n\n2.1.3.2. Non-Source Code Distributions. For distribution in any form\nother than source code, by including this License in the documentation,\nlegal notices, via notice in the software, and/or other written materials\nprovided with the Implementation; or\n\n2.1.3.3. Via Notices.md. By issuing pull request or commit to the\nSpecification\u2019s repository\u2019s Notices.md file by the Implementer\u2019s\nauthorized representative, including the Implementer\u2019s name, authorized\nindividual and system identifier, and Specification version.\n\n2.1.4. Defensive Termination. If any Licensee files or maintains a\nclaim in a court asserting that a Necessary Claim is infringed by an\nImplementation, any licenses granted under this License to the Licensee\nare immediately terminated unless 1) that claim is directly in response\nto a claim against Licensee regarding an Implementation, or 2) that claim\nwas brought to enforce the terms of this License, including intervention\nin a third-party action by a Licensee.\n\n2.1.5. Additional Conditions. This License is not an assurance (i)\nthat any of Contributor\u2019s copyrights or issued patent claims cover\nan Implementation of the Specification or are enforceable or (ii) that\nan Implementation of the Specification would not infringe intellectual\nproperty rights of any third party.\n\n2.2. Patent Licensing Commitment. In addition to the rights granted\nin Section 2.1, Contributor agrees to grant everyone a no charge,\nroyalty-free license on reasonable and non-discriminatory terms\nto Contributor\u2019s Necessary Claims that are within Scope for:\n1) Implementations of a Draft Specification, where such license\napplies only to those Necessary Claims infringed by implementing\nContributor's Contribution(s) included in that Draft Specification,\nand 2) Implementations of the Approved Specification.\n\nThis patent licensing commitment does not apply to those claims subject\nto Contributor\u2019s Exclusion Notice under Section 3.\n\n2.3. Effect of Withdrawal. Contributor may withdraw from the Working Group\nby issuing a pull request or commit providing notice of withdrawal to\nthe Working Group repository\u2019s Notices.md file. All of Contributor\u2019s\nexisting commitments and obligations with respect to the Working Group\nup to the date of that withdrawal notice will remain in effect, but no\nnew obligations will be incurred.\n\n2.4. Binding Encumbrance. This License is binding on any future owner,\nassignee, or party who has been given the right to enforce any Necessary\nClaims against third parties.\n\n3. Patent Exclusion.\n\n3.1. As a Result of Contributions. Contributor may exclude Necessary\nClaims from its licensing commitments incurred under Section 2.1.1\nby issuing an Exclusion Notice within 45 days of the date of that\nContribution. Contributor may not issue an Exclusion Notice for any\nmaterial that has been included in a Draft Deliverable for more than 45\ndays prior to the date of that Contribution.\n\n3.2. As a Result of a Draft Specification Becoming an Approved\nSpecification. Prior to the adoption of a Draft Specification as an\nApproved Specification, Contributor may exclude Necessary Claims from\nits licensing commitments under this Agreement by issuing an Exclusion\nNotice. Contributor may not issue an Exclusion Notice for patents that\nwere eligible to have been excluded pursuant to Section 3.1.\n\n4. Source Code License. Any source code developed by the Working Group is\nsolely subject the source code license included in the Working Group\u2019s\nrepository for that code. If no source code license is included, the\nsource code will be subject to the MIT License.\n\n5. No Other Rights. Except as specifically set forth in this License, no\nother express or implied patent, trademark, copyright, or other rights are\ngranted under this License, including by implication, waiver, or estoppel.\n\n6. Antitrust Compliance. Contributor acknowledge that it may compete\nwith other participants in various lines of business and that it is\ntherefore imperative that they and their respective representatives\nact in a manner that does not violate any applicable antitrust laws and\nregulations. This License does not restrict any Contributor from engaging\nin similar specification development projects. Each Contributor may\ndesign, develop, manufacture, acquire or market competitive deliverables,\nproducts, and services, and conduct its business, in whatever way it\nchooses. No Contributor is obligated to announce or market any products\nor services. Without limiting the generality of the foregoing, the\nContributors agree not to have any discussion relating to any product\npricing, methods or channels of product distribution, division of markets,\nallocation of customers or any other topic that should not be discussed\namong competitors under the auspices of the Working Group.\n\n7. Non-Circumvention. Contributor agrees that it will not intentionally\ntake or willfully assist any third party to take any action for the\npurpose of circumventing any obligations under this License.\n\n8. Representations, Warranties and Disclaimers.\n\n8.1. Representations, Warranties and Disclaimers. Contributor and Licensee\nrepresents and warrants that 1) it is legally entitled to grant the\nrights set forth in this License and 2) it will not intentionally include\nany third party materials in any Contribution unless those materials are\navailable under terms that do not conflict with this License. IN ALL OTHER\nRESPECTS ITS CONTRIBUTIONS ARE PROVIDED \"AS IS.\" The entire risk as to\nimplementing or otherwise using the Contribution or the Specification\nis assumed by the implementer and user. Except as stated herein,\nCONTRIBUTOR AND LICENSEE EXPRESSLY DISCLAIM ANY WARRANTIES (EXPRESS,\nIMPLIED, OR OTHERWISE), INCLUDING IMPLIED WARRANTIES OF MERCHANTABILITY,\nNON-INFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, CONDITIONS OF QUALITY,\nOR TITLE, RELATED TO THE CONTRIBUTION OR THE SPECIFICATION. IN NO EVENT\nWILL ANY PARTY BE LIABLE TO ANY OTHER PARTY FOR LOST PROFITS OR ANY\nFORM OF INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF\nANY CHARACTER FROM ANY CAUSES OF ACTION OF ANY KIND WITH RESPECT TO\nTHIS AGREEMENT, WHETHER BASED ON BREACH OF CONTRACT, TORT (INCLUDING\nNEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT THE OTHER PARTY HAS BEEN\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Any obligations regarding\nthe transfer, successors in interest, or assignment of Necessary Claims\nwill be satisfied if Contributor or Licensee notifies the transferee\nor assignee of any patent that it knows contains Necessary Claims or\nnecessary claims under this License. Nothing in this License requires\nContributor to undertake a patent search. If Contributor is 1) employed by\nor acting on behalf of an employer, 2) is making a Contribution under the\ndirection or control of a third party, or 3) is making the Contribution\nas a consultant, contractor, or under another similar relationship with\na third party, Contributor represents that they have been authorized by\nthat party to enter into this License on its behalf.\n\n8.2. Distribution Disclaimer. Any distributions of technical\ninformation to third parties must include a notice materially similar\nto the following: \u201cTHESE MATERIALS ARE PROVIDED \u201cAS IS.\u201d The\nContributors and Licensees expressly disclaim any warranties (express,\nimplied, or otherwise), including implied warranties of merchantability,\nnon-infringement, fitness for a particular purpose, or title, related to\nthe materials. The entire risk as to implementing or otherwise using the\nmaterials is assumed by the implementer and user. IN NO EVENT WILL THE\nCONTRIBUTORS OR LICENSEES BE LIABLE TO ANY OTHER PARTY FOR LOST PROFITS\nOR ANY FORM OF INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\nOF ANY CHARACTER FROM ANY CAUSES OF ACTION OF ANY KIND WITH RESPECT TO\nTHIS DELIVERABLE OR ITS GOVERNING AGREEMENT, WHETHER BASED ON BREACH OF\nCONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT\nTHE OTHER MEMBER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\u201d\n\n9. Definitions.\n\n9.1. Affiliate. \u201cAffiliate\u201d means an entity that directly or\nindirectly Controls, is Controlled by, or is under common Control of\nthat party.\n\n9.2. Approved Specification. \u201cApproved Specification\u201d means the final\nversion and contents of any Draft Specification designated as an Approved\nSpecification as set forth in the accompanying Governance.md file.\n\n9.3. Contribution. \u201cContribution\u201d means any original work of\nauthorship, including any modifications or additions to an existing\nwork, that Contributor submits for inclusion in a Draft Specification,\nwhich is included in a Draft Specification or Approved Specification.\n\n9.4. Contributor. \u201cContributor\u201d means any person or entity that has\nindicated its acceptance of the License 1) by making a Contribution to\nthe Specification, or 2) by entering into the Community Specification\nContributor License Agreement for the Specification. Contributor includes\nits Affiliates, assigns, agents, and successors in interest.\n\n9.5. Control. \u201cControl\u201d means direct or indirect control of more\nthan 50% of the voting power to elect directors of that corporation,\nor for any other entity, the power to direct management of such entity.\n\n9.6. Draft Specification. \u201cDraft Specification\u201d means all versions\nof the material (except an Approved Specification) developed by this\nWorking Group for the purpose of creating, commenting on, revising,\nupdating, modifying, or adding to any document that is to be considered\nfor inclusion in the Approved Specification.\n\n9.7. Exclusion Notice. \u201cExclusion Notice\u201d means a written notice\nmade by making a pull request or commit to the repository\u2019s Notices.md\nfile that identifies patents that Contributor is excluding from its\npatent licensing commitments under this License. The Exclusion Notice\nfor issued patents and published applications must include the Draft\nSpecification\u2019s name, patent number(s) or title and application\nnumber(s), as the case may be, for each of the issued patent(s) or\npending patent application(s) that the Contributor is excluding from the\nroyalty-free licensing commitment set forth in this License. If an issued\npatent or pending patent application that may contain Necessary Claims\nis not set forth in the Exclusion Notice, those Necessary Claims shall\ncontinue to be subject to the licensing commitments under this License.\nThe Exclusion Notice for unpublished patent applications must provide\neither: (i) the text of the filed application; or (ii) identification\nof the specific part(s) of the Draft Specification whose implementation\nmakes the excluded claim a Necessary Claim. If (ii) is chosen, the\neffect of the exclusion will be limited to the identified part(s) of\nthe Draft Specification.\n\n9.8. Implementation. \u201cImplementation\u201d means making, using, selling,\noffering for sale, importing or distributing any implementation of the\nSpecification 1) only to the extent it implements the Specification and 2)\nso long as all required portions of the Specification are implemented.\n\n9.9. License. \u201cLicense\u201d means this Community Specification License.\n\n9.10. Licensee. \u201cLicensee\u201d means any person or entity that has\nindicated its acceptance of the License as set forth in Section 2.1.3.\nLicensee includes its Affiliates, assigns, agents, and successors in\ninterest.\n\n9.11. Necessary Claims. \u201cNecessary Claims\u201d are those patent claims, if\nany, that a party owns or controls, including those claims later acquired,\nthat are necessary to implement the required portions (including the\nrequired elements of optional portions) of the Specification that are\ndescribed in detail and not merely referenced in the Specification.\n\n9.12. Specification. \u201cSpecification\u201d means a Draft Specification\nor Approved Specification included in the Working Group\u2019s repository\nsubject to this License, and the version of the Specification implemented\nby the Licensee.\n\n9.13. Scope. \u201cScope\u201d has the meaning as set forth in the accompanying\nScope.md file included in this Specification\u2019s repository. Changes\nto Scope do not apply retroactively. If no Scope is provided, each\nContributor\u2019s Necessary Claims are limited to that Contributor\u2019s\nContributions.\n\n9.14. Working Group. \u201cWorking Group\u201d means this project to develop\nspecifications, standards, best practices, guidelines, and other similar\nmaterials under this License.\n\n\n\nThe text of this Community Specification License is Copyright 2020\nJoint Development Foundation and is licensed under the Creative\nCommons Attribution 4.0 International License available at\nhttps://creativecommons.org/licenses/by/4.0/.\n\nSPDX-License-Identifier: CC-BY-4.0", + "json": "csl-1.0.json", + "yaml": "csl-1.0.yml", + "html": "csl-1.0.html", + "license": "csl-1.0.LICENSE" + }, + { + "license_key": "csla", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-csla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LICENSE AND WARRANTY\nVersion 4.0.3\n\nThe CSLA .NET framework is Copyright 2013 by Marimer, LLC. \n\nYou can use this Software for any noncommercial purpose, including \ndistributing derivative works. You can use this Software for any commercial \npurpose other than you may not use it, in whole or in part, to create a \ncommercial framework product. \n\nIn short, you can use CSLA .NET and modify it to create other commercial or \nbusiness software, you just can't take the framework itself, modify it and \nsell it as a product. \n\nIn return, the owner simply requires that you agree: \n\nThis Software License Agreement (\"Agreement\") is effective \nupon your use of CSLA .NET (\"Software\").\n\n1. Ownership.\nThe CSLA .NET framework is Copyright 2013 by Marimer, LLC, \nEden Prairie, MN, USA. \n\n2. Copyright Notice.\nYou must not remove any copyright notices from the Software source code. \n\n3. License.\nThe owner hereby grants a perpetual, non-exclusive, limited license to use \nthe Software as set forth in this Agreement.\n\n4. Source Code Distribution.\nIf you distribute the Software in source code form you must do so only under \nthis License (i.e. you must include a complete copy of this License with \nyour distribution).\n\n5. Binary or Object Distribution.\nYou may distribute the Software in binary or object form with no requirement \nto display copyright notices to the end user. The binary or object form must \nretain the copyright notices included in the Software source code.\n\n6. Restrictions.\nYou may not sell the Software. If you create a software development framework \nbased on the Software as a derivative work, you may not sell that derivative \nwork. This does not restrict the use of the Software for creation of other \ntypes of non-commercial or commercial applications or derivative works. \n\n7. Disclaimer of Warranty.\nThe Software comes \"as is\", with no warranties. None whatsoever. This means \nno express, implied, statutory or other warranty, including without \nlimitation, warranties of merchantability or fitness for a particular \npurpose, noninfringement, or the presence or absence of errors, whether or \nnot discoverable. You, and your distributees, use this Software at your own \nrisk. Also, you must pass this disclaimer on whenever you distribute \nthe Software. \n\n8. Liability.\nNeither Marimer, LLC nor any contributor to the Software will be liable \nfor any type of direct damages or for any of those types of damages known \nas indirect, special, consequential, incidental, punitive or exemplary \nrelated to the Software or this License, to the maximum extent the law \npermits, no matter what legal theory it\u2019s based on. Also, you must pass \nthis limitation of liability on whenever you distribute the Software. \n\n9. Patents.\nIf you sue anyone over patents that you think may apply to the Software \nfor a person's use of the Software, your license to the Software ends \nautomatically. \n\nThe patent rights, if any, licensed hereunder only apply to the Software, \nnot to any derivative works you make. \n\n10. Termination.\nYour rights under this License end automatically if you breach it in any way.\n\nMarimer, LLC reserves the right to release the Software under different \nlicense terms or to stop distributing the Software at any time. Such an \nelection will not serve to withdraw this Agreement, and this Agreement will \ncontinue in full force and effect unless terminated as stated above.\n\n11. Governing Law.\nThis Agreement shall be construed and enforced in accordance with the laws \nof the state of Minnesota, USA.\n\n12. No Assignment.\nNeither this Agreement nor any interest in this Agreement may be assigned \nby Licensee without the prior express written approval of Developer.\n\n13. Final Agreement.\nThis Agreement terminates and supersedes all prior understandings or \nagreements on the subject matter hereof. This Agreement may be modified \nonly by a further writing that is duly executed by both parties.\n\n14. Severability.\nIf any term of this Agreement is held by a court of competent jurisdiction \nto be invalid or unenforceable, then this Agreement, including all of the \nremaining terms, will remain in full force and effect as if such invalid \nor unenforceable term had never been included.\n\n15. Headings.\nHeadings used in this Agreement are provided for convenience only and shall \nnot be used to construe meaning or intent.", + "json": "csla.json", + "yaml": "csla.yml", + "html": "csla.html", + "license": "csla.LICENSE" + }, + { + "license_key": "csprng", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-csprng", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution of the CSPRNG\nmodules and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice\nand this permission notice in its entirety.\n\n2. Redistributions in binary form must reproduce the copyright notice in\nthe documentation and/or other materials provided with the distribution.\n\n3. A copy of any bugfixes or enhancements made must be provided to the\nauthor, to allow them to be added to the\nbaseline version of the code.", + "json": "csprng.json", + "yaml": "csprng.yml", + "html": "csprng.html", + "license": "csprng.LICENSE" + }, + { + "license_key": "ctl-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ctl-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution. Redistribution and use in binary form, without\nmodification, are permitted provided that the following conditions are\nmet:\n\n* Redistributions must reproduce the above copyright notice and the\n following disclaimer in the documentation and/or other materials\n provided with the distribution.\n* Neither the name of Creative Technology Ltd or its affiliates (\"CTL\")\n nor the names of its suppliers may be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n* No reverse engineering, decompilation, or disassembly of this software\n (or any part thereof) is permitted.\n\nLimited patent license. CTL grants a limited, world-wide,\nroyalty-free, non-exclusive license under patents it now or hereafter\nowns or controls to make, have made, use, import, offer to sell and\nsell (\"Utilize\") this software, but strictly only to the extent that any\nsuch patent is necessary to Utilize the software alone, or in\ncombination with an operating system licensed under an approved Open\nSource license as listed by the Open Source Initiative at\nhttp://opensource.org/licenses. The patent license shall not be\napplicable, to any other combinations which include this software.\nNo hardware per se is licensed hereunder.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\nCOPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\nOF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\nUSE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGE.\n\nNO OTHER RIGHTS GRANTED. USER HEREBY ACKNOWLEDGES AND AGREES THAT USE OF\nTHIS SOFTWARE SHALL NOT CREATE OR GIVE GROUNDS FOR A LICENSE BY\nIMPLICATION, ESTOPPEL, OR OTHERWISE TO ANY INTELLECTUAL PROPERTY RIGHTS\n(PATENT, COPYRIGHT, TRADE SECRET, MASK WORK, OR OTHER PROPRIETARY RIGHT)\nEMBODIED IN ANY OTHER CTL HARDWARE OR SOFTWARE WHETHER SOLELY OR IN\nCOMBINATION WITH THIS SOFTWARE.", + "json": "ctl-linux-firmware.json", + "yaml": "ctl-linux-firmware.yml", + "html": "ctl-linux-firmware.html", + "license": "ctl-linux-firmware.LICENSE" + }, + { + "license_key": "cua-opl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "CUA-OPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CUA Office Public License Version 1.0\n1. Definitions.\n\n1.0.1. \"Commercial Use\" means distribution or otherwise making the\nCovered Code available to a third party.\n\n1.1. \"Contributor\" means each entity that creates or contributes to\nthe creation of Modifications.\n\n1.2. \"Contributor Version\" means the combination of the Original\nCode, prior Modifications used by a Contributor, and the Modifications\nmade by that particular Contributor.\n\n1.3. \"Covered Code\" means the Original Code or Modifications or the\ncombination of the Original Code and Modifications, in each case\nincluding portions thereof.\n\n1.4. \"Electronic Distribution Mechanism\" means a mechanism generally\naccepted in the software development community for the electronic\ntransfer of data.\n\n1.5. \"Executable\" means Covered Code in any form other than Source\nCode.\n\n1.6. \"Initial Developer\" means the individual or entity identified\nas the Initial Developer in the Source Code notice required by Exhibit\nA.\n\n1.7. \"Larger Work\" means a work which combines Covered Code or\nportions thereof with code not governed by the terms of this License.\n\n1.8. \"License\" means this document.\n\n1.8.1. \"Licensable\" means having the right to grant, to the maximum\nextent possible, whether at the time of the initial grant or\nsubsequently acquired, any and all of the rights conveyed herein.\n\n1.9. \"Modifications\" means any addition to or deletion from the\nsubstance or structure of either the Original Code or any previous\nModifications. When Covered Code is released as a series of files, a\nModification is:\n\nA. Any addition to or deletion from the contents of a file\ncontaining Original Code or previous Modifications.\n\nB. Any new file that contains any part of the Original Code or\nprevious Modifications.\n\n1.10. \"Original Code\" means Source Code of computer software code\nwhich is described in the Source Code notice required by Exhibit A as\nOriginal Code, and which, at the time of its release under this\nLicense is not already Covered Code governed by this License.\n\n1.10.1. \"Patent Claims\" means any patent claim(s), now owned or\nhereafter acquired, including without limitation, method, process,\nand apparatus claims, in any patent Licensable by grantor.\n\n1.11. \"Source Code\" means the preferred form of the Covered Code for\nmaking modifications to it, including all modules it contains, plus\nany associated interface definition files, scripts used to control\ncompilation and installation of an Executable, or source code\ndifferential comparisons against either the Original Code or another\nwell known, available Covered Code of the Contributor's choice. The\nSource Code can be in a compressed or archival form, provided the\nappropriate decompression or de-archiving software is widely available\nfor no charge.\n\n1.12. \"You\" (or \"Your\") means an individual or a legal entity\nexercising rights under, and complying with all of the terms of, this\nLicense or a future version of this License issued under Section 6.1.\nFor legal entities, \"You\" includes any entity which controls, is\ncontrolled by, or is under common control with You. For purposes of\nthis definition, \"control\" means (a) the power, direct or indirect,\nto cause the direction or management of such entity, whether by\ncontract or otherwise, or (b) ownership of more than fifty percent\n(50%) of the outstanding shares or beneficial ownership of such\nentity.\n\n2. Source Code License.\n\n2.1. The Initial Developer Grant.\nThe Initial Developer hereby grants You a world-wide, royalty-free,\nnon-exclusive license, subject to third party intellectual property\nclaims:\n\n(a) under intellectual property rights (other than patent or\ntrademark) Licensable by Initial Developer to use, reproduce,\nmodify, display, perform, sublicense and distribute the Original\nCode (or portions thereof) with or without Modifications, and/or\nas part of a Larger Work; and\n\n(b) under Patents Claims infringed by the making, using or\nselling of Original Code, to make, have made, use, practice,\nsell, and offer for sale, and/or otherwise dispose of the\nOriginal Code (or portions thereof).\n\n(c) the licenses granted in this Section 2.1(a) and (b) are\neffective on the date Initial Developer first distributes\nOriginal Code under the terms of this License.\n\n(d) Notwithstanding Section 2.1(b) above, no patent license is\ngranted: 1) for code that You delete from the Original Code; 2)\nseparate from the Original Code; or 3) for infringements caused\nby: i) the modification of the Original Code or ii) the\ncombination of the Original Code with other software or devices.\n\n2.2. Contributor Grant.\nSubject to third party intellectual property claims, each Contributor\nhereby grants You a world-wide, royalty-free, non-exclusive license\n\n(a) under intellectual property rights (other than patent or\ntrademark) Licensable by Contributor, to use, reproduce, modify,\ndisplay, perform, sublicense and distribute the Modifications\ncreated by such Contributor (or portions thereof) either on an\nunmodified basis, with other Modifications, as Covered Code\nand/or as part of a Larger Work; and\n\n(b) under Patent Claims infringed by the making, using, or\nselling of Modifications made by that Contributor either alone\nand/or in combination with its Contributor Version (or portions\nof such combination), to make, use, sell, offer for sale, have\nmade, and/or otherwise dispose of: 1) Modifications made by that\nContributor (or portions thereof); and 2) the combination of\nModifications made by that Contributor with its Contributor\nVersion (or portions of such combination).\n\n(c) the licenses granted in Sections 2.2(a) and 2.2(b) are\neffective on the date Contributor first makes Commercial Use of\nthe Covered Code.\n\n(d) Notwithstanding Section 2.2(b) above, no patent license is\ngranted: 1) for any code that Contributor has deleted from the\nContributor Version; 2) separate from the Contributor Version;\n3) for infringements caused by: i) third party modifications of\nContributor Version or ii) the combination of Modifications made\nby that Contributor with other software (except as part of the\nContributor Version) or other devices; or 4) under Patent Claims\ninfringed by Covered Code in the absence of Modifications made by\nthat Contributor.\n\n3. Distribution Obligations.\n\n3.1. Application of License.\nThe Modifications which You create or to which You contribute are\ngoverned by the terms of this License, including without limitation\nSection 2.2. The Source Code version of Covered Code may be\ndistributed only under the terms of this License or a future version\nof this License released under Section 6.1, and You must include a\ncopy of this License with every copy of the Source Code You\ndistribute. You may not offer or impose any terms on any Source Code\nversion that alters or restricts the applicable version of this\nLicense or the recipients' rights hereunder. However, You may include\nan additional document offering the additional rights described in\nSection 3.5.\n\n3.2. Availability of Source Code.\nAny Modification which You create or to which You contribute must be\nmade available in Source Code form under the terms of this License\neither on the same media as an Executable version or via an accepted\nElectronic Distribution Mechanism to anyone to whom you made an\nExecutable version available; and if made available via Electronic\nDistribution Mechanism, must remain available for at least twelve (12)\nmonths after the date it initially became available, or at least six\n(6) months after a subsequent version of that particular Modification\nhas been made available to such recipients. You are responsible for\nensuring that the Source Code version remains available even if the\nElectronic Distribution Mechanism is maintained by a third party.\n\n3.3. Description of Modifications.\nYou must cause all Covered Code to which You contribute to contain a\nfile documenting the changes You made to create that Covered Code and\nthe date of any change. You must include a prominent statement that\nthe Modification is derived, directly or indirectly, from Original\nCode provided by the Initial Developer and including the name of the\nInitial Developer in (a) the Source Code, and (b) in any notice in an\nExecutable version or related documentation in which You describe the\norigin or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters\n\n(a) Third Party Claims.\nIf Contributor has knowledge that a license under a third party's\nintellectual property rights is required to exercise the rights\ngranted by such Contributor under Sections 2.1 or 2.2,\nContributor must include a text file with the Source Code\ndistribution titled \"LEGAL\" which describes the claim and the\nparty making the claim in sufficient detail that a recipient will\nknow whom to contact. If Contributor obtains such knowledge after\nthe Modification is made available as described in Section 3.2,\nContributor shall promptly modify the LEGAL file in all copies\nContributor makes available thereafter and shall take other steps\n(such as notifying appropriate mailing lists or newsgroups)\nreasonably calculated to inform those who received the Covered\nCode that new knowledge has been obtained.\n\n(b) Contributor APIs.\n\nIf Contributor's Modifications include an application programming\ninterface and Contributor has knowledge of patent licenses which\nare reasonably necessary to implement that API, Contributor must\nalso include this information in the LEGAL file.\n\n(c) Representations.\n\nContributor represents that, except as disclosed pursuant to\nSection 3.4(a) above, Contributor believes that Contributor's\nModifications are Contributor's original creation(s) and/or\nContributor has sufficient rights to grant the rights conveyed by\nthis License.\n\n3.5. Required Notices.\nYou must duplicate the notice in Exhibit A in each file of the Source\nCode. If it is not possible to put such notice in a particular Source\nCode file due to its structure, then You must include such notice in a\nlocation (such as a relevant directory) where a user would be likely\nto look for such a notice. If You created one or more Modification(s)\nYou may add your name as a Contributor to the notice described in\nExhibit A. You must also duplicate this License in any documentation\nfor the Source Code where You describe recipients' rights or ownership\nrights relating to Covered Code. You may choose to offer, and to\ncharge a fee for, warranty, support, indemnity or liability\nobligations to one or more recipients of Covered Code. However, You\nmay do so only on Your own behalf, and not on behalf of the Initial\nDeveloper or any Contributor. You must make it absolutely clear than\nany such warranty, support, indemnity or liability obligation is\noffered by You alone, and You hereby agree to indemnify the Initial\nDeveloper and every Contributor for any liability incurred by the\nInitial Developer or such Contributor as a result of warranty,\nsupport, indemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions.\nYou may distribute Covered Code in Executable form only if the\nrequirements of Section 3.1-3.5 have been met for that Covered Code,\nand if You include a notice stating that the Source Code version of\nthe Covered Code is available under the terms of this License,\nincluding a description of how and where You have fulfilled the\nobligations of Section 3.2. The notice must be conspicuously included\nin any notice in an Executable version, related documentation or\ncollateral in which You describe recipients' rights relating to the\nCovered Code. You may distribute the Executable version of Covered\nCode or ownership rights under a license of Your choice, which may\ncontain terms different from this License, provided that You are in\ncompliance with the terms of this License and that the license for the\nExecutable version does not attempt to limit or alter the recipient's\nrights in the Source Code version from the rights set forth in this\nLicense. If You distribute the Executable version under a different\nlicense You must make it absolutely clear that any terms which differ\nfrom this License are offered by You alone, not by the Initial\nDeveloper or any Contributor. You hereby agree to indemnify the\nInitial Developer and every Contributor for any liability incurred by\nthe Initial Developer or such Contributor as a result of any such\nterms You offer.\n\n3.7. Larger Works.\nYou may create a Larger Work by combining Covered Code with other code\nnot governed by the terms of this License and distribute the Larger\nWork as a single product. In such a case, You must make sure the\nrequirements of this License are fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to comply with any of the terms of this\nLicense with respect to some or all of the Covered Code due to\nstatute, judicial order, or regulation then You must: (a) comply with\nthe terms of this License to the maximum extent possible; and (b)\ndescribe the limitations and the code they affect. Such description\nmust be included in the LEGAL file described in Section 3.4 and must\nbe included with all distributions of the Source Code. Except to the\nextent prohibited by statute or regulation, such description must be\nsufficiently detailed for a recipient of ordinary skill to be able to\nunderstand it.\n\n5. Application of this License.\n\nThis License applies to code to which the Initial Developer has\nattached the notice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n\n6.1. New Versions.\nCUA Office Project may publish revised\nand/or new versions of the License from time to time. Each version\nwill be given a distinguishing version number.\n\n6.2. Effect of New Versions.\nOnce Covered Code has been published under a particular version of the\nLicense, You may always continue to use it under the terms of that\nversion. You may also choose to use such Covered Code under the terms\nof any subsequent version of the License published by CUA Office Project. No one\nother than CUA Office Project has the right to modify the terms applicable to\nCovered Code created under this License.\n\n6.3. Derivative Works.\nIf You create or use a modified version of this License (which you may\nonly do in order to apply it to code which is not already Covered Code\ngoverned by this License), You must (a) rename Your license so that\nthe phrases \"CUA Office\", \"CUA\", \"CUAPL\", or any confusingly similar phrase do not appear in your\nlicense (except to note that your license differs from this License)\nand (b) otherwise make it clear that Your version of the license\ncontains terms which differ from the CUA Office Public License. (Filling in the name of the Initial\nDeveloper, Original Code or Contributor in the notice described in\nExhibit A shall not of themselves be deemed to be modifications of\nthis License.)\n\n7. DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS,\nWITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\nWITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF\nDEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.\nTHE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE\nIS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT,\nYOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE\nCOST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER\nOF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF\nANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n\n8.1. This License and the rights granted hereunder will terminate\nautomatically if You fail to comply with terms herein and fail to cure\nsuch breach within 30 days of becoming aware of the breach. All\nsublicenses to the Covered Code which are properly granted shall\nsurvive any termination of this License. Provisions which, by their\nnature, must remain in effect beyond the termination of this License\nshall survive.\n\n8.2. If You initiate litigation by asserting a patent infringement\nclaim (excluding declatory judgment actions) against Initial Developer\nor a Contributor (the Initial Developer or Contributor against whom\nYou file such action is referred to as \"Participant\") alleging that:\n\n(a) such Participant's Contributor Version directly or indirectly\ninfringes any patent, then any and all rights granted by such\nParticipant to You under Sections 2.1 and/or 2.2 of this License\nshall, upon 60 days notice from Participant terminate prospectively,\nunless if within 60 days after receipt of notice You either: (i)\nagree in writing to pay Participant a mutually agreeable reasonable\nroyalty for Your past and future use of Modifications made by such\nParticipant, or (ii) withdraw Your litigation claim with respect to\nthe Contributor Version against such Participant. If within 60 days\nof notice, a reasonable royalty and payment arrangement are not\nmutually agreed upon in writing by the parties or the litigation claim\nis not withdrawn, the rights granted by Participant to You under\nSections 2.1 and/or 2.2 automatically terminate at the expiration of\nthe 60 day notice period specified above.\n\n(b) any software, hardware, or device, other than such Participant's\nContributor Version, directly or indirectly infringes any patent, then\nany rights granted to You by such Participant under Sections 2.1(b)\nand 2.2(b) are revoked effective as of the date You first made, used,\nsold, distributed, or had made, Modifications made by that\nParticipant.\n\n8.3. If You assert a patent infringement claim against Participant\nalleging that such Participant's Contributor Version directly or\nindirectly infringes any patent where such claim is resolved (such as\nby license or settlement) prior to the initiation of patent\ninfringement litigation, then the reasonable value of the licenses\ngranted by such Participant under Sections 2.1 or 2.2 shall be taken\ninto account in determining the amount or value of any payment or\nlicense.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above,\nall end user license agreements (excluding distributors and resellers)\nwhich have been validly granted by You or any distributor hereunder\nprior to termination shall survive termination.\n\n9. LIMITATION OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\n(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL\nDEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,\nOR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR\nANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY\nCHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,\nWORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\nCOMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\nINFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF\nLIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\nPROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE\nEXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO\nTHIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS.\n\nThe Covered Code is a \"commercial item,\" as that term is defined in\n48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer\nsoftware\" and \"commercial computer software documentation,\" as such\nterms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48\nC.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),\nall U.S. Government End Users acquire Covered Code with only those\nrights set forth herein.\n\n11. MISCELLANEOUS.\n\nThis License represents the complete agreement concerning subject\nmatter hereof. If any provision of this License is held to be\nunenforceable, such provision shall be reformed only to the extent\nnecessary to make it enforceable. This License shall be governed by\nCalifornia law provisions (except to the extent applicable law, if\nany, provides otherwise), excluding its conflict-of-law provisions.\nWith respect to disputes in which at least one party is a citizen of,\nor an entity chartered or registered to do business in the United\nStates of America, any litigation relating to this License shall be\nsubject to the jurisdiction of the Federal Courts of the Northern\nDistrict of California, with venue lying in Santa Clara County,\nCalifornia, with the losing party responsible for costs, including\nwithout limitation, court costs and reasonable attorneys' fees and\nexpenses. The application of the United Nations Convention on\nContracts for the International Sale of Goods is expressly excluded.\nAny law or regulation which provides that the language of a contract\nshall be construed against the drafter shall not apply to this\nLicense.\n\n12. RESPONSIBILITY FOR CLAIMS.\n\nAs between Initial Developer and the Contributors, each party is\nresponsible for claims and damages arising, directly or indirectly,\nout of its utilization of rights under this License and You agree to\nwork with Initial Developer and Contributors to distribute such\nresponsibility on an equitable basis. Nothing herein is intended or\nshall be deemed to constitute any admission of liability.\n\n13. MULTIPLE-LICENSED CODE.\n\nInitial Developer may designate portions of the Covered Code as\n\"Multiple-Licensed\". \"Multiple-Licensed\" means that the Initial\nDeveloper permits you to utilize portions of the Covered Code under\nYour choice of the NPL or the alternative licenses, if any, specified\nby the Initial Developer in the file described in Exhibit A.\n\nEXHIBIT A - CUA Office Public License.\n\n``The contents of this file are subject to the CUA Office Public License\nVersion 1.0 (the \"License\"); you may not use this file except in\ncompliance with the License. You may obtain a copy of the License at\nhttp://cuaoffice.sourceforge.net/\n\nSoftware distributed under the License is distributed on an \"AS IS\"\nbasis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the\nLicense for the specific language governing rights and limitations\nunder the License.\n\nThe Original Code is .\n\nThe Initial Developer of the Original Code is .\nPortions created by are Copyright (C) \n . All Rights Reserved.\n\nContributor(s): .\n\nAlternatively, the contents of this file may be used under the terms\nof the license (the \"[ ] License\"), in which case the\nprovisions of [ ] License are applicable instead of those\nabove. If you wish to allow use of your version of this file only\nunder the terms of the [ ] License and not to allow others to use\nyour version of this file under the CUAPL, indicate your decision by\ndeleting the provisions above and replace them with the notice and\nother provisions required by the [ ] License. If you do not delete\nthe provisions above, a recipient may use your version of this file\nunder either the CUAPL or the [ ] License.\"\n\n[NOTE: The text of this Exhibit A may differ slightly from the text of\nthe notices in the Source Code files of the Original Code. You should\nuse the text of this Exhibit A rather than the text found in the\nOriginal Code Source Code for Your Modifications.]", + "json": "cua-opl-1.0.json", + "yaml": "cua-opl-1.0.yml", + "html": "cua-opl-1.0.html", + "license": "cua-opl-1.0.LICENSE" + }, + { + "license_key": "cube", + "category": "Permissive", + "spdx_license_key": "Cube", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Cube game engine source code, 20 dec 2003 release.\n\nCopyright (C) 2001-2003 Wouter van Oortmerssen.\n\nThis software is provided 'as-is', without any express or implied warranty. In\nno event will the authors be held liable for any damages arising from the use of\nthis software.\n\nPermission is granted to anyone to use this software for any purpose, including\ncommercial applications, and to alter it and redistribute it freely, subject to\nthe following restrictions:\n\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software in a\n product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n\n 3. This notice may not be removed or altered from any source distribution.\n\nadditional clause specific to Cube:\n\n 4. Source versions may not be \"relicensed\" under a different license\n without my explicitly written permission.", + "json": "cube.json", + "yaml": "cube.yml", + "html": "cube.html", + "license": "cube.LICENSE" + }, + { + "license_key": "cubiware-software-1.0", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-cubiware-software-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Cubiware Sp. z o.o. Software License Version 1.0\n\nAny rights which are not expressly granted in this License are entirely and\nexclusively reserved to and by Cubiware Sp. z o.o. You may not rent, lease,\nmodify, translate, reverse engineer, decompile, disassemble, or create\nderivative works based on this Software. You may not make access to this\nSoftware available to others in connection with a service bureau,\napplication service provider, or similar business, or make any other use of\nthis Software without express written permission from Cubiware Sp. z o.o.\n\nAny User wishing to make use of this Software must contact\nCubiware Sp. z o.o. to arrange an appropriate license. Use of the Software\nincludes, but is not limited to:\n(1) integrating or incorporating all or part of the code into a product for\n sale or license by, or on behalf of, User to third parties;\n(2) distribution of the binary or source code to third parties for use with\n a commercial product sold or licensed by, or on behalf of, User.", + "json": "cubiware-software-1.0.json", + "yaml": "cubiware-software-1.0.yml", + "html": "cubiware-software-1.0.html", + "license": "cubiware-software-1.0.LICENSE" + }, + { + "license_key": "cups", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-cups", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Software License Agreement\n\nCopyright 2007-2009 by Apple Inc.\n1 Infinite Loop\nCupertino, CA 95014 USA\n\nWWW: http://www.cups.org/\n\nIntroduction\n\nCUPSTM is provided under the GNU General Public License (\"GPL\") and GNU Library General Public License (\"LGPL\"), Version 2, with exceptions for Apple operating systems and the OpenSSL toolkit. A copy of the exceptions and licenses follow this introduction.\n\nThe GNU LGPL applies to the CUPS and CUPS Imaging libraries located in the \"cups\" and \"filter\" subdirectories of the CUPS source distribution and in the \"cups\" include directory and library files in the binary distributions. The GNU GPL applies to the remainder of the CUPS distribution, including the \"pdftops\" filter which is based upon Xpdf.\n\nFor those not familiar with the GNU GPL, the license basically allows you to:\n\nUse the CUPS software at no charge.\nDistribute verbatim copies of the software in source or binary form.\nSell verbatim copies of the software for a media fee, or sell support for the software.\nWhat this license does not allow you to do is make changes or add features to CUPS and then sell a binary distribution without source code. You must provide source for any changes or additions to the software, and all code must be provided under the GPL or LGPL as appropriate. The only exceptions to this are the portions of the CUPS software covered by the Apple operating system license exceptions outlined later in this license agreement.\n\nThe GNU LGPL relaxes the \"link-to\" restriction, allowing you to develop applications that use the CUPS and CUPS Imaging libraries under other licenses and/or conditions as appropriate for your application, driver, or filter.\n\nLicense Exceptions\n\nIn addition, as the copyright holder of CUPS, Apple Inc. grants the following special exceptions:\n\nApple Operating System Development License Exception;\nSoftware that is developed by any person or entity for an Apple Operating System (\"Apple OS-Developed Software\"), including but not limited to Apple and third party printer drivers, filters, and backends for an Apple Operating System, that is linked to the CUPS imaging library or based on any sample filters or backends provided with CUPS shall not be considered to be a derivative work or collective work based on the CUPS program and is exempt from the mandatory source code release clauses of the GNU GPL. You may therefore distribute linked combinations of the CUPS imaging library with Apple OS-Developed Software without releasing the source code of the Apple OS-Developed Software. You may also use sample filters and backends provided with CUPS to develop Apple OS-Developed Software without releasing the source code of the Apple OS-Developed Software.\nAn Apple Operating System means any operating system software developed and/or marketed by Apple Computer, Inc., including but not limited to all existing releases and versions of Apple's Darwin, Mac OS X, and Mac OS X Server products and all follow-on releases and future versions thereof.\nThis exception is only available for Apple OS-Developed Software and does not apply to software that is distributed for use on other operating systems.\nAll CUPS software that falls under this license exception have the following text at the top of each source file:\nThis file is subject to the Apple OS-Developed Software exception.\nOpenSSL Toolkit License Exception;\nApple Inc. explicitly allows the compilation and distribution of the CUPS software with the OpenSSL Toolkit.\nNo developer is required to provide these exceptions in a derived work.\n\nKerberos Support Code\n\nThe Kerberos support code (\"KSC\") is copyright 2006 by Jelmer Vernooij and is provided 'as-is', without any express or implied warranty. In no event will the author or Apple Inc. be held liable for any damages arising from the use of the KSC.\n\nSources files containing KSC have the following text at the top of each source file:\n\nThis file contains Kerberos support code, copyright 2006 by Jelmer Vernooij.\nThe KSC copyright and license apply only to Kerberos-related feature code in CUPS. Such code is typically conditionally compiled based on the present of the HAVE_GSSAPI preprocessor definition.\n\nPermission is granted to anyone to use the KSC for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:\n\nThe origin of the KSC must not be misrepresented; you must not claim that you wrote the original software. If you use the KSC in a product, an acknowledgment in the product documentation would be appreciated but is not required.\nAltered source versions must be plainly marked as such, and must not be misrepresented as being the original software.\nThis notice may not be removed or altered from any source distribution.\nTrademarks\n\nCUPS and the CUPS logo (the \"CUPS Marks\") are trademarks of Apple Inc. Apple grants you a non-exclusive and non-transferable right to use the CUPS Marks in any direct port or binary distribution incorporating CUPS software and in any promotional material therefor. You agree that your products will meet the highest levels of quality and integrity for similar goods, not be unlawful, and be developed, manufactured, and distributed in compliance with this license. You will not interfere with Apple's rights in the CUPS Marks, and all use of the CUPS Marks shall inure to the benefit of Apple. This license does not apply to use of the CUPS Marks in a derivative products, which requires prior written permission from Apple Inc.", + "json": "cups.json", + "yaml": "cups.yml", + "html": "cups.html", + "license": "cups.LICENSE" + }, + { + "license_key": "cups-apple-os-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cups-apple-os-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "In addition, as the copyright holder of CUPS, Apple Inc. grants\nthe following special exceptions:\n\n 1. Apple Operating System Development License Exception;\n\n\ta. Software that is developed by any person or entity\n\t for an Apple Operating System (\"Apple OS-Developed\n\t Software\"), including but not limited to Apple and\n\t third party printer drivers, filters, and backends\n\t for an Apple Operating System, that is linked to the\n\t CUPS imaging library or based on any sample filters\n\t or backends provided with CUPS shall not be\n\t considered to be a derivative work or collective work\n\t based on the CUPS program and is exempt from the\n\t mandatory source code release clauses of the GNU GPL.\n\t You may therefore distribute linked combinations of\n\t the CUPS imaging library with Apple OS-Developed\n\t Software without releasing the source code of the\n\t Apple OS-Developed Software. You may also use sample\n\t filters and backends provided with CUPS to develop\n\t Apple OS-Developed Software without releasing the\n\t source code of the Apple OS-Developed Software.\n\n\tb. An Apple Operating System means any operating system\n\t software developed and/or marketed by Apple Inc.,\n\t including but not limited to all existing releases and\n\t versions of Apple's Darwin, OS X, and OS X Server\n\t products and all follow-on releases and future\n\t versions thereof.\n\n\tc. This exception is only available for Apple\n\t OS-Developed Software and does not apply to software\n\t that is distributed for use on other operating\n\t systems.\n\n\td. All CUPS software that falls under this license\n\t exception have the following text at the top of each\n\t source file:\n\n\t This file is subject to the Apple OS-Developed\n\t Software exception.\n\n 2. OpenSSL Toolkit License Exception;\n\n\ta. Apple Inc. explicitly allows the compilation and\n\t distribution of the CUPS software with the OpenSSL\n\t Toolkit.\n\nNo developer is required to provide these exceptions in a\nderived work.", + "json": "cups-apple-os-exception.json", + "yaml": "cups-apple-os-exception.yml", + "html": "cups-apple-os-exception.html", + "license": "cups-apple-os-exception.LICENSE" + }, + { + "license_key": "curl", + "category": "Permissive", + "spdx_license_key": "curl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright\nnotice and this permission notice appear in all copies.\n \nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN\nNO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE\nOR OTHER DEALINGS IN THE SOFTWARE.\n \nExcept as contained in this notice, the name of a copyright holder shall not\nbe used in advertising or otherwise to promote the sale, use or other dealings\nin this Software without prior written authorization of the copyright holder.", + "json": "curl.json", + "yaml": "curl.yml", + "html": "curl.html", + "license": "curl.LICENSE" + }, + { + "license_key": "cve-tou", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cve-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CVE Usage: MITRE hereby grants you a perpetual, worldwide, non-exclusive,\nno-charge, royalty-free, irrevocable copyright license to reproduce, prepare\nderivative works of, publicly display, publicly perform, sublicense, and\ndistribute Common Vulnerabilities and Exposures (CVE\u00ae). Any copy you make for\nsuch purposes is authorized provided that you reproduce MITRE's copyright\ndesignation and this license in any such copy.\n\nDISCLAIMERS\n\nALL DOCUMENTS AND THE INFORMATION CONTAINED THEREIN PROVIDED BY MITRE ARE\nPROVIDED ON AN \"AS IS\" BASIS AND THE CONTRIBUTOR, THE ORGANIZATION HE/SHE\nREPRESENTS OR IS SPONSORED BY (IF ANY), THE MITRE CORPORATION, ITS BOARD OF\nTRUSTEES, OFFICERS, AGENTS, AND EMPLOYEES, DISCLAIM ALL WARRANTIES, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE\nINFORMATION THEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF\nMERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.", + "json": "cve-tou.json", + "yaml": "cve-tou.yml", + "html": "cve-tou.html", + "license": "cve-tou.LICENSE" + }, + { + "license_key": "cvwl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cvwl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Collaborative Virtual Workspace License (CVW)\nLicense Agreement\nGeneral\n\n 1. Redistribution of the CVW software or derived works must reproduce MITRE's copyright designation and this License in the documentation and/or other materials provided with the distribution.\n\n Copyright \u00a9 . The MITRE Corporation (http://www.mitre.org/). All Rights Reserved.\n\n 2. The terms \"MITRE\" and \"The MITRE Corporation\" are trademarks of The MITRE Corporation and must not be used to endorse or promote products derived from this software or in redistribution of this software in any form.\n\n 3. The terms \"CVW\" and \"Collaborative Virtual Workspace\" are trademarks of The MITRE Corporation and must not be used to endorse or promote products derived from this software without the prior written permission of MITRE. For written permission, please contact corpc@mitre.org.\n \n 4. UNITED STATES GOVERNMENT RIGHTS: This software was produced for the U.S. Government under Contract No. F19628-99-C-0001, and is subject to the Rights in Noncommercial Computer Software and Noncommercial Computer Software Documentation Clause (DFARS) 252.227-7014 (JUN 1995). The Licensee agrees that the US Government will not be charged any license fee and/or royalties related to this software.\n\n 5. Downloaders of the CVW software may choose to have their access to and use of the CVW software governed under either the GNU General Public License (Version 2) or the Mozilla License (Version 1.0). In either case, if you transmit source code improvements or modifications to MITRE, you agree to assign to MITRE copyright to such improvements or modifications, which MITRE will then make available from MITRE's web site.\n\n 6. If you choose to use the Mozilla License (Version 1.0), please note that because the software in this module was developed using, at least in part, Government funds, the Government has certain rights in the module which apply instead of the Government rights in Section 10 of the Mozilla License. These Government rights DO NOT affect your right to use the module on an Open Source basis as set forth in the Mozilla License. The statement of Government rights which replaces Section 10 of the Mozilla License is stated in Section 4 above.", + "json": "cvwl.json", + "yaml": "cvwl.yml", + "html": "cvwl.html", + "license": "cvwl.LICENSE" + }, + { + "license_key": "cwe-tou", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cwe-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CWE Usage: MITRE hereby grants you a non-exclusive, royalty-free license to use\nCWE for research, development, and commercial purposes. Any copy you make for\nsuch purposes is authorized on the condition that you reproduce MITRE\u2019s\ncopyright designation and this license in any such copy.\n\nDISCLAIMERS\n\nALL DOCUMENTS AND THE INFORMATION CONTAINED IN THE CWE ARE PROVIDED ON AN\n\"AS IS\" BASIS AND THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS OR IS\nSPONSORED BY (IF ANY), THE MITRE CORPORATION, ITS BOARD OF TRUSTEES, OFFICERS,\nAGENTS, AND EMPLOYEES, DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING\nBUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION THEREIN WILL NOT\nINFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR\nA PARTICULAR PURPOSE AND NONINFRINGEMENT.\n\nIN NO EVENT SHALL THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS OR IS\nSPONSORED BY (IF ANY), THE MITRE CORPORATION, ITS BOARD OF TRUSTEES, OFFICERS,\nAGENTS, AND EMPLOYEES BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE INFORMATION OR THE USE OR OTHER DEALINGS IN THE CWE.", + "json": "cwe-tou.json", + "yaml": "cwe-tou.yml", + "html": "cwe-tou.html", + "license": "cwe-tou.LICENSE" + }, + { + "license_key": "cximage", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cximage", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This copy of the CxImage notices is provided for your convenience. In case of\nany discrepancy between this copy and the notices in the file ximage.h that is\nincluded in the CxImage distribution, the latter shall prevail.\n\nIf you modify CxImage you may insert additional notices immediately following\nthis sentence.\n\n--------------------------------------------------------------------------------\n\nCOPYRIGHT NOTICE, DISCLAIMER, and LICENSE:\n\nCxImage version 5.99c 17/Oct/2004\n\nCxImage : Copyright (C) 2001 - 2004, Davide Pizzolato\n\nOriginal CImage and CImageIterator implementation are:\nCopyright (C) 1995, Alejandro Aguilar Sierra (asierra(at)servidor(dot)unam(dot)mx)\n\nCovered code is provided under this license on an \"as is\" basis, without warranty\nof any kind, either expressed or implied, including, without limitation, warranties\nthat the covered code is free of defects, merchantable, fit for a particular purpose\nor non-infringing. The entire risk as to the quality and performance of the covered\ncode is with you. Should any covered code prove defective in any respect, you (not\nthe initial developer or any other contributor) assume the cost of any necessary\nservicing, repair or correction. This disclaimer of warranty constitutes an essential\npart of this license. No use of any covered code is authorized hereunder except under\nthis disclaimer.\n\nPermission is hereby granted to use, copy, modify, and distribute this\nsource code, or portions hereof, for any purpose, including commercial applications,\nfreely and without fee, subject to the following restrictions: \n\n1. The origin of this software must not be misrepresented; you must not\nclaim that you wrote the original software. If you use this software\nin a product, an acknowledgment in the product documentation would be\nappreciated but is not required.\n\n2. Altered source versions must be plainly marked as such, and must not be\nmisrepresented as being the original software.\n\n3. This notice may not be removed or altered from any source distribution.\n\n--------------------------------------------------------------------------------\n\nOther information: about CxImage, and the latest version, can be found at the\nCxImage home page: http://www.xdp.it\n\n--------------------------------------------------------------------------------", + "json": "cximage.json", + "yaml": "cximage.yml", + "html": "cximage.html", + "license": "cximage.LICENSE" + }, + { + "license_key": "cygwin-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cygwin-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "In accordance with section 10 of the GPL, Red Hat permits programs whose\nsources are distributed under a license that complies with the Open\nSource definition to be linked with libcygwin.a without libcygwin.a\nitself causing the resulting program to be covered by the GNU GPL.", + "json": "cygwin-exception-2.0.json", + "yaml": "cygwin-exception-2.0.yml", + "html": "cygwin-exception-2.0.html", + "license": "cygwin-exception-2.0.LICENSE" + }, + { + "license_key": "cygwin-exception-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cygwin-exception-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception to GPLv3+, Red Hat grants you permission to link\nsoftware whose sources are distributed under a license that satisfies\nthe Open Source Definition with libcygwin.a, without libcygwin.a\nitself causing the resulting program to be covered by GPLv3+.", + "json": "cygwin-exception-3.0.json", + "yaml": "cygwin-exception-3.0.yml", + "html": "cygwin-exception-3.0.html", + "license": "cygwin-exception-3.0.LICENSE" + }, + { + "license_key": "cygwin-exception-lgpl-3.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cygwin-exception-lgpl-3.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, the copyright holders of the Cygwin library grant you\nadditional permission to link libcygwin.a, crt0.o, and gcrt0.o with independent\nmodules to produce an executable, and to convey the resulting executable under\nterms of your choice, without any need to comply with the conditions of LGPLv3\nsection 4. An independent module is a module which is not itself based on the\nCygwin library.", + "json": "cygwin-exception-lgpl-3.0-plus.json", + "yaml": "cygwin-exception-lgpl-3.0-plus.yml", + "html": "cygwin-exception-lgpl-3.0-plus.html", + "license": "cygwin-exception-lgpl-3.0-plus.LICENSE" + }, + { + "license_key": "cypress-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cypress-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "### CYPRESS WIRELESS CONNECTIVITY DEVICES\n### DRIVER END USER LICENSE AGREEMENT (SOURCE AND BINARY DISTRIBUTION)\n\nPLEASE READ THIS END USER LICENSE AGREEMENT (\"Agreement\") CAREFULLY BEFORE\nDOWNLOADING, INSTALLING, OR USING THIS SOFTWARE, ANY ACCOMPANYING\nDOCUMENTATION, OR ANY UPDATES PROVIDED BY CYPRESS (\"Software\"). BY\nDOWNLOADING, INSTALLING, OR USING THE SOFTWARE, YOU ARE AGREEING TO BE BOUND\nBY THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL OF THE TERMS OF THIS\nAGREEMENT, PROMPTLY RETURN AND DO NOT USE THE SOFTWARE. IF YOU HAVE\nPURCHASED THE SOFTWARE, YOUR RIGHT TO RETURN THE SOFTWARE EXPIRES 30 DAYS\nAFTER YOUR PURCHASE AND APPLIES ONLY TO THE ORIGINAL PURCHASER.\n\nSoftware Provided in Binary Code Form. This paragraph applies to any Software\nprovided in binary code form. Subject to the terms and conditions of this\nAgreement, Cypress Semiconductor Corporation (\"Cypress\") grants you a\nnon-exclusive, non-transferable license under its copyright rights in the\nSoftware to reproduce and distribute the Software in object code form only,\nsolely for use in connection with Cypress integrated circuit products\n(\"Purpose\").\n\nSoftware Provided in Source Code Form. This paragraph applies to any Software\nprovided in source code form (\"Cypress Source Code\"). Subject to the terms and\nconditions of this Agreement, Cypress grants you a non-exclusive,\nnon-transferable license under its copyright rights in the Cypress Source Code\nto reproduce, modify, compile, and distribute the Cypress Source Code (whether\nin source code form or as compiled into binary code form) solely for the\nPurpose. Cypress retains ownership of the Cypress Source Code and any compiled\nversion thereof. Subject to Cypress' ownership of the underlying Cypress\nSource Code, you retain ownership of any modifications you make to the\nCypress Source Code. You agree not to remove any Cypress copyright or other\nnotices from the Cypress Source Code and any modifications thereof. Any\nreproduction, modification, translation, compilation, or representation of\nthe Cypress Source Code except as permitted in this paragraph is prohibited\nwithout the express written permission of Cypress.\n\nFree and Open Source Software. Portions of the Software may be licensed under\nfree and/or open source licenses such as the GNU General Public License\n(\"FOSS\"). FOSS is subject to the applicable license agreement and not this\nAgreement. If you are entitled to receive the source code from Cypress for any\nFOSS included with the Software, either the source code will be included with\nthe Software or you may obtain the source code at no charge from\n. The applicable license terms will\naccompany each source code package. To review the license terms applicable to\nany FOSS for which Cypress is not required to provide you with source code,\nplease see the Software's installation directory on your computer.\n\nProprietary Rights. The Software, including all intellectual property rights\ntherein, is and will remain the sole and exclusive property of Cypress or its\nsuppliers. Except as otherwise expressly provided in this Agreement, you may\nnot: (i) modify, adapt, or create derivative works based upon the Software;\n(ii) copy the Software; (iii) except and only to the extent explicitly\npermitted by applicable law despite this limitation, decompile, translate,\nreverse engineer, disassemble or otherwise reduce the Software to\nhuman-readable form; or (iv) use the Software other than for the Purpose.\n\nNo Support. Cypress may, but is not required to, provide technical support for\nthe Software.\n\nTerm and Termination. This Agreement is effective until terminated. This\nAgreement and Your license rights will terminate immediately without notice\nfrom Cypress if you fail to comply with any provision of this Agreement. Upon\ntermination, you must destroy all copies of Software in your possession or\ncontrol. Termination of this Agreement will not affect any licenses validly\ngranted as of the termination date to any end users of the Software. The\nfollowing paragraphs shall survive any termination of this Agreement: \"Free and\nOpen Source Software,\" \"Proprietary Rights,\" \"Compliance With Law,\"\n\"Disclaimer,\" \"Limitation of Liability,\" and \"General.\"\n\nCompliance With Law. Each party agrees to comply with all applicable laws,\nrules and regulations in connection with its activities under this Agreement.\nWithout limiting the foregoing, the Software may be subject to export control\nlaws and regulations of the United States and other countries. You agree to\ncomply strictly with all such laws and regulations and acknowledge that you\nhave the responsibility to obtain licenses to export, re-export, or import\nthe Software.\n\nDisclaimer. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, CYPRESS MAKES\nNO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO THE SOFTWARE,\nINCLUDING, BUT NOT LIMITED TO, INFRINGEMENT AND THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Cypress reserves the\nright to make changes to the Software without notice. Cypress does not assume\nany liability arising out of the application or use of Software or any\nproduct or circuit described in the Software. Cypress does not authorize its\nproducts for use as critical components in life-support systems where a\nmalfunction or failure may reasonably be expected to result in significant\ninjury to the user. The inclusion of Cypress' product in a life-support\nsystem or application implies that the manufacturer of such system or\napplication assumes all risk of such use and in doing so indemnifies Cypress\nagainst all charges.\n\nLimitation of Liability. IN NO EVENT WILL CYPRESS OR ITS SUPPLIERS,\nRESELLERS, OR DISTRIBUTORS BE LIABLE FOR ANY LOST REVENUE, PROFIT, OR DATA,\nOR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL, OR PUNITIVE DAMAGES\nHOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE\nUSE OF OR INABILITY TO USE THE SOFTWARE EVEN IF CYPRESS OR ITS SUPPLIERS,\nRESELLERS, OR DISTRIBUTORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES. IN NO EVENT SHALL CYPRESS' OR ITS SUPPLIERS' RESELLERS', OR\nDISTRIBUTORS' TOTAL LIABILITY TO YOU, WHETHER IN CONTRACT, TORT (INCLUDING\nNEGLIGENCE), OR OTHERWISE, EXCEED THE PRICE PAID BY YOU FOR THE SOFTWARE.\nTHE FOREGOING LIMITATIONS SHALL APPLY EVEN IF THE ABOVE-STATED WARRANTY FAILS\nOF ITS ESSENTIAL PURPOSE. BECAUSE SOME STATES OR JURISDICTIONS DO NOT ALLOW\nLIMITATION OR EXCLUSION OF CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE\nLIMITATION MAY NOT APPLY TO YOU.\n\nRestricted Rights. The Software under this Agreement is commercial computer\nsoftware as that term is described in 48 C.F.R. 252.227-7014(a)(1). If\nacquired by or on behalf of a civilian agency, the U.S. Government acquires\nthis commercial computer software and/or commercial computer software\ndocumentation subject to the terms of this Agreement as specified in 48\nC.F.R. 12.212 (Computer Software) and 12.211 (Technical Data) of the Federal\nAcquisition Regulations (\"FAR\") and its successors. If acquired by or on\nbehalf of any agency within the Department of Defense (\"DOD\"), the U.S.\nGovernment acquires this commercial computer software and/or commercial\ncomputer software documentation subject to the terms of this Agreement as\nspecified in 48 C.F.R. 227.7202-3 of the DOD FAR Supplement (\"DFAR\") and its\nsuccessors.\n\nGeneral. This Agreement will bind and inure to the benefit of each party's\nsuccessors and assigns, provided that you may not assign or transfer this\nAgreement, in whole or in part, without Cypress' written consent. This\nAgreement shall be governed by and construed in accordance with the laws of\nthe State of California, United States of America, as if performed wholly\nwithin the state and without giving effect to the principles of conflict of\nlaw. The parties consent to personal and exclusive jurisdiction of and venue\nin, the state and federal courts within Santa Clara County, California;\nprovided however, that nothing in this Agreement will limit Cypress' right to\nbring legal action in any venue in order to protect or enforce its\nintellectual property rights. No failure of either party to exercise or\nenforce any of its rights under this Agreement will act as a waiver of such\nrights. If any portion hereof is found to be void or unenforceable, the\nremaining provisions of this Agreement shall remain in full force and\neffect. This Agreement is the complete and exclusive agreement between the\nparties with respect to the subject matter hereof, superseding and replacing\nany and all prior agreements, communications, and understandings (both\nwritten and oral) regarding such subject matter. Any notice to Cypress will\nbe deemed effective when actually received and must be sent to Cypress\nSemiconductor Corporation, ATTN: Chief Legal Officer, 198 Champion Court, San\nJose, CA 95134 USA.", + "json": "cypress-linux-firmware.json", + "yaml": "cypress-linux-firmware.yml", + "html": "cypress-linux-firmware.html", + "license": "cypress-linux-firmware.LICENSE" + }, + { + "license_key": "d-fsl-1.0-de", + "category": "Copyleft", + "spdx_license_key": "D-FSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Deutsche Freie Software Lizenz\n\n(c) Ministerium f\u00fcr Wissenschaft und Forschung \nNordrhein-Westfalen 2004\n\nErstellt von Axel Metzger und Till Jaeger, \nInstitut f\u00fcr Rechtsfragen der Freien und Open \nSource Software - .\n\nPr\u00e4ambel\n\nSoftware ist mehr als ein Wirtschaftsgut. Sie ist \ndie technische Grundlage der \nInformationsgesellschaft. Die Frage der Teilhabe \nder Allgemeinheit ist deswegen von besonderer \nBedeutung. Herk\u00f6mmlich lizenzierte Programme \nwerden nur im Object Code vertrieben, der Nutzer \ndarf das Programm weder ver\u00e4ndern noch \nweitergeben. Das Lizenzmodell der Freien Software \n(synonym \"Open Source Software\") gew\u00e4hrt Ihnen \ndagegen umfassende Freiheiten im Umgang mit dem \nProgramm. Die Deutsche Freie Software Lizenz \nfolgt diesem Lizenzmodell. Sie gew\u00e4hrt Ihnen das \nRecht, das Programm in umfassender Weise zu \nnutzen. Es ist Ihnen gestattet, das Programm nach \nIhren Vorstellungen zu ver\u00e4ndern, in ver\u00e4nderter \noder unver\u00e4nderter Form zu vervielf\u00e4ltigen, zu \nverbreiten und \u00f6ffentlich zug\u00e4nglich zu machen. \nDiese Rechte werden unentgeltlich einger\u00e4umt. \n\nDie Deutsche Freie Software Lizenz verbindet die \nRechtseinr\u00e4umung allerdings mit Pflichten, die \ndem Zweck dienen, das freie Zirkulieren des \nProgramms und aller ver\u00f6ffentlichten \nFortentwicklungen zu sichern. Wenn Sie das \nProgramm verbreiten oder \u00f6ffentlich zug\u00e4nglich \nmachen, dann m\u00fcssen Sie jedem, der das Programm \nvon Ihnen erh\u00e4lt, eine Kopie dieser Lizenz \nmitliefern und den Zugriff auf den Source Code \nerm\u00f6glichen. Eine weitere Pflicht betrifft \nFortentwicklungen des Programms. \u00c4nderungen am \nProgramm, die Sie \u00f6ffentlich verbreiten oder \nzug\u00e4nglich machen, m\u00fcssen nach den Bestimmungen \ndieser Lizenz frei gegeben werden. \n\nDie Deutsche Freie Software Lizenz nimmt auf die \nbesonderen Anforderungen des deutschen und \neurop\u00e4ischen Rechts R\u00fccksicht. Sie ist \nzweisprachig gestaltet und damit auch auf den \ninternationalen Vertrieb ausgerichtet. \n\n\n\u00a7 0 Definitionen\n\nDokumentation: Die Beschreibung des Aufbaus \nund/oder der Struktur der Programmierung und/oder \nder Funktionalit\u00e4ten des Programms, unabh\u00e4ngig \ndavon, ob sie im Source Code oder gesondert \nvorgenommen wird.\n\nLizenz: Die zwischen dem Lizenzgeber und Ihnen \ngeschlossene Vereinbarung mit dem Inhalt der \n\"Deutschen Freien Software Lizenz\" bzw. das \nAngebot hierzu. \n\nLizenznehmer: Jede nat\u00fcrliche oder juristische \nPerson, die die Lizenz angenommen hat.\n\nProgramm: Jedes Computerprogramm, das von den \nRechtsinhabern nach den Bestimmungen dieser \nLizenz verbreitet oder \u00f6ffentlich zug\u00e4nglich \ngemacht worden ist.\n\nObject Code: Die maschinenlesbare, \u00fcbersetzte \nForm des Programms.\n\n\u00d6ffentlich: Nicht nur an einen bestimmten \nPersonenkreis gerichtet, der pers\u00f6nlich oder \ndurch die Zugeh\u00f6rigkeit zu einer juristischen \nPerson oder einem \u00f6ffentlichen Tr\u00e4ger miteinander \nverbunden ist.\n\n\u00d6ffentlich zug\u00e4nglich machen: Die \u00f6ffentliche \nWeitergabe des Programms in unk\u00f6rperlicher Form, \ninsbesondere das Bereithalten zum Download in \nDatennetzen. \n\nRechtsinhaber: Der bzw. die Urheber oder \nsonstigen Inhaber der ausschlie\u00dflichen \nNutzungsrechte an dem Programm.\n\nSource Code: Die f\u00fcr Menschen lesbare, in \nProgrammiersprache dargestellte Form des \nProgramms.\n\nVer\u00e4ndern: Jede Erweiterung, K\u00fcrzung und \nBearbeitung des Programms, insbesondere \nWeiterentwicklungen.\n\nVerbreiten: Die \u00f6ffentliche Weitergabe \nk\u00f6rperlicher Vervielf\u00e4ltigungsst\u00fccke, \ninsbesondere auf Datentr\u00e4gern oder in Verbindung \nmit Hardware. \n\nVollst\u00e4ndiger Source Code: Der Source Code in der \nf\u00fcr die Erstellung bzw. die Bearbeitung benutzten \nForm zusammen mit den zur \u00dcbersetzung und \nInstallation erforderlichen Konfigurationsdateien \nund Software-Werkzeugen, sofern diese in der \nben\u00f6tigten Form nicht allgemein gebr\u00e4uchlich \n(z.B. Standard-Kompiler) oder f\u00fcr jedermann \nlizenzgeb\u00fchrenfrei im Internet abrufbar sind.\n\n\n\u00a7 1 Rechte\n\n(1) Sie d\u00fcrfen das Programm in unver\u00e4nderter Form \nvervielf\u00e4ltigen, verbreiten und \u00f6ffentlich \nzug\u00e4nglich machen. \n\n(2) Sie d\u00fcrfen das Programm ver\u00e4ndern und \nentsprechend ver\u00e4nderte Versionen \nvervielf\u00e4ltigen, verbreiten und \u00f6ffentlich \nzug\u00e4nglich machen. Gestattet ist auch die \nKombination des Programms oder Teilen hiervon mit \nanderen Programmen. \n\n(3) Sie erhalten die Rechte unentgeltlich.\n\n\n\u00a7 2 Pflichten beim Vertrieb\n\n(1) Wenn Sie das Programm verbreiten oder \n\u00f6ffentlich zug\u00e4nglich machen, sei es in \nunver\u00e4nderter oder ver\u00e4nderter Form, sei es in \neiner Kombination mit anderen Programmen oder in \nVerbindung mit Hardware, dann m\u00fcssen sie \nmitliefern:\n\n1. alle Vermerke im Source Code und/oder Object \nCode, die auf diese Lizenz hinweisen;\n \n2. alle Vermerke im Source Code und/oder Object \nCode, die \u00fcber die Urheber des Programms Auskunft \ngeben;\n\n3. einen f\u00fcr den Empf\u00e4nger deutlich wahrnehmbaren \nHinweis auf diese Lizenz und die Internetadresse \n; \n\n4. den vollst\u00e4ndigen Text dieser Lizenz in \ndeutlich wahrnehmbarer Weise.\n\n(2) Wenn bei der Installation des Programms \nund/oder beim Programmstart Lizenz- und/oder \nVertragsbedingungen angezeigt werden, dann m\u00fcssen\n\n1. diese Lizenz,\n\n2. ein Hinweis auf diese Lizenz und\n\n3. ein Hinweis auf den oder die Rechtsinhaber an \nden ersten unter dieser Lizenz nutzbaren \nProgrammbestandteilen \n\nebenfalls angezeigt werden. \n\n(3) Sie d\u00fcrfen die Nutzung des Programms nicht \nvon Pflichten oder Bedingungen abh\u00e4ngig machen, \ndie nicht in dieser Lizenz vorgesehen sind. \n\n(4) Sofern Sie mit dem Programm eine \nDokumentation erhalten haben, muss diese \nDokumentation entsprechend mitgeliefert werden, \nes sei denn, die freie Mitlieferung der \nDokumentation ist Ihnen aufgrund der Lizenz f\u00fcr \ndie Dokumentation nicht gestattet.\n\n\n\u00a7 3 Weitere Pflichten beim Vertrieb ver\u00e4nderter \nVersionen \n\n(1) Ver\u00e4nderte Versionen des Programms d\u00fcrfen Sie \nnur unter den Bedingungen dieser Lizenz \nverbreiten oder \u00f6ffentlich zug\u00e4nglich machen, so \ndass Dritte das ver\u00e4nderte Programm insgesamt \nunter dieser Lizenz nutzen k\u00f6nnen. \n\n(2) Wird das Programm oder ein Teil hiervon mit \neinem anderen Programm kombiniert, gilt auch die \nKombination insgesamt als eine ver\u00e4nderte Version \ndes Programms, es sei denn, das andere Programm \nist formal und inhaltlich eigenst\u00e4ndig. Ein \nanderes Programm ist dann als eigenst\u00e4ndig \nanzusehen, wenn es die folgenden Voraussetzungen \nalle erf\u00fcllt:\n\n1. Der Source Code der kombinierten Programme \nmuss jeweils in eigenen Dateien vorhanden sein, \ndie keine Bestandteile des anderen Teils \nenthalten, die \u00fcber die zur Programmkombination \n\u00fcblichen und erforderlichen Informationen \u00fcber \nden anderen Teil hinausgehen, wobei der Source \nCode des anderen Programms nicht mitgeliefert \nwerden muss.\n\n2. Der mit dem Programm kombinierte Teil muss \nauch dann sinnvoll nutzbar sein, wenn er nicht \nmit dem Programm kombiniert wird, und zwar \nentweder alleine oder mit sonstigen Programmen. \nWas als \"sinnvoll nutzbar\" anzusehen ist, richtet \nsich nach der Auffassung der betroffenen \nFachkreise. Zu den betroffenen Fachkreisen \ngeh\u00f6ren alle Personen, die das Programm oder \nProgramme mit vergleichbarer Funktionalit\u00e4t \nentwickeln, benutzen, verbreiten oder \u00f6ffentlich \nzug\u00e4nglich machen.\n\n(3) Wenn Sie das Programm oder einen Teil hiervon \n- ver\u00e4ndert oder unver\u00e4ndert - zusammen mit einem \nanderen Programm verbreiten oder \u00f6ffentlich \nzug\u00e4nglich machen, das unter der GNU General \nPublic License (GPL) lizenziert wird, darf das \nProgramm auch unter den Bedingungen der GPL \ngenutzt werden, sofern es mit dem anderen \nProgramm ein \"derivative work\" im Sinne der GPL \nbildet. Dabei sollen die Hinweise auf diese \nLizenz entfernt und durch einen Hinweis auf die \nGPL ersetzt werden. Ob bei der Zusammenstellung \nein \"derivate work\" im Sinne der GPL entsteht, \nbeurteilt sich nach Ziffer 2 b) der GPL. Diese \nBestimmung lautet: \"You must cause any work that \nyou distribute or publish, that in whole or in \npart contains or is derived from the Program or \nany part thereof, to be licensed as a whole at no \ncharge to all third parties under the terms of \nthis License.\" Die GPL kann abgerufen werden \nunter .\n\n(4) Wenn Sie das Programm in einer ver\u00e4nderten \nForm verbreiten oder \u00f6ffentlich zug\u00e4nglich \nmachen, m\u00fcssen Sie im Source Code einen Hinweis \nmit den \u00c4nderungen aufnehmen und mit dem Datum \nder \u00c4nderung versehen. Der Hinweis muss erkennen \nlassen, welche \u00c4nderungen vorgenommen wurden und \nbestehende Vermerke, die \u00fcber die Urheber des \nProgramms Auskunft geben, \u00fcbernehmen. Dies gilt \nunabh\u00e4ngig davon, ob Sie einen eigenen \nUrhebervermerk hinzuf\u00fcgen. Anstelle eines \nHinweises im Source Code k\u00f6nnen Sie auch ein \nVersionskontrollsystem verwenden oder \nweiterf\u00fchren, sofern dieses mitverbreitet wird \noder \u00f6ffentlich zug\u00e4nglich ist.\n\n(5) Sie d\u00fcrfen von Dritten f\u00fcr die Einr\u00e4umung \neines einfachen Nutzungsrechts an ver\u00e4nderten \nVersionen des Programms kein Entgelt verlangen.\n\n(6) Wenn Sie an der ver\u00e4nderten Version des \nProgramms ein anderes Schutzrecht als ein \nUrheberrecht erwerben, insbesondere ein Patent \noder Gebrauchsmuster, lizenzieren Sie dieses \nSchutzrecht f\u00fcr ver\u00e4nderte und unver\u00e4nderte \nVersionen des Programms in dem Umfang, der \nerforderlich ist, um die Rechte aus dieser Lizenz \nwahrnehmen zu k\u00f6nnen. \n\n\n\u00a7 4 Weitere Pflichten beim Vertrieb im Object \nCode\n\n(1) Wenn Sie das Programm nur im Object Code \nverbreiten, dann m\u00fcssen Sie zus\u00e4tzlich zu den in \n\u00a7 2 und \u00a7 3 geregelten Pflichten entweder \n\n1. den vollst\u00e4ndigen Source Code im Internet \n\u00f6ffentlich zug\u00e4nglich machen und bei der \nVerbreitung des Object Codes deutlich auf die \nvollst\u00e4ndige Internetadresse hinweisen, unter der \nder Source Code abgerufen werden kann oder \n\n2. den vollst\u00e4ndigen Source Code auf einem \nhierf\u00fcr \u00fcblichen Datentr\u00e4ger unter Beachtung der \n\u00a7\u00a7 2 und 3 mitverbreiten.\n\n(2) Wenn Sie das Programm im Object Code \n\u00f6ffentlich zug\u00e4nglich machen, dann m\u00fcssen Sie \nzus\u00e4tzlich zu den in \u00a7 2 und \u00a7 3 geregelten \nPflichten den vollst\u00e4ndigen Source Code im \nInternet \u00f6ffentlich zug\u00e4nglich machen und dabei \ndeutlich auf die vollst\u00e4ndige Internetadresse \nhinweisen.\n\n(3) Sofern Sie mit dem Programm eine \nDokumentation erhalten haben, muss diese \nDokumentation entsprechend der Abs\u00e4tze 1 und 2 \nmitgeliefert werden, es sei denn, die freie \nMitlieferung der Dokumentation ist Ihnen aufgrund \nder Lizenz f\u00fcr die Dokumentation nicht gestattet.\n\n\n\u00a7 5 Vertragsschluss\n\n(1) Mit dieser Lizenz wird Ihnen und jeder \nanderen Person ein Angebot auf Abschluss eines \nVertrages \u00fcber die Nutzung des Programms unter \nden Bedingungen der Deutschen Freien \nSoftwarelizenz unterbreitet.\n\n(2) Sie d\u00fcrfen das Programm nach den jeweils \nanwendbaren gesetzlichen Vorschriften \nbestimmungsgem\u00e4\u00df benutzen, ohne dass es der \nAnnahme dieser Lizenz bedarf. Dieses Recht \numfasst in der Europ\u00e4ischen Union und in den \nmeisten anderen Rechtsordnungen insbesondere die \nfolgenden Befugnisse: \n\n1. das Programm ablaufen zu lassen sowie die \nErstellung von hierf\u00fcr erforderlichen \nVervielf\u00e4ltigungen im Haupt- und Arbeitsspeicher; \n\n2. das Erstellen einer Sicherungskopie; \n\n3. die Fehlerberichtigung; \n\n4. die Weitergabe einer rechtm\u00e4\u00dfig erworbenen \nk\u00f6rperlichen Kopie des Programms.\n \n(3) Sie erkl\u00e4ren Ihre Zustimmung zum Abschluss \ndieser Lizenz, indem Sie das Programm verbreiten, \n\u00f6ffentlich zug\u00e4nglich machen, ver\u00e4ndern oder in \neiner Weise vervielf\u00e4ltigen, die \u00fcber die \nbestimmungsgem\u00e4\u00dfe Nutzung im Sinne von Absatz 2 \nhinausgeht. Ab diesem Zeitpunkt ist diese Lizenz \nals rechtlich verbindlicher Vertrag zwischen den \nRechtsinhabern und Ihnen geschlossen, ohne dass \nes eines Zugangs der Annahmeerkl\u00e4rung bei den \nRechtsinhabern bedarf.\n\n(4) Sie und jeder andere Lizenznehmer erhalten \ndie Rechte aus dieser Lizenz direkt von den \nRechtsinhabern. Eine Unterlizenzierung oder \n\u00dcbertragung der Rechte ist nicht gestattet.\n \n\n\u00a7 6 Beendigung der Rechte bei Zuwiderhandlung\n\n(1) Jede Verletzung Ihrer Verpflichtungen aus \ndieser Lizenz f\u00fchrt zu einer automatischen \nBeendigung Ihrer Rechte aus dieser Lizenz. \n\n(2) Die Rechte Dritter, die das Programm oder \nRechte an dem Programm von Ihnen erhalten haben, \nbleiben hiervon unber\u00fchrt.\n\n\n\u00a7 7 Haftung und Gew\u00e4hrleistung\n\n(1) F\u00fcr entgegenstehende Rechte Dritter haften \ndie Rechtsinhaber nur, sofern sie Kenntnis von \ndiesen Rechten hatten, ohne Sie zu informieren.\n\n(2) Die Haftung f\u00fcr Fehler und sonstige M\u00e4ngel \ndes Programms richtet sich nach den au\u00dferhalb \ndieser Lizenz getroffenen Vereinbarungen zwischen \nIhnen und den Rechtsinhabern oder, wenn eine \nsolche Vereinbarung nicht existiert, nach den \ngesetzlichen Regelungen. \n\n\n\u00a7 8 Vertr\u00e4ge mit Dritten\n\n(1) Diese Lizenz regelt nur die Beziehung \nzwischen Ihnen und den Rechtsinhabern. Sie ist \nnicht Bestandteil der Vertr\u00e4ge zwischen Ihnen und \nDritten. \n\n(2) Die Lizenz beschr\u00e4nkt Sie nicht in der \nFreiheit, mit Dritten, die von Ihnen Kopien des \nProgramms erhalten oder Leistungen in Anspruch \nnehmen, die im Zusammenhang mit dem Programm \nstehen, Vertr\u00e4ge beliebigen Inhalts zu schlie\u00dfen, \nsofern Sie dabei Ihren Verpflichtungen aus dieser \nLizenz nachkommen und die Rechte der Dritten aus \ndieser Lizenz nicht beeintr\u00e4chtigt werden. \nInsbesondere d\u00fcrfen Sie f\u00fcr die \u00dcberlassung des \nProgramms oder sonstige Leistungen ein Entgelt \nverlangen. \n\n(3) Diese Lizenz verpflichtet Sie nicht, das \nProgramm an Dritte weiterzugeben. Es steht Ihnen \nfrei zu entscheiden, wem Sie das Programm \nzug\u00e4nglich machen. Sie d\u00fcrfen aber die weitere \nNutzung durch Dritte nicht durch den Einsatz \ntechnischer Schutzma\u00dfnahmen, insbesondere durch \nden Einsatz von Kopierschutzvorrichtungen \njeglicher Art, verhindern oder erschweren. Eine \npasswortgesch\u00fctzte Zugangsbeschr\u00e4nkung oder die \nNutzung in einem Intranet wird nicht als \ntechnische Schutzma\u00dfnahme angesehen.\n\n\n\u00a7 9 Text der Lizenz\n\n(1) Diese Lizenz ist in deutscher und englischer \nSprache abgefasst. Beide Fassungen sind gleich \nverbindlich. Es wird unterstellt, dass die in der \nLizenz verwandten Begriffe in beiden Fassungen \ndieselbe Bedeutung haben. Ergeben sich dennoch \nUnterschiede, so ist die Bedeutung ma\u00dfgeblich, \nwelche die Fassungen unter Ber\u00fccksichtigung des \nZiels und Zwecks der Lizenz am besten miteinander \nin Einklang bringt. \n\n(2) Der Lizenzrat der Deutschen Freien Software \nLizenz kann mit verbindlicher Wirkung neue \nVersionen der Lizenz in Kraft setzen, soweit \ndies erforderlich und zumutbar ist. Neue \nVersionen der Lizenz werden auf der Internetseite \n mit einer eindeutigen \nVersionsnummer ver\u00f6ffentlicht. Die neue Version \nder Lizenz erlangt f\u00fcr Sie verbindliche Wirkung, \nwenn Sie von deren Ver\u00f6ffentlichung Kenntnis \ngenommen haben. Gesetzliche Rechtsbehelfe gegen \ndie \u00c4nderung der Lizenz werden durch die \nvorstehenden Bestimmungen nicht beschr\u00e4nkt. \n\n(3) Sie d\u00fcrfen diese Lizenz in unver\u00e4nderter Form \nvervielf\u00e4ltigen, verbreiten und \u00f6ffentlich \nzug\u00e4nglich machen.\n\n\n\u00a7 10 Anwendbares Recht\n\nAuf diese Lizenz findet deutsches Recht \nAnwendung.\n\n\nAnhang: Wie unterstellen Sie ein Programm der \nDeutschen Freien Software Lizenz?\n\nUm jedermann den Abschluss dieser Lizenz zu \nerm\u00f6glichen, wird empfohlen, das Programm mit \nfolgendem Hinweis auf die Lizenz zu versehen:\n\n\"Copyright (C) 20[jj] [Name des Rechtsinhabers]. \n\nDieses Programm kann durch jedermann gem\u00e4\u00df den \nBestimmungen der Deutschen Freien Software Lizenz \ngenutzt werden. \n\nDie Lizenz kann unter \nabgerufen werden.\"", + "json": "d-fsl-1.0-de.json", + "yaml": "d-fsl-1.0-de.yml", + "html": "d-fsl-1.0-de.html", + "license": "d-fsl-1.0-de.LICENSE" + }, + { + "license_key": "d-fsl-1.0-en", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-d-fsl-1.0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "German Free Software License\n\n(c) Ministry of Science and Research, State of \nNorth-Rhine Westphalia 2004\n\nDeveloped and created by Axel Metzger and Till \nJaeger, Institut f\u00fcr Rechtsfragen der Freien und \nOpen Source Software (Institute for Legal Issues \nOn Free and Open Source Software), \n.\n\nPreamble\n\nSoftware is more than a mere economic asset. It \nis the technical foundation of the information \nsociety. Therefore, the issue of the public share \nin software is of particular importance. \nConventionally licensed computer programs are \ndistributed in object code form only, and the \nuser is not entitled to modify or pass on the \nprogram to third parties. The license model for \nFree Software (synonym \"Open Source Software\"), \nhowever, grants comprehensive rights in the \nhandling of the program. The German Free Software \nLicense is based on this license model. It gives \nyou the right to use the program in a \ncomprehensive manner. You are allowed to modify \nthe computer program according to your \nrequirements or to reproduce or distribute it and \nmake it publicly available in a modified or \nunmodified form. These rights are granted free of \ncharge. \n\nHowever, the German Free Software License \ncombines these rights with certain obligations \nthat will ensure the free circulation of the \nprogram and all further developments published. \nIf you distribute the program or make it publicly \navailable, you have to include a copy of this \nlicense to anyone receiving the program from you \nand enable access to its source code. Another \nobligation arises from further developments of \nthe program. Modifications to the program which \nyou distribute or make publicly available shall \nbe released in accordance with the conditions of \nthis license. \n\nGerman Free Software License takes into account \nthe special requirements of German and European \nlaw. It is drafted bilingually and thus intended \nfor international distribution. \n\n\nSection 0 Definitions\n\nDocumentation: Description of composition, \narchitecture and/or structure of the programming \nprocess and/or functionalities of the program, \nirrespective of whether they were done in the \nSource Code or separately.\n\nLicense: The agreement concluded between the \nlicensor and you, with the content of the German \nFree Software License and/or the pertaining \noffer. \n\nLicensee: Every natural or legal entity who has \naccepted this License.\n\nProgram: Every computer program which has been \ndistributed or made publicly available by the \nentitled person in accordance with the terms of \nthis License.\n\nObject Code: The machine-readable form of the \nProgram.\n\nPublic/publicly: Not solely directed towards a \ncertain group of people who have a personal \nconnection to each other or are associated \nthrough their affiliation with a legal person or \npublic organisation.\n\nMaking Publicly Available: The public \ndistribution of the Program in an immaterial \nform, in particular, by making it available for \ndownload in data networks. \n\nEntitled Person(s): The author(s) or other \nholders of the exclusive right to use for the \nProgram.\n\nSource Code: The form of the Program represented \nin programming language and readable for humans.\n\nModification: Any extension, shortening and/or \nalteration of the Program, including, but not \nlimited to further developments.\n\nDistribution: The public passing on of material \ncopies to third parties, in particular, onto \nstorage devices or in connection with hardware. \n\nComplete Source Code: The Source Code in the form \nused for preparation and/or modification together \nwith the configuration files and software tools \nrequired for compilation and installation, \nprovided that these are not commonly used in the \nrequired form (e.g. standard compiler) or can be \ndownloaded by any Internet user without license \nfee.\n\n\nSection 1 Rights\n\n(1) You may reproduce and distribute the Program \nand make it publicly available in an unmodified \nform. \n\n(2) You may modify the Program and reproduce and \ndistribute modified versions and make them \npublicly available. It is also permitted to \ncombine the Program or parts thereof with other \nprograms. \n\n(3) You obtain the rights free of charge.\n\n\nSection 2 Obligations for Distribution and Making \nPublicly Available\n\n(1) If you distribute the Program or make it \npublicly available, be it in unmodified or \nmodified form, be it in combination with other \nprograms or in connection with hardware, you also \nhave to provide or include the following:\n\n1. all references to this License in the Source \nCode and/or Object Code;\n \n2. all references in the Source Code and/or \nObject Code containing information about the \nauthor of the Program;\n\n3. a conspicuous reference to this License and \nthe Internet address , to \nbe displayed in a form that can easily be read by \nthe recipient;\n\n4. the complete text of this License in a form \neasy to perceive.\n\n(2) If license and/or contract terms are \ndisplayed when the Program is installed and/or \nstarted, the following items must also be \ndisplayed:\n\n1. this License;\n\n2. a reference to this License; and\n\n3. a reference to the Entitled Person(s) to the \ninitial program components used under this \nLicense.\n\n(3) You may not make the use of the Program \ncontingent upon the compliance with conditions or \nobligations that are not set forth in this \nLicense. \n\n(4) Provided that you have received Documentation \nfor the Program, you have to deliver this \nDocumentation with the Program, as well, unless \nfree delivery of the Documentation is not \npermitted by the documentation license.\n\n\nSection 3 Further Obligations regarding the \nDistribution of Modified Versions \n\n(1) You may only distribute modified versions of \nthe Program or make them publicly available in \naccordance with the terms of this License, so \nthat any third party is able to make use of the \nmodified Program as a whole under this License. \n\n(2) If the Program or a part thereof is combined \nwith another program, this also applies to the \nentire combination as a modified version of the \nProgram, unless the other program is independent \nin terms of form and content. Another program \nshall be regarded as independent if it fulfils \nthe following requirements:\n\n1. The Source Code of the combined programs must \nbe contained in separate files which do not \ninclude components of the other part except for \nparts containing the information customary and \nrequired for the Program combination. The Source \nCode of the other program does not have to be \ndelivered.\n\n2. The part which is combined with the Program \nmust also be reasonably usable when not combined \nwith the Program, i.e. on a standalone basis or \nwith other programs. The meaning of \"reasonably \nusable\" will be based on the opinion of pertinent \ncircles of expert groups in the relevant field. \nSuch circles of experts include everyone who \ndevelops, uses, distributes or makes publicly \navailable the Program concerned or programs with \nsimilar functionality.\n\n(3) If you distribute or make publicly available \nthe Program or parts thereof - modified or \nunmodified - in combination with another program \nlicensed under the GNU General Public License \n(GPL), the Program may also be used under \nconditions of the GPL, provided it constitutes a \n\"derivative work\" together with the other program \nin the sense of the GPL. In this case, any \nreference to this License should be removed and \nreplaced by a reference to the GPL. Whether a \n\"derivative work\" in the sense of the GPL arises \nfrom this combination is primarily defined in \nsection 2 b) of the GPL. This provision reads: \n\"You must cause any work that you distribute or \npublish, that in whole or in part contains or is \nderived from the Program or any part thereof, to \nbe licensed as a whole at no charge to all third \nparties under the terms of this License.\" The GPL \ncan be obtained under \n.\n\n(4) If you distribute the Program or make it \npublicly available in a modified form, you must \ninclude a reference to the modifications and the \ndate of the modification in the Source Code. This \nreference must reveal which modifications were \ncarried out and include existing references \ncontaining information on the author of the \nProgram. This applies to whether or not you add \nyour own copyright notice. Instead of a reference \nin the Source Code you may also use or carry on a \nversion control system, provided this is also \ndistributed or made publicly available. \n\n(5) You may not charge any third party for the \ngranting of the non-exclusive rights of use for \nthe Program.\n\n(6) If you acquire any other intellectual or \nindustrial property right to this Program apart \nfrom a copyright, in particular a patent or \nutility model, you license this intellectual or \nindustrial property right for modified or \nunmodified versions of the Program to the extent \nthat is necessary to make due use of the rights \narising from this License. \n\n\nSection 4 Further Obligations for the \nDistribution of the Object Code\n\n(1) If you distribute the Program in Object Code \nform only, apart from the obligations defined in \nSections 2 and 3, you have to either:\n\n1. make the Complete Source Code publicly \navailable in the Internet and - when distributing \nthe Object Code - make a clear reference to the \ncomplete Internet address from which the Source \nCode can be downloaded; or\n\n2. distribute the Complete Source Code on a \ncustomary data carrier, taking into consideration \nSections 2 and 3.\n\n(2) If you make the Program publicly available in \nObject Code form, apart from the obligations \ndefined in Sections 2 and 3 you must also make \nthe Complete Source Code publicly available in \nthe Internet and make a clear reference to the \ncomplete Internet address.\n\n(3) Provided that you have received the \nDocumentation for the Program, you have to \ndeliver this Documentation together with the \nProgram in accordance with Subsections 1 and 2, \nas well, unless free delivery of the \nDocumentation is not permitted by the \ndocumentation license.\n\n\nSection 5 Conclusion of the Contract\n\n(1) With this License you and any other person \nare offered the conclusion of a contract for the \nuse of this Program under the conditions of this \nLicense.\n\n(2) You may use the Program in accordance with \nthe applicable statutory provisions for the \nintended purpose without having to accept this \nLicense. In the European Union and in most other \nlegal systems, this right in particular includes \nthe following authorizations: \n\n1. Running of the Program as well as reproducing \non hard-drive and RAM required for this;\n\n2. Making of a back-up copy;\n\n3. Correcting errors;\n\n4. Distributing a lawfully acquired physical copy \nof the Program.\n \n(3) You declare your acceptance of this License \nby distributing the Program, making it publicly \navailable, modifying or reproducing it in a way \nthat goes beyond the intended use in the sense of \nSubsection 2. From this time on, this License \nshall be deemed as a legally binding agreement \nbetween the Entitled Persons and you, without the \nneed for the Entitled Persons to obtain a \ndeclaration of acceptance.\n\n(4) You and any other licensee acquire the rights \narising from this License directly from the \nEntitled Persons. Any sub-licensing or transfer \nof rights is not permitted.\n \n\nSection 6 Termination of Rights in the Event of \nViolations\n\n(1) Any violation of your obligations under this \nLicense automatically leads to the termination of \nyour rights under this License. \n\n(2) Any rights of third parties having obtained \nthe Program or rights to the Program from you \nshall remain unaffected. \n\n\nSection 7 Liability and Warranty\n\n(1) The Entitled Persons are only liable for \nconflicting third-party rights if they were aware \nof such rights without informing you.\n\n(2) Liability for errors and/or other defects in \nthe Program shall be governed by agreements \nconcluded between you and the Entitled Person \nbeyond the scope of this License or, if no such \nagreement exists, by the pertinent statutory \nprovisions. \n\n\nSection 8 Agreements with Third Parties\n\n(1) This License only governs the relationship \nbetween you and the Entitled Persons. It is not \npart of agreements between you and third parties. \n\n(2) This License does not limit your freedom to \nconclude agreements of any content whatsoever \nwith third parties obtaining copies of the \nProgram from you or purchasing services from you \nin connection with the Program, provided that you \nfulfil your obligations under this License and \nthird-party rights under this License are not \ninfringed. In particular, you may charge a fee as \nconsideration for the transfer of the Program or \nother services. \n\n(3) This License does not commit you to forward \nthe Program to a third party. You are free to \ndecide to whom you wish to make the Program \navailable. However, you may not prevent or \ncomplicate further use by third parties through \nthe use of technical protective measures, in \nparticular, the use of copy protection of any \nkind. Password-protected access restriction or \nuse in an Intranet shall not be regarded as \ntechnical protective measures.\n\n\nSection 9 Text of the License\n\n(1) This License is written in German and \nEnglish. Both versions are equally binding. It is \nassumed that terminology used in the License has \nthe same meaning in both versions. Should, \nhowever, differences arise, such meaning is \nauthoritative which best brings into line both \nversions, taking into consideration the aim and \npurpose of the License. \n\n(2) The license board of the German Free Software \nLicense may put into force binding new versions \nof this License inasmuch as this is required and \nreasonable. New versions of the License will be \npublished on the Internet site with a unique version number. The new \nversion of the License becomes binding for you as \nsoon as you become aware of its publication. \nLegal remedies against the modification of the \nLicense are not restricted by the regulations \ndescribed above. \n\n(3) You may reproduce and distribute this License \nand make it publicly available in an unmodified \nform. \n\n\nSection 10 Applicable Law\n\nThe License is governed by German law.\n\n\nAppendix: How to submit a Program to the German \nFree Software License.\n\nIn order to make it possible for anyone to \nconclude this License, it is recommended to \ninclude the following reference to the License in \nthe Program:\n\n\"Copyright (C) 20[yy] [Name of the Entitled \nPerson]. \n\nThis Program may be used by anyone in accordance \nwith the terms of the German Free Software \nLicense\n\nThe License may be obtained under .\"", + "json": "d-fsl-1.0-en.json", + "yaml": "d-fsl-1.0-en.yml", + "html": "d-fsl-1.0-en.html", + "license": "d-fsl-1.0-en.LICENSE" + }, + { + "license_key": "d-zlib", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-d-zlib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software is provided 'as-is', without any express or implied\nwarranty. In no event will the authors be held liable for any damages\narising from the use of this software.\n\nPermission is granted to anyone to use this software for any purpose,\nincluding commercial applications, and to alter it and redistribute it\nfreely, in both source and binary form, subject to the following\nrestrictions:\n\no The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\no Altered source versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\no This notice may not be removed or altered from any source\n distribution.", + "json": "d-zlib.json", + "yaml": "d-zlib.yml", + "html": "d-zlib.html", + "license": "d-zlib.LICENSE" + }, + { + "license_key": "damail", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-damail", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Don't Ask Me About It License\nFull License Text\n\nCopying and distribution of this file, with or without modification, are\npermitted in any medium provided you do not contact the author about the file or\nany problems you are having with the file.\n\nHow To Apply This To Your Stuff\n\nAdd a copyright notice to whatever you want to license and then copy the license\ntext verbatim.\n\nLicense\nLicensed under itself. Don't bother emailing me about it.\nYou can follow me on Twitter though!", + "json": "damail.json", + "yaml": "damail.yml", + "html": "damail.html", + "license": "damail.LICENSE" + }, + { + "license_key": "dante-treglia", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dante-treglia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is provided as is without express or implied warranties. You may freely\ncopy and compile this source into applications you distribute provided that the\ncopyright text below is included in the resulting source code, for example:\n\n\"Portions copyright (c) Dante Treglia II, 2000\"", + "json": "dante-treglia.json", + "yaml": "dante-treglia.yml", + "html": "dante-treglia.html", + "license": "dante-treglia.LICENSE" + }, + { + "license_key": "datamekanix-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-datamekanix-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This code is free for personal and commercial use, providing the copyright\nnotice remains intact in the source files and all eventual changes are clearly\nmarked with comments.\n\nNo warrantee of any kind, express or implied, is included with this software;\nuse at your own risk, responsibility for damages (if any) to anyone resulting\nfrom the use of this software rests entirely with the user.", + "json": "datamekanix-license.json", + "yaml": "datamekanix-license.yml", + "html": "datamekanix-license.html", + "license": "datamekanix-license.LICENSE" + }, + { + "license_key": "day-spec", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-day-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "[Day Specification License]\n\nDay Management AG (\"Licensor\") is willing to license this specification\nto you ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED\nIN THIS LICENSE AGREEMENT (\"Agreement\"). Please read the terms and\nconditions of this Agreement carefully.\n\nContent Repository for JavaTM Technology API Specification (\"Specification\")\nVersion: 1.0\nStatus: FCS\nRelease: 11 May 2005\n\nCopyright 2005 Day Management AG\nBarf\u00fcsserplatz 6, 4001 Basel, Switzerland.\nAll rights reserved.\n\nNOTICE; LIMITED LICENSE GRANTS\n\n1. License for Purposes of Evaluation and Developing Applications.\nLicensor hereby grants you a fully-paid, non-exclusive, non-transferable,\nworldwide, limited license (without the right to sublicense), under\nLicensor's applicable intellectual property rights to view, download,\nuse and reproduce the Specification only for the purpose of internal\nevaluation. This includes developing applications intended to run on an\nimplementation of the Specification provided that such applications do\nnot themselves implement any portion(s) of the Specification.\n\n2. License for the Distribution of Compliant Implementations. Licensor\nalso grants you a perpetual, non-exclusive, non-transferable, worldwide,\nfully paid-up, royalty free, limited license (without the right to\nsublicense) under any applicable copyrights or, subject to the provisions\nof subsection 4 below, patent rights it may have covering the\nSpecification to create and/or distribute an Independent Implementation\nof the Specification that: (a) fully implements the Specification\nincluding all its required interfaces and functionality; (b) does not\nmodify, subset, superset or otherwise extend the Licensor Name Space, or\ninclude any public or protected packages, classes, Java interfaces, fields\nor methods within the Licensor Name Space other than those\nrequired/authorized by the Specification or Specifications being\nimplemented; and (c) passes the Technology Compatibility Kit (including\nsatisfying the requirements of the applicable TCK Users Guide) for such\nSpecification (\"Compliant Implementation\"). In addition, the foregoing\nlicense is expressly conditioned on your not acting outside its scope.\nNo license is granted hereunder for any other purpose (including, for\nexample, modifying the Specification, other than to the extent of your\nfair use rights, or distributing the Specification to third parties).\n\n3. Pass-through Conditions. You need not include limitations (a)-(c) from\nthe previous paragraph or any other particular \"pass through\" requirements\nin any license You grant concerning the use of your Independent\nImplementation or products derived from it. However, except with respect\nto Independent Implementations (and products derived from them) that\nsatisfy limitations (a)-(c) from the previous paragraph, You may neither:\n(a) grant or otherwise pass through to your licensees any licenses under\nLicensor's applicable intellectual property rights; nor (b) authorize your\nlicensees to make any claims concerning their implementation's compliance\nwith the Specification.\n\n4. Reciprocity Concerning Patent Licenses. With respect to any patent\nclaims covered by the license granted under subparagraph 2 above that\nwould be infringed by all technically feasible implementations of the\nSpecification, such license is conditioned upon your offering on fair,\nreasonable and non-discriminatory terms, to any party seeking it from\nYou, a perpetual, non-exclusive, non-transferable, worldwide license\nunder Your patent rights that are or would be infringed by all technically\nfeasible implementations of the Specification to develop, distribute and\nuse a Compliant Implementation.\n\n5. Definitions. For the purposes of this Agreement: \"Independent\nImplementation\" shall mean an implementation of the Specification that\nneither derives from any of Licensor's source code or binary code\nmaterials nor, except with an appropriate and separate license from\nLicensor, includes any of Licensor's source code or binary code materials;\n\"Licensor Name Space\" shall mean the public class or interface\ndeclarations whose names begin with \"java\", \"javax\", \"javax.jcr\" or their\nequivalents in any subsequent naming convention adopted by Licensor\nthrough the Java Community Process, or any recognized successors or\nreplacements thereof; and \"Technology Compatibility Kit\" or \"TCK\" shall\nmean the test suite and accompanying TCK User's Guide provided by\nLicensor which corresponds to the particular version of the Specification\nbeing tested.\n\n6. Termination. This Agreement will terminate immediately without notice\nfrom Licensor if you fail to comply with any material provision of or act\noutside the scope of the licenses granted above.\n\n7. Trademarks. No right, title, or interest in or to any trademarks,\nservice marks, or trade names of Licensor is granted hereunder. Java is\na registered trademark of Sun Microsystems, Inc. in the United States and\nother countries.\n\n8. Disclaimer of Warranties. The Specification is provided \"AS IS\".\nLICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES, EITHER EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT (INCLUDING AS A\nCONSEQUENCE OF ANY PRACTICE OR IMPLEMENTATION OF THE SPECIFICATION), OR\nTHAT THE CONTENTS OF THE SPECIFICATION ARE SUITABLE FOR ANY PURPOSE.\nThis document does not represent any commitment to release or implement\nany portion of the Specification in any product.\n\nThe Specification could include technical inaccuracies or typographical\nerrors. Changes are periodically added to the information therein; these\nchanges will be incorporated into new versions of the Specification, if\nany. Licensor may make improvements and/or changes to the product(s)\nand/or the program(s) described in the Specification at any time. Any\nuse of such changes in the Specification will be governed by the\nthen-current license for the applicable version of the Specification.\n\n9. Limitation of Liability. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO\nEVENT WILL LICENSOR BE LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT\nLIMITATION, LOST REVENUE, PROFITS OR DATA, OR FOR SPECIAL, INDIRECT,\nCONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND\nREGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO ANY\nFURNISHING, PRACTICING, MODIFYING OR ANY USE OF THE SPECIFICATION, EVEN\nIF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n10. Report. If you provide Licensor with any comments or suggestions in\nconnection with your use of the Specification (\"Feedback\"), you hereby:\n(i) agree that such Feedback is provided on a non-proprietary and\nnon-confidential basis, and (ii) grant Licensor a perpetual,\nnon-exclusive, worldwide, fully paid-up, irrevocable license, with the\nright to sublicense through multiple levels of sublicensees, to\nincorporate, disclose, and use without limitation the Feedback for any\npurpose related to the Specification and future versions,\nimplementations, and test suites thereof.\n\n[Addendum to the Day Specification License]\n\nIn addition to the permissions granted under the Specification\nLicense, Day Management AG hereby grants to You a perpetual,\nworldwide, non-exclusive, no-charge, royalty-free, irrevocable\nlicense to reproduce, publicly display, publicly perform,\nsublicense, and distribute unmodified copies of the Content\nRepository for Java Technology API (JCR 1.0) Java Archive (JAR)\nfile (\"jcr-1.0.jar\") and to make, have made, use, offer to sell,\nsell, import, and otherwise transfer said file on its own or\nas part of a larger work that makes use of the JCR API.\n\nWith respect to any patent claims covered by this license\nthat would be infringed by all technically feasible implementations\nof the Specification, such license is conditioned upon your\noffering on fair, reasonable and non-discriminatory terms,\nto any party seeking it from You, a perpetual, non-exclusive,\nnon-transferable, worldwide license under Your patent rights\nthat are or would be infringed by all technically feasible\nimplementations of the Specification to develop, distribute\nand use a Compliant Implementation.", + "json": "day-spec.json", + "yaml": "day-spec.yml", + "html": "day-spec.html", + "license": "day-spec.LICENSE" + }, + { + "license_key": "dbad", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-dbad", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Everyone is permitted to copy and distribute verbatim or modified copies of this license document.\n\n\nDON'T BE A DICK PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\nDo whatever you like with the original work, just don't be a dick.\n\nBeing a dick includes - but is not limited to - the following instances:\n\n1a. Outright copyright infringement - Don't just copy this and change the name.\n1b. Selling the unmodified original with no work done what-so-ever, that's REALLY being a dick.\n1c. Modifying the original work to contain hidden harmful content. That would make you a PROPER dick.\n\nIf you become rich through modifications, related works/services, or supporting the original work, share the love. Only a dick would make loads off this work and not buy the original work's creator(s) a pint.\n\nCode is provided with no warranty. Using somebody else's code and bitching when it goes wrong makes you a DONKEY dick. Fix the problem yourself. A non-dick would submit the fix back.", + "json": "dbad.json", + "yaml": "dbad.yml", + "html": "dbad.html", + "license": "dbad.LICENSE" + }, + { + "license_key": "dbad-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dbad-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "# DON'T BE A DICK PUBLIC LICENSE\n\n> Version 1.1, December 2016\n\n> Copyright (C) [year] [fullname]\n\nEveryone is permitted to copy and distribute verbatim or modified\ncopies of this license document.\n\n> DON'T BE A DICK PUBLIC LICENSE\n> TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n1. Do whatever you like with the original work, just don't be a dick.\n\n Being a dick includes - but is not limited to - the following instances:\n\n 1a. Outright copyright infringement - Don't just copy this and change the name.\n 1b. Selling the unmodified original with no work done what-so-ever, that's REALLY being a dick.\n 1c. Modifying the original work to contain hidden harmful content. That would make you a PROPER dick.\n\n2. If you become rich through modifications, related works/services, or supporting the original work,\nshare the love. Only a dick would make loads off this work and not buy the original work's\ncreator(s) a pint.\n\n3. Code is provided with no warranty. Using somebody else's code and bitching when it goes wrong makes\nyou a DONKEY dick. Fix the problem yourself. A non-dick would submit the fix back.", + "json": "dbad-1.1.json", + "yaml": "dbad-1.1.yml", + "html": "dbad-1.1.html", + "license": "dbad-1.1.LICENSE" + }, + { + "license_key": "dbcl-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-dbcl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ODC Database Contents License (DbCL)\nThe Licensor and You agree as follows:\n\n1.0 Definitions of Capitalised Words\nThe definitions of the Open Database License (ODbL) 1.0 are incorporated\nby reference into the Database Contents License.\n\n2.0 Rights granted and Conditions of Use\n2.1 Rights granted. The Licensor grants to You a worldwide,\nroyalty-free, non-exclusive, perpetual, irrevocable copyright license to\ndo any act that is restricted by copyright over anything within the\nContents, whether in the original medium or any other. These rights\nexplicitly include commercial use, and do not exclude any field of\nendeavour. These rights include, without limitation, the right to\nsublicense the work.\n\n2.2 Conditions of Use. You must comply with the ODbL.\n\n2.3 Relationship to Databases and ODbL. This license does not cover any\nDatabase Rights, Database copyright, or contract over the Contents as\npart of the Database. Please see the ODbL covering the Database for more\ndetails about Your rights and obligations.\n\n2.4 Non-assertion of copyright over facts. The Licensor takes the\nposition that factual information is not covered by copyright. The DbCL\ngrants you permission for any information having copyright contained in\nthe Contents.\n\n3.0 Warranties, disclaimer, and limitation of liability\n3.1 The Contents are licensed by the Licensor \"as is\" and without any\nwarranty of any kind, either express or implied, whether of title, of\naccuracy, of the presence of absence of errors, of fitness for purpose,\nor otherwise. Some jurisdictions do not allow the exclusion of implied\nwarranties, so this exclusion may not apply to You.\n\n3.2 Subject to any liability that may not be excluded or limited by law,\nthe Licensor is not liable for, and expressly excludes, all liability\nfor loss or damage however and whenever caused to anyone by any use\nunder this License, whether by You or by anyone else, and whether caused\nby any fault on the part of the Licensor or not. This exclusion of\nliability includes, but is not limited to, any special, incidental,\nconsequential, punitive, or exemplary damages. This exclusion applies\neven if the Licensor has been advised of the possibility of such\ndamages.\n\n3.3 If liability may not be excluded by law, it is limited to actual and\ndirect financial loss to the extent it is caused by proved negligence on\nthe part of the Licensor.", + "json": "dbcl-1.0.json", + "yaml": "dbcl-1.0.yml", + "html": "dbcl-1.0.html", + "license": "dbcl-1.0.LICENSE" + }, + { + "license_key": "dco-1.1", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-dco-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Developer Certificate of Origin\nVersion 1.1\n\nCopyright (C) 2004, 2006 The Linux Foundation and its contributors.\n1 Letterman Drive\nSuite D4700\nSan Francisco, CA, 94129\n\nEveryone is permitted to copy and distribute verbatim copies of this\nlicense document, but changing it is not allowed.\n\n\nDeveloper's Certificate of Origin 1.1\n\nBy making a contribution to this project, I certify that:\n\n(a) The contribution was created in whole or in part by me and I\n have the right to submit it under the open source license\n indicated in the file; or\n\n(b) The contribution is based upon previous work that, to the best\n of my knowledge, is covered under an appropriate open source\n license and I have the right under that license to submit that\n work with modifications, whether created in whole or in part\n by me, under the same open source license (unless I am\n permitted to submit under a different license), as indicated\n in the file; or\n\n(c) The contribution was provided directly to me by some other\n person who certified (a), (b) or (c) and I have not modified\n it.\n\n(d) I understand and agree that this project and the contribution\n are public and that a record of the contribution (including all\n personal information I submit with it, including my sign-off) is\n maintained indefinitely and may be redistributed consistent with\n this project or the open source license(s) involved.", + "json": "dco-1.1.json", + "yaml": "dco-1.1.yml", + "html": "dco-1.1.html", + "license": "dco-1.1.LICENSE" + }, + { + "license_key": "defensive-patent-1.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-defensive-patent-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PREFACE\nThe Defensive Patent License (DPL) is a free, copyleft-style license for patents.\n\nMost patents and patent licenses are designed to take away the public\u2019s access to knowledge and the freedom to share and improve on the patented inventions. By contrast, the DPL is intended to protect the freedom to share and improve patented inventions, among a community of like-minded people. It is also intended to help establish a robust body of prior art that prevents subsequent attempts to patent the same inventions in ways that restrict access and freedom.\n\nTo join this community, all that a person or company must do is to guarantee the same freedom to everyone else in the DPL community, with respect to all of their own patents (and any future patents they may acquire). However, you do not need to own any patents to become part of the DPL community. You need only make the same commitment and then abide by it in the case that you do acquire patents at some future time.\n\nThe result is that this patent-sharing community ends up with a network of patents that guarantees each member a zero-cost license to any or all of the patents within the network, while still leaving those patents enforceable against anyone who has chosen not to join the DPL\u2019s patent-sharing community.\n\nUnlike copyright-based licenses such as the GNU General Public License, the DPL v1.1 requires that a person or organization license ALL their patents under the DPL in order to receive free licenses from other DPL users. This is due to differences between patents and copyrights and the ways in which patents can threaten access to knowledge and freedom in ways that copyright cannot. In requiring this, the DPL stands as a unequivocal commitment to non-aggression among\n a community of people and companies who obtain patents to defend themselves, but who do not want to use those patents aggressively against the public.\n\nAt the start, the DPL patent-sharing community is likely to be small, so joining it will seldom impact the revenues that a patent holder obtains from commercial licensees. As the community grows, it becomes more and more attractive to join the community, even for large companies with many patents. The benefit to each existing community member grows as more and more patent-holders join and freely license their patents to all the members.\n\nAnother benefit is creating a robust body of prior art to prevent proprietary patent owners from patenting similar inventions. Currently, many innovators choose not to patent what they create because they disagree with the patent system or they are cautious or skeptical that their patents will end up being used to bully or troll other creators. The DPL legally binds patent owners to supporting access and freedom within the DPL community and thus provides assurances that\n patenting a given innovation will not be abused or misused within the DPL community. In this way, DPL patents provide assurances regarding freedom and access while at the same time serving as serious roadblocks to subsequent attempts to file patents on the same inventions.\n\nThe effect of the DPL v.1.1\u2019s \u201call-in\u201d requirement is that companies with large inventories of proprietary patents may be less likely to join the patent-sharing community at first. However, this means that DPL patent holders are free to enter commercial licenses with, collect royalties from, and/or file lawsuits against those companies. Alternatively, if such companies do at some point join the patent-sharing community, the community would get the free use of all of their numerous patents.\n\nTo join the DPL community, you simply declare on a publicly available website your commitment to offer any patents you have or obtain under the DPL to anyone who makes a similar commitment (what we are calling an \u201cOffering Announcement\u201d) and then, when you contact another DPL user to accept the license to its patents, you provide it with the URL for the website where you posted your commitment. We also encourage you to email your Offering Announcement URL\nto the DPL Foundation via the email address listed on its website (http://www.defensivepatentlicense.org/content/frequently-asked-questions#how-can-I-start) so others can learn about it and contact you to accept your licenses.\n\nIf you were to change your mind later, you can withdraw from the DPL patent-sharing community on 180 days\u2019 notice. You can effectuate this by posting another announcement on a publicly available website (what we are calling a \u201cDiscontinuation Announcement\u201d) declaring the final date you will be offering your patents under the DPL and then emailing that URL to anyone from whom you\u2019ve taken the DPL license. Again, we also encourage but do not require that you email \nthe DPL Foundation with your Discontinuation Announcement.\n\nAfter withdrawing, existing licenses you previously granted to community members remain valid, but your obligation to grant free licenses to the DPL community ceases. Also, you retain any free licenses that you obtained from other DPL users. But those other DPL users have the right at any point to convert your license to a similar license that requires you to pay a fair, reasonable, and non-discriminatory royalty for each licensed product or service.\n\nLICENSE\nNOTICE\nNOTICE: ALL RIGHTS IN LICENSED PATENTS (as defined below) PROVIDED UNDER THIS DEFENSIVE PATENT LICENSE (\u201cDPL\u201d) ARE SUBJECT TO ALL OF THE CONDITIONS AND LIMITATIONS SET FORTH BELOW. MAKING, USING, SELLING, OFFERING FOR SALE, IMPORTING, OR DISTRIBUTING PRODUCTS OR SERVICES EMBODYING THE LICENSED PATENTS, OTHER THAN AS EXPLICITLY AUTHORIZED UNDER THIS LICENSE OR PATENT LAW, IS PROHIBITED.\n1. \nLICENSE GRANT\nSubject to the conditions and limitations of this License, Licensor hereby grants and agrees to grant to any DPL User (as defined in Section 7.6) who follows the procedures for License Acceptance (as defined in Section 1.1) a worldwide, royalty-free, no-charge, non-exclusive, irrevocable (except as stated in Sections 2(e) and 2(f)) license, perpetual for the term of the relevant Licensed Patents, to make, have made, use, sell, offer for sale, import, and distribute Licensed Products and Services that would otherwise infringe any claim of Licensed Patents. A Licensee\u2019s sale of Licensed Products \nand Services pursuant to this agreement exhausts the Licensor\u2019s ability to assert infringement against a downstream purchaser or user of the Licensed Products or Services. Licensor\u2019s obligation to grant Licenses under this provision ceases upon the arrival of any applicable Discontinuation Date, unless that Date is followed by a subsequent Offering Announcement.\n\n1.1\nLICENSE ACCEPTANCE\nIn order to accept this License, Licensee must qualify as a DPL User (as defined in Section 7.6) and must contact Licensor via the information provided in Licensor\u2019s Offering Announcement to state affirmatively that Licensee accepts the terms of this License. Licensee must also communicate the URL of its own Offering Announcement (as defined in Section 7.13) and specify whether it is accepting the License to all Licensor\u2019s Patents or only a subset of those Patents. If Licensee is only accepting the License to a subset\nof Licensor\u2019s Patents, Licensee must specify each individual Patent\u2019s country of issuance and corresponding patent number for which it is accepting a License. There is no requirement that the Licensor respond to the Licensee\u2019s affirmative acceptance of this License.\n\n2.\nLICENSE RESTRICTIONS\nNotwithstanding the foregoing, this License is expressly subject to and limited by the following restrictions:\n\n(a) No Sublicensing. This License does not include the right to sublicense any Licensed Patent of any Licensor.\n\n(b) License Extends Solely to Licensed Patents in Connection with Licensed Products and Services. For clarity, this License does not purport to grant any rights in any Licensor\u2019s copyright, trademark, trade dress, design, trade secret, other intellectual property, or any other rights of Licensor other than the rights to Licensed Patents granted in Section 2, nor does the License cover products or services other than the Licensed Products and Services. For example, this License would not apply to any conduct of a Licensee that occurred prior to accepting this License under Section 1.1.\n\n(c) Scope. This License does not include Patents with a priority date or Effective Filing Date later than Licensor\u2019s last Discontinuation Date that has not been followed by a subsequent Offering Announcement by Licensor.\n\n(d) Future DPL Users. This License does not extend to any DPL User whose Offering Announcement occurs later than Licensor\u2019s last Discontinuation Date that has not been followed by a subsequent Offering Announcement by Licensor.\n\n(e) Revocation and Termination Rights. Licensor reserves the right to revoke and/or terminate this License with respect to a particular Licensee if, after the date of the Licensee\u2019s most recent Offering Announcement:\n\ni. Licensee makes any Infringement Claim, not including Defensive Patent Claims, against a DPL User; or\n\nii. Licensee assigns, transfers, or grants an exclusive license for a Patent to an entity or individual other than a DPL User without conditioning the assignment, transfer, or exclusive license on the recipient continuing to abide by the terms of this License, including but not limited to the revocation and termination rights under this Section.\n\n(f) Optional Conversion to FRAND Upon Discontinuation. Notwithstanding any other provision in this License, as of any particular Licensee\u2019s Discontinuation Date, Licensor has the right to convert the License of that particular Licensee from one that is royalty-free and no-charge to one that is subject to Fair, Reasonable, And Non-Discriminatory (FRAND) terms going forward. No other terms in the license may be altered in any way under this provision.\n\n3.\nVERSIONS OF THE LICENSE\n(a) New Versions\n\nThe DPL Foundation, Jason M. Schultz of New York University, and Jennifer M. Urban of the University of California at Berkeley are the license stewards. Unless otherwise designated by one of the license stewards, no one other than the license stewards has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number.\n\n(b) Effect of New or Revised Versions\n\nAny one of the license stewards may publish revised and/or new versions of the DPL 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.\n\nEach version is given a distinguishing version number. If Licensor specifies in her Offering Announcement that she is offering a certain numbered version of the DPL \u201cor any later version\u201d, Licensee has the option of following the terms and conditions either of that numbered version or of any later version published by one of the license stewards. If Licensor does not specify a version number of the DPL in her Offering Announcement, \nLicensee may choose any version ever published by any of the license stewards.\n\n4.\nDISCLAIMER OF CLAIMS RELATED TO PATENT VALIDITY & NON-INFRINGEMENT\nLicensor makes no representations and disclaims any and all warranties as to the validity of the Licensed Patents or the products or processes covered by Licensed Patents do not infringe the patent, copyright, trademark, trade secret, or other intellectual property rights of any other party.\n5.\nDISCLAIMER OF WARRANTIES\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE PATENT LICENSE GRANTED HEREIN \u201cAS IS\u201d AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE PRESENCE OR ABSENCE OF ERRORS, REGARDLESS OF THEIR DISCOVERABILITY. \nSOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, IN WHICH CASE SUCH EXCLUSION MAY NOT APPLY TO LICENSEE.\n6.\nLIMITATION OF LIABILITY\nLICENSOR SHALL NOT BE LIABLE FOR ANY DAMAGES ARISING FROM OR RELATED TO THIS LICENSE, INCLUDING INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, WHETHER ON WARRANTY, CONTRACT, NEGLIGENCE, OR OTHERWISE, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE.", + "json": "defensive-patent-1.1.json", + "yaml": "defensive-patent-1.1.yml", + "html": "defensive-patent-1.1.html", + "license": "defensive-patent-1.1.LICENSE" + }, + { + "license_key": "dejavu-font", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dejavu-font", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "DejaVu Font License\n\nFonts are (c) Bitstream (see below). DejaVu changes are in public domain. \nGlyphs imported from Arev fonts are (c) Tavmjong Bah (see below)\n\n------------------------------ Bitstream Vera Fonts Copyright ------------------------------\nCopyright (c) 2003 by Bitstream, Inc. All Rights Reserved. \nBitstream Vera is a trademark of Bitstream, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license (\"Fonts\") and associated documentation files (the \"Font Software\"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions:\n\nThe above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces.\n\nThe Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words \"Bitstream\" or the word \"Vera\".\n\nThis License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the \"Bitstream Vera\" names.\n\nThe Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself.\n\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.\n\nExcept as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org.\n\n------------------------------ Arev Fonts Copyright ------------------------------\nCopyright (c) 2006 by Tavmjong Bah. All Rights Reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license (\"Fonts\") and associated documentation files (the \"Font Software\"), to reproduce and distribute the modifications to the Bitstream Vera Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions:\n\nThe above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces.\n\nThe Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words \"Tavmjong Bah\" or the word \"Arev\".\n\nThis License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the \"Tavmjong Bah Arev\" names.\n\nThe Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself.\n\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.\n\nExcept as contained in this notice, the name of Tavmjong Bah shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from Tavmjong Bah. For further information, contact: tavmjong@free.fr.", + "json": "dejavu-font.json", + "yaml": "dejavu-font.yml", + "html": "dejavu-font.html", + "license": "dejavu-font.LICENSE" + }, + { + "license_key": "delorie-historical", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-delorie-historical", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution, modification, and use in source and binary forms is permitted\nprovided that the above copyright notice and following paragraph are\nduplicated in all such forms.\n\nThis file is distributed WITHOUT ANY WARRANTY; without even the implied\nwarranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.", + "json": "delorie-historical.json", + "yaml": "delorie-historical.yml", + "html": "delorie-historical.html", + "license": "delorie-historical.LICENSE" + }, + { + "license_key": "dennis-ferguson", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-dennis-ferguson", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Commercial use is permitted only if products which are derived from or include\nthis software are made available for purchase and/or use in Canada. \nOtherwise, redistribution and use in source and binary forms are permitted.", + "json": "dennis-ferguson.json", + "yaml": "dennis-ferguson.yml", + "html": "dennis-ferguson.html", + "license": "dennis-ferguson.LICENSE" + }, + { + "license_key": "devblocks-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-devblocks-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Devblocks Public License 1.0 (DPL)\n\nThe following are the terms and conditions by which Webgroup Media, LLC (\u201cLicensor\u201d) grants you a License to use, modify, and redistribute this software, which is protected as the exclusive intellectual property of Licensor by U.S. copyright law.\n\nLicensor\u2019s copyrights are also protected by international treaties where applicable, including but not limited to: the Berne Convention, World Intellectual Property Organization (WIPO), and the World Trade Organization\u2019s (WTO) Trade-related Aspects of Intellectual Property Rights (TRIPS).\n\nBy using this software, you acknowledge having read this License and agree to be bound thereby.\n\n Devblocks Public License 1.0 (DPL)\n Definitions\n Grant of Rights\n Governing Law and Venue\n Limited Warranty\n Disclaimer of Warranties\n Limitation of Liability and Remedies\n\n\nDefinitions\n\n The terms \u201creproduce\u201d, \u201creproduction\u201d, and \u201cdistribution\u201d have the same meaning here as under U.S. copyright law.\n\n \u201cYou\u201d means the licensee of the software.\n\n \u201cYour organization\u201d means the company, institution, cause, or other group represented by you while using this software.\n\n \u201cPrivate use\u201d means use of this software within your organization, and it specifically excludes the right to distribute this software outside of your organization.\n\n\nGrant of Rights\n\n Copyright Grant - Subject to the terms of this License, Licensor grants you a non-transferable, non-exclusive, worldwide, royalty-free copyright license to reproduce this software for private use.\n\n Modification and Redistribution of Derivative Works - You are permitted to produce and distribute modifications to this software provided that the following conditions are met:\n\n You must not alter or obliterate any copyright notices found in this software or its source code.\n\n Your website and documentation must provide a clearly visible link to this software\u2019s official website. You must clearly state that your modifications are an unofficial version that is derived from this software.\n\n You are not permitted to produce or disseminate any technology or modifications to this software or source code which circumvent its digital copyright protection or interfere with the enforcement of per-seat licensing.\n\n This software must remain compatible with digital software licenses authorized and issued exclusively by Licensor.\n\n Your modifications must remain publicly available in source code form, and may not be encrypted, obfuscated, or otherwise rendered intentionally human-unreadable.\n\n Any modifications you make to this software and its source code must continue to be governed by this License.\n\n Neither the name of Licensor nor the names of its contributors may be used to endorse or promote redistributions of this software without prior written permission from Licensor.\n\n You are prohibited from charging a fee for redistributing this software without prior written permission from Licensor.\n\n\n Third-Party Plugins - You are permitted to produce, install, and publicly distribute modifications to this software which operate as \u201cplugins\u201d. Third-party plugins do not modify or distribute the source code of this software; instead, plugins introduce new functionality through an Application Programming Interface (API) to utilize services and resources provided by this software.\n\n You retain the copyright to any plugins you create.\n\n You are not required to distribute your plugins.\n\n You may distribute your plugins under any software license.\n\n You may sell your plugins, or charge a fee for the development of new plugins.\n\n You agree that Licensor is not liable for the effects of any third-party plugins that you produce or install.\n\n\nGoverning Law and Venue\n\nThis License, its construction, performance, scope, validity, and effects are governed and shall be construed in accordance with the laws applicable and in force in the United States.\n\nThe parties agree, for any claim or judicial proceedings for whatever reason relating to this License, to designate and hereby designate the courts of the judicial district of Orange County, California, as the appropriate venue for the hearing of any such claims or judicial proceedings, to the exclusion of any other courts, judicial district or jurisdiction that may have the right to hear such dispute.\n\n\nLimited Warranty\n\nLicensor warrants that this software will perform substantially in accordance with the accompanying materials for a period of ninety (90) days from the date of receipt. If an implied warranty or condition is created by your state or jurisdiction, and federal, state, or provincial law prohibits disclaimer of it, you also have an implied warranty or condition, but only as to the defects discovered during the period of this limited warranty (90 days). As to any defects discovered after the 90 day period, there is no warranty or condition of any kind. Some states or jurisdictions do not allow limitations on how long an implied warranty or condition lasts, so the above limitation may not apply to you. Any updates or patches to this software provided to you after the expiration of the 90 day Limited Warranty period are not covered by any warranty or condition, express, implied, or statutory.\n\n\nDisclaimer of Warranties\n\nThe Limited Warranty described above is the only express warranty made to you and is provided in lieu of any other express warranties or similar obligations. Except for the Limited Warranty or when otherwise stated in writing the copyright holders and/or other parties, and to the extent permitted by applicable law, this software is provided to you \u201cAS IS\u201d 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, repairs, or corrections.\n\n\nLimitation of Liability and Remedies\n\nIn no event unless required by applicable law or agreed to in writing will Licensor be liable to you under any circumstances for any lost profits or any indirect, special, consequential or punitive damages including, without limitation, loss or alteration of data, failure to provide support, interruption of business, or loss of employee work time. Some jurisdictions do not allow the exclusion or limitation of certain warranties or liability for loss or damage caused by negligence, breach of contract or breach of implied terms, or incidental or consequential damages. Accordingly, only the limitations which are lawful in your jurisdiction will apply to you and Licensor\u2019s liability will be limited to the maximum extent permitted by law. The entire liability of Licensor shall not exceed the aggregate amount paid by you for the software.", + "json": "devblocks-1.0.json", + "yaml": "devblocks-1.0.yml", + "html": "devblocks-1.0.html", + "license": "devblocks-1.0.LICENSE" + }, + { + "license_key": "dgraph-cla", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-dgraph-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Dgraph Community License Agreement\n\n Please read this Dgraph Community License Agreement (the \"Agreement\")\n carefully before using Dgraph (as defined below), which is offered by\n Dgraph Labs, Inc. or its affiliated Legal Entities (\"Dgraph Labs\").\n\n By downloading Dgraph or using it in any manner, You agree that You have\n read and agree to be bound by the terms of this Agreement. If You are\n accessing Dgraph on behalf of a Legal Entity, You represent and warrant\n that You have the authority to agree to these terms on its behalf and the\n right to bind that Legal Entity to this Agreement. Use of Dgraph is\n expressly conditioned upon Your assent to all the terms of this Agreement, to\n the exclusion of all other terms.\n\n 1. Definitions. In addition to other terms defined elsewhere in this\n Agreement, the terms below have the following meanings.\n\n (a) \"Dgraph\" shall mean the graph database software provided by Dgraph\n Labs, including both Dgraph Core and Dgraph Enterprise\n editions, as defined below.\n\n (b) \"Dgraph Core\" shall mean the open source version of\n Dgraph, available free of charge at\n\n https://github.com/dgraph-io/dgraph\n\n (c) \"Dgraph Enterprise Edition\" shall mean the additional features made\n available by Dgraph Labs, the use of which is subject to additional\n terms set out below.\n\n (d) \"Contribution\" shall mean any work of authorship, including the original\n version of the Work and any modifications or additions to that Work or\n Derivative Works thereof, that is intentionally submitted Dgraph Labs\n for inclusion in the Work by the copyright owner or by an individual or\n Legal Entity authorized to submit on behalf of the copyright owner. For\n the purposes of this definition, \"submitted\" means any form of\n electronic, verbal, or written communication sent to Dgraph Labs or\n its representatives, including but not limited to communication on\n electronic mailing lists, source code control systems, and issue\n tracking systems that are managed by, or on behalf of, Dgraph Labs\n for the purpose of discussing and improving the Work, but excluding\n communication that is conspicuously marked or otherwise designated in\n writing by the copyright owner as \"Not a Contribution.\"\n\n (e) \"Contributor\" shall mean any copyright owner or individual or Legal\n Entity authorized by the copyright owner, other than Dgraph Labs,\n from whom Dgraph Labs receives a Contribution that Dgraph Labs\n subsequently incorporates within the Work.\n\n (f) \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work, such as a\n translation, abridgement, condensation, or any other recasting,\n transformation, or adaptation for which the editorial revisions,\n annotations, elaborations, or other modifications represent, as a whole,\n an original work of authorship. For the purposes of this License,\n Derivative Works shall not include works that remain separable from, or\n merely link (or bind by name) to the interfaces of, the Work and\n Derivative Works thereof.\n\n (g) \"Legal Entity\" shall mean the union of the acting entity and all other\n entities that control, are controlled by, or are under common control\n with that entity. For the purposes of this definition, \"control\" means\n (i) the power, direct or indirect, to cause the direction or management\n of such entity, whether by contract or otherwise, or (ii) ownership of\n fifty percent (50%) or more of the outstanding shares, or (iii)\n beneficial ownership of such entity.\n\n (h) \"License\" shall mean the terms and conditions for use, reproduction, and\n distribution of a Work as defined by this Agreement.\n\n (i) \"Licensor\" shall mean Dgraph Labs or a Contributor, as applicable.\n\n (j) \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but not\n limited to compiled object code, generated documentation, and\n conversions to other media types.\n\n (k) \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation source,\n and configuration files.\n\n (l) \"Third Party Works\" shall mean Works, including Contributions, and other\n technology owned by a person or Legal Entity other than Dgraph Labs,\n as indicated by a copyright notice that is included in or attached to\n such Works or technology.\n\n (m) \"Work\" shall mean the work of authorship, whether in Source or Object\n form, made available under a License, as indicated by a copyright notice\n that is included in or attached to the work.\n\n (n) \"You\" (or \"Your\") shall mean an individual or Legal Entity exercising\n permissions granted by this License.\n\n 2. Licenses.\n\n (a) License to Dgraph Core. The License for Dgraph\n Core is the Apache License, Version 2.0 (\"Apache License\").\n The Apache License includes a grant of patent license, as well as\n redistribution rights that are contingent on several requirements.\n Please see\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n for full terms. Dgraph Core is a no-cost, entry-level license and as\n such, contains the following disclaimers: NOTWITHSTANDING ANYTHING TO\n THE CONTRARY HEREIN, DGRAPH CORE IS PROVIDED \"AS IS\" AND \"AS\n AVAILABLE\", AND ALL EXPRESS OR IMPLIED WARRANTIES ARE EXCLUDED AND\n DISCLAIMED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT,\n AND ANY WARRANTIES ARISING BY STATUTE OR OTHERWISE IN LAW OR FROM\n COURSE OF DEALING, COURSE OF PERFORMANCE, OR USE IN TRADE. For\n clarity, the terms of this Agreement, other than the relevant\n definitions in Section 1 and this Section 2(a) do not apply to Dgraph\n Core.\n\n (b) License to Dgraph Enterprise Edition.\n\n i Grant of Copyright License: Subject to the terms of this Agreement,\n Licensor hereby grants to You a worldwide, non-exclusive,\n non-transferable limited license to reproduce, prepare Enterprise\n Derivative Works (as defined below) of, publicly display, publicly\n perform, sublicense, and distribute Dgraph Enterprise Edition\n for Your business purposes, for so long as You are not in violation\n of this Section 2(b) and are current on all payments required by\n Section 4 below.\n\n ii Grant of Patent License: Subject to the terms of this Agreement,\n Licensor hereby grants to You a worldwide, non-exclusive,\n non-transferable limited patent license to make, have made, use,\n offer to sell, sell, import, and otherwise transfer Dgraph\n Enterprise Edition, where such license applies only to those patent\n claims licensable by Licensor that are necessarily infringed by\n their Contribution(s) alone or by combination of their\n Contribution(s) with the Work to which such Contribution(s) was\n submitted. If You institute patent litigation against any entity\n (including a cross-claim or counterclaim in a lawsuit) alleging that\n the Work or a Contribution incorporated within the Work constitutes\n direct or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate as\n of the date such litigation is filed.\n\n iii License to Third Party Works: From time to time Dgraph Labs may\n use, or provide You access to, Third Party Works in connection\n Dgraph Enterprise Edition. You acknowledge and agree that in\n addition to this Agreement, Your use of Third Party Works is subject\n to all other terms and conditions set forth in the License provided\n with or contained in such Third Party Works. Some Third Party Works\n may be licensed to You solely for use with Dgraph Enterprise\n Edition under the terms of a third party License, or as otherwise\n notified by Dgraph Labs, and not under the terms of this\n Agreement. You agree that the owners and third party licensors of\n Third Party Works are intended third party beneficiaries to this\n Agreement.\n\n 3. Support. From time to time, in its sole discretion, Dgraph Labs may\n offer professional services or support for Dgraph, which may now or in\n the future be subject to additional fees.\n\n 4. Fees for Dgraph Enterprise Edition or Dgraph Support.\n\n (a) Fees. The License to Dgraph Enterprise Edition is conditioned upon\n Your payment of the fees which You agree to pay to Dgraph Labs in\n accordance with the payment terms agreed upon by contacting\n contact@dgraph.io. Any professional services or support for Dgraph\n may also be subject to Your payment of fees, which will be\n specified by Dgraph Labs when you sign up to receive such\n professional services or support. Dgraph Labs reserves the right\n to change the fees at any time with prior written notice; for\n recurring fees, any such adjustments will take effect as of the\n next pay period.\n\n (b) Overdue Payments and Taxes. Overdue payments are subject to a service\n charge equal to the lesser of 1.5% per month or the maximum legal\n interest rate allowed by law, and You shall pay all Dgraph Labs\u2019\n reasonable costs of collection, including court costs and attorneys\u2019\n fees. Fees are stated and payable in U.S. dollars and are exclusive of\n all sales, use, value added and similar taxes, duties, withholdings and\n other governmental assessments (but excluding taxes based on Dgraph\n Labs\u2019 income) that may be levied on the transactions contemplated by\n this Agreement in any jurisdiction, all of which are Your responsibility\n unless you have provided Dgraph Labs with a valid tax-exempt\n certificate.\n\n (c) Record-keeping and Audit. If fees for Dgraph Enterprise Edition\n are based on the number of cores or servers running on Dgraph\n Enterprise Edition or another use-based unit of measurement, You must\n maintain complete and accurate records with respect to Your use of\n Dgraph Enterprise Edition and will provide such records to\n Dgraph Labs for inspection or audit upon Dgraph Labs\u2019 reasonable\n request. If an inspection or audit uncovers additional usage by You for\n which fees are owed under this Agreement, then You shall pay for such\n additional usage at Dgraph Labs\u2019 then-current rates.\n\n 5. Trial License. If You have signed up for a trial or evaluation of\n Dgraph Enterprise Edition, Your License to Dgraph Enterprise\n Edition is granted without charge for the trial or evaluation period\n specified when You signed up, or if no term was specified, for thirty (30)\n calendar days, provided that Your License is granted solely for purposes of\n Your internal evaluation of Dgraph Enterprise Edition during the trial\n or evaluation period (a \"Trial License\"). You may not use Dgraph\n Enterprise Edition under a Trial License more than once in any twelve (12)\n month period. Dgraph Labs may revoke a Trial License at any time and\n for any reason. Sections 3, 4, 9 and 11 of this Agreement do not apply to\n Trial Licenses.\n\n 6. Redistribution. You may reproduce and distribute copies of the Work or\n Derivative Works thereof in any medium, with or without modifications, and\n in Source or Object form, provided that You meet the following conditions:\n\n (a) You must give any other recipients of the Work or Derivative Works a\n copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices stating\n that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works that You\n distribute, all copyright, patent, trademark, and attribution notices\n from the Source form of the Work, excluding those notices that do not\n pertain to any part of the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its distribution,\n then any Derivative Works that You distribute must include a readable\n copy of the attribution notices contained within such NOTICE file,\n excluding those notices that do not pertain to any part of the\n Derivative Works, in at least one of the following places: within a\n NOTICE text file distributed as part of the Derivative Works; within the\n Source form or documentation, if provided along with the Derivative\n Works; or, within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents of the\n NOTICE file are for informational purposes only and do not modify the\n License. You may add Your own attribution notices within Derivative\n Works that You distribute, alongside or as an addendum to the NOTICE\n text from the Work, provided that such additional attribution notices\n cannot be construed as modifying the License.\n\n You may add Your own copyright statement to Your modifications and may\n provide additional or different license terms and conditions for use,\n reproduction, or distribution of Your modifications, or for any such\n Derivative Works as a whole, provided Your use, reproduction, and\n distribution of the Work otherwise complies with the conditions stated\n in this License.\n\n (e) Enterprise Derivative Works: Derivative Works of Dgraph Enterprise\n Edition (\"Enterprise Derivative Works\") may be made, reproduced and\n distributed in any medium, with or without modifications, in Source or\n Object form, provided that each Enterprise Derivative Work will be\n considered to include a License to Dgraph Enterprise Edition and\n thus will be subject to the payment of fees to Dgraph Labs by any\n user of the Enterprise Derivative Work.\n\n 7. Submission of Contributions. Unless You explicitly state otherwise, any\n Contribution intentionally submitted for inclusion in Dgraph by You to\n Dgraph Labs shall be under the terms and conditions of\n\n https://cla-assistant.io/dgraph-io/dgraph\n\n (which is based off of the Apache License), without any additional terms or\n conditions, payments of royalties or otherwise to Your benefit.\n Notwithstanding the above, nothing herein shall supersede or modify the\n terms of any separate license agreement You may have executed with\n Dgraph Labs regarding such Contributions.\n\n 8. Trademarks. This License does not grant permission to use the trade names,\n trademarks, service marks, or product names of Licensor, except as required\n for reasonable and customary use in describing the origin of the Work and\n reproducing the content of the NOTICE file.\n\n 9. Limited Warranty.\n\n (a) Warranties. Dgraph Labs warrants to You that: (i) Dgraph\n Enterprise Edition will materially perform in accordance with the\n applicable documentation for ninety (90) days after initial delivery to\n You; and (ii) any professional services performed by Dgraph Labs\n under this Agreement will be performed in a workmanlike manner, in\n accordance with general industry standards.\n\n (b) Exclusions. Dgraph Labs\u2019 warranties in this Section 9 do not extend\n to problems that result from: (i) Your failure to implement updates\n issued by Dgraph Labs during the warranty period; (ii) any\n alterations or additions (including Enterprise Derivative Works and\n Contributions) to Dgraph not performed by or at the direction of\n Dgraph Labs; (iii) failures that are not reproducible by Dgraph\n Labs; (iv) operation of Dgraph Enterprise Edition in violation of\n this Agreement or not in accordance with its documentation; (v) failures\n caused by software, hardware or products not licensed or provided by\n Dgraph Labs hereunder; or (vi) Third Party Works.\n\n (c) Remedies. In the event of a breach of a warranty under this Section 9,\n Dgraph Labs will, at its discretion and cost, either repair, replace\n or re-perform the applicable Works or services or refund a portion of\n fees previously paid to Dgraph Labs that are associated with the\n defective Works or services. This is Your exclusive remedy, and\n Dgraph Labs\u2019 sole liability, arising in connection with the limited\n warranties herein.\n\n 10. Disclaimer of Warranty. Except as set out in Section 9, unless required\n by applicable law, Licensor provides the Work (and each Contributor\n provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n CONDITIONS OF ANY KIND, either express or implied, arising out of course\n of dealing, course of performance, or usage in trade, including, without\n limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT,\n MERCHANTABILITY, CORRECTNESS, RELIABILITY, or FITNESS FOR A PARTICULAR\n PURPOSE, all of which are hereby disclaimed. You are solely responsible\n for determining the appropriateness of using or redistributing Works and\n assume any risks associated with Your exercise of permissions under the\n applicable License for such Works.\n\n 11. Limited Indemnity.\n\n (a) Indemnity. Dgraph Labs will defend, indemnify and hold You harmless\n against any third party claims, liabilities or expenses incurred\n (including reasonable attorneys\u2019 fees), as well as amounts finally\n awarded in a settlement or a non-appealable judgement by a court\n (\"Losses\"), to the extent arising from any claim or allegation by a\n third party that Dgraph Enterprise Edition infringes or\n misappropriates a valid United States patent, copyright or trade secret\n right of a third party; provided that You give Dgraph Labs: (i)\n prompt written notice of any such claim or allegation; (ii) sole control\n of the defense and settlement thereof; and (iii) reasonable cooperation\n and assistance in such defense or settlement. If any Work within\n Dgraph Enterprise Edition becomes or, in Dgraph Labs\u2019 opinion,\n is likely to become, the subject of an injunction, Dgraph Labs may,\n at its option, (A) procure for You the right to continue using such\n Work, (B) replace or modify such Work so that it becomes non-infringing\n without substantially compromising its functionality, or, if (A) and (B)\n are not commercially practicable, then (C) terminate Your license to the\n allegedly infringing Work and refund to You a prorated portion of the\n prepaid and unearned fees for such infringing Work. The foregoing\n states the entire liability of Dgraph Labs with respect to\n infringement of patents, copyrights, trade secrets or other intellectual\n property rights.\n\n (b) Exclusions. The foregoing obligations shall not apply to: (i) Works\n modified by any party other than Dgraph Labs (including Enterprise\n Derivative Works and Contributions), if the alleged infringement relates\n to such modification, (ii) Works combined or bundled with any products,\n processes or materials not provided by Dgraph Labs where the alleged\n infringement relates to such combination, (iii) use of a version of\n Dgraph Enterprise Edition other than the version that was current\n at the time of such use, as long as a non-infringing version had been\n released, (iv) any Works created to Your specifications, (v)\n infringement or misappropriation of any proprietary right in which You\n have an interest, or (vi) Third Party Works. You will defend, indemnify\n and hold Dgraph Labs harmless against any Losses arising from any\n such claim or allegation, subject to conditions reciprocal to those in\n Section 11(a).\n\n 12. Limitation of Liability. In no event and under no legal or equitable\n theory, whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts), and notwithstanding anything in this Agreement to the\n contrary, shall Licensor or any Contributor be liable to You for (i) any\n amounts in excess, in the aggregate, of the fees paid by You to Dgraph\n Labs under this Agreement in the twelve (12) months preceding the date the\n first cause of liability arose), or (ii) any indirect, special,\n incidental, punitive, exemplary, reliance, or consequential damages of any\n character arising as a result of this Agreement or out of the use or\n inability to use the Work (including but not limited to damages for loss\n of goodwill, profits, data or data use, work stoppage, computer failure or\n malfunction, cost of procurement of substitute goods, technology or\n services, or any and all other commercial damages or losses), even if such\n Licensor or Contributor has been advised of the possibility of such\n damages. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE\n ESSENTIAL PURPOSE OF ANY LIMITED REMEDY.\n\n 13. Accepting Warranty or Additional Liability. While redistributing Works or\n Derivative Works thereof, and without limiting your obligations under\n Section 6, You may choose to offer, and charge a fee for, acceptance of\n support, warranty, indemnity, or other liability obligations and/or rights\n consistent with this License. However, in accepting such obligations, You\n may act only on Your own behalf and on Your sole responsibility, not on\n behalf of any other Contributor, and only if You agree to indemnify,\n defend, and hold Dgraph Labs and each other Contributor harmless for\n any liability incurred by, or claims asserted against, such Contributor by\n reason of your accepting any such warranty or additional liability.\n\n 14. General.\n\n (a) Relationship of Parties. You and Dgraph Labs are independent\n contractors, and nothing herein shall be deemed to constitute either\n party as the agent or representative of the other or both parties as\n joint venturers or partners for any purpose.\n\n (b) Export Control. You shall comply with the U.S. Foreign Corrupt\n Practices Act and all applicable export laws, restrictions and\n regulations of the U.S. Department of Commerce, and any other applicable\n U.S. and foreign authority.\n\n (c) Assignment. This Agreement and the rights and obligations herein may\n not be assigned or transferred, in whole or in part, by You without the\n prior written consent of Dgraph Labs. Any assignment in violation of\n this provision is void. This Agreement shall be binding upon, and inure\n to the benefit of, the successors and permitted assigns of the parties.\n\n (d) Governing Law. This Agreement shall be governed by and construed under\n the laws of the State of New York and the United States without regard\n to conflicts of laws provisions thereof, and without regard to the\n Uniform Computer Information Transactions Act.\n\n (e) Attorneys\u2019 Fees. In any action or proceeding to enforce rights under\n this Agreement, the prevailing party shall be entitled to recover its\n costs, expenses and attorneys\u2019 fees.\n\n (f) Severability. If any provision of this Agreement is held to be invalid,\n illegal or unenforceable in any respect, that provision shall be limited\n or eliminated to the minimum extent necessary so that this Agreement\n otherwise remains in full force and effect and enforceable.\n\n (g) Entire Agreement; Waivers; Modification. This Agreement constitutes the\n entire agreement between the parties relating to the subject matter\n hereof and supersedes all proposals, understandings, or discussions,\n whether written or oral, relating to the subject matter of this\n Agreement and all past dealing or industry custom. The failure of either\n party to enforce its rights under this Agreement at any time for any\n period shall not be construed as a waiver of such rights. No changes,\n modifications or waivers to this Agreement will be effective unless in\n writing and signed by both parties.", + "json": "dgraph-cla.json", + "yaml": "dgraph-cla.yml", + "html": "dgraph-cla.html", + "license": "dgraph-cla.LICENSE" + }, + { + "license_key": "dhtmlab-public", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dhtmlab-public", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright (c) 2000 internet.com Corp. All Rights Reserved.\nOriginally published and documented at http://www.dhtmlab.com/\nYou may use this code on a public Web site only if this entire\ncopyright notice appears unchanged and you publicly display\non the Web page a link to http://www.dhtmlab.com/.\"", + "json": "dhtmlab-public.json", + "yaml": "dhtmlab-public.yml", + "html": "dhtmlab-public.html", + "license": "dhtmlab-public.LICENSE" + }, + { + "license_key": "diffmark", + "category": "Public Domain", + "spdx_license_key": "diffmark", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "1. you can do what you want with it\n2. I refuse any responsibility for the consequences", + "json": "diffmark.json", + "yaml": "diffmark.yml", + "html": "diffmark.html", + "license": "diffmark.LICENSE" + }, + { + "license_key": "digia-qt-commercial", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-digia-qt-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Commercial License Usage\nLicensees holding valid commercial Qt licenses may use this file in\naccordance with the commercial license agreement provided with the\nSoftware or, alternatively, in accordance with the terms contained in\na written agreement between you and Digia. For licensing terms and\nconditions see http://qt.digia.com/licensing. For further information\nuse the contact form at http://qt.digia.com/contact-us.", + "json": "digia-qt-commercial.json", + "yaml": "digia-qt-commercial.yml", + "html": "digia-qt-commercial.html", + "license": "digia-qt-commercial.LICENSE" + }, + { + "license_key": "digia-qt-exception-lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "As an additional permission to the GNU Lesser General Public License version\n2.1, the object code form of a \"work that uses the Library\" may incorporate\nmaterial from a header file that is part of the Library. You may distribute\nsuch object code under terms of your choice, provided that:\n (i) the header files of the Library have not been modified; and \n (ii) the incorporated material is limited to numerical parameters, data\n structure layouts, accessors, macros, inline functions and\n templates; and\n (iii) you comply with the terms of Section 6 of the GNU Lesser General\n Public License version 2.1.\n\nMoreover, you may apply this exception to a modified version of the Library,\nprovided that such modification does not involve copying material from the\nLibrary into the modified Library's header files unless such material is\nlimited to (i) numerical parameters; (ii) data structure layouts;\n(iii) accessors; and (iv) small macros, templates and inline functions of\nfive lines or less in length.\n\nFurthermore, you are not required to apply this additional permission to a\nmodified version of the Library.", + "json": "digia-qt-exception-lgpl-2.1.json", + "yaml": "digia-qt-exception-lgpl-2.1.yml", + "html": "digia-qt-exception-lgpl-2.1.html", + "license": "digia-qt-exception-lgpl-2.1.LICENSE" + }, + { + "license_key": "digia-qt-preview", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-digia-qt-preview", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "TECHNOLOGY PREVIEW LICENSE AGREEMENT\n\nFor individuals and/or legal entities resident in the Americas (North\nAmerica, Central America and South America), the applicable licensing\nterms are specified under the heading \"Technology Preview License\nAgreement: The Americas\".\n\nFor individuals and/or legal entities not resident in The Americas, the\napplicable licensing terms are specified under the heading \"Technology\nPreview License Agreement: Rest of the World\".\n\n\nTECHNOLOGY PREVIEW LICENSE AGREEMENT: The Americas\nAgreement version 2.4\n\nThis Technology Preview License Agreement (\"Agreement\")is a legal agreement\nbetween Digia USA, Inc. (\"Digia\"), with its registered office at 2350\nMission College Blvd., Suite 1020, Santa Clara, California 95054,\nU.S.A. and you (either an individual or a legal entity) (\"Licensee\") for the\nLicensed Software (as defined below).\n\n1. DEFINITIONS\n\n\"Affiliate\" of a Party shall mean an entity (i) which is directly or\nindirectly controlling such Party; (ii) which is under the same direct\nor indirect ownership or control as such Party; or (iii) which is\ndirectly or indirectly owned or controlled by such Party. For these\npurposes, an entity shall be treated as being controlled by another if\nthat other entity has fifty percent (50 %) or more of the votes in such\nentity, is able to direct its affairs and/or to control the composition\nof its board of directors or equivalent body.\n\n\"Applications\" shall mean Licensee's software products created using the\nLicensed Software which may include portions of the Licensed Software.\n\n\"Term\" shall mean the period of time six (6) months from the later of\n(a) the Effective Date; or (b) the date the Licensed Software was\ninitially delivered to Licensee by Digia. If no specific Effective Date\nis set forth in the Agreement, the Effective Date shall be deemed to be\nthe date the Licensed Software was initially delivered to Licensee.\n\n\"Licensed Software\" shall mean the computer software, \"online\" or\nelectronic documentation, associated media and printed materials,\nincluding the source code, example programs and the documentation\ndelivered by Digia to Licensee in conjunction with this Agreement.\n\n\"Party\" or \"Parties\" shall mean Licensee and/or Digia.\n\n\n2. OWNERSHIP\n\nThe Licensed Software is protected by copyright laws and international\ncopyright treaties, as well as other intellectual property laws and\ntreaties. The Licensed Software is licensed, not sold.\n\nIf Licensee provides any findings, proposals, suggestions or other\nfeedback (\"Feedback\") to Digia regarding the Licensed Software, Digia\nshall own all right, title and interest including the intellectual\nproperty rights in and to such Feedback, excluding however any existing\npatent rights of Licensee. To the extent Licensee owns or controls any\npatents for such Feedback Licensee hereby grants to Digia and its\nAffiliates, a worldwide, perpetual, non-transferable, sublicensable,\nroyalty-free license to (i) use, copy and modify Feedback and to create\nderivative works thereof, (ii) to make (and have made), use, import,\nsell, offer for sale, lease, dispose, offer for disposal or otherwise\nexploit any products or services of Digia containing Feedback, and\n(iii) sublicense all the foregoing rights to third party licensees and\ncustomers of Digia and/or its Affiliates.\n\n\n3. VALIDITY OF THE AGREEMENT\n\nBy installing, copying, or otherwise using the Licensed Software,\nLicensee agrees to be bound by the terms of this Agreement. If Licensee\ndoes not agree to the terms of this Agreement, Licensee may not install,\ncopy, or otherwise use the Licensed Software. Upon Licensee's acceptance\nof the terms and conditions of this Agreement, Digia grants Licensee the\nright to use the Licensed Software in the manner provided below.\n\n\n4. LICENSES\n\n4.1. Using and Copying\n\nDigia grants to Licensee a non-exclusive, non-transferable, time-limited\nlicense to use and copy the Licensed Software for sole purpose of\ndesigning, developing and testing Applications, and evaluating and the\nLicensed Software during the Term.\n\nLicensee may install copies of the Licensed Software on an unlimited\nnumber of computers provided that (a) if an individual, only such\nindividual; or (b) if a legal entity only its employees; use the\nLicensed Software for the authorized purposes.\n\n4.2 No Distribution or Modifications\n\nLicensee may not disclose, modify, sell, market, commercialise,\ndistribute, loan, rent, lease, or license the Licensed Software or any\ncopy of it or use the Licensed Software for any purpose that is not\nexpressly granted in this Section 4. Licensee may not alter or remove\nany details of ownership, copyright, trademark or other property right\nconnected with the Licensed Software. Licensee may not distribute any\nsoftware statically or dynamically linked with the Licensed Software. \n\n4.3 No Technical Support\n\nDigia has no obligation to furnish Licensee with any technical support\nwhatsoever. Any such support is subject to separate agreement between\nthe Parties.\n\n\n5. PRE-RELEASE CODE\nThe Licensed Software contains pre-release code that is not at the level\nof performance and compatibility of a final, generally available,\nproduct offering. The Licensed Software may not operate correctly and\nmay be substantially modified prior to the first commercial product\nrelease, if any. Digia is not obligated to make this or any later\nversion of the Licensed Software commercially available. The License\nSoftware is \"Not for Commercial Use\" and may only be used for the\npurposes described in Section 4. The Licensed Software may not be used\nin a live operating environment where it may be relied upon to perform\nin the same manner as a commercially released product or with data that\nhas not been sufficiently backed up.\n\n6. THIRD PARTY SOFTWARE\n\nThe Licensed Software may provide links to third party libraries or code\n(collectively \"Third Party Software\") to implement various functions.\nThird Party Software does not comprise part of the Licensed Software. In\nsome cases, access to Third Party Software may be included along with\nthe Licensed Software delivery as a convenience for development and\ntesting only. Such source code and libraries may be listed in the\n\".../src/3rdparty\" source tree delivered with the Licensed Software or\ndocumented in the Licensed Software where the Third Party Software is\nused, as may be amended from time to time, do not comprise the Licensed\nSoftware. Licensee acknowledges (1) that some part of Third Party\nSoftware may require additional licensing of copyright and patents from\nthe owners of such, and (2) that distribution of any of the Licensed\nSoftware referencing any portion of a Third Party Software may require\nappropriate licensing from such third parties.\n\n\n7. LIMITED WARRANTY AND WARRANTY DISCLAIMER\n\nThe Licensed Software is licensed to Licensee \"as is\". To the maximum\nextent permitted by applicable law, Digia on behalf of itself and its\nsuppliers, disclaims all warranties and conditions, either express or\nimplied, including, but not limited to, implied warranties of\nmerchantability, fitness for a particular purpose, title and\nnon-infringement with regard to the Licensed Software.\n\n\n8. LIMITATION OF LIABILITY\n\nIf, Digia's warranty disclaimer notwithstanding, Digia is held liable to\nLicensee, whether in contract, tort or any other legal theory, based on\nthe Licensed Software, Digia's entire liability to Licensee and\nLicensee's exclusive remedy shall be, at Digia's option, either (A)\nreturn of the price Licensee paid for the Licensed Software, or (B)\nrepair or replacement of the Licensed Software, provided Licensee\nreturns to Digia all copies of the Licensed Software as originally\ndelivered to Licensee. Digia shall not under any circumstances be liable\nto Licensee based on failure of the Licensed Software if the failure\nresulted from accident, abuse or misapplication, nor shall Digia under\nany circumstances be liable for special damages, punitive or exemplary\ndamages, damages for loss of profits or interruption of business or for\nloss or corruption of data. Any award of damages from Digia to Licensee\nshall not exceed the total amount Licensee has paid to Digia in\nconnection with this Agreement.\n\n\n9. CONFIDENTIALITY\n\nEach party acknowledges that during the Term of this Agreement it shall\nhave access to information about the other party's business, business\nmethods, business plans, customers, business relations, technology, and\nother information, including the terms of this Agreement, that is\nconfidential and of great value to the other party, and the value of\nwhich would be significantly reduced if disclosed to third parties (the\n\"Confidential Information\"). Accordingly, when a party (the \"Receiving\nParty\") receives Confidential Information from another party (the\n\"Disclosing Party\"), the Receiving Party shall, and shall obligate its\nemployees and agents and employees and agents of its Affiliates to: (i)\nmaintain the Confidential Information in strict confidence; (ii) not\ndisclose the Confidential Information to a third party without the\nDisclosing Party's prior written approval; and (iii) not, directly or\nindirectly, use the Confidential Information for any purpose other than\nfor exercising its rights and fulfilling its responsibilities pursuant\nto this Agreement. Each party shall take reasonable measures to protect\nthe Confidential Information of the other party, which measures shall\nnot be less than the measures taken by such party to protect its own\nconfidential and proprietary information.\n\n\"Confidential Information\" shall not include information that (a) is or\nbecomes generally known to the public through no act or omission of the\nReceiving Party; (b) was in the Receiving Party's lawful possession\nprior to the disclosure hereunder and was not subject to limitations on\ndisclosure or use; (c) is developed by the Receiving Party without\naccess to the Confidential Information of the Disclosing Party or by\npersons who have not had access to the Confidential Information of the\nDisclosing Party as proven by the written records of the Receiving\nParty; (d) is lawfully disclosed to the Receiving Party without\nrestrictions, by a third party not under an obligation of\nconfidentiality; or (e) the Receiving Party is legally compelled to\ndisclose the information, in which case the Receiving Party shall assert\nthe privileged and confidential nature of the information and cooperate\nfully with the Disclosing Party to protect against and prevent\ndisclosure of any Confidential Information and to limit the scope of\ndisclosure and the dissemination of disclosed Confidential Information\nby all legally available means.\n\nThe obligations of the Receiving Party under this Section shall continue\nduring the Initial Term and for a period of five (5) years after\nexpiration or termination of this Agreement. To the extent that the\nterms of the Non-Disclosure Agreement between Digia and Licensee\nconflict with the terms of this Section 9, this Section 9 shall be\ncontrolling over the terms of the Non-Disclosure Agreement.\n\n\n10. GENERAL PROVISIONS\n\n10.1 No Assignment\n\nLicensee shall not be entitled to assign or transfer all or any of its\nrights, benefits and obligations under this Agreement without the prior\nwritten consent of Digia, which shall not be unreasonably withheld.\n\n10.2 Termination\n\nDigia may terminate the Agreement at any time immediately upon written\nnotice by Digia to Licensee if Licensee breaches this Agreement.\n\nUpon termination of this Agreement, Licensee shall return to Digia all\ncopies of Licensed Software that were supplied by Digia. All other\ncopies of Licensed Software in the possession or control of Licensee\nmust be erased or destroyed. An officer of Licensee must promptly\ndeliver to Digia a written confirmation that this has occurred.\n\n10.3 Surviving Sections\n\nAny terms and conditions that by their nature or otherwise reasonably\nshould survive a cancellation or termination of this Agreement shall\nalso be deemed to survive. Such terms and conditions include, but are\nnot limited to the following Sections: 2, 5, 6, 7, 8, 9, 10.2, 10.3, 10.4,\n10.5, 10.6, 10.7, and 10.8 of this Agreement.\n\n10.4 Entire Agreement\n\nThis Agreement constitutes the complete agreement between the parties\nand supersedes all prior or contemporaneous discussions,\nrepresentations, and proposals, written or oral, with respect to the\nsubject matters discussed herein, with the exception of the\nnon-disclosure agreement executed by the parties in connection with this\nAgreement (\"Non-Disclosure Agreement\"), if any, shall be subject to\nSection 9. No modification of this Agreement shall be effective unless\ncontained in a writing executed by an authorized representative of each\nparty. No term or condition contained in Licensee's purchase order shall\napply unless expressly accepted by Digia in writing. If any provision of\nthe Agreement is found void or unenforceable, the remainder shall remain\nvalid and enforceable according to its terms. If any remedy provided is\ndetermined to have failed for its essential purpose, all limitations of\nliability and exclusions of damages set forth in this Agreement shall\nremain in effect.\n\n10.5 Export Control\n\nLicensee acknowledges that the Licensed Software may be subject to\nexport control restrictions of various countries. Licensee shall fully\ncomply with all applicable export license restrictions and requirements\nas well as with all laws and regulations relating to the importation of\nthe Licensed Software and shall procure all necessary governmental\nauthorizations, including without limitation, all necessary licenses,\napprovals, permissions or consents, where necessary for the\nre-exportation of the Licensed Software.,\n\n10.6 Governing Law and Legal Venue\n\nThis Agreement shall be governed by and construed in accordance with the\nfederal laws of the United States of America and the internal laws of\nthe State of New York without given effect to any choice of law rule\nthat would result in the application of the laws of any other\njurisdiction. The United Nations Convention on Contracts for the\nInternational Sale of Goods (CISG) shall not apply. Each Party (a)\nhereby irrevocably submits itself to and consents to the jurisdiction of\nthe United States District Court for the Southern District of New York\n(or if such court lacks jurisdiction, the state courts of the State of\nNew York) for the purposes of any action, claim, suit or proceeding\nbetween the Parties in connection with any controversy, claim, or\ndispute arising out of or relating to this Agreement; and (b) hereby\nwaives, and agrees not to assert by way of motion, as a defense or\notherwise, in any such action, claim, suit or proceeding, any claim that\nis not personally subject to the jurisdiction of such court(s), that the\naction, claim, suit or proceeding is brought in an inconvenient forum or\nthat the venue of the action, claim, suit or proceeding is improper.\nNotwithstanding the foregoing, nothing in this Section 9.6 is intended\nto, or shall be deemed to, constitute a submission or consent to, or\nselection of, jurisdiction, forum or venue for any action for patent\ninfringement, whether or not such action relates to this Agreement.\n\n10.7 No Implied License\n\nThere are no implied licenses or other implied rights granted under this\nAgreement, and all rights, save for those expressly granted hereunder,\nshall remain with Digia and its licensors. In addition, no licenses or\nimmunities are granted to the combination of the Licensed Software with\nany other software or hardware not delivered by Digia under this\nAgreement.\n\n10.8 Government End Users\n\nA \"U.S. Government End User\" shall mean any agency or entity of the\ngovernment of the United States. The following shall apply if Licensee\nis a U.S. Government End User. The Licensed Software is a \"commercial\nitem,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995),\nconsisting of \"commercial computer software\" and \"commercial computer\nsoftware documentation,\" as such terms are used in 48 C.F.R. 12.212\n(Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1\nthrough 227.7202-4 (June 1995), all U.S. Government End Users acquire\nthe Licensed Software with only those rights set forth herein. The\nLicensed Software (including related documentation) is provided to U.S.\nGovernment End Users: (a) only as a commercial end item; and (b) only\npursuant to this Agreement.\n\n\n\n\n\nTECHNOLOGY PREVIEW LICENSE AGREEMENT: Rest of the World\nAgreement version 2.4\n\nThis Technology Preview License Agreement (\"Agreement\") is a legal\nagreement between Digia Finland Ltd (\"Digia\"), with its registered office at\nValimotie 21,FI-00380 Helsinki, Finland and you (either an individual or a\nlegal entity) (\"Licensee\") for the Licensed Software.\n\n1. DEFINITIONS\n\n\"Affiliate\" of a Party shall mean an entity (i) which is directly or\nindirectly controlling such Party; (ii) which is under the same direct\nor indirect ownership or control as such Party; or (iii) which is\ndirectly or indirectly owned or controlled by such Party. For these\npurposes, an entity shall be treated as being controlled by another if\nthat other entity has fifty percent (50 %) or more of the votes in such\nentity, is able to direct its affairs and/or to control the composition\nof its board of directors or equivalent body.\n\n\"Applications\" shall mean Licensee's software products created using the\nLicensed Software which may include portions of the Licensed Software.\n\n\"Term\" shall mean the period of time six (6) months from the later of\n(a) the Effective Date; or (b) the date the Licensed Software was\ninitially delivered to Licensee by Digia. If no specific Effective Date\nis set forth in the Agreement, the Effective Date shall be deemed to be\nthe date the Licensed Software was initially delivered to Licensee.\n\n\"Licensed Software\" shall mean the computer software, \"online\" or\nelectronic documentation, associated media and printed materials,\nincluding the source code, example programs and the documentation\ndelivered by Digia to Licensee in conjunction with this Agreement.\n\n\"Party\" or \"Parties\" shall mean Licensee and/or Digia.\n\n\n2. OWNERSHIP\n\nThe Licensed Software is protected by copyright laws and international\ncopyright treaties, as well as other intellectual property laws and\ntreaties. The Licensed Software is licensed, not sold.\n\nIf Licensee provides any findings, proposals, suggestions or other\nfeedback (\"Feedback\") to Digia regarding the Licensed Software, Digia\nshall own all right, title and interest including the intellectual\nproperty rights in and to such Feedback, excluding however any existing\npatent rights of Licensee. To the extent Licensee owns or controls any\npatents for such Feedback Licensee hereby grants to Digia and its\nAffiliates, a worldwide, perpetual, non-transferable, sublicensable,\nroyalty-free license to (i) use, copy and modify Feedback and to create\nderivative works thereof, (ii) to make (and have made), use, import,\nsell, offer for sale, lease, dispose, offer for disposal or otherwise\nexploit any products or services of Digia containing Feedback, and\n(iii) sublicense all the foregoing rights to third party licensees and\ncustomers of Digia and/or its Affiliates.\n\n3. VALIDITY OF THE AGREEMENT\n\nBy installing, copying, or otherwise using the Licensed Software,\nLicensee agrees to be bound by the terms of this Agreement. If Licensee\ndoes not agree to the terms of this Agreement, Licensee may not install,\ncopy, or otherwise use the Licensed Software. Upon Licensee's acceptance\nof the terms and conditions of this Agreement, Digia grants Licensee the\nright to use the Licensed Software in the manner provided below.\n\n\n4. LICENSES\n\n4.1. Using and Copying\n\nDigia grants to Licensee a non-exclusive, non-transferable, time-limited\nlicense to use and copy the Licensed Software for sole purpose of\ndesigning, developing and testing Applications, and evaluating and the\nLicensed Software during the Term.\n\nLicensee may install copies of the Licensed Software on an unlimited\nnumber of computers provided that (a) if an individual, only such\nindividual; or (b) if a legal entity only its employees; use the\nLicensed Software for the authorized purposes.\n\n4.2 No Distribution or Modifications\n\nLicensee may not disclose, modify, sell, market, commercialise,\ndistribute, loan, rent, lease, or license the Licensed Software or any\ncopy of it or use the Licensed Software for any purpose that is not\nexpressly granted in this Section 4. Licensee may not alter or remove\nany details of ownership, copyright, trademark or other property right\nconnected with the Licensed Software. Licensee may not distribute any\nsoftware statically or dynamically linked with the Licensed Software.\n\n4.3 No Technical Support\n\nDigia has no obligation to furnish Licensee with any technical support\nwhatsoever. Any such support is subject to separate agreement between\nthe Parties.\n\n\n5. PRE-RELEASE CODE\n\nThe Licensed Software contains pre-release code that is not at the level\nof performance and compatibility of a final, generally available,\nproduct offering. The Licensed Software may not operate correctly and\nmay be substantially modified prior to the first commercial product\nrelease, if any. Digia is not obligated to make this or any later\nversion of the Licensed Software commercially available. The License\nSoftware is \"Not for Commercial Use\" and may only be used for the\npurposes described in Section 4. The Licensed Software may not be used\nin a live operating environment where it may be relied upon to perform\nin the same manner as a commercially released product or with data that\nhas not been sufficiently backed up.\n\n6. THIRD PARTY SOFTWARE\n\nThe Licensed Software may provide links to third party libraries or code\n(collectively \"Third Party Software\") to implement various functions.\nThird Party Software does not comprise part of the Licensed Software. In\nsome cases, access to Third Party Software may be included along with\nthe Licensed Software delivery as a convenience for development and\ntesting only. Such source code and libraries may be listed in the\n\".../src/3rdparty\" source tree delivered with the Licensed Software or\ndocumented in the Licensed Software where the Third Party Software is\nused, as may be amended from time to time, do not comprise the Licensed\nSoftware. Licensee acknowledges (1) that some part of Third Party\nSoftware may require additional licensing of copyright and patents from\nthe owners of such, and (2) that distribution of any of the Licensed\nSoftware referencing any portion of a Third Party Software may require\nappropriate licensing from such third parties.\n\n\n7. LIMITED WARRANTY AND WARRANTY DISCLAIMER\n\nThe Licensed Software is licensed to Licensee \"as is\". To the maximum\nextent permitted by applicable law, Digia on behalf of itself and its\nsuppliers, disclaims all warranties and conditions, either express or\nimplied, including, but not limited to, implied warranties of\nmerchantability, fitness for a particular purpose, title and\nnon-infringement with regard to the Licensed Software.\n\n\n8. LIMITATION OF LIABILITY\n\nIf, Digia's warranty disclaimer notwithstanding, Digia is held liable to\nLicensee, whether in contract, tort or any other legal theory, based on\nthe Licensed Software, Digia's entire liability to Licensee and\nLicensee's exclusive remedy shall be, at Digia's option, either (A)\nreturn of the price Licensee paid for the Licensed Software, or (B)\nrepair or replacement of the Licensed Software, provided Licensee\nreturns to Digia all copies of the Licensed Software as originally\ndelivered to Licensee. Digia shall not under any circumstances be liable\nto Licensee based on failure of the Licensed Software if the failure\nresulted from accident, abuse or misapplication, nor shall Digia under\nany circumstances be liable for special damages, punitive or exemplary\ndamages, damages for loss of profits or interruption of business or for\nloss or corruption of data. Any award of damages from Digia to Licensee\nshall not exceed the total amount Licensee has paid to Digia in\nconnection with this Agreement.\n\n\n9. CONFIDENTIALITY\n\nEach party acknowledges that during the Term of this Agreement it shall\nhave access to information about the other party's business, business\nmethods, business plans, customers, business relations, technology, and\nother information, including the terms of this Agreement, that is\nconfidential and of great value to the other party, and the value of\nwhich would be significantly reduced if disclosed to third parties (the\n\"Confidential Information\"). Accordingly, when a party (the \"Receiving\nParty\") receives Confidential Information from another party (the\n\"Disclosing Party\"), the Receiving Party shall, and shall obligate its\nemployees and agents and employees and agents of its Affiliates to: (i)\nmaintain the Confidential Information in strict confidence; (ii) not\ndisclose the Confidential Information to a third party without the\nDisclosing Party's prior written approval; and (iii) not, directly or\nindirectly, use the Confidential Information for any purpose other than\nfor exercising its rights and fulfilling its responsibilities pursuant\nto this Agreement. Each party shall take reasonable measures to protect\nthe Confidential Information of the other party, which measures shall\nnot be less than the measures taken by such party to protect its own\nconfidential and proprietary information.\n\n\"Confidential Information\" shall not include information that (a) is or\nbecomes generally known to the public through no act or omission of the\nReceiving Party; (b) was in the Receiving Party's lawful possession\nprior to the disclosure hereunder and was not subject to limitations on\ndisclosure or use; (c) is developed by the Receiving Party without\naccess to the Confidential Information of the Disclosing Party or by\npersons who have not had access to the Confidential Information of the\nDisclosing Party as proven by the written records of the Receiving\nParty; (d) is lawfully disclosed to the Receiving Party without\nrestrictions, by a third party not under an obligation of\nconfidentiality; or (e) the Receiving Party is legally compelled to\ndisclose the information, in which case the Receiving Party shall assert\nthe privileged and confidential nature of the information and cooperate\nfully with the Disclosing Party to protect against and prevent\ndisclosure of any Confidential Information and to limit the scope of\ndisclosure and the dissemination of disclosed Confidential Information\nby all legally available means.\n\nThe obligations of the Receiving Party under this Section shall continue\nduring the Initial Term and for a period of five (5) years after\nexpiration or termination of this Agreement. To the extent that the\nterms of the Non-Disclosure Agreement between Digia and Licensee\nconflict with the terms of this Section 9, this Section 9 shall be\ncontrolling over the terms of the Non-Disclosure Agreement.\n\n\n10. GENERAL PROVISIONS\n\n10.1 No Assignment\n\nLicensee shall not be entitled to assign or transfer all or any of its\nrights, benefits and obligations under this Agreement without the prior\nwritten consent of Digia, which shall not be unreasonably withheld.\n\n10.2 Termination\n\nDigia may terminate the Agreement at any time immediately upon written\nnotice by Digia to Licensee if Licensee breaches this Agreement.\n\nUpon termination of this Agreement, Licensee shall return to Digia all\ncopies of Licensed Software that were supplied by Digia. All other\ncopies of Licensed Software in the possession or control of Licensee\nmust be erased or destroyed. An officer of Licensee must promptly\ndeliver to Digia a written confirmation that this has occurred.\n\n10.3 Surviving Sections\n\nAny terms and conditions that by their nature or otherwise reasonably\nshould survive a cancellation or termination of this Agreement shall\nalso be deemed to survive. Such terms and conditions include, but are\nnot limited to the following Sections: 2, 5, 6, 7, 8, 9, 10.2, 10.3, 10.4,\n10.5, 10.6, 10.7, and 10.8 of this Agreement. \n\n10.4 Entire Agreement\n\nThis Agreement constitutes the complete agreement between the parties\nand supersedes all prior or contemporaneous discussions,\nrepresentations, and proposals, written or oral, with respect to the\nsubject matters discussed herein, with the exception of the\nnon-disclosure agreement executed by the parties in connection with this\nAgreement (\"Non-Disclosure Agreement\"), if any, shall be subject to\nSection 9. No modification of this Agreement shall be effective unless\ncontained in a writing executed by an authorized representative of each\nparty. No term or condition contained in Licensee's purchase order shall\napply unless expressly accepted by Digia in writing. If any provision of\nthe Agreement is found void or unenforceable, the remainder shall remain\nvalid and enforceable according to its terms. If any remedy provided is\ndetermined to have failed for its essential purpose, all limitations of\nliability and exclusions of damages set forth in this Agreement shall\nremain in effect.\n\n10.5 Export Control\n\nLicensee acknowledges that the Licensed Software may be subject to\nexport control restrictions of various countries. Licensee shall fully\ncomply with all applicable export license restrictions and requirements\nas well as with all laws and regulations relating to the importation of\nthe Licensed Software and shall procure all necessary governmental\nauthorizations, including without limitation, all necessary licenses,\napprovals, permissions or consents, where necessary for the\nre-exportation of the Licensed Software.,\n\n10.6 Governing Law and Legal Venue\n\nThis Agreement shall be construed and interpreted in accordance with the\nlaws of Finland, excluding its choice of law provisions. Any disputes\narising out of or relating to this Agreement shall be resolved in\narbitration under the Rules of Arbitration of the Chamber of Commerce of\nHelsinki, Finland. The arbitration tribunal shall consist of one (1), or\nif either Party so requires, of three (3), arbitrators. The award shall\nbe final and binding and enforceable in any court of competent\njurisdiction. The arbitration shall be held in Helsinki, Finland and the\nprocess shall be conducted in the English language.\n\n10.7 No Implied License\n\nThere are no implied licenses or other implied rights granted under this\nAgreement, and all rights, save for those expressly granted hereunder,\nshall remain with Digia and its licensors. In addition, no licenses or\nimmunities are granted to the combination of the Licensed Software with\nany other software or hardware not delivered by Digia under this\nAgreement.\n\n10.8 Government End Users\n\nA \"U.S. Government End User\" shall mean any agency or entity of the\ngovernment of the United States. The following shall apply if Licensee\nis a U.S. Government End User. The Licensed Software is a \"commercial\nitem,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995),\nconsisting of \"commercial computer software\" and \"commercial computer\nsoftware documentation,\" as such terms are used in 48 C.F.R. 12.212\n(Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1\nthrough 227.7202-4 (June 1995), all U.S. Government End Users acquire\nthe Licensed Software with only those rights set forth herein. The\nLicensed Software (including related documentation) is provided to U.S.\nGovernment End Users: (a) only as a commercial end item; and (b) only\npursuant to this Agreement.", + "json": "digia-qt-preview.json", + "yaml": "digia-qt-preview.yml", + "html": "digia-qt-preview.html", + "license": "digia-qt-preview.LICENSE" + }, + { + "license_key": "digirule-foss-exception", + "category": "Copyleft Limited", + "spdx_license_key": "DigiRule-FOSS-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "DigiRule Solutions's FOSS License Exception Terms and Conditions\n\n 1. Definitions.\n\n \"Derivative Work\" means a derivative work, as defined under applicable copyright law, formed entirely from the Program and one or more FOSS Applications.\n\n \"FOSS Application\" means a free and open source software application distributed subject to a license listed in the section below titled \"FOSS License List.\"\n\n \"FOSS Notice\" means a notice placed by DigiRule Solutions in a copy of the Client Libraries stating that such copy of the Client Libraries may be distributed under DigiRule Solutions's or FOSS License Exception.\n\n \"Independent Work\" means portions of the Derivative Work that are not derived from the Program and can reasonably be considered independent and separate works.\n\n \"Program\" means a copy of DigiRule Solutions's Client Libraries that contain a FOSS Notice.\n 2. A FOSS application developer (\"you\" or \"your\") may distribute a Derivative Work provided that you and the Derivative Work meet all of the following conditions:\n 1. You obey the GPL in all respects for the Program and all portions (including modifications) of the Program included in the Derivative Work (provided that this condition does not apply to Independent Works);\n 2. The Derivative Work does not include any work licensed under the GPL other than the Program;\n 3. You distribute Independent Works subject to a license listed in the section below titled \"FOSS License List\";\n 4. You distribute Independent Works in object code or executable form with the complete corresponding machine-readable source code on the same medium and under the same FOSS license applying to the object code or executable forms;\n 5. All works that are aggregated with the Program or the Derivative Work on a medium or volume of storage are not derivative works of the Program, Derivative Work or FOSS Application, and must reasonably be considered independent and separate works.\n 3. DigiRule Solutions reserves all rights not expressly granted in these terms and conditions. If all of the above conditions are not met, then this FOSS License Exception does not apply to you or your Derivative Work.\n\nFOSS License List\nLicense Name Version(s)/Copyright Date\nRelease Early Certified Software\nAcademic Free License 2.0\nApache Software License 1.0/1.1/2.0\nApple Public Source License 2.0\nArtistic license From Perl 5.8.0\nBSD license \"July 22 1999\"\nCommon Development and Distribution License (CDDL) 1.0\nCommon Public License 1.0\nEclipse Public License 1.0\nGNU Library or \"Lesser\" General Public License (LGPL) 2.0/2.1/3.0\nJabber Open Source License 1.0\nMIT License (As listed in file MIT-License.txt) -\nMozilla Public License (MPL) 1.0/1.1\nOpen Software License 2.0\nOpenSSL license (with original SSLeay license) \"2003\" (\"1998\")\nPHP License 3.0/3.01\nPython license (CNRI Python License) -\nPython Software Foundation License 2.1.1\nSleepycat License \"1999\"\nUniversity of Illinois/NCSA Open Source License -\nW3C License \"2001\"\nX11 License \"2001\"\nZlib/libpng License -\nZope Public License 2.0", + "json": "digirule-foss-exception.json", + "yaml": "digirule-foss-exception.yml", + "html": "digirule-foss-exception.html", + "license": "digirule-foss-exception.LICENSE" + }, + { + "license_key": "divx-open-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-divx-open-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "DivX Open License\n================= \nVersion 1.0\n\nCopyright (C) 2001 Project Mayo. \n\nEveryone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nProvided below is our open source license agreement (\"License\") under which we provide the Codec (defined below) to you free of charge. Please read it carefully.\n\nBY USING, COPYING, MODIFYING, OR DISTRIBUTING THE CODEC OR A LARGER WORK (DEFINED BELOW), YOU INDICATE YOUR ACCEPTANCE OF THIS LICENSE TO DO SO, AND ALL ITS TERMS AND CONDITIONS.\n\nFor purposes of this Agreement, the \"Codec\" shall mean the OpenDivX compression/decompression software provided to you by Project Mayo (\"Project Mayo\") and any derivative work thereof, that is to say, a work containing the Codec or a portion of it, either verbatim or with modifications and/or translated into another language. A \"Larger Work\" shall mean any work including or integrating the Codec as an object file or linked library. \"Encoded Content\" shall mean any multimedia content encoded as output of the Codec, even if that Code is integrated into a Larger Work.\n\nPermission is granted to you to use the Codec for any personal, non-commercial purpose, and to copy it, alter it and redistribute it, subject to the following:\n\n1. You may use the Codec (and any Larger Work created by you) to create Encoded Content, and may use, copy, distribute, display and transmit that Encoded Content, provided that Encoded Content may not be used for direct commercialization, without written permission of Project Mayo. For the purposes of this License, direct commercialization includes uses where the Encoded Content is a primary or substantial product, regardless of the means of revenue generation (including, but not limited to direct pay, subscription, and advertising subsidization). Direct commercialization does not include personal or promotional use or uses where the Encoded Content is a peripheral element of a larger product.\n\n2. You may modify your copy or copies of the Codec or any portion of it, provided that you cause the modified files to carry prominent notices stating that you changed the files and the date of any such change.\n\n3. You may copy, distribute, display and transmit the Codec's source code, in any medium, subject to the following:\n\na. You conspicuously and appropriately publish appropriate copyright notice and disclaimer of all the notices that refer to this License and warranty; and give any other recipients of the\n\non each copy an warranty; keep intact to the absence of any Codec a copy of thisLicense along with the Codec.\n\nb. You must cause any Codec that you distribute or publish to be licensed as a whole at no charge to all third parties under the terms of this License. However, you may charge a fee for the physical act of transferring a copy of the Codec, and you may at your option offer warranty protection in exchange for a fee.\n\nc. In each instance in which you attribute ownership or authorship of the Codec you will include an acknowledgement in a location viewable to users of the Codec as follows: \"This product includes software developed by or derived from software developed by Project Mayo.\" In any event, the origin of the Codec must not be misrepresented; you must not claim sole authorship in the Codec.\n\nd. Each time you redistribute the Codec, the recipient automatically receives a license from Project Mayo to copy, distribute or modify the Codec subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein.\n\n4. You may copy and distribute the Codec in object code or executable form under the terms of Sections 3, provided that you also accompany it with the complete machine-readable source code, or information about where the source code can be obtained.\n\n5. You may incorporate the Codec into a Larger Work and distribute that Larger Work under terms of your choice, provided that:\n\na. The terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications.\n\nb. The terms are consistent with the limitations on use described in Section 1.\n\nc. You include an acknowledgement in a location viewable to users of a distribution of a Larger Work as follows: \"This product includes software developed by or derived from software developed by Project Mayo.\"\n\n6. Any MPEG-4\n\nCodec or Larger Works created by you must conform to the Video Standard.\n\n7. You Mayo before you use the names \"DivX;-)\", \"DivX\" or \"Project Mayo\" (or any names incorporating those names) or the file extensions \".divx\" or \".div\" to promote or endorse products derived from the Codec, including, but not limited to Larger Works.\n\n8. The Codec contains copyrighted materials that are proprietary to Project Mayo, and no rights are granted to you except as expressly provided herein. You may not copy, modify, sublicense, display, distribute or transmit the Codec except as expressly provided under this License. Any act or attempt to copy, modify, sublicense, display, distribute or transmit the Codec other than as permitted herein will automatically terminate your rights under this License. However, parties who have received copies from you under this License will not have their licenses terminated so long as such parties\n\nmust receive prior express written permission from Project\n\nremain in full compliance.\n\nTHIS CODEC IS PROVIDED BY PROJECT MAYO AND ITS CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL PROJECT MAYO OR ITS CONTRIBUTORS BE HELD 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.", + "json": "divx-open-1.0.json", + "yaml": "divx-open-1.0.yml", + "html": "divx-open-1.0.html", + "license": "divx-open-1.0.LICENSE" + }, + { + "license_key": "divx-open-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-divx-open-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "\"OpenDivX\" is licensed under the DivX Open License.\n\nDivX Open License\n=================\nVersion 2.1\n\nThis version of the DivX Open License supercedes any prior versions.\n\nCopyright (C) 2001 Project Mayo. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nProvided below is our open source license agreement (\"License\") under which we provide the Codec (defined below) to you free of charge. Please read it carefully.\n\nBY USING, COPYING, MODIFYING, OR DISTRIBUTING THE CODEC OR A LARGER WORK (DEFINED BELOW), YOU INDICATE YOUR ACCEPTANCE OF THIS LICENSE TO DO SO, AND ALL ITS TERMS AND CONDITIONS.\n\nFor purposes of this Agreement, the \"Codec\" shall mean the OpenDivX compression/decompression software provided to you by Project Mayo (\"Project Mayo\") and any derivative work thereof, that is to say, a work containing the Codec or a portion of it, either verbatim or with modifications and/or translated into another language. A \"Larger Work\" shall mean any work including or integrating the Codec as an object file or linked library. \"Encoded Content\" shall mean any multimedia content encoded as output of the Codec, even if that Codec is integrated into a Larger Work.\n\nPermission is granted to you to use the Codec for any purpose, and to copy it, alter it and redistribute it, subject to the following:\n\n1. You may modify your copy or copies of the Codec or any portion of it, provided that you cause the modified files to carry prominent notices stating that you changed the files and the date of any such change.\n\n2. You may copy, distribute, display and transmit the Codec's source code, in any medium, subject to the following:\n\na. You must 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 Codec a copy of this License along with the Codec.\n\nb. You must cause any Codec that you distribute or publish to be licensed as a whole at no charge to all third parties under the terms of this License. However, you may charge a fee for the physical act of transferring a copy of the Codec, and you may at your option offer warranty protection in exchange for a fee.\n\nc. In each instance in which you attribute ownership or authorship of the Codec you will include an acknowledgement in a location viewable to users of the Codec as follows: \"This product includes software developed by or derived from software developed by Project Mayo.\" In any event, the origin of the Codec must not be misrepresented; you must not claim sole authorship in the Codec.\n\nd. Each time you redistribute the Codec, the recipient automatically receives a license from Project Mayo to copy, distribute or modify the Codec subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein.\n\n3. You may copy and distribute the Codec in object code or executable form under the terms of Section 2, provided that you also accompany it with the complete machine-readable source code, or make such source-code freely and publicly available.\n\n4. You may incorporate the Codec into a Larger Work and distribute that Larger Work under terms of your choice, provided that:\n\na. The terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications.\n\nb. You include an acknowledgement in a location viewable to users of a distribution of a Larger Work as follows: \"This product includes software developed by or derived from software developed by Project Mayo.\"\n\n5. Any Codec or Larger Works created by you must conform to the MPEG-4 Video Standard, however modules of the Codec that do not derive from MoMuSys can be used and incorporated into a non-MPEG-4 conforming work that otherwise complies with this license.\n\n6. Except as provided in section 7 below, you must receive prior express written permission from Project Mayo before you use the names \"DivX;-)\" or \"DivX\" (or any names incorporating those names) or the file extensions \".divx\" or \".div\" to promote or endorse any products derived from the Codec, including, but not limited to Larger Works.\n\n7. You must use the \".divx\" file extension in any Encoded Content, when tools for this purpose are readily available. For Encoded Content used for a commercial purpose, you must prominently display the \"Encoded in DivX\" logo on the package of any Encoded Content in a manner immediately visible to viewers and you must include the \"Encoded in DivX\" video logo at the beginning of any Encoded Content when the means for such display are reasonably available.\n\n8. The Codec contains copyrighted materials that are proprietary to Project Mayo, and no rights are granted to you except as expressly provided herein. You may not copy, modify, sublicense, display, distribute or transmit the Codec except as expressly provided under this License. Any act or attempt to copy, modify, sublicense, display, distribute or transmit the Codec other than as permitted herein will automatically terminate your rights under this License. However, parties who have received copies from you under this License will not have their licenses terminated so long as such parties remain in full compliance.\n\nTHIS CODEC IS PROVIDED BY PROJECT MAYO AND ITS CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL PROJECT MAYO OR ITS CONTRIBUTORS BE HELD 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.\n \nWant to start or contribute to a project? Read this. \n \n* * *", + "json": "divx-open-2.1.json", + "yaml": "divx-open-2.1.yml", + "html": "divx-open-2.1.html", + "license": "divx-open-2.1.LICENSE" + }, + { + "license_key": "dl-de-by-1-0-de", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-1-0-de", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "DL-DE->BY-1.0\n\nDatenlizenz Deutschland \u2013 Namensnennung \u2013 Version 1.0\n\nJede Nutzung mit Quellenvermerk ist zul\u00e4ssig.\n\nVer\u00e4nderungen, Bearbeitungen, neue Gestaltungen oder sonstige Abwandlungen sind mit einem Ver\u00e4nderungshinweis im Quellenvermerk zu versehen oder der Quellenvermerk ist zu l\u00f6schen, sofern die datenhaltende Stelle dies verlangt.\n\nDer Bereitsteller stellt die Daten, Inhalte und Dienste mit der zur Erf\u00fcllung seiner \u00f6ffentlichen Aufgaben erforderlichen Sorgfalt zur Verf\u00fcgung. F\u00fcr die Daten, Inhalte und Dienste gelten in Bezug auf deren Verf\u00fcgbarkeit und deren Qualit\u00e4t die durch den Bereitsteller in den Metadaten oder sonstigen Beschreibungen zugewiesenen Spezifikationen und Qualit\u00e4tsmerkmale. Der Bereitsteller \u00fcbernimmt jedoch keine Gew\u00e4hr f\u00fcr die Richtigkeit und Vollst\u00e4ndigkeit der Daten und Inhalte sowie die dauerhafte Verf\u00fcgbarkeit der Dienste. Davon ausgenommen sind Schadensersatzanspr\u00fcche aufgrund einer Verletzung des Lebens, k\u00f6rperliche Unversehrtheit oder Gesundheit. Ebenfalls ausgenommen sind Sch\u00e4den, die auf Vorsatz oder grober Fahrl\u00e4ssigkeit beruhen.", + "json": "dl-de-by-1-0-de.json", + "yaml": "dl-de-by-1-0-de.yml", + "html": "dl-de-by-1-0-de.html", + "license": "dl-de-by-1-0-de.LICENSE" + }, + { + "license_key": "dl-de-by-1-0-en", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-1-0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "DL-DE->BY-1.0\n\nData licence Germany \u2013 attribution \u2013 Version 1.0\n\nAny use shall be permitted provided the source is mentioned.\n\nChanges, editing, new designs or other amendments shall be marked with information in the source note about relevant changes, or the source note must be deleted if the entity keeping the data requires so.\n\nThe provider makes available the data, contents and services with the diligence necessary for the discharge of its public tasks. With reference to their availability and quality, the specifications and quality features assigned by the provider in the meta-data or other descriptions apply to the data, contents and services. However, the provider does not assume any liability for the accuracy and completeness of data and contents and for permanent availability of services. Exempt from this are any claims for damage due to an injury to life, limb or health. Also exempt is damage based on wilfulness or gross negligence.", + "json": "dl-de-by-1-0-en.json", + "yaml": "dl-de-by-1-0-en.yml", + "html": "dl-de-by-1-0-en.html", + "license": "dl-de-by-1-0-en.LICENSE" + }, + { + "license_key": "dl-de-by-2-0-de", + "category": "Permissive", + "spdx_license_key": "DL-DE-BY-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-dl-de-by-2-0-de" + ], + "is_exception": false, + "is_deprecated": false, + "text": "DL-DE->BY-2.0\n\nDatenlizenz Deutschland \u2013 Namensnennung \u2013 Version 2.0\n\n(1) Jede Nutzung ist unter den Bedingungen dieser \u201eDatenlizenz Deutschland \u2013 Namensnennung \u2013 Version 2.0\" zul\u00e4ssig.\n\nDie bereitgestellten Daten und Metadaten d\u00fcrfen f\u00fcr die kommerzielle und nicht kommerzielle Nutzung insbesondere\n\n1. vervielf\u00e4ltigt, ausgedruckt, pr\u00e4sentiert, ver\u00e4ndert, bearbeitet sowie an Dritte \u00fcbermittelt werden;\n2. mit eigenen Daten und Daten Anderer zusammengef\u00fchrt und zu selbst\u00e4ndigen neuen Datens\u00e4tzen verbunden werden;\n3. in interne und externe Gesch\u00e4ftsprozesse, Produkte und Anwendungen in \u00f6ffentlichen und nicht \u00f6ffentlichen elektronischen Netzwerken eingebunden werden.\n\n(2) Bei der Nutzung ist sicherzustellen, dass folgende Angaben als Quellenvermerk enthalten sind:\n\nBezeichnung des Bereitstellers nach dessen Ma\u00dfgabe,\n\n1. der Vermerk \u201eDatenlizenz Deutschland \u2013 Namensnennung \u2013 Version 2.0\" oder \u201edl-de/by-2-0\" mit Verweis auf den Lizenztext unter www.govdata.de/dl-de/by-2-0 sowie\n2. einen Verweis auf den Datensatz (URI).\n3. Dies gilt nur soweit die datenhaltende Stelle die Angaben 1. bis 3. zum Quellenvermerk bereitstellt.\n\n(3) Ver\u00e4nderungen, Bearbeitungen, neue Gestaltungen oder sonstige Abwandlungen sind im Quellenvermerk mit dem Hinweis zu versehen, dass die Daten ge\u00e4ndert wurden.", + "json": "dl-de-by-2-0-de.json", + "yaml": "dl-de-by-2-0-de.yml", + "html": "dl-de-by-2-0-de.html", + "license": "dl-de-by-2-0-de.LICENSE" + }, + { + "license_key": "dl-de-by-2-0-en", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-2-0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "DL-DE->BY-2.0\n\nData licence Germany \u2013 attribution \u2013 version 2.0\n\n(1) Any use will be permitted provided it fulfils the requirements of this \"Data licence Germany \u2013 attribution \u2013 Version 2.0\".\n\nThe data and meta-data provided may, for commercial and non-commercial use, in particular\n\n1. be copied, printed, presented, altered, processed and transmitted to third parties;\n2. be merged with own data and with the data of others and be combined to form new and independent datasets;\n3. be integrated in internal and external business processes, products and applications in public and non-public electronic networks.\n\n(2) The user must ensure that the source note contains the following information:\n\n1. the name of the provider,\n2. the annotation \"Data licence Germany \u2013 attribution \u2013 Version 2.0\" or \"dl-de/by-2-0\" referring to the licence text available at www.govdata.de/dl-de/by-2-0, and\n3. a reference to the dataset (URI).\n\nThis applies only if the entity keeping the data provides the pieces of information 1-3 for the source note.\n\n(3) Changes, editing, new designs or other amendments must be marked as such in the source note.", + "json": "dl-de-by-2-0-en.json", + "yaml": "dl-de-by-2-0-en.yml", + "html": "dl-de-by-2-0-en.html", + "license": "dl-de-by-2-0-en.LICENSE" + }, + { + "license_key": "dl-de-by-nc-1-0-de", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-nc-1-0-de", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "DL-DE->BY-NC-1.0\n\nDatenlizenz Deutschland \u2013 Namensnennung \u2013 nicht kommerziell \u2013 Version 1.0\n\nJede Nutzung mit Quellenvermerk zu nicht kommerziellen Zwecken ist zul\u00e4ssig.\n\nVer\u00e4nderungen, Bearbeitungen, neue Gestaltungen oder sonstige Abwandlungen sind mit einem Ver\u00e4nderungshinweis im Quellenvermerk zu versehen oder der Quellenvermerk ist zu l\u00f6schen, sofern die datenhaltende Stelle dies verlangt.\n\nDer Bereitsteller stellt die Daten, Inhalte und Dienste mit der zur Erf\u00fcllung seiner \u00f6ffentlichen Aufgaben erforderlichen Sorgfalt zur Verf\u00fcgung. F\u00fcr die Daten, Inhalte und Dienste gelten in Bezug auf deren Verf\u00fcgbarkeit und deren Qualit\u00e4t die durch den Bereitsteller in den Metadaten oder sonstigen Beschreibungen zugewiesenen Spezifikationen und Qualit\u00e4tsmerkmale. Der Bereitsteller \u00fcbernimmt jedoch keine Gew\u00e4hr f\u00fcr die Richtigkeit und Vollst\u00e4ndigkeit der Daten und Inhalte sowie die dauerhafte Verf\u00fcgbarkeit der Dienste. Davon ausgenommen sind Schadensersatzanspr\u00fcche aufgrund einer Verletzung des Lebens, k\u00f6rperliche Unversehrtheit oder Gesundheit. Ebenfalls ausgenommen sind Sch\u00e4den, die auf Vorsatz oder grober Fahrl\u00e4ssigkeit beruhen.", + "json": "dl-de-by-nc-1-0-de.json", + "yaml": "dl-de-by-nc-1-0-de.yml", + "html": "dl-de-by-nc-1-0-de.html", + "license": "dl-de-by-nc-1-0-de.LICENSE" + }, + { + "license_key": "dl-de-by-nc-1-0-en", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-nc-1-0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "DL-DE->BY-NC-1.0\n\nData licence Germany \u2013 attribution \u2013 non-commercial \u2013 Version 1.0\n\nAny use for non-commercial purposes quoting the source for is permissible.\n\nChanges, editing, new designs or other amendments shall be marked with information in the source note about relevant changes, or the source note must be deleted if the entity keeping the data requires so.\n\nThe provider makes available the data, contents and services with the diligence necessary for the discharge of its public tasks. With reference to their availability and quality, the specifications and quality features assigned by the provider in the meta-data or other descriptions apply to the data, contents and services. However, the provider does not assume any liability for the accuracy and completeness of data and contents and for permanent availability of services. Exempt from this are any claims for damage due to an injury to life, limb or health. Also exempt is damage based on wilfulness or gross negligence.", + "json": "dl-de-by-nc-1-0-en.json", + "yaml": "dl-de-by-nc-1-0-en.yml", + "html": "dl-de-by-nc-1-0-en.html", + "license": "dl-de-by-nc-1-0-en.LICENSE" + }, + { + "license_key": "dmalloc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dmalloc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software for\nany purpose and without fee is hereby granted, provided that the\nabove copyright notice and this permission notice appear in all\ncopies, and that the name of Gray Watson not be used in advertising\nor publicity pertaining to distribution of the document or software\nwithout specific, written prior permission.\n\nGray Watson makes no representations about the suitability of the\nsoftware described herein for any purpose. \u00a0It is provided \"as is\"\nwithout express or implied warranty.", + "json": "dmalloc.json", + "yaml": "dmalloc.yml", + "html": "dmalloc.html", + "license": "dmalloc.LICENSE" + }, + { + "license_key": "dmtf-2017", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dmtf-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Distributed Management Task Force (DMTF) grants rights under copyright in\nthis software on the terms of the BSD 3-Clause License as set forth below; no\nother rights are granted by DMTF. This software might be subject to other rights\n(such as patent rights) of other parties.\n\n\n### Copyrights.\n\nCopyright (c) 2017, Contributing Member(s) of Distributed Management Task Force,\nInc.. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n* Neither the name of the Distributed Management Task Force (DMTF) nor the names\nof its contributors may be used to endorse or promote products derived from this\nsoftware without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\n### Patents.\n\nThis software may be subject to third party patent rights, including provisional\npatent rights (\"patent rights\"). DMTF makes no representations to users of the\nstandard as to the existence of such rights, and is not responsible to\nrecognize, disclose, or identify any or all such third party patent right,\nowners or claimants, nor for any incomplete or inaccurate identification or\ndisclosure of such rights, owners or claimants. DMTF shall have no liability to\nany party, in any manner or circumstance, under any legal theory whatsoever, for\nfailure to recognize, disclose, or identify any such third party patent rights,\nor for such party's reliance on the software or incorporation thereof in its\nproduct, protocols or testing procedures. DMTF shall have no liability to any\nparty using such software, whether such use is foreseeable or not, nor to any\npatent owner or claimant, and shall have no liability or responsibility for\ncosts or losses incurred if software is withdrawn or modified after publication,\nand shall be indemnified and held harmless by any party using the software from\nany and all claims of infringement by a patent owner for such use.\n\nDMTF Members that contributed to this software source code might have made\npatent licensing commitments in connection with their participation in the DMTF.\nFor details, see http://dmtf.org/sites/default/files/patent-10-18-01.pdf and\nhttp://www.dmtf.org/about/policies/disclosures.", + "json": "dmtf-2017.json", + "yaml": "dmtf-2017.yml", + "html": "dmtf-2017.html", + "license": "dmtf-2017.LICENSE" + }, + { + "license_key": "do-no-harm-0.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-do-no-harm-0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Do No Harm License\n\nVersion 0.1, August 2018\n\nhttps://github.com/raisely/NoHarm\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Preamble\n\nMost software today is developed with little to no thought of how it will be used, or the\nconsequences for our society and planet.\n\nAs software developers, we engineer the infrastructure of the 21st century. We recognise that our\ninfrastructure has great power to shape the world and the lives of those we share it with, and we\nchoose to consciously take responsibility for the social and environmental impacts of what we build.\n\nWe envisage a world free from injustice, inequality, and the reckless destruction of lives and our\nplanet. We reject slavery in all its forms, whether by force, indebtedness, or by algorithms that\nhack human vulnerabilities. We seek a world where humankind is at peace with our neighbours, nature,\nand ourselves. We want our work to enrich the physical, mental and spiritual wellbeing of all\nsociety.\n\nWe build software to further this vision of a just world, or at the very least, to not put that\nvision further from reach.\n\n2. Definitions\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by\nSections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is\ngranting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are\ncontrolled by, or are under common control with that entity. For the purposes of this definition,\n\"control\" means (i) the power, direct or indirect, to cause the direction or management of such\nentity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the\noutstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this\nLicense.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to\nsoftware source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a\nSource form, including but not limited to compiled object code, generated documentation, and\nconversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the\nLicense, as indicated by a copyright notice that is included in or attached to the work (an example\nis provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or\nderived from) the Work and for which the editorial revisions, annotations, elaborations, or other\nmodifications represent, as a whole, an original work of authorship. For the purposes of this\nLicense, Derivative Works shall not include works that remain separable from, or merely link (or\nbind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any\nmodifications or additions to that Work or Derivative Works thereof, that is intentionally submitted\nto Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity\nauthorized to submit on behalf of the copyright owner. For the purposes of this definition,\n\"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or\nits representatives, including but not limited to communication on electronic mailing lists, source\ncode control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor\nfor the purpose of discussing and improving the Work, but excluding communication that is\nconspicuously marked or otherwise designated in writing by the copyright owner as \"Not a\nContribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a\nContribution has been received by Licensor and subsequently incorporated within the Work.\n\n\"Forests\" shall mean 0.5 or more hectares of trees that were either planted more than 50 years ago\nor were not planted by humans or human made equipment.\n\n\"Deforestation\" shall mean the clearing, burning or destruction of 0.5 or more hectares of forests\nwithin a 1 year period.\n\n3. Grant of Copyright License\n\nSubject to the terms and conditions of this License, each Contributor hereby grants to You a\nperpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to\nreproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and\ndistribute the Work and such Derivative Works in Source or Object form.\n\n4. Grant of Patent License\n\nSubject to the terms and conditions of this License, each Contributor hereby grants to You a\nperpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this\nsection) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer\nthe Work, where such license applies only to those patent claims licensable by such Contributor that\nare necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s)\nwith the Work to which such Contribution(s) was submitted. If You institute patent litigation\nagainst any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or\na Contribution incorporated within the Work constitutes direct or contributory patent infringement,\nthen any patent licenses granted to You under this License for that Work shall terminate as of the\ndate such litigation is filed.\n\n5. Redistribution\n\nYou may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with\nor without modifications, and in Source or Object form, provided that You meet the following\nconditions:\n\n1. You must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n2. You must cause any modified files to carry prominent notices stating that You changed the\n files; and\n\n3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright,\n patent, trademark, and attribution notices from the Source form of the Work, excluding those\n notices that do not pertain to any part of the Derivative Works; and\n\n4. Neither the name of the copyright holder nor the names of its contributors may be used to endorse\n or promote products derived from this software without specific prior written permission; and\n\n5. This software must not be used by any organisation, website, product, or service that:\n 1. lobbies for, promotes, or derives a majority of income from actions that support or contribute\n to:\n * sex trafficking\n * human trafficking\n * slavery\n * indentured servitude\n * gambling\n * tobacco\n * adversely addictive behaviours\n * nuclear energy\n * warfare\n * weapons manufacturing\n * war crimes\n * violence (except when required to protect public safety)\n * burning of forests\n * deforestation\n * hate speech or discrimination based on age, gender, gender identity, race, sexuality, religion, nationality\n\n 2. lobbies against, or derives a majority of income from actions that discourage or frustrate:\n * peace\n * access to the rights set out in the Universal Declaration of Human Rights and the Convention on the Rights of the Child\n * peaceful assembly and association (including worker associations)\n * a safe environment or action to curtail the use of fossil fuels or prevent climate change\n * democratic processes\n\n ; and\n5. If the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative\n Works that You distribute must include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not pertain to any part of the\n Derivative Works, in at least one of the following places: within a NOTICE text file\n distributed as part of the Derivative Works; within the Source form or documentation, if\n provided along with the Derivative Works; or, within a display generated by the Derivative\n Works, if and wherever such third-party notices normally appear. The contents of the NOTICE\n file are for informational purposes only and do not modify the License. You may add Your own\n attribution notices within Derivative Works that You distribute, alongside or as an addendum to\n the NOTICE text from the Work, provided that such additional attribution notices cannot be\n construed as modifying the License.\n\nYou may add Your own copyright statement to Your modifications and may provide additional or\ndifferent license terms and conditions for use, reproduction, or distribution of Your modifications,\nor for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of\nthe Work otherwise complies with the conditions stated in this License.\n\n6. Submission of Contributions\n\nUnless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the\nWork by You to the Licensor shall be under the terms and conditions of this License, without any\nadditional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify\nthe terms of any separate license agreement you may have executed with Licensor regarding such\nContributions.\n\n7. Trademarks\n\nThis License does not grant permission to use the trade names, trademarks, service marks, or product\nnames of the Licensor, except as required for reasonable and customary use in describing the origin\nof the Work and reproducing the content of the NOTICE file.\n\n8. Disclaimer of Warranty\n\nUnless required by applicable law or agreed to in writing, Licensor provides the Work (and each\nContributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, either express or implied, including, without limitation, any warranties or conditions of\nTITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely\nresponsible for determining the appropriateness of using or redistributing the Work and assume any\nrisks associated with Your exercise of permissions under this License.\n\n9. Limitation of Liability\n\nIn no event and under no legal theory, whether in tort (including negligence), contract, or\notherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or\nagreed to in writing, shall any Contributor be liable to You for damages, including any direct,\nindirect, special, incidental, or consequential damages of any character arising as a result of this\nLicense or out of the use or inability to use the Work (including but not limited to damages for\nloss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial\ndamages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n10. Accepting Warranty or Additional Liability\n\nWhile redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee\nfor, acceptance of support, warranty, indemnity, or other liability obligations and/or rights\nconsistent with this License. However, in accepting such obligations, You may act only on Your own\nbehalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You\nagree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or\nclaims asserted against, such Contributor by reason of your accepting any such warranty or\nadditional liability.\n\nEND OF TERMS AND CONDITIONS\n\nCopyright (year) [owner](url).\n\nLicensed under the Do No Harm License, Version 0.1 (the \"License\"); you may not use this file except\nin compliance with the License. You may obtain a copy of the License.\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is\ndistributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\nimplied. See the License for the specific language governing permissions and limitations under the\nLicense.", + "json": "do-no-harm-0.1.json", + "yaml": "do-no-harm-0.1.yml", + "html": "do-no-harm-0.1.html", + "license": "do-no-harm-0.1.LICENSE" + }, + { + "license_key": "docbook", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-docbook", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the ``Software''), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nExcept as contained in this notice, the names of individuals\ncredited with contribution to this software shall not be used in\nadvertising or otherwise to promote the sale, use or other\ndealings in this Software without prior written authorization\nfrom the individuals in question.\n\nAny stylesheet derived from this Software that is publically\ndistributed will be identified with a different name and the\nversion strings in any derived Software will be changed so that\nno possibility of confusion between the derived package and this\nSoftware will exist.\n\nWarranty\n--------\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL NORMAN WALSH OR ANY OTHER\nCONTRIBUTOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.", + "json": "docbook.json", + "yaml": "docbook.yml", + "html": "docbook.html", + "license": "docbook.LICENSE" + }, + { + "license_key": "dom4j", + "category": "Permissive", + "spdx_license_key": "Plexus", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use of this software and associated documentation\n(\"Software\"), with or without modification, are permitted provided that the\nfollowing conditions are met:\n\n1. Redistributions of source code must retain copyright statements and\nnotices. Redistributions must also contain a copy of this document.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation\nand/or other materials provided with the distribution.\n\n3. The name \"DOM4J\" must not be used to endorse or promote products derived\nfrom this Software without prior written permission of MetaStuff, Ltd. For\nwritten permission, please contact dom4j-info@metastuff.com.\n\n4. Products derived from this Software may not be called \"DOM4J\" nor may\n\"DOM4J\" appear in their names without prior written permission of MetaStuff, Ltd. DOM4J\nis a registered trademark of MetaStuff, Ltd.\n\n5. Due credit should be given to the DOM4J Project - http://www.dom4j.org\n\nTHIS SOFTWARE IS PROVIDED BY METASTUFF, LTD. AND CONTRIBUTORS ``AS IS'' AND\nANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED.\n\nIN NO EVENT SHALL METASTUFF, LTD. OR ITS CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "dom4j.json", + "yaml": "dom4j.yml", + "html": "dom4j.html", + "license": "dom4j.LICENSE" + }, + { + "license_key": "dos32a-extender", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dos32a-extender", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "DOS/32 Advanced DOS Extender Software License\n=============================================\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n1. Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n\n3. The end-user documentation included with the redistribution, if any,\nmust include the following acknowledgment:\n\n\"This product uses DOS/32 Advanced DOS Extender technology.\"\n\nAlternately, this acknowledgment may appear in the software itself, if\nand wherever such third-party acknowledgments normally appear.\n\n4. Products derived from this software may not be called \"DOS/32A\" or\n\"DOS/32 Advanced\".\n\nTHIS SOFTWARE AND DOCUMENTATION IS PROVIDED \"AS IS\" AND ANY EXPRESSED\nOR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\nOTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "dos32a-extender.json", + "yaml": "dos32a-extender.yml", + "html": "dos32a-extender.html", + "license": "dos32a-extender.LICENSE" + }, + { + "license_key": "dotseqn", + "category": "Permissive", + "spdx_license_key": "Dotseqn", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This file may be freely transmitted and reproduced, but it may not be changed unless the name is changed also (except that you may freely change the paper-size option for \\documentclass).\n\nThis notice must be left intact.", + "json": "dotseqn.json", + "yaml": "dotseqn.yml", + "html": "dotseqn.html", + "license": "dotseqn.LICENSE" + }, + { + "license_key": "doug-lea", + "category": "Public Domain", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Doug Lea License\n\nDoug Lea - 8094a\n\nYour File: Barrier.java File: Barrier.java\n\nOriginally written by Doug Lea and released into the public domain. This may be used for any purposes whatsoever without acknowledgment.\n\nThanks for the assistance and support of Sun Microsystems Labs, and everyone contributing, testing, and using this code.\n\nHistory: Date Who What 11Jun1998 dl Create public version\n\nLea - 8094b\n\nYour File: BrokenBarrierException.java\n\nFile: BrokenBarrierException.java . Originally written by Doug Lea and released into the public domain. This may be used for any purposes whatsoever without acknowledgment.\n\nThanks for the assistance and support of Sun Microsystems Labs, and everyone contributing, testing, and using this code.\n\nHistory: Date Who WhatLea - 8094c\n\nYour File: CyclicBarrier.java File: CyclicBarrier.java\n\nOriginally written by Doug Lea and released into the public domain. This may be used for any purposes whatsoever without acknowledgment.\n\nThanks for the assistance and support of Sun Microsystems Labs, and everyone contributing, testing, and using this code.\n\nHistory: Date Who What 11Jul1998 dl Create public version 28Aug1998 dl minor code simplification\n\nLea - 80094d\n\nYour File: TimeoutException.java File: TimeoutException.java\n\nOriginally written by Doug Lea and released into the public domain. This may be used for any purposes whatsoever without acknowledgment.\n\nThanks for the assistance and support of Sun Microsystems Labs, and everyone contributing, testing, and using this code.", + "json": "doug-lea.json", + "yaml": "doug-lea.yml", + "html": "doug-lea.html", + "license": "doug-lea.LICENSE" + }, + { + "license_key": "douglas-young", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-douglas-young", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software for any purpose\nexcept publication and without fee is hereby granted, provided that the above\ncopyright notice appear in all copies of the software.", + "json": "douglas-young.json", + "yaml": "douglas-young.yml", + "html": "douglas-young.html", + "license": "douglas-young.LICENSE" + }, + { + "license_key": "dpl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-dpl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "DSTC Public License (DPL)\nVersion 1.1\n\n1. Definitions.\n\n1.0.1. \"Commercial Use\" means distribution or otherwise making the Covered Code available to a third party.\n\n1.1. \"Contributor\" means each entity that creates or contributes to the creation of Modifications.\n\n1.2. \"Contributor Version\" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor.\n\n1.3. \"Covered Code\" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof.\n\n1.4. \"Electronic Distribution Mechanism\" means a mechanism generally accepted in the software development community for the electronic transfer of data.\n\n1.5. \"Executable\" means Covered Code in any form other than Source Code.\n\n1.6. \"Initial Developer\" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A.\n\n1.7. \"Larger Work\" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License.\n\n1.8. \"License\" means this document.\n\n1.8.1. \"Licensable\" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein.\n\n1.9. \"Modifications\" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is:\n\nA. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications.\nB. Any new file that contains any part of the Original Code or previous Modifications.\n1.10. \"Original Code\" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License.\n\n1.10.1. \"Patent Claims\" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor.\n\n1.11. \"Source Code\" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge.\n\n1.12. \"You\" (or \"Your\") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, \"You\" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, \"control\" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2. Source Code License.\n\n2.1. The Initial Developer Grant.\n\nThe Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims:\n\n(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and\n\n(b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof).\n\n(c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License.\n\n(d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices.\n\n2.2. Contributor Grant.\n\nSubject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license\n\n(a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and\n\n(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination).\n\n(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code.\n\n(d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor.\n\n3. Distribution Obligations\n\n3.1. Application of License.\n\nThe Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5.\n\n3.2. Availability of Source Code.\n\nAny Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\n3.3. Description of Modifications.\n\nYou must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters\n\n(a) Third Party Claims.\n\nIf Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled \"LEGAL\" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained.\n\n(b) Contributor APIs.\n\nIf Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file.\n\n(c) Representations.\n\nContributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License.\n\n3.5. Required Notices.\n\nYou must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions.\n\nYou may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer.\n\n3.7. Larger Works.\n\nYou may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n\n5. Application of this License.\n\nThis License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n\n6.1. New Versions\n\nThe Distributed Systems Technology Centre (\"DSTC\") may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number.\n\n6.2. Effect of New Versions\n\nOnce Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by DSTC. No one other than DSTC has the right to modify the terms applicable to Covered Code created under this License.\n\n6.3. Derivative Works\n\nIf You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases \"DSTC\", \"DPL\" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the DSTC Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.)\n\n7. Disclaimer of Warranty.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. Termination.\n\n8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.\n\n8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as 'Participant') alleging that:\n\n(a) such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above.\n\n(b) any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant.\n\n8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination.\n\n9. Limitation of Liability.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. Government End Users.\n\nThe Covered Code is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n\n11. Miscellaneous.\n\nThis License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by Queensland, Australia law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in Australia, any litigation relating to this License shall be subject to the jurisdiction of Australian Courts, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n12. Responsibility for Claims.\n\nAs between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\n13. Multiple-licensed Code.\n\nInitial Developer may designate portions of the Covered Code as \"Multiple-Licensed\". \"Multiple-Licensed\" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the DPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A.\n\n14. High Risk Activities.\n\nThe Software is not fault-tolerant and is not designed, manufactured or intended for use or resale as on-line control equipment in hazardous environments requiring fail-safe performance, such as in the operation of nuclear facilities, aircraft navigation or communication systems, air traffic control, direct life support machines, or weapons systems, in which the failure of the Software could lead directly to death, personal injury, or severe physical or environmental damage (\"High Risk Activities\").\n\nEXHIBIT A - DSTC Public License.\n\nThe contents of this file are subject to the DSTC Public License Version 1.1 (the 'License'); you may not use this file except in compliance with the License.\n\nSoftware distributed under the License is distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.\n\nThe Original Code is .\n\nThe Initial Developer of the Original Code is . Portions created by are Copyright \u00a9 . All Rights Reserved.\n\nContributor(s): .\n\nAlternatively, the contents of this file may be used under the terms of the license (the \"[ ] License\"), in which case the provisions of [ ] License are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the [ ] License and not to allow others to use your version of this file under the DPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [ ] License. If you do not delete the provisions above, a recipient may use your version of this file under either the DPL or the [ ] License.'\n\n[NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.]", + "json": "dpl-1.1.json", + "yaml": "dpl-1.1.yml", + "html": "dpl-1.1.html", + "license": "dpl-1.1.LICENSE" + }, + { + "license_key": "dr-john-maddock", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Permission to use, copy, modify, distribute and sell this software\nand its documentation for any purpose is hereby granted without fee,\nprovided that the above copyright notice appear in all copies and\nthat both that copyright notice and this permission notice appear\nin supporting documentation. Dr John Maddock\nmakes no representations about the suitability of this software for\nany purpose. It is provided \"as is\" without express or implied warranty.", + "json": "dr-john-maddock.json", + "yaml": "dr-john-maddock.yml", + "html": "dr-john-maddock.html", + "license": "dr-john-maddock.LICENSE" + }, + { + "license_key": "drl-1.0", + "category": "Permissive", + "spdx_license_key": "DRL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Detection Rule License (DRL) 1.0\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis rule set and associated documentation files (the \"Rules\"), to deal in the\nRules without restriction, including without limitation the rights to use, copy,\nmodify, merge, publish, distribute, sublicense, and/or sell copies of the Rules,\nand to permit persons to whom the Rules are furnished to do so, subject to the\nfollowing conditions:\n\nIf you share the Rules (including in modified form), you must retain the\nfollowing if it is supplied within the Rules:\n\nidentification of the authors(s) (\"author\" field) of the Rule and any others\ndesignated to receive attribution, in any reasonable manner requested by the\nRule author (including by pseudonym if designated).\n\na URI or hyperlink to the Rule set or explicit Rule to the extent reasonably\npracticable\n\nindicate the Rules are licensed under this Detection Rule License, and include\nthe text of, or the URI or hyperlink to, this Detection Rule License to the\nextent reasonably practicable\n\nTHE RULES ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE RULES OR THE USE OR OTHER DEALINGS IN THE RULES.", + "json": "drl-1.0.json", + "yaml": "drl-1.0.yml", + "html": "drl-1.0.html", + "license": "drl-1.0.LICENSE" + }, + { + "license_key": "dropbear", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dropbear", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The majority of code is written by Matt Johnston, under the license below.\n\nPortions of the client-mode work are (c) 2004 Mihnea Stoenescu, under the\nsame license:\n\nCopyright (c) 2002-2008 Matt Johnston\nPortions copyright (c) 2004 Mihnea Stoenescu\nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n=====\n\nLibTomCrypt and LibTomMath are written by Tom St Denis, and are Public Domain.\n\n=====\n\nsshpty.c is taken from OpenSSH 3.5p1, \n Copyright (c) 1995 Tatu Ylonen , Timo Rinne ,Espoo, Finland\n\n All rights reserved\n \"As far as I am concerned, the code I have written for this software\n can be used freely for any purpose. Any derived versions of this\n software must be clearly marked as such, and if the derived work is\n incompatible with the protocol description in the RFC file, it must be\n called by a name other than \"ssh\" or \"Secure Shell\". \"\n\n=====\n\nloginrec.c is written primarily by Andre Lucas, Jason Downs, Theo de Raadt: \nCopyright (c) 2000 Andre Lucas. \nPortions copyright (c) 1998 Todd C. Miller\nPortions copyright (c) 1996 Jason Downs\nPortions Copyright (c) 1996 Theo de Raadt.\n\nloginrec.h is written by Andre Lucas:\nCopyright (c) 2000 Andre Lucas.\n\natomicio.h,atomicio.c written by Theo de Raadt (1995-1999) \nCopyright (c) 1995,1999 Theo de Raadt. \n\nAnd are licensed under the following terms:\n\nCopyright (c) , \n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions 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.\n\nTHIS 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.\n\n\nand strlcat() is (c) Todd C. Miller (included in util.c -- ) are from OpenSSH 3.6.1p2, and are licensed\nunder the BSD-Modified license: \n\n\nCopyright (c) 1998 Todd C. Miller , < OWNER >\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: \n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. \nRedistributions 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. \nNeither the name of the < ORGANIZATION > nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. \n\nTHIS 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.\n\n\n=====\n\nImport code in keyimport.c is modified from PuTTY's import.c, licensed as\nfollows:\n\nPuTTY is copyright 1997-2003 Simon Tatham.\n\nPortions copyright Robert de Bath, Joris van Rantwijk, Delian\nDelchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry,\nJustin Bradford, and CORE SDI S.A.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation files\n(the \"Software\"), to deal in the Software without restriction,\nincluding without limitation the rights to use, copy, modify, merge,\npublish, distribute, sublicense, and/or sell copies of the Software,\nand to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE\nFOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\nCONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "dropbear.json", + "yaml": "dropbear.yml", + "html": "dropbear.html", + "license": "dropbear.LICENSE" + }, + { + "license_key": "dropbear-2016", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dropbear-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Dropbear contains a number of components from different sources, hence there\nare a few licenses and authors involved. All licenses are fairly \nnon-restrictive.\nThe majority of code is written by Matt Johnston, under the license below.\n\nPortions of the client-mode work are (c) 2004 Mihnea Stoenescu, under the\nsame license:\n\nCopyright (c) 2002-2015 Matt Johnston\nPortions copyright (c) 2004 Mihnea Stoenescu\nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE 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\nAUTHORS 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.\n\n=====\n\nLibTomCrypt and LibTomMath are written by Tom St Denis, and are Public Domain.\n\n=====\n\nsshpty.c is taken from OpenSSH 3.5p1, \n Copyright (c) 1995 Tatu Ylonen , Espoo, Finland\n All rights reserved\n \"As far as I am concerned, the code I have written for this software can be used freely for any purpose. Any derived versions of this\n software must be clearly marked as such, and if the derived work is incompatible with the protocol description in the RFC file, it must be\n called by a name other than \"ssh\" or \"Secure Shell\". \"\n\n=====\n\nloginrec.c\nloginrec.h\natomicio.h\natomicio.c\nand strlcat() (included in util.c) are from OpenSSH 3.6.1p2, and are licensed under the 2 point BSD license.\n\nloginrec is written primarily by Andre Lucas, atomicio.c by Theo de Raadt.\n\nstrlcat() is (c) Todd C. Miller\n\n=====\n\nImport code in keyimport.c is modified from PuTTY's import.c, licensed as follows:\n\nPuTTY is copyright 1997-2003 Simon Tatham.\n\nPortions copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry,\nJustin Bradford, and CORE SDI S.A.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files\n(the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge,\npublish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT \nLIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\nCONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n=====\n\ncurve25519-donna:\n\n/* Copyright 2008, Google Inc.\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are\n * met:\n *\n * * Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * * Redistributions in binary form must reproduce the above\n * copyright notice, this list of conditions and the following disclaimer\n * in the documentation and/or other materials provided with the\n * distribution.\n * * Neither the name of Google Inc. nor the names of its\n * contributors may be used to endorse or promote products derived from\n * this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\n * curve25519-donna: Curve25519 elliptic curve, public key function\n *\n * http://code.google.com/p/curve25519-donna/\n *\n * Adam Langley \n *\n * Derived from public domain C code by Daniel J. Bernstein \n *\n * More information about curve25519 can be found here\n * http://cr.yp.to/ecdh.html\n *\n * djb's sample implementation of curve25519 is written in a special assembly\n * language called qhasm and uses the floating point registers.\n *\n * This is, almost, a clean room reimplementation from the curve25519 paper. It\n * uses many of the tricks described therein. Only the crecip function is taken\n * from the sample implementation.\n */", + "json": "dropbear-2016.json", + "yaml": "dropbear-2016.yml", + "html": "dropbear-2016.html", + "license": "dropbear-2016.LICENSE" + }, + { + "license_key": "dsdp", + "category": "Permissive", + "spdx_license_key": "DSDP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "COPYRIGHT NOTIFICATION\n\n(C) COPYRIGHT 2004 UNIVERSITY OF CHICAGO\n\nThis program discloses material protectable under copyright laws of the United\nStates. Permission to copy and modify this software and its documentation is\nhereby granted, provided that this notice is retained thereon and on all copies\nor modifications. The University of Chicago makes no representations as to the\nsuitability and operability of this software for any purpose. It is provided \"as\nis\"; without express or implied warranty. Permission is hereby granted to use,\nreproduce, prepare derivative works, and to redistribute to others, so long as\nthis original copyright notice is retained. Any publication resulting from\nresearch that made use of this software should cite this document.\n\n This software was authored by:\n\n Steven J. Benson Mathematics and Computer Science Division Argonne National\n Laboratory Argonne IL 60439\n\n Yinyu Ye Department of Management Science and Engineering Stanford\n University Stanford, CA U.S.A\n\n Any questions or comments on the software may be directed to\n benson@mcs.anl.gov or yinyu-ye@stanford.edu\n\nArgonne National Laboratory with facilities in the states of Illinois and Idaho,\nis owned by The United States Government, and operated by the University of\nChicago under provision of a contract with the Department of Energy.\n\nDISCLAIMER \n\nTHIS PROGRAM WAS PREPARED AS AN ACCOUNT OF WORK SPONSORED BY AN AGENCY OF THE\nUNITED STATES GOVERNMENT. NEITHER THE UNITED STATES GOVERNMENT NOR ANY AGENCY\nTHEREOF, NOR THE UNIVERSITY OF CHICAGO, NOR ANY OF THEIR EMPLOYEES OR OFFICERS,\nMAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LEGAL LIABILITY OR\nRESPONSIBILITY FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF ANY INFORMATION,\nAPPARATUS, PRODUCT, OR PROCESS DISCLOSED, OR REPRESENTS THAT ITS USE WOULD NOT\nINFRINGE PRIVATELY OWNED RIGHTS. REFERENCE HEREIN TO ANY SPECIFIC COMMERCIAL\nPRODUCT, PROCESS, OR SERVICE BY TRADE NAME, TRADEMARK, MANUFACTURER, OR\nOTHERWISE, DOES NOT NECESSARILY CONSTITUTE OR IMPLY ITS ENDORSEMENT,\nRECOMMENDATION, OR FAVORING BY THE UNITED STATES GOVERNMENT OR ANY AGENCY\nTHEREOF. THE VIEW AND OPINIONS OF AUTHORS EXPRESSED HEREIN DO NOT NECESSARILY\nSTATE OR REFLECT THOSE OF THE UNITED STATES GOVERNMENT OR ANY AGENCY THEREOF.", + "json": "dsdp.json", + "yaml": "dsdp.yml", + "html": "dsdp.html", + "license": "dsdp.LICENSE" + }, + { + "license_key": "dtree", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dtree", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright (c) 2002-2003 Geir Landr\n\nThis script can be used freely as long as all copyright messages are intact.", + "json": "dtree.json", + "yaml": "dtree.yml", + "html": "dtree.html", + "license": "dtree.LICENSE" + }, + { + "license_key": "dual-bsd-gpl", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Redistribution and use in source and binary forms, with or without \nmodification, are permitted provided that the following conditions \nare met: \n1. Redistributions of source code must retain the above copyright \n notice, this list of conditions and the following disclaimer. \n2. Redistributions in binary form must reproduce the above copyright \n notice, this list of conditions and the following disclaimer in the \n documentation and/or other materials provided with the distribution. \n3. The name of the author may not be used to endorse or promote products \n derived from this software without specific prior written permission. \n\nAlternatively, this software may be distributed under the terms of the \nGNU General Public License (\"GPL\") version 2 as published by the Free \nSoftware Foundation. \n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR \nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES \nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. \nIN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT \nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, \nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY \nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT \n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF \nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "dual-bsd-gpl.json", + "yaml": "dual-bsd-gpl.yml", + "html": "dual-bsd-gpl.html", + "license": "dual-bsd-gpl.LICENSE" + }, + { + "license_key": "dual-commercial-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-dual-commercial-gpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This file is licensed under GNU General Public license, except that if you have entered \ninto a signed, written license agreement with the copyright holder covering this file, \nthat agreement applies to this file instead of the GNU General Public License.\n\nThis file is free software: you can redistribute and/or modify it under the\nterms of the GNU General Public License, Version 2, as published by the Free\nSoftware Foundation, unless a different license applies as provided above.\n\nThis program is distributed in the hope that it will be useful, but AS-IS and\nWITHOUT ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT. Redistribution,\nexcept as permitted by the GNU General Public License or another license\nagreement between you and the copyright holder, is prohibited.\n\nYou should have received a copy of the GNU General Public License, Version 2\nalong with this file; if not, see .", + "json": "dual-commercial-gpl.json", + "yaml": "dual-commercial-gpl.yml", + "html": "dual-commercial-gpl.html", + "license": "dual-commercial-gpl.LICENSE" + }, + { + "license_key": "duende-sla-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-duende-sla-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Duende Software, Inc. \u2013 Rev. 01/2022\nDUENDE\u2122 SOFTWARE LICENSE AGREEMENT\n\nThis Software License Agreement (\u201cAgreement\u201d) is a legal agreement between you (either\nas an individual or a single entity (\u201cYou\u201d)) and Duende Software, Inc. (\u201cLicensor\u201d) for certain\nsoftware application libraries as set forth on the quote or invoice (\u201cApplications\u201d) provided to\nYou by Licensor (\u201cQuote\u201d), associated \u201conline\u201d, electronic or hard copy user documentation,\nand any upgrades, modified versions, bug fixes, additions and improvements thereof that\nLicensor may make available during the Term of the Agreement (collectively referred to as\nthe \u201cSoftware\u201d).\n\nReferences to \u201cYou\u201d herein shall refer to You, and/or the entity on whose behalf You are using\nthe Software, and all individual developer-users of the Software on behalf of such entity.\n\nPlease note: this Agreement is not intended for affiliate use outside the scope of this\nAgreement. If you intend to purchase the software for use by Your Affiliates please contact\nlicensor for the appropriate fees and license before proceeding. \u201cAffiliate\u201d means any parent\nor subsidiary entity that controls or is controlled by You. \"Control\" means the direct or indirect\nownership of more than fifty percent (50%) of the voting securities of an entity or possession\nof the right to vote more than fifty percent (50%) of the voting interest in the ordinary direction\nof the entity's affairs. An Affiliate shall only be considered such for so long as such control\nexists.\n\nIf the Software is acquired by or on behalf of a unit or agency of the U.S. Government\n(the \u201cGovernment\u201d), the Government agrees that the Software is \u201ccommercial\ncomputer software\u201d or \u201ccommercial computer software documentation\u201d and that,\nabsent a written agreement to the contrary, the Government\u2019s rights with respect to\nthe Software is limited by the terms of this Agreement, pursuant to applicable FAR\nand/or DFARS and successor regulations.\n\nBY DOWNLOADING, INSTALLING, OR OTHERWISE ACCESSING OR USING THE\nSOFTWARE, YOU AGREE THAT YOU HAVE READ, UNDERSTOOD, AND AGREE\nTO BE BOUND BY THIS AGREEMENT. IF YOU DO NOT AGREE, YOU MAY NOT\nUSE THE SOFTWARE OR ACCESS THE SOURCE CODE.\n\nAccordingly, You and Licensor acknowledge and agree as follows:\n\n1. LIMITED LICENSE\n\nA. Subject to your complete and ongoing compliance with all the terms and\nconditions set forth in this Agreement, including without limitation, payment of\nany applicable fees and all license limitations and restrictions set forth herein,\nLicensor grants You the following limited, non-exclusive, non-transferable, nonsublicensable, revocable license to use, and (where applicable) authorize your\nemployees and other personnel to use, the unmodified Software in binary form,\ninternally solely in connection with the specific Software Application(s) and\nusage as set forth on the Quote and/or purchase terms selected and paid for in\nconjunction with downloading the Software.\n\nB. The License granted in Paragraph A above does not include the right to\nsublicense, however, you may redistribute the Software upon payment of\nadditional license fees under a separate redistribution license agreement for the\nSoftware.\n\n2. RESTRICTIONS\n\nA. You acknowledge that the license granted in Paragraph 1A does not include any\nright to: (i) redistribute, sell, lease, license, or modify any portion of the\nSoftware; (ii) reproduce, distribute, publicly display, or publicly perform any part\nof the Software; (iii) modify the source code of any portion of the Software (other\nthan modifications made in a non-production environment); or (iv) remove,\nobscure, interfere with or circumvent any feature of the Software, including\nwithout limitation any copyright or other intellectual property notices, security,\nor access control mechanism.\n\nB. You may not use the Software for any purpose other than deploying it on one or\nmore servers in a manner for which the Software is expressly designed.\n\nC. The Software may only be hosted on the machines, servers, and internetworking\ndevices within Your computer network or systems.\n\nD. You may not sell, license, distribute, copy, modify, publicly perform or display,\ntransmit, publish, edit, adapt, create derivative works from, or make any use of\nthe Software except as expressly authorized in this Agreement.\n\nE. If You are prohibited under applicable law from using the Software, You may not\nuse it, and You will comply with all applicable laws and regulations (including\nwithout limitation laws and regulations related to export controls) in connection\nwith your use of the Software.\n\n3. LICENSE FEES\n\nA. If you wish to use the Software in a production environment, you may download\nand use the Software for the Term upon payment of the appropriate license fee\nas indicated on the Quote in accordance with the terms and conditions of this\nAgreement.\n\nB. If you wish to use the Software in a non-production environment, you may\ndownload and access the source and/or binaries at no charge solely for testing\nand evaluation purposes and in accordance with all license limitations and\nrestrictions set forth in this Agreement.\n\n4. SUPPORT\n\nA. Licensor will only provide support in accordance with the support guidelines\nposted at https://duendesoftware.com/products/support. Licensor will use\nDuende Software, Inc. \u2013 Rev. 01/2022 Page 3 of 5\ncommercially reasonable efforts to resolve all reasonable support requests, but\nmakes no guarantee that all requests can be finally resolved.\n\nB. Licensor shall not provide support for: instances of the Software deployed on\nunsupported platforms as specified in the documentation accompanying the\nSoftware; support requests not resulting from the ordinary use of the Software; or\nsupport requests resulting from the use of third-party products.\n\nC. Licensor will not provide You with any individual or customized support services\nunder this Agreement.\n\nD. A support contract may be purchased separately from Licensor for individual or\ncustomized support services with varying higher service levels than those\nprovided herein.\n\n5. EXPORT CONTROLS. You represent and warrant that the Software will not be\nshipped, transferred or exported into any country or used in any manner prohibited by\nthe United States Export Administration Act or any other export laws, restrictions or\nregulations (collectively, \u201cExport Laws\u201d). In addition, if the Software is identified as\nexport controlled items under the Export Laws, You represent and warrant that You\nare not a citizen, or otherwise located within, an embargoed nation (including without\nlimitation Cuba, Iran, North Korea, Sudan, or Syria) and that You are not otherwise\nprohibited under the Export Laws from receiving the Software. Any use in violation of\nthe foregoing limitations and restrictions is strictly prohibited, and unlicensed.\n\n6. RESERVATION OF RIGHTS. The Software is owned by Licensor and licensed, not\nsold, to You. The Software is protected by copyright laws and international copyright\ntreaties, as well as other intellectual property laws and treaties. Except for the limited\nrights of use granted herein, all right, title and interest to the Software, including patent,\ncopyright, and trademark rights in and to the Software, the accompanying printed\nmaterials, and any copies of the Software are owned by Licensor.\n\n7. CONFIDENTIALITY. The Software is the confidential and proprietary information of\nLicensor, and You may not, during the term or thereafter, disclose it to any third party,\nor to use it for any purpose other than as expressly provided herein, without a separate\nwritten agreement with Licensor authorizing You to do so.\n\n8. FEEDBACK. If You provide Licensor with any comments, bug reports, feedback,\nenhancements, or modifications proposed or suggested by You for the Software\n(\u201cFeedback\u201d), such Feedback is provided on a non-confidential basis (notwithstanding\nany notice to the contrary You may include in any accompanying communication), and\nLicensor shall have the right to use such Feedback at its discretion, including, but not\nlimited to the incorporation of such suggested changes into future releases of the\nSoftware. You hereby grant Licensor a perpetual, irrevocable, transferable,\nsublicensable, nonexclusive license under all rights necessary to incorporate and use\nyour Feedback for any purpose, including to make and sell any products and services.\nDuende Software, Inc. \u2013 Rev. 01/2022 Page 4 of 5\n\n9. TERM AND TERMINATION. This Agreement will remain in effect for the time\nframe specified in your Quote issued to you by Licensor and commences on the\ndate You: (i) paid the applicable license fee for the Software; or (ii) downloaded\nthe Software as a non-production user. However, Licensor may terminate this\nAgreement upon 30 days\u2019 prior written notice allowing You the opportunity to cure, for\nany actual or suspected misuse or abuse by You of the Software or any material\nviolation of this Agreement. You may also choose to terminate this Agreement for any\nreason by ceasing all use of the Software. Following any termination of this Agreement,\nYou will not be provided any refund, in whole or in part, and You must immediately\ncease use of the Software, remove or destroy any instances of the Software and/or\ncopies thereof, and be able to show evidence of such cessation to Licensor upon\nrequest. The terms of this Agreement that expressly are to, or by implication ought to,\nsurvive, will survive this Agreement. Notwithstanding the foregoing, should Licensor\ncompletely cease to do business (excluding transactions in connection with a sale of\nall or substantially all of Licensor\u2019s assets or stock, or in connection with a merger or\nother corporate reorganization), the term of this Agreement shall be perpetual as to\nYour custom application previously deployed by You prior to the date of such cessation\nof business and without the need for any further payments in accordance with all\nlimitations and restrictions in this Agreement.\n\n10. WARRANTY DISCLAIMER AND LIMITATION OF LIABILITY.\nThe Software and any support are provided on an \u201cas is\u201d basis, without warranty\nof any kind. To the maximum extent permitted by applicable law, Licensor\ndisclaims all warranties and conditions, express, implied, statutory or otherwise,\nincluding but not limited to implied warranties or conditions of fitness for a\nparticular purpose, merchantability, title, quality, results, and non-infringement.\nUnder no circumstances will Licensor be liable for any consequential, special,\nindirect, incidental or punitive damages whatsoever arising out of the use or\ninability to use the Software, even if Licensor has been advised of the possibility\nof such damages, and notwithstanding any failure of essential purpose of any\nlimited remedy. In no event will Licensor\u2019s aggregate liability for damages arising\nout of this Agreement or the terms exceed the amount paid by you for the\nSoftware. Some jurisdictions do not allow limitations on implied warranties or\nthe exclusion or limitation of liability for consequential or incidental damages,\nso the above limitations may not apply to You. In such an event, the above\nlimitations and exclusions will be enforced to the maximum extent permitted\nunder applicable law.\n\n11. INDEMNITY. You agree to indemnify Licensor and its affiliates, officers, directors,\nsuppliers, licensors, and other customers from and against any and all liability and\ncosts (including reasonable attorneys\u2019 fees) incurred by such parties in connection with\nor arising out of your use or misuse of the Software.\nDuende Software, Inc. \u2013 Rev. 01/2022 Page 5 of 5\n\n12. GOVERNING LAW; VENUE. This Agreement shall be governed by and interpreted\nin accordance with the laws of the State of New York, USA, excluding its law on conflict\nof laws. You hereby consent to submit to personal jurisdiction and venue exclusively\nin the federal and state courts of the State of New York, USA.\n\n13. GENERAL PROVISIONS.\n\nA. You will be responsible for the payment of all taxes, duties, levies, and other charges\nincluding, but not limited to sales, use, gross receipts, excise, VAT, ad valorem and\nany other taxes, any withholdings or deductions, import and custom taxes, any duties,\nor any other charges imposed by any taxing authority (excluding any taxes based on\nthe Licensor\u2019s income) with respect to the fees payable to Licensor in connection with\nthis Agreement.\n\nB. This Agreement contains the entire agreement between You and Licensor,\nsupersedes any other agreement or discussions, oral and written, concerning\nthe subject matter hereof, and may not be modified or amended except by a\nwritten amendment signed by both parties.\n\nC. If any provision of this Agreement is declared invalid, illegal, or unenforceable\nby a court of competent jurisdiction, such provision shall, as to that jurisdiction,\nbe ineffective only to the extent of such invalidity, illegality, or unenforceability,\nand shall not in any manner affect the remaining provisions hereof in such\njurisdiction or render any other provision of this Agreement invalid, illegal, or\nunenforceable in any other jurisdiction.\n\nD. You may provide Licensor with a valid purchase order; provided, however,\npurchase orders are to be used solely for your accounting purposes and any\nterms and conditions contained therein shall be deemed null and void with\nrespect to the parties\u2019 relationship and this License Agreement. Any such\npurchase order provided to Licensor shall in no way relieve you of any obligation\nentered into pursuant to this License Agreement including, but not limited to,\nyour obligation to pay Licensor the appropriate license fees.\n\nE. You agree that in the event of a breach or threatened breach of this Agreement,\nLicensor may suffer irreparable harm and will be entitled to specific\nperformance, and preliminary and/or permanent injunctive relief to enforce this\nAgreement without the need to post bond and that such relief shall be in addition\nto, and not in lieu of, any monetary damages or other relief a court of competent\njurisdiction, whether at law or equity, may award.\n\nF. This Agreement shall supersede any provisions of the Uniform Commercial\nCode as adopted or made applicable to the Software in any competent\njurisdiction. This Agreement shall not be governed by the United Nations\nConvention on Contracts for the International Sale of Goods.", + "json": "duende-sla-2022.json", + "yaml": "duende-sla-2022.yml", + "html": "duende-sla-2022.html", + "license": "duende-sla-2022.LICENSE" + }, + { + "license_key": "dune-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-dune-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, you may use the DUNE source files as part of a software\nlibrary or application without restriction. Specifically, if other files\ninstantiate templates or use macros or inline functions from one or more of the\nDUNE source files, or you compile one or more of the DUNE source files and link\nthem with other files to produce an executable, this does not by itself cause\nthe resulting executable to be covered by the GNU General Public License. This\nexception does not however invalidate any other reasons why the executable file\nmight be covered by the GNU General Public License.", + "json": "dune-exception.json", + "yaml": "dune-exception.yml", + "html": "dune-exception.html", + "license": "dune-exception.LICENSE" + }, + { + "license_key": "dvipdfm", + "category": "Permissive", + "spdx_license_key": "dvipdfm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "A modified version of this file may be distributed, but it should be distributed\nwith a *different* name. Changed files must be distributed *together with a\ncomplete and unchanged* distribution of these files.", + "json": "dvipdfm.json", + "yaml": "dvipdfm.yml", + "html": "dvipdfm.html", + "license": "dvipdfm.LICENSE" + }, + { + "license_key": "dwtfnmfpl-3.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dwtfnmfpl-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This project is licensed under the terms of the\nDO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE, version 3,\nas it follows:\n\n0. You just DO WHAT THE FUCK YOU WANT TO.\n\n1. Do not hold the author(s), creator(s), developer(s) or\n distributor(s) liable for anything that happens or goes wrong\nwith your use of the work.", + "json": "dwtfnmfpl-3.0.json", + "yaml": "dwtfnmfpl-3.0.yml", + "html": "dwtfnmfpl-3.0.html", + "license": "dwtfnmfpl-3.0.LICENSE" + }, + { + "license_key": "dynamic-drive-tou", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dynamic-drive-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Dynamic Drive DHTML scripts- Terms of Use\n\nUnless indicated otherwise by the credit, all scripts on this site are original\nscripts written by the authors of Dynamic Drive, and are protected by both US\nand international copyright laws. The below lists the terms of use users of\nDynamic Drive must agree to before using the programs/scripts (Last updated: May\n22nd, 06):\n\n1. Users may use any DHTML scripts offered for download on Dynamic Drive, free\nof charge, on both personal and commercial web sites. This includes web\ndesigners who wish to use our DHTML scripts in their paid web site projects.\n\n2. You may modify our scripts to customize them based on your needs.\n\n3. Users may NOT, however, redistribute or repost/ resell for download any DHTML\nscript found on Dynamic Drive. Redistribution is defined as re-offering our\nscripts for download in any fashion, whether on a competing web site, an\napplication that generates code snippets, or a CD-ROM collection of\nCSS/JavaScript codes etc. Some examples of what is acceptable and what is not\nare:\n\nAcceptable: \n\n-Use our DHTML scripts on any personal or commercial web site to aid in its\nfunctionality/ usability.\n\n-As a web designer, use our DHTML scripts in your paid projects for your client\nweb sites. \n\n-As a software developer, use our DHTML scripts within a application/ program as\npart of its interface, such as a CSS menu being used as the program's navigation\ninterface. The program itself can be distributable. \n\nIn all cases above, the credit notice within the script must remain intact and\nunaltered.\n\nNot Acceptable: \n\n-Put our DHTML scripts on another script library or webmaster type site for\nothers to download. \n\n-Use our DHTML scripts in any type of service or application whereby our codes\nare part of the product offerings themselves. \n\n-Put our DHTML scripts in any other types of medium for direct redistribution,\nsuch as a CD-ROM that consists of, but not limited to, webmaster codes and web\ngraphics.\n\n4. Users agree not to remove/ edit the credit notice within the DHTML source\ncode, or claim the code to be work of their own. What is the copyright notice?\nIt appears inside the \n\n5. Users agree not to use scripts found on Dynamic Drive for illegal purposes,\nor on pages containing illegal material.\n\n6. Users agree not to hold Dynamic Drive liable for any damages resulted from\nproper or improper use of any of the scripts found on Dynamic Drive. Use at your\nown risk.\n\n7. Users are not required to link back to Dynamic Drive to use our DHTML\nscripts, as much as they are appreciated. :)\n\nBy using any of the scripts on Dynamic Drive, you understand that you have read\nand agreed to the above usage terms. These terms will be strictly enforced, and\nviolators will face criminal charges. Don't say our lawyer didn't warn you!", + "json": "dynamic-drive-tou.json", + "yaml": "dynamic-drive-tou.yml", + "html": "dynamic-drive-tou.html", + "license": "dynamic-drive-tou.LICENSE" + }, + { + "license_key": "dynarch-developer", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-dynarch-developer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PRODUCT: hmenu\n Version: 2.9\n License type: developer\n Download date:\n LICENSEE:\n Registration key: \n\n\nDefinitions of terms\n\n \"PRODUCT\" refers to the product offered by Dynarch.com (the object of this license agreement).\n \"LICENSEE\" refers to the one that has downloaded the PRODUCT package. Sometimes we might use \"you\" as a synonym.\n\nOther terms that might be used\n\n \"Application\", \"Software Application\" or \"Web Application\": will refer to an application developed by the LICENSEE. An Application has a finite scope.\n \"Library\", \"Software Library\": refers to a possibly reusable collection of tools intended to help developers build Applications.\n\nHere is an example to make clear the distinction between an Application and a Library: the Opera Web Browser is an Application built on top of the Qt Toolkit. While Opera has a finite scope (it is a Web browser), Qt is also used in a lot of other applications, for instance the KDE Desktop. Qt is a Library for developers, while Opera is a general audience Application.\n\nLicense agreement\n\nLICENSEE is NOT allowed to modify or remove any copyright notices from any of the PRODUCT files.\n\nSubject to the terms of this agreement, Dynarch.com grants LICENSEE a non-exclusive, non-transferable, license to use the PRODUCT in any number of Applications developed by the LICENSEE, as long as the PRODUCT does not make the main nor major functionality of any of those Applications.\n\nThe LICENSEE may distribute such Applications incorporating the PRODUCT without paying royalty fees to Dynarch.com.\n\nThe PRODUCT can NOT be redistributed as part of a Software Library. Only Applications having a finite purpose are supported by this license.\n\nAll rights not specifically granted to LICENSEE herein are retained by Dynarch.com.\n\nTHIS 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.\n\n\u00a9 Dynarch.com 2004. All rights reserved.", + "json": "dynarch-developer.json", + "yaml": "dynarch-developer.yml", + "html": "dynarch-developer.html", + "license": "dynarch-developer.LICENSE" + }, + { + "license_key": "dynarch-linkware", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-dynarch-linkware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PRODUCT: hmenu\n Version: 2.9\n License type: linkware\n Download date:\n LICENSEE:\n Registration key: \n\nDefinitions of terms\n\n \"PRODUCT\" refers to the product offered by Dynarch.com (the object of this license agreement).\n \"LICENSEE\" refers to the one that has downloaded the PRODUCT package. Sometimes we might use \"you\" as a synonym.\n\nLicense agreement\n\nLICENSEE is NOT allowed to modify or remove any copyright notices from any of the PRODUCT files.\n\nSubject to the terms of this agreement, Dynarch.com grants you a non-exclusive, non-transferable, free license to use the PRODUCT on Sites that you own, under the following terms and conditions:\n\n(1) Non-commercial. Sites that use the PRODUCT under this license (\"Sites\") must be non-profit; examples of accepted websites are free or hobby Websites, blogs, charity organizations or universities, or websites of open source projects.\n\nSites may contain advertising, as long as they are not published for the specific purpose of showing ads. We will not accept spam sites.\n\nThe Sites may not include:\n\n Pornography, adult, or mature content\n Gambling or casino-related content\n\nIf you are not sure that your Site follows our policy, you must ask us.\n\n(2) Link back. Sites using the PRODUCT under this license must link back to the PRODUCT home page, in each page where the PRODUCT is used. The link must be visible and direct.\n\nExample of acceptable code:\n\n\n DHTML Menu by Dynarch.com\n\n\nYou can include a target=\"_blank\" attribute if you wish.\n\nYou may place the link anywhere in the page, the main requirement is that it must be visible and that it should point directly to the PRODUCT page\u2014server-side redirects are not acceptable.\n\nPlease refer to the file linkware.html in the PRODUCT package for more details on this, after you download the PRODUCT.\n\n(3) No Intranet. This free license does not cover usage on your Intranet\u2014for that you need to purchase a commercial license.\n\n(4) No distribution. You may not distribute the PRODUCT nor any derivative works to any third party. You may not distribute free nor commercial Software applications or Libraries that incorporate the PRODUCT.\n\nAll rights not specifically granted to LICENSEE herein are retained by Dynarch.com.\n\nTHIS 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.\n\n\u00a9 Dynarch.com 2003-2005. All rights reserved.", + "json": "dynarch-linkware.json", + "yaml": "dynarch-linkware.yml", + "html": "dynarch-linkware.html", + "license": "dynarch-linkware.LICENSE" + }, + { + "license_key": "ecfonts-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ecfonts-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "WARRANTY\n\nThere is NO WARRANTY for the ec fonts, to the extent permitted by \napplicable law. Except when otherwise stated in writing, the authors\nprovides the program `as is' without warranty of any kind, either\nexpressed or implied, including, but not limited to, the implied\nwarranties of merchantability and fitness for a particular purpose.\nThe entire risk as to the quality and performance of the program is\nwith you. Should the program prove defective, you assume the cost of\nall necessary servicing, repair or correction.\n\nIn no event unless required by applicable law or agreed to in writing\nwill the authors be liable to you for damages, including any general, \nspecial, incidental or consequential damages arising out of any use of the\nprogram or out of inability to use the program (including but not\nlimited to loss of data or data being rendered inaccurate or losses\nsustained by you or by third parties as a result of a failure of the\nprogram to operate with any other programs), even if such holder or\nother party has been advised of the possibility of such damages.\n\n\nDISTRIBUTION\n\nRedistribution of unchanged files is allowed provided that all files\nlisted in the file 00files.txt are distributed, including this file.\n\nIf you receive only some of these files from someone, complain!\n\nThe distribution of changed versions of certain files included in\nthe ec fonts, and the re-use of code from those files, are allowed\nunder the following restrictions:\n\n * It is allowed only if the legal notice in the file does not\n expressly forbid it.\n \n * You rename the file before you make any changes to it, unless the\n file explicitly says that renaming is not required. Any such changed\n files should be distributed under conditions that ensure that those\n files, and any files derived from them, will never be redistributed\n under the names used by the original files in the ec fonts.\n\n * The names of the modified fonts must not start with the two letters\n `ec' or `tc'.\n\n * You change the `error report address' so that we do not get error\n reports for files not maintained by us.", + "json": "ecfonts-1.0.json", + "yaml": "ecfonts-1.0.yml", + "html": "ecfonts-1.0.html", + "license": "ecfonts-1.0.LICENSE" + }, + { + "license_key": "ecl-1.0", + "category": "Permissive", + "spdx_license_key": "ECL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Educational Community License 1.0\n\nThis Educational Community License (the \"License\") applies\nto any original work of authorship (the \"Original Work\") whose owner\n(the \"Licensor\") has placed the following notice immediately following\nthe copyright notice for the Original Work:\n\nCopyright (c) \n\nLicensed under the Educational Community License version 1.0\n\nThis Original Work, including software, source code, documents,\nor other related items, is being provided by the copyright holder(s)\nsubject to the terms of the Educational Community License. By\nobtaining, using and/or copying this Original Work, you agree that you\nhave read, understand, and will comply with the following terms and\nconditions of the Educational Community License:\n\nPermission to use, copy, modify, merge, publish, distribute, and\nsublicense this Original Work and its documentation, with or without\nmodification, for any purpose, and without fee or royalty to the\ncopyright holder(s) is hereby granted, provided that you include the\nfollowing on ALL copies of the Original Work or portions thereof,\nincluding modifications or derivatives, that you make:\n\n\nThe full text of the Educational Community License in a location viewable to\nusers of the redistributed or derivative work.\n\n\nAny pre-existing intellectual property disclaimers, notices, or terms and\nconditions.\n\n\nNotice of any changes or modifications to the Original Work, including the\ndate the changes were made.\n\n\nAny modifications of the Original Work must be distributed in such a manner as\nto avoid any confusion with the Original Work of the copyright holders.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nThe name and trademarks of copyright holder(s) may NOT be used\nin advertising or publicity pertaining to the Original or Derivative\nWorks without specific, written prior permission. Title to copyright in\nthe Original Work and any associated documentation will at all times\nremain with the copyright holders.", + "json": "ecl-1.0.json", + "yaml": "ecl-1.0.yml", + "html": "ecl-1.0.html", + "license": "ecl-1.0.LICENSE" + }, + { + "license_key": "ecl-2.0", + "category": "Permissive", + "spdx_license_key": "ECL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " Educational Community License\n Version 2.0, April 2007\n http://www.osedu.org/licenses/\n\nThe Educational Community License version 2.0 (\"ECL\") consists of the Apache 2.0\nlicense, modified to change the scope of the patent grant in section 3 to be\nspecific to the needs of the education communities using this license. The\noriginal Apache 2.0 license can be found at:\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and\ndistribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright\nowner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities\nthat control, are controlled by, or are under common control with that entity.\nFor the purposes of this definition, \"control\" means (i) the power, direct or\nindirect, to cause the direction or management of such entity, whether by\ncontract or otherwise, or (ii) ownership of fifty percent (50%) or more of the\noutstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising\npermissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including\nbut not limited to software source code, documentation source, and configuration\nfiles.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or\ntranslation of a Source form, including but not limited to compiled object code,\ngenerated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made\navailable under the License, as indicated by a copyright notice that is included\nin or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that\nis based on (or derived from) the Work and for which the editorial revisions,\nannotations, elaborations, or other modifications represent, as a whole, an\noriginal work of authorship. For the purposes of this License, Derivative Works\nshall not include works that remain separable from, or merely link (or bind by\nname) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version\nof the Work and any modifications or additions to that Work or Derivative Works\nthereof, that is intentionally submitted to Licensor for inclusion in the Work\nby the copyright owner or by an individual or Legal Entity authorized to submit\non behalf of the copyright owner. For the purposes of this definition,\n\"submitted\" means any form of electronic, verbal, or written communication sent\nto the Licensor or its representatives, including but not limited to\ncommunication on electronic mailing lists, source code control systems, and\nissue tracking systems that are managed by, or on behalf of, the Licensor for\nthe purpose of discussing and improving the Work, but excluding communication\nthat is conspicuously marked or otherwise designated in writing by the copyright\nowner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf\nof whom a Contribution has been received by Licensor and subsequently\nincorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this\nLicense, each Contributor hereby grants to You a perpetual, worldwide, non-\nexclusive, no-charge, royalty-free, irrevocable copyright license to reproduce,\nprepare Derivative Works of, publicly display, publicly perform, sublicense, and\ndistribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License,\neach Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-\ncharge, royalty-free, irrevocable (except as stated in this section) patent\nlicense to make, have made, use, offer to sell, sell, import, and otherwise\ntransfer the Work, where such license applies only to those patent claims\nlicensable by such Contributor that are necessarily infringed by their\nContribution(s) alone or by combination of their Contribution(s) with the Work\nto which such Contribution(s) was submitted. If You institute patent litigation\nagainst any entity (including a cross-claim or counterclaim in a lawsuit)\nalleging that the Work or a Contribution incorporated within the Work\nconstitutes direct or contributory patent infringement, then any patent licenses\ngranted to You under this License for that Work shall terminate as of the date\nsuch litigation is filed. Any patent license granted hereby with respect to\ncontributions by an individual employed by an institution or organization is\nlimited to patent claims where the individual that is the author of the Work is\nalso the inventor of the patent claims licensed, and where the organization or\ninstitution has the right to grant such license under applicable grant and\nresearch funding agreements. No other express or implied licenses are granted.\n\n4. Redistribution.\n\nYou may reproduce and distribute copies of the Work or Derivative Works thereof\nin any medium, with or without modifications, and in Source or Object form,\nprovided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of\nthis License; and\n\nYou must cause any modified files to carry prominent notices stating that You\nchanged the files; and\n\nYou must retain, in the Source form of any Derivative Works that You distribute,\nall copyright, patent, trademark, and attribution notices from the Source form\nof the Work, excluding those notices that do not pertain to any part of the\nDerivative Works; and\n\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any\nDerivative Works that You distribute must include a readable copy of the\nattribution notices contained within such NOTICE file, excluding those notices\nthat do not pertain to any part of the Derivative Works, in at least one of the\nfollowing places: within a NOTICE text file distributed as part of the\nDerivative Works; within the Source form or documentation, if provided along\nwith the Derivative Works; or, within a display generated by the Derivative\nWorks, if and wherever such third-party notices normally appear. The contents of\nthe NOTICE file are for informational purposes only and do not modify the\nLicense. You may add Your own attribution notices within Derivative Works that\nYou distribute, alongside or as an addendum to the NOTICE text from the Work,\nprovided that such additional attribution notices cannot be construed as\nmodifying the License.\n\nYou may add Your own copyright statement to Your modifications and may provide\nadditional or different license terms and conditions for use, reproduction, or\ndistribution of Your modifications, or for any such Derivative Works as a whole,\nprovided Your use, reproduction, and distribution of the Work otherwise complies\nwith the conditions stated in this License.\n\n5. Submission of Contributions.\n\nUnless You explicitly state otherwise, any Contribution intentionally submitted\nfor inclusion in the Work by You to the Licensor shall be under the terms and\nconditions of this License, without any additional terms or conditions.\nNotwithstanding the above, nothing herein shall supersede or modify the terms of\nany separate license agreement you may have executed with Licensor regarding\nsuch Contributions.\n\n6. Trademarks.\n\nThis License does not grant permission to use the trade names, trademarks,\nservice marks, or product names of the Licensor, except as required for\nreasonable and customary use in describing the origin of the Work and\nreproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty.\n\nUnless required by applicable law or agreed to in writing, Licensor provides the\nWork (and each Contributor provides its Contributions) on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,\nincluding, without limitation, any warranties or conditions of TITLE, NON-\nINFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are\nsolely responsible for determining the appropriateness of using or\nredistributing the Work and assume any risks associated with Your exercise of\npermissions under this License.\n\n8. Limitation of Liability.\n\nIn no event and under no legal theory, whether in tort (including negligence),\ncontract, or otherwise, unless required by applicable law (such as deliberate\nand grossly negligent acts) or agreed to in writing, shall any Contributor be\nliable to You for damages, including any direct, indirect, special, incidental,\nor consequential damages of any character arising as a result of this License or\nout of the use or inability to use the Work (including but not limited to\ndamages for loss of goodwill, work stoppage, computer failure or malfunction, or\nany and all other commercial damages or losses), even if such Contributor has\nbeen advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability.\n\nWhile redistributing the Work or Derivative Works thereof, You may choose to\noffer, and charge a fee for, acceptance of support, warranty, indemnity, or\nother liability obligations and/or rights consistent with this License. However,\nin accepting such obligations, You may act only on Your own behalf and on Your\nsole responsibility, not on behalf of any other Contributor, and only if You\nagree to indemnify, defend, and hold each Contributor harmless for any liability\nincurred by, or claims asserted against, such Contributor by reason of your\naccepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Educational Community License to your work\n\nTo apply the Educational Community License to your work, attach\nthe following boilerplate notice, with the fields enclosed by\nbrackets \"[]\" replaced with your own identifying information.\n(Don't include the brackets!) The text should be enclosed in the\nappropriate comment syntax for the file format. We also recommend\nthat a file or class name and description of purpose be included on\nthe same \"printed page\" as the copyright notice for easier\nidentification within third-party archives.\n\n\tCopyright [yyyy] [name of copyright owner] Licensed under the\n\tEducational Community License, Version 2.0 (the \"License\"); you may\n\tnot use this file except in compliance with the License. You may\n\tobtain a copy of the License at\n\t\n\thttp://www.osedu.org/licenses/ECL-2.0\n\n\tUnless required by applicable law or agreed to in writing,\n\tsoftware distributed under the License is distributed on an \"AS IS\"\n\tBASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express\n\tor implied. See the License for the specific language governing\n\tpermissions and limitations under the License.", + "json": "ecl-2.0.json", + "yaml": "ecl-2.0.yml", + "html": "ecl-2.0.html", + "license": "ecl-2.0.LICENSE" + }, + { + "license_key": "eclipse-sua-2001", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2001", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Eclipse.org Software User Agreement\n\n1st November, 2001\n\nECLIPSE.ORG MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY \"CONTENT\"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\nUnless otherwise indicated, all Content made available by Eclipse.org is provided to you under the terms and conditions of the Common Public License Version 0.5. For purposes of the Common Public License, \"Program\" will mean the Content.\n\nContent includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse.org CVS repository (\"Repository\") and subsequently released as project builds (\"Builds\").\n\nContent as files may contain portions distributed under different license agreements and/or notices. Details about these license agreements and notices are contained in \"about.html\" files (\"Abouts\"). Abouts are located in the Repository in the root directory for each CVS module. Abouts in Builds may be in the program root directory and plug-in directories. Such Abouts govern your use of the associated software in that directory, not the Common Public License.\n\nYou must agree to the terms and conditions of the Common Public License Version 0.5 and all Abouts contained in any Content and any other terms and conditions that are provided with the Content, if any.\n\nContent may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted.", + "json": "eclipse-sua-2001.json", + "yaml": "eclipse-sua-2001.yml", + "html": "eclipse-sua-2001.html", + "license": "eclipse-sua-2001.LICENSE" + }, + { + "license_key": "eclipse-sua-2002", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2002", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Eclipse.org Software User Agreement\n\n17th June, 2002\n\nECLIPSE.ORG MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY \"CONTENT\"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\nUnless otherwise indicated, all Content made available by Eclipse.org is provided to you under the terms and conditions of the Common Public License Version 1.0 (\"CPL\"). A copy of the CPL is provided with this Content and is also available at http://www.eclipse.org/legal/cpl-v10.html. For purposes of the CPL, \"Program\" will mean the Content.\n\nContent includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse.org CVS repository (\"Repository\") in CVS modules (\"Modules\") and made available as downloadable archives (\"Downloads\").\n\nContent may be apportioned into plug-ins (\"Plug-ins\"), plug-in fragments (\"Fragments\"), and features (\"Features\"). A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Files named \"feature.xml\" may contain a list of the names and version numbers of the Plug-ins and/or Fragments associated with a Feature. Plug-ins and Fragments are located in directories named \"plugins\" and Features are located in directories named \"features\".\n\nFeatures may also include other Features (\"Included Features\"). Files named \"feature.xml\" may contain a list of the names and version numbers of Included Features.\n\nThe terms and conditions governing Plug-ins and Fragments should be contained in files named \"about.html\" (\"Abouts\"). The terms and conditions governing Features and Included Features should be contained in files named \"license.html\" (\"Feature Licenses\"). Abouts and Feature Licenses may be located in any directory of a Download or Module including, but not limited to the following locations:\n\n The top-level (root) directory\n Plug-in and Fragment directories\n Subdirectories of the directory named \"src\" of certain Plug-ins\n Feature directories\n\nNote: if a Feature made available by Eclipse.org is installed using the Eclipse Update Manager, you must agree to a license (\"Feature Update License\") during the installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or inform you where you can locate them. Feature Update Licenses may be found in the \"license\" property of files named \"feature.properties\". Such Abouts, Feature Licenses and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in that directory. The Abouts, Feature Licenses and Feature Update Licenses may refer to the CPL or other license agreements, notices or terms and conditions . It is your obligation to read and accept all such all terms and conditions prior to use of the Content. If no About, Feature License or Feature Update License is provided, please contact Eclipse.org to determine what terms and conditions govern that particular Content.\n\nContent may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted.", + "json": "eclipse-sua-2002.json", + "yaml": "eclipse-sua-2002.yml", + "html": "eclipse-sua-2002.html", + "license": "eclipse-sua-2002.LICENSE" + }, + { + "license_key": "eclipse-sua-2003", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2003", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Eclipse.org Software User Agreement\n\n14th August, 2003\nUsage Of Content\n\nECLIPSE.ORG MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY \"CONTENT\"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.\nApplicable Licenses\n\nUnless otherwise indicated, all Content made available by Eclipse.org is provided to you under the terms and conditions of the Common Public License Version 1.0 (\"CPL\"). A copy of the CPL is provided with this Content and is also available at http://www.eclipse.org/legal/cpl-v10.html. For purposes of the CPL, \"Program\" will mean the Content.\n\nContent includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse.org CVS repository (\"Repository\") in CVS modules (\"Modules\") and made available as downloadable archives (\"Downloads\").\n\nContent may be apportioned into plug-ins (\"Plug-ins\"), plug-in fragments (\"Fragments\"), and features (\"Features\"). A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Files named \"feature.xml\" may contain a list of the names and version numbers of the Plug-ins and/or Fragments associated with a Feature. Plug-ins and Fragments are located in directories named \"plugins\" and Features are located in directories named \"features\".\n\nFeatures may also include other Features (\"Included Features\"). Files named \"feature.xml\" may contain a list of the names and version numbers of Included Features.\n\nThe terms and conditions governing Plug-ins and Fragments should be contained in files named \"about.html\" (\"Abouts\"). The terms and conditions governing Features and Included Features should be contained in files named \"license.html\" (\"Feature Licenses\"). Abouts and Feature Licenses may be located in any directory of a Download or Module including, but not limited to the following locations:\n\n The top-level (root) directory\n Plug-in and Fragment directories\n Subdirectories of the directory named \"src\" of certain Plug-ins\n Feature directories\n\nNote: if a Feature made available by Eclipse.org is installed using the Eclipse Update Manager, you must agree to a license (\"Feature Update License\") during the installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or inform you where you can locate them. Feature Update Licenses may be found in the \"license\" property of files named \"feature.properties\". Such Abouts, Feature Licenses and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in that directory.\n\nTHE ABOUTS, FEATURE LICENSES AND FEATURE UPDATE LICENSES MAY REFER TO THE CPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\n Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n IBM Public License 1.0 (available at http://oss.software.ibm.com/developerworks/opensource/license10.html)\n Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\nIT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License or Feature Update License is provided, please contact Eclipse.org to determine what terms and conditions govern that particular Content.\nCryptography\n\nContent may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted.", + "json": "eclipse-sua-2003.json", + "yaml": "eclipse-sua-2003.yml", + "html": "eclipse-sua-2003.html", + "license": "eclipse-sua-2003.LICENSE" + }, + { + "license_key": "eclipse-sua-2004", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2004", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Eclipse.org Software User Agreement\n\n15th June, 2004\nUsage Of Content\n\nECLIPSE.ORG MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY \"CONTENT\"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.\nApplicable Licenses\n\nUnless otherwise indicated, all Content made available by Eclipse.org is provided to you under the terms and conditions of the Common Public License Version 1.0 (\"CPL\"). A copy of the CPL is provided with this Content and is also available at http://www.eclipse.org/legal/cpl-v10.html. For purposes of the CPL, \"Program\" will mean the Content.\n\nContent includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse.org CVS repository (\"Repository\") in CVS modules (\"Modules\") and made available as downloadable archives (\"Downloads\").\n\nContent may be apportioned into plug-ins (\"Plug-ins\"), plug-in fragments (\"Fragments\"), and features (\"Features\"). A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Files named \"feature.xml\" may contain a list of the names and version numbers of the Plug-ins and/or Fragments associated with a Feature. Plug-ins and Fragments are located in directories named \"plugins\" and Features are located in directories named \"features\".\n\nFeatures may also include other Features (\"Included Features\"). Files named \"feature.xml\" may contain a list of the names and version numbers of Included Features.\n\nThe terms and conditions governing Plug-ins and Fragments should be contained in files named \"about.html\" (\"Abouts\"). The terms and conditions governing Features and Included Features should be contained in files named \"license.html\" (\"Feature Licenses\"). Abouts and Feature Licenses may be located in any directory of a Download or Module including, but not limited to the following locations:\n\n The top-level (root) directory\n Plug-in and Fragment directories\n Subdirectories of the directory named \"src\" of certain Plug-ins\n Feature directories\n\nNote: if a Feature made available by Eclipse.org is installed using the Eclipse Update Manager, you must agree to a license (\"Feature Update License\") during the installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or inform you where you can locate them. Feature Update Licenses may be found in the \"license\" property of files named \"feature.properties\". Such Abouts, Feature Licenses and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in that directory.\n\nTHE ABOUTS, FEATURE LICENSES AND FEATURE UPDATE LICENSES MAY REFER TO THE CPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\n Eclipse Public License Version 1.0 (available at http://www.eclipse.org/legal/epl-v10.html)\n Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n IBM Public License 1.0 (available at http://oss.software.ibm.com/developerworks/opensource/license10.html)\n Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\nIT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License or Feature Update License is provided, please contact Eclipse.org to determine what terms and conditions govern that particular Content.\nCryptography\n\nContent may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted.", + "json": "eclipse-sua-2004.json", + "yaml": "eclipse-sua-2004.yml", + "html": "eclipse-sua-2004.html", + "license": "eclipse-sua-2004.LICENSE" + }, + { + "license_key": "eclipse-sua-2005", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2005", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Eclipse Foundation Software User Agreement\n\nMarch 17, 2005\nUsage Of Content\n\nTHE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY \"CONTENT\"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.\nApplicable Licenses\n\nUnless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 (\"EPL\"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, \"Program\" will mean the Content.\n\nContent includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse.org CVS repository (\"Repository\") in CVS modules (\"Modules\") and made available as downloadable archives (\"Downloads\").\n\n Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins (\"Plug-ins\"), plug-in fragments (\"Fragments\"), and features (\"Features\").\n Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java\u2122 ARchive) in a directory named \"plugins\".\n A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named \"features\". Within a Feature, files named \"feature.xml\" may contain a list of the names and version numbers of the Plug-ins and/or Fragments associated with that Feature.\n Features may also include other Features (\"Included Features\"). Within a Feature, files named \"feature.xml\" may contain a list of the names and version numbers of Included Features.\n\nThe terms and conditions governing Plug-ins and Fragments should be contained in files named \"about.html\" (\"Abouts\"). The terms and conditions governing Features and Included Features should be contained in files named \"license.html\" ( \"Feature Licenses\"). Abouts and Feature Licenses may be located in any directory of a Download or Module including, but not limited to the following locations:\n\n The top-level (root) directory\n Plug-in and Fragment directories\n Inside Plug-ins and Fragments packaged as JARs\n Sub-directories of the directory named \"src\" of certain Plug-ins\n Feature directories\n\nNote: if a Feature made available by the Eclipse Foundation is installed using the Eclipse Update Manager, you must agree to a license (\"Feature Update License\") during the installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or inform you where you can locate them. Feature Update Licenses may be found in the \"license\" property of files named \"feature.properties\" found within a Feature. Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in that directory.\n\nTHE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\n Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n IBM Public License 1.0 (available at http://oss.software.ibm.com/developerworks/opensource/license10.html)\n Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\nIT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.\nCryptography\n\nContent may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country\u2019s laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted.\nJava and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both.", + "json": "eclipse-sua-2005.json", + "yaml": "eclipse-sua-2005.yml", + "html": "eclipse-sua-2005.html", + "license": "eclipse-sua-2005.LICENSE" + }, + { + "license_key": "eclipse-sua-2010", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2010", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Eclipse Foundation Software User Agreement\n\nApril 14, 2010\nUsage Of Content\n\nTHE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY \"CONTENT\"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.\nApplicable Licenses\n\nUnless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 (\"EPL\"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, \"Program\" will mean the Content.\n\nContent includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code repository (\"Repository\") in software modules (\"Modules\") and made available as downloadable archives (\"Downloads\").\n\n Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins (\"Plug-ins\"), plug-in fragments (\"Fragments\"), and features (\"Features\").\n Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java\u2122 ARchive) in a directory named \"plugins\".\n A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named \"features\". Within a Feature, files named \"feature.xml\" may contain a list of the names and version numbers of the Plug-ins and/or Fragments associated with that Feature.\n Features may also include other Features (\"Included Features\"). Within a Feature, files named \"feature.xml\" may contain a list of the names and version numbers of Included Features.\n\nThe terms and conditions governing Plug-ins and Fragments should be contained in files named \"about.html\" (\"Abouts\"). The terms and conditions governing Features and Included Features should be contained in files named \"license.html\" (\"Feature Licenses\"). Abouts and Feature Licenses may be located in any directory of a Download or Module including, but not limited to the following locations:\n\n The top-level (root) directory\n Plug-in and Fragment directories\n Inside Plug-ins and Fragments packaged as JARs\n Sub-directories of the directory named \"src\" of certain Plug-ins\n Feature directories\n\nNote: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (\"Feature Update License\") during the installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or inform you where you can locate them. Feature Update Licenses may be found in the \"license\" property of files named \"feature.properties\" found within a Feature. Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in that directory.\n\nTHE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\n Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\nIT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.\nUse of Provisioning Technology\n\nThe Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse Update Manager (\"Provisioning Technology\") for the purpose of allowing users to install software, documentation, information and/or other materials (collectively \"Installable Software\"). This capability is provided with the intent of allowing such users to install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html (\"Specification\").\n\nYou may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:\n\n A series of actions may occur (\"Provisioning Process\") in which a user may execute the Provisioning Technology on a machine (\"Target Machine\") with the intent of installing, extending or updating the functionality of an Eclipse-based product.\n During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable Software (\"Installable Software Agreement\") and such Installable Software Agreement shall be accessed from the Target Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.\n\nCryptography\n\nContent may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted.\n\nJava and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.", + "json": "eclipse-sua-2010.json", + "yaml": "eclipse-sua-2010.yml", + "html": "eclipse-sua-2010.html", + "license": "eclipse-sua-2010.LICENSE" + }, + { + "license_key": "eclipse-sua-2011", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2011", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Eclipse Foundation Software User Agreement\n\nFebruary 1, 2011\nUsage Of Content\n\nTHE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY \"CONTENT\"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.\nApplicable Licenses\n\nUnless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 (\"EPL\"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, \"Program\" will mean the Content.\n\nContent includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code repository (\"Repository\") in software modules (\"Modules\") and made available as downloadable archives (\"Downloads\").\n\n Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins (\"Plug-ins\"), plug-in fragments (\"Fragments\"), and features (\"Features\").\n Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java\u2122 ARchive) in a directory named \"plugins\".\n A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named \"features\". Within a Feature, files named \"feature.xml\" may contain a list of the names and version numbers of the Plug-ins and/or Fragments associated with that Feature.\n Features may also include other Features (\"Included Features\"). Within a Feature, files named \"feature.xml\" may contain a list of the names and version numbers of Included Features.\n\nThe terms and conditions governing Plug-ins and Fragments should be contained in files named \"about.html\" (\"Abouts\"). The terms and conditions governing Features and Included Features should be contained in files named \"license.html\" (\"Feature Licenses\"). Abouts and Feature Licenses may be located in any directory of a Download or Module including, but not limited to the following locations:\n\n The top-level (root) directory\n Plug-in and Fragment directories\n Inside Plug-ins and Fragments packaged as JARs\n Sub-directories of the directory named \"src\" of certain Plug-ins\n Feature directories\n\nNote: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (\"Feature Update License\") during the installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or inform you where you can locate them. Feature Update Licenses may be found in the \"license\" property of files named \"feature.properties\" found within a Feature. Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in that directory.\n\nTHE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\n Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\nIT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.\nUse of Provisioning Technology\n\nThe Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse Update Manager (\"Provisioning Technology\") for the purpose of allowing users to install software, documentation, information and/or other materials (collectively \"Installable Software\"). This capability is provided with the intent of allowing such users to install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html (\"Specification\").\n\nYou may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:\n\n A series of actions may occur (\"Provisioning Process\") in which a user may execute the Provisioning Technology on a machine (\"Target Machine\") with the intent of installing, extending or updating the functionality of an Eclipse-based product.\n During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable Software (\"Installable Software Agreement\") and such Installable Software Agreement shall be accessed from the Target Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.\n\nCryptography\n\nContent may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted.\n\nJava and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.", + "json": "eclipse-sua-2011.json", + "yaml": "eclipse-sua-2011.yml", + "html": "eclipse-sua-2011.html", + "license": "eclipse-sua-2011.LICENSE" + }, + { + "license_key": "eclipse-sua-2014", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Eclipse Foundation Software User Agreement\n\nApril 9, 2014\nUsage Of Content\n\nTHE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY \"CONTENT\"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.\nApplicable Licenses\n\nUnless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 (\"EPL\"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, \"Program\" will mean the Content.\n\nContent includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code repository (\"Repository\") in software modules (\"Modules\") and made available as downloadable archives (\"Downloads\").\n\n Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins (\"Plug-ins\"), plug-in fragments (\"Fragments\"), and features (\"Features\").\n Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java\u2122 ARchive) in a directory named \"plugins\".\n A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named \"features\". Within a Feature, files named \"feature.xml\" may contain a list of the names and version numbers of the Plug-ins and/or Fragments associated with that Feature.\n Features may also include other Features (\"Included Features\"). Within a Feature, files named \"feature.xml\" may contain a list of the names and version numbers of Included Features.\n\nThe terms and conditions governing Plug-ins and Fragments should be contained in files named \"about.html\" (\"Abouts\"). The terms and conditions governing Features and Included Features should be contained in files named \"license.html\" (\"Feature Licenses\"). Abouts and Feature Licenses may be located in any directory of a Download or Module including, but not limited to the following locations:\n\n The top-level (root) directory\n Plug-in and Fragment directories\n Inside Plug-ins and Fragments packaged as JARs\n Sub-directories of the directory named \"src\" of certain Plug-ins\n Feature directories\n\nNote: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (\"Feature Update License\") during the installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or inform you where you can locate them. Feature Update Licenses may be found in the \"license\" property of files named \"feature.properties\" found within a Feature. Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in that directory.\n\nTHE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\n Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\nIT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.\nUse of Provisioning Technology\n\nThe Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse Update Manager (\"Provisioning Technology\") for the purpose of allowing users to install software, documentation, information and/or other materials (collectively \"Installable Software\"). This capability is provided with the intent of allowing such users to install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html (\"Specification\").\n\nYou may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:\n\n A series of actions may occur (\"Provisioning Process\") in which a user may execute the Provisioning Technology on a machine (\"Target Machine\") with the intent of installing, extending or updating the functionality of an Eclipse-based product.\n During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable Software (\"Installable Software Agreement\") and such Installable Software Agreement shall be accessed from the Target Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.\n\nCryptography\n\nContent may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted.\n\nJava and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.", + "json": "eclipse-sua-2014.json", + "yaml": "eclipse-sua-2014.yml", + "html": "eclipse-sua-2014.html", + "license": "eclipse-sua-2014.LICENSE" + }, + { + "license_key": "eclipse-sua-2014-11", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2014-11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Eclipse Foundation Software User Agreement\n\nNovember 22, 2014\nUsage Of Content\n\nTHE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY \"CONTENT\"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.\nApplicable Licenses\n\nUnless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 2.0 (\"EPL\"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-2.0. For purposes of the EPL, \"Program\" will mean the Content.\n\nContent includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code repository (\"Repository\") in software modules (\"Modules\") and made available as downloadable archives (\"Downloads\").\n\n Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins (\"Plug-ins\"), plug-in fragments (\"Fragments\"), and features (\"Features\").\n Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java\u2122 ARchive) in a directory named \"plugins\".\n A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named \"features\". Within a Feature, files named \"feature.xml\" may contain a list of the names and version numbers of the Plug-ins and/or Fragments associated with that Feature.\n Features may also include other Features (\"Included Features\"). Within a Feature, files named \"feature.xml\" may contain a list of the names and version numbers of Included Features.\n\nThe terms and conditions governing Plug-ins and Fragments should be contained in files named \"about.html\" (\"Abouts\"). The terms and conditions governing Features and Included Features should be contained in files named \"license.html\" (\"Feature Licenses\"). Abouts and Feature Licenses may be located in any directory of a Download or Module including, but not limited to the following locations:\n\n The top-level (root) directory\n Plug-in and Fragment directories\n Inside Plug-ins and Fragments packaged as JARs\n Sub-directories of the directory named \"src\" of certain Plug-ins\n Feature directories\n\nNote: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (\"Feature Update License\") during the installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or inform you where you can locate them. Feature Update Licenses may be found in the \"license\" property of files named \"feature.properties\" found within a Feature. Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in that directory.\n\nTHE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\n Eclipse Public License Version 1.0 (available at http://www.eclipse.org/legal/epl-v10.html)\n Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\nIT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.\nUse of Provisioning Technology\n\nThe Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse Update Manager (\"Provisioning Technology\") for the purpose of allowing users to install software, documentation, information and/or other materials (collectively \"Installable Software\"). This capability is provided with the intent of allowing such users to install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html (\"Specification\").\n\nYou may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:\n\n A series of actions may occur (\"Provisioning Process\") in which a user may execute the Provisioning Technology on a machine (\"Target Machine\") with the intent of installing, extending or updating the functionality of an Eclipse-based product.\n During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable Software (\"Installable Software Agreement\") and such Installable Software Agreement shall be accessed from the Target Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.\n\nCryptography\n\nContent may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted.\n\nJava and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.", + "json": "eclipse-sua-2014-11.json", + "yaml": "eclipse-sua-2014-11.yml", + "html": "eclipse-sua-2014-11.html", + "license": "eclipse-sua-2014-11.LICENSE" + }, + { + "license_key": "eclipse-sua-2017", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Eclipse Foundation Software User Agreement\n\nNovember 22, 2017\nUsage Of Content\n\nTHE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY \"CONTENT\"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.\nApplicable Licenses\n\nUnless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 2.0 (\"EPL\"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-2.0. For purposes of the EPL, \"Program\" will mean the Content.\n\nContent includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code repository (\"Repository\") in software modules (\"Modules\") and made available as downloadable archives (\"Downloads\").\n\n Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins (\"Plug-ins\"), plug-in fragments (\"Fragments\"), and features (\"Features\").\n Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java\u2122 ARchive) in a directory named \"plugins\".\n A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named \"features\". Within a Feature, files named \"feature.xml\" may contain a list of the names and version numbers of the Plug-ins and/or Fragments associated with that Feature.\n Features may also include other Features (\"Included Features\"). Within a Feature, files named \"feature.xml\" may contain a list of the names and version numbers of Included Features.\n\nThe terms and conditions governing Plug-ins and Fragments should be contained in files named \"about.html\" (\"Abouts\"). The terms and conditions governing Features and Included Features should be contained in files named \"license.html\" (\"Feature Licenses\"). Abouts and Feature Licenses may be located in any directory of a Download or Module including, but not limited to the following locations:\n\n The top-level (root) directory\n Plug-in and Fragment directories\n Inside Plug-ins and Fragments packaged as JARs\n Sub-directories of the directory named \"src\" of certain Plug-ins\n Feature directories\n\nNote: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (\"Feature Update License\") during the installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or inform you where you can locate them. Feature Update Licenses may be found in the \"license\" property of files named \"feature.properties\" found within a Feature. Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in that directory.\n\nTHE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\n Eclipse Public License Version 1.0 (available at http://www.eclipse.org/legal/epl-v10.html)\n Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\nIT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.\nUse of Provisioning Technology\n\nThe Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse Update Manager (\"Provisioning Technology\") for the purpose of allowing users to install software, documentation, information and/or other materials (collectively \"Installable Software\"). This capability is provided with the intent of allowing such users to install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html (\"Specification\").\n\nYou may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:\n\n A series of actions may occur (\"Provisioning Process\") in which a user may execute the Provisioning Technology on a machine (\"Target Machine\") with the intent of installing, extending or updating the functionality of an Eclipse-based product.\n During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable Software (\"Installable Software Agreement\") and such Installable Software Agreement shall be accessed from the Target Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.\n\nCryptography\n\nContent may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted.\n\nJava and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.", + "json": "eclipse-sua-2017.json", + "yaml": "eclipse-sua-2017.yml", + "html": "eclipse-sua-2017.html", + "license": "eclipse-sua-2017.LICENSE" + }, + { + "license_key": "ecma-documentation", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-ecma-documentation", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This document and possible translations of it may be copied and furnished to\nothers, and derivative works that comment on or otherwise explain it or assist\nin its implementation may be prepared, copied, published, and distributed, in\nwhole or in part, without restriction of any kind, provided that the above\ncopyright notice and this section are included on all such copies and derivative\nworks. However, this document itself may not be modified in any way, including\nby removing the copyright notice or references to Ecma International, except as\nneeded for the purpose of developing any document or deliverable produced by\nEcma International (in which case the rules applied to copyrights must be\nfollowed) or as required to translate it into languages other than English. The\nlimited permissions granted above are perpetual and will not be revoked by Ecma\nInternational or its successors or assigns. This document and the information\ncontained herein is provided on an \"AS IS\" basis and ECMA INTERNATIONAL\nDISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY\nWARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY OWNERSHIP\nRIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR\nPURPOSE.", + "json": "ecma-documentation.json", + "yaml": "ecma-documentation.yml", + "html": "ecma-documentation.html", + "license": "ecma-documentation.LICENSE" + }, + { + "license_key": "ecma-no-patent", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ecma-no-patent", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "This Software may be subject to third party rights (rights from parties other than\nEcma International), including patent rights, and no licenses under such third\nparty rights are granted under this license even if the third party concerned is\na member of Ecma International. \n\nSEE THE ECMA CODE OF CONDUCT IN PATENT MATTERS\nAVAILABLE AT http://www.ecma-international.org/memento/codeofconduct.htm FOR\nINFORMATION REGARDING THE LICENSING OF PATENT CLAIMS THAT ARE REQUIRED TO\nIMPLEMENT ECMA INTERNATIONAL STANDARDS*.", + "json": "ecma-no-patent.json", + "yaml": "ecma-no-patent.yml", + "html": "ecma-no-patent.html", + "license": "ecma-no-patent.LICENSE" + }, + { + "license_key": "ecma-patent-coc-0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Historical Code of Conduct in Patent Matters (valid until December 3, 2009)\n\n1.\nPolicy\n\nGeneral Declaration:\nThe General Assembly of Ecma shall not approve recommendations of Standards which are covered by patents when such patents will not be licensed by their owners on a reasonable and non-discriminatory basis.\n\n1.1\nIn case the proposed Standard is covered by issued patents of Ecma members only: Members of the General Assembly are asked to state the Company licensing policy with respect to these patents.\n\n1.2\nIn case the proposed Standard is covered by issued patents by non Ecma members: A written statement from the patentee is required, according to which he is prepared to grant licences on a reasonable, non-discriminatory basis.\nThe General Assembly and/or the Management shall decide in this case which steps must be undertaken in order to obtain such a statement.\n\n1.3\nIn case the proposed Standard is covered by patent applications of Ecma members (which is not known, neither during the work of the TC nor at the time of the vote in the General Assembly):\n\n1.3.1\nEach member of the TCs and/or of the General Assembly of Ecma will determine whether any proposed standard may be covered by any patent for which his company has a pending application; if such a patent application exists, his continued participation to the relevant committee will imply that such a patent, when obtained later, will be made available from his company for licensing on a reasonable, non-discriminatory basis.\n\n1.3.2\nEach member of the TCs and/or of the General Assembly of Ecma will determine whether any proposed standard may be covered by any patent for which his company has a pending application; if such a patent application exists, the favourable vote of the Company to the General Assembly will imply that such a patent, when obtained later, will be made available from his company for licensing on a reasonable, non-discriminatory basis.\n\n1.4\nIn case the proposed Standard is covered by patent applications of third parties (which is not known during the work of the TC nor at the time of the vote in the General Assembly): In this case practically nothing can be done at the time of the vote. When afterwards said patents are issued, it should be tried to obtain reasonable, non-discriminatory licences. If this proves to be impossible, the standard will have to be cancelled.\n\n2.\nProcedure\n\n2.1\nThe questions related to protective rights are in the competence of the General Assembly of Ecma and should not be discussed at the TC level.\n\n2.2\nEach draft standard shall be submitted two months ahead of a General Assembly. All members are required to state no less than two weeks before the GA or at the end of the postal voting period whether they claim any issued protective rights covering the subject matter of the proposed standard and/or have knowledge of such rights of third parties.\n\n2.3\nReplies to this request will be circulated in due time before the General Assembly.\n\n2.4\nWhen an answer is not received from a Company, the General Assembly may proceed to a vote on the assumption that this Company will act in accordance with the General Declaration, that is to license possible relevant issued patents on a reasonable and non-discriminatory basis.", + "json": "ecma-patent-coc-0.json", + "yaml": "ecma-patent-coc-0.yml", + "html": "ecma-patent-coc-0.html", + "license": "ecma-patent-coc-0.LICENSE" + }, + { + "license_key": "ecma-patent-coc-1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Code of Conduct in Patent Matters\nVersion 1 (approved by the Ecma GA in December 2009)\n\n1. Ecma considers it is desirable that fullest available information should be disclosed to those selecting technology for Ecma International Standards* and those interested in adopting Ecma International Standards. Ecma desires to develop standards for which licenses for any essential patents are available on a non-discriminatory basis and on reasonable terms and conditions. Therefore, Ecma desires that any party participating in a technical committee of Ecma International promptly disclose any patent or pending patent application that it believes contain claims that may be required to implement an Ecma International Standard, in accordance with the following provisions.\n\n2. If an Ecma International Standard is developed and a party may own or control a patent or application with claims that are required to implement such Ecma International Standard, three different situations may arise:\n\n2.1 The patent holder is prepared to grant licenses free of charge to other parties on a non-discriminatory basis on reasonable terms and conditions. Negotiations are left to the parties concerned and are performed outside of Ecma International.\n\n2.2 The patent holder is prepared to grant licenses to other parties on a non-discriminatory basis on reasonable terms and conditions. Negotiations are left to the parties concerned and are performed outside of Ecma International.\nFor patented technology contributed to and incorporated into a Final Draft Ecma International Standard by a patent holder member, the patent holder member may select 2.1 or 2.2. If such patent holder member does not make a selection, 2.2 shall apply.\n\n2.3 For patented technology contributed by a party other than the patent holder, the patent holder is not prepared to comply with the provisions of either Paragraph 2.1 or Paragraph 2.2.\n\n3. Whatever case applies (2.1, 2.2 or 2.3), the patent holder shall, for patents and pending applications it owns or controls that it believes contains claims that may be required to implement the identified Draft Ecma International Standard, provide a timely written statement to be filed with the Ecma Secretary General at the Ecma International Secretariat, using the attached \u201cPatent Statement and Licensing Declaration Form for an Ecma International Standard\u201d (the \u201cForm\u201d available here in WORD format and here in PDF format). Any licensing commitment selected will only apply to those claims that end up being required to implement the Final Ecma International Standard.\n\n3.1 In the event the patent holder selects per Paragraph 2.1 and 2.2, the patent holder may identify specific patents associated with box 1 or box 2 of the Form. If an Ecma member does not identify specific patents on the list, the designated licensing commitment will apply to all of the Ecma member's claims in patents and pending applications it owns or controls that end up being required to implement the finalized Standard. The patent holder may submit multiple Forms to document additional patents, each Form applying to patents associated with one of the boxes. A patent holder may re-designate as follows: Box selections cannot be changed, except that identified patents may be re-designated from box 3 to box 1 or 2, or from box 2 to box 1. For licenses executed before a re-designation, the licensees may continue under the existing license or may request terms in accordance with the re-designation.\n\n3.2 In the event a patent holder selects per Paragraph 2.3, the patent holder must identify the specific patents it owns or controls and believes are required to implement the Ecma Standard in a Form under box 3.\n\n3.3 The Form must not include additional provisions, conditions, or any other clauses that may interpret, restrict or vary the terms of the selected box on the Form.\n\n4. Pursuant to Article 9 of the Ecma International by-laws, each Final Draft Ecma International Standard to be approved shall be submitted two months ahead of a General Assembly (GA).\n\n4.1 Each Ecma member participating in the development of the proposed standard shall, and other Ecma members may, submit a Form at the latest two weeks before the GA (if the vote occurs at the GA) or the end of the postal voting period (if the vote is by mail), if they own or control any patents or patent applications that they believe are required to implement such standard. For so long as such Standard remains an approved Ecma International Standard, the member will be prepared to grant licenses for its essential claims in patents and patent applications in accordance with Paragraph 2 above. In the event Paragraph 2.3 is selected, a patent license may not be available and the technical committee should explore other options.\n\n4.2 This Policy creates no duty for Ecma members to search for any patents or patent applications at any time. A Member\u2019s general licensing commitment shall apply to the claims in any patents or patent applications that are required to implement the Standard even if such patents are acquired by the Member after the Standard is finalized. If Paragraph 2.1 or 2.2 is selected, a commitment attaches to a Standard, then the same commitment would automatically apply to future versions of the Standard if the same implicated patent claims (i) are required for implementation of the revised Standard, and (ii) are used in a substantially similar manner, to a substantially similar extent, to achieve a substantially similar result as the same patent claims were used in the prior version for which the Member has made a licensing commitment.\n\n4.3 An Ecma member that has not submitted a Form regarding a Final Draft Ecma International Standard within the period mentioned in Paragraph 4.1 is obliged to license any claims in patents or patent applications required to implement the Standard on a reasonable and non-discriminatory basis.\n\n5. Anybody may disclose, in written form identifying the title and patent information, another party\u2019s patents and applications that it reasonably believes may be required to implement an Ecma Standard. Such disclosure is not an assertion that such patents or applications are required for the Ecma Standard, but is provided for informational purposes. The Ecma Secretary General will, as feasible, send a Form to each such potential patent holder. A non-member may submit a Form to the Ecma Secretary General that lists the non-member\u2019s patents and applications that it believes may be essential to a draft or final Ecma Standard and select one of the options described above in Paragraph 2.\n\n6. Ecma International shall not provide legal opinions about evidence, validity or enforceability of patents, or whether a claim is required to implement a standard. Accordingly, in instances where a patent or pending patent application is disclosed to the Ecma Secretary General and it is not subject to a license commitment in accordance with boxes 1 or 2 of the Form, approval and publication of a proposed standard is authorized if 2/3 of the GA by vote in person or via letter ballot, support proceeding with the standard notwithstanding possible uncommitted patent(s) and patent application(s) of Ecma members or non-members. As a condition to proceeding, the Ecma Secretary General must provide notice of all identified and possibly uncommitted patents or patent applications and their disposal (if any) (i) to the voting members at least 10 days before the vote on the standard will be completed and (ii) to the public if and when the standard is published as final.\n\n7. If a patent or pending patent application, that is not subject to a license commitment in accordance with boxes 1 or 2 of the Form, is disclosed to the Ecma Secretary General after an Ecma International Standard has been approved, the process of Paragraph 6 shall be followed to determine if the standard shall be continued, withdrawn or modified.\n\n* Ecma International Standards hereafter means Ecma International Standards as well as Ecma Technical Reports.", + "json": "ecma-patent-coc-1.json", + "yaml": "ecma-patent-coc-1.yml", + "html": "ecma-patent-coc-1.html", + "license": "ecma-patent-coc-1.LICENSE" + }, + { + "license_key": "ecma-patent-coc-2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Ecma Code of Conduct in Patent Matters*\nVersion 2 (approved by the Ecma GA in June 2016)\n\n1. Ecma considers it is desirable that fullest available information should be disclosed to those selecting technology for Ecma International Standards and those interested in adopting Ecma International Standards1. Ecma desires to develop standards for which licenses for any essential patents are available on a non-discriminatory basis and on reasonable terms and conditions. Therefore, Ecma desires that any party participating in a technical committee of Ecma International promptly disclose any patent or pending patent application that it believes contain claims that may be required to implement an Ecma International Standard, in accordance with the following provisions.\n\n2. If an Ecma International Standard is developed and a party may own or control a patent or application with claims that are required to implement such Ecma International Standard, three different situations may arise:\n\n2.1 The patent holder is prepared to grant licenses free of charge to other parties on a non-discriminatory basis on reasonable terms and conditions. Negotiations are left to the parties concerned and are performed outside of Ecma International.\n\n2.2 The patent holder is prepared to grant licenses to other parties on a non-discriminatory basis on reasonable terms and conditions. Negotiations are left to the parties concerned and are performed outside of Ecma International. For patented technology contributed to and incorporated into a Final Draft Ecma International Standard by a patent holder member, the patent holder member may select 2.1 or 2.2. If such patent holder member does not make a selection, 2.2 shall apply.\n\n2.3 For patented technology contributed by a party other than the patent holder, the patent holder is not prepared to comply with the provisions of either Paragraph 2.1 or Paragraph 2.2.\n\n3. Whatever case applies (2.1, 2.2 or 2.3), the patent holder shall, for patents and pending applications it owns or controls that it believes contains claims that may be required to implement the identified Draft Ecma International Standard, provide a timely written statement to be filed with the Ecma Secretary General at the Ecma International Secretariat, using the attached \u201cPatent Statement and Licensing Declaration Form for an Ecma International Standard\u201d (the \u201cForm\u201d available here in WORD format and here in PDF format). Any licensing commitment selected will only apply to those claims that end up being required to implement the Final Ecma International Standard.\n\n3.1 In the event the patent holder selects per Paragraph 2.1 and 2.2, the patent holder may identify specific patents associated with box 1 or box 2 of the Form. If an Ecma member does not identify specific patents on the list, the designated licensing commitment will apply to all of the Ecma member's claims in patents and pending applications it owns or controls that end up being required to implement the finalized Standard. The patent holder may submit multiple Forms to document additional patents, each Form applying to patents associated with one of the boxes. A patent holder may re-designate as follows: Box selections cannot be changed, except that identified patents may be re-designated from box 3 to box 1 or 2, or from box 2 to box 1. For licenses executed before a re-designation, the licensees may continue under the existing license or may request terms in accordance with the re-designation.\n\n3.2 In the event a patent holder selects per Paragraph 2.3, the patent holder must identify the specific patents it owns or controls and believes are required to implement the Ecma Standard in a Form under box 3.\n\n3.3 The Form must not include additional provisions, conditions, or any other clauses that may interpret, restrict or vary the terms of the selected box on the Form.\n\n4. Pursuant to Article 9 of the Ecma International by-laws, each Final Draft Ecma International Standard to be approved shall be submitted two months ahead of a General Assembly (GA).\n\n4.1 Each Ecma member participating in the development of the proposed standard shall, and other Ecma members may, submit a Form at the latest two weeks before the GA (if the vote occurs at the GA) or the end of the postal voting period (if the vote is by mail), if they own or control any patents or patent applications that they believe are required to implement such standard. For so long as such Standard remains an approved Ecma International Standard, the member will be prepared to grant licenses for its essential claims in patents and patent applications in accordance with Paragraph 2 above. In the event Paragraph 2.3 is selected, a patent license may not be available and the technical committee should explore other options.\n\n4.2 This Policy creates no duty for Ecma members to search for any patents or patent applications at any time. A Member\u2019s general licensing commitment shall apply to the claims in any patents or patent applications that are required to implement the Standard even if such patents are acquired by the Member after the Standard is finalized. If Paragraph 2.1 or 2.2 is selected, a commitment attaches to a Standard, then the same commitment would automatically apply to future versions of the Standard if the same implicated patent claims (i) are required for implementation of the revised Standard, and (ii) are used in a substantially similar manner, to a substantially similar extent, to achieve a substantially similar result as the same patent claims were used in the prior version for which the Member has made a licensing commitment.\n\n4.3 An Ecma member participating in the development of the proposed standard that has not submitted a Form regarding a Final Draft Ecma International Standard within the period mentioned in Paragraph 4.1 is obliged to license any claims in patents or patent applications required to implement the Standard on a reasonable and non-discriminatory basis.\n\n5. Anybody may disclose, in written form identifying the title and patent information, another party\u2019s patents and applications that it reasonably believes may be required to implement an Ecma Standard. Such disclosure is not an assertion that such patents or applications are required for the Ecma Standard, but is provided for informational purposes. The Ecma Secretary General will, as feasible, send a Form to each such potential patent holder. A non-member may submit a Form to the Ecma Secretary General that lists the non-member\u2019s patents and applications that it believes may be essential to a draft or final Ecma Standard and select one of the options described above in Paragraph 2.\n\n6. Ecma International shall not provide legal opinions about evidence, validity or enforceability of patents, or whether a claim is required to implement a standard. Accordingly, in instances where a patent or pending patent application is disclosed to the Ecma Secretary General and it is not subject to a license commitment in accordance with boxes 1 or 2 of the Form, approval and publication of a proposed standard is authorized if 2/3 of the GA by vote in person or via letter ballot, support proceeding with the standard notwithstanding possible uncommitted patent(s) and patent application(s) of Ecma members or non-members. As a condition to proceeding, the Ecma Secretary General must provide notice of all identified and possibly uncommitted patents or patent applications and their disposal (if any) (i) to the voting members at least 10 days before the vote on the standard will be completed and (ii) to the public if and when the standard is published as final.\n\n7. If a patent or pending patent application, that is not subject to a license commitment in accordance with boxes 1 or 2 of the Form, is disclosed to the Ecma Secretary General after an Ecma International Standard has been approved, the process of Paragraph 6 shall be followed to determine if the standard shall be continued, withdrawn or modified.\n\n\n___________________________\n\n* The old Ecma Code of Conduct in Patent Matters that was valid until 3 December 2009 is to be found here and Version 1 approved in December 2009 is to be found here.\n\n1 Ecma International Standards hereafter means Ecma International Standards as well as Ecma International Technical Reports.", + "json": "ecma-patent-coc-2.json", + "yaml": "ecma-patent-coc-2.yml", + "html": "ecma-patent-coc-2.html", + "license": "ecma-patent-coc-2.LICENSE" + }, + { + "license_key": "ecos", + "category": "Copyleft Limited", + "spdx_license_key": "eCos-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This file is part of eCos, the Embedded Configurable Operating System.\n\n eCos is free software; you can redistribute it and/or modify it under\n the terms of the GNU General Public License as published by the Free\n Software Foundation; either version 2 or (at your option) any later version.\n\n eCos is distributed in the hope that it will be useful, but WITHOUT ANY\n WARRANTY; without even the implied warranty of MERCHANTABILITY or\n FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License\n for more details.\n\n You should have received a copy of the GNU General Public License along\n with eCos; if not, write to the Free Software Foundation, Inc.,\n 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.\n\n As a special exception, if other files instantiate templates or use macros\n or inline functions from this file, or you compile this file and link it\n with other works to produce a work based on this file, this file does not\n by itself cause the resulting work to be covered by the GNU General Public\n License. However the source code for this file must still be made available\n in accordance with section (3) of the GNU General Public License.\n\n This exception does not invalidate any other reasons why a work based on\n this file might be covered by the GNU General Public License.", + "json": "ecos.json", + "yaml": "ecos.yml", + "html": "ecos.html", + "license": "ecos.LICENSE" + }, + { + "license_key": "ecos-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "eCos-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, if other files instantiate templates or use macros\nor inline functions from this file, or you compile this file and link it\nwith other works to produce a work based on this file, this file does not\nby itself cause the resulting work to be covered by the GNU General Public\nLicense. However the source code for this file must still be made available\nin accordance with section (3) of the GNU General Public License.\n\nThis exception does not invalidate any other reasons why a work based on\nthis file might be covered by the GNU General Public License.", + "json": "ecos-exception-2.0.json", + "yaml": "ecos-exception-2.0.yml", + "html": "ecos-exception-2.0.html", + "license": "ecos-exception-2.0.LICENSE" + }, + { + "license_key": "ecosrh-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ecosrh-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CYGNUS ECOS PUBLIC LICENSE Version 1.0\n\n\n1. DEFINITIONS.\n\n1.1. \"Contributor\" means each entity that creates or contributes to the\ncreation of Modifications.\n\n1.2. \"Contributor Version\" means the combination of the Original Code,\nprior Modifications used by a Contributor, and the Modifications made by\nthat particular Contributor.\n\n1.3. \"Covered Code\" means the Original Code or Modifications or the\ncombination of the Original Code and Modifications, in each case\nincluding portions thereof.\n\n1.4. \"Electronic Distribution Mechanism\" means a mechanism generally\naccepted in the software development community for the electronic\ntransfer of data.\n\n1.5. \"Executable\" means Covered Code in any form other than Source Code.\n\n1.6. \"Initial Developer\" means the individual or entity identified as\nthe Initial Developer in the Source Code notice required by Exhibit A.\n\n1.7. \"Larger Work\" means a work which combines Covered Code or portions\nthereof with code not governed by the terms of this License.\n\n1.8. \"License\" means this document.\n\n1.9. \"Modifications\" means any addition to or deletion from the\nsubstance or structure of either the Original Code or any previous\nModifications. When Covered Code is released as a series of files, a\nModification is:\n\n A. Any addition to or deletion from the contents of a file\n containing Original Code or previous Modifications.\n \n B. Any new file that contains any part of the Original Code or\n previous Modifications.\n\n1.10. \"Original Code\" means Source Code of computer software code which\nis described in the Source Code notice required by Exhibit A as Original\nCode, and which, at the time of its release under this License is not\nalready Covered Code governed by this License.\n\n1.11. \"Source Code\" means the preferred form of the Covered Code for\nmaking modifications to it, including all modules it contains, plus any\nassociated interface definition files, scripts used to control\ncompilation and installation of an Executable, or a list of source code\ndifferential comparisons against either the Original Code or another\nwell known, available Covered Code of the Contributor's choice. The\nSource Code can be in a compressed or archival form, provided the\nappropriate decompression or de-archiving software is widely available\nfor no charge.\n\n1.12. \"You\" means an individual or a legal entity exercising rights\nunder, and complying with all of the terms of, this License or a future\nversion of this License issued under Section 6.1. For legal entities,\n\"You\" includes any entity which controls, is controlled by, or is under\ncommon control with You. For purposes of this definition, \"control\"\nmeans (a) the power, direct or indirect, to cause the direction or\nmanagement of such entity, whether by contract or otherwise, or (b)\nownership of fifty percent (50%) or more of the outstanding shares or\nbeneficial ownership of such entity.\n\n1.13. \"Cygnus's Branded Code\" is code that Cygnus Solutions (\"Cygnus\")\ndistributes and/or permits others to distribute under different terms\nthan the Cygnus eCos Public License. Cygnus's Branded Code may contain\npart or all of the Covered Code.\n\n2. SOURCE CODE LICENSE.\n\n2.1. The Initial Developer Grant.\n\n The Initial Developer hereby grants You a world-wide, royalty-free,\n non-exclusive license, subject to third party intellectual property\n claims:\n \n (a) to use, reproduce, modify, display, perform, sublicense and\n distribute the Original Code (or portions thereof) with or\n without Modifications, or as part of a Larger Work; and\n \n (b) under patents now or hereafter owned or controlled by\n Initial Developer, to make, have made, use and sell (\"Utilize\")\n the Original Code (or portions thereof), but solely to the\n extent that any such patent is reasonably necessary to enable\n You to Utilize the Original Code (or portions thereof) and not\n to any greater extent that may be necessary to Utilize further\n Modifications or combinations.\n\n2.2. Contributor Grant. \n\n Each Contributor hereby grants You a world-wide, royalty-free, non-\n exclusive license, subject to third party intellectual property\n claims:\n \n (a) to use, reproduce, modify, display, perform, sublicense and\n distribute the Modifications created by such Contributor (or\n portions thereof) either on an unmodified basis, with other\n Modifications, as Covered Code or as part of a Larger Work; and\n \n (b) under patents now or hereafter owned or controlled by\n Contributor, to Utilize the Contributor Version (or portions\n thereof), but solely to the extent that any such patent is\n reasonably necessary to enable You to Utilize the Contributor\n Version (or portions thereof), and not to any greater extent\n that may be necessary to Utilize further Modifications or\n combinations.\n\n3. DISTRIBUTION OBLIGATIONS. \n\n3.1. Application of License.\n\n The Modifications which You create or to which You contribute are\n governed by the terms of this License, including without limitation\n Section 2.2. The Source Code version of Covered Code may be\n distributed only under the terms of this License or a future version\n of this License released under Section 6.1, and You must include a\n copy of this License with every copy of the Source Code You\n distribute. You may not offer or impose any terms on any Source Code\n version that alters or restricts the applicable version of this\n License or the recipients' rights hereunder. However, You may\n include an additional document offering the additional rights\n described in Section 3.5.\n\n3.2. Availability of Source Code. \n\n Any Modification which You create or to which You contribute must be\n made available in Source Code form under the terms of this License\n via an accepted Electronic Distribution Mechanism to anyone to whom\n you made an Executable version available and to the Initial\n Developer; and if made available via Electronic Distribution\n Mechanism, must remain available for at least twelve (12) months\n after the date it initially became available, or at least six (6)\n months after a subsequent version of that particular Modification\n has been made available to such recipients. You are responsible for\n ensuring that the Source Code version remains available even if the\n Electronic Distribution Mechanism is maintained by a third party.\n You are responsible for notifying the Initial Developer of the\n Modification and the location of the Source if a contact means is\n provided. Cygnus will be acting as maintainer of the Source and may\n provide an Electronic Distribution mechanism for the Modification to\n be made available. You can contact Cygnus to make the Modification\n available and to notify the Initial Developer.\n (http://sourceware.cygnus.com/ecos)\n\n3.3. Description of Modifications. \n\n You must cause all Covered Code to which you contribute to contain a\n file documenting the changes You made to create that Covered Code\n and the date of any change. You must include a prominent statement\n that the Modification is derived, directly or indirectly, from\n Original Code provided by the Initial Developer and including the\n name of the Initial Developer in (a) the Source Code, and (b) in any\n notice in an Executable version or related documentation in which\n You describe the origin or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters \n\n (a) Third Party Claims. \n\n If You have knowledge that a party claims an intellectual\n property right in particular functionality or code (or its\n utilization under this License), you must include a text file\n with the source code distribution titled \"LEGAL\" which describes\n the claim and the party making the claim in sufficient detail\n that a recipient will know whom to contact. If you obtain such\n knowledge after You make Your Modification available as\n described in Section 3.2, You shall promptly modify the LEGAL\n file in all copies You make available thereafter and shall take\n other steps (such as notifying appropriate mailing lists or\n newsgroups) reasonably calculated to inform those who received\n the Covered Code that new knowledge has been obtained.\n \n (b) Contributor APIs. \n\n If Your Modification is an application programming interface and\n You own or control patents which are reasonably necessary to\n implement that API, you must also include this information in\n the LEGAL file.\n\n3.5. Required Notices. \n\n You must duplicate the notice in Exhibit A in each file of the\n Source Code, and this License in any documentation for the Source\n Code, where You describe recipients' rights relating to Covered\n Code. If You created one or more Modification(s), You may add your\n name as a Contributor to the Source Code. If it is not possible to\n put such notice in a particular Source Code file due to its\n structure, then you must include such notice in a location (such as\n a relevant directory file) where a user would be likely to look for\n such a notice. You may choose to offer, and to charge a fee for,\n warranty, support, indemnity or liability obligations to one or more\n recipients of Covered Code.\n\n However, You may do so only on Your own behalf, and not on behalf of\n the Initial Developer or any Contributor. You must make it\n absolutely clear that any such warranty, support, indemnity or\n liability obligation is offered by You alone, and You hereby agree\n to indemnify the Initial Developer and every Contributor for any\n liability incurred by the Initial Developer or such Contributor as a\n result of warranty, support, indemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions. \n\n You may distribute Covered Code in Executable form only if the\n requirements of Section 3.1-3.5 have been met for that Covered Code,\n and if You include a notice stating that the Source Code version of\n the Covered Code is available under the terms of this License,\n including a description of how and where You have fulfilled the\n obligations of Section 3.2. The notice must be conspicuously\n included in any notice in an Executable version, related\n documentation or collateral in which You describe recipients' rights\n relating to the Covered Code. You may distribute the Executable\n version of Covered Code under a license of Your choice, which may\n contain terms different from this License, provided that You are in\n compliance with the terms of this License and that the license for\n the Executable version does not attempt to limit or alter the\n recipient's rights in the Source Code version from the rights set\n forth in this License. If You distribute the Executable version\n under a different license You must make it absolutely clear that any\n terms which differ from this License are offered by You alone, not\n by the Initial Developer or any Contributor. You hereby agree to\n indemnify the Initial Developer and every Contributor for any\n liability incurred by the Initial Developer or such Contributor as a\n result of any such terms You offer.\n \n If you distribute executable versions containing Covered Code, you\n must reproduce the notice in Exhibit B in the documentation and/or\n other materials provided with the product.\n\n3.7. Larger Works. \n\n You may create a Larger Work by combining Covered Code with other\n code not governed by the terms of this License and distribute the\n Larger Work as a single product. In such a case, You must make sure\n the requirements of this License are fulfilled for the Covered Code.\n\n4. INABILITY TO COMPLY DUE TO STATUTE OR REGULATION. \n\nIf it is impossible for You to comply with any of the terms of this\nLicense with respect to some or all of the Covered Code due to statute\nor regulation then You must: (a) comply with the terms of this License\nto the maximum extent possible; (b) cite the statute or regulation that\nprohibits you from adhering to the license; and (c) describe the\nlimitations and the code they affect. Such description must be included\nin the LEGAL file described in Section 3.4 and must be included with all\ndistributions of the Source Code. Except to the extent prohibited by\nstatute or regulation, such description must be sufficiently detailed\nfor a recipient of ordinary skill to be able to understand it. You must\nsubmit this LEGAL file to Cygnus for review, and You will not be able\nuse the covered code in any means until permission is granted from\nCygnus to allow for the inability to comply due to statute or\nregulation.\n\n5. APPLICATION OF THIS LICENSE. \n\nThis License applies to code to which the Initial Developer has attached\nthe notice in Exhibit A, and to related Covered Code.\n\nCygnus may include Covered Code in products without such additional\nproducts becoming subject to the terms of this License, and may license\nsuch additional products on different terms from those contained in this\nLicense.\n\nCygnus may license the Source Code of Cygnus's Branded Code without\nCygnus's Branded Code becoming subject to the terms of this License, and\nmay license Cygnus's Branded Code on different terms from those\ncontained in this License. Contact Cygnus for details of alternate\nlicensing terms available.\n\n6. VERSIONS OF THE LICENSE. \n\n 6.1. New Versions. \n\n Cygnus may publish revised and/or new versions of the License from\n time to time. Each version will be given a distinguishing version\n number.\n\n 6.2. Effect of New Versions. \n\n Once Covered Code has been published under a particular version of\n the License, You may always continue to use it under the terms of\n that version. You may also choose to use such Covered Code under\n the terms of any subsequent version of the License published by\n Cygnus. No one other than Cygnus has the right to modify the terms\n applicable to Covered Code beyond what is granted under this and\n subsequent Licenses.\n\n 6.3. Derivative Works. \n\n If you create or use a modified version of this License (which you\n may only do in order to apply it to code which is not already\n Covered Code governed by this License), you must (a) rename Your\n license so that the phrases \"ECOS\", \"eCos\", \"Cygnus\", \"CPL\" or any\n confusingly similar phrase do not appear anywhere in your license\n and (b) otherwise make it clear that your version of the license\n contains terms which differ from the eCos Public License and Cygnus\n Public License. (Filling in the name of the Initial Developer,\n Original Code or Contributor in the notice described in Exhibit A\n shall not of themselves be deemed to be modifications of this\n License.)\n\n7. DISCLAIMER OF WARRANTY. \n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT\nWARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT\nLIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS,\nMERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON- INFRINGING. THE\nENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS\nWITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU\n(NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF\nANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF\nWARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY\nCOVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION. \n\nThis License and the rights granted hereunder will terminate\nautomatically if You fail to comply with terms herein and fail to cure\nsuch breach within 30 days of becoming aware of the breach. All\nsublicenses to the Covered Code which are properly granted shall survive\nany termination of this License. Provisions which, by their nature, must\nremain in effect beyond the termination of this License shall survive.\n\n9. LIMITATION OF LIABILITY. \n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\n(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL\nDEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR\nANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER\nPERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\nOF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF\nGOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL\nOTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\nINFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF\nLIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\nPROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION\nOR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION\nAND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS. \n\nThe Covered Code is a \"commercial item,\" as that term is defined in 48\nC.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\"\nand \"commercial computer software documentation,\" as such terms are used\nin 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and\n48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government\nEnd Users acquire Covered Code with only those rights set forth herein.\n\n11. MISCELLANEOUS. \n\nThis License represents the complete agreement concerning subject matter\nhereof. If any provision of this License is held to be unenforceable,\nsuch provision shall be reformed only to the extent necessary to make it\nenforceable. This License shall be governed by California law provisions\n(except to the extent applicable law, if any, provides otherwise),\nexcluding its conflict-of-law provisions. With respect to disputes in\nwhich at least one party is a citizen of, or an entity chartered or\nregistered to do business in, the United States of America: (a) unless\notherwise agreed in writing, all disputes relating to this License\n(excepting any dispute relating to intellectual property rights) shall\nbe subject to final and binding arbitration, with the losing party\npaying all costs of arbitration; (b) any arbitration relating to this\nAgreement shall be held in Santa Clara County, California, under the\nauspices of JAMS/EndDispute; and (c) any litigation relating to this\nAgreement shall be subject to the jurisdiction of the Federal Courts of\nthe Northern District of California, with venue lying in Santa Clara\nCounty, California, with the losing party responsible for costs,\nincluding without limitation, court costs and reasonable attorneys fees\nand expenses. The application of the United Nations Convention on\nContracts for the International Sale of Goods is expressly excluded. Any\nlaw or regulation which provides that the language of a contract shall\nbe construed against the drafter shall not apply to this License.\n\n12. RESPONSIBILITY FOR CLAIMS. \n\nExcept in cases where another Contributor has failed to comply with\nSection 3.4, You are responsible for damages arising, directly or\nindirectly, out of Your utilization of rights under this License, based\non the number of copies of Covered Code you made available, the revenues\nyou received from utilizing such rights, and other relevant factors. You\nagree to work with affected parties to distribute responsibility on an\nequitable basis.\n\n13. ADDITIONAL TERMS APPLICABLE TO THE CYGNUS ECOS PUBLIC LICENSE. \n\nNothing in this License shall be interpreted to prohibit Cygnus from\nlicensing under different terms than this License any code which Cygnus\notherwise would have a right to license.\n\nCygnus and logo - This License does not grant any rights to use the\ntrademark \"Cygnus\", the Cygnus logo, eCos logo, even if such marks are\nincluded in the Original Code. You may contact Cygnus for permission to\ndisplay the Cygnus and eCos marks in either the documentation or the\nExecutable version beyond that required in Exhibit B.\n\nInability to Comply Due to Contractual Obligation - To the extent that\nCygnus is limited contractually from making third party code available\nunder this License, Cygnus may choose to integrate such third party code\ninto Covered Code without being required to distribute such third party\ncode in Source Code form, even if such third party code would otherwise\nbe considered \"Modifications\" under this License.\n\nEXHIBIT A. \n\n\"The contents of this file are subject to the Cygnus eCos Public License\nVersion 1.0 (the \"License\"); you may not use this file except in\ncompliance with the License. You may obtain a copy of the License at\nhttp://sourceware.cygnus.com/ecos\n\nSoftware distributed under the License is distributed on an \"AS IS\"\nbasis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the\nLicense for the specific language governing rights and limitations under\nthe License.\n\nThe Original Code is eCos - Embedded Cygnus Operating System, released\nSeptember 30, 1998.\n\nThe Initial Developer of the Original Code is Cygnus. Portions created\nby Cygnus are Copyright (C) 1998 Cygnus Solutions. All Rights Reserved.\"\n\nEXHIBIT B. \n\nPart of the software embedded in this product is eCos - Embedded Cygnus\nOperating System, a trademark of Cygnus Solutions. Portions created by\nCygnus are Copyright (C) 1998 Cygnus Solutions (http://www.cygnus.com).\nAll Rights Reserved.\n\nTHE SOFTWARE IN THIS PRODUCT WAS IN PART PROVIDED BY CYGNUS SOLUTIONS\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\nANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.", + "json": "ecosrh-1.0.json", + "yaml": "ecosrh-1.0.yml", + "html": "ecosrh-1.0.html", + "license": "ecosrh-1.0.LICENSE" + }, + { + "license_key": "ecosrh-1.1", + "category": "Copyleft", + "spdx_license_key": "RHeCos-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Red Hat eCos Public License v1.1\n\n1. DEFINITIONS\n\n1.1. \"Contributor\" means each entity that creates or contributes to the\ncreation of Modifications.\n\n1.2. \"Contributor Version\" means the combination of the Original Code,\nprior Modifications used by a Contributor, and the Modifications made by\nthat particular Contributor.\n\n1.3. \"Covered Code\" means the Original Code or Modifications or the\ncombination of the Original Code and Modifications, in each case\nincluding portions thereof.\n\n1.4. \"Electronic Distribution Mechanism\" means a mechanism generally\naccepted in the software development community for the electronic\ntransfer of data.\n\n1.5. \"Executable\" means Covered Code in any form other than Source Code.\n\n1.6. \"Initial Developer\" means the individual or entity identified as\nthe Initial Developer in the Source Code notice required by Exhibit A.\n\n1.7. \"Larger Work\" means a work which combines Covered Code or portions\nthereof with code not governed by the terms of this License.\n\n1.8. \"License\" means this document.\n\n1.9. \"Modifications\" means any addition to or deletion from the\nsubstance or structure of either the Original Code or any previous\nModifications. When Covered Code is released as a series of files, a\nModification is:\n\n A. Any addition to or deletion from the contents of a file\n containing Original Code or previous Modifications.\n\n B. Any new file that contains any part of the Original Code or\n previous Modifications.\n\n1.10. \"Original Code\" means Source Code of computer software code which\nis described in the Source Code notice required by Exhibit A as Original\nCode, and which, at the time of its release under this License is not\nalready Covered Code governed by this License.\n\n1.11. \"Source Code\" means the preferred form of the Covered Code for\nmaking modifications to it, including all modules it contains, plus any\nassociated interface definition files, scripts used to control\ncompilation and installation of an Executable, or a list of source code\ndifferential comparisons against either the Original Code or another\nwell known, available Covered Code of the Contributor's choice. The\nSource Code can be in a compressed or archival form, provided the\nappropriate decompression or de-archiving software is widely available\nfor no charge.\n\n1.12. \"You\" means an individual or a legal entity exercising rights\nunder, and complying with all of the terms of, this License or a future\nversion of this License issued under Section 6.1. For legal entities,\n\"You\" includes any entity which controls, is controlled by, or is under\ncommon control with You. For purposes of this definition, \"control\"\nmeans (a) the power, direct or indirect, to cause the direction or\nmanagement of such entity, whether by contract or otherwise, or (b)\nownership of fifty percent (50%) or more of the outstanding shares or\nbeneficial ownership of such entity.\n\n1.13. \"Red Hat Branded Code\" is code that Red Hat distributes and/or\npermits others to distribute under different terms than the Red Hat eCos\nPublic License. Red Hat's Branded Code may contain part or all of the\nCovered Code.\n\n2. SOURCE CODE LICENSE\n\n2.1. The Initial Developer Grant.\n\n The Initial Developer hereby grants You a world-wide, royalty-free,\n non-exclusive license, subject to third party intellectual property\n claims:\n\n (a) to use, reproduce, modify, display, perform, sublicense and\n distribute the Original Code (or portions thereof) with or\n without Modifications, or as part of a Larger Work; and\n\n (b) under patents now or hereafter owned or controlled by\n Initial Developer, to make, have made, use and sell (\"Utilize\")\n the Original Code (or portions thereof), but solely to the\n extent that any such patent is reasonably necessary to enable\n You to Utilize the Original Code (or portions thereof) and not\n to any greater extent that may be necessary to Utilize further\n Modifications or combinations.\n\n2.2. Contributor Grant.\n\n Each Contributor hereby grants You a world-wide, royalty-free, non-\n exclusive license, subject to third party intellectual property\n claims:\n\n (a) to use, reproduce, modify, display, perform, sublicense and\n distribute the Modifications created by such Contributor (or\n portions thereof) either on an unmodified basis, with other\n Modifications, as Covered Code or as part of a Larger Work; and\n\n (b) under patents now or hereafter owned or controlled by\n Contributor, to Utilize the Contributor Version (or portions\n thereof), but solely to the extent that any such patent is\n reasonably necessary to enable You to Utilize the Contributor\n Version (or portions thereof), and not to any greater extent\n that may be necessary to Utilize further Modifications or\n combinations.\n\n3. DISTRIBUTION OBLIGATIONS\n\n3.1. Application of License.\n\n The Modifications which You create or to which You contribute are\n governed by the terms of this License, including without limitation\n Section 2.2. The Source Code version of Covered Code may be\n distributed only under the terms of this License or a future version\n of this License released under Section 6.1, and You must include a\n copy of this License with every copy of the Source Code You\n distribute. You may not offer or impose any terms on any Source Code\n version that alters or restricts the applicable version of this\n License or the recipients' rights hereunder. However, You may\n include an additional document offering the additional rights\n described in Section 3.5.\n\n3.2. Availability of Source Code.\n \n Any Modification which You create or to which You contribute must be\n made available in Source Code form under the terms of this License\n via an accepted Electronic Distribution Mechanism to anyone to whom\n you made an Executable version available and to the Initial\n Developer; and if made available via Electronic Distribution\n Mechanism, must remain available for at least twelve (12) months\n after the date it initially became available, or at least six (6)\n months after a subsequent version of that particular Modification\n has been made available to such recipients. You are responsible for\n ensuring that the Source Code version remains available even if the\n Electronic Distribution Mechanism is maintained by a third party.\n You are responsible for notifying the Initial Developer of the\n Modification and the location of the Source if a contact means is\n provided. Red Hat will be acting as maintainer of the Source and may\n provide an Electronic Distribution mechanism for the Modification to\n be made available. You can contact Red Hat to make the Modification\n available and to notify the Initial Developer.\n (http://sourceware.cygnus.com/ecos/)\n\n3.3. Description of Modifications.\n\n You must cause all Covered Code to which you contribute to contain a\n file documenting the changes You made to create that Covered Code\n and the date of any change. You must include a prominent statement\n that the Modification is derived, directly or indirectly, from\n Original Code provided by the Initial Developer and including the\n name of the Initial Developer in (a) the Source Code, and (b) in any\n notice in an Executable version or related documentation in which\n You describe the origin or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters\n (a) Third Party Claims.\n\n If You have knowledge that a party claims an intellectual\n property right in particular functionality or code (or its\n utilization under this License), you must include a text file\n with the source code distribution titled \"LEGAL\" which describes\n the claim and the party making the claim in sufficient detail\n that a recipient will know whom to contact. If you obtain such\n knowledge after You make Your Modification available as\n described in Section 3.2, You shall promptly modify the LEGAL\n file in all copies You make available thereafter and shall take\n other steps (such as notifying appropriate mailing lists or\n newsgroups) reasonably calculated to inform those who received\n the Covered Code that new knowledge has been obtained.\n\n (b) Contributor APIs.\n\n If Your Modification is an application programming interface and\n You own or control patents which are reasonably necessary to\n implement that API, you must also include this information in\n the LEGAL file.\n\n3.5. Required Notices.\n\n You must duplicate the notice in Exhibit A in each file of the\n Source Code, and this License in any documentation for the Source\n Code, where You describe recipients' rights relating to Covered\n Code. If You created one or more Modification(s), You may add your\n name as a Contributor to the Source Code. If it is not possible to\n put such notice in a particular Source Code file due to its\n structure, then you must include such notice in a location (such as\n a relevant directory file) where a user would be likely to look for\n such a notice. You may choose to offer, and to charge a fee for,\n warranty, support, indemnity or liability obligations to one or more\n recipients of Covered Code.\n\n However, You may do so only on Your own behalf, and not on behalf of\n the Initial Developer or any Contributor. You must make it\n absolutely clear that any such warranty, support, indemnity or\n liability obligation is offered by You alone, and You hereby agree\n to indemnify the Initial Developer and every Contributor for any\n liability incurred by the Initial Developer or such Contributor as a\n result of warranty, support, indemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions.\n\n You may distribute Covered Code in Executable form only if the\n requirements of Section 3.1-3.5 have been met for that Covered Code,\n and if You include a notice stating that the Source Code version of\n the Covered Code is available under the terms of this License,\n including a description of how and where You have fulfilled the\n obligations of Section 3.2. The notice must be conspicuously\n included in any notice in an Executable version, related\n documentation or collateral in which You describe recipients' rights\n relating to the Covered Code. You may distribute the Executable\n version of Covered Code under a license of Your choice, which may\n contain terms different from this License, provided that You are in\n compliance with the terms of this License and that the license for\n the Executable version does not attempt to limit or alter the\n recipient's rights in the Source Code version from the rights set\n forth in this License. If You distribute the Executable version\n under a different license You must make it absolutely clear that any\n terms which differ from this License are offered by You alone, not\n by the Initial Developer or any Contributor. You hereby agree to\n indemnify the Initial Developer and every Contributor for any\n liability incurred by the Initial Developer or such Contributor as a\n result of any such terms You offer.\n\n If you distribute executable versions containing Covered Code, you\n must reproduce the notice in Exhibit B in the documentation and/or\n other materials provided with the product.\n\n3.7. Larger Works.\n\n You may create a Larger Work by combining Covered Code with other\n code not governed by the terms of this License and distribute the\n Larger Work as a single product. In such a case, You must make sure\n the requirements of this License are fulfilled for the Covered Code.\n\n4. INABILITY TO COMPLY DUE TO STATUTE OR REGULATION\n\nIf it is impossible for You to comply with any of the terms of this\nLicense with respect to some or all of the Covered Code due to statute\nor regulation then You must: (a) comply with the terms of this License\nto the maximum extent possible; (b) cite the statute or regulation that\nprohibits you from adhering to the license; and (c) describe the\nlimitations and the code they affect. Such description must be included\nin the LEGAL file described in Section 3.4 and must be included with all\ndistributions of the Source Code. Except to the extent prohibited by\nstatute or regulation, such description must be sufficiently detailed\nfor a recipient of ordinary skill to be able to understand it. You must\nsubmit this LEGAL file to Red Hat for review, and You will not be able\nuse the covered code in any means until permission is granted from Red\nHat to allow for the inability to comply due to statute or regulation.\n\n5. APPLICATION OF THIS LICENSE\n\nThis License applies to code to which the Initial Developer has attached\nthe notice in Exhibit A, and to related Covered Code.\n\nRed Hat may include Covered Code in products without such additional\nproducts becoming subject to the terms of this License, and may license\nsuch additional products on different terms from those contained in this\nLicense.\n\nRed Hat may license the Source Code of Red Hat Branded Code without Red\nHat Branded Code becoming subject to the terms of this License, and may\nlicense Red Hat Branded Code on different terms from those contained in\nthis License. Contact Red Hat for details of alternate licensing terms\navailable.\n\n6. VERSIONS OF THE LICENSE\n\n6.1. New Versions.\n\n Red Hat may publish revised and/or new versions of the License from\n time to time. Each version will be given a distinguishing version\n number.\n\n6.2. Effect of New Versions.\n\n Once Covered Code has been published under a particular version of\n the License, You may always continue to use it under the terms of\n that version. You may also choose to use such Covered Code under the\n terms of any subsequent version of the License published by Red Hat.\n No one other than Red Hat has the right to modify the terms\n applicable to Covered Code beyond what is granted under this and\n subsequent Licenses.\n\n6.3. Derivative Works.\n\n If you create or use a modified version of this License (which you\n may only do in order to apply it to code which is not already\n Covered Code governed by this License), you must (a) rename Your\n license so that the phrases \"ECOS\", \"eCos\", \"Red Hat\", \"RHEPL\" or\n any confusingly similar phrase do not appear anywhere in your\n license and (b) otherwise make it clear that your version of the\n license contains terms which differ from the Red Hat eCos Public\n License. (Filling in the name of the Initial Developer, Original\n Code or Contributor in the notice described in Exhibit A shall not\n of themselves be deemed to be modifications of this License.)\n\n7. DISCLAIMER OF WARRANTY\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT\nWARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT\nLIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS,\nMERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE\nRISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU.\nSHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE\nINITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY\nNECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY\nCONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED\nCODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION\n\nThis License and the rights granted hereunder will terminate\nautomatically if You fail to comply with terms herein and fail to cure\nsuch breach within 30 days of becoming aware of the breach. All\nsublicenses to the Covered Code which are properly granted shall survive\nany termination of this License. Provisions which, by their nature, must\nremain in effect beyond the termination of this License shall survive.\n\n9. LIMITATION OF LIABILITY\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\n(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL\nDEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR\nANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER\nPERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\nOF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF\nGOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL\nOTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\nINFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF\nLIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\nPROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION\nOR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION\nAND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS\n\nThe Covered Code is a \"commercial item,\" as that term is defined in 48\nC.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\"\nand \"commercial computer software documentation,\" as such terms are used\nin 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and\n48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government\nEnd Users acquire Covered Code with only those rights set forth herein.\n\n11. MISCELLANEOUS\n\nThis License represents the complete agreement concerning subject matter\nhereof. If any provision of this License is held to be unenforceable,\nsuch provision shall be reformed only to the extent necessary to make it\nenforceable. This License shall be governed by California law provisions\n(except to the extent applicable law, if any, provides otherwise),\nexcluding its conflict-of-law provisions. With respect to disputes in\nwhich at least one party is a citizen of, or an entity chartered or\nregistered to do business in, the United States of America: (a) unless\notherwise agreed in writing, all disputes relating to this License\n(excepting any dispute relating to intellectual property rights) shall\nbe subject to final and binding arbitration, with the losing party\npaying all costs of arbitration; (b) any arbitration relating to this\nAgreement shall be held in Santa Clara County, California, under the\nauspices of JAMS/EndDispute; and (c) any litigation relating to this\nAgreement shall be subject to the jurisdiction of the Federal Courts of\nthe Northern District of California, with venue lying in Santa Clara\nCounty, California, with the losing party responsible for costs,\nincluding without limitation, court costs and reasonable attorneys fees\nand expenses. The application of the United Nations Convention on\nContracts for the International Sale of Goods is expressly excluded. Any\nlaw or regulation which provides that the language of a contract shall\nbe construed against the drafter shall not apply to this License.\n\n12. RESPONSIBILITY FOR CLAIMS\n\nExcept in cases where another Contributor has failed to comply with\nSection 3.4, You are responsible for damages arising, directly or\nindirectly, out of Your utilization of rights under this License, based\non the number of copies of Covered Code you made available, the revenues\nyou received from utilizing such rights, and other relevant factors. You\nagree to work with affected parties to distribute responsibility on an\nequitable basis.\n\n13. ADDITIONAL TERMS APPLICABLE TO THE RED HAT ECOS PUBLIC LICENSE\n\nNothing in this License shall be interpreted to prohibit Red Hat from\nlicensing under different terms than this License any code which Red Hat\notherwise would have a right to license.\n\nRed Hat and logo - This License does not grant any rights to use the\ntrademark Red Hat, the Red Hat logo, eCos logo, even if such marks are\nincluded in the Original Code. You may contact Red Hat for permission to\ndisplay the Red Hat and eCos marks in either the documentation or the\nExecutable version beyond that required in Exhibit B.\n\nInability to Comply Due to Contractual Obligation - To the extent that\nRed Hat is limited contractually from making third party code available\nunder this License, Red Hat may choose to integrate such third party\ncode into Covered Code without being required to distribute such third\nparty code in Source Code form, even if such third party code would\notherwise be considered \"Modifications\" under this License.\n\nEXHIBIT A\n\n\"The contents of this file are subject to the Red Hat eCos Public \nLicense Version 1.1 (the \"License\"); you may not use this file except in\ncompliance with the License. You may obtain a copy of the License at\nhttp://www.redhat.com/\n\nSoftware distributed under the License is distributed on an \"AS IS\"\nbasis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the\nLicense for the specific language governing rights and limitations under\nthe License.\n\nThe Original Code is eCos - Embedded Configurable Operating System,\nreleased September 30, 1998. The Initial Developer of the Original Code\nis Red Hat. Portions created by Red Hat are Copyright (C) 1998, 1999,\n2000 Red Hat, Inc. All Rights Reserved.\"\n\nEXHIBIT B\n\nPart of the software embedded in this product is eCos - Embedded\nConfigurable Operating System, a trademark of Red Hat. Portions created\nby Red Hat are Copyright (C) 1998, 1999, 2000 Red Hat, Inc.\n(http://www.redhat.com/). All Rights Reserved.\n\nTHE SOFTWARE IN THIS PRODUCT WAS IN PART PROVIDED BY RED HAT AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\nANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\n\neCos and the eCos logo are registered trademarks of eCosCentric Limited.", + "json": "ecosrh-1.1.json", + "yaml": "ecosrh-1.1.yml", + "html": "ecosrh-1.1.html", + "license": "ecosrh-1.1.LICENSE" + }, + { + "license_key": "edrdg-2000", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-edrdg-2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "[EDRDG]\n ****** ELECTRONIC DICTIONARY RESEARCH AND DEVELOPMENT GROUP ******\n ****** GENERAL DICTIONARY LICENCE STATEMENT ******\nEDRDG_Home_Page\n1. Introduction\nIn March 2000, James William Breen assigned ownership of the copyright of the\ndictionary files assembled, coordinated and edited by him to the The Electronic\nDictionary Research and Development Group, then at Monash University (hereafter\n\"the Group\"), on the understanding that the Group will foster the development\nof the dictionary files, and will utilize all monies received for use of the\nfiles for the further development of the files, and for research into computer\nlexicography and electronic dictionaries.\nThis document outlines the licence arrangement put in place by The Group for\nusage of the files. It replaces all previous copyright and licence statements\napplying to the files.\n\n2. Application\nThis licence statement and copyright notice applies to the following dictionary\nfiles, the associated documentation files, and any data files which are derived\nfrom them.\n * JMDICT - Japanese-Multilingual Dictionary File - the Japanese and English\n components (the translational equivalents in other languages, e.g.\n German, French, Dutch, etc. are covered by separate copyright held by the\n compilers of that material.)\n * EDICT - Japanese-English Electronic DICTionary File\n * ENAMDICT - Japanese Names File\n * COMPDIC - Japanese-English Computing and Telecommunications Terminology\n File\n * KANJIDIC2 - File of Information about the Kanji in JIS X 0208, JIS X 0212\n and JIS X 0213 in XML format.\n * KANJIDIC - File of Information about the 6,355 Kanji in the JIS X 0208\n Standard (special conditions apply)\n * KANJD212 - File of Information about the 5,801 Supplementary Kanji in the\n JIS X 0212 Standard\n * EDICT-R - romanized version of the EDICT file. (NB: this file has been\n withdrawn from circulation, and all sites carrying it are requested to\n remove their copies.)\n * RADKFILE/KRADFILE - files relating to the decomposition of the 6,355\n kanji in JIS X 0208 into their visible components.\nCopyright over the documents covered by this statement is held by James William\nBREEN and The Electronic Dictionary Research and Development Group.\n\n3. Licence Conditions\n[http://creativecommons.org/images/public/somerights20.gif]\nThe dictionary files are made available under a Creative Commons Attribution-\nShareAlike Licence (V3.0). The Licence Deed can be viewed here, and the full\nLicence Code is here.\nIn summary (extract from the Licence Deed):\n _____________________________________________________________________________\n|You are free: |\n| * to Share - to copy, distribute and transmit the work |\n| * to Remix - to adapt the work |\n|Under the following conditions: |\n| * Attribution. You must attribute the work in the manner specified by the|\n| author or licensor (but not in any way that suggests that they endorse |\n| you or your use of the work). |\n| * Share Alike. If you alter, transform, or build upon this work, you may |\n| distribute the resulting work only under the same, similar or a |\n| compatible_licence. |\n|_____________________________________________________________________________|\n\nFor attribution of these files, you must:\n a. in the case of publishing significant extracts of the files, or material\n based on significant extracts of the files, e.g. in a published\n dictionary or in vocabulary lists, clearly acknowledge that you used the\n files for this purpose;\n\n b. in the case of a software package, WWW server, smartphone app, etc. which\n uses the files or incorporates data from the files, you must:\n i. acknowledge the usage and source of the files in the documentation,\n publicity material, WWW site of the package/server, etc.;\n ii. provide copies of the documentation and licence files (in the case\n of software packages). Where the application packaging does not\n provide for the inclusion of such files (e.g. with iPhone\n applications), it is sufficient to provide links, as per the next\n point;\n iii. provide links to either local copies of the documentation and\n licence files or to the locations of the files at Monash University\n or at the EDRDG site.\n If a WWW server is providing a dictionary function or an on-screen\n display of words from the files, the acknowledgement must be made\n on each screen display, e.g. in the form of a message at the foot\n of the screen or page. If, however, material from the files is\n mixed with information from other sources, it is sufficient to\n provide a general acknowledgement of the sources as described\n above.\n For smartphone and tablet apps, acknowledgement must be made, e.g.\n on a separate screen accessed from a menu, such as one labelled\n \"About\", \"Sources\", etc. It is not sufficient just to mention it on\n a start-up/launch page of the app.\n For the EDICT, JMdict and KANJIDIC files, the following URLs may be\n used or quoted:\n # http://www.edrdg.org/wiki/index.php/JMdict-\n EDICT_Dictionary_Project\n # http://www.edrdg.org/wiki/index.php/KANJIDIC_Project\nSee this_page for samples of possible acknowledgement text.\nNote that in all cases, the addition of material to the files or to extracts\nfrom the files does not remove or in any way diminish the Group's copyright\nover the files. Users of material from the files must NOT claim copyright over\nthat material.\nNote also that provided the conditions above are met, there is NO restriction\nplaced on commercial use of the files. The files can be bundled with software\nand sold for whatever the developer wants to charge. Software using these files\ndoes not have to be under any form of open-source licence.\nWhere use of the files results in a financial return to the user, it is\nsuggested that the user make a donation to the Group to assist with the\ncontinued development of the files. The only method currently available is to\nmake a donation via PayPal using a credit or debit card. Simply click on the\nfollowing button and follow the instructions.\n [Submit https://www.paypal.com/en_US/i/btn/x-click-but21.gif]\nNB: No contract or agreement needs to be signed in order to use the files. By\nusing the files, the user implicitly undertakes to abide by the conditions of\nthis licence.\n\n4. Updating Dictionary Versions\nIf a software package, WWW server, smartphone app, etc. uses the files or\nincorporates data from the files, there must be a procedure for regular\nupdating of the data from the most recent versions available. For example, WWW-\nbased dictionary servers should update their dictionary versions at least once\na month. Failure to keep the versions up-to-date is a violation of the licence\nto use the data.\n\n5. Warranty and Liability\nWhile every effort has been made to ensure the accuracy of the information in\nthe files, it is possible that errors may still be included. The files are made\navailable without any warranty whatsoever as to their accuracy or suitability\nfor a particular application.\nAny individual or organization making use of the files must agree:\n a. to assume all liability for the use or misuse of the files, and must\n agree not to hold the Group liable for any actions or events resulting\n from use of the files.\n b. to refrain from bringing action or suit or claim against the Group or any\n of the Group's members on the basis of the use of the files, or any\n information included in the files.\n c. to indemnify the Group or its members in the case of action by a third\n party on the basis of the use of the files, or any information included\n in the files.\n\n6. Copyright\nEvery effort has been made in the compilation of these files to ensure that the\ncopyright of other compilers of dictionaries and lexicographic material has not\nbeen infringed. The Group asserts its intention to rectify immediately any\nbreach of copyright brought to its attention.\nAny individual or organization in possession of copies of the files, upon\nbecoming aware that a possible copyright infringement may be present in the\nfiles, must undertake to contact the Group immediately with details of the\npossible infringement.\n\n7. Prior Permission\nAll permissions for use of the files granted by James William Breen prior to\nMarch 2000 will be honoured and maintained, however the placing of the KANJD212\nand EDICTH files under the GNU GPL has been withdrawn as of 25 March 2000.\n\n8. Special Conditions for the KANJIDIC, KANJD212 and KANJIDIC2 Files\nIn addition to licensing arrangements described above, the following additional\nconditions apply to the KANJIDIC, KANJD212 and KANJIDIC2 files.\nThe following people have granted permission for material for which they hold\ncopyright to be included in the files, and distributed under the above\nconditions, while retaining their copyright over that material:\nJack HALPERN: The SKIP codes.\nNote that the SKIP codes are under their own similar Creative Common licence.\nSee Jack Halpern's conditions_of_use page.\nChristian WITTERN and Koichi YASUOKA: The Pinyin information.\nUrs APP: the Four Corner codes and the Morohashi information.\nMark SPAHN and Wolfgang HADAMITZKY: the kanji descriptors from their\ndictionary.\nCharles MULLER: the Korean readings.\nJoseph DE ROO: the De Roo codes.\n\n9. Enquiries\nAll enquiries to:\nThe Electronic Dictionary Research and Development Group\nAttn: Dr Jim Breen\n(jimbreen@gmail.com)", + "json": "edrdg-2000.json", + "yaml": "edrdg-2000.yml", + "html": "edrdg-2000.html", + "license": "edrdg-2000.LICENSE" + }, + { + "license_key": "efl-1.0", + "category": "Permissive", + "spdx_license_key": "EFL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Eiffel Forum License, version 1\n\nPermission is hereby granted to use, copy, modify and/or distribute\nthis package, provided that:\n\n - copyright notices are retained unchanged\n\n - any distribution of this package, whether modified or not,\n includes this file\n\nPermission is hereby also granted to distribute binary programs which\ndepend on this package, provided that:\n\n - if the binary program depends on a modified version of this\n package, you must publicly release the modified version of this\n package\n\nTHIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT WARRANTY. ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE TO ANY PARTY FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES ARISING IN ANY WAY OUT OF THE USE OF THIS PACKAGE.", + "json": "efl-1.0.json", + "yaml": "efl-1.0.yml", + "html": "efl-1.0.html", + "license": "efl-1.0.LICENSE" + }, + { + "license_key": "efl-2.0", + "category": "Permissive", + "spdx_license_key": "EFL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Eiffel Forum License, version 2\n\n 1. Permission is hereby granted to use, copy, modify and/or\n distribute this package, provided that:\n * copyright notices are retained unchanged,\n * any distribution of this package, whether modified or not,\n includes this license text.\n 2. Permission is hereby also granted to distribute binary programs\n which depend on this package. If the binary program depends on a\n modified version of this package, you are encouraged to publicly\n release the modified version of this package.\n\n***********************\n\nTHIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT WARRANTY. ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE TO ANY PARTY FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES ARISING IN ANY WAY OUT OF THE USE OF THIS PACKAGE.\n\n***********************", + "json": "efl-2.0.json", + "yaml": "efl-2.0.yml", + "html": "efl-2.0.html", + "license": "efl-2.0.LICENSE" + }, + { + "license_key": "efsl-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-efsl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Eclipse Foundation Specification License - v1.0\n\nBy using and/or copying this document, or the Eclipse Foundation document from\nwhich this statement is linked, you (the licensee) agree that you have read,\nunderstood, and will comply with the following terms and conditions:\n\nPermission to copy, and distribute the contents of this document, or the Eclipse\nFoundation document from which this statement is linked, in any medium for any\npurpose and without fee or royalty is hereby granted, provided that you include\nthe following on ALL copies of the document, or portions thereof, that you use:\n\n- link or URL to the original Eclipse Foundation document.\n- All existing copyright notices, or if one does not exist, a notice (hypertext\n is preferred, but a textual representation is permitted) of the form:\n\"Copyright \u00a9 [$date-of-document] Eclipse Foundation, Inc. <>\"\n\nInclusion of the full text of this NOTICE must be provided. We request that\nauthorship attribution be provided in any software, documents, or other items or\nproducts that you create pursuant to the implementation of the contents of this\ndocument, or any portion thereof.\n\nNo right to create modifications or derivatives of Eclipse Foundation documents\nis granted pursuant to this license, except anyone may prepare and distribute\nderivative works and portions of this document in software that implements the\nspecification, in supporting materials accompanying such software, and in\ndocumentation of such software, PROVIDED that all such works include the notice\nbelow. HOWEVER, the publication of derivative works of this document for use as\na technical specification is expressly prohibited.\n\nThe notice is:\n\n\"Copyright \u00a9 [$date-of-document] Eclipse Foundation. This software or document\nincludes material copied from or derived from [title and URI of the Eclipse\nFoundation specification document].\"\n\nDisclaimers\n\nTHIS DOCUMENT IS PROVIDED \"AS IS,\" AND THE COPYRIGHT HOLDERS AND THE ECLIPSE\nFOUNDATION MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING,\nBUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\nPURPOSE, NON-INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE DOCUMENT ARE\nSUITABLE FOR ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT\nINFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\nTHE COPYRIGHT HOLDERS AND THE ECLIPSE FOUNDATION WILL NOT BE LIABLE FOR ANY\nDIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE\nDOCUMENT OR THE PERFORMANCE OR IMPLEMENTATION OF THE CONTENTS THEREOF.\n\nThe name and trademarks of the copyright holders or the Eclipse Foundation may\nNOT be used in advertising or publicity pertaining to this document or its\ncontents without specific, written prior permission. Title to copyright in this\ndocument will at all times remain with copyright holders.", + "json": "efsl-1.0.json", + "yaml": "efsl-1.0.yml", + "html": "efsl-1.0.html", + "license": "efsl-1.0.LICENSE" + }, + { + "license_key": "egenix-1.0.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-egenix-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " EGENIX.COM PUBLIC LICENSE AGREEMENT VERSION 1.0.0\n\n1. Introduction\n\nThis \"License Agreement\" is between eGenix.com Software, Skills and Services GmbH (\"eGenix.com\"), having an office at Pastor-Loeh-Str. 48, D-40764 Langenfeld, Germany, and the Individual or Organization (\"Licensee\") accessing and otherwise using this software in source or binary form and its associated documentation (\"the Software\").\n\n2. License\n\nSubject to the terms and conditions of this eGenix.com Public License Agreement, eGenix.com 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 eGenix.com Public License Agreement is retained in the Software, or in any derivative version of the Software prepared by Licensee.\n\n3. NO WARRANTY\n\neGenix.com is making the Software available to Licensee on an \"AS IS\" basis. SUBJECT TO ANY STATUTORY WARRANTIES WHICH CAN NOT BE EXCLUDED, EGENIX.COM MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, EGENIX.COM 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.\n\n4. LIMITATION OF LIABILITY\n\nEGENIX.COM SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER PECUNIARY LOSS) AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\nSOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE EXCLUSION OR LIMITATION MAY NOT APPLY TO LICENSEE.\n\n5. Termination\n\nThis License Agreement will automatically terminate upon a material breach of its terms and conditions.\n\n6. General\n\nNothing in this License Agreement affects any statutory rights of consumers that cannot be waived or limited by contract.\n\nNothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between eGenix.com and Licensee.\n\nIf any provision of this License Agreement shall be unlawful, void, or for any reason unenforceable, such provision shall be modified to the extent necessary to render it enforceable without losing its intent, or, if no such modification is possible, be severed from this License Agreement and shall not affect the validity and enforceability of the remaining provisions of this License Agreement.\n\nThis License Agreement shall be governed by and interpreted in all respects by the law of Germany, excluding conflict of law provisions. It shall not be governed by the United Nations Convention on Contracts for International Sale of Goods.\n\nThis License Agreement does not grant permission to use eGenix.com trademarks or trade names in a trademark sense to endorse or promote products or services of Licensee, or any third party.\n\nThe controlling language of this License Agreement is English. If Licensee has received a translation into another language, it has been provided for Licensee's convenience only.\n\n7. Agreement\n\nBy downloading, copying, installing or otherwise using the Software, Licensee agrees to be bound by the terms and conditions of this License Agreement.", + "json": "egenix-1.0.0.json", + "yaml": "egenix-1.0.0.yml", + "html": "egenix-1.0.0.html", + "license": "egenix-1.0.0.LICENSE" + }, + { + "license_key": "egenix-1.1.0", + "category": "Permissive", + "spdx_license_key": "eGenix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "EGENIX.COM PUBLIC LICENSE AGREEMENT \nVersion 1.1.0 \n\nThis license agreement is based on the Python CNRI License Agreement, a widely accepted open- source license. \n\n1. Introduction \nThis \"License Agreement\" is between eGenix.com Software, Skills and Services GmbH (\"eGenix.com\"), having an office at Pastor-Loeh-Str. 48, D-40764 Langenfeld, Germany, and the Individual or Organization (\"Licensee\") accessing and otherwise using this software in source or binary form and its associated documentation (\"the Software\"). \n\n2. License \nSubject to the terms and conditions of this eGenix.com Public License Agreement, eGenix.com 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 eGenix.com Public License Agreement is retained in the Software, or in any derivative version of the Software prepared by Licensee. \n\n3. NO WARRANTY \neGenix.com is making the Software available to Licensee on an \"AS IS\" basis. SUBJECT TO ANY STATUTORY WARRANTIES WHICH CAN NOT BE EXCLUDED, EGENIX.COM MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, EGENIX.COM 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. \n\n4. LIMITATION OF LIABILITY \nEGENIX.COM SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER PECUNIARY LOSS) AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE EXCLUSION OR LIMITATION MAY NOT APPLY TO LICENSEE. \n\n5. Termination \nThis License Agreement will automatically terminate upon a material breach of its terms and conditions. \n\n6. Third Party Rights \nAny software or documentation in source or binary form provided along with the Software that is associated with a separate license agreement is licensed to Licensee under the terms of that license agreement. This License Agreement does not apply to those portions of the Software. Copies of the third party licenses are included in the Software Distribution. \n\n7. General \nNothing in this License Agreement affects any statutory rights of consumers that cannot be waived or limited by contract. \n\nNothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between eGenix.com and Licensee. \n\nIf any provision of this License Agreement shall be unlawful, void, or for any reason unenforceable, such provision shall be modified to the extent necessary to render it enforceable without losing its intent, or, if no such modification is possible, be severed from this License Agreement and shall not affect the validity and enforceability of the remaining provisions of this License Agreement. \n\nThis License Agreement shall be governed by and interpreted in all respects by the law of Germany, excluding conflict of law provisions. It shall not be governed by the United Nations Convention on Contracts for International Sale of Goods. This License Agreement does not grant permission to use eGenix.com trademarks or trade names in a trademark sense to endorse or promote products or services of Licensee, or any third party. \n\nThe controlling language of this License Agreement is English. If Licensee has received a translation into another language, it has been provided for Licensee's convenience only. \n\n8. Agreement \nBy downloading, copying, installing or otherwise using the Software, Licensee agrees to be bound by the terms and conditions of this License Agreement. For question regarding this License Agreement, please write to: \n eGenix.com Software, Skills and Services GmbH \n Pastor-Loeh-Str. 48 \n D-40764 Langenfeld \n Germany", + "json": "egenix-1.1.0.json", + "yaml": "egenix-1.1.0.yml", + "html": "egenix-1.1.0.html", + "license": "egenix-1.1.0.LICENSE" + }, + { + "license_key": "egrappler", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-egrappler", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "All files at egrappler.com are free for personal and commercial use.\nHowever, you cannot redistribute, sale, re-upload these files. \nDo not offer download links at your site without written consent of the author.\nDo not use any content plugin or template from egrappler.com for anything that\ncontains adult, gambling contents.\nAlways link to original post if you want to spread the word.", + "json": "egrappler.json", + "yaml": "egrappler.yml", + "html": "egrappler.html", + "license": "egrappler.LICENSE" + }, + { + "license_key": "ej-technologies-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ej-technologies-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ej-technologies-EULA\nhttp://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html\n\nIMPORTANT-READ CAREFULLY: This End-User License Agreement (\"EULA\") is a legal\nagreement between you (either an individual or a single legal entity) and\nej-technologies GmbH (ej-technologies), which covers your use of JProfiler and\nrelated software components (\"Software Product\" or JProfiler).\n\nA software license and a license key or serial number (\"Software Product\nLicense\"), issued only by ej-technologies or its authorized agents to a\ndesignated user may be required according to the following agreement.\n\nIf you do not agree to the terms of this EULA, then do not download, install\nor use the Software Product or the Software Product License. By explicitly\naccepting this EULA you are acknowledging and agreeing to be bound by the\nfollowing terms:\n\n1. GRANT OF LICENSE\n\nThe Software Product is owned by ej-technologies. It is licensed, not sold.\nThe Software Product is protected by copyright laws and international\ncopyright treaties, as well as other intellectual property laws and treaties.\nej-technologies reserves all intellectual property rights, including\ncopyrights and trademark rights.\n\nAccording to your order, ej-technologies grants you a non-exclusive,\nnon-transferable license to use the Software Product under certain obligations\nand limited rights as set forth in this agreement:\n\n\n- SINGLE-USER LICENSE: ej-technologies grants the non-exclusive,\n non-transferable right for a single user to use this Software Product. Each\n additional user of the Software Product requires an additional Software\n Product License. You may use each Software Product License on more than one\n computer system, as long as it is always used by the same user. You may\n transfer the Software Product License to a different user only if you remove\n all previous installations completely.\n\n- SINGLE-MACHINE LICENSE: ej-technologies grants the non-exclusive,\n non-transferable right to install this Software Product on a single computer\n system. Each additional installation of the Software Product requires an\n additional Software Product License. You may transfer the Software Product\n License to a different computer system only if you remove the previous\n installation completely.\n\n- FLOATING LICENSE: ej-technologies grants the non-exclusive, non-transferable\n right to install this Software Product on multiple computer systems. An\n arbitrary number of users may install the Software Product, but the maximum\n number of concurrently running instances is limited according to your order.\n Each additional concurrent user of the Software Product requires an\n additional Software Product License. ej-technologies provides you with a\n License Server that manages the use of floating licenses. You agree to be\n bound by the separate license agreement of the license server.\n\n- SITE LICENSE: ej-technologies grants the non-exclusive, non-transferable\n right to install and use this Software Product on an arbitrary number of\n computer systems on one site.\n\n\nej-technologies issues a Software Product License that allows you to use the\nSoftware Product accordingly. You may not disclose the Software Product\nLicense in any way.\n\nBackup Copy: You may make copies of the Software Product and the Software\nProduct License as reasonably necessary for the use authorized above,\nincluding as needed for backup and/or archival purposes. No other copies may\nbe made. Each copy must reproduce all copyright and other proprietary rights\nnotices on or in the Software Product.\n\n2. LICENSE TO DISTRIBUTE REDISTRIBUTABLE FILES\n\nej-technologies grants you a non-exclusive, non-transferable, limited license\nto distribute all parts of JProfiler that are required for running the\nprofiling agent provided that:\n\n- You remove your license key from the redistributed configuration file\n (\"config.xml\")\n\n- You do not remove or alter any proprietary legends or notices contained in\n or on the redistributables\n\n- You only distribute the redistributables with a license agreement that\n protects ej-technologies' interests consistently with the terms contained in\n this agreement\n\n- You agree to defend and indemnify ej-technologies from and against any\n damages, costs, liabilities, settlement amounts and/or expenses (including\n attorneys' fees) incurred in connection with any claim, lawsuit or action by\n any third party that arises or results from the use or distribution of any\n redistributable files.\n\n3. RESTRICTED USE FOR EVALUATION\n\nThis Software Product can be used in conjunction with a free evaluation\nSoftware Product License. If you are using such an evaluation Software Product\nLicense, you may use the Software Product only to evaluate its suitability for\npurchase. Evaluation Software has been limited in some way either through\ntimeouts, restricted use or evaluation warnings. ej-technologies bears no\nliability for any damages resulting from use (or attempted use after\nexpiration) of the software product, and has no duty to provide any support\nbefore or after the expiration date of an evaluation license.\n\n4. SUPPORT SERVICES\n\nej-technologies may provide you with support services related to the Software\nProduct according to your order. Use of any such support services is governed\nby policies described on ej-technologies' web site\n(http://www.ej-technologies.com).\n\nAny supplemental software code or related materials that ej-technologies\nprovides to you as part of the support services, in periodic updates to the\nSoftware Product or otherwise, is to be considered part of the Software\nProduct and is subject to the terms and conditions of this EULA.\n\nWith respect to any technical information you provide to ej-technologies as\npart of the support services, ej-technologies may use such information for its\nbusiness purposes without restriction, including for product support and\ndevelopment. ej-technologies will not use such technical information in a form\nthat personally identifies you without first obtaining your permission.\n\n5. RESTRICTIONS\n\nYou may not use, copy, or distribute the Software Product, except as granted\nby this EULA, without written authorization from ej-technologies.\n\nYou may not tamper with, alter, or use the Software Product in a way that\ndisables, circumvents, or otherwise defeats its built-in licensing\nverification and enforcement capabilities.\n\nYou may not remove or alter any trademark, logo, copyright or other\nproprietary notice, legend, symbol or label in the Software Product. You may\nnot modify or create derivative copies of the Software Product License.\n\nYou may not reverse engineer, decompile, defeat license encryption mechanisms,\nor disassemble the Software Product or Software Product License except and\nonly to the extent that such activity is expressly permitted by applicable law\nnotwithstanding this limitation. You may not rent, lease, lend, or in any way\ndistribute or transfer any rights in this EULA or the Software Product to\nthird parties without ej-technologies' written approval, and subject to\nwritten agreement by the recipient of the terms of this EULA.\n\nThe Software Product is not fault-tolerant and is not designed, manufactured\nor intended for use or resale as on-line control equipment in hazardous\nenvironments requiring fail-safe performance, in which the failure of the\nSoftware Product, or any software, tool, process, or service that was\ndeveloped using the Software Product, could lead directly to death, personal\ninjury, or severe physical or environmental damage (\"High Risk Activities\").\nAccordingly, ej-technologies and its suppliers and licensors specifically\ndisclaim any express or implied warranty of fitness for High Risk Activities.\nYou agree that ej-technologies and its suppliers and licensors will not be\nliable for any claims or damages arising from the use of the Software Product,\nor any software, tool, process, or service that was developed using the\nSoftware Product, in such applications.\n\n6. THIRD PARTY RIGHTS\n\nAny software provided along with the Software Product that is associated with\na separate license agreement is licensed to you under the terms of that\nlicense agreement. This license does not apply to those portions of the\nSoftware Product. Copies of these third party licenses are included in all\ncopies of the Software Product.\n\n7. LIMITED WARRANTY\n\nYou have ensured with the above mentioned evaluation version that the Software\nProduct works according to your requirements and the advertised features.\nej-technologies disclaims all warranties for deficiencies that are reasonably\ndiscoverable with the evaluation version of the Software Product. You\nacknowledge that software cannot be completely error-free. ej-technologies\ndisclaims all warranties regarding non-severe deviations of the advertised\nfeatures of the Software Product.\n\nThe limitation period is one year, if not otherwise regulated by law, and\nstarts with the service provision.\n\nTo the maximum extent permitted by applicable law, ej-technologies and its\nthird party suppliers and licensors disclaim all other representations,\nwarranties, and conditions, expressed, implied, statutory, or otherwise,\nincluding, but not limited to, implied warranties or conditions of\nmerchantability, satisfactory quality, fitness for a particular purpose,\ntitle, and non-infringement. The entire risk arising out of use or performance\nof the software product remains with you.\n\n8. LIMITATION OF LIABILITY\n\nThis limitation of liability is to the maximum extent permitted by applicable\nlaw. ej-technologies is liable to indemnity only according to the following\nterms:\n\nej-technologies is fully liable in case of intention, gross negligence, loss\nfrom physical injury, severe organizational failure or in case of an\nacceptance of guarantee.\n\nLiability for slight negligence is limited to material breach of contractual\nobligations and in that case to the typically predictable loss. Any further\nliability is excluded. Contributory negligence of the licensee and other\nparties will be taken into account. Any liability under the terms of product\nliability laws remains unaffected.\n\nYou agree to ensure that a data backup is performed on all computers that the\nSoftware Product or redistributable parts of it are used on. In case of loss\nof data, liability is limited to the cost that would arise in the case where a\nproper backup has been performed.\n\nThe limitation period is one year, if not otherwise regulated by law, and\nstarts with the service provision.\n\nAny limitation of ej-technologies' liability also applies to your staff,\nagents and associated companies.\n\n9. GENERAL\n\nej-technologies may terminate this EULA if you fail to comply with any term or\ncondition of this EULA. In such event, you must destroy all copies of the\nSoftware Product and Software Product Licenses.\n\nThis EULA is governed by the laws of Germany. Exclusive jurisdiction and place\nof performance is Muenchen, Germany, as long as permitted by applicable law.\nThe United Nations Convention for the International Sale of Goods shall not\napply.\n\nThis EULA is the entire agreement between ej-technologies and you, and\nsupersedes any other communications or advertising with respect to the\nSoftware Product; this EULA may be modified only by written agreement signed\nby authorized representatives of you and ej-technologies.\n\nIf any provision of this EULA is held invalid, the remainder of this EULA\nshall continue in full force and effect.\n\nAll rights not expressly granted in this agreement are retained by\nej-technologies.\n\n10. CONTACT INFORMATION\n\nIf you have any questions about this EULA, or if you want to contact\nej-technologies for any reason, please direct correspondence to\nej-technologies GmbH, Claude-Lorrain-Str. 7, D-81543 Muenchen, Germany, or\nsend email to info@ej-technologies.com.", + "json": "ej-technologies-eula.json", + "yaml": "ej-technologies-eula.yml", + "html": "ej-technologies-eula.html", + "license": "ej-technologies-eula.LICENSE" + }, + { + "license_key": "ekiga-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ekiga-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Ekiga/GnomeMeeting is licensed under the GNU GPL license and as a special \nexception, you have permission to link or otherwise combine this program with \nthe programs OPAL, OpenH323, PWLIB, and OpenSSL, and distribute \nthe combination, without applying the requirements of the GNU GPL to these \nprograms, as long as you do follow the requirements of the GNU GPL for all the\nrest of the software thus combined.", + "json": "ekiga-exception-2.0-plus.json", + "yaml": "ekiga-exception-2.0-plus.yml", + "html": "ekiga-exception-2.0-plus.html", + "license": "ekiga-exception-2.0-plus.LICENSE" + }, + { + "license_key": "ekioh", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation\nthe rights to use, copy, modify, merge, publish, distribute, sublicense,\nand/or sell copies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following conditions:\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "json": "ekioh.json", + "yaml": "ekioh.yml", + "html": "ekioh.html", + "license": "ekioh.LICENSE" + }, + { + "license_key": "elastic-license-2018", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-elastic-license-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ELASTIC LICENSE AGREEMENT\n\nPLEASE READ CAREFULLY THIS ELASTIC LICENSE AGREEMENT (THIS \"AGREEMENT\"), WHICH\nCONSTITUTES A LEGALLY BINDING AGREEMENT AND GOVERNS ALL OF YOUR USE OF ALL OF\nTHE ELASTIC SOFTWARE WITH WHICH THIS AGREEMENT IS INCLUDED (\"ELASTIC SOFTWARE\")\nTHAT IS PROVIDED IN OBJECT CODE FORMAT, AND, IN ACCORDANCE WITH SECTION 2 BELOW,\nCERTAIN OF THE ELASTIC SOFTWARE THAT IS PROVIDED IN SOURCE CODE FORMAT. BY\nINSTALLING OR USING ANY OF THE ELASTIC SOFTWARE GOVERNED BY THIS AGREEMENT, YOU\nARE ASSENTING TO THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE\nWITH SUCH TERMS AND CONDITIONS, YOU MAY NOT INSTALL OR USE THE ELASTIC SOFTWARE\nGOVERNED BY THIS AGREEMENT. IF YOU ARE INSTALLING OR USING THE SOFTWARE ON\nBEHALF OF A LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE THE ACTUAL\nAUTHORITY TO AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT ON BEHALF OF\nSUCH ENTITY.\n\nPosted Date: April 20, 2018\n\nThis Agreement is entered into by and between Elasticsearch BV (\"Elastic\") and\nYou, or the legal entity on behalf of whom You are acting (as applicable,\n\"You\").\n\n1. OBJECT CODE END USER LICENSES, RESTRICTIONS AND THIRD PARTY OPEN SOURCE\nSOFTWARE\n\n 1.1 Object Code End User License. Subject to the terms and conditions of\n Section 1.2 of this Agreement, Elastic hereby grants to You, AT NO CHARGE and\n for so long as you are not in breach of any provision of this Agreement, a\n License to the Basic Features and Functions of the Elastic Software.\n\n 1.2 Reservation of Rights; Restrictions. As between Elastic and You, Elastic\n and its licensors own all right, title and interest in and to the Elastic\n Software, and except as expressly set forth in Sections 1.1, and 2.1 of this\n Agreement, no other license to the Elastic Software is granted to You under\n this Agreement, by implication, estoppel or otherwise. You agree not to: (i)\n reverse engineer or decompile, decrypt, disassemble or otherwise reduce any\n Elastic Software provided to You in Object Code, or any portion thereof, to\n Source Code, except and only to the extent any such restriction is prohibited\n by applicable law, (ii) except as expressly permitted in this Agreement,\n prepare derivative works from, modify, copy or use the Elastic Software Object\n Code or the Commercial Software Source Code in any manner; (iii) except as\n expressly permitted in Section 1.1 above, transfer, sell, rent, lease,\n distribute, sublicense, loan or otherwise transfer, Elastic Software Object\n Code, in whole or in part, to any third party; (iv) use Elastic Software\n Object Code for providing time-sharing services, any software-as-a-service,\n service bureau services or as part of an application services provider or\n other service offering (collectively, \"SaaS Offering\") where obtaining access\n to the Elastic Software or the features and functions of the Elastic Software\n is a primary reason or substantial motivation for users of the SaaS Offering\n to access and/or use the SaaS Offering (\"Prohibited SaaS Offering\"); (v)\n circumvent the limitations on use of Elastic Software provided to You in\n Object Code format that are imposed or preserved by any License Key, or (vi)\n alter or remove any Marks and Notices in the Elastic Software. If You have any\n question as to whether a specific SaaS Offering constitutes a Prohibited SaaS\n Offering, or are interested in obtaining Elastic's permission to engage in\n commercial or non-commercial distribution of the Elastic Software, please\n contact elastic_license@elastic.co.\n\n 1.3 Third Party Open Source Software. The Commercial Software may contain or\n be provided with third party open source libraries, components, utilities and\n other open source software (collectively, \"Open Source Software\"), which Open\n Source Software may have applicable license terms as identified on a website\n designated by Elastic. Notwithstanding anything to the contrary herein, use of\n the Open Source Software shall be subject to the license terms and conditions\n applicable to such Open Source Software, to the extent required by the\n applicable licensor (which terms shall not restrict the license rights granted\n to You hereunder, but may contain additional rights). To the extent any\n condition of this Agreement conflicts with any license to the Open Source\n Software, the Open Source Software license will govern with respect to such\n Open Source Software only. Elastic may also separately provide you with\n certain open source software that is licensed by Elastic. Your use of such\n Elastic open source software will not be governed by this Agreement, but by\n the applicable open source license terms.\n\n2. COMMERCIAL SOFTWARE SOURCE CODE\n\n 2.1 Limited License. Subject to the terms and conditions of Section 2.2 of\n this Agreement, Elastic hereby grants to You, AT NO CHARGE and for so long as\n you are not in breach of any provision of this Agreement, a limited,\n non-exclusive, non-transferable, fully paid up royalty free right and license\n to the Commercial Software in Source Code format, without the right to grant\n or authorize sublicenses, to prepare Derivative Works of the Commercial\n Software, provided You (i) do not hack the licensing mechanism, or otherwise\n circumvent the intended limitations on the use of Elastic Software to enable\n features other than Basic Features and Functions or those features You are\n entitled to as part of a Subscription, and (ii) use the resulting object code\n only for reasonable testing purposes.\n\n 2.2 Restrictions. Nothing in Section 2.1 grants You the right to (i) use the\n Commercial Software Source Code other than in accordance with Section 2.1\n above, (ii) use a Derivative Work of the Commercial Software outside of a\n Non-production Environment, in any production capacity, on a temporary or\n permanent basis, or (iii) transfer, sell, rent, lease, distribute, sublicense,\n loan or otherwise make available the Commercial Software Source Code, in whole\n or in part, to any third party. Notwithstanding the foregoing, You may\n maintain a copy of the repository in which the Source Code of the Commercial\n Software resides and that copy may be publicly accessible, provided that you\n include this Agreement with Your copy of the repository.\n\n3. TERMINATION\n\n 3.1 Termination. This Agreement will automatically terminate, whether or not\n You receive notice of such Termination from Elastic, if You breach any of its\n provisions.\n\n 3.2 Post Termination. Upon any termination of this Agreement, for any reason,\n You shall promptly cease the use of the Elastic Software in Object Code format\n and cease use of the Commercial Software in Source Code format. For the\n avoidance of doubt, termination of this Agreement will not affect Your right\n to use Elastic Software, in either Object Code or Source Code formats, made\n available under the Apache License Version 2.0.\n\n 3.3 Survival. Sections 1.2, 2.2. 3.3, 4 and 5 shall survive any termination or\n expiration of this Agreement.\n\n4. DISCLAIMER OF WARRANTIES AND LIMITATION OF LIABILITY\n\n 4.1 Disclaimer of Warranties. TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE\n LAW, THE ELASTIC SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND,\n AND ELASTIC AND ITS LICENSORS MAKE NO WARRANTIES WHETHER EXPRESSED, IMPLIED OR\n STATUTORY REGARDING OR RELATING TO THE ELASTIC SOFTWARE. TO THE MAXIMUM EXTENT\n PERMITTED UNDER APPLICABLE LAW, ELASTIC AND ITS LICENSORS SPECIFICALLY\n DISCLAIM ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\n PURPOSE AND NON-INFRINGEMENT WITH RESPECT TO THE ELASTIC SOFTWARE, AND WITH\n RESPECT TO THE USE OF THE FOREGOING. FURTHER, ELASTIC DOES NOT WARRANT RESULTS\n OF USE OR THAT THE ELASTIC SOFTWARE WILL BE ERROR FREE OR THAT THE USE OF THE\n ELASTIC SOFTWARE WILL BE UNINTERRUPTED.\n\n 4.2 Limitation of Liability. IN NO EVENT SHALL ELASTIC OR ITS LICENSORS BE\n LIABLE TO YOU OR ANY THIRD PARTY FOR ANY DIRECT OR INDIRECT DAMAGES,\n INCLUDING, WITHOUT LIMITATION, FOR ANY LOSS OF PROFITS, LOSS OF USE, BUSINESS\n INTERRUPTION, LOSS OF DATA, COST OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY\n SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OF ANY KIND, IN CONNECTION WITH\n OR ARISING OUT OF THE USE OR INABILITY TO USE THE ELASTIC SOFTWARE, OR THE\n PERFORMANCE OF OR FAILURE TO PERFORM THIS AGREEMENT, WHETHER ALLEGED AS A\n BREACH OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, EVEN IF ELASTIC\n HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n5. MISCELLANEOUS\n\n This Agreement completely and exclusively states the entire agreement of the\n parties regarding the subject matter herein, and it supersedes, and its terms\n govern, all prior proposals, agreements, or other communications between the\n parties, oral or written, regarding such subject matter. This Agreement may be\n modified by Elastic from time to time, and any such modifications will be\n effective upon the \"Posted Date\" set forth at the top of the modified\n Agreement. If any provision hereof is held unenforceable, this Agreement will\n continue without said provision and be interpreted to reflect the original\n intent of the parties. This Agreement and any non-contractual obligation\n arising out of or in connection with it, is governed exclusively by Dutch law.\n This Agreement shall not be governed by the 1980 UN Convention on Contracts\n for the International Sale of Goods. All disputes arising out of or in\n connection with this Agreement, including its existence and validity, shall be\n resolved by the courts with jurisdiction in Amsterdam, The Netherlands, except\n where mandatory law provides for the courts at another location in The\n Netherlands to have jurisdiction. The parties hereby irrevocably waive any and\n all claims and defenses either might otherwise have in any such action or\n proceeding in any of such courts based upon any alleged lack of personal\n jurisdiction, improper venue, forum non conveniens or any similar claim or\n defense. A breach or threatened breach, by You of Section 2 may cause\n irreparable harm for which damages at law may not provide adequate relief, and\n therefore Elastic shall be entitled to seek injunctive relief without being\n required to post a bond. You may not assign this Agreement (including by\n operation of law in connection with a merger or acquisition), in whole or in\n part to any third party without the prior written consent of Elastic, which\n may be withheld or granted by Elastic in its sole and absolute discretion.\n Any assignment in violation of the preceding sentence is void. Notices to\n Elastic may also be sent to legal@elastic.co.\n\n6. DEFINITIONS\n\n The following terms have the meanings ascribed:\n\n 6.1 \"Affiliate\" means, with respect to a party, any entity that controls, is\n controlled by, or which is under common control with, such party, where\n \"control\" means ownership of at least fifty percent (50%) of the outstanding\n voting shares of the entity, or the contractual right to establish policy for,\n and manage the operations of, the entity.\n\n 6.2 \"Basic Features and Functions\" means those features and functions of the\n Elastic Software that are eligible for use under a Basic license, as set forth\n at https://www.elastic.co/subscriptions, as may be modified by Elastic from\n time to time.\n\n 6.3 \"Commercial Software\" means the Elastic Software Source Code in any file\n containing a header stating the contents are subject to the Elastic License or\n which is contained in the repository folder labeled \"x-pack\", unless a LICENSE\n file present in the directory subtree declares a different license.\n\n 6.4 \"Derivative Work of the Commercial Software\" means, for purposes of this\n Agreement, any modification(s) or enhancement(s) to the Commercial Software,\n which represent, as a whole, an original work of authorship.\n\n 6.5 \"License\" means a limited, non-exclusive, non-transferable, fully paid up,\n royalty free, right and license, without the right to grant or authorize\n sublicenses, solely for Your internal business operations to (i) install and\n use the applicable Features and Functions of the Elastic Software in Object\n Code, and (ii) permit Contractors and Your Affiliates to use the Elastic\n software as set forth in (i) above, provided that such use by Contractors must\n be solely for Your benefit and/or the benefit of Your Affiliates, and You\n shall be responsible for all acts and omissions of such Contractors and\n Affiliates in connection with their use of the Elastic software that are\n contrary to the terms and conditions of this Agreement.\n\n 6.6 \"License Key\" means a sequence of bytes, including but not limited to a\n JSON blob, that is used to enable certain features and functions of the\n Elastic Software.\n\n 6.7 \"Marks and Notices\" means all Elastic trademarks, trade names, logos and\n notices present on the Documentation as originally provided by Elastic.\n\n 6.8 \"Non-production Environment\" means an environment for development, testing\n or quality assurance, where software is not used for production purposes.\n\n 6.9 \"Object Code\" means any form resulting from mechanical transformation or\n translation of Source Code form, including but not limited to compiled object\n code, generated documentation, and conversions to other media types.\n\n 6.10 \"Source Code\" means the preferred form of computer software for making\n modifications, including but not limited to software source code,\n documentation source, and configuration files.\n\n 6.11 \"Subscription\" means the right to receive Support Services and a License\n to the Commercial Software.", + "json": "elastic-license-2018.json", + "yaml": "elastic-license-2018.yml", + "html": "elastic-license-2018.html", + "license": "elastic-license-2018.LICENSE" + }, + { + "license_key": "elastic-license-v2", + "category": "Source-available", + "spdx_license_key": "Elastic-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-elastic-license-v2" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Elastic License 2.0\n\nURL: https://www.elastic.co/licensing/elastic-license\n\n## Acceptance\n\nBy using the software, you agree to all of the terms and conditions below.\n\n## Copyright License\n\nThe licensor grants you a non-exclusive, royalty-free, worldwide,\nnon-sublicensable, non-transferable license to use, copy, distribute, make\navailable, and prepare derivative works of the software, in each case subject to\nthe limitations and conditions below.\n\n## Limitations\n\nYou may not provide the software to third parties as a hosted or managed\nservice, where the service provides users with access to any substantial set of\nthe features or functionality of the software.\n\nYou may not move, change, disable, or circumvent the license key functionality\nin the software, and you may not remove or obscure any functionality in the\nsoftware that is protected by the license key.\n\nYou may not alter, remove, or obscure any licensing, copyright, or other notices\nof the licensor in the software. Any use of the licensor\u2019s trademarks is subject\nto applicable law.\n\n## Patents\n\nThe licensor grants you a license, under any patent claims the licensor can\nlicense, or becomes able to license, to make, have made, use, sell, offer for\nsale, import and have imported the software, in each case subject to the\nlimitations and conditions in this license. This license does not cover any\npatent claims that you cause to be infringed by modifications or additions to\nthe software. If you or your company make any written claim that the software\ninfringes or contributes to infringement of any patent, your patent license for\nthe software granted under these terms ends immediately. If your company makes\nsuch a claim, your patent license ends immediately for work on behalf of your\ncompany.\n\n## Notices\n\nYou must ensure that anyone who gets a copy of any part of the software from you\nalso gets a copy of these terms.\n\nIf you modify the software, you must include in any modified copies of the\nsoftware prominent notices stating that you have modified the software.\n\n## No Other Rights\n\nThese terms do not imply any licenses other than those expressly granted in\nthese terms.\n\n## Termination\n\nIf you use the software in violation of these terms, such use is not licensed,\nand your licenses will automatically terminate. If the licensor provides you\nwith a notice of your violation, and you cease all violation of this license no\nlater than 30 days after you receive that notice, your licenses will be\nreinstated retroactively. However, if you violate these terms after such\nreinstatement, any additional violation of these terms will cause your licenses\nto terminate automatically and permanently.\n\n## No Liability\n\n*As far as the law allows, the software comes as is, without any warranty or\ncondition, and the licensor will not be liable to you for any damages arising\nout of these terms or the use or nature of the software, under any kind of\nlegal claim.*\n\n## Definitions\n\nThe **licensor** is the entity offering these terms, and the **software** is the\nsoftware the licensor makes available under these terms, including any portion\nof it.\n\n**you** refers to the individual or entity agreeing to these terms.\n\n**your company** is any legal entity, sole proprietorship, or other kind of\norganization that you work for, plus all organizations that have control over,\nare under the control of, or are under common control with that\norganization. **control** means ownership of substantially all the assets of an\nentity, or the power to direct its management and policies by vote, contract, or\notherwise. Control can be direct or indirect.\n\n**your licenses** are all the licenses granted to you for the software under\nthese terms.\n\n**use** means anything you do with the software requiring one of your licenses.\n\n**trademark** means trademarks, service marks, and similar rights.", + "json": "elastic-license-v2.json", + "yaml": "elastic-license-v2.yml", + "html": "elastic-license-v2.html", + "license": "elastic-license-v2.LICENSE" + }, + { + "license_key": "elib-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-elib-gpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "GNU ELIB GENERAL PUBLIC LICENSE\n\nThe license agreements of most software companies keep you at the mercy of those companies. By contrast, our general public license is intended to give everyone the right to share GNU Elib. To make sure that you get the rights we want you to have, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. Hence this license agreement.\n\nSpecifically, we want to make sure that you have the right to give away copies of GNU Elib, that you receive source code or else can get it if you want it, that you can change GNU Elib or use pieces of it in new free programs, and that you know you can do these things.\n\nTo make sure that everyone has such rights, we have to forbid you to deprive anyone else of these rights. For example, if you distribute copies of GNU Elib, 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 tell them their rights.\n\nAlso, for our own protection, we must make certain that everyone finds out that there is no warranty for GNU Elib. If GNU Elib is modified by someone else and passed on, we want its recipients to know that what they have is not what we distributed, so that any problems introduced by others will not reflect on our reputation.\n\nTherefore we make the following terms which say what you must do to be allowed to distribute or change GNU Elib.\nCOPYING POLICIES\n\n 1. You may copy and distribute verbatim copies of GNU Elib source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy a valid copyright notice \"Copyright (C) 1992 Free Software Foundation (or with whatever year is appropriate); keep intact the notices on all files that refer to this License Agreement and to the absence of any warranty; and give any other recipients of the GNU Elib program a copy of this License Agreement along with the program. You may charge a distribution fee for the physical act of transferring a copy.\n 2. You may modify your copy or copies of GNU Elib or any portion of it, and copy and distribute such modifications under the terms of Paragraph 1 above, provided that you also do the following:\n * cause the modified files to carry prominent notices stating that you changed the files and the date of any change; and\n * cause the whole of any work that you distribute or publish, that in whole or in part contains or is a derivative of GNU Elib or any part thereof, to be licensed at no charge to all third parties on terms identical to those contained in this License Agreement (except that you may choose to grant more extensive warranty protection to some or all third parties, at your option).\n * You may charge a distribution fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.\n Mere aggregation of another unrelated program with this program (or its derivative) on a volume of a storage or distribution medium does not bring the other program under the scope of these terms.\n 3. You may copy and distribute GNU Elib (or any portion of it in under Paragraph 2) in object code or executable form under the terms of Paragraphs 1 and 2 above provided that you also do one of the following:\n * accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Paragraphs 1 and 2 above; or,\n * accompany it with a written offer, valid for at least three years, to give any third party free (except for a nominal shipping charge) a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Paragraphs 1 and 2 above; or,\n * accompany it with the information you received as to where the corresponding source code may be obtained. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form alone.)\n For an executable file, complete source code means all the source code for all modules it contains; but, as a special exception, it need not include source code for modules which are standard libraries that accompany the operating system on which the executable file runs.\n 4. You may not copy, sublicense, distribute or transfer GNU Elib except as expressly provided under this License Agreement. Any attempt otherwise to copy, sublicense, distribute or transfer GNU Elib is void and your rights to use the program under this License agreement shall be automatically terminated. However, parties who have received computer software programs from you with this License Agreement will not have their licenses terminated so long as such parties remain in full compliance.\n 5. If you wish to incorporate parts of GNU Elib into other free programs whose distribution conditions are different, write to the Free Software Foundation at 675 Mass Ave, Cambridge, MA 02139. We have not yet worked out a simple rule that can be stated here, but we will often permit this. We 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.\n\nYour comments and suggestions about our licensing policies and our software are welcome! Please contact the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, or call (617) 876-3296.\nNO WARRANTY\n\nBECAUSE GNU ELIB IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY NO WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING, FREE SOFTWARE FOUNDATION, INC, INGE WALLIN AND/OR OTHER PARTIES PROVIDE GNU ELIB \"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 GNU ELIB IS WITH YOU. SHOULD GNU ELIB PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL INGE WALLIN, THE FREE SOFTWARE FOUNDATION, INC., AND/OR ANY OTHER PARTY WHO MAY MODIFY AND REDISTRIBUTE GNU ELIB AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY LOST PROFITS, LOST MONIES, OR OTHER SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) GNU ELIB, EVEN IF YOU HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY ANY OTHER PARTY.", + "json": "elib-gpl.json", + "yaml": "elib-gpl.yml", + "html": "elib-gpl.html", + "license": "elib-gpl.LICENSE" + }, + { + "license_key": "ellis-lab", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ellis-lab", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This license is a legal agreement between you and {copyright-owner} for the use\nof {component} (the \"Software\"). By obtaining the Software you\nagree to comply with the terms and conditions of this license.\n\nPERMITTED USE\nYou are permitted to use, copy, modify, and distribute the Software and its\ndocumentation, with or without modification, for any purpose, provided that\nthe following conditions are met:\n\n1. A copy of this license agreement must be included with the distribution.\n\n2. Redistributions of source code must retain the above copyright notice in\n all source code files.\n\n3. Redistributions in binary form must reproduce the above copyright notice\n in the documentation and/or other materials provided with the distribution.\n\n4. Any files that have been modified must carry notices stating the nature\n of the change and the names of those who changed them.\n\n5. Products derived from the Software must include an acknowledgment that\n they are derived from {component} in their documentation and/or other\n materials provided with the distribution.\n\n6. Products derived from the Software may not be called \"{component}\",\n nor may \"{component}\" appear in their name, without prior written\n permission from {copyright-owner}.\n\n\nINDEMNITY\nYou agree to indemnify and hold harmless the authors of the Software and\nany contributors for any direct, indirect, incidental, or consequential\nthird-party claims, actions or suits, as well as any related expenses,\nliabilities, damages, settlements or fees arising from your use or misuse\nof the Software, or a violation of any terms of this license.\n\nDISCLAIMER OF WARRANTY\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESSED OR\nIMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF QUALITY, PERFORMANCE,\nNON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.\n\nLIMITATIONS OF LIABILITY\nYOU ASSUME ALL RISK ASSOCIATED WITH THE INSTALLATION AND USE OF THE SOFTWARE.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS OF THE SOFTWARE BE LIABLE\nFOR CLAIMS, DAMAGES OR OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION\nWITH THE SOFTWARE. LICENSE HOLDERS ARE SOLELY RESPONSIBLE FOR DETERMINING THE\nAPPROPRIATENESS OF USE AND ASSUME ALL RISKS ASSOCIATED WITH ITS USE, INCLUDING\nBUT NOT LIMITED TO THE RISKS OF PROGRAM ERRORS, DAMAGE TO EQUIPMENT, LOSS OF\nDATA OR SOFTWARE PROGRAMS, OR UNAVAILABILITY OR INTERRUPTION OF OPERATIONS.", + "json": "ellis-lab.json", + "yaml": "ellis-lab.yml", + "html": "ellis-lab.html", + "license": "ellis-lab.LICENSE" + }, + { + "license_key": "emit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-emit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Enhanced MIT License\n\nIntroduction\n\nThis license is exactly like the MIT License, with one exception \u2013\nAny distribution of this source code or any modification thereof in source code format, must be done under the Enhanced MIT license and not under any other licenses, such as GPL.\n\nThe Reason\n\nWe believe MIT license has a bug since it allows others to use it against its nature. Our belief is that the MIT license is intended to make source code available to anyone who wants to use it without additional obligations, but we have found cases where someone takes a project licensed under MIT license, adds a few lines of source code to it, and then changes the licensing to a different, more restrictive license which is against the nature and the intent of the MIT license. By doing so, the source code released under the original MIT is no longer a true \u201cfree/open\u201d source code, thus undermining the intention of the original creator of the source code.\nThe concept of this Enhanced MIT license is simple and more robust \u2013 you can do what you want with this source code, exactly like any other MIT license, but if you release it again as open source (even if modified), you must release it under this Enhanced MIT license \u2013 to be clear, this is not a \u201cviral\u201d license, it only refers to the actual source code released under this license and not to other components interacting with it. If GPL is a viral license, this license can be described as a \u201crobust\u201d one as it prevents licensing changes that are against its nature and it defends its own licensing principles. The essence of the Enhanced MIT license is to prevent bullies from using open source code that is truly free and open under the MIT License and turning it into other viral and more restrictive licenses \u2013 such as GPL.\n\nQ: Can I build an application with it, or DLL, or any other binary distribution, and not share the source code?\nA: Yes, exactly like in a regular MIT license\n\nQ: Can I use the EMIT license in combination with other source codes under other licenses without being forced to change the license for the other source codes?\nA: Yes, this license does not require any change to other source codes, and it allows you to distribute it with other source code licensed under other licenses.\n\nQ: Can I add code to this license and then change the license to something else, such as GPL? Or MIT?\nA: No, if you add/change the source code, the license must be kept as Enhanced MIT license.\n\nOfficial Wording of The EMIT\n\nThe Enhanced MIT License (EMIT)\nCopyright (c) 2016 Wix.com\n\nPermission 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:\n\n1) the above copyright notice, this permission notice and the complete introduction section above shall be included in all copies or substantial portions of the Software.\n2) when the Software is distributed as source code, the licensee is prohibited to change the license of the Software to any \u201cviral\u201d copyleft-type license, such as, inter alia: GPL, LGPL, EPL, MPL, etc.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "emit.json", + "yaml": "emit.yml", + "html": "emit.html", + "license": "emit.LICENSE" + }, + { + "license_key": "emx-library", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-emx-library", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The emx libraries are not distributed under the GPL. Linking an\napplication with the emx libraries does not cause the executable\nto be covered by the GNU General Public License. You are allowed\nto change and copy the emx library sources if you keep the copyright\nmessage intact. If you improve the emx libraries, please send your\nenhancements to the emx author (you should copyright your\nenhancements similar to the existing emx libraries).", + "json": "emx-library.json", + "yaml": "emx-library.yml", + "html": "emx-library.html", + "license": "emx-library.LICENSE" + }, + { + "license_key": "energyplus-bsd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-energyplus-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "If you have questions about your rights to use or distribute this software, please contact Berkeley Lab's Innovation & Partnerships Office at IPO@lbl.gov.\n\nNOTICE: This Software was developed under funding from the U.S. Department of Energy and the U.S. Government consequently retains certain rights. As such, the U.S. Government has been granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable, worldwide license in the Software to reproduce, distribute copies to the public, prepare derivative works, and perform publicly and display publicly, and to permit others to do so.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n(1) Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n(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.\n\n(3) Neither the name of the University of California, Lawrence Berkeley National Laboratory, the University of Illinois, U.S. Dept. of Energy nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\n(4) Use of EnergyPlus\u2122 Name. If Licensee (i) distributes the software in stand-alone form without changes from the version obtained under this License, or (ii) Licensee makes a reference solely to the software portion of its product, Licensee must refer to the software as \"EnergyPlus version X\" software, where \"X\" is the version number Licensee obtained under this License and may not use a different name for the software. Except as specifically required in this Section (4), Licensee shall not use in a company name, a product name, in advertising, publicity, or other promotional activities any name, trade name, trademark, logo, or other designation of \"EnergyPlus\", \"E+\", \"e+\" or confusingly similar designation, without Lawrence Berkeley National Laboratory\u2019s prior written consent\n\nTHIS 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.\n\nYou are under no obligation whatsoever to provide any bug fixes, patches, or upgrades to the features, functionality or performance of the source code (\"Enhancements\") to anyone; however, if you choose to make your Enhancements available either publicly, or directly to Lawrence Berkeley National Laboratory, without imposing a separate written license agreement for such Enhancements, then you hereby grant the following license: a non-exclusive, royalty-free perpetual license to install, use, modify, prepare derivative works, incorporate into other computer software, distribute, and sublicense such enhancements or derivative works thereof, in binary and source code form.", + "json": "energyplus-bsd.json", + "yaml": "energyplus-bsd.yml", + "html": "energyplus-bsd.html", + "license": "energyplus-bsd.LICENSE" + }, + { + "license_key": "enhydra-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-enhydra-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Enhydra Public License Version 1.1\n\n1. Definitions\n\nThis license is a union of the following two parts that should be found as text files in the same place (directory), in the order of preeminence: [1] This file itself, named EPL.html [2] The contents of the file opl.html, stating the general licensing policy of the software.\n\n2. Precedence of the license parts\n\nIn case of conflicting dispositions in the parts of this license, the terms of the lower-numbered part will always be superseded by the terms of the higher numbered part.\n\n3. Lutris Technologies, Inc. is License Author\n\nFor the purposes of this License the \"License Author\" defined in section 1.13 of OPL.html shall be Lutris Technologies, Inc., 1200 Pacific Ave., Santa Cruz, CA 95060. (http://www.lutris.com)\n\n4. Section 11 of the OPL.html:\n\n11. MISCELLANEOUS. This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California, excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in, the United States of America: (a) unless otherwise agreed in writing, all disputes relating to this License (excepting any dispute relating to intellectual property rights) shall be subject to final and binding arbitration, with the losing party paying all costs of arbitration; (b) any arbitration relating to this Agreement shall be held in San Francisco County, California, under the auspices of JAMS/EndDispute; and (c) any litigation relating to this Agreement shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in San Francisco County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The applicationof the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n5. Exhibit A\n\n\"The contents of this file are subject to the Enhydra Public License Version 1.1 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License on the Enhydra web site (http://www.enhydra.org).\n\nSoftware distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific terms governing rights and limitations under the License. The Initial Developer of the Enhydra Application Server is Lutris Technologies, Inc. The Enhydra Application Server and portions created by Lutris Technologies, Inc. are Copyright Lutris Technologies, Inc. All Rights Reserved.\n\nContributor(s): . \"\n\n6. Exhibit B\n\nPart of the software embedded in this product is Enhydra (Java[TM]/XML Application Server), a trademark of Lutris Technologies Inc.\n\nPortions created by Lutris are Copyright 1997-2000 Lutris Technologies (http://www.lutris.com). All Rights Reserved.\n\nTHE SOFTWARE IN THIS PRODUCT WAS IN PART PROVIDED BY LUTRIS 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.\n\n7. Trademarks\n\nYou shall not remove or alter any Lutris or Enhydra trademark or trade name placed in the Original Code by Lutris. All copies of the Covered Code distributed by You shall include any such Lutris and Enhydra trademarks and trade names, as well as all required notices provided for in Sections 3.5 and 3.6. Except for the foregoing obligation, You are granted no rights to reproduce or display any Lutris or Enhydra trademarks or trade names.\n\n8. Section 1.10 of OPL\n\nThe following shall be added to section 1.10: \"Original Code\" shall include, but is not limited to, all the files in the Java packages in coveredCode.html.\n\n9. Section 3.2 of OPL 1.0\n\nAs used in section 3.2 of the OPL \"Contact Means\" shall mean the email address info@lutris.com", + "json": "enhydra-1.1.json", + "yaml": "enhydra-1.1.yml", + "html": "enhydra-1.1.html", + "license": "enhydra-1.1.LICENSE" + }, + { + "license_key": "enlightenment", + "category": "Permissive", + "spdx_license_key": "MIT-advertising", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "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:\n\nThe above copyright notice and this permission notice shall be included in all copies of the Software, its documentation and marketing & publicity materials, and acknowledgment shall be given in the documentation, materials and software packages that this Software was used.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "enlightenment.json", + "yaml": "enlightenment.yml", + "html": "enlightenment.html", + "license": "enlightenment.LICENSE" + }, + { + "license_key": "enna", + "category": "Permissive", + "spdx_license_key": "MIT-enna", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies of the Software and its Copyright notices. In addition publicly\ndocumented acknowledgment must be given that this software has been used if no\nsource code of this software is made available publicly. This includes\nacknowledgments in either Copyright notices, Manuals, Publicity and Marketing\ndocuments or any documentation provided with any product containing this\nsoftware. This License does not apply to any software that links to the\nlibraries provided by this software (statically or dynamically), but only to the\nsoftware provided.\n\nPlease see the COPYING.PLAIN for a plain-english explanation of this notice and\nit's intent.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\nCONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "enna.json", + "yaml": "enna.yml", + "html": "enna.html", + "license": "enna.LICENSE" + }, + { + "license_key": "entessa-1.0", + "category": "Permissive", + "spdx_license_key": "Entessa", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Entessa Public License Version. 1.0\n\nCopyright (c) 2003 Entessa, LLC. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n 1. Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n \n 3. The end-user documentation included with the redistribution, if any, must\n include the following acknowledgment:\n\n \"This product includes open source software developed by openSEAL (http://www.openseal.org/).\"\n\n Alternately, this acknowledgment may appear in the software itself, if and\n wherever such third-party acknowledgments normally appear.\n\n 4. The names \"openSEAL\" and \"Entessa\" must not be used to endorse or promote\n products derived from this software without prior written permission. For\n written permission, please contact epl@entessa.com.\n\n 5. Products derived from this software may not be called \"openSEAL\", nor may\n \"openSEAL\" appear in their name, without prior written permission of Entessa.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ENTESSA, LLC,\nOPENSEAL OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\nIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY\nOF SUCH DAMAGE.\n\n============================================================\n\nThis software consists of voluntary contributions made by many individuals on\nbehalf of openSEAL and was originally based on software contributed by Entessa,\nLLC, http://www.entessa.com. For more information on the openSEAL, please see\n.", + "json": "entessa-1.0.json", + "yaml": "entessa-1.0.yml", + "html": "entessa-1.0.html", + "license": "entessa-1.0.LICENSE" + }, + { + "license_key": "epaperpress", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-epaperpress", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to reproduce portions of this document is given provided the web site\nlisted below is referenced. No additional restrictions apply. Source code, when\npart of a software project, may be used freely without reference to the author.\n\nTom Niemann\nPortland, Oregon\nepaperpress.com", + "json": "epaperpress.json", + "yaml": "epaperpress.yml", + "html": "epaperpress.html", + "license": "epaperpress.LICENSE" + }, + { + "license_key": "epics", + "category": "Permissive", + "spdx_license_key": "EPICS", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Experimental Physics and Industrial Control System (EPICS) Open Source License\n\nEPICS Open License Terms\n\nThe following is the text of the EPICS Open software license agreement which now applies to EPICS Base and many of the unbundled EPICS extensions and support modules.\n\nCopyright \u00a9 . All rights reserved.\n\n is distributed subject to the following license conditions:\n\nSOFTWARE LICENSE AGREEMENT\nSoftware: \n\nThe \"Software\", below, refers to (in either source code, or binary form and accompanying documentation). Each licensee is addressed as \"you\" or \"Licensee.\"\n\nThe copyright holders shown above and their third-party licensors hereby grant Licensee a royalty-free nonexclusive license, subject to the limitations stated herein and U.S. Government license rights.\n\nYou may modify and make a copy or copies of the Software for use within your organization, if you meet the following conditions:\n\nCopies in source code must include the copyright notice and this Software License Agreement.\nCopies in binary form must include the copyright notice and this Software License Agreement in the documentation and/or other materials provided with the copy.\nYou may modify a copy or copies of the Software or any portion of it, thus forming a work based on the Software, and distribute copies of such work outside your organization, if you meet all of the following conditions:\n\nCopies in source code must include the copyright notice and this Software License Agreement;\nCopies in binary form must include the copyright notice and this Software License Agreement in the documentation and/or other materials provided with the copy;\nModified copies and works based on the Software must carry prominent notices stating that you changed specified portions of the Software.\nPortions of the Software resulted from work developed under a U.S. Government contract and are subject to the following license: the Government is granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable worldwide license in this computer software to reproduce, prepare derivative works, and perform publicly and display publicly.\n\nWARRANTY DISCLAIMER. THE SOFTWARE IS SUPPLIED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. THE COPYRIGHT HOLDERS, THEIR THIRD PARTY LICENSORS, THE UNITED STATES, THE UNITED STATES DEPARTMENT OF ENERGY, AND THEIR EMPLOYEES: (1) DISCLAIM ANY WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE OR NON-INFRINGEMENT, (2) DO NOT ASSUME ANY LEGAL LIABILITY OR RESPONSIBILITY FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF THE SOFTWARE, (3) DO NOT REPRESENT THAT USE OF THE SOFTWARE WOULD NOT INFRINGE PRIVATELY OWNED RIGHTS, (4) DO NOT WARRANT THAT THE SOFTWARE WILL FUNCTION UNINTERRUPTED, THAT IT IS ERROR-FREE OR THAT ANY ERRORS WILL BE CORRECTED.\n\nLIMITATION OF LIABILITY. IN NO EVENT WILL THE COPYRIGHT HOLDERS, THEIR THIRD PARTY LICENSORS, THE UNITED STATES, THE UNITED STATES DEPARTMENT OF ENERGY, OR THEIR EMPLOYEES: BE LIABLE FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL OR PUNITIVE DAMAGES OF ANY KIND OR NATURE, INCLUDING BUT NOT LIMITED TO LOSS OF PROFITS OR LOSS OF DATA, FOR ANY REASON WHATSOEVER, WHETHER SUCH LIABILITY IS ASSERTED ON THE BASIS OF CONTRACT, TORT (INCLUDING NEGLIGENCE OR STRICT LIABILITY), OR OTHERWISE, EVEN IF ANY OF SAID PARTIES HAS BEEN WARNED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGES.", + "json": "epics.json", + "yaml": "epics.yml", + "html": "epics.html", + "license": "epics.LICENSE" + }, + { + "license_key": "epl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "EPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Eclipse Public License - v 1.0\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE (\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n\n1. DEFINITIONS\n\n\"Contribution\" means:\n\na) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and\nb) in the case of each subsequent Contributor:\n\ni) changes to the Program, and\n\nii) additions to the Program;\n\nwhere such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.\n\n\"Contributor\" means any person or entity that distributes the Program.\n\n\"Licensed Patents \" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.\n\n\"Program\" means the Contributions distributed in accordance with this Agreement.\n\n\"Recipient\" means anyone who receives the Program under this Agreement, including all Contributors.\n\n2. GRANT OF RIGHTS\n\na) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.\n\nb) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.\n\nc) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.\n\nd) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.\n\n3. REQUIREMENTS\n\nA Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:\n\na) it complies with the terms and conditions of this Agreement; and\n\nb) its license agreement:\n\ni) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;\n\nii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;\n\niii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and\n\niv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.\n\nWhen the Program is made available in source code form:\n\na) it must be made available under this Agreement; and\n\nb) a copy of this Agreement must be included with each copy of the Program.\n\nContributors may not remove or alter any copyright notices contained within the Program.\n\nEach Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.\n\n4. COMMERCIAL DISTRIBUTION\n\nCommercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor (\"Commercial Contributor\") hereby agrees to defend and indemnify every other Contributor (\"Indemnified Contributor\") against any losses, damages and costs (collectively \"Losses\") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.\n\nFor example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.\n\n5. NO WARRANTY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED 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. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.\n\n6. DISCLAIMER OF LIABILITY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. GENERAL\n\nIf any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\nIf Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.\n\nAll Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.\n\nEveryone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.\n\nThis Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.", + "json": "epl-1.0.json", + "yaml": "epl-1.0.yml", + "html": "epl-1.0.html", + "license": "epl-1.0.LICENSE" + }, + { + "license_key": "epl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "EPL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Eclipse Public License - v 2.0\n\n THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE\n PUBLIC LICENSE (\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION\n OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n\n1. DEFINITIONS\n\n\"Contribution\" means:\n\n a) in the case of the initial Contributor, the initial content\n Distributed under this Agreement, and\n\n b) in the case of each subsequent Contributor:\n i) changes to the Program, and\n ii) additions to the Program;\n where such changes and/or additions to the Program originate from\n and are Distributed by that particular Contributor. A Contribution\n \"originates\" from a Contributor if it was added to the Program by\n such Contributor itself or anyone acting on such Contributor's behalf.\n Contributions do not include changes or additions to the Program that\n are not Modified Works.\n\n\"Contributor\" means any person or entity that Distributes the Program.\n\n\"Licensed Patents\" mean patent claims licensable by a Contributor which\nare necessarily infringed by the use or sale of its Contribution alone\nor when combined with the Program.\n\n\"Program\" means the Contributions Distributed in accordance with this\nAgreement.\n\n\"Recipient\" means anyone who receives the Program under this Agreement\nor any Secondary License (as applicable), including Contributors.\n\n\"Derivative Works\" shall mean any work, whether in Source Code or other\nform, that is based on (or derived from) the Program and for which the\neditorial revisions, annotations, elaborations, or other modifications\nrepresent, as a whole, an original work of authorship.\n\n\"Modified Works\" shall mean any work in Source Code or other form that\nresults from an addition to, deletion from, or modification of the\ncontents of the Program, including, for purposes of clarity any new file\nin Source Code form that contains any contents of the Program. Modified\nWorks shall not include works that contain only declarations,\ninterfaces, types, classes, structures, or files of the Program solely\nin each case in order to link to, bind by name, or subclass the Program\nor Modified Works thereof.\n\n\"Distribute\" means the acts of a) distributing or b) making available\nin any manner that enables the transfer of a copy.\n\n\"Source Code\" means the form of a Program preferred for making\nmodifications, including but not limited to software source code,\ndocumentation source, and configuration files.\n\n\"Secondary License\" means either the GNU General Public License,\nVersion 2.0, or any later versions of that license, including any\nexceptions or additional permissions as identified by the initial\nContributor.\n\n2. GRANT OF RIGHTS\n\n a) Subject to the terms of this Agreement, each Contributor hereby\n grants Recipient a non-exclusive, worldwide, royalty-free copyright\n license to reproduce, prepare Derivative Works of, publicly display,\n publicly perform, Distribute and sublicense the Contribution of such\n Contributor, if any, and such Derivative Works.\n\n b) Subject to the terms of this Agreement, each Contributor hereby\n grants Recipient a non-exclusive, worldwide, royalty-free patent\n license under Licensed Patents to make, use, sell, offer to sell,\n import and otherwise transfer the Contribution of such Contributor,\n if any, in Source Code or other form. This patent license shall\n apply to the combination of the Contribution and the Program if, at\n the time the Contribution is added by the Contributor, such addition\n of the Contribution causes such combination to be covered by the\n Licensed Patents. The patent license shall not apply to any other\n combinations which include the Contribution. No hardware per se is\n licensed hereunder.\n\n c) Recipient understands that although each Contributor grants the\n licenses to its Contributions set forth herein, no assurances are\n provided by any Contributor that the Program does not infringe the\n patent or other intellectual property rights of any other entity.\n Each Contributor disclaims any liability to Recipient for claims\n brought by any other entity based on infringement of intellectual\n property rights or otherwise. As a condition to exercising the\n rights and licenses granted hereunder, each Recipient hereby\n assumes sole responsibility to secure any other intellectual\n property rights needed, if any. For example, if a third party\n patent license is required to allow Recipient to Distribute the\n Program, it is Recipient's responsibility to acquire that license\n before distributing the Program.\n\n d) Each Contributor represents that to its knowledge it has\n sufficient copyright rights in its Contribution, if any, to grant\n the copyright license set forth in this Agreement.\n\n e) Notwithstanding the terms of any Secondary License, no\n Contributor makes additional grants to any Recipient (other than\n those set forth in this Agreement) as a result of such Recipient's\n receipt of the Program under the terms of a Secondary License\n (if permitted under the terms of Section 3).\n\n3. REQUIREMENTS\n\n3.1 If a Contributor Distributes the Program in any form, then:\n\n a) the Program must also be made available as Source Code, in\n accordance with section 3.2, and the Contributor must accompany\n the Program with a statement that the Source Code for the Program\n is available under this Agreement, and informs Recipients how to\n obtain it in a reasonable manner on or through a medium customarily\n used for software exchange; and\n\n b) the Contributor may Distribute the Program under a license\n different than this Agreement, provided that such license:\n i) effectively disclaims on behalf of all other Contributors all\n warranties and conditions, express and implied, including\n warranties or conditions of title and non-infringement, and\n implied warranties or conditions of merchantability and fitness\n for a particular purpose;\n\n ii) effectively excludes on behalf of all other Contributors all\n liability for damages, including direct, indirect, special,\n incidental and consequential damages, such as lost profits;\n\n iii) does not attempt to limit or alter the recipients' rights\n in the Source Code under section 3.2; and\n\n iv) requires any subsequent distribution of the Program by any\n party to be under a license that satisfies the requirements\n of this section 3.\n\n3.2 When the Program is Distributed as Source Code:\n\n a) it must be made available under this Agreement, or if the\n Program (i) is combined with other material in a separate file or\n files made available under a Secondary License, and (ii) the initial\n Contributor attached to the Source Code the notice described in\n Exhibit A of this Agreement, then the Program may be made available\n under the terms of such Secondary Licenses, and\n\n b) a copy of this Agreement must be included with each copy of\n the Program.\n\n3.3 Contributors may not remove or alter any copyright, patent,\ntrademark, attribution notices, disclaimers of warranty, or limitations\nof liability (\"notices\") contained within the Program from any copy of\nthe Program which they Distribute, provided that Contributors may add\ntheir own appropriate notices.\n\n4. COMMERCIAL DISTRIBUTION\n\nCommercial distributors of software may accept certain responsibilities\nwith respect to end users, business partners and the like. While this\nlicense is intended to facilitate the commercial use of the Program,\nthe Contributor who includes the Program in a commercial product\noffering should do so in a manner which does not create potential\nliability for other Contributors. Therefore, if a Contributor includes\nthe Program in a commercial product offering, such Contributor\n(\"Commercial Contributor\") hereby agrees to defend and indemnify every\nother Contributor (\"Indemnified Contributor\") against any losses,\ndamages and costs (collectively \"Losses\") arising from claims, lawsuits\nand other legal actions brought by a third party against the Indemnified\nContributor to the extent caused by the acts or omissions of such\nCommercial Contributor in connection with its distribution of the Program\nin a commercial product offering. The obligations in this section do not\napply to any claims or Losses relating to any actual or alleged\nintellectual property infringement. In order to qualify, an Indemnified\nContributor must: a) promptly notify the Commercial Contributor in\nwriting of such claim, and b) allow the Commercial Contributor to control,\nand cooperate with the Commercial Contributor in, the defense and any\nrelated settlement negotiations. The Indemnified Contributor may\nparticipate in any such claim at its own expense.\n\nFor example, a Contributor might include the Program in a commercial\nproduct offering, Product X. That Contributor is then a Commercial\nContributor. If that Commercial Contributor then makes performance\nclaims, or offers warranties related to Product X, those performance\nclaims and warranties are such Commercial Contributor's responsibility\nalone. Under this section, the Commercial Contributor would have to\ndefend claims against the other Contributors related to those performance\nclaims and warranties, and if a court requires any other Contributor to\npay any damages as a result, the Commercial Contributor must pay\nthose damages.\n\n5. NO WARRANTY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT\nPERMITTED BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN \"AS IS\"\nBASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR\nIMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF\nTITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR\nPURPOSE. Each Recipient is solely responsible for determining the\nappropriateness of using and distributing the Program and assumes all\nrisks associated with its exercise of rights under this Agreement,\nincluding but not limited to the risks and costs of program errors,\ncompliance with applicable laws, damage to or loss of data, programs\nor equipment, and unavailability or interruption of operations.\n\n6. DISCLAIMER OF LIABILITY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT\nPERMITTED BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS\nSHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST\nPROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE\nEXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n7. GENERAL\n\nIf any provision of this Agreement is invalid or unenforceable under\napplicable law, it shall not affect the validity or enforceability of\nthe remainder of the terms of this Agreement, and without further\naction by the parties hereto, such provision shall be reformed to the\nminimum extent necessary to make such provision valid and enforceable.\n\nIf Recipient institutes patent litigation against any entity\n(including a cross-claim or counterclaim in a lawsuit) alleging that the\nProgram itself (excluding combinations of the Program with other software\nor hardware) infringes such Recipient's patent(s), then such Recipient's\nrights granted under Section 2(b) shall terminate as of the date such\nlitigation is filed.\n\nAll Recipient's rights under this Agreement shall terminate if it\nfails to comply with any of the material terms or conditions of this\nAgreement and does not cure such failure in a reasonable period of\ntime after becoming aware of such noncompliance. If all Recipient's\nrights under this Agreement terminate, Recipient agrees to cease use\nand distribution of the Program as soon as reasonably practicable.\nHowever, Recipient's obligations under this Agreement and any licenses\ngranted by Recipient relating to the Program shall continue and survive.\n\nEveryone is permitted to copy and distribute copies of this Agreement,\nbut in order to avoid inconsistency the Agreement is copyrighted and\nmay only be modified in the following manner. The Agreement Steward\nreserves the right to publish new versions (including revisions) of\nthis Agreement from time to time. No one other than the Agreement\nSteward has the right to modify this Agreement. The Eclipse Foundation\nis the initial Agreement Steward. The Eclipse Foundation may assign the\nresponsibility to serve as the Agreement Steward to a suitable separate\nentity. Each new version of the Agreement will be given a distinguishing\nversion number. The Program (including Contributions) may always be\nDistributed subject to the version of the Agreement under which it was\nreceived. In addition, after a new version of the Agreement is published,\nContributor may elect to Distribute the Program (including its\nContributions) under the new version.\n\nExcept as expressly stated in Sections 2(a) and 2(b) above, Recipient\nreceives no rights or licenses to the intellectual property of any\nContributor under this Agreement, whether expressly, by implication,\nestoppel or otherwise. All rights in the Program not expressly granted\nunder this Agreement are reserved. Nothing in this Agreement is intended\nto be enforceable by any entity that is not a Contributor or Recipient.\nNo third-party beneficiary rights are created under this Agreement.\n\nExhibit A - Form of Secondary Licenses Notice\n\n\"This Source Code is also Distributed under one\nor more Secondary Licenses, as those terms are defined by\nthe Eclipse Public License, v. 2.0: {name license(s),version(s),\nand exceptions or additional permissions here}.\"\n\n Simply including a copy of this Agreement, including this Exhibit A\n is not sufficient to license the Source Code under Secondary Licenses.\n\n If it is not possible or desirable to put the notice in a particular\n file, then You may include the notice in a location (such as a LICENSE\n file in a relevant directory) where a recipient would be likely to\n look for such a notice.\n\n You may add additional accurate notices of copyright ownership.", + "json": "epl-2.0.json", + "yaml": "epl-2.0.yml", + "html": "epl-2.0.html", + "license": "epl-2.0.LICENSE" + }, + { + "license_key": "epo-osl-2005.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-epo-osl-2005.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "European Patent Organisation Open Source Licence No. 2005/1\n\nThis Licence 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 Licence. 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 Licence; they are outside its scope.\n\n1. Licence\n\n1.1 You may install, use, reproduce, display, modify and redistribute the Program or work based on the Program in source and binary forms subject to the following conditions:\n\n(a) 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 Licence and to the absence of any warranty; and give any other recipients of the Program or work based on the Program a copy of this Licence along with the Program or work based on the Program.\n(b) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change.\n(c) 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 Licence.\n(d) 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 Licence. (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.)\n\nThese 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.\n\n(e) If you copy or distribute the Program (or a work based on it) in any form including object code or executable form, you must:\n(i) Accompany it with the complete corresponding machine-readable source code and the full comments, which must be distributed under the terms of sections (a) to (d) above on a medium customarily used for software interchange; or,\n(ii) 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 (a) to (d) above on a medium customarily used for software interchange.\n\nFor 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.\n1.2 You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this Licence. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this Licence. However, parties who have received copies, or rights, from you under this Licence will not have their licenses terminated so long as such parties remain in full compliance.\n\n2. No Warranty, disclaimer of liability\n\n2.1 The Program or work based on the Program is provided free of charge AS IS.\n\nNO REPRESENTATION OR WARRANTIES OF ANY KIND EITHER EXPRESS OR IMPLIED ARE GIVEN. IN PARTICULAR, BUT WITHOUT LIMITATION, NO WARRANTY IS PROVIDED IN RESPECT OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE OR TO THE EFFECT THAT THE PROGRAM OR WORK BASED ON THE PROGRAM IS FREE OF DEFECTS, OR NOT SUBJECT TO THE RIGHTS OF THIRD PARTIES, IN PARTICULAR PATENTS OR COPYRIGHTS.\n2.2 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 OR WORK BASED ON 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.\n\n3. Applicable Law and Arbitration\n\nThis Agreement shall be subject to German law. Any dispute arising out of or in connection with this Agreement shall be settled finally by a three-person arbitration panel administered under the WIPO Arbitration Rules in Geneva using English as the procedural language.\n\n4. General\n\n4.1 Should any provision of this Licence be or become invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Licence, and the respective provision shall be replaced by a valid provision coming closest to achieving the purpose and meaning of the invalid clause.\n4.2 The European Patent Organisation reserves the right to publish new versions of this Licence from time to time. The Program and work based on the Program may always be distributed subject to the version of the Licence under which it was received.", + "json": "epo-osl-2005.1.json", + "yaml": "epo-osl-2005.1.yml", + "html": "epo-osl-2005.1.html", + "license": "epo-osl-2005.1.LICENSE" + }, + { + "license_key": "eric-glass", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-eric-glass", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this document for any purpose\nand without any fee is hereby granted, provided that the above copyright notice\nand this list of conditions appear in all copies.", + "json": "eric-glass.json", + "yaml": "eric-glass.yml", + "html": "eric-glass.html", + "license": "eric-glass.LICENSE" + }, + { + "license_key": "erlangpl-1.1", + "category": "Copyleft", + "spdx_license_key": "ErlPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ERLANG PUBLIC LICENSE\nVersion 1.1\n\n1. Definitions.\n\n1.1. ``Contributor'' means each entity that creates or contributes to\nthe creation of Modifications.\n\n1.2. ``Contributor Version'' means the combination of the Original\nCode, prior Modifications used by a Contributor, and the Modifications\nmade by that particular Contributor.\n\n1.3. ``Covered Code'' means the Original Code or Modifications or the\ncombination of the Original Code and Modifications, in each case\nincluding portions thereof.\n\n1.4. ``Electronic Distribution Mechanism'' means a mechanism generally\naccepted in the software development community for the electronic\ntransfer of data.\n\n1.5. ``Executable'' means Covered Code in any form other than Source\nCode.\n\n1.6. ``Initial Developer'' means the individual or entity identified\nas the Initial Developer in the Source Code notice required by Exhibit\nA.\n\n1.7. ``Larger Work'' means a work which combines Covered Code or\nportions thereof with code not governed by the terms of this License.\n\n1.8. ``License'' means this document.\n\n1.9. ``Modifications'' means any addition to or deletion from the\nsubstance or structure of either the Original Code or any previous\nModifications. When Covered Code is released as a series of files, a\nModification is:\n\nA. Any addition to or deletion from the contents of a file containing\n Original Code or previous Modifications. \n\nB. Any new file that contains any part of the Original Code or\n previous Modifications. \n\n1.10. ``Original Code'' means Source Code of computer software code\nwhich is described in the Source Code notice required by Exhibit A as\nOriginal Code, and which, at the time of its release under this\nLicense is not already Covered Code governed by this License.\n\n1.11. ``Source Code'' means the preferred form of the Covered Code for\nmaking modifications to it, including all modules it contains, plus\nany associated interface definition files, scripts used to control\ncompilation and installation of an Executable, or a list of source\ncode differential comparisons against either the Original Code or\nanother well known, available Covered Code of the Contributor's\nchoice. The Source Code can be in a compressed or archival form,\nprovided the appropriate decompression or de-archiving software is\nwidely available for no charge.\n\n1.12. ``You'' means an individual or a legal entity exercising rights\nunder, and complying with all of the terms of, this License. For legal\nentities,``You'' includes any entity which controls, is controlled by,\nor is under common control with You. For purposes of this definition,\n``control'' means (a) the power, direct or indirect, to cause the\ndirection or management of such entity, whether by contract or\notherwise, or (b) ownership of fifty percent (50%) or more of the\noutstanding shares or beneficial ownership of such entity.\n\n2. Source Code License.\n\n2.1. The Initial Developer Grant.\nThe Initial Developer hereby grants You a world-wide, royalty-free,\nnon-exclusive license, subject to third party intellectual property\nclaims:\n\n(a) to use, reproduce, modify, display, perform, sublicense and\n distribute the Original Code (or portions thereof) with or without\n Modifications, or as part of a Larger Work; and \n\n(b) under patents now or hereafter owned or controlled by Initial\n Developer, to make, have made, use and sell (``Utilize'') the\n Original Code (or portions thereof), but solely to the extent that\n any such patent is reasonably necessary to enable You to Utilize\n the Original Code (or portions thereof) and not to any greater\n extent that may be necessary to Utilize further Modifications or\n combinations. \n\n2.2. Contributor Grant.\nEach Contributor hereby grants You a world-wide, royalty-free,\nnon-exclusive license, subject to third party intellectual property\nclaims:\n\n(a) to use, reproduce, modify, display, perform, sublicense and\n distribute the Modifications created by such Contributor (or\n portions thereof) either on an unmodified basis, with other\n Modifications, as Covered Code or as part of a Larger Work; and \n\n(b) under patents now or hereafter owned or controlled by Contributor,\n to Utilize the Contributor Version (or portions thereof), but\n solely to the extent that any such patent is reasonably necessary\n to enable You to Utilize the Contributor Version (or portions\n thereof), and not to any greater extent that may be necessary to\n Utilize further Modifications or combinations. \n\n3. Distribution Obligations.\n\n3.1. Application of License.\nThe Modifications which You contribute are governed by the terms of\nthis License, including without limitation Section 2.2. The Source\nCode version of Covered Code may be distributed only under the terms\nof this License, and You must include a copy of this License with\nevery copy of the Source Code You distribute. You may not offer or\nimpose any terms on any Source Code version that alters or restricts\nthe applicable version of this License or the recipients' rights\nhereunder. However, You may include an additional document offering\nthe additional rights described in Section 3.5. \n\n3.2. Availability of Source Code.\nAny Modification which You contribute must be made available in Source\nCode form under the terms of this License either on the same media as\nan Executable version or via an accepted Electronic Distribution\nMechanism to anyone to whom you made an Executable version available;\nand if made available via Electronic Distribution Mechanism, must\nremain available for at least twelve (12) months after the date it\ninitially became available, or at least six (6) months after a\nsubsequent version of that particular Modification has been made\navailable to such recipients. You are responsible for ensuring that\nthe Source Code version remains available even if the Electronic\nDistribution Mechanism is maintained by a third party.\n\n3.3. Description of Modifications.\nYou must cause all Covered Code to which you contribute to contain a\nfile documenting the changes You made to create that Covered Code and\nthe date of any change. You must include a prominent statement that\nthe Modification is derived, directly or indirectly, from Original\nCode provided by the Initial Developer and including the name of the\nInitial Developer in (a) the Source Code, and (b) in any notice in an\nExecutable version or related documentation in which You describe the\norigin or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters\n\n(a) Third Party Claims.\n If You have knowledge that a party claims an intellectual property\n right in particular functionality or code (or its utilization\n under this License), you must include a text file with the source\n code distribution titled ``LEGAL'' which describes the claim and\n the party making the claim in sufficient detail that a recipient\n will know whom to contact. If you obtain such knowledge after You\n make Your Modification available as described in Section 3.2, You\n shall promptly modify the LEGAL file in all copies You make\n available thereafter and shall take other steps (such as notifying\n appropriate mailing lists or newsgroups) reasonably calculated to\n inform those who received the Covered Code that new knowledge has\n been obtained. \n\n(b) Contributor APIs.\n If Your Modification is an application programming interface and\n You own or control patents which are reasonably necessary to\n implement that API, you must also include this information in the\n LEGAL file. \n\n3.5. Required Notices.\nYou must duplicate the notice in Exhibit A in each file of the Source\nCode, and this License in any documentation for the Source Code, where\nYou describe recipients' rights relating to Covered Code. If You\ncreated one or more Modification(s), You may add your name as a\nContributor to the notice described in Exhibit A. If it is not\npossible to put such notice in a particular Source Code file due to\nits structure, then you must include such notice in a location (such\nas a relevant directory file) where a user would be likely to look for\nsuch a notice. You may choose to offer, and to charge a fee for,\nwarranty, support, indemnity or liability obligations to one or more\nrecipients of Covered Code. However, You may do so only on Your own\nbehalf, and not on behalf of the Initial Developer or any\nContributor. You must make it absolutely clear than any such warranty,\nsupport, indemnity or liability obligation is offered by You alone,\nand You hereby agree to indemnify the Initial Developer and every\nContributor for any liability incurred by the Initial Developer or\nsuch Contributor as a result of warranty, support, indemnity or\nliability terms You offer.\n\n3.6. Distribution of Executable Versions.\nYou may distribute Covered Code in Executable form only if the\nrequirements of Section 3.1-3.5 have been met for that Covered Code,\nand if You include a notice stating that the Source Code version of\nthe Covered Code is available under the terms of this License,\nincluding a description of how and where You have fulfilled the\nobligations of Section 3.2. The notice must be conspicuously included\nin any notice in an Executable version, related documentation or\ncollateral in which You describe recipients' rights relating to the\nCovered Code. You may distribute the Executable version of Covered\nCode under a license of Your choice, which may contain terms different\nfrom this License, provided that You are in compliance with the terms\nof this License and that the license for the Executable version does\nnot attempt to limit or alter the recipient's rights in the Source\nCode version from the rights set forth in this License. If You\ndistribute the Executable version under a different license You must\nmake it absolutely clear that any terms which differ from this License\nare offered by You alone, not by the Initial Developer or any\nContributor. You hereby agree to indemnify the Initial Developer and\nevery Contributor for any liability incurred by the Initial Developer\nor such Contributor as a result of any such terms You offer.\n\n3.7. Larger Works.\nYou may create a Larger Work by combining Covered Code with other code\nnot governed by the terms of this License and distribute the Larger\nWork as a single product. In such a case, You must make sure the\nrequirements of this License are fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\nIf it is impossible for You to comply with any of the terms of this\nLicense with respect to some or all of the Covered Code due to statute\nor regulation then You must: (a) comply with the terms of this License\nto the maximum extent possible; and (b) describe the limitations and\nthe code they affect. Such description must be included in the LEGAL\nfile described in Section 3.4 and must be included with all\ndistributions of the Source Code. Except to the extent prohibited by\nstatute or regulation, such description must be sufficiently detailed\nfor a recipient of ordinary skill to be able to understand it.\n\n5. Application of this License.\n\nThis License applies to code to which the Initial Developer has\nattached the notice in Exhibit A, and to related Covered Code.\n\n6. CONNECTION TO MOZILLA PUBLIC LICENSE\n\nThis Erlang License is a derivative work of the Mozilla Public\nLicense, Version 1.0. It contains terms which differ from the Mozilla\nPublic License, Version 1.0.\n\n7. DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN ``AS IS'' BASIS,\nWITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\nWITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF\nDEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR\nNON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF\nTHE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE\nIN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER\nCONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR\nCORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART\nOF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER\nEXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\nThis License and the rights granted hereunder will terminate\nautomatically if You fail to comply with terms herein and fail to cure\nsuch breach within 30 days of becoming aware of the breach. All\nsublicenses to the Covered Code which are properly granted shall\nsurvive any termination of this License. Provisions which, by their\nnature, must remain in effect beyond the termination of this License\nshall survive.\n\n9. DISCLAIMER OF LIABILITY\nAny utilization of Covered Code shall not cause the Initial Developer\nor any Contributor to be liable for any damages (neither direct nor\nindirect).\n\n10. MISCELLANEOUS\nThis License represents the complete agreement concerning the subject\nmatter hereof. If any provision is held to be unenforceable, such\nprovision shall be reformed only to the extent necessary to make it\nenforceable. This License shall be construed by and in accordance with\nthe substantive laws of Sweden. Any dispute, controversy or claim\narising out of or relating to this License, or the breach, termination\nor invalidity thereof, shall be subject to the exclusive jurisdiction\nof Swedish courts, with the Stockholm City Court as the first\ninstance.\n\t\nEXHIBIT A.\n\n``The contents of this file are subject to the Erlang Public License,\nVersion 1.1, (the \"License\"); you may not use this file except in\ncompliance with the License. You should have received a copy of the\nErlang Public License along with this software. If not, it can be\nretrieved via the world wide web at http://www.erlang.org/.\n\nSoftware distributed under the License is distributed on an \"AS IS\"\nbasis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See\nthe License for the specific language governing rights and limitations\nunder the License.\n\nThe Initial Developer of the Original Code is Ericsson Utvecklings AB.\nPortions created by Ericsson are Copyright 1999, Ericsson Utvecklings\nAB. All Rights Reserved.''", + "json": "erlangpl-1.1.json", + "yaml": "erlangpl-1.1.yml", + "html": "erlangpl-1.1.html", + "license": "erlangpl-1.1.LICENSE" + }, + { + "license_key": "errbot-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-errbot-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, the copyright holders of Errbot hereby grant permission\nfor plug-ins, scripts or add-ons not bundled or distributed as part\nof Errbot itself and potentially licensed under a different license, to be\nused with Errbot, provided that you also meet the terms and conditions of the\nlicenses of those plug-ins, scripts or add-ons.", + "json": "errbot-exception.json", + "yaml": "errbot-exception.yml", + "html": "errbot-exception.html", + "license": "errbot-exception.LICENSE" + }, + { + "license_key": "esri", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-esri", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "IMPORTANT\u2014READ CAREFULLY\n \nUnless superseded by a signed license agreement between you and Esri, Esri is willing to license Products to you only if you accept all terms and conditions contained in this License Agreement. Please read the terms and conditions carefully. You may not use the Products until you have agreed to the terms and conditions of the License Agreement. If you do not agree to the terms and conditions as stated, click \"I do not accept the license agreement\" below; you may then request a refund of applicable fees paid.\n \nLICENSE AGREEMENT\n(E204 06/13/2014)\n \nThis License Agreement is between you (\"Licensee\") and Environmental Systems Research Institute, Inc. (\"Esri\"), a California corporation with a place of business at 380 New York Street, Redlands, California 92373-8100 USA.\n \nGENERAL LICENSE TERMS AND CONDITIONS\n \nARTICLE 1\u2014DEFINITIONS\n \nDefinitions. The terms used are defined as follows:\n \na. \"Authorization Code(s)\" means any key, authorization number, enablement code, login credential, activation code, token, account user name and password, or other mechanism required for use of a Product.\nb. \"Beta\" means any alpha, beta, or prerelease Product.\nc. \"Commercial Application Service Provider Use\" or \"Commercial ASP Use\" means generating revenue by providing access to Software or Online Services through a Value-Added Application, for example, by charging a subscription fee, service fee, or any other form of transaction fee or by generating more than incidental advertising revenue.\nd. \"Content\" has the meaning provided in Addendum 3.\ne. \"Data\" means any Esri or third-party digital dataset(s) including, but not limited to, geographic vector data, raster data reports, or associated tabular attributes, whether bundled with Software and Online Services or delivered independently.\nf. \"Deployment License\" means a license that allows Licensee to sublicense select Software and associated Authorization Codes to third parties.\ng. \"Documentation\" means all user reference documentation that is delivered with the Software.\nh. \"Online Services\" means any Internet-based geospatial system, including applications and associated APIs, but excluding Data or Content, hosted by Esri or its licensors, for storing, managing, publishing, and using maps, data, and other information.\ni. \"Ordering Document(s)\" means a sales quotation, purchase order, or other document identifying the Products that Licensee orders.\nj. \"Perpetual License\" means a license to use a version of a Product for which applicable license fees have been paid, indefinitely, unless terminated by Esri or Licensee as authorized under this Agreement.\nk. \"Product(s)\" means Software, Data, Online Services, and Documentation licensed under the terms of this License Agreement.\nl. \"Sample(s)\" means sample code, sample applications, add-ons, or sample extensions of Products.\nm. \"Service Credit(s)\" means a unit of exchange that is allocated with an Online Services subscription in an amount specified in the Ordering Document. Each Service Credit entitles Licensee to consume a set amount of Online Services, the amount varying depending on the Online Services being consumed. As Online Services are consumed, Service Credits are automatically debited from Licensee's account, up to the maximum number of Service Credits available. Additional Service Credits can be purchased as described in Addendum 3 (also available at http://www.esri.com/legal).\nn. \"Software\" means all or any portion of Esri's proprietary software technology, excluding Data, accessed or downloaded from an Esri-authorized website or delivered on any media in any format including backups, updates, service packs, patches, hot fixes, or permitted merged copies.\no. \"Term License\" means a license or access provided for use of a Product for a limited time period (\"Term\") or on a subscription or transaction basis.\np. \"Value-Added Application\" means an application developed by Licensee for use in conjunction with the authorized use of any Software, Data, or Online Services.\n \nARTICLE 2\u2014INTELLECTUAL PROPERTY RIGHTS AND RESERVATION OF OWNERSHIP\n \nProducts are licensed, not sold. Esri and its licensors own Products and all copies, which are protected by United States and applicable international laws, treaties, and conventions regarding intellectual property and proprietary rights including trade secrets. Licensee agrees to use reasonable means to protect Products from unauthorized use, reproduction, distribution, or publication. Esri and its third-party licensors reserve all rights not specifically granted in this License Agreement including the right to change and improve Products.\n \nARTICLE 3\u2014GRANT OF LICENSE\n \n3.1 Grant of License. Esri grants to Licensee a personal, nonexclusive, nontransferable license solely to use the Products as set forth in the applicable Ordering Documents (i) for which the applicable license fees have been paid; (ii) in accordance with this License Agreement and the configuration ordered by Licensee or as authorized by Esri or its authorized distributor; and (iii) for the applicable Term or, if no Term is applicable or identified, until terminated in accordance with Article 5. In addition to the Scope of Use in Article 4, Exhibit 1\u2014Scope of Use (E300) applies to specific Products. Addendum 1, Addendum 2, Addendum 3, and Addendum 4 collectively comprise Exhibit 1\u2014Scope of Use (E300) and are also available at http://www.esri.com/legal/software-license. Addendums only apply to Products specifically identified within an Addendum. Exhibit 1\u2014Scope of Use (E300) includes Addendums for the following Product types, which are incorporated by reference:\n \na. Software. Terms of use for specific Software products are set forth in Addendum 1.\nb. Data. Data terms of use are set forth in Addendum 2.\nc. Online Services. Terms of use for Online Services are set forth in Addendum 3.\nd. Limited Use Programs. Terms of use for noncommercial, nonprofit, educational, or other limited-use programs are set forth in Addendum 4.\n \n3.2 Evaluation and Beta Licenses. Products acquired under an evaluation license or under a Beta program are intended for evaluation and testing purposes only and not for commercial use. Any such use is at Licensee's own risk, and the Products do not qualify for Esri or distributor maintenance.\n \nARTICLE 4\u2014SCOPE OF USE\n \n4.1 Permitted Uses\n \na. For Products delivered to Licensee, Licensee may\n \n1. Install and store Products on electronic storage device(s);\n2. Make archival copies and routine computer backups;\n3. Install and use a newer version of Software concurrently with the version to be replaced during a reasonable transition period not to exceed six (6) months, provided that the deployment of either version does not exceed Licensee's licensed quantity; thereafter, Licensee shall not use more Software in the aggregate than Licensee's total licensed quantity;\n4. Move the Software in the licensed configuration to a replacement computer; and\n5. Distribute to third parties Software and any associated Authorization Codes required for use of a Deployment License.\n \nb. Commercial Application Service Provider Use. Licensee may use the Product for Commercial ASP Use provided that Licensee (i) acquires a Commercial ASP Use license, or (ii) is a governmental or not-for-profit organization that operates a website or offers an Internet service on a cost recovery basis and not for profit.\nc. Licensee may customize Software using any (i) macro or scripting language, (ii) published application programming interface (API), or (iii) source or object code libraries, but only to the extent that such customization is described in Documentation.\nd. Licensee may use, copy, or prepare derivative works of Documentation supplied in digital format and thereafter reproduce, display, and distribute the customized documentation only for Licensee's own internal use. Portions of Documentation supplied in digital format merged with other software and printed or digital documentation are subject to this License Agreement. Licensee shall include the following copyright attribution notice acknowledging the proprietary rights of Esri and its licensors: \"Portions of this document include intellectual property of Esri and its licensors and are used herein under license. Copyright \u00a9 [Licensee will insert the actual copyright date(s) from the source materials] Esri and its licensors. All rights reserved.\"\ne. Font Components. All fonts provided with a Product may be used with the authorized use of any Products. Esri fonts may also be separately used to print any output created by Products. Additional use restrictions for third-party fonts included with a Product are set forth in the font file itself.\nf. Consultant or Contractor Access. Subject to Section 3.1, Esri grants Licensee the right to permit Licensee's consultants or contractors to use the Products exclusively for Licensee's benefit. Licensee shall be solely responsible for compliance by consultants and contractors with this License Agreement and shall ensure that the consultant or contractor discontinues Product use upon completion of work for Licensee. Access to or use of Products by consultants or contractors not exclusively for Licensee's benefit is prohibited.\ng. Licensee may use, copy, reproduce, publish, publicly display, or redistribute map images and reports containing map images derived from the use of Esri Product(s) in hard copy or static, electronic formats (e.g., PDF, GIF, JPEG) to third parties subject to restrictions set forth in this License Agreement, provided that Licensee affixes an attribution statement to the map images acknowledging Esri and/or its applicable licensor(s) as the source of the portion(s) of the Data used for the map images. For avoidance of doubt, any data that is supplied or used by Licensee in its use of the Product(s) that is not Data shall be and remain the property of Licensee or its third-party licensor(s).\n \n4.2 Uses Not Permitted. Except to the extent that applicable law prohibits or overrides these restrictions, or as provided herein, Licensee shall not\n \na. Sell, rent, lease, sublicense, lend, time-share, assign, or use Products for Commercial ASP Use or service bureau purposes;\nb. Provide third parties with direct access to Products so that the third parties may use the Product directly, develop their own GIS applications, or create their own solutions in conjunction with the Product;\nc. Distribute Software, Data, or Online Services to third parties, in whole or in part, including, but not limited to, extensions, components, or DLLs;\nd. Distribute Authorization Codes to third parties;\ne. Reverse engineer, decompile, or disassemble Products;\nf. Make any attempt to circumvent the technological measure(s) that controls access to or use of Products;\ng. Store, cache, use, upload, distribute, or sublicense Content or otherwise use Products in violation of Esri's or a third party's rights, including intellectual property rights, privacy rights, nondiscrimination laws, or any other applicable law or government regulation;\nh. Remove or obscure any Esri (or its licensors') patent, copyright, trademark, proprietary rights notices, and/or legends contained in or affixed to any Product, Product output, metadata file, or online and/or hard-copy attribution page of any Data or Documentation delivered hereunder;\ni. Unbundle or independently use individual or component parts of Software, Online Services, or Data;\nj. Incorporate any portion of the Product into a product or service that competes with any Product;\nk. Publish or in any other way communicate the results of benchmark tests run on Beta without the prior written permission of Esri and its licensors; or\nl. Use, incorporate, modify, distribute, provide access to, or combine any computer code provided with any Product in a manner that would subject such code or any part of the Product to open source license terms, which includes any license terms that require computer code to be (i) disclosed in source code form to third parties, (ii) licensed to third parties for the purpose of making derivative works, or (iii) redistributable to third parties at no charge.\n \nARTICLE 5\u2014TERM AND TERMINATION\n \nThis License Agreement is effective upon acceptance. Licensee may terminate this License Agreement or any Product license at any time upon written notice to Esri. Either party may terminate this License Agreement or any license for a material breach that is not cured within thirty (30) days of written notice to the breaching party, except that termination is immediate for a material breach that is impossible to cure. Upon termination of the License Agreement, all licenses granted hereunder terminate as well. Upon termination of a license or the License Agreement, Licensee will (i) stop accessing and using affected Product(s); (ii) clear any client-side data cache derived from Online Services; and (iii) uninstall, remove, and destroy all copies of affected Product(s) in Licensee's possession or control, including any modified or merged portions thereof, in any form, and execute and deliver evidence of such actions to Esri or its authorized distributor.\n \nARTICLE 6\u2014LIMITED WARRANTIES AND DISCLAIMERS\n \n6.1 Limited Warranties. Except as otherwise provided in this Article 6, Esri warrants for a period of ninety (90) days from the date Esri issues the Authorization Code enabling use of Software and Online Services that (i) the unmodified Software and Online Services will substantially conform to the published Documentation under normal use and service and (ii) media on which Software is provided will be free from defects in materials and workmanship.\n \n6.2 Special Disclaimer. CONTENT, DATA, SAMPLES, HOT FIXES, PATCHES, UPDATES, ONLINE SERVICES PROVIDED ON A NO-FEE BASIS, AND EVALUATION AND BETA SOFTWARE ARE DELIVERED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n \n6.3 Internet Disclaimer. THE PARTIES EXPRESSLY ACKNOWLEDGE AND AGREE THAT THE INTERNET IS A NETWORK OF PRIVATE AND PUBLIC NETWORKS AND THAT (i) THE INTERNET IS NOT A SECURE INFRASTRUCTURE, (ii) THE PARTIES HAVE NO CONTROL OVER THE INTERNET, AND (iii) NONE OF THE PARTIES SHALL BE LIABLE FOR DAMAGES UNDER ANY THEORY OF LAW RELATED TO THE PERFORMANCE OR DISCONTINUANCE OF OPERATION OF ANY PORTION OF THE INTERNET OR POSSIBLE REGULATION OF THE INTERNET THAT MIGHT RESTRICT OR PROHIBIT THE OPERATION OF ONLINE SERVICES.\n \n6.4 General Disclaimer. EXCEPT FOR THE ABOVE EXPRESS LIMITED WARRANTIES, ESRI DISCLAIMS ALL OTHER WARRANTIES OR CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OR CONDITIONS OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, SYSTEM INTEGRATION, AND NONINFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS. ESRI DOES NOT WARRANT THAT PRODUCTS WILL MEET LICENSEE'S NEEDS; THAT LICENSEE'S OPERATION OF THE SAME WILL BE UNINTERRUPTED, ERROR FREE, FAULT-TOLERANT, OR FAIL-SAFE; OR THAT ALL NONCONFORMITIES CAN OR WILL BE CORRECTED. PRODUCTS ARE NOT DESIGNED, MANUFACTURED, OR INTENDED FOR USE IN ENVIRONMENTS OR APPLICATIONS THAT MAY LEAD TO DEATH, PERSONAL INJURY, OR PHYSICAL PROPERTY/ENVIRONMENTAL DAMAGE. LICENSEE SHOULD NOT FOLLOW ANY ROUTE SUGGESTIONS THAT APPEAR TO BE HAZARDOUS, UNSAFE, OR ILLEGAL. ANY SUCH USES SHALL BE AT LICENSEE'S OWN RISK AND COST.\n \n6.5 Exclusive Remedy. Licensee's exclusive remedy and Esri's entire liability for breach of the limited warranties set forth in this Article 6 shall be limited, at Esri's sole discretion, to (i) replacement of any defective media; (ii) repair, correction, or a workaround for Software or Online Services subject to the Esri Maintenance Program or Licensee's authorized distributor's maintenance program, as applicable; or (iii) return of the license fees paid by Licensee for Software or Online Services that do not meet Esri's limited warranty, provided that Licensee uninstalls, removes, and destroys all copies of Software or Documentation; ceases using Online Services; and executes and delivers evidence of such actions to Esri or its authorized distributor.\n \nARTICLE 7\u2014LIMITATION OF LIABILITY\n \n7.1 Disclaimer of Certain Types of Liability. ESRI, ITS AUTHORIZED DISTRIBUTOR, AND ITS LICENSORS SHALL NOT BE LIABLE TO LICENSEE FOR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOST PROFITS, LOST SALES, OR BUSINESS EXPENDITURES; INVESTMENTS; BUSINESS COMMITMENTS; LOSS OF ANY GOODWILL; OR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATED TO THIS LICENSE AGREEMENT OR USE OF PRODUCTS, HOWEVER CAUSED ON ANY THEORY OF LIABILITY, WHETHER OR NOT ESRI, ITS AUTHORIZED DISTRIBUTOR, OR ITS LICENSORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY.\n \n7.2 General Limitation of Liability. EXCEPT AS PROVIDED IN ARTICLE 8\u2014INFRINGEMENT INDEMNITY, THE TOTAL CUMULATIVE LIABILITY OF ESRI AND ITS AUTHORIZED DISTRIBUTOR HEREUNDER, FROM ALL CAUSES OF ACTION OF ANY KIND, INCLUDING, BUT NOT LIMITED TO, CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, BREACH OF WARRANTY, MISREPRESENTATION, OR OTHERWISE, SHALL NOT EXCEED THE AMOUNTS PAID BY LICENSEE FOR THE PRODUCTS THAT GIVE RISE TO THE CAUSE OF ACTION.\n \n7.3 Applicability of Disclaimers and Limitations. The limitations of liability and disclaimers set forth in this License Agreement will apply regardless of whether Licensee has accepted Products or any other product or service delivered by Esri or its authorized distributor. The parties agree that Esri or its authorized distributor has set its fees and entered into this License Agreement in reliance on the disclaimers and limitations set forth herein, that the same reflect an allocation of risk between the parties, and that the same form an essential basis of the bargain between the parties. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY.\n \nTHE FOREGOING WARRANTIES, LIMITATIONS, AND EXCLUSIONS MAY NOT BE VALID IN SOME JURISDICTIONS AND APPLY ONLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN LICENSEE'S JURISDICTION. LICENSEE MAY HAVE ADDITIONAL RIGHTS UNDER LAW THAT MAY NOT BE WAIVED OR DISCLAIMED. ESRI DOES NOT SEEK TO LIMIT LICENSEE'S WARRANTY OR REMEDIES TO ANY EXTENT NOT PERMITTED BY LAW.\n \nARTICLE 8\u2014INFRINGEMENT INDEMNITY\n \n8.1 Esri shall defend, indemnify as described below, and hold Licensee harmless from and against any loss, liability, cost, or expense, including reasonable attorneys' fees, arising out of any claims, actions, or demands by a third party alleging that Licensee's licensed use of Software or Online Services infringe a US patent, copyright, or trademark, provided\n \na. Licensee promptly notifies Esri in writing of the claim;\nb. Licensee provides documents describing the allegations of infringement;\nc. Esri has sole control of the defense of any action and negotiation related to the defense or settlement of any claim; and\nd. Licensee reasonably cooperates in the defense of the claim at Esri's request and expense.\n \n8.2 If Software or Online Services are found to infringe a US patent, copyright, or trademark, Esri, at its own expense, may either (i) obtain rights for Licensee to continue using the Software or Online Services or (ii) modify the allegedly infringing elements of Software or Online Services while maintaining substantially similar functionality. If neither alternative is commercially reasonable, the license shall terminate, and Licensee shall cease accessing infringing Online Services and shall uninstall and return to Esri or its authorized distributor any infringing item(s). Esri's entire liability shall then be to indemnify Licensee pursuant to Section 8.1 and (i) refund the Perpetual License fees paid by Licensee to Esri or its authorized distributor for the infringing items, prorated on a five (5)-year, straight-line depreciation basis beginning from the initial date of delivery, and (ii) for Term Licenses and maintenance, refund the unused portion of the fees paid.\n \n8.3 Esri shall have no obligation to defend Licensee or to pay any resultant costs, damages, or attorneys' fees for any claims or demands alleging direct or contributory infringement to the extent arising out of (i) the combination or integration of Software or Online Services with a product, process, or system not supplied by Esri or specified by Esri in its Documentation; (ii) material alteration of Software or Online Services by anyone other than Esri or its subcontractors; or (iii) use of Software or Online Services after modifications have been provided by Esri for avoiding infringement or use after a return is ordered by Esri under Section 8.2.\n \n8.4 THE FOREGOING STATES THE ENTIRE OBLIGATION OF ESRI AND ITS AUTHORIZED DISTRIBUTOR WITH RESPECT TO INFRINGEMENT OR ALLEGATION OF INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OF ANY THIRD PARTY.\n \nARTICLE 9\u2014GENERAL PROVISIONS\n \n9.1 Future Updates. Use of Products licensed under this License Agreement is covered by the terms and conditions contained herein. New or updated Products may require additional or revised terms of use under the then-current Esri License Agreement. Esri will make new or revised terms of use available at http://www.esri.com/legal/software-license or provide notice of new or revised terms to Licensee.\n \n9.2 Export Control Regulations. Licensee expressly acknowledges and agrees that Licensee shall not export, reexport, import, transfer, release, or provide access to Products, Content, Licensee's Content, or Value-Added Applications to (i) any US embargoed country; (ii) any person on the US Treasury Department's list of Specially Designated Nationals; (iii) any person or entity on the US Commerce Department's Denied Persons List, Entity List, or Unverified List; or (iv) any person or entity or into any country where such export, reexport, access, or import violates any US, local, or other applicable import/export control laws or regulations including, but not limited to, the terms of any import/export license or license exemption and any amendments and supplemental additions to those import/export laws as they may occur from time to time.\n \n9.3 Taxes and Fees, Shipping Charges. License fees quoted to Licensee are exclusive of any and all applicable taxes or fees, including, but not limited to, sales tax, use tax, value-added tax (VAT), customs, duties, or tariffs, and shipping and handling charges.\n \n9.4 No Implied Waivers. The failure of either party to enforce any provision of this License Agreement shall not be deemed a waiver of the provisions or of the right of such party thereafter to enforce that or any other provision.\n \n9.5 Severability. The parties agree that if any provision of this License Agreement is held to be unenforceable for any reason, such provision shall be reformed only to the extent necessary to make the intent of the language enforceable.\n \n9.6 Successor and Assigns. Licensee shall not assign, sublicense, or transfer Licensee's rights or delegate Licensee's obligations under this License Agreement without Esri's and its authorized distributor's prior written consent, and any attempt to do so without consent shall be void. This License Agreement shall be binding on the respective successors and assigns of the parties to this License Agreement. Notwithstanding, a government contractor under contract to the government to deliver Products may assign this License Agreement and Products acquired for delivery to its government customer upon written notice to Esri, provided the government customer assents to the terms of this License Agreement.\n \n9.7 Survival of Terms. The provisions of Articles 2, 5, 6, 7, 8, and 9 of this License Agreement shall survive the expiration or termination of this License Agreement.\n \n9.8 Equitable Relief. Licensee agrees that any breach of this License Agreement by Licensee may cause irreparable damage and that, in the event of such breach, in addition to any and all remedies at law, Esri or its authorized distributor shall have the right to seek an injunction, specific performance, or other equitable relief in any court of competent jurisdiction without the requirement of posting a bond or proving injury as a condition for relief.\n \n9.9 US Government Licensee. The Products are commercial items, developed at private expense, provided to Licensee under this License Agreement. If Licensee is a US government entity or US government contractor, Esri licenses Products to Licensee in accordance with this License Agreement under FAR Subparts 12.211/12.212 or DFARS Subpart 227.7202. Esri Data and Online Services are licensed under the same DFARS Subpart 227.7202 policy as commercial computer software for acquisitions made under DFARS. Products are subject to restrictions, and this License Agreement strictly governs Licensee's use, modification, performance, reproduction, release, display, or disclosure of Products. License provisions that are inconsistent with federal law will not apply. A US government Licensee may transfer Software to any of its facilities to which it transfers the computer(s) on which such Software is installed. If any court, arbitrator, or board holds that Licensee has greater rights to any portion of Products under applicable public procurement law, such rights shall extend only to the portions affected.\n \n9.10 Governing Law, Arbitration\n \na. Licensees in the United States of America, Its Territories, and Outlying Areas. This License Agreement shall be governed by and construed in accordance with the laws of the State of California without reference to conflict of laws principles, except that US federal law shall govern in matters of intellectual property and for US government agency use. Except as provided in Section 9.8, any dispute arising out of or relating to this License Agreement or the breach thereof that cannot be settled through negotiation shall be finally settled by arbitration administered by the American Arbitration Association under its Commercial Arbitration Rules. Judgment on the award rendered by the arbitrator may be entered in a court of competent jurisdiction. If Licensee is a US government agency, this License Agreement is subject to the Contract Disputes Act of 1978, as amended (41 USC 601\u2013613), in lieu of the arbitration provisions of this clause. This License Agreement shall not be governed by the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded.\nb. All Other Licensees. Except as provided in Section 9.8, any dispute arising out of or relating to this License Agreement or the breach thereof that cannot be settled through negotiation shall be finally settled under the Rules of Arbitration of the International Chamber of Commerce by one (1) arbitrator appointed in accordance with said rules. The language of the arbitration shall be English. The place of the arbitration shall be at an agreed-upon location. This License Agreement shall not be governed by the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. Either party shall, at the request of the other, make available documents or witnesses relevant to the major aspects of the dispute.\n \n9.11 Maintenance. Maintenance for qualifying Products consists of updates and other benefits, such as access to technical support, specified in Esri's or its distributor's current applicable maintenance policy.\n \n9.12 Feedback. Esri may freely use any feedback, suggestions, or requests for Product improvements that Licensee provides to Esri.\n \n9.13 Patents. Licensee may not seek, and may not permit any other user to seek, a patent or similar right worldwide that is based on or incorporates any Esri technology or services. This express prohibition on patenting shall not apply to Licensee's software and technology except to the extent that Esri technology or services, or any portion thereof, are a part of any claim or preferred embodiment in a patent application or a similar application.\n \n9.14 Entire Agreement. This License Agreement, including its incorporated documents, constitutes the sole and entire agreement of the parties as to the subject matter set forth herein and supersedes any previous license agreements, understandings, and arrangements between the parties relating to such subject matter. Additional or conflicting terms set forth in any purchase orders, invoices, or other standard form documents exchanged during the ordering process, other than product descriptions, quantities, pricing, and delivery instructions, are void and of no effect. Any modification(s) or amendment(s) to this License Agreement must be in writing and signed by each party.\n \nEXHIBIT 1\nSCOPE OF USE\n(E300 02/25/2015)\n \nADDENDUM 1\nSOFTWARE TERMS OF USE\n(E300-1)\n \nThis Software Terms of Use Addendum (\"Addendum 1\") sets forth the terms of Licensee's use of Software and includes the Licensee's existing master license agreement, if any, or the License Agreement found at http://www.esri.com/legal/software-license (as applicable, the \"License Agreement\"), which is incorporated by reference. This Addendum 1 takes precedence over conflicting General License Terms and Conditions of the License Agreement.\n \nSECTION 1\u2014DEFINITIONS\n \nSoftware may be offered under the following license types as set forth in the applicable sales quotation, purchase order, or other document identifying the Products that Licensee orders:\n \n1. \"Concurrent Use License\" means a license to install and use the Product on computer(s) on a network, but the number of simultaneous users may not exceed the number of licenses acquired. A Concurrent Use License includes the right to run passive failover instances of Concurrent Use License management software in a separate operating system environment for temporary failover support.\n2. \"Deployment Server License\" means a full use license that authorizes Licensee to install and use the Software for all uses permitted in the License Agreement and as described in the Documentation.\n3. \"Development Server License\" means a license that authorizes Licensee to install and use the Software to build and test Value-Added Applications as described in the Documentation.\n4. \"Esri Client Software\" means ArcGIS Runtime apps, ArcGIS for Desktop, and ArcGIS API for Flex apps.\n5. \"Esri Content Package\" means a digital file containing ArcGIS Online basemap content (e.g., raster map tiles, images, vector data) extracted from the ArcGIS Online Basemap Services.\n6. \"Single Use License\" means a license that allows Licensee to permit a single authorized end user to install and use the Product on a single computer for use by that end user on the computer on which the Product is installed. Licensee may permit the single authorized end user to install a second copy for end user's exclusive use on a second computer as long as only one (1) copy of Product is in use at any time. No other end user may use Product under the same license at the same time for any other purpose.\n7. \"Staging Server License\" means a license that authorizes Licensee to install and use the Software for the following purposes: building and testing Value-Added Applications and map caches; conducting user acceptance testing, performance testing, and load testing of other third-party software; staging new commercial data updates; and training activities as described in the Documentation. Value-Added Applications and map caches can be used with Development and Deployment Servers.\n8. \"Term License\" means a license or access provided for use of a Product for a limited time period (\"Term\") or on a subscription or transaction basis.\n9. \"Perpetual License\" means a license to use a version of the Product, for which applicable license fees have been paid, indefinitely, unless terminated by Esri or Licensee as authorized under this Agreement.\n \nSECTION 2\u2014TERMS OF USE FOR SPECIFIC SOFTWARE\n \nThe following table is a list of Esri Products that have specific terms of use in addition to the general terms of use as set forth in the General License Terms and Conditions of the License Agreement. Additional terms of use are listed immediately below this table and are referenced by number(s), shown in parentheses, immediately following each Product name in the following table (in some cases, the additional terms of use referenced may be found in a separate Addendum, as noted):\n \nDesktop Products\n\u25aa ArcGIS for Desktop (Advanced, Standard, or Basic) (26; Addendum 2, Note 1; Addendum 2, Note 6)\n\u25aa ArcGIS Explorer Desktop (20; Addendum 2, Note 1)\n\u25aa ArcGIS for AutoCAD (20)\n\u25aa ArcPad (12; 13; Addendum 2, Note 1; Addendum 2, Note 2)\n\u25aa ArcReader (20; Addendum 2, Note 1)\n\u25aa Esri Business Analyst (Addendum 2, Note 1; Addendum 2, Note 4)\n\u25aa ArcGIS for Windows Mobile (15; 54; Addendum 2, Note 1)\n\u25aa ArcGIS for iOS; ArcGIS for Windows Phone; ArcGIS for Android (Addendum 2, Note 1)\n \nServer Products\n\u25aa ArcGIS for Server\n\u2013 Workgroup (28; 29; 30; 32; 38; 39; Addendum 2, Note 1; Addendum 2, Note 6)\n\u2013 Enterprise (31; 38; 39; Addendum 2, Note 1; Addendum 2, Note 6)\n\u2013 with Virtual Cloud Infrastructure (10; Addendum 3\u2014Common Terms)\n\u25aa ArcGIS for Server Extension\n\u2013 ArcGIS for INSPIRE (Addendum 2, Note 1)\n\u25aa Esri Business Analyst for Server\n\u2013 Workgroup (28; 29; 30; 31; 39; Addendum 2, Note 1; Addendum 2, Note 4)\n\u2013 Enterprise (31; 39; Addendum 2, Note 1; Addendum 2, Note 4)\n\u25aa Portal for ArcGIS (31; Addendum 2, Note 1)\n\u25aa Esri Tracking Server (31)\nDeveloper Tools\n\u25aa ArcGIS Runtime SDK for Android, iOS, Java, Mac OS X, Microsoft .NET Framework (Windows [desktop], Windows Phone, Windows Store), Qt, or WPF (16; 19; Addendum 2, Note 1)\n\u25aa ArcGIS Runtime Standard Level for Android, iOS, Java, Mac OS X, Microsoft .NET Framework (Windows [desktop], Windows Phone, Windows Store), Qt, or WPF (15; 18; Addendum 2, Note 1)\n\u25aa ArcGIS Engine Developer Kit and Extensions (16, 19; 22, 26)\n\u25aa ArcGIS Engine for Windows/Linux and Extensions (15; 22; 26; Addendum 2, Note 1; Addendum 2, Note 6)\n\u25aa ArcGIS Web Mapping (including ArcGIS API for JavaScript/HTML5, ArcGIS API for Flex, ArcGIS API for Microsoft Silverlight) (15; 16; 64; 66; Addendum 2, Note 1)\n\u25aa Esri Business Analyst Server Developer (Addendum 2, Note 1; Addendum 2, Note 4)\n\u25aa Esri Developer Network (EDN) Software and Data (24; 26; Addendum 2, Note 6)\n\u25aa Esri File Geodatabase API (47)\n \nBundled Products\n\u25aa ArcGIS for Transportation Analytics (1; Addendum 2, Note 1; Addendum 2, Note 2; Addendum 2, Note 11)\n \nNotes:\n \n\u25aa If you do not license any of the Products in the table above, these additional terms of use do not apply to you.\n\u25aa Additional terms of use for Products ONLY APPLY to the Products that reference them by number in the table above.\n\u25aa Unless otherwise noted in the applicable Ordering Document, extensions to Software follow the same scope of use as that granted for the corresponding Software.\n \nAdditional Terms of Use for Products listed above:\n \n1. Licensee may use the Software, Data, and Online Services included in ArcGIS for Transportation Analytics solely for direct support of fleet operations. No other use of ArcGIS for Transportation Analytics or the individual components that are part of ArcGIS for Transportation Analytics is permitted. This restriction does not apply to the ArcGIS Online for Organizations account included with ArcGIS for Transportation Analytics. The ArcGIS Online for Organizations account can be used for any purpose subject to the terms of this License Agreement.\n 2\u20139. Reserved.\n10. Licensee will provide information or other materials related to its content (including copies of any client-side applications) as reasonably requested to verify Licensee's compliance with this License Agreement. Esri may monitor the external interfaces (e.g., ports) of Licensee's content to verify Licensee's compliance with this License Agreement. Licensee will not block or interfere with such monitoring, but Licensee may use encryption technology or firewalls to help keep its content confidential. Licensee will reasonably cooperate with Esri to identify the source of any problem with the ArcGIS for Server with Virtual Cloud Infrastructure services that may reasonably be attributed to Licensee's content or any end-user materials that Licensee controls.\n11. Reserved.\n12. Software is licensed for navigational use only when used in conjunction with ArcLogistics.\n13. \"Dual Use License\" means the Software may be installed on a desktop computer and used simultaneously with either a personal digital assistant (PDA) or handheld mobile computer as long as the Software is only used by a single individual at any one (1) time.\n14. Reserved.\n15. Licensed as a Deployment License, subject to Article 3, Section 3.1 of the General License Terms and Conditions.\n16. Licensee may use the SDKs or APIs to create Value-Added Applications and distribute and license those Value-Added Applications to its end users to use the Value-Added Applications anywhere not prohibited under export regulation subject to Article 3, Section 3.1 of the General License Terms and Conditions.\n17. Reserved.\n18. The Deployment License is per Value-Added Application per computer.\n19. License may not be used to develop Internet or server-based Value-Added Applications.\n20. Licensee may reproduce and distribute the Software provided all the following occur:\n \na. The Software is reproduced and distributed in its entirety;\nb. A license agreement accompanies each copy of the Software that protects the Software to the same extent as this License Agreement, and the recipient agrees to be bound by the terms and conditions of the license agreement;\nc. All copyright and trademark attributions/notices are reproduced; and\nd. There is no charge or fee attributable to the use of the Software.\n \n21. Reserved.\n22. a. An end user must license either ArcGIS Engine for Windows/Linux Software or other ArcGIS for Desktop Software (Basic, Standard, or Advanced) to obtain the right to run an ArcGIS Engine application on one (1) computer; and\nb. The ArcGIS Engine for Windows/Linux extensions shall not be used in combination with ArcGIS for Desktop Software to run ArcGIS Engine Value-Added Applications. A single user can have multiple ArcGIS Engine Value-Added Applications installed on one (1) computer for use only by that end user.\n23. Reserved.\n24. EDN Software may be used only for the purposes of development, testing, and demonstration of a prototype Value-Added Application and creating map caches. Value-Added Applications and map caches can be used with Staging and Deployment Servers. EDN server Software and Data may be installed on multiple computers for use by any Licensee EDN developer; all other EDN Software is licensed as a Single Use License.\n25. Reserved.\n26. An ArcSDE Personal Edition geodatabase is restricted to ten (10) gigabytes of Licensee's data.\n27. Reserved.\n28. Use is limited to ten (10) concurrent end users of applications other than ArcGIS for Server applications. This restriction includes use of ArcGIS for Desktop Software, ArcGIS Engine Software, and third-party applications that connect directly to any ArcGIS for Server geodatabase. There are no limitations on the number of connections from web applications.\n29. Software can only be used with a supported version of SQL Server Express. Supported versions are listed with the system requirements for the product on the Esri website.\n30. Use is restricted to a maximum of ten (10) gigabytes of Licensee's data.\n31. Licensee may have redundant Esri Server Software installation(s) for failover operations, but the redundant Software can only be operational during the period the primary site is nonoperational. The redundant Software installation(s) shall remain dormant, except for system maintenance and updating of databases, while the primary site or any other redundant site is operational.\n32. Redundant Software installation for failover operations is not permitted.\n 33\u201337. Reserved.\n38. The ArcGIS 3D Analyst for Server extension included with ArcGIS for Server Standard (Workgroup or Enterprise) may be used only for generating globe data cache(s) or publishing a globe document as an ArcGIS Globe Service. No other use of the ArcGIS 3D Analyst for Server extension Software is permitted with ArcGIS for Server Standard.\n39. Any editing functionality included with ArcGIS for Server is not permitted for use with ArcGIS for Server Basic (Workgroup or Enterprise).\n 40\u201346. Reserved.\n47. Licensee may develop and distribute Value-Added Applications that use Esri File Geodatabase API to Licensee's end users.\n 48\u201353. Reserved.\n54. ArcGIS for Windows Mobile Deployments are licensed for use with ArcGIS for Server Enterprise (Advanced or Standard), ArcGIS for Server Workgroup (Advanced), ArcGIS for Desktop (Advanced, Standard, Basic), and ArcGIS Engine Value-Added Applications.\n 55\u201363. Reserved.\n64. Value-Added Application(s) for web deployment must be used in conjunction with other Esri Product(s). Third-party technologies may also be used in conjunction with Value-Added Application(s) as long as the Value-Added Application(s) is always used in conjunction with other Esri Product(s).\n65. Reserved.\n66. For desktop applications, each license is per organization. For the purposes of this license, organization is equivalent to a principal registered unique domain identifier. Domain is the Internet domain name registered with a domain name registrar. For instance, in example.com, example.com is the registered unique domain identifier. Similarly, in example.com.xx, where xx is a registered country code, example.com.xx is the registered unique domain identifier. Desktop applications can be used by any employee of the organization with the principal registered unique domain identifier. There is no limit to the number of applications that can be built and deployed within an organization.\n \nADDENDUM 2\nDATA TERMS OF USE\n(E300-2)\n \nThis Data Terms of Use Addendum (\"Addendum 2\") sets forth the terms of Licensee's use of Data and includes Licensee's existing master license agreement, if any, or the License Agreement found at http://www.esri.com/legal/software-license (as applicable, the \"License Agreement\"), which is incorporated by reference. This Addendum 2 takes precedence over conflicting General License Terms and Conditions of the License Agreement. Esri reserves the right to modify the Data terms of use referenced below at any time. For Data licensed through a subscription, Licensee may cancel the subscription upon written notice to Esri or discontinue use of the Data, as applicable. If Licensee continues to use the Data, Licensee will be deemed to have accepted the modification. Data terms of use are set forth in the notes referenced below:\n \nSECTION 1\u2014GENERAL RESTRICTIONS ON USE OF DATA\n \nIn addition to the restrictions set forth in Article 4.2 of the License Agreement, the following restrictions apply to use of Data by Licensee and Licensee's end users (collectively, \"Users\"). Any use of Data that is not expressly authorized in Section 2 or elsewhere in the License Agreement is strictly prohibited. Without limiting the generality of the foregoing, Licensee shall ensure Users are prohibited from (i) cobranding Data, (ii) using the Data in any unauthorized service or product, or (iii) offering Data through or on behalf of any third party.\n \nSECTION 2\u2014SPECIFIC TERMS OF USE FOR DATA\n \nThe following table is a list of Esri Products that have specific terms of use in addition to the general terms of use as set forth in the General License Terms and Conditions of the License Agreement. Additional terms of use are listed immediately below this table and are referenced by number(s), shown in parenthesis, immediately following each Product name in the following table:\n \n\u25aa ArcGIS Online Data (1)\n\u25aa StreetMap Premium for ArcGIS (2)\n\u25aa StreetMap for Windows Mobile (2)\n\u25aa StreetMap for ArcPad (2)\n\u25aa StreetMap Premium for ArcGIS for Transportation Analytics (2; Addendum 1, Note 1)\n\u25aa HERE Traffic Data (11; Addendum 1, Note 1)\n\u25aa Data Appliance for ArcGIS (3)\n\u25aa Business Analyst Data (4, 10)\n\u25aa Demographic, Consumer, and Business Data (\"Esri Data\") (5, 10)\n\u25aa Data and Maps for ArcGIS (6)\n\u25aa Esri MapStudio Data (9)\n \nNotes:\n \n\u25aa If you do not license any of the Products in the table above, these additional terms of use do not apply to you.\n\u25aa Additional terms of use for Products ONLY APPLY to the Products that reference them, by number, in the table above.\n \nAdditional Terms of Use for Products listed above:\n \n1. ArcGIS Online Data: Software and Online Services that reference this note enable access to ArcGIS Online Data. ArcGIS Online Data is provided for use solely in conjunction with Licensee's authorized use of Esri Software and Online Services. Use of ArcGIS Online Data that is accessible through non-fee-based ArcGIS Online accounts may be subject to usage limits.\n \nArcGIS Online Basemap Data:\n \na. ArcGIS Online basemap data can be taken offline through Esri Content Packages and subsequently delivered (transferred) to any device for use exclusively with licensed Esri Client Software.\nb. ArcGIS Online basemap data is subject to an aggregate limit of fifty million (50,000,000) transactions during any twelve (12)-month period. Transactions include both basemap and geosearch Transactions. \"Transaction\" is defined in the Documentation at ArcGIS Resources at http://links.esri.com/agol/transactiondef.\n \n Licensee may use Data accessed through ArcGIS Online as permitted under the terms of the URLs referenced below:\n \na. HERE data is subject to the terms of use at http://www.esri.com/supplierterms-HERE.\nb. Tele Atlas/TomTom data is subject to the terms of use at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9792-teleatlas_use_data.pdf.\nc. Data from i-cubed is subject to the terms of use at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9946-icubed.pdf.\nd. Microsoft Bing Maps data is subject to the terms of use at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/e-802-bing-mapsvcs.pdf.\ne. BODC bathymetry data is subject to the terms of use found at http://www.esri.com/terms-of-use-bodc.\nf. MB-Research GmbH (MBR) Data: Users are prohibited from (i) using MBR Data, including, without limitation, European demographic data, consumer demand data, and postal and geographic boundaries, for the purpose of compiling, enhancing, verifying, supplementing, adding to, or deleting from any database or other compilation of information that is sold, rented, published, furnished, or in any manner provided to a third party or (ii) modifying or otherwise altering MBR Data without MBR's prior written consent, such consent to be granted or withheld at MBR's sole discretion.\ng. D&B Data: May not be used for direct mailing or direct marketing purposes.\n \n2. StreetMap Premium for ArcGIS: StreetMap for ArcGIS for Windows Mobile; StreetMap for ArcPad; StreetMap Premium for ArcGIS for Transportation Analytics: These Products, collectively referred to as \"StreetMap Data,\" may be used for mapping, geocoding, and point-to-point routing purposes but are not licensed for dynamic, real-time routing guidance. For instance, StreetMap Data may not be used to alert a user about upcoming maneuvers (such as warning of an upcoming turn) or to calculate an alternate route if a turn is missed. StreetMap Data may not be used to perform synchronized multivehicle routing or route optimization. StreetMap Data acquired for use with ArcGIS for Desktop, ArcGIS for Server, ArcPad, or ArcGIS for Transportation Analytics may only be used with the Product for which the StreetMap Data was acquired, and may not be used with any other Product. StreetMap for Windows Mobile Data is licensed for use solely on mobile devices or in conjunction with ArcGIS for Mobile applications. StreetMap Data may include data from either of the following sources:\n \na. HERE data is subject to the terms of use at http://www.esri.com/supplierterms-HERE. HERE data, when licensed for use in StreetMap Premium for ArcGIS for Transportation Analytics, permits tracking, synchronized multivehicle routing, and route optimization.\nb. Tele Atlas/TomTom data is subject to the terms of use at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9792-teleatlas_use_data.pdf.\n \n3. Data Appliance for ArcGIS: Data provided with Data Appliance is subject to the following additional terms of use:\n \na. HERE data is subject to the terms of use at http://www.esri.com/supplierterms-HERE.\nb. Tele Atlas/TomTom data is subject to the terms of use at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9792-teleatlas_use_data.pdf.\nc. Data from i-cubed is subject to the terms of use at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9946-icubed.pdf.\nd. BODC bathymetry data is subject to the terms of use found at http://www.esri.com/terms-of-use-bodc.\n \n4. Business Analyst Data: Business Analyst Data is provided with Esri Business Analyst (Server, Desktop). The Data is subject to the following additional terms of use:\n \na. The Data is provided for Licensee's internal business use solely in connection with Licensee's authorized use of Software. Subject to Addendum 2, Note 10, Business Analyst Data, including derivative products (e.g., geocodes), are restricted for use only in conjunction with the respective Business Analyst extension. If Licensee orders a license for Esri Business Analyst or Business Analyst (Canadian Edition) with a subset of the national dataset (i.e., Region, State, Local), Licensee may use only the licensed subset, not any other portion of the national dataset.\nb. Business Analyst Data provided with Business Analyst for Server may not be cached or downloaded by client applications and devices.\nc. Infogroup data is subject to the following terms of use: \"Users\" means end users of Esri Software. Any use of the Infogroup database not expressly authorized in this License Agreement is strictly prohibited. Without limiting the generality of the foregoing, Users are expressly prohibited from (i) sublicensing or reselling the Infogroup database; (ii) using or allowing third parties to use the Infogroup database for the purpose of compiling, enhancing, verifying, supplementing, adding to, or deleting from any mailing list, geographic or trade directories, business directories, classified directories, classified advertising, or other compilation of information that is sold, rented, published, furnished, or in any manner provided to a third party; (iii) using the Infogroup database in any service or product not specifically authorized in this License Agreement or offering it through any third party; (iv) disassembling, decompiling, reverse engineering, modifying, or otherwise altering the Infogroup database or any part thereof without Infogroup's prior written consent, such consent to be granted or withheld at Infogroup's sole discretion; or (v) using the Infogroup database for any direct marketing purposes.\nd. HERE data is subject to the terms of use at http://www.esri.com/supplierterms-HERE.\ne. Tele Atlas/TomTom data is subject to the terms of use at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9792-teleatlas_use_data.pdf.\nf. MBR Data: Users are prohibited from (i) using MBR Data, including, without limitation, European demographic data, consumer demand data, and postal and geographic boundaries, for the purpose of compiling, enhancing, verifying, supplementing, adding to, or deleting from any database or other compilation of information that is sold, rented, published, furnished, or in any manner provided to a third party or (ii) modifying, or otherwise altering MBR Data without MBR's prior written consent, such consent to be granted or withheld at MBR's sole discretion.\ng. D&B Data: May not be used for direct mailing or direct marketing purposes.\n \n5. Demographic, Consumer, and Business Data (\"Esri Data\"): This Data category includes the Updated Demographic Database, Census Data, American Community Survey (ACS) Data, Consumer Spending, Business, Retail MarketPlace, Tapestry Segmentation, Market Potential, Crime Index, Major Shopping Center, Traffic Count, and Banking datasets. Esri Data may be used independently of Software or Online Services. Each dataset is available under one or more of the following license types:\n \n\u25aa Single Use: Permits access by a single user to access the data for development or internal use on a desktop computer or server. No Internet access is permitted.\n\u25aa Internal Site/Server\u2014Known User: Permits access by named (known) users for Licensee's internal use. Web access by those named users is permitted.\n\u25aa Public website (noncommercial)\u2014Constituent-Served Model: Permits a municipal government Licensee to use the Data in an externally facing Value-Added Application serving a defined population, provided Licensee does not generate revenue from such use.\n\u25aa Public website (commercial) Known User: Permits Licensee to use the Data in an externally facing Value-Added Application for use by named users and to generate revenue from such Value-Added Application.\n\u25aa Public website (commercial) Anonymous User: Permits Licensee to use the Data in an externally facing Value-Added Application for general use and to generate revenue from such Value-Added Application.\n \n6. Data and Maps for ArcGIS: The Data is available to licensed users of ArcGIS for Desktop, ArcGIS for Server, and ArcGIS Online. Data and Maps for ArcGIS is provided for use solely in conjunction with authorized use of ArcGIS for Desktop, ArcGIS for Server, and ArcGIS Online.\n \na. Licensee may redistribute the Data as described in the Redistribution Rights Matrix available at http://www.esri.com/legal/redistribution-rights, in the Help system, or in supporting metadata files, subject to the specific attribution descriptions and requirements for the dataset accessed.\nb. StreetMap Data may be used for mapping, geocoding, and routing purposes but is not licensed for dynamic routing purposes. For instance, StreetMap USA may not be used to alert a user about upcoming maneuvers (such as warning of an upcoming turn) or to calculate an alternate route if a turn is missed.\n \n7. Reserved.\n8. Reserved.\n9. MapStudio Data: Use of this Data is subject to the following terms and conditions:\n \na. HERE data is subject to the terms of use at http://www.esri.com/supplierterms-HERE.\nb. Tele Atlas/TomTom data is subject to the terms of use at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9792-teleatlas_use_data.pdf.\nc. Data from i-cubed is subject to the terms of use at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9946-icubed.pdf.\nd. D&B Data: May not be used for direct mailing or direct marketing purposes.\n \n10. Licensee may include Data in hard-copy or read-only format (\"Outputs\") in presentation packages, marketing studies, or other reports or documents prepared for third parties. Licensee shall not resell or otherwise externally distribute Outputs in stand-alone form.\n11. ArcGIS for Transportation Analytics\u2014HERE traffic data option: This online data service is available as an option for use exclusively with ArcGIS for Transportation Analytics. Use of this data is subject to the following terms and conditions:\n \na. HERE traffic data is subject to the terms of use at http://www.esri.com/supplierterms-HERE.\nb. No automatic routing or rerouting based on traffic conditions is permitted without the Navigation add-on.\nc. HERE traffic data may not be archived and may be delivered only for end users' personal, near-term use, not to exceed one (1) twenty-four (24)-hour period.\nd. HERE traffic data may not be used to display or broadcast in any FM/AM/HD radio broadcast or television broadcast or through any RDS delivery method.\ne. HERE traffic data may not be used with or incorporated into any traffic system that provides voice traffic reports to inbound callers.\nf. HERE traffic data may not be used to develop or commercially make available a text-to-voice e-mail alert or message or voice mail application using any portion of HERE traffic data.\n \nADDENDUM 3\nONLINE SERVICES ADDENDUM\n(E300-3)\n \nThis Online Services Addendum (\"Addendum 3\") sets forth the terms of Licensee's use of Online Services and includes the Licensee's existing master license agreement, if any, or the License Agreement found at http://www.esri.com/legal/software-license (as applicable, the \"License Agreement\"), which is incorporated by reference. This Addendum 3 takes precedence over conflicting General License Terms and Conditions of the License Agreement. Esri reserves the right to update the terms from time to time. Section 1 of this Addendum 3 contains terms applicable to all Online Services; Section 2 contains common terms applicable to specific Online Services.\n \nSECTION 1\u2014COMMON TERMS OF USE OF ONLINE SERVICES\n \nARTICLE 1\u2014DEFINITIONS\n \nIn addition to the definitions provided in the License Agreement, the following definitions apply to this Addendum 3:\n \na. \"Anonymous Users\" refers to anyone who has public access to any part of the Licensee's Content or Value-Added Applications, which Licensee has published through the use of the Sharing Tools, included with Licensee's licensed use of the Software or Online Services, as further described in Section 2 of this Addendum.\nb. \"API\" means application programming interface.\nc. \"App Login Credential\" means a system-generated application login and associated password, provided by registering a Value-Added Application with ArcGIS Online, which can be embedded in a Value-Added Application to enable the Value-Added Application to access and use Online Services.\nd. \"ArcGIS Website\" means http://www.arcgis.com and any related or successor websites.\ne. \"Content\" means data, images, photographs, animations, video, audio, text, maps, databases, data models, spreadsheets, user interfaces, software applications, and Developer Tools.\nf. \"Developer Tools\" means software development kits (SDKs), APIs, software libraries, code samples, and other resources.\ng. \"Licensee's Content\" means any Content that Licensee, a Licensee's Named User, or any other user submits to Esri in connection with Licensee's use of the Online Services, any results derived from the use of Licensee's Content with Online Services, and any Value-Added Applications Licensee builds with Developer Tools and deploys with Online Services. Licensee's Content excludes any feedback, suggestions, or requests for Product improvements that Licensee provides to Esri.\nh. \"Named User(s)\" means individuals to whom Licensee specifically enables private access to Online Services and Value-Added Applications through Licensee's Online Services account. Named Users can be anyone whom Licensee authorizes to access Online Services, but only for the exclusive benefit of Licensee, for example, Licensee's employees, agents, consultants, or contractors. For Education Plan accounts, Named Users may include registered students. No other third parties may be Named Users. Named Users have private access to features of Online Services that are not publicly accessible to Anonymous Users. Named Users have unique, individual login credentials.\ni. \"Online Content\" means Content hosted or provided by Esri as part of Online Services, including any Map Services, Task Services, Image Services, and Developer Tools and excluding Content provided by third parties that Licensee accesses through Online Services.\nj. \"Service Components\" means each of the following: Online Services, Online Content, ArcGIS Website, Developer Tools, Documentation, or related materials.\nk. \"Sharing Tools\" means publishing capabilities included with Online Services and ArcGIS Website that allow Licensee to make Licensee's Content and Value-Added Applications available to third parties and/or Anonymous Users.\nl. \"Value-Added Application\" means an application developed by Licensee for use in conjunction with the authorized use of any Software, Data, or Online Services.\nm. \"Web Services\" as used under Licensee's existing signed license agreement, if any, means Online Services and any Content delivered by such Online Services.\n \nARTICLE 2\u2014USE OF ONLINE SERVICES\n \n2.1 License to Online Services. Esri grants Licensee a personal, nonexclusive, nontransferable, worldwide license to access and use Online Services as set forth in the applicable Ordering Documents (i) for which the applicable license fees have been paid (if required), (ii) for Licensee's own internal use by Licensee and Licensee's Named Users or Anonymous Users (if applicable), and (iii) in accordance with this License Agreement and the licensed configuration on file as authorized by Esri.\n \n2.2 Provision of Subscription Online Services. For subscription Online Services, Esri will\n \na. Provide Online Services to Licensee in accordance with the Documentation;\nb. Provide customer support in accordance with Esri's standard customer support policies and any additional support Licensee may purchase; and\nc. Use commercially reasonable efforts to ensure that Online Services will not transmit to Licensee any Malicious Code, provided Esri is not responsible for Malicious Code that was introduced to Online Services through Licensee's account or through third-party Content.\n \n2.3 Licensee's Responsibilities.\n \na. Licensee shall be responsible for Named Users' compliance with this Agreement. Licensee and Licensee's Named Users or Anonymous Users (if applicable) are the only persons authorized to access Online Services through Licensee's accounts. Named Users' login credentials are for designated Named Users only and may not be shared among multiple individuals. Named Users' login credentials may be reassigned to new Named Users if the former users no longer require access to Online Services.\nb. Licensee and Licensee's Named Users are responsible for maintaining the confidentiality of Authorization Codes, Access Codes, Named Users' login credentials, or any other method that is provided that enables access to Online Services and for ensuring that unauthorized third parties do not access Licensee's account. Licensee will immediately notify Esri if Licensee becomes aware of any unauthorized use of Licensee's account or any other breach of security.\nc. Licensee is solely responsible for the development and operation of Licensee's Content and Value-Added Applications and the manner in which it chooses to allow or provide use, access, transfer, transmission, maintenance, or processing ability to or by others, including any use and access to Products, and any subsequent end user, end use, and destination restrictions issued by the US government and other governments.\n \n2.4 Prohibited Uses of the Online Services. In addition to the prohibited uses or except as provided under the License Agreement, Licensee shall not (i) attempt to gain unauthorized access to the Online Services or assist others to do so; (ii) use Online Services for spamming, to transmit junk e-mail or offensive or defamatory material, or for stalking or making threats of physical harm; (iii) use Online Services to store or transmit software viruses, worms, time bombs, Trojan horses, or any other computer code, files, or programs designed to interrupt, destroy, or limit the functionality of any computer software, hardware, or telecommunications equipment (\"Malicious Code\"); (iv) mirror, reformat, or display Online Services in an attempt to mirror and/or make commercial use of Online Services except to the degree that Online Services directly enable such functionality; (v) share the client-side data cache derived from Online Content with other licensed end users or third parties; (vi) distribute the client-side data cache derived from Online Services to third parties; (vii) manually or systematically collect or scrape (screen or web scraping) Content from Online Services; (viii) use ArcGIS Online Map Services, Geocoding Services, or Routing Services in communication with any in-vehicle navigation system installed in a vehicle (this does not include portable navigation devices) or that provides real-time, dynamic routing to any device (for instance, these services may not be used to alert a user about upcoming maneuvers such as warning of an upcoming turn or to calculate an alternate route if a turn is missed); or (ix) incorporate any portion of Online Services into a commercial product or service unless the commercial product adds material functionality to Online Services. Licensee shall not use Online Services to (a) infringe or misappropriate any third-party proprietary rights or privacy rights; (b) process, store, transmit, or enable access to any information, data, or technology controlled for export under the International Traffic in Arms (ITAR) regulations; (c) violate any export law; or (d) store or process Content online that is unclassified controlled technical information (UCTI) under DFARS 204.73, or is protected health information (PHI) under the Health Insurance Portability and Accountability Act (HIPAA). Licensee shall not attempt to (a) probe, scan, or test the vulnerability of the Online Services or to breach any security or authentication measures used by the Online Services; or (b) benchmark the availability, performance, or functionality of Online Services for competitive purposes. Licensee is responsible for any fines, penalties, or claims against Esri, including reasonable attorneys' fees, arising out of Licensee's noncompliance with any of the foregoing prohibitions.\n \n2.5 Evaluations. Esri may provide licenses to use certain Services for Licensee's internal evaluation purposes. Such licenses continue until the stated evaluation period expires or until Licensee purchases a subscription, whichever occurs first. IF LICENSEE DOES NOT CONVERT LICENSEE'S EVALUATION LICENSE TO A SUBSCRIPTION PRIOR TO EXPIRATION OF THE EVALUATION TERM, ANY CONTENT AND CUSTOMIZATIONS THAT LICENSEE UPLOADED OR MADE DURING THE EVALUATION TERM WILL BE PERMANENTLY LOST. IF LICENSEE DOES NOT WISH TO PURCHASE A SUBSCRIPTION, LICENSEE MUST EXPORT SUCH CONTENT BEFORE THE END OF LICENSEE'S EVALUATION PERIOD.\n \n2.6 Modifications of Online Services. Esri reserves the right to alter or modify Online Service(s) and related APIs at any time. If reasonable under the circumstances, Esri will provide thirty (30) days' prior notice of any material alterations.\n \n2.7 Discontinuation or Deprecation of Online Services. Esri reserves the right to discontinue or deprecate an Online Service(s) and related API(s) at any time. If reasonable under the circumstances, Esri will provide ninety (90) days' prior notice of any Online Service discontinuation or deprecation. Esri will attempt to support any deprecated APIs for up to six (6) months, unless there are legal, financial, or technological reasons not to support them.\n \n2.8 If any modification, discontinuation, or deprecation of Online Service(s) causes a material, adverse impact to Licensee's operations, Esri may at its sole discretion attempt to repair, correct, or provide a workaround for Online Services. If a viable solution is not commercially reasonable, Licensee may cancel its subscription to Online Services, and Esri will issue a prorated refund.\n \n2.9 Attributions. Licensee is not permitted to remove any Esri or Esri's licensors' logos or other attribution associated with any use of ArcGIS Online Services.\n \nARTICLE 3\u2014TERM AND TERMINATION\n \nThe following supplements Article 5\u2014Term and Termination of the License Agreement:\n \n3.1 Term of Subscriptions. The term of any subscription will be provided in the Ordering Document under which it is purchased or in the Online Services description referenced therein.\n \n3.2 Subscription Rate Changes. Monthly subscription rates may be increased upon thirty (30) days' notice. Esri may increase rates for subscriptions with a term greater than one (1) month by notifying Licensee at least sixty (60) days prior to expiration of the then-current subscription term.\n \n3.3 Service Interruption. Licensee's access (including access on behalf of Licensee's customers) to and use of Online Service(s) may be temporarily unavailable, without prior notice, for any unanticipated or unscheduled downtime or unavailability of all or any portion of Online Services, including system failure or other events beyond the reasonable control of Esri.\n \n3.4 Service Suspension. Esri shall be entitled, without any liability to Licensee, to suspend access to any portion or all of Online Services at any time on a service-wide basis (a) if Licensee breaches the License Agreement; (b) if Licensee exceeds usage limits and fails to purchase additional license capacity sufficient to support Licensee's continued use of Online Services as described in Article 5 of this Addendum; (c) if there is reason to believe that Licensee's use of Online Service(s) will adversely affect the integrity, functionality, or usability of the Online Service(s); (d) if Esri and its licensors may incur liability by not suspending Licensee's account; (e) for scheduled downtime to conduct maintenance or make modifications to Online Service(s); (f) in the event of a threat or attack on Online Service(s) (including a denial-of-service attack) or other event that may create a risk to the applicable part of Online Services; or (g) in the event that Esri determines that Online Services (or portions thereof) are prohibited by law or otherwise that it is necessary or prudent to do so for legal or regulatory reasons. If feasible under these circumstances, Licensee will be notified of any Service Suspension beforehand and allowed reasonable opportunity to take remedial action.\n \n3.5 Esri is not responsible for any damage, liabilities, losses (including any loss of data or profits), or any other consequences that Licensee or any Licensee customer may incur as a result of any Service Interruption or Service Suspension.\n \nARTICLE 4\u2014LICENSEE'S CONTENT, FEEDBACK\n \n4.1 Licensee's Content. Licensee retains all right, title, and interest in Licensee's Content. Licensee hereby grants Esri and Esri's licensors a nonexclusive, nontransferable, worldwide right to host, run, and reproduce Licensee's Content solely for the purpose of enabling Licensee's use of Online Services. Without Licensee's permission, Esri will not access, use, or disclose Licensee's Content except as reasonably necessary to support Licensee's use of Online Services, respond to Licensee's requests for customer support, or troubleshoot Licensee's account or for any other purpose authorized by Licensee in writing. If Licensee accesses Online Services with an application provided by a third party, Esri may disclose Licensee's Content to such third party as necessary to enable interoperation between the application, Online Services, and Licensee's Content. Esri may disclose Licensee's Content if required to do so by law or pursuant to the order of a court or other government body, in which case Esri will reasonably attempt to limit the scope of disclosure. It is Licensee's sole responsibility to ensure that Licensee's Content is suitable for use with Online Services and for maintaining regular offline backups using the Online Services export and download capabilities.\n \n4.2 Removal of Licensee's Content. Licensee will provide information and/or other materials related to Licensee's Content as reasonably requested by Esri to verify Licensee's compliance with this License Agreement. Esri may remove or delete any portions of Licensee's Content if there is reason to believe that uploading it to, or using it with, Online Services violates this License Agreement. If reasonable under these circumstances, Esri will notify Licensee before Licensee's Content is removed. Esri will respond to any Digital Millennium Copyright Act take-down notices in accordance with Esri's Copyright Policy, available at http://www.esri.com/legal/dmca_policy.\n \n4.3 Sharing Licensee's Content. If Licensee elects to share Licensee's Content using Sharing Tools, then Licensee acknowledges that it has enabled third parties to use, store, cache, copy, reproduce, (re)distribute, and (re)transmit Licensee's Content through Online Services. ESRI IS NOT RESPONSIBLE FOR ANY LOSS, DELETION, MODIFICATION, OR DISCLOSURE OF LICENSEE'S CONTENT RESULTING FROM USE OR MISUSE OF SHARING TOOLS OR ANY OTHER SERVICE COMPONENTS. LICENSEE'S USE OF SHARING TOOLS IS AT LICENSEE'S SOLE RISK.\n \n4.4 Retrieving Licensee's Content upon Termination. Upon termination of the License Agreement or any trial, evaluation, or subscription, Esri will make Licensee's Content available to Licensee for download for a period of thirty (30) days unless Licensee requests a shorter window of availability or Esri is legally prohibited from doing so. Thereafter, Licensee's right to access or use Licensee's Content with Online Services will end, and Esri will have no further obligations to store or return Licensee's Content.\n \nARTICLE 5\u2014LIMITS ON USE OF ONLINE SERVICES; SERVICE CREDITS\n \nEsri may establish limits on the Online Services available to Licensee. These limits may be controlled through Service Credits. Service Credits are used to measure the consumption of ArcGIS Online services made available through Licensee's account. The maximum Service Credits provided with Licensee's ArcGIS Online account will be addressed in the applicable Ordering Document. Esri will notify Licensee's account administrator when Licensee's Service Credit consumption reaches approximately seventy-five percent (75%) of the Service Credits allocated to Licensee through Licensee's subscription. Esri will notify Licensee's account administrator if Licensee's Service Credit consumption reaches or exceeds one hundred percent (100%). If Licensee's account exceeds one hundred percent (100%) of the available Service Credits, Licensee may continue to access its account; however, Licensee's access to services that consume Service Credits will be suspended. Licensee's access to the services that consume Service Credits will be restored immediately upon the completion of Licensee's purchase of additional Service Credits.\n \nARTICLE 6\u2014ONLINE CONTENT; THIRD-PARTY CONTENT AND WEBSITES\n \n6.1 Online Content. ArcGIS Online Data is included as a component of Online Services and is licensed under the terms of the License Agreement.\n \n6.2 Third-Party Content and Websites. Online Services and ArcGIS Website may reference or link to third-party websites or enable Licensee to access, view, use, and download third-party Content. This Agreement does not address Licensee's use of third-party Content, and Licensee may be required to agree to different or additional terms in order to use third-party Content. Esri does not control these websites and is not responsible for their operation, content, or availability; Licensee's use of any third-party websites and third-party Content is as is, without warranty, and at Licensee's sole risk. The presence of any links or references in Online Services to third-party websites and resources does not imply an endorsement, affiliation, or sponsorship of any kind.\n \nSECTION 2\u2014TERMS OF USE FOR SPECIFIC ONLINE SERVICES\n \nThe following table is a list of Esri Products that have specific terms of use in addition to the general terms of use as set forth in the General License Terms and Conditions of the License Agreement. Additional terms of use are listed immediately below this table and are referenced by number(s), shown in parentheses, immediately following each Product name in the following table (in some cases, the additional terms of use referenced may be found in a separate Addendum, as noted):\n \n\u25aa ArcGIS Online (1; 2; Addendum 2, Note 1; Addendum 2, Note 6)\n\u25aa Esri Business Analyst Online (3; Addendum 2, Note 1)\n\u25aa Esri Business Analyst Online Mobile (3; Addendum 2, Note 1)\n\u25aa Esri Community Analyst (3; Addendum 2, Note 1)\n\u25aa Esri Redistricting Online (Addendum 2, Note 1)\n\u25aa Esri MapStudio (4; Addendum 2, Note 1; Addendum 2, Note 9)\n \nNotes:\n \n\u25aa If you do not license any of the Products in the table above, these additional terms of use do not apply to you.\n\u25aa Additional terms of use for Products ONLY APPLY to the Products that reference them by number in the table above.\n \nAdditional Terms of Use for Products listed above:\n \n1. In addition to the common terms of use of Online Services:\n \na. Licensee may use Licensee's Esri Online Services account to build a Value-Added Application(s) for Licensee's internal use.\n \nb. Licensee may also provide access to Licensee's Value-Added Application(s) to third parties, subject to the following terms:\n \ni. Licensee may allow Anonymous Users to access Licensee's Value-Added Application(s).\nii. Licensee shall not add third parties as Named Users to Licensee's ArcGIS Online account for the purpose of allowing third parties to access Licensee's Value-Added Application(s). This restriction does not apply to third parties included within the definition of Named Users.\niii. Licensee shall not provide a third party with access to ArcGIS Online Services enabled through Licensee's ArcGIS Online account other than through Licensee's Value-Added Application(s). This restriction does not apply to third parties included within the definition of Named Users.\niv. Licensee is responsible for any fees accrued through the use of Licensee's ArcGIS Online account by third parties accessing Licensee's Value-Added Application(s). This includes Service Credits required to support third-party Online Services usage and any additional subscription fees for Online Services as required.\nv. Licensee is solely responsible for providing technical support for Licensee's Value-Added Application(s).\nvi. Licensee will restrict third-party use of Online Services as required by the terms of this Agreement.\nvii. Licensee may not remove or obscure any trademarks or logos that would normally be displayed through the use of the Online Services without written permission. Licensee must include attribution acknowledging that its application is using Online Services provided by Esri, if attribution is not automatically displayed through the use of Online Services. Guidelines are provided in the Documentation.\nviii. Licensee may not embed a Named User credential into a Value-Added Application. For ArcGIS Online for Organizations, Education, and Nongovernmental Organization/Nonprofit Organization (NGO/NPO) Plan accounts, an App Login Credential may only be embedded into Value-Added Applications that are used to provide public, anonymous access to ArcGIS Online. Licensee may not embed or use ArcGIS Online App Login Credentials in Value-Added Applications for internal use. Value-Added Applications used internally require Named User login credentials.\n \nc. For ArcGIS Online ELA, ArcGIS Online for Organizations, and paid Developer Plan accounts:\n \ni. Licensee is also permitted to\n \n(1) Charge an additional fee to third parties to access Licensee's Value-Added Application(s), subject to the terms of this License Agreement; and\n(2) Transfer Licensee's Value-Added Application(s) to a third party's ArcGIS Online account, subject to the following:\n \n(a) Licensee may charge third parties a fee for Licensee's Value-Added Application(s).\n(b) Licensee is not obligated to provide technical support for the third party's general use of its ArcGIS Online account not related to Licensee's Value-Added Application(s).\n(c) Licensee is not responsible for any fees accrued through the third party's use of Licensee's Value-Added Application(s) that have been transferred to or implemented on the third party's ArcGIS Online account.\n(d) Licensee is not permitted to invite licensees of an ArcGIS Online Public Plan to participate in private groups. This restriction also applies to licensees of Education Plan accounts and NGO/NPO Plan accounts.\n \nd. For ArcGIS Online Public Plan accounts, Development and Testing Plan accounts, Education Plan accounts, and NGO/NPO use of ArcGIS Online for Organizations accounts: Licensee is not permitted to charge an additional fee to third parties to access Licensee's Value-Added Application(s) or generate more than incidental advertising revenue as a consequence of the deployment or use of the Value-Added Application(s). Charging a fee to access Licensee's Value-Added Application(s) or generating more than incidental advertising revenue requires an ArcGIS Online ELA, ArcGIS Online for Organizations, or paid Developer Plan account.\n \ne. For ArcGIS Online Public Plan accounts:\n \ni. Public Plan accounts are licensed for the personal use of an individual. Any use of Public Plan accounts by an individual for the benefit of a for-profit business or a government agency is prohibited.\n \n\u25aa This restriction does not apply to educational institutions when used for teaching purposes only, qualified NGO/NPO organizations, and press or media organizations. Individuals affiliated with these specific types of organization are permitted to use ArcGIS Online Public Plan accounts for the benefit of their affiliated organization(s).\n \nii. Public Plan account Licensees are not permitted to create private groups or participate in any private group created by licensees of ArcGIS Online for Organizations, Education, NGO/NPO, or ELA Plans.\n \nf. For ArcGIS Online Development and Testing Plan accounts:\n \ni. Subject to the terms of this License Agreement, Licensee is permitted to\n \n(1) Allow third parties to access Licensee's Value-Added Application(s) powered by their Development and Testing Plan account, but only if the Value-Added Application(s) is published for public access and is not used for the benefit of a for-profit business or government agency.\n \n\u25aa This restriction does not apply to educational institutions when used for teaching purposes only, qualified NGO/NPO organizations, and press or media organizations. Individuals affiliated with these specific types of organizations are permitted to use ArcGIS Online Development and Testing Plan accounts for the benefit of their affiliated organization(s).\n \nii. Development and Testing Plan account licensees are not permitted to create private groups or participate in any private group created by licensees of ArcGIS Online for Organizations, Education, NGO/NPO, or ELA Plans.\n \ng. For ArcGIS Online paid Developer Plan accounts or Development and Testing Plan accounts:\n \ni. Licensee is limited to one million (1,000,000) basemap and one million (1,000,000) geosearch Transactions per month in conjunction with Licensee's account. \"Transaction\" is defined in the Documentation at ArcGIS Resources at http://links.esri.com/agol/transactiondef.\n \nh. Licensee is not permitted to be the licensee of an ArcGIS Online account for or on behalf of a third party.\n \n\u25aa This restriction does not apply to education institutions that are permitted to be licensees of ArcGIS Online Public Plan accounts on behalf of registered students of the education institution for teaching purposes only. Education institutions are also permitted to provide access to a single ArcGIS Online Public Plan account to more than one (1) registered student when used for teaching purposes only.\n \ni. The terms \"Online ELA account,\" \"Organizations Plan account,\" \"Developer Plan account,\" \"Public Plan account,\" \"Development and Testing Plan account,\" and \"Education Plan account\" refer to different types of ArcGIS Online accounts.\n \n2. Terms of Use for ArcGIS Online Services:\n \na. World Geocoding Service: Licensee may not store the geocoded results generated by the service without an ArcGIS Online account.\nb. Infographics Service: Licensee may use the data accessible through this service for display purposes only. Licensee is prohibited from saving any data accessible through this service.\n \n3. Licensee may not display or post any combination of more than one hundred (100) Esri Business Analyst Online or Esri Community Analyst Reports and maps on Licensee's external websites.\n4. Licensee may create, publicly display, and distribute maps in hard copy and static electronic format for news-reporting purposes, subject to any restrictions for ArcGIS Online Data set forth in Addendum 2, Note 1.\n \nADDENDUM 4\nLIMITED USE PROGRAMS\n(E300-4)\n \nThis Limited Use Programs Addendum (\"Addendum 4\") applies to any Licensee that has been qualified by Esri or its authorized distributor to participate in any of the programs described herein. This Addendum 4 includes the Licensee's existing master license agreement, if any, or the License Agreement found at http://www.esri.com/legal/software-license (as applicable, the \"License Agreement\"), which is incorporated by reference. This Addendum 4 takes precedence over conflicting terms of the License Agreement. Esri reserves the right to update the terms from time to time.\n \n\u25aa Educational Programs (1)\n\u25aa Grant Programs (2)\n\u25aa Home Use Program (3)\n\u25aa Other Esri Limited Use Programs (4)\n \nNotes\n \n1. Educational Programs: Licensee agrees to use Products solely for educational purposes during the educational use Term. Licensee shall not use Products for any Administrative Use unless Licensee has acquired an Administrative Use Term License. \"Administrative Use\" means administrative activities that are not directly related to instruction or education, such as asset mapping, facilities management, demographic analysis, routing, campus safety, and accessibility analysis. Licensee shall not use Products for revenue-generating or for-profit purposes.\n2. Grant Programs: Licensee may use Products only for Noncommercial purposes. Except for cost recovery of using and operating the Products, Licensee shall not use Products for revenue-generating or for-profit purposes.\n3. ArcGIS for Home Use Program:\n \na. All ArcGIS for Home Use Program Products are provided as Term Licenses and are identified on Esri's Home Use Program website found at http://www.esri.com/software/arcgis/arcgis-for-home or Licensee's authorized distributor's website.\nb. Esri grants to Licensee a personal, nonexclusive, nontransferable, Single Use License, without the authorization to install or use a second copy, solely to use the Products provided under the ArcGIS for Home Use Program as set forth in the applicable Ordering Documents (i) for which the applicable license fees have been paid, (ii) for Licensee's own Noncommercial internal use, (iii) in accordance with this License Agreement and the configuration ordered by Licensee or as authorized by Esri or its authorized distributor, and (iv) for a period of twelve (12) months unless terminated earlier in accordance with the License Agreement. \"Noncommercial\" means use in a personal or individual capacity that (i) is not compensated in any fashion; (ii) is not intended to produce any works for commercial use or compensation; (iii) is not intended to provide a commercial service; and (iv) is neither conducted nor funded by any person or entity engaged in the commercial use, application, or exploitation of works similar to the licensed Products.\nc. Installation Support. Installation Support for a period of ninety (90) days is included with ArcGIS for Home Use. As discussed further on the Esri or authorized distributor's website, Esri provides technical support in response to specific inquiries. Installation Support will apply only to unmodified Software. Software is provided only for standard hardware platforms and operating systems supported by Esri as described in the Software Documentation. Esri is not responsible for making or arranging for updates to interfaces for nonstandard devices or custom applications.\n \nEsri Installation Support will be provided in compliance with the Esri ArcGIS for Home Use Installation Support document on the Esri website at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/home-use-installation-support.pdf. Esri supports users solely with the installation of Esri Software. Esri's Support website is at http://support.esri.com/en/support. Support provided by an authorized distributor will be in accordance with the distributor's technical support program terms and conditions.\n \n4. Other Esri Limited Use Programs: If Licensee acquires Products under any limited use program not listed above, Licensee's use of the Products may be subject to the terms set forth in the applicable launching page or enrollment form or as described on Esri's website in addition to the nonconflicting terms of this Addendum 4. All such program terms are incorporated herein by reference.", + "json": "esri.json", + "yaml": "esri.yml", + "html": "esri.html", + "license": "esri.LICENSE" + }, + { + "license_key": "esri-devkit", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-esri-devkit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright 2006 ESRI\n\nAll rights reserved under the copyright laws of the United States\nand applicable international laws, treaties, and conventions.\n\nYou may freely redistribute and use this sample code, with or\nwithout modification, provided you include the original copyright\nnotice and use restrictions.\n\nSee use restrictions at /arcgis/developerkit/userestrictions.", + "json": "esri-devkit.json", + "yaml": "esri-devkit.yml", + "html": "esri-devkit.html", + "license": "esri-devkit.LICENSE" + }, + { + "license_key": "etalab-2.0", + "category": "Permissive", + "spdx_license_key": "etalab-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-etalab-2.0", + "LicenseRef-scancode-etalab-2.0-fr" + ], + "is_exception": false, + "is_deprecated": false, + "text": "LICENCE OUVERTE / OPEN LICENCE\n===================================================================\n\n- Version 2.0\n- Avril 2017\n\n\n\u00ab R\u00c9UTILISATION \u00bb DE L\u2019\u00ab INFORMATION \u00bb SOUS CETTE LICENCE\n-------------------------------------------------------------------\n\nLe \u00ab Conc\u00e9dant \u00bb conc\u00e8de au \u00ab R\u00e9utilisateur \u00bb un droit non exclusif et gratuit\nde libre \u00ab R\u00e9utilisation \u00bb de l\u2019\u00ab Information \u00bb objet de la pr\u00e9sente licence,\n\u00e0 des fins commerciales ou non, dans le monde entier et pour une dur\u00e9e\nillimit\u00e9e, dans les conditions exprim\u00e9es ci-dessous.\n\nLe \u00ab R\u00e9utilisateur \u00bb est libre de r\u00e9utiliser l\u2019\u00ab Information \u00bb :\n\n- de la reproduire, la copier,\n- de l\u2019adapter, la modifier, l\u2019extraire et la transformer, pour cr\u00e9er des\n\u00ab Informations d\u00e9riv\u00e9es \u00bb, des produits ou des services,\n- de la communiquer, la diffuser, la redistribuer, la publier et la transmettre,\n- de l\u2019exploiter \u00e0 titre commercial, par exemple en la combinant avec d\u2019autres\ninformations, ou en l\u2019incluant dans son propre produit ou application.\n\nSous r\u00e9serve de :\n\n- mentionner la paternit\u00e9 de l\u2019\u00ab Information \u00bb : sa source (au moins le nom du\n\u00ab Conc\u00e9dant \u00bb) et la date de derni\u00e8re mise \u00e0 jour de l\u2019\u00ab Information \u00bb\nr\u00e9utilis\u00e9e.\n\nLe \u00ab R\u00e9utilisateur \u00bb peut notamment s\u2019acquitter de cette condition en renvoyant,\npar un lien hypertexte, vers la source de \u00ab l\u2019Information \u00bb et assurant une\nmention effective de sa paternit\u00e9.\n\nPar exemple :\n\n\u00ab Minist\u00e8re de xxx - Donn\u00e9es originales t\u00e9l\u00e9charg\u00e9es sur\nhttp://www.data.gouv.fr/fr/datasets/xxx/, mise \u00e0 jour du 14 f\u00e9vrier 2017 \u00bb.\n\nCette mention de paternit\u00e9 ne conf\u00e8re aucun caract\u00e8re officiel \u00e0 la\n\u00ab R\u00e9utilisation \u00bb de l\u2019\u00ab Information \u00bb, et ne doit pas sugg\u00e9rer une quelconque\nreconnaissance ou caution par le \u00ab Conc\u00e9dant \u00bb, ou par toute autre entit\u00e9\npublique, du \u00ab R\u00e9utilisateur \u00bb ou de sa \u00ab R\u00e9utilisation \u00bb.\n\n\n\u00ab DONN\u00c9ES \u00c0 CARACT\u00c8RE PERSONNEL \u00bb\n-------------------------------------------------------------------\n\nL\u2019\u00ab Information \u00bb mise \u00e0 disposition peut contenir des \u00ab Donn\u00e9es \u00e0 caract\u00e8re\npersonnel \u00bb pouvant faire l\u2019objet d\u2019une \u00ab R\u00e9utilisation \u00bb. Si tel est le cas,\nle \u00ab Conc\u00e9dant \u00bb informe le \u00ab R\u00e9utilisateur \u00bb de leur pr\u00e9sence.\n\nL\u2019\u00ab Information \u00bb peut \u00eatre librement r\u00e9utilis\u00e9e, dans le cadre des droits\naccord\u00e9s par la pr\u00e9sente licence, \u00e0 condition de respecter le cadre l\u00e9gal\nrelatif \u00e0 la protection des donn\u00e9es \u00e0 caract\u00e8re personnel.\n\n\n\u00ab DROITS DE PROPRI\u00c9T\u00c9 INTELLECTUELLE \u00bb\n-------------------------------------------------------------------\n\nIl est garanti au \u00ab R\u00e9utilisateur \u00bb que les \u00e9ventuels \u00ab Droits de propri\u00e9t\u00e9\nintellectuelle \u00bb d\u00e9tenus par des tiers ou par le \u00ab Conc\u00e9dant \u00bb sur\nl\u2019\u00ab Information \u00bb ne font pas obstacle aux droits accord\u00e9s par la pr\u00e9sente\nlicence.\n\nLorsque le \u00ab Conc\u00e9dant \u00bb d\u00e9tient des \u00ab Droits de propri\u00e9t\u00e9 intellectuelle \u00bb\ncessibles sur l\u2019\u00ab Information \u00bb, il les c\u00e8de au \u00ab R\u00e9utilisateur \u00bb de fa\u00e7on non\nexclusive, \u00e0 titre gracieux, pour le monde entier, pour toute la dur\u00e9e des\n\u00ab Droits de propri\u00e9t\u00e9 intellectuelle \u00bb, et le \u00ab R\u00e9utilisateur \u00bb peut faire tout\nusage de l\u2019\u00ab Information \u00bb conform\u00e9ment aux libert\u00e9s et aux conditions d\u00e9finies\npar la pr\u00e9sente licence.\n\n\nRESPONSABILIT\u00c9\n-------------------------------------------------------------------\n\nL\u2019\u00ab Information \u00bb est mise \u00e0 disposition telle que produite ou re\u00e7ue par le\n\u00ab Conc\u00e9dant \u00bb, sans autre garantie expresse ou tacite que celles pr\u00e9vues par la\npr\u00e9sente licence. L\u2019absence de d\u00e9fauts ou d\u2019erreurs \u00e9ventuellement contenues\ndans l\u2019\u00ab Information \u00bb, comme la fourniture continue de l\u2019\u00ab Information \u00bb n\u2019est\npas garantie par le \u00ab Conc\u00e9dant \u00bb. Il ne peut \u00eatre tenu pour responsable de\ntoute perte, pr\u00e9judice ou dommage de quelque sorte caus\u00e9 \u00e0 des tiers du fait de\nla \u00ab R\u00e9utilisation \u00bb.\n\nLe \u00ab R\u00e9utilisateur \u00bb est seul responsable de la \u00ab R\u00e9utilisation \u00bb de\nl\u2019\u00ab Information \u00bb.\n\nLa \u00ab R\u00e9utilisation \u00bb ne doit pas induire en erreur des tiers quant au contenu\nde l\u2019\u00ab Information \u00bb, sa source et sa date de mise \u00e0 jour.\n\n\nDROIT APPLICABLE\n-------------------------------------------------------------------\n\nLa pr\u00e9sente licence est r\u00e9gie par le droit fran\u00e7ais.\n\n\nCOMPATIBILIT\u00c9 DE LA PR\u00c9SENTE LICENCE\n-------------------------------------------------------------------\n\nLa pr\u00e9sente licence a \u00e9t\u00e9 con\u00e7ue pour \u00eatre compatible avec toute licence libre\nqui exige au moins la mention de paternit\u00e9 et notamment avec la version\nant\u00e9rieure de la pr\u00e9sente licence ainsi qu\u2019avec les licences :\n\n- \u00ab Open Government Licence \u00bb (OGL) du Royaume-Uni,\n- \u00ab Creative Commons Attribution \u00bb (CC-BY) de Creative Commons et\n- \u00ab Open Data Commons Attribution \u00bb (ODC-BY) de l\u2019Open Knowledge Foundation.\n\n\nD\u00c9FINITIONS\n-------------------------------------------------------------------\n\nSont consid\u00e9r\u00e9s, au sens de la pr\u00e9sente licence comme :\n\nLe \u00ab Conc\u00e9dant \u00bb : toute personne conc\u00e9dant un droit de \u00ab R\u00e9utilisation \u00bb sur\nl\u2019\u00ab Information \u00bb dans les libert\u00e9s et les conditions pr\u00e9vues par la pr\u00e9sente\nlicence\n\nL\u2019\u00ab Information \u00bb :\n\n- toute information publique figurant dans des documents communiqu\u00e9s ou publi\u00e9s\npar une administration mentionn\u00e9e au premier alin\u00e9a de l\u2019article L.300-2 du\nCRPA;\n- toute information mise \u00e0 disposition par toute personne selon les termes et\nconditions de la pr\u00e9sente licence.\n\nLa \u00ab R\u00e9utilisation \u00bb : l\u2019utilisation de l\u2019\u00ab Information \u00bb \u00e0 d\u2019autres fins que\ncelles pour lesquelles elle a \u00e9t\u00e9 produite ou re\u00e7ue.\n\nLe \u00ab R\u00e9utilisateur \u00bb: toute personne qui r\u00e9utilise les \u00ab Informations \u00bb\nconform\u00e9ment aux conditions de la pr\u00e9sente licence.\n\nDes \u00ab Donn\u00e9es \u00e0 caract\u00e8re personnel \u00bb : toute information se rapportant \u00e0 une\npersonne physique identifi\u00e9e ou identifiable, pouvant \u00eatre identifi\u00e9e\ndirectement ou indirectement. Leur \u00ab R\u00e9utilisation \u00bb est subordonn\u00e9e au respect\ndu cadre juridique en vigueur.\n\nUne \u00ab Information d\u00e9riv\u00e9e \u00bb : toute nouvelle donn\u00e9e ou information cr\u00e9\u00e9es\ndirectement \u00e0 partir de l\u2019\u00ab Information \u00bb ou \u00e0 partir d\u2019une combinaison de\nl\u2019\u00ab Information \u00bb et d\u2019autres donn\u00e9es ou informations non soumises \u00e0 cette\nlicence.\n\nLes \u00ab Droits de propri\u00e9t\u00e9 intellectuelle \u00bb : tous droits identifi\u00e9s comme tels\npar le Code de la propri\u00e9t\u00e9 intellectuelle (notamment le droit d\u2019auteur, droits\nvoisins au droit d\u2019auteur, droit sui generis des producteurs de bases de\ndonn\u00e9es\u2026).\n\n\n\u00c0 PROPOS DE CETTE LICENCE\n-------------------------------------------------------------------\n\nLa pr\u00e9sente licence a vocation \u00e0 \u00eatre utilis\u00e9e par les administrations pour la\nr\u00e9utilisation de leurs informations publiques. Elle peut \u00e9galement \u00eatre\nutilis\u00e9e par toute personne souhaitant mettre \u00e0 disposition de\nl\u2019\u00ab Information \u00bb dans les conditions d\u00e9finies par la pr\u00e9sente licence.\n\nLa France est dot\u00e9e d\u2019un cadre juridique global visant \u00e0 une diffusion\nspontan\u00e9e par les administrations de leurs informations publiques afin d\u2019en\npermettre la plus large r\u00e9utilisation.\n\nLe droit de la \u00ab R\u00e9utilisation \u00bb de l\u2019\u00ab Information \u00bb des administrations est\nr\u00e9gi par le code des relations entre le public et l\u2019administration (CRPA).\n\nCette licence facilite la r\u00e9utilisation libre et gratuite des informations\npubliques et figure parmi les licences qui peuvent \u00eatre utilis\u00e9es par\nl\u2019administration en vertu du d\u00e9cret pris en application de l\u2019article L.323-2\ndu CRPA.\n\nEtalab est la mission charg\u00e9e, sous l\u2019autorit\u00e9 du Premier ministre, d\u2019ouvrir le\nplus grand nombre de donn\u00e9es publiques des administrations de l\u2019Etat et de ses\n\u00e9tablissements publics. Elle a r\u00e9alis\u00e9 la Licence Ouverte pour faciliter la\nr\u00e9utilisation libre et gratuite de ces informations publiques, telles que\nd\u00e9finies par l\u2019article L321-1 du CRPA.\n\nCette licence est la version 2.0 de la Licence Ouverte.\n\nEtalab se r\u00e9serve la facult\u00e9 de proposer de nouvelles versions de la Licence\nOuverte. Cependant, les \u00ab R\u00e9utilisateurs \u00bb pourront continuer \u00e0 r\u00e9utiliser les\ninformations qu\u2019ils ont obtenues sous cette licence s\u2019ils le souhaitent.", + "json": "etalab-2.0.json", + "yaml": "etalab-2.0.yml", + "html": "etalab-2.0.html", + "license": "etalab-2.0.LICENSE" + }, + { + "license_key": "etalab-2.0-en", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-etalab-2.0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "# OPEN LICENCE 2.0/LICENCE OUVERTE 2.0\n\n## \u201cReuse\u201d of the \u201cInformation\u201d covered by this licence\n\nThe \u201cGrantor\u201d grants the \u201cReuser\u201d the free, non-exclusive right to \u201cReuse\u201d the \u201cInformation\u201d subject of this licence, for commercial or non-commercial purposes, worldwide and for an unlimited period, in accordance with the conditions stated below.\n\n**The \u201cReuser\u201d is free to reuse the \u201cInformation\u201d:**\n\n- To reproduce it, copy it.\n- To adapt, modify, retrieve and transform it in order to create \u201cderived information\u201d, products and services.\n- To share, disseminate, redistribute, publish and transmit it.\n- To exploit it for commercial purposes, e.g., by combining it with other information, or by including it in his/her own product or application.\n\n**Subject to:**\n\n- An acknowledgement of the authorship of the \u201cInformation\u201d: its source (at least, the name of the \u201cGrantor\u201d) and the date of the most recent update of the reused \u201cInformation\u201d. Specifically, the \u201cReuser\u201d may satisfy this condition by pointing, via a hypertext link, to the source of \u201cthe Information\u201d and so supplying an actual acknowledgement of its authorship.\n\n**For example:**\n\n> \u201cMinistry of xxx\u2014Original data downloaded from `http://www.data.gouv.fr/fr/datasets/xxx/`, updated on 14 February 2017\u201d.\n\nThis acknowledgement of authorship does not confer any official status on the \u201cReuse\u201d of the \u201cInformation\u201d, and must not suggest any sort of recognition or endorsement on the part of the \u201cGrantor\u201d, or any other public entity, of the \u201cReuser\u201d or of their \u201cReuse\u201d.\n\n## Personal data\n\nThe \u201cInformation\u201d made available may contain \u201cPersonal data\u201d that may be subject to \u201cReuse\u201d. If this is the case, the \u201cGrantor\u201d informs the \u201cReuser\u201d about its existence. The \u201cInformation\u201d may be freely reused, within the rights granted by this licence, subject to compliance with the legal framework relating to personal data protection.\n\n## Intellectual property rights\n\nIt is guaranteed to The \u201cReuser\u201d that potential \u201cIntellectual property rights\u201d held by third parties or by the \u201cGrantor\u201d on \u201cInformation\u201d do not interfere with the rights granted by this licence.\n\nWhen the \u201cGrantor\u201d holds transferable \u201cIntellectual property rights\u201d on the \u201cInformation\u201d, he/she assigns these to the \u201cReuser\u201d on a non-exclusive basis, free of charge, worldwide, for the entire duration of the \u201cIntellectual property rights\u201d, and the \u201cReuser\u201d is free to use the \u201cInformation\u201d for any purpose that complies with the rights and conditions defined in this licence.\n\n## Liability\n\nThe \u201cInformation\u201d is made available as it is produced or received by the \u201cGrantor\u201d, without any other express or tacit guarantee than those set out in this licence. The \u201cGrantor\u201d does not guarantee the absence of errors or inaccuracies in the \u201cInformation\u201d, nor a continuous supply of the \u201cInformation\u201d. He/she cannot be held responsible for any loss, prejudice or damage of any kind caused to third parties as a result of the \u201cReuse\u201d.\n\nThe \u201cReuser\u201d is solely responsible for the \u201cReuse\u201d of the \u201cInformation\u201d. This \u201cReuse\u201d must not mislead third parties as to the contents of the \u201cInformation\u201d, its source or its date of update.\n\n## Applicable legislation\n\nThis licence is governed by French law.\n\n### Compatibility of this licence\n\nThis licence has been designed to be compatible with any free licence that at least requires an acknowledgement of authorship, and specifically with the previous version of this licence as well as with the following licences: United Kingdom\u2019s \u201cOpen Government Licence\u201d (OGL), Creative Commons\u2019 \u201cCreative Commons Attribution\u201d (CC-BY) and Open Knowledge Foundation\u2019s \u201cOpen Data Commons Attribution\u201d (ODC-BY).\n\n## Definitions\n\nWithin the meaning of this licence, are to be considered as :\n\n- The \u201cGrantor\u201d: any person granting the right to \u201cReuse\u201d \u201cInformation\u201d under the rights and conditions set out in this licence.\n- The \u201cInformation\u201d:\n - any public information contained in documents disclosed or published by any administration referred to in the first paragraph of Article L. 300-2 of the code des relations entre le public et l\u2019administration (CRPA),\n - any information made available by any person under the terms and conditions of this licence.\n- The \u201cReuse\u201d: the use of the \u201cInformation\u201d for other purposes than those for which it was produced or received.\n- The\u201cReuser\u201d: any person reusing the \u201cInformation\u201d in accordance with the conditions of this licence.\n- \u201cPersonal data\u201d: any information relating to an identified or identifiable natural person who may be identified directly or indirectly. Its \u201cReuse\u201d is conditional on the respect of the existing legal framework.\n- \u201cDerived information\u201d: any new data or information created directly from the \u201cInformation\u201d or from a combination of the \u201cInformation\u201d and other data or information not subject to this licence.\n- \u201cIntellectual property rights\u201d: all rights identified as such under the code de la propri\u00e9t\u00e9 intellectuelle (including copyright, rights related to copyright, sui generis rights of database producers, etc.).\n\n## About this licence\n\nThis licence is intended to be used by administrations for the reuse of their public information. It can also be used by any individual wishing to supply \u201cInformation\u201d under the conditions defined in this licence.\n\nFrance has a comprehensive legal framework aiming at the spontaneous dissemination by the administrations of their public information in order to ensure the widest possible reuse of this information.\n\nThe right to \u201cReuse\u201d the administrations\u2019 \u201cInformation\u201d is governed by the code des relations entre le public et l\u2019administration (CRPA).\n\nThis licence facilitates the unrestricted and free of charge reuse of public information and is one of the licences which can be used by the administration pursuant to the decree issued under article L. 323-2 of the CRPA.\n\nUnder the Prime Minister\u2019s authority, the Etalab mission is mandated to open up the maximum amount of data held by State administrations and public institutions. Etalab has drawn up the Open Licence to facilitate the unrestricted and free of charge reuse of public information, as defined by article L. 321-1 of the CRPA.\n\nThis licence is version 2.0 of the Open Licence.\n\nEtalab reserves the right to propose new versions of the Open Licence. Nevertheless, \u201cReusers\u201d may continue to reuse information obtained under this licence should they so wish.", + "json": "etalab-2.0-en.json", + "yaml": "etalab-2.0-en.yml", + "html": "etalab-2.0-en.html", + "license": "etalab-2.0-en.LICENSE" + }, + { + "license_key": "etalab-2.0-fr", + "category": "Unstated License", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "LICENCE OUVERTE / OPEN LICENCE\n===================================================================\n\n- Version 2.0\n- Avril 2017\n\n\n\u00ab R\u00c9UTILISATION \u00bb DE L\u2019\u00ab INFORMATION \u00bb SOUS CETTE LICENCE\n-------------------------------------------------------------------\n\nLe \u00ab Conc\u00e9dant \u00bb conc\u00e8de au \u00ab R\u00e9utilisateur \u00bb un droit non exclusif et gratuit\nde libre \u00ab R\u00e9utilisation \u00bb de l\u2019\u00ab Information \u00bb objet de la pr\u00e9sente licence,\n\u00e0 des fins commerciales ou non, dans le monde entier et pour une dur\u00e9e\nillimit\u00e9e, dans les conditions exprim\u00e9es ci-dessous.\n\nLe \u00ab R\u00e9utilisateur \u00bb est libre de r\u00e9utiliser l\u2019\u00ab Information \u00bb :\n\n- de la reproduire, la copier,\n- de l\u2019adapter, la modifier, l\u2019extraire et la transformer, pour cr\u00e9er des\n\u00ab Informations d\u00e9riv\u00e9es \u00bb, des produits ou des services,\n- de la communiquer, la diffuser, la redistribuer, la publier et la transmettre,\n- de l\u2019exploiter \u00e0 titre commercial, par exemple en la combinant avec d\u2019autres\ninformations, ou en l\u2019incluant dans son propre produit ou application.\n\nSous r\u00e9serve de :\n\n- mentionner la paternit\u00e9 de l\u2019\u00ab Information \u00bb : sa source (au moins le nom du\n\u00ab Conc\u00e9dant \u00bb) et la date de derni\u00e8re mise \u00e0 jour de l\u2019\u00ab Information \u00bb\nr\u00e9utilis\u00e9e.\n\nLe \u00ab R\u00e9utilisateur \u00bb peut notamment s\u2019acquitter de cette condition en renvoyant,\npar un lien hypertexte, vers la source de \u00ab l\u2019Information \u00bb et assurant une\nmention effective de sa paternit\u00e9.\n\nPar exemple :\n\n\u00ab Minist\u00e8re de xxx - Donn\u00e9es originales t\u00e9l\u00e9charg\u00e9es sur\nhttp://www.data.gouv.fr/fr/datasets/xxx/, mise \u00e0 jour du 14 f\u00e9vrier 2017 \u00bb.\n\nCette mention de paternit\u00e9 ne conf\u00e8re aucun caract\u00e8re officiel \u00e0 la\n\u00ab R\u00e9utilisation \u00bb de l\u2019\u00ab Information \u00bb, et ne doit pas sugg\u00e9rer une quelconque\nreconnaissance ou caution par le \u00ab Conc\u00e9dant \u00bb, ou par toute autre entit\u00e9\npublique, du \u00ab R\u00e9utilisateur \u00bb ou de sa \u00ab R\u00e9utilisation \u00bb.\n\n\n\u00ab DONN\u00c9ES \u00c0 CARACT\u00c8RE PERSONNEL \u00bb\n-------------------------------------------------------------------\n\nL\u2019\u00ab Information \u00bb mise \u00e0 disposition peut contenir des \u00ab Donn\u00e9es \u00e0 caract\u00e8re\npersonnel \u00bb pouvant faire l\u2019objet d\u2019une \u00ab R\u00e9utilisation \u00bb. Si tel est le cas,\nle \u00ab Conc\u00e9dant \u00bb informe le \u00ab R\u00e9utilisateur \u00bb de leur pr\u00e9sence.\n\nL\u2019\u00ab Information \u00bb peut \u00eatre librement r\u00e9utilis\u00e9e, dans le cadre des droits\naccord\u00e9s par la pr\u00e9sente licence, \u00e0 condition de respecter le cadre l\u00e9gal\nrelatif \u00e0 la protection des donn\u00e9es \u00e0 caract\u00e8re personnel.\n\n\n\u00ab DROITS DE PROPRI\u00c9T\u00c9 INTELLECTUELLE \u00bb\n-------------------------------------------------------------------\n\nIl est garanti au \u00ab R\u00e9utilisateur \u00bb que les \u00e9ventuels \u00ab Droits de propri\u00e9t\u00e9\nintellectuelle \u00bb d\u00e9tenus par des tiers ou par le \u00ab Conc\u00e9dant \u00bb sur\nl\u2019\u00ab Information \u00bb ne font pas obstacle aux droits accord\u00e9s par la pr\u00e9sente\nlicence.\n\nLorsque le \u00ab Conc\u00e9dant \u00bb d\u00e9tient des \u00ab Droits de propri\u00e9t\u00e9 intellectuelle \u00bb\ncessibles sur l\u2019\u00ab Information \u00bb, il les c\u00e8de au \u00ab R\u00e9utilisateur \u00bb de fa\u00e7on non\nexclusive, \u00e0 titre gracieux, pour le monde entier, pour toute la dur\u00e9e des\n\u00ab Droits de propri\u00e9t\u00e9 intellectuelle \u00bb, et le \u00ab R\u00e9utilisateur \u00bb peut faire tout\nusage de l\u2019\u00ab Information \u00bb conform\u00e9ment aux libert\u00e9s et aux conditions d\u00e9finies\npar la pr\u00e9sente licence.\n\n\nRESPONSABILIT\u00c9\n-------------------------------------------------------------------\n\nL\u2019\u00ab Information \u00bb est mise \u00e0 disposition telle que produite ou re\u00e7ue par le\n\u00ab Conc\u00e9dant \u00bb, sans autre garantie expresse ou tacite que celles pr\u00e9vues par la\npr\u00e9sente licence. L\u2019absence de d\u00e9fauts ou d\u2019erreurs \u00e9ventuellement contenues\ndans l\u2019\u00ab Information \u00bb, comme la fourniture continue de l\u2019\u00ab Information \u00bb n\u2019est\npas garantie par le \u00ab Conc\u00e9dant \u00bb. Il ne peut \u00eatre tenu pour responsable de\ntoute perte, pr\u00e9judice ou dommage de quelque sorte caus\u00e9 \u00e0 des tiers du fait de\nla \u00ab R\u00e9utilisation \u00bb.\n\nLe \u00ab R\u00e9utilisateur \u00bb est seul responsable de la \u00ab R\u00e9utilisation \u00bb de\nl\u2019\u00ab Information \u00bb.\n\nLa \u00ab R\u00e9utilisation \u00bb ne doit pas induire en erreur des tiers quant au contenu\nde l\u2019\u00ab Information \u00bb, sa source et sa date de mise \u00e0 jour.\n\n\nDROIT APPLICABLE\n-------------------------------------------------------------------\n\nLa pr\u00e9sente licence est r\u00e9gie par le droit fran\u00e7ais.\n\n\nCOMPATIBILIT\u00c9 DE LA PR\u00c9SENTE LICENCE\n-------------------------------------------------------------------\n\nLa pr\u00e9sente licence a \u00e9t\u00e9 con\u00e7ue pour \u00eatre compatible avec toute licence libre\nqui exige au moins la mention de paternit\u00e9 et notamment avec la version\nant\u00e9rieure de la pr\u00e9sente licence ainsi qu\u2019avec les licences :\n\n- \u00ab Open Government Licence \u00bb (OGL) du Royaume-Uni,\n- \u00ab Creative Commons Attribution \u00bb (CC-BY) de Creative Commons et\n- \u00ab Open Data Commons Attribution \u00bb (ODC-BY) de l\u2019Open Knowledge Foundation.\n\n\nD\u00c9FINITIONS\n-------------------------------------------------------------------\n\nSont consid\u00e9r\u00e9s, au sens de la pr\u00e9sente licence comme :\n\nLe \u00ab Conc\u00e9dant \u00bb : toute personne conc\u00e9dant un droit de \u00ab R\u00e9utilisation \u00bb sur\nl\u2019\u00ab Information \u00bb dans les libert\u00e9s et les conditions pr\u00e9vues par la pr\u00e9sente\nlicence\n\nL\u2019\u00ab Information \u00bb :\n\n- toute information publique figurant dans des documents communiqu\u00e9s ou publi\u00e9s\npar une administration mentionn\u00e9e au premier alin\u00e9a de l\u2019article L.300-2 du\nCRPA;\n- toute information mise \u00e0 disposition par toute personne selon les termes et\nconditions de la pr\u00e9sente licence.\n\nLa \u00ab R\u00e9utilisation \u00bb : l\u2019utilisation de l\u2019\u00ab Information \u00bb \u00e0 d\u2019autres fins que\ncelles pour lesquelles elle a \u00e9t\u00e9 produite ou re\u00e7ue.\n\nLe \u00ab R\u00e9utilisateur \u00bb: toute personne qui r\u00e9utilise les \u00ab Informations \u00bb\nconform\u00e9ment aux conditions de la pr\u00e9sente licence.\n\nDes \u00ab Donn\u00e9es \u00e0 caract\u00e8re personnel \u00bb : toute information se rapportant \u00e0 une\npersonne physique identifi\u00e9e ou identifiable, pouvant \u00eatre identifi\u00e9e\ndirectement ou indirectement. Leur \u00ab R\u00e9utilisation \u00bb est subordonn\u00e9e au respect\ndu cadre juridique en vigueur.\n\nUne \u00ab Information d\u00e9riv\u00e9e \u00bb : toute nouvelle donn\u00e9e ou information cr\u00e9\u00e9es\ndirectement \u00e0 partir de l\u2019\u00ab Information \u00bb ou \u00e0 partir d\u2019une combinaison de\nl\u2019\u00ab Information \u00bb et d\u2019autres donn\u00e9es ou informations non soumises \u00e0 cette\nlicence.\n\nLes \u00ab Droits de propri\u00e9t\u00e9 intellectuelle \u00bb : tous droits identifi\u00e9s comme tels\npar le Code de la propri\u00e9t\u00e9 intellectuelle (notamment le droit d\u2019auteur, droits\nvoisins au droit d\u2019auteur, droit sui generis des producteurs de bases de\ndonn\u00e9es\u2026).\n\n\n\u00c0 PROPOS DE CETTE LICENCE\n-------------------------------------------------------------------\n\nLa pr\u00e9sente licence a vocation \u00e0 \u00eatre utilis\u00e9e par les administrations pour la\nr\u00e9utilisation de leurs informations publiques. Elle peut \u00e9galement \u00eatre\nutilis\u00e9e par toute personne souhaitant mettre \u00e0 disposition de\nl\u2019\u00ab Information \u00bb dans les conditions d\u00e9finies par la pr\u00e9sente licence.\n\nLa France est dot\u00e9e d\u2019un cadre juridique global visant \u00e0 une diffusion\nspontan\u00e9e par les administrations de leurs informations publiques afin d\u2019en\npermettre la plus large r\u00e9utilisation.\n\nLe droit de la \u00ab R\u00e9utilisation \u00bb de l\u2019\u00ab Information \u00bb des administrations est\nr\u00e9gi par le code des relations entre le public et l\u2019administration (CRPA).\n\nCette licence facilite la r\u00e9utilisation libre et gratuite des informations\npubliques et figure parmi les licences qui peuvent \u00eatre utilis\u00e9es par\nl\u2019administration en vertu du d\u00e9cret pris en application de l\u2019article L.323-2\ndu CRPA.\n\nEtalab est la mission charg\u00e9e, sous l\u2019autorit\u00e9 du Premier ministre, d\u2019ouvrir le\nplus grand nombre de donn\u00e9es publiques des administrations de l\u2019Etat et de ses\n\u00e9tablissements publics. Elle a r\u00e9alis\u00e9 la Licence Ouverte pour faciliter la\nr\u00e9utilisation libre et gratuite de ces informations publiques, telles que\nd\u00e9finies par l\u2019article L321-1 du CRPA.\n\nCette licence est la version 2.0 de la Licence Ouverte.\n\nEtalab se r\u00e9serve la facult\u00e9 de proposer de nouvelles versions de la Licence\nOuverte. Cependant, les \u00ab R\u00e9utilisateurs \u00bb pourront continuer \u00e0 r\u00e9utiliser les\ninformations qu\u2019ils ont obtenues sous cette licence s\u2019ils le souhaitent.", + "json": "etalab-2.0-fr.json", + "yaml": "etalab-2.0-fr.yml", + "html": "etalab-2.0-fr.html", + "license": "etalab-2.0-fr.LICENSE" + }, + { + "license_key": "eu-datagrid", + "category": "Permissive", + "spdx_license_key": "EUDatagrid", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "EU DataGrid Software License\n\nCopyright (c) 2001 EU DataGrid. All rights reserved.\n\nThis software includes voluntary contributions made to the EU DataGrid. For more information on the EU DataGrid, please see http://www.eu-datagrid.org/.\n\nInstallation, use, reproduction, display, modification and redistribution of this software, with or without modification, in source and binary forms, are permitted. Any exercise of rights under this license by you or your sub-licensees is subject to the following conditions:\n\n1. Redistributions of this software, with or without modification, must reproduce the above copyright notice and the above license statement as well as this list of conditions, in the software, the user documentation and any other materials provided with the software.\n\n2. The user documentation, if any, included with a redistribution, must include the following notice: \"This product includes software developed by the EU DataGrid (http://www.eu-datagrid.org/).\"\n\nAlternatively, if that is where third-party acknowledgments normally appear, this acknowledgment must be reproduced in the software itself.\n\n3. The names \"EDG\", \"EDG Toolkit\", and \"EU DataGrid Project\" may not be used to endorse or promote software, or products derived therefrom, except with prior written permission by hep-project-grid-edg-license@cern.ch.\n\n4. You are under no obligation to provide anyone with any bug fixes, patches, upgrades or other modifications, enhancements or derivatives of the features,functionality or performance of this software that you may develop. However, if you publish or distribute your modifications, enhancements or derivative works without contemporaneously requiring users to enter into a separate written license agreement, then you are deemed to have granted participants in the EU DataGrid a worldwide, non-exclusive, royalty-free, perpetual license to install, use, reproduce, display, modify, redistribute and sub-license your modifications, enhancements or derivative works, whether in binary or source code form, under the license conditions stated in this list of conditions.\n\n5. DISCLAIMER\n\nTHIS SOFTWARE IS PROVIDED BY THE EU DATAGRID AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, OF SATISFACTORY QUALITY, AND FITNESS FOR A PARTICULAR PURPOSE OR USE ARE DISCLAIMED. THE EU DATAGRID AND CONTRIBUTORS MAKE NO REPRESENTATION THAT THE SOFTWARE, MODIFICATIONS, ENHANCEMENTS OR DERIVATIVE WORKS THEREOF, WILL NOT INFRINGE ANY PATENT, COPYRIGHT, TRADE SECRET OR OTHER PROPRIETARY RIGHT.\n\n6. LIMITATION OF LIABILITY\n\nTHE EU DATAGRID AND CONTRIBUTORS SHALL HAVE NO LIABILITY TO LICENSEE OR OTHER PERSONS FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, LOSS OF USE, DATA OR PROFITS, OR BUSINESS INTERRUPTION, HOWEVER CAUSED AND ON ANY THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR OTHERWISE, ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.", + "json": "eu-datagrid.json", + "yaml": "eu-datagrid.yml", + "html": "eu-datagrid.html", + "license": "eu-datagrid.LICENSE" + }, + { + "license_key": "eupl-1.0", + "category": "Copyleft", + "spdx_license_key": "EUPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "European Union Public Licence V.1.0 \nEUPL \u00a9 the European Community 2007 \n\nThis European Union Public Licence (the \"EUPL\") applies to the Work or Software (as defined below) which is provided under the terms of this Licence. Any use of the Work, other than as authorised under this Licence is prohibited (to the extent such use is covered by a right of the copyright holder of the Work). The Original Work is provided under the terms of this Licence when the Licensor (as defined below) has placed the following notice immediately following the copyright notice for the Original Work: \n\n Licensed under the EUPL V.1.0 \n\nor has expressed by any other mean his willingness to license under the EUPL. \n\n1. Definitions. In this Licence, the following terms have the following meaning: \n\n- The Licence: this Licence. \n\n- The Original Work or the Software: the software distributed and/or communicated by the Licensor under this Licence, available as Source Code and also as Executable Code as the case may be. \n\n- Derivative Works: the works or software that could be created by the Licensee, based upon the Original Work or modifications thereof. This Licence does not define the extent of modification or dependence on the Original Work required in order to classify a work as a Derivative Work; this extent is determined by copyright law applicable in the country mentioned in Article 15. \n\n- The Work: the Original Work and/or its Derivative Works. \n\n- The Source Code: the human-readable form of the Work which is the most convenient for people to study and modify. \n\n- The Executable Code: any code which has generally been compiled and which is meant to be interpreted by a computer as a program. \n\n- The Licensor: the natural or legal person that distributes and/or communicates the Work under the Licence. \n\n- Contributor(s): any natural or legal person who modifies the Work under the Licence, or otherwise contributes to the creation of a Derivative Work. \n\n- The Licensee or \"You\": any natural or legal person who makes any usage of the Software under the terms of the Licence. - Distribution and/or Communication: any act of selling, giving, lending, renting, distributing, communicating, transmitting, or otherwise making available, on-line or off-line, copies of the Work at the disposal of any other natural or legal person. \n\n2. Scope of the rights granted by the Licence\n\nThe Licensor hereby grants You a world-wide, royalty-free, non-exclusive, sub-licensable licence to do the following, for the duration of copyright vested in the Original Work: \n- use the Work in any circumstance and for all usage, \n- reproduce the Work, \n- modify the Original Work, and make Derivative Works based upon the Work, \n- communicate to the public, including the right to make available or display the Work or copies thereof to the public and perform publicly, as the case may be, the Work, \n- distribute the Work or copies thereof, \n- lend and rent the Work or copies thereof, \n- sub-license rights in the Work or copies thereof. \n\nThose rights can be exercised on any media, supports and formats, whether now known or later invented, as far as the applicable law permits so. In the countries where moral rights apply, the Licensor waives his right to exercise his moral right to the extent allowed by law in order to make effective the licence of the economic rights here above listed. \n\nThe Licensor grants to the Licensee royalty-free, non exclusive usage rights to any patents held by the Licensor, to the extent necessary to make use of the rights granted on the Work under this Licence. \n\n3. Communication of the Source Code\nThe Licensor may provide the Work either in its Source Code form, or as Executable Code. If the Work is provided as Executable Code, the Licensor provides in addition a machine readable copy of the Source Code of the Work along with each copy of the Work that the Licensor distributes or indicates, in a notice following the copyright notice attached to the Work, a repository where the Source Code is easily and freely accessible for as long as the Licensor continues to distribute and/or communicate the Work. \n\n4. Limitations on copyright\nNothing in this Licence is intended to deprive the Licensee of the benefits from any exception or limitation to the exclusive rights of the rights owners in the Original Work or Software, of the exhaustion of those rights or of other applicable limitations thereto. \n\n5. Obligations of the Licensee\nThe grant of the rights mentioned above is subject to some restrictions and obligations imposed on the Licensee. Those obligations are the following: \n\nAttribution right: the Licensee shall keep intact all copyright, patent or trademarks notices and all notices that refer to the Licence and to the disclaimer of warranties. The Licensee must include a copy of such notices and a copy of the Licence with every copy of the Work he/she distributes and/or communicates. The Licensee must cause any Derivative Work to carry prominent notices stating that the Work has been modified and the date of modification. \n\nCopyleft clause: If the Licensee distributes and/or communicates copies of the Original Works or Derivative Works based upon the Original Work, this Distribution and/or Communication will be done under the terms of this Licence. The Licensee (becoming Licensor) cannot offer or impose any additional terms or conditions on the Work or Derivative Work that alter or restrict the terms of the Licence. \n\nCompatibility clause: If the Licensee Distributes and/or Communicates Derivative Works or copies thereof based upon both the Original Work and another work licensed under a Compatible Licence, this Distribution and/or Communication can be done under the terms of this Compatible Licence. For the sake of this clause, \"Compatible Licence\" refers to the licences listed in the appendix attached to this Licence. Should the Licensee\u2019s obligations under the Compatible Licence conflict with his/her obligations under this Licence, the obligations of the Compatible Licence shall prevail. \n\nProvision of Source Code: When distributing and/or communicating copies of the Work, the Licensee will provide a machine-readable copy of the Source Code or indicate a repository where this Source will be easily and freely available for as long as the Licensee continues to distribute and/or communicate the Work. \n\nLegal Protection: This Licence does not grant permission to use the trade names, trademarks, service marks, or 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 copyright notice. \n\n6. Chain of Authorship\nThe original Licensor warrants that the copyright in the Original Work granted hereunder is owned by him/her or licensed to him/her and that he/she has the power and authority to grant the Licence. Each Contributor warrants that the copyright in the modifications he/she brings to the Work are owned by him/her or licensed to him/her and that he/she has the power and authority to grant the Licence. Each time You, as a Licensee, receive the Work, the original Licensor and subsequent Contributors grant You a licence to their contributions to the Work, under the terms of this Licence. \n\n7. Disclaimer of Warranty\nThe Work is a work in progress, which is continuously improved by numerous contributors. It is not a finished work and may therefore contain defects or \"bugs\" inherent to this type of software development. For the above reason, the Work is provided under the Licence on an \"as is\" basis and without warranties of any kind concerning the Work, including without limitation merchantability, fitness for a particular purpose, absence of defects or errors, accuracy, non-infringement of intellectual property rights other than copyright as stated in Article 6 of this Licence. This disclaimer of warranty is an essential part of the Licence and a condition for the grant of any rights to the Work. \n\n8. Disclaimer of Liability\nExcept in the cases of wilful misconduct or damages directly caused to natural persons, the \nLicensor will in no event be liable for any direct or indirect, material or moral, damages of \nany kind, arising out of the Licence or of the use of the Work, including without limitation, \ndamages for loss of goodwill, work stoppage, computer failure or malfunction, loss of data or \nany commercial damage, even if the Licensor has been advised of the possibility of such \ndamage. However, the Licensor will be liable under statutory product liability laws as far such \nlaws apply to the Work. \n\n9. Additional agreements\nWhile distributing the Original Work or Derivative Works, You may choose to conclude an \nadditional agreement to offer, and charge a fee for, acceptance of support, warranty, \nindemnity, or other liability obligations and/or services consistent with this Licence. \n\nHowever, in accepting such obligations, You may act only on your own behalf and on your \nsole responsibility, not on behalf of the original Licensor or any other Contributor, and only if \nYou agree to indemnify, defend, and hold each Contributor harmless for any liability incurred \nby, or claims asserted against such Contributor by the fact You have accepted any such \nwarranty or additional liability. \n\n10. Acceptance of the Licence\nThe provisions of this Licence can be accepted by clicking on an icon \"I agree\" placed under \nthe bottom of a window displaying the text of this Licence or by affirming consent in any \nother similar way, in accordance with the rules of applicable law. Clicking on that icon \nindicates your clear and irrevocable acceptance of this Licence and all of its terms and conditions. \n\nSimilarly, you irrevocably accept this Licence and all of its terms and conditions by \nexercising any rights granted to You by Article 2 of this Licence, such as the use of the Work, \nthe creation by You of a Derivative Work or the Distribution and/or Communication by You \nof the Work or copies thereof. \n\n11. Information to the public\nIn case of any Distribution and/or Communication of the Work by means of electronic \ncommunication by You (for example, by offering to download the Work from a remote \nlocation) the distribution channel or media (for example, a website) must at least provide to \nthe public the information requested by the applicable law regarding the identification and \naddress of the Licensor, the Licence and the way it may be accessible, concluded, stored and \nreproduced by the Licensee. \n\n12. Termination of the Licence\nThe Licence and the rights granted hereunder will terminate automatically upon any breach by \nthe Licensee of the terms of the Licence. \n\nSuch a termination will not terminate the licences of any person who has received the Work \nfrom the Licensee under the Licence, provided such persons remain in full compliance with \nthe Licence. \n\n13. Miscellaneous\nWithout prejudice of Article 9 above, the Licence represents the complete agreement between \nthe Parties as to the Work licensed hereunder. \n\nIf any provision of the Licence is invalid or unenforceable under applicable law, this will not \naffect the validity or enforceability of the Licence as a whole. Such provision will be \nconstrued and/or reformed so as necessary to make it valid and enforceable. \n\nThe European Commission may put into force translations and/or binding new versions of \nthis Licence, so far this is required and reasonable. New versions of the Licence will be \npublished with a unique version number. The new version of the Licence becomes binding for \nYou as soon as You become aware of its publication. \n\n14. Jurisdiction\nAny litigation resulting from the interpretation of this License, arising between the European \nCommission, as a Licensor, and any Licensee, will be subject to the jurisdiction of the Court \nof Justice of the European Communities, as laid down in article 238 of the Treaty establishing \nthe European Community. \n\nAny litigation arising between Parties, other than the European Commission, and resulting \nfrom the interpretation of this License, will be subject to the exclusive jurisdiction of the \ncompetent court where the Licensor resides or conducts its primary business. \n\n15. Applicable Law\nThis Licence shall be governed by the law of the European Union country where the Licensor resides or has his registered office. \nThis licence shall be governed by the Belgian law if: \n- a litigation arises between the European Commission, as a Licensor, and any Licensee; \n- the Licensor, other than the European Commission, has no residence or registered office inside a European Union country. \n\n ===Appendix\n\"Compatible Licences\" according to article 5 EUPL are: \n- General Public License (GPL) v. 2 \n- Open Software License (OSL) v. 2.1, v. 3.0 \n- Common Public License v. 1.0 \n- Eclipse Public License v. 1.0 \n- Cecill v. 2.0", + "json": "eupl-1.0.json", + "yaml": "eupl-1.0.yml", + "html": "eupl-1.0.html", + "license": "eupl-1.0.LICENSE" + }, + { + "license_key": "eupl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "EUPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "European Union Public Licence \nV. 1.1 \n \nEUPL \u00a9 the European Community 2007 \n \nThis European Union Public Licence (the \"EUPL\") applies to the Work or Software \n(as defined below) which is provided under the terms of this Licence. Any use of the \nWork, other than as authorised under this Licence is prohibited (to the extent such use \nis covered by a right of the copyright holder of the Work). \n \nThe Original Work is provided under the terms of this Licence when the Licensor (as \ndefined below) has placed the following notice immediately following the copyright \nnotice for the Original Work: \n \nLicensed under the EUPL V.1.1 \n \nor has expressed by any other mean his willingness to license under the EUPL. \n \n1. Definitions \n \nIn this Licence, the following terms have the following meaning: \n \n- The Licence: this Licence. \n \n- The Original Work or the Software: the software distributed and/or communicated \nby the Licensor under this Licence, available as Source Code and also as Executable \nCode as the case may be. \n \n- Derivative Works: the works or software that could be created by the Licensee, \nbased upon the Original Work or modifications thereof. This Licence does not define \nthe extent of modification or dependence on the Original Work required in order to \nclassify a work as a Derivative Work; this extent is determined by copyright law \napplicable in the country mentioned in Article 15. \n \n- The Work: the Original Work and/or its Derivative Works. \n \n- The Source Code: the human-readable form of the Work which is the most \nconvenient for people to study and modify. \n \n- The Executable Code: any code which has generally been compiled and which is \nmeant to be interpreted by a computer as a program. \n \n- The Licensor: the natural or legal person that distributes and/or communicates the \nWork under the Licence. \n \n- Contributor(s): any natural or legal person who modifies the Work under the \nLicence, or otherwise contributes to the creation of a Derivative Work. \n \n- The Licensee or \"You\": any natural or legal person who makes any usage of the \nSoftware under the terms of the Licence. \n \n- Distribution and/or Communication: any act of selling, giving, lending, renting, \ndistributing, communicating, transmitting, or otherwise making available, on-line or \noff-line, copies of the Work or providing access to its essential functionalities at the \ndisposal of any other natural or legal person. \n \n2. Scope of the rights granted by the Licence \n \nThe Licensor hereby grants You a world-wide, royalty-free, non-exclusive, sub- \nlicensable licence to do the following, for the duration of copyright vested in the \nOriginal Work: \n \n- use the Work in any circumstance and for all usage, \n- reproduce the Work, \n- modify the Original Work, and make Derivative Works based upon the Work, \n- communicate to the public, including the right to make available or display the \nWork or copies thereof to the public and perform publicly, as the case may be, \nthe Work, \n- distribute the Work or copies thereof, \n- lend and rent the Work or copies thereof, \n- sub-license rights in the Work or copies thereof. \n \nThose rights can be exercised on any media, supports and formats, whether now \nknown or later invented, as far as the applicable law permits so. \n \nIn the countries where moral rights apply, the Licensor waives his right to exercise his \nmoral right to the extent allowed by law in order to make effective the licence of the \neconomic rights here above listed. \n \nThe Licensor grants to the Licensee royalty-free, non exclusive usage rights to any \npatents held by the Licensor, to the extent necessary to make use of the rights granted \non the Work under this Licence. \n \n3. Communication of the Source Code \n \nThe Licensor may provide the Work either in its Source Code form, or as Executable \nCode. If the Work is provided as Executable Code, the Licensor provides in addition a \nmachine-readable copy of the Source Code of the Work along with each copy of the \nWork that the Licensor distributes or indicates, in a notice following the copyright \nnotice attached to the Work, a repository where the Source Code is easily and freely \naccessible for as long as the Licensor continues to distribute and/or communicate the \nWork. \n \n4. Limitations on copyright \n \nNothing in this Licence is intended to deprive the Licensee of the benefits from any \nexception or limitation to the exclusive rights of the rights owners in the Original \nWork or Software, of the exhaustion of those rights or of other applicable limitations \nthereto. \n \n5. Obligations of the Licensee \n \nThe grant of the rights mentioned above is subject to some restrictions and obligations \nimposed on the Licensee. Those obligations are the following: \n \nAttribution right: the Licensee shall keep intact all copyright, patent or trademarks \nnotices and all notices that refer to the Licence and to the disclaimer of warranties. \nThe Licensee must include a copy of such notices and a copy of the Licence with \nevery copy of the Work he/she distributes and/or communicates. The Licensee must \ncause any Derivative Work to carry prominent notices stating that the Work has been \nmodified and the date of modification. \n \nCopyleft clause: If the Licensee distributes and/or communicates copies of the \nOriginal Works or Derivative Works based upon the Original Work, this Distribution \nand/or Communication will be done under the terms of this Licence or of a later \nversion of this Licence unless the Original Work is expressly distributed only under \nthis version of the Licence. The Licensee (becoming Licensor) cannot offer or impose \nany additional terms or conditions on the Work or Derivative Work that alter or \nrestrict the terms of the Licence. \n \nCompatibility clause: If the Licensee Distributes and/or Communicates Derivative \nWorks or copies thereof based upon both the Original Work and another work \nlicensed under a Compatible Licence, this Distribution and/or Communication can be \ndone under the terms of this Compatible Licence. For the sake of this clause, \n\"Compatible Licence\" refers to the licences listed in the appendix attached to this \nLicence. Should the Licensee\u2019s obligations under the Compatible Licence conflict \nwith his/her obligations under this Licence, the obligations of the Compatible Licence \nshall prevail. \n \nProvision of Source Code: When distributing and/or communicating copies of the \nWork, the Licensee will provide a machine-readable copy of the Source Code or \nindicate a repository where this Source will be easily and freely available for as long \nas the Licensee continues to distribute and/or communicate the Work. \n \nLegal Protection: This Licence does not grant permission to use the trade names, \ntrademarks, service marks, or names of the Licensor, except as required for \nreasonable and customary use in describing the origin of the Work and reproducing \nthe content of the copyright notice. \n \n6. Chain of Authorship \n \nThe original Licensor warrants that the copyright in the Original Work granted \nhereunder is owned by him/her or licensed to him/her and that he/she has the power \nand authority to grant the Licence. \n \nEach Contributor warrants that the copyright in the modifications he/she brings to the \nWork are owned by him/her or licensed to him/her and that he/she has the power and \nauthority to grant the Licence. \n \nEach time You accept the Licence, the original Licensor and subsequent Contributors \ngrant You a licence to their contributions to the Work, under the terms of this \nLicence. \n \n7. Disclaimer of Warranty \n \nThe Work is a work in progress, which is continuously improved by numerous \ncontributors. It is not a finished work and may therefore contain defects or \"bugs\" \ninherent to this type of software development. \n \nFor the above reason, the Work is provided under the Licence on an \"as is\" basis and \nwithout warranties of any kind concerning the Work, including without limitation \nmerchantability, fitness for a particular purpose, absence of defects or errors, \naccuracy, non-infringement of intellectual property rights other than copyright as \nstated in Article 6 of this Licence. \n \nThis disclaimer of warranty is an essential part of the Licence and a condition for the \ngrant of any rights to the Work. \n \n8. Disclaimer of Liability \n \nExcept in the cases of wilful misconduct or damages directly caused to natural \npersons, the Licensor will in no event be liable for any direct or indirect, material or \nmoral, damages of any kind, arising out of the Licence or of the use of the Work, \nincluding without limitation, damages for loss of goodwill, work stoppage, computer \nfailure or malfunction, loss of data or any commercial damage, even if the Licensor \nhas been advised of the possibility of such damage. However, the Licensor will be \nliable under statutory product liability laws as far such laws apply to the Work. \n \n9. Additional agreements \n \nWhile distributing the Original Work or Derivative Works, You may choose to \nconclude an additional agreement to offer, and charge a fee for, acceptance of support, \nwarranty, indemnity, or other liability obligations and/or services consistent with this \nLicence. However, in accepting such obligations, You may act only on your own \nbehalf and on your sole responsibility, not on behalf of the original Licensor or any \nother Contributor, and only if You agree to indemnify, defend, and hold each \nContributor harmless for any liability incurred by, or claims asserted against such \nContributor by the fact You have accepted any such warranty or additional liability. \n\n10. Acceptance of the Licence \n \nThe provisions of this Licence can be accepted by clicking on an icon \"I agree\" \nplaced under the bottom of a window displaying the text of this Licence or by \naffirming consent in any other similar way, in accordance with the rules of applicable \nlaw. Clicking on that icon indicates your clear and irrevocable acceptance of this \nLicence and all of its terms and conditions. \n \nSimilarly, you irrevocably accept this Licence and all of its terms and conditions by \nexercising any rights granted to You by Article 2 of this Licence, such as the use of \nthe Work, the creation by You of a Derivative Work or the Distribution and/or \nCommunication by You of the Work or copies thereof. \n \n11. Information to the public \n \nIn case of any Distribution and/or Communication of the Work by means of electronic \ncommunication by You (for example, by offering to download the Work from a \nremote location) the distribution channel or media (for example, a website) must at \nleast provide to the public the information requested by the applicable law regarding \nthe Licensor, the Licence and the way it may be accessible, concluded, stored and \nreproduced by the Licensee. \n \n12. Termination of the Licence \n \nThe Licence and the rights granted hereunder will terminate automatically upon any \nbreach by the Licensee of the terms of the Licence. \n \nSuch a termination will not terminate the licences of any person who has received the \nWork from the Licensee under the Licence, provided such persons remain in full \ncompliance with the Licence. \n \n13. Miscellaneous \n \nWithout prejudice of Article 9 above, the Licence represents the complete agreement \nbetween the Parties as to the Work licensed hereunder. \n \nIf any provision of the Licence is invalid or unenforceable under applicable law, this \nwill not affect the validity or enforceability of the Licence as a whole. Such provision \nwill be construed and/or reformed so as necessary to make it valid and enforceable. \n \nThe European Commission may publish other linguistic versions and/or new versions \nof this Licence, so far this is required and reasonable, without reducing the scope of \nthe rights granted by the Licence. New versions of the Licence will be published with \na unique version number. \n \nAll linguistic versions of this Licence, approved by the European Commission, have \nidentical value. Parties can take advantage of the linguistic version of their choice. \n \n14. Jurisdiction \n \nAny litigation resulting from the interpretation of this License, arising between the \nEuropean Commission, as a Licensor, and any Licensee, will be subject to the \njurisdiction of the Court of Justice of the European Communities, as laid down in \narticle 238 of the Treaty establishing the European Community. \n \nAny litigation arising between Parties, other than the European Commission, and \nresulting from the interpretation of this License, will be subject to the exclusive \njurisdiction of the competent court where the Licensor resides or conducts its primary \nbusiness. \n \n15. Applicable Law \n \nThis Licence shall be governed by the law of the European Union country where the \nLicensor resides or has his registered office. \n \nThis licence shall be governed by the Belgian law if: \n \n- a litigation arises between the European Commission, as a Licensor, and any \nLicensee; \n- the Licensor, other than the European Commission, has no residence or \nregistered office inside a European Union country.", + "json": "eupl-1.1.json", + "yaml": "eupl-1.1.yml", + "html": "eupl-1.1.html", + "license": "eupl-1.1.LICENSE" + }, + { + "license_key": "eupl-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "EUPL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "EUROPEAN UNION PUBLIC LICENCE v. 1.2 \nEUPL \u00a9 the European Union 2007, 2016 \n\nThis European Union Public Licence (the \u2018EUPL\u2019) applies to the Work (as defined below) which is provided under the terms of this Licence. Any use of the Work, other than as authorised under this Licence is prohibited (to the extent such use is covered by a right of the copyright holder of the Work). \n\nThe Work is provided under the terms of this Licence when the Licensor (as defined below) has placed the following notice immediately following the copyright notice for the Work: \n\n Licensed under the EUPL \n\nor has expressed by any other means his willingness to license under the EUPL. \n\n1.Definitions \nIn this Licence, the following terms have the following meaning: \n\u2014 \u2018The Licence\u2019:this Licence. \n\u2014 \u2018The Original Work\u2019:the work or software distributed or communicated by the Licensor under this Licence, available as Source Code and also as Executable Code as the case may be. \n\u2014 \u2018Derivative Works\u2019:the works or software that could be created by the Licensee, based upon the Original Work or modifications thereof. This Licence does not define the extent of modification or dependence on the Original Work required in order to classify a work as a Derivative Work; this extent is determined by copyright law applicable in the country mentioned in Article 15. \n\u2014 \u2018The Work\u2019:the Original Work or its Derivative Works. \n\u2014 \u2018The Source Code\u2019:the human-readable form of the Work which is the most convenient for people to study and modify. \n\u2014 \u2018The Executable Code\u2019:any code which has generally been compiled and which is meant to be interpreted by a computer as a program. \n\u2014 \u2018The Licensor\u2019:the natural or legal person that distributes or communicates the Work under the Licence. \n\u2014 \u2018Contributor(s)\u2019:any natural or legal person who modifies the Work under the Licence, or otherwise contributes to the creation of a Derivative Work. \n\u2014 \u2018The Licensee\u2019 or \u2018You\u2019:any natural or legal person who makes any usage of the Work under the terms of the Licence. \n\u2014 \u2018Distribution\u2019 or \u2018Communication\u2019:any act of selling, giving, lending, renting, distributing, communicating, transmitting, or otherwise making available, online or offline, copies of the Work or providing access to its essential functionalities at the disposal of any other natural or legal person. \n\n2.Scope of the rights granted by the Licence \nThe Licensor hereby grants You a worldwide, royalty-free, non-exclusive, sublicensable licence to do the following, for the duration of copyright vested in the Original Work: \n\u2014 use the Work in any circumstance and for all usage, \n\u2014 reproduce the Work, \n\u2014 modify the Work, and make Derivative Works based upon the Work, \n\u2014 communicate to the public, including the right to make available or display the Work or copies thereof to the public and perform publicly, as the case may be, the Work, \n\u2014 distribute the Work or copies thereof, \n\u2014 lend and rent the Work or copies thereof, \n\u2014 sublicense rights in the Work or copies thereof. \n\nThose rights can be exercised on any media, supports and formats, whether now known or later invented, as far as the applicable law permits so. \n\nIn the countries where moral rights apply, the Licensor waives his right to exercise his moral right to the extent allowed by law in order to make effective the licence of the economic rights here above listed. \n\nThe Licensor grants to the Licensee royalty-free, non-exclusive usage rights to any patents held by the Licensor, to the extent necessary to make use of the rights granted on the Work under this Licence. \n\n3.Communication of the Source Code \nThe Licensor may provide the Work either in its Source Code form, or as Executable Code. If the Work is provided as Executable Code, the Licensor provides in addition a machine-readable copy of the Source Code of the Work along with each copy of the Work that the Licensor distributes or indicates, in a notice following the copyright notice attached to the Work, a repository where the Source Code is easily and freely accessible for as long as the Licensor continues to distribute or communicate the Work. \n\n4.Limitations on copyright \nNothing in this Licence is intended to deprive the Licensee of the benefits from any exception or limitation to the exclusive rights of the rights owners in the Work, of the exhaustion of those rights or of other applicable limitations thereto. \n\n5.Obligations of the Licensee \nThe grant of the rights mentioned above is subject to some restrictions and obligations imposed on the Licensee. Those obligations are the following: \n\nAttribution right: The Licensee shall keep intact all copyright, patent or trademarks notices and all notices that refer to the Licence and to the disclaimer of warranties. The Licensee must include a copy of such notices and a copy of the Licence with every copy of the Work he/she distributes or communicates. The Licensee must cause any Derivative Work to carry prominent notices stating that the Work has been modified and the date of modification. \n\nCopyleft clause: If the Licensee distributes or communicates copies of the Original Works or Derivative Works, this Distribution or Communication will be done under the terms of this Licence or of a later version of this Licence unless the Original Work is expressly distributed only under this version of the Licence \u2014 for example by communicating \u2018EUPL v. 1.2 only\u2019. The Licensee (becoming Licensor) cannot offer or impose any additional terms or conditions on the Work or Derivative Work that alter or restrict the terms of the Licence. \n\nCompatibility clause: If the Licensee Distributes or Communicates Derivative Works or copies thereof based upon both the Work and another work licensed under a Compatible Licence, this Distribution or Communication can be done under the terms of this Compatible Licence. For the sake of this clause, \u2018Compatible Licence\u2019 refers to the licences listed in the appendix attached to this Licence. Should the Licensee's obligations under the Compatible Licence conflict with his/her obligations under this Licence, the obligations of the Compatible Licence shall prevail. \n\nProvision of Source Code: When distributing or communicating copies of the Work, the Licensee will provide a machine-readable copy of the Source Code or indicate a repository where this Source will be easily and freely available for as long as the Licensee continues to distribute or communicate the Work. \n\nLegal Protection: This Licence does not grant permission to use the trade names, trademarks, service marks, or 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 copyright notice. \n\n6.Chain of Authorship \nThe original Licensor warrants that the copyright in the Original Work granted hereunder is owned by him/her or licensed to him/her and that he/she has the power and authority to grant the Licence. \n\nEach Contributor warrants that the copyright in the modifications he/she brings to the Work are owned by him/her or licensed to him/her and that he/she has the power and authority to grant the Licence. \n\nEach time You accept the Licence, the original Licensor and subsequent Contributors grant You a licence to their contributions to the Work, under the terms of this Licence. \n\n7.Disclaimer of Warranty \nThe Work is a work in progress, which is continuously improved by numerous Contributors. It is not a finished work and may therefore contain defects or \u2018bugs\u2019 inherent to this type of development. \n\nFor the above reason, the Work is provided under the Licence on an \u2018as is\u2019 basis and without warranties of any kind concerning the Work, including without limitation merchantability, fitness for a particular purpose, absence of defects or errors, accuracy, non-infringement of intellectual property rights other than copyright as stated in Article 6 of this Licence. \n\nThis disclaimer of warranty is an essential part of the Licence and a condition for the grant of any rights to the Work. \n\n8.Disclaimer of Liability \nExcept in the cases of wilful misconduct or damages directly caused to natural persons, the Licensor will in no event be liable for any direct or indirect, material or moral, damages of any kind, arising out of the Licence or of the use of the Work, including without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, loss of data or any commercial damage, even if the Licensor has been advised of the possibility of such damage. However, the Licensor will be liable under statutory product liability laws as far such laws apply to the Work. \n\n9.Additional agreements \nWhile distributing the Work, You may choose to conclude an additional agreement, defining obligations or services consistent with this Licence. However, if accepting obligations, You may act only on your own behalf and on your sole responsibility, not on behalf of the original Licensor or 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 the fact You have accepted any warranty or additional liability. \n\n10.Acceptance of the Licence \nThe provisions of this Licence can be accepted by clicking on an icon \u2018I agree\u2019 placed under the bottom of a window displaying the text of this Licence or by affirming consent in any other similar way, in accordance with the rules of applicable law. Clicking on that icon indicates your clear and irrevocable acceptance of this Licence and all of its terms and conditions. \n\nSimilarly, you irrevocably accept this Licence and all of its terms and conditions by exercising any rights granted to You by Article 2 of this Licence, such as the use of the Work, the creation by You of a Derivative Work or the Distribution or Communication by You of the Work or copies thereof. \n\n11.Information to the public \nIn case of any Distribution or Communication of the Work by means of electronic communication by You (for example, by offering to download the Work from a remote location) the distribution channel or media (for example, a website) must at least provide to the public the information requested by the applicable law regarding the Licensor, the Licence and the way it may be accessible, concluded, stored and reproduced by the Licensee. \n\n12.Termination of the Licence \nThe Licence and the rights granted hereunder will terminate automatically upon any breach by the Licensee of the terms of the Licence. \n\nSuch a termination will not terminate the licences of any person who has received the Work from the Licensee under the Licence, provided such persons remain in full compliance with the Licence. \n\n13.Miscellaneous \nWithout prejudice of Article 9 above, the Licence represents the complete agreement between the Parties as to the Work. \n\nIf any provision of the Licence is invalid or unenforceable under applicable law, this will not affect the validity or enforceability of the Licence as a whole. Such provision will be construed or reformed so as necessary to make it valid and enforceable. \n\nThe European Commission may publish other linguistic versions or new versions of this Licence or updated versions of the Appendix, so far this is required and reasonable, without reducing the scope of the rights granted by the Licence. \n\nNew versions of the Licence will be published with a unique version number. \n\nAll linguistic versions of this Licence, approved by the European Commission, have identical value. Parties can take advantage of the linguistic version of their choice. \n\n14.Jurisdiction \nWithout prejudice to specific agreement between parties, \n\u2014 any litigation resulting from the interpretation of this License, arising between the European Union institutions, bodies, offices or agencies, as a Licensor, and any Licensee, will be subject to the jurisdiction of the Court of Justice of the European Union, as laid down in article 272 of the Treaty on the Functioning of the European Union, \n\u2014 any litigation arising between other parties and resulting from the interpretation of this License, will be subject to the exclusive jurisdiction of the competent court where the Licensor resides or conducts its primary business. \n\n15.Applicable Law \nWithout prejudice to specific agreement between parties, \n\u2014 this Licence shall be governed by the law of the European Union Member State where the Licensor has his seat, resides or has his registered office, \n\u2014 this licence shall be governed by Belgian law if the Licensor has no seat, residence or registered office inside a European Union Member State.", + "json": "eupl-1.2.json", + "yaml": "eupl-1.2.yml", + "html": "eupl-1.2.html", + "license": "eupl-1.2.LICENSE" + }, + { + "license_key": "eurosym", + "category": "Copyleft Limited", + "spdx_license_key": "Eurosym", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Licence Version 2\n\nThis software is provided 'as-is', without warranty of any kind, express or implied. In no event will the authors or copyright holders be held liable for any damages arising from the use of this software.\n\nPermission 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:\n\n 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.\n\n 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.\n\n 3. You must not use any of the names of the authors or copyright holders of the original software for advertising or publicity pertaining to distribution without specific, written prior permission.\n\n 4. If you change this software and redistribute parts or all of it in any form, you must make the source code of the altered version of this software available.\n\n 5. This notice may not be removed or altered from any source distribution.\n\nThis licence is governed by the Laws of Germany. Disputes shall be settled by Saarbruecken City Court.", + "json": "eurosym.json", + "yaml": "eurosym.yml", + "html": "eurosym.html", + "license": "eurosym.LICENSE" + }, + { + "license_key": "examdiff", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-examdiff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "DISCLAIMER:\n\n DISCLAIMER OF WARRANTY\n\nTHIS SOFTWARE AND MANUAL ARE PROVIDED \"AS IS\" AND WITHOUT\nWARRANTIES AS TO PERFORMANCE OF MERCHANTABILITY OR ANY\nOTHER WARRANTIES WHETHER EXPRESSED OR IMPLIED. BECAUSE\nOF THE VARIOUS HARDWARE AND SOFTWARE ENVIRONMENTS INTO\nWHICH THIS PROGRAM MAY BE PUT, NO WARRANTY OF FITNESS FOR\nA PARTICULAR PURPOSE IS OFFERED. GOOD DATA PROCESSING\nPROCEDURE DICTATES THAT ANY PROGRAM BE THOROUGHLY TESTED\nWITH NON-CRITICAL DATA BEFORE RELYING ON IT. THE USER\nMUST ASSUME THE ENTIRE RISK OF USING THE PROGRAM. THE\nDEVELOPER DOES NOT RETAIN ANY LIABILITY ON ANY DAMAGE\nCAUSED THROUGH THE USE OF THIS PRODUCT.\n\n//////////////////////////////////////////////////////////////\nLICENSE TO USE:\n\nYou are permitted to use this program freely. You, however, \nare not permitted to decompile this program or use it as a \nportion of any other application. \n\nYou are permitted to freely distribute this program and its \nassociated files provided that (1) You do not charge a fee for \nits distribution, (2) you do not include it as a part of a \ncommercial offering, and (3) you do distribute all \naccompanying files together. If you wish to include ExamDiff \nas a part of a commercial offering, written permission \nfrom the author is required. \n\nDeviations of the above are considered a breach of the\ncopyright on this application.", + "json": "examdiff.json", + "yaml": "examdiff.yml", + "html": "examdiff.html", + "license": "examdiff.LICENSE" + }, + { + "license_key": "excelsior-jet-runtime", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-excelsior-jet-runtime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Excelsior JET Licensing Terms and Conditions\nProduction and Redistribution Use\nProduction use and redistribution use of Excelsior JET Runtime is permitted only in conjunction with and as part of your software product.\n\nExcelsior JET Runtime includes the standard Java API code licensed from Sun Microsystems. According to that license:\n\nDeployment of your software product that includes Excelsior JET Runtime onto general purpose desktop computers and servers shall be royalty-free, but\nUsage of Excelsior JET Runtime in embedded systems in the general case requires you to sign a trademark and license agreement with Sun Microsystems and pay per-unit royalties. Exceptions are low-volume deals, for which Excelsior help you negotiate a flat fee with Sun.\n\nfrom http://www.excelsior-usa.com/pdf/iltemplate.pdf \n\nC. RUNTIME LICENSE\nIn addition to the Development License granted above, Excelsior grants You a non-exclusive, non-transferable, feebearing\nlicense to use software programs or components of the Software that are incorporated or embedded in and\nused in the execution of Your software (\"Runtime Components\") for the number of applications, users, CPUs, servers,\nor connections and at the sites, as specified on Your invoice, on the following terms:\n\nEmbedded Use. Use of the Runtime Components in devices other than General Purpose Desktop Computers And\nServers is not allowed under this Agreement. Please contact Excelsior for the conditions of such use.\n\nProduction Use. You may use the Runtime Components in Your applications legally developed under the Development\nLicense above for internal business purposes, which may include third party customers\u2019 access to or use of such\napplications.\n\nRedistribution Use. You may redistribute the Runtime Components on the following conditions:\nYou agree to: a. distribute the Runtime Components in object code form only and in conjunction with and as a part\nof Your software product legally developed under the Development License above; b. not suppress, alter, or remove\nproprietary rights notices contained therein; c. indemnify, hold harmless, and defend Excelsior and its suppliers from\nand against any claims or lawsuits, including attorney\u2019s fees, that arise or result from the use or distribution of Your\nsoftware product; and d. ensure that Your distributors and customers agree to act in a manner consistent with Your\nobligations under this Agreement.\n\nYour license agreement with Your distributors and/or customers will: a. not permit Your end users to modify,\ntranslate, reverse engineer, decompile, or disassemble the Runtime Components except as expressly permitted by law;\nb. not permit further distribution of the Runtime Components by end users. c. include statements that Your product: (i)\nis licensed not sold, and that title to such offering is not passed to the customer, (ii) may include material licensed by a\nthird party, and that You have assumed responsibility for the presence and use of this material; and (iii) comply with the\nrequirements of Section H \"Limited Warranty\" as appropriate.\n\nFees. The runtime license fees applicable to Production Use and Redistribution Use are detailed at\nhttp://www.excelsior-usa.com/fees.html.", + "json": "excelsior-jet-runtime.json", + "yaml": "excelsior-jet-runtime.yml", + "html": "excelsior-jet-runtime.html", + "license": "excelsior-jet-runtime.LICENSE" + }, + { + "license_key": "fabien-tassin", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fabien-tassin", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "It may be used and modified freely, but I do request that this copyright\nnotice remain attached to the file. You may modify this module as you\nwish, but if you redistribute a modified version, please attach a note\nlisting the modifications you have made.", + "json": "fabien-tassin.json", + "yaml": "fabien-tassin.yml", + "html": "fabien-tassin.html", + "license": "fabien-tassin.LICENSE" + }, + { + "license_key": "fabric-agreement-2017", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-fabric-agreement-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Fabric Software and Services Agreement\n\nLast Updated: January 27, 2017\n\nPLEASE READ THIS AGREEMENT CAREFULLY. BY CLICKING THE UPGRADE OR SIGN UP BUTTON OR BY ACCESSING OR USING THE FABRIC TECHNOLOGY, YOU AGREE TO BE BOUND BY THE TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THE TERMS OF THIS AGREEMENT, YOU MAY NOT ACCESS OR USE THE FABRIC TECHNOLOGY.\n\nThis Fabric Software and Services Agreement (\u201cAgreement\u201d) is entered into by Google Inc. and you (\u201cDeveloper\u201d or \u201cYou\u201d) and governs Your access and use of the Fabric Technology (defined below). If You are accessing or using the Fabric Technology on behalf of a company or other legal entity, You represent and warrant that You are an authorized representative of that entity and have the authority to bind such entity to this Agreement, in which case the terms \u201cDeveloper\u201d and \u201cYou\u201d shall refer to such entity. You and Google hereby agree as follows:\n\n Definitions\n\n In addition to terms defined elsewhere in this Agreement, the terms set forth immediately below have the following meanings.\n\n \u201cApplication\u201d means any mobile application of Developer into which the Fabric Kit or any other Kit may be integrated.\n\n \u201cDeveloper Data\u201d means (i) the identity of the individual or entity, if any, who invited Developer to use the Fabric Technology; (ii) the names of Developer\u2019s non-publicly available Applications; and (iii) a unique installation identifier for each installation of each Application.\n\n \u201cDocumentation\u201d means the documentation, instructions, user guides, and other documents made available by Google that relate to the Services and Software.\n\n \u201cFabric Kit\u201d means the underlying, base software development kit for Fabric made available by Google via the Plugin, including any updates or modifications thereto, that Developer installs in order to integrate any other Kit within an Application.\n\n \u201cKit\u201d means any software development kit, other than the Fabric Kit, made available for download via any Plugin.\n\n \u201cPlugin\u201d means any development environment software plugin made available by Google via the Services, including any updates or modifications thereto, that Developer must install in the designated development environment in order for Developer to integrate the Fabric Kit or any other Kit within an Application.\n\n \u201cServices\u201d means the Site and any hosted software services made available via the Site, including without limitation any dashboards, reporting tools, or other services, or any Plugin.\n\n \u201cSite\u201d means all websites and webpages hosted at the fabric.io domain, as well as any Fabric-branded mobile application Google may make available.\n\n \u201cSoftware\u201d means the Fabric Kit and any Plugin.\n\n \u201cTerm\u201d means the term of this Agreement, which commences on the date upon which Developer enters into this Agreement and continues until terminated by Developer or Google.\n\n \u201cFabric Technology\u201d means the Services, Software, and Documentation.\n\n \u201cUsage Data\u201d means all information, data and other content, not including any Developer Data, received by Google related to Developer\u2019s use of the Fabric Technology, including without limitation Developer\u2019s IP address; web request headers, including without limitation browser type, user agent, and referral page; pages or screens Developer visits on the Site; timestamps; cookie information from Developer\u2019s usage of the Site, including without limitation analytics data; Developer\u2019s device state, hardware, and OS information; and unique identifier(s) for Developer\u2019s device(s).\n\n Licenses; Access Rights; Restrictions\n\n License Grant. Subject to Developer\u2019s compliance with the terms and conditions of this Agreement (as a condition to the grants below), Google grants Developer, and Developer accepts, a personal, nonexclusive, non-transferable, non-sublicensable, and revocable license, during the Term, to: (a) install and use any Plugin within the designated development environment solely for the purpose of downloading the Fabric Kit and other Kits to such environment; (b) install and use the Fabric Kit solely for the purpose of enabling the integration of one or more Kits into an application; (c) incorporate the Fabric Kit into any application and distribute (in object form only) the Fabric Kit solely as incorporated within such Application; (d) download and/or print a reasonable number of copies of any reports or results made available via the Services (\u201cReports\u201d) for internal use by Developer only; and (e) make and use a reasonable number of copies of any Plugin, Fabric Kit, and Documentation solely as necessary to exercise any of the licenses or rights granted to Developer under this Agreement.\n\n Access to Services. During the Term, and subject to the terms and conditions of this Agreement, Google will use commercially reasonable efforts to provide Developer with access to the Services. Developer will cooperate with Google, as requested, to facilitate the initiation of Developer\u2019s access and use of the Services. Developer will identify a user name and password that will be used solely by Developer to access and use Developer\u2019s account on the Services. Developer will not share its user name or password with any third party and will be responsible and liable for the acts or omissions of any person who accesses the Services via such account. Developer will (a) provide accurate, current, and complete information when setting up such account; (b) maintain and promptly update any account information; (c) maintain the security of any password and accept all risks of unauthorized access to its account; and (d) promptly notify Google if it discovers or otherwise suspects any security breaches related to such account.\n\n Restrictions. Developer shall not directly or indirectly: (a) modify or create any derivative works of any Reports, Fabric Technology, or components thereof; (b) work around any technical limitations in any Fabric Technology or use any Fabric Technology, alone or in conjunction with any device, program, or service, to circumvent technical measures employed to control access to, or the rights in, a content, file, or other work; (c) reverse engineer, decompile, decipher, translate, disassemble, or otherwise attempt to access source code of any Fabric Technology (except as and only to the extent that the foregoing restriction is prohibited by applicable law); (d) publish, rent, lease, lend, sell, sublicense, distribute (except as permitted in Sections 2.1(c)), transfer, disclose, or otherwise make any Fabric Technology or Reports available to any third party; (e) provide use of the Fabric Technology on a service bureau, rental or managed services basis or permit other individuals or entities to create Internet \"links\" to the Fabric Technology or \"frame\" or \"mirror\" the Fabric Technology on any other server, or wireless or Internet-based device; (f) remove or alter any proprietary notices or labels on or in any Fabric Technology or Reports; (g) use any Fabric Technology in connection with the development or transmission of any virus, worms or malicious code; (h) use any Fabric Technology or Reports to infringe the rights of Google or any third party, or in any way that does not comply with all applicable laws; or (i) use any Fabric Technology (including to create any Application) in any way that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of Google or any third party, including any mobile communications carrier.\n\n Updates\n\n Developer acknowledges that Google may update or modify any component of the Fabric Technology at any time and in its sole discretion without prior notice to Developer. Developer acknowledges that future versions of the Fabric Kit may be incompatible with Applications developed using previous versions of the Fabric Kit, which may adversely affect the manner in which Developer accesses or communicates with the Fabric Technology. Google may provision any updates to any Software automatically or it may prompt Developer to install such updates. If Google prompts Developer to install an updated version of any Software (\u201cUpdated Version\u201d), the license granted under Section 2.1 of this Agreement (\u201cLicense\u201d) with respect to any previous version of such Software will be revoked upon release of such Updated Version and Developer will immediately discontinue all use of, and delete, such previous version; provided, however, that, the License to such previous version of the Fabric Kit shall not be immediately revoked if such previous version of the Fabric Kit has been incorporated within an Application that Developer (a) has publicly distributed via an app store as of the date on which Google released the Updated Version (\u201cRelease Date\u201d), (b) has already submitted to an app store for distribution approval as of the Release Date, or (c) submits to an app store for distribution approval within fourteen (14) days of the Release Date. Notwithstanding the foregoing, Google reserves the right, at any time, to revoke the License to any previous version of the Fabric Kit, regardless of the foregoing conditions, in which case Developer shall immediately discontinue all use of, and delete, such previous version of the Fabric Kit.\n\n Kit Terms\n\n Additional terms and conditions may apply to Developer\u2019s access and use of any Kit made available via any Plugin. Developer will comply with any terms applicable to any Kit that Developer installs, accesses, or uses. Certain Kits may be made available by third parties. Google provides such third-party Kits as a convenience only and does not endorse any such third-party Kits. Developer acknowledges and agrees that (i) such third-party Kits are not under the control of Google and Google is not liable or responsible for such third-party Kits, and (ii) Google does not warrant and will not have any liability or responsibility for such third-party Kits.\n\n Security\n\n Developer is fully responsible for all of its Applications, including for maintaining the security of all such Applications. Developer will use industry standard security measures to prevent unauthorized access or use of any of the features and functionality of all Applications, including access by viruses, worms, or any other harmful code or material. Developer will immediately notify Google if Developer knows of or suspects any breach of security or potential vulnerability of any Application that may damage, interfere with, or otherwise impact any Fabric Technology or any information, content, or material accessible via any Fabric Technology. Developer will promptly remedy such breach or potential vulnerability.\n\n Compliance\n\n Developer shall comply with (a) all applicable laws, rules, and regulations, (b) all instructions and requirements set forth in any applicable Documentation, and (c) any applicable third-party terms, including any third-party terms applicable to any Kit, any development environment used by Developer, and Developer\u2019s development and distribution of its Application via any relevant mobile operating system platform. Developer will not, directly or indirectly, export or re-export, or knowingly permit the export or re-export of, any Software or technical information obtained under this Agreement, including without limitation any Documentation, (y) without compliance with all laws applicable to the export or re-export of, any Software or technical information obtained under this Agreement, or (z) to any country to which the United States Export Administration Act, any regulation thereunder, or any similar United States law or regulation, prohibits the export or re-export of such software and/or technical information.\n\n Developer Feedback\n\n From time to time, Google may solicit from Developer or Developer may provide, in its sole discretion, suggestions for changes, modifications, or improvements or any other feedback related to any Fabric Technology or Google (collectively, \u201cDeveloper Feedback\u201d). All Developer Feedback shall be solely owned by Google (including all intellectual property rights therein and thereto) and shall also be deemed Google\u2019s Confidential Information. Developer hereby assigns all of its right, title, and interest in and to any Developer Feedback to Google and acknowledges that Google has the unrestricted right to use and exploit such Developer Feedback in any manner, without attribution, and without any obligations or compensation to Developer. Google may reuse all general knowledge, experience, know-how, works and technologies (including ideas, concepts, processes, and techniques) acquired during provision of any Fabric Technology to Developer.\n\n Data Usage and Transfer\n\n Developer hereby grants Google a worldwide, nonexclusive, and royalty-free right and license to access, copy, distribute, process, and use Developer Data solely for the purpose of (a) providing any Fabric Technology to Developer; (b) creating aggregate measures of any Fabric Technology usage, engagement, and performance; and (c) improving any component of the Fabric Technology generally or any other service of Google.\n\n Developer acknowledges and agrees that Google will not assume any responsibility or liability for, or undertake to verify, the accuracy, completeness, or legality of any Developer Data. Google shall have no obligation to store, delete, or return any Developer Data. Developer represents and warrants that it owns all right, title, and interest, or possesses sufficient license rights, in and to the names of Developer\u2019s non-publicly available Applications as may be necessary to grant the rights and licenses under this section. Developer bears all responsibility and liability for the legality, accuracy, and completeness of the Developer Data and Google\u2019s access and possession thereof, as permitted herein.\n\n Irrespective of which country Developer is based in, Developer authorizes Google to use its information in, and as a result to transfer it to and store it in, the United States and any other country where Google, or any third-party service providers acting on its behalf, operates. Privacy and data protection laws in some of these countries may vary from the laws in the country where Developer is based.\n\n Developer Systems\n\n Developer is solely responsible for providing all modems, servers, devices, storage, software, databases, network, and communications equipment, and ancillary services needed to connect to, access, or otherwise use the Fabric Technology (collectively, \u201cDeveloper Systems\u201d). Developer shall ensure that Developer Systems are compatible with any Fabric Technology and comply with all configurations and specifications described in the applicable Documentation.\n\n Suspension; Discontinuance\n\n Google reserves the right to discontinue or suspend (permanently or temporarily) the Fabric Technology or any features or portions thereof without prior notice. Google will not be liable for any suspension or discontinuance of any Fabric Technology or any part thereof.\n\n Confidentiality\n\n \u201cConfidential Information\u201d means any information disclosed by one party (\u201cDiscloser\u201c) to the other party (\u201cRecipient\u201c) that is marked or otherwise identified as \u201cconfidential\u201c or \u201cproprietary,\u201c or by its nature or the circumstances of disclosure should reasonably be understood to be confidential. In particular, Confidential Information shall include the Fabric Technology, Reports, Developer Data and all related information, but does not include Usage Data. Recipient may use the Confidential Information of the Discloser only as necessary in fulfilling its obligations or exercising its rights under this Agreement. Recipient may not disclose any Confidential Information of the Discloser to any third party without the Discloser\u2019s prior written consent. Recipient will protect the Discloser\u2019s Confidential Information from unauthorized use, access, and disclosure in the same manner that it protects its own confidential and proprietary information of a similar nature, but in no event with less than a reasonable degree of care. Recipient shall have the right to disclose any Confidential Information of Discloser to any third-party service provider that performs services on behalf of Recipient subject to confidentiality obligations consistent with this Agreement. Promptly upon Discloser\u2019s request at any time, Recipient shall, or in the case of Developer Data shall use reasonable efforts to, return all of Discloser\u2019s tangible Confidential Information, and/or permanently erase all such Confidential Information from any storage media and destroy all information, records, copies, summaries, analyses, and materials developed therefrom.\n\n Limitations. The foregoing obligations shall not apply to any information that Recipient can demonstrate is (i) already known by it without restriction, (ii) rightfully furnished to it without restriction by a third party not in breach of any obligation of this Agreement or any other applicable confidentiality obligation or agreement, (iii) generally available to the public without breach of this Agreement or wrongdoing by any party, or (iv) independently developed by it without reference to or use of any information deemed confidential under this section and without any violation of any obligation of this Agreement. Recipient shall be responsible for any breach of confidentiality by its employees, contractors, and agents, as applicable. Nothing herein shall prevent Recipient from disclosing any of Discloser\u2019s Confidential Information as necessary pursuant to any court order or any legal, regulatory, law enforcement, or similar requirement or investigation; provided, however, prior to any such disclosure, Recipient shall use reasonable efforts to promptly notify the Discloser in writing of such requirement to disclose where permitted by law and cooperate in protecting against or minimizing any such disclosure and/or obtaining a protective order.\n\n Ownership; Reservation of Rights\n\n Google retains all right, title, and interest in and to all Usage Data. Developer acknowledges and agrees that Google may use Usage Data for its own business purposes, including without limitation analyzing Developer\u2019s installation, use of, and engagement with, and the functionality of the Services, as well as improving the functionality of the Services and other products and services offered or developed by Google, and may share such Usage Data with third-party service providers to assist with or conduct such activities on Google\u2019s behalf. Google may share such Usage Data with other third parties solely in an aggregated and anonymized manner or otherwise in a manner that does not identify the source of such Usage Data. Google and its suppliers own all right, title, interest, copyright, and other intellectual property rights in all Fabric Technology (and any derivative works and enhancements thereof developed by or on behalf of Google) and reserve all rights not expressly granted to Developer in this Agreement. The Fabric Technology (and any derivative works and enhancements thereof developed by or on behalf of Google) are protected by copyright and other intellectual property laws and treaties. THE FABRIC TECHNOLOGY IS SOLELY LICENSED AS SET FORTH IN SECTION 2, NOT SOLD.\n\n Representations and Warranties\n\n Google represents and warrants that it has full right, power, and authority to enter into this Agreement and to perform its obligations and duties under this Agreement, and that the performance of such obligations and duties does not conflict with or result in a breach of any other agreement of Google, or any judgment, order, or decree by which such party is bound. Developer\u2019s sole and exclusive remedy for any and all breaches of this provision is the remedy set forth in Section 15.1.\n\n Developer represents and warrants to Google that: (a) the Applications do not and will not infringe any intellectual property or other proprietary right of any third party or violate any right of or duty owed to any third party (including contract rights, privacy rights, and publicity rights); and (b) the Applications and Developer\u2019s performance under this Agreement (including use of the Fabric Technology) do not and will not breach any other agreement of Developer or violate any applicable law, rule, or regulation.\n\n Google Disclaimers\n\n THE FABRIC TECHNOLOGY AND REPORTS ARE PROVIDED \u201cAS IS\u201d, \u201cAS AVAILABLE\u201d, WITH ALL FAULTS AND WITHOUT WARRANTY OF ANY KIND. WITHOUT LIMITING THE FOREGOING, GOOGLE AND ITS PARENTS, SUBSIDIARIES, AFFILIATES, RELATED COMPANIES, OFFICERS, DIRECTORS, EMPLOYEES, AGENTS, REPRESENTATIVES, PARTNERS, AND LICENSORS (COLLECTIVELY, THE \u201cGOOGLE ENTITIES\u201d) MAKE NO REPRESENTATION OR WARRANTY (I) THAT THE FABRIC TECHNOLOGY AND REPORTS OR RESULTS THEREFROM WILL MEET DEVELOPER\u2019S REQUIREMENTS OR BE UNINTERRUPTED, ERROR-FREE, OR BUG-FREE, (II) REGARDING THE RELIABILITY, TIMELINESS, OR PERFORMANCE OF THE FABRIC TECHNOLOGY OR REPORTS, OR (III) THAT ANY ERRORS IN THE FABRIC TECHNOLOGY OR REPORTS CAN OR WILL BE CORRECTED. THE GOOGLE ENTITIES HEREBY DISCLAIM ALL WARRANTIES, WHETHER EXPRESS OR IMPLIED, ORAL OR WRITTEN, INCLUDING WITHOUT LIMITATION, ALL IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, TITLE, OR FITNESS FOR ANY PARTICULAR PURPOSE AND ALL WARRANTIES ARISING FROM ANY COURSE OF DEALING, COURSE OF PERFORMANCE, OR USAGE OF TRADE.\n\n Indemnification\n\n Claims Against Developer. Google will defend the Developer from all third party claims, actions, suits, or proceedings, whether actual or alleged (collectively, \u201cDeveloper Claims\u201d), and will indemnify Developer and hold Developer harmless from any and all losses, liabilities, damages, costs, and expenses (including reasonable attorney\u2019s fees) resulting from such Developer Claims, that arise out of an allegation that the Fabric Technology, when used as expressly permitted by this Agreement, infringes the intellectual property rights of such third party. Notwithstanding the foregoing, Google will have no obligation under this Section 15.1 or otherwise with respect to any infringement claim based upon: (a) any use of the Fabric Technology not expressly permitted under this Agreement\u037e (b) any use of the Fabric Technology in combination with products, equipment, software, or data not made available by Google if such infringement would have been avoided without the combination with such other products, equipment, software, or data\u037e (c) any modification of the Fabric Technology by any person other than Google or its authorized agents or subcontractors\u037e or (d) any claim not clearly based on the Fabric Technology itself. This Section 15.1 states Google\u2019s entire liability and Developer\u2019s sole and exclusive remedy for all third party claims.\n\n Claims Against Google. Developer will defend Google from all third party claims, actions, suits, or proceedings, whether actual or alleged (collectively, \u201cGoogle Claims\u201d), and will indemnify Google and hold Google harmless from any and all losses, liabilities, damages, costs, and expenses (including reasonable attorney\u2019s fees) resulting from such Google Claims, that arise out of Developer\u2019s (a) use of the Fabric Technology or Reports; (b) actual or alleged infringement, misappropriation, or violation of the rights of any third party, including without limitation any intellectual property rights, privacy rights, or publicity rights; and (c) breach of any term of this Agreement, including without limitation Developer\u2019s representations and warranties set forth in Section 13 above. Developer is solely responsible for defending any such Google Claims, subject to Google\u2019s right to participate with counsel of its own choosing, and for payment of all judgments, settlements, damages, losses, liabilities, costs, and expenses, including reasonable attorneys\u2019 fees, resulting from such Google Claims, provided that Developer will not agree to any settlement related to any such Google Claims without Google\u2019s prior express written consent regardless of whether or not such settlement releases Google from any obligation or liability. If Developer uses the Fabric Technology in an official capacity as an employee or representative of a United States federal, state or local government entity and is legally unable to accept this indemnification provision, then it does not apply to such entity, but only to the extent as required by applicable law.\n\n Procedure. The foregoing obligations are conditioned on the party seeking indemnification: (a) promptly notifying the other party in writing of such claim; (b) giving the other party sole control of the defense thereof and any related settlement negotiations; and (c) cooperating and, at other party\u2019s request and expense, assisting in such defense. Neither party may make any public announcement of any claim, defense or settlement without the other party\u2019s prior written approval. The indemnifying party may not settle, compromise or resolve a claim without the consent of the indemnified party, if such settlement, compromise or resolution (x) causes or requires an admission or finding of guilt against the indemnified party, (y) imposes any monetary damages against the indemnified party, or (z) does not fully release the indemnified party from liability with respect to the claim.\n\n Limitation of Liability\n\n (a) IN NO EVENT WILL EITHER PARTY BE LIABLE TO THE OTHER FOR ANY INDIRECT, SPECIAL, INCIDENTAL, EXEMPLARY, PUNITIVE, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT, OR FOR ANY DAMAGES ASSOCIATED WITH ANY LOSS OF USE, BUSINESS, PROFITS, OR GOODWILL OR FOR INTERRUPTION, LOSS OR CORRUPTION OF DATA OR NETWORKS.\n\n (b) IN NO EVENT WILL EITHER PARTY\u2019S AGGREGATE LIABILITY FOR ANY AND ALL CLAIMS UNDER THIS AGREEMENT EXCEED FIFTY($50.00) DOLLARS (USD).\n\n (c) THE FOREGOING LIMITATIONS SHALL NOT APPLY TO BREACHES OF CONFIDENTIALITY OBLIGATIONS OR FOR MISAPPROPRIATION OR INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS, AND SHALL APPLY NOTWITHSTANDING THE FAILURE OF ANY REMEDY PROVIDED HEREIN. THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS SHALL APPLY TO ANY AND ALL CLAIMS, REGARDLESS OF WHETHER SUCH LIABILITY ARISES FROM ANY CLAIM BASED UPON CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, OR OTHERWISE, AND WHETHER OR NOT THE PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGE.\n\n Some states do not allow the exclusion or limitation of incidental or consequential damages, so the above limitation or exclusion may not apply to You. INSOFAR AS APPLICABLE LAW PROHIBITS ANY LIMITATION ON LIABILITY HEREIN, THE PARTIES AGREE THAT SUCH LIMITATION WILL BE AUTOMATICALLY MODIFIED, BUT ONLY TO THE EXTENT SO AS TO MAKE THE LIMITATION COMPLIANT WITH APPLICABLE LAW.\n\n Termination\n\n Either party may terminate this Agreement with or without cause immediately upon providing notice to the other party. Upon any termination of this Agreement, (a) Developer must discontinue accessing and using the Fabric Technology and delete all Software and Documentation; (b) the provisions in Sections 4 (Kit Terms), 7 (Developer Feedback), 8 (Data Usage and Transfer), 11 (Confidentiality), 12 (Ownership; Reservation of Rights), 14 (Google Disclaimers), 15 (Indemnification), 16 (Limitation of Liability), this Section 17 (Termination) and Section 18(e) (Governing Law; Venue; Prevailing Fees) shall survive; (c) all obligations or liabilities that accrued prior to the effective date of termination and all remedies for breach of this Agreement shall survive; and (d) all other rights, obligations, and licenses of the parties under this Agreement shall terminate.\n\n Miscellaneous\n\n Entire Agreement. This Agreement constitutes the entire agreement, and supersedes all prior negotiations, understandings, or agreements (oral or written), between the parties about the subject matter of this Agreement.\n\n Amendments. Google may amend this Agreement from time to time. If Google makes a change to this Agreement that, in its sole discretion, is material, Google will notify Developer by providing notice of the change through the Services, the Plugin, or at the email address that Developer provided to Google upon signing up to access the Services. If Developer does not agree to the modified terms of the Agreement, Developer shall notify Google in writing within thirty (30) days, after which this Agreement shall immediately terminate and the Google Entities shall have no further responsibility or liability to Developer.\n\n Waivers. The failure of either party to enforce its rights under this Agreement at any time for any period will not be construed as a waiver of such rights.\n\n Severability. If any provision of this Agreement is determined to be illegal or unenforceable, that provision will be limited or eliminated to the minimum extent necessary so that this Agreement will otherwise remain in full force and effect and enforceable.\n\n Governing Law; Venue; Prevailing Fees. This Agreement shall be governed by and construed in accordance with the laws of the State of California, without regard to its conflicts of law provisions. (a) Except as set forth in Section 18.5(b) below, all claims arising out of or relating to this Agreement or the Services (\"Disputes\u201d) will be governed by California law, excluding California\u2019s conflict of laws rules, and all Disputes will be litigated exclusively in the federal or state courts of Santa Clara County, California, USA, and You and Google consent to personal jurisdiction in those courts. (b) If Your principal place of business (for entities) or place of residence (for individuals) is in any country within APAC (other than Australia, Japan, New Zealand or Singapore) or Latin America, this Section 18.5(b) will apply instead of Section 18.5(a) above. ALL DISPUTES (AS DEFINED ABOVE) WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING CALIFORNIA\u2019S CONFLICT OF LAWS RULES. The parties will try in good faith to settle any Dispute within 30 days after the Dispute arises. If the Dispute is not resolved within 30 days, it must be resolved by arbitration by the American Arbitration Association\u2019s International Centre for Dispute Resolution in accordance with its Expedited Commercial Rules in force as of the date of this Agreement (\"Rules\"). The parties will mutually select one arbitrator. The arbitration will be conducted in English in Santa Clara County, California, USA. Either party may apply to any competent court for injunctive relief necessary to protect its rights pending resolution of the arbitration. The arbitrator may order equitable or injunctive relief consistent with the remedies and limitations in this Agreement. Subject to the confidentiality requirements in this Agreement, either party may petition any competent court to issue any order necessary to protect that party's rights or property; this petition will not be considered a violation or waiver of this governing law and arbitration section and will not affect the arbitrator\u2019s powers, including the power to review the judicial decision. The parties stipulate that the courts of Santa Clara County, California, USA, are competent to grant any order under this subsection. The arbitral award will be final and binding on the parties and its execution may be presented in any competent court, including any court with jurisdiction over either party or any of its property. Any arbitration proceeding conducted in accordance with this section will be considered Confidential Information under this Agreement's confidentiality section, including (i) the existence of, (ii) any information disclosed during, and (iii) any oral communications or documents related to the arbitration proceedings. The parties may also disclose the information described in this section to a competent court as may be necessary to file any order under this section or execute any arbitral decision, but the parties must request that those judicial proceedings be conducted in camera (in private). The parties will pay the arbitrator\u2019s fees, the arbitrator's appointed experts' fees and expenses, and the arbitration center's administrative expenses in accordance with the Rules. In its final decision, the arbitrator will determine the non-prevailing party's obligation to reimburse the amount paid in advance by the prevailing party for these fees. Each party will bear its own lawyers\u2019 and experts\u2019 fees and expenses, regardless of the arbitrator\u2019s final decision. (c) If Your principal place of business (for entities) or place of residence (for individuals) is in Greece, all Disputes (as defined above) will be governed by Greek law and the parties submit to the exclusive jurisdiction of the courts of Athens in relation to any Dispute.\n\n Force Majeure. In the event that either party is prevented from performing, or is unable to perform, any of its obligations under this Agreement (except payment obligations) due to any cause beyond its reasonable control, the affected party shall give written notice thereof to the other party and its performance shall be extended for the period of delay or inability to perform due to such occurrence.\n\n Notices. Any notice or communication hereunder shall be in writing and either personally delivered or sent via confirmed facsimile, confirmed electronic transmission, recognized express delivery courier, or certified or registered mail, prepaid and return receipt requested, addressed to the other party, which, in the case of Developer, shall be the email address that Developer provided to Google upon signing up for the Services, and, in the case of Google, shall be Google Inc. 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA, with a copy to Legal Department. All notices shall be in English, and deemed to have been received when they are hand delivered, or five business days of their mailing, or upon confirmed electronic transmission or confirmed facsimile transmission.\n\n Assignment. This Agreement and the rights and obligations hereunder may not be assigned, transferred, or delegated, in whole or in part, whether voluntarily or by operation of law, contract, merger (whether Developer is the surviving or disappearing entity), stock or asset sale, consolidation, dissolution, through government action or otherwise, by Developer without Google\u2019s prior written consent. Any assignment or transfer in violation of the foregoing shall automatically be null and void, and Google may immediately terminate this Agreement upon such an attempt. This Agreement shall be binding upon, and inure to the benefit of, any permitted successors, representatives, and permitted assigns of the parties hereto.\n\n Independent Contractors. The parties shall be independent contractors under this Agreement, and nothing herein will constitute either party as the employer, employee, agent, or representative of the other party, or both parties as joint venturers or partners for any purpose. Neither party will have the right or authority to assume or create any obligation or responsibility on behalf of the other party.\n\n No Publicity. Developer will not issue any press release or otherwise make any public announcement with respect to this Agreement, any Fabric Technology, or Developer\u2019s relationship with Google without Google\u2019s prior written consent.", + "json": "fabric-agreement-2017.json", + "yaml": "fabric-agreement-2017.yml", + "html": "fabric-agreement-2017.html", + "license": "fabric-agreement-2017.LICENSE" + }, + { + "license_key": "facebook-nuclide", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-facebook-nuclide", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Facebook, Inc. (\"Facebook\") owns all right, title and interest, including all\nintellectual property and other proprietary rights, in and to the Nuclide\nsoftware (the \"Software\"). Subject to your compliance with these terms, you are\nhereby granted a non-exclusive, worldwide, royalty-free copyright license to\n(1) use and copy the Software; and (2) reproduce and distribute the Software as part\nof your own software (\"Your Software\"), provided Your Software does not consist\nsolely of the Software; and (3) modify the Software for your own internal use.\nFacebook reserves all rights not expressly granted to you in this license agreement.\n\nTHE SOFTWARE AND DOCUMENTATION, IF ANY, ARE PROVIDED \"AS IS\" AND ANY EXPRESS OR\nIMPLIED WARRANTIES (INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE) ARE DISCLAIMED.\nIN NO EVENT SHALL FACEBOOK OR ITS AFFILIATES, OFFICERS, DIRECTORS OR EMPLOYEES\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\nIN ANY WAY OUT OF THE USE OF THE SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY\nOF SUCH DAMAGE.", + "json": "facebook-nuclide.json", + "yaml": "facebook-nuclide.yml", + "html": "facebook-nuclide.html", + "license": "facebook-nuclide.LICENSE" + }, + { + "license_key": "facebook-patent-rights-2", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-facebook-patent-rights-2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Additional Grant of Patent Rights Version 2\n\n\"Software\" means the software distributed by Facebook, Inc.\n\nFacebook, Inc. (\"Facebook\") hereby grants to each recipient of the Software\n(\"you\") a perpetual, worldwide, royalty-free, non-exclusive, irrevocable\n(subject to the termination provision below) license under any Necessary\nClaims, to make, have made, use, sell, offer to sell, import, and otherwise\ntransfer the Software. For avoidance of doubt, no license is granted under\nFacebook\u2019s rights in any patent claims that are infringed by (i) modifications\nto the Software made by you or any third party or (ii) the Software in\ncombination with any software or other technology.\n\nThe license granted hereunder will terminate, automatically and without notice,\nif you (or any of your subsidiaries, corporate affiliates or agents) initiate\ndirectly or indirectly, or take a direct financial interest in, any Patent\nAssertion: (i) against Facebook or any of its subsidiaries or corporate\naffiliates, (ii) against any party if such Patent Assertion arises in whole or\nin part from any software, technology, product or service of Facebook or any of\nits subsidiaries or corporate affiliates, or (iii) against any party relating\nto the Software. Notwithstanding the foregoing, if Facebook or any of its\nsubsidiaries or corporate affiliates files a lawsuit alleging patent\ninfringement against you in the first instance, and you respond by filing a\npatent infringement counterclaim in that lawsuit against that party that is\nunrelated to the Software, the license granted hereunder will not terminate\nunder section (i) of this paragraph due to such counterclaim.\n\nA \"Necessary Claim\" is a claim of a patent owned by Facebook that is\nnecessarily infringed by the Software standing alone.\n\nA \"Patent Assertion\" is any lawsuit or other action alleging direct, indirect,\nor contributory infringement or inducement to infringe any patent, including a\ncross-claim or counterclaim.", + "json": "facebook-patent-rights-2.json", + "yaml": "facebook-patent-rights-2.yml", + "html": "facebook-patent-rights-2.html", + "license": "facebook-patent-rights-2.LICENSE" + }, + { + "license_key": "facebook-software-license", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-facebook-software-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You are hereby granted a non-exclusive, worldwide, royalty-free license to use,\ncopy, modify, and distribute this software in source code or binary form for use\nin connection with the web services and APIs provided by Facebook.\n\nAs with any software that integrates with the Facebook platform, your use of\nthis software is subject to the Facebook Developer Principles and Policies\n[http://developers.facebook.com/policy/]. This copyright notice shall be\nincluded in all copies or substantial portions of the software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "facebook-software-license.json", + "yaml": "facebook-software-license.yml", + "html": "facebook-software-license.html", + "license": "facebook-software-license.LICENSE" + }, + { + "license_key": "fair", + "category": "Permissive", + "spdx_license_key": "Fair", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Usage of the works is permitted provided that this instrument is retained with\nthe works, so that any entity that uses the works is notified of this\ninstrument.\n\nDISCLAIMER: THE WORKS ARE WITHOUT WARRANTY.", + "json": "fair.json", + "yaml": "fair.yml", + "html": "fair.html", + "license": "fair.LICENSE" + }, + { + "license_key": "fair-source-0.9", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-fair-source-0.9", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Fair Source License, version 0.9\nCopyright \u00a9 [year] [copyright owner]\n\nLicensor: [legal name of licensor]\n\nSoftware: [name software and version if applicable]\n\nUse Limitation: [number] users\n\nLicense Grant. Licensor hereby grants to each recipient of the Software (\u201cyou\u201d) a non-exclusive, non-transferable, royalty-free and fully-paid-up license, under all of the Licensor\u2019s copyright and patent rights, to use, copy, distribute, prepare derivative works of, publicly perform and display the Software, subject to the Use Limitation and the conditions set forth below.\n\nUse Limitation. The license granted above allows use by up to the number of users per entity set forth above (the \u201cUse Limitation\u201d). For determining the number of users, \u201cyou\u201d includes all affiliates, meaning legal entities controlling, controlled by, or under common control with you. If you exceed the Use Limitation, your use is subject to payment of Licensor\u2019s then-current list price for licenses.\n\nConditions. Redistribution in source code or other forms must include a copy of this license document to be provided in a reasonable manner. Any redistribution of the Software is only allowed subject to this license.\n\nTrademarks. This license does not grant you any right in the trademarks, service marks, brand names or logos of Licensor.\n\nDISCLAIMER. THE SOFTWARE IS PROVIDED \u201cAS IS\u201d, WITHOUT WARRANTY OR CONDITION, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. LICENSORS HEREBY DISCLAIM ALL LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE.\n\nTermination. If you violate the terms of this license, your rights will terminate automatically and will not be reinstated without the prior written consent of Licensor. Any such termination will not affect the right of others who may have received copies of the Software from you.", + "json": "fair-source-0.9.json", + "yaml": "fair-source-0.9.yml", + "html": "fair-source-0.9.html", + "license": "fair-source-0.9.LICENSE" + }, + { + "license_key": "fancyzoom", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-fancyzoom", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use of this effect in source form, with or without modification,\nare permitted provided that the following conditions are met:\n\n* USE OF SOURCE ON COMMERCIAL (FOR-PROFIT) WEBSITE REQUIRES ONE-TIME LICENSE FEE PER DOMAIN.\n Reasonably priced! Visit www.fancyzoom.com for licensing instructions. Thanks!\n\n* Non-commercial (personal) website use is permitted without license/payment!\n\n* Redistribution of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n* Redistribution of source code and derived works cannot be sold without specific\n written prior permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "fancyzoom.json", + "yaml": "fancyzoom.yml", + "html": "fancyzoom.html", + "license": "fancyzoom.LICENSE" + }, + { + "license_key": "far-manager-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-far-manager-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "EXCEPTION:\nFar Manager plugins that use only the following header files from this\ndistribution (none or any): farcolor.hpp, farkeys.hpp, plugin.hpp,\nfarcolorW.pas, farkeysW.pas and pluginW.pas; can be distributed under any other\npossible license with no implications from the above license on them.", + "json": "far-manager-exception.json", + "yaml": "far-manager-exception.yml", + "html": "far-manager-exception.html", + "license": "far-manager-exception.LICENSE" + }, + { + "license_key": "fastbuild-2012-2020", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fastbuild-2012-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "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.\n\nPermission 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:\n\n1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software.\n\n2. If you use this software, in source or binary form, an acknowledgment in the product documentation or credits would be appreciated but is not required. Example: \"This product uses FASTBuild \u00a9 2012-2020 Franta Fulin.\"\n\n3. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.\n\n4. This notice may not be removed or altered from any source distribution.", + "json": "fastbuild-2012-2020.json", + "yaml": "fastbuild-2012-2020.yml", + "html": "fastbuild-2012-2020.html", + "license": "fastbuild-2012-2020.LICENSE" + }, + { + "license_key": "fastcgi-devkit", + "category": "Permissive", + "spdx_license_key": "OML", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This FastCGI application library source and object code (the\n\"Software\") and its documentation (the \"Documentation\") are\ncopyrighted by Open Market, Inc (\"Open Market\"). The following terms\napply to all files associated with the Software and Documentation\nunless explicitly disclaimed in individual files.\n\nOpen Market permits you to use, copy, modify, distribute, and license\nthis Software and the Documentation for any purpose, provided that\nexisting copyright notices are retained in all copies and that this\nnotice is included verbatim in any distributions. No written\nagreement, license, or royalty fee is required for any of the\nauthorized uses. Modifications to this Software and Documentation may\nbe copyrighted by their authors and need not follow the licensing\nterms described here. If modifications to this Software and\nDocumentation have new licensing terms, the new terms must be clearly\nindicated on the first page of each file where they apply.\n\nOPEN MARKET MAKES NO EXPRESS OR IMPLIED WARRANTY WITH RESPECT TO THE\nSOFTWARE OR THE DOCUMENTATION, INCLUDING WITHOUT LIMITATION ANY\nWARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN\nNO EVENT SHALL OPEN MARKET BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY\nDAMAGES ARISING FROM OR RELATING TO THIS SOFTWARE OR THE\nDOCUMENTATION, INCLUDING, WITHOUT LIMITATION, ANY INDIRECT, SPECIAL OR\nCONSEQUENTIAL DAMAGES OR SIMILAR DAMAGES, INCLUDING LOST PROFITS OR\nLOST DATA, EVEN IF OPEN MARKET HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES. THE SOFTWARE AND DOCUMENTATION ARE PROVIDED \"AS IS\".\nOPEN MARKET HAS NO LIABILITY IN CONTRACT, TORT, NEGLIGENCE OR\nOTHERWISE ARISING OUT OF THIS SOFTWARE OR THE DOCUMENTATION.", + "json": "fastcgi-devkit.json", + "yaml": "fastcgi-devkit.yml", + "html": "fastcgi-devkit.html", + "license": "fastcgi-devkit.LICENSE" + }, + { + "license_key": "fatfs", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fatfs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "/ FatFs module is an open source software. Redistribution and use of FatFs in\n/ source and binary forms, with or without modification, are permitted provided\n/ that the following condition is met:\n/\n/ 1. Redistributions of source code must retain the above copyright notice,\n/ this condition and the following disclaimer.\n/\n/ This software is provided by the copyright holder and contributors \"AS IS\"\n/ and any warranties related to this software are DISCLAIMED.\n/ The copyright owner or contributors be NOT LIABLE for any damages caused\n/ by use of this software.", + "json": "fatfs.json", + "yaml": "fatfs.yml", + "html": "fatfs.html", + "license": "fatfs.LICENSE" + }, + { + "license_key": "fawkes-runtime-exception", + "category": "Copyleft Limited", + "spdx_license_key": "Fawkes-Runtime-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Linking this library statically or dynamically with other modules is\nmaking a combined work based on this library. Thus, the terms and\nconditions of the GNU General Public License cover the whole\ncombination. As a special exception, the copyright holders of this\nlibrary give you permission to link this library with independent\nmodules to produce an executable, regardless of the license terms of\nthese independent modules, and to copy and distribute the resulting\nexecutable under terms of your choice, provided that you also meet, for\neach linked independent module, the terms and conditions of the license\nof that module. An independent module is a module which is not derived\nfrom or based on this library. If you modify this library, you may\nextend this exception to your version of the library, but you are not\nobligated to do so. If you do not wish to do so, delete this exception\nstatement from your version. Additionally if other files instantiate\ntemplates or use macros or inline functions from this file, or you\ncompile this file and link it with other files to produce an executable,\nthis file does not by itself cause the resulting executable to be\ncovered by the GNU General Public License. This exception does not\nhowever invalidate any other reasons why the executable file might be\ncovered by the GNU General Public License.", + "json": "fawkes-runtime-exception.json", + "yaml": "fawkes-runtime-exception.yml", + "html": "fawkes-runtime-exception.html", + "license": "fawkes-runtime-exception.LICENSE" + }, + { + "license_key": "fftpack-2004", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fftpack-2004", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "FFTPACK license:\nRedistribution and use of the Software in source and binary forms,\nwith or without modification, is permitted provided that the\nfollowing conditions are met:\n\n - Neither the names of NCAR's Computational and Information Systems\n Laboratory, the University Corporation for Atmospheric Research,\n nor the names of its sponsors or contributors may be used to\n endorse or promote products derived from this Software without\n specific prior written permission. \n\n - Redistributions of source code must retain the above copyright\n notices, this list of conditions, and the disclaimer below.\n\n - Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions, and the disclaimer below in the\n documentation and/or other materials provided with the\n distribution.\n\n THIS SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT\n HOLDERS BE LIABLE FOR ANY CLAIM, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE\n SOFTWARE.", + "json": "fftpack-2004.json", + "yaml": "fftpack-2004.yml", + "html": "fftpack-2004.html", + "license": "fftpack-2004.LICENSE" + }, + { + "license_key": "filament-group-mit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-filament-group-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\nThe end-user documentation included with the redistribution, if any, must \ninclude the following acknowledgment: \"This product includes software \ndeveloped by Filament Group, Inc (http://www.filamentgroup.com/) and its \ncontributors\", in the same place and form as other third-party acknowledgments. \nAlternately, this acknowledgment may appear in the software itself, in the same \nform and location as other such third-party acknowledgments.", + "json": "filament-group-mit.json", + "yaml": "filament-group-mit.yml", + "html": "filament-group-mit.html", + "license": "filament-group-mit.LICENSE" + }, + { + "license_key": "first-works-appreciative-1.2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-first-works-appreciative-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "First Works Appreciative License\n\nVersion 1.2\nJuly 7, 2005\nCopyright (c) 2005\nJonathan Michael Davis\n\n\n\nAll Rights Reserved\n\n\nThis First Works Appreciative License (the \"License\") applies to any original\nwork of authorship (the \"Original Work\") under whose owner (the \"Licensor\") has\nincluded and clearly referenced this license as part of the Original work, or\nhas placed the following notice immediately following or accompanying the\ncopyright notice for the Original Work:\n\n \"Licensed under the First Works Appreciative License version 1.2\"\n\nThe recipient and/or of Original Work (the \"Licensee\") is hereby granted this\nLicense.\n\n1) GRANT OF LICENSE. Licensor hereby grants to the Licensee a worldwide,\n non-exclusive, perpetual license to exercise the following activities:\n\n a) to reproduce the Original Work in its original state;\n \n b) to prepare cooperative works in conjunction with the Original Work\n that extend the functionality or usefulness of Original Work;\n \n c) to modify the Original Work (the \"Modified Work\") for personal use\n or limited distribution, with the provision that copies of the\n Modified Work shall conform to the obligations set forth by the\n sections of this license entitled Conditions Of Redistribution\n (section 2) and Limitations Of Derivative Work (section 3);\n \n d) to distribute copies of the Original Work and associated works to\n the public, with the provision that copies of the Original Work\n shall conform to the obligations set forth by the sections of this\n license entitled Conditions Of Redistribution (section 2) and\n Limitations Of Derivative Work (section 3);\n \n e) to perform the Original Work publicly or privately;\n \n f) to display the Original Work publicly or privately.\n\n2) CONDITIONS OF REDISTRIBUTION. The grant of copyright license for\n redistribution is limited to the following conditions:\n\n a) Original authorship recognition shall be retained with all copies of\n Original Work and Modified Work insomuch as was reflected by the\n Original Work. Modified Work may assign new logos and other artwork\n and designs to override Original Work, provided it does not negate\n communication of original authorship or Licensor and identifies the\n name and/or title of the Original Work.\n \n b) Distribution of Original Work may not directly profit, including\n profitable sale of the Original Work, without permission from the\n Licensor, whether accompanied with this License or provided to\n Licensee as a separate exchange of communication or agreement. This\n limitation DOES NOT hinder Licensee from bundling Original Work with\n other work of value for profit, provided that the bundle is not\n identified, labeled, described, or otherwise marketed with the\n bundled work being the primary product associated with the bundle.\n\n c) Distribution of Modified Work may directly profit, including\n profitable sale of the Modified Work, provided that the Licensee has\n made a reasonable effort to obtain prior permission to perform the\n work. Licensor reserves the right to deny permission if contacted.\n However, the requirement of permission is dependent upon the\n Licensor's accessibility, such as having a valid address. If the\n Licensee can reasonably evidence that contact could not be made\n with the Licensor to obtain permission within 60 days of reasonable\n effort, obtainment of permission is not required, provided\n subsection \"d\" is retained.\n\n d) Distribution of Modified Work shall not be granted unless either:\n \n 1. The modifications are reasonably minor, and the product is\n clearly identified as modified, but the product otherwise\n retains all identifications of the Original Work, with the\n original author and Licensor retained.\n\n ii. The modifications are reasonably significant, and the\n Modified Work has insignificant (less than 50%) dependence\n upon the Original Work to maintain value or usefulness.\n Ratio of dependence shall not be construed to assume\n measurement based upon file size, lines of code, visual\n exposure, or otherwise, but shall be measured fairly on a\n case by case basis in a court of law or by a third party\n mediator.\n\n3) LIMITATIONS OF DERIVATIVE WORK. Source code is provided freely for personal\n use on the local machine, and for modifying Original Work to create Modified\n Work for use on a personal basis on a local machine, or to distribute\n according to the Conditions of Redistribution (section 2). Source code may\n also be used for business use, but not for commercial use except as outlined\n in Conditions of Redistribution (section 2). Source code is also provided\n for unlimited educational use, provided that the Licensee is or represents\n an established educational organization, and original authorship notations\n and recognitions are retained.\n\n4) NO WARRANTY. Except as expressly set forth in this or any superseding\n agreement, the Original Work is provided on an \"as is\" basis, without\n warranties or conditions of any kind, either express or implied including,\n without limitation, any warranties or conditions of title, non-infringement,\n merchantability or fitness for a particular purpose. Each Recipient is\n solely responsible for determining the appropriateness of using and\n distributing the Original Work (or Modified Work) and assumes all risks\n associated with its exercise of rights under this License, including but not\n limited to the risks and costs of software errors, compliance with\n applicable laws, damage to or loss of data, software or hardware, and\n unavailability or interruption of operations.\n\n5) DISCLAIMER OF LIABILITY. Except as expressly set forth in this or any\n superseding agreement, neither Licensee nor Licensor, nor any contributors\n to Modified Works, shall have any liability for any direct, indirect,\n incidental, special, exemplary, or consequential damages (including without\n limitation lost profits), however caused and on any theory of liability,\n whether in contract, strict liability, or tort (including negligence or\n otherwise) arising in any way out of the use or distribution of the Original\n Work or the exercise of any rights granted hereunder, even if advised of\n the possibility of such damages.", + "json": "first-works-appreciative-1.2.json", + "yaml": "first-works-appreciative-1.2.yml", + "html": "first-works-appreciative-1.2.html", + "license": "first-works-appreciative-1.2.LICENSE" + }, + { + "license_key": "flex-2.5", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-flex-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The United States Government has rights in this work pursuant to contract no. DE-\nAC03-76SF00098 between the United States Department of Energy and the University of\nCalifornia.\n\nRedistribution and use in source and binary forms are permitted provided that: (1)\nsource distributions retain this entire copyright notice and comment, and (2)\ndistributions including binaries display the following acknowledgement: \"This product\nincludes software developed by the University of California, Berkeley and its\ncontributors\" in the documentation or other materials provided with the distribution\nand in all advertising materials mentioning features or use of this software. Neither\nthe name of the University nor the names of its contributors may be used to endorse\nor promote products derived from this software without specific prior written\npermission.\n\nTHIS SOFTWARE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES,\nINCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\nFOR A PARTICULAR PURPOSE.", + "json": "flex-2.5.json", + "yaml": "flex-2.5.yml", + "html": "flex-2.5.html", + "license": "flex-2.5.LICENSE" + }, + { + "license_key": "flex2sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-flex2sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ADOBE FLEX 2.0.1 SOFTWARE DEVELOPMENT KIT (Non Open Source Version)\nSoftware License Agreement\n\nNOTICE TO USER: THIS LICENSE AGREEMENT GOVERNS INSTALLATION AND USE OF THE ADOBE SOFTWARE DESCRIBED HEREIN BY LICENSEES OF SUCH SOFTWARE. LICENSEE AGREES THAT THIS AGREEMENT IS LIKE ANY WRITTEN NEGOTIATED AGREEMENT SIGNED BY LICENSEE. BY CLICKING TO ACKNOWLEDGE AGREEMENT TO BE BOUND DURING REVIEW OF AN ELECTRONIC VERSION OF THIS LICENSE, OR DOWNLOADING, COPYING, INSTALLING OR USING THE SOFTWARE, LICENSEE ACCEPTS ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT. THIS AGREEMENT IS ENFORCEABLE AGAINST ANY PERSON OR ENTITY THAT INSTALLS AND USES THE SOFTWARE AND ANY PERSON OR ENTITY (E.G., SYSTEM INTEGRATOR, CONSULTANT OR CONTRACTOR) THAT INSTALLS OR USES THE SOFTWARE ON ANOTHER PERSON\u2019S OR ENTITY\u2019S BEHALF.\n\nTHIS AGREEMENT SHALL APPLY ONLY TO THE SOFTWARE TO WHICH LICENSEE HAS OBTAINED A VALID LICENSE (E.G., ADOBE FLEX DATA SERVICES SOFTWARE OR ADOBE FLEX SOFTWARE DEVELOPMENT KIT) REGARDLESS OF WHETHER OTHER SOFTWARE IS REFERRED TO OR DESCRIBED HEREIN.\n\nLICENSEE\u2019S RIGHTS UNDER THIS AGREEMENT MAY BE SUBJECT TO ADDITIONAL TERMS AND CONDITIONS IN A SEPARATE WRITTEN AGREEMENT WITH ADOBE THAT SUPPLEMENTS OR SUPERSEDES ALL OR PORTIONS OF THIS AGREEMENT.\n\n1. Definitions\n\n1.1 \"Adobe\" means Adobe Systems Incorporated, a Delaware corporation, 345 Park Avenue, San Jose, California 95110, if subsection 9(a) of this Agreement applies; otherwise it means Adobe Systems Software Ireland Limited, Unit 3100, Lake Drive, City West Campus, Saggart D24, Dublin, Republic of Ireland, a company organized under the laws of Ireland and an affiliate and licensee of Adobe Systems Incorporated.\n\n1.2 \"Authorized Users\" means employees and individual contractors (i.e., temporary employees) of Licensee.\n\n1.3 \"Computer\" means one or more central processing units (\"CPU\") in a hardware device (including hardware devices accessed by multiple users through a network (\"Server\")) that accepts information in digital or similar form and manipulates it for a specific result based on a sequence of instructions.\n\n1.4 \"Development Software\" means Software licensed for use in a technical environment solely for internal development and testing with respect to licensed Production Software.\n\n1.5 \"Disaster Recovery Environment\" means Licensee\u2019s technical environment designed solely to allow Licensee to respond to an interruption in service due to an event beyond Licensee\u2019s control that creates an inability on Licensee\u2019s part to provide critical business functions for a material period of time.\n\n1.6 \"Documentation\" means the user manuals and/or technical publications as applicable, relating to installation, use and administration of the Software.\n\n1.7 \"Flex Software Development Kit\" means the SDK Components that are licensed as a standalone deliverable, and not as part of another software application.\n\n1.8 \"Internal Network\" means Licensee\u2019s private, proprietary network resource accessible only by Authorized Users. \"Internal Network\" specifically excludes the Internet (as such term is commonly defined) or any other network community open to the public, including membership or subscription driven groups, associations or similar organizations. Connection by secure links such as VPN or dial up to Licensee\u2019s Internal Network for the purpose of allowing Authorized Users to use the Software should be deemed use over an Internal Network.\n\n1.9 \"Per-CPU\" The total number of CPUs on the Computers used to operate the Software may not exceed the licensed quantity of CPUs. For purposes of this definition, all CPUs on a Computer on which the Software is installed shall be deemed to operate the Software unless Customer configures that Computer (using a reliable and verifiable means of hardware or software partitioning) such that the total number of CPUs that actually operate the Software is less than the total number on that Computer.\n\n1.10 \"Production Software\" means Software licensed for productive business use.\n\n1.11 \"Sample Code\" means sample software in source code format designated in the Documentation as \"sample code\", \"samples,\" \"sample application code\", and/or \"snippets\", and found in directories labeled \"samples\", but shall not mean any components that are part of the SDK Components.\n\n1.12 \"SDK Components\" means the files, libraries, and executables contained in the directory labeled Flex SDK 2 or, as applicable, subsequently labeled directories (e.g. Flex SDK 2.1, Flex SDK 3, etc.) (except for the contents contained in subdirectory \"samples\"), including the SDK Source Files, build files, compilers, and related information, as well as the file format specifications, if any, included as part of the Software as described in the Documentation or a \"Read Me\" file accompanying the applicable Software.\n\n1.13 \"Software\" means the object code version of the validly licensed software program(s) including all Documentation and other materials provided by Adobe to Licensee under this Agreement, and any modified versions and copies of, and upgrades, updates and additions to such Software, provided to Licensee by Adobe at any time, to the extent not provided under a separate agreement. The term \"Software Product\" may also be used to indicate a particular product or version of a product, and otherwise has the same meaning as Software.\n\n2. License. Subject to the terms and conditions of this Agreement, Adobe grants to Licensee a perpetual, non-exclusive license to use the Software delivered hereunder according to the terms and conditions of this Agreement, on Computers connected to Licensee\u2019s Internal Network, on the licensed platforms and configurations, in the manner and for the purposes described in the Documentation. If Licensee has licensed Adobe Flex Data Services Software, then the terms of Section 3 also apply to Licensee\u2019s use of the Software unless Licensee licenses the software for evaluation purposes, in which case Section 4.1 applies, or unless Licensee licenses Not For Resale software, in which case Section 4.2 applies. The following additional terms also apply to Licensee\u2019s use of the Software.\n\n2.1 SDK Components.\n\n2.1.1 License Grant. Subject to the terms and conditions of this Agreement, Adobe grants Licensee a non-exclusive, nontransferable license to (a) use the SDK Components for the sole purpose of internally developing Developer Programs, (b) use the SDK Components as part of Licensee\u2019s website for the sole purpose of compiling the Developer Programs that are distributed through the Licensee\u2019s website, (c) modify and reproduce SDK Source Files for use as a component of Developer Programs that add Material Improvements to the SDK Source Files, and (d) distribute SDK Source Files in object code form and/or source code form only as a component of Developer Programs that add Material Improvements to the SDK Source Files, provided that (1) such Developer Programs are designed to operate in connection with Adobe Flex Builder, Adobe Flex Charting, Adobe Flex Data Services Software, or the SDK Components, (2) Licensee distributes such object code and/or source code under the terms and conditions of an End User License Agreement, (3) Licensee includes a copyright notice reflecting the copyright ownership of Developer in such Developer Programs, (4) Licensee shall be solely responsible to its customers for any update or support obligation or other liability which may arise from such distribution, (5) Licensee does not make any statements that its Developer Program is \"certified,\" or that its performance is guaranteed, by Adobe, (6) Licensee does not use Adobe\u2019s name or trademarks to market its Developer Programs without written permission of Adobe, (7) Licensee does not delete or in any manner alter the copyright notices, trademarks, logos or related notices, or other proprietary rights notices of Adobe (and its licensors, if any) appearing on or within the SDK Source Files and/or SDK Components, or any documentation relating to the SDK Components, (8) Licensee causes any modified files to carry prominent notices stating that Licensee changed the files, and (9) Licensee does not use \"mx\", \"mxml\", \"flex\", \"flash\" or \"adobe\" in any new package or class names distributed with the SDK Source Files. Any modified or merged portion of the SDK Source Files is subject to this Agreement.\n\n2.1.2 Definitions Related To SDK Components.\n\n(a) \"Developer Programs\" shall mean programs that are built consisting partly of the SDK Source Files and partly of user\u2019s Material Improvement to add to or extend the SDK Source Files.\n\n(b) \"End User License Agreement\" means an end user license agreement that provides a: (1) limited, nonexclusive right to use the subject Developer Program; (2) set of provisions that ensures that any sublicensee of Licensee exercising the rights in such End User License Agreement complies with all restrictions and obligations set forth herein with respect to SDK Components; (3) prohibition against reverse engineering, decompiling, disassembling or otherwise attempting to discover the source code of the subject Developer Program that is substantially similar to that set forth in Section 2.10.1 below; (4) statement that, if Licensee\u2019s customer requires any Adobe software in order to use the Developer Program, (i) Licensee\u2019s customer must obtain such Adobe software via a valid license, and (ii) Licensee\u2019s customer\u2019s use of such Adobe software must be in accordance with the terms and conditions of the end user license agreement that ships with such Adobe software; (5) statement that Licensee and its suppliers retain all right, title and interest in the subject Developer Program that is substantially similar to that set forth as Section 5 below, (6) statement that Licensee\u2019s suppliers disclaim all warranties, conditions, representations or terms with respect to the subject Developer Program, and (7) limit of liability that disclaims all liability for the benefit of Licensee\u2019s suppliers.\n\n(c) \"Material Improvement\" shall mean perceptible, measurable and definable improvements to the SDK Source Files that provide extended or additional significant and primary functionality that add significant business value to the SDK Source Files.\n\n(d) \"SDK Source Files\" shall mean the Flex Framework source code files that are provided with the SDK Components and, if Licensee purchases a license to Adobe Flex Charting Software, Flex Charting components source code files that are provided with Flex Charting Software.\n\n2.1.3 Restrictions.\n\n(a) General Restrictions. Except for the limited distribution rights as provided in Section 2.1.1 above with respect to SDK Source Files, Licensee may not distribute, sell, sublicense, rent, loan, or lease the SDK Components and/or any component thereof to any third party. For the avoidance of doubt, Licensee shall not have a right to distribute any SDK Components that are provided as executables and/or in object code form. Licensee also agrees not to add or delete any program files that would modify the functionality and/or appearance of other Adobe software and/or any component thereof.\n\n(b) Development Restrictions. Licensee agrees that Licensee will not use the SDK Components to create, develop or use any program, software or service which (1) contains any viruses, Trojan horses, worms, time bombs, cancelbots or other computer programming routines that are intended to damage, detrimentally interfere with, surreptitiously intercept or expropriate any system, data or personal information; (2) when used in the manner in which it is intended, violates any material law, statute, ordinance or regulation (including without limitation the laws and regulations governing export control, unfair competition, antidiscrimination or false advertising); or (3) interferes with the operability of other Adobe or third-party programs or software.\n\n(c) Indemnification. Licensee agrees to defend, indemnify, and hold Adobe and its suppliers harmless from and against any claims or lawsuits, including attorneys\u2019 reasonable fees, that arise or result from the use or distribution of Developer Programs, provided that Adobe gives Licensee prompt written notice of any such claim, tenders to Licensee the defense or settlement of such a claim at Licensee\u2019s expense, and cooperates with Licensee, at Licensee\u2019s expense, in defending or settling such claim.\n\n2.2 Sample Code. Licensee may modify the Sample Code solely for the purposes of designing, developing and testing Licensee\u2019s own software applications. However, Licensee is permitted to use, copy and redistribute its modified Sample Code only if all of the following conditions are met: (a) Licensee includes Adobe's copyright notice (if any) with Licensee\u2019s application, including every location in which any other copyright notice appears in such application; and (b) Licensee does not otherwise use Adobe's name, logos or other Adobe trademarks to market Licensee\u2019s application. Licensee agrees to defend, indemnify, and hold Adobe and its suppliers harmless from and against any claims or lawsuits, including attorneys\u2019 reasonable fees, that arise or result from the use or distribution of Licensee\u2019s applications, provided that Adobe gives Licensee prompt written notice of any such claim, tenders to Licensee the defense or settlement of such a claim at Licensee\u2019s expense, and cooperates with Licensee, at Licensee\u2019s expense, in defending or settling such claim.\n\n2.3 Adobe Flex Charting Software. If Adobe Flex Charting Software is included with the Software, then such Adobe Flex Charting Software is deemed an evaluation version, use of which is subject to Section 4.1 of this Agreement except for the sixty (60) day time out described therein; provided, however, such evaluation version shall be used solely in connection with Licensee\u2019s use of the Flex SDK Components. In the event Licensee purchases a Production Software license to Adobe Flex Charting Software and enables such license with a production serial number, then the Licensee\u2019s use of such Production Software shall be governed by the following terms:\n\nAdobe grants Licensee a non-exclusive license to use the Adobe Flex Charting Software for which Licensee has purchased and provided hereunder in the manner and for the purposes described in the Documentation, as further set forth below:\n\n2.3.1 General Use. Licensee may install and use one copy of the Adobe Flex Charting Software on up to the licensed number of its compatible Computers; or\n\n2.3.2 Server Deployment. Licensee may install one copy of the Adobe Flex Charting Software on one Computer file server within its Internal Network for the purpose of downloading and installing the Software on up to the licensed number of other Computers within the same Internal Network; or\n\n2.3.3 Server Use. Licensee may install the licensed number of copies of the Adobe Flex Charting Software on the licensed number of Computer file server(s) within your Internal Network only for use of the Adobe Flex Charting Software (in conjunction with the use of licensed copies of Flex Data Services Software) initiated by an individual through commands, data or instructions (e.g., scripts) from a Computer within the same Internal Network. The total number of users (not the concurrent number of users) permitted to use the Software on such Computer file server(s) may not exceed the licensed number.\n\n2.3.4 Portable or Home Computer Use. The primary user of the Computer on which the Software is installed may install a second copy of the Software for his or her exclusive use on either a portable Computer or a Computer located at his or her home, provided the Software on the portable or home Computer is not used at the same time as the Software on the primary Computer.\n\n2.4 Backup and Disaster Recovery. Licensee may make a reasonable number of backup copies of the Software, provided the backup copies are not installed or used for other than archival purposes. With respect to Flex Data Services Software, if applicable, Licensee may also install copies of the Software in a Disaster Recovery Environment for use solely in disaster recovery and not for production, development, evaluation or testing purposes other than to ensure that the Software is capable of replacing the primary usage of the Software in case of a disaster.\n\n2.5 Documentation. Licensee may make copies of the Documentation for use by Authorized Users in connection with use of the Software in accordance with this Agreement, but no more than the amount reasonably necessary. Any permitted copy of the Documentation that Licensee makes must contain the same copyright and other proprietary notices that appear on or in the Documentation.\n\n2.6 Outsourcing. Licensee may sub-license use of the Software to a third party outsourcing or facilities management contractor to operate the Software on Licensee\u2019s behalf, provided that (a) Licensee provides Adobe with prior written notice; (b) Licensee is responsible for ensuring that any such contractor agrees to abide by and fully complies with the terms of this Agreement as they relate to the use of the Software on the same basis as applies to Licensee; (c) such use is only in relation to Licensee\u2019s direct beneficial business purposes as restricted herein; (d) such use does not represent or constitute an increase in the scope or number of licenses provided hereunder; and (e) Licensee shall remain fully liable for any and all acts or omissions by the contractor related to this Agreement.\n\n2.7 Font Software. If the Software includes font software, then Licensee may (a) use the font software on Licensee\u2019s Computers in connection with Licensee\u2019s use of the Software as permitted under this Agreement; (b) output such font software on any output devices connected to Licensee\u2019s Computers; (c) convert and install the font software into another format for use in other environments provided that use of the converted font software may not be distributed or transferred for any purpose except in accordance with the transfer section in this Agreement; and (d) embed copies of the font software into Licensee\u2019s electronic documents for the purpose of printing and viewing the document, provided that if the font software Licensee is embedding is identified as \"licensed for editable embedding\" on Adobe\u2019s website at http://www.adobe.com/type/browser/legal/embeddingeula.html, Licensee may also embed copies of that font software for the additional limited purpose of editing Licensee\u2019s electronic documents.\n\n2.8 Deployment. Any application created using Flex Data Service Software must be deployed with an authorized and validly licensed Production Software copy of Flex Data Services Software.\n\n2.9 JRun Application. Licensee is prohibited from using Adobe JRun application server included with the Software other than solely in connection with its use of the Software and only for purposes of development.\n\n2.10 Restrictions\n\n2.10.1 No Modifications, No Reverse Engineering. Except as specifically provided herein with respect to SDK Components, Licensee shall not modify, port, adapt or translate the Software. Licensee shall not reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of the Software. Notwithstanding the foregoing, decompiling the Software is permitted to the extent the laws of Licensee\u2019s jurisdiction give Licensee the right to do so to obtain information necessary to render the Software interoperable with other software; provided, however, that Licensee must first request such information from Adobe and Adobe may, in its discretion, either provide such information to Licensee or impose reasonable conditions, including a reasonable fee, on such use of the source code to ensure that Adobe\u2019s and its suppliers\u2019 proprietary rights in the source code for the Software are protected.\n\n2.10.2 No Unbundling. The Software may include various applications, utilities and components, may support multiple platforms and languages or may be provided to Licensee on multiple media or in multiple copies. Nonetheless, the Software is designed and provided to Licensee as a single product to be used as a single product on Computers and platforms as permitted herein. Licensee is not required to use all component parts of the Software, but Licensee shall not unbundle the component parts of the Software for use on different Computers. Licensee shall not unbundle or repackage the Software for distribution, transfer or resale.\n\n2.10.3 No Transfer. Licensee shall not sublicense, assign or transfer the Software or Licensee\u2019s rights in the Software, or authorize any portion of the Software to be copied onto or accessed from another individual\u2019s or entity\u2019s Computer except as may be explicitly provided in this Agreement. Notwithstanding anything to the contrary in this Section 2.10.3, Licensee may transfer copies of the Software installed on one of Licensee\u2019s Computers to another one of Licensee\u2019s Computers provided that the resulting installation and use of the Software is in accordance with the terms of this Agreement and does not cause Licensee to exceed Licensee\u2019s right to use the Software under this Agreement.\n\n2.10.4 Prohibited Use. Except as expressly authorized under this Agreement, Licensee is prohibited from: (a) using the Software on behalf of third parties; (b) renting, leasing, lending or granting other rights in the Software including rights on a membership or subscription basis; and (c) providing use of the Software in a computer service business, third party outsourcing facility or service, service bureau arrangement, network, or time sharing basis.\n\n2.10.5 Export Rules. Licensee agrees that the Software will not be shipped, transferred or exported into any country or used in any manner prohibited by the United States Export Administration Act or any other export laws, restrictions or regulations (collectively the \"Export Laws\"). In addition, if the Software is identified as an export controlled item under the Export Laws, Licensee represents and warrants that Licensee is not a citizen of, or located within, an embargoed or otherwise restricted nation (including Iran, Iraq, Syria, Sudan, Libya, Cuba and North Korea) and that Licensee is not otherwise prohibited under the Export Laws from receiving the Software. All rights to install and use the Software are granted on condition that such rights are forfeited if Licensee fails to comply with the terms of this Agreement.\n\n3. License Metrics and Limitations.\n\n3.1 Production Software License. Unless Licensee has been granted a valid serial number for another type of Adobe Flex Data Services Software license, Licensee shall be deemed to have licensed Adobe Flex Data Services Express Software.\n\n3.1.1 Adobe Flex Data Services Enterprise License. This Section 3.1.1 applies only if Licensee has obtained a valid Adobe Flex Data Services Enterprise Software license. Adobe grants Licensee a license to install and use the Adobe Flex Data Services Software as Production Software on a Per-CPU basis.\n\n3.1.2 Adobe Flex Data Services Departmental License. This Section 3.1.2 applies only if Licensee has obtained a valid Adobe Flex Data Services Departmental Software license. Adobe grants Licensee a license to (a) install and use the Adobe Flex Data Services Departmental Software as Production Software on a Per-CPU basis, and (b) operate applications designed to use the Flex Data Services Departmental Software (each a \"Licensee Application\") only with licensed CPUs provided that no more than 100 users shall concurrently use and/or access any Licensee Application or group of Licensee Applications that are operated with one (1) or more of the same CPUs.\n\n3.1.3 Adobe Flex Data Services Express License. This Section 3.1.3 applies only if Licensee has obtained a valid Adobe Flex Data Services Express Software license. With respect to each unique application created by Licensee, Adobe grants Licensee a license to install and use such unique application and the Adobe Flex Data Services Express Software as Production Software on a Per-CPU basis; provided that Licensee shall not: (a) install, use or access such unique application and/or the Adobe Flex Data Services Express Software on more than one CPU, (b) cluster any CPUs, and/or (c) use load balancing. For avoidance of doubt, Licensee shall not deploy any unique application on multiple disconnected single CPUs, including without limitation, on kiosks and other such devices.\n\n3.2 Development Software License. This Section 3.2 applies only if Licensee has obtained a valid Development Software license to the Software. In addition to the other terms contained herein, Licensee\u2019s license to the Development Software is limited to use in Licensee\u2019s technical environment strictly for testing and development purposes and not for production purposes. Licensee may (a) install the Development Software on Servers connected to Licensee\u2019s Internal Network provided that the total number of Computers used to operate the Development Software does not exceed the licensed amount, and (b) permit Authorized Users to use the Development Software in accordance with this Agreement.\n\n3.3 Adobe Flex Automation Agents License. This Section 3.3 governs Licensee\u2019s use of the Adobe Flex Automation Agents software that accompanies Adobe Flex Data Services Enterprise Software and Adobe Flex Data Services Departmental Software. Adobe grants to Licensee a license to use the Adobe Flex Automation Agents software in connection with validly licensed Adobe Flex software to (a) build and internally playback tests of Flex applications developed by Licensee as Development Software, provided that the total number of Authorized Users permitted to create and/or execute test scripts shall not exceed the total number of valid CPU licenses of Adobe Flex Data Services Enterprise Software and Adobe Flex Data Services Departmental Software obtained by Licensee; and (b) deploy Flex applications developed by Licensee that use Adobe Flex Automation Agents on Licensee\u2019s Computers as Production Software, provided that the total number of CPUs on which such applications are deployed shall not exceed the total number of valid CPU licenses of Adobe Flex Data Services Enterprise Software and Adobe Flex Data Services Departmental Software obtained by Licensee.\n\n4. Evaluation Software and Not for Resale Software.\n\n4.1 Evaluation Software. This Section 4.1 applies only if Licensee has obtained a valid license to evaluate Software as separately provided in writing by Adobe, as indicated by the serial number Licensee enters upon installation, and/or as indicated by the Software when first executed.\n\n4.1.1 License. In addition to the other terms contained herein, Licensee\u2019s license to evaluate the Software is limited to use strictly for Licensee\u2019s own internal evaluation and review purposes and not for production purposes, and is further limited to a period not to exceed sixty (60) days from the date Licensee obtains the Software, unless such period of time is extended by Adobe, in which case, such period shall not exceed the expiration date of such extended period. Licensee may (a) install the Software on one (1) Computer connected to Licensee\u2019s Internal Network, and (b) permit Authorized Users to use the Software to deliver content within Licensee\u2019s Internal Network. Licensee\u2019s rights with respect to the Software are further limited as described in Section 4.1.2.\n\n4.1.2 Limitations. Licensee acknowledges that as evaluation software, the Software might place watermarks on output, contain limited functionality, or cease operations after a designated period of time unless extended by Adobe upon Licensee\u2019s acquisition of a full commercial license. Licensee\u2019s rights to install and use Software under this Section 4.1 will terminate immediately upon the earlier of (a) the expiration of the evaluation period described herein, or (b) such time that Licensee purchases a license to a non-evaluation version of such Software. Adobe reserves the right to terminate Licensee\u2019s license to evaluate Software at any time in its sole discretion. Licensee agrees to return or destroy Licensee\u2019s copy of the Software upon termination of this Agreement for any reason. To the extent that any provision in this Section 4.1 is in conflict with any other term or condition in this Agreement, this Section 4.1 shall supersede such other term(s) and condition(s) with respect to the evaluation of Software, but only to the extent necessary to resolve the conflict. LICENSEE ACKNOWLEDGES THAT THE EVALUATION SOFTWARE MIGHT PLACE WATERMARKS ON OUTPUT, CONTAIN LIMITED FUNCTIONALITY, OR FUNCTION FOR A LIMITED PERIOD OF TIME, AND ACCESS TO ANY FILES OR OUTPUT CREATED WITH SUCH SOFTWARE OR ANY PRODUCT ASSOCIATED WITH SUCH SOFTWARE IS ENTIRELY AT LICENSEE\u2019S OWN RISK. ADOBE IS LICENSING THE SOFTWARE FOR EVALUATION ON AN \"AS IS\" BASIS AT LICENSEE\u2019S OWN RISK. ADOBE DISCLAIMS ANY WARRANTY OR LIABILITY OBLIGATIONS TO LICENSEE OF ANY KIND. SEE SECTIONS 7 AND 8 FOR WARRANTY DISCLAIMERS AND LIABILITY LIMITATIONS WHICH GOVERN EVALUATION OF SOFTWARE.\n\n4.2. Not For Resale Software. This Section 4.2 applies only if Licensee has obtained a valid license to evaluate the Software as \"Not For Resale\" or \"NFR\" software separately provided in writing by Adobe, as indicated by the serial number Licensee enters upon installation and/or as indicated by the Software when first executed.\n\n4.2.1 License. In addition to the other terms contained herein, Licensee\u2019s license to evaluate the Software is limited to use strictly for Licensee\u2019s own internal evaluation and review purposes and not for production purposes. Licensee may (a) install the Software on one (1) Computer connected to Licensee\u2019s Internal Network, and (b) permit Authorized Users to use the Software to deliver content within Licensee\u2019s Internal Network. Licensee\u2019s rights with respect to the Software are further limited as described in Section 4.2.2.\n\n4.2.2 Limitations. Adobe reserves the right to terminate Licensee\u2019s license to evaluate Software at any time in its sole discretion. Licensee agrees to return or destroy Licensee\u2019s copy of the Software upon termination of this Agreement for any reason. To the extent that any provision in this Section 4.2 is in conflict with any other term or condition in this Agreement, this Section 4.2 shall supersede such other term(s) and condition(s) with respect to the evaluation and review of the Software, but only to the extent necessary to resolve the conflict. ADOBE IS LICENSING THE SOFTWARE FOR EVALUATION ON AN \"AS IS\" BASIS AT LICENSEE\u2019S OWN RISK. SEE SECTIONS 7 AND 8 FOR WARRANTY DISCLAIMERS AND LIABILITY LIMITATIONS WHICH GOVERN NOT FOR RESALE SOFTWARE.\n\n5. Intellectual Property Rights. The Software and any copies that Licensee is authorized by Adobe to make are the intellectual property of and are owned by Adobe Systems Incorporated and its suppliers. The structure, organization and code of the Software are the valuable trade secrets and confidential information of Adobe Systems Incorporated and its suppliers. The Software is protected by copyright, including without limitation by United States Copyright Law, international treaty provisions and applicable laws in the country in which it is being used. Except as expressly stated herein, this Agreement does not grant Licensee any intellectual property rights in the Software and all rights not expressly granted are reserved by Adobe.\n\n6. Updates. If the Software is an upgrade or update to a previous version of the Software, Licensee must possess a valid license to such previous version in order to use such upgrade or update. All upgrades and updates are provided to Licensee subject to the terms of this Agreement on a license exchange basis. Licensee agrees that by using an upgrade or update Licensee voluntarily terminates Licensee\u2019s right to use any previous version of the Software. As an exception, Licensee may continue to use previous versions of the Software on Licensee\u2019s Computers after Licensee obtains the upgrade or update but only for a reasonable period of time to assist Licensee in the transition to the upgrade or update, and further provided that such simultaneous use shall not be deemed to increase the number of copies, licensed amounts or scope of use granted to Licensee hereunder. Upgrades and updates may be licensed to Licensee by Adobe with additional or different terms.\n\n7. WARRANTY\n\n7.1. Warranty. Adobe warrants to Licensee that the Software will perform substantially in accordance with the Documentation for the ninety (90) day period following shipment of the Software when used on the recommended operating system, platform and hardware configuration. This limited warranty does not apply to Flex Data Services Express Software, evaluation software (as identified in Section 4.1), Not For Resale software (as identified in Section 4.2), Flex Software Development Kit, patches, Sample Code, and font software converted into other formats. All warranty claims must be made within such ninety (90) day period. If the Software does not perform as warranted above, the entire liability of Adobe and Licensee\u2019s exclusive remedy shall be limited to either, at Adobe\u2019s option, the replacement of the Software or the refund of the license fee paid to Adobe for the Software.\n\n7.2 DISCLAIMER. THE FOREGOING LIMITED WARRANTY IS THE ONLY WARRANTY MADE BY ADOBE AND STATES THE SOLE AND EXCLUSIVE REMEDIES FOR ADOBE\u2019S, ITS AFFILIATES\u2019 OR ITS SUPPLIERS\u2019 BREACH OF WARRANTY. EXCEPT FOR THE FOREGOING LIMITED WARRANTY, AND FOR ANY WARRANTY, CONDITION, REPRESENTATION OR TERM TO THE EXTENT TO WHICH THE SAME CANNOT OR MAY NOT BE EXCLUDED OR LIMITED BY LAW APPLICABLE IN LICENSEE\u2019S JURISDICTION, ADOBE, ITS AFFILIATES AND ITS SUPPLIERS PROVIDE THE SOFTWARE AS-IS AND WITH ALL FAULTS AND EXPRESSLY DISCLAIM ALL OTHER WARRANTIES, CONDITIONS, REPRESENTATIONS OR TERMS, EXPRESS OR IMPLIED, WHETHER BY STATUTE, COMMON LAW, CUSTOM, USAGE OR OTHERWISE AS TO ANY OTHER MATTERS, INCLUDING PERFORMANCE, SECURITY, NON-INFRINGEMENT OF THIRD PARTY RIGHTS, INTEGRATION, MERCHANTABILITY, QUIET ENJOYMENT, SATISFACTORY QUALITY OR FITNESS FOR ANY PARTICULAR PURPOSE.\n\n8. LIMITATION OF LIABILITY. EXCEPT FOR THE EXCLUSIVE REMEDY SET FORTH ABOVE, IN NO EVENT WILL ADOBE, ITS AFFILIATES OR ITS SUPPLIERS BE LIABLE TO LICENSEE FOR ANY LOSS, DAMAGES, CLAIMS OR COSTS WHATSOEVER INCLUDING ANY CONSEQUENTIAL, INDIRECT OR INCIDENTAL DAMAGES, ANY LOST PROFITS OR LOST SAVINGS, ANY DAMAGES RESULTING FROM BUSINESS INTERRUPTION, PERSONAL INJURY OR FAILURE TO MEET ANY DUTY OF CARE, OR CLAIMS BY A THIRD PARTY EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN LICENSEE\u2019S JURISDICTION. ADOBE\u2019S AGGREGATE LIABILITY AND THAT OF ITS AFFILIATES AND SUPPLIERS UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT PAID FOR THE SOFTWARE, IF ANY. THIS LIMITATION WILL APPLY EVEN IN THE EVENT OF A FUNDAMENTAL OR MATERIAL BREACH OR A BREACH OF THE FUNDAMENTAL OR MATERIAL TERMS OF THIS AGREEMENT. Nothing contained in this Agreement limits Adobe\u2019s liability to Licensee in the event of death or personal injury resulting from Adobe\u2019s negligence or for the tort of deceit (fraud). Adobe is acting on behalf of its affiliates and suppliers for the purpose of disclaiming, excluding and limiting obligations, warranties and liability, but in no other respects and for no other purpose. For further information, please see the jurisdiction specific information at the end of this agreement, if any, or contact Adobe\u2019s Licensee Support Department.\n\n9. Governing Law. This Agreement, each transaction entered into hereunder, and all matters arising from or related to this Agreement (including its validity and interpretation), will be governed and enforced by and construed in accordance with the substantive laws in force in: (a) the State of California, if a license to the Software is purchased when Licensee is in the United States, Canada, or Mexico; or (b) Japan, if a license to the Software is purchased when Licensee is in Japan, China, Korea, or other Southeast Asian country where all official languages are written in either an ideographic script (e.g., hanzi, kanji, or hanja), and/or other script based upon or similar in structure to an ideographic script, such as hangul or kana; or (c) England, if a license to the Software is purchased when Licensee is in any other jurisdiction not described above. The respective courts of Santa Clara County, California when California law applies, Tokyo District Court in Japan, when Japanese law applies, and the competent courts of London, England, when the law of England applies, shall each have non-exclusive jurisdiction over all disputes relating to this Agreement. This Agreement will not be governed by the conflict of law rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded.\n\n10. General Provisions. If any part of this Agreement is found void and unenforceable, it will not affect the validity of the balance of this Agreement, which shall remain valid and enforceable according to its terms. Updates may be licensed to Licensee by Adobe with additional or different terms. The English version of this Agreement shall be the version used when interpreting or construing this Agreement. This is the entire agreement between Adobe and Licensee relating to the Software and it supersedes any prior representations, discussions, undertakings, communications or advertising relating to the Software.\n\n11. Notice to U.S. Government End Users.\n\n11.1 Commercial Items. The Software and Documentation are \"Commercial Item(s),\" as that term is defined at 48 C.F.R. Section 2.101, consisting of \"Commercial Computer Software\" and \"Commercial Computer Software Documentation,\" as such terms are used in 48 C.F.R. Section 12.212 or 48 C.F.R. Section 227.7202, as applicable. Consistent with 48 C.F.R. Section 12.212 or 48 C.F.R. Sections 227.7202-1 through 227.7202-4, as applicable, the Commercial Computer Software and Commercial Computer Software Documentation are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Unpublished-rights reserved under the copyright laws of the United States. Adobe Systems Incorporated, 345 Park Avenue, San Jose, CA 95110-2704, USA.\n\n11.2 U.S. Government Licensing of Adobe Technology. Licensee agrees that when licensing Adobe Software for acquisition by the U.S. Government, or any contractor therefore, Licensee will license consistent with the policies set forth in 48 C.F.R. Section 12.212 (for civilian agencies) and 48 C.F.R. Sections 227-7202-1 and 227-7202-4 (for the Department of Defense). For U.S. Government End Users, Adobe agrees to comply with all applicable equal opportunity laws including, if appropriate, the provisions of Executive Order 11246, as amended, Section 402 of the Vietnam Era Veterans Readjustment Assistance Act of 1974 (38 USC 4212), and Section 503 of the Rehabilitation Act of 1973, as amended, and the regulations at 41 CFR Parts 60-1 through 60-60, 60-250, and 60-741. The affirmative action clause and regulations contained in the preceding sentence shall be incorporated by reference in this Agreement.\n\n12. Compliance with Licenses. Adobe may, at its expense, and no more than once every twelve (12) months, appoint its own personnel or an independent third party to verify the number of copies and installations as well as usage of the Adobe software in use by Licensee. Any such verification shall be conducted upon seven (7) business days notice, during regular business hours at Licensee\u2019s offices and shall not unreasonably interfere with Licensee\u2019s business activities. Both Adobe and its auditors shall execute a commercially reasonable non-disclosure agreement with Licensee before proceeding with the verification. If such verification shows that Licensee is using a greater number of copies of the Software than that legitimately licensed, or are deploying or using the Software in any way not permitted under this Agreement and which would require additional license fees, Licensee shall pay the applicable fees for such additional copies within thirty (30) days of invoice date, with such underpaid fees being the license fees as per Adobe\u2019s then-current, country specific, license fee list. If underpaid fees are in excess of five percent (5%) of the value of the fees paid under this Agreement, then Licensee shall pay such underpaid fees and Adobe\u2019s reasonable costs of conducting the verification.\n\n13. Third-Party Beneficiary. Licensee acknowledges and agrees that Adobe\u2019s licensors (and/or Adobe if Licensee obtained the Software from any party other than Adobe) are third party beneficiaries of this Agreement, with the right to enforce the obligations set forth herein with respect to the respective technology of such licensors and/or Adobe.\n\n14. Specific Provisions and Exceptions. This section sets forth specific provisions related to certain components of the Software as well as limited exceptions to the above terms and conditions. To the extent that any provision in this section is in conflict with any other term or condition in this agreement, this section will supersede such other term or condition.\n\n14.1 Limited Warranty for Users Residing in Germany or Austria. If Licensee obtained the Software in Germany or Austria, and Licensee usually resides in such country, then Section 7 does not apply; instead, Adobe warrants that the Software provides the functionalities set forth in the Documentation (the \"agreed upon functionalities\") for the limited warranty period following receipt of the Software when used on the recommended hardware configuration. As used in this Section, \"limited warranty period\" means one (1) year if Licensee is a business user and two (2) years if Licensee is not a business user. Non-substantial variation from the agreed upon functionalities will not and does not establish any warranty rights. THIS LIMITED WARRANTY DOES NOT APPLY TO SOFTWARE PROVIDED TO LICENSEE FREE OF CHARGE, FOR EXAMPLE, UPDATES, PRE-RELEASE, TRYOUT, STARTER, PRODUCT SAMPLER AND NOT FOR RESALE (NFR) COPIES OF SOFTWARE, OR TO FONT SOFTWARE CONVERTED INTO OTHER FORMATS, WEB SITES, ONLINE SERVICES, OR SOFTWARE THAT HAS BEEN ALTERED BY LICENSEE, TO THE EXTENT SUCH ALTERATION CAUSED A DEFECT. s To make a warranty claim, during the limited warranty period Licensee must return, at our expense, the Software and proof of purchase to the location where Licensee obtained it. If the functionalities of the Software vary substantially from the agreed upon functionalities, Adobe is entitled -- by way of re-performance and at its own discretion -- to repair or replace the Software. If this fails, Licensee is entitled to a reduction of the purchase price (reduction) or to cancel the purchase agreement (rescission). For further warranty information, please contact the Adobe Customer Support Department.\n\n14.2 Limitation of Liability for Users Residing in Germany and Austria.\n\n14.2.1 If Licensee obtained the Software in Germany or Austria, and Licensee usually resides in such country, then Section 8 does not apply. Instead, subject to the provisions in Section 14.2.2, Adobe and its affiliates' statutory liability for damages will be limited as follows: (i) Adobe and its affiliates will be liable only up to the amount of damages as typically foreseeable at the time of entering into the purchase agreement in respect of damages caused by a slightly negligent breach of a material contractual obligation and (ii) Adobe and its affiliates will not be liable for damages caused by a slightly negligent breach of a non-material contractual obligation.\n\n14.2.2 The aforesaid limitation of liability will not apply to any mandatory statutory liability, in particular, to liability under the German Product Liability Act, liability for assuming a specific guarantee or liability for culpably caused personal injuries.\n\n14.2.3 Licensee is required to take all reasonable measures to avoid and reduce damages, in particular to make back-up copies of the Software and Licensee\u2019s computer data subject to the provisions of this agreement.\n\n15. Educational Software Product. If the Software accompanying this agreement is Educational Software Product (Software manufactured and distributed for use by only Educational End Users), Licensee is not entitled to use the Software unless Licensee qualifies in its jurisdiction as an Educational End User. Please visit http://www.adobe.com/education/purchasing to learn if Licensee qualifies. To find an Adobe Authorized Academic Reseller in Licensee\u2019s area, please visit http://www.adobe.com/store and look for the link for Buying Adobe Products Worldwide.\n\nIf Licensee has any questions regarding this agreement or if Licensee wishes to request any information from Adobe please use the address and contact information included with this product to contact the Adobe office serving Licensee\u2019s jurisdiction.\n\nAdobe is either a registered trademark or trademark of Adobe Systems Incorporated in the United States and/or other countries.", + "json": "flex2sdk.json", + "yaml": "flex2sdk.yml", + "html": "flex2sdk.html", + "license": "flex2sdk.LICENSE" + }, + { + "license_key": "flora-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-flora-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Flora License\n\nVersion 1.1, April, 2013\n\nhttp://floralicense.org/license\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"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.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"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.\n\n\"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).\n\n\"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.\n\n\"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.\"\n\n\"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.\n\n\"Tizen Certified Platform\" shall mean a software platform that complies with the standards set forth in the Tizen Compliance Specification and passes the Tizen Compliance Tests as defined from time to time by the Tizen Technical Steering Group and certified by the Tizen Association or its designated agent.\n\n2. 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.\n\n3. 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 solely as incorporated into a Tizen Certified Platform, 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 solely as incorporated into a Tizen Certified Platform 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.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof pursuant to the copyright license above, in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\n You must give any other recipients of the Work or Derivative Works a copy of this License; and\n You must cause any modified files to carry prominent notices stating that You changed the files; and\n 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\n 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 and your own copyright statement or terms and conditions do not conflict the conditions stated in this License including section 3.\n\n5. 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.\n\n6. 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.\n\n7. 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.\n\n8. 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.\n\n9. 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.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Flora License to your work\n\nTo apply the Flora 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.\n\n Copyright [yyyy] [name of copyright owner]\n\n \n\n Licensed under the Flora License, Version 1.1 (the \"License\");\n\n you may not use this file except in compliance with the License.\n\n You may obtain a copy of the License at\n\n \n\n http://floralicense.org/license\n\n \n\n Unless required by applicable law or agreed to in writing, software\n\n distributed under the License is distributed on an \"AS IS\" BASIS,\n\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\n See the License for the specific language governing permissions and\n\n limitations under the License.\n\nChange Log\n\n * Version 1.1, April, 2013\n\n The term \"Compatibility Definition Document\" has been changed to \"Tizen Compliance Specification\"\n The term \"Compatibility Test Suites\" has been changed to \"Tizen Compliance Tests\"\n Clarified 4.4 condition on Licensee's own copyright to derivative works or modifications", + "json": "flora-1.1.json", + "yaml": "flora-1.1.yml", + "html": "flora-1.1.html", + "license": "flora-1.1.LICENSE" + }, + { + "license_key": "flowplayer-gpl-3.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-flowplayer-gpl-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This program is free software: you can redistribute it and/or modify it under\nthe terms of the GNU General Public License as published by the Free Software\nFoundation, either version 3 of the License, or (at your option) any later\nversion.\n\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with\nthis program. If not, see .\n\nThe Flowplayer Free version is released under the GNU GENERAL PUBLIC LICENSE\nVersion 3 (GPL). Our GPL based license requires that you do not remove the\ncopyright notices or author attribution from the player's user interface. These\nare present in the player canvas (bottom left corner) and in the context menu.\nSee license FAQ for more details.\n\nCommercial licenses are available. The commercial player version does not\nrequire any Flowplayer notices or texts and also provides some additional\nfeatures.\n\nADDITIONAL TERM per GPL Section 7\n\nIf you convey this program (or any modifications of it) and assume contractual\nliability for the program to recipients of it, you agree to indemnify\nFlowplayer, Ltd. for any liability that those contractual assumptions impose on\nFlowplayer, Ltd.\n\nExcept as expressly provided herein, no trademark rights are granted in any\ntrademarks of Flowplayer, Ltd. Licensees are granted a limited, non-exclusive\nright to use the mark Flowplayer and the Flowplayer logos in connection with\nunmodified copies of the Program and the copyright notices required by section\n5.d of the GPL license. For the purposes of this limited trademark license\ngrant, customizing the Flowplayer by skinning, scripting, or including plugins\nprovided by Flowplayer, Ltd. is not considered modifying the Program.\n\nLicensees that do modify the Program, taking advantage of the open-source\nlicense, may not use the Flowplayer mark or Flowplayer logos and must change the\nlogo as follows:\n\nstating that the licensee modified the Flowplayer. A suitable notice might read\n\"Flowplayer Source code modified by ModOrg 2012\"; for the canvas, the notice\nshould read \"Based on Flowplayer source code\".\n\nIn addition, licensees that modify the Program must give the modified Program a\nnew name that is not confusingly similar to Flowplayer and may not distribute it\nunder the name Flowplayer.", + "json": "flowplayer-gpl-3.0.json", + "yaml": "flowplayer-gpl-3.0.yml", + "html": "flowplayer-gpl-3.0.html", + "license": "flowplayer-gpl-3.0.LICENSE" + }, + { + "license_key": "fltk-exception-lgpl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "FLTK-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "The FLTK library and included programs are provided under the terms of the GNU Library General Public License (LGPL) with the following exceptions:\n\nModifications to the FLTK configure script, config header file, and makefiles by themselves to support a specific platform do not constitute a modified or derivative work.\n\nThe authors do request that such modifications be contributed to the FLTK project - send all contributions to \"fltk-bugs@fltk.org\".\n\nWidgets that are subclassed from FLTK widgets do not constitute a derivative work.\n\nStatic linking of applications and widgets to the FLTK library does not constitute a derivative work and does not require the author to provide source code for the application or widget, use the shared FLTK libraries, or link their applications or widgets against a user-supplied version of FLTK.\n\nIf you link the application or widget to a modified version of FLTK, then the changes to FLTK must be provided under the terms of the LGPL in sections 1, 2, and 4.\n\nYou do not have to provide a copy of the FLTK license with programs that are linked to the FLTK library, nor do you have to identify the FLTK license in your program or documentation as required by section 6 of the LGPL.\n\nHowever, programs must still identify their use of FLTK. The following example statement can be included in user documentation to satisfy this requirement:\n\n[program/widget] is based in part on the work of the FLTK project (http://www.fltk.org).", + "json": "fltk-exception-lgpl-2.0.json", + "yaml": "fltk-exception-lgpl-2.0.yml", + "html": "fltk-exception-lgpl-2.0.html", + "license": "fltk-exception-lgpl-2.0.LICENSE" + }, + { + "license_key": "font-alias", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-font-alias", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software may be used, modified, copied, distributed, and sold,\nin both source and binary form provided that the above copyright\nand these terms are retained. Under no circumstances is the author\nresponsible for the proper functioning of this software, nor does\nthe author assume any responsibility for damages incurred with its use.", + "json": "font-alias.json", + "yaml": "font-alias.yml", + "html": "font-alias.html", + "license": "font-alias.LICENSE" + }, + { + "license_key": "font-exception-gpl", + "category": "Copyleft Limited", + "spdx_license_key": "Font-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, if you create a document which uses\nthis font, and embed this font or unaltered portions of this\nfont into the document, this font does not by itself cause\nthe resulting document to be covered by the GNU General Public\nLicense. This exception does not however invalidate any other\nreasons why the document might be covered by the GNU General\nPublic License. If you modify this font, you may extend this\nexception to your version of the font, but you are not\nobligated to do so. If you do not wish to do so, delete this\nexception statement from your version.", + "json": "font-exception-gpl.json", + "yaml": "font-exception-gpl.yml", + "html": "font-exception-gpl.html", + "license": "font-exception-gpl.LICENSE" + }, + { + "license_key": "foobar2000", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-foobar2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in binary form, without modification, are permitted\nprovided that the following conditions are met:\n\nOnly unmodified installers can be redistributed; redistribution of foobar2000\nbinaries in any other form is not permitted.\n\nNeither the name of the author nor the names of its contributors may be used to\nendorse or promote products derived from this software without specific prior\nwritten permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "foobar2000.json", + "yaml": "foobar2000.yml", + "html": "foobar2000.html", + "license": "foobar2000.LICENSE" + }, + { + "license_key": "fpl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Freeware Public License (FPL)\n\nThis software is licensed as \"freeware.\" Permission to distribute\nthis software in source and binary forms, including incorporation \ninto other products, is hereby granted without a fee. THIS SOFTWARE \nIS PROVIDED 'AS IS' AND WITHOUT ANY EXPRESSED OR IMPLIED WARRANTIES, \nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY \nAND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHOR SHALL NOT BE HELD \nLIABLE FOR ANY DAMAGES RESULTING FROM THE USE OF THIS SOFTWARE, EITHER \nDIRECTLY OR INDIRECTLY, INCLUDING, BUT NOT LIMITED TO, LOSS OF DATA \nOR DATA BEING RENDERED INACCURATE.", + "json": "fpl.json", + "yaml": "fpl.yml", + "html": "fpl.html", + "license": "fpl.LICENSE" + }, + { + "license_key": "fplot", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fplot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software is Freeware. \n \nPermission to use, copy, and distribute this software and its \ndocumentation for any purpose with or without fee is hereby granted, \nprovided that the above copyright notice appear in all copies and \nthat both that copyright notice and this permission notice appear \nin supporting documentation. \n \nPermission to modify the software is granted, but not the right to \ndistribute the modified code. Modifications are to be distributed \nas patches to released version. \n \nThis software is provided \"as is\" without express or implied warranty.", + "json": "fplot.json", + "yaml": "fplot.yml", + "html": "fplot.html", + "license": "fplot.LICENSE" + }, + { + "license_key": "frameworx-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "Frameworx-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "THE FRAMEWORX OPEN LICENSE 1.0\nThis License Agreement, The Frameworx Open License 1.0, has been entered into between The Frameworx Company and you, the licensee hereunder, effective as of Your acceptance of the Frameworx Code Base or an Downstream Distribution (each as defined below).\nAGREEMENT BACKGROUND\nThe Frameworx Company is committed to the belief that open source software results in better quality, greater technical and product innovation in the market place and a more empowered and productive developer and end-user community. Our objective is to ensure that the Frameworx Code Base, and the source code for improvements and innovations to it, remain free and open to the community. To further these beliefs and objectives, we are distributing the Frameworx Code Base, without royalties and in source code form, to the community pursuant to this License Agreement.\nAGREEMENT TERMS\nThe Frameworx Company and You have agreed as follows:\n\n1. Definitions. The following terms have the following respective meanings:\n\n(a) Frameworx Code Base means the software developed by The Frameworx Company and made available under this License Agreement\n\n(b) Downstream Distribution means any direct or indirect release, distribution or remote availability of software (i) that directly or indirectly contains, or depends for its intended functioning on, the Frameworx Code Base or any portion or element thereof and (ii) in which rights to use and distribute such Frameworx Code Base software depend, directly or indirectly, on the License provided in Section 2 below.\n\n(c) \"Source Code\" to any software means the preferred form for making modifications to that software, including any associated documentation, interface definition files and compilation or installation scripts, or any version thereof that has been compressed or archived, and can be reconstituted, using an appropriate and generally available archival or compression technology.\n\n(d) Value-Added Services means any commercial or fee-based software-related service, including without limitation: system or application development or consulting; technical or end-user support or training; distribution maintenance, configuration or versioning; or outsourced, hosted or network-based application services.2. License Grant. Subject to the terms and conditions hereof, The Frameworx Company hereby grants You a non-exclusive license (the License), subject to third party intellectual property claims, and for no fee other than a nominal charge reflecting the costs of physical distribution, to:\n\n(a) use the Frameworx Code Base, in either Source Code or machine-readable form;\n\n(b) make modifications, additions and deletions to the content or structure of the Frameworx Code Base; or\n\n(c) create larger works or derivative works including the Frameworx Code Base or any portion or element thereof; and\n\n(d) release, distribute or make available, either generally or to any specific third-party, any of the foregoing in Source Code or binary form.\n\n3. License Conditions. The grant of the License under Section 1 hereof, and your exercise of all rights in connection with this License Agreement, will remain subject to the following terms and conditions, as well as to the other provisions hereof:\n\n(a) Complete Source Code for any Downstream Distribution directly or indirectly made by You that contains, or depends for its intended functionality on, the Frameworx Code Base, or any portion or element thereof, shall be made freely available to all users thereof on terms and conditions no more restrictive, and no less favorable for any user (including, without limitation, with regard to Source Code availability and royalty-free use) than those terms and conditions provided in this License Agreement.\n\n(b) Any Value-Added Services that you offer or provide, directly or indirectly, in relation to any Downstream Distribution shall be offered and provided on commercial terms that are reasonably commensurate to the fair market value of such Value-Added Services. In addition, the terms and conditions on which any such Value Added Services are so offered or provided shall be consistent with, and shall fully support, the intent and purpose of this License Agreement.\n\n(c) All Downstream Distributions shall:\n\n (i) include all portions and elements of the Frameworx Code Base required to build the Source Code of such Downstream Distribution into a fully functional machine-executable system, or additional build scripts or comparable software necessary and sufficient for such purposes;\n\n (ii) include, in each file containing any portion or element of the Frameworx Code Base, the following identifying legend: This file contains software that has been made available under The Frameworx Open License 1.0. Use and distribution hereof are subject to the restrictions set forth therein.\n\n (iii) include all other copyright notices, authorship credits, warranty disclaimers (including that provided in Section 6 below), legends, documentation, annotations and comments contained in the Frameworx Code Base as provided to You hereunder;\n\n (iv) contain an unaltered copy of the html file named frameworx_community_invitation.html included within the Frameworx Code Base that acknowledges new users and provides them with information on the Frameworx Code Base community;\n\n (v) contain an unaltered copy of the text file named the_frameworx_license.txt included within the Frameworx Code Base that includes a text copy of the form of this License Agreement; and\n\n (vi) prominently display to any viewer or user of the Source Code of such Open Downstream Distribution, in the place and manner normally used for such displays, the following legend:\n\nSource code licensed under from The Frameworx Company is contained herein, and such source code has been obtained either under The Frameworx Open License, or another license granted by The Frameworx Company. Use and distribution hereof is subject to the restrictions provided in the relevant such license and to the copyrights of the licensor thereunder. A copy of The Frameworx Open License is provided in a file named the_frameworx_license.txt and included herein, and may also be available for inspection at http://www.frameworx.com.\n\n4. Restrictions on Open Downstream Distributions. Each Downstream Distribution made by You, and by any party directly or indirectly obtaining rights to the Frameworx Code Base through You, shall be made subject to a license grant or agreement to the extent necessary so that each distributee under that Downstream Distribution will be subject to the same restrictions on re-distribution and use as are binding on You hereunder. You may satisfy this licensing requirement either by:\n\n(a) requiring as a condition to any Downstream Distribution made by you, or by any direct or indirect distributee of Your Downstream Distribution (or any portion or element thereof), that each distributee under the relevant Downstream Distribution obtain a direct license (on the same terms and conditions as those in this License Agreement) from The Frameworx Company; or\n\n(b) sub-licensing all (and not less than all) of Your rights and obligations hereunder to that distributee, including (without limitation) Your obligation to require distributees to be bound by license restrictions as contemplated by this Section 4 above.\n\nThe Frameworx Company hereby grants to you all rights to sub-license your rights hereunder as necessary to fully effect the intent and purpose of this Section 4 above, provided, however, that your rights and obligations hereunder shall be unaffected by any such sublicensing. In addition, The Frameworx Company expressly retains all rights to take all appropriate action (including legal action) against any such direct or indirect sub-licensee to ensure its full compliance with the intent and purposes of this License Agreement.\n\n5. Intellectual Property. Except as expressly provided herein, this License Agreement preserves and respects Your and The Frameworx Companys respective intellectual property rights, including, in the case of The Frameworx Company, its copyrights and patent rights relating to the Frameworx Code Base.\n\n6. Warranty Disclaimer. THE SOFTWARE LICENSED HEREUNDER IS PROVIDED ``AS IS.'' ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT, ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE LICENSOR OF THIS 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.\n\n7. License Violation. The License, and all of your rights thereunder, shall be deemed automatically terminated and void as of any Downstream Distribution directly or indirectly made or facilitated by You that violates the provisions of this License Agreement, provided, however, that this License Agreement shall survive any such termination in order to remedy the effects of such violation. This License Agreement shall be binding on the legal successors and assigns of the parties hereto.\n\nYour agreement to the foregoing as of the date hereof has been evidenced by your acceptance of the relevant software distribution hereunder.\n\n(C) THE FRAMEWORX COMPANY 2003", + "json": "frameworx-1.0.json", + "yaml": "frameworx-1.0.yml", + "html": "frameworx-1.0.html", + "license": "frameworx-1.0.LICENSE" + }, + { + "license_key": "fraunhofer-fdk-aac-codec", + "category": "Copyleft Limited", + "spdx_license_key": "FDK-AAC", + "other_spdx_license_keys": [ + "LicenseRef-scancode-fraunhofer-fdk-aac-codec" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Software License for The Fraunhofer FDK AAC Codec Library for Android\n\n\u00a9 Copyright 1995 - 2012 Fraunhofer-Gesellschaft zur F\u00f6rderung der angewandten Forschung e.V.\nAll rights reserved.\n\n1. INTRODUCTION\nThe Fraunhofer FDK AAC Codec Library for Android (\"FDK AAC Codec\") is software that implements\nthe MPEG Advanced Audio Coding (\"AAC\") encoding and decoding scheme for digital audio.\nThis FDK AAC Codec software is intended to be used on a wide variety of Android devices.\n\nAAC's HE-AAC and HE-AAC v2 versions are regarded as today's most efficient general perceptual\naudio codecs. AAC-ELD is considered the best-performing full-bandwidth communications codec by\nindependent studies and is widely deployed. AAC has been standardized by ISO and IEC as part\nof the MPEG specifications.\n\nPatent licenses for necessary patent claims for the FDK AAC Codec (including those of Fraunhofer)\nmay be obtained through Via Licensing (www.vialicensing.com) or through the respective patent owners\nindividually for the purpose of encoding or decoding bit streams in products that are compliant with\nthe ISO/IEC MPEG audio standards. Please note that most manufacturers of Android devices already license\nthese patent claims through Via Licensing or directly from the patent owners, and therefore FDK AAC Codec\nsoftware may already be covered under those patent licenses when it is used for those licensed purposes only.\n\nCommercially-licensed AAC software libraries, including floating-point versions with enhanced sound quality,\nare also available from Fraunhofer. Users are encouraged to check the Fraunhofer website for additional\napplications information and documentation.\n\n2. COPYRIGHT LICENSE\n\nRedistribution and use in source and binary forms, with or without modification, are permitted without\npayment of copyright license fees provided that you satisfy the following conditions:\n\nYou must retain the complete text of this software license in redistributions of the FDK AAC Codec or\nyour modifications thereto in source code form.\n\nYou must retain the complete text of this software license in the documentation and/or other materials\nprovided with redistributions of the FDK AAC Codec or your modifications thereto in binary form.\nYou must make available free of charge copies of the complete source code of the FDK AAC Codec and your\nmodifications thereto to recipients of copies in binary form.\n\nThe name of Fraunhofer may not be used to endorse or promote products derived from this library without\nprior written permission.\n\nYou may not charge copyright license fees for anyone to use, copy or distribute the FDK AAC Codec\nsoftware or your modifications thereto.\n\nYour modified versions of the FDK AAC Codec must carry prominent notices stating that you changed the software\nand the date of any change. For modified versions of the FDK AAC Codec, the term\n\"Fraunhofer FDK AAC Codec Library for Android\" must be replaced by the term\n\"Third-Party Modified Version of the Fraunhofer FDK AAC Codec Library for Android.\"\n\n3. NO PATENT LICENSE\n\nNO EXPRESS OR IMPLIED LICENSES TO ANY PATENT CLAIMS, including without limitation the patents of Fraunhofer,\nARE GRANTED BY THIS SOFTWARE LICENSE. Fraunhofer provides no warranty of patent non-infringement with\nrespect to this software.\n\nYou may use this FDK AAC Codec software or modifications thereto only for purposes that are authorized\nby appropriate patent licenses.\n\n4. DISCLAIMER\n\nThis FDK AAC Codec software is provided by Fraunhofer on behalf of the copyright holders and contributors\n\"AS IS\" and WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, including but not limited to the implied warranties\nof merchantability and fitness for a particular purpose. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\nCONTRIBUTORS BE LIABLE for any direct, indirect, incidental, special, exemplary, or consequential damages,\nincluding but not limited to procurement of substitute goods or services; loss of use, data, or profits,\nor business interruption, however caused and on any theory of liability, whether in contract, strict\nliability, or tort (including negligence), arising in any way out of the use of this software, even if\nadvised of the possibility of such damage.\n\n5. CONTACT INFORMATION\n\nFraunhofer Institute for Integrated Circuits IIS\nAttention: Audio and Multimedia Departments - FDK AAC LL\nAm Wolfsmantel 33\n91058 Erlangen, Germany\n\nwww.iis.fraunhofer.de/amm\namm-info@iis.fraunhofer.de", + "json": "fraunhofer-fdk-aac-codec.json", + "yaml": "fraunhofer-fdk-aac-codec.yml", + "html": "fraunhofer-fdk-aac-codec.html", + "license": "fraunhofer-fdk-aac-codec.LICENSE" + }, + { + "license_key": "fraunhofer-iso-14496-10", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fraunhofer-iso-14496-10", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "********************************************************************************\n\nNOTE - One of the two copyright statements below may be chosen\n that applies for the software.\n\n********************************************************************************\n\nThis software module was originally developed by\n\nHeiko Schwarz (Fraunhofer HHI),\nTobias Hinz (Fraunhofer HHI),\nKarsten Suehring (Fraunhofer HHI)\n\nin the course of development of the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video\nCoding) for reference purposes and its performance may not have been optimized.\nThis software module is an implementation of one or more tools as specified by\nthe ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding).\n\nThose intending to use this software module in products are advised that its\nuse may infringe existing patents. ISO/IEC have no liability for use of this\nsoftware module or modifications thereof.\n\nAssurance that the originally developed software module can be used\n(1) in the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding) once the\nISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding) has been adopted; and\n(2) to develop the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding):\n\nTo the extent that Fraunhofer HHI owns patent rights that would be required to\nmake, use, or sell the originally developed software module or portions thereof\nincluded in the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding) in a\nconforming product, Fraunhofer HHI will assure the ISO/IEC that it is willing\nto negotiate licenses under reasonable and non-discriminatory terms and\nconditions with applicants throughout the world.\n\nFraunhofer HHI retains full right to modify and use the code for its own\npurpose, assign or donate the code to a third party and to inhibit third\nparties from using the code for products that do not conform to MPEG-related\nITU Recommendations and/or ISO/IEC International Standards.\n\nThis copyright notice must be included in all copies or derivative works.\nCopyright (c) ISO/IEC 2005.\n\n********************************************************************************\n\nCOPYRIGHT AND WARRANTY INFORMATION\n\nCopyright 2005, International Telecommunications Union, Geneva\n\nThe Fraunhofer HHI hereby donate this source code to the ITU, with the following\nunderstanding:\n 1. Fraunhofer HHI retain the right to do whatever they wish with the\n contributed source code, without limit.\n 2. Fraunhofer HHI retain full patent rights (if any exist) in the technical\n content of techniques and algorithms herein.\n 3. The ITU shall make this code available to anyone, free of license or\n royalty fees.\n\nDISCLAIMER OF WARRANTY\n\nThese software programs are available to the user without any license fee or\nroyalty on an \"as is\" basis. The ITU disclaims any and all warranties, whether\nexpress, implied, or statutory, including any implied warranties of\nmerchantability or of fitness for a particular purpose. In no event shall the\ncontributor or the ITU be liable for any incidental, punitive, or consequential\ndamages of any kind whatsoever arising from the use of these programs.\n\nThis disclaimer of warranty extends to the user of these programs and user's\ncustomers, employees, agents, transferees, successors, and assigns.\n\nThe ITU does not represent or warrant that the programs furnished hereunder are\nfree of infringement of any third-party patents. Commercial implementations of\nITU-T Recommendations, including shareware, may be subject to royalty fees to\npatent holders. Information regarding the ITU-T patent policy is available from\nthe ITU Web site at http://www.itu.int.\n\nTHIS IS NOT A GRANT OF PATENT RIGHTS - SEE THE ITU-T PATENT POLICY.\n\n********************************************************************************", + "json": "fraunhofer-iso-14496-10.json", + "yaml": "fraunhofer-iso-14496-10.yml", + "html": "fraunhofer-iso-14496-10.html", + "license": "fraunhofer-iso-14496-10.LICENSE" + }, + { + "license_key": "free-art-1.3", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-free-art-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Free Art License 1.3 (FAL 1.3)\n\nPreamble\n\nThe Free Art License grants the right to freely copy, distribute, and transform creative works without infringing the author's rights.\n\nThe Free Art License recognizes and protects these rights. Their implementation has been reformulated in order to allow everyone to use creations of the human mind in a creative manner, regardless of their types and ways of expression.\n\nWhile the public's access to creations of the human mind usually is restricted by the implementation of copyright law, it is favoured by the Free Art License. This license intends to allow the use of a work's resources; to establish new conditions for creating in order to increase creation opportunities. The Free Art License grants the right to use a work, and acknowledges the right holder's and the user's rights and responsibility.\n\nThe invention and development of digital technologies, Internet and Free Software have changed creation methods: creations of the human mind can obviously be distributed, exchanged, and transformed. They allow to produce common works to which everyone can contribute to the benefit of all.\n\nThe main rationale for this Free Art License is to promote and protect these creations of the human mind according to the principles of copyleft: freedom to use, copy, distribute, transform, and prohibition of exclusive appropriation.\n\nDefinitions\n\nwork either means the initial work, the subsequent works or the common work as defined hereafter:\n\n\"common work\" means a work composed of the initial work and all subsequent contributions to it (originals and copies). The initial author is the one who, by choosing this license, defines the conditions under which contributions are made.\n\n\"Initial work\" means the work created by the initiator of the common work (as defined above), the copies of which can be modified by whoever wants to\n\n\"Subsequent works\" means the contributions made by authors who participate in the evolution of the common work by exercising the rights to reproduce, distribute, and modify that are granted by the license.\n\n\"Originals\" (sources or resources of the work) means all copies of either the initial work or any subsequent work mentioning a date and used by their author(s) as references for any subsequent updates, interpretations, copies or reproductions.\n\n\"Copy\" means any reproduction of an original as defined by this license.\n\n1. OBJECT\nThe aim of this license is to define the conditions under which one can use this work freely.\n\n2. SCOPE\nThis work is subject to copyright law. Through this license its author specifies the extent to which you can copy, distribute, and modify it.\n\n2.1 FREEDOM TO COPY (OR TO MAKE REPRODUCTIONS)\nYou have the right to copy this work for yourself, your friends or any other person, whatever the technique used.\n\n2.2 FREEDOM TO DISTRIBUTE, TO PERFORM IN PUBLIC\nYou have the right to distribute copies of this work; whether modified or not, whatever the medium and the place, with or without any charge, provided that you:\nattach this license without any modification to the copies of this work or indicate precisely where the license can be found,\nspecify to the recipient the names of the author(s) of the originals, including yours if you have modified the work,\nspecify to the recipient where to access the originals (either initial or subsequent).\nThe authors of the originals may, if they wish to, give you the right to distribute the originals under the same conditions as the copies.\n\n2.3 FREEDOM TO MODIFY\nYou have the right to modify copies of the originals (whether initial or subsequent) provided you comply with the following conditions:\nall conditions in article 2.2 above, if you distribute modified copies;\nindicate that the work has been modified and, if it is possible, what kind of modifications have been made;\ndistribute the subsequent work under the same license or any compatible license.\nThe author(s) of the original work may give you the right to modify it under the same conditions as the copies.\n\n3. RELATED RIGHTS\nActivities giving rise to author's rights and related rights shall not challenge the rights granted by this license.\nFor example, this is the reason why performances must be subject to the same license or a compatible license. Similarly, integrating the work in a database, a compilation or an anthology shall not prevent anyone from using the work under the same conditions as those defined in this license.\n\n4. INCORPORATION OF THE WORK\nIncorporating this work into a larger work that is not subject to the Free Art License shall not challenge the rights granted by this license.\nIf the work can no longer be accessed apart from the larger work in which it is incorporated, then incorporation shall only be allowed under the condition that the larger work is subject either to the Free Art License or a compatible license.\n\n5. COMPATIBILITY\nA license is compatible with the Free Art License provided:\nit gives the right to copy, distribute, and modify copies of the work including for commercial purposes and without any other restrictions than those required by the respect of the other compatibility criteria;\nit ensures proper attribution of the work to its authors and access to previous versions of the work when possible;\nit recognizes the Free Art License as compatible (reciprocity);\nit requires that changes made to the work be subject to the same license or to a license which also meets these compatibility criteria.\n\n6. YOUR INTELLECTUAL RIGHTS\nThis license does not aim at denying your author's rights in your contribution or any related right. By choosing to contribute to the development of this common work, you only agree to grant others the same rights with regard to your contribution as those you were granted by this license. Conferring these rights does not mean you have to give up your intellectual rights.\n\n7. YOUR RESPONSIBILITIES\nThe freedom to use the work as defined by the Free Art License (right to copy, distribute, modify) implies that everyone is responsible for their own actions.\n\n8. DURATION OF THE LICENSE\nThis license takes effect as of your acceptance of its terms. The act of copying, distributing, or modifying the work constitutes a tacit agreement. This license will remain in effect for as long as the copyright which is attached to the work. If you do not respect the terms of this license, you automatically lose the rights that it confers.\nIf the legal status or legislation to which you are subject makes it impossible for you to respect the terms of this license, you may not make use of the rights which it confers.\n\n9. VARIOUS VERSIONS OF THE LICENSE\nThis license may undergo periodic modifications to incorporate improvements by its authors (instigators of the \"Copyleft Attitude\" movement) by way of new, numbered versions.\nYou will always have the choice of accepting the terms contained in the version under which the copy of the work was distributed to you, or alternatively, to use the provisions of one of the subsequent versions.\n\n10. SUB-LICENSING\nSub-licenses are not authorized by this license. Any person wishing to make use of the rights that it confers will be directly bound to the authors of the common work.\n\n11. LEGAL FRAMEWORK\nThis license is written with respect to both French law and the Berne Convention for the Protection of Literary and Artistic Works.\n\nUSER GUIDE\n\n- How to use the Free Art License?\nTo benefit from the Free Art License, you only need to mention the following elements on your work:\n[Name of the author, title, date of the work. When applicable, names of authors of the common work and, if possible, where to find the originals].\nCopyleft: This is a free work, you can copy, distribute, and modify it under the terms of the Free Art License http://artlibre.org/licence/lal/en/\n\n- Why to use the Free Art License?\n1.To give the greatest number of people access to your work.\n2.To allow it to be distributed freely.\n3.To allow it to evolve by allowing its copy, distribution, and transformation by others.\n4.So that you benefit from the resources of a work when it is under the Free Art License: to be able to copy, distribute or transform it freely.\n5.But also, because the Free Art License offers a legal framework to disallow any misappropriation. It is forbidden to take hold of your work and bypass the creative process for one's exclusive possession.\n\n- When to use the Free Art License?\nAny time you want to benefit and make others benefit from the right to copy, distribute and transform creative works without any exclusive appropriation, you should use the Free Art License. You can for example use it for scientific, artistic or educational projects.\n\n- What kinds of works can be subject to the Free Art License?\nThe Free Art License can be applied to digital as well as physical works.\nYou can choose to apply the Free Art License on any text, picture, sound, gesture, or whatever sort of stuff on which you have sufficient author's rights.\n\n- Historical background of this license:\nIt is the result of observing, using and creating digital technologies, free software, the Internet and art. It arose from the Copyleft Attitude meetings which took place in Paris in 2000. For the first time, these meetings brought together members of the Free Software community, artists, and members of the art world. The goal was to adapt the principles of Copyleft and free software to all sorts of creations. http://www.artlibre.org\n\nCopyleft Attitude, 2007.\nYou can make reproductions and distribute this license verbatim (without any changes).", + "json": "free-art-1.3.json", + "yaml": "free-art-1.3.yml", + "html": "free-art-1.3.html", + "license": "free-art-1.3.LICENSE" + }, + { + "license_key": "free-fork", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-free-fork", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "University of Washington's Free-Fork License\n\nUniversity of Washington IMAP toolkit\nVersion 2002 of IMAP toolkit\nCopyright 1988-2002 University of Washington\n\nThis University of Washington Distribution (code and documentation) is\nmade available to the open source community as a public service by the\nUniversity of Washington. Contact the University of Washington at\nimap-license@cac.washington.edu for information on other licensing\narrangements (e.g. for use in proprietary applications).\n\nUnder this license, this Distribution may be modified and the original\nversion and modified versions may be copied, distributed, publicly\ndisplayed and performed provided that the following conditions are\nmet:\n\n(1) modified versions are distributed with source code and\ndocumentation and with permission for others to use any code and\ndocumentation (whether in original or modified versions) as granted\nunder this license;\n\n(2) if modified, the source code, documentation, and user run-time\nelements should be clearly labeled by placing an identifier of origin\n(such as a name, initial, or other tag) after the version number;\n\n(3) users, modifiers, distributors, and others coming into possession\nor using the Distribution in original or modified form accept the\nentire risk as to the possession, use, and performance of the\nDistribution;\n\n(4) this copyright management information (software identifier and\nversion number, copyright notice and license) shall be retained in all\nversions of the Distribution;\n\n(5) the University of Washington may make modifications to the\nDistribution that are substantially similar to modified versions of\nthe Distribution, and may make, use, sell, copy, distribute, publicly\ndisplay, and perform such modifications, including making such\nmodifications available under this or other licenses, without\nobligation or restriction;\n\n(6) modifications incorporating code, libraries, and/or documentation\nsubject to any other open source license may be made, and the\nresulting work may be distributed under the terms of such open source\nlicense if required by that open source license, but doing so will not\naffect this Distribution, other modifications made under this license\nor modifications made under other University of Washington licensing\narrangements;\n\n(7) no permission is granted to distribute, publicly display, or\npublicly perform modifications to the Distribution made using\nproprietary materials that cannot be released in source format under\nconditions of this license;\n\n(8) the name of the University of Washington may not be used in\nadvertising or publicity pertaining to Distribution of the software\nwithout specific, prior written permission.\n\nThis software is made available \"as is\", and\n\nTHE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR\nIMPLIED, WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION\nALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE, AND IN NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE\nFOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, TORT (INCLUDING NEGLIGENCE) OR STRICT LIABILITY,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\nSOFTWARE.", + "json": "free-fork.json", + "yaml": "free-fork.yml", + "html": "free-fork.html", + "license": "free-fork.LICENSE" + }, + { + "license_key": "free-unknown", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-free-unknown", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "", + "json": "free-unknown.json", + "yaml": "free-unknown.yml", + "html": "free-unknown.html", + "license": "free-unknown.LICENSE" + }, + { + "license_key": "freebsd-boot", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-freebsd-boot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms are freely\npermitted provided that the above copyright notice and this\nparagraph and the following disclaimer are duplicated in all\nsuch forms.\n\nThis software is provided \"AS IS\" and without any express or\nimplied warranties, including, without limitation, the implied\nwarranties of merchantability and fitness for a particular\npurpose.", + "json": "freebsd-boot.json", + "yaml": "freebsd-boot.yml", + "html": "freebsd-boot.html", + "license": "freebsd-boot.LICENSE" + }, + { + "license_key": "freebsd-doc", + "category": "Permissive", + "spdx_license_key": "FreeBSD-DOC", + "other_spdx_license_keys": [ + "LicenseRef-scancode-freebsd-doc" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and 'compiled' forms with or without\nmodification, are permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer as the first lines of this\n file unmodified.\n\n Redistributions in compiled form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\nTHIS DOCUMENTATION IS PROVIDED BY THE PROJECT \"AS IS\" AND ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT\nSHALL THE PROJECT BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\nOF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS DOCUMENTATION, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE", + "json": "freebsd-doc.json", + "yaml": "freebsd-doc.yml", + "html": "freebsd-doc.html", + "license": "freebsd-doc.LICENSE" + }, + { + "license_key": "freebsd-first", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-freebsd-first", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\n notice(s), this list of conditions and the following disclaimer as\n the first lines of this file unmodified other than the possible\n addition of one or more copyright notices.\n2. Redistributions in binary form must reproduce the above copyright\n notice(s), this list of conditions and the following disclaimer in\n the documentation and/or other materials provided with the\n distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "freebsd-first.json", + "yaml": "freebsd-first.yml", + "html": "freebsd-first.html", + "license": "freebsd-first.LICENSE" + }, + { + "license_key": "freeimage-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "FreeImage", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "FreeImage Public License - Version 1.0\n---------------------------------------------\n\n1. Definitions.\n\n1.1. \"Contributor\" means each entity that creates or contributes to the creation of Modifications.\n\n1.2. \"Contributor Version\" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor.\n\n1.3. \"Covered Code\" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof.\n\n1.4. \"Electronic Distribution Mechanism\" means a mechanism generally accepted in the software development community for the electronic transfer of data.\n\n1.5. \"Executable\" means Covered Code in any form other than Source Code.\n\n1.6. \"Initial Developer\" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A.\n\n1.7. \"Larger Work\" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License.\n\n1.8. \"License\" means this document.\n\n1.9. \"Modifications\" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a\nModification is:\n\nA. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications.\n\nB. Any new file that contains any part of the Original Code or previous Modifications.\n\n1.10. \"Original Code\" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License.\n\n1.11. \"Source Code\" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control\ncompilation and installation of an Executable, or a list of source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge.\n\n1.12. \"You\" means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, \"You\" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, \"control\" means (a) the power, direct or indirect, to cause the\ndirection or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity.\n\n2. Source Code License.\n\n2.1. The Initial Developer Grant.\nThe Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims:\n\n(a) to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, or as part of a Larger Work; and\n\n(b) under patents now or hereafter owned or controlled by Initial Developer, to make, have made, use and sell (\"Utilize\") the Original Code (or portions thereof), but solely to the extent that\nany such patent is reasonably necessary to enable You to Utilize the Original Code (or portions thereof) and not to any greater extent that may be necessary to Utilize further Modifications or\ncombinations.\n\n2.2. Contributor Grant.\nEach Contributor hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims:\n\n(a) to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code or as part of a Larger Work; and\n\n(b) under patents now or hereafter owned or controlled by Contributor, to Utilize the Contributor Version (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Contributor Version (or portions thereof), and not to any greater extent that\nmay be necessary to Utilize further Modifications or combinations.\n\n3. Distribution Obligations.\n\n3.1. Application of License.\nThe Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or\nrestricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5.\n\n3.2. Availability of Source Code.\nAny Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\n3.3. Description of Modifications.\nYou must cause all Covered Code to which you contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters\n\n(a) Third Party Claims.\nIf You have knowledge that a party claims an intellectual property right in particular functionality or code (or its utilization under this License), you must include a text file with the source code distribution titled \"LEGAL\" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after You make Your Modification available as described in Section 3.2, You shall promptly modify the LEGAL file in all copies You make\navailable thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained.\n\n(b) Contributor APIs.\nIf Your Modification is an application programming interface and You own or control patents which are reasonably necessary to implement that API, you must also include this information in the LEGAL file.\n\n3.5. Required Notices.\nYou must duplicate the notice in Exhibit A in each file of the Source Code, and this License in any documentation for the Source Code, where You describe recipients' rights relating to Covered Code. If You created one or more Modification(s), You may add your name as a Contributor to the notice described in Exhibit A. If it is not possible to put such notice in a particular Source Code file due to its\nstructure, then you must include such notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or\nliability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of\nwarranty, support, indemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions.\nYou may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You\ndescribe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code under a license of Your choice, which may contain terms different from this License,\nprovided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer.\n\n3.7. Larger Works.\nYou may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n\n5. Application of this License.\n\nThis License applies to code to which the Initial Developer has attached the notice in Exhibit A, and to related Covered Code.\n\n6. Versions of the License.\n\n6.1. New Versions.\nFloris van den Berg may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number.\n\n6.2. Effect of New Versions.\nOnce Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Floris van den Berg\nNo one other than Floris van den Berg has the right to modify the terms applicable to Covered Code created under this License.\n\n6.3. Derivative Works.\nIf you create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), you must (a) rename Your license so that the phrases \"FreeImage\", `FreeImage Public License\", \"FIPL\", or any confusingly similar phrase do not appear anywhere in your license and (b) otherwise make it clear that your version of the license contains terms which differ from the FreeImage Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.)\n\n7. DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n\nThis License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.\n\n9. LIMITATION OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE\nEXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS.\n\nThe Covered Code is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n\n11. MISCELLANEOUS.\n\nThis License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by Dutch law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in, the The Netherlands: (a) unless otherwise agreed in writing, all disputes relating to this License (excepting any dispute relating to intellectual property rights) shall be subject to final and binding arbitration, with the losing party paying all costs of arbitration; (b) any arbitration relating to this Agreement shall be held in Almelo, The Netherlands; and (c) any litigation relating to this Agreement shall be subject to the jurisdiction of the court of Almelo, The Netherlands with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n12. RESPONSIBILITY FOR CLAIMS.\n\nExcept in cases where another Contributor has failed to comply with Section 3.4, You are responsible for damages arising, directly or indirectly, out of Your utilization of rights under this License, based\non the number of copies of Covered Code you made available, the revenues you received from utilizing such rights, and other relevant factors. You agree to work with affected parties to distribute\nresponsibility on an equitable basis.\n\nEXHIBIT A.\n\n\"The contents of this file are subject to the FreeImage Public License Version 1.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://home.wxs.nl/~flvdberg/freeimage-license.txt\n\nSoftware distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.", + "json": "freeimage-1.0.json", + "yaml": "freeimage-1.0.yml", + "html": "freeimage-1.0.html", + "license": "freeimage-1.0.LICENSE" + }, + { + "license_key": "freemarker", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-freemarker", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "FreeMarker License\n\nFreeMarker 1.x was released under the LGPL license. Later, by community\nconsensus, we have switched over to a BSD-style license. As of FreeMarker\n2.2pre1, the original author, Benjamin Geer, has relinquished the copyright in\nbehalf of Visigoth Software Society. The current copyright holder is the\nVisigoth Software Society.\n\n------------------------------------------------------------------------------\nCopyright (c) 2003 The Visigoth Software Society. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n2. The end-user documentation included with the redistribution, if any, must\n include the following acknowlegement:\n \"This product includes software developed by the \n Visigoth Software Society (http://www.visigoths.org/).\"\n Alternately, this acknowlegement may appear in the software itself, if and\n wherever such third-party acknowlegements normally appear.\n\n3. Neither the name \"FreeMarker\", \"Visigoth\", nor any of the names of the\n project contributors may be used to endorse or promote products derived\n from this software without prior written permission. For written\n permission, please contact visigoths@visigoths.org.\n\n4. Products derived from this software may not be called \"FreeMarker\" or\n \"Visigoth\" nor may \"FreeMarker\" or \"Visigoth\" appear in their names\n without prior written permission of the Visigoth Software Society.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\nVISIGOTH SOFTWARE SOCIETY OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY\nOF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n------------------------------------------------------------------------------\n\nThis software consists of voluntary contributions made by many individuals on\nbehalf of the Visigoth Software Society. For more information on the Visigoth\nSoftware Society, please see http://www.visigoths.org/\n\n------------------------------------------------------------------------------\n\nFREEMARKER SUBCOMPONENTS UNDER DIFFERENT LICENSE:\n\nFreeMarker includes a number of subcomponents that are licensed by the Apache\nSoftware Foundation under the Apache License, Version 2.0. Your use of these\nsubcomponents is subject to the terms and conditions of the Apache License,\nVersion 2.0. You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n \nThe subcomponents under this licence are the following files, which are\nincluded both in freemarker.jar and in the source code:\n \n freemarker/ext/jsp/web-app_2_2.dtd\n freemarker/ext/jsp/web-app_2_3.dtd\n freemarker/ext/jsp/web-app_2_4.xsd\n freemarker/ext/jsp/web-app_2_5.xsd\n freemarker/ext/jsp/web-jsptaglibrary_1_1.dtd\n freemarker/ext/jsp/web-jsptaglibrary_1_2.dtd\n freemarker/ext/jsp/web-jsptaglibrary_2_0.xsd\n freemarker/ext/jsp/web-jsptaglibrary_2_1.xsd", + "json": "freemarker.json", + "yaml": "freemarker.yml", + "html": "freemarker.html", + "license": "freemarker.LICENSE" + }, + { + "license_key": "freertos-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "freertos-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "EXCEPTION TEXT:\n\nClause 1\nLinking FreeRTOS statically or dynamically with other modules is making a combined work based on FreeRTOS. Thus, the terms and conditions of the GNU General Public License cover the whole combination.\n\nAs a special exception, the copyright holder of FreeRTOS gives you permission to link FreeRTOS with independent modules that communicate with FreeRTOS solely through the FreeRTOS API interface, regardless of the license terms of these independent modules, and to copy and distribute the resulting combined work under terms of your choice, provided that\n1. Every copy of the combined work is accompanied by a written statement that details to the recipient the version of FreeRTOS used and an offer by yourself to provide the FreeRTOS source code (including any modifications you may have made) should the recipient request it.\n2. The combined work is not itself an RTOS, scheduler, kernel or related product.\n3. The independent modules add significant and primary functionality to FreeRTOS and do not merely extend the existing functionality already present in FreeRTOS.\n\nClause 2\nFreeRTOS may not be used for any competitive or comparative purpose, including the publication of any form of run time or compile time metric, without the express permission of Real Time Engineers Ltd. (this is the norm within the industry and is intended to ensure information accuracy).", + "json": "freertos-exception-2.0.json", + "yaml": "freertos-exception-2.0.yml", + "html": "freertos-exception-2.0.html", + "license": "freertos-exception-2.0.LICENSE" + }, + { + "license_key": "freetts", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-freetts", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Portions Copyright 2001-2004 Sun Microsystems, Inc. \nPortions Copyright 1999-2001 Language Technologies Institute,\nCarnegie Mellon University. \nAll Rights Reserved. Use is subject to license terms.\n\nPermission is hereby granted, free of charge, to use and distribute\nthis software and its documentation without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of this work, and to\npermit persons to whom this work is furnished to do so, subject to\nthe following conditions:\n\n 1. The code must retain the above copyright notice, this list of\n conditions and the following disclaimer.\n 2. Any modifications must be clearly marked as such.\n 3. Original authors' names are not deleted.\n 4. The authors' names are not used to endorse or promote products\n derived from this software without specific prior written\n permission.\n\nSUN MICROSYSTEMS, INC., CARNEGIE MELLON UNIVERSITY AND THE\nCONTRIBUTORS TO THIS WORK DISCLAIM ALL WARRANTIES WITH REGARD TO THIS\nSOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS, IN NO EVENT SHALL SUN MICROSYSTEMS, INC., CARNEGIE MELLON\nUNIVERSITY NOR THE CONTRIBUTORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF\nUSE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.", + "json": "freetts.json", + "yaml": "freetts.yml", + "html": "freetts.html", + "license": "freetts.LICENSE" + }, + { + "license_key": "freetype", + "category": "Permissive", + "spdx_license_key": "FTL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The FreeType Project LICENSE\n----------------------------\n2006-Jan-27\n\nCopyright 1996-2002, 2006 by\nDavid Turner, Robert Wilhelm, and Werner Lemberg\n\nIntroduction\n============\n\n The FreeType Project is distributed in several archive packages;\n some of them may contain, in addition to the FreeType font engine,\n various tools and contributions which rely on, or relate to, the\n FreeType Project.\n\n This license applies to all files found in such packages, and\n which do not fall under their own explicit license. The license\n affects thus the FreeType font engine, the test programs,\n documentation and makefiles, at the very least.\n\n This license was inspired by the BSD, Artistic, and IJG\n (Independent JPEG Group) licenses, which all encourage inclusion\n and use of free software in commercial and freeware products\n alike. As a consequence, its main points are that:\n\n o We don't promise that this software works. However, we will be\n interested in any kind of bug reports. (`as is' distribution)\n\n o You can use this software for whatever you want, in parts or\n full form, without having to pay us. (`royalty-free' usage)\n\n o You may not pretend that you wrote this software. If you use\n it, or only parts of it, in a program, you must acknowledge\n somewhere in your documentation that you have used the\n FreeType code. (`credits')\n\n We specifically permit and encourage the inclusion of this\n software, with or without modifications, in commercial products.\n We disclaim all warranties covering The FreeType Project and\n assume no liability related to The FreeType Project.\n\n Finally, many people asked us for a preferred form for a\n credit/disclaimer to use in compliance with this license. We thus\n encourage you to use the following text:\n\n \"\"\" \n Portions of this software are copyright \u00a9 The FreeType\n Project (www.freetype.org). All rights reserved.\n \"\"\"\n\n Please replace with the value from the FreeType version you\n actually use.\n\n\nLegal Terms\n===========\n\n0. Definitions\n--------------\n\n Throughout this license, the terms `package', `FreeType Project',\n and `FreeType archive' refer to the set of files originally\n distributed by the authors (David Turner, Robert Wilhelm, and\n Werner Lemberg) as the `FreeType Project', be they named as alpha,\n beta or final release.\n\n `You' refers to the licensee, or person using the project, where\n `using' is a generic term including compiling the project's source\n code as well as linking it to form a `program' or `executable'.\n This program is referred to as `a program using the FreeType\n engine'.\n\n This license applies to all files distributed in the original\n FreeType Project, including all source code, binaries and\n documentation, unless otherwise stated in the file in its\n original, unmodified form as distributed in the original archive.\n If you are unsure whether or not a particular file is covered by\n this license, you must contact us to verify this.\n\n The FreeType Project is copyright (C) 1996-2000 by David Turner,\n Robert Wilhelm, and Werner Lemberg. All rights reserved except as\n specified below.\n\n1. No Warranty\n--------------\n\n THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY\n KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO\n USE, OF THE FREETYPE PROJECT.\n\n2. Redistribution\n-----------------\n\n This license grants a worldwide, royalty-free, perpetual and\n irrevocable right and license to use, execute, perform, compile,\n display, copy, create derivative works of, distribute and\n sublicense the FreeType Project (in both source and object code\n forms) and derivative works thereof for any purpose; and to\n authorize others to exercise some or all of the rights granted\n herein, subject to the following conditions:\n\n o Redistribution of source code must retain this license file\n (`FTL.TXT') unaltered; any additions, deletions or changes to\n the original files must be clearly indicated in accompanying\n documentation. The copyright notices of the unaltered,\n original files must be preserved in all copies of source\n files.\n\n o Redistribution in binary form must provide a disclaimer that\n states that the software is based in part of the work of the\n FreeType Team, in the distribution documentation. We also\n encourage you to put an URL to the FreeType web page in your\n documentation, though this isn't mandatory.\n\n These conditions apply to any software derived from or based on\n the FreeType Project, not just the unmodified files. If you use\n our work, you must acknowledge us. However, no fee need be paid\n to us.\n\n3. Advertising\n--------------\n\n Neither the FreeType authors and contributors nor you shall use\n the name of the other for commercial, advertising, or promotional\n purposes without specific prior written permission.\n\n We suggest, but do not require, that you use one or more of the\n following phrases to refer to this software in your documentation\n or advertising materials: `FreeType Project', `FreeType Engine',\n `FreeType library', or `FreeType Distribution'.\n\n As you have not signed this license, you are not required to\n accept it. However, as the FreeType Project is copyrighted\n material, only this license, or another one contracted with the\n authors, grants you the right to use, distribute, and modify it.\n Therefore, by using, distributing, or modifying the FreeType\n Project, you indicate that you understand and accept all the terms\n of this license.\n\n4. Contacts\n-----------\n\n There are two mailing lists related to FreeType:\n\n o freetype@nongnu.org\n\n Discusses general use and applications of FreeType, as well as\n future and wanted additions to the library and distribution.\n If you are looking for support, start in this list if you\n haven't found anything to help you in the documentation.\n\n o freetype-devel@nongnu.org\n\n Discusses bugs, as well as engine internals, design issues,\n specific licenses, porting, etc.\n\n Our home page can be found at\n\n http://www.freetype.org\n\n--- end of FTL.TXT ---", + "json": "freetype.json", + "yaml": "freetype.yml", + "html": "freetype.html", + "license": "freetype.LICENSE" + }, + { + "license_key": "freetype-patent", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-freetype-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Additionally, subject to the terms and conditions of the */\nFreeType Project License, each contributor to the Work hereby grants \nto any individual or legal entity exercising permissions granted by \nthe FreeType Project License and this section (hereafter, \"You\" or \n\"Your\") a perpetual, worldwide, non-exclusive, no-charge, \nroyalty-free, irrevocable (except as stated in this section) patent \nlicense to make, have made, use, offer to sell, sell, import, and \notherwise transfer the Work, where such license applies only to those\npatent claims licensable by such contributor that are necessarily \ninfringed by their contribution(s) alone or by combination of their \ncontribution(s) with the Work to which such contribution(s) was \nsubmitted. If You institute patent litigation against any entity \n(including a cross-claim or counterclaim in a lawsuit) alleging that \nthe Work or a contribution incorporated within the Work constitutes \ndirect or contributory patent infringement, then any patent licenses \ngranted to You under this License for that Work shall terminate as of\nthe date such litigation is filed.", + "json": "freetype-patent.json", + "yaml": "freetype-patent.yml", + "html": "freetype-patent.html", + "license": "freetype-patent.LICENSE" + }, + { + "license_key": "froala-owdl-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-froala-owdl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "------------------------------------------------------------\nFROALA OPEN WEB DESIGN LICENSE Version 1.0 - 16 October 2017\n------------------------------------------------------------\n\n1. PREAMBLE\nThe goals of the Open Web Design License are to stimulate worldwide development\nof collaborative web design projects and to provide a free and open framework\nin which web design may be shared and improved in partnership with others.\n\nThe Open Web Design License allows the licensed Work to be used, studied,\nmodified and redistributed freely as long as it is not sold by itself. The\nWork, including any derivative works, can be bundled, embedded, redistributed\nand/or sold with any software provided that any reserved names are not used by\nderivative works. The Work and derivatives, however, cannot be released under\nany other type of license.\n\n2. DEFINITIONS\n\"Work\" refers to the set of files released by the Copyright Holder(s) under\nthis license and clearly marked as such. This may include, but is not limited\nto source files, build scripts and documentation.\n\n\"Reserved Name\" refers to any names specified as such after the copyright\nstatement(s).\n\n\"Original Version\" refers to the collection of Work components as distributed\nby the Copyright Holder(s).\n\n\"Modified Version\" or \"Derivative Work\" refers to any derivative made by adding\nto, deleting, or substituting - in part or in whole - any of the components of\nthe Original Version, by changing content, layout, style or by porting the Work\nto a new environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical writer or\nother person who contributed to the Work.\n\n3. PERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthe Work, to use, study, copy, merge, embed, modify, redistribute, and sell\nmodified and unmodified copies of the Work, subject to the following conditions:\n\n a) Neither the Work nor any of its individual components, in Original or\n Modified Versions, may be (i) sold by itself; (ii) used for website or app\n generators; (iii) used to create templates, themes, and plugins for sale.\n\n b) Original or Modified Versions of the Work may be bundled, redistributed\n and/or sold with any software, provided that each copy contains the above\n copyright notice and this license. These can be included either as\n stand-alone text files, human-readable headers or in the appropriate\n machine-readable metadata field within text or binary files as long as those\n files can be easily viewed by the user.\n\n c) No Modified Version of the Work may use the Reserved Name(s) unless\n explicit written permission is granted by the corresponding Copyright Holder.\n This restriction only applies to the primary product name as presented to the\n users.\n\n d) The name(s) of the Copyright holder(s) or the Author(s) of the Work shall\n not be used to promote, endorse or advertise any Modified Version.\n\n e) The Work, modified or unmodified, in part or in whole, must be distributed\n entirely under this license, and must not be distributed under any other\n license.\n\nConditions can be changed only with explicit written permission of the\nCopyright Holder(s).\n\n4. TERMINATION\nThis license becomes null and void if any of the above conditions are not met.\n\n5. DISCLAIMER\nTHE WORK IS PROVIDED ''AS IS'', AND ANY EXPRESS OR IMPLIED WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\nOF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\nIN ANY WAY OUT OF THE USE OR THE INABILITY TO USE THE WORK, EVEN IF ADVISED OF\nTHE POSSIBILITY OF SUCH DAMAGE.", + "json": "froala-owdl-1.0.json", + "yaml": "froala-owdl-1.0.yml", + "html": "froala-owdl-1.0.html", + "license": "froala-owdl-1.0.LICENSE" + }, + { + "license_key": "frontier-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-frontier-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "THE FRONTIER ARTISTIC LICENSE Version 1.0\nCopyright \u00a9 (c) 1999 by Samuel Reynolds.\nDerived from the \"Artistic License\" at \"OpenSource.org\".\nSubmitted to OpenSource.org for Open Source Initiative certification.\n\nPREAMBLE\n\nThe intent of this document is to state the conditions under which a\nPackage may be copied, such that the Copyright Holder maintains some\nsemblance of artistic control over the development of the package,\nwhile giving the users of the package the right to use and distribute\nthe Package in a more-or-less customary fashion, plus the right to\nmake reasonable modifications.\n\nDEFINITIONS\n\no \"Package\" refers to the script, suite, file, or collection of scripts, \n suites, and/or files distributed by the Copyright Holder, and to \n derivatives of that Package created through textual modification.\n\no \"Standard Version\" refers to such a Package if it has not been \n modified, or has been modified in accordance with the wishes of the \n Copyright Holder.\n\no \"Copyright Holder\" is whoever is named in the copyright statement or \n statements for the package.\n\no \"You\" is you, if you're thinking about copying or distributing this \n Package.\n\no \"Reasonable copying fee\" is whatever you can justify on the basis of \n media cost, duplication charges, time of people involved, and so on. \n (You will not be required to justify it to the Copyright Holder, but \n only to the computing community at large as a market that must bear the \n fee.)\n\no \"Freely Available\" means that no fee is charged for the item itself, \n though there may be fees involved in handling the item. It also means \n that recipients of the item may redistribute it under the same \n conditions they received it.\n\nTERMS\n\n1. You may make and give away verbatim copies of the source form of the \n Standard Version of this Package without restriction, provided that you \n duplicate all of the original copyright notices and associated disclaimers.\n\n2. You may apply bug fixes, portability fixes, and other modifications \n derived from the Public Domain or from the Copyright Holder. A Package \n modified in such a way shall still be considered the Standard Version.\n\n3. You may otherwise modify your copy of this Package in any way, provided \n that you insert a prominent notice in each changed script, suite, or file \n stating how and when you changed that script, suite, or file, and provided \n that you do at least ONE of the following:\n\n a) Use the modified Package only within your corporation or \n organization, or retain the modified Package solely for personal use.\n \n b) Place your modifications in the Public Domain or otherwise make them \n Freely Available, such as by posting said modifications to Usenet or an \n equivalent medium, or placing the modifications on a major archive site \n such as ftp.uu.net, or by allowing the Copyright Holder to include your \n modifications in the Standard Version of the Package.\n \n c) Rename any non-standard executables so the names do not conflict \n with standard executables, which must also be provided, and provide a \n separate manual page (or equivalent) for each non-standard executable \n that clearly documents how it differs from the Standard Version.\n \n d) Make other distribution arrangements with the Copyright Holder.\n\n4. You may distribute the programs of this Package in object code or \n executable form, provided that you do at least ONE of the following:\n\n a) Distribute a Standard Version of the executables and library files, \n together with instructions (in the manual page or equivalent) on where \n to get the Standard Version.\n \n b) Accompany the distribution with the machine-readable source of the \n Package with your modifications.\n \n c) Accompany any non-standard executables with their corresponding \n Standard Version executables, give the non-standard executables \n non-standard names, and clearly document the differences in manual \n pages (or equivalent), together with instructions on where to get the \n Standard Version.\n \n d) Make other distribution arrangements with the Copyright Holder.\n \n5. You may charge a reasonable copying fee for any distribution of this \n Package. You may charge any fee you choose for support of this Package. \n You may not charge a fee for this Package itself. However, you may \n distribute this Package in aggregate with other (possibly commercial) \n programs as part of a larger (possibly commercial) software distribution \n provided that you do not advertise this Package as a product of your own.\n \n6. The scripts and library files supplied as input to or produced as \n output from the programs of this Package do not automatically fall under \n the copyright of this Package, but belong to whomever generated them, and \n may be sold commercially, and may be aggregated with this Package.\n \n7. Scripts, suites, or programs supplied by you that depend on or \n otherwise make use of this Package shall not be considered part of this \n Package.\n \n8. The name of the Copyright Holder may not be used to endorse or promote \n products derived from this software without specific prior written \n permission.\n\n9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED \n WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF \n MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.", + "json": "frontier-1.0.json", + "yaml": "frontier-1.0.yml", + "html": "frontier-1.0.html", + "license": "frontier-1.0.LICENSE" + }, + { + "license_key": "fsf-ap", + "category": "Permissive", + "spdx_license_key": "FSFAP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copying and distribution of this file, with or without modification, are\npermitted in any medium without royalty provided the copyright notice\nand this notice are preserved. This file is offered as-is, without any\nwarranty.", + "json": "fsf-ap.json", + "yaml": "fsf-ap.yml", + "html": "fsf-ap.html", + "license": "fsf-ap.LICENSE" + }, + { + "license_key": "fsf-free", + "category": "Public Domain", + "spdx_license_key": "FSFUL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This configure script is free software; the Free Software Foundation gives\nunlimited permission to copy, distribute and modify it.", + "json": "fsf-free.json", + "yaml": "fsf-free.yml", + "html": "fsf-free.html", + "license": "fsf-free.LICENSE" + }, + { + "license_key": "fsf-notice", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fsf-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is free software: you are free to change and redistribute it\nThere is NO WARRANTY, to the extent permitted by law.", + "json": "fsf-notice.json", + "yaml": "fsf-notice.yml", + "html": "fsf-notice.html", + "license": "fsf-notice.LICENSE" + }, + { + "license_key": "fsf-unlimited", + "category": "Permissive", + "spdx_license_key": "FSFULLR", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This file is free software; the Free Software Foundation gives\nunlimited permission to copy and/or distribute it, with or without\nmodifications, as long as this notice is preserved.", + "json": "fsf-unlimited.json", + "yaml": "fsf-unlimited.yml", + "html": "fsf-unlimited.html", + "license": "fsf-unlimited.LICENSE" + }, + { + "license_key": "fsf-unlimited-no-warranty", + "category": "Permissive", + "spdx_license_key": "FSFULLRWD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This file is free software; the Free Software Foundation gives\nunlimited permission to copy and/or distribute it, with or without\nmodifications, as long as this notice is preserved.\n\nThis program is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY, to the extent permitted by law; without even the\nimplied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\nPURPOSE.", + "json": "fsf-unlimited-no-warranty.json", + "yaml": "fsf-unlimited-no-warranty.yml", + "html": "fsf-unlimited-no-warranty.html", + "license": "fsf-unlimited-no-warranty.LICENSE" + }, + { + "license_key": "ftdi", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ftdi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "THIS SOFTWARE IS PROVIDED BY FUTURE TECHNOLOGY DEVICES INTERNATIONAL\nLIMITED \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT\nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\nFOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL FUTURE\nTECHNOLOGY DEVICES INTERNATIONAL LIMITED BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES LOSS OF USE, DATA, OR PROFITS OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\nIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\n\nFTDI DRIVERS MAY BE USED ONLY IN CONJUNCTION WITH PRODUCTS BASED ON\nFTDI PARTS.\n\nFTDI DRIVERS MAY BE DISTRIBUTED IN ANY FORM AS LONG AS LICENSE\nINFORMATION IS NOT MODIFIED.\n\nIF A CUSTOM VENDOR ID AND/OR PRODUCT ID OR DESCRIPTION STRING ARE\nUSED, IT IS THE RESPONSIBILITY OF THE PRODUCT MANUFACTURER TO MAINTAIN\nANY CHANGES AND SUBSEQUENT WHQL RE-CERTIFICATION AS A RESULT OF MAKING\nTHESE CHANGES.", + "json": "ftdi.json", + "yaml": "ftdi.yml", + "html": "ftdi.html", + "license": "ftdi.LICENSE" + }, + { + "license_key": "ftpbean", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ftpbean", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "FtpBean Version 1.4.2\nCopyright 1999 Calvin Tai\nE-mail: citidancer@hongkong.com\nURL: http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean\n\nCOPYRIGHT NOTICE\nCopyright 1999 Calvin Tai All Rights Reserved.\n\nFtpBean may be modified and used in any application free of charge by\nanyone so long as this copyright notice and the comments above remain\nintact. By using this code you agree to indemnify Calvin Tai from any\nliability that might arise from it's use.\n\nSelling the code for this java bean alone is expressly forbidden.\nIn other words, please ask first before you try and make money off of\nthis java bean as a standalone application.\n\nObtain permission before redistributing this software over the Internet or\nin any other medium. In all cases copyright and header must remain intact.", + "json": "ftpbean.json", + "yaml": "ftpbean.yml", + "html": "ftpbean.html", + "license": "ftpbean.LICENSE" + }, + { + "license_key": "gareth-mccaughan", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gareth-mccaughan", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This file may be distributed and used freely provided:\n1. You do not distribute any version that lacks this\n copyright notice (exactly as it appears here, extending\n from the start to the end of the C-language comment\n containing these words)); and,\n2. If you distribute any modified version, its source\n contains a clear description of the ways in which\n it differs from the original version, and a clear\n indication that the changes are not mine.\nThere is no restriction on your permission to use and\ndistribute object code or executable code derived from\nthis.\n\nThe original version of this file (or perhaps a later\nversion by the original author) may or may not be\navailable at http://web.ukonline.co.uk/g.mccaughan/g/software.html .\n\nShare and enjoy! -- g", + "json": "gareth-mccaughan.json", + "yaml": "gareth-mccaughan.yml", + "html": "gareth-mccaughan.html", + "license": "gareth-mccaughan.LICENSE" + }, + { + "license_key": "gary-s-brown", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gary-s-brown", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You may use this program, or code or tables extracted from it, as desired without restriction", + "json": "gary-s-brown.json", + "yaml": "gary-s-brown.yml", + "html": "gary-s-brown.html", + "license": "gary-s-brown.LICENSE" + }, + { + "license_key": "gcc-compiler-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-gcc-compiler-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, if you include this header file into source\nfiles compiled by GCC, this header file does not by itself cause\nthe resulting executable to be covered by the GNU General Public\nLicense. This exception does not however invalidate any other\nreasons why the executable file might be covered by the GNU General\nPublic License.", + "json": "gcc-compiler-exception-2.0.json", + "yaml": "gcc-compiler-exception-2.0.yml", + "html": "gcc-compiler-exception-2.0.html", + "license": "gcc-compiler-exception-2.0.LICENSE" + }, + { + "license_key": "gcc-exception-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-exception-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "GCC RUNTIME LIBRARY EXCEPTION Version 3, 27 January 2009\n\nCopyright \u00a9 2009 Free Software Foundation, Inc. \n\nEveryone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nThis GCC Runtime Library Exception (\"Exception\") is an additional permission under section 7 of the GNU General Public License, version 3 (\"GPLv3\"). It applies to a given file (the \"Runtime Library\") that bears a notice placed by the copyright holder of the file stating that the file is governed by GPLv3 along with this Exception.\n\nWhen you use GCC to compile a program, GCC may combine portions of certain GCC header files and runtime libraries with the compiled program. The purpose of this Exception is to allow compilation of non-GPL (including proprietary) programs to use, in this way, the header files and runtime libraries covered by this Exception.\n0. Definitions.\n\nA file is an \"Independent Module\" if it either requires the Runtime Library for execution after a Compilation Process, or makes use of an interface provided by the Runtime Library, but is not otherwise based on the Runtime Library.\n\n\"GCC\" means a version of the GNU Compiler Collection, with or without modifications, governed by version 3 (or a specified later version) of the GNU General Public License (GPL) with the option of using any subsequent versions published by the FSF.\n\n\"GPL-compatible Software\" is software whose conditions of propagation, modification and use would permit combination with GCC in accord with the license of GCC.\n\n\"Target Code\" refers to output from any compiler for a real or virtual target processor architecture, in executable form or suitable for input to an assembler, loader, linker and/or execution phase. Notwithstanding that, Target Code does not include data in any format that is used as a compiler intermediate representation, or used for producing a compiler intermediate representation.\n\nThe \"Compilation Process\" transforms code entirely represented in a high-level, non-intermediate language into Target Code. Thus, for example, use of source code generators and preprocessors need not be considered part of the Compilation Process, since the Compilation Process can be understood as starting with the output of the generators or preprocessors.\n\nA Compilation Process is \"Eligible\" if it is done using GCC, alone or with other GPL-compatible software, or if it is done without using any work based on GCC. For example, using non-GPL-compatible Software to optimize any GCC intermediate representations would not qualify as an Eligible Compilation Process.\n1. Grant of Additional Permission.\n\nYou have permission to propagate a work of Target Code formed by combining the Runtime Library with Independent Modules, even if such propagation would otherwise violate the terms of GPLv3, provided that all Target Code was generated by Eligible Compilation Processes. You may then convey such a combination under terms of your choice, consistent with the licensing of the Independent Modules.\n2. No Weakening of GCC Copyleft.\n\nThe availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of GCC.", + "json": "gcc-exception-3.0.json", + "yaml": "gcc-exception-3.0.yml", + "html": "gcc-exception-3.0.html", + "license": "gcc-exception-3.0.LICENSE" + }, + { + "license_key": "gcc-exception-3.1", + "category": "Copyleft Limited", + "spdx_license_key": "GCC-exception-3.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "GCC RUNTIME LIBRARY EXCEPTION\n\nVersion 3.1, 31 March 2009\n\nCopyright (C) 2009 Free Software Foundation, Inc. \n\nEveryone is permitted to copy and distribute verbatim copies of this\nlicense document, but changing it is not allowed.\n\nThis GCC Runtime Library Exception (\"Exception\") is an additional\npermission under section 7 of the GNU General Public License, version\n3 (\"GPLv3\"). It applies to a given file (the \"Runtime Library\") that\nbears a notice placed by the copyright holder of the file stating that\nthe file is governed by GPLv3 along with this Exception.\n\nWhen you use GCC to compile a program, GCC may combine portions of\ncertain GCC header files and runtime libraries with the compiled\nprogram. The purpose of this Exception is to allow compilation of\nnon-GPL (including proprietary) programs to use, in this way, the\nheader files and runtime libraries covered by this Exception.\n\n0. Definitions.\n\nA file is an \"Independent Module\" if it either requires the Runtime\nLibrary for execution after a Compilation Process, or makes use of an\ninterface provided by the Runtime Library, but is not otherwise based\non the Runtime Library.\n\n\"GCC\" means a version of the GNU Compiler Collection, with or without\nmodifications, governed by version 3 (or a specified later version) of\nthe GNU General Public License (GPL) with the option of using any\nsubsequent versions published by the FSF.\n\n\"GPL-compatible Software\" is software whose conditions of propagation,\nmodification and use would permit combination with GCC in accord with\nthe license of GCC.\n\n\"Target Code\" refers to output from any compiler for a real or virtual\ntarget processor architecture, in executable form or suitable for\ninput to an assembler, loader, linker and/or execution\nphase. Notwithstanding that, Target Code does not include data in any\nformat that is used as a compiler intermediate representation, or used\nfor producing a compiler intermediate representation.\n\nThe \"Compilation Process\" transforms code entirely represented in\nnon-intermediate languages designed for human-written code, and/or in\nJava Virtual Machine byte code, into Target Code. Thus, for example,\nuse of source code generators and preprocessors need not be considered\npart of the Compilation Process, since the Compilation Process can be\nunderstood as starting with the output of the generators or\npreprocessors.\n\nA Compilation Process is \"Eligible\" if it is done using GCC, alone or\nwith other GPL-compatible software, or if it is done without using any\nwork based on GCC. For example, using non-GPL-compatible Software to\noptimize any GCC intermediate representations would not qualify as an\nEligible Compilation Process.\n\n1. Grant of Additional Permission.\n\nYou have permission to propagate a work of Target Code formed by\ncombining the Runtime Library with Independent Modules, even if such\npropagation would otherwise violate the terms of GPLv3, provided that\nall Target Code was generated by Eligible Compilation Processes. You\nmay then convey such a combination under terms of your choice,\nconsistent with the licensing of the Independent Modules.\n\n2. No Weakening of GCC Copyleft.\n\nThe availability of this Exception does not imply any general\npresumption that third-party software is unaffected by the copyleft\nrequirements of the license of GCC.", + "json": "gcc-exception-3.1.json", + "yaml": "gcc-exception-3.1.yml", + "html": "gcc-exception-3.1.html", + "license": "gcc-exception-3.1.LICENSE" + }, + { + "license_key": "gcc-linking-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "GCC-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "GCC Linking Exception\nIn addition to the permissions in the GNU General Public License, the Free\nSoftware Foundation gives you unlimited permission to link the compiled version\nof this file into combinations with other programs, and to distribute those\ncombinations without any restriction coming from the use of this file. \n(The General Public License restrictions do apply in other respects; for\nexample, they cover modification of the file, and distribution when not linked\ninto a combined executable.", + "json": "gcc-linking-exception-2.0.json", + "yaml": "gcc-linking-exception-2.0.yml", + "html": "gcc-linking-exception-2.0.html", + "license": "gcc-linking-exception-2.0.LICENSE" + }, + { + "license_key": "gcel-2022", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-gcel-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "GridGain Community Edition License **\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 10 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"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.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"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.\n\n\"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.\n\n\"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.\n\n\"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.\n\n2. Grant of Copyright License.\n\nSubject 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.\n\n3. Grant of Patent License.\n\nSubject 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.\n\n4. Redistribution.\n\nSubject to Section 10, 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:\n\n You must give any other recipients of the Work or Derivative Works a copy of this License; and\n You must cause any modified files to carry prominent notices stating that You changed the files; and\n 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\n 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.\n\nYou 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.\n\n5. Submission of Contributions.\n\nUnless 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.\n\n6. Trademarks.\n\nThis 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.\n\n7. Disclaimer of Warranty.\n\nUnless 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.\n\n8. Limitation of Liability.\n\nIn 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.\n\n9. Accepting Warranty or Additional Liability.\n\nWhile 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.\n\n10. Commons Clause License Condition.\n\nThe Work is provided to you by the Licensor under this License subject to the following condition:\n\nWithout limiting other conditions in the License, the grant of rights under the License will not include, and the License does not grant to you, the right to Sell the Work or Derivative Works (collectively \u201cSoftware\u201d).\n\nFor purposes of the foregoing, \u201cSell\u201d means practicing any or all of the rights granted to you under the License to provide to third parties, for a fee or other consideration (including without limitation fees for hosting or consulting/ support services related to the Software), a product or service whose value derives, entirely or substantially, from the functionality of the Software. Any license notice or attribution required by the License must also include this Commons Clause License Condition notice.\n\nEND OF TERMS AND CONDITIONS\n\n** The GridGain Community Edition License (\u201cGCEL\u201d) consists of the Apache 2.0 License found at https://www.apache.org/licenses/LICENSE-2.0 (Sections 1-9 of the GCEL), plus the \u201cCommons Clause\u201d License Condition v1.0 found at https://commonsclause.com/ (Section 10 of the GCEL).", + "json": "gcel-2022.json", + "yaml": "gcel-2022.yml", + "html": "gcel-2022.html", + "license": "gcel-2022.LICENSE" + }, + { + "license_key": "gco-v3.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-gco-v3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software and its modifications can be used and distributed for \nresearch purposes only. Publications resulting from use of this code\nmust cite publications according to the rules given above. Only\nOlga Veksler has the right to redistribute this code, unless expressed\npermission is given otherwise. Commercial use of this code, any of \nits parts, or its modifications is not permited. The copyright notices \nmust not be removed in case of any modifications. This Licence \ncommences on the date it is electronically or physically delivered \nto you and continues in effect unless you fail to comply with any of \nthe terms of the License and fail to cure such breach within 30 days \nof becoming aware of the breach, in which case the Licence automatically \nterminates. This Licence is governed by the laws of Canada and all \ndisputes arising from or relating to this Licence must be brought \nin Toronto, Ontario.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "gco-v3.0.json", + "yaml": "gco-v3.0.yml", + "html": "gco-v3.0.html", + "license": "gco-v3.0.LICENSE" + }, + { + "license_key": "gdcl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gdcl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You are free to re-use this as the basis for your own filter development,\nprovided you retain this copyright notice in the source.", + "json": "gdcl.json", + "yaml": "gdcl.yml", + "html": "gdcl.html", + "license": "gdcl.LICENSE" + }, + { + "license_key": "generic-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-generic-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "", + "json": "generic-cla.json", + "yaml": "generic-cla.yml", + "html": "generic-cla.html", + "license": "generic-cla.LICENSE" + }, + { + "license_key": "generic-exception", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-generic-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "", + "json": "generic-exception.json", + "yaml": "generic-exception.yml", + "html": "generic-exception.html", + "license": "generic-exception.LICENSE" + }, + { + "license_key": "generic-export-compliance", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-generic-export-compliance", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "", + "json": "generic-export-compliance.json", + "yaml": "generic-export-compliance.yml", + "html": "generic-export-compliance.html", + "license": "generic-export-compliance.LICENSE" + }, + { + "license_key": "generic-tos", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-generic-tos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "", + "json": "generic-tos.json", + "yaml": "generic-tos.yml", + "html": "generic-tos.html", + "license": "generic-tos.LICENSE" + }, + { + "license_key": "generic-trademark", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-generic-trademark", + "other_spdx_license_keys": [ + "LicenseRef-scancode-trademark-notice" + ], + "is_exception": false, + "is_deprecated": false, + "text": "", + "json": "generic-trademark.json", + "yaml": "generic-trademark.yml", + "html": "generic-trademark.html", + "license": "generic-trademark.LICENSE" + }, + { + "license_key": "genivia-gsoap", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-genivia-gsoap", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Commercial Licensing and Support Contracting\n\nOur software products are developed with great care and passed numerous industry\nevaluations. Our software is used by the US government and military.\n\nReturning customers looking for online payment of invoices, please contact us.\n\nLicensing Options\n\nThere are three licensing options.\n\nStandard Open Source Edition: The open source edition offers basic functionality\nwithout the use of the wsdl2h tool (no WSDL/schemas to code generation), no\nwebserver, no UDDI support, and no sample applications to use as basis for your\nprojects. The limited edition is licensed under the gSOAP public license free of\ncharge for commercial use. The gSOAP public license requires a notice (Exhibit\nB) in the project documentation and in the third-party license list of the\nproduct.\n\nStandard Commercial Edition: The standard edition of the gSOAP toolset for\ncommercial use. This edition is identical to the standard open source edition,\nbut allows the use of the wsdl2h and soapcpp2 tools for commercial code and\ndocument generation. This licens does not have the limitations of the open-\nsource GPL and gSOAP public licenses. The standard commercial edition is\nlicensed with limited warranties.\n\nEnterprise Edition: The enterprise edition of the gSOAP toolset provides the\ngold standard toolset for your enterprise. The enterprise edition is best suited\nfor organizations that require high reliability, security, and extensive support\nfor WSDL, SOAP, XML, and WS-* protocols. Warranties, software maintenance and\nsupport are included.\n\nTo determine the applicable license or to inquire about license and support cost\ninformation please send a request with a project description from your official\ncompany e-mail address to sales@genivia.com.\n\nDownload standard open source edition\n\nResellers\n\nPlease contact sales@genivia.com for pricing of the standard edition with or\nwithout the software support/maintenance option.", + "json": "genivia-gsoap.json", + "yaml": "genivia-gsoap.yml", + "html": "genivia-gsoap.html", + "license": "genivia-gsoap.LICENSE" + }, + { + "license_key": "genode-agpl-3.0-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-genode-agpl-3.0-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": " Linking exception clause\n\n\n The Genode OS Framework (Genode) is licensed under the terms of the\n GNU Affero General Public License version 3 (AGPLv3).\n\n Linking Genode code statically or dynamically with other modules\n is making a combined work based on Genode. Thus, the terms and\n conditions of the AGPLv3 cover the whole combination.\n\n As an \"additional permission\" as defined by Section 7 of the\n AGPLv3, Genode Labs as the copyright holder of Genode gives you\n permission to link Genode source code with \"independent modules\"\n to produce an executable if the independent modules are licensed\n under an \"approved license\", and to copy and distribute the\n resulting executable under terms of your choice, provided that you\n also meet, for each linked independent module, the terms and\n conditions of the license of that module.\n\n An \"approved license\" is a license that is officially approved as\n an Open-Source license by the Open Source Initiative [1], or\n listed as a Free-Software license by the Free Software Foundation\n [2], or explicitly approved by Genode Labs.\n\n An \"independent module\" is a module which is not derived from or\n based on Genode, or merely uses the Genode API as defined in the\n official documentation.\n\n If you modify Genode, you may extend this exception to your\n version of Genode, but you are not obliged to do so. If you do not\n wish to do so, delete this exception statement from your version.\n\n [1] https://opensource.org/licenses\n [2] https://www.gnu.org/licenses/license-list.en.html", + "json": "genode-agpl-3.0-exception.json", + "yaml": "genode-agpl-3.0-exception.yml", + "html": "genode-agpl-3.0-exception.html", + "license": "genode-agpl-3.0-exception.LICENSE" + }, + { + "license_key": "geoff-kuenning-1993", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-geoff-kuenning-1993", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright 1993, Geoff Kuenning, Granada Hills, CA\n All rights reserved.\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All modifications to the source code must be clearly marked as\n such. Binary redistributions based on modified source code\n must be clearly marked as modified versions in the documentation\n and/or other materials provided with the distribution.\n 4. All advertising materials mentioning features or use of this software\n must display the following acknowledgment:\n This product includes software developed by Geoff Kuenning and\n other unpaid contributors.\n 5. The name of Geoff Kuenning may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n\n THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING AND CONTRIBUTORS ``AS\n IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\n FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GEOFF\n KUENNING OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\n ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.", + "json": "geoff-kuenning-1993.json", + "yaml": "geoff-kuenning-1993.yml", + "html": "geoff-kuenning-1993.html", + "license": "geoff-kuenning-1993.LICENSE" + }, + { + "license_key": "geoserver-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-geoserver-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As an exception to the terms of the GPL, you may copy, modify,\npropagate, and distribute a work formed by combining GeoServer with the\nEclipse Libraries, or a work derivative of such a combination, even if\nsuch copying, modification, propagation, or distribution would otherwise\nviolate the terms of the GPL. Nothing in this exception exempts you from\ncomplying with the GPL in all respects for all of the code used other\nthan the Eclipse Libraries. You may include this exception and its grant\nof permissions when you distribute GeoServer. Inclusion of this notice\nwith such a distribution constitutes a grant of such permissions. If\nyou do not wish to grant these permissions, remove this paragraph from\nyour distribution. \"GeoServer\" means the GeoServer software licensed\nunder version 2 or any later version of the GPL, or a work based on such\nsoftware and licensed under the GPL. \"Eclipse Libraries\" means Eclipse\nModeling Framework Project and XML Schema Definition software\ndistributed by the Eclipse Foundation and licensed under the Eclipse\nPublic License Version 1.0 (\"EPL\"), or a work based on such software and\nlicensed under the EPL.", + "json": "geoserver-exception-2.0-plus.json", + "yaml": "geoserver-exception-2.0-plus.yml", + "html": "geoserver-exception-2.0-plus.html", + "license": "geoserver-exception-2.0-plus.LICENSE" + }, + { + "license_key": "gfdl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.1-only", + "other_spdx_license_keys": [ + "GFDL-1.1" + ], + "is_exception": false, + "is_deprecated": false, + "text": " GNU Free Documentation License\n Version 1.1, March 2000\n\n Copyright (C) 2000 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nwritten document \"free\" in the sense of freedom: to assure everyone\nthe effective freedom to copy and redistribute it, with or without\nmodifying it, either commercially or noncommercially. Secondarily,\nthis License preserves for the author and publisher a way to get\ncredit for their work, while not being considered responsible for\nmodifications made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work that contains a\nnotice placed by the copyright holder saying it can be distributed\nunder the terms of this License. The \"Document\", below, refers to any\nsuch manual or work. Any member of the public is a licensee, and is\naddressed as \"you\".\n\nA \"Modified Version\" of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall subject\n(or to related matters) and contains nothing that could fall directly\nwithin that overall subject. (For example, if the Document is in part a\ntextbook of mathematics, a Secondary Section may not explain any\nmathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License.\n\nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, whose contents can be viewed and edited directly and\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup has been designed to thwart or discourage\nsubsequent modification by readers is not Transparent. A copy that is\nnot \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML designed for human modification. Opaque formats include\nPostScript, PDF, proprietary formats that can be read and edited only\nby proprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML produced by some word processors for output\npurposes only.\n\nThe \"Title Page\" means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, \"Title Page\" means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no other\nconditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies of the Document numbering more than 100,\nand the Document's license notice requires Cover Texts, you must enclose\nthe copies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na publicly-accessible computer-network location containing a complete\nTransparent copy of the Document, free of added material, which the\ngeneral network-using public has access to download anonymously at no\ncharge using public-standard network protocols. If you use the latter\noption, you must take reasonably prudent steps, when you begin\ndistribution of Opaque copies in quantity, to ensure that this\nTransparent copy will remain thus accessible at the stated location\nuntil at least one year after the last time you distribute an Opaque\ncopy (directly or through your agents or retailers) of that edition to\nthe public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to give\nthem a chance to provide you with an updated version of the Document.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\nB. List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has less than five).\nC. State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\nF. Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\nG. Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve the section entitled \"History\", and its title, and add to\n it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section entitled \"History\" in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the \"History\" section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\nK. In any section entitled \"Acknowledgements\" or \"Dedications\",\n preserve the section's title, and preserve in the section all the\n substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\nM. Delete any section entitled \"Endorsements\". Such a section\n may not be included in the Modified Version.\nN. Do not retitle any existing section as \"Endorsements\"\n or to conflict in title with any Invariant Section.\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section entitled \"Endorsements\", provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections entitled \"History\"\nin the various original documents, forming one section entitled\n\"History\"; likewise combine any sections entitled \"Acknowledgements\",\nand any sections entitled \"Dedications\". You must delete all sections\nentitled \"Endorsements.\"\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document and other documents\nreleased under this License, and replace the individual copies of this\nLicense in the various documents with a single copy that is included in\nthe collection, provided that you follow the rules of this License for\nverbatim copying of each of the documents in all other respects.\n\nYou may extract a single document from such a collection, and distribute\nit individually under this License, provided you insert a copy of this\nLicense into the extracted document, and follow this License in all\nother respects regarding verbatim copying of that document.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, does not as a whole count as a Modified Version\nof the Document, provided no compilation copyright is claimed for the\ncompilation. Such a compilation is called an \"aggregate\", and this\nLicense does not apply to the other self-contained works thus compiled\nwith the Document, on account of their being thus compiled, if they\nare not themselves derivative works of the Document.\n\nIf the Cover Text requirement of section 3 is applicable to these\ncopies of the Document, then if the Document is less than one quarter\nof the entire aggregate, the Document's Cover Texts may be placed on\ncovers that surround only the Document within the aggregate.\nOtherwise they must appear on covers around the whole aggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License provided that you also include the\noriginal English version of this License. In case of a disagreement\nbetween the translation and the original English version of this\nLicense, the original English version will prevail.\n\n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document except\nas expressly provided for under this License. Any other attempt to\ncopy, modify, sublicense or distribute the Document is void, and will\nautomatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new, revised versions\nof the GNU Free Documentation License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\n\n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.1\n or any later version published by the Free Software Foundation;\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n\nIf you have no Invariant Sections, write \"with no Invariant Sections\"\ninstead of saying which ones are invariant. If you have no\nFront-Cover Texts, write \"no Front-Cover Texts\" instead of\n\"Front-Cover Texts being LIST\"; likewise for Back-Cover Texts.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", + "json": "gfdl-1.1.json", + "yaml": "gfdl-1.1.yml", + "html": "gfdl-1.1.html", + "license": "gfdl-1.1.LICENSE" + }, + { + "license_key": "gfdl-1.1-invariants-only", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.1-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to copy, distribute and/or modify this document under the\nterms of the GNU Free Documentation License, Version 1.1; with the Invariant\nSections being LIST THEIR TITLES, with the Front-Cover Texts being LIST, and\nwith the Back-Cover Texts being LIST. A copy of the license is included in the\nsection entitled \"GNU Free Documentation License\". \n\n GNU Free Documentation License\n Version 1.1, March 2000\n\n Copyright (C) 2000 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nwritten document \"free\" in the sense of freedom: to assure everyone\nthe effective freedom to copy and redistribute it, with or without\nmodifying it, either commercially or noncommercially. Secondarily,\nthis License preserves for the author and publisher a way to get\ncredit for their work, while not being considered responsible for\nmodifications made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work that contains a\nnotice placed by the copyright holder saying it can be distributed\nunder the terms of this License. The \"Document\", below, refers to any\nsuch manual or work. Any member of the public is a licensee, and is\naddressed as \"you\".\n\nA \"Modified Version\" of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall subject\n(or to related matters) and contains nothing that could fall directly\nwithin that overall subject. (For example, if the Document is in part a\ntextbook of mathematics, a Secondary Section may not explain any\nmathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License.\n\nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, whose contents can be viewed and edited directly and\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup has been designed to thwart or discourage\nsubsequent modification by readers is not Transparent. A copy that is\nnot \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML designed for human modification. Opaque formats include\nPostScript, PDF, proprietary formats that can be read and edited only\nby proprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML produced by some word processors for output\npurposes only.\n\nThe \"Title Page\" means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, \"Title Page\" means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no other\nconditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies of the Document numbering more than 100,\nand the Document's license notice requires Cover Texts, you must enclose\nthe copies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na publicly-accessible computer-network location containing a complete\nTransparent copy of the Document, free of added material, which the\ngeneral network-using public has access to download anonymously at no\ncharge using public-standard network protocols. If you use the latter\noption, you must take reasonably prudent steps, when you begin\ndistribution of Opaque copies in quantity, to ensure that this\nTransparent copy will remain thus accessible at the stated location\nuntil at least one year after the last time you distribute an Opaque\ncopy (directly or through your agents or retailers) of that edition to\nthe public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to give\nthem a chance to provide you with an updated version of the Document.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\nB. List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has less than five).\nC. State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\nF. Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\nG. Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve the section entitled \"History\", and its title, and add to\n it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section entitled \"History\" in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the \"History\" section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\nK. In any section entitled \"Acknowledgements\" or \"Dedications\",\n preserve the section's title, and preserve in the section all the\n substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\nM. Delete any section entitled \"Endorsements\". Such a section\n may not be included in the Modified Version.\nN. Do not retitle any existing section as \"Endorsements\"\n or to conflict in title with any Invariant Section.\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section entitled \"Endorsements\", provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections entitled \"History\"\nin the various original documents, forming one section entitled\n\"History\"; likewise combine any sections entitled \"Acknowledgements\",\nand any sections entitled \"Dedications\". You must delete all sections\nentitled \"Endorsements.\"\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document and other documents\nreleased under this License, and replace the individual copies of this\nLicense in the various documents with a single copy that is included in\nthe collection, provided that you follow the rules of this License for\nverbatim copying of each of the documents in all other respects.\n\nYou may extract a single document from such a collection, and distribute\nit individually under this License, provided you insert a copy of this\nLicense into the extracted document, and follow this License in all\nother respects regarding verbatim copying of that document.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, does not as a whole count as a Modified Version\nof the Document, provided no compilation copyright is claimed for the\ncompilation. Such a compilation is called an \"aggregate\", and this\nLicense does not apply to the other self-contained works thus compiled\nwith the Document, on account of their being thus compiled, if they\nare not themselves derivative works of the Document.\n\nIf the Cover Text requirement of section 3 is applicable to these\ncopies of the Document, then if the Document is less than one quarter\nof the entire aggregate, the Document's Cover Texts may be placed on\ncovers that surround only the Document within the aggregate.\nOtherwise they must appear on covers around the whole aggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License provided that you also include the\noriginal English version of this License. In case of a disagreement\nbetween the translation and the original English version of this\nLicense, the original English version will prevail.\n\n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document except\nas expressly provided for under this License. Any other attempt to\ncopy, modify, sublicense or distribute the Document is void, and will\nautomatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new, revised versions\nof the GNU Free Documentation License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\n\n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.1\n or any later version published by the Free Software Foundation;\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n\nIf you have no Invariant Sections, write \"with no Invariant Sections\"\ninstead of saying which ones are invariant. If you have no\nFront-Cover Texts, write \"no Front-Cover Texts\" instead of\n\"Front-Cover Texts being LIST\"; likewise for Back-Cover Texts.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", + "json": "gfdl-1.1-invariants-only.json", + "yaml": "gfdl-1.1-invariants-only.yml", + "html": "gfdl-1.1-invariants-only.html", + "license": "gfdl-1.1-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.1-invariants-or-later", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.1-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.1\nor any later version published by the Free Software Foundation;\nwith the Invariant Sections being LIST THEIR TITLES, with the\nFront-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\nA copy of the license is included in the section entitled \"GNU\nFree Documentation License\".\n\n\n GNU Free Documentation License\n Version 1.1, March 2000\n\n Copyright (C) 2000 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nwritten document \"free\" in the sense of freedom: to assure everyone\nthe effective freedom to copy and redistribute it, with or without\nmodifying it, either commercially or noncommercially. Secondarily,\nthis License preserves for the author and publisher a way to get\ncredit for their work, while not being considered responsible for\nmodifications made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work that contains a\nnotice placed by the copyright holder saying it can be distributed\nunder the terms of this License. The \"Document\", below, refers to any\nsuch manual or work. Any member of the public is a licensee, and is\naddressed as \"you\".\n\nA \"Modified Version\" of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall subject\n(or to related matters) and contains nothing that could fall directly\nwithin that overall subject. (For example, if the Document is in part a\ntextbook of mathematics, a Secondary Section may not explain any\nmathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License.\n\nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, whose contents can be viewed and edited directly and\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup has been designed to thwart or discourage\nsubsequent modification by readers is not Transparent. A copy that is\nnot \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML designed for human modification. Opaque formats include\nPostScript, PDF, proprietary formats that can be read and edited only\nby proprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML produced by some word processors for output\npurposes only.\n\nThe \"Title Page\" means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, \"Title Page\" means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no other\nconditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies of the Document numbering more than 100,\nand the Document's license notice requires Cover Texts, you must enclose\nthe copies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na publicly-accessible computer-network location containing a complete\nTransparent copy of the Document, free of added material, which the\ngeneral network-using public has access to download anonymously at no\ncharge using public-standard network protocols. If you use the latter\noption, you must take reasonably prudent steps, when you begin\ndistribution of Opaque copies in quantity, to ensure that this\nTransparent copy will remain thus accessible at the stated location\nuntil at least one year after the last time you distribute an Opaque\ncopy (directly or through your agents or retailers) of that edition to\nthe public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to give\nthem a chance to provide you with an updated version of the Document.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\nB. List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has less than five).\nC. State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\nF. Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\nG. Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve the section entitled \"History\", and its title, and add to\n it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section entitled \"History\" in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the \"History\" section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\nK. In any section entitled \"Acknowledgements\" or \"Dedications\",\n preserve the section's title, and preserve in the section all the\n substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\nM. Delete any section entitled \"Endorsements\". Such a section\n may not be included in the Modified Version.\nN. Do not retitle any existing section as \"Endorsements\"\n or to conflict in title with any Invariant Section.\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section entitled \"Endorsements\", provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections entitled \"History\"\nin the various original documents, forming one section entitled\n\"History\"; likewise combine any sections entitled \"Acknowledgements\",\nand any sections entitled \"Dedications\". You must delete all sections\nentitled \"Endorsements.\"\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document and other documents\nreleased under this License, and replace the individual copies of this\nLicense in the various documents with a single copy that is included in\nthe collection, provided that you follow the rules of this License for\nverbatim copying of each of the documents in all other respects.\n\nYou may extract a single document from such a collection, and distribute\nit individually under this License, provided you insert a copy of this\nLicense into the extracted document, and follow this License in all\nother respects regarding verbatim copying of that document.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, does not as a whole count as a Modified Version\nof the Document, provided no compilation copyright is claimed for the\ncompilation. Such a compilation is called an \"aggregate\", and this\nLicense does not apply to the other self-contained works thus compiled\nwith the Document, on account of their being thus compiled, if they\nare not themselves derivative works of the Document.\n\nIf the Cover Text requirement of section 3 is applicable to these\ncopies of the Document, then if the Document is less than one quarter\nof the entire aggregate, the Document's Cover Texts may be placed on\ncovers that surround only the Document within the aggregate.\nOtherwise they must appear on covers around the whole aggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License provided that you also include the\noriginal English version of this License. In case of a disagreement\nbetween the translation and the original English version of this\nLicense, the original English version will prevail.\n\n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document except\nas expressly provided for under this License. Any other attempt to\ncopy, modify, sublicense or distribute the Document is void, and will\nautomatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new, revised versions\nof the GNU Free Documentation License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\n\n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.1\n or any later version published by the Free Software Foundation;\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n\nIf you have no Invariant Sections, write \"with no Invariant Sections\"\ninstead of saying which ones are invariant. If you have no\nFront-Cover Texts, write \"no Front-Cover Texts\" instead of\n\"Front-Cover Texts being LIST\"; likewise for Back-Cover Texts.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", + "json": "gfdl-1.1-invariants-or-later.json", + "yaml": "gfdl-1.1-invariants-or-later.yml", + "html": "gfdl-1.1-invariants-or-later.html", + "license": "gfdl-1.1-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.1-no-invariants-only", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.1-no-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to copy, distribute and/or modify this\ndocument under the terms of the GNU Free Documentation License,\nVersion 1.1; with no Invariant Sections, with no Front-Cover Texts,\nand with no Back-Cover Texts. A copy of the license is included in\nthe section entitled \"GNU Free Documentation License\".\n\n\n GNU Free Documentation License\n Version 1.1, March 2000\n\n Copyright (C) 2000 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nwritten document \"free\" in the sense of freedom: to assure everyone\nthe effective freedom to copy and redistribute it, with or without\nmodifying it, either commercially or noncommercially. Secondarily,\nthis License preserves for the author and publisher a way to get\ncredit for their work, while not being considered responsible for\nmodifications made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work that contains a\nnotice placed by the copyright holder saying it can be distributed\nunder the terms of this License. The \"Document\", below, refers to any\nsuch manual or work. Any member of the public is a licensee, and is\naddressed as \"you\".\n\nA \"Modified Version\" of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall subject\n(or to related matters) and contains nothing that could fall directly\nwithin that overall subject. (For example, if the Document is in part a\ntextbook of mathematics, a Secondary Section may not explain any\nmathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License.\n\nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, whose contents can be viewed and edited directly and\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup has been designed to thwart or discourage\nsubsequent modification by readers is not Transparent. A copy that is\nnot \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML designed for human modification. Opaque formats include\nPostScript, PDF, proprietary formats that can be read and edited only\nby proprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML produced by some word processors for output\npurposes only.\n\nThe \"Title Page\" means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, \"Title Page\" means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no other\nconditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies of the Document numbering more than 100,\nand the Document's license notice requires Cover Texts, you must enclose\nthe copies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na publicly-accessible computer-network location containing a complete\nTransparent copy of the Document, free of added material, which the\ngeneral network-using public has access to download anonymously at no\ncharge using public-standard network protocols. If you use the latter\noption, you must take reasonably prudent steps, when you begin\ndistribution of Opaque copies in quantity, to ensure that this\nTransparent copy will remain thus accessible at the stated location\nuntil at least one year after the last time you distribute an Opaque\ncopy (directly or through your agents or retailers) of that edition to\nthe public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to give\nthem a chance to provide you with an updated version of the Document.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\nB. List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has less than five).\nC. State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\nF. Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\nG. Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve the section entitled \"History\", and its title, and add to\n it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section entitled \"History\" in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the \"History\" section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\nK. In any section entitled \"Acknowledgements\" or \"Dedications\",\n preserve the section's title, and preserve in the section all the\n substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\nM. Delete any section entitled \"Endorsements\". Such a section\n may not be included in the Modified Version.\nN. Do not retitle any existing section as \"Endorsements\"\n or to conflict in title with any Invariant Section.\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section entitled \"Endorsements\", provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections entitled \"History\"\nin the various original documents, forming one section entitled\n\"History\"; likewise combine any sections entitled \"Acknowledgements\",\nand any sections entitled \"Dedications\". You must delete all sections\nentitled \"Endorsements.\"\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document and other documents\nreleased under this License, and replace the individual copies of this\nLicense in the various documents with a single copy that is included in\nthe collection, provided that you follow the rules of this License for\nverbatim copying of each of the documents in all other respects.\n\nYou may extract a single document from such a collection, and distribute\nit individually under this License, provided you insert a copy of this\nLicense into the extracted document, and follow this License in all\nother respects regarding verbatim copying of that document.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, does not as a whole count as a Modified Version\nof the Document, provided no compilation copyright is claimed for the\ncompilation. Such a compilation is called an \"aggregate\", and this\nLicense does not apply to the other self-contained works thus compiled\nwith the Document, on account of their being thus compiled, if they\nare not themselves derivative works of the Document.\n\nIf the Cover Text requirement of section 3 is applicable to these\ncopies of the Document, then if the Document is less than one quarter\nof the entire aggregate, the Document's Cover Texts may be placed on\ncovers that surround only the Document within the aggregate.\nOtherwise they must appear on covers around the whole aggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License provided that you also include the\noriginal English version of this License. In case of a disagreement\nbetween the translation and the original English version of this\nLicense, the original English version will prevail.\n\n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document except\nas expressly provided for under this License. Any other attempt to\ncopy, modify, sublicense or distribute the Document is void, and will\nautomatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new, revised versions\nof the GNU Free Documentation License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\n\n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.1\n or any later version published by the Free Software Foundation;\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n\nIf you have no Invariant Sections, write \"with no Invariant Sections\"\ninstead of saying which ones are invariant. If you have no\nFront-Cover Texts, write \"no Front-Cover Texts\" instead of\n\"Front-Cover Texts being LIST\"; likewise for Back-Cover Texts.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", + "json": "gfdl-1.1-no-invariants-only.json", + "yaml": "gfdl-1.1-no-invariants-only.yml", + "html": "gfdl-1.1-no-invariants-only.html", + "license": "gfdl-1.1-no-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.1-no-invariants-or-later", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.1-no-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to copy, distribute and/or modify this\ndocument under the terms of the GNU Free Documentation License,\nVersion 1.1 or any later version published by the Free Software\nFoundation; with no Invariant Sections, with no Front-Cover\nTexts, and with no Back-Cover Texts. A copy of the license is\nincluded in the section entitled \"GNU Free Documentation\nLicense\".\n\n\n GNU Free Documentation License\n Version 1.1, March 2000\n\n Copyright (C) 2000 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nwritten document \"free\" in the sense of freedom: to assure everyone\nthe effective freedom to copy and redistribute it, with or without\nmodifying it, either commercially or noncommercially. Secondarily,\nthis License preserves for the author and publisher a way to get\ncredit for their work, while not being considered responsible for\nmodifications made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work that contains a\nnotice placed by the copyright holder saying it can be distributed\nunder the terms of this License. The \"Document\", below, refers to any\nsuch manual or work. Any member of the public is a licensee, and is\naddressed as \"you\".\n\nA \"Modified Version\" of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall subject\n(or to related matters) and contains nothing that could fall directly\nwithin that overall subject. (For example, if the Document is in part a\ntextbook of mathematics, a Secondary Section may not explain any\nmathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License.\n\nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, whose contents can be viewed and edited directly and\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup has been designed to thwart or discourage\nsubsequent modification by readers is not Transparent. A copy that is\nnot \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML designed for human modification. Opaque formats include\nPostScript, PDF, proprietary formats that can be read and edited only\nby proprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML produced by some word processors for output\npurposes only.\n\nThe \"Title Page\" means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, \"Title Page\" means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no other\nconditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies of the Document numbering more than 100,\nand the Document's license notice requires Cover Texts, you must enclose\nthe copies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na publicly-accessible computer-network location containing a complete\nTransparent copy of the Document, free of added material, which the\ngeneral network-using public has access to download anonymously at no\ncharge using public-standard network protocols. If you use the latter\noption, you must take reasonably prudent steps, when you begin\ndistribution of Opaque copies in quantity, to ensure that this\nTransparent copy will remain thus accessible at the stated location\nuntil at least one year after the last time you distribute an Opaque\ncopy (directly or through your agents or retailers) of that edition to\nthe public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to give\nthem a chance to provide you with an updated version of the Document.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\nB. List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has less than five).\nC. State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\nF. Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\nG. Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve the section entitled \"History\", and its title, and add to\n it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section entitled \"History\" in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the \"History\" section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\nK. In any section entitled \"Acknowledgements\" or \"Dedications\",\n preserve the section's title, and preserve in the section all the\n substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\nM. Delete any section entitled \"Endorsements\". Such a section\n may not be included in the Modified Version.\nN. Do not retitle any existing section as \"Endorsements\"\n or to conflict in title with any Invariant Section.\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section entitled \"Endorsements\", provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections entitled \"History\"\nin the various original documents, forming one section entitled\n\"History\"; likewise combine any sections entitled \"Acknowledgements\",\nand any sections entitled \"Dedications\". You must delete all sections\nentitled \"Endorsements.\"\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document and other documents\nreleased under this License, and replace the individual copies of this\nLicense in the various documents with a single copy that is included in\nthe collection, provided that you follow the rules of this License for\nverbatim copying of each of the documents in all other respects.\n\nYou may extract a single document from such a collection, and distribute\nit individually under this License, provided you insert a copy of this\nLicense into the extracted document, and follow this License in all\nother respects regarding verbatim copying of that document.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, does not as a whole count as a Modified Version\nof the Document, provided no compilation copyright is claimed for the\ncompilation. Such a compilation is called an \"aggregate\", and this\nLicense does not apply to the other self-contained works thus compiled\nwith the Document, on account of their being thus compiled, if they\nare not themselves derivative works of the Document.\n\nIf the Cover Text requirement of section 3 is applicable to these\ncopies of the Document, then if the Document is less than one quarter\nof the entire aggregate, the Document's Cover Texts may be placed on\ncovers that surround only the Document within the aggregate.\nOtherwise they must appear on covers around the whole aggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License provided that you also include the\noriginal English version of this License. In case of a disagreement\nbetween the translation and the original English version of this\nLicense, the original English version will prevail.\n\n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document except\nas expressly provided for under this License. Any other attempt to\ncopy, modify, sublicense or distribute the Document is void, and will\nautomatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new, revised versions\nof the GNU Free Documentation License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\n\n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.1\n or any later version published by the Free Software Foundation;\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n\nIf you have no Invariant Sections, write \"with no Invariant Sections\"\ninstead of saying which ones are invariant. If you have no\nFront-Cover Texts, write \"no Front-Cover Texts\" instead of\n\"Front-Cover Texts being LIST\"; likewise for Back-Cover Texts.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", + "json": "gfdl-1.1-no-invariants-or-later.json", + "yaml": "gfdl-1.1-no-invariants-or-later.yml", + "html": "gfdl-1.1-no-invariants-or-later.html", + "license": "gfdl-1.1-no-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.1-plus", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.1-or-later", + "other_spdx_license_keys": [ + "GFDL-1.1+" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.1\nor any later version published by the Free Software Foundation.\n\n\n GNU Free Documentation License\n Version 1.1, March 2000\n\n Copyright (C) 2000 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nwritten document \"free\" in the sense of freedom: to assure everyone\nthe effective freedom to copy and redistribute it, with or without\nmodifying it, either commercially or noncommercially. Secondarily,\nthis License preserves for the author and publisher a way to get\ncredit for their work, while not being considered responsible for\nmodifications made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work that contains a\nnotice placed by the copyright holder saying it can be distributed\nunder the terms of this License. The \"Document\", below, refers to any\nsuch manual or work. Any member of the public is a licensee, and is\naddressed as \"you\".\n\nA \"Modified Version\" of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall subject\n(or to related matters) and contains nothing that could fall directly\nwithin that overall subject. (For example, if the Document is in part a\ntextbook of mathematics, a Secondary Section may not explain any\nmathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License.\n\nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, whose contents can be viewed and edited directly and\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup has been designed to thwart or discourage\nsubsequent modification by readers is not Transparent. A copy that is\nnot \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML designed for human modification. Opaque formats include\nPostScript, PDF, proprietary formats that can be read and edited only\nby proprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML produced by some word processors for output\npurposes only.\n\nThe \"Title Page\" means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, \"Title Page\" means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no other\nconditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies of the Document numbering more than 100,\nand the Document's license notice requires Cover Texts, you must enclose\nthe copies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na publicly-accessible computer-network location containing a complete\nTransparent copy of the Document, free of added material, which the\ngeneral network-using public has access to download anonymously at no\ncharge using public-standard network protocols. If you use the latter\noption, you must take reasonably prudent steps, when you begin\ndistribution of Opaque copies in quantity, to ensure that this\nTransparent copy will remain thus accessible at the stated location\nuntil at least one year after the last time you distribute an Opaque\ncopy (directly or through your agents or retailers) of that edition to\nthe public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to give\nthem a chance to provide you with an updated version of the Document.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\nB. List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has less than five).\nC. State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\nF. Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\nG. Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve the section entitled \"History\", and its title, and add to\n it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section entitled \"History\" in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the \"History\" section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\nK. In any section entitled \"Acknowledgements\" or \"Dedications\",\n preserve the section's title, and preserve in the section all the\n substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\nM. Delete any section entitled \"Endorsements\". Such a section\n may not be included in the Modified Version.\nN. Do not retitle any existing section as \"Endorsements\"\n or to conflict in title with any Invariant Section.\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section entitled \"Endorsements\", provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections entitled \"History\"\nin the various original documents, forming one section entitled\n\"History\"; likewise combine any sections entitled \"Acknowledgements\",\nand any sections entitled \"Dedications\". You must delete all sections\nentitled \"Endorsements.\"\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document and other documents\nreleased under this License, and replace the individual copies of this\nLicense in the various documents with a single copy that is included in\nthe collection, provided that you follow the rules of this License for\nverbatim copying of each of the documents in all other respects.\n\nYou may extract a single document from such a collection, and distribute\nit individually under this License, provided you insert a copy of this\nLicense into the extracted document, and follow this License in all\nother respects regarding verbatim copying of that document.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, does not as a whole count as a Modified Version\nof the Document, provided no compilation copyright is claimed for the\ncompilation. Such a compilation is called an \"aggregate\", and this\nLicense does not apply to the other self-contained works thus compiled\nwith the Document, on account of their being thus compiled, if they\nare not themselves derivative works of the Document.\n\nIf the Cover Text requirement of section 3 is applicable to these\ncopies of the Document, then if the Document is less than one quarter\nof the entire aggregate, the Document's Cover Texts may be placed on\ncovers that surround only the Document within the aggregate.\nOtherwise they must appear on covers around the whole aggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License provided that you also include the\noriginal English version of this License. In case of a disagreement\nbetween the translation and the original English version of this\nLicense, the original English version will prevail.\n\n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document except\nas expressly provided for under this License. Any other attempt to\ncopy, modify, sublicense or distribute the Document is void, and will\nautomatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new, revised versions\nof the GNU Free Documentation License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\n\n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.1\n or any later version published by the Free Software Foundation;\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n\nIf you have no Invariant Sections, write \"with no Invariant Sections\"\ninstead of saying which ones are invariant. If you have no\nFront-Cover Texts, write \"no Front-Cover Texts\" instead of\n\"Front-Cover Texts being LIST\"; likewise for Back-Cover Texts.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", + "json": "gfdl-1.1-plus.json", + "yaml": "gfdl-1.1-plus.yml", + "html": "gfdl-1.1-plus.html", + "license": "gfdl-1.1-plus.LICENSE" + }, + { + "license_key": "gfdl-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.2-only", + "other_spdx_license_keys": [ + "GFDL-1.2" + ], + "is_exception": false, + "is_deprecated": false, + "text": " GNU Free Documentation License\n Version 1.2, November 2002\n\n\n Copyright (C) 2000,2001,2002 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nfunctional and useful document \"free\" in the sense of freedom: to\nassure everyone the effective freedom to copy and redistribute it,\nwith or without modifying it, either commercially or noncommercially.\nSecondarily, this License preserves for the author and publisher a way\nto get credit for their work, while not being considered responsible\nfor modifications made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work, in any medium, that\ncontains a notice placed by the copyright holder saying it can be\ndistributed under the terms of this License. Such a notice grants a\nworld-wide, royalty-free license, unlimited in duration, to use that\nwork under the conditions stated herein. The \"Document\", below,\nrefers to any such manual or work. Any member of the public is a\nlicensee, and is addressed as \"you\". You accept the license if you\ncopy, modify or distribute the work in a way requiring permission\nunder copyright law.\n\nA \"Modified Version\" of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall subject\n(or to related matters) and contains nothing that could fall directly\nwithin that overall subject. (Thus, if the Document is in part a\ntextbook of mathematics, a Secondary Section may not explain any\nmathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License. If a\nsection does not fit the above definition of Secondary then it is not\nallowed to be designated as Invariant. The Document may contain zero\nInvariant Sections. If the Document does not identify any Invariant\nSections then there are none.\n\nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License. A Front-Cover Text may\nbe at most 5 words, and a Back-Cover Text may be at most 25 words.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, that is suitable for revising the document\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup, or absence of markup, has been arranged to thwart\nor discourage subsequent modification by readers is not Transparent.\nAn image format is not Transparent if used for any substantial amount\nof text. A copy that is not \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML, PostScript or PDF designed for human modification. Examples of\ntransparent image formats include PNG, XCF and JPG. Opaque formats\ninclude proprietary formats that can be read and edited only by\nproprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML, PostScript or PDF produced by some word\nprocessors for output purposes only.\n\nThe \"Title Page\" means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, \"Title Page\" means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\nA section \"Entitled XYZ\" means a named subunit of the Document whose\ntitle either is precisely XYZ or contains XYZ in parentheses following\ntext that translates XYZ in another language. (Here XYZ stands for a\nspecific section name mentioned below, such as \"Acknowledgements\",\n\"Dedications\", \"Endorsements\", or \"History\".) To \"Preserve the Title\"\nof such a section when you modify the Document means that it remains a\nsection \"Entitled XYZ\" according to this definition.\n\nThe Document may include Warranty Disclaimers next to the notice which\nstates that this License applies to the Document. These Warranty\nDisclaimers are considered to be included by reference in this\nLicense, but only as regards disclaiming warranties: any other\nimplication that these Warranty Disclaimers may have is void and has\nno effect on the meaning of this License.\n\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no other\nconditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies (or copies in media that commonly have\nprinted covers) of the Document, numbering more than 100, and the\nDocument's license notice requires Cover Texts, you must enclose the\ncopies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na computer-network location from which the general network-using\npublic has access to download using public-standard network protocols\na complete Transparent copy of the Document, free of added material.\nIf you use the latter option, you must take reasonably prudent steps,\nwhen you begin distribution of Opaque copies in quantity, to ensure\nthat this Transparent copy will remain thus accessible at the stated\nlocation until at least one year after the last time you distribute an\nOpaque copy (directly or through your agents or retailers) of that\nedition to the public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to give\nthem a chance to provide you with an updated version of the Document.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\nB. List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has fewer than five),\n unless they release you from this requirement.\nC. State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\nF. Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\nG. Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve the section Entitled \"History\", Preserve its Title, and add\n to it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section Entitled \"History\" in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the \"History\" section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\nK. For any section Entitled \"Acknowledgements\" or \"Dedications\",\n Preserve the Title of the section, and preserve in the section all\n the substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\nM. Delete any section Entitled \"Endorsements\". Such a section\n may not be included in the Modified Version.\nN. Do not retitle any existing section to be Entitled \"Endorsements\"\n or to conflict in title with any Invariant Section.\nO. Preserve any Warranty Disclaimers.\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section Entitled \"Endorsements\", provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice, and that you preserve all their Warranty Disclaimers.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections Entitled \"History\"\nin the various original documents, forming one section Entitled\n\"History\"; likewise combine any sections Entitled \"Acknowledgements\",\nand any sections Entitled \"Dedications\". You must delete all sections\nEntitled \"Endorsements\".\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document and other documents\nreleased under this License, and replace the individual copies of this\nLicense in the various documents with a single copy that is included in\nthe collection, provided that you follow the rules of this License for\nverbatim copying of each of the documents in all other respects.\n\nYou may extract a single document from such a collection, and distribute\nit individually under this License, provided you insert a copy of this\nLicense into the extracted document, and follow this License in all\nother respects regarding verbatim copying of that document.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, is called an \"aggregate\" if the copyright\nresulting from the compilation is not used to limit the legal rights\nof the compilation's users beyond what the individual works permit.\nWhen the Document is included in an aggregate, this License does not\napply to the other works in the aggregate which are not themselves\nderivative works of the Document.\n\nIf the Cover Text requirement of section 3 is applicable to these\ncopies of the Document, then if the Document is less than one half of\nthe entire aggregate, the Document's Cover Texts may be placed on\ncovers that bracket the Document within the aggregate, or the\nelectronic equivalent of covers if the Document is in electronic form.\nOtherwise they must appear on printed covers that bracket the whole\naggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License, and all the license notices in the\nDocument, and any Warranty Disclaimers, provided that you also include\nthe original English version of this License and the original versions\nof those notices and disclaimers. In case of a disagreement between\nthe translation and the original version of this License or a notice\nor disclaimer, the original version will prevail.\n\nIf a section in the Document is Entitled \"Acknowledgements\",\n\"Dedications\", or \"History\", the requirement (section 4) to Preserve\nits Title (section 1) will typically require changing the actual\ntitle.\n\n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document except\nas expressly provided for under this License. Any other attempt to\ncopy, modify, sublicense or distribute the Document is void, and will\nautomatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new, revised versions\nof the GNU Free Documentation License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\n\n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.2\n or any later version published by the Free Software Foundation;\n with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n\nIf you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,\nreplace the \"with...Texts.\" line with this:\n\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n\nIf you have Invariant Sections without Cover Texts, or some other\ncombination of the three, merge those two alternatives to suit the\nsituation.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", + "json": "gfdl-1.2.json", + "yaml": "gfdl-1.2.yml", + "html": "gfdl-1.2.html", + "license": "gfdl-1.2.LICENSE" + }, + { + "license_key": "gfdl-1.2-invariants-only", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.2-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.2; with the Invariant Sections being LIST THEIR TITLES ,\nwith the Front-Cover Texts being LIST , and with the Back-Cover Texts being\nLIST . A copy of the license is included in the section entitled \"GNU Free\nDocumentation License\".\n\n GNU Free Documentation License\n Version 1.2, November 2002\n\n\n Copyright (C) 2000,2001,2002 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nfunctional and useful document \"free\" in the sense of freedom: to\nassure everyone the effective freedom to copy and redistribute it,\nwith or without modifying it, either commercially or noncommercially.\nSecondarily, this License preserves for the author and publisher a way\nto get credit for their work, while not being considered responsible\nfor modifications made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work, in any medium, that\ncontains a notice placed by the copyright holder saying it can be\ndistributed under the terms of this License. Such a notice grants a\nworld-wide, royalty-free license, unlimited in duration, to use that\nwork under the conditions stated herein. The \"Document\", below,\nrefers to any such manual or work. Any member of the public is a\nlicensee, and is addressed as \"you\". You accept the license if you\ncopy, modify or distribute the work in a way requiring permission\nunder copyright law.\n\nA \"Modified Version\" of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall subject\n(or to related matters) and contains nothing that could fall directly\nwithin that overall subject. (Thus, if the Document is in part a\ntextbook of mathematics, a Secondary Section may not explain any\nmathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License. If a\nsection does not fit the above definition of Secondary then it is not\nallowed to be designated as Invariant. The Document may contain zero\nInvariant Sections. If the Document does not identify any Invariant\nSections then there are none.\n\nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License. A Front-Cover Text may\nbe at most 5 words, and a Back-Cover Text may be at most 25 words.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, that is suitable for revising the document\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup, or absence of markup, has been arranged to thwart\nor discourage subsequent modification by readers is not Transparent.\nAn image format is not Transparent if used for any substantial amount\nof text. A copy that is not \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML, PostScript or PDF designed for human modification. Examples of\ntransparent image formats include PNG, XCF and JPG. Opaque formats\ninclude proprietary formats that can be read and edited only by\nproprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML, PostScript or PDF produced by some word\nprocessors for output purposes only.\n\nThe \"Title Page\" means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, \"Title Page\" means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\nA section \"Entitled XYZ\" means a named subunit of the Document whose\ntitle either is precisely XYZ or contains XYZ in parentheses following\ntext that translates XYZ in another language. (Here XYZ stands for a\nspecific section name mentioned below, such as \"Acknowledgements\",\n\"Dedications\", \"Endorsements\", or \"History\".) To \"Preserve the Title\"\nof such a section when you modify the Document means that it remains a\nsection \"Entitled XYZ\" according to this definition.\n\nThe Document may include Warranty Disclaimers next to the notice which\nstates that this License applies to the Document. These Warranty\nDisclaimers are considered to be included by reference in this\nLicense, but only as regards disclaiming warranties: any other\nimplication that these Warranty Disclaimers may have is void and has\nno effect on the meaning of this License.\n\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no other\nconditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies (or copies in media that commonly have\nprinted covers) of the Document, numbering more than 100, and the\nDocument's license notice requires Cover Texts, you must enclose the\ncopies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na computer-network location from which the general network-using\npublic has access to download using public-standard network protocols\na complete Transparent copy of the Document, free of added material.\nIf you use the latter option, you must take reasonably prudent steps,\nwhen you begin distribution of Opaque copies in quantity, to ensure\nthat this Transparent copy will remain thus accessible at the stated\nlocation until at least one year after the last time you distribute an\nOpaque copy (directly or through your agents or retailers) of that\nedition to the public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to give\nthem a chance to provide you with an updated version of the Document.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\nB. List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has fewer than five),\n unless they release you from this requirement.\nC. State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\nF. Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\nG. Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve the section Entitled \"History\", Preserve its Title, and add\n to it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section Entitled \"History\" in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the \"History\" section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\nK. For any section Entitled \"Acknowledgements\" or \"Dedications\",\n Preserve the Title of the section, and preserve in the section all\n the substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\nM. Delete any section Entitled \"Endorsements\". Such a section\n may not be included in the Modified Version.\nN. Do not retitle any existing section to be Entitled \"Endorsements\"\n or to conflict in title with any Invariant Section.\nO. Preserve any Warranty Disclaimers.\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section Entitled \"Endorsements\", provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice, and that you preserve all their Warranty Disclaimers.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections Entitled \"History\"\nin the various original documents, forming one section Entitled\n\"History\"; likewise combine any sections Entitled \"Acknowledgements\",\nand any sections Entitled \"Dedications\". You must delete all sections\nEntitled \"Endorsements\".\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document and other documents\nreleased under this License, and replace the individual copies of this\nLicense in the various documents with a single copy that is included in\nthe collection, provided that you follow the rules of this License for\nverbatim copying of each of the documents in all other respects.\n\nYou may extract a single document from such a collection, and distribute\nit individually under this License, provided you insert a copy of this\nLicense into the extracted document, and follow this License in all\nother respects regarding verbatim copying of that document.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, is called an \"aggregate\" if the copyright\nresulting from the compilation is not used to limit the legal rights\nof the compilation's users beyond what the individual works permit.\nWhen the Document is included in an aggregate, this License does not\napply to the other works in the aggregate which are not themselves\nderivative works of the Document.\n\nIf the Cover Text requirement of section 3 is applicable to these\ncopies of the Document, then if the Document is less than one half of\nthe entire aggregate, the Document's Cover Texts may be placed on\ncovers that bracket the Document within the aggregate, or the\nelectronic equivalent of covers if the Document is in electronic form.\nOtherwise they must appear on printed covers that bracket the whole\naggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License, and all the license notices in the\nDocument, and any Warranty Disclaimers, provided that you also include\nthe original English version of this License and the original versions\nof those notices and disclaimers. In case of a disagreement between\nthe translation and the original version of this License or a notice\nor disclaimer, the original version will prevail.\n\nIf a section in the Document is Entitled \"Acknowledgements\",\n\"Dedications\", or \"History\", the requirement (section 4) to Preserve\nits Title (section 1) will typically require changing the actual\ntitle.\n\n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document except\nas expressly provided for under this License. Any other attempt to\ncopy, modify, sublicense or distribute the Document is void, and will\nautomatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new, revised versions\nof the GNU Free Documentation License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\n\n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.2\n or any later version published by the Free Software Foundation;\n with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n\nIf you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,\nreplace the \"with...Texts.\" line with this:\n\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n\nIf you have Invariant Sections without Cover Texts, or some other\ncombination of the three, merge those two alternatives to suit the\nsituation.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", + "json": "gfdl-1.2-invariants-only.json", + "yaml": "gfdl-1.2-invariants-only.yml", + "html": "gfdl-1.2-invariants-only.html", + "license": "gfdl-1.2-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.2-invariants-or-later", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.2-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.2 or any later version published by the Free Software\nFoundation; with the Invariant Sections being LIST THEIR TITLES , with the\nFront-Cover Texts being LIST , and with the Back-Cover Texts being LIST . A\ncopy of the license is included in the section entitled \"GNU Free\nDocumentation License\".\n\n GNU Free Documentation License\n Version 1.2, November 2002\n\n\n Copyright (C) 2000,2001,2002 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nfunctional and useful document \"free\" in the sense of freedom: to\nassure everyone the effective freedom to copy and redistribute it,\nwith or without modifying it, either commercially or noncommercially.\nSecondarily, this License preserves for the author and publisher a way\nto get credit for their work, while not being considered responsible\nfor modifications made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work, in any medium, that\ncontains a notice placed by the copyright holder saying it can be\ndistributed under the terms of this License. Such a notice grants a\nworld-wide, royalty-free license, unlimited in duration, to use that\nwork under the conditions stated herein. The \"Document\", below,\nrefers to any such manual or work. Any member of the public is a\nlicensee, and is addressed as \"you\". You accept the license if you\ncopy, modify or distribute the work in a way requiring permission\nunder copyright law.\n\nA \"Modified Version\" of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall subject\n(or to related matters) and contains nothing that could fall directly\nwithin that overall subject. (Thus, if the Document is in part a\ntextbook of mathematics, a Secondary Section may not explain any\nmathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License. If a\nsection does not fit the above definition of Secondary then it is not\nallowed to be designated as Invariant. The Document may contain zero\nInvariant Sections. If the Document does not identify any Invariant\nSections then there are none.\n\nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License. A Front-Cover Text may\nbe at most 5 words, and a Back-Cover Text may be at most 25 words.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, that is suitable for revising the document\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup, or absence of markup, has been arranged to thwart\nor discourage subsequent modification by readers is not Transparent.\nAn image format is not Transparent if used for any substantial amount\nof text. A copy that is not \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML, PostScript or PDF designed for human modification. Examples of\ntransparent image formats include PNG, XCF and JPG. Opaque formats\ninclude proprietary formats that can be read and edited only by\nproprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML, PostScript or PDF produced by some word\nprocessors for output purposes only.\n\nThe \"Title Page\" means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, \"Title Page\" means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\nA section \"Entitled XYZ\" means a named subunit of the Document whose\ntitle either is precisely XYZ or contains XYZ in parentheses following\ntext that translates XYZ in another language. (Here XYZ stands for a\nspecific section name mentioned below, such as \"Acknowledgements\",\n\"Dedications\", \"Endorsements\", or \"History\".) To \"Preserve the Title\"\nof such a section when you modify the Document means that it remains a\nsection \"Entitled XYZ\" according to this definition.\n\nThe Document may include Warranty Disclaimers next to the notice which\nstates that this License applies to the Document. These Warranty\nDisclaimers are considered to be included by reference in this\nLicense, but only as regards disclaiming warranties: any other\nimplication that these Warranty Disclaimers may have is void and has\nno effect on the meaning of this License.\n\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no other\nconditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies (or copies in media that commonly have\nprinted covers) of the Document, numbering more than 100, and the\nDocument's license notice requires Cover Texts, you must enclose the\ncopies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na computer-network location from which the general network-using\npublic has access to download using public-standard network protocols\na complete Transparent copy of the Document, free of added material.\nIf you use the latter option, you must take reasonably prudent steps,\nwhen you begin distribution of Opaque copies in quantity, to ensure\nthat this Transparent copy will remain thus accessible at the stated\nlocation until at least one year after the last time you distribute an\nOpaque copy (directly or through your agents or retailers) of that\nedition to the public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to give\nthem a chance to provide you with an updated version of the Document.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\nB. List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has fewer than five),\n unless they release you from this requirement.\nC. State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\nF. Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\nG. Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve the section Entitled \"History\", Preserve its Title, and add\n to it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section Entitled \"History\" in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the \"History\" section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\nK. For any section Entitled \"Acknowledgements\" or \"Dedications\",\n Preserve the Title of the section, and preserve in the section all\n the substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\nM. Delete any section Entitled \"Endorsements\". Such a section\n may not be included in the Modified Version.\nN. Do not retitle any existing section to be Entitled \"Endorsements\"\n or to conflict in title with any Invariant Section.\nO. Preserve any Warranty Disclaimers.\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section Entitled \"Endorsements\", provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice, and that you preserve all their Warranty Disclaimers.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections Entitled \"History\"\nin the various original documents, forming one section Entitled\n\"History\"; likewise combine any sections Entitled \"Acknowledgements\",\nand any sections Entitled \"Dedications\". You must delete all sections\nEntitled \"Endorsements\".\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document and other documents\nreleased under this License, and replace the individual copies of this\nLicense in the various documents with a single copy that is included in\nthe collection, provided that you follow the rules of this License for\nverbatim copying of each of the documents in all other respects.\n\nYou may extract a single document from such a collection, and distribute\nit individually under this License, provided you insert a copy of this\nLicense into the extracted document, and follow this License in all\nother respects regarding verbatim copying of that document.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, is called an \"aggregate\" if the copyright\nresulting from the compilation is not used to limit the legal rights\nof the compilation's users beyond what the individual works permit.\nWhen the Document is included in an aggregate, this License does not\napply to the other works in the aggregate which are not themselves\nderivative works of the Document.\n\nIf the Cover Text requirement of section 3 is applicable to these\ncopies of the Document, then if the Document is less than one half of\nthe entire aggregate, the Document's Cover Texts may be placed on\ncovers that bracket the Document within the aggregate, or the\nelectronic equivalent of covers if the Document is in electronic form.\nOtherwise they must appear on printed covers that bracket the whole\naggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License, and all the license notices in the\nDocument, and any Warranty Disclaimers, provided that you also include\nthe original English version of this License and the original versions\nof those notices and disclaimers. In case of a disagreement between\nthe translation and the original version of this License or a notice\nor disclaimer, the original version will prevail.\n\nIf a section in the Document is Entitled \"Acknowledgements\",\n\"Dedications\", or \"History\", the requirement (section 4) to Preserve\nits Title (section 1) will typically require changing the actual\ntitle.\n\n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document except\nas expressly provided for under this License. Any other attempt to\ncopy, modify, sublicense or distribute the Document is void, and will\nautomatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new, revised versions\nof the GNU Free Documentation License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\n\n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.2\n or any later version published by the Free Software Foundation;\n with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n\nIf you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,\nreplace the \"with...Texts.\" line with this:\n\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n\nIf you have Invariant Sections without Cover Texts, or some other\ncombination of the three, merge those two alternatives to suit the\nsituation.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", + "json": "gfdl-1.2-invariants-or-later.json", + "yaml": "gfdl-1.2-invariants-or-later.yml", + "html": "gfdl-1.2-invariants-or-later.html", + "license": "gfdl-1.2-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.2-no-invariants-only", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.2-no-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.2; with no Invariant Sections, no Front-Cover Texts, and\nno Back-Cover Texts. A copy of the license is included in the section\nentitled \"GNU Free Documentation License\".\n\n GNU Free Documentation License\n Version 1.2, November 2002\n\n\n Copyright (C) 2000,2001,2002 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nfunctional and useful document \"free\" in the sense of freedom: to\nassure everyone the effective freedom to copy and redistribute it,\nwith or without modifying it, either commercially or noncommercially.\nSecondarily, this License preserves for the author and publisher a way\nto get credit for their work, while not being considered responsible\nfor modifications made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work, in any medium, that\ncontains a notice placed by the copyright holder saying it can be\ndistributed under the terms of this License. Such a notice grants a\nworld-wide, royalty-free license, unlimited in duration, to use that\nwork under the conditions stated herein. The \"Document\", below,\nrefers to any such manual or work. Any member of the public is a\nlicensee, and is addressed as \"you\". You accept the license if you\ncopy, modify or distribute the work in a way requiring permission\nunder copyright law.\n\nA \"Modified Version\" of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall subject\n(or to related matters) and contains nothing that could fall directly\nwithin that overall subject. (Thus, if the Document is in part a\ntextbook of mathematics, a Secondary Section may not explain any\nmathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License. If a\nsection does not fit the above definition of Secondary then it is not\nallowed to be designated as Invariant. The Document may contain zero\nInvariant Sections. If the Document does not identify any Invariant\nSections then there are none.\n\nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License. A Front-Cover Text may\nbe at most 5 words, and a Back-Cover Text may be at most 25 words.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, that is suitable for revising the document\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup, or absence of markup, has been arranged to thwart\nor discourage subsequent modification by readers is not Transparent.\nAn image format is not Transparent if used for any substantial amount\nof text. A copy that is not \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML, PostScript or PDF designed for human modification. Examples of\ntransparent image formats include PNG, XCF and JPG. Opaque formats\ninclude proprietary formats that can be read and edited only by\nproprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML, PostScript or PDF produced by some word\nprocessors for output purposes only.\n\nThe \"Title Page\" means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, \"Title Page\" means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\nA section \"Entitled XYZ\" means a named subunit of the Document whose\ntitle either is precisely XYZ or contains XYZ in parentheses following\ntext that translates XYZ in another language. (Here XYZ stands for a\nspecific section name mentioned below, such as \"Acknowledgements\",\n\"Dedications\", \"Endorsements\", or \"History\".) To \"Preserve the Title\"\nof such a section when you modify the Document means that it remains a\nsection \"Entitled XYZ\" according to this definition.\n\nThe Document may include Warranty Disclaimers next to the notice which\nstates that this License applies to the Document. These Warranty\nDisclaimers are considered to be included by reference in this\nLicense, but only as regards disclaiming warranties: any other\nimplication that these Warranty Disclaimers may have is void and has\nno effect on the meaning of this License.\n\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no other\nconditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies (or copies in media that commonly have\nprinted covers) of the Document, numbering more than 100, and the\nDocument's license notice requires Cover Texts, you must enclose the\ncopies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na computer-network location from which the general network-using\npublic has access to download using public-standard network protocols\na complete Transparent copy of the Document, free of added material.\nIf you use the latter option, you must take reasonably prudent steps,\nwhen you begin distribution of Opaque copies in quantity, to ensure\nthat this Transparent copy will remain thus accessible at the stated\nlocation until at least one year after the last time you distribute an\nOpaque copy (directly or through your agents or retailers) of that\nedition to the public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to give\nthem a chance to provide you with an updated version of the Document.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\nB. List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has fewer than five),\n unless they release you from this requirement.\nC. State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\nF. Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\nG. Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve the section Entitled \"History\", Preserve its Title, and add\n to it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section Entitled \"History\" in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the \"History\" section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\nK. For any section Entitled \"Acknowledgements\" or \"Dedications\",\n Preserve the Title of the section, and preserve in the section all\n the substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\nM. Delete any section Entitled \"Endorsements\". Such a section\n may not be included in the Modified Version.\nN. Do not retitle any existing section to be Entitled \"Endorsements\"\n or to conflict in title with any Invariant Section.\nO. Preserve any Warranty Disclaimers.\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section Entitled \"Endorsements\", provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice, and that you preserve all their Warranty Disclaimers.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections Entitled \"History\"\nin the various original documents, forming one section Entitled\n\"History\"; likewise combine any sections Entitled \"Acknowledgements\",\nand any sections Entitled \"Dedications\". You must delete all sections\nEntitled \"Endorsements\".\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document and other documents\nreleased under this License, and replace the individual copies of this\nLicense in the various documents with a single copy that is included in\nthe collection, provided that you follow the rules of this License for\nverbatim copying of each of the documents in all other respects.\n\nYou may extract a single document from such a collection, and distribute\nit individually under this License, provided you insert a copy of this\nLicense into the extracted document, and follow this License in all\nother respects regarding verbatim copying of that document.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, is called an \"aggregate\" if the copyright\nresulting from the compilation is not used to limit the legal rights\nof the compilation's users beyond what the individual works permit.\nWhen the Document is included in an aggregate, this License does not\napply to the other works in the aggregate which are not themselves\nderivative works of the Document.\n\nIf the Cover Text requirement of section 3 is applicable to these\ncopies of the Document, then if the Document is less than one half of\nthe entire aggregate, the Document's Cover Texts may be placed on\ncovers that bracket the Document within the aggregate, or the\nelectronic equivalent of covers if the Document is in electronic form.\nOtherwise they must appear on printed covers that bracket the whole\naggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License, and all the license notices in the\nDocument, and any Warranty Disclaimers, provided that you also include\nthe original English version of this License and the original versions\nof those notices and disclaimers. In case of a disagreement between\nthe translation and the original version of this License or a notice\nor disclaimer, the original version will prevail.\n\nIf a section in the Document is Entitled \"Acknowledgements\",\n\"Dedications\", or \"History\", the requirement (section 4) to Preserve\nits Title (section 1) will typically require changing the actual\ntitle.\n\n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document except\nas expressly provided for under this License. Any other attempt to\ncopy, modify, sublicense or distribute the Document is void, and will\nautomatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new, revised versions\nof the GNU Free Documentation License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\n\n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.2\n or any later version published by the Free Software Foundation;\n with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n\nIf you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,\nreplace the \"with...Texts.\" line with this:\n\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n\nIf you have Invariant Sections without Cover Texts, or some other\ncombination of the three, merge those two alternatives to suit the\nsituation.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", + "json": "gfdl-1.2-no-invariants-only.json", + "yaml": "gfdl-1.2-no-invariants-only.yml", + "html": "gfdl-1.2-no-invariants-only.html", + "license": "gfdl-1.2-no-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.2-no-invariants-or-later", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.2-no-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.2 or any later version published by the Free Software\nFoundation; with no Invariant Sections, no Front-Cover Texts,and no Back-\nCover Texts. A copy of the license is included in the section entitled \"GNU\nFree Documentation License\".\n\n GNU Free Documentation License\n Version 1.2, November 2002\n\n\n Copyright (C) 2000,2001,2002 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nfunctional and useful document \"free\" in the sense of freedom: to\nassure everyone the effective freedom to copy and redistribute it,\nwith or without modifying it, either commercially or noncommercially.\nSecondarily, this License preserves for the author and publisher a way\nto get credit for their work, while not being considered responsible\nfor modifications made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work, in any medium, that\ncontains a notice placed by the copyright holder saying it can be\ndistributed under the terms of this License. Such a notice grants a\nworld-wide, royalty-free license, unlimited in duration, to use that\nwork under the conditions stated herein. The \"Document\", below,\nrefers to any such manual or work. Any member of the public is a\nlicensee, and is addressed as \"you\". You accept the license if you\ncopy, modify or distribute the work in a way requiring permission\nunder copyright law.\n\nA \"Modified Version\" of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall subject\n(or to related matters) and contains nothing that could fall directly\nwithin that overall subject. (Thus, if the Document is in part a\ntextbook of mathematics, a Secondary Section may not explain any\nmathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License. If a\nsection does not fit the above definition of Secondary then it is not\nallowed to be designated as Invariant. The Document may contain zero\nInvariant Sections. If the Document does not identify any Invariant\nSections then there are none.\n\nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License. A Front-Cover Text may\nbe at most 5 words, and a Back-Cover Text may be at most 25 words.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, that is suitable for revising the document\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup, or absence of markup, has been arranged to thwart\nor discourage subsequent modification by readers is not Transparent.\nAn image format is not Transparent if used for any substantial amount\nof text. A copy that is not \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML, PostScript or PDF designed for human modification. Examples of\ntransparent image formats include PNG, XCF and JPG. Opaque formats\ninclude proprietary formats that can be read and edited only by\nproprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML, PostScript or PDF produced by some word\nprocessors for output purposes only.\n\nThe \"Title Page\" means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, \"Title Page\" means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\nA section \"Entitled XYZ\" means a named subunit of the Document whose\ntitle either is precisely XYZ or contains XYZ in parentheses following\ntext that translates XYZ in another language. (Here XYZ stands for a\nspecific section name mentioned below, such as \"Acknowledgements\",\n\"Dedications\", \"Endorsements\", or \"History\".) To \"Preserve the Title\"\nof such a section when you modify the Document means that it remains a\nsection \"Entitled XYZ\" according to this definition.\n\nThe Document may include Warranty Disclaimers next to the notice which\nstates that this License applies to the Document. These Warranty\nDisclaimers are considered to be included by reference in this\nLicense, but only as regards disclaiming warranties: any other\nimplication that these Warranty Disclaimers may have is void and has\nno effect on the meaning of this License.\n\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no other\nconditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies (or copies in media that commonly have\nprinted covers) of the Document, numbering more than 100, and the\nDocument's license notice requires Cover Texts, you must enclose the\ncopies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na computer-network location from which the general network-using\npublic has access to download using public-standard network protocols\na complete Transparent copy of the Document, free of added material.\nIf you use the latter option, you must take reasonably prudent steps,\nwhen you begin distribution of Opaque copies in quantity, to ensure\nthat this Transparent copy will remain thus accessible at the stated\nlocation until at least one year after the last time you distribute an\nOpaque copy (directly or through your agents or retailers) of that\nedition to the public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to give\nthem a chance to provide you with an updated version of the Document.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\nB. List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has fewer than five),\n unless they release you from this requirement.\nC. State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\nF. Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\nG. Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve the section Entitled \"History\", Preserve its Title, and add\n to it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section Entitled \"History\" in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the \"History\" section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\nK. For any section Entitled \"Acknowledgements\" or \"Dedications\",\n Preserve the Title of the section, and preserve in the section all\n the substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\nM. Delete any section Entitled \"Endorsements\". Such a section\n may not be included in the Modified Version.\nN. Do not retitle any existing section to be Entitled \"Endorsements\"\n or to conflict in title with any Invariant Section.\nO. Preserve any Warranty Disclaimers.\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section Entitled \"Endorsements\", provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice, and that you preserve all their Warranty Disclaimers.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections Entitled \"History\"\nin the various original documents, forming one section Entitled\n\"History\"; likewise combine any sections Entitled \"Acknowledgements\",\nand any sections Entitled \"Dedications\". You must delete all sections\nEntitled \"Endorsements\".\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document and other documents\nreleased under this License, and replace the individual copies of this\nLicense in the various documents with a single copy that is included in\nthe collection, provided that you follow the rules of this License for\nverbatim copying of each of the documents in all other respects.\n\nYou may extract a single document from such a collection, and distribute\nit individually under this License, provided you insert a copy of this\nLicense into the extracted document, and follow this License in all\nother respects regarding verbatim copying of that document.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, is called an \"aggregate\" if the copyright\nresulting from the compilation is not used to limit the legal rights\nof the compilation's users beyond what the individual works permit.\nWhen the Document is included in an aggregate, this License does not\napply to the other works in the aggregate which are not themselves\nderivative works of the Document.\n\nIf the Cover Text requirement of section 3 is applicable to these\ncopies of the Document, then if the Document is less than one half of\nthe entire aggregate, the Document's Cover Texts may be placed on\ncovers that bracket the Document within the aggregate, or the\nelectronic equivalent of covers if the Document is in electronic form.\nOtherwise they must appear on printed covers that bracket the whole\naggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License, and all the license notices in the\nDocument, and any Warranty Disclaimers, provided that you also include\nthe original English version of this License and the original versions\nof those notices and disclaimers. In case of a disagreement between\nthe translation and the original version of this License or a notice\nor disclaimer, the original version will prevail.\n\nIf a section in the Document is Entitled \"Acknowledgements\",\n\"Dedications\", or \"History\", the requirement (section 4) to Preserve\nits Title (section 1) will typically require changing the actual\ntitle.\n\n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document except\nas expressly provided for under this License. Any other attempt to\ncopy, modify, sublicense or distribute the Document is void, and will\nautomatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new, revised versions\nof the GNU Free Documentation License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\n\n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.2\n or any later version published by the Free Software Foundation;\n with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n\nIf you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,\nreplace the \"with...Texts.\" line with this:\n\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n\nIf you have Invariant Sections without Cover Texts, or some other\ncombination of the three, merge those two alternatives to suit the\nsituation.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", + "json": "gfdl-1.2-no-invariants-or-later.json", + "yaml": "gfdl-1.2-no-invariants-or-later.yml", + "html": "gfdl-1.2-no-invariants-or-later.html", + "license": "gfdl-1.2-no-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.2-plus", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.2-or-later", + "other_spdx_license_keys": [ + "GFDL-1.2+" + ], + "is_exception": false, + "is_deprecated": false, + "text": " Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.2\n or any later version published by the Free Software Foundation;\n\n GNU Free Documentation License\n Version 1.2, November 2002\n\n\n Copyright (C) 2000,2001,2002 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nfunctional and useful document \"free\" in the sense of freedom: to\nassure everyone the effective freedom to copy and redistribute it,\nwith or without modifying it, either commercially or noncommercially.\nSecondarily, this License preserves for the author and publisher a way\nto get credit for their work, while not being considered responsible\nfor modifications made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work, in any medium, that\ncontains a notice placed by the copyright holder saying it can be\ndistributed under the terms of this License. Such a notice grants a\nworld-wide, royalty-free license, unlimited in duration, to use that\nwork under the conditions stated herein. The \"Document\", below,\nrefers to any such manual or work. Any member of the public is a\nlicensee, and is addressed as \"you\". You accept the license if you\ncopy, modify or distribute the work in a way requiring permission\nunder copyright law.\n\nA \"Modified Version\" of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall subject\n(or to related matters) and contains nothing that could fall directly\nwithin that overall subject. (Thus, if the Document is in part a\ntextbook of mathematics, a Secondary Section may not explain any\nmathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License. If a\nsection does not fit the above definition of Secondary then it is not\nallowed to be designated as Invariant. The Document may contain zero\nInvariant Sections. If the Document does not identify any Invariant\nSections then there are none.\n\nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License. A Front-Cover Text may\nbe at most 5 words, and a Back-Cover Text may be at most 25 words.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, that is suitable for revising the document\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup, or absence of markup, has been arranged to thwart\nor discourage subsequent modification by readers is not Transparent.\nAn image format is not Transparent if used for any substantial amount\nof text. A copy that is not \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML, PostScript or PDF designed for human modification. Examples of\ntransparent image formats include PNG, XCF and JPG. Opaque formats\ninclude proprietary formats that can be read and edited only by\nproprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML, PostScript or PDF produced by some word\nprocessors for output purposes only.\n\nThe \"Title Page\" means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, \"Title Page\" means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\nA section \"Entitled XYZ\" means a named subunit of the Document whose\ntitle either is precisely XYZ or contains XYZ in parentheses following\ntext that translates XYZ in another language. (Here XYZ stands for a\nspecific section name mentioned below, such as \"Acknowledgements\",\n\"Dedications\", \"Endorsements\", or \"History\".) To \"Preserve the Title\"\nof such a section when you modify the Document means that it remains a\nsection \"Entitled XYZ\" according to this definition.\n\nThe Document may include Warranty Disclaimers next to the notice which\nstates that this License applies to the Document. These Warranty\nDisclaimers are considered to be included by reference in this\nLicense, but only as regards disclaiming warranties: any other\nimplication that these Warranty Disclaimers may have is void and has\nno effect on the meaning of this License.\n\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no other\nconditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies (or copies in media that commonly have\nprinted covers) of the Document, numbering more than 100, and the\nDocument's license notice requires Cover Texts, you must enclose the\ncopies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na computer-network location from which the general network-using\npublic has access to download using public-standard network protocols\na complete Transparent copy of the Document, free of added material.\nIf you use the latter option, you must take reasonably prudent steps,\nwhen you begin distribution of Opaque copies in quantity, to ensure\nthat this Transparent copy will remain thus accessible at the stated\nlocation until at least one year after the last time you distribute an\nOpaque copy (directly or through your agents or retailers) of that\nedition to the public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to give\nthem a chance to provide you with an updated version of the Document.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\nB. List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has fewer than five),\n unless they release you from this requirement.\nC. State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\nF. Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\nG. Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve the section Entitled \"History\", Preserve its Title, and add\n to it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section Entitled \"History\" in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the \"History\" section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\nK. For any section Entitled \"Acknowledgements\" or \"Dedications\",\n Preserve the Title of the section, and preserve in the section all\n the substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\nM. Delete any section Entitled \"Endorsements\". Such a section\n may not be included in the Modified Version.\nN. Do not retitle any existing section to be Entitled \"Endorsements\"\n or to conflict in title with any Invariant Section.\nO. Preserve any Warranty Disclaimers.\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section Entitled \"Endorsements\", provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice, and that you preserve all their Warranty Disclaimers.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections Entitled \"History\"\nin the various original documents, forming one section Entitled\n\"History\"; likewise combine any sections Entitled \"Acknowledgements\",\nand any sections Entitled \"Dedications\". You must delete all sections\nEntitled \"Endorsements\".\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document and other documents\nreleased under this License, and replace the individual copies of this\nLicense in the various documents with a single copy that is included in\nthe collection, provided that you follow the rules of this License for\nverbatim copying of each of the documents in all other respects.\n\nYou may extract a single document from such a collection, and distribute\nit individually under this License, provided you insert a copy of this\nLicense into the extracted document, and follow this License in all\nother respects regarding verbatim copying of that document.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, is called an \"aggregate\" if the copyright\nresulting from the compilation is not used to limit the legal rights\nof the compilation's users beyond what the individual works permit.\nWhen the Document is included in an aggregate, this License does not\napply to the other works in the aggregate which are not themselves\nderivative works of the Document.\n\nIf the Cover Text requirement of section 3 is applicable to these\ncopies of the Document, then if the Document is less than one half of\nthe entire aggregate, the Document's Cover Texts may be placed on\ncovers that bracket the Document within the aggregate, or the\nelectronic equivalent of covers if the Document is in electronic form.\nOtherwise they must appear on printed covers that bracket the whole\naggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License, and all the license notices in the\nDocument, and any Warranty Disclaimers, provided that you also include\nthe original English version of this License and the original versions\nof those notices and disclaimers. In case of a disagreement between\nthe translation and the original version of this License or a notice\nor disclaimer, the original version will prevail.\n\nIf a section in the Document is Entitled \"Acknowledgements\",\n\"Dedications\", or \"History\", the requirement (section 4) to Preserve\nits Title (section 1) will typically require changing the actual\ntitle.\n\n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document except\nas expressly provided for under this License. Any other attempt to\ncopy, modify, sublicense or distribute the Document is void, and will\nautomatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new, revised versions\nof the GNU Free Documentation License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\n\n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.2\n or any later version published by the Free Software Foundation;\n with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n\nIf you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,\nreplace the \"with...Texts.\" line with this:\n\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n\nIf you have Invariant Sections without Cover Texts, or some other\ncombination of the three, merge those two alternatives to suit the\nsituation.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", + "json": "gfdl-1.2-plus.json", + "yaml": "gfdl-1.2-plus.yml", + "html": "gfdl-1.2-plus.html", + "license": "gfdl-1.2-plus.LICENSE" + }, + { + "license_key": "gfdl-1.3", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.3-only", + "other_spdx_license_keys": [ + "GFDL-1.3" + ], + "is_exception": false, + "is_deprecated": false, + "text": " GNU Free Documentation License\n Version 1.3, 3 November 2008\n\n\n Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.\n \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nfunctional and useful document \"free\" in the sense of freedom: to\nassure everyone the effective freedom to copy and redistribute it,\nwith or without modifying it, either commercially or noncommercially.\nSecondarily, this License preserves for the author and publisher a way\nto get credit for their work, while not being considered responsible\nfor modifications made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work, in any medium, that\ncontains a notice placed by the copyright holder saying it can be\ndistributed under the terms of this License. Such a notice grants a\nworld-wide, royalty-free license, unlimited in duration, to use that\nwork under the conditions stated herein. The \"Document\", below,\nrefers to any such manual or work. Any member of the public is a\nlicensee, and is addressed as \"you\". You accept the license if you\ncopy, modify or distribute the work in a way requiring permission\nunder copyright law.\n\nA \"Modified Version\" of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall\nsubject (or to related matters) and contains nothing that could fall\ndirectly within that overall subject. (Thus, if the Document is in\npart a textbook of mathematics, a Secondary Section may not explain\nany mathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License. If a\nsection does not fit the above definition of Secondary then it is not\nallowed to be designated as Invariant. The Document may contain zero\nInvariant Sections. If the Document does not identify any Invariant\nSections then there are none.\n\nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License. A Front-Cover Text may\nbe at most 5 words, and a Back-Cover Text may be at most 25 words.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, that is suitable for revising the document\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup, or absence of markup, has been arranged to thwart\nor discourage subsequent modification by readers is not Transparent.\nAn image format is not Transparent if used for any substantial amount\nof text. A copy that is not \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML, PostScript or PDF designed for human modification. Examples of\ntransparent image formats include PNG, XCF and JPG. Opaque formats\ninclude proprietary formats that can be read and edited only by\nproprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML, PostScript or PDF produced by some word\nprocessors for output purposes only.\n\nThe \"Title Page\" means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, \"Title Page\" means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\nThe \"publisher\" means any person or entity that distributes copies of\nthe Document to the public.\n\nA section \"Entitled XYZ\" means a named subunit of the Document whose\ntitle either is precisely XYZ or contains XYZ in parentheses following\ntext that translates XYZ in another language. (Here XYZ stands for a\nspecific section name mentioned below, such as \"Acknowledgements\",\n\"Dedications\", \"Endorsements\", or \"History\".) To \"Preserve the Title\"\nof such a section when you modify the Document means that it remains a\nsection \"Entitled XYZ\" according to this definition.\n\nThe Document may include Warranty Disclaimers next to the notice which\nstates that this License applies to the Document. These Warranty\nDisclaimers are considered to be included by reference in this\nLicense, but only as regards disclaiming warranties: any other\nimplication that these Warranty Disclaimers may have is void and has\nno effect on the meaning of this License.\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no\nother conditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies (or copies in media that commonly have\nprinted covers) of the Document, numbering more than 100, and the\nDocument's license notice requires Cover Texts, you must enclose the\ncopies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na computer-network location from which the general network-using\npublic has access to download using public-standard network protocols\na complete Transparent copy of the Document, free of added material.\nIf you use the latter option, you must take reasonably prudent steps,\nwhen you begin distribution of Opaque copies in quantity, to ensure\nthat this Transparent copy will remain thus accessible at the stated\nlocation until at least one year after the last time you distribute an\nOpaque copy (directly or through your agents or retailers) of that\nedition to the public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to\ngive them a chance to provide you with an updated version of the\nDocument.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\nB. List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has fewer than five),\n unless they release you from this requirement.\nC. State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\nF. Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\nG. Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve the section Entitled \"History\", Preserve its Title, and add\n to it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section Entitled \"History\" in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the \"History\" section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\nK. For any section Entitled \"Acknowledgements\" or \"Dedications\",\n Preserve the Title of the section, and preserve in the section all\n the substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\nM. Delete any section Entitled \"Endorsements\". Such a section\n may not be included in the Modified Version.\nN. Do not retitle any existing section to be Entitled \"Endorsements\"\n or to conflict in title with any Invariant Section.\nO. Preserve any Warranty Disclaimers.\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section Entitled \"Endorsements\", provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice, and that you preserve all their Warranty Disclaimers.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections Entitled \"History\"\nin the various original documents, forming one section Entitled\n\"History\"; likewise combine any sections Entitled \"Acknowledgements\",\nand any sections Entitled \"Dedications\". You must delete all sections\nEntitled \"Endorsements\".\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document and other\ndocuments released under this License, and replace the individual\ncopies of this License in the various documents with a single copy\nthat is included in the collection, provided that you follow the rules\nof this License for verbatim copying of each of the documents in all\nother respects.\n\nYou may extract a single document from such a collection, and\ndistribute it individually under this License, provided you insert a\ncopy of this License into the extracted document, and follow this\nLicense in all other respects regarding verbatim copying of that\ndocument.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, is called an \"aggregate\" if the copyright\nresulting from the compilation is not used to limit the legal rights\nof the compilation's users beyond what the individual works permit.\nWhen the Document is included in an aggregate, this License does not\napply to the other works in the aggregate which are not themselves\nderivative works of the Document.\n\nIf the Cover Text requirement of section 3 is applicable to these\ncopies of the Document, then if the Document is less than one half of\nthe entire aggregate, the Document's Cover Texts may be placed on\ncovers that bracket the Document within the aggregate, or the\nelectronic equivalent of covers if the Document is in electronic form.\nOtherwise they must appear on printed covers that bracket the whole\naggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License, and all the license notices in the\nDocument, and any Warranty Disclaimers, provided that you also include\nthe original English version of this License and the original versions\nof those notices and disclaimers. In case of a disagreement between\nthe translation and the original version of this License or a notice\nor disclaimer, the original version will prevail.\n\nIf a section in the Document is Entitled \"Acknowledgements\",\n\"Dedications\", or \"History\", the requirement (section 4) to Preserve\nits Title (section 1) will typically require changing the actual\ntitle.\n\n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document\nexcept as expressly provided under this License. Any attempt\notherwise to copy, modify, sublicense, or distribute it is void, and\nwill automatically terminate your rights under this License.\n\nHowever, if you cease all violation of this License, then your license\nfrom a particular copyright holder is reinstated (a) provisionally,\nunless and until the copyright holder explicitly and finally\nterminates your license, and (b) permanently, if the copyright holder\nfails to notify you of the violation by some reasonable means prior to\n60 days after the cessation.\n\nMoreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\nTermination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, receipt of a copy of some or all of the same material does\nnot give you any rights to use it.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new, revised versions of the\nGNU Free Documentation License from time to time. Such new versions\nwill be similar in spirit to the present version, but may differ in\ndetail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation. If the Document\nspecifies that a proxy can decide which future versions of this\nLicense can be used, that proxy's public statement of acceptance of a\nversion permanently authorizes you to choose that version for the\nDocument.\n\n11. RELICENSING\n\n\"Massive Multiauthor Collaboration Site\" (or \"MMC Site\") means any\nWorld Wide Web server that publishes copyrightable works and also\nprovides prominent facilities for anybody to edit those works. A\npublic wiki that anybody can edit is an example of such a server. A\n\"Massive Multiauthor Collaboration\" (or \"MMC\") contained in the site\nmeans any set of copyrightable works thus published on the MMC site.\n\n\"CC-BY-SA\" means the Creative Commons Attribution-Share Alike 3.0 \nlicense published by Creative Commons Corporation, a not-for-profit \ncorporation with a principal place of business in San Francisco, \nCalifornia, as well as future copyleft versions of that license \npublished by that same organization.\n\n\"Incorporate\" means to publish or republish a Document, in whole or in \npart, as part of another Document.\n\nAn MMC is \"eligible for relicensing\" if it is licensed under this \nLicense, and if all works that were first published under this License \nsomewhere other than this MMC, and subsequently incorporated in whole or \nin part into the MMC, (1) had no cover texts or invariant sections, and \n(2) were thus incorporated prior to November 1, 2008.\n\nThe operator of an MMC Site may republish an MMC contained in the site\nunder CC-BY-SA on the same site at any time before August 1, 2009,\nprovided the MMC is eligible for relicensing.\n\n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3\n or any later version published by the Free Software Foundation;\n with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n\nIf you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,\nreplace the \"with...Texts.\" line with this:\n\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n\nIf you have Invariant Sections without Cover Texts, or some other\ncombination of the three, merge those two alternatives to suit the\nsituation.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", + "json": "gfdl-1.3.json", + "yaml": "gfdl-1.3.yml", + "html": "gfdl-1.3.html", + "license": "gfdl-1.3.LICENSE" + }, + { + "license_key": "gfdl-1.3-invariants-only", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.3-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.3; with with the Invariant Sections being LIST THEIR\nTITLES , with the Front-Cover Texts being LIST , and with the Back-Cover\nTexts being LIST . A copy of the license is included in the section\nentitled \"GNU Free Documentation License\".\n\n GNU Free Documentation License\n Version 1.3, 3 November 2008\n\n\n Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.\n \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nfunctional and useful document \"free\" in the sense of freedom: to\nassure everyone the effective freedom to copy and redistribute it,\nwith or without modifying it, either commercially or noncommercially.\nSecondarily, this License preserves for the author and publisher a way\nto get credit for their work, while not being considered responsible\nfor modifications made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work, in any medium, that\ncontains a notice placed by the copyright holder saying it can be\ndistributed under the terms of this License. Such a notice grants a\nworld-wide, royalty-free license, unlimited in duration, to use that\nwork under the conditions stated herein. The \"Document\", below,\nrefers to any such manual or work. Any member of the public is a\nlicensee, and is addressed as \"you\". You accept the license if you\ncopy, modify or distribute the work in a way requiring permission\nunder copyright law.\n\nA \"Modified Version\" of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall\nsubject (or to related matters) and contains nothing that could fall\ndirectly within that overall subject. (Thus, if the Document is in\npart a textbook of mathematics, a Secondary Section may not explain\nany mathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License. If a\nsection does not fit the above definition of Secondary then it is not\nallowed to be designated as Invariant. The Document may contain zero\nInvariant Sections. If the Document does not identify any Invariant\nSections then there are none.\n\nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License. A Front-Cover Text may\nbe at most 5 words, and a Back-Cover Text may be at most 25 words.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, that is suitable for revising the document\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup, or absence of markup, has been arranged to thwart\nor discourage subsequent modification by readers is not Transparent.\nAn image format is not Transparent if used for any substantial amount\nof text. A copy that is not \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML, PostScript or PDF designed for human modification. Examples of\ntransparent image formats include PNG, XCF and JPG. Opaque formats\ninclude proprietary formats that can be read and edited only by\nproprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML, PostScript or PDF produced by some word\nprocessors for output purposes only.\n\nThe \"Title Page\" means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, \"Title Page\" means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\nThe \"publisher\" means any person or entity that distributes copies of\nthe Document to the public.\n\nA section \"Entitled XYZ\" means a named subunit of the Document whose\ntitle either is precisely XYZ or contains XYZ in parentheses following\ntext that translates XYZ in another language. (Here XYZ stands for a\nspecific section name mentioned below, such as \"Acknowledgements\",\n\"Dedications\", \"Endorsements\", or \"History\".) To \"Preserve the Title\"\nof such a section when you modify the Document means that it remains a\nsection \"Entitled XYZ\" according to this definition.\n\nThe Document may include Warranty Disclaimers next to the notice which\nstates that this License applies to the Document. These Warranty\nDisclaimers are considered to be included by reference in this\nLicense, but only as regards disclaiming warranties: any other\nimplication that these Warranty Disclaimers may have is void and has\nno effect on the meaning of this License.\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no\nother conditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies (or copies in media that commonly have\nprinted covers) of the Document, numbering more than 100, and the\nDocument's license notice requires Cover Texts, you must enclose the\ncopies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na computer-network location from which the general network-using\npublic has access to download using public-standard network protocols\na complete Transparent copy of the Document, free of added material.\nIf you use the latter option, you must take reasonably prudent steps,\nwhen you begin distribution of Opaque copies in quantity, to ensure\nthat this Transparent copy will remain thus accessible at the stated\nlocation until at least one year after the last time you distribute an\nOpaque copy (directly or through your agents or retailers) of that\nedition to the public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to\ngive them a chance to provide you with an updated version of the\nDocument.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\nB. List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has fewer than five),\n unless they release you from this requirement.\nC. State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\nF. Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\nG. Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve the section Entitled \"History\", Preserve its Title, and add\n to it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section Entitled \"History\" in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the \"History\" section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\nK. For any section Entitled \"Acknowledgements\" or \"Dedications\",\n Preserve the Title of the section, and preserve in the section all\n the substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\nM. Delete any section Entitled \"Endorsements\". Such a section\n may not be included in the Modified Version.\nN. Do not retitle any existing section to be Entitled \"Endorsements\"\n or to conflict in title with any Invariant Section.\nO. Preserve any Warranty Disclaimers.\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section Entitled \"Endorsements\", provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice, and that you preserve all their Warranty Disclaimers.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections Entitled \"History\"\nin the various original documents, forming one section Entitled\n\"History\"; likewise combine any sections Entitled \"Acknowledgements\",\nand any sections Entitled \"Dedications\". You must delete all sections\nEntitled \"Endorsements\".\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document and other\ndocuments released under this License, and replace the individual\ncopies of this License in the various documents with a single copy\nthat is included in the collection, provided that you follow the rules\nof this License for verbatim copying of each of the documents in all\nother respects.\n\nYou may extract a single document from such a collection, and\ndistribute it individually under this License, provided you insert a\ncopy of this License into the extracted document, and follow this\nLicense in all other respects regarding verbatim copying of that\ndocument.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, is called an \"aggregate\" if the copyright\nresulting from the compilation is not used to limit the legal rights\nof the compilation's users beyond what the individual works permit.\nWhen the Document is included in an aggregate, this License does not\napply to the other works in the aggregate which are not themselves\nderivative works of the Document.\n\nIf the Cover Text requirement of section 3 is applicable to these\ncopies of the Document, then if the Document is less than one half of\nthe entire aggregate, the Document's Cover Texts may be placed on\ncovers that bracket the Document within the aggregate, or the\nelectronic equivalent of covers if the Document is in electronic form.\nOtherwise they must appear on printed covers that bracket the whole\naggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License, and all the license notices in the\nDocument, and any Warranty Disclaimers, provided that you also include\nthe original English version of this License and the original versions\nof those notices and disclaimers. In case of a disagreement between\nthe translation and the original version of this License or a notice\nor disclaimer, the original version will prevail.\n\nIf a section in the Document is Entitled \"Acknowledgements\",\n\"Dedications\", or \"History\", the requirement (section 4) to Preserve\nits Title (section 1) will typically require changing the actual\ntitle.\n\n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document\nexcept as expressly provided under this License. Any attempt\notherwise to copy, modify, sublicense, or distribute it is void, and\nwill automatically terminate your rights under this License.\n\nHowever, if you cease all violation of this License, then your license\nfrom a particular copyright holder is reinstated (a) provisionally,\nunless and until the copyright holder explicitly and finally\nterminates your license, and (b) permanently, if the copyright holder\nfails to notify you of the violation by some reasonable means prior to\n60 days after the cessation.\n\nMoreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\nTermination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, receipt of a copy of some or all of the same material does\nnot give you any rights to use it.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new, revised versions of the\nGNU Free Documentation License from time to time. Such new versions\nwill be similar in spirit to the present version, but may differ in\ndetail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation. If the Document\nspecifies that a proxy can decide which future versions of this\nLicense can be used, that proxy's public statement of acceptance of a\nversion permanently authorizes you to choose that version for the\nDocument.\n\n11. RELICENSING\n\n\"Massive Multiauthor Collaboration Site\" (or \"MMC Site\") means any\nWorld Wide Web server that publishes copyrightable works and also\nprovides prominent facilities for anybody to edit those works. A\npublic wiki that anybody can edit is an example of such a server. A\n\"Massive Multiauthor Collaboration\" (or \"MMC\") contained in the site\nmeans any set of copyrightable works thus published on the MMC site.\n\n\"CC-BY-SA\" means the Creative Commons Attribution-Share Alike 3.0 \nlicense published by Creative Commons Corporation, a not-for-profit \ncorporation with a principal place of business in San Francisco, \nCalifornia, as well as future copyleft versions of that license \npublished by that same organization.\n\n\"Incorporate\" means to publish or republish a Document, in whole or in \npart, as part of another Document.\n\nAn MMC is \"eligible for relicensing\" if it is licensed under this \nLicense, and if all works that were first published under this License \nsomewhere other than this MMC, and subsequently incorporated in whole or \nin part into the MMC, (1) had no cover texts or invariant sections, and \n(2) were thus incorporated prior to November 1, 2008.\n\nThe operator of an MMC Site may republish an MMC contained in the site\nunder CC-BY-SA on the same site at any time before August 1, 2009,\nprovided the MMC is eligible for relicensing.\n\n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3\n or any later version published by the Free Software Foundation;\n with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n\nIf you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,\nreplace the \"with...Texts.\" line with this:\n\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n\nIf you have Invariant Sections without Cover Texts, or some other\ncombination of the three, merge those two alternatives to suit the\nsituation.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", + "json": "gfdl-1.3-invariants-only.json", + "yaml": "gfdl-1.3-invariants-only.yml", + "html": "gfdl-1.3-invariants-only.html", + "license": "gfdl-1.3-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.3-invariants-or-later", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.3-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.3 or any later version published by the Free Software\nFoundation; with the Invariant Sections being LIST THEIR TITLES , with the\nFront-Cover Texts being LIST , and with the Back-Cover Texts being LIST . A\ncopy of the license is included in the section entitled \"GNU Free\nDocumentation License\".\n\n GNU Free Documentation License\n Version 1.3, 3 November 2008\n\n\n Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.\n \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nfunctional and useful document \"free\" in the sense of freedom: to\nassure everyone the effective freedom to copy and redistribute it,\nwith or without modifying it, either commercially or noncommercially.\nSecondarily, this License preserves for the author and publisher a way\nto get credit for their work, while not being considered responsible\nfor modifications made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work, in any medium, that\ncontains a notice placed by the copyright holder saying it can be\ndistributed under the terms of this License. Such a notice grants a\nworld-wide, royalty-free license, unlimited in duration, to use that\nwork under the conditions stated herein. The \"Document\", below,\nrefers to any such manual or work. Any member of the public is a\nlicensee, and is addressed as \"you\". You accept the license if you\ncopy, modify or distribute the work in a way requiring permission\nunder copyright law.\n\nA \"Modified Version\" of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall\nsubject (or to related matters) and contains nothing that could fall\ndirectly within that overall subject. (Thus, if the Document is in\npart a textbook of mathematics, a Secondary Section may not explain\nany mathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License. If a\nsection does not fit the above definition of Secondary then it is not\nallowed to be designated as Invariant. The Document may contain zero\nInvariant Sections. If the Document does not identify any Invariant\nSections then there are none.\n\nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License. A Front-Cover Text may\nbe at most 5 words, and a Back-Cover Text may be at most 25 words.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, that is suitable for revising the document\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup, or absence of markup, has been arranged to thwart\nor discourage subsequent modification by readers is not Transparent.\nAn image format is not Transparent if used for any substantial amount\nof text. A copy that is not \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML, PostScript or PDF designed for human modification. Examples of\ntransparent image formats include PNG, XCF and JPG. Opaque formats\ninclude proprietary formats that can be read and edited only by\nproprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML, PostScript or PDF produced by some word\nprocessors for output purposes only.\n\nThe \"Title Page\" means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, \"Title Page\" means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\nThe \"publisher\" means any person or entity that distributes copies of\nthe Document to the public.\n\nA section \"Entitled XYZ\" means a named subunit of the Document whose\ntitle either is precisely XYZ or contains XYZ in parentheses following\ntext that translates XYZ in another language. (Here XYZ stands for a\nspecific section name mentioned below, such as \"Acknowledgements\",\n\"Dedications\", \"Endorsements\", or \"History\".) To \"Preserve the Title\"\nof such a section when you modify the Document means that it remains a\nsection \"Entitled XYZ\" according to this definition.\n\nThe Document may include Warranty Disclaimers next to the notice which\nstates that this License applies to the Document. These Warranty\nDisclaimers are considered to be included by reference in this\nLicense, but only as regards disclaiming warranties: any other\nimplication that these Warranty Disclaimers may have is void and has\nno effect on the meaning of this License.\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no\nother conditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies (or copies in media that commonly have\nprinted covers) of the Document, numbering more than 100, and the\nDocument's license notice requires Cover Texts, you must enclose the\ncopies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na computer-network location from which the general network-using\npublic has access to download using public-standard network protocols\na complete Transparent copy of the Document, free of added material.\nIf you use the latter option, you must take reasonably prudent steps,\nwhen you begin distribution of Opaque copies in quantity, to ensure\nthat this Transparent copy will remain thus accessible at the stated\nlocation until at least one year after the last time you distribute an\nOpaque copy (directly or through your agents or retailers) of that\nedition to the public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to\ngive them a chance to provide you with an updated version of the\nDocument.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\nB. List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has fewer than five),\n unless they release you from this requirement.\nC. State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\nF. Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\nG. Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve the section Entitled \"History\", Preserve its Title, and add\n to it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section Entitled \"History\" in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the \"History\" section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\nK. For any section Entitled \"Acknowledgements\" or \"Dedications\",\n Preserve the Title of the section, and preserve in the section all\n the substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\nM. Delete any section Entitled \"Endorsements\". Such a section\n may not be included in the Modified Version.\nN. Do not retitle any existing section to be Entitled \"Endorsements\"\n or to conflict in title with any Invariant Section.\nO. Preserve any Warranty Disclaimers.\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section Entitled \"Endorsements\", provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice, and that you preserve all their Warranty Disclaimers.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections Entitled \"History\"\nin the various original documents, forming one section Entitled\n\"History\"; likewise combine any sections Entitled \"Acknowledgements\",\nand any sections Entitled \"Dedications\". You must delete all sections\nEntitled \"Endorsements\".\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document and other\ndocuments released under this License, and replace the individual\ncopies of this License in the various documents with a single copy\nthat is included in the collection, provided that you follow the rules\nof this License for verbatim copying of each of the documents in all\nother respects.\n\nYou may extract a single document from such a collection, and\ndistribute it individually under this License, provided you insert a\ncopy of this License into the extracted document, and follow this\nLicense in all other respects regarding verbatim copying of that\ndocument.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, is called an \"aggregate\" if the copyright\nresulting from the compilation is not used to limit the legal rights\nof the compilation's users beyond what the individual works permit.\nWhen the Document is included in an aggregate, this License does not\napply to the other works in the aggregate which are not themselves\nderivative works of the Document.\n\nIf the Cover Text requirement of section 3 is applicable to these\ncopies of the Document, then if the Document is less than one half of\nthe entire aggregate, the Document's Cover Texts may be placed on\ncovers that bracket the Document within the aggregate, or the\nelectronic equivalent of covers if the Document is in electronic form.\nOtherwise they must appear on printed covers that bracket the whole\naggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License, and all the license notices in the\nDocument, and any Warranty Disclaimers, provided that you also include\nthe original English version of this License and the original versions\nof those notices and disclaimers. In case of a disagreement between\nthe translation and the original version of this License or a notice\nor disclaimer, the original version will prevail.\n\nIf a section in the Document is Entitled \"Acknowledgements\",\n\"Dedications\", or \"History\", the requirement (section 4) to Preserve\nits Title (section 1) will typically require changing the actual\ntitle.\n\n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document\nexcept as expressly provided under this License. Any attempt\notherwise to copy, modify, sublicense, or distribute it is void, and\nwill automatically terminate your rights under this License.\n\nHowever, if you cease all violation of this License, then your license\nfrom a particular copyright holder is reinstated (a) provisionally,\nunless and until the copyright holder explicitly and finally\nterminates your license, and (b) permanently, if the copyright holder\nfails to notify you of the violation by some reasonable means prior to\n60 days after the cessation.\n\nMoreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\nTermination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, receipt of a copy of some or all of the same material does\nnot give you any rights to use it.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new, revised versions of the\nGNU Free Documentation License from time to time. Such new versions\nwill be similar in spirit to the present version, but may differ in\ndetail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation. If the Document\nspecifies that a proxy can decide which future versions of this\nLicense can be used, that proxy's public statement of acceptance of a\nversion permanently authorizes you to choose that version for the\nDocument.\n\n11. RELICENSING\n\n\"Massive Multiauthor Collaboration Site\" (or \"MMC Site\") means any\nWorld Wide Web server that publishes copyrightable works and also\nprovides prominent facilities for anybody to edit those works. A\npublic wiki that anybody can edit is an example of such a server. A\n\"Massive Multiauthor Collaboration\" (or \"MMC\") contained in the site\nmeans any set of copyrightable works thus published on the MMC site.\n\n\"CC-BY-SA\" means the Creative Commons Attribution-Share Alike 3.0 \nlicense published by Creative Commons Corporation, a not-for-profit \ncorporation with a principal place of business in San Francisco, \nCalifornia, as well as future copyleft versions of that license \npublished by that same organization.\n\n\"Incorporate\" means to publish or republish a Document, in whole or in \npart, as part of another Document.\n\nAn MMC is \"eligible for relicensing\" if it is licensed under this \nLicense, and if all works that were first published under this License \nsomewhere other than this MMC, and subsequently incorporated in whole or \nin part into the MMC, (1) had no cover texts or invariant sections, and \n(2) were thus incorporated prior to November 1, 2008.\n\nThe operator of an MMC Site may republish an MMC contained in the site\nunder CC-BY-SA on the same site at any time before August 1, 2009,\nprovided the MMC is eligible for relicensing.\n\n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3\n or any later version published by the Free Software Foundation;\n with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n\nIf you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,\nreplace the \"with...Texts.\" line with this:\n\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n\nIf you have Invariant Sections without Cover Texts, or some other\ncombination of the three, merge those two alternatives to suit the\nsituation.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", + "json": "gfdl-1.3-invariants-or-later.json", + "yaml": "gfdl-1.3-invariants-or-later.yml", + "html": "gfdl-1.3-invariants-or-later.html", + "license": "gfdl-1.3-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.3-no-invariants-only", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.3-no-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.3; with no Invariant Sections, no Front-Cover Texts, and\nno Back-Cover Texts. A copy of the license is included in the section\nentitled \"GNU Free Documentation License\".\n\n GNU Free Documentation License\n Version 1.3, 3 November 2008\n\n\n Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.\n \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nfunctional and useful document \"free\" in the sense of freedom: to\nassure everyone the effective freedom to copy and redistribute it,\nwith or without modifying it, either commercially or noncommercially.\nSecondarily, this License preserves for the author and publisher a way\nto get credit for their work, while not being considered responsible\nfor modifications made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work, in any medium, that\ncontains a notice placed by the copyright holder saying it can be\ndistributed under the terms of this License. Such a notice grants a\nworld-wide, royalty-free license, unlimited in duration, to use that\nwork under the conditions stated herein. The \"Document\", below,\nrefers to any such manual or work. Any member of the public is a\nlicensee, and is addressed as \"you\". You accept the license if you\ncopy, modify or distribute the work in a way requiring permission\nunder copyright law.\n\nA \"Modified Version\" of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall\nsubject (or to related matters) and contains nothing that could fall\ndirectly within that overall subject. (Thus, if the Document is in\npart a textbook of mathematics, a Secondary Section may not explain\nany mathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License. If a\nsection does not fit the above definition of Secondary then it is not\nallowed to be designated as Invariant. The Document may contain zero\nInvariant Sections. If the Document does not identify any Invariant\nSections then there are none.\n\nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License. A Front-Cover Text may\nbe at most 5 words, and a Back-Cover Text may be at most 25 words.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, that is suitable for revising the document\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup, or absence of markup, has been arranged to thwart\nor discourage subsequent modification by readers is not Transparent.\nAn image format is not Transparent if used for any substantial amount\nof text. A copy that is not \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML, PostScript or PDF designed for human modification. Examples of\ntransparent image formats include PNG, XCF and JPG. Opaque formats\ninclude proprietary formats that can be read and edited only by\nproprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML, PostScript or PDF produced by some word\nprocessors for output purposes only.\n\nThe \"Title Page\" means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, \"Title Page\" means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\nThe \"publisher\" means any person or entity that distributes copies of\nthe Document to the public.\n\nA section \"Entitled XYZ\" means a named subunit of the Document whose\ntitle either is precisely XYZ or contains XYZ in parentheses following\ntext that translates XYZ in another language. (Here XYZ stands for a\nspecific section name mentioned below, such as \"Acknowledgements\",\n\"Dedications\", \"Endorsements\", or \"History\".) To \"Preserve the Title\"\nof such a section when you modify the Document means that it remains a\nsection \"Entitled XYZ\" according to this definition.\n\nThe Document may include Warranty Disclaimers next to the notice which\nstates that this License applies to the Document. These Warranty\nDisclaimers are considered to be included by reference in this\nLicense, but only as regards disclaiming warranties: any other\nimplication that these Warranty Disclaimers may have is void and has\nno effect on the meaning of this License.\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no\nother conditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies (or copies in media that commonly have\nprinted covers) of the Document, numbering more than 100, and the\nDocument's license notice requires Cover Texts, you must enclose the\ncopies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na computer-network location from which the general network-using\npublic has access to download using public-standard network protocols\na complete Transparent copy of the Document, free of added material.\nIf you use the latter option, you must take reasonably prudent steps,\nwhen you begin distribution of Opaque copies in quantity, to ensure\nthat this Transparent copy will remain thus accessible at the stated\nlocation until at least one year after the last time you distribute an\nOpaque copy (directly or through your agents or retailers) of that\nedition to the public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to\ngive them a chance to provide you with an updated version of the\nDocument.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\nB. List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has fewer than five),\n unless they release you from this requirement.\nC. State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\nF. Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\nG. Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve the section Entitled \"History\", Preserve its Title, and add\n to it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section Entitled \"History\" in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the \"History\" section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\nK. For any section Entitled \"Acknowledgements\" or \"Dedications\",\n Preserve the Title of the section, and preserve in the section all\n the substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\nM. Delete any section Entitled \"Endorsements\". Such a section\n may not be included in the Modified Version.\nN. Do not retitle any existing section to be Entitled \"Endorsements\"\n or to conflict in title with any Invariant Section.\nO. Preserve any Warranty Disclaimers.\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section Entitled \"Endorsements\", provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice, and that you preserve all their Warranty Disclaimers.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections Entitled \"History\"\nin the various original documents, forming one section Entitled\n\"History\"; likewise combine any sections Entitled \"Acknowledgements\",\nand any sections Entitled \"Dedications\". You must delete all sections\nEntitled \"Endorsements\".\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document and other\ndocuments released under this License, and replace the individual\ncopies of this License in the various documents with a single copy\nthat is included in the collection, provided that you follow the rules\nof this License for verbatim copying of each of the documents in all\nother respects.\n\nYou may extract a single document from such a collection, and\ndistribute it individually under this License, provided you insert a\ncopy of this License into the extracted document, and follow this\nLicense in all other respects regarding verbatim copying of that\ndocument.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, is called an \"aggregate\" if the copyright\nresulting from the compilation is not used to limit the legal rights\nof the compilation's users beyond what the individual works permit.\nWhen the Document is included in an aggregate, this License does not\napply to the other works in the aggregate which are not themselves\nderivative works of the Document.\n\nIf the Cover Text requirement of section 3 is applicable to these\ncopies of the Document, then if the Document is less than one half of\nthe entire aggregate, the Document's Cover Texts may be placed on\ncovers that bracket the Document within the aggregate, or the\nelectronic equivalent of covers if the Document is in electronic form.\nOtherwise they must appear on printed covers that bracket the whole\naggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License, and all the license notices in the\nDocument, and any Warranty Disclaimers, provided that you also include\nthe original English version of this License and the original versions\nof those notices and disclaimers. In case of a disagreement between\nthe translation and the original version of this License or a notice\nor disclaimer, the original version will prevail.\n\nIf a section in the Document is Entitled \"Acknowledgements\",\n\"Dedications\", or \"History\", the requirement (section 4) to Preserve\nits Title (section 1) will typically require changing the actual\ntitle.\n\n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document\nexcept as expressly provided under this License. Any attempt\notherwise to copy, modify, sublicense, or distribute it is void, and\nwill automatically terminate your rights under this License.\n\nHowever, if you cease all violation of this License, then your license\nfrom a particular copyright holder is reinstated (a) provisionally,\nunless and until the copyright holder explicitly and finally\nterminates your license, and (b) permanently, if the copyright holder\nfails to notify you of the violation by some reasonable means prior to\n60 days after the cessation.\n\nMoreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\nTermination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, receipt of a copy of some or all of the same material does\nnot give you any rights to use it.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new, revised versions of the\nGNU Free Documentation License from time to time. Such new versions\nwill be similar in spirit to the present version, but may differ in\ndetail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation. If the Document\nspecifies that a proxy can decide which future versions of this\nLicense can be used, that proxy's public statement of acceptance of a\nversion permanently authorizes you to choose that version for the\nDocument.\n\n11. RELICENSING\n\n\"Massive Multiauthor Collaboration Site\" (or \"MMC Site\") means any\nWorld Wide Web server that publishes copyrightable works and also\nprovides prominent facilities for anybody to edit those works. A\npublic wiki that anybody can edit is an example of such a server. A\n\"Massive Multiauthor Collaboration\" (or \"MMC\") contained in the site\nmeans any set of copyrightable works thus published on the MMC site.\n\n\"CC-BY-SA\" means the Creative Commons Attribution-Share Alike 3.0 \nlicense published by Creative Commons Corporation, a not-for-profit \ncorporation with a principal place of business in San Francisco, \nCalifornia, as well as future copyleft versions of that license \npublished by that same organization.\n\n\"Incorporate\" means to publish or republish a Document, in whole or in \npart, as part of another Document.\n\nAn MMC is \"eligible for relicensing\" if it is licensed under this \nLicense, and if all works that were first published under this License \nsomewhere other than this MMC, and subsequently incorporated in whole or \nin part into the MMC, (1) had no cover texts or invariant sections, and \n(2) were thus incorporated prior to November 1, 2008.\n\nThe operator of an MMC Site may republish an MMC contained in the site\nunder CC-BY-SA on the same site at any time before August 1, 2009,\nprovided the MMC is eligible for relicensing.\n\n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3\n or any later version published by the Free Software Foundation;\n with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n\nIf you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,\nreplace the \"with...Texts.\" line with this:\n\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n\nIf you have Invariant Sections without Cover Texts, or some other\ncombination of the three, merge those two alternatives to suit the\nsituation.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", + "json": "gfdl-1.3-no-invariants-only.json", + "yaml": "gfdl-1.3-no-invariants-only.yml", + "html": "gfdl-1.3-no-invariants-only.html", + "license": "gfdl-1.3-no-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.3-no-invariants-or-later", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.3-no-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to copy, distribute\nand/or modify this document under the terms of the GNU Free Documentation\nLicense, Version 1.3 or any later version published by the Free Software\nFoundation; with no Invariant Sections, no Front-Cover Texts, and no Back-\nCover Texts. A copy of the license is included in the section entitled \"GNU\nFree Documentation License\".\n\n GNU Free Documentation License\n Version 1.3, 3 November 2008\n\n\n Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.\n \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nfunctional and useful document \"free\" in the sense of freedom: to\nassure everyone the effective freedom to copy and redistribute it,\nwith or without modifying it, either commercially or noncommercially.\nSecondarily, this License preserves for the author and publisher a way\nto get credit for their work, while not being considered responsible\nfor modifications made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work, in any medium, that\ncontains a notice placed by the copyright holder saying it can be\ndistributed under the terms of this License. Such a notice grants a\nworld-wide, royalty-free license, unlimited in duration, to use that\nwork under the conditions stated herein. The \"Document\", below,\nrefers to any such manual or work. Any member of the public is a\nlicensee, and is addressed as \"you\". You accept the license if you\ncopy, modify or distribute the work in a way requiring permission\nunder copyright law.\n\nA \"Modified Version\" of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall\nsubject (or to related matters) and contains nothing that could fall\ndirectly within that overall subject. (Thus, if the Document is in\npart a textbook of mathematics, a Secondary Section may not explain\nany mathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License. If a\nsection does not fit the above definition of Secondary then it is not\nallowed to be designated as Invariant. The Document may contain zero\nInvariant Sections. If the Document does not identify any Invariant\nSections then there are none.\n\nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License. A Front-Cover Text may\nbe at most 5 words, and a Back-Cover Text may be at most 25 words.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, that is suitable for revising the document\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup, or absence of markup, has been arranged to thwart\nor discourage subsequent modification by readers is not Transparent.\nAn image format is not Transparent if used for any substantial amount\nof text. A copy that is not \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML, PostScript or PDF designed for human modification. Examples of\ntransparent image formats include PNG, XCF and JPG. Opaque formats\ninclude proprietary formats that can be read and edited only by\nproprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML, PostScript or PDF produced by some word\nprocessors for output purposes only.\n\nThe \"Title Page\" means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, \"Title Page\" means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\nThe \"publisher\" means any person or entity that distributes copies of\nthe Document to the public.\n\nA section \"Entitled XYZ\" means a named subunit of the Document whose\ntitle either is precisely XYZ or contains XYZ in parentheses following\ntext that translates XYZ in another language. (Here XYZ stands for a\nspecific section name mentioned below, such as \"Acknowledgements\",\n\"Dedications\", \"Endorsements\", or \"History\".) To \"Preserve the Title\"\nof such a section when you modify the Document means that it remains a\nsection \"Entitled XYZ\" according to this definition.\n\nThe Document may include Warranty Disclaimers next to the notice which\nstates that this License applies to the Document. These Warranty\nDisclaimers are considered to be included by reference in this\nLicense, but only as regards disclaiming warranties: any other\nimplication that these Warranty Disclaimers may have is void and has\nno effect on the meaning of this License.\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no\nother conditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies (or copies in media that commonly have\nprinted covers) of the Document, numbering more than 100, and the\nDocument's license notice requires Cover Texts, you must enclose the\ncopies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na computer-network location from which the general network-using\npublic has access to download using public-standard network protocols\na complete Transparent copy of the Document, free of added material.\nIf you use the latter option, you must take reasonably prudent steps,\nwhen you begin distribution of Opaque copies in quantity, to ensure\nthat this Transparent copy will remain thus accessible at the stated\nlocation until at least one year after the last time you distribute an\nOpaque copy (directly or through your agents or retailers) of that\nedition to the public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to\ngive them a chance to provide you with an updated version of the\nDocument.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\nB. List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has fewer than five),\n unless they release you from this requirement.\nC. State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\nF. Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\nG. Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve the section Entitled \"History\", Preserve its Title, and add\n to it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section Entitled \"History\" in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the \"History\" section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\nK. For any section Entitled \"Acknowledgements\" or \"Dedications\",\n Preserve the Title of the section, and preserve in the section all\n the substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\nM. Delete any section Entitled \"Endorsements\". Such a section\n may not be included in the Modified Version.\nN. Do not retitle any existing section to be Entitled \"Endorsements\"\n or to conflict in title with any Invariant Section.\nO. Preserve any Warranty Disclaimers.\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section Entitled \"Endorsements\", provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice, and that you preserve all their Warranty Disclaimers.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections Entitled \"History\"\nin the various original documents, forming one section Entitled\n\"History\"; likewise combine any sections Entitled \"Acknowledgements\",\nand any sections Entitled \"Dedications\". You must delete all sections\nEntitled \"Endorsements\".\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document and other\ndocuments released under this License, and replace the individual\ncopies of this License in the various documents with a single copy\nthat is included in the collection, provided that you follow the rules\nof this License for verbatim copying of each of the documents in all\nother respects.\n\nYou may extract a single document from such a collection, and\ndistribute it individually under this License, provided you insert a\ncopy of this License into the extracted document, and follow this\nLicense in all other respects regarding verbatim copying of that\ndocument.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, is called an \"aggregate\" if the copyright\nresulting from the compilation is not used to limit the legal rights\nof the compilation's users beyond what the individual works permit.\nWhen the Document is included in an aggregate, this License does not\napply to the other works in the aggregate which are not themselves\nderivative works of the Document.\n\nIf the Cover Text requirement of section 3 is applicable to these\ncopies of the Document, then if the Document is less than one half of\nthe entire aggregate, the Document's Cover Texts may be placed on\ncovers that bracket the Document within the aggregate, or the\nelectronic equivalent of covers if the Document is in electronic form.\nOtherwise they must appear on printed covers that bracket the whole\naggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License, and all the license notices in the\nDocument, and any Warranty Disclaimers, provided that you also include\nthe original English version of this License and the original versions\nof those notices and disclaimers. In case of a disagreement between\nthe translation and the original version of this License or a notice\nor disclaimer, the original version will prevail.\n\nIf a section in the Document is Entitled \"Acknowledgements\",\n\"Dedications\", or \"History\", the requirement (section 4) to Preserve\nits Title (section 1) will typically require changing the actual\ntitle.\n\n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document\nexcept as expressly provided under this License. Any attempt\notherwise to copy, modify, sublicense, or distribute it is void, and\nwill automatically terminate your rights under this License.\n\nHowever, if you cease all violation of this License, then your license\nfrom a particular copyright holder is reinstated (a) provisionally,\nunless and until the copyright holder explicitly and finally\nterminates your license, and (b) permanently, if the copyright holder\nfails to notify you of the violation by some reasonable means prior to\n60 days after the cessation.\n\nMoreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\nTermination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, receipt of a copy of some or all of the same material does\nnot give you any rights to use it.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new, revised versions of the\nGNU Free Documentation License from time to time. Such new versions\nwill be similar in spirit to the present version, but may differ in\ndetail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation. If the Document\nspecifies that a proxy can decide which future versions of this\nLicense can be used, that proxy's public statement of acceptance of a\nversion permanently authorizes you to choose that version for the\nDocument.\n\n11. RELICENSING\n\n\"Massive Multiauthor Collaboration Site\" (or \"MMC Site\") means any\nWorld Wide Web server that publishes copyrightable works and also\nprovides prominent facilities for anybody to edit those works. A\npublic wiki that anybody can edit is an example of such a server. A\n\"Massive Multiauthor Collaboration\" (or \"MMC\") contained in the site\nmeans any set of copyrightable works thus published on the MMC site.\n\n\"CC-BY-SA\" means the Creative Commons Attribution-Share Alike 3.0 \nlicense published by Creative Commons Corporation, a not-for-profit \ncorporation with a principal place of business in San Francisco, \nCalifornia, as well as future copyleft versions of that license \npublished by that same organization.\n\n\"Incorporate\" means to publish or republish a Document, in whole or in \npart, as part of another Document.\n\nAn MMC is \"eligible for relicensing\" if it is licensed under this \nLicense, and if all works that were first published under this License \nsomewhere other than this MMC, and subsequently incorporated in whole or \nin part into the MMC, (1) had no cover texts or invariant sections, and \n(2) were thus incorporated prior to November 1, 2008.\n\nThe operator of an MMC Site may republish an MMC contained in the site\nunder CC-BY-SA on the same site at any time before August 1, 2009,\nprovided the MMC is eligible for relicensing.\n\n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3\n or any later version published by the Free Software Foundation;\n with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n\nIf you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,\nreplace the \"with...Texts.\" line with this:\n\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n\nIf you have Invariant Sections without Cover Texts, or some other\ncombination of the three, merge those two alternatives to suit the\nsituation.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", + "json": "gfdl-1.3-no-invariants-or-later.json", + "yaml": "gfdl-1.3-no-invariants-or-later.yml", + "html": "gfdl-1.3-no-invariants-or-later.html", + "license": "gfdl-1.3-no-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.3-plus", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.3-or-later", + "other_spdx_license_keys": [ + "GFDL-1.3+" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3\nor any later version published by the Free Software Foundation.\n\n GNU Free Documentation License\n Version 1.3, 3 November 2008\n\n\n Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.\n \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nfunctional and useful document \"free\" in the sense of freedom: to\nassure everyone the effective freedom to copy and redistribute it,\nwith or without modifying it, either commercially or noncommercially.\nSecondarily, this License preserves for the author and publisher a way\nto get credit for their work, while not being considered responsible\nfor modifications made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work, in any medium, that\ncontains a notice placed by the copyright holder saying it can be\ndistributed under the terms of this License. Such a notice grants a\nworld-wide, royalty-free license, unlimited in duration, to use that\nwork under the conditions stated herein. The \"Document\", below,\nrefers to any such manual or work. Any member of the public is a\nlicensee, and is addressed as \"you\". You accept the license if you\ncopy, modify or distribute the work in a way requiring permission\nunder copyright law.\n\nA \"Modified Version\" of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall\nsubject (or to related matters) and contains nothing that could fall\ndirectly within that overall subject. (Thus, if the Document is in\npart a textbook of mathematics, a Secondary Section may not explain\nany mathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License. If a\nsection does not fit the above definition of Secondary then it is not\nallowed to be designated as Invariant. The Document may contain zero\nInvariant Sections. If the Document does not identify any Invariant\nSections then there are none.\n\nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License. A Front-Cover Text may\nbe at most 5 words, and a Back-Cover Text may be at most 25 words.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, that is suitable for revising the document\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup, or absence of markup, has been arranged to thwart\nor discourage subsequent modification by readers is not Transparent.\nAn image format is not Transparent if used for any substantial amount\nof text. A copy that is not \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML, PostScript or PDF designed for human modification. Examples of\ntransparent image formats include PNG, XCF and JPG. Opaque formats\ninclude proprietary formats that can be read and edited only by\nproprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML, PostScript or PDF produced by some word\nprocessors for output purposes only.\n\nThe \"Title Page\" means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, \"Title Page\" means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\nThe \"publisher\" means any person or entity that distributes copies of\nthe Document to the public.\n\nA section \"Entitled XYZ\" means a named subunit of the Document whose\ntitle either is precisely XYZ or contains XYZ in parentheses following\ntext that translates XYZ in another language. (Here XYZ stands for a\nspecific section name mentioned below, such as \"Acknowledgements\",\n\"Dedications\", \"Endorsements\", or \"History\".) To \"Preserve the Title\"\nof such a section when you modify the Document means that it remains a\nsection \"Entitled XYZ\" according to this definition.\n\nThe Document may include Warranty Disclaimers next to the notice which\nstates that this License applies to the Document. These Warranty\nDisclaimers are considered to be included by reference in this\nLicense, but only as regards disclaiming warranties: any other\nimplication that these Warranty Disclaimers may have is void and has\nno effect on the meaning of this License.\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no\nother conditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies (or copies in media that commonly have\nprinted covers) of the Document, numbering more than 100, and the\nDocument's license notice requires Cover Texts, you must enclose the\ncopies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na computer-network location from which the general network-using\npublic has access to download using public-standard network protocols\na complete Transparent copy of the Document, free of added material.\nIf you use the latter option, you must take reasonably prudent steps,\nwhen you begin distribution of Opaque copies in quantity, to ensure\nthat this Transparent copy will remain thus accessible at the stated\nlocation until at least one year after the last time you distribute an\nOpaque copy (directly or through your agents or retailers) of that\nedition to the public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to\ngive them a chance to provide you with an updated version of the\nDocument.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\nB. List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has fewer than five),\n unless they release you from this requirement.\nC. State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\nF. Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\nG. Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve the section Entitled \"History\", Preserve its Title, and add\n to it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section Entitled \"History\" in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the \"History\" section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\nK. For any section Entitled \"Acknowledgements\" or \"Dedications\",\n Preserve the Title of the section, and preserve in the section all\n the substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\nM. Delete any section Entitled \"Endorsements\". Such a section\n may not be included in the Modified Version.\nN. Do not retitle any existing section to be Entitled \"Endorsements\"\n or to conflict in title with any Invariant Section.\nO. Preserve any Warranty Disclaimers.\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section Entitled \"Endorsements\", provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice, and that you preserve all their Warranty Disclaimers.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections Entitled \"History\"\nin the various original documents, forming one section Entitled\n\"History\"; likewise combine any sections Entitled \"Acknowledgements\",\nand any sections Entitled \"Dedications\". You must delete all sections\nEntitled \"Endorsements\".\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document and other\ndocuments released under this License, and replace the individual\ncopies of this License in the various documents with a single copy\nthat is included in the collection, provided that you follow the rules\nof this License for verbatim copying of each of the documents in all\nother respects.\n\nYou may extract a single document from such a collection, and\ndistribute it individually under this License, provided you insert a\ncopy of this License into the extracted document, and follow this\nLicense in all other respects regarding verbatim copying of that\ndocument.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, is called an \"aggregate\" if the copyright\nresulting from the compilation is not used to limit the legal rights\nof the compilation's users beyond what the individual works permit.\nWhen the Document is included in an aggregate, this License does not\napply to the other works in the aggregate which are not themselves\nderivative works of the Document.\n\nIf the Cover Text requirement of section 3 is applicable to these\ncopies of the Document, then if the Document is less than one half of\nthe entire aggregate, the Document's Cover Texts may be placed on\ncovers that bracket the Document within the aggregate, or the\nelectronic equivalent of covers if the Document is in electronic form.\nOtherwise they must appear on printed covers that bracket the whole\naggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License, and all the license notices in the\nDocument, and any Warranty Disclaimers, provided that you also include\nthe original English version of this License and the original versions\nof those notices and disclaimers. In case of a disagreement between\nthe translation and the original version of this License or a notice\nor disclaimer, the original version will prevail.\n\nIf a section in the Document is Entitled \"Acknowledgements\",\n\"Dedications\", or \"History\", the requirement (section 4) to Preserve\nits Title (section 1) will typically require changing the actual\ntitle.\n\n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document\nexcept as expressly provided under this License. Any attempt\notherwise to copy, modify, sublicense, or distribute it is void, and\nwill automatically terminate your rights under this License.\n\nHowever, if you cease all violation of this License, then your license\nfrom a particular copyright holder is reinstated (a) provisionally,\nunless and until the copyright holder explicitly and finally\nterminates your license, and (b) permanently, if the copyright holder\nfails to notify you of the violation by some reasonable means prior to\n60 days after the cessation.\n\nMoreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\nTermination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, receipt of a copy of some or all of the same material does\nnot give you any rights to use it.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new, revised versions of the\nGNU Free Documentation License from time to time. Such new versions\nwill be similar in spirit to the present version, but may differ in\ndetail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation. If the Document\nspecifies that a proxy can decide which future versions of this\nLicense can be used, that proxy's public statement of acceptance of a\nversion permanently authorizes you to choose that version for the\nDocument.\n\n11. RELICENSING\n\n\"Massive Multiauthor Collaboration Site\" (or \"MMC Site\") means any\nWorld Wide Web server that publishes copyrightable works and also\nprovides prominent facilities for anybody to edit those works. A\npublic wiki that anybody can edit is an example of such a server. A\n\"Massive Multiauthor Collaboration\" (or \"MMC\") contained in the site\nmeans any set of copyrightable works thus published on the MMC site.\n\n\"CC-BY-SA\" means the Creative Commons Attribution-Share Alike 3.0 \nlicense published by Creative Commons Corporation, a not-for-profit \ncorporation with a principal place of business in San Francisco, \nCalifornia, as well as future copyleft versions of that license \npublished by that same organization.\n\n\"Incorporate\" means to publish or republish a Document, in whole or in \npart, as part of another Document.\n\nAn MMC is \"eligible for relicensing\" if it is licensed under this \nLicense, and if all works that were first published under this License \nsomewhere other than this MMC, and subsequently incorporated in whole or \nin part into the MMC, (1) had no cover texts or invariant sections, and \n(2) were thus incorporated prior to November 1, 2008.\n\nThe operator of an MMC Site may republish an MMC contained in the site\nunder CC-BY-SA on the same site at any time before August 1, 2009,\nprovided the MMC is eligible for relicensing.\n\n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3\n or any later version published by the Free Software Foundation;\n with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n\nIf you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,\nreplace the \"with...Texts.\" line with this:\n\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n\nIf you have Invariant Sections without Cover Texts, or some other\ncombination of the three, merge those two alternatives to suit the\nsituation.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", + "json": "gfdl-1.3-plus.json", + "yaml": "gfdl-1.3-plus.yml", + "html": "gfdl-1.3-plus.html", + "license": "gfdl-1.3-plus.LICENSE" + }, + { + "license_key": "ghostpdl-permissive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ghostpdl-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose and without fee is hereby granted.\nThis software is provided \"as is\" without express or implied warranty.", + "json": "ghostpdl-permissive.json", + "yaml": "ghostpdl-permissive.yml", + "html": "ghostpdl-permissive.html", + "license": "ghostpdl-permissive.LICENSE" + }, + { + "license_key": "ghostscript-1988", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ghostscript-1988", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "GHOSTSCRIPT GENERAL PUBLIC LICENSE\n (Clarified 11 Feb 1988)\n\n Copyright (C) 1988 Richard M. Stallman\n Everyone is permitted to copy and distribute verbatim copies of this\n license, but changing it is not allowed. You can also use this wording\n to make the terms for other programs.\n\n The license agreements of most software companies keep you at the\nmercy of those companies. By contrast, our general public license is\nintended to give everyone the right to share Ghostscript. To make sure\nthat you get the rights we want you to have, we need to make\nrestrictions that forbid anyone to deny you these rights or to ask you\nto surrender the rights. Hence this license agreement.\n\n Specifically, we want to make sure that you have the right to give\naway copies of Ghostscript, that you receive source code or else can get\nit if you want it, that you can change Ghostscript or use pieces of it\nin new free programs, and that you know you can do these things.\n\n To make sure that everyone has such rights, we have to forbid you to\ndeprive anyone else of these rights. For example, if you distribute\ncopies of Ghostscript, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must tell them their rights.\n\n Also, for our own protection, we must make certain that everyone finds\nout that there is no warranty for Ghostscript. If Ghostscript is\nmodified by someone else and passed on, we want its recipients to know\nthat what they have is not what we distributed, so that any problems\nintroduced by others will not reflect on our reputation.\n\n Therefore we (Richard M. Stallman and the Free Software Foundation,\nInc.) make the following terms which say what you must do to be allowed\nto distribute or change Ghostscript.\n\n\n COPYING POLICIES\n\n 1. You may copy and distribute verbatim copies of Ghostscript source\ncode as you receive it, in any medium, provided that you conspicuously\nand appropriately publish on each copy a valid copyright and license\nnotice \"Copyright (C) 1989 Aladdin Enterprises. All rights reserved.\nDistributed by Free Software Foundation, Inc.\" (or with whatever year is\nappropriate); keep intact the notices on all files that refer to this\nLicense Agreement and to the absence of any warranty; and give any other\nrecipients of the Ghostscript program a copy of this License Agreement\nalong with the program. You may charge a distribution fee for the\nphysical act of transferring a copy.\n\n 2. You may modify your copy or copies of Ghostscript or any portion of\nit, and copy and distribute such modifications under the terms of\nParagraph 1 above, provided that you also do the following:\n\n a) cause the modified files to carry prominent notices stating\n that you changed the files and the date of any change; and\n\n b) cause the whole of any work that you distribute or publish,\n that in whole or in part contains or is a derivative of Ghostscript\n or any part thereof, to be licensed at no charge to all third\n parties on terms identical to those contained in this License\n Agreement (except that you may choose to grant more extensive\n warranty protection to some or all third parties, at your option).\n\n c) You may charge a distribution fee for the physical act of\n transferring a copy, and you may at your option offer warranty\n protection in exchange for a fee.\n\nMere aggregation of another unrelated program with this program (or its\nderivative) on a volume of a storage or distribution medium does not bring\nthe other program under the scope of these terms.\n\n 3. You may copy and distribute Ghostscript (or a portion or derivative\nof it, under Paragraph 2) in object code or executable form under the\nterms of Paragraphs 1 and 2 above provided that you also do one of the\nfollowing:\n\n a) accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of\n Paragraphs 1 and 2 above; or,\n\n b) accompany it with a written offer, valid for at least three\n years, to give any third party free (except for a nominal\n shipping charge) a complete machine-readable copy of the\n corresponding source code, to be distributed under the terms of\n Paragraphs 1 and 2 above; or,\n\n c) accompany it with the information you received as to where the\n corresponding source code may be obtained. (This alternative is\n allowed only for noncommercial distribution and only if you\n received the program in object code or executable form alone.)\n\nFor an executable file, complete source code means all the source code for\nall modules it contains; but, as a special exception, it need not include\nsource code for modules which are standard libraries that accompany the\noperating system on which the executable file runs.\n\n 4. You may not copy, sublicense, distribute or transfer Ghostscript\nexcept as expressly provided under this License Agreement. Any attempt\notherwise to copy, sublicense, distribute or transfer Ghostscript is\nvoid and your rights to use the program under this License agreement\nshall be automatically terminated. However, parties who have received\ncomputer software programs from you with this License Agreement will not\nhave their licenses terminated so long as such parties remain in full\ncompliance.\n\n 5. If you wish to incorporate parts of Ghostscript into other free\nprograms whose distribution conditions are different, write to the Free\nSoftware Foundation at 675 Mass Ave, Cambridge, MA 02139. We have not\nyet worked out a simple rule that can be stated here, but we will often\npermit this. We will be guided by the two goals of preserving the free\nstatus of all derivatives of our free software and of promoting the\nsharing and reuse of software.\n\nYour comments and suggestions about our licensing policies and our\nsoftware are welcome! Please contact the Free Software Foundation,\nInc., 675 Mass Ave, Cambridge, MA 02139, or call (617) 876-3296.\n\n NO WARRANTY\n\n BECAUSE GHOSTSCRIPT IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY\nNO WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW. EXCEPT\nWHEN OTHERWISE STATED IN WRITING, FREE SOFTWARE FOUNDATION, INC, RICHARD\nM. STALLMAN, ALADDIN ENTERPRISES, L. PETER DEUTSCH, AND/OR OTHER PARTIES\nPROVIDE GHOSTSCRIPT \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER\nEXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE\nENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF GHOSTSCRIPT IS WITH\nYOU. SHOULD GHOSTSCRIPT PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL\nNECESSARY SERVICING, REPAIR OR CORRECTION.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL RICHARD M.\nSTALLMAN, THE FREE SOFTWARE FOUNDATION, INC., L. PETER DEUTSCH, ALADDIN\nENTERPRISES, AND/OR ANY OTHER PARTY WHO MAY MODIFY AND REDISTRIBUTE\nGHOSTSCRIPT AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING\nANY LOST PROFITS, LOST MONIES, OR OTHER SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE\n(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED\nINACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR A FAILURE OF THE\nPROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) GHOSTSCRIPT, EVEN IF YOU\nHAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM\nBY ANY OTHER PARTY.", + "json": "ghostscript-1988.json", + "yaml": "ghostscript-1988.yml", + "html": "ghostscript-1988.html", + "license": "ghostscript-1988.LICENSE" + }, + { + "license_key": "gitlab-ee", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-gitlab-ee", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The GitLab Enterprise Edition (EE) license (the \u201cEE License\u201d)\nCopyright (c) 2011-present GitLab B.V.\n\nWith regard to the GitLab Software:\n\nThis software and associated documentation files (the \"Software\") may only be\nused in production, if you (and any entity that you represent) have agreed to,\nand are in compliance with, the GitLab Subscription Terms of Service, available\nat https://about.gitlab.com/terms/#subscription (the \u201cEE Terms\u201d), or other\nagreement governing the use of the Software, as agreed by you and GitLab,\nand otherwise have a valid GitLab Enterprise Edition subscription for the\ncorrect number of user seats. Subject to the foregoing sentence, you are free to\nmodify this Software and publish patches to the Software. You agree that GitLab\nand/or its licensors (as applicable) retain all right, title and interest in and\nto all such modifications and/or patches, and all such modifications and/or\npatches may only be used, copied, modified, displayed, distributed, or otherwise\nexploited with a valid GitLab Enterprise Edition subscription for the correct\nnumber of user seats. Notwithstanding the foregoing, you may copy and modify\nthe Software for development and testing purposes, without requiring a\nsubscription. You agree that GitLab and/or its licensors (as applicable) retain\nall right, title and interest in and to all such modifications. You are not\ngranted any other rights beyond what is expressly stated herein. Subject to the\nforegoing, it is forbidden to copy, merge, publish, distribute, sublicense,\nand/or sell the Software.\n\nThis EE License applies only to the part of this Software that is not\ndistributed as part of GitLab Community Edition (CE). Any part of this Software\ndistributed as part of GitLab CE or is served client-side as an image, font,\ncascading stylesheet (CSS), file which produces or is compiled, arranged,\naugmented, or combined into client-side JavaScript, in whole or in part, is\ncopyrighted under the MIT Expat license. The full text of this EE License shall\nbe included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\nFor all third party components incorporated into the GitLab Software, those\ncomponents are licensed under the original license provided by the owner of the\napplicable component.", + "json": "gitlab-ee.json", + "yaml": "gitlab-ee.yml", + "html": "gitlab-ee.html", + "license": "gitlab-ee.LICENSE" + }, + { + "license_key": "gitpod-self-hosted-free-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-gitpod-self-hosted-free-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "# Gitpod Self-Hosted Free License Terms and\n# Gitpod Enterprise Source Code License\n\n\n### 1 Preamble\n\n1.1 These Software Licensing Terms (\u201cTerms\u201d) provide the terms and conditions\nthat govern usage of the Software Gitpod Self-Hosted Free Edition in source and\nbinary form (\u201cSoftware\u201d). The Software is provided by Gitpod GmbH, Am\nGermaniahafen 1, 24143 Kiel (\u201cGitpod\u201d). By downloading or using to the\nSoftware, you agree to be bound by the following Terms.\n\n### 2 Scope of Terms\n\n2.1 These Terms apply to the usage of the Software, which is designed to be used\nfor business purposes.\n\n2.2 These Terms apply to the binary code and to the source code of the Software,\nunless the header of a source file explicitly refers to a different license.\n\n2.3 These Terms apply unless you have a separate agreement with Gitpod in\nwritten form that explicitly supersedes these Terms.\n\n### 3 License Fees\n\n3.1 The use of the Software as described in Sec. 2 is free of charge. It is\nhowever limited to the features that are accessible without a license key and\nmay only take place in accordance with these Terms.\n\n3.2 In case you want to use additional features or distribute the Software or\nmodifications to it without the restrictions of these Terms, please reach out\nfor a license key, which is subject to different legal and commercial terms.\n\n### 4 Granting of Rights\n\n4.1 Permission is hereby granted to obtain a copy of the Software and their\naccompanying documentation to use, reproduce and execute the Software for\ninternal purposes in accordance with these Terms and to distribute the\nunmodified software without charging a fee for it.\n\n4.2 Subject to the conditions of these Terms, you may modify the Software,\nincluding patching it. You agree that Gitpod retains all right, title and\ninterest in and to all such modifications and patches (\u201cModifications\u201d). You may\nonly use, reproduce and execute the Modifications for internal purposes in\naccordance with these Terms. You may not distribute Modifications to any third\nparty. Nonetheless, you may make such modifications publicly available as fork\nof the repository which hosts the original version of the Software, however only\nunder these Terms and only, if accompanied by the complete machine-readable\nsource code of the Modifications and of the Software.\n\n4.3 The copyright notices in the Software and this entire statement, including\nthe above license grant and these Terms must be included in all copies of the\nSoftware (in whole or in part). Copyright notices, serial numbers and other\nfeatures aimed at product identification or control may not be removed, altered,\nsuppressed or otherwise bypassed under any circumstances. For the avoidance of\ndoubt, the software may neither in source nor in binary form be modified in\norder to enable or activate any features of the software that would otherwise\nrequire a valid license key.\n\n4.4 Any other usage of the Software, in particular modifying, combining it with\nother software and providing it to third parties on a commercial basis, is\nprohibited. This includes any sale, lease, indirect use of the Software to the\nbenefit of third parties and its provision as a commercial service, or offering\nit as a part of a commercial service or platform.\n\n4.5 The Software remains the exclusive intellectual property of Gitpod at all\ntimes. Mandatory rights resulting from applicable copyright law (e.g. related to\ndecompilation) remain unaffected.\n\n4.6 Gitpod provides the source code of the Software on a voluntary basis and is\nnot obligated to do so. Furthermore, Gitpod is not obligated to provide any\nupdates or upgrades it may develop.\n\n4.7 Please consider purchasing a license key (see above Sec. 3) for further\nusage rights and additional features.\n\n### 5 Telemetry\n\n5.1 Gitpod intends to collect certain statistical data on the use of the\nSoftware on an anonymized basis in the future with a future version of the\nSoftware. The data will only be used to improve the Software and the data will\nnot be sold to third parties. Gitpod will inform about this with the future\nrelease.\n\n### 6 Warranty and Liability\n\n6.1 THE SOFTWARE IS PROVIDED FREE OF CHARGE ON AN \u201cAS IS\u201d BASIS, WITHOUT\nWARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND\nNON-INFRINGEMENT.\n\n6.2 IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE\nBE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OF\nOR OTHER DEALINGS IN THE SOFTWARE.\n\n6.3 THIS LIMITATION OF LIABILITY DOES NOT EXCLUDE MANDATORY LEGAL GROUNDS FOR\nLIABILITY SUCH AS LIABILITY FOR PERSONAL INJURY, GROSS NEGLIGENCE, WILLFUL\nINTENT OR LAWS ON PRODUCT LIABILITY.\n\n### 7 Third-party Components\n\n7.1 The Software contains third-party components including open source software\n(\u201cThird-Party Components\u201c). Parts of such Third-Party Components are subject to\ndeviating license terms (\u201cThird-Party License Terms\u201c). A list of such\nThird-Party Components and its respective Third-Party License Terms are\navailable via the files License.third-party.npm.txt and\nLicense.third-party.go.txt. No stipulation in these Terms is intended to impose\nfurther restrictions on your use of such Third-Party Components licensed under\nThird-Party License Terms.\n\n7.2 Gitpod reserves the right to introduce deviating or additional Third-Party\nLicense Terms in the course of modifications of the Software and in case of\nupdates for the Software to the extent necessary due to additional Third-Party\nComponents or due to changed Third-Party License Terms.", + "json": "gitpod-self-hosted-free-2020.json", + "yaml": "gitpod-self-hosted-free-2020.yml", + "html": "gitpod-self-hosted-free-2020.html", + "license": "gitpod-self-hosted-free-2020.LICENSE" + }, + { + "license_key": "gl2ps", + "category": "Copyleft Limited", + "spdx_license_key": "GL2PS", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "GL2PS LICENSE Version 2, November 2003\n\nCopyright (C) 2003, Christophe Geuzaine\n\nPermission to use, copy, and distribute this software and its documentation\nfor any purpose with or without fee is hereby granted, provided that the\ncopyright notice appear in all copies and that both that copyright notice and \nhis permission notice appear in supporting documentation.\n\nPermission to modify and distribute modified versions of this software is\ngranted, provided that:\n\n1) the modifications are licensed under the same terms as this software;\n\n2) you make available the source code of any modifications that you distribute,\neither on the same media as you distribute any executable or other form of this\nsoftware, or via a mechanism generally accepted in the software development\ncommunity for the electronic transfer of data.\n\nThis software is provided \"as is\" without express or implied warranty.", + "json": "gl2ps.json", + "yaml": "gl2ps.yml", + "html": "gl2ps.html", + "license": "gl2ps.LICENSE" + }, + { + "license_key": "gladman-older-rijndael-code-use", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gladman-older-rijndael-code", + "other_spdx_license_keys": [ + "LicenseRef-scancode-gladman-older-rijndael-code-use" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Code Use\n\nI am happy for this code to be used without payment provided that I don't carry \nany risks as a result. \n\nI would appreciate an appropriate acknowledgement of the source of the code if \nyou do use it in a product or activity provided to third parties. I would also be \ngrateful for feedback on how the code is being used, any problems you \nencounter, any changes or additions that are desirable for particular processors \nand any more general improvements you would like to see (no promises mind!).", + "json": "gladman-older-rijndael-code-use.json", + "yaml": "gladman-older-rijndael-code-use.yml", + "html": "gladman-older-rijndael-code-use.html", + "license": "gladman-older-rijndael-code-use.LICENSE" + }, + { + "license_key": "glide", + "category": "Copyleft", + "spdx_license_key": "Glide", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "3DFX GLIDE Source Code General Public License\n\n1. PREAMBLE\n\nThis license is for software that provides a 3D graphics application\nprogram interface (API).The license is intended to offer terms similar\nto some standard General Public Licenses designed to foster open\nstandards and unrestricted accessibility to source code. Some of these\nlicenses require that, as a condition of the license of the software,\nany derivative works (that is, new software which is a work containing\nthe original program or a portion of it) must be available for general\nuse, without restriction other than for a minor transfer fee, and that\nthe source code for such derivative works must likewise be made\navailable. The only restriction is that such derivative works must be\nsubject to the same General Public License terms as the original work.\n\nThis 3dfx GLIDE Source Code General Public License differs from the\nstandard licenses of this type in that it does not require the entire\nderivative work to be made available under the terms of this license\nnor is the recipient required to make available the source code for\nthe entire derivative work. Rather, the license is limited to only the\nidentifiable portion of the derivative work that is derived from the\nlicensed software. The precise terms and conditions for copying,\ndistribution and modification follow.\n\n2. DEFINITIONS\n\n2.1 This License applies to any program (or other \"work\") which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this 3dfx GLIDE Source Code General\nPublic License.\n\n2.2 The term \"Program\" as used in this Agreement refers to 3DFX's\nGLIDE source code and object code and any Derivative Work.\n\n2.3 \"Derivative Work\" means, for the purpose of the License, that\nportion of any work that contains the Program or the identifiable\nportion of a work that is derived from the Program, either verbatim or\nwith modifications and/or translated into another language, and that\nperforms 3D graphics API operations. It does not include any other\nportions of a work.\n\n2.4 \"Modifications of the Program\" means any work, which includes a\nDerivative Work, and includes the whole of such work.\n\n2.5 \"License\" means this 3dfx GLIDE Source Code General Public License.\n\n2.6 The \"Source Code\" for a work means the preferred form of the work\nfor making modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, any\nassociated interface definition files, and the scripts used to control\ncompilation and installation of the executable work.\n\n2.7 \"3dfx\" means 3dfx Interactive, Inc.\n\n\n3. LICENSED ACTIVITIES\n\n3.1 COPYING - You may copy and distribute verbatim copies of the\nProgram's Source Code as you receive it, in any medium, subject to the\nprovision of section 3.3 and provided also that:\n\n(a) you conspicuously and appropriately publish on each copy\nan appropriate copyright notice (3dfx Interactive, Inc. 1999), a notice\nthat recipients who wish to copy, distribute or modify the Program can\nonly do so subject to this License, and a disclaimer of warranty as\nset forth in section 5;\n\n(b) keep intact all the notices that refer to this License and\nto the absence of any warranty; and\n\n(c) do not make any use of the GLIDE trademark without the prior\nwritten permission of 3dfx, and\n\n(d) give all recipients of the Program a copy of this License\nalong with the Program or instructions on how to easily receive a copy\nof this License.\n\n\n3.2 MODIFICATION OF THE PROGRAM/DERIVATIVE WORKS - You may modify your\ncopy or copies of the Program or any portion of it, and copy and\ndistribute such modifications subject to the provisions of section 3.3\nand provided that you also meet all of the following conditions:\n\n(a) you conspicuously and appropriately publish on each copy\nof a Derivative Work an appropriate copyright notice, a notice that\nrecipients who wish to copy, distribute or modify the Derivative Work\ncan only do so subject to this License, and a disclaimer of warranty\nas set forth in section 5;\n\n(b) keep intact all the notices that refer to this License and\nto the absence of any warranty; and\n\n(c) give all recipients of the Derivative Work a copy of this\nLicense along with the Derivative Work or instructions on how to easily\nreceive a copy of this License.\n\n(d) You must cause the modified files of the Derivative Work\nto carry prominent notices stating that you changed the files and the\ndate of any change.\n\n(e) You must cause any Derivative Work that you distribute or\npublish to be licensed at no charge to all third parties under the\nterms of this License.\n\n(f) You do not make any use of the GLIDE trademark without the\nprior written permission of 3dfx.\n\n(g) If the Derivative Work normally reads commands\ninteractively when run, you must cause it, when started running for\nsuch interactive use, to print or display an announcement as follows:\n\n\"COPYRIGHT 3DFX INTERACTIVE, INC. 1999, ALL RIGHTS RESERVED THIS\nSOFTWARE IS FREE AND PROVIDED \"AS IS,\" WITHOUT WARRANTY OF ANY KIND,\nEITHER EXPRESSED OR IMPLIED. THERE IS NO RIGHT TO USE THE GLIDE\nTRADEMARK WITHOUT PRIOR WRITTEN PERMISSION OF 3DFX INTERACTIVE,\nINC. SEE THE 3DFX GLIDE GENERAL PUBLIC LICENSE FOR A FULL TEXT OF THE\nDISTRIBUTION AND NON-WARRANTY PROVISIONS (REQUEST COPY FROM\nINFO@3DFX.COM).\"\n\n(h) The requirements of this section 3.2 do not apply to the\nmodified work as a whole but only to the Derivative Work. It is not\nthe intent of this License to claim rights or contest your rights to\nwork written entirely by you; rather, the intent is to exercise the\nright to control the distribution of Derivative Works.\n\n\n3.3 DISTRIBUTION\n\n(a) All copies of the Program or Derivative Works which are\ndistributed must include in the file headers the following language\nverbatim:\n\n\"THIS SOFTWARE IS SUBJECT TO COPYRIGHT PROTECTION AND IS OFFERED\nONLY PURSUANT TO THE 3DFX GLIDE GENERAL PUBLIC LICENSE. THERE IS NO\nRIGHT TO USE THE GLIDE TRADEMARK WITHOUT PRIOR WRITTEN PERMISSION OF\n3DFX INTERACTIVE, INC. A COPY OF THIS LICENSE MAY BE OBTAINED FROM\nTHE DISTRIBUTOR OR BY CONTACTING 3DFX INTERACTIVE INC (info@3dfx.com).\nTHIS PROGRAM. IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER\nEXPRESSED OR IMPLIED. SEE THE 3DFX GLIDE GENERAL PUBLIC LICENSE FOR A\nFULL TEXT OF THE NON-WARRANTY PROVISIONS.\n\nUSE, DUPLICATION OR DISCLOSURE BY THE GOVERNMENT IS SUBJECT TO\nRESTRICTIONS AS SET FORTH IN SUBDIVISION (C)(1)(II) OF THE RIGHTS\nIN TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 252.227-7013,\nAND/OR IN SIMILAR OR SUCCESSOR CLAUSES IN THE FAR, DOD OR NASA FAR\nSUPPLEMENT. UNPUBLISHED RIGHTS RESERVED UNDER THE COPYRIGHT LAWS OF\nTHE UNITED STATES.\n\nCOPYRIGHT 3DFX INTERACTIVE, INC. 1999, ALL RIGHTS RESERVED\"\n\n(b) You may distribute the Program or a Derivative Work in\nobject code or executable form under the terms of Sections 3.1 and 3.2\nprovided that you also do one of the following:\n\n(1) Accompany it with the complete corresponding\nmachine-readable source code, which must be distributed under the\nterms of Sections 3.1 and 3.2; or,\n\n(2) Accompany it with a written offer, valid for at\nleast three years, to give any third party, for a charge no more than\nyour cost of physically performing source distribution, a complete\nmachine-readable copy of the corresponding source code, to be\ndistributed under the terms of Sections 3.1 and 3.2 on a medium\ncustomarily used for software interchange; or,\n\n(3) Accompany it with the information you received as\nto the offer to distribute corresponding source code. (This alternative\nis allowed only for noncommercial distribution and only if you received\nthe program in object code or executable form with such an offer, in\naccord with Subsection 3.3(b)(2) above.)\n\n(c) The source code distributed need not include anything\nthat is normally distributed (in either source or binary form) with\nthe major components (compiler, kernel, and so on) of the operating\nsystem on which the executable runs, unless that component itself\naccompanies the executable code.\n\n(d) If distribution of executable code or object code is made\nby offering access to copy from a designated place, then offering\nequivalent access to copy the source code from the same place counts\nas distribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n(e) Each time you redistribute the Program or any Derivative\nWork, the recipient automatically receives a license from 3dfx and\nsuccessor licensors to copy, distribute or modify the Program and\nDerivative Works subject to the terms and conditions of the License.\nYou may not impose any further restrictions on the recipients'\nexercise of the rights granted herein. You are not responsible for\nenforcing compliance by third parties to this License.\n\n(f) You may not make any use of the GLIDE trademark without\nthe prior written permission of 3dfx.\n\n(g) You may not copy, modify, sublicense, or distribute the\nProgram or any Derivative Works except as expressly provided under\nthis License. Any attempt otherwise to copy, modify, sublicense or\ndistribute the Program or any Derivative Works is void, and will\nautomatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n\n4. MISCELLANEOUS\n\n4.1 Acceptance of this License is voluntary. By using, modifying or\ndistributing the Program or any Derivative Work, you indicate your\nacceptance of this License to do so, and all its terms and conditions\nfor copying, distributing or modifying the Program or works based on\nit. Nothing else grants you permission to modify or distribute the\nProgram or Derivative Works and doing so without acceptance of this\nLicense is in violation of the U.S. and international copyright laws.\n\n4.2 If the distribution and/or use of the Program or Derivative Works\nis restricted in certain countries either by patents or by copyrighted\ninterfaces, the original copyright holder who places the Program under\nthis License may add an explicit geographical distribution limitation\nexcluding those countries, so that distribution is permitted only in\nor among countries not thus excluded. In such case, this License\nincorporates the limitation as if written in the body of this License.\n\n4.3 This License is to be construed according to the laws of the\nState of California and you consent to personal jurisdiction in the\nState of California in the event it is necessary to enforce the\nprovisions of this License.\n\n\n5. NO WARRANTIES\n\n5.1 TO THE EXTENT PERMITTED BY APPLICABLE LAW, THERE IS NO WARRANTY\nFOR THE PROGRAM. OR DERIVATIVE WORKS THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM AND ANY DERIVATIVE WORKS\"AS IS\"\nWITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY\nAND PERFORMANCE OF THE PROGRAM AND ANY DERIVATIVE WORK IS WITH YOU.\nSHOULD THE PROGRAM OR ANY DERIVATIVE WORK PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n5.2 IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL 3DFX\nINTERACTIVE, INC., OR ANY OTHER COPYRIGHT HOLDER, OR ANY OTHER PARTY\nWHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM OR DERIVATIVE WORKS AS\nPERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL,\nSPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\nINABILITY TO USE THE PROGRAM OR DERIVATIVE WORKS (INCLUDING BUT NOT\nLIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES\nSUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM OR\nDERIVATIVE WORKS TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH\nHOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.", + "json": "glide.json", + "yaml": "glide.yml", + "html": "glide.html", + "license": "glide.LICENSE" + }, + { + "license_key": "glulxe", + "category": "Permissive", + "spdx_license_key": "Glulxe", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You may copy and distribute it freely, by any means and under any conditions,\nas long as the code and documentation is not changed. You may also incorporate\nthis code into your own program and distribute that, or modify this code and\nuse and distribute the modified version, as long as you retain a notice in your\nprogram or documentation which mentions my name and the URL shown above.", + "json": "glulxe.json", + "yaml": "glulxe.yml", + "html": "glulxe.html", + "license": "glulxe.LICENSE" + }, + { + "license_key": "glut", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-glut", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This program is freely distributable without licensing fees and is\nprovided without guarantee or warrantee expressed or implied. This\nprogram is -not- in the public domain.", + "json": "glut.json", + "yaml": "glut.yml", + "html": "glut.html", + "license": "glut.LICENSE" + }, + { + "license_key": "glwtpl", + "category": "Permissive", + "spdx_license_key": "GLWTPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "GLWT(Good Luck With That) Public License \nCopyright (c) Everyone, except Author\n\nEveryone is permitted to copy, distribute, modify, merge, sell, publish,\nsublicense or whatever they want with this software but at their OWN RISK.\n\nPreamble\n\nThe author has absolutely no clue what the code in this project does.\nIt might just work or not, there is no third option.\n\nGOOD LUCK WITH THAT PUBLIC LICENSE\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION, AND MODIFICATION\n\n0. You just DO WHATEVER YOU WANT TO as long as you NEVER LEAVE A\nTRACE TO TRACK THE AUTHOR of the original product to blame for or hold\nresponsible.\n\nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.\n\nGood luck and Godspeed.", + "json": "glwtpl.json", + "yaml": "glwtpl.yml", + "html": "glwtpl.html", + "license": "glwtpl.LICENSE" + }, + { + "license_key": "gnu-emacs-gpl-1988", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gnu-emacs-gpl-1988", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "GNU EMACS GENERAL PUBLIC LICENSE\n\t\t (Clarified 11 Feb 1988)\n\n Copyright (C) 1985, 1987, 1988 Richard M. Stallman\n Everyone is permitted to copy and distribute verbatim copies\n of this license, but changing it is not allowed. You can also\n use this wording to make the terms for other programs.\n\n The license agreements of most software companies keep you at the\nmercy of those companies. By contrast, our general public license is\nintended to give everyone the right to share GNU Emacs. To make\nsure that you get the rights we want you to have, we need to make\nrestrictions that forbid anyone to deny you these rights or to ask you\nto surrender the rights. Hence this license agreement.\n\n Specifically, we want to make sure that you have the right to give\naway copies of Emacs, that you receive source code or else can get it\nif you want it, that you can change Emacs or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To make sure that everyone has such rights, we have to forbid you to\ndeprive anyone else of these rights. For example, if you distribute\ncopies of Emacs, you must give the recipients all the rights that you\nhave. You must make sure that they, too, receive or can get the\nsource code. And you must tell them their rights.\n\n Also, for our own protection, we must make certain that everyone\nfinds out that there is no warranty for GNU Emacs. If Emacs is\nmodified by someone else and passed on, we want its recipients to know\nthat what they have is not what we distributed, so that any problems\nintroduced by others will not reflect on our reputation.\n\n Therefore we (Richard Stallman and the Free Software Fundation,\nInc.) make the following terms which say what you must do to be\nallowed to distribute or change GNU Emacs.\n\n\t\t\tCOPYING POLICIES\n\n 1. You may copy and distribute verbatim copies of GNU Emacs source code\nas you receive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy a valid copyright notice \"Copyright\n(C) 1988 Free Software Foundation, Inc.\" (or with whatever year is\nappropriate); keep intact the notices on all files that refer to this\nLicense Agreement and to the absence of any warranty; and give any\nother recipients of the GNU Emacs program a copy of this License\nAgreement along with the program. You may charge a distribution fee\nfor the physical act of transferring a copy.\n\n 2. You may modify your copy or copies of GNU Emacs source code or\nany portion of it, and copy and distribute such modifications under\nthe terms of Paragraph 1 above, provided that you also do the following:\n\n a) cause the modified files to carry prominent notices stating\n that you changed the files and the date of any change; and\n\n b) cause the whole of any work that you distribute or publish,\n that in whole or in part contains or is a derivative of GNU Emacs\n or any part thereof, to be licensed at no charge to all third\n parties on terms identical to those contained in this License\n Agreement (except that you may choose to grant more extensive\n warranty protection to some or all third parties, at your option).\n\n c) if the modified program serves as a text editor, cause it when\n started running in the simplest and usual way, to print an\n announcement including a valid copyright notice \"Copyright (C)\n 1988 Free Software Foundation, Inc.\" (or with the year that is\n appropriate), saying that there is no warranty (or else, saying\n that you provide a warranty) and that users may redistribute the\n program under these conditions, and telling the user how to view a\n copy of this License Agreement.\n\n d) You may charge a distribution fee for the physical act of\n transferring a copy, and you may at your option offer warranty\n protection in exchange for a fee.\n\nMere aggregation of another unrelated program with this program (or its\nderivative) on a volume of a storage or distribution medium does not bring\nthe other program under the scope of these terms.\n\n 3. You may copy and distribute GNU Emacs (or a portion or derivative of it,\nunder Paragraph 2) in object code or executable form under the terms of\nParagraphs 1 and 2 above provided that you also do one of the following:\n\n a) accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of\n Paragraphs 1 and 2 above; or,\n\n b) accompany it with a written offer, valid for at least three\n years, to give any third party free (except for a nominal\n shipping charge) a complete machine-readable copy of the\n corresponding source code, to be distributed under the terms of\n Paragraphs 1 and 2 above; or,\n\n c) accompany it with the information you received as to where the\n corresponding source code may be obtained. (This alternative is\n allowed only for noncommercial distribution and only if you\n received the program in object code or executable form alone.)\n\nFor an executable file, complete source code means all the source code for\nall modules it contains; but, as a special exception, it need not include\nsource code for modules which are standard libraries that accompany the\noperating system on which the executable file runs.\n\n 4. You may not copy, sublicense, distribute or transfer GNU Emacs\nexcept as expressly provided under this License Agreement. Any attempt\notherwise to copy, sublicense, distribute or transfer GNU Emacs is void and\nyour rights to use GNU Emacs under this License agreement shall be\nautomatically terminated. However, parties who have received computer\nsoftware programs from you with this License Agreement will not have\ntheir licenses terminated so long as such parties remain in full compliance.\n\n 5. If you wish to incorporate parts of GNU Emacs into other free programs\nwhose distribution conditions are different, write to the Free Software\nFoundation. We have not yet worked out a simple rule that can be stated\nhere, but we will often permit this. We will be guided by the two goals of\npreserving the free status of all derivatives of our free software and of\npromoting the sharing and reuse of software.\n\nYour comments and suggestions about our licensing policies and our\nsoftware are welcome! Please contact the Free Software Foundation, Inc.,\n675 Mass Ave, Cambridge, MA 02139, or call (617) 876-3296.\n\n\t\t\t NO WARRANTY\n\n BECAUSE GNU EMACS IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY\nNO WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW. EXCEPT\nWHEN OTHERWISE STATED IN WRITING, FREE SOFTWARE FOUNDATION, INC,\nRICHARD M. STALLMAN AND/OR OTHER PARTIES PROVIDE GNU EMACS \"AS IS\"\nWITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY\nAND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE GNU EMACS\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY\nSERVICING, REPAIR OR CORRECTION.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL FREE SOFTWARE\nFOUNDATION, INC., RICHARD M. STALLMAN, AND/OR ANY OTHER PARTY WHO MAY\nMODIFY AND REDISTRIBUTE GNU EMACS AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY LOST PROFITS, LOST MONIES, OR OTHER\nSPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\nINABILITY TO USE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA\nBEING RENDERED INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH PROGRAMS NOT DISTRIBUTED BY\nFREE SOFTWARE FOUNDATION, INC.) THE PROGRAM, EVEN IF YOU HAVE BEEN\nADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY ANY\nOTHER PARTY.", + "json": "gnu-emacs-gpl-1988.json", + "yaml": "gnu-emacs-gpl-1988.yml", + "html": "gnu-emacs-gpl-1988.html", + "license": "gnu-emacs-gpl-1988.LICENSE" + }, + { + "license_key": "gnu-javamail-exception", + "category": "Copyleft Limited", + "spdx_license_key": "gnu-javamail-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, if you link this library with other files to produce an\nexecutable, this library does not by itself cause the resulting executable to be\ncovered by the GNU General Public License. This exception does not however\ninvalidate any other reasons why the executable file might be covered by the\n GNU General Public License.", + "json": "gnu-javamail-exception.json", + "yaml": "gnu-javamail-exception.yml", + "html": "gnu-javamail-exception.html", + "license": "gnu-javamail-exception.LICENSE" + }, + { + "license_key": "gnuplot", + "category": "Copyleft Limited", + "spdx_license_key": "gnuplot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, and distribute this software and its documentation for\nany purpose with or without fee is hereby granted, provided that the above\ncopyright notice appear in all copies and that both that copyright notice and\nthis permission notice appear in supporting documentation.\n\nPermission to modify the software is granted, but not the right to distribute\nthe complete modified source code. Modifications are to be distributed as\npatches to the released version. \n\nPermission to distribute binaries produced by compiling modified sources is\ngranted, provided you \n\n 1. distribute the corresponding source modifications from the released\n version in the form of a patch file along with the binaries, \n 2. add special version identification to distinguish your version in\n addition to the base release version number, \n 3. provide your name and address as the primary contact for the support of\n your modified version, and \n 4. retain our contact information in regard to use of the base software. \n\nPermission to distribute the released version of the source code along with\ncorresponding source modifications in the form of a patch file is granted with\nsame provisions 2 through 4 for binary distributions.\n\nThis software is provided \"as is\" without express or implied warranty to the\nextent permitted by applicable law.", + "json": "gnuplot.json", + "yaml": "gnuplot.yml", + "html": "gnuplot.html", + "license": "gnuplot.LICENSE" + }, + { + "license_key": "goahead", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-goahead", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License Agreement \n\nTHIS LICENSE ALLOWS ONLY THE LIMITED USE OF GO AHEAD SOFTWARE,\nINC. PROPRIETARY CODE. PLEASE CAREFULLY READ THIS AGREEMENT AS IT\nPERTAINS TO THIS LICENSE, YOU CERTIFY THAT YOU WILL USE THE SOFTWARE\nONLY IN THE MANNER PERMITTED HEREIN.\n\n1. Definitions. \n\n1.1 \"Documentation\" means any documentation GoAhead includes with the\nOriginal Code.\n\n1.2 \"GoAhead\" means Go Ahead Software, Inc. \n\n1.3 \"Intellectual Property Rights\" means all rights, whether now existing\nor hereinafter acquired, in and to trade secrets, patents, copyrights,\ntrademarks, know-how, as well as moral rights and similar rights of any\ntype under the laws of any governmental authority, domestic or foreign,\nincluding rights in and to all applications and registrations relating\nto any of the foregoing.\n\n1.4 \"License\" or \"Agreement\" means this document. \n\n1.5 \"Modifications\" means any addition to or deletion from the substance\nor structure of either the Original Code or any previous Modifications.\n\n1.6 \"Original Code\" means the Source Code to GoAhead\u2019s proprietary\ncomputer software entitled GoAhead WebServer.\n\n1.7 \"Response Header\" means the first portion of the response message\noutput by the GoAhead WebServer, containing but not limited to, header\nfields for date, content-type, server identification and cache control.\n\n1.8 \"Server Identification Field\" means the field in the Response Header\nwhich contains the text \"Server: GoAhead-Webs\".\n\n1.9 \"You\" means an individual or a legal entity exercising rights under,\nand complying with all of the terms of, this license or a future version\nof this license. For legal entities, \"You\" includes any entity which\ncontrols, is controlled by, or is under common control with You. For\npurposes of this definition, \"control\" means (a) the power, direct or\nindirect, to cause the direction or management of such entity, whether\nby contract or otherwise, or (b) ownership of fifty percent (50%) or\nmore of the outstanding shares or beneficial ownership of such entity.\n\n2. Source Code License. \n\n2.1 Limited Source Code Grant. \n\nGoAhead hereby grants You a world-wide, royalty-free, non-exclusive\nlicense, subject to third party intellectual property claims, to use,\nreproduce, modify, copy and distribute the Original Code.\n\n2.2 Binary Code. \n\nGoAhead hereby grants You a world-wide, royalty-free, non-exclusive\nlicense to copy and distribute the binary code versions of the Original\nCode together with Your Modifications.\n\n2.3 License Back to GoAhead. \n\nYou hereby grant in both source code and binary code to GoAhead a\nworld-wide, royalty-free, non-exclusive license to copy, modify, display,\nuse and sublicense any Modifications You make that are distributed or\nplanned for distribution. Within 30 days of either such event, You\nagree to ship to GoAhead a file containing the Modifications (in a media\nto be determined by the parties), including any programmers\u2019 notes and\nother programmers\u2019 materials. Additionally, You will provide to GoAhead\na complete description of the product, the product code or model number,\nthe date on which the product is initially shipped, and a contact name,\nphone number and e-mail address for future correspondence. GoAhead will\nkeep confidential all data specifically marked as such.\n\n2.4 Restrictions on Use. \n\nYou may sublicense Modifications to third parties such as subcontractors\nor OEM's provided that You enter into license agreements with such third\nparties that bind such third parties to all the obligations under this\nAgreement applicable to you and that are otherwise substantially similar\nin scope and application to this Agreement.\n\n3. Term. \n\nThis Agreement and license are effective from the time You accept the\nterms of this Agreement until this Agreement is terminated. You may\nterminate this Agreement at any time by uninstalling or destroying\nall copies of the Original Code including any and all binary versions\nand removing any Modifications to the Original Code existing in any\nproducts. This Agreement will terminate immediately and without further\nnotice if You fail to comply with any provision of this Agreement. All\nrestrictions on use, and all other provisions that may reasonably\nbe interpreted to survive termination of this Agreement, will survive\ntermination of this Agreement for any reason. Upon termination, You agree\nto uninstall or destroy all copies of the Original Code, Modifications,\nand Documentation.\n\n4. Trademarks and Brand. \n\n4.1 License and Use. \n\nGoAhead hereby grants to You a limited world-wide, royalty-free,\nnon-exclusive license to use the GoAhead trade names, trademarks, logos,\nservice marks and product designations posted in Exhibit A (collectively,\nthe \"GoAhead Marks\") in connection with the activities by You under this\nAgreement. Additionally, GoAhead grants You a license under the terms\nabove to such GoAhead trademarks as shall be identified at a URL (the\n\"URL\") provided by GoAhead. The use by You of GoAhead Marks shall be in\naccordance with GoAhead\u2019s trademark policies regarding trademark usage\nas established at the web site designated by the URL, or as otherwise\ncommunicated to You by GoAhead at its sole discretion. You understand and\nagree that any use of GoAhead Marks in connection with this Agreement\nshall not create any right, title or interest in or to such GoAhead\nMarks and that all such use and goodwill associated with GoAhead Marks\nwill inure to the benefit of GoAhead.\n\n4.2 Promotion by You of GoAhead WebServer Mark. \n\nIn consideration for the licenses granted by GoAhead to You herein, You\nagree to notify GoAhead when You incorporate the GoAhead WebServer in\nYour product and to inform GoAhead when such product begins to ship. You\nagree to promote the Original Code by prominently and visibly displaying\na graphic of the GoAhead WebServer mark on the initial web page of Your\nproduct that is displayed each time a user connects to it. You also agree\nthat GoAhead may identify your company as a user of the GoAhead WebServer\nin conjunction with its own marketing efforts. You may further promote\nthe Original Code by displaying the GoAhead WebServer mark in marketing\nand promotional materials such as the home page of your web site or web\npages promoting the product.\n\n4.3 Placement of Copyright Notice by You. \n\nYou agree to include copies of the following notice (the \"Notice\")\nregarding proprietary rights in all copies of the products that You\ndistribute, as follows: (i) embedded in the object code; and (ii) on\nthe title pages of all documentation. Furthermore, You agree to use\ncommercially reasonable efforts to cause any licensees of your products\nto embed the Notice in object code and on the title pages or relevant\ndocumentation. The Notice is as follows: Copyright (c) 20xx GoAhead\nSoftware, Inc. All Rights Reserved. Unless GoAhead otherwise instructs,\nthe year 20xx is to be replaced with the year during which the release of\nthe Original Code containing the notice is issued by GoAhead. If this year\nis not supplied with Documentation, GoAhead will supply it upon request.\n\n4.4 No Modifications to Server Identification Field. \n\nYou agree not to remove or modify the Server identification Field\ncontained in the Response Header as defined in Section 1.6 and 1.7.\n\n5. Warranty Disclaimers. \n\nTHE ORIGINAL CODE, THE DOCUMENTATION AND THE MEDIA UPON WHICH THE ORIGINAL\nCODE IS RECORDED (IF ANY) ARE PROVIDED \"AS IS\" AND WITHOUT WARRANTIES OF\nANY KIND, EXPRESS, STATUTORY OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.\n\nThe entire risk as to the quality and performance of the Original Code\n(including any Modifications You make) and the Documentation is with\nYou. Should the Original Code or the Documentation prove defective,\nYou (and not GoAhead or its distributors, licensors or dealers) assume\nthe entire cost of all necessary servicing or repair. GoAhead does not\nwarrant that the functions contained in the Original Code will meet your\nrequirements or operate in the combination that You may select for use,\nthat the operation of the Original Code will be uninterrupted or error\nfree, or that defects in the Original Code will be corrected. No oral\nor written statement by GoAhead or by a representative of GoAhead shall\ncreate a warranty or increase the scope of this warranty.\n\nGOAHEAD DOES NOT WARRANT THE ORIGINAL CODE AGAINST INFRINGEMENT OR THE\nLIKE WITH RESPECT TO ANY COPYRIGHT, PATENT, TRADE SECRET, TRADEMARK\nOR OTHER PROPRIETARY RIGHT OF ANY THIRD PARTY AND DOES NOT WARRANT\nTHAT THE ORIGINAL CODE DOES NOT INCLUDE ANY VIRUS, SOFTWARE ROUTINE\nOR OTHER SOFTWARE DESIGNED TO PERMIT UNAUTHORIZED ACCESS, TO DISABLE,\nERASE OR OTHERWISE HARM SOFTWARE, HARDWARE OR DATA, OR TO PERFORM ANY\nOTHER SUCH ACTIONS.\n\nAny warranties that by law survive the foregoing disclaimers shall\nterminate ninety (90) days from the date You received the Original Code.\n\n6. Limitation of Liability. \n\nYOUR SOLE REMEDIES AND GOAHEAD'S ENTIRE LIABILITY ARE SET FORTH ABOVE. IN\nNO EVENT WILL GOAHEAD OR ITS DISTRIBUTORS OR DEALERS BE LIABLE FOR\nDIRECT, INDIRECT, INCIDENTAL OR CONSEQUENTIAL DAMAGES RESULTING FROM\nTHE USE OF THE ORIGINAL CODE, THE INABILITY TO USE THE ORIGINAL CODE,\nOR ANY DEFECT IN THE ORIGINAL CODE, INCLUDING ANY LOST PROFITS, EVEN IF\nTHEY HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nYou agree that GoAhead and its distributors and dealers will not be\nLIABLE for defense or indemnity with respect to any claim against You\nby any third party arising from your possession or use of the Original\nCode or the Documentation.\n\nIn no event will GoAhead\u2019s total liability to You for all damages, losses,\nand causes of action (whether in contract, tort, including negligence,\nor otherwise) exceed the amount You paid for this product.\n\nSOME STATES DO NOT ALLOW LIMITATIONS ON HOW LONG AN IMPLIED WARRANTY\nLASTS, AND SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION\nOF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE LIMITATIONS OR\nEXCLUSIONS MAY NOT APPLY TO YOU. THIS WARRANTY GIVES YOU SPECIFIC LEGAL\nRIGHTS AND YOU MAY ALSO HAVE OTHER RIGHTS WHICH VARY FROM STATE TO STATE.\n\n7. Indemnification by You. \n\nYou agree to indemnify and hold GoAhead harmless against any and all\nclaims, losses, damages and costs (including legal expenses and reasonable\ncounsel fees) arising out of any claim of a third party with respect to\nthe contents of the Your products, and any intellectual property rights\nor other rights or interests related thereto.\n\n8. High Risk Activities. \n\nThe Original Code is not fault-tolerant and is not designed , manufactured\nor intended for use or resale as online control equipment in hazardous\nenvironments requiring fail-safe performance, such as in the operation\nof nuclear facilities, aircraft navigation or communication systems,\nair traffic control, direct life support machines or weapons systems,\nin which the failure of the Original Code could lead directly to death,\npersonal injury, or severe physical or environmental damage. GoAhead and\nits suppliers specifically disclaim any express or implied warranty of\nfitness for any high risk uses listed above.\n\n9. Government Restricted Rights. \n\nFor units of the Department of Defense, use, duplication, or disclosure\nby the Government is subject to restrictions as set forth in subparagraph\n(c)(1)(ii) of the Rights in Technical Data and Computer Software clause\nat DFARS 252.227-7013. Contractor/manufacturer is GoAhead Software,\nInc., 10900 N.E. 8th Street, Suite 750, Bellevue, Washington 98004.\n\nIf the Commercial Computer Software Restricted rights clause at FAR\n52.227-19 or its successors apply, the Software and Documentation\nconstitute restricted computer software as defined in that clause and\nthe Government shall not have the license for published software set\nforth in subparagraph (c)(3) of that clause.\n\nThe Original Code (i) was developed at private expense, and no part of it\nwas developed with governmental funds; (ii) is a trade secret of GoAhead\n(or its licensor(s)) for all purposes of the Freedom of Information Act;\n(iii) is \"restricted computer software\" subject to limited utilization as\nprovided in the contract between the vendor and the governmental entity;\nand (iv) in all respects is proprietary data belonging solely to GoAhead\n(or its licensor(s)).\n\n10. Governing Law and Interpretation. \n\nThis Agreement shall be interpreted under and governed by the laws of the\nState of Washington, without regard to its rules governing the conflict of\nlaws. If any provision of this Agreement is held illegal or unenforceable\nby a court or tribunal of competent jurisdiction, the remaining provisions\nof this Agreement shall remain in effect and the invalid provision deemed\nmodified to the least degree necessary to remedy such invalidity.\n\n11. Entire Agreement. \n\nThis Agreement is the complete agreement between GoAhead and You and\nsupersedes all prior agreements, oral or written, with respect to the\nsubject matter hereof.\n\nIf You have any questions concerning this Agreement, You may write to\nGoAhead Software, Inc., 10900 N.E. 8th Street, Suite 750, Bellevue,\nWashington 98004 or send e-mail to info@goahead.com.\n\nBY CLICKING ON THE \"Register\" BUTTON ON THE REGISTRATION FORM, YOU\nACCEPT AND AGREE TO BE BOUND BY ALL OF THE TERMS AND CONDITIONS SET\nFORTH IN THIS AGREEMENT. IF YOU DO NOT WISH TO ACCEPT THIS LICENSE OR\nYOU DO NOT QUALIFY FOR A LICENSE BASED ON THE TERMS SET FORTH ABOVE,\nYOU MUST NOT CLICK THE \"Register\" BUTTON.\n\nExhibit A \n\nGoAhead Trademarks, Logos, and Product Designation Information \n\n01/28/00", + "json": "goahead.json", + "yaml": "goahead.yml", + "html": "goahead.html", + "license": "goahead.LICENSE" + }, + { + "license_key": "good-boy", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-good-boy", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Please do whatever your mom would approve of:\n\n##Permitted Use\n\n Download in any format\n Change\n Fork\n\n##Prohibited Use\n\n No tattoos\n No touching with unwashed hands\n No exchanging for drugs.", + "json": "good-boy.json", + "yaml": "good-boy.yml", + "html": "good-boy.html", + "license": "good-boy.LICENSE" + }, + { + "license_key": "google-analytics-tos", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "GOOGLE ANALYTICS TERMS OF SERVICE\n\nThese Google Analytics Terms of Service (this \"Agreement\") are entered into by Google Inc. (\"Google\") and the entity executing this Agreement (\"You\"). This Agreement governs Your use of the standard Google Analytics (the \"Service\"). BY CLICKING THE \"I ACCEPT\" BUTTON, COMPLETING THE REGISTRATION PROCESS, OR USING THE SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE REVIEWED AND ACCEPT THIS AGREEMENT AND ARE AUTHORIZED TO ACT ON BEHALF OF, AND BIND TO THIS AGREEMENT, THE OWNER OF THIS ACCOUNT. In consideration of the foregoing, the parties agree as follows:\n\n1. Definitions.\n\"Account\" refers to the billing account for the Service. All Profiles linked to a single Property will have their Hits aggregated before determining the charge for the Service for that Property.\n\n\"Confidential Information\" includes any proprietary data and any other information disclosed by one party to the other in writing and marked \"confidential\" or disclosed orally and, within five business days, reduced to writing and marked \"confidential\". However, Confidential Information will not include any information that is or becomes known to the general public, which is already in the receiving party's possession prior to disclosure by a party or which is independently developed by the receiving party without the use of Confidential Information.\n\n\"Customer Data\" means the data concerning the characteristics and activities of Visitors that is collected through use of the GATC and then forwarded to the Servers and analyzed by the Processing Software.\n\n\"Documentation\" means any accompanying documentation made available to You by Google for use with the Processing Software, including any documentation available online.\n\n\"GATC\" means the Google Analytics Tracking Code, which is installed on a Property for the purpose of collecting Customer Data, together with any fixes, updates and upgrades provided to You.\n\n\"Hit\" means the base unit that the Google Analytics system processes. A Hit may be a call to the Google Analytics system by various libraries, including, Javascript (ga.js, urchin.js), Silverlight, Flash, and Mobile. A Hit may currently be a page view, a transaction, item, or event. Hits may also be delivered to the Google Analytics system without using one of the various libraries by other Google Analytics-supported protocols and mechanisms the Service makes available to You.\n\n\"Processing Software\" means the Google Analytics server-side software and any upgrades, which analyzes the Customer Data and generates the Reports.\n\n\"Profile\" means the collection of settings that together determine the information to be included in, or excluded from, a particular Report. For example, a Profile could be established to view a small portion of a web site as a unique Report. There can be multiple Profiles established under a single Property.\n\n\"Property\" means a group of web pages or apps that are linked to an Account and use the same GATC. Each Property includes a default Profile that measures all pages within the Property.\n\n\"Privacy Policy\" means the privacy policy on a Property.\n\n\"Report\" means the resulting analysis shown at http://www.google.com/analytics for a Profile.\n\n\"Servers\" means the servers controlled by Google (or its wholly owned subsidiaries) on which the Processing Software and Customer Data are stored.\n\n\"Software\" means the GATC and the Processing Software.\n\n\"Third Party\" means any third party (i) to which You provide access to Your Account or (i) for which You use the Service to collect information on the third party's behalf.\n\n\"Visitors\" means visitors to Your Properties.\n\nThe words \"include\" and \"including\" mean \"including but not limited to.\"\n\n2. Fees and Service.\nSubject to Section 15, the Service is provided without charge to You for up to 10 million Hits per month per account. Google may change its fees and payment policies for the Service from time to time including the addition of costs for geographic data, the importing of cost data from search engines, or other fees charged to Google or its wholly-owned subsidiaries by third party vendors for the inclusion of data in the Service reports. The changes to the fees or payment policies are effective upon Your acceptance of those changes which will be posted at http://www.google.com/analytics. Unless otherwise stated, all fees are quoted in U.S. Dollars. Any outstanding balance becomes immediately due and payable upon termination of this Agreement and any collection expenses (including attorneys' fees) incurred by Google will be included in the amount owed, and may be charged to the credit card or other billing mechanism associated with Your AdWords account.\n\n3. Member Account, Password, and Security.\nTo register for the Service, You must complete the registration process by providing Google with current, complete and accurate information as prompted by the registration form, including Your e-mail address (username) and password. You will protect Your passwords and take full responsibility for Your own, and third party, use of Your accounts. You are solely responsible for any and all activities that occur under Your Account. You will notify Google immediately upon learning of any unauthorized use of Your Account or any other breach of security. Google's (or its wholly-owned subsidiaries') support staff may, from time to time, log in to the Service under Your customer password in order to maintain or improve service, including to provide You assistance with technical or billing issues.\n\n4. Nonexclusive License.\nSubject to the terms and conditions of this Agreement, (a) Google grants You a limited, revocable, non-exclusive, non-sublicensable license to install, copy and use the GATC solely as necessary for You to use the Service on Your Properties or Third Party's Properties; and (b) You may remotely access, view and download Your Reports stored at http://www.google.com/analytics. You will not (and You will not allow any third party to) (i) copy, modify, adapt, translate or otherwise create derivative works of the Software or the Documentation; (ii) reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of the Software, except as expressly permitted by the law in effect in the jurisdiction in which You are located; (iii) rent, lease, sell, assign or otherwise transfer rights in or to the Software, the Documentation or the Service; (iv) remove any proprietary notices or labels on the Software or placed by the Service; (v) use, post, transmit or introduce any device, software or routine which interferes or attempts to interfere with the operation of the Service or the Software; or (vi) use data labeled as belonging to a third party in the Service for purposes other than generating, viewing, and downloading Reports. You will comply with all applicable laws and regulations in Your use of and access to the Documentation, Software, Service and Reports.\n\n5. Confidentiality.\nNeither party will use or disclose the other party's Confidential Information without the other's prior written consent except for the purpose of performing its obligations under this Agreement or if required by law, regulation or court order; in which case, the party being compelled to disclose Confidential Information will give the other party as much notice as is reasonably practicable prior to disclosing the Confidential Information. Upon termination of this Agreement, the parties will promptly either return or destroy all Confidential Information and, upon request, provide written certification of such.\n\n6. Information Rights and Publicity.\nGoogle and its wholly owned subsidiaries may retain and use, subject to the terms of its privacy policy (located at http://www.google.com/privacy.html), information collected in Your use of the Service. Google will not share Your Customer Data or any Third Party's Customer Data with any third parties unless Google (i) has Your consent for any Customer Data or any Third Party's consent for the Third Party's Customer Data; (ii) concludes that it is required by law or has a good faith belief that access, preservation or disclosure of Customer Data is reasonably necessary to protect the rights, property or safety of Google, its users or the public; or (iii) provides Customer Data in certain limited circumstances to third parties to carry out tasks on Google's behalf (e.g., billing or data storage) with strict restrictions that prevent the data from being used or shared except as directed by Google. When this is done, it is subject to agreements that oblige those parties to process Customer Data only on Google's instructions and in compliance with this Agreement and appropriate confidentiality and security measures.\n\n7. Privacy.\nYou will not (and will not allow any third party to) use the Service to track, collect or upload any data that personally identifies an individual (such as a name, email address or billing information), or other data which can be reasonably linked to such information by Google. You will have and abide by an appropriate Privacy Policy and will comply with all applicable laws and regulations relating to the collection of information from Visitors. You must post a Privacy Policy and that Privacy Policy must provide notice of Your use of cookies that are used to collect traffic data, and You must not circumvent any privacy features (e.g., an opt-out) that are part of the Service.\nYou may participate in an integrated version of Google Analytics and any DoubleClick product or service or any other Google display ads product or service (\"Google Analytics for Display Advertisers\"). If You use Google Analytics for Display Advertisers, You will comply with the Google Analytics for Display Advertisers Policy (available at http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409 ) and, as set forth in the policy, disclose in Your Privacy Policy (i) Your use of Google Analytics for Display Advertisers and its features You use, and (ii) how Visitors can opt-out from Google Analytics for Display Advertisers. Your access to and use of any DoubleClick or Google display ads data is subject to the applicable terms between You and Google.\n\n8. Indemnification.\nTo the extent permitted by applicable law, You will indemnify, hold harmless and defend Google and its wholly owned subsidiaries, at Your expense, from any and all third-party claims, actions, proceedings, and suits brought against Google or any of its officers, directors, employees, agents or affiliates, and all related liabilities, damages, settlements, penalties, fines, costs or expenses (including, reasonable attorneys' fees and other litigation expenses) incurred by Google or any of its officers, directors, employees, agents or affiliates, arising out of or relating to (i) Your breach of any term or condition of this Agreement, (ii) Your use of the Service, (iii) Your violations of applicable laws, rules or regulations in connection with the Service, (iv) any representations and warranties made by You concerning any aspect of the Service, the Software or Reports to any Third Party; (v) any claims made by or on behalf of any Third Party pertaining directly or indirectly to Your use of the Service, the Software or Reports; (vi) violations of Your obligations of privacy to any Third Party; and (vii) any claims with respect to acts or omissions of any Third Party in connection with the Service, the Software or Reports. Google will provide You with written notice of any claim, suit or action from which You must indemnify Google. You will cooperate as fully as reasonably required in the defense of any claim. Google reserves the right, at its own expense, to assume the exclusive defense and control of any matter subject to indemnification by You.\n\n9. Third Parties.\nIf You use the Service on behalf of the Third Party or a Third Party otherwise uses the Service through Your Account, whether or not You are authorized by Google to do so, then You represent and warrant that (a) You are authorized to act on behalf of, and bind to this Agreement, the Third Party to all obligations that You have under this Agreement, (b) Google may share with the Third Party any Customer Data that is specific to the Third Party's Properties, and (c) You will not disclose Third Party's Customer Data to any other party without the Third Party's consent.\n\n10. DISCLAIMER OF WARRANTIES.\nTO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, EXCEPT AS EXPRESSLY PROVIDED FOR IN THIS AGREEMENT, GOOGLE MAKES NO OTHER WARRANTY OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING WITHOUT LIMITATION WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE AND NONINFRINGEMENT.\n\n11. LIMITATION OF LIABILITY.\nTO THE EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE WILL NOT BE LIABLE FOR YOUR LOST REVENUES OR INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE GOOGLE OR ITS SUBSIDIARIES AND AFFILIATES HAVE BEEN ADVISED OF, KNEW OR SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY A REMEDY. GOOGLE'S (AND ITS WHOLLY OWNED SUBSIDIARIES' TOTAL CUMULATIVE LIABILITY TO YOU OR ANY OTHER PARTY FOR ANY LOSS OR DAMAGES RESULTING FROM CLAIMS, DEMANDS, OR ACTIONS ARISING OUT OF OR RELATING TO THIS AGREEMENT WILL NOT EXCEED $500 (USD).\n\n12. Proprietary Rights Notice.\nThe Service, which includes the Software and all Intellectual Property Rights therein are, and will remain, the property of Google (and its wholly owned subsidiaries). All rights in and to the Software not expressly granted to You in this Agreement are reserved and retained by Google and its licensors without restriction, including, Google's (and its wholly owned subsidiaries') right to sole ownership of the Software and Documentation. Without limiting the generality of the foregoing, You agree not to (and not to allow any third party to): (a) sublicense, distribute, or use the Service or Software outside of the scope of the license granted in this Agreement; (b) copy, modify, adapt, translate, prepare derivative works from, reverse engineer, disassemble, or decompile the Software or otherwise attempt to discover any source code or trade secrets related to the Service; (c) rent, lease, sell, assign or otherwise transfer rights in or to the Software or the Service; (d) use, post, transmit or introduce any device, software or routine which interferes or attempts to interfere with the operation of the Service or the Software; (e) use the trademarks, trade names, service marks, logos, domain names and other distinctive brand features or any copyright or other proprietary rights associated with the Service for any purpose without the express written consent of Google; (f) register, attempt to register, or assist anyone else to register any trademark, trade name, serve marks, logos, domain names and other distinctive brand features, copyright or other proprietary rights associated with Google (or its wholly owned subsidiaries) other than in the name of Google (or its wholly owned subsidiaries, as the case may be); or (g) remove, obscure, or alter any notice of copyright, trademark, or other proprietary right appearing in or on any item included with the Service.\n\n13. U.S. Government Rights.\nIf the use of the Service is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), in accordance with 48 C.F.R. 227.7202-4 (for Department of Defense (DOD) acquisitions) and 48 C.F.R. 2.101 and 12.212 (for non-DOD acquisitions), the Government's rights in the Software, including its rights to use, modify, reproduce, release, perform, display or disclose the Software or Documentation, will be subject in all respects to the commercial license rights and restrictions provided in this Agreement.\n\n14. Term and Termination.\nEither party may terminate this Agreement at any time with notice. Upon any termination of this Agreement, Google will stop providing, and You will stop accessing the Service; and You will delete all copies of the GATC from all Properties and certify thereto in writing to Google within 3 business days of such termination. In the event of any termination (a) You will not be entitled to any refunds of any usage fees or any other fees, and (b) any (i) outstanding balance for Service rendered through the date of termination, and (ii) other unpaid payment obligations during the remainder of the Initial Term will be immediately due and payable in full and (c) all of Your historical Report data will no longer be available to You.\n\n15. Modifications to Terms of Service and Other Policies.\nGoogle may modify these terms or any additional terms that apply to the Service to, for example, reflect changes to the law or changes to the Service. You should look at the terms regularly. Google will post notice of modifications to these terms at http://www.google.com/analytics or policies referenced in these terms at the applicable URL for such policies. Changes will not apply retroactively and will become effective no sooner than 14 days after they are posted. If You do not agree to the modified terms for the Service, You should discontinue Your use Google Analytics. No amendment to or modification of this Agreement will be binding unless (i) in writing and signed by a duly authorized representative of Google, (ii) You accept updated terms online, or (iii) You continue to use the Service after Google has posted updates to the Agreement or to any policy governing the Service.\n\n16. Miscellaneous, Applicable Law and Venue.\nGoogle will be excused from performance in this Agreement to the extent that performance is prevented, delayed or obstructed by causes beyond its reasonable control. This Agreement (including any amendment agreed upon by the parties in writing) represents the complete agreement between You and Google concerning its subject matter, and supersedes all prior agreements and representations between the parties. If any provision of this Agreement is held to be unenforceable for any reason, such provision will be reformed to the extent necessary to make it enforceable to the maximum extent permissible so as to effect the intent of the parties, and the remainder of this Agreement will continue in full force and effect. This Agreement will be governed by and construed under the laws of the state of California without reference to its conflict of law principles. In the event of any conflicts between foreign law, rules, and regulations, and California law, rules, and regulations, California law, rules and regulations will prevail and govern. Each party agrees to submit to the exclusive and personal jurisdiction of the courts located in Santa Clara County, California. The United Nations Convention on Contracts for the International Sale of Goods and the Uniform Computer Information Transactions Act do not apply to this Agreement. The Software is controlled by U.S. Export Regulations, and it may be not be exported to or used by embargoed countries or individuals. Any notices to Google must be sent to: Google Inc., 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA, with a copy to Legal Department, via first class or air mail or overnight courier, and are deemed given upon receipt. A waiver of any default is not a waiver of any subsequent default. You may not assign or otherwise transfer any of Your rights in this Agreement without Google's prior written consent, and any such attempt is void. The relationship between Google and You is not one of a legal partnership relationship, but is one of independent contractors. This Agreement will be binding upon and inure to the benefit of the respective successors and assigns of the parties hereto. The following sections of this Agreement will survive any termination thereof: 1, 4, 5, 6 (except the last two sentences), 7, 8, 9, 10, 11, 12, 14, and 16.", + "json": "google-analytics-tos.json", + "yaml": "google-analytics-tos.yml", + "html": "google-analytics-tos.html", + "license": "google-analytics-tos.LICENSE" + }, + { + "license_key": "google-analytics-tos-2015", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2015", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Analytics Terms of Service\n\nThese Google Analytics Terms of Service (this \"Agreement\") are entered into by\nGoogle Inc. (\"Google\") and the entity executing this Agreement (\"You\"). This\nAgreement governs Your use of the standard Google Analytics (the \"Service\"). BY\nCLICKING THE \"I ACCEPT\" BUTTON, COMPLETING THE REGISTRATION PROCESS, OR USING\nTHE SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE REVIEWED AND ACCEPT THIS AGREEMENT\nAND ARE AUTHORIZED TO ACT ON BEHALF OF, AND BIND TO THIS AGREEMENT, THE OWNER OF\nTHIS ACCOUNT. In consideration of the foregoing, the parties agree as follows:\n\n1. Definitions.\n\n\"Account\" refers to the billing account for the Service. All Profiles linked to\na single Property will have their Hits aggregated before determining the charge\nfor the Service for that Property.\n\n\"Confidential Information\" includes any proprietary data and any other\ninformation disclosed by one party to the other in writing and marked\n\"confidential\" or disclosed orally and, within five business days, reduced to\nwriting and marked \"confidential\". However, Confidential Information will not\ninclude any information that is or becomes known to the general public, which is\nalready in the receiving party's possession prior to disclosure by a party or\nwhich is independently developed by the receiving party without the use of\nConfidential Information.\n\n\"Customer Data\" or \"Google Analytics Data\" means the data you collect, process\nor store using the Service concerning the characteristics and activities of\nVisitors.\n\n\"Documentation\" means any accompanying documentation made available to You by\nGoogle for use with the Processing Software, including any documentation\navailable online.\n\n\"GATC\" means the Google Analytics Tracking Code, which is installed on a\nProperty for the purpose of collecting Customer Data, together with any fixes,\nupdates and upgrades provided to You.\n\n\"Hit\" means the base unit that the Google Analytics system processes. A Hit may\nbe a call to the Google Analytics system by various libraries, including,\nJavascript (e.g., analytics.js), Silverlight, Flash, and Mobile. A Hit may\ncurrently be a page view, a transaction, item, or event, social interaction, or\nuser timing. Hits may also be delivered to the Google Analytics system without\nusing one of the various libraries by other Google Analytics-supported protocols\nand mechanisms the Service makes available to You.\n\n\"Processing Software\" means the Google Analytics server-side software and any\nupgrades, which analyzes the Customer Data and generates the Reports.\n\n\"Profile\" means the collection of settings that together determine the\ninformation to be included in, or excluded from, a particular Report. For\nexample, a Profile could be established to view a small portion of a web site as\na unique Report. There can be multiple Profiles established under a single\nProperty.\n\n\"Property\" means any web page, app, or other property under Your control that\nsends data to Google Analytics. Each Property includes a default Profile that\nmeasures all pages within the Property.\n\n\"Privacy Policy\" means the privacy policy on a Property.\n\n\"Report\" means the resulting analysis shown at www.google.com/analytics for a\nProfile.\n\n\"Servers\" means the servers controlled by Google (or its wholly owned\nsubsidiaries) on which the Processing Software and Customer Data are stored.\n\n\"Software\" means the GATC and the Processing Software.\n\n\"Third Party\" means any third party (i) to which You provide access to Your\nAccount or (i) for which You use the Service to collect information on the third\nparty's behalf.\n\n\"Visitors\" means visitors to Your Properties.\n\nThe words \"include\" and \"including\" mean \"including but not limited to.\"\n\n2. Fees and Service.\n\nSubject to Section 15, the Service is provided without charge to You for up to\n10 million Hits per month per account. Google may change its fees and payment\npolicies for the Service from time to time including the addition of costs for\ngeographic data, the importing of cost data from search engines, or other fees\ncharged to Google or its wholly-owned subsidiaries by third party vendors for\nthe inclusion of data in the Service reports. The changes to the fees or payment\npolicies are effective upon Your acceptance of those changes which will be\nposted at www.google.com/analytics. Unless otherwise stated, all fees are quoted\nin U.S. Dollars. Any outstanding balance becomes immediately due and payable\nupon termination of this Agreement and any collection expenses (including\nattorneys' fees) incurred by Google will be included in the amount owed, and may\nbe charged to the credit card or other billing mechanism associated with Your\nAdWords account.\n\n3. Member Account, Password, and Security.\n\nTo register for the Service, You must complete the registration process by\nproviding Google with current, complete and accurate information as prompted by\nthe registration form, including Your e-mail address (username) and password.\nYou will protect Your passwords and take full responsibility for Your own, and\nthird party, use of Your accounts. You are solely responsible for any and all\nactivities that occur under Your Account. You will notify Google immediately\nupon learning of any unauthorized use of Your Account or any other breach of\nsecurity. Google's (or its wholly-owned subsidiaries') support staff may, from\ntime to time, log in to the Service under Your customer password in order to\nmaintain or improve service, including to provide You assistance with technical\nor billing issues.\n\n4. Nonexclusive License.\n\nSubject to the terms and conditions of this Agreement, (a) Google grants You a\nlimited, revocable, non-exclusive, non-sublicensable license to install, copy\nand use the GATC solely as necessary for You to use the Service on Your\nProperties or Third Party's Properties; and (b) You may remotely access, view\nand download Your Reports stored at www.google.com/analytics. You will not (and\nYou will not allow any third party to) (i) copy, modify, adapt, translate or\notherwise create derivative works of the Software or the Documentation; (ii)\nreverse engineer, decompile, disassemble or otherwise attempt to discover the\nsource code of the Software, except as expressly permitted by the law in effect\nin the jurisdiction in which You are located; (iii) rent, lease, sell, assign or\notherwise transfer rights in or to the Software, the Documentation or the\nService; (iv) remove any proprietary notices or labels on the Software or placed\nby the Service; (v) use, post, transmit or introduce any device, software or\nroutine which interferes or attempts to interfere with the operation of the\nService or the Software; or (vi) use data labeled as belonging to a third party\nin the Service for purposes other than generating, viewing, and downloading\nReports. You will comply with all applicable laws and regulations in Your use of\nand access to the Documentation, Software, Service and Reports.\n\n5. Confidentiality.\n\nNeither party will use or disclose the other party's Confidential Information\nwithout the other's prior written consent except for the purpose of performing\nits obligations under this Agreement or if required by law, regulation or court\norder; in which case, the party being compelled to disclose Confidential\nInformation will give the other party as much notice as is reasonably\npracticable prior to disclosing the Confidential Information.\n\n6. Information Rights and Publicity.\n\nGoogle and its wholly owned subsidiaries may retain and use, subject to the\nterms of its privacy policy (located at www.google.com/privacy.html),\ninformation collected in Your use of the Service. Google will not share Your\nCustomer Data or any Third Party's Customer Data with any third parties unless\nGoogle (i) has Your consent for any Customer Data or any Third Party's consent\nfor the Third Party's Customer Data; (ii) concludes that it is required by law\nor has a good faith belief that access, preservation or disclosure of Customer\nData is reasonably necessary to protect the rights, property or safety of\nGoogle, its users or the public; or (iii) provides Customer Data in certain\nlimited circumstances to third parties to carry out tasks on Google's behalf\n(e.g., billing or data storage) with strict restrictions that prevent the data\nfrom being used or shared except as directed by Google. When this is done, it is\nsubject to agreements that oblige those parties to process Customer Data only on\nGoogle's instructions and in compliance with this Agreement and appropriate\nconfidentiality and security measures.\n\n7. Privacy.\n\nYou will not (and will not allow any third party to) use the Service to track,\ncollect or upload any data that personally identifies an individual (such as a\nname, email address or billing information), or other data which can be\nreasonably linked to such information by Google. You will have and abide by an\nappropriate Privacy Policy and will comply with all applicable laws, policies,\nand regulations relating to the collection of information from Visitors. You\nmust post a Privacy Policy and that Privacy Policy must provide notice of Your\nuse of cookies that are used to collect data. You must disclose the use of\nGoogle Analytics, and how it collects and processes data. This can be done by\ndisplaying a prominent link to the site \"How Google uses data when you use our\npartners' sites or apps\", (located at www.google.com/policies/privacy/partners/,\nor any other URL Google may provide from time to time). You will use\ncommercially reasonable efforts to ensure that a Visitor is provided with clear\nand comprehensive information about, and consents to, the storing and accessing\nof cookies or other information on the Visitor\u2019s device where such activity\noccurs in connection with the Service and where providing such information and\nobtaining such consent is required by law.\n\nYou must not circumvent any privacy features (e.g., an opt-out) that are part of\nthe Service.\n\nYou may participate in an integrated version of Google Analytics and certain\nDoubleClick and Google advertising services (\"Google Analytics Advertising\nFeatures\"). If You use Google Analytics Advertising Features, You will adhere to\nthe Google Analytics Advertising Features policy (available at\nsupport.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409)\nYour access to and use of any DoubleClick or Google advertising service is\nsubject to the applicable terms between You and Google regarding that service.\n\n8. Indemnification.\n\nTo the extent permitted by applicable law, You will indemnify, hold harmless and\ndefend Google and its wholly owned subsidiaries, at Your expense, from any and\nall third-party claims, actions, proceedings, and suits brought against Google\nor any of its officers, directors, employees, agents or affiliates, and all\nrelated liabilities, damages, settlements, penalties, fines, costs or expenses\n(including, reasonable attorneys' fees and other litigation expenses) incurred\nby Google or any of its officers, directors, employees, agents or affiliates,\narising out of or relating to (i) Your breach of any term or condition of this\nAgreement, (ii) Your use of the Service, (iii) Your violations of applicable\nlaws, rules or regulations in connection with the Service, (iv) any\nrepresentations and warranties made by You concerning any aspect of the Service,\nthe Software or Reports to any Third Party; (v) any claims made by or on behalf\nof any Third Party pertaining directly or indirectly to Your use of the Service,\nthe Software or Reports; (vi) violations of Your obligations of privacy to any\nThird Party; and (vii) any claims with respect to acts or omissions of any Third\nParty in connection with the Service, the Software or Reports. Google will\nprovide You with written notice of any claim, suit or action from which You must\nindemnify Google. You will cooperate as fully as reasonably required in the\ndefense of any claim. Google reserves the right, at its own expense, to assume\nthe exclusive defense and control of any matter subject to indemnification by\nYou.\n\n9. Third Parties.\n\nIf You use the Service on behalf of the Third Party or a Third Party otherwise\nuses the Service through Your Account, whether or not You are authorized by\nGoogle to do so, then You represent and warrant that (a) You are authorized to\nact on behalf of, and bind to this Agreement, the Third Party to all obligations\nthat You have under this Agreement, (b) Google may share with the Third Party\nany Customer Data that is specific to the Third Party's Properties, and (c) You\nwill not disclose Third Party's Customer Data to any other party without the\nThird Party's consent.\n\n10. DISCLAIMER OF WARRANTIES.\n\nTO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, EXCEPT AS EXPRESSLY PROVIDED\nFOR IN THIS AGREEMENT, GOOGLE MAKES NO OTHER WARRANTY OF ANY KIND, WHETHER\nEXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING WITHOUT LIMITATION\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE AND NONINFRINGEMENT.\n\n11. LIMITATION OF LIABILITY.\n\nTO THE EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE WILL NOT BE LIABLE FOR YOUR\nLOST REVENUES OR INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR\nPUNITIVE DAMAGES, EVEN IF GOOGLE OR ITS SUBSIDIARIES AND AFFILIATES HAVE BEEN\nADVISED OF, KNEW OR SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN\nIF DIRECT DAMAGES DO NOT SATISFY A REMEDY. GOOGLE'S (AND ITS WHOLLY OWNED\nSUBSIDIARIES' TOTAL CUMULATIVE LIABILITY TO YOU OR ANY OTHER PARTY FOR ANY LOSS\nOR DAMAGES RESULTING FROM CLAIMS, DEMANDS, OR ACTIONS ARISING OUT OF OR RELATING\nTO THIS AGREEMENT WILL NOT EXCEED $500 (USD).\n\n12. Proprietary Rights Notice.\n\nThe Service, which includes the Software and all Intellectual Property Rights\ntherein are, and will remain, the property of Google (and its wholly owned\nsubsidiaries). All rights in and to the Software not expressly granted to You in\nthis Agreement are reserved and retained by Google and its licensors without\nrestriction, including, Google's (and its wholly owned subsidiaries') right to\nsole ownership of the Software and Documentation. Without limiting the\ngenerality of the foregoing, You agree not to (and not to allow any third party\nto): (a) sublicense, distribute, or use the Service or Software outside of the\nscope of the license granted in this Agreement; (b) copy, modify, adapt,\ntranslate, prepare derivative works from, reverse engineer, disassemble, or\ndecompile the Software or otherwise attempt to discover any source code or trade\nsecrets related to the Service; (c) rent, lease, sell, assign or otherwise\ntransfer rights in or to the Software or the Service; (d) use, post, transmit or\nintroduce any device, software or routine which interferes or attempts to\ninterfere with the operation of the Service or the Software; (e) use the\ntrademarks, trade names, service marks, logos, domain names and other\ndistinctive brand features or any copyright or other proprietary rights\nassociated with the Service for any purpose without the express written consent\nof Google; (f) register, attempt to register, or assist anyone else to register\nany trademark, trade name, serve marks, logos, domain names and other\ndistinctive brand features, copyright or other proprietary rights associated\nwith Google (or its wholly owned subsidiaries) other than in the name of Google\n(or its wholly owned subsidiaries, as the case may be); (g) remove, obscure, or\nalter any notice of copyright, trademark, or other proprietary right appearing\nin or on any item included with the Service; or (h) seek, in a proceeding filed\nduring the term of this Agreement or for one year after such term, an injunction\nof any portion of the Service based on patent infringement.\n\n13. U.S. Government Rights.\n\nIf the use of the Service is being acquired by or on behalf of the U.S.\nGovernment or by a U.S. Government prime contractor or subcontractor (at any\ntier), in accordance with 48 C.F.R. 227.7202-4 (for Department of Defense (DOD)\nacquisitions) and 48 C.F.R. 2.101 and 12.212 (for non-DOD acquisitions), the\nGovernment's rights in the Software, including its rights to use, modify,\nreproduce, release, perform, display or disclose the Software or Documentation,\nwill be subject in all respects to the commercial license rights and\nrestrictions provided in this Agreement.\n\n14. Term and Termination.\n\nEither party may terminate this Agreement at any time with notice. Upon any\ntermination of this Agreement, Google will stop providing, and You will stop\naccessing the Service; and You will delete all copies of the GATC from all\nProperties and certify thereto in writing to Google within 3 business days of\nsuch termination. In the event of any termination (a) You will not be entitled\nto any refunds of any usage fees or any other fees, and (b) any outstanding\nbalance for Service rendered through the date of termination will be immediately\ndue and payable in full and (c) all of Your historical Report data will no\nlonger be available to You.\n\n15. Modifications to Terms of Service and Other Policies.\n\nGoogle may modify these terms or any additional terms that apply to the Service\nto, for example, reflect changes to the law or changes to the Service. You\nshould look at the terms regularly. Google will post notice of modifications to\nthese terms at www.google.com/analytics, the Google Analytics Policies at\nwww.google.com/analytics/policies, or other policies referenced in these terms\nat the applicable URL for such policies. Changes will not apply retroactively\nand will become effective no sooner than 14 days after they are posted. If You\ndo not agree to the modified terms for the Service, You should discontinue Your\nuse Google Analytics. No amendment to or modification of this Agreement will be\nbinding unless (i) in writing and signed by a duly authorized representative of\nGoogle, (ii) You accept updated terms online, or (iii) You continue to use the\nService after Google has posted updates to the Agreement or to any policy\ngoverning the Service.\n\n16. Miscellaneous, Applicable Law and Venue.\n\nGoogle will be excused from performance in this Agreement to the extent that\nperformance is prevented, delayed or obstructed by causes beyond its reasonable\ncontrol. This Agreement (including any amendment agreed upon by the parties in\nwriting) represents the complete agreement between You and Google concerning its\nsubject matter, and supersedes all prior agreements and representations between\nthe parties. If any provision of this Agreement is held to be unenforceable for\nany reason, such provision will be reformed to the extent necessary to make it\nenforceable to the maximum extent permissible so as to effect the intent of the\nparties, and the remainder of this Agreement will continue in full force and\neffect. This Agreement will be governed by and construed under the laws of the\nstate of California without reference to its conflict of law principles. In the\nevent of any conflicts between foreign law, rules, and regulations, and\nCalifornia law, rules, and regulations, California law, rules and regulations\nwill prevail and govern. Each party agrees to submit to the exclusive and\npersonal jurisdiction of the courts located in Santa Clara County, California.\nThe United Nations Convention on Contracts for the International Sale of Goods\nand the Uniform Computer Information Transactions Act do not apply to this\nAgreement. The Software is controlled by U.S. Export Regulations, and it may be\nnot be exported to or used by embargoed countries or individuals. Any notices to\nGoogle must be sent to: Google Inc., 1600 Amphitheatre Parkway, Mountain View,\nCA 94043, USA, with a copy to Legal Department, via first class or air mail or\novernight courier, and are deemed given upon receipt. A waiver of any default is\nnot a waiver of any subsequent default. You may not assign or otherwise transfer\nany of Your rights in this Agreement without Google's prior written consent, and\nany such attempt is void. The relationship between Google and You is not one of\na legal partnership relationship, but is one of independent contractors. This\nAgreement will be binding upon and inure to the benefit of the respective\nsuccessors and assigns of the parties hereto. The following sections of this\nAgreement will survive any termination thereof: 1, 4, 5, 6 (except the last two\nsentences), 7, 8, 9, 10, 11, 12, 14, and 16.\n\nLast Updated: 7/30/2015", + "json": "google-analytics-tos-2015.json", + "yaml": "google-analytics-tos-2015.yml", + "html": "google-analytics-tos-2015.html", + "license": "google-analytics-tos-2015.LICENSE" + }, + { + "license_key": "google-analytics-tos-2016", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Analytics Terms of Service\n\nThese Google Analytics Terms of Service (this \"Agreement\") are entered into by Google Inc. (\"Google\") and the entity executing this Agreement (\"You\"). This Agreement governs Your use of the standard Google Analytics (the \"Service\"). BY CLICKING THE \"I ACCEPT\" BUTTON, COMPLETING THE REGISTRATION PROCESS, OR USING THE SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE REVIEWED AND ACCEPT THIS AGREEMENT AND ARE AUTHORIZED TO ACT ON BEHALF OF, AND BIND TO THIS AGREEMENT, THE OWNER OF THIS ACCOUNT. In consideration of the foregoing, the parties agree as follows:\n\n1. Definitions.\n\"Account\" refers to the billing account for the Service. All Profiles linked to a single Property will have their Hits aggregated before determining the charge for the Service for that Property.\n\n\"Confidential Information\" includes any proprietary data and any other information disclosed by one party to the other in writing and marked \"confidential\" or disclosed orally and, within five business days, reduced to writing and marked \"confidential\". However, Confidential Information will not include any information that is or becomes known to the general public, which is already in the receiving party's possession prior to disclosure by a party or which is independently developed by the receiving party without the use of Confidential Information.\n\n\"Customer Data\" or \u201cGoogle Analytics Data\" means the data you collect, process or store using the Service concerning the characteristics and activities of Visitors.\n\n\"Documentation\" means any accompanying documentation made available to You by Google for use with the Processing Software, including any documentation available online.\n\n\"GATC\" means the Google Analytics Tracking Code, which is installed on a Property for the purpose of collecting Customer Data, together with any fixes, updates and upgrades provided to You.\n\n\"Hit\" means the base unit that the Google Analytics system processes. A Hit may be a call to the Google Analytics system by various libraries, including, Javascript (e.g., analytics.js), Silverlight, Flash, and Mobile. A Hit may currently be a page view, a transaction, item, or event, social interaction, or user timing. Hits may also be delivered to the Google Analytics system without using one of the various libraries by other Google Analytics-supported protocols and mechanisms the Service makes available to You.\n\n\"Processing Software\" means the Google Analytics server-side software and any upgrades, which analyzes the Customer Data and generates the Reports.\n\n\"Profile\" means the collection of settings that together determine the information to be included in, or excluded from, a particular Report. For example, a Profile could be established to view a small portion of a web site as a unique Report. There can be multiple Profiles established under a single Property.\n\n\"Property\" means any web page, app, or other property under Your control that sends data to Google Analytics. Each Property includes a default Profile that measures all pages within the Property.\n\n\"Privacy Policy\" means the privacy policy on a Property.\n\n\"Report\" means the resulting analysis shown at www.google.com/analytics/ for a Profile.\n\n\"Servers\" means the servers controlled by Google (or its wholly owned subsidiaries) on which the Processing Software and Customer Data are stored.\n\n\"Software\" means the GATC and the Processing Software.\n\n\"Third Party\" means any third party (i) to which You provide access to Your Account or (ii) for which You use the Service to collect information on the third party's behalf.\n\n\"Visitors\" means visitors to Your Properties.\n\nThe words \"include\" and \"including\" mean \"including but not limited to.\"\n\n2. Fees and Service.\nSubject to Section 15, the Service is provided without charge to You for up to 10 million Hits per month per account. Google may change its fees and payment policies for the Service from time to time including the addition of costs for geographic data, the importing of cost data from search engines, or other fees charged to Google or its wholly-owned subsidiaries by third party vendors for the inclusion of data in the Service reports. The changes to the fees or payment policies are effective upon Your acceptance of those changes which will be posted at www.google.com/analytics/. Unless otherwise stated, all fees are quoted in U.S. Dollars. Any outstanding balance becomes immediately due and payable upon termination of this Agreement and any collection expenses (including attorneys' fees) incurred by Google will be included in the amount owed, and may be charged to the credit card or other billing mechanism associated with Your AdWords account.\n\n3. Member Account, Password, and Security.\nTo register for the Service, You must complete the registration process by providing Google with current, complete and accurate information as prompted by the registration form, including Your e-mail address (username) and password. You will protect Your passwords and take full responsibility for Your own, and third party, use of Your accounts. You are solely responsible for any and all activities that occur under Your Account. You will notify Google immediately upon learning of any unauthorized use of Your Account or any other breach of security. Google's (or its wholly-owned subsidiaries') support staff may, from time to time, log in to the Service under Your customer password in order to maintain or improve service, including to provide You assistance with technical or billing issues.\n\n4. Nonexclusive License.\nSubject to the terms and conditions of this Agreement, (a) Google grants You a limited, revocable, non-exclusive, non-sublicensable license to install, copy and use the GATC solely as necessary for You to use the Service on Your Properties or Third Party's Properties; and (b) You may remotely access, view and download Your Reports stored at www.google.com/analytics/. You will not (and You will not allow any third party to) (i) copy, modify, adapt, translate or otherwise create derivative works of the Software or the Documentation; (ii) reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of the Software, except as expressly permitted by the law in effect in the jurisdiction in which You are located; (iii) rent, lease, sell, assign or otherwise transfer rights in or to the Software, the Documentation or the Service; (iv) remove any proprietary notices or labels on the Software or placed by the Service; (v) use, post, transmit or introduce any device, software or routine which interferes or attempts to interfere with the operation of the Service or the Software; or (vi) use data labeled as belonging to a third party in the Service for purposes other than generating, viewing, and downloading Reports. You will comply with all applicable laws and regulations in Your use of and access to the Documentation, Software, Service and Reports.\n\n5. Confidentiality.\nNeither party will use or disclose the other party's Confidential Information without the other's prior written consent except for the purpose of performing its obligations under this Agreement or if required by law, regulation or court order; in which case, the party being compelled to disclose Confidential Information will give the other party as much notice as is reasonably practicable prior to disclosing the Confidential Information.\n\n6. Information Rights and Publicity.\nGoogle and its wholly owned subsidiaries may retain and use, subject to the terms of its privacy policy (located at https://www.google.com/policies/privacy/), information collected in Your use of the Service. Google will not share Your Customer Data or any Third Party's Customer Data with any third parties unless Google (i) has Your consent for any Customer Data or any Third Party's consent for the Third Party's Customer Data; (ii) concludes that it is required by law or has a good faith belief that access, preservation or disclosure of Customer Data is reasonably necessary to protect the rights, property or safety of Google, its users or the public; or (iii) provides Customer Data in certain limited circumstances to third parties to carry out tasks on Google's behalf (e.g., billing or data storage) with strict restrictions that prevent the data from being used or shared except as directed by Google. When this is done, it is subject to agreements that oblige those parties to process Customer Data only on Google's instructions and in compliance with this Agreement and appropriate confidentiality and security measures.\n\n7. Privacy.\nYou will not and will not assist or permit any third party to, pass information to Google that Google could use or recognize as personally identifiable information. You will have and abide by an appropriate Privacy Policy and will comply with all applicable laws, policies, and regulations relating to the collection of information from Visitors. You must post a Privacy Policy and that Privacy Policy must provide notice of Your use of cookies that are used to collect data. You must disclose the use of Google Analytics, and how it collects and processes data. This can be done by displaying a prominent link to the site \u201cHow Google uses data when you use our partners' sites or apps\u201d, (located at www.google.com/policies/privacy/partners/, or any other URL Google may provide from time to time). You will use commercially reasonable efforts to ensure that a Visitor is provided with clear and comprehensive information about, and consents to, the storing and accessing of cookies or other information on the Visitor\u2019s device where such activity occurs in connection with the Service and where providing such information and obtaining such consent is required by law.\n\nYou must not circumvent any privacy features (e.g., an opt-out) that are part of the Service.\n\nYou may participate in an integrated version of Google Analytics and certain DoubleClick and Google advertising services (\"Google Analytics Advertising Features\"). If You use Google Analytics Advertising Features, You will adhere to the Google Analytics Advertising Features policy (available at support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409) Your access to and use of any DoubleClick or Google advertising service is subject to the applicable terms between You and Google regarding that service.\n\nIf You use the GA 360 Suite Home, Your use of the GA 360 Suite Home is governed by the Google Analytics 360 Suite Home Terms of Services (or as subsequently re-named) available at https://360suite.google.com/terms (or such other URL as Google may provide) as modified from time to time (the \u201cSuite Home Terms\u201d), but subject to Section 2 of the Suite Home Terms, use of the Service will continue to be governed by this Agreement.\n\n8. Indemnification.\nTo the extent permitted by applicable law, You will indemnify, hold harmless and defend Google and its wholly owned subsidiaries, at Your expense, from any and all third-party claims, actions, proceedings, and suits brought against Google or any of its officers, directors, employees, agents or affiliates, and all related liabilities, damages, settlements, penalties, fines, costs or expenses (including, reasonable attorneys' fees and other litigation expenses) incurred by Google or any of its officers, directors, employees, agents or affiliates, arising out of or relating to (i) Your breach of any term or condition of this Agreement, (ii) Your use of the Service, (iii) Your violations of applicable laws, rules or regulations in connection with the Service, (iv) any representations and warranties made by You concerning any aspect of the Service, the Software or Reports to any Third Party; (v) any claims made by or on behalf of any Third Party pertaining directly or indirectly to Your use of the Service, the Software or Reports; (vi) violations of Your obligations of privacy to any Third Party; and (vii) any claims with respect to acts or omissions of any Third Party in connection with the Service, the Software or Reports. Google will provide You with written notice of any claim, suit or action from which You must indemnify Google. You will cooperate as fully as reasonably required in the defense of any claim. Google reserves the right, at its own expense, to assume the exclusive defense and control of any matter subject to indemnification by You.\n\n9. Third Parties.\nIf You use the Service on behalf of the Third Party or a Third Party otherwise uses the Service through Your Account, whether or not You are authorized by Google to do so, then You represent and warrant that (a) You are authorized to act on behalf of, and bind to this Agreement, the Third Party to all obligations that You have under this Agreement, (b) Google may share with the Third Party any Customer Data that is specific to the Third Party's Properties, and (c) You will not disclose Third Party's Customer Data to any other party without the Third Party's consent.\n\n10. DISCLAIMER OF WARRANTIES.\nTO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, EXCEPT AS EXPRESSLY PROVIDED FOR IN THIS AGREEMENT, GOOGLE MAKES NO OTHER WARRANTY OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING WITHOUT LIMITATION WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE AND NONINFRINGEMENT.\n\n11. LIMITATION OF LIABILITY.\nTO THE EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE WILL NOT BE LIABLE FOR YOUR LOST REVENUES OR INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF GOOGLE OR ITS SUBSIDIARIES AND AFFILIATES HAVE BEEN ADVISED OF, KNEW OR SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY A REMEDY. GOOGLE'S (AND ITS WHOLLY OWNED SUBSIDIARIES' TOTAL CUMULATIVE LIABILITY TO YOU OR ANY OTHER PARTY FOR ANY LOSS OR DAMAGES RESULTING FROM CLAIMS, DEMANDS, OR ACTIONS ARISING OUT OF OR RELATING TO THIS AGREEMENT WILL NOT EXCEED $500 (USD).\n\n12. Proprietary Rights Notice.\nThe Service, which includes the Software and all Intellectual Property Rights therein are, and will remain, the property of Google (and its wholly owned subsidiaries). All rights in and to the Software not expressly granted to You in this Agreement are reserved and retained by Google and its licensors without restriction, including, Google's (and its wholly owned subsidiaries') right to sole ownership of the Software and Documentation. Without limiting the generality of the foregoing, You agree not to (and not to allow any third party to): (a) sublicense, distribute, or use the Service or Software outside of the scope of the license granted in this Agreement; (b) copy, modify, adapt, translate, prepare derivative works from, reverse engineer, disassemble, or decompile the Software or otherwise attempt to discover any source code or trade secrets related to the Service; (c) rent, lease, sell, assign or otherwise transfer rights in or to the Software or the Service; (d) use, post, transmit or introduce any device, software or routine which interferes or attempts to interfere with the operation of the Service or the Software; (e) use the trademarks, trade names, service marks, logos, domain names and other distinctive brand features or any copyright or other proprietary rights associated with the Service for any purpose without the express written consent of Google; (f) register, attempt to register, or assist anyone else to register any trademark, trade name, serve marks, logos, domain names and other distinctive brand features, copyright or other proprietary rights associated with Google (or its wholly owned subsidiaries) other than in the name of Google (or its wholly owned subsidiaries, as the case may be); (g) remove, obscure, or alter any notice of copyright, trademark, or other proprietary right appearing in or on any item included with the Service; or (h) seek, in a proceeding filed during the term of this Agreement or for one year after such term, an injunction of any portion of the Service based on patent infringement.\n\n13. U.S. Government Rights.\nIf the use of the Service is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), in accordance with 48 C.F.R. 227.7202-4 (for Department of Defense (DOD) acquisitions) and 48 C.F.R. 2.101 and 12.212 (for non-DOD acquisitions), the Government's rights in the Software, including its rights to use, modify, reproduce, release, perform, display or disclose the Software or Documentation, will be subject in all respects to the commercial license rights and restrictions provided in this Agreement.\n\n14. Term and Termination.\nEither party may terminate this Agreement at any time with notice. Upon any termination of this Agreement, Google will stop providing, and You will stop accessing the Service; and You will delete all copies of the GATC from all Properties and certify thereto in writing to Google within 3 business days of such termination. In the event of any termination (a) You will not be entitled to any refunds of any usage fees or any other fees, and (b) any outstanding balance for Service rendered through the date of termination will be immediately due and payable in full and (c) all of Your historical Report data will no longer be available to You.\n\n15. Modifications to Terms of Service and Other Policies.\nGoogle may modify these terms or any additional terms that apply to the Service to, for example, reflect changes to the law or changes to the Service. You should look at the terms regularly. Google will post notice of modifications to these terms at www.google.com/analytics/, the Google Analytics Policies at www.google.com/analytics/policies/, or other policies referenced in these terms at the applicable URL for such policies. Changes will not apply retroactively and will become effective no sooner than 14 days after they are posted. If You do not agree to the modified terms for the Service, You should discontinue Your use Google Analytics. No amendment to or modification of this Agreement will be binding unless (i) in writing and signed by a duly authorized representative of Google, (ii) You accept updated terms online, or (iii) You continue to use the Service after Google has posted updates to the Agreement or to any policy governing the Service.\n\n16. Miscellaneous, Applicable Law and Venue.\nGoogle will be excused from performance in this Agreement to the extent that performance is prevented, delayed or obstructed by causes beyond its reasonable control. This Agreement (including any amendment agreed upon by the parties in writing) represents the complete agreement between You and Google concerning its subject matter, and supersedes all prior agreements and representations between the parties. If any provision of this Agreement is held to be unenforceable for any reason, such provision will be reformed to the extent necessary to make it enforceable to the maximum extent permissible so as to effect the intent of the parties, and the remainder of this Agreement will continue in full force and effect. This Agreement will be governed by and construed under the laws of the state of California without reference to its conflict of law principles. In the event of any conflicts between foreign law, rules, and regulations, and California law, rules, and regulations, California law, rules and regulations will prevail and govern. Each party agrees to submit to the exclusive and personal jurisdiction of the courts located in Santa Clara County, California. The United Nations Convention on Contracts for the International Sale of Goods and the Uniform Computer Information Transactions Act do not apply to this Agreement. The Software is controlled by U.S. Export Regulations, and it may be not be exported to or used by embargoed countries or individuals. Any notices to Google must be sent to: Google Inc., 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA, with a copy to Legal Department, via first class or air mail or overnight courier, and are deemed given upon receipt. A waiver of any default is not a waiver of any subsequent default. You may not assign or otherwise transfer any of Your rights in this Agreement without Google's prior written consent, and any such attempt is void. The relationship between Google and You is not one of a legal partnership relationship, but is one of independent contractors. This Agreement will be binding upon and inure to the benefit of the respective successors and assigns of the parties hereto. The following sections of this Agreement will survive any termination thereof: 1, 4, 5, 6 (except the last two sentences), 7, 8, 9, 10, 11, 12, 14, and 16.\n\nLast Updated 5/24/2016", + "json": "google-analytics-tos-2016.json", + "yaml": "google-analytics-tos-2016.yml", + "html": "google-analytics-tos-2016.html", + "license": "google-analytics-tos-2016.LICENSE" + }, + { + "license_key": "google-analytics-tos-2019", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Analytics Terms of Service\n\nThese Google Analytics Terms of Service (this \"Agreement\") are entered into by Google LLC (\"Google\") and the entity executing this Agreement (\"You\"). This Agreement governs Your use of the standard Google Analytics (the \"Service\"). BY CLICKING THE \"I ACCEPT\" BUTTON, COMPLETING THE REGISTRATION PROCESS, OR USING THE SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE REVIEWED AND ACCEPT THIS AGREEMENT AND ARE AUTHORIZED TO ACT ON BEHALF OF, AND BIND TO THIS AGREEMENT, THE OWNER OF THIS ACCOUNT. In consideration of the foregoing, the parties agree as follows:\n\n1. Definitions.\n\n\"Account\" refers to the account for the Service. All Profiles (as applicable) linked to a single Property will have their Hits aggregated before determining the charge for the Service for that Property.\n\n\"Confidential Information\" includes any proprietary data and any other information disclosed by one party to the other in writing and marked \"confidential\" or disclosed orally and, within five business days, reduced to writing and marked \"confidential\". However, Confidential Information will not include any information that is or becomes known to the general public, which is already in the receiving party's possession prior to disclosure by a party or which is independently developed by the receiving party without the use of Confidential Information.\n\n\"Customer Data\" or \"Google Analytics Data\" means the data you collect, process or store using the Service concerning the characteristics and activities of Users.\n\n\"Documentation\" means any accompanying documentation made available to You by Google for use with the Processing Software, including any documentation available online.\n\n\"GAMC\" means the Google Analytics Measurement Code, which is installed on a Property for the purpose of collecting Customer Data, together with any fixes, updates and upgrades provided to You.\n\n\"Hit\" means a collection of interactions that results in data being sent to the Service and processed. Examples of Hits may include page view hits and ecommerce hits. A Hit can be a call to the Service by various libraries, but does not have to be so (e.g., a Hit can be delivered to the Service by other Google Analytics-supported protocols and mechanisms made available by the Service to You).\n\n\"Platform Home\" means the user interface through which You can access certain Google Marketing Platform-level functionality.\n\n\"Processing Software\" means the Google Analytics server-side software and any upgrades, which analyzes the Customer Data and generates the Reports.\n\n\"Profile\" means the collection of settings that together determine the information to be included in, or excluded from, a particular Report. For example, a Profile could be established to view a small portion of a web site as a unique Report.\n\n\"Property\" means any web page, application, other property or resource under Your control that sends data to Google Analytics.\n\n\"Privacy Policy\" means the privacy policy on a Property.\n\n\"Report\" means the resulting analysis shown at www.google.com/analytics/, some of which may include analysis for a Profile.\n\n\"Servers\" means the servers controlled by Google (or its wholly-owned subsidiaries) on which the Processing Software and Customer Data are stored.\n\n\u201cSDKs\u201d mean certain software development kits, which may be used or incorporated into a Property app for the purpose of collecting Customer Data, together with any fixes, updates, and upgrades provided to You.\n\n\"Software\" means the Processing Software, GAMC and/or SDKs.\n\n\"Third Party\" means any third party (i) to which You provide access to Your Account or (ii) for which You use the Service to collect information on the third party's behalf.\n\n\"Users\" means users and/or visitors to Your Properties.\n\nThe words \"include\" and \"including\" mean \"including but not limited to.\"\n\n2. Fees and Service.\n\nSubject to Section 15, the Service is provided without charge to You for up to 10 million Hits per month per Account. Google may change its fees and payment policies for the Service from time to time including the addition of costs for geographic data, the importing of cost data from search engines, or other fees charged to Google or its wholly-owned subsidiaries by third party vendors for the inclusion of data in the Service reports. The changes to the fees or payment policies are effective upon Your acceptance of those changes which will be posted at www.google.com/analytics/. Unless otherwise stated, all fees are quoted in U.S. Dollars. Any outstanding balance becomes immediately due and payable upon termination of this Agreement and any collection expenses (including attorneys' fees) incurred by Google will be included in the amount owed, and may be charged to the credit card or other billing mechanism associated with Your AdWords account.\n\n3. Member Account, Password, and Security.\n\nTo register for the Service, You must complete the registration process by providing Google with current, complete and accurate information as prompted by the registration form, including Your e-mail address (username) and password. You will protect Your passwords and take full responsibility for Your own, and third party, use of Your accounts. You are solely responsible for any and all activities that occur under Your Account. You will notify Google immediately upon learning of any unauthorized use of Your Account or any other breach of security. Google's (or its wholly-owned subsidiaries) support staff may, from time to time, log in to the Service under Your customer password in order to maintain or improve service, including to provide You assistance with technical or billing issues.\n\n4. Nonexclusive License.\n\nSubject to the terms and conditions of this Agreement, (a) Google grants You a limited, revocable, non-exclusive, non-sublicensable license to install, copy and use the GAMC and/or SDKs solely as necessary for You to use the Service on Your Properties or Third Party's Properties; and (b) You may remotely access, view and download Your Reports stored at www.google.com/analytics/. You will not (and You will not allow any third party to) (i) copy, modify, adapt, translate or otherwise create derivative works of the Software or the Documentation; (ii) reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of the Software, except as expressly permitted by the law in effect in the jurisdiction in which You are located; (iii) rent, lease, sell, assign or otherwise transfer rights in or to the Software, the Documentation or the Service; (iv) remove any proprietary notices or labels on the Software or placed by the Service; (v) use, post, transmit or introduce any device, software or routine which interferes or attempts to interfere with the operation of the Service or the Software; or (vi) use data labeled as belonging to a third party in the Service for purposes other than generating, viewing, and downloading Reports. You will comply with all applicable laws and regulations in Your use of and access to the Documentation, Software, Service and Reports.\n\n5. Confidentiality and Beta Features.\n\nNeither party will use or disclose the other party's Confidential Information without the other's prior written consent except for the purpose of performing its obligations under this Agreement or if required by law, regulation or court order; in which case, the party being compelled to disclose Confidential Information will give the other party as much notice as is reasonably practicable prior to disclosing the Confidential Information. Certain Service features are identified as \"Alpha,\" \"Beta,\" \"Experiment,\" (either within the Service or elsewhere by Google) or as otherwise unsupported or confidential (collectively, \"Beta Features\"). You may not disclose any information from Beta Features or the terms or existence of any non-public Beta Features. Google will have no liability arising out of or related to any Beta Features.\n\n6. Information Rights and Publicity.\n\nGoogle and its wholly owned subsidiaries may retain and use, subject to the terms of its privacy policy (located at https://www.google.com/policies/privacy/), information collected in Your use of the Service. Google will not share Your Customer Data or any Third Party's Customer Data with any third parties unless Google (i) has Your consent for any Customer Data or any Third Party's consent for the Third Party's Customer Data; (ii) concludes that it is required by law or has a good faith belief that access, preservation or disclosure of Customer Data is reasonably necessary to protect the rights, property or safety of Google, its users or the public; or (iii) provides Customer Data in certain limited circumstances to third parties to carry out tasks on Google's behalf (e.g., billing or data storage) with strict restrictions that prevent the data from being used or shared except as directed by Google. When this is done, it is subject to agreements that oblige those parties to process Customer Data only on Google's instructions and in compliance with this Agreement and appropriate confidentiality and security measures.\n\n7. Privacy.\n\nYou will not and will not assist or permit any third party to, pass information to Google that Google could use or recognize as personally identifiable information. You will have and abide by an appropriate Privacy Policy and will comply with all applicable laws, policies, and regulations relating to the collection of information from Users. You must post a Privacy Policy and that Privacy Policy must provide notice of Your use of cookies, identifiers for mobile devices (e.g., Android Advertising Identifier or Advertising Identifier for iOS) or similar technology used to collect data. You must disclose the use of Google Analytics, and how it collects and processes data. This can be done by displaying a prominent link to the site \"How Google uses data when you use our partners' sites or apps\", (located at www.google.com/policies/privacy/partners/, or any other URL Google may provide from time to time). You will use commercially reasonable efforts to ensure that a User is provided with clear and comprehensive information about, and consents to, the storing and accessing of cookies or other information on the User\u2019s device where such activity occurs in connection with the Service and where providing such information and obtaining such consent is required by law.\n\nYou must not circumvent any privacy features (e.g., an opt-out) that are part of the Service. You will comply with all applicable Google Analytics policies located at www.google.com/analytics/policies/ (or such other URL as Google may provide) as modified from time to time (the \"Google Analytics Policies\").\n\nYou may participate in an integrated version of Google Analytics and certain Google advertising services (\"Google Analytics Advertising Features\"). If You use Google Analytics Advertising Features, You will adhere to the Google Analytics Advertising Features policy (available at support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409). Your access to and use of any Google advertising service is subject to the applicable terms between You and Google regarding that service.\n\nIf You use the Platform Home, Your use of the Platform Home is subject to the Platform Home Additional Terms (or as subsequently re-named) available at https://support.google.com/marketingplatform/answer/9047313 (or such other URL as Google may provide) as modified from time to time (the \"Platform Home Terms\").\n\n8. Indemnification.\n\nTo the extent permitted by applicable law, You will indemnify, hold harmless and defend Google and its wholly-owned subsidiaries, at Your expense, from any and all third-party claims, actions, proceedings, and suits brought against Google or any of its officers, directors, employees, agents or affiliates, and all related liabilities, damages, settlements, penalties, fines, costs or expenses (including, reasonable attorneys' fees and other litigation expenses) incurred by Google or any of its officers, directors, employees, agents or affiliates, arising out of or relating to (i) Your breach of any term or condition of this Agreement, (ii) Your use of the Service, (iii) Your violations of applicable laws, rules or regulations in connection with the Service, (iv) any representations and warranties made by You concerning any aspect of the Service, the Software or Reports to any Third Party; (v) any claims made by or on behalf of any Third Party pertaining directly or indirectly to Your use of the Service, the Software or Reports; (vi) violations of Your obligations of privacy to any Third Party; and (vii) any claims with respect to acts or omissions of any Third Party in connection with the Service, the Software or Reports. Google will provide You with written notice of any claim, suit or action from which You must indemnify Google. You will cooperate as fully as reasonably required in the defense of any claim. Google reserves the right, at its own expense, to assume the exclusive defense and control of any matter subject to indemnification by You.\n\n9. Third Parties.\n\nIf You use the Service on behalf of the Third Party or a Third Party otherwise uses the Service through Your Account, whether or not You are authorized by Google to do so, then You represent and warrant that (a) You are authorized to act on behalf of, and bind to this Agreement, the Third Party to all obligations that You have under this Agreement, (b) Google may share with the Third Party any Customer Data that is specific to the Third Party's Properties, and (c) You will not disclose Third Party's Customer Data to any other party without the Third Party's consent.\n\n10. DISCLAIMER OF WARRANTIES.\n\nTO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, EXCEPT AS EXPRESSLY PROVIDED FOR IN THIS AGREEMENT, GOOGLE MAKES NO OTHER WARRANTY OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING WITHOUT LIMITATION WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE AND NONINFRINGEMENT.\n\n11. LIMITATION OF LIABILITY.\n\nTO THE EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE WILL NOT BE LIABLE FOR YOUR LOST REVENUES OR INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF GOOGLE OR ITS SUBSIDIARIES AND AFFILIATES HAVE BEEN ADVISED OF, KNEW OR SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY A REMEDY. GOOGLE'S (AND ITS WHOLLY OWNED SUBSIDIARIES\u2019) TOTAL CUMULATIVE LIABILITY TO YOU OR ANY OTHER PARTY FOR ANY LOSS OR DAMAGES RESULTING FROM CLAIMS, DEMANDS, OR ACTIONS ARISING OUT OF OR RELATING TO THIS AGREEMENT WILL NOT EXCEED $500 (USD).\n\n12. Proprietary Rights Notice.\n\nThe Service, which includes the Software and all Intellectual Property Rights therein are, and will remain, the property of Google (and its wholly owned subsidiaries). All rights in and to the Software not expressly granted to You in this Agreement are reserved and retained by Google and its licensors without restriction, including, Google's (and its wholly owned subsidiaries\u2019) right to sole ownership of the Software and Documentation. Without limiting the generality of the foregoing, You agree not to (and not to allow any third party to): (a) sublicense, distribute, or use the Service or Software outside of the scope of the license granted in this Agreement; (b) copy, modify, adapt, translate, prepare derivative works from, reverse engineer, disassemble, or decompile the Software or otherwise attempt to discover any source code or trade secrets related to the Service; (c) rent, lease, sell, assign or otherwise transfer rights in or to the Software, Documentation or the Service; (d) use, post, transmit or introduce any device, software or routine which interferes or attempts to interfere with the operation of the Service or the Software; (e) use the trademarks, trade names, service marks, logos, domain names and other distinctive brand features or any copyright or other proprietary rights associated with the Service for any purpose without the express written consent of Google; (f) register, attempt to register, or assist anyone else to register any trademark, trade name, serve marks, logos, domain names and other distinctive brand features, copyright or other proprietary rights associated with Google (or its wholly owned subsidiaries) other than in the name of Google (or its wholly owned subsidiaries, as the case may be); (g) remove, obscure, or alter any notice of copyright, trademark, or other proprietary right appearing in or on any item included with the Service or Software; or (h) seek, in a proceeding filed during the term of this Agreement or for one year after such term, an injunction of any portion of the Service based on patent infringement.\n\n13. U.S. Government Rights.\n\nIf the use of the Service is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), in accordance with 48 C.F.R. 227.7202-4 (for Department of Defense (DOD) acquisitions) and 48 C.F.R. 2.101 and 12.212 (for non-DOD acquisitions), the Government's rights in the Software, including its rights to use, modify, reproduce, release, perform, display or disclose the Software or Documentation, will be subject in all respects to the commercial license rights and restrictions provided in this Agreement.\n\n14. Term and Termination.\n\nEither party may terminate this Agreement at any time with notice. Upon any termination of this Agreement, Google will stop providing, and You will stop accessing the Service. Additionally, if Your Account and/or Properties are terminated, You will (i) delete all copies of the GAMC from all Properties and/or (ii) suspend any and all use of the SDKs within 3 business days of such termination. In the event of any termination (a) You will not be entitled to any refunds of any usage fees or any other fees, and (b) any outstanding balance for Service rendered through the date of termination will be immediately due and payable in full and (c) all of Your historical Report data will no longer be available to You.\n\n15. Modifications to Terms of Service and Other Policies.\n\nGoogle may modify these terms or any additional terms that apply to the Service to, for example, reflect changes to the law or changes to the Service. You should look at the terms regularly. Google will post notice of modifications to these terms at https://www.google.com/analytics/terms/, the Google Analytics Policies at www.google.com/analytics/policies/, or other policies referenced in these terms at the applicable URL for such policies. Changes will not apply retroactively and will become effective no sooner than 14 days after they are posted. If You do not agree to the modified terms for the Service, You should discontinue Your use Google Analytics. No amendment to or modification of this Agreement will be binding unless (i) in writing and signed by a duly authorized representative of Google, (ii) You accept updated terms online, or (iii) You continue to use the Service after Google has posted updates to the Agreement or to any policy governing the Service.\n\n16. Miscellaneous, Applicable Law and Venue.\n\nGoogle will be excused from performance in this Agreement to the extent that performance is prevented, delayed or obstructed by causes beyond its reasonable control. This Agreement (including any amendment agreed upon by the parties in writing) represents the complete agreement between You and Google concerning its subject matter, and supersedes all prior agreements and representations between the parties. If any provision of this Agreement is held to be unenforceable for any reason, such provision will be reformed to the extent necessary to make it enforceable to the maximum extent permissible so as to effect the intent of the parties, and the remainder of this Agreement will continue in full force and effect. This Agreement will be governed by and construed under the laws of the state of California without reference to its conflict of law principles. In the event of any conflicts between foreign law, rules, and regulations, and California law, rules, and regulations, California law, rules and regulations will prevail and govern. Each party agrees to submit to the exclusive and personal jurisdiction of the courts located in Santa Clara County, California. The United Nations Convention on Contracts for the International Sale of Goods and the Uniform Computer Information Transactions Act do not apply to this Agreement. The Software is controlled by U.S. Export Regulations, and it may be not be exported to or used by embargoed countries or individuals. Any notices to Google must be sent to: Google LLC, 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA, with a copy to Legal Department, via first class or air mail or overnight courier, and are deemed given upon receipt. A waiver of any default is not a waiver of any subsequent default. You may not assign or otherwise transfer any of Your rights in this Agreement without Google's prior written consent, and any such attempt is void. The relationship between Google and You is not one of a legal partnership relationship, but is one of independent contractors. This Agreement will be binding upon and inure to the benefit of the respective successors and assigns of the parties hereto. The following sections of this Agreement will survive any termination thereof: 1, 4, 5, 6 (except the last two sentences), 7, 8, 9, 10, 11, 12, 14, 16, and 17.\n\n17. Google Analytics for Firebase.\n\nIf You link a Property to Firebase (\u201cFirebase Linkage\u201d) as part of using the Service, the following terms, in addition to Sections 1-16 above, will also apply to You, and will also govern Your use of the Service, including with respect to Your use of Firebase Linkage. Other than as modified below, all other terms will stay the same and continue to apply. In the event of a conflict between this Section 17 and Sections 1-16 above, the terms in Section 17 will govern and control solely with respect to Your use of the Firebase Linkage.\n\n A. The following definition in Section 1 is modified as follows:\n a. \"Hit\" means a collection of interactions that results in data being sent to the Service and processed. Examples of Hits may include page view hits and ecommerce hits. A Hit can be a call to the Service by various libraries, but does not have to be so (e.g., a Hit can be delivered to the Service by other Google Analytics-supported protocols and mechanisms made available by the Service to You). For the sake of clarity, a Hit does not include certain events whose collection reflects interactions with certain Properties capable of supporting multiple data streams, and which may include screen views and custom events (the collection of events, an \u201cEnhanced Packet\u201d).\n B. The following sentence is added to the end of Section 7 as follows:\n a. If You link a Property to a Firebase project (\u201cFirebase Linkage\u201d) (i) certain data from Your Property, including Customer Data, may be made accessible within or to any other entity or personnel according to permissions set in Firebase and (ii) that Property may have certain Service settings modified by authorized personnel of Firebase (notwithstanding the settings You may have designated for that Property within the Service).\n\nLast Updated June 17, 2019", + "json": "google-analytics-tos-2019.json", + "yaml": "google-analytics-tos-2019.yml", + "html": "google-analytics-tos-2019.html", + "license": "google-analytics-tos-2019.LICENSE" + }, + { + "license_key": "google-apis-tos-2021", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-apis-tos-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google APIs Terms of Service \nLast modified: November 9, 2021\n\nThank you for using Google's APIs, other developer services, and associated software (collectively, \"APIs\"). By accessing or using our APIs, you are agreeing to the terms below. If there is a conflict between these terms and additional terms applicable to a given API, the additional terms will control for that conflict. Collectively, we refer to the terms below, any additional terms, terms within the accompanying API documentation, and any applicable policies and guidelines as the \"Terms.\" You agree to comply with the Terms and that the Terms control your relationship with us. So please read all the Terms carefully. If you use the APIs as an interface to, or in conjunction with other Google products or services, then the terms for those other products or services also apply.\n\nUnder the Terms, \"Google\" means Google LLC, with offices at 1600 Amphitheatre Parkway, Mountain View, California 94043, United States, unless set forth otherwise in additional terms applicable for a given API. We may refer to \"Google\" as \"we\", \"our\", or \"us\" in the Terms.\n\nSection 1: Account and Registration\na. Accepting the Terms\nYou may not use the APIs and may not accept the Terms if (a) you are not of legal age to form a binding contract with Google, or (b) you are a person barred from using or receiving the APIs under the applicable laws of the United States or other countries including the country in which you are resident or from which you use the APIs.\n\nb. Entity Level Acceptance\nIf you are using the APIs on behalf of an entity, you represent and warrant that you have authority to bind that entity to the Terms and by accepting the Terms, you are doing so on behalf of that entity (and all references to \"you\" in the Terms refer to that entity).\n\nc. Registration\nIn order to access certain APIs you may be required to provide certain information (such as identification or contact details) as part of the registration process for the APIs, or as part of your continued use of the APIs. Any registration information you give to Google will always be accurate and up to date and you'll inform us promptly of any updates.\n\nd. Subsidiaries and Affiliates\nGoogle has subsidiaries and affiliated legal entities around the world. These companies may provide the APIs to you on behalf of Google and the Terms will also govern your relationship with these companies.\n\nSection 2: Using Our APIs\na. Your End Users\nYou will require your end users to comply with (and not knowingly enable them to violate) applicable law, regulation, and the Terms.\n\nb. Compliance with Law, Third Party Rights, and Other Google Terms of Service\nYou will comply with all applicable law, regulation, and third party rights (including without limitation laws regarding the import or export of data or software, privacy, and local laws). You will not use the APIs to encourage or promote illegal activity or violation of third party rights. You will not violate any other terms of service with Google (or its affiliates).\n\nc. Permitted Access\nYou will only access (or attempt to access) an API by the means described in the documentation of that API. If Google assigns you developer credentials (e.g. client IDs), you must use them with the applicable APIs. You will not misrepresent or mask either your identity or your API Client's identity when using the APIs or developer accounts.\n\nd. API Limitations\nGoogle sets and enforces limits on your use of the APIs (e.g. limiting the number of API requests that you may make or the number of users you may serve), in our sole discretion. You agree to, and will not attempt to circumvent, such limitations documented with each API. If you would like to use any API beyond these limits, you must obtain Google's express consent (and Google may decline such request or condition acceptance on your agreement to additional terms and/or charges for that use). To seek such approval, contact the relevant Google API team for information (e.g. by using the Google developers console).\n\ne. Open Source Software\nSome of the software required by or included in our APIs may be offered under an open source license. Open source software licenses constitute separate written agreements. For certain APIs, open source software is listed in the documentation. To the limited extent the open source software license expressly supersedes the Terms, the open source license instead sets forth your agreement with Google for the applicable open source software.\n\nf. Communication with Google\nWe may send you certain communications in connection with your use of the APIs. Please review the applicable API documentation for information about opting out of certain types of communication.\n\ng. Feedback\nIf you provide feedback or suggestions about our APIs, then we (and those we allow) may use such information without obligation to you.\n\nh. Non-Exclusivity\nThe Terms are non-exclusive. You acknowledge that Google may develop products or services that may compete with the API Clients or any other products or services.\n\ni. Google Controller-Controller Data Protection Terms\nTo the extent required by data protection laws applicable to the parties' processing of personal data under these Terms, the parties agree to the Google Controller-Controller Data Protection Terms.\n\nSection 3: Your API Clients\na. API Clients and Monitoring\nThe APIs are designed to help you enhance your websites and applications (\"API Client(s)\"). YOU AGREE THAT GOOGLE MAY MONITOR USE OF THE APIS TO ENSURE QUALITY, IMPROVE GOOGLE PRODUCTS AND SERVICES, AND VERIFY YOUR COMPLIANCE WITH THE TERMS. This monitoring may include Google accessing and using your API Client, for example to identify security issues that could affect Google or its users. You will not interfere with this monitoring. Google may use any technical means to overcome such interference. Google may suspend access to the APIs by you or your API Client without notice if we reasonably believe that you are in violation of the Terms.\n\nb. Security\nYou will use commercially reasonable efforts to protect user information collected by your API Client, including personal data, from unauthorized access or use and will promptly report to your users any unauthorized access or use of such information to the extent required by applicable law.\n\nc. Ownership\nGoogle does not acquire ownership in your API Clients, and by using our APIs, you do not acquire ownership of any rights in our APIs or the content that is accessed through our APIs.\n\nd. User Privacy and API Clients\nYou will comply with (1) all applicable privacy laws and regulations including those applying to personal data and (2) the Google API Services User Data Policy, which governs your use of the APIs when you request access to Google user information. You will provide and adhere to a privacy policy for your API Client that clearly and accurately describes to users of your API Client what user information you collect and how you use and share such information (including for advertising) with Google and third parties.\n\nSection 4: Prohibitions and Confidentiality\na. API Prohibitions\nWhen using the APIs, you may not (or allow those acting on your behalf to):\n\nSublicense an API for use by a third party. Consequently, you will not create an API Client that functions substantially the same as the APIs and offer it for use by third parties.\nPerform an action with the intent of introducing to Google products and services any viruses, worms, defects, Trojan horses, malware, or any items of a destructive nature.\nDefame, abuse, harass, stalk, or threaten others.\nInterfere with or disrupt the APIs or the servers or networks providing the APIs.\nPromote or facilitate unlawful online gambling or disruptive commercial messages or advertisements.\nReverse engineer or attempt to extract the source code from any API or any related software, except to the extent that this restriction is expressly prohibited by applicable law.\nUse the APIs for any activities where the use or failure of the APIs could lead to death, personal injury, or environmental damage (such as the operation of nuclear facilities, air traffic control, or life support systems).\nUse the APIs to process or store any data that is subject to the International Traffic in Arms Regulations maintained by the U.S. Department of State.\nRemove, obscure, or alter any Google terms of service or any links to or notices of those terms.\nUnless otherwise specified in writing by Google, Google does not intend use of the APIs to create obligations under the Health Insurance Portability and Accountability Act, as amended (\"HIPAA\"), and makes no representations that the APIs satisfy HIPAA requirements. If you are (or become) a \"covered entity\" or \"business associate\" as defined in HIPAA, you will not use the APIs for any purpose or in any manner involving transmitting protected health information to Google unless you have received prior written consent to such use from Google.\n\nb. Confidential Matters\nDeveloper credentials (such as passwords, keys, and client IDs) are intended to be used by you and identify your API Client. You will keep your credentials confidential and make reasonable efforts to prevent and discourage other API Clients from using your credentials. Developer credentials may not be embedded in open source projects.\nOur communications to you and our APIs may contain Google confidential information. Google confidential information includes any materials, communications, and information that are marked confidential or that would normally be considered confidential under the circumstances. If you receive any such information, then you will not disclose it to any third party without Google's prior written consent. Google confidential information does not include information that you independently developed, that was rightfully given to you by a third party without confidentiality obligation, or that becomes public through no fault of your own. You may disclose Google confidential information when compelled to do so by law if you provide us reasonable prior notice, unless a court orders that we not receive notice.\n\nSection 5: Content\na. Content Accessible Through our APIs\nOur APIs contain some third party content (such as text, images, videos, audio, or software). This content is the sole responsibility of the person that makes it available. We may sometimes review content to determine whether it is illegal or violates our policies or the Terms, and we may remove or refuse to display content. Finally, content accessible through our APIs may be subject to intellectual property rights, and, if so, you may not use it unless you are licensed to do so by the owner of that content or are otherwise permitted by law. Your access to the content provided by the API may be restricted, limited, or filtered in accordance with applicable law, regulation, and policy.\n\nb. Submission of Content\nSome of our APIs allow the submission of content. Google does not acquire any ownership of any intellectual property rights in the content that you submit to our APIs through your API Client, except as expressly provided in the Terms. For the sole purpose of enabling Google to provide, secure, and improve the APIs (and the related service(s)) and only in accordance with the applicable Google privacy policies, you give Google a perpetual, irrevocable, worldwide, sublicensable, royalty-free, and non-exclusive license to Use content submitted, posted, or displayed to or from the APIs through your API Client. \"Use\" means use, host, store, modify, communicate, and publish. Before you submit content to our APIs through your API Client, you will ensure that you have the necessary rights (including the necessary rights from your end users) to grant us the license.\n\nc. Retrieval of content\nWhen a user's non-public content is obtained through the APIs, you may not expose that content to other users or to third parties without explicit opt-in consent from that user.\n\nd. Data Portability\nGoogle supports data portability. For as long as you use or store any user data that you obtained through the APIs, you agree to enable your users to export their equivalent data to other services or applications of their choice in a way that's substantially as fast and easy as exporting such data from Google products and services, subject to applicable laws, and you agree that you will not make that data available to third parties who do not also abide by this obligation.\n\ne. Prohibitions on Content\nUnless expressly permitted by the content owner or by applicable law, you will not, and will not permit your end users or others acting on your behalf to, do the following with content returned from the APIs:\n\nScrape, build databases, or otherwise create permanent copies of such content, or keep cached copies longer than permitted by the cache header;\nCopy, translate, modify, create a derivative work of, sell, lease, lend, convey, distribute, publicly display, or sublicense to any third party;\nMisrepresent the source or ownership; or\nRemove, obscure, or alter any copyright, trademark, or other proprietary rights notices; or falsify or delete any author attributions, legal notices, or other labels of the origin or source of material.\n\nSection 6: Brand Features; Attribution\na. Brand Features\n\"Brand Features\" is defined as the trade names, trademarks, service marks, logos, domain names, and other distinctive brand features of each party. Except where expressly stated, the Terms do not grant either party any right, title, or interest in or to the other party's Brand Features. All use by you of Google's Brand Features (including any goodwill associated therewith) will inure to the benefit of Google.\n\nb. Attribution\nYou agree to display any attribution(s) required by Google as described in the documentation for the API. Google hereby grants to you a nontransferable, nonsublicenseable, nonexclusive license while the Terms are in effect to display Google's Brand Features for the purpose of promoting or advertising that you use the APIs. You must only use the Google Brand Features in accordance with the Terms and for the purpose of fulfilling your obligations under this Section. In using Google's Brand Features, you must follow the Google Brand Features Use Guidelines. You understand and agree that Google has the sole discretion to determine whether your attribution(s) and use of Google's Brand Features are in accordance with the above requirements and guidelines.\n\nc. Publicity\nYou will not make any statement regarding your use of an API which suggests partnership with, sponsorship by, or endorsement by Google without Google's prior written approval.\n\nd. Promotional and Marketing Use\nIn the course of promoting, marketing, or demonstrating the APIs you are using and the associated Google products, Google may produce and distribute incidental depictions, including screenshots, video, or other content from your API Client, and may use your company or product name. You grant us all necessary rights for the above purposes.\n\nSection 7: Privacy and Copyright Protection\na. Google Privacy Policies\nBy using our APIs, Google may use submitted information in accordance with our privacy policies.\n\nb. Google DMCA Policy\nWe provide information to help copyright holders manage their intellectual property online, but we can't determine whether something is being used legally or not without their input. We respond to notices of alleged copyright infringement and terminate accounts of repeat infringers according to the process set out in the U.S. Digital Millennium Copyright Act. If you think somebody is violating your copyrights and want to notify us, you can find information about submitting notices and Google's policy about responding to notices in our Help Center.\n\nSection 8: Termination\na. Termination\nYou may stop using our APIs at any time with or without notice. Further, if you want to terminate the Terms, you must provide Google with prior written notice and upon termination, cease your use of the applicable APIs. Google reserves the right to terminate the Terms with you or discontinue the APIs or any portion or feature or your access thereto for any reason and at any time without liability or other obligation to you.\n\nb. Your Obligations Post-Termination\nUpon any termination of the Terms or discontinuation of your access to an API, you will immediately stop using the API, cease all use of the Google Brand Features, and delete any cached or stored content that was permitted by the cache header under Section 5. Google may independently communicate with any account owner whose account(s) are associated with your API Client and developer credentials to provide notice of the termination of your right to use an API.\n\nc. Surviving Provisions\nWhen the Terms come to an end, those terms that by their nature are intended to continue indefinitely will continue to apply, including but not limited to: Sections 4b, 5, 8, 9, and 10.\n\nSection 9: Liability for our APIs\na. WARRANTIES\nEXCEPT AS EXPRESSLY SET OUT IN THE TERMS, NEITHER GOOGLE NOR ITS SUPPLIERS OR DISTRIBUTORS MAKE ANY SPECIFIC PROMISES ABOUT THE APIS. FOR EXAMPLE, WE DON'T MAKE ANY COMMITMENTS ABOUT THE CONTENT ACCESSED THROUGH THE APIS, THE SPECIFIC FUNCTIONS OF THE APIS, OR THEIR RELIABILITY, AVAILABILITY, OR ABILITY TO MEET YOUR NEEDS. WE PROVIDE THE APIS \"AS IS\".\n\nSOME JURISDICTIONS PROVIDE FOR CERTAIN WARRANTIES, LIKE THE IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. EXCEPT AS EXPRESSLY PROVIDED FOR IN THE TERMS, TO THE EXTENT PERMITTED BY LAW, WE EXCLUDE ALL WARRANTIES, GUARANTEES, CONDITIONS, REPRESENTATIONS, AND UNDERTAKINGS.\n\nb. LIMITATION OF LIABILITY\nWHEN PERMITTED BY LAW, GOOGLE, AND GOOGLE'S SUPPLIERS AND DISTRIBUTORS, WILL NOT BE RESPONSIBLE FOR LOST PROFITS, REVENUES, OR DATA; FINANCIAL LOSSES; OR INDIRECT, SPECIAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES.\n\nTO THE EXTENT PERMITTED BY LAW, THE TOTAL LIABILITY OF GOOGLE, AND ITS SUPPLIERS AND DISTRIBUTORS, FOR ANY CLAIM UNDER THE TERMS, INCLUDING FOR ANY IMPLIED WARRANTIES, IS LIMITED TO THE AMOUNT YOU PAID US TO USE THE APPLICABLE APIS (OR, IF WE CHOOSE, TO SUPPLYING YOU THE APIS AGAIN) DURING THE SIX MONTHS PRIOR TO THE EVENT GIVING RISE TO THE LIABILITY.\n\nIN ALL CASES, GOOGLE, AND ITS SUPPLIERS AND DISTRIBUTORS, WILL NOT BE LIABLE FOR ANY EXPENSE, LOSS, OR DAMAGE THAT IS NOT REASONABLY FORESEEABLE.\n\nc. Indemnification\nUnless prohibited by applicable law, if you are a business, you will defend and indemnify Google, and its affiliates, directors, officers, employees, and users, against all liabilities, damages, losses, costs, fees (including legal fees), and expenses relating to any allegation or third-party legal proceeding to the extent arising from:\n\nyour misuse or your end user's misuse of the APIs;\nyour violation or your end user's violation of the Terms; or\nany content or data routed into or used with the APIs by you, those acting on your behalf, or your end users.\n\nSection 10: General Provisions\na. Modification\nWe may modify the Terms or any portion to, for example, reflect changes to the law or changes to our APIs. You should look at the Terms regularly. We'll post notice of modifications to the Terms within the documentation of each applicable API, to this website, and/or in the Google developers console. Changes will not apply retroactively and will become effective no sooner than 30 days after they are posted. But changes addressing new functions for an API or changes made for legal reasons will be effective immediately. If you do not agree to the modified Terms for an API, you should discontinue your use of that API. Your continued use of the API constitutes your acceptance of the modified Terms.\n\nb. U.S. Federal Agency Entities\nThe APIs were developed solely at private expense and are commercial computer software and related documentation within the meaning of the applicable U.S. Federal Acquisition Regulation and agency supplements thereto.\n\nc. General Legal Terms\nWe each agree to contract in the English language. If we provide a translation of the Terms, we do so for your convenience only and the English Terms will solely govern our relationship. The Terms do not create any third party beneficiary rights or any agency, partnership, or joint venture. Nothing in the Terms will limit either party's ability to seek injunctive relief. We are not liable for failure or delay in performance to the extent caused by circumstances beyond our reasonable control. If you do not comply with the Terms, and Google does not take action right away, this does not mean that Google is giving up any rights that it may have (such as taking action in the future). If it turns out that a particular term is not enforceable, this will not affect any other terms. The Terms are the entire agreement between you and Google relating to its subject and supersede any prior or contemporaneous agreements on that subject. For information about how to contact Google, please visit our contact page.\n\nExcept as set forth below: (i) the laws of California, U.S.A., excluding California's conflict of laws rules, will apply to any disputes arising out of or related to the Terms or the APIs and (ii) ALL CLAIMS ARISING OUT OF OR RELATING TO THE TERMS OR THE APIS WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA, AND YOU AND GOOGLE CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\nIf you are accepting the Terms on behalf of a United States federal government entity, then the following applies instead of the paragraph above: the laws of the United States of America, excluding its conflict of laws rules, will apply to any disputes arising out of or related to the Terms or the APIs. Solely to the extent permitted by United States Federal law: (i) the laws of the State of California (excluding California's conflict of laws rules) will apply in the absence of applicable federal law; and (ii) FOR ALL CLAIMS ARISING OUT OF OR RELATING TO THE TERMS OR THE APIS, THE PARTIES CONSENT TO PERSONAL JURISDICTION IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\nIf you are accepting the Terms on behalf of a United States city, county, or state government entity, then the following applies instead of the paragraph above: the parties agree to remain silent regarding governing law and venue.", + "json": "google-apis-tos-2021.json", + "yaml": "google-apis-tos-2021.yml", + "html": "google-apis-tos-2021.html", + "license": "google-apis-tos-2021.LICENSE" + }, + { + "license_key": "google-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-google-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Individual Contributor License Agreement\n\nIn order to clarify the intellectual property license granted with Contributions from any person or entity, Google LLC (\"Google\") must have a Contributor License Agreement (\"CLA\") on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for your protection as a Contributor as well as the protection of Google; it does not change your rights to use your own Contributions for any other purpose.\n\nYou accept and agree to the following terms and conditions for Your present and future Contributions submitted to Google. Except for the license granted herein to Google and recipients of software distributed by Google, You reserve all right, title, and interest in and to Your Contributions.\n\n Definitions.\n\n \"You\" (or \"Your\") shall mean the copyright owner or legal entity authorized by the copyright owner that is making this Agreement with Google. For legal entities, the entity making a Contribution and all other entities that control, are controlled by, or are under common control with that entity are considered to be a single Contributor. 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.\n\n \"Contribution\" shall mean any original work of authorship, including any modifications or additions to an existing work, that is intentionally submitted by You to Google for inclusion in, or documentation of, any of the products owned or managed by Google (the \"Work\"). For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to Google 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, Google for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by You as \"Not a Contribution.\"\n\n Grant of Copyright License. Subject to the terms and conditions of this Agreement, You hereby grant to Google and to recipients of software distributed by Google 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 Your Contributions and such derivative works.\n\n Grant of Patent License. Subject to the terms and conditions of this Agreement, You hereby grant to Google and to recipients of software distributed by Google 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 You that are necessarily infringed by Your Contribution(s) alone or by combination of Your Contribution(s) with the Work to which such Contribution(s) was submitted. If any entity institutes patent litigation against You or any other entity (including a cross-claim or counterclaim in a lawsuit) alleging that your Contribution, or the Work to which you have contributed, constitutes direct or contributory patent infringement, then any patent licenses granted to that entity under this Agreement for that Contribution or Work shall terminate as of the date such litigation is filed.\n\n You represent that you are legally entitled to grant the above license. If your employer(s) has rights to intellectual property that you create that includes your Contributions, you represent that you have received permission to make Contributions on behalf of that employer, that your employer has waived such rights for your Contributions to Google, or that your employer has executed a separate Corporate CLA with Google.\n\n You represent that each of Your Contributions is Your original creation (see section 7 for submissions on behalf of others). You represent that Your Contribution submissions include complete details of any third-party license or other restriction (including, but not limited to, related patents and trademarks) of which you are personally aware and which are associated with any part of Your Contributions.\n\n You are not expected to provide support for Your Contributions, except to the extent You desire to provide support. You may provide support for free, for a fee, or not at all. Unless required by applicable law or agreed to in writing, You provide Your 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.\n\n Should You wish to submit work that is not Your original creation, You may submit it to Google separately from any Contribution, identifying the complete details of its source and of any license or other restriction (including, but not limited to, related patents, trademarks, and license agreements) of which you are personally aware, and conspicuously marking the work as \"Submitted on behalf of a third-party: [named here]\".\n\n You agree to notify Google of any facts or circumstances of which you become aware that would make these representations inaccurate in any respect.", + "json": "google-cla.json", + "yaml": "google-cla.yml", + "html": "google-cla.html", + "license": "google-cla.LICENSE" + }, + { + "license_key": "google-corporate-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-google-corporate-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Software Grant and Corporate Contributor License Agreement\n\nIn order to clarify the intellectual property license granted with Contributions from any person or entity, Google LLC (\"Google\") must have a Contributor License Agreement (CLA) on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for your protection as a Contributor as well as the protection of Google and its users; it does not change your rights to use your own Contributions for any other purpose.\n\nThis version of the Agreement allows an entity (the \"Corporation\") to submit Contributions to Google, to authorize Contributions submitted by its designated employees to Google, and to grant copyright and patent licenses thereto.\n\nYou accept and agree to the following terms and conditions for Your present and future Contributions submitted to Google. Except for the license granted herein to Google and recipients of software distributed by Google, You reserve all right, title, and interest in and to Your Contributions.\n\n Definitions.\n\n \"You\" (or \"Your\") shall mean the copyright owner or legal entity authorized by the copyright owner that is making this Agreement with Google. For legal entities, the entity making a Contribution and all other entities that control, are controlled by, or are under common control with that entity are considered to be a single Contributor. 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.\n\n \"Contribution\" shall mean the code, documentation or any original work of authorship, including any modifications or additions to an existing work, that is intentionally submitted by You to Google for inclusion in, or documentation of, any of the products owned or managed by Google (the \"Work\"). For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to Google 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, Google for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by You as \"Not a Contribution.\"\n\n Grant of Copyright License. Subject to the terms and conditions of this Agreement, You hereby grant to Google and to recipients of software distributed by Google 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 Your Contributions and such derivative works.\n\n Grant of Patent License. Subject to the terms and conditions of this Agreement, You hereby grant to Google and to recipients of software distributed by Google 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 You that are necessarily infringed by Your Contribution(s) alone or by combination of Your Contribution(s) with the Work to which such Contribution(s) was submitted. If any entity institutes patent litigation against You or any other entity (including a cross-claim or counterclaim in a lawsuit) alleging that your Contribution, or the Work to which you have contributed, constitutes direct or contributory patent infringement, then any patent licenses granted to that entity under this Agreement for that Contribution or Work shall terminate as of the date such litigation is filed.\n\n You represent that You are legally entitled to grant the above license. You represent further that each employee of the Corporation designated by You is authorized to submit Contributions on behalf of the Corporation.\n\n You represent that each of Your Contributions is Your original creation (see section 7 for submissions on behalf of others).\n\n You are not expected to provide support for Your Contributions, except to the extent You desire to provide support. You may provide support for free, for a fee, or not at all. Unless required by applicable law or agreed to in writing, You provide Your 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.\n\n Should You wish to submit work that is not Your original creation, You may submit it to Google separately from any Contribution, identifying the complete details of its source and of any license or other restriction (including, but not limited to, related patents, trademarks, and license agreements) of which you are personally aware, and conspicuously marking the work as \"Submitted on behalf of a third-party: [named here]\".\n\n It is your responsibility to notify Google when any change is required to the list of designated employees authorized to submit Contributions on behalf of the Corporation, or to the Corporation's Point of Contact with Google.", + "json": "google-corporate-cla.json", + "yaml": "google-corporate-cla.yml", + "html": "google-corporate-cla.html", + "license": "google-corporate-cla.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-02-07", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-02-07", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Maps APIs Terms of Service\n\nThank you for your interest in the Google Maps APIs. The Google Maps APIs are a collection of services that allow you to include maps, geocoding, places, and other content from Google in your web pages or applications.\n\nLast Updated: February 7, 2018\n\nThis page contains the Google Maps Platform Terms of Service. If you have questions about these terms, please consult the FAQ\u2019s Terms of Service section. These terms do not apply if you have entered into a separate written agreement with Google (such as a Google Maps Platform Premium Plan or Google Maps APIs for Work agreement) related to the Google Maps APIs.\n1. Your relationship with Google.\n\n1.1 Use of the Service is Subject to these Terms. Your use of any of the Google Maps APIs (referred to in this document as the \"Maps API(s)\" or the \"Service\") is subject to the terms of a legal agreement between you and Google (the \"Terms\"). \"Google\" means either (a) Google Ireland Limited, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if your billing address is in any country within Europe, the Middle East, or Africa (\"EMEA\"); (b) Google Asia Pacific Pte. Ltd., with offices at 70 Pasir Panjang Road, #03-71, Mapletree Business City, Singapore 117371, if your billing address is in any country within the Asia Pacific region excluding Australia (\"APAC\"); (c) Google Australia Pty Ltd. with offices at Level 5, 48 Pirrama Road, Pyrmont 2009, NSW, Australia, if your billing address is in Australia; or (d) Google Inc., with offices at 1600 Amphitheatre Parkway, Mountain View, California 94043, USA, if your billing address is in any country in the world other than those in EMEA, APAC or Australia.\n\n1.2 The Terms include Google's Legal Notices and Privacy Policy.\n\n Unless otherwise agreed in writing with Google, the Terms will include the following:\n the terms and conditions in this document (the \"Maps APIs Terms\");\n the Legal Notices; and\n the Privacy Policy. \n Before you use the Maps API(s), you should read each of the documents comprising the Terms, and print or save a local copy for your records. \n\n1.3 Use of Other Google Services and Additional Terms. If you use the Maps API(s) in conjunction with any other Google products, including any other Google API(s), (collectively, the Service and all other Google products and services are referred to as the \"Google Services\"), your agreement with Google will also include the terms applicable to those Google Services. All of these are referred to as the \"Additional Terms.\" If Additional Terms apply, they will be accessible to you either within or through your use of the applicable Google Services. If there is any contradiction between the Additional Terms and the Maps APIs Terms, then the Maps APIs Terms will take precedence only as they relate to the Maps API(s), and not to any other Google Services.\n\n1.4 Precedence of Maps APIs Terms. If there is any contradiction between the Maps APIs Terms and other Maps API(s)-related documents (including the Maps APIs Documentation), then the Maps APIs Terms will take precedence.\n\n1.5 Changes to the Terms. Google reserves the right to make changes to the Terms from time to time. When these changes are made, Google will make a new copy of the Terms available at http://developers.google.com/maps/terms (or such other URL as Google may provide). You understand and agree that if you use the Service after the date on which the Terms have changed, Google will treat your use as acceptance of the updated Terms. If a modification is unacceptable to you, you may terminate this agreement by ceasing use of the Maps API(s).\n2. Accepting the Terms.\n\n2.1 Clicking to Accept or Using the Maps API(s). In order to use the Maps API(s), you must agree to the Terms by:\n\n clicking to accept the Terms, where this option is made available to you by Google in the Service\u2019s user interface; or\n using the Maps API(s). You understand and agree that Google will treat your use of the Maps API(s) as acceptance of the Terms from that point onwards. \n\n2.2 U.S. Law Restrictions. You may not use the Maps API(s) and may not accept the Terms if you are a person barred from using the Service under United States law.\n\n2.3 Authority to Accept the Terms. You represent that you have full power, capacity, and authority to accept these Terms. If you are accepting on behalf of your employer or another entity, you represent that you have full legal authority to bind your employer or such entity to these Terms. If you don't have the legal authority to bind, please ensure that an authorized person from your entity consents to and accepts these Terms.\n3. Privacy and Personal Information.\n\n3.1 Google\u2019s Privacy Policy. For information about Google's data protection practices, please read Google's Privacy Policy. This policy explains how Google treats your personal information and protects your privacy when you use the Service.\n\n3.2 Use of Your Data under Google\u2019s Privacy Policy. You agree to the use of your data in accordance with Google's Privacy Policy.\n\n3.3 Your Privacy Policy. You must post and abide by an appropriate privacy policy in your Maps API Implementation in accordance with Section 9.3 (End User Terms and Privacy Policy).\n\n3.4 Applicable Privacy Laws. You will comply with all applicable laws relating to the collection of information from visitors to your Maps API Implementation.\n\n3.5 European Data Protection Terms. You and Google agree to the Google Maps Controller-Controller Data Protection Terms.\n\n3.6 No Personally Identifiable Information or Personal Data. You must not provide to Google: (a) any personally identifiable information or device identifiers; or (b) any European person\u2019s Personal Data (where \u201cEuropean\u201d means \u201cEuropean Economic Area or Switzerland\u201d and \u201cPersonal Data\u201d has the meaning provided in the General Data Protection Regulation (EU) 2016/679 of the European Parliament and of the Council of April 27, 2016). Users of your Maps API Implementation may provide information directly to Google through your Maps API Implementation, as needed.\n4. Provision of the Service by Google.\n\n4.1 Google\u2019s Subsidiaries and Affiliates. Google has subsidiaries and affiliated legal entities around the world (\"Subsidiaries and Affiliates\"). Sometimes, these companies will be providing the Service to you on behalf of Google itself. You understand and agree that Subsidiaries and Affiliates will be entitled to provide the Service to you.\n\n4.2 Limits on Your Use of the Service. You understand and agree that Google may limit the number of transactions you may send or receive through the Service; such fixed upper limits may be set by Google at any time, at Google\u2019s discretion. For further information, see Section 10.4(b) below.\n\n4.3 Advertising.\n\n In places results. Google reserves the right to include advertising in the places results provided to you through the Maps API(s). By using the Maps API(s) to obtain places results, you agree to display such advertising in the form provided to you by Google.\n In maps images. Google also reserves the right to include advertising in the maps images provided to you through the Maps API(s), subject to the following provisions. In this Section, \"Ads Notice\" means a notice from Google that it will include advertising in a particular Maps API. The Ads Notice may be provided on relevant Google websites, including the Google Geo Developers Blog (or such other URL as Google may provide) and the applicable Google Maps API Groups.\n New Maps API(s) and major version upgrades of existing Maps API(s) launched with an Ads Notice. A \"major version\" of a Maps API is denoted by a new \"whole number\" in the version name (for example, a \"major version\" change occurs if API v4.5 is replaced by v5.0). By using the maps images in these new or major version upgrades of the Maps API(s), you agree to display the advertising included in those maps images in the form provided to you by Google.\n Maps API(s) and major version upgrades of existing Maps API(s) launched without an Ads Notice. For any Maps API that Google has launched (or launches in the future) without an Ads Notice, Google will not include advertising in that API\u2019s maps images unless Google provides you with an Ads Notice at least 90 days beforehand (the \"Ads Notice Period\").\n Maps API Implementations that incorporated the Maps API(s) before April 8, 2011. If your Maps API Implementation incorporated a major version of a Maps API before April 8, 2011, you have a limited right to opt out of advertising in the maps images provided through that major version of that Maps API by providing written notice to Google during the Ads Notice Period; your notice must state that you refuse to accept advertising in the maps images and must be provided to Google in accordance with Google's notice requirements (as specified in Google's Ads Notice). \n Opting out of ads. You may at any time opt out of advertising in the places results and the maps images by either:\n contacting the Google Maps sales team to obtain a Google enterprise license; or\n terminating your use of the Service. \n Indexing and caching for ads serving. By using an API that serves ads, you give Google the right to access, index, and cache the web pages or applications that contain your Maps API Implementation. \n\n4.4 Changes to the Service; Deprecation Policy. The following is the Service\u2019s \"Deprecation Policy\":\n\n Google will announce if it intends to remove major features from, or discontinue, an API or the Service.\n Google will use commercially reasonable efforts to continue to operate those Google Maps API versions and features identified at http://developers.google.com/maps/maps-api-list without these changes until one year after the announcement, unless Google determines in its reasonable good faith judgment that:\n it is required by law or third-party relationship (including changes in law or relationships) to make those changes earlier; or\n doing so could create a security risk or substantial economic or material technical burden. \n\n5. Your Google Account.\n\n5.1 Signing Up for a Google Account. In order to access the Service, you must have and maintain a Google Account in good standing. You must ensure that any information you give to Google in connection with your Google Account or the Service will always be accurate, correct, and up to date.\n\n5.2 Your Passwords and Account Security. You will be solely responsible to Google for your use of the Service. You must notify Google immediately if you become aware of any unauthorized use of your password; your Google Account; or any unique identifier that Google requires you to use, such as an API Key or client ID (a \"Developer Identifier\").\n6. Google\u2019s Proprietary Rights.\n\nYou understand and agree that Google and its licensors and their suppliers (as applicable) own all legal right, title, and interest in and to the Service and Content, including any intellectual property rights in the Service and Content (whether those rights are registered or not, and wherever in the world those rights may exist).\n7. Permitted Uses.\n\nYou will use the Service only for purposes that:\n\n are permitted by the Terms (including the Licenses in Section 8);\n are permitted by any applicable law or third-party contract in the relevant jurisdictions; and\n comply with all applicable policies or guidelines made available by Google, including in the Maps APIs Documentation and the Permission Guidelines for Google Maps and Google Earth. \n\n8. Licenses from Google to You.\n\n8.1 Definitions.\n\n \"Brand Features\" means trade names, trademarks, logos, domain names, and other distinctive brand features.\n \"Content\" means any content provided through the Service (whether created by Google or its third-party licensors), including map and terrain data, imagery, traffic data, and places data (including business listings).\n \"Maps API Implementation\" means a software application, website, or other implementation that uses the Maps API(s) to obtain and display Content in conjunction with Your Content.\n \"Your Content\" means any content that you provide in your Maps API Implementation, including data, images, video, or software. Your Content does not include the Content as defined in Subsection (b). \n\n8.2 Service License. Subject to these Terms (including Section 9 (License Requirements) and Section 10 (License Restrictions)), during the term of this agreement, Google gives you a non-exclusive, worldwide, personal, non-transferable, non-assignable, non-sublicensable, royalty-free license to use the Service as provided by Google, in the manner permitted by the Terms.\n\n8.3 Content License. Subject to these Terms (including Sections 8.3(a) and (b), Section 9 (License Requirements), and Section 10 (License Restrictions)), during the term of this agreement, Google gives you a non-exclusive, worldwide, personal, non-transferable,non-assignable, non-sublicensable, royalty-free license to use the Content in your Maps API Implementation, as the Content is provided in the Service, and in the manner permitted by the Terms.\n\n Content (including map data, traffic, directions, and places) is provided for planning purposes only. You may find that weather conditions, construction projects, closures,or other events may cause road conditions or directions to differ from the results depicted in the Content. You should exercise judgment in your use of the Content.\n Certain Content is provided under license from third parties, and is subject to copyright and other intellectual property rights owned by or licensed to such third parties. You may be held liable for any unauthorized use of this content. Your use of third-party Content (including certain business listings Content) is subject to additional restrictions located in the Legal Notices page. \n\n8.4 Brand Features License.\n\n Grant. Subject to these Terms (including Section 8.4(b), Section 9 (License Requirements), and Section 10 (License Restrictions)), during the term of this agreement, Google gives you a non-exclusive, worldwide, personal, non-transferable, non-assignable, non-sublicensable, royalty-free license to display Google\u2019s Brand Features solely for the purposes of (i) promoting or advertising your authorized use of the Service in accordance with this Section and (ii) fulfilling your obligations under the Terms.\n Restrictions. In using Google Brand Features, you will not:\n display a Google Brand Feature in any manner that implies a relationship or affiliation with, sponsorship, or endorsement by Google (other than your use of the Service), or that can be reasonably interpreted to suggest editorial content has been authored by, or represents the views or opinions of, Google or its personnel;\n display a Google Brand Feature in your Maps API Implementation, site, or other propert(ies) if any of them contain or display adult content or promote illegal activities, gambling, or the sale of tobacco or alcohol to persons under 21 years of age;\n have the Google logo as the largest logo in your Maps API Implementation, site, or other propert(ies) (except as displayed in the map image itself);\n display a Google Brand Feature as the most prominent element in your Maps API Implementation, on any page of your site, or on any of your other propert(ies);\n display a Google Brand Feature in a manner that is misleading, defamatory, infringing, libelous, disparaging, obscene, or otherwise objectionable to Google;\n use Google Brand Features to disparage Google or the Google Services;\n display a Google Brand Feature in your Maps API Implementation, site, or other propert(ies) that violate any law or regulation; or\n remove, distort, or alter any element of a Google Brand Feature (including squeezing, stretching, inverting, or discoloring). \n No further license grant; no challenges. Except as stated in this Section, nothing in the Terms grants or will be deemed to grant you any right, title, or interest in Google\u2019s Brand Features. Your use of Google\u2019s Brand Features (including any goodwill associated with them) will inure to Google\u2019s benefit. During and after the Term, and to the maximum extent permitted by applicable law, you will not challenge or assist others to challenge Google\u2019s Brand Features (or their registration by Google), and you will not attempt to register any Brand Features (including domain names) that are confusingly similar to Google\u2019s in any way (including in sound, appearance, or spelling). \n\n8.5 Proprietary Rights Notices. You will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices, Terms of Use links, or Brand Features) displayed or provided through the Service. Where such notices are not displayed or provided within the Service, you must display such notices according to the Maps APIs Documentation.\n\n8.6 U.S. Government Restricted Rights. If the Service or Content is being used or accessed by or on behalf of the United States government, such use is subject to additional terms located in our Legal Notices page\u2019s \"Government End Users\" section.\n\n8.7 Determination of Compliance. Google reserves the sole right and discretion to determine whether your use of the Service, Content, and Brand Features complies with these Terms.\n9. License Requirements.\n\nGoogle\u2019s licenses above are subject to your compliance with the following requirements:\n\n9.1 Free, Public Accessibility to Your Maps API Implementation.\n\n9.1.1 General Rules.\n\n Free access (no fees). Subject to Section 9.1.2 (Exceptions), your Maps API Implementation must be accessible to the general public without charge and must not require a fee-based subscription or other fee-based restricted access. This rule applies to Your Content and any other content in your Maps API Implementation, whether Your Content or the other content exists now or is added later.\n Public access (no firewall). Your Maps API Implementation must not operate (i) only behind a firewall; or (ii) only on an internal network (except during the development and testing phase); or (iii) in a closed community (for example, through invitation-only access). \n\n9.1.2 Exceptions.\n\n Enterprise agreement with Google. The rules in Section 9.1.1 (Free access, Public access) do not apply if you have entered into a separate written agreement with Google (such as a Google Maps agreement) or obtained Google's written permission.\n Mobile applications.\n The rule in Section 9.1.1(a) (Free access) does not apply if your Maps API Implementation is used in a mobile application that is sold for a fee through an online store and is downloadable to a mobile device that can access the online store.\n The rule in Section 9.1.1(b) (Public access) does not apply if your Maps API Implementation is an Android application that uses the Google Maps Android API. (However, the rule in Section 9.1.1(b) (Public access) will continue to apply if your Maps API Implementation is an Android application that uses any other Maps APIs, unless the Maps API Implementation qualifies for the exception in Section 9.1.2(a) (Enterprise agreement with Google).) \n\n9.1.3 Examples.\n\n You can require users to log in to your Maps API Implementation if you do not require users to pay a fee.\n You can charge a fee for your Maps API Implementation if it is an Android application downloadable to mobile devices from the Google Play Store.\n If you are a consultant who creates or hosts Maps API Implementations for third-party customers, you may charge those customers a fee for your consulting or hosting services (but not for the Maps API Implementations themselves, except as permitted under Section 9.1.2 (Exceptions)). \n\n9.2 Reporting. You must implement those reporting mechanisms that Google requires (as updated from time to time in these Terms and in the Maps APIs Documentation).\n\n9.3 End User Terms and Privacy Policy. If you develop a Maps API Implementation for use by other users, you must:\n\n display to the users of your Maps API Implementation the link to Google\u2019s Terms of Service as presented through the Service or described in the Maps APIs Documentation;\n explicitly state in your Maps API Implementation\u2019s terms of use that, by using your Maps API Implementation, your users are agreeing to be bound by the Google Maps/Google Earth Additional Terms of Service; and\n protect the privacy and legal rights of those users.\n Your privacy policy. You must make publicly available, and must abide by, an appropriate privacy policy in your Maps API Implementation. In particular, if your Maps API Implementation enables you or any party to gain access to information about users of the Maps API(s), including personally identifiable information (such as user names) or non-personally identifiable usage information (such as location), your privacy policy must describe your use and retention of this information.\n Geolocation privacy\n Your Maps API Implementation must notify the user in advance of the type(s) of data that you intend to collect from the user or the user\u2019s device. Your Maps API Implementation must not obtain or cache any user\u2019s location in any manner except with the user's prior consent. Your Maps API Implementation must let the user revoke the user's consent at any time.\n If your Maps API Implementation provides Google with geolocation data, that geolocation data must not enable Google to identify an individual user. For example, if your Maps API Implementation sends Google Your Content, and Your Content includes geolocation data, Your Content must not also include unique device identifiers associated with individual users.\n If you intend to obtain the user\u2019s location and use it with any other data provider's data, you must disclose this fact to the user. \n Google\u2019s Privacy Policy. Your privacy policy must notify users that you are using the Maps API(s) and incorporate by reference Google\u2019s Privacy Policy by including a link to Google\u2019s then-current Privacy Policy (at http://www.google.com/policies/privacy or such other URL as Google may provide).\n Cookies. As noted in the Documentation, certain Maps API(s) store and access cookies and other information on end users\u2019 devices. If you use any of these cookie-enabled Maps API(s) in your Maps API Implementation, then for end users in the European Union, you must comply with the EU User Consent Policy. \n\n9.4 Attribution.\n\n Content provided to you through the Service may contain the Brand Features of Google, its strategic partners, or other third-party rights holders of content that Google indexes. When Google provides those Brand Features or other attribution through the Service, you must display such attribution as provided (or as described in the Maps APIs Documentation) and must not delete or alter the attribution.\n You must conspicuously display the \"powered by Google\" attribution (and any other attribution(s) required by Google in the Maps APIs Documentation) on or adjacent to the relevant Service search box and Google search results. If you use the standard Google search control, or the standard Google search control form, this attribution will be included automatically, and you must not modify or obscure this automatically-generated attribution.\n You understand and agree that Google has the sole right and discretion to determine whether your attribution(s) are in compliance with the above requirements. \n\n9.5 Preventing Unauthorized Use. You will use all reasonable efforts to prevent unauthorized use of the Service and to terminate any such unauthorized use.\n\n9.6 Responsibility for Breaches. You are solely responsible for (and Google has no responsibility to you or any third party for) any breach of your obligations under the Terms and for the consequences of any such breach (including any loss or damage that Google may suffer).\n10. License Restrictions.\n\nExcept as expressly permitted under the Terms, or unless you have received prior written authorization from Google (or, as applicable, from the particular Content provider), Google\u2019s licenses above are conditioned on your adherence to all of the restrictions below. In this Section 10, the phrase \"you will not\" means \"when using the Service, you will not, and will not permit a third party to.\"\n\n10.1 Administrative Restrictions.\n\n No access to APIs or Content except through the Service. You will not access the Maps API(s) or the Content except through the Service. For example, you must not access map tiles or imagery through interfaces or channels (including undocumented Google interfaces) other than the Maps API(s).\n No access to Service without applicable Developer Identifier(s). For certain versions or features of the Maps API(s), Google may require you to use a Developer Identifier to access and administer the Service. If a Developer Identifier is required under the Maps APIs Documentation, you will not access the Service without the Developer Identifier.\n No hiding identity. You will not hide from Google the identity of your Maps API Implementation. You must follow the identification conventions in the Maps APIs Documentation. \n\n10.2 General Google API Restrictions. The following restrictions apply generally to all Google Services, including the Google application programming interfaces at https://developers.google.com/products/ (or such other URL as Google may provide) (the \u201cGoogle API(s)\u201d). You will not:\n\n Sublicense a Google API for use by a third party. Consequently, you will not create an API client that functions substantially the same as the Google APIs and offer it for use by third parties.\n Perform an action with the intent of introducing to Google Services any viruses, worms, defects, Trojan horses, malware, or any items of a destructive nature.\n Defame, abuse, harass, stalk, or threaten others.\n Interfere with or disrupt the Google APIs or the servers or networks providing the Google APIs.\n Promote or facilitate unlawful online gambling or disruptive commercial messages or advertisements.\n Reverse engineer or attempt to extract the source code from any Google API or any related software, except to the extent that this restriction is expressly prohibited by applicable law.\n Use the Google APIs for any activities where the use or failure of the Google APIs could lead to death, personal injury, or environmental damage (such as the operation of nuclear facilities, air traffic control, or life support systems).\n Use the Google APIs to process or store any data that is subject to the International Traffic in Arms Regulations maintained by the U.S. Department of State.\n Remove, obscure, or alter any Google terms of service, or any links to or notices of those terms. \n\n10.3 Quality Standards Restrictions.\n\n No violation of Google\u2019s Software Principles. You will not violate Google\u2019s Software Principles at http://www.google.com/intl/en/about/company/software-principles.html (or such other URLs that Google may designate).\n No modification of search results. You will not modify, reorder, augment, or manipulate search results in any way unless you explicitly notify the end user of your actions. \n\n10.4 Restrictions on Unfair Exploitation of the Service and Content.\n\n No use except under these Terms. You will not use the Service or Content except as expressly permitted under these Terms. For example:\n No fees. You will not charge any third party a fee to use your Maps API Implementation, the Service, or the Content, unless you have purchased an applicable Google Maps Platform Premium Plan or Google Maps APIs for Work license that expressly permits this use.\n No printing 5,000+ copies for direct marketing. You will not print more than 5,000 copies of sales collateral materials containing a screenshot of the Content for purposes of commercial sales lead generation.\n No use as a core part of printed matter. You will not incorporate the Content as a core part of printed matter (such as a printed map or guide book) that is redistributed for a fee. \n No use beyond transaction limits and usage policies. If your Maps API Implementation generates a high volume of transactions, Google reserves the right to set transaction limits, as described in the Maps APIs Documentation here. Google also reserves the right to set other usage policies in the Documentation from time to time. If you want to engage in use outside these transaction limits or usage policies, you can purchase more usage capacity through the Maps API Standard pricing plan, or you can contact the Google Maps sales team for licensing options to address your needs. Google may decline your request, or condition acceptance on your agreement to additional terms and/or charges for that use.\n Restrictions on your Maps API Implementations.\n No creation of a substitute service. You will not use the Service to create a Maps API Implementation that is a substitute for, or substantially similar service to, Google Maps (at https://www.google.com/maps (or such other URL as Google may provide)) (\"Google Maps\") or the Service.\n No creation or augmentation of data sets based on Google\u2019s Content or Services. You will not use Google\u2019s Content or Services to create or augment your own mapping-related dataset (or that of a third party), including a mapping or navigation dataset, business listings database, mailing list, or telemarketing list.\n No navigation. You will not use the Service or Content for or in connection with (a) real-time navigation or route guidance; or (b) automatic or autonomous vehicle control.\n No asset-tracking unless you have purchased the applicable enterprise license. Unless you have purchased an applicable Premium Plan or Maps APIs for Work license that expressly permits you to do so, you will not use the Service or Content for commercial asset-tracking or in Maps API Implementations whose primary purpose is to assess vehicle insurance risks.\n Commercial asset-tracking includes dispatch, fleet management, and Maps API Implementations that track your (or your end users\u2019) assets (for example, private or commercial transportation applications, including taxi and vehicle-for-hire applications).\n Non-commercial asset-tracking implementations include applications used for a non-commercial purpose (for example, a free, publicly accessible Maps API Implementation that displays real-time public transit or other transportation status information or that allows end users to share real-time location with others). \n No use of Content in a listings service. You will not use business listings-related Content in any Customer Implementation that has the primary purpose of making available business, residential address, or telephone directory listings.\n No use of Content for an Ads product. You will not use business listings-related Content to create or augment an advertising product. \n No use of Content without a Google map. Unless the Maps APIs Documentation expressly permits you to do so, you will not use the Content in a Maps API Implementation without a corresponding Google map. For example, you may display Street View imagery without a corresponding Google map because the Maps APIs Documentation expressly permits this use.\n No use of Content with a non-Google map. You must not use the Content in a Maps API Implementation that contains a non-Google map. \n\n10.5 Intellectual Property Restrictions.\n\n No distribution or sale except as permitted under the Terms. You will not distribute, sell, or otherwise make any part of the Service available to third parties except as permitted by these Terms.\n No derivative works. You will not modify or create a derivative work based on any Content unless expressly permitted to do so under these Terms. For example, the following are prohibited: (i) creating server-side modification of map tiles; (ii) stitching multiple static map images together to display a map that is larger than permitted in the Maps APIs Documentation; or (iii) tracing or copying the copyrightable elements of Google\u2019s maps or building outlines and creating a new work, such as a new mapping or navigation dataset.\n No use of Content outside the Service. You will not use any Content outside of the Service except as expressly permitted to do so in Subsection (d). For example, you will not export or save the Content to a third party\u2019s platform or service.\n No caching or storage. You will not pre-fetch, cache, index, or store any Content to be used outside the Service, except that you may store limited amounts of Content solely for the purpose of improving the performance of your Maps API Implementation due to network latency (and not for the purpose of preventing Google from accurately tracking usage), and only if such storage:\n is temporary (and in no event more than 30 calendar days);\n is secure;\n does not manipulate or aggregate any part of the Content or Service; and\n does not modify attribution in any way. \n No mass downloading. You will not use the Service in a manner that gives you or a third party access to mass downloads or bulk feeds of any Content. For example, you are not permitted to offer a batch geocoding service that uses Content contained in the Maps API(s).\n No incorporating Google software into other software. You will not incorporate any software provided as part of the Service into other software.\n No removing, obscuring, or altering terms of service, links, or proprietary rights notices. You will not:\n remove, obscure, or alter any Google terms of service or any links to or notices of those terms, or any copyright, trademark, or other proprietary rights notices; or\n falsify or delete any author attributions, legal notices, or other labels of the origin or source of material. \n\n10.6 Restrictions on Trying to Shut Down the Service. We want to make sure that the Services remain online and available for all users. To help ensure this, during the agreement term, you will not try to shut down the Services that you have been using by seeking an injunction or exclusion order.\n11. Licenses from You to Google.\n\n11.1 Content License. Google claims no ownership over Your Content, and you retain copyright and any other rights you already hold in Your Content. By submitting or displaying Your Content through the Service, you give Google a perpetual, irrevocable, non-exclusive, worldwide, sublicensable, royalty-free license to use Your Content solely for the following purposes:\n\n enabling Google to provide you with the Service;\n if you opt to do so through your Maps API Implementation\u2019s features, allowing end users to use Your Content in Google Services; and\n if you opt to submit Your Content through the Google Places API(s), allowing Google to use that content in Google Services. \n\n11.2 Marketing License. During the term of this agreement, you give Google a non-exclusive, worldwide, sublicensable, royalty-free license to use Your Brand Features and Your Content to publicize or advertise that you are using the Service (for example, by using your marks in presentations, marketing materials, customer lists, financial reports, and website listings (including links to your website), or by creating marketing or advertising materials that show screenshots of the Service in which Your Content is featured).\n\n11.3 Authority to Grant Licenses. You represent and warrant that you have all the rights, power, and authority necessary to grant the above licenses.\n12. Maps API Standard Pricing Plan and Payment Terms.\n\nThis Section 12 applies if you purchase usage capacity (beyond the Service\u2019s transaction limits) through the Maps API Standard pricing plan:\n\n12.1 Free Quota. Certain parts of the Service are provided to you without charge up to the transaction limits described in the Maps APIs Documentation here.\n\n12.2 Online Billing. Google will issue an electronic bill to you for all charges accrued above the transaction limits based on your use of the Service during the previous month. You will pay all fees specified in the invoice, including the invoice\u2019s specified currency and payment terms. Google\u2019s measurement of your use of the Service is final.\n\n12.3 Taxes. In association with your purchase of Maps API usage, you are responsible for all applicable government-imposed taxes, except for taxes based on Google\u2019s net income, net worth, employment, and assets (including personal and real property) (\"Taxes\"), and you will pay Google for the Service without any reduction for Taxes. If Google is obligated to collect or pay Taxes, the Taxes will be invoiced to you, unless you provide Google with a timely and valid tax exemption certificate authorized by the appropriate taxing authority. In some states the sales tax is due on the total purchase price at the time of sale and must be invoiced and collected at the time of the sale.\n\n12.4 Invoice Disputes & Refunds. To the fullest extent permitted by law, you waive all claims relating to fees unless claimed within sixty days after charged (this does not affect any of your rights with your credit card issuer). Refunds (if any) are at Google\u2019s discretion and will only be in the form of credit for the Service. Nothing in these Terms obligates Google to extend credit to any party.\n\n12.5 Delinquent Payments. Late payments may bear interest at the rate of 1.5% per month (or the highest rate permitted by law, if less). Google reserves the right to suspend your access to the Service for any late payments.\n13. Terminating this Agreement.\n\n13.1 The Terms will continue to apply until terminated by either you or Google as described below.\n\n13.2 You may terminate your legal agreement with Google by removing the Maps API(s) code from your Maps API Implementation and discontinuing your use of the Service at any time. You do not need to specifically inform Google when you stop using the Service.\n\n13.3 Google reserves the right to terminate these Terms or discontinue the Service, or any portion or feature of the Service, for any reason and at any time without liability or other obligation to you, except as described under Section 4.4 (Changes to the Service; Deprecation Policy).\n\n13.4 Nothing in this Section 13 will affect Google\u2019s rights under Section 4 (Provision of Service by Google).\n\n13.5 When this legal agreement comes to an end, those Terms that by their nature are intended to continue indefinitely will continue to apply, including Sections 3.5 (European Data Protection Terms); 6 (Google\u2019s Proprietary Rights); 11.1 (Content License); 13.4 and 13.5 (Terminating this Agreement); 14 (Exclusion of Warranties); 15 (Limitations of Liability); 16 (Indemnities); and 19 (General Legal Terms).\n14. EXCLUSION OF WARRANTIES.\n\n14.1 NOTHING IN THESE TERMS, INCLUDING SECTIONS 14 AND 15, WILL EXCLUDE OR LIMIT GOOGLE\u2019S WARRANTY OR LIABILITY FOR LOSSES THAT MAY NOT BE LAWFULLY EXCLUDED OR LIMITED BY APPLICABLE LAW. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF CERTAIN WARRANTIES OR CONDITIONS OR THE LIMITATION OR EXCLUSION OF LIABILITY FOR CERTAIN TYPES OF LOSS OR DAMAGES. ACCORDINGLY, ONLY THE LIMITATIONS THAT ARE LAWFUL IN YOUR JURISDICTION WILL APPLY TO YOU, AND GOOGLE\u2019S LIABILITY WILL BE LIMITED TO THE MAXIMUM EXTENT PERMITTED BY LAW.\n\n14.2 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SERVICE AND THE CONTENT IS AT YOUR SOLE RISK AND THAT THE SERVICE AND THE CONTENT ARE PROVIDED \"AS IS\" AND \"AS AVAILABLE.\" IN PARTICULAR, GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS AND THEIR SUPPLIERS, DO NOT REPRESENT OR WARRANT TO YOU THAT:\n\n THE SERVICE WILL MEET YOUR REQUIREMENTS;\n THE SERVICE WILL BE UNINTERRUPTED, TIMELY, SECURE, OR ERROR-FREE;\n THE SERVICE WILL BE ACCURATE OR RELIABLE; AND\n DEFECTS IN THE OPERATION OR FUNCTIONALITY OF ANY SOFTWARE PROVIDED TO YOU AS PART OF THE SERVICE WILL BE CORRECTED. \n\n14.3 ANY CONTENT OBTAINED THROUGH THE GOOGLE SERVICES IS AT YOUR OWN DISCRETION AND RISK AND YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE, LOSS OF DATA, OR ANY OTHER DAMAGE OR INJURY THAT RESULTS FROM DOWNLOADING OR USING ANY SUCH CONTENT.\n\n14.4 NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED BY YOU FROM GOOGLE, OR THROUGH OR FROM THE SERVICE OR CONTENT, WILL CREATE ANY WARRANTY NOT EXPRESSLY STATED IN THE TERMS.\n\n14.5 GOOGLE, ITS LICENSORS, AND THEIR SUPPLIERS FURTHER EXPRESSLY DISCLAIM ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.\n15. LIMITATIONS OF LIABILITY.\n\n15.1 SUBJECT TO SECTION 14.1, YOU EXPRESSLY UNDERSTAND AND AGREE THAT, TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE, ITS SUBSIDIARIES, AND AFFILIATES, AND GOOGLE'S LICENSORS AND THEIR SUPPLIERS, WILL NOT BE LIABLE TO YOU FOR:\n\n ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES THAT MAY BE INCURRED BY YOU, HOWEVER CAUSED AND UNDER ANY THEORY OF LIABILITY (INCLUDING CONTRACT, TORT, COMMON LAW, OR STATUTORY DAMAGES); ANY LOSS OF REVENUES OR PROFIT (WHETHER INCURRED DIRECTLY OR INDIRECTLY); ANY LOSS OF GOODWILL OR BUSINESS REPUTATION; ANY LOSS OF DATA; ANY COST TO PROCURE SUBSTITUTE GOODS OR SERVICES; OR ANY INTANGIBLE LOSS; OR\n ANY LOSS OR DAMAGE AS A RESULT OF:\n ANY RELIANCE PLACED BY YOU ON THE COMPLETENESS, ACCURACY, OR EXISTENCE OF ANY ADVERTISING, OR AS A RESULT OF ANY RELATIONSHIP OR TRANSACTION BETWEEN YOU AND ANY ADVERTISER OR SPONSOR WHOSE ADVERTISING APPEARS ON GOOGLE SERVICES;\n ANY CHANGES THAT GOOGLE MAY MAKE TO THE SERVICE, OR ANY PERMANENT OR TEMPORARY DISCONTINUATION OF THE SERVICE (OR ANY FEATURES WITHIN THE SERVICE);\n THE DELETION OR CORRUPTION OF, OR FAILURE TO STORE, ANY CONTENT AND OTHER DATA MAINTAINED OR TRANSMITTED BY OR THROUGH YOUR USE OF THE SERVICE;\n YOUR FAILURE TO PROVIDE GOOGLE WITH ACCURATE ACCOUNT INFORMATION; OR\n YOUR FAILURE TO KEEP YOUR PASSWORD OR ACCOUNT DETAILS SECURE AND CONFIDENTIAL. \n\n15.2 THE LIMITATIONS ON GOOGLE\u2019S LIABILITY IN SECTION 15.1 ABOVE WILL APPLY WHETHER OR NOT GOOGLE, ITS SUBSIDIARIES, AFFILIATES, LICENSORS OR THEIR SUPPLIERS HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES OR DAMAGES.\n16. Indemnities.\n\n16.1 You will defend and indemnify Google and its affiliates, directors, officers, employees, strategic partners, licensors, and their suppliers (the \"Indemnified Parties\") against all liabilities, damages, losses, costs, fees (including legal fees), and expenses relating to any allegation or third-party legal proceeding to the extent arising from:\n\n your use of the Service or the Content in breach of the Terms or applicable policies;\n your Maps API Implementation, including any claim that your Maps API Implementation infringes a third party\u2019s rights or violates applicable law; or\n Your Content. \n\n16.2 You will cooperate as fully as reasonably required in the defense of any allegation or third-party legal proceeding. Google reserves the right, at its own expense, to assume the exclusive control and defense of any indemnified matter under this Section 16.\n17. Copyright Policies; Content Removal; Termination of Repeat Offenders\u2019 Accounts.\n\nIt is Google\u2019s policy to respond to notices of alleged copyright infringement that comply with applicable international intellectual property law (including, in the United States, the Digital Millennium Copyright Act) and to terminate the accounts of repeat offenders. Details of Google\u2019s policy can be found here.\n18. Other Content.\n\n18.1 The Service may include hyperlinks to other websites or content or resources. Google has no control over any websites or resources that are provided by companies or persons other than Google. You understand and agree that Google is not responsible for the availability of any such external sites or resources, and does not endorse any advertising, products, or other materials on, or available from, such websites or resources.\n\n18.2 You understand and agree that Google is not liable for any loss or damage that you may incur as a result of the availability of those external sites or resources, or as a result of any reliance by you on the completeness, accuracy, or existence of any advertising, products, or other materials on, or available from, such websites or resources.\n19. General Legal Terms.\n\n19.1 Notices. Google may provide you with notices, including those regarding changes to the Terms, by email, regular mail, or postings on the Service.\n\n19.2 Assignment. Google may assign any part of this agreement without written consent.\n\n19.3 No Waiver. Google will not be treated as having waived any rights by not exercising (or delaying the exercise of) any rights under these Terms. A waiver will be effective only if Google expressly states in a writing signed by an authorized representative that Google is waiving a specified Term.\n\n19.4 Third-Party Beneficiaries. Google\u2019s affiliates and the Indemnified Parties are third-party beneficiaries to the Terms and are entitled to directly enforce, and rely on, any Terms that confer a right or benefit to them. There are no other third-party beneficiaries to the Terms.\n\n19.5 Entire Agreement. These Terms set out all terms agreed between the parties and supersede all other agreements between the parties relating to its subject matter.\n\n19.6 Severability. If any term (or part of a term) of these Terms is invalid, illegal or unenforceable, the rest of the Terms will remain in effect.\n\n19.7 Equitable Relief. You understand and agree that damages for improper use of the Maps API(s) may be irreparable; therefore, Google is entitled to seek equitable relief, including injunctions in any jurisdiction, in addition to all other remedies it may have.\n\n19.8 Conflicting Languages. If these Terms are translated into any other language, and there is a discrepancy between the English text and the translated text, the English text will govern.\n\n19.9 Governing Law. ALL CLAIMS ARISING OUT OF OR RELATING TO THESE TERMS OR ANY RELATED GOOGLE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING CALIFORNIA'S CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.", + "json": "google-maps-tos-2018-02-07.json", + "yaml": "google-maps-tos-2018-02-07.yml", + "html": "google-maps-tos-2018-02-07.html", + "license": "google-maps-tos-2018-02-07.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-05-01", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-05-01", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Maps Platform Terms of Service\n\nLast modified: May 1, 2018\n\nThis Google Maps Platform License Agreement takes effect on June 11, 2018. \n\nIf you are currently using the Google Maps Standard Plan, this Google Maps Platform License Agreement will govern your use of the Google Maps Platform as of June 11, 2018. The current Google Maps Platform Terms of Service, which govern your use of the Google Maps Platform until June 11, 2018, is available at https://developers.google.com/maps/terms.\n\nGoogle Maps Platform License Agreement\n\nThis Google Maps Platform License Agreement (the \"Agreement\") is made and entered into between Google and the entity or person agreeing to these terms (\"Customer\"). \"Google\" means either (i) Google Commerce Limited (\u201cGCL\u201d), a company incorporated under the laws of Ireland, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer has a billing address in the EU and has chosen \u201cnon-business\u201d as the tax status/setting for its Google account, (ii) Google Ireland Limited, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer's billing address is in any country within Europe, the Middle East, or Africa (\"EMEA\"), (iii) Google Asia Pacific Pte. Ltd., with offices at 70 Pasir Panjang Road, #03-71, Mapletree Business City II Singapore 117371, if Customer's billing address is in any country within the Asia Pacific region (\"APAC\") except as provided below for Customers with the billing address in Japan or Australia, (iv) Google Cloud Japan G.K., with offices at Roppongi Hills Mori Tower, 10-1, Roppongi 6-chome, Minato-ku Tokyo, if Customer\u2019s billing address is in Japan, (v) Google Australia Pty Ltd., with offices at Level 5, 48 Pirrama Road, Pyrmont, NSW 2009 Australia, if Customer\u2019s billing address is in Australia, or (vi) Google LLC, with offices at 1600 Amphitheatre Parkway, Mountain View, California 94043, if Customer's billing address is in any country in the world other than those in EMEA and APAC.\n\nThis Agreement is effective as of the date Customer clicks to accept the Agreement (the \"Effective Date\"). If you are accepting on behalf of Customer, you represent and warrant that: (i) you have full legal authority to bind Customer to this Agreement; (ii) you have read and understand this Agreement; and (iii) you agree, on behalf of Customer, to this Agreement. If you do not have the legal authority to bind Customer, please do not click to accept. This Agreement governs Customer's access to and use of the Services.\n\nFor an offline variant of this Agreement, you may contact Google for more information.\n1. Provision of the Services.\n\n1.1 Use of the Services in Customer Applications. Google will provide the Services to Customer in accordance with the applicable SLA, and Customer may use the Google Maps Core Services in Customer Application(s) in accordance with Section 3 (License).\n\n1.2 Admin Console; Projects; API Keys. Customer will administer the Services through the online Admin Console. To access the Services, Customer must create Project(s) and use its API key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer must have an Account to use the Services. Customer is responsible for the information it provides in connection with the Account, its passwords, and use of its Account.\n\n1.4 New Features and Services. Google may: (a) make new features or functionality available through the Services and (b) add new services to the \"Services\" definition (by adding them at the URL stated under that definition). Customer\u2019s use of new features or functionality may be contingent on Customer\u2019s agreement to additional terms applicable to the new feature or functionality.\n\n1.5 Modifications.\n\n1.5.1 To the Services. Google may make changes to the Services, subject to Section 9 (Deprecation Policy), which may include adding, updating, or discontinuing any Services or portion or feature(s) of the Services. Google will notify Customer of any material change to the Services.\n\n1.5.2. To the Agreement. Google may make changes to this Agreement, including pricing (and any linked documents). Unless otherwise noted by Google, material changes to the Agreement will become effective 30 days after notice is given, except if the changes apply to new functionality in which case they will be effective immediately. Google will provide at least 90 days advance notice for materially adverse changes to any SLAs by: (a) sending an email to Customer\u2019s primary point of contact; (b) posting a notice in the Admin Console; or (c) posting a notice to the applicable SLA webpage. If Customer does not agree to the revised Agreement, Customer should stop using the Services. Google will post any modification to this Agreement to the Terms URL.\n2. Payment Terms.\n\n2.1 Free Quota. Certain Services are provided to Customer without charge up to the Fee Threshold, as applicable.\n\n2.2 Online Billing. At the end of the applicable Fee Accrual Period, Google will issue an electronic bill to Customer for all charges accrued above the Fee Threshold based on (a) Customer\u2019s use of the Services during the previous Fee Accrual Period; (b) any Committed Purchases selected; and (c) any Package Purchases selected. For use above the Fee Threshold, Customer will be responsible for all Fees up to the amount set in the Account and will pay all Fees in the currency set forth in the invoice. If Customer elects to pay by credit card, debit card, or other non-invoiced form of payment, Google will charge (and Customer will pay) all Fees immediately at the end of the Fee Accrual Period. If Customer elects to pay by invoice (and Google agrees), all Fees are due as stated in the invoice. Customer\u2019s obligation to pay all Fees is non-cancellable. Google's measurement of Customer\u2019s use of the Services is final. Google has no obligation to provide multiple bills. Payments made via wire transfer must include the bank information provided by Google. If Customer has entered into the Agreement with GCL, Google may collect payments via Google Payment Limited, a company incorporated in England and Wales with offices at Belgrave House, 76 Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\n2.3 Taxes.\n\n2.3.1 Customer is responsible for any Taxes, and Customer will pay Google for the Services without any reduction for Taxes. If Google is obligated to collect or pay Taxes, the Taxes will be invoiced to Customer, unless Customer provides Google with a timely and valid tax exemption certificate authorized by the appropriate taxing authority. In some states the sales tax is due on the total purchase price at the time of sale and must be invoiced and collected at the time of the sale. If Customer is required by law to withhold any Taxes from its payments to Google, Customer must provide Google with an official tax receipt or other appropriate documentation to support such withholding. If under the applicable tax legislation the Services are subject to local VAT and the Customer is required to make a withholding of local VAT from amounts payable to Google, the value of Services calculated in accordance with the above procedure will be increased (grossed up) by the Customer for the respective amount of local VAT and the grossed up amount will be regarded as a VAT inclusive price. Local VAT amount withheld from the VAT-inclusive price will be remitted to the applicable local tax entity by the Customer and Customer will ensure that Google will receives payment for its services for the net amount as would otherwise be due (the VAT inclusive price less the local VAT withheld and remitted to applicable tax authority).\n\n2.3.2 If required under applicable law, Customer will provide Google with applicable tax identification information that Google may require to ensure its compliance with applicable tax regulations and authorities in applicable jurisdictions. Customer will be liable to pay (or reimburse Google for) any taxes, interest, penalties or fines arising out of any mis-declaration by the Customer.\n\n2.4 Invoice Disputes & Refunds. Any invoice disputes must be submitted before the payment due date. If the parties determine that certain billing inaccuracies are attributable to Google, Google will not issue a corrected invoice, but will instead issue a credit memo specifying the incorrect amount in the affected invoice. If the disputed invoice has not yet been paid, Google will apply the credit memo amount to the disputed invoice and Customer will be responsible for paying the resulting net balance due on that invoice. To the fullest extent permitted by law, Customer waives all claims relating to Fees unless claimed within 60 days after charged (this does not affect any Customer rights with its credit card issuer). Refunds (if any) are at the discretion of Google and will only be in the form of credit for the Services. Nothing in this Agreement obligates Google to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. Late payments may bear interest at the rate of 1.5% per month (or the highest rate permitted by law, if less) from the payment due date until paid in full. Customer will be responsible for all reasonable expenses (including attorneys\u2019 fees) incurred by Google in collecting such delinquent amounts. If Customer is late on payment for the Services, Google may suspend the Services or terminate the Agreement for breach under Section 11.2 (Termination for Breach).\n\n2.6 No Purchase Order Number Required. Google is not required to provide a purchase order number on Google\u2019s invoice (or otherwise).\n3. License.\n\n3.1 License Grant. Subject to this Agreement's terms, during the Term, Google grants to Customer a non-exclusive, non-transferable, non-sublicensable, license to use the Services in Customer Application(s), which may be: (a) fee-based or non-fee-based; (b) public/external or private/internal; (c) business-to-business or business-to-consumer; or (d) asset tracking.\n\n3.2 License Requirements and Restrictions. The following are conditions of the license granted in Section 3.1. In this Section 3.2, the phrase \u201cCustomer will not\u201d means \u201cCustomer will not, and will not permit a third party to\u201d.\n\n3.2.2 General Restrictions. Unless Google specifically agrees in writing, Customer will not: (a) copy, modify, create a derivative work of, reverse engineer, decompile, translate, disassemble, or otherwise attempt to extract any or all of the source code (except to the extent such restriction is expressly prohibited by applicable law); (b) sublicense, transfer, or distribute any of the Services; (c) sell, resell, or otherwise make the Services available as a commercial offering to a third party; or (d) access or use the Services: (i) for High Risk Activities; (ii) in a manner intended to avoid incurring Fees; (iii) for activities that are subject to the International Traffic in Arms Regulations (ITAR) maintained by the United States Department of State; (iv) on behalf of or for the benefit of any entity or person who is legally prohibited from using the Services; or (v) to transmit, store, or process Protected Health Information (as defined in and subject to HIPAA).\n\n3.2.3 Requirements for Using the Services.\n\n(a) End User Terms and Privacy Policy. Customer\u2019s End User terms of service will state that End Users\u2019 use of Google Maps is subject to the then-current Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html and Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n(b) Attribution. Customer will display all attribution that (i) Google provides through the Services (including branding, logos, and copyright and trademark notices); or (ii) is specified in the Service Specific Terms. Customer will not modify, obscure, or delete such attribution.\n\n(c) Review of Customer Applications. At Google\u2019s request, Customer will submit Customer Application(s) and Project(s) to Google for review to ensure compliance with the Agreement (including the AUP).\n\n3.2.4 Restrictions Against Misusing the Services.\n\n(a) No Scraping. Customer will not extract, export, or scrape Google Maps Content for use outside the Services. For example, Customer will not:(i) pre-fetch, cache, index, or store Google Maps Content for more than 30 days; (ii) bulk download geocodes; or (iii) copy business names, addresses, or user reviews.\n\n(b) No Creating Content From Google Maps Content. Customer will not create content based on Google Maps Content, including tracing, digitizing, or creating other datasets based on Google Maps Content.\n\n(c) No Re-Creating Google Products or Features. Customer will not use the Services to create a product or service with features that are substantially similar to or that re-create the features of another Google product or service. Customer\u2019s product or service must contain substantial, independent value and features beyond the Google products or services. For example, Customer will not: (i) re-distribute the Google Maps Core Services or pass them off as if they were Customer\u2019s services; (ii) create a substitute of the Google Maps Core Services, Google Maps, or Google Maps mobile apps, or their features; (iii) use the Google Maps Core Services in a listings or directory service or to create or augment an advertising product; (iv) combine data from the Directions API, Geolocation API, and Maps SDK for Android to create real-time navigation functionality substantially similar to the functionality provided by the Google Maps for Android mobile app.\n\n(d) No Use With Non-Google Maps. Customer will not use the Google Maps Core Services in a Customer Application that contains a non-Google map. For example, Customer will not (i) display Places listings on a non-Google map, or (ii) display Street View imagery and non-Google maps in the same Customer Application.\n\n(e) No Circumventing Fees. Customer will not circumvent the applicable Fees. For example, Customer will not create multiple billing accounts or Projects to avoid incurring Fees; prevent Google from accurately calculating Customer\u2019s Service usage levels; abuse any free Service quotas; or offer access to the Services under a \u201ctime-sharing\u201d or \u201cservice bureau\u201d model.\n\n(f) No Use in Prohibited Territories. Customer will not distribute or market in a Prohibited Territory any Customer Application(s) that use the Google Maps Core Services.\n\n(g) No Use in Embedded Vehicle Systems. Customer will not use the Google Maps Core Services in connection with any Customer Application or device embedded in a vehicle. For example, Customer will not create a Customer Application that (i) is embedded in an in-dashboard automotive infotainment system; and (ii) allows End Users to request driving directions from the Directions API.\n\n(h) No Modifying Search Results Integrity. Customer will not modify any of the Service\u2019s search results.\n\n(i) No Use for High Risk Activities. Customer will not use the Google Maps Core Services for High Risk Activities.\n\n3.2.5 Benchmarking. Customer may not publicly disclose directly or through a third party the results of any comparative or compatibility testing, benchmarking, or evaluation of the Services (each, a \u201cTest\u201d), unless the disclosure includes all information necessary for Google or a third party to replicate the Test. If Customer conducts, or directs a third party to conduct, a Test of the Services and publicly discloses the results directly or through a third party, then Google (or a Google directed third party) may conduct Tests of any publicly available cloud products or services provided by Customer and publicly disclose the results of any such Test (which disclosure will include all information necessary for Customer or a third party to replicate the Test).\n4. Customer Obligations. \n\n4.1 Customer Domains and Applications. Customer must list in the Admin Console each authorized domain and application that uses the Services. Customer is responsible for ensuring that only authorized domains and applications use the Services.\n\n4.2 Compliance. Customer will: (a) ensure that Customer\u2019s and its End Users\u2019 use of the Services complies with the Agreement, including the applicable Services\u2019 AUP and URL Terms; and (b) use commercially reasonable efforts to prevent, promptly notify Google of, and terminate any unauthorized use of or access to its Account(s) or the Services.\n\n4.3 Documentation. Google may provide Documentation for Customer\u2019s use of the Services. The Documentation may specify restrictions (e.g. attribution or HTML restrictions) on how the Services may be used and Customer will comply with any such restrictions specified.\n\n4.4 Copyright Policy. Google provides information to help copyright holders manage their intellectual property online, but Google cannot determine whether something is being used legally or not without their input. Google responds to notices of alleged copyright infringement and terminates accounts of repeat infringers according to applicable copyright laws including in particular the process set out in the U.S. Digital Millennium Copyright Act. If Customer thinks somebody is violating Customer\u2019s or Customer End Users\u2019 copyrights and wants to notify Google, Customer can find information about submitting notices, and Google's policy about responding to notices at https://www.google.com/dmca.html.\n\n4.5 Data Use, Protection, and Privacy.\n\n4.5.1 Data Use and Retention. To provide the Services through the Customer Application(s), Google must receive and collect data from End Users and Customer, including search terms, IP addresses, and latitude/longitude coordinates. Customer acknowledges and agrees that Google and its Affiliates may use and retain this data to provide and improve Google products and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n4.5.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\n4.5.3 General Privacy Requirements.\n\n(a) End User Privacy. Customer\u2019s use of the Services in the Customer Application will comply with applicable privacy laws, including laws regarding Services that store and access Cookies on End Users\u2019 devices. If Customer has End Users in the European Economic Area, Customer will comply with the EU End User Consent Policy at https://www.google.com/about/company/user-consent-policy.html.\n\n(b) End User Personal Data. Through the normal functioning of the Google Maps Core Services, End Users provide device identifiers and Personal Data directly to Google, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/. However, Customer acknowledges and agrees that Customer will not provide these categories of data to Google.\n\n(c) End User Location Privacy Requirements. To safeguard End Users\u2019 location privacy, Customer will ensure that the Customer Application(s): (i) notify End Users in advance of (y) the type(s) of data that Customer intends to collect from the End Users or the End Users\u2019 devices, and (z) the combination and use of End User's location with any other data provider's data; and (ii) will not obtain or cache any End User's location except with the End User's express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions Violations. Google may Suspend the Services without prior notice if Customer breaches Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Violations or Emergency Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP Violations) and 5.2.2 (Emergency Security Issues). Any Suspension under those Sections will be to the minimum extent and for the shortest duration required to: (a) prevent or terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c) comply with applicable law.\n\n5.2.1 AUP Violations. If Google becomes aware that Customer\u2019s or any End User\u2019s use of the Services violates the AUP, Google will give Customer notice of such violation by requesting that Customer correct the violation. If Customer fails to correct such violation within 24 hours, or if Google is otherwise required by applicable law to take action, then Google may Suspend all or part of Customer\u2019s use of the Services.\n\n5.2.2 Emergency Security Issues. Google may immediately Suspend Customer\u2019s use of the Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend such use immediately to comply with applicable law. At Customer\u2019s request, unless prohibited by applicable law, Google will notify Customer of the basis for the Suspension as soon as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights Infringement. If the Customer Application is alleged to infringe a third party\u2019s Intellectual Property Rights, Google may require Customer to suspend distributing or selling the Customer Application on 30 days\u2019 written notice until such allegation is fully resolved. In any event, this Section 5.3 does not reduce Customer\u2019s obligations under Section 15 (Indemnification).\n6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as expressly stated in this Agreement, this Agreement does not grant either party any rights, implied or otherwise, to the other\u2019s content or any of the other\u2019s intellectual property. As between the parties, Customer owns all Intellectual Property Rights in the Customer Application, and Google owns all Intellectual Property Rights in the Services and Software.\n\n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google may use that information without obligation to Customer, and Customer irrevocably assigns to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices and License Terms.\n\nCertain components of the Services (including open source software) are subject to third-party copyright and other Intellectual Property Rights, as specified in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and (b) separate, publicly-available third-party license terms, which Google will provide to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will provide the Technical Support Services to Customer in accordance with the Technical Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n9.1 Google will notify Customer at least 12 months before making material discontinuance(s) or backwards incompatible change(s) to the Services, unless Google reasonably determines that: (a) Google cannot do so by law or by contract (including if there is a change in applicable law or contract) or (b) continuing to provide the Services could create a (i) security risk or (ii) substantial economic or technical burden.\n\n9.2 Section 9.1 applies to the Services listed at https://cloud.google.com/maps-platform/terms/maps-deprecation/. If Google deprecates any Services that are not listed at the above URL, Google will use commercially reasonable efforts to minimize the adverse impacts of such deprecations.\n10. Confidential Information.\n\n10.1 Obligations. The recipient will not disclose the Confidential Information, except to Affiliates, employees, agents or professional advisors who need to know it and who have agreed in writing (or in the case of professional advisors are otherwise bound) to keep it confidential. Subject to Section 10.2 (Required Disclosure), the recipient will ensure that those people and entities use the received Confidential Information only to exercise rights and fulfill obligations under this Agreement, while using reasonable care to keep it confidential.\n\n10.2 Required Disclosure. The recipient may disclose the other party\u2019s Confidential Information to the extent required by applicable Legal Process; provided that the recipient uses commercially reasonable efforts to: (a) promptly notify the other party of such disclosure before disclosing; and (b) comply with the other party\u2019s reasonable requests regarding its efforts to oppose the disclosure. Notwithstanding the foregoing, subsections (a) and (b) above will not apply if the recipient determines that complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii) obstruct a governmental investigation; and/or (iii) lead to death or serious physical harm to an individual. As between the parties, Customer is responsible for responding to all third party requests concerning its use and Customer End Users\u2019 use of the Services.\n11. Term and Termination.\n\n11.1 Agreement Term. The \u201cTerm\u201d of this Agreement will begin on the Effective Date and continue until the Agreement is terminated under this Section.\n\n11.2 Termination for Breach. Either party may terminate this Agreement for breach if: (a) the other party is in material breach of the Agreement and fails to cure that breach within 30 days after receipt of written notice; or (b) the other party ceases its business operations or becomes subject to insolvency proceedings and the proceedings are not dismissed within 90 days. In addition, Google may terminate any, all, or any portion of the Services or Projects, if Customer meets any of the conditions in subsections (a) or (b).\n\n11.3 Termination for Inactivity. Google reserves the right to terminate provision of Service(s) to a Project on 30 days advance notice if, for more than 180 days, such Project (a) has not made any requests to the Services from any Customer Applications; or (b) such Project has not incurred any Fees for such Service(s).\n\n11.4 Termination for Convenience. Customer may stop using the Services at any time. Subject to any financial commitments expressly made by this Agreement, Customer may terminate this Agreement for its convenience at any time on prior written notice and upon termination, must cease use of the applicable Services. Google may terminate this Agreement for its convenience at any time without liability to Customer.\n\n11.5 Effects of Termination. \n\n11.5.1 If the Agreement is terminated, then: (a) the rights granted by one party to the other will immediately cease; (b) all Fees owed by Customer to Google are immediately due upon receipt of the final electronic bill; and (c) Customer will delete the Software and any content from the Services by the termination effective date.\n\n11.5.2 The following will survive expiration or termination of the Agreement: Section 2 (Payment Terms), Section 3.2 (License Requirements and Restrictions), Section 4.5 (Data Use, Protection, and Privacy), Section 6 (Intellectual Property; Feedback), Section 10 (Confidential Information), Section 11.5 (Effects of Termination), Section 14 (Disclaimer), Section 15 (Indemnification), Section 16 (Limitation of Liability), Section 19 (Miscellaneous), and Section 20 (Definitions).\n12. Publicity.\n\nCustomer may state publicly that it is a customer of the Services, consistent with the Trademark Guidelines. If Customer wants to display Google Brand Features in connection with its use of the Services, Customer must obtain written permission from Google through the process specified in the Trademark Guidelines. Google may include Customer\u2019s name or Brand Features in a list of Google customers, online or in promotional materials. Google may also verbally reference Customer as a customer of the Services. Neither party needs approval if it is repeating a public statement that is substantially similar to a previously-approved public statement. Any use of a party\u2019s Brand Features will inure to the benefit of the party holding Intellectual Property Rights to those Brand Features. A party may revoke the other party\u2019s right to use its Brand Features under this Section with written notice to the other party and a reasonable period to stop the use. Where applicable, Customer may use Google Maps Content in accordance with the \u201cUsing Google Maps, Google Earth and Street View\u201d permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy, which will be considered \u201cGoogle\u2019s prior written consent\u201d for the permitted uses.\n13. Representations and Warranties.\n\nEach party represents and warrants that: (a) it has full power and authority to enter into the Agreement; and (b) it will comply with Export Control Laws and Anti-Bribery Laws applicable to its provision, receipt, or use, of the Services, as applicable.\n14. Disclaimer.\n\n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED USE OF THE SERVICES OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION ACCESSIBLE THROUGH THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES EXPRESSLY STATED IN THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES ARE PROVIDED FOR PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES MAY DIFFER FROM ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION. CUSTOMER MUST EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT THE CUSTOMER APPLICATION IS SAFE AND SUITABLE FOR USE WITH GOOGLE MAPS.\n15. Indemnification.\n\n15.1 By Customer. Unless prohibited by applicable law, Customer will defend Google and its Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer\u2019s or an End User\u2019s use of the Services in violation of the Agreement.\n\n15.2 By Google. Google will defend Customer and its Affiliates participating under the Agreement (\u201cCustomer Indemnified Parties\u201d), and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from an allegation that Customer Indemnified Parties' use in accordance with the Agreement of Google Indemnified Materials infringes the third party's Intellectual Property Rights.\n\n15.3 Exclusions. This Section 15 will not apply to the extent the underlying allegation arises from (a) the indemnified party\u2019s breach of the Agreement or (b) a combination of the indemnifying party\u2019s technology or Brand Features with materials not provided by the indemnifying party, unless the combination is required by the Agreement.\n\n15.4 Conditions. Sections 15.1 and 15.2 will apply only to the extent:\n\n(a) The indemnified party has promptly notified the indemnifying party in writing of any Allegation(s) that preceded the Third-Party Legal Proceeding and cooperates reasonably with the indemnifying party to resolve the Allegation(s) and Third-Party Legal Proceeding. If breach of this Section 15.4(a) prejudices the defense of the Third-Party Legal Proceeding, the indemnifying party\u2019s obligations under Section 15.1 or 15.2 (as applicable) will be reduced in proportion to the prejudice.\n\n(b) The indemnified party tenders sole control of the indemnified portion of the Third-Party Legal Proceeding to the indemnifying party, subject to the following: (i) the indemnified party may appoint its own non-controlling counsel, at its own expense; and (ii) any settlement requiring the indemnified party to admit liability, pay money, or take (or refrain from taking) any action, will require the indemnified party\u2019s prior written consent, not to be unreasonably withheld, conditioned, or delayed.\n\n15.5 Remedies.\n\n(a) If Google reasonably believes the Services might infringe a third party\u2019s Intellectual Property Rights, then Google may, at its sole option and expense: (i) procure the right for Customer to continue using the Services; (ii) modify the Services to make them non-infringing without materially reducing their functionality; or (iii) replace the Services with a non-infringing, functionally equivalent alternative.\n\n(b) If Google does not believe the remedies in Section 15.5(a) are commercially reasonable, then Google may suspend or terminate Customer\u2019s use of the impacted Services.\n\n15.6 Sole Rights and Obligations. Without affecting either party\u2019s termination rights, this Section 15 states the parties\u2019 sole and exclusive remedy under this Agreement for any third party's Intellectual Property Rights Allegations and Third-Party Legal Proceedings covered by this Section 15 (Indemnification).\n16. Limitation of Liability.\n\n16.1 Limitation on Indirect Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PARTIES AND GOOGLE\u2019S LICENSORS, WILL NOT BE LIABLE UNDER THIS AGREEMENT FOR LOST REVENUES OR PROFITS (WHETHER DIRECT OR INDIRECT), INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE PARTY OR LICENSOR, AS APPLICABLE, KNEW OR SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY A REMEDY.\n\n16.2 Limitation on Amount of Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PARTIES AND GOOGLE\u2019S LICENSORS, MAY NOT BE HELD LIABLE UNDER THIS AGREEMENT FOR MORE THAN THE AMOUNT PAID BY CUSTOMER TO GOOGLE UNDER THIS AGREEMENT DURING THE TWELVE MONTHS BEFORE THE EVENT GIVING RISE TO LIABILITY.\n\n16.3 Exceptions to Limitations. These limitations of liability do not apply to breaches of confidentiality obligations, violations of a party\u2019s Intellectual Property Rights by the other party, or Customer's payment obligations.\n17. Advertising.\n\n Customer may configure the Service in its sole discretion to either display or not display advertisements served by Google. \n18. U.S. Federal Agency Users.\n\nThe Services were developed solely at private expense and are commercial computer software and related documentation within the meaning of the applicable Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\n19.1 Notices. All notices must be in writing and addressed to the other party\u2019s legal department and primary point of contact. The email address for notices being sent to Google\u2019s Legal Department is legal-notices@google.com. Notice will be treated as given on receipt as verified by written or automated receipt or by electronic log (as applicable).\n\n19.2 Assignment. Neither party may assign any part of this Agreement without the written consent of the other, except to an Affiliate where: (a) the assignee has agreed in writing to be bound by the terms of this Agreement; (b) the assigning party remains liable for obligations under the Agreement if the assignee defaults on them; and (c) the assigning party has notified the other party of the assignment. Any other attempt to assign is void.\n\n19.3 Change of Control. If a party experiences a change of Control (for example, through a stock purchase or sale, merger, or other form of corporate transaction): (a) that party will give written notice to the other party within 30 days after the change of Control; and (b) the other party may immediately terminate this Agreement any time between the change of Control and 30 days after it receives that written notice.\n\n19.4 Force Majeure. Neither party will be liable for failure or delay in performance to the extent caused by circumstances beyond its reasonable control, including acts of God, natural disasters, terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations under the Agreement but will remain liable to Customer for any subcontracted obligations.\n\n19.6 No Agency. This Agreement does not create any agency, partnership or joint venture between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived any rights by not exercising (or delaying the exercise of) any rights under this Agreement.\n\n19.8 Severability. If any term (or part of a term) of this Agreement is invalid, illegal, or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party Beneficiaries. This Agreement does not confer any benefits on any third party unless it expressly states that it does.\n\n19.10 Equitable Relief. Nothing in this Agreement will limit either party\u2019s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n19.11.1 For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county or state government entity, then the Agreement will be silent regarding governing law and venue.\n\n19.11.2 For U.S. Federal Government Entities. If Customer is a U.S. federal government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA, EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I) THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA\u2019S CONFLICT OF LAWS RULES) WILL APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n19.11.3 For All Other Entities. If Customer is any entity not listed in Section 19.11.1 or 19.11.2 then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE\u2019S CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\n19.12 Amendments. Except as stated in Section 1.5.2 (Modifications; To the Agreement), any amendment must be in writing, signed by both parties, and expressly state that it is amending this Agreement.\n\n19.13 Entire Agreement. This Agreement sets out all terms agreed between the parties and supersedes all other agreements between the parties relating to its subject matter. In entering into this Agreement, neither party has relied on, and neither party will have any right or remedy based on, any statement, representation or warranty (whether made negligently or innocently), except those expressly stated in this Agreement. The terms located at any URL referenced in this Agreement and the Documentation are incorporated by reference into the Agreement. After the Effective Date, Google may provide an updated URL in place of any URL in this Agreement.\n\n19.14 Conflicting Terms. If there is a conflict between the documents that make up this Agreement, the documents will control in the following order: the Agreement, and the terms at any URL. \n\n19.15 Conflicting Translations. If this Agreement is translated into any other language, and there is a discrepancy between the English text and the translated text, the English text will govern.\n20. Definitions.\n\n\"Account\" means Customer\u2019s Google Account.\n\n\"Admin Console\" means the online console(s) and tool(s) provided by Google to Customer for administering the Services.\n\n\"Affiliate\" means any entity that directly or indirectly Controls, is Controlled by, or is under common Control with a party.\n\n\"Allegation\" means an unaffiliated third party\u2019s allegation.\n\n\u201cAnti-Bribery Laws\u201d means all applicable commercial and public anti-bribery laws, (for example, the U.S. Foreign Corrupt Practices Act of 1977 and the UK Bribery Act 2010), which prohibit corrupt offers of anything of value, either directly or indirectly, to anyone, including government officials, to obtain or keep business or to secure any other improper commercial advantage. \u201cGovernment officials\u201d include any government employee; candidate for public office; and employee of government-owned or government-controlled companies, public international organizations, and political parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the then-current Acceptable Use Policy for the Services at: https://cloud.google.com/maps-platform/terms/aup/.\n\n\"Brand Features\" means the trade names, tradmarks, service marks, logos, domain names, and other distinctive brand features of each party, respectively, as secured by such party.\n\n\"Committed Purchase(s)\" has the meaning provided in the Service Specific Terms.\n\n\"Confidential Information\" means information that one party (or an Affiliate) discloses to the other party under this Agreement, and which is marked as confidential or would normally under the circumstances be considered confidential information. It does not include information that is independently developed by the recipient, is rightfully given to the recipient by a third party without confidentiality obligations, or becomes public through no fault of the recipient.\n\n\"Control\" means control of greater than fifty percent of the voting rights or equity interests of a party.\n\n\"Customer Application\" means any web domain or application (including features) listed in the Admin Console.\n\n\"Customer End User\" or \"End User\" means an individual or entity that Customer permits to use the Services or Customer Application(s).\n\n\u201cCustomer Indemnified Materials\u201d means the Customer Application and Customer Brand Features.\n\n\"Documentation\" means the Google documentation (as may be updated) in the form generally made available by Google for use with the Services at https://developers.google.com/maps/.\n\n\"Emergency Security Issue\" means either: (a) Customer\u2019s or Customer End Users\u2019 use of the Services in violation of the AUP, which could disrupt: (i) the Services; (ii) other customers\u2019 or their customer end users\u2019 use of the Services; or (iii) the Google network or servers used to provide the Services; or (b) unauthorized third party access to the Services.\n\n\"Europe\" or \"European\" means European Economic Area or Switzerland.\n\n\u201cExport Control Laws\u201d means all applicable export and re-export control laws and regulations, including any applicable munitions- or defense-related regulations (for example, the International Traffic in Arms Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual Period\" means a calendar month or another period specified by Google in the Admin Console.\n\n\"Fee Threshold\" means the threshold (as may be updated), as applicable for certain Services, as set out in the Admin Console.\n\n\u201cFeedback\u201d means feedback or suggestions about the Services provided to Google by Customer.\n\n\"Fees\" means the applicable fees for each Service and any applicable Taxes. The Fees for each Service are available at https://cloud.google.com/maps-platform/pricing/sheet/ (or other such URL provided by Google).\n\n\"Google Indemnified Materials\" means Google's technology used to provide the Services (excluding any open source software) and Google's Brand Features.\n\n\"Google Maps Content\" means any content provided through the Services (whether created by Google or its third-party licensors), including map and terrain data, imagery, traffic data, and places data (including business listings).\n\n\"High Risk Activities\" means activities where the use or failure of the Services could lead to death, personal injury, or environmental damage, including (a) emergency response services; (b) autonomous and semi-autonomous vehicle or drone control; (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation; (g) precision targeting.\n\n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs finally awarded against the indemnified party and its Affiliates by a court of competent jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual Property Rights\" means current and future worldwide rights under patent, copyright, trade secret, trademark, and moral rights laws, and other similar rights.\n\n\"Legal Process\" means a data disclosure request made under law, governmental regulation, court order, subpoena, warrant, governmental regulatory or agency request, or other valid legal authority, legal procedure, or similar process.\n\n\"Package Purchase\" has the meaning set out in the Service Specific Terms.\n\n\"Personal Data\" has the meaning provided in the General Data Protection Regulation (EU) 2016/679 of the European Parliament and of the Council of April 27, 2016.\n\n\"Prohibited Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources for a particular Customer Application.\n\n\"Services\" and \"Google Maps Core Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/. The Services include the Google Maps Content.\n\n\"Service Specific Terms\" means the terms specific to one or more Services set forth here: https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\n\"SLA\" or \"Service Level Agreement\" means each of the then-current service level agreements at: https://cloud.google.com/maps-platform/terms/sla/.\n\n\"Software\" means any downloadable tools, software development kits or other such proprietary computer software provided by Google in connection with the Services, which may be downloaded by Customer, and any updates Google may make to such Software.\n\n\"Taxes\" means any duties, customs fees, or taxes (other than Google\u2019s income tax) associated with the purchase of the Services, including any related penalties or interest.\n\n\u201cTechnical Support Services\u201d or \"TSS\" means the technical support service provided by Google to Customer under the Technical Support Services Guidelines.\n\n\u201cTechnical Support Services Guidelines\u201d or \"TSS Guidelines\" means the then-current technical support service guidelines at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Term\" has the meaning stated in Section 1.6 of this Agreement.\n\n\u201cTerms URL\u201d means the following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated third party before a court or government tribunal (including any appellate proceeding).\n\n\"Trademark Guidelines\" means (a) Google\u2019s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html; and (b) the \u201cUse of Trademarks\u201d section of the \u201cUsing Google Maps, Google Earth and Street View\u201d permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark policy.\n\n\u201cURL Terms\u201d means the following, which will control in the following order if there is a conflict:\n\n(a) the AUP;\n\n(b) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html;\n\n(c) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html;\n\n(d) the Service Specific Terms; \n\n(e) the SLA; and\n\n(f) the Technical Support Services Guidelines.", + "json": "google-maps-tos-2018-05-01.json", + "yaml": "google-maps-tos-2018-05-01.yml", + "html": "google-maps-tos-2018-05-01.html", + "license": "google-maps-tos-2018-05-01.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-06-07", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-06-07", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Maps Platform Terms of Service\n\nLast modified: June 7, 2018\n\nGoogle Maps Platform License Agreement\n\nThis Google Maps Platform License Agreement (the \"Agreement\") is made and entered into between Google and the entity or person agreeing to these terms (\"Customer\"). \"Google\" means either (i) Google Commerce Limited (\u201cGCL\u201d), a company incorporated under the laws of Ireland, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer has a billing address in the EU and has chosen \u201cnon-business\u201d as the tax status/setting for its Google account, (ii) Google Ireland Limited, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer's billing address is in any country within Europe, the Middle East, or Africa (\"EMEA\"), (iii) Google Asia Pacific Pte. Ltd., with offices at 70 Pasir Panjang Road, #03-71, Mapletree Business City II Singapore 117371, if Customer's billing address is in any country within the Asia Pacific region (\"APAC\") except as provided below for Customers with the billing address in Japan or Australia, (iv) Google Cloud Japan G.K., with offices at Roppongi Hills Mori Tower, 10-1, Roppongi 6-chome, Minato-ku Tokyo, if Customer\u2019s billing address is in Japan, (v) Google Australia Pty Ltd., with offices at Level 5, 48 Pirrama Road, Pyrmont, NSW 2009 Australia, if Customer\u2019s billing address is in Australia, or (vi) Google LLC, with offices at 1600 Amphitheatre Parkway, Mountain View, California 94043, if Customer's billing address is in any country in the world other than those in EMEA and APAC.\n\nThis Agreement is effective as of the date Customer clicks to accept the Agreement (the \"Effective Date\"). If you are accepting on behalf of Customer, you represent and warrant that: (i) you have full legal authority to bind Customer to this Agreement; (ii) you have read and understand this Agreement; and (iii) you agree, on behalf of Customer, to this Agreement. If you do not have the legal authority to bind Customer, please do not click to accept. This Agreement governs Customer's access to and use of the Services.\n\nFor an offline variant of this Agreement, you may contact Google for more information.\n1. Provision of the Services.\n\n1.1 Use of the Services in Customer Applications. Google will provide the Services to Customer in accordance with the applicable SLA, and Customer may use the Google Maps Core Services in Customer Application(s) in accordance with Section 3 (License).\n\n1.2 Admin Console; Projects; API Keys. Customer will administer the Services through the online Admin Console. To access the Services, Customer must create Project(s) and use its API key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer must have an Account to use the Services. Customer is responsible for the information it provides in connection with the Account, its passwords, and use of its Account.\n\n1.4 New Features and Services. Google may: (a) make new features or functionality available through the Services and (b) add new services to the \"Services\" definition (by adding them at the URL stated under that definition). Customer\u2019s use of new features or functionality may be contingent on Customer\u2019s agreement to additional terms applicable to the new feature or functionality.\n\n1.5 Modifications.\n\n1.5.1 To the Services. Google may make changes to the Services, subject to Section 9 (Deprecation Policy), which may include adding, updating, or discontinuing any Services or portion or feature(s) of the Services. Google will notify Customer of any material change to the Services.\n\n1.5.2. To the Agreement. Google may make changes to this Agreement, including pricing (and any linked documents). Unless otherwise noted by Google, material changes to the Agreement will become effective 30 days after notice is given, except if the changes apply to new functionality in which case they will be effective immediately. Google will provide at least 90 days advance notice for materially adverse changes to any SLAs by: (a) sending an email to Customer\u2019s primary point of contact; (b) posting a notice in the Admin Console; or (c) posting a notice to the applicable SLA webpage. If Customer does not agree to the revised Agreement, Customer should stop using the Services. Google will post any modification to this Agreement to the Terms URL.\n2. Payment Terms.\n\n2.1 Free Quota. Certain Services are provided to Customer without charge up to the Fee Threshold, as applicable.\n\n2.2 Online Billing. At the end of the applicable Fee Accrual Period, Google will issue an electronic bill to Customer for all charges accrued above the Fee Threshold based on (a) Customer\u2019s use of the Services during the previous Fee Accrual Period; (b) any Committed Purchases selected; and (c) any Package Purchases selected. For use above the Fee Threshold, Customer will be responsible for all Fees up to the amount set in the Account and will pay all Fees in the currency set forth in the invoice. If Customer elects to pay by credit card, debit card, or other non-invoiced form of payment, Google will charge (and Customer will pay) all Fees immediately at the end of the Fee Accrual Period. If Customer elects to pay by invoice (and Google agrees), all Fees are due as stated in the invoice. Customer\u2019s obligation to pay all Fees is non-cancellable. Google's measurement of Customer\u2019s use of the Services is final. Google has no obligation to provide multiple bills. Payments made via wire transfer must include the bank information provided by Google. If Customer has entered into the Agreement with GCL, Google may collect payments via Google Payment Limited, a company incorporated in England and Wales with offices at Belgrave House, 76 Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\n2.3 Taxes.\n\n2.3.1 Customer is responsible for any Taxes, and Customer will pay Google for the Services without any reduction for Taxes. If Google is obligated to collect or pay Taxes, the Taxes will be invoiced to Customer, unless Customer provides Google with a timely and valid tax exemption certificate authorized by the appropriate taxing authority. In some states the sales tax is due on the total purchase price at the time of sale and must be invoiced and collected at the time of the sale. If Customer is required by law to withhold any Taxes from its payments to Google, Customer must provide Google with an official tax receipt or other appropriate documentation to support such withholding. If under the applicable tax legislation the Services are subject to local VAT and the Customer is required to make a withholding of local VAT from amounts payable to Google, the value of Services calculated in accordance with the above procedure will be increased (grossed up) by the Customer for the respective amount of local VAT and the grossed up amount will be regarded as a VAT inclusive price. Local VAT amount withheld from the VAT-inclusive price will be remitted to the applicable local tax entity by the Customer and Customer will ensure that Google will receives payment for its services for the net amount as would otherwise be due (the VAT inclusive price less the local VAT withheld and remitted to applicable tax authority).\n\n2.3.2 If required under applicable law, Customer will provide Google with applicable tax identification information that Google may require to ensure its compliance with applicable tax regulations and authorities in applicable jurisdictions. Customer will be liable to pay (or reimburse Google for) any taxes, interest, penalties or fines arising out of any mis-declaration by the Customer.\n\n2.4 Invoice Disputes & Refunds. Any invoice disputes must be submitted before the payment due date. If the parties determine that certain billing inaccuracies are attributable to Google, Google will not issue a corrected invoice, but will instead issue a credit memo specifying the incorrect amount in the affected invoice. If the disputed invoice has not yet been paid, Google will apply the credit memo amount to the disputed invoice and Customer will be responsible for paying the resulting net balance due on that invoice. To the fullest extent permitted by law, Customer waives all claims relating to Fees unless claimed within 60 days after charged (this does not affect any Customer rights with its credit card issuer). Refunds (if any) are at the discretion of Google and will only be in the form of credit for the Services. Nothing in this Agreement obligates Google to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. Late payments may bear interest at the rate of 1.5% per month (or the highest rate permitted by law, if less) from the payment due date until paid in full. Customer will be responsible for all reasonable expenses (including attorneys\u2019 fees) incurred by Google in collecting such delinquent amounts. If Customer is late on payment for the Services, Google may suspend the Services or terminate the Agreement for breach under Section 11.2 (Termination for Breach).\n\n2.6 No Purchase Order Number Required. Google is not required to provide a purchase order number on Google\u2019s invoice (or otherwise).\n3. License.\n\n3.1 License Grant. Subject to this Agreement's terms, during the Term, Google grants to Customer a non-exclusive, non-transferable, non-sublicensable, license to use the Services in Customer Application(s), which may be: (a) fee-based or non-fee-based; (b) public/external or private/internal; (c) business-to-business or business-to-consumer; or (d) asset tracking.\n\n3.2 License Requirements and Restrictions. The following are conditions of the license granted in Section 3.1. In this Section 3.2, the phrase \u201cCustomer will not\u201d means \u201cCustomer will not, and will not permit a third party to\u201d.\n\n3.2.2 General Restrictions. Unless Google specifically agrees in writing, Customer will not: (a) copy, modify, create a derivative work of, reverse engineer, decompile, translate, disassemble, or otherwise attempt to extract any or all of the source code (except to the extent such restriction is expressly prohibited by applicable law); (b) sublicense, transfer, or distribute any of the Services; (c) sell, resell, or otherwise make the Services available as a commercial offering to a third party; or (d) access or use the Services: (i) for High Risk Activities; (ii) in a manner intended to avoid incurring Fees; (iii) for activities that are subject to the International Traffic in Arms Regulations (ITAR) maintained by the United States Department of State; (iv) on behalf of or for the benefit of any entity or person who is legally prohibited from using the Services; or (v) to transmit, store, or process Protected Health Information (as defined in and subject to HIPAA).\n\n3.2.3 Requirements for Using the Services.\n\n(a) End User Terms and Privacy Policy. Customer\u2019s End User terms of service will state that End Users\u2019 use of Google Maps is subject to the then-current Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html and Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n(b) Attribution. Customer will display all attribution that (i) Google provides through the Services (including branding, logos, and copyright and trademark notices); or (ii) is specified in the Service Specific Terms. Customer will not modify, obscure, or delete such attribution.\n\n(c) Review of Customer Applications. At Google\u2019s request, Customer will submit Customer Application(s) and Project(s) to Google for review to ensure compliance with the Agreement (including the AUP).\n\n3.2.4 Restrictions Against Misusing the Services.\n\n(a) No Scraping. Customer will not extract, export, or scrape Google Maps Content for use outside the Services. For example, Customer will not:(i) pre-fetch, cache, index, or store Google Maps Content for more than 30 days; (ii) bulk download geocodes; or (iii) copy business names, addresses, or user reviews.\n\n(b) No Creating Content From Google Maps Content. Customer will not create content based on Google Maps Content, including tracing, digitizing, or creating other datasets based on Google Maps Content.\n\n(c) No Re-Creating Google Products or Features. Customer will not use the Services to create a product or service with features that are substantially similar to or that re-create the features of another Google product or service. Customer\u2019s product or service must contain substantial, independent value and features beyond the Google products or services. For example, Customer will not: (i) re-distribute the Google Maps Core Services or pass them off as if they were Customer\u2019s services; (ii) create a substitute of the Google Maps Core Services, Google Maps, or Google Maps mobile apps, or their features; (iii) use the Google Maps Core Services in a listings or directory service or to create or augment an advertising product; (iv) combine data from the Directions API, Geolocation API, and Maps SDK for Android to create real-time navigation functionality substantially similar to the functionality provided by the Google Maps for Android mobile app.\n\n(d) No Use With Non-Google Maps. Customer will not use the Google Maps Core Services in a Customer Application that contains a non-Google map. For example, Customer will not (i) display Places listings on a non-Google map, or (ii) display Street View imagery and non-Google maps in the same Customer Application.\n\n(e) No Circumventing Fees. Customer will not circumvent the applicable Fees. For example, Customer will not create multiple billing accounts or Projects to avoid incurring Fees; prevent Google from accurately calculating Customer\u2019s Service usage levels; abuse any free Service quotas; or offer access to the Services under a \u201ctime-sharing\u201d or \u201cservice bureau\u201d model.\n\n(f) No Use in Prohibited Territories. Customer will not distribute or market in a Prohibited Territory any Customer Application(s) that use the Google Maps Core Services.\n\n(g) No Use in Embedded Vehicle Systems. Customer will not use the Google Maps Core Services in connection with any Customer Application or device embedded in a vehicle. For example, Customer will not create a Customer Application that (i) is embedded in an in-dashboard automotive infotainment system; and (ii) allows End Users to request driving directions from the Directions API.\n\n(h) No Modifying Search Results Integrity. Customer will not modify any of the Service\u2019s search results.\n\n(i) No Use for High Risk Activities. Customer will not use the Google Maps Core Services for High Risk Activities.\n\n3.2.5 Benchmarking. Customer may not publicly disclose directly or through a third party the results of any comparative or compatibility testing, benchmarking, or evaluation of the Services (each, a \u201cTest\u201d), unless the disclosure includes all information necessary for Google or a third party to replicate the Test. If Customer conducts, or directs a third party to conduct, a Test of the Services and publicly discloses the results directly or through a third party, then Google (or a Google directed third party) may conduct Tests of any publicly available cloud products or services provided by Customer and publicly disclose the results of any such Test (which disclosure will include all information necessary for Customer or a third party to replicate the Test).\n4. Customer Obligations. \n\n4.1 Customer Domains and Applications. Customer must list in the Admin Console each authorized domain and application that uses the Services. Customer is responsible for ensuring that only authorized domains and applications use the Services.\n\n4.2 Compliance. Customer will: (a) ensure that Customer\u2019s and its End Users\u2019 use of the Services complies with the Agreement, including the applicable Services\u2019 AUP and URL Terms; and (b) use commercially reasonable efforts to prevent, promptly notify Google of, and terminate any unauthorized use of or access to its Account(s) or the Services.\n\n4.3 Documentation. Google may provide Documentation for Customer\u2019s use of the Services. The Documentation may specify restrictions (e.g. attribution or HTML restrictions) on how the Services may be used and Customer will comply with any such restrictions specified.\n\n4.4 Copyright Policy. Google provides information to help copyright holders manage their intellectual property online, but Google cannot determine whether something is being used legally or not without their input. Google responds to notices of alleged copyright infringement and terminates accounts of repeat infringers according to applicable copyright laws including in particular the process set out in the U.S. Digital Millennium Copyright Act. If Customer thinks somebody is violating Customer\u2019s or Customer End Users\u2019 copyrights and wants to notify Google, Customer can find information about submitting notices, and Google's policy about responding to notices at https://www.google.com/dmca.html.\n\n4.5 Data Use, Protection, and Privacy.\n\n4.5.1 Data Use and Retention. To provide the Services through the Customer Application(s), Google must receive and collect data from End Users and Customer, including search terms, IP addresses, and latitude/longitude coordinates. Customer acknowledges and agrees that Google and its Affiliates may use and retain this data to provide and improve Google products and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n4.5.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\n4.5.3 General Privacy Requirements.\n\n(a) End User Privacy. Customer\u2019s use of the Services in the Customer Application will comply with applicable privacy laws, including laws regarding Services that store and access Cookies on End Users\u2019 devices. If Customer has End Users in the European Economic Area, Customer will comply with the EU End User Consent Policy at https://www.google.com/about/company/user-consent-policy.html.\n\n(b) End User Personal Data. Through the normal functioning of the Google Maps Core Services, End Users provide device identifiers and Personal Data directly to Google, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/. However, Customer acknowledges and agrees that Customer will not provide these categories of data to Google.\n\n(c) End User Location Privacy Requirements. To safeguard End Users\u2019 location privacy, Customer will ensure that the Customer Application(s): (i) notify End Users in advance of (y) the type(s) of data that Customer intends to collect from the End Users or the End Users\u2019 devices, and (z) the combination and use of End User's location with any other data provider's data; and (ii) will not obtain or cache any End User's location except with the End User's express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions Violations. Google may Suspend the Services without prior notice if Customer breaches Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Violations or Emergency Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP Violations) and 5.2.2 (Emergency Security Issues). Any Suspension under those Sections will be to the minimum extent and for the shortest duration required to: (a) prevent or terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c) comply with applicable law.\n\n5.2.1 AUP Violations. If Google becomes aware that Customer\u2019s or any End User\u2019s use of the Services violates the AUP, Google will give Customer notice of such violation by requesting that Customer correct the violation. If Customer fails to correct such violation within 24 hours, or if Google is otherwise required by applicable law to take action, then Google may Suspend all or part of Customer\u2019s use of the Services.\n\n5.2.2 Emergency Security Issues. Google may immediately Suspend Customer\u2019s use of the Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend such use immediately to comply with applicable law. At Customer\u2019s request, unless prohibited by applicable law, Google will notify Customer of the basis for the Suspension as soon as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights Infringement. If the Customer Application is alleged to infringe a third party\u2019s Intellectual Property Rights, Google may require Customer to suspend distributing or selling the Customer Application on 30 days\u2019 written notice until such allegation is fully resolved. In any event, this Section 5.3 does not reduce Customer\u2019s obligations under Section 15 (Indemnification).\n6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as expressly stated in this Agreement, this Agreement does not grant either party any rights, implied or otherwise, to the other\u2019s content or any of the other\u2019s intellectual property. As between the parties, Customer owns all Intellectual Property Rights in the Customer Application, and Google owns all Intellectual Property Rights in the Services and Software.\n\n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google may use that information without obligation to Customer, and Customer irrevocably assigns to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices and License Terms.\n\nCertain components of the Services (including open source software) are subject to third-party copyright and other Intellectual Property Rights, as specified in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and (b) separate, publicly-available third-party license terms, which Google will provide to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will provide the Technical Support Services to Customer in accordance with the Technical Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n9.1 Google will notify Customer at least 12 months before making material discontinuance(s) or backwards incompatible change(s) to the Services, unless Google reasonably determines that: (a) Google cannot do so by law or by contract (including if there is a change in applicable law or contract) or (b) continuing to provide the Services could create a (i) security risk or (ii) substantial economic or technical burden.\n\n9.2 Section 9.1 applies to the Services listed at https://cloud.google.com/maps-platform/terms/maps-deprecation/. If Google deprecates any Services that are not listed at the above URL, Google will use commercially reasonable efforts to minimize the adverse impacts of such deprecations.\n10. Confidential Information.\n\n10.1 Obligations. The recipient will not disclose the Confidential Information, except to Affiliates, employees, agents or professional advisors who need to know it and who have agreed in writing (or in the case of professional advisors are otherwise bound) to keep it confidential. Subject to Section 10.2 (Required Disclosure), the recipient will ensure that those people and entities use the received Confidential Information only to exercise rights and fulfill obligations under this Agreement, while using reasonable care to keep it confidential.\n\n10.2 Required Disclosure. The recipient may disclose the other party\u2019s Confidential Information to the extent required by applicable Legal Process; provided that the recipient uses commercially reasonable efforts to: (a) promptly notify the other party of such disclosure before disclosing; and (b) comply with the other party\u2019s reasonable requests regarding its efforts to oppose the disclosure. Notwithstanding the foregoing, subsections (a) and (b) above will not apply if the recipient determines that complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii) obstruct a governmental investigation; and/or (iii) lead to death or serious physical harm to an individual. As between the parties, Customer is responsible for responding to all third party requests concerning its use and Customer End Users\u2019 use of the Services.\n11. Term and Termination.\n\n11.1 Agreement Term. The \u201cTerm\u201d of this Agreement will begin on the Effective Date and continue until the Agreement is terminated under this Section.\n\n11.2 Termination for Breach. Either party may terminate this Agreement for breach if: (a) the other party is in material breach of the Agreement and fails to cure that breach within 30 days after receipt of written notice; or (b) the other party ceases its business operations or becomes subject to insolvency proceedings and the proceedings are not dismissed within 90 days. In addition, Google may terminate any, all, or any portion of the Services or Projects, if Customer meets any of the conditions in subsections (a) or (b).\n\n11.3 Termination for Inactivity. Google reserves the right to terminate provision of Service(s) to a Project on 30 days advance notice if, for more than 180 days, such Project (a) has not made any requests to the Services from any Customer Applications; or (b) such Project has not incurred any Fees for such Service(s).\n\n11.4 Termination for Convenience. Customer may stop using the Services at any time. Subject to any financial commitments expressly made by this Agreement, Customer may terminate this Agreement for its convenience at any time on prior written notice and upon termination, must cease use of the applicable Services. Google may terminate this Agreement for its convenience at any time without liability to Customer.\n\n11.5 Effects of Termination. \n\n11.5.1 If the Agreement is terminated, then: (a) the rights granted by one party to the other will immediately cease; (b) all Fees owed by Customer to Google are immediately due upon receipt of the final electronic bill; and (c) Customer will delete the Software and any content from the Services by the termination effective date.\n\n11.5.2 The following will survive expiration or termination of the Agreement: Section 2 (Payment Terms), Section 3.2 (License Requirements and Restrictions), Section 4.5 (Data Use, Protection, and Privacy), Section 6 (Intellectual Property; Feedback), Section 10 (Confidential Information), Section 11.5 (Effects of Termination), Section 14 (Disclaimer), Section 15 (Indemnification), Section 16 (Limitation of Liability), Section 19 (Miscellaneous), and Section 20 (Definitions).\n12. Publicity.\n\nCustomer may state publicly that it is a customer of the Services, consistent with the Trademark Guidelines. If Customer wants to display Google Brand Features in connection with its use of the Services, Customer must obtain written permission from Google through the process specified in the Trademark Guidelines. Google may include Customer\u2019s name or Brand Features in a list of Google customers, online or in promotional materials. Google may also verbally reference Customer as a customer of the Services. Neither party needs approval if it is repeating a public statement that is substantially similar to a previously-approved public statement. Any use of a party\u2019s Brand Features will inure to the benefit of the party holding Intellectual Property Rights to those Brand Features. A party may revoke the other party\u2019s right to use its Brand Features under this Section with written notice to the other party and a reasonable period to stop the use. Where applicable, Customer may use Google Maps Content in accordance with the \u201cUsing Google Maps, Google Earth and Street View\u201d permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy, which will be considered \u201cGoogle\u2019s prior written consent\u201d for the permitted uses.\n13. Representations and Warranties.\n\nEach party represents and warrants that: (a) it has full power and authority to enter into the Agreement; and (b) it will comply with Export Control Laws and Anti-Bribery Laws applicable to its provision, receipt, or use, of the Services, as applicable.\n14. Disclaimer.\n\n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED USE OF THE SERVICES OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION ACCESSIBLE THROUGH THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES EXPRESSLY STATED IN THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES ARE PROVIDED FOR PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES MAY DIFFER FROM ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION. CUSTOMER MUST EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT THE CUSTOMER APPLICATION IS SAFE AND SUITABLE FOR USE WITH GOOGLE MAPS.\n15. Indemnification.\n\n15.1 By Customer. Unless prohibited by applicable law, Customer will defend Google and its Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer\u2019s or an End User\u2019s use of the Services in violation of the Agreement.\n\n15.2 By Google. Google will defend Customer and its Affiliates participating under the Agreement (\u201cCustomer Indemnified Parties\u201d), and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from an allegation that Customer Indemnified Parties' use in accordance with the Agreement of Google Indemnified Materials infringes the third party's Intellectual Property Rights.\n\n15.3 Exclusions. This Section 15 will not apply to the extent the underlying allegation arises from (a) the indemnified party\u2019s breach of the Agreement or (b) a combination of the indemnifying party\u2019s technology or Brand Features with materials not provided by the indemnifying party, unless the combination is required by the Agreement.\n\n15.4 Conditions. Sections 15.1 and 15.2 will apply only to the extent:\n\n(a) The indemnified party has promptly notified the indemnifying party in writing of any Allegation(s) that preceded the Third-Party Legal Proceeding and cooperates reasonably with the indemnifying party to resolve the Allegation(s) and Third-Party Legal Proceeding. If breach of this Section 15.4(a) prejudices the defense of the Third-Party Legal Proceeding, the indemnifying party\u2019s obligations under Section 15.1 or 15.2 (as applicable) will be reduced in proportion to the prejudice.\n\n(b) The indemnified party tenders sole control of the indemnified portion of the Third-Party Legal Proceeding to the indemnifying party, subject to the following: (i) the indemnified party may appoint its own non-controlling counsel, at its own expense; and (ii) any settlement requiring the indemnified party to admit liability, pay money, or take (or refrain from taking) any action, will require the indemnified party\u2019s prior written consent, not to be unreasonably withheld, conditioned, or delayed.\n\n15.5 Remedies.\n\n(a) If Google reasonably believes the Services might infringe a third party\u2019s Intellectual Property Rights, then Google may, at its sole option and expense: (i) procure the right for Customer to continue using the Services; (ii) modify the Services to make them non-infringing without materially reducing their functionality; or (iii) replace the Services with a non-infringing, functionally equivalent alternative.\n\n(b) If Google does not believe the remedies in Section 15.5(a) are commercially reasonable, then Google may suspend or terminate Customer\u2019s use of the impacted Services.\n\n15.6 Sole Rights and Obligations. Without affecting either party\u2019s termination rights, this Section 15 states the parties\u2019 sole and exclusive remedy under this Agreement for any third party's Intellectual Property Rights Allegations and Third-Party Legal Proceedings covered by this Section 15 (Indemnification).\n16. Limitation of Liability.\n\n16.1 Limitation on Indirect Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PARTIES AND GOOGLE\u2019S LICENSORS, WILL NOT BE LIABLE UNDER THIS AGREEMENT FOR LOST REVENUES OR PROFITS (WHETHER DIRECT OR INDIRECT), INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE PARTY OR LICENSOR, AS APPLICABLE, KNEW OR SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY A REMEDY.\n\n16.2 Limitation on Amount of Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PARTIES AND GOOGLE\u2019S LICENSORS, MAY NOT BE HELD LIABLE UNDER THIS AGREEMENT FOR MORE THAN THE AMOUNT PAID BY CUSTOMER TO GOOGLE UNDER THIS AGREEMENT DURING THE TWELVE MONTHS BEFORE THE EVENT GIVING RISE TO LIABILITY.\n\n16.3 Exceptions to Limitations. These limitations of liability do not apply to breaches of confidentiality obligations, violations of a party\u2019s Intellectual Property Rights by the other party, or Customer's payment obligations.\n17. Advertising.\n\n Customer may configure the Service in its sole discretion to either display or not display advertisements served by Google. \n18. U.S. Federal Agency Users.\n\nThe Services were developed solely at private expense and are commercial computer software and related documentation within the meaning of the applicable Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\n19.1 Notices. All notices must be in writing and addressed to the other party\u2019s legal department and primary point of contact. The email address for notices being sent to Google\u2019s Legal Department is legal-notices@google.com. Notice will be treated as given on receipt as verified by written or automated receipt or by electronic log (as applicable).\n\n19.2 Assignment. Neither party may assign any part of this Agreement without the written consent of the other, except to an Affiliate where: (a) the assignee has agreed in writing to be bound by the terms of this Agreement; (b) the assigning party remains liable for obligations under the Agreement if the assignee defaults on them; and (c) the assigning party has notified the other party of the assignment. Any other attempt to assign is void.\n\n19.3 Change of Control. If a party experiences a change of Control (for example, through a stock purchase or sale, merger, or other form of corporate transaction): (a) that party will give written notice to the other party within 30 days after the change of Control; and (b) the other party may immediately terminate this Agreement any time between the change of Control and 30 days after it receives that written notice.\n\n19.4 Force Majeure. Neither party will be liable for failure or delay in performance to the extent caused by circumstances beyond its reasonable control, including acts of God, natural disasters, terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations under the Agreement but will remain liable to Customer for any subcontracted obligations.\n\n19.6 No Agency. This Agreement does not create any agency, partnership or joint venture between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived any rights by not exercising (or delaying the exercise of) any rights under this Agreement.\n\n19.8 Severability. If any term (or part of a term) of this Agreement is invalid, illegal, or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party Beneficiaries. This Agreement does not confer any benefits on any third party unless it expressly states that it does.\n\n19.10 Equitable Relief. Nothing in this Agreement will limit either party\u2019s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n19.11.1 For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county or state government entity, then the Agreement will be silent regarding governing law and venue.\n\n19.11.2 For U.S. Federal Government Entities. If Customer is a U.S. federal government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA, EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I) THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA\u2019S CONFLICT OF LAWS RULES) WILL APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n19.11.3 For All Other Entities. If Customer is any entity not listed in Section 19.11.1 or 19.11.2 then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE\u2019S CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\n19.12 Amendments. Except as stated in Section 1.5.2 (Modifications; To the Agreement), any amendment must be in writing, signed by both parties, and expressly state that it is amending this Agreement.\n\n19.13 Entire Agreement. This Agreement sets out all terms agreed between the parties and supersedes all other agreements between the parties relating to its subject matter. In entering into this Agreement, neither party has relied on, and neither party will have any right or remedy based on, any statement, representation or warranty (whether made negligently or innocently), except those expressly stated in this Agreement. The terms located at any URL referenced in this Agreement and the Documentation are incorporated by reference into the Agreement. After the Effective Date, Google may provide an updated URL in place of any URL in this Agreement.\n\n19.14 Conflicting Terms. If there is a conflict between the documents that make up this Agreement, the documents will control in the following order: the Agreement, and the terms at any URL. \n\n19.15 Conflicting Translations. If this Agreement is translated into any other language, and there is a discrepancy between the English text and the translated text, the English text will govern.\n20. Definitions.\n\n\"Account\" means Customer\u2019s Google Account.\n\n\"Admin Console\" means the online console(s) and tool(s) provided by Google to Customer for administering the Services.\n\n\"Affiliate\" means any entity that directly or indirectly Controls, is Controlled by, or is under common Control with a party.\n\n\"Allegation\" means an unaffiliated third party\u2019s allegation.\n\n\u201cAnti-Bribery Laws\u201d means all applicable commercial and public anti-bribery laws, (for example, the U.S. Foreign Corrupt Practices Act of 1977 and the UK Bribery Act 2010), which prohibit corrupt offers of anything of value, either directly or indirectly, to anyone, including government officials, to obtain or keep business or to secure any other improper commercial advantage. \u201cGovernment officials\u201d include any government employee; candidate for public office; and employee of government-owned or government-controlled companies, public international organizations, and political parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the then-current Acceptable Use Policy for the Services at: https://cloud.google.com/maps-platform/terms/aup/.\n\n\"Brand Features\" means the trade names, tradmarks, service marks, logos, domain names, and other distinctive brand features of each party, respectively, as secured by such party.\n\n\"Committed Purchase(s)\" has the meaning provided in the Service Specific Terms.\n\n\"Confidential Information\" means information that one party (or an Affiliate) discloses to the other party under this Agreement, and which is marked as confidential or would normally under the circumstances be considered confidential information. It does not include information that is independently developed by the recipient, is rightfully given to the recipient by a third party without confidentiality obligations, or becomes public through no fault of the recipient.\n\n\"Control\" means control of greater than fifty percent of the voting rights or equity interests of a party.\n\n\"Customer Application\" means any web domain or application (including features) listed in the Admin Console.\n\n\"Customer End User\" or \"End User\" means an individual or entity that Customer permits to use the Services or Customer Application(s).\n\n\u201cCustomer Indemnified Materials\u201d means the Customer Application and Customer Brand Features.\n\n\"Documentation\" means the Google documentation (as may be updated) in the form generally made available by Google for use with the Services at https://developers.google.com/maps/.\n\n\"Emergency Security Issue\" means either: (a) Customer\u2019s or Customer End Users\u2019 use of the Services in violation of the AUP, which could disrupt: (i) the Services; (ii) other customers\u2019 or their customer end users\u2019 use of the Services; or (iii) the Google network or servers used to provide the Services; or (b) unauthorized third party access to the Services.\n\n\"Europe\" or \"European\" means European Economic Area or Switzerland.\n\n\u201cExport Control Laws\u201d means all applicable export and re-export control laws and regulations, including any applicable munitions- or defense-related regulations (for example, the International Traffic in Arms Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual Period\" means a calendar month or another period specified by Google in the Admin Console.\n\n\"Fee Threshold\" means the threshold (as may be updated), as applicable for certain Services, as set out in the Admin Console.\n\n\u201cFeedback\u201d means feedback or suggestions about the Services provided to Google by Customer.\n\n\"Fees\" means the applicable fees for each Service and any applicable Taxes. The Fees for each Service are available at https://cloud.google.com/maps-platform/pricing/sheet/ (or other such URL provided by Google).\n\n\"Google Indemnified Materials\" means Google's technology used to provide the Services (excluding any open source software) and Google's Brand Features.\n\n\"Google Maps Content\" means any content provided through the Services (whether created by Google or its third-party licensors), including map and terrain data, imagery, traffic data, and places data (including business listings).\n\n\"High Risk Activities\" means activities where the use or failure of the Services could lead to death, personal injury, or environmental damage, including (a) emergency response services; (b) autonomous and semi-autonomous vehicle or drone control; (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation; (g) precision targeting.\n\n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs finally awarded against the indemnified party and its Affiliates by a court of competent jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual Property Rights\" means current and future worldwide rights under patent, copyright, trade secret, trademark, and moral rights laws, and other similar rights.\n\n\"Legal Process\" means a data disclosure request made under law, governmental regulation, court order, subpoena, warrant, governmental regulatory or agency request, or other valid legal authority, legal procedure, or similar process.\n\n\"Package Purchase\" has the meaning set out in the Service Specific Terms.\n\n\"Personal Data\" has the meaning provided in the General Data Protection Regulation (EU) 2016/679 of the European Parliament and of the Council of April 27, 2016.\n\n\"Prohibited Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources for a particular Customer Application.\n\n\"Services\" and \"Google Maps Core Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/. The Services include the Google Maps Content.\n\n\"Service Specific Terms\" means the terms specific to one or more Services set forth here: https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\n\"SLA\" or \"Service Level Agreement\" means each of the then-current service level agreements at: https://cloud.google.com/maps-platform/terms/sla/.\n\n\"Software\" means any downloadable tools, software development kits or other such proprietary computer software provided by Google in connection with the Services, which may be downloaded by Customer, and any updates Google may make to such Software.\n\n\"Taxes\" means any duties, customs fees, or taxes (other than Google\u2019s income tax) associated with the purchase of the Services, including any related penalties or interest.\n\n\u201cTechnical Support Services\u201d or \"TSS\" means the technical support service provided by Google to Customer under the Technical Support Services Guidelines.\n\n\u201cTechnical Support Services Guidelines\u201d or \"TSS Guidelines\" means the then-current technical support service guidelines at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Term\" has the meaning stated in Section 1.6 of this Agreement.\n\n\u201cTerms URL\u201d means the following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated third party before a court or government tribunal (including any appellate proceeding).\n\n\"Trademark Guidelines\" means (a) Google\u2019s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html; and (b) the \u201cUse of Trademarks\u201d section of the \u201cUsing Google Maps, Google Earth and Street View\u201d permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark policy.\n\n\u201cURL Terms\u201d means the following, which will control in the following order if there is a conflict:\n\n(a) the AUP;\n\n(b) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html;\n\n(c) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html;\n\n(d) the Service Specific Terms; \n\n(e) the SLA; and\n\n(f) the Technical Support Services Guidelines.", + "json": "google-maps-tos-2018-06-07.json", + "yaml": "google-maps-tos-2018-06-07.yml", + "html": "google-maps-tos-2018-06-07.html", + "license": "google-maps-tos-2018-06-07.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-07-09", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-07-09", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Maps Platform Terms of Service\n\nLast modified: July 9, 2018\n\nThis Google Maps Platform License Agreement takes effect on July 16, 2018. \n\nIf you are currently using the Google Maps Standard Plan, this Google Maps Platform License Agreement will govern your use of the Google Maps Platform as of July 16, 2018. The current Google Maps Platform Terms of Service, which govern your use of the Google Maps Platform until July 16, 2018, is available at https://developers.google.com/maps/terms.\n\nGoogle Maps Platform License Agreement\n\nThis Google Maps Platform License Agreement (the \"Agreement\") is made and entered into between Google and the entity or person agreeing to these terms (\"Customer\"). \"Google\" means either (i) Google Commerce Limited (\u201cGCL\u201d), a company incorporated under the laws of Ireland, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer has a billing address in the EU and has chosen \u201cnon-business\u201d as the tax status/setting for its Google account, (ii) Google Ireland Limited, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer's billing address is in any country within Europe, the Middle East, or Africa (\"EMEA\"), (iii) Google Asia Pacific Pte. Ltd., with offices at 70 Pasir Panjang Road, #03-71, Mapletree Business City II Singapore 117371, if Customer's billing address is in any country within the Asia Pacific region (\"APAC\") except as provided below for Customers with the billing address in Japan or Australia, (iv) Google Cloud Japan G.K., with offices at Roppongi Hills Mori Tower, 10-1, Roppongi 6-chome, Minato-ku Tokyo, if Customer\u2019s billing address is in Japan, (v) Google Australia Pty Ltd., with offices at Level 5, 48 Pirrama Road, Pyrmont, NSW 2009 Australia, if Customer\u2019s billing address is in Australia, or (vi) Google LLC, with offices at 1600 Amphitheatre Parkway, Mountain View, California 94043, if Customer's billing address is in any country in the world other than those in EMEA and APAC.\n\nThis Agreement is effective as of the date Customer clicks to accept the Agreement, or enters into a Reseller Agreement if purchasing through a Reseller (the \"Effective Date\"). If you are accepting on behalf of Customer, you represent and warrant that: (i) you have full legal authority to bind Customer to this Agreement; (ii) you have read and understand this Agreement; and (iii) you agree, on behalf of Customer, to this Agreement. If you do not have the legal authority to bind Customer, please do not click to accept. This Agreement governs Customer's access to and use of the Services.\n\nFor an offline variant of this Agreement, you may contact Google for more information.\n1. Provision of the Services.\n\n1.1 Use of the Services in Customer Applications. Google will provide the Services to Customer in accordance with the applicable SLA, and Customer may use the Google Maps Core Services in Customer Application(s) in accordance with Section 3 (License).\n\n1.2 Admin Console; Projects; API Keys. Customer will administer the Services through the online Admin Console. To access the Services, Customer must create Project(s) and use its API key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer must have an Account to access the Admin Console through which Customer may administer its use of the Services. Customer is responsible for: (a) the information it provides in connection with the Account; (b) maintaining the confidentiality and security of the Account and associated passwords; and (c) any use of its Account.\n\n1.4 Customer Domains and Applications. Customer must list in the Admin Console each authorized domain and application that uses the Services. Customer is responsible for ensuring that only authorized domains and applications use the Services.\n\n1.5 New Features and Services. Google may: (a) make new features or functionality available through the Services and (b) add new services to the \"Services\" definition (by adding them at the URL stated under that definition). Customer\u2019s use of new features or functionality may be contingent on Customer\u2019s agreement to additional terms applicable to the new feature or functionality.\n\n1.6 Modifications.\n\n1.6.1 To the Services. Google may make changes to the Services, subject to Section 9 (Deprecation Policy), which may include adding, updating, or discontinuing any Services or portion or feature(s) of the Services. Google will notify Customer of any material change to the Services.\n\n1.6.2. To the Agreement. Google may make changes to this Agreement, including pricing (and any linked documents). Unless otherwise noted by Google, material changes to the Agreement will become effective 30 days after notice is given, except if the changes apply to new functionality in which case they will be effective immediately. Google will provide at least 90 days advance notice for materially adverse changes to any SLAs by: (a) sending an email to Customer\u2019s primary point of contact; (b) posting a notice in the Admin Console; or (c) posting a notice to the applicable SLA webpage. If Customer does not agree to the revised Agreement, Customer should stop using the Services. Google will post any modification to this Agreement to the Terms URL.\n2. Payment Terms.\n\n2.1 Free Quota. Certain Services are provided to Customer without charge up to the Fee Threshold, as applicable.\n\n2.2 Online Billing. At the end of the applicable Fee Accrual Period, Google will issue an electronic bill to Customer for all charges accrued above the Fee Threshold based on (a) Customer\u2019s use of the Services during the previous Fee Accrual Period; (b) any Committed Purchases selected; and (c) any Package Purchases selected. For use above the Fee Threshold, Customer will be responsible for all Fees up to the amount set in the Account and will pay all Fees in the currency set forth in the invoice. If Customer elects to pay by credit card, debit card, or other non-invoiced form of payment, Google will charge (and Customer will pay) all Fees immediately at the end of the Fee Accrual Period. If Customer elects to pay by invoice (and Google agrees), all Fees are due as stated in the invoice. Customer\u2019s obligation to pay all Fees is non-cancellable. Google's measurement of Customer\u2019s use of the Services is final. Google has no obligation to provide multiple bills. Payments made via wire transfer must include the bank information provided by Google. If Customer has entered into the Agreement with GCL, Google may collect payments via Google Payment Limited, a company incorporated in England and Wales with offices at Belgrave House, 76 Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\n2.3 Taxes.\n\n2.3.1 Customer is responsible for any Taxes, and Customer will pay Google for the Services without any reduction for Taxes. If Google is obligated to collect or pay Taxes, the Taxes will be invoiced to Customer, unless Customer provides Google with a timely and valid tax exemption certificate authorized by the appropriate taxing authority. In some states the sales tax is due on the total purchase price at the time of sale and must be invoiced and collected at the time of the sale. If Customer is required by law to withhold any Taxes from its payments to Google, Customer must provide Google with an official tax receipt or other appropriate documentation to support such withholding. If under the applicable tax legislation the Services are subject to local VAT and the Customer is required to make a withholding of local VAT from amounts payable to Google, the value of Services calculated in accordance with the above procedure will be increased (grossed up) by the Customer for the respective amount of local VAT and the grossed up amount will be regarded as a VAT inclusive price. Local VAT amount withheld from the VAT-inclusive price will be remitted to the applicable local tax entity by the Customer and Customer will ensure that Google will receives payment for its services for the net amount as would otherwise be due (the VAT inclusive price less the local VAT withheld and remitted to applicable tax authority).\n\n2.3.2 If required under applicable law, Customer will provide Google with applicable tax identification information that Google may require to ensure its compliance with applicable tax regulations and authorities in applicable jurisdictions. Customer will be liable to pay (or reimburse Google for) any taxes, interest, penalties or fines arising out of any mis-declaration by the Customer.\n\n2.4 Invoice Disputes & Refunds. Any invoice disputes must be submitted before the payment due date. If the parties determine that certain billing inaccuracies are attributable to Google, Google will not issue a corrected invoice, but will instead issue a credit memo specifying the incorrect amount in the affected invoice. If the disputed invoice has not yet been paid, Google will apply the credit memo amount to the disputed invoice and Customer will be responsible for paying the resulting net balance due on that invoice. To the fullest extent permitted by law, Customer waives all claims relating to Fees unless claimed within 60 days after charged (this does not affect any Customer rights with its credit card issuer). Refunds (if any) are at the discretion of Google and will only be in the form of credit for the Services. Nothing in this Agreement obligates Google to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. Late payments may bear interest at the rate of 1.5% per month (or the highest rate permitted by law, if less) from the payment due date until paid in full. Customer will be responsible for all reasonable expenses (including attorneys\u2019 fees) incurred by Google in collecting such delinquent amounts. If Customer is late on payment for the Services, Google may suspend the Services or terminate the Agreement for breach under Section 11.2 (Termination for Breach).\n\n2.6 No Purchase Order Number Required. Google is not required to provide a purchase order number on Google\u2019s invoice (or otherwise).\n3. License.\n\n3.1 License Grant. Subject to this Agreement's terms, during the Term, Google grants to Customer a non-exclusive, non-transferable, non-sublicensable, license to use the Services in Customer Application(s), which may be: (a) fee-based or non-fee-based; (b) public/external or private/internal; (c) business-to-business or business-to-consumer; or (d) asset tracking.\n\n3.2 License Requirements and Restrictions. The following are conditions of the license granted in Section 3.1. In this Section 3.2, the phrase \u201cCustomer will not\u201d means \u201cCustomer will not, and will not permit a third party to\u201d.\n\n3.2.2 General Restrictions. Unless Google specifically agrees in writing, Customer will not: (a) copy, modify, create a derivative work of, reverse engineer, decompile, translate, disassemble, or otherwise attempt to extract any or all of the source code (except to the extent such restriction is expressly prohibited by applicable law); (b) sublicense, transfer, or distribute any of the Services; (c) sell, resell, or otherwise make the Services available as a commercial offering to a third party; or (d) access or use the Services: (i) for High Risk Activities; (ii) in a manner intended to avoid incurring Fees; (iii) for activities that are subject to the International Traffic in Arms Regulations (ITAR) maintained by the United States Department of State; (iv) on behalf of or for the benefit of any entity or person who is legally prohibited from using the Services; or (v) to transmit, store, or process Protected Health Information (as defined in and subject to HIPAA).\n\n3.2.3 Requirements for Using the Services.\n\n(a) End User Terms and Privacy Policy. Customer\u2019s End User terms of service will state that End Users\u2019 use of Google Maps is subject to the then-current Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html and Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n(b) Attribution. Customer will display all attribution that (i) Google provides through the Services (including branding, logos, and copyright and trademark notices); or (ii) is specified in the Maps Service Specific Terms. Customer will not modify, obscure, or delete such attribution.\n\n(c) Review of Customer Applications. At Google\u2019s request, Customer will submit Customer Application(s) and Project(s) to Google for review to ensure compliance with the Agreement (including the AUP).\n\n3.2.4 Restrictions Against Misusing the Services.\n\n(a) No Scraping. Customer will not extract, export, or scrape Google Maps Content for use outside the Services. For example, Customer will not:(i) pre-fetch, cache, index, or store Google Maps Content for more than 30 days; (ii) bulk download geocodes; or (iii) copy business names, addresses, or user reviews.\n\n(b) No Creating Content From Google Maps Content. Customer will not create content based on Google Maps Content, including tracing, digitizing, or creating other datasets based on Google Maps Content.\n\n(c) No Re-Creating Google Products or Features. Customer will not use the Services to create a product or service with features that are substantially similar to or that re-create the features of another Google product or service. Customer\u2019s product or service must contain substantial, independent value and features beyond the Google products or services. For example, Customer will not: (i) re-distribute the Google Maps Core Services or pass them off as if they were Customer\u2019s services; (ii) create a substitute of the Google Maps Core Services, Google Maps, or Google Maps mobile apps, or their features; (iii) use the Google Maps Core Services in a listings or directory service or to create or augment an advertising product; (iv) combine data from the Directions API, Geolocation API, and Maps SDK for Android to create real-time navigation functionality substantially similar to the functionality provided by the Google Maps for Android mobile app.\n\n(d) No Use With Non-Google Maps. Customer will not use the Google Maps Core Services in a Customer Application that contains a non-Google map. For example, Customer will not (i) display Places listings on a non-Google map, or (ii) display Street View imagery and non-Google maps in the same Customer Application.\n\n(e) No Circumventing Fees. Customer will not circumvent the applicable Fees. For example, Customer will not create multiple billing accounts or Projects to avoid incurring Fees; prevent Google from accurately calculating Customer\u2019s Service usage levels; abuse any free Service quotas; or offer access to the Services under a \u201ctime-sharing\u201d or \u201cservice bureau\u201d model.\n\n(f) No Use in Prohibited Territories. Customer will not distribute or market in a Prohibited Territory any Customer Application(s) that use the Google Maps Core Services.\n\n(g) No Use in Embedded Vehicle Systems. Customer will not use the Google Maps Core Services in connection with any Customer Application or device embedded in a vehicle. For example, Customer will not create a Customer Application that (i) is embedded in an in-dashboard automotive infotainment system; and (ii) allows End Users to request driving directions from the Directions API.\n\n(h) No Modifying Search Results Integrity. Customer will not modify any of the Service\u2019s search results.\n\n(i) No Use for High Risk Activities. Customer will not use the Google Maps Core Services for High Risk Activities.\n\n3.2.5 Benchmarking. Customer may not publicly disclose directly or through a third party the results of any comparative or compatibility testing, benchmarking, or evaluation of the Services (each, a \u201cTest\u201d), unless the disclosure includes all information necessary for Google or a third party to replicate the Test. If Customer conducts, or directs a third party to conduct, a Test of the Services and publicly discloses the results directly or through a third party, then Google (or a Google directed third party) may conduct Tests of any publicly available cloud products or services provided by Customer and publicly disclose the results of any such Test (which disclosure will include all information necessary for Customer or a third party to replicate the Test).\n4. Customer Obligations. \n\n4.1 Customer Domains and Applications. Customer must list in the Admin Console each authorized domain and application that uses the Services. Customer is responsible for ensuring that only authorized domains and applications use the Services.\n\n4.2 Compliance. Customer will: (a) ensure that Customer\u2019s and its End Users\u2019 use of the Services complies with the Agreement, including the applicable Services\u2019 AUP and URL Terms; and (b) use commercially reasonable efforts to prevent, promptly notify Google of, and terminate any unauthorized use of or access to its Account(s) or the Services.\n\n4.3 Documentation. Google may provide Documentation for Customer\u2019s use of the Services. The Documentation may specify restrictions (e.g. attribution or HTML restrictions) on how the Services may be used and Customer will comply with any such restrictions specified.\n\n4.4 Copyright Policy. Google provides information to help copyright holders manage their intellectual property online, but Google cannot determine whether something is being used legally or not without their input. Google responds to notices of alleged copyright infringement and terminates accounts of repeat infringers according to applicable copyright laws including in particular the process set out in the U.S. Digital Millennium Copyright Act. If Customer thinks somebody is violating Customer\u2019s or Customer End Users\u2019 copyrights and wants to notify Google, Customer can find information about submitting notices, and Google's policy about responding to notices at https://www.google.com/dmca.html.\n\n4.5 Data Use, Protection, and Privacy.\n\n4.5.1 Data Use and Retention. To provide the Services through the Customer Application(s), Google must receive and collect data from End Users and Customer, including search terms, IP addresses, and latitude/longitude coordinates. Customer acknowledges and agrees that Google and its Affiliates may use and retain this data to provide and improve Google products and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n4.5.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\n4.5.3 General Privacy Requirements.\n\n(a) End User Privacy. Customer\u2019s use of the Services in the Customer Application will comply with applicable privacy laws, including laws regarding Services that store and access Cookies on End Users\u2019 devices. If Customer has End Users in the European Economic Area, Customer will comply with the EU End User Consent Policy at https://www.google.com/about/company/user-consent-policy.html.\n\n(b) End User Personal Data. Through the normal functioning of the Google Maps Core Services, End Users provide device identifiers and Personal Data directly to Google, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/. However, Customer acknowledges and agrees that Customer will not provide these categories of data to Google.\n\n(c) End User Location Privacy Requirements. To safeguard End Users\u2019 location privacy, Customer will ensure that the Customer Application(s): (i) notify End Users in advance of (y) the type(s) of data that Customer intends to collect from the End Users or the End Users\u2019 devices, and (z) the combination and use of End User's location with any other data provider's data; and (ii) will not obtain or cache any End User's location except with the End User's express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions Violations. Google may Suspend the Services without prior notice if Customer breaches Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Violations or Emergency Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP Violations) and 5.2.2 (Emergency Security Issues). Any Suspension under those Sections will be to the minimum extent and for the shortest duration required to: (a) prevent or terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c) comply with applicable law.\n\n5.2.1 AUP Violations. If Google becomes aware that Customer\u2019s or any End User\u2019s use of the Services violates the AUP, Google will give Customer notice of such violation by requesting that Customer correct the violation. If Customer fails to correct such violation within 24 hours, or if Google is otherwise required by applicable law to take action, then Google may Suspend all or part of Customer\u2019s use of the Services.\n\n5.2.2 Emergency Security Issues. Google may immediately Suspend Customer\u2019s use of the Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend such use immediately to comply with applicable law. At Customer\u2019s request, unless prohibited by applicable law, Google will notify Customer of the basis for the Suspension as soon as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights Infringement. If the Customer Application is alleged to infringe a third party\u2019s Intellectual Property Rights, Google may require Customer to suspend distributing or selling the Customer Application on 30 days\u2019 written notice until such allegation is fully resolved. In any event, this Section 5.3 does not reduce Customer\u2019s obligations under Section 15 (Indemnification).\n6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as expressly stated in this Agreement, this Agreement does not grant either party any rights, implied or otherwise, to the other\u2019s content or any of the other\u2019s intellectual property. As between the parties, Customer owns all Intellectual Property Rights in the Customer Application, and Google owns all Intellectual Property Rights in the Services and Software.\n\n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google may use that information without obligation to Customer, and Customer irrevocably assigns to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices and License Terms.\n\nCertain components of the Services (including open source software) are subject to third-party copyright and other Intellectual Property Rights, as specified in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and (b) separate, publicly-available third-party license terms, which Google will provide to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will provide Maps Technical Support Services to Customer in accordance with the Maps Technical Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n9.1 Google will notify Customer at least 12 months before making material discontinuance(s) or backwards incompatible change(s) to the Services, unless Google reasonably determines that: (a) Google cannot do so by law or by contract (including if there is a change in applicable law or contract) or (b) continuing to provide the Services could create a (i) security risk or (ii) substantial economic or technical burden.\n\n9.2 Section 9.1 applies to the Services listed at https://cloud.google.com/maps-platform/terms/maps-deprecation/. If Google deprecates any Services that are not listed at the above URL, Google will use commercially reasonable efforts to minimize the adverse impacts of such deprecations.\n10. Confidential Information.\n\n10.1 Obligations. The recipient will not disclose the Confidential Information, except to Affiliates, employees, agents or professional advisors who need to know it and who have agreed in writing (or in the case of professional advisors are otherwise bound) to keep it confidential. Subject to Section 10.2 (Required Disclosure), the recipient will ensure that those people and entities use the received Confidential Information only to exercise rights and fulfill obligations under this Agreement, while using reasonable care to keep it confidential.\n\n10.2 Required Disclosure. The recipient may disclose the other party\u2019s Confidential Information to the extent required by applicable Legal Process; provided that the recipient uses commercially reasonable efforts to: (a) promptly notify the other party of such disclosure before disclosing; and (b) comply with the other party\u2019s reasonable requests regarding its efforts to oppose the disclosure. Notwithstanding the foregoing, subsections (a) and (b) above will not apply if the recipient determines that complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii) obstruct a governmental investigation; and/or (iii) lead to death or serious physical harm to an individual. As between the parties, Customer is responsible for responding to all third party requests concerning its use and Customer End Users\u2019 use of the Services.\n11. Term and Termination.\n\n11.1 Agreement Term. The \u201cTerm\u201d of this Agreement will begin on the Effective Date and continue until the Agreement is terminated under this Section.\n\n11.2 Termination for Breach. Either party may terminate this Agreement for breach if: (a) the other party is in material breach of the Agreement and fails to cure that breach within 30 days after receipt of written notice; or (b) the other party ceases its business operations or becomes subject to insolvency proceedings and the proceedings are not dismissed within 90 days. In addition, Google may terminate any, all, or any portion of the Services or Projects, if Customer meets any of the conditions in subsections (a) or (b).\n\n11.3 Termination for Inactivity. Google reserves the right to terminate provision of Service(s) to a Project on 30 days advance notice if, for more than 180 days, such Project (a) has not made any requests to the Services from any Customer Applications; or (b) such Project has not incurred any Fees for such Service(s).\n\n11.4 Termination for Convenience. Customer may stop using the Services at any time. Subject to any financial commitments expressly made by this Agreement, Customer may terminate this Agreement for its convenience at any time on prior written notice and upon termination, must cease use of the applicable Services. Google may terminate this Agreement for its convenience at any time without liability to Customer.\n\n11.5 Effects of Termination. \n\n11.5.1 If the Agreement is terminated, then: (a) the rights granted by one party to the other will immediately cease; (b) all Fees owed by Customer to Google are immediately due upon receipt of the final electronic bill; and (c) Customer will delete the Software and any content from the Services by the termination effective date.\n\n11.5.2 The following will survive expiration or termination of the Agreement: Section 2 (Payment Terms), Section 3.2 (License Requirements and Restrictions), Section 4.5 (Data Use, Protection, and Privacy), Section 6 (Intellectual Property; Feedback), Section 10 (Confidential Information), Section 11.5 (Effects of Termination), Section 14 (Disclaimer), Section 15 (Indemnification), Section 16 (Limitation of Liability), Section 19 (Miscellaneous), and Section 20 (Definitions).\n12. Publicity.\n\nCustomer may state publicly that it is a customer of the Services, consistent with the Trademark Guidelines. If Customer wants to display Google Brand Features in connection with its use of the Services, Customer must obtain written permission from Google through the process specified in the Trademark Guidelines. Google may include Customer\u2019s name or Brand Features in a list of Google customers, online or in promotional materials. Google may also verbally reference Customer as a customer of the Services. Neither party needs approval if it is repeating a public statement that is substantially similar to a previously-approved public statement. Any use of a party\u2019s Brand Features will inure to the benefit of the party holding Intellectual Property Rights to those Brand Features. A party may revoke the other party\u2019s right to use its Brand Features under this Section with written notice to the other party and a reasonable period to stop the use. Where applicable, Customer may use Google Maps Content in accordance with the \u201cUsing Google Maps, Google Earth and Street View\u201d permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy, which will be considered \u201cGoogle\u2019s prior written consent\u201d for the permitted uses.\n13. Representations and Warranties.\n\nEach party represents and warrants that: (a) it has full power and authority to enter into the Agreement; and (b) it will comply with Export Control Laws and Anti-Bribery Laws applicable to its provision, receipt, or use, of the Services, as applicable.\n14. Disclaimer.\n\n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED USE OF THE SERVICES OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION ACCESSIBLE THROUGH THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES EXPRESSLY STATED IN THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES ARE PROVIDED FOR PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES MAY DIFFER FROM ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION. CUSTOMER MUST EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT THE CUSTOMER APPLICATION IS SAFE FOR END USERS AND OTHER THIRD PARTIES.\n15. Indemnification.\n\n15.1 By Customer. Unless prohibited by applicable law, Customer will defend Google and its Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer\u2019s or an End User\u2019s use of the Services in violation of the Agreement.\n\n15.2 By Google. Google will defend Customer and its Affiliates participating under the Agreement (\u201cCustomer Indemnified Parties\u201d), and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from an allegation that Customer Indemnified Parties' use in accordance with the Agreement of Google Indemnified Materials infringes the third party's Intellectual Property Rights.\n\n15.3 Exclusions. This Section 15 will not apply to the extent the underlying allegation arises from (a) the indemnified party\u2019s breach of the Agreement or (b) a combination of the indemnifying party\u2019s technology or Brand Features with materials not provided by the indemnifying party, unless the combination is required by the Agreement.\n\n15.4 Conditions. Sections 15.1 and 15.2 will apply only to the extent:\n\n(a) The indemnified party has promptly notified the indemnifying party in writing of any Allegation(s) that preceded the Third-Party Legal Proceeding and cooperates reasonably with the indemnifying party to resolve the Allegation(s) and Third-Party Legal Proceeding. If breach of this Section 15.4(a) prejudices the defense of the Third-Party Legal Proceeding, the indemnifying party\u2019s obligations under Section 15.1 or 15.2 (as applicable) will be reduced in proportion to the prejudice.\n\n(b) The indemnified party tenders sole control of the indemnified portion of the Third-Party Legal Proceeding to the indemnifying party, subject to the following: (i) the indemnified party may appoint its own non-controlling counsel, at its own expense; and (ii) any settlement requiring the indemnified party to admit liability, pay money, or take (or refrain from taking) any action, will require the indemnified party\u2019s prior written consent, not to be unreasonably withheld, conditioned, or delayed.\n\n15.5 Remedies.\n\n(a) If Google reasonably believes the Services might infringe a third party\u2019s Intellectual Property Rights, then Google may, at its sole option and expense: (i) procure the right for Customer to continue using the Services; (ii) modify the Services to make them non-infringing without materially reducing their functionality; or (iii) replace the Services with a non-infringing, functionally equivalent alternative.\n\n(b) If Google does not believe the remedies in Section 15.5(a) are commercially reasonable, then Google may suspend or terminate Customer\u2019s use of the impacted Services.\n\n15.6 Sole Rights and Obligations. Without affecting either party\u2019s termination rights, this Section 15 states the parties\u2019 sole and exclusive remedy under this Agreement for any third party's Intellectual Property Rights Allegations and Third-Party Legal Proceedings covered by this Section 15 (Indemnification).\n16. Limitation of Liability.\n\n16.1 Limitation on Indirect Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PARTIES AND GOOGLE\u2019S LICENSORS, WILL NOT BE LIABLE UNDER THIS AGREEMENT FOR LOST REVENUES OR PROFITS (WHETHER DIRECT OR INDIRECT), INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE PARTY OR LICENSOR, AS APPLICABLE, KNEW OR SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY A REMEDY.\n\n16.2 Limitation on Amount of Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PARTIES AND GOOGLE\u2019S LICENSORS, MAY NOT BE HELD LIABLE UNDER THIS AGREEMENT FOR MORE THAN THE AMOUNT PAID BY CUSTOMER TO GOOGLE UNDER THIS AGREEMENT DURING THE TWELVE MONTHS BEFORE THE EVENT GIVING RISE TO LIABILITY.\n\n16.3 Exceptions to Limitations. These limitations of liability do not apply to breaches of confidentiality obligations, violations of a party\u2019s Intellectual Property Rights by the other party, or Customer's payment obligations.\n17. Advertising.\n\nIn its sole discretion, Customer may configure the Service to either display or not display advertisements served by Google.\n18. U.S. Federal Agency Users.\n\nThe Services were developed solely at private expense and are commercial computer software and related documentation within the meaning of the applicable Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\n19.1 Notices. All notices must be in writing and addressed to the other party\u2019s legal department and primary point of contact. The email address for notices being sent to Google\u2019s Legal Department is legal-notices@google.com. Notice will be treated as given on receipt as verified by written or automated receipt or by electronic log (as applicable).\n\n19.2 Assignment. Neither party may assign any part of this Agreement without the written consent of the other, except to an Affiliate where: (a) the assignee has agreed in writing to be bound by the terms of this Agreement; (b) the assigning party remains liable for obligations under the Agreement if the assignee defaults on them; and (c) the assigning party has notified the other party of the assignment. Any other attempt to assign is void.\n\n19.3 Change of Control. If a party experiences a change of Control (for example, through a stock purchase or sale, merger, or other form of corporate transaction): (a) that party will give written notice to the other party within 30 days after the change of Control; and (b) the other party may immediately terminate this Agreement any time between the change of Control and 30 days after it receives that written notice.\n\n19.4 Force Majeure. Neither party will be liable for failure or delay in performance to the extent caused by circumstances beyond its reasonable control, including acts of God, natural disasters, terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations under the Agreement but will remain liable to Customer for any subcontracted obligations.\n\n19.6 No Agency. This Agreement does not create any agency, partnership or joint venture between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived any rights by not exercising (or delaying the exercise of) any rights under this Agreement.\n\n19.8 Severability. If any term (or part of a term) of this Agreement is invalid, illegal, or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party Beneficiaries. This Agreement does not confer any benefits on any third party unless it expressly states that it does.\n\n19.10 Equitable Relief. Nothing in this Agreement will limit either party\u2019s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n19.11.1 For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county or state government entity, then the Agreement will be silent regarding governing law and venue.\n\n19.11.2 For U.S. Federal Government Entities. If Customer is a U.S. federal government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA, EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I) THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA\u2019S CONFLICT OF LAWS RULES) WILL APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n19.11.3 For All Other Entities. If Customer is any entity not listed in Section 19.11.1 or 19.11.2 then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE\u2019S CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\n19.12 Amendments. Except as stated in Section 1.5.2 (Modifications; To the Agreement), any amendment must be in writing, signed by both parties, and expressly state that it is amending this Agreement.\n\n19.13 Entire Agreement. This Agreement sets out all terms agreed between the parties and supersedes all other agreements between the parties relating to its subject matter. In entering into this Agreement, neither party has relied on, and neither party will have any right or remedy based on, any statement, representation or warranty (whether made negligently or innocently), except those expressly stated in this Agreement. The terms located at any URL referenced in this Agreement and the Documentation are incorporated by reference into the Agreement. After the Effective Date, Google may provide an updated URL in place of any URL in this Agreement.\n\n19.14 Conflicting Terms. If there is a conflict between the documents that make up this Agreement, the documents will control in the following order: the Agreement, and the terms at any URL. \n\n19.15 Conflicting Translations. If this Agreement is translated into any other language, and there is a discrepancy between the English text and the translated text, the English text will govern.\n20. Reseller Orders.\n\nThis Section applies if Customer orders the Services from a Reseller under a Reseller Agreement (including the Reseller Order Form).\n\n20.1 Orders. If Customer orders Services from Reseller, then: (a) fees for the Services will be set between Customer and Reseller, and any payments will be made directly to Reseller under the Reseller Agreement; (b) Section 2 of this Agreement (Payment Terms) will not apply to the Services; (c) any SLA obligation to Customer is subject to the terms of the Reseller Agreement; and (d) Google will have no obligation to provide any SLA credits to a Customer who orders Services from the Reseller.\n\n20.2 Conflicting Terms. If Customer orders Google Maps Core Services from a Reseller and if any documents conflict, then the documents will control in the following order: the Agreement, the terms at any URL (including the URL Terms), Reseller Order Form. For example, if there is a conflict between the Maps Service Specific Terms and the Reseller Order Form, the Maps Service Specific Terms will control.\n\n20.3 Reseller as Administrator. At Customer's discretion, Reseller may access Customer's Projects, Accounts, or the Services on behalf of Customer. As between Google and Customer, Customer is solely responsible for: (a) any access by Reseller to Customer\u2019s Account(s), Project(s), or the Services; and (b) defining in the Reseller Agreement any rights or obligations as between Reseller and Customer with respect to the Accounts, Projects, or Services.\n\n20.4 Reseller Verification of Customer Application(s). Before providing the Services, Reseller may also verify that Customer owns or controls the Customer Applications. If Reseller determines that Customer does not own or control the Customer Applications, then Google will have no obligation to provide the Services to Customer.\n21. Definitions.\n\n\"Account\" means Customer\u2019s Google Account.\n\n\"Admin Console\" means the online console(s) and/or tool(s) provided by Google to Customer for administering the Services.\n\n\"Affiliate\" means any entity that directly or indirectly Controls, is Controlled by, or is under common Control with a party.\n\n\"Allegation\" means an unaffiliated third party\u2019s allegation.\n\n\u201cAnti-Bribery Laws\u201d means all applicable commercial and public anti-bribery laws, (for example, the U.S. Foreign Corrupt Practices Act of 1977 and the UK Bribery Act 2010), which prohibit corrupt offers of anything of value, either directly or indirectly, to anyone, including government officials, to obtain or keep business or to secure any other improper commercial advantage. \u201cGovernment officials\u201d include any government employee; candidate for public office; and employee of government-owned or government-controlled companies, public international organizations, and political parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the then-current Acceptable Use Policy for the Services at: https://cloud.google.com/maps-platform/terms/aup/.\n\n\"Brand Features\" means the trade names, tradmarks, service marks, logos, domain names, and other distinctive brand features of each party, respectively, as secured by such party.\n\n\"Committed Purchase(s)\" has the meaning provided in the Maps Service Specific Terms.\n\n\"Confidential Information\" means information that one party (or an Affiliate) discloses to the other party under this Agreement, and which is marked as confidential or would normally under the circumstances be considered confidential information. It does not include information that is independently developed by the recipient, is rightfully given to the recipient by a third party without confidentiality obligations, or becomes public through no fault of the recipient.\n\n\"Control\" means control of greater than 50% of the voting rights or equity interests of a party.\n\n\"Customer Application\" means any web domain or application (including all source code and features) owned or controlled by Customer, or that Customer is authorized to use.\n\n\"Customer End User\" or \"End User\" means an individual or entity that Customer permits to use the Services or Customer Application(s).\n\n\u201cCustomer Indemnified Materials\u201d means the Customer Application and Customer Brand Features.\n\n\"Documentation\" means the Google documentation (as may be updated) in the form generally made available by Google for use with the Services at https://developers.google.com/maps/documentation.\n\n\"Emergency Security Issue\" means either: (a) Customer\u2019s or Customer End Users\u2019 use of the Services in violation of the AUP, which could disrupt: (i) the Services; (ii) other customers\u2019 or their customer end users\u2019 use of the Services; or (iii) the Google network or servers used to provide the Services; or (b) unauthorized third party access to the Services.\n\n\"Europe\" or \"European\" means European Economic Area or Switzerland.\n\n\u201cExport Control Laws\u201d means all applicable export and re-export control laws and regulations, including any applicable munitions- or defense-related regulations (for example, the International Traffic in Arms Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual Period\" means a calendar month or another period specified by Google in the Admin Console.\n\n\"Fee Threshold\" means the threshold (as may be updated), as applicable for certain Services, as set out in the Admin Console.\n\n\u201cFeedback\u201d means feedback or suggestions about the Services provided by Customer to Google.\n\n\"Fees\" means the product of the amount of Services used or ordered by Customer multiplied by the Prices, plus any applicable Taxes.\n\n\"Google Indemnified Materials\" means Google's technology used to provide the Services (excluding any open source software) and Google's Brand Features.\n\n\"Google Maps Content\" means any content provided through the Services (whether created by Google or its third-party licensors), including map and terrain data, imagery, traffic data, and places data (including business listings).\n\n\"High Risk Activities\" means activities where the use or failure of the Services could lead to death, personal injury, or environmental damage, including (a) emergency response services; (b) autonomous and semi-autonomous vehicle or drone control; (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation.\n\n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs finally awarded against the indemnified party and its Affiliates by a court of competent jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual Property Rights\" means current and future worldwide rights under patent, copyright, trade secret, trademark, and moral rights laws, and other similar rights.\n\n\"Legal Process\" means a data disclosure request made under law, governmental regulation, court order, subpoena, warrant, governmental regulatory or agency request, or other valid legal authority, legal procedure, or similar process.\n\n\"Maps Service Specific Terms\" means the then-current terms specific to one or more Services at https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\n\"Maps Technical Support Services\" means the technical support service provided by Google to Customer under the then-current Maps Technical Support Services Guidelines.\n\n\"Maps Technical Support Services Guidelines\" means the then-current technical support service guidelines at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Package Purchase\" has the meaning set out in the Maps Service Specific Terms.\n\n\"Personal Data\" has the meaning provided in the General Data Protection Regulation (EU) 2016/679 of the European Parliament and of the Council of April 27, 2016.\n\n\"Price\" means the then-current applicable price(s) stated at https://cloud.google.com/maps-platform/pricing/sheet/.\n\n\"Prohibited Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources for a particular Customer Application.\n\n\"Reseller\" means, if applicable, the authorized reseller that sells or supplies the Services to Customer.\n\n\"Reseller Agreement\" means, if applicable, a separate, independent agreement between Customer and Reseller regarding the Services.\n\n\"Reseller Order Form\" means an order form entered into by Reseller and Customer, subject to the Reseller Agreement.\n\n\"Services\" and \"Google Maps Core Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/. The Services include the Google Maps Content and the Software.\n\n\"SLA\" or \"Service Level Agreement\" means each of the then-current service level agreements at: https://cloud.google.com/maps-platform/terms/sla/.\n\n\"Software\" means any downloadable tools, software development kits, or other computer software provided by Google for use as part of the Services, including updates.\n\n\"Taxes\" means any duties, customs fees, or taxes (other than Google\u2019s income tax) associated with the purchase of the Services, including any related penalties or interest.\n\n\"Term\" has the meaning stated in Section 1.6 of this Agreement.\n\n\u201cTerms URL\u201d means the following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated third party before a court or government tribunal (including any appellate proceeding).\n\n\"Trademark Guidelines\" means (a) Google\u2019s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html; and (b) the \u201cUse of Trademarks\u201d section of the \u201cUsing Google Maps, Google Earth and Street View\u201d permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark policy.\n\n\u201cURL Terms\u201d means the following, which will control in the following order if there is a conflict:\n\n(a) the Maps Service Specific Terms;\n\n(b) the SLA;\n\n(c) the AUP;\n\n(d) the Maps Technical Support Services Guidelines;\n\n(e) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and\n\n(f) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html.", + "json": "google-maps-tos-2018-07-09.json", + "yaml": "google-maps-tos-2018-07-09.yml", + "html": "google-maps-tos-2018-07-09.html", + "license": "google-maps-tos-2018-07-09.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-07-19", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-07-19", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Maps Platform Terms of Service\n\nLast modified: July 19, 2018\n\nIf you have entered into an offline variant of this Agreement, the terms below do not apply, and your offline agreement governs your use of the Google Maps Core Services.\n\nGoogle Maps Platform License Agreement\n\nThis Google Maps Platform License Agreement (the \"Agreement\") is made and entered into between Google and the entity or person agreeing to these terms (\"Customer\"). \"Google\" means either (i) Google Commerce Limited (\u201cGCL\u201d), a company incorporated under the laws of Ireland, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer has a billing address in the EU and has chosen \u201cnon-business\u201d as the tax status/setting for its Google account, (ii) Google Ireland Limited, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer's billing address is in any country within Europe, the Middle East, or Africa (\"EMEA\"), (iii) Google Asia Pacific Pte. Ltd., with offices at 70 Pasir Panjang Road, #03-71, Mapletree Business City II Singapore 117371, if Customer's billing address is in any country within the Asia Pacific region (\"APAC\") except as provided below for Customers with the billing address in Japan or Australia, (iv) Google Cloud Japan G.K., with offices at Roppongi Hills Mori Tower, 10-1, Roppongi 6-chome, Minato-ku Tokyo, if Customer\u2019s billing address is in Japan, (v) Google Australia Pty Ltd., with offices at Level 5, 48 Pirrama Road, Pyrmont, NSW 2009 Australia, if Customer\u2019s billing address is in Australia, or (vi) Google LLC, with offices at 1600 Amphitheatre Parkway, Mountain View, California 94043, if Customer's billing address is in any country in the world other than those in EMEA and APAC.\n\nThis Agreement is effective as of the date Customer clicks to accept the Agreement, or enters into a Reseller Agreement if purchasing through a Reseller (the \"Effective Date\"). If you are accepting on behalf of Customer, you represent and warrant that: (i) you have full legal authority to bind Customer to this Agreement; (ii) you have read and understand this Agreement; and (iii) you agree, on behalf of Customer, to this Agreement. If you do not have the legal authority to bind Customer, please do not click to accept. This Agreement governs Customer's access to and use of the Services.\n\nFor an offline variant of this Agreement, you may contact Google for more information.\n1. Provision of the Services.\n\n1.1 Use of the Services in Customer Applications. Google will provide the Services to Customer in accordance with the applicable SLA, and Customer may use the Google Maps Core Services in Customer Application(s) in accordance with Section 3 (License).\n\n1.2 Admin Console; Projects; API Keys. Customer will administer the Services through the online Admin Console. To access the Services, Customer must create Project(s) and use its API key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer must have an Account to access the Admin Console through which Customer may administer its use of the Services. Customer is responsible for: (a) the information it provides in connection with the Account; (b) maintaining the confidentiality and security of the Account and associated passwords; and (c) any use of its Account.\n\n1.4 Customer Domains and Applications. Customer must list in the Admin Console each authorized domain and application that uses the Services. Customer is responsible for ensuring that only authorized domains and applications use the Services.\n\n1.5 New Features and Services. Google may: (a) make new features or functionality available through the Services and (b) add new services to the \"Services\" definition (by adding them at the URL stated under that definition). Customer\u2019s use of new features or functionality may be contingent on Customer\u2019s agreement to additional terms applicable to the new feature or functionality.\n\n1.6 Modifications.\n\n1.6.1 To the Services. Google may make changes to the Services, subject to Section 9 (Deprecation Policy), which may include adding, updating, or discontinuing any Services or portion or feature(s) of the Services. Google will notify Customer of any material change to the Services.\n\n1.6.2. To the Agreement. Google may make changes to this Agreement, including pricing (and any linked documents). Unless otherwise noted by Google, material changes to the Agreement will become effective 30 days after notice is given, except if the changes apply to new functionality in which case they will be effective immediately. Google will provide at least 90 days advance notice for materially adverse changes to any SLAs by: (a) sending an email to Customer\u2019s primary point of contact; (b) posting a notice in the Admin Console; or (c) posting a notice to the applicable SLA webpage. If Customer does not agree to the revised Agreement, Customer should stop using the Services. Google will post any modification to this Agreement to the Terms URL.\n2. Payment Terms.\n\n2.1 Free Quota. Certain Services are provided to Customer without charge up to the Fee Threshold, as applicable.\n\n2.2 Online Billing. At the end of the applicable Fee Accrual Period, Google will issue an electronic bill to Customer for all charges accrued above the Fee Threshold based on (a) Customer\u2019s use of the Services during the previous Fee Accrual Period; (b) any Committed Purchases selected; and (c) any Package Purchases selected. For use above the Fee Threshold, Customer will be responsible for all Fees up to the amount set in the Account and will pay all Fees in the currency set forth in the invoice. If Customer elects to pay by credit card, debit card, or other non-invoiced form of payment, Google will charge (and Customer will pay) all Fees immediately at the end of the Fee Accrual Period. If Customer elects to pay by invoice (and Google agrees), all Fees are due as stated in the invoice. Customer\u2019s obligation to pay all Fees is non-cancellable. Google's measurement of Customer\u2019s use of the Services is final. Google has no obligation to provide multiple bills. Payments made via wire transfer must include the bank information provided by Google. If Customer has entered into the Agreement with GCL, Google may collect payments via Google Payment Limited, a company incorporated in England and Wales with offices at Belgrave House, 76 Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\n2.3 Taxes.\n\n2.3.1 Customer is responsible for any Taxes, and Customer will pay Google for the Services without any reduction for Taxes. If Google is obligated to collect or pay Taxes, the Taxes will be invoiced to Customer, unless Customer provides Google with a timely and valid tax exemption certificate authorized by the appropriate taxing authority. In some states the sales tax is due on the total purchase price at the time of sale and must be invoiced and collected at the time of the sale. If Customer is required by law to withhold any Taxes from its payments to Google, Customer must provide Google with an official tax receipt or other appropriate documentation to support such withholding. If under the applicable tax legislation the Services are subject to local VAT and the Customer is required to make a withholding of local VAT from amounts payable to Google, the value of Services calculated in accordance with the above procedure will be increased (grossed up) by the Customer for the respective amount of local VAT and the grossed up amount will be regarded as a VAT inclusive price. Local VAT amount withheld from the VAT-inclusive price will be remitted to the applicable local tax entity by the Customer and Customer will ensure that Google will receives payment for its services for the net amount as would otherwise be due (the VAT inclusive price less the local VAT withheld and remitted to applicable tax authority).\n\n2.3.2 If required under applicable law, Customer will provide Google with applicable tax identification information that Google may require to ensure its compliance with applicable tax regulations and authorities in applicable jurisdictions. Customer will be liable to pay (or reimburse Google for) any taxes, interest, penalties or fines arising out of any mis-declaration by the Customer.\n\n2.4 Invoice Disputes & Refunds. Any invoice disputes must be submitted before the payment due date. If the parties determine that certain billing inaccuracies are attributable to Google, Google will not issue a corrected invoice, but will instead issue a credit memo specifying the incorrect amount in the affected invoice. If the disputed invoice has not yet been paid, Google will apply the credit memo amount to the disputed invoice and Customer will be responsible for paying the resulting net balance due on that invoice. To the fullest extent permitted by law, Customer waives all claims relating to Fees unless claimed within 60 days after charged (this does not affect any Customer rights with its credit card issuer). Refunds (if any) are at the discretion of Google and will only be in the form of credit for the Services. Nothing in this Agreement obligates Google to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. Late payments may bear interest at the rate of 1.5% per month (or the highest rate permitted by law, if less) from the payment due date until paid in full. Customer will be responsible for all reasonable expenses (including attorneys\u2019 fees) incurred by Google in collecting such delinquent amounts. If Customer is late on payment for the Services, Google may suspend the Services or terminate the Agreement for breach under Section 11.2 (Termination for Breach).\n\n2.6 No Purchase Order Number Required. Google is not required to provide a purchase order number on Google\u2019s invoice (or otherwise).\n3. License.\n\n3.1 License Grant. Subject to this Agreement's terms, during the Term, Google grants to Customer a non-exclusive, non-transferable, non-sublicensable, license to use the Services in Customer Application(s), which may be: (a) fee-based or non-fee-based; (b) public/external or private/internal; (c) business-to-business or business-to-consumer; or (d) asset tracking.\n\n3.2 License Requirements and Restrictions. The following are conditions of the license granted in Section 3.1. In this Section 3.2, the phrase \u201cCustomer will not\u201d means \u201cCustomer will not, and will not permit a third party to\u201d.\n\n3.2.2 General Restrictions. Unless Google specifically agrees in writing, Customer will not: (a) copy, modify, create a derivative work of, reverse engineer, decompile, translate, disassemble, or otherwise attempt to extract any or all of the source code (except to the extent such restriction is expressly prohibited by applicable law); (b) sublicense, transfer, or distribute any of the Services; (c) sell, resell, or otherwise make the Services available as a commercial offering to a third party; or (d) access or use the Services: (i) for High Risk Activities; (ii) in a manner intended to avoid incurring Fees; (iii) for activities that are subject to the International Traffic in Arms Regulations (ITAR) maintained by the United States Department of State; (iv) on behalf of or for the benefit of any entity or person who is legally prohibited from using the Services; or (v) to transmit, store, or process Protected Health Information (as defined in and subject to HIPAA).\n\n3.2.3 Requirements for Using the Services.\n\n(a) End User Terms and Privacy Policy. Customer\u2019s End User terms of service will state that End Users\u2019 use of Google Maps is subject to the then-current Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html and Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n(b) Attribution. Customer will display all attribution that (i) Google provides through the Services (including branding, logos, and copyright and trademark notices); or (ii) is specified in the Maps Service Specific Terms. Customer will not modify, obscure, or delete such attribution.\n\n(c) Review of Customer Applications. At Google\u2019s request, Customer will submit Customer Application(s) and Project(s) to Google for review to ensure compliance with the Agreement (including the AUP).\n\n3.2.4 Restrictions Against Misusing the Services.\n\n(a) No Scraping. Customer will not extract, export, scrape, or cache Google Maps Content for use outside the Services. For example, Customer will not:(i) pre-fetch, index, store, reshare, or rehost Google Maps Content outside the services; (ii) bulk download geocodes; (iii) copy business names, addresses, or user reviews; or (iv) use Google Maps Content with text-to-speech services. Caching is permitted for certain Services as described in the Maps Service Specific Terms.\n\n(b) No Creating Content From Google Maps Content. Customer will not create content based on Google Maps Content, including tracing, digitizing, or creating other datasets based on Google Maps Content.\n\n(c) No Re-Creating Google Products or Features. Customer will not use the Services to create a product or service with features that are substantially similar to or that re-create the features of another Google product or service. Customer\u2019s product or service must contain substantial, independent value and features beyond the Google products or services. For example, Customer will not: (i) re-distribute the Google Maps Core Services or pass them off as if they were Customer\u2019s services; (ii) create a substitute of the Google Maps Core Services, Google Maps, or Google Maps mobile apps, or their features; (iii) use the Google Maps Core Services in a listings or directory service or to create or augment an advertising product; (iv) combine data from the Directions API, Geolocation API, and Maps SDK for Android to create real-time navigation functionality substantially similar to the functionality provided by the Google Maps for Android mobile app.\n\n(d) No Use With Non-Google Maps. Customer will not use the Google Maps Core Services in a Customer Application that contains a non-Google map. For example, Customer will not (i) display Places listings on a non-Google map, or (ii) display Street View imagery and non-Google maps in the same Customer Application.\n\n(e) No Circumventing Fees. Customer will not circumvent the applicable Fees. For example, Customer will not create multiple billing accounts or Projects to avoid incurring Fees; prevent Google from accurately calculating Customer\u2019s Service usage levels; abuse any free Service quotas; or offer access to the Services under a \u201ctime-sharing\u201d or \u201cservice bureau\u201d model.\n\n(f) No Use in Prohibited Territories. Customer will not distribute or market in a Prohibited Territory any Customer Application(s) that use the Google Maps Core Services.\n\n(g) No Use in Embedded Vehicle Systems. Customer will not use the Google Maps Core Services in connection with any Customer Application or device embedded in a vehicle. For example, Customer will not create a Customer Application that (i) is embedded in an in-dashboard automotive infotainment system; and (ii) allows End Users to request driving directions from the Directions API.\n\n(h) No Modifying Search Results Integrity. Customer will not modify any of the Service\u2019s search results.\n\n(i) No Use for High Risk Activities. Customer will not use the Google Maps Core Services for High Risk Activities.\n\n3.2.5 Benchmarking. Customer may not publicly disclose directly or through a third party the results of any comparative or compatibility testing, benchmarking, or evaluation of the Services (each, a \u201cTest\u201d), unless the disclosure includes all information necessary for Google or a third party to replicate the Test. If Customer conducts, or directs a third party to conduct, a Test of the Services and publicly discloses the results directly or through a third party, then Google (or a Google directed third party) may conduct Tests of any publicly available cloud products or services provided by Customer and publicly disclose the results of any such Test (which disclosure will include all information necessary for Customer or a third party to replicate the Test).\n4. Customer Obligations. \n\n4.1 Customer Domains and Applications. Customer must list in the Admin Console each authorized domain and application that uses the Services. Customer is responsible for ensuring that only authorized domains and applications use the Services.\n\n4.2 Compliance. Customer will: (a) ensure that Customer\u2019s and its End Users\u2019 use of the Services complies with the Agreement, including the applicable Services\u2019 AUP and URL Terms; and (b) use commercially reasonable efforts to prevent, promptly notify Google of, and terminate any unauthorized use of or access to its Account(s) or the Services.\n\n4.3 Documentation. Google may provide Documentation for Customer\u2019s use of the Services. The Documentation may specify restrictions (e.g. attribution or HTML restrictions) on how the Services may be used and Customer will comply with any such restrictions specified.\n\n4.4 Copyright Policy. Google provides information to help copyright holders manage their intellectual property online, but Google cannot determine whether something is being used legally or not without their input. Google responds to notices of alleged copyright infringement and terminates accounts of repeat infringers according to applicable copyright laws including in particular the process set out in the U.S. Digital Millennium Copyright Act. If Customer thinks somebody is violating Customer\u2019s or Customer End Users\u2019 copyrights and wants to notify Google, Customer can find information about submitting notices, and Google's policy about responding to notices at https://www.google.com/dmca.html.\n\n4.5 Data Use, Protection, and Privacy.\n\n4.5.1 Data Use and Retention. To provide the Services through the Customer Application(s), Google must receive and collect data from End Users and Customer, including search terms, IP addresses, and latitude/longitude coordinates. Customer acknowledges and agrees that Google and its Affiliates may use and retain this data to provide and improve Google products and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n4.5.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\n4.5.3 General Privacy Requirements.\n\n(a) End User Privacy. Customer\u2019s use of the Services in the Customer Application will comply with applicable privacy laws, including laws regarding Services that store and access Cookies on End Users\u2019 devices. If Customer has End Users in the European Economic Area, Customer will comply with the EU End User Consent Policy at https://www.google.com/about/company/user-consent-policy.html.\n\n(b) End User Personal Data. Through the normal functioning of the Google Maps Core Services, End Users provide device identifiers and Personal Data directly to Google, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/. However, Customer acknowledges and agrees that Customer will not provide these categories of data to Google.\n\n(c) End User Location Privacy Requirements. To safeguard End Users\u2019 location privacy, Customer will ensure that the Customer Application(s): (i) notify End Users in advance of (y) the type(s) of data that Customer intends to collect from the End Users or the End Users\u2019 devices, and (z) the combination and use of End User's location with any other data provider's data; and (ii) will not obtain or cache any End User's location except with the End User's express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions Violations. Google may Suspend the Services without prior notice if Customer breaches Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Violations or Emergency Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP Violations) and 5.2.2 (Emergency Security Issues). Any Suspension under those Sections will be to the minimum extent and for the shortest duration required to: (a) prevent or terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c) comply with applicable law.\n\n5.2.1 AUP Violations. If Google becomes aware that Customer\u2019s or any End User\u2019s use of the Services violates the AUP, Google will give Customer notice of such violation by requesting that Customer correct the violation. If Customer fails to correct such violation within 24 hours, or if Google is otherwise required by applicable law to take action, then Google may Suspend all or part of Customer\u2019s use of the Services.\n\n5.2.2 Emergency Security Issues. Google may immediately Suspend Customer\u2019s use of the Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend such use immediately to comply with applicable law. At Customer\u2019s request, unless prohibited by applicable law, Google will notify Customer of the basis for the Suspension as soon as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights Infringement. If the Customer Application is alleged to infringe a third party\u2019s Intellectual Property Rights, Google may require Customer to suspend distributing or selling the Customer Application on 30 days\u2019 written notice until such allegation is fully resolved. In any event, this Section 5.3 does not reduce Customer\u2019s obligations under Section 15 (Indemnification).\n6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as expressly stated in this Agreement, this Agreement does not grant either party any rights, implied or otherwise, to the other\u2019s content or any of the other\u2019s intellectual property. As between the parties, Customer owns all Intellectual Property Rights in the Customer Application, and Google owns all Intellectual Property Rights in the Services and Software.\n\n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google may use that information without obligation to Customer, and Customer irrevocably assigns to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices and License Terms.\n\nCertain components of the Services (including open source software) are subject to third-party copyright and other Intellectual Property Rights, as specified in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and (b) separate, publicly-available third-party license terms, which Google will provide to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will provide Maps Technical Support Services to Customer in accordance with the Maps Technical Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n9.1 Google will notify Customer at least 12 months before making material discontinuance(s) or backwards incompatible change(s) to the Services, unless Google reasonably determines that: (a) Google cannot do so by law or by contract (including if there is a change in applicable law or contract) or (b) continuing to provide the Services could create a (i) security risk or (ii) substantial economic or technical burden.\n\n9.2 Section 9.1 applies to the Services listed at https://cloud.google.com/maps-platform/terms/maps-deprecation/. If Google deprecates any Services that are not listed at the above URL, Google will use commercially reasonable efforts to minimize the adverse impacts of such deprecations.\n10. Confidential Information.\n\n10.1 Obligations. The recipient will not disclose the Confidential Information, except to Affiliates, employees, agents or professional advisors who need to know it and who have agreed in writing (or in the case of professional advisors are otherwise bound) to keep it confidential. Subject to Section 10.2 (Required Disclosure), the recipient will ensure that those people and entities use the received Confidential Information only to exercise rights and fulfill obligations under this Agreement, while using reasonable care to keep it confidential.\n\n10.2 Required Disclosure. The recipient may disclose the other party\u2019s Confidential Information to the extent required by applicable Legal Process; provided that the recipient uses commercially reasonable efforts to: (a) promptly notify the other party of such disclosure before disclosing; and (b) comply with the other party\u2019s reasonable requests regarding its efforts to oppose the disclosure. Notwithstanding the foregoing, subsections (a) and (b) above will not apply if the recipient determines that complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii) obstruct a governmental investigation; and/or (iii) lead to death or serious physical harm to an individual. As between the parties, Customer is responsible for responding to all third party requests concerning its use and Customer End Users\u2019 use of the Services.\n11. Term and Termination.\n\n11.1 Agreement Term. The \u201cTerm\u201d of this Agreement will begin on the Effective Date and continue until the Agreement is terminated under this Section.\n\n11.2 Termination for Breach. Either party may terminate this Agreement for breach if: (a) the other party is in material breach of the Agreement and fails to cure that breach within 30 days after receipt of written notice; or (b) the other party ceases its business operations or becomes subject to insolvency proceedings and the proceedings are not dismissed within 90 days. In addition, Google may terminate any, all, or any portion of the Services or Projects, if Customer meets any of the conditions in subsections (a) or (b).\n\n11.3 Termination for Inactivity. Google reserves the right to terminate provision of Service(s) to a Project on 30 days advance notice if, for more than 180 days, such Project (a) has not made any requests to the Services from any Customer Applications; or (b) such Project has not incurred any Fees for such Service(s).\n\n11.4 Termination for Convenience. Customer may stop using the Services at any time. Subject to any financial commitments expressly made by this Agreement, Customer may terminate this Agreement for its convenience at any time on prior written notice and upon termination, must cease use of the applicable Services. Google may terminate this Agreement for its convenience at any time without liability to Customer.\n\n11.5 Effects of Termination. \n\n11.5.1 If the Agreement is terminated, then: (a) the rights granted by one party to the other will immediately cease; (b) all Fees owed by Customer to Google are immediately due upon receipt of the final electronic bill; and (c) Customer will delete the Software and any content from the Services by the termination effective date.\n\n11.5.2 The following will survive expiration or termination of the Agreement: Section 2 (Payment Terms), Section 3.2 (License Requirements and Restrictions), Section 4.5 (Data Use, Protection, and Privacy), Section 6 (Intellectual Property; Feedback), Section 10 (Confidential Information), Section 11.5 (Effects of Termination), Section 14 (Disclaimer), Section 15 (Indemnification), Section 16 (Limitation of Liability), Section 19 (Miscellaneous), and Section 20 (Definitions).\n12. Publicity.\n\nCustomer may state publicly that it is a customer of the Services, consistent with the Trademark Guidelines. If Customer wants to display Google Brand Features in connection with its use of the Services, Customer must obtain written permission from Google through the process specified in the Trademark Guidelines. Google may include Customer\u2019s name or Brand Features in a list of Google customers, online or in promotional materials. Google may also verbally reference Customer as a customer of the Services. Neither party needs approval if it is repeating a public statement that is substantially similar to a previously-approved public statement. Any use of a party\u2019s Brand Features will inure to the benefit of the party holding Intellectual Property Rights to those Brand Features. A party may revoke the other party\u2019s right to use its Brand Features under this Section with written notice to the other party and a reasonable period to stop the use. Where applicable, Customer may use Google Maps Content in accordance with the \u201cUsing Google Maps, Google Earth and Street View\u201d permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy, which will be considered \u201cGoogle\u2019s prior written consent\u201d for the permitted uses.\n13. Representations and Warranties.\n\nEach party represents and warrants that: (a) it has full power and authority to enter into the Agreement; and (b) it will comply with Export Control Laws and Anti-Bribery Laws applicable to its provision, receipt, or use, of the Services, as applicable.\n14. Disclaimer.\n\n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED USE OF THE SERVICES OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION ACCESSIBLE THROUGH THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES EXPRESSLY STATED IN THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES ARE PROVIDED FOR PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES MAY DIFFER FROM ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION. CUSTOMER MUST EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT THE CUSTOMER APPLICATION IS SAFE FOR END USERS AND OTHER THIRD PARTIES.\n15. Indemnification.\n\n15.1 By Customer. Unless prohibited by applicable law, Customer will defend Google and its Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer\u2019s or an End User\u2019s use of the Services in violation of the Agreement.\n\n15.2 By Google. Google will defend Customer and its Affiliates participating under the Agreement (\u201cCustomer Indemnified Parties\u201d), and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from an allegation that Customer Indemnified Parties' use in accordance with the Agreement of Google Indemnified Materials infringes the third party's Intellectual Property Rights.\n\n15.3 Exclusions. This Section 15 will not apply to the extent the underlying allegation arises from (a) the indemnified party\u2019s breach of the Agreement or (b) a combination of the indemnifying party\u2019s technology or Brand Features with materials not provided by the indemnifying party, unless the combination is required by the Agreement.\n\n15.4 Conditions. Sections 15.1 and 15.2 will apply only to the extent:\n\n(a) The indemnified party has promptly notified the indemnifying party in writing of any Allegation(s) that preceded the Third-Party Legal Proceeding and cooperates reasonably with the indemnifying party to resolve the Allegation(s) and Third-Party Legal Proceeding. If breach of this Section 15.4(a) prejudices the defense of the Third-Party Legal Proceeding, the indemnifying party\u2019s obligations under Section 15.1 or 15.2 (as applicable) will be reduced in proportion to the prejudice.\n\n(b) The indemnified party tenders sole control of the indemnified portion of the Third-Party Legal Proceeding to the indemnifying party, subject to the following: (i) the indemnified party may appoint its own non-controlling counsel, at its own expense; and (ii) any settlement requiring the indemnified party to admit liability, pay money, or take (or refrain from taking) any action, will require the indemnified party\u2019s prior written consent, not to be unreasonably withheld, conditioned, or delayed.\n\n15.5 Remedies.\n\n(a) If Google reasonably believes the Services might infringe a third party\u2019s Intellectual Property Rights, then Google may, at its sole option and expense: (i) procure the right for Customer to continue using the Services; (ii) modify the Services to make them non-infringing without materially reducing their functionality; or (iii) replace the Services with a non-infringing, functionally equivalent alternative.\n\n(b) If Google does not believe the remedies in Section 15.5(a) are commercially reasonable, then Google may suspend or terminate Customer\u2019s use of the impacted Services.\n\n15.6 Sole Rights and Obligations. Without affecting either party\u2019s termination rights, this Section 15 states the parties\u2019 sole and exclusive remedy under this Agreement for any third party's Intellectual Property Rights Allegations and Third-Party Legal Proceedings covered by this Section 15 (Indemnification).\n16. Limitation of Liability.\n\n16.1 Limitation on Indirect Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PARTIES AND GOOGLE\u2019S LICENSORS, WILL NOT BE LIABLE UNDER THIS AGREEMENT FOR LOST REVENUES OR PROFITS (WHETHER DIRECT OR INDIRECT), INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE PARTY OR LICENSOR, AS APPLICABLE, KNEW OR SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY A REMEDY.\n\n16.2 Limitation on Amount of Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PARTIES AND GOOGLE\u2019S LICENSORS, MAY NOT BE HELD LIABLE UNDER THIS AGREEMENT FOR MORE THAN THE AMOUNT PAID BY CUSTOMER TO GOOGLE UNDER THIS AGREEMENT DURING THE TWELVE MONTHS BEFORE THE EVENT GIVING RISE TO LIABILITY.\n\n16.3 Exceptions to Limitations. These limitations of liability do not apply to breaches of confidentiality obligations, violations of a party\u2019s Intellectual Property Rights by the other party, or Customer's payment obligations.\n17. Advertising.\n\nIn its sole discretion, Customer may configure the Service to either display or not display advertisements served by Google.\n18. U.S. Federal Agency Users.\n\nThe Services were developed solely at private expense and are commercial computer software and related documentation within the meaning of the applicable Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\n19.1 Notices. All notices must be in writing and addressed to the other party\u2019s legal department and primary point of contact. The email address for notices being sent to Google\u2019s Legal Department is legal-notices@google.com. Notice will be treated as given on receipt as verified by written or automated receipt or by electronic log (as applicable).\n\n19.2 Assignment. Neither party may assign any part of this Agreement without the written consent of the other, except to an Affiliate where: (a) the assignee has agreed in writing to be bound by the terms of this Agreement; (b) the assigning party remains liable for obligations under the Agreement if the assignee defaults on them; and (c) the assigning party has notified the other party of the assignment. Any other attempt to assign is void.\n\n19.3 Change of Control. If a party experiences a change of Control (for example, through a stock purchase or sale, merger, or other form of corporate transaction): (a) that party will give written notice to the other party within 30 days after the change of Control; and (b) the other party may immediately terminate this Agreement any time between the change of Control and 30 days after it receives that written notice.\n\n19.4 Force Majeure. Neither party will be liable for failure or delay in performance to the extent caused by circumstances beyond its reasonable control, including acts of God, natural disasters, terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations under the Agreement but will remain liable to Customer for any subcontracted obligations.\n\n19.6 No Agency. This Agreement does not create any agency, partnership or joint venture between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived any rights by not exercising (or delaying the exercise of) any rights under this Agreement.\n\n19.8 Severability. If any term (or part of a term) of this Agreement is invalid, illegal, or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party Beneficiaries. This Agreement does not confer any benefits on any third party unless it expressly states that it does.\n\n19.10 Equitable Relief. Nothing in this Agreement will limit either party\u2019s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n19.11.1 For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county or state government entity, then the Agreement will be silent regarding governing law and venue.\n\n19.11.2 For U.S. Federal Government Entities. If Customer is a U.S. federal government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA, EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I) THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA\u2019S CONFLICT OF LAWS RULES) WILL APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n19.11.3 For All Other Entities. If Customer is any entity not listed in Section 19.11.1 or 19.11.2 then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE\u2019S CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\n19.12 Amendments. Except as stated in Section 1.5.2 (Modifications; To the Agreement), any amendment must be in writing, signed by both parties, and expressly state that it is amending this Agreement.\n\n19.13 Entire Agreement. This Agreement sets out all terms agreed between the parties and supersedes all other agreements between the parties relating to its subject matter. In entering into this Agreement, neither party has relied on, and neither party will have any right or remedy based on, any statement, representation or warranty (whether made negligently or innocently), except those expressly stated in this Agreement. The terms located at any URL referenced in this Agreement and the Documentation are incorporated by reference into the Agreement. After the Effective Date, Google may provide an updated URL in place of any URL in this Agreement.\n\n19.14 Conflicting Terms. If there is a conflict between the documents that make up this Agreement, the documents will control in the following order: the Agreement, and the terms at any URL. \n\n19.15 Conflicting Translations. If this Agreement is translated into any other language, and there is a discrepancy between the English text and the translated text, the English text will govern.\n20. Reseller Orders.\n\nThis Section applies if Customer orders the Services from a Reseller under a Reseller Agreement (including the Reseller Order Form).\n\n20.1 Orders. If Customer orders Services from Reseller, then: (a) fees for the Services will be set between Customer and Reseller, and any payments will be made directly to Reseller under the Reseller Agreement; (b) Section 2 of this Agreement (Payment Terms) will not apply to the Services; (c) Customer will receive any applicable SLA credits from Reseller, if owed to Customer in accordance with the SLA; and (d) Google will have no obligation to provide any SLA credits to a Customer who orders Services from the Reseller.\n\n20.2 Conflicting Terms. If Customer orders Google Maps Core Services from a Reseller and if any documents conflict, then the documents will control in the following order: the Agreement, the terms at any URL (including the URL Terms), Reseller Order Form. For example, if there is a conflict between the Maps Service Specific Terms and the Reseller Order Form, the Maps Service Specific Terms will control.\n\n20.3 Reseller as Administrator. At Customer's discretion, Reseller may access Customer's Projects, Accounts, or the Services on behalf of Customer. As between Google and Customer, Customer is solely responsible for: (a) any access by Reseller to Customer\u2019s Account(s), Project(s), or the Services; and (b) defining in the Reseller Agreement any rights or obligations as between Reseller and Customer with respect to the Accounts, Projects, or Services.\n\n20.4 Reseller Verification of Customer Application(s). Before providing the Services, Reseller may also verify that Customer owns or controls the Customer Applications. If Reseller determines that Customer does not own or control the Customer Applications, then Google will have no obligation to provide the Services to Customer.\n21. Definitions.\n\n\"Account\" means Customer\u2019s Google Account.\n\n\"Admin Console\" means the online console(s) and/or tool(s) provided by Google to Customer for administering the Services.\n\n\"Affiliate\" means any entity that directly or indirectly Controls, is Controlled by, or is under common Control with a party.\n\n\"Allegation\" means an unaffiliated third party\u2019s allegation.\n\n\u201cAnti-Bribery Laws\u201d means all applicable commercial and public anti-bribery laws, (for example, the U.S. Foreign Corrupt Practices Act of 1977 and the UK Bribery Act 2010), which prohibit corrupt offers of anything of value, either directly or indirectly, to anyone, including government officials, to obtain or keep business or to secure any other improper commercial advantage. \u201cGovernment officials\u201d include any government employee; candidate for public office; and employee of government-owned or government-controlled companies, public international organizations, and political parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the then-current Acceptable Use Policy for the Services at: https://cloud.google.com/maps-platform/terms/aup/.\n\n\"Brand Features\" means the trade names, tradmarks, service marks, logos, domain names, and other distinctive brand features of each party, respectively, as secured by such party.\n\n\"Committed Purchase(s)\" has the meaning provided in the Maps Service Specific Terms.\n\n\"Confidential Information\" means information that one party (or an Affiliate) discloses to the other party under this Agreement, and which is marked as confidential or would normally under the circumstances be considered confidential information. It does not include information that is independently developed by the recipient, is rightfully given to the recipient by a third party without confidentiality obligations, or becomes public through no fault of the recipient.\n\n\"Control\" means control of greater than 50% of the voting rights or equity interests of a party.\n\n\"Customer Application\" means any web domain or application (including all source code and features) owned or controlled by Customer, or that Customer is authorized to use.\n\n\"Customer End User\" or \"End User\" means an individual or entity that Customer permits to use the Services or Customer Application(s).\n\n\u201cCustomer Indemnified Materials\u201d means the Customer Application and Customer Brand Features.\n\n\"Documentation\" means the Google documentation (as may be updated) in the form generally made available by Google for use with the Services at https://developers.google.com/maps/documentation.\n\n\"Emergency Security Issue\" means either: (a) Customer\u2019s or Customer End Users\u2019 use of the Services in violation of the AUP, which could disrupt: (i) the Services; (ii) other customers\u2019 or their customer end users\u2019 use of the Services; or (iii) the Google network or servers used to provide the Services; or (b) unauthorized third party access to the Services.\n\n\"Europe\" or \"European\" means European Economic Area or Switzerland.\n\n\u201cExport Control Laws\u201d means all applicable export and re-export control laws and regulations, including any applicable munitions- or defense-related regulations (for example, the International Traffic in Arms Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual Period\" means a calendar month or another period specified by Google in the Admin Console.\n\n\"Fee Threshold\" means the threshold (as may be updated), as applicable for certain Services, as set out in the Admin Console.\n\n\u201cFeedback\u201d means feedback or suggestions about the Services provided by Customer to Google.\n\n\"Fees\" means the product of the amount of Services used or ordered by Customer multiplied by the Prices, plus any applicable Taxes.\n\n\"Google Indemnified Materials\" means Google's technology used to provide the Services (excluding any open source software) and Google's Brand Features.\n\n\"Google Maps Content\" means any content provided through the Services (whether created by Google or its third-party licensors), including map and terrain data, imagery, traffic data, and places data (including business listings).\n\n\"High Risk Activities\" means activities where the use or failure of the Services could lead to death, personal injury, or environmental damage, including (a) emergency response services; (b) autonomous and semi-autonomous vehicle or drone control; (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation.\n\n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs finally awarded against the indemnified party and its Affiliates by a court of competent jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual Property Rights\" means current and future worldwide rights under patent, copyright, trade secret, trademark, and moral rights laws, and other similar rights.\n\n\"Legal Process\" means a data disclosure request made under law, governmental regulation, court order, subpoena, warrant, governmental regulatory or agency request, or other valid legal authority, legal procedure, or similar process.\n\n\"Maps Service Specific Terms\" means the then-current terms specific to one or more Services at https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\n\"Maps Technical Support Services\" means the technical support service provided by Google to Customer under the then-current Maps Technical Support Services Guidelines.\n\n\"Maps Technical Support Services Guidelines\" means the then-current technical support service guidelines at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Package Purchase\" has the meaning set out in the Maps Service Specific Terms.\n\n\"Personal Data\" has the meaning provided in the General Data Protection Regulation (EU) 2016/679 of the European Parliament and of the Council of April 27, 2016.\n\n\"Price\" means the then-current applicable price(s) stated at https://cloud.google.com/maps-platform/pricing/sheet/.\n\n\"Prohibited Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources for a particular Customer Application.\n\n\"Reseller\" means, if applicable, the authorized reseller that sells or supplies the Services to Customer.\n\n\"Reseller Agreement\" means, if applicable, a separate, independent agreement between Customer and Reseller regarding the Services.\n\n\"Reseller Order Form\" means an order form entered into by Reseller and Customer, subject to the Reseller Agreement.\n\n\"Services\" and \"Google Maps Core Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/. The Services include the Google Maps Content and the Software.\n\n\"SLA\" or \"Service Level Agreement\" means each of the then-current service level agreements at: https://cloud.google.com/maps-platform/terms/sla/.\n\n\"Software\" means any downloadable tools, software development kits, or other computer software provided by Google for use as part of the Services, including updates.\n\n\"Taxes\" means any duties, customs fees, or taxes (other than Google\u2019s income tax) associated with the purchase of the Services, including any related penalties or interest.\n\n\"Term\" has the meaning stated in Section 1.6 of this Agreement.\n\n\u201cTerms URL\u201d means the following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated third party before a court or government tribunal (including any appellate proceeding).\n\n\"Trademark Guidelines\" means (a) Google\u2019s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html; and (b) the \u201cUse of Trademarks\u201d section of the \u201cUsing Google Maps, Google Earth and Street View\u201d permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark policy.\n\n\u201cURL Terms\u201d means the following, which will control in the following order if there is a conflict:\n\n(a) the Maps Service Specific Terms;\n\n(b) the SLA;\n\n(c) the AUP;\n\n(d) the Maps Technical Support Services Guidelines;\n\n(e) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and\n\n(f) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html.", + "json": "google-maps-tos-2018-07-19.json", + "yaml": "google-maps-tos-2018-07-19.yml", + "html": "google-maps-tos-2018-07-19.html", + "license": "google-maps-tos-2018-07-19.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-10-01", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-10-01", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Maps Platform Terms of Service\n\nLast modified: October 1, 2018\n\nIf you have entered into an offline variant of this Agreement, the terms below do not apply, and your offline agreement governs your use of the Google Maps Core Services.\n\nGoogle Maps Platform License Agreement\n\nThis Google Maps Platform License Agreement (the \"Agreement\") is made and entered into between Google and the entity or person agreeing to these terms (\"Customer\"). \"Google\" means either (i) Google Commerce Limited (\u201cGCL\u201d), a company incorporated under the laws of Ireland, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer has a billing address in the EU and has chosen \u201cnon-business\u201d as the tax status/setting for its Google account, (ii) Google Ireland Limited, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer's billing address is in any country within Europe, the Middle East, or Africa (\"EMEA\"), (iii) Google Asia Pacific Pte. Ltd., with offices at 70 Pasir Panjang Road, #03-71, Mapletree Business City II Singapore 117371, if Customer's billing address is in any country within the Asia Pacific region (\"APAC\") except as provided below for Customers with the billing address in Japan, New Zealand, or Australia, (iv) Google Cloud Japan G.K., with offices at Roppongi Hills Mori Tower, 10-1, Roppongi 6-chome, Minato-ku Tokyo, if Customer\u2019s billing address is in Japan, (v) Google Australia Pty Ltd., with offices at Level 5, 48 Pirrama Road, Pyrmont, NSW 2009 Australia, if Customer\u2019s billing address is in Australia, or (vi) Google LLC, with offices at 1600 Amphitheatre Parkway, Mountain View, California 94043, if Customer's billing address is in any country in the world other than those in EMEA and APAC. For Customers with a billing address in New Zealand, as of November 1, 2018, this Agreement is made and entered into by and between Customer and Google New Zealand Limited, with offices at PWC Tower, Level 27, 188 Quay Street, Auckland, New Zealand 1010, as an authorized reseller in New Zealand of the Services and \u201cGoogle\u201d means Google Asia Pacific Pte. Ltd. and/or its affiliates (including Google New Zealand Limited) as the context requires.\n\nThis Agreement is effective as of the date Customer clicks to accept the Agreement, or enters into a Reseller Agreement if purchasing through a Reseller (the \"Effective Date\"). If you are accepting on behalf of Customer, you represent and warrant that: (i) you have full legal authority to bind Customer to this Agreement; (ii) you have read and understand this Agreement; and (iii) you agree, on behalf of Customer, to this Agreement. If you do not have the legal authority to bind Customer, please do not click to accept. This Agreement governs Customer's access to and use of the Services.\n\nFor an offline variant of this Agreement, you may contact Google for more information.\n1. Provision of the Services.\n\n1.1 Use of the Services in Customer Applications. Google will provide the Services to Customer in accordance with the applicable SLA, and Customer may use the Google Maps Core Services in Customer Application(s) in accordance with Section 3 (License).\n\n1.2 Admin Console; Projects; API Keys. Customer will administer the Services through the online Admin Console. To access the Services, Customer must create Project(s) and use its API key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer must have an Account to access the Admin Console through which Customer may administer its use of the Services. Customer is responsible for: (a) the information it provides in connection with the Account; (b) maintaining the confidentiality and security of the Account and associated passwords; and (c) any use of its Account.\n\n1.4 Customer Domains and Applications. Customer must list in the Admin Console each authorized domain and application that uses the Services. Customer is responsible for ensuring that only authorized domains and applications use the Services.\n\n1.5 New Features and Services. Google may: (a) make new features or functionality available through the Services and (b) add new services to the \"Services\" definition (by adding them at the URL stated under that definition). Customer\u2019s use of new features or functionality may be contingent on Customer\u2019s agreement to additional terms applicable to the new feature or functionality.\n\n1.6 Modifications.\n\n1.6.1 To the Services. Google may make changes to the Services, subject to Section 9 (Deprecation Policy), which may include adding, updating, or discontinuing any Services or portion or feature(s) of the Services. Google will notify Customer of any material change to the Services.\n\n1.6.2. To the Agreement. Google may make changes to this Agreement, including pricing (and any linked documents). Unless otherwise noted by Google, material changes to the Agreement will become effective 30 days after notice is given, except if the changes apply to new functionality in which case they will be effective immediately. Google will provide at least 90 days advance notice for materially adverse changes to any SLAs by: (a) sending an email to Customer\u2019s primary point of contact; (b) posting a notice in the Admin Console; or (c) posting a notice to the applicable SLA webpage. If Customer does not agree to the revised Agreement, Customer should stop using the Services. Google will post any modification to this Agreement to the Terms URL.\n2. Payment Terms.\n\n2.1 Free Quota. Certain Services are provided to Customer without charge up to the Fee Threshold, as applicable.\n\n2.2 Online Billing. At the end of the applicable Fee Accrual Period, Google will issue an electronic bill to Customer for all charges accrued above the Fee Threshold based on (a) Customer\u2019s use of the Services during the previous Fee Accrual Period; (b) any Committed Purchases selected; and (c) any Package Purchases selected. For use above the Fee Threshold, Customer will be responsible for all Fees up to the amount set in the Account and will pay all Fees in the currency set forth in the invoice. If Customer elects to pay by credit card, debit card, or other non-invoiced form of payment, Google will charge (and Customer will pay) all Fees immediately at the end of the Fee Accrual Period. If Customer elects to pay by invoice (and Google agrees), all Fees are due as stated in the invoice. Customer\u2019s obligation to pay all Fees is non-cancellable. Google's measurement of Customer\u2019s use of the Services is final. Google has no obligation to provide multiple bills. Payments made via wire transfer must include the bank information provided by Google. If Customer has entered into the Agreement with GCL, Google may collect payments via Google Payment Limited, a company incorporated in England and Wales with offices at Belgrave House, 76 Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\n2.3 Taxes.\n\n2.3.1 Customer is responsible for any Taxes, and Customer will pay Google for the Services without any reduction for Taxes. If Google is obligated to collect or pay Taxes, the Taxes will be invoiced to Customer, unless Customer provides Google with a timely and valid tax exemption certificate authorized by the appropriate taxing authority. In some states the sales tax is due on the total purchase price at the time of sale and must be invoiced and collected at the time of the sale. If Customer is required by law to withhold any Taxes from its payments to Google, Customer must provide Google with an official tax receipt or other appropriate documentation to support such withholding. If under the applicable tax legislation the Services are subject to local VAT and the Customer is required to make a withholding of local VAT from amounts payable to Google, the value of Services calculated in accordance with the above procedure will be increased (grossed up) by the Customer for the respective amount of local VAT and the grossed up amount will be regarded as a VAT inclusive price. Local VAT amount withheld from the VAT-inclusive price will be remitted to the applicable local tax entity by the Customer and Customer will ensure that Google will receives payment for its services for the net amount as would otherwise be due (the VAT inclusive price less the local VAT withheld and remitted to applicable tax authority).\n\n2.3.2 If required under applicable law, Customer will provide Google with applicable tax identification information that Google may require to ensure its compliance with applicable tax regulations and authorities in applicable jurisdictions. Customer will be liable to pay (or reimburse Google for) any taxes, interest, penalties or fines arising out of any mis-declaration by the Customer.\n\n2.4 Invoice Disputes & Refunds. Any invoice disputes must be submitted before the payment due date. If the parties determine that certain billing inaccuracies are attributable to Google, Google will not issue a corrected invoice, but will instead issue a credit memo specifying the incorrect amount in the affected invoice. If the disputed invoice has not yet been paid, Google will apply the credit memo amount to the disputed invoice and Customer will be responsible for paying the resulting net balance due on that invoice. To the fullest extent permitted by law, Customer waives all claims relating to Fees unless claimed within 60 days after charged (this does not affect any Customer rights with its credit card issuer). Refunds (if any) are at the discretion of Google and will only be in the form of credit for the Services. Nothing in this Agreement obligates Google to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. Late payments may bear interest at the rate of 1.5% per month (or the highest rate permitted by law, if less) from the payment due date until paid in full. Customer will be responsible for all reasonable expenses (including attorneys\u2019 fees) incurred by Google in collecting such delinquent amounts. If Customer is late on payment for the Services, Google may suspend the Services or terminate the Agreement for breach under Section 11.2 (Termination for Breach).\n\n2.6 No Purchase Order Number Required. Google is not required to provide a purchase order number on Google\u2019s invoice (or otherwise).\n3. License.\n\n3.1 License Grant. Subject to this Agreement's terms, during the Term, Google grants to Customer a non-exclusive, non-transferable, non-sublicensable, license to use the Services in Customer Application(s), which may be: (a) fee-based or non-fee-based; (b) public/external or private/internal; (c) business-to-business or business-to-consumer; or (d) asset tracking.\n\n3.2 License Requirements and Restrictions. The following are conditions of the license granted in Section 3.1. In this Section 3.2, the phrase \u201cCustomer will not\u201d means \u201cCustomer will not, and will not permit a third party to\u201d.\n\n3.2.2 General Restrictions. Unless Google specifically agrees in writing, Customer will not: (a) copy, modify, create a derivative work of, reverse engineer, decompile, translate, disassemble, or otherwise attempt to extract any or all of the source code (except to the extent such restriction is expressly prohibited by applicable law); (b) sublicense, transfer, or distribute any of the Services; (c) sell, resell, or otherwise make the Services available as a commercial offering to a third party; or (d) access or use the Services: (i) for High Risk Activities; (ii) in a manner intended to avoid incurring Fees; (iii) for activities that are subject to the International Traffic in Arms Regulations (ITAR) maintained by the United States Department of State; (iv) on behalf of or for the benefit of any entity or person who is legally prohibited from using the Services; or (v) to transmit, store, or process Protected Health Information (as defined in and subject to HIPAA).\n\n3.2.3 Requirements for Using the Services.\n\n(a) End User Terms and Privacy Policy. Customer\u2019s End User terms of service will state that End Users\u2019 use of Google Maps is subject to the then-current Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html and Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n(b) Attribution. Customer will display all attribution that (i) Google provides through the Services (including branding, logos, and copyright and trademark notices); or (ii) is specified in the Maps Service Specific Terms. Customer will not modify, obscure, or delete such attribution.\n\n(c) Review of Customer Applications. At Google\u2019s request, Customer will submit Customer Application(s) and Project(s) to Google for review to ensure compliance with the Agreement (including the AUP).\n\n3.2.4 Restrictions Against Misusing the Services.\n\n(a) No Scraping. Customer will not extract, export, scrape, or cache Google Maps Content for use outside the Services. For example, Customer will not:(i) pre-fetch, index, store, reshare, or rehost Google Maps Content outside the services; (ii) bulk download geocodes; (iii) copy business names, addresses, or user reviews; or (iv) use Google Maps Content with text-to-speech services. Caching is permitted for certain Services as described in the Maps Service Specific Terms.\n\n(b) No Creating Content From Google Maps Content. Customer will not create content based on Google Maps Content, including tracing, digitizing, or creating other datasets based on Google Maps Content.\n\n(c) No Re-Creating Google Products or Features. Customer will not use the Services to create a product or service with features that are substantially similar to or that re-create the features of another Google product or service. Customer\u2019s product or service must contain substantial, independent value and features beyond the Google products or services. For example, Customer will not: (i) re-distribute the Google Maps Core Services or pass them off as if they were Customer\u2019s services; (ii) create a substitute of the Google Maps Core Services, Google Maps, or Google Maps mobile apps, or their features; (iii) use the Google Maps Core Services in a listings or directory service or to create or augment an advertising product; (iv) combine data from the Directions API, Geolocation API, and Maps SDK for Android to create real-time navigation functionality substantially similar to the functionality provided by the Google Maps for Android mobile app.\n\n(d) No Use With Non-Google Maps. Customer will not use the Google Maps Core Services in a Customer Application that contains a non-Google map. For example, Customer will not (i) display Places listings on a non-Google map, or (ii) display Street View imagery and non-Google maps in the same Customer Application.\n\n(e) No Circumventing Fees. Customer will not circumvent the applicable Fees. For example, Customer will not create multiple billing accounts or Projects to avoid incurring Fees; prevent Google from accurately calculating Customer\u2019s Service usage levels; abuse any free Service quotas; or offer access to the Services under a \u201ctime-sharing\u201d or \u201cservice bureau\u201d model.\n\n(f) No Use in Prohibited Territories. Customer will not distribute or market in a Prohibited Territory any Customer Application(s) that use the Google Maps Core Services.\n\n(g) No Use in Embedded Vehicle Systems. Customer will not use the Google Maps Core Services in connection with any Customer Application or device embedded in a vehicle. For example, Customer will not create a Customer Application that (i) is embedded in an in-dashboard automotive infotainment system; and (ii) allows End Users to request driving directions from the Directions API.\n\n(h) No Modifying Search Results Integrity. Customer will not modify any of the Service\u2019s search results.\n\n(i) No Use for High Risk Activities. Customer will not use the Google Maps Core Services for High Risk Activities.\n\n3.2.5 Benchmarking. Customer may not publicly disclose directly or through a third party the results of any comparative or compatibility testing, benchmarking, or evaluation of the Services (each, a \u201cTest\u201d), unless the disclosure includes all information necessary for Google or a third party to replicate the Test. If Customer conducts, or directs a third party to conduct, a Test of the Services and publicly discloses the results directly or through a third party, then Google (or a Google directed third party) may conduct Tests of any publicly available cloud products or services provided by Customer and publicly disclose the results of any such Test (which disclosure will include all information necessary for Customer or a third party to replicate the Test).\n4. Customer Obligations. \n\n4.1 Customer Domains and Applications. Customer must list in the Admin Console each authorized domain and application that uses the Services. Customer is responsible for ensuring that only authorized domains and applications use the Services.\n\n4.2 Compliance. Customer will: (a) ensure that Customer\u2019s and its End Users\u2019 use of the Services complies with the Agreement, including the applicable Services\u2019 AUP and URL Terms; and (b) use commercially reasonable efforts to prevent, promptly notify Google of, and terminate any unauthorized use of or access to its Account(s) or the Services.\n\n4.3 Documentation. Google may provide Documentation for Customer\u2019s use of the Services. The Documentation may specify restrictions (e.g. attribution or HTML restrictions) on how the Services may be used and Customer will comply with any such restrictions specified.\n\n4.4 Copyright Policy. Google provides information to help copyright holders manage their intellectual property online, but Google cannot determine whether something is being used legally or not without their input. Google responds to notices of alleged copyright infringement and terminates accounts of repeat infringers according to applicable copyright laws including in particular the process set out in the U.S. Digital Millennium Copyright Act. If Customer thinks somebody is violating Customer\u2019s or Customer End Users\u2019 copyrights and wants to notify Google, Customer can find information about submitting notices, and Google's policy about responding to notices at https://www.google.com/dmca.html.\n\n4.5 Data Use, Protection, and Privacy.\n\n4.5.1 Data Use and Retention. To provide the Services through the Customer Application(s), Google must receive and collect data from End Users and Customer, including search terms, IP addresses, and latitude/longitude coordinates. Customer acknowledges and agrees that Google and its Affiliates may use and retain this data to provide and improve Google products and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n4.5.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\n4.5.3 General Privacy Requirements.\n\n(a) End User Privacy. Customer\u2019s use of the Services in the Customer Application will comply with applicable privacy laws, including laws regarding Services that store and access Cookies on End Users\u2019 devices. If Customer has End Users in the European Economic Area, Customer will comply with the EU End User Consent Policy at https://www.google.com/about/company/user-consent-policy.html.\n\n(b) End User Personal Data. Through the normal functioning of the Google Maps Core Services, End Users provide device identifiers and Personal Data directly to Google, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/. However, Customer acknowledges and agrees that Customer will not provide these categories of data to Google.\n\n(c) End User Location Privacy Requirements. To safeguard End Users\u2019 location privacy, Customer will ensure that the Customer Application(s): (i) notify End Users in advance of (y) the type(s) of data that Customer intends to collect from the End Users or the End Users\u2019 devices, and (z) the combination and use of End User's location with any other data provider's data; and (ii) will not obtain or cache any End User's location except with the End User's express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions Violations. Google may Suspend the Services without prior notice if Customer breaches Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Violations or Emergency Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP Violations) and 5.2.2 (Emergency Security Issues). Any Suspension under those Sections will be to the minimum extent and for the shortest duration required to: (a) prevent or terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c) comply with applicable law.\n\n5.2.1 AUP Violations. If Google becomes aware that Customer\u2019s or any End User\u2019s use of the Services violates the AUP, Google will give Customer notice of such violation by requesting that Customer correct the violation. If Customer fails to correct such violation within 24 hours, or if Google is otherwise required by applicable law to take action, then Google may Suspend all or part of Customer\u2019s use of the Services.\n\n5.2.2 Emergency Security Issues. Google may immediately Suspend Customer\u2019s use of the Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend such use immediately to comply with applicable law. At Customer\u2019s request, unless prohibited by applicable law, Google will notify Customer of the basis for the Suspension as soon as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights Infringement. If the Customer Application is alleged to infringe a third party\u2019s Intellectual Property Rights, Google may require Customer to suspend distributing or selling the Customer Application on 30 days\u2019 written notice until such allegation is fully resolved. In any event, this Section 5.3 does not reduce Customer\u2019s obligations under Section 15 (Indemnification).\n6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as expressly stated in this Agreement, this Agreement does not grant either party any rights, implied or otherwise, to the other\u2019s content or any of the other\u2019s intellectual property. As between the parties, Customer owns all Intellectual Property Rights in the Customer Application, and Google owns all Intellectual Property Rights in the Services and Software.\n\n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google may use that information without obligation to Customer, and Customer irrevocably assigns to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices and License Terms.\n\nCertain components of the Services (including open source software) are subject to third-party copyright and other Intellectual Property Rights, as specified in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and (b) separate, publicly-available third-party license terms, which Google will provide to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will provide Maps Technical Support Services to Customer in accordance with the Maps Technical Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n9.1 Google will notify Customer at least 12 months before making material discontinuance(s) or backwards incompatible change(s) to the Services, unless Google reasonably determines that: (a) Google cannot do so by law or by contract (including if there is a change in applicable law or contract) or (b) continuing to provide the Services could create a (i) security risk or (ii) substantial economic or technical burden.\n\n9.2 Section 9.1 applies to the Services listed at https://cloud.google.com/maps-platform/terms/maps-deprecation/. If Google deprecates any Services that are not listed at the above URL, Google will use commercially reasonable efforts to minimize the adverse impacts of such deprecations.\n10. Confidential Information.\n\n10.1 Obligations. The recipient will not disclose the Confidential Information, except to Affiliates, employees, agents or professional advisors who need to know it and who have agreed in writing (or in the case of professional advisors are otherwise bound) to keep it confidential. Subject to Section 10.2 (Required Disclosure), the recipient will ensure that those people and entities use the received Confidential Information only to exercise rights and fulfill obligations under this Agreement, while using reasonable care to keep it confidential.\n\n10.2 Required Disclosure. The recipient may disclose the other party\u2019s Confidential Information to the extent required by applicable Legal Process; provided that the recipient uses commercially reasonable efforts to: (a) promptly notify the other party of such disclosure before disclosing; and (b) comply with the other party\u2019s reasonable requests regarding its efforts to oppose the disclosure. Notwithstanding the foregoing, subsections (a) and (b) above will not apply if the recipient determines that complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii) obstruct a governmental investigation; and/or (iii) lead to death or serious physical harm to an individual. As between the parties, Customer is responsible for responding to all third party requests concerning its use and Customer End Users\u2019 use of the Services.\n11. Term and Termination.\n\n11.1 Agreement Term. The \u201cTerm\u201d of this Agreement will begin on the Effective Date and continue until the Agreement is terminated under this Section.\n\n11.2 Termination for Breach. Either party may terminate this Agreement for breach if: (a) the other party is in material breach of the Agreement and fails to cure that breach within 30 days after receipt of written notice; or (b) the other party ceases its business operations or becomes subject to insolvency proceedings and the proceedings are not dismissed within 90 days. In addition, Google may terminate any, all, or any portion of the Services or Projects, if Customer meets any of the conditions in subsections (a) or (b).\n\n11.3 Termination for Inactivity. Google reserves the right to terminate provision of Service(s) to a Project on 30 days advance notice if, for more than 180 days, such Project (a) has not made any requests to the Services from any Customer Applications; or (b) such Project has not incurred any Fees for such Service(s).\n\n11.4 Termination for Convenience. Customer may stop using the Services at any time. Subject to any financial commitments expressly made by this Agreement, Customer may terminate this Agreement for its convenience at any time on prior written notice and upon termination, must cease use of the applicable Services. Google may terminate this Agreement for its convenience at any time without liability to Customer.\n\n11.5 Effects of Termination. \n\n11.5.1 If the Agreement is terminated, then: (a) the rights granted by one party to the other will immediately cease; (b) all Fees owed by Customer to Google are immediately due upon receipt of the final electronic bill; and (c) Customer will delete the Software and any content from the Services by the termination effective date.\n\n11.5.2 The following will survive expiration or termination of the Agreement: Section 2 (Payment Terms), Section 3.2 (License Requirements and Restrictions), Section 4.5 (Data Use, Protection, and Privacy), Section 6 (Intellectual Property; Feedback), Section 10 (Confidential Information), Section 11.5 (Effects of Termination), Section 14 (Disclaimer), Section 15 (Indemnification), Section 16 (Limitation of Liability), Section 19 (Miscellaneous), and Section 20 (Definitions).\n12. Publicity.\n\nCustomer may state publicly that it is a customer of the Services, consistent with the Trademark Guidelines. If Customer wants to display Google Brand Features in connection with its use of the Services, Customer must obtain written permission from Google through the process specified in the Trademark Guidelines. Google may include Customer\u2019s name or Brand Features in a list of Google customers, online or in promotional materials. Google may also verbally reference Customer as a customer of the Services. Neither party needs approval if it is repeating a public statement that is substantially similar to a previously-approved public statement. Any use of a party\u2019s Brand Features will inure to the benefit of the party holding Intellectual Property Rights to those Brand Features. A party may revoke the other party\u2019s right to use its Brand Features under this Section with written notice to the other party and a reasonable period to stop the use. Where applicable, Customer may use Google Maps Content in accordance with the \u201cUsing Google Maps, Google Earth and Street View\u201d permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy, which will be considered \u201cGoogle\u2019s prior written consent\u201d for the permitted uses.\n13. Representations and Warranties.\n\nEach party represents and warrants that: (a) it has full power and authority to enter into the Agreement; and (b) it will comply with Export Control Laws and Anti-Bribery Laws applicable to its provision, receipt, or use, of the Services, as applicable.\n14. Disclaimer.\n\n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED USE OF THE SERVICES OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION ACCESSIBLE THROUGH THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES EXPRESSLY STATED IN THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES ARE PROVIDED FOR PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES MAY DIFFER FROM ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION. CUSTOMER MUST EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT THE CUSTOMER APPLICATION IS SAFE FOR END USERS AND OTHER THIRD PARTIES.\n15. Indemnification.\n\n15.1 By Customer. Unless prohibited by applicable law, Customer will defend Google and its Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer\u2019s or an End User\u2019s use of the Services in violation of the Agreement.\n\n15.2 By Google. Google will defend Customer and its Affiliates participating under the Agreement (\u201cCustomer Indemnified Parties\u201d), and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from an allegation that Customer Indemnified Parties' use in accordance with the Agreement of Google Indemnified Materials infringes the third party's Intellectual Property Rights.\n\n15.3 Exclusions. This Section 15 will not apply to the extent the underlying allegation arises from (a) the indemnified party\u2019s breach of the Agreement or (b) a combination of the indemnifying party\u2019s technology or Brand Features with materials not provided by the indemnifying party, unless the combination is required by the Agreement.\n\n15.4 Conditions. Sections 15.1 and 15.2 will apply only to the extent:\n\n(a) The indemnified party has promptly notified the indemnifying party in writing of any Allegation(s) that preceded the Third-Party Legal Proceeding and cooperates reasonably with the indemnifying party to resolve the Allegation(s) and Third-Party Legal Proceeding. If breach of this Section 15.4(a) prejudices the defense of the Third-Party Legal Proceeding, the indemnifying party\u2019s obligations under Section 15.1 or 15.2 (as applicable) will be reduced in proportion to the prejudice.\n\n(b) The indemnified party tenders sole control of the indemnified portion of the Third-Party Legal Proceeding to the indemnifying party, subject to the following: (i) the indemnified party may appoint its own non-controlling counsel, at its own expense; and (ii) any settlement requiring the indemnified party to admit liability, pay money, or take (or refrain from taking) any action, will require the indemnified party\u2019s prior written consent, not to be unreasonably withheld, conditioned, or delayed.\n\n15.5 Remedies.\n\n(a) If Google reasonably believes the Services might infringe a third party\u2019s Intellectual Property Rights, then Google may, at its sole option and expense: (i) procure the right for Customer to continue using the Services; (ii) modify the Services to make them non-infringing without materially reducing their functionality; or (iii) replace the Services with a non-infringing, functionally equivalent alternative.\n\n(b) If Google does not believe the remedies in Section 15.5(a) are commercially reasonable, then Google may suspend or terminate Customer\u2019s use of the impacted Services.\n\n15.6 Sole Rights and Obligations. Without affecting either party\u2019s termination rights, this Section 15 states the parties\u2019 sole and exclusive remedy under this Agreement for any third party's Intellectual Property Rights Allegations and Third-Party Legal Proceedings covered by this Section 15 (Indemnification).\n16. Limitation of Liability.\n\n16.1 Limitation on Indirect Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PARTIES AND GOOGLE\u2019S LICENSORS, WILL NOT BE LIABLE UNDER THIS AGREEMENT FOR LOST REVENUES OR PROFITS (WHETHER DIRECT OR INDIRECT), INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE PARTY OR LICENSOR, AS APPLICABLE, KNEW OR SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY A REMEDY.\n\n16.2 Limitation on Amount of Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PARTIES AND GOOGLE\u2019S LICENSORS, MAY NOT BE HELD LIABLE UNDER THIS AGREEMENT FOR MORE THAN THE AMOUNT PAID BY CUSTOMER TO GOOGLE UNDER THIS AGREEMENT DURING THE TWELVE MONTHS BEFORE THE EVENT GIVING RISE TO LIABILITY.\n\n16.3 Exceptions to Limitations. These limitations of liability do not apply to breaches of confidentiality obligations, violations of a party\u2019s Intellectual Property Rights by the other party, or Customer's payment obligations.\n17. Advertising.\n\nIn its sole discretion, Customer may configure the Service to either display or not display advertisements served by Google.\n18. U.S. Federal Agency Users.\n\nThe Services were developed solely at private expense and are commercial computer software and related documentation within the meaning of the applicable Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\n19.1 Notices. All notices must be in writing and addressed to the other party\u2019s legal department and primary point of contact. The email address for notices being sent to Google\u2019s Legal Department is legal-notices@google.com. Notice will be treated as given on receipt as verified by written or automated receipt or by electronic log (as applicable).\n\n19.2 Assignment. Neither party may assign any part of this Agreement without the written consent of the other, except to an Affiliate where: (a) the assignee has agreed in writing to be bound by the terms of this Agreement; (b) the assigning party remains liable for obligations under the Agreement if the assignee defaults on them; and (c) the assigning party has notified the other party of the assignment. Any other attempt to assign is void.\n\n19.3 Change of Control. If a party experiences a change of Control (for example, through a stock purchase or sale, merger, or other form of corporate transaction): (a) that party will give written notice to the other party within 30 days after the change of Control; and (b) the other party may immediately terminate this Agreement any time between the change of Control and 30 days after it receives that written notice.\n\n19.4 Force Majeure. Neither party will be liable for failure or delay in performance to the extent caused by circumstances beyond its reasonable control, including acts of God, natural disasters, terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations under the Agreement but will remain liable to Customer for any subcontracted obligations.\n\n19.6 No Agency. This Agreement does not create any agency, partnership or joint venture between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived any rights by not exercising (or delaying the exercise of) any rights under this Agreement.\n\n19.8 Severability. If any term (or part of a term) of this Agreement is invalid, illegal, or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party Beneficiaries. This Agreement does not confer any benefits on any third party unless it expressly states that it does.\n\n19.10 Equitable Relief. Nothing in this Agreement will limit either party\u2019s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n19.11.1 For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county or state government entity, then the Agreement will be silent regarding governing law and venue.\n\n19.11.2 For U.S. Federal Government Entities. If Customer is a U.S. federal government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA, EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I) THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA\u2019S CONFLICT OF LAWS RULES) WILL APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n19.11.3 For All Other Entities. If Customer is any entity not listed in Section 19.11.1 or 19.11.2 then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE\u2019S CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\n19.12 Amendments. Except as stated in Section 1.5.2 (Modifications; To the Agreement), any amendment must be in writing, signed by both parties, and expressly state that it is amending this Agreement.\n\n19.13 Entire Agreement. This Agreement sets out all terms agreed between the parties and supersedes all other agreements between the parties relating to its subject matter. In entering into this Agreement, neither party has relied on, and neither party will have any right or remedy based on, any statement, representation or warranty (whether made negligently or innocently), except those expressly stated in this Agreement. The terms located at any URL referenced in this Agreement and the Documentation are incorporated by reference into the Agreement. After the Effective Date, Google may provide an updated URL in place of any URL in this Agreement.\n\n19.14 Conflicting Terms. If there is a conflict between the documents that make up this Agreement, the documents will control in the following order: the Agreement, and the terms at any URL. \n\n19.15 Conflicting Translations. If this Agreement is translated into any other language, and there is a discrepancy between the English text and the translated text, the English text will govern.\n20. Reseller Orders.\n\nThis Section applies if Customer orders the Services from a Reseller under a Reseller Agreement (including the Reseller Order Form).\n\n20.1 Orders. If Customer orders Services from Reseller, then: (a) fees for the Services will be set between Customer and Reseller, and any payments will be made directly to Reseller under the Reseller Agreement; (b) Section 2 of this Agreement (Payment Terms) will not apply to the Services; (c) Customer will receive any applicable SLA credits from Reseller, if owed to Customer in accordance with the SLA; and (d) Google will have no obligation to provide any SLA credits to a Customer who orders Services from the Reseller.\n\n20.2 Conflicting Terms. If Customer orders Google Maps Core Services from a Reseller and if any documents conflict, then the documents will control in the following order: the Agreement, the terms at any URL (including the URL Terms), Reseller Order Form. For example, if there is a conflict between the Maps Service Specific Terms and the Reseller Order Form, the Maps Service Specific Terms will control.\n\n20.3 Reseller as Administrator. At Customer's discretion, Reseller may access Customer's Projects, Accounts, or the Services on behalf of Customer. As between Google and Customer, Customer is solely responsible for: (a) any access by Reseller to Customer\u2019s Account(s), Project(s), or the Services; and (b) defining in the Reseller Agreement any rights or obligations as between Reseller and Customer with respect to the Accounts, Projects, or Services.\n\n20.4 Reseller Verification of Customer Application(s). Before providing the Services, Reseller may also verify that Customer owns or controls the Customer Applications. If Reseller determines that Customer does not own or control the Customer Applications, then Google will have no obligation to provide the Services to Customer.\n21. Definitions.\n\n\"Account\" means Customer\u2019s Google Account.\n\n\"Admin Console\" means the online console(s) and/or tool(s) provided by Google to Customer for administering the Services.\n\n\"Affiliate\" means any entity that directly or indirectly Controls, is Controlled by, or is under common Control with a party.\n\n\"Allegation\" means an unaffiliated third party\u2019s allegation.\n\n\u201cAnti-Bribery Laws\u201d means all applicable commercial and public anti-bribery laws, (for example, the U.S. Foreign Corrupt Practices Act of 1977 and the UK Bribery Act 2010), which prohibit corrupt offers of anything of value, either directly or indirectly, to anyone, including government officials, to obtain or keep business or to secure any other improper commercial advantage. \u201cGovernment officials\u201d include any government employee; candidate for public office; and employee of government-owned or government-controlled companies, public international organizations, and political parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the then-current Acceptable Use Policy for the Services at: https://cloud.google.com/maps-platform/terms/aup/.\n\n\"Brand Features\" means the trade names, tradmarks, service marks, logos, domain names, and other distinctive brand features of each party, respectively, as secured by such party.\n\n\"Committed Purchase(s)\" has the meaning provided in the Maps Service Specific Terms.\n\n\"Confidential Information\" means information that one party (or an Affiliate) discloses to the other party under this Agreement, and which is marked as confidential or would normally under the circumstances be considered confidential information. It does not include information that is independently developed by the recipient, is rightfully given to the recipient by a third party without confidentiality obligations, or becomes public through no fault of the recipient.\n\n\"Control\" means control of greater than 50% of the voting rights or equity interests of a party.\n\n\"Customer Application\" means any web domain or application (including all source code and features) owned or controlled by Customer, or that Customer is authorized to use.\n\n\"Customer End User\" or \"End User\" means an individual or entity that Customer permits to use the Services or Customer Application(s).\n\n\u201cCustomer Indemnified Materials\u201d means the Customer Application and Customer Brand Features.\n\n\"Documentation\" means the Google documentation (as may be updated) in the form generally made available by Google for use with the Services at https://developers.google.com/maps/documentation.\n\n\"Emergency Security Issue\" means either: (a) Customer\u2019s or Customer End Users\u2019 use of the Services in violation of the AUP, which could disrupt: (i) the Services; (ii) other customers\u2019 or their customer end users\u2019 use of the Services; or (iii) the Google network or servers used to provide the Services; or (b) unauthorized third party access to the Services.\n\n\"Europe\" or \"European\" means European Economic Area or Switzerland.\n\n\u201cExport Control Laws\u201d means all applicable export and re-export control laws and regulations, including any applicable munitions- or defense-related regulations (for example, the International Traffic in Arms Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual Period\" means a calendar month or another period specified by Google in the Admin Console.\n\n\"Fee Threshold\" means the threshold (as may be updated), as applicable for certain Services, as set out in the Admin Console.\n\n\u201cFeedback\u201d means feedback or suggestions about the Services provided by Customer to Google.\n\n\"Fees\" means the product of the amount of Services used or ordered by Customer multiplied by the Prices, plus any applicable Taxes.\n\n\"Google Indemnified Materials\" means Google's technology used to provide the Services (excluding any open source software) and Google's Brand Features.\n\n\"Google Maps Content\" means any content provided through the Services (whether created by Google or its third-party licensors), including map and terrain data, imagery, traffic data, and places data (including business listings).\n\n\"High Risk Activities\" means activities where the use or failure of the Services could lead to death, personal injury, or environmental damage, including (a) emergency response services; (b) autonomous and semi-autonomous vehicle or drone control; (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation.\n\n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs finally awarded against the indemnified party and its Affiliates by a court of competent jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual Property Rights\" means current and future worldwide rights under patent, copyright, trade secret, trademark, and moral rights laws, and other similar rights.\n\n\"Legal Process\" means a data disclosure request made under law, governmental regulation, court order, subpoena, warrant, governmental regulatory or agency request, or other valid legal authority, legal procedure, or similar process.\n\n\"Maps Service Specific Terms\" means the then-current terms specific to one or more Services at https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\n\"Maps Technical Support Services\" means the technical support service provided by Google to Customer under the then-current Maps Technical Support Services Guidelines.\n\n\"Maps Technical Support Services Guidelines\" means the then-current technical support service guidelines at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Package Purchase\" has the meaning set out in the Maps Service Specific Terms.\n\n\"Personal Data\" has the meaning provided in the General Data Protection Regulation (EU) 2016/679 of the European Parliament and of the Council of April 27, 2016.\n\n\"Price\" means the then-current applicable price(s) stated at https://cloud.google.com/maps-platform/pricing/sheet/.\n\n\"Prohibited Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources for a particular Customer Application.\n\n\"Reseller\" means, if applicable, the authorized reseller that sells or supplies the Services to Customer.\n\n\"Reseller Agreement\" means, if applicable, a separate, independent agreement between Customer and Reseller regarding the Services.\n\n\"Reseller Order Form\" means an order form entered into by Reseller and Customer, subject to the Reseller Agreement.\n\n\"Services\" and \"Google Maps Core Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/. The Services include the Google Maps Content and the Software.\n\n\"SLA\" or \"Service Level Agreement\" means each of the then-current service level agreements at: https://cloud.google.com/maps-platform/terms/sla/.\n\n\"Software\" means any downloadable tools, software development kits, or other computer software provided by Google for use as part of the Services, including updates.\n\n\"Taxes\" means any duties, customs fees, or taxes (other than Google\u2019s income tax) associated with the purchase of the Services, including any related penalties or interest.\n\n\"Term\" has the meaning stated in Section 1.6 of this Agreement.\n\n\u201cTerms URL\u201d means the following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated third party before a court or government tribunal (including any appellate proceeding).\n\n\"Trademark Guidelines\" means (a) Google\u2019s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html; and (b) the \u201cUse of Trademarks\u201d section of the \u201cUsing Google Maps, Google Earth and Street View\u201d permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark policy.\n\n\u201cURL Terms\u201d means the following, which will control in the following order if there is a conflict:\n\n(a) the Maps Service Specific Terms;\n\n(b) the SLA;\n\n(c) the AUP;\n\n(d) the Maps Technical Support Services Guidelines;\n\n(e) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and\n\n(f) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html.", + "json": "google-maps-tos-2018-10-01.json", + "yaml": "google-maps-tos-2018-10-01.yml", + "html": "google-maps-tos-2018-10-01.html", + "license": "google-maps-tos-2018-10-01.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-10-31", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-10-31", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Maps Platform Terms of Service\n\nLast modified: October 31, 2018\n\nIf you have entered into an offline variant of this Agreement, the terms below do not apply, and your offline agreement governs your use of the Google Maps Core Services.\n\nGoogle Maps Platform License Agreement\n\nThis Google Maps Platform License Agreement (the \"Agreement\") is made and entered into between Google and the entity or person agreeing to these terms (\"Customer\"). \"Google\" means either (i) Google Commerce Limited (\u201cGCL\u201d), a company incorporated under the laws of Ireland, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer has a billing address in the EU and has chosen \u201cnon-business\u201d as the tax status/setting for its Google account, (ii) Google Ireland Limited, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer\u2019s billing address is in any country within Europe, the Middle East, or Africa (\"EMEA\"), (iii) Google Asia Pacific Pte. Ltd., with offices at 70 Pasir Panjang Road, #03-71, Mapletree Business City II Singapore 117371, if Customer\u2019s billing address is in any country within the Asia Pacific region (\"APAC\") except as provided below for Customers with the billing address in Japan, New Zealand, or Australia, (iv) Google Cloud Japan G.K., with offices at Roppongi Hills Mori Tower, 10-1, Roppongi 6-chome, Minato-ku Tokyo, if Customer\u2019s billing address is in Japan, (v) Google Australia Pty Ltd., with offices at Level 5, 48 Pirrama Road, Pyrmont, NSW 2009 Australia, if Customer\u2019s billing address is in Australia, or (vi) Google LLC, with offices at 1600 Amphitheatre Parkway, Mountain View, California 94043, if Customer\u2019s billing address is in any country in the world other than those in EMEA and APAC. For Customers with a billing address in New Zealand, this Agreement is made and entered into by and between Customer and Google New Zealand Limited, with offices at PWC Tower, Level 27, 188 Quay Street, Auckland, New Zealand 1010, as an authorized reseller in New Zealand of the Services and \u201cGoogle\u201d means Google Asia Pacific Pte. Ltd. and/or its affiliates (including Google New Zealand Limited) as the context requires.\n\nThis Agreement is effective as of the date Customer clicks to accept the Agreement, or enters into a Reseller Agreement if purchasing through a Reseller (the \"Effective Date\"). If you are accepting on behalf of Customer, you represent and warrant that: (i) you have full legal authority to bind Customer to this Agreement; (ii) you have read and understand this Agreement; and (iii) you agree, on behalf of Customer, to this Agreement. If you do not have the legal authority to bind Customer, please do not click to accept. This Agreement governs Customer\u2019s access to and use of the Services.\n\nFor an offline variant of this Agreement, you may contact Google for more information.\n1. Provision of the Services.\n\n1.1 Use of the Services in Customer Applications. Google will provide the Services to Customer in accordance with the applicable SLA, and Customer may use the Google Maps Core Services in Customer Application(s) in accordance with Section 3 (License).\n\n1.2 Admin Console; Projects; API Keys. Customer will administer the Services through the online Admin Console. To access the Services, Customer must create Project(s) and use its API key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer must have an Account to access the Admin Console through which Customer may administer its use of the Services. Customer is responsible for: (a) the information it provides in connection with the Account; (b) maintaining the confidentiality and security of the Account and associated passwords; and (c) any use of its Account.\n\n1.4 Customer Domains and Applications. Customer must list in the Admin Console each authorized domain and application that uses the Services. Customer is responsible for ensuring that only authorized domains and applications use the Services.\n\n1.5 New Features and Services. Google may: (a) make new features or functionality available through the Services and (b) add new services to the \"Services\" definition (by adding them at the URL stated under that definition). Customer\u2019s use of new features or functionality may be contingent on Customer\u2019s agreement to additional terms applicable to the new feature or functionality.\n\n1.6 Modifications.\n\n1.6.1 To the Services. Google may make changes to the Services, subject to Section 9 (Deprecation Policy), which may include adding, updating, or discontinuing any Services or portion or feature(s) of the Services. Google will notify Customer of any material change to the Services.\n\n1.6.2. To the Agreement. Google may make changes to this Agreement, including pricing (and any linked documents). Unless otherwise noted by Google, material changes to the Agreement will become effective 30 days after notice is given, except if the changes apply to new functionality in which case they will be effective immediately. Google will provide at least 90 days advance notice for materially adverse changes to any SLAs by: (a) sending an email to Customer\u2019s primary point of contact; (b) posting a notice in the Admin Console; or (c) posting a notice to the applicable SLA webpage. If Customer does not agree to the revised Agreement, Customer should stop using the Services. Google will post any modification to this Agreement to the Terms URL.\n2. Payment Terms.\n\n2.1 Free Quota. Certain Services are provided to Customer without charge up to the Fee Threshold, as applicable.\n\n2.2 Online Billing. At the end of the applicable Fee Accrual Period, Google will issue an electronic bill to Customer for all charges accrued above the Fee Threshold based on (a) Customer\u2019s use of the Services during the previous Fee Accrual Period; (b) any Committed Purchases selected; and (c) any Package Purchases selected. For use above the Fee Threshold, Customer will be responsible for all Fees up to the amount set in the Account and will pay all Fees in the currency set forth in the invoice. If Customer elects to pay by credit card, debit card, or other non-invoiced form of payment, Google will charge (and Customer will pay) all Fees immediately at the end of the Fee Accrual Period. If Customer elects to pay by invoice (and Google agrees), all Fees are due as stated in the invoice. Customer\u2019s obligation to pay all Fees is non-cancellable. Google\u2019s measurement of Customer\u2019s use of the Services is final. Google has no obligation to provide multiple bills. Payments made via wire transfer must include the bank information provided by Google. If Customer has entered into the Agreement with GCL, Google may collect payments via Google Payment Limited, a company incorporated in England and Wales with offices at Belgrave House, 76 Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\n2.3 Taxes.\n\n2.3.1 Customer is responsible for any Taxes, and Customer will pay Google for the Services without any reduction for Taxes. If Google is obligated to collect or pay Taxes, the Taxes will be invoiced to Customer, unless Customer provides Google with a timely and valid tax exemption certificate authorized by the appropriate taxing authority. In some states the sales tax is due on the total purchase price at the time of sale and must be invoiced and collected at the time of the sale. If Customer is required by law to withhold any Taxes from its payments to Google, Customer must provide Google with an official tax receipt or other appropriate documentation to support such withholding. If under the applicable tax legislation the Services are subject to local VAT and the Customer is required to make a withholding of local VAT from amounts payable to Google, the value of Services calculated in accordance with the above procedure will be increased (grossed up) by the Customer for the respective amount of local VAT and the grossed up amount will be regarded as a VAT inclusive price. Local VAT amount withheld from the VAT-inclusive price will be remitted to the applicable local tax entity by the Customer and Customer will ensure that Google will receives payment for its services for the net amount as would otherwise be due (the VAT inclusive price less the local VAT withheld and remitted to applicable tax authority).\n\n2.3.2 If required under applicable law, Customer will provide Google with applicable tax identification information that Google may require to ensure its compliance with applicable tax regulations and authorities in applicable jurisdictions. Customer will be liable to pay (or reimburse Google for) any taxes, interest, penalties or fines arising out of any mis-declaration by the Customer.\n\n2.4 Invoice Disputes & Refunds. Any invoice disputes must be submitted before the payment due date. If the parties determine that certain billing inaccuracies are attributable to Google, Google will not issue a corrected invoice, but will instead issue a credit memo specifying the incorrect amount in the affected invoice. If the disputed invoice has not yet been paid, Google will apply the credit memo amount to the disputed invoice and Customer will be responsible for paying the resulting net balance due on that invoice. To the fullest extent permitted by law, Customer waives all claims relating to Fees unless claimed within 60 days after charged (this does not affect any Customer rights with its credit card issuer). Refunds (if any) are at the discretion of Google and will only be in the form of credit for the Services. Nothing in this Agreement obligates Google to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. Late payments may bear interest at the rate of 1.5% per month (or the highest rate permitted by law, if less) from the payment due date until paid in full. Customer will be responsible for all reasonable expenses (including attorneys\u2019 fees) incurred by Google in collecting such delinquent amounts. If Customer is late on payment for the Services, Google may suspend the Services or terminate the Agreement for breach under Section 11.2 (Termination for Breach).\n\n2.6 No Purchase Order Number Required. Google is not required to provide a purchase order number on Google\u2019s invoice (or otherwise).\n3. License.\n\n3.1 License Grant. Subject to this Agreement\u2019s terms, during the Term, Google grants to Customer a non-exclusive, non-transferable, non-sublicensable, license to use the Services in Customer Application(s), which may be: (a) fee-based or non-fee-based; (b) public/external or private/internal; (c) business-to-business or business-to-consumer; or (d) asset tracking.\n\n3.2 License Requirements and Restrictions. The following are conditions of the license granted in Section 3.1. In this Section 3.2, the phrase \u201cCustomer will not\u201d means \u201cCustomer will not, and will not permit a third party to\u201d.\n\n3.2.2 General Restrictions. Unless Google specifically agrees in writing, Customer will not: (a) copy, modify, create a derivative work of, reverse engineer, decompile, translate, disassemble, or otherwise attempt to extract any or all of the source code (except to the extent such restriction is expressly prohibited by applicable law); (b) sublicense, transfer, or distribute any of the Services; (c) sell, resell, or otherwise make the Services available as a commercial offering to a third party; or (d) access or use the Services: (i) for High Risk Activities; (ii) in a manner intended to avoid incurring Fees; (iii) for activities that are subject to the International Traffic in Arms Regulations (ITAR) maintained by the United States Department of State; (iv) on behalf of or for the benefit of any entity or person who is legally prohibited from using the Services; or (v) to transmit, store, or process Protected Health Information (as defined in and subject to HIPAA).\n\n3.2.3 Requirements for Using the Services.\n\n(a) End User Terms and Privacy Policy. Customer\u2019s End User terms of service will state that End Users\u2019 use of Google Maps is subject to the then-current Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html and Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n(b) Attribution. Customer will display all attribution that (i) Google provides through the Services (including branding, logos, and copyright and trademark notices); or (ii) is specified in the Maps Service Specific Terms. Customer will not modify, obscure, or delete such attribution.\n\n(c) Review of Customer Applications. At Google\u2019s request, Customer will submit Customer Application(s) and Project(s) to Google for review to ensure compliance with the Agreement (including the AUP).\n\n3.2.4 Restrictions Against Misusing the Services.\n\n(a) No Scraping. Customer will not extract, export, scrape, or cache Google Maps Content for use outside the Services. For example, Customer will not:(i) pre-fetch, index, store, reshare, or rehost Google Maps Content outside the services; (ii) bulk download geocodes; (iii) copy business names, addresses, or user reviews; or (iv) use Google Maps Content with text-to-speech services. Caching is permitted for certain Services as described in the Maps Service Specific Terms.\n\n(b) No Creating Content From Google Maps Content. Customer will not create content based on Google Maps Content, including tracing, digitizing, or creating other datasets based on Google Maps Content.\n\n(c) No Re-Creating Google Products or Features. Customer will not use the Services to create a product or service with features that are substantially similar to or that re-create the features of another Google product or service. Customer\u2019s product or service must contain substantial, independent value and features beyond the Google products or services. For example, Customer will not: (i) re-distribute the Google Maps Core Services or pass them off as if they were Customer\u2019s services; (ii) create a substitute of the Google Maps Core Services, Google Maps, or Google Maps mobile apps, or their features; (iii) use the Google Maps Core Services in a listings or directory service or to create or augment an advertising product; (iv) combine data from the Directions API, Geolocation API, and Maps SDK for Android to create real-time navigation functionality substantially similar to the functionality provided by the Google Maps for Android mobile app.\n\n(d) No Use With Non-Google Maps. Customer will not use the Google Maps Core Services in a Customer Application that contains a non-Google map. For example, Customer will not (i) display Places listings on a non-Google map, or (ii) display Street View imagery and non-Google maps in the same Customer Application.\n\n(e) No Circumventing Fees. Customer will not circumvent the applicable Fees. For example, Customer will not create multiple billing accounts or Projects to avoid incurring Fees; prevent Google from accurately calculating Customer\u2019s Service usage levels; abuse any free Service quotas; or offer access to the Services under a \u201ctime-sharing\u201d or \u201cservice bureau\u201d model.\n\n(f) No Use in Prohibited Territories. Customer will not distribute or market in a Prohibited Territory any Customer Application(s) that use the Google Maps Core Services.\n\n(g) No Use in Embedded Vehicle Systems. Customer will not use the Google Maps Core Services in connection with any Customer Application or device embedded in a vehicle. For example, Customer will not create a Customer Application that (i) is embedded in an in-dashboard automotive infotainment system; and (ii) allows End Users to request driving directions from the Directions API.\n\n(h) No Modifying Search Results Integrity. Customer will not modify any of the Service\u2019s search results.\n\n(i) No Use for High Risk Activities. Customer will not use the Google Maps Core Services for High Risk Activities.\n\n3.2.5 Benchmarking. Customer may not publicly disclose directly or through a third party the results of any comparative or compatibility testing, benchmarking, or evaluation of the Services (each, a \u201cTest\u201d), unless the disclosure includes all information necessary for Google or a third party to replicate the Test. If Customer conducts, or directs a third party to conduct, a Test of the Services and publicly discloses the results directly or through a third party, then Google (or a Google directed third party) may conduct Tests of any publicly available cloud products or services provided by Customer and publicly disclose the results of any such Test (which disclosure will include all information necessary for Customer or a third party to replicate the Test).\n4. Customer Obligations. \n\n4.1 Customer Domains and Applications. Customer must list in the Admin Console each authorized domain and application that uses the Services. Customer is responsible for ensuring that only authorized domains and applications use the Services.\n\n4.2 Compliance. Customer will: (a) ensure that Customer\u2019s and its End Users\u2019 use of the Services complies with the Agreement, including the applicable Services\u2019 AUP and URL Terms; and (b) use commercially reasonable efforts to prevent, promptly notify Google of, and terminate any unauthorized use of or access to its Account(s) or the Services.\n\n4.3 Documentation. Google may provide Documentation for Customer\u2019s use of the Services. The Documentation may specify restrictions (e.g. attribution or HTML restrictions) on how the Services may be used and Customer will comply with any such restrictions specified.\n\n4.4 Copyright Policy. Google provides information to help copyright holders manage their intellectual property online, but Google cannot determine whether something is being used legally or not without their input. Google responds to notices of alleged copyright infringement and terminates accounts of repeat infringers according to applicable copyright laws including in particular the process set out in the U.S. Digital Millennium Copyright Act. If Customer thinks somebody is violating Customer\u2019s or Customer End Users\u2019 copyrights and wants to notify Google, Customer can find information about submitting notices, and Google\u2019s policy about responding to notices at https://www.google.com/dmca.html.\n\n4.5 Data Use, Protection, and Privacy.\n\n4.5.1 Data Use and Retention. To provide the Services through the Customer Application(s), Google must receive and collect data from End Users and Customer, including search terms, IP addresses, and latitude/longitude coordinates. Customer acknowledges and agrees that Google and its Affiliates may use and retain this data to provide and improve Google products and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n4.5.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\n4.5.3 General Privacy Requirements.\n\n(a) End User Privacy. Customer\u2019s use of the Services in the Customer Application will comply with applicable privacy laws, including laws regarding Services that store and access Cookies on End Users\u2019 devices. If Customer has End Users in the European Economic Area, Customer will comply with the EU End User Consent Policy at https://www.google.com/about/company/user-consent-policy.html.\n\n(b) End User Personal Data. Through the normal functioning of the Google Maps Core Services, End Users provide device identifiers and Personal Data directly to Google, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/. However, Customer acknowledges and agrees that Customer will not provide these categories of data to Google.\n\n(c) End User Location Privacy Requirements. To safeguard End Users\u2019 location privacy, Customer will ensure that the Customer Application(s): (i) notify End Users in advance of (y) the type(s) of data that Customer intends to collect from the End Users or the End Users\u2019 devices, and (z) the combination and use of End User\u2019s location with any other data provider\u2019s data; and (ii) will not obtain or cache any End User\u2019s location except with the End User\u2019s express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions Violations. Google may Suspend the Services without prior notice if Customer breaches Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Violations or Emergency Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP Violations) and 5.2.2 (Emergency Security Issues). Any Suspension under those Sections will be to the minimum extent and for the shortest duration required to: (a) prevent or terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c) comply with applicable law.\n\n5.2.1 AUP Violations. If Google becomes aware that Customer\u2019s or any End User\u2019s use of the Services violates the AUP, Google will give Customer notice of such violation by requesting that Customer correct the violation. If Customer fails to correct such violation within 24 hours, or if Google is otherwise required by applicable law to take action, then Google may Suspend all or part of Customer\u2019s use of the Services.\n\n5.2.2 Emergency Security Issues. Google may immediately Suspend Customer\u2019s use of the Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend such use immediately to comply with applicable law. At Customer\u2019s request, unless prohibited by applicable law, Google will notify Customer of the basis for the Suspension as soon as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights Infringement. If the Customer Application is alleged to infringe a third party\u2019s Intellectual Property Rights, Google may require Customer to suspend distributing or selling the Customer Application on 30 days\u2019 written notice until such allegation is fully resolved. In any event, this Section 5.3 does not reduce Customer\u2019s obligations under Section 15 (Indemnification).\n6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as expressly stated in this Agreement, this Agreement does not grant either party any rights, implied or otherwise, to the other\u2019s content or any of the other\u2019s intellectual property. As between the parties, Customer owns all Intellectual Property Rights in the Customer Application, and Google owns all Intellectual Property Rights in the Services and Software.\n\n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google may use that information without obligation to Customer, and Customer irrevocably assigns to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices and License Terms.\n\nCertain components of the Services (including open source software) are subject to third-party copyright and other Intellectual Property Rights, as specified in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and (b) separate, publicly-available third-party license terms, which Google will provide to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will provide Maps Technical Support Services to Customer in accordance with the Maps Technical Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n9.1 Google will notify Customer at least 12 months before making material discontinuance(s) or backwards incompatible change(s) to the Services, unless Google reasonably determines that: (a) Google cannot do so by law or by contract (including if there is a change in applicable law or contract) or (b) continuing to provide the Services could create a (i) security risk or (ii) substantial economic or technical burden.\n\n9.2 Section 9.1 applies to the Services listed at https://cloud.google.com/maps-platform/terms/maps-deprecation/. If Google deprecates any Services that are not listed at the above URL, Google will use commercially reasonable efforts to minimize the adverse impacts of such deprecations.\n10. Confidential Information.\n\n10.1 Obligations. The recipient will not disclose the Confidential Information, except to Affiliates, employees, agents or professional advisors who need to know it and who have agreed in writing (or in the case of professional advisors are otherwise bound) to keep it confidential. Subject to Section 10.2 (Required Disclosure), the recipient will ensure that those people and entities use the received Confidential Information only to exercise rights and fulfill obligations under this Agreement, while using reasonable care to keep it confidential.\n\n10.2 Required Disclosure. The recipient may disclose the other party\u2019s Confidential Information to the extent required by applicable Legal Process; provided that the recipient uses commercially reasonable efforts to: (a) promptly notify the other party of such disclosure before disclosing; and (b) comply with the other party\u2019s reasonable requests regarding its efforts to oppose the disclosure. Notwithstanding the foregoing, subsections (a) and (b) above will not apply if the recipient determines that complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii) obstruct a governmental investigation; and/or (iii) lead to death or serious physical harm to an individual. As between the parties, Customer is responsible for responding to all third party requests concerning its use and Customer End Users\u2019 use of the Services.\n11. Term and Termination.\n\n11.1 Agreement Term. The \u201cTerm\u201d of this Agreement will begin on the Effective Date and continue until the Agreement is terminated under this Section.\n\n11.2 Termination for Breach. Either party may terminate this Agreement for breach if: (a) the other party is in material breach of the Agreement and fails to cure that breach within 30 days after receipt of written notice; or (b) the other party ceases its business operations or becomes subject to insolvency proceedings and the proceedings are not dismissed within 90 days. In addition, Google may terminate any, all, or any portion of the Services or Projects, if Customer meets any of the conditions in subsections (a) or (b).\n\n11.3 Termination for Inactivity. Google reserves the right to terminate provision of Service(s) to a Project on 30 days advance notice if, for more than 180 days, such Project (a) has not made any requests to the Services from any Customer Applications; or (b) such Project has not incurred any Fees for such Service(s).\n\n11.4 Termination for Convenience. Customer may stop using the Services at any time. Subject to any financial commitments expressly made by this Agreement, Customer may terminate this Agreement for its convenience at any time on prior written notice and upon termination, must cease use of the applicable Services. Google may terminate this Agreement for its convenience at any time without liability to Customer.\n\n11.5 Effects of Termination. \n\n11.5.1 If the Agreement is terminated, then: (a) the rights granted by one party to the other will immediately cease; (b) all Fees owed by Customer to Google are immediately due upon receipt of the final electronic bill; and (c) Customer will delete the Software and any content from the Services by the termination effective date.\n\n11.5.2 The following will survive expiration or termination of the Agreement: Section 2 (Payment Terms), Section 3.2 (License Requirements and Restrictions), Section 4.5 (Data Use, Protection, and Privacy), Section 6 (Intellectual Property; Feedback), Section 10 (Confidential Information), Section 11.5 (Effects of Termination), Section 14 (Disclaimer), Section 15 (Indemnification), Section 16 (Limitation of Liability), Section 19 (Miscellaneous), and Section 20 (Definitions).\n12. Publicity.\n\nCustomer may state publicly that it is a customer of the Services, consistent with the Trademark Guidelines. If Customer wants to display Google Brand Features in connection with its use of the Services, Customer must obtain written permission from Google through the process specified in the Trademark Guidelines. Google may include Customer\u2019s name or Brand Features in a list of Google customers, online or in promotional materials. Google may also verbally reference Customer as a customer of the Services. Neither party needs approval if it is repeating a public statement that is substantially similar to a previously-approved public statement. Any use of a party\u2019s Brand Features will inure to the benefit of the party holding Intellectual Property Rights to those Brand Features. A party may revoke the other party\u2019s right to use its Brand Features under this Section with written notice to the other party and a reasonable period to stop the use. Where applicable, Customer may use Google Maps Content in accordance with the \u201cUsing Google Maps, Google Earth and Street View\u201d permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy, which will be considered \u201cGoogle\u2019s prior written consent\u201d for the permitted uses.\n13. Representations and Warranties.\n\nEach party represents and warrants that: (a) it has full power and authority to enter into the Agreement; and (b) it will comply with Export Control Laws and Anti-Bribery Laws applicable to its provision, receipt, or use, of the Services, as applicable.\n14. Disclaimer.\n\n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED USE OF THE SERVICES OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION ACCESSIBLE THROUGH THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES EXPRESSLY STATED IN THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES ARE PROVIDED FOR PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES MAY DIFFER FROM ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION. CUSTOMER MUST EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT THE CUSTOMER APPLICATION IS SAFE FOR END USERS AND OTHER THIRD PARTIES.\n15. Indemnification.\n\n15.1 By Customer. Unless prohibited by applicable law, Customer will defend Google and its Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer\u2019s or an End User\u2019s use of the Services in violation of the Agreement.\n\n15.2 By Google. Google will defend Customer and its Affiliates participating under the Agreement (\u201cCustomer Indemnified Parties\u201d), and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from an allegation that Customer Indemnified Parties\u2019 use in accordance with the Agreement of Google Indemnified Materials infringes the third party\u2019s Intellectual Property Rights.\n\n15.3 Exclusions. This Section 15 will not apply to the extent the underlying allegation arises from (a) the indemnified party\u2019s breach of the Agreement or (b) a combination of the indemnifying party\u2019s technology or Brand Features with materials not provided by the indemnifying party, unless the combination is required by the Agreement.\n\n15.4 Conditions. Sections 15.1 and 15.2 will apply only to the extent:\n\n(a) The indemnified party has promptly notified the indemnifying party in writing of any Allegation(s) that preceded the Third-Party Legal Proceeding and cooperates reasonably with the indemnifying party to resolve the Allegation(s) and Third-Party Legal Proceeding. If breach of this Section 15.4(a) prejudices the defense of the Third-Party Legal Proceeding, the indemnifying party\u2019s obligations under Section 15.1 or 15.2 (as applicable) will be reduced in proportion to the prejudice.\n\n(b) The indemnified party tenders sole control of the indemnified portion of the Third-Party Legal Proceeding to the indemnifying party, subject to the following: (i) the indemnified party may appoint its own non-controlling counsel, at its own expense; and (ii) any settlement requiring the indemnified party to admit liability, pay money, or take (or refrain from taking) any action, will require the indemnified party\u2019s prior written consent, not to be unreasonably withheld, conditioned, or delayed.\n\n15.5 Remedies.\n\n(a) If Google reasonably believes the Services might infringe a third party\u2019s Intellectual Property Rights, then Google may, at its sole option and expense: (i) procure the right for Customer to continue using the Services; (ii) modify the Services to make them non-infringing without materially reducing their functionality; or (iii) replace the Services with a non-infringing, functionally equivalent alternative.\n\n(b) If Google does not believe the remedies in Section 15.5(a) are commercially reasonable, then Google may suspend or terminate Customer\u2019s use of the impacted Services.\n\n15.6 Sole Rights and Obligations. Without affecting either party\u2019s termination rights, this Section 15 states the parties\u2019 sole and exclusive remedy under this Agreement for any third party\u2019s Intellectual Property Rights Allegations and Third-Party Legal Proceedings covered by this Section 15 (Indemnification).\n16. Limitation of Liability.\n\n16.1 Limitation on Indirect Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PARTIES AND GOOGLE\u2019S LICENSORS, WILL NOT BE LIABLE UNDER THIS AGREEMENT FOR LOST REVENUES OR PROFITS (WHETHER DIRECT OR INDIRECT), INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE PARTY OR LICENSOR, AS APPLICABLE, KNEW OR SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY A REMEDY.\n\n16.2 Limitation on Amount of Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PARTIES AND GOOGLE\u2019S LICENSORS, MAY NOT BE HELD LIABLE UNDER THIS AGREEMENT FOR MORE THAN THE AMOUNT PAID BY CUSTOMER TO GOOGLE UNDER THIS AGREEMENT DURING THE TWELVE MONTHS BEFORE THE EVENT GIVING RISE TO LIABILITY.\n\n16.3 Exceptions to Limitations. These limitations of liability do not apply to breaches of confidentiality obligations, violations of a party\u2019s Intellectual Property Rights by the other party, or Customer\u2019s payment obligations.\n17. Advertising.\n\nIn its sole discretion, Customer may configure the Service to either display or not display advertisements served by Google.\n18. U.S. Federal Agency Users.\n\nThe Services were developed solely at private expense and are commercial computer software and related documentation within the meaning of the applicable Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\n19.1 Notices. All notices must be in writing and addressed to the other party\u2019s legal department and primary point of contact. The email address for notices being sent to Google\u2019s Legal Department is legal-notices@google.com. Notice will be treated as given on receipt as verified by written or automated receipt or by electronic log (as applicable).\n\n19.2 Assignment. Neither party may assign any part of this Agreement without the written consent of the other, except to an Affiliate where: (a) the assignee has agreed in writing to be bound by the terms of this Agreement; (b) the assigning party remains liable for obligations under the Agreement if the assignee defaults on them; and (c) the assigning party has notified the other party of the assignment. Any other attempt to assign is void.\n\n19.3 Change of Control. If a party experiences a change of Control (for example, through a stock purchase or sale, merger, or other form of corporate transaction): (a) that party will give written notice to the other party within 30 days after the change of Control; and (b) the other party may immediately terminate this Agreement any time between the change of Control and 30 days after it receives that written notice.\n\n19.4 Force Majeure. Neither party will be liable for failure or delay in performance to the extent caused by circumstances beyond its reasonable control, including acts of God, natural disasters, terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations under the Agreement but will remain liable to Customer for any subcontracted obligations.\n\n19.6 No Agency. This Agreement does not create any agency, partnership or joint venture between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived any rights by not exercising (or delaying the exercise of) any rights under this Agreement.\n\n19.8 Severability. If any term (or part of a term) of this Agreement is invalid, illegal, or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party Beneficiaries. This Agreement does not confer any benefits on any third party unless it expressly states that it does.\n\n19.10 Equitable Relief. Nothing in this Agreement will limit either party\u2019s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n19.11.1 For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county or state government entity, then the Agreement will be silent regarding governing law and venue.\n\n19.11.2 For U.S. Federal Government Entities. If Customer is a U.S. federal government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA, EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I) THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA\u2019S CONFLICT OF LAWS RULES) WILL APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n19.11.3 For All Other Entities. If Customer is any entity not listed in Section 19.11.1 or 19.11.2 then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE\u2019S CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\n19.12 Amendments. Except as stated in Section 1.5.2 (Modifications; To the Agreement), any amendment must be in writing, signed by both parties, and expressly state that it is amending this Agreement.\n\n19.13 Entire Agreement. This Agreement sets out all terms agreed between the parties and supersedes all other agreements between the parties relating to its subject matter. In entering into this Agreement, neither party has relied on, and neither party will have any right or remedy based on, any statement, representation or warranty (whether made negligently or innocently), except those expressly stated in this Agreement. The terms located at any URL referenced in this Agreement and the Documentation are incorporated by reference into the Agreement. After the Effective Date, Google may provide an updated URL in place of any URL in this Agreement.\n\n19.14 Conflicting Terms. If there is a conflict between the documents that make up this Agreement, the documents will control in the following order: the Agreement, and the terms at any URL. \n\n19.15 Conflicting Translations. If this Agreement is translated into any other language, and there is a discrepancy between the English text and the translated text, the English text will govern.\n20. Reseller Orders.\n\nThis Section applies if Customer orders the Services from a Reseller under a Reseller Agreement (including the Reseller Order Form).\n\n20.1 Orders. If Customer orders Services from Reseller, then: (a) fees for the Services will be set between Customer and Reseller, and any payments will be made directly to Reseller under the Reseller Agreement; (b) Section 2 of this Agreement (Payment Terms) will not apply to the Services; (c) Customer will receive any applicable SLA credits from Reseller, if owed to Customer in accordance with the SLA; and (d) Google will have no obligation to provide any SLA credits to a Customer who orders Services from the Reseller.\n\n20.2 Conflicting Terms. If Customer orders Google Maps Core Services from a Reseller and if any documents conflict, then the documents will control in the following order: the Agreement, the terms at any URL (including the URL Terms), Reseller Order Form. For example, if there is a conflict between the Maps Service Specific Terms and the Reseller Order Form, the Maps Service Specific Terms will control.\n\n20.3 Reseller as Administrator. At Customer\u2019s discretion, Reseller may access Customer\u2019s Projects, Accounts, or the Services on behalf of Customer. As between Google and Customer, Customer is solely responsible for: (a) any access by Reseller to Customer\u2019s Account(s), Project(s), or the Services; and (b) defining in the Reseller Agreement any rights or obligations as between Reseller and Customer with respect to the Accounts, Projects, or Services.\n\n20.4 Reseller Verification of Customer Application(s). Before providing the Services, Reseller may also verify that Customer owns or controls the Customer Applications. If Reseller determines that Customer does not own or control the Customer Applications, then Google will have no obligation to provide the Services to Customer.\n21. Definitions.\n\n\"Account\" means Customer\u2019s Google Account.\n\n\"Admin Console\" means the online console(s) and/or tool(s) provided by Google to Customer for administering the Services.\n\n\"Affiliate\" means any entity that directly or indirectly Controls, is Controlled by, or is under common Control with a party.\n\n\"Allegation\" means an unaffiliated third party\u2019s allegation.\n\n\u201cAnti-Bribery Laws\u201d means all applicable commercial and public anti-bribery laws, (for example, the U.S. Foreign Corrupt Practices Act of 1977 and the UK Bribery Act 2010), which prohibit corrupt offers of anything of value, either directly or indirectly, to anyone, including government officials, to obtain or keep business or to secure any other improper commercial advantage. \u201cGovernment officials\u201d include any government employee; candidate for public office; and employee of government-owned or government-controlled companies, public international organizations, and political parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the then-current Acceptable Use Policy for the Services at: https://cloud.google.com/maps-platform/terms/aup/.\n\n\"Brand Features\" means the trade names, tradmarks, service marks, logos, domain names, and other distinctive brand features of each party, respectively, as secured by such party.\n\n\"Committed Purchase(s)\" has the meaning provided in the Maps Service Specific Terms.\n\n\"Confidential Information\" means information that one party (or an Affiliate) discloses to the other party under this Agreement, and which is marked as confidential or would normally under the circumstances be considered confidential information. It does not include information that is independently developed by the recipient, is rightfully given to the recipient by a third party without confidentiality obligations, or becomes public through no fault of the recipient.\n\n\"Control\" means control of greater than 50% of the voting rights or equity interests of a party.\n\n\"Customer Application\" means any web domain or application (including all source code and features) owned or controlled by Customer, or that Customer is authorized to use.\n\n\"Customer End User\" or \"End User\" means an individual or entity that Customer permits to use the Services or Customer Application(s).\n\n\u201cCustomer Indemnified Materials\u201d means the Customer Application and Customer Brand Features.\n\n\"Documentation\" means the Google documentation (as may be updated) in the form generally made available by Google for use with the Services at https://developers.google.com/maps/documentation.\n\n\"Emergency Security Issue\" means either: (a) Customer\u2019s or Customer End Users\u2019 use of the Services in violation of the AUP, which could disrupt: (i) the Services; (ii) other customers\u2019 or their customer end users\u2019 use of the Services; or (iii) the Google network or servers used to provide the Services; or (b) unauthorized third party access to the Services.\n\n\"Europe\" or \"European\" means European Economic Area or Switzerland.\n\n\u201cExport Control Laws\u201d means all applicable export and re-export control laws and regulations, including any applicable munitions- or defense-related regulations (for example, the International Traffic in Arms Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual Period\" means a calendar month or another period specified by Google in the Admin Console.\n\n\"Fee Threshold\" means the threshold (as may be updated), as applicable for certain Services, as set out in the Admin Console.\n\n\u201cFeedback\u201d means feedback or suggestions about the Services provided by Customer to Google.\n\n\"Fees\" means the product of the amount of Services used or ordered by Customer multiplied by the Prices, plus any applicable Taxes.\n\n\"Google Indemnified Materials\" means Google's technology used to provide the Services (excluding any open source software) and Google's Brand Features.\n\n\"Google Maps Content\" means any content provided through the Services (whether created by Google or its third-party licensors), including map and terrain data, imagery, traffic data, and places data (including business listings).\n\n\"High Risk Activities\" means activities where the use or failure of the Services could lead to death, personal injury, or environmental damage, including (a) emergency response services; (b) autonomous and semi-autonomous vehicle or drone control; (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation.\n\n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs finally awarded against the indemnified party and its Affiliates by a court of competent jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual Property Rights\" means current and future worldwide rights under patent, copyright, trade secret, trademark, and moral rights laws, and other similar rights.\n\n\"Legal Process\" means a data disclosure request made under law, governmental regulation, court order, subpoena, warrant, governmental regulatory or agency request, or other valid legal authority, legal procedure, or similar process.\n\n\"Maps Service Specific Terms\" means the then-current terms specific to one or more Services at https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\n\"Maps Technical Support Services\" means the technical support service provided by Google to Customer under the then-current Maps Technical Support Services Guidelines.\n\n\"Maps Technical Support Services Guidelines\" means the then-current technical support service guidelines at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Package Purchase\" has the meaning set out in the Maps Service Specific Terms.\n\n\"Personal Data\" has the meaning provided in the General Data Protection Regulation (EU) 2016/679 of the European Parliament and of the Council of April 27, 2016.\n\n\"Price\" means the then-current applicable price(s) stated at https://cloud.google.com/maps-platform/pricing/sheet/.\n\n\"Prohibited Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources for a particular Customer Application.\n\n\"Reseller\" means, if applicable, the authorized reseller that sells or supplies the Services to Customer.\n\n\"Reseller Agreement\" means, if applicable, a separate, independent agreement between Customer and Reseller regarding the Services.\n\n\"Reseller Order Form\" means an order form entered into by Reseller and Customer, subject to the Reseller Agreement.\n\n\"Services\" and \"Google Maps Core Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/. The Services include the Google Maps Content and the Software.\n\n\"SLA\" or \"Service Level Agreement\" means each of the then-current service level agreements at: https://cloud.google.com/maps-platform/terms/sla/.\n\n\"Software\" means any downloadable tools, software development kits, or other computer software provided by Google for use as part of the Services, including updates.\n\n\"Taxes\" means any duties, customs fees, or taxes (other than Google\u2019s income tax) associated with the purchase of the Services, including any related penalties or interest.\n\n\"Term\" has the meaning stated in Section 1.6 of this Agreement.\n\n\u201cTerms URL\u201d means the following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated third party before a court or government tribunal (including any appellate proceeding).\n\n\"Trademark Guidelines\" means (a) Google\u2019s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html; and (b) the \u201cUse of Trademarks\u201d section of the \u201cUsing Google Maps, Google Earth and Street View\u201d permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark policy.\n\n\u201cURL Terms\u201d means the following, which will control in the following order if there is a conflict:\n\n(a) the Maps Service Specific Terms;\n\n(b) the SLA;\n\n(c) the AUP;\n\n(d) the Maps Technical Support Services Guidelines;\n\n(e) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and\n\n(f) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html.", + "json": "google-maps-tos-2018-10-31.json", + "yaml": "google-maps-tos-2018-10-31.yml", + "html": "google-maps-tos-2018-10-31.html", + "license": "google-maps-tos-2018-10-31.LICENSE" + }, + { + "license_key": "google-maps-tos-2019-05-02", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2019-05-02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Maps Platform Terms of Service\n\nLast modified: May 02, 2019\n\nIf you have entered into an offline variant of this Agreement, the terms below do not apply, and your offline agreement governs your use of the Google Maps Core Services.\n\nIf your billing account is in Brazil, please review these Terms of Service, which apply to your use of Google Cloud Platform.\n\nSe a sua conta para faturamento \u00e9 no Brasil, por gentileza veja o Termos de Servi\u00e7o, que ser\u00e1 o Termo aplic\u00e1vel \u00e0 sua utiliza\u00e7\u00e3o da Google Maps Platform.\n\nGoogle Maps Platform License Agreement\n\nThis Google Maps Platform License Agreement (the \"Agreement\") is made and entered into between Google and the entity or person agreeing to these terms (\"Customer\"). \"Google\" means either (i) Google Commerce Limited (\u201cGCL\u201d), a company incorporated under the laws of Ireland, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer has a billing address in the EU and has chosen \u201cnon-business\u201d as the tax status/setting for its Google account, (ii) Google Ireland Limited, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer's billing address is in any country within Europe, the Middle East, or Africa (\"EMEA\"), (iii) Google Asia Pacific Pte. Ltd., with offices at 70 Pasir Panjang Road, #03-71, Mapletree Business City II Singapore 117371, if Customer's billing address is in any country within the Asia Pacific region (\"APAC\") except as provided below for Customers with the billing address in Japan, New Zealand, or Australia, (iv) Google Cloud Japan G.K., with offices at Roppongi Hills Mori Tower, 10-1, Roppongi 6-chome, Minato-ku Tokyo, if Customer\u2019s billing address is in Japan, (v) Google Australia Pty Ltd., with offices at Level 5, 48 Pirrama Road, Pyrmont, NSW 2009 Australia, if Customer\u2019s billing address is in Australia, (vi) Google Cloud Canada Corporation, with offices at 111 Richmond Street West, Toronto, ON M5H 2G4, Canada, if Customer\u2019s billing address is in Canada, or (vii) Google LLC, with offices at 1600 Amphitheatre Parkway, Mountain View, California 94043, if Customer's billing address is in any country in the world other than those in EMEA and APAC. For Customers with a billing address in New Zealand, this Agreement is made and entered into by and between Customer and Google New Zealand Limited, with offices at PWC Tower, Level 27, 188 Quay Street, Auckland, New Zealand 1010, as an authorized reseller in New Zealand of the Services and \u201cGoogle\u201d means Google Asia Pacific Pte. Ltd. and/or its affiliates (including Google New Zealand Limited) as the context requires.\n\nThis Agreement is effective as of the date Customer clicks to accept the Agreement, or enters into a Reseller Agreement if purchasing through a Reseller (the \"Effective Date\"). If you are accepting on behalf of Customer, you represent and warrant that: (i) you have full legal authority to bind Customer to this Agreement; (ii) you have read and understand this Agreement; and (iii) you agree, on behalf of Customer, to this Agreement. If you do not have the legal authority to bind Customer, please do not click to accept. This Agreement governs Customer's access to and use of the Services.\n\nFor an offline variant of this Agreement, you may contact Google for more information.\n1. Provision of the Services.\n\n1.1 Use of the Services in Customer Applications. Google will provide the Services to Customer in accordance with the applicable SLA, and Customer may use the Google Maps Core Services in Customer Application(s) in accordance with Section 3 (License).\n\n1.2 Admin Console; Projects; API Keys. Customer will administer the Services through the online Admin Console. To access the Services, Customer must create Project(s) and use its API key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer must have an Account. Customer is responsible for: (a) the information it provides in connection with the Account; (b) maintaining the confidentiality and security of the Account and associated passwords; and (c) any use of its Account.\n\n1.4 Customer Domains and Applications. Customer must list in the Admin Console each authorized domain and application that uses the Services. Customer is responsible for ensuring that only authorized domains and applications use the Services.\n\n1.5 New Features and Services. Google may: (a) make new features or functionality available through the Services and (b) add new services to the \"Services\" definition (by adding them at the URL stated under that definition). Customer\u2019s use of new features or functionality may be contingent on Customer\u2019s agreement to additional terms applicable to the new feature or functionality.\n\n1.6 Modifications.\n\n1.6.1 To the Services. Google may make changes to the Services, subject to Section 9 (Deprecation Policy), which may include adding, updating, or discontinuing any Services or portion or feature(s) of the Services. Google will notify Customer of any material change to the Services.\n\n1.6.2. To the Agreement. Google may make changes to this Agreement, including pricing (and any linked documents). Unless otherwise noted by Google, material changes to the Agreement will become effective 30 days after notice is given, except if the changes apply to new functionality in which case they will be effective immediately. Google will provide at least 90 days advance notice for materially adverse changes to any SLAs by: (a) sending an email to Customer\u2019s primary point of contact; (b) posting a notice in the Admin Console; or (c) posting a notice to the applicable SLA webpage. If Customer does not agree to the revised Agreement, Customer should stop using the Services. Google will post any modification to this Agreement to the Terms URL.\n2. Payment Terms.\n\n2.1 Free Quota. Certain Services are provided to Customer without charge up to the Fee Threshold, as applicable.\n\n2.2 Online Billing. At the end of the applicable Fee Accrual Period, Google will issue an electronic bill to Customer for all charges accrued above the Fee Threshold based on (a) Customer\u2019s use of the Services during the previous Fee Accrual Period; (b) any Committed Purchases selected; and (c) any Package Purchases selected. For use above the Fee Threshold, Customer will be responsible for all Fees up to the amount set in the Account and will pay all Fees in the currency set forth in the invoice. If Customer elects to pay by credit card, debit card, or other non-invoiced form of payment, Google will charge (and Customer will pay) all Fees immediately at the end of the Fee Accrual Period. If Customer elects to pay by invoice (and Google agrees), all Fees are due as stated in the invoice. Customer\u2019s obligation to pay all Fees is non-cancellable. Google's measurement of Customer\u2019s use of the Services is final. Google has no obligation to provide multiple bills. Payments made via wire transfer must include the bank information provided by Google. If Customer has entered into the Agreement with GCL, Google may collect payments via Google Payment Limited, a company incorporated in England and Wales with offices at Belgrave House, 76 Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\n2.3 Taxes.\n\n2.3.1 Customer is responsible for any Taxes, and Customer will pay Google for the Services without any reduction for Taxes. If Google is obligated to collect or pay Taxes, the Taxes will be invoiced to Customer, unless Customer provides Google with a timely and valid tax exemption certificate authorized by the appropriate taxing authority. In some states the sales tax is due on the total purchase price at the time of sale and must be invoiced and collected at the time of the sale. If Customer is required by law to withhold any Taxes from its payments to Google, Customer must provide Google with an official tax receipt or other appropriate documentation to support such withholding. If under the applicable tax legislation the Services are subject to local VAT and the Customer is required to make a withholding of local VAT from amounts payable to Google, the value of Services calculated in accordance with the above procedure will be increased (grossed up) by the Customer for the respective amount of local VAT and the grossed up amount will be regarded as a VAT inclusive price. Local VAT amount withheld from the VAT-inclusive price will be remitted to the applicable local tax entity by the Customer and Customer will ensure that Google will receives payment for its services for the net amount as would otherwise be due (the VAT inclusive price less the local VAT withheld and remitted to applicable tax authority).\n\n2.3.2 If required under applicable law, Customer will provide Google with applicable tax identification information that Google may require to ensure its compliance with applicable tax regulations and authorities in applicable jurisdictions. Customer will be liable to pay (or reimburse Google for) any taxes, interest, penalties or fines arising out of any mis-declaration by the Customer.\n\n2.4 Invoice Disputes & Refunds. Any invoice disputes must be submitted before the payment due date. If the parties determine that certain billing inaccuracies are attributable to Google, Google will not issue a corrected invoice, but will instead issue a credit memo specifying the incorrect amount in the affected invoice. If the disputed invoice has not yet been paid, Google will apply the credit memo amount to the disputed invoice and Customer will be responsible for paying the resulting net balance due on that invoice. To the fullest extent permitted by law, Customer waives all claims relating to Fees unless claimed within 60 days after charged (this does not affect any Customer rights with its credit card issuer). Refunds (if any) are at the discretion of Google and will only be in the form of credit for the Services. Nothing in this Agreement obligates Google to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. Late payments may bear interest at the rate of 1.5% per month (or the highest rate permitted by law, if less) from the payment due date until paid in full. Customer will be responsible for all reasonable expenses (including attorneys\u2019 fees) incurred by Google in collecting such delinquent amounts. If Customer is late on payment for the Services, Google may suspend the Services or terminate the Agreement for breach under Section 11.2 (Termination for Breach).\n\n2.6 No Purchase Order Number Required. Google is not required to provide a purchase order number on Google\u2019s invoice (or otherwise).\n3. License.\n\n3.1 License Grant. Subject to this Agreement's terms, during the Term, Google grants to Customer a non-exclusive, non-transferable, non-sublicensable, license to use the Services in Customer Application(s), which may be: (a) fee-based or non-fee-based; (b) public/external or private/internal; (c) business-to-business or business-to-consumer; or (d) asset tracking.\n\n3.2 License Requirements and Restrictions. The following are conditions of the license granted in Section 3.1. In this Section 3.2, the phrase \u201cCustomer will not\u201d means \u201cCustomer will not, and will not permit a third party to\u201d.\n\n3.2.2 General Restrictions. Unless Google specifically agrees in writing, Customer will not: (a) copy, modify, create a derivative work of, reverse engineer, decompile, translate, disassemble, or otherwise attempt to extract any or all of the source code (except to the extent such restriction is expressly prohibited by applicable law); (b) sublicense, transfer, or distribute any of the Services; (c) sell, resell, or otherwise make the Services available as a commercial offering to a third party; or (d) access or use the Services: (i) for High Risk Activities; (ii) in a manner intended to avoid incurring Fees; (iii) for activities that are subject to the International Traffic in Arms Regulations (ITAR) maintained by the United States Department of State; (iv) on behalf of or for the benefit of any entity or person who is legally prohibited from using the Services; or (v) to transmit, store, or process Protected Health Information (as defined in and subject to HIPAA).\n\n3.2.3 Requirements for Using the Services.\n\n(a) Terms of Service and Privacy Policy. The Customer Application\u2019s terms of service will (A) notify users that the Customer Application includes Google Maps features and content; and (B) state that use of Google Maps features and content is subject to the then-current versions of the: (1) Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html; and (2) Google Privacy Policy at https://www.google.com/policies/privacy/. If the Customer Application allows users to include the Google Maps Core Services in Downstream Products, then Customer will contractually require that all Downstream Products\u2019 terms of service satisfy the same notice and flow-down requirements that apply to the Customer Application under Section 3.2.3(a)(Terms of Service and Privacy Policy). If users of the Customer Application (and Downstream Products, if any) fail to comply with applicable terms of the Google Maps/Google Earth Additional Terms of Service, then Customer will take appropriate enforcement action, including suspending or terminating those users\u2019 use of Google Maps features and content in the Customer Application or Downstream Products.\n\n(b) Attribution. Customer will display all attribution that (i) Google provides through the Services (including branding, logos, and copyright and trademark notices); or (ii) is specified in the Maps Service Specific Terms. Customer will not modify, obscure, or delete such attribution.\n\n(c) Review of Customer Applications. At Google\u2019s request, Customer will submit Customer Application(s) and Project(s) to Google for review to ensure compliance with the Agreement (including the AUP).\n\n3.2.4 Restrictions Against Misusing the Services.\n\n(a) No Scraping. Customer will not extract, export, or otherwise scrape Google Maps Content for use outside the Services. For example, Customer will not: (i) pre-fetch, index, store, reshare, or rehost Google Maps Content outside the services; (ii) bulk download Google Maps tiles, Street View images, geocodes, directions, distance matrix results, roads information, places information, elevation values, and time zone details; (iii) copy and save business names, addresses, or user reviews; or (iv) use Google Maps Content with text-to-speech services.\n\n(b) No Caching. Customer will not cache Google Maps Content except as expressly permitted under the Maps Service Specific Terms.\n\n(c) No Creating Content From Google Maps Content. Customer will not create content based on Google Maps Content. For example, Customer will not: (i) trace or digitize roadways, building outlines, utility posts, or electrical lines from the Maps JavaScript API Satellite base map type; (ii) create 3D building models from 45\u00b0 Imagery from Maps JavaScript API; (iii) build terrain models based on elevation values from the Elevation API; (iv) use latitude/longitude values from the Places API as an input for point-in-polygon analysis; (v) construct an index of tree locations within a city from Street View imagery; or (vi) convert text-based driving times into synthesized speech results.\n\n(d) No Re-Creating Google Products or Features. Customer will not use the Services to create a product or service with features that are substantially similar to or that re-create the features of another Google product or service. Customer\u2019s product or service must contain substantial, independent value and features beyond the Google products or services. For example, Customer will not: (i) re-distribute the Google Maps Core Services or pass them off as if they were Customer\u2019s services; (ii) create a substitute of the Google Maps Core Services, Google Maps, or Google Maps mobile apps, or their features; (iii) use the Google Maps Core Services in a listings or directory service or to create or augment an advertising product; (iv) combine data from the Directions API, Geolocation API, and Maps SDK for Android to create real-time navigation functionality substantially similar to the functionality provided by the Google Maps for Android mobile app.\n\n(e) No Use With Non-Google Maps. Customer will not use the Google Maps Core Services in a Customer Application that contains a non-Google map. For example, Customer will not (i) display Places listings on a non-Google map, or (ii) display Street View imagery and non-Google maps in the same Customer Application.\n\n(f) No Circumventing Fees. Customer will not circumvent the applicable Fees. For example, Customer will not create multiple billing accounts or Projects to avoid incurring Fees, prevent Google from accurately calculating Customer\u2019s Service usage levels, abuse any free Service quotas, or offer access to the Services under a \u201ctime-sharing\u201d or \u201cservice bureau\u201d model.\n\n(g) No Use in Prohibited Territories. Customer will not distribute or market in a Prohibited Territory any Customer Application(s) that use the Google Maps Core Services.\n\n(h) No Use in Embedded Vehicle Systems. Customer will not use the Google Maps Core Services in connection with any Customer Application or device embedded in a vehicle. For example, Customer will not create a Customer Application that (i) is embedded in an in-dashboard automotive infotainment system; and (ii) allows End Users to request driving directions from the Directions API.\n\n(i) No Modifying Search Results Integrity. Customer will not modify any of the Service\u2019s search results.\n\n3.2.5 Benchmarking. Customer may not publicly disclose directly or through a third party the results of any comparative or compatibility testing, benchmarking, or evaluation of the Services (each, a \u201cTest\u201d), unless the disclosure includes all information necessary for Google or a third party to replicate the Test. If Customer conducts, or directs a third party to conduct, a Test of the Services and publicly discloses the results directly or through a third party, then Google (or a Google directed third party) may conduct Tests of any publicly available cloud products or services provided by Customer and publicly disclose the results of any such Test (which disclosure will include all information necessary for Customer or a third party to replicate the Test).\n4. Customer Obligations. \n\n4.1 Compliance. Customer will: (a) ensure that Customer\u2019s and its End Users\u2019 use of the Services complies with the Agreement; and (b) use commercially reasonable efforts to prevent, promptly notify Google of, and terminate any unauthorized use of or access to its Account(s) or the Services.\n\n4.2 Documentation. Google may provide Documentation for Customer\u2019s use of the Services. The Documentation may specify restrictions (e.g. attribution or HTML restrictions) on how the Services may be used and Customer will comply with any such restrictions specified.\n\n4.3 Copyright Policy. Google provides information to help copyright holders manage their intellectual property online, but Google cannot determine whether something is being used legally or not without their input. Google responds to notices of alleged copyright infringement and terminates accounts of repeat infringers according to applicable copyright laws including in particular the process set out in the U.S. Digital Millennium Copyright Act. If Customer thinks somebody is violating Customer\u2019s or Customer End Users\u2019 copyrights and wants to notify Google, Customer can find information about submitting notices, and Google's policy about responding to notices at https://www.google.com/dmca.html.\n\n4.4 Data Use, Protection, and Privacy.\n\n4.4.1 Data Use and Retention. To provide the Services through the Customer Application(s), Google must receive and collect data from End Users and Customer, including search terms, IP addresses, and latitude/longitude coordinates. Customer acknowledges and agrees that Google and its Affiliates may use and retain this data to provide and improve Google products and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n4.4.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\n4.4.3 End User Requirements.\n\n(a) End User Privacy. Customer\u2019s use of the Services in the Customer Application will comply with applicable privacy laws, including laws regarding Services that store and access Cookies on End Users\u2019 devices. If Customer has End Users in the European Economic Area, Customer will comply with the EU End User Consent Policy at https://www.google.com/about/company/user-consent-policy.html.\n\n(b) End User Personal Data. Through the normal functioning of the Google Maps Core Services, End Users provide personally identifiable information and Personal Data directly to Google, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/. However, Customer acknowledges and agrees that Customer will not provide these categories of data to Google.\n\n(c) End User Location Privacy Requirements. To safeguard End Users\u2019 location privacy, Customer will ensure that the Customer Application(s): (i) notify End Users in advance of (1) the type(s) of data that Customer intends to collect from the End Users or the End Users\u2019 devices, and (2) the combination and use of End User's location with any other data provider's data; and (ii) will not obtain or cache any End User's location except with the End User's express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions Violations. Google may Suspend the Services without prior notice if Customer breaches Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Violations or Emergency Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP Violations) and 5.2.2 (Emergency Security Issues). Any Suspension under those Sections will be to the minimum extent and for the shortest duration required to: (a) prevent or terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c) comply with applicable law.\n\n5.2.1 AUP Violations. If Google becomes aware that Customer\u2019s or any End User\u2019s use of the Services violates the AUP, Google will give Customer notice of such violation by requesting that Customer correct the violation. If Customer fails to correct such violation within 24 hours, or if Google is otherwise required by applicable law to take action, then Google may Suspend all or part of Customer\u2019s use of the Services.\n\n5.2.2 Emergency Security Issues. Google may immediately Suspend Customer\u2019s use of the Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend such use immediately to comply with applicable law. At Customer\u2019s request, unless prohibited by applicable law, Google will notify Customer of the basis for the Suspension as soon as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights Infringement. If the Customer Application is alleged to infringe a third party\u2019s Intellectual Property Rights, Google may require Customer to suspend distributing or selling the Customer Application with 30 days\u2019 written notice until such allegation is fully resolved. In any event, this Section 5.3 does not reduce Customer\u2019s obligations under Section 15 (Indemnification).\n6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as expressly stated in this Agreement, this Agreement does not grant either party any rights, implied or otherwise, to the other\u2019s content or any of the other\u2019s intellectual property. As between the parties, Customer owns all Intellectual Property Rights in the Customer Application, and Google owns all Intellectual Property Rights in the Services and Software.\n\n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google may use that information without obligation to Customer, and Customer irrevocably assigns to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices and License Terms.\n\nCertain components of the Services (including open source software) are subject to third-party copyright and other Intellectual Property Rights, as specified in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and (b) separate, publicly-available third-party license terms, which Google will provide to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will provide Maps Technical Support Services to Customer in accordance with the Maps Technical Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n9.1 Google will notify Customer at least 12 months before making material discontinuance(s) or backwards incompatible change(s) to the Services, unless Google reasonably determines that: (a) Google cannot do so by law or by contract (including if there is a change in applicable law or contract) or (b) continuing to provide the Services could create a (i) security risk or (ii) substantial economic or technical burden.\n\n9.2 Section 9.1 applies to the Services listed at https://cloud.google.com/maps-platform/terms/maps-deprecation/. If Google deprecates any Services that are not listed at the above URL, Google will use commercially reasonable efforts to minimize the adverse impacts of such deprecations.\n10. Confidential Information.\n\n10.1 Obligations. Subject to Section 10.2 (Required Disclosure), the recipient will use the other party\u2019s Confidential Information only to exercise its rights and fulfill its obligations under the Agreement. The recipient will use reasonable care to protect against disclosure of the other party\u2019s Confidential Information to parties other than the recipient\u2019s employees, Affiliates, agents, or professional advisors (\u201cDelegates\u201d) who need to know it and who have a legal obligation to keep it confidential. The recipient will ensure that its Delegates are also subject to the same non-disclosure and use obligations.\n\n10.2 Required Disclosure. The recipient may disclose the other party\u2019s Confidential Information to the extent required by applicable Legal Process; provided that the recipient uses commercially reasonable efforts to: (a) promptly notify the other party of such disclosure before disclosing; and (b) comply with the other party\u2019s reasonable requests regarding its efforts to oppose the disclosure. Notwithstanding the foregoing, subsections (a) and (b) above will not apply if the recipient determines that complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii) obstruct a governmental investigation; and/or (iii) lead to death or serious physical harm to an individual. As between the parties, Customer is responsible for responding to all third party requests concerning its use and Customer End Users\u2019 use of the Services.\n11. Term and Termination.\n\n11.1 Agreement Term. The \u201cTerm\u201d of this Agreement will begin on the Effective Date and continue until the Agreement is terminated under this Section.\n\n11.2 Termination for Breach. Either party may terminate this Agreement for breach if: (a) the other party is in material breach of the Agreement and fails to cure that breach within 30 days after receipt of written notice; or (b) the other party ceases its business operations or becomes subject to insolvency proceedings and the proceedings are not dismissed within 90 days. In addition, Google may terminate any, all, or any portion of the Services or Projects, if Customer meets any of the conditions in subsections (a) or (b).\n\n11.3 Termination for Inactivity. Google reserves the right to terminate provision of Service(s) to a Project on 30 days advance notice if, for more than 180 days, such Project (a) has not made any requests to the Services from any Customer Applications; or (b) such Project has not incurred any Fees for such Service(s).\n\n11.4 Termination for Convenience. Customer may stop using the Services at any time. Subject to any financial commitments expressly made by this Agreement, Customer may terminate this Agreement for its convenience at any time on prior written notice and upon termination, must cease use of the applicable Services. Google may terminate this Agreement for its convenience at any time without liability to Customer.\n\n11.5 Effects of Termination. \n\n11.5.1 If the Agreement is terminated, then: (a) the rights granted by one party to the other will immediately cease; (b) all Fees owed by Customer to Google are immediately due upon receipt of the final electronic bill; and (c) Customer will delete the Software and any content from the Services by the termination effective date.\n\n11.5.2 The following will survive expiration or termination of the Agreement: Section 2 (Payment Terms), Section 3.2 (License Requirements and Restrictions), Section 4.4 (Data Use, Protection, and Privacy), Section 6 (Intellectual Property; Feedback), Section 10 (Confidential Information), Section 11.5 (Effects of Termination), Section 14 (Disclaimer), Section 15 (Indemnification), Section 16 (Limitation of Liability), Section 19 (Miscellaneous), and Section 20 (Definitions).\n12. Publicity.\n\nCustomer may state publicly that it is a customer of the Services, consistent with the Trademark Guidelines. If Customer wants to display Google Brand Features in connection with its use of the Services, Customer must obtain written permission from Google through the process specified in the Trademark Guidelines. Google may include Customer\u2019s name or Brand Features in a list of Google customers, online or in promotional materials. Google may also verbally reference Customer as a customer of the Services. Neither party needs approval if it is repeating a public statement that is substantially similar to a previously-approved public statement. Any use of a party\u2019s Brand Features will inure to the benefit of the party holding Intellectual Property Rights to those Brand Features. A party may revoke the other party\u2019s right to use its Brand Features under this Section with written notice to the other party and a reasonable period to stop the use.\n13. Representations and Warranties.\n\nEach party represents and warrants that: (a) it has full power and authority to enter into the Agreement; and (b) it will comply with Export Control Laws and Anti-Bribery Laws applicable to its provision, receipt, or use, of the Services, as applicable.\n14. Disclaimer.\n\n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED USE OF THE SERVICES OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION ACCESSIBLE THROUGH THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES EXPRESSLY STATED IN THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES ARE PROVIDED FOR PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES MAY DIFFER FROM ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION. CUSTOMER MUST EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT THE CUSTOMER APPLICATION IS SAFE FOR END USERS AND OTHER THIRD PARTIES.\n15. Indemnification.\n\n15.1 By Customer. Unless prohibited by applicable law, Customer will defend Google and its Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer\u2019s or an End User\u2019s use of the Services in violation of the AUP or in violation of the Agreement.\n\n15.2 By Google. Google will defend Customer and its Affiliates participating under the Agreement (\u201cCustomer Indemnified Parties\u201d), and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from an allegation that Customer Indemnified Parties' use of Google Indemnified Materials infringes the third party's Intellectual Property Rights.\n\n15.3 Exclusions. This Section 15 will not apply to the extent the underlying allegation arises from (a) the indemnified party\u2019s breach of the Agreement or (b) a combination of the indemnifying party\u2019s technology or Brand Features with materials not provided by the indemnifying party, unless the combination is required by the Agreement.\n\n15.4 Conditions. Sections 15.1 and 15.2 will apply only to the extent:\n\n(a) The indemnified party has promptly notified the indemnifying party in writing of any Allegation(s) that preceded the Third-Party Legal Proceeding and cooperates reasonably with the indemnifying party to resolve the Allegation(s) and Third-Party Legal Proceeding. If breach of this Section 15.4(a) prejudices the defense of the Third-Party Legal Proceeding, the indemnifying party\u2019s obligations under Section 15.1 or 15.2 (as applicable) will be reduced in proportion to the prejudice.\n\n(b) The indemnified party tenders sole control of the indemnified portion of the Third-Party Legal Proceeding to the indemnifying party, subject to the following: (i) the indemnified party may appoint its own non-controlling counsel, at its own expense; and (ii) any settlement requiring the indemnified party to admit liability, pay money, or take (or refrain from taking) any action, will require the indemnified party\u2019s prior written consent, not to be unreasonably withheld, conditioned, or delayed.\n\n15.5 Remedies.\n\n(a) If Google reasonably believes the Services might infringe a third party\u2019s Intellectual Property Rights, then Google may, at its sole option and expense: (i) procure the right for Customer to continue using the Services; (ii) modify the Services to make them non-infringing without materially reducing their functionality; or (iii) replace the Services with a non-infringing, functionally equivalent alternative.\n\n(b) If Google does not believe the remedies in Section 15.5(a) are commercially reasonable, then Google may suspend or terminate Customer\u2019s use of the impacted Services.\n\n15.6 Sole Rights and Obligations. Without affecting either party\u2019s termination rights, this Section 15 states the parties\u2019 sole and exclusive remedy under this Agreement for any third party's Intellectual Property Rights Allegations and Third-Party Legal Proceedings covered by this Section 15 (Indemnification).\n16. Limitation of Liability.\n\n16.1 Limitation on Indirect Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PARTIES AND GOOGLE\u2019S LICENSORS, WILL NOT BE LIABLE UNDER THIS AGREEMENT FOR LOST REVENUES OR PROFITS (WHETHER DIRECT OR INDIRECT), SAVINGS, GOODWILL, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE PARTY OR LICENSOR, AS APPLICABLE, KNEW OR SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY A REMEDY.\n\n16.2 Limitation on Amount of Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PARTIES AND GOOGLE\u2019S LICENSORS, MAY NOT BE HELD LIABLE UNDER THIS AGREEMENT FOR MORE THAN THE AMOUNT PAID BY CUSTOMER TO GOOGLE UNDER THIS AGREEMENT DURING THE TWELVE MONTHS BEFORE THE EVENT GIVING RISE TO LIABILITY.\n\n16.3 Exceptions to Limitations. These limitations of liability do not apply to breaches of confidentiality obligations, violations of a party\u2019s Intellectual Property Rights by the other party, or Customer's payment obligations.\n17. Advertising.\n\nIn its sole discretion, Customer may configure the Service to either display or not display advertisements served by Google.\n18. U.S. Federal Agency Users.\n\nThe Services were developed solely at private expense and are commercial computer software and related documentation within the meaning of the applicable Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\n19.1 Notices. All notices must be in writing and addressed to the other party\u2019s legal department and primary point of contact. The email address for notices being sent to Google\u2019s Legal Department is legal-notices@google.com. Notice will be treated as given on receipt as verified by written or automated receipt or by electronic log (as applicable).\n\n19.2 Assignment. Neither party may assign any part of this Agreement without the written consent of the other, except to an Affiliate where: (a) the assignee has agreed in writing to be bound by the terms of this Agreement; (b) the assigning party remains liable for obligations under the Agreement if the assignee defaults on them; and (c) the assigning party has notified the other party of the assignment. Any other attempt to assign is void.\n\n19.3 Change of Control. If a party experiences a change of Control (for example, through a stock purchase or sale, merger, or other form of corporate transaction): (a) that party will give written notice to the other party within 30 days after the change of Control; and (b) the other party may immediately terminate this Agreement any time between the change of Control and 30 days after it receives that written notice.\n\n19.4 Force Majeure. Neither party will be liable for failure or delay in performance to the extent caused by circumstances beyond its reasonable control, including acts of God, natural disasters, terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations under the Agreement but will remain liable to Customer for any subcontracted obligations.\n\n19.6 No Agency. This Agreement does not create any agency, partnership or joint venture between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived any rights by not exercising (or delaying the exercise of) any rights under this Agreement.\n\n19.8 Severability. If any term (or part of a term) of this Agreement is invalid, illegal, or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party Beneficiaries. This Agreement does not confer any benefits on any third party unless it expressly states that it does.\n\n19.10 Equitable Relief. Nothing in this Agreement will limit either party\u2019s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n19.11.1 For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county or state government entity, then the Agreement will be silent regarding governing law and venue.\n\n19.11.2 For U.S. Federal Government Entities. If Customer is a U.S. federal government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA, EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I) THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA\u2019S CONFLICT OF LAWS RULES) WILL APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n19.11.3 For All Other Entities. If Customer is any entity not listed in Section 19.11.1 or 19.11.2 then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE\u2019S CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\n19.12 Amendments. Except as stated in Section 1.5.2 (Modifications; To the Agreement), any amendment must be in writing, signed by both parties, and expressly state that it is amending this Agreement.\n\n19.13 Entire Agreement. This Agreement sets out all terms agreed between the parties and supersedes all other agreements between the parties relating to its subject matter. In entering into this Agreement, neither party has relied on, and neither party will have any right or remedy based on, any statement, representation or warranty (whether made negligently or innocently), except those expressly stated in this Agreement. The terms located at any URL referenced in this Agreement and the Documentation are incorporated by reference into the Agreement. After the Effective Date, Google may provide an updated URL in place of any URL in this Agreement.\n\n19.14 Conflicting Terms. If there is a conflict between the documents that make up this Agreement, the documents will control in the following order: the Agreement, and the terms at any URL. \n\n19.15 Conflicting Translations. If this Agreement is translated into any other language, and there is a discrepancy between the English text and the translated text, the English text will govern.\n20. Reseller Orders.\n\nThis Section applies if Customer orders the Services from a Reseller under a Reseller Agreement (including the Reseller Order Form).\n\n20.1 Orders. If Customer orders Services from Reseller, then: (a) fees for the Services will be set between Customer and Reseller, and any payments will be made directly to Reseller under the Reseller Agreement; (b) Section 2 of this Agreement (Payment Terms) will not apply to the Services; (c) Customer will receive any applicable SLA credits from Reseller, if owed to Customer in accordance with the SLA; and (d) Google will have no obligation to provide any SLA credits to a Customer who orders Services from the Reseller.\n\n20.2 Conflicting Terms. If Customer orders Google Maps Core Services from a Reseller and if any documents conflict, then the documents will control in the following order: the Agreement, the terms at any URL (including the URL Terms), Reseller Order Form. For example, if there is a conflict between the Maps Service Specific Terms and the Reseller Order Form, the Maps Service Specific Terms will control.\n\n20.3 Reseller as Administrator. At Customer's discretion, Reseller may access Customer's Projects, Accounts, or the Services on behalf of Customer. As between Google and Customer, Customer is solely responsible for: (a) any access by Reseller to Customer\u2019s Account(s), Project(s), or the Services; and (b) defining in the Reseller Agreement any rights or obligations as between Reseller and Customer with respect to the Accounts, Projects, or Services.\n\n20.4 Reseller Verification of Customer Application(s). Before providing the Services, Reseller may also verify that Customer owns or controls the Customer Applications. If Reseller determines that Customer does not own or control the Customer Applications, then Google will have no obligation to provide the Services to Customer.\n21. Definitions.\n\n\"Account\" means Customer\u2019s Google Account.\n\n\"Admin Console\" means the online console(s) and/or tool(s) provided by Google to Customer for administering the Services.\n\n\"Affiliate\" means any entity that directly or indirectly Controls, is Controlled by, or is under common Control with a party.\n\n\"Allegation\" means an unaffiliated third party\u2019s allegation.\n\n\u201cAnti-Bribery Laws\u201d means all applicable commercial and public anti-bribery laws, (for example, the U.S. Foreign Corrupt Practices Act of 1977 and the UK Bribery Act 2010), which prohibit corrupt offers of anything of value, either directly or indirectly, to anyone, including government officials, to obtain or keep business or to secure any other improper commercial advantage. \u201cGovernment officials\u201d include any government employee; candidate for public office; and employee of government-owned or government-controlled companies, public international organizations, and political parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the then-current Acceptable Use Policy for the Services at: https://cloud.google.com/maps-platform/terms/aup/.\n\n\"Brand Features\" means the trade names, trademarks, service marks, logos, domain names, and other distinctive brand features of each party, respectively, as secured by such party.\n\n\"Confidential Information\" means information that one party (or an Affiliate) discloses to the other party under this Agreement, and which is marked as confidential or would normally under the circumstances be considered confidential information. It does not include information that is independently developed by the recipient, is rightfully given to the recipient by a third party without confidentiality obligations, or becomes public through no fault of the recipient.\n\n\"Control\" means control of greater than 50% of the voting rights or equity interests of a party.\n\n\"Customer Application\" means any web domain or application (including all source code and features) owned or controlled by Customer, or that Customer is authorized to use.\n\n\"Customer End User\" or \"End User\" means an individual or entity that Customer permits to use the Services or Customer Application(s).\n\n\u201cCustomer Indemnified Materials\u201d means the Customer Application and Customer Brand Features.\n\n\"Documentation\" means the Google documentation (as may be updated) in the form generally made available by Google for use with the Services at https://developers.google.com/maps/documentation.\n\n\"Emergency Security Issue\" means either: (a) Customer\u2019s or Customer End Users\u2019 use of the Services in violation of the AUP, which could disrupt: (i) the Services; (ii) other customers\u2019 or their customer end users\u2019 use of the Services; or (iii) the Google network or servers used to provide the Services; or (b) unauthorized third party access to the Services.\n\n\"Europe\" or \"European\" means European Economic Area or Switzerland.\n\n\u201cExport Control Laws\u201d means all applicable export and re-export control laws and regulations, including any applicable munitions- or defense-related regulations (for example, the International Traffic in Arms Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual Period\" means a calendar month or another period specified by Google in the Admin Console.\n\n\"Fee Threshold\" means the threshold (as may be updated), as applicable for certain Services, as set out in the Admin Console.\n\n\u201cFeedback\u201d means feedback or suggestions about the Services provided by Customer to Google.\n\n\"Fees\" means the product of the amount of Services used or ordered by Customer multiplied by the Prices, plus any applicable Taxes.\n\n\"Google Indemnified Materials\" means Google's technology used to provide the Services (excluding any open source software) and Google's Brand Features.\n\n\"Google Maps Content\" means any content provided through the Services (whether created by Google or its third-party licensors), including map and terrain data, imagery, traffic data, and places data (including business listings).\n\n\"High Risk Activities\" means activities where the use or failure of the Services could lead to death, personal injury, or environmental damage, including (a) emergency response services; (b) autonomous and semi-autonomous vehicle or drone control; (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation.\n\n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs finally awarded against the indemnified party and its Affiliates by a court of competent jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual Property Rights\" means current and future worldwide rights under patent, copyright, trade secret, trademark, and moral rights laws, and other similar rights.\n\n\"Legal Process\" means a data disclosure request made under law, governmental regulation, court order, subpoena, warrant, governmental regulatory or agency request, or other valid legal authority, legal procedure, or similar process.\n\n\"Maps Service Specific Terms\" means the then-current terms specific to one or more Services at https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\n\"Maps Technical Support Services\" means the technical support service provided by Google to Customer under the then-current Maps Technical Support Services Guidelines.\n\n\"Maps Technical Support Services Guidelines\" means the then-current technical support service guidelines at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Personal Data\" has the meaning provided in the General Data Protection Regulation (EU) 2016/679 of the European Parliament and of the Council of April 27, 2016.\n\n\"Price\" means the then-current applicable price(s) stated at https://cloud.google.com/maps-platform/pricing/sheet/.\n\n\"Prohibited Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources for a particular Customer Application.\n\n\"Reseller\" means, if applicable, the authorized reseller that sells or supplies the Services to Customer.\n\n\"Reseller Agreement\" means, if applicable, a separate, independent agreement between Customer and Reseller regarding the Services.\n\n\"Reseller Order Form\" means an order form entered into by Reseller and Customer, subject to the Reseller Agreement.\n\n\"Services\" and \"Google Maps Core Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/. The Services include the Google Maps Content and the Software.\n\n\"SLA\" or \"Service Level Agreement\" means each of the then-current service level agreements at: https://cloud.google.com/maps-platform/terms/sla/.\n\n\"Software\" means any downloadable tools, software development kits, or other computer software provided by Google for use as part of the Services, including updates.\n\n\"Taxes\" means any duties, customs fees, or taxes (other than Google\u2019s income tax) associated with the purchase of the Services, including any related penalties or interest.\n\n\"Term\" has the meaning stated in Section 1.6 of this Agreement.\n\n\u201cTerms URL\u201d means the following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated third party before a court or government tribunal (including any appellate proceeding).\n\n\"Trademark Guidelines\" means (a) Google\u2019s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html; and (b) the \u201cUse of Trademarks\u201d section of the \u201cUsing Google Maps, Google Earth and Street View\u201d permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark policy.\n\n\u201cURL Terms\u201d means the following, which will control in the following order if there is a conflict:\n\n(a) the Maps Service Specific Terms;\n\n(b) the SLA;\n\n(c) the AUP;\n\n(d) the Maps Technical Support Services Guidelines;\n\n(e) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and\n\n(f) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html.", + "json": "google-maps-tos-2019-05-02.json", + "yaml": "google-maps-tos-2019-05-02.yml", + "html": "google-maps-tos-2019-05-02.html", + "license": "google-maps-tos-2019-05-02.LICENSE" + }, + { + "license_key": "google-maps-tos-2019-11-21", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2019-11-21", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Maps Platform Terms of Service\n\nLast modified: November 21, 2019\nThis is not the current version of this document and is provided for archival purposes.View the current version\n\nIf you have entered into an offline variant of this Agreement, the terms below do not apply, and your offline agreement governs your use of the Google Maps Core Services.\n\nIf your billing account is in Brazil, please review these Terms of Service, which apply to your use of Google Cloud Platform.\n\nSe a sua conta para faturamento \u00e9 no Brasil, por gentileza veja o Termos de Servi\u00e7o, que ser\u00e1 o Termo aplic\u00e1vel \u00e0 sua utiliza\u00e7\u00e3o da Google Maps Platform.\n\nGoogle Maps Platform License Agreement\n\nThis Google Maps Platform License Agreement (the \"Agreement\") is made and entered into between Google and the entity or person agreeing to these terms (\"Customer\"). \"Google\" means either (i) Google Commerce Limited (\u201cGCL\u201d), a company incorporated under the laws of Ireland, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer has a billing address in the EU and has chosen \u201cnon-business\u201d as the tax status/setting for its Google account, (ii) Google Ireland Limited, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer's billing address is in any country within Europe, the Middle East, or Africa (\"EMEA\"), (iii) Google Asia Pacific Pte. Ltd., with offices at 70 Pasir Panjang Road, #03-71, Mapletree Business City II Singapore 117371, if Customer's billing address is in any country within the Asia Pacific region (\"APAC\") except as provided below for Customers with a billing address in Japan, South Korea, New Zealand, or Australia, (iv) Google Cloud Canada Corporation, with offices at 111 Richmond Street West, Toronto, ON M5H 2G4, Canada, if Customer\u2019s billing address is in Canada, or (v) Google LLC, with offices at 1600 Amphitheatre Parkway, Mountain View, California 94043, if Customer's billing address is in any country in the world other than those in Canada, EMEA and APAC.\n\nFor Customers with a billing address in Japan, South Korea, Australia, or New Zealand, \"Google\" means Google Asia Pacific Pte. Ltd and/or its affiliates as the context requires, provided further that: this Agreement is made and entered into by and between Customer and the following entity as an authorized reseller of the Services:\n\n for customers in Australia: Google Australia Pty Ltd., with offices at Level 5, 48 Pirrama Road, Pyrmont, NSW 2009 Australia;\n\n for customers in Japan: Google Cloud Japan G.K., with offices at Roppongi Hills Mori Tower, 10-1, Roppongi 6-chome, Minato-ku Tokyo;\n\n for customers in South Korea: Google Cloud Korea LLC, with offices at Gangnam Finance Center 20fl., 152 Teheran-ro, Gangnam-gu, Seoul, South Korea; and\n\n for customers in New Zealand: Google New Zealand Limited, with offices at PWC Tower, Level 27, 188 Quay Street, Auckland, New Zealand 1010.\n\nThis Agreement is effective as of the date Customer clicks to accept the Agreement, or enters into a Reseller Agreement if purchasing through a Reseller (the \"Effective Date\"). If you are accepting on behalf of Customer, you represent and warrant that: (i) you have full legal authority to bind Customer to this Agreement; (ii) you have read and understand this Agreement; and (iii) you agree, on behalf of Customer, to this Agreement. If you do not have the legal authority to bind Customer, please do not click to accept. This Agreement governs Customer's access to and use of the Services.\n\nFor an offline variant of this Agreement, you may contact Google for more information.\n1. Provision of the Services.\n\n1.1 Use of the Services in Customer Applications. Google will provide the Services to Customer in accordance with the applicable SLA, and Customer may use the Google Maps Core Services in Customer Application(s) in accordance with Section 3 (License).\n\n1.2 Admin Console; Projects; API Keys. Customer will administer the Services through the online Admin Console. To access the Services, Customer must create Project(s) and use its API key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer must have an Account. Customer is responsible for: (a) the information it provides in connection with the Account; (b) maintaining the confidentiality and security of the Account and associated passwords; and (c) any use of its Account.\n\n1.4 Customer Domains and Applications. Customer must list in the Admin Console each authorized domain and application that uses the Services. Customer is responsible for ensuring that only authorized domains and applications use the Services.\n\n1.5 New Features and Services. Google may: (a) make new features or functionality available through the Services and (b) add new services to the \"Services\" definition (by adding them at the URL stated under that definition). Customer\u2019s use of new features or functionality may be contingent on Customer\u2019s agreement to additional terms applicable to the new feature or functionality.\n\n1.6 Modifications.\n\n1.6.1 To the Services. Google may make changes to the Services, subject to Section 9 (Deprecation Policy), which may include adding, updating, or discontinuing any Services or portion or feature(s) of the Services. Google will notify Customer of any material change to the Services.\n\n1.6.2. To the Agreement. Google may make changes to this Agreement, including pricing (and any linked documents). Unless otherwise noted by Google, material changes to the Agreement will become effective 30 days after notice is given, except if the changes apply to new functionality in which case they will be effective immediately. Google will provide at least 90 days advance notice for materially adverse changes to any SLAs by: (a) sending an email to Customer\u2019s primary point of contact; (b) posting a notice in the Admin Console; or (c) posting a notice to the applicable SLA webpage. If Customer does not agree to the revised Agreement, Customer should stop using the Services. Google will post any modification to this Agreement to the Terms URL.\n2. Payment Terms.\n\n2.1 Free Quota. Certain Services are provided to Customer without charge up to the Fee Threshold, as applicable.\n\n2.2 Online Billing. At the end of the applicable Fee Accrual Period, Google will issue an electronic bill to Customer for all charges accrued above the Fee Threshold based on (a) Customer\u2019s use of the Services during the previous Fee Accrual Period; (b) any Committed Purchases selected; and (c) any Package Purchases selected. For use above the Fee Threshold, Customer will be responsible for all Fees up to the amount set in the Account and will pay all Fees in the currency set forth in the invoice. If Customer elects to pay by credit card, debit card, or other non-invoiced form of payment, Google will charge (and Customer will pay) all Fees immediately at the end of the Fee Accrual Period. If Customer elects to pay by invoice (and Google agrees), all Fees are due as stated in the invoice. Customer\u2019s obligation to pay all Fees is non-cancellable. Google's measurement of Customer\u2019s use of the Services is final. Google has no obligation to provide multiple bills. Payments made via wire transfer must include the bank information provided by Google. If Customer has entered into the Agreement with GCL, Google may collect payments via Google Payment Limited, a company incorporated in England and Wales with offices at Belgrave House, 76 Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\n2.3 Taxes.\n\n2.3.1 Customer is responsible for any Taxes, and Customer will pay Google for the Services without any reduction for Taxes. If Google is obligated to collect or pay Taxes, the Taxes will be invoiced to Customer, unless Customer provides Google with a timely and valid tax exemption certificate authorized by the appropriate taxing authority. In some states the sales tax is due on the total purchase price at the time of sale and must be invoiced and collected at the time of the sale. If Customer is required by law to withhold any Taxes from its payments to Google, Customer must provide Google with an official tax receipt or other appropriate documentation to support such withholding. If under the applicable tax legislation the Services are subject to local VAT and the Customer is required to make a withholding of local VAT from amounts payable to Google, the value of Services calculated in accordance with the above procedure will be increased (grossed up) by the Customer for the respective amount of local VAT and the grossed up amount will be regarded as a VAT inclusive price. Local VAT amount withheld from the VAT-inclusive price will be remitted to the applicable local tax entity by the Customer and Customer will ensure that Google will receives payment for its services for the net amount as would otherwise be due (the VAT inclusive price less the local VAT withheld and remitted to applicable tax authority).\n\n2.3.2 If required under applicable law, Customer will provide Google with applicable tax identification information that Google may require to ensure its compliance with applicable tax regulations and authorities in applicable jurisdictions. Customer will be liable to pay (or reimburse Google for) any taxes, interest, penalties or fines arising out of any mis-declaration by the Customer.\n\n2.4 Invoice Disputes & Refunds. Any invoice disputes must be submitted before the payment due date. If the parties determine that certain billing inaccuracies are attributable to Google, Google will not issue a corrected invoice, but will instead issue a credit memo specifying the incorrect amount in the affected invoice. If the disputed invoice has not yet been paid, Google will apply the credit memo amount to the disputed invoice and Customer will be responsible for paying the resulting net balance due on that invoice. To the fullest extent permitted by law, Customer waives all claims relating to Fees unless claimed within 60 days after charged (this does not affect any Customer rights with its credit card issuer). Refunds (if any) are at the discretion of Google and will only be in the form of credit for the Services. Nothing in this Agreement obligates Google to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. Late payments may bear interest at the rate of 1.5% per month (or the highest rate permitted by law, if less) from the payment due date until paid in full. Customer will be responsible for all reasonable expenses (including attorneys\u2019 fees) incurred by Google in collecting such delinquent amounts. If Customer is late on payment for the Services, Google may suspend the Services or terminate the Agreement for breach under Section 11.2 (Termination for Breach).\n\n2.6 No Purchase Order Number Required. Google is not required to provide a purchase order number on Google\u2019s invoice (or otherwise).\n3. License.\n\n3.1 License Grant. Subject to this Agreement's terms, during the Term, Google grants to Customer a non-exclusive, non-transferable, non-sublicensable, license to use the Services in Customer Application(s), which may be: (a) fee-based or non-fee-based; (b) public/external or private/internal; (c) business-to-business or business-to-consumer; or (d) asset tracking.\n\n3.2 License Requirements and Restrictions. The following are conditions of the license granted in Section 3.1. In this Section 3.2, the phrase \u201cCustomer will not\u201d means \u201cCustomer will not, and will not permit a third party to\u201d.\n\n3.2.2 General Restrictions. Unless Google specifically agrees in writing, Customer will not: (a) copy, modify, create a derivative work of, reverse engineer, decompile, translate, disassemble, or otherwise attempt to extract any or all of the source code (except to the extent such restriction is expressly prohibited by applicable law); (b) sublicense, transfer, or distribute any of the Services; (c) sell, resell, or otherwise make the Services available as a commercial offering to a third party; or (d) access or use the Services: (i) for High Risk Activities; (ii) in a manner intended to avoid incurring Fees; (iii) for activities that are subject to the International Traffic in Arms Regulations (ITAR) maintained by the United States Department of State; (iv) on behalf of or for the benefit of any entity or person who is legally prohibited from using the Services; or (v) to transmit, store, or process Protected Health Information (as defined in and subject to HIPAA).\n\n3.2.3 Requirements for Using the Services.\n\n(a) Terms of Service and Privacy Policy. The Customer Application\u2019s terms of service will (A) notify users that the Customer Application includes Google Maps features and content; and (B) state that use of Google Maps features and content is subject to the then-current versions of the: (1) Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html; and (2) Google Privacy Policy at https://www.google.com/policies/privacy/. If the Customer Application allows users to include the Google Maps Core Services in Downstream Products, then Customer will contractually require that all Downstream Products\u2019 terms of service satisfy the same notice and flow-down requirements that apply to the Customer Application under Section 3.2.3(a)(Terms of Service and Privacy Policy). If users of the Customer Application (and Downstream Products, if any) fail to comply with applicable terms of the Google Maps/Google Earth Additional Terms of Service, then Customer will take appropriate enforcement action, including suspending or terminating those users\u2019 use of Google Maps features and content in the Customer Application or Downstream Products.\n\n(b) Attribution. Customer will display all attribution that (i) Google provides through the Services (including branding, logos, and copyright and trademark notices); or (ii) is specified in the Maps Service Specific Terms. Customer will not modify, obscure, or delete such attribution.\n\n(c) Review of Customer Applications. At Google\u2019s request, Customer will submit Customer Application(s) and Project(s) to Google for review to ensure compliance with the Agreement (including the AUP).\n\n3.2.4 Restrictions Against Misusing the Services.\n\n(a) No Scraping. Customer will not extract, export, or otherwise scrape Google Maps Content for use outside the Services. For example, Customer will not: (i) pre-fetch, index, store, reshare, or rehost Google Maps Content outside the services; (ii) bulk download Google Maps tiles, Street View images, geocodes, directions, distance matrix results, roads information, places information, elevation values, and time zone details; (iii) copy and save business names, addresses, or user reviews; or (iv) use Google Maps Content with text-to-speech services.\n\n(b) No Caching. Customer will not cache Google Maps Content except as expressly permitted under the Maps Service Specific Terms.\n\n(c) No Creating Content From Google Maps Content. Customer will not create content based on Google Maps Content. For example, Customer will not: (i) trace or digitize roadways, building outlines, utility posts, or electrical lines from the Maps JavaScript API Satellite base map type; (ii) create 3D building models from 45\u00b0 Imagery from Maps JavaScript API; (iii) build terrain models based on elevation values from the Elevation API; (iv) use latitude/longitude values from the Places API as an input for point-in-polygon analysis; (v) construct an index of tree locations within a city from Street View imagery; or (vi) convert text-based driving times into synthesized speech results.\n\n(d) No Re-Creating Google Products or Features. Customer will not use the Services to create a product or service with features that are substantially similar to or that re-create the features of another Google product or service. Customer\u2019s product or service must contain substantial, independent value and features beyond the Google products or services. For example, Customer will not: (i) re-distribute the Google Maps Core Services or pass them off as if they were Customer\u2019s services; (ii) create a substitute of the Google Maps Core Services, Google Maps, or Google Maps mobile apps, or their features; (iii) use the Google Maps Core Services in a listings or directory service or to create or augment an advertising product; (iv) combine data from the Directions API, Geolocation API, and Maps SDK for Android to create real-time navigation functionality substantially similar to the functionality provided by the Google Maps for Android mobile app.\n\n(e) No Use With Non-Google Maps. Customer will not use the Google Maps Core Services in a Customer Application that contains a non-Google map. For example, Customer will not (i) display Places listings on a non-Google map, or (ii) display Street View imagery and non-Google maps in the same Customer Application.\n\n(f) No Circumventing Fees. Customer will not circumvent the applicable Fees. For example, Customer will not create multiple billing accounts or Projects to avoid incurring Fees, prevent Google from accurately calculating Customer\u2019s Service usage levels, abuse any free Service quotas, or offer access to the Services under a \u201ctime-sharing\u201d or \u201cservice bureau\u201d model.\n\n(g) No Use in Prohibited Territories. Customer will not distribute or market in a Prohibited Territory any Customer Application(s) that use the Google Maps Core Services.\n\n(h) No Use in Embedded Vehicle Systems. Customer will not use the Google Maps Core Services in connection with any Customer Application or device embedded in a vehicle. For example, Customer will not create a Customer Application that (i) is embedded in an in-dashboard automotive infotainment system; and (ii) allows End Users to request driving directions from the Directions API.\n\n(i) No Modifying Search Results Integrity. Customer will not modify any of the Service\u2019s search results.\n\n3.2.5 Benchmarking. Customer may not publicly disclose directly or through a third party the results of any comparative or compatibility testing, benchmarking, or evaluation of the Services (each, a \u201cTest\u201d), unless the disclosure includes all information necessary for Google or a third party to replicate the Test. If Customer conducts, or directs a third party to conduct, a Test of the Services and publicly discloses the results directly or through a third party, then Google (or a Google directed third party) may conduct Tests of any publicly available cloud products or services provided by Customer and publicly disclose the results of any such Test (which disclosure will include all information necessary for Customer or a third party to replicate the Test).\n4. Customer Obligations. \n\n4.1 Compliance. Customer will: (a) ensure that Customer\u2019s and its End Users\u2019 use of the Services complies with the Agreement; and (b) use commercially reasonable efforts to prevent, promptly notify Google of, and terminate any unauthorized use of or access to its Account(s) or the Services.\n\n4.2 Documentation. Google may provide Documentation for Customer\u2019s use of the Services. The Documentation may specify restrictions (e.g. attribution or HTML restrictions) on how the Services may be used and Customer will comply with any such restrictions specified.\n\n4.3 Copyright Policy. Google provides information to help copyright holders manage their intellectual property online, but Google cannot determine whether something is being used legally or not without their input. Google responds to notices of alleged copyright infringement and terminates accounts of repeat infringers according to applicable copyright laws including in particular the process set out in the U.S. Digital Millennium Copyright Act. If Customer thinks somebody is violating Customer\u2019s or Customer End Users\u2019 copyrights and wants to notify Google, Customer can find information about submitting notices, and Google's policy about responding to notices at https://www.google.com/dmca.html.\n\n4.4 Data Use, Protection, and Privacy.\n\n4.4.1 Data Use and Retention. To provide the Services through the Customer Application(s), Google must receive and collect data from End Users and Customer, including search terms, IP addresses, and latitude/longitude coordinates. Customer acknowledges and agrees that Google and its Affiliates may use and retain this data to provide and improve Google products and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n4.4.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\n4.4.3 End User Requirements.\n\n(a) End User Privacy. Customer\u2019s use of the Services in the Customer Application will comply with applicable privacy laws, including laws regarding Services that store and access Cookies on End Users\u2019 devices. If Customer has End Users in the European Economic Area, Customer will comply with the EU End User Consent Policy at https://www.google.com/about/company/user-consent-policy.html.\n\n(b) End User Personal Data. Through the normal functioning of the Google Maps Core Services, End Users provide personally identifiable information and Personal Data directly to Google, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/. However, Customer acknowledges and agrees that Customer will not provide these categories of data to Google.\n\n(c) End User Location Privacy Requirements. To safeguard End Users\u2019 location privacy, Customer will ensure that the Customer Application(s): (i) notify End Users in advance of (1) the type(s) of data that Customer intends to collect from the End Users or the End Users\u2019 devices, and (2) the combination and use of End User's location with any other data provider's data; and (ii) will not obtain or cache any End User's location except with the End User's express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions Violations. Google may Suspend the Services without prior notice if Customer breaches Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Violations or Emergency Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP Violations) and 5.2.2 (Emergency Security Issues). Any Suspension under those Sections will be to the minimum extent and for the shortest duration required to: (a) prevent or terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c) comply with applicable law.\n\n5.2.1 AUP Violations. If Google becomes aware that Customer\u2019s or any End User\u2019s use of the Services violates the AUP, Google will give Customer notice of such violation by requesting that Customer correct the violation. If Customer fails to correct such violation within 24 hours, or if Google is otherwise required by applicable law to take action, then Google may Suspend all or part of Customer\u2019s use of the Services.\n\n5.2.2 Emergency Security Issues. Google may immediately Suspend Customer\u2019s use of the Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend such use immediately to comply with applicable law. At Customer\u2019s request, unless prohibited by applicable law, Google will notify Customer of the basis for the Suspension as soon as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights Infringement. If the Customer Application is alleged to infringe a third party\u2019s Intellectual Property Rights, Google may require Customer to suspend distributing or selling the Customer Application with 30 days\u2019 written notice until such allegation is fully resolved. In any event, this Section 5.3 does not reduce Customer\u2019s obligations under Section 15 (Indemnification).\n6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as expressly stated in this Agreement, this Agreement does not grant either party any rights, implied or otherwise, to the other\u2019s content or any of the other\u2019s intellectual property. As between the parties, Customer owns all Intellectual Property Rights in the Customer Application, and Google owns all Intellectual Property Rights in the Services and Software.\n\n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google may use that information without obligation to Customer, and Customer irrevocably assigns to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices and License Terms.\n\nCertain components of the Services (including open source software) are subject to third-party copyright and other Intellectual Property Rights, as specified in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and (b) separate, publicly-available third-party license terms, which Google will provide to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will provide Maps Technical Support Services to Customer in accordance with the Maps Technical Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n9.1 Google will notify Customer at least 12 months before making material discontinuance(s) or backwards incompatible change(s) to the Services, unless Google reasonably determines that: (a) Google cannot do so by law or by contract (including if there is a change in applicable law or contract) or (b) continuing to provide the Services could create a (i) security risk or (ii) substantial economic or technical burden.\n\n9.2 Section 9.1 applies to the Services listed at https://cloud.google.com/maps-platform/terms/maps-deprecation/. If Google deprecates any Services that are not listed at the above URL, Google will use commercially reasonable efforts to minimize the adverse impacts of such deprecations.\n10. Confidential Information.\n\n10.1 Obligations. Subject to Section 10.2 (Required Disclosure), the recipient will use the other party\u2019s Confidential Information only to exercise its rights and fulfill its obligations under the Agreement. The recipient will use reasonable care to protect against disclosure of the other party\u2019s Confidential Information to parties other than the recipient\u2019s employees, Affiliates, agents, or professional advisors (\u201cDelegates\u201d) who need to know it and who have a legal obligation to keep it confidential. The recipient will ensure that its Delegates are also subject to the same non-disclosure and use obligations.\n\n10.2 Required Disclosure. The recipient may disclose the other party\u2019s Confidential Information to the extent required by applicable Legal Process; provided that the recipient uses commercially reasonable efforts to: (a) promptly notify the other party of such disclosure before disclosing; and (b) comply with the other party\u2019s reasonable requests regarding its efforts to oppose the disclosure. Notwithstanding the foregoing, subsections (a) and (b) above will not apply if the recipient determines that complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii) obstruct a governmental investigation; and/or (iii) lead to death or serious physical harm to an individual. As between the parties, Customer is responsible for responding to all third party requests concerning its use and Customer End Users\u2019 use of the Services.\n11. Term and Termination.\n\n11.1 Agreement Term. The \u201cTerm\u201d of this Agreement will begin on the Effective Date and continue until the Agreement is terminated under this Section.\n\n11.2 Termination for Breach. Either party may terminate this Agreement for breach if: (a) the other party is in material breach of the Agreement and fails to cure that breach within 30 days after receipt of written notice; or (b) the other party ceases its business operations or becomes subject to insolvency proceedings and the proceedings are not dismissed within 90 days. In addition, Google may terminate any, all, or any portion of the Services or Projects, if Customer meets any of the conditions in subsections (a) or (b).\n\n11.3 Termination for Inactivity. Google reserves the right to terminate provision of Service(s) to a Project on 30 days advance notice if, for more than 180 days, such Project (a) has not made any requests to the Services from any Customer Applications; or (b) such Project has not incurred any Fees for such Service(s).\n\n11.4 Termination for Convenience. Customer may stop using the Services at any time. Subject to any financial commitments expressly made by this Agreement, Customer may terminate this Agreement for its convenience at any time on prior written notice and upon termination, must cease use of the applicable Services. Google may terminate this Agreement for its convenience at any time without liability to Customer.\n\n11.5 Effects of Termination. \n\n11.5.1 If the Agreement is terminated, then: (a) the rights granted by one party to the other will immediately cease; (b) all Fees owed by Customer to Google are immediately due upon receipt of the final electronic bill; and (c) Customer will delete the Software and any content from the Services by the termination effective date.\n\n11.5.2 The following will survive expiration or termination of the Agreement: Section 2 (Payment Terms), Section 3.2 (License Requirements and Restrictions), Section 4.4 (Data Use, Protection, and Privacy), Section 6 (Intellectual Property; Feedback), Section 10 (Confidential Information), Section 11.5 (Effects of Termination), Section 14 (Disclaimer), Section 15 (Indemnification), Section 16 (Limitation of Liability), Section 19 (Miscellaneous), and Section 20 (Definitions).\n12. Publicity.\n\nCustomer may state publicly that it is a customer of the Services, consistent with the Trademark Guidelines. If Customer wants to display Google Brand Features in connection with its use of the Services, Customer must obtain written permission from Google through the process specified in the Trademark Guidelines. Google may include Customer\u2019s name or Brand Features in a list of Google customers, online or in promotional materials. Google may also verbally reference Customer as a customer of the Services. Neither party needs approval if it is repeating a public statement that is substantially similar to a previously-approved public statement. Any use of a party\u2019s Brand Features will inure to the benefit of the party holding Intellectual Property Rights to those Brand Features. A party may revoke the other party\u2019s right to use its Brand Features under this Section with written notice to the other party and a reasonable period to stop the use.\n13. Representations and Warranties.\n\nEach party represents and warrants that: (a) it has full power and authority to enter into the Agreement; and (b) it will comply with Export Control Laws and Anti-Bribery Laws applicable to its provision, receipt, or use, of the Services, as applicable.\n14. Disclaimer.\n\n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED USE OF THE SERVICES OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION ACCESSIBLE THROUGH THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES EXPRESSLY STATED IN THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES ARE PROVIDED FOR PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES MAY DIFFER FROM ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION. CUSTOMER MUST EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT THE CUSTOMER APPLICATION IS SAFE FOR END USERS AND OTHER THIRD PARTIES.\n15. Indemnification.\n\n15.1 By Customer. Unless prohibited by applicable law, Customer will defend Google and its Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer\u2019s or an End User\u2019s use of the Services in violation of the AUP or in violation of the Agreement.\n\n15.2 By Google. Google will defend Customer and its Affiliates participating under the Agreement (\u201cCustomer Indemnified Parties\u201d), and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from an allegation that Customer Indemnified Parties' use of Google Indemnified Materials infringes the third party's Intellectual Property Rights.\n\n15.3 Exclusions. This Section 15 will not apply to the extent the underlying allegation arises from (a) the indemnified party\u2019s breach of the Agreement or (b) a combination of the indemnifying party\u2019s technology or Brand Features with materials not provided by the indemnifying party, unless the combination is required by the Agreement.\n\n15.4 Conditions. Sections 15.1 and 15.2 will apply only to the extent:\n\n(a) The indemnified party has promptly notified the indemnifying party in writing of any Allegation(s) that preceded the Third-Party Legal Proceeding and cooperates reasonably with the indemnifying party to resolve the Allegation(s) and Third-Party Legal Proceeding. If breach of this Section 15.4(a) prejudices the defense of the Third-Party Legal Proceeding, the indemnifying party\u2019s obligations under Section 15.1 or 15.2 (as applicable) will be reduced in proportion to the prejudice.\n\n(b) The indemnified party tenders sole control of the indemnified portion of the Third-Party Legal Proceeding to the indemnifying party, subject to the following: (i) the indemnified party may appoint its own non-controlling counsel, at its own expense; and (ii) any settlement requiring the indemnified party to admit liability, pay money, or take (or refrain from taking) any action, will require the indemnified party\u2019s prior written consent, not to be unreasonably withheld, conditioned, or delayed.\n\n15.5 Remedies.\n\n(a) If Google reasonably believes the Services might infringe a third party\u2019s Intellectual Property Rights, then Google may, at its sole option and expense: (i) procure the right for Customer to continue using the Services; (ii) modify the Services to make them non-infringing without materially reducing their functionality; or (iii) replace the Services with a non-infringing, functionally equivalent alternative.\n\n(b) If Google does not believe the remedies in Section 15.5(a) are commercially reasonable, then Google may suspend or terminate Customer\u2019s use of the impacted Services.\n\n15.6 Sole Rights and Obligations. Without affecting either party\u2019s termination rights, this Section 15 states the parties\u2019 sole and exclusive remedy under this Agreement for any third party's Intellectual Property Rights Allegations and Third-Party Legal Proceedings covered by this Section 15 (Indemnification).\n16. Limitation of Liability.\n\n16.1 Limitation on Indirect Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PARTIES AND GOOGLE\u2019S LICENSORS, WILL NOT BE LIABLE UNDER THIS AGREEMENT FOR LOST REVENUES OR PROFITS (WHETHER DIRECT OR INDIRECT), SAVINGS, GOODWILL, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE PARTY OR LICENSOR, AS APPLICABLE, KNEW OR SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY A REMEDY.\n\n16.2 Limitation on Amount of Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PARTIES AND GOOGLE\u2019S LICENSORS, MAY NOT BE HELD LIABLE UNDER THIS AGREEMENT FOR MORE THAN THE AMOUNT PAID BY CUSTOMER TO GOOGLE UNDER THIS AGREEMENT DURING THE TWELVE MONTHS BEFORE THE EVENT GIVING RISE TO LIABILITY.\n\n16.3 Exceptions to Limitations. These limitations of liability do not apply to violations of a party\u2019s Intellectual Property Rights by the other party or Customer's payment obligations.\n17. Advertising.\n\nIn its sole discretion, Customer may configure the Service to either display or not display advertisements served by Google.\n18. U.S. Federal Agency Users.\n\nThe Services were developed solely at private expense and are commercial computer software and related documentation within the meaning of the applicable Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\n19.1 Notices. All notices must be in writing and addressed to the other party\u2019s legal department and primary point of contact. The email address for notices being sent to Google\u2019s Legal Department is legal-notices@google.com. Notice will be treated as given on receipt as verified by written or automated receipt or by electronic log (as applicable).\n\n19.2 Assignment. Neither party may assign any part of this Agreement without the written consent of the other, except to an Affiliate where: (a) the assignee has agreed in writing to be bound by the terms of this Agreement; (b) the assigning party remains liable for obligations under the Agreement if the assignee defaults on them; and (c) the assigning party has notified the other party of the assignment. Any other attempt to assign is void.\n\n19.3 Change of Control. If a party experiences a change of Control (for example, through a stock purchase or sale, merger, or other form of corporate transaction): (a) that party will give written notice to the other party within 30 days after the change of Control; and (b) the other party may immediately terminate this Agreement any time between the change of Control and 30 days after it receives that written notice.\n\n19.4 Force Majeure. Neither party will be liable for failure or delay in performance to the extent caused by circumstances beyond its reasonable control, including acts of God, natural disasters, terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations under the Agreement but will remain liable to Customer for any subcontracted obligations.\n\n19.6 No Agency. This Agreement does not create any agency, partnership or joint venture between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived any rights by not exercising (or delaying the exercise of) any rights under this Agreement.\n\n19.8 Severability. If any term (or part of a term) of this Agreement is invalid, illegal, or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party Beneficiaries. This Agreement does not confer any benefits on any third party unless it expressly states that it does.\n\n19.10 Equitable Relief. Nothing in this Agreement will limit either party\u2019s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n19.11.1 For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county or state government entity, then the Agreement will be silent regarding governing law and venue.\n\n19.11.2 For U.S. Federal Government Entities. If Customer is a U.S. federal government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA, EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I) THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA\u2019S CONFLICT OF LAWS RULES) WILL APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n19.11.3 For All Other Entities. If Customer is any entity not listed in Section 19.11.1 or 19.11.2 then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE\u2019S CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\n19.12 Amendments. Except as stated in Section 1.5.2 (Modifications; To the Agreement), any amendment must be in writing, signed by both parties, and expressly state that it is amending this Agreement.\n\n19.13 Entire Agreement. This Agreement sets out all terms agreed between the parties and supersedes all other agreements between the parties relating to its subject matter. In entering into this Agreement, neither party has relied on, and neither party will have any right or remedy based on, any statement, representation or warranty (whether made negligently or innocently), except those expressly stated in this Agreement. The terms located at any URL referenced in this Agreement and the Documentation are incorporated by reference into the Agreement. After the Effective Date, Google may provide an updated URL in place of any URL in this Agreement.\n\n19.14 Conflicting Terms. If there is a conflict between the documents that make up this Agreement, the documents will control in the following order: the Agreement, and the terms at any URL. \n\n19.15 Conflicting Translations. If this Agreement is translated into any other language, and there is a discrepancy between the English text and the translated text, the English text will govern.\n20. Reseller Orders.\n\nThis Section applies if Customer orders the Services from a Reseller under a Reseller Agreement (including the Reseller Order Form).\n\n20.1 Orders. If Customer orders Services from Reseller, then: (a) fees for the Services will be set between Customer and Reseller, and any payments will be made directly to Reseller under the Reseller Agreement; (b) Section 2 of this Agreement (Payment Terms) will not apply to the Services; (c) Customer will receive any applicable SLA credits from Reseller, if owed to Customer in accordance with the SLA; and (d) Google will have no obligation to provide any SLA credits to a Customer who orders Services from the Reseller.\n\n20.2 Conflicting Terms. If Customer orders Google Maps Core Services from a Reseller and if any documents conflict, then the documents will control in the following order: the Agreement, the terms at any URL (including the URL Terms), Reseller Order Form. For example, if there is a conflict between the Maps Service Specific Terms and the Reseller Order Form, the Maps Service Specific Terms will control.\n\n20.3 Reseller as Administrator. At Customer's discretion, Reseller may access Customer's Projects, Accounts, or the Services on behalf of Customer. As between Google and Customer, Customer is solely responsible for: (a) any access by Reseller to Customer\u2019s Account(s), Project(s), or the Services; and (b) defining in the Reseller Agreement any rights or obligations as between Reseller and Customer with respect to the Accounts, Projects, or Services.\n\n20.4 Reseller Verification of Customer Application(s). Before providing the Services, Reseller may also verify that Customer owns or controls the Customer Applications. If Reseller determines that Customer does not own or control the Customer Applications, then Google will have no obligation to provide the Services to Customer.\n21. Definitions.\n\n\"Account\" means Customer\u2019s Google Account.\n\n\"Admin Console\" means the online console(s) and/or tool(s) provided by Google to Customer for administering the Services.\n\n\"Affiliate\" means any entity that directly or indirectly Controls, is Controlled by, or is under common Control with a party.\n\n\"Allegation\" means an unaffiliated third party\u2019s allegation.\n\n\u201cAnti-Bribery Laws\u201d means all applicable commercial and public anti-bribery laws, (for example, the U.S. Foreign Corrupt Practices Act of 1977 and the UK Bribery Act 2010), which prohibit corrupt offers of anything of value, either directly or indirectly, to anyone, including government officials, to obtain or keep business or to secure any other improper commercial advantage. \u201cGovernment officials\u201d include any government employee; candidate for public office; and employee of government-owned or government-controlled companies, public international organizations, and political parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the then-current Acceptable Use Policy for the Services at: https://cloud.google.com/maps-platform/terms/aup/.\n\n\"Brand Features\" means the trade names, trademarks, service marks, logos, domain names, and other distinctive brand features of each party, respectively, as secured by such party.\n\n\"Confidential Information\" means information that one party (or an Affiliate) discloses to the other party under this Agreement, and which is marked as confidential or would normally under the circumstances be considered confidential information. It does not include information that is independently developed by the recipient, is rightfully given to the recipient by a third party without confidentiality obligations, or becomes public through no fault of the recipient.\n\n\"Control\" means control of greater than 50% of the voting rights or equity interests of a party.\n\n\"Customer Application\" means any web page or application (including all source code and features) owned or controlled by Customer, or that Customer is authorized to use.\n\n\"Customer End User\" or \"End User\" means an individual or entity that Customer permits to use the Services or Customer Application(s).\n\n\u201cCustomer Indemnified Materials\u201d means the Customer Application and Customer Brand Features.\n\n\"Documentation\" means the Google documentation (as may be updated) in the form generally made available by Google for use with the Services at https://developers.google.com/maps/documentation.\n\n\"Emergency Security Issue\" means either: (a) Customer\u2019s or Customer End Users\u2019 use of the Services in violation of the AUP, which could disrupt: (i) the Services; (ii) other customers\u2019 or their customer end users\u2019 use of the Services; or (iii) the Google network or servers used to provide the Services; or (b) unauthorized third party access to the Services.\n\n\"Europe\" or \"European\" means European Economic Area or Switzerland.\n\n\u201cExport Control Laws\u201d means all applicable export and re-export control laws and regulations, including any applicable munitions- or defense-related regulations (for example, the International Traffic in Arms Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual Period\" means a calendar month or another period specified by Google in the Admin Console.\n\n\"Fee Threshold\" means the threshold (as may be updated), as applicable for certain Services, as set out in the Admin Console.\n\n\u201cFeedback\u201d means feedback or suggestions about the Services provided by Customer to Google.\n\n\"Fees\" means the product of the amount of Services used or ordered by Customer multiplied by the Prices, plus any applicable Taxes.\n\n\"Google Indemnified Materials\" means Google's technology used to provide the Services (excluding any open source software) and Google's Brand Features.\n\n\"Google Maps Content\" means any content provided through the Services (whether created by Google or its third-party licensors), including map and terrain data, imagery, traffic data, and places data (including business listings).\n\n\"High Risk Activities\" means activities where the use or failure of the Services could lead to death, personal injury, or environmental damage, including (a) emergency response services; (b) autonomous and semi-autonomous vehicle or drone control; (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation.\n\n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs finally awarded against the indemnified party and its Affiliates by a court of competent jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual Property Rights\" means current and future worldwide rights under patent, copyright, trade secret, trademark, and moral rights laws, and other similar rights.\n\n\"Legal Process\" means a data disclosure request made under law, governmental regulation, court order, subpoena, warrant, governmental regulatory or agency request, or other valid legal authority, legal procedure, or similar process.\n\n\"Maps Service Specific Terms\" means the then-current terms specific to one or more Services at https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\n\"Maps Technical Support Services\" means the technical support service provided by Google to Customer under the then-current Maps Technical Support Services Guidelines.\n\n\"Maps Technical Support Services Guidelines\" means the then-current technical support service guidelines at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Personal Data\" has the meaning provided in the General Data Protection Regulation (EU) 2016/679 of the European Parliament and of the Council of April 27, 2016.\n\n\"Price\" means the then-current applicable price(s) stated at https://cloud.google.com/maps-platform/pricing/sheet/.\n\n\"Prohibited Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources for a particular Customer Application.\n\n\"Reseller\" means, if applicable, the authorized unaffiliated third-party reseller that sells or supplies the Services to Customer.\n\n\"Reseller Agreement\" means, if applicable, a separate, independent agreement between Customer and Reseller regarding the Services.\n\n\"Reseller Order Form\" means an order form entered into by Reseller and Customer, subject to the Reseller Agreement.\n\n\"Services\" and \"Google Maps Core Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/. The Services include the Google Maps Content and the Software.\n\n\"SLA\" or \"Service Level Agreement\" means each of the then-current service level agreements at: https://cloud.google.com/maps-platform/terms/sla/.\n\n\"Software\" means any downloadable tools, software development kits, or other computer software provided by Google for use as part of the Services, including updates.\n\n\"Taxes\" means any duties, customs fees, or taxes (other than Google\u2019s income tax) associated with the purchase of the Services, including any related penalties or interest.\n\n\"Term\" has the meaning stated in Section 11.1 of this Agreement.\n\n\u201cTerms URL\u201d means the following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated third party before a court or government tribunal (including any appellate proceeding).\n\n\"Trademark Guidelines\" means (a) Google\u2019s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html; and (b) the \u201cUse of Trademarks\u201d section of the \u201cUsing Google Maps, Google Earth and Street View\u201d permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark policy.\n\n\u201cURL Terms\u201d means the following, which will control in the following order if there is a conflict:\n\n(a) the Maps Service Specific Terms;\n\n(b) the SLA;\n\n(c) the AUP;\n\n(d) the Maps Technical Support Services Guidelines;\n\n(e) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and\n\n(f) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html.", + "json": "google-maps-tos-2019-11-21.json", + "yaml": "google-maps-tos-2019-11-21.yml", + "html": "google-maps-tos-2019-11-21.html", + "license": "google-maps-tos-2019-11-21.LICENSE" + }, + { + "license_key": "google-maps-tos-2020-04-02", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2020-04-02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Maps Platform Terms of Service\n\nLast modified: April 2, 2020\n\nIf your billing address is in Brazil, please review these Terms of Service, which apply to your use of Google Maps Platform.\n\nSe a sua conta para faturamento \u00e9 no Brasil, por gentileza veja o Termos de Servi\u00e7o, que ser\u00e1 o Termo aplic\u00e1vel \u00e0 sua utiliza\u00e7\u00e3o da Google Maps Platform.\n\nIf your billing address is in Indonesia, please review these Terms of Service, which apply to your use of Google Maps Platform.\n\nGoogle Maps Platform License Agreement\n\nThis Google Maps Platform License Agreement (the \"Agreement\") is made and entered into between Google (as defined in Section 21 (Definitions)) and the entity or person agreeing to these terms (\"Customer\").\n\nThis Agreement is effective as of the date Customer clicks to accept the Agreement, or enters into a Reseller Agreement if purchasing through a Reseller (the \"Effective Date\"). If you are accepting on behalf of Customer, you represent and warrant that: (a) you have full legal authority to bind Customer to this Agreement; (b) you have read and understand this Agreement; and (c) you agree, on behalf of Customer, to this Agreement. If you do not have the legal authority to bind Customer, please do not click to accept. This Agreement governs Customer's access to and use of the Services.\n1. Provision of the Services.\n\n1.1 Use of the Services in Customer Applications. Google will provide the Services to Customer in accordance with the Agreement, and Customer may use the Services in Customer Application(s) in accordance with Section 3 (License).\n\n1.2 Admin Console; Projects; API Keys. Customer will administer the Services through the online Admin Console. To access the Services, Customer must create Project(s) and use its API key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer must have an Account. Customer is responsible for: (a) the information it provides in connection with the Account; (b) maintaining the confidentiality and security of the Account and associated passwords; and (c) any use of its Account.\n\n1.4 Customer Domains and Applications. Customer must list in the Admin Console each authorized domain and application that uses the Services. Customer is responsible for ensuring that only authorized domains and applications use the Services.\n\n1.5 New Features and Services. Google may: (a) make new features or functionality available through the Services and (b) add new services to the \"Services\" definition (by adding them at the URL stated under that definition). Customer\u2019s use of new features or functionality may be contingent on Customer\u2019s agreement to additional terms applicable to the new feature or functionality.\n\n1.6 Modifications.\n\n1.6.1 To the Services. Subject to Section 9 (Deprecation Policy), Google may make changes to the Services, which may include adding, updating, or discontinuing any Services or portion or feature(s) of the Services. Google will notify Customer of any material change to the Services.\n\n1.6.2. To the Agreement. Google may make changes to the Agreement, including pricing and any linked documents. Unless otherwise noted by Google, material changes to the Agreement will become effective 30 days after notice is given, except (a) materially adverse SLA changes will become effective 90 days after notice is given; and (b) changes applicable to new Services or functionality, or required by a court order or applicable law, will be effective immediately. Google will provide notice for materially adverse changes to any SLAs by: (i) sending an email to the Notification Email Address; (ii) posting a notice in the Admin Console; or (iii) posting a notice to the applicable SLA webpage. If Customer does not agree to the revised Agreement, Customer should stop using the Services. Google will post any modification to this Agreement to the Terms URL.\n2. Payment Terms.\n\n2.1 Free Quota. Certain Services are provided to Customer without charge up to the Fee Threshold, as applicable.\n\n2.2 Online Billing. At the end of the applicable Fee Accrual Period, Google will issue an electronic bill to Customer for all charges accrued above the Fee Threshold based on Customer\u2019s use of the Services during the previous Fee Accrual Period. For use above the Fee Threshold, Customer will be responsible for all Fees up to the amount set in the Account and will pay all Fees in the currency set forth in the invoice. If Customer elects to pay by credit card, debit card, or other non-invoiced form of payment, Google will charge (and Customer will pay) all Fees immediately at the end of the Fee Accrual Period. If Customer elects to pay by invoice (and Google agrees), all Fees are due as stated in the invoice. Customer\u2019s obligation to pay all Fees is non-cancellable. Google's measurement of Customer\u2019s use of the Services is final. Google has no obligation to provide multiple bills. Payments made via wire transfer must include the bank information provided by Google. If Customer has entered into the Agreement with GCL, Google may collect payments via Google Payment Limited, a company incorporated in England and Wales with offices at Belgrave House, 76 Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\n2.3 Taxes.\n\n2.3.1 Customer is responsible for any Taxes, and Customer will pay Google for the Services without any reduction for Taxes. If Google is obligated to collect or pay Taxes, the Taxes will be invoiced to Customer, unless Customer provides Google with a timely and valid tax exemption certificate authorized by the appropriate taxing authority. In some states the sales tax is due on the total purchase price at the time of sale and must be invoiced and collected at the time of the sale. If Customer is required by law to withhold any Taxes from its payments to Google, Customer must provide Google with an official tax receipt or other appropriate documentation to support such withholding. If under the applicable tax legislation the Services are subject to local VAT and the Customer is required to make a withholding of local VAT from amounts payable to Google, the value of Services calculated in accordance with the above procedure will be increased (grossed up) by Customer for the respective amount of local VAT and the grossed up amount will be regarded as a VAT inclusive price. Local VAT amount withheld from the VAT-inclusive price will be remitted to the applicable local tax entity by the Customer and Customer will ensure that Google will receive payment for its services for the net amount as would otherwise be due (the VAT inclusive price less the local VAT withheld and remitted to applicable tax authority).\n\n2.3.2 If required under applicable law, Customer will provide Google with applicable tax identification information that Google may require to ensure its compliance with applicable tax regulations and authorities in applicable jurisdictions. Customer will be liable to pay (or reimburse Google for) any taxes, interest, penalties or fines arising out of any mis-declaration by the Customer.\n\n2.4 Invoice Disputes & Refunds. Any invoice disputes must be submitted before the payment due date. If Google determines that Fees were incorrectly invoiced, then Google will issue a credit equal to the agreed amount. To the fullest extent permitted by law, Customer waives all claims relating to Fees unless claimed within 60 days after charged (this does not affect any Customer rights with its credit card issuer). Nothing in the Agreement obligates Google to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. If Customer\u2019s payment is overdue, then Google may (a) charge interest on overdue amounts at 1.5% per month (or the highest rate permitted by law, if less) from the Payment Due Date until paid in full, and (b) Suspend the Services or terminate the Agreement. Customer will reimburse Google for all reasonable expenses (including attorneys\u2019 fees) incurred by Google in collecting overdue payments except where such payments are due to Google\u2019s billing inaccuracies.\n\n2.6 No Purchase Order Number Required. Google is not required to provide a purchase order number on Google\u2019s invoice (or otherwise).\n3. License.\n\n3.1 License Grant. Subject to the Agreement's terms, during the Term, Google grants to Customer a non-exclusive, non-transferable, non-sublicensable, license to use the Services in Customer Application(s).\n\n3.2 License Requirements and Restrictions. The following are conditions of the license granted in Section 3.1 (License Grant). In this Section 3.2 (License Requirements and Restrictions), the phrase \u201cCustomer will not\u201d means \u201cCustomer will not, and will not permit a third party to\u201d.\n\n3.2.1 General Restrictions. Customer will not: (a) copy, modify, create a derivative work of, reverse engineer, decompile, translate, disassemble, or otherwise attempt to extract any or all of the source code (except to the extent such restriction is expressly prohibited by applicable law); (b) sublicense, transfer, or distribute any of the Services; (c) sell, resell, sublicense, transfer, or distribute the Services; or (d) access or use the Services: (i) for High Risk Activities; (ii) in a manner intended to avoid incurring Fees; (iii) for materials or activities that are subject to the International Traffic in Arms Regulations (ITAR) maintained by the United States Department of State; (iv) in a manner that breaches, or causes the breach of, Export Control Laws; or (v) to transmit, store, or process health information subject to United States HIPAA regulations.\n\n3.2.2 Requirements for Using the Services.\n\n(a) Terms of Service and Privacy Policy.\n\n(i) The Customer Application\u2019s terms of service will (A) notify users that the Customer Application includes Google Maps features and content; and (B) state that use of Google Maps features and content is subject to the then-current versions of the: (1) Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html; and (2) Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n(ii) If the Customer Application allows users to include the Google Maps Core Services in Downstream Products, then Customer will contractually require that all Downstream Products\u2019 terms of service satisfy the same notice and flow-down requirements that apply to the Customer Application under Section 3.2.2 (a) (i) (Terms of Service and Privacy Policy).\n\n(iii) If users of the Customer Application (and Downstream Products, if any) fail to comply with the applicable terms of the Google Maps/Google Earth Additional Terms of Service, then Customer will take appropriate enforcement action, including Suspending or terminating those users\u2019 use of Google Maps features and content in the Customer Application or Downstream Products.\n\n(b) Attribution. Customer will display all attribution that (i) Google provides through the Services (including branding, logos, and copyright and trademark notices); or (ii) is specified in the Maps Service Specific Terms. Customer will not modify, obscure, or delete such attribution.\n\n(c) Review of Customer Applications. At Google\u2019s request, Customer will submit Customer Application(s) and Project(s) to Google for review to ensure compliance with the Agreement (including the AUP).\n\n3.2.3 Restrictions Against Misusing the Services.\n\n(a) No Scraping. Customer will not export, extract, or otherwise scrape Google Maps Content for use outside the Services. For example, Customer will not: (i) pre-fetch, index, store, reshare, or rehost Google Maps Content outside the services; (ii) bulk download Google Maps tiles, Street View images, geocodes, directions, distance matrix results, roads information, places information, elevation values, and time zone details; (iii) copy and save business names, addresses, or user reviews; or (iv) use Google Maps Content with text-to-speech services.\n\n(b) No Caching. Customer will not cache Google Maps Content except as expressly permitted under the Maps Service Specific Terms.\n\n(c) No Creating Content From Google Maps Content. Customer will not create content based on Google Maps Content. For example, Customer will not: (i) trace or digitize roadways, building outlines, utility posts, or electrical lines from the Maps JavaScript API Satellite base map type; (ii) create 3D building models from 45\u00b0 Imagery from Maps JavaScript API; (iii) build terrain models based on elevation values from the Elevation API; (iv) use latitude/longitude values from the Places API as an input for point-in-polygon analysis; (v) construct an index of tree locations within a city from Street View imagery; or (vi) convert text-based driving times into synthesized speech results.\n\n(d) No Re-Creating Google Products or Features. Customer will not use the Services to create a product or service with features that are substantially similar to or that re-create the features of another Google product or service. Customer\u2019s product or service must contain substantial, independent value and features beyond the Google products or services. For example, Customer will not: (i) re-distribute the Google Maps Core Services or pass them off as if they were Customer\u2019s services; (ii) create a substitute of the Google Maps Core Services, Google Maps, or Google Maps mobile apps, or their features; (iii) use the Google Maps Core Services in a listings or directory service or to create or augment an advertising product; (iv) combine data from the Directions API, Geolocation API, and Maps SDK for Android to create real-time navigation functionality substantially similar to the functionality provided by the Google Maps for Android mobile app.\n\n(e) No Use With Non-Google Maps. To avoid quality issues and/or brand confusion, Customer will not use the Google Maps Core Services with or near a non-Google Map in a Customer Application. For example, Customer will not (i) display or use Places content on a non-Google map, (ii) display Street View imagery and non-Google maps on the same screen, or (iii) link a Google Map to non-Google Maps content for a non-Google map.\n\n(f) No Circumventing Fees. Customer will not circumvent the applicable Fees. For example, Customer will not create multiple billing accounts or Projects to avoid incurring Fees, prevent Google from accurately calculating Customer\u2019s Service usage levels, abuse any free Service quotas, or offer access to the Services under a \u201ctime-sharing\u201d or \u201cservice bureau\u201d model.\n\n(g) No Use in Prohibited Territories. Customer will not distribute or market in a Prohibited Territory any Customer Application(s) that use the Google Maps Core Services.\n\n(h) No Use in Embedded Vehicle Systems. Customer will not use the Google Maps Core Services in connection with any Customer Application or device embedded in a vehicle. For example, Customer will not create a Customer Application that (i) is embedded in an in-dashboard automotive infotainment system; and (ii) allows End Users to request driving directions from the Directions API.\n\n(i) No Use in Customer Application Directed To Children. Customer will not use the Google Maps Core Services in a Customer Application that would be deemed to be a \u201cWeb site or online service directed to children\u201d under the Children\u2019s Online Privacy Protection Act (COPPA).\n\n(j) No Modifying Search Results Integrity. Customer will not modify any of the Google Maps Core Service\u2019s search results.\n\n3.2.4 Benchmarking. Customer may not publicly disclose directly or through a third party the results of any comparative or compatibility testing, benchmarking, or evaluation of the Services (each, a \u201cTest\u201d), unless the disclosure includes all information necessary for Google or a third party to replicate the Test. If Customer conducts, or directs a third party to conduct, a Test of the Services and publicly discloses the results directly or through a third party, then Google (or a Google directed third party) may conduct Tests of any publicly available cloud products or services provided by Customer and publicly disclose the results of any such Test (which disclosure will include all information necessary for Customer or a third party to replicate the Test).\n4. Customer Obligations. \n\n4.1 Compliance. Customer will: (a) ensure that Customer\u2019s and its End Users\u2019 use of the Services complies with the Agreement; (b) prevent and terminate any unauthorized use of or access to its Account(s) or the Services; and (c) promptly notify Google of any unauthorized use of or access to its Account(s) or the Services of which Customer becomes aware.\n\n4.2 Documentation. Google may provide Documentation for Customer\u2019s use of the Services. The Documentation may specify restrictions (e.g. attribution or HTML restrictions) on how the Services may be used and Customer will comply with any such restrictions specified.\n\n4.3 Copyright Policy. Google provides information to help copyright holders manage their intellectual property online, but Google cannot determine whether something is being used legally without input from the copyright holders. Google will respond to notices of alleged copyright infringement and may terminate repeat infringers in appropriate circumstances as required to maintain safe harbor for online service providers under the U.S. Digital Millennium Copyright Act. If Customer believes a person or entity is infringing Customer\u2019s or End Users\u2019 copyrights and would like to notify Google, Customer can find information about submitting notices, and Google's policy about responding to notices at https://www.google.com/dmca.html.\n\n4.4 Data Use, Protection, and Privacy.\n\n4.4.1 Data Use and Retention. To provide the Services through the Customer Application(s), Google collects and receives data from Customer and End Users (and End Users\u2019 End Users, if any), including search terms, IP addresses, and latitude/longitude coordinates. Customer acknowledges and agrees that Google and its Affiliates may use and retain this data to provide and improve Google products and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n4.4.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\n4.4.3 End User Requirements.\n\n(a) End User Privacy. Customer\u2019s use of the Services in the Customer Application will comply with applicable privacy laws, including laws regarding Services that store and access Cookies on End Users\u2019 devices. Customer will comply with the then-current Consent Policy at https://www.google.com/about/company/user-consent-policy.html, if applicable.\n\n(b) End User Personal Data. Through the normal functioning of the Google Maps Core Services, End Users provide personally identifiable information and Personal Data directly to Google, subject to the then-current Google Privacy Policy at https://www.google.com/policies/privacy/. (a) However, Customer will not provide to Google (i) any End User\u2019s personally identifiable information; or (ii) any European End User\u2019s Personal Data (where \u201cEuropean\u201d means \u201cEuropean Economic Area, Switzerland, or the UK\u201d).\n\n(c) End User Location Privacy Requirements. To safeguard End Users\u2019 location privacy, Customer will ensure that the Customer Application(s): (i) notify End Users in advance of (1) the type(s) of data that Customer intends to collect from the End Users or the End Users\u2019 devices, and (2) the combination and use of End User's location with any other data provider's data; and (ii) will not obtain or cache any End User's location except with the End User's express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions Breaches. Google may Suspend the Services without prior notice if Customer breaches Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Breaches or Emergency Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP Breaches) and 5.2.2 (Emergency Suspension). Any Suspension under those Sections will be to the minimum extent and for the shortest duration required to: (a) prevent or terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c) comply with applicable law.\n\n5.2.1 AUP Breaches. If Google becomes aware that Customer\u2019s or any End User\u2019s use of the Services breaches the AUP, Google will give Customer notice of such breach by requesting that Customer correct the breach. If Customer fails to correct such breach within 24 hours, or if Google is otherwise required by applicable law to take action, then Google may Suspend all or part of Customer\u2019s use of the Services.\n\n5.2.2 Emergency Suspension. Google may immediately Suspend Customer\u2019s use of the Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend such use to comply with applicable law. At Customer\u2019s request, unless prohibited by applicable law, Google will notify Customer of the basis for the Suspension as soon as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights Infringement. If the Customer Application is alleged to infringe a third party\u2019s Intellectual Property Rights, Google may require Customer to suspend all use of the Google Maps Core Services in the Customer Application on 30 days\u2019 written notice until such allegation is fully resolved. In any event, this Section 5.3 (For Alleged Third-Party Intellectual Property Rights Infringement) does not reduce Customer\u2019s obligations under Section 15 (Indemnification).\n6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as expressly stated in the Agreement, the Agreement does not grant either party any rights, implied or otherwise, to the other\u2019s content or any of the other\u2019s intellectual property. As between the parties, Customer owns all Intellectual Property Rights in the Customer Application, and Google owns all Intellectual Property Rights in the Google Maps Core Services.\n\n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google may use that information without obligation to Customer, and Customer irrevocably assigns to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices and License Terms.\n\nCertain components of the Services (including open source software) are subject to third-party copyright and other Intellectual Property Rights, as specified in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and (b) separate, publicly-available third-party license terms, which Google will provide to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will provide Maps Technical Support Services to Customer in accordance with the Maps Technical Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n Google will notify Customer at least 12 months before making a Significant Deprecation, unless Google reasonably determines that: (a) Google cannot do so by law or by contract (including if there is a change in applicable law or contract) or (b) continuing to provide the Services could create a security risk or substantial economic or technical burden.\n10. Confidentiality.\n\n10.1 Confidentiality Obligations. Subject to Section 10.2 (Required Disclosure), the recipient will use the other party\u2019s Confidential Information only to exercise its rights and fulfill its obligations under the Agreement. The recipient will use reasonable care to protect against disclosure of the other party\u2019s Confidential Information to parties other than the recipient\u2019s employees, Affiliates, agents, or professional advisors (\u201cDelegates\u201d) who need to know it and are subject to confidentiality obligations at least as protective as those in this Section 10.1 (Confidentiality Obligations).\n\n10.2 Required Disclosure.\n\n10.2.1 Subject to Section 10.2.2, the recipient and its Affiliates may disclose the other party\u2019s Confidential Information to the extent required by applicable Legal Process, If the recipient and its Affiliates (as applicable) use commercially reasonable efforts to: (a) promptly notify the other party of such disclosure before disclosing; and (b) comply with the other party\u2019s reasonable requests regarding its efforts to oppose the disclosure.\n\n10.2.2 Sections 10.2.1(a) and (b) above will not apply if the recipient determines that complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii) obstruct a governmental investigation; or (iii) lead to death or serious physical harm to an individual.\n\n10.2.3 As between the parties, Customer is responsible for responding to all third party requests concerning its use and Customer End Users\u2019 use of the Services.\n11. Term and Termination.\n\n11.1 Agreement Term. The Agreement is effective from the Effective Date until it is terminated in accordance with its terms (the \u201cTerm\u201d).\n\n11.2 Termination for Breach. Either party may terminate the Agreement for breach if: (a) the other party is in material breach of the Agreement and fails to cure that breach within 30 days after receipt of written notice; (b) the other party ceases its business operations; or (c) becomes subject to insolvency proceedings and the proceedings are not dismissed within 90 days. Google may terminate Projects or access to Services, if Customer meets any of the conditions in subsections (a) or (b).\n\n11.3 Termination for Inactivity. Google may terminate Projects with 30 days' prior written notice if such Project (a) has not made any requests to the Services from any Customer Applications for more than 180 days; or (b) has not incurred any Fees for more than 180 days.\n\n11.4 Termination for Convenience. Customer may stop using the Services at any time. Subject to any financial commitments expressly made by this Agreement, Customer may terminate the Agreement for its convenience at any time with 30 days' prior written notice. Google may terminate the Agreement for its convenience at any time without liability to Customer.\n\n11.5 Effects of Termination. \n\n11.5.1 If the Agreement terminates, then: (a) the rights and access to the Services will terminate; (b) all Fees owed by Customer to Google are immediately due upon receipt of the final electronic bill; and (c) Customer will delete the Software and any content from the Services by the termination effective date.\n\n11.5.2 The following will survive expiration or termination of the Agreement: Section 2 (Payment Terms), Section 3.2 (License Requirements and Restrictions), Section 4.4 (Data Use, Protection, and Privacy), Section 6 (Intellectual Property; Feedback), Section 10 (Confidential Information), Section 11.5 (Effects of Termination), Section 14 (Disclaimer), Section 15 (Indemnification), Section 16 (Limitation of Liability), Section 19 (Miscellaneous), and Section 21 (Definitions).\n12. Publicity.\n\nCustomer may state publicly that it is a customer of the Services, consistent with the Trademark Guidelines. If Customer wants to display Google Brand Features in connection with its use of the Services, Customer must obtain written permission from Google through the process specified in the Trademark Guidelines. Google may include Customer\u2019s name or Brand Features in a list of Google customers, online or in promotional materials. Google may also verbally reference Customer as a customer of the Services. Neither party needs approval if it is repeating a public statement that is substantially similar to a previously-approved public statement. Any use of a party\u2019s Brand Features will inure to the benefit of the party holding Intellectual Property Rights to those Brand Features. A party may revoke the other party\u2019s right to use its Brand Features under this Section with written notice to the other party and a reasonable period to stop the use.\n13. Representations and Warranties.\n\nEach party represents and warrants that: (a) it has full power and authority to enter into the Agreement; and (b) it will comply with Export Control Laws and Anti-Bribery Laws applicable to its provision, receipt, or use, of the Services, as applicable.\n14. Disclaimer.\n\n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED USE OF THE SERVICES OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION ACCESSIBLE THROUGH THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES EXPRESSLY STATED IN THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES ARE PROVIDED FOR PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES MAY DIFFER FROM ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION. CUSTOMER MUST EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT (i) GOOGLE MAPS ARE SUITABLE FOR THE CUSTOMER APPLICATION; AND (ii) THE CUSTOMER APPLICATION IS SAFE FOR END USERS AND OTHER THIRD PARTIES.\n15. Indemnification.\n\n15.1 Customer Indemnification Obligations. Unless prohibited by applicable law, Customer will defend Google and its Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer\u2019s or an End User\u2019s use of the Services in violation of the AUP or in violation of the Agreement.\n\n15.2 Google Indemnification Obligations. Google will defend Customer and its Affiliates participating under the Agreement (\u201cCustomer Indemnified Parties\u201d), and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from an Allegation that Customer Indemnified Parties' use of Google Indemnified Materials infringes the third party's Intellectual Property Rights.\n\n15.3 Indemnification Exclusions. Sections 15.1 (Customer Indemnification Obligations) and 15.2 (Google Indemnification Obligations) will not apply to the extent the underlying Allegation arises from (a) the indemnified party\u2019s breach of the Agreement or (b) a combination of the Customer Indemnified Materials or Google Indemnified Materials (as applicable)s with materials not provided by the indemnifying party, unless the combination is required by the Agreement.\n\n15.4 Indemnification Conditions. Sections 15.1 (Customer Indemnification Obligations) and 15.2 (Google Indemnification Obligations) are conditioned on the following:\n\n(a) The indemnified party must promptly notify the indemnifying party in writing of any Allegation(s) that preceded the Third-Party Legal Proceeding and cooperate reasonably with the indemnifying party to resolve the Allegation(s) and Third-Party Legal Proceeding. If breach of this Section 15.4(a) prejudices the defense of the Third-Party Legal Proceeding, the indemnifying party\u2019s obligations under Section 15.1 (Customer Indemnification Obligations) or 15.2 (Google Indemnification Obligations) (as applicable) will be reduced in proportion to the prejudice.\n\n(b) The indemnified party must tender sole control of the indemnified portion of the Third-Party Legal Proceeding to the indemnifying party, subject to the following: (i) the indemnified party may appoint its own non-controlling counsel, at its own expense; and (ii) any settlement requiring the indemnified party to admit liability, pay money, or take (or refrain from taking) any action, will require the indemnified party\u2019s prior written consent, not to be unreasonably withheld, conditioned, or delayed.\n\n15.5 Remedies.\n\n(a) If Google reasonably believes the Services might infringe a third party\u2019s Intellectual Property Rights, then Google may, at its sole option and expense: (i) procure the right for Customer to continue using the Services; (ii) modify the Services to make them non-infringing without materially reducing their functionality; or (iii) replace the Services with a non-infringing, functionally equivalent alternative.\n\n(b) If Google does not believe the remedies in Section 15.5(a) are commercially reasonable, then Google may Suspend or terminate Customer\u2019s use of the impacted Services.\n\n15.6 Sole Rights and Obligations. Without affecting either party\u2019s termination rights, this Section 15 states the parties\u2019 sole and exclusive remedy under the Agreement for any Allegations of Intellectual Property Rights infringement covered by this Section 15 (Indemnification).\n16. Liability.\n\n16.1 Limited Liabilities\n\n(a) To the extent permitted by applicable law and subject to Section 16.2 (Unlimited Liabilities), neither party and Google\u2019s licensors will have any Liability arising out of or relating to the Agreement for any (i) indirect, consequential, special, incidental, or punitive damages or (ii) lost revenues, profits, savings, or goodwill.\n\n(b) Each party\u2019s total aggregate Liability for damages arising out of or relating to the Agreement is limited to the Fees Customer paid under the Agreement during the 12 month period before the event giving rise to Liability.\n\n16.2 Unlimited Liabilities. Nothing in the Agreement excludes or limits either party\u2019s Liability for:\n\n(a) its infringement of the other party\u2019s Intellectual Property Rights\n\n(b) its payment obligations under the Agreement; or\n\n(c) matters for which liability cannot be excluded or limited under applicable law.\n17. Advertising.\n\nIn its sole discretion, Customer may configure the Service to either display or not display advertisements served by Google.\n18. U.S. Federal Agency Users.\n\nThe Services were developed solely at private expense and are commercial computer software and related documentation within the meaning of the applicable Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\n19.1 Notices. All notices must be in writing and addressed: (a) in the case of Google, to Google\u2019s Legal Department at legal-notices@google.com; and (b) in the case of Customer, to the Notification Email Address. Notice will be treated as given on receipt as verified by written or automated receipt or by electronic log (as applicable).\n\n19.2 Assignment. Customer may not assign the Agreement without the written consent of Google, except to an Affiliate where: (a) the assignee has agreed in writing to be bound by the terms of the Agreement; (b) the assigning party remains liable for obligations under the Agreement if the assignee defaults on them; and (c) the assigning party has notified the other party of the assignment. Any other attempt by Customer to assign is void. Google may assign the Agreement without the written consent of Customer by notifying Customer of the assignment.\n\n19.3 Change of Control. If a party experiences a change of Control other than an internal restructuring or reorganization, then: (a) that party will give written notice to the other party within 30 days after the change of Control; and (b) the other party may immediately terminate the Agreement any time between the change of Control and 30 days after it receives that written notice.\n\n19.4 Force Majeure. Neither party will be liable for failure or delay in performance to the extent caused by circumstances beyond its reasonable control, including acts of God, natural disasters, terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations under the Agreement but will remain liable to Customer for any subcontracted obligations.\n\n19.6 No Agency. The Agreement does not create any agency, partnership or joint venture between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived any rights by not exercising (or delaying the exercise of) any rights under the Agreement.\n\n19.8 Severability. If any part of the Agreement is invalid, illegal, or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party Beneficiaries. The Agreement does not confer any benefits on any third party unless it expressly states that it does.\n\n19.10 Equitable Relief. Nothing in the Agreement will limit either party\u2019s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n(a) For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county or state government entity, then the Agreement will be silent regarding governing law and venue.\n\n(b) For U.S. Federal Government Entities. If Customer is a U.S. federal government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THE AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA, EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I) THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA\u2019S CONFLICT OF LAWS RULES) WILL APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF OR RELATING TO THE AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n(c) For All Other Entities. If Customer is any entity not listed in Section 19.11 (A) (For U.S. City, County, and State Government Entities) or 19.11(B) (For U.S. Federal Government Entities) then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THE AGREEMENT OR THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE\u2019S CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\n19.12 Amendments. Except as stated in Section 1.6.2 (Modifications; To the Agreement), any amendment to the Agreement must be in writing, expressly state that it is amending this Agreement, and be signed by both parties.\n\n19.13 Entire Agreement. The Agreement states all terms agreed between the parties and supersedes any prior or contemporaneous agreements between the parties relating to its subject matter. In entering into this Agreement, neither party has relied on, and neither party will have any right or remedy based on, any statement, representation or warranty (whether made negligently or innocently), except those expressly stated in the Agreement. The Agreement includes URL links to other terms (including the URL Terms), which are incorporated by reference into the Agreement. After the Effective Date, Google may provide an updated URL in place of any URL in the Agreement.\n\n19.14 Conflicting Terms. If there is a conflict between the documents that make up the Agreement, then the documents will control in the following order: the Agreement and the terms at any URL. \n\n19.15 Conflicting Languages. If the Agreement is translated into any other language, and there is a discrepancy between the English text and the translated text, the English text will govern.\n20. Reseller Orders.\n\nThis Section applies if Customer orders the Services from a Reseller under a Reseller Agreement (including the Reseller Order Form).\n\n20.1 Orders. If Customer orders Services from Reseller, then: (a) fees for the Services will be set between Customer and Reseller, and any payments will be made directly to Reseller under the Reseller Agreement; (b) Section 2 of the Agreement (Payment Terms) will not apply to the Services; (c) Customer will receive any applicable SLA credits from Reseller, if owed to Customer in accordance with the SLA; and (d) Google will have no obligation to provide any SLA credits to a Customer who orders Services from the Reseller.\n\n20.2 Conflicting Terms. If Customer orders Google Maps Core Services from a Reseller and if any documents conflict, then the documents will control in the following order: the Agreement, the terms at any URL (including the URL Terms), and the Reseller Order Form. For example, if there is a conflict between the Maps Service Specific Terms and the Reseller Order Form, the Maps Service Specific Terms will control.\n\n20.3 Reseller as Administrator. At Customer's discretion, Reseller may access Customer's Projects, Accounts, or the Services on behalf of Customer. As between Google and Customer, Customer is solely responsible for: (a) any access by Reseller to Customer\u2019s Account(s), Project(s), or the Services; and (b) defining in the Reseller Agreement any rights or obligations as between Reseller and Customer with respect to the Accounts, Projects, or Services.\n\n20.4 Reseller Verification of Customer Application(s). Before providing the Services, Reseller may also verify that Customer owns or controls the Customer Applications. If Reseller determines that Customer does not own or control the Customer Applications, then Google will have no obligation to provide the Services to Customer.\n21. Definitions.\n\n\"Account\" means Customer\u2019s Google Account.\n\n\"Admin Console\" means the online console(s) and/or tool(s) provided by Google to Customer for administering the Services.\n\n\"Affiliate\" means any entity that directly or indirectly Controls, is Controlled by, or is under common Control with a party.\n\n\"Allegation\" means an unaffiliated third party\u2019s allegation.\n\n\u201cAnti-Bribery Laws\u201d means all applicable commercial and public anti-bribery laws, (for example, the U.S. Foreign Corrupt Practices Act of 1977 and the UK Bribery Act 2010), which prohibit corrupt offers of anything of value, either directly or indirectly, to anyone, including government officials, to obtain or keep business or to secure any other improper commercial advantage. \u201cGovernment officials\u201d include any government employee; candidate for public office; and employee of government-owned or government-controlled companies, public international organizations, and political parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the then-current Acceptable Use Policy for the Services described at https://cloud.google.com/maps-platform/terms/aup/.\n\n\"Brand Features\" means each party\u2019s trade names, trademarks, service marks, logos, domain names, and other distinctive brand features.\n\n\"Confidential Information\" means information that one party (or an Affiliate) discloses to the other party under this Agreement, and which is marked as confidential or would normally under the circumstances be considered confidential information. It does not include information that is independently developed by the recipient, is rightfully given to the recipient by a third party without confidentiality obligations, or becomes public through no fault of the recipient.\n\n\"Control\" means control of greater than 50% of the voting rights or equity interests of a party.\n\n\"Customer Application\" means any web page or application (including all source code and features) owned or controlled by Customer, or that Customer is authorized to use.\n\n\"Customer End User\" or \"End User\" means an individual or entity that Customer permits to use the Services or Customer Application(s).\n\n\u201cCustomer Indemnified Materials\u201d means the Customer Application and Customer Brand Features.\n\n\"Documentation\" means the then-current Google documentation described at https://developers.google.com/maps/documentation.\n\n\"Emergency Security Issue\" means either: (a) Customer\u2019s or Customer End Users\u2019 use of the Services in breach of the AUP, which such use could disrupt: (i) the Services; (ii) other customers\u2019 or their customer end users\u2019 use of the Services; or (iii) the Google network or servers used to provide the Services; or (b) unauthorized third party access to the Services.\n\n\"Europe\" or \"European\" means European Economic Area, Switzerland, or the UK.\n\n\u201cExport Control Laws\u201d means all applicable export and re-export control laws and regulations, including any applicable munitions- or defense-related regulations (for example, the International Traffic in Arms Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual Period\" means a calendar month or another period specified by Google in the Admin Console.\n\n\"Fee Threshold\" means the then-current threshold, as applicable for certain Services, as set out in the Admin Console.\n\n\u201cFeedback\u201d means feedback or suggestions about the Services provided by Customer to Google.\n\n\"Fees\" means the product of the amount of Services used or ordered by Customer multiplied by the Prices, plus any applicable Taxes.\n\n\"Google\" means the Google entity corresponding to Customer\u2019s billing address below:\n\tCountry or Region of Customer\u2019s billing address: \tGoogle entity:\n(1) \tUnited States and all other countries not otherwise listed below \tGoogle LLC\n1600 Amphitheatre Parkway, Mountain View, California 94043, USA\n(2) \tAny country in the Asia Pacific region (\u201cAPAC\u201d), except the countries listed in rows 6-9. \tGoogle Asia Pacific Pte. Ltd.\n70 Pasir Panjang Road, #03-71, Mapletree Business City II Singapore 117371\n(3) \tAny country in Europe, the Middle East, or Africa (\u201cEMEA\u201d), except as described in row 4: \tGoogle Ireland Limited\nGordon House Barrow Street, Dublin 4, Ireland\n(4) \tCustomer is located in the European Union, the UK, or Turkey and has chosen \u201cnon-business\u201d for its tax status/setting for its Google Account \tGoogle Commerce Limited\nGordon House, Barrow Street, Dublin 4, Ireland\n(5) \tCanada \tGoogle Cloud Canada Corporation\n111 Richmond Street West, Toronto, ON M5H 2G4, Canada\nFor rows 6-9, \u201cGoogle\u201d means Google Asia Pacific Pte. Ltd and/or its affiliates as the context requires, provided further that the Agreement is made and entered into by and between Customer and the Google entity corresponding to Customer\u2019s billing address below as an authorized reseller of the Services.\n(6) \tAustralia \tGoogle Australia Pty Ltd.\nLevel 5, 48 Pirrama Road, Pyrmont, NSW 2009 Australia\n(7) \tJapan \tGoogle Cloud Japan G.K.\nRoppongi Hills Mori Tower, 10-1, Roppongi 6-chome, Minato-ku Tokyo, Japan\n(8) \tNew Zealand \tGoogle New Zealand Limited\nPWC Tower, Level 27, 188 Quay Street, Auckland, New Zealand 1010, an authorized reseller and the contracting party in New Zealand of Services provided by Google Asia Pacific Pte. Ltd.\n(9) \tSouth Korea \tGoogle Cloud Korea\nGangnam Finance Center 20fl., 152 Teheran-ro, Gangnam-gu, Seoul, South Korea;\n\n\"Google Indemnified Materials\" means Google's technology used to provide the Services (excluding any open source software) and Google's Brand Features.\n\n\"Google Maps Content\" means any content provided through the Services (whether created by Google or its third-party licensors), including map and terrain data, imagery, traffic data, and places data (including business listings).\n\n\"High Risk Activities\" means activities where the use or failure of the Services could lead to death, personal injury, or environmental damage, including (a) emergency response services; (b) autonomous and semi-autonomous vehicle or drone control; (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation.\n\n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs finally awarded against the indemnified party and its Affiliates by a court of competent jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual Property Rights\" means all patent rights, copyrights, trademark rights, rights in trade secrets (if any), design rights, database rights, domain name rights, moral rights, and any other intellectual property rights (registered or unregistered) throughout the world.\n\n\"Legal Process\" means an information disclosure request made under law, governmental regulation, court order, subpoena, warrant, governmental regulatory or agency request, or other valid legal authority, legal procedure, or similar process.\n\n\"Liability\" means any liability, whether under contract, tort (including negligence), or otherwise, regardless of whether foreseeable or contemplated by the parties.\n\n\"Maps Service Specific Terms\" means the then-current terms specific to one or more Services described at https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\n\"Maps Technical Support Services\" means the technical support service provided by Google to Customer under the then-current Maps Technical Support Services Guidelines.\n\n\"Maps Technical Support Services Guidelines\" means the then-current technical support service guidelines described at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Personal Data\" has the meaning given to it in: (a) Regulation (EU) 2016/679 of the European Parliament and of the Council of 27 April 2016 on the protection of natural persons with regard to the processing of personal data and on the free movement of such data, and repealing Directive 95/46/EC (\u201cEU GDPR\u201d); or (b) the EU GDPR as amended and incorporated into UK law under the UK European Union (Withdrawal) Act 2018 (\u201cUK GDPR\u201d), if in force, as applicable.\n\n\"Notification Email Address\" means the email address(es) designated by Customer in the Admin Console.\n\n\"Price\" means the then-current applicable price(s) stated at https://cloud.google.com/maps-platform/pricing/sheet/.\n\n\"Prohibited Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources for a particular Customer Application.\n\n\"Reseller\" means, if applicable, the authorized unaffiliated third-party reseller that sells or supplies the Services to Customer.\n\n\"Reseller Agreement\" means, if applicable, a separate, independent agreement between Customer and Reseller regarding the Services.\n\n\"Reseller Order Form\" means an order form entered into by Reseller and Customer, subject to the Reseller Agreement.\n\n\"Services\" and \"Google Maps Core Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/. The Services include the Google Maps Content and the Software.\n\n\"Significant Deprecation\" means a material discontinuance or backwards incompatible change to the Google Maps Core Services described at https://cloud.google.com/maps-platform/terms/maps-deprecation/.\n\n\"SLA\" or \"Service Level Agreement\" means each of the then-current service level agreements at: https://cloud.google.com/maps-platform/terms/sla/.\n\n\"Software\" means any downloadable tools, software development kits, or other computer software provided by Google for use as part of the Services, including updates.\n\n\"Suspend\" or \"Suspension \" means disabling access to or use of the Services or components of the Services.\n\n\"Taxes\" means any duties, customs fees, or government-imposed taxes associated with the purchase of the Services, including any related penalties or interest, except for taxes based on Google\u2019s net income, net worth, asset value, property value, or employment.\n\n\"Term\" has the meaning stated in Section 11.1 of the Agreement.\n\n\u201cTerms URL\u201d means the following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated third party before a court or government tribunal (including any appellate proceeding).\n\n\"Trademark Guidelines\" means (a) Google\u2019s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html and (b) the \u201cUse of Trademarks\u201d section of the \u201cUsing Google Maps, Google Earth and Street View\u201d permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark policy.\n\n\u201cURL Terms\u201d means the following, which will control in the following order if there is a conflict:\n\n(a) the Maps Service Specific Terms;\n\n(b) the SLA;\n\n(c) the AUP;\n\n(d) the Maps Technical Support Services Guidelines;\n\n(e) the Legal Notices for Google Maps/Google Earth and Google Maps/Google Earth APIs at https://www.google.com/help/legalnotices_maps.html; and\n\n(f) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html.\n22. Regional Terms.\n\nCustomer agrees to the following modifications to the Agreement if Customer orders Services from the applicable Google entity as described below:\nAsia Pacific PT Google Cloud Indonesia \t\n\n1. The following is added as Section 11.6 (Termination Waiver):\n\n11.6 Termination Waiver. The parties agree to waive any provisions under any applicable laws to the extent that a court decision or order is required for the termination of this Agreement.\n\n2. Section 19.11 (Governing Law) is deleted and replaced with the following:\n\n19.11 Governing Law.\n\n(a) The parties will try in good faith to settle any dispute within 30 days after the dispute arises. If the dispute is not resolved within 30 days, it must be resolved by arbitration by the American Arbitration Association\u2019s International Centre for Dispute Resolution in accordance with its Expedited Commercial Rules in force as of the date of the Agreement (\"Rules\").\n\n(b) The parties will mutually select one arbitrator. The arbitration will be conducted in English in Santa Clara County, California, USA.\n\n(c) Either party may apply to any competent court for injunctive relief necessary to protect its rights pending resolution of the arbitration. The arbitrator may order equitable or injunctive relief consistent with the remedies and limitations in the Agreement.\n\n(d) Subject to the confidentiality requirements in Section 19.11(f), either party may petition any competent court to issue any order necessary to protect that party\u2019s rights or property; this petition will not be considered a violation or waiver of this governing law and arbitration section and will not affect the arbitrator\u2019s powers, including the power to review the judicial decision. The parties stipulate that the courts of Santa Clara County, California, USA, are competent to grant any order under this Section 19.11(d).\n\n(e) The arbitral award will be final and binding on the parties and its execution may be presented in any competent court, including any court with jurisdiction over either party or any of its property.\n\n(f) Any arbitration proceeding conducted in accordance with this Section will be considered Confidential Information under the Agreement\u2019s confidentiality section, including (i) the existence of, (ii) any information disclosed during, and (iii) any oral communications or documents related to the arbitration proceedings. The parties may also disclose the information described in this Section 19.11(f) to a competent court as may be necessary to file any order under Section 19.11(d) or execute any arbitral decision, but the parties must request that those judicial proceedings be conducted in camera (in private).\n\n(g) The parties will pay the arbitrator\u2019s fees, the arbitrator\u2019s appointed experts\u2019 fees and expenses, and the arbitration center\u2019s administrative expenses in accordance with the Rules. In its final decision, the arbitrator will determine the non-prevailing party\u2019s obligation to reimburse the amount paid in advance by the prevailing party for these fees.\n\n(h) Each party will bear its own lawyers\u2019 and experts\u2019 fees and expenses, regardless of the arbitrator\u2019s final decision regarding the Dispute.\n\n(i) The parties agree that a decision of the arbitrators need not to be made within any specific time period.\n\n3. Section 19.15 (Conflicting Languages) is deleted and replaced with the following:\n\n19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version.", + "json": "google-maps-tos-2020-04-02.json", + "yaml": "google-maps-tos-2020-04-02.yml", + "html": "google-maps-tos-2020-04-02.html", + "license": "google-maps-tos-2020-04-02.LICENSE" + }, + { + "license_key": "google-maps-tos-2020-04-27", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2020-04-27", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Maps Platform Terms of Service\n\nLast modified: April 27, 2020\n\nIf your billing address is in Brazil, please review these Terms of Service, which apply to your use of Google Maps Platform.\n\nSe a sua conta para faturamento \u00e9 no Brasil, por gentileza veja o Termos de Servi\u00e7o, que ser\u00e1 o Termo aplic\u00e1vel \u00e0 sua utiliza\u00e7\u00e3o da Google Maps Platform.\n\nIf your billing address is in Indonesia, please review these Terms of Service, which apply to your use of Google Maps Platform.\n\nGoogle Maps Platform License Agreement\n\nThis Google Maps Platform License Agreement (the \"Agreement\") is made and entered into between Google (as defined in Section 21 (Definitions)) and the entity or person agreeing to these terms (\"Customer\").\n\nThis Agreement is effective as of the date Customer clicks to accept the Agreement, or enters into a Reseller Agreement if purchasing through a Reseller (the \"Effective Date\"). If you are accepting on behalf of Customer, you represent and warrant that: (a) you have full legal authority to bind Customer to this Agreement; (b) you have read and understand this Agreement; and (c) you agree, on behalf of Customer, to this Agreement. If you do not have the legal authority to bind Customer, please do not click to accept. This Agreement governs Customer's access to and use of the Services.\n1. Provision of the Services.\n\n1.1 Use of the Services in Customer Applications. Google will provide the Services to Customer in accordance with the Agreement, and Customer may use the Services in Customer Application(s) in accordance with Section 3 (License).\n\n1.2 Admin Console; Projects; API Keys. Customer will administer the Services through the online Admin Console. To access the Services, Customer must create Project(s) and use its API key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer must have an Account. Customer is responsible for: (a) the information it provides in connection with the Account; (b) maintaining the confidentiality and security of the Account and associated passwords; and (c) any use of its Account.\n\n1.4 Customer Domains and Applications. Customer must list in the Admin Console each authorized domain and application that uses the Services. Customer is responsible for ensuring that only authorized domains and applications use the Services.\n\n1.5 New Features and Services. Google may: (a) make new features or functionality available through the Services and (b) add new services to the \"Services\" definition (by adding them at the URL stated under that definition). Customer\u2019s use of new features or functionality may be contingent on Customer\u2019s agreement to additional terms applicable to the new feature or functionality.\n\n1.6 Modifications.\n\n1.6.1 To the Services. Subject to Section 9 (Deprecation Policy), Google may make changes to the Services, which may include adding, updating, or discontinuing any Services or portion or feature(s) of the Services. Google will notify Customer of any material change to the Services.\n\n1.6.2. To the Agreement. Google may make changes to the Agreement, including pricing and any linked documents. Unless otherwise noted by Google, material changes to the Agreement will become effective 30 days after notice is given, except (a) materially adverse SLA changes will become effective 90 days after notice is given; and (b) changes applicable to new Services or functionality, or required by a court order or applicable law, will be effective immediately. Google will provide notice for materially adverse changes to any SLAs by: (i) sending an email to the Notification Email Address; (ii) posting a notice in the Admin Console; or (iii) posting a notice to the applicable SLA webpage. If Customer does not agree to the revised Agreement, Customer should stop using the Services. Google will post any modification to this Agreement to the Terms URL.\n2. Payment Terms.\n\n2.1 Free Quota. Certain Services are provided to Customer without charge up to the Fee Threshold, as applicable.\n\n2.2 Online Billing. At the end of the applicable Fee Accrual Period, Google will issue an electronic bill to Customer for all charges accrued above the Fee Threshold based on Customer\u2019s use of the Services during the previous Fee Accrual Period. For use above the Fee Threshold, Customer will be responsible for all Fees up to the amount set in the Account and will pay all Fees in the currency set forth in the invoice. If Customer elects to pay by credit card, debit card, or other non-invoiced form of payment, Google will charge (and Customer will pay) all Fees immediately at the end of the Fee Accrual Period. If Customer elects to pay by invoice (and Google agrees), all Fees are due as stated in the invoice. Customer\u2019s obligation to pay all Fees is non-cancellable. Google's measurement of Customer\u2019s use of the Services is final. Google has no obligation to provide multiple bills. Payments made via wire transfer must include the bank information provided by Google. If Customer has entered into the Agreement with GCL, Google may collect payments via Google Payment Limited, a company incorporated in England and Wales with offices at Belgrave House, 76 Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\n2.3 Taxes.\n\n2.3.1 Customer is responsible for any Taxes, and Customer will pay Google for the Services without any reduction for Taxes. If Google is obligated to collect or pay Taxes, the Taxes will be invoiced to Customer, unless Customer provides Google with a timely and valid tax exemption certificate authorized by the appropriate taxing authority. In some states the sales tax is due on the total purchase price at the time of sale and must be invoiced and collected at the time of the sale. If Customer is required by law to withhold any Taxes from its payments to Google, Customer must provide Google with an official tax receipt or other appropriate documentation to support such withholding. If under the applicable tax legislation the Services are subject to local VAT and the Customer is required to make a withholding of local VAT from amounts payable to Google, the value of Services calculated in accordance with the above procedure will be increased (grossed up) by Customer for the respective amount of local VAT and the grossed up amount will be regarded as a VAT inclusive price. Local VAT amount withheld from the VAT-inclusive price will be remitted to the applicable local tax entity by the Customer and Customer will ensure that Google will receive payment for its services for the net amount as would otherwise be due (the VAT inclusive price less the local VAT withheld and remitted to applicable tax authority).\n\n2.3.2 If required under applicable law, Customer will provide Google with applicable tax identification information that Google may require to ensure its compliance with applicable tax regulations and authorities in applicable jurisdictions. Customer will be liable to pay (or reimburse Google for) any taxes, interest, penalties or fines arising out of any mis-declaration by the Customer.\n\n2.4 Invoice Disputes & Refunds. Any invoice disputes must be submitted before the payment due date. If Google determines that Fees were incorrectly invoiced, then Google will issue a credit equal to the agreed amount. To the fullest extent permitted by law, Customer waives all claims relating to Fees unless claimed within 60 days after charged (this does not affect any Customer rights with its credit card issuer). Nothing in the Agreement obligates Google to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. If Customer\u2019s payment is overdue, then Google may (a) charge interest on overdue amounts at 1.5% per month (or the highest rate permitted by law, if less) from the Payment Due Date until paid in full, and (b) Suspend the Services or terminate the Agreement. Customer will reimburse Google for all reasonable expenses (including attorneys\u2019 fees) incurred by Google in collecting overdue payments except where such payments are due to Google\u2019s billing inaccuracies.\n\n2.6 No Purchase Order Number Required. Google is not required to provide a purchase order number on Google\u2019s invoice (or otherwise).\n3. License.\n\n3.1 License Grant. Subject to the Agreement's terms, during the Term, Google grants to Customer a non-exclusive, non-transferable, non-sublicensable, license to use the Services in Customer Application(s).\n\n3.2 License Requirements and Restrictions. The following are conditions of the license granted in Section 3.1 (License Grant). In this Section 3.2 (License Requirements and Restrictions), the phrase \u201cCustomer will not\u201d means \u201cCustomer will not, and will not permit a third party to\u201d.\n\n3.2.1 General Restrictions. Customer will not: (a) copy, modify, create a derivative work of, reverse engineer, decompile, translate, disassemble, or otherwise attempt to extract any or all of the source code (except to the extent such restriction is expressly prohibited by applicable law); (b) sublicense, transfer, or distribute any of the Services; (c) sell, resell, sublicense, transfer, or distribute the Services; or (d) access or use the Services: (i) for High Risk Activities; (ii) in a manner intended to avoid incurring Fees; (iii) for materials or activities that are subject to the International Traffic in Arms Regulations (ITAR) maintained by the United States Department of State; (iv) in a manner that breaches, or causes the breach of, Export Control Laws; or (v) to transmit, store, or process health information subject to United States HIPAA regulations.\n\n3.2.2 Requirements for Using the Services.\n\n(a) Terms of Service and Privacy Policy.\n\n(i) The Customer Application\u2019s terms of service will (A) notify users that the Customer Application includes Google Maps features and content; and (B) state that use of Google Maps features and content is subject to the then-current versions of the: (1) Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html; and (2) Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n(ii) If the Customer Application allows users to include the Google Maps Core Services in Downstream Products, then Customer will contractually require that all Downstream Products\u2019 terms of service satisfy the same notice and flow-down requirements that apply to the Customer Application under Section 3.2.2 (a) (i) (Terms of Service and Privacy Policy).\n\n(iii) If users of the Customer Application (and Downstream Products, if any) fail to comply with the applicable terms of the Google Maps/Google Earth Additional Terms of Service, then Customer will take appropriate enforcement action, including Suspending or terminating those users\u2019 use of Google Maps features and content in the Customer Application or Downstream Products.\n\n(b) Attribution. Customer will display all attribution that (i) Google provides through the Services (including branding, logos, and copyright and trademark notices); or (ii) is specified in the Maps Service Specific Terms. Customer will not modify, obscure, or delete such attribution.\n\n(c) Review of Customer Applications. At Google\u2019s request, Customer will submit Customer Application(s) and Project(s) to Google for review to ensure compliance with the Agreement (including the AUP).\n\n3.2.3 Restrictions Against Misusing the Services.\n\n(a) No Scraping. Customer will not export, extract, or otherwise scrape Google Maps Content for use outside the Services. For example, Customer will not: (i) pre-fetch, index, store, reshare, or rehost Google Maps Content outside the services; (ii) bulk download Google Maps tiles, Street View images, geocodes, directions, distance matrix results, roads information, places information, elevation values, and time zone details; (iii) copy and save business names, addresses, or user reviews; or (iv) use Google Maps Content with text-to-speech services.\n\n(b) No Caching. Customer will not cache Google Maps Content except as expressly permitted under the Maps Service Specific Terms.\n\n(c) No Creating Content From Google Maps Content. Customer will not create content based on Google Maps Content. For example, Customer will not: (i) trace or digitize roadways, building outlines, utility posts, or electrical lines from the Maps JavaScript API Satellite base map type; (ii) create 3D building models from 45\u00b0 Imagery from Maps JavaScript API; (iii) build terrain models based on elevation values from the Elevation API; (iv) use latitude/longitude values from the Places API as an input for point-in-polygon analysis; (v) construct an index of tree locations within a city from Street View imagery; or (vi) convert text-based driving times into synthesized speech results.\n\n(d) No Re-Creating Google Products or Features. Customer will not use the Services to create a product or service with features that are substantially similar to or that re-create the features of another Google product or service. Customer\u2019s product or service must contain substantial, independent value and features beyond the Google products or services. For example, Customer will not: (i) re-distribute the Google Maps Core Services or pass them off as if they were Customer\u2019s services; (ii) create a substitute of the Google Maps Core Services, Google Maps, or Google Maps mobile apps, or their features; (iii) use the Google Maps Core Services in a listings or directory service or to create or augment an advertising product; (iv) combine data from the Directions API, Geolocation API, and Maps SDK for Android to create real-time navigation functionality substantially similar to the functionality provided by the Google Maps for Android mobile app.\n\n(e) No Use With Non-Google Maps. To avoid quality issues and/or brand confusion, Customer will not use the Google Maps Core Services with or near a non-Google Map in a Customer Application. For example, Customer will not (i) display or use Places content on a non-Google map, (ii) display Street View imagery and non-Google maps on the same screen, or (iii) link a Google Map to non-Google Maps content for a non-Google map.\n\n(f) No Circumventing Fees. Customer will not circumvent the applicable Fees. For example, Customer will not create multiple billing accounts or Projects to avoid incurring Fees, prevent Google from accurately calculating Customer\u2019s Service usage levels, abuse any free Service quotas, or offer access to the Services under a \u201ctime-sharing\u201d or \u201cservice bureau\u201d model.\n\n(g) No Use in Prohibited Territories. Customer will not distribute or market in a Prohibited Territory any Customer Application(s) that use the Google Maps Core Services.\n\n(h) No Use in Embedded Vehicle Systems. Customer will not use the Google Maps Core Services in connection with any Customer Application or device embedded in a vehicle. For example, Customer will not create a Customer Application that (i) is embedded in an in-dashboard automotive infotainment system; and (ii) allows End Users to request driving directions from the Directions API.\n\n(i) No Use in Customer Application Directed To Children. Customer will not use the Google Maps Core Services in a Customer Application that would be deemed to be a \u201cWeb site or online service directed to children\u201d under the Children\u2019s Online Privacy Protection Act (COPPA).\n\n(j) No Modifying Search Results Integrity. Customer will not modify any of the Google Maps Core Service\u2019s search results.\n\n3.2.4 Benchmarking. Customer may not publicly disclose directly or through a third party the results of any comparative or compatibility testing, benchmarking, or evaluation of the Services (each, a \u201cTest\u201d), unless the disclosure includes all information necessary for Google or a third party to replicate the Test. If Customer conducts, or directs a third party to conduct, a Test of the Services and publicly discloses the results directly or through a third party, then Google (or a Google directed third party) may conduct Tests of any publicly available cloud products or services provided by Customer and publicly disclose the results of any such Test (which disclosure will include all information necessary for Customer or a third party to replicate the Test).\n4. Customer Obligations. \n\n4.1 Compliance. Customer will: (a) ensure that Customer\u2019s and its End Users\u2019 use of the Services complies with the Agreement; (b) prevent and terminate any unauthorized use of or access to its Account(s) or the Services; and (c) promptly notify Google of any unauthorized use of or access to its Account(s) or the Services of which Customer becomes aware.\n\n4.2 Documentation. Google may provide Documentation for Customer\u2019s use of the Services. The Documentation may specify restrictions (e.g. attribution or HTML restrictions) on how the Services may be used and Customer will comply with any such restrictions specified.\n\n4.3 Copyright Policy. Google provides information to help copyright holders manage their intellectual property online, but Google cannot determine whether something is being used legally without input from the copyright holders. Google will respond to notices of alleged copyright infringement and may terminate repeat infringers in appropriate circumstances as required to maintain safe harbor for online service providers under the U.S. Digital Millennium Copyright Act. If Customer believes a person or entity is infringing Customer\u2019s or End Users\u2019 copyrights and would like to notify Google, Customer can find information about submitting notices, and Google's policy about responding to notices at https://www.google.com/dmca.html.\n\n4.4 Data Use, Protection, and Privacy.\n\n4.4.1 Data Use and Retention. To provide the Services through the Customer Application(s), Google collects and receives data from Customer and End Users (and End Users\u2019 End Users, if any), including search terms, IP addresses, and latitude/longitude coordinates. Customer acknowledges and agrees that Google and its Affiliates may use and retain this data to provide and improve Google products and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n4.4.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\n4.4.3 End User Requirements.\n\n(a) End User Privacy. Customer\u2019s use of the Services in the Customer Application will comply with applicable privacy laws, including laws regarding Services that store and access Cookies on End Users\u2019 devices. Customer will comply with the then-current Consent Policy at https://www.google.com/about/company/user-consent-policy.html, if applicable.\n\n(b) End User Personal Data. Through the normal functioning of the Google Maps Core Services, End Users provide personally identifiable information and Personal Data directly to Google, subject to the then-current Google Privacy Policy at https://www.google.com/policies/privacy/. (a) However, Customer will not provide to Google (i) any End User\u2019s personally identifiable information; or (ii) any European End User\u2019s Personal Data (where \u201cEuropean\u201d means \u201cEuropean Economic Area, Switzerland, or the UK\u201d).\n\n(c) End User Location Privacy Requirements. To safeguard End Users\u2019 location privacy, Customer will ensure that the Customer Application(s): (i) notify End Users in advance of (1) the type(s) of data that Customer intends to collect from the End Users or the End Users\u2019 devices, and (2) the combination and use of End User's location with any other data provider's data; and (ii) will not obtain or cache any End User's location except with the End User's express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions Breaches. Google may Suspend the Services without prior notice if Customer breaches Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Breaches or Emergency Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP Breaches) and 5.2.2 (Emergency Suspension). Any Suspension under those Sections will be to the minimum extent and for the shortest duration required to: (a) prevent or terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c) comply with applicable law.\n\n5.2.1 AUP Breaches. If Google becomes aware that Customer\u2019s or any End User\u2019s use of the Services breaches the AUP, Google will give Customer notice of such breach by requesting that Customer correct the breach. If Customer fails to correct such breach within 24 hours, or if Google is otherwise required by applicable law to take action, then Google may Suspend all or part of Customer\u2019s use of the Services.\n\n5.2.2 Emergency Suspension. Google may immediately Suspend Customer\u2019s use of the Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend such use to comply with applicable law. At Customer\u2019s request, unless prohibited by applicable law, Google will notify Customer of the basis for the Suspension as soon as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights Infringement. If the Customer Application is alleged to infringe a third party\u2019s Intellectual Property Rights, Google may require Customer to suspend all use of the Google Maps Core Services in the Customer Application on 30 days\u2019 written notice until such allegation is fully resolved. In any event, this Section 5.3 (For Alleged Third-Party Intellectual Property Rights Infringement) does not reduce Customer\u2019s obligations under Section 15 (Indemnification).\n6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as expressly stated in the Agreement, the Agreement does not grant either party any rights, implied or otherwise, to the other\u2019s content or any of the other\u2019s intellectual property. As between the parties, Customer owns all Intellectual Property Rights in the Customer Application, and Google owns all Intellectual Property Rights in the Google Maps Core Services.\n\n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google may use that information without obligation to Customer, and Customer irrevocably assigns to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices and License Terms.\n\nCertain components of the Services (including open source software) are subject to third-party copyright and other Intellectual Property Rights, as specified in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and (b) separate, publicly-available third-party license terms, which Google will provide to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will provide Maps Technical Support Services to Customer in accordance with the Maps Technical Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n Google will notify Customer at least 12 months before making a Significant Deprecation, unless Google reasonably determines that: (a) Google cannot do so by law or by contract (including if there is a change in applicable law or contract) or (b) continuing to provide the Services could create a security risk or substantial economic or technical burden.\n10. Confidentiality.\n\n10.1 Confidentiality Obligations. Subject to Section 10.2 (Required Disclosure), the recipient will use the other party\u2019s Confidential Information only to exercise its rights and fulfill its obligations under the Agreement. The recipient will use reasonable care to protect against disclosure of the other party\u2019s Confidential Information to parties other than the recipient\u2019s employees, Affiliates, agents, or professional advisors (\u201cDelegates\u201d) who need to know it and are subject to confidentiality obligations at least as protective as those in this Section 10.1 (Confidentiality Obligations).\n\n10.2 Required Disclosure.\n\n10.2.1 Subject to Section 10.2.2, the recipient and its Affiliates may disclose the other party\u2019s Confidential Information to the extent required by applicable Legal Process, If the recipient and its Affiliates (as applicable) use commercially reasonable efforts to: (a) promptly notify the other party of such disclosure before disclosing; and (b) comply with the other party\u2019s reasonable requests regarding its efforts to oppose the disclosure.\n\n10.2.2 Sections 10.2.1(a) and (b) above will not apply if the recipient determines that complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii) obstruct a governmental investigation; or (iii) lead to death or serious physical harm to an individual.\n\n10.2.3 As between the parties, Customer is responsible for responding to all third party requests concerning its use and Customer End Users\u2019 use of the Services.\n11. Term and Termination.\n\n11.1 Agreement Term. The Agreement is effective from the Effective Date until it is terminated in accordance with its terms (the \u201cTerm\u201d).\n\n11.2 Termination for Breach. Either party may terminate the Agreement for breach if: (a) the other party is in material breach of the Agreement and fails to cure that breach within 30 days after receipt of written notice; (b) the other party ceases its business operations; or (c) becomes subject to insolvency proceedings and the proceedings are not dismissed within 90 days. Google may terminate Projects or access to Services, if Customer meets any of the conditions in subsections (a) or (b).\n\n11.3 Termination for Inactivity. Google may terminate Projects with 30 days' prior written notice if such Project (a) has not made any requests to the Services from any Customer Applications for more than 180 days; or (b) has not incurred any Fees for more than 180 days.\n\n11.4 Termination for Convenience. Customer may stop using the Services at any time. Subject to any financial commitments expressly made by this Agreement, Customer may terminate the Agreement for its convenience at any time with 30 days' prior written notice. Google may terminate the Agreement for its convenience at any time without liability to Customer.\n\n11.5 Effects of Termination. \n\n11.5.1 If the Agreement terminates, then: (a) the rights and access to the Services will terminate; (b) all Fees owed by Customer to Google are immediately due upon receipt of the final electronic bill; and (c) Customer will delete the Software and any content from the Services by the termination effective date.\n\n11.5.2 The following will survive expiration or termination of the Agreement: Section 2 (Payment Terms), Section 3.2 (License Requirements and Restrictions), Section 4.4 (Data Use, Protection, and Privacy), Section 6 (Intellectual Property; Feedback), Section 10 (Confidential Information), Section 11.5 (Effects of Termination), Section 14 (Disclaimer), Section 15 (Indemnification), Section 16 (Limitation of Liability), Section 19 (Miscellaneous), and Section 21 (Definitions).\n12. Publicity.\n\nCustomer may state publicly that it is a customer of the Services, consistent with the Trademark Guidelines. If Customer wants to display Google Brand Features in connection with its use of the Services, Customer must obtain written permission from Google through the process specified in the Trademark Guidelines. Google may include Customer\u2019s name or Brand Features in a list of Google customers, online or in promotional materials. Google may also verbally reference Customer as a customer of the Services. Neither party needs approval if it is repeating a public statement that is substantially similar to a previously-approved public statement. Any use of a party\u2019s Brand Features will inure to the benefit of the party holding Intellectual Property Rights to those Brand Features. A party may revoke the other party\u2019s right to use its Brand Features under this Section with written notice to the other party and a reasonable period to stop the use.\n13. Representations and Warranties.\n\nEach party represents and warrants that: (a) it has full power and authority to enter into the Agreement; and (b) it will comply with Export Control Laws and Anti-Bribery Laws applicable to its provision, receipt, or use, of the Services, as applicable.\n14. Disclaimer.\n\n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED USE OF THE SERVICES OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION ACCESSIBLE THROUGH THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES EXPRESSLY STATED IN THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES ARE PROVIDED FOR PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES MAY DIFFER FROM ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION. CUSTOMER MUST EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT (i) GOOGLE MAPS ARE SUITABLE FOR THE CUSTOMER APPLICATION; AND (ii) THE CUSTOMER APPLICATION IS SAFE FOR END USERS AND OTHER THIRD PARTIES.\n15. Indemnification.\n\n15.1 Customer Indemnification Obligations. Unless prohibited by applicable law, Customer will defend Google and its Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer\u2019s or an End User\u2019s use of the Services in violation of the AUP or in violation of the Agreement.\n\n15.2 Google Indemnification Obligations. Google will defend Customer and its Affiliates participating under the Agreement (\u201cCustomer Indemnified Parties\u201d), and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from an Allegation that Customer Indemnified Parties' use of Google Indemnified Materials infringes the third party's Intellectual Property Rights.\n\n15.3 Indemnification Exclusions. Sections 15.1 (Customer Indemnification Obligations) and 15.2 (Google Indemnification Obligations) will not apply to the extent the underlying Allegation arises from (a) the indemnified party\u2019s breach of the Agreement or (b) a combination of the Customer Indemnified Materials or Google Indemnified Materials (as applicable)s with materials not provided by the indemnifying party, unless the combination is required by the Agreement.\n\n15.4 Indemnification Conditions. Sections 15.1 (Customer Indemnification Obligations) and 15.2 (Google Indemnification Obligations) are conditioned on the following:\n\n(a) The indemnified party must promptly notify the indemnifying party in writing of any Allegation(s) that preceded the Third-Party Legal Proceeding and cooperate reasonably with the indemnifying party to resolve the Allegation(s) and Third-Party Legal Proceeding. If breach of this Section 15.4(a) prejudices the defense of the Third-Party Legal Proceeding, the indemnifying party\u2019s obligations under Section 15.1 (Customer Indemnification Obligations) or 15.2 (Google Indemnification Obligations) (as applicable) will be reduced in proportion to the prejudice.\n\n(b) The indemnified party must tender sole control of the indemnified portion of the Third-Party Legal Proceeding to the indemnifying party, subject to the following: (i) the indemnified party may appoint its own non-controlling counsel, at its own expense; and (ii) any settlement requiring the indemnified party to admit liability, pay money, or take (or refrain from taking) any action, will require the indemnified party\u2019s prior written consent, not to be unreasonably withheld, conditioned, or delayed.\n\n15.5 Remedies.\n\n(a) If Google reasonably believes the Services might infringe a third party\u2019s Intellectual Property Rights, then Google may, at its sole option and expense: (i) procure the right for Customer to continue using the Services; (ii) modify the Services to make them non-infringing without materially reducing their functionality; or (iii) replace the Services with a non-infringing, functionally equivalent alternative.\n\n(b) If Google does not believe the remedies in Section 15.5(a) are commercially reasonable, then Google may Suspend or terminate Customer\u2019s use of the impacted Services.\n\n15.6 Sole Rights and Obligations. Without affecting either party\u2019s termination rights, this Section 15 states the parties\u2019 sole and exclusive remedy under the Agreement for any Allegations of Intellectual Property Rights infringement covered by this Section 15 (Indemnification).\n16. Liability.\n\n16.1 Limited Liabilities\n\n(a) To the extent permitted by applicable law and subject to Section 16.2 (Unlimited Liabilities), neither party and Google\u2019s licensors will have any Liability arising out of or relating to the Agreement for any (i) indirect, consequential, special, incidental, or punitive damages or (ii) lost revenues, profits, savings, or goodwill.\n\n(b) Each party\u2019s total aggregate Liability for damages arising out of or relating to the Agreement is limited to the Fees Customer paid under the Agreement during the 12 month period before the event giving rise to Liability.\n\n16.2 Unlimited Liabilities. Nothing in the Agreement excludes or limits either party\u2019s Liability for:\n\n(a) its infringement of the other party\u2019s Intellectual Property Rights\n\n(b) its payment obligations under the Agreement; or\n\n(c) matters for which liability cannot be excluded or limited under applicable law.\n17. Advertising.\n\nIn its sole discretion, Customer may configure the Service to either display or not display advertisements served by Google.\n18. U.S. Federal Agency Users.\n\nThe Services were developed solely at private expense and are commercial computer software and related documentation within the meaning of the applicable Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\n19.1 Notices. All notices must be in writing and addressed: (a) in the case of Google, to Google\u2019s Legal Department at legal-notices@google.com; and (b) in the case of Customer, to the Notification Email Address. Notice will be treated as given on receipt as verified by written or automated receipt or by electronic log (as applicable).\n\n19.2 Assignment. Customer may not assign the Agreement without the written consent of Google, except to an Affiliate where: (a) the assignee has agreed in writing to be bound by the terms of the Agreement; (b) the assigning party remains liable for obligations under the Agreement if the assignee defaults on them; and (c) the assigning party has notified the other party of the assignment. Any other attempt by Customer to assign is void. Google may assign the Agreement without the written consent of Customer by notifying Customer of the assignment.\n\n19.3 Change of Control. If a party experiences a change of Control other than an internal restructuring or reorganization, then: (a) that party will give written notice to the other party within 30 days after the change of Control; and (b) the other party may immediately terminate the Agreement any time between the change of Control and 30 days after it receives that written notice.\n\n19.4 Force Majeure. Neither party will be liable for failure or delay in performance to the extent caused by circumstances beyond its reasonable control, including acts of God, natural disasters, terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations under the Agreement but will remain liable to Customer for any subcontracted obligations.\n\n19.6 No Agency. The Agreement does not create any agency, partnership or joint venture between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived any rights by not exercising (or delaying the exercise of) any rights under the Agreement.\n\n19.8 Severability. If any part of the Agreement is invalid, illegal, or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party Beneficiaries. The Agreement does not confer any benefits on any third party unless it expressly states that it does.\n\n19.10 Equitable Relief. Nothing in the Agreement will limit either party\u2019s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n(a) For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county or state government entity, then the Agreement will be silent regarding governing law and venue.\n\n(b) For U.S. Federal Government Entities. If Customer is a U.S. federal government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THE AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA, EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I) THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA\u2019S CONFLICT OF LAWS RULES) WILL APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF OR RELATING TO THE AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n(c) For All Other Entities. If Customer is any entity not listed in Section 19.11 (A) (For U.S. City, County, and State Government Entities) or 19.11(B) (For U.S. Federal Government Entities) then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THE AGREEMENT OR THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE\u2019S CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\n19.12 Amendments. Except as stated in Section 1.6.2 (Modifications; To the Agreement), any amendment to the Agreement must be in writing, expressly state that it is amending this Agreement, and be signed by both parties.\n\n19.13 Entire Agreement. The Agreement states all terms agreed between the parties and supersedes any prior or contemporaneous agreements between the parties relating to its subject matter. In entering into this Agreement, neither party has relied on, and neither party will have any right or remedy based on, any statement, representation or warranty (whether made negligently or innocently), except those expressly stated in the Agreement. The Agreement includes URL links to other terms (including the URL Terms), which are incorporated by reference into the Agreement. After the Effective Date, Google may provide an updated URL in place of any URL in the Agreement.\n\n19.14 Conflicting Terms. If there is a conflict between the documents that make up the Agreement, then the documents will control in the following order: the Agreement and the terms at any URL. \n\n19.15 Conflicting Languages. If the Agreement is translated into any other language, and there is a discrepancy between the English text and the translated text, the English text will govern.\n20. Reseller Orders.\n\nThis Section applies if Customer orders the Services from a Reseller under a Reseller Agreement (including the Reseller Order Form).\n\n20.1 Orders. If Customer orders Services from Reseller, then: (a) fees for the Services will be set between Customer and Reseller, and any payments will be made directly to Reseller under the Reseller Agreement; (b) Section 2 of the Agreement (Payment Terms) will not apply to the Services; (c) Customer will receive any applicable SLA credits from Reseller, if owed to Customer in accordance with the SLA; and (d) Google will have no obligation to provide any SLA credits to a Customer who orders Services from the Reseller.\n\n20.2 Conflicting Terms. If Customer orders Google Maps Core Services from a Reseller and if any documents conflict, then the documents will control in the following order: the Agreement, the terms at any URL (including the URL Terms), and the Reseller Order Form. For example, if there is a conflict between the Maps Service Specific Terms and the Reseller Order Form, the Maps Service Specific Terms will control.\n\n20.3 Reseller as Administrator. At Customer's discretion, Reseller may access Customer's Projects, Accounts, or the Services on behalf of Customer. As between Google and Customer, Customer is solely responsible for: (a) any access by Reseller to Customer\u2019s Account(s), Project(s), or the Services; and (b) defining in the Reseller Agreement any rights or obligations as between Reseller and Customer with respect to the Accounts, Projects, or Services.\n\n20.4 Reseller Verification of Customer Application(s). Before providing the Services, Reseller may also verify that Customer owns or controls the Customer Applications. If Reseller determines that Customer does not own or control the Customer Applications, then Google will have no obligation to provide the Services to Customer.\n21. Definitions.\n\n\"Account\" means Customer\u2019s Google Account.\n\n\"Admin Console\" means the online console(s) and/or tool(s) provided by Google to Customer for administering the Services.\n\n\"Affiliate\" means any entity that directly or indirectly Controls, is Controlled by, or is under common Control with a party.\n\n\"Allegation\" means an unaffiliated third party\u2019s allegation.\n\n\u201cAnti-Bribery Laws\u201d means all applicable commercial and public anti-bribery laws, (for example, the U.S. Foreign Corrupt Practices Act of 1977 and the UK Bribery Act 2010), which prohibit corrupt offers of anything of value, either directly or indirectly, to anyone, including government officials, to obtain or keep business or to secure any other improper commercial advantage. \u201cGovernment officials\u201d include any government employee; candidate for public office; and employee of government-owned or government-controlled companies, public international organizations, and political parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the then-current Acceptable Use Policy for the Services described at https://cloud.google.com/maps-platform/terms/aup/.\n\n\"Brand Features\" means each party\u2019s trade names, trademarks, service marks, logos, domain names, and other distinctive brand features.\n\n\"Confidential Information\" means information that one party (or an Affiliate) discloses to the other party under this Agreement, and which is marked as confidential or would normally under the circumstances be considered confidential information. It does not include information that is independently developed by the recipient, is rightfully given to the recipient by a third party without confidentiality obligations, or becomes public through no fault of the recipient.\n\n\"Control\" means control of greater than 50% of the voting rights or equity interests of a party.\n\n\"Customer Application\" means any web page or application (including all source code and features) owned or controlled by Customer, or that Customer is authorized to use.\n\n\"Customer End User\" or \"End User\" means an individual or entity that Customer permits to use the Services or Customer Application(s).\n\n\u201cCustomer Indemnified Materials\u201d means the Customer Application and Customer Brand Features.\n\n\"Documentation\" means the then-current Google documentation described at https://developers.google.com/maps/documentation.\n\n\"Emergency Security Issue\" means either: (a) Customer\u2019s or Customer End Users\u2019 use of the Services in breach of the AUP, which such use could disrupt: (i) the Services; (ii) other customers\u2019 or their customer end users\u2019 use of the Services; or (iii) the Google network or servers used to provide the Services; or (b) unauthorized third party access to the Services.\n\n\"Europe\" or \"European\" means European Economic Area, Switzerland, or the UK.\n\n\u201cExport Control Laws\u201d means all applicable export and re-export control laws and regulations, including any applicable munitions- or defense-related regulations (for example, the International Traffic in Arms Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual Period\" means a calendar month or another period specified by Google in the Admin Console.\n\n\"Fee Threshold\" means the then-current threshold, as applicable for certain Services, as set out in the Admin Console.\n\n\u201cFeedback\u201d means feedback or suggestions about the Services provided by Customer to Google.\n\n\"Fees\" means the product of the amount of Services used or ordered by Customer multiplied by the Prices, plus any applicable Taxes.\n\n\"Google\" means the Google entity corresponding to Customer\u2019s billing address below:\n\tCountry or Region of Customer\u2019s billing address: \tGoogle entity:\n(1) \tUnited States and all other countries not otherwise listed below \tGoogle LLC\n1600 Amphitheatre Parkway, Mountain View, California 94043, USA\n(2) \tAny country in the Asia Pacific region (\u201cAPAC\u201d), except the countries listed in rows 6-9. \tGoogle Asia Pacific Pte. Ltd.\n70 Pasir Panjang Road, #03-71, Mapletree Business City II Singapore 117371\n(3) \tAny country in Europe, the Middle East, or Africa (\u201cEMEA\u201d), except as described in row 4: \tGoogle Ireland Limited\nGordon House Barrow Street, Dublin 4, Ireland\n(4) \tCustomer is located in the European Union, the UK, or Turkey and has chosen \u201cnon-business\u201d for its tax status/setting for its Google Account \tGoogle Commerce Limited\nGordon House, Barrow Street, Dublin 4, Ireland\n(5) \tCanada \tGoogle Cloud Canada Corporation\n111 Richmond Street West, Toronto, ON M5H 2G4, Canada\nFor rows 6-10, \"Google\" means Google Asia Pacific Pte. Ltd and/or its affiliates as the context requires, provided further that the Agreement is made and entered into by and between Customer and the Google entity corresponding to Customer\u2019s billing address below as an authorized reseller of the Services.\n(6) \tAustralia \tGoogle Australia Pty Ltd.\nLevel 5, 48 Pirrama Road, Pyrmont, NSW 2009 Australia\n(7) \tIndonesia \tPT Google Cloud Indonesia\nPacific Century Place Tower, Level 45, Sudirman Central Business District, Lot 10, Jalan Jendral Sudirman Kav 52-53 Jakarta, Indonesia 12190\n(8) \tJapan \tGoogle Cloud Japan G.K.\nRoppongi Hills Mori Tower, 10-1, Roppongi 6-chome, Minato-ku Tokyo, Japan\n(9) \tNew Zealand \tGoogle New Zealand Limited\nPWC Tower, Level 27, 188 Quay Street, Auckland, New Zealand 1010, an authorized reseller and the contracting party in New Zealand of Services provided by Google Asia Pacific Pte. Ltd.\n(10) \tSouth Korea \tGoogle Cloud Korea\nGangnam Finance Center 20fl., 152 Teheran-ro, Gangnam-gu, Seoul, South Korea;\n\n\"Google Indemnified Materials\" means Google's technology used to provide the Services (excluding any open source software) and Google's Brand Features.\n\n\"Google Maps Content\" means any content provided through the Services (whether created by Google or its third-party licensors), including map and terrain data, imagery, traffic data, and places data (including business listings).\n\n\"High Risk Activities\" means activities where the use or failure of the Services could lead to death, personal injury, or environmental damage, including (a) emergency response services; (b) autonomous and semi-autonomous vehicle or drone control; (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation.\n\n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs finally awarded against the indemnified party and its Affiliates by a court of competent jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual Property Rights\" means all patent rights, copyrights, trademark rights, rights in trade secrets (if any), design rights, database rights, domain name rights, moral rights, and any other intellectual property rights (registered or unregistered) throughout the world.\n\n\"Legal Process\" means an information disclosure request made under law, governmental regulation, court order, subpoena, warrant, governmental regulatory or agency request, or other valid legal authority, legal procedure, or similar process.\n\n\"Liability\" means any liability, whether under contract, tort (including negligence), or otherwise, regardless of whether foreseeable or contemplated by the parties.\n\n\"Maps Service Specific Terms\" means the then-current terms specific to one or more Services described at https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\n\"Maps Technical Support Services\" means the technical support service provided by Google to Customer under the then-current Maps Technical Support Services Guidelines.\n\n\"Maps Technical Support Services Guidelines\" means the then-current technical support service guidelines described at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Personal Data\" has the meaning given to it in: (a) Regulation (EU) 2016/679 of the European Parliament and of the Council of 27 April 2016 on the protection of natural persons with regard to the processing of personal data and on the free movement of such data, and repealing Directive 95/46/EC (\u201cEU GDPR\u201d); or (b) the EU GDPR as amended and incorporated into UK law under the UK European Union (Withdrawal) Act 2018 (\u201cUK GDPR\u201d), if in force, as applicable.\n\n\"Notification Email Address\" means the email address(es) designated by Customer in the Admin Console.\n\n\"Price\" means the then-current applicable price(s) stated at https://cloud.google.com/maps-platform/pricing/sheet/.\n\n\"Prohibited Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources for a particular Customer Application.\n\n\"Reseller\" means, if applicable, the authorized unaffiliated third-party reseller that sells or supplies the Services to Customer.\n\n\"Reseller Agreement\" means, if applicable, a separate, independent agreement between Customer and Reseller regarding the Services.\n\n\"Reseller Order Form\" means an order form entered into by Reseller and Customer, subject to the Reseller Agreement.\n\n\"Services\" and \"Google Maps Core Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/. The Services include the Google Maps Content and the Software.\n\n\"Significant Deprecation\" means a material discontinuance or backwards incompatible change to the Google Maps Core Services described at https://cloud.google.com/maps-platform/terms/maps-deprecation/.\n\n\"SLA\" or \"Service Level Agreement\" means each of the then-current service level agreements at: https://cloud.google.com/maps-platform/terms/sla/.\n\n\"Software\" means any downloadable tools, software development kits, or other computer software provided by Google for use as part of the Services, including updates.\n\n\"Suspend\" or \"Suspension \" means disabling access to or use of the Services or components of the Services.\n\n\"Taxes\" means any duties, customs fees, or government-imposed taxes associated with the purchase of the Services, including any related penalties or interest, except for taxes based on Google\u2019s net income, net worth, asset value, property value, or employment.\n\n\"Term\" has the meaning stated in Section 11.1 of the Agreement.\n\n\u201cTerms URL\u201d means the following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated third party before a court or government tribunal (including any appellate proceeding).\n\n\"Trademark Guidelines\" means (a) Google\u2019s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html and (b) the \u201cUse of Trademarks\u201d section of the \u201cUsing Google Maps, Google Earth and Street View\u201d permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark policy.\n\n\u201cURL Terms\u201d means the following, which will control in the following order if there is a conflict:\n\n(a) the Maps Service Specific Terms;\n\n(b) the SLA;\n\n(c) the AUP;\n\n(d) the Maps Technical Support Services Guidelines;\n\n(e) the Legal Notices for Google Maps/Google Earth and Google Maps/Google Earth APIs at https://www.google.com/help/legalnotices_maps.html; and\n\n(f) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html.\n22. Regional Terms.\n\nCustomer agrees to the following modifications to the Agreement if Customer orders Services from the applicable Google entity as described below:\nAsia Pacific - Indonesia PT Google Cloud Indonesia \t\n\n1. The following is added as Section 11.6 (Termination Waiver):\n\n11.6 Termination Waiver. The parties agree to waive any provisions under any applicable laws to the extent that a court decision or order is required for the termination of this Agreement.\n\n2. Section 19.11 (Governing Law) is deleted and replaced with the following:\n\n19.11 Governing Law.\n\n(a) The parties will try in good faith to settle any dispute within 30 days after the dispute arises. If the dispute is not resolved within 30 days, it must be resolved by arbitration by the American Arbitration Association\u2019s International Centre for Dispute Resolution in accordance with its Expedited Commercial Rules in force as of the date of the Agreement (\"Rules\").\n\n(b) The parties will mutually select one arbitrator. The arbitration will be conducted in English in Santa Clara County, California, USA.\n\n(c) Either party may apply to any competent court for injunctive relief necessary to protect its rights pending resolution of the arbitration. The arbitrator may order equitable or injunctive relief consistent with the remedies and limitations in the Agreement.\n\n(d) Subject to the confidentiality requirements in Section 19.11(f), either party may petition any competent court to issue any order necessary to protect that party\u2019s rights or property; this petition will not be considered a violation or waiver of this governing law and arbitration section and will not affect the arbitrator\u2019s powers, including the power to review the judicial decision. The parties stipulate that the courts of Santa Clara County, California, USA, are competent to grant any order under this Section 19.11(d).\n\n(e) The arbitral award will be final and binding on the parties and its execution may be presented in any competent court, including any court with jurisdiction over either party or any of its property.\n\n(f) Any arbitration proceeding conducted in accordance with this Section will be considered Confidential Information under the Agreement\u2019s confidentiality section, including (i) the existence of, (ii) any information disclosed during, and (iii) any oral communications or documents related to the arbitration proceedings. The parties may also disclose the information described in this Section 19.11(f) to a competent court as may be necessary to file any order under Section 19.11(d) or execute any arbitral decision, but the parties must request that those judicial proceedings be conducted in camera (in private).\n\n(g) The parties will pay the arbitrator\u2019s fees, the arbitrator\u2019s appointed experts\u2019 fees and expenses, and the arbitration center\u2019s administrative expenses in accordance with the Rules. In its final decision, the arbitrator will determine the non-prevailing party\u2019s obligation to reimburse the amount paid in advance by the prevailing party for these fees.\n\n(h) Each party will bear its own lawyers\u2019 and experts\u2019 fees and expenses, regardless of the arbitrator\u2019s final decision regarding the Dispute.\n\n(i) The parties agree that a decision of the arbitrators need not to be made within any specific time period.\n\n3. Section 19.15 (Conflicting Languages) is deleted and replaced with the following:\n\n19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version.", + "json": "google-maps-tos-2020-04-27.json", + "yaml": "google-maps-tos-2020-04-27.yml", + "html": "google-maps-tos-2020-04-27.html", + "license": "google-maps-tos-2020-04-27.LICENSE" + }, + { + "license_key": "google-maps-tos-2020-05-06", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2020-05-06", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Maps Platform Terms of Service\n\nLast modified: May 6, 2020\n\nIf your billing address is in Brazil, please review these Terms of Service, which apply to your use of Google Maps Platform.\n\nSe a sua conta para faturamento \u00e9 no Brasil, por gentileza veja o Termos de Servi\u00e7o, que ser\u00e1 o Termo aplic\u00e1vel \u00e0 sua utiliza\u00e7\u00e3o da Google Maps Platform.\n\nIf your billing address is in Indonesia, please review these Terms of Service, which apply to your use of Google Maps Platform.\n\nGoogle Maps Platform License Agreement\n\nThis Google Maps Platform License Agreement (the \"Agreement\") is made and entered into between Google (as defined in Section 21 (Definitions)) and the entity or person agreeing to these terms (\"Customer\").\n\nThis Agreement is effective as of the date Customer clicks to accept the Agreement, or enters into a Reseller Agreement if purchasing through a Reseller (the \"Effective Date\"). If you are accepting on behalf of Customer, you represent and warrant that: (a) you have full legal authority to bind Customer to this Agreement; (b) you have read and understand this Agreement; and (c) you agree, on behalf of Customer, to this Agreement. If you do not have the legal authority to bind Customer, please do not click to accept. This Agreement governs Customer's access to and use of the Services.\n1. Provision of the Services.\n\n1.1 Use of the Services in Customer Applications. Google will provide the Services to Customer in accordance with the Agreement, and Customer may use the Services in Customer Application(s) in accordance with Section 3 (License).\n\n1.2 Admin Console; Projects; API Keys. Customer will administer the Services through the online Admin Console. To access the Services, Customer must create Project(s) and use its API key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer must have an Account. Customer is responsible for: (a) the information it provides in connection with the Account; (b) maintaining the confidentiality and security of the Account and associated passwords; and (c) any use of its Account.\n\n1.4 Customer Domains and Applications. Customer must list in the Admin Console each authorized domain and application that uses the Services. Customer is responsible for ensuring that only authorized domains and applications use the Services.\n\n1.5 New Features and Services. Google may: (a) make new features or functionality available through the Services and (b) add new services to the \"Services\" definition (by adding them at the URL stated under that definition). Customer\u2019s use of new features or functionality may be contingent on Customer\u2019s agreement to additional terms applicable to the new feature or functionality.\n\n1.6 Modifications.\n\n1.6.1 To the Services. Subject to Section 9 (Deprecation Policy), Google may make changes to the Services, which may include adding, updating, or discontinuing any Services or portion or feature(s) of the Services. Google will notify Customer of any material change to the Services.\n\n1.6.2. To the Agreement. Google may make changes to the Agreement, including pricing and any linked documents. Unless otherwise noted by Google, material changes to the Agreement will become effective 30 days after notice is given, except (a) materially adverse SLA changes will become effective 90 days after notice is given; and (b) changes applicable to new Services or functionality, or required by a court order or applicable law, will be effective immediately. Google will provide notice for materially adverse changes to any SLAs by: (i) sending an email to the Notification Email Address; (ii) posting a notice in the Admin Console; or (iii) posting a notice to the applicable SLA webpage. If Customer does not agree to the revised Agreement, Customer should stop using the Services. Google will post any modification to this Agreement to the Terms URL.\n2. Payment Terms.\n\n2.1 Free Quota. Certain Services are provided to Customer without charge up to the Fee Threshold, as applicable.\n\n2.2 Online Billing. At the end of the applicable Fee Accrual Period, Google will issue an electronic bill to Customer for all charges accrued above the Fee Threshold based on Customer\u2019s use of the Services during the previous Fee Accrual Period. For use above the Fee Threshold, Customer will be responsible for all Fees up to the amount set in the Account and will pay all Fees in the currency set forth in the invoice. If Customer elects to pay by credit card, debit card, or other non-invoiced form of payment, Google will charge (and Customer will pay) all Fees immediately at the end of the Fee Accrual Period. If Customer elects to pay by invoice (and Google agrees), all Fees are due as stated in the invoice. Customer\u2019s obligation to pay all Fees is non-cancellable. Google's measurement of Customer\u2019s use of the Services is final. Google has no obligation to provide multiple bills. Payments made via wire transfer must include the bank information provided by Google. If Customer has entered into the Agreement with GCL, Google may collect payments via Google Payment Limited, a company incorporated in England and Wales with offices at Belgrave House, 76 Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\n2.3 Taxes.\n\n2.3.1 Customer is responsible for any Taxes, and Customer will pay Google for the Services without any reduction for Taxes. If Google is obligated to collect or pay Taxes, the Taxes will be invoiced to Customer, unless Customer provides Google with a timely and valid tax exemption certificate authorized by the appropriate taxing authority. In some states the sales tax is due on the total purchase price at the time of sale and must be invoiced and collected at the time of the sale. If Customer is required by law to withhold any Taxes from its payments to Google, Customer must provide Google with an official tax receipt or other appropriate documentation to support such withholding. If under the applicable tax legislation the Services are subject to local VAT and the Customer is required to make a withholding of local VAT from amounts payable to Google, the value of Services calculated in accordance with the above procedure will be increased (grossed up) by Customer for the respective amount of local VAT and the grossed up amount will be regarded as a VAT inclusive price. Local VAT amount withheld from the VAT-inclusive price will be remitted to the applicable local tax entity by the Customer and Customer will ensure that Google will receive payment for its services for the net amount as would otherwise be due (the VAT inclusive price less the local VAT withheld and remitted to applicable tax authority).\n\n2.3.2 If required under applicable law, Customer will provide Google with applicable tax identification information that Google may require to ensure its compliance with applicable tax regulations and authorities in applicable jurisdictions. Customer will be liable to pay (or reimburse Google for) any taxes, interest, penalties or fines arising out of any mis-declaration by the Customer.\n\n2.4 Invoice Disputes & Refunds. Any invoice disputes must be submitted before the payment due date. If Google determines that Fees were incorrectly invoiced, then Google will issue a credit equal to the agreed amount. To the fullest extent permitted by law, Customer waives all claims relating to Fees unless claimed within 60 days after charged (this does not affect any Customer rights with its credit card issuer). Nothing in the Agreement obligates Google to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. If Customer\u2019s payment is overdue, then Google may (a) charge interest on overdue amounts at 1.5% per month (or the highest rate permitted by law, if less) from the Payment Due Date until paid in full, and (b) Suspend the Services or terminate the Agreement. Customer will reimburse Google for all reasonable expenses (including attorneys\u2019 fees) incurred by Google in collecting overdue payments except where such payments are due to Google\u2019s billing inaccuracies.\n\n2.6 No Purchase Order Number Required. Google is not required to provide a purchase order number on Google\u2019s invoice (or otherwise).\n3. License.\n\n3.1 License Grant. Subject to the Agreement's terms, during the Term, Google grants to Customer a non-exclusive, non-transferable, non-sublicensable, license to use the Services in Customer Application(s).\n\n3.2 License Requirements and Restrictions. The following are conditions of the license granted in Section 3.1 (License Grant). In this Section 3.2 (License Requirements and Restrictions), the phrase \u201cCustomer will not\u201d means \u201cCustomer will not, and will not permit a third party to\u201d.\n\n3.2.1 General Restrictions. Customer will not: (a) copy, modify, create a derivative work of, reverse engineer, decompile, translate, disassemble, or otherwise attempt to extract any or all of the source code (except to the extent such restriction is expressly prohibited by applicable law); (b) sublicense, transfer, or distribute any of the Services; (c) sell, resell, sublicense, transfer, or distribute the Services; or (d) access or use the Services: (i) for High Risk Activities; (ii) in a manner intended to avoid incurring Fees; (iii) for materials or activities that are subject to the International Traffic in Arms Regulations (ITAR) maintained by the United States Department of State; (iv) in a manner that breaches, or causes the breach of, Export Control Laws; or (v) to transmit, store, or process health information subject to United States HIPAA regulations.\n\n3.2.2 Requirements for Using the Services.\n\n(a) Terms of Service and Privacy Policy.\n\n(i) The Customer Application\u2019s terms of service will (A) notify users that the Customer Application includes Google Maps features and content; and (B) state that use of Google Maps features and content is subject to the then-current versions of the: (1) Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html; and (2) Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n(ii) If the Customer Application allows users to include the Google Maps Core Services in Downstream Products, then Customer will contractually require that all Downstream Products\u2019 terms of service satisfy the same notice and flow-down requirements that apply to the Customer Application under Section 3.2.2 (a) (i) (Terms of Service and Privacy Policy).\n\n(iii) If users of the Customer Application (and Downstream Products, if any) fail to comply with the applicable terms of the Google Maps/Google Earth Additional Terms of Service, then Customer will take appropriate enforcement action, including Suspending or terminating those users\u2019 use of Google Maps features and content in the Customer Application or Downstream Products.\n\n(b) Attribution. Customer will display all attribution that (i) Google provides through the Services (including branding, logos, and copyright and trademark notices); or (ii) is specified in the Maps Service Specific Terms. Customer will not modify, obscure, or delete such attribution.\n\n(c) Review of Customer Applications. At Google\u2019s request, Customer will submit Customer Application(s) and Project(s) to Google for review to ensure compliance with the Agreement (including the AUP).\n\n3.2.3 Restrictions Against Misusing the Services.\n\n(a) No Scraping. Customer will not export, extract, or otherwise scrape Google Maps Content for use outside the Services. For example, Customer will not: (i) pre-fetch, index, store, reshare, or rehost Google Maps Content outside the services; (ii) bulk download Google Maps tiles, Street View images, geocodes, directions, distance matrix results, roads information, places information, elevation values, and time zone details; (iii) copy and save business names, addresses, or user reviews; or (iv) use Google Maps Content with text-to-speech services.\n\n(b) No Caching. Customer will not cache Google Maps Content except as expressly permitted under the Maps Service Specific Terms.\n\n(c) No Creating Content From Google Maps Content. Customer will not create content based on Google Maps Content. For example, Customer will not: (i) trace or digitize roadways, building outlines, utility posts, or electrical lines from the Maps JavaScript API Satellite base map type; (ii) create 3D building models from 45\u00b0 Imagery from Maps JavaScript API; (iii) build terrain models based on elevation values from the Elevation API; (iv) use latitude/longitude values from the Places API as an input for point-in-polygon analysis; (v) construct an index of tree locations within a city from Street View imagery; or (vi) convert text-based driving times into synthesized speech results.\n\n(d) No Re-Creating Google Products or Features. Customer will not use the Services to create a product or service with features that are substantially similar to or that re-create the features of another Google product or service. Customer\u2019s product or service must contain substantial, independent value and features beyond the Google products or services. For example, Customer will not: (i) re-distribute the Google Maps Core Services or pass them off as if they were Customer\u2019s services; (ii) use the Google Maps Core Services to create a substitute of the Google Maps Core Services, Google Maps, or Google Maps mobile apps, or their features; (iii) use the Google Maps Core Services in a listings or directory service or to create or augment an advertising product; (iv) combine data from the Directions API, Geolocation API, and Maps SDK for Android to create real-time navigation functionality substantially similar to the functionality provided by the Google Maps for Android mobile app.\n\n(e) No Use With Non-Google Maps. To avoid quality issues and/or brand confusion, Customer will not use the Google Maps Core Services with or near a non-Google Map in a Customer Application. For example, Customer will not (i) display or use Places content on a non-Google map, (ii) display Street View imagery and non-Google maps on the same screen, or (iii) link a Google Map to non-Google Maps content or a non-Google map.\n\n(f) No Circumventing Fees. Customer will not circumvent the applicable Fees. For example, Customer will not create multiple billing accounts or Projects to avoid incurring Fees, prevent Google from accurately calculating Customer\u2019s Service usage levels, abuse any free Service quotas, or offer access to the Services under a \u201ctime-sharing\u201d or \u201cservice bureau\u201d model.\n\n(g) No Use in Prohibited Territories. Customer will not distribute or market in a Prohibited Territory any Customer Application(s) that use the Google Maps Core Services.\n\n(h) No Use in Embedded Vehicle Systems. Customer will not use the Google Maps Core Services in connection with any Customer Application or device embedded in a vehicle. For example, Customer will not create a Customer Application that (i) is embedded in an in-dashboard automotive infotainment system; and (ii) allows End Users to request driving directions from the Directions API.\n\n(i) No Use in Customer Application Directed To Children. Customer will not use the Google Maps Core Services in a Customer Application that would be deemed to be a \u201cWeb site or online service directed to children\u201d under the Children\u2019s Online Privacy Protection Act (COPPA).\n\n(j) No Modifying Search Results Integrity. Customer will not modify any of the Google Maps Core Services\u2019 search results.\n\n3.2.4 Benchmarking. Customer may not publicly disclose directly or through a third party the results of any comparative or compatibility testing, benchmarking, or evaluation of the Services (each, a \u201cTest\u201d), unless the disclosure includes all information necessary for Google or a third party to replicate the Test. If Customer conducts, or directs a third party to conduct, a Test of the Services and publicly discloses the results directly or through a third party, then Google (or a Google directed third party) may conduct Tests of any publicly available cloud products or services provided by Customer and publicly disclose the results of any such Test (which disclosure will include all information necessary for Customer or a third party to replicate the Test).\n4. Customer Obligations. \n\n4.1 Compliance. Customer will: (a) ensure that Customer\u2019s and its End Users\u2019 use of the Services complies with the Agreement; (b) prevent and terminate any unauthorized use of or access to its Account(s) or the Services; and (c) promptly notify Google of any unauthorized use of or access to its Account(s) or the Services of which Customer becomes aware.\n\n4.2 Documentation. Google may provide Documentation for Customer\u2019s use of the Services. The Documentation may specify restrictions (e.g. attribution or HTML restrictions) on how the Services may be used and Customer will comply with any such restrictions specified.\n\n4.3 Copyright Policy. Google provides information to help copyright holders manage their intellectual property online, but Google cannot determine whether something is being used legally without input from the copyright holders. Google will respond to notices of alleged copyright infringement and may terminate repeat infringers in appropriate circumstances as required to maintain safe harbor for online service providers under the U.S. Digital Millennium Copyright Act. If Customer believes a person or entity is infringing Customer\u2019s or End Users\u2019 copyrights and would like to notify Google, Customer can find information about submitting notices, and Google's policy about responding to notices at https://www.google.com/dmca.html.\n\n4.4 Data Use, Protection, and Privacy.\n\n4.4.1 Data Use and Retention. To provide the Services through the Customer Application(s), Google collects and receives data from Customer and End Users (and End Users\u2019 End Users, if any), including search terms, IP addresses, and latitude/longitude coordinates. Customer acknowledges and agrees that Google and its Affiliates may use and retain this data to provide and improve Google products and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n4.4.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\n4.4.3 End User Requirements.\n\n(a) End User Privacy. Customer\u2019s use of the Services in the Customer Application will comply with applicable privacy laws, including laws regarding Services that store and access Cookies on End Users\u2019 devices. Customer will comply with the then-current Consent Policy at https://www.google.com/about/company/user-consent-policy.html, if applicable.\n\n(b) End User Personal Data. Through the normal functioning of the Google Maps Core Services, End Users provide personally identifiable information and Personal Data directly to Google, subject to the then-current Google Privacy Policy at https://www.google.com/policies/privacy/. (a) However, Customer will not provide to Google (i) any End User\u2019s personally identifiable information; or (ii) any European End User\u2019s Personal Data (where \u201cEuropean\u201d means \u201cEuropean Economic Area, Switzerland, or the UK\u201d).\n\n(c) End User Location Privacy Requirements. To safeguard End Users\u2019 location privacy, Customer will ensure that the Customer Application(s): (i) notify End Users in advance of (1) the type(s) of data that Customer intends to collect from the End Users or the End Users\u2019 devices, and (2) the combination and use of End User's location with any other data provider's data; and (ii) will not obtain or cache any End User's location except with the End User's express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions Breaches. Google may Suspend the Services without prior notice if Customer breaches Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Breaches or Emergency Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP Breaches) and 5.2.2 (Emergency Suspension). Any Suspension under those Sections will be to the minimum extent and for the shortest duration required to: (a) prevent or terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c) comply with applicable law.\n\n5.2.1 AUP Breaches. If Google becomes aware that Customer\u2019s or any End User\u2019s use of the Services breaches the AUP, Google will give Customer notice of such breach by requesting that Customer correct the breach. If Customer fails to correct such breach within 24 hours, or if Google is otherwise required by applicable law to take action, then Google may Suspend all or part of Customer\u2019s use of the Services.\n\n5.2.2 Emergency Suspension. Google may immediately Suspend Customer\u2019s use of the Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend such use to comply with applicable law. At Customer\u2019s request, unless prohibited by applicable law, Google will notify Customer of the basis for the Suspension as soon as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights Infringement. If the Customer Application is alleged to infringe a third party\u2019s Intellectual Property Rights, Google may require Customer to suspend all use of the Google Maps Core Services in the Customer Application on 30 days\u2019 written notice until such allegation is fully resolved. In any event, this Section 5.3 (For Alleged Third-Party Intellectual Property Rights Infringement) does not reduce Customer\u2019s obligations under Section 15 (Indemnification).\n6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as expressly stated in the Agreement, the Agreement does not grant either party any rights, implied or otherwise, to the other\u2019s content or any of the other\u2019s intellectual property. As between the parties, Customer owns all Intellectual Property Rights in the Customer Application, and Google owns all Intellectual Property Rights in the Google Maps Core Services.\n\n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google may use that information without obligation to Customer, and Customer irrevocably assigns to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices and License Terms.\n\nCertain components of the Services (including open source software) are subject to third-party copyright and other Intellectual Property Rights, as specified in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and (b) separate, publicly-available third-party license terms, which Google will provide to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will provide Maps Technical Support Services to Customer in accordance with the Maps Technical Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n Google will notify Customer at least 12 months before making a Significant Deprecation, unless Google reasonably determines that: (a) Google cannot do so by law or by contract (including if there is a change in applicable law or contract) or (b) continuing to provide the Services could create a security risk or substantial economic or technical burden.\n10. Confidentiality.\n\n10.1 Confidentiality Obligations. Subject to Section 10.2 (Required Disclosure), the recipient will use the other party\u2019s Confidential Information only to exercise its rights and fulfill its obligations under the Agreement. The recipient will use reasonable care to protect against disclosure of the other party\u2019s Confidential Information to parties other than the recipient\u2019s employees, Affiliates, agents, or professional advisors (\u201cDelegates\u201d) who need to know it and are subject to confidentiality obligations at least as protective as those in this Section 10.1 (Confidentiality Obligations).\n\n10.2 Required Disclosure.\n\n10.2.1 Subject to Section 10.2.2, the recipient and its Affiliates may disclose the other party\u2019s Confidential Information to the extent required by applicable Legal Process, If the recipient and its Affiliates (as applicable) use commercially reasonable efforts to: (a) promptly notify the other party of such disclosure before disclosing; and (b) comply with the other party\u2019s reasonable requests regarding its efforts to oppose the disclosure.\n\n10.2.2 Sections 10.2.1(a) and (b) above will not apply if the recipient determines that complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii) obstruct a governmental investigation; or (iii) lead to death or serious physical harm to an individual.\n\n10.2.3 As between the parties, Customer is responsible for responding to all third party requests concerning its use and Customer End Users\u2019 use of the Services.\n11. Term and Termination.\n\n11.1 Agreement Term. The Agreement is effective from the Effective Date until it is terminated in accordance with its terms (the \u201cTerm\u201d).\n\n11.2 Termination for Breach. Either party may terminate the Agreement for breach if: (a) the other party is in material breach of the Agreement and fails to cure that breach within 30 days after receipt of written notice; (b) the other party ceases its business operations; or (c) becomes subject to insolvency proceedings and the proceedings are not dismissed within 90 days. Google may terminate Projects or access to Services, if Customer meets any of the conditions in subsections (a) or (b).\n\n11.3 Termination for Inactivity. Google may terminate Projects with 30 days' prior written notice if such Project (a) has not made any requests to the Services from any Customer Applications for more than 180 days; or (b) has not incurred any Fees for more than 180 days.\n\n11.4 Termination for Convenience. Customer may stop using the Services at any time. Subject to any financial commitments expressly made by this Agreement, Customer may terminate the Agreement for its convenience at any time with 30 days' prior written notice. Google may terminate the Agreement for its convenience at any time without liability to Customer.\n\n11.5 Effects of Termination. \n\n11.5.1 If the Agreement terminates, then: (a) the rights and access to the Services will terminate; (b) all Fees owed by Customer to Google are immediately due upon receipt of the final electronic bill; and (c) Customer will delete the Software and any content from the Services by the termination effective date.\n\n11.5.2 The following will survive expiration or termination of the Agreement: Section 2 (Payment Terms), Section 3.2 (License Requirements and Restrictions), Section 4.4 (Data Use, Protection, and Privacy), Section 6 (Intellectual Property; Feedback), Section 10 (Confidential Information), Section 11.5 (Effects of Termination), Section 14 (Disclaimer), Section 15 (Indemnification), Section 16 (Limitation of Liability), Section 19 (Miscellaneous), and Section 21 (Definitions).\n12. Publicity.\n\nCustomer may state publicly that it is a customer of the Services, consistent with the Trademark Guidelines. If Customer wants to display Google Brand Features in connection with its use of the Services, Customer must obtain written permission from Google through the process specified in the Trademark Guidelines. Google may include Customer\u2019s name or Brand Features in a list of Google customers, online or in promotional materials. Google may also verbally reference Customer as a customer of the Services. Neither party needs approval if it is repeating a public statement that is substantially similar to a previously-approved public statement. Any use of a party\u2019s Brand Features will inure to the benefit of the party holding Intellectual Property Rights to those Brand Features. A party may revoke the other party\u2019s right to use its Brand Features under this Section with written notice to the other party and a reasonable period to stop the use.\n13. Representations and Warranties.\n\nEach party represents and warrants that: (a) it has full power and authority to enter into the Agreement; and (b) it will comply with Export Control Laws and Anti-Bribery Laws applicable to its provision, receipt, or use, of the Services, as applicable.\n14. Disclaimer.\n\n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED USE OF THE SERVICES OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION ACCESSIBLE THROUGH THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES EXPRESSLY STATED IN THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES ARE PROVIDED FOR PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES MAY DIFFER FROM ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION. CUSTOMER MUST EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT (i) GOOGLE MAPS ARE SUITABLE FOR THE CUSTOMER APPLICATION; AND (ii) THE CUSTOMER APPLICATION IS SAFE FOR END USERS AND OTHER THIRD PARTIES.\n15. Indemnification.\n\n15.1 Customer Indemnification Obligations. Unless prohibited by applicable law, Customer will defend Google and its Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer\u2019s or an End User\u2019s use of the Services in violation of the AUP or in violation of the Agreement.\n\n15.2 Google Indemnification Obligations. Google will defend Customer and its Affiliates participating under the Agreement (\u201cCustomer Indemnified Parties\u201d), and indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising from an Allegation that Customer Indemnified Parties' use of Google Indemnified Materials infringes the third party's Intellectual Property Rights.\n\n15.3 Indemnification Exclusions. Sections 15.1 (Customer Indemnification Obligations) and 15.2 (Google Indemnification Obligations) will not apply to the extent the underlying Allegation arises from (a) the indemnified party\u2019s breach of the Agreement or (b) a combination of the Customer Indemnified Materials or Google Indemnified Materials (as applicable)s with materials not provided by the indemnifying party, unless the combination is required by the Agreement.\n\n15.4 Indemnification Conditions. Sections 15.1 (Customer Indemnification Obligations) and 15.2 (Google Indemnification Obligations) are conditioned on the following:\n\n(a) The indemnified party must promptly notify the indemnifying party in writing of any Allegation(s) that preceded the Third-Party Legal Proceeding and cooperate reasonably with the indemnifying party to resolve the Allegation(s) and Third-Party Legal Proceeding. If breach of this Section 15.4(a) prejudices the defense of the Third-Party Legal Proceeding, the indemnifying party\u2019s obligations under Section 15.1 (Customer Indemnification Obligations) or 15.2 (Google Indemnification Obligations) (as applicable) will be reduced in proportion to the prejudice.\n\n(b) The indemnified party must tender sole control of the indemnified portion of the Third-Party Legal Proceeding to the indemnifying party, subject to the following: (i) the indemnified party may appoint its own non-controlling counsel, at its own expense; and (ii) any settlement requiring the indemnified party to admit liability, pay money, or take (or refrain from taking) any action, will require the indemnified party\u2019s prior written consent, not to be unreasonably withheld, conditioned, or delayed.\n\n15.5 Remedies.\n\n(a) If Google reasonably believes the Services might infringe a third party\u2019s Intellectual Property Rights, then Google may, at its sole option and expense: (i) procure the right for Customer to continue using the Services; (ii) modify the Services to make them non-infringing without materially reducing their functionality; or (iii) replace the Services with a non-infringing, functionally equivalent alternative.\n\n(b) If Google does not believe the remedies in Section 15.5(a) are commercially reasonable, then Google may Suspend or terminate Customer\u2019s use of the impacted Services.\n\n15.6 Sole Rights and Obligations. Without affecting either party\u2019s termination rights, this Section 15 states the parties\u2019 sole and exclusive remedy under the Agreement for any Allegations of Intellectual Property Rights infringement covered by this Section 15 (Indemnification).\n16. Liability.\n\n16.1 Limited Liabilities\n\n(a) To the extent permitted by applicable law and subject to Section 16.2 (Unlimited Liabilities), neither party and Google\u2019s licensors will have any Liability arising out of or relating to the Agreement for any (i) indirect, consequential, special, incidental, or punitive damages or (ii) lost revenues, profits, savings, or goodwill.\n\n(b) Each party\u2019s total aggregate Liability for damages arising out of or relating to the Agreement is limited to the Fees Customer paid under the Agreement during the 12 month period before the event giving rise to Liability.\n\n16.2 Unlimited Liabilities. Nothing in the Agreement excludes or limits either party\u2019s Liability for:\n\n(a) its infringement of the other party\u2019s Intellectual Property Rights\n\n(b) its payment obligations under the Agreement; or\n\n(c) matters for which liability cannot be excluded or limited under applicable law.\n17. Advertising.\n\nIn its sole discretion, Customer may configure the Service to either display or not display advertisements served by Google.\n18. U.S. Federal Agency Users.\n\nThe Services were developed solely at private expense and are commercial computer software and related documentation within the meaning of the applicable Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\n19.1 Notices. All notices must be in writing and addressed: (a) in the case of Google, to Google\u2019s Legal Department at legal-notices@google.com; and (b) in the case of Customer, to the Notification Email Address. Notice will be treated as given on receipt as verified by written or automated receipt or by electronic log (as applicable).\n\n19.2 Assignment. Customer may not assign the Agreement without the written consent of Google, except to an Affiliate where: (a) the assignee has agreed in writing to be bound by the terms of the Agreement; (b) the assigning party remains liable for obligations under the Agreement if the assignee defaults on them; and (c) the assigning party has notified the other party of the assignment. Any other attempt by Customer to assign is void. Google may assign the Agreement without the written consent of Customer by notifying Customer of the assignment.\n\n19.3 Change of Control. If a party experiences a change of Control other than an internal restructuring or reorganization, then: (a) that party will give written notice to the other party within 30 days after the change of Control; and (b) the other party may immediately terminate the Agreement any time between the change of Control and 30 days after it receives that written notice.\n\n19.4 Force Majeure. Neither party will be liable for failure or delay in performance to the extent caused by circumstances beyond its reasonable control, including acts of God, natural disasters, terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations under the Agreement but will remain liable to Customer for any subcontracted obligations.\n\n19.6 No Agency. The Agreement does not create any agency, partnership or joint venture between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived any rights by not exercising (or delaying the exercise of) any rights under the Agreement.\n\n19.8 Severability. If any part of the Agreement is invalid, illegal, or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party Beneficiaries. The Agreement does not confer any benefits on any third party unless it expressly states that it does.\n\n19.10 Equitable Relief. Nothing in the Agreement will limit either party\u2019s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n(a) For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county or state government entity, then the Agreement will be silent regarding governing law and venue.\n\n(b) For U.S. Federal Government Entities. If Customer is a U.S. federal government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THE AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA, EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I) THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA\u2019S CONFLICT OF LAWS RULES) WILL APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF OR RELATING TO THE AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n(c) For All Other Entities. If Customer is any entity not listed in Section 19.11 (A) (For U.S. City, County, and State Government Entities) or 19.11(B) (For U.S. Federal Government Entities) then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THE AGREEMENT OR THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE\u2019S CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\n19.12 Amendments. Except as stated in Section 1.6.2 (Modifications; To the Agreement), any amendment to the Agreement must be in writing, expressly state that it is amending this Agreement, and be signed by both parties.\n\n19.13 Entire Agreement. The Agreement states all terms agreed between the parties and supersedes any prior or contemporaneous agreements between the parties relating to its subject matter. In entering into this Agreement, neither party has relied on, and neither party will have any right or remedy based on, any statement, representation or warranty (whether made negligently or innocently), except those expressly stated in the Agreement. The Agreement includes URL links to other terms (including the URL Terms), which are incorporated by reference into the Agreement. After the Effective Date, Google may provide an updated URL in place of any URL in the Agreement.\n\n19.14 Conflicting Terms. If there is a conflict between the documents that make up the Agreement, then the documents will control in the following order: the Agreement and the terms at any URL. \n\n19.15 Conflicting Languages. If the Agreement is translated into any other language, and there is a discrepancy between the English text and the translated text, the English text will govern.\n20. Reseller Orders.\n\nThis Section applies if Customer orders the Services from a Reseller under a Reseller Agreement (including the Reseller Order Form).\n\n20.1 Orders. If Customer orders Services from Reseller, then: (a) fees for the Services will be set between Customer and Reseller, and any payments will be made directly to Reseller under the Reseller Agreement; (b) Section 2 of the Agreement (Payment Terms) will not apply to the Services; (c) Customer will receive any applicable SLA credits from Reseller, if owed to Customer in accordance with the SLA; and (d) Google will have no obligation to provide any SLA credits to a Customer who orders Services from the Reseller.\n\n20.2 Conflicting Terms. If Customer orders Google Maps Core Services from a Reseller and if any documents conflict, then the documents will control in the following order: the Agreement, the terms at any URL (including the URL Terms), and the Reseller Order Form. For example, if there is a conflict between the Maps Service Specific Terms and the Reseller Order Form, the Maps Service Specific Terms will control.\n\n20.3 Reseller as Administrator. At Customer's discretion, Reseller may access Customer's Projects, Accounts, or the Services on behalf of Customer. As between Google and Customer, Customer is solely responsible for: (a) any access by Reseller to Customer\u2019s Account(s), Project(s), or the Services; and (b) defining in the Reseller Agreement any rights or obligations as between Reseller and Customer with respect to the Accounts, Projects, or Services.\n\n20.4 Reseller Verification of Customer Application(s). Before providing the Services, Reseller may also verify that Customer owns or controls the Customer Applications. If Reseller determines that Customer does not own or control the Customer Applications, then Google will have no obligation to provide the Services to Customer.\n21. Definitions.\n\n\"Account\" means Customer\u2019s Google Account.\n\n\"Admin Console\" means the online console(s) and/or tool(s) provided by Google to Customer for administering the Services.\n\n\"Affiliate\" means any entity that directly or indirectly Controls, is Controlled by, or is under common Control with a party.\n\n\"Allegation\" means an unaffiliated third party\u2019s allegation.\n\n\u201cAnti-Bribery Laws\u201d means all applicable commercial and public anti-bribery laws, (for example, the U.S. Foreign Corrupt Practices Act of 1977 and the UK Bribery Act 2010), which prohibit corrupt offers of anything of value, either directly or indirectly, to anyone, including government officials, to obtain or keep business or to secure any other improper commercial advantage. \u201cGovernment officials\u201d include any government employee; candidate for public office; and employee of government-owned or government-controlled companies, public international organizations, and political parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the then-current Acceptable Use Policy for the Services described at https://cloud.google.com/maps-platform/terms/aup/.\n\n\"Brand Features\" means each party\u2019s trade names, trademarks, service marks, logos, domain names, and other distinctive brand features.\n\n\"Confidential Information\" means information that one party (or an Affiliate) discloses to the other party under this Agreement, and which is marked as confidential or would normally under the circumstances be considered confidential information. It does not include information that is independently developed by the recipient, is rightfully given to the recipient by a third party without confidentiality obligations, or becomes public through no fault of the recipient.\n\n\"Control\" means control of greater than 50% of the voting rights or equity interests of a party.\n\n\"Customer Application\" means any web page or application (including all source code and features) owned or controlled by Customer, or that Customer is authorized to use.\n\n\"Customer End User\" or \"End User\" means an individual or entity that Customer permits to use the Services or Customer Application(s).\n\n\u201cCustomer Indemnified Materials\u201d means the Customer Application and Customer Brand Features.\n\n\"Documentation\" means the then-current Google documentation described at https://developers.google.com/maps/documentation.\n\n\"Emergency Security Issue\" means either: (a) Customer\u2019s or Customer End Users\u2019 use of the Services in breach of the AUP, which such use could disrupt: (i) the Services; (ii) other customers\u2019 or their customer end users\u2019 use of the Services; or (iii) the Google network or servers used to provide the Services; or (b) unauthorized third party access to the Services.\n\n\"Europe\" or \"European\" means European Economic Area, Switzerland, or the UK.\n\n\u201cExport Control Laws\u201d means all applicable export and re-export control laws and regulations, including any applicable munitions- or defense-related regulations (for example, the International Traffic in Arms Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual Period\" means a calendar month or another period specified by Google in the Admin Console.\n\n\"Fee Threshold\" means the then-current threshold, as applicable for certain Services, as set out in the Admin Console.\n\n\u201cFeedback\u201d means feedback or suggestions about the Services provided by Customer to Google.\n\n\"Fees\" means the product of the amount of Services used or ordered by Customer multiplied by the Prices, plus any applicable Taxes.\n\n\"Google\" has the meaning given at https://cloud.google.com/terms/google-entity.\n\n\"Google Indemnified Materials\" means Google's technology used to provide the Services (excluding any open source software) and Google's Brand Features.\n\n\"Google Maps Content\" means any content provided through the Services (whether created by Google or its third-party licensors), including map and terrain data, imagery, traffic data, and places data (including business listings).\n\n\"High Risk Activities\" means activities where the use or failure of the Services could lead to death, personal injury, or environmental damage, including (a) emergency response services; (b) autonomous and semi-autonomous vehicle or drone control; (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation.\n\n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs finally awarded against the indemnified party and its Affiliates by a court of competent jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual Property Rights\" means all patent rights, copyrights, trademark rights, rights in trade secrets (if any), design rights, database rights, domain name rights, moral rights, and any other intellectual property rights (registered or unregistered) throughout the world.\n\n\"Legal Process\" means an information disclosure request made under law, governmental regulation, court order, subpoena, warrant, governmental regulatory or agency request, or other valid legal authority, legal procedure, or similar process.\n\n\"Liability\" means any liability, whether under contract, tort (including negligence), or otherwise, regardless of whether foreseeable or contemplated by the parties.\n\n\"Maps Service Specific Terms\" means the then-current terms specific to one or more Services described at https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\n\"Maps Technical Support Services\" means the technical support service provided by Google to Customer under the then-current Maps Technical Support Services Guidelines.\n\n\"Maps Technical Support Services Guidelines\" means the then-current technical support service guidelines described at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Personal Data\" has the meaning given to it in: (a) Regulation (EU) 2016/679 of the European Parliament and of the Council of 27 April 2016 on the protection of natural persons with regard to the processing of personal data and on the free movement of such data, and repealing Directive 95/46/EC (\u201cEU GDPR\u201d); or (b) the EU GDPR as amended and incorporated into UK law under the UK European Union (Withdrawal) Act 2018 (\u201cUK GDPR\u201d), if in force, as applicable.\n\n\"Notification Email Address\" means the email address(es) designated by Customer in the Admin Console.\n\n\"Price\" means the then-current applicable price(s) stated at https://cloud.google.com/maps-platform/pricing/sheet/.\n\n\"Prohibited Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources for a particular Customer Application.\n\n\"Reseller\" means, if applicable, the authorized unaffiliated third-party reseller that sells or supplies the Services to Customer.\n\n\"Reseller Agreement\" means, if applicable, a separate, independent agreement between Customer and Reseller regarding the Services.\n\n\"Reseller Order Form\" means an order form entered into by Reseller and Customer, subject to the Reseller Agreement.\n\n\"Services\" and \"Google Maps Core Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/. The Services include the Google Maps Content and the Software.\n\n\"Significant Deprecation\" means a material discontinuance or backwards incompatible change to the Google Maps Core Services described at https://cloud.google.com/maps-platform/terms/maps-deprecation/.\n\n\"SLA\" or \"Service Level Agreement\" means each of the then-current service level agreements at: https://cloud.google.com/maps-platform/terms/sla/.\n\n\"Software\" means any downloadable tools, software development kits, or other computer software provided by Google for use as part of the Services, including updates.\n\n\"Suspend\" or \"Suspension \" means disabling access to or use of the Services or components of the Services.\n\n\"Taxes\" means any duties, customs fees, or government-imposed taxes associated with the purchase of the Services, including any related penalties or interest, except for taxes based on Google\u2019s net income, net worth, asset value, property value, or employment.\n\n\"Term\" has the meaning stated in Section 11.1 of the Agreement.\n\n\u201cTerms URL\u201d means the following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated third party before a court or government tribunal (including any appellate proceeding).\n\n\"Trademark Guidelines\" means (a) Google\u2019s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html and (b) the \u201cUse of Trademarks\u201d section of the \u201cUsing Google Maps, Google Earth and Street View\u201d permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark policy.\n\n\u201cURL Terms\u201d means the following, which will control in the following order if there is a conflict:\n\n(a) the Maps Service Specific Terms;\n\n(b) the SLA;\n\n(c) the AUP;\n\n(d) the Maps Technical Support Services Guidelines;\n\n(e) the Legal Notices for Google Maps/Google Earth and Google Maps/Google Earth APIs at https://www.google.com/help/legalnotices_maps.html; and\n\n(f) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html.\n22. Regional Terms.\n\nCustomer agrees to the following modifications to the Agreement if Customer orders Services from the applicable Google entity as described below:\nAsia Pacific - Indonesia PT Google Cloud Indonesia \t\n\n1. The following is added as Section 11.6 (Termination Waiver):\n\n11.6 Termination Waiver. The parties agree to waive any provisions under any applicable laws to the extent that a court decision or order is required for the termination of this Agreement.\n\n2. Section 19.11 (Governing Law) is deleted and replaced with the following:\n\n19.11 Governing Law.\n\n(a) The parties will try in good faith to settle any dispute within 30 days after the dispute arises. If the dispute is not resolved within 30 days, it must be resolved by arbitration by the American Arbitration Association\u2019s International Centre for Dispute Resolution in accordance with its Expedited Commercial Rules in force as of the date of the Agreement (\"Rules\").\n\n(b) The parties will mutually select one arbitrator. The arbitration will be conducted in English in Santa Clara County, California, USA.\n\n(c) Either party may apply to any competent court for injunctive relief necessary to protect its rights pending resolution of the arbitration. The arbitrator may order equitable or injunctive relief consistent with the remedies and limitations in the Agreement.\n\n(d) Subject to the confidentiality requirements in Section 19.11(f), either party may petition any competent court to issue any order necessary to protect that party\u2019s rights or property; this petition will not be considered a violation or waiver of this governing law and arbitration section and will not affect the arbitrator\u2019s powers, including the power to review the judicial decision. The parties stipulate that the courts of Santa Clara County, California, USA, are competent to grant any order under this Section 19.11(d).\n\n(e) The arbitral award will be final and binding on the parties and its execution may be presented in any competent court, including any court with jurisdiction over either party or any of its property.\n\n(f) Any arbitration proceeding conducted in accordance with this Section will be considered Confidential Information under the Agreement\u2019s confidentiality section, including (i) the existence of, (ii) any information disclosed during, and (iii) any oral communications or documents related to the arbitration proceedings. The parties may also disclose the information described in this Section 19.11(f) to a competent court as may be necessary to file any order under Section 19.11(d) or execute any arbitral decision, but the parties must request that those judicial proceedings be conducted in camera (in private).\n\n(g) The parties will pay the arbitrator\u2019s fees, the arbitrator\u2019s appointed experts\u2019 fees and expenses, and the arbitration center\u2019s administrative expenses in accordance with the Rules. In its final decision, the arbitrator will determine the non-prevailing party\u2019s obligation to reimburse the amount paid in advance by the prevailing party for these fees.\n\n(h) Each party will bear its own lawyers\u2019 and experts\u2019 fees and expenses, regardless of the arbitrator\u2019s final decision regarding the Dispute.\n\n(i) The parties agree that a decision of the arbitrators need not to be made within any specific time period.\n\n3. Section 19.15 (Conflicting Languages) is deleted and replaced with the following:\n\n19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version.", + "json": "google-maps-tos-2020-05-06.json", + "yaml": "google-maps-tos-2020-05-06.yml", + "html": "google-maps-tos-2020-05-06.html", + "license": "google-maps-tos-2020-05-06.LICENSE" + }, + { + "license_key": "google-ml-kit-tos-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-ml-kit-tos-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Terms & Privacy \nML KIT Terms of Service\nThe following terms apply to your use of ML Kit APIs. These terms incorporate and are subject to the Google APIs Terms of Service.\n\nGeneral Terms\nFor purposes of these terms, machine learning models will be considered related software.\n\nML Kit APIs run on-device. When using the ML Kit APIs, you may not reverse engineer or attempt to extract the source code or any related software, except to the extent that this restriction is expressly prohibited by applicable law.\n\nPrivacy\nWhen you use ML Kit APIs, processing of the input data (e.g. images, video, text) fully happens on-device, and ML Kit does not send that data to Google servers. As a result, you can use our APIs for processing data that should not leave the device.\n\nThe ML Kit APIs may contact Google servers from time to time in order to receive things like bug fixes, updated models and hardware accelerator compatibility information. The ML Kit APIs also send metrics about the performance and utilization of the APIs in your app to Google. Google uses this metrics data to measure performance, debug, maintain and improve the APIs, and detect misuse or abuse, as further described in our Privacy Policy.\n\nYou are responsible for informing users of your app about Google\u2019s processing of ML Kit metrics data as required by applicable law.\n\nFor additional details to help support your Google Play and Apple App Store disclosures requirements, please refer to:\n\nGoogle Play\u2019s data disclosure requirements\nApple\u2019s App Store data disclosure requirements\n\nLast updated 2022-02-22 UTC", + "json": "google-ml-kit-tos-2022.json", + "yaml": "google-ml-kit-tos-2022.yml", + "html": "google-ml-kit-tos-2022.html", + "license": "google-ml-kit-tos-2022.LICENSE" + }, + { + "license_key": "google-patent-license", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-google-patent-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google hereby grants to you a perpetual, worldwide, non-exclusive,\nno-charge, royalty-free, irrevocable (except as stated in this\nsection) patent license to make, have made, use, offer to sell, sell,\nimport, transfer, and otherwise run, modify and propagate the contents\nof this implementation, where such license applies only to those\npatent claims, both currently owned by Google and acquired in the\nfuture, licensable by Google that are necessarily infringed by this\nimplementation. This grant does not include claims that would be\ninfringed only as a consequence of further modification of this\nimplementation. If you or your agent or exclusive licensee institute\nor order or agree to the institution of patent litigation or any other\npatent enforcement activity against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that this\nimplementation constitutes direct or contributory patent infringement,\nor inducement of patent infringement, then any patent rights granted\nto you under this License for this implementation shall terminate as\nof the date such litigation is filed.", + "json": "google-patent-license.json", + "yaml": "google-patent-license.yml", + "html": "google-patent-license.html", + "license": "google-patent-license.LICENSE" + }, + { + "license_key": "google-patent-license-fuchsia", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-fuchsia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Additional IP Rights Grant (Patents)\n\"This implementation\" means the copyrightable works distributed by\nGoogle as part of the Fuchsia project.\nGoogle hereby grants to you a perpetual, worldwide, non-exclusive,\nno-charge, royalty-free, irrevocable (except as stated in this\nsection) patent license to make, have made, use, offer to sell, sell,\nimport, transfer, and otherwise run, modify and propagate the contents\nof this implementation of Fuchsia, where such license applies only to\nthose patent claims, both currently owned by Google and acquired in\nthe future, licensable by Google that are necessarily infringed by\nthis implementation. This grant does not include claims that would\nbe infringed only as a consequence of further modification of this\nimplementation. If you or your agent or exclusive licensee institute\nor order or agree to the institution of patent litigation or any other\npatent enforcement activity against any entity (including a cross-claim\nor counterclaim in a lawsuit) alleging that this implementation\nof Fuchsia constitutes direct or contributory patent infringement, or\ninducement of patent infringement, then any patent rights granted to you\nunder this License for this implementation of Fuchsia shall terminate as\nof the date such litigation is filed.", + "json": "google-patent-license-fuchsia.json", + "yaml": "google-patent-license-fuchsia.yml", + "html": "google-patent-license-fuchsia.html", + "license": "google-patent-license-fuchsia.LICENSE" + }, + { + "license_key": "google-patent-license-fuschia", + "category": "Patent License", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Additional IP Rights Grant (Patents)\n\"This implementation\" means the copyrightable works distributed by\nGoogle as part of the Fuchsia project.\nGoogle hereby grants to you a perpetual, worldwide, non-exclusive,\nno-charge, royalty-free, irrevocable (except as stated in this\nsection) patent license to make, have made, use, offer to sell, sell,\nimport, transfer, and otherwise run, modify and propagate the contents\nof this implementation of Fuchsia, where such license applies only to\nthose patent claims, both currently owned by Google and acquired in\nthe future, licensable by Google that are necessarily infringed by\nthis implementation. This grant does not include claims that would\nbe infringed only as a consequence of further modification of this\nimplementation. If you or your agent or exclusive licensee institute\nor order or agree to the institution of patent litigation or any other\npatent enforcement activity against any entity (including a cross-claim\nor counterclaim in a lawsuit) alleging that this implementation\nof Fuchsia constitutes direct or contributory patent infringement, or\ninducement of patent infringement, then any patent rights granted to you\nunder this License for this implementation of Fuchsia shall terminate as\nof the date such litigation is filed.", + "json": "google-patent-license-fuschia.json", + "yaml": "google-patent-license-fuschia.yml", + "html": "google-patent-license-fuschia.html", + "license": "google-patent-license-fuschia.LICENSE" + }, + { + "license_key": "google-patent-license-golang", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-golang", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Additional IP Rights Grant (Patents)\n\n\"This implementation\" means the copyrightable works distributed by Google as\npart of the Go project.\n\nGoogle hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,\nroyalty-free, irrevocable (except as stated in this section) patent license to\nmake, have made, use, offer to sell, sell, import, transfer and otherwise run,\nmodify and propagate the contents of this implementation of Go, where such\nlicense applies only to those patent claims, both currently owned or controlled\nby Google and acquired in the future, licensable by Google that are necessarily\ninfringed by this implementation of Go. This grant does not include claims that\nwould be infringed only as a consequence of further modification of this\nimplementation. If you or your agent or exclusive licensee institute or order\nor agree to the institution of patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that this implementation of\nGo or any code incorporated within this implementation of Go constitutes direct\nor contributory patent infringement, or inducement of patent infringement, then\nany patent rights granted to you under this License for this implementation of\nGo shall terminate as of the date such litigation is filed.", + "json": "google-patent-license-golang.json", + "yaml": "google-patent-license-golang.yml", + "html": "google-patent-license-golang.html", + "license": "google-patent-license-golang.LICENSE" + }, + { + "license_key": "google-patent-license-webm", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-webm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Additional IP Rights Grant (Patents)\n------------------------------------\n\n\"These implementations\" means the copyrightable works that implement the\nWebM codecs distributed by Google as part of the WebM Project.\n\nGoogle hereby grants to you a perpetual, worldwide, non-exclusive,\nno-charge, royalty-free, irrevocable (except as stated in this\nsection) patent license to make, have made, use, offer to sell, sell,\nimport, transfer, and otherwise run, modify and propagate the contents\nof these implementations of WebM, where such license applies only to\nthose patent claims, both currently owned by Google and acquired in\nthe future, licensable by Google that are necessarily infringed by\nthese implementations of WebM. This grant does not include claims that would\nbe infringed only as a consequence of further modification of\nthese implementations. If you or your agent or exclusive licensee institute\nor order or agree to the institution of patent litigation or any other\npatent enforcement activity against any entity (including a cross-claim\nor counterclaim in a lawsuit) alleging that any of these implementations\nof WebM or any code incorporated within any of these implementations of\nWebM constitute direct or contributory patent infringement, or\ninducement of patent infringement, then any patent rights granted to you\nunder this License for these implementations of WebM shall terminate as\nof the date such litigation is filed.", + "json": "google-patent-license-webm.json", + "yaml": "google-patent-license-webm.yml", + "html": "google-patent-license-webm.html", + "license": "google-patent-license-webm.LICENSE" + }, + { + "license_key": "google-patent-license-webrtc", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-webrtc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Additional IP Rights Grant (Patents)\n\n\"This implementation\" means the copyrightable works distributed by\nGoogle as part of the WebRTC code package.\n\nGoogle hereby grants to you a perpetual, worldwide, non-exclusive,\nno-charge, irrevocable (except as stated in this section) patent\nlicense to make, have made, use, offer to sell, sell, import,\ntransfer, and otherwise run, modify and propagate the contents of this\nimplementation of the WebRTC code package, where such license applies\nonly to those patent claims, both currently owned by Google and\nacquired in the future, licensable by Google that are necessarily\ninfringed by this implementation of the WebRTC code package. This\ngrant does not include claims that would be infringed only as a\nconsequence of further modification of this implementation. If you or\nyour agent or exclusive licensee institute or order or agree to the\ninstitution of patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that this\nimplementation of the WebRTC code package or any code incorporated\nwithin this implementation of the WebRTC code package constitutes\ndirect or contributory patent infringement, or inducement of patent\ninfringement, then any patent rights granted to you under this License\nfor this implementation of the WebRTC code package shall terminate as\nof the date such litigation is filed.", + "json": "google-patent-license-webrtc.json", + "yaml": "google-patent-license-webrtc.yml", + "html": "google-patent-license-webrtc.html", + "license": "google-patent-license-webrtc.LICENSE" + }, + { + "license_key": "google-playcore-sdk-tos-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-playcore-sdk-tos-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Play Core Software Development Kit Terms of Service\nLast modified: September 24, 2020\n\nBy using the Play Core Software Development Kit, you agree to these terms in addition to the Google APIs Terms of Service (\"API ToS\"). If these terms are ever in conflict, these terms will take precedence over the API ToS. Please read these terms and the API ToS carefully.\n\nFor purposes of these terms, \"APIs\" means Google's APIs, other developer services, and associated software, including any Redistributable Code.\n\n\u201cRedistributable Code\u201d means Google-provided object code or header files that call the APIs.\n\nSubject to these terms and the terms of the API ToS, you may copy and distribute Redistributable Code solely for inclusion as part of your API Client. Google and its licensors own all right, title and interest, including any and all intellectual property and other proprietary rights, in and to Redistributable Code. You will not modify, translate, or create derivative works of Redistributable Code.\n\nGoogle may make changes to these terms at any time with notice and the opportunity to decline further use of the Play Core Software Development Kit. Google will post notice of modifications to the terms at https://developer.android.com/guide/playcore/license. Changes will not be retroactive.", + "json": "google-playcore-sdk-tos-2020.json", + "yaml": "google-playcore-sdk-tos-2020.yml", + "html": "google-playcore-sdk-tos-2020.html", + "license": "google-playcore-sdk-tos-2020.LICENSE" + }, + { + "license_key": "google-tos-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-tos-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Terms of Service\n\nLast modified: November 11, 2013 (view archived versions)\n\nWelcome to Google!\n\nThanks for using our products and services (\"Services\"). The Services are provided by Google Inc. (\"Google\"), located at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.\n\nBy using our Services, you are agreeing to these terms. Please read them carefully.\n\nOur Services are very diverse, so sometimes additional terms or product requirements (including age requirements) may apply. Additional terms will be available with the relevant Services, and those additional terms become part of your agreement with us if you use those Services.\n\nUsing our Services\n\nYou must follow any policies made available to you within the Services.\n\nDon\u2019t misuse our Services. For example, don\u2019t interfere with our Services or try to access them using a method other than the interface and the instructions that we provide. You may use our Services only as permitted by law, including applicable export and re-export control laws and regulations. We may suspend or stop providing our Services to you if you do not comply with our terms or policies or if we are investigating suspected misconduct.\n\nUsing our Services does not give you ownership of any intellectual property rights in our Services or the content you access. You may not use content from our Services unless you obtain permission from its owner or are otherwise permitted by law. These terms do not grant you the right to use any branding or logos used in our Services. Don\u2019t remove, obscure, or alter any legal notices displayed in or along with our Services.\n\nOur Services display some content that is not Google\u2019s. This content is the sole responsibility of the entity that makes it available. We may review content to determine whether it is illegal or violates our policies, and we may remove or refuse to display content that we reasonably believe violates our policies or the law. But that does not necessarily mean that we review content, so please don\u2019t assume that we do.\n\nIn connection with your use of the Services, we may send you service announcements, administrative messages, and other information. You may opt out of some of those communications.\n\nSome of our Services are available on mobile devices. Do not use such Services in a way that distracts you and prevents you from obeying traffic or safety laws.\n\nYour Google Account\n\nYou may need a Google Account in order to use some of our Services. You may create your own Google Account, or your Google Account may be assigned to you by an administrator, such as your employer or educational institution. If you are using a Google Account assigned to you by an administrator, different or additional terms may apply and your administrator may be able to access or disable your account.\n\nTo protect your Google Account, keep your password confidential. You are responsible for the activity that happens on or through your Google Account. Try not to reuse your Google Account password on third-party applications. If you learn of any unauthorized use of your password or Google Account, follow these instructions.\n\nPrivacy and Copyright Protection\n\nGoogle\u2019s privacy policies explain how we treat your personal data and protect your privacy when you use our Services. By using our Services, you agree that Google can use such data in accordance with our privacy policies.\n\nWe respond to notices of alleged copyright infringement and terminate accounts of repeat infringers according to the process set out in the U.S. Digital Millennium Copyright Act.\n\nWe provide information to help copyright holders manage their intellectual property online. If you think somebody is violating your copyrights and want to notify us, you can find information about submitting notices and Google\u2019s policy about responding to notices in our Help Center.\n\nYour Content in our Services\n\nSome of our Services allow you to submit content. You retain ownership of any intellectual property rights that you hold in that content. In short, what belongs to you stays yours.\n\nWhen you upload or otherwise submit content to our Services, you give Google (and those we work with) a worldwide license to use, host, store, reproduce, modify, create derivative works (such as those resulting from translations, adaptations or other changes we make so that your content works better with our Services), communicate, publish, publicly perform, publicly display and distribute such content. The rights you grant in this license are for the limited purpose of operating, promoting, and improving our Services, and to develop new ones. This license continues even if you stop using our Services (for example, for a business listing you have added to Google Maps). Some Services may offer you ways to access and remove content that has been provided to that Service. Also, in some of our Services, there are terms or settings that narrow the scope of our use of the content submitted in those Services. Make sure you have the necessary rights to grant us this license for any content that you submit to our Services.\n\nIf you have a Google Account, we may display your Profile name, Profile photo, and actions you take on Google or on third-party applications connected to your Google Account (such as +1\u2019s, reviews you write and comments you post) in our Services, including displaying in ads and other commercial contexts. We will respect the choices you make to limit sharing or visibility settings in your Google Account. For example, you can choose your settings so your name and photo do not appear in an ad.\n\nYou can find more information about how Google uses and stores content in the privacy policy or additional terms for particular Services. If you submit feedback or suggestions about our Services, we may use your feedback or suggestions without obligation to you.\n\nAbout Software in our Services\n\nWhen a Service requires or includes downloadable software, this software may update automatically on your device once a new version or feature is available. Some Services may let you adjust your automatic update settings.\n\nGoogle gives you a personal, worldwide, royalty-free, non-assignable and non-exclusive license to use the software provided to you by Google as part of the Services. This license is for the sole purpose of enabling you to use and enjoy the benefit of the Services as provided by Google, in the manner permitted by these terms. You may not copy, modify, distribute, sell, or lease any part of our Services or included software, nor may you reverse engineer or attempt to extract the source code of that software, unless laws prohibit those restrictions or you have our written permission.\n\nOpen source software is important to us. Some software used in our Services may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\n\nModifying and Terminating our Services\n\nWe are constantly changing and improving our Services. We may add or remove functionalities or features, and we may suspend or stop a Service altogether.\n\nYou can stop using our Services at any time, although we\u2019ll be sorry to see you go. Google may also stop providing Services to you, or add or create new limits to our Services at any time.\n\nWe believe that you own your data and preserving your access to such data is important. If we discontinue a Service, where reasonably possible, we will give you reasonable advance notice and a chance to get information out of that Service.\n\nOur Warranties and Disclaimers\n\nWe provide our Services using a commercially reasonable level of skill and care and we hope that you will enjoy using them. But there are certain things that we don\u2019t promise about our Services.\n\nOTHER THAN AS EXPRESSLY SET OUT IN THESE TERMS OR ADDITIONAL TERMS, NEITHER GOOGLE NOR ITS SUPPLIERS OR DISTRIBUTORS MAKE ANY SPECIFIC PROMISES ABOUT THE SERVICES. FOR EXAMPLE, WE DON\u2019T MAKE ANY COMMITMENTS ABOUT THE CONTENT WITHIN THE SERVICES, THE SPECIFIC FUNCTIONS OF THE SERVICES, OR THEIR RELIABILITY, AVAILABILITY, OR ABILITY TO MEET YOUR NEEDS. WE PROVIDE THE SERVICES \"AS IS\".\n\nSOME JURISDICTIONS PROVIDE FOR CERTAIN WARRANTIES, LIKE THE IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. TO THE EXTENT PERMITTED BY LAW, WE EXCLUDE ALL WARRANTIES.\n\nLiability for our Services\n\nWHEN PERMITTED BY LAW, GOOGLE, AND GOOGLE\u2019S SUPPLIERS AND DISTRIBUTORS, WILL NOT BE RESPONSIBLE FOR LOST PROFITS, REVENUES, OR DATA, FINANCIAL LOSSES OR INDIRECT, SPECIAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES.\n\nTO THE EXTENT PERMITTED BY LAW, THE TOTAL LIABILITY OF GOOGLE, AND ITS SUPPLIERS AND DISTRIBUTORS, FOR ANY CLAIMS UNDER THESE TERMS, INCLUDING FOR ANY IMPLIED WARRANTIES, IS LIMITED TO THE AMOUNT YOU PAID US TO USE THE SERVICES (OR, IF WE CHOOSE, TO SUPPLYING YOU THE SERVICES AGAIN).\n\nIN ALL CASES, GOOGLE, AND ITS SUPPLIERS AND DISTRIBUTORS, WILL NOT BE LIABLE FOR ANY LOSS OR DAMAGE THAT IS NOT REASONABLY FORESEEABLE.\n\nBusiness uses of our Services\n\nIf you are using our Services on behalf of a business, that business accepts these terms. It will hold harmless and indemnify Google and its affiliates, officers, agents, and employees from any claim, suit or action arising from or related to the use of the Services or violation of these terms, including any liability or expense arising from claims, losses, damages, suits, judgments, litigation costs and attorneys\u2019 fees.\n\nAbout these Terms\n\nWe may modify these terms or any additional terms that apply to a Service to, for example, reflect changes to the law or changes to our Services. You should look at the terms regularly. We\u2019ll post notice of modifications to these terms on this page. We\u2019ll post notice of modified additional terms in the applicable Service. Changes will not apply retroactively and will become effective no sooner than fourteen days after they are posted. However, changes addressing new functions for a Service or changes made for legal reasons will be effective immediately. If you do not agree to the modified terms for a Service, you should discontinue your use of that Service.\n\nIf there is a conflict between these terms and the additional terms, the additional terms will control for that conflict.\n\nThese terms control the relationship between Google and you. They do not create any third party beneficiary rights.\n\nIf you do not comply with these terms, and we don\u2019t take action right away, this doesn\u2019t mean that we are giving up any rights that we may have (such as taking action in the future).\n\nIf it turns out that a particular term is not enforceable, this will not affect any other terms.\n\nThe laws of California, U.S.A., excluding California\u2019s conflict of laws rules, will apply to any disputes arising out of or relating to these terms or the Services. All claims arising out of or relating to these terms or the Services will be litigated exclusively in the federal or state courts of Santa Clara County, California, USA, and you and Google consent to personal jurisdiction in those courts.\n\nFor information about how to contact Google, please visit our contact page.", + "json": "google-tos-2013.json", + "yaml": "google-tos-2013.yml", + "html": "google-tos-2013.html", + "license": "google-tos-2013.LICENSE" + }, + { + "license_key": "google-tos-2014", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-tos-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Terms of Service\n\nLast modified: April 30, 2014 (view archived versions)\nWelcome to Google!\n\nThanks for using our products and services (\u201cServices\u201d). The Services are provided by Google Inc. (\u201cGoogle\u201d), located at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.\n\nBy using our Services, you are agreeing to these terms. Please read them carefully.\n\nOur Services are very diverse, so sometimes additional terms or product requirements (including age requirements) may apply. Additional terms will be available with the relevant Services, and those additional terms become part of your agreement with us if you use those Services.\nUsing our Services\n\nYou must follow any policies made available to you within the Services.\n\nDon\u2019t misuse our Services. For example, don\u2019t interfere with our Services or try to access them using a method other than the interface and the instructions that we provide. You may use our Services only as permitted by law, including applicable export and re-export control laws and regulations. We may suspend or stop providing our Services to you if you do not comply with our terms or policies or if we are investigating suspected misconduct.\n\nUsing our Services does not give you ownership of any intellectual property rights in our Services or the content you access. You may not use content from our Services unless you obtain permission from its owner or are otherwise permitted by law. These terms do not grant you the right to use any branding or logos used in our Services. Don\u2019t remove, obscure, or alter any legal notices displayed in or along with our Services.\n\nOur Services display some content that is not Google\u2019s. This content is the sole responsibility of the entity that makes it available. We may review content to determine whether it is illegal or violates our policies, and we may remove or refuse to display content that we reasonably believe violates our policies or the law. But that does not necessarily mean that we review content, so please don\u2019t assume that we do.\n\nIn connection with your use of the Services, we may send you service announcements, administrative messages, and other information. You may opt out of some of those communications.\n\nSome of our Services are available on mobile devices. Do not use such Services in a way that distracts you and prevents you from obeying traffic or safety laws.\nYour Google Account\n\nYou may need a Google Account in order to use some of our Services. You may create your own Google Account, or your Google Account may be assigned to you by an administrator, such as your employer or educational institution. If you are using a Google Account assigned to you by an administrator, different or additional terms may apply and your administrator may be able to access or disable your account.\n\nTo protect your Google Account, keep your password confidential. You are responsible for the activity that happens on or through your Google Account. Try not to reuse your Google Account password on third-party applications. If you learn of any unauthorized use of your password or Google Account, follow these instructions.\nPrivacy and Copyright Protection\n\nGoogle\u2019s privacy policies explain how we treat your personal data and protect your privacy when you use our Services. By using our Services, you agree that Google can use such data in accordance with our privacy policies.\n\nWe respond to notices of alleged copyright infringement and terminate accounts of repeat infringers according to the process set out in the U.S. Digital Millennium Copyright Act.\n\nWe provide information to help copyright holders manage their intellectual property online. If you think somebody is violating your copyrights and want to notify us, you can find information about submitting notices and Google\u2019s policy about responding to notices in our Help Center.\nYour Content in our Services\n\nSome of our Services allow you to upload, submit, store, send or receive content. You retain ownership of any intellectual property rights that you hold in that content. In short, what belongs to you stays yours.\n\nWhen you upload, submit, store, send or receive content to or through our Services, you give Google (and those we work with) a worldwide license to use, host, store, reproduce, modify, create derivative works (such as those resulting from translations, adaptations or other changes we make so that your content works better with our Services), communicate, publish, publicly perform, publicly display and distribute such content. The rights you grant in this license are for the limited purpose of operating, promoting, and improving our Services, and to develop new ones. This license continues even if you stop using our Services (for example, for a business listing you have added to Google Maps). Some Services may offer you ways to access and remove content that has been provided to that Service. Also, in some of our Services, there are terms or settings that narrow the scope of our use of the content submitted in those Services. Make sure you have the necessary rights to grant us this license for any content that you submit to our Services.\n\nOur automated systems analyze your content (including emails) to provide you personally relevant product features, such as customized search results, tailored advertising, and spam and malware detection. This analysis occurs as the content is sent, received, and when it is stored.\n\nIf you have a Google Account, we may display your Profile name, Profile photo, and actions you take on Google or on third-party applications connected to your Google Account (such as +1\u2019s, reviews you write and comments you post) in our Services, including displaying in ads and other commercial contexts. We will respect the choices you make to limit sharing or visibility settings in your Google Account. For example, you can choose your settings so your name and photo do not appear in an ad.\n\nYou can find more information about how Google uses and stores content in the privacy policy or additional terms for particular Services. If you submit feedback or suggestions about our Services, we may use your feedback or suggestions without obligation to you.\nAbout Software in our Services\n\nWhen a Service requires or includes downloadable software, this software may update automatically on your device once a new version or feature is available. Some Services may let you adjust your automatic update settings.\n\nGoogle gives you a personal, worldwide, royalty-free, non-assignable and non-exclusive license to use the software provided to you by Google as part of the Services. This license is for the sole purpose of enabling you to use and enjoy the benefit of the Services as provided by Google, in the manner permitted by these terms. You may not copy, modify, distribute, sell, or lease any part of our Services or included software, nor may you reverse engineer or attempt to extract the source code of that software, unless laws prohibit those restrictions or you have our written permission.\n\nOpen source software is important to us. Some software used in our Services may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\nModifying and Terminating our Services\n\nWe are constantly changing and improving our Services. We may add or remove functionalities or features, and we may suspend or stop a Service altogether.\n\nYou can stop using our Services at any time, although we\u2019ll be sorry to see you go. Google may also stop providing Services to you, or add or create new limits to our Services at any time.\n\nWe believe that you own your data and preserving your access to such data is important. If we discontinue a Service, where reasonably possible, we will give you reasonable advance notice and a chance to get information out of that Service.\nOur Warranties and Disclaimers\n\nWe provide our Services using a commercially reasonable level of skill and care and we hope that you will enjoy using them. But there are certain things that we don\u2019t promise about our Services.\n\nOther than as expressly set out in these terms or additional terms, neither Google nor its suppliers or distributors make any specific promises about the Services. For example, we don\u2019t make any commitments about the content within the Services, the specific functions of the Services, or their reliability, availability, or ability to meet your needs. We provide the Services \u201cas is\u201d.\n\nSome jurisdictions provide for certain warranties, like the implied warranty of merchantability, fitness for a particular purpose and non-infringement. To the extent permitted by law, we exclude all warranties.\nLiability for our Services\n\nWhen permitted by law, Google, and Google\u2019s suppliers and distributors, will not be responsible for lost profits, revenues, or data, financial losses or indirect, special, consequential, exemplary, or punitive damages.\n\nTo the extent permitted by law, the total liability of Google, and its suppliers and distributors, for any claims under these terms, including for any implied warranties, is limited to the amount you paid us to use the Services (or, if we choose, to supplying you the Services again).\n\nIn all cases, Google, and its suppliers and distributors, will not be liable for any loss or damage that is not reasonably foreseeable.\n\nWe recognize that in some countries, you might have legal rights as a consumer. If you are using the Services for a personal purpose, then nothing in these terms or any additional terms limits any consumer legal rights which may not be waived by contract.\nBusiness uses of our Services\n\nIf you are using our Services on behalf of a business, that business accepts these terms. It will hold harmless and indemnify Google and its affiliates, officers, agents, and employees from any claim, suit or action arising from or related to the use of the Services or violation of these terms, including any liability or expense arising from claims, losses, damages, suits, judgments, litigation costs and attorneys\u2019 fees.\nAbout these Terms\n\nWe may modify these terms or any additional terms that apply to a Service to, for example, reflect changes to the law or changes to our Services. You should look at the terms regularly. We\u2019ll post notice of modifications to these terms on this page. We\u2019ll post notice of modified additional terms in the applicable Service. Changes will not apply retroactively and will become effective no sooner than fourteen days after they are posted. However, changes addressing new functions for a Service or changes made for legal reasons will be effective immediately. If you do not agree to the modified terms for a Service, you should discontinue your use of that Service.\n\nIf there is a conflict between these terms and the additional terms, the additional terms will control for that conflict.\n\nThese terms control the relationship between Google and you. They do not create any third party beneficiary rights.\n\nIf you do not comply with these terms, and we don\u2019t take action right away, this doesn\u2019t mean that we are giving up any rights that we may have (such as taking action in the future).\n\nIf it turns out that a particular term is not enforceable, this will not affect any other terms.\n\nThe courts in some countries will not apply California law to some types of disputes. If you reside in one of those countries, then where California law is excluded from applying, your country\u2019s laws will apply to such disputes related to these terms. Otherwise, you agree that the laws of California, U.S.A., excluding California\u2019s choice of law rules, will apply to any disputes arising out of or relating to these terms or the Services. Similarly, if the courts in your country will not permit you to consent to the jurisdiction and venue of the courts in Santa Clara County, California, U.S.A., then your local jurisdiction and venue will apply to such disputes related to these terms. Otherwise, all claims arising out of or relating to these terms or the services will be litigated exclusively in the federal or state courts of Santa Clara County, California, USA, and you and Google consent to personal jurisdiction in those courts.\n\nFor information about how to contact Google, please visit our contact page.", + "json": "google-tos-2014.json", + "yaml": "google-tos-2014.yml", + "html": "google-tos-2014.html", + "license": "google-tos-2014.LICENSE" + }, + { + "license_key": "google-tos-2017", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-tos-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Terms of Service\n\nLast modified: October 25, 2017 (view archived versions)\nWelcome to Google!\n\nThanks for using our products and services (\u201cServices\u201d). The Services are provided by Google LLC (\u201cGoogle\u201d), located at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.\n\nBy using our Services, you are agreeing to these terms. Please read them carefully.\n\nOur Services are very diverse, so sometimes additional terms or product requirements (including age requirements) may apply. Additional terms will be available with the relevant Services, and those additional terms become part of your agreement with us if you use those Services.\nUsing our Services\n\nYou must follow any policies made available to you within the Services.\n\nDon\u2019t misuse our Services. For example, don\u2019t interfere with our Services or try to access them using a method other than the interface and the instructions that we provide. You may use our Services only as permitted by law, including applicable export and re-export control laws and regulations. We may suspend or stop providing our Services to you if you do not comply with our terms or policies or if we are investigating suspected misconduct.\n\nUsing our Services does not give you ownership of any intellectual property rights in our Services or the content you access. You may not use content from our Services unless you obtain permission from its owner or are otherwise permitted by law. These terms do not grant you the right to use any branding or logos used in our Services. Don\u2019t remove, obscure, or alter any legal notices displayed in or along with our Services.\n\nOur Services display some content that is not Google\u2019s. This content is the sole responsibility of the entity that makes it available. We may review content to determine whether it is illegal or violates our policies, and we may remove or refuse to display content that we reasonably believe violates our policies or the law. But that does not necessarily mean that we review content, so please don\u2019t assume that we do.\n\nIn connection with your use of the Services, we may send you service announcements, administrative messages, and other information. You may opt out of some of those communications.\n\nSome of our Services are available on mobile devices. Do not use such Services in a way that distracts you and prevents you from obeying traffic or safety laws.\nYour Google Account\n\nYou may need a Google Account in order to use some of our Services. You may create your own Google Account, or your Google Account may be assigned to you by an administrator, such as your employer or educational institution. If you are using a Google Account assigned to you by an administrator, different or additional terms may apply and your administrator may be able to access or disable your account.\n\nTo protect your Google Account, keep your password confidential. You are responsible for the activity that happens on or through your Google Account. Try not to reuse your Google Account password on third-party applications. If you learn of any unauthorized use of your password or Google Account, follow these instructions.\nPrivacy and Copyright Protection\n\nGoogle\u2019s privacy policies explain how we treat your personal data and protect your privacy when you use our Services. By using our Services, you agree that Google can use such data in accordance with our privacy policies.\n\nWe respond to notices of alleged copyright infringement and terminate accounts of repeat infringers according to the process set out in the U.S. Digital Millennium Copyright Act.\n\nWe provide information to help copyright holders manage their intellectual property online. If you think somebody is violating your copyrights and want to notify us, you can find information about submitting notices and Google\u2019s policy about responding to notices in our Help Center.\nYour Content in our Services\n\nSome of our Services allow you to upload, submit, store, send or receive content. You retain ownership of any intellectual property rights that you hold in that content. In short, what belongs to you stays yours.\n\nWhen you upload, submit, store, send or receive content to or through our Services, you give Google (and those we work with) a worldwide license to use, host, store, reproduce, modify, create derivative works (such as those resulting from translations, adaptations or other changes we make so that your content works better with our Services), communicate, publish, publicly perform, publicly display and distribute such content. The rights you grant in this license are for the limited purpose of operating, promoting, and improving our Services, and to develop new ones. This license continues even if you stop using our Services (for example, for a business listing you have added to Google Maps). Some Services may offer you ways to access and remove content that has been provided to that Service. Also, in some of our Services, there are terms or settings that narrow the scope of our use of the content submitted in those Services. Make sure you have the necessary rights to grant us this license for any content that you submit to our Services.\n\nOur automated systems analyze your content (including emails) to provide you personally relevant product features, such as customized search results, tailored advertising, and spam and malware detection. This analysis occurs as the content is sent, received, and when it is stored.\n\nIf you have a Google Account, we may display your Profile name, Profile photo, and actions you take on Google or on third-party applications connected to your Google Account (such as +1\u2019s, reviews you write and comments you post) in our Services, including displaying in ads and other commercial contexts. We will respect the choices you make to limit sharing or visibility settings in your Google Account. For example, you can choose your settings so your name and photo do not appear in an ad.\n\nYou can find more information about how Google uses and stores content in the privacy policy or additional terms for particular Services. If you submit feedback or suggestions about our Services, we may use your feedback or suggestions without obligation to you.\nAbout Software in our Services\n\nWhen a Service requires or includes downloadable software, this software may update automatically on your device once a new version or feature is available. Some Services may let you adjust your automatic update settings.\n\nGoogle gives you a personal, worldwide, royalty-free, non-assignable and non-exclusive license to use the software provided to you by Google as part of the Services. This license is for the sole purpose of enabling you to use and enjoy the benefit of the Services as provided by Google, in the manner permitted by these terms. You may not copy, modify, distribute, sell, or lease any part of our Services or included software, nor may you reverse engineer or attempt to extract the source code of that software, unless laws prohibit those restrictions or you have our written permission.\n\nOpen source software is important to us. Some software used in our Services may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\nModifying and Terminating our Services\n\nWe are constantly changing and improving our Services. We may add or remove functionalities or features, and we may suspend or stop a Service altogether.\n\nYou can stop using our Services at any time, although we\u2019ll be sorry to see you go. Google may also stop providing Services to you, or add or create new limits to our Services at any time.\n\nWe believe that you own your data and preserving your access to such data is important. If we discontinue a Service, where reasonably possible, we will give you reasonable advance notice and a chance to get information out of that Service.\nOur Warranties and Disclaimers\n\nWe provide our Services using a commercially reasonable level of skill and care and we hope that you will enjoy using them. But there are certain things that we don\u2019t promise about our Services.\n\nOther than as expressly set out in these terms or additional terms, neither Google nor its suppliers or distributors make any specific promises about the Services. For example, we don\u2019t make any commitments about the content within the Services, the specific functions of the Services, or their reliability, availability, or ability to meet your needs. We provide the Services \u201cas is\u201d.\n\nSome jurisdictions provide for certain warranties, like the implied warranty of merchantability, fitness for a particular purpose and non-infringement. To the extent permitted by law, we exclude all warranties.\nLiability for our Services\n\nWhen permitted by law, Google, and Google\u2019s suppliers and distributors, will not be responsible for lost profits, revenues, or data, financial losses or indirect, special, consequential, exemplary, or punitive damages.\n\nTo the extent permitted by law, the total liability of Google, and its suppliers and distributors, for any claims under these terms, including for any implied warranties, is limited to the amount you paid us to use the Services (or, if we choose, to supplying you the Services again).\n\nIn all cases, Google, and its suppliers and distributors, will not be liable for any loss or damage that is not reasonably foreseeable.\n\nWe recognize that in some countries, you might have legal rights as a consumer. If you are using the Services for a personal purpose, then nothing in these terms or any additional terms limits any consumer legal rights which may not be waived by contract.\nBusiness uses of our Services\n\nIf you are using our Services on behalf of a business, that business accepts these terms. It will hold harmless and indemnify Google and its affiliates, officers, agents, and employees from any claim, suit or action arising from or related to the use of the Services or violation of these terms, including any liability or expense arising from claims, losses, damages, suits, judgments, litigation costs and attorneys\u2019 fees.\nAbout these Terms\n\nWe may modify these terms or any additional terms that apply to a Service to, for example, reflect changes to the law or changes to our Services. You should look at the terms regularly. We\u2019ll post notice of modifications to these terms on this page. We\u2019ll post notice of modified additional terms in the applicable Service. Changes will not apply retroactively and will become effective no sooner than fourteen days after they are posted. However, changes addressing new functions for a Service or changes made for legal reasons will be effective immediately. If you do not agree to the modified terms for a Service, you should discontinue your use of that Service.\n\nIf there is a conflict between these terms and the additional terms, the additional terms will control for that conflict.\n\nThese terms control the relationship between Google and you. They do not create any third party beneficiary rights.\n\nIf you do not comply with these terms, and we don\u2019t take action right away, this doesn\u2019t mean that we are giving up any rights that we may have (such as taking action in the future).\n\nIf it turns out that a particular term is not enforceable, this will not affect any other terms.\n\nThe courts in some countries will not apply California law to some types of disputes. If you reside in one of those countries, then where California law is excluded from applying, your country\u2019s laws will apply to such disputes related to these terms. Otherwise, you agree that the laws of California, U.S.A., excluding California\u2019s choice of law rules, will apply to any disputes arising out of or relating to these terms or the Services. Similarly, if the courts in your country will not permit you to consent to the jurisdiction and venue of the courts in Santa Clara County, California, U.S.A., then your local jurisdiction and venue will apply to such disputes related to these terms. Otherwise, all claims arising out of or relating to these terms or the services will be litigated exclusively in the federal or state courts of Santa Clara County, California, USA, and you and Google consent to personal jurisdiction in those courts.\n\nFor information about how to contact Google, please visit our contact page.", + "json": "google-tos-2017.json", + "yaml": "google-tos-2017.yml", + "html": "google-tos-2017.html", + "license": "google-tos-2017.LICENSE" + }, + { + "license_key": "google-tos-2019", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-tos-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Google Terms of Service\n\nEffective January 22, 2019 (view archived versions)\nWelcome to Google!\n\nThanks for using our products and services (\u201cServices\u201d). If you\u2019re based in the European Economic Area or Switzerland, unless stated otherwise in any additional terms, the Services are provided by Google Ireland Limited (\u201cGoogle\u201d), a company incorporated and operating under the laws of Ireland (Registered Number: 368047), and located at Gordon House, Barrow Street, Dublin 4, Ireland.\n\nBy using our Services, you are agreeing to these terms. Please read them carefully.\n\nOur Services are very diverse, so sometimes additional terms or product requirements (including age requirements) may apply. Additional terms will be available with the relevant Services, and those additional terms become part of your agreement with us if you use those Services.\nUsing our Services\n\nYou must follow any policies made available to you within the Services.\n\nDon\u2019t misuse our Services. For example, don\u2019t interfere with our Services or try to access them using a method other than the interface and the instructions that we provide. You may use our Services only as permitted by law, including applicable export and re-export control laws and regulations. We may suspend or stop providing our Services to you if you do not comply with our terms or policies or if we are investigating suspected misconduct.\n\nUsing our Services does not give you ownership of any intellectual property rights in our Services or the content you access. You may not use content from our Services unless you obtain permission from its owner or are otherwise permitted by law. These terms do not grant you the right to use any branding or logos used in our Services. Don\u2019t remove, obscure, or alter any legal notices displayed in or along with our Services.\n\nOur Services display some content that is not Google\u2019s. This content is the sole responsibility of the entity that makes it available. We may review content to determine whether it is illegal or violates our policies, and we may remove or refuse to display content that we reasonably believe violates our policies or the law. But that does not necessarily mean that we review content, so please don\u2019t assume that we do.\n\nIn connection with your use of the Services, we may send you service announcements, administrative messages, and other information. You may opt out of some of those communications.\n\nSome of our Services are available on mobile devices. Do not use such Services in a way that distracts you and prevents you from obeying traffic or safety laws.\nYour Google Account\n\nYou may need a Google Account in order to use some of our Services. You may create your own Google Account, or your Google Account may be assigned to you by an administrator, such as your employer or educational institution. If you are using a Google Account assigned to you by an administrator, different or additional terms may apply and your administrator may be able to access or disable your account.\n\nTo protect your Google Account, keep your password confidential. You are responsible for the activity that happens on or through your Google Account. Try not to reuse your Google Account password on third-party applications. If you learn of any unauthorized use of your password or Google Account, follow these instructions.\nPrivacy and Copyright Protection\n\nGoogle\u2019s privacy policies explain how we treat your personal data and protect your privacy when you use our Services.\n\nWe respond to notices of alleged copyright infringement and terminate accounts of repeat infringers according to the process set out in the U.S. Digital Millennium Copyright Act.\n\nWe provide information to help copyright holders manage their intellectual property online. If you think somebody is violating your copyrights and want to notify us, you can find information about submitting notices and Google\u2019s policy about responding to notices in our Help Center.\nYour Content in our Services\n\nSome of our Services allow you to upload, submit, store, send or receive content. You retain ownership of any intellectual property rights that you hold in that content. In short, what belongs to you stays yours.\n\nWhen you upload, submit, store, send or receive content to or through our Services, you give Google (and those we work with) a worldwide license to use, host, store, reproduce, modify, create derivative works (such as those resulting from translations, adaptations or other changes we make so that your content works better with our Services), communicate, publish, publicly perform, publicly display and distribute such content. The rights you grant in this license are for the limited purpose of operating, promoting, and improving our Services, and to develop new ones. This license continues even if you stop using our Services (for example, for a business listing you have added to Google Maps). Some Services may offer you ways to access and remove content that has been provided to that Service. Also, in some of our Services, there are terms or settings that narrow the scope of our use of the content submitted in those Services. Make sure you have the necessary rights to grant us this license for any content that you submit to our Services.\n\nOur automated systems analyze your content (including emails) to provide you personally relevant product features, such as customized search results, tailored advertising, and spam and malware detection. This analysis occurs as the content is sent, received, and when it is stored.\n\nIf you have a Google Account, we may display your Profile name, Profile photo, and actions you take on Google or on third-party applications connected to your Google Account (such as +1\u2019s, reviews you write and comments you post) in our Services, including displaying in ads and other commercial contexts. We will respect the choices you make to limit sharing or visibility settings in your Google Account. For example, you can choose your settings so your name and photo do not appear in an ad.\n\nYou can find more information about how Google uses and stores content in the privacy policy or additional terms for particular Services. If you submit feedback or suggestions about our Services, we may use your feedback or suggestions without obligation to you.\nAbout Software in our Services\n\nWhen a Service requires or includes downloadable software, this software may update automatically on your device once a new version or feature is available. Some Services may let you adjust your automatic update settings.\n\nGoogle gives you a personal, worldwide, royalty-free, non-assignable and non-exclusive license to use the software provided to you by Google as part of the Services. This license is for the sole purpose of enabling you to use and enjoy the benefit of the Services as provided by Google, in the manner permitted by these terms. You may not copy, modify, distribute, sell, or lease any part of our Services or included software, nor may you reverse engineer or attempt to extract the source code of that software, unless laws prohibit those restrictions or you have our written permission.\n\nOpen source software is important to us. Some software used in our Services may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\nModifying and Terminating our Services\n\nWe are constantly changing and improving our Services. We may add or remove functionalities or features, and we may suspend or stop a Service altogether.\n\nYou can stop using our Services at any time, although we\u2019ll be sorry to see you go. Google may also stop providing Services to you, or add or create new limits to our Services at any time.\n\nWe believe that you own your data and preserving your access to such data is important. If we discontinue a Service, where reasonably possible, we will give you reasonable advance notice and a chance to get information out of that Service.\nOur Warranties and Disclaimers\n\nWe provide our Services using a commercially reasonable level of skill and care and we hope that you will enjoy using them. But there are certain things that we don\u2019t promise about our Services.\n\nOther than as expressly set out in these terms or additional terms, neither Google nor its suppliers or distributors make any specific promises about the Services. For example, we don\u2019t make any commitments about the content within the Services, the specific functions of the Services, or their reliability, availability, or ability to meet your needs. We provide the Services \u201cas is\u201d.\n\nSome jurisdictions provide for certain warranties, like the implied warranty of merchantability, fitness for a particular purpose and non-infringement. To the extent permitted by law, we exclude all warranties.\nLiability for our Services\n\nWhen permitted by law, Google, and Google\u2019s suppliers and distributors, will not be responsible for lost profits, revenues, or data, financial losses or indirect, special, consequential, exemplary, or punitive damages.\n\nTo the extent permitted by law, the total liability of Google, and its suppliers and distributors, for any claims under these terms, including for any implied warranties, is limited to the amount you paid us to use the Services (or, if we choose, to supplying you the Services again).\n\nIn all cases, Google, and its suppliers and distributors, will not be liable for any loss or damage that is not reasonably foreseeable.\n\nWe recognize that in some countries, you might have legal rights as a consumer. If you are using the Services for a personal purpose, then nothing in these terms or any additional terms limits any consumer legal rights which may not be waived by contract.\nBusiness uses of our Services\n\nIf you are using our Services on behalf of a business, that business accepts these terms. It will hold harmless and indemnify Google and its affiliates, officers, agents, and employees from any claim, suit or action arising from or related to the use of the Services or violation of these terms, including any liability or expense arising from claims, losses, damages, suits, judgments, litigation costs and attorneys\u2019 fees.\nAbout these Terms\n\nWe may modify these terms or any additional terms that apply to a Service to, for example, reflect changes to the law or changes to our Services. You should look at the terms regularly. We\u2019ll post notice of modifications to these terms on this page. We\u2019ll post notice of modified additional terms in the applicable Service. Changes will not apply retroactively and will become effective no sooner than fourteen days after they are posted. However, changes addressing new functions for a Service or changes made for legal reasons will be effective immediately. If you do not agree to the modified terms for a Service, you should discontinue your use of that Service.\n\nIf there is a conflict between these terms and the additional terms, the additional terms will control for that conflict.\n\nThese terms control the relationship between Google and you. They do not create any third party beneficiary rights.\n\nIf you do not comply with these terms, and we don\u2019t take action right away, this doesn\u2019t mean that we are giving up any rights that we may have (such as taking action in the future).\n\nIf it turns out that a particular term is not enforceable, this will not affect any other terms.\nGoverning Law and Courts\n\nIf you are a consumer living in the European Economic Area or Switzerland: the laws and courts of your country of residence will apply to any dispute arising out of or relating to these terms. Disputes may be submitted for online resolution to the European Commission Online Dispute Resolution platform, but Google does not commit to and is not required to settle disputes before any alternative dispute resolution entity.\n\nIf you are a business user in the European Economic Area or Switzerland: these terms are governed by English law and you and Google submit to the exclusive jurisdiction of the English courts in relation to any dispute arising out of or relating to these terms, but Google will still be allowed to apply for injunctive remedies (or other equivalent types of urgent legal remedy) in any jurisdiction.\n\nFor information about how to contact Google, please visit our contact page.", + "json": "google-tos-2019.json", + "yaml": "google-tos-2019.yml", + "html": "google-tos-2019.html", + "license": "google-tos-2019.LICENSE" + }, + { + "license_key": "google-tos-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-tos-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Effective March 31, 2020 | Archived versions | Download PDF\n\nWhat\u2019s covered in these terms\nWe know it\u2019s tempting to skip these Terms of Service, but it\u2019s important to establish what you can expect from us as you use Google services, and what we expect from you.\n\nThese Terms of Service reflect the way Google\u2019s business works, the laws that apply to our company, and certain things we\u2019ve always believed to be true. As a result, these Terms of Service help define Google\u2019s relationship with you as you interact with our services. For example, these terms include the following topic headings:\n\n What you can expect from us, which describes how we provide and develop our services\n What we expect from you, which establishes certain rules for using our services\n Content in Google services, which describes the intellectual property rights to the content you find in our services \u2014 whether that content belongs to you, Google, or others\n In case of problems or disagreements, which describes other legal rights you have, and what to expect in case someone violates these terms\n\nUnderstanding these terms is important because, to use our services, you must accept these terms.\n\nBesides these terms, we also publish a Privacy Policy. Although it\u2019s not part of these terms, we encourage you to read it to better understand how you can update, manage, export, and delete your information.\nService provider\n\nIn the European Economic Area (EEA) and Switzerland, Google services are provided by, and you\u2019re contracting with:\n\nGoogle Ireland Limited\nincorporated and operating under the laws of Ireland (Registered Number: 368047)\n\nGordon House, Barrow Street\nDublin 4\nIreland\nAge requirements\n\nIf you\u2019re under the age required to manage your own Google Account, you must have your parent or legal guardian\u2019s permission to use a Google Account. Please have your parent or legal guardian read these terms with you.\n\nIf you\u2019re a parent or legal guardian, and you allow your child to use the services, then these terms apply to you and you\u2019re responsible for your child\u2019s activity on the services.\n\nSome Google services have additional age requirements as described in their service-specific additional terms and policies.\nContents\nIntroduction\nYour relationship with Google\nUsing Google services\nContent in Google services\nSoftware in Google services\nIn case of problems or disagreements\nAbout these terms\nYour relationship with Google\n\nThese terms help define the relationship between you and Google. Broadly speaking, we give you permission to use our services if you agree to follow these terms, which reflect how Google\u2019s business works and how we earn money. When we speak of \u201cGoogle,\u201d \u201cwe,\u201d \u201cus,\u201d and \u201cour,\u201d we mean Google Ireland Limited and its affiliates.\nWhat you can expect from us\nProvide a broad range of useful services\nWe provide a broad range of services that are subject to these terms, including:\n\n apps and sites (like Search and Maps)\n platforms (like Google Play)\n integrated services (like Maps embedded in other companies\u2019 apps or sites)\n devices (like Google Home)\n\nOur services are designed to work together, making it easier for you to move from one activity to the next. For example, Maps can remind you to leave for an appointment that appears in your Google Calendar.\nImprove Google services\n\nWe\u2019re constantly developing new technologies and features to improve our services. For example, we invest in artificial intelligence that uses machine learning to detect and block spam and malware, and to provide you with innovative features, like simultaneous translations. As part of this continual improvement, we sometimes add or remove features and functionalities, increase or decrease limits to our services, and start offering new services or stop offering old ones.\n\nWe maintain a rigorous product research program, so before we change or stop offering a service, we carefully consider your interests as a user, your reasonable expectations, and the potential impact on you and others. We only change or stop offering services for valid reasons, such as to improve performance or security, to comply with law, to prevent illegal activities or abuse, to reflect technical developments, or because a feature or an entire service is no longer popular enough or economical to offer.\n\nIf we make material changes that negatively impact your use of our services or if we stop offering a service, we\u2019ll provide you with reasonable advance notice and an opportunity to export your content from your Google Account using Google Takeout, except in urgent situations such as preventing abuse, responding to legal requirements, or addressing security and operability issues.\nWhat we expect from you\nFollow these terms and service-specific additional terms\nThe permission we give you to use our services continues as long as you meet your responsibilities in:\n\n these terms\n service-specific additional terms, which could, for example, include things like additional age requirements\n\nWe also make various policies, help centers, and other resources available to you to answer common questions and to set expectations about using our services. These resources include our Privacy Policy, Copyright Help Center, Safety Center, and other pages accessible from our policies site.\n\nAlthough we give you permission to use our services, we retain any intellectual property rights we have in the services.\nRespect others\nMany of our services allow you to interact with others. We want to maintain a respectful environment for everyone, which means you must follow these basic rules of conduct:\n\n comply with applicable laws, including export control, sanctions, and human trafficking laws\n respect the rights of others, including privacy and intellectual property rights\n don\u2019t abuse or harm others or yourself (or threaten or encourage such abuse or harm) \u2014 for example, by misleading, defrauding, defaming, bullying, harassing, or stalking others\n don\u2019t abuse, harm, interfere with, or disrupt the services\n\nOur service-specific additional terms and policies provide additional details about appropriate conduct that everyone using those services must follow. If you find that others aren\u2019t following these rules, many of our services allow you to report abuse. If we act on a report of abuse, we also provide a fair process as described in the Taking action in case of problems section.\nPermission to use your content\n\nSome of our services are designed to let you upload, submit, store, send, receive, or share your content. You have no obligation to provide any content to our services and you\u2019re free to choose the content that you want to provide. If you choose to upload or share content, please make sure you have the necessary rights to do so and that the content is lawful.\nLicense\n\nYour content remains yours, which means that you retain any intellectual property rights that you have in your content. For example, you have intellectual property rights in the creative content you make, such as reviews you write. Or you may have the right to share someone else\u2019s creative content if they\u2019ve given you their permission.\n\nWe need your permission if your intellectual property rights restrict our use of your content. You provide Google with that permission through this license.\nWhat\u2019s covered\n\nThis license covers your content if that content is protected by intellectual property rights.\nWhat\u2019s not covered\n\n This license doesn\u2019t affect your data protection rights \u2014 it\u2019s only about your intellectual property rights\n This license doesn\u2019t cover these types of content:\n publicly-available factual information that you provide, such as corrections to the address of a local business. That information doesn\u2019t require a license because it\u2019s considered common knowledge that everyone\u2019s free to use.\n feedback that you offer, such as suggestions to improve our services. Feedback is covered in the Service-related communications section below.\n\nScope\nThis license is:\n\n worldwide, which means it\u2019s valid anywhere in the world\n non-exclusive, which means you can license your content to others\n royalty-free, which means there are no fees for this license\n\nRights\n\nThis license allows Google to:\n\n host, reproduce, distribute, communicate, and use your content \u2014 for example, to save your content on our systems and make it accessible from anywhere you go\n publish, publicly perform, or publicly display your content, if you\u2019ve made it visible to others\n modify your content, such as reformatting or translating it\n sublicense these rights to:\n other users to allow the services to work as designed, such as enabling you to share photos with people you choose\n our contractors who\u2019ve signed agreements with us that are consistent with these terms, only for the limited purposes described in the Purpose section below\n\nPurpose\n\nThis license is for the limited purpose of:\n\n operating and improving the services, which means allowing the services to work as designed and creating new features and functionalities. This includes using automated systems and algorithms to analyze your content:\n for spam, malware, and illegal content\n to recognize patterns in data, such as determining when to suggest a new album in Google Photos to keep related photos together\n to customize our services for you, such as providing recommendations and personalized search results, content, and ads (which you can change or turn off in Ads Settings)\n This analysis occurs as the content is sent, received, and when it is stored.\n using content you\u2019ve shared publicly to promote the services. For example, to promote a Google app, we might quote a review you wrote. Or to promote Google Play, we might show a screenshot of the app you offer in the Play Store.\n developing new technologies and services for Google consistent with these terms\n\nDuration\n\nThis license lasts for as long as your content is protected by intellectual property rights.\n\nIf you remove from our services any content that\u2019s covered by this license, then our systems will stop making that content publicly available in a reasonable amount of time. There are two exceptions:\n\n If you already shared your content with others before removing it. For example, if you shared a photo with a friend who then made a copy of it, or shared it again, then that photo may continue to appear in your friend\u2019s Google Account even after you remove it from your Google Account.\n If you make your content available through other companies\u2019 services, it\u2019s possible that search engines, including Google Search, will continue to find and display your content as part of their search results.\n\nUsing Google services\nYour Google Account\n\nIf you meet these age requirements you can create a Google Account for your convenience. Some services require that you have a Google Account in order to work \u2014 for example, to use Gmail, you need a Google Account so that you have a place to send and receive your email.\n\nYou\u2019re responsible for what you do with your Google Account, including taking reasonable steps to keep your Google Account secure, and we encourage you to regularly use the Security Checkup.\nUsing Google services on behalf of an organization or business\nMany organizations, such as businesses, non-profits, and schools, take advantage of our services. To use our services on behalf of an organization:\n\n an authorized representative of that organization must agree to these terms\n your organization\u2019s administrator may assign a Google Account to you. That administrator might require you to follow additional rules and may be able to access or disable your Google Account.\n\nIf you\u2019re based in the European Union, then these terms don\u2019t affect the rights you may have as a business user of online intermediation services \u2014 including online platforms such as Google Play \u2014 under the EU Platform-to-Business Regulation.\nService-related communications\n\nTo provide you with our services, we sometimes send you service announcements and other information. To learn more about how we communicate with you, see Google\u2019s Privacy Policy.\n\nIf you choose to give us feedback, such as suggestions to improve our services, we may act on your feedback without obligation to you.\nContent in Google services\nYour content\n\nSome of our services give you the opportunity to make your content publicly available \u2014 for example, you might post a product or restaurant review that you wrote, or you might upload a blog post that you created.\n\n See the Permission to use your content section for more about your rights in your content, and how your content is used in our services\n See the Removing your content section to learn why and how we might remove user-generated content from our services\n\nIf you think someone is infringing your intellectual property rights, you can send us notice of the infringement and we\u2019ll take appropriate action. For example, we suspend or close the Google Accounts of repeat copyright infringers as described in our Copyright Help Center.\nGoogle content\n\nSome of our services include content that belongs to Google \u2014 for example, many of the visual illustrations you see in Google Maps. You may use Google\u2019s content as allowed by these terms and any service-specific additional terms, but we retain any intellectual property rights that we have in our content. Don\u2019t remove, obscure, or alter any of our branding, logos, or legal notices. If you want to use our branding or logos, please see the Google Brand Permissions page.\nOther content\n\nFinally, some of our services give you access to content that belongs to other people or organizations \u2014 for example, a store owner\u2019s description of their own business, or a newspaper article displayed in Google News. You may not use this content without that person or organization\u2019s permission, or as otherwise allowed by law. The views expressed in other people or organizations\u2019 content are theirs, and don\u2019t necessarily reflect Google\u2019s views.\nSoftware in Google services\n\nSome of our services include downloadable software. We give you permission to use that software as part of the services.\nThe license we give you is:\n\n worldwide, which means it\u2019s valid anywhere in the world\n non-exclusive, which means that we can license the software to others\n royalty-free, which means there are no fees for this license\n personal, which means it doesn\u2019t extend to anyone else\n non-assignable, which means you\u2019re not allowed to assign the license to anyone else\n\nSome of our services include software that\u2019s offered under open source license terms that we make available to you. Sometimes there are provisions in the open source license that explicitly override parts of these terms, so please be sure to read those licenses.\n\nYou may not copy, modify, distribute, sell, or lease any part of our services or software. Also, you may not reverse engineer or attempt to extract any of our source code unless you have our written permission or applicable law lets you do so.\n\nWhen a service requires or includes downloadable software, that software sometimes updates automatically on your device once a new version or feature is available. Some services let you adjust your automatic update settings.\nIn case of problems or disagreements\n\nBy law, you have the right to (1) a certain quality of service, and (2) ways to fix problems if things go wrong. These terms don\u2019t limit or take away any of those rights. For example, if you\u2019re a consumer, then you continue to enjoy all legal rights granted to consumers under applicable law.\nWarranty\n\nWe provide our services using reasonable skill and care. If we don\u2019t meet the quality level described in this warranty, you agree to tell us and we\u2019ll work with you to try to resolve the issue.\nDisclaimers\n\nThe only commitments we make about our services (including the content in the services, the specific functions of our services, or their reliability, availability, or ability to meet your needs) are (1) described in the Warranty section, (2) stated in the service-specific additional terms, or (3) provided under applicable laws. We don\u2019t make any other commitments about our services.\nLiabilities\nFor all users\n\nThese terms only limit our responsibilities as allowed by applicable law. Specifically, these terms don\u2019t limit Google\u2019s liability for death or personal injury, fraud, fraudulent misrepresentation, gross negligence, or willful misconduct.\n\nOther than the rights and responsibilities described in this section (In case of problems or disagreements), Google won\u2019t be responsible for any other losses, unless they\u2019re caused by our breach of these terms or service-specific additional terms.\nFor business users and organizations only\n\nIf you\u2019re a business user or organization, then to the extent allowed by applicable law:\n\n You\u2019ll indemnify Google and its directors, officers, employees, and contractors for any third-party legal proceedings (including actions by government authorities) arising out of or relating to your unlawful use of the services or violation of these terms or service-specific additional terms. This indemnity covers any liability or expense arising from claims, losses, damages, judgments, fines, litigation costs, and legal fees.\n Google won\u2019t be responsible for the following liabilities:\n loss of profits, revenues, business opportunities, goodwill, or anticipated savings\n indirect or consequential loss\n punitive damages\n Google\u2019s total liability arising out of or relating to these terms is limited to the greater of (1) \u20ac500 or (2) 125% of the fees that you paid to use the relevant services in the 12 months before the breach\n\nIf you\u2019re legally exempt from certain responsibilities, including indemnification, then those responsibilities don\u2019t apply to you under these terms. For example, the United Nations enjoys certain immunities from legal obligations and these terms don\u2019t override those immunities.\nTaking action in case of problems\n\nBefore taking action as described below, we\u2019ll provide you with advance notice when reasonably possible, describe the reason for our action, and give you an opportunity to fix the problem, unless we reasonably believe that doing so would:\n\n cause harm or liability to a user, third party, or Google\n violate the law or a legal enforcement authority\u2019s order\n compromise an investigation\n compromise the operation, integrity, or security of our services\n\nRemoving your content\n\nIf we reasonably believe that any of your content (1) breaches these terms, service-specific additional terms or policies, (2) violates applicable law, or (3) could harm our users, third parties, or Google, then we reserve the right to take down some or all of that content in accordance with applicable law. Examples include child pornography, content that facilitates human trafficking or harassment, and content that infringes someone else\u2019s intellectual property rights.\nSuspending or terminating your access to Google services\n\nGoogle reserves the right to suspend or terminate your access to the services or delete your Google Account if any of these things happen:\n\n you materially or repeatedly breach these terms, service-specific additional terms or policies\n we\u2019re required to do so to comply with a legal requirement or a court order\n we reasonably believe that your conduct causes harm or liability to a user, third party, or Google \u2014 for example, by hacking, phishing, harassing, spamming, misleading others, or scraping content that doesn\u2019t belong to you\n\nIf you believe your Google Account has been suspended or terminated in error, you can appeal.\n\nOf course, you\u2019re always free to stop using our services at any time. If you do stop using a service, we\u2019d appreciate knowing why so that we can continue improving our services.\nHandling requests for your data\n\nRespect for the privacy and security of your data underpins our approach to responding to data disclosure requests. When we receive data disclosure requests, our team reviews them to make sure they satisfy legal requirements and Google\u2019s data disclosure policies. Google Ireland Limited accesses and discloses data, including communications, in accordance with the laws of Ireland, and EU law applicable in Ireland. For more information about the data disclosure requests that Google receives worldwide, and how we respond to such requests, see our Transparency Report and Privacy Policy.\nSettling disputes, governing law, and courts\n\nFor information about how to contact Google, please visit our contact page.\n\nIf you\u2019re a resident of, or an organization based in, the European Economic Area (EEA) or Switzerland, these terms and your relationship with Google under these terms and service-specific additional terms, are governed by the laws of your country of residence, and you can file legal disputes in your local courts.\n\nIf you\u2019re a consumer living in the EEA, you may also file disputes regarding online purchases using the European Commission\u2019s Online Dispute Resolution platform, which we accept if required by law.\nAbout these terms\n\nBy law, you have certain rights that can\u2019t be limited by a contract like these terms of service. These terms are in no way intended to restrict those rights.\n\nThese terms describe the relationship between you and Google. They don\u2019t create any legal rights for other people or organizations, even if others benefit from that relationship under these terms.\n\nWe want to make these terms easy to understand, so we\u2019ve used examples from our services. But not all services mentioned may be available in your country.\n\nIf it turns out that a particular term is not valid or enforceable, this will not affect any other terms.\n\nIf you don\u2019t follow these terms or the service-specific additional terms, and we don\u2019t take action right away, that doesn\u2019t mean we\u2019re giving up any rights that we may have, such as taking action in the future.\n\nWe may update these terms and service-specific additional terms (1) to reflect changes in our services or how we do business \u2014 for example, when we add new services, features, technologies, pricing, or benefits (or remove old ones), (2) for legal, regulatory, or security reasons, or (3) to prevent abuse or harm.\n\nIf we materially change these terms or service-specific additional terms, we\u2019ll provide you with reasonable advance notice and the opportunity to review the changes, except (1) when we launch a new service or feature, or (2) in urgent situations, such as preventing ongoing abuse or responding to legal requirements. If you don\u2019t agree to the new terms, you should remove your content and stop using the services. You can also end your relationship with us at any time by closing your Google Account.", + "json": "google-tos-2020.json", + "yaml": "google-tos-2020.yml", + "html": "google-tos-2020.html", + "license": "google-tos-2020.LICENSE" + }, + { + "license_key": "gpl-1.0", + "category": "Copyleft", + "spdx_license_key": "GPL-1.0-only", + "other_spdx_license_keys": [ + "GPL-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "text": " GNU GENERAL PUBLIC LICENSE\n Version 1, February 1989\n\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The license agreements of most software companies try to keep users\nat the mercy of those companies. By contrast, our General Public\nLicense is intended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. The\nGeneral Public License applies to the Free Software Foundation's\nsoftware and to any other program whose authors commit to using it.\nYou can use it for your programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Specifically, the General Public License is designed to make\nsure that you have the freedom to give away or sell copies of free\nsoftware, that you receive source code or can get it if you want it,\nthat you can change the software or use pieces of it in new free\nprograms; and that you know you can do these things.\n\n To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if you\ndistribute copies of the software, or if you modify it.\n\n For example, if you distribute copies of a such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must tell them their rights.\n\n We protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\n Also, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original, so\nthat any problems introduced by others will not reflect on the original\nauthors' reputations.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n\n GNU GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work based\non the Program\" means either the Program or any work containing the\nProgram or a portion of it, either verbatim or with modifications. Each\nlicensee is addressed as \"you\".\n\n 1. You may copy and distribute verbatim copies of the Program's source\ncode as you receive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice and\ndisclaimer of warranty; keep intact all the notices that refer to this\nGeneral Public License and to the absence of any warranty; and give any\nother recipients of the Program a copy of this General Public License\nalong with the Program. You may charge a fee for the physical act of\ntransferring a copy.\n\n 2. You may modify your copy or copies of the Program or any portion of\nit, and copy and distribute such modifications under the terms of Paragraph\n1 above, provided that you also do the following:\n\n a) cause the modified files to carry prominent notices stating that\n you changed the files and the date of any change; and\n\n b) cause the whole of any work that you distribute or publish, that\n in whole or in part contains the Program or any part thereof, either\n with or without modifications, to be licensed at no charge to all\n third parties under the terms of this General Public License (except\n that you may choose to grant warranty protection to some or all\n third parties, at your option).\n\n c) If the modified program normally reads commands interactively when\n run, you must cause it, when started running for such interactive use\n in the simplest and most usual way, to print or display an\n announcement including an appropriate copyright notice and a notice\n that there is no warranty (or else, saying that you provide a\n warranty) and that users may redistribute the program under these\n conditions, and telling the user how to view a copy of this General\n Public License.\n\n d) You may charge a fee for the physical act of transferring a\n copy, and you may at your option offer warranty protection in\n exchange for a fee.\n\nMere aggregation of another independent work with the Program (or its\nderivative) on a volume of a storage or distribution medium does not bring\nthe other work under the scope of these terms.\n\n\n 3. You may copy and distribute the Program (or a portion or derivative of\nit, under Paragraph 2) in object code or executable form under the terms of\nParagraphs 1 and 2 above provided that you also do one of the following:\n\n a) accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of\n Paragraphs 1 and 2 above; or,\n\n b) accompany it with a written offer, valid for at least three\n years, to give any third party free (except for a nominal charge\n for the cost of distribution) a complete machine-readable copy of the\n corresponding source code, to be distributed under the terms of\n Paragraphs 1 and 2 above; or,\n\n c) accompany it with the information you received as to where the\n corresponding source code may be obtained. (This alternative is\n allowed only for noncommercial distribution and only if you\n received the program in object code or executable form alone.)\n\nSource code for a work means the preferred form of the work for making\nmodifications to it. For an executable file, complete source code means\nall the source code for all modules it contains; but, as a special\nexception, it need not include source code for modules which are standard\nlibraries that accompany the operating system on which the executable\nfile runs, or for standard header files or definitions files that\naccompany that operating system.\n\n 4. You may not copy, modify, sublicense, distribute or transfer the\nProgram except as expressly provided under this General Public License.\nAny attempt otherwise to copy, modify, sublicense, distribute or transfer\nthe Program is void, and will automatically terminate your rights to use\nthe Program under this License. However, parties who have received\ncopies, or rights to use copies, from you under this General Public\nLicense will not have their licenses terminated so long as such parties\nremain in full compliance.\n\n 5. By copying, distributing or modifying the Program (or any work based\non the Program) you indicate your acceptance of this license to do so,\nand all its terms and conditions.\n\n 6. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the original\nlicensor to copy, distribute or modify the Program subject to these\nterms and conditions. You may not impose any further restrictions on the\nrecipients' exercise of the rights granted herein.\n\n\n 7. The Free Software Foundation may publish revised and/or new versions\nof the General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of the license which applies to it and \"any\nlater version\", you have the option of following the terms and conditions\neither of that version or of any later version published by the Free\nSoftware Foundation. If the Program does not specify a version number of\nthe license, you may choose any version ever published by the Free Software\nFoundation.\n\n 8. If you wish to incorporate parts of the Program into other free\nprograms whose distribution conditions are different, write to the author\nto ask for permission. For software which is copyrighted by the Free\nSoftware Foundation, write to the Free Software Foundation; we sometimes\nmake exceptions for this. Our decision will be guided by the two goals\nof preserving the free status of all derivatives of our free software and\nof promoting the sharing and reuse of software generally.\n\n NO WARRANTY\n\n 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\nREPAIR OR CORRECTION.\n\n 10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\nOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n\n Appendix: How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to humanity, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\n To do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively convey\nthe exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) 19yy \n\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 1, or (at your option)\n any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA\n\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) 19xx name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than `show w' and `show\nc'; they could even be mouse-clicks or menu items--whatever suits your\nprogram.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the program, if\nnecessary. Here a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the\n program `Gnomovision' (a program to direct compilers to make passes\n at assemblers) written by James Hacker.\n\n , 1 April 1989\n Ty Coon, President of Vice\n\nThat's all there is to it!", + "json": "gpl-1.0.json", + "yaml": "gpl-1.0.yml", + "html": "gpl-1.0.html", + "license": "gpl-1.0.LICENSE" + }, + { + "license_key": "gpl-1.0-plus", + "category": "Copyleft", + "spdx_license_key": "GPL-1.0-or-later", + "other_spdx_license_keys": [ + "GPL-1.0+", + "LicenseRef-GPL" + ], + "is_exception": false, + "is_deprecated": false, + "text": "This program is free software; you can redistribute it and/or modify it under\nthe terms of the GNU General Public License as published by the Free Software\nFoundation; either version 1, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with\nthis program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave,\nCambridge, MA 02139, USA.\n\n\n GNU GENERAL PUBLIC LICENSE\n Version 1, February 1989\n\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The license agreements of most software companies try to keep users\nat the mercy of those companies. By contrast, our General Public\nLicense is intended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. The\nGeneral Public License applies to the Free Software Foundation's\nsoftware and to any other program whose authors commit to using it.\nYou can use it for your programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Specifically, the General Public License is designed to make\nsure that you have the freedom to give away or sell copies of free\nsoftware, that you receive source code or can get it if you want it,\nthat you can change the software or use pieces of it in new free\nprograms; and that you know you can do these things.\n\n To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if you\ndistribute copies of the software, or if you modify it.\n\n For example, if you distribute copies of a such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must tell them their rights.\n\n We protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\n Also, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original, so\nthat any problems introduced by others will not reflect on the original\nauthors' reputations.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n\n GNU GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work based\non the Program\" means either the Program or any work containing the\nProgram or a portion of it, either verbatim or with modifications. Each\nlicensee is addressed as \"you\".\n\n 1. You may copy and distribute verbatim copies of the Program's source\ncode as you receive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice and\ndisclaimer of warranty; keep intact all the notices that refer to this\nGeneral Public License and to the absence of any warranty; and give any\nother recipients of the Program a copy of this General Public License\nalong with the Program. You may charge a fee for the physical act of\ntransferring a copy.\n\n 2. You may modify your copy or copies of the Program or any portion of\nit, and copy and distribute such modifications under the terms of Paragraph\n1 above, provided that you also do the following:\n\n a) cause the modified files to carry prominent notices stating that\n you changed the files and the date of any change; and\n\n b) cause the whole of any work that you distribute or publish, that\n in whole or in part contains the Program or any part thereof, either\n with or without modifications, to be licensed at no charge to all\n third parties under the terms of this General Public License (except\n that you may choose to grant warranty protection to some or all\n third parties, at your option).\n\n c) If the modified program normally reads commands interactively when\n run, you must cause it, when started running for such interactive use\n in the simplest and most usual way, to print or display an\n announcement including an appropriate copyright notice and a notice\n that there is no warranty (or else, saying that you provide a\n warranty) and that users may redistribute the program under these\n conditions, and telling the user how to view a copy of this General\n Public License.\n\n d) You may charge a fee for the physical act of transferring a\n copy, and you may at your option offer warranty protection in\n exchange for a fee.\n\nMere aggregation of another independent work with the Program (or its\nderivative) on a volume of a storage or distribution medium does not bring\nthe other work under the scope of these terms.\n\n\n 3. You may copy and distribute the Program (or a portion or derivative of\nit, under Paragraph 2) in object code or executable form under the terms of\nParagraphs 1 and 2 above provided that you also do one of the following:\n\n a) accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of\n Paragraphs 1 and 2 above; or,\n\n b) accompany it with a written offer, valid for at least three\n years, to give any third party free (except for a nominal charge\n for the cost of distribution) a complete machine-readable copy of the\n corresponding source code, to be distributed under the terms of\n Paragraphs 1 and 2 above; or,\n\n c) accompany it with the information you received as to where the\n corresponding source code may be obtained. (This alternative is\n allowed only for noncommercial distribution and only if you\n received the program in object code or executable form alone.)\n\nSource code for a work means the preferred form of the work for making\nmodifications to it. For an executable file, complete source code means\nall the source code for all modules it contains; but, as a special\nexception, it need not include source code for modules which are standard\nlibraries that accompany the operating system on which the executable\nfile runs, or for standard header files or definitions files that\naccompany that operating system.\n\n 4. You may not copy, modify, sublicense, distribute or transfer the\nProgram except as expressly provided under this General Public License.\nAny attempt otherwise to copy, modify, sublicense, distribute or transfer\nthe Program is void, and will automatically terminate your rights to use\nthe Program under this License. However, parties who have received\ncopies, or rights to use copies, from you under this General Public\nLicense will not have their licenses terminated so long as such parties\nremain in full compliance.\n\n 5. By copying, distributing or modifying the Program (or any work based\non the Program) you indicate your acceptance of this license to do so,\nand all its terms and conditions.\n\n 6. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the original\nlicensor to copy, distribute or modify the Program subject to these\nterms and conditions. You may not impose any further restrictions on the\nrecipients' exercise of the rights granted herein.\n\n\n 7. The Free Software Foundation may publish revised and/or new versions\nof the General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of the license which applies to it and \"any\nlater version\", you have the option of following the terms and conditions\neither of that version or of any later version published by the Free\nSoftware Foundation. If the Program does not specify a version number of\nthe license, you may choose any version ever published by the Free Software\nFoundation.\n\n 8. If you wish to incorporate parts of the Program into other free\nprograms whose distribution conditions are different, write to the author\nto ask for permission. For software which is copyrighted by the Free\nSoftware Foundation, write to the Free Software Foundation; we sometimes\nmake exceptions for this. Our decision will be guided by the two goals\nof preserving the free status of all derivatives of our free software and\nof promoting the sharing and reuse of software generally.\n\n NO WARRANTY\n\n 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\nREPAIR OR CORRECTION.\n\n 10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\nOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n\n Appendix: How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to humanity, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\n To do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively convey\nthe exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) 19yy \n\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 1, or (at your option)\n any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA\n\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) 19xx name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than `show w' and `show\nc'; they could even be mouse-clicks or menu items--whatever suits your\nprogram.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the program, if\nnecessary. Here a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the\n program `Gnomovision' (a program to direct compilers to make passes\n at assemblers) written by James Hacker.\n\n , 1 April 1989\n Ty Coon, President of Vice\n\nThat's all there is to it!", + "json": "gpl-1.0-plus.json", + "yaml": "gpl-1.0-plus.yml", + "html": "gpl-1.0-plus.html", + "license": "gpl-1.0-plus.LICENSE" + }, + { + "license_key": "gpl-2.0", + "category": "Copyleft", + "spdx_license_key": "GPL-2.0-only", + "other_spdx_license_keys": [ + "GPL-2.0", + "GPL 2.0", + "LicenseRef-GPL-2.0" + ], + "is_exception": false, + "is_deprecated": false, + "text": " GNU GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicense is intended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\n To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if you\ndistribute copies of the software, or if you modify it.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\n We protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\n Also, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original, so\nthat any problems introduced by others will not reflect on the original\nauthors' reputations.\n\n Finally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at all.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n GNU GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License applies to any program or other work which contains\na notice placed by the copyright holder saying it may be distributed\nunder the terms of this General Public License. The \"Program\", below,\nrefers to any such program or work, and a \"work based on the Program\"\nmeans either the Program or any derivative work under copyright law:\nthat is to say, a work containing the Program or a portion of it,\neither verbatim or with modifications and/or translated into another\nlanguage. (Hereinafter, translation is included without limitation in\nthe term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the\nProgram (independent of having been made by running the Program).\nWhether that is true depends on what the Program does.\n\n 1. You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a fee.\n\n 2. You may modify your copy or copies of the Program or any portion\nof it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) You must cause the modified files to carry prominent notices\n stating that you changed the files and the date of any change.\n\n b) You must cause any work that you distribute or publish, that in\n whole or in part contains or is derived from the Program or any\n part thereof, to be licensed as a whole at no charge to all third\n parties under the terms of this License.\n\n c) If the modified program normally reads commands interactively\n when run, you must cause it, when started running for such\n interactive use in the most ordinary way, to print or display an\n announcement including an appropriate copyright notice and a\n notice that there is no warranty (or else, saying that you provide\n a warranty) and that users may redistribute the program under\n these conditions, and telling the user how to view a copy of this\n License. (Exception: if the Program itself is interactive but\n does not normally print such an announcement, your work based on\n the Program is not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n a) Accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of Sections\n 1 and 2 above on a medium customarily used for software interchange; or,\n\n b) Accompany it with a written offer, valid for at least three\n years, to give any third party, for a charge no more than your\n cost of physically performing source distribution, a complete\n machine-readable copy of the corresponding source code, to be\n distributed under the terms of Sections 1 and 2 above on a medium\n customarily used for software interchange; or,\n\n c) Accompany it with the information you received as to the offer\n to distribute corresponding source code. (This alternative is\n allowed only for noncommercial distribution and only if you\n received the program in object code or executable form with such\n an offer, in accord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 4. You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt\notherwise to copy, modify, sublicense or distribute the Program is\nvoid, and will automatically terminate your rights under this License.\nHowever, parties who have received copies, or rights, from you under\nthis License will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n 5. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n 6. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n 7. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Program at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 8. If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n 9. The Free Software Foundation may publish revised and/or new versions\nof the General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and \"any\nlater version\", you have the option of following the terms and conditions\neither of that version or of any later version published by the Free\nSoftware Foundation. If the Program does not specify a version number of\nthis License, you may choose any version ever published by the Free Software\nFoundation.\n\n 10. If you wish to incorporate parts of the Program into other free\nprograms whose distribution conditions are different, write to the author\nto ask for permission. For software which is copyrighted by the Free\nSoftware Foundation, write to the Free Software Foundation; we sometimes\nmake exceptions for this. Our decision will be guided by the two goals\nof preserving the free status of all derivatives of our free software and\nof promoting the sharing and reuse of software generally.\n\n NO WARRANTY\n\n 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\nREPAIR OR CORRECTION.\n\n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\nOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, the commands you use may\nbe called something other than `show w' and `show c'; they could even be\nmouse-clicks or menu items--whatever suits your program.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the program, if\nnecessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the program\n `Gnomovision' (which makes passes at compilers) written by James Hacker.\n\n , 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program into\nproprietary programs. If your program is a subroutine library, you may\nconsider it more useful to permit linking proprietary applications with the\nlibrary. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.", + "json": "gpl-2.0.json", + "yaml": "gpl-2.0.yml", + "html": "gpl-2.0.html", + "license": "gpl-2.0.LICENSE" + }, + { + "license_key": "gpl-2.0-adaptec", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gpl-2.0-adaptec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You are permitted to redistribute, use and modify this README file in whole\nor in part in conjunction with redistribution of software governed by the\nGeneral Public License, provided that the following conditions are met:\n1. Redistributions of README file must retain the above copyright\n notice, this list of conditions, and the following disclaimer,\n without modification.\n2. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n3. Modifications or new contributions must be attributed in a copyright\n notice identifying the author (\"Contributor\") and added below the\n original copyright notice. The copyright notice is for purposes of\n identifying contributors and should not be deemed as permission to alter\n the permissions given by Adaptec.\n\nTHIS README FILE IS PROVIDED BY ADAPTEC AND CONTRIBUTORS ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, ANY\nWARRANTIES OF NON-INFRINGEMENT OR THE IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\nADAPTEC OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS README\nFILE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "gpl-2.0-adaptec.json", + "yaml": "gpl-2.0-adaptec.yml", + "html": "gpl-2.0-adaptec.html", + "license": "gpl-2.0-adaptec.LICENSE" + }, + { + "license_key": "gpl-2.0-autoconf", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-2.0-with-autoconf-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2, or (at your option)\nany later version.\n\nThis library is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this library; see the file COPYING. If not, write to the\nFree Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA\n02110-1301, USA.\n\nAs a special exception to the GNU General Public License, if you\ndistribute this file as part of a program that contains a\nconfiguration script generated by Autoconf, you may include it under\nthe same distribution terms that you use for the rest of that program.", + "json": "gpl-2.0-autoconf.json", + "yaml": "gpl-2.0-autoconf.yml", + "html": "gpl-2.0-autoconf.html", + "license": "gpl-2.0-autoconf.LICENSE" + }, + { + "license_key": "gpl-2.0-autoopts", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "Automated Options is free software.\nYou may redistribute it and/or modify it under the terms of the\nGNU General Public License, as published by the Free Software\nFoundation; either version 2, or (at your option) any later version.\n\nAutomated Options is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with Automated Options. See the file \"COPYING\". If not,\nwrite to: The Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n\nAs a special exception, Bruce Korb gives permission for additional\nuses of the text contained in his release of AutoOpts.\n\nThe exception is that, if you link the AutoOpts library with other\nfiles to produce an executable, this does not by itself cause the\nresulting executable to be covered by the GNU General Public License.\nYour use of that executable is in no way restricted on account of\nlinking the AutoOpts library code into it.\n\nThis exception does not however invalidate any other reasons why\nthe executable file might be covered by the GNU General Public License.\n\nThis exception applies only to the code released by Bruce Korb under\nthe name AutoOpts. If you copy code from other sources under the\nGeneral Public License into a copy of AutoOpts, as the General Public\nLicense permits, the exception does not apply to the code that you add\nin this way. To avoid misleading anyone as to the status of such\nmodified files, you must delete this exception notice from them.\n\nIf you write modifications of your own for AutoOpts, it is your choice\nwhether to permit this exception to apply to your modifications.\nIf you do not wish that, delete this exception notice.", + "json": "gpl-2.0-autoopts.json", + "yaml": "gpl-2.0-autoopts.yml", + "html": "gpl-2.0-autoopts.html", + "license": "gpl-2.0-autoopts.LICENSE" + }, + { + "license_key": "gpl-2.0-bison", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the\nFree Software Foundation; either version 2, or (at your option) any\nlater version.\n\nThis library is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free\nSoftware Foundation, 51 Franklin Street, Fifth Floor, Boston, MA\n02110-1301, USA.\n\nAs a special exception, when this file is copied by Bison into a Bison\noutput file, you may use that output file without restriction. This\nspecial exception was added by the Free Software Foundation in version\n1.24 of Bison.", + "json": "gpl-2.0-bison.json", + "yaml": "gpl-2.0-bison.yml", + "html": "gpl-2.0-bison.html", + "license": "gpl-2.0-bison.LICENSE" + }, + { + "license_key": "gpl-2.0-bison-2.2", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the\nFree Software Foundation; either version 2, or (at your option) any\nlater version.\n\nThis program is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the \nFree Software Foundation, Inc., \n51 Franklin Street, Fifth Floor,\nBoston, MA 02110-1301, USA.\n\nAs a special exception, you may create a larger work that contains part\nor all of the Bison parser skeleton and distribute that work under terms\nof your choice, so long as that work isn't itself a parser generator\nusing the skeleton or a modified version thereof as a parser skeleton.\nAlternatively, if you modify or redistribute the parser skeleton itself,\nyou may (at your option) remove this special exception, which will cause\nthe skeleton and the resulting Bison output files to be licensed under\nthe GNU General Public License without this special exception.\n\nThis special exception was added by the Free Software Foundation in\nversion 2.2 of Bison.", + "json": "gpl-2.0-bison-2.2.json", + "yaml": "gpl-2.0-bison-2.2.yml", + "html": "gpl-2.0-bison-2.2.html", + "license": "gpl-2.0-bison-2.2.LICENSE" + }, + { + "license_key": "gpl-2.0-broadcom-linking", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "Unless you and Broadcom execute a separate written software license\nagreement governing use of this software, this software is licensed to\nyou under the terms of the GNU General Public License version 2 (the\n\"GPL\"), available at http://www.broadcom.com/licenses/GPLv2.php, with\nthe following added to such license:\n\nAs a special exception, the copyright holders of this software give you\npermission to link this software with independent modules, and to copy\nand distribute the resulting executable under terms of your choice,\nprovided that you also meet, for each linked independent module, the\nterms and conditions of the license of that module.\n\nAn independent module is a module which is not derived from this\nsoftware. The special exception does not apply to any modifications of\nthe software.\n\nNot withstanding the above, under no circumstances may you combine this\nsoftware in any way with any other Broadcom software provided under a\nlicense other than the GPL, without Broadcom's express prior written\nconsent.", + "json": "gpl-2.0-broadcom-linking.json", + "yaml": "gpl-2.0-broadcom-linking.yml", + "html": "gpl-2.0-broadcom-linking.html", + "license": "gpl-2.0-broadcom-linking.LICENSE" + }, + { + "license_key": "gpl-2.0-classpath", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-2.0-with-classpath-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library 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 2, or (at your option) any later version.\n\nThis 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 General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nLinking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination.\n\nAs a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.", + "json": "gpl-2.0-classpath.json", + "yaml": "gpl-2.0-classpath.yml", + "html": "gpl-2.0-classpath.html", + "license": "gpl-2.0-classpath.LICENSE" + }, + { + "license_key": "gpl-2.0-cygwin", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License (GPL) version 2, as\npublished by the Free Software Foundation.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\n\t\t\t*** NOTE ***\n\nIn accordance with section 10 of the GPL, Red Hat permits programs whose\nsources are distributed under a license that complies with the Open\nSource definition to be linked with libcygwin.a without libcygwin.a\nitself causing the resulting program to be covered by the GNU GPL.\n\nThis means that you can port an Open Source(tm) application to cygwin,\nand distribute that executable as if it didn't include a copy of\nlibcygwin.a linked into it. Note that this does not apply to the cygwin\nDLL itself. If you distribute a (possibly modified) version of the DLL\nyou must adhere to the terms of the GPL, i.e. you must provide sources\nfor the cygwin DLL.\n\nSee http://www.opensource.org/docs/osd/ for the precise Open Source\nDefinition referenced above.\n\nRed Hat sells a special Cygwin License for customers who are unable to\nprovide their application in open source code form. For more\ninformation, please see: http://www.redhat.com/software/cygwin/, or call\n+1-866-2REDHAT ext. 45300 (toll-free in the US).\n\nOutside the US call your regional Red Hat office, see\nhttp://www.redhat.com/about/contact/ww/", + "json": "gpl-2.0-cygwin.json", + "yaml": "gpl-2.0-cygwin.yml", + "html": "gpl-2.0-cygwin.html", + "license": "gpl-2.0-cygwin.LICENSE" + }, + { + "license_key": "gpl-2.0-djvu", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gpl-2.0-djvu", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "DjVu (r) Reference Library (v. 3.5)\n\nCopyright (c) 1999-2001 LizardTech, Inc. All Rights Reserved.\nThe DjVu Reference Library is protected by U.S. Pat. No.\n6,058,214 and patents pending.\n\nThis software is subject to, and may be distributed under, the\nGNU General Public License, Version 2. The license should have\naccompanied the software or you may obtain a copy of the license\nfrom the Free Software Foundation at http://www.fsf.org .\n\nThe computer code originally released by LizardTech under this\nlicense and unmodified by other parties is deemed the \"LizardTech\nOriginal Code.\"\n\nWith respect to the LizardTech Original Code ONLY, and subject\nto any third party intellectual property claims, LizardTech\ngrants recipient a worldwide, royalty-free, non-exclusive license\nunder patent claims now or hereafter owned or controlled by\nLizardTech that are infringed by making, using, or selling\nLizardTech Original Code, but solely to the extent that any such\npatent(s) is/are reasonably necessary to enable you to make, have\nmade, practice, sell, or otherwise dispose of LizardTech Original\nCode (or portions thereof) and not to any greater extent that may\nbe necessary to utilize further modifications or combinations.\n\nThe LizardTech Original Code is provided \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\nTO ANY WARRANTY OF NON-INFRINGEMENT, OR ANY IMPLIED WARRANTY OF\nMERCHANTIBILITY OR FITNESS FOR A PARTICULAR PURPOSE.", + "json": "gpl-2.0-djvu.json", + "yaml": "gpl-2.0-djvu.yml", + "html": "gpl-2.0-djvu.html", + "license": "gpl-2.0-djvu.LICENSE" + }, + { + "license_key": "gpl-2.0-font", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-2.0-with-font-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it under\nthe terms of the GNU General Public License as published by the Free Software\nFoundation; either version 2, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with\nthis library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAs a special exception, if you create a document which uses\nthis font, and embed this font or unaltered portions of this\nfont into the document, this font does not by itself cause\nthe resulting document to be covered by the GNU General Public\nLicense. This exception does not however invalidate any other\nreasons why the document might be covered by the GNU General\nPublic License. If you modify this font, you may extend this\nexception to your version of the font, but you are not\nobligated to do so. If you do not wish to do so, delete this\nexception statement from your version.", + "json": "gpl-2.0-font.json", + "yaml": "gpl-2.0-font.yml", + "html": "gpl-2.0-font.html", + "license": "gpl-2.0-font.LICENSE" + }, + { + "license_key": "gpl-2.0-freertos", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "The FreeRTOS source code is licensed by a modified GNU General Public License - the\nmodification taking the form of an exception.\n\nThe exception permits the source code of applications that use FreeRTOS solely\nthrough the API published on this website to remain closed source, thus permitting\nthe use of FreeRTOS in commercial applications without necessitating that the whole\napplication be open sourced. The exception can only be used if you wish to combine\nFreeRTOS with a proprietary product and you comply with the terms stated in the\nexception itself.\n\nThe FreeRTOS download also includes demo application source code, some of which is\nprovided by third parties AND IS LICENSED SEPARATELY FROM FREERTOS.\n\nFor the avoidance of any doubt refer to the comment included at the top of each\nsource and header file for license and copyright information.\n\nThis is a list of files for which Real Time Engineers Ltd. is not the copyright owner\nand are NOT COVERED BY THE GPL.\n\n1. Various header files provided by silicon manufacturers and tool vendors that\ndefine processor specific memory addresses and utility macros. Permission has been\ngranted by the various copyright holders for these files to be included in the\nFreeRTOS download. Users must ensure license conditions are adhered to for any use\nother than compilation of the FreeRTOS demo applications.\n\n2. The uIP TCP/IP stack the copyright of which is held by Adam Dunkels. Users must\nensure the open source license conditions stated at the top of each uIP source file\nis understood and adhered to.\n\n3. The lwIP TCP/IP stack the copyright of which is held by the Swedish Institute of\nComputer Science. Users must ensure the open source license conditions stated at the\ntop of each lwIP source file is understood and adhered to.\n\n4. Various peripheral driver source files and binaries provided by silicon\nmanufacturers and tool vendors. Permission has been granted by the various copyright\nholders for these files to be included in the FreeRTOS download. Users must ensure\nlicense conditions are adhered to for any use other than compilation of the FreeRTOS\ndemo applications.\n\n5. The files contained within FreeRTOS\\Demo\\WizNET_DEMO_TERN_186\\tern_code, which are\nslightly modified versions of code provided by and copyright to Tern Inc.\n\nErrors and omissions should be reported to Richard Barry, contact details for whom\ncan be obtained from the Contact page.\n\nThis library is free software; you can redistribute it and/or modify it under the\nterms of the GNU General Public License as published by the Free Software Foundation;\neither version 2, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with this\nlibrary; see the file COPYING. If not, write to the Free Software Foundation, 51\nFranklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nGNU General Public License Exception\n\nAny FreeRTOS source code, whether modified or in its original release form, or\nwhether in whole or in part, can only be distributed by you under the terms of the\nGNU General Public License plus this exception. An independent module is a module\nwhich is not derived from or based on FreeRTOS.\n\nEXCEPTION TEXT:\n\nClause 1\n\nLinking FreeRTOS statically or dynamically with other modules is making a combined\nwork based on FreeRTOS. Thus, the terms and conditions of the GNU General Public\nLicense cover the whole combination.\n\nAs a special exception, the copyright holder of FreeRTOS gives you permission to link\nFreeRTOS with independent modules that communicate with FreeRTOS solely through the\nFreeRTOS API interface, regardless of the license terms of these independent modules,\nand to copy and distribute the resulting combined work under terms of your choice,\nprovided that\n\n1. Every copy of the combined work is accompanied by a written statement that details\nto the recipient the version of FreeRTOS used and an offer by yourself to provide the\nFreeRTOS source code (including any modifications you may have made) should the\nrecipient request it.\n\n2. The combined work is not itself an RTOS, scheduler, kernel or related product.\n\n3. The independent modules add significant and primary functionality to FreeRTOS and\ndo not merely extend the existing functionality already present in FreeRTOS.\n\nClause 2\n\nFreeRTOS may not be used for any competitive or comparative purpose, including the\npublication of any form of run time or compile time metric, without the express\npermission of Real Time Engineers Ltd. (this is the norm within the industry and is\nintended to ensure information accuracy).", + "json": "gpl-2.0-freertos.json", + "yaml": "gpl-2.0-freertos.yml", + "html": "gpl-2.0-freertos.html", + "license": "gpl-2.0-freertos.LICENSE" + }, + { + "license_key": "gpl-2.0-gcc", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-2.0-with-GCC-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the\nFree Software Foundation; either version 2, or (at your option) any\nlater version.\n\nThis library is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free\nSoftware Foundation, 51 Franklin Street, Fifth Floor, Boston, MA\n02110-1301, USA.\n\nGCC Linking Exception\n\nIn addition to the permissions in the GNU General Public License, the\nFree Software Foundation gives you unlimited permission to link the\ncompiled version of this file into combinations with other programs, and\nto distribute those combinations without any restriction coming from the\nuse of this file. (The General Public License restrictions do apply in\nother respects; for example, they cover modification of the file, and\ndistribution when not linked into a combine executable.)", + "json": "gpl-2.0-gcc.json", + "yaml": "gpl-2.0-gcc.yml", + "html": "gpl-2.0-gcc.html", + "license": "gpl-2.0-gcc.LICENSE" + }, + { + "license_key": "gpl-2.0-gcc-compiler-exception", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "GCC is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2, or (at your option)\nany later version.\n\nGCC is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY\nor FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public\nLicense for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with GCC; see the file COPYING. If not, write to the Free\nSoftware Foundation, 59 Temple Place - Suite 330, Boston, MA\n02111-1307, USA.\n\nAs a special exception, if you include this header file into source\nfiles compiled by GCC, this header file does not by itself cause\nthe resulting executable to be covered by the GNU General Public\nLicense. This exception does not however invalidate any other\nreasons why the executable file might be covered by the GNU General\nPublic License.", + "json": "gpl-2.0-gcc-compiler-exception.json", + "yaml": "gpl-2.0-gcc-compiler-exception.yml", + "html": "gpl-2.0-gcc-compiler-exception.html", + "license": "gpl-2.0-gcc-compiler-exception.LICENSE" + }, + { + "license_key": "gpl-2.0-glibc", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the\nFree Software Foundation; either version 2, or (at your option) any\nlater version.\n\nThis library is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free\nSoftware Foundation, 51 Franklin Street, Fifth Floor, Boston, MA\n02110-1301, USA.\n\nAs a special exception, you may use this file as part of a free software\nlibrary without restriction. Specifically, if other files instantiate\ntemplates or use macros or inline functions from this file, or you\ncompile this file and link it with other files to produce an executable,\nthis file does not by itself cause the resulting executable to be\ncovered by the GNU General Public License. This exception does not\nhowever invalidate any other reasons why the executable file might be\ncovered by the GNU General Public License.", + "json": "gpl-2.0-glibc.json", + "yaml": "gpl-2.0-glibc.yml", + "html": "gpl-2.0-glibc.html", + "license": "gpl-2.0-glibc.LICENSE" + }, + { + "license_key": "gpl-2.0-guile", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the\nFree Software Foundation; either version 2, or (at your option) any\nlater version.\n\nThis library is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free\nSoftware Foundation, 51 Franklin Street, Fifth Floor, Boston, MA\n02110-1301, USA.\n\nAs a special exception, the Free Software Foundation gives permission\nfor additional uses of the text contained in its release of GUILE.\n\nThe exception is that, if you link the GUILE library with other files to\nproduce an executable, this does not by itself cause the resulting\nexecutable to be covered by the GNU General Public License. Your use of\nthat executable is in no way restricted on account of linking the GUILE\nlibrary code into it.\n\nThis exception does not however invalidate any other reasons why the\nexecutable file might be covered by the GNU General Public License.\n\nThis exception applies only to the code released by the Free Software\nFoundation under the name GUILE. If you copy code from other Free\nSoftware Foundation releases into a copy of GUILE, as the General Public\nLicense permits, the exception does not apply to the code that you add\nin this way. To avoid misleading anyone as to the status of such\nmodified files, you must delete this exception notice from them.\n\nIf you write modifications of your own for GUILE, it is your choice\nwhether to permit this exception to apply to your modifications. If you\ndo not wish that, delete this exception notice.", + "json": "gpl-2.0-guile.json", + "yaml": "gpl-2.0-guile.yml", + "html": "gpl-2.0-guile.html", + "license": "gpl-2.0-guile.LICENSE" + }, + { + "license_key": "gpl-2.0-ice", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This copy of Ice is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License version 2 as\npublished by the Free Software Foundation.\n\nIce is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\nFOR A PARTICULAR PURPOSE. See the GNU General Public License for more\ndetails.\n\nYou should have received a copy of the GNU General Public License version\n2 along with this program; if not, see http://www.gnu.org/licenses.\n\nLinking Ice statically or dynamically with other software (such as a \nlibrary, module or application) is making a combined work based on Ice. \nThus, the terms and conditions of the GNU General Public License version\n2 cover this combined work.\n\nIf such software can only be used together with Ice, then not only the \ncombined work but the software itself is a work derived from Ice and as\nsuch shall be licensed under the terms of the GNU General Public License \nversion 2. This includes the situation where Ice is only being used \nthrough an abstraction layer.\n\nAs a special exception to the above, ZeroC grants to the contributors for\nthe following projects the permission to license their Ice-based software \nunder the terms of the GNU Lesser General Public License (LGPL) version \n2.1 or of the BSD license:\n\n - Orca Robotics (http://orca-robotics.sourceforge.net)\n \n - Mumble (http://mumble.sourceforge.net)\n\nThis exception does not extend to the parts of Ice used by these \nprojects, or to any other derived work: as a whole, any work based on Ice\nshall be licensed under the terms and conditions of the GNU General\nPublic License version 2.\n\nYou may also combine Ice with any software not derived from Ice, provided\nthe license of such software is compatible with the GNU General Public \nLicense version 2. In addition, as a special exception, ZeroC grants you\npermission to combine Ice with:\n \n - the OpenSSL library, or with a modified version of the OpenSSL library\n that uses the same license as OpenSSL\n\n - any library not derived from Ice and licensed under the terms of\n the Apache License, version 2.0 \n (http://www.apache.org/licenses/LICENSE-2.0.html) \n\nIf you modify this copy of Ice, you may extend any of the exceptions \nprovided above to your version of Ice, but you are not obligated to \ndo so.", + "json": "gpl-2.0-ice.json", + "yaml": "gpl-2.0-ice.yml", + "html": "gpl-2.0-ice.html", + "license": "gpl-2.0-ice.LICENSE" + }, + { + "license_key": "gpl-2.0-independent-module-linking", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the\nFree Software Foundation; either version 2, or (at your option) any\nlater version.\n\nThis library is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free\nSoftware Foundation, 51 Franklin Street, Fifth Floor, Boston, MA\n02110-1301, USA.\n\nThe library is released under the GPL with the following exception:\n\nLinking this library statically or dynamically with other modules is\nmaking a combined work based on this library. Thus, the terms and\nconditions of the GNU General Public License cover the whole\ncombination.\n\nAs a special exception, the copyright holders of this library give you\npermission to link this library with independent modules to produce an\nexecutable, regardless of the license terms of these independent\nmodules, and to copy and distribute the resulting executable under terms\nof your choice, provided that you also meet, for each linked independent\nmodule, the terms and conditions of the license of that module. An\nindependent module is a module which is not derived from or based on\nthis library. If you modify this library, you may extend this exception\nto your version of the library, but you are not obligated to do so. If\nyou do not wish to do so, delete this exception statement from your\nversion.\n\nNote The exception is changed to reflect the latest GNU Classpath\nexception. Older versions of #ziplib did have another exception, but the\nnew one is clearer and it doesn't break compatibility with the old one.\n\nBottom line In plain English this means you can use this library in\ncommercial closed-source applications.", + "json": "gpl-2.0-independent-module-linking.json", + "yaml": "gpl-2.0-independent-module-linking.yml", + "html": "gpl-2.0-independent-module-linking.html", + "license": "gpl-2.0-independent-module-linking.LICENSE" + }, + { + "license_key": "gpl-2.0-iolib", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This is part of libio/iostream, providing -*- C++ -*- input/output.\n\nCopyright (C) 2000 Free Software Foundation\n\nThis file is part of the GNU IO Library. This library 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 2, or (at your option) any later version.\n\nThis 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 General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\nAs a special exception, if you link this library with files compiled with a GNU compiler to produce an executable, this does not cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License.", + "json": "gpl-2.0-iolib.json", + "yaml": "gpl-2.0-iolib.yml", + "html": "gpl-2.0-iolib.html", + "license": "gpl-2.0-iolib.LICENSE" + }, + { + "license_key": "gpl-2.0-iso-cpp", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This file is part of the GNU ISO C++ Library. This library is free\nsoftware; you can redistribute it and/or modify it under the terms of\nthe GNU General Public License as published by the Free Software\nFoundation; either version 2, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\nPublic License for more details.\n\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free\nSoftware Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-\n1307, USA.\n\nAs a special exception, you may use this file as part of a free software\nlibrary without restriction. Specifically, if other files instantiate\ntemplates or use macros or inline functions from this file, or you\ncompile this file and link it with other files to produce an executable,\nthis file does not by itself cause the resulting executable to be\ncovered by the GNU General Public License. This exception does not\nhowever invalidate any other reasons why the executable file might be\ncovered by the GNU General Public License.", + "json": "gpl-2.0-iso-cpp.json", + "yaml": "gpl-2.0-iso-cpp.yml", + "html": "gpl-2.0-iso-cpp.html", + "license": "gpl-2.0-iso-cpp.LICENSE" + }, + { + "license_key": "gpl-2.0-javascript", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it under the\nterms of the GNU General Public License as published by the Free Software Foundation;\neither version 2, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with this\nlibrary; see the file COPYING. If not, write to the Free Software Foundation, 51\nFranklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAs a special exception to GPL, any HTML file which merely makes function calls to\nthis code, and for that purpose includes it by reference shall be deemed a separate\nwork for copyright law purposes. In addition, the copyright holders of this code give\nyou permission to combine this code with free software libraries that are released\nunder the GNU LGPL. You may copy and distribute such a system following the terms of\nthe GNU GPL for this code and the LGPL for the libraries. If you modify this code,\nyou may extend this exception to your version of the code, but you are not obligated\nto do so. If you do not wish to do so, delete this exception statement from your\nversion.", + "json": "gpl-2.0-javascript.json", + "yaml": "gpl-2.0-javascript.yml", + "html": "gpl-2.0-javascript.html", + "license": "gpl-2.0-javascript.LICENSE" + }, + { + "license_key": "gpl-2.0-kernel", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "NOTE! This copyright does *not* cover user programs that use kernel\n services by normal system calls - this is merely considered normal use\n of the kernel, and does *not* fall under the heading of \"derived work\".\n Also note that the GPL below is copyrighted by the Free Software\n Foundation, but the instance of code that it refers to (the Linux\n kernel) is copyrighted by me and others who actually wrote it.\n\n Also note that the only valid version of the GPL as far as the kernel\n is concerned is _this_ particular version of the license (ie v2, not\n v2.2 or v3.x or whatever), unless explicitly otherwise stated.\n\nLinus Torvalds\n\nThis library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation.\n\nThis 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 General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.", + "json": "gpl-2.0-kernel.json", + "yaml": "gpl-2.0-kernel.yml", + "html": "gpl-2.0-kernel.html", + "license": "gpl-2.0-kernel.LICENSE" + }, + { + "license_key": "gpl-2.0-koterov", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gpl-2.0-koterov", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This library 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 2, or (at your option) any later version.\n\nThis 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 General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nADDITIONAL LICENSE TERMS\n\nIn addition to the standard GPL 2.0 license, here are some \nconditions I'd like clarify.\n\n0. If you modify this product, you MUST publish your changes. Period.\n\n1. If you re-write this product in other language (e.g. C++) and \n \"intently view\" the product's Perl sources while coding, you must \n also license your results as GPL 2.0.\n\n2. The author of this product (Dmitry Koterov, http://dmitry.moikrug.ru) may \n change the product's license type and any of license conditions.\n He is also permitted to make private modifications and do not publish them.\n\nIf you have questions, fill free to contact the author:\ndmitry.koterov@gmail.com", + "json": "gpl-2.0-koterov.json", + "yaml": "gpl-2.0-koterov.yml", + "html": "gpl-2.0-koterov.html", + "license": "gpl-2.0-koterov.LICENSE" + }, + { + "license_key": "gpl-2.0-libgit2", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "Note that the only valid version of the GPL as far as this project\n is concerned is _this_ particular version of the license (ie v2, not\n v2.2 or v3.x or whatever), unless explicitly otherwise stated.\n\n----------------------------------------------------------------------\n\n\t\t\tLINKING EXCEPTION\n\n In addition to the permissions in the GNU General Public License,\n the authors give you unlimited permission to link the compiled\n version of this library into combinations with other programs,\n and to distribute those combinations without any restriction\n coming from the use of this file. (The General Public License\n restrictions do apply in other respects; for example, they cover\n modification of the file, and distribution when not linked into\n a combined executable.)", + "json": "gpl-2.0-libgit2.json", + "yaml": "gpl-2.0-libgit2.yml", + "html": "gpl-2.0-libgit2.html", + "license": "gpl-2.0-libgit2.LICENSE" + }, + { + "license_key": "gpl-2.0-library", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "The software in this package is distributed under the GNU General Public\nLicense with the \"Library Exception\" described below. A copy of GNU\nGeneral Public License (GPL) is included in this distribution, in the\nfile LICENSE-GPL.txt. All the files distributed under GPL also include\nthe following special exception:\n\nAs a special exception, the copyright holders of this library give you\npermission to link this library with independent modules to produce an\nexecutable, regardless of the license terms of these independent\nmodules, and to copy and distribute the resulting executable under terms\nof your choice, provided that you also meet, for each linked independent\nmodule, the terms and conditions of the license of that module. An\nindependent module is a module which is not derived from or based on\nthis library. If you modify this library, you may extend this exception\nto your version of the library, but you are not obligated to do so. If\nyou do not wish to do so, delete this exception statement from your\nversion.\n\nAs such, this software can be used to run free as well as proprietary\napplications and applets. Modifications made to the classes in this\ndistribution must however be distributed under the GPL, optionally with\nthe same exception as above.", + "json": "gpl-2.0-library.json", + "yaml": "gpl-2.0-library.yml", + "html": "gpl-2.0-library.html", + "license": "gpl-2.0-library.LICENSE" + }, + { + "license_key": "gpl-2.0-libtool", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it under \nthe terms of the GNU General Public License as published by the Free Software \nFoundation; either version 2, or (at your option) any later version.\n\nAs a special exception to the GNU General Public License,\nif you distribute this file as part of a program or library that\nis built using GNU Libtool, you may include this file under the\nsame distribution terms that you use for the rest of that program.\n\nGNU Libtool is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with GNU Libtool; see the file COPYING. If not, a copy\ncan be downloaded from http://www.gnu.org/licenses/gpl.html, or\nobtained by writing to the Free Software Foundation, Inc.,\n51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.", + "json": "gpl-2.0-libtool.json", + "yaml": "gpl-2.0-libtool.yml", + "html": "gpl-2.0-libtool.html", + "license": "gpl-2.0-libtool.LICENSE" + }, + { + "license_key": "gpl-2.0-lmbench", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "Distributed under the FSF GPL with additional restriction that results may be\npublished only if\n(1) the benchmark is unmodified, and\n(2) the version in the sccsid below is included in the report.\n\nIn the file COPYING-1: \nThe set of programs and documentation known as \"lmbench\" are distributed under\nthe Free Software Foundation's General Public License with the following\nadditional restrictions (which override any conflicting restrictions in the GPL):\n\n1. You may not distribute results in any public forum, in any publication,\n or in any other way if you have modified the benchmarks. \n\n2. You may not distribute the results for a fee of any kind. This includes\n web sites which generate revenue from advertising.", + "json": "gpl-2.0-lmbench.json", + "yaml": "gpl-2.0-lmbench.yml", + "html": "gpl-2.0-lmbench.html", + "license": "gpl-2.0-lmbench.LICENSE" + }, + { + "license_key": "gpl-2.0-mysql-connector-odbc", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it under\nthe terms of the GNU General Public License as published by the Free Software\nFoundation; either version 2, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with\nthis library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAs a special exception to the MySQL Connector/ODBC GPL license, one is\nallowed to use the product with any ODBC manager, even if the ODBC manager\nis not licensed under the GPL. In other words: The ODBC manager itself is\nnot affected by the MySQL Connector/ODBC GPL license.", + "json": "gpl-2.0-mysql-connector-odbc.json", + "yaml": "gpl-2.0-mysql-connector-odbc.yml", + "html": "gpl-2.0-mysql-connector-odbc.html", + "license": "gpl-2.0-mysql-connector-odbc.LICENSE" + }, + { + "license_key": "gpl-2.0-mysql-floss", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it under\nthe terms of the GNU General Public License as published by the Free Software\nFoundation; either version 2, or (at your option) any later version.\n\nThis 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 General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nMySQL FLOSS License Exception\n\nThe MySQL AB Exception for Free/Libre and Open Source Software-only Applications Using MySQL Client Libraries (the \"FLOSS Exception\").\n\nVersion 0.6, 7 March 2007\n\nException Intent\n\nWe want specified Free/Libre and Open Source Software (``FLOSS'') applications to be able to use specified GPL-licensed MySQL client libraries (the ``Program'') despite the fact that not all FLOSS licenses are compatible with version 2 of the GNU General Public License (the ``GPL'').\n\nLegal Terms and Conditions\n\nAs a special exception to the terms and conditions of version 2.0 of the GPL:\n\n 1. You are free to distribute a Derivative Work that is formed\n entirely from the Program and one or more works (each, a\n \"FLOSS Work\") licensed under one or more of the licenses\n listed below in section 1, as long as:\n a. You obey the GPL in all respects for the Program and the\n Derivative Work, except for identifiable sections of the\n Derivative Work which are not derived from the Program,\n and which can reasonably be considered independent and\n separate works in themselves,\n b. all identifiable sections of the Derivative Work which\n are not derived from the Program, and which can\n reasonably be considered independent and separate works\n in themselves,\n i. are distributed subject to one of the FLOSS licenses\n listed below, and\n ii. the object code or executable form of those sections\n are accompanied by the complete corresponding\n machine-readable source code for those sections on\n the same medium and under the same FLOSS license as\n the corresponding object code or executable forms of\n those sections, and\n c. any works which are aggregated with the Program or with a\n Derivative Work on a volume of a storage or distribution\n medium in accordance with the GPL, can reasonably be\n considered independent and separate works in themselves\n which are not derivatives of either the Program, a\n Derivative Work or a FLOSS Work.\n If the above conditions are not met, then the Program may only\n be copied, modified, distributed or used under the terms and\n conditions of the GPL or another valid licensing option from\n MySQL AB.\n\n 2. FLOSS License List\n\nLicense name Version(s)/Copyright Date\nAcademic Free License 2.0\nApache Software License 1.0/1.1/2.0\nApple Public Source License 2.0\nArtistic license From Perl 5.8.0\nBSD license \"July 22 1999\"\nCommon Development and Distribution License (CDDL) 1.0\nCommon Public License 1.0\nEclipse Public License 1.0\nGNU Library or \"Lesser\" General Public License (LGPL) 2.0/2.1\nJabber Open Source License 1.0\nMIT license (As listed in file MIT-License.txt) ---\nMozilla Public License (MPL) 1.0/1.1\nOpen Software License 2.0\nOpenSSL license (with original SSLeay license) \"2003\" (\"1998\")\nPHP License 3.0\nPython license (CNRI Python License) ---\nPython Software Foundation License 2.1.1\nSleepycat License \"1999\"\nUniversity of Illinois/NCSA Open Source License ---\nW3C License \"2001\"\nX11 License \"2001\"\nZlib/libpng License ---\nZope Public License 2.0\n\n Due to the many variants of some of the above licenses, we\n require that any version follow the 2003 version of the Free\n Software Foundation's Free Software Definition\n (http://www.gnu.org/philosophy/free-sw.html) or version 1.9 of\n the Open Source Definition by the Open Source Initiative\n (http://www.opensource.org/docs/definition.php).\n\n 3. Definitions\n\n a. Terms used, but not defined, herein shall have the\n meaning provided in the GPL.\n b. Derivative Work means a derivative work under copyright\n law.\n\n 4. Applicability: This FLOSS Exception applies to all Programs\n that contain a notice placed by MySQL AB saying that the\n Program may be distributed under the terms of this FLOSS\n Exception. If you create or distribute a work which is a\n Derivative Work of both the Program and any other work\n licensed under the GPL, then this FLOSS Exception is not\n available for that work; thus, you must remove the FLOSS\n Exception notice from that work and comply with the GPL in all\n respects, including by retaining all GPL notices. You may\n choose to redistribute a copy of the Program exclusively under\n the terms of the GPL by removing the FLOSS Exception notice\n from that copy of the Program, provided that the copy has\n never been modified by you or any third party.\n\nAppendix A. Qualified Libraries and Packages\n\nThe following is a non-exhaustive list of libraries and packages\nwhich are covered by the FLOSS License Exception. Please note that\nthis appendix is provided merely as an additional service to\nspecific FLOSS projects wishing to simplify licensing information\nfor their users. Compliance with one of the licenses noted under\nthe \"FLOSS license list\" section remains a prerequisite.\n\nPackage Name Qualifying License and Version\nApache Portable Runtime (APR) Apache Software License 2.0", + "json": "gpl-2.0-mysql-floss.json", + "yaml": "gpl-2.0-mysql-floss.yml", + "html": "gpl-2.0-mysql-floss.html", + "license": "gpl-2.0-mysql-floss.LICENSE" + }, + { + "license_key": "gpl-2.0-openjdk", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library 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 2, or (at your option) any later version.\n\nThis 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 General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\n\"CLASSPATH\" EXCEPTION TO THE GPL VERSION 2\n\nCertain source files distributed by Sun Microsystems, Inc. are subject to the following clarification and special exception to the GPL Version 2, but only where Sun has expressly included in the particular source file's header the words\n\n\"Sun designates this particular file as subject to the \"Classpath\" exception as provided by Sun in the License file that accompanied this code.\"\n\nLinking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License Version 2 cover the whole combination.\n\nAs a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. \n\nOPENJDK ASSEMBLY EXCEPTION\n\nThe OpenJDK source code made available openjdk.dev.java.net (\"OpenJDK Code\") is distributed under the terms of the GNU General Public License version 2 only (\"GPL2\"), with the following clarification and special exception.\n\nLinking this OpenJDK Code statically or dynamically with other code is making a combined work based on this library. Thus, the terms and conditions of GPL2 cover the whole combination.\n\nAs a special exception, Sun gives you permission to link this OpenJDK Code with certain code licensed by Sun as indicated at http://openjdk.java.net/legal/exception-modules-2007-05-08.html (\"Designated Exception Modules\") to produce an executable, regardless of the license terms of the Designated Exception Modules, and to copy and distribute the resulting executable under GPL2, provided that the Designated Exception Modules continue to be governed by the licenses under which they were offered by Sun.\n\nAs such, it allows licensees and sublicensees of Sun's GPL2 OpenJDK Code to build an executable that includes those portions of necessary code that Sun could not provide under GPL2 (or that Sun has provided under GPL2 with the Classpath exception). If you modify or add to the OpenJDK code, that new GPL2 code may still be combined with Designated Exception Modules if the new code is made subject to this exception by its copyright holder.\n\nfrom http://openjdk.java.net/legal/exception-modules-2007-05-08.html \nOpenJDK Designated Exception Modules\n8 May 2007\nFor purposes of those files in the OpenJDK distribution that are subject to the Assembly Exception, the following shall be deemed Designated Exception Modules:\n\nThose files in the OpenJDK distribution available at openjdk.java.net, openjdk.dev.java.net, and download.java.net to which Sun has applied the Classpath Exception,\n\nAny of your derivative works of #1 above, to the extent you license them under the GPLv2 with the Classpath Exception as defined in the OpenJDK distribution available at openjdk.java.net, openjdk.dev.java.net, or download.java.net,\n\nAny files in the OpenJDK distribution that are made available at openjdk.java.net, openjdk.dev.java.net, or download.java.net under a binary code license, and\n\nAny files in the OpenJDK distribution that are made available at openjdk.java.net, openjdk.dev.java.net, or download.java.net under an open source license other than GPL, and your derivatives thereof that are in compliance with the applicable open source license.", + "json": "gpl-2.0-openjdk.json", + "yaml": "gpl-2.0-openjdk.yml", + "html": "gpl-2.0-openjdk.html", + "license": "gpl-2.0-openjdk.LICENSE" + }, + { + "license_key": "gpl-2.0-openssl", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "The OpenSSL License is not compatible with the GPL, since it contains the following two clauses:\n\n * 3. All advertising materials mentioning features or use of this\n * software must display the following acknowledgment:\n * \"This product includes software developed by the OpenSSL Project\n * for use in the OpenSSL Toolkit. (http://www.openssl.org/)\"\n\n * 6. Redistributions of any form whatsoever must retain the following\n * acknowledgment:\n * \"This product includes software developed by the OpenSSL Project\n * for use in the OpenSSL Toolkit (http://www.openssl.org/)\"\n\nThe OpenSSL Exception:\n\n* In addition, as a special exception, the copyright holders give\n * permission to link the code of portions of this program with the\n * OpenSSL library under certain conditions as described in each\n * individual source file, and distribute linked combinations\n * including the two.\n* You must obey the GNU General Public License in all respects\n * for all of the code used other than OpenSSL. If you modify\n * file(s) with this exception, you may extend this exception to your\n * version of the file(s), but you are not obligated to do so. If you\n * do not wish to do so, delete this exception statement from your\n * version. If you delete this exception statement from all source\n * files in the program, then also delete it here.\n\nThe OpenSSL Exception Discussion:\nhttp://people.gnome.org/~markmc/openssl-and-the-gpl.html", + "json": "gpl-2.0-openssl.json", + "yaml": "gpl-2.0-openssl.yml", + "html": "gpl-2.0-openssl.html", + "license": "gpl-2.0-openssl.LICENSE" + }, + { + "license_key": "gpl-2.0-oracle-mysql-foss", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it under\nthe terms of the GNU General Public License version 2 as published by the Free\nSoftware Foundation.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with\nthis library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nMySQL FOSS License Exception\n\nWe want free and open source software applications under certain licenses to be\nable to use the GPL-licensed MySQL Connector (specified GPL-licensed MySQL\nclient libraries) despite the fact that not all such FOSS licenses are\ncompatible with version 2 of the GNU General Public License.\n\nTherefore there are special exceptions to the terms and conditions of the GPLv2\nas applied to these client libraries, which are identified and described in more\ndetail in the FOSS License Exception at\n\n\nThis software is OSI Certified Open Source Software.\nOSI Certified is a certification mark of the Open Source Initiative.", + "json": "gpl-2.0-oracle-mysql-foss.json", + "yaml": "gpl-2.0-oracle-mysql-foss.yml", + "html": "gpl-2.0-oracle-mysql-foss.html", + "license": "gpl-2.0-oracle-mysql-foss.LICENSE" + }, + { + "license_key": "gpl-2.0-oracle-openjdk", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library 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 2, or (at your option) any later version.\n\nThis 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 General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\n\"CLASSPATH\" EXCEPTION TO THE GPL\n\nCertain source files distributed by Oracle America and/or its affiliates are\nsubject to the following clarification and special exception to the GPL, but\nonly where Oracle has expressly included in the particular source file's header\nthe words \"Oracle designates this particular file as subject to the \"Classpath\"\nexception as provided by Oracle in the LICENSE file that accompanied this code.\"\n\n Linking this library statically or dynamically with other modules is making\n a combined work based on this library. Thus, the terms and conditions of\n the GNU General Public License cover the whole combination.\n\n As a special exception, the copyright holders of this library give you\n permission to link this library with independent modules to produce an\n executable, regardless of the license terms of these independent modules,\n and to copy and distribute the resulting executable under terms of your\n choice, provided that you also meet, for each linked independent module,\n the terms and conditions of the license of that module. An independent\n module is a module which is not derived from or based on this library. If\n you modify this library, you may extend this exception to your version of\n the library, but you are not obligated to do so. If you do not wish to do\n so, delete this exception statement from your version.", + "json": "gpl-2.0-oracle-openjdk.json", + "yaml": "gpl-2.0-oracle-openjdk.yml", + "html": "gpl-2.0-oracle-openjdk.html", + "license": "gpl-2.0-oracle-openjdk.LICENSE" + }, + { + "license_key": "gpl-2.0-plus", + "category": "Copyleft", + "spdx_license_key": "GPL-2.0-or-later", + "other_spdx_license_keys": [ + "GPL-2.0+", + "GPL 2.0+" + ], + "is_exception": false, + "is_deprecated": false, + "text": "This program is free software; you can redistribute it and/or modify it under\nthe terms of the GNU General Public License as published by the Free Software\nFoundation; either version 2 of the License, or (at your option) any later\nversion.\n\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with\nthis program; if not, write to the Free Software Foundation, Inc., 51 Franklin\nStreet, Fifth Floor, Boston, MA 02110-1301, USA.\n\n GNU GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicense is intended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\n To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if you\ndistribute copies of the software, or if you modify it.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\n We protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\n Also, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original, so\nthat any problems introduced by others will not reflect on the original\nauthors' reputations.\n\n Finally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at all.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n GNU GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License applies to any program or other work which contains\na notice placed by the copyright holder saying it may be distributed\nunder the terms of this General Public License. The \"Program\", below,\nrefers to any such program or work, and a \"work based on the Program\"\nmeans either the Program or any derivative work under copyright law:\nthat is to say, a work containing the Program or a portion of it,\neither verbatim or with modifications and/or translated into another\nlanguage. (Hereinafter, translation is included without limitation in\nthe term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the\nProgram (independent of having been made by running the Program).\nWhether that is true depends on what the Program does.\n\n 1. You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a fee.\n\n 2. You may modify your copy or copies of the Program or any portion\nof it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) You must cause the modified files to carry prominent notices\n stating that you changed the files and the date of any change.\n\n b) You must cause any work that you distribute or publish, that in\n whole or in part contains or is derived from the Program or any\n part thereof, to be licensed as a whole at no charge to all third\n parties under the terms of this License.\n\n c) If the modified program normally reads commands interactively\n when run, you must cause it, when started running for such\n interactive use in the most ordinary way, to print or display an\n announcement including an appropriate copyright notice and a\n notice that there is no warranty (or else, saying that you provide\n a warranty) and that users may redistribute the program under\n these conditions, and telling the user how to view a copy of this\n License. (Exception: if the Program itself is interactive but\n does not normally print such an announcement, your work based on\n the Program is not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n a) Accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of Sections\n 1 and 2 above on a medium customarily used for software interchange; or,\n\n b) Accompany it with a written offer, valid for at least three\n years, to give any third party, for a charge no more than your\n cost of physically performing source distribution, a complete\n machine-readable copy of the corresponding source code, to be\n distributed under the terms of Sections 1 and 2 above on a medium\n customarily used for software interchange; or,\n\n c) Accompany it with the information you received as to the offer\n to distribute corresponding source code. (This alternative is\n allowed only for noncommercial distribution and only if you\n received the program in object code or executable form with such\n an offer, in accord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 4. You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt\notherwise to copy, modify, sublicense or distribute the Program is\nvoid, and will automatically terminate your rights under this License.\nHowever, parties who have received copies, or rights, from you under\nthis License will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n 5. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n 6. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n 7. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Program at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 8. If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n 9. The Free Software Foundation may publish revised and/or new versions\nof the General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and \"any\nlater version\", you have the option of following the terms and conditions\neither of that version or of any later version published by the Free\nSoftware Foundation. If the Program does not specify a version number of\nthis License, you may choose any version ever published by the Free Software\nFoundation.\n\n 10. If you wish to incorporate parts of the Program into other free\nprograms whose distribution conditions are different, write to the author\nto ask for permission. For software which is copyrighted by the Free\nSoftware Foundation, write to the Free Software Foundation; we sometimes\nmake exceptions for this. Our decision will be guided by the two goals\nof preserving the free status of all derivatives of our free software and\nof promoting the sharing and reuse of software generally.\n\n NO WARRANTY\n\n 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\nREPAIR OR CORRECTION.\n\n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\nOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, the commands you use may\nbe called something other than `show w' and `show c'; they could even be\nmouse-clicks or menu items--whatever suits your program.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the program, if\nnecessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the program\n `Gnomovision' (which makes passes at compilers) written by James Hacker.\n\n , 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program into\nproprietary programs. If your program is a subroutine library, you may\nconsider it more useful to permit linking proprietary applications with the\nlibrary. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.", + "json": "gpl-2.0-plus.json", + "yaml": "gpl-2.0-plus.yml", + "html": "gpl-2.0-plus.html", + "license": "gpl-2.0-plus.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-ada", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or (at\nyour option) any later version.\n\nThis library is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this library; if not, write to the Free Software Foundation,\nInc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\nAs a special exception, if other files instantiate generics from this\nunit, or you link this unit with other files to produce an executable,\nthis unit does not by itself cause the resulting executable to be\ncovered by the GNU General Public License. This exception does not\nhowever invalidate any other reasons why the executable file might be\ncovered by the GNU Public License.", + "json": "gpl-2.0-plus-ada.json", + "yaml": "gpl-2.0-plus-ada.yml", + "html": "gpl-2.0-plus-ada.html", + "license": "gpl-2.0-plus-ada.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-ekiga", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n\nEkiga/GnomeMeeting is licensed under the GNU GPL license and as a special \nexception, you have permission to link or otherwise combine this program with \nthe programs OPAL, OpenH323, PWLIB, and OpenSSL, and distribute \nthe combination, without applying the requirements of the GNU GPL to these \nprograms, as long as you do follow the requirements of the GNU GPL for all the\nrest of the software thus combined.", + "json": "gpl-2.0-plus-ekiga.json", + "yaml": "gpl-2.0-plus-ekiga.yml", + "html": "gpl-2.0-plus-ekiga.html", + "license": "gpl-2.0-plus-ekiga.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-gcc", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This file is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the\nFree Software Foundation; either version 2 of the License, or (at your\noption) any later version.\n\nIn addition to the permissions in the GNU General Public License, the\nFree Software Foundation gives you unlimited permission to link the\ncompiled version of this file into combinations with other programs, and\nto distribute those combinations without any restriction coming from the\nuse of this file. (The General Public License restrictions do apply in\nother respects; for example, they cover modification of the file, and\ndistribution when not linked into a combined executable.)\n\nThis program is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\nPublic License for more details.\n\nYou should have received a copy of the GNU General Public License along\nwith this program; if not, write to the Free Software Foundation, Inc.,\n51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.", + "json": "gpl-2.0-plus-gcc.json", + "yaml": "gpl-2.0-plus-gcc.yml", + "html": "gpl-2.0-plus-gcc.html", + "license": "gpl-2.0-plus-gcc.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-geoserver", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version (collectively, \"GPL\").\n\nAs an exception to the terms of the GPL, you may copy, modify,\npropagate, and distribute a work formed by combining GeoServer with the\nEclipse Libraries, or a work derivative of such a combination, even if\nsuch copying, modification, propagation, or distribution would otherwise\nviolate the terms of the GPL. Nothing in this exception exempts you from\ncomplying with the GPL in all respects for all of the code used other\nthan the Eclipse Libraries. You may include this exception and its grant\nof permissions when you distribute GeoServer. Inclusion of this notice\nwith such a distribution constitutes a grant of such permissions. If\nyou do not wish to grant these permissions, remove this paragraph from\nyour distribution. \"GeoServer\" means the GeoServer software licensed\nunder version 2 or any later version of the GPL, or a work based on such\nsoftware and licensed under the GPL. \"Eclipse Libraries\" means Eclipse\nModeling Framework Project and XML Schema Definition software\ndistributed by the Eclipse Foundation and licensed under the Eclipse\nPublic License Version 1.0 (\"EPL\"), or a work based on such software and\nlicensed under the EPL.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA", + "json": "gpl-2.0-plus-geoserver.json", + "yaml": "gpl-2.0-plus-geoserver.yml", + "html": "gpl-2.0-plus-geoserver.html", + "license": "gpl-2.0-plus-geoserver.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-linking", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it under the\nterms of the GNU General Public License as published by the Free Software Foundation;\neither version 2, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with this\nlibrary; see the file COPYING. If not, write to the Free Software Foundation, 51\nFranklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAs a special exception, if you link this library with other files,\nsome of which are compiled with GCC, to produce an executable,\nthis library does not by itself cause the resulting executable to\nbe covered by the GNU General Public License. \u00a0This exception does\nnot however invalidate any other reasons why the executable file\nmight be covered by the GNU General Public License.", + "json": "gpl-2.0-plus-linking.json", + "yaml": "gpl-2.0-plus-linking.yml", + "html": "gpl-2.0-plus-linking.html", + "license": "gpl-2.0-plus-linking.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-nant", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n\nIn addition, as a special exception, Gerry Shaw gives permission to link the \ncode of this program with the Microsoft .NET library (or with modified versions \nof Microsoft .NET library that use the same license as the Microsoft .NET \nlibrary), and distribute linked combinations including the two. You must obey \nthe GNU General Public License in all respects for all of the code used other \nthan the Microsoft .NET library. If you modify this file, you may extend this \nexception to your version of the file, but you are not obligated to do so. If \nyou do not wish to do so, delete this exception statement from your version.\n\nA copy of the GNU General Public License is available in the COPYING.txt file \nincluded with all NAnt distributions.\n\nFor more licensing information refer to the GNU General Public License on the \nGNU Project web site.\nhttp://www.gnu.org/copyleft/gpl.html", + "json": "gpl-2.0-plus-nant.json", + "yaml": "gpl-2.0-plus-nant.yml", + "html": "gpl-2.0-plus-nant.html", + "license": "gpl-2.0-plus-nant.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-openmotif", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it under\nthe terms of the GNU General Public License as published by the Free Software\nFoundation; either version 2, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with\nthis library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nIn addition, as a special exception to the GNU GPL, the copyright holders\ngive permission to link the code of this program with the Motif and Open\nMotif libraries (or with modified versions of these that use the same\nlicense), and distribute linked combinations including the two. You\nmust obey the GNU General Public License in all respects for all of\nthe code used other than linking with Motif/Open Motif. If you modify\nthis file, you may extend this exception to your version of the file,\nbut you are not obligated to do so. If you do not wish to do so,\ndelete this exception statement from your version.", + "json": "gpl-2.0-plus-openmotif.json", + "yaml": "gpl-2.0-plus-openmotif.yml", + "html": "gpl-2.0-plus-openmotif.html", + "license": "gpl-2.0-plus-openmotif.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-openssl", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "As a special exception to the GNU General Public License terms,\npermission is hereby granted to link the code of this program, with or\nwithout modification, with any version of the OpenSSL library and/or any\nversion of unRAR, and to distribute such linked combinations. You must\nobey the GNU GPL in all respects for all of the code used other than\nOpenSSL and unRAR. If you modify this program, you may extend this\nexception to your version of the program, but you are not obligated to\ndo so. (In other words, you may release your derived work under pure\nGNU GPL version 2 or later as published by the FSF.)", + "json": "gpl-2.0-plus-openssl.json", + "yaml": "gpl-2.0-plus-openssl.yml", + "html": "gpl-2.0-plus-openssl.html", + "license": "gpl-2.0-plus-openssl.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-sane", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": " As a special exception, the authors of SANE give permission for\n additional uses of the libraries contained in this release of SANE.\n\n The exception is that, if you link a SANE library with other files\n to produce an executable, this does not by itself cause the\n resulting executable to be covered by the GNU General Public\n License. Your use of that executable is in no way restricted on\n account of linking the SANE library code into it.\n\n This exception does not, however, invalidate any other reasons why\n the executable file might be covered by the GNU General Public\n License.\n\n If you submit changes to SANE to the maintainers to be included in\n a subsequent release, you agree by submitting the changes that\n those changes may be distributed with this exception intact.\n\n If you write modifications of your own for SANE, it is your choice\n whether to permit this exception to apply to your modifications.\n If you do not wish that, delete this exception notice.", + "json": "gpl-2.0-plus-sane.json", + "yaml": "gpl-2.0-plus-sane.yml", + "html": "gpl-2.0-plus-sane.html", + "license": "gpl-2.0-plus-sane.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-subcommander", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "Subcommander is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published\nby the Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nSubcommander is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with Subcommander; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston,MA 02111-1307,\nUSA.\n\nIn addition, as a special exception, the copyright holder\ngives permission to link the code of this program with the Qt\nlibrary (or with modified versions of Qt that use the same license\nas Qt), and distribute linked combinations including the two. You\nmust obey the GNU General Public License in all respects for all of\nthe code used other than Qt. If you modify a file to which this\nlicense applies, you may extend this exception to your version of\nthe file, but you are not obligated to do so. If you do not wish\nto do so, delete this exception statement from your version.", + "json": "gpl-2.0-plus-subcommander.json", + "yaml": "gpl-2.0-plus-subcommander.yml", + "html": "gpl-2.0-plus-subcommander.html", + "license": "gpl-2.0-plus-subcommander.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-syntext", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "Syntext, Inc. GPL License Exception for Syntext Serna Free Edition \n\n Version 1.0\n\nAdditional rights granted beyond the GPL (the \"Exception\").\n\nAs a special exception to the terms and conditions of GPL version 2.0 \nor GPL version 3.0, Syntext, Inc. hereby grants you the rights described below,\nprovided you agree to the terms and conditions in this Exception, including its\nobligations and restrictions on use. \n\nNothing in this Exception gives you or anyone else the right to change the\nlicensing terms of the Syntext Serna Free Editon.\n\n1) Definitions\n\n\"FOSS Application\" means a free and open source software application \ndistributed subject to a license listed in the section below titled \n\"FOSS License List.\"\n\n\"Licensed Software\" shall refer to the software licensed under the GPL \n version 2.0 or GPL version 3.0 and this exception.\n\n\"Derivative Work\" means a derivative work, as defined under applicable\ncopyright law, formed entirely from the Licensed Software and one or more FOSS\nApplications.\n\n\"Independent Work\" means portions of the Derivative Work that are not derived \nfrom the Licensed Software and can reasonably be considered independent and\nseparate works.\n\n2) The right to use open source licenses not compatible with the GNU General\nPublic License version 2.0 or GNU General Public License version 3.0: You may\ndistribute Derivative Work in object code or executable form, provided that:\n\nA) You distribute Independent Works subject to a license listed in the \nsection 4 below, titled \"FOSS License List\";\n\nand\n\nB) You obey the GPL in all respects for the Licensed Software and all portions \n(including modifications and extensions) of the Licensed Software included in\nthe Derivative Work (provided that this condition does not apply to \nIndependent Works);\n\nC) You must, on request, make a complete package including the complete source\ncode of Derivative Work (as defined in the GNU General Public License \nversion 2, section 3, but excluding anything excluded by the special exception \nin the same section) available to Syntext, Inc. under the same license as that\ngranted to other recipients of the source code of Derivative Work;\n\nand\n\nD) Your or any other contributor's rights to:\n\ni) distribute the source code of Derivative Work to anyone for any purpose;\n\nand\n\nii) publicly discuss the development project for Derivative Work and its goals\nin any form and in any forum are not prohibited by any legal instrument, \nincluding but not limited to contracts, non-disclosure agreements, and \nemployee contracts.\n\n3) Syntext, Inc. reserves all rights not expressly granted in these terms and \nconditions. If all of the above conditions are not met, then this FOSS License\nException does not apply to you or your Derivative Work.\n\n\n4) FOSS License List\n\nLicense name Version\n-----------------------------------------------------------------\nAcademic Free License 2.0, 2.1, 3.0\nApache Software License\t 1.0 or 1.1\nApache License 2.0\nApple Public Source License \t2.0\nArtistic license (as set forth in the addendum file)\nBSD license\t \"July 22 1999\"\nCommon Development and Distribution License (CDDL)\t1.0\nCommon Public License \t1.0\nEclipse Public License\t 1.0\nGNU Library or \"Lesser\" General Public License (LGPL)\t2.0, 2.1, 3.0\nJabber Open Source License 1.0\nMIT License\t (as set forth in the addendum file)\nMozilla Public License (MPL) 1.0 or 1.1\nOpen Software License\t 2.0, 3.0\nOpenSSL license (with original SSLeay license)\t \"2003\" (\"1998\")\nPHP License\t 3.0\nPython license (CNRI Python License)\t(as set forth in the addendum file)\nPython Software Foundation License\t 2.1.1\nQ Public License\t 1.0\nSleepycat License\t \"1999\"\nW3C License\t \"2001\"\nX11 License\t X11R6.6\nZlib/libpng License (as set forth in the addendum file)\nZope Public License 2.0, 2.1\n\n(Licenses without a specific version number or date are reproduced in the file\nGPL_Exception_Addendum.txt in your source package).\n------------------------------------------------------------------", + "json": "gpl-2.0-plus-syntext.json", + "yaml": "gpl-2.0-plus-syntext.yml", + "html": "gpl-2.0-plus-syntext.html", + "license": "gpl-2.0-plus-syntext.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-upx", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "PLEASE CAREFULLY READ THIS LICENSE AGREEMENT, ESPECIALLY IF YOU PLAN\nTO MODIFY THE UPX SOURCE CODE OR USE A MODIFIED UPX VERSION.\n\nABSTRACT\n========\n\nUPX and UCL are copyrighted software distributed under the terms of the GNU General Public License (hereinafter the \"GPL\").\n\nThe stub which is imbedded in each UPX compressed program is part of UPX and UCL, and contains code that is under our copyright. The terms of the GNU General Public License still apply as compressing a program is a special form of linking with our stub.\n\nAs a special exception we grant the free usage of UPX for all executables, including commercial programs.\nSee below for details and restrictions.\n\nCOPYRIGHT\n=========\n\n UPX and UCL are copyrighted software. All rights remain with the authors.\n\n UPX is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer\n UPX is Copyright (C) 1996-2000 Laszlo Molnar\n\n UCL is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer\n\n\nGNU GENERAL PUBLIC LICENSE\n==========================\n\nUPX and the UCL library are free software; you can redistribute them and/or modify them under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\n\nUPX and UCL are distributed in the hope that they 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.\n\nYou should have received a copy of the GNU General Public License along with this program; see the file COPYING.\n\nSPECIAL EXCEPTION FOR COMPRESSED EXECUTABLES\n============================================\n\nThe stub which is imbedded in each UPX compressed program is part of UPX and UCL, and contains code that is under our copyright. The terms of the GNU General Public License still apply as compressing a program is a special form of linking with our stub.\n\nHereby Markus F.X.J. Oberhumer and Laszlo Molnar grant you special permission to freely use and distribute all UPX compressed programs (including commercial ones), subject to the following restrictions:\n\n1. You must compress your program with a completely unmodified UPX version; either with our precompiled version, or (at your option) with a self compiled version of the unmodified UPX sources as distributed by us.\n\n2. This also implies that the UPX stub must be completely unmodfied, i.e.the stub imbedded in your compressed program must be byte-identical to the stub that is produced by the official unmodified UPX version.\n\n3. The decompressor and any other code from the stub must exclusively get used by the unmodified UPX stub for decompressing your program at program startup. No portion of the stub may get read, copied, called or otherwise get used or accessed by your program.\n\nANNOTATIONS\n===========\n\n- You can use a modified UPX version or modified UPX stub only for programs that are compatible with the GNU General Public License.\n\n- We grant you special permission to freely use and distribute all UPX compressed programs. But any modification of the UPX stub (such as, but not limited to, removing our copyright string or making your program non-decompressible) will immediately revoke your right to use and distribute a UPX compressed program.\n\n- UPX is not a software protection tool; by requiring that you use the unmodified UPX version for your proprietary programs we\nmake sure that any user can decompress your program. This protects both you and your users as nobody can hide malicious code - any program that cannot be decompressed is highly suspicious by definition.\n\n- You can integrate all or part of UPX and UCL into projects that are compatible with the GNU GPL, but obviously you cannot grant any special exceptions beyond the GPL for our code in your project.\n\n- We want to actively support manufacturers of virus scanners and similar security software. Please contact us if you would like to incorporate parts of UPX or UCL into such a product.\n\nMarkus F.X.J. Oberhumer Laszlo Molnar\nmarkus.oberhumer@jk.uni-linz.ac.at ml1050@cdata.tvnet.hu\n\nLinz, Austria, 25 Feb 2000", + "json": "gpl-2.0-plus-upx.json", + "yaml": "gpl-2.0-plus-upx.yml", + "html": "gpl-2.0-plus-upx.html", + "license": "gpl-2.0-plus-upx.LICENSE" + }, + { + "license_key": "gpl-2.0-proguard", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "License\n\nProGuard is free. You can use it freely for processing your applications, \ncommercial or not. Your code obviously remains yours after having been processed,\nand its license can remain the same.\nThe ProGuard code itself is copyrighted, but its distribution license provides\nyou with some rights for modifying and redistributing its code and its\ndocumentation. More specifically, ProGuard is distributed under the terms of the\nGNU General Public License (GPL), version 2, as published by the Free Software\nFoundation (FSF). In short, this means that you may freely redistribute the\nprogram, modified or as is, on the condition that you make the complete source\ncode available as well. If you develop a program that is linked with ProGuard,\nthe program as a whole has to be distributed at no charge under the GPL. I am\ngranting a special exception to the latter clause (in wording suggested by the\nFSF), for combinations with the following stand-alone applications: Apache Ant,\nApache Maven, the Google Android SDK, the Eclipse ProGuardDT GUI, the EclipseME\nJME IDE, the Oracle NetBeans Java IDE, the Oracle JME Wireless Toolkit, the\nIntel TXE SDK, the Simple Build Tool for Scala, the NeoMAD Tools by Neomades,\nthe Javaground Tools, and the Sanaware Tools.\n\n\nThe ProGuard user documentation is copyrighted as well. It may only be\nredistributed without changes, along with the unmodified version of the code.", + "json": "gpl-2.0-proguard.json", + "yaml": "gpl-2.0-proguard.yml", + "html": "gpl-2.0-proguard.html", + "license": "gpl-2.0-proguard.LICENSE" + }, + { + "license_key": "gpl-2.0-qt-qca", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library 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, version 2. \n\nThis 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 General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAs a special exception, the copyright holder(s) give permission to link\n this program with the Qt Library (commercial or non-commercial edition),\n and distribute the resulting executable, without including the source\n code for the Qt library in the source distribution.\n\n As a special exception, the copyright holder(s) give permission to link\n this program with any other library, and distribute the resulting\n executable, without including the source code for the library in the\n source distribution, provided that the library interfaces with this\n program only via the following plugin interfaces:\n\n 1. The Qt Plugin APIs, only as authored by Trolltech\n 2. The QCA Plugin API, only as authored by Justin Karneges", + "json": "gpl-2.0-qt-qca.json", + "yaml": "gpl-2.0-qt-qca.yml", + "html": "gpl-2.0-qt-qca.html", + "license": "gpl-2.0-qt-qca.LICENSE" + }, + { + "license_key": "gpl-2.0-redhat", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it under the\nterms of the GNU General Public License as published by the Free Software Foundation;\neither version 2, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with this\nlibrary; see the file COPYING. If not, write to the Free Software Foundation, 51\nFranklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nIn addition, as a special exception, Red Hat, Inc. gives You the additional right to\nlink the code of this Program with code not covered under the GNU General Public\nLicense (\"Non-GPL Code\") and to distribute linked combinations including the two,\nsubject to the limitations in this paragraph. Non-GPL Code permitted under this\nexception must only link to the code of this Program through those well defined\ninterfaces identified in the file named EXCEPTION found in the source code files (the\n\"Approved Interfaces\"). The files of Non-GPL Code may instantiate templates or use\nmacros or inline functions from the Approved Interfaces without causing the resulting\nwork to be covered by the GNU General Public License. Only Red Hat, Inc. may make\nchanges or additions to the list of Approved Interfaces. You must obey the GNU\nGeneral Public License in all respects for all of the Program code and other code\nused in conjunction with the Program except the Non-GPL Code covered by this\nexception. If you modify this file, you may extend this exception to your version of\nthe file, but you are not obligated to do so. If you do not wish to provide this\nexception without modification, you must delete this exception statement from your\nversion and license this file solely under the GPL without exception.", + "json": "gpl-2.0-redhat.json", + "yaml": "gpl-2.0-redhat.yml", + "html": "gpl-2.0-redhat.html", + "license": "gpl-2.0-redhat.LICENSE" + }, + { + "license_key": "gpl-2.0-rrdtool-floss", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "RRDTOOL - Round Robin Database Tool\nA tool for fast logging of numerical data graphical display\nof this data.\n\nCopyright (c) 1998-2009 Tobias Oetiker\nAll rights reserved.\n\nGNU GPL License\n===============\n\nThis program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2 of the License, or (at your option)\nany later version.\n\nThis program is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\n\nYou should have received a copy of the GNU General Public License along\nwith this program; if not, write to the Free Software Foundation, Inc.,\n59 Temple Place - Suite 330, Boston, MA 02111-1307, USA\n\nFLOSS License Exception \n=======================\n(Adapted from http://www.mysql.com/company/legal/licensing/foss-exception.html )\n\nI want specified Free/Libre and Open Source Software (\"FLOSS\")\napplications to be able to use specified GPL-licensed RRDtool\nlibraries (the \"Program\") despite the fact that not all FLOSS licenses are\ncompatible with version 2 of the GNU General Public License (the \"GPL\").\n\nAs a special exception to the terms and conditions of version 2.0 of the GPL:\n\nYou are free to distribute a Derivative Work that is formed entirely from\nthe Program and one or more works (each, a \"FLOSS Work\") licensed under one\nor more of the licenses listed below, as long as:\n\n1. You obey the GPL in all respects for the Program and the Derivative\nWork, except for identifiable sections of the Derivative Work which are\nnot derived from the Program, and which can reasonably be considered\nindependent and separate works in themselves,\n\n2. all identifiable sections of the Derivative Work which are not derived\nfrom the Program, and which can reasonably be considered independent and\nseparate works in themselves,\n\n1. are distributed subject to one of the FLOSS licenses listed\nbelow, and\n\n2. the object code or executable form of those sections are\naccompanied by the complete corresponding machine-readable source\ncode for those sections on the same medium and under the same FLOSS\nlicense as the corresponding object code or executable forms of\nthose sections, and\n\n3. any works which are aggregated with the Program or with a Derivative\nWork on a volume of a storage or distribution medium in accordance with\nthe GPL, can reasonably be considered independent and separate works in\nthemselves which are not derivatives of either the Program, a Derivative\nWork or a FLOSS Work.\n\nIf the above conditions are not met, then the Program may only be copied,\nmodified, distributed or used under the terms and conditions of the GPL.\n\nFLOSS License List\n==================\nLicense name\tVersion(s)/Copyright Date\nAcademic Free License\t\t2.0\nApache Software License\t1.0/1.1/2.0\nApple Public Source License\t2.0\nArtistic license\t\tFrom Perl 5.8.0\nBSD license\t\t\t\"July 22 1999\"\nCommon Public License\t\t1.0\nGNU Library or \"Lesser\" General Public License (LGPL)\t2.0/2.1\nIBM Public License, Version 1.0\nJabber Open Source License\t1.0\nMIT License (As listed in file MIT-License.txt)\t-\nMozilla Public License (MPL)\t1.0/1.1\nOpen Software License\t\t2.0\nOpenSSL license (with original SSLeay license)\t\"2003\" (\"1998\")\nPHP License\t\t\t3.01\nPython license (CNRI Python License)\t-\nPython Software Foundation License\t2.1.1\nSleepycat License\t\t\"1999\"\nW3C License\t\t\t\"2001\"\nX11 License\t\t\t\"2001\"\nZlib/libpng License\t\t-\nZope Public License\t\t2.0/2.1", + "json": "gpl-2.0-rrdtool-floss.json", + "yaml": "gpl-2.0-rrdtool-floss.yml", + "html": "gpl-2.0-rrdtool-floss.html", + "license": "gpl-2.0-rrdtool-floss.LICENSE" + }, + { + "license_key": "gpl-2.0-uboot", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the\nFree Software Foundation; either version 2, or (at your option) any\nlater version.\n\nThis library is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free\nSoftware Foundation, 51 Franklin Street, Fifth Floor, Boston, MA\n02110-1301, USA.\n\nThe U-Boot Exception:\n\nNOTE! This copyright does *not* cover the so-called \"standalone\"\napplications that use U-Boot services by means of the jump table\nprovided by U-Boot exactly for this purpose - this is merely considered\nnormal use of U-Boot, and does *not* fall under the heading of \"derived\nwork\".\n\nThe header files \"include/image.h\" and \"include/asm-*/u-boot.h\" define\ninterfaces to U-Boot. Including these (unmodified) header files in\nanother file is considered normal use of U-Boot, and does *not* fall\nunder the heading of \"derived work\".\n\nAlso note that the GPL below is copyrighted by the Free Software\nFoundation, but the instance of code that it refers to (the U-Boot\nsource code) is copyrighted by me and others who actually wrote it.\n\n-- Wolfgang Denk", + "json": "gpl-2.0-uboot.json", + "yaml": "gpl-2.0-uboot.yml", + "html": "gpl-2.0-uboot.html", + "license": "gpl-2.0-uboot.LICENSE" + }, + { + "license_key": "gpl-3.0", + "category": "Copyleft", + "spdx_license_key": "GPL-3.0-only", + "other_spdx_license_keys": [ + "GPL-3.0", + "LicenseRef-gpl-3.0" + ], + "is_exception": false, + "is_deprecated": false, + "text": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n.", + "json": "gpl-3.0.json", + "yaml": "gpl-3.0.yml", + "html": "gpl-3.0.html", + "license": "gpl-3.0.LICENSE" + }, + { + "license_key": "gpl-3.0-aptana", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This program is distributed under the GNU General Public license. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, Version 3, as published by the Free Software Foundation.\n\nAny modifications must keep this entire license intact.\n\n-----------------------------------------------------------------------\n\nAppcelerator GPL Exception\nSection 7 Exception\n\nAs a special exception to the terms and conditions of the GNU General Public License Version 3 (the \"GPL\"): You are free to convey a modified version that is formed entirely from this file (for purposes of this exception, the \"Program\" under the GPL) and the works identified at http://www.aptana.com/legal/gpl (each an \"Excepted Work\"), which are conveyed to you by Appcelerator, Inc. and licensed under one or more of the licenses identified in the Excepted License List below (each an \"Excepted License\"), as long as:\n\n 1. you obey the GPL in all respects for the Program and the modified version, except for Excepted Works which are identifiable sections of the modified version, which are not derived from the Program, and which can reasonably be considered independent and separate works in themselves,\n 2. all Excepted Works which are identifiable sections of the modified version, which are not derived from the Program, and which can reasonably be considered independent and separate works in themselves,\n 1. are distributed subject to the Excepted License under which they were originally licensed, and\n 2. are not themselves modified from the form in which they are conveyed to you by Aptana, and\n 3. the object code or executable form of those sections are accompanied by the complete corresponding machine-readable source code for those sections, on the same medium as the corresponding object code or executable forms of those sections, and are licensed under the applicable Excepted License as the corresponding object code or executable forms of those sections, and\n 3. any works which are aggregated with the Program, or with a modified version on a volume of a storage or distribution medium in accordance with the GPL, are aggregates (as defined in Section 5 of the GPL) which can reasonably be considered independent and separate works in themselves and which are not modified versions of either the Program, a modified version, or an Excepted Work.\n\nIf the above conditions are not met, then the Program may only be copied, modified, distributed or used under the terms and conditions of the GPL or another valid licensing option from Appcelerator, Inc. Terms used but not defined in the foregoing paragraph have the meanings given in the GPL.\n\n-----------------------------------------------------------------------\n\nExcepted License List\n\n * Apache Software License: version 1.0, 1.1, 2.0\n * Eclipse Public License: version 1.0\n * GNU General Public License: version 2.0\n * GNU Lesser General Public License: version 2.0\n * License of Jaxer\n * License of HTML jTidy\n * Mozilla Public License: version 1.1\n * W3C License\n * BSD License\n * MIT License\n * Aptana Commercial Licenses\n\nThis list may be modified by Appcelerator from time to time. See Appcelerator's website for the latest version.\n\n-----------------------------------------------------------------------\n\nAttribution Requirement\n\nThis license does not grant any license or rights to use the trademarks \"Aptana,\" any \"Aptana\" logos, or any other trademarks of Appcelerator, Inc. You are not authorized to use the name Aptana or the names of any author or contributor for publicity purposes, without written authorization.\n\nHowever, in addition to the other notice obligations of this License, all copies of any covered work conveyed by you must include on each user interface screen and in the Appropriate Legal Notices the following text: \"Powered by Aptana\". On user interface screens, this text must be visibly and clearly displayed in the title bar, status bar, or otherwise directly in the view that is in focus.", + "json": "gpl-3.0-aptana.json", + "yaml": "gpl-3.0-aptana.yml", + "html": "gpl-3.0-aptana.html", + "license": "gpl-3.0-aptana.LICENSE" + }, + { + "license_key": "gpl-3.0-autoconf", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-3.0-with-autoconf-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the\nFree Software Foundation, either version 3 of the License, or (at your\noption) any later version.\n\nThis program is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License along\nwith this program. If not, see .\n\nAUTOCONF CONFIGURE SCRIPT EXCEPTION\n\nVersion 3.0, 18 August 2009\n\nCopyright \u00a9 2009 Free Software Foundation, Inc. \n\nEveryone is permitted to copy and distribute verbatim copies of this\nlicense document, but changing it is not allowed.\n\nThis Exception is an additional permission under section 7 of the GNU\nGeneral Public License, version 3 (\"GPLv3\"). It applies to a given file\nthat bears a notice placed by the copyright holder of the file stating\nthat the file is governed by GPLv3 along with this Exception.\n\nThe purpose of this Exception is to allow distribution of Autoconf's\ntypical output under terms of the recipient's choice (including\nproprietary).\n\n0. Definitions.\n\"Covered Code\" is the source or object code of a version of Autoconf\nthat is a covered work under this License.\n\n\"Normally Copied Code\" for a version of Autoconf means all parts of its\nCovered Code which that version can copy from its code (i.e., not from\nits input file) into its minimally verbose, non-debugging and non-\ntracing output.\n\n\"Ineligible Code\" is Covered Code that is not Normally Copied Code.\n\n1. Grant of Additional Permission.\n\nYou have permission to propagate output of Autoconf, even if such\npropagation would otherwise violate the terms of GPLv3. However, if by\nmodifying Autoconf you cause any Ineligible Code of the version you\nreceived to become Normally Copied Code of your modified version, then\nyou void this Exception for the resulting covered work. If you convey\nthat resulting covered work, you must remove this Exception in\naccordance with the second paragraph of Section 7 of GPLv3.\n\n2. No Weakening of Autoconf Copyleft.\n\nThe availability of this Exception does not imply any general\npresumption that third-party software is unaffected by the copyleft\nrequirements of the license of Autoconf.", + "json": "gpl-3.0-autoconf.json", + "yaml": "gpl-3.0-autoconf.yml", + "html": "gpl-3.0-autoconf.html", + "license": "gpl-3.0-autoconf.LICENSE" + }, + { + "license_key": "gpl-3.0-bison", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "Skeleton implementation for Bison's Yacc-like parsers in C\n\nCopyright (C) 1984, 1989-1990, 2000-2006, 2009-2010 Free Software\nFoundation, Inc.\n\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program. If not, see .\n\nAs a special exception, you may create a larger work that contains\npart or all of the Bison parser skeleton and distribute that work\nunder terms of your choice, so long as that work isn't itself a\nparser generator using the skeleton or a modified version thereof\nas a parser skeleton. Alternatively, if you modify or redistribute\nthe parser skeleton itself, you may (at your option) remove this\nspecial exception, which will cause the skeleton and the resulting\nBison output files to be licensed under the GNU General Public\nLicense without this special exception.\n\nThis special exception was added by the Free Software Foundation in\nversion 2.2 of Bison.", + "json": "gpl-3.0-bison.json", + "yaml": "gpl-3.0-bison.yml", + "html": "gpl-3.0-bison.html", + "license": "gpl-3.0-bison.LICENSE" + }, + { + "license_key": "gpl-3.0-cygwin", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "Cygwin is free software. Red Hat, Inc. licenses Cygwin to you under the\nterms of the GNU General Public License as published by the Free Software\nFoundation; you can redistribute it and/or modify it under the terms of\nthe GNU General Public License either version 3 of the license, or (at your\noption) any later version (GPLv3+), along with the additional permissions\ngiven below.\n\nThere is NO WARRANTY for this software, express or implied, including\nthe implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR\nPURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along\nwith this program. If not, see .\n\n\nAdditional Permissions:\n\n\n1. Linking Exception.\n\nAs a special exception to GPLv3+, Red Hat grants you permission to link\nsoftware whose sources are distributed under a license that satisfies\nthe Open Source Definition with libcygwin.a, without libcygwin.a\nitself causing the resulting program to be covered by GPLv3+.\n\nThis means that you can port an Open Source application to Cygwin, and\ndistribute that executable as if it didn't include a copy of\nlibcygwin.a linked into it. Note that this does not apply to the\nCygwin DLL itself. If you distribute a (possibly modified) version of\nthe Cygwin DLL, you must adhere to the terms of GPLv3+, including the\nrequirement to provide sources for the Cygwin DLL, unless you have obtained\na special Cygwin license to distribute the Cygwin DLL in only its binary\nform (see below).\n\nSee http://www.opensource.org/docs/osd/ for the precise Open Source\nDefinition referenced above.\n\n\n2. Files Excluded from GPL Coverage.\n\nRed Hat grants you permission to distribute Cygwin with the following\nfiles, which are not considered part of Cygwin and are not governed by\nGPLv3+, in source or binary form.\n\nwinsup\\testsuite\\winsup.api\\msgtest.c\nwinsup\\testsuite\\winsup.api\\semtest.c\nwinsup\\testsuite\\winsup.api\\shmtest.c\n\nRed Hat grants you permission to link or combine code in Cygwin with\ncode in or corresponding to the following files, which are not\nconsidered part of Cygwin and are not governed by GPLv3+, and to\ndistribute such combinations under terms of your choice, provided that\nsuch terms are otherwise consistent with the application of GPLv3+ to\nCygwin itself. You must comply with GPLv3+ with respect to all\nportions of such combinations other than those that correspond to or\nare derived from such non-Cygwin code but which do not correspond to\nor are not derived from Cygwin itself.\n\nwinsup\\cygserver\\sysv_shm.cc\n\n\n3. Alternative License. \n\nRed Hat sells a special Cygwin License for customers who are unable to\nprovide their application in open source code form. For more\ninformation, please see: http://www.redhat.com/software/cygwin/, or call\n+1-866-2REDHAT ext. 45300 (toll-free in the US).\n\nOutside the US call your regional Red Hat office, see\nhttp://www.redhat.com/about/contact/ww/", + "json": "gpl-3.0-cygwin.json", + "yaml": "gpl-3.0-cygwin.yml", + "html": "gpl-3.0-cygwin.html", + "license": "gpl-3.0-cygwin.LICENSE" + }, + { + "license_key": "gpl-3.0-font", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "GNU FreeFont License\n\nFree UCS scalable fonts 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.\n\nThe fonts are distributed in the hope that they 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.\n\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAs a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.", + "json": "gpl-3.0-font.json", + "yaml": "gpl-3.0-font.yml", + "html": "gpl-3.0-font.html", + "license": "gpl-3.0-font.LICENSE" + }, + { + "license_key": "gpl-3.0-gcc", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-3.0-with-GCC-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This program is free software: you can redistribute it and/or modify it under\nthe terms of the GNU General Public License as published by the Free Software\nFoundation, either version 3 of the License, or (at your option) any later\nversion.\n\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with\nthis program. If not, see .\n\nGCC RUNTIME LIBRARY EXCEPTION\n\nVersion 3.1, 31 March 2009\n\nCopyright \u00a9 2009 Free Software Foundation, Inc. \n\nEveryone is permitted to copy and distribute verbatim copies of this license\ndocument, but changing it is not allowed.\n\nThis GCC Runtime Library Exception (\"Exception\") is an additional permission\nunder section 7 of the GNU General Public License, version 3 (\"GPLv3\"). It\napplies to a given file (the \"Runtime Library\") that bears a notice placed by\nthe copyright holder of the file stating that the file is governed by GPLv3\nalong with this Exception.\n\nWhen you use GCC to compile a program, GCC may combine portions of certain GCC\nheader files and runtime libraries with the compiled program. The purpose of\nthis Exception is to allow compilation of non-GPL (including proprietary)\nprograms to use, in this way, the header files and runtime libraries covered by\nthis Exception.\n\n0. Definitions.\n\nA file is an \"Independent Module\" if it either requires the Runtime Library for\nexecution after a Compilation Process, or makes use of an interface provided by\nthe Runtime Library, but is not otherwise based on the Runtime Library.\n\n\"GCC\" means a version of the GNU Compiler Collection, with or without\nmodifications, governed by version 3 (or a specified later version) of the GNU\nGeneral Public License (GPL) with the option of using any subsequent versions\npublished by the FSF.\n\n\"GPL-compatible Software\" is software whose conditions of propagation,\nmodification and use would permit combination with GCC in accord with the\nlicense of GCC.\n\n\"Target Code\" refers to output from any compiler for a real or virtual target\nprocessor architecture, in executable form or suitable for input to an\nassembler, loader, linker and/or execution phase. Notwithstanding that, Target\nCode does not include data in any format that is used as a compiler intermediate\nrepresentation, or used for producing a compiler intermediate representation.\n\nThe \"Compilation Process\" transforms code entirely represented in non-\nintermediate languages designed for human-written code, and/or in Java Virtual\nMachine byte code, into Target Code. Thus, for example, use of source code\ngenerators and preprocessors need not be considered part of the Compilation\nProcess, since the Compilation Process can be understood as starting with the\noutput of the generators or preprocessors.\n\nA Compilation Process is \"Eligible\" if it is done using GCC, alone or with other\nGPL-compatible software, or if it is done without using any work based on GCC.\nFor example, using non-GPL-compatible Software to optimize any GCC intermediate\nrepresentations would not qualify as an Eligible Compilation Process.\n\n1. Grant of Additional Permission.\n\nYou have permission to propagate a work of Target Code formed by combining the\nRuntime Library with Independent Modules, even if such propagation would\notherwise violate the terms of GPLv3, provided that all Target Code was\ngenerated by Eligible Compilation Processes. You may then convey such a\ncombination under terms of your choice, consistent with the licensing of the\nIndependent Modules.\n\n2. No Weakening of GCC Copyleft.\n\nThe availability of this Exception does not imply any general presumption that\nthird-party software is unaffected by the copyleft requirements of the license\nof GCC.", + "json": "gpl-3.0-gcc.json", + "yaml": "gpl-3.0-gcc.yml", + "html": "gpl-3.0-gcc.html", + "license": "gpl-3.0-gcc.LICENSE" + }, + { + "license_key": "gpl-3.0-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-3.0-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Additional permission under GNU GPL version 3 section 7\n\nIf you modify this Program, or any covered work, by linking or combining it with [name of library] (or a modified version of that library), containing parts covered by the terms of [name of library's license], the licensors of this Program grant you additional permission to convey the resulting work.", + "json": "gpl-3.0-linking-exception.json", + "yaml": "gpl-3.0-linking-exception.yml", + "html": "gpl-3.0-linking-exception.html", + "license": "gpl-3.0-linking-exception.LICENSE" + }, + { + "license_key": "gpl-3.0-linking-source-exception", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-3.0-linking-source-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Additional permission under GNU GPL version 3 section 7\n\nIf you modify this Program, or any covered work, by linking or combining it with [name of library] (or a modified version of that library), containing parts covered by the terms of [name of library's license], the licensors of this Program grant you additional permission to convey the resulting work. {Corresponding Source for a non-source form of such a combination shall include the source code for the parts of [name of library] used as well as that of the covered work.}", + "json": "gpl-3.0-linking-source-exception.json", + "yaml": "gpl-3.0-linking-source-exception.yml", + "html": "gpl-3.0-linking-source-exception.html", + "license": "gpl-3.0-linking-source-exception.LICENSE" + }, + { + "license_key": "gpl-3.0-openbd", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "Open BlueDragon (OpenBD) is distributed under the GNU General Public \nLicense (v3). A copy of this can be found in the COPYING.txt file or\nat http://www.gnu.org/licenses/\n\nAdditional Permission Granted by tagServlet Ltd: \n tagServlet Ltd grants the user the exception to distribute the entire \n Open BlueDragon runtime libraries without the web application (.cfml, .html, \n .js, .css, etc) that Open BlueDragon powers, from itself being licensed\n under the GNU General Public License (v3), as long the entire runtime \n remains intact and includes all license information.\n \n This exception does not overrule the embedded JAR files and where applicable\n the entire Open BlueDragon runtime only, must be available for inspection if \n ever asked, complete with all these copyright and license information.\n \n This applies only to distribution for the purpose of powering end-user CFML\n applications. This exception does not include embedding/linking any part of the \n runtime of Open BlueDragon within any other application other than a Servlet container \n whose sole purpose is to render CFML applications. Linking or usage by any\n Java application (even through CFML), is not permitted.\n \n Any modification, enhancements, linking, to the Open BlueDragon runtime still falls \n under the GNU General Public License (v3).\n\n\n______ Building Prerequisites _______\n\nYou will require the following to be able to build OpenBD from source:\n\n x Java Developers Kit Virtual Machine 1.6\n x Apache Ant (http://ant.apache.org/)\n\nOptional, OpenBD source drop includes an Eclipse project to enable \nbuilding and debugging under the Eclipse IDE (http://www.eclipse.org/). \n\n\n______ Deployment Prerequisites _______\n\nYou will require the following to be able to run OpenBD:\n\n x Java Virtual Machine 1.6\n x J2EE compliant server (ie Jetty, Apache Tomcat, Redhat JBoss)\n\n\n______ External JAR Dependency _______\n\nOpenBD utilises a number of external open source libraries to provide some\nof the functionality contained within. This section details all the \nexternal JAR's associated with building and/or deployment of OpenBD.\n\nPermission under GNU GPL version 3 section 7\n\nIf you modify this Program, or any covered work, by linking or combining \nit with any of the JAR files listed below (or a modified version of that \nlibrary), containing parts covered by the terms of \"Java JAX-RPC\", the \nlicensors of this Program grant you additional permission to convey the\nresulting work.\n\n + activation.jar\n mail.jar\n https://glassfish.dev.java.net/javaee5/mail/\n + commons-dbcp-1.1.jar\n commons-pool-1.1.jar\n commons-codec-1.4.jar\n commons-collections-3.2.1.jar \n commons-discovery.jar\n\t commons-fileupload-1.2.1.jar\n commons-httpclient-3.1bd.jar\n commons-io-1.4.jar\n commons-logging.1.1.1.jar \n commons-vfs.jar\n http://commons.apache.org/ \n + xmlrpc-1.2-b1.jar\n http://ws.apache.org/xmlrpc/\n + jakarta-oro-2.0.8.jar\n http://jakarta.apache.org/oro/\n + servlet23.jar\n http://tomcat.apache.org/\n + javolution.jar\n http://javolution.org/\n + jaxrpc.jar\n https://jax-rpc.dev.java.net/\n + jcommon-1.0.0.jar \n jfreechart-1.0.1.jar \n http://www.jfree.org/\n + lucene-analyzers-3.x.jar\n lucene-core-3.x.jar\n lucene-highlighter-3.x.jar\n lucene-snowball-3.x.jar\n http://lucene.apache.org/\n + PDFBox-0.7.2.jar\n http://www.pdfbox.org/\n + postgresql.jar\n http://www.postgresql.org/\n + saaj.jar\n https://saaj.dev.java.net/\n + webservices.jar\n http://ws.apache.org/axis/\n + wsdl4j.jar\n http://sourceforge.net/projects/wsdl4j\n + h2.jar\n http://www.h2database.com/html/main.html\n + vfs-s3\n http://code.google.com/p/vfs-s3/\n + JetS3\n https://jets3t.dev.java.net/\n + JSON Library [org.json]\n http://www.json.org/java/index.html\n + Oracle 10g JDBC Driver\n http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_10201.html\n http://www.oracle.com/technology/software/popup-license/distribution-license.html\n + Microsoft SQL Server JDBC Driver\n http://www.microsoft.com/downloads/details.aspx?FamilyId=C47053EB-3B64-4794-950D-81E1EC91C1BA\n + jTDS SQL Server Driver\n http://jtds.sourceforge.net/\n http://jtds.sourceforge.net/license.html\n + jericho-html-3.1\n http://jerichohtml.sourceforge.net/doc/index.html\n + flowplayer 3.0.5 Flash Video Player (GPL)\n http://www.flowplayer.org/\n + Yahoo YUI Compressor BSD/RhinoGPL\n yuicompressor-2.4.2\n + Jackson JSON library\n http://jackson.codehaus.org/\n\n______ Special Build JARs _______\n\nOpenBD has had to make certain modifications to existing open source libraries. These\nare available in the ./extra/ folder with everything required to rebuild those library.\n\n + XALAN\n\t xalan-openbd-build.zip\n\t \n\t+ Jackson-1.8.3-openbd.jar\n\t\tSupport for YES|NO boolean\n\n______ Official OpenBD Wiki _______\n\n http://wiki.openbluedragon.org/\n\n______ Official OpenBD Docs _______\n \n http://openbd.org/manual/\n\n______ Support Mailing List _______\n\nYou can subscribe to the public mailing list at:\n\n http://groups.google.com/group/openbd", + "json": "gpl-3.0-openbd.json", + "yaml": "gpl-3.0-openbd.yml", + "html": "gpl-3.0-openbd.html", + "license": "gpl-3.0-openbd.LICENSE" + }, + { + "license_key": "gpl-3.0-plus", + "category": "Copyleft", + "spdx_license_key": "GPL-3.0-or-later", + "other_spdx_license_keys": [ + "GPL-3.0+", + "LicenseRef-GPL-3.0-or-later" + ], + "is_exception": false, + "is_deprecated": false, + "text": "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program. If not, see .\n\n\n GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n.", + "json": "gpl-3.0-plus.json", + "yaml": "gpl-3.0-plus.yml", + "html": "gpl-3.0-plus.html", + "license": "gpl-3.0-plus.LICENSE" + }, + { + "license_key": "gpl-3.0-plus-openssl", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This program is free software: you can redistribute it and/or modify it under\nthe terms of the GNU General Public License as published by the Free Software\nFoundation, either version 3 of the License, or (at your option) any later\nversion.\n\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with\nthis program. If not, see .\n\nIn addition, as a special exception, the copyright holders give permission to\nlink the code of portions of this program with the OpenSSL library under certain\nconditions as described in each individual source file, and distribute linked\ncombinations including the two.\n\nYou must obey the GNU General Public License in all respects for all of the code\nused other than OpenSSL. If you modify file(s) with this exception, you may\nextend this exception to your version of the file(s), but you are not obligated\nto do so. If you do not wish to do so, delete this exception statement from\nyour version. If you delete this exception statement from all source files in\nthe program, then also delete it here.", + "json": "gpl-3.0-plus-openssl.json", + "yaml": "gpl-3.0-plus-openssl.yml", + "html": "gpl-3.0-plus-openssl.html", + "license": "gpl-3.0-plus-openssl.LICENSE" + }, + { + "license_key": "gpl-generic-additional-terms", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gpl-generic-additional-terms", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "", + "json": "gpl-generic-additional-terms.json", + "yaml": "gpl-generic-additional-terms.yml", + "html": "gpl-generic-additional-terms.html", + "license": "gpl-generic-additional-terms.LICENSE" + }, + { + "license_key": "gplcc-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-CC-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "GPL Cooperation Commitment\nVersion 1.0\n\nBefore filing or continuing to prosecute any legal proceeding or claim\n(other than a Defensive Action) arising from termination of a Covered\nLicense, we commit to extend to the person or entity ('you') accused\nof violating the Covered License the following provisions regarding\ncure and reinstatement, taken from GPL version 3. As used here, the\nterm 'this License' refers to the specific Covered License being\nenforced.\n\n However, if you cease all violation of this License, then your\n license from a particular copyright holder is reinstated (a)\n provisionally, unless and until the copyright holder explicitly\n and finally terminates your license, and (b) permanently, if the\n copyright holder fails to notify you of the violation by some\n reasonable means prior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\n reinstated permanently if the copyright holder notifies you of the\n violation by some reasonable means, this is the first time you\n have received notice of violation of this License (for any work)\n from that copyright holder, and you cure the violation prior to 30\n days after your receipt of the notice.\n\nWe intend this Commitment to be irrevocable, and binding and\nenforceable against us and assignees of or successors to our\ncopyrights.\n\nDefinitions\n\n'Covered License' means the GNU General Public License, version 2\n(GPLv2), the GNU Lesser General Public License, version 2.1\n(LGPLv2.1), or the GNU Library General Public License, version 2\n(LGPLv2), all as published by the Free Software Foundation.\n\n'Defensive Action' means a legal proceeding or claim that We bring\nagainst you in response to a prior proceeding or claim initiated by\nyou or your affiliate.\n\n'We' means each contributor to this repository as of the date of\ninclusion of this file, including subsidiaries of a corporate\ncontributor.\n\nThis work is available under a Creative Commons Attribution-ShareAlike\n4.0 International license (https://creativecommons.org/licenses/by-sa/4.0/).", + "json": "gplcc-1.0.json", + "yaml": "gplcc-1.0.yml", + "html": "gplcc-1.0.html", + "license": "gplcc-1.0.LICENSE" + }, + { + "license_key": "graphics-gems", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-graphics-gems", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LICENSE\n\nThis code repository predates the concept of Open Source, and predates most\nlicenses along such lines. As such, the official license truly is:\n\nEULA: The Graphics Gems code is copyright-protected. In other words, you cannot\nclaim the text of the code as your own and resell it. \n\nUsing the code is permitted in any program, product, or library, non-commercial\nor commercial. Giving credit is not required, though is a nice gesture.\n\nThe code comes as-is, and if there are any flaws or problems with any Gems code,\nnobody involved with Gems - authors, editors, publishers, or webmasters - are to\nbe held responsible. Basically, don't be a jerk, and remember that anything free\ncomes with no guarantee.", + "json": "graphics-gems.json", + "yaml": "graphics-gems.yml", + "html": "graphics-gems.html", + "license": "graphics-gems.LICENSE" + }, + { + "license_key": "greg-roelofs", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-greg-roelofs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " This software is provided \"as is,\" without warranty of any kind,\n express or implied. In no event shall the author or contributors\n be held liable for any damages arising in any way from the use of\n this software.\n\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute\n it freely, subject to the following restrictions:\n\n 1. Redistributions of source code must retain the above copyright\n notice, disclaimer, and this list of conditions.\n\n 2. Redistributions in binary form must reproduce the above copyright\n notice, disclaimer, and this list of conditions in the documentation\n and/or other materials provided with the distribution.\n\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgment:\n\n This product includes software developed by Greg Roelofs\n and contributors for the book, \"PNG: The Definitive Guide,\"\n published by O'Reilly and Associates.", + "json": "greg-roelofs.json", + "yaml": "greg-roelofs.yml", + "html": "greg-roelofs.html", + "license": "greg-roelofs.LICENSE" + }, + { + "license_key": "gregory-pietsch", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gregory-pietsch", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This file and the accompanying getopt.c implementation file are hereby placed\nin the public domain without restrictions. Just give the auth credit, don't\nclaim you wrote it or prevent anyone else from using it.", + "json": "gregory-pietsch.json", + "yaml": "gregory-pietsch.yml", + "html": "gregory-pietsch.html", + "license": "gregory-pietsch.LICENSE" + }, + { + "license_key": "gsoap-1.3a", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-gsoap-1.3a", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "****** gSOAP Public License ******\n**** Version 1.3a ****\n\nThe gSOAP public license is derived from the Mozilla Public License (MPL1.1).\nThe sections that were deleted from the original MPL1.1 text are 1.0.1, 2.1.\n(c),(d), 2.2.(c),(d), 8.2.(b), 10, and 11. Section 3.8 was added. The modified\nsections are 2.1.(b), 2.2.(b), 3.2 (simplified), 3.5 (deleted the last\nsentence), and 3.6 (simplified).\n***** 1 DEFINITIONS. *****\n 1.0.1.\n 1.1. \"Contributor\"\n means each entity that creates or contributes to the creation of\n Modifications.\n 1.2. \"Contributor Version\"\n means the combination of the Original Code, prior Modifications used by a\n Contributor, and the Modifications made by that particular Contributor.\n 1.3. \"Covered Code\"\n means the Original Code, or Modifications or the combination of the\n Original Code, and Modifications, in each case including portions\n thereof.\n 1.4. \"Electronic Distribution Mechanism\"\n means a mechanism generally accepted in the software development\n community for the electronic transfer of data.\n 1.5. \"Executable\"\n means Covered Code in any form other than Source Code.\n 1.6. \"Initial Developer\"\n means the individual or entity identified as the Initial Developer in the\n Source Code notice required by Exhibit A.\n 1.7. \"Larger Work\"\n means a work which combines Covered Code or portions thereof with code\n not governed by the terms of this License.\n 1.8. \"License\"\n means this document.\n 1.8.1. \"Licensable\"\n means having the right to grant, to the maximum extent possible, whether\n at the time of the initial grant or subsequently acquired, any and all of\n the rights conveyed herein.\n 1.9. \"Modifications\"\n means any addition to or deletion from the substance or structure of\n either the Original Code or any previous Modifications. When Covered Code\n is released as a series of files, a Modification is:\n A.\n Any addition to or deletion from the contents of a file containing\n Original Code or previous Modifications.\n B.\n Any new file that contains any part of the Original Code, or\n previous Modifications.\n 1.10. \"Original Code\"\n means Source Code of computer software code which is described in the\n Source Code notice required by Exhibit A as Original Code, and which, at\n the time of its release under this License is not already Covered Code\n governed by this License.\n 1.10.1. \"Patent Claims\"\n means any patent claim(s), now owned or hereafter acquired, including\n without limitation, method, process, and apparatus claims, in any patent\n Licensable by grantor.\n 1.11. \"Source Code\"\n means the preferred form of the Covered Code for making modifications to\n it, including all modules it contains, plus any associated interface\n definition files, scripts used to control compilation and installation of\n an Executable, or source code differential comparisons against either the\n Original Code or another well known, available Covered Code of the\n Contributor's choice. The Source Code can be in a compressed or archival\n form, provided the appropriate decompression or de-archiving software is\n widely available for no charge.\n 1.12. \"You\" (or \"Your\")\n means an individual or a legal entity exercising rights under, and\n complying with all of the terms of, this License or a future version of\n this License issued under Section 6.1. For legal entities, \"You\" includes\n any entity which controls, is controlled by, or is under common control\n with You. For purposes of this definition, \"control\" means (a) the power,\n direct or indirect, to cause the direction or management of such entity,\n whether by contract or otherwise, or (b) ownership of more than fifty\n percent (50%) of the outstanding shares or beneficial ownership of such\n entity.\n***** 2 SOURCE CODE LICENSE. *****\n 2.1. The Initial Developer Grant.\n\n The Initial Developer hereby grants You a world-wide, royalty-free, non-\n exclusive license, subject to third party intellectual property claims:\n (a)\n under intellectual property rights (other than patent or trademark)\n Licensable by Initial Developer to use, reproduce, modify, display,\n perform, sublicense and distribute the Original Code (or portions\n thereof) with or without Modifications, and/or as part of a Larger\n Work; and\n (b)\n under patents now or hereafter owned or controlled by Initial\n Developer, to make, have made, use and sell (\"offer to sell and\n import\") the Original Code, Modifications, or portions thereof, but\n solely to the extent that any such patent is reasonably necessary\n to enable You to utilize, alone or in combination with other\n software, the Original Code, Modifications, or any combination or\n portions thereof.\n (c)\n (d)\n\n 2.2. Contributor Grant.\n\n Subject to third party intellectual property claims, each Contributor\n hereby grants You a world-wide, royalty-free, non-exclusive license\n (a)\n under intellectual property rights (other than patent or trademark)\n Licensable by Contributor, to use, reproduce, modify, display,\n perform, sublicense and distribute the Modifications created by\n such Contributor (or portions thereof) either on an unmodified\n basis, with other Modifications, as Covered Code and/or as part of\n a Larger Work; and\n (b)\n under patents now or hereafter owned or controlled by Contributor,\n to make, have made, use and sell (\"offer to sell and import\") the\n Contributor Version (or portions thereof), but solely to the extent\n that any such patent is reasonably necessary to enable You to\n utilize, alone or in combination with other software, the\n Contributor Version (or portions thereof).\n (c)\n (d)\n***** 3 DISTRIBUTION OBLIGATIONS. *****\n 3.1. Application of License.\n\n The Modifications which You create or to which You contribute are\n governed by the terms of this License, including without limitation\n Section 2.2. The Source Code version of Covered Code may be distributed\n only under the terms of this License or a future version of this License\n released under Section 6.1, and You must include a copy of this License\n with every copy of the Source Code You distribute. You may not offer or\n impose any terms on any Source Code version that alters or restricts the\n applicable version of this License or the recipients' rights hereunder.\n However, You may include an additional document offering the additional\n rights described in Section 3.5.\n\n 3.2. Availability of Source Code.\n\n Any Modification created by You will be provided to the Initial Developer\n in Source Code form and are subject to the terms of the License.\n\n 3.3. Description of Modifications.\n\n You must cause all Covered Code to which You contribute to contain a file\n documenting the changes You made to create that Covered Code and the date\n of any change. You must include a prominent statement that the\n Modification is derived, directly or indirectly, from Original Code\n provided by the Initial Developer and including the name of the Initial\n Developer in (a) the Source Code, and (b) in any notice in an Executable\n version or related documentation in which You describe the origin or\n ownership of the Covered Code.\n\n 3.4. Intellectual Property Matters.\n (a) Third Party Claims.\n If Contributor has knowledge that a license under a third party's\n intellectual property rights is required to exercise the rights\n granted by such Contributor under Sections 2.1 or 2.2, Contributor\n must include a text file with the Source Code distribution titled\n \"LEGAL\" which describes the claim and the party making the claim in\n sufficient detail that a recipient will know whom to contact. If\n Contributor obtains such knowledge after the Modification is made\n available as described in Section 3.2, Contributor shall promptly\n modify the LEGAL file in all copies Contributor makes available\n thereafter and shall take other steps (such as notifying\n appropriate mailing lists or newsgroups) reasonably calculated to\n inform those who received the Covered Code that new knowledge has\n been obtained.\n (b) Contributor APIs.\n If Contributor's Modifications include an application programming\n interface and Contributor has knowledge of patent licenses which\n are reasonably necessary to implement that API, Contributor must\n also include this information in the LEGAL file.\n (c) Representations.\n Contributor represents that, except as disclosed pursuant to\n Section 3.4(a) above, Contributor believes that Contributor's\n Modifications are Contributor's original creation(s) and/or\n Contributor has sufficient rights to grant the rights conveyed by\n this License.\n\n 3.5. Required Notices.\n\n You must duplicate the notice in Exhibit A in each file of the Source\n Code. If it is not possible to put such notice in a particular Source\n Code file due to its structure, then You must include such notice in a\n location (such as a relevant directory) where a user would be likely to\n look for such a notice. If You created one or more Modification(s) You\n may add your name as a Contributor to the notice described in Exhibit A.\n You must also duplicate this License in any documentation for the Source\n Code where You describe recipients' rights or ownership rights relating\n to Covered Code. You may choose to offer, and to charge a fee for,\n warranty, support, indemnity or liability obligations to one or more\n recipients of Covered Code. However, You may do so only on Your own\n behalf, and not on behalf of the Initial Developer or any Contributor.\n\n 3.6. Distribution of Executable Versions.\n\n You may distribute Covered Code in Executable form only if the\n requirements of Section 3.1-3.5 have been met for that Covered Code. You\n may distribute the Executable version of Covered Code or ownership rights\n under a license of Your choice, which may contain terms different from\n this License, provided that You are in compliance with the terms of this\n License and that the license for the Executable version does not attempt\n to limit or alter the recipient's rights in the Source Code version from\n the rights set forth in this License. If You distribute the Executable\n version under a different license You must make it absolutely clear that\n any terms which differ from this License are offered by You alone, not by\n the Initial Developer or any Contributor. If you distribute executable\n versions containing Covered Code as part of a product, you must reproduce\n the notice in Exhibit B in the documentation and/or other materials\n provided with the product.\n\n 3.7. Larger Works.\n\n You may create a Larger Work by combining Covered Code with other code\n not governed by the terms of this License and distribute the Larger Work\n as a single product. In such a case, You must make sure the requirements\n of this License are fulfilled for the Covered Code.\n\n 3.8. Restrictions.\n\n You may not remove any product identification, copyright, proprietary\n notices or labels from gSOAP.\n***** 4 INABILITY TO COMPLY DUE TO STATUTE OR REGULATION. *****\nIf it is impossible for You to comply with any of the terms of this License\nwith respect to some or all of the Covered Code due to statute, judicial order,\nor regulation then You must: (a) comply with the terms of this License to the\nmaximum extent possible; and (b) describe the limitations and the code they\naffect. Such description must be included in the LEGAL file described in\nSection 3.4 and must be included with all distributions of the Source Code.\nExcept to the extent prohibited by statute or regulation, such description must\nbe sufficiently detailed for a recipient of ordinary skill to be able to\nunderstand it.\n***** 5 APPLICATION OF THIS LICENSE. *****\nThis License applies to code to which the Initial Developer has attached the\nnotice in Exhibit A and to related Covered Code.\n***** 6 VERSIONS OF THE LICENSE. *****\n 6.1. New Versions.\n\n Grantor may publish revised and/or new versions of the License from time\n to time. Each version will be given a distinguishing version number.\n\n 6.2. Effect of New Versions.\n\n Once Covered Code has been published under a particular version of the\n License, You may always continue to use it under the terms of that\n version. You may also choose to use such Covered Code under the terms of\n any subsequent version of the License.\n\n 6.3. Derivative Works.\n\n If You create or use a modified version of this License (which you may\n only do in order to apply it to code which is not already Covered Code\n governed by this License), You must (a) rename Your license so that the\n phrase \"gSOAP\" or any confusingly similar phrase do not appear in your\n license (except to note that your license differs from this License) and\n (b) otherwise make it clear that Your version of the license contains\n terms which differ from the gSOAP Public License. (Filling in the name of\n the Initial Developer, Original Code or Contributor in the notice\n described in Exhibit A shall not of themselves be deemed to be\n modifications of this License.)\n***** 7 DISCLAIMER OF WARRANTY. *****\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT\nWARRANTY OF ANY KIND, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, WITHOUT\nLIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, OF FITNESS FOR A\nPARTICULAR PURPOSE, NONINFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY\nRIGHTS, AND ANY WARRANTY THAT MAY ARISE BY REASON OF TRADE USAGE, CUSTOM, OR\nCOURSE OF DEALING. WITHOUT LIMITING THE FOREGOING, YOU ACKNOWLEDGE THAT THE\nSOFTWARE IS PROVIDED \"AS IS\" AND THAT THE AUTHORS DO NOT WARRANT THE SOFTWARE\nWILL RUN UNINTERRUPTED OR ERROR FREE. LIMITED LIABILITY THE ENTIRE RISK AS TO\nRESULTS AND PERFORMANCE OF THE SOFTWARE IS ASSUMED BY YOU. UNDER NO\nCIRCUMSTANCES WILL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL,\nEXEMPLARY OR CONSEQUENTIAL DAMAGES OF ANY KIND OR NATURE WHATSOEVER, WHETHER\nBASED ON CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR\nOTHERWISE, ARISING OUT OF OR IN ANY WAY RELATED TO THE SOFTWARE, EVEN IF THE\nAUTHORS HAVE BEEN ADVISED ON THE POSSIBILITY OF SUCH DAMAGE OR IF SUCH DAMAGE\nCOULD HAVE BEEN REASONABLY FORESEEN, AND NOTWITHSTANDING ANY FAILURE OF\nESSENTIAL PURPOSE OF ANY EXCLUSIVE REMEDY PROVIDED. SUCH LIMITATION ON DAMAGES\nINCLUDES, BUT IS NOT LIMITED TO, DAMAGES FOR LOSS OF GOODWILL, LOST PROFITS,\nLOSS OF DATA OR SOFTWARE, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION OR\nIMPAIRMENT OF OTHER GOODS. IN NO EVENT WILL THE AUTHORS BE LIABLE FOR THE COSTS\nOF PROCUREMENT OF SUBSTITUTE SOFTWARE OR SERVICES. YOU ACKNOWLEDGE THAT THIS\nSOFTWARE IS NOT DESIGNED FOR USE IN ON-LINE EQUIPMENT IN HAZARDOUS ENVIRONMENTS\nSUCH AS OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR CONTROL, OR\nLIFE-CRITICAL APPLICATIONS. THE AUTHORS EXPRESSLY DISCLAIM ANY LIABILITY\nRESULTING FROM USE OF THE SOFTWARE IN ANY SUCH ON-LINE EQUIPMENT IN HAZARDOUS\nENVIRONMENTS AND ACCEPTS NO LIABILITY IN RESPECT OF ANY ACTIONS OR CLAIMS BASED\nON THE USE OF THE SOFTWARE IN ANY SUCH ON-LINE EQUIPMENT IN HAZARDOUS\nENVIRONMENTS BY YOU. FOR PURPOSES OF THIS PARAGRAPH, THE TERM \"LIFE-CRITICAL\nAPPLICATION\" MEANS AN APPLICATION IN WHICH THE FUNCTIONING OR MALFUNCTIONING OF\nTHE SOFTWARE MAY RESULT DIRECTLY OR INDIRECTLY IN PHYSICAL INJURY OR LOSS OF\nHUMAN LIFE. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS\nLICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS\nDISCLAIMER.\n***** 8 TERMINATION. *****\n 8.1.\n This License and the rights granted hereunder will terminate\n automatically if You fail to comply with terms herein and fail to cure\n such breach within 30 days of becoming aware of the breach. All\n sublicenses to the Covered Code which are properly granted shall survive\n any termination of this License. Provisions which, by their nature, must\n remain in effect beyond the termination of this License shall survive.\n 8.2.\n 8.3.\n If You assert a patent infringement claim against Participant alleging\n that such Participant's Contributor Version directly or indirectly\n infringes any patent where such claim is resolved (such as by license or\n settlement) prior to the initiation of patent infringement litigation,\n then the reasonable value of the licenses granted by such Participant\n under Sections 2.1 or 2.2 shall be taken into account in determining the\n amount or value of any payment or license.\n 8.4.\n In the event of termination under Sections 8.1 or 8.2 above, all end user\n license agreements (excluding distributors and resellers) which have been\n validly granted by You or any distributor hereunder prior to termination\n shall survive termination.\n***** 9 LIMITATION OF LIABILITY. *****\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING\nNEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY\nOTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY\nOF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL,\nOR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION,\nDAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION,\nOR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL\nHAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF\nLIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING\nFROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH\nLIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF\nINCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT\nAPPLY TO YOU.\n***** 10 U.S. GOVERNMENT END USERS. *****\n***** 11 MISCELLANEOUS. *****\n***** 12 RESPONSIBILITY FOR CLAIMS. *****\nAs between Initial Developer and the Contributors, each party is responsible\nfor claims and damages arising, directly or indirectly, out of its utilization\nof rights under this License and You agree to work with Initial Developer and\nContributors to distribute such responsibility on an equitable basis. Nothing\nherein is intended or shall be deemed to constitute any admission of liability.\n***** EXHIBIT A. *****\n\"The contents of this file are subject to the gSOAP Public License Version 1.3\n(the \"License\"); you may not use this file except in compliance with the\nLicense. You may obtain a copy of the License at\n http://genivia.com/Products/gsoap/license.pdf\nMore information on licensing options, support contracts, and consulting can be\nfound at\n http://genivia.com/Products/gsoap/contract.html\nSoftware distributed under the License is distributed on an \"AS IS\" basis,\nWITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for\nthe specific language governing rights and limitations under the License.\nThe Original Code of the gSOAP Software is: stdsoap.h, stdsoap2.h, stdsoap.c,\nstdsoap2.c, stdsoap.cpp, stdsoap2.cpp, soapcpp2.h, soapcpp2.c, soapcpp2_lex.l,\nsoapcpp2_yacc.y, error2.h, error2.c, symbol2.c, init2.c, soapdoc2.html, and\nsoapdoc2.pdf, httpget.h, httpget.c, stl.h, stldeque.h, stllist.h, stlvector.h,\nstlset.h.\nThe Initial Developer of the Original Code is Robert A. van Engelen. Portions\ncreated by Robert A. van Engelen are Copyright (C) 2001-2004 Robert A. van\nEngelen, Genivia inc. All Rights Reserved.\nContributor(s):\n \" .\"\n[Note: The text of this Exhibit A may differ slightly form the text of the\nnotices in the Source Code files of the Original code. You should use the text\nof this Exhibit A rather than the text found in the Original Code Source Code\nfor Your Modifications.]\n***** EXHIBIT B. *****\n\"Part of the software embedded in this product is gSOAP software.\nPortions created by gSOAP are Copyright (C) 2001-2004 Robert A. van Engelen,\nGenivia inc. All Rights Reserved.\nTHE SOFTWARE IN THIS PRODUCT WAS IN PART PROVIDED BY GENIVIA INC AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"", + "json": "gsoap-1.3a.json", + "yaml": "gsoap-1.3a.yml", + "html": "gsoap-1.3a.html", + "license": "gsoap-1.3a.LICENSE" + }, + { + "license_key": "gsoap-1.3b", + "category": "Copyleft Limited", + "spdx_license_key": "gSOAP-1.3b", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "gSOAP Public License\n\nVersion 1.3b\n\nThe gSOAP public license is derived from the Mozilla Public License (MPL1.1).\nThe sections that were deleted from the original MPL1.1 text are 1.0.1, 2.1.(c),(d),\n2.2.(c),(d), 8.2.(b), 10, and 11. Section 3.8 was added. The modified sections\nare 2.1.(b), 2.2.(b), 3.2 (simplified), 3.5 (deleted the last sentence), and\n3.6 (simplified).\n\nThis license applies to the gSOAP software package, with the exception of the\nsoapcpp2 and wsdl2h source code located in gsoap/src and gsoap/wsdl, all code\ngenerated by soapcpp2 and wsdl2h, the UDDI source code gsoap/uddi2, and the Web\nserver sample source code samples/webserver. To use any of these software tools\nand components commercially, a commercial license is required and can be\nobtained from www.genivia.com.\n\n1 DEFINITIONS.\n\n1.0.1.\n1.1. \"Contributor\"\nmeans each entity that creates or contributes to the creation of Modifications.\n1.2. \"Contributor Version\"\nmeans the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor.\n1.3. \"Covered Code\"\nmeans the Original Code, or Modifications or the combination of the Original Code, and Modifications, in each case including portions thereof.\n1.4. \"Electronic Distribution Mechanism\"\nmeans a mechanism generally accepted in the software development community for the electronic transfer of data.\n1.5. \"Executable\"\nmeans Covered Code in any form other than Source Code.\n1.6. \"Initial Developer\"\nmeans the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A.\n1.7. \"Larger Work\"\nmeans a work which combines Covered Code or portions thereof with code not governed by the terms of this License.\n1.8. \"License\"\nmeans this document.\n1.8.1. \"Licensable\"\nmeans having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein.\n1.9. \"Modifications\"\nmeans any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is:\nA.\nAny addition to or deletion from the contents of a file containing Original Code or previous Modifications.\nB.\nAny new file that contains any part of the Original Code, or previous Modifications.\n1.10. \"Original Code\"\nmeans Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License.\n1.10.1. \"Patent Claims\"\nmeans any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor.\n1.11. \"Source Code\"\nmeans the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge.\n1.12. \"You\" (or \"Your\")\nmeans an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, \"You\" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, \"control\" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n2 SOURCE CODE LICENSE.\n\n2.1. The Initial Developer Grant.\n\nThe Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims:\n(a)\nunder intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and\n(b)\nunder patents now or hereafter owned or controlled by Initial Developer, to make, have made, use and sell (\"offer to sell and import\") the Original Code, Modifications, or portions thereof, but solely to the extent that any such patent is reasonably necessary to enable You to utilize, alone or in combination with other software, the Original Code, Modifications, or any combination or portions thereof.\n(c)\n(d)\n\n2.2. Contributor Grant.\n\nSubject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license\n(a)\nunder intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and\n(b)\nunder patents now or hereafter owned or controlled by Contributor, to make, have made, use and sell (\"offer to sell and import\") the Contributor Version (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to utilize, alone or in combination with other software, the Contributor Version (or portions thereof).\n(c)\n(d)\n3 DISTRIBUTION OBLIGATIONS.\n\n3.1. Application of License.\n\nThe Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. \n\n3.2. Availability of Source Code.\n\nAny Modification created by You will be provided to the Initial Developer in Source Code form and are subject to the terms of the License. \n\n3.3. Description of Modifications.\n\nYou must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. \n\n3.4. Intellectual Property Matters.\n(a) Third Party Claims.\nIf Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled \"LEGAL\" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained.\n(b) Contributor APIs.\nIf Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file.\n(c) Representations.\nContributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License.\n\n3.5. Required Notices.\n\nYou must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. \n\n3.6. Distribution of Executable Versions.\n\nYou may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. If you distribute executable versions containing Covered Code as part of a product, you must reproduce the notice in Exhibit B in the documentation and/or other materials provided with the product. \n\n3.7. Larger Works.\n\nYou may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. \n\n3.8. Restrictions.\n\nYou may not remove any product identification, copyright, proprietary notices or labels from gSOAP.\n4 INABILITY TO COMPLY DUE TO STATUTE OR REGULATION.\n\nIf it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n5 APPLICATION OF THIS LICENSE.\n\nThis License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code.\n6 VERSIONS OF THE LICENSE.\n\n6.1. New Versions.\n\nGrantor may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. \n\n6.2. Effect of New Versions.\n\nOnce Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License. \n\n6.3. Derivative Works.\n\nIf You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrase \"gSOAP\" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the gSOAP Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.)\n7 DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY RIGHTS, AND ANY WARRANTY THAT MAY ARISE BY REASON OF TRADE USAGE, CUSTOM, OR COURSE OF DEALING. WITHOUT LIMITING THE FOREGOING, YOU ACKNOWLEDGE THAT THE SOFTWARE IS PROVIDED \"AS IS\" AND THAT THE AUTHORS DO NOT WARRANT THE SOFTWARE WILL RUN UNINTERRUPTED OR ERROR FREE. LIMITED LIABILITY THE ENTIRE RISK AS TO RESULTS AND PERFORMANCE OF THE SOFTWARE IS ASSUMED BY YOU. UNDER NO CIRCUMSTANCES WILL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES OF ANY KIND OR NATURE WHATSOEVER, WHETHER BASED ON CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, ARISING OUT OF OR IN ANY WAY RELATED TO THE SOFTWARE, EVEN IF THE AUTHORS HAVE BEEN ADVISED ON THE POSSIBILITY OF SUCH DAMAGE OR IF SUCH DAMAGE COULD HAVE BEEN REASONABLY FORESEEN, AND NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY EXCLUSIVE REMEDY PROVIDED. SUCH LIMITATION ON DAMAGES INCLUDES, BUT IS NOT LIMITED TO, DAMAGES FOR LOSS OF GOODWILL, LOST PROFITS, LOSS OF DATA OR SOFTWARE, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION OR IMPAIRMENT OF OTHER GOODS. IN NO EVENT WILL THE AUTHORS BE LIABLE FOR THE COSTS OF PROCUREMENT OF SUBSTITUTE SOFTWARE OR SERVICES. YOU ACKNOWLEDGE THAT THIS SOFTWARE IS NOT DESIGNED FOR USE IN ON-LINE EQUIPMENT IN HAZARDOUS ENVIRONMENTS SUCH AS OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR CONTROL, OR LIFE-CRITICAL APPLICATIONS. THE AUTHORS EXPRESSLY DISCLAIM ANY LIABILITY RESULTING FROM USE OF THE SOFTWARE IN ANY SUCH ON-LINE EQUIPMENT IN HAZARDOUS ENVIRONMENTS AND ACCEPTS NO LIABILITY IN RESPECT OF ANY ACTIONS OR CLAIMS BASED ON THE USE OF THE SOFTWARE IN ANY SUCH ON-LINE EQUIPMENT IN HAZARDOUS ENVIRONMENTS BY YOU. FOR PURPOSES OF THIS PARAGRAPH, THE TERM \"LIFE-CRITICAL APPLICATION\" MEANS AN APPLICATION IN WHICH THE FUNCTIONING OR MALFUNCTIONING OF THE SOFTWARE MAY RESULT DIRECTLY OR INDIRECTLY IN PHYSICAL INJURY OR LOSS OF HUMAN LIFE. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n8 TERMINATION.\n\n8.1.\nThis License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.\n8.2.\n8.3.\nIf You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license.\n8.4.\nIn the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination.\n9 LIMITATION OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n10 U.S. GOVERNMENT END USERS.\n\n11 MISCELLANEOUS.\n\n12 RESPONSIBILITY FOR CLAIMS.\n\nAs between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\nEXHIBIT A.\n\n\"The contents of this file are subject to the gSOAP Public License Version 1.3 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\nhttp://www.cs.fsu.edu/ engelen/soaplicense.html\nSoftware distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.\nThe Original Code of the gSOAP Software is: stdsoap.h, stdsoap2.h, stdsoap.c, stdsoap2.c, stdsoap.cpp, stdsoap2.cpp, soapcpp2.h, soapcpp2.c, soapcpp2_lex.l, soapcpp2_yacc.y, error2.h, error2.c, symbol2.c, init2.c, soapdoc2.html, and soapdoc2.pdf, httpget.h, httpget.c, stl.h, stldeque.h, stllist.h, stlvector.h, stlset.h.\nThe Initial Developer of the Original Code is Robert A. van Engelen. Portions created by Robert A. van Engelen are Copyright (C) 2001-2004 Robert A. van Engelen, Genivia inc. All Rights Reserved.\nContributor(s):\n\" .\"\n[Note: The text of this Exhibit A may differ slightly form the text of the notices in the Source Code files of the Original code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.]\nEXHIBIT B.\n\n\"Part of the software embedded in this product is gSOAP software.\nPortions created by gSOAP are Copyright (C) 2001-2009 Robert A. van Engelen, Genivia inc. All Rights Reserved.\nTHE SOFTWARE IN THIS PRODUCT WAS IN PART PROVIDED BY GENIVIA INC 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.\"", + "json": "gsoap-1.3b.json", + "yaml": "gsoap-1.3b.yml", + "html": "gsoap-1.3b.html", + "license": "gsoap-1.3b.LICENSE" + }, + { + "license_key": "gstreamer-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-gstreamer-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "The GNOME Music authors hereby grant permission for non-GPL compatible\nGStreamer plugins to be used and distributed together with GStreamer\nand GNOME Music. This permission is above and beyond the permissions\ngranted by the GPL license by which GNOME Music is covered. If you\nmodify this code, you may extend this exception to your version of the\ncode, but you are not obligated to do so. If you do not wish to do so,\ndelete this exception statement from your version.", + "json": "gstreamer-exception-2.0.json", + "yaml": "gstreamer-exception-2.0.yml", + "html": "gstreamer-exception-2.0.html", + "license": "gstreamer-exception-2.0.LICENSE" + }, + { + "license_key": "gstreamer-exception-2005", + "category": "Permissive", + "spdx_license_key": "GStreamer-exception-2005", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "The Totem project hereby grant permission for non-gpl compatible GStreamer\nplugins to be used and distributed together with GStreamer and Totem.\nThis permission are above and beyond the permissions granted by the GPL license\nTotem is covered by.", + "json": "gstreamer-exception-2005.json", + "yaml": "gstreamer-exception-2005.yml", + "html": "gstreamer-exception-2005.html", + "license": "gstreamer-exception-2005.LICENSE" + }, + { + "license_key": "gstreamer-exception-2008", + "category": "Permissive", + "spdx_license_key": "GStreamer-exception-2008", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "This project hereby grants permission for non-GPL compatible GStreamer plugins\nto be used and distributed together with GStreamer and this project. This\npermission is above and beyond the permissions granted by the GPL license by\nwhich this project is covered. If you modify this code, you may extend this\nexception to your version of the code, but you are not obligated to do so.\nIf you do not wish to do so, delete this exception statement from your version.", + "json": "gstreamer-exception-2008.json", + "yaml": "gstreamer-exception-2008.yml", + "html": "gstreamer-exception-2008.html", + "license": "gstreamer-exception-2008.LICENSE" + }, + { + "license_key": "guile-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-guile-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "The exception is that, if you link the GUILE library with other files to produce\nan executable, this does not by itself cause the resulting executable to be\ncovered by the GNU General Public License. Your use of that executable is in no\nway restricted on account of linking the GUILE library code into it.", + "json": "guile-exception-2.0.json", + "yaml": "guile-exception-2.0.yml", + "html": "guile-exception-2.0.html", + "license": "guile-exception-2.0.LICENSE" + }, + { + "license_key": "gust-font-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gust-font-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is version 1.0, dated 22 June 2009, of the GUST Font License.\n(GUST is the Polish TeX Users Group, http://www.gust.org.pl)\n\nFor the most recent version of this license see\nhttp://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt\nor\nhttp://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt\n\nThis work may be distributed and/or modified under the conditions\nof the LaTeX Project Public License, either version 1.3c of this\nlicense or (at your option) any later version.\n\nPlease also observe the following clause:\n1) it is requested, but not legally required, that derived works be\n distributed only after changing the names of the fonts comprising this\n work and given in an accompanying \"manifest\", and that the\n files comprising the Work, as listed in the manifest, also be given\n new names. Any exceptions to this request are also given in the\n manifest.\n \n We recommend the manifest be given in a separate file named\n MANIFEST-.txt, where is some unique identification\n of the font family. If a separate \"readme\" file accompanies the Work, \n we recommend a name of the form README-.txt.\n\nThe latest version of the LaTeX Project Public License is in\nhttp://www.latex-project.org/lppl.txt and version 1.3c or later\nis part of all distributions of LaTeX version 2006/05/20 or later.", + "json": "gust-font-1.0.json", + "yaml": "gust-font-1.0.yml", + "html": "gust-font-1.0.html", + "license": "gust-font-1.0.LICENSE" + }, + { + "license_key": "gust-font-2006-09-30", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gust-font-2006-09-30", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is a preliminary version (2006-09-30), barring acceptance from\nthe LaTeX Project Team and other feedback, of the GUST Font License.\n(GUST is the Polish TeX Users Group, http://www.gust.org.pl)\n\nFor the most recent version of this license see\nhttp://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt\nor\nhttp://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt\n\nThis work may be distributed and/or modified under the conditions\nof the LaTeX Project Public License, either version 1.3c of this\nlicense or (at your option) any later version.\n\nPlease also observe the following clause:\n1) it is requested, but not legally required, that derived works be\n distributed only after changing the names of the fonts comprising this\n work and given in an accompanying \"manifest\", and that the\n files comprising the Work, as listed in the manifest, also be given\n new names. Any exceptions to this request are also given in the\n manifest.\n \n We recommend the manifest be given in a separate file named\n MANIFEST-.txt, where is some unique identification\n of the font family. If a separate \"readme\" file accompanies the Work, \n we recommend a name of the form README-.txt.\n\nThe latest version of the LaTeX Project Public License is in\nhttp://www.latex-project.org/lppl.txt and version 1.3c or later\nis part of all distributions of LaTeX version 2006/05/20 or later.", + "json": "gust-font-2006-09-30.json", + "yaml": "gust-font-2006-09-30.yml", + "html": "gust-font-2006-09-30.html", + "license": "gust-font-2006-09-30.LICENSE" + }, + { + "license_key": "gutenberg-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-gutenberg-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "THE FULL PROJECT GUTENBERG LICENSE\nPLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK\n\nTo protect the Project Gutenberg-tm mission of promoting the free\ndistribution of electronic works, by using or distributing this work\n(or any other work associated in any way with the phrase \"Project\nGutenberg\"), you agree to comply with all the terms of the Full Project\nGutenberg-tm License available with this file or online at\nwww.gutenberg.org/license.\n\nSection 1. General Terms of Use and Redistributing Project Gutenberg-tm electronic works\n\n1.A. By reading or using any part of this Project Gutenberg-tm electronic work, you indicate that you have read, understand, agree to and accept all the terms of this license and intellectual property (trademark/copyright) agreement. If you do not agree to abide by all the terms of this agreement, you must cease using and return or destroy all copies of Project Gutenberg-tm electronic works in your possession. If you paid a fee for obtaining a copy of or access to a Project Gutenberg-tm electronic work and you do not agree to be bound by the terms of this agreement, you may obtain a refund from the person or entity to whom you paid the fee as set forth in paragraph 1.E.8.\n\n1.B. \"Project Gutenberg\" is a registered trademark. It may only be used on or associated in any way with an electronic work by people who agree to be bound by the terms of this agreement. There are a few things that you can do with most Project Gutenberg-tm electronic works even without complying with the full terms of this agreement. See paragraph 1.C below. There are a lot of things you can do with Project Gutenberg-tm electronic works if you follow the terms of this agreement and help preserve free future access to Project Gutenberg-tm electronic works. See paragraph 1.E below.\n\n1.C. The Project Gutenberg Literary Archive Foundation (\"the Foundation\" or PGLAF), owns a compilation copyright in the collection of Project Gutenberg-tm electronic works. Nearly all the individual works in the collection are in the public domain in the United States. If an individual work is unprotected by copyright law in the United States and you are located in the United States, we do not claim a right to prevent you from copying, distributing, performing, displaying or creating derivative works based on the work as long as all references to Project Gutenberg are removed. Of course, we hope that you will support the Project Gutenberg-tm mission of promoting free access to electronic works by freely sharing Project Gutenberg-tm works in compliance with the terms of this agreement for keeping the Project Gutenberg-tm name associated with the work. You can easily comply with the terms of this agreement by keeping this work in the same format with its attached full Project Gutenberg-tm License when you share it without charge with others.\n\n[*] This particular work is one of the few individual works protected by copyright law in the United States and most of the remainder of the world, included in the Project Gutenberg collection with the permission of the copyright holder. Information on the copyright owner for this particular work and the terms of use imposed by the copyright holder on this work are set forth at the beginning of this work.\n\n1.D. The copyright laws of the place where you are located also govern what you can do with this work. Copyright laws in most countries are in a constant state of change. If you are outside the United States, check the laws of your country in addition to the terms of this agreement before downloading, copying, displaying, performing, distributing or creating derivative works based on this work or any other Project Gutenberg-tm work. The Foundation makes no representations concerning the copyright status of any work in any country outside the United States.\n\n1.E. Unless you have removed all references to Project Gutenberg:\n\n1.E.1. The following sentence, with active links to, or other immediate access to, the full Project Gutenberg-tm License must appear prominently whenever any copy of a Project Gutenberg-tm work (any work on which the phrase \"Project Gutenberg\" appears, or with which the phrase \"Project Gutenberg\" is associated) is accessed, displayed, performed, viewed, copied or distributed:\n\nThis eBook is for the use of anyone anywhere in the United States and most other parts of the world at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Project Gutenberg License included with this eBook or online at www.gutenberg.org. If you are not located in the United States, you\u2019ll have to check the laws of the country where you are located before using this ebook.\n\n1.E.2. If an individual Project Gutenberg-tm electronic work is derived from texts not protected by U.S. copyright law (does not contain a notice indicating that it is posted with permission of the copyright holder), the work can be copied and distributed to anyone in the United States without paying any fees or charges. If you are redistributing or providing access to a work with the phrase \"Project Gutenberg\" associated with or appearing on the work, you must comply either with the requirements of paragraphs 1.E.1 through 1.E.7 or obtain permission for the use of the work and the Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or 1.E.9.\n\n1.E.3. If an individual Project Gutenberg-tm electronic work is posted with the permission of the copyright holder, your use and distribution must comply with both paragraphs 1.E.1 through 1.E.7 and any additional terms imposed by the copyright holder. Additional terms will be linked to the Project Gutenberg-tm License for all works posted with the permission of the copyright holder found at the beginning of this work.\n\n1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm License terms from this work, or any files containing a part of this work or any other work associated with Project Gutenberg-tm.\n\n1.E.5. Do not copy, display, perform, distribute or redistribute this electronic work, or any part of this electronic work, without prominently displaying the sentence set forth in paragraph 1.E.1 with active links or immediate access to the full terms of the Project Gutenberg-tm License.\n\n1.E.6. You may convert to and distribute this work in any binary, compressed, marked up, nonproprietary or proprietary form, including any word processing or hypertext form. However, if you provide access to or distribute copies of a Project Gutenberg-tm work in a format other than \"Plain Vanilla ASCII\" or other format used in the official version posted on the official Project Gutenberg-tm web site (www.gutenberg.org), you must, at no additional cost, fee or expense to the user, provide a copy, a means of exporting a copy, or a means of obtaining a copy upon request, of the work in its original \"Plain Vanilla ASCII\" or other form. Any alternate format must include the full Project Gutenberg-tm License as specified in paragraph 1.E.1.\n\n1.E.7. Do not charge a fee for access to, viewing, displaying, performing, copying or distributing any Project Gutenberg-tm works unless you comply with paragraph 1.E.8 or 1.E.9.\n\n1.E.8. You may charge a reasonable fee for copies of or providing access to or distributing Project Gutenberg-tm electronic works provided that\n\n You pay a royalty fee of 20% of the gross profits you derive from the use of Project Gutenberg-tm works calculated using the method you already use to calculate your applicable taxes. The fee is owed to the owner of the Project Gutenberg-tm trademark, but he has agreed to donate royalties under this paragraph to the Project Gutenberg Literary Archive Foundation. Royalty payments must be paid within 60 days following each date on which you prepare (or are legally required to prepare) your periodic tax returns. Royalty payments should be clearly marked as such and sent to the Project Gutenberg Literary Archive Foundation at the address specified in Section 4, \"Information about donations to the Project Gutenberg Literary Archive Foundation.\"\n You provide a full refund of any money paid by a user who notifies you in writing (or by e-mail) within 30 days of receipt that s/he does not agree to the terms of the full Project Gutenberg-tm License. You must require such a user to return or destroy all copies of the works possessed in a physical medium and discontinue all use of and all access to other copies of Project Gutenberg-tm works.\n You provide, in accordance with paragraph 1.F.3, a full refund of any money paid for a work or a replacement copy, if a defect in the electronic work is discovered and reported to you within 90 days of receipt of the work.\n You comply with all other terms of this agreement for free distribution of Project Gutenberg-tm works.\n\n1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm electronic work or group of works on different terms than are set forth in this agreement, you must obtain permission in writing from both the Project Gutenberg Literary Archive Foundation and The Project Gutenberg Trademark LLC, the owner of the Project Gutenberg-tm trademark. Contact the Foundation as set forth in Section 3 below.\n\n1.F.\n\n1.F.1. Project Gutenberg volunteers and employees expend considerable effort to identify, do copyright research on, transcribe and proofread works not protected by U.S. copyright law in creating the Project Gutenberg-tm collection. Despite these efforts, Project Gutenberg-tm electronic works, and the medium on which they may be stored, may contain \"Defects,\" such as, but not limited to, incomplete, inaccurate or corrupt data, transcription errors, a copyright or other intellectual property infringement, a defective or damaged disk or other medium, a computer virus, or computer codes that damage or cannot be read by your equipment.\n\n1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the \"Right of Replacement or Refund\" described in paragraph 1.F.3, the Project Gutenberg Literary Archive Foundation, the owner of the Project Gutenberg-tm trademark, and any other party distributing a Project Gutenberg-tm electronic work under this agreement, disclaim all liability to you for damages, costs and expenses, including legal fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH DAMAGE.\n\n1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a defect in this electronic work within 90 days of receiving it, you can receive a refund of the money (if any) you paid for it by sending a written explanation to the person you received the work from. If you received the work on a physical medium, you must return the medium with your written explanation. The person or entity that provided you with the defective work may elect to provide a replacement copy in lieu of a refund. If you received the work electronically, the person or entity providing it to you may choose to give you a second opportunity to receive the work electronically in lieu of a refund. If the second copy is also defective, you may demand a refund in writing without further opportunities to fix the problem.\n\n1.F.4. Except for the limited right of replacement or refund set forth in paragraph 1.F.3, this work is provided to you \u2018AS-IS\u2019, WITH NO OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE.\n\n1.F.5. Some states do not allow disclaimers of certain implied warranties or the exclusion or limitation of certain types of damages. If any disclaimer or limitation set forth in this agreement violates the law of the state applicable to this agreement, the agreement shall be interpreted to make the maximum disclaimer or limitation permitted by the applicable state law. The invalidity or unenforceability of any provision of this agreement shall not void the remaining provisions.\n\n1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the trademark owner, any agent or employee of the Foundation, anyone providing copies of Project Gutenberg-tm electronic works in accordance with this agreement, and any volunteers associated with the production, promotion and distribution of Project Gutenberg-tm electronic works, harmless from all liability, costs and expenses, including legal fees, that arise directly or indirectly from any of the following which you do or cause to occur: (a) distribution of this or any Project Gutenberg-tm work, (b) alteration, modification, or additions or deletions to any Project Gutenberg-tm work, and (c) any Defect you cause.\nSection 2. Information about the Mission of Project Gutenberg-tm\n\nProject Gutenberg-tm is synonymous with the free distribution of electronic works in formats readable by the widest variety of computers including obsolete, old, middle-aged and new computers. It exists because of the efforts of hundreds of volunteers and donations from people in all walks of life.\n\nVolunteers and financial support to provide volunteers with the assistance they need are critical to reaching Project Gutenberg-tm\u2019s goals and ensuring that the Project Gutenberg-tm collection will remain freely available for generations to come. In 2001, the Project Gutenberg Literary Archive Foundation was created to provide a secure and permanent future for Project Gutenberg-tm and future generations. To learn more about the Project Gutenberg Literary Archive Foundation and how your efforts and donations can help, see Sections 3 and 4 and the Foundation information page at www.gutenberg.org\nSection 3. Information about the Project Gutenberg Literary Archive Foundation\n\nThe Project Gutenberg Literary Archive Foundation is a non profit 501(c)(3) educational corporation organized under the laws of the state of Mississippi and granted tax exempt status by the Internal Revenue Service. The Foundation\u2019s EIN or federal tax identification number is 64-6221541. Contributions to the Project Gutenberg Literary Archive Foundation are tax deductible to the full extent permitted by U.S. federal laws and your state\u2019s laws.\n\nThe Foundation\u2019s principal office is located at 4557 Melan Dr. S. Fairbanks, AK, 99712., but its volunteers and employees are scattered throughout numerous locations. Its business office is located at 809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up to date contact information can be found at the Foundation\u2019s web site and official page at www.gutenberg.org/contact\n\nFor additional contact information:\n\n Dr. Gregory B. Newby\n Chief Executive and Director\n gbnewby@pglaf.org\n\nSection 4. Information about Donations to the Project Gutenberg Literary Archive Foundation\n\nProject Gutenberg-tm depends upon and cannot survive without wide spread public support and donations to carry out its mission of increasing the number of public domain and licensed works that can be freely distributed in machine readable form accessible by the widest array of equipment including outdated equipment. Many small donations ($1 to $5,000) are particularly important to maintaining tax exempt status with the IRS.\n\nThe Foundation is committed to complying with the laws regulating charities and charitable donations in all 50 states of the United States. Compliance requirements are not uniform and it takes a considerable effort, much paperwork and many fees to meet and keep up with these requirements. We do not solicit donations in locations where we have not received written confirmation of compliance. To SEND DONATIONS or determine the status of compliance for any particular state visit www.gutenberg.org/donate\n\nWhile we cannot and do not solicit contributions from states where we have not met the solicitation requirements, we know of no prohibition against accepting unsolicited donations from donors in such states who approach us with offers to donate.\n\nInternational donations are gratefully accepted, but we cannot make any statements concerning tax treatment of donations received from outside the United States. U.S. laws alone swamp our small staff.\n\nPlease check the Project Gutenberg Web pages for current donation methods and addresses. Donations are accepted in a number of other ways including checks, online payments and credit card donations. To donate, please visit: www.gutenberg.org/donate\nSection 5. General Information About Project Gutenberg-tm electronic works.\n\nProfessor Michael S. Hart was the originator of the Project Gutenberg-tm concept of a library of electronic works that could be freely shared with anyone. For forty years, he produced and distributed Project Gutenberg-tm eBooks with only a loose network of volunteer support.\n\nProject Gutenberg-tm eBooks are often created from several printed editions, all of which are confirmed as not protected by copyright in the U.S. unless a copyright notice is included. Thus, we do not necessarily keep eBooks in compliance with any particular paper edition.\n\nMost people start at our Web site which has the main PG search facility: www.gutenberg.org\n\nThis Web site includes information about Project Gutenberg-tm, including how to make donations to the Project Gutenberg Literary Archive Foundation, how to help produce our new eBooks, and how to subscribe to our email newsletter to hear about new eBooks.\n\n[*] This paragraph, after 1.C., is included only for copyrighted works. For those, you must contact the copyright holder before any non-free use or removal of the Project Gutenberg header.", + "json": "gutenberg-2020.json", + "yaml": "gutenberg-2020.yml", + "html": "gutenberg-2020.html", + "license": "gutenberg-2020.LICENSE" + }, + { + "license_key": "h2-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-h2-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "H2 License - Version 1.0\n\n\n1. Definitions\n\n1.0.1. \"Commercial Use\" means distribution or otherwise making the Covered Code\navailable to a third party.\n\n1.1. \"Contributor\" means each entity that creates or contributes to the creation\nof Modifications.\n\n1.2. \"Contributor Version\" means the combination of the Original Code, prior\nModifications used by a Contributor, and the Modifications made by that\nparticular Contributor.\n\n1.3. \"Covered Code\" means the Original Code or Modifications or the combination\nof the Original Code and Modifications, in each case including portions thereof.\n\n1.4. \"Electronic Distribution Mechanism\" means a mechanism generally accepted in\nthe software development community for the electronic transfer of data.\n\n1.5. \"Executable\" means Covered Code in any form other than Source Code.\n\n1.6. \"Initial Developer\" means the individual or entity identified as the\nInitial Developer in the Source Code notice required by Exhibit A.\n\n1.7. \"Larger Work\" means a work which combines Covered Code or portions thereof\nwith code not governed by the terms of this License.\n\n1.8. \"License\" means this document.\n\n1.8.1. \"Licensable\" means having the right to grant, to the maximum extent\npossible, whether at the time of the initial grant or subsequently acquired, any\nand all of the rights conveyed herein.\n\n1.9. \"Modifications\" means any addition to or deletion from the substance or\nstructure of either the Original Code or any previous Modifications. When\nCovered Code is released as a series of files, a Modification is:\n\n1.9.a. Any addition to or deletion from the contents of a file containing\nOriginal Code or previous Modifications.\n\n1.9.b. Any new file that contains any part of the Original Code or previous\nModifications.\n\n1.10. \"Original Code\" means Source Code of computer software code which is\ndescribed in the Source Code notice required by Exhibit A as Original Code, and\nwhich, at the time of its release under this License is not already Covered Code\ngoverned by this License.\n\n1.10.1. \"Patent Claims\" means any patent claim(s), now owned or hereafter\nacquired, including without limitation, method, process, and apparatus claims,\nin any patent Licensable by grantor.\n\n1.11. \"Source Code\" means the preferred form of the Covered Code for making\nmodifications to it, including all modules it contains, plus any associated\ninterface definition files, scripts used to control compilation and installation\nof an Executable, or source code differential comparisons against either the\nOriginal Code or another well known, available Covered Code of the Contributor's\nchoice. The Source Code can be in a compressed or archival form, provided the\nappropriate decompression or de-archiving software is widely available for no\ncharge.\n\n1.12. \"You\" (or \"Your\") means an individual or a legal entity exercising rights\nunder, and complying with all of the terms of, this License or a future version\nof this License issued under Section 6.1. For legal entities, \"You\" includes any\nentity which controls, is controlled by, or is under common control with You.\nFor purposes of this definition, \"control\" means (a) the power, direct or\nindirect, to cause the direction or management of such entity, whether by\ncontract or otherwise, or (b) ownership of more than fifty percent (50%) of the\noutstanding shares or beneficial ownership of such entity.\n\n2. Source Code License\n\n2.1. The Initial Developer Grant\n\nThe Initial Developer hereby grants You a world-wide, royalty-free, non-\nexclusive license, subject to third party intellectual property claims:\n\n2.1.a. under intellectual property rights (other than patent or trademark)\nLicensable by Initial Developer to use, reproduce, modify, display, perform,\nsublicense and distribute the Original Code (or portions thereof) with or\nwithout Modifications, and/or as part of a Larger Work; and\n\n2.1.b. under Patents Claims infringed by the making, using or selling of\nOriginal Code, to make, have made, use, practice, sell, and offer for sale,\nand/or otherwise dispose of the Original Code (or portions thereof).\n\n2.1.c. the licenses granted in this Section 2.1 (a) and (b) are effective on the\ndate Initial Developer first distributes Original Code under the terms of this\nLicense.\n\n2.1.d. Notwithstanding Section 2.1 (b) above, no patent license is granted: 1)\nfor code that You delete from the Original Code; 2) separate from the Original\nCode; or 3) for infringements caused by: i) the modification of the Original\nCode or ii) the combination of the Original Code with other software or devices.\n\n2.2. Contributor Grant\n\nSubject to third party intellectual property claims, each Contributor hereby\ngrants You a world-wide, royalty-free, non-exclusive license\n\n2.2.a. under intellectual property rights (other than patent or trademark)\nLicensable by Contributor, to use, reproduce, modify, display, perform,\nsublicense and distribute the Modifications created by such Contributor (or\nportions thereof) either on an unmodified basis, with other Modifications, as\nCovered Code and/or as part of a Larger Work; and\n\n2.2.b. under Patent Claims infringed by the making, using, or selling of\nModifications made by that Contributor either alone and/or in combination with\nits Contributor Version (or portions of such combination), to make, use, sell,\noffer for sale, have made, and/or otherwise dispose of: 1) Modifications made by\nthat Contributor (or portions thereof); and 2) the combination of Modifications\nmade by that Contributor with its Contributor Version (or portions of such\ncombination).\n\n2.2.c. the licenses granted in Sections 2.2 (a) and 2.2 (b) are effective on the\ndate Contributor first makes Commercial Use of the Covered Code.\n\n2.2.c. Notwithstanding Section 2.2 (b) above, no patent license is granted: 1)\nfor any code that Contributor has deleted from the Contributor Version; 2)\nseparate from the Contributor Version; 3) for infringements caused by: i) third\nparty modifications of Contributor Version or ii) the combination of\nModifications made by that Contributor with other software (except as part of\nthe Contributor Version) or other devices; or 4) under Patent Claims infringed\nby Covered Code in the absence of Modifications made by that Contributor.\n\n3. Distribution Obligations\n\n3.1. Application of License\n\nThe Modifications which You create or to which You contribute are governed by\nthe terms of this License, including without limitation Section 2.2. The Source\nCode version of Covered Code may be distributed only under the terms of this\nLicense or a future version of this License released under Section 6.1, and You\nmust include a copy of this License with every copy of the Source Code You\ndistribute. You may not offer or impose any terms on any Source Code version\nthat alters or restricts the applicable version of this License or the\nrecipients' rights hereunder. However, You may include an additional document\noffering the additional rights described in Section 3.5.\n\n3.2. Availability of Source Code\n\nAny Modification which You create or to which You contribute must be made\navailable in Source Code form under the terms of this License either on the same\nmedia as an Executable version or via an accepted Electronic Distribution\nMechanism to anyone to whom you made an Executable version available; and if\nmade available via Electronic Distribution Mechanism, must remain available for\nat least twelve (12) months after the date it initially became available, or at\nleast six (6) months after a subsequent version of that particular Modification\nhas been made available to such recipients. You are responsible for ensuring\nthat the Source Code version remains available even if the Electronic\nDistribution Mechanism is maintained by a third party.\n\n3.3. Description of Modifications\n\nYou must cause all Covered Code to which You contribute to contain a file\ndocumenting the changes You made to create that Covered Code and the date of any\nchange. You must include a prominent statement that the Modification is derived,\ndirectly or indirectly, from Original Code provided by the Initial Developer and\nincluding the name of the Initial Developer in (a) the Source Code, and (b) in\nany notice in an Executable version or related documentation in which You\ndescribe the origin or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters \n\n3.4.a. Third Party Claims: If Contributor has knowledge that a license under a\nthird party's intellectual property rights is required to exercise the rights\ngranted by such Contributor under Sections 2.1 or 2.2, Contributor must include\na text file with the Source Code distribution titled \"LEGAL\" which describes the\nclaim and the party making the claim in sufficient detail that a recipient will\nknow whom to contact. If Contributor obtains such knowledge after the\nModification is made available as described in Section 3.2, Contributor shall\npromptly modify the LEGAL file in all copies Contributor makes available\nthereafter and shall take other steps (such as notifying appropriate mailing\nlists or newsgroups) reasonably calculated to inform those who received the\nCovered Code that new knowledge has been obtained.\n\n3.4.b. Contributor APIs: If Contributor's Modifications include an application\nprogramming interface and Contributor has knowledge of patent licenses which are\nreasonably necessary to implement that API, Contributor must also include this\ninformation in the legal file.\n\n3.4.c. Representations: Contributor represents that, except as disclosed\npursuant to Section 3.4 (a) above, Contributor believes that Contributor's\nModifications are Contributor's original creation(s) and/or Contributor has\nsufficient rights to grant the rights conveyed by this License.\n\n3.5. Required Notices\n\nYou must duplicate the notice in Exhibit A in each file of the Source Code. If\nit is not possible to put such notice in a particular Source Code file due to\nits structure, then You must include such notice in a location (such as a\nrelevant directory) where a user would be likely to look for such a notice. If\nYou created one or more Modification(s) You may add your name as a Contributor\nto the notice described in Exhibit A. You must also duplicate this License in\nany documentation for the Source Code where You describe recipients' rights or\nownership rights relating to Covered Code. You may choose to offer, and to\ncharge a fee for, warranty, support, indemnity or liability obligations to one\nor more recipients of Covered Code. However, You may do so only on Your own\nbehalf, and not on behalf of the Initial Developer or any Contributor. You must\nmake it absolutely clear than any such warranty, support, indemnity or liability\nobligation is offered by You alone, and You hereby agree to indemnify the\nInitial Developer and every Contributor for any liability incurred by the\nInitial Developer or such Contributor as a result of warranty, support,\nindemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions\n\nYou may distribute Covered Code in Executable form only if the requirements of\nSections 3.1, 3.2, 3.3, 3.4 and 3.5 have been met for that Covered Code, and if\nYou include a notice stating that the Source Code version of the Covered Code is\navailable under the terms of this License, including a description of how and\nwhere You have fulfilled the obligations of Section 3.2. The notice must be\nconspicuously included in any notice in an Executable version, related\ndocumentation or collateral in which You describe recipients' rights relating to\nthe Covered Code. You may distribute the Executable version of Covered Code or\nownership rights under a license of Your choice, which may contain terms\ndifferent from this License, provided that You are in compliance with the terms\nof this License and that the license for the Executable version does not attempt\nto limit or alter the recipient's rights in the Source Code version from the\nrights set forth in this License. If You distribute the Executable version under\na different license You must make it absolutely clear that any terms which\ndiffer from this License are offered by You alone, not by the Initial Developer\nor any Contributor. You hereby agree to indemnify the Initial Developer and\nevery Contributor for any liability incurred by the Initial Developer or such\nContributor as a result of any such terms You offer.\n\n3.7. Larger Works\n\nYou may create a Larger Work by combining Covered Code with other code not\ngoverned by the terms of this License and distribute the Larger Work as a single\nproduct. In such a case, You must make sure the requirements of this License are\nfulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to comply with any of the terms of this License with\nrespect to some or all of the Covered Code due to statute, judicial order, or\nregulation then You must: (a) comply with the terms of this License to the\nmaximum extent possible; and (b) describe the limitations and the code they\naffect. Such description must be included in the legal file described in Section\n3.4 and must be included with all distributions of the Source Code. Except to\nthe extent prohibited by statute or regulation, such description must be\nsufficiently detailed for a recipient of ordinary skill to be able to understand\nit.\n\n5. Application of this License.\n\nThis License applies to code to which the Initial Developer has attached the\nnotice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n\n6.1. New Versions\n\nThe H2 Group may publish revised and/or new versions of the License from time to\ntime. Each version will be given a distinguishing version number.\n\n6.2. Effect of New Versions\n\nOnce Covered Code has been published under a particular version of the License,\nYou may always continue to use it under the terms of that version. You may also\nchoose to use such Covered Code under the terms of any subsequent version of the\nLicense published by the H2 Group. No one other than the H2 Group has the right\nto modify the terms applicable to Covered Code created under this License.\n\n6.3. Derivative Works\n\nIf You create or use a modified version of this License (which you may only do\nin order to apply it to code which is not already Covered Code governed by this\nLicense), You must (a) rename Your license so that the phrases \"H2 Group\", \"H2\"\nor any confusingly similar phrase do not appear in your license (except to note\nthat your license differs from this License) and (b) otherwise make it clear\nthat Your version of the license contains terms which differ from the H2\nLicense. (Filling in the name of the Initial Developer, Original Code or\nContributor in the notice described in Exhibit A shall not of themselves be\ndeemed to be modifications of this License.)\n\n7. Disclaimer of Warranty\n\nCovered code is provided under this license on an \"as is\" basis, without\nwarranty of any kind, either expressed or implied, including, without\nlimitation, warranties that the covered code is free of defects, merchantable,\nfit for a particular purpose or non-infringing. The entire risk as to the\nquality and performance of the covered code is with you. Should any covered code\nprove defective in any respect, you (not the initial developer or any other\ncontributor) assume the cost of any necessary servicing, repair or correction.\nThis disclaimer of warranty constitutes an essential part of this license. No\nuse of any covered code is authorized hereunder except under this disclaimer.\n\n8. Termination\n\n8.1. This License and the rights granted hereunder will terminate automatically\nif You fail to comply with terms herein and fail to cure such breach within 30\ndays of becoming aware of the breach. All sublicenses to the Covered Code which\nare properly granted shall survive any termination of this License. Provisions\nwhich, by their nature, must remain in effect beyond the termination of this\nLicense shall survive.\n\n8.2. If You initiate litigation by asserting a patent infringement claim\n(excluding declaratory judgment actions) against Initial Developer or a\nContributor (the Initial Developer or Contributor against whom You file such\naction is referred to as \"Participant\") alleging that:\n\n8.2.a. such Participant's Contributor Version directly or indirectly infringes\nany patent, then any and all rights granted by such Participant to You under\nSections 2.1 and/or 2.2 of this License shall, upon 60 days notice from\nParticipant terminate prospectively, unless if within 60 days after receipt of\nnotice You either: (i) agree in writing to pay Participant a mutually agreeable\nreasonable royalty for Your past and future use of Modifications made by such\nParticipant, or (ii) withdraw Your litigation claim with respect to the\nContributor Version against such Participant. If within 60 days of notice, a\nreasonable royalty and payment arrangement are not mutually agreed upon in\nwriting by the parties or the litigation claim is not withdrawn, the rights\ngranted by Participant to You under Sections 2.1 and/or 2.2 automatically\nterminate at the expiration of the 60 day notice period specified above.\n\n8.2.b. any software, hardware, or device, other than such Participant's\nContributor Version, directly or indirectly infringes any patent, then any\nrights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are\nrevoked effective as of the date You first made, used, sold, distributed, or had\nmade, Modifications made by that Participant.\n\n8.3. If You assert a patent infringement claim against Participant alleging that\nsuch Participant's Contributor Version directly or indirectly infringes any\npatent where such claim is resolved (such as by license or settlement) prior to\nthe initiation of patent infringement litigation, then the reasonable value of\nthe licenses granted by such Participant under Sections 2.1 or 2.2 shall be\ntaken into account in determining the amount or value of any payment or license.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user\nlicense agreements (excluding distributors and resellers) which have been\nvalidly granted by You or any distributor hereunder prior to termination shall\nsurvive termination.\n\n9. Limitation of Liability\n\nUnder no circumstances and under no legal theory, whether tort (including\nnegligence), contract, or otherwise, shall you, the initial developer, any other\ncontributor, or any distributor of covered code, or any supplier of any of such\nparties, be liable to any person for any indirect, special, incidental, or\nconsequential damages of any character including, without limitation, damages\nfor loss of goodwill, work stoppage, computer failure or malfunction, or any and\nall other commercial damages or losses, even if such party shall have been\ninformed of the possibility of such damages. This limitation of liability shall\nnot apply to liability for death or personal injury resulting from such party's\nnegligence to the extent applicable law prohibits such limitation. Some\njurisdictions do not allow the exclusion or limitation of incidental or\nconsequential damages, so this exclusion and limitation may not apply to you.\n\n10. United States Government End Users\n\nThe Covered Code is a \"commercial item\", as that term is defined in 48 C.F.R.\n2.101 (October 1995), consisting of \"commercial computer software\" and\n\"commercial computer software documentation\", as such terms are used in 48\nC.F.R. 12.212 (September 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R.\n227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire\nCovered Code with only those rights set forth herein.\n\n11. Miscellaneous\n\nThis License represents the complete agreement concerning subject matter hereof.\nIf any provision of this License is held to be unenforceable, such provision\nshall be reformed only to the extent necessary to make it enforceable. This\nLicense shall be governed by California law provisions (except to the extent\napplicable law, if any, provides otherwise), excluding its conflict-of-law\nprovisions. With respect to disputes in which at least one party is a citizen\nof, or an entity chartered or registered to do business in United States of\nAmerica, any litigation relating to this License shall be subject to the\njurisdiction of the Federal Courts of the Northern District of California, with\nvenue lying in Santa Clara County, California, with the losing party responsible\nfor costs, including without limitation, court costs and reasonable attorneys'\nfees and expenses. The application of the United Nations Convention on Contracts\nfor the International Sale of Goods is expressly excluded. Any law or regulation\nwhich provides that the language of a contract shall be construed against the\ndrafter shall not apply to this License.\n\n12. Responsibility for Claims\n\nAs between Initial Developer and the Contributors, each party is responsible for\nclaims and damages arising, directly or indirectly, out of its utilization of\nrights under this License and You agree to work with Initial Developer and\nContributors to distribute such responsibility on an equitable basis. Nothing\nherein is intended or shall be deemed to constitute any admission of liability.\n\n13. Multiple-Licensed Code\n\nInitial Developer may designate portions of the Covered Code as \"Multiple-\nLicensed\". \"Multiple-Licensed\" means that the Initial Developer permits you to\nutilize portions of the Covered Code under Your choice of this or the\nalternative licenses, if any, specified by the Initial Developer in the file\ndescribed in Exhibit A.", + "json": "h2-1.0.json", + "yaml": "h2-1.0.yml", + "html": "h2-1.0.html", + "license": "h2-1.0.LICENSE" + }, + { + "license_key": "hacos-1.2", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-hacos-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "HEALTH ADMINISTRATION CORPORATION OPEN SOURCE LICENSE VERSION 1.2\n\n1. DEFINITIONS.\n\n \"Commercial Use\" shall mean distribution or otherwise making the\n Covered Software available to a third party.\n\n \"Contributor\" shall mean each entity that creates or contributes to\n the creation of Modifications.\n\n \"Contributor Version\" shall mean in case of any Contributor the\n combination of the Original Software, prior Modifications used by a\n Contributor, and the Modifications made by that particular Contributor\n and in case of Health Administration Corporation in addition the\n Original Software in any form, including the form as Executable.\n\n \"Covered Software\" shall mean the Original Software or Modifications\n or the combination of the Original Software and Modifications, in\n each case including portions thereof.\n\n \"Electronic Distribution Mechanism\" shall mean a mechanism generally\n accepted in the software development community for the electronic\n transfer of data.\n\n \"Executable\" shall mean Covered Software in any form other than\n Source Code.\n\n \"Initial Developer\" shall mean the individual or entity identified as\n the Initial Developer in the Source Code notice required by Exhibit A.\n\n \"Health Administration Corporation\" shall mean the Health\n Administration Corporation as established by the Health Administration\n Act 1982, as amended, of the State of New South Wales, Australia. The\n Health Administration Corporation has its offices at 73 Miller Street,\n North Sydney, New South Wales 2059, Australia.\n\n \"Larger Work\" shall mean a work, which combines Covered Software or\n portions thereof with code not governed by the terms of this License.\n\n \"License\" shall mean this document.\n\n \"Licensable\" shall mean having the right to grant, to the maximum\n extent possible, whether at the time of the initial grant or\n subsequently acquired, any and all of the rights conveyed herein.\n\n \"Modifications\" shall mean any addition to or deletion from the\n substance or structure of either the Original Software or any previous\n Modifications. When Covered Software is released as a series of files,\n a Modification is:\n\n a) Any addition to or deletion from the contents of a file\n containing Original Software or previous Modifications.\n\n b) Any new file that contains any part of the Original Software or\n previous Modifications.\n\n \"Original Software\" shall mean the Source Code of computer software\n code which is described in the Source Code notice required by Exhibit\n A as Original Software, and which, at the time of its release under\n this License is not already Covered Software governed by this License.\n\n \"Patent Claims\" shall mean any patent claim(s), now owned or hereafter\n acquired, including without limitation, method, process, and apparatus\n claims, in any patent Licensable by grantor.\n\n \"Source Code\" shall mean the preferred form of the Covered Software\n for making modifications to it, including all modules it contains,\n plus any associated interface definition files, scripts used to\n control compilation and installation of an Executable, or source\n code differential comparisons against either the Original Software or\n another well known, available Covered Software of the Contributor's\n choice. The Source Code can be in a compressed or archival form,\n provided the appropriate decompression or de-archiving software is\n widely available for no charge.\n\n \"You\" (or \"Your\") shall mean an individual or a legal entity exercising\n rights under, and complying with all of the terms of, this License or\n a future version of this License issued under Section 6.1. For legal\n entities, \"You\" includes an entity which controls, is controlled\n by, or is under common control with You. For the purposes of this\n definition, \"control\" means (a) the power, direct or indirect,\n to cause the direction or management of such entity, whether by\n contract or otherwise, or (b) ownership of more than fifty per cent\n (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2. SOURCE CODE LICENSE.\n\n2.1 Health Administration Corporation Grant.\n\nSubject to the terms of this License, Health Administration Corporation\nhereby grants You a world-wide, royalty-free, non-exclusive license,\nsubject to third party intellectual property claims:\n\na) under copyrights Licensable by Health Administration Corporation\n to use, reproduce, modify, display, perform, sublicense and\n distribute the Original Software (or portions thereof) with or without\n Modifications, and/or as part of a Larger Work;\n\nb) and under Patents Claims infringed by the making, using or selling\n of Original Software, to make, have made, use, practice, sell, and\n offer for sale, and/or otherwise dispose of the Original Software\n (or portions thereof).\n\nc) The licenses granted in this Section 2.1(a) and (b) are effective\n on the date Health Administration Corporation first distributes\n Original Software under the terms of this License.\n\nd) Notwithstanding Section 2.1(b) above, no patent license is granted:\n 1) for code that You delete from the Original Software; 2) separate\n from the Original Software; or 3) for infringements caused by: i)\n the modification of the Original Software or ii) the combination of\n the Original Software with other software or devices.\n\n2.2 Contributor Grant.\n\nSubject to the terms of this License and subject to third party\nintellectual property claims, each Contributor hereby grants You a\nworld-wide, royalty-free, non-exclusive license:\n\na) under copyrights Licensable by Contributor, to use, reproduce,\n modify, display, perform, sublicense and distribute the Modifications\n created by such Contributor (or portions thereof) either on an\n unmodified basis, with other Modifications, as Covered Software and/or\n as part of a Larger Work; and\n\nb) under Patent Claims necessarily infringed by the making, using,\n or selling of Modifications made by that Contributor either alone\n and/or in combination with its Contributor Version (or portions of\n such combination), to make, use, sell, offer for sale, have made,\n and/or otherwise dispose of: 1) Modifications made by that Contributor\n (or portions thereof); and 2) the combination of Modifications made\n by that Contributor with its Contributor Version (or portions of\n such combination).\n\nc) The licenses granted in Sections 2.2(a) and 2.2(b) are effective\n on the date Contributor first makes Commercial Use of the Covered\n Software.\n\nd) Notwithstanding Section 2.2(b) above, no patent license is granted:\n 1) for any code that Contributor has deleted from the Contributor\n Version; 2) separate from the Contributor Version; 3) for infringements\n caused by: i) third party modifications of Contributor Version or ii)\n the combination of Modifications made by that Contributor with other\n software (except as part of the Contributor Version) or other devices;\n or 4) under Patent Claims infringed by Covered Software in the absence\n of Modifications made by that Contributor.\n\n3. DISTRIBUTION OBLIGATIONS.\n\n3.1 Application of License.\n\nThe Modifications which You create or to which You contribute are governed\nby the terms of this License, including without limitation Section\n2.2. The Source Code version of Covered Software may be distributed\nonly under the terms of this License or a future version of this License\nreleased under Section 6.1, and You must include a copy of this License\nwith every copy of the Source Code You distribute. You may not offer or\nimpose any terms on any Source Code version that alters or restricts the\napplicable version of this License or the recipients' rights hereunder.\n\n3.2 Availability of Source Code.\n\nAny Modification which You create or to which You contribute must be made\navailable in Source Code form under the terms of this License either on\nthe same media as an Executable version or via an accepted Electronic\nDistribution Mechanism to anyone to whom you made an Executable version\navailable; and if made available via Electronic Distribution Mechanism,\nmust remain available for at least twelve (12) months after the date it\ninitially became available, or at least six (6) months after a subsequent\nversion of that particular Modification has been made available to\nsuch recipients. You are responsible for ensuring that the Source Code\nversion remains available even if the Electronic Distribution Mechanism\nis maintained by a third party.\n\n3.3 Description of Modifications.\n\nYou must cause all Covered Software to which You contribute to contain\na file documenting the changes You made to create that Covered Software\nand the date of any change. You must include a prominent statement that\nthe Modification is derived, directly or indirectly, from Original\nSoftware provided by Health Administration Corporation and including\nthe name of Health Administration Corporation in (a) the Source Code,\nand (b) in any notice in an Executable version or related documentation\nin which You describe the origin or ownership of the Covered Software.\n\n3.4 Intellectual Property Matters\n\na) Third Party Claims.\n\n If Contributor has knowledge that a license under a third party's\n intellectual property rights is required to exercise the rights\n granted by such Contributor under Sections 2.1 or 2.2, Contributor\n must include a text file with the Source Code distribution titled\n \"LEGAL'' which describes the claim and the party making the claim\n in sufficient detail that a recipient will know whom to contact. If\n Contributor obtains such knowledge after the Modification is made\n available as described in Section 3.2, Contributor shall promptly\n modify the LEGAL file in all copies Contributor makes available\n thereafter and shall take other steps (such as notifying appropriate\n mailing lists or newsgroups) reasonably calculated to inform those\n who received the Covered Software that new knowledge has been obtained.\n\nb) Contributor APIs.\n\n If Contributor's Modifications include an application programming\n interface (API) and Contributor has knowledge of patent licenses\n which are reasonably necessary to implement that API, Contributor\n must also include this information in the LEGAL file.\n\nc) Representations.\n\n Contributor represents that, except as disclosed pursuant to Section\n 3.4(a) above, Contributor believes that Contributor's Modifications are\n Contributor's original creation(s) and/or Contributor has sufficient\n rights to grant the rights conveyed by this License.\n\n3.5 Required Notices.\n\nYou must duplicate the notice in Exhibit A in each file of the Source\nCode. If it is not possible to put such notice in a particular Source\nCode file due to its structure, then You must include such notice in a\nlocation (such as a relevant directory) where a user would be likely to\nlook for such a notice. If You created one or more Modification(s) You\nmay add your name as a Contributor to the notice described in Exhibit\nA. You must also duplicate this License in any documentation for the\nSource Code where You describe recipients' rights or ownership rights\nrelating to Covered Software. You may choose to offer, and to charge a\nfee for, warranty, support, indemnity or liability obligations to one or\nmore recipients of Covered Software. However, You may do so only on Your\nown behalf, and not on behalf of Health Administration Corporation or any\nContributor. You must make it absolutely clear that any such warranty,\nsupport, indemnity or liability obligation is offered by You alone,\nand You hereby agree to indemnify Health Administration Corporation and\nevery Contributor for any liability incurred by Health Administration\nCorporation or such Contributor as a result of warranty, support,\nindemnity or liability terms You offer.\n\n3.6 Distribution of Executable Versions.\n\nYou may distribute Covered Software in Executable form only if the\nrequirements of Sections 3.1-3.5 have been met for that Covered Software,\nand if You include a notice stating that the Source Code version of the\nCovered Software is available under the terms of this License, including\na description of how and where You have fulfilled the obligations of\nSection 3.2. The notice must be conspicuously included in any notice in\nan Executable version, related documentation or collateral in which You\ndescribe recipients' rights relating to the Covered Software. You may\ndistribute the Executable version of Covered Software or ownership rights\nunder a license of Your choice, which may contain terms different from\nthis License, provided that You are in compliance with the terms of this\nLicense and that the license for the Executable version does not attempt\nto limit or alter the recipient's rights in the Source Code version from\nthe rights set forth in this License. If You distribute the Executable\nversion under a different license You must make it absolutely clear\nthat any terms which differ from this License are offered by You alone,\nnot by Health Administration Corporation or any Contributor. You hereby\nagree to indemnify Health Administration Corporation and every Contributor\nfor any liability incurred by Health Administration Corporation or such\nContributor as a result of any such terms You offer.\n\n3.7 Larger Works.\n\nYou may create a Larger Work by combining Covered Software with other\nsoftware not governed by the terms of this License and distribute the\nLarger Work as a single product. In such a case, You must make sure the\nrequirements of this License are fulfilled for the Covered Software.\n\n4. INABILITY TO COMPLY DUE TO STATUTE OR REGULATION.\n\nIf it is impossible for You to comply with any of the terms of this\nLicense with respect to some or all of the Covered Software due to\nstatute, judicial order, or regulation then You must: (a) comply with the\nterms of this License to the maximum extent possible; and (b) describe the\nlimitations and the code they affect. Such description must be included\nin the LEGAL file described in Section 3.4 and must be included with all\ndistributions of the Source Code. Except to the extent prohibited by\nstatute or regulation, such description must be sufficiently detailed\nfor a recipient of ordinary skill to be able to understand it.\n\n5. APPLICATION OF THIS LICENSE.\n\nThis License applies to code to which Health Administration Corporation\nhas attached the notice in Exhibit A and to related Covered Software.\n\n6. VERSIONS OF THE LICENSE.\n\n6.1 New Versions.\n\nHealth Administration Corporation may publish revised and/or new\nversions of the License from time to time. Each version will be given\na distinguishing version number.\n\n6.2 Effect of New Versions.\n\nOnce Covered Software has been published under a particular version\nof the License, You may always continue to use it under the terms of\nthat version. You may also choose to use such Covered Software under\nthe terms of any subsequent version of the License published by Health\nAdministration Corporation. No one other than Health Administration\nCorporation has the right to modify the terms applicable to Covered\nSoftware created under this License.\n\n7. DISCLAIMER OF WARRANTY.\n\nCOVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS'' BASIS,\nWITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\nWITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF\nDEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE\nENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS\nWITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU\n(NOT HEALTH ADMINISTRATION CORPORATION, ITS LICENSORS OR AFFILIATES OR\nANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR\nOR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART\nOF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER\nEXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n\n8.1 This License and the rights granted hereunder will terminate\nautomatically if You fail to comply with terms herein and fail to\ncure such breach within 30 days of becoming aware of the breach. All\nsublicenses to the Covered Software which are properly granted shall\nsurvive any termination of this License. Provisions which, by their\nnature, must remain in effect beyond the termination of this License\nshall survive.\n\n8.2 If You initiate litigation by asserting a patent infringement claim\n(excluding declatory judgment actions) against Health Administration\nCorporation or a Contributor (Health Administration Corporation\nor Contributor against whom You file such action is referred to as\n\"Participant\") alleging that:\n\na) such Participant's Contributor Version directly or indirectly\n infringes any patent, then any and all rights granted by such\n Participant to You under Sections 2.1 and/or 2.2 of this License\n shall, upon 60 days notice from Participant terminate prospectively,\n unless if within 60 days after receipt of notice You either: (i)\n agree in writing to pay Participant a mutually agreeable reasonable\n royalty for Your past and future use of Modifications made by such\n Participant, or (ii) withdraw Your litigation claim with respect to\n the Contributor Version against such Participant. If within 60 days\n of notice, a reasonable royalty and payment arrangement are not\n mutually agreed upon in writing by the parties or the litigation\n claim is not withdrawn, the rights granted by Participant to\n You under Sections 2.1 and/or 2.2 automatically terminate at the\n expiration of the 60 day notice period specified above.\n\nb) any software, hardware, or device, other than such Participant's\n Contributor Version, directly or indirectly infringes any patent,\n then any rights granted to You by such Participant under Sections\n 2.1(b) and 2.2(b) are revoked effective as of the date You first\n made, used, sold, distributed, or had made, Modifications made by\n that Participant.\n\n8.3 If You assert a patent infringement claim against Participant\nalleging that such Participant's Contributor Version directly or\nindirectly infringes any patent where such claim is resolved (such as by\nlicense or settlement) prior to the initiation of patent infringement\nlitigation, then the reasonable value of the licenses granted by such\nParticipant under Sections 2.1 or 2.2 shall be taken into account in\ndetermining the amount or value of any payment or license.\n\n8.4 In the event of termination under Sections 8.1 or 8.2 above, all\nend user license agreements (excluding distributors and resellers) which\nhave been validly granted by You or any distributor hereunder prior to\ntermination shall survive termination.\n\n9. LIMITATION OF LIABILITY.\n\n9.1 UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\n(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, HEALTH\nADMINISTRATION CORPORATION, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR\nOF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE\nTO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS\nOF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND\nALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE\nBEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF\nLIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\nPROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION\nOR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, BUT MAY ALLOW\nLIABILITY TO BE LIMITED; IN SUCH CASES, A PARTY'S, ITS EMPLOYEES',\nLICENSORS' OR AFFILIATES' LIABILITY SHALL BE LIMITED TO AUD$100. NOTHING\nCONTAINED IN THIS LICENSE SHALL PREJUDICE THE STATUTORY RIGHTS OF ANY\nPARTY DEALING AS A CONSUMER.\n\n9.2 Notwithstanding any other clause in the licence, and to the extent\npermitted by law:\n\n(a) Health Administration Corporation (\"the Corporation\") excludes all\n conditions and warranties which would otherwise be implied into\n a supply of goods or services arising out of or in relation to\n the granting of this licence by the Corporation or any associated\n acquisition of software to which this licence relates;\n\n(b) Where a condition or warranty is implied into such a supply and\n that condition or warranty cannot be excluded by law that warranty\n or condition is implied into that supply and the liability of the\n Health Administration Corporation for a breach of that condition or\n warranty is limited to the fullest extent permitted by law and, in\n respect of conditions and warranties implied by the Trade Practices\n Act (Commonwealth of Australia) 1974, is limited, to the extent\n permitted by law, to one or more of the following at the election\n of the Corporation:\n\n (A) In the case of goods: (i) the replacement of the goods or the\n supply of equivalent goods; (ii) the repair of the goods; (iii)\n the payment of the cost of replacing the goods or of acquiring\n equivalent goods; (iv) the payment of the cost of having the\n goods repaired; and\n\n (B) in the case of services: (i) the supplying of the services again;\n or (ii) the payment of the cost of having the services supplied\n again.\n\n10. MISCELLANEOUS.\n\nThis License represents the complete agreement concerning subject matter\nhereof. All rights in the Covered Software not expressly granted under\nthis License are reserved. Nothing in this License shall grant You any\nrights to use any of the trademarks of Health Administration Corporation\nor any of its Affiliates, even if any of such trademarks are included\nin any part of Covered Software and/or documentation to it.\n\nThis License is governed by the laws of the State of New South Wales,\nAustralia excluding its conflict-of-law provisions. All disputes or\nlitigation arising from or relating to this Agreement shall be subject\nto the jurisdiction of the Supreme Court of New South Wales. If any part\nof this Agreement is found void and unenforceable, it will not affect\nthe validity of the balance of the Agreement, which shall remain valid\nand enforceable according to its terms.\n\n11. RESPONSIBILITY FOR CLAIMS.\n\nAs between Health Administration Corporation and the Contributors,\neach party is responsible for claims and damages arising, directly or\nindirectly, out of its utilisation of rights under this License and You\nagree to work with Health Administration Corporation and Contributors\nto distribute such responsibility on an equitable basis. Nothing herein\nis intended or shall be deemed to constitute any admission of liability.\n\nEXHIBIT A\n\nThe contents of this file are subject to the HACOS License Version 1.2\n(the \"License\"); you may not use this file except in compliance with\nthe License.\n\nSoftware distributed under the License is distributed on an \"AS IS\"\nbasis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the\nLicense for the specific language governing rights and limitations under\nthe License.\n\nThe Original Software is \"NetEpi Analysis\". The Initial Developer\nof the Original Software is the Health Administration Corporation,\nincorporated in the State of New South Wales, Australia.\n\nCopyright (C) 2004, 2005 Health Administration Corporation.\nAll Rights Reserved.\nContributors: None.\n\nAPPENDIX 1. DIFFERENCES BETWEEN THE HACOS LICENSE VERSION 1.2, THE\nMOZILLA PUBLIC LICENSE VERSION 1.1 AND THE NOKIA OPEN SOURCE LICENSE\n(NOKOS LICENSE) VERSION 1.0A\n\nThe HACOS License Version 1.2 was derived from the Mozilla Public\nLicense Version 1.1 using some of the changes to the Mozilla Public\nLicense embodied in the Nokia Open Source License (NOKOS License)\nVersion 1.0a. The differences between the HACOS License Version 1.2\n(this document), the Mozilla Public License and the NOKOS License are\nas follows:\n\ni. The title of the license was changed to \"Health Administration\n Corporation Open Source License Version 1.2\".\n\nii. Globally, all references to \"Netscape Communications Corporation\",\n \"Mozilla\", \"Nokia\" and \"Nokia Corporation\" were changed to \"Health\n Administration Corporation\".\n\niii. Globally, the words \"means\", \"Covered Code\" and \"Covered Software\"\n as used in the Mozilla Public License were changed to \"shall means\",\n \"Covered Code\" and \"Covered Software\" respectively, as used in\n the NOKOS License.\n\niv. In Section 1 (Definitions), a definition of \"Health Administration\n Corporation\" was added.\n\nv. In Section 2, the term \"intellectual property rights\" used in the\n Mozilla Public License was replaced by the term \"copyrights\"\n as used in the NOKOS License.\n\nvi. In Section 2.2 (Contributor Grant), the words \"Subject to the\n terms of this License\" which appear in the NOKOS License were\n added to the Mozilla Public License.\n\nvii. The sentence \"However, You may include an additional document\n offering the additional rights described in Section 3.5.\" which\n appears in the Mozilla Public License was omitted.\n\nviii. Section 6.3 (Derivative Works) of the Mozilla Public License,\n which permits modifications to the Mozilla Public License,\n was omitted.\n\nix. The original Section 9 (Limitation of Liability) was renumbered\n as Section 9.1, a maximum liability of AUD$100 was specified\n for those jurisdictions which do not allow complete exclusion of\n liability but which do allow limitation of liability. The sentence\n \"NOTHING CONTAINED IN THE LICENSE SHALL PREJUDICE THE STATUTORY\n RIGHTS OF ANY PARTY DEALING AS A CONSUMER.\", which appears in the\n NOKOS License but not in the Mozilla Public License, was added.\n\nx. Section 9.2 was added in order to further limit liability to the\n maximum extent permitted by the Commonwealth of Australia Trade\n Practices Act 1974.\n\nxi. Section 10 of the Mozilla Public License, which provides additional\n conditions for United States Government End Users, was omitted.\n\nxii. The governing law and jurisdiction for the settlement of disputes\n in Section 11 of the Mozilla Public License and Section 10 of the\n NOKOS License was changed to the laws of the State of New South\n Wales and the Supreme Court of New South Wales respectively. The\n exclusion of the application of the United Nations Convention on\n Contracts for the International Sale of Goods which appears in\n the Mozilla Public License was omitted.\n\nxiii. Section 13 (Multiple-Licensed Code) of the Mozilla Public License\n was omitted.\n\nxiv. The provisions for alternative licensing arrangement for contributed\n code which appear in Exhibit A of the Mozilla Public License\n were omitted.", + "json": "hacos-1.2.json", + "yaml": "hacos-1.2.yml", + "html": "hacos-1.2.html", + "license": "hacos-1.2.LICENSE" + }, + { + "license_key": "happy-bunny", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-happy-bunny", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "================================================================================\nThe Happy Bunny License (Modified MIT License)\n--------------------------------------------------------------------------------\nCopyright (c) G-Truc Creation\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nRestrictions:\n By making use of the Software for military purposes, you choose to make a\n Bunny unhappy.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "json": "happy-bunny.json", + "yaml": "happy-bunny.yml", + "html": "happy-bunny.html", + "license": "happy-bunny.LICENSE" + }, + { + "license_key": "haskell-report", + "category": "Permissive", + "spdx_license_key": "HaskellReport", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The authors intend this Report to belong to the entire Haskell community, and\nso we grant permission to copy and distribute it for any purpose, provided that\nit is reproduced in its entirety, including this Notice. Modified versions of\nthis Report may also be copied and distributed for any purpose, provided that\nthe modified version is clearly presented as such, and that it does not claim\nto be a definition of the Haskell 2010 Language.", + "json": "haskell-report.json", + "yaml": "haskell-report.yml", + "html": "haskell-report.html", + "license": "haskell-report.LICENSE" + }, + { + "license_key": "hauppauge-firmware-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hauppauge-firmware-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "END-USER FIRMWARE LICENSE AGREEMENT (this license).\n\nLICENSE. You may copy and use the Firmware, subject to these conditions:\n\n1. This Firmware is licensed for use only in conjunction with\n Hauppauge component products. Use of the Firmware in conjunction\n with non-Hauppauge component products is not licensed hereunder.\n\n2. You may not copy, modify, rent, sell, distribute or transfer any\n part of the Firmware except as provided in this Agreement, and you\n agree to prevent unauthorized copying of the Firmware.\n\n3. You may not reverse engineer, decompile, or disassemble the Firmware.\n\n4. You may not sublicense the Firmware.\n\n5. The Firmware may contain the firmware or other property of third party\n suppliers.\n\nTRADEMARKS. Except as expressly provided herein, you shall not use\nHauppauge's name in any publications, advertisements, or other\nannouncements without Hauppauge's prior written consent. You do not\nhave any rights to use any Hauppauge trademarks or logos.\n\nOWNERSHIP OF FIRMWARE AND COPYRIGHTS. Title to all copies of the\nFirmware remains with Hauppauge or its suppliers. The Firmware is\ncopyrighted and protected by the laws of the United States and other\ncountries, and international treaty provisions. You may not remove any\ncopyright notices from the Firmware. Hauppauge may make changes to the\nFirmware, or items referenced therein, at any time without notice, but\nis not obligated to support or update the Firmware. Except as\notherwise expressly provided, Hauppauge grants no express or implied\nright under Hauppauge patents, copyrights, trademarks, or other\nintellectual property rights. You may transfer the Firmware only if a\ncopy of this license accompanies the Firmware and the recipient agrees\nto be fully bound by these terms.\n\nEXCLUSION OF WARRANTIES.\nTHE FIRMWARE IS PROVIDED \"AS IS\" AND POSSIBLY WITH FAULTS. UNLESS\nEXPRESSLY AGREED OTHERWISE, HAUPPAUGE AND ITS SUPPLIERS AND LICENSORS\nDISCLAIM ANY AND ALL WARRANTIES AND GUARANTEES, EXPRESS, IMPLIED OR\nOTHERWISE, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, NONINFRINGEMENT, OR FITNESS FOR A PARTICULAR PURPOSE.\nHauppauge does not warrant or assume responsibility for the accuracy\nor completeness of any information, text, graphics, links or other\nitems contained within the Firmware. You assume all liability,\nfinancial or otherwise, associated with Your use or disposition of the\nFirmware.\n\nLIMITATION OF LIABILITY. IN NO EVENT SHALL HAUPPAUGE OR ITS SUPPLIERS\nAND LICENSORS BE LIABLE FOR ANY DAMAGES WHATSOEVER FROM ANY CAUSE OF\nACTION OF ANY KIND (INCLUDING, WITHOUT LIMITATION, LOST PROFITS,\nBUSINESS INTERRUPTION, OR LOST INFORMATION) ARISING OUT OF THE USE,\nMODIFICATION, OR INABILITY TO USE THE FIRMWARE, OR OTHERWISE, NOR FOR\nPUNITIVE, INCIDENTAL, CONSEQUENTIAL, OR SPECIAL DAMAGES OF ANY KIND,\nEVEN IF HAUPPAUGE OR ITS SUPPLIERS AND LICENSORS HAVE BEEN ADVISED OF\nTHE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS PROHIBIT EXCLUSION\nOR LIMITATION OF LIABILITY FOR IMPLIED WARRANTIES OR CONSEQUENTIAL OR\nINCIDENTAL DAMAGES, SO CERTAIN LIMITATIONS MAY NOT APPLY. YOU MAY ALSO\nHAVE OTHER LEGAL RIGHTS THAT VARY BETWEEN JURISDICTIONS.\n\nWAIVER AND AMENDMENT. No modification, amendment or waiver of any\nprovision of this Agreement shall be effective unless in writing and\nsigned by an officer of Hauppauge. No failure or delay in exercising\nany right, power, or remedy under this Agreement shall operate as a\nwaiver of any such right, power or remedy. Without limiting the\nforegoing, terms and conditions on any purchase orders or similar\nmaterials submitted by you to Hauppauge, and any terms contained in\nHauppauges standard acknowledgment form that are in conflict with\nthese terms, shall be of no force or effect.\n\nSEVERABILITY. If any provision of this Agreement is held by a court of\ncompetent jurisdiction to be contrary to law, such provision shall be\nchanged and interpreted so as to best accomplish the objectives of the\noriginal provision to the fullest extent allowed by law and the\nremaining provisions of this Agreement shall remain in full force and\neffect.\n\nEXPORT RESTRICTIONS. Each party acknowledges that the Firmware is\nsubject to applicable import and export regulations of the United\nStates and of the countries in which each party transacts business,\nspecifically including U.S. Export Administration Act and Export\nAdministration Regulations. Each party shall comply with such laws and\nregulations, as well as all other laws and regulations applicable to\nthe Firmware. Without limiting the generality of the foregoing, each\nparty agrees that it will not export, re-export, transfer or divert\nany of the Firmware or the direct programs thereof to any restricted\nplace or party in accordance with U.S. export regulations. Note that\nFirmware containing encryption may be subject to additional\nrestrictions.\n\nAPPLICABLE LAWS. Claims arising under this Agreement shall be governed\nby the laws of New York, excluding its principles of conflict of laws\nand the United Nations Convention on Contracts for the Sale of\nGoods. You may not export the Firmware in violation of applicable\nexport laws and regulations. Hauppauge is not obligated under any\nother agreements unless they are in writing and signed by an\nauthorized representative of Hauppauge.\n\nGOVERNMENT RESTRICTED RIGHTS. The Firmware is provided with\n\"RESTRICTED RIGHTS.\" Use, duplication, or disclosure by the Government\nis subject to restrictions as set forth in FAR52.227-14 and\nDFAR252.227-7013 et seq. or their successors. Use of the Firmware by\nthe Government constitutes acknowledgment of Hauppauge's proprietary\nrights therein. Contractor or Manufacturer is Hauppauge Computer\nWorks, Inc. 91 Cabot Court Hauppauge, NY 11788\n\nTERMINATION OF THIS AGREEMENT. Hauppauge may terminate this Agreement\nat any time if you violate its terms. Upon termination, you will\nimmediately destroy the Firmware or return all copies of the Firmware\nto Hauppauge.", + "json": "hauppauge-firmware-eula.json", + "yaml": "hauppauge-firmware-eula.yml", + "html": "hauppauge-firmware-eula.html", + "license": "hauppauge-firmware-eula.LICENSE" + }, + { + "license_key": "hauppauge-firmware-oem", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hauppauge-firmware-oem", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OEM/IHV/ISV FIRMWARE LICENSE AGREEMENT\n\nIMPORTANT - PLEASE READ BEFORE INSTALLING OR USING THIS FIRMWARE\n\nDo not use or load this firmware image (the \"Firmware\") until you have\ncarefully read the following terms and conditions. By loading or using\nthe Firmware, you agree to the terms of this Agreement. If you do not\nwish to so agree, do not install or use the Firmware.\n\nLICENSEES: Please note:\n\n* If you are an End-User, only the END-USER FIRMWARE LICENSE AGREEMENT\n applies.\n\n* If you are an Original Equipment Manufacturer (OEM), Independent\n Hardware Vendor (IHV), or Independent Firmware Vendor (ISV), the\n OEM/IHV/ISV FIRMWARE LICENSE AGREEMENT applies (this license), as\n well as the END-USER FIRMWARE LICENSE AGREEMENT.\n\nLICENSE. This Firmware is licensed for use only in conjunction with\nHauppauge component products. Use of the Firmware in conjunction with\nnon-Hauppauge component products is not licensed hereunder. Subject to\nthe terms of this Agreement, Hauppauge grants to you a nonexclusive,\nnontransferable, worldwide, fully paid-up license under Hauppauge's\ncopyrights to: (i) copy the Firmware internally for your own\ndevelopment and maintenance purposes; (ii) copy and distribute the\nFirmware to your end-users, but only under a license agreement with\nterms at least as restrictive as those contained in Hauppauge's\nEND-USER FIRMWARE LICENSE AGREEMENT; and (iii) modify, copy and\ndistribute the end-user documentation which may accompany the\nFirmware, but only in association with the Firmware.\n\nIf you are not the final manufacturer or vendor of a computer system\nor firmware program incorporating the Firmware, then you may transfer\na copy of the Firmware, including any related documentation (modified\nor unmodified) to your recipient for use in accordance with the terms\nof this Agreement, provided such recipient agrees to be fully bound by\nthe terms hereof. You shall not otherwise assign, sublicense, lease,\nor in any other way transfer or disclose Firmware to any third\nparty. You may not, nor may you assist any other person or entity to\nmodify, translate, convert to another programming language, decompile,\nreverse engineer, or disassemble any portion of the Firmware or\notherwise attempt to derive source code from any object code modules\nof the Firmware or any internal data files generated by the\nFirmware. Your rights to redistribute the Firmware shall be contingent\nupon your installation of this Agreement in its entirety in the same\ndirectory as the Firmware.\n\nCONTRACTORS. For the purpose of this Agreement, and notwithstanding\nanything to the contrary hereunder, solely with respect to the\nrequirements for compliance with the terms hereunder, any contractors\nor consultants that You use to perform the work or otherwise assist\nYou in the development or products using this Firmware shall be deemed\nto be End Users and accordingly, upon receipt of the Firmware, shall\nbe bound by the terms of the END-USER FIRMWARE LICENSE AGREEMENT. No\nadditional agreement between You and such consultants or contractors\nis required under this Agreement to detail such compliance.\n\nTRADEMARKS. Except as expressly provided herein, you shall not use\nHauppauge's name in any publications, advertisements, or other\nannouncements without Hauppauge's prior written consent. You do not\nhave any rights to use any Hauppauge trademarks or logos.\n\nOWNERSHIP OF FIRMWARE AND COPYRIGHTS. Firmware and accompanying\nmaterials, if any, are owned by Hauppauge or its suppliers and\nlicensors and may be protected by copyright, trademark, patent and\ntrade secret law and international treaties. Any rights, express or\nimplied, in the intellectual property embodied in the foregoing, other\nthan those specified in this Agreement, are reserved by Hauppauge and\nits suppliers and licensors or otherwise as set forth in any\napplicable open source license agreement. You will keep the Firmware\nfree of liens, attachments, and other encumbrances. You agree not to\nremove any proprietary notices and/or any labels from the Firmware and\naccompanying materials without prior written approval by Hauppauge\n\nEXCLUSION OF WARRANTIES.\nTHE FIRMWARE IS PROVIDED \"AS IS\" AND POSSIBLY WITH FAULTS. UNLESS\nEXPRESSLY AGREED OTHERWISE, HAUPPAUGE AND ITS SUPPLIERS AND LICENSORS\nDISCLAIM ANY AND ALL WARRANTIES AND GUARANTEES, EXPRESS, IMPLIED OR\nOTHERWISE, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, NONINFRINGEMENT, OR FITNESS FOR A PARTICULAR PURPOSE.\nHauppauge does not warrant or assume responsibility for the accuracy\nor completeness of any information, text, graphics, links or other\nitems contained within the Firmware. You assume all liability,\nfinancial or otherwise, associated with Your use or disposition of the\nFirmware.\n\nLIMITATION OF LIABILITY. IN NO EVENT SHALL HAUPPAUGE OR ITS SUPPLIERS\nAND LICENSORS BE LIABLE FOR ANY DAMAGES WHATSOEVER FROM ANY CAUSE OF\nACTION OF ANY KIND (INCLUDING, WITHOUT LIMITATION, LOST PROFITS,\nBUSINESS INTERRUPTION, OR LOST INFORMATION) ARISING OUT OF THE USE,\nMODIFICATION, OR INABILITY TO USE THE FIRMWARE, OR OTHERWISE, NOR FOR\nPUNITIVE, INCIDENTAL, CONSEQUENTIAL, OR SPECIAL DAMAGES OF ANY KIND,\nEVEN IF HAUPPAUGE OR ITS SUPPLIERS AND LICENSORS HAVE BEEN ADVISED OF\nTHE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS PROHIBIT EXCLUSION\nOR LIMITATION OF LIABILITY FOR IMPLIED WARRANTIES OR CONSEQUENTIAL OR\nINCIDENTAL DAMAGES, SO CERTAIN LIMITATIONS MAY NOT APPLY. YOU MAY ALSO\nHAVE OTHER LEGAL RIGHTS THAT VARY BETWEEN JURISDICTIONS.\n\nWAIVER AND AMENDMENT. No modification, amendment or waiver of any\nprovision of this Agreement shall be effective unless in writing and\nsigned by an officer of Hauppauge. No failure or delay in exercising\nany right, power, or remedy under this Agreement shall operate as a\nwaiver of any such right, power or remedy. Without limiting the\nforegoing, terms and conditions on any purchase orders or similar\nmaterials submitted by you to Hauppauge, and any terms contained in\nHauppauges standard acknowledgment form that are in conflict with\nthese terms, shall be of no force or effect.\n\nSEVERABILITY. If any provision of this Agreement is held by a court of\ncompetent jurisdiction to be contrary to law, such provision shall be\nchanged and interpreted so as to best accomplish the objectives of the\noriginal provision to the fullest extent allowed by law and the\nremaining provisions of this Agreement shall remain in full force and\neffect.\n\nEXPORT RESTRICTIONS. Each party acknowledges that the Firmware is\nsubject to applicable import and export regulations of the United\nStates and of the countries in which each party transacts business,\nspecifically including U.S. Export Administration Act and Export\nAdministration Regulations. Each party shall comply with such laws and\nregulations, as well as all other laws and regulations applicable to\nthe Firmware. Without limiting the generality of the foregoing, each\nparty agrees that it will not export, re-export, transfer or divert\nany of the Firmware or the direct programs thereof to any restricted\nplace or party in accordance with U.S. export regulations. Note that\nFirmware containing encryption may be subject to additional\nrestrictions.\n\nAPPLICABLE LAWS. Claims arising under this Agreement shall be governed\nby the laws of New York, excluding its principles of conflict of laws\nand the United Nations Convention on Contracts for the Sale of\nGoods. You may not export the Firmware in violation of applicable\nexport laws and regulations. Hauppauge is not obligated under any\nother agreements unless they are in writing and signed by an\nauthorized representative of Hauppauge.\n\nGOVERNMENT RESTRICTED RIGHTS. The Firmware is provided with\n\"RESTRICTED RIGHTS.\" Use, duplication, or disclosure by the Government\nis subject to restrictions as set forth in FAR52.227-14 and\nDFAR252.227-7013 et seq. or their successors. Use of the Firmware by\nthe Government constitutes acknowledgment of Hauppauge's proprietary\nrights therein. Contractor or Manufacturer is Hauppauge Computer\nWorks, Inc. 91 Cabot Court Hauppauge, NY 11788\n\nTERMINATION OF THIS AGREEMENT. Hauppauge may terminate this Agreement\nat any time if you violate its terms. Upon termination, you will\nimmediately destroy the Firmware or return all copies of the Firmware\nto Hauppauge.", + "json": "hauppauge-firmware-oem.json", + "yaml": "hauppauge-firmware-oem.yml", + "html": "hauppauge-firmware-oem.html", + "license": "hauppauge-firmware-oem.LICENSE" + }, + { + "license_key": "hazelcast-community-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-hazelcast-community-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Hazelcast Community License\n\nVersion 1.0\n\nThis Hazelcast Community License Agreement Version 1.0 (the \u201cAgreement\u201d) sets \nforth the terms on which Hazelcast, Inc. (\u201cHazelcast\u201d) makes available certain \nsoftware made available by Hazelcast under this Agreement (the \u201cSoftware\u201d). BY \nINSTALLING, DOWNLOADING, ACCESSING, USING OR DISTRIBUTING ANY OF THE SOFTWARE, \nYOU AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT.IF YOU DO NOT AGREE TO \nSUCH TERMS AND CONDITIONS, YOU MUST NOT USE THE SOFTWARE. IF YOU ARE RECEIVING \nTHE SOFTWARE ON BEHALF OF A LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU \nHAVE THE ACTUAL AUTHORITY TO AGREE TO THE TERMS AND CONDITIONS OF THIS \nAGREEMENT ON BEHALF OF SUCH ENTITY. \u201cLicensee\u201d means you, an individual, or \nthe entity on whose behalf you are receiving the Software.\n\n1. LICENSE GRANT AND CONDITIONS.\n\n1.1 License. Subject to the terms and conditions of this Agreement, Hazelcast \nhereby grants to Licensee a non-exclusive, royalty-free, worldwide, \nnon-transferable, non-sublicenseable license during the term of this Agreement \nto: (a) use the Software; (b) prepare modifications and derivative works of \nthe Software; (c) distribute the Software (including without limitation in \nsource code or object code form); and (d) reproduce copies of the Software (\nthe \u201cLicense\u201d). Licensee is not granted the right to, and Licensee shall not, \nexercise the License for an Excluded Purpose. For purposes of this Agreement, \n\u201cExcluded Purpose\u201d means making available any software-as-a-service, \nplatform-as-a-service, infrastructure-as-a-service or other similar online \nservice that competes with Hazelcast products or services that provide the \nSoftware.\n\n1.2 Conditions. In consideration of the License, Licensee\u2019s distribution of \nthe Software is subject to the following conditions:\n\na. Licensee must cause any Software modified by Licensee to carry prominent \nnotices stating that Licensee modified the Software.\n\nb. On each Software copy, Licensee shall reproduce and not remove or alter all \nHazelcast or third party copyright or other proprietary notices contained in \nthe Software, and Licensee must provide the notice below with each copy.\n\n\u201cThis software is made available by Hazelcast, Inc., under the terms of the \nHazelcast Community License Agreement, Version 1.0 located at \nhttp://hazelcast.com/Hazelcast-community-license. BY INSTALLING, DOWNLOADING, \nACCESSING, USING OR DISTRIBUTING ANY OF THE SOFTWARE, YOU AGREE TO THE TERMS \nOF SUCH LICENSE AGREEMENT.\u201d\n\n1.3 Licensee Modifications. Licensee may add its own copyright notices to \nmodifications made by Licensee and may provide additional or different license \nterms and conditions for use, reproduction, or distribution of Licensee\u2019s \nmodifications. While redistributing the Software or modifications thereof, \nLicensee may choose to offer, for a fee or free of charge, support, warranty, \nindemnity, or other obligations.Licensee, and not Hazelcast, will be \nresponsible for any such obligations.\n\n1.4 No Sublicensing. The License does not include the right to sublicense the \nSoftware, however, each recipient to which Licensee provides the Software may \nexercise the Licenses so long as such recipient agrees to the terms and \nconditions of this Agreement.\n\n2. TERM AND TERMINATION.\n\nThis Agreement will continue unless and until earlier terminated as set forth \nherein. If Licensee breaches any of its conditions or obligations under this \nAgreement, this Agreement will terminate automatically and the License will \nterminate automatically and permanently.\n\n3. INTELLECTUAL PROPERTY.\n\nAs between the parties, Hazelcast will retain all right, title, and interest \nin the Software, and all intellectual property rights therein. Hazelcast \nhereby reserves all rights not expressly granted to Licensee in this \nAgreement.Hazelcast hereby reserves all rights in its trademarks and service \nmarks, and no licenses therein are granted in this Agreement.\n\n4. DISCLAIMER.\n\nHAZELCAST HEREBY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS, EXPRESS, \nIMPLIED, STATUTORY, OR OTHERWISE, AND SPECIFICALLY DISCLAIMS ANY WARRANTY OF \nMERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, WITH RESPECT TO THE \nSOFTWARE.\n\n5. LIMITATION OF LIABILITY.\n\nHAZELCAST WILL NOT BE LIABLE FOR ANY DAMAGES OF ANY KIND, INCLUDING BUT NOT \nLIMITED TO, LOST PROFITS OR ANY CONSEQUENTIAL, SPECIAL, INCIDENTAL, INDIRECT, \nOR DIRECT DAMAGES, HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, ARISING OUT \nOF THIS AGREEMENT. THE FOREGOING SHALL APPLY TO THE EXTENT PERMITTED BY \nAPPLICABLE LAW.\n\n6. GENERAL.\n\n6.1 Governing Law.This Agreement will be governed by and interpreted in \naccordance with the laws of the state of California, without reference to its \nconflict of laws principles. If Licensee is located within the United States, \nall disputes arising out of this Agreement are subject to the exclusive \njurisdiction of courts located in Santa Clara County, California, USA. If \nLicensee is located outside of the United States, any dispute, controversy or \nclaim arising out of or relating to this Agreement will be referred to and \nfinally determined by arbitration in accordance with the JAMS International \nArbitration Rules. The tribunal will consist of one arbitrator.The place of \narbitration will be San Francisco, California.The language to be used in the \narbitral proceedings will be English.Judgment upon the award rendered by the \narbitrator may be entered in any court having jurisdiction thereof.\n\n6.2. Assignment. Licensee is not authorized to assign its rights under this \nAgreement to any third party.Hazelcast may freely assign its rights under this \nAgreement to any third party.\n\n6.3. Other. This Agreement is the entire agreement between the parties \nregarding the subject matter hereof. No amendment or modification of this \nAgreement will be valid or binding upon the parties unless made in writing and \nsigned by the duly authorized representatives of both parties. In the event \nthat any provision, including without limitation any condition, of this \nAgreement is held to be unenforceable, this Agreement and all licenses and \nrights granted hereunder will immediately terminate. Waiver by Hazelcast of a \nbreach of any provision of this Agreement or the failure by Hazelcast to \nexercise any right hereunder will not be construed as a waiver of any \nsubsequent breach of that right or as a waiver of any other right.", + "json": "hazelcast-community-1.0.json", + "yaml": "hazelcast-community-1.0.yml", + "html": "hazelcast-community-1.0.html", + "license": "hazelcast-community-1.0.LICENSE" + }, + { + "license_key": "hdf4", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-hdf4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without \nmodification, are permitted for any purpose (including commercial purposes) \nprovided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, \n this list of conditions, and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, \n this list of conditions, and the following disclaimer in the documentation \n and/or materials provided with the distribution.\n\n3. In addition, redistributions of modified forms of the source or binary \n code must carry prominent notices stating that the original code was \n changed and the date of the change.\n\n4. All publications or advertising materials mentioning features or use of \n this software are asked, but not required, to acknowledge that it was \n developed by The HDF Group and by the National Center for Supercomputing \n Applications at the University of Illinois at Urbana-Champaign and \n credit the contributors.\n\n5. Neither the name of The HDF Group, the name of the University, nor the \n name of any Contributor may be used to endorse or promote products derived \n from this software without specific prior written permission from The HDF\n Group, the University, or the Contributor, respectively.\n\nDISCLAIMER:\nTHIS SOFTWARE IS PROVIDED BY THE HDF GROUP AND THE CONTRIBUTORS \"AS IS\" \nWITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED. In no event \nshall The HDF Group or the Contributors be liable for any damages suffered \nby the users arising out of the use of this software, even if advised of \nthe possibility of such damage.", + "json": "hdf4.json", + "yaml": "hdf4.yml", + "html": "hdf4.html", + "license": "hdf4.LICENSE" + }, + { + "license_key": "hdf5", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-hdf5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without \nmodification, are permitted for any purpose (including commercial purposes) \nprovided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, \n this list of conditions, and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, \n this list of conditions, and the following disclaimer in the documentation \n and/or materials provided with the distribution.\n\n3. Neither the name of The HDF Group, the name of the University, nor the \n name of any Contributor may be used to endorse or promote products derived \n from this software without specific prior written permission from \n The HDF Group, the University, or the Contributor, respectively.\n\nDISCLAIMER: \nTHIS SOFTWARE IS PROVIDED BY THE HDF GROUP AND THE CONTRIBUTORS \n\"AS IS\" WITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED. IN NO EVENT SHALL THE HDF GROUP OR THE CONTRIBUTORS BE LIABLE FOR ANY DAMAGES SUFFERED BY THE USERS ARISING OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n \nYou are under no obligation whatsoever to provide any bug fixes, patches, or upgrades to the features, functionality or performance of the source code (\"Enhancements\") to anyone; however, if you choose to make your Enhancements available either publicly, or directly to The HDF Group, without imposing a separate written license agreement for such Enhancements, then you hereby grant the following license: a non-exclusive, royalty-free perpetual license to install, use, modify, prepare derivative works, incorporate into other computer software, distribute, and sublicense such enhancements or derivative works thereof, in binary and source code form.", + "json": "hdf5.json", + "yaml": "hdf5.yml", + "html": "hdf5.html", + "license": "hdf5.LICENSE" + }, + { + "license_key": "hdparm", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-hdparm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You may freely use, modify, and redistribute the hdparm program, as either\nbinary or source, or both.\n\nThe only condition is that my name and copyright notice remain in the source\ncode as-is.\n\nMark Lord (mlord@pobox.com)", + "json": "hdparm.json", + "yaml": "hdparm.yml", + "html": "hdparm.html", + "license": "hdparm.LICENSE" + }, + { + "license_key": "helios-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-helios-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "END USER LICENSE AGREEMENT FOR HELIOS SOFTWARE SOLUTIONS SOFTWARE.\n\nIMPORTANT - READ CAREFULLY: This Helios Software Solutions End-User License Agreement (\"EULA\") is a legal agreement between you (either an individual person or a single legal entity, who will be referred to in this EULA as \"You\") and Helios Software Solutions (\"Helios\") for the Helios software product that accompanies this EULA, including any associated media, printed materials and electronic documentation (the \"Software Product\"). The Software Product also includes any software updates, add-on components, web services and/or supplements that Helios may provide to You or make available to You after the date You obtain Your initial copy of the Software Product to the extent that such items are not accompanied by a separate license agreement or terms of use. By installing, copying, downloading, accessing or otherwise using the Software Product, You agree to be bound by the terms of this EULA. If You do not agree to the terms of this EULA, do not install, access or use the Software Product; instead, You should return it, with proof of purchase, to Your place of purchase for a full refund.\n\nSOFTWARE PRODUCT LICENSE\nThe Software Product is protected by intellectual property laws and treaties. The Software Product is licensed, not sold.\n\n1. GRANT OF LICENSE. This Section of the EULA describes Your general rights to install and use the Software Product. The license rights described in this Section are subject to all other terms and conditions of this EULA.\n\nGeneral License Grant to Install and Use Software Product. You may install and use one copy of the Software Product on a single computer, device, workstation, terminal, or other digital electronic device (\"Device\"). You may make a second copy of the Software Product and install it on a portable Device for the exclusive use of the person who is the primary user of the first copy of the Software Product. A license for the Software Product may not be shared.\n\nAlternative License Grant for Storage/Network Use. As an alternative to the rights granted in the previous section, You may install a copy of the Software Product on one storage Device, such as a network server, and allow individuals within Your business or enterprise to access and use the Software Product from other Devices over a private network, provided that You acquire and dedicate a license for the storage Device upon which the Software Product is installed and each separate Device from which the Software Product is accessed and used. A license for the Software Product may not be used concurrently on different Devices unless expressly permitted by this EULA.\n\nSite License. For the purposes of this EULA, a \"site\"\u009d is a computer network in a single physical location. If the Software Product is licensed with site license terms specified in the applicable price list or product packaging for the Software Product, you may make, use and install as many additional copies of the Software Product on the number of Client Devices as the site license authorizes. You must have a reasonable mechanism in place to ensure that the number of Client Devices on which the Software Product has been installed does not exceed the number of licenses you have obtained. This license authorizes you to make or download one copy of the Documentation for each additional copy authorized by the volume license, provided that each such copy contains all of the Documentation's proprietary notices.\n\nReservation of Rights. All rights not expressly granted are reserved by Helios.\n\n2. DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS. \nCopy Protection. The Software Product may include copy protection technology to prevent the unauthorized copying of the Software Product or may require original media for use of the Software Product on the Device. It is illegal to make unauthorized copies of the Software Product or to circumvent any copy protection technology included in the Software Product.\nLimitations on Reverse Engineering, Decompilation, and Disassembly. You may not reverse engineer, decompile, or disassemble the Software Product, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation.\n\nSeparation of Component Parts. The Software Product is licensed as a single product. Its component parts may not be separated for use on more than one Device unless expressly permitted by this EULA.\nSamples. The Software Product may be provided with certain \"Samples\" intended to demonstrate use of the Software Product or provide a base starting point for use of the Software Product. Samples include macros, clip libraries, syntax definition files, or similar items. If Samples are provided, they are considered part of the Software Product for purposes of this EULA. However, you may use and create derivative works from Samples, provided that you do so in conjunction with your use of the Software Product, and that you maintain any copyright notices that may be incorporated within the Samples.\n\nTrademarks. This EULA does not grant You any rights in connection with any trade marks of Helios.\n\nNo rental, leasing or commercial hosting. You may not rent, lease, lend or provide commercial hosting services to third parties with the Software Product.\n\nSupport Services. Helios may provide You with support services related to the Software Product (\"Support Services\"). Use of Support Services is governed by the Helios policies and programs described in the user manual, in \"online\" documentation, or in other Helios-provided materials. Any supplemental software code provided to You as part of the Support Services are considered part of the Software Product and subject to the terms and conditions of this EULA. You acknowledge and agree that Helios may use technical information You provide to Helios as part of the Support Services for its business purposes, including for product support and development. Helios will not utilize such technical information in a form that personally identifies You.\n\nTerm. If the Software Product that was distributed to you was labeled as an EVALUATION VERSION or TRY & BUY VERSION (or its functional equivalent) (an \"Evaluation Version\"), the license granted under this EULA commences upon the installation of the Software Product and is effective for 30 days following the date you install the Software Product (the \"Evaluation Term\"). Evaluation Version Software Products may include software code intended to disable their functionality after the expiration of the Evaluation Term. You may take no actions to circumvent the operation of such disabling code, and you accept all risks that might arise from such disabling code. If the Software Product was not distributed as an Evaluation Version, or if you converted an Evaluation Version installation of the Software Product to a non-Evaluation Version of the Software Product by authorised use of the conversion mechanism provided with the Software Product (in each case either being or resulting in a \"Full-License Version\"), the licenses granted under this EULA commence upon the installation of the Software Product and are effective in perpetuity unless terminated per the terms of this Agreement.\n\nSoftware Transfer. You may permanently transfer all of your rights under this EULA (except if your rights are in an Evaluation Version), provided you retain no copies, you transfer all copies of the Software Product (including all component parts, the media and printed materials, any prior versions, and this EULA), and the recipient agrees to be subject to the terms of this EULA. Upon the occurrence of such a transfer, your rights under this EULA terminate immediately.\n\nTermination. Upon the expiration of the Evaluation Term (if any), your rights under this EULA terminate automatically without notice. Without prejudice to any other rights, Helios may terminate this EULA if You fail to comply with the terms and conditions of this EULA. In such event, You must destroy all copies of the Software Product and all of its component parts. The terms of this paragraph shall survive any termination of this EULA.\n\n3. UPGRADES. \nIf the Software Product is labeled as an upgrade, You must be properly licensed to use a product identified by Helios as being eligible for the upgrade in order to use the Software Product. A Software Product labeled as an upgrade replaces or supplements (and may disable) the product that formed the basis for Your eligibility for the upgrade. You may use the resulting upgraded product only in accordance with the terms of this EULA. If the Software Product is an upgrade of a component of a package of software programs that You licensed as a single product, the Software Product may be used and transferred only as part of that single product package and may not be separated for use on more than one Device.\n\n4. INTELLECTUAL PROPERTY RIGHTS. All title and intellectual property rights in and to the Software Product (including but not limited to any images, text, and \"applets\" incorporated into the Software Product), the accompanying printed materials, and any copies of the Software Product are owned by Helios or its suppliers. All title and intellectual property rights in and to the content that is not contained in the Software Product, but which may be accessed through use of the Software Product, is the property of the respective content owners and may be protected by applicable copyright or other intellectual property laws and treaties. This EULA grants You no rights to use such content. If this Software Product contains documentation that is provided only in electronic form, you may print one copy of such electronic documentation. You may not copy the printed materials accompanying the Software Product.\n\n5. BACKUP COPY. After installation of one copy of the Software Product pursuant to this EULA, you may keep the original media on which the Software Product was provided by Helios solely for backup or archival purposes. Except as expressly provided in this EULA, you may not make copies of the Software Product or the printed materials accompanying the Software Product.\n\n6. U.S. GOVERNMENT LICENSE RIGHTS. The Software Product is commercial computer software developed exclusively at private expense, and in all respects is proprietary data belonging to Helios Software Solutions or its suppliers. The Software Product is comprised of \u00e2\u20ac\u0153commercial computer software\u00e2\u20ac\u009d and \u00e2\u20ac\u0153commercial computer software documentation\u00e2\u20ac\u009d as such terms are used in 48 C.F.R \u00c2\u00a7 12.212. Consistent with 48 C.F.R. \u00c2\u00a7 12.212 and 48 C.F.R. \u00c2\u00a7 227.7202-1 through \u00c2\u00a7 227.7202-4, all U.S. Government licensees acquire the Software Product with only those rights set forth in this EULA.\n\n7. APPLICABLE LAW. This Agreement is governed by the laws of England, without reference to conflict of laws principles. The application of the United Nations Convention of Contracts for the International Sale of Goods is expressly excluded. This Agreement sets forth all rights for the user of the Software Product and is the entire agreement between the parties. This Agreement supersedes any other communications with respect to the Software Product. This Agreement may not be modified except by a written addendum issued by a duly authorized representative of Helios. No provision hereof shall be deemed waived unless such waiver shall be in writing and signed by Helios or a duly authorized representative of Helios. If any provision of this Agreement is held invalid, the remainder of this Agreement shall continue in full force and effect. The parties confirm that it is their wish that this Agreement has been written in the English language only.\nShould you have any questions concerning these terms and conditions, or if you would like to contact Helios for any other reason, please call +44 (1772) 786373, fax +44 (1772) 786375, or write to: Helios Software Solutions, PO Box 619 Longridge, PR3 2GW, England. http://www.textpad.com/.\n\n9. LIMITED WARRANTY. Helios warrants that the SOFTWARE PRODUCT will perform substantially in accordance with the accompanying materials for a period of ninety (90) days from the date of receipt. \nIf an implied warranty or condition is created by your state/jurisdiction and federal or state/provincial law prohibits disclaimer of it, you also have an implied warranty or condition, BUT ONLY AS TO DEFECTS DISCOVERED DURING THE PERIOD OF THIS LIMITED WARRANTY (NINETY DAYS). AS TO ANY DEFECTS DISCOVERED AFTER THE NINETY (90) DAY PERIOD, THERE IS NO WARRANTY OR CONDITION OF ANY KIND. Some states/jurisdictions do not allow limitations on how long an implied warranty or condition lasts, so the above limitation may not apply to you.\nAny supplements or updates to the SOFTWARE PRODUCT, including without limitation, any (if any) service packs or hot fixes provided to you after the expiration of the ninety (90) day Limited Warranty period are not covered by any warranty or condition, express, implied or statutory.\nLIMITATION ON REMEDIES; NO CONSEQUENTIAL OR OTHER DAMAGES. Your exclusive remedy for any breach of this Limited Warranty is as set forth below. Except for any refund elected by Helios, YOU ARE NOT ENTITLED TO ANY DAMAGES, INCLUDING BUT NOT LIMITED TO CONSEQUENTIAL DAMAGES, if the Software Product does not meet Helios' Limited Warranty, and, to the maximum extent allowed by applicable law, even if any remedy fails of its essential purpose. The terms of Section 11 below (\"Exclusion of Incidental, Consequential and Certain Other Damages\") are also incorporated into this Limited Warranty. Some states/jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so the above limitation or exclusion may not apply to you. This Limited Warranty gives you specific legal rights. You may have others which vary from state/jurisdiction to state/jurisdiction.\nYOUR EXCLUSIVE REMEDY. Helios' and its suppliers' entire liability and your exclusive remedy shall be, at Helios' option from time to time exercised subject to applicable law, (a) return of the price paid (if any) for the Software Product, or (b) repair or replacement of the Software Product, that does not meet this Limited Warranty and that is returned to Helios with a copy of your receipt. You will receive the remedy elected by Helios without charge, except that you are responsible for any expenses you may incur (e.g. cost of shipping the Software Product to Helios). This Limited Warranty is void if failure of the Software Product has resulted from accident, abuse, misapplication, abnormal use or a virus. Any replacement Software Product will be warranted for the remainder of the original warranty period or thirty (30) days, whichever is longer. Neither these remedies nor any product support services offered by Helios are available without proof of purchase from an authorized source. To exercise your remedy, contact: Helios Software Solutions, PO Box 619 Longridge, PR3 2GW, England.\n\n10. DISCLAIMER OF WARRANTIES. THE LIMITED WARRANTY THAT APPEARS ABOVE IS THE ONLY EXPRESS WARRANTY MADE TO YOU AND IS PROVIDED IN LIEU OF ANY OTHER EXPRESS WARRANTIES (IF ANY) CREATED BY ANY DOCUMENTATION OR PACKAGING. EXCEPT FOR THE LIMITED WARRANTY AND TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, HELIOS AND ITS SUPPLIERS PROVIDE THE SOFTWARE AND SUPPORT SERVICES (IF ANY) AS IS AND WITH ALL FAULTS, AND HEREBY DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES, DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF ACCURACY OR COMPLETENESS OR RESPONSES, OF RESULTS, OF WORKMANLIKE EFFORT, OF LACK OF VIRUSES AND OF LACK OF NEGLIGENCE, ALL WITH REGARD TO THE SOFTWARE, AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT WITH REGARD TO THE SOFTWARE.\n\n11. EXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER DAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL HELIOS OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS OR CONFIDENTIAL OR OTHER INFORMATION, FOR BUSINESS INTERRUPTION, FOR PERSONAL INJURY, FOR LOSS OF PRIVACY, FOR FAILURE TO MEET ANY DUTY INCLUDING OF GOOD FAITH OR OF REASONABLE CARE, FOR NEGLIGENCE, AND FOR ANY OTHER PECUNIARY OR OTHER LOSS WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF OR INABILITY TO USE THE SOFTWARE PRODUCT, THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES, OR OTHERWISE UNDER OR IN CONNECTION WITH ANY PROVISION OF THIS EULA, EVEN IN THE EVENT OF THE FAULT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, BREACH OF CONTRACT OR BREACH OF WARRANTY OF HELIOS OR ANY SUPPLIER, AND EVEN IF HELIOS OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n12. LIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING ANY DAMAGES THAT YOU MIGHT INCUR FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT LIMITATION, ALL DAMAGES REFERENCED ABOVE AND ALL DIRECT OR GENERAL DAMAGES), THE ENTIRE LIABILITY OF HELIOS AND ANY OF ITS SUPPLIERS UNDER ANY PROVISION OF THIS EULA AND YOUR EXCLUSIVE REMEDY FOR ALL OF THE FOREGOING (EXCEPT FOR ANY REMEDY OF REPAIR OR REPLACEMENT ELECTED BY HELIOS WITH RESPECT TO ANY BREACH OF THE LIMITED WARRANTY) SHAL BE LIMITED TO THE GREATER OF THE AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE OR U.S. $5.00. THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS (INCLUDING SECTIONS 7, 8, AND 9 ABOVE) SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, EVEN IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE.\n\n13. ENTIRE AGREEMENT. This EULA (including any addendum or amendment to this EULA which is included with the Software Product) is the entire agreement between you and Helios relating to the Software Product and the support services (if any) and they supersede all prior or contemporaneous oral or written communications, proposals and representations with respect to the Software Product or any other subject matter covered by this EULA. To the extent the terms of any Helios policies or programs for support services conflict with the terms of this EULA, the terms of this EULA shall control.", + "json": "helios-eula.json", + "yaml": "helios-eula.yml", + "html": "helios-eula.html", + "license": "helios-eula.LICENSE" + }, + { + "license_key": "helix", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-helix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Helix DNA Technology Binary Research Use License\n\nREDISTRIBUTION NOT PERMITTED\n\nThis Helix DNA Technology Binary Research Use License (\"License\") is a legal agreement between You and RealNetworks, Inc. and its suppliers and licensors (collectively, \"RealNetworks\") for the binary versions of the Helix DNA Compiled Binaries distributed under this License (\"Software\"), which are made available from the \"Helix DNA Compiled Binaries\" section of the www.helixcommunity.org Web site. \"You\" means an individual, or a legal entity acting by and through an individual or individuals, exercising rights either under this License. For legal entities, \"You\" includes any entity that by majority voting interest controls, is controlled by, or is under common control with You. The terms and conditions for this License are as follows:\n\nBy clicking on or accepting the \"I AGREE TO THE ABOVE LICENSE TERMS\" option below, or by installing, copying or otherwise using the Software, You agree to be bound by the terms of this License Agreement. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE AGREEMENT, CLICK THE \"I DO NOT AGREE TO THE ABOVE LICENSE TERMS\" BUTTON AND/OR DO NOT INSTALL THE SOFTWARE.\n\nYOU AGREE THAT YOUR USE OF THE SOFTWARE ACKNOWLEDGES THAT YOU HAVE READ THIS LICENSE, UNDERSTAND IT, AND AGREE TO BE BOUND BY ITS TERMS AND CONDITIONS.\n\n1. GRANT OF LICENSE FOR INTERNAL RESEARCH AND DEVELOPMENT WORK. Subject to the restrictions set forth herein, RealNetworks hereby grants to You a non-exclusive, non-sublicensable, personal license to use the Software in object code and any accompanying documentation (\"Documentation\") solely for Your internal, non-commercial evaluation and research use, provided that You may only install and use a reasonable number of copies of the Software on computers owned or controlled by You and located on Your premises. As part of such use You may combine the Software with other Helix software properly licensed to You under the terms of the RealNetworks Community Source License Agreement or the RealNetworks Public Source License Agreement, but You may not otherwise create derivative works of the Software or Documentation.\n\n2. LICENSE RESTRICTIONS.\n\na) You may not: (i) permit other individuals to use the Software except under the terms listed above; (ii) modify, translate, reverse engineer, decompile, disassemble or use any other method (including \"clean room\" development) to learn the source code of the Software (except to the extent that this restriction is expressly prohibited by law); (iii) rent, lease, transfer, or otherwise transfer rights to the Software or Documentation; (iv) remove any proprietary notices or labels on the Software or Documentation; (v) use the Software to encode, reproduce or copy any material or intellectual property You do not have the right to encode, reproduce, or copy; (vi) use the Software to develop any application that has the capability of transcoding or converting RealAudio or RealVideo Files into any other file format (\"Transcode\" means to alter the current encoding or form of media files that was decoded from its original form, including by way of example but not limited to by way of example but not limited to: decompression of an audio or video stream and recompression using a different compression algorithm); or (vii) make available to any third party the results of any evaluation or testing of the Software by You under this License. Any such forbidden use shall immediately terminate Your license to the Software.\n\nb) You agree that You shall only use the Software and Documentation in a manner that complies with all applicable laws in the jurisdictions in which You use the Software and Documentation, including, but not limited to, applicable restrictions concerning copyright and other intellectual property rights.\n\nc) You may not use the Software in an attempt to, or in conjunction with, any device, program or service designed to circumvent technological measures employed to control access to, or the rights in, a digital media content file or other work protected by the copyright laws of any jurisdiction.\n\nd) Certain components of the Software may embody a serial copying management system required by the laws of the United States. You may not circumvent or attempt to circumvent this system by any means.\n\n3. COPIES OF SOFTWARE AND ENHANCEMENTS. This license does not grant You any right to any enhancement or update.\n\n4. TITLE. Title, ownership, rights, and intellectual property rights in and to the Software and Documentation shall remain in RealNetworks. The Software is protected by the copyright laws of the United States and international copyright treaties. Title, ownership rights and intellectual property rights in and to the content accessed through the Software including the content contained in the Software media demonstration files shall be retained by the applicable content owner and may be protected by applicable copyright or other law. This license gives You no rights to such content.\n\n5. DISCLAIMER OF WARRANTY & LIMIT OF LIABILITY. THE SOFTWARE AND DOCUMENTATION ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, REALNETWORKS FURTHER DISCLAIMS ALL WARRANTIES, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. THE ENTIRE RISK ARISING OUT OF THE USE OR PERFORMANCE OF THE SOFTWARE AND DOCUMENTATION REMAINS WITH YOU. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL REALNETWORKS OR ITS SUPPLIERS BE LIABLE FOR ANY CONSEQUENTIAL, INCIDENTAL, INDIRECT, SPECIAL, PUNITIVE, OR OTHER DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER PECUNIARY LOSS) ARISING OUT OF THIS LICENSE OR THE USE OF OR INABILITY TO USE THE PRODUCT, EVEN IF REALNETWORKS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. REALNETWORKS' TOTAL LIABLITY FOR ANY DIRECT DAMAGES SHALL NOT EXCEED FIVE DOLLARS ($5.00). BECAUSE SOME STATES/JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU.\n\n6. INDEMNIFICATION. This Software is intended for use only with properly licensed media, content and content creation tools. It is Your responsibility to ascertain whether any copyright, patent or other licenses are necessary and to obtain any licenses to such media and content. You agree to use only those materials for which You have the necessary patent, copyright and other permissions, licenses, and/or clearances. You agree to hold harmless, indemnify and defend RealNetworks, its officers, directors and employees, from and against any losses, damages, fines and expenses (including attorneys' fees and costs) arising out of or relating to any claims that You have encoded, copied, compressed, enabled the \"Allow Recording\" feature, enabled the \"Allow Download\" feature, or copied, used, published, displayed, or transmitted any content or materials (other than materials provided by RealNetworks specifically for Your use) in connection with the Software in violation of another party's rights If You are importing the Software from the United States, You shall indemnify and hold RealNetworks harmless from and against any import and export duties or other claims arising from such importation.\n\n7. TERMINATION. This License and Your right to use this Software automatically terminate if You fail to comply with any material provision of this License. RealNetworks may terminate this License at any time by delivering notice to You and You may terminate this License at any time by destroying or erasing Your copy of the Software. Upon termination of this License, You agree to destroy or erase the Software.\n\n8. NO ASSIGNMENT. This License is personal to You, and may not be assigned without RealNetworks' express written consent.\n\n9. U.S. GOVERNMENT RESTRICTED RIGHTS. U.S. GOVERNMENT RESTRICTED RIGHTS: This Software and documentation are provided with RESTRICTED RIGHTS. Use, duplication or disclosure by the Government is subject to restrictions set forth in subparagraphs (a) through (d) of the Commercial Computer Software--Restricted Rights at FAR 52.227-19 when applicable, or in subparagraph (c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013, and in similar clauses in the NASA FAR supplement, as applicable. Manufacturer is RealNetworks, Inc./2601 Elliott, Suite 1000/Seattle, Washington 98121. You are responsible for complying with all trade regulations and laws both foreign and domestic. You acknowledge that none of the Software or underlying information or technology may be downloaded or otherwise exported or re-exported (i) into (or to a national or resident of) Cuba, Iraq, Libya, Sudan, North Korea, Iran, Syria or any other country subject to a U.S. embargo; or (ii) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Commerce Department's Denied Parties List or Entity List. By using the Software You are agreeing to the foregoing and are representing and warranting that (i) no U.S. federal agency has suspended, revoked, or denied You export privileges, (ii) You are not located in or under the control of a national or resident of any such country or on any such list, and (iii) You will not export or re-export the Software to any prohibited county, or to any prohibited person, entity, or end-user as specified by U.S. export controls.\n\n10. MISCELLANEOUS. This License Agreement shall constitute the complete and exclusive agreement between us. A separate written agreement with respect to the subject matter hereof shall supersede this instrument to the extent indicated in such separate agreement. This License Agreement may not be modified except in a writing duly signed by an authorized representative of RealNetworks and You. If any provision of this License Agreement is held to be unenforceable for any reason, such provision shall be reformed only to the extent necessary to make it enforceable, and such decision shall not affect the enforceability of such provision under other circumstances, or of the remaining provisions hereof under all circumstances. This License Agreement shall be governed by the laws of the State of Washington without regard to conflicts of law provisions and You consent to the exclusive jurisdiction of the state and federal courts sitting in the State of Washington. This License Agreement will not be governed by the United Nations Convention of Contracts for the International Sale of Goods, the application of which is hereby expressly excluded.\n\nCopyright \u00a91995-2002 RealNetworks, Inc. and/or its suppliers. 2601 Elliott Avenue, Suite 1000, Seattle, Washington 98121 U.S.A. The Software may incorporate one or more of the following patents: U.S. Patent #5,917,835; U.S. Patent # 5,854,858; U.S. Patent # 5,917,954. Other U.S. patents pending. All rights reserved. RealNetworks, Helix, RealAudio, and RealVideo are trademarks or registered trademarks of RealNetworks, Inc.", + "json": "helix.json", + "yaml": "helix.yml", + "html": "helix.html", + "license": "helix.LICENSE" + }, + { + "license_key": "henry-spencer-1999", + "category": "Permissive", + "spdx_license_key": "Spencer-99", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Development of this software was funded, in part, by Cray Research Inc.,\nUUNET Communications Services Inc., Sun Microsystems Inc., and Scriptics\nCorporation, none of whom are responsible for the results. The author\nthanks all of them.\n\nRedistribution and use in source and binary forms - with or without\nmodification - are permitted for any purpose, provided that redistributions\nin source form retain this entire copyright notice and indicate the origin\nand nature of any modifications.\n\nI'd appreciate being given credit for this package in the documentation of\nsoftware which uses it, but that is not a requirement.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\nHENRY SPENCER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\nOR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\nOTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "henry-spencer-1999.json", + "yaml": "henry-spencer-1999.yml", + "html": "henry-spencer-1999.html", + "license": "henry-spencer-1999.LICENSE" + }, + { + "license_key": "here-disclaimer", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-here-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This content is provided \"as-is\" and without warranties of any kind, either\nexpress or implied, including, but not limited to, the implied warranties of\nmerchantability, fitness for a particular purpose, satisfactory quality and non-\ninfringement. HERE does not warrant that the content is error free and HERE does\nnot warrant or make any representations regarding the quality, correctness,\naccuracy, or reliability of the content. You should therefore verify any\ninformation contained in the content before acting on it. To the furthest extent\npermitted by law, under no circumstances, including without limitation the\nnegligence of HERE, shall HERE be liable for any damages, including, without\nlimitation, direct, special, indirect, punitive, consequential, exemplary and/\nor incidental damages that result from the use or application of this content,\neven if HERE or an authorized representative has been advised of the possibility\nof such damages.", + "json": "here-disclaimer.json", + "yaml": "here-disclaimer.yml", + "html": "here-disclaimer.html", + "license": "here-disclaimer.LICENSE" + }, + { + "license_key": "here-proprietary", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-here-proprietary", + "other_spdx_license_keys": [ + "LicenseRef-Proprietary-HERE" + ], + "is_exception": false, + "is_deprecated": false, + "text": "This software and other materials contain proprietary information\ncontrolled by HERE and are protected by applicable copyright legislation.\nAny use and utilization of this software and other materials and\ndisclosure to any third parties is conditional upon having a separate\nagreement with HERE for the access, use, utilization or disclosure of this\nsoftware. In the absence of such agreement, the use of the software is not\nallowed.", + "json": "here-proprietary.json", + "yaml": "here-proprietary.yml", + "html": "here-proprietary.html", + "license": "here-proprietary.LICENSE" + }, + { + "license_key": "hessla", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hessla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION, USE AND/OR MODIFICATION\n\n0. DEFINITIONS. The following are defined terms that, whenever used in\nthis License Agreement, have the following meanings:\n\n0.1 Author: \"Author\" shall mean the copyright holder of an Original\nWork (the \"Program\") released by the Author under this License\nAgreement.\n\n0.2 Copy: \"Copy\" shall mean everything and anything that constitutes a\ncopy according to copyright law, without limitation. A \"copy\" does not\nbecome anything other than a \"copy\" merely because, for example, a\ngovernmental or institutional employee duplicates the Program or a\npart of it for another employee of the same institution or\nGovernmental Entity, or merely because it is copied from one computer\nto another, or from one medium to another, or multiple copies are made\non the same medium, within the same institutional or Governmental\nEntity.\n\n0.3 Derivative Work: A \"Derivative Work\" or \"work based on the\nProgram\" shall mean either the Program itself or any work containing\nthe Program or a portion of it, either verbatim or with modifications\nand/or translated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification.\"). In the\nunlikely event that, and to the extent that, this contractual\ndefinition of \"Derivative Work\" is later determined by any tribunal or\ndispute-resolution body to be different is scope from the meaning of\n\"derivative work\" under the copyright law of any country, then the\nbroadest and most encompassing possible definition either the\ncontractual definition of \"Derivative Work,\" or any broader and more\nencompassing statutory or legal definition, shall control. Acceptance\nof this contractually-defined scope of the term \"Derivative Work\" is a\nmandatory pre-condition for You to receive any of the benefits offered\nby this License Agreement.\n\n0.3.1 Mere aggregation of another work not based on the Program with\nthe Program (or with a Derivative Work based on the Program) on a\nvolume of a storage or distribution medium does not bring the other\nwork under the scope of this License Agreement.\n\n0.4 License Agreement: When used in this License Agreement, the terms\n\"this License\" or \"this License Agreement\" shall mean The Hactivismo\nEnhanced-Source Software License Agreement, v. 0.1, or any subsequent\nversion made applicable under the terms of Section 15.\n\n0.5 Licensee: The term \"Licensee\" shall mean You or any other\nLicensee, whether or not a Qualified Licensee.\n\n0.6 Original Work: \"Original Work\" shall mean a Program or other work\nof authorship, or portion thereof, that is not a Derivative Work.\n\n0.7 Program: The \"Program,\" to which this License Agreement applies,\nis the Original Work (including, but not limited to, computer\nsoftware) released by the Author under this License Agreement.\n\n0.8 Qualified Licensee: A \"Qualified Licensee\" means a Licensee that\nremains in full compliance with all terms and conditions of this\nLicense Agreement. You are no longer a Qualified Licensee if, at any\ntime, You violate any terms of this License Agreement. Neither the\nProgram nor any Software based on the Program may be copied,\ndistributed, performed, displayed, used or modified by You, even for\nYour own purposes, unless You are a Qualified Licensee. A Licensee\nother than a Qualified Licensee remains subject to all terms and\nconditions of this License Agreement, and to all remedies for each\ncumulative violation as set forth herein. Loss of the status of\nQualified Licensee signifies that violation of any terms of the\nLicense Agreement subjects a Licensee to loss of most of the benefits\nthat Qualified Licensees enjoy under this License Agreement, and to\nadditional remedies for all violations occurring after the first\nviolation.\n\n0.9 Software: \"Software\" or \"the Software\" shall mean the Program, any\nDerivative Work based on the Program or a portion thereof, and/or any\nmodified version of the Program or portion thereof, without\nlimitation.\n\n0.10 Source Code: The term \"Source Code\" shall mean the preferred form\nof a Program or Original Work for making modifications to it and all\navailable documentation describing how to access and modify that\nProgram or Original Work.\n\n0.10.1 For an executable work, complete Source Code means all the\nSource Code for all modules it contains, plus any associated interface\ndefinition files, plus the scripts used to control compilation and\ninstallation of the executable. However, as a special exception, the\nSource Code distributed need not include anything that is normally\ndistributed (in either source or binary form) with the major\ncomponents (compiler, kernel, and so on) of the operating system on\nwhich the executable runs, unless that component itself accompanies\nthe executable.\n\n0.10.2 \"Object Code:\" Because of certain peculiarities of current\nexport-control rules, \"object code\" of the Program, or any modified\nversion of the Program, or Derivative Work based on the Program, must\nnot be exported except by way of distribution that is ancillary to the\ndistribution of the Source Code. The \"Source Code\" shall be understood\nas the primary content transferred or exported by You, and the \"object\ncode\" shall be considered as merely an ancillary component of any such\nexport distribution.\n\n0.11 Strong Cryptography: \"Strong Cryptography\" shall mean\ncryptography no less secure than (for example, and without limitation)\na 2048-bit minimum key size for RSA encryption, 1024-bit minimum key\nsize for Diffie-Hellman (El Gamal), or a 256-bit minimum key size for\nAES and similar symmetric ciphers.\n\n0.12 Substandard Key-Selection Technique: The term \"Substandard\nKey-Selection Technique\" shall mean a method or technique to cause\nencryption keys to be more easily guessed or less secure, such as by\n(i) causing the selection of keys to be less than random, or (ii)\nemploying a selection process that selects among only a subset of\npossible keys, instead of from among the largest set of possible keys\nthat can securely be used consistent with contemporary knowledge about\nthe cryptographic techniques employed by You. The following\nillustrations elaborate on the foregoing definition:\n\n0.12.1 If the key-generation or key-selection technique for the\nencryption algorithm You employ involves the selection of one or more\nprime numbers, or involves one or more mathematical functions or\nconcatenations performed on one or more prime numbers, then each prime\nnumber should be selected from a very large set of candidate prime\nnumbers, but not necessarily from the set of all possible prime\nnumbers (e.g., inclusion of the number 1 in the candidate set, for\nexample, may in some instances reduce rather than enhance security),\nand absolutely not from any artificially small set of candidate primes\nthat makes the guessing of a key easier than would be the case if a\nsecure key-generation technique were employed. In all instances, the\nprimes should be selected at random from among the candidate set. If\nthere is a customary industry standard for maximizing the security\nassociated with the key-generation or key-selection technique for the\ncryptosystem You select, then (with attention also to the requirements\nof Section 0.11), You should employ a key-generation or selection\ntechnique no less secure than the customary industry standard for\nsecure use of the cryptosystem.\n\n0.12.2 If the key-generation or key-selection technique for the\nencryption algorithm You employ involves the selection of a random\ninteger, or the transformation of a random integer through one or more\nmathematical processes, then the selection of the integer shall be at\nrandom from the largest possible set of all possible integers\nconsistent with the secure functioning of the encryption algorithm. It\nshall not be selected from an artificially small set of integers\n(e.g., if a 256-bit random integer serves as the key, then You could\nnot set 200 of the 256 bits as \"0,\" and randomly generate only the\nremaining 56 bits producing effectively a 56-bit keylength instead of\nusing the full 256 bits).\n\n0.12.3 In other words, Your key-generation technique must promote\nsecurity to the maximum extent permitted by the cryptographic\nmethod(s) and keylength You elect to employ, rather than facilitating\neavesdropping or surveillance in any way. The example of GSM\ntelephones, in which 16 of 56 bits in each encryption key were set at\n\"0,\" thereby reducing the security of the system by a factor of\n65,536, is particularly salient. Such artificial techniques to reduce\nthe security of a cryptosystem by selecting keys from only a\nless-secure or suboptimal subset of possible keys, is prohibited and\nwill violate this License Agreement if any such technique is employed\nin any Software.\n\n0.13 You: Each Licensee (including, without limitation, Licensees that\nhave violated the License Agreement and who are no longer Qualified\nLicensees, but who nevertheless remain subject to all requirements of\nthis License Agreement and to all cumulative remedies for each\nsuccessive violation), is referred to as \"You.\"\n\n0.13.1 Governmental Entity: \"You\" explicitly includes any and all\n\"Governmental Entities,\" without limitation. \"Governmental Entity\" or\n\"Governmental Entities,\" when used in this License Agreement, shall\nmean national governments, sub-national governments (for example, and\nwithout limitation, provincial, state, regional, local and municipal\ngovernments, autonomous governing units, special districts, and other\nsuch entities), governmental subunits (without limitation,\ngovernmental agencies, offices, departments, government corporations,\nand the like), supra-national governmental entities such as the\nEuropean Union, and entities through which one or more governments\nperform governmental functions or exercise governmental power in\ncoordination, cooperation or unison.\n\n0.13.2 Governmental Person: \"You\" also explicitly includes\n\"Governmental Persons.\" The terms \"Governmental Person\" or\n\"Governmental Persons,\" when used in this License Agreement, shall\nmean the officials, officers, employees, representatives, contractors\nand agents of any Governmental Entity.\n\n1. Application of License Agreement. This License Agreement applies to\nany Program or other Original Work of authorship that contains a\nnotice placed by the Author saying it may be distributed under the\nterms of this License Agreement. The preferred manner of placing such\na notice is to include the following statement immediately after the\ncopyright notice for such an Original Work:\n\n \"Licensed under the Hacktivismo Enhanced-Source Software License\n Agreement, Version 0.1\"\n\n2. Means of Acceptance Use, Copying, Distribution or Modification By\nAnyone Constitutes Acceptance. Subject to Section 14.1 (concerning the\nspecial case of certain Governmental Entities) any copying,\nmodification, distribution, or use by You of the Program or any\nSoftware, shall constitute Your acceptance of all terms and conditions\nof this License Agreement.\n\n2.1 As a Licensee, You may not authorize, permit, or enable any person\nto use the Program or any Software or Derivative Work based on it\n(including any use of Your copy or copies of the Program) unless such\nperson has accepted this License Agreement and has become a Licensee\nsubject to all its terms and conditions.\n\n2.2 You may not make any copy for Your own use unless You have\naccepted this License Agreement and subjected yourself to all its\nterms and conditions.\n\n2.3 You may not make a copy for the use of any other person, or\ntransfer a copy to any other person, unless such person is a Licensee\nthat has accepted this License Agreement and such person is subject to\nall terms and conditions of this License Agreement.\n\n2.4 It is not the position of Hacktivismo that copyright law confers\nan exclusive right to use, as opposed to the exclusive right to copy\nthe Software. However, for purposes of contract law, any use of the\nSoftware shall be considered to constitute acceptance of this License\nAgreement. Moreover, all copying is prohibited unless the recipient of\na copy has accepted the License Agreement. Because each such recipient\nLicensee is contractually obligated not to permit anyone to access,\nuse, or secure a copy of the Software, without first accepting the\nterms and conditions of this License Agreement, use by non-Licensees\nis effectively prohibited contractually because nobody can obtain a\ncopy of, or access to a copy of, any Software without (1) accepting\nthe License Agreement through use, and (2) triggering some Licensee's\nobligation to require acceptance as a precondition of copying or\naccess.\n\n3. \"Qualified Licensee\" Requirement: Neither the Program nor any\nSoftware or Derivative Work based on the Program may be copied,\ndistributed, displayed, performed, used or modified by You, even for\nYour own purposes, unless You are a \"Qualified Licensee.\" To remain a\nQualified Licensee, You must remain in full compliance with all terms\nand conditions of this License Agreement.\n\n4. License Agreement Is Exclusive Source of All Your Rights:\n\n4.1 You may not copy, modify, or distribute the Program, or obtain any\ncopy, except as expressly provided under this License Agreement. Any\nattempt otherwise to copy, modify, obtain a copy, sublicense or\ndistribute the Program is void, and will automatically terminate Your\nrights under this License Agreement and subject You to all cumulative\nremedies for each successive violation that may be available to the\nAuthor. However, Qualified Licensees who have received copies from You\n(and thereby have received rights from the Author) under this License\nAgreement, and who would otherwise qualify as Qualified Licensees,\nwill not have their rights under their License Agreements suspended or\nrestricted on account of anything You do, so long as such parties\nremain in full compliance.\n\n4.2 You are not required to accept this License Agreement and prior to\nthe time You elect to become a Licensee and accept this License\nAgreement, You may always elect instead not to copy, use, modify,\ndistribute, compile, or perform the Program or any Software released\nunder this License Agreement. However, nothing else grants You\npermission to copy, to obtain or possess a copy, to compile a copy in\nobject code or executable code from a copy in source code, to modify,\nor to distribute the Program or any Software based on the\nProgram. These actions are prohibited by law if You do not accept this\nLicense Agreement. Additionally, as set forth in Section 2, any use,\ncopying or modification of the Software constitutes acceptance of this\nLicense Agreement by You.\n\n4.3 Each time You redistribute the Program (or any Software or\nDerivative Work based on the Program), the recipient automatically\nreceives a License Agreement from the Author to copy, distribute,\nmodify, perform or display the Software, subject to the terms and\nconditions of this License Agreement. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted\nherein. You are not responsible for enforcing compliance by third\nparties to this License Agreement. Enforcement is the responsibility\nof the Author.\n\n5. Grant of Source Code License.\n\n5.1 Source Code Always Available from Author: Author hereby promises\nand agrees except to the extent prohibited by export-control law to\nprovide a machine-readable copy of the Source Code of the Program at\nthe request of any Licensee. Author reserves the right to satisfy this\nobligation by placing a machine-readable copy of the Source Code of\nthe most current version of the Program in an information repository\nreasonably calculated to permit inexpensive and convenient access by\nYou for so long as Author continues to distribute the Program, and by\npublishing the address of that information repository in a notice\nimmediately following the copyright notice that applies to the\nProgram. Every copy of the Program distributed by Hacktivismo (but not\nnecessarily every other Author) consists of the Source Code\naccompanied, in some instances, by an ancillary distribution of\ncompiled Object Code, but the continued availability of the Source\nCode from the Author addresses the possibility that You might have\n(for any reason) not received from someone else a complete, current,\ncopy of the Source Code (lack of which would, for example, prevent You\nfrom exporting copies to others without violating this license, see\nSection 8).\n\n5.2 Grant of License. If and only if, and for so long as You remain a\nQualified Licensee, in accordance with Section 3 of this License\nAgreement, Author hereby grants You a world-wide, royalty-free,\nnon-exclusive, non-sublicensable copyright license to do the\nfollowing:\n\n5.2.1 to reproduce the Source Code of the Program in copies;\n\n5.2.2 to prepare Derivative Works based upon the Program and to edit\nor modify the Source Code in the process of preparing such Derivative\nWorks;\n\n5.2.3 to distribute copies of the Source Code of the Original Work\nand/or of Derivative Works to others, with the proviso that copies of\nOriginal Work or Derivative Works that You distribute shall be\nlicensed under this License Agreement, and that You shall fully inform\nall recipients of the terms of this License Agreement.\n\n6. Grant of Copyright License. If and only if, and for so long as You\nremain a Qualified Licensee, in accordance with Section 3 of this\nLicense Agreement, Author hereby grants You a world-wide,\nroyalty-free, non-exclusive, non-sublicensable license to do the\nfollowing:\n\n6.1 to reproduce the Program in copies;\n\n6.2 to prepare Derivative Works based upon the Program, or upon\nSoftware that itself is based on the Program;\n\n6.3 to distribute (either by distributing the Source Code, or by\ndistributing compiled Object Code, but any export of Object Code must\nbe ancillary to a distribution of Source Code) copies of the Program\nand Derivative Works to others, with the proviso that copies of the\nProgram or Derivative Works that You distribute shall be licensed\nunder this License Agreement, that You shall fully inform all\nrecipients of the terms of this License Agreement;\n\n6.4 to perform the Program or a Derivative Work publicly;\n\n6.5 to display the Program or a Derivative Work publicly; and\n\n6.6 to charge a fee for the physical act of transferring a copy of the\nProgram (You may also, at Your option, offer warranty protection in\nexchange for a fee).\n\n7. Grant of Patent License. If and only if, and for so long as You\nremain a Qualified Licensee, in accordance with Section 3 of this\nLicense Agreement, Author hereby grants You a world-wide,\nroyalty-free, non-exclusive, non-sublicensable license Agreement,\nunder patent claims owned or controlled by the Author that are\nembodied in the Program as furnished by the Author (\"Licensed Claims\")\nto make, use, sell and offer for sale the Program. Subject to the\nproviso that You grant all Licensees a world-wide, non-exclusive,\nroyalty-free license under any patent claims embodied in any\nDerivative Work furnished by You, Author hereby grants You a\nworld-wide, royalty-free, non-exclusive, non-sublicensable license\nunder the Licensed Claims to make, use, sell and offer for sale\nDerivative Works.\n\n8. Exclusions From License Agreement Grants. Nothing in this License\nAgreement shall be deemed to grant any rights to trademarks,\ncopyrights, patents, trade secrets or any other intellectual property\nof Licensor except as expressly stated herein. No patent license is\ngranted to make, use, sell or offer to sell embodiments of any patent\nclaims other than the Licensed Claims defined in Section 7. No right\nis granted to the trademarks of Author even if such marks are included\nin the Program. Nothing in this License Agreement shall be interpreted\nto prohibit Author from licensing under additional or different terms\nfrom this License Agreement any Original Work, Program, or Derivative\nWork that Author otherwise would have a right to License.\n\n8.1 Implied Endorsements Prohibited. Neither the name of the Author\n(in the case of Programs and Original Works released by Hacktivismo,\nthe name \"Hacktivismo\"), nor the names of contributors who helped\nproduce the Program may be used to endorse or promote modifications of\nthe Program, any Derivative Work, or any Software other than the\nProgram, without specific prior written permission of the\nAuthor. Neither the name of Hacktivismo nor the names of any\ncontributors who helped write the Program may be used to endorse or\npromote any Program or Software released under this License Agreement\nby any person other than Hacktivismo.\n\n9. Modifications and Derivative Works. Only Qualified Licensees may\nmodify the Software or prepare or distribute Derivative Works. If You\nare a Qualified Licensee, Your authorization to modify the Software or\nprepare or distribute Derivative Works (including permission to\nprepare and/or distribute Derivative Works, as provided in Sections\n5.2.2, 5.2.3, 6.2, 6.3, and 6.6) is subject to each and all of the\nfollowing mandatory terms and conditions (9.1 through 9.6, inclusive):\n\n9.1 You must cause the modified files to carry prominent notices\nstating that You changed the files and the date of any change;\n\n9.2 If the modified Software normally reads commands interactively\nwhen run, You must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that You provide a warranty) and that\nusers may redistribute the program under this License Agreement, and\ntelling the user how to view a copy of this License\nAgreement. (Exception: if the Program itself is interactive but does\nnot normally print such an announcement, Your Derivative Work based on\nthe Program is not required to print an announcement.);\n\n9.3 Any Program, Software, or modification thereof copied or\ndistributed by You, that incorporates any portion of the Original\nWork, must not contain any code or functionality that subverts the\nsecurity of the Software or the end-user's expectations of privacy,\nanonymity, confidentiality, authenticity, and trust, including\n(without limitation) any code or functionality that introduces any\n\"backdoor,\" escrow mechanism, \"spy-ware,\" or surveillance techniques\nor methods into any such Program, Software, or modification thereof;\n\n9.4 Any Program, Software, or modification thereof copied or\ndistributed by You, that employs any cryptographic or other security,\nprivacy, confidentiality, authenticity, and/or trust methods or\ntechniques, including without limitation any Derivative Work that\nincludes any changes or modifications to any cryptographic techniques\nin the Program, shall employ Strong Cryptography.\n\n9.5 Any Program, Software, or modification thereof copied or\ndistributed by You, if it contains any key-generation or selection\ntechnique, must not employ any Substandard Key-Selection Technique.\n\n9.6 No Program or Software copied or distributed by You may transmit\nor communicate any symmetric key, any \"private key\" if an asymmetric\ncryptosystem is employed, or any part of such key, nor may it\notherwise make any such key or part of such key known, to any person\nother than the end-user who generated the key, without the active\nconsent and participation of that individual end-user. If a private or\nsymmetric key is stored or recorded in any manner, it must not be\nstored or recorded in plaintext, and it must be protected from reading\n(at a minimum) by use of a password. Use of steganography or other\ntechniques to disguise the fact that a private or symmetric key is\neven stored is strongly encouraged, but not absolutely required.\n\n10. Use Restrictions: Human Rights Violations Prohibited.\n\n10.1 Neither the Program, nor any Software or Derivative Work based on\nthe Program may used by You for any of the following purposes (10.1.1\nthrough 10.1.5, inclusive):\n\n10.1.1 to violate or infringe any human rights or to deprive any\nperson of human rights, including, without limitation, rights of\nprivacy, security, collective action, expression, political freedom,\ndue process of law, and individual conscience;\n\n10.1.2 to gather evidence against any person to be used to deprive any\nperson of human rights;\n\n10.1.3 any other use as a part of any project or activity to deprive\nany person of human rights, including not only the above-listed\nrights, but also rights of physical security, liberty from physical\nrestraint or incarceration, freedom from slavery, freedom from\ntorture, freedom to take part in government, either directly or\nthrough lawfully elected representatives, and/or freedom from\nself-incrimination;\n\n10.1.4 any surveillance, espionage, or monitoring of individuals,\nwhether done by a Governmental Entity, a Governmental Person, or by\nany non-governmental person or entity;\n\n10.1.5 censorship or \"filtering\" of any published information or expression.\n\n10.2 Additionally, the Program, any modification of it, or any\nSoftware or Derivative Work based on the Program may not be used by\nany Governmental Entity or other institution that has any policy or\npractice (whether official or unofficial) of violating the human\nrights of any persons.\n\n10.3 You may not authorize, permit, or enable any person (including,\nwithout limitation, any Governmental Entity or Governmental Person) to\nuse the Program or any Software or Derivative Work based on it\n(including any use of Your copy or copies of the Program) unless such\nperson has accepted this License Agreement and has become a Licensee\nsubject to all its terms and conditions, including (without\nlimitation) the use restrictions embodied in Section 10.1 and 10.2,\ninclusive.\n\n11. All Export Distributions Must Consist of or Be Ancillary to\nDistribution of Source Code. Because of certain peculiarities of\ncurrent export-control law, any distribution by You of the Program or\nany Software may be in the form of Source Code only, or in the form or\nSource Code accompanied by compiled Object Code, but You may not\nexport any Software in the form of compiled Object Code only. Such an\nexport distribution of compiled executable code must in all cases be\nancillary to a distribution of the complete corresponding\nmachine-readable source code, which must be distributed on a medium,\nor by a method, customarily used for software interchange.\n\n12. EXPORT LAWS: THIS LICENSE AGREEMENT ADDS NO RESTRICTIONS TO THE\nEXPORT LAWS OF YOUR JURISDICTION. It is Your responsibility to comply\nwith any export regulations applicable in Your jurisdiction. From the\nUnited States, Canada, or many countries in Europe, export or\ntransmission of this Software to certain embargoed destinations\n(including, but not necessarily limited to, Cuba, Iran, Iraq, Libya,\nNorth Korea, Sudan, and Syria), may be prohibited. If Hacktivismo is\nidentified as the Author of the Program (and it is not the property of\nsome other Author), then export to any national of Cuba, Iran, Iraq,\nLibya, North Korea, Sudan or Syria, or into the territory of any of\nthese countries, by any Licensee who has received this Software\ndirectly from Hacktivismo or from the Cult of the Dead Cow, or any of\ntheir members, is contractually prohibited and will constitute a\nviolation of this License Agreement. You are advised to consult the\ncurrent laws of any and all countries whose laws may apply to You,\nbefore exporting this Software to any destination. Special care should\nbe taken to avoid export to any embargoed destination. An Author other\nthan Hacktivismo may substitute that Author's legal name for\n\"Hacktivismo\" in this Paragraph, in relation to any Program released\nby that Author under this Paragraph.\n\n13. Contrary Judgments, Settlements and Court Orders. If, as a\nconsequence of a court judgment or allegation of patent infringement\nor for any other reason (not limited to patent issues), conditions are\nimposed on You (whether by court order, agreement or otherwise) that\ncontradict the conditions of this License Agreement, they do not\nexcuse You from the conditions of this License Agreement. If You\ncannot distribute so as to satisfy simultaneously Your obligations\nunder this License Agreement and any other pertinent obligations, then\nas a consequence You may not distribute the Software at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through You, then the only way You could satisfy both it\nand this License Agreement would be to refrain entirely from\ndistribution of the Program.\n\nIt is not the purpose of this Section 13 to induce You to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this Section has the sole purpose of protecting the\nintegrity of the software distribution system reflected in this\nLicense Agreement, which is implemented by public license\npractices. Many people have made generous contributions to the wide\nrange of software distributed through related distribution systems, in\nreliance on consistent application of such distribution systems; it is\nup to the Author/donor to decide if he or she is willing to distribute\nsoftware through any other system and a Licensee cannot impose that\nchoice.\n\n14. Governmental Entities: Any Governmental Entity (\"Governmental\nEntity\" is defined broadly as set forth in Section 0.13.1) or\nGovernmental Person (as \"Governmental Person\" is defined broadly in\nSection 0.13.2), that uses, modifies, changes, copies, displays,\nperforms, or distributes the Program, or any Software or Derivative\nWork based on the Program, may do so if and only if all of the\nfollowing terms and conditions (14.1 through 14.10, inclusive) are\nagreed to and fully met:\n\n14.1 If it is the position of any Governmental Entity (or, in the case\nof any \"Governmental Person,\" if it is the position of that\nGovernmental Person's Governmental Entity) that any doctrine or\ndoctrines of law (including, without limitation, any doctrine(s) of\nimmunity or any formalities of contract formation) may render this\nLicense Agreement unenforceable or less than fully enforceable against\nsuch Governmental Entity, or any Governmental Person of such\nGovernmental Entity, then prior to any use, modification, change,\ndisplay, performance, copy or distribution of the Program, or of any\nSoftware or Derivative Work based on the Program, or any part thereof,\nby the Governmental Entity, or by any Governmental Person of that\nGovernmental Entity, the Governmental Entity shall be required to\ninform the Author in writing of each such doctrine that is believed to\nrender this License Agreement or any part of it less than fully\nenforceable against such Governmental Entity or any Governmental\nPerson of such entity, and to explain in reasonable detail what\nadditional steps, if taken, would render the License Agreement fully\nenforceable against such entity or person. Failure to provide the\nrequired written notice to the Author in advance of any such use,\nmodification, change, display, performance, copy or distribution,\nshall constitute an irrevocable and conclusive waiver of any and all\nreliance on any doctrine, by the Governmental Entity, that is not\nincluded or that is omitted from the required written notice (failure\nto provide any written notice means all reliance on any doctrine is\nirrevocably waived). Any Governmental Entity that provides written\nnotice under this subsection is prohibited, as are all of the\nGovernmental Persons of such Governmental Entity, from making any use,\nchange, display, performance, copy, modification or distribution of\nthe Software or any part thereof, until such time as a License\nAgreement is in place, agreed upon by the Author and by the\nGovernmental Entity, that such entity concedes is\nfully-enforceable. Any use, modification, change, display,\nperformance, copy, or distribution following written notice under this\nParagraph, but without the implementation of an agreement as provided\nherein, shall constitute an irrevocable and conclusive waiver by the\nGovernmental Entity (and any and all Governmental Persons of such\nGovernmental Entity) of any and all reliance on any legal doctrine\neither referenced in such written notice or omitted from it.\n\n14.2 Any Governmental Entity that uses, copies, changes, modifies, or\ndistributes, the Software or any part or portion thereof, or any\nGovernmental Person who does so (whether that person's Governmental\nEntity contends the person's action was, or was not, authorized or\nofficial), permanently and irrevocably waives any defense based on\nsovereign immunity, official immunity, the Act of State Doctrine, or\nany other form of immunity, that might otherwise apply as a defense\nto, or a bar against, any legal action based on the terms of this\nLicense Agreement.\n\n14.2.1 With respect to any enforcement action brought by the Author in\na United States court against a foreign Governmental Entity, the\nwaiver by any Governmental Entity as provided in Subparagraphs 14.1\nand 14.2 is hereby expressly acknowledged by each such Governmental\nEntity to constitute a \"case . . . in which the foreign state has\nwaived its immunity,\" within the scope of 28 U.S.C. \ufffd 1605(a)(1) of\nthe Foreign Sovereign Immunities Act of 1976 (as amended). Each such\nGovernmental Entity also specifically agrees and concedes that the\n\"commercial activity\" exceptions to the FSIA, 28 U.S.C. \ufffd 1605(a)(2),\n(3) are also applicable. With respect to an action brought against the\nUnited States or any United States Governmental Entity, in the courts\nof any country, the U.S. Governmental Entity shall be understood to\nhave voluntarily agreed to a corresponding waiver of immunity from\nactions in the courts of any other sovereign.\n\n14.2.2 With respect to any enforcement action brought by an authorized\nend-user (as a third-party beneficiary, under the terms of\nSubparagraphs 14.3 and 14.10) in a United States court against a\nforeign Governmental Entity, the waiver by any Governmental Entity as\nprovided in Subparagraphs 14.1 and 14.2 is hereby expressly\nacknowledged by each such Governmental Entity to constitute a \"case\n. . . in which the foreign state has waived its immunity,\" within the\nscope of 28 U.S.C. \ufffd 1605(a)(1) of the Foreign Sovereign Immunities\nAct of 1976 (as amended). . Each such Governmental Entity also\nspecifically agrees and concedes that the \"commercial activity\"\nexceptions to the FSIA, 28 U.S.C. \ufffd 1605(a)(2), (3) are also\napplicable. With respect to an action brought against the United\nStates or any United States Governmental Entity, in the courts of any\ncountry, the U.S. Governmental Entity shall be understood to have\nvoluntarily agreed to a corresponding waiver of immunity from actions\nin the courts of any other sovereign.\n\n14.2.3 With respect to any action or effort by the Author in the\nUnited States to execute a judgment against a foreign Governmental\nEntity, by attaching or executing process against the property of such\nGovernmental Entity, the waiver by any Governmental Entity as provided\nin Subparagraphs 14.1 and 14.2 is hereby expressly acknowledged by\neach such Governmental Entity to constitute a case in which \"the\nforeign state has waived its immunity from attachment in aid of\nexecution or from execution,\" in accordance with 28 U.S.C. \ufffd\n1610(a)(1) of the Foreign Sovereign Immunities Act of 1976 (as\namended). Each such Governmental Entity also specifically agrees and\nconcedes that the \"commercial activity\" exceptions to the FSIA, 28\nU.S.C. \ufffd 1610(a)(2), (d) are also applicable. With respect to an\naction brought against the United States or any United States\nGovernmental Entity, in the courts of any country, the\nU.S. Governmental Entity shall be understood to have voluntarily\nagreed to a corresponding waiver of immunity from actions in the\ncourts of any other sovereign.\n\n14.2.4 With respect to any action or effort brought by an authorized\nend-user (as a third-party beneficiary, in accordance with\nSubparagraphs 14.3 and 14.10) in the United States to execute a\njudgment against a foreign Governmental Entity, by attaching or\nexecuting process against the property of such Governmental Entity,\nthe waiver by any Governmental Entity as provided in Subparagraphs\n14.1 and 14.2 is hereby expressly acknowledged by each such\nGovernmental Entity to constitute a case in which \"the foreign state\nhas waived its immunity from attachment in aid of execution or from\nexecution,\" in accordance with 28 U.S.C. \ufffd 1610(a)(1) of the Foreign\nSovereign Immunities Act of 1976 (as amended). Each such Governmental\nEntity also specifically agrees and concedes that the \"commercial\nactivity\" exceptions to the FSIA, 28 U.S.C. \ufffd 1610(a)(2), (d) are\nalso applicable. With respect to an action brought against the United\nStates or any United States Governmental Entity, in the courts of any\ncountry, the U.S. Governmental Entity shall be understood to have\nvoluntarily agreed to a corresponding waiver of immunity from actions\nin the courts of any other sovereign.\n\n14.3 Any Governmental Entity that uses, copies, changes, modifies,\ndisplays, performs, or distributes the Software or any part thereof,\nor any Governmental Person who does so (whether that person's\nGovernmental Entity contends the person's action was, or was not,\nauthorized or official), and thereby violates any terms and conditions\nof Section 9 (restrictions on modification), or Paragraph 10 (use\nrestrictions), agrees that the person or entity is subject not only to\nan action by the Author, for the enforcement of this License Agreement\nand for money damages and injunctive relief (as well as attorneys'\nfees, additional and statutory damages, and other remedies as provided\nby law), but such Governmental Entity and/or Person also shall be\nsubject to a suit for money damages and injunctive relief by any\nperson whose human rights have been violated or infringed, in\nviolation of this License Agreement, or through the use of any\nSoftware in violation of this License Agreement. Any person who brings\nan action under this section against any Governmental Person or Entity\nmust notify the Author promptly of the action and provide the Author\nthe opportunity to intervene to assert the Author's own\nrights. Damages in such a third-party action shall be measured by the\nseverity of the human rights violation and the copyright infringement\nor License Agreement violation, combined, and not merely by reference\nto the copyright infringement. All end-users, to the extent that they\nare entitled to bring suit against such Governmental Entity by way of\nthis License Agreement, are intended third-party beneficiaries of this\nLicense Agreement. Punitive damages may be awarded in such a\nthird-party action against a Governmental Entity or Governmental\nPerson, and each and every such Governmental Entity or Person\nconclusively waives all restrictions on the amount of punitive\ndamages, and all defenses to the award of punitive damages to the\nextend such limitations or defenses depend upon or are a function of\nsuch person or entity's status as a Governmental Person or\nGovernmental Entity.\n\n14.4 Any State of the United States, or any subunit or Governmental\nEntity thereof, that uses, copies, changes, modifies, displays,\nperforms, or distributes the Software of any part thereof, or any of\nwhose Governmental Persons does so (whether that person's Governmental\nEntity contends the person's action was, or was not, authorized or\nofficial), unconditionally and irrevocably waives for purposes of any\nlegal action (i) to enforce this License Agreement, (ii) to remedy\ninfringement of the Author's copyright, or (iii) to invoke any of the\nthird-party beneficiary rights set forth in Section 14.3 -- any\nimmunity under the Eleventh Amendment of the United States\nConstitution or any other immunity doctrine (such as sovereign\nimmunity or qualified, or other, official immunity) that may apply to\nstate governments, subunits, or to their Governmental Persons.\n\n14.5 Any Governmental Entity (including, without limitation, any State\nof the United States), that uses, copies, changes, modifies, performs,\ndisplays, or distributes the Software or any part thereof, or any of\nwhose Governmental Persons does so (whether that person's Governmental\nEntity contends the person's action was, or was not, authorized or\nofficial), unconditionally and irrevocably waives for purposes of any\nlegal action (i) to enforce this License Agreement, (ii) to remedy\ninfringement of the Author's copyright, or (iii) to invoke any of the\nthird-party beneficiary rights set forth in Section 14.3 any doctrine\n(such as, but not limited to, the holding in the United States Supreme\nCourt decision of Ex Parte Young) that might purport to limit remedies\nsolely to prospective injunctive relief. Also explicitly and\nirrevocably waived is any underlying immunity doctrine that would\nrequire the recognition of such a limited exception for purposes of\nremedies. The remedies against such governmental entities and persons\nshall explicitly include money damages, additional damages, statutory\ndamages, consequential damages, exemplary damages, punitive damages,\ncosts and fees that might otherwise be barred or limited in amount on\naccount of governmental status.\n\n14.6 Any Governmental Entity that uses, copies, changes, modifies,\ndisplays, performs, or distributes the Software or any part thereof,\nor any of whose Governmental Persons does so (whether that person's\nGovernmental Entity contends the person's action was, or was not,\nauthorized or official), unconditionally and irrevocably waives for\npurposes of any legal action (i) to enforce this License Agreement,\n(ii) to remedy infringement of the Author's copyright, or (iii) to\ninvoke any of the third-party beneficiary rights set forth in Section\n14.3 any and all reliance on the Act of State doctrine, sovereign\nimmunity, international comity, or any other doctrine of immunity\nwhether such doctrine is recognized in that government's own courts,\nor in the courts of any other government or nation.\n\n14.6.1 Consistent with Subparagraphs 14.2.1 through 14.2.4, this\nwaiver shall explicitly be understood to constitute a waiver not only\nagainst suit, but also against execution against property, for\npurposes of the Foreign Sovereign Immunities Act of 1976 (as\namended). All United States Governmental Entities shall be understood\nto have agreed to a corresponding waiver of immunity against (i) suit\nin the courts of other sovereigns, and (ii) execution against property\nof the United States located within the territory of other countries.\n\n14.7 Governmental Persons, (i) who violate this License Agreement\n(whether that person's Governmental Entity contends the person's\naction was, or was not, authorized or official), or (ii) who are\npersonally involved in any activity, policy or practice of a\ngovernmental entity that violates this License Agreement (whether that\nperson's Governmental Entity contends the person's action was, or was\nnot, authorized or official), or (iii) that use, copy, change, modify,\nperform, display or distribute, the Software or any part thereof, when\ntheir Governmental Entity is not permitted to do so, or is not a\nQualified Licensee, or has violated the terms of this License\nAgreement, each and all individually waive and shall not be permitted\nto assert any defense of official immunity, \"good faith\" immunity,\nqualified immunity, absolute immunity, or other immunity based on his\nor her governmental status.\n\n14.8 No Governmental Entity, nor any Governmental Person thereof may,\nby legislative, regulatory, or other action, exempt such Governmental\nEntity, subunit, or person, from the terms of this License Agreement,\nif the Governmental Entity or any such person has voluntarily used,\nmodified, copied, displayed, performed, or distributed the Software or\nany part thereof.\n\n14.9 Enforcement In Courts of Other Sovereigns Permitted. By using,\nmodifying, changing, displaying, performing or distributing any\nSoftware covered by this License Agreement, any Governmental Entity\nhereby voluntarily and irrevocably consents, for purposes of (i) any\naction to enforce the terms of this License Agreement, and (ii) any\naction to enforce the Author's copyright (whether such suit be for\ninjunctive relief, damages, or both) to the jurisdiction of any court\nor tribunal in any other country (or a court of competent jurisdiction\nof a subunit, province, or state of such country) in which the terms\nof this License Agreement are believed by the Author to be\nenforceable. Each such Governmental Entity hereby waives all\nobjections to personal jurisdiction, all objections based on\ninternational comity, all objections based on the doctrine of forum\nnon conveniens, and all objections based on sovereign or governmental\nstatus or immunity that might otherwise be asserted in the courts of\nsome other sovereign.\n\n14.9.1 The Waiver by any Governmental Entity of a country other than\nthe United States shall be understood explicitly to constitute a\nwaiver for purposes of the Foreign Sovereign Immunities Act of 1976\n(see Subparagraphs 14.2.1to 14.2.4, inclusive, supra), and all United\nStates Governmental Entities shall be understood to have agreed to a\nwaive correspondingly broad in scope with respect to actions brought\nin the courts of other sovereigns.\n\n14.9.2 Forum Selection Non-U.S. Governmental Entities. Governmental\nEntities that are not United States Governmental Entities shall be\nsubject to suit, and agree to be subject to suit, in the United States\nDistrict Court for the District of Columbia. The Author or an\nauthorized end-user may bring an action in another court in another\ncountry, but the United States District Court for the District of\nColumbia, shall always be available as an agreed-upon forum for such\nan action. At the optional election of any Author (or, in the case of\na third-party claim, any end-user asserting rights under Subparagraphs\n14.3 and 14.10), such a suit against a non-U.S. Governmental Entity or\nPerson may be brought in the United States District Court for the\nSouthern District of New York, or the United States District Court for\nthe Northern District of California, as a direct substitute for the\nUnited States District Court for the District of Columbia, for all\npurposes of this Subparagraph.\n\n14.9.3 Forum Selection U.S. Governmental Entities. All United States\nGovernmental Entities shall be subject to suit, and agree to be\nsubject to suit, in the following (non-exclusive) list of fora:\nOttawa, Canada, London, England, and Paris, France. The Author or an\nauthorized end-user may bring action in another court that can\nexercise jurisdiction. But the courts in these three locations shall\nalways be available (at the option of the Author or an authorized\nend-user) as a forum for resolving any dispute with the United States\nor a governmental subunit thereof. Except as provided in Subparagraph\n14.10, any and all United States Governmental Persons shall be subject\nto suit wherever applicable rules of personal jurisdiction and venue\nshall permit such suit to be filed, but no such United States\nGovernmental Person may assert any defense based on forum non\nconveniens or international comity, to the selection of any particular\nlawful venue.\n\n14.10 Enforcement Of Claims For Human Rights Violations. By using,\ncopying, modifying, changing, performing, displaying or distributing\nthe Software covered by this License Agreement, any Governmental\nEntity, or Governmental Person hereby voluntarily and irrevocably\nconsents -- for purposes of any third-party action to remedy human\nrights violations and other violations of this License Agreement (as\nreflected in Section 14.3) -- to the jurisdiction of any court or\ntribunal in any other country (or a court of competent jurisdiction of\na subunit, province, or state of such country) in which the\nthird-party beneficiary reasonably believes the relevant terms of this\nLicense Agreement are enforceable. The Governmental Entity or Person\nhereby waives all objections to personal jurisdiction, all objections\nbased on international comity, all objections based on the doctrine of\nforum non conveniens, and all objections based on sovereign or\ngovernmental status or immunity that might otherwise be asserted in\nthe courts of some other sovereign.\n\n14.10.1 Waiver of Immunity and Forum Selection. The presumptively\nvalid and preferred fora identified in Subparagraphs 14.9.2 and 14.9.3\nshall also apply for purposes of Subparagraph 14.10. All Governmental\nEntities are subject to the same Waiver of Immunity as set forth in\nSubparagraphs 14.2.1 to 14.2.4, inclusive.\n\n15. Subsequent Versions of HESSLA. Hacktivismo may publish revised\nand/or new versions of the Hacktivismo Enhanced-Source Software\nLicense Agreement from time to time. Such new versions will be similar\nin spirit to the present version, but may differ in detail to address\nnew problems or concerns.\n\nEach version is given a distinguishing version number. Any Program\nreleased by Hacktivismo under a version of this License Agreement\nprior to Version 1.0, shall be considered released under Version 1.0\nof the Hacktivismo Enhanced-Source Software License Agreement, once\nVersion 1.0 is formally released. Prior to Version 1.0, any Software\nreleased by Hacktivismo or a Licensee of Hacktivismo under a\nlower-numbered version of the HESSLA shall be considered automatically\nto be subject to a higher-number version of the HESSLA, whenever a\nlater-numbered version has been released.\n\nConcerning the work of any other Author, if the Program specifies a\nversion number of this License Agreement which applies to it and \"any\nlater version,\" You have the option of following the terms and\nconditions either of that version or of any later version published by\nHacktivismo. If the Program does not specify a version number of this\nLicense Agreement, You may choose any version after 1.0, once version\n1.0 is published by Hacktivismo, and prior to publication of version\n1.0, You may choose any version of the Hacktivismo Software License\nAgreement then published by Hacktivismo. If the Program released by\nanother Author, specifies only a version number, then that version\nnumber only shall apply. If \"the latest version,\" is specified, then\nthe latest version of the HESSLA published on the Hacktivismo Website\nshall always apply at all times.\n\n16. DISCLAIMER OF WARRANTY. THE SOFTWARE IS PROVIDED UNDER THIS\nLICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY, EITHER EXPRESS OR\nIMPLIED, INCLUDING, WITHOUT LIMITATION, THE WARRANTY OF\nNON-INFRINGEMENT AND WARRANTIES THAT THE ORIGINAL WORK IS MERCHANTABLE\nOR FIT FOR A PARTICULAR PURPOSE. THE SOFTWARE IS PROVIDED WITH ALL\nFAULTS. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH\nYOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL\nNECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY\nCONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO LICENSE TO ORIGINAL\nWORK IS GRANTED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n17. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL\nTHEORY, WHETHER TORT (INCLUDING THE AUTHOR'S NEGLIGENCE), CONTRACT, OR\nOTHERWISE, SHALL THE AUTHOR BE LIABLE TO ANY PERSON FOR ANY DIRECT,\nINDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY\nCHARACTER ARISING AS A RESULT OF THIS LICENSE OR THE USE OF THE\nSOFTWARE INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,\nWORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\nCOMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PERSON SHALL HAVE BEEN\nINFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF\nLIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\nPROHIBITS SUCH LIMITATION, BUT SHALL EXCLUDE SUCH LIABILITY TO THE\nEXTENT PERMITTED BY LAW. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION\nOR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS\nEXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n18. ENCRYPTION KEYS AND PUBLIC KEY INFRASTRUCTURE. SOFTWARE RELEASED\nUNDER THIS LICENSE AGREEMENT MAY REQUIRE A DIGITAL CERTIFICATE, OR AN\nENCRYPTION KEY \"SIGNED\" BY A TRUSTED PARTY, TO FUNCTION. AUTHOR\nUNDERTAKES NO RESPONSIBILITY FOR THE PROPER, SECURE, AND ADEQUATE\nFUNCTIONING OF ANY CRYPTOGRAPHIC SYSTEMS, OF ANY CRYPTOGRAPHIC KEYS,\nOR FOR THE TRUSTWORTHINESS OF ANY END-USER, ANY ISSUER OF\nCERTIFICATES, OR OF ANY SIGNER OF ENCRYPTION KEYS. USE OF THIS\nSOFTWARE IS AT THE END-USER'S SOLE AND EXCLUSIVE RISK. IN ANY\nPUBLIC-KEY INFRASTRUCTURE (\"PKI\") SYSTEM, AN END-USER'S LEGAL\nRELATIONSHIP WITH THE END-USER'S CERTIFICATION AUTHORITY DOES NOT\nINCLUDE OR ENCOMPASS ANY LEGAL RELATIONSHIP WITH THE AUTHOR, AND IS\nGOVERNED SOLELY AND EXCLUSIVELY BY THE CERTIFICATION AUTHORITY'S\nCERTIFICATION PRACTICE STATEMENT AND CERTIFICATION AGREEMENTS. AUTHOR\nASSUMES NO RESPONSIBILITY FOR THE ACTIONS OR OMISSIONS OF ANY END-USER\nOR ANY CERTIFICATION AUTHORITY.\n\n18. Saving Clause. If any portion of this License Agreement is held\ninvalid or unenforceable under any particular circumstance, the\nbalance of the License Agreement is intended to apply and the License\nAgreement as a whole is intended to apply in other circumstances.\n\nEND OF TERMS AND CONDITIONS", + "json": "hessla.json", + "yaml": "hessla.yml", + "html": "hessla.html", + "license": "hessla.LICENSE" + }, + { + "license_key": "hidapi", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-hidapi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software may be used by anyone for any reason so long as the copyright\nnotice in the source files remains intact.", + "json": "hidapi.json", + "yaml": "hidapi.yml", + "html": "hidapi.html", + "license": "hidapi.LICENSE" + }, + { + "license_key": "hippocratic-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-hippocratic-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \u201cSoftware\u201d), 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:\n\n\n* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n* The software may not be used by individuals, corporations, governments, or other groups for systems or activities that actively and knowingly endanger, harm, or otherwise threaten the physical, mental, economic, or general well-being of underprivileged individuals or groups.\n\n\nTHE SOFTWARE IS PROVIDED \u201cAS IS\u201d, 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.\n\nThis license is derived from the MIT License, as amended to limit the impact of the unethical use of open source software.", + "json": "hippocratic-1.0.json", + "yaml": "hippocratic-1.0.yml", + "html": "hippocratic-1.0.html", + "license": "hippocratic-1.0.LICENSE" + }, + { + "license_key": "hippocratic-1.1", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-hippocratic-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "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:\n\n The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n The software may not be used by individuals, corporations, governments, or other groups for systems or activities that actively and knowingly endanger, harm, or otherwise threaten the physical, mental, economic, or general well-being of other individuals or groups in violation of the United Nations Universal Declaration of Human Rights.\n\nTHE 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.\n\nThis license is derived from the MIT License, as amended to limit the impact of the unethical use of open source software.", + "json": "hippocratic-1.1.json", + "yaml": "hippocratic-1.1.yml", + "html": "hippocratic-1.1.html", + "license": "hippocratic-1.1.LICENSE" + }, + { + "license_key": "hippocratic-1.2", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-hippocratic-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \u201cSoftware\u201d), 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:\n\n\n* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n* No Harm: The software may not be used by anyone for systems or activities that actively and knowingly endanger, harm, or otherwise threaten the physical, mental, economic, or general well-being of other individuals or groups, in violation of the United Nations Universal Declaration of Human Rights (https://www.un.org/en/universal-declaration-human-rights/).\n\n* Services: If the Software is used to provide a service to others, the licensee shall, as a condition of use, require those others not to use the service in any way that violates the No Harm clause above.\n\n* Enforceability: If any portion or provision of this License shall to any extent be declared illegal or unenforceable by a court of competent jurisdiction, then the remainder of this License, or the application of such portion or provision in circumstances other than those as to which it is so declared illegal or unenforceable, shall not be affected thereby, and each portion and provision of this Agreement shall be valid and enforceable to the fullest extent permitted by law.\n\n\nTHE SOFTWARE IS PROVIDED \u201cAS IS\u201d, 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.\n\nThis Hippocratic License is an Ethical Source license (https://ethicalsource.dev) derived from the MIT License, amended to limit the impact of the unethical use of open source software.", + "json": "hippocratic-1.2.json", + "yaml": "hippocratic-1.2.yml", + "html": "hippocratic-1.2.html", + "license": "hippocratic-1.2.LICENSE" + }, + { + "license_key": "hippocratic-2.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-hippocratic-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Hippocratic License Version 2.0. \n\nLicensor hereby grants permission by this\u00a0license (\"License\"), free of charge, to any person\u00a0or entity (the \"Licensee\")\u00a0obtaining 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:\n\n\n* The above copyright notice and this License or a subsequent version published on the Hippocratic License Website (https://firstdonoharm.dev/) shall be included in all copies or substantial portions of the Software. Licensee has the option of following the terms and conditions either of the above numbered version of this License or of any subsequent version published on the Hippocratic License Website.\n\n* Compliance with Human Rights Laws and Human Rights Principles:\n\n 1. Human Rights Laws. The\u00a0Software shall not be used by\u00a0any person or entity\u00a0for any systems,\u00a0activities, or other uses\u00a0that\u00a0violate any\u00a0applicable laws, regulations, or rules that protect human, civil, labor, privacy, political, environmental, security, economic, due process, or similar rights (the \"Human Rights Laws\"). Where the Human Rights Laws of more than one jurisdiction are applicable to the use of the Software, the Human Rights Laws that are most protective of the individuals or groups harmed shall apply.\n\n 2. Human Rights Principles. Licensee is advised to consult the articles of the United Nations Universal Declaration of Human Rights (https://www.un.org/en/universal-declaration-human-rights/) and the United Nations Global Compact (https://www.unglobalcompact.org/what-is-gc/mission/principles) that define recognized principles of international human rights (the \"Human Rights Principles\"). It is Licensor's express intent that all use of the Software be consistent with Human Rights Principles. If Licensor receives notification or otherwise learns of an alleged violation of any Human Rights Principles relating to Licensee's use of the Software, Licensor may in its discretion and without obligation (i) (a) notify Licensee of such allegation and (b) allow Licensee 90 days from notification under (i)(a) to investigate and respond to Licensor regarding the allegation and (ii) (a) after the earlier of 90 days from notification under (i)(a), or Licensee's response under (i)(b), notify Licensee of License termination and (b) allow Licensee an additional 90 days from notification under (ii)(a) to cease use of the Software.\n\n 3. Indemnity. Licensee shall hold harmless and indemnify Licensor against all losses, damages, liabilities, deficiencies, claims, actions, judgments, settlements, interest, awards, penalties, fines, costs, or expenses of whatever kind, including Licensor's reasonable attorneys' fees, arising out of or relating to Licensee's non-compliance with this License or use of the Software in violation of Human Rights Laws or Human Rights Principles.\u00a0\n\n* Enforceability: If any portion or provision of this License\u00a0is\u00a0determined to be\u00a0invalid, illegal, or unenforceable\u00a0by a court of competent jurisdiction, then\u00a0such invalidity, illegality, or unenforceability shall not affect any other term or provision of this\u00a0License\u00a0or invalidate or render unenforceable such term or provision in any other jurisdiction. Upon a determination that any term or provision is invalid, illegal, or unenforceable, to the extent permitted by applicable law, the court may modify this License to affect the original intent of the parties as closely as possible. The section headings are for convenience only and are not intended to affect the construction or interpretation of this License. Any rule of construction to the effect that ambiguities are to be resolved against the drafting party shall not apply in interpreting this License. The language in this License shall be interpreted as to its fair meaning and not strictly for or against any party.\n\n\nTHE 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.\n\nThis Hippocratic License is an Ethical Source license (https://ethicalsource.dev).", + "json": "hippocratic-2.0.json", + "yaml": "hippocratic-2.0.yml", + "html": "hippocratic-2.0.html", + "license": "hippocratic-2.0.LICENSE" + }, + { + "license_key": "hippocratic-2.1", + "category": "Free Restricted", + "spdx_license_key": "Hippocratic-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Hippocratic License Version Number: 2.1.\n\nPurpose. The purpose of this License is for the Licensor named above to permit the Licensee (as defined below) broad permission, if consistent with Human Rights Laws and Human Rights Principles (as each is defined below), to use and work with the Software (as defined below) within the full scope of Licensor\u2019s copyright and patent rights, if any, in the Software, while ensuring attribution and protecting the Licensor from liability.\n\nPermission and Conditions. The Licensor grants permission by this license (\u201cLicense\u201d), free of charge, to the extent of Licensor\u2019s rights under applicable copyright and patent law, to any person or entity (the \u201cLicensee\u201d) obtaining a copy of this software and associated documentation files (the \u201cSoftware\u201d), to do everything with the Software that would otherwise infringe (i) the Licensor\u2019s copyright in the Software or (ii) any patent claims to the Software that the Licensor can license or becomes able to license, subject to all of the following terms and conditions:\n\n* Acceptance. This License is automatically offered to every person and entity subject to its terms and conditions. Licensee accepts this License and agrees to its terms and conditions by taking any action with the Software that, absent this License, would infringe any intellectual property right held by Licensor.\n\n* Notice. Licensee must ensure that everyone who gets a copy of any part of this Software from Licensee, with or without changes, also receives the License and the above copyright notice (and if included by the Licensor, patent, trademark and attribution notice). Licensee must cause any modified versions of the Software to carry prominent notices stating that Licensee changed the Software. For clarity, although Licensee is free to create modifications of the Software and distribute only the modified portion created by Licensee with additional or different terms, the portion of the Software not modified must be distributed pursuant to this License. If anyone notifies Licensee in writing that Licensee has not complied with this Notice section, Licensee can keep this License by taking all practical steps to comply within 30 days after the notice. If Licensee does not do so, Licensee\u2019s License (and all rights licensed hereunder) shall end immediately.\n\n* Compliance with Human Rights Principles and Human Rights Laws.\n\n 1. Human Rights Principles.\n\n (a) Licensee is advised to consult the articles of the United Nations Universal Declaration of Human Rights and the United Nations Global Compact that define recognized principles of international human rights (the \u201cHuman Rights Principles\u201d). Licensee shall use the Software in a manner consistent with Human Rights Principles.\n\n (b) Unless the Licensor and Licensee agree otherwise, any dispute, controversy, or claim arising out of or relating to (i) Section 1(a) regarding Human Rights Principles, including the breach of Section 1(a), termination of this License for breach of the Human Rights Principles, or invalidity of Section 1(a) or (ii) a determination of whether any Law is consistent or in conflict with Human Rights Principles pursuant to Section 2, below, shall be settled by arbitration in accordance with the Hague Rules on Business and Human Rights Arbitration (the \u201cRules\u201d); provided, however, that Licensee may elect not to participate in such arbitration, in which event this License (and all rights licensed hereunder) shall end immediately. The number of arbitrators shall be one unless the Rules require otherwise.\n\n Unless both the Licensor and Licensee agree to the contrary: (1) All documents and information concerning the arbitration shall be public and may be disclosed by any party; (2) The repository referred to under Article 43 of the Rules shall make available to the public in a timely manner all documents concerning the arbitration which are communicated to it, including all submissions of the parties, all evidence admitted into the record of the proceedings, all transcripts or other recordings of hearings and all orders, decisions and awards of the arbitral tribunal, subject only to the arbitral tribunal's powers to take such measures as may be necessary to safeguard the integrity of the arbitral process pursuant to Articles 18, 33, 41 and 42 of the Rules; and (3) Article 26(6) of the Rules shall not apply.\n\n 2. Human Rights Laws. The Software shall not be used by any person or entity for any systems, activities, or other uses that violate any Human Rights Laws. \u201cHuman Rights Laws\u201d means any applicable laws, regulations, or rules (collectively, \u201cLaws\u201d) that protect human, civil, labor, privacy, political, environmental, security, economic, due process, or similar rights; provided, however, that such Laws are consistent and not in conflict with Human Rights Principles (a dispute over the consistency or a conflict between Laws and Human Rights Principles shall be determined by arbitration as stated above). Where the Human Rights Laws of more than one jurisdiction are applicable or in conflict with respect to the use of the Software, the Human Rights Laws that are most protective of the individuals or groups harmed shall apply.\n\n 3. Indemnity. Licensee shall hold harmless and indemnify Licensor (and any other contributor) against all losses, damages, liabilities, deficiencies, claims, actions, judgments, settlements, interest, awards, penalties, fines, costs, or expenses of whatever kind, including Licensor\u2019s reasonable attorneys\u2019 fees, arising out of or relating to Licensee\u2019s use of the Software in violation of Human Rights Laws or Human Rights Principles.\n\n* Failure to Comply. Any failure of Licensee to act according to the terms and conditions of this License is both a breach of the License and an infringement of the intellectual property rights of the Licensor (subject to exceptions under Laws, e.g., fair use). In the event of a breach or infringement, the terms and conditions of this License may be enforced by Licensor under the Laws of any jurisdiction to which Licensee is subject. Licensee also agrees that the Licensor may enforce the terms and conditions of this License against Licensee through specific performance (or similar remedy under Laws) to the extent permitted by Laws. For clarity, except in the event of a breach of this License, infringement, or as otherwise stated in this License, Licensor may not terminate this License with Licensee.\n\n* Enforceability and Interpretation. If any term or provision of this License is determined to be invalid, illegal, or unenforceable by a court of competent jurisdiction, then such invalidity, illegality, or unenforceability shall not affect any other term or provision of this License or invalidate or render unenforceable such term or provision in any other jurisdiction; provided, however, subject to a court modification pursuant to the immediately following sentence, if any term or provision of this License pertaining to Human Rights Laws or Human Rights Principles is deemed invalid, illegal, or unenforceable against Licensee by a court of competent jurisdiction, all rights in the Software granted to Licensee shall be deemed null and void as between Licensor and Licensee. Upon a determination that any term or provision is invalid, illegal, or unenforceable, to the extent permitted by Laws, the court may modify this License to affect the original purpose that the Software be used in compliance with Human Rights Principles and Human Rights Laws as closely as possible. The language in this License shall be interpreted as to its fair meaning and not strictly for or against any party.\n\n* Disclaimer. TO THE FULL EXTENT ALLOWED BY LAW, THIS SOFTWARE COMES \u201cAS IS,\u201d WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED, AND LICENSOR AND ANY OTHER CONTRIBUTOR SHALL NOT BE LIABLE TO ANYONE FOR ANY DAMAGES OR OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THIS LICENSE, UNDER ANY KIND OF LEGAL CLAIM.\n\nThis Hippocratic License is an Ethical Source license (https://ethicalsource.dev) and is offered for use by licensors and licensees at their own risk, on an \u201cAS IS\u201d basis, and with no warranties express or implied, to the maximum extent permitted by Laws.", + "json": "hippocratic-2.1.json", + "yaml": "hippocratic-2.1.yml", + "html": "hippocratic-2.1.html", + "license": "hippocratic-2.1.LICENSE" + }, + { + "license_key": "hippocratic-3.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-Hippocratic-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "HIPPOCRATIC LICENSE\n\nVersion 3.0, October 2021\n\n*\\Hyperlink*\n\nTERMS AND CONDITIONS\n\nTERMS AND CONDITIONS FOR USE, COPY, MODIFICATION, PREPARATION OF DERIVATIVE WORK, REPRODUCTION, AND DISTRIBUTION:\n\n\n* DEFINITIONS:\n\n\nThis section defines certain terms used throughout this license agreement.\n\n1.1. \"License\u201d means the terms and conditions, as stated herein, for use, copy, modification, preparation of derivative work, reproduction, and distribution of Software (as defined below).\n\n1.2. \"Licensor\u201d means the copyright and/or patent owner or entity authorized by the copyright and/or patent owner that is granting the License.\n\n1.3. \"Licensee\u201d means the individual or entity exercising permissions granted by this License, including the use, copy, modification, preparation of derivative work, reproduction, and distribution of Software (as defined below).\n\n1.4. \"Software\u201d means any copyrighted work, including but not limited to software code, authored by Licensor and made available under this License.\n\n1.5. \"Supply Chain\u201d means the sequence of processes involved in the production and/or distribution of a commodity, good, or service offered by the Licensee.\n\n1.6. \"Supply Chain Impacted Party\u201d or \"Supply Chain Impacted Parties\u201d means any person(s) directly impacted by any of Licensee\u2019s Supply Chain, including the practices of all persons or entities within the Supply Chain prior to a good or service reaching the Licensee.\n\n1.7. \"Duty of Care\u201d is defined by its use in tort law, delict law, and/or similar bodies of law closely related to tort and/or delict law, including without limitation, a requirement to act with the watchfulness, attention, caution, and prudence that a reasonable person in the same or similar circumstances would use towards any Supply Chain Impacted Party.\n\n1.8. \"Worker\u201d is defined to include any and all permanent, temporary, and agency workers, as well as piece-rate, salaried, hourly paid, legal young (minors), part-time, night, and migrant workers.\n\n\n* INTELLECTUAL PROPERTY GRANTS:\n\n\nThis section identifies intellectual property rights granted to a Licensee.\n\n2.1. Grant of Copyright License: Subject to the terms and conditions of this License, Licensor hereby grants to Licensee a worldwide, non-exclusive, no-charge, royalty-free copyright license to use, copy, modify, prepare derivative work, reproduce, or distribute the Software, Licensor authored modified software, or other work derived from the Software.\n\n2.2 Grant of Patent License: Subject to the terms and conditions of this License, Licensor hereby grants Licensee a worldwide, non-exclusive, no-charge, royalty-free patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer Software.\n\n\n* ETHICAL STANDARDS:\n\n\nThis section lists conditions the Licensee must comply with in order to have rights under this License.\n\nThe rights granted to the Licensee by this License are expressly made subject to the Licensee\u2019s ongoing compliance with the following conditions:\n\n3.1. The Licensee SHALL NOT, whether directly or indirectly, through agents or assigns:\n\n3.1.1. Infringe upon any person's right to life or security of person, engage in extrajudicial killings, or commit murder, without lawful cause\n(See Article 3, *United Nations Universal Declaration of Human Rights*; Article 6, *International Covenant on Civil and Political Rights*)\n\n3.1.2. Hold any person in slavery, servitude, or forced labor\n(See Article 4, *United Nations Universal Declaration of Human Rights*; Article 8, *International Covenant on Civil and Political Rights*);\n\n3.1.3. Contribute to the institution of slavery, slave trading, forced labor, or unlawful child labor\n(See Article 4, *United Nations Universal Declaration of Human Rights*; Article 8, *International Covenant on Civil and Political Rights*);\n\n3.1.4. Torture or subject any person to cruel, inhumane, or degrading treatment or punishment\n(See Article 5, *United Nations Universal Declaration of Human Rights*; Article 7, *International Covenant on Civil and Political Rights*);\n\n3.1.5. Discriminate on the basis of sex, gender, sexual orientation, race, ethnicity, nationality, religion, caste, age, medical disability or impairment, and/or any other like circumstances\n(See Article 7, *United Nations Universal Declaration of Human Rights*; Article 2, *International Covenant on Economic, Social and Cultural Rights*; Article 26, *International Covenant on Civil and Political Rights*);\n\n3.1.6. Prevent any person from exercising his/her/their right to seek an effective remedy by a competent court or national tribunal (including domestic judicial systems, international courts, arbitration bodies, and other adjudicating bodies) for actions violating the fundamental rights granted to him/her/them by applicable constitutions, applicable laws, or by this License\n(See Article 8, *United Nations Universal Declaration of Human Rights*; Articles 9 and 14, *International Covenant on Civil and Political Rights*);\n\n3.1.7. Subject any person to arbitrary arrest, detention, or exile\n(See Article 9, *United Nations Universal Declaration of Human Rights*; Article 9, *International Covenant on Civil and Political Rights*);\n\n3.1.8. Subject any person to arbitrary interference with a person's privacy, family, home, or correspondence without the express written consent of the person\n(See Article 12, *United Nations Universal Declaration of Human Rights*; Article 17, *International Covenant on Civil and Political Rights*);\n\n3.1.9. Arbitrarily deprive any person of his/her/their property\n(See Article 17, *United Nations Universal Declaration of Human Rights*);\n\n3.1.10. Forcibly remove indigenous peoples from their lands or territories or take any action with the aim or effect of dispossessing indigenous peoples from their lands, territories, or resources, including without limitation the intellectual property or traditional knowledge of indigenous peoples, without the free, prior, and informed consent of indigenous peoples concerned\n(See Articles 8 and 10, *United Nations Declaration on the Rights of Indigenous Peoples*);\n\n3.1.11. (Module -- Carbon Underground 200) Be an individual or entity, or a representative, agent, affiliate, successor, attorney, or assign of an individual or entity, on the FFI Solutions Carbon Underground 200 list;\n\n3.1.12. (Module -- Ecocide) Commit ecocide:\n\n 3.1.12.1 For the purpose of this section, \"ecocide\" means unlawful or wanton acts committed with knowledge that there is a substantial likelihood of severe and either widespread or long-term damage to the environment being caused by those acts;\n\n 3.1.12.2 For the purpose of further defining ecocide and the terms contained in the previous paragraph:\n\n 3.1.12.2.1. \"Wanton\" means with reckless disregard for damage which would be clearly excessive in relation to the social and economic benefits anticipated;\n\n 3.1.12.2.2. \"Severe\" means damage which involves very serious adverse changes, disruption, or harm to any element of the environment, including grave impacts on human life or natural, cultural, or economic resources;\n\n 3.1.12.2.3. \"Widespread\" means damage which extends beyond a limited geographic area, crosses state boundaries, or is suffered by an entire ecosystem or species or a large number of human beings;\n\n 3.1.12.2.4. \"Long-term\" means damage which is irreversible or which cannot be redressed through natural recovery within a reasonable period of time; and\n\n 3.1.12.2.5. \"Environment\" means the earth, its biosphere, cryosphere, lithosphere, hydrosphere, and atmosphere, as well as outer space\n\n (See Section II, *Independent Expert Panel for the Legal Definition of Ecocide*, Stop Ecocide Foundation and the Promise Institute for Human Rights at UCLA School of Law, June 2021);\n\n3.1.13. (Module -- Extractive Industries) Be an individual or entity, or a representative, agent, affiliate, successor, attorney, or assign of an individual or entity, that engages in fossil fuel or mineral exploration, extraction, development, or sale;\n\n3.1.14. (Module -- BDS) Be an individual or entity, or a representative, agent, affiliate, successor, attorney, or assign of an individual or entity, identified by the Boycott, Divestment, Sanctions (\"BDS\") movement on its website ([https://bdsmovement.net/](https://bdsmovement.net/) and [https://bdsmovement.net/get-involved/what-to-boycott](https://bdsmovement.net/get-involved/what-to-boycott)) as a target for boycott;\n\n3.1.15. (Module -- Taliban) Be an individual or entity that:\n\n 3.1.15.1. engages in any commercial transactions with the Taliban; or\n\n 3.1.15.2. is a representative, agent, affiliate, successor, attorney, or assign of the Taliban;\n\n3.1.16. (Module -- Myanmar) Be an individual or entity that:\n\n 3.1.16.1. engages in any commercial transactions with the Myanmar/Burmese military junta; or\n\n 3.1.16.2. is a representative, agent, affiliate, successor, attorney, or assign of the Myanmar/Burmese government;\n\n3.1.17. (Module -- Xinjiang Uygur Autonomous Region) Be an individual or entity, or a representative, agent, affiliate, successor, attorney, or assign of any individual or entity, that does business in, purchases goods from, or otherwise benefits from goods produced in the Xinjiang Uygur Autonomous Region of China;\n\n3.1.18. (Module -- U.S. Tariff Act) Be an individual or entity:\n\n 3.1.18.1. which U.S. Customs and Border Protection (CBP) has currently issued a Withhold Release Order (WRO) or finding against based on reasonable suspicion of forced labor; or\n\n 3.1.18.2. that is a representative, agent, affiliate, successor, attorney, or assign of an individual or entity that does business with an individual or entity which currently has a WRO or finding from CBP issued against it based on reasonable suspicion of forced labor;\n\n3.1.19. (Module -- Mass Surveillance) Be a government agency or multinational corporation, or a representative, agent, affiliate, successor, attorney, or assign of a government or multinational corporation, which participates in mass surveillance programs;\n\n3.1.20. (Module -- Military Activities) Be an entity or a representative, agent, affiliate, successor, attorney, or assign of an entity which conducts military activities;\n\n3.1.21. (Module -- Law Enforcement) Be an individual or entity, or a or a representative, agent, affiliate, successor, attorney, or assign of an individual or entity, that provides good or services to, or otherwise enters into any commercial contracts with, any local, state, or federal law enforcement agency;\n\n3.1.22. (Module -- Media) Be an individual or entity, or a or a representative, agent, affiliate, successor, attorney, or assign of an individual or entity, that broadcasts messages promoting killing, torture, or other forms of extreme violence;\n\n3.1.23. Interfere with Workers' free exercise of the right to organize and associate\n(See Article 20, United Nations Universal Declaration of Human Rights; C087 - Freedom of Association and Protection of the Right to Organise Convention, 1948 (No. 87), International Labour Organization; Article 8, International Covenant on Economic, Social and Cultural Rights); and\n\n3.1.24. Harm the environment in a manner inconsistent with local, state, national, or international law.\n\n\n3.2. The Licensee SHALL:\n\n3.2.1. (Module -- Social Auditing) Only use social auditing mechanisms that adhere to Worker-Driven Social Responsibility Network's Statement of Principles (https://wsr-network.org/what-is-wsr/statement-of-principles/) over traditional social auditing mechanisms, to the extent the Licensee uses any social auditing mechanisms at all;\n\n3.2.2. (Module -- Workers on Board of Directors) Ensure that if the Licensee has a Board of Directors, 30% of Licensee's board seats are held by Workers paid no more than 200% of the compensation of the lowest paid Worker of the Licensee;\n\n3.2.3. (Module -- Supply Chain Transparency) Provide clear, accessible supply chain data to the public in accordance with the following conditions:\n\n 3.2.3.1. All data will be on Licensee's website and/or, to the extent Licensee is a representative, agent, affiliate, successor, attorney, subsidiary, or assign, on Licensee's principal's or parent's website or some other online platform accessible to the public via an internet search on a common internet search engine; and\n\n 3.2.3.2. Data published will include, where applicable, manufacturers, top tier suppliers, subcontractors, cooperatives, component parts producers, and farms;\n\n3.2.4. Provide equal pay for equal work where the performance of such work requires equal skill, effort, and responsibility, and which are performed under similar working conditions, except where such payment is made pursuant to:\n\n 3.2.4.1. A seniority system;\n\n 3.2.4.2. A merit system;\n\n 3.2.4.3. A system which measures earnings by quantity or quality of production; or\n\n 3.2.4.4. A differential based on any other factor other than sex, gender, sexual orientation, race, ethnicity, nationality, religion, caste, age, medical disability or impairment, and/or any other like circumstances\n (See 29 U.S.C.A. \ufffd 206(d)(1); Article 23, *United Nations Universal Declaration of Human Rights*; Article 7, *International Covenant on Economic, Social and Cultural Rights*; Article 26, *International Covenant on Civil and Political Rights*); and\n\n3.2.5. Allow for reasonable limitation of working hours and periodic holidays with pay\n(See Article 24, *United Nations Universal Declaration of Human Rights*; Article 7, *International Covenant on Economic, Social and Cultural Rights*).\n\n\n\n* SUPPLY CHAIN IMPACTED PARTIES:\n\n\nThis section identifies additional individuals or entities that a Licensee could harm as a result of violating the Ethical Standards section, the condition that the Licensee must voluntarily accept a Duty of Care for those individuals or entities, and the right to a private right of action that those individuals or entities possess as a result of violations of the Ethical Standards section.\n\n4.1. In addition to the above Ethical Standards, Licensee voluntarily accepts a Duty of Care for Supply Chain Impacted Parties of this License, including individuals and communities impacted by violations of the Ethical Standards. The Duty of Care is breached when a provision within the Ethical Standards section is violated by a Licensee, one of its successors or assigns, or by an individual or entity that exists within the Supply Chain prior to a good or service reaching the Licensee.\n\n4.2. Breaches of the Duty of Care, as stated within this section, shall create a private right of action, allowing any Supply Chain Impacted Party harmed by the Licensee to take legal action against the Licensee in accordance with applicable negligence laws, whether they be in tort law, delict law, and/or similar bodies of law closely related to tort and/or delict law, regardless if Licensee is directly responsible for the harms suffered by a Supply Chain Impacted Party. Nothing in this section shall be interpreted to include acts committed by individuals outside of the scope of his/her/their employment.\n\n\n\n* NOTICE:\nThis section explains when a Licensee must notify others of the License.\n\n\n5.1. Distribution of Notice: Licensee must ensure that everyone who receives a copy of or uses any part of Software from Licensee, with or without changes, also receives the License and the copyright notice included with Software (and if included by the Licensor, patent, trademark, and attribution notice). Licensee must ensure that License is prominently displayed so that any individual or entity seeking to download, copy, use, or otherwise receive any part of Software from Licensee is notified of this License and its terms and conditions. Licensee must cause any modified versions of the Software to carry prominent notices stating that Licensee changed the Software.\n\n5.2. Modified Software: Licensee is free to create modifications of the Software and distribute only the modified portion created by Licensee, however, any derivative work stemming from the Software or its code must be distributed pursuant to this License, including this Notice provision.\n\n5.3. Recipients as Licensees: Any individual or entity that uses, copies, modifies, reproduces, distributes, or prepares derivative work based upon the Software, all or part of the Software\u2019s code, or a derivative work developed by using the Software, including a portion of its code, is a Licensee as defined above and is subject to the terms and conditions of this License.\n\n\n* REPRESENTATIONS AND WARRANTIES:\n\n\n6.1. Disclaimer of Warranty: TO THE FULL EXTENT ALLOWED BY LAW, THIS SOFTWARE COMES \"AS IS,\u201d WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED, AND LICENSOR SHALL NOT BE LIABLE TO ANY PERSON OR ENTITY FOR ANY DAMAGES OR OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THIS LICENSE, UNDER ANY LEGAL CLAIM.\n\n6.2. Limitation of Liability: LICENSEE SHALL HOLD LICENSOR HARMLESS AGAINST ANY AND ALL CLAIMS, DEBTS, DUES, LIABILITIES, LIENS, CAUSES OF ACTION, DEMANDS, OBLIGATIONS, DISPUTES, DAMAGES, LOSSES, EXPENSES, ATTORNEYS\u2019 FEES, COSTS, LIABILITIES, AND ALL OTHER CLAIMS OF EVERY KIND AND NATURE WHATSOEVER, WHETHER KNOWN OR UNKNOWN, ANTICIPATED OR UNANTICIPATED, FORESEEN OR UNFORESEEN, ACCRUED OR UNACCRUED, DISCLOSED OR UNDISCLOSED, ARISING OUT OF OR RELATING TO LICENSEE\u2019S USE OF THE SOFTWARE. NOTHING IN THIS SECTION SHOULD BE INTERPRETED TO REQUIRE LICENSEE TO INDEMNIFY LICENSOR, NOR REQUIRE LICENSOR TO INDEMNIFY LICENSEE.\n\n\n* TERMINATION\n\n\n7.1. Violations of Ethical Standards or Breaching Duty of Care: If Licensee violates the Ethical Standards section or Licensee, or any other person or entity within the Supply Chain prior to a good or service reaching the Licensee, breaches its Duty of Care to Supply Chain Impacted Parties, Licensee must remedy the violation or harm caused by Licensee within 30 days of being notified of the violation or harm. If Licensee fails to remedy the violation or harm within 30 days, all rights in the Software granted to Licensee by License will be null and void as between Licensor and Licensee.\n\n7.2. Failure of Notice: If any person or entity notifies Licensee in writing that Licensee has not complied with the Notice section of this License, Licensee can keep this License by taking all practical steps to comply within 30 days after the notice of noncompliance. If Licensee does not do so, Licensee\u2019s License (and all rights licensed hereunder) will end immediately.\n\n7.3. Judicial Findings: In the event Licensee is found by a civil, criminal, administrative, or other court of competent jurisdiction, or some other adjudicating body with legal authority, to have committed actions which are in violation of the Ethical Standards or Supply Chain Impacted Party sections of this License, all rights granted to Licensee by this License will terminate immediately.\n\n7.4. Patent Litigation: If Licensee institutes patent litigation against any entity (including a cross-claim or counterclaim in a suit) alleging that the Software, all or part of the Software\u2019s code, or a derivative work developed using the Software, including a portion of its code, constitutes direct or contributory patent infringement, then any patent license, along with all other rights, granted to Licensee under this License will terminate as of the date such litigation is filed.\n\n7.5. Additional Remedies: Termination of the License by failing to remedy harms in no way prevents Licensor or Supply Chain Impacted Party from seeking appropriate remedies at law or in equity.\n\n\n* MISCELLANEOUS:\n\n\n8.1. Conditions: Sections 3, 4.1, 5.1, 5.2, 7.1, 7.2, 7.3, and 7.4 are conditions of the rights granted to Licensee in the License.\n\n8.2. Equitable Relief: Licensor and any Supply Chain Impacted Party shall be entitled to equitable relief, including injunctive relief or specific performance of the terms hereof, in addition to any other remedy to which they are entitled at law or in equity.\n\n8.3. (Module \u2013 Copyleft) Copyleft: Modified software, source code, or other derivative work must be licensed, in its entirety, under the exact same conditions as this License.\n\n8.4. Severability: If any term or provision of this License is determined to be invalid, illegal, or unenforceable by a court of competent jurisdiction, any such determination of invalidity, illegality, or unenforceability shall not affect any other term or provision of this License or invalidate or render unenforceable such term or provision in any other jurisdiction. If the determination of invalidity, illegality, or unenforceability by a court of competent jurisdiction pertains to the terms or provisions contained in the Ethical Standards section of this License, all rights in the Software granted to Licensee shall be deemed null and void as between Licensor and Licensee.\n\n8.5. Section Titles: Section titles are solely written for organizational purposes and should not be used to interpret the language within each section.\n\n8.6. Citations: Citations are solely written to provide context for the source of the provisions in the Ethical Standards.\n\n8.7. Section Summaries: Some sections have a brief italicized description which is provided for the sole purpose of briefly describing the section and should not be used to interpret the terms of the License.\n\n8.8. Entire License: This is the entire License between the Licensor and Licensee with respect to the claims released herein and that the consideration stated herein is the only consideration or compensation to be paid or exchanged between them for this License. This License cannot be modified or amended except in a writing signed by Licensor and Licensee.\n\n8.9. Successors and Assigns: This License shall be binding upon and inure to the benefit of the Licensor\u2019s and Licensee\u2019s respective heirs, successors, and assigns.", + "json": "hippocratic-3.0.json", + "yaml": "hippocratic-3.0.yml", + "html": "hippocratic-3.0.html", + "license": "hippocratic-3.0.LICENSE" + }, + { + "license_key": "historical", + "category": "Permissive", + "spdx_license_key": "HPND", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify and distribute this software and its\ndocumentation for any purpose and without fee is hereby granted,\nprovided that the above copyright notice appear in all copies, and\nthat both that copyright notice and this permission notice\nappear in supporting documentation, and that the name of copyright\nholder or related entities not be used in advertising or publicity\npertaining to distribution of the software without specific, written\nprior permission. Copyright holder makes no representations about\nthe suitability of this software for any purpose. It is provided \"as is\"\nwithout express or implied warranty.\n\nCopyright holder DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS\nSOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL copyright holder BE LIABLE FOR ANY\nSPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\nRESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF\nCONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN\nCONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "historical.json", + "yaml": "historical.yml", + "html": "historical.html", + "license": "historical.LICENSE" + }, + { + "license_key": "historical-ntp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-historical-ntp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted for unlimited modification, use, and\ndistribution. This software is made available with no warranty of any\nkind, express or implied. This copyright notice must remain intact in\nall versions of this software.\n\nThe author would appreciate it if any bug fixes and enhancements were\nto be sent back to him for incorporation into future versions of this\nsoftware.", + "json": "historical-ntp.json", + "yaml": "historical-ntp.yml", + "html": "historical-ntp.html", + "license": "historical-ntp.LICENSE" + }, + { + "license_key": "historical-sell-variant", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Permission to use, copy, modify, distribute, and sell this software and its\ndocumentation for any purpose is hereby granted without fee, provided that the\nabove copyright notice appears in all copies, and that both that the copyright\nnotice and this permission notice appear in supporting documentation , and that\nthe name of copyright holder or related entities not be used in advertising\nor publicity pertaining to distribution of the software without specific,\nwritten prior permission.\n\ncopyright holder makes no representations about the suitability of this software\nfor any purpose. It is provided \"as is\" without express or implied warranty.\n\ncopyright holder DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\nINCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\nIN NO EVENT SHALL copyright holder BE LIABLE FOR ANY SPECIAL, INDIRECT OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,\nDATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\nACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "historical-sell-variant.json", + "yaml": "historical-sell-variant.yml", + "html": "historical-sell-variant.html", + "license": "historical-sell-variant.LICENSE" + }, + { + "license_key": "homebrewed", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-homebrewed", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms of the software as well\nas documentation, with or without modification, are permitted provided\nthat the following conditions are met:\n\n* Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n\n* The names of the contributors may not be used to endorse or\n promote products derived from this software without specific\n prior written permission.\n\n* If you meet the authors of this software in person and you want to\n pay them a beer, you're encouraged to do so. Please, do. If you have\n homebrewed or a craft beer, it might be even better.\n\nTHIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND\nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT\nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER\nOR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGE.", + "json": "homebrewed.json", + "yaml": "homebrewed.yml", + "html": "homebrewed.html", + "license": "homebrewed.LICENSE" + }, + { + "license_key": "hot-potato", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-hot-potato", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "All rights reserved by the last person to commit a change to this\nrepository, except for the right to commit changes to this repository,\nwhich is hereby granted to all of earth's citizens for the purpose of\ncommitting changes to this repository.", + "json": "hot-potato.json", + "yaml": "hot-potato.yml", + "html": "hot-potato.html", + "license": "hot-potato.LICENSE" + }, + { + "license_key": "hp", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "HP SOFTWARE LICENSE TERMS\nNO COMMERCIALIZATION, LIMITED DISTRIBUTION PERMITTED \n\nTHE TERM \"SOFTWARE\" REFERS TO THIS CODE (WHETHER SOURCE OR OBJECT CODE),\nANY COMPONENT OR MODULE THEREOF, ANY INFORMATION (INCLUDING ANY DOCUMENTATION)\nPROVIDED IN CONNECTION WITH THE SOFTWARE, AND ANY DERIVATIVE OF THESE THINGS.\nBY DOWNLOADING, ACCESSING OR USING THE SOFTWARE, YOU AGREE TO BE BOUND BY THE\nTERMS AND CONDITIONS OF THIS LICENSING AGREEMENT. THE SOFTWARE AND EACH OF ITS\nCOMPONENTS ARE PROTECTED UNDER COPYRIGHT LAWS. HEWLETT-PACKARD COMPANY (\"HP\")\nRESERVES ALL RIGHTS EXCEPT THOSE EXPRESSLY GRANTED BY THIS LICENSE AGREEMENT. \n\n(C) HEWLETT-PACKARD COMPANY, 2004.\n\nHP IS AGREEING TO LET YOU DOWNLOAD AND USE THE SOFTWARE UNDER THE TERMS OF THIS AGREEMENT WITHOUT ANY FINANCIAL CHARGE. YOU THEREFORE AGREE TO WAIVE ANY AND ALL DAMAGES AGAINST HP RELATING TO DOWNLOAD OR USE OF THE SOFTWARE, OR TO ANY ACT OR OMISSION ON THE PART OF HP, ITS OFFICERS, DIRECTORS, VENDORS, SUPPLIERS, EMPLOYEES OR AGENTS IN CONNECTION WITH THE SOFTWARE. THE BARGAIN BASIS FOR HP'S AGREEMENT TO PERMIT YOUR DOWNLOAD OR USE OF THE SOFTWARE DOES NOT REFLECT ANY ASSUMPTION OF LIABILITY OR DAMAGES ON HP'S BEHALF; IF YOU DO NOT AGREE TO THIS CONDITION AND TO THE OTHER TERMS AND CONDITIONS OF THIS AGREEMENT, YOUR SOLE REMEDY IS TO NOT DOWNLOAD AND TO NOT USE THE SOFTWARE. HP REPRESENTS, AND YOU ACKNOWLEDGE, THAT THE SOFTWARE IS EXPERIMENTAL IN NATURE, IS NOT OF PRODUCT QUALITY, AND MAY HAVE BUGS OR ERRORS, AND THAT ITS SAFETY IS NOT REPRESENTED; IT SHALL BE SOLELY UP TO YOU AND ANY USER TO DETERMINE WHETHER THE SOFTWARE MAY BE SAFELY OR RELIABLY USED FOR ANY PURPOSE. THESE CONDITIONS, AS WELL AS ALL OF THE CONDITIONS STATED BELOW, ARE OF MATERIAL INDUCEMENT FOR HP TO RELEASE THE SOFTWARE; THAT IS TO SAY, WITHOUT A DAMAGES RELEASE AND RELEASE AND DISCLAIMER OF OTHER RIGHTS AND REMEDIES, HP REPRESENTS THAT IT WOULD NOT RELEASE THE SOFTWARE TO YOU. HP DISCLAIMS, AND YOU HEREBY WAIVE, ANY AND ALL WARRANTIES WITH RESPECT TO THE SOFTWARE, INCLUDING WITHOUT LIMITATION ANY WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE, OR MERCHANTABILITY. \n\nYOU MAY USE THE SOFTWARE FOR NON-COMMERCIAL USE, AT YOUR SOLE RISK AND DISCRETION. \"NON-COMMERCIAL USE\" MEANS THAT YOU MAY USE THE SOFTWARE FOR PERSONAL USE OR RESEARCH OR ACADEMIC PURPOSES, BUT THAT YOU MAY NOT, DIRECTLY OR INDIRECTLY, (A) INCORPORATE THIS SOFTWARE INTO ANY PRODUCT OFFERED FOR SALE, OR USE THE SOFTWARE TO PROVIDE A SERVICE FOR WHICH A FEE IS CHARGED, (B) SELL ANY PRODUCT OR SERVICE DESIGNED SPECIALLY TO INTERFACE WITH, OR TO ACT AS A MODULE SPECIALLY ADAPTED TO FUNCTION WITH, THE SOFTWARE, OR (C) CHARGE ANY FEE IN CONNECTION WITH THE SOFTWARE. SUBJECT TO THESE LIMITATIONS, YOU MAY MAKE COPIES AND DERIVATIVE WORKS OF THE SOFTWARE AND DISTRIBUTE SUCH COPIES TO OTHER PERSONS PROVIDED THAT SUCH COPIES AND RELATED DISTRIBUTION ARE ACCOMPANIED BY HP'S COPYRIGHT NOTICE AND THIS AGREEMENT AND ARE SUBJECT TO THE TERMS OF THIS AGREEMENT, VERBATIM.\n\nHP SHALL HAVE NO OBLIGATION TO PROVIDE SUPPORT OR MAINTENANCE FOR, OR TO PROVIDE ANY UPDATES TO, THE SOFTWARE. HP SHALL HAVE NO OBLIGATION TO RESPOND TO QUESTIONS OR TO PROVIDE INFORMATION REGARDING THE SOFTWARE. \nTHIS AGREEMENT AND ALL MATTERS REGARDING THE SOFTWARE SHALL BE INTERPRETED EXCLUSIVELY BY APPLYING THE LAWS OF THE STATE OF DELAWARE, USA, WITHOUT REGARD TO ITS CONFLICT OF LAWS PRINCIPLES. \nANY VIOLATION OF THIS AGREEMENT AND THESE TERMS WILL BE DEEMED TO CAUSE HP IRREPARABLE HARM. \nTHESE CONDITIONS SHALL APPLY EVEN IF YOU ADVISE HP TO THE CONTRARY IN WRITING OR OTHERWISE; THIS AGREEMENT MAY NOT BE CONTRADICTED OR ALTERED, EXCEPT BY A WRITTEN AMENDMENT THAT BOTH SPECIFICALLY REFERENCES THIS AGREEMENT AND IS SIGNED BY AN AUTHORIZED REPRESENTATIVE OF HP.", + "json": "hp.json", + "yaml": "hp.yml", + "html": "hp.html", + "license": "hp.LICENSE" + }, + { + "license_key": "hp-enterprise-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hp-enterprise-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Hewlett Packard Enterprise Support Center\n\nHPE End User License Agreement\n\nApplicability. This end user license agreement (the \"Agreement\") governs the use of accompanying software, unless it is subject to a separate agreement between you and Hewlett Packard Enterprise Company and its subsidiaries (\"HPE\"). By downloading, copying, or using the software you agree to this Agreement. HPE provides translations of this Agreement in certain languages other than English, which may be found at: http://www.hpe.com/software/SWLicensing.\n\nTerms. This Agreement includes supporting material accompanying the software or referenced by HPE, which may be software license information, additional license authorizations, software specifications, published warranties, supplier terms, open source software licenses and similar content (\"Supporting Material\"). Additional license authorizations are at: http://www.hpe.com/software/SWLicensing.\n\nAuthorization. If you agree to this Agreement on behalf of another person or entity, you warrant you have authority to do so.\n\nConsumer Rights. If you obtained software as a consumer, nothing in this Agreement affects your statutory rights.\n\nElectronic Delivery. HPE may elect to deliver software and related software product or license information by electronic transmission or download.\n\nLicense Grant. If you abide by this Agreement, HPE grants you a non-exclusive non-transferable license to use one copy of the version or release of the accompanying software for your internal purposes only, and is subject to any specific software licensing information that is in the software product or its Supporting Material. \n\nYour use is subject to the following restrictions, unless specifically allowed in Supporting Material:\nYou may not use software to provide services to third parties.\nYou may not make copies and distribute, resell or sublicense software to third parties.\nYou may not download and use patches, enhancements, bug fixes, or similar updates unless you have a license to the underlying software. However, such license doesn't automatically give you a right to receive such updates and HPE reserves the right to make such updates only available to customers with support contracts.\nYou may not copy software or make it available on a public or external distributed network.\nYou may not allow access on an intranet unless it is restricted to authorized users.\nYou may make one copy of the software for archival purposes or when it is an essential step in authorized use.\nYou may not modify, reverse engineer, disassemble, decrypt, decompile or make derivative works of software. If you have a mandatory right to do so under statute, you must inform HPE in writing about such modifications.\n\nRemote Monitoring. Some software may require keys or other technical protection measures and HPE may monitor your compliance with the Agreement, remotely or otherwise. If HPE makes a license management program for recording and reporting license usage information, you will use such program no later than 180 days from the date it's made available.\n\nOwnership. No transfer of ownership of any intellectual property will occur under this Agreement.\n\nCopyright Notices. You must reproduce copyright notices on software and documentation for authorized copies.\n\nOperating Systems. Operating system software may only be used on approved hardware and configurations.\n\n90-day Limited Warranty for HPE Software.\nHPE-branded software materially conforms to its specifications, if any, and is free of malware at the time of delivery; if you notify HPE within 90 days of delivery of non-conformance to this warranty, HPE will replace your copy. This Agreement states all remedies for warranty claims.\nHPE does not warrant that the operation of software will be uninterrupted or error free, or that software will operate in hardware and software combinations other than as authorized by HPE in Supporting Material. To the extent permitted by law, HPE disclaims all other warranties.\n\nIntellectual Property Rights Infringement. HPE will defend and/or settle any claims against you that allege that HPE-branded software as supplied under this Agreement infringes the intellectual property rights of a third party. HPE will rely on your prompt notification of the claim and cooperation with our defense. HPE may modify the software so as to be non-infringing and materially equivalent, or we may procure a license. If these options are not available, we will refund to you the amount paid for the affected product in the first year or the depreciated value thereafter. HPE is not responsible for claims resulting from any unauthorized use of the software.\n\nLimitation of Liability. HPE's liability to you under this Agreement is limited to the amount actually paid by you to HPE for the relevant software, except for amounts in Section 12 (\"Intellectual Property Rights Infringement\"). Neither you nor HPE will be liable for lost revenues or profits, downtime costs, loss or damage to data or indirect, special or consequential costs or damages. This provision does not limit either party's liability for: unauthorized use of intellectual property, death or bodily injury caused by their negligence; acts of fraud; willful repudiation of the Agreement; or any liability that may not be excluded or limited by applicable law.\n\nTermination. This Agreement is effective until terminated or in the case of a limited-term license, upon expiration; however, your rights under this Agreement terminate if you fail to comply with it. Immediately upon termination or expiration, you will destroy the software and documentation and any copies, or return them to HPE. You may keep one copy of software and documentation for archival purposes. We may ask you to certify in writing you have complied with this section. Warranty disclaimers, the limitation of liability, this section on termination, and Section 15 (\"General\") will survive termination.\n\nGeneral.\nAssignment. You may not assign this Agreement without prior written consent of HPE, payment of transfer fees and compliance with HPE's software license transfer policies. Authorized assignments will terminate your license to the software and you must deliver software and documentation and copies thereof to the assignee. The assignee will agree in writing to this Agreement. You may only transfer firmware if you transfer associated hardware.\n\nU.S. Government. If the software is licensed to you for use in the performance of a U.S. Government prime contract or subcontract, you agree that, consistent with FAR 12.211 and 12.212, commercial computer software, computer software documentation and technical data for commercial items are licensed under HPE's standard commercial license.\n\nGlobal Trade Compliance. You agree to comply with the trade-related laws and regulations of the U.S. and other national governments. If you export, import or otherwise transfer products provided under this Agreement, you will be responsible for obtaining any required export or import authorizations. You confirm that you are not located in a country that is subject to trade control sanctions (currently Cuba, Iran, N. Korea, N. Sudan, and Syria) and further agree that you will not retransfer the products to any such country. HPE may suspend its performance under this Agreement to the extent required by laws applicable to either party.\n\nAudit. HPE may audit you for compliance with the software license terms. Upon reasonable notice, HPE may conduct an audit during normal business hours (with the auditor's costs being at HPE's expense). If an audit reveals underpayments then you will pay to HPE such underpayments. If underpayments discovered exceed five (5) percent, you will reimburse HPE for the auditor costs.\n\nOpen Source Components. To the extent the Supporting Material includes open source licenses, such licenses shall control over this Agreement with respect to the particular open source component. To the extent Supporting Material includes the GNU General Public License or the GNU Lesser General Public License: (a) the software includes a copy of the source code; or (b) if you downloaded the software from a website, a copy of the source code is available on the same website; or (c) if you send HPE written notice, HPE will send you a copy of the source code for a reasonable fee.\n\nNotices. Written notices under this Agreement may be provided to HPE via the method provided in the Supporting Material.\n\nGoverning Law. This Agreement will be governed by the laws of the state of California, U.S.A., excluding rules as to choice and conflict of law. You and HPE agree that the United Nations Convention on Contracts for the International Sale of Goods will not apply.\n\nForce Majeure. Neither party will be liable for performance delays nor for non-performance due to causes beyond its reasonable control, except for payment obligations.\n\nEntire Agreement. This Agreement represents our entire understanding with respect to its subject matter and supersedes any previous communication or agreements that may exist. Modifications to the Agreement will be made only through a written amendment signed by both parties. If HPE doesn't exercise its rights under this Agreement, such delay is not a waiver of its rights.\n\nAustralian Consumers. If you acquired the software as a consumer within the meaning of the 'Australian Consumer Law' under the Australian Competition and Consumer Act 2010 (Cth) then despite any other provision of this Agreement, the terms at this URL apply: http://www.hpe.com/software/SWLicensing.\n\nRussian Consumers. If you are based in the Russian Federation and the rights to use the software are provided to you under a separate license and/or sublicense agreement concluded between you and a duly authorized HPE partner, then this Agreement shall not be applicable.\n\n5012-3777 v1.5, 2016 \nCopyright 2015 Hewlett Packard Enterprise Development LP", + "json": "hp-enterprise-eula.json", + "yaml": "hp-enterprise-eula.yml", + "html": "hp-enterprise-eula.html", + "license": "hp-enterprise-eula.LICENSE" + }, + { + "license_key": "hp-netperf", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-hp-netperf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The enclosed software and documentation includes copyrighted works of Hewlett-Packard Co. For as long as you comply with the following limitations, you are hereby authorized to (i) use, reproduce, and modify the software and documentation, and to (ii) distribute the software and documentation, including modifications, for non-commercial purposes only.\n\n1. The enclosed software and documentation is made available at no charge in order to advance the general development of high-performance networking products.\n\n2. You may not delete any copyright notices contained in the software or documentation. All hard copies, and copies in source code or object code form, of the software or documentation (including modifications) must contain at least one of the copyright notices.\n\n3. The enclosed software and documentation has not been subjected to testing and quality control and is not a Hewlett-Packard Co. product. At a future time, Hewlett-Packard Co. may or may not offer a version of the software and documentation as a product.\n\n4. THE SOFTWARE AND DOCUMENTATION IS PROVIDED \"AS IS\". HEWLETT-PACKARD COMPANY DOES NOT WARRANT THAT THE USE, REPRODUCTION, MODIFICATION OR DISTRIBUTION OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE A THIRD PARTY'S INTELLECTUAL PROPERTY RIGHTS. HP DOES NOT WARRANT THAT THE SOFTWARE OR DOCUMENTATION IS ERROR FREE. HP DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, WITH REGARD TO THE SOFTWARE AND THE DOCUMENTATION. HP SPECIFICALLY DISCLAIMS ALL WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\n5. HEWLETT-PACKARD COMPANY WILL NOT IN ANY EVENT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES (INCLUDING LOST PROFITS) RELATED TO ANY USE, REPRODUCTION, MODIFICATION, OR DISTRIBUTION OF THE SOFTWARE OR DOCUMENTATION.", + "json": "hp-netperf.json", + "yaml": "hp-netperf.yml", + "html": "hp-netperf.html", + "license": "hp-netperf.LICENSE" + }, + { + "license_key": "hp-proliant-essentials", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-hp-proliant-essentials", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "hp-proliant-essentials\n\n\n\t\tPROLIANT ESSENTIALS SOFTWARE\n\n\t\tEND USER LICENSE AGREEMENT\n\nPLEASE READ THIS END USER LICENSE AGREEMENT (\"AGREEMENT\") CAREFULLY. THIS\nAGREEMENT IS A LEGAL AGREEMENT BETWEEN YOU (EITHER AN INDIVIDUAL OR SINGLE\nENTITY) (\"YOU\") AND HEWLETT-PACKARD COMPANY (\"HP\"). BY CLICKING THE \"AGREE\"\nBUTTON BELOW, COPYING, INSTALLING, OR OTHERWISE USING THE SOFTWARE,\n(i) YOU DO SO WITH THE INTENT TO ELECTRONICALLY \"EXECUTE\" THIS AGREEMENT, AND\n(ii) YOU AGREE TO BE BOUND BY AND COMPLY WITH THE FOLLOWING TERMS AND\nCONDITIONS, INCLUDING THE WARRANTY STATEMENT, AS WELL AS ANY TERMS AND\nCONDITIONS CONTAINED IN THE \"ANCILLARY SOFTWARE\" LIST.\n\nIF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT,\n(A) IF THIS AGREEMENT IS DISPLAYED ELECTRONICALLY, YOU MAY INDICATE REJECTION\n OF THIS AGREEMENT BY CLICKING THE \"DISAGREE\" BUTTON;\n(B) YOU SHALL NOT INSTALL THE SOFTWARE; AND\n(C) HP DOES NOT GRANT YOU ANY RIGHTS TO USE THE SOFTWARE.\nNOTWITHSTANDING THE FOREGOING, INSTALLING OR OTHERWISE USING THE SOFTWARE\nINDICATES YOUR ACCEPTANCE OF THE TERMS AND CONDITIONS OF THIS AGREEMENT.\nIF YOU PURCHASED THE SOFTWARE, YOU MAY RETURN THE SOFTWARE TO THE PLACE OF\nPURCHASE FOR A FULL REFUND.\n\nTHE SOFTWARE PROVIDED HEREIN, IS PROVIDED BY HP AND BY THIRD PARTIES, INCLUDING\nTHE OPEN SOURCE COMMUNITY (\"ANCILLARY SOFTWARE\"). USE OF THE HP SOFTWARE, THE\nANCILLARY SOFTWARE, ACCOMPANYING PRINTED MATERIALS, AND THE \"ONLINE\" OR\nELECTRONIC DOCUMENTATION (COLLECTIVELY THE \"PRODUCT\") IS CONDITIONED UPON AND\nLIMITED BY THE FOLLOWING TERMS AND CONDITIONS, INCLUDING THE \"AS IS WARRANTY\nSTATEMENT\" AND THE TERMS AND CONDITIONS OF THE ANCILLARY SOFTWARE LICENSE\nAGREEMENTS (\"ANCILLARY SOFTWARE LICENSES\").\n\nUSE OF ANCILLARY SOFTWARE SHALL BE GOVERNED BY THE ANCILLARY SOFTWARE LICENSE,\nEXCEPT THAT THE DISCLAIMER OF WARRANTIES AND LIMITATION OF LIABILITIES\nPROVISIONS CONTAINED IN THE \"AS-IS WARRANTY STATEMENT\" OF THIS AGREEMENT SHALL\nALSO APPLY TO SUCH ANCILLARY SOFTWARE. HP HAS IDENTIFIED ANCILLARY SOFTWARE\nBY EITHER NOTING THE ANCILLARY SOFTWARE PROVIDER\"S OWNERSHIP WITHIN EACH\nANCILLARY SOFTWARE PROGRAM FILE AND/OR BY PROVIDING LICENSING INFORMATION IN\nTHE \"ANCILLARY SOFTWARE\" LIST. BY ACCEPTING THE TERMS AND CONDITIONS OF THIS\nAGREEMENT, YOU ARE ALSO ACCEPTING THE TERMS AND CONDITIONS OF EACH ANCILLARY\nSOFTWARE LICENSE IN THE ANCILLARY SOFTWARE LIST.\n\nIF AND ONLY IF THE PRODUCT INCLUDES SOFTWARE LICENSED UNDER THE GNU GENERAL\nPUBLIC LICENSE (\"GPL SOFTWARE\"), YOU MAY OBTAIN A COMPLETE MACHINE-READABLE\nCOPY OF THE GPL SOFTWARE SOURCE CODE (\"GPL SOURCE CODE\") BY DOWNLOAD FROM A\nSITE SPECIFIED IN THE FOLLOWING HP WEBSITE:\nHTTP://H18004.WWW1.HP.COM/PRODUCTS/SERVERS/PROLIANTESSENTIALS/VALUEPACK/LICENSING.HTML.\nUPON YOUR WRITTEN REQUEST, HP WILL PROVIDE, FOR A FEE COVERING THE COST OF\nDISTRIBUTION, A COMPLETE MACHINE-READABLE COPY OF THE GPL SOURCE CODE, BY MAIL,\nTO YOU. INFORMATION ABOUT HOW TO MAKE A WRITTEN REQUEST FOR GPL SOURCE CODE\nMAY BE FOUND AT THE FOLLOWING WEBSITE:\nHTTP://H18004.WWW1.HP.COM/PRODUCTS/SERVERS/PROLIANTESSENTIALS/VALUEPACK/LICENSING.HTML .\n\n\nLICENSE TERMS\n\nSUBJECT TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND ANY RIGHTS,\nLIMITATIONS AND OBLIGATIONS SET FORTH IN THE ANCILLARY SOFTWARE LICENSES:\n\n1.\tLICENSE GRANT\n\na.\tIF SOFTWARE DOES NOT REQUIRE AN ACTIVATION KEY. If the Software does\nnot require an Activation Key and provided that You comply with all the terms\nand conditions of this Agreement, HP grants You a non-exclusive,\nnon-transferable (except as provided in Section 16), worldwide (except for the\ncountries referenced in Section 12) license under HP's copyrights, to install,\ncopy on as many computers as you need for your business, use, execute, make\narchival or backup copies, and display (\"Use\") the object code version of the\nProduct on the computer(s) on which this Product is installed and in the\noperating environment as identified by HP in the accompanying materials.\n\nb.\tIF SOFTWARE REQUIRES AN ACTIVATION KEY. If the Software requires an\nActivation Key, and provided that You comply with all terms and conditions of\nthis Agreement, then depending upon the specific hardware configuration You\nemploy, HP grants You the following license (\"License Type\") and rights:\n\n\tAuthorized Copies. You are licensed to install, make Authorized Copies\nof (as defined in this section), execute, and display (\"Use\") the object code\nversion of the Product on an equivalent number of Computers, Host/Client Pairs,\nComputer Nodes, or Clustered Computers (as defined in the table below) as you\nhave Authorized Copies. Authorized Copies is defined as the number of copies\nthat you have paid for as stated in the invoice or comparable document\nevidencing an authorized quantity.\n\nLICENSE TYPE \tSOFTWARE INSTALLS TO:\t\tLICENSED RIGHTS\n\t\t(hardware configuration)\n------------------------------------------------------------------------------\nComputer\tA computer \t\t\tYou have a right to install\n\t\t\t\t\t\tand Use the Product on a single\n\t\t\t\t\t\tcomputer. The installed copy\n\t\t\t\t\t\tmay not be transferred to or\n\t\t\t\t\t\tused on any other computer.\n\n------------------------------------------------------------------------------\nNode/Client\tA set of computers with a\tYou have a right to install and\n\t\tminimum of one host and one\tUse the Product on a Host/Client\n\t\tclient connected to each\tPair or a Single Node. Copies\n\t\tother (\"Host/Client Pair\"),\tof the Product installed on a\n\t\tor in certain instances, a\tHost/Client Pair or Single Node\n\t\tsingle computer\t\t\tmay not be transferred to any\n\t\t(\"Single Node\")\t\t\tother host or client computers\n\t\t\t\t\t\tor other single nodes. You can\n\t\t\t\t\t\tcontinue to Use the Product on\n\t\t\t\t\t\tlicensed clients when a new\n\t\t\t\t\t\tserver is introduced to the\n\t\t\t\t\t\tlicensed clients.\n\n------------------------------------------------------------------------------\nCluster\t\tMore than two computers\t\tYou have a right to install and\n\t\tphysically connected together\tUse the Product on each\n\t\tin a cluster configuration\tClustered Computer. The\n\t\t(each of which is referred to\tinstalled copy may not be\n\t\tas \"Clustered Computer\")\ttransferred to or used on any\n\t\t\t\t\t\tother computer.\n\n\t\t\n\tStorage. You may copy the Product into the local memory or storage\ndevice of the hardware configuration loaded with the Authorized Copies. You may\ncopy the Product onto a reasonable number of network servers or a secure\nintranet for the sole purpose of distributing the Product to the Computers,\nHost/Client Pairs, Computer Nodes, or Clustered Computers. You may make\narchival or back-up copies of the Product. You shall keep the activation key\nwith the hardware configuration to which the activation key is licensed. You\nshould keep copies of the activation key information for future retrieval\npurposes.\n\n2.\t NEW RELEASES. \"New Release\" means a release of the Product that may\ncontain fixes, corrections, or minor improvements to the Product. New Releases\nare distributed from time to time solely at the option of HP. If HP offers a\nNew Release, it may come with its own terms and conditions, however if it does\nnot, You may use the New Release only under the terms and conditions of this\nAgreement.\n3.\tNEW VERSIONS. \"New Version\" means a version of the Product that may\ncontain significant changes, enhancements, and/or functional improvements to\nthe Product. New Versions are distributed solely at the option of HP. If HP\noffers a New Version, it may come with its own terms and conditions, however\nif it does not, You may use the New Version only under the terms and conditions\nof this Agreement.\n4.\tOWNERSHIP. The Product is owned and copyrighted by Hewlett-Packard\nDevelopment Company, L.P., HP's intellectual property management company, and\nby third party suppliers, except for the Ancillary Software, which is owned and\ncopyrighted by the Ancillary Software providers indicated in the ANCILLARY\nSOFTWARE list. Your right to Use the Product confers no title or ownership and\nis not a sale of the Product or any part thereof. Third party suppliers and\nAncillary Software providers are intended beneficiaries under this Agreement\nand may protect their rights in their respective portions of the Product\ndirectly against You.\n5.\tTRANSFER. Without the prior written consent of HP, or unless\nspecifically permitted in the Ancillary Software License, You have no right\n(a) to rent, lease, lend, or otherwise transfer the rights to the Product to\nanyone else; (b) to Use the Product for commercial timesharing or bureau use;\nor (c) to copy the Product onto any public or distributed network.\n6.\t COPYRIGHT. United States copyright laws, other countries' copyright\nlaws, and international treaty provisions protect the Product. You shall not\nremove any product identification, copyright notices, or proprietary notices\nfrom the Product.\n7.\tSUPPORT. Support terms and conditions and contact information are\ndetailed in the Worldwide Limited Warranty and Technical Support for Industry\nStandard Server Products statement (\"Support Statement\"), a copy of which is\navailable on the HP web site at www.hp.com. Subject to the terms of the\nSupport Statement, for HP software products installed on HP computers,\ntechnical support for questions regarding media and Product installation may\nbe available for a ninety (90) day period from the date of purchase of the HP\ncomputer on which this Product is installed (\"Support Term\"). To access this\nsupport in North America, call the HP Technical Support Phone Center at\n1-800-652-6672. This service is available during normal business hours,\nMonday through Friday, during the Support Term. Outside North America, call\nthe nearest HP Technical Support Center. No other support, including\nwithout limitation any on-site support, is provided under this Agreement.\n8.\tLIMITATION ON REVERSE ENGINEERING. Reverse engineering of Ancillary\nSoftware shall be governed by its respective Ancillary Software License. As\nfor the remainder of the Product, You shall not modify, disassemble, reverse\nengineer, decompile, decrypt, or otherwise attempt to access or determine the\nsource code of the Product without HP's prior written consent. Where You have\nother statutory rights with regard to software, You shall provide HP with\nreasonably detailed information regarding any intended disassembly or\ndecompilation of the Product prior to performing such disassembly or\ndecompilation. You shall not decrypt the Product unless necessary for the\nlicensed Use of the Product.\n9.\tRESERVATION OF RIGHTS. HP, its third party suppliers, and Ancillary\nSoftware providers reserve all rights not expressly granted to You in this\nAgreement.\n10.\tTERM AND TERMINATION. You may exercise the rights of this Agreement\nand of the Ancillary Software Licenses for a period of time starting at Your\nacceptance of the terms and conditions of this Agreement and for so long as\nYou meet such terms and conditions (\"Term\"). Notwithstanding the foregoing,\nHP may terminate Your right to Use the Product, upon notice, for Your failure\nto comply with any such term or condition. Immediately upon termination, You\nshall remove, destroy, or return to HP all copies of the Product, including\nthose copies of the Product that are merged into Your adaptations, except for\nindividual pieces of data in Your database. With HP's prior written consent,\none copy of the Product may be retained, for archival purposes only, subsequent\nto termination. You may terminate this Agreement at any time by returning or\ndestroying the Product together with merged portions in any form.\n11.\tCONFIDENTIAL COMPUTER SOFTWARE. Valid license from HP required for\npossession, use, or copying. Consistent with FAR 12.211 and 12.212, Commercial\nComputer Software, Computer Software Documentation, and Technical Data for\nCommercial Items are licensed to the U.S. Government under vendor's standard\ncommercial license.\n12.\tCOMPLIANCE WITH LAW. The Product and any associated hardware,\nsoftware, technology or services may not be exported, reexported, transferred\nor downloaded to persons or entities listed on the U.S. Department of Commerce\nDenied Persons List, Entity List of proliferation concern, or on any U.S.\nTreasury Department Designated Nationals exclusion list, any country under\nU.S. economic embargo, or to parties directly or indirectly involved in the\ndevelopment or production of nuclear, chemical, biological weapons or in\nmissile technology programs as specified in the U.S. Export Administration\nRegulations (15 CFR 744). By accepting this Agreement You confirm that You\nare not (i) located in (or a national resident of) any country under U.S.\neconomic embargo, (ii) identified on any U.S. Department of Commerce Denied\nPersons List, Entity List or Treasury Department Designated Nationals exclusion\nlist, and (iii) directly or indirectly involved in the development or\nproduction of nuclear, chemical, biological weapons or in missile technology\nprograms as specified in the U.S. Export Administration Regulations.\n13.\tAPPLICABLE LAW. This Agreement shall be construed in accordance with\nthe laws of the State of Texas, without regard to conflict of laws principles.\nThe United Nations Convention on Contracts for the International Sale of Goods\nis specifically disclaimed. If the Product was acquired outside the United\nStates, then local law may apply.\n14.\tSEVERABILITY. If any term or provision of this Agreement is determined\nto be illegal or unenforceable, the validity or enforceability of the remainder\nof the terms or provisions herein will remain valid and in full force and\neffect. Failure or delay in enforcing any right or provision of this Agreement\nshall not be deemed a waiver of such right or provision with respect to any\nsubsequent breach. Provisions herein, which by their nature extend beyond the\ntermination of the license in the Product, will remain in effect until\nfulfilled.\n15.\tCONSENT TO USE OF DATA. You agree that HP may collect and use technical\ninformation that You provide in connection with Your Use and request for\ntechnical support of the Product from HP, however, HP will not use this\ninformation in a form that personally identifies You.\n16.\tASSIGNMENT. You may not assign, sublicense or transfer this Agreement,\nthe Product, or any rights or obligations hereunder without the prior written\nconsent of HP. Any such attempted assignment, sublicense, or transfer will be\nnull and void, and in such event, HP may terminate this Agreement immediately.\nNotwithstanding the foregoing, You may assign this Agreement and the rights\ngranted hereunder with the transfer of all or substantially all of Your\nbusiness. The right to assign or transfer Ancillary Software is governed by\nthe terms and conditions of the Ancillary Software Licenses.\n17.\tENTIRE AGREEMENT. This Agreement, including all Ancillary Software\nLicenses in the ANCILLARY SOFTWARE list, is the final, complete and exclusive\nagreement between You and HP relating to the Product, and supersedes any\nprevious communications, representations, or agreements between the parties,\nwhether oral or written, regarding the subject matter hereof. Any additional\nor different terms and conditions not expressly set forth herein will not\napply. This Agreement may not be changed except by an amendment signed by an\nauthorized representative of both You and HP. To the extent the terms of any\nHP policies or programs for support services conflict with the terms of this\nAgreement, the terms of this Agreement shall control.\n18.\tWARRANTY\n\n\ta.\tNO ACTIVATION KEY REQUIRED SOFTWARE - AS-IS WARRANTY STATEMENT:\n\n\tDISCLAIMER. TO THE EXTENT ALLOWED BY APPLICABLE LAW, THIS PRODUCT AND\nSUPPORT SERVICES, IF ANY, ARE PROVIDED TO YOU \"AS IS\" WITHOUT WARRANTIES OF\nANY KIND, WHETHER ORAL OR WRITTEN, EXPRESS OR IMPLIED. HP SPECIFICALLY\nDISCLAIMS ANY IMPLIED WARRANTIES OF ANY KIND, INCLUDING WITHOUT LIMITATION,\nWARRANTY OF MERCHANTABILITY, SATISFACTORY QUALITY, NON-INFRINGEMENT, TITLE,\nACCURACY OF INFORMATIONAL CONTENT, FITNESS FOR A PARTICULAR PURPOSE, ACCURACY\nOR COMPLETENESS OF RESPONSES, RESULTS, OR WORKMANLIKE EFFORT, LACK OF VIRUSES,\nAND LACK OF NEGLIGENCE, ALL WITH REGARD TO THE PRODUCT, AND THE PROVISION OF\nOR FAILURE TO PROVIDE SUPPORT SERVICES. IN ADDITION, WITHOUT LIMITATION,\nTHERE IS NO WARRANTY OF QUIET ENJOYMENT, QUIET POSSESSION AND CORRESPONDENCE\nTO DESCRIPTION WITH REGARD TO THE PRODUCT. YOU ASSUME THE ENTIRE RISK AS TO\nTHE RESULTS AND PERFORMANCE OF THE PRODUCT. NO ORAL OR WRITTEN INFORMATION OR\nADVICE GIVEN BY HP, HP\"S AUTHORIZED REPRESENTATIVES, OR ANY OTHER PARTY SHALL\nCREATE A WARRANTY OR AMEND THIS \"AS IS\" WARRANTY. Some jurisdictions do not\nallow exclusions of implied warranties or conditions, so the above exclusion\nmay not apply to You to the extent prohibited by such local laws. You may have\nother rights that vary from country to country, state to state, or province to\nprovince.\n\n\tb.\tACTIVATION KEY REQUIRED SOFTWARE - LIMITED WARRANTY.\n\nHP warrants that the Product will perform substantially in accordance with the\naccompanying materials for a period of ninety (90) days from the date of\npurchase. If an implied warranty or condition is created by Your\nstate/jurisdiction and federal or state/provincial law prohibits disclaimer of\nit, You also have an implied warranty or condition, BUT ONLY AS TO DEFECTS FOR\nWHICH CLAIMS ARE MADE WITHIN NINETY (90) DAYS FROM THE DATE OF PURCHASE. AS TO\nANY DEFECTS DISCOVERED FOR WHICH A CLAIM IS NOT MADE WITHIN THE NINETY-DAY\nPERIOD, THERE IS NO WARRANTY OR CONDITION OF ANY KIND.\nSome states/jurisdictions do not allow limitations on how long an implied\nwarranty or condition lasts, so the above limitation may not apply to You.\n\n\tDISCLAIMER. The Limited Warranty that appears above is the only\nexpress warranty made to You and is provided in lieu of any other express\nwarranties or implied warrantees (if any) created by any documentation,\npackaging or otherwise. EXCEPT FOR THE LIMITED WARRANTY, AND TO THE MAXIMUM\nEXTENT PERMITTED BY APPLICABLE LAW, HP AND ITS SUPPLIERS PROVIDE THE PRODUCT\nAND SUPPORT SERVICES (IF ANY) \"AS IS\" AND WITH ALL FAULTS, AND HEREBY DISCLAIM\nALL OTHER WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED OR STATUTORY,\nINCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES, DUTIES OR\nCONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE,\nSATISFACTORY QUALITY, NON-INFRINGEMENT OF TITLE, OF ACCURACY OR COMPLETENESS\nOF RESPONSES, OF RESULTS, OF WORKMANLIKE EFFORT, OF LACK OF VIRUSES, AND OF\nLACK OF NEGLIGENCE, ALL WITH REGARD TO THE PRODUCT, AND THE PROVISIONS OF OR\nFAILURE TO PROVIDE SUPPORT SERVICES. ALSO, THERE IS NO WARRANTY OR CONDITION\nOF TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION,\nOR NON-INFRINGEMENT WITH REGARD TO THE PRODUCT.\n\n19.\tLIMITATION OF LIABILITY.\n\n\ta.\t FOR ALL SOFTWARE WHETHER OR NOT AN ACTIVATION KEY IS REQUIRED\n\nEXCEPT TO THE EXTENT PROHIBITED BY LOCAL LAW, IN NO EVENT WILL HP OR ITS\nSUBSIDIARIES, AFFILIATES, DIRECTORS, OFFICERS, EMPLOYEES, AGENTS OR SUPPLIERS\nBE LIABLE FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE,\nOR OTHER DAMAGES (INCLUDING LOST PROFIT, LOST DATA, OR DOWNTIME COSTS) ARISING\nOUT OF THE USE, THE INABILITY TO USE, OR THE RESULTS OF USE OF THE PRODUCT,\nWHETHER BASED IN WARRANTY, CONTRACT, TORT OR OTHER LEGAL THEORY, AND WHETHER\nOR NOT HP WAS ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THE PRODUCT IS NOT\nDESIGNED, MANUFACTURED OR INTENDED FOR USE IN THE PLANNING, CONSTRUCTION,\nMAINTENANCE, OR OPERATION OF A NUCLEAR FACILITY, AIRCRAFT NAVIGATION OR\nAIRCRAFT COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL, LIFE SUPPORT MACHINES,\nOR WEAPONS SYSTEMS (COLLECTIVELY \"HIGH RISK APPLICATIONS\"). YOU ARE SOLELY\nLIABLE IF THE PRODUCT IS USED FOR HIGH RISK APPLICATIONS, AND YOU SHALL\nINDEMNIFY, DEFEND AND HOLD HP HARMLESS FROM ALL LOSS, DAMAGE, EXPENSE OR\nLIABILITY IN CONNECTION WITH SUCH USE. YOU ASSUME THE ENTIRE RISK AS TO YOUR\nUSE OF THE PRODUCT. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR\nLIMITATION OF LIABILITY FOR INCIDENTIAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE\nLIMITATION MAY NOT APPLY TO YOU TO THE EXTENT PROHIBITED BY SUCH LOCAL LAWS.\n\n\tb.\tFOR SOFTWARE REQUIRING AN ACTIVATION KEY\n\nNotwithstanding any damages that You might incur for any reason whatsoever\n(including, without limitation, all damages referenced above and all direct\nor general damages), the entire liability of HP and any of its suppliers under\nany provision of this EULA and Your exclusive remedy for all of the foregoing\n(except for any remedy of repair or replacement if elected by HP with respect\nto any breach of the Limited Warranty) shall be limited to the greater of the\namount actually paid by You for the Product or U.S. $5.00. The foregoing\nlimitations, exclusions and disclaimers (including Warranty above) shall apply\nto the maximum extent permitted by applicable law, even if any remedy fails of\nits essential purpose.\n\nREV08/51/03\tEnd User License Agreement", + "json": "hp-proliant-essentials.json", + "yaml": "hp-proliant-essentials.yml", + "html": "hp-proliant-essentials.html", + "license": "hp-proliant-essentials.LICENSE" + }, + { + "license_key": "hp-snmp-pp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-hp-snmp-pp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.\nPermission to use, copy, modify, distribute and/or sell this software\nand/or its documentation is hereby granted without fee. User agrees\nto display the above copyright notice and this license notice in all\ncopies of the software and any documentation of the software. User\nagrees to assume all liability for the use of the software; Hewlett-Packard\nmakes no representations about the suitability of this software for any\npurpose. It is provided \"AS-IS\" without warranty of any kind, either express\nor implied. User hereby grants a royalty-free license to any and all\nderivatives based upon this software code base.", + "json": "hp-snmp-pp.json", + "yaml": "hp-snmp-pp.yml", + "html": "hp-snmp-pp.html", + "license": "hp-snmp-pp.LICENSE" + }, + { + "license_key": "hp-software-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hp-software-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Hewlett-Packard software license agreement\n\nEND USER LICENSE AGREEMENT\nPLEASE READ CAREFULLY: THE USE OF THE SOFTWARE IS SUBJECT TO THE TERMS AND CONDITIONS THAT FOLLOW (\"AGREEMENT\"), UNLESS THE SOFTWARE IS SUBJECT TO A SEPARATE LICENSE AGREEMENT BETWEEN YOU AND HP OR ITS SUPPLIERS. BY DOWNLOADING, INSTALLING, COPYING, ACCESSING, OR USING THE SOFTWARE, OR BY CHOOSING THE \"I ACCEPT\" OPTION LOCATED ON OR ADJACENT TO THE SCREEN WHERE THIS AGREEMENT MAY BE DISPLAYED, YOU AGREE TO THE TERMS OF THIS AGREEMENT, ANY APPLICABLE WARRANTY STATEMENT AND THE TERMS AND CONDITIONS CONTAINED IN THE \"ANCILLARY SOFTWARE\" (as defined below). IF YOU ARE ACCEPTING THESE TERMS ON BEHALF OF ANOTHER PERSON OR A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE FULL AUTHORITY TO BIND THAT PERSON, COMPANY, OR LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT AGREE TO THESE TERMS, DO NOT DOWNLOAD, INSTALL, COPY, ACCESS, OR USE THE SOFTWARE, AND PROMPTLY RETURN THE SOFTWARE WITH PROOF OF PURCHASE TO THE PARTY FROM WHOM YOU ACQUIRED IT AND OBTAIN A REFUND OF THE AMOUNT YOU PAID, IF ANY. IF YOU DOWNLOADED THE SOFTWARE, CONTACT THE PARTY FROM WHOM YOU ACQUIRED IT.\n\nQUANTITY OF DEVICES: \n\n1. GENERAL TERMS\n\na. You and Your refer either to an individual person or to a single legal entity.\nb. HP means Hewlett-Packard Company or one of its subsidiaries.\nc. HP Branded means Software products bearing a trademark or service mark of Hewlett-Packard Company or any Hewlett-Packard Company Affiliate, and embedded HP selected third party Software that is not offered under a third party license agreement.\nd. Software means machine-readable instructions and data (and copies thereof) including middleware and related updates and upgrades You may be separately authorized to receive, licensed materials, user documentation, user manuals, and operating procedures. \"Ancillary Software\" means all or any portion of Software provided under public, open source, or third party license terms.\ne. Specification means technical information about Software products published in HP product manuals, user documentation, and technical data sheets in effect on the date HP delivers Software products to You.\nf. Transaction Document(s) means an accepted customer order (excluding pre-printed terms) and in relation to that order, valid HP quotations, license to use certificates or invoices.\n \n2. LICENSE TERMS AND RESTRICTIONS\n\na. Subject to the terms and conditions of this Agreement and the payment of any applicable license fee, HP grants You a non-exclusive, non-transferable license to Use (as defined below) in object code form one copy of the Software on one device at a time for Your internal business purposes, unless otherwise indicated above or in applicable Transaction Document(s). \"Use\" means to install, store, load, execute and display the Software in accordance with the Specifications. Your Use of the Software is subject to these license terms and to the other restrictions specified by HP in any other tangible or electronic documentation delivered or otherwise made available to You with or at the time of purchase of the Software, including license terms, warranty statements, Specifications, and \"readme\" or other informational files included in the Software itself. Such restrictions are hereby incorporated in this Agreement by reference. Some Software may require license keys or contain other technical protection measures. You acknowledge that HP may monitor your compliance with Use restrictions remotely or otherwise. If HP makes a license management program available which records and reports license usage information, You agree to appropriately install, configure and execute such license management program beginning no later than one hundred and eighty (180) days from the date it is made available to You and continuing for the period that the Software is Used.\nb. This Agreement confers no title or ownership and is not a sale of any rights in the Software. Third-party suppliers are intended beneficiaries under this Agreement and independently may protect their rights in the Software in the event of any infringement. All rights not expressly granted to You are reserved solely to HP or its suppliers. Nothing herein should be construed as granting You, by implication, estoppel or otherwise, a license relating to Software other than as expressly stated above in this section 2.\nc. Unless otherwise permitted by HP, You (a) may only make copies or adaptations of the Software for archival purposes or when copying or adaptation is an essential step in the authorized Use of the Software on a backup device, provided that copies and adaptations are used in no other manner and provided further that the Use on the backup device is discontinued when the original or replacement device becomes operable, and (b) may not copy the Software onto or otherwise Use or make it available on, to, or through any public or external distributed network.\nd. To Use Software identified as an update or upgrade, You must first be licensed for the original Software identified by HP as eligible for the update or upgrade. If the update or upgrade is intended to substantially replace the original Software, after updating or upgrading, You may no longer Use the original Software that formed the basis for Your update or upgrade eligibility unless otherwise provided by HP in writing. Nothing in this Agreement grants You any right to purchase or receive Software updates, upgrades, or support, and HP is under no obligation to make such support available to you. Updates, upgrades, enhancements, or other Support may only be available under separate HP support agreements. You may contact HP to learn more about any support offerings HP may make available. HP reserves the right to require additional licenses and fees for Software upgrades or other enhancements, or for Use of the Software on upgraded devices.\ne. You must reproduce all copyright notices that appear in or on the Software (including documentation) on all permitted copies or adaptations. Copies of documentation are limited to internal use.\nf. Notwithstanding anything to the contrary herein, if the Transaction Document(s) identifies that the Software may be utilized on another Designated System(s) (as defined below), Your license to Use the Software may be transferred to another Designated System(s). A \"Designated System\" means a computer system owned, controlled, or operated by or solely on behalf of You and may be further identified by HP by the combination of a unique number and a specific system type. Such license will terminate in the event of a change in either the system number or system type, an unauthorized relocation, or if the Designated System ceases to be within Your possession or control.\ng. Operating system Software may only be Used when operating the associated hardware in configurations as approved, sold, or subsequently upgraded by HP or an HP authorized reseller.\nh. Software is not specifically designed, manufactured, or intended for use as parts, components, or assemblies for the planning, construction, maintenance, or direct operation of a nuclear facility. You are solely liable if Software is Used for these applications and will indemnify and hold HP harmless from all loss, damage, expense, or liability in connection with such Use.\ni You will not modify, reverse engineer, disassemble, decrypt, decompile, or make derivative works of the Software. Where You have other rights mandated under statute, You will provide HP with reasonably detailed information regarding any intended modifications, reverse engineering, disassembly, decryption, or decompilation and the purposes therefore.\nj. Extending the Use of Software to any person or entity other than You as a function of providing services, (i.e.; making the Software available through a commercial timesharing or service bureau) must be authorized in writing by HP prior to such Use and may require additional licenses and fees. You may not distribute, resell, or sublicense the Software.\nk. Notwithstanding anything in this Agreement to the contrary, all or any portion of the Software which constitutes Ancillary Software is licensed to You subject to the terms and conditions of the Software license agreement accompanying such Ancillary Software, whether in the form of a separate agreement, shrink wrap license or electronic license terms accepted at time of download. Use of the Ancillary Software by You shall be governed entirely by the terms and conditions of such license and, with respect to HP, by the limitations and disclaimers of sections 3 and 5 hereof. HP has identified any Ancillary Software by either noting the Ancillary Software provider's ownership within each Ancillary Software program file and/or by providing information in the \"ancillary.txt\" or \"readme\" file that is provided as part of the installation of the Software. The Ancillary Software licenses are also set forth in the \"ancillary.txt\" or \"readme\" file. By accepting the terms and conditions of this Agreement, You are also accepting the terms and conditions of each Ancillary Software license in the ancillary.txt or \"readme\" file. If the Software includes Ancillary Software licensed under the GNU General Public License and/or under the GNU Lesser General Pubic License (\"GPL Software\"), a complete machine-readable copy of the GPL Software Source Code (\"GPL Source Code\") is either: (i) included with the Software that is delivered to You; or (ii) upon your written request, HP will provide to You, for a fee covering the cost of distribution, a complete machine-readable copy of the GPL Source Code, by mail, or (iii) if You obtained the Software by downloading it from a HP website and neither of the preceding options are available, you may download the GPL Source Code from the same website. Information about how to make a written request for GPL Source Code may be found in the ancillary.txt file or, if an address is not listed in that file, at the following website: www.hp.com.\n \n3. WARRANTY\n\n(i) IF SOFTWARE IS PROVIDED WITHOUT A LICENSE FEE, THE FOLLOWING AS-IS WARRANTY STATEMENT APPLIES TO THE SOFTWARE:\n\nDISCLAIMER OF WARRANTIES:\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, HP AND ITS SUPPLIERS PROVIDE THE SOFTWARE \"AS IS\" AND WITH ALL FAULTS, AND HEREBY DISCLAIM ALL INDEMNITIES, WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED, WHETHER BY STATUE, COMMON LAW, CUSTOM OR OTHERWISE, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF TITLE AND NON-INFRINGEMENT, ANY IMPLIED WARRANTIES, DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, AND OF LACK OF VIRUSES. HP does not warrant that the operation of Software will be uninterrupted or error free or that the Software will meet Your requirements. Some states/jurisdictions do not allow exclusion of implied warranties or limitations on the duration of implied warranties, so the above disclaimer may not apply to You in its entirety. \n\n(ii) IF SOFTWARE IS PROVIDED FOR A LICENSE FEE, THE FOLLOWING\tLIMITED WARRANTY APPLIES TO THE SOFTWARE:\n\na. HP Branded Software will materially conform to its Specifications. If a warranty period is not specified for HP Branded Software, the warranty period will be ninety (90) days from the delivery date, or the date of installation if installed by HP. If You schedule or delay installation by HP more than thirty (30) days after delivery, the warranty period begins on the 31st day after delivery. This limited warranty is subject to the terms, limitations, and exclusions contained in the limited warranty statement provide for Software in the country where the Software is located when the warranty claim is made.\nb. HP warrants that any physical media containing HP Branded Software will be shipped free of viruses.\nc. HP does not warrant that the operation of Software will be uninterrupted or error free, or that Software will operate in hardware and Software combinations other than as expressly required by HP in the Specifications or that Software will meet requirements specified by You.\nd. HP is not obligated to provide warranty services or support for any claims resulting from:\n1. improper site preparation, or site or environmental conditions that do not conform to HP\u2019s site specifications;\n2. Your non-compliance with Specifications;\n3. improper or inadequate maintenance or calibration;\n4. Your or third-party media, software, interfacing, supplies, or other products;\n5. modifications not performed or authorized by HP;\n6. virus, infection, worm or similar malicious code not introduced by HP; or\n7. abuse, negligence, accident, loss or damage in transit, fire or water damage, electrical disturbances, transportation by You, or other causes beyond HP\u2019s control.\ne. HP provides third-party products, software, and services that are not HP Branded \"AS IS\" without warranties of any kind, although the original manufacturers or third party suppliers of such products, software and services may provide their own warranties.\nf. If notified of a valid warranty claim during the warranty period, HP will, at its option, correct the warranty defect for HP Branded Software, or replace such Software. If HP is unable, within a reasonable time, to complete the correction, or replace such Software, You will be entitled to a refund of the purchase price paid upon prompt return of such Software to HP. You will pay expenses for return of such Software to HP. HP will pay expenses for shipment of repaired or replacement Software to You. This section 3.(ii) f states HP's entire liability for warranty claims.\ng. DISCLAIMER OF WARRANTIES\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, EXCEPT AS EXPRESSLY WARRANTED IN SECTION 3.(ii) a and b ABOVE, HP AND ITS SUPPLIERS PROVIDE THE SOFTWARE \"AS IS\" AND WITH ALL FAULTS, AND HEREBY DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF TITLE AND NON-INFRINGEMENT, ANY IMPLIED WARRANTIES, DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, AND OF LACK OF VIRUSES. Some states/jurisdictions do not allow exclusion of implied warranties or limitations on the duration of implied warranties, so the above disclaimer may not apply to You in its entirety.\n\n4. INTELLECTUAL PROPERTY INFRINGEMENT FOR SOFTWARE PROVIDED FOR A LICENSE FEE: \n\na. In the event Software was provided to You for a License Fee, HP will defend or settle any claim against You alleging that HP Branded Software products provided under this Agreement infringes intellectual property rights in the country where they were sold, if You:\n1. promptly notify HP of the claim in writing;\n2. cooperate with HP in the defense of the claim; and\n3. grant HP sole control of the defense or settlement of the claim.\nHP will pay infringement claim defense costs, HP\u2013negotiated settlement amounts, and court-awarded damages.\nb. If such a claim appears likely, then HP may modify the HP Branded Software products, procure any necessary license, or replace the affected item with one that is at least functionally equivalent. If HP determines that none of these alternatives is reasonably available, then HP will issue You a refund equal to the purchase price paid for the affected item if within one year of delivery, or Your net book value thereafter.\nc. HP has no obligation for any claim of infringement arising from:\n1. HP\u2019s compliance with Your or third party designs, specifications, instructions, or technical information;\n2. modifications made by You or a third party;\n3. Your non-compliance with the Specifications or the documentation described in section 2. a above; or\n4. Your use with products, software, or services that are not HP Branded.\nd. This section 4 states HP's entire liability for claims of intellectual property infringement for Software provided for a license fee.\n\n5. LIMITATION OF LIABILITY AND REMEDIES\n\nNotwithstanding any damages that You might incur, and except for damages for bodily injury (including death) and for the amounts in section 4.a, the entire aggregate liability of HP and any of its suppliers relating to the Software or this Agreement, and Your exclusive remedy for all of the foregoing, shall be limited to the greater of the amount actually paid by You separately for the Software or U.S. $5.00. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL HP OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS OR REVENUES, BUSINESS INTERRUPTION, DOWNTIME COSTS, FAILURE TO REALIZE EXPECTED SAVINGS, LOSS, DISCLOSURE, UNAVAILABILITY OF OR DAMAGE TO DATA, SOFTWARE RESTORATION, OR LOSS OF PRIVACY ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF OR INABILITY TO USE THE SOFTWARE, OR OTHERWISE IN CONNECTION WITH ANY PROVISION OF THIS AGREEMENT, EVEN IF HP OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND EVEN IF THE REMEDY FAILS OF ITS ESSENTIAL PURPOSE. Some states/jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so the above limitation or exclusion may not apply to you. \n\n6. TERMINATION\nThis Agreement is effective unless terminated or rejected. Notwithstanding the foregoing, this Agreement will also terminate upon conditions set forth elsewhere in this Agreement or if You fail to comply with any term or condition hereof. Immediately upon termination You will destroy the Software and all copies of the Software or return them to HP. You may retain one copy of the Software subsequent to termination solely for archival purposes only. At HP\u2019s request, You will certify in writing to HP that You have complied with these requirements. Sections 3.(i), 3.(ii) g, 5, 6 and 7 of this Agreement will survive termination of this Agreement.\n\n7. GENERAL\na. You may not assign, sublicense, delegate or otherwise transfer (\"Assign\") all or any part of this Agreement without prior written consent from HP, payment to HP of any applicable fees, and compliance with HP's Software license transfer policies and any applicable third party license terms. Any such attempted Assignment will be null and void. Where an authorized Assignment occurs in accordance with this section, Your rights under this Agreement will terminate, and You will immediately deliver the Software and all copies to the Assignee. The Assignee must agree in writing to the terms of this Agreement, and the transferee thereafter will be considered \"You\" for purposes of this Agreement. You may transfer firmware only upon transfer of the associated hardware.\nb. If the Software is licensed for use in the performance of a U.S. Government prime contract or subcontract, You agree that, consistent with FAR 12.211 and 12.212, commercial computer Software, computer Software documentation and technical data for commercial items are licensed under HP\u2019s standard commercial license.\nc. To the extent You export, re-export, or import Software, technology, or technical data licensed or provided hereunder, You assume sole responsibility for complying with applicable laws and regulations and for obtaining required export and import authorizations. HP may suspend performance if You are in violation of any applicable laws or regulations.\nd. You agree that HP may audit Your compliance with this Agreement. Any such audit would be at HP\u2019s expense, require reasonable notice, and would be performed during normal business hours. If an audit reveals underpayments then You will immediately pay HP such underpayments together with the costs reasonably incurred by HP in connection with the audit and seeking compliance with this section.\ne. This Agreement is governed by the laws of the State of California, U.S.A., excluding rules as to choice and conflict of law. You and HP agree that the United Nations Convention on Contracts for the International Sale of Goods will not apply to this Agreement.\nf. Subject to the other terms and conditions of this Agreement, this Agreement is the entire agreement between HP and You regarding Your Use of the Software, and supersedes and replaces any previous communications, representations, or agreements, or Your additional or inconsistent terms, whether oral or written. In the event any provision of this Agreement is held invalid or unenforceable the remainder of the Agreement will remain enforceable and unaffected thereby.\ng. HP\u2019s failure to exercise or delay in exercising any of its rights under this Agreement will not constitute or be deemed a waiver or forfeiture of those rights.", + "json": "hp-software-eula.json", + "yaml": "hp-software-eula.yml", + "html": "hp-software-eula.html", + "license": "hp-software-eula.LICENSE" + }, + { + "license_key": "hp-ux-java", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hp-ux-java", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "HP-UX Runtime Environment, for the Java(tm) 2 Platform\n\nATTENTION: USE OF THE SOFTWARE IS SUBJECT TO THE HP SOFTWARE LICENSE TERMS\nAND SUPPLEMENTAL RESTRICTIONS SET FORTH BELOW, THIRD PARTY SOFTWARE LICENSE\nTERMS FOUND IN THE THIRDPARTYLICENSEREADME.TXT FILE AND THE WARRANTY\nDISCLAIMER ATTACHED. IF YOU DO NOT ACCEPT THESE TERMS FULLY, YOU MAY NOT\nINSTALL OR OTHERWISE USE THE SOFTWARE. NOTWITHSTANDING ANYTHING TO THE\nCONTRARY IN THIS NOTICE, INSTALLING OR OTHERWISE USING THE SOFTWARE INDICATES\nYOUR ACCEPTANCE OF THESE LICENSE TERMS.\n\nHP SOFTWARE LICENSE TERMS\n\nThe following terms govern your use of the Software unless you have a separate\nwritten agreement with HP. HP has the right to change these terms and\nconditions at any time, with or without notice.\n\n\nLicense Grant\n\nHP grants you a license to Use one copy of the Software. \"Use\" means storing,\nloading, installing, executing or displaying the Software. You may not modify\nthe Software or disable any licensing or control features of the Software. If\nthe Software is licensed for \"concurrent use\", you may not allow more than the\nmaximum number of authorized users to Use the Software concurrently.\n\nOwnership\n\nThe Software is owned and copyrighted by HP or its third party suppliers.\nYour license confers no title or ownership in the Software and is not a sale\nof any rights in the Software. HPs third party suppliers may protect their\nrights in the event of any violation of these License Terms.\n\nThird Party Code\n\nSome third-party code embedded or bundled with the Software is licensed to you\nunder different terms and conditions as set forth in the\nTHIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of\nany third party license identified in the THIRDPARTYLICENSEREADME.txt file,\nthe disclaimer of warranty and limitation of liability provisions in this\nlicense shall apply to all code distributed as part of or bundled with the\nSoftware.\n\nSource Code\n\nSoftware may contain source code that, unless expressly licensed for other\npurposes, is provided solely for reference purposes pursuant to the terms of\nthis license. Source code may not be redistributed unless expressly provided\nfor in these License Terms.\n\nCopies and Adaptations\n\nYou may only make copies or adaptations of the Software for archival purposes\nor when copying or adaptation is an essential step in the authorized Use of\nthe Software. You must reproduce all copyright notices in the original\nSoftware on all copies or adaptations. You may not copy the Software onto any\nbulletin board or similar system.\n\nNo Disassembly or Decryption\n\nYou may not disassemble or decompile the Software unless HPs prior written\nconsent is obtained. In some jurisdictions, HPs consent may not be required\nfor disassembly or decompilation. Upon request, you will provide HP with\nreasonably detailed information regarding any disassembly or decompilation.\nYou may not decrypt the Software unless decryption is a necessary part of the\noperation of the Software.\n\nTransfer\n\nYour license will automatically terminate upon any transfer of the Software.\nUpon transfer, you must deliver the Software, including any copies and related\ndocumentation, to the transferee. The transferee must accept these License\nTerms as a condition to the transfer.\n\nTermination\n\nHP may terminate your license upon notice for failure to comply with any of\nthese License Terms. Upon termination, you must immediately destroy the\nSoftware, together with all copies, adaptations and merged portions in any\nform.\n\nExport Requirements\n\nYou may not export or re-export the Software or any copy or adaptation in\nviolation of any applicable laws or regulations.\n\nThis software or any copy or adaptation may not be exported, reexported or\ntransferred to or within countries under U.S. economic embargo including the\nfollowing countries: Afghanistan (Taliban-controlled areas), Cuba, Iran,\nIraq, Libya, North Korea, Serbia, Sudan and Syria. This list is subject to\nchange.\n\nThis software or any copy or adaptation may not be exported, reexported or\ntransferred to persons or entities listed on the U.S. Department of Commerce\nDenied Parties List or on any U.S. Treasury Department Designated Nationals\nexclusion list, or to any party directly or indirectly involved in the\ndevelopment or production of nuclear, chemical, biological weapons or related\nmissile technology programs as specified in the U.S. Export Administration\nRegulations (15 CFR 730).\n\nU.S. Government Contracts\n\nIf the Software is licensed for use in the performance of a U.S. government\nprime contract or subcontract, you agree that, consistent with FAR 12.211 and\n12.212, commercial computer Software, computer Software documentation and\ntechnical data for commercial items are licensed under HPs standard\ncommercial license.\n\nSUPPLEMENTAL RESTRICTIONS\n\nYou acknowledge the Software is not designed or intended for use in on-line\ncontrol of aircraft, air traffic, aircraft navigation, or aircraft\ncommunications; or in the design, construction, operation or maintenance of\nany nuclear facility. HP disclaims any express or implied warranty of fitness\nfor such uses.\n\nADDITIONAL SUPPLEMENTAL RESTRICTIONS FOR HP-UX RUNTIME ENVIRONMENT,\nFOR THE JAVA(TM) 2 PLATFORM\n\n* License to Distribute HP-UX Runtime Environment, for the Java(tm) 2\n Platform. You are granted a royalty-free right to reproduce and distribute\n the HP-UX Runtime Environment, for Java provided that you distribute the\n HP-UX Runtime Environment, for the Java 2 Platform complete and unmodified,\n only as a part of, and for the sole purpose of running your Java compatible\n applet or application (\"Program\") into which the HP-UX Runtime Environment,\n for the Java 2 Platform is incorporated.\n\n* Java Platform Interface. Licensee may not modify the Java Platform\n Interface (\"JPI\", identified as classes contained within the \"java\" package\n or any subpackages of the \"java\" package), by creating additional classes\n within the JPI or otherwise causing the addition to or modification of the\n classes in the JPI. In the event that Licensee creates any Java-related API\n and distributes such API to others for applet or application development,\n Licensee must promptly publish broadly, an accurate specification for such\n API for free use by all developers of Java-based software.\n\n* You may make the HP-UX Runtime Environment, for the Java 2 Platform\n accessible to application programs developed by you provided that the\n programs allow such access only through the Invocation Interface specified\n and provided that you shall not expose or document other interfaces that\n permit access to such HP-UX Runtime Environment, for the Java 2 Platform.\n You shall not be restricted hereunder from exposing or documenting\n interfaces to software components that use or access the HP-UX Runtime\n Environment, for the Java 2 Platform.\n\n\nHP WARRANTY STATEMENT\n\nDURATION OF LIMITED WARRANTY: 90 DAYS\n\nHP warrants to you, the end customer, that HP hardware, accessories, and\nsupplies will be free from defects in materials and workmanship after the date\nof purchase for the period specified above. If HP receives notice of such\ndefects during the warranty period, HP will, at its option, either repair or\nreplace products which prove to be defective. Replacement products may be\neither new or equivalent in performance to new.\n\nHP warrants to you that HP Software will not fail to execute its programming\ninstructions after the date of purchase, for the period specified above, due\nto defects in materials and workmanship when properly installed and used. If\nHP receives notice of such defects during the warranty period, HP will replace\nSoftware which does not execute its programming instructions due to such\ndefects.\n\nHP does not warrant that the operation of HP products will be uninterrupted or\nerror free. If HP is unable, within a reasonable time, to repair or replace\nany product to a condition warranted, you will be entitled to a refund of the\npurchase price upon prompt return of the product. Alternatively, in the case\nof HP Software, you will be entitled to a refund of the purchase price upon\nprompt delivery to HP of written notice from you confirming destruction of the\nHP Software, together with all copies, adaptations, and merged portions in any\nform.\n\nHP products may contain remanufactured parts equivalent to new in performance\nor may have been subject to incidental use.\n\nWarranty does not apply to defects resulting from: (a) improper or inadequate\nmaintenance or calibration; (b) software, interfacing, parts or supplies not\nsupplied by HP, (c) unauthorized modification or misuse; (d) operation outside\nof the published environmental specifications for the product, (e) improper\nsite preparation or maintenance, or (f) the presence of code from HP suppliers\nembedded in or bundled with any HP product.\n\nTO THE EXTENT ALLOWED BY LOCAL LAW, THE ABOVE WARRANTIES ARE EXCLUSIVE AND NO\nOTHER WARRANTY OR CONDITION, WHETHER WRITTEN OR ORAL, IS EXPRESSED OR IMPLIED\nAND HP SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OR CONDITIONS OF\nMERCHANTABILITY, SATISFACTORY QUALITY, AND FITNESS FOR A PARTICULAR PURPOSE.\nSome countries, states, or provinces do not allow limitations on the duration\nof an implied warranty, so the above limitation or exclusion may not apply to\nyou. This warranty gives you specific legal rights and you might also have\nother rights that vary from country to country, state to state, or province to\nprovince.\n\nTO THE EXTENT ALLOWED BY LOCAL LAW, THE REMEDIES IN THIS WARRANTY STATEMENT\nARE YOUR SOLE AND EXCLUSIVE REMEDIES. EXCEPT AS INDICATED ABOVE, IN NO EVENT\nWILL HP OR ITS SUPPLIERS BE LIABLE FOR LOSS OF DATA OR FOR DIRECT, SPECIAL,\nINCIDENTAL, CONSEQUENTIAL (INCLUDING LOST PROFIT OR DATA), OR OTHER DAMAGE,\nWHETHER BASED IN CONTRACT, TORT, OR OTHERWISE. Some countries, states, or\nprovinces do not allow the exclusion or limitation of incidental or\nconsequential damages, so the above limitation may not apply to you.", + "json": "hp-ux-java.json", + "yaml": "hp-ux-java.yml", + "html": "hp-ux-java.html", + "license": "hp-ux-java.LICENSE" + }, + { + "license_key": "hp-ux-jre", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hp-ux-jre", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LEGAL NOTICE - READ BEFORE DOWNLOADING OR OTHERWISE USING THIS SOFTWARE.\n\nATTENTION: USE OF THE SOFTWARE IS SUBJECT TO THE HP SOFTWARE LICENSE TERMS, AND SUPPLEMENTAL RESTRICTIONS SET FORTH BELOW AND THE HP WARRANTY DISCLAIMER ATTACHED. CLICK ON THE \"I ACCEPT\" BOX BELOW TO INDICATE YOUR ACCEPTANCE OF THESE TERMS. IF YOU DO NOT ACCEPT THESE TERMS FULLY, YOU MAY NOT INSTALL OR OTHERWISE USE THE SOFTWARE. NOTWITHSTANDING ANYTHING TO THE CONTRARY IN THIS NOTICE, INSTALLING OR OTHERWISE USING THE SOFTWARE INDICATES YOUR ACCEPTANCE OF THESE LICENSE TERMS.\nDownload license for HPjconfig 2.1\nHP software license terms\n\nThe following terms govern your use of the Software unless you have a separate written agreement with HP.\n\nLicense grant\nHP grants you a license to Use one copy of the Software. \"Use\" means storing, loading, installing, executing or displaying the Software. You may not modify the Software or disable any licensing or control features of the Software. If the Software is licensed for \"concurrent use\", you may not allow more than the maximum number of authorized users to Use the Software concurrently.\n\nOwnership\nThe Software is owned and copyrighted by HP or its third party suppliers. Your license confers no title or ownership in the Software and is not a sale of any rights in the Software. HP''s third party suppliers may protect their rights in the event of any violation of these License Terms.\n\nCopies and Adaptations\nYou may only make copies or adaptations of the Software for archival purposes or when copying or adaptation is an essential step in the authorized Use of the Software. You must reproduce all copyright notices in the original Software on all copies or adaptations. You may not copy the Software onto any bulletin board or similar system.\n\nNo disassembly or decryption\nYou may not disassemble or decompile the Software unless HP''s prior written consent is obtained. In some jurisdictions, HP''s consent may not be required for disassembly or decompilation. Upon request, you will provide HP with reasonably detailed information regarding any disassembly or decompilation. You may not decrypt the Software unless decryption is a necessary part of the operation of the Software.\n\nTransfer\nYour license will automatically terminate upon any transfer of the Software. Upon transfer, you must deliver the Software, including any copies and related documentation, to the transferee. The transferee must accept these License Terms as a condition to the transfer.\n\nTermination\nHP may terminate your license upon notice for failure to comply with any of these License Terms. Upon termination, you must immediately destroy the Software, together with all copies, adaptations and merged portions in any form.\n\nExport requirements\nThe software you are about to download contains cryptography technology. Some countries regulate the import, use and/or export of certain products with cryptography. HP makes no claims as to the applicability of local country import, use and/or export regulations in relation to the download of this product. If you are located outside the U.S. and Canada you are advised to consult your local country regulations to insure compliance.\n\nYou may not export or re-export this software or any copy or adaptation in violation of any applicable laws or regulations.\n\nWithout limiting the generality of the foregoing, hardware, software, technology or services provided under this license agreement may not be exported, reexported, transferred or downloaded to or within (or to a national resident of) countries under U.S. economic embargo including the following countries:\n\nCuba, Iran, Iraq, Libya, North Korea, Sudan and Syria.\nThis list is subject to change.\n\nHardware, software, technology or services may not be exported, reexported, transferred or downloaded to persons or entities listed on the U.S. Department of Commerce Denied Persons List, Entity List of proliferation concern or on any U.S. Treasury Department Designated Nationals exclusion list, or to parties directly or indirectly involved in the development or production of nuclear, chemical, biological weapons or in missile technology programs as specified in the U.S. Export Administration Regulations (15 CFR 744).\n\nBy accepting this license agreement you confirm that you are not located in (or a national resident of) any country under U.S. economic embargo, not identified on any U.S. Department of Commerce Denied Persons List, Entity List or Treasury Department Designated Nationals exclusion list, and not directly or indirectly involved in the development or production of nuclear, chemical, biological weapons or in missile technology programs as specified in the U.S. Export Administration Regulations.\n\nU.S. government restricted rights\nThe Software and any accompanying documentation have been developed entirely at private expense. They are delivered and licensed as \"commercial computer software\" as defined in DFARS 252.227-7013 (Oct 1988), DFARS 252.211-7015 (May 1991) or DFARS 252.227-7014 (Jun 1995), as a \"commercial item\" as defined in FAR2.101(a), or as \"Restricted computer software\" as defined in FAR 52.227-19 (Jun 1987)(or any equivalent agency regulation or contract clause), whichever is applicable. You have only those rights provided for such Software and any accompanying documentation by the applicable FAR or DFARS clause or the HP standard software agreement for the product involved.\n\nSupplemental restrictions\nYou acknowledge the Software is not designed or intended for use in on-line control of aircraft, air traffic, aircraft navigation, or aircraft communications; or in the design, construction, operation or maintenance of any nuclear facility. HP disclaims any express or implied warranty of fitness for such uses", + "json": "hp-ux-jre.json", + "yaml": "hp-ux-jre.yml", + "html": "hp-ux-jre.html", + "license": "hp-ux-jre.LICENSE" + }, + { + "license_key": "hs-regexp", + "category": "Permissive", + "spdx_license_key": "Spencer-94", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software is not subject to any license of the American Telephone\nand Telegraph Company or of the Regents of the University of California.\n\nPermission is granted to anyone to use this software for any purpose on any\ncomputer system, and to alter it and redistribute it, subject to the following\nrestrictions:\n\n1. The author is not responsible for the consequences of use of this software,\nno matter how awful, even if they arise from flaws in it.\n\n2. The origin of this software must not be misrepresented, either by explicit\nclaim or by omission. Since few users ever read sources, credits must appear in\nthe documentation.\n\n3. Altered versions must be plainly marked as such, and must not be\nmisrepresented as being the original software. Since few users ever read\nsources, credits must appear in the documentation.\n\n4. This notice may not be removed or altered.", + "json": "hs-regexp.json", + "yaml": "hs-regexp.yml", + "html": "hs-regexp.html", + "license": "hs-regexp.LICENSE" + }, + { + "license_key": "hs-regexp-orig", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Not derived from licensed software.\n\nPermission is granted to anyone to use this software for any\npurpose on any computer system, and to redistribute it freely,\nsubject to the following restrictions:\n\n1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n\n2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n\n3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.", + "json": "hs-regexp-orig.json", + "yaml": "hs-regexp-orig.yml", + "html": "hs-regexp-orig.html", + "license": "hs-regexp-orig.LICENSE" + }, + { + "license_key": "html5", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-html5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You are granted a license to use, reproduce and create derivative works of this document.", + "json": "html5.json", + "yaml": "html5.yml", + "html": "html5.html", + "license": "html5.LICENSE" + }, + { + "license_key": "httpget", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-httpget", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The right to use, modify and redistribute this code is allowed\nprovided the above copyright notice and the below disclaimer appear\non all copies.\nThis file is provided AS IS with no warranties of any kind. The author\nshall have no liability with respect to the infringement of copyrights,\ntrade secrets or any patents by this file or any part thereof. In no\nevent will the author be liable for any lost revenue or profits or\nother special, indirect and consequential damages.", + "json": "httpget.json", + "yaml": "httpget.yml", + "html": "httpget.html", + "license": "httpget.LICENSE" + }, + { + "license_key": "hugo", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-hugo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "HUGO LICENSE - December 19, 2003\n--------------------------------\n\nCopyright (c) 2003 by Kent Tessman\nThe General Coffee Company Film Productions\n\n\n1. Definitions\n\n\"Copyright Holder\" refers to Kent Tessman.\n\n\"End User\" refers to a user of the Software.\n\n\"End User Program\" refers to a computer program created by an End\nUser, written using the Hugo Programming Language and compiled using\nthe Hugo Compiler.\n\n\"Hugo\" refers to the Hugo Interactive Fiction Development System, created\nby the Copyright Holder.\n\n\"Hugo Programming Language\" refers to the Hugo programming language and\nits characteristic syntax.\n\n\"Hugo Source Code\" refers to the human-readable source code of the\nSoftware.\n\n\"License\" refers to this license.\n\n\"Software\" refers to the Hugo Compiler, the Hugo Engine, the Hugo\nDebugger, the Hugo Library, and any other related programs or files.\n\n\n2. Ownership and Grant of Rights\n\n2.1 Hugo is the property of the Copyright Holder. The Copyright Holder\nretains its copyright in the Software, without limitation.\n\n2.2 The Copyright Holder grants to the End User the right to use the\nSoftware solely for the purposes of:\n\n (a) running programs created with the Software; and\n\n (b) creating End User Programs.\n\n2.3 End User Programs are the property of the End User.\n\n\n3. Provision of the Hugo Source Code\n\n3.1 The Copyright Holder has made available to the End User the Hugo\nSource Code for the purposes of:\n\n (a) porting the Software to operating systems for which the\n Software is not yet available; and\n\n (b) investigating the functionality of the Software.\n\n3.2 In no way does the Copyright Holder's act of making available the\nHugo Source code reduce or otherwise affect in any way its rights in\nthe Hugo Source Code.\n\n\n4. Modification and Distribution\n\n4.1 Distribution of the Software or the Hugo Source Code, in whole or\nin part, in a modified form without the express written consent of the\nCopyright Holder is prohibited.\n\n4.2 Distribution of the Software or the Hugo Source Code, in whole or\nin part, for profit or other commercial intent or monetary transaction\nwithout the express written consent of the Copyright Holder is\nprohibited.\n\n4.3 This License must be distributed with any distribution of the \nSoftware or the Hugo Source Code.\n\n\n5. Warranty\n\nThe Software and the Hugo Source Code are provided \"as is\" without\nwarranty of any kind, either expressed or implied, including but not\nlimited to the implied warranties of merchantability and fitness for a\nparticular purpose. In no event shall the Copyright Holder or The \nGeneral Coffee Company Film Productions or any other related or\nunrelated party be liable to the End User or any other individual or\nentity for damages arising out of the use or inability to use these or\nother programs. Use of the Software indicates acceptance of these\nterms.", + "json": "hugo.json", + "yaml": "hugo.yml", + "html": "hugo.html", + "license": "hugo.LICENSE" + }, + { + "license_key": "hxd", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hxd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to anyone to use this Software free of charge for any purpose, including commercial applications, and to redistribute it, provided that the warranty disclaimer is accepted and the following conditions are met:\n\nAll redistributions must keep the original package intact. No file may be removed or modified. Especially you must retain all copyright notices that are currently in place, and this license without modification.\n\nThe origin of this Software must not be misrepresented; you must not claim that you wrote the original Software.\n\nYou may distribute this Software using any medium you see fit, provided you do not charge the user for the Software itself (see details below). Allowed distribution channels include magazine's addon CDs / DVDs / other addon media, download portals, your personal website, or other distribution media, if the following conditions are met:\n\nNo payment before downloads and no wrapper installers that have ads or install adware / spyware.\n\nAds on the pages of your download portal or website are acceptable.\n\nExplicitly allowed is payed content, as typical for printed magazines or books, where the Software is an addon (and not the main content). If it is a digital magazine or e-book, please notify your readers in a freely accessible part, that the Software is Freeware and optionally provide a link to http://mh-nexus.de/hxd .\n\nIf you want to bundle HxD with other commerical /payed products, please contact me.", + "json": "hxd.json", + "yaml": "hxd.yml", + "html": "hxd.html", + "license": "hxd.LICENSE" + }, + { + "license_key": "i2p-gpl-java-exception", + "category": "Copyleft Limited", + "spdx_license_key": "i2p-gpl-java-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "In addition, as a special exception, XXXX gives permission to link the code of\nthis program with the proprietary Java implementation provided by Sun (or other\nvendors as well), and distribute linked combinations including the two.\n\nYou must obey the GNU General Public License in all respects for all of the code\nused other than the proprietary Java implementation. If you modify this file,\nyou may extend this exception to your version of the file, but you are not\nobligated to do so. If you do not wish to do so, delete this exception statement\nfrom your version.", + "json": "i2p-gpl-java-exception.json", + "yaml": "i2p-gpl-java-exception.yml", + "html": "i2p-gpl-java-exception.html", + "license": "i2p-gpl-java-exception.LICENSE" + }, + { + "license_key": "ian-kaplan", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ian-kaplan", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Use of this program, for any purpose, is granted the author,\nIan Kaplan, as long as this copyright notice is included in\nthe source code or any source code derived from this program.\nThe user assumes all responsibility for using this code.", + "json": "ian-kaplan.json", + "yaml": "ian-kaplan.yml", + "html": "ian-kaplan.html", + "license": "ian-kaplan.LICENSE" + }, + { + "license_key": "ian-piumarta", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ian-piumarta", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the 'Software'),\nto deal in the Software without restriction, including without limitation\nthe rights to use, copy, modify, merge, publish, distribute, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, provided that the above copyright notice(s) and this\npermission notice appear in all copies of the Software. Acknowledgement\nof the use of this Software in supporting documentation would be\nappreciated but is not required.\n\nTHE SOFTWARE IS PROVIDED 'AS IS'. USE ENTIRELY AT YOUR OWN RISK.", + "json": "ian-piumarta.json", + "yaml": "ian-piumarta.yml", + "html": "ian-piumarta.html", + "license": "ian-piumarta.LICENSE" + }, + { + "license_key": "ibm-as-is", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-as-is", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This source and object code has been made available to you by IBM on an\nAS-IS basis.\n\nIT IS PROVIDED WITHOUT WARRANTY OF ANY KIND, INCLUDING THE WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE OR OF NONINFRINGEMENT\nOF THIRD PARTY RIGHTS. IN NO EVENT SHALL IBM OR ITS LICENSORS BE LIABLE\nFOR INCIDENTAL, CONSEQUENTIAL OR PUNITIVE DAMAGES. IBMS OR ITS LICENSORS\nDAMAGES FOR ANY CAUSE OF ACTION, WHETHER IN CONTRACT OR IN TORT, AT LAW OR\nAT EQUITY, SHALL BE LIMITED TO A MAXIMUM OF $1,000 PER LICENSE. No license\nunder IBM patents or patent applications is to be implied by the copyright\nlicense.\n\nAny user of this software should understand that neither IBM nor its\nlicensors will be responsible for any consequences resulting from the use\nof this software.\n\nAny person who transfers this source code or any derivative work must\ninclude the IBM copyright notice, this paragraph, and the preceding two\nparagraphs in the transferred software.\n\nAny person who transfers this object code or any derivative work must\ninclude the IBM copyright notice in the transferred software.\n\nCOPYRIGHT I B M CORPORATION 2000\nLICENSED MATERIAL - PROGRAM PROPERTY OF I B M\"", + "json": "ibm-as-is.json", + "yaml": "ibm-as-is.yml", + "html": "ibm-as-is.html", + "license": "ibm-as-is.LICENSE" + }, + { + "license_key": "ibm-data-server-2011", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ibm-data-server-2011", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LICENSE INFORMATION\n\nThe Programs listed below are licensed under the following License Information terms and conditions in addition to the Program license terms previously agreed to by Client and IBM. If Client does not have previously agreed to license terms in effect for the Program, the International Program License Agreement (Z125-3301-14) applies.\n\nProgram Name (Program Number):\nIBM Data Server Driver for .NET Core 3.1 (Tool)\n\nThe following standard terms apply to Licensee's use of the Program.\n\nLimited use right\n\nAs described in the International Program License Agreement (\"IPLA\") and this License Information, IBM grants Licensee a limited right to use the Program. This right is limited to the level of Authorized Use, such as a Processor Value Unit (\"PVU\"), a Resource Value Unit (\"RVU\"), a Value Unit (\"VU\"), or other specified level of use, paid for by Licensee as evidenced in the Proof of Entitlement. Licensee's use may also be limited to a specified machine, or only as a Supporting Program, or subject to other restrictions. As Licensee has not paid for all of the economic value of the Program, no other use is permitted without the payment of additional fees. In addition, Licensee is not authorized to use the Program to provide commercial IT services to any third party, to provide commercial hosting or timesharing, or to sublicense, rent, or lease the Program unless expressly provided for in the applicable agreements under which Licensee obtains authorizations to use the Program. Additional rights may be available to Licensee subject to the payment of additional fees or under different or supplementary terms. IBM reserves the right to determine whether to make such additional rights available to Licensee.\n\nSpecifications\n\nProgram's specifications can be found in the collective Description and Technical Information sections of the Program's Announcement Letters.\n\nProhibited Uses\n\nLicensee may not use or authorize others to use the Program if failure of the Program could lead to death, bodily injury, or property or environmental damage.\n\nRedistributables\n\nIf the Program includes components that are Redistributable, they will be identified in the REDIST file that accompanies the Program. In addition to the license rights granted in the Agreement, Licensee may distribute the Redistributables subject to the following terms:\n1) Redistribution must be in object code form only and must conform to all directions, instruction and specifications in the Program's accompanying REDIST or documentation;\n2) If the Program's accompanying documentation expressly allows Licensee to modify the Redistributables, such modification must conform to all directions, instruction and specifications in that documentation and these modifications, if any, must be treated as Redistributables;\n3) Redistributables may be distributed only as part of Licensee's application that was developed using the Program (\"Licensee's Application\") and only to support Licensee's customers in connection with their use of Licensee's Application. Licensee's Application must constitute significant value add such that the Redistributables are not a substantial motivation for the acquisition by end users of Licensee's software product;\n4) If the Redistributables include a Java Runtime Environment, Licensee must also include other non-Java Redistributables with Licensee's Application, unless the Application is designed to run only on general computer devices (for example, laptops, desktops and servers) and not on handheld or other pervasive devices (i.e., devices that contain a microprocessor but do not have computing as their primary purpose);\n5) Licensee may not remove any copyright or notice files contained in the Redistributables;\n6) Licensee must hold IBM, its suppliers or distributors harmless from and against any claim arising out of the use or distribution of Licensee's Application;\n7) Licensee may not use the same path name as the original Redistributable files/modules;\n8) Licensee may not use IBM's, its suppliers or distributors names or trademarks in connection with the marketing of Licensee's Application without IBM's or that supplier's or distributor's prior written consent;\n9) IBM, its suppliers and distributors provide the Redistributables and related documentation without obligation of support and \"AS IS\", WITH NO WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTY OF TITLE, NON-INFRINGEMENT OR NON-INTERFERENCE AND THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE;\n10) Licensee is responsible for all technical assistance for Licensee's Application and any modifications to the Redistributables; and\n11) Licensee's license agreement with the end user of Licensee's Application must notify the end user that the Redistributables or their modifications may not be i) used for any purpose other than to enable Licensee's Application, ii) copied (except for backup purposes), iii) further distributed or transferred without Licensee's Application or iv) reverse assembled, reverse compiled, or otherwise translated except as specifically permitted by law and without the possibility of a contractual waiver. Furthermore, Licensee's license agreement must be at least as protective of IBM as the terms of this Agreement.\n\nL/N: L-SAZZ-BPMKSH\nD/N: L-SAZZ-BPMKSH\nP/N: L-SAZZ-BPMKSH\n\n\nInternational Program License Agreement\n\nPart 1 - General Terms\n\nBY DOWNLOADING, INSTALLING, COPYING, ACCESSING, CLICKING ON AN \"ACCEPT\" BUTTON, OR OTHERWISE USING THE PROGRAM, LICENSEE AGREES TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCEPTING THESE TERMS ON BEHALF OF LICENSEE, YOU REPRESENT AND WARRANT THAT YOU HAVE FULL AUTHORITY TO BIND LICENSEE TO THESE TERMS. IF YOU DO NOT AGREE TO THESE TERMS,\n\n* DO NOT DOWNLOAD, INSTALL, COPY, ACCESS, CLICK ON AN \"ACCEPT\" BUTTON, OR USE THE PROGRAM; AND\n\n* PROMPTLY RETURN THE UNUSED MEDIA, DOCUMENTATION, AND PROOF OF ENTITLEMENT TO THE PARTY FROM WHOM IT WAS OBTAINED FOR A REFUND OF THE AMOUNT PAID. IF THE PROGRAM WAS DOWNLOADED, DESTROY ALL COPIES OF THE PROGRAM.\n\n1. Definitions\n\n\"Authorized Use\" - the specified level at which Licensee is authorized to execute or run the Program. That level may be measured by number of users, millions of service units (\"MSUs\"), Processor Value Units (\"PVUs\"), or other level of use specified by IBM.\n\n\"IBM\" - International Business Machines Corporation or one of its subsidiaries.\n\n\"License Information\" (\"LI\") - a document that provides information and any additional terms specific to a Program. The Program's LI is available at www.ibm.com/software/sla. The LI can also be found in the Program's directory, by the use of a system command, or as a booklet included with the Program.\n\n\"Program\" - the following, including the original and all whole or partial copies: 1) machine-readable instructions and data, 2) components, files, and modules, 3) audio-visual content (such as images, text, recordings, or pictures), and 4) related licensed materials (such as keys and documentation).\n\n\"Proof of Entitlement\" (\"PoE\") - evidence of Licensee's Authorized Use. The PoE is also evidence of Licensee's eligibility for warranty, future update prices, if any, and potential special or promotional opportunities. If IBM does not provide Licensee with a PoE, then IBM may accept as the PoE the original paid sales receipt or other sales record from the party (either IBM or its reseller) from whom Licensee obtained the Program, provided that it specifies the Program name and Authorized Use obtained.\n\n\"Warranty Period\" - one year, starting on the date the original Licensee is granted the license.\n\n2. Agreement Structure\n\nThis Agreement includes Part 1 - General Terms, Part 2 - Country-unique Terms (if any), the LI, and the PoE and is the complete agreement between Licensee and IBM regarding the use of the Program. It replaces any prior oral or written communications between Licensee and IBM concerning Licensee's use of the Program. The terms of Part 2 may replace or modify those of Part 1. To the extent of any conflict, the LI prevails over both Parts.\n\n3. License Grant\n\nThe Program is owned by IBM or an IBM supplier, and is copyrighted and licensed, not sold.\n\nIBM grants Licensee a nonexclusive license to 1) use the Program up to the Authorized Use specified in the PoE, 2) make and install copies to support such Authorized Use, and 3) make a backup copy, all provided that\n\na. Licensee has lawfully obtained the Program and complies with the terms of this Agreement;\n\nb. the backup copy does not execute unless the backed-up Program cannot execute;\n\nc. Licensee reproduces all copyright notices and other legends of ownership on each copy, or partial copy, of the Program;\n\nd. Licensee ensures that anyone who uses the Program (accessed either locally or remotely) 1) does so only on Licensee's behalf and 2) complies with the terms of this Agreement;\n\ne. Licensee does not 1) use, copy, modify, or distribute the Program except as expressly permitted in this Agreement; 2) reverse assemble, reverse compile, otherwise translate, or reverse engineer the Program, except as expressly permitted by law without the possibility of contractual waiver; 3) use any of the Program's components, files, modules, audio-visual content, or related licensed materials separately from that Program; or 4) sublicense, rent, or lease the Program; and\n\nf. if Licensee obtains this Program as a Supporting Program, Licensee uses this Program only to support the Principal Program and subject to any limitations in the license to the Principal Program, or, if Licensee obtains this Program as a Principal Program, Licensee uses all Supporting Programs only to support this Program, and subject to any limitations in this Agreement. For purposes of this Item \"f,\" a \"Supporting Program\" is a Program that is part of another IBM Program (\"Principal Program\") and identified as a Supporting Program in the Principal Program's LI. (To obtain a separate license to a Supporting Program without these restrictions, Licensee should contact the party from whom Licensee obtained the Supporting Program.)\n\nThis license applies to each copy of the Program that Licensee makes.\n\n3.1 Trade-ups, Updates, Fixes, and Patches\n\n3.1.1 Trade-ups\n\nIf the Program is replaced by a trade-up Program, the replaced Program's license is promptly terminated.\n\n3.1.2 Updates, Fixes, and Patches\n\nWhen Licensee receives an update, fix, or patch to a Program, Licensee accepts any additional or different terms that are applicable to such update, fix, or patch that are specified in its LI. If no additional or different terms are provided, then the update, fix, or patch is subject solely to this Agreement. If the Program is replaced by an update, Licensee agrees to promptly discontinue use of the replaced Program.\n\n3.2 Fixed Term Licenses\n\nIf IBM licenses the Program for a fixed term, Licensee's license is terminated at the end of the fixed term, unless Licensee and IBM agree to renew it.\n\n3.3 Term and Termination\n\nThis Agreement is effective until terminated.\n\nIBM may terminate Licensee's license if Licensee fails to comply with the terms of this Agreement.\n\nIf the license is terminated for any reason by either party, Licensee agrees to promptly discontinue use of and destroy all of Licensee's copies of the Program. Any terms of this Agreement that by their nature extend beyond termination of this Agreement remain in effect until fulfilled, and apply to both parties' respective successors and assignees.\n\n4. Charges\n\nCharges are based on Authorized Use obtained, which is specified in the PoE. IBM does not give credits or refunds for charges already due or paid, except as specified elsewhere in this Agreement.\n\nIf Licensee wishes to increase its Authorized Use, Licensee must notify IBM or an authorized IBM reseller in advance and pay any applicable charges.\n\n5. Taxes\n\nIf any authority imposes on the Program a duty, tax, levy, or fee, excluding those based on IBM's net income, then Licensee agrees to pay that amount, as specified in an invoice, or supply exemption documentation. Licensee is responsible for any personal property taxes for the Program from the date that Licensee obtains it. If any authority imposes a customs duty, tax, levy, or fee for the import into or the export, transfer, access, or use of the Program outside the country in which the original Licensee was granted the license, then Licensee agrees that it is responsible for, and will pay, any amount imposed.\n\n6. Money-back Guarantee\n\nIf Licensee is dissatisfied with the Program for any reason and is the original Licensee, Licensee may terminate the license and obtain a refund of the amount Licensee paid for the Program, provided that Licensee returns the Program and PoE to the party from whom Licensee obtained it within 30 days of the date the PoE was issued to Licensee. If the license is for a fixed term that is subject to renewal, then Licensee may obtain a refund only if the Program and its PoE are returned within the first 30 days of the initial term. If Licensee downloaded the Program, Licensee should contact the party from whom Licensee obtained it for instructions on how to obtain the refund.\n\n7. Program Transfer\n\nLicensee may transfer the Program and all of Licensee's license rights and obligations to another party only if that party agrees to the terms of this Agreement. If the license is terminated for any reason by either party, Licensee is prohibited from transferring the Program to another party. Licensee may not transfer a portion of 1) the Program or 2) the Program's Authorized Use. When Licensee transfers the Program, Licensee must also transfer a hard copy of this Agreement, including the LI and PoE. Immediately after the transfer, Licensee's license terminates.\n\n8. Warranty and Exclusions\n\n8.1 Limited Warranty\n\nIBM warrants that the Program, when used in its specified operating environment, will conform to its specifications. The Program's specifications, and specified operating environment information, can be found in documentation accompanying the Program (such as a read-me file) or other information published by IBM (such as an announcement letter). Licensee agrees that such documentation and other Program content may be supplied only in the English language, unless otherwise required by local law without the possibility of contractual waiver or limitation.\n\nThe warranty applies only to the unmodified portion of the Program. IBM does not warrant uninterrupted or error-free operation of the Program, or that IBM will correct all Program defects. Licensee is responsible for the results obtained from the use of the Program.\n\nDuring the Warranty Period, IBM provides Licensee with access to IBM databases containing information on known Program defects, defect corrections, restrictions, and bypasses at no additional charge. Consult the IBM Software Support Handbook for further information at www.ibm.com/software/support.\n\nIf the Program does not function as warranted during the Warranty Period and the problem cannot be resolved with information available in the IBM databases, Licensee may return the Program and its PoE to the party (either IBM or its reseller) from whom Licensee obtained it and receive a refund of the amount Licensee paid. After returning the Program, Licensee's license terminates. If Licensee downloaded the Program, Licensee should contact the party from whom Licensee obtained it for instructions on how to obtain the refund.\n\n8.2 Exclusions\n\nTHESE WARRANTIES ARE LICENSEE'S EXCLUSIVE WARRANTIES AND REPLACE ALL OTHER WARRANTIES OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND ANY WARRANTY OR CONDITION OF NON-INFRINGEMENT. SOME STATES OR JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF EXPRESS OR IMPLIED WARRANTIES, SO THE ABOVE EXCLUSION MAY NOT APPLY TO LICENSEE. IN THAT EVENT, SUCH WARRANTIES ARE LIMITED IN DURATION TO THE WARRANTY PERIOD. NO WARRANTIES APPLY AFTER THAT PERIOD. SOME STATES OR JURISDICTIONS DO NOT ALLOW LIMITATIONS ON HOW LONG AN IMPLIED WARRANTY LASTS, SO THE ABOVE LIMITATION MAY NOT APPLY TO LICENSEE.\n\nTHESE WARRANTIES GIVE LICENSEE SPECIFIC LEGAL RIGHTS. LICENSEE MAY ALSO HAVE OTHER RIGHTS THAT VARY FROM STATE TO STATE OR JURISDICTION TO JURISDICTION.\n\nTHE WARRANTIES IN THIS SECTION 8 (WARRANTY AND EXCLUSIONS) ARE PROVIDED SOLELY BY IBM. THE DISCLAIMERS IN THIS SUBSECTION 8.2 (EXCLUSIONS), HOWEVER, ALSO APPLY TO IBM'S SUPPLIERS OF THIRD PARTY CODE. THOSE SUPPLIERS PROVIDE SUCH CODE WITHOUT WARRANTIES OR CONDITION OF ANY KIND. THIS PARAGRAPH DOES NOT NULLIFY IBM'S WARRANTY OBLIGATIONS UNDER THIS AGREEMENT.\n\n9. Licensee Data and Databases\n\nTo assist Licensee in isolating the cause of a problem with the Program, IBM may request that Licensee 1) allow IBM to remotely access Licensee's system or 2) send Licensee information or system data to IBM. However, IBM is not obligated to provide such assistance unless IBM and Licensee enter a separate written agreement under which IBM agrees to provide to Licensee that type of support, which is beyond IBM's warranty obligations in this Agreement. In any event, IBM uses information about errors and problems to improve its products and services, and assist with its provision of related support offerings. For these purposes, IBM may use IBM entities and subcontractors (including in one or more countries other than the one in which Licensee is located), and Licensee authorizes IBM to do so.\n\nLicensee remains responsible for 1) any data and the content of any database Licensee makes available to IBM, 2) the selection and implementation of procedures and controls regarding access, security, encryption, use, and transmission of data (including any personally-identifiable data), and 3) backup and recovery of any database and any stored data. Licensee will not send or provide IBM access to any personally-identifiable information, whether in data or any other form, and will be responsible for reasonable costs and other amounts that IBM may incur relating to any such information mistakenly provided to IBM or the loss or disclosure of such information by IBM, including those arising out of any third party claims.\n\n10. Limitation of Liability\n\nThe limitations and exclusions in this Section 10 (Limitation of Liability) apply to the full extent they are not prohibited by applicable law without the possibility of contractual waiver.\n\n10.1 Items for Which IBM May Be Liable\n\nCircumstances may arise where, because of a default on IBM's part or other liability, Licensee is entitled to recover damages from IBM. Regardless of the basis on which Licensee is entitled to claim damages from IBM (including fundamental breach, negligence, misrepresentation, or other contract or tort claim), IBM's entire liability for all claims in the aggregate arising from or related to each Program or otherwise arising under this Agreement will not exceed the amount of any 1) damages for bodily injury (including death) and damage to real property and tangible personal property and 2) other actual direct damages up to the charges (if the Program is subject to fixed term charges, up to twelve months' charges) Licensee paid for the Program that is the subject of the claim.\n\nThis limit also applies to any of IBM's Program developers and suppliers. It is the maximum for which IBM and its Program developers and suppliers are collectively responsible.\n\n10.2 Items for Which IBM Is Not Liable\n\nUNDER NO CIRCUMSTANCES IS IBM, ITS PROGRAM DEVELOPERS OR SUPPLIERS LIABLE FOR ANY OF THE FOLLOWING, EVEN IF INFORMED OF THEIR POSSIBILITY:\n\na. LOSS OF, OR DAMAGE TO, DATA;\n\nb. SPECIAL, INCIDENTAL, EXEMPLARY, OR INDIRECT DAMAGES, OR FOR ANY ECONOMIC CONSEQUENTIAL DAMAGES; OR\n\nc. LOST PROFITS, BUSINESS, REVENUE, GOODWILL, OR ANTICIPATED SAVINGS.\n\n11. Compliance Verification\n\nFor purposes of this Section 11 (Compliance Verification), \"IPLA Program Terms\" means 1) this Agreement and applicable amendments and transaction documents provided by IBM, and 2) IBM software policies that may be found at the IBM Software Policy website (www.ibm.com/softwarepolicies), including but not limited to those policies concerning backup, sub-capacity pricing, and migration.\n\nThe rights and obligations set forth in this Section 11 remain in effect during the period the Program is licensed to Licensee, and for two years thereafter.\n\n11.1 Verification Process\n\nLicensee agrees to create, retain, and provide to IBM and its auditors accurate written records, system tool outputs, and other system information sufficient to provide auditable verification that Licensee's use of all Programs is in compliance with the IPLA Program Terms, including, without limitation, all of IBM's applicable licensing and pricing qualification terms. Licensee is responsible for 1) ensuring that it does not exceed its Authorized Use, and 2) remaining in compliance with IPLA Program Terms.\n\nUpon reasonable notice, IBM may verify Licensee's compliance with IPLA Program Terms at all sites and for all environments in which Licensee uses (for any purpose) Programs subject to IPLA Program Terms. Such verification will be conducted in a manner that minimizes disruption to Licensee's business, and may be conducted on Licensee's premises, during normal business hours. IBM may use an independent auditor to assist with such verification, provided IBM has a written confidentiality agreement in place with such auditor.\n\n11.2 Resolution\n\nIBM will notify Licensee in writing if any such verification indicates that Licensee has used any Program in excess of its Authorized Use or is otherwise not in compliance with the IPLA Program Terms. Licensee agrees to promptly pay directly to IBM the charges that IBM specifies in an invoice for 1) any such excess use, 2) support for such excess use for the lesser of the duration of such excess use or two years, and 3) any additional charges and other liabilities determined as a result of such verification.\n\n12. Third Party Notices\n\nThe Program may include third party code that IBM, not the third party, licenses to Licensee under this Agreement. Notices, if any, for the third party code (\"Third Party Notices\") are included for Licensee's information only. These notices can be found in the Program's NOTICES file(s). Information on how to obtain source code for certain third party code can be found in the Third Party Notices. If in the Third Party Notices IBM identifies third party code as \"Modifiable Third Party Code,\" IBM authorizes Licensee to 1) modify the Modifiable Third Party Code and 2) reverse engineer the Program modules that directly interface with the Modifiable Third Party Code provided that it is only for the purpose of debugging Licensee's modifications to such third party code. IBM's service and support obligations, if any, apply only to the unmodified Program.\n\n13. General\n\na. Nothing in this Agreement affects any statutory rights of consumers that cannot be waived or limited by contract.\n\nb. For Programs IBM provides to Licensee in tangible form, IBM fulfills its shipping and delivery obligations upon the delivery of such Programs to the IBM-designated carrier, unless otherwise agreed to in writing by Licensee and IBM.\n\nc. If any provision of this Agreement is held to be invalid or unenforceable, the remaining provisions of this Agreement remain in full force and effect.\n\nd. Licensee agrees to comply with all applicable export and import laws and regulations, including U.S. embargo and sanctions regulations and prohibitions on export for certain end uses or to certain users.\n\ne. Licensee authorizes International Business Machines Corporation and its subsidiaries (and their successors and assigns, contractors and IBM Business Partners) to store and use Licensee's business contact information wherever they do business, in connection with IBM products and services, or in furtherance of IBM's business relationship with Licensee.\n\nf. Each party will allow the other reasonable opportunity to comply before it claims that the other has not met its obligations under this Agreement. The parties will attempt in good faith to resolve all disputes, disagreements, or claims between the parties relating to this Agreement.\n\ng. Unless otherwise required by applicable law without the possibility of contractual waiver or limitation: 1) neither party will bring a legal action, regardless of form, for any claim arising out of or related to this Agreement more than two years after the cause of action arose; and 2) upon the expiration of such time limit, any such claim and all respective rights related to the claim lapse.\n\nh. Neither Licensee nor IBM is responsible for failure to fulfill any obligations due to causes beyond its control.\n\ni. No right or cause of action for any third party is created by this Agreement, nor is IBM responsible for any third party claims against Licensee, except as permitted in Subsection 10.1 (Items for Which IBM May Be Liable) above for bodily injury (including death) or damage to real or tangible personal property for which IBM is legally liable to that third party.\n\nj. In entering into this Agreement, neither party is relying on any representation not specified in this Agreement, including but not limited to any representation concerning: 1) the performance or function of the Program, other than as expressly warranted in Section 8 (Warranty and Exclusions) above; 2) the experiences or recommendations of other parties; or 3) any results or savings that Licensee may achieve.\n\nk. IBM has signed agreements with certain organizations (called \"IBM Business Partners\") to promote, market, and support certain Programs. IBM Business Partners remain independent and separate from IBM. IBM is not responsible for the actions or statements of IBM Business Partners or obligations they have to Licensee.\n\nl. The license and intellectual property indemnification terms of Licensee's other agreements with IBM (such as the IBM Customer Agreement) do not apply to Program licenses granted under this Agreement.\n\n14. Geographic Scope and Governing Law\n\n14.1 Governing Law\n\nBoth parties agree to the application of the laws of the country in which Licensee obtained the Program license to govern, interpret, and enforce all of Licensee's and IBM's respective rights, duties, and obligations arising from, or relating in any manner to, the subject matter of this Agreement, without regard to conflict of law principles.\n\nThe United Nations Convention on Contracts for the International Sale of Goods does not apply.\n\n14.2 Jurisdiction\n\nAll rights, duties, and obligations are subject to the courts of the country in which Licensee obtained the Program license.\n\nPart 2 - Country-unique Terms\n\nFor licenses granted in the countries specified below, the following terms replace or modify the referenced terms in Part 1. All terms in Part 1 that are not changed by these amendments remain unchanged and in effect. This Part 2 is organized as follows:\n\n* Multiple country amendments to Part 1, Section 14 (Governing Law and Jurisdiction);\n\n* Americas country amendments to other Agreement terms;\n\n* Asia Pacific country amendments to other Agreement terms; and\n\n* Europe, Middle East, and Africa country amendments to other Agreement terms.\n\nMultiple country amendments to Part 1, Section 14 (Governing Law and Jurisdiction)\n\n14.1 Governing Law\n\nThe phrase \"the laws of the country in which Licensee obtained the Program license\" in the first paragraph of 14.1 Governing Law is replaced by the following phrases in the countries below:\n\nAMERICAS\n\n(1) In Canada: the laws in the Province of Ontario;\n\n(2) in Mexico: the federal laws of the Republic of Mexico;\n\n(3) in the United States, Anguilla, Antigua/Barbuda, Aruba, British Virgin Islands, Cayman Islands, Dominica, Grenada, Guyana, Saint Kitts and Nevis, Saint Lucia, Saint Maarten, and Saint Vincent and the Grenadines: the laws of the State of New York, United States;\n\n(4) in Venezuela: the laws of the Bolivarian Republic of Venezuela;\n\nASIA PACIFIC\n\n(5) in Cambodia and Laos: the laws of the State of New York, United States;\n\n(6) in Australia: the laws of the State or Territory in which the transaction is performed;\n\n(7) in Hong Kong SAR and Macau SAR: the laws of Hong Kong Special Administrative Region (\"SAR\");\n\n(8) in Taiwan: the laws of Taiwan;\n\nEUROPE, MIDDLE EAST, AND AFRICA\n\n(9) in Albania, Armenia, Azerbaijan, Belarus, Bosnia-Herzegovina, Bulgaria, Croatia, Former Yugoslav Republic of Macedonia, Georgia, Hungary, Kazakhstan, Kyrgyzstan, Moldova, Montenegro, Poland, Romania, Russia, Serbia, Slovakia, Tajikistan, Turkmenistan, Ukraine, and Uzbekistan: the laws of Austria;\n\n(10) in Algeria, Andorra, Benin, Burkina Faso, Cameroon, Cape Verde, Central African Republic, Chad, Comoros, Congo Republic, Djibouti, Democratic Republic of Congo, Equatorial Guinea, French Guiana, French Polynesia, Gabon, Gambia, Guinea, Guinea-Bissau, Ivory Coast, Lebanon, Madagascar, Mali, Mauritania, Mauritius, Mayotte, Morocco, New Caledonia, Niger, Reunion, Senegal, Seychelles, Togo, Tunisia, Vanuatu, and Wallis and Futuna: the laws of France;\n\n(11) in Estonia, Latvia, and Lithuania: the laws of Finland;\n\n(12) in Angola, Bahrain, Botswana, Burundi, Egypt, Eritrea, Ethiopia, Ghana, Jordan, Kenya, Kuwait, Liberia, Malawi, Malta, Mozambique, Nigeria, Oman, Pakistan, Qatar, Rwanda, Sao Tome and Principe, Saudi Arabia, Sierra Leone, Somalia, Tanzania, Uganda, United Arab Emirates, the United Kingdom, West Bank/Gaza, Yemen, Zambia, and Zimbabwe: the laws of England; and\n\n(13) in South Africa, Namibia, Lesotho, and Swaziland: the laws of the Republic of South Africa.\n\n14.2 Jurisdiction\n\nThe following paragraph pertains to jurisdiction and replaces Subsection 14.2 (Jurisdiction) as it applies for those countries identified below:\n\nAll rights, duties, and obligations are subject to the courts of the country in which Licensee obtained the Program license except that in the countries identified below all disputes arising out of or related to this Agreement, including summary proceedings, will be brought before and subject to the exclusive jurisdiction of the following courts of competent jurisdiction:\n\nAMERICAS\n\n(1) In Argentina: the Ordinary Commercial Court of the city of Buenos Aires;\n\n(2) in Brazil: the court of Rio de Janeiro, RJ;\n\n(3) in Chile: the Civil Courts of Justice of Santiago;\n\n(4) in Ecuador: the civil judges of Quito for executory or summary proceedings (as applicable);\n\n(5) in Mexico: the courts located in Mexico City, Federal District;\n\n(6) in Peru: the judges and tribunals of the judicial district of Lima, Cercado;\n\n(7) in Uruguay: the courts of the city of Montevideo;\n\n(8) in Venezuela: the courts of the metropolitan area of the city of Caracas;\n\nEUROPE, MIDDLE EAST, AND AFRICA\n\n(9) in Austria: the court of law in Vienna, Austria (Inner-City);\n\n(10) in Algeria, Andorra, Benin, Burkina Faso, Cameroon, Cape Verde, Central African Republic, Chad, Comoros, Congo Republic, Djibouti, Democratic Republic of Congo, Equatorial Guinea, France, French Guiana, French Polynesia, Gabon, Gambia, Guinea, Guinea-Bissau, Ivory Coast, Lebanon, Madagascar, Mali, Mauritania, Mauritius, Mayotte, Monaco, Morocco, New Caledonia, Niger, Reunion, Senegal, Seychelles, Togo, Tunisia, Vanuatu, and Wallis and Futuna: the Commercial Court of Paris;\n\n(11) in Angola, Bahrain, Botswana, Burundi, Egypt, Eritrea, Ethiopia, Ghana, Jordan, Kenya, Kuwait, Liberia, Malawi, Malta, Mozambique, Nigeria, Oman, Pakistan, Qatar, Rwanda, Sao Tome and Principe, Saudi Arabia, Sierra Leone, Somalia, Tanzania, Uganda, United Arab Emirates, the United Kingdom, West Bank/Gaza, Yemen, Zambia, and Zimbabwe: the English courts;\n\n(12) in South Africa, Namibia, Lesotho, and Swaziland: the High Court in Johannesburg;\n\n(13) in Greece: the competent court of Athens;\n\n(14) in Israel: the courts of Tel Aviv-Jaffa;\n\n(15) in Italy: the courts of Milan;\n\n(16) in Portugal: the courts of Lisbon;\n\n(17) in Spain: the courts of Madrid; and\n\n(18) in Turkey: the Istanbul Central Courts and Execution Directorates of Istanbul, the Republic of Turkey.\n\n14.3 Arbitration\n\nThe following paragraph is added as a new Subsection 14.3 (Arbitration) as it applies for those countries identified below. The provisions of this Subsection 14.3 prevail over those of Subsection 14.2 (Jurisdiction) to the extent permitted by the applicable governing law and rules of procedure:\n\nASIA PACIFIC\n\n(1) In Cambodia, India, Laos, Philippines, and Vietnam:\n\nDisputes arising out of or in connection with this Agreement will be finally settled by arbitration which will be held in Singapore in accordance with the Arbitration Rules of Singapore International Arbitration Center (\"SIAC Rules\") then in effect. The arbitration award will be final and binding for the parties without appeal and will be in writing and set forth the findings of fact and the conclusions of law.\n\nThe number of arbitrators will be three, with each side to the dispute being entitled to appoint one arbitrator. The two arbitrators appointed by the parties will appoint a third arbitrator who will act as chairman of the proceedings. Vacancies in the post of chairman will be filled by the president of the SIAC. Other vacancies will be filled by the respective nominating party. Proceedings will continue from the stage they were at when the vacancy occurred.\n\nIf one of the parties refuses or otherwise fails to appoint an arbitrator within 30 days of the date the other party appoints its, the first appointed arbitrator will be the sole arbitrator, provided that the arbitrator was validly and properly appointed.\n\nAll proceedings will be conducted, including all documents presented in such proceedings, in the English language. The English language version of this Agreement prevails over any other language version.\n\n(2) In the People's Republic of China:\n\nIn case no settlement can be reached, the disputes will be submitted to China International Economic and Trade Arbitration Commission for arbitration according to the then effective rules of the said Arbitration Commission. The arbitration will take place in Beijing and be conducted in Chinese. The arbitration award will be final and binding on both parties. During the course of arbitration, this agreement will continue to be performed except for the part which the parties are disputing and which is undergoing arbitration.\n\n(3) In Indonesia:\n\nEach party will allow the other reasonable opportunity to comply before it claims that the other has not met its obligations under this Agreement. The parties will attempt in good faith to resolve all disputes, disagreements, or claims between the parties relating to this Agreement. Unless otherwise required by applicable law without the possibility of contractual waiver or limitation, i) neither party will bring a legal action, regardless of form, arising out of or related to this Agreement or any transaction under it more than two years after the cause of action arose; and ii) after such time limit, any legal action arising out of this Agreement or any transaction under it and all respective rights related to any such action lapse.\n\nDisputes arising out of or in connection with this Agreement shall be finally settled by arbitration that shall be held in Jakarta, Indonesia in accordance with the rules of Board of the Indonesian National Board of Arbitration (Badan Arbitrase Nasional Indonesia or \"BANI\") then in effect. The arbitration award shall be final and binding for the parties without appeal and shall be in writing and set forth the findings of fact and the conclusions of law.\n\nThe number of arbitrators shall be three, with each side to the dispute being entitled to appoint one arbitrator. The two arbitrators appointed by the parties shall appoint a third arbitrator who shall act as chairman of the proceedings. Vacancies in the post of chairman shall be filled by the chairman of the BANI. Other vacancies shall be filled by the respective nominating party. Proceedings shall continue from the stage they were at when the vacancy occurred.\n\nIf one of the parties refuses or otherwise fails to appoint an arbitrator within 30 days of the date the other party appoints its, the first appointed arbitrator shall be the sole arbitrator, provided that the arbitrator was validly and properly appointed.\n\nAll proceedings shall be conducted, including all documents presented in such proceedings, in the English and/or Indonesian language.\n\nEUROPE, MIDDLE EAST, AND AFRICA\n\n(4) In Albania, Armenia, Azerbaijan, Belarus, Bosnia-Herzegovina, Bulgaria, Croatia, Former Yugoslav Republic of Macedonia, Georgia, Hungary, Kazakhstan, Kyrgyzstan, Moldova, Montenegro, Poland, Romania, Russia, Serbia, Slovakia, Tajikistan, Turkmenistan, Ukraine, and Uzbekistan:\n\nAll disputes arising out of this Agreement or related to its violation, termination or nullity will be finally settled under the Rules of Arbitration and Conciliation of the International Arbitral Center of the Federal Economic Chamber in Vienna (Vienna Rules) by three arbitrators appointed in accordance with these rules. The arbitration will be held in Vienna, Austria, and the official language of the proceedings will be English. The decision of the arbitrators will be final and binding upon both parties. Therefore, pursuant to paragraph 598 (2) of the Austrian Code of Civil Procedure, the parties expressly waive the application of paragraph 595 (1) figure 7 of the Code. IBM may, however, institute proceedings in a competent court in the country of installation.\n\n(5) In Estonia, Latvia, and Lithuania:\n\nAll disputes arising in connection with this Agreement will be finally settled in arbitration that will be held in Helsinki, Finland in accordance with the arbitration laws of Finland then in effect. Each party will appoint one arbitrator. The arbitrators will then jointly appoint the chairman. If arbitrators cannot agree on the chairman, then the Central Chamber of Commerce in Helsinki will appoint the chairman.\n\nAMERICAS COUNTRY AMENDMENTS\n\nCANADA\n\n10.1 Items for Which IBM May be Liable\n\nThe following replaces Item 1 in the first paragraph of this Subsection 10.1 (Items for Which IBM May be Liable):\n\n1) damages for bodily injury (including death) and physical harm to real property and tangible personal property caused by IBM's negligence; and\n\n13. General\n\nThe following replaces Item 13.d:\n\nd. Licensee agrees to comply with all applicable export and import laws and regulations, including those of that apply to goods of United States origin and that prohibit or limit export for certain uses or to certain users.\n\nThe following replaces Item 13.i:\n\ni. No right or cause of action for any third party is created by this Agreement or any transaction under it, nor is IBM responsible for any third party claims against Licensee except as permitted by the Limitation of Liability section above for bodily injury (including death) or physical harm to real or tangible personal property caused by IBM's negligence for which IBM is legally liable to that third party.\n\nThe following is added as Item 13.m:\n\nm. For purposes of this Item 13.m, \"Personal Data\" refers to information relating to an identified or identifiable individual made available by one of the parties, its personnel or any other individual to the other in connection with this Agreement. The following provisions apply in the event that one party makes Personal Data available to the other:\n\n(1) General\n\n(a) Each party is responsible for complying with any obligations applying to it under applicable Canadian data privacy laws and regulations (\"Laws\").\n\n(b) Neither party will request Personal Data beyond what is necessary to fulfill the purpose(s) for which it is requested. The purpose(s) for requesting Personal Data must be reasonable. Each party will agree in advance as to the type of Personal Data that is required to be made available.\n\n(2) Security Safeguards\n\n(a) Each party acknowledges that it is solely responsible for determining and communicating to the other the appropriate technological, physical and organizational security measures required to protect Personal Data.\n\n(b) Each party will ensure that Personal Data is protected in accordance with the security safeguards communicated and agreed to by the other.\n\n(c) Each party will ensure that any third party to whom Personal Data is transferred is bound by the applicable terms of this section.\n\n(d) Additional or different services required to comply with the Laws will be deemed a request for new services.\n\n(3) Use\n\nEach party agrees that Personal Data will only be used, accessed, managed, transferred, disclosed to third parties or otherwise processed to fulfill the purpose(s) for which it was made available.\n\n(4) Access Requests\n\n(a) Each party agrees to reasonably cooperate with the other in connection with requests to access or amend Personal Data.\n\n(b) Each party agrees to reimburse the other for any reasonable charges incurred in providing each other assistance.\n\n(c) Each party agrees to amend Personal Data only upon receiving instructions to do so from the other party or its personnel.\n\n(5) Retention\n\nEach party will promptly return to the other or destroy all Personal Data that is no longer necessary to fulfill the purpose(s) for which it was made available, unless otherwise instructed by the other or its personnel or required by law.\n\n(6) Public Bodies Who Are Subject to Public Sector Privacy Legislation\n\nFor Licensees who are public bodies subject to public sector privacy legislation, this Item 13.m applies only to Personal Data made available to Licensee in connection with this Agreement, and the obligations in this section apply only to Licensee, except that: 1) section (2)(a) applies only to IBM; 2) sections (1)(a) and (4)(a) apply to both parties; and 3) section (4)(b) and the last sentence in (1)(b) do not apply.\n\nPERU\n\n10. Limitation of Liability\n\nThe following is added to the end of this Section 10 (Limitation of Liability):\n\nExcept as expressly required by law without the possibility of contractual waiver, Licensee and IBM intend that the limitation of liability in this Limitation of Liability section applies to damages caused by all types of claims and causes of action. If any limitation on or exclusion from liability in this section is held by a court of competent jurisdiction to be unenforceable with respect to a particular claim or cause of action, the parties intend that it nonetheless apply to the maximum extent permitted by applicable law to all other claims and causes of action.\n\n10.1 Items for Which IBM May be Liable\n\nThe following is added at the end of this Subsection 10.1:\n\nIn accordance with Article 1328 of the Peruvian Civil Code, the limitations and exclusions specified in this section will not apply to damages caused by IBM's willful misconduct (\"dolo\") or gross negligence (\"culpa inexcusable\").\n\nUNITED STATES OF AMERICA\n\n5. Taxes\n\nThe following is added at the end of this Section 5 (Taxes)\n\nFor Programs delivered electronically in the United States for which Licensee claims a state sales and use tax exemption, Licensee agrees not to receive any tangible personal property (e.g., media and publications) associated with the electronic program.\n\nLicensee agrees to be responsible for any sales and use tax liabilities that may arise as a result of Licensee's subsequent redistribution of Programs after delivery by IBM.\n\n13. General\n\nThe following is added to Section 13 as Item 13.m:\n\nU.S. Government Users Restricted Rights - Use, duplication or disclosure is restricted by the GSA IT Schedule 70 Contract with the IBM Corporation.\n\nThe following is added to Item 13.f:\n\nEach party waives any right to a jury trial in any proceeding arising out of or related to this Agreement.\n\nASIA PACIFIC COUNTRY AMENDMENTS\n\nAUSTRALIA\n\n5. Taxes\n\nThe following sentences replace the first two sentences of Section 5 (Taxes):\n\nIf any government or authority imposes a duty, tax (other than income tax), levy, or fee, on this Agreement or on the Program itself, that is not otherwise provided for in the amount payable, Licensee agrees to pay it when IBM invoices Licensee. If the rate of GST changes, IBM may adjust the charge or other amount payable to take into account that change from the date the change becomes effective.\n\n8.1 Limited Warranty\n\nThe following is added to Subsection 8.1 (Limited Warranty):\n\nThe warranties specified this Section are in addition to any rights Licensee may have under the Competition and Consumer Act 2010 or other legislation and are only limited to the extent permitted by the applicable legislation.\n\n10.1 Items for Which IBM May be Liable\n\nThe following is added to Subsection 10.1 (Items for Which IBM May be Liable):\n\nWhere IBM is in breach of a condition or warranty implied by the Competition and Consumer Act 2010, IBM's liability is limited to the repair or replacement of the goods, or the supply of equivalent goods. Where that condition or warranty relates to right to sell, quiet possession or clear title, or the goods are of a kind ordinarily obtained for personal, domestic or household use or consumption, then none of the limitations in this paragraph apply.\n\nHONG KONG SAR, MACAU SAR, AND TAIWAN\n\nAs applies to licenses obtained in Taiwan and the special administrative regions, phrases throughout this Agreement containing the word \"country\" (for example, \"the country in which the original Licensee was granted the license\" and \"the country in which Licensee obtained the Program license\") are replaced with the following:\n\n(1) In Hong Kong SAR: \"Hong Kong SAR\"\n\n(2) In Macau SAR: \"Macau SAR\" except in the Governing Law clause (Section 14.1)\n\n(3) In Taiwan: \"Taiwan.\"\n\nINDIA\n\n10.1 Items for Which IBM May be Liable\n\nThe following replaces the terms of Items 1 and 2 of the first paragraph:\n\n1) liability for bodily injury (including death) or damage to real property and tangible personal property will be limited to that caused by IBM's negligence; and 2) as to any other actual damage arising in any situation involving nonperformance by IBM pursuant to, or in any way related to the subject of this Agreement, IBM's liability will be limited to the charge paid by Licensee for the individual Program that is the subject of the claim.\n\n13. General\n\nThe following replaces the terms of Item 13.g:\n\nIf no suit or other legal action is brought, within three years after the cause of action arose, in respect of any claim that either party may have against the other, the rights of the concerned party in respect of such claim will be forfeited and the other party will stand released from its obligations in respect of such claim.\n\nINDONESIA\n\n3.3 Term and Termination\n\nThe following is added to the last paragraph:\n\nBoth parties waive the provision of article 1266 of the Indonesian Civil Code, to the extent the article provision requires such court decree for the termination of an agreement creating mutual obligations.\n\nJAPAN\n\n13. General\n\nThe following is inserted after Item 13.f:\n\nAny doubts concerning this Agreement will be initially resolved between us in good faith and in accordance with the principle of mutual trust.\n\nMALAYSIA\n\n10.2 Items for Which IBM Is not Liable\n\nThe word \"SPECIAL\" in Item 10.2b is deleted.\n\nNEW ZEALAND\n\n8.1 Limited Warranty\n\nThe following is added:\n\nThe warranties specified in this Section are in addition to any rights Licensee may have under the Consumer Guarantees Act 1993 or other legislation which cannot be excluded or limited. The Consumer Guarantees Act 1993 will not apply in respect of any goods which IBM provides, if Licensee requires the goods for the purposes of a business as defined in that Act.\n\n10. Limitation of Liability\n\nThe following is added:\n\nWhere Programs are not obtained for the purposes of a business as defined in the Consumer Guarantees Act 1993, the limitations in this Section are subject to the limitations in that Act.\n\nPEOPLE'S REPUBLIC OF CHINA\n\n4. Charges\n\nThe following is added:\n\nAll banking charges incurred in the People's Republic of China will be borne by Licensee and those incurred outside the People's Republic of China will be borne by IBM.\n\nPHILIPPINES\n\n10.2 Items for Which IBM Is not Liable\n\nThe following replaces the terms of Item 10.2b:\n\nb. special (including nominal and exemplary damages), moral, incidental, or indirect damages or for any economic consequential damages; or\n\nSINGAPORE\n\n10.2 Items for Which IBM Is not Liable\n\nThe words \"SPECIAL\" and \"ECONOMIC\" are deleted from Item 10.2b.\n\n13. General\n\nThe following replaces the terms of Item 13.i:\n\nSubject to the rights provided to IBM's suppliers and Program developers as provided in Section 10 above (Limitation of Liability), a person who is not a party to this Agreement will have no right under the Contracts (Right of Third Parties) Act to enforce any of its terms.\n\nTAIWAN\n\n8.1 Limited Warranty\n\nThe last paragraph is deleted.\n\n10.1 Items for Which IBM May Be Liable\n\nThe following sentences are deleted:\n\nThis limit also applies to any of IBM's subcontractors and Program developers. It is the maximum for which IBM and its subcontractors and Program developers are collectively responsible.\n\nEUROPE, MIDDLE EAST, AFRICA (EMEA) COUNTRY AMENDMENTS\n\nEUROPEAN UNION MEMBER STATES\n\n8. Warranty and Exclusions\n\nThe following is added to Section 8 (Warranty and Exclusion):\n\nIn the European Union (\"EU\"), consumers have legal rights under applicable national legislation governing the sale of consumer goods. Such rights are not affected by the provisions set out in this Section 8 (Warranty and Exclusions). The territorial scope of the Limited Warranty is worldwide.\n\nEU MEMBER STATES AND THE COUNTRIES IDENTIFIED BELOW\n\nIceland, Liechtenstein, Norway, Switzerland, Turkey, and any other European country that has enacted local data privacy or protection legislation similar to the EU model.\n\n13. General\n\nThe following replaces Item 13.e:\n\n(1) Definitions - For the purposes of this Item 13.e, the following additional definitions apply:\n\n(a) Business Contact Information - business-related contact information disclosed by Licensee to IBM, including names, job titles, business addresses, telephone numbers and email addresses of Licensee's employees and contractors. For Austria, Italy and Switzerland, Business Contact Information also includes information about Licensee and its contractors as legal entities (for example, Licensee's revenue data and other transactional information)\n\n(b) Business Contact Personnel - Licensee employees and contractors to whom the Business Contact Information relates.\n\n(c) Data Protection Authority - the authority established by the Data Protection and Electronic Communications Legislation in the applicable country or, for non-EU countries, the authority responsible for supervising the protection of personal data in that country, or (for any of the foregoing) any duly appointed successor entity thereto.\n\n(d) Data Protection & Electronic Communications Legislation - (i) the applicable local legislation and regulations in force implementing the requirements of EU Directive 95/46/EC (on the protection of individuals with regard to the processing of personal data and on the free movement of such data) and of EU Directive 2002/58/EC (concerning the processing of personal data and the protection of privacy in the electronic communications sector); or (ii) for non-EU countries, the legislation and/or regulations passed in the applicable country relating to the protection of personal data and the regulation of electronic communications involving personal data, including (for any of the foregoing) any statutory replacement or modification thereof.\n\n(e) IBM Group - International Business Machines Corporation of Armonk, New York, USA, its subsidiaries, and their respective Business Partners and subcontractors.\n\n(2) Licensee authorizes IBM:\n\n(a) to process and use Business Contact Information within IBM Group in support of Licensee including the provision of support services, and for the purpose of furthering the business relationship between Licensee and IBM Group, including, without limitation, contacting Business Contact Personnel (by email or otherwise) and marketing IBM Group products and services (the \"Specified Purpose\"); and\n\n(b) to disclose Business Contact Information to other members of IBM Group in pursuit of the Specified Purpose only.\n\n(3) IBM agrees that all Business Contact Information will be processed in accordance with the Data Protection & Electronic Communications Legislation and will be used only for the Specified Purpose.\n\n(4) To the extent required by the Data Protection & Electronic Communications Legislation, Licensee represents that (a) it has obtained (or will obtain) any consents from (and has issued (or will issue) any notices to) the Business Contact Personnel as are necessary in order to enable IBM Group to process and use the Business Contact Information for the Specified Purpose.\n\n(5) Licensee authorizes IBM to transfer Business Contact Information outside the European Economic Area, provided that the transfer is made on contractual terms approved by the Data Protection Authority or the transfer is otherwise permitted under the Data Protection & Electronic Communications Legislation.\n\nAUSTRIA\n\n8.2 Exclusions\n\nThe following is deleted from the first paragraph:\n\nMERCHANTABILITY, SATISFACTORY QUALITY\n\n10. Limitation of Liability\n\nThe following is added:\n\nThe following limitations and exclusions of IBM's liability do not apply for damages caused by gross negligence or willful misconduct.\n\n10.1 Items for Which IBM May Be Liable\n\nThe following replaces the first sentence in the first paragraph:\n\nCircumstances may arise where, because of a default by IBM in the performance of its obligations under this Agreement or other liability, Licensee is entitled to recover damages from IBM.\n\nIn the second sentence of the first paragraph, delete entirely the parenthetical phrase:\n\n\"(including fundamental breach, negligence, misrepresentation, or other contract or tort claim)\".\n\n10.2 Items for Which IBM Is Not Liable\n\nThe following replaces Item 10.2b:\n\nb. indirect damages or consequential damages; or\n\nBELGIUM, FRANCE, ITALY, AND LUXEMBOURG\n\n10. Limitation of Liability\n\nThe following replaces the terms of Section 10 (Limitation of Liability) in its entirety:\n\nExcept as otherwise provided by mandatory law:\n\n10.1 Items for Which IBM May Be Liable\n\nIBM's entire liability for all claims in the aggregate for any damages and losses that may arise as a consequence of the fulfillment of its obligations under or in connection with this Agreement or due to any other cause related to this Agreement is limited to the compensation of only those damages and losses proved and actually arising as an immediate and direct consequence of the non-fulfillment of such obligations (if IBM is at fault) or of such cause, for a maximum amount equal to the charges (if the Program is subject to fixed term charges, up to twelve months' charges) Licensee paid for the Program that has caused the damages.\n\nThe above limitation will not apply to damages for bodily injuries (including death) and damages to real property and tangible personal property for which IBM is legally liable.\n\n10.2 Items for Which IBM Is Not Liable\n\nUNDER NO CIRCUMSTANCES IS IBM OR ANY OF ITS PROGRAM DEVELOPERS LIABLE FOR ANY OF THE FOLLOWING, EVEN IF INFORMED OF THEIR POSSIBILITY: 1) LOSS OF, OR DAMAGE TO, DATA; 2) INCIDENTAL, EXEMPLARY OR INDIRECT DAMAGES, OR FOR ANY ECONOMIC CONSEQUENTIAL DAMAGES; AND / OR 3) LOST PROFITS, BUSINESS, REVENUE, GOODWILL, OR ANTICIPATED SAVINGS, EVEN IF THEY ARISE AS AN IMMEDIATE CONSEQUENCE OF THE EVENT THAT GENERATED THE DAMAGES.\n\n10.3 Suppliers and Program Developers\n\nThe limitation and exclusion of liability herein agreed applies not only to the activities performed by IBM but also to the activities performed by its suppliers and Program developers, and represents the maximum amount for which IBM as well as its suppliers and Program developers are collectively responsible.\n\nGERMANY\n\n8.1 Limited Warranty\n\nThe following is inserted at the beginning of Section 8.1:\n\nThe Warranty Period is twelve months from the date of delivery of the Program to the original Licensee.\n\n8.2 Exclusions\n\nSection 8.2 is deleted in its entirety and replaced with the following:\n\nSection 8.1 defines IBM's entire warranty obligations to Licensee except as otherwise required by applicable statutory law.\n\n10. Limitation of Liability\n\nThe following replaces the Limitation of Liability section in its entirety:\n\na. IBM will be liable without limit for 1) loss or damage caused by a breach of an express guarantee; 2) damages or losses resulting in bodily injury (including death); and 3) damages caused intentionally or by gross negligence.\n\nb. In the event of loss, damage and frustrated expenditures caused by slight negligence or in breach of essential contractual obligations, IBM will be liable, regardless of the basis on which Licensee is entitled to claim damages from IBM (including fundamental breach, negligence, misrepresentation, or other contract or tort claim), per claim only up to the greater of 500,000 euro or the charges (if the Program is subject to fixed term charges, up to 12 months' charges) Licensee paid for the Program that caused the loss or damage. A number of defaults which together result in, or contribute to, substantially the same loss or damage will be treated as one default.\n\nc. In the event of loss, damage and frustrated expenditures caused by slight negligence, IBM will not be liable for indirect or consequential damages, even if IBM was informed about the possibility of such loss or damage.\n\nd. In case of delay on IBM's part: 1) IBM will pay to Licensee an amount not exceeding the loss or damage caused by IBM's delay and 2) IBM will be liable only in respect of the resulting damages that Licensee suffers, subject to the provisions of Items a and b above.\n\n13. General\n\nThe following replaces the provisions of 13.g:\n\nAny claims resulting from this Agreement are subject to a limitation period of three years, except as stated in Section 8.1 (Limited Warranty) of this Agreement.\n\nThe following replaces the provisions of 13.i:\n\nNo right or cause of action for any third party is created by this Agreement, nor is IBM responsible for any third party claims against Licensee, except (to the extent permitted in Section 10 (Limitation of Liability)) for: i) bodily injury (including death); or ii) damage to real or tangible personal property for which (in either case) IBM is legally liable to that third party.\n\nIRELAND\n\n8.2 Exclusions\n\nThe following paragraph is added:\n\nExcept as expressly provided in these terms and conditions, or Section 12 of the Sale of Goods Act 1893 as amended by the Sale of Goods and Supply of Services Act, 1980 (the \"1980 Act\"), all conditions or warranties (express or implied, statutory or otherwise) are hereby excluded including, without limitation, any warranties implied by the Sale of Goods Act 1893 as amended by the 1980 Act (including, for the avoidance of doubt, Section 39 of the 1980 Act).\n\nIRELAND AND UNITED KINGDOM\n\n2. Agreement Structure\n\nThe following sentence is added:\n\nNothing in this paragraph shall have the effect of excluding or limiting liability for fraud.\n\n10.1 Items for Which IBM May Be Liable\n\nThe following replaces the first paragraph of the Subsection:\n\nFor the purposes of this section, a \"Default\" means any act, statement, omission or negligence on the part of IBM in connection with, or in relation to, the subject matter of an Agreement in respect of which IBM is legally liable to Licensee, whether in contract or in tort. A number of Defaults which together result in, or contribute to, substantially the same loss or damage will be treated as one Default.\n\nCircumstances may arise where, because of a Default by IBM in the performance of its obligations under this Agreement or other liability, Licensee is entitled to recover damages from IBM. Regardless of the basis on which Licensee is entitled to claim damages from IBM and except as expressly required by law without the possibility of contractual waiver, IBM's entire liability for any one Default will not exceed the amount of any direct damages, to the extent actually suffered by Licensee as an immediate and direct consequence of the default, up to the greater of (1) 500,000 euro (or the equivalent in local currency) or (2) 125% of the charges (if the Program is subject to fixed term charges, up to 12 months' charges) for the Program that is the subject of the claim. Notwithstanding the foregoing, the amount of any damages for bodily injury (including death) and damage to real property and tangible personal property for which IBM is legally liable is not subject to such limitation.\n\n10.2 Items for Which IBM is Not Liable\n\nThe following replaces Items 10.2b and 10.2c:\n\nb. special, incidental, exemplary, or indirect damages or consequential damages; or\n\nc. wasted management time or lost profits, business, revenue, goodwill, or anticipated savings.\n\nZ125-3301-14 (07/2011)", + "json": "ibm-data-server-2011.json", + "yaml": "ibm-data-server-2011.yml", + "html": "ibm-data-server-2011.html", + "license": "ibm-data-server-2011.LICENSE" + }, + { + "license_key": "ibm-developerworks-community-download", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ibm-developerworks-community", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ibm-developerworks-community-download" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Download of Content Agreement\nThe following are terms of a legal downloader agreement (the \"Agreement\") regarding Your download of Content (as defined below) from this Website. IBM may change these terms of use and other requirements and guidelines for use of this Website at its sole discretion. This Website may contain other proprietary notices and copyright information (http://www.ibm.com/developerworks/exchange), the terms of which must be observed and followed. Any use of the Content in violation of this Agreement is strictly prohibited.\n\n\"Content\" includes, but is not limited to software, text and/or speech files, code, associated materials, media and /or documentation that You download from this Website. The Content may be provided by IBM or third-parties. IBM-Content is owned by IBM and is copyrighted and licensed, not sold. Third-party Content is owned by its respective owner and is licensed by the third party directly to You. IBM's decision to permit posting of third-party Content does not constitute an express or implied license from IBM to You or a recommendation or endorsement by IBM of any particular product, service, company or technology.\n\nThe party providing the Content (the \"Provider\") grants You a nonexclusive, worldwide, irrevocable, royalty-free, copyright license to edit, copy, reproduce, publish, publicly display and/or perform, format, modify and/or make derivative works of, translate, re-arrange, and distribute the Content or any portions thereof and to sublicense any or all such rights and to permit sublicensees to further sublicense such rights, for both commercial and non-commercial use, provided You abide by the terms of this Agreement. You understand that no assurances are provided that the Content does not infringe the intellectual property rights of any other entity. Neither IBM nor the provider of the Content grants a patent license of any kind, whether expressed or implied or by estoppel. As a condition of exercising the rights and licenses granted under this Agreement, You assume sole responsibility to obtain any other intellectual property rights needed.\n\nThe Provider of the Content is the party that submitted the Content for Posting and who represents and warrants that they own all of the Content, (or have obtained all written releases, authorizations and licenses from any other owner(s) necessary to grant IBM and downloaders this license with respect to portions of the Content not owned by the Provider). All information provided on or through this Website may be changed or updated without notice. You understand that IBM has no obligation to check information and/or Content on the Website and that the information and/or Content provided on this Web site may contain technical inaccuracies or typographical errors.\n\nIBM may, in its sole discretion, discontinue the Website, any service provided on or through the Website, as well as limit or discontinue access to any Content posted on the Website for any reason without notice. IBM may terminate this Agreement and Your rights to access, use and download Content from the Website at any time, with or without cause, immediately and without notice.\n\nALL INFORMATION AND CONTENT IS PROVIDED ON AN \"AS IS\" BASIS. IBM MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, CONCERNING USE OF THE WEBSITE, THE CONTENT, OR THE COMPLETENESS OR ACCURACY OF THE CONTENT OR INFORMATION OBTAINED FROM THE WEBSITE. IBM SPECIFICALLY DISCLAIMS ALL WARRANTIES WITH REGARD TO THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IBM DOES NOT WARRANT UNINTERRUPTED OR ERROR-FREE OPERATION OF ANY CONTENT. IBM IS NOT RESPONSIBLE FOR THE RESULTS OBTAINED FROM THE USE OF THE CONTENT OR INFORMATION OBTAINED FROM THE WEBSITE.\n\nLIMITATION OF LIABILITY. IN NO EVENT WILL IBM BE LIABLE TO ANY PARTY FOR ANY DIRECT, INDIRECT, SPECIAL OR OTHER CONSEQUENTIAL DAMAGES FOR ANY USE OF THIS WEBSITE, THE USE OF CONTENT FROM THIS WEBSITE, OR ON ANY OTHER HYPER LINKED WEB SITE, INCLUDING, WITHOUT LIMITATION, ANY LOST PROFITS, BUSINESS INTERRUPTION, LOSS OF PROGRAMS OR OTHER DATA ON YOUR INFORMATION HANDLING SYSTEM OR OTHERWISE, EVEN IF IBM IS EXPRESSLY ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nThe laws of the State of New York, USA govern this Agreement, without reference to conflict of law principles. The \"United Nations Convention on International Sale of Goods\" does not apply. This Agreement may not be assigned by You. The parties agree to waive their right to a trial by jury.\n\nThis Agreement is the complete and exclusive agreement between the parties and supersedes all prior agreements, oral or written, and all other communications relating to the subject matter hereof. For clarification, it is understood and You agree, that any additional agreement or license terms that may accompany the Content is invalid, void, and non-enforceable to any downloader of this Content including IBM.\n\nIf any section of this Agreement is found by competent authority to be invalid, illegal or unenforceable in any respect for any reason, the validity, legality and enforceability of any such section in every other respect and the remainder of this Agreement shall continue in effect.", + "json": "ibm-developerworks-community-download.json", + "yaml": "ibm-developerworks-community-download.yml", + "html": "ibm-developerworks-community-download.html", + "license": "ibm-developerworks-community-download.LICENSE" + }, + { + "license_key": "ibm-dhcp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-dhcp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "International Business Machines, Inc. (hereinafter called IBM) grants\npermission under its copyrights to use, copy, modify, and distribute this\nSoftware with or without fee, provided that the above copyright notice and\nall paragraphs of this notice appear in all copies, and that the name of IBM\nnot be used in connection with the marketing of any product incorporating\nthe Software or modifications thereof, without specific, written prior\npermission.\n\nTo the extent it has a right to do so, IBM grants an immunity from suit\nunder its patents, if any, for the use, sale or manufacture of products to\nthe extent that such products are used for performing Domain Name System\ndynamic updates in TCP/IP networks by means of the Software. No immunity is\ngranted for any product per se or for any other function of any product.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", AND IBM DISCLAIMS ALL WARRANTIES,\nINCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL,\nDIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING\nOUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN\nIF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES.", + "json": "ibm-dhcp.json", + "yaml": "ibm-dhcp.yml", + "html": "ibm-dhcp.html", + "license": "ibm-dhcp.LICENSE" + }, + { + "license_key": "ibm-icu", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-icu", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " ICU License - ICU 1.8.1 and later\n\nCOPYRIGHT AND PERMISSION NOTICE\n\nCopyright (c) 1995-2014 International Business Machines Corporation and others\n\nAll rights reserved.\n\nPermission 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.\n\nTHE 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.\n\nExcept 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.\n\nAll trademarks and registered trademarks mentioned herein are the property of their respective owners.\n\n\nThird-Party Software Licenses\nThis section contains third-party software notices and/or additional terms for licensed third-party software components included within ICU libraries.\n\n1. Unicode Data Files and Software\nCOPYRIGHT AND PERMISSION NOTICE\n\nCopyright \u00a9 1991-2014 Unicode, Inc. All rights reserved.\nDistributed under the Terms of Use in \nhttp://www.unicode.org/copyright.html.\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Unicode data files and any associated documentation\n(the \"Data Files\") or Unicode software and any associated documentation\n(the \"Software\") to deal in the Data Files or Software\nwithout restriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, and/or sell copies of\nthe Data Files or Software, and to permit persons to whom the Data Files\nor Software are furnished to do so, provided that\n(a) this copyright and permission notice appear with all copies \nof the Data Files or Software,\n(b) this copyright and permission notice appear in associated \ndocumentation, and\n(c) there is clear notice in each modified Data File or in the Software\nas well as in the documentation associated with the Data File(s) or\nSoftware that the data or software has been modified.\n\nTHE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF\nANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT OF THIRD PARTY RIGHTS.\nIN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS\nNOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL\nDAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,\nDATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THE DATA FILES OR SOFTWARE.\n\nExcept as contained in this notice, the name of a copyright holder\nshall not be used in advertising or otherwise to promote the sale,\nuse or other dealings in these Data Files or Software without prior\nwritten authorization of the copyright holder.\n\n\n2. Chinese/Japanese Word Break Dictionary Data (cjdict.txt)\n # The Google Chrome software developed by Google is licensed under the BSD license. Other software included in this distribution is provided under other licenses, as set forth below.\n #\t\n #\tThe BSD License\n #\thttp://opensource.org/licenses/bsd-license.php \n #\tCopyright (C) 2006-2008, Google Inc.\n #\t\n #\tAll rights reserved.\n #\t\n #\tRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n #\t\n #\tRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n #\tRedistributions 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.\n #\tNeither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n #\t \n #\t\n #\tTHIS 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.\n #\t\n #\t \n #\tThe word list in cjdict.txt are generated by combining three word lists listed\n #\tbelow with further processing for compound word breaking. The frequency is generated\n #\twith an iterative training against Google web corpora. \n #\t\n #\t* Libtabe (Chinese)\n #\t - https://sourceforge.net/project/?group_id=1519\n #\t - Its license terms and conditions are shown below.\n #\t\n #\t* IPADIC (Japanese)\n #\t - http://chasen.aist-nara.ac.jp/chasen/distribution.html\n #\t - Its license terms and conditions are shown below.\n #\t\n #\t---------COPYING.libtabe ---- BEGIN--------------------\n #\t\n #\t/*\n #\t * Copyrighy (c) 1999 TaBE Project.\n #\t * Copyright (c) 1999 Pai-Hsiang Hsiao.\n #\t * All rights reserved.\n #\t *\n #\t * Redistribution and use in source and binary forms, with or without\n #\t * modification, are permitted provided that the following conditions\n #\t * are met:\n #\t *\n #\t * . Redistributions of source code must retain the above copyright\n #\t * notice, this list of conditions and the following disclaimer.\n #\t * . Redistributions in binary form must reproduce the above copyright\n #\t * notice, this list of conditions and the following disclaimer in\n #\t * the documentation and/or other materials provided with the\n #\t * distribution.\n #\t * . Neither the name of the TaBE Project nor the names of its\n #\t * contributors may be used to endorse or promote products derived\n #\t * from this software without specific prior written permission.\n #\t *\n #\t * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n #\t * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n #\t * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\n #\t * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\n #\t * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\n #\t * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n #\t * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n #\t * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n #\t * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n #\t * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n #\t * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n #\t * OF THE POSSIBILITY OF SUCH DAMAGE.\n #\t */\n #\t\n #\t/*\n #\t * Copyright (c) 1999 Computer Systems and Communication Lab,\n #\t * Institute of Information Science, Academia Sinica.\n #\t * All rights reserved.\n #\t *\n #\t * Redistribution and use in source and binary forms, with or without\n #\t * modification, are permitted provided that the following conditions\n #\t * are met:\n #\t *\n #\t * . Redistributions of source code must retain the above copyright\n #\t * notice, this list of conditions and the following disclaimer.\n #\t * . Redistributions in binary form must reproduce the above copyright\n #\t * notice, this list of conditions and the following disclaimer in\n #\t * the documentation and/or other materials provided with the\n #\t * distribution.\n #\t * . Neither the name of the Computer Systems and Communication Lab\n #\t * nor the names of its contributors may be used to endorse or\n #\t * promote products derived from this software without specific\n #\t * prior written permission.\n #\t *\n #\t * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n #\t * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n #\t * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\n #\t * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\n #\t * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\n #\t * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n #\t * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n #\t * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n #\t * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n #\t * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n #\t * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n #\t * OF THE POSSIBILITY OF SUCH DAMAGE.\n #\t */\n #\t\n #\tCopyright 1996 Chih-Hao Tsai @ Beckman Institute, University of Illinois\n #\tc-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4\n #\t\n #\t---------------COPYING.libtabe-----END------------------------------------\n #\t\n #\t\n #\t---------------COPYING.ipadic-----BEGIN------------------------------------\n #\t\n #\tCopyright 2000, 2001, 2002, 2003 Nara Institute of Science\n #\tand Technology. All Rights Reserved.\n #\t\n #\tUse, reproduction, and distribution of this software is permitted.\n #\tAny copy of this software, whether in its original form or modified,\n #\tmust include both the above copyright notice and the following\n #\tparagraphs.\n #\t\n #\tNara Institute of Science and Technology (NAIST),\n #\tthe copyright holders, disclaims all warranties with regard to this\n #\tsoftware, including all implied warranties of merchantability and\n #\tfitness, in no event shall NAIST be liable for\n #\tany special, indirect or consequential damages or any damages\n #\twhatsoever resulting from loss of use, data or profits, whether in an\n #\taction of contract, negligence or other tortuous action, arising out\n #\tof or in connection with the use or performance of this software.\n #\t\n #\tA large portion of the dictionary entries\n #\toriginate from ICOT Free Software. The following conditions for ICOT\n #\tFree Software applies to the current dictionary as well.\n #\t\n #\tEach User may also freely distribute the Program, whether in its\n #\toriginal form or modified, to any third party or parties, PROVIDED\n #\tthat the provisions of Section 3 (\"NO WARRANTY\") will ALWAYS appear\n #\ton, or be attached to, the Program, which is distributed substantially\n #\tin the same form as set out herein and that such intended\n #\tdistribution, if actually made, will neither violate or otherwise\n #\tcontravene any of the laws and regulations of the countries having\n #\tjurisdiction over the User or the intended distribution itself.\n #\t\n #\tNO WARRANTY\n #\t\n #\tThe program was produced on an experimental basis in the course of the\n #\tresearch and development conducted during the project and is provided\n #\tto users as so produced on an experimental basis. Accordingly, the\n #\tprogram is provided without any warranty whatsoever, whether express,\n #\timplied, statutory or otherwise. The term \"warranty\" used herein\n #\tincludes, but is not limited to, any warranty of the quality,\n #\tperformance, merchantability and fitness for a particular purpose of\n #\tthe program and the nonexistence of any infringement or violation of\n #\tany right of any third party.\n #\t\n #\tEach user of the program will agree and understand, and be deemed to\n #\thave agreed and understood, that there is no warranty whatsoever for\n #\tthe program and, accordingly, the entire risk arising from or\n #\totherwise connected with the program is assumed by the user.\n #\t\n #\tTherefore, neither ICOT, the copyright holder, or any other\n #\torganization that participated in or was otherwise related to the\n #\tdevelopment of the program and their respective officials, directors,\n #\tofficers and other employees shall be held liable for any and all\n #\tdamages, including, without limitation, general, special, incidental\n #\tand consequential damages, arising out of or otherwise in connection\n #\twith the use or inability to use the program or any product, material\n #\tor result produced or otherwise obtained by using the program,\n #\tregardless of whether they have been advised of, or otherwise had\n #\tknowledge of, the possibility of such damages at any time during the\n #\tproject or thereafter. Each user will be deemed to have agreed to the\n #\tforegoing by his or her commencement of use of the program. The term\n #\t\"use\" as used herein includes, but is not limited to, the use,\n #\tmodification, copying and distribution of the program and the\n #\tproduction of secondary products from the program.\n #\t\n #\tIn the case where the program, whether in its original form or\n #\tmodified, was distributed or delivered to or received by a user from\n #\tany person, organization or entity other than ICOT, unless it makes or\n #\tgrants independently of ICOT any specific warranty to the user in\n #\twriting, such person, organization or entity, will also be exempted\n #\tfrom and not be held liable to the user for any such damages as noted\n #\tabove as far as the program is concerned.\n #\t\n #\t---------------COPYING.ipadic-----END------------------------------------\n\n\n3. Lao Word Break Dictionary Data (laodict.txt)\n #\tCopyright (c) 2013 International Business Machines Corporation\n #\tand others. All Rights Reserved.\n #\n #\tProject: http://code.google.com/p/lao-dictionary/\n #\tDictionary: http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt\n #\tLicense: http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt\n #\t (copied below)\n #\n #\tThis file is derived from the above dictionary, with slight modifications.\n #\t--------------------------------------------------------------------------------\n #\tCopyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell.\n #\tAll rights reserved.\n #\n #\tRedistribution and use in source and binary forms, with or without modification,\n #\tare permitted provided that the following conditions are met:\n #\n #\t\tRedistributions of source code must retain the above copyright notice, this\n #\t\tlist of conditions and the following disclaimer. Redistributions in binary\n #\t\tform must reproduce the above copyright notice, this list of conditions and\n #\t\tthe following disclaimer in the documentation and/or other materials\n #\t\tprovided with the distribution.\n #\n #\tTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n #\tANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n #\tWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n #\tDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\n #\tANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n #\t(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n #\tLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\n #\tANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n #\t(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n #\tSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n #\t--------------------------------------------------------------------------------\n\n\n4. Burmese Word Break Dictionary Data (burmesedict.txt)\n #\tCopyright (c) 2014 International Business Machines Corporation\n #\tand others. All Rights Reserved.\n #\n #\tThis list is part of a project hosted at:\n #\t github.com/kanyawtech/myanmar-karen-word-lists\n #\n #\t--------------------------------------------------------------------------------\n #\tCopyright (c) 2013, LeRoy Benjamin Sharon\n #\tAll rights reserved.\n #\n #\tRedistribution and use in source and binary forms, with or without modification,\n #\tare permitted provided that the following conditions are met:\n #\n #\t Redistributions of source code must retain the above copyright notice, this\n #\t list of conditions and the following disclaimer.\n #\n #\t Redistributions in binary form must reproduce the above copyright notice, this\n #\t list of conditions and the following disclaimer in the documentation and/or\n #\t other materials provided with the distribution.\n #\n #\t Neither the name Myanmar Karen Word Lists, nor the names of its\n #\t contributors may be used to endorse or promote products derived from\n #\t this software without specific prior written permission.\n #\n #\tTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n #\tANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n #\tWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n #\tDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\n #\tANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n #\t(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n #\tLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\n #\tANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n #\t(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n #\tSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n #\t--------------------------------------------------------------------------------\n\n\n5. Time Zone Database\nICU uses the public domain data and code derived from Time Zone Database for its time zone support. The ownership of the TZ database is explained in BCP 175: Procedure for Maintaining the Time Zone Database section 7.\n7. Database Ownership\n\n The TZ database itself is not an IETF Contribution or an IETF\n document. Rather it is a pre-existing and regularly updated work\n that is in the public domain, and is intended to remain in the public\n domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do not apply\n to the TZ Database or contributions that individuals make to it.\n Should any claims be made and substantiated against the TZ Database,\n the organization that is providing the IANA Considerations defined in\n this RFC, under the memorandum of understanding with the IETF,\n currently ICANN, may act in accordance with all competent court\n orders. No ownership claims will be made by ICANN or the IETF Trust\n on the database or the code. Any person making a contribution to the\n database or code waives all rights to future claims in that\n contribution or in the TZ Database.", + "json": "ibm-icu.json", + "yaml": "ibm-icu.yml", + "html": "ibm-icu.html", + "license": "ibm-icu.LICENSE" + }, + { + "license_key": "ibm-java-portlet-spec-2.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-java-portlet-spec-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "IBM Java Portlet Specification 2.0 License\n\nJava(TM) Portlet Specification (\"Specification\") Version: 2.0\n\nStatus: Final, Specification Lead: IBM Corp.\n\nCopyright 2008 IBM Corp. All rights reserved.\n\nIBM Corporation (the \"Spec Lead\"), for the JSR 286 specification (the \"Specification\"), hereby grants permission to copy and display the Specification, in any medium without fee or royalty, provided that you include the following on ALL copies, or portions thereof, that you make:\n\n 1. A link or URL to the Specification at this location: http://www.jcp.org/en/jsr/detail?id=286\n 2. The copyright notice as shown herein.\n 3. The Spec Lead commits to grant a perpetual, non-exclusive, worldwide, non sub-licensable, non-transferable, fully paid up license, under royalty-free and other reasonable and non-discriminatory terms and conditions, to certain of their respective patent claims that the Spec Lead deems necessary to implement required portions of the Specification, provided a reciprocal license is granted.\n\nTHE SPECIFICATION IS PROVIDED \"AS IS,\" AND THE SPEC LEAD AND ANY OTHER AUTHORS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE SPECIFICATION 25 ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. THE SPEC LEAD AND ANY OTHER AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF 30 ANY USE OF THE SPECIFICATION OR THE PERFORMANCE OR IMPLEMENTATION OF THE CONTENTS THEREOF.\n\nThe name and trademarks of the Spec Lead or any other Authors may NOT be used in any manner, including advertising or publicity pertaining to the Specification or its contents without specific, written prior permission. Title to copyright in the Specification will at all times remain with the Authors.\n\nNo other rights are granted by implication, estoppel or otherwise.", + "json": "ibm-java-portlet-spec-2.0.json", + "yaml": "ibm-java-portlet-spec-2.0.yml", + "html": "ibm-java-portlet-spec-2.0.html", + "license": "ibm-java-portlet-spec-2.0.LICENSE" + }, + { + "license_key": "ibm-jre", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ibm-jre", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "International License Agreement for Non-Warranted Programs \n\nPart 1 - General Terms \n\nBY DOWNLOADING, INSTALLING, COPYING, ACCESSING, OR USING THE PROGRAM YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCEPTING THESE TERMS ON BEHALF OF ANOTHER PERSON OR A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE FULL AUTHORITY TO BIND THAT PERSON, COMPANY, OR LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT AGREE TO THESE TERMS, \n\n- DO NOT DOWNLOAD, INSTALL, COPY, ACCESS, OR USE THE PROGRAM; AND \n\n- PROMPTLY RETURN THE PROGRAM AND PROOF OF ENTITLEMENT TO THE PARTY FROM WHOM YOU ACQUIRED IT TO OBTAIN A REFUND OF THE AMOUNT YOU PAID. IF YOU DOWNLOADED THE PROGRAM, CONTACT THE PARTY FROM WHOM YOU ACQUIRED IT. \n\n\"IBM\" is International Business Machines Corporation or one of its subsidiaries. \n\n\"License Information\" (\"LI\") is a document that provides information specific to a Program. The Program's LI is available at http://www.ibm.com/software/sla/ . The LI may also be found in a file in the Program's directory, by the use of a system command, or as a booklet which accompanies the Program. \n\n\"Program\" is the following, including the original and all whole or partial copies: 1) machine-readable instructions and data, 2) components, 3) audio-visual content (such as images, text, recordings, or pictures), 4) related licensed materials, and 5) license use documents or keys, and documentation. \n\nA \"Proof of Entitlement\" (\"PoE\") is evidence of Your authorization to use a Program at a specified level. That level may be measured, for example, by the number of processors or users. The PoE is also evidence of Your eligibility for future upgrade prices, if any, and potential special or promotional opportunities. If IBM does not provide You with a PoE, then IBM may accept the original paid sales receipt or other sales record from the party (either IBM or its reseller) from whom You acquired the Program, provided that it specifies the name of the Program and the usage level acquired. \n\n\"You\" and \"Your\" refer either to an individual person or to a single legal entity. \n\nThis Agreement includes Part 1 - General Terms, Part 2 - Country-unique Terms (if any), License Information, and Proof of Entitlement and is the complete agreement between You and IBM regarding the use of the Program. It replaces any prior oral or written communications between You and IBM concerning Your use of the Program. The terms of Part 2 and License Information may replace or modify those of Part 1. To the extent there is a conflict between the terms of this Agreement and those of the IBM International Passport Advantage Agreement, the terms of the latter agreement prevail. \n\n1. Entitlement \n\nLicense \n\nThe Program is owned by IBM or an IBM supplier, and is copyrighted and licensed, not sold. \n\nIBM grants You a nonexclusive license to use the Program when You lawfully acquire it. \n\nYou may 1) use the Program up to the level of use specified in the PoE and 2) make and install copies, including a backup copy, to support such use. The terms of this license apply to each copy You make. You will reproduce all copyright notices and all other legends of ownership on each copy, or partial copy, of the Program. \n\nIf You acquire the Program as a program upgrade, after You install the upgrade You may not use the Program from which You upgraded or transfer it to another party. \n\nYou will ensure that anyone who uses the Program (accessed either locally or remotely) does so only for Your authorized use and complies with the terms of this Agreement. \n\nYou may not 1) use, copy, modify, or distribute the Program except as provided in this Agreement; 2) reverse assemble, reverse compile, or otherwise translate the Program except as specifically permitted by law without the possibility of contractual waiver; or 3) sublicense, rent, or lease the Program. \n\nIBM may terminate Your license if You fail to comply with the terms of this Agreement. If IBM does so, You must destroy all copies of the Program and its PoE. \n\nMoney-back Guarantee \n\nIf for any reason You are dissatisfied with the Program and You are the original licensee, You may obtain a refund of the amount You paid for it, if within 30 days of Your invoice date You return the Program and its PoE to the party from whom You obtained it. If You downloaded the Program, You may contact the party from whom You acquired it for instructions on how to obtain the refund. \n\nProgram Transfer \n\nYou may transfer a Program and all of Your license rights and obligations to another party only if that party agrees to the terms of this Agreement. When You transfer the Program, You must also transfer a copy of this Agreement, including the Program's PoE. After the transfer, You may not use the Program. \n\n2. Charges \n\nThe amount payable for a Program license is a one-time charge. \n\nOne-time charges are based on the level of use acquired which is specified in the PoE. IBM does not give credits or refunds for charges already due or paid, except as specified elsewhere in this Agreement. \n\nIf You wish to increase the level of use, notify IBM or the party from whom You acquired it and pay any applicable charges. \n\nIf any authority imposes a duty, tax, levy or fee, excluding those based on IBM's net income, upon the Program, then You agree to pay the amount specified or supply exemption documentation. You are responsible for any personal property taxes for the Program from the date that You acquire it. \n\n3. No Warranty \n\nSUBJECT TO ANY STATUTORY WARRANTIES WHICH CAN NOT BE EXCLUDED, IBM MAKES NO WARRANTIES OR CONDITIONS EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT, REGARDING THE PROGRAM OR TECHNICAL SUPPORT, IF ANY. \n\nThe exclusion also applies to any of IBM's Program developers and suppliers. \n\nManufacturers, suppliers, or publishers of non-IBM Programs may provide their own warranties. \n\nIBM does not provide technical support, unless IBM specifies otherwise. \n\n4. Limitation of Liability \n\nCircumstances may arise where, because of a default on IBM's part or other liability, You are entitled to recover damages from IBM. In each such instance, regardless of the basis on which You may be entitled to claim damages from IBM, (including fundamental breach, negligence, misrepresentation, or other contract or tort claim), IBM is liable for no more than 1) damages for bodily injury (including death) and damage to real property and tangible personal property and 2) the amount of any other actual direct damages up to the charges for the Program that is the subject of the claim. \n\nThis limitation of liability also applies to IBM's Program developers and suppliers. It is the maximum for which they and IBM are collectively responsible. \n\nUNDER NO CIRCUMSTANCES IS IBM, ITS PROGRAM DEVELOPERS OR SUPPLIERS LIABLE FOR ANY OF THE FOLLOWING, EVEN IF INFORMED OF THEIR POSSIBILITY: \n\n1. LOSS OF, OR DAMAGE TO, DATA; \n\n2. SPECIAL, INCIDENTAL, OR INDIRECT DAMAGES, OR FOR ANY ECONOMIC CONSEQUENTIAL DAMAGES; OR \n\n3. LOST PROFITS, BUSINESS, REVENUE, GOODWILL, OR ANTICIPATED SAVINGS. \n\nSOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE LIMITATION OR EXCLUSION MAY NOT APPLY TO YOU. \n\n5. General \n\n1. Nothing in this Agreement affects any statutory rights of consumers that cannot be waived or limited by contract. \n\n2. In the event that any provision of this Agreement is held to be invalid or unenforceable, the remaining provisions of this Agreement remain in full force and effect. \n\n3. You agree to comply with all applicable export and import laws and regulations. \n\n4. You agree to allow IBM to store and use Your contact information, including names, phone numbers, and e-mail addresses, anywhere they do business. Such information will be processed and used in connection with our business relationship, and may be provided to contractors, Business Partners, and assignees of IBM for uses consistent with their collective business activities, including communicating with You (for example, for processing orders, for promotions, and for market research). \n\n5. Neither You nor IBM will bring a legal action under this Agreement more than two years after the cause of action arose unless otherwise provided by local law without the possibility of contractual waiver or limitation. \n\n6. Neither You nor IBM is responsible for failure to fulfill any obligations due to causes beyond its control. \n\n7. This Agreement will not create any right or cause of action for any third party, nor will IBM be responsible for any third party claims against You except, as permitted by the Limitation of Liability section above, for bodily injury (including death) or damage to real or tangible personal property for which IBM is legally liable. \n\n6. Governing Law, Jurisdiction, and Arbitration \n\nGoverning Law \n\nBoth You and IBM consent to the application of the laws of the country in which You acquired the Program license to govern, interpret, and enforce all of Your and IBM's rights, duties, and obligations arising from, or relating in any manner to, the subject matter of this Agreement, without regard to conflict of law principles. \n\nThe United Nations Convention on Contracts for the International Sale of Goods does not apply. \n\nJurisdiction \n\nAll of our rights, duties, and obligations are subject to the courts of the country in which You acquired the Program license. \n\nPart 2 - Country-unique Terms \n\nAMERICAS \n\nARGENTINA: Governing Law, Jurisdiction, and Arbitration (Section 6): The following exception is added to this section: \n\nAny litigation arising from this Agreement will be settled exclusively by the Ordinary Commercial Court of the city of Buenos Aires. \n\nBRAZIL: Governing Law, Jurisdiction, and Arbitration (Section 6): The following exception is added to this section: \n\nAny litigation arising from this Agreement will be settled exclusively by the court of Rio de Janeiro, RJ. \n\nCANADA: General (Section 5): The following replaces item 7: \n\n7. This Agreement will not create any right or cause of action for any third party, nor will IBM be responsible for any third party claims against You except as permitted by the Limitation of Liability section above for bodily injury (including death) or physical harm to real or tangible personal property caused by IBM's negligence for which IBM is legally liable.\" \n\nGoverning Law, Jurisdiction, and Arbitration (Section 6): The phrase \"the laws of the country in which You acquired the Program license\" in the Governing Law subsection is replaced by the following: \n\nthe laws in the Province of Ontario\" \n\nPERU: Limitation of Liability (Section 4): The following is added at the end of this section: \n\nIn accordance with Article 1328 of the Peruvian Civil Code, the limitations and exclusions specified in this section will not apply to damages caused by IBM's willful misconduct (\"dolo\") or gross negligence (\"culpa inexcusable\"). \n\nUNITED STATES OF AMERICA: General (Section 5): The following is added to this section: \n\nU.S. Government Users Restricted Rights - Use, duplication or disclosure restricted by the GSA ADP Schedule Contract with the IBM Corporation. \n\nGoverning Law, Jurisdiction, and Arbitration (Section 6): The phrase \"the laws of the country in which You acquired the Program license\" in the Governing Law subsection is replaced by the following: \n\nthe laws of the State of New York, United States of America \n\nASIA PACIFIC \n\nAUSTRALIA: No Warranty (Section 3): The following is added: \n\nAlthough IBM specifies that there are no warranties, You may have certain rights under the Trade Practices Act 1974 or other legislation and are only limited to the extent permitted by the applicable legislation. \n\nLimitation of Liability (Section 4): The following is added: \n\nWhere IBM is in breach of a condition or warranty implied by the Trade Practices Act 1974, IBM's liability is limited to the repair or replacement of the goods, or the supply of equivalent goods. Where that condition or warranty relates to right to sell, quiet possession or clear title, or the goods are of a kind ordinarily acquired for personal, domestic or household use or consumption, then none of the limitations in this paragraph apply. \n\nGoverning Law, Jurisdiction, and Arbitration (Section 6): The phrase \"the laws of the country in which You acquired the Program license\" in the Governing Law subsection is replaced by the following: \n\nthe laws of the State or Territory in which You acquired the Program license \n\nCAMBODIA, LAOS, and VIETNAM: Governing Law, Jurisdiction, and Arbitration (Section 6): The phrase \"the laws of the country in which You acquired the Program license\" in the Governing Law subsection is replaced by the following: \n\nthe laws of the State of New York, United States of America \n\nThe following is added to this section: \n\nArbitration \n\nDisputes arising out of or in connection with this Agreement shall be finally settled by arbitration which shall be held in Singapore in accordance with the Arbitration Rules of Singapore International Arbitration Center (\"SIAC Rules\") then in effect. The arbitration award shall be final and binding for the parties without appeal and shall be in writing and set forth the findings of fact and the conclusions of law. \n\nThe number of arbitrators shall be three, with each side to the dispute being entitled to appoint one arbitrator. The two arbitrators appointed by the parties shall appoint a third arbitrator who shall act as chairman of the proceedings. Vacancies in the post of chairman shall be filled by the president of the SIAC. Other vacancies shall be filled by the respective nominating party. Proceedings shall continue from the stage they were at when the vacancy occurred. \n\nIf one of the parties refuses or otherwise fails to appoint an arbitrator within 30 days of the date the other party appoints its, the first appointed arbitrator shall be the sole arbitrator, provided that the arbitrator was validly and properly appointed. \n\nAll proceedings shall be conducted, including all documents presented in such proceedings, in the English language. The English language version of this Agreement prevails over any other language version. \n\nHONG KONG S.A.R. and MACAU S.A.R. of China: Governing Law, Jurisdiction, and Arbitration (Section 6): The phrase \"the laws of the country in which You acquired the Program license\" in the Governing Law subsection is replaced by the following: \n\nthe laws of Hong Kong Special Administrative Region of China \n\nINDIA: Limitation of Liability (Section 4): The following replaces the terms of items 1 and 2 of the first paragraph: \n\n1) liability for bodily injury (including death) or damage to real property and tangible personal property will be limited to that caused by IBM's negligence; and 2) as to any other actual damage arising in any situation involving nonperformance by IBM pursuant to, or in any way related to the subject of this Agreement, IBM's liability will be limited to the charge paid by You for the individual Program that is the subject of the claim. \n\nGeneral (Section 5): The following replaces the terms of item 5: \n\nIf no suit or other legal action is brought, within three years after the cause of action arose, in respect of any claim that either party may have against the other, the rights of the concerned party in respect of such claim will be forfeited and the other party will stand released from its obligations in respect of such claim. \n\nGoverning Law, Jurisdiction, and Arbitration (Section 6): The following is added to this section: \n\nArbitration \n\nDisputes arising out of or in connection with this Agreement shall be finally settled by arbitration which shall be held in Bangalore, India in accordance with the laws of India then in effect. The arbitration award shall be final and binding for the parties without appeal and shall be in writing and set forth the findings of fact and the conclusions of law. \n\nThe number of arbitrators shall be three, with each side to the dispute being entitled to appoint one arbitrator. The two arbitrators appointed by the parties shall appoint a third arbitrator who shall act as chairman of the proceedings. Vacancies in the post of chairman shall be filled by the president of the Bar Council of India. Other vacancies shall be filled by the respective nominating party. Proceedings shall continue from the stage they were at when the vacancy occurred. \n\nIf one of the parties refuses or otherwise fails to appoint an arbitrator within 30 days of the date the other party appoints its, the first appointed arbitrator shall be the sole arbitrator, provided that the arbitrator was validly and properly appointed. \n\nAll proceedings shall be conducted, including all documents presented in such proceedings, in the English language. The English language version of this Agreement prevails over any other language version. \n\nJAPAN: General (Section 5): The following is inserted after item 5: \n\nAny doubts concerning this Agreement will be initially resolved between us in good faith and in accordance with the principle of mutual trust. \n\nMALAYSIA: Limitation of Liability (Section 4): The word \"SPECIAL\" in item 2 of the third paragraph is deleted: \n\nNEW ZEALAND: No Warranty (Section 3): The following is added: \n\nAlthough IBM specifies that there are no warranties, You may have certain rights under the Consumer Guarantees Act 1993 or other legislation which cannot be excluded or limited. The Consumer Guarantees Act 1993 will not apply in respect of any goods which IBM provides, if You require the goods for the purposes of a business as defined in that Act. \n\nLimitation of Liability (Section 4): The following is added: \n\nWhere Programs are not acquired for the purposes of a business as defined in the Consumer Guarantees Act 1993, the limitations in this Section are subject to the limitations in that Act. \n\nPEOPLE'S REPUBLIC OF CHINA: Charges (Section 2): The following is added: \n\nAll banking charges incurred in the People's Republic of China will be borne by You and those incurred outside the People's Republic of China will be borne by IBM. \n\nGoverning Law, Jurisdiction, and Arbitration (Section 6): The phrase \"the laws of the country in which You acquired the Program license\" in the Governing Law subsection is replaced by the following: \n\nthe laws of the State of New York, United States of America (except when local law requires otherwise) \n\nPHILIPPINES: Limitation of Liability (Section 4): The following replaces the terms of item 2 of the third paragraph: \n\n2. special (including nominal and exemplary damages), moral, incidental, or indirect damages or for any economic consequential damages; or \n\nGoverning Law, Jurisdiction, and Arbitration (Section 6): The following is added to this section: \n\nArbitration \n\nDisputes arising out of or in connection with this Agreement shall be finally settled by arbitration which shall be held in Metro Manila, Philippines in accordance with the laws of the Philippines then in effect. The arbitration award shall be final and binding for the parties without appeal and shall be in writing and set forth the findings of fact and the conclusions of law. \n\nThe number of arbitrators shall be three, with each side to the dispute being entitled to appoint one arbitrator. The two arbitrators appointed by the parties shall appoint a third arbitrator who shall act as chairman of the proceedings. Vacancies in the post of chairman shall be filled by the president of the Philippine Dispute Resolution Center, Inc. Other vacancies shall be filled by the respective nominating party. Proceedings shall continue from the stage they were at when the vacancy occurred. \n\nIf one of the parties refuses or otherwise fails to appoint an arbitrator within 30 days of the date the other party appoints its, the first appointed arbitrator shall be the sole arbitrator, provided that the arbitrator was validly and properly appointed. \n\nAll proceedings shall be conducted, including all documents presented in such proceedings, in the English language. The English language version of this Agreement prevails over any other language version. \n\nSINGAPORE: Limitation of Liability (Section 4): The words \"SPECIAL\" and \"ECONOMIC\" are deleted from item 2 of the third paragraph. \n\nGeneral (Section 5): The following replaces the terms of item 7: \n\nSubject to the rights provided to IBM's suppliers and Program developers as provided in Section 4 above (Limitation of Liability), a person who is not a party to this Agreement shall have no right under the Contracts (Right of Third Parties) Act to enforce any of its terms. \n\nEUROPE, MIDDLE EAST, AFRICA (EMEA) \n\nNo Warranty (Section 3): In the European Union, the following is added at the beginning of this section: \n\nIn the European Union, consumers have legal rights under applicable national legislation governing the sale of consumer goods. Such rights are not affected by the provisions of this Section 3. \n\nLimitation of Liability (Section 4): In Austria, Denmark, Finland, Greece, Italy, Netherlands, Norway, Portugal, Spain, Sweden and Switzerland, the following replaces the terms of this section in its entirety: \n\nExcept as otherwise provided by mandatory law: \n\n1. IBM's liability for any damages and losses that may arise as a consequence of the fulfillment of its obligations under or in connection with this agreement or due to any other cause related to this agreement is limited to the compensation of only those damages and losses proved and actually arising as an immediate and direct consequence of the non-fulfillment of such obligations (if IBM is at fault) or of such cause, for a maximum amount equal to the charges You paid for the Program. \n\nThe above limitation shall not apply to damages for bodily injuries (including death) and damages to real property and tangible personal property for which IBM is legally liable. \n\n2. UNDER NO CIRCUMSTANCES IS IBM, OR ANY OF ITS PROGRAM DEVELOPERS, LIABLE FOR ANY OF THE FOLLOWING, EVEN IF INFORMED OF THEIR POSSIBILITY: 1) LOSS OF, OR DAMAGE TO, DATA; 2) INCIDENTAL OR INDIRECT DAMAGES, OR FOR ANY ECONOMIC CONSEQUENTIAL DAMAGES; 3) LOST PROFITS, EVEN IF THEY ARISE AS AN IMMEDIATE CONSEQUENCE OF THE EVENT THAT GENERATED THE DAMAGES; OR 4) LOSS OF BUSINESS, REVENUE, GOODWILL, OR ANTICIPATED SAVINGS. \n\n3. The limitation and exclusion of liability herein agreed applies not only to the activities performed by IBM but also to the activities performed by its suppliers and Program developers, and represents the maximum amount for which IBM as well as its suppliers and Program developers, are collectively responsible. \n\nLimitation of Liability (Section 4): In France and Belgium, the following replaces the terms of this section in its entirety: \n\nExcept as otherwise provided by mandatory law: \n\n1. IBM's liability for any damages and losses that may arise as a consequence of the fulfillment of its obligations under or in connection with this agreement is limited to the compensation of only those damages and losses proved and actually arising as an immediate and direct consequence of the non-fulfillment of such obligations (if IBM is at fault), for a maximum amount equal to the charges You paid for the Program that has caused the damages. \n\nThe above limitation shall not apply to damages for bodily injuries (including death) and damages to real property and tangible personal property for which IBM is legally liable. \n\n2. UNDER NO CIRCUMSTANCES IS IBM, OR ANY OF ITS PROGRAM DEVELOPERS, LIABLE FOR ANY OF THE FOLLOWING, EVEN IF INFORMED OF THEIR POSSIBILITY: 1) LOSS OF, OR DAMAGE TO, DATA; 2) INCIDENTAL OR INDIRECT DAMAGES, OR FOR ANY ECONOMIC CONSEQUENTIAL DAMAGES; 3) LOST PROFITS, EVEN IF THEY ARISE AS AN IMMEDIATE CONSEQUENCE OF THE EVENT THAT GENERATED THE DAMAGES; OR 4) LOSS OF BUSINESS, REVENUE, GOODWILL, OR ANTICIPATED SAVINGS. \n\n3. The limitation and exclusion of liability herein agreed applies not only to the activities performed by IBM but also to the activities performed by its suppliers and Program developers, and represents the maximum amount for which IBM as well as its suppliers and Program developers, are collectively responsible. \n\nGoverning Law, Jurisdiction, and Arbitration (Section 6) \n\nGoverning Law \n\nThe phrase \"the laws of the country in which You acquired the Program license\" is replaced by: \n1) \"the laws of Austria\" in Albania, Armenia, Azerbaijan, Belarus, Bosnia-Herzegovina, Bulgaria, Croatia, Georgia, Hungary, Kazakhstan, Kyrgyzstan, FYR Macedonia, Moldavia, Poland, Romania, Russia, Slovakia, Slovenia, Tajikistan, Turkmenistan, Ukraine, Uzbekistan, and FR Yugoslavia; \n2) \"the laws of France\" in Algeria, Benin, Burkina Faso, Cameroon, Cape Verde, Central African Republic, Chad, Comoros, Congo Republic, Djibouti, Democratic Republic of Congo, Equatorial Guinea, French Guiana, French Polynesia, Gabon, Gambia, Guinea, Guinea-Bissau, Ivory Coast, Lebanon, Madagascar, Mali, Mauritania, Mauritius, Mayotte, Morocco, New Caledonia, Niger, Reunion, Senegal, Seychelles, Togo, Tunisia, Vanuatu, and Wallis & Futuna; \n3) \"the laws of Finland\" in Estonia, Latvia, and Lithuania; \n4) \"the laws of England\" in Angola, Bahrain, Botswana, Burundi, Egypt, Eritrea, Ethiopia, Ghana, Jordan, Kenya, Kuwait, Liberia, Malawi, Malta, Mozambique, Nigeria, Oman, Pakistan, Qatar, Rwanda, Sao Tome, Saudi Arabia, Sierra Leone, Somalia, Tanzania, Uganda, United Arab Emirates, the United Kingdom, West Bank/Gaza, Yemen, Zambia, and Zimbabwe; and \n5) \"the laws of South Africa\" in South Africa, Namibia, Lesotho and Swaziland. \n\nJurisdiction \n\nThe following exceptions are added to this section: \n\n1) In Austria the choice of jurisdiction for all disputes arising out of this Agreement and relating thereto, including its existence, will be the competent court of law in Vienna, Austria (Inner-City); \n2) in Angola, Bahrain, Botswana, Burundi, Egypt, Eritrea, Ethiopia, Ghana, Jordan, Kenya, Kuwait, Liberia, Malawi, Malta, Mozambique, Nigeria, Oman, Pakistan, Qatar, Rwanda, Sao Tome, Saudi Arabia, Sierra Leone, Somalia, Tanzania, Uganda, United Arab Emirates, West Bank/Gaza, Yemen, Zambia, and Zimbabwe all disputes arising out of this Agreement or related to its execution, including summary proceedings, will be submitted to the exclusive jurisdiction of the English courts; \n3) in Belgium and Luxembourg, for all disputes arising out of this Agreement or related to its interpretation or its execution, only the law and the courts of the capital of the country in which Your registered office and/or commercial office is located are competent; \n4) in France, Algeria, Benin, Burkina Faso, Cameroon, Cape Verde, Central African Republic, Chad, Comoros, Congo Republic, Djibouti, Democratic Republic of Congo, Equatorial Guinea, French Guiana, French Polynesia, Gabon, Gambia, Guinea, Guinea-Bissau, Ivory Coast, Lebanon, Madagascar, Mali, Mauritania, Mauritius, Mayotte, Morocco, New Caledonia, Niger, Reunion, Senegal, Seychelles, Togo, Tunisia, Vanuatu, and Wallis & Futuna all disputes arising out of this Agreement or related to its violation or execution, including summary proceedings, will be settled exclusively by the Commercial Court of Paris; \n5) in Russia, all disputes arising out of or in relation to the interpretation, the violation, the termination, the nullity of the execution of this Agreement shall be settled by Arbitration Court of Moscow; \n6) in South Africa, Namibia, Lesotho and Swaziland, both of us agree to submit all disputes relating to this Agreement to the jurisdiction of the High Court in Johannesburg; \n7) in Turkey all disputes arising out of or in connection with this Agreement shall be resolved by the Istanbul Central (Sultanahmet) Courts and Execution Directorates of Istanbul, the Republic of Turkey; \n8) in each of the following specified countries, any legal claim arising out of this Agreement will be brought before, and settled exclusively by, the competent court of a) Athens for Greece, b) Tel Aviv-Jaffa for Israel, c) Milan for Italy, d) Lisbon for Portugal, and e) Madrid for Spain; and \n9) in the United Kingdom, both of us agree to submit all disputes relating to this Agreement to the jurisdiction of the English courts. \n\nArbitration \n\nIn Albania, Armenia, Azerbaijan, Belarus, Bosnia-Herzegovina, Bulgaria, Croatia, Georgia, Hungary, Kazakhstan, Kyrgyzstan, FYR Macedonia, Moldavia, Poland, Romania, Russia, Slovakia, Slovenia, Tajikistan, Turkmenistan, Ukraine, Uzbekistan, and FR Yugoslavia all disputes arising out of this Agreement or related to its violation, termination or nullity will be finally settled under the Rules of Arbitration and Conciliation of the International Arbitral Center of the Federal Economic Chamber in Vienna (Vienna Rules)", + "json": "ibm-jre.json", + "yaml": "ibm-jre.yml", + "html": "ibm-jre.html", + "license": "ibm-jre.LICENSE" + }, + { + "license_key": "ibm-nwsc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-nwsc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "IBM International License Agreement for Non-Warranted Sample Code\n\nPart 1 - General Terms\n-----------------------------------------------------------\nPLEASE READ THIS AGREEMENT CAREFULLY BEFORE DOWNLOADING THE SAMPLE CODE. IBM WILL LICENSE THE SAMPLE CODE TO YOU ONLY IF YOU FIRST ACCEPT THE TERMS OF THIS AGREEMENT. BY DOWNLOADING THE SAMPLE CODE YOU AGREE TO THESE TERMS. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, DO NOT DOWNLOAD THE SAMPLE CODE.\n\nThe Sample Code is authored by International Business Machines Corporation or one of its subsidiaries (IBM) or an IBM supplier, and is copyrighted and licensed, not sold.\n\nThe term \"Sample Code\" means a program, or portion of a program, being distributed in its source programming language and all whole or partial copies of it.\n\nThis Agreement includes Part 1 - General Terms and Part 2 - Country-unique Terms and is the complete agreement regarding the use of this Sample Code, and replaces any prior oral or written communications between you and IBM. The terms of Part 2 may replace or modify those of Part 1.\n\n1. License\n\nIBM grants you a nonexclusive license to use, copy, or modify the Sample Code. You may include the Sample Code in programs for your own use or for commercial sale.\n\nYou will ensure that anyone who uses the sample code does so only in compliance with the terms of this Agreement.\n\n\n2. No Warranty\n\nThe Sample Code has not been submitted to any formal IBM test and is distributed \"AS IS\". Use of the Sample Code, or implementation of any techniques contained in the code, is a customer responsibility and depends on the customer's ability to evaluate and integrate the code into the customer's operational environment. While sample code may have been reviewed by IBM for accuracy in a specific situation there is no guarantee that the same or similar results will be obtained elsewhere. Customers attempting to use Sample Code in their own environments do so at their own risk.\n\nSUBJECT TO ANY STATUTORY WARRANTIES WHICH CAN NOT BE EXCLUDED, IBM MAKES NO WARRANTIES OR CONDITIONS EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION, THE WARRANTY OF NON-INFRINGEMENT AND THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE SAMPLE CODE.\n\nThe exclusion also applies to any of IBM's subcontractors, suppliers, or program developers (collectively called \"Suppliers\").\n\n3. Limitation of Liability\n\nNEITHER IBM NOR ITS SUPPLIERS WILL BE LIABLE FOR ANY DIRECT OR INDIRECT DAMAGES, INCLUDING WITHOUT LIMITATION, LOST PROFITS, LOST SAVINGS, OR ANY INCIDENTAL, SPECIAL, OR OTHER ECONOMIC CONSEQUENTIAL DAMAGES, EVEN IF IBM IS INFORMED OF THEIR POSSIBILITY. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE EXCLUSION OR LIMITATION MAY NOT APPLY TO YOU.\n\n4. General\n\nNothing in this Agreement affects any statutory rights of consumers that cannot be waived or limited by contract.\n\nIBM may terminate your license if you fail to comply with the terms of this Agreement. If IBM does so, you must immediately destroy the Sample Code and all copies you made of it.\n\nYou agree to comply with applicable export laws and regulations.\n\nNeither you nor IBM will bring a legal action under this Agreement more than two years after the cause of action arose unless otherwise provided by local law without the possibility of contractual waiver or limitation.\n\nNeither you nor IBM is responsible for failure to fulfill any obligations due to causes beyond its control.\n\nIBM does not provide program services or technical support, unless IBM specifies otherwise.\n\nThe laws of the country in which you acquire the Sample Code govern this Agreement, except 1) in Australia, the laws of the State or Territory in which the transaction is performed govern this Agreement; 2) in Albania, Armenia, Belarus, Bosnia/Herzegovina, Bulgaria, Croatia, Czech Republic, Federal Republic of Yugoslavia, Georgia, Hungary, Kazakhstan, Kirghizia, Former Yugoslav Republic of Macedonia (FYROM), Moldova, Poland, Romania, Russia, Slovak Republic, Slovenia, and Ukraine, the laws of Austria govern this Agreement; 3) in the United Kingdom, all disputes relating to this Agreement will be governed by English Law and will be submitted to the exclusive jurisdiction of the English courts; 4) in Canada, the laws in the Province of Ontario govern this Agreement; and 5) in the United States and Puerto Rico, and People's Republic of China, the laws of the State of New York govern this Agreement.\n\n\n\nIBM International License Agreement for Non-Warranted Sample Code\n\nPart 2 - Country-unique Terms\n-----------------------------------------------------------\nAUSTRALIA: No Warranty (Section 2): The following paragraph is added to this Section:\nAlthough IBM specifies that there are no warranties, you may have certain rights under the Trade Practices Act 1974 or other legislation and are only limited to the extent permitted by the applicable legislation.\n\nLimitation of Liability (Section 3): The following paragraph is added to this Section:\nWhere IBM is in breach of a condition or warranty implied by the Trade Practices Act 1974, IBM's liability is limited to the repair or replacement of the goods, or the supply of equivalent goods. Where that condition or warranty relates to right to sell, quiet possession or clear title, or the goods are of a kind ordinarily acquired for personal, domestic or household use or consumption, then none of the limitations in this paragraph apply.\n\n\nGERMANY: No Warranty (Section 2): The following paragraph is added to this Section:\nThe minimum warranty period for Sample Code is six months.\n\nLimitation of Liability (Section 3): The following paragraph is added to this Section:\nThe limitations and exclusions specified in the Agreement will not apply to damages caused by IBM with fraud or gross negligence, and for express warranty.\n\n\nINDIA: General (Section 4 ): The following replaces the fourth paragraph of this Section:\nIf no suit or other legal action is brought, within two years after the cause of action arose, in respect of any claim that either party may have against the other, the rights of the concerned party in respect of such claim will be forfeited and the other party will stand released from its obligations in respect of such claim.\n\n\nIRELAND: No Warranty (Section 2): The following paragraph is added to this Section:\nExcept as expressly provided in these terms and conditions, all statutory conditions, including all warranties implied, but without prejudice to the generality of the foregoing, all warranties implied by the Sale of Goods Act 1893 or the Sale of Goods and Supply of Services Act 1980 are hereby excluded.\n\n\nITALY: Limitation of Liability (Section 3): This Section is replaced by the following:\nUnless otherwise provided by mandatory law, IBM is not liable for any damages which might arise.\n\n\nNEW ZEALAND: No Warranty (Section 2 ): The following paragraph is added to this Section:\nAlthough IBM specifies that there are no warranties, you may have certain rights under the Consumer Guarantees Act 1993 or other legislation which cannot be excluded or limited. The Consumer Guarantees Act 1993 will not apply in respect of any goods or services which IBM provides, if you require the goods or services for the purposes of a business as defined in that Act.\n\nLimitation of Liability (Section 3): The following paragraph is added to this Section:\nWhere Sample Code is not acquired for the purposes of a business as defined in the Consumer Guarantees Act 1993, the limitations in this Section are subject to the limitations in that Act.\n\n\nUNITED KINGDOM: Limitation of Liability (Section 3 ): The following paragraph is added to this Section:\nThe limitation of liability will not apply to any breach of IBM's obligations implied by Section 12 of the Sales of Goods Act 1979 or Section 2 of the Supply of Goods and Services Act 1982.", + "json": "ibm-nwsc.json", + "yaml": "ibm-nwsc.yml", + "html": "ibm-nwsc.html", + "license": "ibm-nwsc.LICENSE" + }, + { + "license_key": "ibm-pibs", + "category": "Permissive", + "spdx_license_key": "IBM-pibs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This source code has been made available to you by IBM on an AS-IS\nbasis. Anyone receiving this source is licensed under IBM copyrights to\nuse it in any way he or she deems fit, including copying it, modifying\nit, compiling it, and redistributing it either with or without\nmodifications. No license under IBM patents or patent applications is\nto be implied by the copyright license.\n\nAny user of this software should understand that IBM cannot provide\ntechnical support for this software and will not be responsible for any\nconsequences resulting from the use of this software.\n\nAny person who transfers this source code or any derivative work must\ninclude the IBM copyright notice, this paragraph, and the preceding two\nparagraphs in the transferred software.\n\nCOPYRIGHT I B M CORPORATION \nLICENSED MATERIAL - PROGRAM PROPERTY OF I B M", + "json": "ibm-pibs.json", + "yaml": "ibm-pibs.yml", + "html": "ibm-pibs.html", + "license": "ibm-pibs.LICENSE" + }, + { + "license_key": "ibm-sample", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-sample", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The sample program(s) is/are owned by International Business Machines\nCorporation or one of its subsidiaries (\"IBM\") and is/are copyrighted and\nlicensed, not sold.\n\nYou may copy, modify, and distribute this/these sample program(s) in any form\nwithout payment to IBM, for any purpose including developing, using, marketing\nor distributing programs that include or are derivative works of the sample\nprogram(s).\n\nThe sample program(s) is/are provided to you on an \"AS IS\" basis, without\nwarranty of any kind. IBM HEREBY EXPRESSLY DISCLAIMS ALL WARRANTIES, EITHER\nEXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Some jurisdictions do\nnot allow for the exclusion or limitation of implied warranties, so the above\nlimitations or exclusions may not apply to you. IBM shall not be liable for\nany damages you suffer as a result of using, modifying or distributing the\nsample program(s) or its/their derivatives.\n\nEach copy of any portion of this/these sample program(s) or any derivative\nwork, must include the above copyright notice and disclaimer of warranty.", + "json": "ibm-sample.json", + "yaml": "ibm-sample.yml", + "html": "ibm-sample.html", + "license": "ibm-sample.LICENSE" + }, + { + "license_key": "ibmpl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "IPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "IBM Public License Version 1.0\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS IBM PUBLIC LICENSE (\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n1. DEFINITIONS\n\n\"Contribution\" means:\n\n 1. in the case of International Business Machines Corporation (\"IBM\"), the Original Program, and\n 2. in the case of each Contributor,\n 1. changes to the Program, and\n 2. additions to the Program; \n where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. \n\n\"Contributor\" means IBM and any other entity that distributes the Program. \n\"Licensed Patents \" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.\n\n\"Original Program\" means the original version of the software accompanying this Agreement as released by IBM, including source code, object code and documentation, if any.\n\n\"Program\" means the Original Program and Contributions.\n\n\"Recipient\" means anyone who receives the Program under this Agreement, including all Contributors.\n2. GRANT OF RIGHTS\n\n 1. Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.\n 2. Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.\n 3. Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.\n 4. Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. \n\n3. REQUIREMENTS\nA Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:\n\n 1. it complies with the terms and conditions of this Agreement; and\n 2. its license agreement:\n 1. effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;\n 2. effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;\n 3. states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and\n\n 2.\n 4. states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. \n\nWhen the Program is made available in source code form:\n\n 1. it must be made available under this Agreement; and\n 2. a copy of this Agreement must be included with each copy of the Program. \n\nEach Contributor must include the following in a conspicuous location in the Program:\n\n Copyright (C) 1996, 1999 International Business Machines Corporation and others. All Rights Reserved. \n\nIn addition, each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.\n4. COMMERCIAL DISTRIBUTION\n\nCommercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor (\"Commercial Contributor\") hereby agrees to defend and indemnify every other Contributor (\"Indemnified Contributor\") against any losses, damages and costs (collectively \"Losses\") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.\n\n\nFor example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.\n5. NO WARRANTY\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED 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. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.\n6. DISCLAIMER OF LIABILITY\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n7. GENERAL\nIf any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\nIf Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.\n\nIBM may publish new versions (including revisions) of this Agreement from time to time. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. No one other than IBM has the right to modify this Agreement. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.\n\nThis Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.", + "json": "ibmpl-1.0.json", + "yaml": "ibmpl-1.0.yml", + "html": "ibmpl-1.0.html", + "license": "ibmpl-1.0.LICENSE" + }, + { + "license_key": "ibpp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibpp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "IBPP License v1.1\n-----------------\nPermission is hereby granted, free of charge, to any person or organization\n(\"You\") obtaining a copy of this software and associated documentation files\ncovered by this license (the \"Software\") to use the Software as part of another\nwork; to modify it for that purpose; to publish or distribute it, modified or\nnot, for that same purpose; to permit persons to whom the other work using the\nSoftware is furnished to do so; subject to the following conditions: the above\ncopyright notice and this complete and unmodified permission notice shall be\nincluded in all copies or substantial portions of the Software; You will not\nmisrepresent modified versions of the Software as being the original.\n\nThe Software is provided \"as is\", without warranty of any kind, express or\nimplied, including but not limited to the warranties of merchantability,\nfitness for a particular purpose and noninfringement. In no event shall\nthe authors or copyright holders be liable for any claim, damages or other\nliability, whether in an action of contract, tort or otherwise, arising from,\nout of or in connection with the software or the use of other dealings in\nthe Software.", + "json": "ibpp.json", + "yaml": "ibpp.yml", + "html": "ibpp.html", + "license": "ibpp.LICENSE" + }, + { + "license_key": "ic-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-ic-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "INTERNET COMPUTER COMMUNITY SOURCE LICENSE VERSION 1.0\n\nLicense text copyright \u00a9 2021 DFINITY Foundation, All Rights Reserved. \u201cInternet\nComputer Community Source License\u201d is a trademark of the DFINITY Foundation.\n\nTERMS AND CONDITIONS\n\nIf you use this code (the \u201csoftware\u201d), you accept this license. If you do not\naccept the license, do not use the software.\n\n1. Definitions\n\n The terms \u201creproduce,\u201d \u201creproduction,\u201d \u201cderivative works,\u201d and \u201cdistribution\u201d\n have the same meaning here as under U.S. copyright law.\n\n A \u201ccontribution\u201d is the original software, or any additions or changes to the\n software.\n\n A \u201ccontributor\u201d is any person that distributes its contribution under this\n license.\n\n \u201cInternet Computer\u201d is the decentralized compute platform originated by the\n DFINITY Foundation and stewarded by the Internet Computer Association.\n\n2. Grant of Rights\n\n (A) Copyright Grant - Subject to the terms of this license, including the\n license conditions and limitations in Section 3, each contributor grants you\n a non-exclusive, worldwide, royalty-free copyright license to reproduce its\n contribution, prepare derivative works of its contribution, and distribute\n its contribution or any derivative works that you create.\n\n (B) Patent Grant - Subject to the terms of this license, including the\n license conditions and limitations in Section 3, each contributor grants you\n a non-exclusive, worldwide, royalty-free license under its licensed patents\n to make, have made, use, sell, offer for sale, import, and/or otherwise\n dispose of its contribution in the software or derivative works of the\n contribution in the software.\n\n3. Conditions and Limitations\n\n (A) Platform Limitation - The licenses granted in sections 2(A) and 2(B)\n extend only to the software or derivative works that you create that run\n directly on the Internet Computer platform.\n\n (B) This license does not grant you rights to use any contributors\u2019 name,\n logo, or trademarks.\n\n (C) If you distribute any portion of the software, you must retain all\n copyright, patent, trademark, and attribution notices that are present in the\n software.\n\n (D) If you distribute any portion of the software in source code form, you\n may do so only under this license by including a complete copy of this\n license with your distribution. If you distribute any portion of the software\n in compiled or object code form, you may only do so under a license that\n complies with this license.\n\n (E) If you have modified the Software or created derivative works, and\n distribute such modifications or derivative works, you will cause the\n modified files to carry prominent notices so that recipients know that they\n are not receiving the original software. Such notices must state: (i) that\n you have changed the software; and (ii) the date of any changes.\n\n (F) THE SOFTWARE COMES \"AS IS\", WITH NO WARRANTIES. THIS MEANS THE\n CONTRIBUTORS GIVE NO EXPRESS, IMPLIED OR STATUTORY WARRANTY, INCLUDING\n WITHOUT LIMITATION, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR\n PURPOSE OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT. ALSO, YOU MUST PASS\n THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE SOFTWARE OR DERIVATIVE WORKS.\n\n (G) DFINITY WILL NOT BE LIABLE FOR ANY DAMAGES RELATED TO THE SOFTWARE OR\n THIS LICENSE, INCLUDING DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL OR\n INCIDENTAL DAMAGES, TO THE MAXIMUM EXTENT THE LAW PERMITS, NO MATTER WHAT\n LEGAL THEORY IT IS BASED ON (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR\n DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR\n A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF YOU OR\n OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ALSO, YOU\n MUST PASS THIS LIMITATION OF LIABILITY ON WHENEVER YOU DISTRIBUTE THE\n SOFTWARE OR DERIVATIVE WORKS.\n\n (H) If you bring a patent claim against any contributor over patents that you\n claim are infringed by the software or a claim against anyone for their use\n of the software, your license the software automatically terminates.\n\n (I) Your rights under this license automatically terminates if you breach it\n in any way.\n\n (J) Each contributor grants to the Foundation the right to distribute the\n contribution of the contributor under a license which is more permissive than\n this license. A more permissive license shall be in particular a license with\n less restrictions on how the contribution can be reproduced, modified and\n distributed than this license. A more permissive license may be in particular\n understood as a license that sets asides the platform limitation in section 3\n (A) of this license. A more permissive license shall include in particular\n the Apache License Version 2.0 (or future versions thereof) and the MIT\n License. The decision on such a distribution under a more permissive license\n is at the sole discretion of the Foundation\n\n (K) The Foundation reserves all rights not expressly granted to you in this\n license.\n\nEND OF TERMS AND CONDITIONS", + "json": "ic-1.0.json", + "yaml": "ic-1.0.yml", + "html": "ic-1.0.html", + "license": "ic-1.0.LICENSE" + }, + { + "license_key": "ic-shared-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-ic-shared-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "INTERNET COMPUTER SHARED COMMUNITY SOURCE LICENSE VERSION 1.0\n\nLicense text copyright \u00a9 2021 DFINITY Foundation, All Rights Reserved. \u201cInternet\nComputer Shared Community Source License\u201d is a trademark of the DFINITY\nFoundation.\n\nTERMS AND CONDITIONS\n\nIf you use this code (the \u201csoftware\u201d), you accept this license. If you do not\naccept the license, do not use the software.\n\n1. Definitions\n\n The terms \u201creproduce,\u201d \u201creproduction,\u201d \u201cderivative works,\u201d and \u201cdistribution\u201d\n have the same meaning here as under U.S. copyright law.\n\n A \u201ccontribution\u201d is the original software, or any additions or changes to the\n software.\n\n A \u201ccontributor\u201d is any person that distributes its contribution under this\n license.\n\n \u201cEthereum\u201d is an open-source, blockchain-based, decentralized software\n platform.\n\n \"Foundation\" shall mean DFINITY Stiftung.\n\n \u201cInternet Computer\u201d is the decentralized compute platform originated by the\n DFINITY Foundation and stewarded by the Internet Computer Association.\n\n2. Grant of Rights\n\n (A) Copyright Grant - Subject to the terms of this license, including the\n license conditions and limitations in Section 3, each contributor grants you\n a non-exclusive, worldwide, royalty-free copyright license to reproduce its\n contribution, prepare derivative works of its contribution, and distribute\n its contribution or any derivative works that you create.\n\n (B) Patent Grant - Subject to the terms of this license, including the\n license conditions and limitations in Section 3, each contributor grants you\n a non-exclusive, worldwide, royalty-free license under its licensed patents\n to make, have made, use, sell, offer for sale, import, and/or otherwise\n dispose of its contribution in the software or derivative works of the\n contribution in the software.\n\n3. Conditions and Limitations\n\n (A) Platform Limitation - The licenses granted in sections 2(A) and 2(B)\n extend only to the software or derivative works that you create that run\n directly on the Internet Computer platform or the Ethereum network.\n\n (B) This license does not grant you rights to use any contributors\u2019 name,\n logo, or trademarks.\n\n (C) If you distribute any portion of the software, you must retain all\n copyright, patent, trademark, and attribution notices that are present in the\n software.\n\n (D) If you distribute any portion of the software in source code form, you\n may do so only under this license by including a complete copy of this\n license with your distribution. If you distribute any portion of the software\n in compiled or object code form, you may only do so under a license that\n complies with this license.\n\n (E) If you have modified the Software or created derivative works, and\n distribute such modifications or derivative works, you will cause the\n modified files to carry prominent notices so that recipients know that they\n are not receiving the original software. Such notices must state: (i) that\n you have changed the software; and (ii) the date of any changes.\n\n (F) THE SOFTWARE COMES \"AS IS\", WITH NO WARRANTIES. THIS MEANS THE\n CONTRIBUTORS GIVE NO EXPRESS, IMPLIED OR STATUTORY WARRANTY, INCLUDING\n WITHOUT LIMITATION, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR\n PURPOSE OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT. ALSO, YOU MUST PASS\n THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE SOFTWARE OR DERIVATIVE WORKS.\n\n (G) DFINITY WILL NOT BE LIABLE FOR ANY DAMAGES RELATED TO THE SOFTWARE OR\n THIS LICENSE, INCLUDING DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL OR\n INCIDENTAL DAMAGES, TO THE MAXIMUM EXTENT THE LAW PERMITS, NO MATTER WHAT\n LEGAL THEORY IT IS BASED ON (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR\n DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR\n A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF YOU OR\n OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ALSO, YOU\n MUST PASS THIS LIMITATION OF LIABILITY ON WHENEVER YOU DISTRIBUTE THE\n SOFTWARE OR DERIVATIVE WORKS.\n\n (H) If you bring a patent claim against any contributor over patents that you\n claim are infringed by the software or a claim against anyone for their use\n of the software, your license the software automatically terminates.\n\n (I) Your rights under this license automatically terminates if you breach it\n in any way.\n\n (J) Each contributor grants to the Foundation the right to distribute the\n contribution of the contributor under a license which is more permissive than\n this license. A more permissive license shall be, in particular, a license\n with less restrictions on how the contribution can be reproduced, modified\n and distributed than this license. A more permissive license may be in\n particular understood as a license that sets asides the platform limitation\n in section 3 (A) of this license. A more permissive license shall include in\n particular the Apache License Version 2.0 (or future versions thereof) and\n the MIT License. The decision on such a distribution under a more permissive\n license is at the sole discretion of the Foundation.\n\n (K) The Foundation reserves all rights not expressly granted to you in this\n license.\n\nEND OF TERMS AND CONDITIONS", + "json": "ic-shared-1.0.json", + "yaml": "ic-shared-1.0.yml", + "html": "ic-shared-1.0.html", + "license": "ic-shared-1.0.LICENSE" + }, + { + "license_key": "icann-public", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-icann-public", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ICANN asserts no property rights to any of the IANA registries or\npublic keys we maintain. You are free to redistribute the IANA\nregistry files, the root zone file and the root public keys.\n\nAs a courtesy we'd ask any such redistribution make it clear it is a\nmirrored copy, and indicate the original source URL.", + "json": "icann-public.json", + "yaml": "icann-public.yml", + "html": "icann-public.html", + "license": "icann-public.LICENSE" + }, + { + "license_key": "ice-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ice-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception to the above, ZeroC grants to the contributors for\nthe following projects the permission to license their Ice-based software \nunder the terms of the GNU Lesser General Public License (LGPL) version \n2.1 or of the BSD license", + "json": "ice-exception-2.0.json", + "yaml": "ice-exception-2.0.yml", + "html": "ice-exception-2.0.html", + "license": "ice-exception-2.0.LICENSE" + }, + { + "license_key": "icot-free", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-icot-free", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " TERMS AND CONDITIONS FOR USE OF \"ICOT FREE SOFTWARE\"\n\n\nThe follwing Terms and Conditions for use of \"ICOT FREE SOFTWARE\"\n\nis applied to all of:\n\n * ICOT Free Software that ICOT releases\n * Revised ICOT Free Software after its release\n * Revised ICOT Free Software after its release\n\n\n1. Purposes and Background of ICOT Free Software.\n\n The Institute for New Generation Computer Technology (\"ICOT\")\nhad been promoting the Fifth Generation Computer Systems project under\nthe commitment of the Ministry of International Trade and Industry of\nJapan (the \"MITI\"). Since April 1993, ICOT has been promoting the\nFollow-on project to the FGCS project. This follow-on project aims to\ndisseminate and further develop FGCS technology. The FGCS project and\nthe Follow-on project (collectively, the \"Project\") have been aimed at\ncreating basic technology for novel computers that realizes parallel\ninference processing as their core mechanism, and contributing toward\nthe progress of computer science by sharing innovative knowledge and\ntechnology with the research community worldwide.\n\n Innovative hardware and software parallel inference technology\nhas been under development through the Project, which involves\nvarieties of advanced software for experiments and evaluation. This\nsoftware, being at a basic stage of research and development, should\nbe disseminated widely to the research community.\n\n According to the aims of the Project, ICOT has made this\nsoftware, the copyright of which does not belong to the government but\nto ICOT itself, available to the public in order to contribute to the\nworld, and, moreover, has removed all restrictions on its usage that\nmay have impeded further research and development in order that large\nnumbers of researchers can use it freely to begin a new era of\ncomputer science.\n\n This program together with any attached documentation (collec-\ntively, the \"Program\") is being distributed by ICOT free of charge as\nICOT Free Software.\n\n\n2. Free Use, Modification, Copying and Distribution\n\n Persons wanting to use the Program (\"Users\") may freely do so\nand may also freely modify and copy the Program. The term \"modify,\" as\nused here, includes, but is not limited to, any act to improve or\nexpand the Program for the purposes of enhancing and/or improving its\nfunction, performance and/or quality as well as to add one or more\nprograms or documents developed by Users of the Program.\n\n Each User may also freely distribute the Program, whether in\nits original form or modified, to any third party or parties, PROVIDED\nthat the provisions of Section 3 (\"NO WARRANTY\") will ALWAYS appear\non, or be attached to, the Program, which is distributed substantially\nin the same form as set out herein and that such intended\ndistribution, if actually made, will neither violate or otherwise\ncontravene any of the laws and regulations of the countries having\njurisdiction over the User or the intended distribution itself.\n\n\n3. NO WARRANTY\n\n The program was produced on an experimental basis in the\ncourse of the research and development conducted during the project\nand is provided to users as so produced on an experimental basis. \nAccordingly, the program is provided without any warranty whatsoever,\nwhether express, implied, statutory or otherwise. The term \"warranty\"\nused herein includes, but is not limited to, any warranty of the\nquality, performance, merchantability and fitness for a particular\npurpose of the program and the nonexistence of any infringement or\nviolation of any right of any third party.\n\n Each user of the program will agree and understand, and be\ndeemed to have agreed and understood, that there is no warranty\nwhatsoever for the program and, accordingly, the entire risk arising\nfrom or otherwise connected with the program is assumed by the user.\n\n Therefore, neither ICOT, the copyright holder, or any other\norganization that participated in or was otherwise related to the\ndevelopment of the program and their respective officials, directors,\nofficers and other employees shall be held liable for any and all\ndamages, including, without limitation, general, special, incidental\nand consequential damages, arising out of or otherwise in connection\nwith the use or inability to use the program or any product, material\nor result produced or otherwise obtained by using the program,\nregardless of whether they have been advised of, or otherwise had\nknowledge of, the possibility of such damages at any time during the\nproject or thereafter. Each user will be deemed to have agreed to the\nforegoing by his or her commencement of use of the program. The term\n\"use\" as used herein includes, but is not limited to, the use,\nmodification, copying and distribution of the program and the\nproduction of secondary products from the program.\n\n In the case where the program, whether in its original form or\nmodified, was distributed or delivered to or received by a user from\nany person, organization or entity other than ICOT, unless it makes or\ngrants independently of ICOT any specific warranty to the user in\nwriting, such person, organization or entity, will also be exempted\nfrom and not be held liable to the user for any such damages as noted\nabove as far as the program is concerned.", + "json": "icot-free.json", + "yaml": "icot-free.yml", + "html": "icot-free.html", + "license": "icot-free.LICENSE" + }, + { + "license_key": "idt-notice", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-idt-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This source code has been made available to you by IDT on an AS-IS\nbasis. Anyone receiving this source is licensed under IDT copyrights\nto use it in any way he or she deems fit, including copying it,\nmodifying it, compiling it, and redistributing it either with or\nwithout modifications. No license under IDT patents or patent\napplications is to be implied by the copyright license.\n\nAny user of this software should understand that IDT cannot provide\ntechnical support for this software and will not be responsible for\nany consequences resulting from the use of this software.\n\nAny person who transfers this source code or any derivative work must\ninclude the IDT copyright notice, this paragraph, and the preceeding\ntwo paragraphs in the transferred software.", + "json": "idt-notice.json", + "yaml": "idt-notice.yml", + "html": "idt-notice.html", + "license": "idt-notice.LICENSE" + }, + { + "license_key": "ietf", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ietf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This document and translations of it may be copied and furnished to\nothers, and derivative works that comment on or otherwise explain it\nor assist in its implementation may be prepared, copied, published\nand distributed, in whole or in part, without restriction of any\nkind, provided that the above copyright notice and this paragraph are\nincluded on all such copies and derivative works. However, this\ndocument itself may not be modified in any way, such as by removing\nthe copyright notice or references to the Internet Society or other\nInternet organizations, except as needed for the purpose of\ndeveloping Internet standards in which case the procedures for\ncopyrights defined in the Internet Standards process must be\nfollowed, or as required to translate it into languages other than\nEnglish.\n\nThe limited permissions granted above are perpetual and will not be\nrevoked by the Internet Society or its successors or assigns.\n\nThis document and the information contained herein is provided on an\n\"AS IS\" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING\nTASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING\nBUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION\nHEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF\nMERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.", + "json": "ietf.json", + "yaml": "ietf.yml", + "html": "ietf.html", + "license": "ietf.LICENSE" + }, + { + "license_key": "ietf-trust", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ietf-trust", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "IETF TRUST \nLegal Provisions Relating to IETF Documents \nEffective Date: December 28, 2009\n\n1. Background \n\nThe IETF Trust was formed on December 15, 2005, for, among other things, the purpose of acquiring, holding, maintaining and licensing certain existing and future intellectual property used in connection with the Internet standards process and its administration, for the advancement of science and technology associated with the Internet and related technology. Accordingly, pursuant to RFC 5378, Contributors grant the IETF Trust certain licenses with respect to their IETF Contributions. In RFC 5377, the IETF Community has provided the IETF Trust with guidance regarding licenses that the IETF Trust should grant to others with respect to such IETF Contributions and IETF Documents. These Legal Provisions describe the rights and licenses that the IETF Trust grants to others with respect to such IETF Contributions and IETF Documents; as well as certain restrictions, limitations and notices relating to IETF Documents. These Legal Provisions also apply to other document streams that have requested that the IETF Trust act as licensing administrator, as described in Section 8 below. Capitalized terms used in these Legal Provisions that are not otherwise defined have the meanings set forth in RFC 5378.\n\n2. Applicability of these Legal Provisions. \n\na. These Legal Provisions are effective as of December 28, 2009 (the \"Effective Date\"). \n\nb. The licenses granted by the IETF Trust pursuant to these Legal Provisions apply only with respect to (i) IETF Contributions (including Internet-Drafts) that are submitted to the IETF following the Effective Date, and (ii) IETF RFCs and other IETF Documents that are published after the Effective Date. \n\nc. IETF Contributions made, and IETF Documents published, prior to the Effective Date (\"Pre-Existing IETF Documents\") remain subject to the licensing provisions of the IETF copyright policy document in effect at the time of their contribution or publication, as applicable, including RFCs 1310, 1602, 2026, 3978 and 4748 and previous versions of these Legal Provisions. \n\nd. In most cases, rights to Pre-Existing IETF Documents that are not expressly granted under these RFCs can only be obtained by requesting such rights directly from the document authors. The IETF Trust and the Internet Society do not become involved in making such requests to document authors. \n\ne. These Legal Provisions may be amended from time to time by the IETF Trust in a manner consistent with the guidance provided by the IETF community and its own operating procedures. Any amendment to these Legal Provisions shall be posted for review at http://trustee.ietf.org/policyandprocedures.html and shall become effective on a date specified by the IETF Trust, but no earlier than thirty (30) days following its posting. Such amendment shall apply with respect to all IETF Contributions made and IETF Documents published following the effective date of such amendment. All prior versions of these Legal Provisions shall continue to be posted at http://trustee.ietf.org/policyandprocedures.html for reference with respect to IETF Contributions and IETF Documents as to which they may apply.\n\n3. Licenses to IETF Documents and IETF Contributions.a. License For Use Within the IETF Standards Process. The IETF Trust hereby grants to each participant in the IETF Standards Process, to the greatest extent that it is permitted to do so, a non-exclusive, royalty-free, worldwide right and license under all copyrights and rights of authors granted to the IETF Trust:\n\ni. to copy, publish, display and distribute IETF Contributions and IETF Documents, in whole or in part, as part of the IETF Standards Process, and\n\nii. to translate IETF Contributions and IETF Documents, in whole or part, into languages other than English as part of the IETF Standards Process, and\n\niii. unless explicitly disallowed in the notices contained in an IETF Contribution or IETF Document (as specified in Section 6.c below), to modify or prepare derivative works of such IETF Contributions or IETF Documents, in whole or in part, as part of the IETF Standards Process.\n\nb. IETF Standards Process. The term IETF Standards Process has the meaning assigned to it in RFC 5378. In addition, the IETF Trust interprets the IETF Standards Process to include the archiving of IETF Documents in perpetuity for reference in support of IETF activities and the implementation of IETF standards and specifications.\n\nc. Licenses For Use Outside the IETF Standards Process. In addition to the rights granted with respect to Code Components described in Section 4 below, the IETF Trust hereby grants to each person who wishes to exercise such rights, to the greatest extent that it is permitted to do so, a non-exclusive, royalty-free, worldwide right and license under all copyrights and rights of authors:\n\ni. to copy, publish, display and distribute IETF Contributions and IETF Documents in full and without modification,\n\nii. to translate IETF Contributions and IETF Documents into languages otherthan English, and to copy, publish, display and distribute such translated IETF Contributions and IETF Documents in full and without modification,\n\niii. to copy, publish, display and distribute unmodified portions of IETF Contributions and IETF Documents and translations thereof, provided that: (x) each such portion is clearly attributed to IETF and identifies the RFC or other IETF Document or IETF Contribution from which it is taken, (y) all IETF legends, legal notices and indications of authorship IETF Trust Legal Provisions Relating to IETF Documents Effective Date: December 28, 2009 3 contained in the original IETF RFC must also be included where any substantial portion of the text of an IETF RFC, and in any event where more than one-fifth of such text, is reproduced in a single document or series of related documents.\n\nd. Licenses that are not Granted. The following licenses are not granted pursuant to these Legal Provisions:\n\ni. any license to modify IETF Contributions or IETF Documents, or portions thereof (other than to make translations or to extract, use and modify Code Components as permitted under the licenses granted under Section 4 of these Legal Provisions) in any context outside the IETF Standards Process, or\n\nii. any license to publish, display or distribute IETF Contributions or IETF Documents, or portions thereof, without the required legends and notices described in these Legal Provisions. \n\ne. Requesting Additional Rights. Anyone who wishes to request license rights from the IETF Trust in addition to those granted under these Legal Provisions may submit such request to trustees@ietf.org. Such request will be considered by the IETF Trust, which will make a decision regarding the request in its sole discretion and inform the requester of its disposition. In addition, individual Contributors may be contacted regarding licenses to their IETF Contributions. The IETF Trust does not limit the ability of IETF Contributors to license their Contributions, so long as those licenses do not affect the rights granted to the IETF Trust under RFC 5378.\n\n4. License to Code Components. \n\na. Definition. IETF Contributions and IETF Documents often include components intended to be directly processed by a computer (\"Code Components\"). A list of common Code Components can be found at http://trustee.ietf.org/license-info/. \n\nb. Identification. Text in IETF Contributions and IETF Documents of the types identified in Section 4.a above shall constitute \"Code Components\". In addition, any text found between the markers and , or otherwise clearly labeled as a Code Component, shall be considered a \"Code Component\". \n\nc. License. In addition to the licenses granted under Section 3, unless one of the legends contained in Section 6.c.i or 6.c.ii is included in an IETF Document containing Code Components, such Code Components are also licensed to each person who wishes to receive such a license on the terms of the \"Simplified BSD License\", as described below. If a licensee elects to apply the BSD License to a Code Component, then the additional licenses and restrictions set forth in Section 3 and elsewhere in these Legal Provisions shall not apply thereto. Note that this license is specifically offered for IETF Documents and may not be available for Alternate Stream documents. See Section 8 for licensing information for the appropriate stream. \n\nBSD License: Copyright (c) IETF Trust and the persons identified as authors of the code. \nAll rights IETF Trust Legal Provisions Relating to IETF Documents \nEffective Date: December 28, 2009 4 reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: \n\u2022 Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. \n\u2022 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. \n\u2022 Neither the name of Internet Society, IETF or IETF Trust, nor the names of specific contributors, may be used to endorse or promote products derived from this software without specific prior written permission. \n\nTHIS 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.\n\nThe above BSD License is intended to be compatible with the Simplified BSD License template published at http://opensource.org/licenses/bsd-license.php . \n\nd. Attribution. Those who use Code Components under the license granted under Section 4.c above are requested to attribute each such Code Component to IETF and identify the RFC or other IETF Document or IETF Contribution from which it is taken. Such attribution may be placed in the code itself (e.g., \"This code was derived from IETF RFC *insert RFC number]. Please reproduce this note if possible.\"), or any other reasonable location. \n\ne. BSD License Text. For purposes of compliance with the redistribution clauses of the Simplified BSD License set forth in Section 4.c above, it is permissible, when using Code Components extracted from IETF Contributions and IETF Documents, either (1) to reproduce the entire text of the Simplified BSD License set forth in Section 4.c above as part of such Code Component, or (2) to include in such Code Component the legend set forth in Section 6.d below. \n\n5. License Limitations. \n\na. No Patent License. The licenses granted under these Legal Provisions shall not be \ndeemed to grant any right under any patent, patent application or similar intellectual property \nright. \n\nb. Supersedure. The terms of any license granted under these Legal Provisions may be \nsuperseded by a written agreement between the IETF Trust and the licensee that specifically \nreferences and supersedes the relevant provisions of these Legal Provisions, except that (i) the \nIETF Trust shall in no event be authorized to grant rights with respect to any Contribution in \nexcess of those which it has been granted by the Contributor, and (ii) the rights granted shall not \nbe less than those otherwise granted under these Legal Provisions. \n\nc. Pre-5378 Material. In some cases, IETF Contributions or IETF Documents may \ncontain material from IETF Contributions or IETF Documents published or made publicly \navailable before November 10, 2008 as to which the persons controlling the copyright in such \nmaterial have not granted rights to the IETF Trust under the terms of RFC 5378 (\"Pre-5378 \nMaterial\"). If a Contributor includes the legend contained in Section 6.c.iii of these Legal \nProvisions on such IETF Contributions or IETF Documents containing Pre-5378 Materials, the \nIETF Trust agrees that it shall not grant any third party the right to use such Pre-5378 Material \noutside the IETF Standards Process unless and until it has obtained sufficient rights to do so from \nthe persons controlling the copyright in such Pre-5378 Material. Where practical, Contributors \nare encouraged to identify which portions of such IETF Contributions and IETF Documents \ncontain Pre-5378 Material, including the source (by RFC number or otherwise) of the Pre-5378 \nMaterial. \n\n\n6. Text To Be Included in IETF Documents. \nThe following text must be included in each IETF Document as specified below. \nThe IESG shall specify the manner and location of such text for Internet-Drafts. \nThe RFC Editor shall specify the manner and location of such text for RFCs. \nThe copyright notice specified in 6.b below shall be placed so as to give reasonable \nnotice of the claim of copyright. \n\na. Submission Compliance for Internet-Drafts. In each Internet-Draft: \nThis Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79. \n\nb. Copyright and License Notice. In each Document (including RFCs and InternetDrafts): \n\ni. Copyright and License Notice. \nCopyright (c) IETF Trust and the persons identified as the document authors. All \nrights reserved. \nThis document is subject to BCP 78 and the IETF Trust\u2019s Legal Provisions Relating to IETF \nDocuments (http://trustee.ietf.org/license-info) in effect on the date of publication of this \ndocument. Please review these documents carefully, as they describe your rights and restrictions \nwith respect to this document. Code Components extracted from this document must include \nSimplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are \nprovided without warranty as described in the Simplified BSD License. \n\nii. Alternate Stream Documents Copyright and License Notice. In all Alternate \nStream Documents (including RFCs and Internet-Drafts): \nCopyright (c) IETF Trust and the persons identified as the document authors. All \nrights reserved. \nThis document is subject to BCP 78 and the IETF Trust\u2019s Legal Provisions Relating to IETF \nDocuments (http://trustee.ietf.org/license-info) in effect on the date of publication of this \ndocument. Please review these documents carefully, as they describe your rights and restrictions \nwith respect to this document.\n\nc. Derivative Works and Publication Limitations. If a Contributor chooses to limit \nthe right to make modifications and derivative works of an IETF Contribution, then one of the \nnotices in clause (i) or (ii) below must be included. Note that an IETF Contribution with such a \nnotice cannot become a Standards Track document or, in most cases, a working group document. \nIf an IETF Contribution contains pre-5378 Material as to which the IETF Trust has not been \ngranted, or may not have been granted, the necessary permissions to allow modification of such \npre-5378 Material outside the IETF Standards Process, then the notice in clause (iii) may be \nincluded by the Contributor of such IETF Contribution to limit the right to make modifications to \nsuch pre-5378 Material outside the IETF Standards Process.\n\ni. If the Contributor does not wish to allow modifications, but does wish to allow publication as an RFC: \n\nThis document may not be modified, and derivative works of it may not be created, except to \nformat it for publication as an RFC or to translate it into languages other than English.\n\nii. If the Contributor does not wish to allow modifications nor to allow publication as an RFC:\n\nThis document may not be modified, and derivative works of it may not be created, and it may not \nbe published except as an Internet-Draft. \n\niii. If an IETF Contribution contains pre-5378 Material as to which the IETF Trust has not been granted, or may not have been granted, the necessary permissions to allow modification of such pre-5378 Material outside the IETF Standards Process:\n\nThis document may contain material from IETF Documents or IETF Contributions published or \nmade publicly available before November 10, 2008. The person(s) controlling the copyright in \nsome of this material may not have granted the IETF Trust the right to allow modifications of such \nmaterial outside the IETF Standards Process. Without obtaining an adequate license from the \nperson(s) controlling the copyright in such materials, this document may not be modified outside \nthe IETF Standards Process, and derivative works of it may not be created outside the IETF \nStandards Process, except to format it for publication as an RFC or to translate it into languages \nother than English.\n\n d. BSD License Notification. In lieu of the complete text of the Simplified BSD \nLicense set forth in Section 4.c, a person who elects to license a Code Component under the \nSimplified BSD License as described in Section 4.c may use the following notification in the \nprogram or other file that includes the Code Component:\n\nCopyright (c) IETF Trust and the persons identified as authors of the code. \nAll rights reserved. \n\nRedistribution and use in source and binary forms, with or without modification, is permitted pursuant to, \nand subject to the license terms contained in, the Simplified BSD License set forth in Section 4.c of the \nIETF Trust\u2019s Legal Provisions Relating to IETF Documents (http://trustee.ietf.org/license-info).\n\n\n7. Terms Applicable to All IETF Documents. \nThe following legal terms apply to all IETF Documents:\n\na. ALL DOCUMENTS AND THE INFORMATION CONTAINED THEREIN \nARE PROVIDED ON AN \"AS IS\" BASIS AND THE CONTRIBUTOR, THE \nORGANIZATION HE/SHE REPRESENTS OR IS SPONSORED BY (IF ANY), THE \nINTERNET SOCIETY, THE IETF TRUST, THE INTERNET ENGINEERING TASK FORCE \nAND ANY APPLICABLE MANAGERS OF ALTERNATE STREAM DOCUMENTS, AS \nDEFINED IN SECTION 8 BELOW, DISCLAIM ALL WARRANTIES, EXPRESS OR \nIMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF \nTHE INFORMATION THEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED \nWARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. \n\nb. The IETF Trust takes no position regarding the validity or scope of any \nIntellectual Property Rights or other rights that might be claimed to pertain to the implementation \nor use of the technology described in any IETF Document or the extent to which any license \nunder such rights might or might not be available; nor does it represent that it has made any \nindependent effort to identify any such rights. \n\nc. Copies of Intellectual Property disclosures made to the IETF Secretariat and \nany assurances of licenses to be made available, or the result of an attempt made to obtain a \ngeneral license or permission for the use of such proprietary rights by implementers or users of \nthis specification can be obtained from the IETF on-line IPR repository at \nhttp://www.ietf.org/ipr. \n\nd. The IETF invites any interested party to bring to its attention any copyrights, \npatents or patent applications, or other proprietary rights that may cover technology that may be \nrequired to implement any standard or specification contained in an IETF Document. Please \naddress the information to the IETF at ietf-ipr@ietf.org. \n\ne. The definitive version of an IETF Document is that published by, or under the \nauspices of, the IETF. Versions of IETF Documents that are published by third parties, \nincluding those that are translated into other languages, should not be considered to be definitive \nversions of IETF Documents. The definitive version of these Legal Provisions is that published \nby, or under the auspices of, the IETF. Versions of these Legal Provisions that are published by \nthird parties, including those that are translated into other languages, should not be considered to \nbe definitive versions of these Legal Provisions. \n\nf. For the avoidance of doubt, each Contributor licenses each Contribution that \nhe or she makes to the IETF Trust pursuant to the provisions of RFC 5378. No language to the \ncontrary, or terms, conditions or rights that differ from or are inconsistent with the rights and \nlicenses granted under RFC 5378, shall have any effect and shall be null and void, whether \npublished or posted by such Contributor, or included with or in such Contribution. \n\n8. Application to non-IETF Stream Documents \n\na. General. These Legal Provisions have been developed by the IETF Trust for the \nbenefit and use of the IETF community in accordance with the guidance provided in RFC 5377. \nAs such, these Legal Provisions apply to all IETF Contributions and IETF Documents that are in \nthe \"IETF Document Stream\" as defined in Section 5.1.1 of RFC 4844 (i.e., those that are \ncontributed, developed, edited and published as part of the IETF Standards Process). As \nindicated in Section 4 of RFC 5378, the IETF rules regarding copyrights (which are embodied in \nthese Legal Provisions) do not by their terms cover documents or materials contributed or \npublished outside of the IETF Document Stream, even if they are referred to as Internet-Drafts or \nRFCs and/or published by the RFC Editor. The IAB Document Stream, the IRTF Document \nStream and the Independent Submission Stream, each as defined in Section 5.1 of RFC 4844 are \nreferred to collectively herein as \"Alternate Streams\". \n\nb. Adoption by Alternate Streams. The legal rules that apply to documents in \nAlternate Streams are established by the managers of those Alternate Streams as defined in RFC \n4844. (i.e., the Internet Architecture Board (IAB), Internet Research Steering Group (IRSG) and \nIndependent Submission Editor). These managers may elect, through their own internal \nprocesses, to cause these Legal Provisions to be applied to documents contributed to them for \ndevelopment, editing and publication in their respective Alternate Streams. If an Alternate \nStream manager elects to adopt these Legal Provisions and to utilize the IETF Trust as the \nlicensing administrator for such Alternate Stream, the IETF Trust will update these Legal \nProvisions to reflect the specific manner in which it will so act, and shall do so consistently with \nthe stated wishes of the Alternate Stream manager to the extent consistent with the IETF Trust\u2019s \nlegal obligations and the instructions of the IETF community embodied in RFC 5377 and \nelsewhere. \n\nc. Alternate Stream License. \n i. Unless otherwise specified below, for each Alternate Stream for which the \nIETF Trust acts as licensing administrator, from the date on which these Legal Provisions are \neffective with respect to such Alternate Stream (as specified below) the IETF Trust shall accept \nlicenses of copyrights in documents granted to the IETF Trust by contributors to Alternate \nStream as though granted pursuant to RFC 5378, and shall grant licenses to others on the terms \nof these Legal Provisions. \n ii. Each occurrence of the term \"IETF Contribution\" and \"IETF Document\" \nin these Legal Provisions shall be read to mean a Contribution or document in such Alternate \nStream, as the case may be. The disclaimer in Section 7.a of these Legal Provisions shall apply \nto the manager of such Alternate Stream as defined in RFC 4844 as though such manager were \nexpressly listed in Section 7.a. \n iii. The license grant in Section 3.a of these Legal Provisions with respect to \nAlternate Stream documents shall not be limited to the IETF Standards Process, and all \nreferences to the IETF Standards Process in Section 3.a shall be omitted with respect to licenses \nof Alternate Stream documents, and correspondingly Section 3.c hereof shall not apply with \nrespect to Alternate Stream documents. \n iv. Alternate Stream contributions made, and Alternate Stream documents \npublished, prior to the application of these Legal Provisions to such Alternate Stream remain\nsubject to the licensing provisions in effect for such Alternate Stream at the time of their \ncontribution or publication, as applicable. \n\nd. Responsibility of Alternate Stream Contributors. Sections 5.c and 6.c.iii of these \nLegal Provisions shall not apply to Alternate Stream documents, thus contributors of \nContribution to Alternate Streams must assure themselves that they comply with the \nrepresentations and warranties required under RFC 5378, including under Section 5.6 of RFC \n5378, with respect to the entirety of their Alternate Stream Contributions prior to making the \ncontribution. \n\ne. IAB Document Stream. Pursuant to Section 11 of RFC 5378, the IAB requested, \nas of April 4, 2008, that the IETF Trust act as licensing administrator for the IAB Document \nStream and that these Legal Provisions be applied to documents submitted and published in the \nIAB Document Stream following the Effective Date of RFC 5378. Section 4 of these Legal \nProvisions shall not apply to documents in the IAB Document Stream, and all references to \nSection 4 hereof shall be disregarded with respect to documents in the IAB Document Stream \npursuant to RFC 5745 published on December 21, 2009. \n\nf. Independent Submission Stream. Pursuant to RFC 5744 published on December \n17, 2009, the manager of the Independent Submission Stream has requested that the IETF Trust \nact as licensing administrator for the Independent Submission Stream and that these Legal \nProvisions be applied to documents submitted and published in the Independent Submission \nStream following December 28, 2009. Section 4 of these Legal Provisions shall not apply to \ndocuments in the Independent Submission Stream, and all references to Section 4 hereof shall be \ndisregarded with respect to documents in the Independent Submission Stream. \n\ng. IRTF Document Stream. Pursuant to RFC 5743 published on December 24, \n2009, the manager of the IRTF Document Stream has requested that the IETF Trust act as \nlicensing administrator for the IRTF Document Stream and that these Legal Provisions be \napplied to documents submitted and published in the IRTF Document Stream following \nDecember 28, 2009. Section 4 of these Legal Provisions shall not apply to documents in the \nIRTF Document Stream, and all references to Section 4 hereof shall be disregarded with respect \nto documents in the IRTF Document Stream.", + "json": "ietf-trust.json", + "yaml": "ietf-trust.yml", + "html": "ietf-trust.html", + "license": "ietf-trust.LICENSE" + }, + { + "license_key": "ijg", + "category": "Permissive", + "spdx_license_key": "IJG", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LEGAL ISSUES\n============\n\nIn plain English:\n\n1. We don't promise that this software works. (But if you find any bugs,\n please let us know!)\n2. You can use this software for whatever you want. You don't have to pay us.\n3. You may not pretend that you wrote this software. If you use it in a\n program, you must acknowledge somewhere in your documentation that\n you've used the IJG code.\n\nIn legalese:\n\nThe authors make NO WARRANTY or representation, either express or implied,\nwith respect to this software, its quality, accuracy, merchantability, or\nfitness for a particular purpose. This software is provided \"AS IS\", and you,\nits user, assume the entire risk as to its quality and accuracy.\n\nThis software is copyright (C) 1991-1998, Thomas G. Lane.\nAll Rights Reserved except as specified below.\n\nPermission is hereby granted to use, copy, modify, and distribute this\nsoftware (or portions thereof) for any purpose, without fee, subject to these\nconditions:\n(1) If any part of the source code for this software is distributed, then this\nREADME file must be included, with this copyright and no-warranty notice\nunaltered; and any additions, deletions, or changes to the original files\nmust be clearly indicated in accompanying documentation.\n(2) If only executable code is distributed, then the accompanying\ndocumentation must state that \"this software is based in part on the work of\nthe Independent JPEG Group\".\n(3) Permission for use of this software is granted only if the user accepts\nfull responsibility for any undesirable consequences; the authors accept\nNO LIABILITY for damages of any kind.\n\nThese conditions apply to any software derived from or based on the IJG code,\nnot just to the unmodified library. If you use our work, you ought to\nacknowledge us.\n\nPermission is NOT granted for the use of any IJG author's name or company name\nin advertising or publicity relating to this software or products derived from\nit. This software may be referred to only as \"the Independent JPEG Group's\nsoftware\".\n\nWe specifically permit and encourage the use of this software as the basis of\ncommercial products, provided that all warranty or liability claims are\nassumed by the product vendor.\n\n\nansi2knr.c is included in this distribution by permission of L. Peter Deutsch,\nsole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA.\nansi2knr.c is NOT covered by the above copyright and conditions, but instead\nby the usual distribution terms of the Free Software Foundation; principally,\nthat you must include source code if you redistribute it. (See the file\nansi2knr.c for full details.) However, since ansi2knr.c is not needed as part\nof any program generated from the IJG code, this does not limit you more than\nthe foregoing paragraphs do.\n\nThe Unix configuration script \"configure\" was produced with GNU Autoconf.\nIt is copyright by the Free Software Foundation but is freely distributable.\nThe same holds for its supporting scripts (config.guess, config.sub,\nltconfig, ltmain.sh). Another support script, install-sh, is copyright\nby M.I.T. but is also freely distributable.\n\nIt appears that the arithmetic coding option of the JPEG spec is covered by\npatents owned by IBM, AT&T, and Mitsubishi. Hence arithmetic coding cannot\nlegally be used without obtaining one or more licenses. For this reason,\nsupport for arithmetic coding has been removed from the free JPEG software.\n(Since arithmetic coding provides only a marginal gain over the unpatented\nHuffman mode, it is unlikely that very many implementations will support it.)\nSo far as we are aware, there are no patent restrictions on the remaining\ncode.\n\nThe IJG distribution formerly included code to read and write GIF files.\nTo avoid entanglement with the Unisys LZW patent, GIF reading support has\nbeen removed altogether, and the GIF writer has been simplified to produce\n\"uncompressed GIFs\". This technique does not use the LZW algorithm; the\nresulting GIF files are larger than usual, but are readable by all standard\nGIF decoders.\n\nWe are required to state that\n \"The Graphics Interchange Format(c) is the Copyright property of\n CompuServe Incorporated. GIF(sm) is a Service Mark property of\n CompuServe Incorporated.\"", + "json": "ijg.json", + "yaml": "ijg.yml", + "html": "ijg.html", + "license": "ijg.LICENSE" + }, + { + "license_key": "ilmid", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ilmid", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify and distribute this\nsoftware and its documentation is hereby granted,\nprovided that both the copyright notice and this\npermission notice appear in all copies of the software,\nderivative works or modified versions, and any portions\nthereof, that both notices appear in supporting\ndocumentation, and that the use of this software is\nacknowledged in any publications resulting from using\nthe software.\n\nI ALLOW FREE USE OF THIS SOFTWARE IN ITS \"AS IS\"\nCONDITION AND DISCLAIM ANY LIABILITY OF ANY KIND FOR\nANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS\nSOFTWARE.", + "json": "ilmid.json", + "yaml": "ilmid.yml", + "html": "ilmid.html", + "license": "ilmid.LICENSE" + }, + { + "license_key": "imagemagick", + "category": "Permissive", + "spdx_license_key": "ImageMagick", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ImageMagick License\n\nThe legally binding and authoritative terms and conditions for use, reproduction, and distribution of ImageMagick follow: \n\nCopyright 1999-2009 ImageMagick Studio LLC, a non-profit organization dedicated to making software imaging solutions freely available.\n\n1. 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 limited to compiled object code, generated documentation, conversions to other media types. Work shall mean the work of authorship, whether in Source 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 intentionally sent to the Licensor by its copyright holder 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.\n\n2. 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.\n\n3. 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 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.\n\n4. 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:\n\n1. You must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n2. You must cause any modified files to carry prominent notices stating that You changed the files; and\n\n3. 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\n\n4. 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,\n\nprovided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. 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.\n\n6. 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.\n\n7. 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.\n\n8. 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.\n\n9. 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.\n\nAPPENDIX: How to apply the ImageMagick License to your work To apply the ImageMagick 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.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the ImageMagick License (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy\nof the License at http://www.imagemagick.org/www/license.html\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\nWARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\nLicense for the specific language governing permissions and limitations\nunder the License.", + "json": "imagemagick.json", + "yaml": "imagemagick.yml", + "html": "imagemagick.html", + "license": "imagemagick.LICENSE" + }, + { + "license_key": "imagen", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-imagen", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This code may be duplicated in whole or in part provided that\n[1] there is no commercial gain involved in the duplication, and\n[2] that this copyright notice is preserved on all copies. \nAny other duplication requires written notice of the author.", + "json": "imagen.json", + "yaml": "imagen.yml", + "html": "imagen.html", + "license": "imagen.LICENSE" + }, + { + "license_key": "imlib2", + "category": "Copyleft Limited", + "spdx_license_key": "Imlib2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Imlib2 License \n\nPermission is hereby granted, free of charge, to any person obtaining a copy \nof this software and associated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including without limitation the \nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or \nsell copies of the Software, and to permit persons to whom the Software is \nfurnished to do so, subject to the following conditions: \n\nThe above copyright notice and this permission notice shall be included in \nall copies of the Software and its Copyright notices. In addition publicly \ndocumented acknowledgment must be given that this software has been used if no \nsource code of this software is made available publicly. Making the source \navailable publicly means including the source for this software with the \ndistribution, or a method to get this software via some reasonable mechanism \n(electronic transfer via a network or media) as well as making an offer to \nsupply the source on request. This Copyright notice serves as an offer to \nsupply the source on on request as well. Instead of this, supplying \nacknowledgments of use of this software in either Copyright notices, Manuals, \nPublicity and Marketing documents or any documentation provided with any \nproduct containing this software. This License does not apply to any software \nthat links to the libraries provided by this software (statically or \ndynamically), but only to the software provided. \n\nPlease see the COPYING-PLAIN for a plain-english explanation of this notice \nand its intent. \n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR \nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, \nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL \nTHE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER \nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN \nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "imlib2.json", + "yaml": "imlib2.yml", + "html": "imlib2.html", + "license": "imlib2.LICENSE" + }, + { + "license_key": "independent-module-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-indie-module-linking-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-independent-module-linking-exception" + ], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, the copyright holders of this library give you\npermission to link this library with independent modules to produce an\nexecutable, regardless of the license terms of these independent modules, and to\ncopy and distribute the resulting executable under terms of your choice,\nprovided that you also meet, for each linked independent module, the terms and\nconditions of the license of that module. An independent module is a module\nwhich is neither derived from nor based on this library. If you modify this\nlibrary, you may extend this exception to your version of the library, but you\nare not obligated to do so. If you do not wish to do so, delete this exception\nstatement from your version.", + "json": "independent-module-linking-exception.json", + "yaml": "independent-module-linking-exception.yml", + "html": "independent-module-linking-exception.html", + "license": "independent-module-linking-exception.LICENSE" + }, + { + "license_key": "indiana-extreme", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-indiana-extreme", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Indiana University Extreme! Lab Software License Version 1.1.1\n\nCopyright (c) 2002 Extreme! Lab, Indiana University. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. 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.\n\n3. The end-user documentation included with the redistribution, if any, must include the following acknowledgment:\n\n\"This product includes software developed by the Indiana University Extreme! Lab (http://www.extreme.indiana.edu/).\"\n\nAlternately, this acknowledgment may appear in the software itself, if and wherever such third-party acknowledgments normally appear.\n\n4. The names \"Indiana University\" and \"Indiana University Extreme! Lab\" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact (http://www.extreme.indiana.edu/).\n\n5. Products derived from this software may not use \"Indiana University\" name nor may \"Indiana University\" appear in their name, without prior written permission of the Indiana University.\n\nTHIS SOFTWARE IS PROVIDED \"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 AUTHORS, COPYRIGHT HOLDERS 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.", + "json": "indiana-extreme.json", + "yaml": "indiana-extreme.yml", + "html": "indiana-extreme.html", + "license": "indiana-extreme.LICENSE" + }, + { + "license_key": "indiana-extreme-1.2", + "category": "Permissive", + "spdx_license_key": "xpp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Indiana University Extreme! Lab Software License, Version 1.2\n\nCopyright (C) 2004 The Trustees of Indiana University.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n1) All redistributions of source code must retain the above\n copyright notice, the list of authors in the original source\n code, this list of conditions and the disclaimer listed in this\n license;\n\n2) All redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the disclaimer\n listed in this license in the documentation and/or other\n materials provided with the distribution;\n\n3) Any documentation included with all redistributions must include\n the following acknowledgement:\n\n \"This product includes software developed by the Indiana\n University Extreme! Lab. For further information please visit\n http://www.extreme.indiana.edu/\"\n\n Alternatively, this acknowledgment may appear in the software\n itself, and wherever such third-party acknowledgments normally\n appear.\n\n4) The name \"Indiana University\" or \"Indiana University\n Extreme! Lab\" shall not be used to endorse or promote\n products derived from this software without prior written\n permission from Indiana University. For written permission,\n please contact http://www.extreme.indiana.edu/.\n\n5) Products derived from this software may not use \"Indiana\n University\" name nor may \"Indiana University\" appear in their name,\n without prior written permission of the Indiana University.\n\nIndiana University provides no reassurances that the source code\nprovided does not infringe the patent or any other intellectual\nproperty rights of any other entity. Indiana University disclaims any\nliability to any recipient for claims brought by any other entity\nbased on infringement of intellectual property rights or otherwise.\n\nLICENSEE UNDERSTANDS THAT SOFTWARE IS PROVIDED \"AS IS\" FOR WHICH\nNO WARRANTIES AS TO CAPABILITIES OR ACCURACY ARE MADE. INDIANA\nUNIVERSITY GIVES NO WARRANTIES AND MAKES NO REPRESENTATION THAT\nSOFTWARE IS FREE OF INFRINGEMENT OF THIRD PARTY PATENT, COPYRIGHT, OR\nOTHER PROPRIETARY RIGHTS. INDIANA UNIVERSITY MAKES NO WARRANTIES THAT\nSOFTWARE IS FREE FROM \"BUGS\", \"VIRUSES\", \"TROJAN HORSES\", \"TRAP\nDOORS\", \"WORMS\", OR OTHER HARMFUL CODE. LICENSEE ASSUMES THE ENTIRE\nRISK AS TO THE PERFORMANCE OF SOFTWARE AND/OR ASSOCIATED MATERIALS,\nAND TO THE PERFORMANCE AND VALIDITY OF INFORMATION GENERATED USING\nSOFTWARE.", + "json": "indiana-extreme-1.2.json", + "yaml": "indiana-extreme-1.2.yml", + "html": "indiana-extreme-1.2.html", + "license": "indiana-extreme-1.2.LICENSE" + }, + { + "license_key": "infineon-free", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-infineon-free", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " No Warranty\nBecause the program is licensed free of charge, there is no warranty for\nthe program, to the extent permitted by applicable law. Except when\notherwise stated in writing the copyright holders and/or other parties\nprovide the program \"as is\" without warranty of any kind, either\nexpressed or implied, including, but not limited to, the implied\nwarranties of merchantability and fitness for a particular purpose. The\nentire risk as to the quality and performance of the program is with\nyou. should the program prove defective, you assume the cost of all\nnecessary servicing, repair or correction.\n\nIn no event unless required by applicable law or agreed to in writing\nwill any copyright holder, or any other party who may modify and/or\nredistribute the program as permitted above, be liable to you for\ndamages, including any general, special, incidental or consequential\ndamages arising out of the use or inability to use the program\n(including but not limited to loss of data or data being rendered\ninaccurate or losses sustained by you or third parties or a failure of\nthe program to operate with any other programs), even if such holder or\nother party has been advised of the possibility of such damages.", + "json": "infineon-free.json", + "yaml": "infineon-free.yml", + "html": "infineon-free.html", + "license": "infineon-free.LICENSE" + }, + { + "license_key": "info-zip", + "category": "Permissive", + "spdx_license_key": "Info-ZIP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Info-Zip License\n\nThis is version 1999-Oct-05 of the Info-ZIP copyright and license. The definitive version of this document should be available at ftp://ftp.cdrom.com/pub/infozip/license.html indefinitely.\n\nCopyright (c) 1990-1999 Info-ZIP. All rights reserved.\n\nFor the purposes of this copyright and license, \"Info-ZIP\" is defined as the following set of individuals:\n\nMark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois, Jean-loup Gailly, Hunter Goatley, Ian Gorman, Chris Herborth, Dirk Haase, Greg Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz, David Kirschbaum, Johnny Lee, Onno van der Linden, Igor Mandrichenko, Steve P. Miller, Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs, Kai Uwe Rommel, Steve Salisbury, Dave Smith, Christian Spieler, Antoine Verheijen, Paul von Behren, Rich Wales, Mike White\n\nThis software is provided \"as is,\" without warranty of any kind, express or implied. In no event shall Info-ZIP or its contributors be held liable for any direct, indirect, incidental, special or consequential damages arising out of the use of or inability to use this software.\n\nPermission 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:\n\n1. Redistributions of source code must retain the above copyright notice, definition, disclaimer, and this list of conditions.\n\n2. Redistributions in binary form must reproduce the above copyright notice, definition, disclaimer, and this list of conditions in documentation and/or other materials provided with the distribution.\n\n3. Altered versions--including, but not limited to, ports to new operating systems, existing ports with new graphical interfaces, and dynamic, shared, or static library versions--must be plainly marked as such and must not be misrepresented as being the original source. Such altered versions also must not be misrepresented as being Info-ZIP releases--including, but not limited to, labeling of the altered versions with the names \"Info-ZIP\" (or any variation thereof, including, but not limited to, different capitalizations), \"Pocket UnZip,\" \"WiZ\" or \"MacZip\" without the explicit permission of Info-ZIP. Such altered versions are further prohibited from misrepresentative use of theZip-Bugs or Info-ZIP e-mail addresses or of the Info-ZIP URL(s).\n\n4. Info-ZIP retains the right to use the names \"Info-ZIP,\" \"Zip,\" \"UnZip,\" \"WiZ,\" \"Pocket UnZip,\" \"Pocket Zip,\" and \"MacZip\" for its own source and binary releases.", + "json": "info-zip.json", + "yaml": "info-zip.yml", + "html": "info-zip.html", + "license": "info-zip.LICENSE" + }, + { + "license_key": "info-zip-1997-10", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-1997-10", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is the Info-ZIP file COPYING (for UnZip), last updated 5 Oct 97.\n\n\nThere are currently six explicit copyrights on portions of UnZip\ncode (at least, of which Info-ZIP is aware): the original Sam Smith\ncopyright on unzip 2.0, upon which Info-ZIP's UnZip 3.0 was based;\nIgor Mandrichenko's copyright on his routines in vms.c; Greg Roelofs'\ncopyright on zipinfo.c and the new version of unshrink.c; Mike White's\ncopyright on the Windows DLL code (windll/*); Steve P. Miller's\ncopyright on the Pocket UnZip GUI (wince/*); and Norbert Pueschel's\ncopyright on the Amiga time.lib code. In addition, Mark Adler has\nplaced inflate.h, inflate.c, explode.c and funzip.c into the public\ndomain; i.e., these files may be used without any restrictions beyond\nthose of simple courtesy (credit where it's due). All of these are\ndiscussed immediately below. The remaining code is covered by an im-\nplicit copyright under US law. Frequently Asked Questions regarding\n(re)distribution of Zip and UnZip are near the end of this file.\n\nThere are no known patents on any of the code in UnZip. Unisys\nclaims a patent on LZW encoding and on LZW decoding _in an apparatus\nthat performs LZW encoding_, but the patent appears to exempt a stand-\nalone decoder (as in UnZip's unshrink.c). Unisys has publicly claimed\notherwise, but the issue has never been tested in court. Since this\npoint is unclear, unshrinking is not enabled by default. It is the\nresponsibility of the user to make his or her peace with Unisys and\nits licensing requirements. (unshrink.c may be removed from future\nreleases altogether.)\n\n\nThe original unzip source code has been extensively modified and\nalmost entirely rewritten (changes include random zipfile access\nrather than sequential; replacement of unimplode() with explode();\nreplacement of old unshrink() with new (unrelated) unshrink(); re-\nplacement of output routines; addition of inflate(), wildcards,\nfilename-mapping, text translation, ...; etc.). As far as we can\ntell, the only remaining code that is substantially similar to\nMr. Smith's is that in the file unreduce.c, which now by default\nis NOT compiled. The following copyright applies to unreduce.c:\n\n * Copyright 1989 Samuel H. Smith; All rights reserved\n *\n * Do not distribute modified versions without my permission.\n * Do not remove or alter this notice or any other copyright notice.\n * If you use this in your own program you must distribute source code.\n * Do not use any of this in a commercial product.\n\nRegarding the first stipulation, Mr. Smith was tracked down in southern\nCalifornia some years back [Samuel H. Smith, The Tool Shop; as of mid-\nMay 1994, (213) 851-9969 (voice), (213) 887-2127(?) (subscription BBS),\n71150.2731@compuserve.com]:\n\n\"He says that he thought that whoever contacted him understood that\n he has no objection to the Info-ZIP group's inclusion of his code.\n His primary concern is that it remain freely distributable, he said.\"\n\nDespite the fact that our \"normal\" code has been entirely rewritten\nand by default no longer contains any of Mr. Smith's code, Info-ZIP\nremains indebted and grateful to him. We hope he finds our contribu-\ntions as useful as we have his.\n\nNote that the third and fourth stipulations still apply to any com-\npany that wishes to incorporate the unreduce code into its products;\nif you wish to do so, you must contact Mr. Smith directly regarding\nlicensing.\n\n\nThe following copyright applies to most of the VMS code in vms.c,\ndistributed with UnZip version 4.2 and later:\n\n * Copyright (c) 1992 Igor Mandrichenko.\n * Permission is granted to any individual or institution to use,\n * copy, or redistribute this software so long as all of the orig-\n * inal files are included unmodified, that it is not sold for\n * profit, and that this copyright notice is retained.\n\n\nThe following copyright applies to the new version of unshrink.c,\ndistributed with UnZip version 5.2 and later:\n\n * Copyright (c) 1994 Greg Roelofs.\n * Permission is granted to any individual/institution/corporate\n * entity to use, copy, redistribute or modify this software for\n * any purpose whatsoever, subject to the conditions noted in the\n * Frequently Asked Questions section below, plus one additional\n * condition: namely, that my name not be removed from the source\n * code. (Other names may, of course, be added as modifications\n * are made.) Corporate legal staff (like at IBM :-) ) who have\n * problems understanding this can contact me through Zip-Bugs...\n\n\nThe following copyright applies to the Windows DLL code (windll/*),\ndistributed with UnZip version 5.2 and later:\n\n * Copyright (c) 1996 Mike White.\n * Permission is granted to any individual or institution to use,\n * copy, or redistribute this software so long as all of the original\n * files are included, that it is not sold for profit, and that this\n * copyright notice is retained.\n\n\nThe following copyright applies to the Windows CE GUI port, ``Pocket\nUnZip,'' distributed with UnZip version 5.3 and later:\n\n * All the source files for Pocket UnZip, except for components\n * written by the Info-ZIP group, are copyrighted 1997 by Steve P.\n * Miller. The product \"Pocket UnZip\" itself is property of the\n * author and cannot be altered in any way without written consent\n * from Steve P. Miller.\n\n\nThe following copyright applies to the Amiga time code (amiga/time_lib.c),\ndistributed with UnZip version 5.32 and later:\n\n * This source is copyrighted by Norbert Pueschel,\n * .\n * From 'clockdaemon.readme' (available from Aminet, including\n * ftp://ftp.wustl.edu/pub/aminet/util/time/clockdaemon.lha):\n * \"The original SAS/C functions gmtime, localtime, mktime and time\n * do not work correctly. The supplied link library time.lib contains\n * replacement functions for them.\"\n * Permission is granted to the Info-ZIP group to redistribute the\n * time.lib source. The use of time.lib functions in own, noncommerical\n * programs is permitted. It is only required to add the timezone.doc\n * to such a distribution. Using the time.lib library in commerical\n * software (including shareware) is only permitted after prior\n * consultation of the author.\n\n\nThe remaining code was written by many people associated with the\nInfo-ZIP group, with large contributions from (but not limited to):\nGreg Roelofs (overall program logic, ZipInfo, unshrink, filename\nmapping/portability, etc.), Mark Adler (inflate, explode, funzip),\nKai Uwe Rommel (OS/2), John Bush and Paul Kienitz (Amiga), Antoine\nVerheijen (Macintosh), Hunter Goatley (more VMS), Mike White (Windows\nDLLs), Christian Spieler (overall logic, optimization, VMS, etc.) and\nothers. See the file CONTRIBS in the source distribution for a much\nmore complete list of contributors. As noted above, Mark Adler's\ninflate.[ch], explode.c and funzip.c are in the public domain, and\neverything that isn't otherwise accounted for is implicitly copy-\nrighted by Info-ZIP. In other words, use it with our blessings, but\nit's still our code. Thank you!\n\n-----------------------------------------------------------------------\n\nFrequently Asked Questions about distributing Zip and UnZip:\n\n\nQ. Can I distribute Zip and UnZip sources and/or executables?\n\nA. You may redistribute the latest official distributions without\n any modification, and without even asking us for permission.\n (Note that an \"executable distribution\" includes documentation,\n even if it's in a separate zipfile; plain executables do NOT\n count.) You can charge for the cost of the media (CDROM, disk-\n ettes, etc.), the compilation (e.g., of a software archive),\n and a small copying fee. Distributed archives should follow\n the naming conventions used in the `WHERE' file. If you want\n to distribute modified versions, please contact us at\n Zip-Bugs@lists.wku.edu first. You must not distribute beta\n versions without explicit permission to do so.\n\n\nQ. Can I use the executables (or DLLs) of Zip and UnZip to distribute\n my software?\n\nA. Yes, so long as it is clear that Zip and UnZip are not being\n sold, that the source code is freely available, and that there\n are no extra or hidden charges resulting from its use by or in-\n clusion with the commercial product. Here is an example of a\n suitable notice:\n\n NOTE: is packaged on this CD using Info-ZIP's\n compression utility. The installation program uses UnZip\n to read zip files from the CD. Info-ZIP's software (Zip,\n UnZip and related utilities) is free and can be obtained\n as source code or executables from Internet/WWW sites,\n including http://www.cdrom.com/pub/infozip/ .\n\n If the distribution is being done with UnZipSFX instead of a DLL\n or stand-alone copy of UnZip (i.e., as one or more self-extracting\n archives), no notice is required as long as the normal UnZipSFX\n banner has not been removed.\n\n\nQ. Can I use the source code of Zip and UnZip in my commercial\n application?\n\nA. Yes, so long as you include in your product an acknowledgment; a\n pointer to the original, free compression sources; and a statement\n making it clear that there are no extra or hidden charges resulting\n from the use of our compression code in your product (see below for\n an example). The acknowledgment should appear in at least one piece \n of human-readable documentation (e.g., a README file or man page),\n although additionally putting it in the executable(s) is OK, too.\n In other words, you are allowed to sell only your own work, not ours,\n and we'd like a little credit. (Note the additional restrictions\n above on the code in unreduce.c, unshrink.c, vms.c, time_lib.c, and\n everything in the wince and windll subdirectories.) Contact us at\n Zip-Bugs@lists.wku.edu if you have special requirements. We also\n like to hear when our code is being used, but we don't require that.\n\n incorporates compression code from the Info-ZIP group.\n There are no extra charges or costs due to the use of this code,\n and the original compression sources are freely available from\n http://www.cdrom.com/pub/infozip/ or ftp://ftp.cdrom.com/pub/infozip/\n on the Internet.\n\n If you only need compression capability, not full zipfile support,\n you might want to look at zlib instead; it has fewer restrictions\n on commercial use. See http://www.cdrom.com/pub/infozip/zlib/ .", + "json": "info-zip-1997-10.json", + "yaml": "info-zip-1997-10.yml", + "html": "info-zip-1997-10.html", + "license": "info-zip-1997-10.LICENSE" + }, + { + "license_key": "info-zip-2001-01", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2001-01", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is version 2001-Jan-27 of the Info-ZIP copyright and license.\nThe definitive version of this document should be available at\nftp://ftp.info-zip.org/pub/infozip/license.html indefinitely.\n\n\nCopyright (c) 1990-2001 Info-ZIP. All rights reserved.\n\nFor the purposes of this copyright and license, \"Info-ZIP\" is defined as\nthe following set of individuals:\n\n Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois,\n Jean-loup Gailly, Hunter Goatley, Ian Gorman, Chris Herborth, Dirk Haase,\n Greg Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz, David Kirschbaum,\n Johnny Lee, Onno van der Linden, Igor Mandrichenko, Steve P. Miller,\n Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs, Kai Uwe Rommel,\n Steve Salisbury, Dave Smith, Christian Spieler, Antoine Verheijen,\n Paul von Behren, Rich Wales, Mike White\n\nThis software is provided \"as is,\" without warranty of any kind, express\nor implied. In no event shall Info-ZIP or its contributors be held liable\nfor any direct, indirect, incidental, special or consequential damages\narising out of the use of or inability to use this software.\n\nPermission is granted to anyone to use this software for any purpose,\nincluding commercial applications, and to alter it and redistribute it\nfreely, subject to the following restrictions:\n\n 1. Redistributions of source code must retain the above copyright notice,\n definition, disclaimer, and this list of conditions.\n\n 2. Redistributions in binary form must reproduce the above copyright\n notice, definition, disclaimer, and this list of conditions in\n documentation and/or other materials provided with the distribution.\n\n 3. Altered versions--including, but not limited to, ports to new operating\n systems, existing ports with new graphical interfaces, and dynamic,\n shared, or static library versions--must be plainly marked as such\n and must not be misrepresented as being the original source. Such\n altered versions also must not be misrepresented as being Info-ZIP\n releases--including, but not limited to, labeling of the altered\n versions with the names \"Info-ZIP\" (or any variation thereof, including,\n but not limited to, different capitalizations), \"Pocket UnZip,\" \"WiZ\"\n or \"MacZip\" without the explicit permission of Info-ZIP. Such altered\n versions are further prohibited from misrepresentative use of the\n Zip-Bugs or Info-ZIP e-mail addresses or of the Info-ZIP URL(s).\n\n 4. Info-ZIP retains the right to use the names \"Info-ZIP,\" \"Zip,\" \"UnZip,\"\n \"WiZ,\" \"Pocket UnZip,\" \"Pocket Zip,\" and \"MacZip\" for its own source and\n binary releases.", + "json": "info-zip-2001-01.json", + "yaml": "info-zip-2001-01.yml", + "html": "info-zip-2001-01.html", + "license": "info-zip-2001-01.LICENSE" + }, + { + "license_key": "info-zip-2002-02", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2002-02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is version 2002-Feb-16 of the Info-ZIP copyright and license.\nThe definitive version of this document should be available at\nftp://ftp.info-zip.org/pub/infozip/license.html indefinitely.\n\n\nCopyright (c) 1990-2002 Info-ZIP. All rights reserved.\n\nFor the purposes of this copyright and license, \"Info-ZIP\" is defined as\nthe following set of individuals:\n\n Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois,\n Jean-loup Gailly, Hunter Goatley, Ian Gorman, Chris Herborth, Dirk Haase,\n Greg Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz, David Kirschbaum,\n Johnny Lee, Onno van der Linden, Igor Mandrichenko, Steve P. Miller,\n Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs, Kai Uwe Rommel,\n Steve Salisbury, Dave Smith, Christian Spieler, Antoine Verheijen,\n Paul von Behren, Rich Wales, Mike White\n\nThis software is provided \"as is,\" without warranty of any kind, express\nor implied. In no event shall Info-ZIP or its contributors be held liable\nfor any direct, indirect, incidental, special or consequential damages\narising out of the use of or inability to use this software.\n\nPermission is granted to anyone to use this software for any purpose,\nincluding commercial applications, and to alter it and redistribute it\nfreely, subject to the following restrictions:\n\n 1. Redistributions of source code must retain the above copyright notice,\n definition, disclaimer, and this list of conditions.\n\n 2. Redistributions in binary form (compiled executables) must reproduce\n the above copyright notice, definition, disclaimer, and this list of\n conditions in documentation and/or other materials provided with the\n distribution. The sole exception to this condition is redistribution\n of a standard UnZipSFX binary as part of a self-extracting archive;\n that is permitted without inclusion of this license, as long as the\n normal UnZipSFX banner has not been removed from the binary or disabled.\n\n 3. Altered versions--including, but not limited to, ports to new operating\n systems, existing ports with new graphical interfaces, and dynamic,\n shared, or static library versions--must be plainly marked as such\n and must not be misrepresented as being the original source. Such\n altered versions also must not be misrepresented as being Info-ZIP\n releases--including, but not limited to, labeling of the altered\n versions with the names \"Info-ZIP\" (or any variation thereof, including,\n but not limited to, different capitalizations), \"Pocket UnZip,\" \"WiZ\"\n or \"MacZip\" without the explicit permission of Info-ZIP. Such altered\n versions are further prohibited from misrepresentative use of the\n Zip-Bugs or Info-ZIP e-mail addresses or of the Info-ZIP URL(s).\n\n 4. Info-ZIP retains the right to use the names \"Info-ZIP,\" \"Zip,\" \"UnZip,\"\n \"UnZipSFX,\" \"WiZ,\" \"Pocket UnZip,\" \"Pocket Zip,\" and \"MacZip\" for its\n own source and binary releases.", + "json": "info-zip-2002-02.json", + "yaml": "info-zip-2002-02.yml", + "html": "info-zip-2002-02.html", + "license": "info-zip-2002-02.LICENSE" + }, + { + "license_key": "info-zip-2003-05", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2003-05", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is version 2003-May-08 of the Info-ZIP copyright and license.\nThe definitive version of this document should be available at\nftp://ftp.info-zip.org/pub/infozip/license.html indefinitely.\n\n\nCopyright (c) 1990-2003 Info-ZIP. All rights reserved.\n\nFor the purposes of this copyright and license, \"Info-ZIP\" is defined as\nthe following set of individuals:\n\n Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois,\n Jean-loup Gailly, Hunter Goatley, Ian Gorman, Chris Herborth, Dirk Haase,\n Greg Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz, David Kirschbaum,\n Johnny Lee, Onno van der Linden, Igor Mandrichenko, Steve P. Miller,\n Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs, Kai Uwe Rommel,\n Steve Salisbury, Dave Smith, Christian Spieler, Antoine Verheijen,\n Paul von Behren, Rich Wales, Mike White\n\nThis software is provided \"as is,\" without warranty of any kind, express\nor implied. In no event shall Info-ZIP or its contributors be held liable\nfor any direct, indirect, incidental, special or consequential damages\narising out of the use of or inability to use this software.\n\nPermission is granted to anyone to use this software for any purpose,\nincluding commercial applications, and to alter it and redistribute it\nfreely, subject to the following restrictions:\n\n 1. Redistributions of source code must retain the above copyright notice,\n definition, disclaimer, and this list of conditions.\n\n 2. Redistributions in binary form (compiled executables) must reproduce\n the above copyright notice, definition, disclaimer, and this list of\n conditions in documentation and/or other materials provided with the\n distribution. The sole exception to this condition is redistribution\n of a standard UnZipSFX binary (including SFXWiz) as part of a\n self-extracting archive; that is permitted without inclusion of this\n license, as long as the normal SFX banner has not been removed from\n the binary or disabled.\n\n 3. Altered versions--including, but not limited to, ports to new operating\n systems, existing ports with new graphical interfaces, and dynamic,\n shared, or static library versions--must be plainly marked as such\n and must not be misrepresented as being the original source. Such\n altered versions also must not be misrepresented as being Info-ZIP\n releases--including, but not limited to, labeling of the altered\n versions with the names \"Info-ZIP\" (or any variation thereof, including,\n but not limited to, different capitalizations), \"Pocket UnZip,\" \"WiZ\"\n or \"MacZip\" without the explicit permission of Info-ZIP. Such altered\n versions are further prohibited from misrepresentative use of the\n Zip-Bugs or Info-ZIP e-mail addresses or of the Info-ZIP URL(s).\n\n 4. Info-ZIP retains the right to use the names \"Info-ZIP,\" \"Zip,\" \"UnZip,\"\n \"UnZipSFX,\" \"WiZ,\" \"Pocket UnZip,\" \"Pocket Zip,\" and \"MacZip\" for its\n own source and binary releases.", + "json": "info-zip-2003-05.json", + "yaml": "info-zip-2003-05.yml", + "html": "info-zip-2003-05.html", + "license": "info-zip-2003-05.LICENSE" + }, + { + "license_key": "info-zip-2004-05", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2004-05", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is version 2004-May-22 of the Info-ZIP copyright and license. The\ndefinitive version of this document should be available at ftp://ftp.info-\nzip.org/pub/infozip/license.html indefinitely.\n\nCopyright (c) 1990-2004 Info-ZIP. All rights reserved.\n\nFor the purposes of this copyright and license, \"Info-ZIP\" is defined as the\nfollowing set of individuals:\n\n Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois, Jean-\n loup Gailly, Hunter Goatley, Ian Gorman, Chris Herborth, Dirk Haase, Greg\n Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz, David Kirschbaum,\n Johnny Lee, Onno van der Linden, Igor Mandrichenko, Steve P. Miller, Sergio\n Monesi, Keith Owens, George Petrov, Greg Roelofs, Kai Uwe Rommel, Steve\n Salisbury, Dave Smith, Christian Spieler, Antoine Verheijen, Paul von\n Behren, Rich Wales, Mike White\n\nThis software is provided \"as is,\" without warranty of any kind, express or\nimplied. In no event shall Info-ZIP or its contributors be held liable for any\ndirect, indirect, incidental, special or consequential damages arising out of\nthe use of or inability to use this software.\n\nPermission is granted to anyone to use this software for any purpose, including\ncommercial applications, and to alter it and redistribute it freely, subject to\nthe following restrictions:\n\n Redistributions of source code must retain the above copyright notice,\n definition, disclaimer, and this list of conditions.\n\n Redistributions in binary form (compiled executables) must reproduce the\n above copyright notice, definition, disclaimer, and this list of conditions\n in documentation and/or other materials provided with the distribution. The\n sole exception to this condition is redistribution of a standard UnZipSFX\n binary (including SFXWiz) as part of a self-extracting archive; that is\n permitted without inclusion of this license, as long as the normal SFX\n banner has not been removed from the binary or disabled.\n\n Altered versions--including, but not limited to, ports to new operating\n systems, existing ports with new graphical interfaces, and dynamic, shared,\n or static library versions--must be plainly marked as such and must not be\n misrepresented as being the original source. Such altered versions also must\n not be misrepresented as being Info-ZIP releases--including, but not limited\n to, labeling of the altered versions with the names \"Info-ZIP\" (or any\n variation thereof, including, but not limited to, different\n capitalizations), \"Pocket UnZip,\" \"WiZ\" or \"MacZip\" without the explicit\n permission of Info-ZIP. Such altered versions are further prohibited from\n misrepresentative use of the Zip-Bugs or Info-ZIP e-mail addresses or of the\n Info-ZIP URL(s).\n\n Info-ZIP retains the right to use the names \"Info-ZIP,\" \"Zip,\" \"UnZip,\"\n \"UnZipSFX,\" \"WiZ,\" \"Pocket UnZip,\" \"Pocket Zip,\" and \"MacZip\" for its own\n source and binary releases.", + "json": "info-zip-2004-05.json", + "yaml": "info-zip-2004-05.yml", + "html": "info-zip-2004-05.html", + "license": "info-zip-2004-05.LICENSE" + }, + { + "license_key": "info-zip-2005-02", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2005-02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is version 2005-Feb-10 of the Info-ZIP copyright and license.\nThe definitive version of this document should be available at\nftp://ftp.info-zip.org/pub/infozip/license.html indefinitely.\n\n\nCopyright (c) 1990-2005 Info-ZIP. All rights reserved.\n\nFor the purposes of this copyright and license, \"Info-ZIP\" is defined as\nthe following set of individuals:\n\n Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois,\n Jean-loup Gailly, Hunter Goatley, Ed Gordon, Ian Gorman, Chris Herborth,\n Dirk Haase, Greg Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz,\n David Kirschbaum, Johnny Lee, Onno van der Linden, Igor Mandrichenko,\n Steve P. Miller, Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs,\n Kai Uwe Rommel, Steve Salisbury, Dave Smith, Steven M. Schweda,\n Christian Spieler, Cosmin Truta, Antoine Verheijen, Paul von Behren,\n Rich Wales, Mike White\n\nThis software is provided \"as is,\" without warranty of any kind, express\nor implied. In no event shall Info-ZIP or its contributors be held liable\nfor any direct, indirect, incidental, special or consequential damages\narising out of the use of or inability to use this software.\n\nPermission is granted to anyone to use this software for any purpose,\nincluding commercial applications, and to alter it and redistribute it\nfreely, subject to the following restrictions:\n\n 1. Redistributions of source code must retain the above copyright notice,\n definition, disclaimer, and this list of conditions.\n\n 2. Redistributions in binary form (compiled executables) must reproduce\n the above copyright notice, definition, disclaimer, and this list of\n conditions in documentation and/or other materials provided with the\n distribution. The sole exception to this condition is redistribution\n of a standard UnZipSFX binary (including SFXWiz) as part of a\n self-extracting archive; that is permitted without inclusion of this\n license, as long as the normal SFX banner has not been removed from\n the binary or disabled.\n\n 3. Altered versions--including, but not limited to, ports to new operating\n systems, existing ports with new graphical interfaces, and dynamic,\n shared, or static library versions--must be plainly marked as such\n and must not be misrepresented as being the original source. Such\n altered versions also must not be misrepresented as being Info-ZIP\n releases--including, but not limited to, labeling of the altered\n versions with the names \"Info-ZIP\" (or any variation thereof, including,\n but not limited to, different capitalizations), \"Pocket UnZip,\" \"WiZ\"\n or \"MacZip\" without the explicit permission of Info-ZIP. Such altered\n versions are further prohibited from misrepresentative use of the\n Zip-Bugs or Info-ZIP e-mail addresses or of the Info-ZIP URL(s).\n\n 4. Info-ZIP retains the right to use the names \"Info-ZIP,\" \"Zip,\" \"UnZip,\"\n \"UnZipSFX,\" \"WiZ,\" \"Pocket UnZip,\" \"Pocket Zip,\" and \"MacZip\" for its\n own source and binary releases.", + "json": "info-zip-2005-02.json", + "yaml": "info-zip-2005-02.yml", + "html": "info-zip-2005-02.html", + "license": "info-zip-2005-02.LICENSE" + }, + { + "license_key": "info-zip-2007-03", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2007-03", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is version 2007-Mar-4 of the Info-ZIP license.\nThe definitive version of this document should be available at\nftp://ftp.info-zip.org/pub/infozip/license.html indefinitely and\na copy at http://www.info-zip.org/pub/infozip/license.html.\n\n\nCopyright (c) 1990-2007 Info-ZIP. All rights reserved.\n\nFor the purposes of this copyright and license, \"Info-ZIP\" is defined as\nthe following set of individuals:\n\n Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois,\n Jean-loup Gailly, Hunter Goatley, Ed Gordon, Ian Gorman, Chris Herborth,\n Dirk Haase, Greg Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz,\n David Kirschbaum, Johnny Lee, Onno van der Linden, Igor Mandrichenko,\n Steve P. Miller, Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs,\n Kai Uwe Rommel, Steve Salisbury, Dave Smith, Steven M. Schweda,\n Christian Spieler, Cosmin Truta, Antoine Verheijen, Paul von Behren,\n Rich Wales, Mike White.\n\nThis software is provided \"as is,\" without warranty of any kind, express\nor implied. In no event shall Info-ZIP or its contributors be held liable\nfor any direct, indirect, incidental, special or consequential damages\narising out of the use of or inability to use this software.\n\nPermission is granted to anyone to use this software for any purpose,\nincluding commercial applications, and to alter it and redistribute it\nfreely, subject to the above disclaimer and the following restrictions:\n\n 1. Redistributions of source code (in whole or in part) must retain\n the above copyright notice, definition, disclaimer, and this list\n of conditions.\n\n 2. Redistributions in binary form (compiled executables and libraries)\n must reproduce the above copyright notice, definition, disclaimer,\n and this list of conditions in documentation and/or other materials\n provided with the distribution. The sole exception to this condition\n is redistribution of a standard UnZipSFX binary (including SFXWiz) as\n part of a self-extracting archive; that is permitted without inclusion\n of this license, as long as the normal SFX banner has not been removed\n from the binary or disabled.\n\n 3. Altered versions--including, but not limited to, ports to new operating\n systems, existing ports with new graphical interfaces, versions with\n modified or added functionality, and dynamic, shared, or static library\n versions not from Info-ZIP--must be plainly marked as such and must not\n be misrepresented as being the original source or, if binaries,\n compiled from the original source. Such altered versions also must not\n be misrepresented as being Info-ZIP releases--including, but not\n limited to, labeling of the altered versions with the names \"Info-ZIP\"\n (or any variation thereof, including, but not limited to, different\n capitalizations), \"Pocket UnZip,\" \"WiZ\" or \"MacZip\" without the\n explicit permission of Info-ZIP. Such altered versions are further\n prohibited from misrepresentative use of the Zip-Bugs or Info-ZIP\n e-mail addresses or the Info-ZIP URL(s), such as to imply Info-ZIP\n will provide support for the altered versions.\n\n 4. Info-ZIP retains the right to use the names \"Info-ZIP,\" \"Zip,\" \"UnZip,\"\n \"UnZipSFX,\" \"WiZ,\" \"Pocket UnZip,\" \"Pocket Zip,\" and \"MacZip\" for its\n own source and binary releases.", + "json": "info-zip-2007-03.json", + "yaml": "info-zip-2007-03.yml", + "html": "info-zip-2007-03.html", + "license": "info-zip-2007-03.LICENSE" + }, + { + "license_key": "info-zip-2009-01", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2009-01", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is version 2009-Jan-02 of the Info-ZIP license. The definitive version of\nthis document should be available at ftp://ftp.info-\nzip.org/pub/infozip/license.html indefinitely and a copy at http://www.info-\nzip.org/pub/infozip/license.html.\n\nCopyright (c) 1990-2009 Info-ZIP. All rights reserved.\n\nFor the purposes of this copyright and license, \"Info-ZIP\" is defined as the\nfollowing set of individuals:\n\n Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois, Jean-\n loup Gailly, Hunter Goatley, Ed Gordon, Ian Gorman, Chris Herborth, Dirk\n Haase, Greg Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz, David\n Kirschbaum, Johnny Lee, Onno van der Linden, Igor Mandrichenko, Steve P.\n Miller, Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs, Kai Uwe\n Rommel, Steve Salisbury, Dave Smith, Steven M. Schweda, Christian Spieler,\n Cosmin Truta, Antoine Verheijen, Paul von Behren, Rich Wales, Mike White.\n\nThis software is provided \"as is,\" without warranty of any kind, express or\nimplied. In no event shall Info-ZIP or its contributors be held liable for any\ndirect, indirect, incidental, special or consequential damages arising out of\nthe use of or inability to use this software.\n\nPermission is granted to anyone to use this software for any purpose, including\ncommercial applications, and to alter it and redistribute it freely, subject to\nthe above disclaimer and the following restrictions:\n\n Redistributions of source code (in whole or in part) must retain the above\n copyright notice, definition, disclaimer, and this list of conditions.\n\n Redistributions in binary form (compiled executables and libraries) must\n reproduce the above copyright notice, definition, disclaimer, and this list\n of conditions in documentation and/or other materials provided with the\n distribution. Additional documentation is not needed for executables where a\n command line license option provides these and a note regarding this option\n is in the executable's startup banner. The sole exception to this condition\n is redistribution of a standard UnZipSFX binary (including SFXWiz) as part\n of a self-extracting archive; that is permitted without inclusion of this\n license, as long as the normal SFX banner has not been removed from the\n binary or disabled.\n\n Altered versions--including, but not limited to, ports to new operating\n systems, existing ports with new graphical interfaces, versions with\n modified or added functionality, and dynamic, shared, or static library\n versions not from Info-ZIP--must be plainly marked as such and must not be\n misrepresented as being the original source or, if binaries, compiled from\n the original source. Such altered versions also must not be misrepresented\n as being Info-ZIP releases--including, but not limited to, labeling of the\n altered versions with the names \"Info-ZIP\" (or any variation thereof,\n including, but not limited to, different capitalizations), \"Pocket UnZip,\"\n \"WiZ\" or \"MacZip\" without the explicit permission of Info-ZIP. Such altered\n versions are further prohibited from misrepresentative use of the Zip-Bugs\n or Info-ZIP e-mail addresses or the Info-ZIP URL(s), such as to imply Info-\n ZIP will provide support for the altered versions.\n\n Info-ZIP retains the right to use the names \"Info-ZIP,\" \"Zip,\" \"UnZip,\"\n \"UnZipSFX,\" \"WiZ,\" \"Pocket UnZip,\" \"Pocket Zip,\" and \"MacZip\" for its own\n source and binary releases.", + "json": "info-zip-2009-01.json", + "yaml": "info-zip-2009-01.yml", + "html": "info-zip-2009-01.html", + "license": "info-zip-2009-01.LICENSE" + }, + { + "license_key": "infonode-1.1", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-infonode-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "InfoNode Software License Version 1.1\n\n1. Definitions\n\n\"Work\" shall mean the work that the copyright holder has made available under this license, as indicated by a notice included in or attached to the work.\n\"NNL\" shall mean NNL Technology AB.\n\n2. License Grants\n\nYou may copy and distribute the Work together with a product if all persons that have developed any part of the product that uses functionality of the Work directly or indirectly (i.e. uses software that directly or indirectly uses functionality of the Work) have purchased a developer license for the Work. For example, if developer A has developed software that uses the Work, and developer B has developed a product part that uses A's software, both A and B need to have purchased a developer license for the Work.\n\nYou are allowed to use an obfuscator like ProGuard (http://proguard.sourceforge.net) to obfuscate the Work together with a product that uses the Work. No support is provided by NNL for the obfuscated result.\n\n3. License Restrictions\n\nA product that uses the Work may not directly or indirectly expose any functionality of the Work to other components that are not a part of the product, including, but not limited to, other programs, libraries and plug-ins.\nYou may not transfer the grants of this license to anyone. The grants apply to you and noone else.\nYou may not grant any rights, including distribution rights, for the Work or any part of the Work to anyone.\nYou may not alter, split, merge, modify, adapt, decompile, reverse engineer, disassemble or translate the Work or any part of the Work. The only exception is obfuscation as described in section 2.2.\nYou may not sell, rent or lease the Work or any part of the Work.\nIn the event that you fail to comply with this license, NNL may terminate the license and you must destroy all copies of the Work.\n\nThe Work is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. This license grants you limited use of the Work. NNL retain all right, title and interest, including all copyright and intellectual property rights, in and to, the Work and all copies thereof. All rights not specifically granted in this license, including Federal and International Copyrights, are reserved by NNL.\n\n4. Warranty Disclaimer\n\nThe Work is provided to you \"as is\". NNL provides no warranty for the Work. NNL is not, under any circumstances, liable for any damage, or any other events, arising directly or indirectly out of the use of the Work or any software using the Work.\n\nCopyright (c) 2004 NNL Technology AB, www.nnl.se", + "json": "infonode-1.1.json", + "yaml": "infonode-1.1.yml", + "html": "infonode-1.1.html", + "license": "infonode-1.1.LICENSE" + }, + { + "license_key": "initial-developer-public", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-initial-developer-public", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Initial Developer's Public License Version 1.0\n1. Definitions\n\n1.0 \"Commercial Use\" means distribution or otherwise making the Covered\nCode available to a third party.\n\n1.1 \"Contributor\" means each entity that creates or contributes to the\ncreation of Modifications.\n\n1.2 \"Contributor Version\" means the combination of the Original Code,\nprior Modifications used by a Contributor, and the Modifications made by\nthat particular Contributor.\n\n1.3. \"Covered Code\" means the Original Code or Modifications or the\ncombination of the Original Code and Modifications, in each case\nincluding portions thereof.\n\n1.4. \"Electronic Distribution Mechanism\" means a mechanism generally\naccepted in the software development community for the electronic\ntransfer of data.\n\n1.5. \"Executable\" means Covered Code in any form other than Source Code.\n\n1.6. \"Initial Developer\" means the individual or entity identified as\nthe Initial Developer in the Source Code notice required by Exhibit A.\n\n1.7. \"Larger Work\" means a work which combines Covered Code or portions\nthereof with code not governed by the terms of this License.\n\n1.8. \"License\" means this document.\n\n1.8.1. \"Licensable\" means having the right to grant, to the maximum\nextent possible, whether at the time of the initial grant or\nsubsequently acquired, any and all of the rights conveyed herein.\n\n1.9. \"Modifications\" means any addition to or deletion from the\nsubstance or structure of either the Original Code or any previous\nModifications. When Covered Code is released as a series of files, a\nModification is:\n\nAny addition to or deletion from the contents of a file containing\nOriginal Code or previous Modifications.\n\nAny new file that contains any part of the Original Code or previous\nModifications.\n\n1.10. \"Original Code\" means Source Code of computer software code which\nis described in the Source Code notice required by Exhibit A as Original\nCode, and which, at the time of its release under this License is not\nalready Covered Code governed by this License.\n\n1.10.1. \"Patent Claims\" means any patent claim(s), now owned or\nhereafter acquired, including without limitation, method, process, and\napparatus claims, in any patent Licensable by grantor.\n\n1.11. \"Source Code\" means the preferred form of the Covered Code for\nmaking modifications to it, including all modules it contains, plus any\nassociated interface definition files, scripts used to control\ncompilation and installation of an Executable, or source code\ndifferential comparisons against either the Original Code or another\nwell known, available Covered Code of the Contributor's choice. The\nSource Code can be in a compressed or archival form, provided the\nappropriate decompression or de-archiving software is widely available\nfor no charge.\n\n1.12. \"You\" (or \"Your\") means an individual or a legal entity exercising\nrights under, and complying with all of the terms of, this License or a\nfuture version of this License issued under Section 6.1. For legal\nentities, \"You\" includes any entity w hich controls, is controlled by,\nor is under common control with You. For purposes of this definition,\n\"control\" means (a) the power, direct or indirect, to cause the\ndirection or management of such entity, whether by contract or\notherwise, or (b) ownership of more than fifty percent (50%) of the\noutstanding shares or beneficial ownership of such entity.\n\n2. Source Code License.\n\n2.1. The Initial Developer Grant. The Initial Developer hereby grants\nYou a world-wide, royalty-free, non-exclusive license, subject to third\nparty intellectual property claims:\n\n(a) under intellectual property rights (other than patent or trademark)\nLicensable by Initial Developer to use, reproduce, modify, display,\nperform, sublicense and distribute the Original Code (or portions\nthereof) with or without Modifications, and/or as part of a Larger Work;\nand\n\n(b) under Patents Claims infringed by the making, using or selling of\nOriginal Code, to make, have made, use, practice, sell, and offer for\nsale, and/or otherwise dispose of the Original Code (or portions\nthereof).\n\n(c) the licenses granted in this Section 2.1(a) and (b) are effective on\nthe date Initial Developer first distributes Original Code under the\nterms of this License.\n\nd) Notwithstanding Section 2.1(b) above, no patent license is granted:\n\n1) for code that You delete from the Original Code;\n\n2) separate from the Original Code; or\n\n3) for infringements caused by:\n\ni) the modification of the Original Code or\n\nii) the combination of the Original Code with other software or devices.\n\n2.2. Contributor Grant. Subject to third party intellectual property\nclaims, each Contributor hereby grants You a world-wide, royalty-free,\nnon-exclusive license\n\n(a) under intellectual property rights (other than patent or trademark)\nLicensable by Contributor, to use, reproduce, modify, display, perform,\nsublicense and distribute the Modifications created by such Contributor\n(or portions thereof) either on an unmodified basis, with other\nModifications, as Covered Code and/or as part of a Larger Work; and\n\n(b) under Patent Claims infringed by the making, using, or selling of\nModifications made by that Contributor either alone and/or in\ncombination with its Contributor Version (or portions of such\ncombination), to make, use, sell, offer for sale, have made, and/or\notherwise dispose of: 1) Modifications made by that Contributor (or\nportions thereof); and 2) the combination of Modifications made by that\nContributor with its Contributor Version (or portions of such\ncombination).\n\n(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on\nthe date Contributor first makes Commercial Use of the Covered Code.\n\n(d) Notwithstanding Section 2.2(b) above, no patent license is granted:\n\n1) for any code that Contributor has deleted from the Contributor Version;\n\n2) separate from the Contributor Version;\n\n3) for infringements caused by: i) third party modifications of\nContributor Version or\n\nii) the combination of Modifications made by that Contributor with other\nsoftware (except as part of the Contributor Version) or other devices;\nor\n\n4) under Patent Claims infringed by Covered Code in the absence of\nModifications made by that Contributor.\n\n3. Distribution Obligations.\n\n3.1. Application of License. The Modifications which You create or to\nwhich You contribute are governed by the terms of this License,\nincluding without limitation Section 2.2. The Source Code version of\nCovered Code may be distributed only under the terms of this License or\na future version of this License released under Section 6.1, and You\nmust include a copy of this License with every copy of the Source Code\nYou distribute. You may not offer or impose any terms on any Source Code\nversion that alters or restricts the applicable version of this License\nor the recipients' rights hereunder. However, You may include an\nadditional document offering the additional rights described in Section\n3.5.\n\n3.2. Availability of Source Code. Any Modification which You create or\nto which You contribute must be made available in Source Code form under\nthe terms of this License either on the same media as an Executable\nversion or via an accepted Electronic Distribution Mechanism to anyone\nto whom you made an Executable version available; and if made available\nvia Electronic Distribution Mechanism, must remain available for at\nleast twelve (12) months after the date it initially became available,\nor at least six (6) months after a subsequent version of that particular\nModification has been made available to such recipients. You are\nresponsible for ensuring that the Source Code version remains available\neven if the Electronic Distribution Mechanism is maintained by a third\nparty.\n\n3.3. Description of Modifications. You must cause all Covered Code to\nwhich You contribute to contain a file documenting the changes You made\nto create that Covered Code and the date of any change. You must include\na prominent statement that the Modification is derived, directly or\nindirectly, from Original Code provided by the Initial Developer and\nincluding the name of the Initial Developer in\n\n(a) the Source Code, and\n\n(b) in any notice in an Executable version or related documentation in\nwhich You describe the origin or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters\n\na) Third Party Claims. If Contributor has knowledge that a license under\na third party's intellectual property rights is required to exercise the\nrights granted by such Contributor under Sections 2.1 or 2.2,\nContributor must include a text file with the Source Code distribution\ntitled \"LEGAL\" which describes the claim and the party making the claim\nin sufficient detail that a recipient will know whom to contact. If\nContributor obtains such knowledge after the Modification is made\navailable as described in Section 3.2, Contributor shall promptly modify\nthe LEGAL file in all copies Contributor makes available thereafter and\nshall take other steps (such as notifying appropriate mailing lists or\nnewsgroups) reasonably calculated to inform those who received the\nCovered Code that new knowledge has been obtained.\n\n(b) Contributor APIs. If Contributor's Modifications include an\napplication programming interface and Contributor has knowledge of\npatent licenses which are reasonably necessary to implement that API,\nContributor must also include this information in the LEGAL file.\n\n(c) Representations. Contributor represents that, except as disclosed\npursuant to Section 3.4(a) above, Contributor believes that\nContributor's Modifications are Contributor's original creation(s)\nand/or Contributor has sufficient rights to grant the rights conveyed by\nthis License.\n\n3.5. Required Notices. You must duplicate the notice in Exhibit A in\neach file of the Source Code. If it is not possible to put such notice\nin a particular Source Code file due to its structure, then You must\ninclude such notice in a location (such as a relevant directory) where a\nuser would be likely to look for such a notice. If You created one or\nmore Modification(s) You may add your name as a Contributor to the\nnotice described in Exhibit A. You must also duplicate this License in\nany documentation for the Source Code where You describe recipients'\nrights or ownership rights relating to Covered Code. You may choose to\noffer, and to charge a fee for, warranty, support, indemnity or\nliability obligations to one or more recipients of Covered Code.\nHowever, You may do so only on Your own behalf, and not on behalf of the\nInitial Developer or any Contributor. You must make it absolutely clear\nthan any such warranty, support, indemnity or liability obligation is\noffered by You alone, and You hereby agree to indemnify the Initial\nDeveloper and every Contributor for any liability incurred by the\nInitial Developer or such Contributor as a result of warranty, support,\nindemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions. You may distribute Covered\nCode in Executable form only if the requirements of Section 3.1-3.5 have\nbeen met for that Covered Code, and if You include a notice stating that\nthe Source Code version of the Covered Code is available under the terms\nof this License, including a description of how and where You have\nfulfilled the obligations of Section 3.2. The notice must be\nconspicuously included in any notice in an Executable version, related\ndocumentation or collateral in which You describe recipients' rights\nrelating to the Covered Code. You may distribute the Executable version\nof Covered Code or ownership rights under a license of Your choice,\nwhich may contain terms different from this License, provided that You\nare in compliance with the terms of this License and hat the license for\nthe Executable version does not attempt to limit or alter the\nrecipient's rights in the Source Code version from the rights set forth\nin this License. If You distribute the Executable version under a\ndifferent license You must make it absolutely clear that any terms which\ndiffer from this License are offered by You alone, not by the Initial\nDeveloper or any Contributor. You hereby agree to indemnify the Initial\nDeveloper and every Contributor for any liability incurred by the\nInitial Developer or such Contributor as a result of any such terms You\noffer.\n\n3.7. Larger Works. You may create a Larger Work by combining Covered\nCode with other code not governed by the terms of this License and\ndistribute the Larger Work as a single product. In such a case, You must\nmake sure the requirements of this License are fulfilled for the Covered\nCode.\n\n4. Inability to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to comply with any of the terms of this\nLicense with respect to some or all of the Covered Code due to statute,\njudicial order, or regulation then You must:\n\n(a) comply with the terms of this License to the maximum extent\npossible; and\n\n(b) describe the limitations and the code they affect. Such description\nmust be included in the LEGAL file described in Section 3.4 and must be\nincluded with all distributions of the Source Code. Except to the extent\nprohibited by statute or regulation, such description must be\nsufficiently detailed for a recipient of ordinary skill to be able to\nunderstand it.\n\n5. Application of this License.\n\nThis License applies to code to which the Initial Developer has attached\nthe notice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n\n6.1. New Versions. The Initial Developer of this code may publish\nrevised and/or new versions of the License from time to time. Each\nversion will be given a distinguishing version number.\n\n6.2. Effect of New Versions. Once Covered Code has been published under\na particular version of the License, You may always continue to use it\nunder the terms of that version. You may also choose to use such Covered\nCode under the terms of any subsequent version of the License published\nby the Initial Developer. No one other than the Initial Developer has\nthe right to modify the terms applicable to Covered Code created under\nthis License.\n\n6.3. Derivative Works. If You create or use a modified version of this\nLicense (which you may only do in order to apply it to code which is not\nalready Covered Code governed by this License), You must\n\n(a) rename Your license so that the phrases \"Mozilla\", \"MOZILLAPL\",\n\"MOZPL\", \"Netscape\", \"MPL\", \"NPL\", or any confusingly similar phrases do\nnot appear in your license (except to note that your license differs\nfrom this License) and\n\n(b) otherwise make it clear that Your version of the license contains\nterms which differ from the Mozilla Public License and Netscape Public\nLicense. (Filling in the name of the Initial Developer, Original Code or\nContributor in the notice described in Exhibit A shall not of themselves\nbe deemed to be modifications of this License.)\n\n6.4 Origin of the Initial Developer's Public License. The Initial\nDeveloper's Public License is based on the Mozilla Public License V 1.1\nwith the following changes:\n\n1) The license is published by the Initial Developer of this code. Only\nthe Initial Developer can modify the terms applicable to Covered Code.\n\n2) The license can be modified and used for code which is not already\ngoverned by this license. Modified versions of the license must be\nrenamed to avoid confusion with the Initial Developer's Public License\nand must include a description of changes from the Initial Developer's\nPublic License.\n\n3) The name of the license in Exhibit A is the \"Initial Developer's Public License\".\n\n4) The reference to an alternative license in Exhibit A has been removed .\n\n5) Amendments I, II, III, V, and VI have been deleted.\n\n6) Exhibit A, Netscape Public License has been deleted\n\n7. DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT\nWARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT\nLIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS,\nMERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE\nRISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU.\nSHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE\nINITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY\nNECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY\nCONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED\nCODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n\n8.1. This License and the rights granted hereunder will terminate\nautomatically if You fail to comply with terms herein and fail to cure\nsuch breach within 30 days of becoming aware of the breach. All\nsublicenses to the Covered Code which are properly granted shall survive\nany termination of this License. Provisions which, by their nature, must\nremain in effect beyond the termination of this License shall survive.\n\n8.2. If You initiate litigation by asserting a patent infringement claim\n(excluding declatory judgment actions) against Initial Developer or a\nContributor (the Initial Developer or Contributor against whom You file\nsuch action is referred to as \"Participant\") alleging that:\n\n(a) such Participant's Contributor Version directly or indirectly\ninfringes any patent, then any and all rights granted by such\nParticipant to You under Sections 2.1 and/or 2.2 of this License shall,\nupon 60 days notice from Participant terminate prospectively, unless if\nwithin 60 days after receipt of notice You either:\n\n(i) agree in writing to pay Participant a mutually agreeable reasonable\nroyalty for Your past and future use of Modifications made by such\nParticipant, or\n\n(ii) withdraw Your litigation claim with respect to the Contributor\nVersion against such Participant.\n\nIf within 60 days of notice, a reasonable royalty and payment\narrangement are not mutually agreed upon in writing by the parties or\nthe litigation claim is not withdrawn, the rights granted by Participant\nto You under Sections 2.1 and/or 2.2 automatically terminate at the\nexpiration of the 60 day notice period specified above.\n\n(b) any software, hardware, or device, other than such Participant's\nContributor Version, directly or indirectly infringes any patent, then\nany rights granted to You by such Participant under Sections 2.1(b) and\n2.2(b) are revoked effective as of the date You first made, used, sold,\ndistributed, or had made, Modifications made by that Participant.\n\n8.3. If You assert a patent infringement claim against Participant\nalleging that such Participant's Contributor Version directly or\nindirectly infringes any patent where such claim is resolved (such as by\nlicense or settlement) prior to the initiation of patent infringement\nlitigation, then the reasonable value of the licenses granted by such\nParticipant under Sections 2.1 or 2.2 shall be taken into account in\ndetermining the amount or value of any payment or license.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all\nend user license agreements (excluding distributors and resellers) which\nhave been validly granted by You or any distributor hereunder prior to\ntermination shall survive termination.\n\n9. LIMITATION OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\n(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL\nDEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR\nANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY\nINDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER\nINCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK\nSTOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\nCOMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\nINFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF\nLIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\nPROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION\nOR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION\nAND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS.\n\nThe Covered Code is a \"commercial item\", as that term is defined in 48\nC.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\"\nand \"commercial computer software documentation\", as such terms are used\nin 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and\n48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government\nEnd Users acquire Covered Code with only those rights set forth herein.\n\n11. MISCELLANEOUS.\n\nThis License represents the complete agreement concerning subject matter\nhereof. If any provision of this License is held to be unenforceable,\nsuch provision shall be reformed only to the extent necessary to make it\nenforceable. This License shall be governed by California law provisions\n(except to the extent applicable law, if any, provides otherwise),\nexcluding its conflict-of-law provisions. With respect to disputes in\nwhich at least one party is a citizen of, or an entity chartered or\nregistered to do business in the United States of America, any\nlitigation relating to this License shall be subject to the jurisdiction\nof the Federal Courts of the Northern District of California, with venue\nlying in Santa Clara County, California, with the losing party\nresponsible for costs, including without limitation, court costs and\nreasonable attorneys' fees and expenses. The application of the United\nNations Convention on Contracts for the International Sale of Goods is\nexpressly excluded. Any law or regulation which provides that the\nlanguage of a contract shall be construed against the drafter shall not\napply to this License.\n\n12. RESPONSIBILITY FOR CLAIMS.\n\nAs between Initial Developer and the Contributors, each party is\nresponsible for claims and damages arising, directly or indirectly, out\nof its utilization of rights under this License and You agree to work\nwith Initial Developer and Contributors to distribute such\nresponsibility on an equitable basis. Nothing herein is intended or\nshall be deemed to constitute any admission of liability.\n\n13. MULTIPLE-LICENSED CODE.\n\nInitial Developer may designate portions of the Covered Code as\n\"Multiple-Licensed\". \"Multiple-Licensed\" means that the Initial\nDevpoeloper permits you to utilize portions of the Covered Code under\nYour choice of the IDPL or the alternative licenses, if any, specified\nby the Initial Developer in the file described in Exhibit A.\n\nEXHIBIT A -Initial Developer's Public License.\n\nThe contents of this file are subject to the Initial Developer's Public\nLicense Version 1.0 (the \"License\"); you may not use this file except in\ncompliance with the License. You may obtain a copy of the License from\nthe Firebird Project website, at http://www.firebirdsql.org/en/initial-\ndeveloper-s-public-license-version-1-0/\n\nSoftware distributed under the License is distributed on an \"AS IS\"\nbasis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the\nLicense for the specific language governing rights and limitations under\nthe License.\n\nThe Original Code is .\n\nThe Initial Developer of the Original Code is .\n\nPortions created by \nare Copyright (C) .\n\nAll Rights Reserved.\n\nContributor(s): .", + "json": "initial-developer-public.json", + "yaml": "initial-developer-public.yml", + "html": "initial-developer-public.html", + "license": "initial-developer-public.LICENSE" + }, + { + "license_key": "inner-net-2.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-inner-net-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Inner Net License, Version 2\n\nThe author(s) grant permission for redistribution and use in source and\nbinary forms, with or without modification, of the software and\ndocumentation provided that the following conditions are met:\n\n0. If you receive a version of the software that is specifically labeled\nas not being for redistribution (check the version message and/or\nREADME), you are not permitted to redistribute that version of the\nsoftware in any way or form.\n\n1. All terms of the all other applicable copyrights and licenses must be\nfollowed.\n\n2. Redistributions of source code must retain the authors' copyright\nnotice(s), this list of conditions, and the following disclaimer.\n\n3. Redistributions in binary form must reproduce the authors' copyright\nnotice(s), this list of conditions, and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n\n4. All advertising materials mentioning features or use of this software\nmust display the following acknowledgement with the name(s) of the\nauthors as specified in the copyright notice(s) substituted where\nindicated:\n\nThis product includes software developed by , The Inner Net,\nand other contributors.\n\n5. Neither the name(s) of the author(s) nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY ITS AUTHORS AND CONTRIBUTORS ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\nTHE POSSIBILITY OF SUCH DAMAGE.\n\nPlease distribute a copy of this license with the software and make it\nreasonably easy for others to find.", + "json": "inner-net-2.0.json", + "yaml": "inner-net-2.0.yml", + "html": "inner-net-2.0.html", + "license": "inner-net-2.0.LICENSE" + }, + { + "license_key": "inno-setup", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-inno-setup", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Inno Setup License\n==================\n\nExcept where otherwise noted, all of the documentation and software included\nin the Inno Setup package is copyrighted by Jordan Russell.\n\nCopyright (C) 1997-2010 Jordan Russell. All rights reserved.\nPortions Copyright (C) 2000-2010 Martijn Laan. All rights reserved.\n\nThis software is provided \"as-is,\" without any express or implied warranty.\nIn no event shall the author be held liable for any damages arising from the\nuse of this software.\n\nPermission is granted to anyone to use this software for any purpose,\nincluding commercial applications, and to alter and redistribute it,\nprovided that the following conditions are met:\n\n1. All redistributions of source code files must retain all copyright\n notices that are currently in place, and this list of conditions without\n modification.\n\n2. All redistributions in binary form must retain all occurrences of the\n above copyright notice and web site addresses that are currently in\n place (for example, in the About boxes).\n\n3. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software to\n distribute a product, an acknowledgment in the product documentation\n would be appreciated but is not required.\n\n4. Modified versions in source or binary form must be plainly marked as\n such, and must not be misrepresented as being the original software.\n\n\nJordan Russell\njr-2010 AT jrsoftware.org\nhttp://www.jrsoftware.org/", + "json": "inno-setup.json", + "yaml": "inno-setup.yml", + "html": "inno-setup.html", + "license": "inno-setup.LICENSE" + }, + { + "license_key": "inria-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-inria-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception to the Q Public Licence, you may develop\napplication programs, reusable components and other software items\nthat link with the original or modified versions of the Software\nand are not made available to the general public, without any of the\nadditional requirements listed in clause 6c of the Q Public licence.", + "json": "inria-linking-exception.json", + "yaml": "inria-linking-exception.yml", + "html": "inria-linking-exception.html", + "license": "inria-linking-exception.LICENSE" + }, + { + "license_key": "installsite", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-installsite", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License Agreement\n\nIMPORTANT - READ CAREFULLY. This is a legal agreement between you\n(either as an individual developer or as a representative of a single\nentity) and the owner of this site, Stefan Krueger, for the software and\ninformations available on this web site (referred to as \"CONTENTS\" in\nthe remainder of this document). CONTENTS of this web site include\ncomputer software, source code, and documentation. By downloading or\nusing in any other way CONTENTS on this web site, you agree to be bound\nby the terms of this agreement.\n\nThe CONTENTS are protected by copyright laws and international copyright\ntreaties, as well as other intellectual property laws and treaties.\n\nGrant of License:\n\nThis license agreement grants you the non-exclusive, royalty-free right\nto use the CONTENTS to create installation programs. If the source code\nis included with the software, you may modify it in any way you like.\n\nDescription of Limitations:\n\nYou are not allowed to reproduce or distribute the CONTENTS or any part\nof it in any form, except as integral part of your installation program.\nEspecially you must not include it in a book, distribute it on a CD-ROM\nor offer it for download from your web site. If you intend to do so,\nplease contact the webmaster to get an extended license.\n\nYou may not remove the copyright notices, if any, that are included or\nattached to the CONTENTS.\n\nIn case the CONTENTS were provided by a person or company other than\nStefan Krueger, additional restrictions and license regulations may\napply.\n\nLimited Warrenty and Limitation of Liability\n\nThe CONTENTS on this web site are provided \"as is\". This material is for\ninformational purposes only. It is completey up to you to verify that\nthe CONTENTS work for your purposes.\n\nTo the maximum extend permitted by applicable law, in no event shall\nStefan Krueger be liable for any special, incidental or consequental\ndamages whatsoever (including, without limitation, damages for loss of\nbusiness profits, business interruption, loss of business information,\nor any other pecuniary loss) arising out of the use or inability to use\nthe CONTENTS or the provision of or failure to provide support services,\neven if Stefan Krueger has been advised of the possibility of such\ndamages. In any case, Stefan Krueger's entire liability under any\nprovision of this license agreement shall be limited to the amount\nactually paid by you for the CONTENTS.", + "json": "installsite.json", + "yaml": "installsite.yml", + "html": "installsite.html", + "license": "installsite.LICENSE" + }, + { + "license_key": "intel", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution.\nRedistribution and use in binary form, without modification, are\npermitted provided that the following conditions are met:\n\nRedistributions must reproduce the above copyright notice and the\nfollowing disclaimer in the documentation and/or other materials\nprovided with the distribution.\n\nNeither the name of Intel Corporation\nnor the names of its suppliers may be used to endorse or promote\nproducts derived from this software without specific prior written\npermission.\n\nNo reverse engineering, decompilation, or disassembly of this\nsoftware is permitted.\n\nLimited patent license. Intel Corporation grants a world-wide,\nroyalty-free, non-exclusive license under patents it now or hereafter\nowns or controls to make, have made, use, import, offer to sell and\nsell (\"Utilize\") this software, but solely to the extent that any\nsuch patent is necessary to Utilize the software alone, or in\ncombination with an operating system licensed under an approved Open\nSource license as listed by the Open Source Initiative at\nhttp://opensource.org/licenses. The patent license shall not apply to\nany other combinations which include this software. No hardware per\nse is licensed hereunder.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND \nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, \nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE \nCOPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, \nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS \nOF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND \nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR \nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE \nUSE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH \nDAMAGE.", + "json": "intel.json", + "yaml": "intel.yml", + "html": "intel.html", + "license": "intel.LICENSE" + }, + { + "license_key": "intel-acpi", + "category": "Permissive", + "spdx_license_key": "Intel-ACPI", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ACPI - Software License Agreement\n\nSoftware License Agreement IMPORTANT - READ BEFORE COPYING, INSTALLING\nOR USING.\n\nDo not use or load this software and any associated materials\n(collectively, the \"Software\") until you have carefully read the\nfollowing terms and conditions. By loading or using the Software, you\nagree to the terms of this Agreement. If you do not wish to so agree, do\nnot install or use the Software.\n\n1. COPYRIGHT NOTICE Some or all of this work - Copyright \u00a9 1999-2005,\nIntel Corp. All rights reserved.\n\n2. LICENSE\n\n2.1. This is your license from Intel Corp. under its intellectual\nproperty rights. You may have additional license terms from the party\nthat provided you this software, covering your right to use that party's\nintellectual property rights.\n\n2.2. Intel grants, free of charge, to any person (\"Licensee\") obtaining\na copy of the source code appearing in this file (\"Covered Code\") an\nirrevocable, perpetual, worldwide license under Intel's copyrights in\nthe base code distributed originally by Intel (\"Original Intel Code\") to\ncopy, make derivatives, distribute, use and display any portion of the\nCovered Code in any form, with the right to sublicense such rights; and\n\n2.3. Intel grants Licensee a non-exclusive and non-transferable patent\nlicense (with the right to sublicense), under only those claims of Intel\npatents that are infringed by the Original Intel Code, to make, use,\nsell, offer to sell, and import the Covered Code and derivative works\nthereof solely to the minimum extent necessary to exercise the above\ncopyright license, and in no event shall the patent license extend to\nany additions to or modifications of the Original Intel Code. No other\nlicense or right is granted directly or by implication, estoppel or\notherwise; The above copyright and patent license is granted only if the\nfollowing conditions are met:\n\n3. CONDITIONS\n\n3.1. Redistribution of Source with Rights to Further Distribute Source.\nRedistribution of source code of any substantial portion of the Covered\nCode or modification with rights to further distribute source must\ninclude the above Copyright Notice, the above License, this list of\nConditions, and the following Disclaimer and Export Compliance\nprovision. In addition, Licensee must cause all Covered Code to which\nLicensee contributes to contain a file documenting the changes Licensee\nmade to create that Covered Code and the date of any change. Licensee\nmust include in that file the documentation of any changes made by any\npredecessor Licensee. Licensee must include a prominent statement that\nthe modification is derived, directly or indirectly, from Original Intel\nCode.\n\n3.2. Redistribution of Source with no Rights to Further Distribute\nSource. Redistribution of source code of any substantial portion of the\nCovered Code or modification without rights to further distribute source\nmust include the following Disclaimer and Export Compliance provision in\nthe documentation and/or other materials provided with distribution. In\naddition, Licensee may not authorize further sublicense of source of any\nportion of the Covered Code, and must include terms to the effect that\nthe license from Licensee to its licensee is limited to the intellectual\nproperty embodied in the software Licensee provides to its licensee, and\nnot to intellectual property embodied in modifications its licensee may\nmake.\n\n3.3. Redistribution of Executable. Redistribution in executable form of\nany substantial portion of the Covered Code or modification must\nreproduce the above Copyright Notice, and the following Disclaimer and\nExport Compliance provision in the documentation and/or other materials\nprovided with the distribution.\n\n3.4. Intel retains all right, title, and interest in and to the Original\nIntel Code.\n\n3.5. Neither the name Intel nor any other trademark owned or controlled\nby Intel shall be used in advertising or otherwise to promote the sale,\nuse or other dealings in products derived from or relating to the\nCovered Code without prior written authorization from Intel.\n\n4. DISCLAIMER AND EXPORT COMPLIANCE\n\n4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED\nHERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE\nIS PROVIDED \"AS IS,\" AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,\nINSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY\nUPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY\nIMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A\nPARTICULAR PURPOSE.\n\n4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS\nLICENSEES OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA,\nLOSS OF USE OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR\nFOR ANY INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS\nAGREEMENT, UNDER ANY CAUSE OF ACTION OR THEORY OF LIABILITY, AND\nIRRESPECTIVE OF WHETHER INTEL HAS ADVANCE NOTICE OF THE POSSIBILITY OF\nSUCH DAMAGES. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING THE FAILURE\nOF THE ESSENTIAL PURPOSE OF ANY LIMITED REMEDY.\n\n4.3. Licensee shall not export, either directly or indirectly, any of\nthis software or system incorporating such software without first\nobtaining any required license or other approval from the U. S.\nDepartment of Commerce or any other agency or department of the United\nStates Government. In the event Licensee exports any such software from\nthe United States or re-exports any such software from a foreign\ndestination, Licensee shall ensure that the distribution and export/re-\nexport of the software is in compliance with all laws, regulations,\norders, or other restrictions of the U.S. Export Administration\nRegulations. Licensee agrees that neither it nor any of its subsidiaries\nwill export/re-export any technical data, process, software, or service,\ndirectly or indirectly, to any country for which the United States\ngovernment or any agency thereof requires an export license, other\ngovernmental approval, or letter of assurance, without first obtaining\nsuch license, approval or letter.", + "json": "intel-acpi.json", + "yaml": "intel-acpi.yml", + "html": "intel-acpi.html", + "license": "intel-acpi.LICENSE" + }, + { + "license_key": "intel-bcl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-bcl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution. Redistribution and use in binary form, without modification, are\npermitted provided that the following conditions are met:\n\nRedistributions must reproduce the above copyright notice and the following\ndisclaimer in the documentation and/or other materials provided with the\ndistribution.\n\nNeither the name of Intel Corporation nor the names of its suppliers may be used\nto endorse or promote products derived from this software without specific prior\nwritten permission.\n\nNo reverse engineering, decompilation, or disassembly of this software is\npermitted.\n\n\"Binary form\" includes any format commonly used for electronic conveyance which\nis a reversible, bit-exact translation of binary representation to ASCII or ISO\ntext, for example, \"uuencode.\"\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "intel-bcl.json", + "yaml": "intel-bcl.yml", + "html": "intel-bcl.html", + "license": "intel-bcl.LICENSE" + }, + { + "license_key": "intel-bsd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-intel-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer,\n without modification.\n2. Redistributions in binary form must reproduce at minimum a disclaimer\n similar to the \"NO WARRANTY\" disclaimer below (\"Disclaimer\") and any\n redistribution must be conditioned upon including a substantially\n similar Disclaimer requirement for further binary redistribution.\n3. Neither the names of the above-listed copyright holders nor the names\n of any contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n\nNO WARRANTY\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY\nAND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\nTHE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,\nOR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER\nIN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\nTHE POSSIBILITY OF SUCH DAMAGES.", + "json": "intel-bsd.json", + "yaml": "intel-bsd.yml", + "html": "intel-bsd.html", + "license": "intel-bsd.LICENSE" + }, + { + "license_key": "intel-bsd-2-clause", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-intel-bsd-2-clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions, and the following disclaimer,\n without modification.\n2. Redistributions in binary form must reproduce at minimum a disclaimer\n substantially similar to the \"NO WARRANTY\" disclaimer below\n (\"Disclaimer\") and any redistribution must be conditioned upon\n including a substantially similar Disclaimer requirement for further\n binary redistribution.\n\nNO WARRANTY\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nHOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\nIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.", + "json": "intel-bsd-2-clause.json", + "yaml": "intel-bsd-2-clause.yml", + "html": "intel-bsd-2-clause.html", + "license": "intel-bsd-2-clause.LICENSE" + }, + { + "license_key": "intel-bsd-export-control", + "category": "Permissive", + "spdx_license_key": "Intel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list\nof conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\nNeither the name of the Intel Corporation nor the names of its contributors may\nbe used to endorse or promote products derived from this software without\nspecific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE INTEL OR CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nEXPORT LAWS: THIS LICENSE ADDS NO RESTRICTIONS TO THE EXPORT LAWS OF YOUR\nJURISDICTION. It is licensee's responsibility to comply with any export\nregulations applicable in licensee's jurisdiction. Under CURRENT (May 2000) U.S.\nexport regulations this software is eligible for export from the U.S. and can be\ndownloaded by or otherwise exported or reexported worldwide EXCEPT to U.S.\nembargoed destinations which include Cuba, Iraq, Libya, North Korea, Iran,\nSyria, Sudan, Afghanistan and any other country to which the U.S. has embargoed\ngoods and services.", + "json": "intel-bsd-export-control.json", + "yaml": "intel-bsd-export-control.yml", + "html": "intel-bsd-export-control.html", + "license": "intel-bsd-export-control.LICENSE" + }, + { + "license_key": "intel-code-samples", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-code-samples", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Code Samples License\n\t\nIMPORTANT - READ BEFORE COPYING, INSTALLING, OR USING.\nDo not copy, install, or use the \"Materials\" provided under this license agreement (\"Agreement\"), until you have carefully read the following terms and conditions.\n\nBy copying, installing, or otherwise using the Materials, you agree to be bound by the terms of this Agreement. If you do not agree to the terms of this Agreement, do not copy, install, or use the Materials.\n\nIntel\u00ae Product License Agreement\nLICENSE GRANT:\nSubject to the License Restrictions below, Intel Corporation (\"Intel\") grants to you the following non-exclusive, non-assignable royalty-free copyright licenses in the \"Materials\" below, which are identified specifically in License Definitions, and in any updates thereto that Intel may offer in the future.\n\nLICENSE DEFINITIONS:\nMaterials are defined as consisting of Sample Source, Redistributables, and End-User Documentation.\n\nSample Source: may include example interface or application source code. You may copy, modify, and compile the Sample Source and distribute it in your own products in binary and source code form.\n\nRedistributables: include header, library, and dynamically linkable library files. You may copy and distribute Redistributables with your product.\n\nEnd-User Documentation: includes textual materials intended for end users. You may copy, modify, and distribute them.\n\nLICENSE RESTRICTIONS:\nYou may not reverse-assemble, reverse-compile, or otherwise reverse-engineer any software provided solely in binary form.\n\nUpon Intel's release of an update, upgrade, or new version of the Materials, you will make reasonable efforts to discontinue distribution of the enclosed Materials and you will make reasonable efforts to distribute such updates, upgrades, or new versions to your customers who have received the Materials herein.\n\nDistribution of the Materials is also subject to the following limitations: You (i) shall be solely responsible to your customers for any update or support obligation or other liability which may arise from the distribution, (ii) do not make any statement that your product is \"certified,\" or that its performance is guaranteed, by Intel, (iii) do not use Intel's name or trademarks to market your product without written permission, (iv) shall prohibit disassembly and reverse engineering, (v) shall not publish reviews of Materials designated herein as beta without written permission by Intel, and (vi) shall indemnify, hold harmless, and defend Intel and its suppliers from and against any claims or lawsuits, including attorney's fees, that arise or result from your distribution of any product.\n\nCOPYRIGHT:\nTitle to the Materials and all copies thereof remain with Intel or its suppliers. The Materials are copyrighted and are protected by United States copyright laws and international treaty provisions. You will not remove any copyright notice from the Materials. You agree to prevent unauthorized copying of the Materials. Except as expressly provided herein, Intel does not grant any express or implied right to you under Intel patents, copyrights, trademarks, or trade secret information.\n\nREPLACEMENTS:\nThe Materials are provided \"AS IS\" without warranty of any kind.\n\nUSER SUBMISSIONS:\nYou agree that any material, information, or other communication, including all data, images, sounds, text, and other things embodied therein, you transmit or post to an Intel website will be considered non-confidential (\"Communications\"). Intel will have no confidentiality obligations with respect to the Communications. You agree that Intel and its designees will be free to copy, modify, create derivative works, publicly display, disclose, distribute, license and sublicense through multiple tiers of distribution and licensees, incorporate, and otherwise use the Communications, including derivative works thereto, for any and all commercial or non-commercial purposes.\n\nLIMITATION OF LIABILITY:\nTHE ABOVE REPLACEMENT PROVISION IS THE ONLY WARRANTY OF ANY KIND. INTEL OFFERS NO OTHER WARRANTY EITHER EXPRESS OR IMPLIED INCLUDING THOSE OF MERCHANTABILITY, NONINFRINGEMENT OF THIRD-PARTY INTELLECTUAL PROPERTY, OR FITNESS FOR A PARTICULAR PURPOSE. NEITHER INTEL NOR ITS SUPPLIERS SHALL BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF INTEL HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. BECAUSE SOME JURISDICTIONS PROHIBIT THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU.\n\nTERMINATION OF THIS LICENSE:\nIntel may terminate this license at any time if you are in breach of any of its terms and conditions. Upon termination, you will immediately destroy the Materials or return all copies of the Materials to Intel along with any copies you have made.\n\nU.S. GOVERNMENT RESTRICTED RIGHTS:\nThe Materials are provided with \"RESTRICTED RIGHTS.\" Use, duplication, or disclosure by the Government is subject to restrictions set forth in FAR52.227-14 and DFAR252.227-7013 et. seq. or its successor. Use of the Materials by the Government constitutes acknowledgement of Intel's rights in them.\n\nAPPLICABLE LAWS:\nAny claim arising under or relating to this Agreement shall be governed by the internal substantive laws of the State of Delaware or federal courts located in Delaware, without regard to principles of conflict of laws. You may not export the Materials in violation of applicable export laws.", + "json": "intel-code-samples.json", + "yaml": "intel-code-samples.yml", + "html": "intel-code-samples.html", + "license": "intel-code-samples.LICENSE" + }, + { + "license_key": "intel-confidential", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-intel-confidential", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "INTEL CONFIDENTIAL\nThe source code contained or described herein and all documents related to the source\ncode (\"\"Material\"\") are owned by Intel Corporation or its suppliers or licensors. Title to\nthe Material remains with Intel Corporation or its suppliers and licensors. The Material\ncontains trade secrets and proprietary and confidential information of Intel or its\nsuppliers and licensors. The Material is protected by worldwide copyright and trade\nsecret laws and treaty provisions. No part of the Material may be used, copied,\nreproduced, modified, published, uploaded, posted, transmitted, distributed, or disclosed\nin any way without Intel's prior express written permission.\n\nNo license under any patent, copyright, trade secret or other intellectual property\nright is granted to or conferred upon you by disclosure or delivery of the Materials,\neither expressly, by implication, inducement, estoppel or otherwise. Any license under\nsuch intellectual property rights must be express and approved by Intel in writing.\nUnless otherwise agreed by Intel in writing, you may not remove or alter this notice\nor any other notice embedded in Materials by Intel or Intel\u2019s suppliers or licensors in any way", + "json": "intel-confidential.json", + "yaml": "intel-confidential.yml", + "html": "intel-confidential.html", + "license": "intel-confidential.LICENSE" + }, + { + "license_key": "intel-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "TERMS AND CONDITIONS\n IMPORTANT - PLEASE READ BEFORE INSTALLING OR USING THIS INTEL(C) SOFTWARE\n\nDo not use or load this firmware (the \"Software\") until you have carefully read\nthe following terms and conditions. By loading or using the Software, you agree\nto the terms of this Agreement. If you do not wish to so agree, do not install\nor use the Software.\n\nLICENSEES:\n\nPlease note: \n\n* If you are an End-User, only Exhibit A, the SOFTWARE LICENSE AGREEMENT,\n applies.\n* If you are an Original Equipment Manufacturer (OEM), Independent Hardware\n Vendor (IHV), or Independent Software Vendor (ISV), this complete Agreement\n applies \n\n--------------------------------------------------------------------------------\n\nFor OEMs, IHVs, and ISVs:\n\nLICENSE. This Software is licensed for use only in conjunction with Intel\ncomponent products. Use of the Software in conjunction with non-Intel component\nproducts is not licensed hereunder. Subject to the terms of this Agreement,\nIntel grants to you a nonexclusive, nontransferable, worldwide, fully paid-up\nlicense under Intel's copyrights to: (i) copy the Software internally for your\nown development and maintenance purposes; (ii) copy and distribute the Software\nto your end-users, but only under a license agreement with terms at least as\nrestrictive as those contained in Intel's Final, Single User License Agreement,\nattached as Exhibit A; and (iii) modify, copy and distribute the end-user\ndocumentation which may accompany the Software, but only in association with\nthe Software. \n\nIf you are not the final manufacturer or vendor of a computer system or software\nprogram incorporating the Software, then you may transfer a copy of the\nSoftware, including any related documentation (modified or unmodified) to your\nrecipient for use in accordance with the terms of this Agreement, provided such\nrecipient agrees to be fully bound by the terms hereof. You shall not otherwise\nassign, sublicense, lease, or in any other way transfer or disclose Software to\nany third party. You may not, nor may you assist any other person or entity to\nmodify, translate, convert to another programming language, decompile, reverse\nengineer, or disassemble any portion of the Software or otherwise attempt to\nderive source code from any object code modules of the Software or any internal\ndata files generated by the Software. Your rights to redistribute the Software\nshall be contingent upon your installation of this Agreement in its entirety in\nthe same directory as the Software.\n\nCONTRACTORS. For the purpose of this Agreement, and notwithstanding anything \nto the contrary hereunder, solely with respect to the requirements for \ncompliance with the terms hereunder, any contractors or consultants that You \nuse to perform the work or otherwise assist You in the development or products \nusing this Software shall be deemed to be End Users and accordingly, upon \nreceipt of the Software, shall be bound by the terms of Exhibit A, Software \nLicense Agreement. No additional agreement between You and such consultants or \ncontractors is required under this Agreement to detail such compliance.\n\nTRADEMARKS. Except as expressly provided herein, you shall not use Intel's \nname in any publications, advertisements, or other announcements without \nIntel's prior written consent. You do not have any rights to use any Intel \ntrademarks or logos.\n\nOWNERSHIP OF SOFTWARE AND COPYRIGHTS. Software and accompanying materials, if\nany, are owned by Intel or its suppliers and licensors and may be protected by\ncopyright, trademark, patent and trade secret law and international treaties. \nAny rights, express or implied, in the intellectual property embodied in the\nforegoing, other than those specified in this Agreement, are reserved by Intel\nand its suppliers and licensors or otherwise as set forth in any applicable\nopen source license agreement. You will keep the Software free of liens,\nattachments, and other encumbrances. You agree not to remove any proprietary\nnotices and/or any labels from the Software and accompanying materials without\nprior written approval by Intel\n\nLIMITATION OF LIABILITY. IN NO EVENT SHALL INTEL OR ITS SUPPLIERS AND LICENSORS\nBE LIABLE FOR ANY DAMAGES WHATSOEVER FROM ANY CAUSE OF ACTION OF ANY KIND\n(INCLUDING, WITHOUT LIMITATION, LOST PROFITS, BUSINESS INTERRUPTION, OR LOST\nINFORMATION) ARISING OUT OF THE USE, MODIFICATION, OR INABILITY TO USE THE\nINTEL SOFTWARE, OR OTHERWISE, NOR FOR PUNITIVE, INCIDENTAL, CONSEQUENTIAL, OR\nSPECIAL DAMAGES OF ANY KIND, EVEN IF INTEL OR ITS SUPPLIERS AND LICENSORS HAS\nBEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS PROHIBIT\nEXCLUSION OR LIMITATION OF LIABILITY FOR IMPLIED WARRANTIES, CONSEQUENTIAL OR\nINCIDENTAL DAMAGES, SO CERTAIN LIMITATIONS MAY NOT APPLY. YOU MAY ALSO HAVE\nOTHER LEGAL RIGHTS THAT VARY BETWEEN JURISDICTIONS. \n\nEXCLUSION OF WARRANTIES. THE SOFTWARE IS PROVIDED \"AS IS\" AND POSSIBLY WITH\nFAULTS. UNLESS EXPRESSLY AGREED OTHERWISE, INTEL AND ITS SUPPLIERS AND\nLICENSORS DISCLAIM ANY AND ALL WARRANTIES AND GUARANTEES, EXPRESS, IMPLIED OR\nOTHERWISE, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nNONINFRINGEMENT, OR FITNESS FOR A PARTICULAR PURPOSE. Intel does not warrant\nor assume responsibility for the accuracy or completeness of any information,\ntext, graphics, links or other items contained within the Software. You assume\nall liability, financial or otherwise, associated with Your use or disposition\nof the Software.\n\t\t\nAPPLICABLE LAW. Claims arising under this Agreement shall be governed by the\nlaws of State of California], excluding its principles of conflict of laws and\nthe United Nations Convention on Contracts for the Sale of Goods. \n\nWAIVER AND AMENDMENT. No modification, amendment or waiver of any provision of\nthis Agreement shall be effective unless in writing and signed by an officer of\nIntel. No failure or delay in exercising any right, power, or remedy under\nthis Agreement shall operate as a waiver of any such right, power or remedy. \nWithout limiting the foregoing, terms and conditions on any purchase orders or\nsimilar materials submitted by you to Intel, and any terms contained in Intel\u0092s\nstandard acknowledgment form that are in conflict with these terms, shall be of\nno force or effect.\n\nSEVERABILITY. If any provision of this Agreement is held by a court of\ncompetent jurisdiction to be contrary to law, such provision shall be changed\nand interpreted so as to best accomplish the objectives of the original\nprovision to the fullest extent allowed by law and the remaining provisions of\nthis Agreement shall remain in full force and effect.\n\nEXPORT RESTRICTIONS. Each party acknowledges that the Software is subject to\napplicable import and export regulations of the United States and of the\ncountries in which each party transacts business, specifically including U.S.\nExport Administration Act and Export Administration Regulations. Each party\nshall comply with such laws and regulations, as well as all other laws and\nregulations applicable to the Software. Without limiting the generality of the\nforegoing, each party agrees that it will not export, re-export, transfer or\ndivert any of the Software or the direct programs thereof to any restricted\nplace or party in accordance with U.S. export regulations. Note that Software\ncontaining encryption may be subject to additional restrictions.\n\nGOVERNMENT RESTRICTED RIGHTS. The Software is provided with \"RESTRICTED RIGHTS.\"\nUse, duplication, or disclosure by the Government is subject to restrictions as\nset forth in FAR52.227-14 and DFAR252.227-7013 et seq. or their successors. Use\nof the Software by the Government constitutes acknowledgment of Intel's\nproprietary rights therein. Contractor or Manufacturer is Intel Corporation,\n2200 Mission College Blvd., Santa Clara, CA 95052.\n\nTERMINATION OF THE AGREEMENT. Intel may terminate this Agreement if you violate\nits terms. Upon termination, you will immediately destroy the Software or\nreturn all copies of the Software to Intel.\n\n--------------------------------------------------------------------------------\n\nEXHIBIT \"A\"\n\nSOFTWARE LICENSE AGREEMENT (Final, Single User)\n\nIMPORTANT - READ BEFORE COPYING, INSTALLING OR USING.\n\nDo not use or load this firmware image (the \"Software\") until you have carefully\nread the following terms and conditions. By loading or using the Software, you\nagree to the terms of this Agreement. If you do not wish to so agree, do not\ninstall or use the Software.\n\nLICENSE. You may copy and use the Software, subject to these conditions: \n1. This Software is licensed for use only in conjunction with Intel component\n products. Use of the Software in conjunction with non-Intel component \n products is not licensed hereunder. \n2. You may not copy, modify, rent, sell, distribute or transfer any part of the\n Software except as provided in this Agreement, and you agree to prevent\n unauthorized copying of the Software. \n3. You may not reverse engineer, decompile, or disassemble the Software. \n4. You may not sublicense the Software. \n5. The Software may contain the software or other property of third party\n suppliers. \n\nOWNERSHIP OF SOFTWARE AND COPYRIGHTS. Title to all copies of the Software\nremains with Intel or its suppliers. The Software is copyrighted and protected\nby the laws of the United States and other countries, and international treaty\nprovisions. You may not remove any copyright notices from the Software. Intel\nmay make changes to the Software, or items referenced therein, at any time\nwithout notice, but is not obligated to support or update the Software. Except\nas otherwise expressly provided, Intel grants no express or implied right under\nIntel patents, copyrights, trademarks, or other intellectual property rights.\nYou may transfer the Software only if a copy of this license accompanies the \nSoftware and the recipient agrees to be fully bound by these terms.\n\nEXCLUSION OF OTHER WARRANTIES EXCEPT AS PROVIDED ABOVE, THE SOFTWARE IS PROVIDED\n\"AS IS\" WITHOUT ANY EXPRESS OR IMPLIED WARRANTY OF ANY KIND INCLUDING\nWARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT, OR FITNESS FOR A PARTICULAR\nPURPOSE. Intel does not warrant or assume responsibility for the accuracy or\ncompleteness of any information, text, graphics, links or other items contained\nwithin the Software.\n\nLIMITATION OF LIABILITY. IN NO EVENT SHALL INTEL OR ITS SUPPLIERS BE LIABLE FOR\nANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, LOST PROFITS, BUSINESS\nINTERRUPTION, OR LOST INFORMATION) ARISING OUT OF THE USE OF OR INABILITY TO\nUSE THE SOFTWARE, EVEN IF INTEL HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES. SOME JURISDICTIONS PROHIBIT EXCLUSION OR LIMITATION OF LIABILITY FOR\nIMPLIED WARRANTIES OR CONSEQUENTIAL OR INCIDENTAL DAMAGES, SO THE ABOVE\nLIMITATION MAY NOT APPLY TO YOU. YOU MAY ALSO HAVE OTHER LEGAL RIGHTS THAT VARY\nBETWEEN JURISDICTIONS.\n\nTERMINATION OF THIS AGREEMENT. Intel may terminate this Agreement at any time if\nyou violate its terms. Upon termination, you will immediately destroy the\nSoftware.\n\nAPPLICABLE LAWS. Claims arising under this Agreement shall be governed by the\nlaws of California, excluding its principles of conflict of laws and the United\nNations Convention on Contracts for the Sale of Goods. You may not export the\nSoftware in violation of applicable export laws and regulations. Intel is not\nobligated under any other agreements unless they are in writing and signed by\nan authorized representative of Intel.\n\nGOVERNMENT RESTRICTED RIGHTS. The Software is provided with \"RESTRICTED RIGHTS.\"\nUse, duplication, or disclosure by the Government is subject to restrictions as\nset forth in FAR52.227-14 and DFAR252.227-7013 et seq. or their successors. Use\nof the Software by the Government constitutes acknowledgment of Intel's\nproprietary rights therein. Contractor or Manufacturer is Intel Corporation,\n2200 Mission College Blvd., Santa Clara, CA 95052.", + "json": "intel-firmware.json", + "yaml": "intel-firmware.yml", + "html": "intel-firmware.html", + "license": "intel-firmware.LICENSE" + }, + { + "license_key": "intel-master-eula-sw-dev-2016", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-master-eula-sw-dev-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "IMPORTANT INFORMATION ABOUT YOUR RIGHTS, OBLIGATIONS AND THE USE OF YOUR DATA - READ AND AGREE BEFORE COPYING, INSTALLING OR USING\nThis Agreement forms a legally binding contract between you, or the company or other legal entity (\"Legal Entity\") for which you represent and warrant that you have the legal authority to bind that Legal Entity, are agreeing to this Agreement (each, \"You\" or \"Your\") and Intel Corporation and its subsidiaries (collectively \"Intel\") regarding Your use of the Materials. By copying, installing, distributing, publicly displaying, or otherwise using the Materials, You agree to be bound by the terms of this Agreement. If You do not agree to the terms of this Agreement, do not copy, install, distribute, publicly display, or use the Materials. You affirm that You are 18 years old or older or, if not, Your parent, legal guardian or Legal Entity must agree and enter into this Agreement.\n\nDATA COLLECTION. The Materials may contain certain features that generate, collect, and transmit data to Intel about the installation, setup, and use of the Materials. The purposes of data collection are: 1) to verify compliance with the terms of this Agreement; and 2) to enable Intel to develop, improve, and support Intel\u2019s products and services. When data is collected to verify compliance with the terms of this Agreement, this collection may be mandatory and a condition of using the Materials. This data includes the Material\u2019s unique serial number combined with other information about the Materials and Your computer.\n\nWhen Materials are made available for use free of charge, the collection of usage data (such as randomly generated unique identifier and component/feature/function usage) may also be mandatory and a condition of using the Materials. Data collected about the installation, setup, and use of the Materials may be collated with other available data only if: 1) the purpose is to develop, improve, and support Intel\u2019s products and services, and 2) the data will not be used to identify or contact You or other individuals.\n\nTo learn more about Intel\u2019s data collection for these Materials, please visit: https://software.intel.com/en- us/articles/data-collection. To learn more about Intel\u2019s privacy practices, please visit http://www.intel.com/privacy.\n\nThird Party Programs (as defined below), even if included with the distribution of the Materials, are governed by separate license terms, including without limitation, third party license terms, other Intel software license terms, and open source software license terms. Such separate license terms (and not this Agreement) solely govern Your use of the Third Party Programs.\n\n1.\tLICENSE DEFINITIONS:\n\nA.\t\"Confidential Information\" means all Materials (as defined below), including any portions thereof, that are identified (in the product release notes, on Intel\u2019s download website for the Materials or elsewhere) or labeled as Intel confidential information or a similar legend.\n\nB.\t\"Excluded License\" means a license that requires, as a condition of use, modification, or distribution, that the licensed software or other software incorporated into, derived from or distributed with such software (a) be disclosed or distributed in Source Code form; (b) be licensed by the user to third parties for the purpose of making and/or distributing derivative works; or (c) be redistributable at no charge. Excluded Licenses include, without limitation, licenses that license or distribute software under any of the following licenses or distribution models, or licenses or distribution models substantially similar to any of the following: (a) GNU\u2019s General Public License (GPL) or Lesser/Library GPL (LGPL), (b) the Artistic License (e.g., PERL), (c) the Mozilla Public License, (d) the Netscape Public License, (e) the Sun Community Source License (SCSL), (f) the Sun Industry Source License (SISL), and (g) the Common Public License (CPL).\n\nC.\t\"Licensed Patent Claims\" means the claims of Intel\u2019s patents that are necessarily and directly infringed by the reproduction and distribution of the Materials that is authorized in Section 2 below, when the Materials is in its unmodified form as delivered by Intel to You and not modified or combined with anything else. Licensed Patent Claims are only those claims that Intel can license without paying, or getting the consent of, a third party.\n\nD.\t\"Materials\" are defined as the software, documentation, the software product serial number and license key codes (if applicable), and other materials, including any modifications, updates and upgrades thereto, that are provided to You under this Agreement. Materials also include any\n \nRedistributables, Source Code, and Pre-Release Materials, as defined below but do not include Third Party Programs.\n\nE.\t\"Microsoft Platforms\" means any current and future Microsoft operating system products, Microsoft run-time technologies (such as the .NET Framework), and Microsoft application platforms (such as Microsoft Office or Microsoft Dynamics) that Microsoft offers.\n\nF.\t\"Pre-Release Materials\" means the Materials, or portions thereof, that are identified (in the product release notes, on Intel\u2019s download website for the Materials or elsewhere) or labeled as pre-release, and as such the Pre-Release Materials are deemed to be pre-release code (e.g., alpha or beta release, etc.), which may not be fully functional and which Intel may substantially modify in development of a commercial version, and for which Intel makes no assurances that it will ever develop or make generally available a commercial version.\n\nG.\t\"Redistributables\" (if any) are the files listed in the following text files that may be included in the Materials for the applicable Intel Software Development Product: clredist.txt, credist.txt, fredist.txt, redist.txt, and redist-rt.txt.\n\nH.\t\"Sample Source Code\" is those portions of the Materials that are Source Code files and are identified as sample source code, including without limitation, the IPP Sample Source.\n\nI.\t\"Source Code\" is defined as the software (and not documentation or text) portion of the Materials provided in human readable format, and includes modifications to the Source Code that You make or are made on Your behalf as expressly permitted under the terms of this Agreement.\n\nJ.\t\"Third Party Programs\" (if any) are the files listed in the \"third-party-programs.txt\" text file that may be included in the Materials for the applicable software.\n\nK.\t\"Your Product\" means one or more applications or products developed by or for You using the Materials.\n\n2.\tLICENSE GRANT:\n\n2.1\tSubject to the terms and conditions of this Agreement, and timely payment of any fees (if applicable), Intel grants You a non-exclusive, worldwide, perpetual (subject to Section 11 below), non- assignable (except as expressly permitted hereunder), limited right and license:\n\nA.\tunder its copyrights, to:\n\n(1)\treproduce copies of the Materials for Your internal business use in accordance with the documentation included as part of the Materials, and subject to the applicable license rights and restrictions specified in Section 3 below; provided, however, that this license does not include the right to sublicense and may only be exercised by You or Your employees;\n\n(2)\tuse the Materials solely for Your internal business use to develop Your Product, in accordance with the applicable license rights and restrictions specified in Section 3 below and the documentation or text files included as part of the Materials; provided, however, that this license does not include the right to sublicense and may only be exercised by You or Your employees;\n\n(3)\tmodify or create derivative works of the Materials, or any portions thereof, that are provided in Source Code form, provided, however, that this license does not include the right to sublicense and may be exercised only by You or Your employees;\n\n(4)\tpublicly perform, display, and distribute (directly and through Your distributors, resellers and other channel partners) or otherwise make publicly available the Redistributables, including any modifications to or derivative works of the Redistributables made pursuant to Section 2.1.A(3), or any portions thereof, subject to the following restrictions:\n \n(i)\tany distribution of the Redistributables must only be as part of Your Product which must add significantly more functionality than the Redistributables themselves;\n\n(ii)\tany additional restrictions which may appear in the Redistributables text files specified in Section 1.G above and in Section 3 below; and\n\n(iii)\tthe license under Section 2.1.A(4) includes the right to sublicense the Redistributables, but the sublicense rights are limited to sublicensing of any Intel copyrights in the Redistributables and only to the extent necessary to perform, display, and distribute the Redistributables (including Your modifications and derivative works thereto) solely as incorporated in Your Product. IF YOU RECEIVED THE MATERIALS FOR EVALUATION, YOU HAVE NO RIGHTS TO DISTRIBUTE THE REDISTRIBUTABLES, INCLUDING WITHOUT LIMITATION, ANY PORTIONS, MODIFICATIONS OR DERIVATIVE WORKS.\n\n(iv)\tDistribution of the Redistributables is also subject to the following limitations: You (a) will be solely responsible to Your customers for any update, support obligation or other liability which may arise from the distribution, (b) will not make any statement that Your Product is \"certified\" or that its performance is guaranteed by Intel, (c) will not use Intel's name or trademarks to market Your Product without written permission from Intel, (d) will provide the Redistributables subject to a license agreement that prohibits disassembly and reverse engineering of the Redistributables except in cases when you provide Your Product subject to an open source license that is not an Excluded License, for example, the BSD license, or the MIT license, (e) will indemnify, hold harmless, and defend Intel and its suppliers from and against any claims or lawsuits, including attorney's fees, that arise or result from Your modifications, derivative works or Your distribution of Your Product.\n\nand\n\nB.\tunder Intel\u2019s Licensed Patent Claims, to:\n\n(1)\tmake copies of the Materials only as specified in Section 2.1.A(1);\n\n(2)\tuse the Materials only as specified in Section 2.1.A(2); and\n\n(3)\toffer to distribute, and distribute, but not sell, the Redistributables only as part of Your Product, under Intel\u2019s copyright license granted in Section 2.1(A), but only under the terms of that copyright license and not as a sale (but this right does not include the right to sub- license);\n\n(4)\tprovided, further, that the license under the Licensed Patent Claims does not and will not apply to any modifications to, or derivative works of, the Materials, whether made by You, Your customer (which, for all purposes under this Agreement, will mean either a customer, reseller, distributor or other channel partner), or any third party even if the modification and derivative works are permitted under 2.1(A)(3).\n\n2.2\tIf the Materials You receive are packaged, as a single orderable item (i.e., as a single SKU), with hardware that includes one or more Intel manufactured microprocessors (\"Intel Target Hardware\"), then the licenses granted in Section 2.1 above are restricted to the sole purpose of producing and releasing Your Product to execute on computer systems that include the same or new versions of the Intel manufactured microprocessor included in the Intel Target Hardware.\n\nIntel expressly does not grant You a patent license in this Agreement to any modifications or derivative works of the Materials, whether made by You, Your contractor, Your customer, or any other third party in creating the derivative works even to the extent creation of derivative works is permitted under Section 2.1(A)(3) above.\n\n3.\tLICENSE CONDITIONS:\n \nA.\tIf You are an entity, each of Your employees and Your contractors may use the Materials as specified in Section 2 above, provided: (i) their use of the Materials is solely on behalf of and in support of Your business, (ii) they agree to the terms and conditions of this Agreement, and (iii) You are solely responsible for their use of the Materials.\n\nB.\tIf Your Product is a software development library, then attribution (if any), as specified in the product release notes of the corresponding Materials shall be displayed prominently in Your Product\u2019s associated documentation and on the web site (if any) for Your Product.\n\nC.\tIf You receive Your first copy of the Materials electronically, and a second copy on media, then you may use the second copy only in accordance with Your applicable license stated in this Agreement, or for backup or archival purposes. You may not provide the second copy to another user.\n\nD.\tIf the Materials You received are identified as Pre-Release Materials, (i) You have the right to use the Pre-Release Materials only for the duration of the pre-release term, which is specified in the product release notes, on Intel\u2019s download website for the Materials or elsewhere, or until the commercial release, if any, of the Pre-Release Materials, whichever is shorter, and (ii) You may not disclose to any third party any benchmarks, performance results, or other information relating to the Pre-Release Materials.\n\nE.\tNotwithstanding anything to the contrary in this Agreement, if the Materials include the text file named \"site_license_materials.txt\" the files specified in that text file may be installed on computer systems located only at a single site (unless multiple sites are specified in the purchase order accepted by Intel or its resellers), and those files may be accessed or used by unlimited and simultaneous users, subject to their compliance with all of the terms and conditions of this Agreement.\n\nF.\tExcept as expressly provided in this Agreement, You may NOT: (i) use, copy, distribute, or publicly display the Materials; (ii) rent or lease the Materials to any third party; (iii) assign this Agreement or transfer the Materials; (iv) modify, adapt, or translate the Materials in whole or in part; (v) reverse engineer, decompile, or disassemble the Materials; (vi) attempt to modify or tamper with the normal function of any license manager that may regulate usage of the Materials; (vii) distribute, sublicense or transfer the Source Code form of any components of the Materials or derivatives thereof to any third party; (viii) distribute Redistributables except as part of a larger program that adds significant primary functionality different from that of the Redistributables; (ix) distribute the Redistributables to run on a platform other than a Microsoft Platform if according to the accompanying user documentation the Materials are meant to execute only on a Microsoft Platform; (x) include the Redistributables in malicious, deceptive, or unlawful programs or products; or (xi) modify, create a derivative work, link, or distribute the Materials so that any part of it becomes subject to an Excluded License.\n\nG.\tThe scope and term of Your license depends on the type of license You are provided by Intel. The variety of license types are set forth below, which may not be available for all \"Intel(R) Software Development Products\" and therefore may not apply to the particular Materials You are licensing. For more information on the types of licenses, please contact Intel or Your sales representative.\n\ni.\tEVALUATION LICENSE: If You obtained the Materials pursuant to an evaluation license, You may use the Materials only for internal evaluation purposes and only for the term of the evaluation period, as specified on Intel\u2019s download website or which may be controlled by the license key for the Materials. NOTWITHSTANDING ANYTHING TO THE CONTRARY ELSEWHERE IN THIS AGREEMENT, YOU MAY USE THE MATERIALS ONLY FOR EVALUATION PURPOSES AND ONLY FOR THE TERM OF THE EVALUATION, YOU MAY NOT DISTRIBUTE ANY PORTION OF THE MATERIALS, AND THE APPLICATION AND/OR PRODUCT DEVELOPED BY YOU MAY ONLY BE USED FOR EVALUATION PURPOSES AND ONLY FOR THE TERM OF THE EVALUATION. You may install copies of the Materials on a reasonable number of computers to conduct Your evaluation provided that You are the only individual using the Materials and only one copy of the Materials is in use at any one time. A separate license key is required for each additional use and/or individual user in all other cases, including without limitation, use by persons, computer systems, and other use methods\n \nknown now and in the future. Intel may provide You with a license key that enables the Materials for an evaluation license. If You are an entity, Intel grants You the right to designate one individual within Your organization to have the sole right to use the Materials in the manner provided above.\n\nii.\tNONCOMMERCIAL USE LICENSE: If You obtained the Materials under a noncommercial use license, You may use the Materials only for non-commercial use where You receive no fee, salary or any other form of compensation. The Materials may not be used for any other purpose, whether \"for profit\" or \"not for profit.\" Any work performed or produced as a result of use of the Materials cannot be performed or produced for the benefit of other parties for a fee, compensation or any other reimbursement or remuneration. You may install copies of the Materials on an unlimited number of computers provided that You are the only individual using the Materials and only one copy of the Materials is in use at any one time. A separate license is required for each additional use and/or individual user in all other cases, including without limitation, use by persons, computer systems, and other methods of use known now and in the future. Intel will provide You with a license key that enables the Materials for a noncommercial- use license. If You obtained a time-limited noncommercial-use license, the duration (time period) of Your license and Your ability to use the Materials is limited to the time period of the obtained license, which is specified on Intel\u2019s download website, specified in the applicable documentation or controlled by the license key for the Materials.\n\niii.\tNAMED-USER LICENSE: If You obtained the Materials under a named-user license, You may allow only one (1) individual to install and use the Materials on no more than three (3) computers provided that same individual is using the Materials only on one (1) computer at a time. If You obtained a time-limited named-user license, the term of Your license and your ability to use the Materials is limited to the time period of the obtained license, which is specified on Intel\u2019s download website, specified in the applicable documentation or controlled by the license key for the Materials.\n\niv.\tNODE-LOCKED LICENSE: If You obtained the Materials under a node-locked license, You may use the Materials only on a single designated computer by no more than the authorized number of concurrent users. If You obtained a time-limited node-locked license, the term of Your license and Your ability to use the Materials is limited to the time period of the obtained license, which is specified on Intel\u2019s download website, specified in the applicable documentation or controlled by the license key for the Materials.\n\nv.\tFLOATING LICENSE: If You obtained the Materials under a floating license, you may (a) install the Materials on an unlimited number of computers that are connected to the designated network and (b) use the Material by no more than the authorized number of concurrent individual users. If You obtained a time-limited Floating license key, the term of Your license and Your ability to use the Materials is limited to the time period of the obtained license, which is specified on Intel\u2019s download website, specified in the applicable documentation or controlled by the license key for the Materials.\n\nH.\tMEDIA FORMAT CODECS AND DIGITAL RIGHTS MANAGEMENT. You acknowledge and agree that your use of the Materials or distribution of the Materials with Your Product as permitted by this license may require you to procure license(s) from one or more third parties that may hold intellectual property rights applicable to any media decoding, encoding or transcoding technology (such as, for example, through use of an audio or video codec) and/or digital rights management capabilities of the Materials, if any. Should any such additional licenses be required, You are solely responsible for obtaining any such licenses and agree to obtain any such licenses at Your own expense.\n\nI.\tMATERIALS TRANSFER: Except for the Pre-Release Licenses or Evaluation Licenses or Non- Commercial Licenses, as specified above, You may permanently transfer the Materials you received pursuant to a license type listed in Section 4(G) above, and all of Your rights under this Agreement, to another party (\"Recipient\") solely in conjunction with a change of ownership, merger, acquisition, sale or transfer of all or substantially all of Your business or assets, either voluntarily, by operation of law or otherwise subject to the following: You must notify Intel of the transfer by sending a letter to Intel (i) identifying the legal entities of Recipient and You, (ii) identifying the Materials (i.e., the specific Intel software and version) and the associated serial numbers to be transferred, (iii) certifying that You retain no copies of the Materials or portions thereof, (iv) certifying that the Recipient has agreed in writing to be bound by all of the terms and conditions of this Agreement, (v) certifying that the Recipient has been notified that in order to receive support from Intel for the Materials they must notify Intel in writing of the transfer and provide Intel with the information specified in subsection (ii) above along with the name and email address of the individual assigned to use the Materials, and (vi) providing Your email address so that Intel may confirm receipt of Your letter. Please send such letter to:\n\nIntel Corporation 2111 NE 25th Avenue Hillsboro, OR 97124\nAttn: DPD Contracts Management, JF1-15\n\n4.\tPRIVACY:\n\nA.\tData Collection: Based on the personal information You provided to Intel when You registered the license to the Materials with Intel, Intel has collected or will collect certain personal information from You in order to contact You regarding updates to the Materials, and regarding Your experience with obtaining, installing and otherwise using Materials, including sending You surveys to obtain the aforementioned information.\n\nB.\tRevoking Consent to Data Collection: You can revoke Your consent to this collection of personal information at any time by clicking on the link to \"unsubscribe\" at the bottom of any communication from Intel related to the Materials which will allow You to opt-out of receiving future messages related to the Materials.\n\nC.\tIntel\u2019s Privacy Notice: Intel is committed to respecting Your privacy. To learn more about Intel\u2019s privacy practices, please visit http://www.intel.com/privacy.\n\n5.\tOWNERSHIP: Title to the Materials and all copies thereof remain with Intel or its suppliers. The Materials are protected by intellectual property rights, including without limitation, United States copyright laws and international treaty provisions. You will not remove any copyright or other proprietary notice from the Materials. You agree to prevent any unauthorized copying of the Materials. Except as expressly provided herein, no license or right is granted to You directly or by implication, inducement, estoppel or otherwise; specifically Intel does not grant any express or implied right to You under Intel patents, copyrights, trademarks, or trade secrets.\n\n6.\tNO WARRANTY AND NO SUPPORT: Disclaimer. Intel disclaims all warranties of any kind and the terms and remedies provided in this Agreement are instead of any other warranty or condition, express, implied or statutory, including those regarding merchantability, fitness for any particular purpose, non-infringement or any warranty arising out of any course of dealing, usage of trade, proposal, specification or sample. Intel does not assume (and does not authorize any person to assume on its behalf) any other liability.\n\nIntel may make changes to the Materials, or to items referenced therein, at any time without notice, but is not obligated to support, update or provide training for the Materials. Intel may in its sole discretion offer such support, update or training services under separate terms at Intel\u2019s then-current rates. You may request additional information on Intel\u2019s service offerings from an Intel sales representative.\n\n7.\tLIMITATION OF LIABILITY: Neither Intel nor its suppliers shall be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other loss) arising out of the use of or inability to use the Materials, even if Intel has been advised of the possibility of such damages. Because some jurisdictions prohibit the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply to you.\n \n8.\tUNAUTHORIZED USE: The Materials are not designed, intended, or authorized for use in any type of a system or application in which the failure of the Materials could create a situation where personal injury or death may occur (e.g., medical systems, life sustaining or lifesaving systems). Should You use the Materials for any such unintended or unauthorized use, You hereby indemnify, defend, and hold Intel and its officers, subsidiaries and affiliates harmless against all claims, costs, damages, expenses, and reasonable attorney fees arising out of, directly or indirectly, such use and any claim of product liability, personal injury or death associated with such unintended or unauthorized use, even if such claim alleges that Intel was negligent regarding the design or manufacture of the Materials.\n\n9.\tUSER SUBMISSIONS: This Agreement does not obligate You to provide Intel with materials, information, comments, suggestions or other communication regarding the Materials. However, You agree that any material, information, comments, suggestions or other communication You transmit or post to an Intel website (including but not limited to, submissions to the Intel Premier Support and/or other customer support websites or online portals) or provide to Intel under this Agreement are not controlled by the International Traffic in Arms Regulations (ITAR) or the Export Administration Regulation (EAR), and if related to the features, functions, performance or use of the Materials are deemed non-confidential and non-proprietary (\"Communications\"). Intel will have no obligations with respect to the Communications. You hereby grant to Intel a non-exclusive, perpetual, irrevocable, royalty-free, copyright license to copy, modify, create derivative works, publicly display, disclose, distribute, license and sublicense through multiple tiers of distribution and licensees, incorporate and otherwise use the Communications and all data, images, sounds, text, and other things embodied therein, including derivative works thereto, for any and all commercial or non-commercial purposes. You are prohibited from posting or transmitting to or from an Intel website or provide to Intel any unlawful, threatening, libelous, defamatory, obscene, pornographic, or other material that would violate any law. If You wish to provide Intel with information that You intend to be treated as confidential information, Intel requires that such confidential information be provided pursuant to a non-disclosure agreement (\"NDA\"), so please contact Your Intel representative to ensure the proper NDA is in place.\n\nNothing in this Agreement will be construed as preventing Intel from reviewing Your Communications and errors or defects in Intel products discovered while reviewing Your Communications. Furthermore, nothing in this Agreement will be construed as preventing Intel from implementing independently- developed enhancements to Intel\u2019s own error diagnosis methodology to detect errors or defects in Intel products discovered while reviewing Your Communications or to implement bug fixes or enhancements in Intel products. The foregoing may include the right to include Your Communications in regression test suites.\n\n10.\tNON-DISCLOSURE: The following provisions will apply if there is no existing non-disclosure agreement between You and Intel. You will maintain the confidentiality of the Confidential Information (if any) with at least the same degree of care that You use to protect Your own confidential and proprietary information, but no less than a reasonable degree of care under the circumstances. You will not disclose the Confidential Information to any employees or to any third parties except to Your employees who have a need to know and who agree to abide by nondisclosure terms at least as comprehensive as those set forth herein; provided that You will be liable for breach by any such entity. For the purposes of this Agreement, the term \"employee\" will include Your independent contractors, who have signed confidentiality agreements with You. You will not make any copies of the Confidential Information except as necessary for Your employees with a need to know. Any copies which are made will be identified as belonging to Intel and marked \"confidential\", \"proprietary\" or with similar legend. You will not be liable for the disclosure of any Confidential Information which is (a) generally made available publicly or to third parties by Intel without restriction on disclosure; (b) rightfully received from a third party without obligation of confidentiality; (c) rightfully known to You without any limitation on disclosure prior to Your receipt from Intel; (d) independently developed by Your employees; or (e) required to be disclosed in accordance with applicable laws, regulations, court, judicial or other government order, provided that You will give Intel reasonable notice prior to such disclosure and will comply with any applicable protective order.\n\n11.\tTERMINATION OF THIS LICENSE: This Agreement becomes effective on the date You accept this Agreement and will continue until terminated as provided for in this Agreement. If You are using the Materials under a time-limited license, for example an Evaluation License, this Agreement terminates without notice on the last day of the time period, which is specified in the Materials or on Intel\u2019s website, and/or controlled by the license key code for the Materials. Intel may terminate this license immediately if You are in breach of any of its terms and conditions and such breach is not cured within thirty (30) days of written notice from Intel. Upon termination, You will immediately return to Intel or destroy the Materials and all copies thereof. In the event of termination of this Agreement, the license grant to any Materials or Redistributables distributed by You in accordance with the terms and conditions of this Agreement, prior to the effective date of such termination, will survive any such termination of this Agreement. Sections 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, and 13 will survive expiration or termination of this Agreement.\n\n12.\tU.S. GOVERNMENT RESTRICTED RIGHTS: The technical data and computer software covered by this license is a \"Commercial Item,\" as such term is defined by the FAR 2.101 (48 C.F.R. 2.101) and is \"commercial computer software\" and \"commercial computer software documentation\" as specified under FAR 12.212 (48 C.F.R. 12.212) or DFARS 227.7202 (48 C.F.R. 227.7202), as applicable. This commercial computer software and related documentation is provided to end users for use by and on behalf of the U.S. Government, with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Use for or on behalf of the U.S. Government is permitted only if the party acquiring or using this software is properly authorized by an appropriate U.S. Government official. This use by or for the U.S. Government clause is in lieu of, and supersedes, any other FAR, DFARS, or other provision that addresses Government rights in the computer software or documentation covered by this license. All copyright licenses granted to the U.S. Government are coextensive with the technical data and computer software licenses granted herein. The U.S. Government will only have the right to reproduce, distribute, perform, display, and prepare derivative works as needed to implement those rights.\n\n13.\tGENERAL PROVISIONS\n\nA.\tENTIRE AGREEMENT: This Agreement contains the complete and exclusive agreement and understanding between the parties concerning the subject matter of this Agreement, and supersedes all prior and contemporaneous proposals, agreements, understanding, negotiations, representations, warranties, conditions, and communications, oral or written, between the parties relating to the same subject matter. This Agreement, including without limitation its termination, has no effect on any signed non-disclosure agreements between the parties, which remain in full force and effect as separate agreements to their terms. Each party acknowledges and agrees that in entering into this Agreement it has not relied on, and will not be entitled to rely on, any oral or written representations, warranties, conditions, understanding, or communications between the parties that are not expressly set forth in this Agreement. The express provisions of this Agreement control over any course of performance, course of dealing, or usage of the trade inconsistent with any of the provisions of this Agreement. The provisions of this Agreement will prevail notwithstanding any different, conflicting, or additional provisions that may appear on any purchase order, acknowledgement, invoice, or other writing issued by either party in connection with this Agreement. No modification or amendment to this Agreement will be effective unless in writing and signed by authorized representatives of each party, and must specifically identify this Agreement by its title and version (e.g., \"End User License Agreement for the Intel(R) Software Development Products (Version March 2016)). If You received a copy of this Agreement translated into another language, the English language version of this Agreement will prevail in the event of any conflict between versions. Intel may make changes to the Agreement as it distributes new versions of the Materials. When these changes are made, Intel will make a new version of the Agreement available on its website: https://software.intel.com/en-us/articles/end-user-license-agreement\n\nB.\tEXPORT. You acknowledge that the Materials and all related technical information are subject to export controls under the laws and regulations of the United States and any other applicable governments. You agree to comply with these laws and regulations governing export, re-export, import, transfer, distribution, and use of the Materials. In particular, but without limitation, the Materials may not be exported or re-exported (a) into any U.S. embargoed countries or (b) to any person or entity listed on a denial order published by the U.S. government or any other applicable governments. By using the Materials, you represent and warrant that you are not located in any such country or on any such list. You also agree that you will not use the Materials for any purposes prohibited by the U.S. government or other applicable governments, including, without limitation, the development, design, manufacture or production of nuclear, missile, chemical or biological weapons. You confirm that the Materials will not be re-exported or sold to a third party who is known or suspected to be involved in activities including, without limitation, the development, design, manufacture, or production of nuclear, missile, chemical or biological weapons.\n\nC.\tGOVERNING LAW, JURISDICTION, AND VENUE: All disputes arising out of or related to this Agreement, whether based on contract, tort, or any other legal or equitable theory, will in all respects be governed by, and construed and interpreted under, the laws of the United States of America and the State of Delaware, without reference to conflict of laws principles. The parties agree that the United Nations Convention on Contracts for the International Sale of Goods (1980) is specifically excluded from and will not apply to this Agreement. All disputes arising out of or related to this Agreement, whether based on contract, tort, or any other legal or equitable theory, will be subject to the exclusive jurisdiction of the courts of the State of Delaware or of the Federal courts sitting in that State. Each party submits to the personal jurisdiction of those courts and waives all objections to that jurisdiction and venue for those disputes.\n\nD.\tSEVERABILITY: The parties intend that if a court holds that any provision or part of this Agreement is invalid or unenforceable under applicable law, the court will modify the provision to the minimum extent necessary to make it valid and enforceable, or if it cannot be made valid and enforceable, the parties intend that the court will sever and delete the provision or part from this Agreement. Any change to or deletion of a provision or part of this Agreement under this Section will not affect the validity or enforceability of the remainder of this Agreement, which will continue in full force and effect.\n\nDocument Title and Version: End User License Agreement for the Intel(R) Software Development Products (Version March 2016)\n\n* Other names and brands may be claimed as the property of others", + "json": "intel-master-eula-sw-dev-2016.json", + "yaml": "intel-master-eula-sw-dev-2016.yml", + "html": "intel-master-eula-sw-dev-2016.html", + "license": "intel-master-eula-sw-dev-2016.LICENSE" + }, + { + "license_key": "intel-material", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-intel-material", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The source code, information and material (\"Material\") contained herein is\nowned by Intel Corporation or its suppliers or licensors, and title to such\nMaterial remains with Intel Corporation or its suppliers or licensors.\n\nThe Material contains proprietary information of Intel or its suppliers and\nlicensors.\n\nThe Material is protected by worldwide copyright laws and treaty provisions.\n\nNo part of the Material may be used, copied, reproduced, modified, published,\nuploaded, posted, transmitted, distributed or disclosed in any way without\nIntel's prior express written permission.\n\nNo license under any patent, copyright or other intellectual property rights\nin the Material is granted to or conferred upon you, either expressly, by\nimplication, inducement, estoppel or otherwise. Any license under such\nintellectual property rights must be express and approved by Intel in writing. \n\nUnless otherwise agreed by Intel in writing, you may not remove or alter this\nnotice or any other notice embedded in Materials by Intel or Intel's suppliers\nor licensors in any way.", + "json": "intel-material.json", + "yaml": "intel-material.yml", + "html": "intel-material.html", + "license": "intel-material.LICENSE" + }, + { + "license_key": "intel-mcu-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-mcu-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution.\n\nRedistribution and use in binary form, without modification, are permitted, provided that the following conditions are met:\n\n Redistributions must reproduce the above copyright notice and the following disclaimer in the documentation and/or other materials provided with the distribution.\n Neither the name of Intel Corporation nor the names of its suppliers may be used to endorse or promote products derived from this software without specific prior written permission.\n No reverse engineering, decompilation, or disassembly of this software is permitted.\n\n\"Binary form\" includes any format that is commonly used for electronic conveyance that is a reversible, bit-exact translation of binary representation to ASCII or ISO text, for example \"uuencode.\"\n\nDISCLAIMER.\n\nTHIS 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.", + "json": "intel-mcu-2018.json", + "yaml": "intel-mcu-2018.yml", + "html": "intel-mcu-2018.html", + "license": "intel-mcu-2018.LICENSE" + }, + { + "license_key": "intel-microcode", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-microcode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SOFTWARE LICENSE AGREEMENT\n\nDO NOT DOWNLOAD, INSTALL, ACCESS, COPY, OR USE ANY PORTION OF THE SOFTWARE \nUNTIL YOU HAVE READ AND ACCEPTED THE TERMS AND CONDITIONS OF THIS AGREEMENT. BY \nINSTALLING, COPYING, ACCESSING, OR USING THE SOFTWARE, YOU AGREE TO BE LEGALLY \nBOUND BY THE TERMS AND CONDITIONS OF THIS AGREEMENT. If You do not agree to be \nbound by, or the entity for whose benefit You act has not authorized You to \naccept, these terms and conditions, do not install, access, copy, or use the \nSoftware and destroy all copies of the Software in Your possession. \n\nThis SOFTWARE LICENSE AGREEMENT (this \"Agreement\") is entered into between \nIntel Corporation, a Delaware corporation (\"Intel\") and You. \"You\" refers to \nyou or your employer or other entity for whose benefit you act, as applicable. \nIf you are agreeing to the terms and conditions of this Agreement on behalf of \na company or other legal entity, you represent and warrant that you have the \nlegal authority to bind that legal entity to the Agreement, in which case, \n\"You\" or \"Your\" shall be in reference to such entity. Intel and You are \nreferred to herein individually as a \"Party\" or, together, as the \"Parties\".\nThe Parties, in consideration of the mutual covenants contained in this \nAgreement, and for other good and valuable consideration, the receipt and \nsufficiency of which they acknowledge, and intending to be legally bound, agree \nas follows: \n\n1. PURPOSE. You seek to obtain, and Intel desires to provide You, under the \nterms of this Agreement, Software solely for Your efforts to develop and \ndistribute products integrating Intel hardware and Intel software. \"Software\" \nrefers to certain software or other collateral, including, but not limited to, \nrelated components, operating system, application program interfaces, device \ndrivers, associated media, printed or electronic documentation and any updates, \nupgrades or releases thereto associated with Intel product(s), software or \nservice(s). \"Intel-based product\" refers to a device that includes, \nincorporates, or implements Intel product(s), software or service(s).\n\n2. LIMITED LICENSE. Conditioned on Your compliance with the terms and \nconditions of this Agreement, Intel grants to You a limited, nonexclusive, \nnontransferable, revocable, worldwide, fully paid-up license during the term of \nthis Agreement, without the right to sublicense, under Intel's copyrights \n(subject to any third party licensing requirements), to (i) reproduce the \nSoftware only for Your own internal evaluation, testing, validation, and \ndevelopment of Intel-based products and any associated maintenance thereof; \n(ii) reproduce, display, and publicly perform an object code representation of \nthe Software, only when integrated with and executed by an Intel-based product, \nsubject to any third party licensing requirements; and (iii) distribute an \nobject code representation of the Software, provided by Intel, through multiple \nlevels of distribution, solely as embedded in or for execution on an \nIntel-based product and subject to these license terms, and if to an end user, \npursuant to a license agreement with terms and conditions at least as \nrestrictive as those contained in the Intel End User Software License Agreement \nin Appendix A hereto.\n\nIf You are not the final manufacturer or vendor of an Intel-based product \nincorporating or designed to incorporate the Software, You may transfer a copy \nof the Software to Your Original Equipment Manufacturer (OEM), Original Device \nManufacturer (ODM), distributors, or system integration partners (\"Your \nPartner\") for use in accordance with the terms and conditions of this \nAgreement, provided Your Partner agrees to be fully bound by the terms hereof \nand provided that You will remain fully liable to Intel for the actions and \ninactions of Your Partner(s).\n\n3. LICENSE RESTRICTIONS. All right, title and interest in and to the Software \nand associated documentation are and will remain the exclusive property of \nIntel and its licensors or suppliers. Unless expressly permitted under the \nAgreement, You will not, and will not allow any third party to (i) use, copy, \ndistribute, sell or offer to sell the Software or associated documentation; \n(ii) modify, adapt, enhance, disassemble, decompile, reverse engineer, change \nor create derivative works from the Software except and only to the extent as \nspecifically required by mandatory applicable laws or any applicable third \nparty license terms accompanying the Software; (iii) use or make the Software \navailable for the use or benefit of third parties; or (iv) use the Software on \nYour products other than those that include the Intel hardware product(s), \nplatform(s), or software identified in the Software; or (v) publish or provide \nany Software benchmark or comparison test results. You acknowledge that an \nessential basis of the bargain in this Agreement is that Intel grants You no \nlicenses or other rights including, but not limited to, patent, copyright, \ntrade secret, trademark, trade name, service mark or other intellectual \nproperty licenses or rights with respect to the Software and associated \ndocumentation, by implication, estoppel or otherwise, except for the licenses \nexpressly granted above. You acknowledge there are significant uses of the \nSoftware in its original, unmodified and uncombined form. You may not remove \nany copyright notices from the Software.\n\n4. LICENSE TO FEEDBACK. This Agreement does not obligate You to provide Intel \nwith materials, information, comments, suggestions, or other communication \nregarding the features, functions, performance or use of the Software \n(\"Feedback\"). If any portion of the Software is provided or otherwise made \navailable by Intel in source code form, to the extent You provide Intel with \nFeedback in a tangible form, You grant to Intel and its affiliates a \nnon-exclusive, perpetual, sublicenseable, irrevocable, worldwide, royalty-free, \nfully paid-up and transferable license, to and under all of Your intellectual \nproperty rights, whether perfected or not, to publicly perform, publicly \ndisplay, reproduce, use, make, have made, sell, offer for sale, distribute, \nimport, create derivative works of and otherwise exploit any comments, \nsuggestions, descriptions, ideas, Your Derivatives or other feedback regarding \nthe Software provided by You or on Your behalf.\n\n5. OPEN SOURCE STATEMENT. The Software may include Open Source Software (OSS) \nlicensed pursuant to OSS license agreement(s) identified in the OSS comments in \nthe applicable source code file(s) or file header(s) provided with or otherwise \nassociated with the Software. Neither You nor any OEM, ODM, customer, or \ndistributor may subject any proprietary portion of the Software to any OSS \nlicense obligations including, without limitation, combining or distributing \nthe Software with OSS in a manner that subjects Intel, the Software or any \nportion thereof to any OSS license obligation. Nothing in this Agreement limits \nany rights under, or grants rights that supersede, the terms of any applicable \nOSS license. \n\n6. THIRD PARTY SOFTWARE. Certain third party software provided with or within \nthe Software may only be used (a) upon securing a license directly from the \nowner of the software or (b) in combination with hardware components purchased \nfrom such third party and (c) subject to further license limitations by the \nsoftware owner. A listing of any such third party limitations is in one or more \ntext files accompanying the Software. You acknowledge Intel is not providing \nYou with a license to such third party software and further that it is Your \nresponsibility to obtain appropriate licenses from such third parties directly.\n\n7. CONFIDENTIALITY. The terms and conditions of this Agreement, exchanged \nconfidential information, as well as the Software are subject to the terms and \nconditions of the Non-Disclosure Agreement(s) or Intel Pre-Release Loan \nAgreement(s) (referred to herein collectively or individually as \"NDA\") entered \ninto by and in force between Intel and You, and in any case no less \nconfidentiality protection than You apply to Your information of similar \nsensitivity. If You would like to have a contractor perform work on Your behalf \nthat requires any access to or use of Software, You must obtain a written \nconfidentiality agreement from the contractor which contains terms and \nconditions with respect to access to or use of Software no less restrictive \nthan those set forth in this Agreement, excluding any distribution rights and \nuse for any other purpose, and You will remain fully liable to Intel for the \nactions and inactions of those contractors. You may not use Intel's name in any \npublications, advertisements, or other announcements without Intel's prior \nwritten consent. \n\n8. NO OBLIGATION; NO AGENCY. Intel may make changes to the Software, or items \nreferenced therein, at any time without notice. Intel is not obligated to \nsupport, update, provide training for, or develop any further version of the \nSoftware or to grant any license thereto. No agency, franchise, partnership, \njoint-venture, or employee-employer relationship is intended or created by this \nAgreement.\n\n9. EXCLUSION OF WARRANTIES. THE SOFTWARE IS PROVIDED \"AS IS\" WITHOUT ANY \nEXPRESS OR IMPLIED WARRANTY OF ANY KIND INCLUDING WARRANTIES OF \nMERCHANTABILITY, NONINFRINGEMENT, OR FITNESS FOR A PARTICULAR PURPOSE. Intel \ndoes not warrant or assume responsibility for the accuracy or completeness of \nany information, text, graphics, links or other items within the Software.\n\n10. LIMITATION OF LIABILITY. IN NO EVENT WILL INTEL OR ITS AFFILIATES, \nLICENSORS OR SUPPLIERS (INCLUDING THEIR RESPECTIVE DIRECTORS, OFFICERS, \nEMPLOYEES, AND AGENTS) BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT \nLIMITATION, LOST PROFITS, BUSINESS INTERRUPTION, OR LOST DATA) ARISING OUT OF \nOR IN RELATION TO THIS AGREEMENT, INCLUDING THE USE OF OR INABILITY TO USE THE \nSOFTWARE, EVEN IF INTEL HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \nSOME JURISDICTIONS PROHIBIT EXCLUSION OR LIMITATION OF LIABILITY FOR IMPLIED \nWARRANTIES OR CONSEQUENTIAL OR INCIDENTAL DAMAGES, SO THE ABOVE LIMITATION MAY \nIN PART NOT APPLY TO YOU. THE SOFTWARE LICENSED HEREUNDER IS NOT DESIGNED OR \nINTENDED FOR USE IN ANY MEDICAL, LIFE SAVING OR LIFE SUSTAINING SYSTEMS, \nTRANSPORTATION SYSTEMS, NUCLEAR SYSTEMS, OR FOR ANY OTHER MISSION CRITICAL \nAPPLICATION IN WHICH THE FAILURE OF THE SOFTWARE COULD LEAD TO PERSONAL INJURY \nOR DEATH. YOU MAY ALSO HAVE OTHER LEGAL RIGHTS THAT VARY FROM JURISDICTION TO \nJURISDICTION. THE LIMITED REMEDIES, WARRANTY DISCLAIMER AND LIMITED LIABILITY \nARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN INTEL AND YOU. YOU \nACKNOWLEDGE INTEL WOULD BE UNABLE TO PROVIDE THE SOFTWARE WITHOUT SUCH \nLIMITATIONS. YOU WILL INDEMNIFY AND HOLD INTEL AND ITS AFFILIATES, LICENSORS \nAND SUPPLIERS (INCLUDING THEIR RESPECTIVE DIRECTORS, OFFICERS, EMPLOYEES, AND \nAGENTS) HARMLESS AGAINST ALL CLAIMS, LIABILITIES, LOSSES, COSTS, DAMAGES, AND \nEXPENSES (INCLUDING REASONABLE ATTORNEY FEES), ARISING OUT OF, DIRECTLY OR \nINDIRECTLY, THE DISTRIBUTION OF THE SOFTWARE AND ANY CLAIM OF PRODUCT \nLIABILITY, PERSONAL INJURY OR DEATH ASSOCIATED WITH ANY UNINTENDED USE, EVEN IF \nSUCH CLAIM ALLEGES THAT INTEL OR AN INTEL AFFILIATE, LICENSORS OR SUPPLIER WAS \nNEGLIGENT REGARDING THE DESIGN OR MANUFACTURE OF THE SOFTWARE.\n\n11. TERMINATION AND SURVIVAL. Intel may terminate this Agreement for any reason \nwith thirty (30) days' notice and immediately if You or someone acting on Your \nbehalf or at Your behest violates any of its terms or conditions. Upon \ntermination, You will immediately destroy and ensure the destruction of the \nSoftware or return all copies of the Software to Intel (including providing \ncertification of such destruction or return back to Intel). Upon termination of \nthis Agreement, all licenses granted to You hereunder terminate immediately. \nAll Sections of this Agreement, except Section 2, will survive termination. \n\n12. GOVERNING LAW AND JURISDICTION. This Agreement and any dispute arising out \nof or relating to it will be governed by the laws of the U.S.A. and Delaware, \nwithout regard to conflict of laws principles. The Parties exclude the \napplication of the United Nations Convention on Contracts for the International \nSale of Goods (1980). The state and federal courts sitting in Delaware, U.S.A. \nwill have exclusive jurisdiction over any dispute arising out of or relating to \nthis Agreement. The Parties consent to personal jurisdiction and venue in those \ncourts. A Party that obtains a judgment against the other Party in the courts \nidentified in this section may enforce that judgment in any court that has \njurisdiction over the Parties. \n\n13. EXPORT REGULATIONS/EXPORT CONTROL. You agree that neither You nor Your \nsubsidiaries will export/re-export the Software, directly or indirectly, to any \ncountry for which the U.S. Department of Commerce or any other agency or \ndepartment of the U.S. Government or the foreign government from where it is \nshipping requires an export license, or other governmental approval, without \nfirst obtaining any such required license or approval. In the event the \nSoftware is exported from the U.S.A. or re-exported from a foreign destination \nby You or Your subsidiary, You will ensure that the distribution and \nexport/re-export or import of the Software complies with all laws, regulations, \norders, or other restrictions of the U.S. Export Administration Regulations and \nthe appropriate foreign government. \n\n14. GOVERNMENT RESTRICTED RIGHTS. The Software is a commercial item (as defined \nin 48 C.F.R. 2.101) consisting of commercial computer software and commercial \ncomputer software documentation (as those terms are used in 48 C.F.R. 12.212). \nConsistent with 48 C.F.R. 12.212 and 48 C.F.R 227.7202-1 through 227.7202-4, \nYou will not provide the Software to the U.S. Government. Contractor or \nManufacturer is Intel Corporation, 2200 Mission College Blvd., Santa Clara, CA \n95054. \n\n15. ASSIGNMENT. You may not delegate, assign or transfer this Agreement, the \nlicense(s) granted or any of Your rights or duties hereunder, expressly, by \nimplication, by operation of law, or otherwise and any attempt to do so, \nwithout Intel's express prior written consent, will be null and void. Intel may \nassign, delegate and transfer this Agreement, and its rights and obligations \nhereunder, in its sole discretion. \n\n16. ENTIRE AGREEMENT; SEVERABILITY. The terms and conditions of this Agreement \nand any NDA with Intel constitute the entire agreement between the parties with \nrespect to the subject matter hereof, and merge and supersede all prior or \ncontemporaneous agreements, understandings, negotiations and discussions. \nNeither Party will be bound by any terms, conditions, definitions, warranties, \nunderstandings, or representations with respect to the subject matter hereof \nother than as expressly provided herein. In the event any provision of this \nAgreement is unenforceable or invalid under any applicable law or applicable \ncourt decision, such unenforceability or invalidity will not render this \nAgreement unenforceable or invalid as a whole, instead such provision will be \nchanged and interpreted so as to best accomplish the objectives of such \nprovision within legal limits. \n\n17. WAIVER. The failure of a Party to require performance by the other Party of \nany provision hereof will not affect the full right to require such performance \nat any time thereafter; nor will waiver by a Party of a breach of any provision \nhereof constitute a waiver of the provision itself. \n\n18. PRIVACY. YOUR PRIVACY RIGHTS ARE SET FORTH IN INTEL'S PRIVACY NOTICE, WHICH \nFORMS A PART OF THIS AGREEMENT. PLEASE REVIEW THE PRIVACY NOTICE AT \nHTTP://WWW.INTEL.COM/PRIVACY TO LEARN HOW INTEL COLLECTS, USES AND SHARES \nINFORMATION ABOUT YOU.\n\nAPPENDIX A\nINTEL END USER SOFTWARE LICENSE AGREEMENT\n\nIMPORTANT - READ BEFORE COPYING, INSTALLING OR USING.\nTHE FOLLOWING NOTICE, OR TERMS AND CONDITIONS SUBSTANTIALLY IDENTICAL IN NATURE \nAND EFFECT, MUST APPEAR IN THE DOCUMENTATION ASSOCIATED WITH THE INTEL-BASED \nPRODUCT INTO WHICH THE SOFTWARE IS INSTALLED. MINIMALLY, SUCH NOTICE MUST \nAPPEAR IN THE USER GUIDE FOR THE PRODUCT. THE TERM \"LICENSEE\" IN THIS TEXT \nREFERS TO THE END USER OF THE PRODUCT.\n\nLICENSE. Licensee has a license under Intel's copyrights to reproduce Intel's \nSoftware only in its unmodified and binary form, (with the accompanying \ndocumentation, the \"Software\") for Licensee's personal use only, and not \ncommercial use, in connection with Intel-based products for which the Software \nhas been provided, subject to the following conditions:\n(a)\tLicensee may not disclose, distribute or transfer any part of the \nSoftware, and You agree to prevent unauthorized copying of the Software.\n(b)\tLicensee may not reverse engineer, decompile, or disassemble the \nSoftware.\n(c)\tLicensee may not sublicense the Software.\n(d)\tThe Software may contain the software and other intellectual property \nof third party suppliers, some of which may be identified in, and licensed in \naccordance with, an enclosed license.txt file or other text or file.\n(e)\tIntel has no obligation to provide any support, technical assistance or \nupdates for the Software.\n\nOWNERSHIP OF SOFTWARE AND COPYRIGHTS. Title to all copies of the Software \nremains with Intel or its licensors or suppliers. The Software is copyrighted \nand protected by the laws of the United States and other countries, and \ninternational treaty provisions. Licensee may not remove any copyright notices \nfrom the Software. Except as otherwise expressly provided above, Intel grants \nno express or implied right under Intel patents, copyrights, trademarks, or \nother intellectual property rights. Transfer of the license terminates \nLicensee's right to use the Software.\nDISCLAIMER OF WARRANTY. The Software is provided \"AS IS\" without warranty of \nany kind, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION, WARRANTIES \nOF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE.\n\nLIMITATION OF LIABILITY. NEITHER INTEL NOR ITS LICENSORS OR SUPPLIERS WILL BE \nLIABLE FOR ANY LOSS OF PROFITS, LOSS OF USE, INTERRUPTION OF BUSINESS, OR \nINDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY KIND WHETHER \nUNDER THIS AGREEMENT OR OTHERWISE, EVEN IF INTEL HAS BEEN ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGES.\n\nLICENSE TO USE COMMENTS AND SUGGESTIONS. This Agreement does NOT obligate \nLicensee to provide Intel with comments or suggestions regarding the Software. \nHowever, if Licensee provides Intel with comments or suggestions for the \nmodification, correction, improvement or enhancement of (a) the Software or (b) \nIntel products or processes that work with the Software, Licensee grants to \nIntel a non-exclusive, worldwide, perpetual, irrevocable, transferable, \nroyalty-free license, with the right to sublicense, under Licensee's \nintellectual property rights, to incorporate or otherwise utilize those \ncomments and suggestions.\n\nTERMINATION OF THIS LICENSE. Intel or the sublicensor may terminate this \nlicense at any time if Licensee is in breach of any of its terms or conditions. \nUpon termination, Licensee will immediately destroy or return to Intel all \ncopies of the Software.\nTHIRD PARTY BENEFICIARY. Intel is an intended beneficiary of the End User \nLicense Agreement and has the right to enforce all of its terms.\n\nU.S. GOVERNMENT RESTRICTED RIGHTS. The Software is a commercial item (as \ndefined in 48 C.F.R. 2.101) consisting of commercial computer software and \ncommercial computer software documentation (as those terms are used in 48 \nC.F.R. 12.212), consistent with 48 C.F.R. 12.212 and 48 C.F.R 227.7202-1 \nthrough 227.7202-4. You will not provide the Software to the U.S. Government. \nContractor or Manufacturer is Intel Corporation, 2200 Mission College Blvd., \nSanta Clara, CA 95054.\n\nEXPORT LAWS. Licensee agrees that neither Licensee nor Licensee's subsidiaries \nwill export/re-export the Software, directly or indirectly, to any country for \nwhich the U.S. Department of Commerce or any other agency or department of the \nU.S. Government or the foreign government from where it is shipping requires an \nexport license, or other governmental approval, without first obtaining any \nsuch required license or approval. In the event the Software is exported from \nthe U.S.A. or re-exported from a foreign destination by Licensee, Licensee will \nensure that the distribution and export/re-export or import of the Software \ncomplies with all laws, regulations, orders, or other restrictions of the U.S. \nExport Administration Regulations and the appropriate foreign government.\n\nAPPLICABLE LAWS. This Agreement and any dispute arising out of or relating to \nit will be governed by the laws of the U.S.A. and Delaware, without regard to \nconflict of laws principles. The Parties to this Agreement exclude the \napplication of the United Nations Convention on Contracts for the International \nSale of Goods (1980). The state and federal courts sitting in Delaware, U.S.A. \nwill have exclusive jurisdiction over any dispute arising out of or relating to \nthis Agreement. The Parties consent to personal jurisdiction and venue in those \ncourts. A Party that obtains a judgment against the other Party in the courts \nidentified in this section may enforce that judgment in any court that has \njurisdiction over the Parties.\n\nLicensee's specific rights may vary from country to country.", + "json": "intel-microcode.json", + "yaml": "intel-microcode.yml", + "html": "intel-microcode.html", + "license": "intel-microcode.LICENSE" + }, + { + "license_key": "intel-osl-1989", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-intel-osl-1989", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Intel Open Source License\n\nCopyright (c) 1989, Intel Corporation\n\nIntel hereby grants you permission to copy, modify, and distribute this software and\nits documentation. Intel grants this permission provided that the above copyright\nnotice appears in all copies and that both the copyright notice and this permission\nnotice appear in supporting documentation. In addition, Intel grants this permission\nprovided that you prominently mark as not part of the original any modifications made\nto this software or documentation, and that the name of Intel Corporation not be used\nin advertising or publicity pertaining to distribution of the software or the\ndocumentation without specific, written prior permission.\n\nIntel Corporation does not warrant, guarantee or make any representations regarding\nthe use of, or the results of the use of, the software and documentation in terms of\ncorrectness, accuracy, reliability, currentness, or otherwise; and you rely on the\nsoftware, documentation and results solely at your own risk.", + "json": "intel-osl-1989.json", + "yaml": "intel-osl-1989.yml", + "html": "intel-osl-1989.html", + "license": "intel-osl-1989.LICENSE" + }, + { + "license_key": "intel-osl-1993", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-intel-osl-1993", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Intel hereby grants you permission to copy, modify, and distribute this\nsoftware and its documentation. Intel grants this permission provided\nthat the above copyright notice appears in all copies and that both the\ncopyright notice and this permission notice appear in supporting\ndocumentation. In addition, Intel grants this permission provided that\nyou prominently mark as \"not part of the original\" any modifications\nmade to this software or documentation, and that the name of Intel\nCorporation not be used in advertising or publicity pertaining to\ndistribution of the software or the documentation without specific,\nwritten prior permission.\n\nIntel Corporation provides this AS IS, WITHOUT ANY WARRANTY, EXPRESS OR\nIMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY\nOR FITNESS FOR A PARTICULAR PURPOSE. Intel makes no guarantee or\nrepresentations regarding the use of, or the results of the use of,\nthe software and documentation in terms of correctness, accuracy,\nreliability, currentness, or otherwise; and you rely on the software,\ndocumentation and results solely at your own risk.\n\nIN NO EVENT SHALL INTEL BE LIABLE FOR ANY LOSS OF USE, LOSS OF BUSINESS,\nLOSS OF PROFITS, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES\nOF ANY KIND. IN NO EVENT SHALL INTEL'S TOTAL LIABILITY EXCEED THE SUM\nPAID TO INTEL FOR THE PRODUCT LICENSED HEREUNDER.", + "json": "intel-osl-1993.json", + "yaml": "intel-osl-1993.yml", + "html": "intel-osl-1993.html", + "license": "intel-osl-1993.LICENSE" + }, + { + "license_key": "intel-royalty-free", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-intel-royalty-free", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This program has been developed by Intel Corporation.\nYou have Intel's permission to incorporate this code\ninto your product, royalty free. Intel has various\nintellectual property rights which it may assert under\ncertain circumstances, such as if another manufacturer's\nprocessor mis-identifies itself as being \"GenuineIntel\"\nwhen the CPUID instruction is executed.\n\nIntel specifically disclaims all warranties, express or\nimplied, and all liability, including consequential and\nother indirect damages, for the use of this code,\nincluding liability for infringement of any proprietary\nrights, and including the warranties of merchantability\nand fitness for a particular purpose. Intel does not\nassume any responsibility for any errors which may\nappear in this code nor any responsibility to update it.\n\nOther brands and names are the property of their respective\nowners.", + "json": "intel-royalty-free.json", + "yaml": "intel-royalty-free.yml", + "html": "intel-royalty-free.html", + "license": "intel-royalty-free.LICENSE" + }, + { + "license_key": "intel-sample-source-code-2015", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-sample-source-code-2015", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Intel Sample Source Code License Agreement\n\nCode Samples License Agreement (Version December 2015)\n\nIMPORTANT - READ BEFORE COPYING, INSTALLING OR USING.\nDo not copy, install or use the Materials (as defined below) provided under this license agreement (\"Agreement\") from Intel Corporation (\u201cIntel\u201d), until you (\u201cYou\u201d) have carefully read the following terms and conditions. By copying, installing or otherwise using the Materials, You agree to be bound by the terms of this Agreement. If You do not agree to the terms of this Agreement, do not copy, install or use the Materials.\n\nIf You are agreeing to the terms and conditions of this Agreement on behalf of a company or other legal entity (\u201cLegal Entity\u201d), You represent and warrant that You have the legal authority to bind that Legal Entity to the Agreement, in which case, \"You\" or \"Your\" will mean such Legal Entity.\n\nBy agreeing to this Agreement, You affirm that You are of legal age (18 years old or older) to enter into this Agreement. If You are not of legal age You may not enter into this Agreement, and either Your parent, legal guardian or Legal Entity must agree to the terms and conditions of this Agreement and enter into this Agreement, in which case, \"You\" or \"Your\" will mean such parent, legal guardian, or Legal Entity.\n\nThird Party Programs (as defined below), even if included with the distribution of the Materials, are governed by separate third party license terms, including without limitation, open source software license terms. Such third party license terms (and not this Agreement) govern Your use of the Third Party Programs, and Intel is not liable for the Third Party Programs.\n\n1. LICENSE DEFINITIONS:\n\n\u201cLicensed Patent Claims\u201d means the claims of Intel\u2019s patents that are necessarily and directly infringed by the reproduction and distribution of the Materials that is authorized in Section 2 below, when the Materials are in its unmodified form as delivered by Intel to You and not modified or combined with anything else. Licensed Patent Claims are only those claims that Intel can license without paying, or getting the consent of, a third party.\n\n\u201cMaterials\u201d means Sample Source Code, Redistributables, and End-User Documentation but do not include Third Party Programs.\n\n\u201cSample Source Code\u201d means Source Code files that are identified as sample code and which may include example interface or application source code, and any updates, provided under this Agreement.\n\n\u201cSource Code\u201d is defined as the software (and not documentation or text) portion of the Materials provided in human readable format, and includes modifications that You make or are made on Your behalf as expressly permitted under the terms of this Agreement.\n\n\u201cRedistributables\u201d means header, library, and dynamically linkable library files, and any updates, provided under this Agreement.\n\n\u201cThird Party Programs\u201d (if any) are the third party software files that may be included with the Materials for the applicable software that include a separate third party license agreement in an attached text file.\n\n\u201cEnd-User Documentation\u201d means textual materials intended for end users relating to the Materials.\n\n2. LICENSE GRANT:\n\nSubject to the terms and conditions of this Agreement, Intel grants You a non-exclusive, worldwide, non-assignable, royalty-free limited right and license:\n\nA. under its copyrights, to:\n\n1) Copy, modify, and compile the Sample Source Code and distribute it solely in Your products in executable and source code form;\n2) Copy and distribute the Redistributables solely with Your products;\n3) Copy, modify, and distribute the End User Documentation solely with Your products.\n\nB. Under its patents, to:\n\n1) make copies of the Materials internally only;\n2) use the Materials internally only; and\n3) offer to distribute, and distribute, but not sell, the Materials only as part of or with Your products, under Intel\u2019s copyright license granted in Section 2(A) but only under the terms of that copyright license and not as a sale (but this right does not include the right to sub-license);\n4) provided, further, that the license under the Licensed Patent Claims does not and will not apply to any modifications to, or derivative works of, the Materials, whether made by You, Your end user (which, for all purposes under this Agreement, will mean either an end user, a customer, reseller, distributor or other channel partner), or any third party even if the modification and creation of derivative works are permitted under 2(A).\n\n3. LICENSE RESTRICTIONS:\n\nExcept as expressly provided in this Agreement, You may not:\n\ni. use, copy, distribute or publicly display the Materials;\nii. reverse-assemble, reverse-compile, or otherwise reverse-engineer any software provided solely in binary form, iii. rent or lease the Materials to any third party;\niv. assign this Agreement or display the Materials;\nv. assign this Agreement or transfer the Materials;\nvi. modify, adapt or translate the Materials in whole or in part;\nvii. distribute, sublicense or transfer the source code form of the Materials or derivatives thereof to any third party; viii. distribute the Materials except as part of Your products;\nix. include the Materials in malicious, deceptive, or unlawful programs or products;\nx. modify, create a derivative work, link or distribute the Materials so that any part of it becomes subject to an Excluded License.\n\nUpon Intel's release of an update, upgrade, or new version of the Materials, you will make reasonable efforts to discontinue distribution of the enclosed Materials and you will make reasonable efforts to distribute such updates, upgrades, or new versions to your customers who have received the Materials herein.\n\nDistribution of the Materials is also subject to the following limitations. You:\n\ni. will be solely responsible to your customers for any update or support obligation or other liability which may arise from the distribution;\nii. will not make any statement that your product is \"certified,\" or that its performance is guaranteed, by Intel;\niii. will not use Intel's name or trademarks to market your product without written permission;\niv. will prohibit disassembly and reverse engineering of the Materials provided in executable form;\nv. will not publish reviews of Materials without written permission by Intel, and\nvi. will indemnify, hold harmless, and defend Intel and its suppliers from and against any claims or lawsuits, including attorney's fees, that arise or result from your distribution of any product.\n\n4. OWNERSHIP: Title to the Materials and all copies thereof remain with Intel or its suppliers. The Materials are copyrighted and are protected by United States copyright laws and international treaty provisions. You will not remove any copyright notice from the Materials. You agree to prevent unauthorized copying of the Materials. Except as expressly provided herein, Intel does not grant any express or implied right to you under Intel patents, copyrights, trademarks, or trade secret information.\n\n5. NO WARRANTY AND NO SUPPORT: Disclaimer. Intel disclaims all warranties of any kind and the terms and remedies provided in this Agreement are instead of any other warranty or condition, express, implied or statutory, including those regarding merchantability, fitness for any particular purpose, non-infringement or any warranty arising out of any course of dealing, usage of trade, proposal, specification or sample. Intel does not assume (and does not authorize any person to assume on its behalf) any other liability.\n\nIntel may make changes to the Materials, or to items referenced therein, at any time without notice, but is not obligated to support, update or provide training for the Materials. Intel may in its sole discretion offer such support, update or training services under separate terms at Intel\u2019s then-current rates. You may request additional information on Intel\u2019s service offerings from an Intel sales representative.\n\n6. USER SUBMISSIONS: You agree that any material, information, or other communication, including all data, images, sounds, text, and other things embodied therein, you transmit or post to an Intel website will be considered non-confidential (\"Communications\"). Intel will have no confidentiality obligations with respect to the Communications. You agree that Intel and its designees will be free to copy, modify, create derivative works, publicly display, disclose, distribute, license and sublicense through multiple tiers of distribution and licensees, incorporate, and otherwise use the Communications, including derivative works thereto, for any and all commercial or non-commercial purposes.\n\n7. LIMITATION OF LIABILITY: Neither Intel nor its suppliers shall be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other loss) arising out of the use of or inability to use the Materials, even if Intel has been advised of the possibility of such damages. Because some jurisdictions prohibit the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply to You.\n\n8. TERM AND TERMINATION: This Agreement commences upon Your copying, installing or using the Materials and continues until terminated. Either You or Intel may terminate this Agreement at any time upon 30 days prior written notice to the other party. Intel may terminate this license at any time if you are in breach of any of its terms and conditions. Upon termination, You will immediately destroy the Materials or return all copies of the Materials to Intel along with any copies You have made. After termination, the license grant to any Materials or Redistributables distributed by You in accordance with the terms and conditions of this Agreement, prior to the effective date of such termination, will survive any such termination of this Agreement.\n\n9. U.S. GOVERNMENT RESTRICTED RIGHTS: The technical data and computer software covered by this license is a \u201cCommercial Item,\u201d as such term is defined by the FAR 2.101 (48 C.F.R. 2.101) and is \u201ccommercial computer software\u201d and \u201ccommercial computer software documentation\u201d as specified under FAR 12.212 (48 C.F.R. 12.212) or DFARS 227.7202 (48 C.F.R. 227.7202), as applicable. This commercial computer software and related documentation is provided to end users for use by and on behalf of the U.S. Government, with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Use for or on behalf of the U.S. Government is permitted only if the party acquiring or using this software is properly authorized by an appropriate U.S. Government official. This use by or for the U.S. Government clause is in lieu of, and supersedes, any other FAR, DFARS, or other provision that addresses Government rights in the computer software or documentation covered by this license. All copyright licenses granted to the U.S. Government are coextensive with the technical data and computer software licenses granted herein. The U.S. Government will only have the right to reproduce, distribute, perform, display, and prepare derivative works as needed to implement those rights.\n\n10. APPLICABLE LAWS: All disputes arising out of or related to this Agreement, whether based on contract, tort, or any other legal or equitable theory, will in all respects be governed by, and construed and interpreted under, the laws of the United States of America and the State of Delaware, without reference to conflict of laws principles. The parties agree that the United Nations Convention on Contracts for the International Sale of Goods (1980) is specifically excluded from and will not apply to this Agreement. All disputes arising out of or related to this Agreement, whether based on contract, tort, or any other legal or equitable theory, will be subject to the exclusive jurisdiction of the courts of the State of Delaware or of the Federal courts sitting in that State. Each party submits to the personal jurisdiction of those courts and waives all objections to that jurisdiction and venue for those disputes.\n\n11. SEVERABILITY: The parties intend that if a court holds that any provision or part of this Agreement is invalid or unenforceable under applicable law, the court will modify the provision to the minimum extent necessary to make it valid and enforceable, or if it cannot be made valid and enforceable, the parties intend that the court will sever and delete the provision or part from this Agreement. Any change to or deletion of a provision or part of this Agreement under this Section will not affect the validity or enforceability of the remainder of this Agreement, which will continue in full force and effect.\n\n12. EXPORT: You must comply with all laws and regulations of the United States and other countries governing the export, re-export, import, transfer, distribution, use, and servicing of Software. In particular, You must not: (a) sell or transfer Software to a country subject to sanctions, or to any entity listed on a denial order published by the United States government or any other relevant government; or (b) use, sell, or transfer Software for the development, design, manufacture, or production of nuclear, missile, chemical or biological weapons, or for any other purpose prohibited by the United States government or other applicable government; without first obtaining all authorizations required by all applicable laws. For more details on Your export obligations, please visit http://www.intel.com/content/www/us/en/legal/export-compliance.html.\n\n13. ENTIRE AGREEMENT: This Agreement contains the complete and exclusive agreement and understanding between the parties concerning the subject matter of this Agreement, and supersedes all prior and contemporaneous proposals, agreements, understanding, negotiations, representations, warranties, conditions, and communications, oral or written, between the parties relating to the same subject matter. No modification or amendment to this Agreement will be effective unless in writing and signed by authorized representatives of each party, and must specifically identify this Agreement.", + "json": "intel-sample-source-code-2015.json", + "yaml": "intel-sample-source-code-2015.yml", + "html": "intel-sample-source-code-2015.html", + "license": "intel-sample-source-code-2015.LICENSE" + }, + { + "license_key": "intel-scl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-scl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Intel Source Code License Agreement\n\nThis license governs use of the accompanying software. By installing or copying all or any part of the software components in this package, you (\"you\" or \"Licensee\") agree to the terms of this agreement. Do not install or copy the software until you have carefully read and agreed to the following terms and conditions. If you do not agree to the terms of this agreement, promptly return the software to Intel Corporation (\"Intel\").\n\n1.\tDefinitions:\n\nA.\t\"Materials\" are defined as the software (including the Redistributables and Source as defined herein), documentation, and other materials, including any updates and upgrade thereto, that are provided to you under this Agreement.\n\nB.\t\"Redistributables\" are the binary files listed in the \"redist.txt\" file that is included in the Materials or are otherwise clearly identified as redistributable files by Intel.\n\nC.\t\" Source\" is the source code file(s) that: (i) demonstrate(s) certain functions for particular purposes; (ii) are identified as source code; and (iii) are provided hereunder in source code form.\n\nD.\t\"Intel\u2019s Licensed Patent Claims\" means those claims of Intel\u2019s patents that (a) are infringed by the Source or Redistributables, alone and not in combination, in their unmodified form, as furnished by Intel to Licensee and (b) Intel has the right to license.\n\n2.\tLicense Grant: Subject to all of the terms and conditions of this Agreement:\n\nA. \tIntel grants to you a non-exclusive, non-assignable, copyright license to use the Material for your internal development purposes only.\n\nB.\tIntel grants to you a non-exclusive, non-assignable copyright license to reproduce the Source, prepare derivative works of the Source and distribute the Source or any derivative works thereof that you create, as part of the product or application you develop using the Materials.\n\nC.\tIntel grants to you a non-exclusive, non-assignable copyright license to distribute the Redistributables in binary form, or any portions thereof, as part of the product or application you develop using the Materials.\n\nD.\tIntel grants Licensee a non-transferable, non-exclusive, worldwide, non-sublicenseable license under Intel\u2019s Licensed Patent Claims to make, use, sell, and import the Source and the Redistributables.\n\n\n3.\tConditions and Limitations:\n\nA.\tThis license does not grant you any rights to use Intel\u2019s name, logo or trademarks.\n\nB.\tTitle to the Materials and all copies thereof remain with Intel. The Materials are copyrighted and are protected by United States copyright laws. You will not remove any copyright notice from the Materials. You agree to prevent any unauthorized copying of the Materials. Except as expressly provided herein, Intel does not grant any express or implied right to you under Intel patents, copyrights, trademarks, or trade secret information.\n\t\nC.\tYou may NOT: (i) use or copy the Materials except as provided in this Agreement; (ii) rent or lease the Materials to any third party; (iii) assign this Agreement or transfer the Materials without the express written consent of Intel; (iv) modify, adapt, or translate the Materials in whole or in part except as provided in this Agreement; (v) reverse engineer, decompile, or disassemble the Materials not provided to you in source code form; or (vii) distribute, sublicense or transfer the source code form of any components of the Materials and derivatives thereof to any third party except as provided in this Agreement.\n\n4.\tNo Warranty:\n\n\tTHE MATERIALS ARE PROVIDED \"AS IS\". INTEL DISCLAIMS ALL EXPRESS OR IMPLIED WARRANTIES WITH RESPECT TO THEM, INCLUDING ANY IMPLIED WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT, AND FITNESS FOR ANY PARTICULAR PURPOSE.\n\n5.\t LIMITATION OF LIABILITY: NEITHER INTEL NOR ITS SUPPLIERS SHALL BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF INTEL HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. BECAUSE SOME JURISDICTIONS PROHIBIT THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU.\n\n6.\tUSER SUBMISSIONS: You agree that any material, information or other communication, including all data, images, sounds, text, and other things embodied therein, you transmit or post to an Intel website or provide to Intel under this Agreement will be considered non-confidential (\"Communications\"). Intel will have no confidentiality obligations with respect to the Communications. You agree that Intel and its designees will be free to copy, modify, create derivative works, publicly display, disclose, distribute, license and sublicense through multiple tiers of distribution and licensees, incorporate and otherwise use the Communications, including derivative works thereto, for any and all commercial or non-commercial purposes\n\n7.\tTERMINATION OF THIS LICENSE: This Agreement becomes effective on the date you accept this Agreement and will continue until terminated as provided for in this Agreement. Intel may terminate this license at any time if you are in breach of any of its terms and conditions. Upon termination, you will immediately return to Intel or destroy the Materials and all copies thereof.\n\n8.\tU.S. GOVERNMENT RESTRICTED RIGHTS: The Materials are provided with \"RESTRICTED RIGHTS\". Use, duplication or disclosure by the Government is subject to restrictions set forth in FAR52.227-14 and DFAR252.227-7013 et seq. or its successor. Use of the Materials by the Government constitutes acknowledgment of Intel's rights in them.\n\n9.\tAPPLICABLE LAWS: Any claim arising under or relating to this Agreement shall be governed by the internal substantive laws of the State of Delaware, without regard to principles of conflict of laws. You may not export the Materials in violation of applicable export laws.", + "json": "intel-scl.json", + "yaml": "intel-scl.yml", + "html": "intel-scl.html", + "license": "intel-scl.LICENSE" + }, + { + "license_key": "interbase-1.0", + "category": "Copyleft", + "spdx_license_key": "Interbase-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Interbase Public License v1.0\n\nhttp://info.borland.com/devsupport/interbase/opensource/IPL.html\n\nINTERBASE PUBLIC LICENSE Version 1.0\n\n1. Definitions.\n\n1.0.1. \"Commercial Use\" means distribution or otherwise making the Covered Code available to a third party.\n\n1.1. ''Contributor'' means each entity that creates or contributes to the creation of Modifications.\n\n1.2. ''Contributor Version'' means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor.\n\n1.3. ''Covered Code'' means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof.\n\n1.4. ''Electronic Distribution Mechanism'' means a mechanism generally accepted in the software development community for the electronic transfer of data.\n\n1.5. ''Executable'' means Covered Code in any form other than Source Code.\n\n1.6. ''Initial Developer'' means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A.\n\n1.7. ''Larger Work'' means a work which combines Covered Code or portions thereof with code not governed by the terms of this License.\n\n1.8. ''License'' means this document.\n\n1.8.1. \"Licensable\" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein.\n\n1.9. ''Modifications'' means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is:\n\nA. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications.\n\nB. Any new file that contains any part of the Original Code or previous Modifications.\n\n1.10. ''Original Code'' means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License.\n\n1.10.1. \"Patent Claims\" means any patent claim(s), now owned or hereafter\n\nacquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor.\n\n1.11. ''Source Code'' means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge.\n\n1.12. \"You'' (or \"Your\") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, \"You'' includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, \"control'' means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2. Source Code License. 2.1. The Initial Developer Grant.\n\nThe Initial Developer hereby grants You a world-wide, royalty-free, non- exclusive license, subject to third party intellectual property claims:\n\n(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and\n\n(b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof).\n\n(c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License.\n\n(d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices.\n\n2.2. Contributor Grant.\n\nSubject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license\n\n(a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and\n\n(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination).\n\n(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code.\n\n(d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor.\n\n3. Distribution Obligations. 3.1. Application of License.\n\nThe Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5.\n\n3.2. Availability of Source Code.\n\nAny Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\n3.3. Description of Modifications.\n\nYou must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters (a) Third Party Claims.\n\nIf Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled \"LEGAL'' which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained.\n\n(b) Contributor APIs.\n\nIf Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file.\n\n(c) Representations.\n\nContributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License.\n\n3.5. Required Notices.\n\nYou must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions.\n\nYou may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating\n\nto the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer.\n\n3.7. Larger Works.\n\nYou may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n\n5. Application of this License.\n\nThis License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code.\n\n6. Versions of the License. 6.1. New Versions.\n\nBorland Software Corporation (''Interbase'') may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number.\n\n6.2. Effect of New Versions.\n\nOnce Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Interbase. No one other than Interbase has the right to modify the terms applicable to Covered Code created under this License.\n\n6.3. Derivative Works.\n\nIf You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by\n\nthis License), You must (a) rename Your license so that the phrases ''Mozilla'', ''MOZILLAPL'', ''MOZPL'', ''Netscape'', \"MPL\", ''NPL\", \"Interbase\", \"ISC\", \"IB'' or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.)\n\n6.4 Origin of the Interbase Public License.\n\nThe Interbase public license is based on the Mozilla Public License V 1.1 with the following changes:\n\nThe license is published by Borland Software Corporation. Only Borland Software Corporation can modify the terms applicable to Covered Code. The license can be modified used for code which is not already governed by this license. Modified versions of the license must be renamed to avoid confusion with Netscape?s or Interbase Software?s license and must include a description of changes from the Interbase Public License. The name of the license in Exhibit A is the \"Interbase Public License\". The reference to an alternative license in Exhibit A has been removed. Amendments I, II, III, V, and VI have been deleted. Exhibit A, Netscape Public License has been deleted A new amendment (II) has been added, describing the required and restricted rights to use the trademarks of Borland Software Corporation\n\n7. DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS'' BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n\n8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.\n\n8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as \"Participant\") alleging that:\n\n(a) such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from\n\nParticipant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above.\n\n(b) any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant.\n\n8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination.\n\n9. LIMITATION OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS.\n\nThe Covered Code is a ''commercial item,'' as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of ''commercial computer software'' and ''commercial computer software documentation,'' as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n\n11. MISCELLANEOUS. This License represents the complete agreement concerning subject matter\n\nhereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n12. RESPONSIBILITY FOR CLAIMS.\n\nAs between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\n13. MULTIPLE-LICENSED CODE.\n\nInitial Developer may designate portions of the Covered Code as \"Multiple- Licensed\". \"Multiple-Licensed\" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the NPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A.\n\nEXHIBIT A - InterBase Public License.\n\n``The contents of this file are subject to the Interbase Public License Version 1.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.Interbase.com/IPL.html\n\nSoftware distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.\n\nThe Original Code was created by InterBase Software Corp and its successors.\n\nPortions created by Borland/Inprise are Copyright (C) Borland/Inprise. All Rights Reserved.\n\nContributor(s): . AMENDMENTS\n\nI. InterBase and logo. This License does not grant any rights to use the trademarks \"Interbase'', \"Java\" or \"JavaScript\" even if such marks are included in the Original Code or Modifications.\n\nII. Trademark Usage.\n\nII.1. Advertising Materials. All advertising materials mentioning features or use of the covered Code must display the following acknowledgement: \"This product includes software developed by Borland Software Corp.\n\nII.2. Endorsements. The names \"InterBase,\" \"ISC,\" and \"IB\" must not be used to endorse or promote Contributor Versions or Larger Works without the prior written permission of Interbase.\n\nII.3. Product Names. Contributor Versions and Larger Works may not be called \"InterBase\" or \"Interbase\" nor may the word \"InterBase\" appear in their names without the prior written permission of Interbase.", + "json": "interbase-1.0.json", + "yaml": "interbase-1.0.yml", + "html": "interbase-1.0.html", + "license": "interbase-1.0.LICENSE" + }, + { + "license_key": "iolib-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-iolib-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, if you link this library with files compiled with\na GNU compiler to produce an executable, this does not cause the resulting\nexecutable to be covered by the GNU General Public License. This exception does\nnot however invalidate any other reasons why the executable file\nmight be covered by the GNU General Public License.", + "json": "iolib-exception-2.0.json", + "yaml": "iolib-exception-2.0.yml", + "html": "iolib-exception-2.0.html", + "license": "iolib-exception-2.0.LICENSE" + }, + { + "license_key": "iozone", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-iozone", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License to freely use and distribute this software is hereby granted by the\nauthor, subject to the condition that this copyright notice remains intact. The\nauthor retains the exclusive right to publish derivative works based on this\nwork, including, but not limited to, revised versions of this work.\n\nTHIS SOFTWARE IS PROVIDED BY DON CAPPS AND THE IOZONE CREW \"AS IS\" AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED.\n \nIN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE.", + "json": "iozone.json", + "yaml": "iozone.yml", + "html": "iozone.html", + "license": "iozone.LICENSE" + }, + { + "license_key": "ipa-font", + "category": "Copyleft Limited", + "spdx_license_key": "IPA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "IPA Font License Agreement v1.0 \n \nThe Licensor provides the Licensed Program (as defined in Article 1 below) under the terms of this license agreement (\"Agreement\"). Any use, reproduction or distribution of the Licensed Program, or any exercise of rights under this Agreement by a Recipient (as defined in Article 1 below) constitutes the Recipient's acceptance of this Agreement.\n\nArticle 1 (Definitions)\n\n1. \"Digital Font Program\" shall mean a computer program containing, or used to render or display fonts.\n\n2. \"Licensed Program\" shall mean a Digital Font Program licensed by the Licensor under this Agreement.\n\n3. \"Derived Program\" shall mean a Digital Font Program created as a result of a modification, addition, deletion, replacement or any other adaptation to or of a part or all of the Licensed Program, and includes a case where a Digital Font Program newly created by retrieving font information from a part or all of the Licensed Program or Embedded Fonts from a Digital Document File with or without modification of the retrieved font information. \n\n4. \"Digital Content\" shall mean products provided to end users in the form of digital data, including video content, motion and/or still pictures, TV programs or other broadcasting content and products consisting of character text, pictures, photographic images, graphic symbols and/or the like.\n\n5. \"Digital Document File\" shall mean a PDF file or other Digital Content created by various software programs in which a part or all of the Licensed Program becomes embedded or contained in the file for the display of the font (\"Embedded Fonts\"). Embedded Fonts are used only in the display of characters in the particular Digital Document File within which they are embedded, and shall be distinguished from those in any Digital Font Program, which may be used for display of characters outside that particular Digital Document File.\n\n6. \"Computer\" shall include a server in this Agreement.\n\n7. \"Reproduction and Other Exploitation\" shall mean reproduction, transfer, distribution, lease, public transmission, presentation, exhibition, adaptation and any other exploitation.\n\n8. \"Recipient\" shall mean anyone who receives the Licensed Program under this Agreement, including one that receives the Licensed Program from a Recipient.\n\n \nArticle 2 (Grant of License)\n\nThe Licensor grants to the Recipient a license to use the Licensed Program in any and all countries in accordance with each of the provisions set forth in this Agreement. However, any and all rights underlying in the Licensed Program shall be held by the Licensor. In no sense is this Agreement intended to transfer any right relating to the Licensed Program held by the Licensor except as specifically set forth herein or any right relating to any trademark, trade name, or service mark to the Recipient.\n\n1. The Recipient may install the Licensed Program on any number of Computers and use the same in accordance with the provisions set forth in this Agreement.\n\n2. The Recipient may use the Licensed Program, with or without modification in printed materials or in Digital Content as an expression of character texts or the like.\n\n3. The Recipient may conduct Reproduction and Other Exploitation of the printed materials and Digital Content created in accordance with the preceding Paragraph, for commercial or non-commercial purposes and in any form of media including but not limited to broadcasting, communication and various recording media.\n\n4. If any Recipient extracts Embedded Fonts from a Digital Document File to create a Derived Program, such Derived Program shall be subject to the terms of this agreement. \n\n5. If any Recipient performs Reproduction or Other Exploitation of a Digital Document File in which Embedded Fonts of the Licensed Program are used only for rendering the Digital Content within such Digital Document File then such Recipient shall have no further obligations under this Agreement in relation to such actions.\n\n6. The Recipient may reproduce the Licensed Program as is without modification and transfer such copies, publicly transmit or otherwise redistribute the Licensed Program to a third party for commercial or non-commercial purposes (\"Redistribute\"), in accordance with the provisions set forth in Article 3 Paragraph 2.\n\n7. The Recipient may create, use, reproduce and/or Redistribute a Derived Program under the terms stated above for the Licensed Program: provided, that the Recipient shall follow the provisions set forth in Article 3 Paragraph 1 when Redistributing the Derived Program. \n\nArticle 3 (Restriction)\n\nThe license granted in the preceding Article shall be subject to the following restrictions:\n\n1. If a Derived Program is Redistributed pursuant to Paragraph 4 and 7 of the preceding Article, the following conditions must be met :\n\n(1) The following must be also Redistributed together with the Derived Program, or be made available online or by means of mailing mechanisms in exchange for a cost which does not exceed the total costs of postage, storage medium and handling fees:\n\n(a) a copy of the Derived Program; and\n\n(b) any additional file created by the font developing program in the course of creating the Derived Program that can be used for further modification of the Derived Program, if any.\n\n(2) It is required to also Redistribute means to enable recipients of the Derived Program to replace the Derived Program with the Licensed Program first released under this License (the \"Original Program\"). Such means may be to provide a difference file from the Original Program, or instructions setting out a method to replace the Derived Program with the Original Program.\n\n(3) The Recipient must license the Derived Program under the terms and conditions of this Agreement.\n\n(4) No one may use or include the name of the Licensed Program as a program name, font name or file name of the Derived Program.\n\n(5) Any material to be made available online or by means of mailing a medium to satisfy the requirements of this paragraph may be provided, verbatim, by any party wishing to do so.\n\n2. If the Recipient Redistributes the Licensed Program pursuant to Paragraph 6 of the preceding Article, the Recipient shall meet all of the following conditions:\n\n(1) The Recipient may not change the name of the Licensed Program.\n\n(2) The Recipient may not alter or otherwise modify the Licensed Program.\n\n(3) The Recipient must attach a copy of this Agreement to the Licensed Program.\n\n3. THIS LICENSED PROGRAM IS PROVIDED BY THE LICENSOR \"AS IS\" AND ANY EXPRESSED OR IMPLIED WARRANTY AS TO THE LICENSED PROGRAM OR ANY DERIVED PROGRAM, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED. IN NO EVENT SHALL THE LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXTENDED, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO; PROCUREMENT OF SUBSTITUTED GOODS OR SERVICE; DAMAGES ARISING FROM SYSTEM FAILURE; LOSS OR CORRUPTION OF EXISTING DATA OR PROGRAM; LOST PROFITS), 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 INSTALLATION, USE, THE REPRODUCTION OR OTHER EXPLOITATION OF THE LICENSED PROGRAM OR ANY DERIVED PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n4. The Licensor is under no obligation to respond to any technical questions or inquiries, or provide any other user support in connection with the installation, use or the Reproduction and Other Exploitation of the Licensed Program or Derived Programs thereof.\n\nArticle 4 (Termination of Agreement)\n\n1. The term of this Agreement shall begin from the time of receipt of the Licensed Program by the Recipient and shall continue as long as the Recipient retains any such Licensed Program in any way.\n\n2. Notwithstanding the provision set forth in the preceding Paragraph, in the event of the breach of any of the provisions set forth in this Agreement by the Recipient, this Agreement shall automatically terminate without any notice. In the case of such termination, the Recipient may not use or conduct Reproduction and Other Exploitation of the Licensed Program or a Derived Program: provided that such termination shall not affect any rights of any other Recipient receiving the Licensed Program or the Derived Program from such Recipient who breached this Agreement.\n\nArticle 5 (Governing Law)\n\n1. IPA may publish revised and/or new versions of this License. In such an event, the Recipient may select either this Agreement or any subsequent version of the Agreement in using, conducting the Reproduction and Other Exploitation of, or Redistributing the Licensed Program or a Derived Program. Other matters not specified above shall be subject to the Copyright Law of Japan and other related laws and regulations of Japan.\n\n2. This Agreement shall be construed under the laws of Japan.", + "json": "ipa-font.json", + "yaml": "ipa-font.yml", + "html": "ipa-font.html", + "license": "ipa-font.LICENSE" + }, + { + "license_key": "iptc-2006", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-iptc-2006", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Non-Exclusive License Agreement for International\nPress Telecommunications Council Specifications\nand Related Documentation and Software\n\nIMPORTANT: International Press Telecommunications Council (IPTC) standard\nspecifications for news (the Specifications) and supporting software, documentation,\ntechnical reports, web sites and other material related to the Specifications (the\nMaterials) including any document accompanying this license (the Document),\nwhether in a paper or electronic format, are made available to you subject to the\nterms stated below. By obtaining, using and/or copying the Specifications or\nMaterials, you (the licensee) agree that you have read, understood, and will comply\nwith the following terms and conditions.\n\n1. The Specifications and Materials are licensed for use only on the condition that\nyou agree to be bound by the terms of this license. Subject to this and other\nlicensing requirements contained herein, you may, on a non-exclusive basis,\nuse the Specifications and Materials.\n\n2. The IPTC openly provides the Specifications and Materials for voluntary use by\nindividuals, partnerships, companies, corporations, organizations and any other\nentity for use at the entity\u2019s own risk. This disclaimer, license and release is\nintended to apply to the IPTC, its officers, directors, agents, representatives,\nmembers, contributors, affiliates, contractors, or co-venturers acting jointly or\nseverally.\n\n3. The Document and translations thereof may be copied and furnished to others,\nand derivative works that comment on or otherwise explain it or assist in its\nimplementation may be prepared, copied, published and distributed, in whole\nor in part, without restriction of any kind, provided that the copyright and\nlicense notices and references to the IPTC appearing in the Document and the\nterms of this Specifications License Agreement are included on all such copies\nand derivative works. Further, upon the receipt of written permission from the\nIPTC, the Document may be modified for the purpose of developing applications\nthat use IPTC Specifications or as required to translate the Document into\nlanguages other than English.\n\n4. Any use, duplication, distribution, or exploitation of the Document and\nSpecifications and Materials in any manner is at your own risk.\n\n5. NO WARRANTY, EXPRESSED OR IMPLIED, IS MADE REGARDING THE\nACCURACY, ADEQUACY, COMPLETENESS, LEGALITY, RELIABILITY OR\nUSEFULNESS OF ANY INFORMATION CONTAINED IN THE DOCUMENT OR IN\nANY SPECIFICATION OR OTHER PRODUCT OR SERVICE PRODUCED OR\nSPONSORED BY THE IPTC. THE DOCUMENT AND THE INFORMATION\nCONTAINED HEREIN AND INCLUDED IN ANY SPECIFICATION OR OTHER\nPRODUCT OR SERVICE OF THE IPTC IS PROVIDED ON AN \"AS IS\" BASIS. THE\nIPTC DISCLAIMS ALL WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED,\nINCLUDING, BUT NOT LIMITED TO, ANY ACTUAL OR ASSERTED WARRANTY OF\nNON-INFRINGEMENT OF PROPRIETARY RIGHTS, MERCHANTABILITY, OR\nFITNESS FOR A PARTICULAR PURPOSE. NEITHER THE IPTC NOR ITS\nCONTRIBUTORS SHALL BE HELD LIABLE FOR ANY IMPROPER OR INCORRECT\nUSE OF INFORMATION. NEITHER THE IPTC NOR ITS CONTRIBUTORS ASSUME\nANY RESPONSIBILITY FOR ANYONE'S USE OF INFORMATION PROVIDED BY THE\nIPTC. IN NO EVENT SHALL THE IPTC OR ITS CONTRIBUTORS BE LIABLE TO\nANYONE FOR DAMAGES OF ANY KIND, INCLUDING BUT NOT LIMITED TO,\nCOMPENSATORY DAMAGES, LOST PROFITS, LOST DATA OR ANY FORM OF\nSPECIAL, INCIDENTAL, INDIRECT, CONSEQUENTIAL OR PUNITIVE DAMAGES\nOF ANY KIND WHETHER BASED ON BREACH OF CONTRACT OR WARRANTY,\nTORT, PRODUCT LIABILITY OR OTHERWISE.\n\n6. The IPTC takes no position regarding the validity or scope of any Intellectual\nProperty or other rights that might be claimed to pertain to the implementation\nor use of the technology described in the Document or the extent to which any\nlicense under such rights might or might not be available. The IPTC does not\nrepresent that it has made any effort to identify any such rights. Copies of\nclaims of rights made available for publication, assurances of licenses to be\nmade available, or the result of an attempt made to obtain a general license or\npermission for the use of such proprietary rights by implementers or users of\nthe Specifications and Materials, can be obtained from the Managing Director of\nthe IPTC.\n\n7. By using the Specifications and Materials including the Document in any\nmanner or for any purpose, you release the IPTC from all liabilities, claims,\ncauses of action, allegations, losses, injuries, damages, or detriments of any\nnature arising from or relating to the use of the Specifications, Materials or any\nportion thereof. You further agree not to file a lawsuit, make a claim, or take\nany other formal or informal legal action against the IPTC, resulting from your\nacquisition, use, duplication, distribution, or exploitation of the Specifications,\nMaterials or any portion thereof. Finally, you hereby agree that the IPTC is not\nliable for any direct, indirect, special or consequential damages arising from or\nrelating to your acquisition, use, duplication, distribution, or exploitation of the\nSpecifications, Materials or any portion thereof.\n\n8. Specifications and Materials may be downloaded or copied provided that ALL\ncopies retain the ownership, copyright and license notices.\n\n9. Materials may not be edited, modified, or presented in a context that creates a\nmisleading or false impression or statement as to the positions, actions, or\nstatements of the IPTC.\n\n10. The name and trademarks of the IPTC may not be used in advertising,\npublicity, or in relation to products or services and their names without the\nspecific, written prior permission of the IPTC. Any permitted use of the\ntrademarks of the IPTC, whether registered or not, shall be accompanied by an\nappropriate mark and attribution, as agreed with the IPTC.\n\n11. Specifications may be extended by both members and non-members to provide\nadditional functionality (Extended Specifications) provided that there is a clear\nrecognition of the IPTC IP and its ownership in the Extended Specifications and\nthe related documentation and provided that the extensions are clearly\nidentified and provided that a perpetual license is granted by the creator of the\nExtended Specifications for other members and non-members to use the\nExtended Specifications and to continue extensions of the Extended\nSpecifications. The IPTC does not waive any of its rights in the Specifications\nand Materials in this context. The Extended Specifications may be considered\nthe intellectual property of their creator. The IPTC expressly disclaims any\nresponsibility for damage caused by an extension to the Specifications.\n\n12. Specifications and Materials may be included in derivative work of both\nmembers and non-members provided that there is a clear recognition of the\nIPTC IP and its ownership in the derivative work and its related documentation.\nThe IPTC does not waive any of its rights in the Specifications and Materials in\nthis context. Derivative work in its entirety may be considered the intellectual\nproperty of the creator of the work .The IPTC expressly disclaims any\nresponsibility for damage caused when its IP is used in a derivative context.\n\n13. This Specifications License Agreement is perpetual subject to your conformance\nto the terms of this Agreement. The IPTC may terminate this Specifications\nLicense Agreement immediately upon your breach of this Agreement and, upon\nsuch termination you will cease all use, duplication, distribution, and/or\nexploitation in any manner of the Specifications and Materials.\n\n14. This Specifications License Agreement reflects the entire agreement of the\nparties regarding the subject matter hereof and supersedes all prior\nagreements or representations regarding such matters, whether written or oral.\nTo the extent any portion or provision of this Specifications License Agreement\nis found to be illegal or unenforceable, then the remaining provisions of this\nSpecifications License Agreement will remain in full force and effect and the \nillegal or unenforceable provision will be construed to give it such effect as it\nmay properly have that is consistent with the intentions of the parties.\n\n15. This Specifications License Agreement may only be modified in writing signed\nby an authorized representative of the IPTC.\n\n16. This Specifications License Agreement is governed by the law of United\nKingdom, as such law is applied to contracts made and fully performed in the\nUnited Kingdom. Any disputes arising from or relating to this Specifications\nLicense Agreement will be resolved in the courts of the United Kingdom. You\nconsent to the jurisdiction of such courts over you and covenant not to assert\nbefore such courts any objection to proceeding in such forums.\n\nIF YOU DO NOT AGREE TO THESE TERMS YOU MUST CEASE ALL USE OF THE\nSPECIFICATIONS AND MATERIALS NOW.\nIF YOU HAVE ANY QUESTIONS ABOUT THESE TERMS, PLEASE CONTACT THE\nMANAGING DIRECTOR OF THE INTERNATIONAL PRESS TELECOMMUNICATION\nCOUNCIL.\nAS OF THE DATE OF THIS REVISION OF THIS SPECIFICATIONS LICENSE\nAGREEMENT YOU MAY CONTACT THE IPTC at http://www.iptc.org.\nLicense agreement version of: 30 January 2006", + "json": "iptc-2006.json", + "yaml": "iptc-2006.yml", + "html": "iptc-2006.html", + "license": "iptc-2006.LICENSE" + }, + { + "license_key": "irfanview-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-irfanview-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "IrfanView Software License Agreement. \n\nThis is a legal agreement between you and IrfanView Software (Irfan Skiljan) covering your use of IrfanView (the \"Software\"). \n\n1) IrfanView is provided as freeware, but only for private, non-commercial use (that means at home). \n\n1a) IrfanView is free for educational use (schools, universities, museums and libraries) and for use in charity or humanitarian organisations. \n\n1b) If you intend to use IrfanView at your place of business or for commercial purposes, please register and purchase it.\nCommercial users: please contact me by E-Mail for prices, discounts and payment methods. \n\n1c) If you buy IrfanView license(s), Irfanview hereby grants to you a perpetual, worldwide, fully paid-up, non-exclusive license to use the Software solely for your internal business purposes. \n\n2) IrfanView Software is owned by Irfan Skiljan and is protected by copyright laws\nand international treaty provisions. Therefore, you must treat the Software like any other\ncopyrighted material. \n\n3) You may not distribute, rent, sub-license or otherwise make available to others the Software\nor documentation or copies thereof, except as expressly permitted in this License without prior\nwritten consent from IrfanView (Irfan Skiljan). In the case of an authorized transfer, the\ntransferee must agree to be bound by the terms and conditions of this License Agreement. \n\n4) You may not remove any proprietary notices, labels, trademarks on the Software or\ndocumentation. You may not modify, de-compile, disassemble or reverse engineer the Software. \n\n5) Limited warranty: IrfanView, IrfanView PlugIns and documentation are \"as is\" without any\nwarranty as to their performance, merchantability or fitness for any particular purpose.\nThe licensee assumes the entire risk as to the quality and performance of the software.\nIn no event shall IrfanView or anyone else who has been involved in the creation, development,\nproduction, or delivery of this software be liable for any direct, incidental or consequential\ndamages, such as, but not limited to, loss of anticipated profits, benefits, use, or data resulting\nfrom the use of this software, or arising out of any breach of warranty. \n\nCopyright (C) 2016 by Irfan Skiljan, Wiener Neustadt, Austria. \n\nInternet: http://www.irfanview.com, http://www.irfanview.net \nEmail: irfanview@gmx.net \n\nAll rights reserved.", + "json": "irfanview-eula.json", + "yaml": "irfanview-eula.yml", + "html": "irfanview-eula.html", + "license": "irfanview-eula.LICENSE" + }, + { + "license_key": "isc", + "category": "Permissive", + "spdx_license_key": "ISC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.", + "json": "isc.json", + "yaml": "isc.yml", + "html": "isc.html", + "license": "isc.LICENSE" + }, + { + "license_key": "iso-14496-10", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-iso-14496-10", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Software Copyright Licensing Disclaimer\n\nThis software module was originally developed by contributors to the\ncourse of the development of ISO/IEC 14496-10 for reference purposes\nand its performance may not have been optimized. This software\nmodule is an implementation of one or more tools as specified by\nISO/IEC 14496-10. ISO/IEC gives users free license to this software\nmodule or modifications thereof. Those intending to use this software\nmodule in products are advised that its use may infringe existing\npatents. ISO/IEC have no liability for use of this software module\nor modifications thereof. The original contributors retain full\nrights to modify and use the code for their own purposes, and to\nassign or donate the code to third-parties.\n\nThis copyright notice must be included in all copies or derivative\nworks.", + "json": "iso-14496-10.json", + "yaml": "iso-14496-10.yml", + "html": "iso-14496-10.html", + "license": "iso-14496-10.LICENSE" + }, + { + "license_key": "iso-8879", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-iso-8879", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to copy in any form is granted for use with\nconforming SGML systems and applications as defined in\nISO 8879, provided this notice is included in all copies.", + "json": "iso-8879.json", + "yaml": "iso-8879.yml", + "html": "iso-8879.html", + "license": "iso-8879.LICENSE" + }, + { + "license_key": "iso-recorder", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-iso-recorder", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This utility is free for non-commercial (personal) use. Other types of use\nshould be discussed with the author (a very reasonable person) - see the\ncontact information section. Author shall not be liable for any damage resulting\nfrom the use of this utility. All rights are reserved. \n4. Contact information Problems should be reported to isorecorder@alexfeinman.com\nTo discuss licensing issues please e-mail to Alex Feinman", + "json": "iso-recorder.json", + "yaml": "iso-recorder.yml", + "html": "iso-recorder.html", + "license": "iso-recorder.LICENSE" + }, + { + "license_key": "isotope-cla", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-isotope-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This Commercial License Agreement is a binding legal agreement between you and Metafizzy LLC (Metafizzy). By installing, copying, or using Isotope (the Software), you agree to be bound by these terms of this Agreement.\n\nGrant of License\n\nSubject to the payment of the fee required and the conditions herein, you are hereby granted a non-exclusive, non-transferable right to use Isotope (the Software) to design and develop commercial applications (Applications).\n\nDEVELOPER GRANT\n\nThe Isotope Commercial Developer License grants 1 license for you as 1 designated user (Developer) to use the Software for the purpose of developing Applications. A Developer is an individual who implements the Software into Applications, most often writing the necessary code to do so. You must purchase another separate license to the Software for each and any additional Developer, or purchase a Isotope Commercial Organization License to cover your organization as a whole.\n\nORGANIZATION GRANT\n\nThe Isotope Commercial Organization License grants 1 license for your Organization as 1 designated, collective user (Organization) to use the Software for the purpose of developing Applications. There is no limit or restriction of the number of Developers within your Organization who may develop Applications using the Software.\n\nUSAGE\n\nYou are granted the right to use and to modify the source code of the Software for use in Applications. There is no limit or restriction of the number of Applications which use the Software. You own any original work authored by you. Metafizzy continues to retain all copyright and other intellectual property rights in the Software. You are not permitted to move, remove, edit, or obscure any copyright, trademark, attribution, warning or disclaimer notices in the Software.\n\nYou may use the Software only to create Applications that are significantly different than and do not compete with the Software. You are granted the license to distribute the Software as part of your Applications on a royalty-free basis. Users of your Applications are permitted to use the Software or your modifications of the Software as part of your Applications. Users do not need to purchase their own commercial license for the Software, so long as they are not acting as Developers, developing their own commercial Applications with the Software.\n\nWarranties and Remedies\n\nThe 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. Metafizzy\u2019s entire liability and your exclusive remedy under this agreement shall be return of the price paid for the Software.", + "json": "isotope-cla.json", + "yaml": "isotope-cla.yml", + "html": "isotope-cla.html", + "license": "isotope-cla.LICENSE" + }, + { + "license_key": "issl-2018", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-issl-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Intel Simplified Software License (Version April 2018)\n\nCopyright (c) 2018 Intel Corporation.\n\nUse and Redistribution. You may use and redistribute the software (the \u201cSoftware\u201d), without modification, provided the following conditions are met:\n\n* Redistributions must reproduce the above copyright notice and the following terms of use in the Software and in the documentation and/or other materials provided with the distribution.\n\n* Neither the name of Intel nor the names of its suppliers may be used to endorse or promote products derived from this Software without specific prior written permission.\n\n* No reverse engineering, decompilation, or disassembly of this Software is permitted.\n\nLimited patent license. Intel grants you a world-wide, royalty-free, non-exclusive license under patents it now or hereafter owns or controls to make, have made, use, import, offer to sell and sell (\u201cUtilize\u201d) this Software, but solely to the extent that any such patent is necessary to Utilize the Software alone. The patent license shall not apply to any combinations which include this software. No hardware per se is licensed hereunder.\n\nThird party and other Intel programs. \u201cThird Party Programs\u201d are the files listed in the \u201cthird-party-programs.txt\u201d text file that is included with the Software and may include Intel programs under separate license terms. Third Party Programs, even if included with the distribution of the Materials, are governed by separate license terms and those license terms solely govern your use of those programs. \n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT ARE DISCLAIMED. THIS SOFTWARE IS NOT INTENDED FOR USE IN SYSTEMS OR APPLICATIONS WHERE FAILURE OF THE SOFTWARE MAY CAUSE PERSONAL INJURY OR DEATH AND YOU AGREE THAT YOU ARE FULLY RESPONSIBLE FOR ANY CLAIMS, COSTS, DAMAGES, EXPENSES, AND ATTORNEYS\u2019 FEES ARISING OUT OF ANY SUCH USE, EVEN IF ANY CLAIM ALLEGES THAT INTEL WAS NEGLIGENT REGARDING THE DESIGN OR MANUFACTURE OF THE MATERIALS.\n\nLIMITATION OF LIABILITY. IN NO EVENT WILL INTEL 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. YOU AGREE TO INDEMNIFY AND HOLD INTEL HARMLESS AGAINST ANY CLAIMS AND EXPENSES RESULTING FROM YOUR USE OR UNAUTHORIZED USE OF THE SOFTWARE.\n\nNo support. Intel may make changes to the Software, at any time without notice, and is not obligated to support, update or provide training for the Software.\n\nTermination. Intel may terminate your right to use the Software in the event of your breach of this Agreement and you fail to cure the breach within a reasonable period of time.\n\nFeedback. Should you provide Intel with comments, modifications, corrections, enhancements or other input (\u201cFeedback\u201d) related to the Software Intel will be free to use, disclose, reproduce, license or otherwise distribute or exploit the Feedback in its sole discretion without any obligations or restrictions of any kind, including without limitation, intellectual property rights or licensing obligations.\n\nCompliance with laws. You agree to comply with all relevant laws and regulations governing your use, transfer, import or export (or prohibition thereof) of the Software.\n\nGoverning law. All disputes will be governed by the laws of the United States of America and the State of Delaware without reference to conflict of law principles and subject to the exclusive jurisdiction of the state or federal courts sitting in the State of Delaware, and each party agrees that it submits to the personal jurisdiction and venue of those courts and waives any objections. The United Nations Convention on Contracts for the International Sale of Goods (1980) is specifically excluded and will not apply to the Software.\n\n*Other names and brands may be claimed as the property of others.", + "json": "issl-2018.json", + "yaml": "issl-2018.yml", + "html": "issl-2018.html", + "license": "issl-2018.LICENSE" + }, + { + "license_key": "itc-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-itc-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This Agreement constitutes the complete agreement between you and International Typeface Corporation (ITC) (except for multi-CPU licenses, where another document supplements this one and outlines and confirms the scope of the your upgraded license). If you do not agree to the terms stated in this Agreement, you may obtain a full refund by contacting ITC at the address below within 15 days with your proof of payment.\n\nInternational Typeface Corporation\nDepartment: DRL\n228 East 45th Street / 12th Floor\nNew York, New York 10017 USA\nEmail: info@itcfonts.com\nTHE SOFTWARE. The digital file downloaded to your computer contains Software that is the property of ITC. \"Software\" includes computer programs and the digitally encoded, machine readable, scalable outline font data as encoded in a special format. This Agreement grants you certain rights to use the Software and is not an agreement for sale of the Software or any portion or copy of it.\n\nGRANT OF LICENSE. In return for the license fee that you have paid, ITC grants you a non-exclusive license to install and use the Software on up to five CPUs at a single location. These CPUs can be connected to, and the Software used with, any number of output devices, such as a laser printer, ink jet printer, an imagesetter or a film recorder, but the Software may only be downloaded to the non-volatile memory, such as a hard disk, of one output device. If you need to download the Software to more than one output device or install it on more than five CPUs, you are required to acquire additional licenses from ITC.\n\nOTHER RIGHTS. Except for your right to use the Software granted by this license, all other rights, title and interest in the Software and related trademarks and trade names are owned and retained by ITC . You agree to establish reasonable procedures regulating access to and use of the Software and use of the related trademarks and trade names in accordance with the laws of the United States and this Agreement.\n\nOTHER RESTRICTION. You may not duplicate or copy the Software except as needed to use it as described above. You may not modify, adapt, translate, reverse engineer, decompile or disassemble the Software. You agree not to ship, export, or transfer the Software into any country or to use the Software in any manner prohibited by the United States Export Administration Act. The trademarks and trade names of ITC can only be used to identify printed output produced by the Software. You agree not to remove and trademark or copyright notices from the output produced by the Software.\n\nASSIGNMENT. You are not authorized to sublicense, sell, or lease the Software, but you may permanently transfer your rights under this Agreement to a third party; provided that (i) you transfer your copy of this Agreement, the Software, and all original documentation to the third party, (ii) you destroy all of your copies of the Software and accompanying documentation, and (iii) the third party agrees in writing to be bound by the terms of this Agreement.\n\nSERVICE BUREAUS. You are authorized to provide a copy of the Software to a service bureau only if they provide you with written assurance that they already own a valid license from ITC to use the Software. Any copies of the Software transferred to a service bureau under this condition must contain the proprietary notices of ITC contained in the Software.\n\nTERMINATION. This Agreement will immediately and automatically terminate without notice if you fail to comply with any term or condition of this Agreement. If this Agreement is terminated, you agreed to destroy all copies of the Software and documentation in your possession.\n\nLIMITED WARRANTY. For a period of 90 days after delivery, ITC warrants that the Software will perform in accordance with the specifications published by ITC. ITC MAKES NO OTHER WARRANTIES, EXPRESS OR IMPLIED. THE WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE AND MERCHANTABILITY ARE SPECIFICALLY EXCLUDED. ITC DOES NOT WARRANT THAT THE SOFTWARE IS FREE FROM ALL ERRORS AND OMISSIONS. If you require or desire greater protection or rights, you may notify ITC and make additional payments for this purpose in amounts to be discussed with ITC.\n\nLIMITATION OF LIABILITY. Your exclusive remedy and the sole liability of ITC in connection with the Software is repair or replacement of defective parts. ITC\u2019S CUMULATIVE LIABILITY FOR ANY LOSS OR DAMAGE RELATING TO THIS AGREEMENT SHALL NOT EXCEED THE PURCHASE PRICE THAT YOU PAID FOR THE LICENSE. IN NO EVENT WILL ITC BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES SUCH AS LOST PROFITS, OR LOST DATA, OR ANY DAMAGES CAUSED BY THE ABUSE OR MISAPPLICATION OF THE SOFTWARE.\n\nGENERAL. This Agreement will be governed by the law of New York. YOU ACKNOWLEDGE THAT YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS AND CONDITIONS OF THIS AGREEMENT.", + "json": "itc-eula.json", + "yaml": "itc-eula.yml", + "html": "itc-eula.html", + "license": "itc-eula.LICENSE" + }, + { + "license_key": "itu", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-itu", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "COPYRIGHT AND WARRANTY INFORMATION Copyright , International Telecommunications Union, Geneva\n\nDISCLAIMER OF WARRANTY\n\nThese software programs are available to the user without any license fee or royalty on an \"as is\" basis. The ITU disclaims any and all warranties, whether express, implied, or statutory, including any implied warranties of merchantability or of fitness for a particular purpose. In no event shall the contributor or the ITU be liable for any incidental, punitive, or consequential damages of any kind whatsoever arising from the use of these programs.\n\nThis disclaimer of warranty extends to the user of these programs and user's customers, employees, agents, transferees, successors, and assigns.\n\nThe ITU does not represent or warrant that the programs furnished hereunder are free of infringement of any third-party patents. Commercial implementations of ITU-T Recommendations, including shareware, may be subject to royalty fees to patent holders. Information regarding the ITU-T patent policy is available from the ITU Web site at http://www.itu.int. \n\nTHIS IS NOT A GRANT OF PATENT RIGHTS - SEE THE ITU-T PATENT POLICY.", + "json": "itu.json", + "yaml": "itu.yml", + "html": "itu.html", + "license": "itu.LICENSE" + }, + { + "license_key": "itu-t", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-itu-t", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Software(1) License Agreement \n\nITU hereby grants you a worldwide, non-exclusive, free license to reproduce, modify, and use the Software for the limited purpose of implementing an ITU-T Recommendation. \n\nYou may not rent, lease, sell, sublicense, assign or otherwise transfer the Software to third parties, except as specifically provided herein. This limitation includes, but is not limited to, placing this Software at the disposal of third parties, such as by placing it on an external network. Your use of this Software indicates your acceptance of these terms and conditions. \n\nITU draws attention to the possibility that the practice or implementation of an ITU-T Recommendation may involve the use of a claimed Intellectual Property Right. ITU takes no position concerning the evidence, validity or applicability of claimed Intellectual Property Rights, whether asserted by ITU members or others outside of the Recommendation development process. However, implementors are strongly urged to consult the TSB patent database (http://www.itu.int/ipr) to discover if ITU has received notice of intellectual property, protected by patents, which may be required to implement a Recommendation. \n\nDisclaimer: In no event shall the ITU be liable for any damages whatsoever (including, without limitation, damages for loss of profits, business interruption, loss of information, or any other pecuniary loss) arising out of or related to the use of or inability to use the accompanying Software. The ITU disclaims all warranties, express or implied, including but not limited to, warranties of merchantability and fitness for a particular purpose. \n_ \n\n(1)In the context of this Software License Agreement the term \"Software\" includes source code, object code and/or data, there including audiovisual materials.", + "json": "itu-t.json", + "yaml": "itu-t.yml", + "html": "itu-t.html", + "license": "itu-t.LICENSE" + }, + { + "license_key": "itu-t-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-itu-t-gpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ITU-T SOFTWARE TOOLS' GENERAL PUBLIC LICENSE\n===\n\nThis \"General Public License\" is published in the Annex 1 of the ITU-T Recommendation on \"SOFTWARE TOOLS FOR HOMOGENITY OF RESULTS IN THE STANDARDIZATION PROCESS OF SPEECH AND AUDIO CODERS\", approved in Geneva, 2000.\n\nTERMS AND CONDITIONS\n\n1. This License Agreement applies to any module or other work related to the ITU-T Software Tool Library, and developed by the User's Group on Software Tools. The \"Module\", below, refers to any such module or work, and a \"work based on the Module\" means either the Module or any work containing the Module or a portion of it, either verbatim or with modifications.\nEach licensee is addressed as \"you\".\n\n2. You may copy and distribute verbatim copies of the Module's\nsource code as you receive it, in any medium, provided that you:\n-\tconspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty;\n-keep intact all the notices that refer to this General Public License and to the absence of any warranty; and\n-give any other recipients of the Module a copy of this General Public License along with the Module.\n\nYou may charge a fee for the physical act of transferring a copy.\n\n3. You may modify your copy or copies of the Module or any portion of it, and copy and distribute such modifications under the terms of Paragraph 1 above, provided that you also do the following:\n - cause the modified files to carry prominent notices stating that you changed the files and the date of any change; and\n - cause the whole of any work that you distribute or publish, that in whole or in part contains the Module or any part thereof, either with or without modifications, to be licensed at no charge to all third parties under the terms of this General Public License (except that you may choose to grant warranty protection to some or all third parties, at your option).\n - If the modified module normally reads commands interactively when run, you must cause it, when started running for such interactive use in the simplest and most usual 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 module under these conditions, and telling the user how to view a copy of this General Public License.\n\nYou 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.\n\nMere aggregation of another independent work with the Module (or its derivative) on a volume of a storage or distribution medium does not bring the other work under the scope of these terms.\n\n4.You may copy and distribute the Module (or a portion or derivative of it, under Paragraph 2) in object code or executable form under the terms of Paragraphs 1 and 2 above provided that you also do one of the following:\n - accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Paragraphs 1 and 2 above; or,\n - accompany it with a written offer, valid for at least three years, to give any third party free (except for a nominal charge for the cost of distribution) a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Paragraphs 1 and 2 above; or,\n - accompany it with the information you received as to where the corresponding source code may be obtained.\n (This alternative is allowed only for noncommercial distribution and only if you received the module in object code or executable form alone.)\n\nSource code for a work means the preferred form of the work for making modifications to it.\nFor an executable file, complete source code means all the source code for all modules it contains;\nbut, as a special exception, it need not include source code for modules which are standard libraries that accompany the operating system on which the executable file runs, or for standard header files or definitions files that accompany that operating system.\n\n5. You may not copy, modify, sublicense, distribute or transfer the Module except as expressly provided under this General Public License.\nAny attempt otherwise to copy, modify, sublicense, distribute or transfer the Module is void, and will automatically terminate your rights to use the Module under this License.\nHowever, parties who have received copies, or rights to use copies, from you under this General Public License will not have their licenses terminated so long as such parties remain in full compliance.\n\n6. By copying, distributing or modifying the Module (or any work based on the Module) you indicate your acceptance of this license to do so, and all its terms and conditions.\n\n7. Each time you redistribute the Module (or any work based on the Module), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Module subject to these terms and conditions.\nYou may not impose any further restrictions on the recipients' exercise of the rights granted herein.\n\n8. The ITU-T may publish revised and/or new versions of this General Public License from time to time.\nSuch new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number.\nIf the Module specifies a version number of the 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 ITU-T.\nIf the Module does not specify a version number of the license, you may choose any version ever published by the ITU-T.\n\n9. If you wish to incorporate parts of the Module into other free modules whose distribution conditions are different, write to the author to ask for permission.\nFor software which is copyrighted by the ITU-T, write to the ITU-T Secretariat; exceptions may be made for this.\nThis decision will be guided by the two goals of preserving the free status of all derivatives of this free software\nand of promoting the sharing and reuse of software generally.\n\nNO WARRANTY\n\n10. BECAUSE THE MODULE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE MODULE, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE MODULE \"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.\nTHE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE MODULE IS WITH YOU.SHOULD THE MODULE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n11. 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 MODULE 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 MODULE (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 MODULE TO OPERATE WITH ANY OTHER MODULES), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nEND OF TERMS AND CONDITIONS", + "json": "itu-t-gpl.json", + "yaml": "itu-t-gpl.yml", + "html": "itu-t-gpl.html", + "license": "itu-t-gpl.LICENSE" + }, + { + "license_key": "itunes", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-itunes", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ENGLISH\n\nAPPLE INC.\nSOFTWARE LICENSE AGREEMENT FOR iTUNES\n\nPLEASE READ THIS SOFTWARE LICENSE AGREEMENT (\"LICENSE\") CAREFULLY BEFORE USING THE APPLE SOFTWARE. BY USING THE APPLE SOFTWARE, YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS LICENSE. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE, DO NOT USE THE SOFTWARE. IF YOU DO NOT AGREE TO THE TERMS OF THE LICENSE, YOU MAY RETURN THE APPLE SOFTWARE TO THE PLACE WHERE YOU OBTAINED IT FOR A REFUND. IF THE APPLE SOFTWARE WAS ACCESSED ELECTRONICALLY, CLICK \"DISAGREE/DECLINE\". FOR APPLE SOFTWARE INCLUDED WITH YOUR PURCHASE OF HARDWARE, YOU MUST RETURN THE ENTIRE HARDWARE/SOFTWARE PACKAGE IN ORDER TO OBTAIN A REFUND.\n\nIMPORTANT NOTE: This software may be used to reproduce materials. It is licensed to you only for reproduction of non-copyrighted materials, materials in which you own the copyright, or materials you are authorized or legally permitted to reproduce. This software may also be used for remote access to music files for listening between computers. Remote access of copyrighted music is only provided for lawful personal use or as otherwise legally permitted. If you are uncertain about your right to copy or permit access to any material you should contact your legal advisor.\n\n1. General. The software, documentation and any fonts accompanying this License whether on disk, in read only memory, on any other media or in any other form (collectively the \"Apple Software\") are licensed, not sold, to you by Apple Inc. (\"Apple\") for use only under the terms of this License, and Apple reserves all rights not expressly granted to you. The rights granted herein are limited to Apple's and its licensors' intellectual property rights in the Apple Software and do not include any other patents or intellectual property rights. You own the media on which the Apple Software is recorded but Apple and/or Apple's licensor(s) retain ownership of the Apple Software itself. The terms of this License will govern any software upgrades provided by Apple that replace and/or supplement the original Apple Software product, unless such upgrade is accompanied by a separate license in which case the terms of that license will govern.\n\n2. Permitted License Uses and Restrictions. This License allows you to install and use the Apple Software. The Apple Software may be used to reproduce materials so long as such use is limited to reproduction of non-copyrighted materials, materials in which you own the copyright, or materials you are authorized or legally permitted to reproduce. You may not make the Apple Software available over a network where it could be used by multiple computers at the same time. You may make one copy of the Apple Software in machine-readable form for backup purposes only; provided that the backup copy must include all copyright or other proprietary notices contained on the original. Except as and only to the extent expressly permitted in this License or by applicable law, you may not copy, decompile, reverse engineer, disassemble, modify, or create derivative works of the Apple Software or any part thereof. THE APPLE SOFTWARE IS NOT INTENDED FOR USE IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL SYSTEMS, LIFE SUPPORT MACHINES OR OTHER EQUIPMENT IN WHICH THE FAILURE OF THE APPLE SOFTWARE COULD LEAD TO DEATH, PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE.\n\n3. Transfer. You may not rent, lease, lend, redistribute or sublicense the Apple Software. You may, however, make a one-time permanent transfer of all of your license rights to the Apple Software to another party, provided that: (a) the transfer must include all of the Apple Software, including all its component parts, original media, printed materials and this License; (b) you do not retain any copies of the Apple Software, full or partial, including copies stored on a computer or other storage device; and (c) the party receiving the Apple Software reads and agrees to accept the terms and conditions of this License.\n\n4. Consent to Use of Data.\n\nYou agree that Apple and its subsidiaries may collect and use technical and related information, including but not limited to technical information about your computer, system and application software, and peripherals, that is gathered periodically to facilitate the provision of software updates, product support and other services to you (if any) related to the Apple Software and to verify compliance with the terms of this License. Apple may use this information, as long as it is in a form that does not personally identify you, to improve our products or to provide services or technologies to you.\n\n5. iTunes Store and other Services. This software enables access to Apple's iTunes Store which offers downloads of music for sale and other services (collectively and individually, \"Services\"). Use of the Services requires Internet access and use of certain Services requires you to accept additional terms of service which will be presented to you before you can use such Services.\n\nBy using this software in connection with an iTunes Store account, you agree to the latest iTunes Store Terms of Service, which you may access and review from the home page of the iTunes Store.\n\nYou understand that by using any of the Services, you may encounter content that may be deemed offensive, indecent, or objectionable, which content may or may not be identified as having explicit language. Nevertheless, you agree to use the Services at your sole risk and that Apple shall have no liability to you for content that may be found to be offensive, indecent, or objectionable. Content types (including genres, sub-genres and Podcast categories and sub-categories and the like) and descriptions are provided for convenience, and you acknowledge and agree that Apple does not guarantee their accuracy.\n\nCertain Services may include materials from third parties or links to certain third party web sites. You acknowledge and agree that Apple is not responsible for examining or evaluating the content or accuracy of any such third-party material or web sites. Apple does not warrant or endorse and does not assume and will not have any liability or responsibility for any third-party materials or web sites, or for any other materials, products, or services of third parties. Links to other web sites are provided solely as a convenience to you. You agree that you will not use any third-party materials in a manner that would infringe or violate the rights of any other party, and that Apple is not in any way responsible for any such use by you.\n\nYou agree that the Services, including but not limited to graphics, audio clips, and editorial content, contain proprietary information and material that is owned by Apple and/or its licensors, and is protected by applicable intellectual property and other laws, including but not limited to copyright, and that you will not use such proprietary information or materials in any way whatsoever except for permitted use of the Services. No portion of the Services may be reproduced in any form or by any means. You agree not to modify, rent, lease, loan, sell, distribute, or create derivative works based on the Services, in any manner, and you shall not exploit the Services in any unauthorized way whatsoever, including but not limited to, by trespass or burdening network capacity.\n\nApple and its licensors reserve the right to change, suspend, remove, or disable access to any Services at any time without notice. In no event will Apple be liable for the removal of or disabling of access to any such Services. Apple may also impose limits on the use of or access to certain Services, in any case and without notice or liability.\n\n6. Termination. This License is effective until terminated. Your rights under this License will terminate automatically without notice from Apple if you fail to comply with any term(s) of this License. Upon the termination of this License, you shall cease all use of the Apple Software and destroy all copies, full or partial, of the Apple Software.\n\n7. Limited Warranty on Media. Apple warrants the media on which the Apple Software is recorded and delivered by Apple to be free from defects in materials and workmanship under normal use for a period of ninety (90) days from the date of original retail purchase. Your exclusive remedy under this Section shall be, at Apple's option, a refund of the purchase price of the product containing the Apple Software or replacement of the Apple Software which is returned to Apple or an Apple authorized representative with a copy of the receipt. THIS LIMITED WARRANTY AND ANY IMPLIED WARRANTIES ON THE MEDIA INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, OF SATISFACTORY QUALITY, AND OF FITNESS FOR A PARTICULAR PURPOSE, ARE LIMITED IN DURATION TO NINETY (90) DAYS FROM THE DATE OF ORIGINAL RETAIL PURCHASE. SOME JURISDICTIONS DO NOT ALLOW LIMITATIONS ON HOW LONG AN IMPLIED WARRANTY LASTS, SO THE ABOVE LIMITATION MAY NOT APPLY TO YOU. THE LIMITED WARRANTY SET FORTH HEREIN IS THE ONLY WARRANTY MADE TO YOU AND IS PROVIDED IN LIEU OF ANY OTHER WARRANTIES (IF ANY) CREATED BY ANY DOCUMENTATION OR PACKAGING. THIS LIMITED WARRANTY GIVES YOU SPECIFIC LEGAL RIGHTS, AND YOU MAY ALSO HAVE OTHER RIGHTS WHICH VARY BY JURISDICTION.\n\n8. Disclaimer of Warranties. YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT USE OF THE APPLE SOFTWARE (AS DEFINED ABOVE) AND SERVICES (AS DEFINED BELOW) IS AT YOUR SOLE RISK AND THAT THE ENTIRE RISK AS TO SATISFACTORY QUALITY, PERFORMANCE, ACCURACY AND EFFORT IS WITH YOU. EXCEPT FOR THE LIMITED WARRANTY ON MEDIA SET FORTH ABOVE AND TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE APPLE SOFTWARE AND SERVICES ARE PROVIDED \"AS IS\", WITH ALL FAULTS AND WITHOUT WARRANTY OF ANY KIND, AND APPLE AND APPLE'S LICENSORS (COLLECTIVELY REFERRED TO AS \"APPLE\" FOR THE PURPOSES OF SECTIONS 8 AND 9) HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH RESPECT TO THE APPLE SOFTWARE AND SERVICES, EITHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND NON-INFRINGEMENT OF THIRD PARTY RIGHTS. APPLE DOES NOT WARRANT AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE APPLE SOFTWARE OR SERVICES, THAT THE FUNCTIONS CONTAINED IN THE APPLE SOFTWARE OR SERVICES WILL MEET YOUR REQUIREMENTS, THAT THE OPERATION OF THE APPLE SOFTWARE OR SERVICES WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT DEFECTS IN THE APPLE SOFTWARE OR SERVICES WILL BE CORRECTED. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE OR AN APPLE AUTHORIZED REPRESENTATIVE SHALL CREATE A WARRANTY. SHOULD THE APPLE SOFTWARE OR SERVICES PROVE DEFECTIVE, YOU ASSUME THE ENTIRE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES OR LIMITATIONS ON APPLICABLE STATUTORY RIGHTS OF A CONSUMER, SO THE ABOVE EXCLUSION AND LIMITATIONS MAY NOT APPLY TO YOU.\n\n9. Limitation of Liability. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT SHALL APPLE BE LIABLE FOR PERSONAL INJURY, OR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS, LOSS OF DATA, BUSINESS INTERRUPTION OR ANY OTHER COMMERCIAL DAMAGES OR LOSSES, ARISING OUT OF OR RELATED TO YOUR USE OR INABILITY TO USE THE APPLE SOFTWARE OR SERVICES, HOWEVER CAUSED, REGARDLESS OF THE THEORY OF LIABILITY (CONTRACT, TORT OR OTHERWISE) AND EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY FOR PERSONAL INJURY, OR OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY TO YOU. In no event shall Apple's total liability to you for all damages (other than as may be required by applicable law in cases involving personal injury) exceed the amount of fifty dollars ($50.00). The foregoing limitations will apply even if the above stated remedy fails of its essential purpose.\n\n10. Export Control. You may not use or otherwise export or reexport the Apple Software except as authorized by United States law and the laws of the jurisdiction in which the Apple Software was obtained. In particular, but without limitation, the Apple Software may not be exported or re-exported (a) into any U.S. embargoed countries or (b) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Department of Commerce Denied Person's List or Entity List. By using the Apple Software, you represent and warrant that you are not located in any such country or on any such list. You also agree that you will not use these products for any purposes prohibited by United States law, including, without limitation, the development, design, manufacture or production of missiles, or nuclear, chemical or biological weapons.\n\n11. Government End Users. The Apple Software and related documentation are \"Commercial Items\", as that term is defined at 48 C.F.R. 2.101, consisting of \"Commercial Computer Software\" and \"Commercial Computer Software Documentation\", as such terms are used in 48 C.F.R. 12.212 or 48 C.F.R. 227.7202, as applicable. Consistent with 48 C.F.R. 12.212 or 48 C.F.R. 227.7202-1 through 227.7202-4, as applicable, the Commercial Computer Software and Commercial Computer Software Documentation are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Unpublished-rights reserved under the copyright laws of the United States.\n\n12. Controlling Law and Severability. This License will be governed by and construed in accordance with the laws of the State of California, as applied to agreements entered into and to be performed entirely within California between California residents. This License shall not be governed by the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. If for any reason a court of competent jurisdiction finds any provision, or portion thereof, to be unenforceable, the remainder of this License shall continue in full force and effect.\n\n13. Complete Agreement; Governing Language. This License constitutes the entire agreement between the parties with respect to the use of the Apple Software licensed hereunder and supersedes all prior or contemporaneous understandings regarding such subject matter, with the exception of any additional terms and conditions you are required to accept if you choose to use Apple's online store which will govern your use of such store and any Services you purchase through that store. No amendment to or modification of this License will be binding unless in writing and signed by Apple. Any translation of this License is done for local requirements and in the event of a dispute between the English and any non-English versions, the English version of this License shall govern.\n\n14. Third Party Software and Service Terms and Conditions.\nA. Gracenote CDDB Terms of Use. This application contains software from Gracenote, Inc. of Berkeley, California (\"Gracenote\"). The software from Gracenote (the \"Gracenote CDDB Client\") enables this application to do online disc identification and obtain music-related information, including name, artist, track, and title information (\"Gracenote Data\") from online servers (\"Gracenote CDDB Servers\") and to perform other functions. You may use Gracenote Data only by means of the intended End User functions of this application software.\n\nYou agree that you will use Gracenote Data, the Gracenote CDDB Client, and Gracenote CDDB Servers for your own personal non-commercial use only. You agree not to assign, copy, transfer or transmit the Gracenote CDDB Client or any Gracenote Data to any third party. YOU AGREE NOT TO USE OR EXPLOIT GRACENOTE DATA, THE GRACENOTE CDDB CLIENT, OR GRACENOTE CDDB SERVERS, EXCEPT AS EXPRESSLY PERMITTED HEREIN.\n\nYou agree that your non-exclusive license to use the Gracenote Data, the Gracenote CDDB Client, and Gracenote CDDB Servers will terminate if you violate these restrictions. If your license terminates, you agree to cease any and all use of the Gracenote Data, the Gracenote CDDB Client, and Gracenote CDDB Servers. Gracenote reserves all rights in Gracenote Data, the Gracenote CDDB Client, and the Gracenote CDDB Servers, including all ownership rights. Under no circumstances will Gracenote become liable for any payment to you for any information that you provide. You agree that CDDB, Inc. may enforce its rights under this Agreement against you directly in its own name.\n\nThe Gracenote CDDB Service uses a unique identifier to track queries for statistical purposes. The purpose of a randomly assigned numeric identifier is to allow the Gracenote CDDB service to count queries without knowing anything about who you are. For more information, see the web page for the Gracenote Privacy Policy for the Gracenote CDDB Service.\n\nThe Gracenote CDDB Client and each item of Gracenote Data are licensed to you \"AS IS\". Gracenote makes no representations or warranties, express or implied, regarding the accuracy of any Gracenote Data from in the Gracenote CDDB Servers. Gracenote reserves the right to delete data from the Gracenote CDDB Servers or to change data categories for any cause that Gracenote deems sufficient. No warranty is made that the Gracenote CDDB Client or Gracenote CDDB Servers are error-free or that functioning of Gracenote CDDB Client or Gracenote CDDB Servers will be uninterrupted. Gracenote is not obligated to provide you with any new enhanced or additional data types or categories that Gracenote may choose to provide in the future and is free to discontinue its online services at any time.\n\nGRACENOTE DISCLAIMS ALL WARRANTIES EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT. Gracenote does not warrant the results that will be obtained by your use of the Gracenote CDDB Client or any Gracenote CDDB Server. IN NO CASE WILL GRACENOTE BE LIABLE FOR ANY CONSEQUENTIAL OR INCIDENTAL DAMAGES OR FOR ANY LOST PROFITS OR LOST REVENUES.\n\nB. Kerbango Tuning Service Terms and Conditions.\nTerms of Service. By using 3Com Corporation's (\"3Com\") Kerbango tuning service, (\"Kerbango Tuning Service\") you agree to be bound by the following terms and conditions (the \"TOS\"):\n\n3Com Links. The sites displayed as search results or linked to by the Kerbango Tuning Service are owned and operated by individuals and/or companies over whom 3Com exercises no control. 3Com assumes no responsibility for the content of any site included in any search results or otherwise linked to by the Kerbango Tuning Service.\n\nPersonal Use Only. The Kerbango Tuning Service is made available for your personal, non-commercial use only. Use of the Kerbango Tuning Service to sell a product or service, or to increase traffic to your Web site for commercial reasons, such as advertising sales is expressly forbidden. You may not take the results from a Kerbango search and reformat and display them, or mirror the 3Com's Kerbango home page or results pages on your Web site, or send automated queries to Kerbango's system without express permission from 3Com.\n\nIf you wish to make commercial use of the Kerbango Tuning Service you must enter into an agreement with 3Com to do so. Please contact sales@kerbango.com for more information.\n\nChanges In Terms and Conditions and Kerbango Tuning Service. 3Com may modify or terminate its services from time to time, for any reason, and without notice, including the right to terminate with or without notice, without liability to you, any other user or any third party. 3Com reserves the right to modify the TOS from time to time without notice.\n\nDisclaimer of Warranties. 3Com disclaims any and all responsibility or liability for the accuracy, content, completeness, legality, reliability, or operability or availability of information or material displayed in the Kerbango Tuning Service results. 3Com disclaims any responsibility for the deletion, failure to store, misdelivery, or untimely delivery of any information or material. 3Com disclaims any responsibility for any harm resulting from downloading or accessing any information or material on the Internet through the Kerbango Tuning Service.\n\nTHE KERBANGO TUNING SERVICE IS PROVIDED \"AS IS\", WITH NO WARRANTIES WHATSOEVER. 3COM EXPRESSLY DISCLAIMS TO THE FULLEST EXTENT PERMITTED BY LAW ALL EXPRESS, IMPLIED, AND STATUTORY WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT OF PROPRIETARY RIGHTS. 3COM DISCLAIMS ANY WARRANTIES REGARDING THE SECURITY, RELIABILITY, TIMELINESS, AND PERFORMANCE OF THE KERBANGO TUNING SERVICE. 3COM DISCLAIMS ANY WARRANTIES FOR ANY INFORMATION OR ADVICE OBTAINED THROUGH THE KERBANGO TUNING SERVICE. 3COM DISCLAIMS ANY WARRANTIES FOR SERVICES OR GOODS RECEIVED THROUGH OR ADVERTISED ON THE KERBANGO TUNING SERVICE OR RECEIVED THROUGH ANY LINKS PROVIDED BY THE KERBANGO TUNING SERVICE, AS WELL AS FOR ANY INFORMATION OR ADVICE RECEIVED THROUGH ANY LINKS PROVIDED IN THE KERBANGO TUNING SERVICE.\n\nYOU UNDERSTAND AND AGREE THAT YOU DOWNLOAD OR OTHERWISE OBTAIN MATERIAL OR DATA THROUGH THE USE OF THE KERBANGO TUNING SERVICE AT YOUR OWN DISCRETION AND RISK AND THAT YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGES TO YOUR COMPUTER SYSTEM OR LOSS OF DATA THAT RESULTS IN THE DOWNLOAD OF SUCH MATERIAL OR DATA.\n\nSOME STATES OR OTHER JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO THE ABOVE EXCLUSIONS MAY NOT APPLY TO YOU. YOU MAY ALSO HAVE OTHER RIGHTS THAT VARY FROM STATE TO STATE AND JURISDICTION TO JURISDICTION.\n\nLimitation of Liability. UNDER NO CIRCUMSTANCES SHALL 3COM BE LIABLE TO ANY USER ON ACCOUNT OF THAT USER'S USE OR MISUSE OF OR RELIANCE ON THE KERBANGO TUNING SERVICE ARISING FROM ANY CLAIM RELATING TO THIS LICENSE OR THE SUBJECT MATTER HEREOF. SUCH LIMITATION OF LIABILITY SHALL APPLY TO PREVENT RECOVERY OF DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, EXEMPLARY, AND PUNITIVE DAMAGES WHETHER SUCH CLAIM IS BASED ON WARRANTY, CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE (EVEN IF 3COM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES). SUCH LIMITATION OF LIABILITY SHALL APPLY WHETHER THE DAMAGES ARISE FROM USE OR MISUSE OF AND RELIANCE ON THE KERBANGO TUNING SERVICE, FROM INABILITY TO USE THE KERBANGO TUNING SERVICE, OR FROM THE INTERRUPTION, SUSPENSION, OR TERMINATION OF THE KERBANGO TUNING SERVICE (INCLUDING SUCH DAMAGES INCURRED BY THIRD PARTIES). THIS LIMITATION SHALL ALSO APPLY WITH RESPECT TO DAMAGES INCURRED BY REASON OF OTHER SERVICES OR GOODS RECEIVED THROUGH OR ADVERTISED ON THE KERBANGO TUNING SERVICE OR RECEIVED THROUGH ANY LINKS PROVIDED IN THE KERBANGO TUNING SERVICE, AS WELL AS BY REASON OF ANY INFORMATION OR ADVICE RECEIVED THROUGH OR ADVERTISED ON THE KERBANGO TUNING SERVICE OR RECEIVED THROUGH ANY LINKS PROVIDED IN THE KERBANGO TUNING SERVICE. THIS LIMITATION SHALL ALSO APPLY, WITHOUT LIMITATION, TO THE COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, OR LOST DATA. SUCH LIMITATION SHALL FURTHER APPLY WITH RESPECT TO THE PERFORMANCE OR NON-PERFORMANCE OF THE KERBANGO TUNING SERVICE OR ANY INFORMATION OR MERCHANDISE THAT APPEARS ON, OR IS LINKED OR RELATED IN ANY WAY TO, THE KERBANGO TUNING SERVICE. SUCH LIMITATION SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY AND TO THE FULLEST EXTENT PERMITTED BY LAW.\n\nSOME STATES OR OTHER JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE LIMITATIONS AND EXCLUSIONS MAY NOT APPLY TO YOU.\n\nWithout limiting the foregoing, under no circumstances shall 3Com be held liable for any delay or failure in performance resulting directly or indirectly from acts of nature, forces, or causes beyond its reasonable control, including, without limitation, Internet failures, computer equipment failures, telecommunication equipment failures, other equipment failures, electrical power failures, strikes, labor disputes, riots, insurrections, civil disturbances, shortages of labor or materials, fires, floods, storms, explosions, acts of God, war, governmental actions, orders of domestic or foreign courts or tribunals, non-performance of third parties, or loss of or fluctuations in heat, light, or air conditioning.\n\nMiscellaneous Provisions. These TOS will be governed by and construed in accordance with the laws of the State of California, without giving effect to its conflict of laws provisions or your actual state or country of residence. If for any reason a court of competent jurisdiction finds any provision or portion of the TOS to be unenforceable, the remainder of the TOS will continue in full force and effect.\n\nThese TOS constitute the entire agreement between the parties with respect to the subject matter hereof and supersedes and replaces all prior or contemporaneous understandings or agreements, written or oral, regarding such subject matter. Any waiver of any provision of the TOS will be effective only if in writing and signed by 3Com.", + "json": "itunes.json", + "yaml": "itunes.yml", + "html": "itunes.html", + "license": "itunes.LICENSE" + }, + { + "license_key": "ja-sig", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ja-sig", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\n3. Redistributions of any form whatsoever must retain the following\nacknowledgment:\n\"This product includes software developed by the JA-SIG Collaborative \n(http://www.ja-sig.org/).\"\n\nThis software is provided by the JA-SIG collaborative \"as is\" and any expressed\nor implied warranties, including, but not limited to, the implied warranties of\nmerchantability and fitness for a particular purpose are disclaimed. In no event\nshall the JA-SIG collaborative or its contributors be liable for any direct,\nindirect, incidental, special, exemplary, or consequential damages (including,\nbut not limited to, procurement of substitute goods or services; loss of use,\ndata, or profits; or business interruption) however caused and on any theory of\nliability, whether in contract, strict liability, or tort (including negligence\nor otherwise) arising in any way out of the use of this software, even if\nadvised of the possibility of such damage.", + "json": "ja-sig.json", + "yaml": "ja-sig.yml", + "html": "ja-sig.html", + "license": "ja-sig.LICENSE" + }, + { + "license_key": "jahia-1.3.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-jahia-1.3.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "***** Jahia Collaborative Source License *****\n * Recitals\n JAHIA COLLABORATVE SOURCE LICENSE\n Version 1.3.1\n (Rev. Date May 17, 2004)\n\n RECITALS\n\n Original Contributor has developed Specifications and Source Code\n implementations of certain Technology; and\n Original Contributor desires to license the Technology to a large\n community to facilitate research, innovation and product development\n while maintaining compatibility of such products with the Technology as\n delivered by Original Contributor; and\n You desire to license the Technology from Original Contributor on the\n terms and conditions specified in this License.\n In consideration of the mutual covenants contained herein, You and\n Original Contributor agree as follows:\n\n***** Research and Development Use *****\n 1. Introduction. The JAHIA Collaborative Source License and effective\n attachments (\"License\") may include three distinct licenses: 1) Research\n and Development Use, 2) Internal Deployment Use, 3) Contribution\n Agreement. The Research and Development Use license is effective when You\n execute this License. You have agreed to the terms of the JCSL by\n selecting the \"Accept\" button at the end of the JCSL or executing a\n hardcopy JCSL with Original Contributor.\n\n The Internal Deployment Use (Attachment C) and the Contribution Agreement\n (Attachment D) must be signed by You and Original Contributor in order to\n become effective. Once effective, these licenses and the associated\n requirements and responsibilities are cumulative. Capitalized terms used\n in this License are defined in the Glossary.\n\n 2. License Grants.\n\n 2.1. Original Contributor Grant. Subject to Your compliance with Sections\n 3, 8.10 and Attachment A of this License, Original Contributor grants to\n You a worldwide, royalty-free, non-exclusive license, to the extent of\n Original Contributor's Intellectual Property Rights covering the Original\n Code, Upgraded Code and Specifications, to do the following:\n\n a) Research and Development Use License:\n (i) use, reproduce and modify the Original Code, Upgraded Code and\n Specifications to create Modifications and Reformatted Specifications for\n Research and Development Use by You,\n (ii) publish and display Original Code, Upgraded Code and Specifications\n with, or as part of Modifications, as permitted under Section 3.1 b)\n below,\n (iii) reproduce and distribute copies of Original Code and Upgraded Code\n with, or as part of Modifications, to other Licensees and students for\n Research and Development Use by You,\n (iv) compile, reproduce and distribute Original Code and Upgraded Code\n with, or as part of Modifications, in Executable form, and Reformatted\n Specifications to anyone for Research and Development Use by You.\n b) Other than the licenses expressly granted in this License, Original\n Contributor retains all right, title, and interest in Original Code and\n Upgraded Code and Specifications.\n\n 2.2. Your Grants.\n\n a) To Other Licensees. You hereby grant to each Licensee a license to\n Your Error Corrections and Shared Modifications, of the same scope and\n extent as Original Contributor's licenses under Section 2.1 a) above\n relative to Research and Development Use, Attachment C relative to\n Internal Deployment Use, and Attachment D relative to Contribution in\n kind.\n\n b) To Original Contributor. You hereby grant to Original Contributor a\n worldwide, royalty-free, non-exclusive, perpetual and irrevocable\n license, to the extent of Your Intellectual Property Rights covering Your\n Error Corrections, Shared Modifications and Reformatted Specifications,\n to use, reproduce, modify, display and distribute Your Error Corrections,\n Shared Modifications and Reformatted Specifications, in any form,\n including the right to sublicense such rights through multiple tiers of\n distribution.\n c) Other than the licenses expressly granted in Sections 2.2 a) and b)\n above, and the restriction set forth in Section 3.1 d) (iv) below, You\n retain all right, title, and interest in Your Error Corrections, Shared\n Modifications and Reformatted Specifications.\n\n 2.3. Contributor Modifications. You may use, reproduce, modify, display\n and distribute Contributor Error Corrections, Shared Modifications and\n Reformatted Specifications, obtained by You under this License, to the\n same scope and extent as with Original Code, Upgraded Code and\n Specifications.\n\n 2.4. Subcontracting Error Corrections or Shared Modifications. You may\n deliver the Source Code of Community Code to other Licensees having at\n least a Research and Development Use license, for the purpose of\n furnishing development services to You in connection with Your rights\n granted in this License. All such Licensees must execute appropriate\n documents with respect to such work consistent with the terms of this\n License, and acknowledging their work-made-for-hire status or assigning\n exclusive right to the work product and associated Intellectual Property\n Rights to You.\n\n 3. Requirements and Responsibilities.\n\n 3.1. Research and Development Use License. As a condition of exercising\n the rights granted under Section 2.1 a) above, You agree to comply with\n the following:\n\n a) Your Contribution to the Community. All Error Corrections and Shared\n Modifications which You create or contribute to are automatically subject\n to the licenses granted under Section 2.2 above. You are encouraged to\n license all of Your other Modifications under Section 2.2 as Shared\n Modifications, but are not required to do so. You agree to notify\n Original Contributor of any errors in the Specification.\n\n b) Source Code Availability. You agree to provide all Your Error\n Corrections to Original Contributor as soon as reasonably practicable\n and, in any event, prior to Internal Deployment Use or Commercial Use, if\n applicable. Original Contributor may, at its discretion, post Source Code\n for Your Error Corrections and Shared Modifications on the Community Web\n Server. You may also post Error Corrections and Shared Modifications on a\n web-server of Your choice; provided, that You inform the Original\n Contributor and that You must take reasonable precautions to ensure that\n only Licensees have access to such Error Corrections and Shared\n Modifications. Such precautions shall include, without limitation and at\n least, a click-on, download certification of Licensee status required of\n those attempting to download from the server. An example of an acceptable\n certification is attached as Attachment A-2.\n\n c) Notices. All Error Corrections and Shared Modifications You create or\n contribute to must include a file documenting the additions and changes\n You made and the date of such additions and changes. If it is not\n possible to put the notice in a particular Source Code file due to its\n structure, then You must include the notice in a location (such as a\n relevant directory file), where a recipient would be most likely to look\n for such a notice.\n\n d) Redistribution.\n (i) Community Code. Community Code may be distributed in Source Code or\n Executable form to anybody that accepts the JCSL License conditions and\n becomes a licensee. You may not offer or impose any terms on any\n Community Code that alter the rights, requirements, or responsibilities\n of such Licensee.\n (ii) Community Code Compatibility. All Community Code must be Compliant\n Community Code prior to any Redistribution, whether originating from You\n or acquired from a third party. So if You plan to make any further Shared\n Modifications to any Community Code previously determined to be Compliant\n Community Code, you must ensure that it continues to be Compliant\n Community Code.\n (iii) Derivative Work. If You make any non shared Modifications to any\n Community Code without contributing them as Shared Modifications, You\n must clearly indicate that your distribution is a modified version of the\n official Community Code and must clearly remind to your Licensees that\n they also have to accept the JCSL License conditions on your Derivative\n Work.\n (iv) Modified Executable. You may distribute Executable version(s) of a\n Derivative Work to Licensees and other third parties only for the purpose\n of evaluation and comment in connection with Research and Development Use\n by You. You must ensure that the Executable distribution based on a\n Derivative Work carries a different mark than the JAHIA Trademarks. You\n may distribute a Derivative Work under a license of Your choice, which\n may contain terms different from this License, provided (a) that You are\n in compliance with the terms of this License, and (b) You must make it\n absolutely clear that any terms which differ from this License are\n offered by You alone, not by Original Contributor or any other\n Contributor. Any other type of use must be subject to the execution of a\n complementary license agreement by You and Original Contributor.\n (v) Modified Class, Interface and Package Naming. In connection with\n Research and Development Use by You only, You may use Original\n Contributor's class, interface and package names only to accurately\n reference or invoke the Source Code files You modify. Original\n Contributor grants to You a limited license to the extent necessary for\n such purposes.\n (vi) Copyrights and other Attribution Notices. You must retain, in the\n Source form of any Derivative Works that You distribute, all copyright,\n patent, trademark, and attribution notices from Community Code, excluding\n those notices that do not pertain to any part of the Derivative Works.\n You may add Your own copyright statement to Your Modifications.\n\n (vii) You expressly agree that any distribution, in whole or in part, of\n Modifications developed by You shall only be done pursuant to the terms\n and conditions of this License.\n\n e) Extensions.\n (i) Community Code. You may not include any Source Code of Community Code\n in any Extensions without the prior consent of the Original Contributor;\n (ii) Open. You agree to refrain from enforcing any Intellectual Property\n Rights You may have covering any interface(s) of Your Extension, which\n would prevent the implementation of such interface(s) by Original\n Contributor or any Licensee. This obligation does not prevent You from\n enforcing any Intellectual Property Right You have that would otherwise\n be infringed by an implementation of Your Extension.\n (iii) Class, Interface and Package Naming. You may not add any packages,\n or any public or protected classes or interfaces with names that\n originate or might appear to originate from Original Contributor\n including, without limitation, package or class names which begin with\n \"com.jahia\", org.jahia or its equivalents in any subsequent class,\n interface and/ or package naming convention adopted by Original\n Contributor. It is specifically suggested that You name any new packages\n using the \"Unique Package Naming Convention\" as described in \"The Java\n Language Specification\" by James Gosling, Bill Joy, and Guy Steele, ISBN\n 0-201-63451-1, August 1996. Section 7.7 \"Unique Package Names\", on page\n 125 of this specification which states, in part:\n \"You form a unique package name by first having (or belonging to an\n organization that has) an Internet domain name, such as \"sun.com\". You\n then reverse the name, component by component, to obtain, in this\n example, \"com.sun\", and use this as a prefix for Your package names,\n using a convention developed within Your organization to further\n administer package names.\"\n\n 3.2. Additional Requirements and Responsibilities. Any additional\n requirements and responsibilities relating to the Technology are listed\n in Attachment F (Additional Requirements and Responsibilities), if\n applicable only, and are hereby incorporated into this Section 3.\n\n 4. Versions of the License.\n\n 4.1. License Versions. Original Contributor may publish revised versions\n of the License from time to time. Each version will be given a\n distinguishing version number.\n\n 4.2. Effect. Once a particular version of Community Code has been\n provided under a version of the License, You may always continue to use\n such Community Code under the terms of that version of the License. You\n may also choose to use such Community Code under the terms of any\n subsequent version of the License. No one other than Original Contributor\n has the right to promulgate License versions.\n\n 4.3. Conditional Open Sourcing : If Original Contributor decides to stop\n supporting a collaborative source compliant license policy as defined by\n the Collaborative Source Initiative (www.collaborativesource.org), goes\n bankrupt or does not want to adjust this license consequently, Original\n Contributor shall release the last version available under a\n collaborative source license under an open source license of his choice\n as defined by the Open Source Initiative (www.opensource.org).\n\n 5. Disclaimer of Warranty.\n\n 5.1. COMMUNITY CODE IS PROVIDED UNDER THIS LICENSE \"AS IS,\" WITHOUT\n WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT\n LIMITATION, WARRANTIES THAT THE COMMUNITY CODE IS FREE OF DEFECTS,\n MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. YOU AGREE\n TO BEAR THE ENTIRE RISK IN CONNECTION WITH YOUR USE AND DISTRIBUTION OF\n COMMUNITY CODE UNDER THIS LICENSE. THIS DISCLAIMER OF WARRANTY\n CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COMMUNITY\n CODE IS AUTHORIZED HEREUNDER EXCEPT SUBJECT TO THIS DISCLAIMER.\n\n 5.2. You acknowledge that Original Code, Upgraded Code and Specifications\n are not designed or intended for use in (i) on-line control of aircraft,\n air traffic, aircraft navigation or aircraft communications; or (ii) in\n the design, construction, operation or maintenance of any nuclear\n facility. Original Contributor disclaims any express or implied warranty\n of fitness for such uses.\n\n 6. Termination.\n\n 6.1. By You. You may terminate this Research and Development Use license\n at any time.\n\n 6.2. By Original Contributor. This License and the rights granted\n hereunder will terminate:\n (i) automatically if You fail to comply with the terms of this License\n and fail to cure such breach within 30 days of receipt of written notice\n of the breach;\n (ii) immediately in the event of circumstances specified in Sections 7.1\n or 8.4; or\n (iii) at Original Contributor's discretion upon any action initiated in\n the first instance by You alleging that use or distribution by Original\n Contributor or any Licensee, of Original Code, Upgraded Code, Error\n Corrections or Shared Modifications contributed by You, or\n Specifications, infringe a patent owned or controlled by You.\n\n 6.3. Effect of Termination. Upon termination, You agree to discontinue\n use and return or destroy all copies of Community Code in your\n possession. All sublicenses to the Community Code which you have properly\n granted shall survive any termination of this License. Provisions which,\n by their nature, should remain in effect beyond the termination of this\n License shall survive including, without limitation, Sections 2.2, 3, 5,\n 7 and 8.\n\n 6.4. Each party waives and releases the other from any claim to\n compensation or indemnity for permitted or lawful termination of the\n business relationship established by this License.\n\n 7. Liability.\n\n 7.1. Infringement. Should any of the Original Code, Upgraded Code or\n Specifications (\"Materials\") become the subject of a claim of\n infringement, Original Contributor may, at its sole option, (i) attempt\n to procure the rights necessary for You to continue using the Materials,\n (ii) modify the Materials so that they are no longer infringing, or (iii)\n terminate Your right to use the infringing code, immediately upon written\n notice, while retaining your rights to continue using the Materials that\n are not the subject of a claim of infringement.\n\n 7.2. LIMITATION OF LIABILITY. TO THE FULL EXTENT ALLOWED BY APPLICABLE\n LAW, ORIGINAL CONTRIBUTOR'S LIABILITY TO YOU FOR CLAIMS RELATING TO THIS\n LICENSE, WHETHER FOR BREACH OR IN TORT, SHALL BE LIMITED TO ONE HUNDRED\n PERCENT (100%) OF THE AMOUNT HAVING THEN ACTUALLY BEEN PAID BY YOU TO\n ORIGINAL CONTRIBUTOR FOR ALL COPIES LICENSED HEREUNDER OF THE PARTICULAR\n ITEMS GIVING RISE TO SUCH CLAIM, IF ANY. IN NO EVENT WILL YOU (RELATIVE\n TO YOUR SHARED MODIFICATIONS OR ERROR CORRECTIONS) OR ORIGINAL\n CONTRIBUTOR BE LIABLE FOR ANY INDIRECT, PUNITIVE, SPECIAL, INCIDENTAL OR\n CONSEQUENTIAL DAMAGES IN CONNECTION WITH OR ARISING OUT OF THIS LICENSE\n (INCLUDING, WITHOUT LIMITATION, LOSS OF PROFITS, USE, DATA, OR OTHER\n ECONOMIC ADVANTAGE), HOWEVER IT ARISES AND ON ANY THEORY OF LIABILITY,\n WHETHER IN AN ACTION FOR CONTRACT, STRICT LIABILITY OR TORT (INCLUDING\n NEGLIGENCE) OR OTHERWISE, WHETHER OR NOT YOU OR ORIGINAL CONTRIBUTOR HAS\n BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE AND NOTWITHSTANDING THE\n FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY.\n\n 8. Miscellaneous.\n\n 8.1. Trademark. You agree to comply with the then current JAHIA Trademark\n & logo usage requirements accessible through the Jahia Web Server. Except\n as expressly provided in the License, You are granted no right, title or\n license to, or interest in, any JAHIA Trademarks. You agree not to (i)\n challenge Original Contributor's ownership or use of JAHIA Trademarks;\n (ii) attempt to register any JAHIA Trademarks, or any mark or logo\n substantially similar thereto; or (iii) incorporate any JAHIA Trademarks\n into your own trademarks, product names, service marks, company names, or\n domain names.\n\n 8.2. Integration. This License represents the complete agreement\n concerning the subject matter hereof.\n\n 8.3. Assignment. Original Contributor may assign this License, and its\n rights and obligations hereunder, in its sole discretion. You may assign\n the Research and Development Use portions of this License to a third\n party. You may not assign the Internal Deployment Use or Commercial Use\n license, including by way of merger (regardless of whether You are the\n surviving entity) or acquisition, without Original Contributor's prior\n written consent.\n\n 8.4. Severability. If any provision of this License is held to be\n unenforceable, such provision shall be reformed only to the extent\n necessary to make it enforceable. Notwithstanding the foregoing, if You\n are prohibited by law from fully and specifically complying with Sections\n 2.2 or 3, this License will immediately terminate and You must\n immediately discontinue any use of Community Code.\n\n\n\n 8.5. Governing Law. This License shall be exclusively governed by the\n laws of Switzerland. The application of the United Nations Convention on\n Contracts for the International Sale of Goods is expressly excluded.\n\n 8.6. Dispute Resolution. All disputes arising out of or in connection\n with the present License, including disputes on its conclusion, binding\n effect, amendment and termination shall be resolved, to the exclusion of\n the ordinary courts by a single Arbitrator in accordance with the\n International Arbitration Rules of the Geneva Chamber of Commerce. The\n decision of the Arbitrator shall be final, and the parties waive all\n challenge of the award in accordance with art. 192 of the Swiss Private\n International Law Statute.\n\n 8.7. Construction. Any law or regulation which provides that the language\n of a contract shall be construed against the drafter shall not apply to\n this License.\n\n 8.8. U.S. Government End Users. The Community Code is a \"commercial\n item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting\n of \"commercial computer software\" and \"commercial computer software\n documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995).\n Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through\n 227.7202-4 (June 1995), all U.S. Government End Users acquire Community\n Code with only those rights set forth herein. You agree to pass this\n notice to Your licensees.\n\n 8.9. Press Announcements. All press announcements relative to the\n execution of this License must be reviewed and approved by Original\n Contributor and You prior to release.\n\n 8.10. International Use.\n a) Export/Import Laws. Community Code is subject to Swiss export control\n laws and may be subject to export or import regulations in other\n countries. Each party agrees to comply strictly with all such laws and\n regulations and acknowledges their responsibility to obtain such licenses\n to export, re-export, or import as may be required. You agree to pass\n these obligations to Your licensees.\n b) Intellectual Property Protection. Due to limited intellectual property\n protection and enforcement in certain countries, You agree not to\n redistribute the Original Code, Upgraded Code, and Specifications to any\n country other than the list of restricted countries on the JCSL Web\n Server.\n\n 8.11. Language. This License is in the English language only, which\n language shall be controlling in all respects, and all versions of this\n License in any other language shall be for accommodation only and shall\n not be binding on the parties to this License. All communications and\n notices made or given pursuant to this License, and all documentation and\n support to be provided, unless otherwise noted, shall be in the English\n language.\n\n GLOSSARY\n\n 1. \"Commercial Use\" means any use of a Derivative Work by You to any\n third party, alone or bundled with any other software or hardware, for\n direct or indirect commercial or strategic gain or advantage, is subject\n to execution of a purchase or reselling agreement by You and Original\n Contributor.\n 2. \"Community Code\" means the Original Code, Upgraded Code, Error\n Corrections, Shared Modifications, or any combination thereof.\n 3. \"Community Web Server(s)\" means the web server(s) designated by\n Original Contributor for posting Error Corrections and Shared\n Modifications and/or accessing documentation.\n 4. \"Compliant Community Code\" means Shared Modifications that have been\n submitted to Original Contributor for review and have been accepted as\n valid and correct Community Code.\n 5. \"Contributor\" means each Licensee that creates or contributes to the\n creation of any Error Correction or Shared Modification.\n 6. \"Derivative Work\" means any work, whether in Source or Object form,\n that is based on (or derived from) Community Code and for which the\n editorial revisions, annotations, elaborations, or other Modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Community Code and Derivative Works thereof.\n 7. \"Error Correction\" means any change made to Community Code which\n conforms to the Specification and corrects the adverse effect of a\n failure of Community Code to perform any function set forth in or\n required by the Specifications.\n 8. \"Executable\" means the Original Code, Upgraded Code, Modifications, or\n any combination thereof that has been converted to a form other than\n Source Code.\n 9. \"Extension(s)\" means any additional classes or other programming code\n and/or interfaces developed by or for You which: (i) are designed for use\n with the Technology; (ii) constitute an API for a library of computing\n functions or services; and (iii) are disclosed to third party software\n developers for the purpose of developing software which invokes such\n additional classes or other programming code and/or interfaces. The\n foregoing shall not apply to software development by Your subcontractors\n to be exclusively used by You.\n 10. \"Intellectual Property Rights\" means worldwide statutory and common\n law rights associated solely with (i) patents and patent applications;\n (ii) works of authorship including copyrights, copyright applications,\n copyright registrations and \"moral rights\"; (iii) the protection of trade\n and industrial secrets and confidential information; ; (iv) trademarks,\n trade names, service marks and logos (whether the same is registered or\n unregistered), and (v) divisions, continuations, renewals, and re-\n issuances of the foregoing now existing or acquired in the future.\n 11. \"Internal Deployment Use\" means use of the Original Code, Upgraded\n Code, Modifications, or any combination thereof (excluding Research and\n Development Use) within Your business or organization only by Your\n employees and/or agents, subject to execution of Attachment C by You and\n Original Contributor, if required.\n 12. \"Licensee\" means any party that has entered into and has in effect a\n version of this License with Original Contributor.\n 13. \"Modification(s)\" means (i) any change to Community Code; (ii) any\n new file or other representation of computer program statements that\n contains any portion of Community Code; and/or (iii) any new Source Code\n implementing any portion of the Specifications.\n 14. \"Original Code\" means the initial Source Code for the Technology as\n described on the Technology Download Site.\n 15. \"Original Contributor\" means Jahia Ltd., 45, rue de la Gare, 1260\n Nyon, Switzerland.\n 16. \"Reformatted Specifications\" means any revision to the Specifications\n which translates or reformats the Specifications (as for example in\n connection with Your documentation) but which does not alter, subset or\n superset the functional or operational aspects of the Specifications.\n 17. \"Research and Development Use\" means use and distribution of the\n Original Code, Upgraded Code, Modifications, or any combination thereof\n only for Your research, development, educational or personal and\n individual use, and expressly excludes Internal Deployment Use and\n Commercial Use.\n 18. \"JCSL Webpage\" means the JAHIA Collaborative Source license webpage\n located at http://www.jahia.org/ or such other URL that Original\n Contributor may designate from time to time.\n 19. \"Shared Modifications\" means Modifications provided by You, at Your\n option, pursuant to Section 2.2, or received by You from a Contributor\n pursuant to Section 2.3.\n 20. \"Source Code\" means computer program statements written in any high-\n level, readable form suitable for modification and development.\n 21. \"Specifications\" means the specifications for the Technology and\n other documentation, as designated on the Jahia WebServer, as may be\n revised by Original Contributor and other Contributors from time to time.\n\n 22. \"JAHIA Trademarks\" means Original Contributor's JAHIA trademarks and\n logos, whether now used or adopted in the future.\n 23. \"Technology\" means the technology described in Attachment B, and\n Upgrades.\n 24. \"Technology Download Site\" means the site(s) designated by Original\n Contributor for access to the Original Code, Upgraded Code and\n Specifications.\n 25. \"Upgrade(s)\" means new versions of Technology designated exclusively\n by Original Contributor as an \"Upgrade\" and released by Original\n Contributor from time to time.\n 26. \"Upgraded Code\" means the Source Code for Upgrades, possibly\n including Error Corrections and Shared Modifications made by\n Contributors.\n 27. \"You(r)\" means an individual, or a legal entity acting by and through\n an individual or individuals, exercising rights either under this License\n or under a future version of this License issued pursuant to Section 4.1.\n For legal entities, \"You(r)\" includes any entity that by majority voting\n interest controls, is controlled by, or is under common control with You.", + "json": "jahia-1.3.1.json", + "yaml": "jahia-1.3.1.yml", + "html": "jahia-1.3.1.html", + "license": "jahia-1.3.1.LICENSE" + }, + { + "license_key": "jam", + "category": "Permissive", + "spdx_license_key": "Jam", + "other_spdx_license_keys": [ + "LicenseRef-scancode-jam" + ], + "is_exception": false, + "is_deprecated": false, + "text": "License is hereby granted to use this software and distribute it freely,\nas long as this copyright notice is retained and modifications are\nclearly marked.\n\nALL WARRANTIES ARE HEREBY DISCLAIMED.", + "json": "jam.json", + "yaml": "jam.yml", + "html": "jam.html", + "license": "jam.LICENSE" + }, + { + "license_key": "jam-stapl", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-jam-stapl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Jam STAPL Software License\nSOFTWARE DISTRIBUTION AGREEMENT\n\nTHE JAM SOFTWARE PROGRAM AND EXECUTABLE FILES, AND RELATED SPECIFICATION DOCUMENTATION (\"PROGRAMS\") (AVAILABLE FOR DOWNLOADING FROM THIS WEB SITE OR ENCLOSED WITH THE COMPUTER DISK ACCOMPANYING THIS NOTICE), ARE MADE FREELY AVAILABLE FOR USE BY ANYONE, SUBJECT TO CERTAIN TERMS AND CONDITIONS SET FORTH BELOW. PLEASE READ THESE TERMS AND CONDITIONS CAREFULLY BEFORE DOWNLOADING OR USING THE PROGRAMS. BY DOWNLOADING OR USING THE PROGRAMS YOU INDICATE YOUR ACCEPTANCE OF THESE TERMS AND CONDITIONS, WHICH CONSTITUTE THE LICENSE AGREEMENT (the \"AGREEMENT\") BETWEEN YOU AND ALTERA CORPORATION (\"ALTERA\") WITH REGARD TO THE PROGRAMS. IN THE EVENT THAT YOU DO NOT AGREE WITH ANY OF THESE TERMS AND CONDITIONS, DO NOT DOWNLOAD THE PROGRAMS OR PROMPTLY RETURN THE PROGRAMS TO ALTERA UNUSED. \n\nLicense Terms\nSubject to the terms and conditions of this Agreement, Altera grants to you a worldwide, nonexclusive, perpetual license (with the right to grant sublicenses, and authorize sublicensees to sublicense further) to use, copy, prepare derivative works based on, and distribute the Programs and derivative works thereof, provided that any distribution or sublicense is subject to the same terms and conditions that you use for distribution of your own comparable software products. Any copies of the Programs or derivative works thereof will continue to be subject to the terms and conditions of this Agreement. You must include in any copies of the Programs or derivative works thereof any trademark, copyright, and other proprietary rights notices included in the Programs by Altera. \n\nDisclaimer of Warranties and Remedies \nNO WARRANTIES, EITHER EXPRESS OR IMPLIED, ARE MADE WITH RESPECT TO THE PROGRAMS, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NONINFRINGEMENT, AND ALTERA EXPRESSLY DISCLAIM ALL WARRANTIES NOT STATED HEREIN. YOU ASSUME THE ENTIRE RISK AS TO THE QUALITY, USE, AND PERFORMANCE OF THE PROGRAMS. SHOULD THE PROGRAMS PROVE DEFECTIVE OR FAIL TO PERFORM PROPERLY, YOU -- AND NOT ALTERA -- SHALL ASSUME THE ENTIRE COST AND RISK OF ANY REPAIR, SERVICE, CORRECTION, OR ANY OTHER LIABILITY OR DAMAGES CAUSED BY OR OTHERWISE ASSOCIATED WITH THE PROGRAMS. ALTERA DOES NOT WARRANT THAT THE PROGRAMS WILL MEET YOUR REQUIREMENTS, OR THAT THE OPERATION OF THE PROGRAMS WILL BE UNINTERRUPTED OR ERROR-FREE. YOU ALSO ASSUME RESPONSIBILITY FOR THE SELECTION, INSTALLATION, USE, AND RESULTS OF USING THE PROGRAMS. Some states do not allow the exclusion of implied warranties, so the above exclusion may not apply to you. \nALTERA SHALL NOT BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY DAMAGES, INCLUDING ANY INCIDENTAL OR CONSEQUENTIAL DAMAGES, EXPENSES, LOST PROFITS, LOST SAVINGS, OR OTHER DAMAGES ARISING OUT OF OR OTHERWISE ASSOCIATED WITH THE USE OF OR INABILITY TO USE THE PROGRAMS. IN ANY EVENT, ALTERA'S LIABILITY UNDER THIS AGREEMENT SHALL NOT EXCEED THE LARGER OF EITHER THE AMOUNT YOU PAID ALTERA FOR USE OF THE PROGRAMS, OR ONE HUNDRED DOLLARS ($100). YOUR SOLE REMEDIES AND ALTERA'S ENTIRE LIABILITY ARE AS SET FORTH ABOVE. Some states do not allow the limitation or exclusion of incidental or consequential damages, so the above limitations or exclusions may not apply to you. \n\nTo the extent that the Programs are derived from third-party software or other third-party materials, no such third-party provides any warranties with respect to the Programs, assumes any liability regarding use of the Programs, or undertakes to furnish you any support or information relating to the Programs. \n\nGeneral \nYou acknowledge that Altera is not responsible for and is not obligated to provide, any support, including email and telephone support, for any purpose with respect to the Programs. \n\nYou acknowledge that the Programs are made freely available in accordance with this Agreement as part of an effort to promote broad use of the Programs with minimum interference by you and Altera. Accordingly, you agree that, if you obtain any patents relating to inventions or discoveries made through use of or access to the Programs or derivative works thereof, or that are necessary for the use of the Programs, you will not bring any claim for infringement thereof against Altera or any direct or indirect licensee of Altera in connection with or use of the Programs or derivative works thereof. The foregoing does not constitute a license of any copyright or trade secret. \n\nYou shall not export the Programs, or any product programmed by the Programs, without first obtaining any necessary U.S. or other governmental licenses and approvals. \n\nThis Agreement is entered into for the benefit of Altera and Altera's licensors and all rights granted to you and all obligations owed to Altera shall be enforceable by Altera and its licensors. This Agreement constitutes the entire understanding and agreement applicable to the Programs, superseding any prior or contemporaneous understandings or agreements. It may not be modified except in a writing executed by Altera. \n\nThis Agreement will be governed by the laws of the State of California. You agree to submit to the jurisdiction of the courts in the State of California for the resolution of any dispute or claim arising out of or relating to this Agreement. \n\nThe prevailing party in any legal action or arbitration arising out of this Agreement shall be entitled to reimbursement for its expenses, including court costs and reasonable attorneys' fees, in addition to any other rights and remedies such party may have.\n\nBY USING THE PROGRAMS YOU ACKNOWLEDGE THAT YOU HAVE READ THIS AGREEMENT, UNDERSTAND IT, AND AGREE TO BE BOUND BY ITS TERMS AND CONDITIONS; YOU FURTHER AGREE THAT IT IS THE COMPLETE AND EXCLUSIVE STATEMENT OF THE AGREEMENT BETWEEN YOU AND ALTERA WHICH SUPERSEDES ANY PROPOSAL OR PRIOR AGREEMENT, ORAL OR WRITTEN, AND ANY OTHER COMMUNICATIONS BETWEEN YOU AND ALTERA RELATING TO THE SUBJECT MATTER OF THIS AGREEMENT. \n\nU.S. Government Restricted Rights \nThe Programs and any accompanying documentation are provided with RESTRICTED RIGHTS. Use, duplication, or disclosure by the Government is subject to restrictions as set forth in subparagraph (c)(1)(ii) of The Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs (c)(1) and (2) of Commercial Computer Software--Restricted Rights at 48 CFR 52.227-19, as applicable. Contractor/manufacturer is Altera Corporation, 101 Innovation Drive, San Jose, CA 95134 and its licensors.", + "json": "jam-stapl.json", + "yaml": "jam-stapl.yml", + "html": "jam-stapl.html", + "license": "jam-stapl.LICENSE" + }, + { + "license_key": "jamon", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-jamon", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "JAMon License Agreement\n\nCopyright (c) 2002, Steve Souza (admin@jamonapi.com)\nAll rights reserved.\nModifications: No\n\nRedistribution in binary form, with or without modifications, are permitted provided that the following conditions are met:\n\nRedistributions 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.\nIf modifications are made to source code then this license should indicate that fact in the \"Modifications\" section above.\nNeither the author, nor the contributors may be used to endorse or promote products derived from this software without specific prior written permission.\nTHIS 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 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.", + "json": "jamon.json", + "yaml": "jamon.yml", + "html": "jamon.html", + "license": "jamon.LICENSE" + }, + { + "license_key": "jason-mayes", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jason-mayes", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "#### Twitter Post Fetcher v10.0 ####\nCoded by Jason Mayes 2013. A present to all the developers out there.\nwww.jasonmayes.com\nPlease keep this disclaimer with my code if you use it. Thanks. :)\nGot feedback or questions, ask here:\nhttp://www.jasonmayes.com/projects/twitterApi/\nUpdates will be posted to this site.", + "json": "jason-mayes.json", + "yaml": "jason-mayes.yml", + "html": "jason-mayes.html", + "license": "jason-mayes.LICENSE" + }, + { + "license_key": "jasper-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jasper-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Jasper Reports\n\nJasperreports Copyright (c) 2001-2003 Teodor Danciu (teodord@hotmail.com). All rights reserved. This product included software developed by Teodor Danciu http://jasperreports.sourceforge.net. For license details, please see the file classes/jasper_license.txt\n\nThe Jasper Reports License, Version 1.0 Copyright (C) 2001-2003 Teodor Danciu (teodord@hotmail.com). All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. 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.\n\n3. The end-user documentation included with the redistribution, if any, must include the following acknowledgment: \"This product includes software developed by Teodor Danciu (http://jasperreports.sourceforge.net).\"\tAlternately, this acknowledgment may appear in the software itself, if and wherever such third-party acknowledgments normally appear.\n\n4. The name \"JasperReports\" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact teodord@hotmail.com.\n\n5. Products derived from this software may not be called \"JasperReports\" nor may \"JasperReports\" appear in their name, without prior written permission of Teodor Danciu.\n\nTHIS SOFTWARE IS PROVIDED ``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 APACHE SOFTWARE FOUNDATION 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.", + "json": "jasper-1.0.json", + "yaml": "jasper-1.0.yml", + "html": "jasper-1.0.html", + "license": "jasper-1.0.LICENSE" + }, + { + "license_key": "jasper-2.0", + "category": "Permissive", + "spdx_license_key": "JasPer-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "JasPer License Version 2.0\n\nCopyright (c) 2001-2006 Michael David Adams\nCopyright (c) 1999-2000 Image Power, Inc.\nCopyright (c) 1999-2000 The University of British Columbia\n\nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person (the\n\"User\") obtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without restriction,\nincluding without limitation the rights to use, copy, modify, merge,\npublish, distribute, and/or sell copies of the Software, and to permit\npersons to whom the Software is furnished to do so, subject to the\nfollowing conditions:\n\n1. The above copyright notices and this permission notice (which\nincludes the disclaimer below) shall be included in all copies or\nsubstantial portions of the Software.\n\n2. The name of a copyright holder shall not be used to endorse or\npromote products derived from the Software without specific prior\nwritten permission.\n\nTHIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS\nLICENSE. NO USE OF THE SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER\nTHIS DISCLAIMER. THE SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS\n\"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING\nBUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO\nEVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL\nINDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING\nFROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,\nNEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION\nWITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \n\nNO ASSURANCES ARE\nPROVIDED BY THE COPYRIGHT HOLDERS THAT THE SOFTWARE DOES NOT INFRINGE\nTHE PATENT OR OTHER INTELLECTUAL PROPERTY RIGHTS OF ANY OTHER ENTITY.\nEACH COPYRIGHT HOLDER DISCLAIMS ANY LIABILITY TO THE USER FOR CLAIMS\nBROUGHT BY ANY OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL\nPROPERTY RIGHTS OR OTHERWISE. AS A CONDITION TO EXERCISING THE RIGHTS\nGRANTED HEREUNDER, EACH USER HEREBY ASSUMES SOLE RESPONSIBILITY TO SECURE\nANY OTHER INTELLECTUAL PROPERTY RIGHTS NEEDED, IF ANY. \n\nTHE SOFTWARE\nIS NOT FAULT-TOLERANT AND IS NOT INTENDED FOR USE IN MISSION-CRITICAL\nSYSTEMS, SUCH AS THOSE USED IN THE OPERATION OF NUCLEAR FACILITIES,\nAIRCRAFT NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL\nSYSTEMS, DIRECT LIFE SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH\nTHE FAILURE OF THE SOFTWARE OR SYSTEM COULD LEAD DIRECTLY TO DEATH,\nPERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE (\"HIGH\nRISK ACTIVITIES\"). THE COPYRIGHT HOLDERS SPECIFICALLY DISCLAIM ANY\nEXPRESS OR IMPLIED WARRANTY OF FITNESS FOR HIGH RISK ACTIVITIES.", + "json": "jasper-2.0.json", + "yaml": "jasper-2.0.yml", + "html": "jasper-2.0.html", + "license": "jasper-2.0.LICENSE" + }, + { + "license_key": "java-app-stub", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-java-app-stub", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Java Application Stub Binary Module License\n\nCopyright (c) Apple Inc. All rights reserved.\n\nIMPORTANT: This Apple software is supplied to you by Apple Inc. (\"Apple\") in consideration of your agreement to the following terms, and your use, reproduction or redistribution of this Apple software constitutes acceptance of these terms. If you do not agree with these terms, please do not use, reproduce or redistribute this Apple software.\n\nIn consideration of your agreement to abide by the following terms, and subject to these terms, Apple grants you a personal, non-exclusive license, under Apple\u2019s copyrights in this original Apple JavaApplicationStub binary module software (the \"Apple Software\"), to use, reproduce and redistribute the Apple Software in binary form only as part of your own software program. You may change the Apple Software's file name at your discretion. Neither the name, trademarks, service marks or logos of Apple Inc. may be used to endorse or promote products containing the Apple Software without specific prior written permission from Apple. Except as expressly stated in this notice, no other rights or licenses, express or implied, are granted by Apple herein, including but not limited to any patent rights that may be infringed by your software program or by other works in which the Apple Software may be incorporated.\n\nThe Apple Software is provided by Apple on an \"AS IS\" basis. APPLE MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS. \n\nIN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "java-app-stub.json", + "yaml": "java-app-stub.yml", + "html": "java-app-stub.html", + "license": "java-app-stub.LICENSE" + }, + { + "license_key": "java-research-1.5", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-java-research-1.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "JAVA RESEARCH LICENSE Version 1.5 \n\nI. DEFINITIONS.\n\n\"Licensee \" means You and any other party that has entered\ninto and has in effect a version of this License.\n\n\"Modifications\" means any (a) change or addition to the\nTechnology or (b) new source or object code implementing any\nportion of the Technology.\n\n\"Sun\" means Sun Microsystems, Inc. and its successors and\nassignees.\n\n\"Research Use\" means research, evaluation, or development\nfor the purpose of advancing knowledge, teaching, learning,\nor customizing the Technology or Modifications for personal\nuse. Research Use expressly excludes use or distribution\nfor direct or indirect commercial (including strategic) gain\nor advantage.\n\n\"Technology\" means the source code, object code and\nspecifications of the technology made available by Sun\npursuant to this License.\n\n\"Technology Site\" means the website designated by Sun for\naccessing the Technology.\n\n\"You\" means the individual executing this License or the\nlegal entity or entities represented by the individual\nexecuting this License.\n\nII. PURPOSE.\n\nSun is licensing the Technology under this Java Research\nLicense (the \"License\") to promote research, education,\ninnovation, and development using the Technology.\n\nCOMMERCIAL USE AND DISTRIBUTION OF TECHNOLOGY AND\nMODIFICATIONS IS PERMITTED ONLY UNDER A SUN COMMERCIAL\nLICENSE.\n\nIII. RESEARCH USE RIGHTS.\n\nA. License Grant. Subject to the conditions contained\nherein, Sun grants to You a non-exclusive, non-transferable,\nworldwide, and royalty-free license to do the following for\nYour Research Use only: \n\n 1. Reproduce, create Modifications of, and use the \nTechnology alone, or with Modifications; \n\n 2. Share source code of the Technology alone, or with\nModifications, with other Licensees; and \n\n 3. Distribute object code of the Technology, alone, \nor with Modifications, to any third parties for Research \nUse only, under a license of Your choice that is consistent \nwith this License; and publish papers and books discussing \nthe Technology which may include relevant excerpts that \ndo not in the aggregate constitute a significant portion \nof the Technology.\n\nB. Residual Rights. You may use any information in\nintangible form that you remember after accessing the\nTechnology, except when such use violates Sun's copyrights\nor patent rights.\n\nC. No Implied Licenses. Other than the rights granted\nherein, Sun retains all rights, title, and interest in\nTechnology, and You retain all rights, title, and interest\nin Your Modifications and associated specifications, subject\nto the terms of this License.\n\nD. Open Source Licenses. Portions of the Technology may be\nprovided with notices and open source licenses from open\nsource communities and third parties that govern the use of\nthose portions, and any licenses granted hereunder do not\nalter any rights and obligations you may have under such\nopen source licenses, however, the disclaimer of warranty\nand limitation of liability provisions in this License will\napply to all Technology in this distribution.\n\nIV. INTELLECTUAL PROPERTY REQUIREMENTS\n\nAs a condition to Your License, You agree to comply with the\nfollowing restrictions and responsibilities:\n\nA. License and Copyright Notices. You must include a copy\nof this Java Research License in a Readme file for any\nTechnology or Modifications you distribute. You must also\ninclude the following statement, \"Use and distribution of\nthis technology is subject to the Java Research License\nincluded herein\", (a) once prominently in the source code\ntree and/or specifications for Your source code\ndistributions, and (b) once in the same file as Your\ncopyright or proprietary notices for Your binary code\ndistributions. You must cause any files containing Your\nModification to carry prominent notice stating that You\nchanged the files. You must not remove or alter any\ncopyright or other proprietary notices in the Technology.\n\nB. Licensee Exchanges. Any Technology and Modifications\nYou receive from any Licensee are governed by this License.\n\nV. GENERAL TERMS.\n\nA. Disclaimer Of Warranties.\n\nTHE TECHNOLOGY IS PROVIDED \"AS IS\", WITHOUT WARRANTIES OF\nANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT\nLIMITATION, WARRANTIES THAT THE TECHNOLOGY IS FREE OF\nDEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR\nNON-INFRINGING OF THIRD PARTY RIGHTS. YOU AGREE THAT YOU\nBEAR THE ENTIRE RISK IN CONNECTION WITH YOUR USE AND\nDISTRIBUTION OF ANY AND ALL TECHNOLOGY UNDER THIS LICENSE.\n\nB. Infringement; Limitation Of Liability.\n\n 1. If any portion of, or functionality implemented by, the\nTechnology becomes the subject of a claim or threatened\nclaim of infringement (\"Affected Materials\"), Sun may, in\nits unrestricted discretion, suspend Your rights to use and\ndistribute the Affected Materials under this License. Such\nsuspension of rights will be effective immediately upon\nSun's posting of notice of suspension on the Technology\nSite.\n\n 2. IN NO EVENT WILL SUN BE LIABLE FOR ANY DIRECT, INDIRECT,\nPUNITIVE, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES IN\nCONNECTION WITH OR ARISING OUT OF THIS LICENSE (INCLUDING,\nWITHOUT LIMITATION, LOSS OF PROFITS, USE, DATA, OR ECONOMIC\nADVANTAGE OF ANY SORT), HOWEVER IT ARISES AND ON ANY THEORY\nOF LIABILITY (including negligence), WHETHER OR NOT SUN HAS\nBEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. LIABILITY\nUNDER THIS SECTION V.B.2 SHALL BE SO LIMITED AND EXCLUDED,\nNOTWITHSTANDING FAILURE OF THE ESSENTIAL PURPOSE OF ANY\nREMEDY.\n\nC. Termination.\n\n 1. You may terminate this License at any time by notifying\nSun in writing. \n\n 2. All Your rights will terminate under this License if \nYou fail to comply with any of its material terms or \nconditions and do not cure such failure within thirty (30) \ndays after becoming aware of such noncompliance.\n\n 3. Upon termination, You must discontinue all uses and\ndistribution of the Technology, and all provisions of this\nSection V (\"General Terms\") shall survive termination.\n\nD. Miscellaneous.\n\n 1. Trademark. You agree to comply with Sun's Trademark \n& Logo Usage Requirements, as modified from time to time,\navailable at http://www.sun.com/policies/trademarks/.\nExcept as expressly provided in this License, You are\ngranted no rights in or to any Sun trademarks now or\nhereafter used or licensed by Sun. \n\n 2. Integration. This License represents the complete \nagreement of the parties concerning the subject matter\nhereof. \n\n 3. Severability. If any provision of this License is \nheld unenforceable, such provision shall be reformed \nto the extent necessary to make it enforceable unless \nto do so would defeat the intent of the parties, in \nwhich case, this License shall terminate.\n\n 4. Governing Law. This License is governed by the laws of\nthe United States and the State of California, as applied to\ncontracts entered into and performed in California between\nCalifornia residents. In no event shall this License be\nconstrued against the drafter. \n\n 5. Export Control. As further described at \nhttp://www.sun.com/its, you agree to comply with the U.S.\nexport controls and trade laws of other countries that \napply to Technology and Modifications.", + "json": "java-research-1.5.json", + "yaml": "java-research-1.5.yml", + "html": "java-research-1.5.html", + "license": "java-research-1.5.LICENSE" + }, + { + "license_key": "java-research-1.6", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-java-research-1.6", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "JAVA RESEARCH LICENSE Version 1.6\n\nI. DEFINITIONS.\n\n\"Licensee\" means You and any other party that has entered into and has\nin effect a version of this License.\n\n\"Modifications\" means any change or addition to the Technology.\n\n\"Sun\" means Sun Microsystems, Inc. and its successors and assignees.\n\n\"Research Use\" means research, evaluation, or development for the\npurpose of advancing knowledge, teaching, learning, or customizing the\nTechnology or Modifications for personal use. Research Use expressly\nexcludes use or distribution for direct or indirect commercial\n(including strategic) gain or advantage.\n\n\"Technology\" means the source code and object code of the technology\nmade available by Sun pursuant to this License.\n\n\"Technology Site\" means the website designated by Sun for accessing\nthe Technology.\n\n\"You\" means the individual executing this License or the legal entity\nor entities represented by the individual executing this License.\n\nII. PURPOSE.\n\nSun is licensing the Technology under this Java Research License (the\n\"License\") to promote research, education, innovation, and development\nusing the Technology. This License is not intended to permit or\nenable access to the Technology for active consultation as part of\ncreating an independent implementation of the Technology.\n\nCOMMERCIAL USE AND DISTRIBUTION OF TECHNOLOGY AND MODIFICATIONS IS\nPERMITTED ONLY UNDER A SUN COMMERCIAL LICENSE.\n\nIII. RESEARCH USE RIGHTS.\n\nA. License Grant. Subject to the conditions contained herein, Sun\ngrants to You a non-exclusive, non-transferable, worldwide, and\nroyalty-free license to do the following for Your Research Use only:\n\n1. Reproduce, create Modifications of, and use the Technology\nalone, or with Modifications;\n\n2. Share source code of the Technology alone, or with\nModifications, with other Licensees; and\n\n3. Distribute object code of the Technology, alone, or with\nModifications, to any third parties for Research Use only, under a\nlicense of Your choice that is consistent with this License; and\npublish papers and books discussing the Technology which may include\nrelevant excerpts that do not in the aggregate constitute a\nsignificant portion of the Technology.\n\nB. Residual Rights. If You examine the Technology after accepting\nthis License and remember anything about it later, You are not\n\"tainted\" in a way that would prevent You from creating or\ncontributing to an independent implementation, but this License grants\nYou no rights to Sun's copyrights or patents for use in such an\nimplementation.\n\nC. No Implied Licenses. Other than the rights granted herein, Sun\nretains all rights, title, and interest in Technology, and You retain\nall rights, title, and interest in Your Modifications and associated\nspecifications, subject to the terms of this License.\n\nD. Third Party Software. Portions of the Technology may be\nprovided with licenses or other notices from third parties that govern\nthe use of those portions. Any licenses granted hereunder do not alter\nany rights and obligations You may have under such licenses, however,\nthe disclaimer of warranty and limitation of liability provisions in\nthis License will apply to all Technology in this distribution.\n\nIV. INTELLECTUAL PROPERTY REQUIREMENTS\n\nAs a condition to Your License, You agree to comply with the following\nrestrictions and responsibilities:\n\nA. License and Copyright Notices. You must include a copy of this\nJava Research License in a Readme file for any Technology or\nModifications you distribute. You must also include the following\nstatement, \"Use and distribution of this technology is subject to the\nJava Research License included herein\", (a) once prominently in the\nsource code tree and/or specifications for Your source code\ndistributions, and (b) once in the same file as Your copyright or\nproprietary notices for Your binary code distributions. You must cause\nany files containing Your Modification to carry prominent notice\nstating that You changed the files. You must not remove or alter any\ncopyright or other proprietary notices in the Technology.\n\nB. Licensee Exchanges. Any Technology and Modifications You\nreceive from any Licensee are governed by this License.\n\nV. GENERAL TERMS.\n\nA. Disclaimer Of Warranties.\n\nTHE TECHNOLOGY IS PROVIDED \"AS IS\", WITHOUT WARRANTIES OF ANY KIND,\nEITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, WARRANTIES\nTHAT THE TECHNOLOGY IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A\nPARTICULAR PURPOSE, OR NON-INFRINGING OF THIRD PARTY RIGHTS. YOU\nAGREE THAT YOU BEAR THE ENTIRE RISK IN CONNECTION WITH YOUR USE AND\nDISTRIBUTION OF ANY AND ALL TECHNOLOGY UNDER THIS LICENSE.\n\nB. Infringement; Limitation Of Liability.\n\n1. If any portion of, or functionality implemented by, the\nTechnology becomes the subject of a claim or threatened claim of\ninfringement (\"Affected Materials\"), Sun may, in its unrestricted\ndiscretion, suspend Your rights to use and distribute the Affected\nMaterials under this License. Such suspension of rights will be\neffective immediately upon Sun's posting of notice of suspension on\nthe Technology Site.\n\n2. IN NO EVENT WILL SUN BE LIABLE FOR ANY DIRECT, INDIRECT,\nPUNITIVE, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES IN CONNECTION\nWITH OR ARISING OUT OF THIS LICENSE (INCLUDING, WITHOUT LIMITATION,\nLOSS OF PROFITS, USE, DATA, OR ECONOMIC ADVANTAGE OF ANY SORT),\nHOWEVER IT ARISES AND ON ANY THEORY OF LIABILITY (including\nnegligence), WHETHER OR NOT SUN HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE. LIABILITY UNDER THIS SECTION V.B.2 SHALL BE SO LIMITED\nAND EXCLUDED, NOTWITHSTANDING FAILURE OF THE ESSENTIAL PURPOSE OF ANY\nREMEDY.\n\nC. Termination.\n\n1. You may terminate this License at any time by notifying Sun in a\nwriting addressed to Sun Microsystems, Inc., 4150 Network Circle,\nSanta Clara, California 95054, Attn.: Legal Department/Products and\nTechnology Law.\n\n2. All Your rights will terminate under this License if You fail to\ncomply with any of its material terms or conditions and do not cure\nsuch failure within thirty (30) days after becoming aware of such\nnoncompliance.\n\n3. Upon termination, You must discontinue all uses and distribution\nunder this agreement, and all provisions of this Section V (\"General\nTerms\") shall survive termination.\n\nD. Miscellaneous.\n\n\n1. Trademark. You agree to comply with Sun's Trademark & Logo\nUsage Requirements, as modified from time to time, available at\nhttp://www.sun.com/policies/trademarks/. Except as expressly provided\nin this License, You are granted no rights in or to any Sun trademarks\nnow or hereafter used or licensed by Sun.\n\n2. Integration. This License represents the complete agreement of\nthe parties concerning the subject matter hereof.\n\n3. Severability. If any provision of this License is held\nunenforceable, such provision shall be reformed to the extent\nnecessary to make it enforceable unless to do so would defeat the\nintent of the parties, in which case, this License shall terminate.\n\n4. Governing Law. This License is governed by the laws of the\nUnited States and the State of California, as applied to contracts\nentered into and performed in California between California residents.\nIn no event shall this License be construed against the drafter.\n\n5. Export Control. As further described at\nhttp://www.sun.com/its, you agree to comply with the U.S. export\ncontrols and trade laws of other countries that apply to Technology\nand Modifications.", + "json": "java-research-1.6.json", + "yaml": "java-research-1.6.yml", + "html": "java-research-1.6.html", + "license": "java-research-1.6.LICENSE" + }, + { + "license_key": "javascript-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-javascript-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception to GPL, any HTML file which merely makes function calls\nto this code, and for that purpose includes it by reference shall be deemed a\nseparate work for copyright law purposes. In addition, the copyright holders of\nthis code give you permission to combine this code with free software libraries\nthat are released under the GNU LGPL. You may copy and distribute such a system\nfollowing the terms of the GNU GPL for this code and the LGPL for the libraries.\nIf you modify this code, you may extend this exception to your version of the\ncode, but you are not obligated to do so. If you do not wish to do so, delete\nthis exception statement from your version.", + "json": "javascript-exception-2.0.json", + "yaml": "javascript-exception-2.0.yml", + "html": "javascript-exception-2.0.html", + "license": "javascript-exception-2.0.LICENSE" + }, + { + "license_key": "jboss-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jboss-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LICENSE AGREEMENT\nJBOSS(r)\n\nThis License Agreement governs the use of the Software Packages and any updates to the Software \nPackages, regardless of the delivery mechanism. Each Software Package is a collective work \nunder U.S. Copyright Law. Subject to the following terms, Red Hat, Inc. (\"Red Hat\") grants to \nthe user (\"Client\") a license to the applicable collective work(s) pursuant to the \nGNU Lesser General Public License v. 2.1 except for the following Software Packages: \n(a) JBoss Portal Forums and JBoss Transactions JTS, each of which is licensed pursuant to the \nGNU General Public License v.2; \n\n(b) JBoss Rules, which is licensed pursuant to the Apache License v.2.0;\n\n(c) an optional download for JBoss Cache for the Berkeley DB for Java database, which is licensed under the \n(open source) Sleepycat License (if Client does not wish to use the open source version of this database, \nit may purchase a license from Sleepycat Software); \n\nand (d) the BPEL extension for JBoss jBPM, which is licensed under the Common Public License v.1, \nand, pursuant to the OASIS BPEL4WS standard, requires parties wishing to redistribute to enter various \nroyalty-free patent licenses. \n\nEach of the foregoing licenses is available at http://www.opensource.org/licenses/index.php.\n\n1. The Software. \"Software Packages\" refer to the various software modules that are created and made available \nfor distribution by the JBoss.org open source community at http://www.jboss.org. Each of the Software Packages \nmay be comprised of hundreds of software components. The end user license agreement for each component is located in \nthe component's source code. With the exception of certain image files identified in Section 2 below, \nthe license terms for the components permit Client to copy, modify, and redistribute the component, \nin both source code and binary code forms. This agreement does not limit Client's rights under, \nor grant Client rights that supersede, the license terms of any particular component.\n\n2. Intellectual Property Rights. The Software Packages are owned by Red Hat and others and are protected under copyright \nand other laws. Title to the Software Packages and any component, or to any copy, modification, or merged portion shall \nremain with the aforementioned, subject to the applicable license. The \"JBoss\" trademark, \"Red Hat\" trademark, the \nindividual Software Package trademarks, and the \"Shadowman\" logo are registered trademarks of Red Hat and its affiliates \nin the U.S. and other countries. This agreement permits Client to distribute unmodified copies of the Software Packages \nusing the Red Hat trademarks that Red Hat has inserted in the Software Packages on the condition that Client follows Red Hat's \ntrademark guidelines for those trademarks located at http://www.redhat.com/about/corporate/trademark/. Client must abide by \nthese trademark guidelines when distributing the Software Packages, regardless of whether the Software Packages have been modified. \nIf Client modifies the Software Packages, then Client must replace all Red Hat trademarks and logos identified at \nhttp://www.jboss.com/company/logos, unless a separate agreement with Red Hat is executed or other permission granted. \nMerely deleting the files containing the Red Hat trademarks may corrupt the Software Packages. \n\n3. Limited Warranty. Except as specifically stated in this Paragraph 3 or a license for a particular \ncomponent, to the maximum extent permitted under applicable law, the Software Packages and the \ncomponents are provided and licensed \"as is\" without warranty of any kind, expressed or implied, \nincluding the implied warranties of merchantability, non-infringement or fitness for a particular purpose. \nRed Hat warrants that the media on which Software Packages may be furnished will be free from defects in \nmaterials and manufacture under normal use for a period of 30 days from the date of delivery to Client. \nRed Hat does not warrant that the functions contained in the Software Packages will meet Client's requirements \nor that the operation of the Software Packages will be entirely error free or appear precisely as described \nin the accompanying documentation. This warranty extends only to the party that purchases the Services \npertaining to the Software Packages from Red Hat or a Red Hat authorized distributor. \n\n4. Limitation of Remedies and Liability. To the maximum extent permitted by applicable law, the remedies \ndescribed below are accepted by Client as its only remedies. Red Hat's entire liability, and Client's \nexclusive remedies, shall be: If the Software media is defective, Client may return it within 30 days of \ndelivery along with a copy of Client's payment receipt and Red Hat, at its option, will replace it or \nrefund the money paid by Client for the Software. To the maximum extent permitted by applicable law, \nRed Hat or any Red Hat authorized dealer will not be liable to Client for any incidental or consequential \ndamages, including lost profits or lost savings arising out of the use or inability to use the Software, \neven if Red Hat or such dealer has been advised of the possibility of such damages. In no event shall \nRed Hat's liability under this agreement exceed the amount that Client paid to Red Hat under this \nAgreement during the twelve months preceding the action.\n\n5. Export Control. As required by U.S. law, Client represents and warrants that it: \n(a) understands that the Software Packages are subject to export controls under the \nU.S. Commerce Department's Export Administration Regulations (\"EAR\"); \n\n(b) is not located in a prohibited destination country under the EAR or U.S. sanctions regulations \n(currently Cuba, Iran, Iraq, Libya, North Korea, Sudan and Syria); \n\n(c) will not export, re-export, or transfer the Software Packages to any prohibited destination, entity, \nor individual without the necessary export license(s) or authorizations(s) from the U.S. Government; \n\n(d) will not use or transfer the Software Packages for use in any sensitive nuclear, chemical or \nbiological weapons, or missile technology end-uses unless authorized by the U.S. Government by \nregulation or specific license; \n\n(e) understands and agrees that if it is in the United States and exports or transfers the Software \nPackages to eligible end users, it will, as required by EAR Section 740.17(e), submit semi-annual \nreports to the Commerce Department's Bureau of Industry & Security (BIS), which include the name and \naddress (including country) of each transferee; \n\nand (f) understands that countries other than the United States may restrict the import, use, or \nexport of encryption products and that it shall be solely responsible for compliance with any such \nimport, use, or export restrictions.\n\n6. Third Party Programs. Red Hat may distribute third party software programs with the Software Packages \nthat are not part of the Software Packages and which Client must install separately. These third party \nprograms are subject to their own license terms. The license terms either accompany the programs or \ncan be viewed at http://www.redhat.com/licenses/. If Client does not agree to abide by the applicable \nlicense terms for such programs, then Client may not install them. If Client wishes to install the programs \non more than one system or transfer the programs to another party, then Client must contact the licensor \nof the programs.\n\n7. General. If any provision of this agreement is held to be unenforceable, that shall not affect the \nenforceability of the remaining provisions. This License Agreement shall be governed by the laws of the \nState of North Carolina and of the United States, without regard to any conflict of laws provisions, \nexcept that the United Nations Convention on the International Sale of Goods shall not apply.\n\nCopyright 2006 Red Hat, Inc. All rights reserved. \n\"JBoss\" and the JBoss logo are registered trademarks of Red Hat, Inc. \nAll other trademarks are the property of their respective owners. \n\n Page 1 of 1 18 October 2006", + "json": "jboss-eula.json", + "yaml": "jboss-eula.yml", + "html": "jboss-eula.html", + "license": "jboss-eula.LICENSE" + }, + { + "license_key": "jdbm-1.00", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jdbm-1.00", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "JDBM LICENSE v1.00\n\nRedistribution and use of this software and associated documentation\n(\"Software\"), with or without modification, are permitted provided\nthat the following conditions are met:\n\n1. Redistributions of source code must retain copyright\n statements and notices. Redistributions must also contain a\n copy of this document.\n\n2. Redistributions in binary form must reproduce the\n above copyright notice, this list of conditions and the\n following disclaimer in the documentation and/or other\n materials provided with the distribution.\n\n3. The name \"JDBM\" must not be used to endorse or promote\n products derived from this Software without prior written\n permission of Cees de Groot. For written permission,\n please contact cg@cdegroot.com.\n\n4. Products derived from this Software may not be called \"JDBM\"\n nor may \"JDBM\" appear in their names without prior written\n permission of Cees de Groot.\n\n5. Due credit should be given to the JDBM Project\n (http://jdbm.sourceforge.net/).\n\nTHIS SOFTWARE IS PROVIDED BY THE JDBM PROJECT AND CONTRIBUTORS\n``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT\nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\nCEES DE GROOT OR ANY CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\nOF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "jdbm-1.00.json", + "yaml": "jdbm-1.00.yml", + "html": "jdbm-1.00.html", + "license": "jdbm-1.00.LICENSE" + }, + { + "license_key": "jdom", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jdom", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions, and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions, and the disclaimer that follows\n these conditions in the documentation and/or other materials\n provided with the distribution.\n\t\n3. The name \"JDOM\" must not be used to endorse or promote products\n derived from this software without prior written permission. For\n written permission, please contact .\n\n4. Products derived from this software may not be called \"JDOM\", nor\n may \"JDOM\" appear in their name, without prior written permission\n from the JDOM Project Management .\n\nIn addition, we request (but do not require) that you include in the\nend-user documentation provided with the redistribution and/or in the\nsoftware itself an acknowledgement equivalent to the following:\n \"This product includes software developed by the\n JDOM Project (http://www.jdom.org/).\"\nAlternatively, the acknowledgment may be graphical using the logos\navailable at http://www.jdom.org/images/logos.\n\t\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE JDOM AUTHORS OR THE PROJECT\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\nUSE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\nOF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n\t\nThis software consists of voluntary contributions made by many\nindividuals on behalf of the JDOM Project and was originally\ncreated by Jason Hunter and\nBrett McLaughlin . For more information\non the JDOM Project, please see .", + "json": "jdom.json", + "yaml": "jdom.yml", + "html": "jdom.html", + "license": "jdom.LICENSE" + }, + { + "license_key": "jelurida-public-1.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-jelurida-public-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "JELURIDA PUBLIC LICENSE\n\nPreamble:\n\nBeing a company engaged predominantly in the creation of blockchain technology,\nJelurida IP B.V. has prepared the following \u201ccoinleft\u201d license whose goal is to\nimplement new requirements consistent with the specific nature of the blockchain\nsoftware. We recognize the fundamental advantages that the decentralized ledger\ntechnology has to offer and we truly believe in its potential to change the\nworld for the better. Therefore we wish to continue the already established\ntradition to publish blockchain software as an open source and in this way to\ngive our contribution to the further development of the blockchain technology\nworld-wide. At the same time we wish to protect our IP rights and to address the\nfact that our software was copied many times during its existence and as a\nresult a lot of \u201cclones\u201d have been created which dilute the value of the tokens\nwith no significant technological improvements behind them.\n\nThe exact terms and conditions for using, copying and modification follow:\n\n\nTERMS AND CONDITIONS\n\n\nI. General Conditions\n\n\nIntroduction\n\nThe existent copyleft licensing models were designed to protect the value of the\ncode which is created in open source projects. They make sure anyone who builds\non top of this code also releases their code under the same copyleft license,\nthus sharing back with the community and the developers of the original project\nthe added value of the derived work.\n\nCopyleft licenses however were created long before crypto currency and\nblockchain technologies appeared, and could not have anticipated the fact that\ntoday the value of an open source distributed ledger project is contained not\nonly in the program code being written, but in the unique public blockchain\ninstance or crypto currency token, maintained by this project, with its\ndevelopers, community and holders sharing the common interest to preserve and\nincrease the value of this blockchain token.\n\nCrypto currency tokens today have value of their own, people can buy, sell and\ninvest in them and the unlimited permission of cloning the existing blockchain\nplatforms and creating new coins inevitably results in decreasing the value of\nthe original tokens.\n\nCrypto currency tokens are also an inseparable part of each distributed ledger\nsoftware, without which such software cannot really be used. Ensuring that a\nclone project shares back the modified source code is no longer sufficient to\nallow the users of the original project access to that derived work, unless they\nare also allocated some of the newly created tokens in the clone blockchain\ninstance. Thus such allocation is important in order to preserve not only the\nvalue of the original tokens, but also to preserve the users freedom to use any\nworks derived from the original software.\n\nWith the above being said, the terms and conditions for using, copying and\nmodification of distributed ledger software programs are outlined below, called\nthe Jelurida Public License (JPL). The JPL is inspired by the GNU General Public\nLicense versions 2 and 3, with adaptations specifically aimed at application of\nthe license to distributed ledger software programs; as such the GNU General\nPublic License and any other license terms and conditions other than this JPL\nare explicitly excluded.\n\n\nJPL version: 1.1\n\n\nArticle 0. Definitions:\n\n\u201cbased on [the Program/Covered Work/\u2026]\u201d means derived from the original Covered\nWork (or part thereof) by the act(s) of copying it, modifying it, including it\n(in whole or in part) or by linking to the original Covered Work (or part\nthereof).\n\n\u201cto convey\u201d: To convey a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through a\ncomputer network, with no transfer of a copy, is not conveying.\n\nCopyright Holder, Licensor: The owner of the IP rights over the software as\ndetermined by applicable national law and international treaty provisions\nregulating this subject matter.\n\nCorresponding Source: The Corresponding Source for a work in Object Code form\nmeans all the Source Code needed to generate, install, and (for an executable\nwork) run the Object Code and to modify the work, including scripts to control\nthose activities. However, it does not include the work's System Libraries, or\ngeneral-purpose tools or generally available free programs which are used\nunmodified in performing those activities but which are not part of the work.\nFor example, Corresponding Source includes interface definition files associated\nwith source files for the work, and the Source Code for shared libraries and\ndynamically linked subprograms that the work is specifically designed to\nrequire, such as by intimate data communication or control flow between those\nsubprograms and other parts of the work. The Corresponding Source need not\ninclude anything that users can regenerate automatically from other parts of the\nCorresponding Source. The Corresponding Source for a work in Source Code form is\nthat same work.\n\nCovered Work: A DLT Software or another Program based on a DLT or otherwise, or\nbased on another Covered Work, their Object Code and Source Code, and any other\nwork covered by this License according to their terms.\n\nDLT Instance: Unique instance of distributed ledger consisting of a network of\none or more participants (nodes) running a particular DLT Software and which\nnodes are in a state of consensus with each other within the permitted\ntolerances of the applicable consensus algorithm. An example of such DLT\ninstance is the Nxt public blockchain.\n\nDLT Software: Any distributed ledger computer technology including but not\nlimited to blockchain technology regardless of the way the consensus is\nestablished.\n\nGeneral Conditions: Chapter I. General Conditions of this License.\n\nLicense: This Jelurida Public License (JPL) consisting of both General\nConditions and Special Conditions.\n\nLicensee, You: Everyone (natural person or legal entity) who wants to use, copy,\ndistribute, modify or build on top of the Program.\n\n\u201cto modify\u201d: To modify a work means to copy from or adapt all or part of the\nwork in a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \u201cmodified version\u201d of the earlier\nwork or a \u201cwork based on\u201d the earlier work. Modification also includes\ntranslation into another programming language or human language.\n\nObject Code: Any non-Source Code form of a work.\n\nProgram: Any copyrightable work licensed under this License.\n\n\u201cto propagate\u201d: To propagate a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for infringement under\napplicable copyright law, except executing it on a computer or modifying a\nprivate copy. Propagation includes copying, distribution (with or without\nmodification), making available to the public, and in some countries other\nactivities as well.\n\nSource Code: The Source Code for a work means the preferred form of the work for\nmaking modifications to it.\n\nSpecial Conditions: Chapter II. Special Conditions of this License which\ncontains additional provisions required and adapted by the Licensor according to\nthe specific Covered Work they are applicable to.\n\nStandard Interface: An interface that either is an official standard defined by\na recognized standards body, or, in the case of interfaces specified for a\nparticular programming language, one that is widely used among developers\nworking in that language.\n\nSystem Libraries: Libraries of an executable work, other than the work as a\nwhole, that (a) are included in the normal form of packaging a Major Component,\nbut which are not part of that Major Component, and (b) serve only to enable use\nof the work with that Major Component, or to implement a Standard Interface for\nwhich an implementation is available to the public in Source Code form. A Major\nComponent, in this context, means a major essential component (kernel, window\nsystem, and so on) of the specific operating system (if any) on which the\nexecutable work runs, or a compiler used to produce the work, or an Object Code\ninterpreter used to run it.\n\n\nArticle 1. Scope of the License:\n\n1.1 This License applies to any Covered Work or other work which contains a\nnotice placed by the Copyright Holder saying it may be used, propagated,\nconveyed or modified only under the terms of this License. It also applies to\nany work which is not a DLT per se but is still a Covered Work because it is\nbased on the covered DLT Software or contains a portion of it. This is to ensure\nthat if such work is included into another DLT Software that DLT Software must\nsatisfy the below stated airdrop requirement and other terms of this License.\n\n1.2. All rights granted under this License are granted for the term of copyright\non the Covered Work, and are irrevocable provided the conditions of this License\nare met.\n\n1.3 The act of running a Program is not restricted as long as it does not\nviolate Article 3.4 of the General Conditions, and the output from a Program is\ncovered only if its contents constitute a work based on the Program (independent\nof having been made by running the Program). Whether that is true depends on\nwhat the Program does.\n\n1.4 Conveying is permitted solely under the conditions stated herein.\nSublicensing is not allowed; Article 7 of the General Conditions makes it\nunnecessary.\n\n1.5 No Covered Work shall be deemed part of an effective technological measure\nunder any applicable law fulfilling obligations under article 11 of the WIPO\ncopyright treaty adopted on 20 December 1996, or similar laws prohibiting or\nrestricting circumvention of such measures. When you convey a Covered Work, you\nwaive any legal power to forbid circumvention of technological measures to the\nextent such circumvention is effected by exercising rights under this License\nwith respect to the Covered Work, and you disclaim any intention to limit\noperation or modification of the work as a means of enforcing, against the\nwork's users, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n\nArticle 2.\n\n2.1 You may copy and distribute verbatim copies of the Covered Work\u2019s Source\nCode as you receive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice and\ndisclaimer of warranty; keep intact all the notices that refer to this License\nand to the absence of any warranty; and give any other recipients of the Covered\nWork a copy of this License along with the Covered Work.\n\n2.2 You must keep intact all authorship and copyright notices and when conveying\nor offering to convey copies (verbatim or modified) you must also avoid any\nmisrepresentation of the origin of the Covered Work. You must make sure that any\nmodified versions of such Covered Work are marked in reasonable ways as\ndifferent from the original version and they do not imply any endorsement or\nsupport by the Copyright Holder regarding this modified work.\n\n2.3 You may charge a fee for the physical act of transferring a copy (for the\navoidance of doubt, such physical act of transfer may include making the copy\navailable on your website or otherwise), and you may at your discretion and\nresponsibility offer support or warranty protection in exchange for a fee. You\nare not allowed to charge any fee for granting the right to further use,\npropagate, convey or modify the copy then obtained by the acquirer, as such\nwould be against the intention of this License.\n\n\nArticle 3. You may modify your copy or copies of the Covered Work or any portion\nof it, thus forming a work based on the Covered Work, and copy and distribute\nsuch modifications or work under the terms of Article 2 above, provided that you\nalso meet all of these conditions:\n\n3.1 You must cause the modified files to carry prominent notices stating that\nyou changed the files and the date of any change.\n\n3.2 You must cause any work that you distribute or publish, that in whole or in\npart contains or is derived from the Covered Work or any part thereof, to be\nlicensed as a whole at no charge to all third parties under the terms of this\nLicense.\n\n3.3 If the modified program normally reads commands interactively when run, you\nmust cause it, when started running for such interactive use in the most\nordinary way, to print or display an announcement including an appropriate\ncopyright notice and a notice that there is no warranty (or else, saying that\nyou provide a warranty) and that users may redistribute the program under the\nconditions of this License, and telling the user how to view a copy of this\nLicense. (Exception: if the Covered Work itself is interactive but does not\nnormally print such an announcement, your work based on the Covered Work is not\nrequired to print an announcement.) If the program has graphical user interface\nany such notices should be placed in an about dialog or similar.\n\n3.4 If the Covered Work is a DLT Software, after your modifications it must\ncontinue to work with the original DLT Instance without violating the consensus\nalgorithm or resulting in a permanent fork. For the purpose of this clause\nmodification also includes changing the configuration or network environment in\nwhich the Covered Work is run that results in permanent disconnection, fork or\nisolation from the original DLT Instance. If your modifications result in a\ndifferent DLT Instance you must satisfy the following airdrop requirement:\n\n3.4.1 The token holders from the original distributed ledger instance shall be\nallocated a portion (an \"airdrop\") of the tokens in that new DLT Instance\nproportional to their token balances. This shall also apply to anyone who\nintends to make a copy of your copy, i.e. any such person needs to allocate the\nsame airdrop of the newly created tokens to the account holders from the\noriginal DLT Instance (not to your copy). If the Covered Work is not a DLT\nSoftware per se this requirement still applies to any other work based on or\nincluding this work or portions of it which is a DLT Software or in any other\nway distributes tokens to its users. The specific percentage of the airdrop\nand the tokens to which it applies, which may also depend on how the new DLT\nInstance relates to the original one, are defined in the Special Conditions.\n\n3.5 All other provisions, designated in the Special Conditions and consistent\nwith the specific requirements arising from the architecture of each particular\ndecentralized ledger/consensus platform, are observed as well.\n\n3.6 These requirements apply to the modified work as a whole. If identifiable\nsections of that work are not derived from the Covered Work, and can be\nreasonably considered independent and separate works in themselves, then this\nLicense, and its terms, do not apply to those sections when you convey them as\nseparate works. But when you convey the same sections as part of a whole which\nis a work based on the Covered Work, the conveyance of the whole must be on the\nterms of this License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote it. Mere\naggregation of another work not based on the Covered Work with the Covered Work\n(or with a work based on the Covered Work) on a volume of a storage or\ndistribution medium does not bring the other work under the scope of this\nLicense.\n\n\nArticle 4. You may convey a Covered Work in Object Code form under the terms of\nArticles 2 and 3 of the General Conditions, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License, in one of\nthese ways:\n\n4.1 Convey the Object Code in, or embodied in, a physical product (including a\nphysical distribution medium), accompanied by the Corresponding Source fixed on\na durable physical medium customarily used for software interchange.\n\n4.2 Convey the Object Code in, or embodied in, a physical product (including a\nphysical distribution medium), accompanied by a written offer, valid for at\nleast three years and valid for as long as you offer spare parts or customer\nsupport for that product model, to give anyone who possesses the Object Code\neither (1) a copy of the Corresponding Source for all the software in the\nproduct that is covered by this License, on a durable physical medium\ncustomarily used for software interchange, for a price no more than your\nreasonable cost of physically performing this conveying of source, or (2) access\nto copy the Corresponding Source from a network server at no charge.\n\n4.3 Convey individual copies of the Object Code with a copy of the written offer\nto provide the Corresponding Source. This alternative is allowed only\noccasionally and non-commercially, and only if you received the Object Code with\nsuch an offer, in accord with Article 4.2 above.\n\n4.4 Convey the Object Code by offering access from a designated place (gratis or\nfor a charge), and offer equivalent access to the Corresponding Source in the\nsame way through the same place at no further charge. You need not require\nrecipients to copy the Corresponding Source along with the Object Code. If the\nplace to copy the Object Code is a network server, the Corresponding Source may\nbe on a different server (operated by you or a third party) that supports\nequivalent copying facilities, provided you maintain clear directions next to\nthe Object Code saying where to find the Corresponding Source. Regardless of\nwhat server hosts the Corresponding Source, you remain obligated to ensure that\nit is available for as long as needed to satisfy these requirements.\n\n4.5 Convey the Object Code using peer-to-peer transmission, provided you inform\nother peers where the Object Code and Corresponding Source of the work are being\noffered to the general public at no charge under Article 4.4 above.\n\n4.6 A separable portion of the Object Code, whose Source Code is excluded from\nthe Corresponding Source as a System Library, need not be included in conveying\nthe Object Code work.\n\n\nArticle 5. You may not use, copy, modify, or propagate the Covered Work except\nas expressly provided under this License. Any attempt otherwise to use, copy,\nmodify or propagate the Covered Work is void, and will automatically terminate\nyour rights under this License. However, parties who have received copies, or\nrights, from you under this License will not have their licenses terminated so\nlong as such parties remain in full compliance.\n\n\nArticle 6. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to copy, use, modify or\npropagate Covered Works. These actions are prohibited if you do not accept this\nLicense. Therefore, by modifying or propagating the Covered Work, you indicate\nyour acceptance of this License to do so, and all its terms and conditions for,\nas specified in the General Conditions and Special Conditions, copying, using,\npropagating or modifying the Covered Work.\n\n\nArticle 7. Each time you convey the Covered Work, the recipient automatically\nreceives a license from the original Licensor to use, copy, propagate or modify\nthe Covered Work subject to terms and conditions at least equal and in\naccordance with this License. In this regard, the license granted on behalf of\nthe original Licensor by the propagator of the Covered Work may amend this\nLicense only to the following extent:\n\n7.1 You can add additional airdrop requirements towards the holders of your\nunique DLT Instance as long as those do not in any way reduce or interfere with\nthe airdrop owed to the original DLT Instance account holders.\n\n7.2 If the distribution and/or use of the Covered Work is restricted in certain\ncountries either by patents, by copyrighted interfaces or by law, the original\ncopyright holder who places the Covered Work under this License may add an\nexplicit geographical distribution limitation excluding those countries, so that\ndistribution is permitted only in or among countries not thus excluded. In such\ncase, this License incorporates the limitation as if written in the body of this\nLicense.\n\n\nArticle 8. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues), conditions\nare imposed on you (whether by court order, agreement or otherwise) that\ncontradict the conditions of this License, they do not excuse you from the\nconditions of this License. If you cannot distribute so as to satisfy\nsimultaneously your obligations under this License and any other pertinent\nobligations, then as a consequence you may not propagate the Covered Work at\nall. For example, if a patent license would not permit royalty-free\nredistribution of the Covered Work by all those who receive copies directly or\nindirectly through you, then the only way you could satisfy both it and this\nLicense would be to refrain entirely from distribution of the Covered Work.\n\n\nArticle 9. Jelurida IP B.V. may publish revised and/or new versions of the\nJelurida Public License from time to time. Such new versions will be similar in\nspirit to the present version, but may differ in detail to address new problems\nor concerns. To avoid ambiguity, everyone who wishes to use the text of the\nJelurida Public License must always specify under which version of the JPL\ntheir Covered Work is released.\n\n\nArticle 10. Every Copyright Holder is permitted to use the text of the Jelurida\nPublic License for their own Covered Work provided that they: (i) keep the name\nJelurida Public License (you can append the name of the specific DLT Instance,\ne.g. \"Jelurida Public License version 1.0 for the Nxt Public Blockchain\"),\n(ii) remove the Preamble and (iii) do not change the General Conditions. Every\nCopyright Holder is permitted to adapt the Special Conditions to their specific\ncase under (i), (ii) and (iii) above to the extent that they do not contradict\nthe General Conditions nor the spirit of the Jelurida Public License.\n\n\nArticle 11. If the Special Conditions contradict the General Conditions or any\npart of them, the provisions of the General Conditions shall take precedence.\n\n\nArticle 12. If you cannot satisfy Article 3.4 and 3.4.1 of the General\nConditions or you are not willing to do so, or if you require a customized DLT\nInstance for internal use (i.e. a private blockchain) based on the DLT Software\nyou must obtain permission or purchase a commercial license from the original\nCopyright Holder however he is not in any way obliged to grant permission or\nsell such a license.\n\n\nArticle 13. No warranty\n\nTHE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE COVERED WORK \"AS IS\"\nWITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nCOVERED WORK IS WITH YOU. SHOULD THE COVERED WORK PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n\nArticle 14.\n\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY\nCOPYRIGHT HOLDER OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE\nCOVERED WORK AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\nINABILITY TO USE THE COVERED WORK (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR\nDATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE COVERED WORK TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH\nHOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. YOU\nINDEMNIFY THE COPYRIGHT HOLDER OR CONVEYOR OF THE COVERED WORK OF ANY LIABILITY\nVIS-\u00c0-VIS ANY THIRD PARTY IN CONNECTION WITH THE COVERED WORK AS USED, COPIED,\nPROPAGATED OR MODIFIED BY YOU.\n\n\nArticle 15.\n\nIf the disclaimer of warranty and limitation of liability provided above cannot\nbe given local legal effect according to their terms, reviewing courts shall\napply local law that most closely approximates an absolute waiver of all civil\nliability in connection with the Covered Work, unless a warranty or assumption\nof liability accompanies a copy of the Covered Work in return for a fee.\n\n\nII. Special Conditions\n\nArticle 0. The Copyright Holder of the Nxt Reference Software (NRS) is Jelurida\nIP B.V.\n\n\nArticle 1. The airdrop requirement of Article 3.4.1 of the General Conditions,\nas related to the Nxt Reference Software (NRS) is the following:\n\n1.1 The NXT holders from the original Nxt Public Blockchain Platform as\nmaintained by Jelurida Swiss SA must be allocated at least 10% (ten percent) of\nthe forging tokens in the new DLT Instance, proportional to their NXT holdings,\n\nOR\n\n1.2 The forging token holders from a DLT Instance which is based on the NRS that\nhas already satisfied the JPL airdrop requirement, are allocated 100% (one\nhundred percent) of the forging tokens in that new DLT Instance, proportional to\ntheir forging token holdings.\n\nThe first case covers clones and forks of the Nxt platform, and ensures that NXT\nowners will receive an airdrop from any such clone or fork launched in the\nfuture, or any existing Nxt clone that decides to upgrade to this NRS version or\ncopy or backport code from it.\n\nThe second case is to cover forks of Nxt clones which have already satisfied the\nJPL airdrop, as by definition at the time of the hard fork all accounts start\nwith the same balances on either fork, and it would be difficult to make a hard\nfork satisfy the first condition. The Nxt holders who received the airdrop\nwould still have the same balances on either fork.\n\n\nArticle 2. In both cases (Articles 1.1 or 1.2 of the Special Conditions), token\nholdings must be calculated based on a snapshot taken not earlier than 3 months\nbefore the launch of the new DLT Instance. For a new DLT Instance, the snapshot\nshould also be taken not later than 24 h before the launch, to avoid the\nuncertainty due to the 720 blocks rolling checkpoint.\n\n\nArticle 3.\n\n3.1 There should be under no circumstances any restrictions or any type of\ndiscrimination against accounts receiving tokens as an airdrop.\n\n3.2 If token distribution must be restricted by some criteria that not all\nexisting NXT holders can potentially satisfy, a specific exemption from the full\nJPL airdrop requirements must be obtained in advance. The Copyright Holder\nreserves the right to not grant such exemption, or to require a commercial\nlicense in such situations, to be decided on a case by case basis.\n\n3.3 As internal (private) use of Nxt software for evaluating and testing\npurposes cannot satisfy the JPL airdrop requirement, any such use will also\nrequire an evaluation license agreement with the Copyright Holder if it lasts\nlonger than 3 months.\n\n3.4 Nothing in this license shall be understood as giving NXT token holders the\nright to hold the Licensor, its affiliate parties, or sublicensors, liable in\ncase the NXT holders do not obtain any airdrop, or liable for not taking action\nto enforce the airdrop requirement, or for not observing, verifying or\nmonitoring the compliance with any airdrop. The Licensor also retains the right\nto change the percentage of the airdrop requirement in Article 1.1 or to\ncompletely eliminate this airdrop requirement at any time.\n\n\nArticle 4. DLT Instances that by design do not use a fixed number of tokens\nissued all at once, or that have substituted the proof-of-stake algorithm with a\ndifferent one and as a result do not use forging tokens, have to contact the\nCopyright Holder for a custom license agreement. However the Copyright Holder is\nin no way obliged to provide such a custom license.\n\n\nArticle 5. Interpretation\nYou agree that you may not, for the purpose of interpretation of this License,\nrefer to, or construe this License on the basis of, or use as counterevidence,\nany prior agreements, arrangements, understandings and statements, or other\nbilateral or public licenses, and to this extent agree (i) that this License\nqualifies as an agreed rule of evidence within the meaning of article 153 Dutch\nCode of Civil Proceedings and (ii) that this clause serves as a determination\nagreement within the meaning of article 7:900 Dutch Civil Code, and that this\nLicense shall be interpreted or construed by assuming the most obvious\ngrammatical meaning of the wording of this License.\n\n\nArticle 6. Governing law\nThis License, the documents related to it and any agreement that incorporates\nany of these are governed by and shall be construed in accordance with the laws\nof the Netherlands. Any and all disputes arising out of or in connection with\nthis License, the documents related to it and any agreement that incorporates\nany of these shall be exclusively referred to the competent court in Amsterdam,\nthe Netherlands.", + "json": "jelurida-public-1.1.json", + "yaml": "jelurida-public-1.1.yml", + "html": "jelurida-public-1.1.html", + "license": "jelurida-public-1.1.LICENSE" + }, + { + "license_key": "jetbrains-purchase-terms", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-jetbrains-purchase-terms", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Terms and Conditions of Purchase\n\nGENERAL\nIn these Terms and Conditions of Purchase (\"Purchase Terms\"):\n\"Customer\" means an individual or a legal entity purchasing Product directly from JetBrains or its Affiliate.\n\"JetBrains\" means JetBrains s.r.o. with its registered office at Na h\u0159ebenech II 1718/10, Prague, 14700, Czech Republic, registered with Commercial Register kept by the Municipal Court of Prague, Section C, file 86211, ID.Nr.: 265 02 275.\n\"Affiliate\" means, for the purpose of these Purchase Terms, a) JetBrains Americas, Inc., a Delaware corporation with its registered office at 324 New Brooklyn Road, Berlin, NJ 08009, USA, (ii) JetBrains GmbH with its registered office at Elsenheimerstra\u00dfe 47, M\u00fcnchen 80687, Germany; or (iii) JetBrains Co. Ltd., with its registered office at Universitetskaya emb., 7-9-11/5, lit.A, St. Petersburg 199034, Russian Federation.\n\"Product\" means any software program or service made available by JetBrains. The use of Product by Customer is governed by the applicable end-user license agreement, subscription terms or terms of service (collectively, Terms of Use) set forth by JetBrains.\nCustomer accepts these Purchase Terms by placing an order for Product with JetBrains or its Affiliate. When placing an order for Product directly with JetBrains, Customer enters into a legally binding agreement with JetBrains. When placing an order for Product with Affiliate, Customer enters into a legally binding agreement with the relevant Affiliate.\nOrders placed by Customer with a reseller of JetBrains or its Affiliate are subject to terms and conditions of purchase set forth by that reseller.\n\nORDER PLACEMENT AND ACCEPTANCE\nCustomer may place an order with JetBrains or its Affiliate based on the Customer country:\nonline on the JetBrains website www.jetbrains.com;\nby fax or e-mail using the appropriate contact of JetBrains or its Affiliate.\nOrder details shall be in English. Customer can modify order details before acceptance of the Customer order by JetBrains or its Affiliate by a written notice to JetBrains or the relevant Affiliate. English is the preferred language for order-related enquiries.\nAny order is not binding upon JetBrains or its Affiliate until accepted by JetBrains or the relevant Affiliate. Non-acceptance of an order may be the result of one of the following:\nfailed payment;\ngrowing backlog or negative payment history;\nincomplete or incorrect order details, such as missing e-mail address for delivery, missing Customer billing address, or a pricing or product description error, among others;\nineligibility according to the order criteria (e.g. entitlement to upgrade or to certain Product purchase options restricted to particular users or purpose of use); or\nfor any reason at the sole discretion of JetBrains or the relevant Affiliate.\n\nPRICES AND PAYMENT TERMS\nJetBrains and its Affiliates set prices and accept payments for Products in one of the following major currencies depending on the Customer country: USD, EUR, GBP or CZK. Prices in any currency are subject to change by JetBrains or its Affiliate.\nJetBrains and its Affiliates accept major debit and credit cards (collectively, \"payment cards\") for online orders via third-party payment gateway providers, including, but not limited to, Adyen and PayPal. JetBrains and its Affiliates are not responsible for any payment failure resulting from inaccurate payment card details provided by Customer when placing an online order, any restrictions applicable to payment card by Customer's bank, or payment gateway failure.\nBy purchasing Product requiring regular payments on a monthly, quarterly or annual basis (\"Recurring Payments\"), Customer authorizes JetBrains or its Affiliate to charge Customer's payment card automatically at the interval and in the amount selected by Customer based on the available options during the purchase process. Customer agrees that the payment card specified by Customer for Recurring Payments is, and will continue to be, an account that Customer owns, and that Customer will maintain sufficient availability under Customer's credit card limit, or sufficient funds in the account linked to Customer's debit card, as applicable, to pay Recurring Payments. Customer can cancel Recurring Payments at any time via Customer account at https://account.jetbrains.com prior to the next Recurring Payment due date. If Customer cancels Recurring Payments after this time, the cancellation will not take effect until the following Recurring Payment due date, and no refund or partial refund will be issued to Customer by JetBrains or its Affiliate.\nJetBrains and its Affiliates only accept purchase orders from existing corporate Customers with clear payment history. Purchase orders can only be paid by wire transfer on net 30 days terms, unless otherwise specified on invoice issued to Customer by JetBrains or the relevant Affiliate. Purchase orders from newly registered corporate Customers and offline orders from individual Customers are subject to advance payment by wire transfer.\n\nPRODUCT DELIVERY\nJetBrains and its Affiliates ship no physical Products. Any details necessary to enable Customer to download and/or use the purchased Product will be delivered by JetBrains or Affiliate to Customer via e-mail to an e-mail address provided by Customer. Customer is responsible for providing JetBrains or Affiliate with a valid e-mail address for delivery purposes.\nJetBrains and its Affiliates will use their best efforts to deliver Product purchased by Customer within 2 business days of the order acceptance. JetBrains or its Affiliate shall not be liable for any failure to deliver Product within this timeframe.\nThe Products shall be deemed delivered to Customer on the date when JetBrains or Affiliate sends the Product e-mail to the e-mail address provided by Customer. JetBrains or its Affiliate shall not be liable for any failure to deliver a Product to Customer if a Product e-mail bounces back.\n\nTAXES AND DEDUCTIONS\nProduct prices do not include any national, state or local sales, use, value added or other taxes. Customer shall pay any such taxes, if applicable.\nCustomer bears sole responsibility for any withholding tax liabilities, and no deductions shall be made by Customer from the amount payable to JetBrains or its Affiliate under any invoice.\nPurchases from the European Union (\"EU\") countries may be subject to the EU value added tax. Customers from the EU are responsible for providing a valid VAT ID, if any.\n\nWITHDRAWAL AND REFUND\nJetBrains provides an opportunity to evaluate any of its Products free of charge during a trial period specified in the applicable Terms of Use, and encourages Customer to fully evaluate Product prior to purchasing. Customer may withdraw from using Product at its sole discretion at any time before expiration of a free trial period.\nAny refund request following the Product purchase date will be subject to the prior authorization by JetBrains or its Affiliate and acceptance of such request shall be at the sole discretion of JetBrains or Affiliate, unless otherwise provided by applicable law.\n\nEXPORT CONTROL\nCustomer agrees and accepts that Products may be subject to import and export laws of any country, including those of the European Union and the United States (specifically the Export Administration Regulations (\"EAR\").\nIn accordance with the EAR, JetBrains Products typically:\na. Fall under the Export Control Classification Number (ECCN) 5D002;\nb. May be exported under EAR to most destinations with No License Required (\"NLR\"). Restricted countries currently include, but are not necessarily limited to Cuba, Iran, North Korea, Sudan or Syria.\nInformation provided under Section 7.2 is only intended for general information purposes and should not be construed as legal advice concerning the export control laws and regulations of any country. For details on export restrictions applicable to Products, Customer should refer to the laws and regulations of the relevant jurisdiction.\n\nMISCELLANEOUS\nNo terms and conditions other than the terms and conditions contained herein shall be binding upon JetBrains and its Affiliates, unless accepted by JetBrains or its Affiliate in writing and signed by the duly authorized representative of JetBrains or its Affiliate. If Customer's terms and conditions of purchase are different from or in addition to these Purchase Terms, these Purchase Terms shall prevail and Customer\u2019s terms are hereby rejected.\nThese Purchase Terms are subject to change at any time by JetBrains by posting the updated Purchase terms on the JetBrains website at www.jetbrains.com.\nCustomer declares having had sufficient opportunity to review this Agreement, understand the content of all of its clauses, negotiate its terms and seek independent professional legal advice in that respect before entering into it. Consequently, any statutory \"form contracts\" (\"adhesion contracts\") regulations shall not be applicable to these Purchase Terms.\nIf Customer places an order for Product directly with JetBrains, these Purchase Terms will be governed by the laws of Czech Republic, without reference to conflict of laws principles, and the parties agree that any litigation relating to this these Purchase Terms may only be brought in, and will be subject to the jurisdiction of, any Court of Czech\nIf Customer places an order for Product with any JetBrains Affiliate, these Purchase Terms will be governed by laws applicable in the country of the relevant Affiliate.\nFor any questions regarding these Purchase Terms, please contact JetBrains or its Affiliate.", + "json": "jetbrains-purchase-terms.json", + "yaml": "jetbrains-purchase-terms.yml", + "html": "jetbrains-purchase-terms.html", + "license": "jetbrains-purchase-terms.LICENSE" + }, + { + "license_key": "jetbrains-toolbox-open-source-3", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jetbrains-toolbox-oss-3", + "other_spdx_license_keys": [ + "LicenseRef-scancode-jetbrains-toolbox-open-source-3" + ], + "is_exception": false, + "is_deprecated": false, + "text": "TOOLBOX SUBSCRIPTION LICENSE AGREEMENT FOR OPEN SOURCE PROJECTS\nVersion 3, Effective as of September 9th, 2016\n\nIMPORTANT! READ CAREFULLY:\nTHIS IS A LEGAL AGREEMENT. BY CLICKING ON THE \"I AGREE\" (OR SIMILAR) BUTTON THAT IS PRESENTED TO YOU AT THE TIME OF YOUR PURCHASE, OR BYDOWNLOADING, INSTALLING, COPYING, SAVING ON YOUR COMPUTER, OR OTHERWISE USING JETBRAINS SOFTWARE, SERVICES OR PRODUCTS, YOU ARE BECOMING A PARTY TO THIS AGREEMENT, AND YOU ARE CONSENTING TO BE BOUND BY ALL THE TERMS AND CONDITIONS SET FORTH BELOW.\n\n1. PARTIES\n\n1.1. \"JetBrains\" or \"We\" means JetBrains s.r.o., having its principal place of business at Na hrebenech II 1718/10, Prague, 14700, Czech Republic, registered with Commercial Register kept by the Municipal Court of Prague, Section C, file 86211, ID.Nr.: 265 02 275.\n\n1.2. \"Licensee\" or \"You\" means an open source development group specified in the Subscription Confirmation.\n\n2. DEFINITIONS\n\n2.1. \"Agreement\" means this Agreement.\n\n2.2. \"Product\" for the purposes of this Agreement means any software provided under JetBrains Toolbox.\n\n2.3. \"Client\" means a computer device used by Licensee for running Product.\n\n2.4. JetBrains Account\" or \"JBA\" means an account at https://account.jetbrains.com created by Licensee, having a unique name and password, and through which Licensee has access to Products in accordance with a Toolbox Subscription.\n\n2.5. \"JetBrains Toolbox\" means all of JetBrains individual developer productivity software (as identified on the JetBrains website). JetBrains Toolbox does not include team productivity software or services such as YouTrack, TeamCity, UpSource, or Hub, or any other software, services or products other than those identified from time to time by JetBrains as individual developer productivity software.\n\n2.6. \"Subscription Confirmation\" means an email confirming Licensee\u2019s rights to access and use Products.\n\n2.7. \"Toolbox Subscription\" specifies the subscription term and the set of Products covered by this Agreement.\n\n2.8. \"Authorized User\" means a software developer or other open source development group member who is authorized by Licensee to use Products for the purpose of development of an open source project.\n\n3. GRANT OF LICENSE\n\n3.1. Unless Toolbox Subscription is expired or this Agreement is terminated in accordance with Section 10, and subject to the terms and conditions specified herein, JetBrains grants You a limited, non-exclusive and non-transferable license to use each Product covered by Toolbox Subscription for a period of 1 (one) year as follows:\n\n(A) You may:\n\n(i) Install and use any version of the Product covered by the Toolbox Subscription on any number of Clients and on any operating system supported by the Product;use Product by Authorized Users solely for the purpose of development of non-commercial open source projects that meet the Open Source Definition at http://www.opensource.org/docs/osd. The right to use Product for an\"y other purposes is expressly prohibited; and\n\n(ii) Make one backup copy of Product solely for archival purposes.\n\n(B) You may not:\n\n(i) Rent, lease, reproduce, modify, adapt, create derivative works of, distribute, sell, sublicense or transfer the Product, or provide access to the Product or Your JetBrains Account to a third party;\n\n(ii) Reverse engineer, decompile, disassemble, modify, translate the Product, or make any attempt to discover the source code of the Product;\n\n(iii) Remove or obscure any proprietary or other notices contained in the Product;\n\n(iv) Use Products for any commercial purposes.\n\n3.2. Products are made available on a limited license or access basis, and no ownership right is conveyed to You, irrespective of the use of terms such as \"purchase\" or \"sale.\" JetBrains has and retains all right, title and interest, including all intellectual property rights, in and to the Products any and all related or underlying technology, and any modifications or derivative works of the foregoing created by or for JetBrains, including without limitation as they may incorporate Feedback (as defined below).\n\n3.3. Licensee agrees to comply with the terms of this Agreement, and to take reasonable measures to prevent use of Software by Authorized Users in an inappropriate manner or access to Products by unauthorized users.\n\n4. ACCESS TO PRODUCTS\n\n4.1. You must register for a JetBrains Account and have Internet access in order to access or receive Products, or to renew a subscription. Any registration information that You provide to Us via Your JetBrains Account must be accurate, current and complete. You must also update Your information so that We may send notices, statements and other information to You by email or through Your JetBrains Account. You are responsible for all actions taken through Your accounts.\n\n4.2. You may use Your JetBrains Account credentials in the Product so We verify Your rights to use the Product online. Product will periodically connect to JetBrains servers to update this information including changes to JetBrains Account credentials and Toolbox Subscription plan.\n\n4.3. Alternatively, You may use an offline activation code that You can download in Your JetBrains Account. In the event you use this option, it is Your responsibility to download a new activation code and apply it to the Product registration screen every time you make changes to the Toolbox Subscription or whenever a Toolbox Subscription is renewed.\n\n4.4. All deliveries under this Agreement will be electronic. You must have an Internet connection in order to access Your JetBrains Account and to receive any deliveries. For the avoidance of doubt, You are responsible for Product download and installation.\n\n5. LICENSE RENEWAL\n\n5.1. Licensee may renew its license for another year by submitting a written request to Licensor 30 (thirty) days prior to the license expiration date.\n\n5.2. If not agreed otherwise in writing between Licensor and Licensee, in the event of license renewal the relationship between parties shall be governed and amended (if applicable) by the terms and conditions of License agreement related to Product available at www.jetbrains.com on the day of license renewal.\n\n6. FEEDBACK\n\nYou have no obligation to provide Us with ideas, suggestions, or proposals (\"Feedback\"). However, if You submit Feedback to us, then You grant Us a nonexclusive, worldwide, royalty-free license that is sub-licensable and transferable, to make, use, sell, have made, offer to sell, import, reproduce, publicly display, distribute, modify, and publicly perform the Feedback in any manner without any obligation, royalty or restriction based on intellectual property rights or otherwise.\n\n7. THIRD-PARTY SOFTWARE\n\n7.1. The Products include code and libraries licensed to Us by third parties, including open source software (\"Third-Party Software\"). The list of Third-Party Software included in each Product is available in Product documentation. All Third-Party Software is licensed to You under the terms of their respective licenses locate in the Product documentation.\n\n7.2. JETBRAINS PROVIDES NO WARRANTY, EXPRESS OR IMPLIED, WITH RESPECT TO ANY THIRD-PARTY SOFTWARE AND EXPRESSLY DISCLAIMS ANY WARRANTY OR CONDITION OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT.\n\n8. LIMITED WARRANTY\n\nALL PRODUCTS ARE PROVIDED TO YOU ON AN \"AS IS\" AND \"AS AVAILABLE\" BASIS WITHOUT WARRANTIES. USE OF THE SOFTWARE IS AT YOUR OWN RISK. JETBRAINS MAKES NO WARRANTY AS TO ITS USE OR PERFORMANCE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, JETBRAINS, AND ITS SUPPLIERS AND RESELLERS, DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT, WITH REGARD TO THE PRODUCTS, AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES. THIS LIMITED WARRANTY GIVES LICENSEE SPECIFIC LEGAL RIGHTS. LICENSEE MAY HAVE OTHERS, WHICH VARY FROM STATE/JURISDICTION TO STATE/JURISDICTION. LICENSOR (AND ITS AFFILIATES, AGENTS, DIRECTORS AND EMPLOYEES) DOES NOT WARRANT THAT THE SOFTWARE IS ACCURATE, RELIABLE OR CORRECT, THAT THE PRODUCTS WILL MEET LICENSEE\u2019S REQUIREMENTS, THAT THE SOFTWARE WILL BE AVAILABLE AT ANY PARTICULAR TIME OR LOCATION, UNINTERRUPTED OR SECURE; THAT ANY DEFFECTS OR ERRORS WILL BE CORRECTED; OR THAT THE SOFTWARE IS FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS. ANY CONTENT OR DATA DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE SOFTWARE ARE DOWNLOADED AT YOUR OWN RISK AND YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR LOSS OF DATA THAT RESULTS FROM SUCH DOWNLOAD.\n\n9. DISCLAIMER OF DAMAGES\n\n9.1. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL JETBRAINS (OR ITS AFFILIATES, AGENTS, DIRECTORS, OR EMPLOYEES), OR JETBRAINS\u2019 LICENSORS, SUPPLIERS OR RESELLERS BE LIABLE TO YOU OR ANYONE ELSE FOR: (A) ANY LOSS OF USE, DATA, GOODWILL, OR PROFITS, WHETHER OR NOT FORESEEABLE; (B) ANY LOSS OR DAMAGES IN CONNECTION WITH TERMINATION OR SUSPENSION OF YOUR ACCESS TO OUR PRODUCTS IN ACCORDANCE WITH THIS AGREEMENT, AND (C) ANY SPECIAL, INCIDENTAL, INDIRECT, CONSEQUENTIAL, EXEMPLARY OR PUNITIVE DAMAGES WHATSOEVER (EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF THESE DAMAGES), INCLUDING THOSE (X) RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT FORESEEABLE, (Y) BASED ON ANY THEORY OF LIABILITY, INCLUDING BREACH OF CONTRACT OR WARRANTY, STRICT LIABILITY, NEGLIGENCE OR OTHER TORTIOUS ACTION, OR (Z) ARISING FROM ANY OTHER CLAIM ARISING OUT OF OR IN CONNECTION WITH YOUR USE OF OR ACCESS TO THE SERVICES OR SOFTWARE. THE FOREGOING LIMITATION OF LIABILITY SHALL APPLY TO THE FULLEST EXTENT PERMITTED BY LAW IN THE APPLICABLE JURISDICTION.\n\n9.2. OUR TOTAL LIABILITY IN ANY MATTER ARISING OUT OF OR RELATED TO THIS AGREEMENT IS LIMITED TO TEN (10) US DOLLARS. THIS LIMITATION WILL APPLY EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF THE LIABILITY EXCEEDING THE AMOUNT AND NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY.\n\n10. TERM AND TERMINATION\n\n10.1. The term of this Agreement will commence upon acceptance of this Agreement by Licensee as set forth in the preamble above, and will continue for each Product through the end of the applicable subscription period specified in the respective Subscription Confirmation. This Agreement can be renewed under the terms set forth in Section 6 of this Agreement with respect to a Product for a successive Toolbox Subscription term, unless terminated as set forth herein.\n\n10.2. You may terminate this Agreement at any time by cancelling the subscription for one or more Products via Your JetBrains Account. If such termination occurs during a then-current subscription period, this Agreement will continue to be effective until the end of that subscription period.\n\n10.3. JetBrains may terminate this agreement if:\n\n(A) Licensee has materially breached this Agreement and fails to cure such breach within thirty (30) days of written notice thereof;\n\n(B) JetBrains is required to do so by law (for example, where the provision of the JetBrains Toolbox to Licensee is, or becomes, unlawful); or\n\n(C) JetBrains elect to discontinue to provide JetBrains Toolbox, in whole or in part.\n\n10.4. JetBrains will make reasonable effort to notify Licensee via an email as follows:\n\n(A) Thirty (30) days prior to termination of the Agreement in the events specified in Clauses 10.3(B) and 10.3(C) above;\n\n11. EXPORT REGULATIONS\n\nLicensee shall comply with all applicable laws and regulations with regards to: economic sanctions; export controls; import regulations; and trade embargoes (\"Sanctions\"), including those of the European Union and United States (specifically the Export Administration Regulations (EAR)). Licensee acknowledges that it is not a person targeted by Sanctions nor is it otherwise owned or controlled by or acting on behalf of any person targeted by Sanctions. Further, Licensee acknowledges that it will not download or otherwise export or re-export Software or any related technical data directly or indirectly to any person targeted by Sanctions or download or otherwise use Software for any end-use prohibited or restricted by Sanctions.\n\n12. GENERAL\n\n12.1. Entire Agreement. This Agreement, including the Third-Party Software license terms, constitutes the entire agreement between the parties concerning its subject matter and supersedes any prior agreements between You and JetBrains regarding Your use of any JetBrains software covered by JetBrains Toolbox. No purchase order, other ordering document or any handwritten or typewritten text which purports to modify or supplement the printed text of this Agreement or any schedule will add to or vary the terms of this Agreement unless signed by both Licensee and JetBrains.\n\n12.2. Reservation of Rights. JetBrains reserves the right at any time to cease the support of JetBrains Toolbox and to alter prices, features, specifications, capabilities, functions, licensing terms, release dates, general availability or other characteristics of JetBrains Toolbox.\n\n12.3. Changes to this Agreement. We may update or modify this Agreement from time to time, including any referenced policies and other documents. If a revision meaningfully reduces Your rights, We will use reasonable efforts to notify You (by, for example, sending an email to the billing or technical contact You provide to us, posting on our blog, through Your JetBrains Account, or via the Product itself). If We modify Agreement, the modified version of Agreement will be effective upon the next Toolbox Subscription term. In this case, if You object to the updated Agreement terms, as Your exclusive remedy, You may cancel Toolbox Subscription. You may be required to click through the updated Agreement to show Your acceptance. For the avoidance of doubt, any Subscription Confirmation is subject to the version of the Agreement in effect on the Subscription Confirmation date.\n\n12.4. Severability. If a particular term is not enforceable, the unenforceability of that term will not affect any other terms.\n\n12.5. Headings. Headings and titles are for convenience only and do not affect the interpretation of this Agreement.\n\n12.6. No Waiver. Our failure to enforce or exercise any of this Agreement is not a waiver of that section.\n\n12.7. Governing Law. This Agreement will be governed by the laws of Czech Republic, without regard to conflict of laws principles. Licensee agrees that any litigation relating to this Agreement may only be brought in, and will be subject to the jurisdiction of, any relevant competent court of Czech Republic.\n\n12.8. You declare that You have had sufficient opportunity to review this Agreement, understand the content of all of its clauses, negotiate its terms and seek independent professional legal advice in that respect before entering into it. Consequently, any statutory \"form contracts\" (\"adhesion contracts\") regulations shall not be applicable to this Agreement.\n\n12.9. Notice. JetBrains may deliver any notice to Licensee via electronic mail to an email address provided by Licensee, JetBrains Account, registered mail, personal delivery or renowned express courier (such as DHL, Fedex or UPS). Any such notice will be deemed to be effective (i) on the day the notice is sent to Licensee via email, (ii) upon being uploaded to JetBrains Account (irrespective of when Licensee actually receives it), (iii) upon personal delivery, (iv) one (1) day after deposit by express courier, (v) or five (5) days after deposit in the mail, whichever occurs first.\n\nFor exceptions or modifications to this Agreement, please contact JetBrains at: \n Address: Na hrebenech II 1718/10, Prague, 14700, Czech Republic \n Fax: +420 241 722 540 \n Email: sales@jetbrains.com", + "json": "jetbrains-toolbox-open-source-3.json", + "yaml": "jetbrains-toolbox-open-source-3.yml", + "html": "jetbrains-toolbox-open-source-3.html", + "license": "jetbrains-toolbox-open-source-3.LICENSE" + }, + { + "license_key": "jetty", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jetty", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Jetty License\n$Revision: 584 $\n\nPreamble:\nThe intent of this document is to state the conditions under which the Jetty\nPackage may be copied, such that the Copyright Holder maintains some semblance\nof control over the development of the package, while giving the users of the\npackage the right to use, distribute and make reasonable modifications to the\nPackage in accordance with the goals and ideals of the Open Source concept as\ndescribed at http://www.opensource.org.\n\nIt is the intent of this license to allow commercial usage of the Jetty package,\nso long as the source code is distributed or suitable visible credit given or\nother arrangements made with the copyright holders.\n\nDefinitions:\n* \"Jetty\" refers to the collection of Java classes that are distributed as a\nHTTP server with servlet capabilities and associated utilities.\n\n* \"Package\" refers to the collection of files distributed by the Copyright\nHolder, and derivatives of that collection of files created through textual\nmodification.\n\n* \"Standard Version\" refers to such a Package if it has not been modified,\nor has been modified in accordance with the wishes of the Copyright Holder.\n\n* \"Copyright Holder\" is whoever is named in the copyright or copyrights for\nthe package. Mort Bay Consulting Pty. Ltd. (Australia) is the \"Copyright Holder\" for\nthe Jetty package.\n\n* \"You\" is you, if you're thinking about copying or distributing this\nPackage.\n\n* \"Reasonable copying fee\" is whatever you can justify on the basis of media\ncost, duplication charges, time of people involved, and so on. (You will not be\nrequired to justify it to the Copyright Holder, but only to the computing\ncommunity at large as a market that must bear the fee.)\n\n* \"Freely Available\" means that no fee is charged for the item itself,\nthough there may be fees involved in handling the item. It also means that\nrecipients of the item may redistribute it under the same conditions they\nreceived it.\n\n0. The Jetty Package is Copyright (c) Mort Bay Consulting Pty. Ltd. (Australia)\nand others. Individual files in this package may contain additional copyright\nnotices. The javax.servlet packages are copyright Sun Microsystems Inc.\n\n1. The Standard Version of the Jetty package is available from\nhttp://jetty.mortbay.org.\n\n2. You may make and distribute verbatim copies of the source form of the\nStandard Version of this Package without restriction, provided that you include\nthis license and all of the original copyright notices and associated\ndisclaimers.\n\n3. You may make and distribute verbatim copies of the compiled form of the\nStandard Version of this Package without restriction, provided that you include\nthis license.\n\n4. You may apply bug fixes, portability fixes and other modifications derived\nfrom the Public Domain or from the Copyright Holder. A Package modified in such\na way shall still be considered the Standard Version.\n\n5. You may otherwise modify your copy of this Package in any way, provided that\nyou insert a prominent notice in each changed file stating how and when you\nchanged that file, and provided that you do at least ONE of the following:\n\na) Place your modifications in the Public Domain or otherwise make them\nFreely Available, such as by posting said modifications to Usenet or an\nequivalent medium, or placing the modifications on a major archive site such as\nftp.uu.net, or by allowing the Copyright Holder to include your modifications in\nthe Standard Version of the Package.\n\nb) Use the modified Package only within your corporation or organization.\n\nc) Rename any non-standard classes so the names do not conflict with\nstandard classes, which must also be provided, and provide a separate manual\npage for each non-standard class that clearly documents how it differs from the\nStandard Version.\n\nd) Make other arrangements with the Copyright Holder.\n\n6. You may distribute modifications or subsets of this Package in source code or\ncompiled form, provided that you do at least ONE of the following:\n\na) Distribute this license and all original copyright messages, together\nwith instructions (in the about dialog, manual page or equivalent) on where to\nget the complete Standard Version.\n\nb) Accompany the distribution with the machine-readable source of the\nPackage with your modifications. The modified package must include this license\nand all of the original copyright notices and associated disclaimers, together\nwith instructions on where to get the complete Standard Version.\n\nc) Make other arrangements with the Copyright Holder.\n\n7. You may charge a reasonable copying fee for any distribution of this Package.\nYou may charge any fee you choose for support of this Package. You may not\ncharge a fee for this Package itself. However, you may distribute this Package\nin aggregate with other (possibly commercial) programs as part of a larger\n(possibly commercial) software distribution provided that you meet the other\ndistribution requirements of this license.\n\n8. Input to or the output produced from the programs of this Package do not\nautomatically fall under the copyright of this Package, but belong to whomever\ngenerated them, and may be sold commercially, and may be aggregated with this\nPackage.\n\n9. Any program subroutines supplied by you and linked into this Package shall\nnot be considered part of this Package.\n\n10. The name of the Copyright Holder may not be used to endorse or promote\nproducts derived from this software without specific prior written permission.\n\n11. This license may change with each release of a Standard Version of the\nPackage. You may choose to use the license associated with version you are using\nor the license of the latest Standard Version.\n\n12. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\n13. If any superior law implies a warranty, the sole remedy under such shall be, \nat the Copyright Holders option either \na) return of any price paid or \nb) use or reasonable endeavours to repair or replace the software.\n\n14. This license shall be read under the laws of Australia.\n\nThe End\nThis license was derived from the Artistic license published on\nhttp://www.opensource.com", + "json": "jetty.json", + "yaml": "jetty.yml", + "html": "jetty.html", + "license": "jetty.LICENSE" + }, + { + "license_key": "jetty-ccla-1.1", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-jetty-ccla-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Jetty Project \nCorporate Contributor License Agreement V1.1\nbased on http://www.apache.org/licenses/\n\nThank you for your interest in the Jetty project by Mort Bay Consulting\nPty. Ltd. Australia (\"MortBay\"). In order to clarify the intellectual\nproperty license granted with Contributions from any person or entity,\nMortBay must have a Contributor License Agreement (\"CLA\") that has been\nsigned by each Contributor, indicating agreement to the license terms\nbelow. This license is for your protection as a Contributor as well as\nthe protection of MortBay and its users; it does not change your rights\nto use your own Contributions for any other purpose.\n\nThis version of the Agreement allows an entity (the \"Corporation\") to\nsubmit Contributions to Mort Bay, to authorize Contributions submitted by\nits designated employees to Mort Bay, and to grant copyright and patent\nlicenses thereto.\n\nIf you have not already done so, please complete this agreement and \ncommit it to the Jetty repository at\nsvn+ssh://svn.jetty.codehaus.org/home/projects/jetty/scm/jetty at\nLICENSES/ccla-CORPORATE-NAME.txt. If you do not have commit privilege to the \nrepository, please email the file to eclipse@eclipse.com. If possible, \ndigitally sign the committed file, otherwise send a signed Agreement \nto MortBay.\n\nEach developer covered by this agreement should have their name appended \nthe Schedule A and the copy commited to LICENSES/ccla-CORPORATE-NAME.txt \nusing their authenticated codehaus ssh login. If possible, digitally sign\nthe committed file, otherwise send a signed Agreement to MortBay.\n\nPlease read this document carefully before signing and keep a copy for\nyour records.\n\n Corporation name:\n Mailing Address:\n\n Point of Contact:\n Full name: \n E-Mail: \n Fax:\n\nYou accept and agree to the following terms and conditions for Your\npresent and future Contributions submitted to MortBay. In return,\nMortBay shall not use Your Contributions in a way that is contrary\nto the software license in effect at the time of the Contribution.\nExcept for the license granted herein to MortBay and recipients of\nsoftware distributed by MortBay, You reserve all right, title, and\ninterest in and to Your Contributions.\n\n1. Definitions.\n\n \"You\" (or \"Your\") shall mean the copyright owner or legal entity\n authorized by the copyright owner that is making this Agreement with\n MortBay. For legal entities, the entity making a Contribution and all\n other entities that control, are controlled by, or are under common\n control with that entity are considered to be a single Contributor. For\n the purposes of this definition, \"control\" means (i) the power, direct\n or indirect, to cause the direction or management of such entity,\n whether by contract or otherwise, or (ii) ownership of fifty percent\n (50%) or more of the outstanding shares, or (iii) beneficial ownership\n of such entity.\n\n \"Contribution\" shall mean any original work of authorship,\n including any modifications or additions to an existing work, that\n is intentionally submitted by You to MortBay for inclusion in, or\n documentation of, any of the products owned or managed by MortBay (the\n \"Work\"). For the purposes of this definition, \"submitted\" means any\n form of electronic, verbal, or written communication sent to MortBay\n or its representatives, including but not limited to communication\n on electronic mailing lists, source code control systems, and issue\n tracking systems that are managed by, or on behalf of, MortBay for\n the purpose of discussing and improving the Work, but excluding\n communication that is conspicuously marked or otherwise designated\n in writing by You as \"Not a Contribution.\"\n\n2. Grant of Copyright License. Subject to the terms and conditions\n of this Agreement, You hereby grant to MortBay and to recipients of\n software distributed by MortBay a perpetual, worldwide, non-exclusive,\n no-charge, royalty-free, irrevocable copyright license to reproduce,\n prepare derivative works of, publicly display, publicly perform,\n sublicense, and distribute Your Contributions and such derivative\n works.\n\n3. Grant of Patent License. Subject to the terms and conditions of\n this Agreement, You hereby grant to MortBay and to recipients of\n software distributed by MortBay a perpetual, worldwide, non-exclusive,\n no-charge, royalty-free, irrevocable (except as stated in this section)\n patent license to make, have made, use, offer to sell, sell, import,\n and otherwise transfer the Work, where such license applies only to\n those patent claims licensable by You that are necessarily infringed by\n Your Contribution(s) alone or by combination of Your Contribution(s)\n with the Work to which such Contribution(s) were submitted. If any\n entity institutes patent litigation against You or any other entity\n (including a cross-claim or counterclaim in a lawsuit) alleging\n that your Contribution, or the Work to which you have contributed,\n constitutes direct or contributory patent infringement, then any\n patent licenses granted to that entity under this Agreement for that\n Contribution or Work shall terminate as of the date such litigation\n is filed.\n\n4. You represent that You are legally entitled to grant the above\n license. You represent further that each employee of the Corporation\n designated on Schedule A below (or in a subsequent written modification\n to that Schedule) is authorized to submit Contributions on behalf of\n the Corporation.\n\n5. You represent that each of Your Contributions is Your original creation\n (see section 7 for submissions on behalf of others). You represent\n that Your Contribution submissions include complete details of any\n third-party license or other restriction (including, but not limited\n to, related patents and trademarks) of which you are personally aware\n and which are associated with any part of Your Contributions.\n\n6. You are not expected to provide support for Your Contributions, except\n to the extent You desire to provide support. You may provide support\n for free, for a fee, or not at all. Unless required by applicable\n law or agreed to in writing, You provide Your Contributions on an\n \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n express or implied, including, without limitation, any warranties or\n conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS\n FOR A PARTICULAR PURPOSE.\n\n7. Should You wish to submit work that is not Your original creation,\n You may submit it to MortBay separately from any Contribution,\n identifying the complete details of its source and of any license or\n other restriction (including, but not limited to, related patents,\n trademarks, and license agreements) of which you are personally\n aware, and conspicuously marking the work as \"Submitted on behalf of\n a third-party: [named here]\".\n\n8. It is your responsibility to notify MortBay when any change is required\n to the list of designated employees authorized to submit Contributions\n on behalf of the Corporation, or to the Corporation's Point of Contact\n with MortBay.\n\nDate: \n\nSignature:\n\nName:\n\nPositions:\n\n\n\nSchedule A\n\n Name Date added\n\n ______________________________________ ________________\n\n ______________________________________ ________________\n\n ______________________________________ ________________\n\n ______________________________________ ________________\n\n ______________________________________ ________________\n\n ______________________________________ ________________\n\n ______________________________________ ________________\n\n ______________________________________ ________________\n\n ______________________________________ ________________\n\n ______________________________________ ________________\n\n ______________________________________ ________________\n\n ______________________________________ ________________\n\n ______________________________________ ________________", + "json": "jetty-ccla-1.1.json", + "yaml": "jetty-ccla-1.1.yml", + "html": "jetty-ccla-1.1.html", + "license": "jetty-ccla-1.1.LICENSE" + }, + { + "license_key": "jgraph", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jgraph", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list\nof conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\nNeither the name of JGraph Ltd nor the names of its contributors may be used\nto endorse or promote products derived from this software without specific prior written permission.\n\nTermination for Patent Action. This License shall terminate\nautomatically, as will all licenses assigned to you by the copyright\nholders of this software, and you may no longer exercise any of the\nrights granted to you by this license as of the date you commence an\naction, including a cross-claim or counterclaim, against the\ncopyright holders of this software or any licensee of this software\nalleging that any part of the JGraph, JGraphX and/or mxGraph software\nlibraries infringe a patent. This termination provision shall not\napply for an action alleging patent infringement by combinations of\nthis software with other software or hardware.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "jgraph.json", + "yaml": "jgraph.yml", + "html": "jgraph.html", + "license": "jgraph.LICENSE" + }, + { + "license_key": "jgraph-general", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jgraph-general", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "JGraph General License\n\nJGRAPH GENERAL LICENSE STATEMENT AND LIMITED WARRANTY\nIMPORTANT - READ CAREFULLY\n\nThis license statement and limited warranty constitutes a legal agreement \n(\"License Agreement\") between you (either as an individual or a single entity) \nand JGraph Ltd. for the software product (\"Software\") identified above, \nincluding any software, media, and accompanying on-line or printed \ndocumentation.\n\nBY INSTALLING, COPYING, OR OTHERWISE USING THE SOFTWARE, YOU AGREE TO BE BOUND \nBY ALL OF THE TERMS AND CONDITIONS OF THE LICENSE AGREEMENT.\n\nUpon your acceptance of the terms and conditions of the License Agreement, \nJGraph Ltd. grants you the right to use the Software in the manner provided \nbelow.\n\nThis Software is owned by JGraph Ltd. and is protected by copyright law and \ninternational copyright treaty. Therefore, you must treat this Software like \nany other copyrighted material (e.g., a book), except that you may either make \none copy of the Software solely for backup or archival purposes or transfer the \nSoftware to a single hard disk provided you keep the original solely for backup \nor archival purposes.\n\nYou may transfer the Software and documentation on a permanent basis provided \nyou retain no copies and the recipient agrees to the terms of the License \nAgreement. Except as provided in the License Agreement, you may not transfer, \nrent, lease, lend, copy, modify, translate, sublicense, time-share or \nelectronically transmit or receive the Software, media or documentation.\n\nIf you are not in receipt of the source code of the Software, you acknowledge\nthat the Software is a confidential trade secret of JGraph Ltd. and therefore\nyou agree not to reverse engineer, decompile, or disassemble the Software.\n\nADDITIONAL LICENSE TERMS FOR SOFTWARE\n\nJGraph Ltd. grants to you as an individual, a personal, nonexclusive license \nto install and use the Software for the sole purposes of designing, developing, \ntesting, and deploying application programs which you create. You may install \ncopies of the Software on computers in a manner consistent with the type of \nlicense purchased. A Single Developer License may be installed on a computer \nand be freely moved from one computer to another, providing that you have \npurchased a number of Single Developer Licenses equivalent to the maximum \npossible number of developers using that Software concurrently. A Site \nDeveloper License may be installed on any number of computers and be used by \nany number of developers at any time at one geographical location. A \ngeographical location is defined as a building or site occupied by the \nemployees of one company or organization.\nIf you are an entity, JGraph Ltd. grants you the right to designate \none individual within your organization (\"Named User\") to have the right to use \nthe Software in the manner provided above, in the case of the Single Developer \nLicense.\n\nGENERAL TERMS THAT APPLY TO COMPILED PROGRAMS AND REDISTRIBUTION\n\nYou may write and compile (including byte-code compile) your own application \nprograms using the Software, including any libraries and source code included \nfor such purpose with the Software. You may reproduce and distribute, in \nexecutable form only, programs which you create using the Software and \naccompanying Software libraries without additional license or fees, subject to \nall of the conditions in this License Agreement.\n\nADDITIONAL REDISTRIBUTION TERMS FOR SOFTWARE\n\nYou may not distribute any program or file which includes, is created from, or \notherwise incorporates portions of the Software if such program or file is a \ngeneral purpose development tool, library, and/or component, or is otherwise \ngenerally competitive with or a substitute for any JGraph Ltd. product.\n\nSOURCE CODE\n\nIn addition to the license and rights granted, JGraph Ltd. grants you the\nright to use and modify the SOFTWARE source provided you purchased source code.\n\nYou may not distribute the SOFTWARE source code, or any modified version or \nderivative work of the SOFTWARE source code, in source code form.\n\nThe source code contained herein and in related files is provided to the \nregistered developer for the purposes of education and troubleshooting. Under \nno circumstances may any portion of the source code be distributed, disclosed \nor otherwise made available to any third party without the express written \nconsent of JGraph Ltd. \n\nUnder no circumstances may the source code be used in whole or in part, as the \nbasis for creating a product that provides the same, or substantially the same, \nfunctionality as any JGraph Ltd. product.\n\nThe registered developer acknowledges that this source code contains valuable \nand proprietary trade secrets of JGraph Ltd. The registered developer agrees \nto expend every effort to insure its confidentiality.\n\nSOURCE CODE IS SOLD AS IS. JGRAPH LTD. DOES NOT PROVIDE ANY TECHNICAL SUPPORT \nFOR SOURCE CODE.\n\nMARKETING\n\nJGraph Ltd is permitted to reference you as a user of the Software in customer \nlists on the JGraph web-site, in presentations to clients and at trade events.\n\nLIMITED WARRANTY\n\nJGraph Ltd. warrants that the Software, as updated and when properly used, \nwill perform substantially in accordance with the accompanying documentation, \nand the Software media will be free from defects in materials and workmanship, \nfor a period of ninety (90) days from the date of receipt. Any implied \nwarranties on the Software are limited to ninety (90) days. Some \nstates/jurisdictions do not allow limitations on duration of an implied \nwarranty, so the above limitation may not apply to you.\n\nThis Limited Warranty is void if failure of the Software has resulted from \naccident, abuse, or misapplication. Any replacement Software will be warranted \nfor the remainder of the original warranty period or thirty (30) days, \nwhichever is longer. \n\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, JGRAPH LTD. AND ITS \nSUPPLIERS DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS, EITHER EXPRESS OR \nIMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, \nFITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT, WITH REGARD TO \nTHE SOFTWARE, AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES. THIS \nLIMITED WARRANTY GIVES YOU SPECIFIC LEGAL RIGHTS. YOU MAY HAVE OTHERS, WHICH \nVARY FROM STATE/JURISDICTION TO STATE/JURISDICTION.\n\nLIMITATION OF LIABILITY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN \nNO EVENT SHALL JGRAPH LTD. OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, \nINCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT \nLIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS \nOF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF \nOR INABILITY TO USE THE SOFTWARE PRODUCT OR THE PROVISION OF OR FAILURE TO \nPROVIDE SUPPORT SERVICES, EVEN IF JGRAPH LTD. HAS BEEN ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGES. BECAUSE SOME STATES AND JURISDICTIONS DO NOT \nALLOW THE EXCLUSION OR LIMITATION OF LIABILITY, THE ABOVE LIMITATION MAY NOT \nAPPLY TO YOU.\n\nHIGH RISK ACTIVITIES\n\nThe Software is not fault-tolerant and is not designed, manufactured or \nintended for use or resale as on-line control equipment in hazardous \nenvironments requiring fail-safe performance, such as in the operation of \nnuclear facilities, aircraft navigation or communication systems, air traffic \ncontrol, direct life support machines, or weapons systems, in which the failure \nof the Software could lead directly to death, personal injury, or severe \nphysical or environmental damage (\"High Risk Activities\"). JGraph Ltd. and\nits suppliers specifically disclaim any express or implied warranty of fitness \nfor High Risk Activities.\n\nGENERAL PROVISIONS\n\nThis License Agreement may only be modified in writing signed by you and\nJGraph Ltd. If any provision of this License Agreement is found void or \nunenforceable, the remainder will remain valid and enforceable according to its\nterms. If any remedy provided is determined to have failed for its essential\npurpose, all limitations of liability and exclusions of damages set forth in \nthe Limited Warranty shall remain in effect.\n\nGOVERNING LAW AND JURISDICTION\n\nThis Agreement shall be subject to and governed by the _Law of England and \nWales_. Any dispute arising out of or in connection with this Agreement shall \nbe exclusively dealt with by the courts of England and Wales. This License \nAgreement gives you specific legal rights; you may have others which vary from \nstate to state and from country to country. JGraph Ltd. reserves all rights not \nspecifically granted in this License Agreement.", + "json": "jgraph-general.json", + "yaml": "jgraph-general.yml", + "html": "jgraph-general.html", + "license": "jgraph-general.LICENSE" + }, + { + "license_key": "jide-sla", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-jide-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SOFTWARE LICENSE AGREEMENT FOR JIDE SOFTWARE, INC.'S PRODUCTS\n \nIMPORTANT - READ CAREFULLY: This JIDE Software, Inc. (\"JIDE\") Software License Agreement (\"SLA\") is a legal agreement between you (an individual developer or a company of software applications) and JIDE for the JIDE software product accompanying this SLA, which includes computer software and may include associated source code, media, printed materials, and \"on-line\" or electronic documentation (\"SOFTWARE PRODUCT\"). By installing, copying, or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this SLA. If you do not agree to the terms of this SLA, do not install, use, distribute in any manner, or replicate in any manner, any part, file or portion of the SOFTWARE PRODUCT. \n \nThe SOFTWARE PRODUCT is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The SOFTWARE PRODUCT is licensed, not sold. \n1.\tRIGOROUS ENFORCEMENT OF INTELLECTUAL PROPERTY RIGHTS. If the licensed right of use for this SOFTWARE PRODUCT is purchased by you with any intent to reverse engineer, decompile, create derivative works, and the exploitation or unauthorized transfer of, any JIDE intellectual property and trade secrets, to include any exposed methods or source code where provided, no licensed right of use shall exist, and any products created as a result shall be judged illegal by definition of all applicable law. Any sale or resale of intellectual property or created derivatives so obtained will be prosecuted to the fullest extent of all local, federal and international law. \n2.\tGRANT OF LICENSE. This SLA, if legally executed as defined herein, licenses and so grants you the following rights: \nA.\tSingle Developer License. Single Developer License allows an individual developer to use APIs (\"Application Programming Interface\") provided by SOFTWARE PRODUCT in any number of projects that he or she is working on. A Single Developer License for the SOFTWARE PRODUCT may not be shared or used by more than one individual developer. In a project that uses the SOFTWARE PRODUCT, each individual developer on the project requires a separate Single Developer License as long as they need to write code using JIDE API. \nB.\tSource Code License. In addition to the license and rights granted above, JIDE grants you the right to use and modify the JIDE source provided you licensed source code. Different from developer license, source code license is licensed to a team. Each team only needs to purchase one copy of source code license and share it among those developers who have their own Single Developer License.\nI.\tJIDE shall retain all right, title and interest in and to all updates, modifications, enhancements and derivative works, in whole or in part, of the JIDE Source Code created by you, including all copyrights subsisting therein, to the extent such modifications, enhancements or derivative works contain copyrightable code or expression derived from the JIDE source code; provided, however, that JIDE grants to you a fully-paid, royalty free license, to use copy and modify such updates, modifications, enhancements and derivative works or copies thereof for use as authorized in this LICENSE. \nII.\tYou may not distribute the JIDE source code, or any modified version or derivative work of the JIDE source code, in source code form. \nIII.\tJIDE require all developers in your project who plan to access JIDE source code signing on the source code license. As long as they signed, they become registered developers. An alternative to this is to let a delegate signs source code license as an organization. The delegate will be responsible for letting other developers who plan to access the source code reviewing this license agreement first before releasing them the access. \nIV.\tThe source code contained herein and in related files is provided to the registered developer for the purposes of education and troubleshooting. Under no circumstances may any portion of the source code be distributed, disclosed or otherwise made available to any third party without the express written consent of JIDE. \nV.\tUnder no circumstances may the source code be used in whole or in part, as the basis for creating a product that provides the same, or substantially the same, functionality as any JIDE products. \nVI.\tThe registered developer acknowledges that this source code contains valuable and proprietary trade secrets of JIDE. The registered developer agrees to expend every effort to insure its confidentiality. For example, under no circumstances may the registered developer allow to put the source code on an internal network where he or she has no control.\nVII.\tDue to the insecurity of Java byte-code, if you plan to use classes that built from the source code directly, you must agree to obfuscate the classes before distributing it to your customers. \nVIII.\tSOURCE CODE IS SOLD AS IS. JIDE DOES NOT PROVIDE ANY TECHNICAL SUPPORT FOR SOURCE CODE. \nC.\tAnnual Maintenance Renewal. Maintenance includes both technical support and product updates. The initial purchase of Single Developer License includes three month maintenance for free. After that period, you need to purchase Annual Maintenance Renewal in order to continue receiving technical support, product updates.\nD.\tDeployment License. There is no deployment license fee unless the number of your application deployments is larger than 1000 times of the number of developer licenses you purchased and you are unwilling to acknowledge using JIDE. You can acknowledge using JIDE by showing JIDE name and/or logo in about dialog, or splash screen or including this SLA in a license folder of your product release where has the licenses for all 3rd party libraries you are using or any other places where users can easily notice. If you are unwilling to acknowledge using JIDE, a one-time, perpetual deployment license fee will be applicable.\n3.\tDESCRIPTION OF OTHER RIGHTS AND LIMITATIONS. \n .\tNot for Resale Software. The SOFTWARE PRODUCT is labeled and provided as \"Not for Resale\" or \"NFR\", then, notwithstanding other sections of this SLA, you may not resell, distribute, or otherwise transfer for value or benefit in any manner, the SOFTWARE PRODUCT or any derivative work using the SOFTWARE PRODUCT. You may not transfer, rent, lease, lend, copy, modify, translate, sublicense, time-share or electronically transmit the SOFTWARE PRODUCT, media or documentation. This also applies to any and all intermediate files, source code, and compiled executables. \nA.\tExpose APIs. The SOFTWARE PRODUCT is a software library. The exposed APIs is intended to be used by the licensed developers only. If such an exposing of APIs is unavoidable in your application or intended due to the nature of your application, please contact JIDE for a special agreement and is subject to extra charge to get such permission. Exposing the APIs to non-licensed developers without JIDE permission is strictly prohibited.\nB.\tLimitations on Reverse Engineering, Decompilation, and Disassembly. You may not reverse engineer, decompile, create derivative works, modify, translate, or disassemble the SOFTWARE PRODUCT, and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation. You agree to take all reasonable, legal and appropriate measures to prohibit the illegal dissemination of the SOFTWARE PRODUCT or any of its constituent parts and redistributables to the fullest extent of all applicable local, US Codes and International Laws and Treaties regarding anti-circumvention, including but not limited to, the Geneva and Berne World Intellectual Property Organization (WIPO) Diplomatic Conferences. \nC.\tRental. You may not rent, lease, or lend the SOFTWARE PRODUCT. \nD.\tSeparation of Components, Their Constituent Parts and Redistributables. The SOFTWARE PRODUCT is licensed as a single product. The SOFTWARE PRODUCT and its constituent parts and any provided redistributables may not be reverse engineered, decompiled, disassembled, nor placed for distribution, sale, or resale as individual creations by you or any individual not expressly given such permission by JIDE. The provision of source code, if included with the SOFTWARE PRODUCT, does not constitute transfer of any legal rights to such code, and resale or distribution of all or any portion of all source code and intellectual property will be prosecuted to the fullest extent of all applicable local, federal and international laws. All JIDE libraries, source code, redistributables and other files remain JIDE's exclusive property. You may not distribute any files, except those that JIDE has expressly designated as Redistributable. \nThe SOFTWARE PRODUCT may include certain files (\"Redistributables\") intended for distribution by you to the users of programs you create. Redistributables include jar file (or class files if you intend to package all JIDE classes into your own jar). Developer Guide of SOFTWARE PRODUCT (if any) or any other documents (such as javadoc) which are intended to teach you how to use the SOFTWARE PRODUCT, and sample code are not considered as redistributables. Subject to all of the terms and conditions in this SLA, you may reproduce and distribute exact copies of the Redistributables, provided that such copies are made from the original copy of the SOFTWARE PRODUCT or the copy transferred to a hard disk. Copies of Redistributables may only be distributed with and for the sole purpose of executing application programs permitted under this SLA that you have created using the SOFTWARE PRODUCT. You may reformat or recombine the original distribution format of redistributables provided by JIDE. However JIDE will not support or have any liability for such use. \nE.\tInstallation and Use. The license granted in this SLA for you to create your own compiled programs and distribute your programs and the Redistributables (if any), is subject to all of the following conditions: \nI.\tAll copies of the programs you create must bear a valid copyright notice, either your own or the JIDE copyright notice that appears on the SOFTWARE PRODUCT. \nII.\tYou may not remove or alter any JIDE copyright, trademark or other proprietary rights notice contained in any portion of JIDE libraries, source code, Redistributables or other files that bear such a notice. \nIII.\tJIDE provides no warranty at all to any person, and you will remain solely responsible to anyone receiving your programs for support, service, upgrades, or technical or other assistance, and such recipients will have no right to contact JIDE for such services or assistance. \nIV.\tYour programs containing the SOFTWARE PRODUCT must be written using a licensed, registered copy of the SOFTWARE PRODUCT. \nV.\tYour programs must add primary and substantial functionality, and may not be merely a set or subset of any of the libraries, code, Redistributables or other files of the SOFTWARE PRODUCT. \nA.\tSupport Services. JIDE may provide you with support services related to the SOFTWARE PRODUCT (\"Support Services\"). Use of Support Services is governed by JIDE policies and programs described in the user manual, in on-line documentation and/or other JIDE provided materials. Any supplemental software code provided to you as part of the Support Services shall be considered part of the SOFTWARE PRODUCT and subject to the terms and conditions of this SLA. With respect to technical information you provide to JIDE as part of the Support Services, JIDE may use such information for its business purposes, including for product support and development. \nB.\tSoftware Transfer. You may NOT permanently or temporarily transfer ANY of your rights under this SLA to any individual or entity. Regardless of any modifications which you make and regardless of how you might compile, link, and/or package your programs, under no circumstances may the libraries, redistributables, and/or other files of the SOFTWARE PRODUCT (including any portions thereof) be used for developing programs by anyone other than you. Only you as the licensed end user have the right to use the libraries, redistributables, or other files of the SOFTWARE PRODUCT (or any portions thereof) for developing programs created with the SOFTWARE PRODUCT. In particular, you may not share copies of the Redistributables with other co-developers. If you leave the company or go to another group where JIDE is no longer used, you may transfer the license to another developer within the team. After the transfer, you are no longer allowed to use SOFTWARE PRODUCT. \nC.\tTermination. Without prejudice to any other rights or remedies, JIDE will terminate this SLA upon your failure to comply with all the terms and conditions of this SLA. In such event, you must destroy all copies of the SOFTWARE PRODUCT and all of its component parts including any related documentation, and must remove ANY and ALL use of such technology with the next generally available release from any applications using technology contained in the SOFTWARE PRODUCT developed by you, whether in native, altered or compiled state. \nD.\tTime Limitation: There is no time limitation on using the SOFTWARE PRODUCT as long as you don't violate this license agreement.\n4.\tUPGRADES. If the SOFTWARE PRODUCT is labeled as an upgrade, you must be properly licensed to use the SOFTWARE PRODUCT identified by JIDE as being eligible for the upgrade in order to use the SOFTWARE PRODUCT. A SOFTWARE PRODUCT labeled as an upgrade replaces and/or supplements the SOFTWARE PRODUCT that formed the basis for your eligibility for the upgrade, and together constitute a single SOFTWARE PRODUCT. You may use the resulting upgraded SOFTWARE PRODUCT only in accordance with all the terms of this SLA. \n5.\tCOPYRIGHT. All title and copyrights in and to the SOFTWARE PRODUCT (including but not limited to any images, demos, source code, intermediate files, packages, photographs, animations, video, audio, music, text, and \"applets\" incorporated into the SOFTWARE PRODUCT), the accompanying printed materials, and any copies of the SOFTWARE PRODUCT are owned by JIDE or its subsidiaries. The SOFTWARE PRODUCT is protected by copyright laws and international treaty provisions. Therefore, you must treat the SOFTWARE PRODUCT like any other copyrighted material except that you may install the SOFTWARE PRODUCT for use by you, a single developer. You may not copy any printed materials accompanying the SOFTWARE PRODUCT. \n6.\tGENERAL PROVISIONS. This SLA may only be modified in writing signed by you and an authorized officer of JIDE. If any provision of this SLA is found void or unenforceable, the remainder will remain valid and enforceable according to its terms. \n7.\tMISCELLANEOUS. If you acquired this product in the United States, this SLA is governed by the laws of the State of CA. \nIf this SOFTWARE PRODUCT was acquired outside the United States, then you, agree and ascend to the adherence to all applicable international treaties regarding copyright and intellectual property rights which shall also apply. In addition, you agree that any local law(s) to the benefit and protection of JIDE ownership of, and interest in, its intellectual property and right of recovery for damages thereto will also apply. \nShould you have any questions concerning this SLA, or if you desire to contact JIDE for any reason, please contact us via our support web pages at http://www.jidesoft.com/. \n8.\tNO WARRANTIES. JIDE EXPRESSLY DISCLAIMS ANY WARRANTY FOR THE SOFTWARE PRODUCT. THE PRODUCT AND ANY RELATED DOCUMENTATION IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. THE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE PRODUCT REMAINS WITH YOU. \n9.\tLIMITATION OF LIABILITY. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL JIDE OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, ANY OTHER PECUNIARY LOSS, ATTORNEY FEES AND COURT COSTS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE PRODUCT OR THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES, EVEN IF JIDE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \n\nFor CUSTOMER\t For JIDE Software, Inc.\n\t\nSignature:\t Signature:\nName\t Name:\nTitle:\t Title:\nDate:\t Date:", + "json": "jide-sla.json", + "yaml": "jide-sla.yml", + "html": "jide-sla.html", + "license": "jide-sla.LICENSE" + }, + { + "license_key": "jj2000", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-jj2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software module was originally developed by Rapha\u00ebl Grosbois and\nDiego Santa Cruz (Swiss Federal Institute of Technology-EPFL); Joel\nAskel\u00f6f (Ericsson Radio Systems AB); and Bertrand Berthelot, David\nBouchard, F\u00e9lix Henry, Gerard Mozelle and Patrice Onno (Canon Research\nCentre France S.A) in the course of development of the JPEG2000\nstandard as specified by ISO/IEC 15444 (JPEG 2000 Standard). \n\nThis software module is an implementation of a part of the JPEG 2000 Standard. \n\nSwiss Federal Institute of Technology-EPFL, Ericsson Radio\nSystems AB and Canon Research Centre France S.A (collectively JJ2000\nPartners) agree not to assert against ISO/IEC and users of the JPEG\n2000 Standard (Users) any of their rights under the copyright, not\nincluding other intellectual property rights, for this software module\nwith respect to the usage by ISO/IEC and Users of this software module\nor modifications thereof for use in hardware or software products\nclaiming conformance to the JPEG 2000 Standard. Those intending to use\nthis software module in hardware or software products are advised that\ntheir use may infringe existing patents. The original developers of\nthis software module, JJ2000 Partners and ISO/IEC assume no liability\nfor use of this software module or modifications thereof. No license\nor right to this software module is granted for non JPEG 2000 Standard\nconforming products. JJ2000 Partners have full right to use this\nsoftware module for his/her own purpose, assign or donate this\nsoftware module to any third party and to inhibit third parties from\nusing this software module for non JPEG 2000 Standard conforming\nproducts. This copyright notice must be included in all copies or\nderivative works of this software module.", + "json": "jj2000.json", + "yaml": "jj2000.yml", + "html": "jj2000.html", + "license": "jj2000.LICENSE" + }, + { + "license_key": "jmagnetic", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jmagnetic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "JMAGNETIC Licence Agreement\n\nThis is a legal agreement between you and Stefan Meier covering your use of JMagnetic. Be sure to read the following agreement before using the software. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE AND DESTROY ALL COPIES OF IT.\n\nThe JMagnetic application, the JMagnetic class package, all accompanying documentation and source code (collectively referred to as \"the JMagnetic Software\") are copyright (c) 1998-99, Stefan Meier. The JMagnetic Software may be redistributed freely under the following conditions:\n(1) That no profit is made from the sale or distribution of the JMagnetic Software\n(2) That the source code of the JMagnetic Software, or any portion thereof, not be modified in any way or incorporated into any other software without pemission. \n(3) That this legal statement be distributed unmodified with the JMagnetic Software, and that Stefan Meier be credited for its authorship.\nWith that said, anyone who wishes to include any of my code in their own or who wishes to base a new application on this code is encouraged to contact me. Commercial usage or redistribution of the JMagnetic software is strictly prohibited. Inquiries on commercial distribution of Magnetic Scrolls related products should be directly send to Ken Gordon.\n\nThe JMagnetic software and related documentation are provided \"AS IS\" and without warranty of any kind and the author expressly disclaims all other warranties, express or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. Under no circumstances shall Stefan Meier be liable for any incidental, special or consequential damages that result from the use or inability to use the software or related documentation, even if Stefan Meier has been advised of the possibility of such damages.", + "json": "jmagnetic.json", + "yaml": "jmagnetic.yml", + "html": "jmagnetic.html", + "license": "jmagnetic.LICENSE" + }, + { + "license_key": "josl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-josl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Jabber Open Source License\nVersion 1.0\n\nThis Jabber Open Source License (the \"License\") applies to Jabber Server and related software products as well as any updates or maintenance releases of that software (\"Jabber Products\") that are distributed by Jabber.Com, Inc. (\"Licensor\"). Any Jabber Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product.\n\nPreamble\n\nThis Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble.\n\nThis License complies with the Open Source Definition and has been approved by Open Source Initiative. Software distributed under this License may be marked as \"OSI Certified Open Source Software.\"\n\nThis License provides that:\n\n1. You may use, sell or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required.\n\n2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms \"Licensed Product,\" \"Modifications,\" \"Contributors\" and \"Source Code\" are defined in the License.)\n\n3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term \"Derivative Works\" is defined in the License.)\n\n4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others.\n\n5. You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages.\n\n6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for the Source Code.\n\n7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate.\n\nYou may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product.\n\nAlternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.\n\nNew versions of this License may be published from time to time. You may choose to continue to use the license terms in this version of the License or those from the new version. However, only the Licensor has the right to change the License terms as they apply to the Licensed Product.\n\nThis License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License.\n\nLicense Terms\n\n1. Grant of License From Licensor. Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\n\na. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\n\n2. Grant of License to Modifications From Contributor. \"Modifications\" means any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. Hereinafter in this License, the term \"Licensed Product\" shall include all previous Modifications that you receive from any Contributor. By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a \"Contributor\") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\nUse, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\nUnder claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\n3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein.No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license.\n\n4. Your Obligations Regarding Distribution.\n\na. Application of This License to Your Modifications.As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder.However, you may include an additional document offering the additional rights described in Section 4(e).\n\nb. Availability of Source Code. You must make available, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an \"Electronic Distribution Mechanism\"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of said Licensed Product or Modifications has been made available. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\nc. Description of Modifications. You must cause any Modifications that you create or to which you contribute, and which you distribute, to contain a file documenting the additions, changes or deletions you made to create or contribute to those Modifications, and the dates of any such additions, changes or deletions. You must include a prominent statement that the Modifications are derived, directly or indirectly, from the Licensed Product and include the names of the Licensor and any Contributor to the Licensed Product in (i) the Source Code and (ii) in any notice displayed by a version of the Licensed Product you distribute or in related documentation in which you describe the origin or ownership of the Licensed Product.You may not modify or delete any preexisting copyright notices in the Licensed Product.\n\nd. Intellectual Property Matters.\n\n i. Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled \"LEGAL\" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained.\n\n ii. Contributor APIs. If your Modifications include an application programming interface (\"API\") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file.\n\n iii. Representations. You represent that, except as disclosed pursuant to 4(d)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License.\n\ne. Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the \"Notice\") in each file of the Source Code of any copy you distribute of the Licensed Product.If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product.However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer.\n\nf. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(e) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), (iii) you retain all existing copyright notices in the Licensed Product, and (iv) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.\n\ng. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto.\n\n5. Inability to Comply Due to Statute or Regulation.If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect.Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it.\n\n6. Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference.\n\n7. Versions of This License.\n\na. New Versions. Licensor may publish from time to time revised and/or new versions of the License.\n\nb. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version. You may also choose to use such Licensed Product under the terms of any subsequent version of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License.\n\nc. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor.\n\n8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE.NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n9. Termination.\n\na. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within thirty (30) days of becoming aware of the breach. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive.\n\nb. Termination Upon Assertion of Patent Infringement.If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the \"Notice Period\") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period.\n\nc. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license.\n\nd. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination.\n\n10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\n12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein.\n\n13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that any litigation relating to this license shall be subject to the jurisdiction of the Federal Courts of the Northern District of California or the Superior Court of the County of Santa Clara, California (as appropriate), with venue lying in Santa Clara County, California, with the losing party responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. You and Licensor expressly waive any rights to a jury trial in any litigation concerning Licensed Product or this License. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n14. Definition of You in This License.You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, control means (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.\n\n15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses.\n\nContributor:Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2)\n\nDerivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b))\n\nLicense:This Jabber Open Source License. (See first paragraph of License)\n\nLicensed Product:Any Jabber Product licensed pursuant to this License. The term \"Licensed Product\" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)\n\nLicensor:Jabber.Com, Inc. (See first paragraph of License)\n\nLicensed Product:Any Jabber Product licensed pursuant to this License. The term \"Licensed Product\" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)\n\nLicensor:Jabber.Com, Inc. (See first paragraph of License)\n\nModifications:Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2)\n\nNotice:The notice contained in Exhibit A. (See Section 4(e))\n\nSource Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a))\n\nYou:This term is defined in Section 14 of this License.\n\nEXHIBIT A\n\nThe Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any nereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions.\n\nLicense:\n\nThe contents of this file are subject to the Jabber Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.jabber.com/license/ or at http://www.opensource.org/.\n\nSoftware distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.\n\nCopyrights:\n\nPortions created by or assigned to Jabber.com, Inc. are Copyright (c) 1999-2000 Jabber.com, Inc. All Rights Reserved. Contact information for Jabber.com, Inc. is available at http://www.jabber.com/.\n\nPortions Copyright (c) 1998-1999 Jeremie Miller.\n\nAcknowledgements\n\nSpecial thanks to the Jabber Open Source Contributors for their suggestions and support of Jabber.\n\nModifications:", + "json": "josl-1.0.json", + "yaml": "josl-1.0.yml", + "html": "josl-1.0.html", + "license": "josl-1.0.LICENSE" + }, + { + "license_key": "jpnic-idnkit", + "category": "Permissive", + "spdx_license_key": "JPNIC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "By using this file, you agree to the terms and conditions set forth bellow.\n\n LICENSE TERMS AND CONDITIONS \n\nThe following License Terms and Conditions apply, unless a different\nlicense is obtained from Japan Network Information Center (\"JPNIC\"),\na Japanese association, Kokusai-Kougyou-Kanda Bldg 6F, 2-3-4 Uchi-Kanda,\nChiyoda-ku, Tokyo 101-0047, Japan.\n\n1. Use, Modification and Redistribution (including distribution of any\n modified or derived work) in source and/or binary forms is permitted\n under this License Terms and Conditions.\n\n2. Redistribution of source code must retain the copyright notices as they\n appear in each source code file, this License Terms and Conditions.\n\n3. Redistribution in binary form must reproduce the Copyright Notice,\n this License Terms and Conditions, in the documentation and/or other\n materials provided with the distribution. For the purposes of binary\n distribution the \"Copyright Notice\" refers to the following language:\n \"Copyright (c) 2000-2002 Japan Network Information Center. All rights\n reserved.\"\n\n4. The name of JPNIC may not be used to endorse or promote products\n derived from this Software without specific prior written approval of\n JPNIC.\n\n5. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY JPNIC\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JPNIC BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.", + "json": "jpnic-idnkit.json", + "yaml": "jpnic-idnkit.yml", + "html": "jpnic-idnkit.html", + "license": "jpnic-idnkit.LICENSE" + }, + { + "license_key": "jpnic-mdnkit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jpnic-mdnkit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "By using this file, you agree to the terms and conditions set forth bellow.\n\n\t\t\tLICENSE TERMS AND CONDITIONS \n\nThe following License Terms and Conditions apply, unless a different\nlicense is obtained from Japan Network Information Center (\"JPNIC\"),\na Japanese association, Kokusai-Kougyou-Kanda Bldg 6F, 2-3-4 Uchi-Kanda,\nChiyoda-ku, Tokyo 101-0047, Japan.\n\n1. Use, Modification and Redistribution (including distribution of any\n modified or derived work) in source and/or binary forms is permitted\n under this License Terms and Conditions.\n\n2. Redistribution of source code must retain the copyright notices as they\n appear in each source code file, this License Terms and Conditions.\n\n3. Redistribution in binary form must reproduce the Copyright Notice,\n this License Terms and Conditions, in the documentation and/or other\n materials provided with the distribution. For the purposes of binary\n distribution the \"Copyright Notice\" refers to the following language:\n \"Copyright (c) Japan Network Information Center. All rights reserved.\"\n\n4. Neither the name of JPNIC may be used to endorse or promote products\n derived from this Software without specific prior written approval of\n JPNIC.\n\n5. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY JPNIC\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JPNIC BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n6. Indemnification by Licensee\n Any person or entities using and/or redistributing this Software under\n this License Terms and Conditions shall defend indemnify and hold\n harmless JPNIC from and against any and all judgements damages,\n expenses, settlement liabilities, cost and other liabilities of any\n kind as a result of use and redistribution of this Software or any\n claim, suite, action, litigation or proceeding by any third party\n arising out of or relates to this License Terms and Conditions.\n\n7. Governing Law, Jurisdiction and Venue\n This License Terms and Conditions shall be governed by and and\n construed in accordance with the law of Japan. Any person or entities\n using and/or redistributing this Software under this License Terms and\n Conditions hereby agrees and consent to the personal and exclusive\n jurisdiction and venue of Tokyo District Court of Japan.", + "json": "jpnic-mdnkit.json", + "yaml": "jpnic-mdnkit.yml", + "html": "jpnic-mdnkit.html", + "license": "jpnic-mdnkit.LICENSE" + }, + { + "license_key": "jprs-oscl-1.1", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-jprs-oscl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " TERMS AND CONDITIONS\n FOR\n OPEN SOURCE CODE LICENSE\n Version 1.1\n\nJapan Registry Services Co., Ltd. (\"JPRS\"), a Japanese corporation\nhaving its head office at Chiyoda First Bldg. East 13F 3-8-1 Nishi-Kanda,\nChiyoda-ku, Tokyo 101-0065, Japan, grants you the license for open source\ncode specified in EXHIBIT A the \"Code\" subject to the following Terms and\nConditions (\"OSCL\").\n\n1. License Grant.\n JPRS hereby grants you a worldwide, royalty-free, non-exclusive\n license, subject to third party intellectual property claims:\n (a) under intellectual property rights (other than patent or\n trademark) licensable by JPRS to use, reproduce, modify, display,\n perform, sublicense and distribute the Code (or portions thereof)\n with or without modifications, and/or as part of a derivative work;\n or\n (b) under claims of the infringement through the making, using,\n offering to sell and/or otherwise disposing the JPRS Revised Code\n (or portions thereof);\n (c) the licenses granted in this Section 1(a) and (b) are effective on\n the date JPRS first distributes the Code to you under the terms of\n this OSCL;\n (d) Notwithstanding the above stated terms, no patent license is\n granted:\n 1) for a code that you delete from the Code;\n 2) separate from the Code; or\n 3) for infringements caused by:\n i) modification of the Code; or\n ii) combination of the Code with other software or devices.\n\n2. Consents.\n You agree that:\n (a) you must include a copy of this OSCL and the notice set forth in\n EXHIBIT A with every copy of the Code you distribute;\n (b) you must include a copy of this OSCL and the notice set forth in\n EXHIBIT A with every copy of binary form of the Code in the\n documentation and/or other materials provided with the distribution;\n (c) you may not offer or impose any terms on any source code version\n that alters or restricts the applicable version of this OSCL or\n the recipients' rights hereunder.\n (d) If the terms and conditions are set forth in EXHIBIT A, you must\n comply with those terms and conditions.\n\n3. Proprietary Information.\n All trademarks, service marks, patents, copyrights, trade secrets, and\n other proprietary rights in or related to the Code are and will remain\n the exclusive property of JPRS or its licensors, whether or not\n specifically recognized or perfected under local law except specified\n in this OSCL; provided however you agree and understand that the JPRS\n name may not be used to endorse or promote this Code without prior\n written approval of JPRS.\n\n4. WARRANTY DISCLAIMER.\n JPRS MAKES NO REPRESENTATIONS AND WARRANTIES REGARDING THE USE OF THE\n CODE, NOR DOES JPRS MAKE ANY REPRESENTATIONS THAT THE CODE WILL BECOME\n COMMERCIALLY AVAILABLE. JPRS, ITS AFFILIATES, AND ITS SUPPLIERS DO NOT\n WARRANT OR REPRESENT THAT THE CODE IS FREE OF ERRORS OR THAT THE CODE\n IS SUITABLE FOR TRANSLATION AND/OR LOCALIZATION. THE CODE IS PROVIDED\n ON AN \"AS IS\" BASIS AND JPRS AND ITS SUPPLIERS HAVE NO OBLIGATION TO\n CORRECT ERRORS OR TO SUPPORT THE CODE UNDER THIS OSCL FOR ANY REASON.\n TO THE FULL EXTENT PERMITTED BY LAW, ALL OBLIGATIONS ARE HEREBY\n EXCLUDED WHETHER EXPRESS, STATUTORY OR IMPLIED UNDER LAW, COURSE OF\n DEALING, CUSTOM, TRADE USAGE, ORAL OR WRITTEN STATEMENT OR OTHERWISE,\n INCLUDING BUT NOT LIMITED TO ANY IMPLIED WARRANTIES OF MERCHANTABILITY\n OR FITNESS FOR A PARTICULAR PURPOSE CONCERNING THE CODE.\n\n5. NO LIABILITY.\n UNDER NO CIRCUMSTANCES SHALL JPRS AND/OR ITS AFFILIATES, LICENSORS, OR\n REPRESENTATIVES BE LIABLE FOR ANY DAMAGES INCLUDING BUT NOT LIMITED TO\n CONSEQUENTIAL, INDIRECT, SPECIAL, PUNITIVE OR INCIDENTAL DAMAGES,\n WHETHER FORESEEABLE OR UNFORESEEABLE, BASED ON YOUR CLAIMS, INCLUDING,\n BUT NOT LIMITED TO, CLAIMS FOR LOSS OF DATA, GOODWILL, PROFITS, USE OF\n MONEY, INTERRUPTION IN USE OR AVAILABILITY OF DATA, STOPPAGE, IMPLIED\n WARRANTY, BREACH OF CONTRACT, MISREPRESENTATION, NEGLIGENCE, STRICT\n LIABILITY IN TORT, OR OTHERWISE.\n\n6. Indemnification.\n You hereby agree to indemnify, defend, and hold harmless JPRS for any\n liability incurred by JRPS due to your terms of warranty, support,\n indemnity, or liability offered by you to any third party.\n\n7. Termination.\n7.1 This OSCL shall be automatically terminated in the events that:\n (a) You fail to comply with the terms herein and fail to cure such\n breach within 30 days of becoming aware of the breach;\n (b) You initiate patent or copyright infringement litigation against\n any party (including a cross-claim or counterclaim in a lawsuit)\n alleging that the Code constitutes a direct or indirect patent or\n copyright infringement, in such case, this OSCL to you shall\n terminate as of the date such litigation is filed;\n7.2 In the event of termination under Sections 7.1(a) or 7.1(b) above,\n all end user license agreements (excluding distributors and\n resellers) which have been validly granted by You or any distributor\n hereunder prior to termination shall survive termination.\n\n\n8. General.\n This OSCL shall be governed by, and construed and enforced in\n accordance with, the laws of Japan. Any litigation or arbitration\n between the parties shall be conducted exclusively in Tokyo, Japan\n except written consent of JPRS provides other venue.\n\n\n EXHIBIT A\n\nThe original open source code of idnkit-2 is idnkit-1.0 developed and\nconceived by Japan Network Information Center (\"JPNIC\"), a Japanese\nassociation, Kokusai-Kougyou-Kanda Bldg 6F, 2-3-4 Uchi-Kanda,\nChiyoda-ku, Tokyo 101-0047, Japan, and JPRS modifies above original code\nunder following Terms and Conditions set forth by JPNIC.\n\n JPNIC\n\nCopyright (c) 2000-2002 Japan Network Information Center. All rights reserved.\n\nBy using this file, you agree to the terms and conditions set forth bellow.\n\n LICENSE TERMS AND CONDITIONS\n\nThe following License Terms and Conditions apply, unless a different\nlicense is obtained from Japan Network Information Center (\"JPNIC\"),\na Japanese association, Kokusai-Kougyou-Kanda Bldg 6F, 2-3-4 Uchi-Kanda,\nChiyoda-ku, Tokyo 101-0047, Japan.\n\n1. Use, Modification and Redistribution (including distribution of any\n modified or derived work) in source and/or binary forms is permitted\n under this License Terms and Conditions.\n\n2. Redistribution of source code must retain the copyright notices as they\n appear in each source code file, this License Terms and Conditions.\n\n3. Redistribution in binary form must reproduce the Copyright Notice,\n this License Terms and Conditions, in the documentation and/or other\n materials provided with the distribution. For the purposes of binary\n distribution the \"Copyright Notice\" refers to the following language:\n \"Copyright (c) 2000-2002 Japan Network Information Center. All rights reserved.\"\n\n4. The name of JPNIC may not be used to endorse or promote products\n derived from this Software without specific prior written approval of\n JPNIC.\n\n5. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY JPNIC\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JPNIC BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n\n JPRS Public License Notice\n For\n idnkit-2.\n\nThe contents of this file are subject to the Terms and Conditions for\nthe Open Source Code License (the \"OSCL\"). You may not use this file\nexcept in compliance with above terms and conditions. A copy of the OSCL\nis available at .\nThe JPRS Revised Code is idnkit-2.\nThe Initial Developer of the JPRS Revised Code is Japan Network\nInformation Center (\"JPNIC\"), a Japanese association,\nKokusai-Kougyou-Kanda Bldg 6F, 2-3-4 Uchi-Kanda, Chiyoda-ku, Tokyo\n101-0047, Japan.\n\"Copyright (c) 2000-2002 Japan Network Information Center. All rights reserved.\"\n\"Copyright (c) 2010-2012 Japan Registry Services Co., Ltd. All rights reserved.\"\nContributor(s): ______________________________________.\n\nIf you wish to allow use of your version of this file only under the\nabove License(s) and not to allow others to use your version of this\nfile, please indicate your decision by deleting the relevant provisions\nabove and replacing them with the notice and other provisions required\nby the above License(s). If you do not delete the relevant provisions,\na recipient may use your version of this file under either the above\nLicense(s).", + "json": "jprs-oscl-1.1.json", + "yaml": "jprs-oscl-1.1.yml", + "html": "jprs-oscl-1.1.html", + "license": "jprs-oscl-1.1.LICENSE" + }, + { + "license_key": "jpython-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jpython-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "JPython version 1.1.x\n \n 1. This LICENSE AGREEMENT is between the Corporation for National Research\n Initiatives, having an office at 1895 Preston White Drive, Reston, VA\n 20191 (\"CNRI\"), and the Individual or Organization (\"Licensee\")\n accessing and using JPython version 1.1.x in source or binary form and\n its associated documentation as provided herein (\"Software\").\n \n 2. Subject to the terms and conditions of this License Agreement, CNRI\n hereby grants Licensee a non-exclusive, non-transferable, royalty-free,\n world-wide license to reproduce, analyze, test, perform and/or display\n publicly, prepare derivative works, distribute, and otherwise use the\n Software alone or in any derivative version, provided, however, that\n CNRI's License Agreement and CNRI's notice of copyright, i.e.,\n \"Copyright (c) 1996-1999 Corporation for National Research Initiatives;\n All Rights Reserved\" are both retained in the Software, alone or in any\n derivative version prepared by Licensee.\n \n Alternatively, in lieu of CNRI's License Agreement, Licensee may\n substitute the following text (omitting the quotes), provided, however,\n that such text is displayed prominently in the Software alone or in any\n derivative version prepared by Licensee: \"JPython (Version 1.1.x) is\n made available subject to the terms and conditions in CNRI's License\n Agreement. This Agreement may be located on the Internet using the\n following unique, persistent identifier (known as a handle):\n 1895.22/1006. The License may also be obtained from a proxy server on\n the Web using the following URL: http://hdl.handle.net/1895.22/1006.\"\n \n 3. In the event Licensee prepares a derivative work that is based on or\n incorporates the Software or any part thereof, and wants to make the\n derivative work available to the public as provided herein, then\n Licensee hereby agrees to indicate in any such work, in a prominently\n visible way, the nature of the modifications made to CNRI's Software.\n \n 4. Licensee may not use CNRI trademarks or trade name, including JPython\n or CNRI, in a trademark sense to endorse or promote products or\n services of Licensee, or any third party. Licensee may use the mark\n JPython in connection with Licensee's derivative versions that are\n based on or incorporate the Software, but only in the form\n \"JPython-based ,\" or equivalent.\n \n 5. CNRI is making the Software available to Licensee on an \"AS IS\" basis.\n CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY\n OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY\n REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY\n PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT INFRINGE\n ANY THIRD PARTY RIGHTS.\n \n 6. CNRI SHALL NOT BE LIABLE TO LICENSEE OR OTHER USERS OF THE SOFTWARE FOR\n ANY INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF\n USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE\n THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. SOME STATES DO NOT\n ALLOW THE LIMITATION OR EXCLUSION OF LIABILITY SO THE ABOVE DISCLAIMER\n MAY NOT APPLY TO LICENSEE.\n \n 7. This License Agreement may be terminated by CNRI (i) immediately upon\n written notice from CNRI of any material breach by the Licensee, if the\n nature of the breach is such that it cannot be promptly remedied; or\n (ii) sixty (60) days following notice from CNRI to Licensee of a\n material remediable breach, if Licensee has not remedied such breach\n within that sixty-day period.\n \n 8. This License Agreement shall be governed by and interpreted in all\n respects by the law of the State of Virginia, excluding conflict of law\n provisions. Nothing in this Agreement shall be deemed to create any\n relationship of agency, partnership, or joint venture between CNRI and\n Licensee.\n \n 9. By clicking on the \"ACCEPT\" button where indicated, or by installing,\n copying or otherwise using the Software, Licensee agrees to be bound by\n the terms and conditions of this License Agreement.", + "json": "jpython-1.1.json", + "yaml": "jpython-1.1.yml", + "html": "jpython-1.1.html", + "license": "jpython-1.1.LICENSE" + }, + { + "license_key": "jquery-pd", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-jquery-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "jQuery Public Domain License\n\nNO COPYRIGHTS OR LICENSES. DO WHAT YOU LIKE. This is the new jQuery Tools license. Copyrights and patents are evil. They block the natural progress of development. We all know it: if people start sharing instead of owning the world would be a better place. Today money is king. This results in closed systems and poor quality and in many cases people are even seriously exploited. For businessmen nothing is enough.", + "json": "jquery-pd.json", + "yaml": "jquery-pd.yml", + "html": "jquery-pd.html", + "license": "jquery-pd.LICENSE" + }, + { + "license_key": "jrunner", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jrunner", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "JRunner Software License\nhttps://www.altera.com/download/licensing/lic-jrunner.html \n\nSOFTWARE DISTRIBUTION AGREEMENT\n\nTHE JRunner SOFTWARE PROGRAM AND EXECUTABLE FILES, AND RELATED SPECIFICATION DOCUMENTATION (\"PROGRAMS\") (AVAILABLE FOR DOWNLOADING FROM THIS WEB SITE OR ENCLOSED WITH THE COMPUTER DISK ACCOMPANYING THIS NOTICE), ARE MADE FREELY AVAILABLE FOR USE BY ANYONE, SUBJECT TO CERTAIN TERMS AND CONDITIONS SET FORTH BELOW. PLEASE READ THESE TERMS AND CONDITIONS CAREFULLY BEFORE DOWNLOADING OR USING THE PROGRAMS. BY DOWNLOADING OR USING THE PROGRAMS YOU INDICATE YOUR ACCEPTANCE OF THESE TERMS AND CONDITIONS, WHICH CONSTITUTE THE LICENSE AGREEMENT (the \"AGREEMENT\") BETWEEN YOU AND ALTERA CORPORATION (\"ALTERA\") WITH REGARD TO THE PROGRAMS. IN THE EVENT THAT YOU DO NOT AGREE WITH ANY OF THESE TERMS AND CONDITIONS, DO NOT DOWNLOAD THE PROGRAMS OR PROMPTLY RETURN THE PROGRAMS TO ALTERA UNUSED.\n\nLicense Terms\n\nSubject to the terms and conditions of this Agreement, Altera grants to you a worldwide, nonexclusive, perpetual license (with the right to grant sublicenses, and authorize sublicensees to sublicense further) to use, copy, prepare derivative works based on, and distribute the Programs and derivative works thereof, provided that any distribution or sublicense is subject to the same terms and conditions that you use for distribution of your own comparable software products. Any copies of the Programs or derivative works thereof will continue to be subject to the terms and conditions of this Agreement. You must include in any copies of the Programs or derivative works thereof any trademark, copyright, and other proprietary rights notices included in the Programs by Altera.\n\nDisclaimer of Warranties and Remedies\n\nNO WARRANTIES, EITHER EXPRESS OR IMPLIED, ARE MADE WITH RESPECT TO THE PROGRAMS, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NONINFRINGEMENT, AND ALTERA EXPRESSLY DISCLAIM ALL WARRANTIES NOT STATED HEREIN. YOU ASSUME THE ENTIRE RISK AS TO THE QUALITY, USE, AND PERFORMANCE OF THE PROGRAMS. SHOULD THE PROGRAMS PROVE DEFECTIVE OR FAIL TO PERFORM PROPERLY, YOU -- AND NOT ALTERA -- SHALL ASSUME THE ENTIRE COST AND RISK OF ANY REPAIR, SERVICE, CORRECTION, OR ANY OTHER LIABILITY OR DAMAGES CAUSED BY OR OTHERWISE ASSOCIATED WITH THE PROGRAMS. ALTERA DOES NOT WARRANT THAT THE PROGRAMS WILL MEET YOUR REQUIREMENTS, OR THAT THE OPERATION OF THE PROGRAMS WILL BE UNINTERRUPTED OR ERROR-FREE. YOU ALSO ASSUME RESPONSIBILITY FOR THE SELECTION, INSTALLATION, USE, AND RESULTS OF USING THE PROGRAMS. Some states do not allow the exclusion of implied warranties, so the above exclusion may not apply to you.\n\nALTERA SHALL NOT BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY DAMAGES, INCLUDING ANY INCIDENTAL OR CONSEQUENTIAL DAMAGES, EXPENSES, LOST PROFITS, LOST SAVINGS, OR OTHER DAMAGES ARISING OUT OF OR OTHERWISE ASSOCIATED WITH THE USE OF OR INABILITY TO USE THE PROGRAMS. IN ANY EVENT, ALTERA'S LIABILITY UNDER THIS AGREEMENT SHALL NOT EXCEED THE LARGER OF EITHER THE AMOUNT YOU PAID ALTERA FOR USE OF THE PROGRAMS, OR ONE HUNDRED DOLLARS ($100). YOUR SOLE REMEDIES AND ALTERA'S ENTIRE LIABILITY ARE AS SET FORTH ABOVE. Some states do not allow the limitation or exclusion of incidental or consequential damages, so the above limitations or exclusions may not apply to you.\n\nTo the extent that the Programs are derived from third-party software or other third-party materials, no such third-party provides any warranties with respect to the Programs, assumes any liability regarding use of the Programs, or undertakes to furnish you any support or information relating to the Programs.\n\nGeneral\n\nYou acknowledge that Altera is not responsible for and is not obligated to provide, any support, including email and telephone support, for any purpose with respect to the Programs.\n\nYou acknowledge that the Programs are made freely available in accordance with this Agreement as part of an effort to promote broad use of the Programs with minimum interference by you and Altera. Accordingly, you agree that, if you obtain any patents relating to inventions or discoveries made through use of or access to the Programs or derivative works thereof, or that are necessary for the use of the Programs, you will not bring any claim for infringement thereof against Altera or any direct or indirect licensee of Altera in connection with or use of the Programs or derivative works thereof. The foregoing does not constitute a license of any copyright or trade secret.\n\nYou shall not export the Programs, or any product programmed by the Programs, without first obtaining any necessary U.S. or other governmental licenses and approvals.\n\nThis Agreement is entered into for the benefit of Altera and Altera's licensors and all rights granted to you and all obligations owed to Altera shall be enforceable by Altera and its licensors. This Agreement constitutes the entire understanding and agreement applicable to the Programs, superseding any prior or contemporaneous understandings or agreements. It may not be modified except in a writing executed by Altera.\n\nThis Agreement will be governed by the laws the State of California. You agree to submit to the jurisdiction of the courts in the State of California for the resolution of any dispute or claim arising out of or relating to this Agreement.\n\nThe prevailing party in any legal action or arbitration arising out of this Agreement shall be entitled to reimbursement for its expenses, including court costs and reasonable attorneys' fees, in addition to any other rights and remedies such party may have.\n\nBY USING THE PROGRAMS YOU ACKNOWLEDGE THAT YOU HAVE READ THIS AGREEMENT, UNDERSTAND IT, AND AGREE TO BE BOUND BY ITS TERMS AND CONDITIONS; YOU FURTHER AGREE THAT IT IS THE COMPLETE AND EXCLUSIVE STATEMENT OF THE AGREEMENT BETWEEN YOU AND ALTERA WHICH SUPERSEDES ANY PROPOSAL OR PRIOR AGREEMENT, ORAL OR WRITTEN, AND ANY OTHER COMMUNICATIONS BETWEEN YOU AND ALTERA RELATING TO THE SUBJECT MATTER OF THIS AGREEMENT.\n\nU.S. Government Restricted Rights\n\nThe Programs and any accompanying documentation are provided with RESTRICTED RIGHTS. Use, duplication, or disclosure by the Government is subject to restrictions as set forth in subparagraph (c)(1)(ii) of The Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs (c)(1) and (2) of Commercial Computer Software--Restricted Rights at 48 CFR 52.227-19, as applicable. Contractor/manufacturer is Altera Corporation, 101 Innovation Drive, San Jose, CA 95134 and its licensors.", + "json": "jrunner.json", + "yaml": "jrunner.yml", + "html": "jrunner.html", + "license": "jrunner.LICENSE" + }, + { + "license_key": "jscheme", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jscheme", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to anyone to use this software, in source or object code form, on any computer system, and to modify, compile, decompile, run, and redistribute it to anyone else, subject to the following restrictions:\n\n 1. The author makes no warranty of any kind, either expressed or implied, about the suitability of this software for any purpose.\n\n 2. The author accepts no liability of any kind for damages or other consequences of the use of this software, even if they arise from defects in the software.\n\n 3. The origin of this software must not be misrepresented, either by explicit claim or by omission.\n\n 4. Altered versions must be plainly marked as such, and must not be misrepresented as being the original software. Altered versions may be distributed in packages under other licenses (such as the GNU license). \n\nIf you find this software useful, it would be nice if you let me (peter@norvig.com) know about it, and nicer still if you send me modifications that you are willing to share. However, you are not required to do so.", + "json": "jscheme.json", + "yaml": "jscheme.yml", + "html": "jscheme.html", + "license": "jscheme.LICENSE" + }, + { + "license_key": "jsfromhell", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jsfromhell", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright\nWe authorize the copy and modification of all the codes on the site, since the original author credits are kept.", + "json": "jsfromhell.json", + "yaml": "jsfromhell.yml", + "html": "jsfromhell.html", + "license": "jsfromhell.LICENSE" + }, + { + "license_key": "json", + "category": "Permissive", + "spdx_license_key": "JSON", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nThe Software shall be used for Good, not Evil.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "json.json", + "yaml": "json.yml", + "html": "json.html", + "license": "json.LICENSE" + }, + { + "license_key": "json-js-pd", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-json-js-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Public Domain\n\nNo warranty expressed or implied. Use at your own risk.\n\nThis file has been superceded by http://www.JSON.org/json2.js\n\nSee http://www.JSON.org/js.html", + "json": "json-js-pd.json", + "yaml": "json-js-pd.yml", + "html": "json-js-pd.html", + "license": "json-js-pd.LICENSE" + }, + { + "license_key": "json-pd", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-json-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " Public Domain.\n\n NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.\n\n See http://www.JSON.org/js.html\n\nThis code should be minified before deployment.\nSee http://javascript.crockford.com/jsmin.html\n\nUSE YOUR OWN COPY. IT IS EXTREMELY UNWISE TO LOAD CODE FROM SERVERS YOU DO NOT CONTROL.", + "json": "json-pd.json", + "yaml": "json-pd.yml", + "html": "json-pd.html", + "license": "json-pd.LICENSE" + }, + { + "license_key": "jsr-107-jcache-spec", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jsr-107-jcache-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "JSR-000107 JavaTM Temporary Caching API Maintenance Release 1\n\nORACLE AMERICA, INC. AND GREG LUCK, SPECIFICATION LEADS, ARE WILLING TO LICENSE THIS SPECIFICATION TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS AGREEMENT. PLEASE READ THE TERMS AND CONDITIONS OF THIS AGREEMENT CAREFULLY. BY DOWNLOADING THIS SPECIFICATION, YOU ACCEPT THE TERMS AND CONDITIONS OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY IT, SELECT THE \"DECLINE\" BUTTON AT THE BOTTOM OF THIS PAGE.\n\nSpecification: JSR-107 JCache (\"Specification\")\n\nVersion: 1.0.1\n\nStatus: Maintenance Release 1\n\nSpecification Leads: Oracle America, Inc. and Greg Luck (\"Specification Leads\")\n\nRelease: November 2015\n\nCopyright 2015 Oracle America, Inc. and Greg Luck\nAll rights reserved.\n\nLIMITED LICENSE GRANTS\n\n1. License for Evaluation Purposes. Specification Leads hereby grant you a fully-paid, non-exclusive, non-transferable, worldwide, limited license (without the right to sublicense), under Specification Leads' applicable intellectual property rights to view, download, use and reproduce the Specification only for the purpose of internal evaluation. This includes (i) developing applications intended to run on an implementation of the Specification, provided that such applications do not themselves implement any portion(s) of the Specification, and (ii) discussing the Specification with any third party; and (iii) excerpting brief portions of the Specification in oral or written communications which discuss the Specification provided that such excerpts do not in the aggregate constitute a significant portion of the Specification.\n\n2. License for the Distribution of Compliant Implementations. Specification Leads also grant you a perpetual, non-exclusive, non-transferable, worldwide, fully paid-up, royalty free, limited license (without the right to sublicense) under any applicable copyrights or, subject to the provisions of subsection 4 below, patent rights it may have covering the Specification to create and/or distribute an Independent Implementation of the Specification that: (a) fully implements the Specification including all its required interfaces and functionality; (b) does not modify, subset, superset or otherwise extend the Licensor Name Space, or include any public or protected packages, classes, Java interfaces, fields or methods within the Licensor Name Space other than those required/authorized by the Specification or Specifications being implemented; and (c) passes the Technology Compatibility Kit (including satisfying the requirements of the applicable TCK Users Guide) for such Specification (\"Compliant Implementation\"). In addition, the foregoing license is expressly conditioned on your not acting outside its scope. No license is granted hereunder for any other purpose (including, for example, modifying the Specification, other than to the extent of your fair use rights, or distributing the Specification to third parties). Also, no right, title, or interest in or to any trademarks, service marks, or trade names of Specification Leads or Specification Leads' licensors is granted hereunder. Java, and Java-related logos, marks and names are trademarks or registered trademarks of Oracle America, Inc. in the U.S. and other countries.\n\n3. Pass-through Conditions. You need not include limitations (a)-(c) from the previous paragraph or any other particular \"pass through\" requirements in any license You grant concerning the use of your Independent Implementation or products derived from it. However, except with respect to Independent Implementations (and products derived from them) that satisfy limitations (a)-(c) from the previous paragraph, You may neither: (a) grant or otherwise pass through to your licensees any licenses under Specification Leads' applicable intellectual property rights; nor (b) authorize your licensees to make any claims concerning their implementation's compliance with the Specification in question.\n\n4. Reciprocity Concerning Patent Licenses.\n\na. With respect to any patent claims covered by the license granted under subparagraph 2 above that would be infringed by all technically feasible implementations of the Specification, such license is conditioned upon your offering on fair, reasonable and non-discriminatory terms, to any party seeking it from You, a perpetual, non-exclusive, non-transferable, worldwide license under Your patent rights which are or would be infringed by all technically feasible implementations of the Specification to develop, distribute and use a Compliant Implementation.\n\nb With respect to any patent claims owned by Specification Leads and covered by the license granted under subparagraph 2, whether or not their infringement can be avoided in a technically feasible manner when implementing the Specification, such license shall terminate with respect to such claims if You initiate a claim against Specification Leads that it has, in the course of performing its responsibilities as the Specification Leads, induced any other entity to infringe Your patent rights.\n\nc Also with respect to any patent claims owned by Specification Leads and covered by the license granted under subparagraph 2 above, where the infringement of such claims can be avoided in a technically feasible manner when implementing the Specification such license, with respect to such claims, shall terminate if You initiate a claim against Specification Leads that its making, having made, using, offering to sell, selling or importing a Compliant Implementation infringes Your patent rights.\n\n5. Definitions. For the purposes of this Agreement: \"Independent Implementation\" shall mean an implementation of the Specification that neither derives from any of Specification Leads' source code or binary code materials nor, except with an appropriate and separate license from Specification Leads, includes any of Specification Leads' source code or binary code materials; \"Licensor Name Space\" shall mean the public class or interface declarations whose names begin with \"java\", \"javax\", \"com.oracle\", \"com.sun\" or their equivalents in any subsequent naming convention adopted by Oracle America, Inc. through the Java Community Process, or any recognized successors or replacements thereof; and \"Technology Compatibility Kit\" or \"TCK\" shall mean the test suite and accompanying TCK User's Guide provided by Specification Leads which corresponds to the Specification and that was available either (i) from Specification Leads' 120 days before the first release of Your Independent Implementation that allows its use for commercial purposes, or (ii) more recently than 120 days from such release but against which You elect to test Your implementation of the Specification.\n\nThis Agreement will terminate immediately without notice from Specification Leads if you breach the Agreement or act outside the scope of the licenses granted above.\n\nDISCLAIMER OF WARRANTIES\n\nTHE SPECIFICATION IS PROVIDED \"AS IS\". SPECIFICATION LEADS MAKE NO REPRESENTATIONS OR WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT (INCLUDING AS A CONSEQUENCE OF ANY PRACTICE OR IMPLEMENTATION OF THE SPECIFICATION), OR THAT THE CONTENTS OF THE SPECIFICATION ARE SUITABLE FOR ANY PURPOSE. This document does not represent any commitment to release or implement any portion of the Specification in any product. In addition, the Specification could include technical inaccuracies or typographical errors.\n\nLIMITATION OF LIABILITY\n\nTO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SPECIFICATION LEADS OR THEIR LICENSORS BE LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT LIMITATION, LOST REVENUE, PROFITS OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED IN ANY WAY TO YOUR HAVING, IMPELEMENTING OR OTHERWISE USING THE SPECIFICATION, EVEN IF SPECIFICATION LEADS AND/OR THEIR LICENSORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nYou will indemnify, hold harmless, and defend Specification Leads and their licensors from any claims arising or resulting from: (i) your use of the Specification; (ii) the use or distribution of your Java application, applet and/or implementation; and/or (iii) any claims that later versions or releases of any Specification furnished to you are incompatible with the Specification provided to you under this license.\n\nRESTRICTED RIGHTS LEGEND\n\nU.S. Government: If this Specification is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in the Software and accompanying documentation shall be only as set forth in this license; this is in accordance with 48 C.F.R. 227.7201 through 227.7202-4 (for Department of Defense (DoD) acquisitions) and with 48 C.F.R. 2.101 and 12.212 (for non-DoD acquisitions).\n\nREPORT\n\nIf you provide Specification Leads with any comments or suggestions concerning the Specification (\"Feedback\"), you hereby: (i) agree that such Feedback is provided on a non-proprietary and non-confidential basis, and (ii) grant Specification Leads a perpetual, non-exclusive, worldwide, fully paid-up, irrevocable license, with the right to sublicense through multiple levels of sublicensees, to incorporate, disclose, and use without limitation the Feedback for any purpose.\n\nGENERAL TERMS\n\nAny action related to this Agreement will be governed by California law and controlling U.S. federal law. The U.N. Convention for the International Sale of Goods and the choice of law rules of any jurisdiction will not apply.\n\nThe Specification is subject to U.S. export control laws and may be subject to export or import regulations in other countries. Licensee agrees to comply strictly with all such laws and regulations and acknowledges that it has the responsibility to obtain such licenses to export, re-export or import as may be required after delivery to Licensee.\n\nThis Agreement is the parties' entire agreement relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, conditions, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification to this Agreement will be binding, unless in writing and signed by an authorized representative of each party.\n\nRev. January 2014", + "json": "jsr-107-jcache-spec.json", + "yaml": "jsr-107-jcache-spec.yml", + "html": "jsr-107-jcache-spec.html", + "license": "jsr-107-jcache-spec.LICENSE" + }, + { + "license_key": "jsr-107-jcache-spec-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jsr-107-jcache-spec-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "JSR-000107 JCACHE 2.9 Public Review - Updated Specification\n\nORACLE AND GREG LUCK ARE WILLING TO LICENSE THIS SPECIFICATION TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS LICENSE AGREEMENT (\"AGREEMENT\"). PLEASE READ THE TERMS AND CONDITIONS OF THIS AGREEMENT CAREFULLY. BY DOWNLOADING THIS SPECIFICATION, YOU ACCEPT THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY THEM, SELECT THE \"DECLINE\" BUTTON AT THE BOTTOM OF THIS PAGE AND THE DOWNLOADING PROCESS WILL NOT CONTINUE.\nSpecification: JSR-000107 Java(tm) Temporary Caching API Specification (\"Specification\")\nVersion: 2.9\nStatus: Public Review\nRelease: 8 August 2013\n\nCopyright 2013 ORACLE America, Inc. and Greg Luck\n4150 Network Circle, Santa Clara, California 95054, U.S.A\nAll rights reserved.\nNOTICE\nThe Specification is protected by copyright and the information described therein may be protected by one or more U.S. patents, foreign patents, or pending applications. Except as provided under the following license, no part of the Specification may be reproduced in any form by any means without the prior written authorization of Oracle USA, Inc. (\"Oracle\"), Greg Luck (\"Greg Luck\") and their licensors, if any. Any use of the Specification and the information described therein will be governed by the terms and conditions of this Agreement.\n\nSubject to the terms and conditions of this license, including your compliance with Paragraphs 1 and 2 below, Oracle and Greg Luck hereby grant you a fully-paid, non-exclusive, non-transferable, limited license (without the right to sublicense) under Oracle and Greg Luck's intellectual property rights to:\n\n1.Review the Specification for the purposes of evaluation. This includes: (i) developing implementations of the Specification for your internal, non-commercial use; (ii) discussing the Specification with any third party; and (iii) excerpting brief portions of the Specification in oral or written communications which discuss the Specification provided that such excerpts do not in the aggregate constitute a significant portion of the Technology. 2.Distribute implementations of the Specification to third parties for their testing and evaluation use, provided that any such implementation:\n(i) does not modify, subset, superset or otherwise extend the Licensor Name Space, or include any public or protected packages, classes, Java interfaces, fields or methods within the Licensor Name Space other than those required/authorized by the Specification or Specifications being implemented;\n(ii) is clearly and prominently marked with the word \"UNTESTED\" or \"EARLY ACCESS\" or \"INCOMPATIBLE\" or \"UNSTABLE\" or \"BETA\" in any list of available builds and in proximity to every link initiating its download, where the list or link is under Licensee's control; and\n(iii) includes the following notice:\n\"This is an implementation of an early-draft specification developed under the Java Community Process (JCP) and is made available for testing and evaluation purposes only. The code is not compatible with any specification of the JCP.\" The grant set forth above concerning your distribution of implementations of the specification is contingent upon your agreement to terminate development and distribution of your \"early draft\" implementation as soon as feasible following final completion of the specification. If you fail to do so, the foregoing grant shall be considered null and void. No provision of this Agreement shall be understood to restrict your ability to make and distribute to third parties applications written to the Specification. Other than this limited license, you acquire no right, title or interest in or to the Specification or any other Oracle or Greg Luck intellectual property, and the Specification may only be used in accordance with the license terms set forth herein. This license will expire on the earlier of: (a) two (2) years from the date of Release listed above; (b) the date on which the final version of the Specification is publicly released; or (c) the date on which the Java Specification Request (JSR) to which the Specification corresponds is withdrawn. In addition, this license will terminate immediately without notice from Oracle or Greg Luck if you fail to comply with any provision of this license. Upon termination, you must cease use of or destroy the Specification. \"Licensor Name Space\" means the public class or interface declarations whose names begin with \"java\", \"javax\", \"com.oracle\" or their equivalents in any subsequent naming convention adopted by Oracle or Greg Luck through the Java Community Process, or any recognized successors or replacements thereof\n\nTRADEMARKS\nNo right, title, or interest in or to any trademarks, service marks, or trade names of Oracle, Greg Luck or their licensors is granted hereunder. Oracle, the Oracle logo, Java are trademarks or registered trademarks of Oracle USA, Inc. in the U.S. and other countries.\n\nDISCLAIMER OF WARRANTIES\nTHE SPECIFICATION IS PROVIDED \"AS IS\" AND IS EXPERIMENTAL AND MAY CONTAIN DEFECTS OR DEFICIENCIES WHICH CANNOT OR WILL NOT BE CORRECTED BY ORACLE. ORACLE MAKES NO REPRESENTATIONS OR WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT THAT THE CONTENTS OF THE SPECIFICATION ARE SUITABLE FOR ANY PURPOSE OR THAT ANY PRACTICE OR IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADE SECRETS OR OTHER RIGHTS. This document does not represent any commitment to release or implement any portion of the Specification in any product.\n\nTHE SPECIFICATION COULD INCLUDE TECHNICAL INACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION THEREIN; THESE CHANGES WILL BE INCORPORATED INTO NEW VERSIONS OF THE SPECIFICATION, IF ANY. ORACLE MAY MAKE IMPROVEMENTS AND/OR CHANGES TO THE PRODUCT(S) AND/OR THE PROGRAM(S) DESCRIBED IN THE SPECIFICATION AT ANY TIME. Any use of such changes in the Specification will be governed by the then-current license for the applicable version of the Specification.\n\nLIMITATION OF LIABILITY\nTO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL ORACLE OR ITS LICENSORS BE LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT LIMITATION, LOST REVENUE, PROFITS OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO ANY FURNISHING, PRACTICING, MODIFYING OR ANY USE OF THE SPECIFICATION, EVEN IF ORACLE AND/OR ITS LICENSORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nYou will hold Oracle and Greg Luck (and their licensors) harmless from any claims based on your use of the Specification for any purposes other than the limited right of evaluation as described above, and from any claims that later versions or releases of any Specification furnished to you are incompatible with the Specification provided to you under this license.\n\nRESTRICTED RIGHTS LEGEND\nIf this Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in the Software and accompanying documentation shall be only as set forth in this license; this is in accordance with 48 C.F.R. 227.7201 through 227.7202-4 (for Department of Defense (DoD) acquisitions) and with 48 C.F.R. 2.101 and 12.212 (for non-DoD acquisitions).\n\nREPORT\nYou may wish to report any ambiguities, inconsistencies or inaccuracies you may find in connection with your evaluation of the Specification (\"Feedback\"). To the extent that you provide Oracle or Greg Luck with any Feedback, you hereby: (i) agree that such Feedback is provided on a non-proprietary and non-confidential basis, and (ii) grant Oracle and Greg Luck a perpetual, non-exclusive, worldwide, fully paid-up, irrevocable license, with the right to sublicense through multiple levels of sublicensees, to incorporate, disclose, and use without limitation the Feedback for any purpose related to the Specification and future versions, implementations, and test suites thereof.\n\nGENERAL TERMS\nAny action related to this Agreement will be governed by California law and controlling U.S. federal law. The U.N. Convention for the International Sale of Goods and the choice of law rules of any jurisdiction will not apply.\n\nThe Specification is subject to U.S. export control laws and may be subject to export or import regulations in other countries. Licensee agrees to comply strictly with all such laws and regulations and acknowledges that it has the responsibility to obtain such licenses to export, re-export or import as may be required after delivery to Licensee.\n\nThis Agreement is the parties' entire agreement relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, conditions, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification to this Agreement will be binding, unless in writing and signed by an authorized representative of each party.", + "json": "jsr-107-jcache-spec-2013.json", + "yaml": "jsr-107-jcache-spec-2013.yml", + "html": "jsr-107-jcache-spec-2013.html", + "license": "jsr-107-jcache-spec-2013.LICENSE" + }, + { + "license_key": "jython", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jython", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Jython License\nhttp://www.jython.org/license.txt\n\n====================================\nThe Jython License\n====================================\n\nA. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING JYTHON\n==================================================================\n\nPYTHON SOFTWARE FOUNDATION LICENSE VERSION 2\n----------------------------------------------------------------------\n\n1. This LICENSE AGREEMENT is between the Python Software Foundation\n(\"PSF\"), and the Individual or Organization (\"Licensee\") accessing and\notherwise using this software (\"Jython\") in source or binary form and\nits associated documentation.\n\n2. Subject to the terms and conditions of this License Agreement, PSF\nhereby grants Licensee a nonexclusive, royalty-free, world-wide\nlicense to reproduce, analyze, test, perform and/or display publicly,\nprepare derivative works, distribute, and otherwise use Jython alone\nor in any derivative version, provided, however, that PSF's License\nAgreement and PSF's notice of copyright, i.e., \"Copyright (c) 2007\nPython Software Foundation; All Rights Reserved\" are retained in\nJython alone or in any derivative version prepared by Licensee.\n\n3. In the event Licensee prepares a derivative work that is based on\nor incorporates Jython or any part thereof, and wants to make\nthe derivative work available to others as provided herein, then\nLicensee hereby agrees to include in any such work a brief summary of\nthe changes made to Jython.\n\n4. PSF is making Jython available to Licensee on an \"AS IS\"\nbasis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF JYTHON WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF JYTHON\nFOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS\nA RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING JYTHON,\nOR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n6. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n7. Nothing in this License Agreement shall be deemed to create any\nrelationship of agency, partnership, or joint venture between PSF and\nLicensee. This License Agreement does not grant permission to use PSF\ntrademarks or trade name in a trademark sense to endorse or promote\nproducts or services of Licensee, or any third party.\n\n8. By copying, installing or otherwise using Jython, Licensee\nagrees to be bound by the terms and conditions of this License\nAgreement.\n \nJython 2.0, 2.1 License\n--------------------------------------------\n\nCopyright (c) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Jython Developers\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n - Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in\n the documentation and/or other materials provided with the distribution.\n\n - Neither the name of the Jython Developers nor the names of\n its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY\nOF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nJPython 1.1.x Software License.\n \n\n 1. This LICENSE AGREEMENT is between the Corporation for National Research\n Initiatives, having an office at 1895 Preston White Drive, Reston, VA\n 20191 (\"CNRI\"), and the Individual or Organization (\"Licensee\")\n accessing and using JPython version 1.1.x in source or binary form and\n its associated documentation as provided herein (\"Software\").\n\n 2. Subject to the terms and conditions of this License Agreement, CNRI\n hereby grants Licensee a non-exclusive, non-transferable, royalty-free,\n world-wide license to reproduce, analyze, test, perform and/or display\n publicly, prepare derivative works, distribute, and otherwise use the\n Software alone or in any derivative version, provided, however, that\n CNRI's License Agreement and CNRI's notice of copyright, i.e.,\n \"Copyright \u00a91996-1999 Corporation for National Research Initiatives;\n All Rights Reserved\" are both retained in the Software, alone or in any\n derivative version prepared by Licensee.\n\n Alternatively, in lieu of CNRI's License Agreement, Licensee may\n substitute the following text (omitting the quotes), provided, however,\n that such text is displayed prominently in the Software alone or in any\n derivative version prepared by Licensee: \"JPython (Version 1.1.x) is\n made available subject to the terms and conditions in CNRI's License\n Agreement. This Agreement may be located on the Internet using the\n following unique, persistent identifier (known as a handle):\n 1895.22/1006. The License may also be obtained from a proxy server on\n the Web using the following URL: http://hdl.handle.net/1895.22/1006.\"\n\n 3. In the event Licensee prepares a derivative work that is based on or\n incorporates the Software or any part thereof, and wants to make the\n derivative work available to the public as provided herein, then\n Licensee hereby agrees to indicate in any such work, in a prominently\n visible way, the nature of the modifications made to CNRI's Software.\n\n 4. Licensee may not use CNRI trademarks or trade name, including JPython\n or CNRI, in a trademark sense to endorse or promote products or\n services of Licensee, or any third party. Licensee may use the mark\n JPython in connection with Licensee's derivative versions that are\n based on or incorporate the Software, but only in the form\n \"JPython-based ,\" or equivalent.\n\n 5. CNRI is making the Software available to Licensee on an \"AS IS\" basis.\n CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY\n OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY\n REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY\n PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT INFRINGE\n ANY THIRD PARTY RIGHTS.\n\n 6. CNRI SHALL NOT BE LIABLE TO LICENSEE OR OTHER USERS OF THE SOFTWARE FOR\n ANY INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF\n USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE\n THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. SOME STATES DO NOT\n ALLOW THE LIMITATION OR EXCLUSION OF LIABILITY SO THE ABOVE DISCLAIMER\n MAY NOT APPLY TO LICENSEE.\n\n 7. This License Agreement may be terminated by CNRI (i) immediately upon\n written notice from CNRI of any material breach by the Licensee, if the\n nature of the breach is such that it cannot be promptly remedied; or\n (ii) sixty (60) days following notice from CNRI to Licensee of a\n material remediable breach, if Licensee has not remedied such breach\n within that sixty-day period.\n\n 8. This License Agreement shall be governed by and interpreted in all\n respects by the law of the State of Virginia, excluding conflict of law\n provisions. Nothing in this Agreement shall be deemed to create any\n relationship of agency, partnership, or joint venture between CNRI and\n Licensee.\n\n 9. By clicking on the \"ACCEPT\" button where indicated, or by installing,\n copying or otherwise using the Software, Licensee agrees to be bound by\n the terms and conditions of this License Agreement.\n\n [ACCEPT BUTTON]\n\nB. HISTORY OF THE SOFTWARE\n=======================================================\n\nJPython was created in late 1997 by Jim Hugunin. Jim was also the\nprimary developer while he was at CNRI. In February 1999 Barry Warsaw\ntook over as primary developer and released JPython version 1.1.\n\nIn October 2000 Barry helped move the software to SourceForge\nwhere it was renamed to Jython. Jython 2.0 and 2.1 were developed\nunder the Jython specific license below.\n\nFrom the 2.2 release on, Jython contributors have signed\nPython Software Foundation contributor agreements and releases are\ncovered under the Python Software Foundation license version 2.\n\nThe standard library is covered by the Python Software Foundation\nlicense as well. See the Lib/LICENSE file for details.\n\nThe zxJDBC package was written by Brian Zimmer and originally licensed\nunder the GNU Public License. The package is now covered by the Jython\nSoftware License.\n\nThe command line interpreter is covered by the Apache Software\nLicense. See the org/apache/LICENSE file for details.", + "json": "jython.json", + "yaml": "jython.yml", + "html": "jython.html", + "license": "jython.LICENSE" + }, + { + "license_key": "kalle-kaukonen", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-kalle-kaukonen", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that this copyright notice and disclaimer are retained.\n\nTHIS SOFTWARE IS PROVIDED BY KALLE KAUKONEN AND CONTRIBUTORS \"AS IS\" AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL KALLE KAUKONEN OR CONTRIBUTORS BE LIABLE FOR ANY\nDIRECTI, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "kalle-kaukonen.json", + "yaml": "kalle-kaukonen.yml", + "html": "kalle-kaukonen.html", + "license": "kalle-kaukonen.LICENSE" + }, + { + "license_key": "karl-peterson", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-karl-peterson", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You are free to use this code within your own applications, but you\nare expressly forbidden from selling or otherwise distributing this\nsource code without prior written consent.", + "json": "karl-peterson.json", + "yaml": "karl-peterson.yml", + "html": "karl-peterson.html", + "license": "karl-peterson.LICENSE" + }, + { + "license_key": "katharos-0.1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-katharos-0.1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "# The Katharos License v0.1.0\n\n## Preamble\n\nKatharos is the Greek word for \"pure\" and, correspondingly, the purpose of the Katharos license is to prevent the licensed work from being used to promote destructive activities or to produce other impure or destructive works.\n\nWith the Katharos License we want to promote the openness, sharing, and collaboration that is common in the Open Source community, while at the same time protecting the people who may otherwise become victims of the destructive application of our shared works. We want the works that we share to be uplifting and helpful and we want them to be used to benefit people.\n\nTo accomplish these goals, this license seeks to put limits on what people are allowed to do with the licensed work. This includes, among other things, disallowing the work to be incorporated in or used to produce sexually suggestive or explicit content which we believe is mentally, psychologically, and spiritually harmful.\n\nThe definition of what is \"good\" can be considered highly subjective. In order to maintain objectivity in a highly subjective matter, there must be some source of truth from which to derive said objectivity. The source of \"truth\" for the Katharos License, and where the definition of what is \"good\" and \"pure\", come from the Word of God, The Holy Bible. The Katharos License is based on the premise that the full 66 books of the Holy Bible are 100% true and inspired by God and that He alone is the ultimate authority for what is good and just.\n\nThis license seeks to allow us to share our works as openly as possible, promoting what is uplifting and \"good\", while preventing what is harmful and destructive.\n\n## Terms\n\nCopyright \u00a9 [year] [copyright holder]. All rights reserved.\n\nThe Licensor grants permission by this license (\u201cLicense\u201d), free of charge, to the extent of Licensor\u2019s rights under applicable copyright and patent law, to any person or entity (the \u201cLicensee\u201d) obtaining a copy of this work and all associated documentation or metadata (the \u201cWork\u201d), to do everything with the Work that would otherwise infringe (i) the Licensor\u2019s copyright in the Work or (ii) any patent claims to the Work that the Licensor can license or becomes able to license, subject to all of the following terms and conditions:\n\n### Acceptance\n\nThis License is automatically offered to every person and entity subject to its terms and conditions. Licensee accepts this License and agrees to its terms and conditions by taking any action with the Work that, absent this License, would infringe any intellectual property right held by Licensor.\n\n### Notice\n\nLicensee must ensure that everyone who gets a copy of any part of this Work from Licensee, with or without changes, also receives the License and the above copyright notice (and if included by the Licensor, patent, trademark and attribution notice). Licensee must cause any modified versions of the Work to carry prominent notices stating that Licensee changed the Work. For clarity, although Licensee is free to create modifications of the Work and distribute only the modified portion created by Licensee with additional or different terms, the portion of the Work not modified must be distributed pursuant to this License. If anyone notifies Licensee in writing that Licensee has not complied with this Notice section, Licensee can keep this License by taking all practical steps to comply within 30 days after the notice. If Licensee does not do so, Licensee\u2019s License (and all rights licensed hereunder) shall end immediately.\n\n### Endorsement\n\nNeither the name of the copyright holder nor the names of its contributors may be used to endorse or promote any other works, or services derived from the licensed Work without specific prior written permission.\n\n### Permitted Use of Work\n\n1. The Work shall not be used by any person or entity for any systems, activities, products, services or other uses that (i) lobby for, promote, or support the following activities or materials or (ii) that derive a majority of income from the following activities or materials:\n\n - sex trafficking\n - human trafficking\n - slavery\n - indentured servitude\n - warfare\n - weapons manufacturing\n - war crimes\n - violence ( except when required to protect public safety )\n - weapons of mass destruction\n - sexually suggestive or explicit images, artwork, or any other media\n - excessively gory and/or violent images, artwork, or any other media\n - abortion\n - murder\n - mass surveillance and/or stealing of private information\n - hate speech or discrimination based on age, gender, gender identity, race, sexuality, religion, nationality\n\n2. The Work shall not be used by any person, entity, product, service or other use that (i) lobbies against, discourages, or frustrates the following activities or (ii) that derives a majority of income from actions that discourage, or frustrate the following activities:\n\n - peaceful assembly and association (including worker associations)\n - democratic processes\n\n### Compliance with Permitted Use of Work & Human Rights Laws\n\n1. Permitted Use of Work.\n\n (a) Licensee shall use the Software in a manner consistent with Permitted Use of Work defined above.\n\n (b) Unless the Licensor and Licensee agree otherwise, any dispute, controversy, or claim arising out of or relating to (i) Section 1(a) regarding Permitted Use of Work, including the breach of Section 1(a), termination of this License for breach of the Permitted Use of Work, or invalidity of Section 1(a) or (ii) a determination of whether any Law is consistent or in conflict with Permitted Use of Work pursuant to Section 2, below, shall be settled by arbitration in accordance with the Hague Rules on Business and Human Rights Arbitration (the \u201cRules\u201d); provided, however, that Licensee may elect not to participate in such arbitration, in which event this License (and all rights licensed hereunder) shall end immediately. The number of arbitrators shall be one unless the Rules require otherwise.\n\n Unless both the Licensor and Licensee agree to the contrary: (1) All documents and information concerning the arbitration shall be public and may be disclosed by any party; (2) The repository referred to under Article 43 of the Rules shall make available to the public in a timely manner all documents concerning the arbitration which are communicated to it, including all submissions of the parties, all evidence admitted into the record of the proceedings, all transcripts or other recordings of hearings and all orders, decisions and awards of the arbitral tribunal, subject only to the arbitral tribunal\u2019s powers to take such measures as may be necessary to safeguard the integrity of the arbitral process pursuant to Articles 18, 33, 41 and 42 of the Rules; and (3) Article 26(6) of the Rules shall not apply.\n\n2. Human Rights Laws. The Software shall not be used by any person or entity for any systems, activities, or other uses that violate any Human Rights Laws. \u201cHuman Rights Laws\u201d means any applicable laws, regulations, or rules (collectively, \u201cLaws\u201d) that protect human, civil, labor, privacy, political, environmental, security, economic, due process, or similar rights; provided, however, that such Laws are consistent and not in conflict with Permitted Use of Work (a dispute over the consistency or a conflict between Laws and Permitted Use of Work shall be determined by arbitration as stated above). Where the Human Rights Laws of more than one jurisdiction are applicable or in conflict with respect to the use of the Work, the Human Rights Laws that are most aligned with the guidelines defined in the Holy Bible shall apply.\n\n3. Indemnity. Licensee shall hold harmless and indemnify Licensor (and any other contributor) against all losses, damages, liabilities, deficiencies, claims, actions, judgments, settlements, interest, awards, penalties, fines, costs, or expenses of whatever kind, including Licensor\u2019s reasonable attorneys\u2019 fees, arising out of or relating to Licensee\u2019s use of the Software in violation of Human Rights Laws or Permitted Use of Work.\n\n### Failure to Comply\n\nAny failure of Licensee to act according to the terms and conditions of this License is both a breach of the License and an infringement of the intellectual property rights of the Licensor (subject to exceptions under Laws, e.g., fair use). In the event of a breach or infringement, the terms and conditions of this License may be enforced by Licensor under the Laws of any jurisdiction to which Licensee is subject. Licensee also agrees that the Licensor may enforce the terms and conditions of this License against Licensee through specific performance (or similar remedy under Laws) to the extent permitted by Laws. For clarity, except in the event of a breach of this License, infringement, or as otherwise stated in this License, Licensor may not terminate this License with Licensee.\n\n### Enforceability and Interpretation\n\nIf any term or provision of this License is determined to be invalid, illegal, or unenforceable by a court of competent jurisdiction, then such invalidity, illegality, or unenforceability shall not affect any other term or provision of this License or invalidate or render unenforceable such term or provision in any other jurisdiction; provided, however, subject to a court modification pursuant to the immediately following sentence, if any term or provision of this License pertaining to Human Rights Laws or Permitted Use of Work is deemed invalid, illegal, or unenforceable against Licensee by a court of competent jurisdiction, all rights in the Work granted to Licensee shall be deemed null and void as between Licensor and Licensee. Upon a determination that any term or provision is invalid, illegal, or unenforceable, to the extent permitted by Laws, the court may modify this License to affect the original purpose that the Work be used in compliance with Permitted Use of Work and Human Rights Laws as closely as possible. The language in this License shall be interpreted as to its fair meaning and not strictly for or against any party.\n\n### Disclaimer\n\nTO THE FULL EXTENT ALLOWED BY LAW, THIS SOFTWARE COMES \u201cAS IS,\u201d WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED, AND LICENSOR AND ANY OTHER CONTRIBUTOR SHALL NOT BE LIABLE TO ANYONE FOR ANY DAMAGES OR OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THIS LICENSE, UNDER ANY KIND OF LEGAL CLAIM.\n\n## Use of the Katharos License\n\n### Creating Derivative Licenses\n\nYou may freely modify and distribute your own derivatives of the Katharos License itself and apply it to your works provided that you do not call the derivative license the \"Katharos License\" and you clearly indicate that the derivative license is a modification of the Katharos License. Only wholly unmodified versions of the Katharos License may be called the \"Katharos License\".\n\n### Disclaimer\n\nThis Katharos License is offered for use by licensors and licensees at their own risk, on an \u201cAS IS\u201d basis, and with no warranties express or implied, to the maximum extent permitted by Laws.\n\n## Attribution\n\nThis license has incorporated verbatim and modified portions of the following licenses:\n\n- [Hippocratic License Version 2.1](https://firstdonoharm.dev/version/2/1/license.html)\n- [Do No Harm License](https://github.com/raisely/NoHarm)\n- [BSD 3-Clause](https://spdx.org/licenses/BSD-3-Clause.html)", + "json": "katharos-0.1.0.json", + "yaml": "katharos-0.1.0.yml", + "html": "katharos-0.1.0.html", + "license": "katharos-0.1.0.LICENSE" + }, + { + "license_key": "kde-accepted-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-kde-accepted-gpl", + "other_spdx_license_keys": [ + "LicenseRef-KDE-Accepted-GPL" + ], + "is_exception": false, + "is_deprecated": false, + "text": "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License as\npublished by the Free Software Foundation; either version 3 of\nthe license or (at your option) at any later version that is\naccepted by the membership of KDE e.V. (or its successor\napproved by the membership of KDE e.V.), which shall act as a\nproxy as defined in Section 14 of version 3 of the license.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.", + "json": "kde-accepted-gpl.json", + "yaml": "kde-accepted-gpl.yml", + "html": "kde-accepted-gpl.html", + "license": "kde-accepted-gpl.LICENSE" + }, + { + "license_key": "kde-accepted-lgpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-kde-accepted-lgpl", + "other_spdx_license_keys": [ + "LicenseRef-KDE-Accepted-LGPL" + ], + "is_exception": false, + "is_deprecated": false, + "text": "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 3 of the license or (at your option) any later version\nthat is accepted by the membership of KDE e.V. (or its successor\napproved by the membership of KDE e.V.), which shall act as a\nproxy as defined in Section 6 of version 3 of the license.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.", + "json": "kde-accepted-lgpl.json", + "yaml": "kde-accepted-lgpl.yml", + "html": "kde-accepted-lgpl.html", + "license": "kde-accepted-lgpl.LICENSE" + }, + { + "license_key": "keith-rule", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-keith-rule", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You may freely use or modify this code provided this\nCopyright is included in all derived versions.", + "json": "keith-rule.json", + "yaml": "keith-rule.yml", + "html": "keith-rule.html", + "license": "keith-rule.LICENSE" + }, + { + "license_key": "kerberos", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-kerberos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Kerberos License \n\nCopyright @copyright{} 1985-2002 by the Massachusetts Institute of Technology.\n\nExport of software employing encryption from the United States of America may\nrequire a specific license from the United States Government. It is the\nresponsibility of any person or organization contemplating export to obtain such\na license before exporting.\n\nWITHIN THAT CONSTRAINT, permission to use, copy, modify, and distribute this\nsoftware and its documentation for any purpose and without fee is hereby\ngranted, provided that the above copyright notice appear in all copies and that\nboth that copyright notice and this permission notice appear in supporting\ndocumentation, and that the name of M.I.T. not be used in advertising or\npublicity pertaining to distribution of the software without specific, written\nprior permission. Furthermore if you modify this software you must label your\nsoftware as modified software and not distribute it in such a fashion that it\nmight be confused with the original MIT software. M.I.T. makes no\nrepresentations about the suitability of this software for any purpose. It is\nprovided ``as is'' without express or implied warranty.\n\nThe following copyright and permission notice applies to the OpenVision Kerberos\nAdministration system located in kadmin/create, kadmin/dbutil, kadmin/passwd,\nkadmin/server, lib/kadm5, and portions of lib/rpc:\n\nCopyright, OpenVision Technologies, Inc., 1996, All Rights Reserved\n\nWARNING: Retrieving the OpenVision Kerberos Administration system source code,\nas described below, indicates your acceptance of the following terms. If you do\nnot agree to the following terms, do not retrieve the OpenVision Kerberos\nadministration system.\n\nYou may freely use and distribute the Source Code and Object Code compiled from\nit, with or without modification, but this Source Code is provided to you \"AS\nIS\" EXCLUSIVE OF ANY WARRANTY, INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF\nMERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY OTHER WARRANTY,\nWHETHER EXPRESS OR IMPLIED. IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY FOR\nANY LOST PROFITS, LOSS OF DATA OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES, OR FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES ARISING OUT OF\nTHIS AGREEMENT, INCLUDING, WITHOUT LIMITATION, THOSE RESULTING FROM THE USE OF\nTHE SOURCE CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR ANY OTHER\nREASON.\n\nOpenVision retains all copyrights in the donated Source Code. OpenVision also\nretains copyright to derivative works of the Source Code, whether created by\nOpenVision or by a third party. The OpenVision copyright notice must be\npreserved if derivative works are made based on the donated Source Code.\n\nOpenVision Technologies, Inc. has donated this Kerberos Administration system\nto MIT for inclusion in the standard Kerberos 5 distribution. This donation\nunderscores our commitment to continuing Kerberos technology development and\nour gratitude for the valuable work which has been performed by MIT and the\nKerberos community.\n\nThe implementation of the Yarrow pseudo-random number generator in\nsrc/lib/crypto/yarrow has the following copyright:\n\nCopyright 2000 by Zero-Knowledge Systems, Inc.\n\nPermission to use, copy, modify, distribute, and sell this software and its\ndocumentation for any purpose is hereby granted without fee, provided that the\nabove copyright notice appear in all copies and that both that copyright notice\nand this permission notice appear in supporting documentation, and that the name\nof Zero-Knowledge Systems, Inc. not be used in advertising or publicity\npertaining to distribution of the software without specific, written prior\npermission. Zero-Knowledge Systems, Inc. makes no representations about the\nsuitability of this software for any purpose. It is provided \"as is\" without\nexpress or implied warranty.\n\nZERO-KNOWLEDGE SYSTEMS, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS\nSOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO\nEVENT SHALL ZERO- KNOWLEDGE SYSTEMS, INC. BE LIABLE FOR ANY SPECIAL, INDIRECT OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA\nOR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTUOUS\nACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\nSOFTWARE.\n\nThe implementation of the AES encryption algorithm in src/lib/crypto/aes has the\nfollowing copyright: Copyright (c) 2001, Dr Brian Gladman ,\nWorcester, UK. All rights reserved. LICENSE TERMS\n\nThe free distribution and use of this software in both source and binary form is\nallowed (with or without changes) provided that:\n\ndistributions of this source code include the above copyright notice, this list\nof conditions and the following disclaimer;\n\ndistributions in binary form include the above copyright notice, this list of\nconditions and the following disclaimer in the documentation and/or other\nassociated materials;\n\nthe copyright holder's name is not used to endorse products built using this\nsoftware without specific written permission.\n\nDISCLAIMER\n\nThis software is provided 'as is' with no explcit or implied warranties in\nrespect of any properties, including, but not limited to, correctness and\nfitness for purpose. University of California at Berkeley, which includes this\ncopyright notice:\n\nCopyright @copyright{} 1983 Regents of the University of California.@* All\nrights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list\nof conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\nAll advertising materials mentioning features or use of this software must\ndisplay the following acknowledgement:\n\nThis product includes software developed by the University of California,\nBerkeley and its contributors.\n\nNeither the name of the University nor the names of its contributors may be used\nto endorse or promote products derived from this software without specific prior\nwritten permission.", + "json": "kerberos.json", + "yaml": "kerberos.yml", + "html": "kerberos.html", + "license": "kerberos.LICENSE" + }, + { + "license_key": "kevan-stannard", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-kevan-stannard", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software\nand its documentation for NON-COMMERCIAL or COMMERCIAL purposes and\nwithout fee is hereby granted. \n\nPlease note that this software comes with NO WARRANTY \n\nBECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED\nBY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. \n\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER\nPARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE\nTHE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED\nBY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER\nOR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.", + "json": "kevan-stannard.json", + "yaml": "kevan-stannard.yml", + "html": "kevan-stannard.html", + "license": "kevan-stannard.LICENSE" + }, + { + "license_key": "kevlin-henney", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-kevlin-henney", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose is hereby granted without fee, provided\nthat this copyright and permissions notice appear in all copies and\nderivatives.\n\nThis software is supplied \"as is\" without express or implied warranty.\n\nBut that said, if there are any problems please get in touch.", + "json": "kevlin-henney.json", + "yaml": "kevlin-henney.yml", + "html": "kevlin-henney.html", + "license": "kevlin-henney.LICENSE" + }, + { + "license_key": "kfqf-accepted-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-kfqf-accepted-gpl", + "other_spdx_license_keys": [ + "LicenseRef-KFQF-Accepted-GPL" + ], + "is_exception": true, + "is_deprecated": false, + "text": "Alternatively, this file may be used under the terms of the GNU\nGeneral Public License version 2.0 or (at your option) the GNU General\nPublic license version 3 or any later version approved by the KDE Free\nQt Foundation. The licenses are as published by the Free Software\nFoundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3\nincluded in the packaging of this file. Please review the following\ninformation to ensure the GNU General Public License requirements will\nbe met: https://www.gnu.org/licenses/gpl-2.0.html and\nhttps://www.gnu.org/licenses/gpl-3.0.html.", + "json": "kfqf-accepted-gpl.json", + "yaml": "kfqf-accepted-gpl.yml", + "html": "kfqf-accepted-gpl.html", + "license": "kfqf-accepted-gpl.LICENSE" + }, + { + "license_key": "khronos", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-khronos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and/or associated documentation files (the\n\"Materials\"), to deal in the Materials without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Materials, and to\npermit persons to whom the Materials are furnished to do so, subject\nto the following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Materials.\n\nTHE MATERIALS ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nMATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.", + "json": "khronos.json", + "yaml": "khronos.yml", + "html": "khronos.html", + "license": "khronos.LICENSE" + }, + { + "license_key": "kicad-libraries-exception", + "category": "Copyleft Limited", + "spdx_license_key": "KiCad-libraries-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "To the extent that the creation of electronic designs that use 'Licensed Material' \ncan be considered to be 'Adapted Material', then the copyright holder waives article \n3 of the license with respect to these designs and any generated files which use\n data provided as part of the 'Licensed Material'.", + "json": "kicad-libraries-exception.json", + "yaml": "kicad-libraries-exception.yml", + "html": "kicad-libraries-exception.html", + "license": "kicad-libraries-exception.LICENSE" + }, + { + "license_key": "knuth-ctan", + "category": "Permissive", + "spdx_license_key": "Knuth-CTAN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software is copyrighted. Unlimited copying and redistribution\nof this package and/or its individual files are permitted\nas long as there are no modifications. Modifications, and\nredistribution of modifications, are also permitted, but\nonly if the resulting package and/or files are renamed.", + "json": "knuth-ctan.json", + "yaml": "knuth-ctan.yml", + "html": "knuth-ctan.html", + "license": "knuth-ctan.LICENSE" + }, + { + "license_key": "kreative-relay-fonts-free-use-1.2f", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-kreative-relay-fonts-free-1.2f", + "other_spdx_license_keys": [ + "LicenseRef-scancode-kreative-relay-fonts-free-use-1.2f" + ], + "is_exception": false, + "is_deprecated": false, + "text": "KREATIVE SOFTWARE RELAY FONTS FREE USE LICENSE\nversion 1.2f\n\nPermission is hereby granted, free of charge, to any person or entity (the \"User\") obtaining a copy of the included font files (the \"Software\") produced by Kreative Software, to utilize, display, embed, or redistribute the Software, subject to the following conditions:\n\n1. The User may not sell copies of the Software for a fee.\n\n1a. The User may give away copies of the Software free of charge provided this license and any documentation is included verbatim and credit is given to Kreative Korporation or Kreative Software.\n\n2. The User may not modify, reverse-engineer, or create any derivative works of the Software.\n\n3. Any Software carrying the following font names or variations thereof is not covered by this license and may not be used under the terms of this license: Jewel Hill, Miss Diode n Friends, This is Beckie's font!\n\n3a. Any Software carrying a font name ending with the string \"Pro CE\" is not covered by this license and may not be used under the terms of this license.\n\n4. This license becomes null and void if any of the above conditions are not met.\n\n5. Kreative Software reserves the right to change this license at any time without notice.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE SOFTWARE OR FROM OTHER DEALINGS IN THE SOFTWARE.", + "json": "kreative-relay-fonts-free-use-1.2f.json", + "yaml": "kreative-relay-fonts-free-use-1.2f.yml", + "html": "kreative-relay-fonts-free-use-1.2f.html", + "license": "kreative-relay-fonts-free-use-1.2f.LICENSE" + }, + { + "license_key": "kumar-robotics", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-kumar-robotics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This code is 100% free. Use it anywhere you\nwant. Rewrite it, restructure it, whatever. If you can write software\nthat makes money off of it, good for you. I kinda like capitalism.\nPlease don't blame me if it causes your $30 billion dollar satellite\nexplode in orbit. If you redistribute it in any form, I'd appreciate it\nif you would leave this notice here.", + "json": "kumar-robotics.json", + "yaml": "kumar-robotics.yml", + "html": "kumar-robotics.html", + "license": "kumar-robotics.LICENSE" + }, + { + "license_key": "lal-1.2", + "category": "Copyleft", + "spdx_license_key": "LAL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Licence Art Libre \n\u2028[ Copyleft Attitude ]\nVersion 1.2\n\nPr\u00e9ambule :\n\nAvec cette Licence Art Libre, l\u2019autorisation est donn\u00e9e de copier, de diffuser et de transformer librement les oeuvres dans le respect des droits de l\u2019auteur.\n\nLoin d\u2019ignorer les droits de l\u2019auteur, cette licence les reconna\u00eet et les prot\u00e8ge. Elle en reformule le principe en permettant au public de faire un usage cr\u00e9atif des oeuvres d\u2019art.\u2028 \nAlors que l\u2019usage fait du droit de la propri\u00e9t\u00e9 litt\u00e9raire et artistique conduit \u00e0 restreindre l\u2019acc\u00e8s du public \u00e0 l\u2019oeuvre, la Licence Art Libre a pour but de le favoriser.\u2028 \nL\u2019intention est d\u2019ouvrir l\u2019acc\u00e8s et d\u2019autoriser l\u2019utilisation des ressources d\u2019une oeuvre par le plus grand nombre. En avoir jouissance pour en multiplier les r\u00e9jouissances, cr\u00e9er de nouvelles conditions de cr\u00e9ation pour amplifier les possibilit\u00e9s de cr\u00e9ation. Dans le respect des auteurs avec la reconnaissance et la d\u00e9fense de leur droit moral.\n\nEn effet, avec la venue du num\u00e9rique, l\u2019invention de l\u2019internet et des logiciels libres, un nouveau mode de cr\u00e9ation et de production est apparu. Il est aussi l\u2019amplification de ce qui a \u00e9t\u00e9 exp\u00e9riment\u00e9 par nombre d\u2019artistes contemporains. \nLe savoir et la cr\u00e9ation sont des ressources qui doivent demeurer libres pour \u00eatre encore v\u00e9ritablement du savoir et de la cr\u00e9ation. C\u2019est \u00e0 dire rester une recherche fondamentale qui ne soit pas directement li\u00e9e \u00e0 une application concr\u00e8te. Cr\u00e9er c\u2019est d\u00e9couvrir l\u2019inconnu, c\u2019est inventer le r\u00e9el avant tout souci de r\u00e9alisme.\u2028 \nAinsi, l\u2019objet de l\u2019art n\u2019est pas confondu avec l\u2019objet d\u2019art fini et d\u00e9fini comme tel.\u2028C\u2019est la raison essentielle de cette Licence Art Libre : promouvoir et prot\u00e9ger des pratiques artistiques lib\u00e9r\u00e9es des seules r\u00e8gles de l\u2019\u00e9conomie de march\u00e9.\n\nD\u00c9FINITIONS\n\n\u2013 L\u2019oeuvre :\u2028il s\u2019agit d\u2019une oeuvre commune qui comprend l\u2019oeuvre originelle ainsi que toutes les contributions post\u00e9rieures (les originaux cons\u00e9quents et les copies). Elle est cr\u00e9\u00e9e \u00e0 l\u2019initiative de l\u2019auteur originel qui par cette licence d\u00e9finit les conditions selon lesquelles les contributions sont faites.\n\n\u2013 L\u2019oeuvre originelle :\u2028c\u2019est-\u00e0-dire l\u2019oeuvre cr\u00e9\u00e9e par l\u2019initiateur de l\u2019oeuvre commune dont les copies vont \u00eatre modifi\u00e9es par qui le souhaite.\n\n\u2013 Les oeuvres cons\u00e9quentes :\u2028c\u2019est-\u00e0-dire les propositions des auteurs qui contribuent \u00e0 la formation de l\u2019oeuvre en faisant usage des droits de reproduction, de diffusion et de modification que leur conf\u00e8re la licence.\n\n\u2013 Original (source ou ressource de l\u2019oeuvre) :\u2028exemplaire dat\u00e9 de l\u2019oeuvre, de sa d\u00e9finition, de sa partition ou de son programme que l\u2019auteur pr\u00e9sente comme r\u00e9f\u00e9rence pour toutes actualisations, interpr\u00e9tations, copies ou reproductions ult\u00e9rieures.\n\n\u2013 Copie :\u2028toute reproduction d\u2019un original au sens de cette licence.\n\n\u2013 Auteur de l\u2019oeuvre originelle :\u2028c\u2019est la personne qui a cr\u00e9\u00e9 l\u2019oeuvre \u00e0 l\u2019origine d\u2019une arborescence de cette oeuvre modifi\u00e9e. Par cette licence, l\u2019auteur d\u00e9termine les conditions dans lesquelles ce travail se fait.\n\n\u2013 Contributeur :\u2028toute personne qui contribue \u00e0 la cr\u00e9ation de l\u2019oeuvre. Il est l\u2019auteur d\u2019une oeuvre originale r\u00e9sultant de la modification d\u2019une copie de l\u2019oeuvre originelle ou de la modification d\u2019une copie d\u2019une oeuvre cons\u00e9quente.\n\n1. OBJET \nCette licence a pour objet de d\u00e9finir les conditions selon lesquelles vous pouvez jouir librement de cette oeuvre.\n\n2. L\u2019\u00c9TENDUE DE LA JOUISSANCE \nCette oeuvre est soumise au droit d\u2019auteur, et l\u2019auteur par cette\u2028licence vous indique quelles sont vos libert\u00e9s pour la copier, la\u2028diffuser et la modifier:\n\n2.1 LA LIBERT\u00c9 DE COPIER (OU DE REPRODUCTION) \nVous avez la libert\u00e9 de copier cette oeuvre pour un usage personnel, pour vos amis, ou toute autre personne et quelque soit la technique employ\u00e9e.\n\n2.2 LA LIBERT\u00c9 DE DIFFUSER, D\u2019INTERPR\u00c9TER (OU DE REPR\u00c9SENTATION) \nVous pouvez diffuser librement les copies de ces oeuvres, modifi\u00e9es\u2028ou non, quel que soit le support, quel que soit le lieu, \u00e0 titre on\u00e9reux ou gratuit si vous respectez toutes les conditions suivantes:\u2028 \n\u2013 joindre aux copies, cette licence \u00e0 l\u2019identique, ou indiquer pr\u00e9cis\u00e9ment o\u00f9 se trouve la licence,\u2028 \u2013 indiquer au destinataire le nom de l\u2019auteur des originaux,\u2028 \u2013 indiquer au destinataire o\u00f9 il pourra avoir acc\u00e8s aux originaux\u2028(originels et/ou cons\u00e9quents). L\u2019auteur de l\u2019original pourra, s\u2019il le souhaite, vous autoriser \u00e0 diffuser l\u2019original dans les m\u00eames conditions que les copies.\n\n2.3 LA LIBERT\u00c9 DE MODIFIER \nVous avez la libert\u00e9 de modifier les copies des originaux (originels\u2028et cons\u00e9quents), qui peuvent \u00eatre partielles ou non, dans le respect des conditions pr\u00e9vues \u00e0 l\u2019article 2.2 en cas de diffusion (ou repr\u00e9sentation) de la copie modifi\u00e9e.\u2028L\u2019auteur de l\u2019original pourra, s\u2019il le souhaite, vous autoriser \u00e0 modifier l\u2019original dans les m\u00eames conditions que les copies.\n\n3. L\u2019INCORPORATION DE L\u2019OEUVRE \nTous les \u00e9l\u00e9ments de cette oeuvre doivent demeurer libres, c\u2019est pourquoi il ne vous est pas permis d\u2019int\u00e9grer les originaux (originels et cons\u00e9quents) dans une autre oeuvre qui ne serait pas soumise \u00e0 cette licence.\n\n4. VOS DROITS D\u2019AUTEUR \nCette licence n\u2019a pas pour objet de nier vos droits d\u2019auteur sur votre contribution. En choisissant de contribuer \u00e0 l\u2019\u00e9volution de cette oeuvre, vous acceptez seulement d\u2019offrir aux autres les m\u00eames droits sur votre contribution que ceux qui vous ont \u00e9t\u00e9 accord\u00e9s par cette licence.\n\n5. LA DUR\u00c9E DE LA LICENCE \nCette licence prend effet d\u00e8s votre acceptation de ses dispositions. Le fait de copier, de diffuser, ou de modifier l\u2019oeuvre constitue une acception tacite.\u2028Cette licence a pour dur\u00e9e la dur\u00e9e des droits d\u2019auteur attach\u00e9s \u00e0 l\u2019oeuvre. Si vous ne respectez pas les termes de cette licence, vous perdez automatiquement les droits qu\u2019elle vous conf\u00e8re.\u2028Si le r\u00e9gime juridique auquel vous \u00eates soumis ne vous permet pas de respecter les termes de cette licence, vous ne pouvez pas vous pr\u00e9valoir des libert\u00e9s qu\u2019elle conf\u00e8re.\n\n6. LES DIFF\u00c9RENTES VERSIONS DE LA LICENCE \nCette licence pourra \u00eatre modifi\u00e9e r\u00e9guli\u00e8rement, en vue de son am\u00e9lioration, par ses auteurs (les acteurs du mouvement \u00ab copyleft attitude \u00bb) sous la forme de nouvelles versions num\u00e9rot\u00e9es. \nVous avez toujours le choix entre vous contenter des dispositions contenues dans la version sous laquelle la copie vous a \u00e9t\u00e9 communiqu\u00e9e ou alors, vous pr\u00e9valoir des dispositions d\u2019une des versions ult\u00e9rieures.\n\n7. LES SOUS-LICENCES \nLes sous licences ne sont pas autoris\u00e9es par la pr\u00e9sente. Toute personne qui souhaite b\u00e9n\u00e9ficier des libert\u00e9s qu\u2019elle conf\u00e8re sera li\u00e9e directement \u00e0 l\u2019auteur de l\u2019oeuvre originelle.\n\n8. LA LOI APPLICABLE AU CONTRAT \nCette licence est soumise au droit fran\u00e7ais.", + "json": "lal-1.2.json", + "yaml": "lal-1.2.yml", + "html": "lal-1.2.html", + "license": "lal-1.2.LICENSE" + }, + { + "license_key": "lal-1.3", + "category": "Copyleft", + "spdx_license_key": "LAL-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Licence Art Libre 1.3 (LAL 1.3)\nPr\u00e9ambule :\n\nAvec la Licence Art Libre, l\u2019autorisation est donn\u00e9e de copier, de diffuser et de transformer librement les \u0153uvres dans le respect des droits de l\u2019auteur.\n\nLoin d\u2019ignorer ces droits, la Licence Art Libre les reconna\u00eet et les prot\u00e8ge. Elle en reformule l\u2019exercice en permettant \u00e0 tout un chacun de faire un usage cr\u00e9atif des productions de l\u2019esprit quels que soient leur genre et leur forme d\u2019expression.\n\nSi, en r\u00e8gle g\u00e9n\u00e9rale, l\u2019application du droit d\u2019auteur conduit \u00e0 restreindre l\u2019acc\u00e8s aux \u0153uvres de l\u2019esprit, la Licence Art Libre, au contraire, le favorise. L\u2019intention est d\u2019autoriser l\u2019utilisation des ressources d\u2019une \u0153uvre ; cr\u00e9er de nouvelles conditions de cr\u00e9ation pour amplifier les possibilit\u00e9s de cr\u00e9ation. La Licence Art Libre permet d\u2019avoir jouissance des \u0153uvres tout en reconnaissant les droits et les responsabilit\u00e9s de chacun.\n\nAvec le d\u00e9veloppement du num\u00e9rique, l\u2019invention d\u2019internet et des logiciels libres, les modalit\u00e9s de cr\u00e9ation ont \u00e9volu\u00e9 : les productions de l\u2019esprit s\u2019offrent naturellement \u00e0 la circulation, \u00e0 l\u2019\u00e9change et aux transformations. Elles se pr\u00eatent favorablement \u00e0 la r\u00e9alisation d\u2019\u0153uvres communes que chacun peut augmenter pour l\u2019avantage de tous.\n\nC\u2019est la raison essentielle de la Licence Art Libre : promouvoir et prot\u00e9ger ces productions de l\u2019esprit selon les principes du copyleft : libert\u00e9 d\u2019usage, de copie, de diffusion, de transformation et interdiction d\u2019appropriation exclusive.\n\nD\u00e9finitions :\n\nNous d\u00e9signons par \u00ab \u0153uvre \u00bb, autant l\u2019\u0153uvre initiale, les \u0153uvres cons\u00e9quentes, que l\u2019\u0153uvre commune telles que d\u00e9finies ci-apr\u00e8s :\n\nL\u2019\u0153uvre commune :\u2028Il s\u2019agit d\u2019une \u0153uvre qui comprend l\u2019\u0153uvre initiale ainsi que toutes les contributions post\u00e9rieures (les originaux cons\u00e9quents et les copies). Elle est cr\u00e9\u00e9e \u00e0 l\u2019initiative de l\u2019auteur initial qui par cette licence d\u00e9finit les conditions selon lesquelles les contributions sont faites.\n\nL\u2019\u0153uvre initiale :\u2028C\u2019est-\u00e0-dire l\u2019\u0153uvre cr\u00e9\u00e9e par l\u2019initiateur de l\u2019\u0153uvre commune dont les copies vont \u00eatre modifi\u00e9es par qui le souhaite.\n\nLes \u0153uvres cons\u00e9quentes :\u2028C\u2019est-\u00e0-dire les contributions des auteurs qui participent \u00e0 la formation de l\u2019\u0153uvre commune en faisant usage des droits de reproduction, de diffusion et de modification que leur conf\u00e8re la licence.\n\nOriginaux (sources ou ressources de l\u2019\u0153uvre) :\u2028Chaque exemplaire dat\u00e9 de l\u2019\u0153uvre initiale ou cons\u00e9quente que leurs auteurs pr\u00e9sentent comme r\u00e9f\u00e9rence pour toutes actualisations, interpr\u00e9tations, copies ou reproductions ult\u00e9rieures.\n\nCopie :\u2028Toute reproduction d\u2019un original au sens de cette licence.\n\n1- OBJET. \nCette licence a pour objet de d\u00e9finir les conditions selon lesquelles vous pouvez jouir librement de l\u2019\u0153uvre.\n\n2. L\u2019\u00c9TENDUE DE LA JOUISSANCE. \nCette \u0153uvre est soumise au droit d\u2019auteur, et l\u2019auteur par cette licence vous indique quelles sont vos libert\u00e9s pour la copier, la diffuser et la modifier.\n\n2.1 LA LIBERT\u00c9 DE COPIER (OU DE REPRODUCTION). \nVous avez la libert\u00e9 de copier cette \u0153uvre pour vous, vos amis ou toute autre personne, quelle que soit la technique employ\u00e9e.\n\n2.2 LA LIBERT\u00c9 DE DIFFUSER (INTERPR\u00c9TER, REPR\u00c9SENTER, DISTRIBUER). \nVous pouvez diffuser librement les copies de ces \u0153uvres, modifi\u00e9es ou non, quel que soit le support, quel que soit le lieu, \u00e0 titre on\u00e9reux ou gratuit, si vous respectez toutes les conditions suivantes :\n\n1.\tjoindre aux copies cette licence \u00e0 l\u2019identique ou indiquer pr\u00e9cis\u00e9ment o\u00f9 se trouve la licence ; \n2.\tindiquer au destinataire le nom de chaque auteur des originaux, y compris le v\u00f4tre si vous avez modifi\u00e9 l\u2019\u0153uvre ; \n3.\tindiquer au destinataire o\u00f9 il pourrait avoir acc\u00e8s aux originaux (initiaux et/ou cons\u00e9quents).\n\nLes auteurs des originaux pourront, s\u2019ils le souhaitent, vous autoriser \u00e0 diffuser l\u2019original dans les m\u00eames conditions que les copies.\n\n2.3 LA LIBERT\u00c9 DE MODIFIER. \nVous avez la libert\u00e9 de modifier les copies des originaux (initiaux et cons\u00e9quents) dans le respect des conditions suivantes :\n\n1.\tcelles pr\u00e9vues \u00e0 l\u2019article 2.2 en cas de diffusion de la copie modifi\u00e9e ; \n2.\tindiquer qu\u2019il s\u2019agit d\u2019une \u0153uvre modifi\u00e9e et, si possible, la nature de la modification ; \n3.\tdiffuser cette \u0153uvre cons\u00e9quente avec la m\u00eame licence ou avec toute licence compatible ; \n4.\tLes auteurs des originaux pourront, s\u2019ils le souhaitent, vous autoriser \u00e0 modifier l\u2019original dans les m\u00eames conditions que les copies.\n\n3. DROITS CONNEXES. \nLes actes donnant lieu \u00e0 des droits d\u2019auteur ou des droits voisins ne doivent pas constituer un obstacle aux libert\u00e9s conf\u00e9r\u00e9es par cette licence.\u2028C\u2019est pourquoi, par exemple, les interpr\u00e9tations doivent \u00eatre soumises \u00e0 la m\u00eame licence ou une licence compatible. De m\u00eame, l\u2019int\u00e9gration de l\u2019\u0153uvre \u00e0 une base de donn\u00e9es, une compilation ou une anthologie ne doit pas faire obstacle \u00e0 la jouissance de l\u2019\u0153uvre telle que d\u00e9finie par cette licence.\n\n4. L\u2019 INT\u00c9GRATION DE L\u2019\u0152UVRE. \nToute int\u00e9gration de cette \u0153uvre \u00e0 un ensemble non soumis \u00e0 la LAL doit assurer l\u2019exercice des libert\u00e9s conf\u00e9r\u00e9es par cette licence. \nSi l\u2019\u0153uvre n\u2019est plus accessible ind\u00e9pendamment de l\u2019ensemble, alors l\u2019int\u00e9gration n\u2019est possible qu\u2019\u00e0 condition que l\u2019ensemble soit soumis \u00e0 la LAL ou une licence compatible.\n\n5. CRIT\u00c8RES DE COMPATIBILIT\u00c9. \nUne licence est compatible avec la LAL si et seulement si :\n\n1.\telle accorde l\u2019autorisation de copier, diffuser et modifier des copies de l\u2019\u0153uvre, y compris \u00e0 des fins lucratives, et sans autres restrictions que celles qu\u2019impose le respect des autres crit\u00e8res de compatibilit\u00e9 ; \n2.\telle garantit la paternit\u00e9 de l\u2019\u0153uvre et l\u2019acc\u00e8s aux versions ant\u00e9rieures de l\u2019\u0153uvre quand cet acc\u00e8s est possible ; \n3.\telle reconna\u00eet la LAL \u00e9galement compatible (r\u00e9ciprocit\u00e9) ; \n4.\telle impose que les modifications faites sur l\u2019\u0153uvre soient soumises \u00e0 la m\u00eame licence ou encore \u00e0 une licence r\u00e9pondant aux crit\u00e8res de compatibilit\u00e9 pos\u00e9s par la LAL.\n\n6. VOS DROITS INTELLECTUELS. \nLa LAL n\u2019a pas pour objet de nier vos droits d\u2019auteur sur votre contribution ni vos droits connexes. En choisissant de contribuer \u00e0 l\u2019\u00e9volution de cette \u0153uvre commune, vous acceptez seulement d\u2019offrir aux autres les m\u00eames autorisations sur votre contribution que celles qui vous ont \u00e9t\u00e9 accord\u00e9es par cette licence. Ces autorisations n\u2019entra\u00eenent pas un dessaisissement de vos droits intellectuels.\n\n7. VOS RESPONSABILIT\u00c9S. \nLa libert\u00e9 de jouir de l\u2019\u0153uvre tel que permis par la LAL (libert\u00e9 de copier, diffuser, modifier) implique pour chacun la responsabilit\u00e9 de ses propres faits.\n\n8. LA DUR\u00c9E DE LA LICENCE. \nCette licence prend effet d\u00e8s votre acceptation de ses dispositions. Le fait de copier, de diffuser, ou de modifier l\u2019\u0153uvre constitue une acceptation tacite.\u2028 \nCette licence a pour dur\u00e9e la dur\u00e9e des droits d\u2019auteur attach\u00e9s \u00e0 l\u2019\u0153uvre. Si vous ne respectez pas les termes de cette licence, vous perdez automatiquement les droits qu\u2019elle vous conf\u00e8re.\u2028Si le r\u00e9gime juridique auquel vous \u00eates soumis ne vous permet pas de respecter les termes de cette licence, vous ne pouvez pas vous pr\u00e9valoir des libert\u00e9s qu\u2019elle conf\u00e8re.\n\n9. LES DIFF\u00c9RENTES VERSIONS DE LA LICENCE. \nCette licence pourra \u00eatre modifi\u00e9e r\u00e9guli\u00e8rement, en vue de son am\u00e9lioration, par ses auteurs (les acteurs du mouvement Copyleft Attitude) sous la forme de nouvelles versions num\u00e9rot\u00e9es.\u2028 \nVous avez toujours le choix entre vous contenter des dispositions contenues dans la version de la LAL sous laquelle la copie vous a \u00e9t\u00e9 communiqu\u00e9e ou alors, vous pr\u00e9valoir des dispositions d\u2019une des versions ult\u00e9rieures.\n\n10. LES SOUS-LICENCES. \nLes sous-licences ne sont pas autoris\u00e9es par la pr\u00e9sente. Toute personne qui souhaite b\u00e9n\u00e9ficier des libert\u00e9s qu\u2019elle conf\u00e8re sera li\u00e9e directement aux auteurs de l\u2019\u0153uvre commune.\n\n11. LE CONTEXTE JURIDIQUE. \nCette licence est r\u00e9dig\u00e9e en r\u00e9f\u00e9rence au droit fran\u00e7ais et \u00e0 la Convention de Berne relative au droit d\u2019auteur.", + "json": "lal-1.3.json", + "yaml": "lal-1.3.yml", + "html": "lal-1.3.html", + "license": "lal-1.3.LICENSE" + }, + { + "license_key": "larabie", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-larabie", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The fonts contained in this archive are Freeware. No payment is required for the use of these fonts. They're free!\nCommercial use? Sure, but a donation or a product sample would be appreciated.\n\n$40 US is the usual donation amount per font for commercial use but any amount is appreciated.\n\nI make all the fonts (over 400 of them) on my web page and they're all free. I offer Deluxe versions of some of my\nfonts for sale. They contain several weights and styles of each font. Just click on \"DELUXE FONTS\" at\nLarabie Fonts to see them.\n\nThe site is called Larabie Fonts and it can be found at various mirror sites:\n\ntry:\nhttp://www.larabiefonts.com\nhttp://uk.zarcrom.com/font/\nhttp://come.to/larabiefonts\n\nI've provided the world with over 400 free fonts, so if you'd like to make a donation I'd be more than happy to accept it.\nNo donation is too small.\n\nSend anything at all to\n\nRay Larabie\n61 Wesley Ave.\nPort Credit\nOntario, CANADA\nL5H 2M8\n\nIf you decide to send a cheque (that's how we spell it in Canada) make it payable to Ray Larabie. If you want to\ndouble check the address have a look at the donation section on any of my webpages. If you'd like to use a credit card\nto send a donation drop by my site and click on the DONATIONS section.\n\nCanadian or US funds? Any funds are fine with me. Whatever's easiest for you.\n\nRay Larabie\ndrowsy@cheerful.com or rlarabie@hotmail.com\n\nHere's an unofficial, non-legalese summary of the following contract:\nYou can use the font for commercial or non-commercial purposes. You can make things with the font, just don't change\nthe font itself or use it to make new fonts. You can give the font away as long as it hasn't been altered and this text file\nremains with the font. Don't remove or alter the copyright notice on the font. Don't convert the fonts if the conversion\nprogram alters the copyright notice. If my font makes your hair fall out - thats' too damn bad!\n\n\n-------------------------------\nLarabie Fonts End-user license agreement software product from Larabie Fonts\n---------------------------------------------------\n\nSOFTWARE PRODUCT LICENSE\n\nThe SOFTWARE PRODUCT is protected by copyright laws and international copyright treaties,\nas well as other intellectual property laws and treaties. The SOFTWARE PRODUCT is licensed,\nnot sold.\n\n1. GRANT OF LICENSE. This document grants you the following rights:\n\n- Installation and Use. You may install and use an unlimited number of copies of the\nSOFTWARE PRODUCT.\n\n- Reproduction and Distribution. You may reproduce and distribute an unlimited number of\ncopies of the SOFTWARE PRODUCT; provided that each copy shall be a true and complete copy,\nincluding all copyright and trademark notices (if applicable) , and shall be accompanied by\na copy of this text file. Copies of the SOFTWARE PRODUCT may not be distributed for profit\neither on a standalone basis or included as part of your own product unless by prior\npermission of Larabie Fonts. \n\n2. DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS. \n\n- Restrictions on Alteration. You may not rename, edit or create any derivative works from\nthe SOFTWARE PRODUCT, other than subsetting when embedding them in documents unless you have\npermission from Larabie Fonts.\n\nLIMITED WARRANTY\nNO WARRANTIES. Larabie Fonts expressly disclaims any warranty for the SOFTWARE PRODUCT. The\nSOFTWARE PRODUCT and any related documentation is provided \"as is\" without warranty of any\nkind, either express or implied, including, without limitation, the implied warranties or\nmerchantability, fitness for a particular purpose, or noninfringement. The entire risk\narising out of use or performance of the SOFTWARE PRODUCT remains with you.\n\nNO LIABILITY FOR CONSEQUENTIAL DAMAGES. In no event shall Larabie Fonts be liable for any\ndamages whatsoever (including, without limitation, damages for loss of business profits,\nbusiness interruption, loss of business information, or any other pecuniary loss) arising\nout of the use of or inability to use this product, even if Larabie Fonts has been advised\nof the possibility of such damages.\n\n3. MISCELLANEOUS\n\nShould you have any questions concerning this document, or if you desire to contact\nLarabie Fonts for any reason, please contact rlarabie@hotmail.com , or write: Ray Larabie,\n61 Wesley Ave. Mississauga, ON Canada L5H 2M8", + "json": "larabie.json", + "yaml": "larabie.yml", + "html": "larabie.html", + "license": "larabie.LICENSE" + }, + { + "license_key": "latex2e", + "category": "Permissive", + "spdx_license_key": "Latex2e", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to make and distribute verbatim copies of this\nmanual provided the copyright notice and this permission notice are\npreserved on all copies.\n\nPermission is granted to copy and distribute modified versions of this\nmanual under the conditions for verbatim copying, provided that the\nentire resulting derived work is distributed under the terms of a\npermission notice identical to this one.\n\nPermission is granted to copy and distribute translations of this manual\ninto another language, under the above conditions for modified versions.", + "json": "latex2e.json", + "yaml": "latex2e.yml", + "html": "latex2e.html", + "license": "latex2e.LICENSE" + }, + { + "license_key": "lattice-osl-2017", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-lattice-osl-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LATTICE OPEN SOURCE LICENSE AGREEMENT\n\nThis is a legal agreement between You (Licensee, either a company or an individual), and Lattice Semiconductor Corporation if You are located in the United States or Lattice SG Pte. Ltd. if You are located in a country other than the United States. Lattice Semiconductor Corporation or Lattice SG Pte. Ltd. is the Provider (Licensor) of the Software. If a component covered by this Agreement can be included in the output files generated by the Provider\u2019s LatticeMico System or any other Provider source code generation tool, then Software refers to such output files that includes that component. Otherwise, Software refers to the component on a standalone basis. By proceeding with the installation, modification, use or distribution in whole or in part of Software that identifies itself as licensed under the Lattice Open Source License Agreement, You agree to be bound by the terms of this Agreement. If You do not agree to the terms of this Agreement, You are not permitted to use, modify or distribute the Software.\n\n1. The Provider grants to You a personal, non-exclusive right to use and distribute the source code of the Software provided that:\n - You make distributions free of charge under these license terms\n - You ensure that the original copyright notices and limitations of liability and warranty sections remain intact.\n\n2. The Provider grants to You a personal, non-exclusive right to modify the source code of the Software and incorporate it with other source code to create a Derivative Work (as defined below). At Your discretion, You may distribute this Derivative Work under terms of Your choosing provided:\n - You arrange Your design such that the Derivative Work is an identifiable module within Your overall design.\n - You distribute the source code associated with the modules containing the Derivative Work in a customarily accepted machine-readable format, free of charge under a license agreement that contains these license terms. \n - You ensure that the original copyright notices and limitations of liability and warranty sections remain intact.\n - You clearly identify areas of the source code that You have modified.\n\n\u201cDerivative Work\u201d means a version of the Software in source code form that contains modifications or additions to the original source code and includes all Software files used to implement Your design. Derivative Work does not include identifiable modules within Your design that are not derived from the Software and that can be reasonably considered independent and separate modules from the Software.\n\n3. The Provider grants to You a personal, non-exclusive right to use object code created from the Software or a Derivative Work to physically implement the design in devices such as a programmable logic devices or application specific integrated circuits. You may distribute these devices without accompanying them with a copy of this license or source code.\n\n4. This Software is provided free of charge. IN NO EVENT WILL THE PROVIDER OR ANY OF ITS SUPPLIERS BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY DAMAGES, INCLUDING ANY DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, OR SPECIAL DAMAGES, WHETHER CHARACTERIZED AS EXPENSES, LOST PROFITS, LOST SAVINGS, OR OTHER DAMAGES OF ANY SORT, ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF THE PROVIDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n5. THE PROVIDER MAKES NO WARRANTIES WITH RESPECT TO THE SOFTWARE, WHETHER EXPRESSED, IMPLIED, STATUTORY, OR IN ANY OTHER PROVISION OF THIS AGREEMENT OR COMMUNICATION WITH YOU, AND THE PROVIDER SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT OF THIRD PARTY RIGHTS. THE PROVIDER DOES NOT WARRANT THAT USE OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR FREE. YOU ASSUME RESPONSIBILITY FOR SELECTION OF THE SOFTWARE TO ACHIEVE ITS INTENDED RESULTS AND FOR THE PROPER INSTALLATION, USE, AND RESULTS OBTAINED FROM THE SOFTWARE. YOU ASSUME THE ENTIRE RISK OF THE SOFTWARE PROVING DEFECTIVE OR FAILING TO PERFORM PROPERLY, AND IN SUCH EVENT, YOU ASSUME THE ENTIRE COST AND RISK OF ANY REPAIR, SERVICE, CORRECTION, OR ANY OTHER LIABILITIES OR DAMAGES CAUSED BY OR ASSOCIATED WITH THE SOFTWARE. THE SOLE LIABILITIES AND REMEDIES ASSOCIATED WITH THE SOFTWARE ARE SET FORTH ABOVE. \n\n6. Export Control. You agree that neither the Software nor any Derivative Work will be exported, directly or indirectly, into any country or to any person or entity, in violation of laws or regulations of the United States or other applicable governments. This Agreement will be governed by the substantive laws of the State of Oregon, USA.\n\n7. Default and Termination. This Agreement will continue indefinitely, until and unless terminated. You may terminate this Agreement by destroying all copies of the materials to which this Agreement applies. The Agreement will terminate automatically if due to any event, including court judgment, You fail to perform any of Your obligations hereunder. In the event of termination, others that have received software from You under the terms of this Agreement may continue to use it provided they remain in compliance with the terms of this Agreement.\n\n8. Your use of this Software is governed by this Lattice Open Source License Agreement. However, depending on your design, the output files generated by the LatticeMico System or by any other Provider source code generation tool may contain open source code provided by a third party. Specifically, the output files may contain open source code that is licensed pursuant to the terms attached to the LatticeMicoTM System License Agreement as Appendix B. By agreeing to the terms of this Lattice Open Source License Agreement, you are also agreeing to use such code in accordance with the terms of the agreement under which such code has been licensed, if applicable.\n\n9. From time to time Lattice may issue revised versions of the Lattice Open Source License Agreement. Revisions will follow the spirit of this version but will contain adjustments and clarifications to address issues and concerns of Lattice and the user community.\n\n10. Any conflict between the terms of this Agreement and the licensing terms included in the header files provided with the Software will be resolved in favor of this Agreement.\n\n\u00a92006-2017 Lattice Semiconductor Corporation. You may freely distribute the text of this Agreement provided you include this copyright notice. However, modifications to the substantive terms herein are not permitted. \n\n20170329", + "json": "lattice-osl-2017.json", + "yaml": "lattice-osl-2017.yml", + "html": "lattice-osl-2017.html", + "license": "lattice-osl-2017.LICENSE" + }, + { + "license_key": "lavantech", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-lavantech", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LavanTech License\nhttp://www.lavantech.com/license.shtml \n\nLicense\nBy using or installing any software product(including source code and corresponding documentation) created by LavanTech (hereafter referred to as \"Software\"), you are agreeing to be bound by the terms and conditions of this License Agreement. As used in this License Agreement, \"You\" shall mean the individual using or installing the Software together with any individual or entity, including but not limited to your employer, on whose behalf you are acting in using or installing the Software. You shall be the \"Licensee\" under this License Agreement. This License Agreement constitutes the complete agreement between you and LavanTech. No amendment or modification may be made to this Agreement except in writing signed by you and LavanTech. If you do not agree to the terms and conditions of the Agreement, discontinue use of the Software immediately.\n1. License Grant \nIn consideration for the license fee paid, and other good and valuable consideration, LavanTech grants to you only, the Licensee, the non-exclusive, world-wide right to use the Software in accordance with the license You purchase. If you are using this product for your employer, this agreement also includes your employer.\nTrial/Demo License\nSoftware that is distributed as Trial/Demo may only be used for testing and evaluation purposes by a single Developer. The Trial/Demo Software cannot be distributed as part of your software. The software license is valid only for 30 days from the time of download or installation. The Trial/Demo Software should be destroyed after the Trial period.\n\nDeveloper License \nSingle Developer License allows one developer to use the Software for development and integration of any number of applications. If you have more than one developer that will be developing applications using the Software, You will need to purchase a Developer License for each additional Developer. The 5 Developer License grants the rights of the Developer License for up to 5 developers. The Enterprise Developer License grants the rights of the Developer License for unlimited number of Developers within a same organization. Personal/Non-Commercial Developer License grants the rights of the Developer License for one Developer for Non-Commercial Purposes. \"Non-Commercial Purposes\" means use of the software by an individual who does not directly or indirectly support any commercial efforts.\n\nThe Developer License allows the developer royalty-free unlimited distribution of the Software bundled with an application, provided You adhere to the following distribution terms:\n\u2022\tYou may not resell, rent, lease or distribute the Software alone. The Software must be distributed as a component of an application and bundled with an application or with the application's installation files. The Software may only be used as part of, and in connection with, the bundled application.\n\u2022\tYou may not resell, rent, lease or distribute Software in any way that would compete with LavanTech.\n\u2022\tYou shall protect and keep secure all source code provided with Software. All source code provided with Software that is distributed with an application must be compiled or password protected to the extent that only the software developer(s) may obtain access to it.\n\u2022\tA valid copyright notice must be provided within the user documentation, start-up screen or in the help-about section of your application that specifies LavanTech as the provider of the Software bundled with Your application, for example: \"<> contains components licensed from LavanTech. These components may only be used as part of and in connection with <>.\"\n\nSource Code License If a source code license is purchased, LavanTech grants you the right to use and modify the LavanTech source under the following condition.\n\u2022\tLavanTech shall retain all right, title and interest in and to all updates, modifications, enhancements and derivative works, in whole or in part, of the LavanTech Source Code created by you, including all copyrights subsisting therein, to the extent such modifications, enhancements or derivative works contain copyrightable code or expression derived from the LavanTech source code; provided, however, that LavanTech grants to you a fully-paid, royalty free license, to use copy and modify such updates, modifications, enhancements and derivative works or copies thereof for use as authorized in this License.\n\u2022\tYou may not distribute the LavanTech source code, or any modified version or derivative work of the LavanTech source code, in source code form.\n\u2022\tLavanTech require all developers who plan to access LavanTech source code signing on the source code license. As long as they signed, they become registered developers. An alternative to this is to let a delegate signs source code license as an organization. The delegate will be responsible for letting other developers who plan to access the source code reviewing this license agreement first before releasing them the access.\n\u2022\tThe source code contained herein and in related files is provided to the registered developer for the purposes of education and troubleshooting. Under no circumstances may any portion of the source code be distributed, disclosed or otherwise made available to any third party without the express written consent of LavanTech.\n\u2022\tUnder no circumstances may the source code be used in whole or in part, as the basis for creating a product that provides the same, or substantially the same, functionality as any LavanTech products.\n\u2022\tThe registered developer acknowledges that this source code contains valuable and proprietary trade secrets of LavanTech. The registered developer agrees to expend every effort to insure its confidentiality. For example, under no circumstances may the registered developer allow to put the source code on an internal network where he or she has no control.\n\u2022\tDue to the insecurity of Java byte-code, if you plan to use classes that built from the source code directly, you must agree to obfuscate the classes before distributing it to your customers.\n2. Copyright\nThe LavanTech Software and the accompanying materials are copyrighted and contain proprietary information. Unauthorized copying of the Software or accompanying materials even if modified, merged, or included with other software, or of the written materials, is expressly forbidden. You may be held legally responsible for any infringement of intellectual property rights that is caused or encouraged by your failure to abide by the terms of this Agreement. You may make copies of the Software solely for backup purposes provided the copyright and trademark notices are reproduced in their entirety on the backup copy. LavanTech reserves all rights not specifically granted to Licensee.\nThe Software and documentation are licensed, not sold, to you. You may not rent, lease, display or distribute copies of the Software to others except under the conditions of the Developer License. You may not disassemble, decompose, reverse engineer, or alter the Software. \n3. Termination\nThis Agreement is effective until terminated. This Agreement will terminate automatically without notice from LavanTech if You fail to comply with any provision contained herein or if the funds paid for the license are refunded or are not received. Upon termination, you must destroy the Software, and all copies of them, in part and in whole, including modified copies, if any. If you have distributed Software with an application under the Developer License, you may continue to use said Software for up to 90 days after termination. LavanTech reserves the right to terminate the Agreement for any reason that competes with or negatively effects LavanTech.\n4. Warranty\nAlthough efforts have been made to assure that the Software is date compliant, correct, reliable, and technically accurate, the Software is licensed to you as is and without warranties as to performance of merchantability, fitness for a particular purpose or use, or any other warranties whether expressed or implied. You, your organization and all users of the Software, assume all risks when using it. The manufacturers, distributors and resellers of the Software shall not be liable for any consequential, incidental, punitive or special damages arising out of the use of or inability to use the Software or the provision of or failure to provide support services, even if we have been advised of the possibility of such damages.\n5. Technical Support\nLavanTech offers free technical support over email for all its latest version of the software. \n6. Controlling Law and Severability\nThis License Agreement shall be governed by and construed in accordance with the laws of the United States and the State of Ohio, as applied to agreements entered into and to be performed entirely within Ohio between Ohio residents. The courts of the State of Ohio, County of Lake, shall have exclusive jurisdiction and venue over any dispute, proceeding or action arising out of or in connection with this License Agreement or your use of the Software. If for any reason a court of competent jurisdiction finds any provision of this License Agreement, or portion thereof, to be unenforceable, that provision of the License Agreement shall be enforced to the maximum extent permissible so as to effect the intent of the parties, and the remainder of this License Agreement shall continue in full force and effect.\n7. Non-Waiver\nThe failure by either party at any time to enforce any of the provisions of this License Agreement or any right or remedy available hereunder or at law or in equity, or to exercise any option herein provided, shall not constitute a waiver of such provision, right, remedy or option or in any way affect the validity of this License Agreement. The waiver of any default by either party shall not be deemed a continuing waiver, but shall apply solely to the instance to which such waiver is directed.\n8. Return Policy \nAll returns must be received within 30 days of purchase.", + "json": "lavantech.json", + "yaml": "lavantech.yml", + "html": "lavantech.html", + "license": "lavantech.LICENSE" + }, + { + "license_key": "lbnl-bsd", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-LBNL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright (c) 2003, The Regents of the University of California, through\nLawrence Berkeley National Laboratory (subject to receipt of any required\napprovals from the U.S. Dept. of Energy). All rights reserved. \n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n(1) Redistributions of source code must retain the above copyright notice,\nthis list of conditions and the following disclaimer.\n\n(2) Redistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation\nand/or other materials provided with the distribution.\n\n(3) Neither the name of the University of California, Lawrence Berkeley National\nLaboratory, U.S. Dept. of Energy nor the names of its contributors may be\nused to endorse or promote products derived from this software without specific\nprior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER\nOR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\nOR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER\nIN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\n\nYou are under no obligation whatsoever to provide any bug fixes, patches,\nor upgrades to the features, functionality or performance of the source code\n(\"Enhancements\") to anyone; however, if you choose to make your Enhancements\navailable either publicly, or directly to Lawrence Berkeley National Laboratory,\nwithout imposing a separate written license agreement for such Enhancements,\nthen you hereby grant the following license: a non-exclusive, royalty-free\nperpetual license to install, use, modify, prepare derivative works, incorporate\ninto other computer software, distribute, and sublicense such Enhancements\nor derivative works thereof, in binary and source code form.", + "json": "lbnl-bsd.json", + "yaml": "lbnl-bsd.yml", + "html": "lbnl-bsd.html", + "license": "lbnl-bsd.LICENSE" + }, + { + "license_key": "lcs-telegraphics", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-lcs-telegraphics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The text and information contained in this file may be freely used,\ncopied, or distributed without compensation or licensing restrictions.", + "json": "lcs-telegraphics.json", + "yaml": "lcs-telegraphics.yml", + "html": "lcs-telegraphics.html", + "license": "lcs-telegraphics.LICENSE" + }, + { + "license_key": "ldap-sdk-free-use", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ldap-sdk-free-use", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "UnboundID LDAP SDK Free Use License\n\nTHIS IS AN AGREEMENT BETWEEN YOU (\"YOU\") AND UNBOUNDID CORP. (\"UNBOUNDID\")\nREGARDING YOUR USE OF UNBOUNDID LDAP SDK FOR JAVA AND ANY ASSOCIATED\nDOCUMENTATION, OBJECT CODE, COMPILED LIBRARIES, SOURCE CODE AND SOURCE FILES OR\nOTHER MATERIALS MADE AVAILABLE BY UNBOUNDID (COLLECTIVELY REFERRED TO IN THIS\nAGREEMENT AS THE (\"SDK\").\n\nBY INSTALLING, ACCESSING OR OTHERWISE USING THE SDK, YOU ACCEPT THE TERMS OF\nTHIS AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, DO NOT\nINSTALL, ACCESS OR USE THE SDK.\n\nUSE OF THE SDK. Subject to your compliance with this Agreement, UnboundID\ngrants to You a non-exclusive, royalty-free license, under UnboundID's\nintellectual property rights in the SDK, to use, reproduce, modify and\ndistribute this release of the SDK; provided that no license is granted herein\nunder any patents that may be infringed by your modifications, derivative works\nor by other works in which the SDK may be incorporated (collectively, your\n\"Applications\"). You may reproduce and redistribute the SDK with your\nApplications provided that you (i) include this license file and an\nunmodified copy of the unboundid-ldapsdk-se.jar file; and (ii) such\nredistribution is subject to a license whose terms do not conflict with or\ncontradict the terms of this Agreement. You may also reproduce and redistribute\nthe SDK without your Applications provided that you redistribute the SDK\ncomplete and unmodified (i.e., with all \"read me\" files, copyright notices, and\nother legal notices and terms that UnboundID has included in the SDK).\n\nSCOPE OF LICENSES. This Agreement does not grant You the right to use any\nUnboundID intellectual property which is not included as part of the SDK. The\nSDK is licensed, not sold. This Agreement only gives You some rights to use\nthe SDK. UnboundID reserves all other rights. Unless applicable law gives You\nmore rights despite this limitation, You may use the SDK only as expressly\npermitted in this Agreement.\n\nSUPPORT. UnboundID is not obligated to provide any technical or other support\n(\"Support Services\") for the SDK to You under this Agreement. However, if\nUnboundID chooses to provide any Support Services to You, Your use of such\nSupport Services will be governed by then-current UnboundID support policies.\n\nTERMINATION. UnboundID reserves the right to discontinue offering the SDK and\nto modify the SDK at any time in its sole discretion. Notwithstanding anything\ncontained in this Agreement to the contrary, UnboundID may also, in its sole\ndiscretion, terminate or suspend access to the SDK to You or any end user at\nany time. In addition, if you fail to comply with the terms of this Agreement,\nthen any rights granted herein will be automatically terminated if such failure\nis not corrected within 30 days of the initial notification of such failure.\nYou acknowledge that termination and/or monetary damages may not be a\nsufficient remedy if You breach this Agreement and that UnboundID will be\nentitled, without waiving any other rights or remedies, to injunctive or\nequitable relief as may be deemed proper by a court of competent jurisdiction\nin the event of a breach. UnboundID may also terminate this Agreement if the\nSDK becomes, or in UnboundID?s reasonable opinion is likely to become, the\nsubject of a claim of intellectual property infringement or trade secret\nmisappropriation. All rights and licenses granted herein will simultaneously\nand automatically terminate upon termination of this Agreement for any reason.\n\nDISCLAIMER OF WARRANTY. THE SDK IS PROVIDED \"AS IS\" AND UNBOUNDID DOES NOT\nWARRANT THAT THE SDK WILL BE ERROR-FREE, VIRUS-FREE, WILL PERFORM IN AN\nUNINTERRUPTED, SECURE OR TIMELY MANNER, OR WILL INTEROPERATE WITH OTHER\nHARDWARE, SOFTWARE, SYSTEMS OR DATA. TO THE MAXIMUM EXTENT ALLOWED BY LAW, ALL\nCONDITIONS, REPRESENTATIONS AND WARRANTIES, WHETHER EXPRESS, IMPLIED, STATUTORY\nOR OTHERWISE INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE (EVEN IF UNBOUNDID HAD BEEN\nINFORMED OF SUCH PURPOSE), OR NON-INFRINGEMENT OF THIRD PARTY RIGHTS ARE HEREBY\nDISCLAIMED.\n\nLIMITATION OF LIABILITY. IN NO EVENT WILL UNBOUNDID OR ITS SUPPLIERS BE LIABLE\nFOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, LOST PROFITS,\nREVENUE, DATA OR DATA USE, BUSINESS INTERRUPTION, COST OF COVER, DIRECT,\nINDIRECT, SPECIAL, PUNITIVE, INCIDENTAL OR CONSEQUENTIAL DAMAGES OF ANY KIND)\nARISING OUT OF THE USE OF OR INABILITY TO USE THE SDK OR IN ANY WAY RELATED TO\nTHIS AGREEMENT, EVEN IF UNBOUNDID HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\nADDITIONAL RIGHTS. Certain states do not allow the exclusion of implied\nwarranties or limitation of liability for certain kinds of damages, so the\nexclusion of limited warranties and limitation of liability set forth above may\nnot apply to You.\n\nEXPORT RESTRICTIONS. The SDK is subject to United States export control laws.\nYou acknowledge and agree that You are responsible for compliance with all\ndomestic and international export laws and regulations that apply to the SDK.\n\nMISCELLANEOUS. This Agreement constitutes the entire agreement with respect to\nthe SDK. If any provision of this Agreement shall be held to be invalid,\nillegal or unenforceable, the validity, legality and enforceability of the\nremaining provisions shall in no way be affected or impaired thereby. This\nAgreement and performance hereunder shall be governed by and construed in\naccordance with the laws of the State of Texas without regard to its conflict\nof laws rules. Any disputes related to this Agreement shall be exclusively\nlitigated in the state or federal courts located in Travis County, Texas.", + "json": "ldap-sdk-free-use.json", + "yaml": "ldap-sdk-free-use.yml", + "html": "ldap-sdk-free-use.html", + "license": "ldap-sdk-free-use.LICENSE" + }, + { + "license_key": "ldpc-1994", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpc-1994", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Linux Documentation Project Copying License\nLast modified 30 March 1994\n\nThe following copyright license applies to all works by the Linux Documentation Project.\n\nPlease read the license carefully---it is somewhat like the GNU General Public License, but there are several conditions in it that differ from what you may be used to. If you have any questions, please mail Matt Welsh, the LDP coordinator, at mdw@sunsite.unc.edu.\n\nThe Linux Documentation Project manuals may be reproduced and distributed in whole or in part, subject to the following conditions:\n\nAll Linux Documentation Project manuals are copyrighted by their respective authors. THEY ARE NOT IN THE PUBLIC DOMAIN.\n\n The copyright notice above and this permission notice must be preserved complete on all complete or partial copies.\n Any translation or derivative work of Linux Installation and Getting Started must be approved by the author in writing before distribution.\n If you distribute Linux Installation and Getting Started in part, instructions for obtaining the complete version of this manual must be included, and a means for obtaining a complete version provided.\n Small portions may be reproduced as illustrations for reviews or quotes in other works without this permission notice if proper citation is given.\n The GNU General Public License referenced below may be reproduced under the conditions given within it. \n\nExceptions to these rules may be granted for academic purposes: Write to the author and ask. These restrictions are here to protect us as authors, not to restrict you as educators and learners. All source code in Linux Installation and Getting Started is placed under the GNU General Public License, available via anonymous FTP from here.\n\nPublishing LDP Manuals\nIf you're a publishing company interested in distributing any of the LDP manuals, read on.\n\nBy the license given in the previous section, anyone is allowed to publish and distribute verbatim copies of the Linux Documentation Project manuals. You don't need our explicit permission for this. However, if you would like to distribute a translation or derivative work based on any of the LDP manuals, you must obtain permission from the author, in writing, before doing so.\n\nAll translations and derivative works of LDP manuals must be placed under the Linux Documentation License given in the previous section. That is, if you plan to release a translation of one of the manuals, it must be freely distributable by the above terms.\n\nYou may, of course, sell the LDP manuals for profit. We encourage you to do so. Keep in mind, however, that because the LDP manuals are freely distributable, anyone may photocopy or distribute printed copies free of charge, if they wish to do so.\n\nWe do not require to be paid royalties for any profit earned from selling LDP manuals. However, we would like to suggest that if you do sell LDP manuals for profit, that you either offer the author royalties, or donate a portion of your earnings to the author, the LDP as a whole, or to the Linux development community. You may also wish to send one or more free copies of the LDP manual that you are distributing to the author. Your show of support for the LDP and the Linux community will be very appreciated.\n\nWe would like to be informed of any plans to publish or distribute LDP manuals, just so we know how they're becoming available. If you are publishing or planning to publish any LDP manuals, please send mail to Matt Welsh (mdw@sunsite.unc.edu) either by electronic mail or telephone at +1 607 256 7372.\n\nWe encourage Linux software distributors to distribute the LDP manuals (such as the Installation and Getting Started Guide) with their software. The LDP manuals are intended to be used as the \"official\" Linux documentation, and we'd like to see mail-order distributors bundling the LDP manuals with the software. As the LDP manuals mature, hopefully they will fulfill this goal more adequately.\n\nMatt Welsh, mdw@sunsite.unc.edu", + "json": "ldpc-1994.json", + "yaml": "ldpc-1994.yml", + "html": "ldpc-1994.html", + "license": "ldpc-1994.LICENSE" + }, + { + "license_key": "ldpc-1997", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpc-1997", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Linux Documentation Project Copying License\nLast modified 6 January 1997\n\nThe following copyright license applies to all works by the Linux Documentation Project.\n\nPlease read the license carefully---it is somewhat like the GNU General Public License, but there are several conditions in it that differ from what you may be used to. If you have any questions, please email the LDP coordinator, mdw@metalab.unc.edu.\n\nThe Linux Documentation Project manuals may be reproduced and distributed in whole or in part, subject to the following conditions:\n\nAll Linux Documentation Project manuals are copyrighted by their respective authors. THEY ARE NOT IN THE PUBLIC DOMAIN.\n\n The copyright notice above and this permission notice must be preserved complete on all complete or partial copies.\n Any translation or derivative work of Linux Installation and Getting Started must be approved by the author in writing before distribution.\n If you distribute Linux Installation and Getting Started in part, instructions for obtaining the complete version of this manual must be included, and a means for obtaining a complete version provided.\n Small portions may be reproduced as illustrations for reviews or quotes in other works without this permission notice if proper citation is given.\n The GNU General Public License referenced below may be reproduced under the conditions given within it. \n\nExceptions to these rules may be granted for academic purposes: Write to the author and ask. These restrictions are here to protect us as authors, not to restrict you as educators and learners. All source code in Linux Installation and Getting Started is placed under the GNU General Public License, available via anonymous FTP from the GNU archive site.\n\nPublishing LDP Manuals\nIf you're a publishing company interested in distributing any of the LDP manuals, read on.\n\nBy the license given in the previous section, anyone is allowed to publish and distribute verbatim copies of the Linux Documentation Project manuals. You don't need our explicit permission for this. However, if you would like to distribute a translation or derivative work based on any of the LDP manuals, you must obtain permission from the author, in writing, before doing so.\n\nAll translations and derivative works of LDP manuals must be placed under the Linux Documentation License given in the previous section. That is, if you plan to release a translation of one of the manuals, it must be freely distributable by the above terms.\n\nYou may, of course, sell the LDP manuals for profit. We encourage you to do so. Keep in mind, however, that because the LDP manuals are freely distributable, anyone may photocopy or distribute printed copies free of charge, if they wish to do so.\n\nWe do not require to be paid royalties for any profit earned from selling LDP manuals. However, we would like to suggest that if you do sell LDP manuals for profit, that you either offer the author royalties, or donate a portion of your earnings to the author, the LDP as a whole, or to the Linux development community. You may also wish to send one or more free copies of the LDP manual that you are distributing to the author. Your show of support for the LDP and the Linux community will be very appreciated.\n\nWe would like to be informed of any plans to publish or distribute LDP manuals, just so we know how they're becoming available. If you are publishing or planning to publish any LDP manuals, please send email to Matt Welsh (email mdw@metalab.unc.edu).\n\nWe encourage Linux software distributors to distribute the LDP manuals (such as the Installation and Getting Started Guide) with their software. The LDP manuals are intended to be used as the \"official\" Linux documentation, and we'd like to see mail-order distributors bundling the LDP manuals with the software. As the LDP manuals mature, hopefully they will fulfill this goal more adequately.", + "json": "ldpc-1997.json", + "yaml": "ldpc-1997.yml", + "html": "ldpc-1997.html", + "license": "ldpc-1997.LICENSE" + }, + { + "license_key": "ldpc-1999", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpc-1999", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Linux Documentation Project Copying License\nLast Revision: 16 September 1999\n\nPlease read the license carefully---it is somewhat like the GNU General Public License, but there are several conditions in it that differ from what you may be used to. If you have any questions, please email the LDP coordinator, Guylhem Aznar.\n\nNote: All Linux Documentation Project manuals are copyrighted by their respective authors. THEY ARE NOT IN THE PUBLIC DOMAIN.\n\nThe Linux Documentation Project manuals (guides) may be reproduced and distributed in whole or in part, subject to the following conditions:\n\n The copyright notice above and this permission notice must be preserved complete on all complete or partial copies.\n Any translation or derivative work of Linux Installation and Getting Started must be approved by the author in writing before distribution.\n If you distribute Linux Installation and Getting Started in part, instructions for obtaining the complete version of this manual must be included, and a means for obtaining a complete version provided.\n Small portions may be reproduced as illustrations for reviews or quotes in other works without this permission notice if proper citation is given.\n The GNU General Public License referenced below may be reproduced under the conditions given within it. \n\nExceptions to these rules may be granted for academic purposes: write to the author and ask. These restrictions are here to protect us as authors, not to restrict you as educators and learners. All source code in Linux Installation and Getting Started is placed under the GNU General Public License, available via anonymous FTP from the GNU archive site.\n\nPlease read the LDP Manifesto for further information. If you are authoring a work, the Manifesto provides a sample copyright (derived from the previous area) to utilize, if you so desire. There is also a section devoted to Publishing LDP Manuals. If you're a publishing company interested in distributing any of the LDP manuals, please read that particular section.\n\nIf you have any questions, please email the LDP coordinator, Guylhem Aznar.", + "json": "ldpc-1999.json", + "yaml": "ldpc-1999.yml", + "html": "ldpc-1999.html", + "license": "ldpc-1999.LICENSE" + }, + { + "license_key": "ldpgpl-1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpgpl-1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " LDP GENERAL PUBLIC LICENSE\n Version 1, September 1998\n\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License applies to any document which contains a notice\nplaced by the copyright holder saying it may be distributed\nunder the terms of this LDP General Public License.\nThe \"Document\" below refers to any such document, and\n\"work based on the Document\" means either the Document\nor any derivative work under copyright law: that is to say,\na work containing the Document or part of it, either verbatim\nor with modifications and/or translated into another language.\n(Hereinafter, translation is included without limitation in\nthe term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope.\n\n 1. You may copy and distribute verbatim copies of the Document's\nsource code as you receive it, in any medium, provided that you\nappropriately publish on each copy an appropriate copyright notice\nand disclaimer of warranty; keep intact all the notices that refer\nto this License and to the absence of any warranty; and give any\nother recipients of the Document a copy of this License along with\nthe Document.\n\nYou may charge a fee for the physical act of producing or transferring\na copy.\n\n 2. You may modify your copy or copies of the Document or any portion\nof it, thus forming a work based on the Document, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) You must cause the modified files to carry notices\n stating that you changed the files and the date of any change.\n\n b) You must cause any work that you distribute or publish, that in\n whole or in part contains or is derived from the Document or any\n part thereof, to be licensed as a whole at no charge to all third\n parties under the terms of this License.\n\n c) You must not add notes to the Document implying that the\n reader had better read something produced using Texinfo.\n\n 3. You may copy and distribute the Document (or a work based on it,\nunder Section 2) in any form under the terms of Sections 1 and 2 above\nprovided that you also either accompany it with the complete corresponding\nmachine-readable source code, or provide an URL, valid for at least\nthree months, where this complete corresponding machine-readable source code\nis available, and can be retrieved by any anonymous user.\n\n 4. You may not copy, modify, sublicense, or distribute the Document\nexcept as expressly provided under this License.\n\n 5. Each time you redistribute the Document (or any work based on the\nDocument), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Document subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.", + "json": "ldpgpl-1.json", + "yaml": "ldpgpl-1.yml", + "html": "ldpgpl-1.html", + "license": "ldpgpl-1.LICENSE" + }, + { + "license_key": "ldpgpl-1a", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpgpl-1a", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LDP GENERAL PUBLIC LICENSE\n Version 1a, November 1998\n\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License applies to any document which contains a notice\nplaced by the copyright holder saying it may be distributed\nunder the terms of this LDP General Public License.\nThe \"Document\" below refers to any such document, and\n\"work based on the Document\" means either the Document\nor any derivative work under copyright law: that is to say,\na work containing the Document or part of it, either verbatim\nor with modifications and/or translated into another language.\n(Hereinafter, translation is included without limitation in\nthe term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope.\n\n 1. You may copy and distribute verbatim copies of the Document's\nsource code as you receive it, in any medium, provided that you\nappropriately publish on each copy an appropriate copyright notice\nand disclaimer of warranty; keep intact all the notices that refer\nto this License and to the absence of any warranty; and give any\nother recipients of the Document a copy of this License along with\nthe Document.\n\nYou may charge a fee for the physical act of producing or transferring\na copy.\n\n 2. You may modify your copy or copies of the Document or any portion\nof it, thus forming a work based on the Document, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) You must cause the modified files to carry notices\n stating that you changed the files and the date of any change.\n\n b) You must cause any work that you distribute or publish, that in\n whole or in part contains or is derived from the Document or any\n part thereof, to be licensed as a whole at no charge to all third\n parties under the terms of this License.\n\n 3. You may copy and distribute the Document (or a work based on it,\nunder Section 2) in any form under the terms of Sections 1 and 2 above\nprovided that you also either accompany it with the complete corresponding\nmachine-readable source code, or provide an URL, valid for at least\nthree months, where this complete corresponding machine-readable source code\nis available, and can be retrieved by any anonymous user.\n\n 4. You may not copy, modify, sublicense, or distribute the Document\nexcept as expressly provided under this License.\n\n 5. Each time you redistribute the Document (or any work based on the\nDocument), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Document subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.", + "json": "ldpgpl-1a.json", + "yaml": "ldpgpl-1a.yml", + "html": "ldpgpl-1a.html", + "license": "ldpgpl-1a.LICENSE" + }, + { + "license_key": "ldpl-2.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LINUX DOCUMENTATION PROJECT LICENSE (LDPL) v2.0, 12 January 1998\n\n COPYRIGHT\n\n The copyright to each Linux Documentation Project (LDP) document is owned by its author or authors.\n\n LICENSE\n\n The following license terms apply to all LDP documents, unless otherwise stated in the document. The LDP documents may be reproduced and distributed in whole or in part, in any medium physical or electronic, provided that this license notice is displayed in the reproduction. Commercial redistribution is permitted and encouraged. Thirty days advance notice via email to the author(s) of redistribution is appreciated, to give the authors time to provide updated documents.\n\n REQUIREMENTS OF MODIFIED WORKS\n\n All modified documents, including translations, anthologies, and partial documents, must meet the following requirements:\n\n The modified version must be labeled as such.\n The person making the modifications must be identified.\n Acknowledgement of the original author must be retained.\n The location of the original unmodified document be identified.\n The original author's (or authors') name(s) may not be used to assert or imply endorsement of the resulting document without the original author's (or authors') permission. \n\n In addition it is requested that:\n The modifications (including deletions) be noted.\n The author be notified by email of the modification in advance of redistribution, if an email address is provided in the document. \n\n As a special exception, anthologies of LDP documents may include a single copy of these license terms in a conspicuous location within the anthology and replace other copies of this license with a reference to the single copy of the license without the document being considered \"modified\" for the purposes of this section.\n\n Mere aggregation of LDP documents with other documents or programs on the same media shall not cause this license to apply to those other works.\n\n All translations, derivative documents, or modified documents that incorporate any LDP document may not have more restrictive license terms than these, except that you may require distributors to make the resulting document available in source format.\n\n LDP documents are available in source format via the LDP home page at http://sunsite.unc.edu/LDP/.\n\nLDP Policy Appendices\n\n TO USE THE LDP LICENSE\n\n LDP authors who want to use the LDP License should put the following statement in their document:\n\n Copyright (c) by . This document may be distributed only subject to the terms and conditions set forth in the LDP License at . \n\n Authors may include a copy of the license in their documents, as well. If they do so, they have the option of ommitting the appendices.\n\n TO USE THE LDP LICENSE, BUT PREVENT MODIFICATION\n\n LDP authors who want to prevent modification to their document should put the following statement in their document:\n\n Copyright (c) by . This document may be distributed only subject to the terms and conditions set forth in the LDP License at , except that this document must not be distributed in modified form without the author's consent. \n\n TO USE YOUR OWN LICENSE\n\n LDP authors who want to include their own license on LDP works may do so, as long as their terms are not more restrictive than the LDP license, except that they may require that the document may not be modified.\n\n If you have questions about the LDP License, please contact Guylhem Aznar, guylhem@metalab.unc.edu.", + "json": "ldpl-2.0.json", + "yaml": "ldpl-2.0.yml", + "html": "ldpl-2.0.html", + "license": "ldpl-2.0.LICENSE" + }, + { + "license_key": "ldpm-1998", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpm-1998", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is the Linux Documentation Project ``Manifesto''\nLast Revision 21 September 1998, by Michael K. Johnson \n\nCopyright and License\nHere is a ``boilerplate'' license you may apply to your work. It has not been reviewed by a lawyer; feel free to have your own lawyer review it (or your modification of it) for its applicability to your own desires. Remember that in order for your document to be part of the LDP, you must allow unlimited reproduction and distribution without fee.\n\nThis manual may be reproduced and distributed in whole or in part, without fee, subject to the following conditions:\n\n The copyright notice above and this permission notice must be preserved complete on all complete or partial copies.\n Any translation or derived work must be approved by the author in writing before distribution.\n If you distribute this work in part, instructions for obtaining the complete version of this manual must be included, and a means for obtaining a complete version provided.\n Small portions may be reproduced as illustrations for reviews or quotes in other works without this permission notice if proper citation is given. \n\nExceptions to these rules may be granted for academic purposes: Write to the author and ask. These restrictions are here to protect us as authors, not to restrict you as learners and educators.\n\nAll source code in this document is placed under the GNU General Public License, available via anonymous FTP from prep.ai.mit.edu:/pub/gnu/COPYING.", + "json": "ldpm-1998.json", + "yaml": "ldpm-1998.yml", + "html": "ldpm-1998.html", + "license": "ldpm-1998.LICENSE" + }, + { + "license_key": "leap-motion-sdk-2019", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-leap-motion-sdk-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Leap Motion SDK Agreement\n\nA note on our SDK Agreement\nTo help avoid uncertainty about our licensing terms, please note we have a two-tier license structure for distribution of applications or technology developed with or that use our SDK:\n\n1. Applications that do not fall under the definition of \u201cSpecialized Application\u201d may be distributed by you under the SDK Agreement without requiring a separate license from us.\n\n2. Applications that are \u201cSpecialized Applications\u201d may only be distributed under a separate license from us. Please contact us at partnerships@leapmotion.com if you wish to distribute a Specialized Application.\n\nBasically, a Specialized Application means a Leap Motion-enabled Application which is: (i) priced at more than US$500 (or $240/year if on a subscription or similar basis, including without limitation the cumulative value of any Leap Motion-enabled Application lent, leased, let or hired); (ii) for use with a system, machine or device (other than a PC, mobile phone or VR/AR headset), priced at more than US$500 (or $240/year if on a subscription or similar basis); (iii) used for or designed for use with industrial, military, commercial or medical equipment or computer aided design; or (iv) the development of any other commercial product or service other than the Leap Motion-enabled Application itself where the annual revenue in aggregate for the product or service exceeds $50,000.\n\nAlso, please note that our SDK is for use only with Leap Motion hardware and software, and you may not use the SDK to develop or evaluate competing hand tracking technology.\nWe\u2019ve prepared an FAQ, available here, with discussion of key terms of our SDK Agreement. The FAQ and this note are qualified by the terms of the agreement, which you should review carefully. If you have any questions after reviewing the FAQs, this note and the SDK Agreement, please contact us at developers@leapmotion.com.\n\nLEAP MOTION SDK AGREEMENT\nThis Leap Motion SDK Agreement (\u201cAgreement\u201d) is between the individual or entity (\u201cyou\u201d or \u201cDeveloper\u201d) that accepts it, and Ultraleap Ltd. You accept this Agreement by clicking an \u201cagree\u201d or similar button, where this option is provided by Leap Motion, or if you use or access the SDK or any part of the SDK. Your agreement to these terms also binds your authorized users, your company or organization. If you do not agree to the terms of this Agreement, do not accept it. Before accepting this Agreement, please carefully read it. Capitalized terms used but not defined in the body of this Agreement have the meaning given them in the \u201cDefinitions\u201d exhibit.\nLast updated: May 28, 2019\n\n1. Development License\n1.1. Development License. Conditioned upon compliance with the terms and conditions of this Agreement, Leap Motion hereby grants you a limited, non-exclusive, personal, revocable, non-sublicensable and non-transferable license to: (a) install and use a reasonable number of copies of the SDK on computers owned or controlled by you for the purpose of developing and testing applications that are intended for use solely in connection with a Leap Motion Device, and Leap Motion Software (\u201cApplication\u201d); and (b) modify and incorporate into your Application any sample code provided in the SDK.\n\n1.2. Restrictions. The license granted to you in Section 1.1 is subject to the following restrictions, as well as others listed in this Agreement:\n1.2.1. Except as expressly permitted in Section 1.1: (a) you may not publish, distribute or copy the SDK, and (b) you may not modify or create derivative works of the SDK.\n1.2.2. You may use the SDK solely in connection with a Leap Motion Device and/or Leap Motion Software.\n1.2.3. You may not use the SDK to create, or to aid the creation, directly or indirectly, of any software or hardware which provides hand tracking functionality or which is otherwise substantially similar to the features or functionality of the Leap Motion Software.\n1.2.4. You may not, and may not enable others to, reverse engineer, decompile, disassemble or otherwise attempt to reconstruct, identify or discover any source code, underlying ideas, techniques, or algorithms in the Leap Motion Software, the Leap Motion Device or any software that forms part of the SDK, nor attempt to circumvent any related security measures (except as and only to the extent any foregoing restriction is prohibited by applicable law or permitted by applicable law notwithstanding the foregoing restriction, or to the extent as may be permitted by licensing terms governing use of any open source software components or sample code included within the SDK).\n1.2.5. You may not remove, obscure, or alter any proprietary rights or confidentiality notices within the SDK or any software, documentation or other materials in it or supplied with it.\n1.2.6. You may not create Applications or other software that prevent or degrade the interaction of Applications developed by others with the Leap Motion Software.\n1.2.7. You may not represent functionality provided by Leap Motion Software as your technology. For example, you may not describe an application, technology or feature developed or distributed by you that incorporates Leap Motion Software as your gesture or touchless control technology without providing attribution to Leap Motion.\n1.3. Updates. The terms of this Agreement will apply to any Updates that Leap Motion makes available to you. You agree that Updates may require you to change or update your Application, and may affect your ability to use, access or interact with the Leap Motion Software, the Leap Motion application store, and/or the SDK.\n1.4. Trademarks. You may indicate that your Application is \u201cfor Leap Motion\u201d or \u201cLeap Motion-enabled\u201d. However, unless provided in an agreement between you and Leap Motion, you may not otherwise use \u201cLeap Motion\u201d, \u201cLeap\u201d, or any other trademark of Leap Motion in connection with your Application or company, or in any URL, product, service, name field or logos created by you.\n\n2. Distribution License\n2.1. Distribution License. Conditioned upon compliance with the terms and conditions of this Agreement, Leap Motion hereby grants you a limited, non-exclusive, personal, revocable, non-transferable license under Leap Motion\u2019s applicable intellectual property rights to the extent necessary to: (a) copy and distribute (or have copied and distributed) the Leap Motion Redistributables, solely as compiled with, incorporated into, or packaged with, your Application (provided it is not a Specialized Application); and (b) to make (but not have made), use, sell, offer for sale and import your Application (provided it is not a Specialized Application).\n2.2. Restrictions. The license granted to you in Section 2.1 is subject to the following restrictions, as well as others listed in this Agreement:\n2.2.1. Your Application may not be a Specialized Application or for a High Risk Use (as defined in Section 4.1).\n2.2.2. You may not, directly or indirectly, publish, post or otherwise make available the Leap Motion Redistributables other than as compiled with, incorporated into, or packaged with, your Application.\n2.2.3. You may not, and may not enable others to, distribute the Non-Redistributable Materials.\n\n3. Open Source Materials, Other Licenses\nExample code made publicly available by Leap Motion on its developer web site is provided subject to the Apache 2.0 license, unless otherwise noted in the license, notice or readme files distributed with the example or in related documentation. The SDK may otherwise include software or other materials that are provided under a separate license agreement, and that separate license will govern the use of such software or other materials in the event of a conflict with this Agreement. Any such separate license agreement may be indicated in the license, notice, or readme files distributed with the applicable software or other materials or in related documentation.\n\n4. No High Risk Use; Acknowledgment and Waiver\n4.1. Notwithstanding anything in this Agreement, you are not licensed to, and you agree not to, use, copy, sell, offer for sale, or distribute the SDK, Leap Motion Devices, Leap Motion Software or Leap Motion Redistributables (whether compiled with, incorporated into, or packaged with your Application or otherwise), for or in connection with uses where failure or fault of the Leap Motion Device, Leap Motion Software, Leap Motion Redistributables or your Application could lead to death or serious bodily injury of any person, or to severe physical or environmental damage (\u201cHigh Risk Use\u201d). ANY SUCH USE IS STRICTLY PROHIBITED.\n4.2. You acknowledge the SDK may allow you to develop Applications that enable the control of motorized or mechanical equipment, or other systems, machines or devices. If you elect to use the SDK in such a way, you must take steps to design and test your Applications to ensure that your Applications do not present risks of personal injury or death, property damage, or other losses. The Leap Motion Device, the Leap Motion Software, the Leap Motion Redistributables and other software in the SDK may not always function as intended. You must design your Applications so that any failure of a Leap Motion Device, the Leap Motion Software, a Leap Motion Redistributable and/or such other software does not cause personal injury or death, property damage, or other losses. If you choose to use the SDK, (i) you assume all risk that use of the Leap Motion Device, the Leap Motion Software, the Leap Motion Redistributables and/or such other software by you or by any others causes any harm or loss, including to the end users of your Applications or to third parties, (ii) you hereby waive, on behalf of yourself and your Authorized Users, all claims against Leap Motion and its affiliates related to such use, harm or loss (including, but not limited to, any claim that a Leap Motion Device, the Leap Motion Software, a Leap Motion Redistributable or such other software is defective), and (iii) you agree to hold Leap Motion and its affiliates harmless from such claims.\n\n5. Confidentiality and Privacy\n5.1. Beta Software etc. Obligations. You acknowledge and agree that Leap Motion may share alpha or beta software or hardware with you that it identifies as non-public. If so, you agree not to disclose such software or hardware to others without the prior written consent of Leap Motion until the time, if any, it is made public by Leap Motion, and to use such software or hardware only for the purposes expressly permitted by this Agreement.\n5.2. Leap Motion Use of Assets. Subject to the terms and conditions of this Agreement, you grant to Leap Motion and its affiliates a non-exclusive, worldwide and royalty-free limited license to use, reproduce, display, perform, publish and distribute screenshots, elements, assets, photographic, graphic or video reproductions or fragments of your Application in any medium or media, solely for purposes of promotion of your Application or of Leap Motion and its technology and business. This license will terminate if we terminate this Agreement, or, if you terminate it, if you inform us you have terminated it, except that in both cases the license will continue after termination with respect to any materials we created and first distributed prior to our termination or your notice of termination to us.\n5.3. Your Information. Leap Motion may collect personal information provided by you or your Authorized Users to Leap Motion in connection with the SDK, and may collect other information from you or your Authorized Users, including technical, non-personally identifiable and/or aggregated information such as usage statistics, hardware configuration, problem / fault data, IP addresses, version number of the SDK, information about which tools and/or services in the SDK are being used and how they are being used, and any other information described in Leap Motion\u2019s privacy policy, currently available at http://leapmotion.com/legal. Leap Motion may use the information collected to facilitate the provision of Updates and other services to you, to verify compliance with, and enforce, the terms of this Agreement, to improve the SDK and Leap Motion\u2019s products, and for any other purposes set out in Leap Motion\u2019s privacy policy (these uses, collectively, are \u201cPermitted Uses\u201d). By submitting information about you and/or your Authorized Users to Leap Motion through your access and use of the SDK, you consent to Leap Motion\u2019s collection and use of the information for the Permitted Uses and represent that you have obtained all consents and permits necessary under applicable law to disclose your Authorized Users\u2019 information to Leap Motion for the Permitted Uses. You further agree that Leap Motion may provide any information collected under this Section 5.3, including your or your Authorized Users\u2019 user name, IP address or other identifying information to law enforcement authorities or as required by applicable law or regulation.\n\n6. Ownership and Feedback\n6.1. Ownership. Except for the license rights granted by you in Section 5.2, and Leap Motion\u2019s ownership of the Leap Motion Software, the Leap Motion application store, and the Leap Motion Redistributables, Leap Motion agrees that it obtains no right, title or interest from you (or your licensors) under this Agreement in or to any of your Applications, including any intellectual property rights which subsist in those Applications. As between Leap Motion and you, Leap Motion owns all right, title and interest, including all intellectual property rights, in and to the SDK, the Leap Motion Software and the Leap Motion Redistributables, other than any third party software or materials incorporated in the SDK, and you agree not to contest Leap Motion\u2019s ownership of any of the foregoing.\n6.2. Feedback. You may (but are not required to) provide feedback, comments and suggestions (collectively, \u201cFeedback\u201d) to Leap Motion. You hereby grant to Leap Motion a non-exclusive, perpetual, irrevocable, paid-up, transferable, sub-licensable, worldwide license under all intellectual property rights covering such Feedback to use, disclose and exploit all such Feedback for any purpose.\n\n7. Your Obligations and Warranties\nIn addition to your other obligations under this Agreement, you warrant and agree that:\n7.1. You are at least 18 years of age and have the right and authority to enter into this Agreement on your own behalf and that of your Authorized Users, or if you are entering into this Agreement on behalf of your company or organization, you have the right and authority to legally bind your company or organization and its Authorized Users.\n7.2. You will use the SDK only in accordance with all accompanying documentation, in the manner expressly permitted by this Agreement, and your use of the SDK, and the marketing, sales and distribution of your Application, will be in compliance with all applicable laws and regulations and all U.S. and local or foreign export and re-export restrictions applicable to the technology and documentation provided under this Agreement (including privacy and data security laws and regulations), and you will not develop any Application which would commit or facilitate the commission of a crime, or other tortious, unlawful, or illegal act.\n\n8. Agreement and Development Program\nWe reserve the right to change this Agreement, the SDK or the Leap Motion development and licensing program at any time in our discretion. Leap Motion may require that you either accept and agree to the new terms of this Agreement, or, if you do not agree to the new terms, cease or terminate your use of the SDK. Your continued use of the SDK after changes to this Agreement take effect will constitute your acceptance of the changes. If you do not agree to a change, you must stop using the SDK and terminate this Agreement. Any termination of this Agreement by you under this Section 8 (and only this Section 8) will not affect your right, subject to your continued compliance with your obligations under this Agreement, to continue to distribute versions of your Application created and first distributed before termination, and will not affect the right of your End Users to continue using such versions of your Application, both of which rights will survive termination.\n\n9. Term and Termination\n9.1. Term. This Agreement will continue to apply until terminated by either you or Leap Motion as set out below.\n9.2. Termination by You. If you want to terminate this Agreement, you may terminate it by uninstalling and destroying all copies of the SDK that are in the possession, custody or control of you, your Authorized Users and your organization.\n9.3. Termination by Leap Motion. Leap Motion may at any time, terminate this Agreement with you for any reason or for no reason in Leap Motion\u2019s sole discretion, including as a result of non-compliance by you with the restrictions in Section 1.2 or Section 2.2, or for other reasons.\n9.4. Effect of Termination. Upon termination of this Agreement, all rights granted to you under this Agreement will immediately terminate and you must immediately cease all use and destroy all copies of the SDK in your and your Authorized Users\u2019 possession, custody or control, and, except as specifically set out in Section 8, cease your distribution of Applications. Sections 1.2, 2.2, 2.2.3, 5.1, 5.2, 6, 9.4, and 10 - 13, and the Definitions exhibit, will survive termination of this Agreement. Termination of this Agreement will not affect the right of your End Users who have downloaded your Application prior to termination to continue using it.\n\n10. Indemnification.\nYou agree to indemnify, hold harmless and, at Leap Motion\u2019s option, defend Leap Motion and its affiliates and their respective officers, directors, employees, agents, and representatives harmless from any and all judgments, awards, settlements, liabilities, damages, costs, penalties, fines and other expenses (including court costs and reasonable attorneys\u2019 fees) incurred by them arising out of or relating to any third party claim (a) with respect to your Application, including products liability, privacy, or intellectual property infringement claims, or (b) based upon your negligence or wilful misconduct or any breach or alleged breach of your representations, warranties, and covenants under this Agreement. In no event may you enter into any settlement or like agreement with a third party that affects Leap Motion rights or binds Leap Motion in any way, without the prior written consent of Leap Motion.\n\n11. Warranty Disclaimer.\nTHE SDK, THE LEAP MOTION SOFTWARE AND THE LEAP MOTION REDISTRIBUTABLES ARE PROVIDED \\\"AS IS\\\" WITHOUT WARRANTY OF ANY KIND. LEAP MOTION, ON BEHALF OF ITSELF AND ITS SUPPLIERS, HEREBY DISCLAIMS ALL REPRESENTATIONS, PROMISES, OR WARRANTIES, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH RESPECT TO THE SDK, THE LEAP MOTION SOFTWARE AND THE LEAP MOTION REDISTRIBUTABLES, INCLUDING THEIR CONDITION, AVAILABILITY, OR THE EXISTENCE OF ANY LATENT DEFECTS, AND LEAP MOTION SPECIFICALLY DISCLAIMS ALL IMPLIED WARRANTIES OF MERCHANTABILITY, TITLE, NONINFRINGEMENT, SUITABILITY, AND FITNESS FOR ANY PURPOSE. LEAP MOTION DOES NOT WARRANT THAT THE SDK, THE LEAP MOTION SOFTWARE OR THE LEAP MOTION REDISTRIBUTABLES WILL BE ERROR-FREE OR THAT THEY WILL WORK WITHOUT INTERRUPTION.\n\n12. Limitation of Liability.\nIN NO EVENT WILL LEAP MOTION'S LIABILITY, OR THOSE OF ITS SUPPLIERS, ARISING OUT OF OR RELATED TO THIS AGREEMENT OR TO THE SDK EXCEED ONE THOUSAND DOLLARS. EXCEPT FOR INDEMNIFICATION OBLIGATIONS, OR A BREACH OF THE LICENSE RESTRICTIONS OR CONFIDENTIALITY OBLIGATIONS, IN NO EVENT WILL EITHER PARTY HAVE ANY LIABILITY FOR ANY INDIRECT, INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES, HOWEVER CAUSED AND BASED ON ANY THEORY OF LIABILITY, WHETHER FOR BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE) OR OTHERWISE, ARISING OUT OF OR RELATED TO THIS AGREEMENT, INCLUDING BUT NOT LIMITED TO LOSS OF ANTICIPATED PROFITS OR BUSINESS INTERRUPTION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS WILL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY. THE PARTIES AGREE THAT THE FOREGOING LIMITATIONS REPRESENT A REASONABLE ALLOCATION OF RISK UNDER THIS AGREEMENT.\n\n13. Miscellaneous.\n13.1. Assignment. You may not assign this Agreement without the prior written consent of Leap Motion. Any assignment without such consent is void and of no effect. Leap Motion may assign this Agreement without your consent in connection with (a) a merger or consolidation of Leap Motion, (b) a sale or assignment of substantially all its assets, or (c) any other transaction which results in another entity or person owning substantially all of the assets of Leap Motion. In the event of a permitted assignment, this Agreement will inure to the benefit of and be binding upon the parties and their respective successors and permitted assigns.\n13.2. Waiver; Severability. The failure of the other party to enforce any rights under this Agreement will not be deemed a waiver of any rights. The rights and remedies of the parties in this Agreement are not exclusive and are in addition to any other rights and remedies provided by law. If any provision of this Agreement is held by a court of competent jurisdiction to be contrary to law, the remaining provisions of this Agreement will remain in full force and effect.\n13.3. Reservation. All licenses not expressly granted in this Agreement are reserved and no other licenses, immunity or rights, express or implied, are granted by Leap Motion, by implication, estoppel, or otherwise. The software in the SDK is licensed, not sold.\n13.4. Export Restrictions. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users, and end use.\n13.5. Governing Law and Jurisdiction. This Agreement will be exclusively governed by and construed under the laws of the State of California, without reference to or application of rules governing choice of laws. All disputes arising out of or related to this Agreement will be subject to the exclusive jurisdiction of the state and federal courts located in San Francisco, California and you hereby consent to such jurisdiction. However, Leap Motion may apply to any court or tribunal worldwide, including but not limited to those having jurisdiction over you or your Authorized Users, to seek injunctive relief.\n13.6. Relationship of the Parties. This Agreement does not create any agency, partnership, or joint venture relationship between Leap Motion and you. This Agreement is for the sole benefit of Leap Motion and you (and indemnified parties), and no other persons will have any right or remedy under this Agreement.\n13.7. Notice. The address for notice to Leap Motion under this Agreement is:\nUltraleap Ltd.\nThe West Wing\nGlass Wharf\nBristol, BS2 0EL\nUnited Kingdom\nLeap Motion may provide you notice under this Agreement by email or other electronic communication or by posting communications to its development community on the Leap Motion developer portal. You consent to receive such notices in any of the foregoing manners and agree that any such notices by Leap Motion will satisfy any legal communication requirements.\n13.8. Entire Agreement. This Agreement is the entire understanding of the parties with respect to its subject matter and supersedes any previous or contemporaneous communications, whether oral or written with respect to such subject matter.\n\nDefinitions\nWhenever capitalized in this Agreement:\n\u201cAuthorized Users\u201d means your employees and contractors, members of your organization or, if you are an educational institution, your faculty, staff and registered students, who (a) have a demonstrable need to know or use the SDK in order to develop and test Applications on your behalf and (b) each have written and binding agreements with you to protect against the unauthorized use and disclosure of the SDK consistent with the terms and conditions of this Agreement. Authorized Users do not include End Users.\n\u201cEnd User\u201d means your end user customer(s) or licensee(s).\n\u201cLeap Motion\u201d \u201cwe\u201d or \u201cus\u201d means Ultraleap Ltd., with a principal place of business at The West Wing, Glass Wharf, Bristol, BS2 0EL, United Kingdom.\n\u201cLeap Motion Device\u201d means the Leap Motion Controller, a USB peripheral device that detects and reads movements within a 3-D interaction space to precisely interact with and control software on a computing device, or a Leap Motion-authorized embedded optical module.\n\u201cLeap Motion Redistributables\u201d means any .lib code, .dll files, .so files, sample code, or other materials we specifically designate in the SDK as made available for incorporation into or distribution with Applications.\n\u201cLeap Motion Software\u201d means the Leap Motion core services application and related applications that interact with a Leap Motion Device and an operating system to make motion control functionality available to Applications, and includes any Updates thereto.\n\u201cNon-Redistributable Materials\u201d means the Leap Motion Software, and any other code, files or materials that are not specifically designated in the SDK as made available for incorporation into Applications or that are specifically designated in the SDK as not subject to distribution.\n\u201cSDK\u201d means, collectively, the Leap Motion Redistributables, tools, APIs, sample code, software, documentation, other materials and any updates to the foregoing that may be provided or made available to you by Leap Motion in connection with this Agreement, via the Leap Motion developer portal or otherwise for use in connection with the Leap Motion development program to develop Applications.\n\u201cSpecialized Application\u201d means a Leap Motion-enabled Application which is: (i) priced at more than US$500 (or $240/year if on a subscription or similar basis, including without limitation the cumulative value of any Leap Motion-enabled Application lent, leased, let or hired); (ii) for use with a system, machine or device (other than a PC, mobile phone or VR/AR headset), priced at more than US$500 (or $240/year if on a subscription or similar basis); (iii) used for or designed for use with industrial, military, commercial or medical equipment or computer aided design; or (iv) the development of any other commercial product or service other than the Leap Motion-enabled Application itself where the annual revenue in aggregate for the product or service exceeds $50,000.\n\u201cUpdates\u201d means updates, upgrades, modifications, enhancements, revisions, new releases or new versions to the SDK that Leap Motion may make available to you in connection with this Agreement.\nOther capitalized terms used in this Agreement have the meaning given them elsewhere in this Agreement.\n\nAddendum 1\n(to Leap Motion SDK Agreement)\nAdditional Terms for Image API\nThe following terms are in addition to the terms of the Leap Motion SDK Agreement (\u201cAgreement\u201d) and apply to any use of the Leap Motion application programming interface that enables you or your Application to access images and / or video streams from a Leap Motion Device (\u201cImage API\u201d):\n\n1. Use of Image API.\n1.1. Purpose. You and/or your Application may access the Image API and use image data available through the Image API only for the purpose of developing and testing Applications, and only for use with a Leap Motion Device. You may not use the Image API to develop or aid development of competing motion tracking hardware or software. Any use of the Image API must be in accordance with the terms of the Agreement and this Addendum.\n1.2. Privacy\n1.2.1. If you and/or your Application collects, uploads, stores, transmits or shares images, videos or other personal information available through the Image API, either through or in connection with your Application, you must expressly provide users with your privacy policy and adhere to it.\n1.2.2. You must get specific opt-in consent from the user for any use that is beyond the limited and express purpose of your Application.\n1.2.3. You and your Application must use and store information collected from users securely and only for as long as it is needed.\n1.2.4. You agree that you will protect the privacy and legal rights of users, and comply with all applicable criminal, civil and statutory privacy laws and regulations.", + "json": "leap-motion-sdk-2019.json", + "yaml": "leap-motion-sdk-2019.yml", + "html": "leap-motion-sdk-2019.html", + "license": "leap-motion-sdk-2019.LICENSE" + }, + { + "license_key": "leptonica", + "category": "Permissive", + "spdx_license_key": "Leptonica", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software is distributed in the hope that it will be useful, but with NO WARRANTY OF ANY KIND.\n\nNo author or distributor accepts responsibility to anyone for the consequences of using this software, or for whether it serves any particular purpose or works at all, unless he or she says so in writing. Everyone is granted permission to copy, modify and redistribute this source code, for commercial or non-commercial purposes, with the following restrictions: \n\n(1) the origin of this source code must not be misrepresented; \n(2) modified versions must be plainly marked as such; and \n(3) this notice may not be removed or altered from any source or modified source distribution.", + "json": "leptonica.json", + "yaml": "leptonica.yml", + "html": "leptonica.html", + "license": "leptonica.LICENSE" + }, + { + "license_key": "lgpl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-2.0-only", + "other_spdx_license_keys": [ + "LGPL-2.0", + "LicenseRef-LGPL-2", + "LicenseRef-LGPL-2.0" + ], + "is_exception": false, + "is_deprecated": false, + "text": " GNU LIBRARY GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright (C) 1991 Free Software Foundation, Inc.\n51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n[This is the first released version of the library GPL. It is\n numbered 2 because it goes with version 2 of the ordinary GPL.]\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicenses are intended to guarantee your freedom to share and change\nfree software--to make sure the software is free for all its users.\n\n This license, the Library General Public License, applies to some\nspecially designated Free Software Foundation software, and to any\nother libraries whose authors decide to use it. You can use it for\nyour libraries, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\n To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the library, or if you modify it.\n\n For example, if you distribute copies of the library, whether gratis\nor for a fee, you must give the recipients all the rights that we gave\nyou. You must make sure that they, too, receive or can get the source\ncode. If you link a program with the library, you must provide\ncomplete object files to the recipients so that they can relink them\nwith the library, after making changes to the library and recompiling\nit. And you must show them these terms so they know their rights.\n\n Our method of protecting your rights has two steps: (1) copyright\nthe library, and (2) offer you this license which gives you legal\npermission to copy, distribute and/or modify the library.\n\n Also, for each distributor's protection, we want to make certain\nthat everyone understands that there is no warranty for this free\nlibrary. If the library is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original\nversion, so that any problems introduced by others will not reflect on\nthe original authors' reputations.\n\n Finally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that companies distributing free\nsoftware will individually obtain patent licenses, thus in effect\ntransforming the program into proprietary software. To prevent this,\nwe have made it clear that any patent must be licensed for everyone's\nfree use or not licensed at all.\n\n Most GNU software, including some libraries, is covered by the ordinary\nGNU General Public License, which was designed for utility programs. This\nlicense, the GNU Library General Public License, applies to certain\ndesignated libraries. This license is quite different from the ordinary\none; be sure to read it in full, and don't assume that anything in it is\nthe same as in the ordinary license.\n\n The reason we have a separate public license for some libraries is that\nthey blur the distinction we usually make between modifying or adding to a\nprogram and simply using it. Linking a program with a library, without\nchanging the library, is in some sense simply using the library, and is\nanalogous to running a utility program or application program. However, in\na textual and legal sense, the linked executable is a combined work, a\nderivative of the original library, and the ordinary General Public License\ntreats it as such.\n\n Because of this blurred distinction, using the ordinary General\nPublic License for libraries did not effectively promote software\nsharing, because most developers did not use the libraries. We\nconcluded that weaker conditions might promote sharing better.\n\n However, unrestricted linking of non-free programs would deprive the\nusers of those programs of all benefit from the free status of the\nlibraries themselves. This Library General Public License is intended to\npermit developers of non-free programs to use free libraries, while\npreserving your freedom as a user of such programs to change the free\nlibraries that are incorporated in them. (We have not seen how to achieve\nthis as regards changes in header files, but we have achieved it as regards\nchanges in the actual functions of the Library.) The hope is that this\nwill lead to faster development of free libraries.\n\n The precise terms and conditions for copying, distribution and\nmodification follow. Pay close attention to the difference between a\n\"work based on the library\" and a \"work that uses the library\". The\nformer contains code derived from the library, while the latter only\nworks together with the library.\n\n Note that it is possible for a library to be covered by the ordinary\nGeneral Public License rather than by this special one.\n\n GNU LIBRARY GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement applies to any software library which\ncontains a notice placed by the copyright holder or other authorized\nparty saying it may be distributed under the terms of this Library\nGeneral Public License (also called \"this License\"). Each licensee is\naddressed as \"you\".\n\n A \"library\" means a collection of software functions and/or data\nprepared so as to be conveniently linked with application programs\n(which use some of those functions and data) to form executables.\n\n The \"Library\", below, refers to any such software library or work\nwhich has been distributed under these terms. A \"work based on the\nLibrary\" means either the Library or any derivative work under\ncopyright law: that is to say, a work containing the Library or a\nportion of it, either verbatim or with modifications and/or translated\nstraightforwardly into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".)\n\n \"Source code\" for a work means the preferred form of the work for\nmaking modifications to it. For a library, complete source code means\nall the source code for all modules it contains, plus any associated\ninterface definition files, plus the scripts used to control compilation\nand installation of the library.\n\n Activities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning a program using the Library is not restricted, and output from\nsuch a program is covered only if its contents constitute a work based\non the Library (independent of the use of the Library in a tool for\nwriting it). Whether that is true depends on what the Library does\nand what the program that uses the Library does.\n \n 1. You may copy and distribute verbatim copies of the Library's\ncomplete source code as you receive it, in any medium, provided that\nyou conspicuously and appropriately publish on each copy an\nappropriate copyright notice and disclaimer of warranty; keep intact\nall the notices that refer to this License and to the absence of any\nwarranty; and distribute a copy of this License along with the\nLibrary.\n\n You may charge a fee for the physical act of transferring a copy,\nand you may at your option offer warranty protection in exchange for a\nfee.\n\n 2. You may modify your copy or copies of the Library or any portion\nof it, thus forming a work based on the Library, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) The modified work must itself be a software library.\n\n b) You must cause the files modified to carry prominent notices\n stating that you changed the files and the date of any change.\n\n c) You must cause the whole of the work to be licensed at no\n charge to all third parties under the terms of this License.\n\n d) If a facility in the modified Library refers to a function or a\n table of data to be supplied by an application program that uses\n the facility, other than as an argument passed when the facility\n is invoked, then you must make a good faith effort to ensure that,\n in the event an application does not supply such function or\n table, the facility still operates, and performs whatever part of\n its purpose remains meaningful.\n\n (For example, a function in a library to compute square roots has\n a purpose that is entirely well-defined independent of the\n application. Therefore, Subsection 2d requires that any\n application-supplied function or table used by this function must\n be optional: if the application does not supply it, the square\n root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Library,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Library, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library\nwith the Library (or with a work based on the Library) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may opt to apply the terms of the ordinary GNU General Public\nLicense instead of this License to a given copy of the Library. To do\nthis, you must alter all the notices that refer to this License, so\nthat they refer to the ordinary GNU General Public License, version 2,\ninstead of to this License. (If a newer version than version 2 of the\nordinary GNU General Public License has appeared, then you can specify\nthat version instead if you wish.) Do not make any other change in\nthese notices.\n\n Once this change is made in a given copy, it is irreversible for\nthat copy, so the ordinary GNU General Public License applies to all\nsubsequent copies and derivative works made from that copy.\n\n This option is useful when you wish to copy part of the code of\nthe Library into a program that is not a library.\n\n 4. You may copy and distribute the Library (or a portion or\nderivative of it, under Section 2) in object code or executable form\nunder the terms of Sections 1 and 2 above provided that you accompany\nit with the complete corresponding machine-readable source code, which\nmust be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily used for software interchange.\n\n If distribution of object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the\nsource code from the same place satisfies the requirement to\ndistribute the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 5. A program that contains no derivative of any portion of the\nLibrary, but is designed to work with the Library by being compiled or\nlinked with it, is called a \"work that uses the Library\". Such a\nwork, in isolation, is not a derivative work of the Library, and\ntherefore falls outside the scope of this License.\n\n However, linking a \"work that uses the Library\" with the Library\ncreates an executable that is a derivative of the Library (because it\ncontains portions of the Library), rather than a \"work that uses the\nlibrary\". The executable is therefore covered by this License.\nSection 6 states terms for distribution of such executables.\n\n When a \"work that uses the Library\" uses material from a header file\nthat is part of the Library, the object code for the work may be a\nderivative work of the Library even though the source code is not.\nWhether this is true is especially significant if the work can be\nlinked without the Library, or if the work is itself a library. The\nthreshold for this to be true is not precisely defined by law.\n\n If such an object file uses only numerical parameters, data\nstructure layouts and accessors, and small macros and small inline\nfunctions (ten lines or less in length), then the use of the object\nfile is unrestricted, regardless of whether it is legally a derivative\nwork. (Executables containing this object code plus portions of the\nLibrary will still fall under Section 6.)\n\n Otherwise, if the work is a derivative of the Library, you may\ndistribute the object code for the work under the terms of Section 6.\nAny executables containing that work also fall under Section 6,\nwhether or not they are linked directly with the Library itself.\n\n 6. As an exception to the Sections above, you may also compile or\nlink a \"work that uses the Library\" with the Library to produce a\nwork containing portions of the Library, and distribute that work\nunder terms of your choice, provided that the terms permit\nmodification of the work for the customer's own use and reverse\nengineering for debugging such modifications.\n\n You must give prominent notice with each copy of the work that the\nLibrary is used in it and that the Library and its use are covered by\nthis License. You must supply a copy of this License. If the work\nduring execution displays copyright notices, you must include the\ncopyright notice for the Library among them, as well as a reference\ndirecting the user to the copy of this License. Also, you must do one\nof these things:\n\n a) Accompany the work with the complete corresponding\n machine-readable source code for the Library including whatever\n changes were used in the work (which must be distributed under\n Sections 1 and 2 above); and, if the work is an executable linked\n with the Library, with the complete machine-readable \"work that\n uses the Library\", as object code and/or source code, so that the\n user can modify the Library and then relink to produce a modified\n executable containing the modified Library. (It is understood\n that the user who changes the contents of definitions files in the\n Library will not necessarily be able to recompile the application\n to use the modified definitions.)\n\n b) Accompany the work with a written offer, valid for at\n least three years, to give the same user the materials\n specified in Subsection 6a, above, for a charge no more\n than the cost of performing this distribution.\n\n c) If distribution of the work is made by offering access to copy\n from a designated place, offer equivalent access to copy the above\n specified materials from the same place.\n\n d) Verify that the user has already received a copy of these\n materials or that you have already sent this user a copy.\n\n For an executable, the required form of the \"work that uses the\nLibrary\" must include any data and utility programs needed for\nreproducing the executable from it. However, as a special exception,\nthe source code distributed need not include anything that is normally\ndistributed (in either source or binary form) with the major\ncomponents (compiler, kernel, and so on) of the operating system on\nwhich the executable runs, unless that component itself accompanies\nthe executable.\n\n It may happen that this requirement contradicts the license\nrestrictions of other proprietary libraries that do not normally\naccompany the operating system. Such a contradiction means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n\n 7. You may place library facilities that are a work based on the\nLibrary side-by-side in a single library together with other library\nfacilities not covered by this License, and distribute such a combined\nlibrary, provided that the separate distribution of the work based on\nthe Library and of the other library facilities is otherwise\npermitted, and provided that you do these two things:\n\n a) Accompany the combined library with a copy of the same work\n based on the Library, uncombined with any other library\n facilities. This must be distributed under the terms of the\n Sections above.\n\n b) Give prominent notice with the combined library of the fact\n that part of it is a work based on the Library, and explaining\n where to find the accompanying uncombined form of the same work.\n\n 8. You may not copy, modify, sublicense, link with, or distribute\nthe Library except as expressly provided under this License. Any\nattempt otherwise to copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically terminate your\nrights under this License. However, parties who have received copies,\nor rights, from you under this License will not have their licenses\nterminated so long as such parties remain in full compliance.\n\n 9. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Library or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Library (or any work based on the\nLibrary), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Library or works based on it.\n\n 10. Each time you redistribute the Library (or any work based on the\nLibrary), the recipient automatically receives a license from the\noriginal licensor to copy, distribute, link with or modify the Library\nsubject to these terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n 11. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Library at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Library by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply,\nand the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 12. If the distribution and/or use of the Library is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Library under this License may add\nan explicit geographical distribution limitation excluding those countries,\nso that distribution is permitted only in or among countries not thus\nexcluded. In such case, this License incorporates the limitation as if\nwritten in the body of this License.\n\n 13. The Free Software Foundation may publish revised and/or new\nversions of the Library General Public License from time to time.\nSuch new versions will be similar in spirit to the present version,\nbut may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Library does not specify a\nlicense version number, you may choose any version ever published by\nthe Free Software Foundation.\n\n 14. If you wish to incorporate parts of the Library into other free\nprograms whose distribution conditions are incompatible with these,\nwrite to the author to ask for permission. For software which is\ncopyrighted by the Free Software Foundation, write to the Free\nSoftware Foundation; we sometimes make exceptions for this. Our\ndecision will be guided by the two goals of preserving the free status\nof all derivatives of our free software and of promoting the sharing\nand reuse of software generally.\n\n NO WARRANTY\n\n 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Libraries\n\n If you develop a new library, and you want it to be of the greatest\npossible use to the public, we recommend making it free software that\neveryone can redistribute and change. You can do so by permitting\nredistribution under these terms (or, alternatively, under the terms of the\nordinary General Public License).\n\n To apply these terms, attach the following notices to the library. It is\nsafest to attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public\n License as published by the Free Software Foundation; either\n version 2 of the License, or (at your option) any later version.\n\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n\n You should have received a copy of the GNU Library General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the library, if\nnecessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the\n library `Frob' (a library for tweaking knobs) written by James Random Hacker.\n\n , 1 April 1990\n Ty Coon, President of Vice\n\nThat's all there is to it!", + "json": "lgpl-2.0.json", + "yaml": "lgpl-2.0.yml", + "html": "lgpl-2.0.html", + "license": "lgpl-2.0.LICENSE" + }, + { + "license_key": "lgpl-2.0-fltk", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": " FLTK License\n December 11, 2001\n\nThe FLTK library and included programs are provided under the terms\nof the GNU Library General Public License (LGPL) with the following\nexceptions:\n\n 1. Modifications to the FLTK configure script, config\n header file, and makefiles by themselves to support\n a specific platform do not constitute a modified or\n derivative work.\n\n The authors do request that such modifications be\n contributed to the FLTK project - send all\n contributions to \"fltk-bugs@fltk.org\".\n\n 2. Widgets that are subclassed from FLTK widgets do not\n constitute a derivative work.\n\n 3. Static linking of applications and widgets to the\n FLTK library does not constitute a derivative work\n and does not require the author to provide source\n code for the application or widget, use the shared\n FLTK libraries, or link their applications or\n widgets against a user-supplied version of FLTK.\n\n If you link the application or widget to a modified\n version of FLTK, then the changes to FLTK must be\n provided under the terms of the LGPL in sections\n 1, 2, and 4.\n\n 4. You do not have to provide a copy of the FLTK license\n with programs that are linked to the FLTK library, nor\n do you have to identify the FLTK license in your\n program or documentation as required by section 6\n of the LGPL.\n\n However, programs must still identify their use of FLTK.\n The following example statement can be included in user\n documentation to satisfy this requirement:\n\n [program/widget] is based in part on the work of\n the FLTK project (http://www.fltk.org).", + "json": "lgpl-2.0-fltk.json", + "yaml": "lgpl-2.0-fltk.yml", + "html": "lgpl-2.0-fltk.html", + "license": "lgpl-2.0-fltk.LICENSE" + }, + { + "license_key": "lgpl-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-2.0-or-later", + "other_spdx_license_keys": [ + "LGPL-2.0+", + "LicenseRef-LGPL" + ], + "is_exception": false, + "is_deprecated": false, + "text": "This library is free software; you can redistribute it and/or modify it under\nthe terms of the GNU Library General Public License as published by the Free\nSoftware Foundation; either version 2 of the License, or (at your option) any\nlater version.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU Library General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public License along\nwith this library; if not, write to the Free Software Foundation, Inc., 51\nFranklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n\n GNU LIBRARY GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright (C) 1991 Free Software Foundation, Inc.\n51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n[This is the first released version of the library GPL. It is\n numbered 2 because it goes with version 2 of the ordinary GPL.]\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicenses are intended to guarantee your freedom to share and change\nfree software--to make sure the software is free for all its users.\n\n This license, the Library General Public License, applies to some\nspecially designated Free Software Foundation software, and to any\nother libraries whose authors decide to use it. You can use it for\nyour libraries, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\n To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the library, or if you modify it.\n\n For example, if you distribute copies of the library, whether gratis\nor for a fee, you must give the recipients all the rights that we gave\nyou. You must make sure that they, too, receive or can get the source\ncode. If you link a program with the library, you must provide\ncomplete object files to the recipients so that they can relink them\nwith the library, after making changes to the library and recompiling\nit. And you must show them these terms so they know their rights.\n\n Our method of protecting your rights has two steps: (1) copyright\nthe library, and (2) offer you this license which gives you legal\npermission to copy, distribute and/or modify the library.\n\n Also, for each distributor's protection, we want to make certain\nthat everyone understands that there is no warranty for this free\nlibrary. If the library is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original\nversion, so that any problems introduced by others will not reflect on\nthe original authors' reputations.\n\n Finally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that companies distributing free\nsoftware will individually obtain patent licenses, thus in effect\ntransforming the program into proprietary software. To prevent this,\nwe have made it clear that any patent must be licensed for everyone's\nfree use or not licensed at all.\n\n Most GNU software, including some libraries, is covered by the ordinary\nGNU General Public License, which was designed for utility programs. This\nlicense, the GNU Library General Public License, applies to certain\ndesignated libraries. This license is quite different from the ordinary\none; be sure to read it in full, and don't assume that anything in it is\nthe same as in the ordinary license.\n\n The reason we have a separate public license for some libraries is that\nthey blur the distinction we usually make between modifying or adding to a\nprogram and simply using it. Linking a program with a library, without\nchanging the library, is in some sense simply using the library, and is\nanalogous to running a utility program or application program. However, in\na textual and legal sense, the linked executable is a combined work, a\nderivative of the original library, and the ordinary General Public License\ntreats it as such.\n\n Because of this blurred distinction, using the ordinary General\nPublic License for libraries did not effectively promote software\nsharing, because most developers did not use the libraries. We\nconcluded that weaker conditions might promote sharing better.\n\n However, unrestricted linking of non-free programs would deprive the\nusers of those programs of all benefit from the free status of the\nlibraries themselves. This Library General Public License is intended to\npermit developers of non-free programs to use free libraries, while\npreserving your freedom as a user of such programs to change the free\nlibraries that are incorporated in them. (We have not seen how to achieve\nthis as regards changes in header files, but we have achieved it as regards\nchanges in the actual functions of the Library.) The hope is that this\nwill lead to faster development of free libraries.\n\n The precise terms and conditions for copying, distribution and\nmodification follow. Pay close attention to the difference between a\n\"work based on the library\" and a \"work that uses the library\". The\nformer contains code derived from the library, while the latter only\nworks together with the library.\n\n Note that it is possible for a library to be covered by the ordinary\nGeneral Public License rather than by this special one.\n\n GNU LIBRARY GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement applies to any software library which\ncontains a notice placed by the copyright holder or other authorized\nparty saying it may be distributed under the terms of this Library\nGeneral Public License (also called \"this License\"). Each licensee is\naddressed as \"you\".\n\n A \"library\" means a collection of software functions and/or data\nprepared so as to be conveniently linked with application programs\n(which use some of those functions and data) to form executables.\n\n The \"Library\", below, refers to any such software library or work\nwhich has been distributed under these terms. A \"work based on the\nLibrary\" means either the Library or any derivative work under\ncopyright law: that is to say, a work containing the Library or a\nportion of it, either verbatim or with modifications and/or translated\nstraightforwardly into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".)\n\n \"Source code\" for a work means the preferred form of the work for\nmaking modifications to it. For a library, complete source code means\nall the source code for all modules it contains, plus any associated\ninterface definition files, plus the scripts used to control compilation\nand installation of the library.\n\n Activities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning a program using the Library is not restricted, and output from\nsuch a program is covered only if its contents constitute a work based\non the Library (independent of the use of the Library in a tool for\nwriting it). Whether that is true depends on what the Library does\nand what the program that uses the Library does.\n \n 1. You may copy and distribute verbatim copies of the Library's\ncomplete source code as you receive it, in any medium, provided that\nyou conspicuously and appropriately publish on each copy an\nappropriate copyright notice and disclaimer of warranty; keep intact\nall the notices that refer to this License and to the absence of any\nwarranty; and distribute a copy of this License along with the\nLibrary.\n\n You may charge a fee for the physical act of transferring a copy,\nand you may at your option offer warranty protection in exchange for a\nfee.\n\n 2. You may modify your copy or copies of the Library or any portion\nof it, thus forming a work based on the Library, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) The modified work must itself be a software library.\n\n b) You must cause the files modified to carry prominent notices\n stating that you changed the files and the date of any change.\n\n c) You must cause the whole of the work to be licensed at no\n charge to all third parties under the terms of this License.\n\n d) If a facility in the modified Library refers to a function or a\n table of data to be supplied by an application program that uses\n the facility, other than as an argument passed when the facility\n is invoked, then you must make a good faith effort to ensure that,\n in the event an application does not supply such function or\n table, the facility still operates, and performs whatever part of\n its purpose remains meaningful.\n\n (For example, a function in a library to compute square roots has\n a purpose that is entirely well-defined independent of the\n application. Therefore, Subsection 2d requires that any\n application-supplied function or table used by this function must\n be optional: if the application does not supply it, the square\n root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Library,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Library, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library\nwith the Library (or with a work based on the Library) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may opt to apply the terms of the ordinary GNU General Public\nLicense instead of this License to a given copy of the Library. To do\nthis, you must alter all the notices that refer to this License, so\nthat they refer to the ordinary GNU General Public License, version 2,\ninstead of to this License. (If a newer version than version 2 of the\nordinary GNU General Public License has appeared, then you can specify\nthat version instead if you wish.) Do not make any other change in\nthese notices.\n\n Once this change is made in a given copy, it is irreversible for\nthat copy, so the ordinary GNU General Public License applies to all\nsubsequent copies and derivative works made from that copy.\n\n This option is useful when you wish to copy part of the code of\nthe Library into a program that is not a library.\n\n 4. You may copy and distribute the Library (or a portion or\nderivative of it, under Section 2) in object code or executable form\nunder the terms of Sections 1 and 2 above provided that you accompany\nit with the complete corresponding machine-readable source code, which\nmust be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily used for software interchange.\n\n If distribution of object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the\nsource code from the same place satisfies the requirement to\ndistribute the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 5. A program that contains no derivative of any portion of the\nLibrary, but is designed to work with the Library by being compiled or\nlinked with it, is called a \"work that uses the Library\". Such a\nwork, in isolation, is not a derivative work of the Library, and\ntherefore falls outside the scope of this License.\n\n However, linking a \"work that uses the Library\" with the Library\ncreates an executable that is a derivative of the Library (because it\ncontains portions of the Library), rather than a \"work that uses the\nlibrary\". The executable is therefore covered by this License.\nSection 6 states terms for distribution of such executables.\n\n When a \"work that uses the Library\" uses material from a header file\nthat is part of the Library, the object code for the work may be a\nderivative work of the Library even though the source code is not.\nWhether this is true is especially significant if the work can be\nlinked without the Library, or if the work is itself a library. The\nthreshold for this to be true is not precisely defined by law.\n\n If such an object file uses only numerical parameters, data\nstructure layouts and accessors, and small macros and small inline\nfunctions (ten lines or less in length), then the use of the object\nfile is unrestricted, regardless of whether it is legally a derivative\nwork. (Executables containing this object code plus portions of the\nLibrary will still fall under Section 6.)\n\n Otherwise, if the work is a derivative of the Library, you may\ndistribute the object code for the work under the terms of Section 6.\nAny executables containing that work also fall under Section 6,\nwhether or not they are linked directly with the Library itself.\n\n 6. As an exception to the Sections above, you may also compile or\nlink a \"work that uses the Library\" with the Library to produce a\nwork containing portions of the Library, and distribute that work\nunder terms of your choice, provided that the terms permit\nmodification of the work for the customer's own use and reverse\nengineering for debugging such modifications.\n\n You must give prominent notice with each copy of the work that the\nLibrary is used in it and that the Library and its use are covered by\nthis License. You must supply a copy of this License. If the work\nduring execution displays copyright notices, you must include the\ncopyright notice for the Library among them, as well as a reference\ndirecting the user to the copy of this License. Also, you must do one\nof these things:\n\n a) Accompany the work with the complete corresponding\n machine-readable source code for the Library including whatever\n changes were used in the work (which must be distributed under\n Sections 1 and 2 above); and, if the work is an executable linked\n with the Library, with the complete machine-readable \"work that\n uses the Library\", as object code and/or source code, so that the\n user can modify the Library and then relink to produce a modified\n executable containing the modified Library. (It is understood\n that the user who changes the contents of definitions files in the\n Library will not necessarily be able to recompile the application\n to use the modified definitions.)\n\n b) Accompany the work with a written offer, valid for at\n least three years, to give the same user the materials\n specified in Subsection 6a, above, for a charge no more\n than the cost of performing this distribution.\n\n c) If distribution of the work is made by offering access to copy\n from a designated place, offer equivalent access to copy the above\n specified materials from the same place.\n\n d) Verify that the user has already received a copy of these\n materials or that you have already sent this user a copy.\n\n For an executable, the required form of the \"work that uses the\nLibrary\" must include any data and utility programs needed for\nreproducing the executable from it. However, as a special exception,\nthe source code distributed need not include anything that is normally\ndistributed (in either source or binary form) with the major\ncomponents (compiler, kernel, and so on) of the operating system on\nwhich the executable runs, unless that component itself accompanies\nthe executable.\n\n It may happen that this requirement contradicts the license\nrestrictions of other proprietary libraries that do not normally\naccompany the operating system. Such a contradiction means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n\n 7. You may place library facilities that are a work based on the\nLibrary side-by-side in a single library together with other library\nfacilities not covered by this License, and distribute such a combined\nlibrary, provided that the separate distribution of the work based on\nthe Library and of the other library facilities is otherwise\npermitted, and provided that you do these two things:\n\n a) Accompany the combined library with a copy of the same work\n based on the Library, uncombined with any other library\n facilities. This must be distributed under the terms of the\n Sections above.\n\n b) Give prominent notice with the combined library of the fact\n that part of it is a work based on the Library, and explaining\n where to find the accompanying uncombined form of the same work.\n\n 8. You may not copy, modify, sublicense, link with, or distribute\nthe Library except as expressly provided under this License. Any\nattempt otherwise to copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically terminate your\nrights under this License. However, parties who have received copies,\nor rights, from you under this License will not have their licenses\nterminated so long as such parties remain in full compliance.\n\n 9. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Library or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Library (or any work based on the\nLibrary), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Library or works based on it.\n\n 10. Each time you redistribute the Library (or any work based on the\nLibrary), the recipient automatically receives a license from the\noriginal licensor to copy, distribute, link with or modify the Library\nsubject to these terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n 11. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Library at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Library by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply,\nand the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 12. If the distribution and/or use of the Library is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Library under this License may add\nan explicit geographical distribution limitation excluding those countries,\nso that distribution is permitted only in or among countries not thus\nexcluded. In such case, this License incorporates the limitation as if\nwritten in the body of this License.\n\n 13. The Free Software Foundation may publish revised and/or new\nversions of the Library General Public License from time to time.\nSuch new versions will be similar in spirit to the present version,\nbut may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Library does not specify a\nlicense version number, you may choose any version ever published by\nthe Free Software Foundation.\n\n 14. If you wish to incorporate parts of the Library into other free\nprograms whose distribution conditions are incompatible with these,\nwrite to the author to ask for permission. For software which is\ncopyrighted by the Free Software Foundation, write to the Free\nSoftware Foundation; we sometimes make exceptions for this. Our\ndecision will be guided by the two goals of preserving the free status\nof all derivatives of our free software and of promoting the sharing\nand reuse of software generally.\n\n NO WARRANTY\n\n 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Libraries\n\n If you develop a new library, and you want it to be of the greatest\npossible use to the public, we recommend making it free software that\neveryone can redistribute and change. You can do so by permitting\nredistribution under these terms (or, alternatively, under the terms of the\nordinary General Public License).\n\n To apply these terms, attach the following notices to the library. It is\nsafest to attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public\n License as published by the Free Software Foundation; either\n version 2 of the License, or (at your option) any later version.\n\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n\n You should have received a copy of the GNU Library General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the library, if\nnecessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the\n library `Frob' (a library for tweaking knobs) written by James Random Hacker.\n\n , 1 April 1990\n Ty Coon, President of Vice\n\nThat's all there is to it!", + "json": "lgpl-2.0-plus.json", + "yaml": "lgpl-2.0-plus.yml", + "html": "lgpl-2.0-plus.html", + "license": "lgpl-2.0-plus.LICENSE" + }, + { + "license_key": "lgpl-2.0-plus-gcc", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Library General Public License\nas published by the Free Software Foundation; either version 2, or\n(at your option) any later version.\n\nIn addition to the permissions in the GNU Library General Public\nLicense, the Free Software Foundation gives you unlimited\npermission to link the compiled version of this file into\ncombinations with other programs, and to distribute those\ncombinations without any restriction coming from the use of this\nfile. (The Library Public License restrictions do apply in other\nrespects; for example, they cover modification of the file, and\ndistribution when not linked into a combined executable.)\n\nThis program is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA\n02110-1301, USA.", + "json": "lgpl-2.0-plus-gcc.json", + "yaml": "lgpl-2.0-plus-gcc.yml", + "html": "lgpl-2.0-plus-gcc.html", + "license": "lgpl-2.0-plus-gcc.LICENSE" + }, + { + "license_key": "lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-2.1-only", + "other_spdx_license_keys": [ + "LGPL-2.1", + "LicenseRef-LGPL-2.1" + ], + "is_exception": false, + "is_deprecated": false, + "text": " GNU LESSER GENERAL PUBLIC LICENSE\n Version 2.1, February 1999\n\n Copyright (C) 1991, 1999 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n[This is the first released version of the Lesser GPL. It also counts\n as the successor of the GNU Library Public License, version 2, hence\n the version number 2.1.]\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicenses are intended to guarantee your freedom to share and change\nfree software--to make sure the software is free for all its users.\n\n This license, the Lesser General Public License, applies to some\nspecially designated software packages--typically libraries--of the\nFree Software Foundation and other authors who decide to use it. You\ncan use it too, but we suggest you first think carefully about whether\nthis license or the ordinary General Public License is the better\nstrategy to use in any particular case, based on the explanations below.\n\n When we speak of free software, we are referring to freedom of use,\nnot price. Our General Public Licenses are designed to make sure that\nyou have the freedom to distribute copies of free software (and charge\nfor this service if you wish); that you receive source code or can get\nit if you want it; that you can change the software and use pieces of\nit in new free programs; and that you are informed that you can do\nthese things.\n\n To protect your rights, we need to make restrictions that forbid\ndistributors to deny you these rights or to ask you to surrender these\nrights. These restrictions translate to certain responsibilities for\nyou if you distribute copies of the library or if you modify it.\n\n For example, if you distribute copies of the library, whether gratis\nor for a fee, you must give the recipients all the rights that we gave\nyou. You must make sure that they, too, receive or can get the source\ncode. If you link other code with the library, you must provide\ncomplete object files to the recipients, so that they can relink them\nwith the library after making changes to the library and recompiling\nit. And you must show them these terms so they know their rights.\n\n We protect your rights with a two-step method: (1) we copyright the\nlibrary, and (2) we offer you this license, which gives you legal\npermission to copy, distribute and/or modify the library.\n\n To protect each distributor, we want to make it very clear that\nthere is no warranty for the free library. Also, if the library is\nmodified by someone else and passed on, the recipients should know\nthat what they have is not the original version, so that the original\nauthor's reputation will not be affected by problems that might be\nintroduced by others.\n\n\n Finally, software patents pose a constant threat to the existence of\nany free program. We wish to make sure that a company cannot\neffectively restrict the users of a free program by obtaining a\nrestrictive license from a patent holder. Therefore, we insist that\nany patent license obtained for a version of the library must be\nconsistent with the full freedom of use specified in this license.\n\n Most GNU software, including some libraries, is covered by the\nordinary GNU General Public License. This license, the GNU Lesser\nGeneral Public License, applies to certain designated libraries, and\nis quite different from the ordinary General Public License. We use\nthis license for certain libraries in order to permit linking those\nlibraries into non-free programs.\n\n When a program is linked with a library, whether statically or using\na shared library, the combination of the two is legally speaking a\ncombined work, a derivative of the original library. The ordinary\nGeneral Public License therefore permits such linking only if the\nentire combination fits its criteria of freedom. The Lesser General\nPublic License permits more lax criteria for linking other code with\nthe library.\n\n We call this license the \"Lesser\" General Public License because it\ndoes Less to protect the user's freedom than the ordinary General\nPublic License. It also provides other free software developers Less\nof an advantage over competing non-free programs. These disadvantages\nare the reason we use the ordinary General Public License for many\nlibraries. However, the Lesser license provides advantages in certain\nspecial circumstances.\n\n For example, on rare occasions, there may be a special need to\nencourage the widest possible use of a certain library, so that it becomes\na de-facto standard. To achieve this, non-free programs must be\nallowed to use the library. A more frequent case is that a free\nlibrary does the same job as widely used non-free libraries. In this\ncase, there is little to gain by limiting the free library to free\nsoftware only, so we use the Lesser General Public License.\n\n In other cases, permission to use a particular library in non-free\nprograms enables a greater number of people to use a large body of\nfree software. For example, permission to use the GNU C Library in\nnon-free programs enables many more people to use the whole GNU\noperating system, as well as its variant, the GNU/Linux operating\nsystem.\n\n Although the Lesser General Public License is Less protective of the\nusers' freedom, it does ensure that the user of a program that is\nlinked with the Library has the freedom and the wherewithal to run\nthat program using a modified version of the Library.\n\n The precise terms and conditions for copying, distribution and\nmodification follow. Pay close attention to the difference between a\n\"work based on the library\" and a \"work that uses the library\". The\nformer contains code derived from the library, whereas the latter must\nbe combined with the library in order to run.\n\n\n GNU LESSER GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement applies to any software library or other\nprogram which contains a notice placed by the copyright holder or\nother authorized party saying it may be distributed under the terms of\nthis Lesser General Public License (also called \"this License\").\nEach licensee is addressed as \"you\".\n\n A \"library\" means a collection of software functions and/or data\nprepared so as to be conveniently linked with application programs\n(which use some of those functions and data) to form executables.\n\n The \"Library\", below, refers to any such software library or work\nwhich has been distributed under these terms. A \"work based on the\nLibrary\" means either the Library or any derivative work under\ncopyright law: that is to say, a work containing the Library or a\nportion of it, either verbatim or with modifications and/or translated\nstraightforwardly into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".)\n\n \"Source code\" for a work means the preferred form of the work for\nmaking modifications to it. For a library, complete source code means\nall the source code for all modules it contains, plus any associated\ninterface definition files, plus the scripts used to control compilation\nand installation of the library.\n\n Activities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning a program using the Library is not restricted, and output from\nsuch a program is covered only if its contents constitute a work based\non the Library (independent of the use of the Library in a tool for\nwriting it). Whether that is true depends on what the Library does\nand what the program that uses the Library does.\n\n 1. You may copy and distribute verbatim copies of the Library's\ncomplete source code as you receive it, in any medium, provided that\nyou conspicuously and appropriately publish on each copy an\nappropriate copyright notice and disclaimer of warranty; keep intact\nall the notices that refer to this License and to the absence of any\nwarranty; and distribute a copy of this License along with the\nLibrary.\n\n You may charge a fee for the physical act of transferring a copy,\nand you may at your option offer warranty protection in exchange for a\nfee.\n\n\n 2. You may modify your copy or copies of the Library or any portion\nof it, thus forming a work based on the Library, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) The modified work must itself be a software library.\n\n b) You must cause the files modified to carry prominent notices\n stating that you changed the files and the date of any change.\n\n c) You must cause the whole of the work to be licensed at no\n charge to all third parties under the terms of this License.\n\n d) If a facility in the modified Library refers to a function or a\n table of data to be supplied by an application program that uses\n the facility, other than as an argument passed when the facility\n is invoked, then you must make a good faith effort to ensure that,\n in the event an application does not supply such function or\n table, the facility still operates, and performs whatever part of\n its purpose remains meaningful.\n\n (For example, a function in a library to compute square roots has\n a purpose that is entirely well-defined independent of the\n application. Therefore, Subsection 2d requires that any\n application-supplied function or table used by this function must\n be optional: if the application does not supply it, the square\n root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Library,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Library, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library\nwith the Library (or with a work based on the Library) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may opt to apply the terms of the ordinary GNU General Public\nLicense instead of this License to a given copy of the Library. To do\nthis, you must alter all the notices that refer to this License, so\nthat they refer to the ordinary GNU General Public License, version 2,\ninstead of to this License. (If a newer version than version 2 of the\nordinary GNU General Public License has appeared, then you can specify\nthat version instead if you wish.) Do not make any other change in\nthese notices.\n\n\n Once this change is made in a given copy, it is irreversible for\nthat copy, so the ordinary GNU General Public License applies to all\nsubsequent copies and derivative works made from that copy.\n\n This option is useful when you wish to copy part of the code of\nthe Library into a program that is not a library.\n\n 4. You may copy and distribute the Library (or a portion or\nderivative of it, under Section 2) in object code or executable form\nunder the terms of Sections 1 and 2 above provided that you accompany\nit with the complete corresponding machine-readable source code, which\nmust be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily used for software interchange.\n\n If distribution of object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the\nsource code from the same place satisfies the requirement to\ndistribute the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 5. A program that contains no derivative of any portion of the\nLibrary, but is designed to work with the Library by being compiled or\nlinked with it, is called a \"work that uses the Library\". Such a\nwork, in isolation, is not a derivative work of the Library, and\ntherefore falls outside the scope of this License.\n\n However, linking a \"work that uses the Library\" with the Library\ncreates an executable that is a derivative of the Library (because it\ncontains portions of the Library), rather than a \"work that uses the\nlibrary\". The executable is therefore covered by this License.\nSection 6 states terms for distribution of such executables.\n\n When a \"work that uses the Library\" uses material from a header file\nthat is part of the Library, the object code for the work may be a\nderivative work of the Library even though the source code is not.\nWhether this is true is especially significant if the work can be\nlinked without the Library, or if the work is itself a library. The\nthreshold for this to be true is not precisely defined by law.\n\n If such an object file uses only numerical parameters, data\nstructure layouts and accessors, and small macros and small inline\nfunctions (ten lines or less in length), then the use of the object\nfile is unrestricted, regardless of whether it is legally a derivative\nwork. (Executables containing this object code plus portions of the\nLibrary will still fall under Section 6.)\n\n Otherwise, if the work is a derivative of the Library, you may\ndistribute the object code for the work under the terms of Section 6.\nAny executables containing that work also fall under Section 6,\nwhether or not they are linked directly with the Library itself.\n\n\n 6. As an exception to the Sections above, you may also combine or\nlink a \"work that uses the Library\" with the Library to produce a\nwork containing portions of the Library, and distribute that work\nunder terms of your choice, provided that the terms permit\nmodification of the work for the customer's own use and reverse\nengineering for debugging such modifications.\n\n You must give prominent notice with each copy of the work that the\nLibrary is used in it and that the Library and its use are covered by\nthis License. You must supply a copy of this License. If the work\nduring execution displays copyright notices, you must include the\ncopyright notice for the Library among them, as well as a reference\ndirecting the user to the copy of this License. Also, you must do one\nof these things:\n\n a) Accompany the work with the complete corresponding\n machine-readable source code for the Library including whatever\n changes were used in the work (which must be distributed under\n Sections 1 and 2 above); and, if the work is an executable linked\n with the Library, with the complete machine-readable \"work that\n uses the Library\", as object code and/or source code, so that the\n user can modify the Library and then relink to produce a modified\n executable containing the modified Library. (It is understood\n that the user who changes the contents of definitions files in the\n Library will not necessarily be able to recompile the application\n to use the modified definitions.)\n\n b) Use a suitable shared library mechanism for linking with the\n Library. A suitable mechanism is one that (1) uses at run time a\n copy of the library already present on the user's computer system,\n rather than copying library functions into the executable, and (2)\n will operate properly with a modified version of the library, if\n the user installs one, as long as the modified version is\n interface-compatible with the version that the work was made with.\n\n c) Accompany the work with a written offer, valid for at\n least three years, to give the same user the materials\n specified in Subsection 6a, above, for a charge no more\n than the cost of performing this distribution.\n\n d) If distribution of the work is made by offering access to copy\n from a designated place, offer equivalent access to copy the above\n specified materials from the same place.\n\n e) Verify that the user has already received a copy of these\n materials or that you have already sent this user a copy.\n\n For an executable, the required form of the \"work that uses the\nLibrary\" must include any data and utility programs needed for\nreproducing the executable from it. However, as a special exception,\nthe materials to be distributed need not include anything that is\nnormally distributed (in either source or binary form) with the major\ncomponents (compiler, kernel, and so on) of the operating system on\nwhich the executable runs, unless that component itself accompanies\nthe executable.\n\n It may happen that this requirement contradicts the license\nrestrictions of other proprietary libraries that do not normally\naccompany the operating system. Such a contradiction means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n\n\n 7. You may place library facilities that are a work based on the\nLibrary side-by-side in a single library together with other library\nfacilities not covered by this License, and distribute such a combined\nlibrary, provided that the separate distribution of the work based on\nthe Library and of the other library facilities is otherwise\npermitted, and provided that you do these two things:\n\n a) Accompany the combined library with a copy of the same work\n based on the Library, uncombined with any other library\n facilities. This must be distributed under the terms of the\n Sections above.\n\n b) Give prominent notice with the combined library of the fact\n that part of it is a work based on the Library, and explaining\n where to find the accompanying uncombined form of the same work.\n\n 8. You may not copy, modify, sublicense, link with, or distribute\nthe Library except as expressly provided under this License. Any\nattempt otherwise to copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically terminate your\nrights under this License. However, parties who have received copies,\nor rights, from you under this License will not have their licenses\nterminated so long as such parties remain in full compliance.\n\n 9. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Library or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Library (or any work based on the\nLibrary), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Library or works based on it.\n\n 10. Each time you redistribute the Library (or any work based on the\nLibrary), the recipient automatically receives a license from the\noriginal licensor to copy, distribute, link with or modify the Library\nsubject to these terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties with\nthis License.\n\n\n 11. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Library at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Library by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply,\nand the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 12. If the distribution and/or use of the Library is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Library under this License may add\nan explicit geographical distribution limitation excluding those countries,\nso that distribution is permitted only in or among countries not thus\nexcluded. In such case, this License incorporates the limitation as if\nwritten in the body of this License.\n\n 13. The Free Software Foundation may publish revised and/or new\nversions of the Lesser General Public License from time to time.\nSuch new versions will be similar in spirit to the present version,\nbut may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Library does not specify a\nlicense version number, you may choose any version ever published by\nthe Free Software Foundation.\n\n\n 14. If you wish to incorporate parts of the Library into other free\nprograms whose distribution conditions are incompatible with these,\nwrite to the author to ask for permission. For software which is\ncopyrighted by the Free Software Foundation, write to the Free\nSoftware Foundation; we sometimes make exceptions for this. Our\ndecision will be guided by the two goals of preserving the free status\nof all derivatives of our free software and of promoting the sharing\nand reuse of software generally.\n\n NO WARRANTY\n\n 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n\n How to Apply These Terms to Your New Libraries\n\n If you develop a new library, and you want it to be of the greatest\npossible use to the public, we recommend making it free software that\neveryone can redistribute and change. You can do so by permitting\nredistribution under these terms (or, alternatively, under the terms of the\nordinary General Public License).\n\n To apply these terms, attach the following notices to the library. It is\nsafest to attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the library, if\nnecessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the\n library `Frob' (a library for tweaking knobs) written by James Random Hacker.\n\n , 1 April 1990\n Ty Coon, President of Vice\n\nThat's all there is to it!", + "json": "lgpl-2.1.json", + "yaml": "lgpl-2.1.yml", + "html": "lgpl-2.1.html", + "license": "lgpl-2.1.LICENSE" + }, + { + "license_key": "lgpl-2.1-digia-qt", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "Digia Qt LGPL Exception version 1.1\n\nAs an additional permission to the GNU Lesser General Public License version\n2.1, the object code form of a \"work that uses the Library\" may incorporate\nmaterial from a header file that is part of the Library. You may distribute\nsuch object code under terms of your choice, provided that:\n (i) the header files of the Library have not been modified; and \n (ii) the incorporated material is limited to numerical parameters, data\n structure layouts, accessors, macros, inline functions and\n templates; and\n (iii) you comply with the terms of Section 6 of the GNU Lesser General\n Public License version 2.1.\n\nMoreover, you may apply this exception to a modified version of the Library,\nprovided that such modification does not involve copying material from the\nLibrary into the modified Library's header files unless such material is\nlimited to (i) numerical parameters; (ii) data structure layouts;\n(iii) accessors; and (iv) small macros, templates and inline functions of\nfive lines or less in length.\n\nFurthermore, you are not required to apply this additional permission to a\nmodified version of the Library.", + "json": "lgpl-2.1-digia-qt.json", + "yaml": "lgpl-2.1-digia-qt.yml", + "html": "lgpl-2.1-digia-qt.html", + "license": "lgpl-2.1-digia-qt.LICENSE" + }, + { + "license_key": "lgpl-2.1-nokia-qt", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it under\nthe terms of the GNU Lesser General Public License as published by the Free\nSoftware Foundation; either version 2.1 of the License, or (at your option) any\nlater version.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License along\nwith this library; if not, write to the Free Software Foundation, Inc., 51\nFranklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nNokia Qt LGPL Exception version 1.1\n\nAs an additional permission to the GNU Lesser General Public License version\n2.1, the object code form of a \"work that uses the Library\" may incorporate\nmaterial from a header file that is part of the Library. You may distribute\nsuch object code under terms of your choice, provided that:\n (i) the header files of the Library have not been modified; and \n (ii) the incorporated material is limited to numerical parameters, data\n structure layouts, accessors, macros, inline functions and\n templates; and\n (iii) you comply with the terms of Section 6 of the GNU Lesser General\n Public License version 2.1.\n\nMoreover, you may apply this exception to a modified version of the Library,\nprovided that such modification does not involve copying material from the\nLibrary into the modified Library's header files unless such material is\nlimited to (i) numerical parameters; (ii) data structure layouts;\n(iii) accessors; and (iv) small macros, templates and inline functions of\nfive lines or less in length.\n\nFurthermore, you are not required to apply this additional permission to a\nmodified version of the Library.", + "json": "lgpl-2.1-nokia-qt.json", + "yaml": "lgpl-2.1-nokia-qt.yml", + "html": "lgpl-2.1-nokia-qt.html", + "license": "lgpl-2.1-nokia-qt.LICENSE" + }, + { + "license_key": "lgpl-2.1-nokia-qt-1.0", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "As a special exception to the GNU Lesser General Public License version 2.1, the\nobject code form of a \"work that uses the Library\" may incorporate material from\na header file that is part of the Library. You may distribute such object code\nunder terms of your choice, provided that the incorporated material (i) does not\nexceed more than 5% of the total size of the Library; and (ii) is limited to\nnumerical parameters, data structure layouts, accessors, macros, inline\nfunctions and templates.", + "json": "lgpl-2.1-nokia-qt-1.0.json", + "yaml": "lgpl-2.1-nokia-qt-1.0.yml", + "html": "lgpl-2.1-nokia-qt-1.0.html", + "license": "lgpl-2.1-nokia-qt-1.0.LICENSE" + }, + { + "license_key": "lgpl-2.1-nokia-qt-1.1", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "Nokia Qt LGPL Exception version 1.1\n\nAs an additional permission to the GNU Lesser General Public License version\n2.1, the object code form of a \"work that uses the Library\" may incorporate\nmaterial from a header file that is part of the Library. You may distribute\nsuch object code under terms of your choice, provided that:\n (i) the header files of the Library have not been modified; and \n (ii) the incorporated material is limited to numerical parameters, data\n structure layouts, accessors, macros, inline functions and\n templates; and\n (iii) you comply with the terms of Section 6 of the GNU Lesser General\n Public License version 2.1.\n\nMoreover, you may apply this exception to a modified version of the Library,\nprovided that such modification does not involve copying material from the\nLibrary into the modified Library's header files unless such material is\nlimited to (i) numerical parameters; (ii) data structure layouts;\n(iii) accessors; and (iv) small macros, templates and inline functions of\nfive lines or less in length.\n\nFurthermore, you are not required to apply this additional permission to a\nmodified version of the Library.", + "json": "lgpl-2.1-nokia-qt-1.1.json", + "yaml": "lgpl-2.1-nokia-qt-1.1.yml", + "html": "lgpl-2.1-nokia-qt-1.1.html", + "license": "lgpl-2.1-nokia-qt-1.1.LICENSE" + }, + { + "license_key": "lgpl-2.1-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-2.1-or-later", + "other_spdx_license_keys": [ + "LGPL-2.1+" + ], + "is_exception": false, + "is_deprecated": false, + "text": "This library is free software; you can redistribute it and/or modify it under\nthe terms of the GNU Lesser General Public License as published by the Free\nSoftware Foundation; either version 2.1 of the License, or (at your option) any\nlater version.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License along\nwith this library; if not, write to the Free Software Foundation, Inc., 51\nFranklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\n\n GNU LESSER GENERAL PUBLIC LICENSE\n Version 2.1, February 1999\n\n Copyright (C) 1991, 1999 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n[This is the first released version of the Lesser GPL. It also counts\n as the successor of the GNU Library Public License, version 2, hence\n the version number 2.1.]\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicenses are intended to guarantee your freedom to share and change\nfree software--to make sure the software is free for all its users.\n\n This license, the Lesser General Public License, applies to some\nspecially designated software packages--typically libraries--of the\nFree Software Foundation and other authors who decide to use it. You\ncan use it too, but we suggest you first think carefully about whether\nthis license or the ordinary General Public License is the better\nstrategy to use in any particular case, based on the explanations below.\n\n When we speak of free software, we are referring to freedom of use,\nnot price. Our General Public Licenses are designed to make sure that\nyou have the freedom to distribute copies of free software (and charge\nfor this service if you wish); that you receive source code or can get\nit if you want it; that you can change the software and use pieces of\nit in new free programs; and that you are informed that you can do\nthese things.\n\n To protect your rights, we need to make restrictions that forbid\ndistributors to deny you these rights or to ask you to surrender these\nrights. These restrictions translate to certain responsibilities for\nyou if you distribute copies of the library or if you modify it.\n\n For example, if you distribute copies of the library, whether gratis\nor for a fee, you must give the recipients all the rights that we gave\nyou. You must make sure that they, too, receive or can get the source\ncode. If you link other code with the library, you must provide\ncomplete object files to the recipients, so that they can relink them\nwith the library after making changes to the library and recompiling\nit. And you must show them these terms so they know their rights.\n\n We protect your rights with a two-step method: (1) we copyright the\nlibrary, and (2) we offer you this license, which gives you legal\npermission to copy, distribute and/or modify the library.\n\n To protect each distributor, we want to make it very clear that\nthere is no warranty for the free library. Also, if the library is\nmodified by someone else and passed on, the recipients should know\nthat what they have is not the original version, so that the original\nauthor's reputation will not be affected by problems that might be\nintroduced by others.\n\n\n Finally, software patents pose a constant threat to the existence of\nany free program. We wish to make sure that a company cannot\neffectively restrict the users of a free program by obtaining a\nrestrictive license from a patent holder. Therefore, we insist that\nany patent license obtained for a version of the library must be\nconsistent with the full freedom of use specified in this license.\n\n Most GNU software, including some libraries, is covered by the\nordinary GNU General Public License. This license, the GNU Lesser\nGeneral Public License, applies to certain designated libraries, and\nis quite different from the ordinary General Public License. We use\nthis license for certain libraries in order to permit linking those\nlibraries into non-free programs.\n\n When a program is linked with a library, whether statically or using\na shared library, the combination of the two is legally speaking a\ncombined work, a derivative of the original library. The ordinary\nGeneral Public License therefore permits such linking only if the\nentire combination fits its criteria of freedom. The Lesser General\nPublic License permits more lax criteria for linking other code with\nthe library.\n\n We call this license the \"Lesser\" General Public License because it\ndoes Less to protect the user's freedom than the ordinary General\nPublic License. It also provides other free software developers Less\nof an advantage over competing non-free programs. These disadvantages\nare the reason we use the ordinary General Public License for many\nlibraries. However, the Lesser license provides advantages in certain\nspecial circumstances.\n\n For example, on rare occasions, there may be a special need to\nencourage the widest possible use of a certain library, so that it becomes\na de-facto standard. To achieve this, non-free programs must be\nallowed to use the library. A more frequent case is that a free\nlibrary does the same job as widely used non-free libraries. In this\ncase, there is little to gain by limiting the free library to free\nsoftware only, so we use the Lesser General Public License.\n\n In other cases, permission to use a particular library in non-free\nprograms enables a greater number of people to use a large body of\nfree software. For example, permission to use the GNU C Library in\nnon-free programs enables many more people to use the whole GNU\noperating system, as well as its variant, the GNU/Linux operating\nsystem.\n\n Although the Lesser General Public License is Less protective of the\nusers' freedom, it does ensure that the user of a program that is\nlinked with the Library has the freedom and the wherewithal to run\nthat program using a modified version of the Library.\n\n The precise terms and conditions for copying, distribution and\nmodification follow. Pay close attention to the difference between a\n\"work based on the library\" and a \"work that uses the library\". The\nformer contains code derived from the library, whereas the latter must\nbe combined with the library in order to run.\n\n\n GNU LESSER GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement applies to any software library or other\nprogram which contains a notice placed by the copyright holder or\nother authorized party saying it may be distributed under the terms of\nthis Lesser General Public License (also called \"this License\").\nEach licensee is addressed as \"you\".\n\n A \"library\" means a collection of software functions and/or data\nprepared so as to be conveniently linked with application programs\n(which use some of those functions and data) to form executables.\n\n The \"Library\", below, refers to any such software library or work\nwhich has been distributed under these terms. A \"work based on the\nLibrary\" means either the Library or any derivative work under\ncopyright law: that is to say, a work containing the Library or a\nportion of it, either verbatim or with modifications and/or translated\nstraightforwardly into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".)\n\n \"Source code\" for a work means the preferred form of the work for\nmaking modifications to it. For a library, complete source code means\nall the source code for all modules it contains, plus any associated\ninterface definition files, plus the scripts used to control compilation\nand installation of the library.\n\n Activities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning a program using the Library is not restricted, and output from\nsuch a program is covered only if its contents constitute a work based\non the Library (independent of the use of the Library in a tool for\nwriting it). Whether that is true depends on what the Library does\nand what the program that uses the Library does.\n\n 1. You may copy and distribute verbatim copies of the Library's\ncomplete source code as you receive it, in any medium, provided that\nyou conspicuously and appropriately publish on each copy an\nappropriate copyright notice and disclaimer of warranty; keep intact\nall the notices that refer to this License and to the absence of any\nwarranty; and distribute a copy of this License along with the\nLibrary.\n\n You may charge a fee for the physical act of transferring a copy,\nand you may at your option offer warranty protection in exchange for a\nfee.\n\n\n 2. You may modify your copy or copies of the Library or any portion\nof it, thus forming a work based on the Library, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) The modified work must itself be a software library.\n\n b) You must cause the files modified to carry prominent notices\n stating that you changed the files and the date of any change.\n\n c) You must cause the whole of the work to be licensed at no\n charge to all third parties under the terms of this License.\n\n d) If a facility in the modified Library refers to a function or a\n table of data to be supplied by an application program that uses\n the facility, other than as an argument passed when the facility\n is invoked, then you must make a good faith effort to ensure that,\n in the event an application does not supply such function or\n table, the facility still operates, and performs whatever part of\n its purpose remains meaningful.\n\n (For example, a function in a library to compute square roots has\n a purpose that is entirely well-defined independent of the\n application. Therefore, Subsection 2d requires that any\n application-supplied function or table used by this function must\n be optional: if the application does not supply it, the square\n root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Library,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Library, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library\nwith the Library (or with a work based on the Library) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may opt to apply the terms of the ordinary GNU General Public\nLicense instead of this License to a given copy of the Library. To do\nthis, you must alter all the notices that refer to this License, so\nthat they refer to the ordinary GNU General Public License, version 2,\ninstead of to this License. (If a newer version than version 2 of the\nordinary GNU General Public License has appeared, then you can specify\nthat version instead if you wish.) Do not make any other change in\nthese notices.\n\n\n Once this change is made in a given copy, it is irreversible for\nthat copy, so the ordinary GNU General Public License applies to all\nsubsequent copies and derivative works made from that copy.\n\n This option is useful when you wish to copy part of the code of\nthe Library into a program that is not a library.\n\n 4. You may copy and distribute the Library (or a portion or\nderivative of it, under Section 2) in object code or executable form\nunder the terms of Sections 1 and 2 above provided that you accompany\nit with the complete corresponding machine-readable source code, which\nmust be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily used for software interchange.\n\n If distribution of object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the\nsource code from the same place satisfies the requirement to\ndistribute the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 5. A program that contains no derivative of any portion of the\nLibrary, but is designed to work with the Library by being compiled or\nlinked with it, is called a \"work that uses the Library\". Such a\nwork, in isolation, is not a derivative work of the Library, and\ntherefore falls outside the scope of this License.\n\n However, linking a \"work that uses the Library\" with the Library\ncreates an executable that is a derivative of the Library (because it\ncontains portions of the Library), rather than a \"work that uses the\nlibrary\". The executable is therefore covered by this License.\nSection 6 states terms for distribution of such executables.\n\n When a \"work that uses the Library\" uses material from a header file\nthat is part of the Library, the object code for the work may be a\nderivative work of the Library even though the source code is not.\nWhether this is true is especially significant if the work can be\nlinked without the Library, or if the work is itself a library. The\nthreshold for this to be true is not precisely defined by law.\n\n If such an object file uses only numerical parameters, data\nstructure layouts and accessors, and small macros and small inline\nfunctions (ten lines or less in length), then the use of the object\nfile is unrestricted, regardless of whether it is legally a derivative\nwork. (Executables containing this object code plus portions of the\nLibrary will still fall under Section 6.)\n\n Otherwise, if the work is a derivative of the Library, you may\ndistribute the object code for the work under the terms of Section 6.\nAny executables containing that work also fall under Section 6,\nwhether or not they are linked directly with the Library itself.\n\n\n 6. As an exception to the Sections above, you may also combine or\nlink a \"work that uses the Library\" with the Library to produce a\nwork containing portions of the Library, and distribute that work\nunder terms of your choice, provided that the terms permit\nmodification of the work for the customer's own use and reverse\nengineering for debugging such modifications.\n\n You must give prominent notice with each copy of the work that the\nLibrary is used in it and that the Library and its use are covered by\nthis License. You must supply a copy of this License. If the work\nduring execution displays copyright notices, you must include the\ncopyright notice for the Library among them, as well as a reference\ndirecting the user to the copy of this License. Also, you must do one\nof these things:\n\n a) Accompany the work with the complete corresponding\n machine-readable source code for the Library including whatever\n changes were used in the work (which must be distributed under\n Sections 1 and 2 above); and, if the work is an executable linked\n with the Library, with the complete machine-readable \"work that\n uses the Library\", as object code and/or source code, so that the\n user can modify the Library and then relink to produce a modified\n executable containing the modified Library. (It is understood\n that the user who changes the contents of definitions files in the\n Library will not necessarily be able to recompile the application\n to use the modified definitions.)\n\n b) Use a suitable shared library mechanism for linking with the\n Library. A suitable mechanism is one that (1) uses at run time a\n copy of the library already present on the user's computer system,\n rather than copying library functions into the executable, and (2)\n will operate properly with a modified version of the library, if\n the user installs one, as long as the modified version is\n interface-compatible with the version that the work was made with.\n\n c) Accompany the work with a written offer, valid for at\n least three years, to give the same user the materials\n specified in Subsection 6a, above, for a charge no more\n than the cost of performing this distribution.\n\n d) If distribution of the work is made by offering access to copy\n from a designated place, offer equivalent access to copy the above\n specified materials from the same place.\n\n e) Verify that the user has already received a copy of these\n materials or that you have already sent this user a copy.\n\n For an executable, the required form of the \"work that uses the\nLibrary\" must include any data and utility programs needed for\nreproducing the executable from it. However, as a special exception,\nthe materials to be distributed need not include anything that is\nnormally distributed (in either source or binary form) with the major\ncomponents (compiler, kernel, and so on) of the operating system on\nwhich the executable runs, unless that component itself accompanies\nthe executable.\n\n It may happen that this requirement contradicts the license\nrestrictions of other proprietary libraries that do not normally\naccompany the operating system. Such a contradiction means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n\n\n 7. You may place library facilities that are a work based on the\nLibrary side-by-side in a single library together with other library\nfacilities not covered by this License, and distribute such a combined\nlibrary, provided that the separate distribution of the work based on\nthe Library and of the other library facilities is otherwise\npermitted, and provided that you do these two things:\n\n a) Accompany the combined library with a copy of the same work\n based on the Library, uncombined with any other library\n facilities. This must be distributed under the terms of the\n Sections above.\n\n b) Give prominent notice with the combined library of the fact\n that part of it is a work based on the Library, and explaining\n where to find the accompanying uncombined form of the same work.\n\n 8. You may not copy, modify, sublicense, link with, or distribute\nthe Library except as expressly provided under this License. Any\nattempt otherwise to copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically terminate your\nrights under this License. However, parties who have received copies,\nor rights, from you under this License will not have their licenses\nterminated so long as such parties remain in full compliance.\n\n 9. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Library or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Library (or any work based on the\nLibrary), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Library or works based on it.\n\n 10. Each time you redistribute the Library (or any work based on the\nLibrary), the recipient automatically receives a license from the\noriginal licensor to copy, distribute, link with or modify the Library\nsubject to these terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties with\nthis License.\n\n\n 11. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Library at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Library by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply,\nand the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 12. If the distribution and/or use of the Library is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Library under this License may add\nan explicit geographical distribution limitation excluding those countries,\nso that distribution is permitted only in or among countries not thus\nexcluded. In such case, this License incorporates the limitation as if\nwritten in the body of this License.\n\n 13. The Free Software Foundation may publish revised and/or new\nversions of the Lesser General Public License from time to time.\nSuch new versions will be similar in spirit to the present version,\nbut may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Library does not specify a\nlicense version number, you may choose any version ever published by\nthe Free Software Foundation.\n\n\n 14. If you wish to incorporate parts of the Library into other free\nprograms whose distribution conditions are incompatible with these,\nwrite to the author to ask for permission. For software which is\ncopyrighted by the Free Software Foundation, write to the Free\nSoftware Foundation; we sometimes make exceptions for this. Our\ndecision will be guided by the two goals of preserving the free status\nof all derivatives of our free software and of promoting the sharing\nand reuse of software generally.\n\n NO WARRANTY\n\n 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n\n How to Apply These Terms to Your New Libraries\n\n If you develop a new library, and you want it to be of the greatest\npossible use to the public, we recommend making it free software that\neveryone can redistribute and change. You can do so by permitting\nredistribution under these terms (or, alternatively, under the terms of the\nordinary General Public License).\n\n To apply these terms, attach the following notices to the library. It is\nsafest to attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the library, if\nnecessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the\n library `Frob' (a library for tweaking knobs) written by James Random Hacker.\n\n , 1 April 1990\n Ty Coon, President of Vice\n\nThat's all there is to it!", + "json": "lgpl-2.1-plus.json", + "yaml": "lgpl-2.1-plus.yml", + "html": "lgpl-2.1-plus.html", + "license": "lgpl-2.1-plus.LICENSE" + }, + { + "license_key": "lgpl-2.1-plus-linking", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "As a special exception, if you link the code in this file with files compiled\nwith a GNU compiler to produce an executable, that does not cause the resulting\nexecutable to be covered by the GNU Lesser General Public License. This\nexception does not however invalidate any other reasons why the executable file\nmight be covered by the GNU Lesser General Public License. This exception\napplies to code released by its copyright holders in files containing the\nexception.", + "json": "lgpl-2.1-plus-linking.json", + "yaml": "lgpl-2.1-plus-linking.yml", + "html": "lgpl-2.1-plus-linking.html", + "license": "lgpl-2.1-plus-linking.LICENSE" + }, + { + "license_key": "lgpl-2.1-plus-unlimited-linking", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "The GNU C 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.\n\nIn addition to the permissions in the GNU Lesser General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version of this file with other programs, and to distribute those programs without any restriction coming from the use of this file. (The GNU Lesser General Public License restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked into another program.)\n\nNote that people who make modified versions of this file are not obligated to grant this special exception for their modified versions; it is their choice whether to do so. The GNU Lesser General Public License gives permission to release a modified version without this exception; this exception also makes it possible to release a modified version which carries forward this exception.\n\nThe GNU C 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.\n\nYou should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, see .", + "json": "lgpl-2.1-plus-unlimited-linking.json", + "yaml": "lgpl-2.1-plus-unlimited-linking.yml", + "html": "lgpl-2.1-plus-unlimited-linking.html", + "license": "lgpl-2.1-plus-unlimited-linking.LICENSE" + }, + { + "license_key": "lgpl-2.1-qt-company", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it under\nthe terms of the GNU Lesser General Public License as published by the Free\nSoftware Foundation; either version 2.1 of the License, or (at your option)\nany later version.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License along\nwith this library; if not, write to the Free Software Foundation, Inc., 51\nFranklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nThe Qt Company Qt LGPL Exception version 1.1\n\nAs a special exception to the GNU Lesser General Public License version 2.1,\nthe object code form of a \"work that uses the Library\" may incorporate material\nfrom a header file that is part of the Library. You may distribute such object\ncode under terms of your choice, provided that the incorporated material\n(i) does not exceed more than 5% of the total size of the Library;\nand (ii) is limited to numerical parameters, data structure layouts, accessors,\nmacros, inline functions and templates.", + "json": "lgpl-2.1-qt-company.json", + "yaml": "lgpl-2.1-qt-company.yml", + "html": "lgpl-2.1-qt-company.html", + "license": "lgpl-2.1-qt-company.LICENSE" + }, + { + "license_key": "lgpl-2.1-qt-company-2017", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "As an additional permission to the GNU Lesser General Public License version\n2.1, the object code form of a \"work that uses the Library\" may incorporate\nmaterial from a header file that is part of the Library. You may distribute\nsuch object code under terms of your choice, provided that:\n (i) the header files of the Library have not been modified; and \n (ii) the incorporated material is limited to numerical parameters, data\n structure layouts, accessors, macros, inline functions and\n templates; and\n (iii) you comply with the terms of Section 6 of the GNU Lesser General\n Public License version 2.1.\n\nMoreover, you may apply this exception to a modified version of the Library,\nprovided that such modification does not involve copying material from the\nLibrary into the modified Library's header files unless such material is\nlimited to (i) numerical parameters; (ii) data structure layouts;\n(iii) accessors; and (iv) small macros, templates and inline functions of\nfive lines or less in length.\n\nFurthermore, you are not required to apply this additional permission to a\nmodified version of the Library.", + "json": "lgpl-2.1-qt-company-2017.json", + "yaml": "lgpl-2.1-qt-company-2017.yml", + "html": "lgpl-2.1-qt-company-2017.html", + "license": "lgpl-2.1-qt-company-2017.LICENSE" + }, + { + "license_key": "lgpl-2.1-rxtx", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "RXTX License v 2.1 - LGPL v 2.1 + Linking Over Controlled Interface.\nRXTX is a native interface to serial ports in java.\nCopyright 1997-2007 by Trent Jarvi tjarvi@qbang.org and others who\nactually wrote it. See individual source files for more information.\n\nThis library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nLesser General Public License for more details.\n\nAn executable that contains no derivative of any portion of RXTX, but\nis designed to work with RXTX by being dynamically linked with it,\nis considered a \"work that uses the Library\" subject to the terms and\nconditions of the GNU Lesser General Public License.\n\nThe following has been added to the RXTX License to remove\nany confusion about linking to RXTX. We want to allow in part what\nsection 5, paragraph 2 of the LGPL does not permit in the special\ncase of linking over a controlled interface. The intent is to add a\nJava Specification Request or standards body defined interface in the\nfuture as another exception but one is not currently available.\n\nhttp://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface\n\nAs a special exception, the copyright holders of RXTX give you\npermission to link RXTX with independent modules that communicate with\nRXTX solely through the Sun Microsytems CommAPI interface version 2,\nregardless of the license terms of these independent modules, and to copy\nand distribute the resulting combined work under terms of your choice,\nprovided that every copy of the combined work is accompanied by a complete\ncopy of the source code of RXTX (the version of RXTX used to produce the\ncombined work), being distributed under the terms of the GNU Lesser General\nPublic License plus this exception. An independent module is a\nmodule which is not derived from or based on RXTX.\n\nNote that people who make modified versions of RXTX are not obligated\nto grant this special exception for their modified versions; it is\ntheir choice whether to do so. The GNU Lesser General Public License\ngives permission to release a modified version without this exception; this\nexception also makes it possible to release a modified version which\ncarries forward this exception.", + "json": "lgpl-2.1-rxtx.json", + "yaml": "lgpl-2.1-rxtx.yml", + "html": "lgpl-2.1-rxtx.html", + "license": "lgpl-2.1-rxtx.LICENSE" + }, + { + "license_key": "lgpl-2.1-spell-checker", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "In addition, as a special exception, Dom Lachowicz\ngives permission to link the code of this program with\nnon-LGPL Spelling Provider libraries (eg: a MSFT Office\nspell checker backend) and distribute linked combinations including\nthe two. You must obey the GNU Lesser General Public License in all\nrespects for all of the code used other than said providers. If you modify\nthis file, you may extend this exception to your version of the\nfile, but you are not obligated to do so. If you do not wish to\ndo so, delete this exception statement from your version.", + "json": "lgpl-2.1-spell-checker.json", + "yaml": "lgpl-2.1-spell-checker.yml", + "html": "lgpl-2.1-spell-checker.html", + "license": "lgpl-2.1-spell-checker.LICENSE" + }, + { + "license_key": "lgpl-3-plus-linking", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it under\nthe terms of the GNU Lesser General Public License as published by the Free\nSoftware Foundation; either version 3 of the License, or (at your option) any\nlater version.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License along\nwith this library; if not, write to the Free Software Foundation, Inc., 51\nFranklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nAs a special exception to the GNU Lesser General Public License version 3\n(\"LGPL3\"), the copyright holders of this Library give you permission to convey\nto a third party a Combined Work that links statically or dynamically to this\nLibrary without providing any Minimal Corresponding Source or Minimal\nApplication Code as set out in 4d or providing the installation information set\nout in section 4e, provided that you comply with the other provisions of LGPL3\nand provided that you meet, for the Application the terms and conditions of the\nlicense(s) which apply to the Application.\n\nExcept as stated in this special exception, the provisions of LGPL3 will\ncontinue to comply in full to this Library. If you modify this Library, you may\napply this exception to your version of this Library, but you are not obliged to\ndo so. If you do not wish to do so, delete this exception statement from your\nversion. This exception does not (and cannot) modify any license terms which\napply to the Application, with which you must still comply.", + "json": "lgpl-3-plus-linking.json", + "yaml": "lgpl-3-plus-linking.yml", + "html": "lgpl-3-plus-linking.html", + "license": "lgpl-3-plus-linking.LICENSE" + }, + { + "license_key": "lgpl-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-3.0-only", + "other_spdx_license_keys": [ + "LGPL-3.0" + ], + "is_exception": false, + "is_deprecated": false, + "text": " GNU LESSER GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n\n This version of the GNU Lesser General Public License incorporates\nthe terms and conditions of version 3 of the GNU General Public\nLicense, supplemented by the additional permissions listed below.\n\n 0. Additional Definitions.\n\n As used herein, \"this License\" refers to version 3 of the GNU Lesser\nGeneral Public License, and the \"GNU GPL\" refers to version 3 of the GNU\nGeneral Public License.\n\n \"The Library\" refers to a covered work governed by this License,\nother than an Application or a Combined Work as defined below.\n\n An \"Application\" is any work that makes use of an interface provided\nby the Library, but which is not otherwise based on the Library.\nDefining a subclass of a class defined by the Library is deemed a mode\nof using an interface provided by the Library.\n\n A \"Combined Work\" is a work produced by combining or linking an\nApplication with the Library. The particular version of the Library\nwith which the Combined Work was made is also called the \"Linked\nVersion\".\n\n The \"Minimal Corresponding Source\" for a Combined Work means the\nCorresponding Source for the Combined Work, excluding any source code\nfor portions of the Combined Work that, considered in isolation, are\nbased on the Application, and not on the Linked Version.\n\n The \"Corresponding Application Code\" for a Combined Work means the\nobject code and/or source code for the Application, including any data\nand utility programs needed for reproducing the Combined Work from the\nApplication, but excluding the System Libraries of the Combined Work.\n\n 1. Exception to Section 3 of the GNU GPL.\n\n You may convey a covered work under sections 3 and 4 of this License\nwithout being bound by section 3 of the GNU GPL.\n\n 2. Conveying Modified Versions.\n\n If you modify a copy of the Library, and, in your modifications, a\nfacility refers to a function or data to be supplied by an Application\nthat uses the facility (other than as an argument passed when the\nfacility is invoked), then you may convey a copy of the modified\nversion:\n\n a) under this License, provided that you make a good faith effort to\n ensure that, in the event an Application does not supply the\n function or data, the facility still operates, and performs\n whatever part of its purpose remains meaningful, or\n\n b) under the GNU GPL, with none of the additional permissions of\n this License applicable to that copy.\n\n 3. Object Code Incorporating Material from Library Header Files.\n\n The object code form of an Application may incorporate material from\na header file that is part of the Library. You may convey such object\ncode under terms of your choice, provided that, if the incorporated\nmaterial is not limited to numerical parameters, data structure\nlayouts and accessors, or small macros, inline functions and templates\n(ten or fewer lines in length), you do both of the following:\n\n a) Give prominent notice with each copy of the object code that the\n Library is used in it and that the Library and its use are\n covered by this License.\n\n b) Accompany the object code with a copy of the GNU GPL and this license\n document.\n\n 4. Combined Works.\n\n You may convey a Combined Work under terms of your choice that,\ntaken together, effectively do not restrict modification of the\nportions of the Library contained in the Combined Work and reverse\nengineering for debugging such modifications, if you also do each of\nthe following:\n\n a) Give prominent notice with each copy of the Combined Work that\n the Library is used in it and that the Library and its use are\n covered by this License.\n\n b) Accompany the Combined Work with a copy of the GNU GPL and this license\n document.\n\n c) For a Combined Work that displays copyright notices during\n execution, include the copyright notice for the Library among\n these notices, as well as a reference directing the user to the\n copies of the GNU GPL and this license document.\n\n d) Do one of the following:\n\n 0) Convey the Minimal Corresponding Source under the terms of this\n License, and the Corresponding Application Code in a form\n suitable for, and under terms that permit, the user to\n recombine or relink the Application with a modified version of\n the Linked Version to produce a modified Combined Work, in the\n manner specified by section 6 of the GNU GPL for conveying\n Corresponding Source.\n\n 1) Use a suitable shared library mechanism for linking with the\n Library. A suitable mechanism is one that (a) uses at run time\n a copy of the Library already present on the user's computer\n system, and (b) will operate properly with a modified version\n of the Library that is interface-compatible with the Linked\n Version.\n\n e) Provide Installation Information, but only if you would otherwise\n be required to provide such information under section 6 of the\n GNU GPL, and only to the extent that such information is\n necessary to install and execute a modified version of the\n Combined Work produced by recombining or relinking the\n Application with a modified version of the Linked Version. (If\n you use option 4d0, the Installation Information must accompany\n the Minimal Corresponding Source and Corresponding Application\n Code. If you use option 4d1, you must provide the Installation\n Information in the manner specified by section 6 of the GNU GPL\n for conveying Corresponding Source.)\n\n 5. Combined Libraries.\n\n You may place library facilities that are a work based on the\nLibrary side by side in a single library together with other library\nfacilities that are not Applications and are not covered by this\nLicense, and convey such a combined library under terms of your\nchoice, if you do both of the following:\n\n a) Accompany the combined library with a copy of the same work based\n on the Library, uncombined with any other library facilities,\n conveyed under the terms of this License.\n\n b) Give prominent notice with the combined library that part of it\n is a work based on the Library, and explaining where to find the\n accompanying uncombined form of the same work.\n\n 6. Revised Versions of the GNU Lesser General Public License.\n\n The Free Software Foundation may publish revised and/or new versions\nof the GNU Lesser General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nLibrary as you received it specifies that a certain numbered version\nof the GNU Lesser General Public License \"or any later version\"\napplies to it, you have the option of following the terms and\nconditions either of that published version or of any later version\npublished by the Free Software Foundation. If the Library as you\nreceived it does not specify a version number of the GNU Lesser\nGeneral Public License, you may choose any version of the GNU Lesser\nGeneral Public License ever published by the Free Software Foundation.\n\n If the Library as you received it specifies that a proxy can decide\nwhether future versions of the GNU Lesser General Public License shall\napply, that proxy's public statement of acceptance of any version is\npermanent authorization for you to choose that version for the\nLibrary.", + "json": "lgpl-3.0.json", + "yaml": "lgpl-3.0.yml", + "html": "lgpl-3.0.html", + "license": "lgpl-3.0.LICENSE" + }, + { + "license_key": "lgpl-3.0-cygwin", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "The Cygwin API library found in the winsup subdirectory of the source code is covered by the GNU Lesser General Public License (LGPL) version 3 or later. For details of the requirements of LGPLv3, please read the GNU Lesser General Public License (LGPL).\n\nCygwin\u2122 Linking Exception\n\nAs a special exception, the copyright holders of the Cygwin library grant you additional permission to link libcygwin.a, crt0.o, and gcrt0.o with independent modules to produce an executable, and to convey the resulting executable under terms of your choice, without any need to comply with the conditions of LGPLv3 section 4. An independent module is a module which is not itself based on the Cygwin library.", + "json": "lgpl-3.0-cygwin.json", + "yaml": "lgpl-3.0-cygwin.yml", + "html": "lgpl-3.0-cygwin.html", + "license": "lgpl-3.0-cygwin.LICENSE" + }, + { + "license_key": "lgpl-3.0-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-3.0-linking-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-lgpl-3-plus-linking", + "LicenseRef-scancode-linking-exception-lgpl-3.0" + ], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception to the GNU Lesser General Public License version 3\n(\"LGPL3\"), the copyright holders of this Library give you permission to convey\nto a third party a Combined Work that links statically or dynamically to this\nLibrary without providing any Minimal Corresponding Source or Minimal\nApplication Code as set out in 4d or providing the installation information set\nout in section 4e, provided that you comply with the other provisions of LGPL3\nand provided that you meet, for the Application the terms and conditions of the\nlicense(s) which apply to the Application.\n\nExcept as stated in this special exception, the provisions of LGPL3 will\ncontinue to comply in full to this Library. If you modify this Library, you may\napply this exception to your version of this Library, but you are not obliged to\ndo so. If you do not wish to do so, delete this exception statement from your\nversion. This exception does not (and cannot) modify any license terms which\napply to the Application, with which you must still comply.", + "json": "lgpl-3.0-linking-exception.json", + "yaml": "lgpl-3.0-linking-exception.yml", + "html": "lgpl-3.0-linking-exception.html", + "license": "lgpl-3.0-linking-exception.LICENSE" + }, + { + "license_key": "lgpl-3.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-3.0-or-later", + "other_spdx_license_keys": [ + "LGPL-3.0+" + ], + "is_exception": false, + "is_deprecated": false, + "text": "This library is free software; you can redistribute it and/or modify it under\nthe terms of the GNU Lesser General Public License as published by the Free\nSoftware Foundation; either version 3.0 of the License, or (at your option) any\nlater version.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License along\nwith this library; if not, write to the Free Software Foundation, Inc., 51\nFranklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\n GNU LESSER GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n\n This version of the GNU Lesser General Public License incorporates\nthe terms and conditions of version 3 of the GNU General Public\nLicense, supplemented by the additional permissions listed below.\n\n 0. Additional Definitions.\n\n As used herein, \"this License\" refers to version 3 of the GNU Lesser\nGeneral Public License, and the \"GNU GPL\" refers to version 3 of the GNU\nGeneral Public License.\n\n \"The Library\" refers to a covered work governed by this License,\nother than an Application or a Combined Work as defined below.\n\n An \"Application\" is any work that makes use of an interface provided\nby the Library, but which is not otherwise based on the Library.\nDefining a subclass of a class defined by the Library is deemed a mode\nof using an interface provided by the Library.\n\n A \"Combined Work\" is a work produced by combining or linking an\nApplication with the Library. The particular version of the Library\nwith which the Combined Work was made is also called the \"Linked\nVersion\".\n\n The \"Minimal Corresponding Source\" for a Combined Work means the\nCorresponding Source for the Combined Work, excluding any source code\nfor portions of the Combined Work that, considered in isolation, are\nbased on the Application, and not on the Linked Version.\n\n The \"Corresponding Application Code\" for a Combined Work means the\nobject code and/or source code for the Application, including any data\nand utility programs needed for reproducing the Combined Work from the\nApplication, but excluding the System Libraries of the Combined Work.\n\n 1. Exception to Section 3 of the GNU GPL.\n\n You may convey a covered work under sections 3 and 4 of this License\nwithout being bound by section 3 of the GNU GPL.\n\n 2. Conveying Modified Versions.\n\n If you modify a copy of the Library, and, in your modifications, a\nfacility refers to a function or data to be supplied by an Application\nthat uses the facility (other than as an argument passed when the\nfacility is invoked), then you may convey a copy of the modified\nversion:\n\n a) under this License, provided that you make a good faith effort to\n ensure that, in the event an Application does not supply the\n function or data, the facility still operates, and performs\n whatever part of its purpose remains meaningful, or\n\n b) under the GNU GPL, with none of the additional permissions of\n this License applicable to that copy.\n\n 3. Object Code Incorporating Material from Library Header Files.\n\n The object code form of an Application may incorporate material from\na header file that is part of the Library. You may convey such object\ncode under terms of your choice, provided that, if the incorporated\nmaterial is not limited to numerical parameters, data structure\nlayouts and accessors, or small macros, inline functions and templates\n(ten or fewer lines in length), you do both of the following:\n\n a) Give prominent notice with each copy of the object code that the\n Library is used in it and that the Library and its use are\n covered by this License.\n\n b) Accompany the object code with a copy of the GNU GPL and this license\n document.\n\n 4. Combined Works.\n\n You may convey a Combined Work under terms of your choice that,\ntaken together, effectively do not restrict modification of the\nportions of the Library contained in the Combined Work and reverse\nengineering for debugging such modifications, if you also do each of\nthe following:\n\n a) Give prominent notice with each copy of the Combined Work that\n the Library is used in it and that the Library and its use are\n covered by this License.\n\n b) Accompany the Combined Work with a copy of the GNU GPL and this license\n document.\n\n c) For a Combined Work that displays copyright notices during\n execution, include the copyright notice for the Library among\n these notices, as well as a reference directing the user to the\n copies of the GNU GPL and this license document.\n\n d) Do one of the following:\n\n 0) Convey the Minimal Corresponding Source under the terms of this\n License, and the Corresponding Application Code in a form\n suitable for, and under terms that permit, the user to\n recombine or relink the Application with a modified version of\n the Linked Version to produce a modified Combined Work, in the\n manner specified by section 6 of the GNU GPL for conveying\n Corresponding Source.\n\n 1) Use a suitable shared library mechanism for linking with the\n Library. A suitable mechanism is one that (a) uses at run time\n a copy of the Library already present on the user's computer\n system, and (b) will operate properly with a modified version\n of the Library that is interface-compatible with the Linked\n Version.\n\n e) Provide Installation Information, but only if you would otherwise\n be required to provide such information under section 6 of the\n GNU GPL, and only to the extent that such information is\n necessary to install and execute a modified version of the\n Combined Work produced by recombining or relinking the\n Application with a modified version of the Linked Version. (If\n you use option 4d0, the Installation Information must accompany\n the Minimal Corresponding Source and Corresponding Application\n Code. If you use option 4d1, you must provide the Installation\n Information in the manner specified by section 6 of the GNU GPL\n for conveying Corresponding Source.)\n\n 5. Combined Libraries.\n\n You may place library facilities that are a work based on the\nLibrary side by side in a single library together with other library\nfacilities that are not Applications and are not covered by this\nLicense, and convey such a combined library under terms of your\nchoice, if you do both of the following:\n\n a) Accompany the combined library with a copy of the same work based\n on the Library, uncombined with any other library facilities,\n conveyed under the terms of this License.\n\n b) Give prominent notice with the combined library that part of it\n is a work based on the Library, and explaining where to find the\n accompanying uncombined form of the same work.\n\n 6. Revised Versions of the GNU Lesser General Public License.\n\n The Free Software Foundation may publish revised and/or new versions\nof the GNU Lesser General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nLibrary as you received it specifies that a certain numbered version\nof the GNU Lesser General Public License \"or any later version\"\napplies to it, you have the option of following the terms and\nconditions either of that published version or of any later version\npublished by the Free Software Foundation. If the Library as you\nreceived it does not specify a version number of the GNU Lesser\nGeneral Public License, you may choose any version of the GNU Lesser\nGeneral Public License ever published by the Free Software Foundation.\n\n If the Library as you received it specifies that a proxy can decide\nwhether future versions of the GNU Lesser General Public License shall\napply, that proxy's public statement of acceptance of any version is\npermanent authorization for you to choose that version for the\nLibrary.", + "json": "lgpl-3.0-plus.json", + "yaml": "lgpl-3.0-plus.yml", + "html": "lgpl-3.0-plus.html", + "license": "lgpl-3.0-plus.LICENSE" + }, + { + "license_key": "lgpl-3.0-plus-openssl", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "psycopg2 and the LGPL\n\npsycopg2 is free software: you can redistribute it and/or modify it under the\nterms of the GNU Lesser General Public License as published by the Free Software\nFoundation, either version 3 of the License, or (at your option) any later\nversion.\n\npsycopg2 is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.\n\nIn addition, as a special exception, the copyright holders give permission to\nlink this program with the OpenSSL library (or with modified versions of OpenSSL\nthat use the same license as OpenSSL), and distribute linked combinations\nincluding the two.\n\nYou must obey the GNU Lesser General Public License in all respects for all of\nthe code used other than OpenSSL. If you modify file(s) with this exception, you\nmay extend this exception to your version of the file(s), but you are not\nobligated to do so. If you do not wish to do so, delete this exception statement\nfrom your version. If you delete this exception statement from all source files\nin the program, then also delete it here.\n\nYou should have received a copy of the GNU Lesser General Public License along\nwith psycopg2 (see the doc directory.) If not, see http://www.gnu.org/licenses/.\n\nAlternative licenses\n\nIf you prefer you can use the Zope Database Adapter ZPsycopgDA (i.e., every file\ninside the ZPsycopgDA directory) user the ZPL license as published on the Zope\nweb site.\n\nAlso, the following BSD-like license applies (at your option) to the files\nfollowing the pattern psycopg/adapter*.{h,c} and psycopg/microprotocol*.{h,c}:\n\nPermission is granted to anyone to use this software for any purpose, including\ncommercial applications, and to alter it and redistribute it freely, subject to\nthe following restrictions:\n\nThe origin of this software must not be misrepresented; you must not claim that\nyou wrote the original software. If you use this software in a product, an\nacknowledgment in the product documentation would be appreciated but is not\nrequired.\n\nAltered source versions must be plainly marked as such, and must not be\nmisrepresented as being the original software.\n\nThis notice may not be removed or altered from any source distribution.", + "json": "lgpl-3.0-plus-openssl.json", + "yaml": "lgpl-3.0-plus-openssl.yml", + "html": "lgpl-3.0-plus-openssl.html", + "license": "lgpl-3.0-plus-openssl.LICENSE" + }, + { + "license_key": "lgpl-3.0-zeromq", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": " SPECIAL EXCEPTION GRANTED BY COPYRIGHT HOLDERS\n\nAs a special exception, copyright holders give you permission to link this\nlibrary with independent modules to produce an executable, regardless of\nthe license terms of these independent modules, and to copy and distribute\nthe resulting executable under terms of your choice, provided that you also\nmeet, for each linked independent module, the terms and conditions of\nthe license of that module. An independent module is a module which is not\nderived from or based on this library. If you modify this library, you must\nextend this exception to your version of the library.", + "json": "lgpl-3.0-zeromq.json", + "yaml": "lgpl-3.0-zeromq.yml", + "html": "lgpl-3.0-zeromq.html", + "license": "lgpl-3.0-zeromq.LICENSE" + }, + { + "license_key": "lgpllr", + "category": "Copyleft Limited", + "spdx_license_key": "LGPLLR", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Lesser General Public License For Linguistic Resources\n\nPreamble\n\nThe licenses for most data are designed to take away your freedom to \nshare and change it. By contrast, this License is intended to guarantee \nyour freedom to share and change free data--to make sure the data are \nfree for all their users.\n\nThis License, the Lesser General Public License for Linguistic Resources, \napplies to some specially designated linguistic resources -- typically \nlexicons and grammars.\n\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n0. This License Agreement applies to any Linguistic Resource which contains \na notice placed by the copyright holder or other authorized party saying it \nmay be distributed under the terms of this Lesser General Public License for \nLinguistic Resources (also called \"this License\"). Each licensee is \naddressed as \"you\".\n\nA \"linguistic resource\" means a collection of data about language prepared \nso as to be used with application programs.\n\nThe \"Linguistic Resource\", below, refers to any such work which has been \ndistributed under these terms. A \"work based on the Linguistic Resource\" means \neither the Linguistic Resource or any derivative work under copyright law: that \nis to say, a work containing the Linguistic Resource or a portion of it, either \nverbatim or with modifications and/or translated straightforwardly into another \nlanguage. (Hereinafter, translation is included without limitation in the term \n\"modification\".)\n\n\"Legible form\" for a linguistic resource means the preferred form of the resource \nfor making modifications to it.\n\nActivities other than copying, distribution and modification are not covered by \nthis License; they are outside its scope. The act of running a program using the \nLinguistic Resource is not restricted, and output from such a program is covered \nonly if its contents constitute a work based on the Linguistic Resource \n(independent of the use of the Linguistic Resource in a tool for writing it). \nWhether that is true depends on what the program that uses the Linguistic \nResource does.\n\n1. You may copy and distribute verbatim copies of the Linguistic Resource as you \nreceive it, in any medium, provided that you conspicuously and appropriately \npublish on each copy an appropriate copyright notice and disclaimer of warranty; \nkeep intact all the notices that refer to this License and to the absence of any \nwarranty; and distribute a copy of this License along with the Linguistic Resource.\n\nYou may charge a fee for the physical act of transferring a copy, and you may at \nyour option offer warranty protection in exchange for a fee.\n\n2. You may modify your copy or copies of the Linguistic Resource or any portion \nof it, thus forming a work based on the Linguistic Resource, and copy and distribute \nsuch modifications or work under the terms of Section 1 above, provided that you \nalso meet all of these conditions:\n\n a) The modified work must itself be a linguistic resource.\n b) You must cause the files modified to carry prominent notices stating that \n you changed the files and the date of any change.\n c) You must cause the whole of the work to be licensed at no charge to all \n third parties under the terms of this License.\n\nThese requirements apply to the modified work as a whole. If identifiable sections \nof that work are not derived from the Linguistic Resource, and can be reasonably \nconsidered independent and separate works in themselves, then this License, and \nits terms, do not apply to those sections when you distribute them as separate \nworks. But when you distribute the same sections as part of a whole which is a work \nbased on the Linguistic Resource, the distribution of the whole must be on the terms \nof this License, whose permissions for other licensees extend to the entire whole, \nand thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest your rights to \nwork written entirely by you; rather, the intent is to exercise the right to control \nthe distribution of derivative or collective works based on the Linguistic Resource.\n\nIn addition, mere aggregation of another work not based on the Linguistic Resource \nwith the Linguistic Resource (or with a work based on the Linguistic Resource) on a \nvolume of a storage or distribution medium does not bring the other work under the \nscope of this License.\n\n3. A program that contains no derivative of any portion of the Linguistic Resource, \nbut is designed to work with the Linguistic Resource (or an encrypted form of the \nLinguistic Resource) by reading it or being compiled or linked with it, is called \na \"work that uses the Linguistic Resource\". Such a work, in isolation, is not a \nderivative work of the Linguistic Resource, and therefore falls outside the scope \nof this License.\n\nHowever, combining a \"work that uses the Linguistic Resource\" with the Linguistic \nResource (or an encrypted form of the Linguistic Resource) creates a package that \nis a derivative of the Linguistic Resource (because it contains portions of the \nLinguistic Resource), rather than a \"work that uses the Linguistic Resource\". If \nthe package is a derivative of the Linguistic Resource, you may distribute the \npackage under the terms of Section 4. Any works containing that package also \nfall under Section 4.\n\n4. As an exception to the Sections above, you may also combine a \"work that uses \nthe Linguistic Resource\" with the Linguistic Resource (or an encrypted form of the \nLinguistic Resource) to produce a package containing portions of the Linguistic \nResource, and distribute that package under terms of your choice, provided that \nthe terms permit modification of the package for the customer's own use and reverse \nengineering for debugging such modifications.\n\nYou must give prominent notice with each copy of the package that the Linguistic \nResource is used in it and that the Linguistic Resource and its use are covered by \nthis License. You must supply a copy of this License. If the package during execution \ndisplays copyright notices, you must include the copyright notice for the Linguistic \nResource among them, as well as a reference directing the user to the copy of this \nLicense. Also, you must do one of these things:\n\n a) Accompany the package with the complete corresponding machine-readable \n legible form of the Linguistic Resource including whatever changes were used \n in the package (which must be distributed under Sections 1 and 2 above); and, \n if the package contains an encrypted form of the Linguistic Resource, with the \n complete machine-readable \"work that uses the Linguistic Resource\", as object \n code and/or source code, so that the user can modify the Linguistic Resource \n and then encrypt it to produce a modified package containing the modified \n Linguistic Resource.\n b) Use a suitable mechanism for combining with the Linguistic Resource. A \n suitable mechanism is one that will operate properly with a modified version \n of the Linguistic Resource, if the user installs one, as long as the modified \n version is interface-compatible with the version that the package was made with.\n c) Accompany the package with a written offer, valid for at least three years, \n to give the same user the materials specified in Subsection 4a, above, for a \n charge no more than the cost of performing this distribution.\n d) If distribution of the package is made by offering access to copy from a \n designated place, offer equivalent access to copy the above specified materials \n from the same place.\n e) Verify that the user has already received a copy of these materials or \n that you have already sent this user a copy.\n\nIf the package includes an encrypted form of the Linguistic Resource, the required form \nof the \"work that uses the Linguistic Resource\" must include any data and utility \nprograms needed for reproducing the package from it. However, as a special exception, \nthe materials to be distributed need not include anything that is normally distributed \n(in either source or binary form) with the major components (compiler, kernel, and so on) \nof the operating system on which the executable runs, unless that component itself \naccompanies the executable.\n\nIt may happen that this requirement contradicts the license restrictions of proprietary \nlibraries that do not normally accompany the operating system. Such a contradiction means \nyou cannot use both them and the Linguistic Resource together in a package that you distribute.\n\n5. You may not copy, modify, sublicense, link with, or distribute the Linguistic Resource \nexcept as expressly provided under this License. Any attempt otherwise to copy, modify, \nsublicense, link with, or distribute the Linguistic Resource is void, and will automatically \nterminate your rights under this License. However, parties who have received copies, or rights, \nfrom you under this License will not have their licenses terminated so long as such parties \nremain in full compliance.\n\n6. You are not required to accept this License, since you have not signed it. However, nothing \nelse grants you permission to modify or distribute the Linguistic Resource or its derivative \nworks. These actions are prohibited by law if you do not accept this License. Therefore, by \nmodifying or distributing the Linguistic Resource (or any work based on the Linguistic Resource), \nyou indicate your acceptance of this License to do so, and all its terms and conditions for \ncopying, distributing or modifying the Linguistic Resource or works based on it.\n\n7. Each time you redistribute the Linguistic Resource (or any work based on the Linguistic \nResource), the recipient automatically receives a license from the original licensor to copy, \ndistribute, link with or modify the Linguistic Resource subject to these terms and conditions. \nYou may not impose any further restrictions on the recipients' exercise of the rights granted \nherein. You are not responsible for enforcing compliance by third parties with this License.\n\n8. If, as a consequence of a court judgment or allegation of patent infringement or for any \nother reason (not limited to patent issues), conditions are imposed on you (whether by court \norder, agreement or otherwise) that contradict the conditions of this License, they do not \nexcuse you from the conditions of this License. If you cannot distribute so as to satisfy \nsimultaneously your obligations under this License and any other pertinent obligations, then \nas a consequence you may not distribute the Linguistic Resource at all. For example, if a \npatent license would not permit royalty-free redistribution of the Linguistic Resource by \nall those who receive copies directly or indirectly through you, then the only way you could \nsatisfy both it and this License would be to refrain entirely from distribution of the \nLinguistic Resource.\n\nIf any portion of this section is held invalid or unenforceable under any particular \ncircumstance, the balance of the section is intended to apply, and the section as a whole is \nintended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any patents or other property \nright claims or to contest validity of any such claims; this section has the sole purpose of \nprotecting the integrity of the free resource distribution system which is implemented by public \nlicense practices. Many people have made generous contributions to the wide range of data \ndistributed through that system in reliance on consistent application of that system; it is up \nto the author/donor to decide if he or she is willing to distribute resources through any other \nsystem and a licensee cannot impose that choice.\n\nThis section is intended to make thoroughly clear what is believed to be a consequence of \nthe rest of this License.\n\n9. If the distribution and/or use of the Linguistic Resource is restricted in certain countries \neither by patents or by copyrighted interfaces, the original copyright holder who places the \nLinguistic Resource under this License may add an explicit geographical distribution limitation \nexcluding those countries, so that distribution is permitted only in or among countries not \nthus excluded. In such case, this License incorporates the limitation as if written in the \nbody of this License.\n\n10. The Free Software Foundation may publish revised and/or new versions of the Lesser General \nPublic License for Linguistic Resources from time to time. Such new versions will be similar \nin spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Linguistic Resource specifies a \nversion number of this License which applies to it and \"any later version\", you have the \noption of following the terms and conditions either of that version or of any later version \npublished by the Free Software Foundation. If the Linguistic Resource does not specify a license \nversion number, you may choose any version ever published by the Free Software Foundation.\n\n11. If you wish to incorporate parts of the Linguistic Resource into other free programs whose \ndistribution conditions are incompatible with these, write to the author to ask for permission.\n\n\nNO WARRANTY\n\n12. BECAUSE THE LINGUISTIC RESOURCE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE \nLINGUISTIC RESOURCE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN \nWRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LINGUISTIC RESOURCE \"AS IS\" \nWITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK \nAS TO THE QUALITY AND PERFORMANCE OF THE LINGUISTIC RESOURCE IS WITH YOU. SHOULD THE LINGUISTIC \nRESOURCE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n13. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT \nHOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LINGUISTIC RESOURCE AS \nPERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR \nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LINGUISTIC RESOURCE \n(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED \nBY YOU OR THIRD PARTIES OR A FAILURE OF THE LINGUISTIC RESOURCE TO OPERATE WITH ANY OTHER \nSOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nEND OF TERMS AND CONDITIONS", + "json": "lgpllr.json", + "yaml": "lgpllr.yml", + "html": "lgpllr.html", + "license": "lgpllr.LICENSE" + }, + { + "license_key": "lha", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-lha", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LHA LICENSE\n\nPermission is given for redistribution, copy, and modification provided\n following conditions are met.\n 1. Do not remove copyright clause.\n 2. Distribution shall conform:\n a. The content of redistribution (i.e., source code, documentation,\n and reference guide for programmers) shall include original contents.\n If contents are modified, the document clearly indicating\n the fact of modification must be included.\n b. If LHa is redistributed with added values, you must put your best\n effort to include them (Translator comment: If read literally,\n original Japanese was unclear what \"them\" means here. But\n undoubtedly this \"them\" means source code for the added value\n portion and this is a typical Japanese sloppy writing style to\n abbreviate as such) Also the document clearly indicating that\n added value was added must be included.\n c. Binary only distribution is not allowed (including added value\n ones.)\n 3. You need to put effort to distribute the latest version (This is not\n your duty).\n NB: Distribution on Internet is free. Please notify me by e-mail or\n other means prior to the distribution if distribution is done through\n non-Internet media (Magazine, CDROM etc.) If not, make sure to Email\n me later.\n 4. Any damage caused by the existence and use of this program will not\n be compensated.\n 5. Author will not be responsible to correct errors even if program is\n defective.\n 6. This program, either as a part of this or as a whole of this, may be\n included into other programs. In this case, that program is not LHa\n and can not call itself LHa.\n 7. For commercial use, in addition to above conditions, following\n condition needs to be met.\n a. The program whose content is mainly this program can not be used\n commercially.\n b. If the recipient of commercial use deems inappropriate as a\n program user, you must not distribute.\n c. If used as a method for the installation, you must not force\n others to use this program. In this case, commercial user will\n perform its work while taking full responsibility of its outcome.\n d. If added value is done under the commercial use by using this\n program, commercial user shall provide its support.\n(Osamu Aoki also comments:\n Here \"commercial\" may be interpreted as \"for-fee\". \"Added value\" seems\n to mean \"feature enhancement\". )\nTranslated License Statement by Tsugio Okamoto (translated by\nGOTO Masanori ):\n It's free to distribute on the network, but if you distribute for\n the people who cannot access the network (by magazine or CD-ROM),\n please send E-Mail (Inter-Net address) to the author before the\n distribution. That's well where this software is appeard.\n If you cannot do, you must send me the E-Mail later.`", + "json": "lha.json", + "yaml": "lha.yml", + "html": "lha.html", + "license": "lha.LICENSE" + }, + { + "license_key": "libcap", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Unless otherwise *explicitly* stated, the following text describes the\nlicensed conditions under which the contents of this libcap release\nmay be used and distributed:\n\n-------------------------------------------------------------------------\nRedistribution and use in source and binary forms of libcap, with\nor without modification, are permitted provided that the following\nconditions are met:\n\n1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n\n2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n\n3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n\nALTERNATIVELY, this product may be distributed under the terms of the\nGNU General Public License (v2.0 - see below), in which case the\nprovisions of the GNU GPL are required INSTEAD OF the above\nrestrictions. (This clause is necessary due to a potential conflict\nbetween the GNU GPL and the restrictions contained in a BSD-style\ncopyright.)\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\nIN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\nOF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\nUSE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGE.\n-------------------------------------------------------------------------", + "json": "libcap.json", + "yaml": "libcap.yml", + "html": "libcap.html", + "license": "libcap.LICENSE" + }, + { + "license_key": "liberation-font-exception", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-liberation-font-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": " LICENSE AGREEMENT AND LIMITED PRODUCT WARRANTY\n LIBERATION FONT SOFTWARE\n \n This agreement governs the use of the Software and any updates to the Software, regardless of the delivery mechanism. Subject to the following terms, Red Hat, Inc. (\"Red Hat\") grants to the user (\"Client\") a license to this work pursuant to the GNU General Public License v.2 with the exceptions set forth below and such other terms as are set forth in this End User License Agreement.\n \n 1. The Software and License Exception. LIBERATION font software (the \"Software\") consists of TrueType-OpenType formatted font software for rendering LIBERATION typefaces in sans-serif, serif, and monospaced character styles. You are licensed to use, modify, copy, and distribute the Software pursuant to the GNU General Public License v.2 with the following exceptions: \n \n (a) As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.\n \n (b) As a further exception, any distribution of the object code of the Software in a physical product must provide you the right to access and modify the source code for the Software and to reinstall that modified version of the Software in object code form on the same physical product on which you received it.\n \n 2. Intellectual Property Rights. The Software and each of its components, including the source code, documentation, appearance, structure and organization are owned by Red Hat and others and are protected under copyright and other laws. Title to the Software and any component, or to any copy, modification, or merged portion shall remain with the aforementioned, subject to the applicable license. The \"LIBERATION\" trademark is a trademark of Red Hat, Inc. in the U.S. and other countries. This agreement does not permit Client to distribute modified versions of the Software using Red Hat's trademarks. If Client makes a redistribution of a modified version of the Software, then Client must modify the files names to remove any reference to the Red Hat trademarks and must not use the Red Hat trademarks in any way to reference or promote the modified Software. \n \n 3. Limited Warranty. To the maximum extent permitted under applicable law, the Software is provided and licensed \"as is\" without warranty of any kind, expressed or implied, including the implied warranties of merchantability, non-infringement or fitness for a particular purpose. Red Hat does not warrant that the functions contained in the Software will meet Client's requirements or that the operation of the Software will be entirely error free or appear precisely as described in the accompanying documentation. \n \n 4. Limitation of Remedies and Liability. To the maximum extent permitted by applicable law, Red Hat or any Red Hat authorized dealer will not be liable to Client for any incidental or consequential damages, including lost profits or lost savings arising out of the use or inability to use the Software, even if Red Hat or such dealer has been advised of the possibility of such damages. \n \n 5. General. If any provision of this agreement is held to be unenforceable, that shall not affect the enforceability of the remaining provisions. This agreement shall be governed by the laws of the State of North Carolina and of the United States, without regard to any conflict of laws provisions, except that the United Nations Convention on the International Sale of Goods shall not apply.\n Copyright \u00a9 2007 Red Hat, Inc. All rights reserved. LIBERATION is a trademark of Red Hat, Inc.", + "json": "liberation-font-exception.json", + "yaml": "liberation-font-exception.yml", + "html": "liberation-font-exception.html", + "license": "liberation-font-exception.LICENSE" + }, + { + "license_key": "libgd-2018", + "category": "Permissive", + "spdx_license_key": "GD", + "other_spdx_license_keys": [ + "LicenseRef-scancode-libgd-2018" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Credits and license terms:\n\nIn order to resolve any possible confusion regarding the authorship of\ngd, the following copyright statement covers all of the authors who\nhave required such a statement. If you are aware of any oversights in\nthis copyright notice, please contact Pierre-A. Joye who will be\npleased to correct them.\n\n* Portions copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,\n 2002, 2003, 2004 by Cold Spring Harbor Laboratory. Funded under\n Grant P41-RR02188 by the National Institutes of Health.\n\n* Portions copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,\n 2004 by Boutell.Com, Inc.\n\n* Portions relating to GD2 format copyright 1999, 2000, 2001, 2002,\n 2003, 2004 Philip Warner.\n\n* Portions relating to PNG copyright 1999, 2000, 2001, 2002, 2003,\n 2004 Greg Roelofs.\n\n* Portions relating to gdttf.c copyright 1999, 2000, 2001, 2002,\n 2003, 2004 John Ellson (ellson@graphviz.org).\n\n* Portions relating to gdft.c copyright 2001, 2002, 2003, 2004 John\n Ellson (ellson@graphviz.org).\n\n* Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007\n Pierre-Alain Joye (pierre@libgd.org).\n\n* Portions relating to JPEG and to color quantization copyright\n 2000, 2001, 2002, 2003, 2004, Doug Becker and copyright (C) 1994,\n 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Thomas\n G. Lane. This software is based in part on the work of the\n Independent JPEG Group. See the file README-JPEG.TXT for more\n information.\n\n* Portions relating to GIF compression copyright 1989 by Jef\n Poskanzer and David Rowley, with modifications for thread safety\n by Thomas Boutell.\n\n* Portions relating to GIF decompression copyright 1990, 1991, 1993\n by David Koblas, with modifications for thread safety by Thomas\n Boutell.\n\n* Portions relating to WBMP copyright 2000, 2001, 2002, 2003, 2004\n Maurice Szmurlo and Johan Van den Brande.\n\n* Portions relating to GIF animations copyright 2004 Jaakko Hyv\u00e4tti\n (jaakko.hyvatti@iki.fi)\n\nPermission has been granted to copy, distribute and modify gd in\nany context without fee, including a commercial application,\nprovided that this notice is present in user-accessible supporting\ndocumentation.\n\nThis does not affect your ownership of the derived work itself,\nand the intent is to assure proper credit for the authors of gd,\nnot to interfere with your productive use of gd. If you have\nquestions, ask. \"Derived works\" includes all programs that utilize\nthe library. Credit must be given in user-accessible\ndocumentation.\n\nThis software is provided \"AS IS.\" The copyright holders disclaim\nall warranties, either express or implied, including but not\nlimited to implied warranties of merchantability and fitness for a\nparticular purpose, with respect to this code and accompanying\ndocumentation.\n\nAlthough their code does not appear in the current release, the\nauthors wish to thank David Koblas, David Rowley, and Hutchison\nAvenue Software Corporation for their prior contributions.", + "json": "libgd-2018.json", + "yaml": "libgd-2018.yml", + "html": "libgd-2018.html", + "license": "libgd-2018.LICENSE" + }, + { + "license_key": "libgeotiff", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-libgeotiff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "libgeotiff Licensing\n====================\n\nAll the source code in this toolkit are either in the public domain, or under\nan X style license. In any event it is all considered to be free to use\nfor any purpose (including commercial software). No credit is required\nthough some of the code requires that the specific source code modules\nretain their existing copyright statements. The CSV files, and other tables\nderived from the EPSG coordinate system database are also free to use. In\nparticular, no part of this code is \"copyleft\", nor does it imply any\nrequirement for users to disclose this or their own source code.\n\nAll components not carrying their own copyright message, but distributed\nwith libgeotiff should be considered to be under the same license as\nNiles' code.\n\n---------\n\nCode by Frank Warmerdam has this copyright notice (directly copied from\nX Consortium licence):\n\n * Copyright (c) 1999, Frank Warmerdam\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\n-----------\n\nCode by Niles Ritter is under this licence:\n\n * Written By: Niles D. Ritter.\n *\n * copyright (c) 1995 Niles D. Ritter\n *\n * Permission granted to use this software, so long as this copyright\n * notice accompanies any products derived therefrom.\n\n-----------\n\nThe EPSG Tables (from which the CSV files, and .inc files are derived)\ncarried this statement on use of the data (from the EPSG web site):\n\nUse of the Data\n\nThe user assumes the entire risk as to the accuracy and the use of this\ndata. The data may be used, copied and distributed subject to the following\nconditions:\n\n1. INFORMATION PROVIDED IN THIS DOCUMENT IS PROVIDED \"AS IS\"\n WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,\n INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.\n\n2. The data may be included in any commercial package provided that any\n commerciality is based on value added by the provider and not on a value\n ascribed to the EPSG dataset which is made available at no charge. The\n ownership of the EPSG dataset [OGP] must be acknowledged.\n\n3. Subsets of information may be extracted from the dataset. Users are\n advised that coordinate reference system and coordinate transformation\n descriptions are incomplete unless all elements detailed as essential\n in OGP Surveying and Positioning Guidance Note 7-1 annex F are included.\n\n4. Essential elements should preferably be reproduced as described in the\n dataset. Modification of parameter values is permitted as described in\n the table below to allow change to the content of the information provided\n that numeric equivalence is achieved. Numeric equivalence refers to the\n results of geodetic calculations in which the parameters are used, for\n example (i) conversion of ellipsoid defining parameters, or (ii) conversion\n of parameters between one and two standard parallel projection methods,\n or (iii) conversion of parameters between 7-parameter geocentric\n transformation methods.\n\n (EPSG provides a table at this point with some details)\n\n5. No data that has been modified other than as permitted in these terms\n and conditions shall be described as or attributed to the EPSG dataset.", + "json": "libgeotiff.json", + "yaml": "libgeotiff.yml", + "html": "libgeotiff.html", + "license": "libgeotiff.LICENSE" + }, + { + "license_key": "libmib", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-libmib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "- - - - - - - - - - - - Copyright Notice - - - - - - - - - - - -\n\nCopyright 1998 Forrest J. Cavalier III\n\nSee http://www.mibsoftware.com/libmib/ for documentation, original copies, and information on supported, industrial quality (non-experimental) versions appropriate for commercial use. This version is considered experimental.\n\nThis software is provided by Forrest J. Cavalier III, d-b-a Mib Software, under the license which follows, which is believed to meet the open-source definition, version 1.0 at http://www.opensource.org\n\nWe would appreciate that you notify us of defect discoveries and enhancements so that others can benefit from work on open-source software.\n\nForrest J. Cavalier III, Mib Software http://www.mibsoftware.com We customize and extend reusable and open software.\n\n- - - - - - - - - - - - - License - - - - - - - - - - - - - - - - -\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software (the \"Software\"), to deal in the Software without restriction, including 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.\n\n1. The above copyright notice and this permission notice shall be included in the source code of all copies or substantial portions of the Software.\n\n2. Modifications to the Software may be created.\nUnless other licensing agreements are made in writing, these conditions apply when distributing source code.\n\na) When source code of the Software is distributed, it shall be in its \"pristine\", unmodified form.\nand\nb) Modifications to the Software which are distributed as source code shall be distributed only as \"patch files.\"\nand\nc) Modified works that are distributed shall be named differently than the original.\n\nContact the author to arrange other terms.\n\n3. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */", + "json": "libmib.json", + "yaml": "libmib.yml", + "html": "libmib.html", + "license": "libmib.LICENSE" + }, + { + "license_key": "libmng-2007", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-libmng-2007", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The MNG Library is supplied \"AS IS\". The Contributing Authors \ndisclaim all warranties, expressed or implied, including, without \nlimitation, the warranties of merchantability and of fitness for any \npurpose. The Contributing Authors assume no liability for direct, \nindirect, incidental, special, exemplary, or consequential damages, \nwhich may result from the use of the MNG Library, even if advised of \nthe possibility of such damage. \n \nPermission is hereby granted to use, copy, modify, and distribute this \nsource code, or portions hereof, for any purpose, without fee, subject \nto the following restrictions: \n \n1. The origin of this source code must not be misrepresented; \n you must not claim that you wrote the original software. \n \n2. Altered versions must be plainly marked as such and must not be \n misrepresented as being the original source. \n \n3. This Copyright notice may not be removed or altered from any source \n or altered source distribution. \n \nThe Contributing Authors specifically permit, without fee, and \nencourage the use of this source code as a component to supporting \nthe MNG and JNG file format in commercial products. If you use this \nsource code in a product, acknowledgment would be highly appreciated.", + "json": "libmng-2007.json", + "yaml": "libmng-2007.yml", + "html": "libmng-2007.html", + "license": "libmng-2007.LICENSE" + }, + { + "license_key": "libpbm", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-libpbm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software and its documentation\nfor any purpose and without fee is hereby granted, provided that the above copyright\nnotice appear in all copies and that both that copyright notice and this permission\nnotice appear in supporting documentation. This software is provided \"as is\" without\nexpress or implied warranty.", + "json": "libpbm.json", + "yaml": "libpbm.yml", + "html": "libpbm.html", + "license": "libpbm.LICENSE" + }, + { + "license_key": "libpng", + "category": "Permissive", + "spdx_license_key": "Libpng", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This copy of the libpng notices is provided for your convenience. In case of\nany discrepancy between this copy and the notices in the file png.h that is\nincluded in the libpng distribution, the latter shall prevail.\n\nCOPYRIGHT NOTICE, DISCLAIMER, and LICENSE:\n\nIf you modify libpng you may insert additional notices immediately following\nthis sentence.\n\nlibpng versions 1.2.6, August 15, 2004, through 1.2.33, October 31, 2008, are\nCopyright (c) 2004, 2006-2008 Glenn Randers-Pehrson, and are\ndistributed according to the same disclaimer and license as libpng-1.2.5\nwith the following individual added to the list of Contributing Authors\n\n Cosmin Truta\n\nlibpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are\nCopyright (c) 2000-2002 Glenn Randers-Pehrson, and are\ndistributed according to the same disclaimer and license as libpng-1.0.6\nwith the following individuals added to the list of Contributing Authors\n\n Simon-Pierre Cadieux\n Eric S. Raymond\n Gilles Vollant\n\nand with the following additions to the disclaimer:\n\n There is no warranty against interference with your enjoyment of the\n library or against infringement. There is no warranty that our\n efforts or the library will fulfill any of your particular purposes\n or needs. This library is provided with all faults, and the entire\n risk of satisfactory quality, performance, accuracy, and effort is with\n the user.\n\nlibpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are\nCopyright (c) 1998, 1999 Glenn Randers-Pehrson, and are\ndistributed according to the same disclaimer and license as libpng-0.96,\nwith the following individuals added to the list of Contributing Authors:\n\n Tom Lane\n Glenn Randers-Pehrson\n Willem van Schaik\n\nlibpng versions 0.89, June 1996, through 0.96, May 1997, are\nCopyright (c) 1996, 1997 Andreas Dilger\nDistributed according to the same disclaimer and license as libpng-0.88,\nwith the following individuals added to the list of Contributing Authors:\n\n John Bowler\n Kevin Bracey\n Sam Bushell\n Magnus Holmgren\n Greg Roelofs\n Tom Tanner\n\nlibpng versions 0.5, May 1995, through 0.88, January 1996, are\nCopyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.\n\nFor the purposes of this copyright and license, \"Contributing Authors\"\nis defined as the following set of individuals:\n\n Andreas Dilger\n Dave Martindale\n Guy Eric Schalnat\n Paul Schmidt\n Tim Wegner\n\nThe PNG Reference Library is supplied \"AS IS\". The Contributing Authors\nand Group 42, Inc. disclaim all warranties, expressed or implied,\nincluding, without limitation, the warranties of merchantability and of\nfitness for any purpose. The Contributing Authors and Group 42, Inc.\nassume no liability for direct, indirect, incidental, special, exemplary,\nor consequential damages, which may result from the use of the PNG\nReference Library, even if advised of the possibility of such damage.\n\nPermission is hereby granted to use, copy, modify, and distribute this\nsource code, or portions hereof, for any purpose, without fee, subject\nto the following restrictions:\n\n1. The origin of this source code must not be misrepresented.\n\n2. Altered versions must be plainly marked as such and must not\n be misrepresented as being the original source.\n\n3. This Copyright notice may not be removed or altered from any\n source or altered source distribution.\n\nThe Contributing Authors and Group 42, Inc. specifically permit, without\nfee, and encourage the use of this source code as a component to\nsupporting the PNG file format in commercial products. If you use this\nsource code in a product, acknowledgment is not required but would be\nappreciated.\n\n\nA \"png_get_copyright\" function is available, for convenient use in \"about\"\nboxes and the like:\n\n printf(\"%s\",png_get_copyright(NULL));\n\nAlso, the PNG logo (in PNG format, of course) is supplied in the\nfiles \"pngbar.png\" and \"pngbar.jpg (88x31) and \"pngnow.png\" (98x31).\n\nLibpng is OSI Certified Open Source Software. OSI Certified Open Source is a\ncertification mark of the Open Source Initiative.\n\nGlenn Randers-Pehrson\nglennrp at users.sourceforge.net\nOctober 31, 2008", + "json": "libpng.json", + "yaml": "libpng.yml", + "html": "libpng.html", + "license": "libpng.LICENSE" + }, + { + "license_key": "libpng-v2", + "category": "Permissive", + "spdx_license_key": "libpng-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "COPYRIGHT NOTICE, DISCLAIMER, and LICENSE\n=========================================\n\nPNG Reference Library License version 2\n---------------------------------------\n\n * Copyright (c) 1995-2018 The PNG Reference Library Authors.\n * Copyright (c) 2018 Cosmin Truta.\n * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson.\n * Copyright (c) 1996-1997 Andreas Dilger.\n * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.\n\nThe software is supplied \"as is\", without warranty of any kind,\nexpress or implied, including, without limitation, the warranties\nof merchantability, fitness for a particular purpose, title, and\nnon-infringement. In no even shall the Copyright owners, or\nanyone distributing the software, be liable for any damages or\nother liability, whether in contract, tort or otherwise, arising\nfrom, out of, or in connection with the software, or the use or\nother dealings in the software, even if advised of the possibility\nof such damage.\n\nPermission is hereby granted to use, copy, modify, and distribute\nthis software, or portions hereof, for any purpose, without fee,\nsubject to the following restrictions:\n\n 1. The origin of this software must not be misrepresented; you\n must not claim that you wrote the original software. If you\n use this software in a product, an acknowledgment in the product\n documentation would be appreciated, but is not required.\n\n 2. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n\n 3. This Copyright notice may not be removed or altered from any\n source or altered source distribution.", + "json": "libpng-v2.json", + "yaml": "libpng-v2.yml", + "html": "libpng-v2.html", + "license": "libpng-v2.LICENSE" + }, + { + "license_key": "librato-exception", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-librato-exception", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Librato Open License\nVersion 1.0, October, 2016\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and\ndistribution as defined by Sections 1 through 11 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright\nowner that is granting the License. Licensor can include Librato as an\noriginal contributor to the Work as defined below.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities\nthat control, are controlled by, or are under common control with that entity.\nFor the purposes of this definition, \"control\" means (i) the power, direct or\nindirect, to cause the direction or management of such entity, whether by\ncontract or otherwise, or (ii) ownership of fifty percent (50%) or more of the\noutstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising\npermissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including\nbut not limited to software source code, documentation source, and\nconfiguration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or\ntranslation of a Source form, including but not limited to compiled object\ncode, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form,\nmade available under the License, as indicated by a copyright notice that is\nincluded in or attached to the work.\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that\nis based on (or derived from) the Work and for which the editorial revisions,\nannotations, elaborations, or other modifications represent, as a whole, an\noriginal work of authorship. For the purposes of this License, Derivative Works\nshall not include works that remain separable from, or merely link (or bind by\nname) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original\nversion of the Work and any modifications or additions to that Work or\nDerivative Works thereof, that is intentionally submitted to Licensor for\ninclusion in the Work by the copyright owner or by an individual or Legal\nEntity authorized to submit on behalf of the copyright owner. For the purposes\nof this definition, \"submitted\" means any form of electronic, verbal, or\nwritten communication sent to the Licensor or its representatives, including\nbut not limited to communication on electronic mailing lists, source code\ncontrol systems, and issue tracking systems that are managed by, or on behalf\nof, the Licensor for the purpose of discussing and improving the Work, but\nexcluding communication that is conspicuously marked or otherwise designated in\nwriting by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf\nof whom a Contribution has been received by Licensor and subsequently\nincorporated within the Work.\n\n2. Grant of Copyright License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable copyright license to reproduce, prepare Derivative Works of,\npublicly display, publicly perform, sublicense, and distribute the Work and\nsuch Derivative Works in Source or Object form.\n\n3. Grant of Patent License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable (except as stated in this section) patent license to make, have\nmade, use, offer to sell, sell, import, and otherwise transfer the Work, where\nsuch license applies only to those patent claims licensable by such Contributor\nthat are necessarily infringed by their Contribution(s) alone or by combination\nof their Contribution(s) with the Work to which such Contribution(s) was\nsubmitted. If You institute patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that the Work or a\nContribution incorporated within the Work constitutes direct or contributory\npatent infringement, then any patent licenses granted to You under this License\nfor that Work shall terminate as of the date such litigation is filed.\n\nEach time You convey a covered Work, the recipient automatically receives a\nlicense from the original Licensor(s), to run, modify and propagate that work,\nsubject to this License. You are not responsible for enforcing compliance by\nthird parties with this License.\n\nYou may not impose any further restrictions on the exercise of the rights\ngranted or affirmed under this License. For example, you may not impose a\nlicense fee, royalty, or other charge for exercise of rights granted under this\nLicense, and you may not initiate litigation (including a cross-claim or\ncounterclaim in a lawsuit) alleging that any patent claim is infringed by\nmaking, using, selling, offering for sale, or importing the Work or any portion\nof it.\n\n4. Redistribution.\n\nYou may reproduce and distribute copies of the Work or Derivative Works thereof\nin any medium, with or without modifications, and in Source or Object form,\nprovided that You meet the following conditions:\n\n 1. You must give any other recipients of the Work or Derivative Works a copy\nof this License; and\n 2. You must cause any modified files to carry prominent notices stating that\nYou changed the files; and\n 3. You must retain, in the Source form of any Derivative Works that You\ndistribute, all copyright, patent, trademark, and attribution notices from the\nSource form of the Work, excluding those notices that do not pertain to any\npart of the Derivative Works; and\n 4. If the Work includes a \"NOTICE\" text file as part of its distribution,\nthen any Derivative Works that You distribute must include a readable copy of\nthe attribution notices contained within such NOTICE file, excluding those\nnotices that do not pertain to any part of the Derivative Works, in at least\none of the following places: within a NOTICE text file distributed as part of\nthe Derivative Works; within the Source form or documentation, if provided\nalong with the Derivative Works; or, within a display generated by the\nDerivative Works, if and wherever such third-party notices normally appear. The\ncontents of the NOTICE file are for informational purposes only and do not\nmodify the License. You may add Your own attribution notices within Derivative\nWorks that You distribute, alongside or as an addendum to the NOTICE text from\nthe Work, provided that such additional attribution notices cannot be construed\nas modifying the License.\n\nYou may add Your own copyright statement to Your modifications and may provide\nadditional or different license terms and conditions for use, reproduction, or\ndistribution of Your modifications, or for any such Derivative Works as a\nwhole, provided Your use, reproduction, and distribution of the Work otherwise\ncomplies with the conditions stated in this License.\n\n5. Submission of Contributions.\n\nUnless You explicitly state otherwise, any Contribution intentionally submitted\nfor inclusion in the Work by You to the Licensor shall be under the terms and\nconditions of this License, without any additional terms or conditions.\nNotwithstanding the above, nothing herein shall supersede or modify the terms\nof any separate license agreement you may have executed with Licensor regarding\nsuch Contributions.\n\n6. Trademarks.\n\nThis License does not grant permission to use the trade names, trademarks,\nservice marks, or product names of the Licensor, except as required for\nreasonable and customary use in describing the origin of the Work and\nreproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty.\n\nUnless required by applicable law or agreed to in writing, Licensor provides\nthe Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,\nincluding, without limitation, any warranties or conditions of TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are\nsolely responsible for determining the appropriateness of using or\nredistributing the Work and assume any risks associated with Your exercise of\npermissions under this License.\n\n8. Limitation of Liability.\n\nIn no event and under no legal theory, whether in tort (including negligence),\ncontract, or otherwise, unless required by applicable law (such as deliberate\nand grossly negligent acts) or agreed to in writing, shall any Contributor be\nliable to You for damages, including any direct, indirect, special, incidental,\nor consequential damages of any character arising as a result of this License\nor out of the use or inability to use the Work (including but not limited to\ndamages for loss of goodwill, work stoppage, computer failure or malfunction,\nor any and all other commercial damages or losses), even if such Contributor\nhas been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability.\n\nWhile redistributing the Work or Derivative Works thereof, You may choose to\noffer, and charge a fee for, acceptance of support, warranty, indemnity, or\nother liability obligations and/or rights consistent with this License.\nHowever, in accepting such obligations, You may act only on Your own behalf and\non Your sole responsibility, not on behalf of any other Contributor, and only\nif You agree to indemnify, defend, and hold each Contributor harmless for any\nliability incurred by, or claims asserted against, such Contributor by reason\nof your accepting any such warranty or additional liability.\n\n10. Noncompetition\n\nYou may install and execute the Work only in conjunction with the direct use of\nLibrato software. This Work, any file or any derivative thereof shall not be\nused in conjunction with any product that competes with any Librato software.\n\n11. Termination\n\nThe License stated above is automatically terminated and revoked if you exceed\nits scope or violate any of the terms of this License or any related License or\nnotice.\n\nEND OF TERMS AND CONDITIONS", + "json": "librato-exception.json", + "yaml": "librato-exception.yml", + "html": "librato-exception.html", + "license": "librato-exception.LICENSE" + }, + { + "license_key": "libselinux-pd", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-libselinux-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This library is public domain software, i.e. not copyrighted.\n\nWarranty Exclusion\n------------------\nYou agree that this software is a\nnon-commercially developed program that may contain \"bugs\" (as that\nterm is used in the industry) and that it may not function as intended.\nThe software is licensed \"as is\". NSA makes no, and hereby expressly\ndisclaims all, warranties, express, implied, statutory, or otherwise\nwith respect to the software, including noninfringement and the implied\nwarranties of merchantability and fitness for a particular purpose.\n\nLimitation of Liability\n-----------------------\nIn no event will NSA be liable for any damages, including loss of data,\nlost profits, cost of cover, or other special, incidental,\nconsequential, direct or indirect damages arising from the software or\nthe use thereof, however caused and on any theory of liability. This\nlimitation will apply even if NSA has been advised of the possibility\nof such damage. You acknowledge that this is a reasonable allocation of\nrisk.", + "json": "libselinux-pd.json", + "yaml": "libselinux-pd.yml", + "html": "libselinux-pd.html", + "license": "libselinux-pd.LICENSE" + }, + { + "license_key": "libsrv-1.0.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-libsrv-1.0.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted for any legal purpose, provided that the following\nconditions are met:\n * Redistributions of source code and/or documentation must retain the above\n copyright notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * All advertising materials mentioning features or use of this software and/or\n documentation must display the following acknowledgement, with \"software\n and/or documentation\" made more specific to represent the situation at hand:\n\tThis product includes software and/or documentation developed by\n\tRick van Rein and other contributors.\n * Neither the name of Rick van Rein nor the names of other contributors may be\n used to endorse or promote products derived from this software without\n specific prior digitally signed permission.\n * When obtaining the software and/or documentation provided on this site, any\n import laws about cryptography or otherwise, must be taken into account.\n Neither of Rick van Rein, contributors and the hosting party can be held\n responsible for not obeying import laws when retrieving code and/or\n documentation from this site.\n\nTHIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY OPENFORTRESS AND CONTRIBUTORS\n``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL OPENFORTRESS OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE AND/OR DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGE.", + "json": "libsrv-1.0.2.json", + "yaml": "libsrv-1.0.2.yml", + "html": "libsrv-1.0.2.html", + "license": "libsrv-1.0.2.LICENSE" + }, + { + "license_key": "libtool-exception", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "As a special exception to the GNU General Public License, if you\ndistribute this file as part of a program or library that is built using\nGNU Libtool, you may include this file under the same distribution terms\nthat you use for the rest of that program.", + "json": "libtool-exception.json", + "yaml": "libtool-exception.yml", + "html": "libtool-exception.html", + "license": "libtool-exception.LICENSE" + }, + { + "license_key": "libtool-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "Libtool-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception to the GNU General Public License,\nif you distribute this file as part of a program or library that\nis built using GNU Libtool, you may include this file under the\nsame distribution terms that you use for the rest of that program.", + "json": "libtool-exception-2.0.json", + "yaml": "libtool-exception-2.0.yml", + "html": "libtool-exception-2.0.html", + "license": "libtool-exception-2.0.LICENSE" + }, + { + "license_key": "libutil-david-nugent", + "category": "Permissive", + "spdx_license_key": "libutil-David-Nugent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, is permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n4. Absolutely no warranty of function or purpose is made by the author\n David Nugent.\n5. Modifications may be freely made to this file providing the above\n conditions are met.", + "json": "libutil-david-nugent.json", + "yaml": "libutil-david-nugent.yml", + "html": "libutil-david-nugent.html", + "license": "libutil-david-nugent.LICENSE" + }, + { + "license_key": "libwebsockets-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-libwebsockets-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Libwebsockets and included programs are provided under the terms of the GNU\nLibrary General Public License (LGPL) 2.1, with the following exceptions:\n\n1) Any reference, whether in these modifications or in the GNU\nLibrary General Public License 2.1, to this License, these terms, the\nGNU Lesser Public License, GNU Library General Public License, LGPL, or\nany similar reference shall refer to the GNU Library General Public\nLicense 2.1 as modified by these paragraphs 1) through 4).\n\n2) Static linking of programs with the libwebsockets library does not\nconstitute a derivative work and does not require the author to provide \nsource code for the program, use the shared libwebsockets libraries, or\nlink their program against a user-supplied version of libwebsockets.\n\nIf you link the program to a modified version of libwebsockets, then the\nchanges to libwebsockets must be provided under the terms of the LGPL in\nsections 1, 2, and 4.\n\n3) You do not have to provide a copy of the libwebsockets license with\nprograms that are linked to the libwebsockets library, nor do you have to\nidentify the libwebsockets license in your program or documentation as\nrequired by section 6 of the LGPL.\n\nHowever, programs must still identify their use of libwebsockets. The\nfollowing example statement can be included in user documentation to\nsatisfy this requirement:\n\n\"[program] is based in part on the work of the libwebsockets project\n(https://libwebsockets.org)\"\n\n4) Some sources included have their own, more liberal licenses, or options\nto get original sources with the liberal terms.\n\nOriginal liberal license retained\n\n - lib/sha-1.c - 3-clause BSD license retained, link to original\n - win32port/zlib - ZLIB license (see zlib.h)\n - lib/mbedtls_wrapper - Apache 2.0 (only built if linked against mbedtls)\n\nRelicensed to libwebsocket license\n\n - lib/base64-decode.c - relicensed to LGPL2.1+SLE, link to original\n - lib/daemonize.c - relicensed from Public Domain to LGPL2.1+SLE,\n link to original Public Domain version\n\nPublic Domain (CC-zero) to simplify reuse\n\n - test-apps/*.c\n - test-apps/*.h\n - lwsws/*\n\n------ end of exceptions", + "json": "libwebsockets-exception.json", + "yaml": "libwebsockets-exception.yml", + "html": "libwebsockets-exception.html", + "license": "libwebsockets-exception.LICENSE" + }, + { + "license_key": "libzip", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\n3. The names of the authors may not be used to endorse or promote products\nderived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT\nSHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\nOF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.", + "json": "libzip.json", + "yaml": "libzip.yml", + "html": "libzip.html", + "license": "libzip.LICENSE" + }, + { + "license_key": "license-file-reference", + "category": "Unstated License", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "", + "json": "license-file-reference.json", + "yaml": "license-file-reference.yml", + "html": "license-file-reference.html", + "license": "license-file-reference.LICENSE" + }, + { + "license_key": "lil-1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-lil-1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted by the authors of this software, to any\nperson, to use the software for any purpose, free of charge, including\nthe rights to run, read, copy, change, distribute and sell it, and\nincluding usage rights to any patents the authors may hold on it,\nsubject to the following conditions:\n\nThis license, or a link to its text, must be included with all copies\nof the software and any derivative works.\n\nAny modification to the software submitted to the authors may be\nincorporated into the software under the terms of this license.\n\nThe software is provided \"as is\", without warranty of any kind,\nincluding but not limited to the warranties of title, fitness,\nmerchantability and non-infringement. The authors have no obligation\nto provide support or updates for the software, and may not be held\nliable for any damages, claims or other liability arising from its\nuse.", + "json": "lil-1.json", + "yaml": "lil-1.yml", + "html": "lil-1.html", + "license": "lil-1.LICENSE" + }, + { + "license_key": "liliq-p-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LiLiQ-P-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Licence Libre du Qu\u00e9bec \u2013 Permissive (LiLiQ-P)\nVersion 1.1\n\n1. Pr\u00e9ambule \nCette licence s'applique \u00e0 tout logiciel distribu\u00e9 dont le titulaire du droit d'auteur pr\u00e9cise qu'il est sujet aux termes de la Licence Libre du Qu\u00e9bec \u2013 Permissive (LiLiQ-P) (ci-apr\u00e8s appel\u00e9e la \u00ab licence \u00bb).\n\n2. D\u00e9finitions \nDans la pr\u00e9sente licence, \u00e0 moins que le contexte n'indique un sens diff\u00e9rent, on entend par:\n\n\u00ab conc\u00e9dant \u00bb : le titulaire du droit d'auteur sur le logiciel, ou toute personne d\u00fbment autoris\u00e9e par ce dernier \u00e0 accorder la pr\u00e9sente licence; \n\u00ab contributeur \u00bb : le titulaire du droit d'auteur ou toute personne autoris\u00e9e par ce dernier \u00e0 soumettre au conc\u00e9dant une contribution. Un contributeur dont sa contribution est incorpor\u00e9e au logiciel est consid\u00e9r\u00e9 comme un conc\u00e9dant en regard de sa contribution; \n\u00ab contribution \u00bb : tout logiciel original, ou partie de logiciel original soumis et destin\u00e9 \u00e0 \u00eatre incorpor\u00e9 dans le logiciel; \n\u00ab distribution \u00bb : le fait de d\u00e9livrer une copie du logiciel; \n\u00ab licenci\u00e9 \u00bb : toute personne qui poss\u00e8de une copie du logiciel et qui exerce les droits conc\u00e9d\u00e9s par la licence; \n\u00ab logiciel \u00bb : une \u0153uvre prot\u00e9g\u00e9e par le droit d'auteur, telle qu'un programme d'ordinateur et sa documentation, pour laquelle le titulaire du droit d'auteur a pr\u00e9cis\u00e9 qu'elle est sujette aux termes de la pr\u00e9sente licence; \n\u00ab logiciel d\u00e9riv\u00e9 \u00bb : tout logiciel original r\u00e9alis\u00e9 par un licenci\u00e9, autre que le logiciel ou un logiciel modifi\u00e9, qui produit ou reproduit la totalit\u00e9 ou une partie importante du logiciel; \n\u00ab logiciel modifi\u00e9 \u00bb : toute modification par un licenci\u00e9 de l'un des fichiers source du logiciel ou encore tout nouveau fichier source qui incorpore le logiciel ou une partie importante de ce dernier.\n\n3. Licence de droit d'auteur \nSous r\u00e9serve des termes de la licence, le conc\u00e9dant accorde au licenci\u00e9 une licence non exclusive et libre de redevances lui permettant d\u2019exercer les droits suivants sur le logiciel :\n\n1 Produire ou reproduire la totalit\u00e9 ou une partie importante; \n2 Ex\u00e9cuter ou repr\u00e9senter la totalit\u00e9 ou une partie importante en public; \n3 Publier la totalit\u00e9 ou une partie importante; \n4 Sous-licencier sous une autre licence libre, approuv\u00e9e ou certifi\u00e9e par la Free Software Foundation ou l'Open Source Initiative.\n\nCette licence est accord\u00e9e sans limite territoriale et sans limite de temps.\n\nL'exercice complet de ces droits est sujet \u00e0 la distribution par le conc\u00e9dant du code source du logiciel, lequel doit \u00eatre sous une forme permettant d'y apporter des modifications. Le conc\u00e9dant peut aussi distribuer le logiciel accompagn\u00e9 d'une offre de distribuer le code source du logiciel, sans frais suppl\u00e9mentaires, autres que ceux raisonnables afin de permettre la livraison du code source. Cette offre doit \u00eatre valide pendant une dur\u00e9e raisonnable.\n\n4. Distribution \nLe licenci\u00e9 peut distribuer des copies du logiciel, d'un logiciel modifi\u00e9 ou d\u00e9riv\u00e9, sous r\u00e9serve de respecter les conditions suivantes :\n\n1 Le logiciel doit \u00eatre accompagn\u00e9 d'un exemplaire de cette licence; \n2 Si le logiciel a \u00e9t\u00e9 modifi\u00e9, le licenci\u00e9 doit en faire la mention, de pr\u00e9f\u00e9rence dans chacun des fichiers modifi\u00e9s dont la nature permet une telle mention; \n3 Les \u00e9tiquettes ou mentions faisant \u00e9tat des droits d'auteur, des marques de commerce, des garanties ou de la paternit\u00e9 concernant le logiciel ne doivent pas \u00eatre modifi\u00e9es ou supprim\u00e9es, \u00e0 moins que ces \u00e9tiquettes ou mentions ne soient inapplicables \u00e0 un logiciel modifi\u00e9 ou d\u00e9riv\u00e9 donn\u00e9.\n\n5. Contributions \nSous r\u00e9serve d'une entente distincte, toute contribution soumise par un contributeur au conc\u00e9dant pour inclusion dans le logiciel sera soumise aux termes de cette licence.\n\n6. Marques de commerce \nLa licence n'accorde aucune permission particuli\u00e8re qui permettrait d'utiliser les marques de commerce du conc\u00e9dant, autre que celle requise permettant d'identifier la provenance du logiciel.\n\n7. Garanties \nSauf mention contraire, le conc\u00e9dant distribue le logiciel sans aucune garantie, aux risques et p\u00e9rils de l'acqu\u00e9reur de la copie du logiciel, et ce, sans assurer que le logiciel puisse r\u00e9pondre \u00e0 un besoin particulier ou puisse donner un r\u00e9sultat quelconque.\n\nSans lier le conc\u00e9dant d'une quelconque mani\u00e8re, rien n'emp\u00eache un licenci\u00e9 d'offrir ou d'exclure des garanties ou du support.\n\n8. Responsabilit\u00e9 \nLe licenci\u00e9 est responsable de tout pr\u00e9judice r\u00e9sultant de l'exercice des droits accord\u00e9s par la licence.\n\nLe conc\u00e9dant ne saurait \u00eatre tenu responsable de dommages subis par le licenci\u00e9 ou par des tiers, pour quelque cause que ce soit en lien avec la licence et les droits qui y sont accord\u00e9s.\n\n9. R\u00e9siliation \nLa pr\u00e9sente licence est automatiquement r\u00e9sili\u00e9e d\u00e8s que les droits qui y sont accord\u00e9s ne sont pas exerc\u00e9s conform\u00e9ment aux termes qui y sont stipul\u00e9s.\n\nToutefois, si le d\u00e9faut est corrig\u00e9 dans un d\u00e9lai de 30 jours de sa prise de connaissance par la personne en d\u00e9faut, et qu'il s'agit du premier d\u00e9faut, la licence est accord\u00e9e de nouveau.\n\nPour tout d\u00e9faut subs\u00e9quent, le consentement expr\u00e8s du conc\u00e9dant est n\u00e9cessaire afin que la licence soit accord\u00e9e de nouveau.\n\n10. Version de la licence \nLe Centre de services partag\u00e9s du Qu\u00e9bec, ses ayants cause ou toute personne qu'il d\u00e9signe, peuvent diffuser des versions r\u00e9vis\u00e9es ou modifi\u00e9es de cette licence. Chaque version recevra un num\u00e9ro unique. Si un logiciel est d\u00e9j\u00e0 soumis aux termes d'une version sp\u00e9cifique, c'est seulement cette version qui liera les parties \u00e0 la licence.\n\nLe conc\u00e9dant peut aussi choisir de conc\u00e9der la licence sous la version actuelle ou toute version ult\u00e9rieure, auquel cas le licenci\u00e9 peut choisir sous quelle version la licence lui est accord\u00e9e.\n\n11. Divers \nDans la mesure o\u00f9 le conc\u00e9dant est un minist\u00e8re, un organisme public ou une personne morale de droit public, cr\u00e9\u00e9s en vertu d'une loi de l'Assembl\u00e9e nationale du Qu\u00e9bec, la licence est r\u00e9gie par le droit applicable au Qu\u00e9bec et en cas de contestation, les tribunaux du Qu\u00e9bec seront seuls comp\u00e9tents.\n\nLa pr\u00e9sente licence peut \u00eatre distribu\u00e9e sans conditions particuli\u00e8res. Toutefois, une version modifi\u00e9e doit \u00eatre distribu\u00e9e sous un nom diff\u00e9rent. Toute r\u00e9f\u00e9rence au Centre de services partag\u00e9s du Qu\u00e9bec, et, le cas \u00e9ch\u00e9ant, ses ayant cause, doit \u00eatre retir\u00e9e, autre que celle permettant d'identifier la provenance de la licence.", + "json": "liliq-p-1.1.json", + "yaml": "liliq-p-1.1.yml", + "html": "liliq-p-1.1.html", + "license": "liliq-p-1.1.LICENSE" + }, + { + "license_key": "liliq-r-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LiLiQ-R-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Licence Libre du Qu\u00e9bec \u2013 R\u00e9ciprocit\u00e9 (LiLiQ-R)\nVersion 1.1\n\n1. Pr\u00e9ambule \nCette licence s'applique \u00e0 tout logiciel distribu\u00e9 dont le titulaire du droit d'auteur pr\u00e9cise qu'il est sujet aux termes de la Licence Libre du Qu\u00e9bec \u2013 R\u00e9ciprocit\u00e9 (LiLiQ-R) (ci-apr\u00e8s appel\u00e9e la \u00ab licence \u00bb).\n\n2. D\u00e9finitions \nDans la pr\u00e9sente licence, \u00e0 moins que le contexte n'indique un sens diff\u00e9rent, on entend par:\n\n\u00ab conc\u00e9dant \u00bb : le titulaire du droit d'auteur sur le logiciel, ou toute personne d\u00fbment autoris\u00e9e par ce dernier \u00e0 accorder la pr\u00e9sente licence; \n\u00ab contributeur \u00bb : le titulaire du droit d'auteur ou toute personne autoris\u00e9e par ce dernier \u00e0 soumettre au conc\u00e9dant une contribution. Un contributeur dont sa contribution est incorpor\u00e9e au logiciel est consid\u00e9r\u00e9 comme un conc\u00e9dant en regard de sa contribution; \n\u00ab contribution \u00bb : tout logiciel original, ou partie de logiciel original soumis et destin\u00e9 \u00e0 \u00eatre incorpor\u00e9 dans le logiciel; \n\u00ab distribution \u00bb : le fait de d\u00e9livrer une copie du logiciel; \n\u00ab licenci\u00e9 \u00bb : toute personne qui poss\u00e8de une copie du logiciel et qui exerce les droits conc\u00e9d\u00e9s par la licence; \n\u00ab logiciel \u00bb : une \u0153uvre prot\u00e9g\u00e9e par le droit d'auteur, telle qu'un programme d'ordinateur et sa documentation, pour laquelle le titulaire du droit d'auteur a pr\u00e9cis\u00e9 qu'elle est sujette aux termes de la pr\u00e9sente licence; \n\u00ab logiciel d\u00e9riv\u00e9 \u00bb : tout logiciel original r\u00e9alis\u00e9 par un licenci\u00e9, autre que le logiciel ou un logiciel modifi\u00e9, qui produit ou reproduit la totalit\u00e9 ou une partie importante du logiciel; \n\u00ab logiciel modifi\u00e9 \u00bb : toute modification par un licenci\u00e9 de l'un des fichiers source du logiciel ou encore tout nouveau fichier source qui incorpore le logiciel ou une partie importante de ce dernier.\n\n3. Licence de droit d'auteur \nSous r\u00e9serve des termes de la licence, le conc\u00e9dant accorde au licenci\u00e9 une licence non exclusive et libre de redevances lui permettant d\u2019exercer les droits suivants sur le logiciel :\n\n1 Produire ou reproduire la totalit\u00e9 ou une partie importante; \n2 Ex\u00e9cuter ou repr\u00e9senter la totalit\u00e9 ou une partie importante en public; \n3 Publier la totalit\u00e9 ou une partie importante.\n\nCette licence est accord\u00e9e sans limite territoriale et sans limite de temps.\n\nL'exercice complet de ces droits est sujet \u00e0 la distribution par le conc\u00e9dant du code source du logiciel, lequel doit \u00eatre sous une forme permettant d'y apporter des modifications. Le conc\u00e9dant peut aussi distribuer le logiciel accompagn\u00e9 d'une offre de distribuer le code source du logiciel, sans frais suppl\u00e9mentaires, autres que ceux raisonnables afin de permettre la livraison du code source. Cette offre doit \u00eatre valide pendant une dur\u00e9e raisonnable.\n\n4. Distribution \nLe licenci\u00e9 peut distribuer des copies du logiciel, d'un logiciel modifi\u00e9 ou d\u00e9riv\u00e9, sous r\u00e9serve de respecter les conditions suivantes :\n\n1 Le logiciel doit \u00eatre accompagn\u00e9 d'un exemplaire de cette licence; \n2 Si le logiciel a \u00e9t\u00e9 modifi\u00e9, le licenci\u00e9 doit en faire la mention, de pr\u00e9f\u00e9rence dans chacun des fichiers modifi\u00e9s dont la nature permet une telle mention; \n3 Les \u00e9tiquettes ou mentions faisant \u00e9tat des droits d'auteur, des marques de commerce, des garanties ou de la paternit\u00e9 concernant le logiciel ne doivent pas \u00eatre modifi\u00e9es ou supprim\u00e9es, \u00e0 moins que ces \u00e9tiquettes ou mentions ne soient inapplicables \u00e0 un logiciel modifi\u00e9 ou d\u00e9riv\u00e9 donn\u00e9.\n\n4.1. R\u00e9ciprocit\u00e9 \nChaque fois que le licenci\u00e9 distribue le logiciel, le conc\u00e9dant offre au r\u00e9cipiendaire une concession sur le logiciel selon les termes de la pr\u00e9sente licence. Le licenci\u00e9 doit offrir une concession selon les termes de la pr\u00e9sente licence pour tout logiciel modifi\u00e9 qu'il distribue.\n\nChaque fois que le licenci\u00e9 distribue le logiciel ou un logiciel modifi\u00e9, ce dernier doit assumer l'obligation d'en distribuer le code source, de la mani\u00e8re pr\u00e9vue au troisi\u00e8me alin\u00e9a de l'article 3.\n\n4.2. Compatibilit\u00e9 \nDans la mesure o\u00f9 le licenci\u00e9 souhaite distribuer un logiciel modifi\u00e9 combin\u00e9 \u00e0 un logiciel assujetti \u00e0 une licence compatible, mais dont il ne serait pas possible d'en respecter les termes, le conc\u00e9dant offre, en plus de la pr\u00e9sente concession, une concession selon les termes de cette licence compatible.\n\nUn licenci\u00e9 qui est titulaire exclusif du droit d'auteur sur le logiciel assujetti \u00e0 une licence compatible ne peut pas se pr\u00e9valoir de cette offre. Il en est de m\u00eame pour toute autre personne d\u00fbment autoris\u00e9e \u00e0 sous-licencier par le titulaire exclusif du droit d'auteur sur le logiciel assujetti \u00e0 une licence compatible.\n\nEst consid\u00e9r\u00e9e comme une licence compatible toute licence libre approuv\u00e9e ou certifi\u00e9e par la Free Software Foundation ou l'Open Source Initiative, dont le niveau de r\u00e9ciprocit\u00e9 est comparable ou sup\u00e9rieur \u00e0 celui de la pr\u00e9sente licence, sans toutefois \u00eatre moindre, notamment :\n\n1 Common Development and Distribution License (CDDL-1.0) \n2 Common Public License Version 1.0 (CPL-1.0) \n3 Contrat de licence de logiciel libre CeCILL, version 2.1 (CECILL-2.1) \n4 Contrat de licence de logiciel libre CeCILL-C (CECILL-C) \n5 Eclipse Public License - v 1.0 (EPL-1.0) \n6 European Union Public License, version 1.1 (EUPL v. 1.1) \n7 Licence Libre du Qu\u00e9bec \u2013 R\u00e9ciprocit\u00e9 forte version 1.1 (LiLiQ-R+ 1.1) \n8 GNU General Public License Version 2 (GNU GPLv2) \n9 GNU General Public License Version 3 (GNU GPLv3) \n10 GNU Lesser General Public License Version 2.1 (GNU LGPLv2.1) \n11 GNU Lesser General Public License Version 3 (GNU LGPLv3) \n12 Mozilla Public License Version 2.0 (MPL-2.0)\n\n5. Contributions \nSous r\u00e9serve d'une entente distincte, toute contribution soumise par un contributeur au conc\u00e9dant pour inclusion dans le logiciel sera soumise aux termes de cette licence.\n\n6. Marques de commerce \nLa licence n'accorde aucune permission particuli\u00e8re qui permettrait d'utiliser les marques de commerce du conc\u00e9dant, autre que celle requise permettant d'identifier la provenance du logiciel.\n\n7. Garanties \nSauf mention contraire, le conc\u00e9dant distribue le logiciel sans aucune garantie, aux risques et p\u00e9rils de l'acqu\u00e9reur de la copie du logiciel, et ce, sans assurer que le logiciel puisse r\u00e9pondre \u00e0 un besoin particulier ou puisse donner un r\u00e9sultat quelconque.\n\nSans lier le conc\u00e9dant d'une quelconque mani\u00e8re, rien n'emp\u00eache un licenci\u00e9 d'offrir ou d'exclure des garanties ou du support.\n\n8. Responsabilit\u00e9 \nLe licenci\u00e9 est responsable de tout pr\u00e9judice r\u00e9sultant de l'exercice des droits accord\u00e9s par la licence.\n\nLe conc\u00e9dant ne saurait \u00eatre tenu responsable du pr\u00e9judice subi par le licenci\u00e9 ou par des tiers, pour quelque cause que ce soit en lien avec la licence et les droits qui y sont accord\u00e9s.\n\n9. R\u00e9siliation \nLa pr\u00e9sente licence est r\u00e9sili\u00e9e de plein droit d\u00e8s que les droits qui y sont accord\u00e9s ne sont pas exerc\u00e9s conform\u00e9ment aux termes qui y sont stipul\u00e9s.\n\nToutefois, si le d\u00e9faut est corrig\u00e9 dans un d\u00e9lai de 30 jours de sa prise de connaissance par la personne en d\u00e9faut, et qu'il s'agit du premier d\u00e9faut, la licence est accord\u00e9e de nouveau.\n\nPour tout d\u00e9faut subs\u00e9quent, le consentement expr\u00e8s du conc\u00e9dant est n\u00e9cessaire afin que la licence soit accord\u00e9e de nouveau.\n\n10. Version de la licence \nLe Centre de services partag\u00e9s du Qu\u00e9bec, ses ayants cause ou toute personne qu'il d\u00e9signe, peuvent diffuser des versions r\u00e9vis\u00e9es ou modifi\u00e9es de cette licence. Chaque version recevra un num\u00e9ro unique. Si un logiciel est d\u00e9j\u00e0 soumis aux termes d'une version sp\u00e9cifique, c'est seulement cette version qui liera les parties \u00e0 la licence.\n\nLe conc\u00e9dant peut aussi choisir de conc\u00e9der la licence sous la version actuelle ou toute version ult\u00e9rieure, auquel cas le licenci\u00e9 peut choisir sous quelle version la licence lui est accord\u00e9e.\n\n11. Divers \nDans la mesure o\u00f9 le conc\u00e9dant est un minist\u00e8re, un organisme public ou une personne morale de droit public, cr\u00e9\u00e9s en vertu d'une loi de l'Assembl\u00e9e nationale du Qu\u00e9bec, la licence est r\u00e9gie par le droit applicable au Qu\u00e9bec et en cas de contestation, les tribunaux du Qu\u00e9bec seront seuls comp\u00e9tents.\n\nLa pr\u00e9sente licence peut \u00eatre distribu\u00e9e sans conditions particuli\u00e8res. Toutefois, une version modifi\u00e9e doit \u00eatre distribu\u00e9e sous un nom diff\u00e9rent. Toute r\u00e9f\u00e9rence au Centre de services partag\u00e9s du Qu\u00e9bec, et, le cas \u00e9ch\u00e9ant, ses ayant droit, doit \u00eatre retir\u00e9e, autre que celle permettant d'identifier la provenance de la licence.", + "json": "liliq-r-1.1.json", + "yaml": "liliq-r-1.1.yml", + "html": "liliq-r-1.1.html", + "license": "liliq-r-1.1.LICENSE" + }, + { + "license_key": "liliq-rplus-1.1", + "category": "Copyleft", + "spdx_license_key": "LiLiQ-Rplus-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Licence Libre du Qu\u00e9bec \u2013 R\u00e9ciprocit\u00e9 forte (LiLiQ-R+)\nVersion 1.1\n\n1. Pr\u00e9ambule \nCette licence s'applique \u00e0 tout logiciel distribu\u00e9 dont le titulaire du droit d'auteur pr\u00e9cise qu'il est sujet aux termes de la Licence Libre du Qu\u00e9bec \u2013 R\u00e9ciprocit\u00e9 forte (LiLiQ-R+) (ci-apr\u00e8s appel\u00e9e la \u00ab licence \u00bb).\n\n2. D\u00e9finitions \nDans la pr\u00e9sente licence, \u00e0 moins que le contexte n'indique un sens diff\u00e9rent, on entend par:\n\n\u00ab conc\u00e9dant \u00bb : le titulaire du droit d'auteur sur le logiciel, ou toute personne d\u00fbment autoris\u00e9e par ce dernier \u00e0 accorder la pr\u00e9sente licence; \n\u00ab contributeur \u00bb : le titulaire du droit d'auteur ou toute personne autoris\u00e9e par ce dernier \u00e0 soumettre au conc\u00e9dant une contribution. Un contributeur dont sa contribution est incorpor\u00e9e au logiciel est consid\u00e9r\u00e9 comme un conc\u00e9dant en regard de sa contribution; \n\u00ab contribution \u00bb : tout logiciel original, ou partie de logiciel original soumis et destin\u00e9 \u00e0 \u00eatre incorpor\u00e9 dans le logiciel; \n\u00ab distribution \u00bb : le fait de d\u00e9livrer une copie du logiciel; \n\u00ab licenci\u00e9 \u00bb : toute personne qui poss\u00e8de une copie du logiciel et qui exerce les droits conc\u00e9d\u00e9s par la licence; \n\u00ab logiciel \u00bb : une \u0153uvre prot\u00e9g\u00e9e par le droit d'auteur, telle qu'un programme d'ordinateur et sa documentation, pour laquelle le titulaire du droit d'auteur a pr\u00e9cis\u00e9 qu'elle est sujette aux termes de la pr\u00e9sente licence; \n\u00ab logiciel d\u00e9riv\u00e9 \u00bb : tout logiciel original r\u00e9alis\u00e9 par un licenci\u00e9, autre que le logiciel ou un logiciel modifi\u00e9, qui produit ou reproduit la totalit\u00e9 ou une partie importante du logiciel; \n\u00ab logiciel modifi\u00e9 \u00bb : toute modification par un licenci\u00e9 de l'un des fichiers source du logiciel ou encore tout nouveau fichier source qui incorpore le logiciel ou une partie importante de ce dernier.\n\n3. Licence de droit d'auteur \nSous r\u00e9serve des termes de la licence, le conc\u00e9dant accorde au licenci\u00e9 une licence non exclusive et libre de redevances lui permettant d\u2019exercer les droits suivants sur le logiciel :\n\n1 Produire ou reproduire la totalit\u00e9 ou une partie importante; \n2 Ex\u00e9cuter ou repr\u00e9senter la totalit\u00e9 ou une partie importante en public; \n3 Publier la totalit\u00e9 ou une partie importante.\n\nCette licence est accord\u00e9e sans limite territoriale et sans limite de temps.\n\nL'exercice complet de ces droits est sujet \u00e0 la distribution par le conc\u00e9dant du code source du logiciel, lequel doit \u00eatre sous une forme permettant d'y apporter des modifications. Le conc\u00e9dant peut aussi distribuer le logiciel accompagn\u00e9 d'une offre de distribuer le code source du logiciel, sans frais suppl\u00e9mentaires, autres que ceux raisonnables afin de permettre la livraison du code source. Cette offre doit \u00eatre valide pendant une dur\u00e9e raisonnable.\n\n4. Distribution \nLe licenci\u00e9 peut distribuer des copies du logiciel, d'un logiciel modifi\u00e9 ou d\u00e9riv\u00e9, sous r\u00e9serve de respecter les conditions suivantes :\n\n1 Le logiciel doit \u00eatre accompagn\u00e9 d'un exemplaire de cette licence; \n2 Si le logiciel a \u00e9t\u00e9 modifi\u00e9, le licenci\u00e9 doit en faire la mention, de pr\u00e9f\u00e9rence dans chacun des fichiers modifi\u00e9s dont la nature permet une telle mention; \n3 Les \u00e9tiquettes ou mentions faisant \u00e9tat des droits d'auteur, des marques de commerce, des garanties ou de la paternit\u00e9 concernant le logiciel ne doivent pas \u00eatre modifi\u00e9es ou supprim\u00e9es, \u00e0 moins que ces \u00e9tiquettes ou mentions ne soient inapplicables \u00e0 un logiciel modifi\u00e9 ou d\u00e9riv\u00e9 donn\u00e9.\n\n4.1. R\u00e9ciprocit\u00e9 \nChaque fois que le licenci\u00e9 distribue le logiciel, le conc\u00e9dant offre au r\u00e9cipiendaire une concession sur le logiciel selon les termes de la pr\u00e9sente licence. Le licenci\u00e9 doit offrir une concession selon les termes de la pr\u00e9sente licence pour tout logiciel modifi\u00e9 ou d\u00e9riv\u00e9 qu'il distribue.\n\nChaque fois que le licenci\u00e9 distribue le logiciel, un logiciel modifi\u00e9, ou un logiciel d\u00e9riv\u00e9, ce dernier doit assumer l'obligation d'en distribuer le code source, de la mani\u00e8re pr\u00e9vue au troisi\u00e8me alin\u00e9a de l'article 3.\n\n4.2. Compatibilit\u00e9 \nDans la mesure o\u00f9 le licenci\u00e9 souhaite distribuer un logiciel modifi\u00e9 ou d\u00e9riv\u00e9 combin\u00e9 \u00e0 un logiciel assujetti \u00e0 une licence compatible, mais dont il ne serait pas possible d'en respecter les termes, le conc\u00e9dant offre, en plus de la pr\u00e9sente concession, une concession selon les termes de cette licence compatible.\n\nUn licenci\u00e9 qui est titulaire exclusif du droit d'auteur sur le logiciel assujetti \u00e0 une licence compatible ne peut pas se pr\u00e9valoir de cette offre. Il en est de m\u00eame pour toute autre personne d\u00fbment autoris\u00e9e \u00e0 sous-licencier par le titulaire exclusif du droit d'auteur sur le logiciel assujetti \u00e0 une licence compatible.\n\nEst consid\u00e9r\u00e9e comme une licence compatible toute licence libre approuv\u00e9e ou certifi\u00e9e par la Free Software Foundation ou l'Open Source Initiative, dont le niveau de r\u00e9ciprocit\u00e9 est comparable \u00e0 celui de la pr\u00e9sente licence, sans toutefois \u00eatre moindre, notamment :\n\n1 Common Public License Version 1.0 (CPL-1.0) \n2 Contrat de licence de logiciel libre CeCILL, version 2.1 (CECILL-2.1) \n3 Eclipse Public License - v 1.0 (EPL-1.0) \n4 European Union Public License, version 1.1 (EUPL v. 1.1) \n5 GNU General Public License Version 2 (GNU GPLv2) \n6 GNU General Public License Version 3 (GNU GPLv3)\n\n5. Contributions \nSous r\u00e9serve d'une entente distincte, toute contribution soumise par un contributeur au conc\u00e9dant pour inclusion dans le logiciel sera soumise aux termes de cette licence.\n\n6. Marques de commerce \nLa licence n'accorde aucune permission particuli\u00e8re qui permettrait d'utiliser les marques de commerce du conc\u00e9dant, autre que celle requise permettant d'identifier la provenance du logiciel.\n\n7. Garanties \nSauf mention contraire, le conc\u00e9dant distribue le logiciel sans aucune garantie, aux risques et p\u00e9rils de l'acqu\u00e9reur de la copie du logiciel, et ce, sans assurer que le logiciel puisse r\u00e9pondre \u00e0 un besoin particulier ou puisse donner un r\u00e9sultat quelconque.\n\nSans lier le conc\u00e9dant d'une quelconque mani\u00e8re, rien n'emp\u00eache un licenci\u00e9 d'offrir ou d'exclure des garanties ou du support.\n\n8. Responsabilit\u00e9 \nLe licenci\u00e9 est responsable de tout pr\u00e9judice r\u00e9sultant de l'exercice des droits accord\u00e9s par la licence.\n\nLe conc\u00e9dant ne saurait \u00eatre tenu responsable du pr\u00e9judice subi par le licenci\u00e9 ou par des tiers, pour quelque cause que ce soit en lien avec la licence et les droits qui y sont accord\u00e9s.\n\n9. R\u00e9siliation \nLa pr\u00e9sente licence est r\u00e9sili\u00e9e de plein droit d\u00e8s que les droits qui y sont accord\u00e9s ne sont pas exerc\u00e9s conform\u00e9ment aux termes qui y sont stipul\u00e9s.\n\nToutefois, si le d\u00e9faut est corrig\u00e9 dans un d\u00e9lai de 30 jours de sa prise de connaissance par la personne en d\u00e9faut, et qu'il s'agit du premier d\u00e9faut, la licence est accord\u00e9e de nouveau.\n\nPour tout d\u00e9faut subs\u00e9quent, le consentement expr\u00e8s du conc\u00e9dant est n\u00e9cessaire afin que la licence soit accord\u00e9e de nouveau.\n\n10. Version de la licence \nLe Centre de services partag\u00e9s du Qu\u00e9bec, ses ayants cause ou toute personne qu'il d\u00e9signe, peuvent diffuser des versions r\u00e9vis\u00e9es ou modifi\u00e9es de cette licence. Chaque version recevra un num\u00e9ro unique. Si un logiciel est d\u00e9j\u00e0 soumis aux termes d'une version sp\u00e9cifique, c'est seulement cette version qui liera les parties \u00e0 la licence.\n\nLe conc\u00e9dant peut aussi choisir de conc\u00e9der la licence sous la version actuelle ou toute version ult\u00e9rieure, auquel cas le licenci\u00e9 peut choisir sous quelle version la licence lui est accord\u00e9e.\n\n11. Divers \nDans la mesure o\u00f9 le conc\u00e9dant est un minist\u00e8re, un organisme public ou une personne morale de droit public, cr\u00e9\u00e9s en vertu d'une loi de l'Assembl\u00e9e nationale du Qu\u00e9bec, la licence est r\u00e9gie par le droit applicable au Qu\u00e9bec et en cas de contestation, les tribunaux du Qu\u00e9bec seront seuls comp\u00e9tents.\n\nLa pr\u00e9sente licence peut \u00eatre distribu\u00e9e sans conditions particuli\u00e8res. Toutefois, une version modifi\u00e9e doit \u00eatre distribu\u00e9e sous un nom diff\u00e9rent. Toute r\u00e9f\u00e9rence au Centre de services partag\u00e9s du Qu\u00e9bec, et, le cas \u00e9ch\u00e9ant, ses ayant cause, doit \u00eatre retir\u00e9e, autre que celle permettant d'identifier la provenance de la licence.", + "json": "liliq-rplus-1.1.json", + "yaml": "liliq-rplus-1.1.yml", + "html": "liliq-rplus-1.1.html", + "license": "liliq-rplus-1.1.LICENSE" + }, + { + "license_key": "lilo", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-lilo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms of parts of or the whole original\nor derived work are permitted provided that the original work is properly attributed\nto the author. The name of the author may not be used to endorse or promote products\nderived from this software without specific prior written permission. This work is\nprovided \"as is\" and without any express or implied warranties.", + "json": "lilo.json", + "yaml": "lilo.yml", + "html": "lilo.html", + "license": "lilo.LICENSE" + }, + { + "license_key": "linking-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-linking-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, if you link this library with other files,\nsome of which are compiled with GCC, to produce an executable,\nthis library does not by itself cause the resulting executable to\nbe covered by the GNU General Public License. \u00a0This exception does\nnot however invalidate any other reasons why the executable file\nmight be covered by the GNU General Public License.", + "json": "linking-exception-2.0-plus.json", + "yaml": "linking-exception-2.0-plus.yml", + "html": "linking-exception-2.0-plus.html", + "license": "linking-exception-2.0-plus.LICENSE" + }, + { + "license_key": "linking-exception-2.1-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-linking-exception-2.1-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, if you link the code in this file with\nfiles compiled with a GNU compiler to produce an executable,\nthat does not cause the resulting executable to be covered by\nthe GNU Lesser General Public License. This exception does not\nhowever invalidate any other reasons why the executable file\nmight be covered by the GNU Lesser General Public License.\nThis exception applies to code released by its copyright holders\nin files containing the exception.", + "json": "linking-exception-2.1-plus.json", + "yaml": "linking-exception-2.1-plus.yml", + "html": "linking-exception-2.1-plus.html", + "license": "linking-exception-2.1-plus.LICENSE" + }, + { + "license_key": "linking-exception-agpl-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-linking-exception-agpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Additional permission under the GNU Affero GPL version 3 section 7:\n\nIf you modify this Program, or any covered work, by linking or\ncombining it with other code, such other code is not for that reason\nalone subject to any of the requirements of the GNU Affero GPL\nversion 3.", + "json": "linking-exception-agpl-3.0.json", + "yaml": "linking-exception-agpl-3.0.yml", + "html": "linking-exception-agpl-3.0.html", + "license": "linking-exception-agpl-3.0.LICENSE" + }, + { + "license_key": "linking-exception-lgpl-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-linking-exception-lgpl-2.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-linking-exception-lgpl-2.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, the copyright holders of this library give\nyou permission to link this library with independent modules to\nproduce an executable, regardless of the license terms of these\nindependent modules, and to copy and distribute the resulting\nexecutable under terms of your choice, provided that you also meet,\nfor each linked independent module, the terms and conditions of the\nlicense of that module. An independent module is a module which is\nnot derived from or based on this library. If you modify this library,\nyou may extend this exception to your version of the library, but\nyou are not obligated to do so. If you do not wish to do so, delete\nthis exception statement from your version.", + "json": "linking-exception-lgpl-2.0-plus.json", + "yaml": "linking-exception-lgpl-2.0-plus.yml", + "html": "linking-exception-lgpl-2.0-plus.html", + "license": "linking-exception-lgpl-2.0-plus.LICENSE" + }, + { + "license_key": "linking-exception-lgpl-3.0", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "As a special exception to the GNU Lesser General Public License version 3\n(\"LGPL3\"), the copyright holders of this Library give you permission to convey\nto a third party a Combined Work that links statically or dynamically to this\nLibrary without providing any Minimal Corresponding Source or Minimal\nApplication Code as set out in 4d or providing the installation information set\nout in section 4e, provided that you comply with the other provisions of LGPL3\nand provided that you meet, for the Application the terms and conditions of the\nlicense(s) which apply to the Application.\n\nExcept as stated in this special exception, the provisions of LGPL3 will\ncontinue to comply in full to this Library. If you modify this Library, you may\napply this exception to your version of this Library, but you are not obliged to\ndo so. If you do not wish to do so, delete this exception statement from your\nversion. This exception does not (and cannot) modify any license terms which\napply to the Application, with which you must still comply.", + "json": "linking-exception-lgpl-3.0.json", + "yaml": "linking-exception-lgpl-3.0.yml", + "html": "linking-exception-lgpl-3.0.html", + "license": "linking-exception-lgpl-3.0.LICENSE" + }, + { + "license_key": "linotype-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-linotype-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License Agreement for Font Software - Linotype EULA \n\nPreamble: \nThis license agreement for Font Software becomes a legally binding contract between the licensee and Linotype GmbH when the licensee agrees to the Terms of Condition in an electronic delivery method or purchases the Font Software on a storage medium and opens the packaging containing the typefaces. \nIf the licensee refuses to accept a contractual obligation through this license agreement, he is not permitted to access, use or download the Font Software. The licensee should thoroughly and carefully read through the complete license agreement before agreeing to the conditions specified here. \n\n\nArticle 1 - License and Usage Rights \n\n1.1 The Font Software underlying this contractual agreement is the intellectual property of Linotype GmbH. \nThe term \"Font Software\" includes any and all updates, upgrades, expansions, modified versions and working copies of the Font Software to which the licensee, i.e. a natural person and legal person or, within the scope of a legal person, a subsidiary with majority share, has accordingly been granted a license. The Font Software remains and shall remain, now and in the future, the property of Linotype GmbH. \n\n1.2 Upon full payment of the agreed-upon usage fee, Linotype GmbH grants the licensee the non-exclusive, non-transferable right to simultaneously use or store the Font Software - provided said software has been released at time of delivery or upon payment made by the licensee - on a maximum of five (5) computers (workstations) at one single geographical location stipulated by the licensee and, if the Font Software is in the Embedded OpenType (EOT) format, use on no more than one (1) Non-Commercial Website. \n\"Non-Commercial Website\" shall mean a collection of web pages, images, videos or other digital assets that are hosted on one or more web servers, accessed from a common root Uniform Resource Identifier (URI) that includes a link to the Font Software (solely if such Font Software is in the EOT format) as a font resource for such Non-Commercial Website, but (1) which is only used for Personal or Internal Business Use for non-commercial purposes, (2) which contains domain locking or access control (or a similar mechanism) that prevents the unauthorized use of the Font Software by linking to it from other websites or web domains, and (3) which only allows visitors to such Non-Commercial Website to view and print (and not edit, alter, enhance or modify) any page contained at such Non-Commercial Website or any document located at such Non-Commercial Website. \"Personal or Internal Business Use\" shall mean use of the Font Software for your customary personal or internal business purposes and shall not mean any distribution whatsoever of the Font Software or any component or derivative work thereof. \"Personal or Internal Business Use\" shall include (i) use, if the Font Software is in the EOT format, of the Font Software on a server that is permitted by this article 1 for a Non-Commercial Website and (ii) use of the Font Software within your Licensed Unit by persons that are members of your immediate household, your authorized employees, or your authorized agents. All such household members, employees and agents shall be notified by you as to the terms and conditions of the Agreement and shall agree to be bound by it before they can use the Font Software. \nIn the event that extensions to the above-mentioned restriction become necessary, the licensee has to purchase an extended license (see form \"Request for Additional Extended Licensing and Services\"). \nThe licensee may install the Font Software on a single file server for Use on a single local area network (LAN) only when the Use of such Font Software is limited to the Workstations and printers that are part of the licensed Unit of which the server is part. \nFor the purpose of determining the proper number of Workstations for which a license is needed, the following example is supplied for illustration purposes only: If there are 100 Workstations connected to the server, with no more than 15 Workstations either using this Font Software currently, but the Font Software will be used on 25 different Workstations at various points in time, a site license must be obtained creating a licensed unit for 25 workstations. \nThe Font Software may not be installed or used on a server that can be accessed via the Internet or other external network system (a system other than a LAN) by Workstations, which are not part of a licensed Unit unless the Font Software is in the EOT format and then such installation must be in compliance with the other terms of this Agreement. Fonts used with a server based application require a License Extension for Servers. \nIf the Font Software is intended to be used for commercial purposes, each individual license permits one additional usage (installation) on a personal home or portable computer. \nFor the exclusive purpose of data backup, additional backup copies of the Font Software can be made. \n\n1.3 Transferring the license to a third party is essentially not permitted. By way of exception, the licensee is authorized to transfer the usage rights and license to a third party only upon compliance with all of the following conditions (see form \"Font Software Transfer Deed\"): \nThe third party has expressly declared to the licensee to strictly and unrestrictedly submit and adhere to the conditions of this license agreement for Font Software. In the event of transfer of the license to a third party, the licensee agrees and is obligated to refrain from further usage of the Font Software, and, regardless of where it is located, agrees and is obligated to delete said software and is not permitted to retain any copies, in whole or in part, of such. \n\n1.4 For the exclusive purpose of outputting certain files, the licensee is permitted to transfer a copy of the Font Software which is used for creating the pertinent file to a commercial printer or another service company. In the event of any text modification, the service company is required to possess its own license. The licensee has to inform the commercial printer / service company about the content of this License Agreement. \n\n1.5 Embedding of the Font Software into electronic documents or Internet pages is only permitted under the absolute assurance that the recipient cannot use the Font Software to edit or create a new document (read-only). It must be ensured that the Font Software cannot be fully or partially extracted from said documents. \n\n1.6 The licensee may electronically distribute Font Software embedded in a document for Personal or Internal Business Use only when the Font Software embedded in such document is in a static graphic image (for example, a \"gif\") or an embedded electronic document, and is distributed in a secure format that permits only the viewing and printing (and not the editing, altering, enhancing, or modifying) of such static graphic image or embedded document. \nThe licensee may not embed Font Software in a Commercial Product without a separate written license from Linotype GmbH, and the licensee may not embed Font Software in an electronic document or data file for any reason other than his own Personal or Internal Business Use. \n\n1.7 If the licensee intends to edit or modify a document containing the embedded Font Software, a request must be made to Linotype GmbH. Linotype GmbH or an authorized sales and distribution partner will then conclude a License Extension for Font Embedding. This License Extension for Font Embedding is subject to an additional fee. \n\n\nArticle 2 - Exclusion of Other Usage \n\n2.1 Subject to the provisions in subsections 1.3 and 1.4 of this agreement, selling, lending or otherwise transferring the Font Software to a third party or parties is strictly prohibited. In addition, transferring the Font Software as a component or sub-component of other products, e.g., electronic documents or sublicenses, to a third party or parties is also strictly prohibited. \n\n2.2 Subject to the provisions in subsections 2.3 and 2.4 of this agreement, the following is prohibited: modifying the Font Software, merging it with other software programs, decompiling it, using modules from said software for one's own developments or using technical solutions contained in the Font Software for purposes other than operation on the licensee's own computers. \n\n2.3 Exceptions to subsection 2.2 are only permitted provided they are essential to obtaining the necessary information for establishing interoperability of the software with other programs, and provided this information is neither published nor accessible in any other form and if the licensee is unable to obtain said information from Linotype GmbH or its authorized distributors or appointed agents. In this case, the licensee shall inform Linotype GmbH in writing as to which portions of the software the licensee is decompiling. \n\n2.4 Except with respect to the conversion of the Font Software into the EOT format if Font Software is intended to be installed as a font resource on a Non-Commercial Website and only if such use is in compliance with the other terms of this Agreement, modifying the Font Software is prohibited, even in the event that it is necessary for fulfilling personal design requirements. If the licensee wants to make modifications other than an allowed conversion to EOT, consent and permission has to be obtained from Linotype GmbH. Non-compliance with this provision voids any and all support rights and warranties granted by Linotype GmbH and represents a violation and breach of this license agreement. \nFurthermore, if the licensee or a third party or parties effect modifications to the Font Software despite the prohibition against such modifications, Linotype GmbH becomes the owner of that modified data. \nSpecifically, it is prohibited to change or modify the Font/Trademark names used as identifying tags in the Font Software in any form or manner. If such changes or modifications become necessary, prior written consent has to be obtained from Linotype GmbH. \n\n\nArticle 3 - Warranty and Liability \n\n3.1 Upon receipt of the Font Software by the licensee, Linotype GmbH grants a 90-day warranty guaranteeing that the Font Software is essentially free from material defect in accordance with the documentation. To make a warranty claim, the licensee has to return the Font Software, including a copy of the sales receipt within the 90-day warranty period to the sales and distribution partner from which the licensee obtained it. If the Font Software is not essentially free from material defect in accordance with the documentation, the entire and exclusive liability and remedy shall be limited to either, at Linotype GmbH's option, the replacement of the Software or the refund of the license fee that the licensee paid for the Software. Linotype GmbH and its authorized Linotype partner do not and cannot warrant the performance or results the licensee may obtain by using the Font Software or documentation. The foregoing states the sole and exclusive remedies for Linotype GmbH's or its suppliers' breach of warranty. Except for the foregoing limited warranty, Linotype GmbH, its authorized Linotype partner, and its suppliers make no warranties, express or implied, as to non-infringement of third party rights, merchantability, or fitness for any particular purpose. In no event will Linotype GmbH, its authorized Linotype partner, or its suppliers be liable to the licensee for any consequential, incidental or special damages, including without limitations any lost profits, lost data, lost business opportunities or lost savings, even if Linotype GmbH has been advised of the possibility of such damages, or for any claim against the licensee by any third party seeking such damages even if Linotype GmbH has been advised of the possibility of such damages. \nSome states or jurisdictions do not allow the exclusions of limitations of incidental, consequential or special damages, so the above exclusion may not apply to the licensee. Also, some states or jurisdictions do not allow the exclusions of implied warranties or limitations on how long an implied warranty may last, so the above limitations may not apply to the licensee. To the extent permitted by law, any implied warranties are limited to ninety (90) days. \nSome jurisdictions do not permit a limitation of implied warranties where the product results in injury or death so that such limitations may not apply to the licensee. In those jurisdictions, the licensee agrees that Linotype GmbH's or its authorized Linotype partner or suppliers' liability for such injury or death shall not exceed One Hundred Thousand Euro (\u20ac 100,000), provided that such jurisdictions permit a limitation of such liability. This warranty gives the licensee specific legal rights. The licensee may have other rights that vary from state to state or jurisdiction to jurisdiction. For further warranty information, the licensee should contact the authorized Linotype partners from which he received the Font Software and documentation. \n\n3.2 The licensee agrees that the Font Software and documentation, and all copies thereof, are owned by Linotype GmbH; and its design, structure, organization and encoding are valuable property of Linotype GmbH and/or its suppliers. The licensee agrees that the Font Software and documentation are protected by German trademark and design patent laws, by the copyright and trademark laws of other countries, and by international treaties. In addition, the licensee agrees to treat the Font Software and documentation in the same manner corresponding to other copyrighted and trademark-protected products, e.g., books. With the exception of the points explicitly mentioned here, copying the Font Software and documentation is not permitted. Any and all copies that the licensee is permitted to produce on the basis of this agreement have to have to contain the same copyright, trademark and other property clauses as those on or contained in the Font Software and documentation. The licensee declares not to modify, adapt or translate the encoding of the Font Software, nor reproduce, decompile, disassemble, change, modify or otherwise attempt to reveal the source code of the Font Software. The licensee also agrees to use the Trademarks that are connected to the Font Software, accordingly to accept usage of the Trademarks (including the identification of the owner of the respective Trademark). Trademarks can be used solely for the purpose of identifying printed data from the Font Software. \nThe licensee is also aware that software is never completely error-free and that the Font Software may therefore contain errors, which can affect functionality and operation. \n\n3.3 Claims exceeding the preceding warranty claims, e.g., compensation for idle time, loss of production, waste of material and other indirect damage, are explicitly excluded, provided said damage was not willfully or intentionally brought about or caused by gross negligence on the part of Linotype GmbH. Liability is not assumed insofar as the damage does not stem from a grossly negligent breach of duty by Linotype GmbH or is not caused by a willful, intentional or grossly negligent breach of duty on the part of one of Linotype GmbH's legal representatives or vicarious agents. \n\n\nArticle 4 - Termination of License Agreement \n\n4.1 The license and usage right guaranteed under subsection 1.2 shall become immediately null and void in the event of a breach of this contract. \n\n4.2 If the licensee or one of the licensee's employees breaches the agreed-upon license and right of use and/or property rights of Linotype GmbH, Linotype GmbH has the right to terminate the license and right of use, with termination taking immediate effect. Linotype GmbH reserves the explicit right to assert any further claims (specifically information, compensation for damages, etc.). \n\n4.3 In the event of termination, the licensee is obligated to delete and return to Linotype GmbH the original Font Software affected by and pertaining to the termination, including documentation and all copies. \nAt the request of Linotype GmbH, the licensee is obligated to provide written assurance that said deletion has occurred. \n\n\nArticle 5 - Confidentiality Obligation \n\n5.1 The licensee is obligated to undertake all necessary steps to prevent unauthorized access to the Font Software and to any copies of such. \n\n5.2 If the licensee grants his or her employees or representatives access to the Font Software, the licensee has to specifically inform them of the content and conditions of the license provisions for the relevant Font Software and put said employees or representatives under the obligation of compliance with those provisions and conditions. \n\n\nArticle 6 - Final Provisions \n\n6.1 This contract, including its attachments, which are a component of this contract, represents an agreement between the parties. Verbal collateral agreements do not exist. Any verbal agreements are only binding for Linotype GmbH if said verbal agreements have been acknowledged and confirmed in writing by Linotype GmbH. \n\n6.2 Changes to this contract require written form. This also applies to changes to this written form clause. \n\n6.3 Any and all disputes arising from, or in connection with, this contract as well as any dispute over the materialization of this contract are exclusively subject to the law of the Federal Republic of Germany. The rights and obligations of the parties arising from this contract are based on German law, even in the event that the exertion or breach of contractual rights takes place in a foreign country. Place of jurisdiction is Frankfurt/Main, Germany. \n\n6.4 The invalidity or inoperativeness of one or more provisions of this contract does not affect the validity of the rest of the contract and the remaining other provisions shall thereby remain unaffected. An invalid provision shall be replaced by a provision that is permitted by law and which approaches the invalid provision and economic interests intended by the parties. \n\n6.5 This agreement is not governed by the \"United Nation Convention on Contracts for the International Sale of Goods (CISG)\". \n\n\nVersion 05/2009", + "json": "linotype-eula.json", + "yaml": "linotype-eula.yml", + "html": "linotype-eula.html", + "license": "linotype-eula.LICENSE" + }, + { + "license_key": "linum", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": " * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.", + "json": "linum.json", + "yaml": "linum.yml", + "html": "linum.html", + "license": "linum.LICENSE" + }, + { + "license_key": "linux-device-drivers", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-linux-device-drivers", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The source code in this file can be freely used, adapted,\nand redistributed in source or binary form, so long as an\nacknowledgment appears in derived source files. The citation\nshould list that the code comes from the book \"\"Linux Device\nDrivers\"\" by Alessandro Rubini and Jonathan Corbet, published\nby O'Reilly & Associates. No warranty is attached;\nwe cannot take responsibility for errors or fitness for use.", + "json": "linux-device-drivers.json", + "yaml": "linux-device-drivers.yml", + "html": "linux-device-drivers.html", + "license": "linux-device-drivers.LICENSE" + }, + { + "license_key": "linux-openib", + "category": "Permissive", + "spdx_license_key": "Linux-OpenIB", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n- Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n- Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "linux-openib.json", + "yaml": "linux-openib.yml", + "html": "linux-openib.html", + "license": "linux-openib.LICENSE" + }, + { + "license_key": "linux-syscall-exception-gpl", + "category": "Copyleft Limited", + "spdx_license_key": "Linux-syscall-note", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "NOTE! This copyright does *not* cover user programs that use kernel\nservices by normal system calls - this is merely considered normal use\nof the kernel, and does *not* fall under the heading of \"derived work\".\nAlso note that the GPL below is copyrighted by the Free Software\nFoundation, but the instance of code that it refers to (the Linux\nkernel) is copyrighted by me and others who actually wrote it.\n\nAlso note that the only valid version of the GPL as far as the kernel\nis concerned is _this_ particular version of the license (ie v2, not\nv2.2 or v3.x or whatever), unless explicitly otherwise stated.\n\nLinus Torvalds", + "json": "linux-syscall-exception-gpl.json", + "yaml": "linux-syscall-exception-gpl.yml", + "html": "linux-syscall-exception-gpl.html", + "license": "linux-syscall-exception-gpl.LICENSE" + }, + { + "license_key": "linuxbios", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-linuxbios", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software and ancillary information (herein called SOFTWARE)\ncalled LinuxBIOS is made available under the terms described here.\n\nThe SOFTWARE has been approved for release with associated\nLA-CC Number 00-34. Unless otherwise indicated, this SOFTWARE has\nbeen authored by an employee or employees of the University of\nCalifornia, operator of the Los Alamos National Laboratory under\nContract No. W-7405-ENG-36 with the U.S. Department of Energy.\n\nThe U.S. Government has rights to use, reproduce, and distribute this\nSOFTWARE. The public may copy, distribute, prepare derivative works\nand publicly display this SOFTWARE without charge, provided that this\nNotice and any statement of authorship are reproduced on all copies.\n\nNeither the Government nor the University makes any warranty, express\nor implied, or assumes any liability or responsibility for the use of\nthis SOFTWARE. If SOFTWARE is modified to produce derivative works,\nsuch modified SOFTWARE should be clearly marked, so as not to confuse\nit with the version available from LANL.", + "json": "linuxbios.json", + "yaml": "linuxbios.yml", + "html": "linuxbios.html", + "license": "linuxbios.LICENSE" + }, + { + "license_key": "linuxhowtos", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-linuxhowtos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "All howtos and documents on this site are provided \"AS IS,\" with no\nexpress or implied warranties. Use the information on this site at your\nown risk.\n\nLinux is a registered trademark of Linus Torvalds. Other company,\nproduct, and service names may be trademarks or service marks of others.", + "json": "linuxhowtos.json", + "yaml": "linuxhowtos.yml", + "html": "linuxhowtos.html", + "license": "linuxhowtos.LICENSE" + }, + { + "license_key": "llgpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-llgpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The concept of the GNU Lesser General Public License version 2.1\n(\"LGPL\") has been adopted to govern the use and distribution of above-\nmentioned application. However, the LGPL uses terminology that is more\nappropriate for a program written in C than one written in Lisp.\nNevertheless, the LGPL can still be applied to a Lisp program if certain\nclarifications are made. This document details those clarifications.\nAccordingly, the license for the open-source Lisp applications consists\nof this document plus the LGPL. Wherever there is a conflict between\nthis document and the LGPL, this document takes precedence over the\nLGPL.\n\nA \"Library\" in Lisp is a collection of Lisp functions, data and foreign\nmodules. The form of the Library can be Lisp source code (for processing\nby an interpreter) or object code (usually the result of compilation of\nsource code or built with some other mechanisms). Foreign modules are\nobject code in a form that can be linked into a Lisp executable. When we\nspeak of functions we do so in the most general way to include, in\naddition, methods and unnamed functions. Lisp \"data\" is also a general\nterm that includes the data structures resulting from defining Lisp\nclasses. A Lisp application may include the same set of Lisp objects as\ndoes a Library, but this does not mean that the application is\nnecessarily a \"work based on the Library\" it contains.\n\nThe Library consists of everything in the distribution file set before\nany modifications are made to the files. If any of the functions or\nclasses in the Library are redefined in other files, then those\nredefinitions ARE considered a work based on the Library. If additional\nmethods are added to generic functions in the Library, those additional\nmethods are NOT considered a work based on the Library. If Library\nclasses are subclassed, these subclasses are NOT considered a work based\non the Library. If the Library is modified to explicitly call other\nfunctions that are neither part of Lisp itself nor an available add-on\nmodule to Lisp, then the functions called by the modified Library ARE\nconsidered a work based on the Library. The goal is to ensure that the\nLibrary will compile and run without getting undefined function errors.\n\nIt is permitted to add proprietary source code to the Library, but it\nmust be done in a way such that the Library will still run without that\nproprietary code present. Section 5 of the LGPL distinguishes between\nthe case of a library being dynamically linked at runtime and one being\nstatically linked at build time. Section 5 of the LGPL states that the\nformer results in an executable that is a \"work that uses the Library.\"\nSection 5 of the LGPL states that the latter results in one that is a\n\"derivative of the Library\", which is therefore covered by the LGPL.\nSince Lisp only offers one choice, which is to link the Library into an\nexecutable at build time, we declare that, for the purpose applying the\nLGPL to the Library, an executable that results from linking a \"work\nthat uses the Library\" with the Library is considered a \"work that uses\nthe Library\" and is therefore NOT covered by the LGPL.\n\nBecause of this declaration, section 6 of LGPL is not applicable to the\nLibrary. However, in connection with each distribution of this\nexecutable, you must also deliver, in accordance with the terms and\nconditions of the LGPL, the source code of Library (or your derivative\nthereof) that is incorporated into this executable.", + "json": "llgpl.json", + "yaml": "llgpl.yml", + "html": "llgpl.html", + "license": "llgpl.LICENSE" + }, + { + "license_key": "llnl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-llnl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software for\nany purpose without fee is hereby granted, provided that this en-\ntire notice is included in all copies of any software which is or\nincludes a copy or modification of this software and in all\ncopies of the supporting documentation for such software. \n \nThis work was produced at the University of California, Lawrence\nLivermore National Laboratory under contract no. W-7405-ENG-48\nbetween the U.S. Department of Energy and The Regents of the\nUniversity of California for the operation of UC LLNL. \n \n DISCLAIMER \n \nThis software was prepared as an account of work sponsored by an\nagency of the United States Government. Neither the United States\nGovernment nor the University of California nor any of their em-\nployees, makes any warranty, express or implied, or assumes any\nliability or responsibility for the accuracy, completeness, or\nusefulness of any information, apparatus, product, or process\ndisclosed, or represents that its use would not infringe\nprivately-owned rights. Reference herein to any specific commer-\ncial products, process, or service by trade name, trademark,\nmanufacturer, or otherwise, does not necessarily constitute or\nimply its endorsement, recommendation, or favoring by the United\nStates Government or the University of California. The views and\nopinions of authors expressed herein do not necessarily state or\nreflect those of the United States Government or the University\nof California, and shall not be used for advertising or product\nendorsement purposes.", + "json": "llnl.json", + "yaml": "llnl.yml", + "html": "llnl.html", + "license": "llnl.LICENSE" + }, + { + "license_key": "llvm-exception", + "category": "Permissive", + "spdx_license_key": "LLVM-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "--- LLVM Exceptions to the Apache 2.0 License ----\n\nAs an exception, if, as a result of your compiling your source code, portions\nof this Software are embedded into an Object form of such source code, you\nmay redistribute such embedded portions in such Object form without complying\nwith the conditions of Sections 4(a), 4(b) and 4(d) of the License.\n\nIn addition, if you combine or link compiled forms of this Software with\nsoftware that is licensed under the GPLv2 (\"Combined Software\") and if a\ncourt of competent jurisdiction determines that the patent provision (Section\n3), the indemnity provision (Section 9) or other Section of the License\nconflicts with the conditions of the GPLv2, you may retroactively and\nprospectively choose to deem waived or otherwise exclude such Section(s) of\nthe License, but only in their entirety and only with respect to the Combined\nSoftware.", + "json": "llvm-exception.json", + "yaml": "llvm-exception.yml", + "html": "llvm-exception.html", + "license": "llvm-exception.LICENSE" + }, + { + "license_key": "lmbench-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-lmbench-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Distributed under the FSF GPL with additional restriction that results may be published only if\n(1) the benchmark is unmodified, and\n(2) the version in the sccsid below is included in the report.", + "json": "lmbench-exception-2.0.json", + "yaml": "lmbench-exception-2.0.yml", + "html": "lmbench-exception-2.0.html", + "license": "lmbench-exception-2.0.LICENSE" + }, + { + "license_key": "logica-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-logica-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Logica Open Source License Version 1.0\nCopyright (c) 1996-2001 Logica Mobile Networks Limited, all rights reserved.\n\nLogica Mobile Networks Limited (\"Logica\") is the owner of the rights\nin the software programs (\"Software\"). In the following text, the term\n\"you\" or \"your\" refers to you as an individual and/or (as the case may be)\nto the legal entity to which the Software has been supplied. \n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided all copies and partial copies\nmade and/or distributed (in whatever form) and all associated documentation\nand other material must acknowledge Logica's rights by the inclusion\nof the following notice:\n\n\"Copyright (c) 1996-2001 Logica Mobile Networks Limited;\nthis product includes software developed by Logica by whom copyright\nand know-how are retained, all rights reserved.\" \n\nThe location of such notice shall be such that it is clearly displayed\nand readable to any person accessing the Software. \n\n\nAny use, copying or distribution of the Software is subject to the following:\n\n* Your rights in respect of the Software are confined to the non-exclusive\n and non-assignable license expressed herein. If you breach any of these\n term and conditions then your license may be terminated. \n\n* The copyright and other intellectual property rights in and in connection\n with the Software are and shall remain the exclusive property of Logica\n or its third party licensors. You must not remove or alter any copyright\n or other proprietary notice on any of the software. \n\n\nTo the extent permitted by law and in the absence of a formal written contract\nbetween you and Logica the following limitations and exclusions also apply:\n\n* The Software is supplied and licensed on an \"as is\" basis without any\n warranty or representation from Logica of any kind. \n\n* Conditions, warranties and representations that might be attributed\n to Logica or the Software (including, but not limited to, any implied\n condition or warranty relating to merchantability, fitness, suitability\n or quality) are excluded.\n\n* In no event shall Logica be liable in respect of or in connection\n with the supply, licensing, use or distribution of the software in any\n form for any direct, special, indirect or consequential loss or damages\n or for any loss of use, loss of data or of profits or for any business\n interruption or loss of goodwill. \n\n* Logica shall have no obligation to fix any defect or deficiency\n in the Software and Logica shall have no liability for any consequences\n (direct or consequential) that may arise from any such defect or deficiency.\n\n* Logica's maximum liability (if any) in relation to the licensing,\n provision and/or performance of the Software shall not exceed the price\n you paid to secure your license.\n\nThe laws of Ireland shall apply to these terms and conditions and shall\ngovern every aspect of the supply and licensing of the Software.", + "json": "logica-1.0.json", + "yaml": "logica-1.0.yml", + "html": "logica-1.0.html", + "license": "logica-1.0.LICENSE" + }, + { + "license_key": "lontium-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-lontium-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Lontium Semiconductor Corp. grants permission to use and redistribute aforementioned firmware file for the use with devices containing Lontium chipsets, but not as part of the Linux kernel or in any other form which would require the file itself to be covered by the terms of the GNU General Public License or the GNU Lesser General Public License.\n\nThe firmware file is distributed in the hope that it will be useful, but is provided WITHOUT ANY WARRANTY, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.", + "json": "lontium-linux-firmware.json", + "yaml": "lontium-linux-firmware.yml", + "html": "lontium-linux-firmware.html", + "license": "lontium-linux-firmware.LICENSE" + }, + { + "license_key": "losla", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-losla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LEGO\u00ae OPEN SOURCE LICENSE AGREEMENT 1.0 LEGO\u00ae MINDSTORMS\u00ae NXT FIRMWARE\n\nThis LEGO\u00ae Open Source License Agreement is an open source license for the firmware of the LEGO\u00ae MINDSTORMS\u00ae NXT ATMEL microprocessors.\n\nIMPORTANT -- READ CAREFULLY: THIS AGREEMENT IS THE SOLE AGREEMENT AND IT ONLY COVERS THE FIRMWARE OF THE LEGO\u00ae MINDSTORMS\u00ae NXT MICROPROCESSOR AND DOES NOT COVER ANY \"SOFTWARE\" AS DEFINED IN THE MINDSTORMS\u00ae NXT END USER LICENSE AGREEMENT (HEREINAFTER THE \" MINDSTORMS\u00ae NXT EULA\").\n\nSection 1. Definitions. \"Contributor means each entity that creates or contributes to the creation of Modifications. Contributor Version means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. Covered Code means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. Executable means Covered Code in any form other than Source Code. \"Larger Work means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. License means this document. Modifications means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is (a) any addition to or deletion from the contents of a file containing Original Code or previous Modifications, or (b) any new file that contains any part of the Original Code or previous Modifications. \"Original Code\" means Source Code for the firmware of the LEGO\u00ae MINDSTORMS\u00ae NXT microprocessors as specified in Exhibit A, and which at the time of it\u2019s release under this License is not already Covered Code governed by this License. Source Code means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. \"You (or \"Your\") means an individual or a legal entity exercising rights under this License or a future version of this License issued under Section 6.1. For legal entities, \"You includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, \"control means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\nSection 2. Source Code License and Larger Works.\n\n2.1. LEGO Grant. Subject to the terms and conditions of this Agreement, LEGO grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work.\n\n2.2. Contributor Grant. Subject to third party intellectual property claims and to the terms and conditions of this Agreement, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work.\n\n2.3. Larger Works. You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code.\n\nSection 3. Distribution Obligations.\n\n3.1. Application of License. The Modifications which You create or to which You contribute shall be governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder.\n\n3.2. Availability of Source Code. Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via a generally accepted mechanism for the electronic transfer of data (hereinafter \"Electronic Distribution Mechanism\"), to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, such source code must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\n3.3. Description of Modifications. You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by LEGO and including the name of LEGO\u00ae in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters. (a) Third Party Claims. If Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled \"LEGAL which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. (b) Contributor APIs. If Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. (c) Representations. Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License.\n\n3.5. Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code.\n\n3.6. Distribution of Executable Versions. You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You must distribute the Executable version of Covered Code under the terms of this License.\n\nSection 4. Inability to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n\nSection 5. Exclusions. Notwithstanding anything to the contrary herein, no Software (as defined in the Mindstorms\u00ae NXT EULA) shall be released or made available as open source under this License, regardless of how any Covered Code interacts with any Software (as defined in the Mindstorms\u00ae NXT EULA).\n\nSection 6. Versions of the License.\n\n6.1. New Versions. LEGO may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number.\n\n6.2. Effect of New Versions. Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by LEGO. No one other than LEGO has the right to modify the terms applicable to Covered Code created under this License.\n\nSection 7. Disclaimer of Warranty.\n\nALL COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT LEGO OR ITS SUPPLIERS OR LICENSORS OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\nTHE COVERED CODE HAS BEEN DESIGNED TO BE USED IN THE TOY INDUSTRY ONLY. THEREFORE ITS FUNCTIONALITY IS LIMITED AND CAN BE IMPACTED BY NUMEROUS FACTORS SUCH AS POWER FLUCTUATIONS, HARDWARE MALFUNCTIONS, AND MANY OTHER ITEMS. YOU ACKNOWLEDGE AND AGREE THAT THE COVERED CODE SHOULD NOT BE USED IN ANY APPLICATION WHERE ITS FAILURE TO PROPERLY FUNCTION WOULD CREATE A RISK OF HARM TO PROPERTY OR PERSONS.\n\nSection 8. Termination.\n\n8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. 8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against LEGO or a Contributor (LEGO or Contributor against whom You file such action is referred to as \"Participant\") alleging that such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. 8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. 8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination.\n\nSection 9. Limitation of Liability.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, LEGO, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, PUNITIVE, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\nSection 10. U.S. Government End Users.\n\nThe Covered Code is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n\nSection 11. Responsibility for Claims.\n\nAs between LEGO and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with LEGO and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\nSection 12. Trademarks.\n\nThis License does not grant, nor shall any provision of this License be construed as granting, any rights or permission to use the trade names, trademarks, service marks, or product names of LEGO.\n\nSection 13. Governing Law\n\nTo the extent possible under applicable law, this License shall be governed by Danish law and shall be subject to the non-exclusive jurisdiction of the Commercial and Maritime Court of Copenhagen. This License will not be governed by the United Nations Convention of Contracts for the International Sale of Goods, the application of which is hereby expressly excluded. You acknowledge that the export of any Covered Code is governed by the export control laws of the United States of America and other countries. If you are downloading any Covered Code, You represent and warrant that You are not located in or under the control of any country which the export laws and regulations of such country or of the United States prohibit the exportation of the Covered Code.\n\nSection 14. Miscellaneous.\n\nThis License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n\nEXHIBIT A - LEGO\u00ae Open Source License Agreement The contents of this file are subject to the LEGO\u00ae Open Source License Agreement Version 1.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://mindstorms.lego.com/Overview/NXTreme.aspx Software distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. Exhibit A.1 includes a list of the original firmware source files which are included within the LEGO\u00ae Open Source License Agreement. LEGO is the owner of the Original Code. Portions created by National Instruments and the original Code is Copyright protected \u00a9 2006. All Rights Reserved.", + "json": "losla.json", + "yaml": "losla.yml", + "html": "losla.html", + "license": "losla.LICENSE" + }, + { + "license_key": "lppl-1.0", + "category": "Copyleft", + "spdx_license_key": "LPPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LaTeX Project Public License\n============================\n LPPL Version 1.0 1999-03-01\n\nCopyright 1999 LaTeX3 Project\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but modification is not allowed.\n\nPreamble\n========\nThe LaTeX Project Public License (LPPL) is the license under which the\nbase LaTeX distribution is distributed. As described below you may use\nthis licence for any software that you wish to distribute. \n\nIt may be particularly suitable if your software is TeX related (such\nas a LaTeX package file) but it may be used for any software, even if\nit is unrelated to TeX.\n\nTo use this license, the files of your distribution should have an\nexplicit copyright notice giving your name and the year, together\nwith a reference to this license.\n\nA typical example would be\n\n %% pig.sty\n %% Copyright 2001 M. Y. Name\n\n % This program can redistributed and/or modified under the terms\n % of the LaTeX Project Public License Distributed from CTAN\n % archives in directory macros/latex/base/lppl.txt; either\n % version 1 of the License, or (at your option) any later version.\n\nGiven such a notice in the file, the conditions of this document would\napply, with:\n\n`The Program' referring to the software `pig.sty' and \n`The Copyright Holder' referring to the person `M. Y. Name'.\n\nTo see a real example, see the file legal.txt which carries the\ncopyright notice for the base latex distribution.\n\nThis license gives terms under which files of The Program may be\ndistributed and modified. Individual files may have specific further\nconstraints on modification, but no file should have restrictions on\ndistribution other than those specified below. \nThis is to ensure that a distributor wishing to distribute a complete\nunmodified copy of The Program need only check the conditions in this\nfile, and does not need to check every file in The Program for extra\nrestrictions. If you do need to modify the distribution terms of some\nfiles, do not refer to this license, instead distribute The Program\nunder a different license. You may use the parts of the text of LPPL as\na model for your own license, but your license should not directly refer\nto the LPPL or otherwise give the impression that The Program is\ndistributed under the LPPL. \n\n\nThe LaTeX Project Public License\n================================\nTerms And Conditions For Copying, Distribution And Modification\n===============================================================\n\n\nWARRANTY\n========\nThere is no warranty for The Program, to the extent permitted by\napplicable law. Except when otherwise stated in writing, The\nCopyright Holder provides The Program `as is' without warranty of any\nkind, either expressed or implied, including, but not limited to, the\nimplied warranties of merchantability and fitness for a particular\npurpose. The entire risk as to the quality and performance of the\nprogram is with you. Should The Program prove defective, you assume\nthe cost of all necessary servicing, repair or correction.\n\nIn no event unless required by applicable law or agreed to in writing\nwill The Copyright Holder, or any of the individual authors named in\nthe source for The Program, be liable to you for damages, including\nany general, special, incidental or consequential damages arising out\nof any use of The Program or out of inability to use The Program\n(including but not limited to loss of data or data being rendered\ninaccurate or losses sustained by you or by third parties as a result\nof a failure of The Program to operate with any other programs), even\nif such holder or other party has been advised of the possibility of\nsuch damages.\n\n\nDISTRIBUTION\n============\nRedistribution of unchanged files is allowed provided that all files\nthat make up the distribution of The Program are distributed.\nIn particular this means that The Program has to be distributed\nincluding its documentation if documentation was part of the original\ndistribution.\n\nThe distribution of The Program will contain a prominent file\nlisting all the files covered by this license.\n\nIf you receive only some of these files from someone, complain!\n\nThe distribution of changed versions of certain files included in the\nThe Program, and the reuse of code from The Program, are allowed\nunder the following restrictions:\n\n * It is allowed only if the legal notice in the file does not\n expressly forbid it.\n See note below, under \"Conditions on individual files\".\n \n * You rename the file before you make any changes to it, unless the\n file explicitly says that renaming is not required. Any such changed\n files must be distributed under a license that forbids distribution\n of those files, and any files derived from them, under the names used\n by the original files in the distribution of The Program.\n\n * You change any `identification string' in The Program to clearly \n indicate that the file is not part of the standard system.\n\n * If The Program includes an `error report address' so that errors\n may be reported to The Copyright Holder, or other specified\n addresses, this address must be changed in any modified versions of\n The Program, so that reports for files not maintained by the\n original program maintainers are directed to the maintainers of the\n changed files. \n\n * You acknowledge the source and authorship of the original version\n in the modified file.\n\n * You also distribute the unmodified version of the file or\n alternatively provide sufficient information so that the\n user of your modified file can be reasonably expected to be\n able to obtain an original, unmodified copy of The Program.\n For example, you may specify a URL to a site that you expect\n will freely provide the user with a copy of The Program (either\n the version on which your modification is based, or perhaps a\n later version).\n\n * If The Program is intended to be used with, or is based on, LaTeX,\n then files with the following file extensions which have special\n meaning in LaTeX Software, have special modification rules under the\n license:\n \n - Files with extension `.ins' (installation files): these files may\n not be modified at all because they contain the legal notices\n that are placed in the generated files.\n \n - Files with extension `.fd' (LaTeX font definitions files): these\n files are allowed to be modified without changing the name, but\n only to enable use of all available fonts and to prevent attempts\n to access unavailable fonts. However, modified files are not\n allowed to be distributed in place of original files.\n \n - Files with extension `.cfg' (configuration files): these files\n can be created or modified to enable easy configuration of the\n system. The documentation in cfgguide.tex in the base LaTeX\n distribution describes when it makes sense to modify or generate\n such files.\n \n\nThe above restrictions are not intended to prohibit, and hence do\nnot apply to, the updating, by any method, of a file so that it\nbecomes identical to the latest version of that file in The Program.\n\n========================================================================\n\nNOTES\n=====\nWe believe that these requirements give you the freedom you to make\nmodifications that conform with whatever technical specifications you\nwish, whilst maintaining the availability, integrity and reliability of\nThe Program. If you do not see how to achieve your goal whilst\nadhering to these requirements then read the document cfgguide.tex\nin the base LaTeX distribution for suggestions. \n\nBecause of the portability and exchangeability aspects of systems\nlike LaTeX, The LaTeX3 Project deprecates the distribution of\nnon-standard versions of components of LaTeX or of generally available\ncontributed code for them but such distributions are permitted under the\nabove restrictions.\n\nThe document modguide.tex in the base LaTeX distribution details\nthe reasons for the legal requirements detailed above.\nEven if The Program is unrelated to LaTeX, the argument in\nmodguide.tex may still apply, and should be read before\na modified version of The Program is distributed.\n\n\nConditions on individual files\n==============================\nThe individual files may bear additional conditions which supersede\nthe general conditions on distribution and modification contained in\nthis file. If there are any such files, the distribution of The\nProgram will contain a prominent file that lists all the exceptional\nfiles.\n\nTypical examples of files with more restrictive modification\nconditions would be files that contain the text of copyright notices.\n\n * The conditions on individual files differ only in the\n extent of *modification* that is allowed.\n\n * The conditions on *distribution* are the same for all the files.\n Thus a (re)distributor of a complete, unchanged copy of The Program\n need meet only the conditions in this file; it is not necessary to\n check the header of every file in the distribution to check that a\n distribution meets these requirements.", + "json": "lppl-1.0.json", + "yaml": "lppl-1.0.yml", + "html": "lppl-1.0.html", + "license": "lppl-1.0.LICENSE" + }, + { + "license_key": "lppl-1.1", + "category": "Copyleft", + "spdx_license_key": "LPPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The LaTeX Project Public License\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\nLPPL Version 1.1 1999-07-10\n\nCopyright 1999 LaTeX3 Project\n Everyone is allowed to distribute verbatim copies of this\n license document, but modification of it is not allowed.\n\n\nPREAMBLE\n========\nThe LaTeX Project Public License (LPPL) is the license under which the\nbase LaTeX distribution is distributed.\n\nYou may use this license for any program that you have written and wish\nto distribute. This license may be particularly suitable if your\nprogram is TeX-related (such as a LaTeX package), but you may use it\neven if your program is unrelated to TeX. The section `WHETHER AND HOW\nTO DISTRIBUTE PROGRAMS UNDER THIS LICENSE', below, gives instructions,\nexamples, and recommendations for authors who are considering\ndistributing their programs under this license.\n\nIn this license document, `The Program' refers to any program\ndistributed under this license.\n\nThis license gives conditions under which The Program may be distributed\nand conditions under which modified versions of The Program may be\ndistributed. Individual files of The Program may bear supplementary\nand/or superseding conditions on modification of themselves and on the\ndistribution of modified versions of themselves, but *no* file of The\nProgram may bear supplementary or superseding conditions on the\ndistribution of an unmodified copy of the file. A distributor wishing\nto distribute a complete, unmodified copy of The Program therefore\nneeds to check the conditions only in this license and nowhere else.\n\nActivities other than distribution and/or modification of The Program\nare not covered by this license; they are outside its scope. In\nparticular, the act of running The Program is not restricted.\n\nWe, the LaTeX3 Project, believe that the conditions below give you\nthe freedom to make and distribute modified versions of The Program\nthat conform with whatever technical specifications you wish while\nmaintaining the availability, integrity, and reliability of\nThe Program. If you do not see how to achieve your goal while \nmeeting these conditions, then read the document `cfgguide.tex'\nin the base LaTeX distribution for suggestions.\n\n\nCONDITIONS ON DISTRIBUTION AND MODIFICATION\n===========================================\nYou may distribute a complete, unmodified copy of The Program.\nDistribution of only part of The Program is not allowed.\n\nYou may not modify in any way a file of The Program that bears a legal\nnotice forbidding modification of that file.\n\nYou may distribute a modified file of The Program if, and only if, the\nfollowing eight conditions are met:\n\n 1. You must meet any additional conditions borne by the file on the\n distribution of a modified version of the file as described below\n in the subsection `Additional Conditions on Individual Files of\n The Program'.\n \n 2. If the file is a LaTeX software file, then you must meet any\n applicable additional conditions on the distribution of a modified\n version of the file that are described below in the subsection\n `Additional Conditions on LaTeX Software Files'.\n \n 3. You must not distribute the modified file with the filename of the\n original file.\n \n 4. In the modified file, you must acknowledge the authorship and\n name of the original file, and the name (if any) of the program\n which contains it.\n \n 5. You must change any identification string in the file to indicate\n clearly that the modified file is not part of The Program.\n \n 6. You must change any addresses in the modified file for the\n reporting of errors in the file or in The Program generally to\n ensure that reports for files no longer maintained by the original\n maintainers will be directed to the maintainers of the modified\n files.\n \n 7. You must distribute the modified file under a license that forbids\n distribution both of the modified file and of any files derived\n from the modified file with the filename of the original file.\n \n 8. You must do either (A) or (B):\n\n (A) distribute a copy of The Program (that is, a complete,\n unmodified copy of The Program) together with the modified\n file; if your distribution of the modified file is made by\n offering access to copy the modified file from a designated\n place, then offering equivalent access to copy The Program\n from the same place meets this condition, even though third\n parties are not compelled to copy The Program along with the\n modified file;\n\n (B) provide to those who receive the modified file information\n that is sufficient for them to obtain a copy of The Program;\n for example, you may provide a Uniform Resource Locator (URL)\n for a site that you expect will provide them with a copy of \n The Program free of charge (either the version from which\n your modification is derived, or perhaps a later version).\n\nNote that in the above, `distribution' of a file means making the\nfile available to others by any means. This includes, for instance,\ninstalling the file on any machine in such a way that the file is\naccessible by users other than yourself. `Modification' of a file\nmeans any procedure that produces a derivative file under any\napplicable law -- that is, a file containing the original file or\na significant portion of it, either verbatim or with modifications\nand/or translated into another language.\n\nChanging the name of a file is considered to be a modification of\nthe file.\n\nThe distribution conditions in this license do not have to be\napplied to files that have been modified in accordance with the\nabove conditions. Note, however, that Condition 7. does apply to\nany such modified file.\n\nThe conditions above are not intended to prohibit, and hence do not\napply to, the updating, by any method, of a file so that it becomes\nidentical to the latest version of that file of The Program.\n\n \nA Recommendation on Modification Without Distribution\n-----------------------------------------------------\nIt is wise never to modify a file of The Program, even for your own\npersonal use, without also meeting the above eight conditions for\ndistributing the modified file. While you might intend that such\nmodified files will never be distributed, often this will happen by\naccident -- you may forget that you have modified the file; or it may\nnot occur to you when allowing others to access the modified file\nthat you are thus distributing it and violating the conditions of\nthis license. It is usually in your best interest to keep your copy\nof The Program identical with the public one. Many programs provide\nways to control the behavior of that program without altering its\nlicensed files.\n\n\nAdditional Conditions on Individual Files of The Program\n--------------------------------------------------------\nAn individual file of The Program may bear additional conditions that\nsupplement and/or supersede the conditions in this license if, and only\nif, such additional conditions exclusively concern modification of the\nfile or distribution of a modified version of the file. The conditions\non individual files of The Program therefore may differ only with\nrespect to the kind and extent of modification of those files that\nis allowed, and with respect to the distribution of modified versions\nof those files.\n\n\nAdditional Conditions on LaTeX Software Files\n---------------------------------------------\nIf a file of The Program is intended to be used with LaTeX (that is,\nif it is a LaTeX software file), then the following additional\nconditions, which supplement and/or supersede the conditions\nabove, apply to the file according to its filename extension:\n\n - You may not modify any file with filename extension `.ins' since\n these are installation files containing the legal notices that are\n placed in the files they generate.\n \n - You may distribute modified versions of files with filename\n extension `.fd' (LaTeX font definition files) under the standard\n conditions of the LPPL as described above. You may also distribute\n such modified LaTeX font definition files with their original names\n provided that:\n (1) the only changes to the original files either enable use of\n available fonts or prevent attempts to access unavailable fonts;\n (2) you also distribute the original, unmodified files (TeX input\n paths can be used to control which set of LaTeX font definition\n files is actually used by TeX).\n\n - You may distribute modified versions of files with filename\n extension `.cfg' (configuration files) with their original names.\n The Program may (and usually will) specify the range of commands\n that are allowed in a particular configuration file.\n \nBecause of portability and exchangeability issues in LaTeX software,\nThe LaTeX3 Project deprecates the distribution of modified versions of\ncomponents of LaTeX or of generally available contributed code for them,\nbut such distribution can meet the conditions of this license.\n\n\nNO WARRANTY\n===========\nThere is no warranty for The Program. Except when otherwise stated in\nwriting, The Copyright Holder provides The Program `as is', without\nwarranty of any kind, either expressed or implied, including, but not\nlimited to, the implied warranties of merchantability and fitness for\na particular purpose. The entire risk as to the quality and performance\nof The Program is with you. Should The Program prove defective, you\nassume the cost of all necessary servicing, repair, or correction.\n\nIn no event unless agreed to in writing will The Copyright Holder, or\nany author named in the files of The Program, or any other party who may\ndistribute and/or modify The Program as permitted below, be liable to\nyou for damages, including any general, special, incidental or\nconsequential damages arising out of any use of The Program or out of\ninability to use The Program (including, but not limited to, loss of\ndata, data being rendered inaccurate, or losses sustained by anyone as\na result of any failure of The Program to operate with any other\nprograms), even if The Copyright Holder or said author or said other\nparty has been advised of the possibility of such damages.\n\n\nWHETHER AND HOW TO DISTRIBUTE PROGRAMS UNDER THIS LICENSE\n=========================================================\nThis section contains important instructions, examples, and\nrecommendations for authors who are considering distributing their\nprograms under this license. These authors are addressed as `you' in\nthis section.\n\n\nChoosing This License or Another License\n----------------------------------------\nIf for any part of your program you want or need to use *distribution*\nconditions that differ from those in this license, then do not refer to\nthis license anywhere in your program but instead distribute your\nprogram under a different license. You may use the text of this license\nas a model for your own license, but your license should not refer to\nthe LPPL or otherwise give the impression that your program is\ndistributed under the LPPL.\n\nThe document `modguide.tex' in the base LaTeX distribution explains\nthe motivation behind the conditions of this license. It explains,\nfor example, why distributing LaTeX under the GNU General Public\nLicense (GPL) was considered inappropriate. Even if your program is\nunrelated to LaTeX, the discussion in `modguide.tex' may still be\nrelevant, and authors intending to distribute their programs under any\nlicense are encouraged to read it.\n\n\nHow to Use This License\n-----------------------\nTo use this license, place in each of the files of your program both\nan explicit copyright notice including your name and the year and also\na statement that the distribution and/or modification of the file is\nconstrained by the conditions in this license.\n\nHere is an example of such a notice and statement:\n\n %% pig.dtx\n %% Copyright 2001 M. Y. Name\n %\n % This program may be distributed and/or modified under the\n % conditions of the LaTeX Project Public License, either version 1.1\n % of this license or (at your option) any later version.\n % The latest version of this license is in\n % http://www.latex-project.org/lppl.txt\n % and version 1.1 or later is part of all distributions of LaTeX \n % version 1999/06/01 or later.\n %\n % This program consists of the files pig.dtx and pig.ins\n\nGiven such a notice and statement in a file, the conditions given in\nthis license document would apply, with `The Program' referring to the\ntwo files `pig.dtx' and `pig.ins', and `The Copyright Holder' referring\nto the person `M. Y. Name'.\n\n\nImportant Recommendations\n-------------------------\nDefining What Constitutes The Program\n\n The LPPL requires that distributions of The Program contain all the\n files of The Program. It is therefore important that you provide a\n way for the licensee to determine which files constitute The Program.\n This could, for example, be achieved by explicitly listing all the\n files of The Program near the copyright notice of each file or by\n using a line like\n\n % This program consists of all files listed in manifest.txt.\n\n in that place. In the absence of an unequivocal list it might be\n impossible for the licensee to determine what is considered by you\n to comprise The Program.\n\n Noting Exceptional Files\n \n If The Program contains any files bearing additional conditions on\n modification, or on distribution of modified versions, of those\n files (other than those listed in `Additional Conditions on LaTeX\n Software Files'), then it is recommended that The Program contain a\n prominent file that defines the exceptional conditions, and either\n lists the exceptional files or defines one or more categories of\n exceptional files.\n\n Files containing the text of a license (such as this file) are\n often examples of files bearing more restrictive conditions on\n modification. LaTeX configuration files (with filename extension\n `.cfg') are examples of files bearing less restrictive conditions\n on the distribution of a modified version of the file. The\n additional conditions on LaTeX software given above are examples \n of declaring a category of files bearing exceptional additional\n conditions.", + "json": "lppl-1.1.json", + "yaml": "lppl-1.1.yml", + "html": "lppl-1.1.html", + "license": "lppl-1.1.LICENSE" + }, + { + "license_key": "lppl-1.2", + "category": "Copyleft", + "spdx_license_key": "LPPL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The LaTeX Project Public License\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\nLPPL Version 1.2 1999-09-03\n\nCopyright 1999 LaTeX3 Project\n Everyone is allowed to distribute verbatim copies of this\n license document, but modification of it is not allowed.\n\n\nPREAMBLE\n========\nThe LaTeX Project Public License (LPPL) is the license under which the\nbase LaTeX distribution is distributed.\n\nYou may use this license for any program that you have written and wish\nto distribute. This license may be particularly suitable if your\nprogram is TeX-related (such as a LaTeX package), but you may use it\neven if your program is unrelated to TeX. The section `WHETHER AND HOW\nTO DISTRIBUTE PROGRAMS UNDER THIS LICENSE', below, gives instructions,\nexamples, and recommendations for authors who are considering\ndistributing their programs under this license.\n\nIn this license document, `The Program' refers to any program\ndistributed under this license.\n\nThis license gives conditions under which The Program may be distributed\nand conditions under which modified versions of The Program may be\ndistributed. Individual files of The Program may bear supplementary\nand/or superseding conditions on modification of themselves and on the\ndistribution of modified versions of themselves, but *no* file of The\nProgram may bear supplementary or superseding conditions on the\ndistribution of an unmodified copy of the file. A distributor wishing\nto distribute a complete, unmodified copy of The Program therefore\nneeds to check the conditions only in this license and nowhere else.\n\nActivities other than distribution and/or modification of The Program\nare not covered by this license; they are outside its scope. In\nparticular, the act of running The Program is not restricted.\n\nWe, the LaTeX3 Project, believe that the conditions below give you\nthe freedom to make and distribute modified versions of The Program\nthat conform with whatever technical specifications you wish while\nmaintaining the availability, integrity, and reliability of\nThe Program. If you do not see how to achieve your goal while \nmeeting these conditions, then read the document `cfgguide.tex'\nin the base LaTeX distribution for suggestions.\n\n\nCONDITIONS ON DISTRIBUTION AND MODIFICATION\n===========================================\nYou may distribute a complete, unmodified copy of The Program.\nDistribution of only part of The Program is not allowed.\n\nYou may not modify in any way a file of The Program that bears a legal\nnotice forbidding modification of that file.\n\nYou may distribute a modified file of The Program if, and only if, the\nfollowing eight conditions are met:\n\n 1. You must meet any additional conditions borne by the file on the\n distribution of a modified version of the file as described below\n in the subsection `Additional Conditions on Individual Files of\n The Program'.\n \n 2. If the file is a LaTeX software file, then you must meet any\n applicable additional conditions on the distribution of a modified\n version of the file that are described below in the subsection\n `Additional Conditions on LaTeX Software Files'.\n \n 3. You must not distribute the modified file with the filename of the\n original file.\n \n 4. In the modified file, you must acknowledge the authorship and\n name of the original file, and the name (if any) of the program\n which contains it.\n \n 5. You must change any identification string in the file to indicate\n clearly that the modified file is not part of The Program.\n \n 6. You must change any addresses in the modified file for the\n reporting of errors in the file or in The Program generally to\n ensure that reports for files no longer maintained by the original\n maintainers will be directed to the maintainers of the modified\n files.\n \n 7. You must distribute the modified file under a license that forbids\n distribution both of the modified file and of any files derived\n from the modified file with the filename of the original file.\n \n 8. You must do either (A) or (B):\n\n (A) distribute a copy of The Program (that is, a complete,\n unmodified copy of The Program) together with the modified\n file; if your distribution of the modified file is made by\n offering access to copy the modified file from a designated\n place, then offering equivalent access to copy The Program\n from the same place meets this condition, even though third\n parties are not compelled to copy The Program along with the\n modified file;\n\n (B) provide to those who receive the modified file information\n that is sufficient for them to obtain a copy of The Program;\n for example, you may provide a Uniform Resource Locator (URL)\n for a site that you expect will provide them with a copy of \n The Program free of charge (either the version from which\n your modification is derived, or perhaps a later version).\n\nNote that in the above, `distribution' of a file means making the\nfile available to others by any means. This includes, for instance,\ninstalling the file on any machine in such a way that the file is\naccessible by users other than yourself. `Modification' of a file\nmeans any procedure that produces a derivative file under any\napplicable law -- that is, a file containing the original file or\na significant portion of it, either verbatim or with modifications\nand/or translated into another language.\n\nChanging the name of a file (other than as necessitated by the file\nconventions of the target file systems) is considered to be a\nmodification of the file.\n\nThe distribution conditions in this license do not have to be\napplied to files that have been modified in accordance with the\nabove conditions. Note, however, that Condition 7. does apply to\nany such modified file.\n\nThe conditions above are not intended to prohibit, and hence do not\napply to, the updating, by any method, of a file so that it becomes\nidentical to the latest version of that file of The Program.\n\n \nA Recommendation on Modification Without Distribution\n-----------------------------------------------------\nIt is wise never to modify a file of The Program, even for your own\npersonal use, without also meeting the above eight conditions for\ndistributing the modified file. While you might intend that such\nmodified files will never be distributed, often this will happen by\naccident -- you may forget that you have modified the file; or it may\nnot occur to you when allowing others to access the modified file\nthat you are thus distributing it and violating the conditions of\nthis license. It is usually in your best interest to keep your copy\nof The Program identical with the public one. Many programs provide\nways to control the behavior of that program without altering its\nlicensed files.\n\n\nAdditional Conditions on Individual Files of The Program\n--------------------------------------------------------\nAn individual file of The Program may bear additional conditions that\nsupplement and/or supersede the conditions in this license if, and only\nif, such additional conditions exclusively concern modification of the\nfile or distribution of a modified version of the file. The conditions\non individual files of The Program therefore may differ only with\nrespect to the kind and extent of modification of those files that\nis allowed, and with respect to the distribution of modified versions\nof those files.\n\n\nAdditional Conditions on LaTeX Software Files\n---------------------------------------------\nIf a file of The Program is intended to be used with LaTeX (that is,\nif it is a LaTeX software file), then the following additional\nconditions, which supplement and/or supersede the conditions\nabove, apply to the file according to its filename extension:\n\n - You may not modify any file with filename extension `.ins' since\n these are installation files containing the legal notices that are\n placed in the files they generate.\n \n - You may distribute modified versions of files with filename\n extension `.fd' (LaTeX font definition files) under the standard\n conditions of the LPPL as described above. You may also distribute\n such modified LaTeX font definition files with their original names\n provided that:\n (1) the only changes to the original files either enable use of\n available fonts or prevent attempts to access unavailable fonts;\n (2) you also distribute the original, unmodified files (TeX input\n paths can be used to control which set of LaTeX font definition\n files is actually used by TeX).\n\n - You may distribute modified versions of files with filename\n extension `.cfg' (configuration files) with their original names.\n The Program may (and usually will) specify the range of commands\n that are allowed in a particular configuration file.\n \nBecause of portability and exchangeability issues in LaTeX software,\nThe LaTeX3 Project deprecates the distribution of modified versions of\ncomponents of LaTeX or of generally available contributed code for them,\nbut such distribution can meet the conditions of this license.\n\n\nNO WARRANTY\n===========\nThere is no warranty for The Program. Except when otherwise stated in\nwriting, The Copyright Holder provides The Program `as is', without\nwarranty of any kind, either expressed or implied, including, but not\nlimited to, the implied warranties of merchantability and fitness for\na particular purpose. The entire risk as to the quality and performance\nof The Program is with you. Should The Program prove defective, you\nassume the cost of all necessary servicing, repair, or correction.\n\nIn no event unless agreed to in writing will The Copyright Holder, or\nany author named in the files of The Program, or any other party who may\ndistribute and/or modify The Program as permitted above, be liable to\nyou for damages, including any general, special, incidental or\nconsequential damages arising out of any use of The Program or out of\ninability to use The Program (including, but not limited to, loss of\ndata, data being rendered inaccurate, or losses sustained by anyone as\na result of any failure of The Program to operate with any other\nprograms), even if The Copyright Holder or said author or said other\nparty has been advised of the possibility of such damages.\n\n\nWHETHER AND HOW TO DISTRIBUTE PROGRAMS UNDER THIS LICENSE\n=========================================================\nThis section contains important instructions, examples, and\nrecommendations for authors who are considering distributing their\nprograms under this license. These authors are addressed as `you' in\nthis section.\n\n\nChoosing This License or Another License\n----------------------------------------\nIf for any part of your program you want or need to use *distribution*\nconditions that differ from those in this license, then do not refer to\nthis license anywhere in your program but instead distribute your\nprogram under a different license. You may use the text of this license\nas a model for your own license, but your license should not refer to\nthe LPPL or otherwise give the impression that your program is\ndistributed under the LPPL.\n\nThe document `modguide.tex' in the base LaTeX distribution explains\nthe motivation behind the conditions of this license. It explains,\nfor example, why distributing LaTeX under the GNU General Public\nLicense (GPL) was considered inappropriate. Even if your program is\nunrelated to LaTeX, the discussion in `modguide.tex' may still be\nrelevant, and authors intending to distribute their programs under any\nlicense are encouraged to read it.\n\n\nHow to Use This License\n-----------------------\nTo use this license, place in each of the files of your program both\nan explicit copyright notice including your name and the year and also\na statement that the distribution and/or modification of the file is\nconstrained by the conditions in this license.\n\nHere is an example of such a notice and statement:\n\n %% pig.dtx\n %% Copyright 2001 M. Y. Name\n %\n % This program may be distributed and/or modified under the\n % conditions of the LaTeX Project Public License, either version 1.2\n % of this license or (at your option) any later version.\n % The latest version of this license is in\n % http://www.latex-project.org/lppl.txt\n % and version 1.2 or later is part of all distributions of LaTeX \n % version 1999/12/01 or later.\n %\n % This program consists of the files pig.dtx and pig.ins\n\nGiven such a notice and statement in a file, the conditions given in\nthis license document would apply, with `The Program' referring to the\ntwo files `pig.dtx' and `pig.ins', and `The Copyright Holder' referring\nto the person `M. Y. Name'.\n\n\nImportant Recommendations\n-------------------------\nDefining What Constitutes The Program\n\n The LPPL requires that distributions of The Program contain all the\n files of The Program. It is therefore important that you provide a\n way for the licensee to determine which files constitute The Program.\n This could, for example, be achieved by explicitly listing all the\n files of The Program near the copyright notice of each file or by\n using a line like\n\n % This program consists of all files listed in manifest.txt.\n\n in that place. In the absence of an unequivocal list it might be\n impossible for the licensee to determine what is considered by you\n to comprise The Program.\n\n Noting Exceptional Files\n \n If The Program contains any files bearing additional conditions on\n modification, or on distribution of modified versions, of those\n files (other than those listed in `Additional Conditions on LaTeX\n Software Files'), then it is recommended that The Program contain a\n prominent file that defines the exceptional conditions, and either\n lists the exceptional files or defines one or more categories of\n exceptional files.\n\n Files containing the text of a license (such as this file) are\n often examples of files bearing more restrictive conditions on\n modification. LaTeX configuration files (with filename extension\n `.cfg') are examples of files bearing less restrictive conditions\n on the distribution of a modified version of the file. The\n additional conditions on LaTeX software given above are examples \n of declaring a category of files bearing exceptional additional\n conditions.", + "json": "lppl-1.2.json", + "yaml": "lppl-1.2.yml", + "html": "lppl-1.2.html", + "license": "lppl-1.2.LICENSE" + }, + { + "license_key": "lppl-1.3a", + "category": "Copyleft", + "spdx_license_key": "LPPL-1.3a", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The LaTeX Project Public License\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\nLPPL Version 1.3a 2004-10-01\n\nCopyright 1999 2002-04 LaTeX3 Project\n Everyone is allowed to distribute verbatim copies of this\n license document, but modification of it is not allowed.\n\n\nPREAMBLE\n========\nThe LaTeX Project Public License (LPPL) is the primary license under\nwhich the the LaTeX kernel and the base LaTeX packages are distributed.\n\nYou may use this license for any work of which you hold the copyright\nand which you wish to distribute. This license may be particularly\nsuitable if your work is TeX-related (such as a LaTeX package), but\nyou may use it with small modifications even if your work is unrelated\nto TeX.\n\nThe section `WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE',\nbelow, gives instructions, examples, and recommendations for authors\nwho are considering distributing their works under this license.\n\nThis license gives conditions under which a work may be distributed\nand modified, as well as conditions under which modified versions of\nthat work may be distributed.\n\nWe, the LaTeX3 Project, believe that the conditions below give you\nthe freedom to make and distribute modified versions of your work\nthat conform with whatever technical specifications you wish while\nmaintaining the availability, integrity, and reliability of\nthat work. If you do not see how to achieve your goal while\nmeeting these conditions, then read the document `cfgguide.tex'\nand `modguide.tex' in the base LaTeX distribution for suggestions.\n\n\nDEFINITIONS\n===========\n\nIn this license document the following terms are used:\n\n `Work'\n Any work being distributed under this License.\n \n `Derived Work'\n Any work that under any applicable law is derived from the Work.\n\n `Modification' \n Any procedure that produces a Derived Work under any applicable\n law -- for example, the production of a file containing an\n original file associated with the Work or a significant portion of\n such a file, either verbatim or with modifications and/or\n translated into another language.\n\n `Modify'\n To apply any procedure that produces a Derived Work under any\n applicable law.\n \n `Distribution'\n Making copies of the Work available from one person to another, in\n whole or in part. Distribution includes (but is not limited to)\n making any electronic components of the Work accessible by\n file transfer protocols such as FTP or HTTP or by shared file\n systems such as Sun's Network File System (NFS).\n\n `Compiled Work'\n A version of the Work that has been processed into a form where it\n is directly usable on a computer system. This processing may\n include using installation facilities provided by the Work,\n transformations of the Work, copying of components of the Work, or\n other activities. Note that modification of any installation\n facilities provided by the Work constitutes modification of the Work.\n\n `Current Maintainer'\n A person or persons nominated as such within the Work. If there is\n no such explicit nomination then it is the `Copyright Holder' under\n any applicable law.\n\n `Base Interpreter' \n A program or process that is normally needed for running or\n interpreting a part or the whole of the Work. \n A Base Interpreter may depend on external components but these\n are not considered part of the Base Interpreter provided that each\n external component clearly identifies itself whenever it is used\n interactively. Unless explicitly specified when applying the\n license to the Work, the only applicable Base Interpreter is a\n \"LaTeX-Format\".\n\n\n\nCONDITIONS ON DISTRIBUTION AND MODIFICATION\n===========================================\n1. Activities other than distribution and/or modification of the Work\nare not covered by this license; they are outside its scope. In\nparticular, the act of running the Work is not restricted and no\nrequirements are made concerning any offers of support for the Work.\n\n2. You may distribute a complete, unmodified copy of the Work as you\nreceived it. Distribution of only part of the Work is considered\nmodification of the Work, and no right to distribute such a Derived\nWork may be assumed under the terms of this clause.\n\n3. You may distribute a Compiled Work that has been generated from a\ncomplete, unmodified copy of the Work as distributed under Clause 2\nabove, as long as that Compiled Work is distributed in such a way that\nthe recipients may install the Compiled Work on their system exactly\nas it would have been installed if they generated a Compiled Work\ndirectly from the Work.\n\n4. If you are the Current Maintainer of the Work, you may, without\nrestriction, modify the Work, thus creating a Derived Work. You may\nalso distribute the Derived Work without restriction, including\nCompiled Works generated from the Derived Work. Derived Works\ndistributed in this manner by the Current Maintainer are considered to\nbe updated versions of the Work.\n\n5. If you are not the Current Maintainer of the Work, you may modify\nyour copy of the Work, thus creating a Derived Work based on the Work,\nand compile this Derived Work, thus creating a Compiled Work based on\nthe Derived Work.\n\n6. If you are not the Current Maintainer of the Work, you may\ndistribute a Derived Work provided the following conditions are met\nfor every component of the Work unless that component clearly states\nin the copyright notice that it is exempt from that condition. Only\nthe Current Maintainer is allowed to add such statements of exemption \nto a component of the Work. \n\n a. If a component of this Derived Work can be a direct replacement\n for a component of the Work when that component is used with the\n Base Interpreter, then, wherever this component of the Work\n identifies itself to the user when used interactively with that\n Base Interpreter, the replacement component of this Derived Work\n clearly and unambiguously identifies itself as a modified version\n of this component to the user when used interactively with that\n Base Interpreter.\n \n b. Every component of the Derived Work contains prominent notices\n detailing the nature of the changes to that component, or a\n prominent reference to another file that is distributed as part\n of the Derived Work and that contains a complete and accurate log\n of the changes.\n \n c. No information in the Derived Work implies that any persons,\n including (but not limited to) the authors of the original version\n of the Work, provide any support, including (but not limited to)\n the reporting and handling of errors, to recipients of the\n Derived Work unless those persons have stated explicitly that\n they do provide such support for the Derived Work.\n\n d. You distribute at least one of the following with the Derived Work:\n\n 1. A complete, unmodified copy of the Work; \n if your distribution of a modified component is made by\n offering access to copy the modified component from a\n designated place, then offering equivalent access to copy\n the Work from the same or some similar place meets this\n condition, even though third parties are not compelled to\n copy the Work along with the modified component;\n\n 2. Information that is sufficient to obtain a complete, unmodified\n copy of the Work.\n\n7. If you are not the Current Maintainer of the Work, you may\ndistribute a Compiled Work generated from a Derived Work, as long as\nthe Derived Work is distributed to all recipients of the Compiled\nWork, and as long as the conditions of Clause 6, above, are met with\nregard to the Derived Work.\n\n8. The conditions above are not intended to prohibit, and hence do\nnot apply to, the modification, by any method, of any component so that it\nbecomes identical to an updated version of that component of the Work as\nit is distributed by the Current Maintainer under Clause 4, above.\n\n9. Distribution of the Work or any Derived Work in an alternative\nformat, where the Work or that Derived Work (in whole or in part) is\nthen produced by applying some process to that format, does not relax or\nnullify any sections of this license as they pertain to the results of\napplying that process.\n \n10. a. A Derived Work may be distributed under a different license\n provided that license itself honors the conditions listed in\n Clause 6 above, in regard to the Work, though it does not have\n to honor the rest of the conditions in this license.\n \n b. If a Derived Work is distributed under this license, that\n Derived Work must provide sufficient documentation as part of\n itself to allow each recipient of that Derived Work to honor the \n restrictions in Clause 6 above, concerning changes from the Work.\n\n11. This license places no restrictions on works that are unrelated to\nthe Work, nor does this license place any restrictions on aggregating\nsuch works with the Work by any means.\n\n12. Nothing in this license is intended to, or may be used to, prevent\ncomplete compliance by all parties with all applicable laws.\n\n\nNO WARRANTY\n===========\nThere is no warranty for the Work. Except when otherwise stated in\nwriting, the Copyright Holder provides the Work `as is', without\nwarranty of any kind, either expressed or implied, including, but not\nlimited to, the implied warranties of merchantability and fitness for\na particular purpose. The entire risk as to the quality and performance\nof the Work is with you. Should the Work prove defective, you\nassume the cost of all necessary servicing, repair, or correction.\n\nIn no event unless required by applicable law or agreed to in writing\nwill The Copyright Holder, or any author named in the components of\nthe Work, or any other party who may distribute and/or modify the Work\nas permitted above, be liable to you for damages, including any\ngeneral, special, incidental or consequential damages arising out of\nany use of the Work or out of inability to use the Work (including,\nbut not limited to, loss of data, data being rendered inaccurate, or\nlosses sustained by anyone as a result of any failure of the Work to\noperate with any other programs), even if the Copyright Holder or said\nauthor or said other party has been advised of the possibility of such\ndamages.\n\n\nMAINTENANCE OF THE WORK\n=======================\nThe Work has the status `author-maintained' if the Copyright Holder\nexplicitly and prominently states near the primary copyright notice in\nthe Work that the Work can only be maintained by the Copyright Holder\nor simply that is `author-maintained'.\n\nThe Work has the status `maintained' if there is a Current Maintainer\nwho has indicated in the Work that they are willing to receive error\nreports for the Work (for example, by supplying a valid e-mail\naddress). It is not required for the Current Maintainer to acknowledge\nor act upon these error reports.\n\nThe Work changes from status `maintained' to `unmaintained' if there\nis no Current Maintainer, or the person stated to be Current\nMaintainer of the work cannot be reached through the indicated means\nof communication for a period of six months, and there are no other\nsignificant signs of active maintenance.\n\nYou can become the Current Maintainer of the Work by agreement with\nany existing Current Maintainer to take over this role.\n\nIf the Work is unmaintained, you can become the Current Maintainer of\nthe Work through the following steps:\n\n 1. Make a reasonable attempt to trace the Current Maintainer (and\n the Copyright Holder, if the two differ) through the means of\n an Internet or similar search.\n\n 2. If this search is successful, then enquire whether the Work\n is still maintained.\n\n a. If it is being maintained, then ask the Current Maintainer\n to update their communication data within one month.\n \n b. If the search is unsuccessful or no action to resume active\n maintenance is taken by the Current Maintainer, then announce\n within the pertinent community your intention to take over\n maintenance. (If the Work is a LaTeX work, this could be\n done, for example, by posting to comp.text.tex.)\n\n 3a. If the Current Maintainer is reachable and agrees to pass\n maintenance of the Work to you, then this takes effect\n immediately upon announcement.\n \n b. If the Current Maintainer is not reachable and the Copyright\n Holder agrees that maintenance of the Work be passed to you,\n then this takes effect immediately upon announcement. \n \n 4. If you make an `intention announcement' as described in 2b. above\n and after three months your intention is challenged neither by\n the Current Maintainer nor by the Copyright Holder nor by other\n people, then you may arrange for the Work to be changed so as\n to name you as the (new) Current Maintainer.\n \n 5. If the previously unreachable Current Maintainer becomes\n reachable once more within three months of a change completed\n under the terms of 3b) or 4), then that Current Maintainer must\n become or remain the Current Maintainer upon request provided\n they then update their communication data within one month.\n\nA change in the Current Maintainer does not, of itself, alter the fact\nthat the Work is distributed under the LPPL license.\n\nIf you become the Current Maintainer of the Work, you should\nimmediately provide, within the Work, a prominent and unambiguous\nstatement of your status as Current Maintainer. You should also\nannounce your new status to the same pertinent community as\nin 2b) above.\n\n\nWHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE\n======================================================\nThis section contains important instructions, examples, and\nrecommendations for authors who are considering distributing their\nworks under this license. These authors are addressed as `you' in\nthis section.\n\nChoosing This License or Another License\n----------------------------------------\nIf for any part of your work you want or need to use *distribution*\nconditions that differ significantly from those in this license, then\ndo not refer to this license anywhere in your work but, instead,\ndistribute your work under a different license. You may use the text\nof this license as a model for your own license, but your license\nshould not refer to the LPPL or otherwise give the impression that\nyour work is distributed under the LPPL.\n\nThe document `modguide.tex' in the base LaTeX distribution explains\nthe motivation behind the conditions of this license. It explains,\nfor example, why distributing LaTeX under the GNU General Public\nLicense (GPL) was considered inappropriate. Even if your work is\nunrelated to LaTeX, the discussion in `modguide.tex' may still be\nrelevant, and authors intending to distribute their works under any\nlicense are encouraged to read it.\n\nA Recommendation on Modification Without Distribution\n-----------------------------------------------------\nIt is wise never to modify a component of the Work, even for your own\npersonal use, without also meeting the above conditions for\ndistributing the modified component. While you might intend that such\nmodifications will never be distributed, often this will happen by\naccident -- you may forget that you have modified that component; or\nit may not occur to you when allowing others to access the modified\nversion that you are thus distributing it and violating the conditions\nof this license in ways that could have legal implications and, worse,\ncause problems for the community. It is therefore usually in your\nbest interest to keep your copy of the Work identical with the public\none. Many works provide ways to control the behavior of that work\nwithout altering any of its licensed components.\n\nHow to Use This License\n-----------------------\nTo use this license, place in each of the components of your work both\nan explicit copyright notice including your name and the year the work\nwas authored and/or last substantially modified. Include also a\nstatement that the distribution and/or modification of that\ncomponent is constrained by the conditions in this license.\n\nHere is an example of such a notice and statement:\n\n %% pig.dtx\n %% Copyright 2003 M. Y. Name\n %\n % This work may be distributed and/or modified under the\n % conditions of the LaTeX Project Public License, either version 1.3\n % of this license or (at your option) any later version.\n % The latest version of this license is in\n % http://www.latex-project.org/lppl.txt\n % and version 1.3 or later is part of all distributions of LaTeX\n % version 2003/12/01 or later.\n %\n % This work has the LPPL maintenance status \"maintained\".\n % \n % This Current Maintainer of this work is M. Y. Name.\n %\n % This work consists of the files pig.dtx and pig.ins\n % and the derived file pig.sty.\n\nGiven such a notice and statement in a file, the conditions\ngiven in this license document would apply, with the `Work' referring\nto the three files `pig.dtx', `pig.ins', and `pig.sty' (the last being\ngenerated from `pig.dtx' using `pig.ins'), the `Base Interpreter'\nreferring to any \"LaTeX-Format\", and both `Copyright Holder' and\n`Current Maintainer' referring to the person `M. Y. Name'.\n\nIf you do not want the Maintenance section of LPPL to apply to your\nWork, change \"maintained\" above into \"author-maintained\". \nHowever, we recommend that you use \"maintained\" as the Maintenance\nsection was added in order to ensure that your Work remains useful to\nthe community even when you can no longer maintain and support it\nyourself.\n\n\nImportant Recommendations\n-------------------------\nDefining What Constitutes the Work\n\n The LPPL requires that distributions of the Work contain all the\n files of the Work. It is therefore important that you provide a\n way for the licensee to determine which files constitute the Work.\n This could, for example, be achieved by explicitly listing all the\n files of the Work near the copyright notice of each file or by\n using a line such as:\n\n % This work consists of all files listed in manifest.txt.\n \n in that place. In the absence of an unequivocal list it might be\n impossible for the licensee to determine what is considered by you\n to comprise the Work and, in such a case, the licensee would be\n entitled to make reasonable conjectures as to which files comprise\n the Work.", + "json": "lppl-1.3a.json", + "yaml": "lppl-1.3a.yml", + "html": "lppl-1.3a.html", + "license": "lppl-1.3a.LICENSE" + }, + { + "license_key": "lppl-1.3c", + "category": "Copyleft", + "spdx_license_key": "LPPL-1.3c", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The LaTeX Project Public License\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\n\nLPPL Version 1.3c 2008-05-04\n\nCopyright 1999 2002-2008 LaTeX3 Project\n Everyone is allowed to distribute verbatim copies of this\n license document, but modification of it is not allowed.\n\n\nPREAMBLE\n========\n\nThe LaTeX Project Public License (LPPL) is the primary license under\nwhich the LaTeX kernel and the base LaTeX packages are distributed.\n\nYou may use this license for any work of which you hold the copyright\nand which you wish to distribute. This license may be particularly\nsuitable if your work is TeX-related (such as a LaTeX package), but \nit is written in such a way that you can use it even if your work is \nunrelated to TeX.\n\nThe section `WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE',\nbelow, gives instructions, examples, and recommendations for authors\nwho are considering distributing their works under this license.\n\nThis license gives conditions under which a work may be distributed\nand modified, as well as conditions under which modified versions of\nthat work may be distributed.\n\nWe, the LaTeX3 Project, believe that the conditions below give you\nthe freedom to make and distribute modified versions of your work\nthat conform with whatever technical specifications you wish while\nmaintaining the availability, integrity, and reliability of\nthat work. If you do not see how to achieve your goal while\nmeeting these conditions, then read the document `cfgguide.tex'\nand `modguide.tex' in the base LaTeX distribution for suggestions.\n\n\nDEFINITIONS\n===========\n\nIn this license document the following terms are used:\n\n `Work'\n Any work being distributed under this License.\n \n `Derived Work'\n Any work that under any applicable law is derived from the Work.\n\n `Modification' \n Any procedure that produces a Derived Work under any applicable\n law -- for example, the production of a file containing an\n original file associated with the Work or a significant portion of\n such a file, either verbatim or with modifications and/or\n translated into another language.\n\n `Modify'\n To apply any procedure that produces a Derived Work under any\n applicable law.\n \n `Distribution'\n Making copies of the Work available from one person to another, in\n whole or in part. Distribution includes (but is not limited to)\n making any electronic components of the Work accessible by\n file transfer protocols such as FTP or HTTP or by shared file\n systems such as Sun's Network File System (NFS).\n\n `Compiled Work'\n A version of the Work that has been processed into a form where it\n is directly usable on a computer system. This processing may\n include using installation facilities provided by the Work,\n transformations of the Work, copying of components of the Work, or\n other activities. Note that modification of any installation\n facilities provided by the Work constitutes modification of the Work.\n\n `Current Maintainer'\n A person or persons nominated as such within the Work. If there is\n no such explicit nomination then it is the `Copyright Holder' under\n any applicable law.\n\n `Base Interpreter' \n A program or process that is normally needed for running or\n interpreting a part or the whole of the Work. \n\n A Base Interpreter may depend on external components but these\n are not considered part of the Base Interpreter provided that each\n external component clearly identifies itself whenever it is used\n interactively. Unless explicitly specified when applying the\n license to the Work, the only applicable Base Interpreter is a\n `LaTeX-Format' or in the case of files belonging to the \n `LaTeX-format' a program implementing the `TeX language'.\n\n\n\nCONDITIONS ON DISTRIBUTION AND MODIFICATION\n===========================================\n\n1. Activities other than distribution and/or modification of the Work\nare not covered by this license; they are outside its scope. In\nparticular, the act of running the Work is not restricted and no\nrequirements are made concerning any offers of support for the Work.\n\n2. You may distribute a complete, unmodified copy of the Work as you\nreceived it. Distribution of only part of the Work is considered\nmodification of the Work, and no right to distribute such a Derived\nWork may be assumed under the terms of this clause.\n\n3. You may distribute a Compiled Work that has been generated from a\ncomplete, unmodified copy of the Work as distributed under Clause 2\nabove, as long as that Compiled Work is distributed in such a way that\nthe recipients may install the Compiled Work on their system exactly\nas it would have been installed if they generated a Compiled Work\ndirectly from the Work.\n\n4. If you are the Current Maintainer of the Work, you may, without\nrestriction, modify the Work, thus creating a Derived Work. You may\nalso distribute the Derived Work without restriction, including\nCompiled Works generated from the Derived Work. Derived Works\ndistributed in this manner by the Current Maintainer are considered to\nbe updated versions of the Work.\n\n5. If you are not the Current Maintainer of the Work, you may modify\nyour copy of the Work, thus creating a Derived Work based on the Work,\nand compile this Derived Work, thus creating a Compiled Work based on\nthe Derived Work.\n\n6. If you are not the Current Maintainer of the Work, you may\ndistribute a Derived Work provided the following conditions are met\nfor every component of the Work unless that component clearly states\nin the copyright notice that it is exempt from that condition. Only\nthe Current Maintainer is allowed to add such statements of exemption \nto a component of the Work. \n\n a. If a component of this Derived Work can be a direct replacement\n for a component of the Work when that component is used with the\n Base Interpreter, then, wherever this component of the Work\n identifies itself to the user when used interactively with that\n Base Interpreter, the replacement component of this Derived Work\n clearly and unambiguously identifies itself as a modified version\n of this component to the user when used interactively with that\n Base Interpreter.\n \n b. Every component of the Derived Work contains prominent notices\n detailing the nature of the changes to that component, or a\n prominent reference to another file that is distributed as part\n of the Derived Work and that contains a complete and accurate log\n of the changes.\n \n c. No information in the Derived Work implies that any persons,\n including (but not limited to) the authors of the original version\n of the Work, provide any support, including (but not limited to)\n the reporting and handling of errors, to recipients of the\n Derived Work unless those persons have stated explicitly that\n they do provide such support for the Derived Work.\n\n d. You distribute at least one of the following with the Derived Work:\n\n 1. A complete, unmodified copy of the Work; \n if your distribution of a modified component is made by\n offering access to copy the modified component from a\n designated place, then offering equivalent access to copy\n the Work from the same or some similar place meets this\n condition, even though third parties are not compelled to\n copy the Work along with the modified component;\n\n 2. Information that is sufficient to obtain a complete,\n unmodified copy of the Work.\n\n7. If you are not the Current Maintainer of the Work, you may\ndistribute a Compiled Work generated from a Derived Work, as long as\nthe Derived Work is distributed to all recipients of the Compiled\nWork, and as long as the conditions of Clause 6, above, are met with\nregard to the Derived Work.\n\n8. The conditions above are not intended to prohibit, and hence do not\napply to, the modification, by any method, of any component so that it\nbecomes identical to an updated version of that component of the Work as\nit is distributed by the Current Maintainer under Clause 4, above.\n\n9. Distribution of the Work or any Derived Work in an alternative\nformat, where the Work or that Derived Work (in whole or in part) is\nthen produced by applying some process to that format, does not relax or\nnullify any sections of this license as they pertain to the results of\napplying that process.\n \n10. a. A Derived Work may be distributed under a different license\n provided that license itself honors the conditions listed in\n Clause 6 above, in regard to the Work, though it does not have\n to honor the rest of the conditions in this license.\n \n b. If a Derived Work is distributed under a different license, that\n Derived Work must provide sufficient documentation as part of\n itself to allow each recipient of that Derived Work to honor the \n restrictions in Clause 6 above, concerning changes from the Work.\n\n11. This license places no restrictions on works that are unrelated to\nthe Work, nor does this license place any restrictions on aggregating\nsuch works with the Work by any means.\n\n12. Nothing in this license is intended to, or may be used to, prevent\ncomplete compliance by all parties with all applicable laws.\n\n\nNO WARRANTY\n===========\n\nThere is no warranty for the Work. Except when otherwise stated in\nwriting, the Copyright Holder provides the Work `as is', without\nwarranty of any kind, either expressed or implied, including, but not\nlimited to, the implied warranties of merchantability and fitness for a\nparticular purpose. The entire risk as to the quality and performance\nof the Work is with you. Should the Work prove defective, you assume\nthe cost of all necessary servicing, repair, or correction.\n\nIn no event unless required by applicable law or agreed to in writing\nwill The Copyright Holder, or any author named in the components of the\nWork, or any other party who may distribute and/or modify the Work as\npermitted above, be liable to you for damages, including any general,\nspecial, incidental or consequential damages arising out of any use of\nthe Work or out of inability to use the Work (including, but not limited\nto, loss of data, data being rendered inaccurate, or losses sustained by\nanyone as a result of any failure of the Work to operate with any other\nprograms), even if the Copyright Holder or said author or said other\nparty has been advised of the possibility of such damages.\n\n\nMAINTENANCE OF THE WORK\n=======================\n\nThe Work has the status `author-maintained' if the Copyright Holder\nexplicitly and prominently states near the primary copyright notice in\nthe Work that the Work can only be maintained by the Copyright Holder\nor simply that it is `author-maintained'.\n\nThe Work has the status `maintained' if there is a Current Maintainer\nwho has indicated in the Work that they are willing to receive error\nreports for the Work (for example, by supplying a valid e-mail\naddress). It is not required for the Current Maintainer to acknowledge\nor act upon these error reports.\n\nThe Work changes from status `maintained' to `unmaintained' if there\nis no Current Maintainer, or the person stated to be Current\nMaintainer of the work cannot be reached through the indicated means\nof communication for a period of six months, and there are no other\nsignificant signs of active maintenance.\n\nYou can become the Current Maintainer of the Work by agreement with\nany existing Current Maintainer to take over this role.\n\nIf the Work is unmaintained, you can become the Current Maintainer of\nthe Work through the following steps:\n\n 1. Make a reasonable attempt to trace the Current Maintainer (and\n the Copyright Holder, if the two differ) through the means of\n an Internet or similar search.\n\n 2. If this search is successful, then enquire whether the Work\n is still maintained.\n\n a. If it is being maintained, then ask the Current Maintainer\n to update their communication data within one month.\n \n b. If the search is unsuccessful or no action to resume active\n maintenance is taken by the Current Maintainer, then announce\n within the pertinent community your intention to take over\n maintenance. (If the Work is a LaTeX work, this could be\n done, for example, by posting to comp.text.tex.)\n\n 3a. If the Current Maintainer is reachable and agrees to pass\n maintenance of the Work to you, then this takes effect\n immediately upon announcement.\n \n b. If the Current Maintainer is not reachable and the Copyright\n Holder agrees that maintenance of the Work be passed to you,\n then this takes effect immediately upon announcement. \n \n 4. If you make an `intention announcement' as described in 2b. above\n and after three months your intention is challenged neither by\n the Current Maintainer nor by the Copyright Holder nor by other\n people, then you may arrange for the Work to be changed so as\n to name you as the (new) Current Maintainer.\n \n 5. If the previously unreachable Current Maintainer becomes\n reachable once more within three months of a change completed\n under the terms of 3b) or 4), then that Current Maintainer must\n become or remain the Current Maintainer upon request provided\n they then update their communication data within one month.\n\nA change in the Current Maintainer does not, of itself, alter the fact\nthat the Work is distributed under the LPPL license.\n\nIf you become the Current Maintainer of the Work, you should\nimmediately provide, within the Work, a prominent and unambiguous\nstatement of your status as Current Maintainer. You should also\nannounce your new status to the same pertinent community as\nin 2b) above.\n\n\nWHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE\n======================================================\n\nThis section contains important instructions, examples, and\nrecommendations for authors who are considering distributing their\nworks under this license. These authors are addressed as `you' in\nthis section.\n\nChoosing This License or Another License\n----------------------------------------\n\nIf for any part of your work you want or need to use *distribution*\nconditions that differ significantly from those in this license, then\ndo not refer to this license anywhere in your work but, instead,\ndistribute your work under a different license. You may use the text\nof this license as a model for your own license, but your license\nshould not refer to the LPPL or otherwise give the impression that\nyour work is distributed under the LPPL.\n\nThe document `modguide.tex' in the base LaTeX distribution explains\nthe motivation behind the conditions of this license. It explains,\nfor example, why distributing LaTeX under the GNU General Public\nLicense (GPL) was considered inappropriate. Even if your work is\nunrelated to LaTeX, the discussion in `modguide.tex' may still be\nrelevant, and authors intending to distribute their works under any\nlicense are encouraged to read it.\n\nA Recommendation on Modification Without Distribution\n-----------------------------------------------------\n\nIt is wise never to modify a component of the Work, even for your own\npersonal use, without also meeting the above conditions for\ndistributing the modified component. While you might intend that such\nmodifications will never be distributed, often this will happen by\naccident -- you may forget that you have modified that component; or\nit may not occur to you when allowing others to access the modified\nversion that you are thus distributing it and violating the conditions\nof this license in ways that could have legal implications and, worse,\ncause problems for the community. It is therefore usually in your\nbest interest to keep your copy of the Work identical with the public\none. Many works provide ways to control the behavior of that work\nwithout altering any of its licensed components.\n\nHow to Use This License\n-----------------------\n\nTo use this license, place in each of the components of your work both\nan explicit copyright notice including your name and the year the work\nwas authored and/or last substantially modified. Include also a\nstatement that the distribution and/or modification of that\ncomponent is constrained by the conditions in this license.\n\nHere is an example of such a notice and statement:\n\n %% pig.dtx\n %% Copyright 2005 M. Y. Name\n %\n % This work may be distributed and/or modified under the\n % conditions of the LaTeX Project Public License, either version 1.3\n % of this license or (at your option) any later version.\n % The latest version of this license is in\n % http://www.latex-project.org/lppl.txt\n % and version 1.3 or later is part of all distributions of LaTeX\n % version 2005/12/01 or later.\n %\n % This work has the LPPL maintenance status `maintained'.\n % \n % The Current Maintainer of this work is M. Y. Name.\n %\n % This work consists of the files pig.dtx and pig.ins\n % and the derived file pig.sty.\n\nGiven such a notice and statement in a file, the conditions\ngiven in this license document would apply, with the `Work' referring\nto the three files `pig.dtx', `pig.ins', and `pig.sty' (the last being\ngenerated from `pig.dtx' using `pig.ins'), the `Base Interpreter'\nreferring to any `LaTeX-Format', and both `Copyright Holder' and\n`Current Maintainer' referring to the person `M. Y. Name'.\n\nIf you do not want the Maintenance section of LPPL to apply to your\nWork, change `maintained' above into `author-maintained'. \nHowever, we recommend that you use `maintained', as the Maintenance\nsection was added in order to ensure that your Work remains useful to\nthe community even when you can no longer maintain and support it\nyourself.\n\nDerived Works That Are Not Replacements\n---------------------------------------\n\nSeveral clauses of the LPPL specify means to provide reliability and\nstability for the user community. They therefore concern themselves\nwith the case that a Derived Work is intended to be used as a\n(compatible or incompatible) replacement of the original Work. If\nthis is not the case (e.g., if a few lines of code are reused for a\ncompletely different task), then clauses 6b and 6d shall not apply.\n\n\nImportant Recommendations\n-------------------------\n\n Defining What Constitutes the Work\n\n The LPPL requires that distributions of the Work contain all the\n files of the Work. It is therefore important that you provide a\n way for the licensee to determine which files constitute the Work.\n This could, for example, be achieved by explicitly listing all the\n files of the Work near the copyright notice of each file or by\n using a line such as:\n\n % This work consists of all files listed in manifest.txt.\n \n in that place. In the absence of an unequivocal list it might be\n impossible for the licensee to determine what is considered by you\n to comprise the Work and, in such a case, the licensee would be\n entitled to make reasonable conjectures as to which files comprise\n the Work.", + "json": "lppl-1.3c.json", + "yaml": "lppl-1.3c.yml", + "html": "lppl-1.3c.html", + "license": "lppl-1.3c.LICENSE" + }, + { + "license_key": "lsi-proprietary-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-lsi-proprietary-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "USE OF LSI DOCUMENTATION AND SOFTWARE DOWNLOADS IS SUBJECT TO THIS AGREEMENT\n\nIMPORTANT - READ CAREFULLY: This Software License Agreement (\"SLA\") is a legal\nagreement between you (either an individual or a single entity) and LSI\nCorporation (\"LSI\") for the LSI Licensed Software identified herein and licensed\nherein, which includes computer software and may include associated media,\nprinted materials, and \"online\" or electronic documentation (\"LICENSED\nSOFTWARE\"). By installing, copying, or otherwise using the LICENSED SOFTWARE,\nyou agree to be bound by the terms of this SLA. If you do not agree to the terms\nof this SLA, you may not install, copy or use the LICENSED SOFTWARE. The\nLICENSED SOFTWARE is licensed, not sold.\n\nNOW THEREFORE, in consideration of the foregoing and the mutual promises and\ncovenants contained in this SLA (also referred to as \"Agreement\"), the parties\nhereby agree as follows:\n\n1. Definitions\n\n 1.1. \"Authorized Use for LSI Source Code\" means use of the LSI Source Code\n solely for the purpose of internally developing, modifying, integrating and\n testing Licensee's Products to interface with LSI Devices authorized for\n such integration, and for no other use or purpose.\n\n 1.2. \"Authorized Use for LSI Binary Code\" means use of the LSI Binary Code\n solely for the purpose of internal evaluation or developing, integrating,\n testing and use of Licensee's Products to interface with LSI Devices and for\n no other application, use or purpose.\n\n 1.3. \"Authorized Use for LSI Internal Code\" means use of the LSI Internal\n Use Code solely for the purpose of internally developing, modifying,\n integrating and testing Licensee's Products to interface with LSI Devices\n authorized for such integration, and for no other use or purpose.\n\n 1.4. \"Explanatory Materials\" means explanatory and informational materials\n or documentation concerning the LSI Licensed Code, in printed or electronic\n format, including without limitation, manuals, descriptions, user and/or\n installation instructions, diagrams, printouts, listings, flowcharts, and\n training materials, contained on visual media such as paper or photographic\n film, or on other physical storage media in machine-readable form.\n Explanatory Materials do not include any code.\n\n 1.5. \"LSI Licensed Code\" means collectively all the software programs which\n are owned or distributed by LSI and licensed to Licensee via the LSI\n Download Center through acceptance of this Agreement. The LSI Licensed Code\n is specifically referenced individually in this Agreement as LSI Source\n Code, LSI Binary Code, or LSI Internal Use Code.\n\n 1.6. \"Licensee's Products\" means the hardware and software (and related\n Licensee documentation) that will be developed or modified by or for\n Licensee utilizing the LSI Licensed Code for the purpose of interfacing or\n being used with LSI Devices.\n\n 1.7. \"Updates\" means maintenance releases, bug fixes, errata or other\n corrections, and minor improvements or modifications to the LSI Licensed\n Code which may be provided by LSI to Licensee from time to time at LSI's\n sole discretion. LSI is under no obligation to provide Updates or provide\n support and maintenance services to Licensee Subsequent Users.\n\n 1.8. \"New Version\" means significant changes, modifications, enhancements,\n and/or functional improvements to the LSI Licensed Code. New Versions are\n made and generally distributed solely at the discretion of LSI. Licensee\n must use the latest New Version of LSI Licensed Code that is available. LSI\n is under no obligation to port any development work from one version to the\n latest New Version of LSI Licensed Code.\n\n 1.9. \"LSI Devices\" means those LSI products intended for use with the LSI\n Licensed Code and purchased from LSI or its agents.\n\n 1.10. \"Derivative Works\" means: (a) for copyrightable or copyrighted\n material, any translation (including translation into other computer\n languages), port, modification, correction, addition, extension, upgrade,\n improvement, compilation, abridgment or other form in which an existing work\n may be recast, transformed or adapted; (b) for patentable or patented\n material, any improvement thereon; and (c) for material which is protected\n by trade secret, any new material derived from such existing trade secret\n material, including new material which may be protected by copyright, patent\n and/or trade secret.\n\n 1.11. \"Intellectual Property Rights\" means (by whatever name or term known\n or designated) copyrights, trade secrets, patents, moral rights and any\n other intellectual and industrial property and proprietary rights (excluding\n trademarks) including registrations, applications, renewals and extensions\n of such rights anywhere in the world.\n\n 1.12. \"LSI Binary Code\" means the software programs provided for\n distribution at the LSI Download Center, in binary form, any other machine\n readable materials, including, but not limited to, libraries, source files,\n header files, and data files, any Updates and New Versions provided by LSI.\n\n 1.13. \"LSI Source Code\" means the software programs provided for\n distribution at the LSI Download Center, in source form including, but not\n limited to, libraries, source files, header files, and data files, and\n Updates and New Versions provided by LSI.\n\n 1.14. \"LSI Internal Use Code\" means the software programs provided for\n distribution at the LSI Download Center, in source code or object code\n format including, but not limited to, libraries, source files, header files,\n and data files, and Updates and New Versions provided by LSI that are only\n for Licensee's internal use.\n\n 1.15. \"JRE Code\" mean Oracle Corporation's JAVA SE Runtime Environment Code.\n\n 1.16. \"Subsequent User\" means any user subsequent to Licensee, including but\n not limited to, all Licensee customers, resellers, end users, and OEMs.\n\n 1.17 \"Taxes\" shall mean all taxes, levies, imposts, duties, fines or other\n charges of whatsoever nature however imposed by any country or any\n subdivision or authority thereof in any way connected with this Agreement or\n any instrument or agreement required hereunder, and all interest, penalties\n or similar liabilities with respect thereto, except such taxes as are\n imposed on or measured by a party's net income or property.\n\n2. Grant of Rights\n\n2.1 LSI Binary Code. Subject to the terms of this Agreement, LSI grants to\nLicensee a non-exclusive, world-wide, revocable (for breach in accordance with\nSection 7), non-transferable limited license, without the right to sublicense\nexcept as expressly provided herein, solely to:\n\n (a) Use the LSI Binary Code and related Explanatory Materials solely for the\n Authorized Use for Binary Code and only with LSI Devices\n\n (b) Make copies of the LSI Binary Code and related Explanatory Materials to\n support the Authorized Use for Binary Code and for archival and backup\n purposes in support of the Authorized Use for Binary Code only with LSI\n Devices;\n\n (c) Distribute the LSI Binary Code as incorporated in Licensee's Products or\n for use with LSI Devices to its Subsequent Users;\n\n (d) Distribute the Explanatory Materials related to LSI Binary Code only for\n use with LSI Devices;\n\n (e) Sublicense the rights provided in paragraphs (a) and (b) above in\n accordance with the terms provided in this Agreement to contract\n manufacturers (\"CMs\") and/or original design manufacturers (\"ODMs\"), in each\n case meeting the requirements of Section 3.1(d) below for the purpose of\n manufacturing Licensee's Products; and (f) Sublicense the rights provided in\n paragraphs (b) and (c) in accordance with the terms provided in this\n Agreement to Subsequent Users who are not end users for the purpose of\n distributing and supporting Licensee's Product.\n\n2.2 LSI Source Code. Subject to the terms of this Agreement, LSI grants to\nLicensee a non-exclusive, worldwide, revocable (for breach in accordance with\nSection 7), non-transferable limited license, without the right to sublicense\nexcept as expressly provided herein, solely to:\n\n (a) Use the LSI Source Code and related Explanatory Materials solely for the\n Authorized Use for Source Code and only with LSI Devices;\n\n (b) Make copies of the LSI Source Code and related Explanatory Material to\n support the Authorized Use for Source Code only and for archival and backup\n purposes in support of the Authorized use for Source Code only with LSI\n Devices;\n\n (c) Modify and prepare Derivative Works of the LSI Source Code for the\n Authorized Use for LSI Source Code and only for use with LSI Devices;\n\n (d) Distribute the binary form only of any authorized Derivative Work of the\n LSI Source Code (\"Licensee Binary Derivative\") and necessary portions of the\n related Explanatory Materials only for use with LSI Devices; and\n\n (e) Sublicense the rights granted in paragraph (d) above in accordance with\n the terms provided in this Agreement to Subsequent Users who are not end\n users for the purpose of distributing and supporting Licensee's Product.\n\n2.3 LSI Internal Use Code. Subject to the terms of this Agreement, LSI grants to\nLicensee a non-exclusive, worldwide, revocable (for breach in accordance with\nSection 7), non-transferable limited license, without the right to sublicense or\ndistribute, solely to:\n\n (a) Use the LSI Internal Use Code and related Explanatory Materials solely\n for the Authorized Use for Internal Code and only with LSI Devices; and\n\n (b) Make copies of the LSI Internal Use Code and related Explanatory\n Materials to support the Authorized Use for Internal Code only and for\n archival and backup purposes in support of the Authorized use for Internal\n Code only with LSI Devices.\n\n2.4 Without limiting Section 4, Licensee may exercise the foregoing rights\ndirectly and/or indirectly through its employees and contractors, who are bound\nby terms at least as restrictive as this Agreement.\n\n3. License Restrictions\n\n3.1. LSI Binary Code. The Licenses granted in Section 2.1 for LSI Binary Code\nand related Explanatory Materials are subject to the following restrictions:\n\n (a) Licensee shall not use the LSI Binary Code and related Explanatory\n Materials for any purpose other than as expressly provided in Article 2;\n\n (b) Licensee shall reproduce all copyright notices and other proprietary\n markings or legends contained within or on the LSI Binary Code and related\n Explanatory Materials on any copies it makes; and\n\n (c) Licensee shall not distribute or disclose the LSI Binary Code and\n related Explanatory Materials except pursuant to an agreement with terms at\n least as protective of LSI's Binary Code as the terms of this Agreement.\n Licensee shall not, and shall not allow its Subsequent Users to,\n disassemble, de-compile, or reverse engineer the LSI Binary Code.\n\n (d) Licensee may grant the sublicense set forth in Section 2.1(e) to its CMs\n and ODMs, provided that each such CM and ODM agrees to abide by the terms\n and conditions of this Agreement and Licensee shall remain responsible for\n any failure by its CMs and ODM to comply with the terms and conditions of\n this Agreement.\n\n3.2. LSI Source Code. The Licenses granted in Section 2.2 for LSI Source Code\nand related Explanatory Materials are subject to the following restrictions:\n\n (a) Licensee shall not use the LSI Source Code and related Explanatory\n Materials for any purpose other than as expressly provided in Article 2;\n\n (b) Licensee shall reproduce all copyright notices and other proprietary\n markings or legends contained within or on the LSI Source Code and related\n Explanatory Materials on any copies it makes;\n\n (c) Licensee shall not distribute or disclose any LSI Source Code and\n related Explanatory Materials to any Subsequent Users or third parties,\n without the express written consent of LSI;\n\n (d) Licensee shall not knowingly infringe upon the intellectual property\n rights of any third party when making Derivative Works to the LSI Source\n Code;\n\n (e) Licensee shall not disassemble, reverse-engineer, or decompile the LSI\n Source Code, except for making authorized Derivative Works; and\n\n (f) Licensee shall not distribute or disclose the Licensee Binary Derivative\n except pursuant to an agreement with terms at least as protective as those\n in this Agreement protecting LSI's Binary Code. Licensee shall not, and\n shall not allow its Subsequent Users to, disassemble, de-compile, or reverse\n engineer the Licensee Binary Derivative.\n\n3.3. LSI Internal Use Code. The Licenses granted in Section 2.3 for LSI Internal\nUse Code and related Explanatory Materials are subject to the following\nrestrictions:\n\n (a) Licensee shall not use the LSI Internal Use Code and related Explanatory\n Materials for any purpose other than as expressly provided in Article 2;\n\n (b) Licensee shall reproduce all copyright notices and other proprietary\n markings or legends contained within or on the LSI Internal Use Code and\n related Explanatory Materials on any copies it makes;\n\n (c) Licensee shall not distribute or disclose any LSI Internal Use Code and\n related Explanatory Materials to any Subsequent Users or third parties,\n without the express written consent of LSI; and\n\n (d) Licensee shall not disassemble, reverse-engineer, or decompile the LSI\n Internal Use Code.\n\n3.4. Derivative Works of LSI Source Code Made by Licensee. Subject to LSI's\nrights in the underlying LSI Source Code, Licensee shall own all right, title\nand interest in and to the Derivative Works (both binary and source format) it\nmakes from LSI Source Code, provided that such Derivative Works are not made in\nbreach of this Agreement. Licensee shall not be required to disclose its\nDerivative Works of the LSI Source Code to LSI. LSI shall have no obligations\nwhatsoever to support, maintain, contribute to, or provide Updates, New Versions\nor any modifications to Licensee Derivative Works of the LSI Source Code and\nshall have no liability whatsoever for such Derivative Works. In the event\nLicensee requests LSI's input regarding Licensee Derivative Works of LSI Source\nCode and plans to disclose such Derivative Works to LSI, a separate written\nagreement shall first be executed by the parties.\n\n3.5. LSI Derivative Works. Nothing contained herein shall prevent LSI from\ncreating any Derivative Works of its LSI Source Code at any time. Licensee\nfurther agrees that LSI may independently create a Derivative Work similar to or\nin competition with the Licensee Derivative Work of the LSI Source Code and may\nuse that Derivative Work for any purpose. Licensee grants LSI a Covenant Not to\nSue for any independently developed Derivative Works created by LSI for its own\nLSI Source Code that Licensee may believe or claim infringes on any of\nLicensee's Intellectual Property Rights relating to the Licensee Derivative\nWorks of the LSI Source Code.\n\n3.6. U.S. Government Subsequent Users. All LSI Licensed Code and Explanatory\nMaterials qualify as \"commercial items,\" as that term is defined at 48 C.F.R.\n2.101, consisting of \"commercial computer software\" and \"commercial computer\nsoftware documentation\" as such terms are used in 48 C.F.R. 12.212. Consistent\nwith 48 CFR 52.227-19, 48 C.F.R.12.212 and 48 C.F.R. 227.7202-1 through\n227.7202-4, Licensee will provide to U.S. Government end users such LSI Binary\nCode with only those rights set forth herein that apply to non-governmental end\nusers. Use of such LSI Binary Code constitutes agreement by the government\nentity that the computer software and computer software documentation is\ncommercial and constitutes acceptance of the rights and restrictions herein.\n\n3.7. No Implied Licenses. Except for the express and limited licenses granted\nherein for specific purposes, no rights or licenses are granted by LSI under\nthis Agreement, by implication, inducement, estoppel or otherwise with respect\nto any proprietary information or to any patents, copyrights, trade secrets,\ntrademarks, maskworks or other Intellectual Property Rights owned or controlled\nby LSI. Any further licenses must be express, in writing and signed by an\nauthorized representative of LSI.\n\n3.8. Injunctive Relief. In the event of a breach by Licensee of this Section 2\nor 3, LSI shall be entitled to applicable injunctive relief and to all remedies\navailable in equity and law to prevent Licensee from disassembling, de-\ncompiling, reverse engineering, disclosing or using the LSI Licensed Code in\nwhole or in part.\n\n3.9. LSI Licensed Code Containing JRE. Certain LSI Licensed Code may contain\nJRE. Use of the JRE is restricted by JRE licensing terms to General Purpose\nDesktop Computers and Servers, as defined below. Licensee may seek its own\nlicense for the JRE directly with the owner, if it deems necessary. \"General\nPurposes Desktop Computers and Servers\" under JRE licensing terms is defined as\n\"computers, including desktop, laptop and tablet computers, or servers, used for\ngeneral computing functions under end user control (such as but not specifically\nlimited to email, general purpose Internet browsing and office suite\nproductivity tools)\". The full terms and conditions for use of the JRE are\navailable at:\nhttp://www.oracle.com/technetwork/java/javase/terms/license/index.html.\n\n3.10. Notwithstanding anything to the contrary in this Agreement, to the extent\nthere is a conflict between this Agreement\u2019s provisions and any applicable\nlicense to open source technology, the provisions of the open source license\nshall take precedence and be followed, but only to the minimum extent reasonably\nnecessary to comply with the applicable open source license.\n\n4. Confidentiality\n\n 4.1 Licensee agrees to limit access to the LSI Licensed Code and Explanatory\n Materials to employees and contractors of Licensee (which may include,\n without limitation, contractors retained by Licensee to maintain or modify\n the LSI Licensed Code and Explanatory Materials on behalf of Licensee)\n having a need to access or know the LSI Licensed Code and Explanatory\n Materials and who have executed nondisclosure agreements with Licensee\n obligating them to maintain the confidentiality of the LSI Licensed Code and\n Explanatory Materials.\n\n 4.2 Licensee shall hold in confidence the LSI Licensed Code and Explanatory\n Materials as LSI's confidential information (\"Confidential Information\") and\n shall use the LSI Code and Explanatory Materials only as expressly provided\n in Section 2, and protect the confidentiality of such Confidential\n Information with the same degree of care as Licensee uses to protect its own\n confidential or proprietary information of great commercial value, but in no\n event less than reasonable care and for no less than three (3) years from\n the date of disclosure.\n\n 4.3 Licensee agrees to notify LSI immediately after Licensee becomes aware\n of any suspected misuse or unauthorized disclosure of any Confidential\n Information. The obligations of confidentiality imposed on Licensee under\n this Section 4 shall not apply or shall cease to apply to any of such\n Confidential Information that Licensee clearly establishes: (i) was already\n rightfully in the possession of Licensee at the time of disclosure as\n evidenced by records of Licensee; (ii) is or becomes publicly available\n through no act or omission of Licensee; (iii) is rightfully received by\n Licensee from a third party without an obligation of confidentiality; (iv)\n is independently developed by Licensee's employees or contractors without\n use of or access to the information; or (v) is approved for unrestricted\n disclosure in writing by an authorized representative of LSI. LSI makes no\n warranty as to the accuracy of any Confidential Information, which is\n furnished \"AS IS\" with all faults.\n\n5. Ownership of Code by LSI, Fees, and Taxes\n\n 5.1 LSI (or its licensors) reserve all right, title, ownership and interest\n in and to the LSI Licensed Code and Explanatory Materials existing prior to\n and after the Effective Date of this Agreement, or created or generated by\n LSI (or its licensors) at any time, subject to any licenses granted. LSI (or\n its licensors) reserves all right, title, ownership and interest in and to\n any Derivative Works it creates at any time to the LSI Licensed Code and\n Explanatory Materials, subject to any licenses granted.\n\n 5.2 Fees and Taxes. No fees are due in connection with this Agreement unless\n separately specified by LSI. If any such fees are separately specified in\n writing, the following applies:\n\n 5.2.1 Payment is due by Licensee upon download, at time of purchase, or no\n later than within thirty (30) days of date of LSI invoice therefore, as\n designated by LSI All payments shall be made in U.S. currency unless\n otherwise agreed. If at any time, Licensee is delinquent in the payment of\n any invoice, or is otherwise in breach of this Agreement, LSI may, at its\n discretion, and without prejudice to its other rights, withhold delivery\n (including partial delivery) of any order or may, at its option, require\n Licensee to prepay for further deliveries. Any sum not paid by Licensee,\n when due, shall bear interest until paid at a rate of 1.5% per month (18%\n per annum) or the maximum rate permitted by law, whichever is less.\n\n 5.2.2 All payments or reimbursements due under this Agreement and any\n instrument or agreement required hereunder shall be made free and clear and\n without deduction for any and all present and future Taxes. Payments due to\n LSI under this Agreement and any instrument or agreement required hereunder\n shall be increased so that amounts received by LSI, after provisions for\n Taxes and all Taxes on such increase, will be equal to the amounts required\n under this Agreement and any instrument or agreement required hereunder if\n no Taxes were due on such payments.\n\n 5.2.3 The Licensee shall indemnify LSI for the full amount of Taxes\n attributable to the provision of products or services under this Agreement,\n and any liabilities (including penalties, interest and expenses) arising\n from such Taxes, within thirty (30) days from any written demand by LSI. The\n Licensee shall provide evidence that all applicable Taxes have been paid to\n the appropriate taxing authority by delivering to LSI receipts or notarized\n copies thereof within thirty (30) days after the due date for such tax\n payments.\n\n 5.2.4 Without prejudice to the survival of any other Agreement of Licensee\n hereunder, the obligations of Licensee contained in this section shall\n survive the payment in full of all payments hereunder.\n\n6. Support\n\n (a) LSI may provide the following support services for the LSI Licensed Code\n to the extent LSI deems reasonable: Updates if and when released and errata\n in LSI's sole discretion. LSI shall not be responsible for any other support\n or maintenance of LSI Licensed Code to Licensee or its Subsequent Users,\n unless otherwise agreed to in writing. LSI is under no obligation to provide\n support services and may discontinue support services at any time. LSI will\n not provide support for modified LSI Licensed Code or Licensee's Derivative\n Works of the LSI Source Code.\n\n (b) Any Updates to the LSI Licensed Code provided by LSI (which shall only\n be provided by LSI in its sole discretion) shall be governed by the terms of\n this Agreement.\n\n (c) If Licensee finds what Licensee considers an error in the LSI Licensed\n Code, Licensee will notify LSI so that LSI can, in its sole discretion, make\n corrections to the LSI Licensed Code or to future revisions of the LSI\n Licensed Code.\n\n7. Term and Termination\n\n 7.1 Term. The term of this Agreement is five (5) years from the Effective\n Date, subject to renewal upon mutual agreement of the parties.\n\n 7.2 Termination for Breach. If Licensee breaches any material provision of\n this Agreement, LSI shall have the right to terminate this Agreement,\n including all licenses granted hereunder, in addition to any and all other\n remedies available at law or equity, unless Licensee cures such breach\n within sixty (60) days (\"Cure Period\") after receiving written notice of the\n breach by LSI. Licensee shall make best efforts to cure the material breach\n in the least amount of time possible within the Cure Period.\n\n 7.3 Insolvency. If either party: (a) becomes substantially insolvent; (b)\n makes an assignment for the benefit of creditors; (c) files or has filed\n against it a petition in bankruptcy or seeking reorganization; (d) has a\n receiver appointed; or (e) institutes any proceedings for liquidation or\n winding up or have such proceedings instituted against it; then the other\n party may, in addition to other rights and remedies it may have, terminate\n this Agreement immediately by written notice.\n\n 7.4 Consequences. Upon termination or expiration of this Agreement for any\n reason whatsoever, the licenses, rights, and covenants granted hereunder and\n any obligations imposed hereunder shall cease except as otherwise expressly\n set forth herein as surviving termination or expiration.\n\n 7.5 Return of Confidential Information. Upon expiration or termination of\n this Agreement for any reason or upon written request by LSI, Licensee\n agrees to promptly return to LSI or, at LSI's request, destroy and certify\n by an officer of Licensee in writing the destruction of, all LSI\n Confidential Information furnished to Licensee, including all LSI Licensed\n Code and Explanatory Materials.\n\n 7.6 Survival of Licenses. Any LSI Licensed Code and Explanatory Materials\n distributed prior to the effective date of any termination, expiration,\n breach, or cancellation of this Agreement, shall remain licensed (including\n any LSI Licensed Code in inventory, manufactured, or work in progress with\n Licensee products) under the terms of this Agreement. Notwithstanding the\n foregoing, Licensee may retain an archival copy of portions of the LSI\n Confidential Information, including LSI Licensed Code and Explanatory\n Materials, necessary for Licensee to provide ongoing technical support to\n Subsequent Users using the LSI Licensed Code (\"Archival Materials\") after\n termination, expiration or cancellation of this Agreement. Such Archival\n Materials may not be used for any other purpose without the written consent\n from LSI. Licensee shall keep such Archival Materials confidential for an\n additional five (5) years from the date of termination, expiration , or\n cancellation of this Agreement, regardless of when the LSI Confidential\n Information was disclosed.\n\n 7.7 Survival. In the event of expiration or termination of this Agreement\n for any reason, the following sections of this Agreement shall survive: 1,\n 3, 5, 7, 8, 9, 8 and 10. Termination will not prejudice either party to\n require performance of any obligation due at the time of termination. All\n end user licenses in effect and in compliance with the Agreement prior to\n effective termination or expiration shall survive and continue in full force\n and effect in accordance with their terms and Licensee may continue to\n perform its obligations thereunder, including support obligations.\n\n8. Disclaimer of All Warranties\n\n 8.1 THE PARTIES AGREE THAT LSI FURNISHES THE LSI LICENSED CODE AND\n EXPLANATORY MATERIALS TO LICENSEE \"AS IS,\" UNSUPPORTED, WITHOUT WARRANTY OF\n ANY KIND. LSI DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING THE\n IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NON-INFRINGEMENT, INCLUDING ANY THAT MAY ARISE FROM A COURSE OF PERFORMANCE,\n A COURSE OF DEALING OR TRADE USAGE. LSI SHALL NOT BE LIABLE FOR ANY ERROR,\n OMISSION, DEFECT, DEFICIENCY, OR NONCONFORMITY IN THE LSI LICENSED CODE OR\n EXPLANATORY MATERIALS. LSI MAKES NO WARRANTY OR REPRESENTATION THAT THE LSI\n LICENSED CODE OR EXPLANATORY MATERIALS WILL MEET LICENSEE'S REQUIREMENTS OR\n WILL WORK IN COMBINATION WITH ANY HARDWARE OR SOFTWARE APPLICATION.\n\n 8.2 LSI DISCLAIMS ANY AND ALL LIABILITY IN CONNECTION WITH LICENSEE'S USE OF\n THE LSI LICENSED CODE IN ANY MEDICAL, NUCLEAR, AVIATION, NAVIGATION,\n MILITARY, OR OTHER HIGH RISK DEVICE OR APPLICATION. LICENSEE REPRESENTS AND\n WARRANTS THAT IT WILL NOT USE THE LICENSED LSI CODE IN ANY MEDICAL, NUCLEAR,\n AVIATION, NAVIGATION, MILITARY, OR OTHER HIGH RISK DEVICE OR APPLICATION.\n LICENSEE SHALL INDEMNIFY, DEFEND, AND HOLD LSI HARMLESS AGAINST ANY LOSS,\n LIABILITY, OR DAMAGE OF ANY KIND THAT LSI INCURS IN CONNECTION WITH BREACH\n OF THE WARRANTY IN THIS SECTION 8.2.\n\n 8.3 LSI DISCLAIMS ANY AND ALL LIABILITY IN CONNECTION WITH LICENSEE'S\n CREATION AND USE OF DERIVATIVE WORKS OF THE LSI SOURCE CODE. LICENSEE SHALL\n INDEMNIFY, DEFEND, AND HOLD LSI HARMLESS AGAINST ANY LOSS, LIABILITY, OR\n DAMAGE OF ANY KIND THAT LSI INCURS IN CONNECTION WITH LICENSEE'S DERIVATIVE\n WORKS OF LSI SOURCE CODE.\n\n9. Limitation of Liability\n\n IN NO EVENT SHALL LSI, ITS EMPLOYEES, AFFILIATES ORSUPPLIERS BE LIABLE FOR\n ANY LOST PROFITS, REVENUE, SALES OR DATA OR COSTS OF PROCURE OF SUBTITUTE\n GOODS OR SERVICES, INTERRUPTION, LOSS OF BUSINESS INFORMATION OR ANY\n SPECIAL, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, ECONOMIC OR PUNITIVE\n DAMAGES, HOWEVER CAUSED, AND WHETHER ARISING UNDER CONTRACT, TORT, STRICT\n LIABILITY, NEGLIGENCE OR OTHER THEORY OF LIABILITY, ARISING OUT OF THE USE\n OR INABILTY TO USE THE LSI LICENSED CODE OR EXPLANATORY MATERIALS, EVEN IF\n LSI OR ITS EMPLOYEES, SUPPLIERS OR AFFILIATES ARE ADVISED OF THE POSSIBILTIY\n OF SUCH DAMAGES. IN THE EVENT THAT THE APPLICABLE JURISDICTION DOES NOT\n ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY, BUT DOES ALLOW LIABILTY TO\n BE LIMITED, THE LIABILITY OF LSI, ITS EMPLOYEES, AFFILIATES, OR SUPPLIERS IN\n SUCH CASES, SHALL BE LIMITED TO $100 US DOLLARS.\n\n10. General\n\n 10.1 Assignment. Licensee shall not assign this Agreement or any of its\n rights or delegate any of its duties under this Agreement without the prior\n written consent of LSI. Subject to the foregoing, this Agreement will be\n binding upon, enforceable by, and inure to the benefit of the parties and\n their respective successors and assigns. Any attempted assignment in\n violation of this Section 10.1 shall be null and void.\n\n 10.2 Governing Law. This Agreement shall be construed and interpreted in\n accordance with the law of the State of California without reference to its\n conflicts of law principles.\n\n 10.3 Exclusive Jurisdiction. All disputes arising out of or related to this\n Agreement will be subject to the exclusive jurisdiction and venue of the\n California state courts of Santa Clara County, California in United States\n District Court for the Northern District of California, and the parties\n consent to the personal and exclusive jurisdiction of these courts.\n\n 10.4 Export Control. Licensee shall follow all export control laws and\n regulations relating to the LSI Licensed Code and Explanatory Materials.\n Licensee hereby acknowledges responsibility for compliance with all\n applicable US and local laws and regulations related to import and export\n and acknowledges and agrees that the LSI Licensed Code is subject to the\n U.S. Export Administration Regulations. Diversion contrary to U.S. law is\n prohibited. Licensee agrees that the LSI Licensed Code is being or will be\n acquired for, shipped, transferred, or re-exported, directly or indirectly,\n to prohibited or embargoed countries, nor be used for any prohibited end-\n use, such as nuclear activities, chemical/biological weapons, or missile\n projects, unless expressly authorized by the U.S. Government. Prohibited\n countries are set forth in the Supplement 1 to Part 740 of the U.S. Export\n Administration Regulations. Countries currently subject to U.S. embargo\n include: Cuba, Iran, N. Korea, Sudan and Syria. This list is subject to\n change without further notice from LSI Corporation and Licensee understands\n that compliance with the list as it exists in fact, is required. Licensee\n assumes sole responsibility for obtaining any/all licenses required for\n export or re-export. All ECCN and CCATS numbers and License Exception\n information are subject to change without notice. Modification in any way\n nullifies the classification. It is therefore your obligation as an exporter\n to verify such information and comply with the then currently applicable\n regulations. Any data provided by LSI is for informational purposes only.\n LSI Corporation makes no representation or warranty as to the accuracy or\n reliability of any classifications or numbers. Any use of such\n classifications or numbers by you is without recourse to LSI Corporation and\n is at your own risk. LSI Corporation is in no way responsible for any\n damages, whether direct, indirect, consequential, incidental or otherwise,\n suffered by you as a result of using or relying upon such classifications or\n numbers for any purpose whatsoever. Licensee agrees to consult the EAR, the\n Bureau of Industry and Security's Export Counseling Division, and other\n appropriate sources before distributing, importing, or using LSI products.\n You may request software classification information from LSI or view it at\n LSI.com. If requested, Customer agrees to sign written assurances and other\n export-related documents as may be required by LSI.\n\n 10.5 Waiver. No failure or delay on the part of either party in the exercise\n of any right or privilege hereunder shall operate as a waiver thereof or of\n the exercise of any other right or privilege hereunder, nor shall any single\n or partial exercise of any such right or privilege preclude other or further\n exercise thereof or of any other right or privilege.\n\n 10.6 Notice. Any notice or claim provided for herein to LSI shall be in\n writing and addressed as set forth below, and shall be given (i) by personal\n delivery, effective upon delivery, (ii) by first class mail, postage\n prepaid, addressed as set forth below, effective one (1) business day after\n proper deposit in the mail, or (iii) by facsimile directed to the facsimile\n number set forth below, but only if accompanied by mailing of a copy in\n accordance with (ii) above, effective as of the date of facsimile\n transmission.\n\n Vice President\n Global Commercial Law Group\n LSI Corporation\n 1110 American Parkway, NE\n Room 12K-302\n Allentown, PA 18109\n Fax: (610) 712-1450 \n\n 10.7 Severability. If any term, condition, or provision of this Agreement,\n or portion of this Agreement, is found to be invalid, unlawful or\n unenforceable to any extent, the parties will endeavor in good faith to\n agree to such amendments that will preserve, as far as possible, the\n intentions expressed in this Agreement. Such invalid term, condition or\n provision will be severed from the remaining terms, conditions and\n provisions, which will continue to be valid and enforceable to the fullest\n extent permitted by law.\n\n 10.8 Other Rights. Nothing contained in this Agreement shall be construed as\n conferring by implication, estoppel, or otherwise upon either party or any\n third party any license or other right except, solely as to the parties\n hereto, the rights expressly granted hereunder.\n\n 10.9 Integration; Modification. This Agreement embodies the final, complete\n and exclusive statement of the terms agreed upon by the parties with respect\n to the subject matter hereof and supersedes any prior or contemporaneous\n representations, descriptions, courses of dealing, or agreements in regard\n to such subject matter. No amendment or modification of this Agreement shall\n be valid or binding upon the parties unless stated in writing and signed by\n an authorized representative of each party.\n\n 10.10 Publicity. All publicity concerning this transaction referring to the\n other party shall require the other party's prior written approval which\n shall not be unreasonably withheld.\n\n 10.11 Relationship of the Parties. The relationship of the parties hereto is\n that of independent contractors. Neither party, nor its agents or employees,\n shall be deemed to be the agent, employee, joint venture partner, partner or\n fiduciary of the other party. Neither party shall have the right to bind the\n other party, transact any business on behalf of or in the name of the other\n party, or incur any liability for or on behalf of the other party.", + "json": "lsi-proprietary-eula.json", + "yaml": "lsi-proprietary-eula.yml", + "html": "lsi-proprietary-eula.html", + "license": "lsi-proprietary-eula.LICENSE" + }, + { + "license_key": "lucent-pl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Lucent Public License Version 1.0\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS PUBLIC LICENSE\n(\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES\nRECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n\n1. DEFINITIONS\n\n\"Contribution\" means:\n\n 1. in the case of (\"\"), the Original Program, and\n 2. in the case of each Contributor,\n 1. changes to the Program, and\n\n 2. additions to the Program; where such changes and/or additions to the\n Program originate from and are \"Contributed\" by that particular\n Contributor.\n \n A Contribution is \"Contributed\" by a Contributor only (i) if it was added\n to the Program by such Contributor itself or anyone acting on such\n Contributor's behalf, and (ii) the Contributor explicitly consents, in\n accordance with Section 3C, to characterization of the changes and/or\n additions as Contributions. Contributions do not include additions to the\n Program which: (i) are separate modules of software distributed in\n conjunction with the Program under their own license agreement, and (ii)\n are not derivative works of the Program.\n\n\"Contributor\" means and any other entity that has Contributed a\nContribution to the Program.\n\n\"Distributor\" means a Recipient that distributes the Program, modifications to\nthe Program, or any part thereof.\n\n\"Licensed Patents\" mean patent claims licensable by a Contributor which are\nnecessarily infringed by the use or sale of its Contribution alone or when\ncombined with the Program.\n\n\"Original Program\" means the original version of the software accompanying this\nAgreement as released by , including source code, object code and\ndocumentation, if any.\n\n\"Program\" means the Original Program and Contributions or any part thereof\n\n\"Recipient\" means anyone who receives the Program under this Agreement,\nincluding all Contributors.\n\n2. GRANT OF RIGHTS\n\n 1. Subject to the terms of this Agreement, each Contributor hereby grants\n Recipient a non-exclusive, worldwide, royalty-free copyright license to\n reproduce, prepare derivative works of, publicly display, publicly perform,\n distribute and sublicense the Contribution of such Contributor, if any, and\n such derivative works, in source code and object code form.\n\n 2. Subject to the terms of this Agreement, each Contributor hereby grants\n Recipient a non-exclusive, worldwide, royalty-free patent license under\n Licensed Patents to make, use, sell, offer to sell, import and otherwise\n transfer the Contribution of such Contributor, if any, in source code and\n object code form. The patent license granted by a Contributor shall also\n apply to the combination of the Contribution of that Contributor and the\n Program if, at the time the Contribution is added by the Contributor, such\n addition of the Contribution causes such combination to be covered by the\n Licensed Patents. The patent license granted by a Contributor shall not apply\n to (i) any other combinations which include the Contribution, nor to (ii)\n Contributions of other Contributors. No hardware per se is licensed\n hereunder.\n\n 3. Recipient understands that although each Contributor grants the licenses\n to its Contributions set forth herein, no assurances are provided by any\n Contributor that the Program does not infringe the patent or other\n intellectual property rights of any other entity. Each Contributor disclaims\n any liability to Recipient for claims brought by any other entity based on\n infringement of intellectual property rights or otherwise. As a condition to\n exercising the rights and licenses granted hereunder, each Recipient hereby\n assumes sole responsibility to secure any other intellectual property rights\n needed, if any. For example, if a third party patent license is required to\n allow Recipient to distribute the Program, it is Recipient's responsibility\n to acquire that license before distributing the Program.\n\n 4. Each Contributor represents that to its knowledge it has sufficient\n copyright rights in its Contribution, if any, to grant the copyright license\n set forth in this Agreement.\n\n3. REQUIREMENTS\n\nA. Distributor may choose to distribute the Program in any form under this\nAgreement or under its own license agreement, provided that:\n\n 1. it complies with the terms and conditions of this Agreement;\n\n 2. if the Program is distributed in source code or other tangible form, a\n copy of this Agreement or Distributor's own license agreement is included\n with each copy of the Program; and\n\n 3. if distributed under Distributor's own license agreement, such license\n agreement:\n \n 1. effectively disclaims on behalf of all Contributors all warranties\n and conditions, express and implied, including warranties or conditions\n of title and non-infringement, and implied warranties or conditions of\n merchantability and fitness for a particular purpose;\n\n 2. effectively excludes on behalf of all Contributors all liability for\n damages, including direct, indirect, special, incidental and\n consequential damages, such as lost profits; and\n\n 3. states that any provisions which differ from this Agreement are\n offered by that Contributor alone and not by any other party.\n\nB. Each Distributor must include the following in a conspicuous location in the\nProgram:\n\n Copyright (C) , and others. All Rights Reserved. \n\nC. In addition, each Contributor must identify itself as the originator of its\nContribution, if any, and indicate its consent to characterization of its\nadditions and/or changes as a Contribution, in a manner that reasonably allows\nsubsequent Recipients to identify the originator of the Contribution. Once\nconsent is granted, it may not thereafter be revoked.\n\n4. COMMERCIAL DISTRIBUTION \nCommercial distributors of software may accept certain responsibilities with\nrespect to end users, business partners and the like. While this license is\nintended to facilitate the commercial use of the Program, the Distributor who\nincludes the Program in a commercial product offering should do so in a manner\nwhich does not create potential liability for Contributors. Therefore, if a\nDistributor includes the Program in a commercial product offering, such\nDistributor (\"Commercial Distributor\") hereby agrees to defend and indemnify\nevery Contributor (\"Indemnified Contributor\") against any losses, damages and\ncosts (collectively \"Losses\") arising from claims, lawsuits and other legal\nactions brought by a third party against the Indemnified Contributor to the\nextent caused by the acts or omissions of such Commercial Distributor in\nconnection with its distribution of the Program in a commercial product\noffering. The obligations in this section do not apply to any claims or Losses\nrelating to any actual or alleged intellectual property infringement. In order\nto qualify, an Indemnified Contributor must: a) promptly notify the Commercial\nDistributor in writing of such claim, and b) allow the Commercial Distributor to\ncontrol, and cooperate with the Commercial Distributor in, the defense and any\nrelated settlement negotiations. The Indemnified Contributor may participate in\nany such claim at its own expense.\n\nFor example, a Distributor might include the Program in a commercial product\noffering, Product X. That Distributor is then a Commercial Distributor. If that\nCommercial Distributor then makes performance claims, or offers warranties\nrelated to Product X, those performance claims and warranties are such\nCommercial Distributor's responsibility alone. Under this section, the\nCommercial Distributor would have to defend claims against the Contributors\nrelated to those performance claims and warranties, and if a court requires any\nContributor to pay any damages as a result, the Commercial Distributor must pay\nthose damages.\n\n5. NO WARRANTY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN\n\"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR\nIMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each\nRecipient is solely responsible for determining the appropriateness of using and\ndistributing the Program and assumes all risks associated with its exercise of\nrights under this Agreement, including but not limited to the risks and costs of\nprogram errors, compliance with applicable laws, damage to or loss of data,\nprograms or equipment, and unavailability or interruption of operations.\n\n6. DISCLAIMER OF LIABILITY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY\nCONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST\nPROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS\nGRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. GENERAL\n\nIf any provision of this Agreement is invalid or unenforceable under applicable\nlaw, it shall not affect the validity or enforceability of the remainder of the\nterms of this Agreement, and without further action by the parties hereto, such\nprovision shall be reformed to the minimum extent necessary to make such\nprovision valid and enforceable.\n\nIf Recipient institutes patent litigation against a Contributor with respect to\na patent applicable to software (including a cross-claim or counterclaim in a\nlawsuit), then any patent licenses granted by that Contributor to such Recipient\nunder this Agreement shall terminate as of the date such litigation is filed. In\naddition, if Recipient institutes patent litigation against any entity\n(including a cross-claim or counterclaim in a lawsuit) alleging that the Program\nitself (excluding combinations of the Program with other software or hardware)\ninfringes such Recipient's patent(s), then such Recipient's rights granted under\nSection 2(b) shall terminate as of the date such litigation is filed.\n\nAll Recipient's rights under this Agreement shall terminate if it fails to\ncomply with any of the material terms or conditions of this Agreement and does\nnot cure such failure in a reasonable period of time after becoming aware of\nsuch noncompliance. If all Recipient's rights under this Agreement terminate,\nRecipient agrees to cease use and distribution of the Program as soon as\nreasonably practicable. However, Recipient's obligations under this Agreement\nand any licenses granted by Recipient relating to the Program shall continue and\nsurvive.\n\n may publish new versions (including revisions) of this Agreement from\ntime to time. Each new version of the Agreement will be given a distinguishing\nversion number. The Program (including Contributions) may always be distributed\nsubject to the version of the Agreement under which it was received. In\naddition, after a new version of the Agreement is published, Contributor may\nelect to distribute the Program (including its Contributions) under the new\nversion. No one other than has the right to modify this Agreement.\nExcept as expressly stated in Sections 2(a) and 2(b) above, Recipient receives\nno rights or licenses to the intellectual property of any Contributor under this\nAgreement, whether expressly, by implication, estoppel or otherwise. All rights\nin the Program not expressly granted under this Agreement are reserved.\n\nThis Agreement is governed by the laws of the State of and the\nintellectual property laws of the United States of America. No party to this\nAgreement will bring a legal action under this Agreement more than one year\nafter the cause of action arose. Each party waives its rights to a jury trial in\nany resulting litigation.", + "json": "lucent-pl-1.0.json", + "yaml": "lucent-pl-1.0.yml", + "html": "lucent-pl-1.0.html", + "license": "lucent-pl-1.0.LICENSE" + }, + { + "license_key": "lucent-pl-1.02", + "category": "Copyleft Limited", + "spdx_license_key": "LPL-1.02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Lucent Public License Version 1.02\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS PUBLIC LICENSE (\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n\n1. DEFINITIONS\n\n\"Contribution\" means:\n\n 1. in the case of ORGANIZATION (\"OWNER\"), the Original Program, and\n 2. in the case of each Contributor,\n 1. changes to the Program, and\n 2. additions to the Program; \n where such changes and/or additions to the Program were added to the Program by such Contributor itself or anyone acting on such Contributor's behalf, and the Contributor explicitly consents, in accordance with Section 3C, to characterization of the changes and/or additions as Contributions. \n\n\"Contributor\" means OWNER and any other entity that has Contributed a Contribution to the Program.\n\n\"Distributor\" means a Recipient that distributes the Program, modifications to the Program, or any part thereof.\n\n\"Licensed Patents\" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.\n\n\"Original Program\" means the original version of the software accompanying this Agreement as released by OWNER, including source code, object code and documentation, if any.\n\n\"Program\" means the Original Program and Contributions or any part thereof\n\n\"Recipient\" means anyone who receives the Program under this Agreement, including all Contributors.\n\n2. GRANT OF RIGHTS\n\n a. Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.\n b. Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. The patent license granted by a Contributor shall also apply to the combination of the Contribution of that Contributor and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license granted by a Contributor shall not apply to (i) any other combinations which include the Contribution, nor to (ii) Contributions of other Contributors. No hardware per se is licensed hereunder.\n c. Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.\n d. Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. \n\n3. REQUIREMENTS\n\nA. Distributor may choose to distribute the Program in any form under this Agreement or under its own license agreement, provided that:\n\n 1. it complies with the terms and conditions of this Agreement;\n 2. if the Program is distributed in source code or other tangible form, a copy of this Agreement or Distributor's own license agreement is included with each copy of the Program; and\n 3. if distributed under Distributor's own license agreement, such license agreement:\n 1. effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;\n 2. effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; and\n 3. states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party. \n\nB. Each Distributor must include the following in a conspicuous location in the Program:\n\n Copyright (C) YEAR, ORGANIZATION and others. All Rights Reserved. \n\nC. In addition, each Contributor must identify itself as the originator of its Contribution in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. Also, each Contributor must agree that the additions and/or changes are intended to be a Contribution. Once a Contribution is contributed, it may not thereafter be revoked.\n\n4. COMMERCIAL DISTRIBUTION\n\nCommercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Distributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for Contributors. Therefore, if a Distributor includes the Program in a commercial product offering, such Distributor (\"Commercial Distributor\") hereby agrees to defend and indemnify every Contributor (\"Indemnified Contributor\") against any losses, damages and costs (collectively \"Losses\") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Distributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Distributor in writing of such claim, and b) allow the Commercial Distributor to control, and cooperate with the Commercial Distributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.\n\nFor example, a Distributor might include the Program in a commercial product offering, Product X. That Distributor is then a Commercial Distributor. If that Commercial Distributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Distributor's responsibility alone. Under this section, the Commercial Distributor would have to defend claims against the Contributors related to those performance claims and warranties, and if a court requires any Contributor to pay any damages as a result, the Commercial Distributor must pay those damages.\n\n5. NO WARRANTY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED 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. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.\n\n6. DISCLAIMER OF LIABILITY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. EXPORT CONTROL\n\nRecipient agrees that Recipient alone is responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries).\n\n8. GENERAL\n\nIf any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\nIf Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.\n\nAll Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.\n\nLUCENT may publish new versions (including revisions) of this Agreement from time to time. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. No one other than LUCENT has the right to modify this Agreement. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.\n\nThis Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.", + "json": "lucent-pl-1.02.json", + "yaml": "lucent-pl-1.02.yml", + "html": "lucent-pl-1.02.html", + "license": "lucent-pl-1.02.LICENSE" + }, + { + "license_key": "lucre", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-lucre", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer. \n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in\n the documentation and/or other materials provided with the\n distribution.\n\n3. All advertising materials mentioning features or use of this\n software must display the following acknowledgment:\n \"This product includes software developed by Ben Laurie\n for use in the Lucre project.\"\n\n4. The name \"Lucre\" must not be used to\n endorse or promote products derived from this software without\n prior written permission.\n\n5. Redistributions of any form whatsoever must retain the following\n acknowledgment:\n \"This product includes software developed by Ben Laurie\n for use in the Lucre project.\"\n\nTHIS SOFTWARE IS PROVIDED BY BEN LAURIE ``AS IS'' AND ANY\nEXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BEN LAURIE OR\nHIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\nOF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "lucre.json", + "yaml": "lucre.yml", + "html": "lucre.html", + "license": "lucre.LICENSE" + }, + { + "license_key": "lumisoft-mail-server", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-lumisoft-mail-server", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "General usage terms:\n\n *) If you use/redistribute compiled binary, there are no restrictions.\n You can use it in any project, commercial and no-commercial.\n\n *) It's allowed to complile source code parts to your application,\n but then you may not rename class names and namespaces.\n\n *) Anything is possible, if special agreement between LumiSoft.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, \nINCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR \nPURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE \nFOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, \nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "lumisoft-mail-server.json", + "yaml": "lumisoft-mail-server.yml", + "html": "lumisoft-mail-server.html", + "license": "lumisoft-mail-server.LICENSE" + }, + { + "license_key": "luxi", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-luxi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Luxi fonts copyright (c) 2001 by Bigelow & Holmes Inc. Luxi font instruction\ncode copyright (c) 2001 by URW++ GmbH. All Rights Reserved. Luxi is a regis-\ntered trademark of Bigelow & Holmes Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof these Fonts and associated documentation files (the \"Font Software\"), to\ndeal in the Font Software, including without limitation the rights to use,\ncopy, merge, publish, distribute, sublicense, and/or sell copies of the Font\nSoftware, and to permit persons to whom the Font Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright and trademark notices and this permission notice shall be\nincluded in all copies of one or more of the Font Software.\n\nThe Font Software may not be modified, altered, or added to, and in particu-\nlar the designs of glyphs or characters in the Fonts may not be modified nor\nmay additional glyphs or characters be added to the Fonts. This License\nbecomes null and void when the Fonts or Font Software have been modified.\n\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT,\nTRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BIGELOW & HOLMES INC. OR URW++\nGMBH. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GEN-\nERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN\nACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR\nINABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFT-\nWARE.\n\nExcept as contained in this notice, the names of Bigelow & Holmes Inc. and\nURW++ GmbH. shall not be used in advertising or otherwise to promote the\nsale, use or other dealings in this Font Software without prior written\nauthorization from Bigelow & Holmes Inc. and URW++ GmbH.\n\nFor further information, contact:\n\ninfo@urwpp.de or design@bigelowandholmes.com", + "json": "luxi.json", + "yaml": "luxi.yml", + "html": "luxi.html", + "license": "luxi.LICENSE" + }, + { + "license_key": "lyubinskiy-dropdown", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-lyubinskiy-dropdown", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "YOU MAY NOT\n(1) Remove or modify this copyright notice.\n(2) Re-distribute this code or any part of it.\n Instead, you may link to the homepage of this code:\n http:www.php-development.ru/javascripts/dropdown.php\n\nYOU MAY\n(1) Use this code on your website.\n(2) Use this code as part of another product.\n\nNO WARRANTY\nThis code is provided \"as is\" without warranty of any kind.\nYou expressly acknowledge and agree that use of this code is at your own risk.", + "json": "lyubinskiy-dropdown.json", + "yaml": "lyubinskiy-dropdown.yml", + "html": "lyubinskiy-dropdown.html", + "license": "lyubinskiy-dropdown.LICENSE" + }, + { + "license_key": "lyubinskiy-popup-window", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-lyubinskiy-popup-window", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "YOU MAY NOT \n(1) Remove or modify this copyright notice. \n(2) Re-distribute this code or any part of it. \nInstead, you may link to the homepage of this code: \n http://www.php-development.ru/javascripts/popup-window.php \n\nYOU MAY \n(1) Use this code on your website. \n(2) Use this code as part of another product. \n\nNO WARRANTY \nThis code is provided \"as is\" without warranty of any kind. \nYou expressly acknowledge and agree that use of this code is at your own risk.", + "json": "lyubinskiy-popup-window.json", + "yaml": "lyubinskiy-popup-window.yml", + "html": "lyubinskiy-popup-window.html", + "license": "lyubinskiy-popup-window.LICENSE" + }, + { + "license_key": "lzma-cpl-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LZMA-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Special exception for LZMA compression module\n\nIgor Pavlov and Amir Szekely, the authors of the LZMA compression module for NSIS, \nexpressly permit you to statically or dynamically link your code (or bind by name) \nto the files from the LZMA compression module for NSIS without subjecting your linked code \nto the terms of the Common Public license version 1.0. Any modifications or additions to \nfiles from the LZMA compression module for NSIS, however, are subject to the \nterms of the Common Public License version 1.0.", + "json": "lzma-cpl-exception.json", + "yaml": "lzma-cpl-exception.yml", + "html": "lzma-cpl-exception.html", + "license": "lzma-cpl-exception.LICENSE" + }, + { + "license_key": "lzma-sdk-2006", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2006", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LZMA SDK 4.40 Copyright (c) 1999-2006 Igor Pavlov (2006-05-01)\n http://www.7-zip.org/\n\n LZMA SDK is licensed under two licenses:\n 1) GNU Lesser General Public License (GNU LGPL)\n 2) Common Public License (CPL)\n It means that you can select one of these two licenses and\n follow rules of that license.\n\n SPECIAL EXCEPTION:\n Igor Pavlov, as the author of this code, expressly permits you to\n statically or dynamically link your code (or bind by name) to the\n interfaces of this file without subjecting your linked code to the\n terms of the CPL or GNU LGPL. Any modifications or additions\n to this file, however, are subject to the LGPL or CPL terms.", + "json": "lzma-sdk-2006.json", + "yaml": "lzma-sdk-2006.yml", + "html": "lzma-sdk-2006.html", + "license": "lzma-sdk-2006.LICENSE" + }, + { + "license_key": "lzma-sdk-2006-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2006-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "SPECIAL EXCEPTION:\nIgor Pavlov, as the author of this code, expressly permits you to\nstatically or dynamically link your code (or bind by name) to the\ninterfaces of this file without subjecting your linked code to the\nterms of the CPL or GNU LGPL. Any modifications or additions\nto this file, however, are subject to the LGPL or CPL terms.", + "json": "lzma-sdk-2006-exception.json", + "yaml": "lzma-sdk-2006-exception.yml", + "html": "lzma-sdk-2006-exception.html", + "license": "lzma-sdk-2006-exception.LICENSE" + }, + { + "license_key": "lzma-sdk-2008", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2008", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LZMA SDK provides the documentation, samples, header files, libraries, \nand tools you need to develop applications that use LZMA compression.\n\nLICENSE\n-------\n\nLZMA SDK is available under any of the following licenses:\n\n1) GNU Lesser General Public License (GNU LGPL)\n2) Common Public License (CPL)\n3) Common Development and Distribution License (CDDL) Version 1.0 \n4) Simplified license for unmodified code (read SPECIAL EXCEPTION) \n\nIt means that you can select one of these options and follow rules of that license.\n\n1,2,3) GNU LGPL, CPL and CDDL licenses are classified as \n - \"Free software licenses\" at http://www.gnu.org/ \n - \"OSI-approved\" at http://www.opensource.org/\n\n4) Simplified license for unmodified code (read SPECIAL EXCEPTION) \n\nIgor Pavlov, as the author of this code, expressly permits you \nto statically or dynamically link your code (or bind by name) \nto the files from LZMA SDK. \n\nSPECIAL EXCEPTION allows you to use LZMA SDK in applications with closed code, \nwhile you keep LZMA SDK code unmodified.\n\nSPECIAL EXCEPTION #2: Igor Pavlov, as the author of this code, expressly permits \nyou to use this code under the same terms and conditions contained in the License \nAgreement you have for any previous version of LZMA SDK developed by Igor Pavlov.\n\nSPECIAL EXCEPTION #2 allows owners of proprietary licenses to use latest version \nof LZMA SDK as update for previous versions.\n\nSome files in LZMA SDK are placed in public domain.\nSome of these \"public domain\" files:\nC\\Types.h,\nC\\LzmaLib.*\nC\\LzmaLibUtil.*\nLzmaAlone.cpp, \nLzmaAlone.cs, \nLzmaAlone.java\n\nSo you can change them as you want and use \"SPECIAL EXCEPTION\" \nfor other unmodified files. For example, you can edit C\\Types.h to solve some \ncompatibility problems with your compiler.\n\n-----\n\nYou should have received a copy of the GNU Lesser General Public\nLicense along with this library; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n\nYou should have received a copy of the Common Public License\nalong with this library.\n\nYou should have received a copy of the Common Development and Distribution \nLicense Version 1.0 along with this library.", + "json": "lzma-sdk-2008.json", + "yaml": "lzma-sdk-2008.yml", + "html": "lzma-sdk-2008.html", + "license": "lzma-sdk-2008.LICENSE" + }, + { + "license_key": "lzma-sdk-9.11-to-9.20", + "category": "Public Domain", + "spdx_license_key": "LZMA-SDK-9.11-to-9.20", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LICENSE\n-------\n\nLZMA SDK is written and placed in the public domain by Igor Pavlov.\n\nSome code in LZMA is based on public domain code from another developers:\n 1) PPMd var.H (2001): Dmitry Shkarin\n 2) SHA-256: Wei Dai (Crypto++ library)", + "json": "lzma-sdk-9.11-to-9.20.json", + "yaml": "lzma-sdk-9.11-to-9.20.yml", + "html": "lzma-sdk-9.11-to-9.20.html", + "license": "lzma-sdk-9.11-to-9.20.LICENSE" + }, + { + "license_key": "lzma-sdk-9.22", + "category": "Public Domain", + "spdx_license_key": "LZMA-SDK-9.22", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LICENSE\n-------\n\nLZMA SDK is written and placed in the public domain by Igor Pavlov.\n\nSome code in LZMA SDK is based on public domain code from another developers:\n 1) PPMd var.H (2001): Dmitry Shkarin\n 2) SHA-256: Wei Dai (Crypto++ library)\n\nAnyone is free to copy, modify, publish, use, compile, sell, or distribute the\noriginal LZMA SDK code, either in source code form or as a compiled binary, for\nany purpose, commercial or non-commercial, and by any means.\n\nLZMA SDK code is compatible with open source licenses, for example, you can\ninclude it to GNU GPL or GNU LGPL code.", + "json": "lzma-sdk-9.22.json", + "yaml": "lzma-sdk-9.22.yml", + "html": "lzma-sdk-9.22.html", + "license": "lzma-sdk-9.22.LICENSE" + }, + { + "license_key": "lzma-sdk-original", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-original", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LZMA SDK provides the documentation, samples, header files, libraries, \nand tools you need to develop applications that use LZMA compression.\n\nLICENSE\n-------\n\nLZMA SDK is available under any of the following licenses:\n\n1) GNU Lesser General Public License (GNU LGPL)\n2) Common Public License (CPL)\n3) Simplified license for unmodified code (read SPECIAL EXCEPTION) \n4) Proprietary license \n\nIt means that you can select one of these four options and follow rules of that license.\n\n1,2) GNU LGPL and CPL licenses are pretty similar and both these\nlicenses are classified as \n - \"Free software licenses\" at http://www.gnu.org/ \n - \"OSI-approved\" at http://www.opensource.org/\n\n3) SPECIAL EXCEPTION\n\nIgor Pavlov, as the author of this code, expressly permits you \nto statically or dynamically link your code (or bind by name) \nto the files from LZMA SDK without subjecting your linked \ncode to the terms of the CPL or GNU LGPL. \nAny modifications or additions to files from LZMA SDK, however, \nare subject to the GNU LGPL or CPL terms.\n\nSPECIAL EXCEPTION allows you to use LZMA SDK in applications with closed code, \nwhile you keep LZMA SDK code unmodified.\n\nSPECIAL EXCEPTION #2: Igor Pavlov, as the author of this code, expressly permits \nyou to use this code under the same terms and conditions contained in the License \nAgreement you have for any previous version of LZMA SDK developed by Igor Pavlov.\n\nSPECIAL EXCEPTION #2 allows owners of proprietary licenses to use latest version \nof LZMA SDK as update for previous versions.\n\nSPECIAL EXCEPTION #3: Igor Pavlov, as the author of this code, expressly permits \nyou to use code of the following files: \nBranchTypes.h, LzmaTypes.h, LzmaTest.c, LzmaStateTest.c, LzmaAlone.cpp, \nLzmaAlone.cs, LzmaAlone.java\nas public domain code. \n\n4) Proprietary license\n\nLZMA SDK also can be available under a proprietary license which \ncan include:\n\n1) Right to modify code without subjecting modified code to the \nterms of the CPL or GNU LGPL\n2) Technical support for code\n\nTo request such proprietary license or any additional consultations,\nsend email message from that page:\nhttp://www.7-zip.org/support.html\n\nYou should have received a copy of the GNU Lesser General Public\nLicense along with this library; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n\nYou should have received a copy of the Common Public License\nalong with this library.", + "json": "lzma-sdk-original.json", + "yaml": "lzma-sdk-original.yml", + "html": "lzma-sdk-original.html", + "license": "lzma-sdk-original.LICENSE" + }, + { + "license_key": "lzma-sdk-pd", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LICENSE\n-------\n\nLZMA SDK is written and placed in the public domain by Igor Pavlov.", + "json": "lzma-sdk-pd.json", + "yaml": "lzma-sdk-pd.yml", + "html": "lzma-sdk-pd.html", + "license": "lzma-sdk-pd.LICENSE" + }, + { + "license_key": "m-plus", + "category": "Permissive", + "spdx_license_key": "mplus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-m-plus" + ], + "is_exception": false, + "is_deprecated": false, + "text": "These fonts are free software.\nUnlimited permission is granted to use, copy, and distribute them, with or\nwithout modification, either commercially or noncommercially.\nTHESE FONTS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY.", + "json": "m-plus.json", + "yaml": "m-plus.yml", + "html": "m-plus.html", + "license": "m-plus.LICENSE" + }, + { + "license_key": "madwifi-dual", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer,\n without modification.\n2. Redistributions in binary form must reproduce at minimum a disclaimer\n similar to the \"NO WARRANTY\" disclaimer below (\"Disclaimer\") and any\n redistribution must be conditioned upon including a substantially\n similar Disclaimer requirement for further binary redistribution.\n3. Neither the names of the above-listed copyright holders nor the names\n of any contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n\nAlternatively, this software may be distributed under the terms of the\nGNU General Public License (\"GPL\") version 2 as published by the Free\nSoftware Foundation.\n\nNO WARRANTY\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY\nAND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\nTHE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,\nOR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER\nIN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\nTHE POSSIBILITY OF SUCH DAMAGES.", + "json": "madwifi-dual.json", + "yaml": "madwifi-dual.yml", + "html": "madwifi-dual.html", + "license": "madwifi-dual.LICENSE" + }, + { + "license_key": "magpie-exception-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-magpie-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "MAgPIE LICENSE EXCEPTION\n Version 1.0\n\nThis MAgPIE Exception (\"Exception\") is an additional permission under\nsection 7 of the GNU Affero General Public License, version 3 (AGPL-3.0). It\napplies to a given file that bears a notice placed by the copyright holder\nof the file stating that the file is governed by AGPL-3.0 along with this\nException.\n\nGrant of Additional Permissions.\n\n1.\nIn the event that you are required by any provision of the AGPL-3.0 to\nprovide or make available the Corresponding Source of the Program as defined\nunder section 1 of the AGPL-3.0, you are exempt from this obligation to the\nextent that the definition of Corresponding Source would also cover solver\nlibraries or other components of the General Algebraic Modeling System\n(GAMS) required to run the Program.\n\n2.\nIn the event that you convey the Program and the Program is linked with\nlibraries written for the R software environment (\"R Libraries\"), you are\nnot required to license these R Libraries under the AGPL-3-0 (or a\ncompatible license), provided the R Libraries are licensed under a Free and\nOpen Source license (\"FOSS License\"). A FOSS license is a license that meets\nboth the Open Source Definition of the Open Source Initaitive and the Free\nSoftware Definition of the Free Software Foundation in its respective most\ncurrent form.", + "json": "magpie-exception-1.0.json", + "yaml": "magpie-exception-1.0.yml", + "html": "magpie-exception-1.0.html", + "license": "magpie-exception-1.0.LICENSE" + }, + { + "license_key": "make-human-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-make-human-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "MakeHuman output GPL exception\n\n==================================\n\nAs a special and limited exception, the copyright holders of the MakeHuman \nassets grants the option to use CC0 1.0 Universal as published by the Creative\nCommons,either version 1.0 of the License, or (at your option) any later version,\nas a license for the MakeHuman characters exported under the conditions that \na) The assets were bundled in an export that was made using the file export\nfunctionality inside an OFFICIAL and UNMODIFIED version of MakeHuman and/or\nb) the asset solely consists of a 2D binary image in PNG, BMP or JPG format.\n\nThe short version of CC0 is as follows:\n\nThe person who associated a work with this deed has dedicated the work to the\npublic domain by waiving all of his or her rights to the work worldwide under\ncopyright law, including all related and neighboring rights, to the extent\nallowed by law. You can copy, modify, distribute and perform the work, even\nfor commercial purposes, all without asking permission.\n\nFor an elaboration and clarification on our intention and interpretation of \nthese license terms see the License Explanation: \nhttp://www.makehuman.org/content/license_explanation.html", + "json": "make-human-exception.json", + "yaml": "make-human-exception.yml", + "html": "make-human-exception.html", + "license": "make-human-exception.LICENSE" + }, + { + "license_key": "makeindex", + "category": "Copyleft", + "spdx_license_key": "MakeIndex", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MakeIndex Distribution Notice\n\nPermission is hereby granted to make and distribute original copies of this\nprogram provided that the copyright notice and this permission notice are\npreserved and provided that the recipient is not asked to waive or limit his\nright to redistribute copies as allowed by this permission notice and provided\nthat anyone who receives an executable form of this program is granted access\nto a machine-readable form of the source code for this program at a cost not\ngreater than reasonable reproduction, shipping, and handling costs. Executable\nforms of this program distributed without the source code must be accompanied\nby a conspicuous copy of this permission notice and a statement that tells the\nrecipient how to obtain the source code.\n\nPermission is granted to distribute modified versions of all or part of this\nprogram under the conditions above with the additional requirement that the\nentire modified work must be covered by a permission notice identical to this\npermission notice. Anything distributed with and usable only in conjunction with\nsomething derived from this program, whose useful purpose is to extend or adapt\nor add capabilities to this program, is to be considered a modified version of\nthis program under the requirement above. Ports of this program to other systems\nnot supported in the distribution are also considered modified versions. All\nmodified versions should be reported back to the author.\n\nThis program is distributed with no warranty of any sort. No contributor accepts\nresponsibility for the consequences of using this program or for whether it\nserves any particular purpose.", + "json": "makeindex.json", + "yaml": "makeindex.yml", + "html": "makeindex.html", + "license": "makeindex.LICENSE" + }, + { + "license_key": "mame", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-mame", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " Redistribution and use of the MAME code or any derivative works are\n permitted provided that the following conditions are met:\n\n Redistributions may not be sold, nor may they be used in a\n commercial product or activity.\n\n Redistributions that are modified from the original source must\n include the complete source code, including the source code for all\n components used by a binary built from the modified sources.\n However, as a special exception, the source code distributed need\n not include anything that is normally distributed (in either source\n or binary form) with the major components (compiler, kernel, and so\n on) of the operating system on which the executable runs, unless\n that component itself accompanies the executable.\n\n Redistributions must reproduce the above copyright notice, this list\n of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\nIS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER\nOR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "mame.json", + "yaml": "mame.yml", + "html": "mame.html", + "license": "mame.LICENSE" + }, + { + "license_key": "manfred-klein-fonts-tos", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-manfred-klein-fonts-tos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Simple Terms of Use\nManfred\u2019s fonts are free for private and charity use. They are even free for commercial use \u2013 but if there\u2019s any profit, pls make a donation to organizations like Doctors Without Borders.\n\nThese fonts can NOT be included in any compilation CDs, disks or products, either commercial or shareware unless prior permission granted.\n\nAll typefaces were created by Manfred Klein 2001-2008.", + "json": "manfred-klein-fonts-tos.json", + "yaml": "manfred-klein-fonts-tos.yml", + "html": "manfred-klein-fonts-tos.html", + "license": "manfred-klein-fonts-tos.LICENSE" + }, + { + "license_key": "mapbox-tos-2021", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-mapbox-tos-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Terms of service\nWelcome to the future of mapping! We're glad you're here.\n\nThis website, www.mapbox.com (the \"site\"), is owned and operated by Mapbox, Inc. and our affiliates (\"Mapbox\", \"we\" or \u201cus\u201d). By using the site, services provided on the site, our proprietary software made available to you via the site, or map content we make available to you through the services (collectively, \"Services\"), you agree to be bound by the following Terms of Service, as updated from time to time (collectively, the \"Terms\"). Please read them carefully. If you don\u2019t agree to these Terms, you may not use the Services.\n\nSigning up\nIn order to use most Services, you must register for or authenticate into a Mapbox account. When you use our application program interfaces (APIs), including our SDK Registry/Downloads API, each request to an API must include one of your account's unique API keys.\nPlease carefully guard the security of your account and monitor use of your API keys. You are responsible for all use of the Services under your account, whether or not authorized, including any use of your API keys. At our discretion, we may make limited exceptions to this policy for unauthorized use of your account if you notify us of the problem promptly.\nYou must be 13 years or older to use the Services. By registering as a user or providing personal information on the site, you represent that you are at least 13 years old.\nIf you are entering into this agreement on behalf of your company or another legal entity, you represent that you have the authority to bind that entity to these Terms, in which case \"you\" will mean the entity you represent.\nIf you are a United States government user or otherwise accessing or using any Mapbox service in a U.S. government capacity, these Terms are amended as set out in our U.S. Government Terms of Service.\nOur services\nSubject to these Terms and our Service Terms, we grant you a non-exclusive, non-transferable, non-sublicensable, revocable license and right to: (i) use the Services to develop online services and online, desktop, or mobile applications; (ii) make the Services available to one or more distinct human users (i.e., natural persons) that can access any Licensed Application (\"End Users\") in connection with their use of your online services and online, desktop, or mobile applications.\u200d\nContact us if you are looking to use enterprise-only products and services or to obtain additional volume-based discounts.\nWe may choose to make available to you products and services that are in beta, being provided for internal evaluation or trial, or otherwise not generally available (\u201cEvaluation Products\u201d). By accessing such Evaluation Products, you agree to only use them for internal evaluation or testing purposes. Upon our written request, you shall immediately cease all use, and destroy all copies, of Evaluation Products, and you shall provide us with written certification of such deletion.\nStudio\nIf you use the places search function provided in the Studio dataset editor to place point features on a map, you must (1) only use such features internally, (2) not resell, sublicense or share such points with any third party, and (3) only use such points in compliance with the Geocoding API terms set forth above.\nBoundaries Evaluation\nIn the event we give you access to our administrative level polygon vector tiles (\u201cBoundaries\"), you shall:\nonly use Boundaries in conjunction with a Mapbox Map for the sole purpose of internally evaluating whether to license Boundaries from us under an enterprise agreement;\nnot (and shall not permit any third party to) trace or otherwise derive or extract content, data and/or information from Boundaries;\nnot copy, disassemble, reverse engineer (except to the limited extent such restrictions are expressly prohibited by applicable statutory law), modify or alter any part of Boundaries; and\nnot use Boundaries to test, validate or benchmark against any other product, service or dataset without our prior written consent (a \u201cPermitted Benchmarking\u201d); if there is a Permitted Benchmarking, you shall provide us with a summary of the results, which we may use free-of-charge and without restriction to improve our products and services.\nWe may terminate your access to Boundaries at any time. Upon the termination of your access to Boundaries, you shall immediately cease all use, and destroy all copies, of Boundaries. Upon our written request, you shall provide us with written certification of deletion in accordance with the immediately preceding sentence.\nEnd Users and notification\nYou may not allow your End Users or other third parties to use the Services in any way that would be a violation of these Terms if done by you, and you agree to take reasonable efforts to prevent such use. You agree to promptly notify Mapbox in writing if you become aware of any misappropriation or unauthorized use of the Services.\nDocumentation\nIn addition to the requirements above, you agree to adhere to the policies posted on this site in conjunction with the Services, including accompanying documentation. Those policies are incorporated by reference into these Terms.\nCharges and payment\nYou agree to pay all fees owed for your use of the Services (your \u201cOrder\u201d), as calculated by our records based on our publicly available pricing, currently located at www.mapbox.com/pricing. All charges are non-refundable unless expressly prohibited by applicable law. We may charge your credit card on an recurring basis for any amounts that you owe us, some of which may require advance payments.\nYou acknowledge and agree that failure to use the current version of Mapbox Software may result in potentially different (and higher) fees being charged to you, and agree to pay any such fees as calculated by us.\nLate payments may bear interest at the rate of 1.5% per month (or the highest rate permitted by law, if less) from the payment due date until paid in full. You will be responsible for all reasonable expenses (including attorneys\u2019 fees) incurred by us in collecting such delinquent amounts.\nWe are not responsible for any bank fees, interest charges, finance charges, over draft charges, or other fees resulting from charges billed by Mapbox. Currency exchange settlements will be based on agreements between you and the provider of your credit card.\nOur listed fees do not include taxes, and you agree to pay all sales/use, gross receipts, value-added, GST, personal property or other tax (including any interest and penalties) with respect to the transactions and payments under these Terms, other than taxes based on our net income, employees or real property. You agree to work with us to help us obtain any necessary withholding or royalty tax exemptions where applicable.\nNotwithstanding the foregoing, all payments made by you to us under these Terms will be made free and clear of any deduction or withholding, as may be required by law. If any such deduction or withholding (including but not limited to cross-border withholding taxes) is required on any payment, you will pay such additional amounts as are necessary so that the net amount received by us after such deduction or withholding, will be equal to the full amount that we would have received if no deduction or withholding had been required. The payment of any taxes, charges or fees required to be deducted or withheld from payments due to us, and the filing of any information or tax returns with respect thereto, shall be your responsibility. Upon your reasonable request, we will provide you with any existing tax forms in our possession that would reduce or eliminate the amount of any such withholding or deduction for taxes.\nOwnership\nYour content\nYou retain ownership of all content that you contribute to the Services via Mapbox Studio, Mapbox Studio Classic, the Dataset API, the Tileset API, and the Uploads API, excluding any content that you receive from Mapbox (\"Your Content\").\nLimited to the purpose of hosting Your Content so that we can provide the Services to you, you hereby grant Mapbox a non-exclusive, worldwide, royalty-free, fully paid-up, transferable and sublicensable right and license to (and to engage service providers to) use, copy, cache, publish, display, distribute, modify, create derivative works, and store Your Content. This right and license enables Mapbox to host and mirror your content on its distributed platform. You warrant, represent, and agree that you have the right to grant Mapbox these rights.\nOn termination of your account, Mapbox will make reasonable efforts to promptly remove from the site and cease use of Your Content; however, you recognize and agree that caching of or references to the content may not be immediately removed.\u200d\nOur content and third party content\nOther than Your Content, all content displayed on the site or accessible through the Services, including text, images, maps, software or source code, are the property of Mapbox and/or third parties and are protected by United States and international intellectual property laws. Logos and product names appearing on or in connection with the Services are proprietary to Mapbox or our licensors. You may not remove any proprietary notices or product identification labels from the Services.\nFeedback\nYou agree that we may freely exploit and make available any and all feedback, suggestions, ideas, enhancement requests, recommendations or other information you provide to us relating to the Services.\nPublicity\nWe're proud to have you as a customer. During the term of this agreement, you hereby grant us a worldwide, non-exclusive, royalty-free, fully paid-up, transferable and sublicensable license to use your trademarks, service marks, and logos for the purpose of identifying you as a Mapbox customer to promote and market our services. But if you prefer we not use your logo or name in a particular way, just let us know, and we will respect that.\nAccount cancellation or suspension\nWe don't want you to leave, but you may cancel at any time. However, we do not give pro-rated refunds for unused time if you cancel during the middle of a billing cycle.\nIf you breach any of these Terms, we may immediately without notice cancel or suspend your account and the limited license granted to you hereunder automatically terminates, without notice to you. Upon termination of the limited license, you agree to immediately destroy any materials downloaded from the Services. In addition, Mapbox may cancel or suspend your account for any reason by providing you 30 days' advance notice.\nUpon cancellation or suspension, your right to use the Services will stop immediately. You may not have access to data that you stored on the site after we cancel or suspend your account. You are responsible for backing up data that you use with the Services. If we cancel your account in its entirety without cause, we will refund to you on a pro-rata basis the amount of your payment corresponding to the portion of your service remaining right before we cancelled your account.\nChanges to services or terms\nWe may modify these Terms and other terms related to your use of the Services (like our privacy policy) from time to time, by posting the changed terms on the site. All changes will be effective immediately upon posting to the site unless they specify a later date. Changes will not apply retroactively. Please check these Terms periodically for changes - your continued use of the Services after new terms become effective constitutes your binding acceptance of the new terms.\nWe may change the features and functions of the Services, including APIs. It is your responsibility to ensure that calls or requests you make to the Services are compatible with our then-current APIs. We attempt to avoid changes to our APIs that are not backwards compatible, but such changes may occasionally be required. If that happens, we will use reasonable efforts to notify you prior to deploying the changes.\nIndemnification\nYou agree to indemnify and hold harmless Mapbox and its subsidiaries, affiliates, officers, agents, partners, and employees from any claim or demand, including reasonable attorneys' fees, arising out of:\nYour use of the Services;\nYour violation of these Terms;\nYour End Users\u2019 use of the Services in or through an application or service you provide;\nContent you or your End Users submit, post to, extracts from, or transmit through the Services.\nDisclaimers\n\u201cAs is,\" \"as available\" and \"with all faults.\" YOU EXPRESSLY AGREE THAT THE USE OF THE SERVICES IS AT YOUR SOLE RISK. THE SITE AND ITS SOFTWARE, SERVICES, MAPS, AND OTHER CONTENT, INCLUDING ANY THIRD-PARTY SOFTWARE, SERVICES, MEDIA, OR OTHER CONTENT MADE AVAILABLE IN CONJUNCTION WITH OR THROUGH THE SITE, ARE PROVIDED ON AN \"AS IS\", \"AS AVAILABLE\", \"WITH ALL FAULTS\" BASIS AND WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\nNo warranties. TO THE FULLEST EXTENT PERMISSIBLE PURSUANT TO APPLICABLE LAW, MAPBOX DISCLAIMS ALL WARRANTIES, STATUTORY, EXPRESS OR IMPLIED, INCLUDING IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT OF PROPRIETARY RIGHTS. NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED BY YOU FROM MAPBOX OR THROUGH THE SITE, WILL CREATE ANY WARRANTY NOT EXPRESSLY STATED HEREIN.\nWebsite operation. MAPBOX DOES NOT WARRANT THAT THE SERVICES, INCLUDING ANY SOFTWARE, SERVICES, MAPS, OR CONTENT OFFERED ON OR THROUGH THE SITE OR ANY THIRD PARTY SITES REFERRED TO ON OR BY THE SITE WILL BE UNINTERRUPTED, OR FREE OF ERRORS, VIRUSES, OR OTHER HARMFUL COMPONENTS AND DOES NOT WARRANT THAT ANY OF THE FOREGOING WILL BE CORRECTED.\nNon-Mapbox content. WHEN USING THE SERVICES YOU MAY BE EXPOSED TO USER SUBMISSIONS AND OTHER THIRD PARTY CONTENT (\"NON-MAPBOX CONTENT\"), AND SOME OF THIS CONTENT MAY BE INACCURATE, OFFENSIVE, INDECENT, OR OTHERWISE OBJECTIONABLE. WE DO NOT ENDORSE ANY NON-MAPBOX CONTENT. UNDER NO CIRCUMSTANCES WILL MAPBOX BE LIABLE FOR OR IN CONNECTION WITH THE NON-MAPBOX CONTENT, INCLUDING FOR ANY INACCURACIES, ERRORS, OR OMISSIONS IN ANY NON-MAPBOX CONTENT, ANY INTELLECTUAL PROPERTY INFRINGEMENT WITH REGARD TO ANY NON-MAPBOX CONTENT, OR FOR ANY LOSS OR DAMAGE OF ANY KIND INCURRED AS A RESULT OF THE USE OF ANY NON-MAPBOX CONTENT.\nAccuracy. MAPBOX DOES NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE OR THE RESULTS OF THE USE OF THE SERVICES OR ANY THIRD PARTY SITES REFERRED TO ON OR BY THE SITE IN TERMS OF CORRECTNESS, ACCURACY, RELIABILITY, OR OTHERWISE.\nDriving directions. DRIVING CAN BE DANGEROUS, AND USE OF OUR APIS IS ENTIRELY AT YOUR OWN RISK. THE INFORMATION PROVIDED BY OUR DIRECTIONS API AND OPTIMIZED TRIPS API IS NOT INTENDED TO REPLACE THE INFORMATION PRESENTED ON THE ROAD. IN THE EVENT THAT THE INFORMATION PRESENTED ON THE ROAD (FOR EXAMPLE, BY TRAFFIC LIGHTS, TRAFFIC SIGNS, OR POLICE OFFICERS) DIFFERS FROM INFORMATION PROVIDED BY THE API, DO NOT RELY ON THE API. YOU AND YOUR USERS MUST OBSERVE ALL TRAFFIC LAWS WHILE USING THE SERVICE. IF YOU USE THE DIRECTIONS API OR OPTIMIZED TRIPS API IN AN APPLICATION OR SERVICE THAT YOU PROVIDE TO END USERS, YOU MUST DISCLOSE THIS POLICY TO YOUR USERS.\nHarm to your computer. YOU UNDERSTAND AND AGREE THAT YOU USE, ACCESS, DOWNLOAD, OR OTHERWISE OBTAIN SOFTWARE, SERVICES, MAPS, OR CONTENT THROUGH THE SITE OR ANY THIRD PARTY SITES REFERRED TO ON OR BY THE SITE AT YOUR OWN DISCRETION AND RISK AND THAT YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY (INCLUDING YOUR COMPUTER SYSTEM) OR LOSS OF DATA THAT RESULTS FROM SUCH DOWNLOAD OR USE.\nJurisdiction. CERTAIN JURISDICTIONS DO NOT ALLOW LIMITATIONS ON IMPLIED WARRANTIES OR THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF YOU RESIDE IN SUCH A JURISDICTION, SOME OR ALL OF THE ABOVE DISCLAIMERS, EXCLUSIONS, OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MAY HAVE ADDITIONAL RIGHTS. THE LIMITATIONS OR EXCLUSIONS OF WARRANTIES, REMEDIES, OR LIABILITY CONTAINED IN THESE TERMS APPLY TO YOU TO THE FULLEST EXTENT SUCH LIMITATIONS OR EXCLUSIONS ARE PERMITTED UNDER THE LAWS OF THE JURISDICTION IN WHICH YOU ARE LOCATED.\nLimitation of liability\nLimitation of liability. UNDER NO CIRCUMSTANCES, AND UNDER NO LEGAL THEORY, INCLUDING NEGLIGENCE, SHALL MAPBOX OR ITS AFFILIATES, CONTRACTORS, EMPLOYEES, AGENTS, OR THIRD PARTY PARTNERS OR SUPPLIERS, BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL, CONSEQUENTIAL, OR EXEMPLARY DAMAGES (INCLUDING LOSS OF PROFITS, DATA, OR USE OR COST OF COVER) ARISING OUT OF OR RELATING TO THESE TERMS OR THAT RESULT FROM YOUR USE OR THE INABILITY TO USE THE SERVICES OR THE SITE, INCLUDING SOFTWARE, SERVICES. MAPS, CONTENT, USER SUBMISSIONS, OR ANY THIRD PARTY SITES REFERRED TO ON OR BY THE SITE, EVEN IF MAPBOX OR A MAPBOX AUTHORIZED REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\nLimitation of damages. IN NO EVENT SHALL THE TOTAL LIABILITY OF MAPBOX OR ITS AFFILIATES, CONTRACTORS, EMPLOYEES, AGENTS, OR THIRD PARTY PARTNERS, LICENSORS, OR SUPPLIERS TO YOU FOR ALL DAMAGES, LOSSES, AND CAUSES OF ACTION ARISING OUT OF OR RELATING TO THESE TERMS THE SERVICES OR YOUR USE OF THE SITE (WHETHER IN CONTRACT, TORT (INCLUDING NEGLIGENCE), WARRANTY, OR OTHERWISE) EXCEED THE GREATER OF ONE HUNDRED DOLLARS ($100 USD) OR FEES PAID OR PAYABLE TO MAPBOX IN THE TWELVE MONTHS PERIOD PRIOR TO THE DATE ON WHICH THE DAMAGE OCCURRED.\nClaim period. YOU AND MAPBOX AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF THESE TERMS OR RELATED TO MAPBOX MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\nDigital Millennium Copyright Act compliance\nIf you are a copyright owner or an agent thereof, and believe that any user submission or other Mapbox content infringes upon your copyrights, you may submit a notification pursuant to the Digital Millennium Copyright Act (\"DMCA\") by providing our copyright agent with the following information in writing (see 17 U.S.C \u00a7 512(c)(3) for further detail):\nA physical or electronic signature of a person authorized to act on behalf of the owner of an exclusive right that is allegedly infringed;Identification of the copyrighted work claimed to have been infringed, or, if multiple copyrighted works on Mapbox are covered by a single notification, a representative list of such works from Mapbox;\nIdentification of the material that is claimed to be infringing or to be the subject of infringing activity and that is to be removed or access to which is to be disabled, and information reasonably sufficient to permit Mapbox to locate the material;\nInformation reasonably sufficient to permit Mapbox to contact the complaining party, such as an address, telephone number, and, if available, an electronic mail address;\nA statement that the complaining party has a good faith belief that use of the material in the manner complained of is not authorized by the copyright owner, its agent, or the law; and\nA statement that the information in the notification is accurate, and under penalty of perjury, that the complaining party is authorized to act on behalf of the owner of an exclusive right that is allegedly infringed.\nPlease email your notification to the Legal Department at copyright@mapbox.com\nAdditional terms\nYou agree to keep the contact information associated with your Mapbox account current and complete.\nYou may not encourage others to violate these Terms, including by selling products or services that would violate these Terms if the products or services are used in their intended manner.\nYou may not take any action that improperly decreases the fees that you owe us (e.g., create multiple accounts for the purpose of not exceeding the monthly free usage credits). In the event that we discover any such misuse, you agree that we may (in addition to all other remedies) charge you for all fees that you should have paid if you had not improperly used our Services.\nUpon written notice to you, we may (or may appoint appoint a nationally recognized certified public accountant or independent auditor to) audit your use of the Services and Mapbox Software to ensure it is in compliance with these Terms. Any audit will be conducted during regular business hours, no more than once per 12-month period and upon at least 30 days\u2019 prior written notice (except where we have reasonable belief that a violation of these Terms has occurred or is occurring), and will not unreasonably interfere with your business activities. You will provide us with reasonable access to the relevant records and facilities.\nYou shall not assign these Terms or any right, interest or benefit hereunder without the prior written consent of Mapbox, which may be withheld for any reason or no reason at all. Mapbox may assign (i) these Terms to an affiliate, (ii) these Terms or any right, interest or benefit hereunder to a third party in connection with a collection proceeding against you, and (iii) these Terms in their entirety to its successor in interest pursuant to a merger, acquisition, corporate reorganization, or sale of all or substantially all of that party\u2019s business or assets to which these Terms relate. These Terms shall benefit Mapbox and its successors and assignees.\nThese Terms are governed by and construed in accordance with the laws of California, without giving effect to any principles of conflicts of law. Any action arising out of or relating to these Terms must be filed in the state or federal courts for San Francisco County, California, USA, and you hereby consent and submit to the exclusive personal jurisdiction and venue of these courts for the purposes of litigating any such action.\nA provision of these Terms may be waived only by a written instrument executed by the party entitled to the benefit of such provision. The failure of Mapbox to exercise or enforce any right or provision of these Terms will not constitute a waiver of such right or provision. Mapbox reserves all rights not expressly granted to you.\nIf any provision of these Terms is held to be unlawful, void, or for any reason unenforceable, then that provision shall be deemed severable from these Terms and shall not affect the validity and enforceability of any remaining provisions. Headings are for convenience only and have no legal or contractual effect.\nYou agree that no joint venture, partnership, employment, or agency relationship exists between you and Mapbox as a result of these Terms or your use of the Services. You further acknowledge no confidential, fiduciary, contractually implied, or other relationship is created between you and Mapbox other than pursuant to these Terms.", + "json": "mapbox-tos-2021.json", + "yaml": "mapbox-tos-2021.yml", + "html": "mapbox-tos-2021.html", + "license": "mapbox-tos-2021.LICENSE" + }, + { + "license_key": "markus-kuhn-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-markus-kuhn-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software\nfor any purpose and without fee is hereby granted. The author\ndisclaims all warranties with regard to this software.", + "json": "markus-kuhn-license.json", + "yaml": "markus-kuhn-license.yml", + "html": "markus-kuhn-license.html", + "license": "markus-kuhn-license.LICENSE" + }, + { + "license_key": "martin-birgmeier", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-martin-birgmeier", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You may redistribute unmodified or modified versions of this source\ncode provided that the above copyright notice and this and the\nfollowing conditions are retained.\n\nThis software is provided ``as is'', and comes with no warranties\nof any kind. I shall in no event be liable for anything that happens\nto anyone/anything when using this software.", + "json": "martin-birgmeier.json", + "yaml": "martin-birgmeier.yml", + "html": "martin-birgmeier.html", + "license": "martin-birgmeier.LICENSE" + }, + { + "license_key": "marvell-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-marvell-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution. Redistribution and use in binary form, without \nmodification, are permitted provided that the following conditions are \nmet:\n\n* Redistributions must reproduce the above copyright notice and the \n following disclaimer in the documentation and/or other materials \n provided with the distribution.\n* Neither the name of Marvell Corporation nor the names of its suppliers \n may be used to endorse or promote products derived from this software \n without specific prior written permission.\n* No reverse engineering, decompilation, or disassembly of this software \n is permitted.\n* You may not use or attempt to use this software in conjunction with\n any product that is offered by a third party as a replacement,\n substitute or alternative to a Marvell Product where a Marvell Product\n is defined as a proprietary wireless LAN embedded client solution of\n Marvell or a Marvell Affiliate.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND \nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, \nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE \nCOPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, \nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS \nOF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND \nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR \nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE \nUSE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH \nDAMAGE.", + "json": "marvell-firmware.json", + "yaml": "marvell-firmware.yml", + "html": "marvell-firmware.html", + "license": "marvell-firmware.LICENSE" + }, + { + "license_key": "marvell-firmware-2019", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-marvell-firmware-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in binary form is permitted provided that the following\nconditions are met:\n\n1. Redistributions must reproduce the above copyright notice, this list of\nconditions and the following disclaimer in the documentation and/or other\nmaterials provided with the distribution.\n\n2. Redistribution and use shall be used only with Marvell silicon products.\nAny other use, reproduction, modification, translation, or compilation of the\nSoftware is prohibited.\n\n3. No reverse engineering, decompilation, or disassembly is permitted.\n\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THIS SOFTWARE IS PROVIDED\n\u201cAS IS\u201d WITHOUT WARRANTY OF ANY KIND, INCLUDING, WITHOUT LIMITATION, ANY EXPRESS\nOR IMPLIED WARRANTIES OF MERCHANTABILITY, ACCURACY, FITNESS OR SUFFICIENCY FOR A\nPARTICULAR PURPOSE, SATISFACTORY QUALITY, CORRESPONDENCE WITH DESCRIPTION, QUIET\nENJOYMENT OR NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY RIGHTS.\nMARVELL, ITS AFFILIATES AND THEIR SUPPLIERS DISCLAIM ANY WARRANTY THAT THE\nDELIVERABLES WILL OPERATE WITHOUT INTERRUPTION OR BE ERROR-FREE.", + "json": "marvell-firmware-2019.json", + "yaml": "marvell-firmware-2019.yml", + "html": "marvell-firmware-2019.html", + "license": "marvell-firmware-2019.LICENSE" + }, + { + "license_key": "matt-gallagher-attribution", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-matt-gallagher-attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is given to use this source code file, free of charge, in any\nproject, commercial or otherwise, entirely at your risk, with the condition\nthat any redistribution (in part or whole) of source code must retain\nthis copyright and permission notice. Attribution in compiled projects is\nappreciated but not required.", + "json": "matt-gallagher-attribution.json", + "yaml": "matt-gallagher-attribution.yml", + "html": "matt-gallagher-attribution.html", + "license": "matt-gallagher-attribution.LICENSE" + }, + { + "license_key": "matthew-kwan", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-matthew-kwan", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software may be modified, redistributed, and used for any purpose,\nso long as its origin is acknowledged.", + "json": "matthew-kwan.json", + "yaml": "matthew-kwan.yml", + "html": "matthew-kwan.html", + "license": "matthew-kwan.LICENSE" + }, + { + "license_key": "matthew-welch-font-license", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-matthew-welch-font-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "All my fonts are free. You can use them for most personal or business uses you'd like, and I ask for no money. I would, however, like to hear from you. If you use my fonts for something please send me a postcard or e-mail letting me know how you used them. Send me a copy if you can or let me know where I can find your work.\n\nYou may use these fonts for graphical or printed work, but you may not sell them or include them in a collection of fonts (on CD or otherwise) being sold. You can redistribute these fonts as long as you charge nothing to receive them.\n\nIf you use any of these fonts for commercial purposes please credit me in at least some little way.", + "json": "matthew-welch-font-license.json", + "yaml": "matthew-welch-font-license.yml", + "html": "matthew-welch-font-license.html", + "license": "matthew-welch-font-license.LICENSE" + }, + { + "license_key": "mattkruse", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mattkruse", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "NOTICE: You may use this code for any purpose, commercial or private, without any further permission from the author. You may remove this notice from your final code if you wish, however it is appreciated by the author if at least my web site address is kept.\n\nYou may *NOT* re-distribute this code in any way except through its use. That means, you can include it in your product, or your web site, or any other form where the code is actually being used. You may not put the plain javascript up on your site for download or include it in your javascript libraries for download.\nIf you wish to share this code with others, please just point them to the URL instead.\nPlease DO NOT link directly to my .js files from your site. Copy the files to your server and use them there. Thank you.", + "json": "mattkruse.json", + "yaml": "mattkruse.yml", + "html": "mattkruse.html", + "license": "mattkruse.LICENSE" + }, + { + "license_key": "maxmind-geolite2-eula-2019", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-maxmind-geolite2-eula-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "GeoLite2 End User License Agreement\nRevised on December 20, 2019 \n\nBy downloading or using our GeoLite2 Database, you are accepting and agreeing to the terms and conditions set forth in this GeoLite2 End User License Agreement (this \"Agreement\").\n\nMaxMind, Inc. (\"MaxMind\"), a Delaware Corporation, offers a line of free databases that provide geographic information and other data associated with specific Internet protocol addresses (each a \"GeoLite2 Database\" and collectively the \"GeoLite2 Databases\"). The data available through the GeoLite2 Databases is referred to in this Agreement as the \"GeoLite2 Data\". The term \u201cServices\u201d as used in this Agreement means the Geolite2 Databases and the GeoLite2 Data available at GeoLite2 Free Downloadable Databases on the MaxMind website, www.maxmind.com (the \"Website\").\n\nADDITIONAL POLICIES, TERMS AND CONDITIONS.\n\nThe following policies are incorporated into this Agreement by reference and provide additional terms and conditions incorporated herein by this reference and/or related to the use of the Website:\n\nCreative Commons Corporation Attribution-ShareAlike 4.0 International License (the \u201cCreative Commons License\u201d)\nMaxMind Data Processing Addendum (\u201cDPA\u201d)\nMaxMind Privacy Policy (\u201cPP\u201d)\nMaxMind Website Terms of Use (\u201cWT\u201d)\nThis Agreement controls in the event of any conflict with the above-referenced documents. Thereafter, for any conflicts among the above 4 documents, the priority and precedence of interpretation is DPA, PP, WT and Creative Commons License.\n\nOTHER DATABASES AND PRODUCTS.\n\nThis Agreement does not apply to your use of any databases or products offered by MaxMind other than the Services. If you use other MaxMind databases or products, additional or other terms and conditions shall apply to your use of such databases and products, and you agree to pay all applicable charges.\n\nLIMITED GRANT OF RIGHTS.\n\nSubject to the terms and conditions of this Agreement, to the extent the Services contain any copyrightable elements those copyrightable elements are governed by the Creative Commons License. You must provide attribution of your use to MaxMind (an example of attribution: \u201cThis product includes GeoLite2 data created by MaxMind, available from https://www.maxmind.com\u201c).\n\nIn addition and if you are using the Services for internal use, subject to the terms and conditions of this Agreement, MaxMind also hereby grants you a non-exclusive, non-transferable limited license to access and use the Services for your own internal business purposes.\n\nWith respect to either or both of the above licenses, (i) you agree to use the Services only in a manner that is consistent with applicable laws and (ii) you may not remove or obscure any copyright notice or other notice or terms of use contained in the Services.\n\nNO USE OF GEOLITE2 DATA FOR FCRA PURPOSES.\n\nThe parties understand and agree that MaxMind is not a consumer reporting agency as defined by the Fair Credit Reporting Act, 15 U.S.C. \u00a71681 et seq. (\"FCRA\"), and that the Services do not constitute \"consumer reports\" as defined in the FCRA. You agree that you will not use the Services to determine any consumer's eligibility for any product or service to be used by a consumer for personal, family, or household purposes. You also agree that you will not use the Services (i) as a factor in establishing a consumer's eligibility for credit, (ii) as a factor in establishing a consumer's eligibility for insurance, (iii) for employment purposes, (iv) in connection with a determination of an individual's eligibility for a license or other benefit granted by a governmental authority, or (v) in connection with any permissible purpose as defined by the FCRA.\n\nACCURACY EXPECTATION: NO USE OF GEOLITE2 DATA FOR IDENTIFYING SPECIFIC HOUSEHOLDS OR INDIVIDUALS. \n\nDue to the nature of geolocation technology and other factors beyond its control, MaxMind cannot and does not guarantee the accuracy of the GeoLite2 Data. The GeoLite2 Databases contain only the geographic data available and the availability of such data is not consistent for all regions. Furthermore, none of the GeoLite2 Data reliably identifies any geographic level or division more precise than the zip code or postal code associated with an IP address. Accordingly, it is imperative that you and your end users not rely on the GeoLite2 Data to identify a specific household, individual, or street address. You acknowledge the foregoing limitation of the GeoLite2 Data and agree represent and warrant that you will not use or encourage others to use the GeoLite2 Data for the purpose of identifying or locating a specific household, individual, or street address.\n\nADDITIONAL RESTRICTIONS.\n\nDisclosure of Services. Except as explicitly permitted by the Creative Commons License, you will not disclose the Services to any third party or after notifying MaxMind of the anticipated disclosure and obtaining MaxMind\u2019s prior written consent to the disclosure. To the extent you disclose the Services to a third party as permitted by this Agreement, you will impose upon the third party the same or substantially similar contractual duties imposed on you and the rights provided to MaxMind as in this Agreement, including those in LIMITED GRANT OF RIGHTS, ADDITIONAL RESTRICTIONS, and DATA PROCESSING and, where not inconsistent with the other terms of this Agreement, as in the Creative Commons License. You are responsible for the acts or omissions of any third parties with which you share the Services.\nSecurity of the Services. You will maintain reasonable and appropriate technical and organizational measures for the protection of the security, confidentiality, and integrity of the Services (including protection against unauthorized or unlawful processing and against accidental or unlawful destruction, loss, or alteration or damage, unauthorized disclosure of, or access to, such data). In the event you discover a data incident involving the Services, you shall promptly notify MaxMind and fully cooperate with MaxMind, at your own expense, in remediating the incident.\nDestructions of GeoLite2 Database and GeoLite2 Data. From time to time, MaxMind will release an updated version of the GeoLite2 Databases, and you agree to promptly use the updated version of the GeoLite2 Databases. You shall cease use of and destroy (i) any old versions of the Services within thirty (30) days following the release of the updated GeoLite2 Databases; and (ii) all Services immediately upon termination of the license under this Agreement. Upon request, you shall provide MaxMind with written confirmation of such destruction.\nProvision of Data to MaxMind. The Services provided by MaxMind under this Agreement do not require MaxMind to process Personal Information on behalf of Licensee. Licensee shall not provide any Personal Information to MaxMind nor cause MaxMind to process any Personal Information on its behalf.\n\nINDEMNIFICATION.\n\nYou will indemnify and hold MaxMind and its affiliates harmless from and against any and all claims, causes of action, liabilities, penalties, costs or expenses (including reasonable attorney\u2019s fees) incurred by MaxMind or any affiliate thereof as a result of your breach of any of the terms of this Agreement.\n\nFEES.\n\nThe Services are made available to you free of charge. MaxMind reserves the right to stop offering the Services free of charge at any time, and charge for future updates to the Services.\n\nCHANGES TO THE AGREEMENT/TERMINATION.\n\n(a) MaxMind may amend this Agreement at any time. Any such amendment(s) shall be binding and effective upon the earlier of (i) the date that is thirty (30) days after the posting of the amended Agreement on the Website or (ii) the date that MaxMind provides notice to you of the amended Agreement. You may immediately terminate this Agreement upon written notice to MaxMind if a change is unacceptable to you. Your continued use of the Services following notice to you of a change shall constitute your acceptance of the change.\n\n(b) This Agreement shall terminate immediately if, within the reasonable judgment of MaxMind, you materially breach any material term or condition of this Agreement and fail to remedy the breach within ten (10) days of receipt of written notice thereof stating MaxMind's intent to terminate upon non-cure of the breach. Your failure to comply with the Restrictions on Use is a breach of a material term of this Agreement.\n\nNO CONSEQUENTIAL DAMAGES/LIMITATION ON LIABILITY.\n\nUnder no circumstances, including negligence, shall MaxMind or any related party or supplier be liable for indirect, incidental, special, consequential, or punitive damages, or for loss of profits, revenue, or data, that are directly or indirectly related to the use of or the inability to access and use the Services, whether in an action in contract, tort, product liability, strict liability, statute, or otherwise, even if MaxMind has been advised of the possibility of those damages. The total liability of MaxMind, in connection with a loss or damages arising hereunder (an \"Occurrence\") is limited to the greater of $100 or the lowest amount permitted by applicable law.\n\nNO WARRANTIES/AVAILABILITY.\n\nMaxMind furnishes the Services on an as-is, as-available basis. MaxMind makes no warranty, express or implied, with respect to their capability, accuracy, or completeness. All warranties of any type, express or implied, including the warranties of merchantability, fitness for a particular purpose, and non-infringement of third party rights are expressly disclaimed. Furthermore, since the availability of Services offered through the Website is dependent upon many factors beyond MaxMind's control, MaxMind does not guarantee uninterrupted availability of any such Services. Any such Services may be inoperative and/or unavailable due to technical difficulties or for maintenance purposes, at any time and without notice. While MaxMind does not warrant that the MaxMind Website is free of harmful components, MaxMind shall make commercially reasonable efforts to maintain the Website free of viruses and malicious code.\n\nGOVERNING LAW.\n\nThis Agreement shall be governed and interpreted pursuant to the laws of the Commonwealth of Massachusetts, applicable to contracts made and to be performed wholly in Massachusetts, without regard to principles of conflicts of laws. You specifically consent to personal jurisdiction in Massachusetts in connection with any dispute between you and MaxMind arising out of this Agreement. You agree that the exclusive venue for any dispute hereunder shall be in the state and federal courts in Boston, Massachusetts. This Agreement shall be construed and interpreted in English, and any translation hereof to a language other than English shall be for convenience only.\n\nNOTICES.\n\nNotices given under this Agreement shall be in writing and sent by facsimile, email, or by first class mail or equivalent. MaxMind shall direct notice to you at the email address or physical mailing address you provided in the registration process. You shall direct notice to MaxMind at the following address:\n\nMaxMind, Inc.\n14 Spring Street, Suite 3\nWaltham, MA 02451\nU.S.A.\nEmail: legal@maxmind.com\n\nEither party may change its notice contact information at any time by giving notice of the new contact information as provided in this section.\n\nCOMPLETE AGREEMENT.\n\nThis Agreement (which includes the policies, terms and conditions referenced above and incorporated herein) represents the entire agreement between you and MaxMind with respect to the subject matter hereof and supersedes all previous representations, understandings, or agreements, oral and written, between the parties regarding the subject matter hereof. The headings contained in this Agreement are for convenience only and shall not govern its interpretation.\n\nASSIGNMENT.\n\nYou may not assign this Agreement without MaxMind's prior written consent. MaxMind may assign its rights and obligations under this Agreement without your consent.\n\nSEVERABILITY.\n\nShould any provision of this Agreement be held void, invalid, or inoperative, such decision shall not affect any other provision hereof, and the remainder of this Agreement shall be effective as though such void, invalid, or inoperative provision had not been contained herein.\n\nCOMPLIANCE WITH LAW.\n\nNotwithstanding any provisions of this Agreement to the contrary, you shall in performance of this Agreement comply with all applicable laws, executive orders, regulations ordinances and rules of all governments (\u201cApplicable Laws\u201d), including all applicable export and re-export control laws and regulations, such as the Export Administration Regulations (\u201cEAR\u201d) maintained by the USA Department of Commerce, trade and economic sanctions maintained by the USA Treasury Department\u2019s Office of Foreign Assets Control, and the International Traffic in Arms Regulations (\u201cITAR\u201d) maintained by the USA Department of State. Specifically, and without limitation, you agree that you shall not, directly or indirectly, sell, export, re-export, transfer, divert, or otherwise dispose of any Services (including products derived from or based on such Services) to any destination, entity, or person prohibited by the laws or regulations of the USA, without obtaining prior authorization from the competent government authorities as required by those laws and regulations.", + "json": "maxmind-geolite2-eula-2019.json", + "yaml": "maxmind-geolite2-eula-2019.yml", + "html": "maxmind-geolite2-eula-2019.html", + "license": "maxmind-geolite2-eula-2019.LICENSE" + }, + { + "license_key": "maxmind-odl", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-maxmind-odl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OPEN DATA LICENSE\n\nAll advertising materials and documentation mentioning features or use of\nthis database must display the following acknowledgment:\n\"This product includes GeoLite data created by MaxMind, available from\nhttp://maxmind.com/\"\n\nRedistribution and use with or without modification, are permitted provided\nthat the following conditions are met:\n1. Redistributions must retain the above copyright notice, this list of\nconditions and the following disclaimer in the documentation and/or other\nmaterials provided with the distribution. \n2. All advertising materials and documentation mentioning features or use of\nthis database must display the following acknowledgement:\n\"This product includes GeoLite data created by MaxMind, available from\nhttp://maxmind.com/\"\n3. \"MaxMind\" may not be used to endorse or promote products derived from this\ndatabase without specific prior written permission.\n\nTHIS DATABASE IS PROVIDED BY MAXMIND, INC ``AS IS'' AND ANY \nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED \nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE \nDISCLAIMED. IN NO EVENT SHALL MAXMIND BE LIABLE FOR ANY \nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; \nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT \n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS \nDATABASE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "maxmind-odl.json", + "yaml": "maxmind-odl.yml", + "html": "maxmind-odl.html", + "license": "maxmind-odl.LICENSE" + }, + { + "license_key": "mcafee-tou", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mcafee-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "McAfee Software royalty-Free License\n\nDefinitions.\n\n\"Software\" means (a) all computer code (whether in binary or source format), programs, and related documentation in any tangible or intangible medium, and all related documentation, that are owned by McAfee and with which this Royalty-Free License is provided or referenced, whether such materials are provided directly by McAfee or by its distributors, resellers, OEM/MSP partners, or other business partners, and (b) all upgrades, modifications, subsequent versions and updates of the Software. For avoidance of doubt, updates include any DAT file (virus signature) updates provided by McAfee.\n\n \"Computer\" means a device that accepts information in digital or similar form and manipulates it for a specific result based upon a sequence of instructions.\n\nLicense Grant. Subject to the Restrictions below, McAfee hereby grants to You a royalty-free, non-exclusive, non-transferable right under its copyrights to download, install, run, operate and display the Software on computers and computer systems within your internal environment.\n\nLicense Restrictions\n\nNo Implied Subscription License \u2013 The Software provided hereunder is designed to operate as an independent, stand-alone process, buy may interact with other McAfee software products that are licensed to You under a subscription model. The License Grant herein does not extend, expand, supersede or otherwise grant You rights which are not specifically granted to You in Your subscription licenses for other McAfee software products.\n\nThird party materials: The Software may include third party materials (e.g. computer code, documentation, etc.) that are subject to an open source licensing model. Your rights to these third party materials may be subject terms and conditions that grant You additional or different rights and restrictions than your rights and restrictions to the Software.\n\nNo reverse engineering, or other modifications: You may not reverse engineer, decompile, or disassemble or attempt to discover the source code of the Software provided in binary form, except to the extent the foregoing restriction is expressly prohibited by applicable law or as expressly permitted in the Software documentation. You may not modify or create derivative works of the Software in whole or in part, except as expressly permitted in the Software documentation. You may not remove or alter any proprietary notices or labels on the Software.\n\nNo transfer or assignment: Except as specifically permitted within this Royalty-Free License, You may not sell, lease, license, rent, loan, resell, assign or otherwise transfer, with or without consideration, your rights to the Software.\n\nOwnership. The Software is protected by United States\u2019 and other copyright laws, international treaty provisions and other applicable laws in the country in which it is being used. McAfee and its suppliers own and retain all right, title and interest in and to the Software, including all copyrights, patents, trade secret rights, trademarks and other intellectual property rights therein. Your possession, installation, or use of the Software does not transfer to You any title to the intellectual property in the Software, or affect such title, and You will not acquire any ownership of or rights to the Software except as expressly set forth in this Agreement. Any copy of the Software and Documentation authorized to be made hereunder must contain the same proprietary notices that appear on and in the Software and Documentation. All rights not expressly set forth hereunder are reserved by McAfee.\n\nThird party IT system management. If You employ or contract a third party to manage or operate your computer or information technology resources (a \"Managing Party), You may authorize the Managing Party to exercise your license rights under this Royalty-Free License as Your agent, provided that the Managing Party does not violate any of the License Restrictions and that You will be liable for all damages and legal remedies available to McAfee in the event of a breach of this License by your Managing Party.\n\nWarranty and Disclaimer. THE SOFTWARE IS PROVIDED \"AS IS\" WITH NO WARRANTY WHATSOEVER, EXPRESS OR IMPLIED, INCLUDING THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE. You assume responsibility for selecting the Software to achieve your intended results, and for the installation of, use of, and results obtained from the Software. Without limiting the foregoing provisions, McAfee makes no warranty that the software will be error-free or free from interruptions or other failures or that the software will meet your requirements.\n\nNO LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT, CONTRACT, OR OTHERWISE, WILL MCAFEE OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY DAMAGES OF ANY KIND, WHETHER SUCH DAMAGES ARE CATEGORIZED AS DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS OR GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR FOR ANY OTHER DAMAGE OR LOSS.\n\nINDEMNIFICATION. You agree to indemnify and hold McAfee and its subsidiaries, affiliates, officers, agents, and employees harmless from any claim or demand, including attorney's fees, made by any third party due to or arising out of Your use of the Software in breach of this Agreement, or in violation of the rights of a third party.\n\nNotice to United States Government End Users. The Software and accompanying Documentation are deemed to be \"commercial computer software\" and \"commercial computer software documentation,\" respectively, pursuant to DFAR Section 227.7202 and FAR Section 12.212, as applicable. Any use, modification, reproduction, release, performance, display or disclosure of the Software and accompanying Documentation by the United States Government shall be governed solely by the terms of this Agreement and shall be prohibited except to the extent expressly permitted by the terms of this Agreement.\n\nExport Controls. You acknowledge that the Software is subject to the export control laws and regulations of the United State of America (\"US\"), and any amendments thereof. You shall not export or re-export the Software, directly or indirectly, to (i) any countries that are subject to US export restrictions (currently including, but not necessarily limited to, Cuba, Iran, North Korea, Sudan, and Syria); (ii) any end user known, or having reason to be known, will utilize them in the design, development or production of nuclear, chemical or biological weapons; or (iii) any end user who has been prohibited from participating in the US export transactions by any federal agency of the US government. You further acknowledge that Software may include technical data subject to export and re-export restrictions imposed by US law.\n\nHigh Risk Activities. The Software is not fault-tolerant and is not designed or intended for use in hazardous environments requiring fail-safe performance, including without limitation, in the operation of nuclear facilities, aircraft navigation or communication systems, air traffic control, weapons systems, direct life-support machines, or any other application in which the failure of the Software could lead directly to death, personal injury, or severe physical or property damage (collectively, \"High Risk Activities\"). McAfee expressly disclaims any express or implied warranty of fitness for High Risk Activities.\n\nGoverning Law. This Agreement will be governed by and construed in accordance with the substantive laws of the State of California.\n\nMiscellaneous. This Agreement, including all documents incorporated by reference, represents the entire agreement between the parties, and expressly supersedes and cancels any other communication, representation or advertising whether oral or written, on the subjects herein. This Agreement may not be modified except by a written addendum issued by a duly authorized representative of McAfee. No provision hereof shall be deemed waived unless such waiver shall be in writing and signed by McAfee. If any provision of this Agreement is held invalid, the remainder of this Agreement shall continue in full force and effect.", + "json": "mcafee-tou.json", + "yaml": "mcafee-tou.yml", + "html": "mcafee-tou.html", + "license": "mcafee-tou.LICENSE" + }, + { + "license_key": "mcrae-pl-4-r53", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mcrae-pl-4-r53", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Preamble\n\t--------\n\tYour GRAN.\n\n\n\tMCRAE GENERAL PUBLIC LICENSE (version 4.r53)\n\t--------------------------------------------\n\tThis license applies to any work containing a notice placed by the\n\tcopyright holder (that would be ME) saying it is uses the McRae\n\tGeneral Public License. \"The work\" refers to any such work.\n\n\tThis license stipulates that it is strictly forbidden to redistribute\n\tor use the work in any manner that could possibly be construed as\n\tmaking anybody any money, or I'll sue you. No! You will NOT do that!\n\tOkee? And if you don't agree with these terms, you can print out the\n\tsource to the work and stick it up your ARSE.\n\n\tAye, but otherwise feel free to take \"the work\" and do what you like.\n\tIf you're TOO BLOODY LAZY to do it yourself, I cannae help it. OK?", + "json": "mcrae-pl-4-r53.json", + "yaml": "mcrae-pl-4-r53.yml", + "html": "mcrae-pl-4-r53.html", + "license": "mcrae-pl-4-r53.LICENSE" + }, + { + "license_key": "mediainfo-lib", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mediainfo-lib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MediaInfo(Lib) License\n\nVersion 1.1, 3 January 2010\n\nCopyright 2002-2010 MediaArea.net SARL. All rights reserved.\n\nRedistribution and use in source and binary forms, without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions 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.\n\nRedistribution and use in source and binary forms, with modification, are permitted provided that the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version is met. Dynamic or static linking to this software are not deemed a modification.\n\nTHIS SOFTWARE IS PROVIDED BY MEDIAAREA.NET SARL ``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 MEDIAAREA.NET 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.", + "json": "mediainfo-lib.json", + "yaml": "mediainfo-lib.yml", + "html": "mediainfo-lib.html", + "license": "mediainfo-lib.LICENSE" + }, + { + "license_key": "melange", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-melange", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MELANGE CHAT SERVER/CLIENT PUBLIC LICENSE\nVersion 1.1, 21 October 1998\n\t\nCopyright (C) 1998,1999 by Christian Walter, chris@terminal.at\nhttp://www.terminal.at/melange\n\t\t \n1. This software may be freely copied, modified and redistributed without\nfee for NON-COMMERCIAL (for commercial use see below) purposes provided that\nthis copyright notice and my name are preserved intact on all copies and\nmodified copies, so I get my credit for the work I put into this.\nFeel free to run this, modify it, debug it, send me comments, insults etc.\n\t \n2. There is no warranty or other guarantee of fitness of this software.\nIt is provided solely \"as is\". The author disclaims all\nresponsibility and liability with respect to this software's usage\nor its effect upon hardware or computer systems.\n\t\n3. This software is free of charge for non-commercial & commerical USE.\nNo money, donations, etc are required. If you want to sell this software,\nno matter if it's sold \"as is\" or modified, a licensing agreement is\nrequired. You may send enquiries to: chris@terminal.at\nWhat does that mean: If you use this software e.g on a commercial or\nnon-commercial website, you don't need a license - Only if you make\nmoney with this software or with parts or modified parts of this software\nyou have to get a licensing agreement.\n\n4. Have fun with it, and feel free to contact me if you have any problems\nnot covered by the documentation or if you find a bug.\nIf you want to modify this software, why not choin the DEVELOPER-FORUM ?\nDetails at the MELANGE homepage: http://www.terminal.at/melange\n\nChris\n\nVienna, October 1998\n\t\n\t \n\t\n NO WARRANTY\n\t\n\tBECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\n\tFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\n\tOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\n\tPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\n\tOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n\tMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\n\tTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\n\tPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\n\tREPAIR OR CORRECTION.\n\t\n\tIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\n\tWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\n\tREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\n\tINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\n\tOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\n\tTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\n\tYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\n\tPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\n\tPOSSIBILITY OF SUCH DAMAGES.", + "json": "melange.json", + "yaml": "melange.yml", + "html": "melange.html", + "license": "melange.LICENSE" + }, + { + "license_key": "mentalis", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n- Redistributions of source code must retain the above copyright notice,\nthis list of conditions and the following disclaimer.\n\n- Neither the name of the copyright owner, nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\nIS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER\nOR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "mentalis.json", + "yaml": "mentalis.yml", + "html": "mentalis.html", + "license": "mentalis.LICENSE" + }, + { + "license_key": "merit-network-derivative", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-merit-network-derivative", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, and modify this software and its documentation \nfor any purpose and without fee is hereby granted, provided: \n\n1) that the above copyright notice and this permission notice appear in all\n copies of the software and derivative works or modified versions thereof, \n\n2) that both the copyright notice and this permission and disclaimer notice \n appear in all supporting documentation, and \n\n3) that all derivative works made from this material are returned to the\n Regents of the University of Michigan and Merit Network, Inc. with\n permission to copy, to display, to distribute, and to make derivative\n works from the provided material in whole or in part for any purpose.\n\nUsers of this code are requested to notify Merit Network, Inc. of such use\nby sending email to aaa-admin@merit.edu\n\nPlease also use aaa-admin@merit.edu to inform Merit Network, Inc of any\nderivative works.\n\nDistribution of this software or derivative works or the associated\ndocumentation is not allowed without an additional license.\n\nLicenses for other uses are available on an individually negotiated\nbasis. Contact aaa-license@merit.edu for more information.\n\nTHIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER\nEXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE REGENTS OF THE\nUNIVERSITY OF MICHIGAN AND MERIT NETWORK, INC. DO NOT WARRANT THAT THE\nFUNCTIONS CONTAINED IN THE SOFTWARE WILL MEET LICENSEE'S REQUIREMENTS OR\nTHAT OPERATION WILL BE UNINTERRUPTED OR ERROR FREE. The Regents of the\nUniversity of Michigan and Merit Network, Inc. shall not be liable for any\nspecial, indirect, incidental or consequential damages with respect to any\nclaim by Licensee or any third party arising from use of the software.", + "json": "merit-network-derivative.json", + "yaml": "merit-network-derivative.yml", + "html": "merit-network-derivative.html", + "license": "merit-network-derivative.LICENSE" + }, + { + "license_key": "metageek-inssider-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-metageek-inssider-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "inSSIDer End User License Agreement\n\nEND-USER LICENSE AGREEMENT FOR inSSIDer. IMPORTANT PLEASE READ THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT CAREFULLY BEFORE CONTINUING WITH THIS PROGRAM INSTALL: MetaGeek, LLC's End-User License Agreement (\"EULA\") is a legal agreement between you, either an individual or a single entity (referred to as the \"licensee\") and MetaGeek, LLC for the MetaGeek software product(s) identified above which may include associated software components, media, printed materials, and \"online\" or electronic documentation (\"SOFTWARE PRODUCT\"). By installing, copying, or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. This license agreement represents the entire agreement concerning the program between you and MetaGeek LLC, (referred to as \"licenser\"), and it supersedes any prior proposal, representation, or understanding between the parties. If you do not agree to the terms of this EULA, do not install or use the SOFTWARE PRODUCT.\n\nThe SOFTWARE PRODUCT is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The SOFTWARE PRODUCT is licensed, not sold.\n\nLicense:\nThis License is for personal use only. This License permits the licensee to install the SOFTWARE PRODUCT on more than one computer system, as long as the SOFTWARE PRODUCT will not be used on more than one computer system simultaneously. Licensee will not make copies of the SOFTWARE PRODUCT or allow copies of the SOFTWARE PRODUCT to be made by others, unless authorized by this License Agreement. Licensee may make copies of the SOFTWARE PRODUCT for backup purposes only.\n\nLicensee may not modify or translate the program or documentation. User may not disassemble the program or allow it to be disassembled into its constituent source code. Licensee's use of the SOFTWARE PRODUCT indicates his/her acceptance of these terms and conditions. If the licensee does not agree to these conditions, they should return the distribution media, documentation, and associated materials to the vendor from whom the SOFTWARE PRODUCT was purchased, and erase the SOFTWARE PRODUCT from any and all storage devices upon which it may have been installed. This license agreement shall be governed by the laws of the United States of America, the State of Idaho, and shall inure to the benefit of MetaGeek, LLC or its assigns.\n\nDisclaimer / limitation of liability:\nLicensee acknowledges that the SOFTWARE PRODUCT may not be free from defects and may not satisfy all of the licensee's needs. The SOFTWARE PRODUCT is licensed \"as is\". In no event will MetaGeek, LLC be liable for direct, indirect, incidental or consequential damage or damages resulting from loss of use, or loss of anticipated profits resulting from any defect in the SOFTWARE PRODUCT, even if it has been advised of the possibility of such damage. Some laws do not allow the exclusion or limitation of implied warranties or liabilities for incidental or consequential damages, so the above limitations or exclusion may not apply.\n\nSpecific restrictions:\nIn accordance with the computer software rental act of 1990, this SOFTWARE PRODUCT may not be rented, lent or leased. This license is does not extend rights of usage for commercial purposes.\n\nThe SOFTWARE PRODUCT and accompanying documentation may not be provided by a \u201cbackup service\" or any other vendor which does not provide an original package as composed by MetaGeek, LLC, including but not limited to all original distribution media, documentation, registration cards, and insertions.\n\nCopyrights:\nCopyright 2005-2019 MetaGeek, LLC. All rights reserved.\ninSSIDer is copyright 2007-2019 MetaGeek, LLC. All rights reserved.\n\nTrademarks:\nMetaGeek and inSSIDer are registered trademarks of MetaGeek, LLC.", + "json": "metageek-inssider-eula.json", + "yaml": "metageek-inssider-eula.yml", + "html": "metageek-inssider-eula.html", + "license": "metageek-inssider-eula.LICENSE" + }, + { + "license_key": "metrolink-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-metrolink-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "METRO LINK PUBLIC LICENSE\nMOTIF GRAPHICAL USER INTERFACE SOFTWARE\nVersion 1.00\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS METRO LINK PUBLIC LICENSE (\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n\n1. DEFINITIONS\n\n\"Contribution\" means:\n\n in the case of METRO LINK, INCORPORATED (\"METRO LINK\"), the Metro Link Program, and\n\n in the case of each Contributor,\n\n changes to the Program, and\n additions to the Program;\n\nwhere such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.\n\n\"Contributor\" means The Open Group, METRO LINK and any other entity that distributes the Program.\n\n\"Licensed Patents\" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.\n\n\"Open Source\" programs mean software for the source code is available without confidential or trade secret restrictions and for which the source code and object code are available for distribution without license charges.\n\n\"Metro Link Program\" means the original version of the software accompanying this Agreement as released by METRO LINK, including source code, object code and documentation, if any.\n\n\"Program\" means the Metro Link Program and Contributions.\n\n\"Recipient\" means anyone who receives the Program under this Agreement, including all Contributors.\n\n2. GRANT OF RIGHTS\n\nThe rights granted under this license are limited solely to distribution and sublicensing of the Contribution(s) on, with or for operating systems which are themselves Open Source programs.\n\n Subject to the terms of this Agreement, The Open Group Public License Agreement attached hereto (\"The Open Group Agreement\") and the limitations of this Section 2, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.\n\n Subject to the terms of this Agreement, The Open Group Agreement and this Section 2, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.\n\n Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.\n\n Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.\n\n\n3. REQUIREMENTS\n\nA Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:\n\n it complies with the terms and conditions of this Agreement and The Open Group Agreement; and\n\n its license agreement:\n\n\n effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;\n effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;\n states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and\n states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.\n\nWhen the Program is made available in source code form:\n\n it must be made available under this Agreement and the Open Group Agreement; and\n\n a copy of this Agreement must be included with each copy of the Program.\n\n\nEach Contributor must include the following in a conspicuous location in the Program:\n\nCopyright (C) May, 2000 The Open Group, Metro Link, Incorporated and others. All Rights Reserved\n\nIn addition, each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.\n\n4. COMMERCIAL DISTRIBUTION\n\nCommercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor (\"Commercial Contributor\") hereby agrees to defend and indemnify every other Contributor (\"Indemnified Contributor\") against any losses, damages and costs (collectively \"Losses\") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must:\n\na) promptly notify the Commercial Contributor in writing of such claim, and\n\nb) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations.\n\nThe Indemnified Contributor may participate in any such claim at its own expense.\n\nFor example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.\n\n5. NO WARRANTY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED 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. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.\n\n6. DISCLAIMER OF LIABILITY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. GENERAL\n\nIf any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\nIf Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.\n\nAll Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.\n\nMETRO LINK may publish new versions (including revisions) of this Agreement from time to time. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. No one other than METRO LINK has the right to modify this Agreement. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.\n\nThis Agreement is governed by the laws of the State of Florida and the intellectual property laws of the United States of America.\n\nNo party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.", + "json": "metrolink-1.0.json", + "yaml": "metrolink-1.0.yml", + "html": "metrolink-1.0.html", + "license": "metrolink-1.0.LICENSE" + }, + { + "license_key": "mgopen-font-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mgopen-font-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license (\"Fonts\") and associated documentation files (the \"Font Software\"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions:\n\nThe above copyright and this permission notice shall be included in all copies of one or more of the Font Software typefaces.\n\nThe Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing the word \"MgOpen\", or if the modifications are accepted for inclusion in the Font Software itself by the each appointed Administrator.\n\nThis License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the \"MgOpen\" name.\n\nThe Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself.\n\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL MAGENTA OR PERSONS OR BODIES IN CHARGE OF ADMINISTRATION AND MAINTENANCE OF THE FONT SOFTWARE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.", + "json": "mgopen-font-license.json", + "yaml": "mgopen-font-license.yml", + "html": "mgopen-font-license.html", + "license": "mgopen-font-license.LICENSE" + }, + { + "license_key": "michael-barr", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-michael-barr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software is placed into the public domain and may be used for any purpose.\nHowever, this notice must not be changed or removed and no warranty is either\nexpressed or implied by its publication or distribution.", + "json": "michael-barr.json", + "yaml": "michael-barr.yml", + "html": "michael-barr.html", + "license": "michael-barr.LICENSE" + }, + { + "license_key": "michigan-disclaimer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-michigan-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to use, copy, create derivative works\nand redistribute this software and such derivative works\nfor any purpose, so long as the name of The University of\nMichigan is not used in any advertising or publicity\npertaining to the use of distribution of this software\nwithout specific, written prior authorization. If the\nabove copyright notice or any other identification of the\nUniversity of Michigan is included in any copy of any\nportion of this software, then the disclaimer below must\nalso be included.\n\nTHIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION\nFROM THE UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY\nPURPOSE, AND WITHOUT WARRANTY BY THE UNIVERSITY OF\nMICHIGAN OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING\nWITHOUT LIMITATION THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE\nREGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE\nFOR ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR\nCONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING\nOUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN\nIF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.", + "json": "michigan-disclaimer.json", + "yaml": "michigan-disclaimer.yml", + "html": "michigan-disclaimer.html", + "license": "michigan-disclaimer.LICENSE" + }, + { + "license_key": "microchip-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-microchip-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "REDISTRIBUTION: Permission is hereby granted by Microchip Technology\nIncorporated (Microchip), free of any license fees, to any person obtaining a\ncopy of this firmware (the \"Software\"), to install, reproduce, copy and\ndistribute copies, in binary form, hexadecimal or equivalent formats only, the\nSoftware and to permit persons to whom the Software is provided to do the same,\nsubject to the following conditions:\n\n* Any redistribution of the Software must reproduce the above copyright notice,\n this license notice, and the following disclaimers and notices in the\n documentation and/or other materials provided with the Software.\n\n* Neither the name of Microchip, its products nor the names of its suppliers\n may be used to endorse or promote products derived from this Software without\n specific prior written permission.\n\n* No reverse engineering, decompilation, or disassembly of this Software is\n permitted.\n\nLimited patent license. Microchip grants a world-wide, royalty-free,\nnon-exclusive, revocable license under any patents that it now has or hereafter\nmay have, own or control related to the Software to make, have made, use,\nimport, offer to sell and sell (\"Utilize\") this Software, but solely to the\nextent that any such patent is necessary to Utilize the Software in conjunction\nwith Microchip processors. The patent license shall not apply to any other\ncombinations which include this Software nor to any other Microchip patents or\npatent rights. No hardware per se is licensed hereunder.\n\nDISCLAIMER: THIS SOFTWARE IS PROVIDED BY MICROCHIP \"AS IS\" AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE\nDISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "microchip-linux-firmware.json", + "yaml": "microchip-linux-firmware.yml", + "html": "microchip-linux-firmware.html", + "license": "microchip-linux-firmware.LICENSE" + }, + { + "license_key": "microchip-products-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-microchip-products-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "/*------------------------------------------------------------------------------------------------*/\n/* (c) 2018 Microchip Technology Inc. and its subsidiaries. */\n/* */\n/* You may use this software and any derivatives exclusively with Microchip products. */\n/* */\n/* THIS SOFTWARE IS SUPPLIED BY MICROCHIP \"AS IS\". NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR */\n/* STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY IMPLIED WARRANTIES OF NON-INFRINGEMENT, */\n/* MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE, OR ITS INTERACTION WITH MICROCHIP */\n/* PRODUCTS, COMBINATION WITH ANY OTHER PRODUCTS, OR USE IN ANY APPLICATION. */\n/* */\n/* IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE, INCIDENTAL OR */\n/* CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND WHATSOEVER RELATED TO THE SOFTWARE, */\n/* HOWEVER CAUSED, EVEN IF MICROCHIP HAS BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE */\n/* FORESEEABLE. TO THE FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS */\n/* IN ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY, THAT YOU HAVE */\n/* PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE. */\n/* */\n/* MICROCHIP PROVIDES THIS SOFTWARE CONDITIONALLY UPON YOUR ACCEPTANCE OF THESE TERMS. */\n/*------------------------------------------------------------------------------------------------*/", + "json": "microchip-products-2018.json", + "yaml": "microchip-products-2018.yml", + "html": "microchip-products-2018.html", + "license": "microchip-products-2018.LICENSE" + }, + { + "license_key": "microsoft-enterprise-library-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-enterprise-library-eula", + "other_spdx_license_keys": [ + "LicenseRef-scancode-microsoft-enterprise-library-eula" + ], + "is_exception": false, + "is_deprecated": false, + "text": "END USER LICENSE AGREEMENT:\n\nEnterprise Library\n\nJune 2005\n\nThis license governs use of the accompanying software and associated documentation and other content (\"Software\"), and your use of the Software constitutes acceptance of this license.\n\nSubject to the restrictions below and any guidelines in the accompanying documentation, you may use the Software for any commercial or noncommercial purpose, including making copies, distributing modifications, and combining it with your own products or services. All references to modifications herein mean modifications to the Software and include \"derivative works\" as such term is defined under U.S. copyright law.\n\nIn return, we simply require that you agree:\n\nNot to remove any copyright or other notices from the Software.\nThat you have no right to combine or distribute the Software or modifications with other software or content that is licensed under terms that seek to require that the Software or modifications (or any intellectual property in it) be provided in source code form, licensed to others to allow the creation or distribution of derivative works, or distributed without charge.\nThat if you distribute:\nthe Software in source code form, you may do so only under this license (i.e., you must include a complete copy of this license with your distribution), and\nthe Software solely in object code form, or modifications in either source or object code form, you do so only under a license that complies with this license.\nThat you will\nnot use Microsoft's or its suppliers' names, logos, or trademarks in conjunction with distribution of the Software or modifications, unless we give you prior written permission or instruction to do so;\ndisplay the following copyright notice on copies of modifications you distribute:\n\"Contains software or other content adapted from Microsoft patterns & practices Enterprise Library, \u00a9 2005 Microsoft Corporation. All rights reserved.\"; and\n\ndefend, indemnify, and hold harmless us and our suppliers from any claims or lawsuits and associated losses, damages, liabilities, penalties fines, costs, and expenses, including reasonable attorneys' fees, that arise from or relate to the use or distribution of your modifications and any additional software or content you distribute in conjunction with the Software or modifications.\nThat if you distribute modifications, you will cause the modified files to carry prominent notices so that recipients know they are not receiving the original Software. Such notices must (a) state that you have changed the Software, (b) include the date of any changes, and (c) to the extent reasonably practicable, comply with any guidelines about modifications in the documentation accompanying the Software.\nThat the Software comes \"AS IS\", WITH ALL FAULTS. You bear the risk of using it. We give no express warranties, guarantees or conditions. To the extent permitted under your local laws, we exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. Also, you must pass this disclaimer on when you distribute the Software or modifications.\nThat you can recover from Microsoft and its suppliers only direct damages up to US$5.00. You cannot recover any other damages, including those known as consequential, lost profits, special, indirect or incidental damages. Also, you must pass this limitation of liability on when you distribute the Software or modifications.\nThat if you sue anyone over patents that you think may apply to the Software for a person's use of the Software, your license to the Software ends automatically.\nThat the patent rights, if any, granted in this license only apply to the Software, and do NOT extend to any component or file not included in the Software, including any modifications to the Software, any other software or technology needed to use the Software, or any combination of the Software with other software or hardware.\nThat you may run the Software or modifications only on the Windows platform.\nThat you may not disclose to anyone, without our prior written permission, the results of any performance tests on the Software.\nThat we are not required to provide you any support, bug fixes, updates, new versions, or supplements for the Software, but if we do, they will be deemed part of the Software and governed by this license, unless other terms are provided with them.\nThat if you give us any feedback about the Software, you give us, without charge, the right to use, share and commercialize your feedback in any way and for any purpose. You also agree to give third parties, without charge, any patent rights needed for their products or services to use or interface with any specific parts of our software or service that includes the feedback. You will not give feedback that is subject to a license that seeks to require us to license our software or documentation to third parties because we include your feedback in them. These rights survive this agreement.\nThat we may collect and use technical information, gathered as part of support or other services provided to you related to the Software, to improve our products or services or provide customized services or technologies to you. We may disclose this information to others, but not in a form that personally identifies you. These rights survive this agreement.\nThat the Software may be subject to U.S. export jurisdiction at the time we license it to you, and it may be subject to additional export or import laws in other places. You agree to comply with all such laws and regulations that may apply to the Software after we deliver it to you.\nThat your rights under this license end automatically if you breach it in any way.\nThat this license contains the only rights associated with the Software, and we reserve all rights not expressly granted to you in this license.\nThat this license may not be amended except in a writing duly signed by your and our authorized representatives.\nThat if any of these terms is held void, invalid, illegal, or otherwise unenforceable, the other terms will continue in full force and effect.", + "json": "microsoft-enterprise-library-eula.json", + "yaml": "microsoft-enterprise-library-eula.yml", + "html": "microsoft-enterprise-library-eula.html", + "license": "microsoft-enterprise-library-eula.LICENSE" + }, + { + "license_key": "microsoft-windows-rally-devkit", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-microsoft-windows-rally-devkit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT WINDOWS RALLY DEVELOPMENT KIT\nThese license terms are an agreement (\"Agreement\") between Microsoft Corporation (or based on where you live, one of its affiliates) and the individual or entity identified and signing below (\"you\"). They apply to the sample code for Link Layer Topology Discovery and Plug and Play Extensions (\"Sample Code\"), which includes the media on which you received the Sample Code, if any. The terms also apply to any Microsoft\n\u2022\tupdates,\n\u2022\tsupplements,\n\u2022\tInternet-based services, and \n\u2022\tsupport services\nfor this Sample Code, unless other terms accompany those items. If so, those terms apply.\nIf You want a license from Microsoft to use the Sample Code, You must indicate your agreement to the terms of this Agreement by checking the \"I Agree\" box below. If you do not check the \"I Agree\" box, you have no right to use the Sample Code. This Agreement is effective on the date you check the \"I Agree\" box (the \"Effective Date\").YOU MUST HAVE ENTERED INTO A MICROSOFT WINDOWS RALLY COMPONENT LICENSE AGREEMENT (available www.microsoft.com/rally) WITH MICROSOFT (\"Program Agreement\") BEFORE YOU USE THIS SAMPLE CODE..\nIf you accept these license terms and you have entered into and are in compliance with the Microsoft Windows Rally Component Agreement, you have the rights below.\n1.\tINSTALLATION AND USE RIGHTS. You may install, compile and use any number of copies of the Sample Code on your devices to design, develop and test your products.\n2.\tADDITIONAL LICENSE RIGHTS AND REQUIREMENTS.\na.\tRight to Modify and Distribute. \ni. Distributable Code. You may modify, copy, use and distribute the Distributable Code so long as you comply with the Program Agreement as well as all applicable terms and conditions of this Agreement. You may, however, sublicense to OEMs who have entered into a Program Agreement, the right to modify, copy and distribute the Distributable Code, as set forth in Section 2(a)(ii). \"Distributable Code\" means the source and object code form of the Sample Code in conjunction with and as part of an implementation of the Licensed LLTD Specification as incorporated into a Consumer Product (as such terms are defined in the Program Agreement). \nii. Third Party Distribution. The license above only provides: (a) the right to grant to OEMs who purchase your products a sublicense to modify the Distributable Code only as necessary to customize OEM products that incorporate your Consumer Products and only so long as the OEM and the modified Distributable Code complies with all terms and conditions of this Agreement and the Program Agreement; (b) the right to grant to any of your OEMs, distributors and dealers a license to make, sell, offer for sale and distribute an object code copy of the Distributable Code (or OEM modified Distributable Code) in accordance with all applicable terms and conditions of this Agreement and the Program Agreement; and (c) the right to grant to any end user a license to use an object code copy of the Distributable Code (or OEM modified Distributable Code) in accordance with all applicable terms and conditions of this Agreement and the Program Agreement. With respect to any license or sublicense granted by you pursuant to this Section 2: (i) the license or sublicense will terminate immediately and automatically (i.e. without any notice or other action by either you or Microsoft) if this Agreement or the Program Agreement terminates or expires; (ii) the license or sublicense must have terms and conditions that are consistent with the terms and conditions of this Agreement and the Program Agreement; and (iii) you will ensure that each licensee or sublicensee complies with the license requirements and all other applicable terms and conditions of this Agreement and the Program Agreement.\niii. Distribution Requirements. For any Distributable Code you distribute or sublicense, you must \n\u2022\trequire distributors, OEMs and end users to agree to terms that protect the Distributable Code at least as much as this Agreement and the Program Agreement, prohibit reverse engineering of the Distributable Code to the extent permitted by applicable law and include disclaimers and limitations of any representations, warranties, damages and liabilities of Microsoft and its affiliates to the same extent that your representations, warranties, damages and liabilities are disclaimed or limited, provided that such disclaimers and warranties need not identify Microsoft or any of its affiliates by name; \n\u2022\tdisplay your valid copyright notice on your products; and\n\u2022\tindemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your products.\niv. Distribution Restrictions. You may not\n\u2022\talter or remove any copyright, trademark or patent notice in the Distributable Code or Sample Code; \n\u2022\tuse Microsoft\u2019s trademarks in your products\u2019 names or in a way that suggests your products come from or are endorsed by Microsoft, except as may be permitted by a separate written agreement with Microsoft;\n\u2022\tinclude Distributable Code in malicious, deceptive or unlawful products; or\n\u2022\tmodify the source code of the Sample Code or modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\n\u2022\tthe code be disclosed or distributed in source code form; \n\u2022\tthat others have the right to modify it; or\n\u2022\tthat the code be disclosed or distributed free of charge.\nb.\tSample Code Modifications. You grant to Microsoft, under all patent rights you or your affiliates have or obtain in the future and that you or your affiliates are authorized to license without paying fees to any third party, and during the time any such patent rights are in effect, a personal, nonexclusive, royalty-free, nonsublicensable, worldwide license to make, have made, use, sell, offer for sale, import and distribute, directly or indirectly, any modifications to or derivative works that you create based upon the Sample Code during the first five years after you download it. \n3.\tSCOPE OF LICENSE. The Sample Code is licensed, not sold. This Agreement only gives you some rights to use the Sample Code. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the Sample Code only as expressly permitted in this Agreement. In doing so, you must comply with any technical limitations in the Sample Code that only allow you to use it in certain ways. You may not\n\u2022\tpublish the Sample Code for others to copy;\n\u2022\trent, lease or lend the Sample Code; or\n\u2022\ttransfer the Sample Code or this Agreement to any third party.\n4. TERMINATION. Without prejudice to any other rights Microsoft may terminate this Agreement if you fail to comply with the terms and conditions of this Agreement or the Program Agreement. In such event, you must destroy all copies of the Sample Code listed in Exhibit A and discontinue all use or distribution of Distributable Code. \n5. EXPORT RESTRICTIONS. The Sample Code is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the Sample Code. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n6. SUPPORT SERVICES AND UPDATES. Because this Sample Code is \"as is,\" Microsoft may not provide support services or updates for it.\n7. ENTIRE AGREEMENT. This Agreement, the Program Agreement, and the terms for related supplements, updates, Internet-based services and support services that you use (if any), are the entire agreement for the Sample Code and support services. Microsoft may in its discretion elect to make available additional software in the future by making available such additional software and amended terms of this Agreement at www.microsoft.com. Except in the event Microsoft makes such additional software available and you accept applicable terms governing their inclusion in this Agreement, no other software or Microsoft enhancements or updates to the Sample Code are licensed under this Agreement. \n8. APPLICABLE LAW. This Agreement is controlled by the laws of the State of New York as such laws apply to contracts entered into by New York residents to be performed entirely within New York. Licensee consents to exclusive jurisdiction and venue in the United States District Court for the Southern or Eastern Districts of New York. Licensee waives all defenses of lack of personal jurisdiction and forum non conveniens.\n9. LEGAL EFFECT. This Agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the Sample Code. This Agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n10. DISCLAIMER OF WARRANTY. THE SAMPLE CODE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n11. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\nThis limitation applies to\n\u2022\tanything related to the Sample Code, documentation, services, content (including code) on third party Internet sites, or third party programs; and\n\u2022\tclaims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\nPlease note: As this Sample Code is distributed in Quebec, Canada, some of the clauses in this Agreement are provided below in French.\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\u00e7ais.\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel \u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft n\u2019accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits additionnels en vertu du droit local sur la protection dues consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\u00e9 marchande, d\u2019ad\u00e9quation \u00e0 un usage particulier et d\u2019absence de contrefa\u00e7on sont exclues.\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\nCette limitation concerne :\n\u2022\ttout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\n\u2022\tles r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d\u2019une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\nElle s\u2019applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre l\u2019\u00e9ventualit\u00e9 d\u2019un tel dommage. Si votre pays n\u2019autorise pas l\u2019exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\u2019exclusion ci-dessus ne s\u2019appliquera pas \u00e0 votre \u00e9gard.\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d\u2019autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si celles-ci ne le permettent pas.\nBy checking the \"I Agree\" box, below, you indicate that you accept all terms of this Agreement and represent that you have not modified this Agreement in any way.\n\n\n \t\tI AGREE\n\n \t\tCOMPANY NAME", + "json": "microsoft-windows-rally-devkit.json", + "yaml": "microsoft-windows-rally-devkit.yml", + "html": "microsoft-windows-rally-devkit.html", + "license": "microsoft-windows-rally-devkit.LICENSE" + }, + { + "license_key": "mif-exception", + "category": "Copyleft Limited", + "spdx_license_key": "mif-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, you may use this file as part of a free software library\nwithout restriction. Specifically, if other files instantiate templates or use\nmacros or inline functions from this file, or you compile this file and link it\nwith other files to produce an executable, this file does not by itself cause\nthe resulting executable to be covered by the GNU General Public License. This\nexception does not however invalidate any other reasons why the executable file\nmight be covered by the GNU General Public License.", + "json": "mif-exception.json", + "yaml": "mif-exception.yml", + "html": "mif-exception.html", + "license": "mif-exception.LICENSE" + }, + { + "license_key": "mike95", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-mike95", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This library was downloaded from: http://www.mike95.com\n\nThis library is copyright. It may freely be used for personal purposes\nif the restriction listed below is adhered to.\n Author: Michael Olivero\n Email: mike95@mike95.com\n\n//===============================\n//Start of Restriction Definition\n//===============================\nAnyone can have full use of the library provided they keep this complete comment\nwith the source. Also I would like to ask if any changes are made to the\ncode for efficiency reasons, please let me know so I may look into your change and\nlikewise incorporate it into library. If a suggestion makes it into the library,\nyour credits will be added to this information.\n\nAuthors of Computer related books are welcome to include this source code as part\nof their publishing, provided credit the Author and make note of where the source\ncode was obtained from: http://www.mike95.com\n//=============================\n//End of Restriction Definition\n//=============================", + "json": "mike95.json", + "yaml": "mike95.yml", + "html": "mike95.html", + "license": "mike95.LICENSE" + }, + { + "license_key": "minecraft-mod", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-minecraft-mod", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Minecraft: Denotes a copy of the Minecraft game licensed by Mojang AB\nUser: Anybody that interacts with the software in one of the following ways:\n - play\n - decompile\n - recompile or compile\n - modify\n - distribute\nMod: The mod code designated by the present license, in source form, binary\nform, as obtained standalone, as part of a wider distribution or resulting from\nthe compilation of the original or modified sources.\nDependency: Code required for the mod to work properly. This includes\ndependencies required to compile the code as well as any file or modification\nthat is explicitely or implicitely required for the mod to be working.\n1. Scope\n--------\nThe present license is granted to any user of the mod. As a prerequisite,\na user must own a legally acquired copy of Minecraft\n2. Liability\n------------\nThis mod is provided 'as is' with no warranties, implied or otherwise. The owner\nof this mod takes no responsibility for any damages incurred from the use of\nthis mod. This mod alters fundamental parts of the Minecraft game, parts of\nMinecraft may not work with this mod installed. All damages caused from the use\nor misuse of this mad fall on the user.\n3. Play rights\n--------------\nThe user is allowed to install this mod on a client or a server and to play\nwithout restriction.\n4. Modification rights\n----------------------\nThe user has the right to decompile the source code, look at either the\ndecompiled version or the original source code, and to modify it.\n5. Derivation rights\n--------------------\nThe user has the rights to derive code from this mod, that is to say to\nwrite code that extends or instanciate the mod classes or interfaces, refer to\nits objects, or calls its functions. This code is known as \"derived\" code, and\ncan be licensed under a license different from this mod.\n6. Distribution of original or modified copy rights\n---------------------------------------------------\nIs subject to distribution rights this entire mod in its various forms. This\ninclude:\n - original binary or source forms of this mod files\n - modified versions of these binaries or source files, as well as binaries\n resulting from source modifications\n - patch to its source or binary files\n - any copy of a portion of its binary source files\nThe user is allowed to redistribute this mod partially, in totality, or\nincluded in a distribution.\nWhen distributing binary files, the user must provide means to obtain its\nentire set of sources or modified sources at no costs.\nAll distributions of this mod must remain licensed under the MMPL.\nAll dependencies that this mod have on other mods or classes must be licensed\nunder conditions comparable to this version of MMPL, with the exception of the\nMinecraft code and the mod loading framework (e.g. ModLoader, ModLoaderMP or\nBukkit).\nModified version of binaries and sources, as well as files containing sections\ncopied from this mod, should be distributed under the terms of the present\nlicense.", + "json": "minecraft-mod.json", + "yaml": "minecraft-mod.yml", + "html": "minecraft-mod.html", + "license": "minecraft-mod.LICENSE" + }, + { + "license_key": "mini-xml", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details.\n\nYou should have received a copy of the GNU Library 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\n\nMini-XML License (LGPL 2.0 with Exception)\n\nThe Mini-XML library and included programs are provided under the terms of the GNU Library General Public License (LGPL) with the following exceptions:\n\n1.\tStatic linking of applications to the Mini-XML library does not constitute a derivative work and does not require the author to provide source code for the application, use the shared Mini-XML libraries, or link their applications against a user-supplied version of Mini-XML. \nIf you link the application to a modified version of Mini-XML, then the changes to Mini-XML must be provided under the terms of the LGPL in sections 1, 2, and 4.\n\n2.\tYou do not have to provide a copy of the Mini-XML license with programs that are linked to the Mini-XML library, nor do you have to identify the Mini-XML license in your program or documentation as required by section 6 of the LGPL.\n\nGNU Library General Public License (LGPL 2.0)\nhttp://www.gnu.org/licenses/old-licenses/lgpl-2.0.html - TOC1", + "json": "mini-xml.json", + "yaml": "mini-xml.yml", + "html": "mini-xml.html", + "license": "mini-xml.LICENSE" + }, + { + "license_key": "mini-xml-exception-lgpl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-mini-xml-exception-lgpl-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Mini-XML License (LGPL 2.0 with Exception)\n\nThe Mini-XML library and included programs are provided under the terms of the\nGNU Library General Public License (LGPL) with the following exceptions:\n\n1.\tStatic linking of applications to the Mini-XML library does not constitute a derivative work and does not require the author to provide source code for the application, use the shared Mini-XML libraries, or link their applications against a user-supplied version of Mini-XML. \nIf you link the application to a modified version of Mini-XML, then the changes to Mini-XML must be provided under the terms of the LGPL in sections 1, 2, and 4.\n\n2.\tYou do not have to provide a copy of the Mini-XML license with programs that are linked to the Mini-XML library, nor do you have to identify the Mini-XML license in your program or documentation as required by section 6 of the LGPL.\n\nGNU Library General Public License (LGPL 2.0)\nhttp://www.gnu.org/licenses/old-licenses/lgpl-2.0.html - TOC1", + "json": "mini-xml-exception-lgpl-2.0.json", + "yaml": "mini-xml-exception-lgpl-2.0.yml", + "html": "mini-xml-exception-lgpl-2.0.html", + "license": "mini-xml-exception-lgpl-2.0.LICENSE" + }, + { + "license_key": "minpack", + "category": "Permissive", + "spdx_license_key": "Minpack", + "other_spdx_license_keys": [ + "LicenseRef-scancode-minpack" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Minpack Copyright Notice (1999) University of Chicago. All rights reserved\n\nRedistribution and use in source and binary forms, with or\nwithout modification, are permitted provided that the\nfollowing conditions are met:\n\n1. Redistributions of source code must retain the above\ncopyright notice, this list of conditions and the following\ndisclaimer.\n\n2. Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following\ndisclaimer in the documentation and/or other materials\nprovided with the distribution.\n\n3. The end-user documentation included with the\nredistribution, if any, must include the following\nacknowledgment:\n\n \"This product includes software developed by the\n University of Chicago, as Operator of Argonne National\n Laboratory.\n\nAlternately, this acknowledgment may appear in the software\nitself, if and wherever such third-party acknowledgments\nnormally appear.\n\n4. WARRANTY DISCLAIMER. THE SOFTWARE IS SUPPLIED \"AS IS\"\nWITHOUT WARRANTY OF ANY KIND. THE COPYRIGHT HOLDER, THE\nUNITED STATES, THE UNITED STATES DEPARTMENT OF ENERGY, AND\nTHEIR EMPLOYEES: (1) DISCLAIM ANY WARRANTIES, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO ANY IMPLIED WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE\nOR NON-INFRINGEMENT, (2) DO NOT ASSUME ANY LEGAL LIABILITY\nOR RESPONSIBILITY FOR THE ACCURACY, COMPLETENESS, OR\nUSEFULNESS OF THE SOFTWARE, (3) DO NOT REPRESENT THAT USE OF\nTHE SOFTWARE WOULD NOT INFRINGE PRIVATELY OWNED RIGHTS, (4)\nDO NOT WARRANT THAT THE SOFTWARE WILL FUNCTION\nUNINTERRUPTED, THAT IT IS ERROR-FREE OR THAT ANY ERRORS WILL\nBE CORRECTED.\n\n5. LIMITATION OF LIABILITY. IN NO EVENT WILL THE COPYRIGHT\nHOLDER, THE UNITED STATES, THE UNITED STATES DEPARTMENT OF\nENERGY, OR THEIR EMPLOYEES: BE LIABLE FOR ANY INDIRECT,\nINCIDENTAL, CONSEQUENTIAL, SPECIAL OR PUNITIVE DAMAGES OF\nANY KIND OR NATURE, INCLUDING BUT NOT LIMITED TO LOSS OF\nPROFITS OR LOSS OF DATA, FOR ANY REASON WHATSOEVER, WHETHER\nSUCH LIABILITY IS ASSERTED ON THE BASIS OF CONTRACT, TORT\n(INCLUDING NEGLIGENCE OR STRICT LIABILITY), OR OTHERWISE,\nEVEN IF ANY OF SAID PARTIES HAS BEEN WARNED OF THE\nPOSSIBILITY OF SUCH LOSS OR DAMAGES.", + "json": "minpack.json", + "yaml": "minpack.yml", + "html": "minpack.html", + "license": "minpack.LICENSE" + }, + { + "license_key": "mir-os", + "category": "Permissive", + "spdx_license_key": "MirOS", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Provided that these terms and disclaimer and all copyright notices\nare retained or reproduced in an accompanying document, permission\nis granted to deal in this work without restriction, including un\u2010\nlimited rights to use, publicly perform, distribute, sell, modify,\nmerge, give away, or sublicence.\n\nThis work is provided \"AS IS\" and WITHOUT WARRANTY of any kind, to\nthe utmost extent permitted by applicable law, neither express nor\nimplied; without malicious intent or gross negligence. In no event\nmay a licensor, author or contributor be held liable for indirect,\ndirect, other damage, loss, or other issues arising in any way out\nof dealing in the work, even if advised of the possibility of such\ndamage or existence of a defect, except proven that it results out\nof said person's immediate fault when using the work as intended.", + "json": "mir-os.json", + "yaml": "mir-os.yml", + "html": "mir-os.html", + "license": "mir-os.LICENSE" + }, + { + "license_key": "mit", + "category": "Permissive", + "spdx_license_key": "MIT", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "mit.json", + "yaml": "mit.yml", + "html": "mit.html", + "license": "mit.LICENSE" + }, + { + "license_key": "mit-0", + "category": "Permissive", + "spdx_license_key": "MIT-0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ekioh" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy of this\nsoftware and associated documentation files (the \"Software\"), to deal in the Software\nwithout restriction, including without limitation the rights to use, copy, modify,\nmerge, publish, distribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\nINCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "mit-0.json", + "yaml": "mit-0.yml", + "html": "mit-0.html", + "license": "mit-0.LICENSE" + }, + { + "license_key": "mit-1995", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-1995", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "COPYRIGHT 1995 BY: MASSACHUSETTS INSTITUTE OF TECHNOLOGY (MIT), INRIA\n\nThis W3C software is being provided by the copyright holders under the\nfollowing license. By obtaining, using and/or copying this software, you\nagree that you have read, understood, and will comply with the following\nterms and conditions:\n\nPermission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose and without fee or royalty is hereby granted,\nprovided that the full text of this NOTICE appears on ALL copies of the\nsoftware and documentation or portions thereof, including modifications,\nthat you make.\n\nTHIS SOFTWARE IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE NO\nREPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT\nNOT LIMITATION, COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES OF\nMERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE\nSOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS,\nCOPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. COPYRIGHT HOLDERS WILL BEAR NO\nLIABILITY FOR ANY USE OF THIS SOFTWARE OR DOCUMENTATION.\n\nThe name and trademarks of copyright holders may NOT be used in advertising\nor publicity pertaining to the software without specific, written prior\npermission. Title to copyright in this software and any associated\ndocumentation will at all times remain with copyright holders.", + "json": "mit-1995.json", + "yaml": "mit-1995.yml", + "html": "mit-1995.html", + "license": "mit-1995.LICENSE" + }, + { + "license_key": "mit-ack", + "category": "Permissive", + "spdx_license_key": "MIT-feh", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy of this\nsoftware and associated documentation files (the \"Software\"), to deal in the Software\nwithout restriction, including without limitation the rights to use, copy, modify,\nmerge, publish, distribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be included in all copies\nof the Software and its documentation and acknowledgment shall be given in the\ndocumentation and software packages that this Software was used.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\nINCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR\nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.", + "json": "mit-ack.json", + "yaml": "mit-ack.yml", + "html": "mit-ack.html", + "license": "mit-ack.LICENSE" + }, + { + "license_key": "mit-addition", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-addition", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS-IS\" AND WITHOUT WARRANTY OF ANY KIND,\nEXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY\nWARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.\n\nIN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT\nOR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER\nRESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF\nTHE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT\nOF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nIn addition, the following condition applies:\n\nAll redistributions must retain an intact copy of this copyright notice\nand disclaimer.", + "json": "mit-addition.json", + "yaml": "mit-addition.yml", + "html": "mit-addition.html", + "license": "mit-addition.LICENSE" + }, + { + "license_key": "mit-export-control", + "category": "Permissive", + "spdx_license_key": "Xerox", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Use and copying of this software and preparation of derivative works\nbased upon this software are permitted. Any copy of this software or of\nany derivative work must include the above copyright notice of\n{copyright-holder}, this paragraph and the one after it. Any\ndistribution of this software or derivative works must comply with all\napplicable United States export control laws.\n\nThis software is made available AS IS, and {copyright-holder} DISCLAIMS\nALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE, AND NOTWITHSTANDING ANY OTHER PROVISION CONTAINED HEREIN, ANY\nLIABILITY FOR DAMAGES RESULTING FROM THE SOFTWARE OR ITS USE IS\nEXPRESSLY DISCLAIMED, WHETHER ARISING IN CONTRACT, TORT (INCLUDING\nNEGLIGENCE) OR STRICT LIABILITY, EVEN IF {copyright-holder} IS ADVISED\nOF THE POSSIBILITY OF SUCH DAMAGES.", + "json": "mit-export-control.json", + "yaml": "mit-export-control.yml", + "html": "mit-export-control.html", + "license": "mit-export-control.LICENSE" + }, + { + "license_key": "mit-license-1998", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-license-1998", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify and distribute this software and its\ndocumentation for any purpose and without fee is hereby granted,\nprovided that both the above copyright notice and this permission\nnotice appear in all copies, that both the above copyright notice\nand this permission notice appear in all supporting documentation,\nand that the name of M.I.T. not be used in advertising or publicity\npertaining to distribution of the software without specific,\nwritten prior permission. M.I.T. makes no representations about\nthe suitability of this software for any purpose. It is provided\n\"as is\" without express or implied warranty.\n\nTHIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''. M.I.T. DISCLAIMS\nALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT\nSHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\nUSE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\nOF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.", + "json": "mit-license-1998.json", + "yaml": "mit-license-1998.yml", + "html": "mit-license-1998.html", + "license": "mit-license-1998.LICENSE" + }, + { + "license_key": "mit-modern", + "category": "Permissive", + "spdx_license_key": "MIT-Modern-Variant", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mit-modern" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, without written agreement and without\nlicense or royalty fees, to use, copy, modify, and distribute this\nsoftware and its documentation for any purpose, provided that the\nabove copyright notice and the following two paragraphs appear in\nall copies of this software.\n\nIN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR\nDIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\nARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN\nIF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGE.\n\nTHE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\nON AN \"AS IS\" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO\nPROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.", + "json": "mit-modern.json", + "yaml": "mit-modern.yml", + "html": "mit-modern.html", + "license": "mit-modern.LICENSE" + }, + { + "license_key": "mit-nagy", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-nagy", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and/or distribute this code\nfor any purpose with or without fee is hereby granted.\nThere is no warranty.", + "json": "mit-nagy.json", + "yaml": "mit-nagy.yml", + "html": "mit-nagy.html", + "license": "mit-nagy.LICENSE" + }, + { + "license_key": "mit-no-advert-export-control", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-no-advert-export-control", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Export of this software from the United States of America may require a specific\nlicense from the United States Government. It is the responsibility of any\nperson or organization contemplating export to obtain such a license before\nexporting.\n\nWITHIN THAT CONSTRAINT, permission to use, copy, modify, and distribute this\nsoftware and its documentation for any purpose and without fee is hereby\ngranted, provided that the above copyright notice appear in all copies and that\nboth that copyright notice and this permission notice appear in supporting\ndocumentation, and that the name of The author not be used in advertising or\npublicity pertaining to distribution of the software without specific, written\nprior permission. The author makes no representations about the suitability of\nthis software for any purpose. It is provided \"as is\" without express or\nimplied warranty.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF\nMERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.", + "json": "mit-no-advert-export-control.json", + "yaml": "mit-no-advert-export-control.yml", + "html": "mit-no-advert-export-control.html", + "license": "mit-no-advert-export-control.LICENSE" + }, + { + "license_key": "mit-no-false-attribs", + "category": "Permissive", + "spdx_license_key": "MITNFA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nDistributions of all or part of the Software intended to be used\nby the recipients as they would use the unmodified Software,\ncontaining modifications that substantially alter, remove, or\ndisable functionality of the Software, outside of the documented\nconfiguration mechanisms provided by the Software, shall be\nmodified such that the Original Author's bug reporting email\naddresses and urls are either replaced with the contact information\nof the parties responsible for the changes, or removed entirely.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.", + "json": "mit-no-false-attribs.json", + "yaml": "mit-no-false-attribs.yml", + "html": "mit-no-false-attribs.html", + "license": "mit-no-false-attribs.LICENSE" + }, + { + "license_key": "mit-no-trademarks", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-no-trademarks", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MIT Copyright Notice\n\nProject Athena, Athena Dashboard, Athena MUSE, Kerberos, X Window System,\nTechInfo, and Zephyr are trademarks of the Massachusetts Institute of Technology\n(MIT). Athena, Discuss, Hesiod, Moria, OLC, and TechMail are registered\ntrademarks of MIT. No commercial use of these trademarks may be made without\nprior written permission of MIT.\n\nThis software is being provided to you, the LICENSEE, by the Massachusetts\nInstitute of Technology (M.I.T.) under the following license. By obtaining,\nusing and/or copying this software, you agree that you have read, understood,\nand will comply with these terms and conditions:\n\nPermission to use, copy, modify and distribute this software and its\ndocumentation for any purpose and without fee or royalty is hereby granted,\nprovided that you agree to comply with the following copyright notice and\nstatements, including the disclaimer, and that the same appear on ALL copies of\nthe software and documentation, including modifications that you make for\ninternal use or for distribution:\n\nCopyright 1995 by the Massachusetts Institute of Technology. All rights reserved.\n\nTHIS SOFTWARE IS PROVIDED \"AS IS\", AND M.I.T. MAKES NO REPRESENTATIONS OR\nWARRANTIES, EXPRESS OR IMPLIED. By way of example, but not limitation, M.I.T.\nMAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY\nPARTICULAR PURPOSE OR THAT THE USE OF THE LICENSED SOFTWARE OR DOCUMENTATION\nWILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER\nRIGHTS.\n\nThe name of the Massachusetts Institute of Technology or M.I.T. may NOT be used\nin advertising or publicity pertaining to distribution of the software. Title to\ncopyright in this software and any associated documentation shall at all times\nremain with M.I.T., and LICENSEE agrees to preserve same.", + "json": "mit-no-trademarks.json", + "yaml": "mit-no-trademarks.yml", + "html": "mit-no-trademarks.html", + "license": "mit-no-trademarks.LICENSE" + }, + { + "license_key": "mit-old-style", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-old-style", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, distribute, and sell this software and\nits documentation for any purpose is hereby granted without fee, provided that\nthe above copyright notice appear in all copies and that both that\ncopyright notice and this permission notice appear in supporting\ndocumentation. No representations are made about the suitability of this\nsoftware for any purpose. It is provided \"as is\" without express or\nimplied warranty.", + "json": "mit-old-style.json", + "yaml": "mit-old-style.yml", + "html": "mit-old-style.html", + "license": "mit-old-style.LICENSE" + }, + { + "license_key": "mit-old-style-no-advert", + "category": "Permissive", + "spdx_license_key": "NTP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose and without fee is hereby granted,\nprovided that the above copyright notice appear in all copies and\nthat both that copyright notice and this permission notice appear in\nsupporting documentation, and that the name of the authors not be\nused in advertising or publicity pertaining to distribution of the\nsoftware without specific, written prior permission. The authors\nmakes no representations about the suitability of this software for any\npurpose. It is provided \"as is\" without express or implied warranty.", + "json": "mit-old-style-no-advert.json", + "yaml": "mit-old-style-no-advert.yml", + "html": "mit-old-style-no-advert.html", + "license": "mit-old-style-no-advert.LICENSE" + }, + { + "license_key": "mit-old-style-sparse", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-old-style-sparse", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software and\nits documentation for any purpose and without fee is hereby granted,\nprovided that the copyright notices appear in all copies and\nsupporting documentation and that the authors and the University of\nCalifornia are properly credited. The authors and the University of\nCalifornia make no representations as to the suitability of this\nsoftware for any purpose. It is provided `as is', without express\nor implied warranty.", + "json": "mit-old-style-sparse.json", + "yaml": "mit-old-style-sparse.yml", + "html": "mit-old-style-sparse.html", + "license": "mit-old-style-sparse.LICENSE" + }, + { + "license_key": "mit-readme", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-readme", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and the associated README documentation file (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "mit-readme.json", + "yaml": "mit-readme.yml", + "html": "mit-readme.html", + "license": "mit-readme.LICENSE" + }, + { + "license_key": "mit-specification-disclaimer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-specification-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Use and copying of this software and preparation of derivative works based\nupon this software are permitted. Any distribution of this software or\nderivative works must comply with all applicable United States export control\nlaws.\n\nThis software is made available AS IS, and Xerox Corporation makes no warranty\nabout the software, its performance or its conformity to any specification.", + "json": "mit-specification-disclaimer.json", + "yaml": "mit-specification-disclaimer.yml", + "html": "mit-specification-disclaimer.html", + "license": "mit-specification-disclaimer.LICENSE" + }, + { + "license_key": "mit-synopsys", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-synopsys", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a\ncopy of this software annotated with this license and the Software, to\ndeal in the Software without restriction, including without limitation\nthe rights to use, copy, modify, merge, publish, distribute, sublicense,\nand/or sell copies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHIS SOFTWARE IS BEING DISTRIBUTED BY SYNOPSYS SOLELY ON AN \"AS IS\"\nBASIS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE ARE HEREBY DISCLAIMED. IN NO EVENT SHALL SYNOPSYS\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\nTHE POSSIBILITY OF SUCH DAMAGE.", + "json": "mit-synopsys.json", + "yaml": "mit-synopsys.yml", + "html": "mit-synopsys.html", + "license": "mit-synopsys.LICENSE" + }, + { + "license_key": "mit-taylor-variant", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-taylor-variant", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nThe software is provided \"as is\", without warranty of any kind, including all\nimplied warranties of merchantability and fitness. In no event shall the authors\nor copyright holders be liable for any claim, damages, or other liability,\nwhether in an action of contract, tort, or otherwise, arising from, out of, or\nin connection with the software or the use or other dealings in the software.", + "json": "mit-taylor-variant.json", + "yaml": "mit-taylor-variant.yml", + "html": "mit-taylor-variant.html", + "license": "mit-taylor-variant.LICENSE" + }, + { + "license_key": "mit-veillard-variant", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-veillard-variant", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF\nMERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND\nCONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER.", + "json": "mit-veillard-variant.json", + "yaml": "mit-veillard-variant.yml", + "html": "mit-veillard-variant.html", + "license": "mit-veillard-variant.LICENSE" + }, + { + "license_key": "mit-with-modification-obligations", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-modification-obligations", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mit-with-modification-obligations" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Export of this software from the United States of America may\nrequire a specific license from the United States Government.\nIt is the responsibility of any person or organization contemplating\nexport to obtain such a license before exporting.\n\nWITHIN THAT CONSTRAINT, permission to use, copy, modify, and\ndistribute this software and its documentation for any purpose and\nwithout fee is hereby granted, provided that the above copyright\nnotice appear in all copies and that both that copyright notice and\nthis permission notice appear in supporting documentation, and that\nthe name of M.I.T. not be used in advertising or publicity pertaining\nto distribution of the software without specific, written prior\npermission. Furthermore if you modify this software you must label\nyour software as modified software and not distribute it in such a\nfashion that it might be confused with the original M.I.T. software.\nM.I.T. makes no representations about the suitability of\nthis software for any purpose. It is provided \"as is\" without express\nor implied warranty.", + "json": "mit-with-modification-obligations.json", + "yaml": "mit-with-modification-obligations.yml", + "html": "mit-with-modification-obligations.html", + "license": "mit-with-modification-obligations.LICENSE" + }, + { + "license_key": "mit-xfig", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-xfig", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Any party obtaining a copy of these files is granted, free of charge, a\nfull and unrestricted irrevocable, world-wide, paid up, royalty-free,\nnonexclusive right and license to deal in this software and\ndocumentation files (the \"Software\"), including without limitation the\nrights to use, copy, modify, merge, publish and/or distribute copies of\nthe Software, and to permit persons who receive copies from any such \nparty to do so, with the only requirement being that this copyright \nnotice remain intact.", + "json": "mit-xfig.json", + "yaml": "mit-xfig.yml", + "html": "mit-xfig.html", + "license": "mit-xfig.LICENSE" + }, + { + "license_key": "mod-dav-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mod-dav-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "mod_dav License Agreement v1\n\nThe following text constitutes the license agreement for the mod_dav software.\n\nNote: the copyright years were updated on February 3rd, 2000 and January 19th, 2001. No other changes were made to the license.\n\nCopyright \u00a9 1998-2001 Greg Stein. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. 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.\n\n3. All advertising materials mentioning features or use of this software must display the following acknowledgment:\n\nThis product includes software developed by Greg Stein for use in the mod_dav module for Apache (http://www.webdav.org/mod_dav/).\n\n4. Products derived from this software may not be called \"mod_dav\" nor may \"mod_dav\" appear in their names without prior written permission of Greg Stein. For written permission, please contact gstein@lyra.org.\n\n5. Redistributions of any form whatsoever must retain the following acknowledgment:\n\nThis product includes software developed by Greg Stein for use in the mod_dav module for Apache (http://www.webdav.org/mod_dav/).\n\nTHIS SOFTWARE IS PROVIDED BY GREG STEIN ``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 GREG STEIN OR THE SOFTWARE'S 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.\n\nGreg Stein \nLast modified: Thu Feb 3 17:34:42 PST 2000", + "json": "mod-dav-1.0.json", + "yaml": "mod-dav-1.0.yml", + "html": "mod-dav-1.0.html", + "license": "mod-dav-1.0.LICENSE" + }, + { + "license_key": "monetdb-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-monetdb-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MonetDB Public License Version 1.1\nThis License is a derivative of the Mozilla Public License (MPL) Version 1.1, where the difference is that all references to \"Mozilla\" and \"Netscape\" have been changed to \"MonetDB\", and that the License has been made subject to the laws of The Netherlands.\n\n1. Definitions.\n1.0.1. \"Commercial Use\"\nmeans distribution or otherwise making the Covered Code available to a third party.\n1.1. \"Contributor\"\nmeans each entity that creates or contributes to the creation of Modifications.\n1.2. \"Contributor Version\"\nmeans the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor.\n1.3. \"Covered Code\"\nmeans the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof.\n1.4. \"Electronic Distribution Mechanism\"\nmeans a mechanism generally accepted in the software development community for the electronic transfer of data.\n1.5. \"Executable\"\nmeans Covered Code in any form other than Source Code.\n1.6. \"Initial Developer\"\nmeans the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A.\n1.7. \"Larger Work\"\nmeans a work which combines Covered Code or portions thereof with code not governed by the terms of this License.\n1.8. \"License\"\nmeans this document.\n1.8.1. \"Licensable\"\nmeans having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein.\n1.9. \"Modifications\"\nmeans any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is:\n\nAny addition to or deletion from the contents of a file containing Original Code or previous Modifications.\nAny new file that contains any part of the Original Code or previous Modifications.\n1.10. \"Original Code\"\nmeans Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License.\n1.10.1. \"Patent Claims\"\nmeans any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor.\n1.11. \"Source Code\"\nmeans the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge.\n1.12. \"You\" (or \"Your\")\nmeans an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, \"You\" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, \"control\" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2. Source Code License.\n2.1. The Initial Developer Grant.\nThe Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims:\nunder intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and\nunder Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof).\nthe licenses granted in this Section 2.1 (a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License.\nNotwithstanding Section 2.1 (b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices.\n\n2.2. Contributor Grant.\nSubject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license\nunder intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and\nunder Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination).\nthe licenses granted in Sections 2.2 (a) and 2.2 (b) are effective on the date Contributor first makes Commercial Use of the Covered Code.\nNotwithstanding Section 2.2 (b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor.\n\n3. Distribution Obligations.\n\n3.1. Application of License.\nThe Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5.\n\n3.2. Availability of Source Code.\nAny Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\n3.3. Description of Modifications.\nYou must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters\n(a) Third Party Claims\nIf Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled \"LEGAL\" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained.\n\n(b) Contributor APIs\nIf Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the legal file.\n\n(c) Representations.\nContributor represents that, except as disclosed pursuant to Section 3.4 (a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License.\n\n3.5. Required Notices.\nYou must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions.\nYou may distribute Covered Code in Executable form only if the requirements of Sections 3.1, 3.2, 3.3, 3.4 and 3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer.\n\n3.7. Larger Works.\nYou may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\nIf it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the legal file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n\n5. Application of this License.\nThis License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n6.1. New Versions\nMonetDB B.V. may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number.\n\n6.2. Effect of New Versions\nOnce Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by MonetDB B.V. No one other than MonetDB B.V. has the right to modify the terms applicable to Covered Code created under this License.\n\n6.3. Derivative Works\nIf You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases \"MonetDB\" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the MonetDB Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.)\n\n7. Disclaimer of warranty\nCovered code is provided under this license on an \"as is\" basis, without warranty of any kind, either expressed or implied, including, without limitation, warranties that the covered code is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the covered code is with you. Should any covered code prove defective in any respect, you (not the initial developer or any other contributor) assume the cost of any necessary servicing, repair or correction. This disclaimer of warranty constitutes an essential part of this license. No use of any covered code is authorized hereunder except under this disclaimer.\n\n8. Termination\n8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.\n\n8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as \"Participant\") alleging that:\nsuch Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above.\nany software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant.\n\n8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination.\n\n9. Limitation of liability\nUnder no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall you, the initial developer, any other contributor, or any distributor of covered code, or any supplier of any of such parties, be liable to any person for any indirect, special, incidental, or consequential damages of any character including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to you.\n\n10. U.S. government end users\nThe Covered Code is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n\n11. Miscellaneous\nThis License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by the laws of The Netherlands and You hereby irrevocably agree that the Courts of Amsterdam, The Netherlands, are to have jurisdiction to settle any disputes which may arise out of or in connection with this License. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n12. Responsibility for claims\nAs between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\n13. Multiple-licensed code\nInitial Developer may designate portions of the Covered Code as \"Multiple-Licensed\". \"Multiple-Licensed\" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the MonetDB Public License or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A.\n\nExhibit A - MonetDB Public License.\n\"The contents of this file are subject to the MonetDB Public License\nVersion 1.1 (the \"License\"); you may not use this file except in\ncompliance with the License. You may obtain a copy of the License at\nhttp://www.monetdb.org/Legal/MonetDBLicense\n\nSoftware distributed under the License is distributed on an \"AS IS\"\nbasis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the\nLicense for the specific language governing rights and limitations\nunder the License.\n\nThe Original Code is .\n\nThe Initial Developer of the Original Code is .\nPortions created by are Copyright (C) \n . All Rights Reserved.\n\nContributor(s): .\n\nAlternatively, the contents of this file may be used under the terms\nof the license (the \"[ ] License\"), in which case the\nprovisions of [ ] License are applicable instead of those\nabove. If you wish to allow use of your version of this file only\nunder the terms of the [ ] License and not to allow others to use\nyour version of this file under the MonetDB Public License, indicate\nyour decision by deleting the provisions above and replace them with\nthe notice and other provisions required by the [ ] License. If you\ndo not delete the provisions above, a recipient may use your version\nof this file under either the MonetDB Public License or the [ ] License.\"\n\nNOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.", + "json": "monetdb-1.1.json", + "yaml": "monetdb-1.1.yml", + "html": "monetdb-1.1.html", + "license": "monetdb-1.1.LICENSE" + }, + { + "license_key": "mongodb-sspl-1.0", + "category": "Source-available", + "spdx_license_key": "SSPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " Server Side Public License\n VERSION 1, OCTOBER 16, 2018\n\n Copyright \u00a9 2018 MongoDB, Inc.\n\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n \n \u201cThis License\u201d refers to Server Side Public License.\n\n \u201cCopyright\u201d also means copyright-like laws that apply to other kinds of\n works, such as semiconductor masks.\n\n \u201cThe Program\u201d refers to any copyrightable work licensed under this\n License. Each licensee is addressed as \u201cyou\u201d. \u201cLicensees\u201d and\n \u201crecipients\u201d may be individuals or organizations.\n\n To \u201cmodify\u201d a work means to copy from or adapt all or part of the work in\n a fashion requiring copyright permission, other than the making of an\n exact copy. The resulting work is called a \u201cmodified version\u201d of the\n earlier work or a work \u201cbased on\u201d the earlier work.\n\n A \u201ccovered work\u201d means either the unmodified Program or a work based on\n the Program.\n\n To \u201cpropagate\u201d a work means to do anything with it that, without\n permission, would make you directly or secondarily liable for\n infringement under applicable copyright law, except executing it on a\n computer or modifying a private copy. Propagation includes copying,\n distribution (with or without modification), making available to the\n public, and in some countries other activities as well.\n\n To \u201cconvey\u201d a work means any kind of propagation that enables other\n parties to make or receive copies. Mere interaction with a user through a\n computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \u201cAppropriate Legal Notices\u201d to the\n extent that it includes a convenient and prominently visible feature that\n (1) displays an appropriate copyright notice, and (2) tells the user that\n there is no warranty for the work (except to the extent that warranties\n are provided), that licensees may convey the work under this License, and\n how to view a copy of this License. If the interface presents a list of\n user commands or options, such as a menu, a prominent item in the list\n meets this criterion.\n\n 1. Source Code.\n\n The \u201csource code\u201d for a work means the preferred form of the work for\n making modifications to it. \u201cObject code\u201d means any non-source form of a\n work.\n\n A \u201cStandard Interface\u201d means an interface that either is an official\n standard defined by a recognized standards body, or, in the case of\n interfaces specified for a particular programming language, one that is\n widely used among developers working in that language. The \u201cSystem\n Libraries\u201d of an executable work include anything, other than the work as\n a whole, that (a) is included in the normal form of packaging a Major\n Component, but which is not part of that Major Component, and (b) serves\n only to enable use of the work with that Major Component, or to implement\n a Standard Interface for which an implementation is available to the\n public in source code form. A \u201cMajor Component\u201d, in this context, means a\n major essential component (kernel, window system, and so on) of the\n specific operating system (if any) on which the executable work runs, or\n a compiler used to produce the work, or an object code interpreter used\n to run it.\n\n The \u201cCorresponding Source\u201d for a work in object code form means all the\n source code needed to generate, install, and (for an executable work) run\n the object code and to modify the work, including scripts to control\n those activities. However, it does not include the work's System\n Libraries, or general-purpose tools or generally available free programs\n which are used unmodified in performing those activities but which are\n not part of the work. For example, Corresponding Source includes\n interface definition files associated with source files for the work, and\n the source code for shared libraries and dynamically linked subprograms\n that the work is specifically designed to require, such as by intimate\n data communication or control flow between those subprograms and other\n parts of the work.\n\n The Corresponding Source need not include anything that users can\n regenerate automatically from other parts of the Corresponding Source.\n\n The Corresponding Source for a work in source code form is that same work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\n copyright on the Program, and are irrevocable provided the stated\n conditions are met. This License explicitly affirms your unlimited\n permission to run the unmodified Program, subject to section 13. The\n output from running a covered work is covered by this License only if the\n output, given its content, constitutes a covered work. This License\n acknowledges your rights of fair use or other equivalent, as provided by\n copyright law. Subject to section 13, you may make, run and propagate\n covered works that you do not convey, without conditions so long as your\n license otherwise remains in force. You may convey covered works to\n others for the sole purpose of having them make modifications exclusively\n for you, or provide you with facilities for running those works, provided\n that you comply with the terms of this License in conveying all\n material for which you do not control copyright. Those thus making or\n running the covered works for you must do so exclusively on your\n behalf, under your direction and control, on terms that prohibit them\n from making any copies of your copyrighted material outside their\n relationship with you.\n\n Conveying under any other circumstances is permitted solely under the\n conditions stated below. Sublicensing is not allowed; section 10 makes it\n unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\n measure under any applicable law fulfilling obligations under article 11\n of the WIPO copyright treaty adopted on 20 December 1996, or similar laws\n prohibiting or restricting circumvention of such measures.\n\n When you convey a covered work, you waive any legal power to forbid\n circumvention of technological measures to the extent such circumvention is\n effected by exercising rights under this License with respect to the\n covered work, and you disclaim any intention to limit operation or\n modification of the work as a means of enforcing, against the work's users,\n your or third parties' legal rights to forbid circumvention of\n technological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\n receive it, in any medium, provided that you conspicuously and\n appropriately publish on each copy an appropriate copyright notice; keep\n intact all notices stating that this License and any non-permissive terms\n added in accord with section 7 apply to the code; keep intact all notices\n of the absence of any warranty; and give all recipients a copy of this\n License along with the Program. You may charge any price or no price for\n each copy that you convey, and you may offer support or warranty\n protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\n produce it from the Program, in the form of source code under the terms\n of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified it,\n and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is released\n under this License and any conditions added under section 7. This\n requirement modifies the requirement in section 4 to \u201ckeep intact all\n notices\u201d.\n\n c) You must license the entire work, as a whole, under this License to\n anyone who comes into possession of a copy. This License will therefore\n apply, along with any applicable section 7 additional terms, to the\n whole of the work, and all its parts, regardless of how they are\n packaged. This License gives no permission to license the work in any\n other way, but it does not invalidate such permission if you have\n separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your work\n need not make them do so.\n\n A compilation of a covered work with other separate and independent\n works, which are not by their nature extensions of the covered work, and\n which are not combined with it such as to form a larger program, in or on\n a volume of a storage or distribution medium, is called an \u201caggregate\u201d if\n the compilation and its resulting copyright are not used to limit the\n access or legal rights of the compilation's users beyond what the\n individual works permit. Inclusion of a covered work in an aggregate does\n not cause this License to apply to the other parts of the aggregate.\n \n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms of\n sections 4 and 5, provided that you also convey the machine-readable\n Corresponding Source under the terms of this License, in one of these\n ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium customarily\n used for software interchange.\n \n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a written\n offer, valid for at least three years and valid for as long as you\n offer spare parts or customer support for that product model, to give\n anyone who possesses the object code either (1) a copy of the\n Corresponding Source for all the software in the product that is\n covered by this License, on a durable physical medium customarily used\n for software interchange, for a price no more than your reasonable cost\n of physically performing this conveying of source, or (2) access to\n copy the Corresponding Source from a network server at no charge.\n \n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This alternative is\n allowed only occasionally and noncommercially, and only if you received\n the object code with such an offer, in accord with subsection 6b.\n \n d) Convey the object code by offering access from a designated place\n (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to copy\n the object code is a network server, the Corresponding Source may be on\n a different server (operated by you or a third party) that supports\n equivalent copying facilities, provided you maintain clear directions\n next to the object code saying where to find the Corresponding Source.\n Regardless of what server hosts the Corresponding Source, you remain\n obligated to ensure that it is available for as long as needed to\n satisfy these requirements.\n \n e) Convey the object code using peer-to-peer transmission, provided you\n inform other peers where the object code and Corresponding Source of\n the work are being offered to the general public at no charge under\n subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\n from the Corresponding Source as a System Library, need not be included\n in conveying the object code work.\n\n A \u201cUser Product\u201d is either (1) a \u201cconsumer product\u201d, which means any\n tangible personal property which is normally used for personal, family,\n or household purposes, or (2) anything designed or sold for incorporation\n into a dwelling. In determining whether a product is a consumer product,\n doubtful cases shall be resolved in favor of coverage. For a particular\n product received by a particular user, \u201cnormally used\u201d refers to a\n typical or common use of that class of product, regardless of the status\n of the particular user or of the way in which the particular user\n actually uses, or expects or is expected to use, the product. A product\n is a consumer product regardless of whether the product has substantial\n commercial, industrial or non-consumer uses, unless such uses represent\n the only significant mode of use of the product.\n\n \u201cInstallation Information\u201d for a User Product means any methods,\n procedures, authorization keys, or other information required to install\n and execute modified versions of a covered work in that User Product from\n a modified version of its Corresponding Source. The information must\n suffice to ensure that the continued functioning of the modified object\n code is in no case prevented or interfered with solely because\n modification has been made.\n\n If you convey an object code work under this section in, or with, or\n specifically for use in, a User Product, and the conveying occurs as part\n of a transaction in which the right of possession and use of the User\n Product is transferred to the recipient in perpetuity or for a fixed term\n (regardless of how the transaction is characterized), the Corresponding\n Source conveyed under this section must be accompanied by the\n Installation Information. But this requirement does not apply if neither\n you nor any third party retains the ability to install modified object\n code on the User Product (for example, the work has been installed in\n ROM).\n\n The requirement to provide Installation Information does not include a\n requirement to continue to provide support service, warranty, or updates\n for a work that has been modified or installed by the recipient, or for\n the User Product in which it has been modified or installed. Access\n to a network may be denied when the modification itself materially\n and adversely affects the operation of the network or violates the\n rules and protocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided, in\n accord with this section must be in a format that is publicly documented\n (and with an implementation available to the public in source code form),\n and must require no special password or key for unpacking, reading or\n copying.\n\n 7. Additional Terms.\n\n \u201cAdditional permissions\u201d are terms that supplement the terms of this\n License by making exceptions from one or more of its conditions.\n Additional permissions that are applicable to the entire Program shall be\n treated as though they were included in this License, to the extent that\n they are valid under applicable law. If additional permissions apply only\n to part of the Program, that part may be used separately under those\n permissions, but the entire Program remains governed by this License\n without regard to the additional permissions. When you convey a copy of\n a covered work, you may at your option remove any additional permissions\n from that copy, or from any part of it. (Additional permissions may be\n written to require their own removal in certain cases when you modify the\n work.) You may place additional permissions on material, added by you to\n a covered work, for which you have or can give appropriate copyright\n permission.\n\n Notwithstanding any other provision of this License, for material you add\n to a covered work, you may (if authorized by the copyright holders of\n that material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some trade\n names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that material\n by anyone who conveys the material (or modified versions of it) with\n contractual assumptions of liability to the recipient, for any\n liability that these contractual assumptions directly impose on those\n licensors and authors.\n\n All other non-permissive additional terms are considered \u201cfurther\n restrictions\u201d within the meaning of section 10. If the Program as you\n received it, or any part of it, contains a notice stating that it is\n governed by this License along with a term that is a further restriction,\n you may remove that term. If a license document contains a further\n restriction but permits relicensing or conveying under this License, you\n may add to a covered work material governed by the terms of that license\n document, provided that the further restriction does not survive such\n relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you must\n place, in the relevant source files, a statement of the additional terms\n that apply to those files, or a notice indicating where to find the\n applicable terms. Additional terms, permissive or non-permissive, may be\n stated in the form of a separately written license, or stated as\n exceptions; the above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\n provided under this License. Any attempt otherwise to propagate or modify\n it is void, and will automatically terminate your rights under this\n License (including any patent licenses granted under the third paragraph\n of section 11).\n\n However, if you cease all violation of this License, then your license\n from a particular copyright holder is reinstated (a) provisionally,\n unless and until the copyright holder explicitly and finally terminates\n your license, and (b) permanently, if the copyright holder fails to\n notify you of the violation by some reasonable means prior to 60 days\n after the cessation.\n\n Moreover, your license from a particular copyright holder is reinstated\n permanently if the copyright holder notifies you of the violation by some\n reasonable means, this is the first time you have received notice of\n violation of this License (for any work) from that copyright holder, and\n you cure the violation prior to 30 days after your receipt of the notice.\n\n Termination of your rights under this section does not terminate the\n licenses of parties who have received copies or rights from you under\n this License. If your rights have been terminated and not permanently\n reinstated, you do not qualify to receive new licenses for the same\n material under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or run a\n copy of the Program. Ancillary propagation of a covered work occurring\n solely as a consequence of using peer-to-peer transmission to receive a\n copy likewise does not require acceptance. However, nothing other than\n this License grants you permission to propagate or modify any covered\n work. These actions infringe copyright if you do not accept this License.\n Therefore, by modifying or propagating a covered work, you indicate your\n acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically receives\n a license from the original licensors, to run, modify and propagate that\n work, subject to this License. You are not responsible for enforcing\n compliance by third parties with this License.\n\n An \u201centity transaction\u201d is a transaction transferring control of an\n organization, or substantially all assets of one, or subdividing an\n organization, or merging organizations. If propagation of a covered work\n results from an entity transaction, each party to that transaction who\n receives a copy of the work also receives whatever licenses to the work\n the party's predecessor in interest had or could give under the previous\n paragraph, plus a right to possession of the Corresponding Source of the\n work from the predecessor in interest, if the predecessor has it or can\n get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the rights\n granted or affirmed under this License. For example, you may not impose a\n license fee, royalty, or other charge for exercise of rights granted\n under this License, and you may not initiate litigation (including a\n cross-claim or counterclaim in a lawsuit) alleging that any patent claim\n is infringed by making, using, selling, offering for sale, or importing\n the Program or any portion of it.\n\n 11. Patents.\n\n A \u201ccontributor\u201d is a copyright holder who authorizes use under this\n License of the Program or a work on which the Program is based. The work\n thus licensed is called the contributor's \u201ccontributor version\u201d.\n\n A contributor's \u201cessential patent claims\u201d are all patent claims owned or\n controlled by the contributor, whether already acquired or hereafter\n acquired, that would be infringed by some manner, permitted by this\n License, of making, using, or selling its contributor version, but do not\n include claims that would be infringed only as a consequence of further\n modification of the contributor version. For purposes of this definition,\n \u201ccontrol\u201d includes the right to grant patent sublicenses in a manner\n consistent with the requirements of this License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\n patent license under the contributor's essential patent claims, to make,\n use, sell, offer for sale, import and otherwise run, modify and propagate\n the contents of its contributor version.\n\n In the following three paragraphs, a \u201cpatent license\u201d is any express\n agreement or commitment, however denominated, not to enforce a patent\n (such as an express permission to practice a patent or covenant not to\n sue for patent infringement). To \u201cgrant\u201d such a patent license to a party\n means to make such an agreement or commitment not to enforce a patent\n against the party.\n\n If you convey a covered work, knowingly relying on a patent license, and\n the Corresponding Source of the work is not available for anyone to copy,\n free of charge and under the terms of this License, through a publicly\n available network server or other readily accessible means, then you must\n either (1) cause the Corresponding Source to be so available, or (2)\n arrange to deprive yourself of the benefit of the patent license for this\n particular work, or (3) arrange, in a manner consistent with the\n requirements of this License, to extend the patent license to downstream\n recipients. \u201cKnowingly relying\u201d means you have actual knowledge that, but\n for the patent license, your conveying the covered work in a country, or\n your recipient's use of the covered work in a country, would infringe\n one or more identifiable patents in that country that you have reason\n to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\n arrangement, you convey, or propagate by procuring conveyance of, a\n covered work, and grant a patent license to some of the parties receiving\n the covered work authorizing them to use, propagate, modify or convey a\n specific copy of the covered work, then the patent license you grant is\n automatically extended to all recipients of the covered work and works\n based on it.\n\n A patent license is \u201cdiscriminatory\u201d if it does not include within the\n scope of its coverage, prohibits the exercise of, or is conditioned on\n the non-exercise of one or more of the rights that are specifically\n granted under this License. You may not convey a covered work if you are\n a party to an arrangement with a third party that is in the business of\n distributing software, under which you make payment to the third party\n based on the extent of your activity of conveying the work, and under\n which the third party grants, to any of the parties who would receive the\n covered work from you, a discriminatory patent license (a) in connection\n with copies of the covered work conveyed by you (or copies made from\n those copies), or (b) primarily for and in connection with specific\n products or compilations that contain the covered work, unless you\n entered into that arrangement, or that patent license was granted, prior\n to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting any\n implied license or other defenses to infringement that may otherwise be\n available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\n otherwise) that contradict the conditions of this License, they do not\n excuse you from the conditions of this License. If you cannot use,\n propagate or convey a covered work so as to satisfy simultaneously your\n obligations under this License and any other pertinent obligations, then\n as a consequence you may not use, propagate or convey it at all. For\n example, if you agree to terms that obligate you to collect a royalty for\n further conveying from those to whom you convey the Program, the only way\n you could satisfy both those terms and this License would be to refrain\n entirely from conveying the Program.\n\n 13. Offering the Program as a Service.\n\n If you make the functionality of the Program or a modified version\n available to third parties as a service, you must make the Service Source\n Code available via network download to everyone at no charge, under the\n terms of this License. Making the functionality of the Program or\n modified version available to third parties as a service includes,\n without limitation, enabling third parties to interact with the\n functionality of the Program or modified version remotely through a\n computer network, offering a service the value of which entirely or\n primarily derives from the value of the Program or modified version, or\n offering a service that accomplishes for users the primary purpose of the\n Software or modified version.\n\n \u201cService Source Code\u201d means the Corresponding Source for the Program or\n the modified version, and the Corresponding Source for all programs that\n you use to make the Program or modified version available as a service,\n including, without limitation, management software, user interfaces,\n application program interfaces, automation software, monitoring software,\n backup software, storage software and hosting software, all such that a\n user could run an instance of the service using the Service Source Code\n you make available. \n\n 14. Revised Versions of this License.\n\n MongoDB, Inc. may publish revised and/or new versions of the Server Side\n Public License from time to time. Such new versions will be similar in\n spirit to the present version, but may differ in detail to address new\n problems or concerns.\n\n Each version is given a distinguishing version number. If the Program\n specifies that a certain numbered version of the Server Side Public\n License \u201cor any later version\u201d applies to it, you have the option of\n following the terms and conditions either of that numbered version or of\n any later version published by MongoDB, Inc. If the Program does not\n specify a version number of the Server Side Public License, you may\n choose any version ever published by MongoDB, Inc.\n\n If the Program specifies that a proxy can decide which future versions of\n the Server Side Public License can be used, that proxy's public statement\n of acceptance of a version permanently authorizes you to choose that\n version for the Program.\n\n Later license versions may give you additional or different permissions.\n However, no additional obligations are imposed on any author or copyright\n holder as a result of your choosing to follow a later version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\n APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\n HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \u201cAS IS\u201d WITHOUT WARRANTY\n OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\n THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\n IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\n ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n \n 16. Limitation of Liability.\n \n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\n WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\n THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING\n ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF\n THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO\n LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU\n OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\n PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGES.\n \n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided above\n cannot be given local legal effect according to their terms, reviewing\n courts shall apply local law that most closely approximates an absolute\n waiver of all civil liability in connection with the Program, unless a\n warranty or assumption of liability accompanies a copy of the Program in\n return for a fee.\n \n END OF TERMS AND CONDITIONS", + "json": "mongodb-sspl-1.0.json", + "yaml": "mongodb-sspl-1.0.yml", + "html": "mongodb-sspl-1.0.html", + "license": "mongodb-sspl-1.0.LICENSE" + }, + { + "license_key": "monkeysaudio", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-monkeysaudio", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Monkey's Audio Program License Agreement\n\n1. Monkey's Audio is completely free for personal, educational, or commercial\nuse.\n\n2. Although the software has been tested thoroughly, the author is in no way\nresponsible for damages due to bugs or misuse.\n\n3. The redistribution of Monkey's Audio is only allowed in cases where the\noriginal installer and components therein have not been modified.\n\n4. The use of Monkey's Audio or any component thereof from another program\nrequires compliance with the 'Monkey's Audio SDK and Source Code License\nAgreement'.\n\n5. Installing and using Monkey's Audio signifies the acceptance of these terms.\nIf you do not agree with any of the above terms, you must cease using Monkey's\nAudio and remove it from your storage device.\n\nMonkey's Audio SDK and Source Code License Agreement\n\n1. The Monkey's Audio SDK and source code can be freely used to add APE format\nplayback, encoding, or tagging support to any product, free or commercial.\n\n2. Monkey's Audio source can be included in GPL and open-source software,\nalthough Monkey's Audio itself will not be subjected to external licensing\nrequirements or other viral source restrictions.\n \n3. Any source code, ideas, or libraries used must be plainly acknowledged in the\nsoftware using the code.\n \n4. Although the software has been tested thoroughly, the author is in no way\nresponsible for damages due to bugs or misuse.\n \n5. If you do not completely agree with all of the previous stipulations, you\nmust cease using this source code and remove it from your storage device.", + "json": "monkeysaudio.json", + "yaml": "monkeysaudio.yml", + "html": "monkeysaudio.html", + "license": "monkeysaudio.LICENSE" + }, + { + "license_key": "motorola", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-motorola", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "THE SOFTWARE is provided on an \"AS IS\" basis and without warranty.\nTo the maximum extent permitted by applicable law,\nMOTOROLA DISCLAIMS ALL WARRANTIES WHETHER EXPRESS OR IMPLIED, \nINCLUDING IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE\nand any warranty against infringement with regard to the SOFTWARE\n(INCLUDING ANY MODIFIED VERSIONS THEREOF) and any accompanying written materials.\n\nTo the maximum extent permitted by applicable law,\nIN NO EVENT SHALL MOTOROLA BE LIABLE FOR ANY DAMAGES WHATSOEVER\n(INCLUDING WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS,\nBUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER PECUNIARY LOSS)\nARISING OF THE USE OR INABILITY TO USE THE SOFTWARE.\nMotorola assumes no responsibility for the maintenance and support of the SOFTWARE.\n\nYou are hereby granted a copyright license to use, modify, and distribute the SOFTWARE\nso long as this entire notice is retained without alteration in any modified and/or\nredistributed versions, and that such modified versions are clearly identified as such.\nNo licenses are granted by implication, estoppel or otherwise under any patents\nor trademarks of Motorola, Inc.", + "json": "motorola.json", + "yaml": "motorola.yml", + "html": "motorola.html", + "license": "motorola.LICENSE" + }, + { + "license_key": "motosoto-0.9.1", + "category": "Copyleft", + "spdx_license_key": "Motosoto", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MOTOSOTO OPEN SOURCE LICENSE - Version 0.9.1\n\nThis Motosoto Open Source License (the \"License\") applies to \"Community Portal Server\" and related software products as well as any updatesor maintenance releases of that software (\"Motosoto Products\") that are distributed by Motosoto.Com B.V. (\"Licensor\"). Any Motosoto Product licensed pursuant to this License is a \"Licensed Product.\" Licensed Product, in its entirety, is protected by Dutch copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product and has been submitted to the Open Software Initiative (OSI) for approval.\n\nPreamble\n\nThis Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble. This License complies with the Open Source Definition and has been approved by Open Source Initiative. Software distributed under this License may be marked as \"OSI Certified Open Source Software.\"\n\nThis License provides that:\n\n 1. You may use, sell or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required.\n\n 2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms \"Licensed Product,\" \"Modifications,\" \"Contributors\" and \"Source Code\" are defined in the License.)\n\n 3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term \"Derivative Works\" is defined in the License.)\n\n 4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others.\n\n 5. You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages.\n\n 6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for the Source Code.\n\n 7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate.\n\nYou may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product.\n\nAlternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.\n\nNew versions of this License may be published from time to time. You may choose to continue to use the license terms in this version of the License or those from the new version. However, only the Licensor has the right to change the License terms as they apply to the Licensed Product. This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License.\n\nLicense Terms\n1. Grant of License From Licensor.\n\nLicensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\n\n a. Use, reproduce, modify, display, perform, sublicense and distribute Licensed Product or portions thereof (including Modifications as hereinafter defined), in both Source Code or as an executable program. \"Source Code\" means the preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product.\n\n b. Create Derivative Works (as that term is defined under Dutch copyright law) of Licensed Product by adding to or deleting from the substance or structure of said Licensed Product.\n\n c. Under claims of patents now or hereafter owned or controlled by Licensor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Licensed Product or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Licensed Product or portions thereof or Derivative Works thereof.\n\n2. Grant of License to Modifications From Contributor.\n\n\"Modifications\" means any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. Hereinafter in this License, the term \"Licensed Product\" shall include all previous Modifications that you receive from any Contributor. By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a \"Contributor\") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\n\n\n\n\n a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\n\n b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\n\n3. Exclusions From License Grant.\n\nNothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license.\n\n4. Your Obligations Regarding Distribution.\n\n a. Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(e).\n b. Availability of Source Code. You must make available, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an \"Electronic Distribution Mechanism\"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of said Licensed Product or Modifications has been made available. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\nc. Description of Modifications. You must cause any Modifications that you create or to which you contribute, and which you distribute, to contain a file documenting the additions, changes or deletions you made to create or contribute to those Modifications, and the dates of any such additions, changes or deletions. You must include a prominent statement that the Modifications are derived, directly or indirectly, from the Licensed Product and include the names of the Licensor and any Contributor to the Licensed Product in (i) the Source Code and (ii) in any notice displayed by a version of the Licensed Product you distribute or in related documentation in which you describe the origin or ownership of the Licensed Product. You may not modify or delete any preexisting copyright notices in the Licensed Product.\n\nd. Intellectual Property Matters.\n\n i. Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled \"LEGAL\" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained.\n ii. Contributor APIs. If your Modifications include an application programming interface (\"API\") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file.\n\n iii. Representations. You represent that, except as disclosed pursuant to 4(d)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License.\n\ne. Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the \"Notice\") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer.\n\nf. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(e) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), (iii) you retain all existing copyright notices in the Licensed Product, and (iv) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.\n g. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto.\n\n5. Inability to Comply Due to Statute or Regulation.\n\nIf it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it.\n\n6. Application of This License.\n\nThis License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference.\n\n7. Versions of This License.\n\n a. Version. The Motosoto Open Source License is derived from the Jabber Open Source License. All changes are related to applicable law and the location of court.\n\n b. New Versions. Licensor may publish from time to time revised and/or new versions of the License.\n\n c. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version. You may also choose to use such Licensed Product under the terms of any subsequent version of the License published by Licensor. No one other than Lic ensor has the right to modify the terms applicable to Licensed Product created under this License.\n d. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor.\n\n8. Disclaimer of Warranty.\n\nLICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n9. Termination.\n\n a. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within thirty (30) days of becoming aware of the breach. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive.\n b. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as \"Respondent\") alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the \"Notice Period\") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period.\n\n c. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license.\n\n d. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and reselle rs) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination.\n\n10. Limitation of Liability.\n\n UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY\u2019S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n11. Responsibility for Claims.\n\nAs between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\n12 .U.S. Government End Users.\n\nThe Licensed Product is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein.\n\n13. Miscellaneous.\n\nThis License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by Dutch law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. You and Licensor expressly waive any rights to a jury trial in any litigation concerning Licensed Product or this License. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n14. Definition of \"You\" in This License.\n \"You\" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, \"you\" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, \"control\" means (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.\n\n15. Glossary.\n\nAll defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses.\n\nContributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2)\n\nDerivative Works: That term as used in this License is defined under Dutch copyright law. (See Section 1(b))\n\nLicense: This Motosoto Open Source License. (See first paragraph of License)\n\nLicensed Product: Any Motosoto Product licensed pursuant to this License. The term\n\n\"Licensed Product\" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)\n\nLicensor: Motosoto.Com B.V.. (See first paragraph of License)\n\nModifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2)\n\nNotice: The notice contained in Exhibit A. (See Section 4(e))\n\nSource Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product.", + "json": "motosoto-0.9.1.json", + "yaml": "motosoto-0.9.1.yml", + "html": "motosoto-0.9.1.html", + "license": "motosoto-0.9.1.LICENSE" + }, + { + "license_key": "moxa-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-moxa-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The software accompanying this license statement (the \u201cSoftware\u201d)\nis the property of Moxa Inc. (the \u201cMoxa\u201d), and is protected by\nUnited States and International Copyright Laws and International\ntreaty provisions. No ownership rights are granted by this\nAgreement or possession of the Software. Therefore, you must treat\nthe Licensed Software like any other copyrighted material. Your\nrights and obligations in its use are described as follows:\n\n1. You may freely redistribute this software under this license.\n2. You may freely download and use this software on Moxa's device.\n3. You may not modify or attempt to reverse engineer the software, or\n make any attempt to change or even examine the source code of the\n software.\n4. You may not re-license or sub-license the software to any person or\n business, using any other license.\n5. Moxa(r) is worldwide registered trademark.", + "json": "moxa-linux-firmware.json", + "yaml": "moxa-linux-firmware.yml", + "html": "moxa-linux-firmware.html", + "license": "moxa-linux-firmware.LICENSE" + }, + { + "license_key": "mozilla-gc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mozilla-gc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED\nOR IMPLIED. ANY USE IS AT YOUR OWN RISK.\n\nPermission is hereby granted to use or copy this program for any\npurpose, provided the above notices are retained on all copies.\n\nPermission to modify the code and to distribute modified code is\ngranted, provided the above notices are retained, and a notice that\nthe code was modified is included with the above copyright notice.", + "json": "mozilla-gc.json", + "yaml": "mozilla-gc.yml", + "html": "mozilla-gc.html", + "license": "mozilla-gc.LICENSE" + }, + { + "license_key": "mozilla-ospl-1.0", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-mozilla-ospl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Mozilla Open Software Patent License Agreement v1\nThis Open Software Patent License Agreement (\"Agreement\") is made between you and the Licensor identified below. For purposes of this Agreement, you means you and your Affiliates, and Licensor means the Mozilla Corporation, Mozilla Foundation and any of their Affiliates.\n\n1.\tDefinitions\n\ta.\t\"Affiliate\" means any entity owned or controlled by you or Licensor, as applicable, either now or in the future.\n\tb.\t\"Mozilla Patents\" means all Patents owned, or licensable as described in this Agreement, at any time during the License Term, by Licensor.\n\tc.\t\"Open Patent Licensing\" means royalty-free and non-discriminatory licensing or cross-licensing arrangements such as open source licenses or open standards licensing.\n\td.\t\"Open Source Software\" means Software that is made generally publicly available under an open source license, which means a license meeting the Open Source Definition as published by the Open Source Initiative. For clarity, Software that is made available under multiple licenses will be considered Open Source Software only to the extent it is used under an open source license.\n\te.\tA \"Participant\" means any party that is bound to any version of this Agreement, including you.\n\tf.\tA \"Patent\" means a patent, and any continuation, divisional, continuation-in-part, or other patent that claims priority therefrom.\n\tg.\t\"Software\" means instructions for programmable physical apparatus, but excludes all physical apparatus, such as computer processors, computer hardware, and peripheral devices. For clarity, \"Software\" excludes semiconductor mask works, and includes services consisting of making available the functionality of software.\n\th.\t\"Your Patents\" means all Patents owned, or licensable as described in this Agreement, at any time during the License Term, by you.\n\n2.\tAcceptance and Effectiveness. You will be bound to this Agreement if you (a) make, use, sell, import or otherwise exploit any Software, or practice any method embodied in Software, in such a fashion that, absent the licenses granted to you herein, would infringe any Licensor Patent; (b) take any action knowingly relying on the licenses granted to you herein, or (c) show in any other reasonable way your intention to be bound to this Agreement. The License Term will begin upon the first to occur of any of a, b, or c of this paragraph and continue unless and until your license is terminated under Section 4. In the event it is determined by a court of competent jurisdiction that this Agreement is not binding on you, then the licenses granted by Licensor and any other Participant to you hereunder will be void ab initio (i.e. will have never been granted to you).\n\n3.\tConditional License\n\ta.\tSubject to Section 3(b), Licensor, on behalf of itself and each of its Affiliates, hereby grants to you and your Affiliates a royalty-free, fully-paid-up, worldwide, non-exclusive, non-transferable license under Licensor Patents to make, have made, use, sell, offer for sale, import, and otherwise exploit any Software and practice any method embodied in Software.\n\tb.\tIn consideration for the rights granted hereunder in Section 3(a), you agree to grant, upon request and upon reasonable, non-discriminatory and royalty free terms and conditions, to Licensor and any Participant a royalty-free, fully-paid-up, worldwide, non-exclusive, non-transferable license under your Patents to make, have made, use, sell, offer for sale, import, and otherwise exploit any Open Source Software and practice any method embodied in Open Source Software. As used in this paragraph, \"reasonable\" means, without limitation, that such terms must not place any restrictions on the practice of your Patents that would prohibit use, modification and redistribution of the applicable software under the terms of Open Source Licenses. By way of example and not limitation, such terms must not restrict the field of use of the Software, or prohibit modification of the Software.\n\tc.\tMozilla or others may license Patents to you under other terms, such as Open Patent Licensing efforts, and any other such license granted to you will not limit your rights under this License.\n\td.\tDuring the License Term, you may transfer your rights, licenses and obligations under this Agreement in connection with a merger, acquisition, or sale of all or substantially all of your assets related to this Agreement, to a party that (1) expresses in writing its intention to be bound (sufficient to meet the conditions of Section 2), and (2) has not asserted Claims as described in Section 4 prior to the date of transfer.\n\te.\tYou acknowledge that this Agreement does not reflect a royalty that might otherwise have been negotiated at arms\u2019 length for any Patent, and that this Agreement is not intended to affect any determination of whether infringement of any Patent may be adequately compensated by money damages.\n\tf.\tEach Participant is an intended third party beneficiary of this Agreement.\n\n4.\tTermination\n\ta.\tIf you bring a Claim, the licenses granted to you by Mozilla and all other Participants will immediately terminate as of the date you bring such Claim. For purposes of the foregoing, a \"Claim\" means (a) filing any lawsuit or other legal action (including any action to enjoin import of products) asserting infringement of your Patent by Software, (b) making any written claims of infringement of any of your Patents by Software, including requests to cease and desist infringement, or (c) assisting any third party to bring any such claim. However, \"Claims\" will not include (x) claims of patent infringement brought by you as counter-claims or cross-claims in any third party claim of patent infringement against you; or (y) invitations or offers to license Patents in connection with Open Patent Licensing.\n\tb.\tYou may terminate the License Term by making a public statement of your intention to no longer be party to this Agreement, stating a date of termination of the License Term no earlier than the date of such statement, and stating in good faith that to your knowledge, you will not infringe any Mozilla Patent as of the end of the License Term. In such case, the licenses granted to you by all Participants will terminate effective as of the end of the License Term, and your licenses under Section 3(b) will also terminate as of the end of the License Term.\n\n5.\tGeneral\n\ta.\tThis is the entire agreement between Mozilla and you on the subject matter of this Agreement. In the event that any term or condition contained in this Agreement shall be determined by any court of competent jurisdiction to be unenforceable by reason of its extending for too great a period of time or over too great a geographical area or by reason of its being too extensive in any other respect, it shall be interpreted to extend only over the maximum period of time for which it may be enforceable and/or over the maximum geographical area as to which it may be enforceable and/or to the maximum extent in all other respects as to which it may be enforceable, all as determined by such court in such action.\n\tb.\tThe text of this Agreement is provided to you under the CC0 1.0 Universal Waiver.\n\tc.\tAny law or regulation which provides that the language of a contract shall be construed against the drafter will not be used to construe the terms of this Agreement against any Participant.\n\nIf you would like to show your intention to be bound by this Agreement, you may wish to make the following statement: \"ZXQ, Inc. hereby states that it intends to be bound by the Mozilla Open Software Patent License Agreement for Mozilla, version , as of [date].\"\n\nIf you would like to use the text of this agreement for your own patent licensing, you may feel free to do so. However, to avoid confusion please remove all references to \"Mozilla\" from your version of the agreement. You may wish to say that your agreement is \"based on the Mozilla Open Software Patent License Agreement,\" for informational purposes, but you are not required to do so.", + "json": "mozilla-ospl-1.0.json", + "yaml": "mozilla-ospl-1.0.yml", + "html": "mozilla-ospl-1.0.html", + "license": "mozilla-ospl-1.0.LICENSE" + }, + { + "license_key": "mpeg-7", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mpeg-7", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software module was originally developed by\n\n(contributing organizations names)\n\nin the course of development of the MPEG-7 Experimentation Model.\n\nThis software module is an implementation of a part of one or more MPEG-7\nExperimentation Model tools as specified by the MPEG-7 Requirements.\n\nISO/IEC gives users of MPEG-7 free license to this software module or\nmodifications thereof for use in hardware or software products claiming\nconformance to MPEG-7.\n\nThose intending to use this software module in hardware or software products\nare advised that its use may infringe existing patents. The original\ndeveloper of this software module and his/her company, the subsequent\neditors and their companies, and ISO/IEC have no liability for use of this\nsoftware module or modifications thereof in an implementation.\n\nCopyright is not released for non MPEG-7 conforming products. The\norganizations named above retain full right to use the code for their own\npurpose, assign or donate the code to a third party and inhibit third parties\nfrom using the code for non MPEG-7 conforming products.\n\nCopyright (c) 1998-1999.\nmodified by authors to handle small pictures on Jan. 06, 2000.\nmodified by authors for compatibility with Visual C++ Compiler Jan.20, 2000\n\nThis notice must be included in all copies or derivative works.", + "json": "mpeg-7.json", + "yaml": "mpeg-7.yml", + "html": "mpeg-7.html", + "license": "mpeg-7.LICENSE" + }, + { + "license_key": "mpeg-iso", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mpeg-iso", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "/************************* MPEG-2 NBC Audio Decoder **************************\n * *\n\"This software module was originally developed by\nAT&T, Dolby Laboratories, Fraunhofer Gesellschaft IIS in the course of\ndevelopment of the MPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7,\n14496-1,2 and 3. This software module is an implementation of a part of one or more\nMPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4\nAudio standard. ISO/IEC gives users of the MPEG-2 NBC/MPEG-4 Audio\nstandards free license to this software module or modifications thereof for use in\nhardware or software products claiming conformance to the MPEG-2 NBC/MPEG-4\nAudio standards. Those intending to use this software module in hardware or\nsoftware products are advised that this use may infringe existing patents.\nThe original developer of this software module and his/her company, the subsequent\neditors and their companies, and ISO/IEC have no liability for use of this software\nmodule or modifications thereof in an implementation. Copyright is not released for\nnon MPEG-2 NBC/MPEG-4 Audio conforming products.The original developer\nretains full right to use the code for his/her own purpose, assign or donate the\ncode to a third party and to inhibit third party from using the code for non\nMPEG-2 NBC/MPEG-4 Audio conforming products. This copyright notice must\nbe included in all copies or derivative works.\"\nCopyright(c)1996.\n * *\n ****************************************************************************/", + "json": "mpeg-iso.json", + "yaml": "mpeg-iso.yml", + "html": "mpeg-iso.html", + "license": "mpeg-iso.LICENSE" + }, + { + "license_key": "mpeg-ssg", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mpeg-ssg", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Disclaimer of Warranty\n\nThese software programs are available to the user without any license fee or\nroyalty on an \"as is\" basis. The MPEG Software Simulation Group disclaims\nany and all warranties, whether express, implied, or statuary, including any\nimplied warranties or merchantability or of fitness for a particular\npurpose. In no event shall the copyright-holder be liable for any\nincidental, punitive, or consequential damages of any kind whatsoever\narising from the use of these programs.\n\nThis disclaimer of warranty extends to the user of these programs and user's\ncustomers, employees, agents, transferees, successors, and assigns.\n\nThe MPEG Software Simulation Group does not represent or warrant that the\nprograms furnished hereunder are free of infringement of any third-party\npatents.\n\nCommercial implementations of MPEG-1 and MPEG-2 video, including shareware,\nare subject to royalty fees to patent holders. Many of these patents are\ngeneral enough such that they are unavoidable regardless of implementation\ndesign.", + "json": "mpeg-ssg.json", + "yaml": "mpeg-ssg.yml", + "html": "mpeg-ssg.html", + "license": "mpeg-ssg.LICENSE" + }, + { + "license_key": "mpi-permissive", + "category": "Permissive", + "spdx_license_key": "mpi-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted to use, reproduce, prepare derivative\nworks, and to redistribute to others.\n\n\t\t\t DISCLAIMER\n\nNeither Etnus, nor any of their employees, makes any warranty\nexpress or implied, or assumes any legal liability or\nresponsibility for the accuracy, completeness, or usefulness of any\ninformation, apparatus, product, or process disclosed, or\nrepresents that its use would not infringe privately owned rights.", + "json": "mpi-permissive.json", + "yaml": "mpi-permissive.yml", + "html": "mpi-permissive.html", + "license": "mpi-permissive.LICENSE" + }, + { + "license_key": "mpich", + "category": "Permissive", + "spdx_license_key": "mpich2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "COPYRIGHT\n\nThe following is a notice of limited availability of the code, and disclaimer\nwhich must be included in the prologue of the code and in all source listings\nof the code.\n\nCopyright Notice\n + 2002 University of Chicago\n\nPermission is hereby granted to use, reproduce, prepare derivative works, and\nto redistribute to others. This software was authored by:\n\nMathematics and Computer Science Division\nArgonne National Laboratory, Argonne IL 60439\n\n(and)\n\nDepartment of Computer Science\nUniversity of Illinois at Urbana-Champaign\n\n\n GOVERNMENT LICENSE\n\nPortions of this material resulted from work developed under a U.S.\nGovernment Contract and are subject to the following license: the Government\nis granted for itself and others acting on its behalf a paid-up, nonexclusive,\nirrevocable worldwide license in this computer software to reproduce, prepare\nderivative works, and perform publicly and display publicly.\n\n DISCLAIMER\n\nThis computer code material was prepared, in part, as an account of work\nsponsored by an agency of the United States Government. Neither the United\nStates, nor the University of Chicago, nor any of their employees, makes any\nwarranty express or implied, or assumes any legal liability or responsibility\nfor the accuracy, completeness, or usefulness of any information, apparatus,\nproduct, or process disclosed, or represents that its use would not infringe\nprivately owned rights.", + "json": "mpich.json", + "yaml": "mpich.yml", + "html": "mpich.html", + "license": "mpich.LICENSE" + }, + { + "license_key": "mpl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "MPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MOZILLA PUBLIC LICENSE\nVersion 1.0\n\n1. Definitions.\n\n 1.1. ``Contributor'' means each entity that creates or contributes to the creation of Modifications.\n\n 1.2. ``Contributor Version'' means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor.\n\n 1.3. ``Covered Code'' means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof.\n\n 1.4. ``Electronic Distribution Mechanism'' means a mechanism generally accepted in the software development community for the electronic transfer of data.\n\n 1.5. ``Executable'' means Covered Code in any form other than Source Code.\n\n 1.6. ``Initial Developer'' means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A.\n\n 1.7. ``Larger Work'' means a work which combines Covered Code or portions thereof with code not governed by the terms of this License.\n\n 1.8. ``License'' means this document.\n\n 1.9. ``Modifications'' means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is:\n\n A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications.\n\n B. Any new file that contains any part of the Original Code or previous Modifications.\n\n 1.10. ``Original Code'' means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License.\n\n 1.11. ``Source Code'' means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or a list of source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge.\n\n 1.12. ``You'' means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, ``You'' includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, ``control'' means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity.\n\n2. Source Code License.\n\n 2.1. The Initial Developer Grant. The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims:\n\n (a) to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, or as part of a Larger Work; and\n\n (b) under patents now or hereafter owned or controlled by Initial Developer, to make, have made, use and sell (``Utilize'') the Original Code (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Original Code (or portions thereof) and not to any greater extent that may be necessary to Utilize further Modifications or combinations.\n\n 2.2. Contributor Grant. Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims:\n\n (a) to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code or as part of a Larger Work; and\n\n (b) under patents now or hereafter owned or controlled by Contributor, to Utilize the Contributor Version (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Contributor Version (or portions thereof), and not to any greater extent that may be necessary to Utilize further Modifications or combinations.\n\n3. Distribution Obligations.\n\n 3.1. Application of License. The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5.\n\n 3.2. Availability of Source Code. Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\n 3.3. Description of Modifications. You must cause all Covered Code to which you contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code.\n\n 3.4. Intellectual Property Matters\n\n (a) Third Party Claims. If You have knowledge that a party claims an intellectual property right in particular functionality or code (or its utilization under this License), you must include a text file with the source code distribution titled ``LEGAL'' which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after You make Your Modification available as described in Section 3.2, You shall promptly modify the LEGAL file in all copies You make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained.\n\n (b) Contributor APIs. If Your Modification is an application programming interface and You own or control patents which are reasonably necessary to implement that API, you must also include this information in the LEGAL file.\n\n 3.5. Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code, and this License in any documentation for the Source Code, where You describe recipients' rights relating to Covered Code. If You created one or more Modification(s), You may add your name as a Contributor to the notice described in Exhibit A. If it is not possible to put such notice in a particular Source Code file due to its structure, then you must include such notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer.\n\n 3.6. Distribution of Executable Versions. You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer.\n\n 3.7. Larger Works. You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\n\n If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n\n5. Application of this License.\n\n This License applies to code to which the Initial Developer has attached the notice in Exhibit A, and to related Covered Code.\n\n6. Versions of the License.\n\n 6.1. New Versions. Netscape Communications Corporation (``Netscape'') may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number.\n\n 6.2. Effect of New Versions. Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License.\n\n 6.3. Derivative Works. If you create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), you must (a) rename Your license so that the phrases ``Mozilla'', ``MOZILLAPL'', ``MOZPL'', ``Netscape'', ``NPL'' or any confusingly similar phrase do not appear anywhere in your license and (b) otherwise make it clear that your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.)\n\n7. DISCLAIMER OF WARRANTY.\n\n COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN ``AS IS'' BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n\n This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.\n\n9. LIMITATION OF LIABILITY.\n\n UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS.\n\n The Covered Code is a ``commercial item,'' as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of ``commercial computer software'' and ``commercial computer software documentation,'' as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n\n11. MISCELLANEOUS.\n\n This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in, the United States of America: (a) unless otherwise agreed in writing, all disputes relating to this License (excepting any dispute relating to intellectual property rights) shall be subject to final and binding arbitration, with the losing party paying all costs of arbitration; (b) any arbitration relating to this Agreement shall be held in Santa Clara County, California, under the auspices of JAMS/EndDispute; and (c) any litigation relating to this Agreement shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n12. RESPONSIBILITY FOR CLAIMS.\n\n Except in cases where another Contributor has failed to comply with Section 3.4, You are responsible for damages arising, directly or indirectly, out of Your utilization of rights under this License, based on the number of copies of Covered Code you made available, the revenues you received from utilizing such rights, and other relevant factors. You agree to work with affected parties to distribute responsibility on an equitable basis.\n\nEXHIBIT A.\n\n ``The contents of this file are subject to the Mozilla Public License Version 1.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.mozilla.org/MPL/\n\n Software distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.\n\n The Original Code is .\n\n The Initial Developer of the Original Code is . Portions created by are Copyright (C) . All Rights Reserved.\n\n Contributor(s): .''", + "json": "mpl-1.0.json", + "yaml": "mpl-1.0.yml", + "html": "mpl-1.0.html", + "license": "mpl-1.0.LICENSE" + }, + { + "license_key": "mpl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "MPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MOZILLA PUBLIC LICENSE\nVersion 1.1\n\n1. Definitions.\n\n 1.0.1. \"Commercial Use\" means distribution or otherwise making the Covered Code available to a third party.\n\n 1.1. \"Contributor\" means each entity that creates or contributes to the creation of Modifications.\n\n 1.2. \"Contributor Version\" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor.\n\n 1.3. \"Covered Code\" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof.\n\n 1.4. \"Electronic Distribution Mechanism\" means a mechanism generally accepted in the software development community for the electronic transfer of data.\n\n 1.5. \"Executable\" means Covered Code in any form other than Source Code.\n\n 1.6. \"Initial Developer\" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A.\n\n 1.7. \"Larger Work\" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License.\n\n 1.8. \"License\" means this document.\n\n 1.8.1. \"Licensable\" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein.\n\n 1.9. \"Modifications\" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications.\n\n B. Any new file that contains any part of the Original Code or previous Modifications.\n\n 1.10. \"Original Code\" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License.\n\n 1.10.1. \"Patent Claims\" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor.\n\n 1.11. \"Source Code\" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge.\n\n 1.12. \"You\" (or \"Your\") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, \"You\" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, \"control\" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2. Source Code License.\n\n 2.1. The Initial Developer Grant. The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: (a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and\n\n (b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof).\n\n (c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License.\n\n (d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices.\n\n 2.2. Contributor Grant. Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license\n\n (a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and\n\n (b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination).\n\n (c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code.\n\n (d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor.\n\n3. Distribution Obligations.\n\n 3.1. Application of License. The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5.\n\n 3.2. Availability of Source Code. Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\n 3.3. Description of Modifications. You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code.\n\n 3.4. Intellectual Property Matters (a) Third Party Claims. If Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled \"LEGAL\" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained.\n\n (b) Contributor APIs. If Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file.\n\n (c) Representations. Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License.\n\n 3.5. Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer.\n\n 3.6. Distribution of Executable Versions. You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer.\n\n 3.7. Larger Works. You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\n\n If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n\n5. Application of this License.\n\n This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n\n 6.1. New Versions. Netscape Communications Corporation (\"Netscape\") may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number.\n\n 6.2. Effect of New Versions. Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License.\n\n 6.3. Derivative Works. If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases \"Mozilla\", \"MOZILLAPL\", \"MOZPL\", \"Netscape\", \"MPL\", \"NPL\" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.)\n\n7. DISCLAIMER OF WARRANTY.\n\n COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n\n 8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.\n\n 8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as \"Participant\") alleging that:\n\n (a) such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above.\n\n (b) any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant.\n\n 8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license.\n\n 8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination.\n\n9. LIMITATION OF LIABILITY.\n\n UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS.\n\n The Covered Code is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n\n11. MISCELLANEOUS.\n\n This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n12. RESPONSIBILITY FOR CLAIMS.\n\n As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\n13. MULTIPLE-LICENSED CODE.\n\n Initial Developer may designate portions of the Covered Code as \"Multiple-Licensed\". \"Multiple-Licensed\" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the NPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A.\n\nEXHIBIT A -Mozilla Public License.\n\n ``The contents of this file are subject to the Mozilla Public License Version 1.1 (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.mozilla.org/MPL/\n\n Software distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.\n\n The Original Code is .\n\n The Initial Developer of the Original Code is . Portions created by are Copyright (C) . All Rights Reserved.\n\n Contributor(s): .\n\n Alternatively, the contents of this file may be used under the terms of the license (the \"[ ] License\"), in which case the provisions of [ ] License are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the [ ] License and not to allow others to use your version of this file under the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [ ] License. If you do not delete the provisions above, a recipient may use your version of this file under either the MPL or the [ ] License.\"\n\n [NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.]", + "json": "mpl-1.1.json", + "yaml": "mpl-1.1.yml", + "html": "mpl-1.1.html", + "license": "mpl-1.1.LICENSE" + }, + { + "license_key": "mpl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "MPL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Mozilla Public License Version 2.0\n==================================\n\n1. Definitions\n--------------\n\n1.1. \"Contributor\"\n means each individual or legal entity that creates, contributes to\n the creation of, or owns Covered Software.\n\n1.2. \"Contributor Version\"\n means the combination of the Contributions of others (if any) used\n by a Contributor and that particular Contributor's Contribution.\n\n1.3. \"Contribution\"\n means Covered Software of a particular Contributor.\n\n1.4. \"Covered Software\"\n means Source Code Form to which the initial Contributor has attached\n the notice in Exhibit A, the Executable Form of such Source Code\n Form, and Modifications of such Source Code Form, in each case\n including portions thereof.\n\n1.5. \"Incompatible With Secondary Licenses\"\n means\n\n (a) that the initial Contributor has attached the notice described\n in Exhibit B to the Covered Software; or\n\n (b) that the Covered Software was made available under the terms of\n version 1.1 or earlier of the License, but not also under the\n terms of a Secondary License.\n\n1.6. \"Executable Form\"\n means any form of the work other than Source Code Form.\n\n1.7. \"Larger Work\"\n means a work that combines Covered Software with other material, in \n a separate file or files, that is not Covered Software.\n\n1.8. \"License\"\n means this document.\n\n1.9. \"Licensable\"\n means having the right to grant, to the maximum extent possible,\n whether at the time of the initial grant or subsequently, any and\n all of the rights conveyed by this License.\n\n1.10. \"Modifications\"\n means any of the following:\n\n (a) any file in Source Code Form that results from an addition to,\n deletion from, or modification of the contents of Covered\n Software; or\n\n (b) any new file in Source Code Form that contains any Covered\n Software.\n\n1.11. \"Patent Claims\" of a Contributor\n means any patent claim(s), including without limitation, method,\n process, and apparatus claims, in any patent Licensable by such\n Contributor that would be infringed, but for the grant of the\n License, by the making, using, selling, offering for sale, having\n made, import, or transfer of either its Contributions or its\n Contributor Version.\n\n1.12. \"Secondary License\"\n means either the GNU General Public License, Version 2.0, the GNU\n Lesser General Public License, Version 2.1, the GNU Affero General\n Public License, Version 3.0, or any later versions of those\n licenses.\n\n1.13. \"Source Code Form\"\n means the form of the work preferred for making modifications.\n\n1.14. \"You\" (or \"Your\")\n means an individual or a legal entity exercising rights under this\n License. For legal entities, \"You\" includes any entity that\n controls, is controlled by, or is under common control with You. For\n purposes of this definition, \"control\" means (a) the power, direct\n or indirect, to cause the direction or management of such entity,\n whether by contract or otherwise, or (b) ownership of more than\n fifty percent (50%) of the outstanding shares or beneficial\n ownership of such entity.\n\n2. License Grants and Conditions\n--------------------------------\n\n2.1. Grants\n\nEach Contributor hereby grants You a world-wide, royalty-free,\nnon-exclusive license:\n\n(a) under intellectual property rights (other than patent or trademark)\n Licensable by such Contributor to use, reproduce, make available,\n modify, display, perform, distribute, and otherwise exploit its\n Contributions, either on an unmodified basis, with Modifications, or\n as part of a Larger Work; and\n\n(b) under Patent Claims of such Contributor to make, use, sell, offer\n for sale, have made, import, and otherwise transfer either its\n Contributions or its Contributor Version.\n\n2.2. Effective Date\n\nThe licenses granted in Section 2.1 with respect to any Contribution\nbecome effective for each Contribution on the date the Contributor first\ndistributes such Contribution.\n\n2.3. Limitations on Grant Scope\n\nThe licenses granted in this Section 2 are the only rights granted under\nthis License. No additional rights or licenses will be implied from the\ndistribution or licensing of Covered Software under this License.\nNotwithstanding Section 2.1(b) above, no patent license is granted by a\nContributor:\n\n(a) for any code that a Contributor has removed from Covered Software;\n or\n\n(b) for infringements caused by: (i) Your and any other third party's\n modifications of Covered Software, or (ii) the combination of its\n Contributions with other software (except as part of its Contributor\n Version); or\n\n(c) under Patent Claims infringed by Covered Software in the absence of\n its Contributions.\n\nThis License does not grant any rights in the trademarks, service marks,\nor logos of any Contributor (except as may be necessary to comply with\nthe notice requirements in Section 3.4).\n\n2.4. Subsequent Licenses\n\nNo Contributor makes additional grants as a result of Your choice to\ndistribute the Covered Software under a subsequent version of this\nLicense (see Section 10.2) or under the terms of a Secondary License (if\npermitted under the terms of Section 3.3).\n\n2.5. Representation\n\nEach Contributor represents that the Contributor believes its\nContributions are its original creation(s) or it has sufficient rights\nto grant the rights to its Contributions conveyed by this License.\n\n2.6. Fair Use\n\nThis License is not intended to limit any rights You have under\napplicable copyright doctrines of fair use, fair dealing, or other\nequivalents.\n\n2.7. Conditions\n\nSections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted\nin Section 2.1.\n\n3. Responsibilities\n-------------------\n\n3.1. Distribution of Source Form\n\nAll distribution of Covered Software in Source Code Form, including any\nModifications that You create or to which You contribute, must be under\nthe terms of this License. You must inform recipients that the Source\nCode Form of the Covered Software is governed by the terms of this\nLicense, and how they can obtain a copy of this License. You may not\nattempt to alter or restrict the recipients' rights in the Source Code\nForm.\n\n3.2. Distribution of Executable Form\n\nIf You distribute Covered Software in Executable Form then:\n\n(a) such Covered Software must also be made available in Source Code\n Form, as described in Section 3.1, and You must inform recipients of\n the Executable Form how they can obtain a copy of such Source Code\n Form by reasonable means in a timely manner, at a charge no more\n than the cost of distribution to the recipient; and\n\n(b) You may distribute such Executable Form under the terms of this\n License, or sublicense it under different terms, provided that the\n license for the Executable Form does not attempt to limit or alter\n the recipients' rights in the Source Code Form under this License.\n\n3.3. Distribution of a Larger Work\n\nYou may create and distribute a Larger Work under terms of Your choice,\nprovided that You also comply with the requirements of this License for\nthe Covered Software. If the Larger Work is a combination of Covered\nSoftware with a work governed by one or more Secondary Licenses, and the\nCovered Software is not Incompatible With Secondary Licenses, this\nLicense permits You to additionally distribute such Covered Software\nunder the terms of such Secondary License(s), so that the recipient of\nthe Larger Work may, at their option, further distribute the Covered\nSoftware under the terms of either this License or such Secondary\nLicense(s).\n\n3.4. Notices\n\nYou may not remove or alter the substance of any license notices\n(including copyright notices, patent notices, disclaimers of warranty,\nor limitations of liability) contained within the Source Code Form of\nthe Covered Software, except that You may alter any license notices to\nthe extent required to remedy known factual inaccuracies.\n\n3.5. Application of Additional Terms\n\nYou may choose to offer, and to charge a fee for, warranty, support,\nindemnity or liability obligations to one or more recipients of Covered\nSoftware. However, You may do so only on Your own behalf, and not on\nbehalf of any Contributor. You must make it absolutely clear that any\nsuch warranty, support, indemnity, or liability obligation is offered by\nYou alone, and You hereby agree to indemnify every Contributor for any\nliability incurred by such Contributor as a result of warranty, support,\nindemnity or liability terms You offer. You may include additional\ndisclaimers of warranty and limitations of liability specific to any\njurisdiction.\n\n4. Inability to Comply Due to Statute or Regulation\n---------------------------------------------------\n\nIf it is impossible for You to comply with any of the terms of this\nLicense with respect to some or all of the Covered Software due to\nstatute, judicial order, or regulation then You must: (a) comply with\nthe terms of this License to the maximum extent possible; and (b)\ndescribe the limitations and the code they affect. Such description must\nbe placed in a text file included with all distributions of the Covered\nSoftware under this License. Except to the extent prohibited by statute\nor regulation, such description must be sufficiently detailed for a\nrecipient of ordinary skill to be able to understand it.\n\n5. Termination\n--------------\n\n5.1. The rights granted under this License will terminate automatically\nif You fail to comply with any of its terms. However, if You become\ncompliant, then the rights granted under this License from a particular\nContributor are reinstated (a) provisionally, unless and until such\nContributor explicitly and finally terminates Your grants, and (b) on an\nongoing basis, if such Contributor fails to notify You of the\nnon-compliance by some reasonable means prior to 60 days after You have\ncome back into compliance. Moreover, Your grants from a particular\nContributor are reinstated on an ongoing basis if such Contributor\nnotifies You of the non-compliance by some reasonable means, this is the\nfirst time You have received notice of non-compliance with this License\nfrom such Contributor, and You become compliant prior to 30 days after\nYour receipt of the notice.\n\n5.2. If You initiate litigation against any entity by asserting a patent\ninfringement claim (excluding declaratory judgment actions,\ncounter-claims, and cross-claims) alleging that a Contributor Version\ndirectly or indirectly infringes any patent, then the rights granted to\nYou by any and all Contributors for the Covered Software under Section\n2.1 of this License shall terminate.\n\n5.3. In the event of termination under Sections 5.1 or 5.2 above, all\nend user license agreements (excluding distributors and resellers) which\nhave been validly granted by You or Your distributors under this License\nprior to termination shall survive termination.\n\n************************************************************************\n* *\n* 6. Disclaimer of Warranty *\n* ------------------------- *\n* *\n* Covered Software is provided under this License on an \"as is\" *\n* basis, without warranty of any kind, either expressed, implied, or *\n* statutory, including, without limitation, warranties that the *\n* Covered Software is free of defects, merchantable, fit for a *\n* particular purpose or non-infringing. The entire risk as to the *\n* quality and performance of the Covered Software is with You. *\n* Should any Covered Software prove defective in any respect, You *\n* (not any Contributor) assume the cost of any necessary servicing, *\n* repair, or correction. This disclaimer of warranty constitutes an *\n* essential part of this License. No use of any Covered Software is *\n* authorized under this License except under this disclaimer. *\n* *\n************************************************************************\n\n************************************************************************\n* *\n* 7. Limitation of Liability *\n* -------------------------- *\n* *\n* Under no circumstances and under no legal theory, whether tort *\n* (including negligence), contract, or otherwise, shall any *\n* Contributor, or anyone who distributes Covered Software as *\n* permitted above, be liable to You for any direct, indirect, *\n* special, incidental, or consequential damages of any character *\n* including, without limitation, damages for lost profits, loss of *\n* goodwill, work stoppage, computer failure or malfunction, or any *\n* and all other commercial damages or losses, even if such party *\n* shall have been informed of the possibility of such damages. This *\n* limitation of liability shall not apply to liability for death or *\n* personal injury resulting from such party's negligence to the *\n* extent applicable law prohibits such limitation. Some *\n* jurisdictions do not allow the exclusion or limitation of *\n* incidental or consequential damages, so this exclusion and *\n* limitation may not apply to You. *\n* *\n************************************************************************\n\n8. Litigation\n-------------\n\nAny litigation relating to this License may be brought only in the\ncourts of a jurisdiction where the defendant maintains its principal\nplace of business and such litigation shall be governed by laws of that\njurisdiction, without reference to its conflict-of-law provisions.\nNothing in this Section shall prevent a party's ability to bring\ncross-claims or counter-claims.\n\n9. Miscellaneous\n----------------\n\nThis License represents the complete agreement concerning the subject\nmatter hereof. If any provision of this License is held to be\nunenforceable, such provision shall be reformed only to the extent\nnecessary to make it enforceable. Any law or regulation which provides\nthat the language of a contract shall be construed against the drafter\nshall not be used to construe this License against a Contributor.\n\n10. Versions of the License\n---------------------------\n\n10.1. New Versions\n\nMozilla Foundation is the license steward. Except as provided in Section\n10.3, no one other than the license steward has the right to modify or\npublish new versions of this License. Each version will be given a\ndistinguishing version number.\n\n10.2. Effect of New Versions\n\nYou may distribute the Covered Software under the terms of the version\nof the License under which You originally received the Covered Software,\nor under the terms of any subsequent version published by the license\nsteward.\n\n10.3. Modified Versions\n\nIf you create software not governed by this License, and you want to\ncreate a new license for such software, you may create and use a\nmodified version of this License if you rename the license and remove\nany references to the name of the license steward (except to note that\nsuch modified license differs from this License).\n\n10.4. Distributing Source Code Form that is Incompatible With Secondary\nLicenses\n\nIf You choose to distribute Source Code Form that is Incompatible With\nSecondary Licenses under the terms of this version of the License, the\nnotice described in Exhibit B of this License must be attached.\n\nExhibit A - Source Code Form License Notice\n-------------------------------------------\n\n This Source Code Form is subject to the terms of the Mozilla Public\n License, v. 2.0. If a copy of the MPL was not distributed with this\n file, You can obtain one at http://mozilla.org/MPL/2.0/.\n\nIf it is not possible or desirable to put the notice in a particular\nfile, then You may include the notice in a location (such as a LICENSE\nfile in a relevant directory) where a recipient would be likely to look\nfor such a notice.\n\nYou may add additional accurate notices of copyright ownership.\n\nExhibit B - \"Incompatible With Secondary Licenses\" Notice\n---------------------------------------------------------\n\n This Source Code Form is \"Incompatible With Secondary Licenses\", as\n defined by the Mozilla Public License, v. 2.0.", + "json": "mpl-2.0.json", + "yaml": "mpl-2.0.yml", + "html": "mpl-2.0.html", + "license": "mpl-2.0.LICENSE" + }, + { + "license_key": "mpl-2.0-no-copyleft-exception", + "category": "Copyleft Limited", + "spdx_license_key": "MPL-2.0-no-copyleft-exception", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This Source Code Form is \"Incompatible With Secondary Licenses\", as\ndefined by the Mozilla Public License, v. 2.0.", + "json": "mpl-2.0-no-copyleft-exception.json", + "yaml": "mpl-2.0-no-copyleft-exception.yml", + "html": "mpl-2.0-no-copyleft-exception.html", + "license": "mpl-2.0-no-copyleft-exception.LICENSE" + }, + { + "license_key": "ms-asp-net-ajax-supplemental-terms", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-ajax-supp-terms", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-asp-net-ajax-supplemental-terms" + ], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE SUPPLEMENT LICENSE TERMS\nMICROSOFT ASP.NET 2.0 AJAX EXTENSIONS\nMicrosoft Corporation (or based on where you live, one of its affiliates) licenses this supplement to you. If you are licensed to use Microsoft Windows operating system software (the \"software\"), you may use this supplement. You may not use it if you do not have a license for the software. You may use a copy of this supplement with each validly licensed copy of the software.\nThe following license terms describe additional use terms for this supplement. These terms and the license terms for the software apply to your use of the supplement. If there is a conflict, these supplemental license terms apply.\n\nBy using this supplement, you accept these terms. If you do not accept them, do not use this supplement.\n\n1.\tSUPPORT SERVICES FOR SUPPLEMENT. Microsoft provides support services for this supplement as described at www.support.microsoft.com/common/international.aspx .\n\n2.\tADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\na.\tDistributable Code. This supplement contains code that you are permitted to distribute in programs you develop if you comply with the terms below.\ni.\tRight to Use and Distribute. The code and text files listed below are \"Distributable Code.\"\n - REDIST.TXT Files. You may copy and distribute the object code form of code listed in REDIST.TXT files.\n - Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\nii.\tDistribution Requirements. For any Distributable Code you distribute, you must\n - add significant primary functionality to it in your programs;\n - distribute Distributable Code included in a setup program only as part of that setup program without modification;\n - require distributors and external end users to agree to terms that protect it at least as much as this agreement;\n - display your valid copyright notice on your programs; and\n - indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\niii.\tDistribution Restrictions. You may not\n - alter any copyright, trademark or patent notice in the Distributable Code;\n - use Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\n - distribute Distributable Code to run on a platform other than the Windows platform;\n - include Distributable Code in malicious, deceptive or unlawful programs; or\n - modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, \n modification or distribution, that\n - the code be disclosed or distributed in source code form; or\n - others have the right to modify it.\nb.\tMicrosoft Ajax Library. This supplement includes the Microsoft AJAX Library. The license terms accompanying that additional software apply to it.", + "json": "ms-asp-net-ajax-supplemental-terms.json", + "yaml": "ms-asp-net-ajax-supplemental-terms.yml", + "html": "ms-asp-net-ajax-supplemental-terms.html", + "license": "ms-asp-net-ajax-supplemental-terms.LICENSE" + }, + { + "license_key": "ms-asp-net-mvc3", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This installation contains the following software, the license terms of each of which are included below:\n\n\u00b7 Microsoft ASP.NET Model View Controller 3 Tools Update\n\n\u00b7 Microsoft ASP.NET Web Pages\n\n\u00b7 Microsoft Package Manager for .NET\n\n\u00b7 Microsoft software update to Visual Studio, KB2483190\n\nMICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT ASP.NET MODEL VIEW CONTROLLER 3 TOOLS UPDATE\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\n\u00b7 updates,\n\u00b7 supplements,\n\u00b7 Internet-based services, and\n\u00b7 support services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\n\nIf you comply with these license terms, you have the rights below.\n\n1. INSTALLATION AND USE RIGHTS. One user may install and use any number of copies of the software on your devices to design, develop and test your ASP.NET programs. You may modify, copy, and distribute or deploy any .js files contained in the software as part of your ASP.NET programs.\n\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\n\na. Distributable Code. In addition to the .js files described above, the software contains code that you are permitted to distribute in ASP.NET programs you develop if you comply with the terms below.\n\ni. Right to Use and Distribute. The code and text files listed below are \"Distributable Code.\"\n\n\u00b7 System.Web.Mvc.dll. You may copy and distribute the object code form of System.Web.Mvc.dll.\n\n\u00b7 Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\n\nii. Distribution Requirements. For any Distributable Code you distribute, you must\n\n\u00b7 add significant primary functionality to it in your programs;\n\n\u00b7 require distributors and external end users to agree to terms that protect it at least as much as this agreement;\n\n\u00b7 display your valid copyright notice on your programs; and\n\n\u00b7 indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\n\niii. Distribution Restrictions. You may not\n\n\u00b7 alter any copyright, trademark or patent notice in the Distributable Code;\n\n\u00b7 use Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\n\n\u00b7 distribute Distributable Code to run on a platform other than the Windows platform;\n\n\u00b7 include Distributable Code in malicious, deceptive or unlawful programs; or\n\n\u00b7 modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\n\n\u00b7 the code be disclosed or distributed in source code form; or\n\n\u00b7 others have the right to modify it.\n\n3. THIRD PARTY NOTICES. The software may include third party code that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party code are included for your information only. Microsoft\u2019s service and support obligations, if any, apply only to the unmodified third party code running on ASP.NET.\n\n4. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n\u00b7 work around any technical limitations in the software;\n\n\u00b7 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\n\u00b7 make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n\n\u00b7 publish the software for others to copy;\n\n\u00b7 rent, lease or lend the software; or\n\n\u00b7 transfer the software or this agreement to any third party.\n\n5. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n6. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n7. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n8. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n9. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n10. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n11. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n12. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n13. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to\n\n\u00b7 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\u00b7 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\n \n\n* * * * *\n\nMICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT ASP.NET WEB PAGES\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\n\u00b7 updates,\n\u00b7 supplements,\n\u00b7 Internet-based services, and\n\u00b7 support services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\n\nAS DESCRIBED BELOW, USING SOME FEATURES ALSO OPERATES AS YOUR CONSENT TO THE TRANSMISSION OF CERTAIN STANDARD COMPUTER INFORMATION FOR INTERNET-BASED SERVICES.\n\nIf you comply with these license terms, you have the rights below.\n\n1. INSTALLATION AND USE RIGHTS. One user may install and use any number of copies of the software on your devices to design, develop and test your ASP.NET programs.\n\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS. \n\na. Distributable Code. The software contains code that you are permitted to distribute in programs you develop if you comply with the terms below.\n\ni. Right to Use and Distribute. The code and text files listed below are \"Distributable Code.\"\n\n\u00b7 Redistributable DLL Files. You may copy and distribute the object code form of the following files:\n\n\u00a7 Microsoft.Web.Infrastructure.dll;\n\u00a7 NuGet.Core.dll;\n\u00a7 System.Web.Helpers.dll;\n\u00a7 System.Web.Razor.dll;\n\u00a7 System.Web.WebPages.Administration.dll;\n\u00a7 System.Web.WebPages.Deployment.dll;\n\u00a7 System.Web.WebPages.dll;\n\u00a7 System.Web.WebPages.Razor.dll;\n\u00a7 WebMatrix.Data.dll;\n\u00a7 WebMatrix.WebData.dll.\n\u00b7 Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\n\nii. Distribution Requirements. For any Distributable Code you distribute, you must\n\n\u00b7 add significant primary functionality to it in your programs;\n\n\u00b7 require distributors and external end users to agree to terms that protect it at least as much as this agreement;\n\n\u00b7 display your valid copyright notice on your programs; and\n\n\u00b7 indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\n\niii. Distribution Restrictions. You may not\n\n\u00b7 alter any copyright, trademark or patent notice in the Distributable Code;\n\n\u00b7 use Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\n\n\u00b7 distribute Distributable Code to run on a platform other than the Windows platform;\n\n\u00b7 include Distributable Code in malicious, deceptive or unlawful programs; or\n\n\u00b7 modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\n\n\u00b7 the code be disclosed or distributed in source code form; or\n\n\u00b7 others have the right to modify it.\n\n3. INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software. It may change or cancel them at any time.\n\na. Consent for Internet-Based Services. The software feature described below connects to Microsoft or service provider computer systems over the Internet. In some cases, you will not receive a separate notice when they connect. You may elect to not use it. For more information about this feature, see the software documentation and the privacy statement available at go.microsoft.com/fwlink/?LinkID=205205. BY USING THIS FEATURE, YOU CONSENT TO THE TRANSMISSION OF THIS INFORMATION. Microsoft does not use the information to identify or contact you.\n\ni. Computer Information. The following feature uses Internet protocols, which send to the appropriate systems computer information, such as your Internet protocol address, the type of operating system, browser and name and version of the software you are using, and the language code of the device where you installed the software. Microsoft or a third-party service provider uses this information to make the Internet-based service available to you.\n\nA. Open Data Protocol (OData) Service. This software will access a list of packages that is supplied by means of an OData service online from Microsoft or a third-party service provider.\n\nii. Installing Packages and their Dependencies. Please refer to the \"Package Manager Feature\" section below for a description of this feature.\n\niii. Use of Information. We or a third-party service provider may use the computer information, to improve our or their software and services. We or they may also share it with others, such as hardware and software vendors. They may use the information to improve how their products run with Microsoft software.\n\nb. Misuse of Internet-based Services. You may not use this service in any way that could harm it or impair anyone else\u2019s use of it. You may not use the service to try to gain unauthorized access to any service, data, account or network by any means.\n\n4. PACKAGE MANAGER FEATURE. This software includes a package manager feature, which enables you to obtain other software packages from other sources. Those packages are offered and distributed in some cases by third parties or in some cases by Microsoft, but each such package is under its own license terms. Microsoft is not developing, distributing or licensing any of the third-party packages to you, but instead, as a convenience, is providing you with this package manager feature in order to access any packages for your own use. By using this package manager feature, you acknowledge and agree that you may be accessing and using the third-party packages as distributed by such third parties and under the separate license terms applicable to each package, including any terms applicable to software dependencies that may be included in the package. You acknowledge and agree that it is your responsibility to locate, understand and comply with all applicable license terms for each package and its dependencies, for example, by following the package source (feed) URL or by reviewing the packages for embedded notices or license terms. The package manager feature may have been pre-set to a feed that is hosted by Microsoft or a third party service provider, located at go.microsoft.com/fwlink/?LinkID=206669. The packages listed on this feed may include packages submitted by third parties. Microsoft makes no representations, warranties or guarantees as to the feed URL, any feeds from such URL, the information contained therein, or any packages referenced in or accessed by you through such feeds. Microsoft grants you no license rights for third-party software that is obtained using this feature or from the feed. You may change the feed URL that the package manager feature initially points to at any time at your discretion.\n\n5. THIRD PARTY NOTICES. The package manager feature of the software includes third party code. However, such code is licensed to you by Microsoft under this license agreement, rather than licensed to you by any third party under some other license terms. Notices, if any, for the third party code are included with this software for your information only.\n\n6. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n\u00b7 work around any technical limitations in the software;\n\u00b7 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\u00b7 make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n\u00b7 publish the software for others to copy;\n\u00b7 rent, lease or lend the software; or\n\u00b7 transfer the software or this agreement to any third party.\n\n7. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n8. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n9. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n10. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n11. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n12. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n13. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n14. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n15. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to\n\n\u00b7 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\u00b7 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\n* * * * *\n\nMICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT PACKAGE MANAGER FOR .NET\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\n\u00b7 updates,\n\n\u00b7 supplements,\n\n\u00b7 Internet-based services, and\n\n\u00b7 support services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\n\nAS DESCRIBED BELOW, USING SOME FEATURES ALSO OPERATES AS YOUR CONSENT TO THE TRANSMISSION OF CERTAIN STANDARD COMPUTER INFORMATION FOR INTERNET-BASED SERVICES.\n\nIf you comply with these license terms, you have the rights below.\n\n1. INSTALLATION AND USE RIGHTS. One user may install and use any number of copies of the software on your devices to design, develop and test your programs.\n\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\n\na. Distributable Code. The software contains code that you are permitted to distribute in programs you develop if you comply with the terms below.\n\ni. Right to Use and Distribute. The code and text files listed below are \"Distributable Code.\"\n\n\u00b7 NuGet.Core.dll. You may copy and distribute the object code form of NuGet.Core.dll.\n\n\u00b7 Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\n\nii. Distribution Requirements. For any Distributable Code you distribute, you must\n\n\u00b7 add significant primary functionality to it in your programs;\n\n\u00b7 require distributors and external end users to agree to terms that protect it at least as much as this agreement;\n\n\u00b7 display your valid copyright notice on your programs; and\n\n\u00b7 indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\n\niii. Distribution Restrictions. You may not\n\n\u00b7 alter any copyright, trademark or patent notice in the Distributable Code;\n\n\u00b7 use Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\n\n\u00b7 distribute Distributable Code to run on a platform other than the Windows platform;\n\n\u00b7 include Distributable Code in malicious, deceptive or unlawful programs; or\n\n\u00b7 modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\n\n\u00b7 the code be disclosed or distributed in source code form; or\n\n\u00b7 others have the right to modify it.\n\n3. INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software. It may change or cancel them at any time.\n\na. Consent for Internet-Based Services. The software feature described below connects to Microsoft or service provider computer systems over the Internet. In some cases, you will not receive a separate notice when they connect. You may elect to not use it. For more information about this feature, see the software documentation and the privacy statement available at go.microsoft.com/fwlink/?LinkID=205205. BY USING THIS FEATURE, YOU CONSENT TO THE TRANSMISSION OF THIS INFORMATION. Microsoft does not use the information to identify or contact you.\n\ni. Computer Information. The following feature uses Internet protocols, which send to the appropriate systems computer information, such as your Internet protocol address, the type of operating system, browser and name and version of the software you are using, and the language code of the device where you installed the software. Microsoft or a third-party service provider uses this information to make the Internet-based service available to you.\n\nA. Open Data Protocol (OData) Service. This software will access a list of packages that is supplied by means of an OData service online from Microsoft or a third-party service provider.\n\nii. Installing Packages and their Dependencies. Please refer to the \"Package Manager Feature\" section below for a description of this feature.\n\niii. Use of Information. We or a third-party service provider may use the computer information, to improve our or their software and services. We or they may also share it with others, such as hardware and software vendors. They may use the information to improve how their products run with Microsoft software.\n\nb. Misuse of Internet-based Services. You may not use this service in any way that could harm it or impair anyone else\u2019s use of it. You may not use the service to try to gain unauthorized access to any service, data, account or network by any means.\n\n4. PACKAGE MANAGER FEATURE. This software includes a package manager feature, which enables you to obtain other software packages from other sources. Those packages are offered and distributed in some cases by third parties or in some cases by Microsoft, but each such package is under its own license terms. Microsoft is not developing, distributing or licensing any of the third-party packages to you, but instead, as a convenience, is providing you with this package manager feature in order to access any packages for your own use. By using this package manager feature, you acknowledge and agree that you may be accessing and using the third-party packages as distributed by such third parties and under the separate license terms applicable to each package, including any terms applicable to software dependencies that may be included in the package. You acknowledge and agree that it is your responsibility to locate, understand and comply with all applicable license terms for each package and its dependencies, for example, by following the package source (feed) URL or by reviewing the packages for embedded notices or license terms. The package manager feature may have been pre-set to a feed that is hosted by Microsoft or a third party service provider, located at go.microsoft.com/fwlink/?LinkID=206669. The packages listed on this feed may include packages submitted by third parties. Microsoft makes no representations, warranties or guarantees as to the feed URL, any feeds from such URL, the information contained therein, or any packages referenced in or accessed by you through such feeds. Microsoft grants you no license rights for third-party software that is obtained using this feature or from the feed. You may change the feed URL that the package manager feature initially points to at any time at your discretion.\n\n5. THIRD PARTY NOTICES. The package manager feature of the software includes third party code. However, such code is licensed to you by Microsoft under this license agreement, rather than licensed to you by any third party under some other license terms. Notices, if any, for the third party code are included with this software for your information only.\n\n6. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n\u00b7 work around any technical limitations in the software;\n\n\u00b7 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\n\u00b7 make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n\n\u00b7 publish the software for others to copy;\n\n\u00b7 rent, lease or lend the software; or\n\n\u00b7 transfer the software or this agreement to any third party.\n\n7. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n8. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n9. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n10. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n11. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n12. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n13. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n14. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n15. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to\n\n\u00b7 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\n\u00b7 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\n* * * * *\n\n \nMICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT SOFTWARE UPDATE TO VISUAL STUDIO, KB2483190\n \nPLEASE NOTE: Microsoft Corporation (or based on where you live, one of its affiliates) licenses this supplement to you. You may use it with each validly licensed copy of Microsoft Visual Studio 2010 or Microsoft Windows operating system software (for which this supplement is applicable) (the \"software\"). You may not use the supplement if you do not have a license for the software. The license terms for the software apply to your use of this supplement. Microsoft provides support services for the supplement as described at www.support.microsoft.com/common/international.aspx.", + "json": "ms-asp-net-mvc3.json", + "yaml": "ms-asp-net-mvc3.yml", + "html": "ms-asp-net-mvc3.html", + "license": "ms-asp-net-mvc3.LICENSE" + }, + { + "license_key": "ms-asp-net-mvc4", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT ASP.NET MODEL VIEW CONTROLLER 4\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\u2022 updates,\n\u2022 supplements,\n\u2022 Internet-based services, and\n\u2022 support services\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBy using the software, you accept these terms. If you do not accept them, do not use the software.\nIf you comply with these license terms, you have the perpetual rights below.\n\n1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices for use with your ASP.NET programs. You may modify, copy, distribute or deploy any .js files contained in the software as part of your ASP.NET programs.\n\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\na. Distributable Code. In addition to the .js files described above, the software contains code that you are permitted to distribute in ASP.NET programs you develop if you comply with the terms below.\n\ni. Redistributable DLL files. You may copy and distribute the object code form of the following files.\n\u2022 System.Net.Http.dll\n\u2022 System.Net.Http.Formatting.dll\n\u2022 System.Web.Http.SelfHost.dll\n\u2022 System.Web.Http.WebHost.dll\n\u2022 System.Web.Http.dll\n\u2022 System.Net.Http.WebRequest.dll\n\u2022 System.Web.Mvc.dll\n\n\u2022 Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\n\nii. Distribution Requirements. For any Distributable Code you distribute, you must\n\u2022 add significant primary functionality to it in your programs;\n\u2022 require distributors and external end users to agree to terms that protect it at least as much as this agreement;\n\u2022 display your valid copyright notice on your programs; and\n\u2022 indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\n\niii. Distribution Restrictions. You may not\n\u2022 alter any copyright, trademark or patent notice in the Distributable Code;\n\u2022 use Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\n\u2022 distribute Distributable Code to run on a platform other than the Windows platform;\n\u2022 include Distributable Code in malicious, deceptive or unlawful programs; or\n\u2022 modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\n\u2022 the code be disclosed or distributed in source code form; or\n\u2022 others have the right to modify it.\n\n3. INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software. It may change or cancel them at any time.\n\n4. THIRD PARTY NOTICES. The software may include third party code that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party code are included for your information only. \n\n5. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\u2022 disclose the results of any benchmark tests of the software to any third party without Microsoft\u2019s prior written approval;\n\u2022 work around any technical limitations in the software;\n\u2022 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\u2022 make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n\u2022 publish the software for others to copy;\n\u2022 rent, lease or lend the software; or\n\u2022 transfer the software or this agreement to any third party.\n\n6. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n7. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n8. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n9. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n10. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n11. APPLICABLE LAW.\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n12. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n13. DISCLAIMER OF WARRANTY. The software is licensed \"as-is.\" You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights or statutory guarantees under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\nFOR AUSTRALIA \u2013 You have statutory guarantees under the Australian Consumer Law and nothing in these terms is intended to affect those rights.\n\n14. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\nThis limitation applies to\n\u2022 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\u2022 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.", + "json": "ms-asp-net-mvc4.json", + "yaml": "ms-asp-net-mvc4.yml", + "html": "ms-asp-net-mvc4.html", + "license": "ms-asp-net-mvc4.LICENSE" + }, + { + "license_key": "ms-asp-net-mvc4-extensions", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc4-extensions", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT PRE-RELEASE SOFTWARE LICENSE TERMS\nMICROSOFT ASP.NET MODEL VIEW CONTROLLER 4 EXTENSIONS\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the pre-release software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\n\u00b7 updates,\n\u00b7 supplements,\n\u00b7 Internet-based services, and\n\u00b7 support services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBy using the software, you accept these terms. If you do not accept them, do not use the software.\nIf you comply with these license terms, you have the rights below.\n\n1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices. \n\n2. TERM. This agreement will automatically expire on August 1, 2013 or the commercial release of the software, whichever comes first.\n\n3. PRE-RELEASE SOFTWARE. This software is a pre-release version. It may not work the way a final version of the software will. We may change it for the final, commercial version. We also may not release a commercial version.\n\n4. FEEDBACK. If you give feedback about the software to Microsoft, you give to Microsoft, without charge, the right to use, share and commercialize your feedback in any way and for any purpose. You also give to third parties, without charge, any patent rights needed for their products, technologies and services to use or interface with any specific parts of a Microsoft software or service that includes the feedback. You will not give feedback that is subject to a license that requires Microsoft to license its software or documentation to third parties because we include your feedback in them. These rights survive this agreement.\n\n5. THIRD PARTY NOTICES. The software may include third party code that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party code are included for your information only. \n\n6. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n\u00b7 disclose the results of any benchmark tests of the software to any third party without Microsoft\u2019s prior written approval;\n\n\u00b7 work around any technical limitations in the software;\n\n\u00b7 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\n\u00b7 make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n\n\u00b7 publish the software for others to copy;\n\n\u00b7 rent, lease or lend the software; or\n\n\u00b7 transfer the software or this agreement to any third party.\n\n7. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n8. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n9. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n10. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n11. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n12. DISCLAIMER OF WARRANTY. The software is licensed \"as-is.\" You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n\n13. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\n\nThis limitation applies to\n\n\u00b7 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\n\u00b7 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.\n\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\u00e7ais.\n\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel \u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft n\u2019accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\u00e9 marchande, d\u2019ad\u00e9quation \u00e0 un usage particulier et d\u2019absence de contrefa\u00e7on sont exclues.\n\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\n\nCette limitation concerne :\n\n\u00b7 tout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\n\n\u00b7 les r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d\u2019une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\n\nElle s\u2019applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre l\u2019\u00e9ventualit\u00e9 d\u2019un tel dommage. Si votre pays n\u2019autorise pas l\u2019exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\u2019exclusion ci-dessus ne s\u2019appliquera pas \u00e0 votre \u00e9gard.\n\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d\u2019autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si celles-ci ne le permettent pas.", + "json": "ms-asp-net-mvc4-extensions.json", + "yaml": "ms-asp-net-mvc4-extensions.yml", + "html": "ms-asp-net-mvc4-extensions.html", + "license": "ms-asp-net-mvc4-extensions.LICENSE" + }, + { + "license_key": "ms-asp-net-software", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\n\nMicrosoft ASP.NET Model View Controller, Web API and Web Pages\n\nMicrosoft ASP.NET Web Developer Tools\n\nMicrosoft ASP.NET SignalR\n\nMicrosoft ASP.NET Friendly URLs\n\nMicrosoft ASP.NET Web Optimization Framework\n\nMicrosoft ASP.NET Universal Providers\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\n\u00b7 updates,\n\u00b7 supplements,\n\u00b7 Internet-based services, and\n\u00b7 support services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBy using the software, you accept these terms. If you do not accept them, do not use the software.\n\nAs described below, using some features also operates as your consent to the transmission of certain standard computer information for Internet-based services.\n\nIf you comply with these license terms, you have the perpetual rights below.\n\n1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices for use with your ASP.NET programs. You may modify, copy, distribute or deploy any .js files contained in the software as part of your ASP.NET programs.\n\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\n\na. Distributable Code. In addition to the .js files described above, the software contains code that you are permitted to distribute in ASP.NET programs you develop if you comply with the terms below.\n\ni. Right to Use and Distribute. The code and text files listed below are \"Distributable Code.\"\n\n\u00b7 Redistributable DLL files. You may copy and distribute the object code form of code and files listed below.\n\nMICROSOFT ASP.NET Model View Controller (MVC)\n\n\u00a7 System.Net.Http.dll\n\n\u00a7 System.Net.Http.Formatting.dll\n\n\u00a7 System.Web.Http.SelfHost.dll\n\n\u00a7 System.Web.Http.WebHost.dll\n\n\u00a7 System.Web.Http.dll\n\n\u00a7 System.Net.Http.WebRequest.dll\n\n\u00a7 System.Web.Mvc.dll\n\n\u00a7 System.Web.Http.OData.dll\n\n\u00a7 System.Web.Http.Tracing.dll\n\n\u00a7 Microsoft.AspNet.Mvc.Facebook\n\n\u00a7 Microsoft.Owin.Host.SystemWeb\n\nMicrosoft ASP.NET Web Pages\n\n\u00a7 NuGet.Core.dll\n\n\u00a7 Microsoft.Web.Infrastructure.dll\n\n\u00a7 Microsoft.Web.WebPages.OAuth.dll\n\n\u00a7 Microsoft.Web.Helpers.dll\n\n\u00a7 System.Web.Helpers.dll\n\n\u00a7 System.Web.Razor.dll\n\n\u00a7 System.Web.WebPages.dll\n\n\u00a7 System.Web.WebPages.Administration.dll\n\n\u00a7 System.Web.WebPages.Deployment.dll\n\n\u00a7 System.Web.WebPages.Razor.dll\n\n\u00a7 WebMatrix.Data.dll\n\n\u00a7 WebMatrix.WebData.dll\n\nMicrosoft ASP.NET Web Developer Tools\n\n\u00a7 Microsoft.AspNet.Membership.OpenAuth.dll\n\n\u00a7 Microsoft.ScriptManager.WebForms.dll\n\n\u00a7 Microsoft.ScriptManager.MSAjax.dll\n\nMicrosoft ASP.NET SignalR\n\n\u00a7 Microsoft.Asp.Net.SignalR.Core.dll\n\n\u00a7 Microsoft.Asp.Net.SignalR.SystemWeb.dll\n\n\u00a7 Microsoft.Asp.Net.SignalR.Owin.dll\n\n\u00a7 Microsoft.AspNet.SignalR.ServiceBus.dll\n\n\u00a7 Microsoft.AspNet.SingnalR.Redis.dll\n\n\u00a7 Microsoft.AspNet.SignalR.Client.dll\n\n\u00a7 Microsoft.AspNet.SignalR.Utils.exe\n\nMicrosoft ASP.NET Friendly URLs\n\n\u00a7 Microsoft.AspNet.FriendlyUrls\n\nMicrosoft ASP.NET Web Optimization Framework\n\n\u00a7 System.Web.Optimization.dll\n\n\u00b7 Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\n\nii. Distribution Requirements. For any Distributable Code you distribute, you must\n\n\u00b7 add significant primary functionality to it in your programs;\n\u00b7 require distributors and external end users to agree to terms that protect it at least as much as this agreement;\n\u00b7 display your valid copyright notice on your programs; and\n\u00b7 indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\n\niii. Distribution Restrictions. You may not\n\n\u00b7 alter any copyright, trademark or patent notice in the Distributable Code;\n\n\u00b7 use Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\n\n\u00b7 distribute Distributable Code to run on a platform other than the Windows platform;\n\n\u00b7 include Distributable Code in malicious, deceptive or unlawful programs; or\n\n\u00b7 modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\n\n\u00b7 the code be disclosed or distributed in source code form; or\n\n\u00b7 others have the right to modify it.\n\n3. INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software. It may change or cancel them at any time.\n\na. Consent for Internet-Based Services. The software features described below connect to Microsoft or service provider computer systems over the Internet. In some cases, you will not receive a separate notice when they connect. In some cases, you may switch off these features or not use them. For more information about these features, see software documentation and the privacy statement at go.microsoft.com/fwlink/?LinkID=205205. By using these features, you consent to the transmission of this information. Microsoft does not use the information to identify or contact you.\n\ni. Computer Information. The following features use Internet protocols, which send to the appropriate systems computer information, such as your Internet protocol address, the type of operating system, browser and name and version of the software you are using, and the language code of the device where you installed the software. Microsoft or a third party service provider uses this information to make the Internet-based services available to you.\n\n\u00b7 Customer Experience Improvement Program (CEIP). This software uses CEIP. CEIP automatically sends Microsoft information about your hardware and how you use this software. We do not use this information to identify or contact you. To learn more about CEIP, see http://www.microsoft.com/products/ceip/en-us/privacypolicy.mspx.\n\n\u00b7 Error Reports. This software automatically sends error reports to Microsoft. These reports include information about problems that occur in the software. Sometimes reports contain information about other programs that interact with the software. Reports might unintentionally contain personal information. For example, a report that contains a snapshot of computer memory might include your name. Part of a document you were working on could be included as well. Microsoft does not use this information to identify or contact you. To learn more about error reports, see oca.microsoft.com/en/dcp20.asp.\n\n\u00b7 Open Data Protocol (OData) Service. This software will access a list of packages that is supplied by means of an OData service online from Microsoft or a third-party service provider.\n\nii. Installing Packages and their Dependencies. Please refer to the \"Third Party Package Manager\" section below for a description of this feature.\n\niii. Use of Information. We or the third party service provider may use the computer information, error reports, and CEIP information, to improve our or their software and services. We or they may also share it with others, such as hardware and software vendors. They may use the information to improve how their products run with Microsoft software.\n\nb. Misuse of Internet-based Services. You may not use this service in any way that could harm it or impair anyone else\u2019s use of it. You may not use the service to try to gain unauthorized access to any service, data, account or network by any means.\n\n4. THIRD PARTY PACKAGE MANAGER. This software includes a package manager feature, which enables you to obtain other software packages from other sources. Those packages are offered and distributed in some cases by third parties or in some cases by Microsoft, but each such package is under its own license terms. Microsoft is not developing, distributing or licensing any of the third-party packages to you, but instead, as a convenience, is providing you with this package manager feature in order to access any packages for your own use. By using this package manager feature, you acknowledge and agree that you may be accessing and using the third-party packages as distributed by such third parties and under the separate license terms applicable to each package, including any terms applicable to software dependencies that may be included in the package. You acknowledge and agree that it is your responsibility to locate, understand and comply with all applicable license terms for each package and its dependencies, for example, by following the package source (feed) URL or by reviewing the packages for embedded notices or license terms. The package manager feature may have been pre-set to a feed that is hosted by a third party service provider, located at go.microsoft.com/fwlink/?LinkID=206669. The packages listed on this feed may include packages submitted by third parties. Microsoft makes no representations, warranties or guarantees as to the feed URL, any feeds from such URL, the information contained therein, or any packages referenced in or accessed by you through such feeds. Microsoft grants you no license rights rights for third-party software that is obtained using this feature or from the feed. You may change the feed URL that the package manager feature initially points to at any time at your discretion.\n\n5. THIRD PARTY NOTICES. The software, including the package manager feature of the software, may include third party code that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party code are included for your information only.\n\n6. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Microsoft grants you no license rights for third-party software that is obtained using this software. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n\u00b7 disclose the results of any benchmark tests of the software to any third party without Microsoft\u2019s prior written approval;\n\n\u00b7 work around any technical limitations in the software;\n\n\u00b7 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\n\u00b7 publish the software for others to copy;\n\n\u00b7 rent, lease or lend the software; or\n\n\u00b7 transfer the software or this agreement to any third party.\n\n7. .NET FRAMEWORK SOFTWARE. The software contains Microsoft .NET Framework software. This software is part of Windows. The license terms for Windows apply to your use of the .NET Framework software.\n\n8. MICROSOFT .NET FRAMEWORK BENCHMARK TESTING. The software includes one or more components of the .NET Framework (\".NET Components\"). You may conduct internal benchmark testing of those components. You may disclose the results of any benchmark test of those components, provided that you comply with the conditions set forth at go.microsoft.com/fwlink/?LinkID=66406. Notwithstanding any other agreement you may have with Microsoft, if you disclose such benchmark test results, Microsoft shall have the right to disclose the results of benchmark tests it conducts of your products that compete with the applicable .NET Component, provided it complies with the same conditions set forth at go.microsoft.com/fwlink/?LinkID=66406.\n\n9. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n10. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n11. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see http://www.microsoft.com/exporting.\n\n12. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n13. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n14. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n15. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n16. DISCLAIMER OF WARRANTY. The software is licensed \"as-is.\" You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights or statutory guarantees under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n\nFOR AUSTRALIA \u2013 You have statutory guarantees under the Australian Consumer Law and nothing in these terms is intended to affect those rights.\n\n17. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\n\nThis limitation applies to\n\n\u00b7 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\n\u00b7 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.\n\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\u00e7ais.\n\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel \u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft n\u2019accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\u00e9 marchande, d\u2019ad\u00e9quation \u00e0 un usage particulier et d\u2019absence de contrefa\u00e7on sont exclues.\n\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\n\nCette limitation concerne :\n\n\u00b7 tout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\n\n\u00b7 les r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d\u2019une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\n\nElle s\u2019applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre l\u2019\u00e9ventualit\u00e9 d\u2019un tel dommage. Si votre pays n\u2019autorise pas l\u2019exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\u2019exclusion ci-dessus ne s\u2019appliquera pas \u00e0 votre \u00e9gard.\n\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d\u2019autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si celles-ci ne le permettent pas.", + "json": "ms-asp-net-software.json", + "yaml": "ms-asp-net-software.yml", + "html": "ms-asp-net-software.html", + "license": "ms-asp-net-software.LICENSE" + }, + { + "license_key": "ms-asp-net-tools-pre-release", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-tools-pre-release", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT PRE-RELEASE SOFTWARE LICENSE TERMS\nMICROSOFT ASP.NET TOOLS\n \nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the pre-release software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\n\u00b7 updates,\n\n\u00b7 supplements,\n\n\u00b7 Internet-based services, and\n\n\u00b7 support services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBy using the software, you accept these terms. If you do not accept them, do not use the software.\n\nAs described below, using some features also operates as your consent to the transmission of certain standard computer information for Internet-based services.\n\nIf you comply with these license terms, you have the rights below.\n\n1. INSTALLATION AND USE RIGHTS.\n\na. Installation and Use.\n\n\u00b7 You may install and use any number of copies of the software on your premises to design, develop and test your ASP.NET programs.\n\n\u00b7 Deploy to Hosting Provider. Because the software is a pre-release version, and may not work correctly, provided that you take adequate precautionary measures to back up and protect any data that may be affected by use of the software, you may deploy your programs to a hosting provider for production validation, at your sole discretion and risk on the following conditions:\n\no you agree to assume all risk associated with use of the software;\n\no you may not make any representation, warranty or promise on behalf of Microsoft or with respect to the software, or its performance; and\n\no you may not use the software for hazardous environments that require fail safe controls.\n\n\u00b7 Distributable Code. You may copy and distribute the object code form of code and files listed in the packages at http://go.microsoft.com/fwlink/?LinkId=296594 as part of your ASP.NET programs deployed to a hosting provider if you comply with the terms below. \n\ni. Distribution Requirements. For any Distributable Code you distribute, you must\n\n\u00b7 use the Distributable Code in your programs and not as a standalone distribution;\n\n\u00b7 require distributors and your external users to agree to terms that protect it at least as much as this agreement; and \n\n\u00b7 indemnify, defend, and hold harmless, Microsoft from any claims, including attorneys' fees related to the distribution of your programs.\n\n ii. Distribution Restrictions. You may not\n\n\u00b7 alter any copyright, trademark or patent notice in the Distributable Code;\n\n\u00b7 use Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\n\n\u00b7 distribute Distributable Code to run on a platform other than the Windows platform;\n\n\u00b7 include Distributable Code in malicious, deceptive or unlawful programs; or\n\n\u00b7 modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\n\n\u00b7 the code be disclosed or distributed in source code form; or\n\n\u00b7 others have the right to modify it.\n\n\u00b7 Final Versions. When commercially available, you must acquire and use the final release version of the software in order to develop and distribute versions of your programs that work with the final commercial release of the software.\n\nb. Third Party Programs. The software may include third party programs that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party program are included for your information only.\n\n2. INDEMNIFICATION. You agree to indemnify, hold harmless, and defend Microsoft from and against any claims, allegations, lawsuits, losses and costs (including attorney fees) that arise or result from the use, deployment or distribution of your programs that use the software.\n\n3. THIRD PARTY NOTICES. The software, including the package manager feature of the software, may include third party code that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party code are included for your information only.\n\n4. TERM. The term of this agreement is until 30/06/2014 (day/month/year) or within 90-days of commercial release of the software, whichever is first.\n\n5. PRE-RELEASE SOFTWARE. This software is a pre-release version. It may not work the way a final version of the software will. We may change it for the final, commercial version. We also may not release a commercial version.\n\n6. FEEDBACK. If you give feedback about the software to Microsoft, you give to Microsoft, without charge, the right to use, share and commercialize your feedback in any way and for any purpose. You also give to third parties, without charge, any patent rights needed for their products, technologies and services to use or interface with any specific parts of a Microsoft software or service that includes the feedback. You will not give feedback that is subject to a license that requires Microsoft to license its software or documentation to third parties because we include your feedback in them. These rights survive this agreement.\n\n7. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n\u00b7 disclose the results of any benchmark tests of the software to any third party without Microsoft\u2019s prior written approval;\n\n\u00b7 work around any technical limitations in the software;\n\n\u00b7 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\n\u00b7 publish the software for others to copy;\n\n\u00b7 rent, lease or lend the software; or\n\n\u00b7 transfer the software or this agreement to any third party.\n\n8. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n9. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n10. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n11. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n12. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n13. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n14. DISCLAIMER OF WARRANTY. The software is licensed \"as-is.\" You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights or statutory guarantees under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n\nFOR AUSTRALIA \u2013 You have statutory guarantees under the Australian Consumer Law and nothing in these terms is intended to affect those rights.\n\n15. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\n\nThis limitation applies to\n\n\u00b7 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\n\u00b7 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.", + "json": "ms-asp-net-tools-pre-release.json", + "yaml": "ms-asp-net-tools-pre-release.yml", + "html": "ms-asp-net-tools-pre-release.html", + "license": "ms-asp-net-tools-pre-release.LICENSE" + }, + { + "license_key": "ms-asp-net-web-optimization-framework", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-optimization", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-asp-net-web-optimization-framework" + ], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT ASP.NET WEB OPTIMIZATION FRAMEWORK\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\n\u00b7 updates,\n\u00b7 supplements,\n\u00b7 Internet-based services, and\n\u00b7 support services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBy using the software, you accept these terms. If you do not accept them, do not use the software.\nIf you comply with these license terms, you have the perpetual rights below.\n\n1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices for use with your ASP.NET programs.\n\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\n\na. Distributable Code. The software contains code that you are permitted to distribute in programs you develop if you comply with the terms below.\n\ni. Right to Use and Distribute. You may copy and distribute the object code form of System.Web.Optimization.dll file.\n\n\u00b7 Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\n\nii.Distribution Requirements. For any Distributable Code you distribute, you must\n\n\u00b7 add significant primary functionality to it in your programs;\n\u00b7 require distributors and external end users to agree to terms that protect it at least as much as this agreement;\n\u00b7 display your valid copyright notice on your programs; and\n\u00b7 indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\n\niii. Distribution Restrictions. You may not\n\n\u00b7 alter any copyright, trademark or patent notice in the Distributable Code;\n\u00b7 use Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\n\u00b7 distribute Distributable Code to run on a platform other than the Windows platform;\n\u00b7 include Distributable Code in malicious, deceptive or unlawful programs; or\n\u00b7 modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\n\u00b7 the code be disclosed or distributed in source code form; or\n\u00b7 others have the right to modify it.\n\n3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n\u00b7 work around any technical limitations in the software;\n\u00b7 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\u00b7 make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n\u00b7 publish the software for others to copy;\n\u00b7 rent, lease or lend the software; or\n\u00b7 transfer the software or this agreement to any third party.\n\n4. THIRD PARTY NOTICES. The software may include third party code that Microsoft, not the third party, licensees to you under this agreement. Notices, if any, for the third party code are included for your information only. \n\n5. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n6. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n7. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n8. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n9. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n10. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n11. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n12. DISCLAIMER OF WARRANTY. The software is licensed \"as-is.\" You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights or statutory guarantees under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n\nFOR AUSTRALIA \u2013 You have statutory guarantees under the Australian Consumer Law and nothing in these terms is intended to affect those rights.\n\n13. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\n\nThis limitation applies to\n\n\u00b7 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\u00b7 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, these license terms are provided below in French.\n\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\u00e7ais.\n\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel \u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft n\u2019accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\u00e9 marchande, d\u2019ad\u00e9quation \u00e0 un usage particulier et d\u2019absence de contrefa\u00e7on sont exclues.\n\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\n\nCette limitation concerne :\n\n\u2022 tout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\n\n\u2022 les r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d\u2019une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\n\nElle s\u2019applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre l\u2019\u00e9ventualit\u00e9 d\u2019un tel dommage. Si votre pays n\u2019autorise pas l\u2019exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\u2019exclusion ci-dessus ne s\u2019appliquera pas \u00e0 votre \u00e9gard.\n\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d\u2019autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si celles-ci ne le permettent pas.", + "json": "ms-asp-net-web-optimization-framework.json", + "yaml": "ms-asp-net-web-optimization-framework.yml", + "html": "ms-asp-net-web-optimization-framework.html", + "license": "ms-asp-net-web-optimization-framework.LICENSE" + }, + { + "license_key": "ms-asp-net-web-pages-2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-pages-2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT ASP.NET WEB PAGES 2\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\n\u00b7 updates,\n\n\u00b7 supplements,\n\n\u00b7 Internet-based services, and\n\n\u00b7 support services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBy using the software, you accept these terms. If you do not accept them, do not use the software.\n\nAs described below, using some features also operates as your consent to the transmission of certain standard computer information for Internet-based services.\n\nIf you comply with these license terms, you have the perpetual rights below.\n\n1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices for use with your ASP.NET programs. You may modify, copy and distribute or deploy any .js files contained in the software as part of your ASP.NET programs. \n\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\n\na. Distributable Code. In addition to the .js files described above, the software contains code that you are permitted to distribute in ASP.NET programs you develop if you comply with the terms below.\n\ni. Right to Use and Distribute. The code and text files listed below are \"Distributable Code.\"\n\n\u00b7 Redistributable DLL files. You may copy and distribute the object code form of the following files.\n\n\u00a7 NuGet.Core.dll\n\u00a7 Microsoft.Web.Infrastructure.dll\n\u00a7 Microsoft.Web.WebPages.OAuth.dll\n\u00a7 \u200bMicrosoft.Web.Helpers.dll\n\u00a7 \u200bSystem.Web.Helpers.dll\n\u00a7 System.Web.Razor.dll\n\u00a7 \u200bSystem.Web.WebPages.dll\n\u00a7 System.Web.WebPages.Administration.dll\n\u00a7 \u200bSystem.Web.WebPages.Deployment.dll\n\u00a7 System.Web.WebPages.Razor.dll\n\u00a7 \u200bWebMatrix.Data.dll\n\u00a7 WebMatrix.WebData.dll\n\n\u00b7 Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\n\nii. Distribution Requirements. For any Distributable Code you distribute, you must\n\n\u00b7 add significant primary functionality to it in your programs;\n\n\u00b7 require distributors and external end users to agree to terms that protect it at least as much as this agreement;\n\n\u00b7 display your valid copyright notice on your programs; and\n\n\u00b7 indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\n\niii. Distribution Restrictions. You may not\n\n\u00b7 alter any copyright, trademark or patent notice in the Distributable Code;\n\n\u00b7 use Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\n\n\u00b7 distribute Distributable Code to run on a platform other than the Windows platform;\n\n\u00b7 include Distributable Code in malicious, deceptive or unlawful programs; or\n\n\u00b7 modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\n\n\u00b7 the code be disclosed or distributed in source code form; or\n\n\u00b7 others have the right to modify it.\n\n3. INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software. It may change or cancel them at any time.\n\na. Consent for Internet-Based Services. The software feature described below connects to Microsoft or service provider computer systems over the Internet. In some cases, you will not receive a separate notice when they connect. You may switch off this feature or not use it. For more information about this feature, see http://docs.nuget.org. By using this feature, you consent to the transmission of this information. Microsoft does not use the information to identify or contact you.\n\ni. Computer Information. The following feature uses Internet protocols, which send to the appropriate systems computer information, such as your Internet protocol address, the type of operating system, browser and name and version of the software you are using, and the language code of the device where you installed the software. Microsoft uses this information to make the Internet-based service available to you.\n\n\u00b7 Open Data (OData) Service. This software will access a list of packages that are supplied by means of an OData service online from Microsoft or a third-party service provider.\n\n\u00b7 Installing Packages and their Dependencies. Please refer to the \"Package Manager and Third Party Software Installation Features\" section below for a description of this feature.\n\n\u00b7 Use of Information. We or the third-party service provider may use the computer information to improve our or their software and services. We or they may also share the computer information with others, such as hardware and software vendors.\n\nb. Misuse of Internet-based Services. You may not use this service in any way that could harm it or impair anyone else\u2019s use of it. You may not use the service to try to gain unauthorized access to any service, data, account or network by any means.\n\n \n\n4. PACKAGE MANAGER AND THIRD PARTY SOFTWARE INSTALLATION FEATURES. The software includes the following features (each a \"Feature\"), each of which enables you to obtain software applications or packages through the Internet from other sources: Package Manager Feature. Those software applications and packages are offered and distributed in some cases by third parties and in some cases by Microsoft, but each such application or package is under its own license terms. Microsoft is not developing, distributing or licensing any of the third-party applications or packages to you, but instead, as a convenience, enables you to use the Features to access or obtain those applications or packages directly from the third-party application or package providers. By using the Features, you acknowledge and agree that: \n\n\u00b7 you are obtaining the applications or packages from such third parties and under separate license terms applicable to each application or package (including, with respect to the package-manager Features, any terms applicable to software dependencies that may be included in the package);\n\n\u00b7 that it is your responsibility to locate, understand and comply with all applicable license terms for each such application or package; and\n\n\u00b7 with respect to the package-manager Features, this includes your responsibility to follow the package source (feed) URL or by reviewing the packages for embedded notices or license terms. \n\nMICROSOFT MAKES NO REPRESENTATIONS, WARRANTIES OR GUARANTEES AS TO THE FEED OR GALLERY URL, ANY FEEDS OR GALLERIES FROM SUCH URL, THE INFORMATION CONTAINED THEREIN, OR ANY SOFTWARE APPLICATIONS OR PACKAGES REFERENCED IN OR ACCESSED BY YOU THROUGH SUCH FEEDS OR GALLERIES. MICROSOFT GRANTS YOU NO LICENSE RIGHTS FOR THIRD-PARTY SOFTWARE APPLICATIONS OR PACKAGES THAT ARE OBTAINED USING THE FEATURES. \n\n5. THIRD PARTY NOTICES. The package manager feature of the software includes third party code. However, all such code is licensed by you by Microsoft under this license agreement, rather than licensed to you by any third party under some other license terms. Notices, if any, for the third party code are included with this software for your information only.\n\n6. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n\u00b7 disclose the results of any benchmark tests of the software to any third party without Microsoft\u2019s prior written approval;\n\n\u00b7 work around any technical limitations in the software;\n\n\u00b7 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\n\u00b7 make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n\n\u00b7 publish the software for others to copy;\n\n\u00b7 rent, lease or lend the software;\n\n\u00b7 transfer the software or this agreement to any third party; or\n\n\u00b7 use the software for commercial software hosting services.\n\n7. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n8. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n9. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n10. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n11. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n12. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n13. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n14. DISCLAIMER OF WARRANTY. The software is licensed \"as-is.\" You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights or statutory guarantees under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n\nFOR AUSTRALIA \u2013 You have statutory guarantees under the Australian Consumer Law and nothing in these terms is intended to affect those rights.\n\n15. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\n\nThis limitation applies to\n\n\u00b7 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\n\u00b7 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.", + "json": "ms-asp-net-web-pages-2.json", + "yaml": "ms-asp-net-web-pages-2.yml", + "html": "ms-asp-net-web-pages-2.html", + "license": "ms-asp-net-web-pages-2.LICENSE" + }, + { + "license_key": "ms-asp-net-web-pages-templates", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-pages-templates", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT ASP .NET WEB PAGES TEMPLATES\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\nupdates,\nsupplements,\nInternet-based services, and\nsupport services\nfor this software, unless other terms accompany those items. If so, those terms apply.\nBy using the software, you accept these terms. If you do not accept them, do not use the software.\nIf you comply with these license terms, you have the rights below.\n1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices to design, develop and test your programs.\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\na. Distributable Code. The software contains code that you are permitted to distribute in programs you develop if you comply with the terms below.\ni. Right to Use and Distribute. The code and text files listed below are \u201cDistributable Code.\u201d\nSample Code. You may modify, copy, and distribute the source and object code form of code marked as \u201csample.\u201d\nIcons. You may copy and distribute the icons in the Image Library as described in the software documentation.\nThird Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\nii. Distribution Requirements. For any Distributable Code you distribute, you must\nadd significant primary functionality to it in your programs;\nrequire distributors and external end users to agree to terms that protect it at least as much as this agreement; \ndisplay your valid copyright notice on your programs; and\nindemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\niii. Distribution Restrictions. You may not\nalter any copyright, trademark or patent notice in the Distributable Code;\nuse Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\ndistribute Distributable Code to run on a platform other than the Windows platform;\ninclude Distributable Code in malicious, deceptive or unlawful programs; or\nmodify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\nthe code be disclosed or distributed in source code form; or\nothers have the right to modify it.\n3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\nwork around any technical limitations in the software;\nreverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\nmake more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\npublish the software for others to copy;\nrent, lease or lend the software;\ntransfer the software or this agreement to any third party; or\nuse the software for commercial software hosting services.\n4. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n5. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n6. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n7. SUPPORT SERVICES. Because this software is \u201cas is,\u201d we may not provide support services for it.\n8. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n9. APPLICABLE LAW.\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n10. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n11. DISCLAIMER OF WARRANTY. The software is licensed \u201cas-is.\u201d You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n12. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\nThis limitation applies to\nanything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\nclaims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\nPlease note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\u00e7ais.\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel \u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft n\u2019accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\u00e9 marchande, d\u2019ad\u00e9quation \u00e0 un usage particulier et d\u2019absence de contrefa\u00e7on sont exclues.\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\nCette limitation concerne :\ntout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\nles r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d\u2019une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\nElle s\u2019applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre l\u2019\u00e9ventualit\u00e9 d\u2019un tel dommage. Si votre pays n\u2019autorise pas l\u2019exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\u2019exclusion ci-dessus ne s\u2019appliquera pas \u00e0 votre \u00e9gard.\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d\u2019autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si celles-ci ne le permettent pas.", + "json": "ms-asp-net-web-pages-templates.json", + "yaml": "ms-asp-net-web-pages-templates.yml", + "html": "ms-asp-net-web-pages-templates.html", + "license": "ms-asp-net-web-pages-templates.LICENSE" + }, + { + "license_key": "ms-azure-data-studio", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-azure-data-studio", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT AZURE DATA STUDIO\n\nMicrosoft Corporation (\"Microsoft\") grants you a nonexclusive, perpetual,\nroyalty-free right to use, copy, and modify the software code provided by us\n(\"Software Code\"). You may not sublicense the Software Code or any use of it\n(except to your affiliates and to vendors to perform work on your behalf)\nthrough distribution, network access, service agreement, lease, rental, or\notherwise. Unless applicable law gives you more rights, Microsoft reserves all\nother rights not expressly granted herein, whether by implication, estoppel or\notherwise.\n\nTHE SOFTWARE CODE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY\nKIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\nAND NONINFRINGEMENT. IN NO EVENT SHALL MICROSOFT OR ITS LICENSORS\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\nOF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THE\nSAMPLE CODE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "ms-azure-data-studio.json", + "yaml": "ms-azure-data-studio.yml", + "html": "ms-azure-data-studio.html", + "license": "ms-azure-data-studio.LICENSE" + }, + { + "license_key": "ms-azure-spatialanchors-2.9.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-azure-spatialanchors-2.9.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT AZURE SPATIAL ANCHORS\n________________________________________\nThese license terms are an agreement between you and Microsoft Corporation (or one of its affiliates). They apply to the software named above and any Microsoft services or software updates (except to the extent such services or updates are accompanied by new or additional terms, in which case those different terms apply prospectively and do not alter your or Microsoft's rights relating to pre-updated software or services). IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS.\n\n1. INSTALLATION AND USE RIGHTS.\n\na) General. You may install and use any number of copies of the software to develop and test your applications.\n\nb) Third Party Components. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software.\n\n2. DISTRIBUTABLE CODE. The software may contain code you are permitted to distribute (i.e. make available for third parties) in applications you develop, as described in this Section.\n\na) Distribution Rights. The code and test files described below are distributable if included with the software.\ni. Distributables. You may copy and distribute the object code form of the software listed in the distributables file list in the software;\nii. Image Library. You may copy and distribute images, graphics, and animations in the Image Library as described in the software documentation;\niii. Sample Code, Templates, and Styles. You may copy, modify, and distribute the source and object code form of code marked as \"sample\", \"template\", \"simple styles\", and \"sketch styles\"; and\niv. Third Party Distribution. You may permit distributors of your applications to copy and distribute any of this distributable code you elect to distribute with your applications.\n\nb) Distribution Requirements. For any code you distribute, you must:\ni. add significant primary functionality to it in your applications;\nii. require distributors and external end users to agree to terms that protect it and Microsoft at least as much as this agreement; and\niii. indemnify, defend, and hold harmless Microsoft from any claims, including attorneys' fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified distributable code.\n\nc) Distribution Restrictions. You may not:\ni. use Microsoft's trademarks or trade dress in your application in any way that suggests your application comes from or is endorsed by Microsoft; or\nii. modify or distribute the source code of any distributable code so that any part of it becomes subject to any license that requires that the distributable code, any other part of the software, or any of Microsoft's other intellectual property be disclosed or distributed in source code form, or that others have the right to modify it.\n\n3. SCOPE OF LICENSE. The software is licensed, not sold. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you will not (and have no right to):\n\na) work around any technical limitations in the software that only allow you to use it in certain ways;\n\nb) reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software;\n\nc) remove, minimize, block, or modify any notices of Microsoft or its suppliers in the software;\n\nd) use the software in any way that is against the law or to create or propagate malware; or\n\ne) share, publish, distribute, or lease the software (except for any distributable code, subject to the terms above), provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party.\n\n4. DATA.\n\na) Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the product documentation. There are also some features in the software that may enable you to collect data from users of your applications. If you use these features to enable data collection in your applications, you must comply with applicable law, including providing appropriate notices to users of your applications. You can learn more about data collection and use in the help documentation and the privacy statement at https://aka.ms/privacy. Your use of the software operates as your consent to these practices.\n\nb) Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr.\n\n5. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit https://aka.ms/exporting.\n\n6. SUPPORT SERVICES. Microsoft is not obligated under this agreement to provide any support services for the software. Any support provided is \"as is\", \"with all faults\", and without warranty of any kind.\n\n7. UPDATES. The software may periodically check for updates, and download and install them for you. You may obtain updates only from Microsoft or authorized sources. Microsoft may need to update your system to provide you with updates. You agree to receive these automatic updates without any additional notice. Updates may not include or support all existing software features, services, or peripheral devices.\n\n8. TERMINATION. Without prejudice to any other rights, Microsoft may terminate this agreement if you fail to comply with any of its terms or conditions. In such event, you must destroy all copies of the software and all of its component parts.\n\n9. ENTIRE AGREEMENT. This agreement, and any other terms Microsoft may provide for supplements, updates, or third-party applications, is the entire agreement for the software.\n\n10. APPLICABLE LAW AND PLACE TO RESOLVE DISPUTES. If you acquired the software in the United States or Canada, the laws of the state or province where you live (or, if a business, where your principal place of business is located) govern the interpretation of this agreement, claims for its breach, and all other claims (including consumer protection, unfair competition, and tort claims), regardless of conflict of laws principles. If you acquired the software in any other country, its laws apply. If U.S. federal jurisdiction exists, you and Microsoft consent to exclusive jurisdiction and venue in the federal court in King County, Washington for all disputes heard in court. If not, you and Microsoft consent to exclusive jurisdiction and venue in the Superior Court of King County, Washington for all disputes heard in court.\n\n11. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:\n\na) Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights.\n\nb) Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software.\n\nc) Germany and Austria.\ni.\tWarranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software.\nii.\tLimitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law.\nSubject to the foregoing clause ii., Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called \"cardinal obligations\"). In other cases of slight negligence, Microsoft will not be liable for slight negligence.\n\n12. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES, OR CONDITIONS. TO THE EXTENT PERMITTED UNDER APPLICABLE LAWS, MICROSOFT EXCLUDES ALL IMPLIED WARRANTIES, INCLUDING MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.\n\n13. LIMITATION ON AND EXCLUSION OF DAMAGES. IF YOU HAVE ANY BASIS FOR RECOVERING DAMAGES DESPITE THE PRECEDING DISCLAIMER OF WARRANTY, YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT, OR INCIDENTAL DAMAGES.\nThis limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, warranty, guarantee, or condition; strict liability, negligence, or other tort; or any other claim; in each case to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state, province, or country may not allow the exclusion or limitation of incidental, consequential, or other damages.\n\nPlease note: As this software is distributed in Canada, some of the clauses in this agreement are provided below in French.\nRemarque: Ce logiciel \u00e9tant distribu\u00e9 au Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\u00e7ais.\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel \u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft n'accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\u00e9 marchande, d'ad\u00e9quation \u00e0 un usage particulier et d'absence de contrefa\u00e7on sont exclues.\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\nCette limitation concerne:\n\u2022\ttout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers; et\n\u2022\tles r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d'une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\nElle s'applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre l'\u00e9ventualit\u00e9 d'un tel dommage. Si votre pays n'autorise pas l'exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l'exclusion ci-dessus ne s'appliquera pas \u00e0 votre \u00e9gard.\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d'autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si celles-ci ne le permettent pas.", + "json": "ms-azure-spatialanchors-2.9.0.json", + "yaml": "ms-azure-spatialanchors-2.9.0.yml", + "html": "ms-azure-spatialanchors-2.9.0.html", + "license": "ms-azure-spatialanchors-2.9.0.LICENSE" + }, + { + "license_key": "ms-capicom", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-capicom", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT CAPICOM\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\u00b7 updates,\n\u00b7 supplements,\n\u00b7 Internet-based services, and\n\u00b7 support services\nfor this software, unless other terms accompany those items. If so, those terms apply.\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\nIf you comply with these license terms, you have the rights below.\n1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices running validly licensed copies of Windows 2000, Windows XP, Windows Vista, or Windows Server 2003.\n2. Scope of License. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\u00b7 work around any technical limitations in the software;\n\u00b7 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\u00b7 make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n\u00b7 publish the software for others to copy;\n\u00b7 rent, lease or lend the software; or\n\u00b7 use the software for commercial software hosting services.\n3. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n4. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n5. TRANSFER TO A THIRD PARTY. The first user of the software may transfer it and this agreement directly to a third party. Before the transfer, that party must agree that this agreement applies to the transfer and use of the software. The first user must uninstall the software before transferring it separately from the device. The first user may not retain any copies.\n6. Export Restrictions. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting .\n7. SUPPORT SERVICES. Because this software is as is, we may not provide support services for it.\n8. Entire Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n9. Applicable Law.\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n10. Legal Effect. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n11. Disclaimer of Warranty. The software is licensed as-is. You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n12. Limitation on and Exclusion of Remedies and Damages. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\nThis limitation applies to\n\u00b7 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\u00b7 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\nPlease note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\u00e7ais.\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel \u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft n\u0092accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\u00e9 marchande, d\u0092ad\u00e9quation \u00e0 un usage particulier et d\u0092absence de contrefa\u00e7on sont exclues.\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\nCette limitation concerne:\n\u00b7 tout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers; et\n\u00b7 les r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d\u0092une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\nElle s\u0092applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre l\u0092\u00e9ventualit\u00e9 d\u0092un tel dommage. Si votre pays n\u0092autorise pas l\u0092exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\u0092exclusion ci-dessus ne s\u0092appliquera pas \u00e0 votre \u00e9gard.\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d\u0092autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si celles-ci ne le permettent pas.", + "json": "ms-capicom.json", + "yaml": "ms-capicom.yml", + "html": "ms-capicom.html", + "license": "ms-capicom.LICENSE" + }, + { + "license_key": "ms-cl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ms-cl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft Shared Source Community License (MS-CL)\nPublished: October 18, 2005\n\nThis license governs use of the accompanying software. If you use the software,\nyou accept this license. If you do not accept the license, do not use the\nsoftware.\n\n1. Definitions\n\nThe terms \"reproduce,\" \"reproduction\" and \"distribution\" have the same meaning\nhere as under U.S. copyright law.\n\n\"You\" means the licensee of the software.\n\n\"Larger work\" means the combination of the software and any additions or\nmodifications to the software.\n\n\"Licensed patents\" means any Licensor patent claims which read directly on the\nsoftware as distributed by the Licensor under this license.\n\n\n2. Grant of Rights\n\n(A) Copyright Grant- Subject to the terms of this license, including the\nlicense conditions and limitations in section 3, the Licensor grants you a\nnon-exclusive, worldwide, royalty-free copyright license to reproduce the\nsoftware, prepare derivative works of the software and distribute the software\nor any derivative works that you create.\n\n(B) Patent Grant- Subject to the terms of this license, including the license\nconditions and limitations in section 3, the Licensor grants you a non-exclusive,\nworldwide, royalty-free patent license under licensed patents to make, have\nmade, use, practice, sell, and offer for sale, and/or otherwise dispose of the\nsoftware or derivative works of the software.\n\n\n3. Conditions and Limitations\n\n(A) Reciprocal Grants- Your rights to reproduce and distribute the software (or\nany part of the software), or to create and distribute derivative works of the\nsoftware, are conditioned on your licensing the software or any larger work you\ncreate under the following terms:\n\n1. If you distribute the larger work as a series of files, you must grant all\nrecipients the copyright and patent licenses in sections 2(A) & 2(B) for\nany file that contains code from the software. You must also provide\nrecipients the source code to any such files that contain code from the\nsoftware along with a copy of this license. Any other files which are\nentirely your own work and which do not contain any code from the software\nmay be licensed under any terms you choose.\n\n2. If you distribute the larger work as a single file, then you must grant\nall recipients the rights set out in sections 2(A) & 2(B) for the entire\nlarger work. You must also provide recipients the source code to the\nlarger work along with a copy of this license.\n\n(B) No Trademark License- This license does not grant you any rights to use the Licensor\u2019s name, logo, or trademarks.\n\n(C) If you distribute the software in source code form you may do so only under\nthis license (i.e., you must include a complete copy of this license with your\ndistribution), and if you distribute the software solely in compiled or object\ncode form you may only do so under a license that complies with this license.\n\n(D) If you begin patent litigation against the Licensor over patents that you\nthink may apply to the software (including a cross-claim or counterclaim in a\nlawsuit), your license to the software ends automatically.\n\n(E) The software is licensed \"as-is.\" You bear the risk of using it. The Licensor\ngives no express warranties, guarantees or conditions. You may have additional\nconsumer rights under your local laws which this license cannot change. To the\nextent permitted under your local laws, the Licensor excludes the implied\nwarranties of merchantability, fitness for a particular purpose and\nnon-infringement.", + "json": "ms-cl.json", + "yaml": "ms-cl.yml", + "html": "ms-cl.html", + "license": "ms-cl.LICENSE" + }, + { + "license_key": "ms-cla", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-ms-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Contribution License Agreement\n\nThis Contribution License Agreement (\u201cAgreement\u201d) is agreed to by the party signing below (\u201cYou\u201d), and conveys certain license rights to Microsoft Corporation and its affiliates (\u201cMicrosoft\u201d) for Your contributions to Microsoft open source projects. \nThis Agreement is effective as of the latest signature date below.\n\n1. Definitions.\n\n\u201cCode\u201d means the computer software code, whether in human-readable or machine-executable form,\nthat is delivered by You to Microsoft under this Agreement.\n\n\u201cProject\u201d means any of the projects owned or managed by Microsoft in which software is offered under a license approved by the Open Source Initiative (OSI) (www.opensource.org) and documentation offered under an OSI or a Creative Commons license (https://creativecommons.org/licenses).\n\n\u201cSubmit\u201d is the act of uploading, submitting, transmitting, or distributing code or other content to any Project, 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 Project for the purpose of discussing and improving that Project, but excluding communication that is conspicuously marked or otherwise designated in writing by You as \u201cNot a Submission.\u201d\n\n\u201cSubmission\u201d means the Code and any other copyrightable material Submitted by You, including any associated comments and documentation.\n\n2. Your Submission. You must agree to the terms of this Agreement before making a Submission to any Project. This Agreement covers any and all Submissions that You, now or in the future (except as described in Section 4 below), Submit to any Project.\n\n3. Originality of Work. You represent that each of Your Submissions is entirely Your original work. Should You wish to Submit materials that are not Your original work, You may Submit them separately to the Project if You (a) retain all copyright and license information that was in the materials as You received them, (b) in the description accompanying Your Submission, include the phrase \u201cSubmission containing materials of a third party:\u201d followed by the names of the third party and any licenses or other restrictions of which You are aware, and (c) follow any other instructions in the Project\u2019s written guidelines concerning Submissions.\n\n4. Your Employer. References to \u201cemployer\u201d in this Agreement include Your employer or anyone else for whom You are acting in making Your Submission, e.g. as a contractor, vendor, or agent. If Your Submission is made in the course of Your work for an employer or Your employer has intellectual property rights in Your Submission by contract or applicable law, You must secure permission from Your employer to make the Submission before signing this Agreement. In that case, the term \u201cYou\u201d in this Agreement will refer to You and the employer collectively. If You change employers in the future and desire to Submit additional Submissions for the new employer, then You agree to sign a new Agreement and secure permission from the new employer before Submitting those Submissions.\n\n5. Licenses.\n\na. Copyright License. You grant Microsoft, and those who receive the Submission directly or indirectly from Microsoft, a perpetual, worldwide, non-exclusive, royalty-free, irrevocable license in the Submission to reproduce, prepare derivative works of, publicly display, publicly perform, and distribute the Submission and such derivative works, and to sublicense any or all of the foregoing rights to third parties.\n\nb. Patent License. You grant Microsoft, and those who receive the Submission directly or indirectly from Microsoft, a perpetual, worldwide, non-exclusive, royalty-free, irrevocable license under Your patent claims that are necessarily infringed by the Submission or the combination of the Submission with the Project to which it was Submitted to make, have made, use, offer to sell, sell and import or otherwise dispose of the Submission alone or with the Project.\n\nc. Other Rights Reserved. Each party reserves all rights not expressly granted in this Agreement. No additional licenses or rights whatsoever (including, without limitation, any implied licenses) are granted by implication, exhaustion, estoppel or otherwise.\n\n6. Representations and Warranties. You represent that You are legally entitled to grant the above licenses. You represent that each of Your Submissions is entirely Your original work (except as You may have disclosed under Section 3). You represent that You have secured permission from Your employer to make the Submission in cases where Your Submission is made in the course of Your work for Your employer or Your employer has intellectual property rights in Your Submission by contract or applicable law. If You are signing this Agreement on behalf of Your employer, You represent and warrant that You have the necessary authority to bind the listed employer to the obligations contained in this Agreement. You are not expected to provide support for Your Submission, unless You choose to do so. UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING, AND EXCEPT FOR THE WARRANTIES EXPRESSLY STATED IN SECTIONS 3, 4, AND 6, THE SUBMISSION PROVIDED UNDER THIS AGREEMENT IS PROVIDED WITHOUT WARRANTY OF ANY KIND, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY OF NONINFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.\n\n7. Notice to Microsoft. You agree to notify Microsoft in writing of any facts or circumstances of which You later become aware that would make Your representations in this Agreement inaccurate in any respect.\n\n8. Information about Submissions. You agree that contributions to Projects and information about contributions may be maintained indefinitely and disclosed publicly, including Your name and other information that You submit with Your Submission.\n\n9. Governing Law/Jurisdiction. This Agreement is governed by the laws of the State of Washington, and the parties consent to exclusive jurisdiction and venue in the federal courts sitting in King County, Washington, unless no federal subject matter jurisdiction exists, in which case the parties consent to exclusive jurisdiction and venue in the Superior Court of King County, Washington. The parties waive all defenses of lack of personal jurisdiction and forum non-conveniens.\n\n10. Entire Agreement/Assignment. This Agreement is the entire agreement between the parties, and supersedes any and all prior agreements, understandings or communications, written or oral, between the parties relating to the subject matter hereof. This Agreement may be assigned by Microsoft.", + "json": "ms-cla.json", + "yaml": "ms-cla.yml", + "html": "ms-cla.html", + "license": "ms-cla.LICENSE" + }, + { + "license_key": "ms-control-spy-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-control-spy-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT CONTROL SPY 2.0 \nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\u00b7\tupdates,\n\u00b7\tsupplements,\n\u00b7\tInternet-based services, and \n\u00b7\tsupport services\nfor this software, unless other terms accompany those items. If so, those terms apply.\nBy using the software, you accept these terms. If you do not accept them, do not use the software.\nIf you comply with these license terms, you have the rights below.\n1.\tINSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices running validly licensed copies of Microsoft Windows XP Home Edition, Microsoft Windows XP Professional, Microsoft Windows XP Media Center, and Microsoft Windows XP Tablet PC Edition.\n2.\tScope of License. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. For more information, see www.microsoft.com/licensing/userights . You may not\n\u00b7\twork around any technical limitations in the software;\n\u00b7\treverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\u00b7\tmake more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n\u00b7\tpublish the software for others to copy;\n\u00b7\trent, lease or lend the software; or\n\u00b7\tuse the software for commercial software hosting services.\n3.\tBACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n4.\tDOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n5.\tTRANSFER TO ANOTHER DEVICE. You may uninstall the software and install it on another device for your use. You may not do so to share this license between devices.\n6.\tTRANSFER TO A THIRD PARTY. The first user of the software may transfer it and this agreement directly to a third party. Before the transfer, that party must agree that this agreement applies to the transfer and use of the software. The first user must uninstall the software before transferring it separately from the device. The first user may not retain any copies.\n7.\tExport Restrictions. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting .\n8.\tSUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n9.\tEntire Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n10.\tApplicable Law.\na.\tUnited States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\nb.\tOutside the United States. If you acquired the software in any other country, the laws of that country apply.\n11.\tLegal Effect. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n12.\tDisclaimer of Warranty. The software is licensed \"as-is.\" You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n13.\tLimitation on and Exclusion of Remedies and Damages. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\nThis limitation applies to\n\u00b7\tanything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\u00b7\tclaims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\nPlease note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\u00e7ais.\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel \u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft n\u2019accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits additionnels en vertu du droit local sur la protection dues consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\u00e9 marchande, d\u2019ad\u00e9quation \u00e0 un usage particulier et d\u2019absence de contrefa\u00e7on sont exclues.\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\nCette limitation concerne :\n\u00b7\ttout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\n\u00b7\tles r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d\u2019une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\nElle s\u2019applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre l\u2019\u00e9ventualit\u00e9 d\u2019un tel dommage. Si votre pays n\u2019autorise pas l\u2019exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\u2019exclusion ci-dessus ne s\u2019appliquera pas \u00e0 votre \u00e9gard.\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d\u2019autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si celles ci ne le permettent pas.", + "json": "ms-control-spy-2.0.json", + "yaml": "ms-control-spy-2.0.yml", + "html": "ms-control-spy-2.0.html", + "license": "ms-control-spy-2.0.LICENSE" + }, + { + "license_key": "ms-data-tier-af-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-data-tier-af-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT SQL SERVER DATA-TIER APPLICATION FRAMEWORK\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\nupdates,\nsupplements,\nInternet-based services, and\nsupport services\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\n\nIf you comply with these license terms, you have the rights below.\n\nINSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices to design, develop and test your programs.\n\nADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\n a. Distributable Code.\n i. Right to Use and Distribute. If you comply with the terms below:\n\nYou may copy and distribute the object code form of the software (\"Distributable Code\") in programs you develop; and\nYou may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\n ii. Distribution Requirements. For any Distributable Code you distribute, you must\n\nadd significant primary functionality to it in your programs;\nfor any Distributable Code having a filename extension of .lib, distribute only the results of running such Distributable Code through a linker with your program;\ndistribute Distributable Code included in a setup program only as part of that setup program without modification;\nrequire distributors and external end users to agree to terms that protect it at least as much as this agreement;\ndisplay your valid copyright notice on your programs; and\nindemnify, defend, and hold harmless Microsoft from any claims, including attorneys' fees, related to the distribution or use of your programs.\n iii. Distribution Restrictions. You may not\n\nalter any copyright, trademark or patent notice in the Distributable Code;\nuse Microsoft's trademarks in your programs' names or in a way that suggests your programs come from or are endorsed by Microsoft;\ndistribute Distributable Code to run on a platform other than the Windows platform;\ninclude Distributable Code in malicious, deceptive or unlawful programs; or\nmodify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\nthe code be disclosed or distributed in source code form; or\nothers have the right to modify it.\nSCOPE OF LICENSE. The software is licensed, not sold. Unless applicable law gives you more rights, Microsoft reserves all other rights not expressly granted under this agreement, whether by implication, estoppel or otherwise. You may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\nwork around any technical limitations in the software;\nreverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\nmake more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\npublish the software for others to copy;\nrent, lease or lend the software;\ntransfer the software or this agreement to any third party; or\nuse the software for commercial software hosting services.\nTHIRD PARTY NOTICES. The software may include third party code, that Microsoft, not the third party, licenses to you under the terms set forth in this agreement. Notices, if any, for any third party code are included for your information only. Additionally, any third party scripts, linked to, called or referenced from this software, are licensed to you by the third parties that own such code, not by Microsoft, see ASP.NET Ajax CDN Terms of Use: https://www.asp.net/ajaxlibrary/CDN.ashx.\n\nBACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\nDOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\nEXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see https://www.microsoft.com/exporting.\n\nSUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\nENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\nAPPLICABLE LAW.\n\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\nLEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\nDISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nFOR AUSTRALIA - YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS.\n\nLIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to\n\nanything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\nclaims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, some of these license terms are provided below in French.\n\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, les termes de cette licence sont fournis ci-dessous en fran\u00e7ais.\n\nEXCLUSIONS DE GARANTIE. Le logiciel est conc\u00e9d\u00e9 sous licence \u00ab en l'\u00e9tat \u00bb. Vous assumez tous les risques li\u00e9s \u00e0 son utilisation. Microsoft n'accorde aucune garantie ou condition expresse. Vous pouvez b\u00e9n\u00e9ficier de droits des consommateurs suppl\u00e9mentaires ou de garanties statutaires dans le cadre du droit local, que ce contrat ne peut modifier. Lorsque cela est autoris\u00e9 par le droit local, Microsoft exclut les garanties implicites de qualit\u00e9, d'ad\u00e9quation \u00e0 un usage particulier et d'absence de contrefa\u00e7on.\n\nPOUR L'AUSTRALIE - La loi australienne sur la consommation (Australian Consumer Law) vous accorde des garanties statutaires qu'aucun \u00e9l\u00e9ment du pr\u00e9sent accord ne peut affecter.\n\nLIMITATION ET EXCLUSION DE RECOURS ET DE DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs limit\u00e9e uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\n\nCette limitation concerne:\n\ntoute affaire li\u00e9e au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers et\n\nles r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d'une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\n\nElle s'applique \u00e9galement m\u00eame si Microsoft connaissait l'\u00e9ventualit\u00e9 d'un tel dommage. La limitation ou exclusion ci-dessus peut \u00e9galement ne pas vous \u00eatre applicable, car votre pays n'autorise pas l'exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit.", + "json": "ms-data-tier-af-2022.json", + "yaml": "ms-data-tier-af-2022.yml", + "html": "ms-data-tier-af-2022.html", + "license": "ms-data-tier-af-2022.LICENSE" + }, + { + "license_key": "ms-developer-services-agreement", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-dev-services-agreement", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-developer-services-agreement" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft Developer Services Agreement\nUpdated October, 2013\n\nThis agreement is between you or the entity you represent and the Microsoft entity listed in Exhibit A, and consists of the terms below, Exhibit A, Exhibit B, the SLAs, Offer Details for any Service as published on the date of a Service purchase or renewal, terms incorporated by reference, terms applicable to other Microsoft web sites and services that you use and are necessary to use the Services (for example, your Microsoft Account) and, the Privacy Statement (together, the \"Agreement\"). If you are entering into this Agreement on behalf of an entity, such as your employer, you represent that you have the legal authority to bind that entity. If you specify a company name in connection with signing up for or ordering a Service, you will be deemed to have placed that order and to have entered into this Agreement on behalf of that organization or company. Key terms are defined in Section 11. In addition, if you are a Windows Azure customer, this Agreement supplements your existing Windows Azure agreement and governs to the extent of any conflict with the Windows Azure terms (except that the Windows Azure billing terms will continue to apply).\n\n1. Services.\nRight to use. We grant you the right to access and use the Services in accordance with this Agreement.\nUser Plan. Each user of the Visual Studio Online portion of the Developer Services must be allocated an individual User Plan, whether they access the service directly or indirectly.\nManner of use. You may not:\nreverse engineer, decompile, disassemble or work around technical limitations in the Services, except to the extent that applicable law permits it despite these limitations;\ndisable, tamper with or otherwise attempt to circumvent any mechanism that limits your use of the Services;\nrent, lease, lend, resell, transfer, or sublicense any Services or portion thereof to or for third parties, except as explicitly permitted herein or in license terms that accompany any Services component;\nuse the Services for any purpose that is unlawful or prohibited by this Agreement; or\nuse the Services in any manner that could damage, disable, overburden, or impair any Microsoft service, or the network(s) connected to any Microsoft service, or interfere with any other party\u2019s use and enjoyment of any Services.\nUpdates. We may make changes to the Services from time to time, including: the availability of features; how long, how much or how often any given feature may be used; and feature dependencies upon other services or software. We will provide you with prior notice before removing any material feature or functionality of the Developer Services (excluding Previews), unless security, legal, or system performance considerations require an expedited removal.\nPreview features. We may make features available on a Preview basis. Previews are provided \"AS-IS\" and are excluded from the SLAs and warranties in Section 7 below. Previews may be subject to reduced or different security, compliance, privacy, availability, reliability, and support commitments, as further explained in the Privacy Statement, and any additional notices provided with the Preview. We may change or discontinue Previews at any time without notice. We also may choose not to release a Preview into \"General Availability\", and if we do make Previews \"Generally Available\" we may charge for any such features.\n\n2. Software.\nUsing Microsoft Software outside the Service. Microsoft may provide you with Microsoft Software through or as a part of the Developer Services. Termination of use of or access to the Developer Services or the termination of this Agreement terminates your right to possess or use any such Microsoft Software; and the suspension or termination of a User Plan terminates that user\u2019s right to possess or use any such Microsoft Software that was acquired through, is attached to, or otherwise requires that User Plan. You must delete all copies of such Microsoft Software licensed under this Agreement and destroy any associated media upon the termination of the associated possession or usage rights. Microsoft may provide you with Microsoft Software for use outside the Developer Services and with (1) the Developer Services or (2) programs you develop using the Developer Services. If the Microsoft Software is provided with its own license terms, those terms control as modified by the foregoing. If the Microsoft Software does not have its own license terms, then you may install and use any number of copies of the Microsoft Software to design, develop, and test your programs on devices. This subsection does not apply to Microsoft Software addressed in subsection (b) below.\nSoftware on Documentation Portals.Software accessible on the Documentation Portals is made available by the designated publisher under the associated license terms. If Software is accessible on the Documentation Portals without license terms, then subject subsection (c) below you may use it to design, develop, and test your programs. If any such Software without license terms is marked as \"sample\" or \"example,\" then you may use it under the terms of the Microsoft Limited Public License.\nScope of rights. All Microsoft Software are the copyrighted works of Microsoft or its suppliers. All Microsoft Software are licensed not sold and may not be transferred unless specified otherwise in any license terms provided with the Microsoft Software. Rights to access Microsoft Software on any device do not give you any right to implement Microsoft patents or other Microsoft intellectual property in software or devices that access that device.\nThird party software. You are solely responsible for any third party software that you install, connect, or use with any Service. We will not run or make any copies of such third party software outside of our relationship with you. You may only install or use any third party software with any Service in a way that does not subject our intellectual property or technology to any terms governing such software. We are not a party to and are not bound by any terms governing your use of any third party software. We do not grant any licenses or rights, express or implied, to such third party software.\nOpen source software as part of the Service. If the Service uses or distributes any third party software with open source software license terms (\"Open Source\"), then such Open Source is licensed to you by Microsoft solely to allow you to interact with the Service under terms of this Agreement. Copies of those applicable Open Source licenses and any other notices, if any, are included for your information only.\nApplication programming interfaces. Microsoft will not assert any of its patent rights on account of your products calling application programming interfaces that it publishes on the Documentation Portals (\"APIs\") in order to receive services from the Microsoft product that exposes the APIs.\n\n3. Microsoft Content.\nAll Microsoft Content is the copyrighted work of Microsoft or its suppliers, and is governed by the terms of the license agreement that accompanies or is included with the Microsoft Content. If the Microsoft Content does not include a license agreement, then you may make a reasonable number of copies of the Microsoft Content for your internal use in designing, developing, and testing your software, products and services that is made available to you on the Documentation Portals without a license agreement. You must preserve the copyright notice in all copies of the Microsoft Content and ensure that both the copyright notice and this permission notice appear in those copies. Accredited educational institutions, such as K-12 schools, universities, and private or public colleges may download and reproduce Microsoft Content for distribution in the classroom for educational purposes.\n\n4. Security, privacy, and Customer Data.\nSecurity. We maintain technical and organizational measures, internal controls, and data security routines intended to protect Customer Data against accidental loss or change, unauthorized disclosure or access, or unlawful destruction.\nPrivacy and data location. We treat Customer Data in accordance with the terms herein and our Privacy Statement. We may transfer to, store, and process Customer Data in the United States or in any country where we or our Affiliates or subcontractors have facilities used for Developer Services. You will obtain any necessary consent or rights from end users or others whose data or personal information or other data you will be hosting in the Services.\nRights to Provide Customer Data. You are solely responsible for your Customer Data. You must have, and you hereby grant us, sufficient rights to use and distribute Customer Data (including Customer Data sourced from third parties) necessary for us to provide you the Developer Services without violating the rights of any third party, or otherwise obligating Microsoft to you or to any third party. We do not assume any additional obligations that may apply to Customer Data except as required by applicable law.\nOwnership of Customer Data. Except for software and Content we license to you, as between the parties, you retain all right, title and interest in and to Customer Data. We acquire no rights in Customer Data other than as described in this Section 4.\nUse of Customer Data. We will use Customer Data to provide the Services. This use may include troubleshooting to prevent, find and fix problems with the operation of the Services and ensuring compliance with this Agreement. It may also include: providing you with suggestions to help you discover and use functionality within the Services; improving the features of our Services; and otherwise use patterns, trends, and other statistical data derived from Customer Data to provide, operate, maintain, and improve our products and services. We will not use Customer Data or derive information from it for any (1) advertising or (2) other commercial purposes (beyond providing you with the Services) without your consent.\nCustomer Data return and deletion. You may delete your Customer Data at any time. If you terminate your account we may delete Customer Data immediately without any retention period. We have no additional obligation to continue to hold, export, or return Customer Data and have no liability whatsoever for deletion of Customer Data pursuant to this Agreement. The Developer Services may have features that incur additional charges or are only available at a specific paid-for-service feature tier. If your account is in arrears or is downgraded to a lesser service feature tier your Customer Data will be preserved, but certain features necessary to access that Customer Data may be inaccessible.\nThird party requests of Customer Data. We will not disclose Customer Data to a third party (including law enforcement, other government entity, or civil litigant, but excluding our subcontractors) except as you direct or unless required by law. We will ask any third party demanding access to your Customer Data to contact you directly using your basic contact information. We will promptly notify you and provide a copy of the demand unless legally prohibited. You are responsible for responding to requests by a third party regarding your use of Services.\nSubcontractors. We may hire other companies to provide limited services on our behalf, such as customer support. Any such subcontractors will be permitted to obtain Customer Data only to deliver the services we have retained them to provide. We remain responsible for our subcontractors\u2019 compliance with the obligations set forth in this Agreement.\nCompliance with law. We will comply with all laws applicable to our provision of the Services, including applicable security breach notification laws, but not including any laws applicable to you or your industry that are not generally applicable to information technology services providers. You will comply with all laws applicable to your Customer Data, and use of the Services, including any laws applicable to you or your industry.\nCertifications and compliance. The Developer Services shall be subject to any security, privacy, and compliance practices specifically described for the Developer Services at the Developer Services Portal. These obligations do not apply to any other elements of the Services.\nClaims of infringement. We will inform you if we receive notice claiming that your usage of the Service infringes a third party\u2019s intellectual property rights, and in such instances we may provide your basic contact information to the third party. You will promptly respond to such complaints.\n\n5. Customer accounts, customer conduct, identity services, and feedback.\nAccount creation. If any of the Services requires you to open an account, you must complete the registration process by providing us with current, complete and accurate information. You may not select an account user name or identifier that impersonates someone else, is or may be illegal, or may be protected by trademark or other proprietary rights, is vulgar or offensive or may cause confusion. We reserve the right to reject and/or reassign these user names and Service identifiers in our sole discretion.\nResponsibility for your accounts. You are responsible for: any and all activities that occur under your account; maintaining the confidentiality of any non-public authentication credentials associated with your use of the Services; and promptly notifying our customer support team about any possible misuse of your accounts or authentication credentials, or any security incident related to the Services.\nYour conduct and the availability of third party content and links to third party content. . For any public, community interaction you undertake on the Services you must follow the Rules of Conduct. We have no obligation to monitor the content and communications of third parties on the Services; however, we reserve the right to review and remove any such materials posted to the Documentation Portals in our sole discretion. Third parties that participate on the Services are not authorized Microsoft spokespersons, and their views do not necessarily reflect those of Microsoft.\nIdentity usage across Services. We may provide Services that supplement Microsoft Software and rely upon your user account or other identity mechanism. We may use this information to identify you and authorize access to Microsoft Content, Microsoft Software, and other resources across the Services.\nSubmissions and feedback. We do not claim ownership of any Submission unless otherwise agreed to by the parties. However, by providing a Submission, you are irrevocably granting Microsoft and its Affiliates the right to make, use, modify, distribute and otherwise commercialize the Submission in any way and for any purpose (including by granting the general public the right to use your Submissions in accordance with this Agreement, which may change over time). For Submissions provided to the Documentation Portals you further grant the right to publish specific identifying information detailed in the Privacy Statement in connection with your Submission. These rights are granted under all applicable intellectual property rights you own or control. No compensation will be paid with respect to the use of your Submissions. Microsoft is under no obligation to post or use any Submission, and Microsoft may remove any Submission at any time. By providing a Submission you warrant that you own or otherwise control all of the rights to your Submission and that your Submission is not subject to any rights of a third party (including any personality or publicity rights of any person).\nServices accessible only to invited customers. Elements of the Services may be accessible to you on an invitation only basis, for example as part of a program for using pre-release Services and providing feedback to us (e.g., through the Connect portal). Those Services are confidential information of Microsoft. You may not disclose this confidential information to any third party for a period of five years. This restriction does not apply to any information that is or becomes publicly available without a breach of this restriction, was lawfully known to the receiver of the information without an obligation to keep it confidential, is received from another source who can disclose it lawfully and without an obligation to keep it confidential, or is independently developed. You may disclose this confidential information if required to comply with a court order or other government demand that has the force of law. Before doing so, you must seek the highest level of protection available and, when possible, give us enough prior notice to provide a reasonable chance to seek a protective order.\n\n6. Term, termination, and suspension.\nAgreement Term and termination. You may terminate this Agreement at any time. If you have purchased access to Developer Services through Windows Azure then you must pay any amounts due and owing.\nRegulatory. In any country where any current or future government regulation or requirement that applies to us, but not generally to businesses operating there, presents a hardship to us operating the Services without change, and/or causes us to believe this Agreement or the Services may be in conflict with any such regulation or requirement, we may change the Services or terminate the Agreement. Your sole remedy for such changes to the Services under this Section is to terminate this Agreement.\nSuspension. We may suspend your use of the Services if: (1) reasonably needed to prevent unauthorized access to Customer Data; (2) you fail to respond to a claim of alleged infringement under Sections 4.k or 8 within a reasonable time; or (3) you violate this Agreement. We will attempt to suspend access to the minimum necessary part of the Services while the condition or need exists. We will give notice before we suspend, except where we reasonably believe we need to suspend immediately. If you do not fully address the reasons for the suspension within 60 days after we suspend, we may terminate this Agreement and delete your Customer Data without any retention period. We may also terminate your account if your use of the Developer Services is suspended more than twice in any 12-month period.\nTermination for non-usage. We may suspend or terminate a Service account after a prolonged period of inactivity. For Developer Services, if you have a free account we may terminate this Agreement and/or delete any Customer Data automatically generated during the Developer Services sign up process if you fail to upload or create any Customer Data within 90 days of your initial provisioning of the Developer Service. We will provide you with notice prior to any account suspension or termination, or Customer Data deletion.\nTermination of Access to Documentation Portals. We reserve the right to terminate your access to the Documentation Portals at any time, without notice, for any reason whatsoever.\n\n7. Warranties.\nMicrosoft Services warranty. If you are a Windows Azure customer who has purchased access to the Developer Services, then we warrant that the Developer Services will satisfy the SLA during the Term for the paid for portion of the Developer Services. Your only remedies for breach of this limited warranty are those in the SLA. This warranty is subject to the following limitations:\nany implied warranties, guarantees or conditions not able to be disclaimed as a matter of law will last one year from the start of the limited warranty;\nthis limited warranty does not cover problems caused by accident, abuse or use of the Developer Services in a manner inconsistent with this Agreement or our published documentation or guidance, or resulting from events beyond our reasonable control;\nthis limited warranty does not apply to problems caused by the failure to meet minimum system requirements; and\nthis limited warranty does not apply to Previews or free offerings.\nOTHER THAN THIS WARRANTY, OR EXCEPT AS WARRANTED IN A SEPARATE AGREEMENT, MICROSOFT AND ITS RESPECTIVE SUPPLIERS PROVIDE THE SERVICES (INCLUDING THE CONTENT AND APIS) \"AS IS,\" \"WITH ALL FAULTS\" AND \"AS AVAILABLE.\" YOU BEAR THE RISK OF USING IT. WE PROVIDE NO WARRANTIES, GUARANTEES OR CONDITIONS, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. YOU MAY HAVE ADDITIONAL RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. THESE DISCLAIMERS WILL APPLY TO THE FULLEST EXTENT PERMITTED UNDER APPLICABLE LAW, INCLUDING APPLICATION TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nThird party content and materials. MICROSOFT DOES NOT CONTROL, REVIEW, REVISE, ENDORSE, OR ACCEPT RESPONSIBILITY FOR ANY THIRD PARTY CONTENT, INFORMATION, MESSAGES, MATERIALS, PROJECTS ACCESSIBLE FROM OR LINKED THROUGH THE SERVICES, AND, EXCEPT AS WARRANTED IN A SEPARATE AGREEMENT, MICROSOFT MAKES NO REPRESENTATIONS OR WARRANTIES WHATSOEVER ABOUT AND SHALL NOT BE RESPONSIBLE FOR ANY OF THE FOREGOING. ANY DEALINGS YOU MAY HAVE WITH SUCH THIRD PARTIES ARE AT YOUR OWN RISK.\n\n8. Defense of claims.\nDefense. We will defend you against any claims made by an unaffiliated third party that the Developer Services or Developer Services Software infringe its patent, copyright or trademark or makes unlawful use of its trade secret. You will defend us against any claims made by an unaffiliated third party that any (1) Non-Microsoft Product that is not made available through the Developer Services or Developer Services Software or (2) Customer Data you provide directly or indirectly in using the Services infringe the third party\u2019s patent, copyright, or trademark or makes unlawful use of its trade secret.\nLimitations. Our obligations in Section 8.a will not apply to a claim or award based on: (1) Customer Data, Non-Microsoft Product, modifications you make to the Services, or materials you provide or make available as part of using the Services; (2) your combination of the Services with, or damages based upon the value of, a Non-Microsoft Product, data or business process; (3) your use of a Microsoft trademark without our express written consent, or your use of the Services after we notify you to stop due to a third-party claim; or (4) your redistribution of the Services to, or use for the benefit of, any unaffiliated third party.\nRemedies. If we reasonably believe that a claim under Section 8.a may bar your use of the Developer Services or Developer Services Software, we will seek to: (1) obtain the right for you to keep using it; or (2) modify or replace it with a functional equivalent. If these options are not commercially reasonable, we may terminate your rights to use the Developer Services or Developer Services Software.\nObligations. Each party must notify the other promptly of a claim under this Section 8. The party seeking protection must (1) give the other sole control over the defense and settlement of the claim; and (2) give reasonable help in defending the claim. The party providing the protection will (1) reimburse the other for reasonable out-of-pocket expenses that it incurs in giving that help and (2) pay the amount of any resulting adverse final judgment (or settlement that the other consents to). The parties\u2019 respective rights to defense and payment of judgments or settlements under this Section are in lieu of any common law or statutory indemnification rights or analogous rights, and each party waives such common law rights.\n\n9. Limitation of liability.\nLimitation. The aggregate liability of each party under this Agreement is limited to direct damages up to the amount paid under this Agreement for the Developer Services giving rise to that liability during the 12 months before the liability arose, or for Services provided free of charge, Five Hundred United States dollars ($500.00 USD).\nEXCLUSION. NEITHER PARTY, NOR ITS SUPPLIERS WILL BE LIABLE FOR LOSS OF REVENUE, LOST PROFITS, OR INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE, OR EXEMPLARY DAMAGES, EVEN IF THE PARTY KNEW THEY WERE POSSIBLE.\nExceptions to Limitations. The limits of liability in this Section apply to the fullest extent permitted by applicable law, but do not apply to: (1) the parties\u2019 obligations under Section 8 or Exhibit A; or (2) breach of any confidentiality obligation or violation of the other's intellectual property rights.\n\n10. Miscellaneous.\nNo additional rights granted. We reserve all rights not expressly granted under this agreement, and no other rights are granted under this agreement by implication or estoppel or otherwise.\nNotices.\nYou must send notices by mail to the address listed for the Microsoft contracting entity listed in Exhibit A applicable to your primary place of business, with a copy to:\nMicrosoft Legal and Corporate Affairs (Developer Division)\nOne Microsoft Way\nRedmond, WA 98052 USA\nYou agree to receive electronic notices from us related to the Services, which will be sent by email to your specified end user or administrator contact information or presented to you in the Service experience. Notices are effective on the date on the return receipt for mail, the date sent for email, and the date presented if within the Service experience.\nAssignment. You may not assign this agreement either in whole or in part.\nSeverability. If any part of this agreement is held unenforceable, the rest remains in full force and effect.\nWaiver. Failure to enforce any provision of this agreement will not constitute a waiver.\nNo agency. We are independent contractors. This agreement does not create an agency, partnership or joint venture.\nNo third-party beneficiaries. There are no third-party beneficiaries to this agreement.\nApplicable law and venue. The choice of law and venue applicable to the geography of your primary place of business is listed in Exhibit A.\nEntire agreement. This agreement is the entire agreement concerning its subject matter and supersedes any prior or concurrent communications. Additional terms applicable to this agreement based on the geography of your primary place of business are listed in Exhibit A.\nSurvival. The following provisions will survive this agreement\u2019s termination: 1.b, 2.a-b, 4, 5.a-d, 5.f-g, 6, 7, 8, 9, 10, 11, Exhibit A and all other definitions.\nU.S. export jurisdiction. The Services are subject to U.S. export jurisdiction. You must comply with all applicable laws, including the U.S. Export Administration Regulations, the International Traffic in Arms Regulations, and end-user, end-use and destination restrictions issued by U.S. and other governments. For additional information, see http://www.microsoft.com/exporting/.\nInternational availability. Availability of the Services, including specific features and language versions, varies by country.\nAcquired rights. You will defend us against any claim that arises from (1) any aspect of the current or former employment relationship between you and any of your current or former personnel or contractors or under any collective agreements, including, without limitation, claims for wrongful termination, breach of express or implied employment contracts, or payment of benefits or wages, unfair dismissal costs, or redundancy costs, or (2) any obligations or liabilities whatsoever arising under the Acquired Rights Directive (Council Directive 2001/23/EC, formerly Council Directive 77/187/EC as amended by Council Directive 98/50/EC) or any national laws or regulations implementing the same, or similar laws or regulations, (including the Transfer of Undertakings (Protection of Employment) Regulations 2006 in the United Kingdom) including a claim from your current or former personnel or contractors (including a claim in connection with the termination of their employment by us following any transfer of their employment to us pursuant to such laws or regulations). You must pay the amount of any resulting adverse final judgment (or settlement to which you consent). This section provides our exclusive remedy for these claims. We will notify you promptly in writing of a claim subject to this section. We must (1) give you sole control over the defense or settlement of such claim; and (2) provide reasonable assistance in defending the claim. You will reimburse us for reasonable out of pocket expenses that we incur in providing assistance.\nForce majeure. Neither party will be liable for any failure in performance due to causes beyond its reasonable control (such as fire, explosion, power blackout, earthquake, flood, severe storms, strike, embargo, labor disputes, acts of civil or military authority, war, terrorism including cyber terrorism), acts of God, acts or omissions of Internet traffic carriers, actions or omissions of regulatory or governmental bodies (including the passage of laws or regulations or other acts of government that impact the delivery of Services).\nModifications. We may modify this agreement at any time with or without individual notice to you by posting a revised version on the legal information section of the Developer Services and Documentation Portals (or an alternate site we identify), or by notifying you in accordance with Section 10.b. Any modifications will be effective upon your continued use of a Service.\nNotices and procedure for making claims of copyright infringement. Pursuant to Title 17, United States Code, Section 512(c)(2), notifications of claimed copyright infringement should be sent to our designated agent. ALL INQUIRIES NOT RELEVANT TO THE FOLLOWING PROCEDURE WILL NOT RECEIVE A RESPONSE. See Notice and Procedure for Making Claims of Copyright Infringement ( http://www.microsoft.com/info/cpyrtInfrg.htm).\n\n11. Definitions.\nAny reference in this agreement to \"day\" will be a calendar day.\n\n\"Affiliate\" means any legal entity that a party owns or that owns a party, with a 50% or greater interest.\n\n\"Content\" means documents, photographs, videos, and other graphical, textual, or audio-visual content that may be subject to copyright protection.\n\n\"Customer Data\" means any Content or other data, including all text, sound, software, or image files that are provided to us by, or on behalf of, you through your use of the Developer Services for use by you or your authorized users. Customer Data does not include Submissions or any other Content or data that you submit to the Documentation Portals or otherwise provide via the Developer Services for public access.\n\n\"Developer Services\" means Visual Studio Online, the Developer Services Portal, the Visual Studio profile services, and other services we identify as governed by this Agreement.\n\n\"Developer Services Portal\" means the Visual Studio Online portal site available at http://www.visualstudio.com.\n\n\"Developer Services Software\" means Microsoft software we provide to you as part of the Developer Services for use with the Developer Services.\n\n\"Documentation Portals\" means the Microsoft developer network content and marketing site available at http://msdn.microsoft.com\" and information technology specialist content and marketing site available at http://technet.microsoft.com, or at alternate sites we identify.\n\n\"Microsoft Content\" means Content on the Services provided by Microsoft and its suppliers.\n\n\"Microsoft Limited Public License\" means the Microsoft Limited Public License software license, a copy of which is provided in Exhibit B.\n\n\"Microsoft Software\" means Microsoft software and computer code, including sample code and Developer Services Software.\n\n\"Non-Microsoft Product\" is any software, data, service, website or other product licensed, sold or otherwise provided to you by an entity other than us, whether you obtained it via our Services or elsewhere.\n\n\"Offer Details\" means the pricing and related terms applicable to paid for Developer Services.\n\n\"Preview\" means preview, beta, or other pre-release versions of the Developer Services or Developer Services Software offered by Microsoft.\n\n\"Privacy Statement\" means the Services privacy statement ( http://go.microsoft.com/fwlink/?LinkID=246330).\n\n\"Rules of Conduct\" means the Services rules of conduct ( http://go.microsoft.com/fwlink/?LinkId=303819).\n\n\"Services\" means the Developer Services, Documentation Portals, the http://connect.microsoft.com site, and Microsoft Software we make available to you under this Agreement.\n\n\"SLA\" means the commitments we make regarding delivery or performance of the Developer Services ( http://go.microsoft.com/fwlink/?LinkId=309360).\n\n\"Submissions\" means Content, code, comments, feedback, suggestions, information or materials that you provide via the Documentation Portals or any Services for public access (rather than for your personal use or use by your authorized users). Submissions do not include Customer Data.\n\n\"User Plan\" means a per-user based subscription, trial, or other Microsoft granted benefit that permits access to and account services for the Developer Services.\n\n\"we\" and \"us\" means the Microsoft entity listed in Exhibit A applicable to your location and its Affiliates, as appropriate.\n\n\"you\" and \"your\" means the person or entity accepting this Agreement to use the Services.\n\nCOPYRIGHT NOTICE\n\n\u00a9 2013 Microsoft Corporation. All rights reserved.\n\nExhibit A\nCustomer Location Agreement Addendum\n\nThe Microsoft entity entering into this agreement, the applicable Microsoft entity contact information, the controlling law and venue, and additional terms governing this agreement with you are indicated in the table below for the country or region of your primary place of business.\n\nIf your primary place of business is in Africa, Europe, or the Middle East then these terms apply to our agreement.\nMicrosoft Entity and Contact Information\tApplicable Law and Venue\tAdditional Terms\nMicrosoft Ireland Operations Limited\nThe Atrium, Block B, Carmenhall Road\nSandyford Industrial Estate\nDublin 18\nIreland\tThis agreement is governed by the laws of Ireland, without regard to its conflict of laws principles except that (1) if you are a U.S. Government entity, this agreement is governed by the laws of the United States, and (2) if you are a state or local government entity in the United States, this agreement is governed by the laws of that state. If we bring an action to enforce this agreement, we will bring it in the jurisdiction where you have your headquarters. If you bring an action to enforce this agreement, you will bring it in Ireland. This choice of jurisdiction does not prevent either party from seeking injunctive relief in any appropriate jurisdiction with respect to violation of intellectual property rights.\t \nIf your primary place of business is in American Samoa, Australia, Bangladesh, Bhutan, Brunei Darussalam, Cambodia, East Timor, Hong Kong SAR, India, Indonesia, Lao Peoples Democratic Republic, Macau SAR, Malaysia, Maldives, Nepal New Zealand, People\u2019s Republic of China, Philippines; Republic of Korea, Samoa, Singapore, Sri Lanka, Thailand, Vanuatu or Vietnam then these terms apply to our agreement.\nMicrosoft Entity and Contact Information\tApplicable Law and Venue\tAdditional Terms\nMicrosoft Regional Sales Corporation \n438B Alexandra Road, #04-09/12,\nBlock B, Alexandra Technopark \nSingapore, 119968\t\nThis agreement is governed by State of Washington law, without regard to its conflict of laws principles. Subject to sections (i) and (ii) below, if we bring an action to enforce this agreement, we will bring it in the jurisdiction where you have your headquarters. If you bring an action to enforce this agreement, you will bring it in the State of Washington, U.S.A. This choice of jurisdiction does not prevent either party from seeking injunctive relief with respect to a violation of intellectual property rights.\n\ni. If your principal place of business is in Brunei, Malaysia or Singapore, you consent to the non-exclusive jurisdiction of the Singapore courts.\n\nii. If your principal place of business is in Bangladesh, Cambodia, India, Indonesia, Macau SAR, the People's Republic of China, Sri Lanka, Thailand, The Philippines or Vietnam, any dispute arising out of or in connection with this agreement, including any question regarding its existence, validity or termination, shall be referred to and finally resolved by arbitration in Singapore in accordance with the Arbitration Rules of the Singapore International Arbitration Centre (\"SIAC\"), which rules are deemed to be incorporated by reference into this subsection. The Tribunal shall consist of one arbitrator to be appointed by the Chairman of SIAC. The language of the arbitration shall be English. The decision of the arbitrator shall be final, binding and incontestable and may be used as a basis for judgment thereon in the above-named countries or elsewhere. To the maximum extent permitted by applicable law, the parties waive their right to any form of appeal or other similar recourse to a court of law. For the purpose of this agreement only, the People's Republic of China does not include Hong Kong SAR, Macau SAR and Taiwan.\n\nThe parties agree that this Agreement be written and executed in English and that, in the event this Agreement is translated into Bahasa Indonesia to comply with the implementing regulations of Indonesian Law No. 24/2009, the English language version of this Agreement controls.\n \nIf your primary place of business is in North America, South America, or all remaining regions and countries not included in the above and where the Services are lawfully available then these terms apply to our agreement.\nMicrosoft Entity and Contact Information\tApplicable Law and Venue\tAdditional Terms\nMicrosoft Corporation \nOne Microsoft Way\nRedmond, WA 98052 (\u00c9tats-Unis)\tThis agreement is governed by State of Washington law, without regard to its conflict of laws principles. Any action to enforce this agreement must be brought in the State of Washington. This choice of jurisdiction does not prevent either party from seeking injunctive relief in any appropriate jurisdiction with respect to violation of intellectual property rights.\t \n \n\nExhibit B\nMicrosoft Limited Public License\n\nThis license governs use of code marked as \"sample\" or \"example\" available on this web site without a license agreement, as provided under the section above titled \"NOTICE SPECIFIC TO SOFTWARE AVAILABLE ON THIS WEB SITE.\" If you use such code (the \"software\"), you accept this license. If you do not accept the license, do not use the software.\n\n1. Definitions\n\nThe terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and \"distribution\" have the same meaning here as under U.S. copyright law.\n\nA \"contribution\" is the original software, or any additions or changes to the software.\n\nA \"contributor\" is any person that distributes its contribution under this license.\n\n\"Licensed patents\" are a contributor\u2019s patent claims that read directly on its contribution.\n\n2. Grant of Rights\n\n(A) Copyright Grant - Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create.\n\n(B) Patent Grant - Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software.\n\n3. Conditions and Limitations\n\n(A) No Trademark License- This license does not grant you rights to use any contributors\u2019 name, logo, or trademarks.\n\n(B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically.\n\n(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software.\n\n(D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license.\n\n(E) The software is licensed \"as-is.\" You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n\n(F) Platform Limitation - The licenses granted in sections 2(A) and 2(B) extend only to the software or derivative works that you create that run on a Microsoft Windows operating system product.", + "json": "ms-developer-services-agreement.json", + "yaml": "ms-developer-services-agreement.yml", + "html": "ms-developer-services-agreement.html", + "license": "ms-developer-services-agreement.LICENSE" + }, + { + "license_key": "ms-developer-services-agreement-2018-06", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-dev-services-2018-06", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-developer-services-agreement-2018-06" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft Developer Agreement\n\nLast updated: June 2018\nThis agreement is between you and Microsoft Corporation (\u201cMicrosoft\u201d), and consists of the terms below (\u201cDeveloper Terms\u201d) and the Microsoft Privacy Statement (together, \u201cAgreement\u201d).\nIf you are entering into this Agreement on behalf of an entity, such as your employer, you represent that you have the legal authority to bind that entity. If you specify a company name in connection with signing up for or ordering a Service, you will be deemed to have placed that order and to have entered into this Agreement on behalf of that organization or company. Key terms are defined in Section 10.\n1. Offerings\n 1. APIs. Your access and use of Microsoft\u2019s APIs are governed by certain terms and conditions. As the developer, you\u2019re responsible for your application and compliance with all the laws and regulations applicable to your use of Microsoft\u2019s APIs, including those laws and regulations that apply to privacy, biometric data, data protection, and confidentiality of communications. Nothing in our governing agreements, or this Agreement, shall be construed as creating a joint controller or processor-sub processor relationship between you and Microsoft.\n 1. Accompanying Terms. Your use of Microsoft\u2019s APIs is governed by the terms under which you obtained access. If you access APIs that present accompanying terms (\u201cAccompanying Terms\u201d), then such Accompanying Terms, along with the Microsoft Privacy Statement, will apply to your access and use of the Service. In particular, the Microsoft Graph API is provided pursuant to the terms here.\n 2. Application Registration Portal. Certain identity focused Microsoft APIs will require that you register your application here. If you are required to register your application at the following URL, then you must comply with the following terms:\n 1. Register your application. Your applications must be registered and have an App ID that is unique to each application. Once you have successfully registered an application, you will be given Access Credentials for your application. \u201cAccess Credentials\u201d means the necessary security keys, secrets, tokens, and other credentials to access identity focused Microsoft APIs. The Access Credentials enable us to associate your application with your use of the identity focused Microsoft APIs. All activities that occur using your Access Credentials are your responsibility. Access Credentials are non-transferable and non-assignable. Keep them secret. Do not try to circumvent them. In the event of a change of control, and subject to the acquiring company\u2019s compliance with all of the terms and conditions of the then current Graph API Terms, you may sell, assign, and transfer an application\u2019s App ID to an acquiring company, and such acquiring company may continue to use the App ID as part of the acquired application.\n 2. Governing Terms. Unless a particular service presents Accompanying Terms to govern your access to Microsoft APIs, your application\u2019s access to identity focused Microsoft APIs is governed by the then current Microsoft Graph API license terms, as currently available here (\u201cGraph API Terms\u201d).\n 2. Services.\n 1. Right to use.\u00a0We may grant you the right to access and use the Services in accordance with this Agreement.\n 2. Manner of use. You may not:\n 1. reverse engineer, decompile, disassemble or work around technical limitations in the Services, except to the extent that applicable law permits it despite these limitations;\n 2. disable, tamper with or otherwise attempt to circumvent any mechanism that limits your use of the Services;\n 3. rent, lease, lend, resell, transfer, or sublicense any Services or portion thereof to or for third parties, except as explicitly permitted herein or in license terms that accompany any Services component;\n 4. use the Services in a way prohibited by law, regulation, governmental order, or decree or by this Agreement;\n 5. use the Services in any manner that could damage, disable, overburden, or impair any Microsoft service, or the network(s) connected to any Microsoft service;\n 6. use the Services to violate the rights of others;\n 7. use the Services to try to gain unauthorized access to or disrupt any service, device, data, account or network;\n 8. use the Services to spam or distribute malware;\n 9. use the Services in a way that could harm the Services or impair anyone else\u2019s use of;\n 10. engage in activity that is fraudulent, false or misleading (e.g., asking for money under false pretenses, impersonating someone else, manipulating the Services to increase play count, or affect rankings, ratings, or comments).\n 11. scrape, build databases or otherwise create copies of any data accessed or obtained using the Services (including end users or their contacts), except as necessary to enable an intended usage scenario for your application;\n 12. use the Services in any application or situation where failure of the Services could lead to the death or serious bodily injury of any person, or to severe physical or environmental damage; or\n 13. help others break these rules.\n 3. Updates. Unless Microsoft otherwise specifies, Microsoft may make commercially reasonable changes to a Service or feature from time to time. Microsoft may further modify or terminate a Service in any country where Microsoft is subject to a government regulation, obligation or other requirement that (1) is not generally applicable to businesses operating there, (2) presents a hardship for Microsoft to continue operating the Service without modification, or (3) causes Microsoft to believe these terms or the Service may conflict with any such requirement or obligation.\n 4. Preview features. We may make features available on a Preview basis. Previews are provided \u201cAS-IS\u201d and are excluded from warranties in Section 6 below. Previews may be subject to reduced or different security, compliance, privacy, availability, reliability, and support commitments, as further explained in the Privacy Statement, and any additional notices provided with the Preview. We may change or discontinue Previews at any time without notice. We also may choose not to release a Preview into \u201cGeneral Availability\u201d, and if we do make Previews \u201cGenerally Available\u201d we may charge for any such features.\n2. Software and Microsoft Content\n 1. Using Microsoft Software and Microsoft Content outside the Service. Microsoft may provide you with Microsoft Software or Microsoft Content through or as a part of the Services. Termination or suspension of this Agreement or of your use or access to the Services terminates your right to possess or use any such Microsoft Software or Microsoft Content unless separately licensed to you. The suspension or termination of a User Plan terminates that user\u2019s right to possess or use any such Microsoft Software or Microsoft Content associated with, or contingent upon that User Plan. You must delete all copies of such Microsoft Software or Microsoft Content licensed under this Agreement and destroy any associated media upon the termination of the associated possession or usage rights. This subsection does not apply to Microsoft Software addressed in subsection (b) below.\n 2. Software and Content on Documentation Portals. Third-party software and Content accessible on the Documentation Portals is made available by the designated publisher under the associated license terms.\n 3. Scope of rights. All Microsoft Software and Microsoft Content are the copyrighted works of Microsoft or its suppliers are licensed not sold and may not be transferred unless specified otherwise.\n 4. Third-party software or Content. You are solely responsible for any third-party software or Content that you install, connect, or use with any Service. We will not run or make any copies of such third-party software or Content outside of our relationship with you. You may only install or use any third-party software or Content with any Service in a way that does not subject our intellectual property or technology to any terms governing such software or Content. We are not a party to and are not bound by any terms governing your use of any third-party software or Content. We do not grant any licenses or rights, express or implied, to such third-party software or Content.\n 5. Open source software as part of the Service. If the Service uses or distributes any third-party software with open source software license terms (\u201cOpen Source\u201d), then such Open Source is licensed to you under the applicable open source terms. Copies of those applicable Open Source licenses and any other notices, if any, are included for your information only.\n 6. Classroom Use. Accredited educational institutions, such as K-12 schools, universities, and private or public colleges may download and reproduce Microsoft Content for distribution in the classroom for educational purposes.\n3. Security and privacy\n 1. Security. We maintain technical and organizational measures, internal controls, and data security routines intended to protect User Data against accidental loss or change, unauthorized disclosure or access, or unlawful destruction.\n 2. Compliance with applicable laws; deletion of Personal Data\n 1. You must comply with all laws and regulations applicable to your use of the Services and all data and Content accessed through the Services including without limitation, laws related to privacy, biometric data, data protection, and confidentiality of communications.\n 2. Your use of the Services and Content is conditioned upon implementing and maintaining appropriate protections and measures for your service and application, and that includes your responsibility to the data obtained through the use of the Services.\n 3. You must: (a) implement and maintain privacy protections and measures in your products and services, including obtaining necessary consents prior to use of data (and obtain additional consent prior to changing use or purpose of data), and proper data retention periods, (b) comply with applicable notification requirements, (c) maintain and comply with a written privacy policy that describes your privacy practices regarding data and information you collect and use, and which is at least as protective of users as the Privacy Statement, (d) include an accessible link to your privacy policy within your application, and in any app store that so allows, and (e) obtain consent from end users that is sufficient for the purposes of your agreement with the end user prior to giving us information that you independently collected from them.\n 4. In addition to complying with your obligations under applicable law (including General Data Protection Regulation (GDPR) (EU) 2016/679) you will use current data. You may keep your data current by regularly refreshing the data, interfacing with a Microsoft API or Microsoft tool to maintain current data, or other processes that ensure changes to Microsoft data are accurately reflected.\n 5. Except as otherwise set forth herein, you will promptly delete all data and Content collected or processed through the Services, when: (a) a user abandons your application, uninstalls your application, closes their account with you, or otherwise abandons the account, or (b) you cease use of the Services. You may, however, keep aggregated data, provided that no information identifying a specific person could be inferred or created from such data and such actions otherwise comply with this Agreement and applicable law.\n 6. Unless you have a lawful basis for retaining Personal Data (as defined in the GDPR), you must delete all Personal Data accessed or processed through the Services within 30 days of receiving the data.\n 3. Compliance with law. We will comply with all laws applicable to our provision of the Services, including applicable security breach notification laws, but not including any laws applicable to you or your industry that are not generally applicable to information technology services providers. You will comply with all laws applicable to your User Data, and use of the Services, including any laws applicable to you or your industry.\n 4. Certifications and compliance. The Developer Services shall be subject to any security, privacy, and compliance practices specifically described for the Developer Services. These obligations do not apply to any other elements of the Services.\n 5. Monitoring; Audit. We may monitor your access and use of the Services (including applicable products and services, website, Content, and data) for purposes of monitoring your compliance with this Agreement. Further, your access and use of the Services and for five years after, you must, upon reasonable notice from Microsoft, permit Microsoft or its auditor, at Microsoft\u2019s cost, to conduct audits in connection with your use of the Services, to verify that your compliance with this Agreement. You must give Microsoft reasonable access to any personnel, premises, information, systems, books, and records relating to your use of the Services to enable Microsoft to conduct the audit. If requested, you must provide us with proof of your compliance with this Agreement.\n4. Customer accounts, customer conduct, and feedback\n 1. Account creation. If any of the Services requires you to open an account, you must complete the registration process by providing us with current, complete and accurate information. You may not select an account user name or identifier that impersonates someone else, is or may be illegal, or may be protected by trademark or other proprietary rights, is vulgar or offensive or may cause confusion. We reserve the right to reject and/or reassign these user names and Service identifiers in our sole discretion.\n 2. Responsibility for your accounts. You are responsible for: any and all activities that occur under your account; maintaining the confidentiality of any non-public authentication credentials associated with your use of the Services; and promptly notifying our customer support team about any possible misuse of your accounts or authentication credentials, or any security incident related to the Services.\n 3. Your conduct and the availability of third-party content and links to third-party content. We have no obligation to monitor the content and communications of third parties on the Services; however, we reserve the right to review and remove any such materials posted to the Documentation Portals in our sole discretion. Third parties that participate on the Services are not authorized Microsoft spokespersons, and their views do not necessarily reflect those of Microsoft.\n 4. Submissions and feedback. We do not claim ownership of any Submission unless otherwise agreed to by the parties. However, by providing a Submission, you are irrevocably granting Microsoft and its affiliates the right to make, use, modify, distribute and otherwise commercialize the Submission in any way and for any purpose (including by granting the general public the right to use your Submissions in accordance with this Agreement, which may change over time). For Submissions provided to the Documentation Portals you further grant the right to publish specific identifying information detailed in the Privacy Statement in connection with your Submission. These rights are granted under all applicable intellectual property rights you own or control. No compensation will be paid with respect to the use of your Submissions. Microsoft is under no obligation to post or use any Submission, and Microsoft may remove any Submission at any time. By providing a Submission you warrant that you own or otherwise control all of the rights to your Submission and that your Submission is not subject to any rights of a third-party (including any personality or publicity rights of any person).\n5. Termination and suspension\n 1. Your termination. You may terminate this Agreement at any time. If you have purchased access to Services through Microsoft Azure then you must pay any amounts due and owing.\n 2. Microsoft termination. We may terminate this Agreement, any rights granted herein, or your license to the Services, in our sole discretion at any time, for any reason.\n 3. Suspension. We may suspend or terminate your use of the Services if: (1) reasonably needed to prevent unauthorized access to User Data; (2) you fail to respond to a claim of alleged infringement within a reasonable time; or (3) you violate, or we reasonably suspect you have violated, this Agreement. We will attempt to suspend access to the minimum necessary part of the Services while the condition or need exists. We will give notice before we suspend or terminate, except where we reasonably believe we need to suspend or terminate immediately. If you do not fully address the reasons for the suspension within 60 days after we suspend, we may terminate this Agreement and delete your User Data without any retention period.\n 4. Termination for non-usage. We may suspend or terminate a Service account after a prolonged period of inactivity or for failing to respond to Microsoft communications. For Services, if you have a free account we may terminate this Agreement and/or delete any User Data automatically generated during the Services sign up process if you fail to upload or create any User Data within 90 days of your initial provisioning of the Service. We will provide you with notice prior to any account suspension or termination, or User Data deletion.\n6. Warranties\nEXCEPT AS WARRANTED IN ACCOMPANYING TERMS, MICROSOFT AND ITS RESPECTIVE SUPPLIERS PROVIDE THE SERVICES (INCLUDING THE MICROSOFT CONTENT AND MICROSOFT SOFTWARE) \u201cAS IS,\u201d \u201cWITH ALL FAULTS\u201d AND \u201cAS AVAILABLE.\u201d YOU BEAR THE RISK OF USING IT. WE PROVIDE NO WARRANTIES, GUARANTEES OR CONDITIONS, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. YOU MAY HAVE ADDITIONAL RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. THESE DISCLAIMERS WILL APPLY TO THE FULLEST EXTENT PERMITTED UNDER APPLICABLE LAW, INCLUDING APPLICATION TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\nThird-party content and materials. MICROSOFT DOES NOT CONTROL, REVIEW, REVISE, ENDORSE, OR ACCEPT RESPONSIBILITY FOR ANY THIRD-PARTY CONTENT, INFORMATION, MESSAGES, MATERIALS, PROJECTS ACCESSIBLE FROM OR LINKED THROUGH THE SERVICES, AND, EXCEPT AS WARRANTED IN A SEPARATE AGREEMENT, MICROSOFT MAKES NO REPRESENTATIONS OR WARRANTIES WHATSOEVER ABOUT AND SHALL NOT BE RESPONSIBLE FOR ANY OF THE FOREGOING. ANY DEALINGS YOU MAY HAVE WITH SUCH THIRD PARTIES ARE AT YOUR OWN RISK.\n7. Defense of claims\n 1. Defense. We will defend you against any claims made by an unaffiliated third-party that the Services or Software infringe its patent, copyright or trademark or makes unlawful use of its trade secret. You will defend us against any claims made by an unaffiliated third-party arising from (1) your misuse or your end user's misuse of the Services, Microsoft Content, or Microsoft Software; (2) your violation or your end user's violation of this Agreement; (3) any Content or data routed into or used with the Services, those acting on your behalf, or your end users.\n 2. Limitations. Our obligations in Section 7.1 will not apply to a claim or award based on: (1) User Data, Non-Microsoft Product, modifications you make to the Services, or materials you provide or make available as part of using the Services; (2) your combination of the Services with, or damages based upon the value of, a Non-Microsoft Product, data or business process; (3) your use of a Microsoft trademark without our express written consent, or your use of the Services after we notify you to stop due to a third-party claim; or (4) your redistribution of the Services to, or use for the benefit of, any unaffiliated third-party.\n 3. Remedies. If we reasonably believe that a claim under Section 7.1 may bar your use of the Services or Software, we will seek to: (1) obtain the right for you to keep using it; or (2) modify or replace it with a functional equivalent. If these options are not commercially reasonable, we may terminate your rights to use the Services or Software.\n 4. Obligations. Each party must notify the other promptly of a claim under this Section 7. The party seeking protection must (1) give the other sole control over the defense and settlement of the claim; and (2) give reasonable help in defending the claim. The party providing the protection will (1) reimburse the other for reasonable out-of-pocket expenses that it incurs in giving that help and (2) pay the amount of any resulting adverse final judgment (or settlement that the other consents to). The parties\u2019 respective rights to defense and payment of judgments or settlements under this Section 7 are in lieu of any common law or statutory indemnification rights or analogous rights, and each party waives such common law rights.\n8. Limitation of liability\n 1. Limitation. The aggregate liability of each party under this Agreement is limited to direct damages up to the amount paid under this Agreement for the Developer Services giving rise to that liability during the 12 months before the liability arose, or for Services provided free of charge, Five Hundred United States dollars ($500.00 USD).\n 2. EXCLUSION. NEITHER PARTY, NOR ITS SUPPLIERS WILL BE LIABLE FOR LOSS OF REVENUE, LOST PROFITS, OR INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE, OR EXEMPLARY DAMAGES, EVEN IF THE PARTY KNEW THEY WERE POSSIBLE.\n 3. Exceptions to Limitations. The limits of liability in this Section 8 apply to the fullest extent permitted by applicable law, but do not apply to: (1) the parties\u2019 obligations under Section 7; or (2) breach of Sections 3.2 - 3.4 or violation of the other's intellectual property rights.\n9. Miscellaneous\n 1. Reservation of Rights. All rights not expressly granted herein are reserved by Microsoft. You acknowledge that all intellectual property rights within the Services remain the property of Microsoft and nothing within this Agreement will act to transfer any of these intellectual property rights to you.\n 2. Notices. You must send notices by mail to: Microsoft One Microsoft Way Redmond, WA 98052 USA\n You agree to receive electronic notices from us related to the Services, which will be sent by email to your specified end user or administrator contact information or presented to you in the Service experience. You must keep your contact information updated. Notices are effective on the date on the return receipt for mail, the date sent for email, and the date presented if within the Service experience.\n 3. Assignment and Delegation. You may not assign or delegate any rights or obligations under this Agreement either in whole or in part, including in connection with a change of control, except for an App ID, as set forth Section in 1.1. Any purported assignment and delegation by you shall be ineffective. We may freely assign or delegate all rights and obligations under this Agreement, fully or partially without notice to you.\n 4. Severability. If any part of this agreement is held unenforceable, the rest remains in full force and effect.\n 5. No Waiver. Failure to enforce any provision of this agreement will not constitute a waiver.\n 6. No agency. We are independent contractors. This agreement does not create an agency, partnership or joint venture.\n 7. No third-party beneficiaries. There are no third-party beneficiaries to this agreement.\n 8. Applicable law and venue. If you live in (or, if a business, your principal place of business is in) the United States, the laws of the state where you live (or, if a business, where your principal place of business is located) govern all claims, regardless of conflict of laws principles, except that the Federal Arbitration Act governs all provisions relating to arbitration. You and we irrevocably consent to the exclusive jurisdiction and venue of the state or federal courts in King County, Washington, for all disputes arising out of or relating to these Terms or the Services that are heard in court (excluding arbitration and small claims court).\n 9. Entire agreement. This agreement is the entire agreement concerning its subject matter and supersedes any prior or concurrent communications.\n 10. Survival. 1.2, 2.3-2.6, 3.2, 3.5, 4.2, 4.4, 5, 6, 7, 8, 9, and 10, and all other definitions.\n 11. U.S. export jurisdiction. The Services are subject to U.S. export jurisdiction. You must comply with all applicable laws, including the U.S. Export Administration Regulations, the International Traffic in Arms Regulations, and end-user, end-use and destination restrictions issued by U.S. and other governments. For additional information, see Exporting Microsoft Products.\n 12. International availability. Availability of the Services, including specific features and language versions, varies by country.\n 13. Force majeure. Neither party will be liable for any failure in performance due to causes beyond its reasonable control (such as fire, explosion, power blackout, earthquake, flood, severe storms, strike, embargo, labor disputes, acts of civil or military authority, war, terrorism including cyber terrorism), acts of God, acts or omissions of Internet traffic carriers, actions or omissions of regulatory or governmental bodies (including the passage of laws or regulations or other acts of government that impact the delivery of Services).\n 14. Modifications. We may modify this agreement at any time with or without individual notice to you by posting a revised version on the legal information section of the Developer Services and Documentation Portals (or an alternate site we identify), or by notifying you in accordance with Section 9.b. Any modifications will be effective upon notice to you or posting. Your use of the Services after the changes become effective means you agree to the modifications to the Agreement. If you do not agree to the new Agreement, you must stop using the Services.\n10. Definitions\n\u201cContent\u201d means documents, photographs, videos, data, and other graphical, textual, or audio-visual content.\n\u201cDeveloper Services\u201d means services we identify as governed by this Agreement.\n\u201cDeveloper Software\u201d means Microsoft software we provide to you as part of the Developer Services for use with the Developer Services.\n\u201cDocumentation Portals\u201d means the site available at http://msdn.microsoft.com, http://technet.microsoft.com, http://docs.microsoft.com, http://developer.microsoft.com, or at alternate sites we identify.\n\u201cMicrosoft Content\u201d means Content on the Services provided by Microsoft and its suppliers.\n\u201cMicrosoft Software\u201d means Microsoft software and computer code, including sample code and Developer Software.\n\u201cNon-Microsoft Product\u201d is any software, data, service, website or other product licensed, sold or otherwise provided to you by an entity other than us, whether you obtained it via our Services or elsewhere.\n\u201cOffer Details\u201d means the pricing and related terms applicable to paid Developer Services.\n\u201cPreview\u201d means preview, beta, or other pre-release versions of the Developer Services or Developer Software offered by Microsoft.\n\u201cServices\u201d means the Developer Services, Documentation Portals, and Microsoft Software we make available to you under this Agreement.\n\u201cSubmissions\u201d means Content, code, comments, feedback, suggestions, information or materials that you provide via the Documentation Portals or any Services for public access (rather than for your personal use or use by your authorized users). Submissions do not include User Data.\n\u201cUser Plan\u201d means a per-user based subscription, trial, or other Microsoft granted benefit that permits access to and account services for the Developer Services.\n\u201cwe\u201d and \u201cus\u201d means Microsoft.\n\u201cyou\u201d and \u201cyour\u201d means the person or entity accepting this Agreement to use the Services.", + "json": "ms-developer-services-agreement-2018-06.json", + "yaml": "ms-developer-services-agreement-2018-06.yml", + "html": "ms-developer-services-agreement-2018-06.html", + "license": "ms-developer-services-agreement-2018-06.LICENSE" + }, + { + "license_key": "ms-device-emulator-3.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-device-emulator-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT DEVICE EMULATOR 3.0\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\n\u2022\tupdates,\n\n\u2022\tsupplements,\n\n\u2022\tInternet-based services, and \n\n\u2022\tsupport services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\n\nIf you comply with these license terms, you have the rights below.\n\n1.\tINSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your premises as follows:\n\n\u2022\tPersonal Use. You may install and use the software with third party programs designed and developed for use with the software.\n\n\u2022\tProduction Use. You may install and use any number of copies of the software on your premises to design, develop, test and demonstrate your programs.\n\n2.\tRIGHT TO DISTRIBUTE. If you comply with the terms below you may copy and distribute the object code form of the software in conjunction with the programs you develop.\n\na.\tDistribution Requirements. If you distribute the software, you must:\n\n\u2022\trequire distributors and external end users to agree to terms that protect it at least as much as this agreement; and\n\n\u2022\tdisplay your valid copyright notice on your programs.\n\nb.\tDistribution Restrictions. You may not\n\n\u2022\talter any copyright, trademark or patent notice in the software; \n\n\u2022\tuse Microsoft\u2019s trademarks in your programs in a way that suggests they come from or are endorsed by Microsoft; \n\n\u2022\tdistribute the software to run on a platform other than the Windows platform;\n\n\u2022\tinclude the software in malicious, deceptive or unlawful programs; or\n\n\u2022\tmodify or distribute the software so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\n\n\u2022\tthe code be disclosed or distributed in source code form; or \n\n\u2022\tothers have the right to modify it.\n\n3.\tSCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n\u2022\tdisclose the results of any benchmark tests of the software to any third party without Microsoft\u2019s prior written approval;\n\n\u2022\twork around any technical limitations in the software;\n\n\u2022\treverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\n\u2022\tmake more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n\n\u2022\tpublish the software for others to copy;\n\n\u2022\trent, lease or lend the software;\n\n\u2022\ttransfer the software or this agreement to any third party (except as permitted in Section 2); or\n\n\u2022\tuse the software for commercial software hosting services.\n\n4.\tBACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n5.\tDOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n6.\tEXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n7.\tSUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n8.\tENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n9.\tAPPLICABLE LAW.\n\na.\tUnited States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\nb.\tOutside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n10.\tLEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n11.\tDISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n12.\tLIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to\n\n\u2022\tanything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\n\u2022\tclaims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.", + "json": "ms-device-emulator-3.0.json", + "yaml": "ms-device-emulator-3.0.yml", + "html": "ms-device-emulator-3.0.html", + "license": "ms-device-emulator-3.0.LICENSE" + }, + { + "license_key": "ms-direct3d-d3d120n7-1.1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-direct3d-d3d120n7-1.1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT DIRECT3D 12 ON WINDOWS 7\n________________________________________\n\nThese license terms are an agreement between you and Microsoft Corporation (or one of its affiliates). They apply to the software named above and any Microsoft services or software updates (except to the extent such services or updates are accompanied by new or additional terms, in which case those different terms apply prospectively and do not alter your or Microsoft\ufffds rights relating to pre-updated software or services). IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS.\n\n1.\tINSTALLATION AND USE RIGHTS.\na)\tGeneral. Subject to the terms of this Agreement. You may install and use any number of copies of the software. You may copy and distribute the software (i.e. make available for third parties) in games you develop.\nb)\tIncluded Microsoft Applications. The software may include other Microsoft applications. These license terms apply to those included applications, if any, unless other license terms are provided with the other Microsoft applications.\nc)\tThird Party Software. The software may include third party applications that Microsoft, not the third party, licenses to you under this agreement. Any included notices for third party applications are for your information only.\nd)\tUtilities. The software may contain some items on the Utilities List at http://go.microsoft.com/fwlink/?LinkId=524839. You may copy and install those items, if included with the software, on your machines or third party machines to debug and deploy the applications and databases you develop with the software. Please note that Utilities are designed for temporary use, that Microsoft may not be able to patch or update Utilities separately from the rest of the software, and that some Utilities by their nature may make it possible for others to access machines on which they are installed. You should delete all Utilities you have installed after you finish debugging or deploying your applications and databases. Microsoft is not responsible for any third party use or access of Utilities you install on any machine.\n\n2.\tDATA COLLECTION. Some features in the software may enable collection of data from users of your applications that access or use the software. If you use these features to enable data collection in your applications, you must comply with applicable law, including getting any required user consent, and maintain a prominent privacy policy that accurately informs users about how you use, collect, and share their data. You can learn more about Microsoft\ufffds data collection and use in the product documentation and the Microsoft Privacy Statement at https://go.microsoft.com/fwlink/?LinkId=521839. You agree to comply with all applicable provisions of the Microsoft Privacy Statement.\n\n3.\tSCOPE OF LICENSE. The software is licensed, not sold. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you will not (and have no right to):\na)\twork around any technical limitations in the software that only allow you to use it in certain ways;\nb)\treverse engineer, decompile or disassemble the software;\nc)\tremove, minimize, block, or modify any notices of Microsoft or its suppliers in the software;\nd)\tuse the software in any way that is against the law or to create or propagate malware; or\ne)\tshare, publish, distribute, or lend the software, (except as expressly stated in Section 1) provide the software as a stand-alone hosted solution for others to use, or transfer the software or this agreement to any third party.\n\n4.\tDEVELOPMENT AND TESTING. To ensure your games using Direct3D 12 on Windows 7 also run on Windows 10 or successor operating systems, you must:\na)\tensure your games include support for both Direct3D 12 on Windows 7 and Direct3D 12 on Windows 10, with the appropriate version to be executed at runtime (i.e., all decisions where games change behavior or call different APIs based on Windows 7 versus Windows 10 must be made at runtime, and must be re-made each time your game is executed); \nb)\tinstall the same files for both Windows 7 and Windows 10; and\nc)\tprior to releasing games using Direct3D 12 on Windows 7, test your games to confirm they are working as intended when an end user upgrades to Windows 10 or a successor operating system without having to re-install the games. \n\n5.\tEXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit http://aka.ms/exporting.\n\n6.\tSUPPORT SERVICES. Microsoft is not obligated under this agreement to provide any support services for the software. Any support provided is \ufffdas is\ufffd, \ufffdwith all faults\ufffd, and without warranty of any kind.\n\n7.\tUPDATES. The software may periodically check for updates, and download and install them for you. You may obtain updates only from Microsoft or authorized sources. Microsoft may need to update your system to provide you with updates. You agree to receive these automatic updates without any additional notice. Updates may not include or support all existing software features, services, or peripheral devices.\n\n8.\tENTIRE AGREEMENT. This agreement, and any other terms Microsoft may provide for supplements, updates, or third-party applications, is the entire agreement for the software.\n\n9.\tAPPLICABLE LAW AND PLACE TO RESOLVE DISPUTES. If you acquired the software in the United States or Canada, the laws of the state or province where you live (or, if a business, where your principal place of business is located) govern the interpretation of this agreement, claims for its breach, and all other claims (including consumer protection, unfair competition, and tort claims), regardless of conflict of laws principles. If you acquired the software in any other country, its laws apply. If U.S. federal jurisdiction exists, you and Microsoft consent to exclusive jurisdiction and venue in the federal court in King County, Washington for all disputes heard in court. If not, you and Microsoft consent to exclusive jurisdiction and venue in the Superior Court of King County, Washington for all disputes heard in court.\n\n10.\tCONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state, province, or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state, province, or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:\na)\tAustralia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights.\nb)\tCanada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software.\nc)\tGermany and Austria.\ni.\tWarranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software.\nii.\tLimitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law.\nSubject to the foregoing clause ii., Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called \"cardinal obligations\"). In other cases of slight negligence, Microsoft will not be liable for slight negligence.\n\n11.\tDISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \ufffdAS IS.\ufffd YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES, OR CONDITIONS. TO THE EXTENT PERMITTED UNDER APPLICABLE LAWS, MICROSOFT EXCLUDES ALL IMPLIED WARRANTIES, INCLUDING MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.\n\n12.\tLIMITATION ON AND EXCLUSION OF DAMAGES. IF YOU HAVE ANY BASIS FOR RECOVERING DAMAGES DESPITE THE PRECEDING DISCLAIMER OF WARRANTY, YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, warranty, guarantee, or condition; strict liability, negligence, or other tort; or any other claim; in each case to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state, province, or country may not allow the exclusion or limitation of incidental, consequential, or other damages.", + "json": "ms-direct3d-d3d120n7-1.1.0.json", + "yaml": "ms-direct3d-d3d120n7-1.1.0.yml", + "html": "ms-direct3d-d3d120n7-1.1.0.html", + "license": "ms-direct3d-d3d120n7-1.1.0.LICENSE" + }, + { + "license_key": "ms-directx-sdk-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-directx-sdk-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "DirectX Software Development Kit END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE \n\nIMPORTANT-READ CAREFULLY: This Microsoft End-User License Agreement (\"EULA\") is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation (\"Microsoft\") for the Microsoft software product identified above, which includes computer software and may include associated media and printed materials, and \"online\" or electronic documentation (\"SOFTWARE PRODUCT). The SOFTWARE PRODUCT also includes any updates and supplements to the original SOFTWARE PRODUCT that is associated with a separate end-user license agreement is licensed to you under the terms of that license agreement. By installing, copying, downloading, accessing or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, do not install or use the SOFTWARE PRODUCT. \n\nSOFTWARE PRODUCT LICENSE\n\nThe SOFTWARE PRODUCT is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The SOFTWARE PRODUCT is licensed, not sold.\n\n1.GRANT OF LICENSE.\n\nThis EULA grants you the following limited, non-exclusive rights:\n\nSOFTWARE PRODUCT. You may install and use the SOFTWARE PRODUCT on an unlimited number of computers, including workstations, terminals or other digital electronic devices (\"COMPUTERS\") to design, develop, and test software application products for use with Microsoft operating system products including Windows NT Workstation 4.0, Windows NT Server 4.0, Windows 95 and subsequent releases thereto (\"Application\"). You may install copies of the SOFTWARE PRODUCT on up to ten (10) COMPUTERS provided that you are the only individual using the SOFTWARE PRODUCT on each such COMPUTER. If you are an entity, Microsoft grants you the right to designate one individual within your organization to have the right to use the SOFTWARE PRODUCT in the manner provided above.\n\nSAMPLE CODE. You may modify the sample source code located in the SOFTWARE PRODUCT's \"MSSDK\\Samples\\Multimedia\" directory (\"Sample Code\") to design, develop and test your Application. You may also reproduce and distribute the Sample Code in object code form along with any modifications you make to the Sample Code, provided that you comply with the Distribution Requirements described below. For purposes of this Section, \"modifications\" shall mean enhancements to the functionality of the Sample Code.\n\nREDISTRIBUTABLE CODE. Portions of the SOFTWARE PRODUCT are designated as \"Redistributable Code\". If you choose to distribute the Redistributable Code, you must include all files listed in such \"DirectX\" redist.txt file located in the directory named \\LICENSE. No modifications, additions, or deletions to the Redistributable Code are permitted without written permission from Microsoft Corporation. Your rights to distribute the Redistributable Code are subject to the Distribution Requirements described below.\n\nDISTRIBUTION REQUIREMENTS. You may reproduce and distribute an unlimited number of copies of the Sample Code and/or Redistributable Code, (collectively \"REDISTRIBUTABLE COMPONENTS\")as described above, provided that (a) you distribute the REDISTRIBUTABLE COMPONENTS only as part of, or for use in conjunction with your Application; (b) your Application adds significant and primary functionality to the REDISTRIBUTABLE COMPONENTS; (c) the REDISTRIBUTABLE COMPONENTS only operate in conjunction with Microsoft Windows operating system products including Windows NT Workstation 4.0, Windows NT Server 4.0, Windows 95, and subsequent versions thereof, (d) you distribute your Application containing the REDISTRIBUTABLE COMPONENTS pursuant to an End-User License Agreement (which may be \"break-the-seal\", \"click-wrap\", or signed), with terms no less protective than those contained herein; (e) you do not permit further redistribution of the REDISTRIBUTABLE COMPONENTS by your end-user customers; (f) you must use the setup utility included with the REDISTRIBUTABLE COMPONENTS to install the Redistributable Code; (g) you do not use Microsoft's name, logo, or trademarks to market your Application; (h) you include all copyright and trademark notices contained in the REDISTRIBUTABLE COMPONENTS; (i) you include a valid copyright notice on your Application; and (j) you agree to indemnify, hold harmless, and defend Microsoft from any against any claims or lawsuits, including attorneys' feeds, that arise or result from the use or distribution of your Application. \n\nIf you distribute the Redistributable Code separately for use with your Application (such as on your web site or as part of an update to your Application), you must include an end user license agreement in the install program for the Redistributable Code in the form of \\license\\DirectX End User EULA.txt.\n\nMicrosoft reserves all rights not expressly granted to you.\n\nContact Microsoft for the applicable royalties due and other licensing terms for all other uses and/or distribution of the REDISTRIBUTABLE COMPONENTS.\n\n2. COPYRIGHT.\n\nAll right, title and copyrights in and to the SOFTWARE PRODUCT (including but not limited to any images, photographs, animations, video, audio, music, text and \"applets,\" incorporated into the SOFTWARE PRODUCT), any accompanying printed materials, and any copies of the SOFTWARE PRODUCT, are owned by Microsoft or its suppliers. All title and intellectual property rights in and to the content which may by accessed through us of the SOFTWARE PRODUCT is the property of the respective content owner and may be protected by applicable copyright or other intellectual property laws and treaties . This EULA grants you no rights to use such content. All rights not expressly granted are reserved by Microsoft. \n\n3. DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS.\n\nLimitations on Reverse Engineering, Decompilation and Disassembly. You may not reverse engineer, decompile, or disassemble the SOFTWARE PRODUCT, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation.\n\nRental. You may not rent, lease or lend the SOFTWARE PRODUCT.\n\nSupport Services. Microsoft may provide you with support services related to the SOFTWARE PRODUCT (\"Support Services\"). Use of the Support Services is governed by the Microsoft policies and programs described in the user manual, in \"on line\" documentation and/or other Microsoft-provided materials. Any supplemental software code provided to you as part of the Support Services shall be considered part of the SOFTWARE PRODUCT and subject to the terms and conditions of this EULA. With respect to technical information you provide to Microsoft as part of the Support Services, Microsoft may use such information for its business purposes, including for product support and development. Microsoft will not utilize such technical information in a form that personally identifies you.\n\nSoftware Transfer. You may permanently transfer all of your rights under this EULA, provided you retain no copies, you transfer all of the SOFTWARE PRODUCT (including all component parts, the media and printed materials, any upgrades, this EULA and, if applicable, the Certificate of Authenticity), and the recipient agrees to the terms of this EULA. If the SOFTWARE PRODUCT is an upgrade, any transfer must include all prior versions of the SOFTWARE PRODUCT. \n\nTermination. Without prejudice to any other rights, Microsoft may terminate this EULA if you fail to comply with the terms and conditions of this EULA. In such event, you must cease all use or distribution and destroy all copies of the SOFTWARE PRODUCT and all of its component parts.\n\n4. U.S. GOVERNMENT RESTRICTED RIGHTS.\n\nAll SOFTWARE PRODUCT provided to the U.S. Government pursuant to solicitations issued on or after December 1, 1995 is provided with the commercial license rights and restrictions described elsewhere herein. All SOFTWARE PRODUCT provided to the U.S. Government pursuant to solicitations issued prior to December 1, 1995 is provided with \"Restricted Rights\" as provided for in FAR, 48 CFR 52.227-14 (JUNE 1987) or DFAR, 48 CFR 252.227-7013 (OCT 1988), as applicable.\n\n5. EXPORT RESTRICTIONS.\n\nExport of the SOFTWARE PRODUCT from the United States is regulated by the Export Administration Regulations (EAR, 15 CFR 730-744) of the U.S. Commerce Department, Bureau of Export Administration (BXA). You agree to comply with the EAR in the export or re-export of the SOFTWARE PRODUCT: (i) to any country to which the U.S. has embargoed or restricted the export of goods or services, which include, but are not necessarily limited to Cuba, Iran, Iraq, Libya, North Korea, Sudan, Syria, and the Federal Republic of Yugoslavia (including Serbia, but not Montenegro), or to any national of any such country, wherever located, who intends to transmit or transport the SOFTWARE PRODUCT back to such country; (ii) to any person or entity who you know or have reason to know will utilize the SOFTWARE PRODUCT or portion thereof in the design, development or production of nuclear, chemical or biological weapons; or (iii) to any person or entity who has been prohibited from participating in the U.S. export transactions by any federal agency of the U.S. government. You warrant and represent that neither the BXA nor any other U.S. federal agency has suspended, revoked or denied your export privileges.\n\nNO WARRANTIES. \nDISCLAIMER OF WARRANTIES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, MICROSOFT AND ITS SUPPLIERS PROVIDE TO YOU THE SOFTWARE PRODUCT, AND ANY (IF ANY) SUPPORT SERVICES RELATED TO THE SOFTWARE PRODUCT (\"SUPPORT SERVICES\") AS IS AND WITH ALL FAULTS; AND MICROSOFT AND ITS SUPPLIERS HEREBY DISCLAIM WITH RESPECT TO THE SOFTWARE PRODUCT AND SUPPORT SERVICES ALL WARRANTIES AND CONDITIONS, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) WARRANTIES OR CONDITIONS OF OR RELATED TO: TITLE, NON-INFRINGMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,LACK OF VIRUSES, ACCURACY OR COMPLETENESS OF RESPONSES, RESULTS, LACK OF NEGLIGENCE OR LACK OF WORKMANLIKE EFFORT, QUIET ENJOYMENT, QUIET POSSESSION, AND CORRESPONDENCE TO DESCRIPTION. THE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE PRODUCT AND ANY SUPPORT SERVICES REMAINS WITH YOU.\n\nEXCULSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER DAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL MICROSOFT OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION,PERSONAL INJURY, LOSS OF PRIVACY, FAILURE TO MEET ANY DUTY (INCLUDING OF GOOD FAITH OR OF REASONABLE CARE), NEGLIGENCE, AND ANY OTHER PECUNIARY OR OTHER LOSS WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF OR INABILITY TO USE THE SOFTWARE PRODUCT OR THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES, EVEN IN THE EVENT OF THE FAULT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, BREACH OF CONTRACT OR BREACH OF WARRANTY OF MICROSOFT OR ANY SUPPLIER, AND EVEN IF MICROSOFT OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nLIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING ANY DAMAGES THAT YOU MIGHT INCUR FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT LIMITATION, ALL DAMAGES REFERENCED ABOVE AND ALL DIRECT OR GENERAL DAMAGES), THE ENTIRE LIABILITY OF MICROSOFT AND ANY OF ITS SUPPLIERS UNDER ANY PROVISION OF THIS EULA AND YOUR EXCLUSIVE REMEDY FOR ALL OF THE FOREGOING SHALL BE LIMITED TO THE GREATER OF THE AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE PRODUCT OR U.S.$5.00. THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, EVEN IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE.\n\nIf you acquired this product in the United States, this Agreement is governed by the laws of the State of Washington.\n\nIf you acquired this product in Canada, this Agreement is governed by the laws of the Province of Ontario, Canada. Each of the parties hereto irrevocably attorns to the jurisdiction of the courts of the Province of Ontario and further agrees to commence any litigation which may arise hereunder in the courts located in the Judicial District of York, Province of Ontario.\n\nIf this product was acquired outside the United States, then local law may apply.\n\nShould you have any questions concerning this Agreement, or if you desire to contact Microsoft for any reason, please contact the Microsoft subsidiary serving your country, or write: Microsoft Customer Sales and Service/One Microsoft Way/Redmond, WA 98052-6399.", + "json": "ms-directx-sdk-eula.json", + "yaml": "ms-directx-sdk-eula.yml", + "html": "ms-directx-sdk-eula.html", + "license": "ms-directx-sdk-eula.LICENSE" + }, + { + "license_key": "ms-dxsdk-d3dx-9.29.952.3", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-dxsdk-d3dx-9.29.952.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT DXSDK.D3DX\n________________________________________\n\nIF YOU LIVE IN (OR ARE A BUSINESS WITH A PRINCIPAL PLACE OF BUSINESS IN) THE UNITED STATES, PLEASE READ THE \"BINDING ARBITRATION AND CLASS ACTION WAIVER\" SECTION BELOW. IT AFFECTS HOW DISPUTES ARE RESOLVED.\n________________________________________\nThese license terms are an agreement between you and Microsoft Corporation (or one of its affiliates). They apply to the software named above and any Microsoft services or software updates (except to the extent such services or updates are accompanied by new or additional terms, in which case those different terms apply prospectively and do not alter your or Microsoft's rights relating to pre-updated software or services). IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS.\n\n1. INSTALLATION AND USE RIGHTS.\n a) General. Subject to the terms of this agreement, you may install and use any number of copies of the software to develop and test your applications, and solely for use on Windows.\n b) Third Party Components. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the NOTICE file accompanying the software.\n\n2. DATA.\n a) Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the product documentation. There are also some features in the software that may enable you to collect data from users of your applications. If you use these features to enable data collection in your applications, you must comply with applicable law, including providing appropriate notices to users of your applications. You can learn more about data collection and use in the help documentation and the privacy statement at https://aka.ms/privacy. Your use of the software operates as your consent to these practices.\n b) Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr.\n\n3. DISTRIBUTABLE CODE. The software may contain code you are permitted to distribute (i.e. make available for third parties) in applications you develop, as described in this Section.\n a) Distribution Rights. The code and test files described below are distributable if included with the software.\n i. Distributables. You may copy and distribute the object code form of the software listed in the distributables file list in the software; and\n ii. Third Party Distribution. You may permit distributors of your applications to copy and distribute any of this distributable code you elect to distribute with your applications.\n\n b) Distribution Requirements. For any code you distribute, you must:\n i. add significant primary functionality to it in your applications;\n ii. require distributors and external end users to agree to terms that protect it and Microsoft at least as much as this agreement; and\n iii. indemnify, defend, and hold harmless Microsoft from any claims, including attorneys' fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified distributable code.\n\n c) Distribution Restrictions. You may not:\n i. use Microsoft's trademarks or trade dress in your application in any way that suggests your application comes from or is endorsed by Microsoft; or\n ii. modify or distribute the source code of any distributable code so that any part of it becomes subject to any license that requires that the distributable code, any other part of the software, or any of Microsoft's other intellectual property be disclosed or distributed in source code form, or that others have the right to modify it.\n\n4. SCOPE OF LICENSE. The software is licensed, not sold. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you will not (and have no right to):\n a) work around any technical limitations in the software that only allow you to use it in certain ways;\n b) reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software;\n c) remove, minimize, block, or modify any notices of Microsoft or its suppliers in the software;\n d) use the software in any way that is against the law or to create or propagate malware; or\n e) share, publish, distribute, or lease the software (except for any distributable code, subject to the terms above), provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party.\n\n5. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit https://aka.ms/exporting.\n\n6. SUPPORT SERVICES. Microsoft is not obligated under this agreement to provide any support services for the software. Any support provided is \"as is\", \"with all faults\", and without warranty of any kind.\n\n7. UPDATES. The software may periodically check for updates, and download and install them for you. You may obtain updates only from Microsoft or authorized sources. Microsoft may need to update your system to provide you with updates. You agree to receive these automatic updates without any additional notice. Updates may not include or support all existing software features, services, or peripheral devices.\n\n8. BINDING ARBITRATION AND CLASS ACTION WAIVER. This Section applies if you live in (or, if a business, your principal place of business is in) the United States. If you and Microsoft have a dispute, you and Microsoft agree to try for 60 days to resolve it informally. If you and Microsoft can't, you and Microsoft agree to binding individual arbitration before the American Arbitration Association under the Federal Arbitration Act (\"FAA\"), and not to sue in court in front of a judge or jury. Instead, a neutral arbitrator will decide. Class action lawsuits, class-wide arbitrations, private attorney-general actions, and any other proceeding where someone acts in a representative capacity are not allowed; nor is combining individual proceedings without the consent of all parties. The complete Arbitration Agreement contains more terms and is at https://aka.ms/arb-agreement-4. You and Microsoft agree to these terms.\n\n9. ENTIRE AGREEMENT. This agreement, and any other terms Microsoft may provide for supplements, updates, or third-party applications, is the entire agreement for the software.\n\n10. APPLICABLE LAW AND PLACE TO RESOLVE DISPUTES. If you acquired the software in the United States or Canada, the laws of the state or province where you live (or, if a business, where your principal place of business is located) govern the interpretation of this agreement, claims for its breach, and all other claims (including consumer protection, unfair competition, and tort claims), regardless of conflict of laws principles, except that the FAA governs everything related to arbitration. If you acquired the software in any other country, its laws apply, except that the FAA governs everything related to arbitration. If U.S. federal jurisdiction exists, you and Microsoft consent to exclusive jurisdiction and venue in the federal court in King County, Washington for all disputes heard in court (excluding arbitration). If not, you and Microsoft consent to exclusive jurisdiction and venue in the Superior Court of King County, Washington for all disputes heard in court (excluding arbitration).\n\n11. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:\n a) Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights.\n b) Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software.\n c) Germany and Austria.\n i. Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software.\n ii. Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law.\nSubject to the foregoing clause ii., Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called \"cardinal obligations\"). In other cases of slight negligence, Microsoft will not be liable for slight negligence.\n\n12. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES, OR CONDITIONS. TO THE EXTENT PERMITTED UNDER APPLICABLE LAWS, MICROSOFT EXCLUDES ALL IMPLIED WARRANTIES, INCLUDING MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.\n\n13. LIMITATION ON AND EXCLUSION OF DAMAGES. IF YOU HAVE ANY BASIS FOR RECOVERING DAMAGES DESPITE THE PRECEDING DISCLAIMER OF WARRANTY, YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT, OR INCIDENTAL DAMAGES.\nThis limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, warranty, guarantee, or condition; strict liability, negligence, or other tort; or any other claim; in each case to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state, province, or country may not allow the exclusion or limitation of incidental, consequential, or other damages.", + "json": "ms-dxsdk-d3dx-9.29.952.3.json", + "yaml": "ms-dxsdk-d3dx-9.29.952.3.yml", + "html": "ms-dxsdk-d3dx-9.29.952.3.html", + "license": "ms-dxsdk-d3dx-9.29.952.3.LICENSE" + }, + { + "license_key": "ms-entity-framework-4.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-entity-framework-4.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS\nENTITY FRAMEWORK 4.1 \n\nMicrosoft Corporation (or based on where you live, one of its affiliates) licenses this supplement to you. If you are licensed to use Microsoft Windows Operating System software (the \"software\"), you may use this supplement. You may not use it if you do not have a license for the software. You may use this supplement with each validly licensed copy of the software.\n\nThe following license terms describe additional use terms for this supplement. These terms and the license terms for the software apply to your use of the supplement. If there is a conflict, these supplemental license terms apply.\n\nBy using this supplement, you accept these terms. If you do not accept them, do not use this supplement.\nIf you comply with these license terms, you have the rights below.\n\n1.\tDISTRIBUTABLE CODE. The supplement is comprised of Distributable Code. \"Distributable Code\" is code that you are permitted to distribute in programs you develop if you comply with the terms below.\n\na.\tRight to Use and Distribute. \n\u2022\tYou may copy and distribute the object code form of the supplement.\n\u2022\tThird Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\n\nb.\tDistribution Requirements. For any Distributable Code you distribute, you must\n\u2022\tadd significant primary functionality to it in your programs;\n\u2022\tfor any Distributable Code having a filename extension of .lib, distribute only the results of running such Distributable Code through a linker with your program;\n\u2022\tdistribute Distributable Code included in a setup program only as part of that setup program without modification; \n\u2022\trequire distributors and external end users to agree to terms that protect it at least as much as this agreement;\n\u2022\tdisplay your valid copyright notice on your programs; and\n\u2022\tindemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\n\nc.\tDistribution Restrictions. You may not\n\u2022\talter any copyright, trademark or patent notice in the Distributable Code;\n\u2022\tuse Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\n\u2022\tdistribute Distributable Code to run on a platform other than the Windows platform;\n\u2022\tinclude Distributable Code in malicious, deceptive or unlawful programs; or\n\u2022\tmodify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\n\u2022\tthe code be disclosed or distributed in source code form; or\n\u2022\tothers have the right to modify it.\n\n2.\tSUPPORT SERVICES FOR SUPPLEMENT. Microsoft provides support services for this software as described at www.support.microsoft.com/common/international.aspx.\nPlease note: As this software is distributed in Quebec, Canada, these license terms are provided below in French.\nRemarque: Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, les termes de cette licence sont fournis ci-dessous en fran\u00e7ais.\n\nTERMES DU CONTRAT DE LICENCE D\u2019UN SUPPL\u00c9MENT MICROSOFT\nENTITY FRAMEWORK 4.1 \nMicrosoft Corporation (ou en fonction du lieu o\u00f9 vous vivez, l\u2019un de ses affili\u00e9s) vous accorde une licence pour ce suppl\u00e9ment. Si vous \u00eates titulaire d\u2019une licence d\u2019utilisation du logiciel Microsoft Windows Operating System (le \u00ab\u00a0logiciel\u00a0\u00bb), vous pouvez utiliser ce suppl\u00e9ment. Vous n\u2019\u00eates pas autoris\u00e9 \u00e0 utiliser ce suppl\u00e9ment si vous n\u2019\u00eates pas titulaire d\u2019une licence pour le logiciel. Vous pouvez utiliser une copie de ce suppl\u00e9ment avec chaque copie conc\u00e9d\u00e9e sous licence du logiciel.\n\nLes conditions de licence suivantes d\u00e9crivent les conditions d\u2019utilisation suppl\u00e9mentaires applicables pour ce suppl\u00e9ment. Les pr\u00e9sentes conditions et les conditions de licence pour le logiciel s'appliquent \u00e0 l'utilisation du suppl\u00e9ment. En cas de conflit, les pr\u00e9sentes conditions de licence suppl\u00e9mentaires s\u2019appliquent.\n\nEn utilisant ce suppl\u00e9ment, vous acceptez ces termes. Si vous ne les acceptez pas, n\u2019utilisez pas ce suppl\u00e9ment.\nDans le cadre du pr\u00e9sent accord de licence, vous disposez des droits ci-dessous.\n\n1.\tCODE DISTRIBUABLE. Le suppl\u00e9ment constitue du Code Distribuable. Le \u00ab\u00a0Code Distribuable\u00a0\u00bb est le code que vous \u00eates autoris\u00e9 \u00e0 distribuer dans les programmes que vous d\u00e9veloppez, sous r\u00e9serve de vous conformer aux termes ci-apr\u00e8s.\n\na.\tDroit d\u2019utilisation et de distribution. \n\u2022\t Vous \u00eates autoris\u00e9 \u00e0 copier et \u00e0 distribuer la version en code objet du suppl\u00e9ment.\n\u2022\tDistribution par des tierces parties. Vous pouvez autoriser les distributeurs de vos programmes \u00e0 copier et \u00e0 distribuer le code distribuable en tant que partie int\u00e9grante de ces programmes.\n\nb.\tConditions de distribution. Pour pouvoir distribuer du code distribuable, vous devez\u00a0:\n\u2022\ty ajouter des fonctionnalit\u00e9s importantes au sein de vos programmes,\n\u2022\tpour tout Code distribuable dont l\u2019extension de nom de fichier est .lib, distribuer seulement les r\u00e9sultats de l\u2019ex\u00e9cution de ce Code distribuable \u00e0 l\u2019aide d\u2019un \u00e9diteur de liens avec votre programme\u00a0;\n\u2022\tdistribuer le Code distribuable inclus dans un programme d\u2019installation seulement en tant que partie int\u00e9grante de ce programme sans modification\u00a0;\n\u2022\tlier les distributeurs et les utilisateurs externes par un contrat dont les termes les prot\u00e8gent autant que le pr\u00e9sent contrat,\n\u2022\tafficher votre propre mention de droits d\u2019auteur valable sur vos programmes et\n\u2022\tgarantir et d\u00e9fendre Microsoft contre toute r\u00e9clamation, y compris pour les honoraires d\u2019avocats, qui r\u00e9sulterait de la distribution ou l\u2019utilisation de vos programmes.\n\nc.\tRestrictions de distribution. Vous n\u2019\u00eates pas autoris\u00e9 \u00e0\u00a0:\n\u2022\tmodifier toute mention de droits d\u2019auteur, de marques ou de droits de propri\u00e9t\u00e9 industrielle pouvant figurer dans le code distribuable,\n\u2022\tutiliser les marques de Microsoft dans les noms de vos programmes ou d\u2019une fa\u00e7on qui sugg\u00e8re que vos programmes sont fournis par Microsoft ou sous la responsabilit\u00e9 de Microsoft,\n\u2022\tdistribuer le Code distribuable en vue de son ex\u00e9cution sur une plate-forme autre que la plate-forme\u00a0Windows,\n\u2022\tinclure le Code distribuable dans des programmes malveillants, trompeurs ou interdits par la loi, ou\n\u2022\tmodifier ou distribuer le code source de code distribuable de mani\u00e8re \u00e0 ce qu\u2019il fasse l\u2019objet, en partie ou dans son int\u00e9gralit\u00e9, d\u2019une Licence Exclue. Une Licence Exclue implique comme condition d\u2019utilisation, de modification ou de distribution, que\u00a0:\n\u2022\tle code soit d\u00e9voil\u00e9 ou distribu\u00e9 dans sa forme de code source, ou\n\u2022\td\u2019autres aient le droit de le modifier.\n\n2.\tSERVICES D\u2019ASSISTANCE TECHNIQUE POUR LE SUPPL\u00c9MENT. Microsoft fournit des services d\u2019assistance technique pour ce logiciel disponibles sur le site www.support.microsoft.com/common/international.aspx.", + "json": "ms-entity-framework-4.1.json", + "yaml": "ms-entity-framework-4.1.yml", + "html": "ms-entity-framework-4.1.html", + "license": "ms-entity-framework-4.1.LICENSE" + }, + { + "license_key": "ms-entity-framework-5", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-entity-framework-5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Entity Framework 5 License\nMICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS\n\nENTITY FRAMEWORK 5.0 FOR MICROSOFT WINDOWS OPERATING SYSTEM\n\nMicrosoft Corporation (or based on where you live, one of its affiliates) licenses this supplement to you. If you are licensed to use Microsoft Windows Operating System software (the \"software\"), you may use this supplement. You may not use it if you do not have a license for the software. You may use this supplement with each validly licensed copy of the software.\n\nThe following license terms describe additional use terms for this supplement. These terms and the license terms for the software apply to your use of the supplement. If there is a conflict, these supplemental license terms apply.\n\nBy using this supplement, you accept these terms. If you do not accept them, do not use this supplement.\n\nIf you comply with these license terms, you have the rights below.\n\n1. DISTRIBUTABLE CODE. The supplement is comprised of Distributable Code. \"Distributable Code\" is code that you are permitted to distribute in programs you develop if you comply with the terms below.\n\na. Right to Use and Distribute.\nYou may copy and distribute the object code form of the supplement.\nThird Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\n\nb. Distribution Requirements. For any Distributable Code you distribute, you must\nadd significant primary functionality to it in your programs;\nfor any Distributable Code having a filename extension of .lib, distribute only the results of running such Distributable Code through a linker with your program;\ndistribute Distributable Code included in a setup program only as part of that setup program without modification;\nrequire distributors and external end users to agree to terms that protect it at least as much as this agreement;\ndisplay your valid copyright notice on your programs; and\nindemnify, defend, and hold harmless Microsoft from any claims, including attorneys' fees, related to the distribution or use of your programs.\n\nc. Distribution Restrictions. You may not\nalter any copyright, trademark or patent notice in the Distributable Code;\nuse Microsoft's trademarks in your programs' names or in a way that suggests your programs come from or are endorsed by Microsoft;\ndistribute Distributable Code to run on a platform other than the Windows platform;\ninclude Distributable Code in malicious, deceptive or unlawful programs; or\nmodify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\nthe code be disclosed or distributed in source code form; or\nothers have the right to modify it.\n\n2. SUPPORT SERVICES FOR SUPPLEMENT. Microsoft provides support services for this software as described at www.support.microsoft.com/common/international.aspx.", + "json": "ms-entity-framework-5.json", + "yaml": "ms-entity-framework-5.yml", + "html": "ms-entity-framework-5.html", + "license": "ms-entity-framework-5.LICENSE" + }, + { + "license_key": "ms-eula-win-script-host", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-eula-win-script-host", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE IMPORTANT-READ CAREFULLY:\nThis Microsoft End-User License Agreement (\"EULA\") is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation for the Microsoft software product accompanying this EULA, which includes computer software and may include associated media, printed materials, and \"online\" or electronic documentation (\"SOFTWARE PRODUCT\"). By installing, copying, or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, do not install, copy, or use the SOFTWARE PRODUCT.\nThe SOFTWARE PRODUCT is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The SOFTWARE PRODUCT is licensed, not sold.\n\n1. GRANT OF LICENSE.\na. This EULA grants you the right to install and use one copy of the SOFTWARE PRODUCT on a single computer.\nb. Redistributable Components. Provided that you comply with Section 1.c., in addition to the rights granted in Section 1.a., Microsoft grants you a nonexclusive, royalty-free right to reproduce and distribute the object code version of the following files located in the SOFTWARE PRODUCT (the \"Redistributables\"): jscript.dll (contained only in Microsoft JScript), vbscript.dll, scrobj.dll, scrrun.dll, dispex.dll, cscript.exe, wscript.exe, wshom.ocx, wshext.dll, wshcon.dll and the installation executable (scripten.exe, scr56en.exe or ste56en.exe).\nc. Redistribution Requirements. If you redistribute the Redistributables, you agree to: (i) distribute the Redistributables in object code form only and solely in conjunction with your software product that adds significant and primary functionality to the Redistributables (\"Licensee Product\"); (ii) include Visual Basic, Scripting Edition components (vbscript.dll) in any and all Licensee Products that contain Microsoft JScript (jscript.dll); (iii) include a valid copyright notice on your software product; (iv) not use Microsoft's name, logo, or trademarks to market your software product; (v) indemnify, hold harmless, and defend Microsoft from and against any claims or lawsuits, including attorney's fees, that arise or result from the use or distribution of your software product; and (vi) not permit further distribution of the Redistributables by your end user.\nd. Documentation. Microsoft grants you a nonexclusive royalty-free right to reproduce and distribute all or portions of the documentation (i.e., \"Using Jscript in HTML\" tutorial, \"Using VBScript in HTML\" tutorial, or \"Language and Run-time Reference\") provided with the SOFTWARE PRODUCT (\"Documentation\") solely in conjunction with Licensee Product, provided that: (i) you do not modify the Documentation; and (ii) you retain all proprietary notices of Microsoft Corporation included in the Documentation.\n\n2. DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS.\na. Limitations on Reverse Engineering, Decompilation, and Disassembly. You may not reverse engineer, decompile, or disassemble the SOFTWARE PRODUCT, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation.\nb. Software Transfer. You may permanently transfer all of your rights under this EULA, provided you retain no copies, you transfer all of the SOFTWARE PRODUCT (including all component parts, the media and printed materials, any upgrades, this EULA, and, if applicable, the Certificate of Authenticity), and the recipient agrees to the terms of this EULA. If the SOFTWARE PRODUCT is an upgrade, any transfer must include all prior versions of the SOFTWARE PRODUCT.\nc. Termination. Without prejudice to any other rights, Microsoft may terminate this EULA if you fail to comply with the terms and conditions of this EULA. In such event, you must destroy all copies of the SOFTWARE PRODUCT and all of its component parts.\n\n3. UPGRADES. If the SOFTWARE PRODUCT is labeled as an upgrade , you must be properly licensed to use a product identified by Microsoft as being eligible for the upgrade in order to use the SOFTWARE PRODUCT. A SOFTWARE PRODUCT labeled as an upgrade replaces and/or supplements the product that formed the basis for your eligibility for the upgrade. You may use the resulting upgraded product only in accordance with the terms of this EULA. If the SOFTWARE PRODUCT is an upgrade of a component of a package of software programs that you licensed as a single product, the SOFTWARE PRODUCT may be used and transferred only as part of that single product package and may not be separated for use on more than one computer.\n\n4. COPYRIGHT. All title and copyrights in and to the SOFTWARE PRODUCT (including but not limited to any images, photographs, animations, video, audio, music, text, and \"applets\" incorporated into the SOFTWARE PRODUCT), the accompanying printed materials, and any copies of the SOFTWARE PRODUCT are owned by Microsoft or its suppliers. The SOFTWARE PRODUCT is protected by copyright laws and international treaty provisions. Therefore, you must treat the SOFTWARE PRODUCT like any other copyrighted material except that you may install the SOFTWARE PRODUCT on a single computer provided you keep the original solely for backup or archival purposes. You may not copy the printed materials accompanying the SOFTWARE PRODUCT.\n\n5. U.S. GOVERNMENT RESTRICTED RIGHTS. The SOFTWARE PRODUCT and documentation are provided with RESTRICTED RIGHTS. Use, duplication, or disclosure by the Government is subject to restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs (c)(1) and (2) of the Commercial Computer Software-Restricted Rights at 48 CFR 52.227-19, as applicable. Manufacturer is Microsoft Corporation/One Microsoft Way/Redmond, WA 98052-6399.\n\n6. EXPORT RESTRICTIONS. You agree that neither you nor your customers intend to or will, directly or indirectly, export or transmit (i) the SOFTWARE or related documentation and technical data or (ii) your software product as described in Section 1(b) of this License (or any part thereof), or process, or service that is the direct product of the SOFTWARE, to any country to which such export or transmission is restricted by any applicable U.S. regulation or statute, without the prior written consent, if required, of the Bureau of Export Administration of the U.S. Department of Commerce, or such other governmental entity as may have jurisdiction over such export or transmission.\n\nMISCELLANEOUS\nIf you acquired this product in the United States, this EULA is governed by the laws of the State of Washington.\nIf you acquired this product in Canada, this EULA is governed by the laws of the Province of Ontario, Canada. Each of the parties hereto irrevocably attorns to the jurisdiction of the courts of the Province of Ontario and further agrees to commence any litigation which may arise hereunder in the courts located in the Judicial District of York, Province of Ontario. If this product was acquired outside the United States, then local law may apply. Should you have any questions concerning this EULA, or if you desire to contact Microsoft for any reason, please contact the Microsoft subsidiary serving your country, or write: Microsoft Sales Information Center/One Microsoft Way/Redmond, WA 98052-6399.\n\nLIMITED WARRANTY\nNO WARRANTIES. Microsoft expressly disclaims any warranty for the SOFTWARE PRODUCT. The SOFTWARE PRODUCT and any related documentation is provided \"as is\" without warranty of any kind, either express or implied, including, without limitation, the implied warranties or merchantability, fitness for a particular purpose, or noninfringement. The entire risk arising out of use or performance of the SOFTWARE PRODUCT remains with you.\nNO LIABILITY FOR CONSEQUENTIAL DAMAGES. In no event shall Microsoft or its suppliers be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or any other pecuniary loss) arising out of the use of or inability to use this Microsoft product, even if Microsoft has been advised of the possibility of such damages. Because some states/jurisdictions do not allow the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply to you.", + "json": "ms-eula-win-script-host.json", + "yaml": "ms-eula-win-script-host.yml", + "html": "ms-eula-win-script-host.html", + "license": "ms-eula-win-script-host.LICENSE" + }, + { + "license_key": "ms-exchange-server-2010-sp2-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-exchange-srv-2010-sp2-sdk", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-exchange-server-2010-sp2-sdk" + ], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT EXCHANGE SERVER 2010 SP2 WEB SERVICES SOFTWARE DEVELOPMENT KIT\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and You. Please read them. They apply to the software named above, which includes the media on which You received it, if any. The terms also apply to any Microsoft\nupdates,\nsupplements,\nInternet-based services, and\nsupport services\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBY INSTALLING, ACCESSING OR OTHERWISE USING THE SOFTWARE, YOU ACCEPT THE TERMS OF THIS LICENSE AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE AGREEMENT, DO NOT INSTALL, ACCESS OR USE THE SOFTWARE.\nYOU MAY USE THE SOFTWARE SOLELY IN PROGRAMS DEVELOPED BY YOU THAT INTEROPERATE WITH MICROSOFT EXCHANGE SERVER (REFERRED TO AS \"AUTHORIZED PROGRAMS\").\nIf You comply with these license terms, You have the rights below.\n\nINSTALLATION AND USE. You may install and use any number of copies of the software on Your devices solely to design, develop and test Authorized Programs.\n\nADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\nDistributable Code. The software contains code that You are permitted to include in Authorized Programs if You comply with the terms below.\n\nRight to Use and Distribute. The code and text files listed below are \"Distributable Code.\"\n\nSample Code. You may modify, copy and distribute the source code form of code marked as \"sample\" in the Software.\n\nRedistribution. You may permit the distributors of Authorized Programs to copy and distribute the Distributable Code as part of those programs.\n\nDistribution Requirements. For any Distributable Code You distribute, You must\nadd significant primary functionality to it in Authorized Programs;\nrequire distributors and external end users to agree to terms that protect it at least as much as this agreement;\ndisplay Your valid copyright notice on Authorized Programs; and\nindemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of Authorized Programs.\n\nDistribution Restrictions. You may not\nalter any copyright, trademark or patent notice in the Distributable Code;\nuse Microsoft\u2019s trademarks in Your programs\u2019 names or in a way that suggests Your programs come from or are endorsed by Microsoft;\ninclude Distributable Code in malicious, deceptive or unlawful programs; or\nmodify, distribute or convey any Distributable Code so that the Distributable Code or any application to which it links, or of which it is a part, becomes subject to an Excluded License. An Excluded License is any other license that requires, as a condition of use, modification, distribution or conveyance that,\nthe code be disclosed or distributed in source code form; or\nothers have the right to modify or create derivative works of it.\n\nINTERNET BASED SERVICES. Microsoft may provide Internet-based services with the software. It may change or cancel them at any time.\n\nSCOPE OF LICENSE. You may only use the software in Authorized Programs. The software is licensed, not sold. This agreement only gives You some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives You more rights despite this limitation, You may use the software only as expressly permitted in this agreement. You may not:\nwork around any explicit instructions in the software that limit or restrict their use;\nreverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\nuse the software in any way that intentionally harms services provided by Microsoft or impairs anyone else's use of such services;\nuse the software to try to gain unauthorized access to any service, data, account or network by any means;\nmake more copies of the software than reasonably necessary for You to exercise Your rights under this agreement;\npublish the software for others to copy;\nrent, lease or lend the software or\npublish the software as a hosted service without adding significant primary functionality to them in Authorized Programs.\n\nTRANSFER TO A THIRD PARTY. The first user of the software may transfer them and this agreement directly to a third party. Before the transfer, that party must agree that this agreement applies to the transfer and use of the software. The first user must uninstall the software before transferring them separately from the device. The first user may not retain any copies.\n\nEXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\nSUPPORT. Microsoft is not obligated to provide any technical or other support under this agreement (\"Support Services\") for the software to You. However, if Microsoft chooses to provide any Support Services to You, Your use of such Support Services will be governed by then-current Microsoft policies (i.e. terms separate from this agreement). With respect to any technical or other information You provide to Microsoft in connection with the Support Services, You agree that Microsoft has an unrestricted right to use such information for its business purposes, including for product support and development. Microsoft will not use such information in a form that personally identifies You.\n\nRESERVATION OF RIGHTS. Except for the licenses expressly granted under this license, Microsoft and its suppliers retain all right, title and interest in and to the software, and all intellectual property rights therein. You are not authorized to alter, modify, copy, edit, format, create derivative works of or otherwise use any materials, content or technology provided under this license except as explicitly provided in this license or approved in advance in writing by Microsoft.\n\nENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and Support Services that You use, are the entire agreement with respect to the software.\n\nAPPLICABLE LAW.\nUnited States. If You acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where You live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\nOutside the United States. If You acquired the software in any other country, the laws of that country apply.\n\nLEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of Your country. You may also have rights with respect to the party from whom You acquired the software. This agreement does not change Your rights under the laws of Your country if the laws of Your country do not permit it to do so.\n\nDISCLAIMER OF WARRANTY. The software are licensed \"as-is.\" You bear the risk of using them. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights under Your local laws which this agreement cannot change. To the extent permitted under Your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n\nLIMITATION ON AND EXCLUSION OF REMEDIES AND DAMANGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\nThis limitation applies to:\nanything related to the software, content (including code) on third party Internet sites, or third party programs; and\nclaims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to You because Your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\u00e7ais.\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel \u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft n\u2019accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\u00e9 marchande, d\u2019ad\u00e9quation \u00e0 un usage particulier et d\u2019absence de contrefa\u00e7on sont exclues.\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\nCette limitation concerne :\ntout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers; et\nles r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d\u2019une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\nElle s\u2019applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre l\u2019\u00e9ventualit\u00e9 d\u2019un tel dommage. Si votre pays n\u2019autorise pas l\u2019exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\u2019exclusion ci-dessus ne s\u2019appliquera pas \u00e0 votre \u00e9gard.\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d\u2019autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si celles-ci ne le permettent pas.", + "json": "ms-exchange-server-2010-sp2-sdk.json", + "yaml": "ms-exchange-server-2010-sp2-sdk.yml", + "html": "ms-exchange-server-2010-sp2-sdk.html", + "license": "ms-exchange-server-2010-sp2-sdk.LICENSE" + }, + { + "license_key": "ms-iis-container-images-eula-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-iis-container-eula-2020", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-iis-container-images-eula-2020" + ], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS\nCONTAINER OS IMAGE\n\nMicrosoft Corporation (or based on where you live, one of its affiliates)\n(referenced as \"us,\" \"we,\" or \"Microsoft\") licenses this Container OS Image\nsupplement to you (\"Supplement\"). You are licensed to use this Supplement in\nconjunction with the underlying host operating system software (\"Host Software\")\nsolely to assist running the containers feature in the Host Software. The Host\nSoftware license terms apply to your use of the Supplement. You may not use it\nif you do not have a license for the Host Software. You may use this Supplement\nwith each validly licensed copy of the Host Software.\n\nADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS\n\nYour use of the Supplement as specified in the preceding paragraph may result in\nthe creation or modification of a container image (\"Container Image\") that\nincludes certain Supplement components. For clarity, a Container Image is\nseparate and distinct from a virtual machine or virtual appliance image.\nPursuant to these license terms, we grant you a restricted right to redistribute\nsuch Supplement components under the following conditions:\n\n \t(i) you may use the Supplement components only as used in, and as a part of\n \tyour Container Image,\n\n\t(ii) you may use such Supplement components in your Container Image as long\n\tas you have significant primary functionality in your Container Image that\n\tis materially separate and distinct from the Supplement; and\n\n\t(iii) you agree to include these license terms (or similar terms required by\n\tus or a hoster) with your Container Image to properly license the possible\n\tuse of the Supplement components by your end-users.\n\nWe reserve all other rights not expressly granted herein.\n\nBy using this Supplement, you accept these terms. If you do not accept them, do\nnot use this Supplement.", + "json": "ms-iis-container-images-eula-2020.json", + "yaml": "ms-iis-container-images-eula-2020.yml", + "html": "ms-iis-container-images-eula-2020.html", + "license": "ms-iis-container-images-eula-2020.LICENSE" + }, + { + "license_key": "ms-ilmerge", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-ilmerge", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "ILMerge license\nMICROSOFT ILMerge\n\nEND-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE\n\nIMPORTANT\u2014READ CAREFULLY: This End-User License Agreement (\"EULA\") is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation (\"Microsoft\") for the Microsoft software that accompanies this EULA, which includes computer software and may include associated media, printed materials, \"online\" or electronic documentation, and Internet-based services (\"Software\"). An amendment or addendum to this EULA may accompany the Software. YOU AGREE TO BE BOUND BY THE TERMS OF THIS EULA BY INSTALLING, COPYING, OR OTHERWISE USING THE SOFTWARE. IF YOU DO NOT AGREE, DO NOT INSTALL, COPY, OR USE THE SOFTWARE.\n\n1. GRANTS OF LICENSE. Microsoft grants you the rights described in this EULA provided that you comply with all terms and conditions of this EULA.\n\n1.1 License Grant. Microsoft grants to you a personal, nonexclusive, nontransferable, limited license to install and use a reasonable number of copies of the Software on computers residing on your premises for the purposes of designing, developing, and testing, your software product(s), provided that you are the only individual using the Software.\n\n1.2 Documentation. You may make and use a reasonable number of copies of any documentation, provided that such copies shall be used only for your personal purposes and are not to be republished or distributed (either in hard copy or electronic form) beyond your premises.\n\n2. RESERVATION OF RIGHTS AND OWNERSHIP. The Software is licensed as a single product. Its component parts may not be separated. Microsoft reserves all rights not expressly granted to you in this EULA. The Software is protected by copyright and other intellectual property laws and treaties, and Microsoft (or its suppliers, where applicable) own all right, title, and interest in all intellectual property rights in the Software. The Software is licensed, not sold.\n\n3. LIMITATIONS ON REVERSE ENGINEERING, DECOMPILATION, AND DISASSEMBLY. You may not reverse engineer, decompile, or disassemble the Software, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation.\n\n4. NO RENTAL/COMMERCIAL HOSTING. You may not rent, lease, lend or provide commercial hosting services with the Software.\n\n5. NO SOFTWARE TRANSFER. You may not assign or otherwise transfer the SOFTWARE or any of your rights hereunder to any third party.\n\n6. CONSENT TO USE OF DATA. You agree that Microsoft and its affiliates may collect and use technical information gathered as part of the product support services provided to you, if any, related to the Software. Microsoft may use this information solely to improve our products or to provide customized services or technologies to you and will not disclose this information in a form that personally identifies you.\n\n7. ADDITIONAL SOFTWARE/SERVICES. Microsoft is not obligated to provide maintenance, technical supplements, updates, or other support to you for the Software licensed under this EULA. In the event that Microsoft does provide such supplements or updates, this EULA applies to such updates, supplements, or add-on components of the Software that Microsoft may provide to you or make available to you after the date you obtain your initial copy of the Software, unless we provide other terms along with the update, supplement, or add-on component. Microsoft reserves the right to discontinue any Internet-based services provided to you or made available to you through the use of the Software.\n\n8. EXPORT RESTRICTIONS. You acknowledge that the Software is subject to U.S. export jurisdiction. You agree to comply with all applicable international and national laws that apply to the Software, including the U.S. Export Administration Regulations, as well as end-user, end-use, and destination restrictions issued by U.S. and other governments. For additional information see http://www.microsoft.com/exporting/.\n\n9. TERMINATION. Without prejudice to any other rights, Microsoft may terminate this EULA if you fail to comply with any term or condition of this EULA. In such event, you must destroy all copies of the Software and all of its component parts.\n\n10. DISCLAIMER OF WARRANTIES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, MICROSOFT AND ITS SUPPLIERS PROVIDE THE SOFTWARE AND SUPPORT SERVICES (IF ANY) AS IS AND WITH ALL FAULTS, AND HEREBY DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES, DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF RELIABILITY OR AVAILABILITY, OF ACCURACY OR COMPLETENESS OF RESPONSES, OF RESULTS, OF WORKMANLIKE EFFORT, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE, ALL WITH REGARD TO THE SOFTWARE, AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT OR OTHER SERVICES, INFORMATION, SOFTWARE, AND RELATED CONTENT THROUGH THE SOFTWARE OR OTHERWISE ARISING OUT OF THE USE OF THE SOFTWARE. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT WITH REGARD TO THE SOFTWARE.\n\n11. EXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER DAMAGES. To the maximum extent permitted by applicable law, in no event shall Microsoft or its suppliers be liable for any special, incidental, punitive, indirect, or consequential damages whatsoever (including, but not limited to, damages for loss of profits, LOSS OF DATA, or confidential or other information, for business interruption, for personal injury, for loss of privacy, for failure to meet any duty including of good faith or of reasonable care, for negligence, and for any other pecuniary or other loss whatsoever) arising out of or in any way related to the use of or inability to use the SOFTWARE, the provision of or failure to provide Support OR OTHER Services, informatIon, software, and related CONTENT through the software or otherwise arising out of the use of the software, or otherwise under or in connection with any provision of this EULA, even in the event of the fault, tort (including negligence), misrepresentation, strict liability, breach of contract or breach of warranty of Microsoft or any supplier, and even if Microsoft or any supplier has been advised of the possibility of such damages.\n\n12. LIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING ANY DAMAGES THAT YOU MIGHT INCUR FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT LIMITATION, ALL DAMAGES REFERENCED HEREIN AND ALL DIRECT OR GENERAL DAMAGES IN CONTRACT OR ANYTHING ELSE), THE ENTIRE LIABILITY OF MICROSOFT AND ANY OF ITS SUPPLIERS UNDER ANY PROVISION OF THIS EULA AND YOUR EXCLUSIVE REMEDY HEREUNDER SHALL BE LIMITED TO THE GREATER OF THE ACTUAL DAMAGES YOU INCUR IN REASONABLE RELIANCE ON THE SOFTWARE UP TO THE AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE OR US$5.00. THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, EVEN IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE.\n\n13. APPLICABLE LAW. This EULA shall be construed under and governed by the laws of the State of Washington, without regard to conflicts of law principles.\n\n14. ENTIRE AGREEMENT; SEVERABILITY. This EULA (including any addendum or amendment to this EULA which is included with the Software) are the entire agreement between you and Microsoft relating to the Software and the support services (if any) and they supersede all prior or contemporaneous oral or written communications, proposals and representations with respect to the Software or any other subject matter covered by this EULA. If any provision of this EULA is held to be void, invalid, unenforceable or illegal, the other provisions shall continue in full force and effect", + "json": "ms-ilmerge.json", + "yaml": "ms-ilmerge.yml", + "html": "ms-ilmerge.html", + "license": "ms-ilmerge.LICENSE" + }, + { + "license_key": "ms-invisible-eula-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-invisible-eula-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft Invisible Computing\n\nMICROSOFT SHARED SOURCE LICENSE Version 1.0 FOR MICROSOFT INVISIBLE COMPUTING\nThis License governs use of the accompanying Software.\nYou can use this Software for any non-commercial purpose, including distributing derivatives. Running your business operations would not be considered non-commercial.\n\nFor commercial purposes, you can reference this software solely to assist in developing and testing your own software and hardware for the Microsoft Invisible Computing platform. You may not distribute this software in source or object form for commercial purposes under any circumstances.\n\nIn return, we simply require that you agree:\n\nNot to remove any copyright notices from the Software.\nThat if you distribute the Software in source code form you do so only under this License (i.e. you must include a complete copy of this License with your distribution), and if you distribute the Software solely in object form you only do so under any license that complies with this License.\n\nThat the Software comes \"as is\", with no warranties. None whatsoever. This means no implied warranty of merchantability or fitness for a particular purpose or any warranty of non-infringement. Also, you must pass this disclaimer on whenever you distribute the Software.\n\nThat Microsoft will not be liable for any of those types of damages known as indirect, special, consequential, or incidental related to the Software or this License, to the maximum extent the law permits. Also, you must pass this limitation of liability on whenever you distribute the Software.\n\nThat if you sue anyone over patents that you think may apply to the Software for a person's use of the Software, your license to the Software ends automatically.\n\nThat the patent rights Microsoft is licensing only apply to the Software, not to any derivatives you make.\n\nThat your rights under the License end automatically if you breach it in any way.\n\n\u00a92004 Microsoft Corporation. All rights reserved.", + "json": "ms-invisible-eula-1.0.json", + "yaml": "ms-invisible-eula-1.0.yml", + "html": "ms-invisible-eula-1.0.html", + "license": "ms-invisible-eula-1.0.LICENSE" + }, + { + "license_key": "ms-jdbc-driver-40-sql-server", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-40-sql-server", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT JDBC DRIVER 4.0 FOR SQL SERVER \n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\u2022 updates,\n\u2022 supplements,\n\u2022 Internet-based services, and\n\u2022 support services\nfor this software, unless other terms accompany those items. If so, those terms apply.\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\nIf you comply with these license terms, you have the rights below.\n\n1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices to design, develop and test your programs.\n\n2. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\u2022 disclose the results of any benchmark tests of the software to any third party without Microsoft\u2019s prior written approval;\n\u2022 work around any technical limitations in the software;\n\u2022 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\u2022 make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n\u2022 publish the software for others to copy;\n\u2022 rent, lease or lend the software;\n\u2022 transfer the software or this agreement to any third party; or\n\u2022 use the software for commercial software hosting services.\n\n3. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n4. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n5. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n6. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n8. APPLICABLE LAW.\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n9. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n10. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n11. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\nThis limitation applies to\n\u2022 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\u2022 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.\n\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\u00e7ais.\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel \u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft n\u2019accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\u00e9 marchande, d\u2019ad\u00e9quation \u00e0 un usage particulier et d\u2019absence de contrefa\u00e7on sont exclues.\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\nCette limitation concerne :\n\u2022 tout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\n\u2022 les r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d\u2019une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\nElle s\u2019applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre l\u2019\u00e9ventualit\u00e9 d\u2019un tel dommage. Si votre pays n\u2019autorise pas l\u2019exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\u2019exclusion ci-dessus ne s\u2019appliquera pas \u00e0 votre \u00e9gard.\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d\u2019autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si celles-ci ne le permettent pas.", + "json": "ms-jdbc-driver-40-sql-server.json", + "yaml": "ms-jdbc-driver-40-sql-server.yml", + "html": "ms-jdbc-driver-40-sql-server.html", + "license": "ms-jdbc-driver-40-sql-server.LICENSE" + }, + { + "license_key": "ms-jdbc-driver-41-sql-server", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-41-sql-server", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT JDBC DRIVER 4.1 FOR SQL SERVER\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you \nlive, one of its affiliates) and you. Please read them. They apply to the software \nnamed above, which includes the media on which you received it, if any. The terms also apply to \nany Microsoft\n\n\u2022 updates,\n\u2022 supplements,\n\u2022 Internet-based services, and\n\u2022 support services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT \nACCEPT THEM, DO NOT USE THE SOFTWARE.\n\nIf you comply with these license terms, you have the rights below.\n\n1. INSTALLATION AND USE RIGHTS. \n\na. Installation and Use.\n\ni. You may install and use any number of copies of the software on your devices.\n\nb. Third Party Programs. The software may include third party programs that Microsoft, \nnot the third party, licenses to you under this agreement. Notices, if any, for the third \nparty program are included for your information only.\n\n2. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you \nsome rights to use the software. Microsoft reserves all other rights. Unless applicable law \ngives you more rights despite this limitation, you may use the software only as expressly \npermitted in this agreement. In doing so, you must comply with any technical limitations in \nthe software that only allow you to use it in certain ways. You may not\n\n\u2022 work around any technical limitations in the software;\n\u2022 reverse engineer, decompile or disassemble the software, except and only to the extent \nthat applicable law expressly permits, despite this limitation;\n\u2022 make more copies of the software than specified in this agreement or allowed by \napplicable law, despite this limitation;\n\u2022 publish the software for others to copy;\n\u2022 rent, lease or lend the software;\n\u2022 transfer the software or this agreement to any third party; or\n\u2022 use the software for commercial software hosting services.\n\n3. EXPORT RESTRICTIONS. The software is subject to United States export laws and \nregulations. You must comply with all domestic and international export laws and \nregulations that apply to the software. These laws include restrictions on destinations, end \nusers and end use. For additional information, see www.microsoft.com/exporting.\n\n4. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support \nservices for it.\n\n5. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-\nbased services and support services that you use, are the entire agreement for the software \nand support services.\n\n6. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States, Washington state law \ngoverns the interpretation of this agreement and applies to claims for breach of it, \nregardless of conflict of laws principles. The laws of the state where you live govern all \nother claims, including claims under state consumer protection laws, unfair competition \nlaws, and in tort.\n\nb. Outside the United States. If you acquired the software in any other country, the laws of \nthat country apply.\n\n7. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights \nunder the laws of your country. You may also have rights with respect to the party from \nwhom you acquired the software. This agreement does not change your rights under the laws \nof your country if the laws of your country do not permit it to do so.\n\n8. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU \nBEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS \nWARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE \nADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS \nAGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER \nYOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-\nINFRINGEMENT.\n\n9. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN \nRECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP \nTO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING \nCONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL \nDAMAGES.\n\nThis limitation applies to\n\n\u2022 anything related to the software, services, content (including code) on third party Internet \nsites, or third party programs, and\n\u2022 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, \nnegligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the \ndamages. The above limitation or exclusion may not apply to you because your country may \nnot allow the exclusion or limitation of incidental, consequential or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, some of the clauses in this \nagreement are provided below in French.\n\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses dans ce \ncontrat sont fournies ci-dessous en fran\u00e7ais.\n\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel \u00bb. \nToute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft n\u2019accorde aucune \nautre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits additionnels en vertu du droit local \nsur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont \npermises par le droit locale, les garanties implicites de qualit\u00e9 marchande, d\u2019ad\u00e9quation \u00e0 un \nusage particulier et d\u2019absence de contrefa\u00e7on sont exclues.\n\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE \nRESPONSABILIT\u00c9 POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de \nses fournisseurs une indemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 \n$ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y \ncompris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\n\nCette limitation concerne :\n\u2022 tout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le code) figurant \nsur des sites Internet tiers ou dans des programmes tiers ; et\n\u2022 les r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de \nresponsabilit\u00e9 stricte, de n\u00e9gligence ou d\u2019une autre faute dans la limite autoris\u00e9e par la loi \nen vigueur.\n\nElle s\u2019applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre l\u2019\u00e9ventualit\u00e9 \nd\u2019un tel dommage. Si votre pays n\u2019autorise pas l\u2019exclusion ou la limitation de responsabilit\u00e9 \npour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la \nlimitation ou l\u2019exclusion ci-dessus ne s\u2019appliquera pas \u00e0 votre \u00e9gard.\n\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir \nd\u2019autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits \nque vous conf\u00e8rent les lois de votre pays si celles-ci ne le permettent pas.", + "json": "ms-jdbc-driver-41-sql-server.json", + "yaml": "ms-jdbc-driver-41-sql-server.yml", + "html": "ms-jdbc-driver-41-sql-server.html", + "license": "ms-jdbc-driver-41-sql-server.LICENSE" + }, + { + "license_key": "ms-jdbc-driver-60-sql-server", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-60-sql-server", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT JDBC DRIVER 6.0 FOR SQL SERVER\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you \nlive, one of its affiliates) and you. Please read them. They apply to the software \nnamed above, which includes the media on which you received it, if any. The terms also apply to \nany Microsoft\n\n* updates,\n* supplements,\n* Internet-based services, and\n* support services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT \nACCEPT THEM, DO NOT USE THE SOFTWARE.\n\nIf you comply with these license terms, you have the rights below.\n\n1. INSTALLATION AND USE RIGHTS. \n\na. Installation and Use.\n\ni. You may install and use any number of copies of the software on your devices.\n\nb. Third Party Programs. The software may include third party programs that Microsoft, \nnot the third party, licenses to you under this agreement. Notices, if any, for the third \nparty program are included for your information only.\n\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\n\na. Distributable Code.\n\ni.\tRight to Use and Distribute. You are permitted to distribute the software in programs you \ndevelop if you comply with the terms below:\n\n* You may copy and distribute the object code form of the software (Distributable Code) in \nprograms you develop. You may not modify the software.\n* You may permit distributors of your programs to copy and distribute the Distributable Code \nas part of those programs.\nii.\tDistribution Requirements. For any Distributable Code you distribute, you must\n* add significant primary functionality to it in your programs;\n* require distributors and external end users to agree to terms that protect it at least as \nmuch as this agreement;\n* display your valid copyright notice on your programs; and\n* indemnify, defend, and hold harmless Microsoft from any claims, including attorneys fees, \nrelated to the distribution or use of your programs.\niii.\tDistribution Restrictions. You may not\n* alter any copyright, trademark or patent notice in the Distributable Code;\n* use Microsoft trademarks in your programs names or in a way that suggests your programs \ncome from or are endorsed by Microsoft;\n* include Distributable Code in malicious, deceptive or unlawful programs; or\n* modify or distribute the source code of any Distributable Code so that any part of it \nbecomes subject to an Excluded License. An Excluded License is one that requires, as a \ncondition of use, modification or distribution, that\n* the code be disclosed or distributed in source code form; or\n* others have the right to modify it.\n\n\n3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you \nsome rights to use the software. Microsoft reserves all other rights. Unless applicable law \ngives you more rights despite this limitation, you may use the software only as expressly \npermitted in this agreement. In doing so, you must comply with any technical limitations in \nthe software that only allow you to use it in certain ways. You may not\n\n* work around any technical limitations in the software;\n* reverse engineer, decompile or disassemble the software, except and only to the extent \nthat applicable law expressly permits, despite this limitation;\n* make more copies of the software than specified in this agreement or allowed by \napplicable law, despite this limitation;\n* publish the software for others to copy;\n* rent, lease or lend the software;\n* transfer the software or this agreement to any third party; or\n* use the software for commercial software hosting services.\n\n4. EXPORT RESTRICTIONS. The software is subject to United States export laws and \nregulations. You must comply with all domestic and international export laws and \nregulations that apply to the software. These laws include restrictions on destinations, end \nusers and end use. For additional information, see www.microsoft.com/exporting.\n\n5. SUPPORT SERVICES. Because this software is \"as is\" we may not provide support \nservices for it.\n\n6. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-\nbased services and support services that you use, are the entire agreement for the software \nand support services.\n\n7. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States, Washington state law \ngoverns the interpretation of this agreement and applies to claims for breach of it, \nregardless of conflict of laws principles. The laws of the state where you live govern all \nother claims, including claims under state consumer protection laws, unfair competition \nlaws, and in tort.\n\nb. Outside the United States. If you acquired the software in any other country, the laws of \nthat country apply.\n\n8. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights \nunder the laws of your country. You may also have rights with respect to the party from \nwhom you acquired the software. This agreement does not change your rights under the laws \nof your country if the laws of your country do not permit it to do so.\n\n9. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS\". YOU \nBEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS \nWARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE \nADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS \nAGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER \nYOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-\nINFRINGEMENT.\n\n10. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN \nRECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP \nTO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING \nCONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL \nDAMAGES.\n\nThis limitation applies to\n\n* anything related to the software, services, content (including code) on third party Internet \nsites, or third party programs, and\n* claims for breach of contract, breach of warranty, guarantee or condition, strict liability, \nnegligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the \ndamages. The above limitation or exclusion may not apply to you because your country may \nnot allow the exclusion or limitation of incidental, consequential or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, some of the clauses in this \nagreement are provided below in French.\n\nRemarque : Ce logiciel \u00c8tant distribu\u00c8 au Qu\u00c8bec, Canada, certaines des clauses dans ce \ncontrat sont fournies ci-dessous en fran\u00c1ais.\n\nEXON\u2026RATION DE GARANTIE. Le logiciel vis\u00c8 par une licence est offert \u00b4 tel quel \u00aa. \nToute utilisation de ce logiciel est \u2021 votre seule risque et p\u00c8ril. Microsoft n\u00edaccorde aucune \nautre garantie expresse. Vous pouvez b\u00c8n\u00c8ficier de droits additionnels en vertu du droit local \nsur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont \npermises par le droit locale, les garanties implicites de qualit\u00c8 marchande, d\u00edad\u00c8quation \u2021 un \nusage particulier et d\u00edabsence de contrefa\u00c1on sont exclues.\n\nLIMITATION DES DOMMAGES-INT\u2026R\u00a0TS ET EXCLUSION DE \nRESPONSABILIT\u2026 POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de \nses fournisseurs une indemnisation en cas de dommages directs uniquement \u2021 hauteur de 5,00 \n$ US. Vous ne pouvez pr\u00c8tendre \u2021 aucune indemnisation pour les autres dommages, y \ncompris les dommages sp\u00c8ciaux, indirects ou accessoires et pertes de b\u00c8n\u00c8fices.\n\nCette limitation concerne :\n* tout ce qui est reli\u00c8 au logiciel, aux services ou au contenu (y compris le code) figurant \nsur des sites Internet tiers ou dans des programmes tiers ; et\n* les r\u00c8clamations au titre de violation de contrat ou de garantie, ou au titre de \nresponsabilit\u00c8 stricte, de n\u00c8gligence ou d\u00edune autre faute dans la limite autoris\u00c8e par la loi \nen vigueur.\n\nElle s\u00edapplique \u00c8galement, m\u00cdme si Microsoft connaissait ou devrait conna\u00d3tre l\u00ed\u00c8ventualit\u00c8 \nd\u00edun tel dommage. Si votre pays n\u00edautorise pas l\u00edexclusion ou la limitation de responsabilit\u00c8 \npour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la \nlimitation ou l\u00edexclusion ci-dessus ne s\u00edappliquera pas \u2021 votre \u00c8gard.\n\nEFFET JURIDIQUE. Le pr\u00c8sent contrat d\u00c8crit certains droits juridiques. Vous pourriez avoir \nd\u00edautres droits pr\u00c8vus par les lois de votre pays. Le pr\u00c8sent contrat ne modifie pas les droits \nque vous conf\u00cbrent les lois de votre pays si celles-ci ne le permettent pas.", + "json": "ms-jdbc-driver-60-sql-server.json", + "yaml": "ms-jdbc-driver-60-sql-server.yml", + "html": "ms-jdbc-driver-60-sql-server.html", + "license": "ms-jdbc-driver-60-sql-server.LICENSE" + }, + { + "license_key": "ms-kinext-win-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-kinext-win-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft Kinect for Windows\nSoftware Development Kit (SDK)\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. It also applies to any Microsoft\n\n updates,\n supplements,\n documentation, and\n support services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nThe software is licensed, not sold. By downloading, installing, accessing, or using the software, you accept all terms in this agreement. If you do not accept them, do not download, install, access, or use the software. \"You\" or \"you\" means the individual who downloads, installs, accesses, or uses the software (and, if you represent a legal entity, it also means that entity, and you represent and warrant that you are authorized to enter into this agreement for that entity).\nIf you comply with these license terms, you have the rights below.\n\n INSTALLATION AND USE RIGHTS.\n\n Installation and Use. You may (i) install and use any number of copies of the software (only when installed using the accompanying software installer package) on your computer to design, develop, and test your programs that run specifically on a Microsoft Windows operating system, and that are intended for use solely in connection with Microsoft Kinect for Windows sensor, and its associated drivers and runtime software, and no other sensor (\"Kinect for Windows Applications\"), and (ii) distribute your Kinect for Windows Applications, subject to the terms in this agreement.\n\n Restricted Use with the Kinect for Xbox 360 Sensor. The Kinect for Xbox 360 sensor is sold subject to the terms of a Limited Warranty and Software License Agreement that permits use of the device solely in connection with an Xbox 360 or Xbox 360 S console. Notwithstanding this restriction in the Kinect for Xbox 360 sensor Limited Warranty and Software License Agreement, you may use an unmodified Kinect for Xbox 360 sensor to assist in the design, development, and testing of your Kinect for Windows Applications, subject to the terms and conditions of this agreement. All of the other terms of the Kinect for Xbox 360 Limited Warranty and Software License Agreement remain unchanged. You agree that end users of Kinect for Windows Applications are not licensed to use Kinect for Xbox 360 sensors in connection with such Kinect for Windows Applications, and that you and your distributors will not directly or indirectly assist, encourage, or enable Kinect for Windows Application end users to do so.\n\n Included Microsoft Programs. The software includes other Microsoft programs. The license terms with those programs apply to your use of them.\n\n No High Risk Use. WARNING: The Kinect for Xbox 360 sensor and the Kinect for Windows sensor (the \"Kinect Sensors\"), and the software are not fault-tolerant. The Kinect Sensors and the software are not designed or intended for use with any program where failure or fault of any kind of the Kinect Sensors or software could lead to death or serious bodily injury of any person, or to severe physical or environmental damage (\"High Risk Use\"). You are not licensed to, and you agree not to, use, distribute, or sublicense the use of the Kinect Sensors and/or software in, or in conjunction with, High Risk Use. High Risk Use is STRICTLY PROHIBITED. High Risk Use includes, for example, the following: aircraft navigation and control of other modes of human mass transportation, nuclear or chemical facilities.\n\n ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS\n\n Distributable Code. The software contains code that you are permitted to distribute solely in Kinect for Windows Applications if you comply with the terms below.\n\n Right to Use and Distribute. The code and text files listed below are \"Distributable Code.\"\n REDIST.TXT Files. You may copy and distribute the object code form of code listed in REDIST.TXT files.\n Sample Code. You may modify, copy, and distribute the source and object code form of code in the Samples subdirectory.\n Third Party Distribution. You may permit distributors of your Kinect for Windows Applications to copy and distribute the Distributable Code as part of those Kinect for Windows Applications.\n\n Distribution Requirements. For any Distributable Code you distribute, you must:\n add significant primary functionality to it in your Kinect for Windows Applications;\n distribute Distributable Code included in a setup program only as part of that setup program without modification;\n clearly state in marketing materials, documentation, and other materials related to the Kinect for Windows Application (e.g. on the webpages on which the Kinect for Windows Application is described or from which the Kinect for Windows Application may be downloaded or otherwise obtained), that it is intended for use only with the Kinect for Windows sensor;\n require distributors and external end users to agree to terms that protect it at least as much as this agreement; and\n display your valid copyright notice on your Kinect for Windows Applications.\n\n Distribution Restrictions. You may not:\n alter any copyright, trademark, or patent notice in the Distributable Code;\n use Microsoft's trademarks, including, but not limited to Microsoft, Kinect, and Windows, in your Kinect for Windows Applications' names or in a way that suggests your Kinect for Windows Applications come from or are endorsed by Microsoft;\n distribute Distributable Code to run on a platform other than a Microsoft Windows operating system;\n include Distributable Code in malicious, obscene, deceptive, or unlawful programs;\n include Distributable Code for any programs designed or intended for High Risk Use;\n or\n modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification, or distribution, that\n the code be disclosed or distributed in source code form; or\n others have the right to modify it.\n\n SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not:\n access or use, or attempt to access or use, features of the Kinect Sensors that are not exposed or enabled by the software;\n distribute Kinect for Windows Applications for use with any sensor other than Kinect for Windows sensor, its associated drivers, and runtime software;\n use the software or any Kinect for Windows Applications in any High Risk Use;\n work around any technical limitations in the software;\n reverse engineer, decompile, or disassemble any part of the software not provided in source code form, except and only to the extent that applicable law expressly permits, despite this limitation;\n publish the software for others to copy;\n rent, lease, or lend the software;\n transfer the software or this agreement to any third party; or\n use the software for commercial software hosting services.\n\n REGULATORY COMPLIANCE. You agree that your development, marketing, sales, and distribution of Kinect for Windows Applications shall be in compliance with all applicable legal requirements, including compliance with the medical device regulatory requirements of the U.S. Federal Food, Drug, and Cosmetic Act and any associated requirements, or similar laws, regulations, or policies in other countries or territories. To the extent required by law, you are solely responsible for obtaining or filing any approval, clearance, registration, permit, or other regulatory authorization and shall comply with the requirements of such authorization.\n\n ACKNOWLEDGEMENT AND WAIVER. You acknowledge the software may allow you to control the Kinect Sensors, which are mechanical hardware devices that include motors to move the device, a fan to cool it, and other mechanical components. Depending on how you elect to use the software, you could harm persons or damage or destroy the Kinect Sensors, products incorporating the Kinect Sensors, or other property. In using the software, you must take steps to design and test your Kinect for Windows Applications to ensure that your applications do not present unreasonable risks of personal injury or death, property damage, or other losses. Kinect Sensors utilize complex hardware and software technology that may not always function as intended. You must design your application so that any failure of a Kinect Sensor and/or the software does not cause personal injury or death, property damage, or other losses. If you choose to use the software, you assume all risk that your use of the Kinect Sensors and/or the software causes any harm or loss, including to the end users of your Kinect for Windows Applications, and you agree to waive all claims against Microsoft and its affiliates related to such use (including, but not limited to, any claim that a Kinect Sensor or the software is defective) and to hold Microsoft and its affiliates harmless from such claims.\n\n INDEMNIFICATION. You agree to indemnify, defend, and hold harmless Microsoft and its affiliates from any claims, including attorneys' fees, related to the distribution or use of your Kinect for Windows Applications.\n\n BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users, and end use. For additional information, see www.microsoft.com/exporting.\n\n ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n APPLICABLE LAW.\n\n United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\n Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your state, province, or country. This agreement does not change your rights under the laws of your state, province, or country if the laws of your state, province, or country do not permit it to do so.\n\n DISCLAIMER OF WARRANTY. The software is licensed \"as-is.\" You bear all risk of using it. Microsoft gives no express warranties, guarantees, or conditions. You may have additional consumer rights under your local laws that this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose, and non-infringement.\n\n LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\n\n This limitation applies to\n anything related to the software, services, content (including code) on third-party Internet sites, or third-party programs; and\n claims for breach of contract; breach of warranty, guarantee, or condition; strict liability, negligence, or other tort, to the extent permitted by applicable law.\n\n It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state, province, or country may not allow the exclusion or limitation of incidental, consequential, or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.\n\nRemarque: Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\u00e7ais.\n\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel \u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft n'accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\u00e9 marchande, d'ad\u00e9quation \u00e0 un usage particulier et d'absence de contrefa\u00e7on sont exclues.\n\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\n\nCette limitation concerne:\n\n tout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers; et\n les r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d'une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\n\nElle s'applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre l'\u00e9ventualit\u00e9 d'un tel dommage. Si votre pays n'autorise pas l'exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l'exclusion ci-dessus ne s'appliquera pas \u00e0 votre \u00e9gard.\n\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d'autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si celles-ci ne le permettent pas.", + "json": "ms-kinext-win-sdk.json", + "yaml": "ms-kinext-win-sdk.yml", + "html": "ms-kinext-win-sdk.html", + "license": "ms-kinext-win-sdk.LICENSE" + }, + { + "license_key": "ms-limited-community", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-limited-community", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft Limited Community License (Ms-LCL)\nPublished: October 18, 2005\n\nThis license governs use of the accompanying software. If you use the software,\nyou accept this license. If you do not accept the license, do not use the\nsoftware.\n\n1. Definitions\n\nThe terms \"reproduce,\" \"reproduction\" and \"distribution\" have the same meaning\nhere as under U.S. copyright law.\n\n\"You\" means the licensee of the software.\n\n\"Larger work\" means the combination of the software and any additions or\nmodifications to the software.\n\n\"Licensed patents\" means any Licensor patent claims which read directly on the\nsoftware as distributed by the Licensor under this license.\n\n2. Grant of Rights\n\n(A) Copyright Grant- Subject to the terms of this license, including the license\nconditions and limitations in section 3, the Licensor grants you a non-\nexclusive, worldwide, royalty-free copyright license to reproduce the software,\nprepare derivative works of the software and distribute the software or any\nderivative works that you create.\n\n(B) Patent Grant- Subject to the terms of this license, including the license\nconditions and limitations in section 3, the Licensor grants you a non-\nexclusive, worldwide, royalty-free patent license under licensed patents to\nmake, have made, use, practice, sell, and offer for sale, and/or otherwise\ndispose of the software or derivative works of the software.\n\n3. Conditions and Limitations\n\n(A) Reciprocal Grants- Your rights to reproduce and distribute the software (or\nany part of the software), or to create and distribute derivative works of the\nsoftware, are conditioned on your licensing the software or any larger work you\ncreate under the following terms:\n\n 1.\n\n If you distribute the larger work as a series of files, you must grant all\n recipients the copyright and patent licenses in sections 2(A) & 2(B) for any\n file that contains code from the software. You must also provide recipients\n the source code to any such files that contain code from the software along\n with a copy of this license. Any other files which are entirely your own work\n and which do not contain any code from the software may be licensed under any\n terms you choose.\n\n 2.\n\n If you distribute the larger work as a single file, then you must grant all\n recipients the rights set out in sections 2(A) & 2(B) for the entire larger\n work. You must also provide recipients the source code to the larger work\n along with a copy of this license.\n\n(B) No Trademark License- This license does not grant you any rights to use the\nLicensor's name, logo, or trademarks.\n\n(C) If you distribute the software in source code form you may do so only under\nthis license (i.e., you must include a complete copy of this license with your\ndistribution), and if you distribute the software solely in compiled or object\ncode form you may only do so under a license that complies with this license.\n\n(D) If you begin patent litigation against the Licensor over patents that you\nthink may apply to the software (including a cross-claim or counterclaim in a\nlawsuit), your license to the software ends automatically.\n\n(E) The software is licensed \"as-is.\" You bear the risk of using it. The\nLicensor gives no express warranties, guarantees or conditions. You may have\nadditional consumer rights under your local laws which this license cannot\nchange. To the extent permitted under your local laws, the Licensor excludes the\nimplied warranties of merchantability, fitness for a particular purpose and non-\ninfringement.\n\n(F) Platform Limitation- The licenses granted in sections 2(A) & 2(B) extend\nonly to the software or larger works that you create that run on a Microsoft\nWindows operating system product.", + "json": "ms-limited-community.json", + "yaml": "ms-limited-community.yml", + "html": "ms-limited-community.html", + "license": "ms-limited-community.LICENSE" + }, + { + "license_key": "ms-limited-public", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Microsoft Limited Public License (Ms-LPL)\n\nThis license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software.\n\n1. Definitions\n\nThe terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and \"distribution\"\nhave the same meaning here as under U.S. copyright law.\n\nA \"contribution\" is the original software, or any additions or changes to the\nsoftware.\n\nA \"contributor\" is any person that distributes its contribution under this\nlicense.\n\n\"Licensed patents\" are a contributor\u2019s patent claims that read directly on its contribution.\n\n2. Grant of Rights\n\n(A) Copyright Grant- Subject to the terms of this license, including the license\nconditions and limitations in section 3, each contributor grants you a non-\nexclusive, worldwide, royalty-free copyright license to reproduce its\ncontribution, prepare derivative works of its contribution, and distribute its\ncontribution or any derivative works that you create.\n\n(B) Patent Grant- Subject to the terms of this license, including the license\nconditions and limitations in section 3, each contributor grants you a non-\nexclusive, worldwide, royalty-free license under its licensed patents to make,\nhave made, use, sell, offer for sale, import, and/or otherwise dispose of its\ncontribution in the software or derivative works of the contribution in the\nsoftware.\n\n3. Conditions and Limitations\n\n(A) No Trademark License- This license does not grant you rights to use any\ncontributors\u2019 name, logo, or trademarks.\n\n(B) If you bring a patent claim against any contributor over patents that you\nclaim are infringed by the software, your patent license from such contributor\nto the software ends automatically.\n\n(C) If you distribute any portion of the software, you must retain all\ncopyright, patent, trademark, and attribution notices that are present in the\nsoftware.\n\n(D) If you distribute any portion of the software in source code form, you may\ndo so only under this license by including a complete copy of this license with\nyour distribution. If you distribute any portion of the software in compiled or\nobject code form, you may only do so under a license that complies with this\nlicense.\n\n(E) The software is licensed \"as-is.\" You bear the risk of using it. The\ncontributors give no express warranties, guarantees or conditions. You may have\nadditional consumer rights under your local laws which this license cannot\nchange. To the extent permitted under your local laws, the contributors exclude\nthe implied warranties of merchantability, fitness for a particular purpose and\nnon-infringement.\n\n(F) Platform Limitation- The licenses granted in sections 2(A) & 2(B) extend\nonly to the software or derivative works that you create that run on a Microsoft\nWindows operating system product.", + "json": "ms-limited-public.json", + "yaml": "ms-limited-public.yml", + "html": "ms-limited-public.html", + "license": "ms-limited-public.LICENSE" + }, + { + "license_key": "ms-lpl", + "category": "Permissive", + "spdx_license_key": "MS-LPL", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-lpl" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft Limited Permissive License (MS-LPL)\nPublished: October 12, 2006\n\n\nThis license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software.\n\n1. Definitions\n\nThe terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and \"distribution\"\nhave the same meaning here as under U.S. copyright law.\n\nA \"contribution\" is the original software, or any additions or changes to the\nsoftware.\n\nA \"contributor\" is any person that distributes its contribution under this\nlicense.\n\n\"Licensed patents\" are a contributor\u2019s patent claims that read directly on its contribution.\n\n2. Grant of Rights\n\n(A) Copyright Grant- Subject to the terms of this license, including the license\nconditions and limitations in section 3, each contributor grants you a non-\nexclusive, worldwide, royalty-free copyright license to reproduce its\ncontribution, prepare derivative works of its contribution, and distribute its\ncontribution or any derivative works that you create.\n\n(B) Patent Grant- Subject to the terms of this license, including the license\nconditions and limitations in section 3, each contributor grants you a non-\nexclusive, worldwide, royalty-free license under its licensed patents to make,\nhave made, use, sell, offer for sale, import, and/or otherwise dispose of its\ncontribution in the software or derivative works of the contribution in the\nsoftware.\n\n3. Conditions and Limitations\n\n(A) No Trademark License- This license does not grant you rights to use any\ncontributors\u2019 name, logo, or trademarks.\n\n(B) If you bring a patent claim against any contributor over patents that you\nclaim are infringed by the software, your patent license from such contributor\nto the software ends automatically.\n\n(C) If you distribute any portion of the software, you must retain all\ncopyright, patent, trademark, and attribution notices that are present in the\nsoftware.\n\n(D) If you distribute any portion of the software in source code form, you may\ndo so only under this license by including a complete copy of this license with\nyour distribution. If you distribute any portion of the software in compiled or\nobject code form, you may only do so under a license that complies with this\nlicense.\n\n(E) The software is licensed \"as-is.\" You bear the risk of using it. The\ncontributors give no express warranties, guarantees or conditions. You may have\nadditional consumer rights under your local laws which this license cannot\nchange. To the extent permitted under your local laws, the contributors exclude\nthe implied warranties of merchantability, fitness for a particular purpose and\nnon-infringement.\n\n(F) Platform Limitation- The licenses granted in sections 2(A) & 2(B) extend\nonly to the software or derivative works that you create that run on a Microsoft\nWindows operating system product.", + "json": "ms-lpl.json", + "yaml": "ms-lpl.yml", + "html": "ms-lpl.html", + "license": "ms-lpl.LICENSE" + }, + { + "license_key": "ms-msn-webgrease", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-msn-webgrease", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT MSN WEBGREASE\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\n\u00b7 updates,\n\n\u00b7 supplements,\n\n\u00b7 Internet-based services, and\n\n\u00b7 support services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBy using the software, you accept these terms. If you do not accept them, do not use the software.\n\nIf you comply with these license terms, you have the perpetual rights below.\n\n1. INSTALLATION AND USE RIGHTS.\n\na. Installation and Use. One user may install and use any number of copies of the software on your devices.\n\nb. Third Party Notices. The software may include third party code. Microsoft, not the third party, licenses to you under the terms set forth in this agreement. Notices, if any, for any third party code are included for your information only.\n\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\n\na. Distributable Code. The software contains code that you are permitted to distribute in programs you develop if you comply with the terms below.\n\ni. Right to Use and Distribute. The code and text files listed below are \"Distributable Code.\"\n\n\u00b7 Redistributable Files. You may copy and distribute the object code form of the following files.\n\n\u00a7 WebGrease.dll\n\n\u00a7 WG.exe\n\n\u00b7 Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\n\nii. Distribution Requirements. For any Distributable Code you distribute, you must\n\n\u00b7 add primary functionality to it in your programs;\n\n\u00b7 for any Distributable Code having a filename extension of .lib, distribute only the results of running such Distributable Code through a linker with your program;\n\n\u00b7 distribute Distributable Code included in a setup program only as part of that setup program without modification;\n\n\u00b7 require distributors and external end users to agree to terms that protect it at least as much as this agreement;\n\n\u00b7 display your valid copyright notice on your programs; and\n\n\u00b7 indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\n\niii. Distribution Restrictions. You may not\n\n\u00b7 alter any copyright, trademark or patent notice in the Distributable Code;\n\n\u00b7 use Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\n\n\u00b7 distribute Distributable Code to run on a platform other than the Windows platform;\n\n\u00b7 include Distributable Code in malicious, deceptive or unlawful programs; or\n\n\u00b7 modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\n\n\u00b7 the code be disclosed or distributed in source code form; or\n\n\u00b7 others have the right to modify it.\n\n3. INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software. It may change or cancel them at any time. You may not use these services in any way that could harm them or impair anyone else\u2019s use of them. You may not use the services to try to gain unauthorized access to any service, data, account or network by any means.\n\n4. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n\u00b7 work around any technical limitations in the software;\n\n\u00b7 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\n\u00b7 make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n\n\u00b7 publish the software for others to copy;\n\n\u00b7 rent, lease or lend the software; or\n\n\u00b7 transfer the software or this agreement to any third party.\n\n5. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n6. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n7. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n8. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n9. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n10. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n11. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n12. DISCLAIMER OF WARRANTY. The software is licensed \"as-is.\" You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights or statutory guarantees under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n\nFOR AUSTRALIA \u2013 You have statutory guarantees under the Australian Consumer Law and nothing in these terms is intended to affect those rights.\n\n13. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\n\nThis limitation applies to\n\n\u00b7 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\n\u00b7 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, these license terms are provided below in French.\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, les termes de cette licence sont fournis ci-dessous en fran\u00e7ais.\n\nTERMES DU CONTRAT DE LICENCE D\u2019UN LOGICIEL MICROSOFT\nMICROSOFT MSN WEBGREASE\nLes pr\u00e9sents termes ont valeur de contrat entre Microsoft Corporation (ou en fonction du lieu o\u00f9 vous vivez, l\u2019un de ses affili\u00e9s) et vous. Lisez-les attentivement. Ils portent sur le logiciel nomm\u00e9 ci-dessus, y compris le support sur lequel vous l\u2019avez re\u00e7u le cas \u00e9ch\u00e9ant. Ce contrat porte \u00e9galement sur les produits Microsoft suivants :\n\n\u00b7 les mises \u00e0 jour,\n\n\u00b7 les suppl\u00e9ments,\n\n\u00b7 les services Internet et\n\n\u00b7 les services d\u2019assistance technique\n\nde ce logiciel \u00e0 moins que d\u2019autres termes n\u2019accompagnent ces produits, auquel cas, ces derniers pr\u00e9valent.\n\nEn utilisant le logiciel, vous acceptez ces termes. Si vous ne les acceptez pas, n\u2019utilisez pas le logiciel.\n\nSi vous respectez les pr\u00e9sentes conditions de licence, vous disposez des droits suivants pour la dur\u00e9e des droits de propri\u00e9t\u00e9 intellectuelle.\n\n1. INSTALLATION ET DROITS D\u2019UTILISATION.\n\na. Installation et utilisation. Un utilisateur peut installer et utiliser un nombre quelconque de copies du logiciel sur vos dispositifs.\n\nb. Logiciels tiers. Le logiciel contient des programmes tiers. Les termes qui accompagnent ces programmes s'appliquent, sauf mention contraire dans lesdits termes.\n\n2. SERVICES INTERNET. Microsoft fournit des services Internet avec le logiciel. Ils peuvent \u00eatre modifi\u00e9s ou interrompus \u00e0 tout moment.\n\n3. PORTEE DE LA LICENCE. Le logiciel est conc\u00e9d\u00e9 sous licence, pas vendu. Ce contrat vous octroie uniquement certains droits d\u2019utilisation du logiciel. Microsoft se r\u00e9serve tous les autres droits. \u00c0 moins que la loi en vigueur vous conf\u00e8re davantage de droits nonobstant cette limitation, vous pouvez utiliser le logiciel uniquement tel qu\u2019explicitement autoris\u00e9 dans le pr\u00e9sent accord. \u00c0 cette fin, vous devez respecter les restrictions techniques du logiciel qui autorisent uniquement son utilisation de certaines fa\u00e7ons. Vous n\u2019\u00eates pas autoris\u00e9 \u00e0 :\n\n\u00b7 contourner les limitations techniques du logiciel ;\n\n\u00b7 reconstituer la logique du logiciel, le d\u00e9compiler ou le d\u00e9sassembler, sauf dans la mesure o\u00f9 ces op\u00e9rations seraient express\u00e9ment autoris\u00e9es par la r\u00e9glementation applicable nonobstant la pr\u00e9sente limitation ;\n\n\u00b7 faire plus de copies du logiciel que sp\u00e9cifi\u00e9 dans ce contrat ou par la r\u00e9glementation applicable, nonobstant la pr\u00e9sente limitation ;\n\n\u00b7 publier le logiciel pour que d\u2019autres le copient ;\n\n\u00b7 louer ou pr\u00eater le logiciel ; ou\n\n\u00b7 transf\u00e9rer le logiciel ou le pr\u00e9sent contrat \u00e0 un tiers.\n\n4. COPIE DE SAUVEGARDE. Vous \u00eates autoris\u00e9 \u00e0 effectuer une copie de sauvegarde du logiciel. Vous ne pouvez l\u2019utiliser que dans le but de r\u00e9installer le logiciel.\n\n5. DOCUMENTATION. Tout utilisateur disposant d\u2019un acc\u00e8s valide \u00e0 votre ordinateur ou \u00e0 votre r\u00e9seau interne peut copier et utiliser la documentation \u00e0 des fins de r\u00e9f\u00e9rence interne.\n\n6. RESTRICTIONS \u00c0 L\u2019EXPORTATION. Le logiciel est soumis \u00e0 la r\u00e9glementation am\u00e9ricaine relative \u00e0 l\u2019exportation. Vous devez vous conformer \u00e0 toutes les r\u00e9glementations nationales et internationales relatives aux exportations concernant le logiciel. Ces r\u00e9glementations comprennent les restrictions sur les destinations, les utilisateurs finaux et l\u2019utilisation finale. Pour plus d\u2019informations, consultez le site www.microsoft.com/exporting.\n\n7. SERVICES D\u2019ASSISTANCE TECHNIQUE. Comme ce logiciel est fourni \u00ab en l'\u00e9tat \u00bb, nous ne fourniront aucun service d\u2019assistance.\n\n8. INT\u00c9GRALIT\u00c9 DES ACCORDS. Le pr\u00e9sent contrat ainsi que les termes concernant les suppl\u00e9ments, les mises \u00e0 jour, les services Internet et d\u2019assistance technique constituent l\u2019int\u00e9gralit\u00e9 des accords en ce qui concerne le logiciel et les services d\u2019assistance technique.\n\n9. DROIT APPLICABLE.\n\na. \u00c9tats-Unis. Si vous avez acquis le logiciel aux \u00c9tats-Unis, les lois de l\u2019\u00c9tat de Washington, \u00c9tats-Unis d\u2019Am\u00e9rique, r\u00e9gissent l\u2019interpr\u00e9tation de ce contrat et s\u2019appliquent en cas de r\u00e9clamation pour violation dudit contrat, nonobstant les conflits de principes juridiques. La r\u00e9glementation du pays dans lequel vous vivez r\u00e9git toutes les autres r\u00e9clamations, notamment, et sans limitation, les r\u00e9clamations dans le cadre des lois en faveur de la protection des consommateurs, relatives \u00e0 la concurrence et aux d\u00e9lits.\n\nb. En dehors des \u00c9tats-Unis. Si vous avez acquis le logiciel dans un autre pays, les lois de ce pays s\u2019appliquent.\n\n10. EFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d\u2019autres droits pr\u00e9vus par les lois de votre pays. Vous pourriez \u00e9galement avoir des droits \u00e0 l\u2019\u00e9gard de la partie de qui vous avez acquis le logiciel. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre ou pays si celles-ci ne le permettent pas.\n\n11. EXCLUSIONS DE GARANTIE. Le logiciel est conc\u00e9d\u00e9 sous licence \u00ab en l\u2019\u00e9tat \u00bb. Vous assumez tous les risques li\u00e9s \u00e0 son utilisation. Microsoft n\u2019accorde aucune garantie ou condition expresse. Vous pouvez b\u00e9n\u00e9ficier de droits des consommateurs suppl\u00e9mentaires dans le cadre du droit local, que ce contrat ne peut modifier. Lorsque cela est autoris\u00e9 par le droit local, Microsoft exclut les garanties implicites de qualit\u00e9, d\u2019ad\u00e9quation \u00e0 un usage particulier et d\u2019absence de contrefa\u00e7on.\n\n12. LIMITATION ET EXCLUSION DE RECOURS ET DE DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs limit\u00e9e uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\n\nCette limitation concerne :\n\n\u00b7 toute affaire li\u00e9e au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers et\n\n\u00b7 les r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d\u2019une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\n\nElle s\u2019applique \u00e9galement m\u00eame si Microsoft connaissait l'\u00e9ventualit\u00e9 d'un tel dommage. La limitation ou exclusion ci-dessus peut \u00e9galement ne pas vous \u00eatre applicable, car votre pays n\u2019autorise pas l\u2019exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit.", + "json": "ms-msn-webgrease.json", + "yaml": "ms-msn-webgrease.yml", + "html": "ms-msn-webgrease.html", + "license": "ms-msn-webgrease.LICENSE" + }, + { + "license_key": "ms-net-framework-4-supplemental-terms", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-net-framework-4-supp-terms", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-net-framework-4-supplemental-terms" + ], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS \nMICROSOFT .NET FRAMEWORK 4 FOR MICROSOFT WINDOWS OPERATING SYSTEM \nMICROSOFT .NET FRAMEWORK 4 CLIENT PROFILE FOR MICROSOFT WINDOWS OPERATING SYSTEM \nAND ASSOCIATED LANGUAGE PACKS \n\nMicrosoft Corporation (or based on where you live, one of its affiliates) licenses this supplement to you. If you are licensed to use Microsoft Windows operating system software (for which this supplement is applicable) (the \"software\"), you may use this supplement. You may not use it if you do not have a license for the software. You may use a copy of this supplement with each validly licensed copy of the software. \n\nThe following license terms describe additional use terms for this supplement. These terms and the license terms for the software apply to your use of the supplement. If there is a conflict, these supplemental license terms apply. \nBy using this supplement, you accept these terms. If you do not accept them, do not use this supplement. \nIf you comply with these license terms, you have the rights below. \n\n1.\tSUPPORT SERVICES FOR SUPPLEMENT. Microsoft provides support services for this software as described at www.support.microsoft.com/common/international.aspx . \n\n2.\tMICROSOFT .NET FRAMEWORK BENCHMARK TESTING. The software includes one or more components of the .NET Framework (.NET Components). You may conduct internal benchmark testing of those components. You may disclose the results of any benchmark test of those components, provided that you comply with the conditions set forth at . Notwithstanding any other agreement you may have with Microsoft, if you disclose such benchmark test results, Microsoft shall have the right to disclose the results of benchmark tests it conducts of your products that compete with the applicable .NET Component, provided it complies with the same conditions set forth at .", + "json": "ms-net-framework-4-supplemental-terms.json", + "yaml": "ms-net-framework-4-supplemental-terms.yml", + "html": "ms-net-framework-4-supplemental-terms.html", + "license": "ms-net-framework-4-supplemental-terms.LICENSE" + }, + { + "license_key": "ms-net-framework-deployment", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-net-framework-deployment", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": ".NET Framework Deployment \nMicrosoft .NET Framework Redistributable EULA\n\nIMPORTANT: READ CAREFULLY\u2014These Microsoft Corporation (\"Microsoft\") operating system components, including any \"online\" or electronic documentation (\"OS Components\") are subject to the terms and conditions of the agreement under which you have licensed the applicable Microsoft operating system product (\"OS Product\") described below (each an \"End User License Agreement\" or \"EULA\") and the terms and conditions of this Supplemental EULA. BY INSTALLING, COPYING OR OTHERWISE USING THE OS COMPONENTS, YOU AGREE TO BE BOUND BY THE TERMS AND CONDITIONS OF THE APPLICABLE OS PRODUCT EULA AND THIS SUPPLEMENTAL EULA. IF YOU DO NOT AGREE TO THESE TERMS AND CONDITIONS, DO NOT INSTALL, COPY OR USE THE OS COMPONENTS.\n\nNOTE: IF YOU DO NOT HAVE A VALID EULA FOR ANY \"OS PRODUCT\" (MICROSOFT WINDOWS 98, WINDOWS ME, WINDOWS NT 4.0 (DESKTOP EDITION), WINDOWS 2000 OPERATING SYSTEM, WINDOWS XP PROFESSIONAL AND/OR WINDOWS XP HOME EDITION), YOU ARE NOT AUTHORIZED TO INSTALL, COPY OR OTHERWISE USE THE OS COMPONENTS AND YOU HAVE NO RIGHTS UNDER THIS SUPPLEMENTAL EULA.\n\nCapitalized terms used in this Supplemental EULA and not otherwise defined herein shall have the meanings assigned to them in the applicable OS Product EULA.\n\nGeneral. The OS Components are provided to you by Microsoft to update, supplement, or replace existing functionality of the applicable OS Product Microsoft grants you a license to use the OS Components under the terms and conditions of the OS Product EULA for the applicable OS Product (which are hereby incorporated by reference) and the terms and conditions set forth in this Supplemental EULA, provided that you comply with all such terms and conditions. To the extent that any terms in this Supplemental EULA conflict with terms in the applicable OS Product EULA, the terms of this Supplemental EULA control solely with respect to the OS Components.\n\nAdditional Rights and Limitations.\n*If you have multiple validly licensed copies of the applicable OS Product(s), you may reproduce, install and use one copy of the OS Components as part of such applicable OS Product(s) on all of your computers running validly licensed copies of the OS Product(s) provided that you use such additional copies of the OS Components in accordance with the terms and conditions above.\n\n*You may conduct internal benchmark testing of the .NET Framework component of the OS Components (\".NET Component\"). You may disclose the results of any benchmark test of the .NET Component, provided that you comply with the following terms: (1) you must disclose all the information necessary for replication of the tests, including complete and accurate details of your benchmark testing methodology, the test scripts/cases, tuning parameters applied, hardware and software platforms tested, the name and version number of any third party testing tool used to conduct the testing, and complete source code for the benchmark suite/harness that is developed by or for you and used to test both the .NET Component and the competing implementation(s); \n(2) you must disclose the date(s) that you conducted the benchmark tests, along with specific version information for all Microsoft software products tested, including the .NET Component; \n(3) your benchmark testing was performed using all performance tuning and best practice guidance set forth in the product documentation and/or on Microsoft's support web sites, and uses the latest updates, patches and fixes available for the .NET Component and the relevant Microsoft operating system; \n(4) it shall be sufficient if you make the disclosures provided for above at a publicly available location such as a website, so long as every public disclosure of the results of your benchmark test expressly identifies the public site containing all required disclosures; and \n(5) nothing in this provision shall be deemed to waive any other right that you may have to conduct benchmark testing. The foregoing obligations shall not apply to your disclosure of the results of any customized benchmark test of the .NET Component, whereby such disclosure is made under confidentiality in conjunction with a bid request by a prospective customer, such customer's application(s) are specifically tested and the results are only disclosed to such specific customer. Notwithstanding any other agreement you may have with Microsoft, if you disclose such benchmark test results, Microsoft shall have the right to disclose the results of benchmark tests it conducts of your products that compete with the .NET Component, provided it complies with the same conditions above.\n\n*Microsoft retains all right, title and interest in and to the OS Components. All rights not expressly granted are reserved by Microsoft.\n\nIF THE APPLICABLE OS PRODUCT WAS LICENSED TO YOU BY MICROSOFT OR ANY OF ITS WHOLLY OWNED SUBSIDIARIES, THE LIMITED WARRANTY (IF ANY) INCLUDED IN THE APPLICABLE OS PRODUCT EULA APPLIES TO THE OS COMPONENTS PROVIDED THE OS COMPONENTS HAVE BEEN LICENSED BY YOU WITHIN THE TERM OF THE LIMITED WARRANTY IN THE APPLICABLE OS PRODUCT EULA. HOWEVER, THIS SUPPLEMENTAL EULA DOES NOT EXTEND THE TIME PERIOD FOR WHICH THE LIMITED WARRANTY IS PROVIDED.\n\nIF THE APPLICABLE OS PRODUCT WAS LICENSED TO YOU BY AN ENTITY OTHER THAN MICROSOFT OR ANY OF ITS WHOLLY OWNED SUBSIDIARIES, MICROSOFT DISCLAIMS ALL WARRANTIES WITH RESPECT TO THE OS COMPONENTS AS FOLLOWS:\nDISCLAIMER OF WARRANTIES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, MICROSOFT AND ITS SUPPLIERS PROVIDE TO YOU THE OS COMPONENTS, AND ANY (IF ANY) SUPPORT SERVICES RELATED TO THE OS COMPONENTS (\"SUPPORT SERVICES\") AS IS AND WITH ALL FAULTS; and Microsoft and its suppliers hereby disclaim with respect to THE os COMPONENTS AND SUPPORT SERVICES all warranties and conditions, whether express, implied or statutory, including, but not limited to, any (if any) warranties or conditions of OR RELATED TO: TITLE, NON-INFRINGEMENT, merchantability, fitness for a particular purpose, lack of viruses, accuracy or completeness of responses, results, lack of negligence or lack of workmanlike effort, QUIET ENJOYMENT, QUIET POSSESSION, AND CORRESPONDENCE TO DESCRIPTION. The entire risk arising out of use or performance of the OS Components AND ANY SUPPORT SERVICES remains with you.\n\nEXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER DAMAGES. To the maximum extent permitted by applicable law, in no event shall Microsoft or its suppliers be liable for any special, incidental, indirect, or consequential damages whatsoever (including, but not limited to, damages for: loss of profits, LOSS OF confidential or other information, business interruption, personal injury, loss of privacy, failure to meet any duty (including of good faith or of reasonable care), negligence, and any other pecuniary or other loss whatsoever) arising out of or in any way related to the use of or inability to use the OS Components OR THE SUPPORT SERVICES, OR the provision of or failure to provide Support Services, or otherwise under or in connection with any provision of this Supplemental EULA, even if Microsoft or any supplier has been advised of the possibility of such damages.\n\nLIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING ANY DAMAGES THAT YOU MIGHT INCUR FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT LIMITATION, ALL DAMAGES REFERENCED ABOVE AND ALL DIRECT OR GENERAL DAMAGES), THE ENTIRE LIABILITY OF MICROSOFT AND ANY OF ITS SUPPLIERS UNDER ANY PROVISION OF THIS SUPPLEMENTAL EULA AND YOUR EXCLUSIVE REMEDY FOR ALL OF THE FOREGOING SHALL BE LIMITED TO THE GREATER OF THE AMOUNT ACTUALLY PAID BY YOU FOR THE OS COMPONENTS OR U.S.$5.00. THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, EVEN IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE.\n\n(French text omitted)", + "json": "ms-net-framework-deployment.json", + "yaml": "ms-net-framework-deployment.yml", + "html": "ms-net-framework-deployment.html", + "license": "ms-net-framework-deployment.LICENSE" + }, + { + "license_key": "ms-net-library", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-net-library", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT .NET LIBRARY\n\nThese license terms are an agreement between Microsoft Corporation (or based on\nwhere you live, one of its affiliates) and you. Please read them. They apply to\nthe software named above, which includes the media on which you received it, if\nany. The terms also apply to any Microsoft\n\n. updates,\n\n. supplements,\n\n. Internet - based services, and\n\n. support services\n\nfor this software, unless other terms accompany those items. If so, those terms\napply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT\nUSE THE SOFTWARE.\n\nIF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW.\n\n1. INSTALLATION AND USE RIGHTS.\n\na. Installation and Use. You may install and use any number of copies of the\nsoftware to design, develop and test your programs.\n\nb. Third Party Programs. The software may include third party programs that\nMicrosoft, not the third party, licenses to you under this agreement. Notices,\nif any, for the third party program are included for your information only.\n\n2. ADDITIONAL LICENSING REQUIREMENTS AND / OR USE RIGHTS.\n\na. DISTRIBUTABLE CODE. The software is comprised of Distributable Code.\n\"Distributable Code\" is code that you are permitted to distribute in programs\nyou develop if you comply with the terms below.\n\ni. Right to Use and Distribute.\n\n. You may copy and distribute the object code form of the software.\n\n. Third Party Distribution. You may permit distributors of your programs to copy\nand distribute the Distributable Code as part of those programs.\n\nii. Distribution Requirements. For any Distributable Code you distribute, you\nmust\n\n. add significant primary functionality to it in your programs;\n\n. require distributors and external end users to agree to terms that protect it\nat least as much as this agreement;\n\n. display your valid copyright notice on your programs; and\n\n. indemnify, defend, and hold harmless Microsoft from any claims, including\nattorneys\u2019 fees, related to the distribution or use of your programs.\n\niii. Distribution Restrictions. You may not\n\n. alter any copyright, trademark or patent notice in the Distributable Code;\n\n. use Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests\nyour programs come from or are endorsed by Microsoft;\n\n. include Distributable Code in malicious, deceptive or unlawful programs; or\n\n. modify or distribute the source code of any Distributable Code so that any\npart of it becomes subject to an Excluded License. An Excluded License is one\nthat requires, as a condition of use, modification or distribution, that\n\n. the code be disclosed or distributed in source code form; or\n\n. others have the right to modify it.\n\n3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only\ngives you some rights to use the software. Microsoft reserves all other rights.\nUnless applicable law gives you more rights despite this limitation, you may use\nthe software only as expressly permitted in this agreement. In doing so, you\nmust comply with any technical limitations in the software that only allow you\nto use it in certain ways. You may not\n\n. work around any technical limitations in the software;\n\n. reverse engineer, decompile or disassemble the software, except and only to\nthe extent that applicable law expressly permits, despite this limitation;\n\n. publish the software for others to copy;\n\n. rent, lease or lend the software;\n\n. transfer the software or this agreement to any third party; or\n\n. use the software for commercial software hosting services.\n\n4. BACKUP COPY. You may make one backup copy of the software. You may use it\nonly to reinstall the software.\n\n5. DOCUMENTATION. Any person that has valid access to your computer or internal\nnetwork may copy and use the documentation for your internal, reference\npurposes.\n\n6. EXPORT RESTRICTIONS. The software is subject to United States export laws and\nregulations. You must comply with all domestic and international export laws and\nregulations that apply to the software. These laws include restrictions on\ndestinations, end users and end use. For additional information, see\nwww.microsoft.com/exporting.\n\n7. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide\nsupport services for it.\n\n8. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates,\nInternet - based services and support services that you use, are the entire\nagreement for the software and support services.\n\n9. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States, Washington\nstate law governs the interpretation of this agreement and applies to claims for\nbreach of it, regardless of conflict of laws principles. The laws of the state\nwhere you live govern all other claims, including claims under state consumer\nprotection laws, unfair competition laws, and in tort.\n\nb. Outside the United States. If you acquired the software in any other country,\nthe laws of that country apply.\n\n10. LEGAL EFFECT. This agreement describes certain legal rights. You may have\nother rights under the laws of your country. You may also have rights with\nrespect to the party from whom you acquired the software. This agreement does\nnot change your rights under the laws of your country if the laws of your\ncountry do not permit it to do so.\n\n11. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK\nOF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS.\nYOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL\nLAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR\nLOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NON - INFRINGEMENT.\n\nFOR AUSTRALIA \u2013 YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW\nAND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS.\n\n12. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM\nMICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT\nRECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL,\nINDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to\n\n. anything related to the software, services, content (including code) on third\nparty Internet sites, or third party programs; and\n\n. claims for breach of contract, breach of warranty, guarantee or condition,\nstrict liability, negligence, or other tort to the extent permitted by\napplicable law.\n\nIt also applies even if Microsoft knew or should have known about the\npossibility of the damages. The above limitation or exclusion may not apply to\nyou because your country may not allow the exclusion or limitation of\nincidental, consequential or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, some of the\nclauses in this agreement are provided below in French.\n\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses\ndans ce contrat sont fournies ci - dessous en fran\u00e7ais.\n\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel\n\u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft\nn\u2019accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits\nadditionnels en vertu du droit local sur la protection des consommateurs, que ce\ncontrat ne peut modifier. La ou elles sont permises par le droit locale, les\ngaranties implicites de qualit\u00e9 marchande, d\u2019ad\u00e9quation \u00e0 un usage particulier\net d\u2019absence de contrefa\u00e7on sont exclues.\n\nLIMITATION DES DOMMAGES - INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES\nDOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une\nindemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous\nne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris\nles dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\n\nCette limitation concerne :\n\n. tout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le\ncode) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\n\n. les r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre\nde responsabilit\u00e9 stricte, de n\u00e9gligence ou d\u2019une autre faute dans la limite\nautoris\u00e9e par la loi en vigueur.\n\nElle s\u2019applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre\nl\u2019\u00e9ventualit\u00e9 d\u2019un tel dommage. Si votre pays n\u2019autorise pas l\u2019exclusion ou la\nlimitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de\nquelque nature que ce soit, il se peut que la limitation ou l\u2019exclusion ci-\ndessus ne s\u2019appliquera pas \u00e0 votre \u00e9gard.\n\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous\npourriez avoir d\u2019autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent\ncontrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si\ncelles - ci ne le permettent pas.", + "json": "ms-net-library.json", + "yaml": "ms-net-library.yml", + "html": "ms-net-library.html", + "license": "ms-net-library.LICENSE" + }, + { + "license_key": "ms-net-library-2016-05", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2016-05", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT .NET LIBRARY\n\nThese license terms are an agreement between Microsoft Corporation (or based on\nwhere you live, one of its affiliates) and you. Please read them. They apply to\nthe software named above, which includes the media on which you received it, if\nany. The terms also apply to any Microsoft\n\n. updates,\n\n. supplements,\n\n. Internet-based services, and\n\n. support services\n\nfor this software, unless other terms accompany those items. If so, those terms\napply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT\nUSE THE SOFTWARE.\n\nIF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW.\n\n1. INSTALLATION AND USE RIGHTS.\n\na. Installation and Use. You may install and use any number of copies of the\nsoftware to design, develop and test your programs.\n\nb. Third Party Programs. The software may include third party programs that\nMicrosoft, not the third party, licenses to you under this agreement. Notices,\nif any, for the third party program are included for your information only.\n\n2. DATA. The software may collect information about you and your use of the\nsoftware, and send that to Microsoft. Microsoft may use this information to\nimprove our products and services. You can learn more about data collection and\nuse in the help documentation and the privacy statement at\nhttp://go.microsoft.com/fwlink/?LinkId=528096 . Your use of the software\noperates as your consent to these practices.\n\n3. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\n\na. DISTRIBUTABLE CODE. The software is comprised of Distributable Code.\n\"Distributable Code\" is code that you are permitted to distribute in programs\nyou develop if you comply with the terms below.\n\ni . Right to Use and Distribute.\n\n. You may copy and distribute the object code form of the software.\n\n. Third Party Distribution. You may permit distributors of your programs to copy\nand distribute the Distributable Code as part of those programs.\n\nii. Distribution Requirements. For any Distributable Code you distribute, you\nmust\n\n. add significant primary functionality to it in your programs;\n\n. require distributors and external end users to agree to terms that protect it\nat least as much as this agreement;\n\n. display your valid copyright notice on your programs; and\n\n. indemnify, defend, and hold harmless Microsoft from any claims, including\nattorneys' fees, related to the distribution or use of your programs.\n\niii. Distribution Restrictions. You may not\n\n. alter any copyright, trademark or patent notice in the Distributable Code;\n\n. use Microsoft's trademarks in your programs' names or in a way that suggests\nyour programs come from or are endorsed by Microsoft;\n\n. include Distributable Code in malicious, deceptive or unlawful programs; or\n\n. modify or distribute the source code of any Distributable Code so that any\npart of it becomes subject to an Excluded License. An Excluded License is one\nthat requires, as a condition of use, modification or distribution, that\n\n. the code be disclosed or distributed in source code form; or\n\n. others have the right to modify it.\n\n4. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only\ngives you some rights to use the software. Microsoft reserves all other rights.\nUnless applicable law gives you more rights despite this limitation, you may use\nthe software only as expressly permitted in this agreement. In doing so, you\nmust comply with any technical limitations in the software that only allow you\nto use it in certain ways. You may not\n\n. work around any technical limitations in the software;\n\n. reverse engineer, decompile or disassemble the software, except and only to\nthe extent that applicable law expressly permits, despite this limitation;\n\n. publish the software for others to copy;\n\n. rent, lease or lend the software;\n\n. transfer the software or this agreement to any third party; or\n\n. use the software for commercial software hosting services.\n\n5. BACKUP COPY. You may make one backup copy of the software. You may use it\nonly to reinstall the software.\n\n6. DOCUMENTATION. Any person that has valid access to your computer or internal\nnetwork may copy and use the documentation for your internal, reference\npurposes.\n\n7. EXPORT RESTRICTIONS. The software is subject to United States export laws and\nregulations. You must comply with all domestic and international export laws and\nregulations that apply to the software. These laws include restrictions on\ndestinations, end users and end use. For additional information, see\nwww.microsoft.com/exporting.\n\n8. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide\nsupport services for it.\n\n9. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates,\nInternet-based services and support services that you use, are the entire\nagreement for the software and support services.\n\n10. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States, Washington\nstate law governs the interpretation of this agreement and applies to claims for\nbreach of it, regardless of conflict of laws principles. The laws of the state\nwhere you live govern all other claims, including claims under state consumer\nprotection laws, unfair competition laws, and in tort.\n\nb. Outside the United States. If you acquired the software in any other country,\nthe laws of that country apply.\n\n11. LEGAL EFFECT. This agreement describes certain legal rights. You may have\nother rights under the laws of your country. You may also have rights with\nrespect to the party from whom you acquired the software. This agreement does\nnot change your rights under the laws of your country if the laws of your\ncountry do not permit it to do so.\n\n12. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK\nOF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS.\nYOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL\nLAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR\nLOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nFOR AUSTRALIA \u2013 YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW\nAND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS.\n\n13. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM\nMICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT\nRECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL,\nINDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to\n\n. anything related to the software, services, content (including code) on third\nparty Internet sites, or third party programs; and\n\n. claims for breach of contract, breach of warranty, guarantee or condition,\nstrict liability, negligence, or other tort to the extent permitted by\napplicable law.\n\nIt also applies even if Microsoft knew or should have known about the\npossibility of the damages. The above limitation or exclusion may not apply to\nyou because your country may not allow the exclusion or limitation of\nincidental, consequential or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, some of the\nclauses in this agreement are provided below in French.\n\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses\ndans ce contrat sont fournies ci-dessous en fran\u00e7ais.\n\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel\n\u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft\nn'accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits\nadditionnels en vertu du droit local sur la protection des consommateurs, que ce\ncontrat ne peut modifier. La ou elles sont permises par le droit locale, les\ngaranties implicites de qualit\u00e9 marchande, d'ad\u00e9quation \u00e0 un usage particulier\net d'absence de contrefa\u00e7on sont exclues.\n\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES\nDOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une\nindemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous\nne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris\nles dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\n\nCette limitation concerne:\n\n. tout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le\ncode) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\n\n. les r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre\nde responsabilit\u00e9 stricte, de n\u00e9gligence ou d'une autre faute dans la limite\nautoris\u00e9e par la loi en vigueur.\n\nElle s'applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre\nl'\u00e9ventualit\u00e9 d'un tel dommage. Si votre pays n'autorise pas l'exclusion ou la\nlimitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de\nquelque nature que ce soit, il se peut que la limitation ou l'exclusion ci-\ndessus ne s'appliquera pas \u00e0 votre \u00e9gard.\n\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous\npourriez avoir d'autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent\ncontrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si\ncelles-ci ne le permettent pas.", + "json": "ms-net-library-2016-05.json", + "yaml": "ms-net-library-2016-05.yml", + "html": "ms-net-library-2016-05.html", + "license": "ms-net-library-2016-05.LICENSE" + }, + { + "license_key": "ms-net-library-2018-11", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2018-11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT .NET LIBRARY\n\nThese license terms are an agreement between Microsoft Corporation\n(or based on where you live, one of its affiliates) and you.\nThey apply to the software named above.\nThe terms also apply to any Microsoft services or updates for the\nsoftware, except to the extent those have different terms.\n\nIf you comply with these license terms, you have the rights below.\n\n1. INSTALLATION AND USE RIGHTS.\n\nYou may install and use any number of copies of the software to design, develop\nand test you're applications. You may modify, copy, distribute or deploy any .js\nfiles contained in the software as part of your applications.\n\n2. THIRD PARTY COMPONENTS. The software may include third party components with\nseparate legal notices or governed by other agreements, as may be described in\nthe ThirdPartyNotices file(s) accompanying the software.\n\n3. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\n\na. DISTRIBUTABLE CODE. In addition to the .js files described above, the\nsoftware is comprised of Distributable Code. \u201cDistributable Code\u201d is code that\nyou are permitted to distribute in programs you develop if you comply with the\nterms below.\n\ni. Right to Use and Distribute.\n\n. You may copy and distribute the object code form of the software.\n\n. Third Party Distribution. You may permit distributors of your programs to copy\nand distribute the Distributable Code as part of those programs.\n\nii. Distribution Requirements. For any Distributable Code you distribute, you\nmust\n\n. use the Distributable Code in your programs and not as a standalone\ndistribution;\n\n. require distributors and external end users to agree to terms that protect it\nat least as much as this agreement;\n\n. display your valid copyright notice on your programs; and\n\n. indemnify, defend, and hold harmless Microsoft from any claims, including\nattorneys' fees, related to the distribution or use of your applications, except\nto the extent that any claim is based solely on the Distributable Code.\n\niii. Distribution Restrictions. You may not\n\n. alter any copyright, trademark or patent notice in the Distributable Code;\n\n. use Microsoft's trademarks in your programs' names or in a way that suggests\nyour programs come from or are endorsed by Microsoft;\n\n. include Distributable Code in malicious, deceptive or unlawful programs; or\n\n. modify or distribute the source code of any Distributable Code so that any\npart of it becomes subject to an Excluded License. An Excluded License is one\nthat requires, as a condition of use, modification or distribution, that\n\n. the code be disclosed or distributed in source code form; or\n\n. others have the right to modify it.\n\n4. DATA.\n\na. Data Collection. The software may collect information about you and your use\nof the software, and send that to Microsoft. Microsoft may use this information\nto provide services and improve our products and services. You may opt-out of\nmany of these scenarios, but not all, as described in the product documentation.\nThere are also some features in the software that may enable you and Microsoft\nto collect data from users of your applications. If you use these features, you\nmust comply with applicable law, including providing appropriate notices to\nusers of your applications together with a copy of Microsoft's privacy\nstatement. Our privacy statement is located at\nhttps://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data\ncollection and use in the help documentation and our privacy statement. Your use\nof the software operates as your consent to these practices.\n\nb. Processing of Personal Data. To the extent Microsoft is a processor or\nsubprocessor of personal data in connection with the software, Microsoft makes\nthe commitments in the European Union General Data Protection Regulation Terms\nof the Online Services Terms to all customers effective May 25, 2018, at\nhttp://go.microsoft.com/?linkid=9840733.\n\n5. Scope of License. The software is licensed, not sold. This agreement only\ngives you some rights to use the software. Microsoft reserves all other rights.\nUnless applicable law gives you more rights despite this limitation, you may use\nthe software only as expressly permitted in this agreement. In doing so, you\nmust comply with any technical limitations in the software that only allow you\nto use it in certain ways. You may not\n\n. work around any technical limitations in the software;\n\n. reverse engineer, decompile or disassemble the software, or otherwise attempt\nto derive the source code for the software, except and to the extent required by\nthird party licensing terms governing use of certain open source components that\nmay be included in the software;\n\n. remove, minimize, block or modify any notices of Microsoft or its suppliers in\nthe software;\n\n. use the software in any way that is against the law; or\n\n. share, publish, rent or lease the software, provide the software as a stand-\nalone offering for others to use, or transfer the software or this agreement to\nany third party.\n\n6. Export Restrictions. You must comply with all domestic and international\nexport laws and regulations that apply to the software, which include\nrestrictions on destinations, end users, and end use. For further information on\nexport restrictions, visit www.microsoft.com/exporting.\n\n7. SUPPORT SERVICES. Because this software is \u201cas is,\u201d we may not provide\nsupport services for it.\n\n8. Entire Agreement. This agreement, and the terms for supplements, updates,\nInternet-based services and support services that you use, are the entire\nagreement for the software and support services.\n\n9. Applicable Law. If you acquired the software in the United States, Washington\nlaw applies to interpretation of and claims for breach of this agreement, and\nthe laws of the state where you live apply to all other claims. If you acquired\nthe software in any other country, its laws apply.\n\n10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal\nrights. You may have other rights, including consumer rights, under the laws of\nyour state or country. Separate and apart from your relationship with Microsoft,\nyou may also have rights with respect to the party from which you acquired the\nsoftware. This agreement does not change those other rights if the laws of your\nstate or country do not permit it to do so. For example, if you acquired the\nsoftware in one of the below regions, or mandatory country law applies, then the\nfollowing provisions apply to you:\n\na) Australia. You have statutory guarantees under the Australian Consumer Law\nand nothing in this agreement is intended to affect those rights.\n\nb) Canada. If you acquired this software in Canada, you may stop receiving\nupdates by turning off the automatic update feature, disconnecting your device\nfrom the Internet (if and when you re-connect to the Internet, however, the\nsoftware will resume checking for and installing updates), or uninstalling the\nsoftware. The product documentation, if any, may also specify how to turn off\nupdates for your specific device or software.\n\nc) Germany and Austria.\n\n(i) Warranty. The software will perform substantially as described in any\nMicrosoft materials that accompany it. However, Microsoft gives no contractual\nguarantee in relation to the software.\n\n(ii) Limitation of Liability. In case of intentional conduct, gross negligence,\nclaims based on the Product Liability Act, as well as in case of death or\npersonal or physical injury, Microsoft is liable according to the statutory law.\n\nSubject to the foregoing clause (ii), Microsoft will only be liable for slight\nnegligence if Microsoft is in breach of such material contractual obligations,\nthe fulfillment of which facilitate the due performance of this agreement, the\nbreach of which would endanger the purpose of this agreement and the compliance\nwith which a party may constantly trust in (so-called \"cardinal obligations\").\nIn other cases of slight negligence, Microsoft will not be liable for slight\nnegligence\n\n11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED \u201cAS-IS.\u201d YOU BEAR THE RISK\nOF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO\nTHE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-\nINFRINGEMENT.\n\n12. Limitation on and Exclusion of Remedies and Damages. YOU CAN RECOVER FROM\nMICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT\nRECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL,\nINDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to (a) anything related to the software, services,\ncontent (including code) on third party Internet sites, or third party\napplications; and (b) claims for breach of contract, breach of warranty,\nguarantee or condition, strict liability, negligence, or other tort to the\nextent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the\npossibility of the damages. The above limitation or exclusion may not apply to\nyou because your state or country may not allow the exclusion or limitation of\nincidental, consequential or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, some of the\nclauses in this agreement are provided below in French.\n\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses\ndans ce contrat sont fournies ci-dessous en fran\u00e7ais.\n\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel\n\u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft\nn'accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits\nadditionnels en vertu du droit local sur la protection des consommateurs, que ce\ncontrat ne peut modifier. La ou elles sont permises par le droit locale, les\ngaranties implicites de qualit\u00e9 marchande, d'ad\u00e9quation \u00e0 un usage particulier\net d'absence de contrefa\u00e7on sont exclues.\n\n\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES\nDOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une\nindemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous\nne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris\nles dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\n\nCette limitation concerne:\n\n. tout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le\ncode) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\n\n. les r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre\nde responsabilit\u00e9 stricte, de n\u00e9gligence ou d'une autre faute dans la limite\nautoris\u00e9e par la loi en vigueur.\n\nElle s'applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre\nl'\u00e9ventualit\u00e9 d'un tel dommage. Si votre pays n'autorise pas l'exclusion ou la\nlimitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de\nquelque nature que ce soit, il se peut que la limitation ou l'exclusion ci-\ndessus ne s'appliquera pas \u00e0 votre \u00e9gard.\n\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous\npourriez avoir d'autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent\ncontrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si\ncelles-ci ne le permettent pas.", + "json": "ms-net-library-2018-11.json", + "yaml": "ms-net-library-2018-11.yml", + "html": "ms-net-library-2018-11.html", + "license": "ms-net-library-2018-11.LICENSE" + }, + { + "license_key": "ms-net-library-2019-06", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2019-06", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT .NET LIBRARY\n\nThese license terms are an agreement between you and Microsoft Corporation (or based on where you live, one of its affiliates). They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have different terms.\n\nIf you comply with these license terms, you have the rights below.\n1. INSTALLATION AND USE RIGHTS.\n\nYou may install and use any number of copies of the software to develop and test your applications. \n2. THIRD PARTY COMPONENTS. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software.\n3. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\na. DISTRIBUTABLE CODE. The software is comprised of Distributable Code. \u201cDistributable Code\u201d is code that you are permitted to distribute in applications you develop if you comply with the terms below.\ni. Right to Use and Distribute.\n\n. You may copy and distribute the object code form of the software.\n\n. Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications.\nii. Distribution Requirements. For any Distributable Code you distribute, you must\n\n. use the Distributable Code in your applications and not as a standalone distribution;\n\n. require distributors and external end users to agree to terms that protect it at least as much as this agreement; and\n\n. indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code.\niii. Distribution Restrictions. You may not\n\n. use Microsoft\u2019s trademarks in your applications\u2019 names or in a way that suggests your applications come from or are endorsed by Microsoft; or\n\n. modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An \u201cExcluded License\u201d is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it.\n4. DATA.\na. Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the software documentation. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with Microsoft\u2019s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these practices.\nb. Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr.\n5. Scope of License. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n. work around any technical limitations in the software;\n\n. reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software;\n\n. remove, minimize, block or modify any notices of Microsoft or its suppliers in the software;\n\n. use the software in any way that is against the law; or\n\n. share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party.\n6. Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting. \n7. SUPPORT SERVICES. Because this software is \u201cas is,\u201d we may not provide support services for it.\n8. Entire Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n9. Applicable Law. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply.\n10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:\na) Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights.\nb) Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software.\nc) Germany and Austria.\n\n(i) Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software.\n\n(ii) Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law.\nSubject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called \"cardinal obligations\"). In other cases of slight negligence, Microsoft will not be liable for slight negligence\n11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED \u201cAS-IS.\u201d YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n12. Limitation on and Exclusion of Remedies and Damages. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state or country may not allow the exclusion or limitation of incidental, consequential or other damages.", + "json": "ms-net-library-2019-06.json", + "yaml": "ms-net-library-2019-06.yml", + "html": "ms-net-library-2019-06.html", + "license": "ms-net-library-2019-06.LICENSE" + }, + { + "license_key": "ms-net-library-2020-09", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2020-09", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT .NET LIBRARY (INSTALL AND USE)\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\n. updates,\n\n. supplements,\n\n. Internet-based services, and\n\n. support services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\n\nIF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW.\n\n1. INSTALLATION AND USE RIGHTS.\n\na. Installation and Use. You may install and use any number of copies of the software to design, develop and test your programs.\n\nb. Third Party Programs. The software may include third party programs that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party program are included for your information only.\n\n2. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n. work around any technical limitations in the software;\n\n. reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\n. publish the software for others to copy;\n\n. rent, lease or lend the software;\n\n. transfer the software or this agreement to any third party; or\n\n3. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n4. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n5. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n6. SUPPORT SERVICES. Because this software is \u201cas is,\u201d we may not provide support services for it.\n\n7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n8. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n9. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n10. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \u201cAS-IS.\u201d YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nFOR AUSTRALIA \u2013 YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS.\n\n11. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to\n\n. anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\n. claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.\n\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\u00e7ais.\n\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel \u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft n\u2019accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\u00e9 marchande, d\u2019ad\u00e9quation \u00e0 un usage particulier et d\u2019absence de contrefa\u00e7on sont exclues.\n\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\n\nCette limitation concerne :\n\n. tout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\n\n. les r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d\u2019une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\n\nElle s\u2019applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre l\u2019\u00e9ventualit\u00e9 d\u2019un tel dommage. Si votre pays n\u2019autorise pas l\u2019exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\u2019exclusion ci-dessus ne s\u2019appliquera pas \u00e0 votre \u00e9gard.\n\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d\u2019autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si celles-ci ne le permettent pas.", + "json": "ms-net-library-2020-09.json", + "yaml": "ms-net-library-2020-09.yml", + "html": "ms-net-library-2020-09.html", + "license": "ms-net-library-2020-09.LICENSE" + }, + { + "license_key": "ms-nt-resource-kit", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-nt-resource-kit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft NT Resource Kit License\nMICROSOFT WINDOWS NT RESOURCE KIT SUPPORT TOOLS\nEND-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE \n\nIMPORTANT-READ CAREFULLY: This Microsoft End-User License Agreement (\"EULA\") is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation for the Microsoft software identified above, which includes computer software and may include associated media, printed materials, and \"online\" or electronic documentation (\"SOFTWARE\"). The SOFTWARE also includes any updates and supplements to the original SOFTWARE provided to you by Microsoft. Any software provided along with the SOFTWARE that is associated with a separate end-user license agreement is licensed to you under the terms of that license agreement. By installing, copying, or otherwise using the SOFTWARE, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, do not install or use the SOFTWARE.\n\nSOFTWARE LICENSE: The SOFTWARE is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The SOFTWARE is licensed, not sold.\n\n1. GRANT OF LICENSE. This EULA grants you the following rights:\n\n*Installation and Use. Except as otherwise provided herein, you, as an individual may install and use copies of the SOFTWARE on an unlimited number of computers, including workstations, terminals or other electronic devices (\"Computer(s)\") provided that you are the only individual using the SOFTWARE. If you are an entity, you may designate one individual within your organization to have the right to use the SOFTWARE in the manner provided above. The SOFTWARE is in \"use\" on a Computer when it is loaded into temporary memory (i.e., RAM) or installed into permanent memory (e.g., hard disk, CD-ROM, or other storage device) of that Computer. \n\n*Client/Server Software. The SOFTWARE may contain one or more components which consist of both the following types of software: \"Server Software\" that is installed and provides services on a computer acting as a server (\"Server\"); and \"Client Software\" that allows a Computer to access or utilize the services provided by the Server Software. If the component of the SOFTWARE consists of both Server Software and Client Software which are used together, you may also install and use copies of such Client Software on Computers within your organization and which are connected to your internal network. Such Computers running this Client Software may be used by more than one individual.\n\n2. DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS. \n\n*Limitations on Reverse Engineering, Decompilation, and Disassembly. You may not reverse engineer, decompile, or disassemble the SOFTWARE, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation. \n\n*Rental. You may not rent, lease or lend the SOFTWARE. \n\n*Support Services. Microsoft may provide you with support services related to the SOFTWARE (\"Support Services\"). Use of Support Services is governed by the Microsoft polices and programs described in the user manual, in \"on line\" documentation and/or other Microsoft-provided materials. Any supplemental software code provided to you as part of the Support Services shall be considered part of the SOFTWARE and subject to the terms and conditions of this EULA. With respect to technical information you provide to Microsoft as part of the Support Services, Microsoft may use such information for its business purposes, including for product support and development. Microsoft will not utilize such technical information in a form that personally identifies you. \n\n*Termination. Without prejudice to any other rights, Microsoft may terminate this EULA if you fail to comply with the terms and conditions of this EULA. In such event, you must destroy all copies of the SOFTWARE and all of its component parts.\n\n3. COPYRIGHT. All title and intellectual property rights in and to the SOFTWARE (including but not limited to any images, photographs, animations, video, audio, music, text, and \"applets\" incorporated into the SOFTWARE), the accompanying printed materials, and any copies of the SOFTWARE are owned by Microsoft or its suppliers. All title and intellectual property rights in and to the content which may be accessed through use of the SOFTWARE is the property of the respective content owner and may be protected by applicable copyright or other intellectual property laws and treaties. This EULA grants you no rights to use such content. All rights not expressly granted are reserved by Microsoft.\n\n4. BACKUP COPY. After installation of one copy of the SOFTWARE pursuant to this EULA, you may keep the original media on which the SOFTWARE was provided by Microsoft solely for backup or archival purposes. If the original media is required to use the SOFTWARE on the Computer, you may make one copy of the SOFTWARE solely for backup or archival purposes. Except as expressly provided in this EULA, you may not otherwise make copies of the SOFTWARE or the printed materials accompanying the SOFTWARE.\n\n5. U.S. GOVERNMENT RESTRICTED RIGHTS. The SOFTWARE and documentation are provided with RESTRICTED RIGHTS. Use, duplication, or disclosure by the Government is subject to restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs (c)(1) and (2) of the Commercial Computer Software-Restricted Rights at 48 CFR 52.227-19, as applicable. Manufacturer is Microsoft Corporation/One Microsoft Way/Redmond, WA 98052-6399.\n\n6. EXPORT RESTRICTIONS. You agree that you will not export or re-export the SOFTWARE, any part thereof, or any process or service that is the direct product of the SOFTWARE (the foregoing collectively referred to as the \"Restricted Components\"), to any country, person or entity subject to U.S. export restrictions. You specifically agree not to export or re-export any of the Restricted Components (i) to any country to which the U.S. has embargoed or restricted the export of goods or services, which currently include, but are not necessarily limited to Cuba, Iran, Iraq, Libya, North Korea, Sudan and Syria, or to any national of any such country, wherever located, who intends to transmit or transport the Restricted Components back to such country; (ii) to any entity who you know or have reason to know will utilize the Restricted Components in the design, development or production of nuclear, chemical or biological weapons; or (iii) to any entity who you know or have reason to know has been prohibited from partcipating in U.S. export transactions by any federal agency of the U.S. government. You warrant and represent that neither the BXA nor any other U.S. federal agency has suspended, revoked or denied your export privileges.\n\n7. NOTE ON JAVA SUPPORT. THE SOFTWARE MAY CONTAIN SUPPORT FOR PROGRAMS WRITTEN IN JAVA. JAVA TECHNOLOGY IS NOT FAULT TOLERANT AND IS NOT DESIGNED, MANUFACTURED, OR INTENDED FOR USE OR RESALE AS ON-LINE CONTROL EQUIPMENT IN HAZARDOUS ENVIRONMENTS REQUIRING FAIL-SAFE PERFORMANCE, SUCH AS IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL, DIRECT LIFE SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH THE FAILURE OF JAVA TECHNOLOGY COULD LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE.\n\nMISCELLANEOUS\n*If you acquired this SOFTWARE in the United States, this EULA is governed by the laws of the State of Washington. *If you acquired this SOFTWARE in Canada, this EULA is governed by the laws of the Province of Ontario, Canada. In such case, each of the parties hereto irrevocably attorns to the jurisdiction of the courts of the Province of Ontario and further agrees to commence any litigation which may arise hereunder in the courts located in the Judicial District of York, Province of Ontario.\n\n*If this SOFTWARE was acquired outside the United States, then local law may apply.\n\n*Should you have any questions concerning this EULA, or if you desire to contact Microsoft for any reason, please contact the Microsoft subsidiary serving your country, or write: Microsoft Sales Information Center/One Microsoft Way/Redmond, WA 98052-6399.\n\nNO WARRANTIES. MICROSOFT EXPRESSLY DISCLAIMS ANY WARRANTY FOR THE SOFTWARE. THE SOFTWARE AND ANY RELATED DOCUMENTATION IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. THE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE REMAINS WITH YOU.\n\nLIMITATION OF LIABILITY. To the maximum extent permitted by applicable law, in no event shall Microsoft or its suppliers be liable for any special, incidental, indirect, or consequential damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or any other pecuniary loss) arising out of the use of or inability to use the SOFTWARE or the provision of or failure to provide Support Services, even if Microsoft has been advised of the possibility of such damages. In any case, Microsoft's entire liability under any provision of this EULA shall be limited to the greater of the amount actually paid by you for the SOFTWARE or US$5.00; provided however, if you have entered into a Microsoft Support Services agreement, Microsoft's entire liability regarding Support Services shall be governed by the terms of that agreement. Because some states and jurisdictions do not allow the exclusion or limitation of liability, the above limitation may not apply to you.\n\n(French text omitted)", + "json": "ms-nt-resource-kit.json", + "yaml": "ms-nt-resource-kit.yml", + "html": "ms-nt-resource-kit.html", + "license": "ms-nt-resource-kit.LICENSE" + }, + { + "license_key": "ms-nuget", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-nuget", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "NUGET: BEGIN LICENSE TEXT\nMicrosoft grants you the right to use these script files for the sole\npurpose of either: \n\n(i) interacting through your browser with the Microsoft website or\nonline service, subject to the applicable licensing or use terms;\n\nor (ii) using the files as included with a Microsoft product subject to\nthat product's license terms. Microsoft reserves all other rights to the\nfiles not expressly granted by Microsoft, whether by implication,\nestoppel or otherwise.\n\nInsofar as a script file is dual licensed under GPL, Microsoft neither\ntook the code under GPL nor distributes it thereunder but under the\nterms set out in this paragraph. All notices and licenses below are for\ninformational purposes only.\nNUGET: END LICENSE TEXT", + "json": "ms-nuget.json", + "yaml": "ms-nuget.yml", + "html": "ms-nuget.html", + "license": "ms-nuget.LICENSE" + }, + { + "license_key": "ms-nuget-package-manager", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-nuget-package-manager", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\n\nNUGET-BASED MICROSOFT PACKAGE MANAGER\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\n\u00b7 updates,\n\n\u00b7 supplements,\n\n\u00b7 Internet-based services, and\n\n\u00b7 support services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBy using the software, you accept these terms. If you do not accept them, do not use the software.\n\nAs described below, using some features also operates as your consent to the transmission of certain computer information for Internet-based services.\n\nIf you comply with these license terms, you have the perpetual rights below.\n\n1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices.\n\n2. INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software. It may change or cancel them at any time.\n\na. Consent for Internet-Based Services. The software features described below connect to external computer systems over the Internet. These features may collect and send information about your computer and/or your project, such as your Internet Protocol address and requested packages (\"Computer Information\").\n\n\u00b7 Package Search and Enumeration. This software feature will access a list of packages that are available for download and installation from a package source. If you have specified a package source that resides on an external computer, using this feature will connect and transmit Computer Information to the external computer system over the Internet. By default, a URL under the nuget.org domain is specified as a package source. For more information about this feature, see http://docs.nuget.org/docs/start-here/managing-nuget-packages-using-the-dialog. You may specify only package sources that reside on internal networks or you may refrain from using this feature. By using this feature to access packages hosted on an external source, you consent to the transmission of Computer Information.\n\n\u00b7 Package Download. This software feature will download any packages that you have selected for installation and will place them into a project folder on your computer. If a package that you have selected for installation depends on additional packages that are not already contained in your project folder, the software will automatically download those additional packages from their respective package sources, some of which may reside on external computer systems. You may specify only package sources that reside on internal networks or you may refrain from using this feature. By using this feature to download packages hosted on an external source, you consent to the transmission of Computer Information.\n\n\u00b7 Package Restore. This software feature will allow you to add package references to your project. If you attempt to build a project that includes package references, the software will automatically download and install any missing packages from your configured package sources, some of which may reside on external computer systems. For more information about this feature, see http://docs.nuget.org/docs/reference/package-restore. To prevent the software from automatically downloading missing packages during build time, open the Tools > Options dialog from within Visual Studio, select \"Package Manager\" from the options, and uncheck the \"Allow NuGet to download missing packages\" checkbox. By leaving this checkbox checked, you consent to the transmission of Computer Information.\n\n\u00b7 Use of Information by Microsoft. We will treat any Computer Information that we receive from the software in accordance with our Privacy Statement set forth at http://www.microsoft.com/web/webpi/eula/package-manager-for-net-privacy.htm or another web page that we may specify from time to time. \n\n\u00b7 Use of Information by Third Parties. Computer Information may be sent to third-party external computer systems, as described above. Any information you provide to a third party through your use of the software is governed by their privacy statements and policies. We do not control, and we disclaim any responsibility for, how third-party service providers may use Computer Information.\n\nb. Misuse of Internet-based Services. You may not use these Internet-based Services in any way that could harm them or impair anyone else\u2019s use of them. You may not use these Internet-based Services to try to gain unauthorized access to any service, data, account or network by any means.\n\n3. THIRD-PARTY SOFTWARE. Packages that are downloaded from external package sources are offered and distributed in some cases by third parties and in some cases by Microsoft, but each such package is under its own license terms. Microsoft is not developing, distributing or licensing any third-party packages to you, but instead, as a convenience, enables you to use the software to access or obtain those packages directly from the third-party package providers. By using any of the above features, you acknowledge and agree that: \n\n\u00b7 you are obtaining any third-party packages from such third parties and under separate license terms applicable to each package (including any terms applicable to software dependencies that may be included in the packages);\n\n\u00b7 it is your responsibility to locate, understand and comply with all applicable license terms for each such package; and\n\n\u00b7 this includes your responsibility to follow the package source (feed) URL and to review the packages for embedded notices or license terms. \n\nMicrosoft makes no representations, warranties or guarantees as to any package source, including any information or content contained therein, any package source URL, or any packages referenced in or accessed by you through such URLs or package sources. Microsoft grants you no license rights for any third-party software applications or packages that are obtained using the software. \n\n4. THIRD PARTY NOTICES. The software (not including any packages that you obtain using the software) includes third-party code. However, all such code is licensed to you by Microsoft under this license agreement, rather than licensed to you by any third party under some other license terms. Notices, if any, for the third-party code are included with this software for your information only.\n\n5. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n\u00b7 work around any technical limitations in the software;\n\n\u00b7 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\n\u00b7 publish the software for others to copy;\n\n\u00b7 rent, lease or lend the software; or\n\n\u00b7 transfer the software or this agreement to any third party.\n\n6. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n7. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n8. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n9. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n10. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n11. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n12. DISCLAIMER OF WARRANTY. The software is licensed \"as-is.\" You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights or statutory guarantees under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n\nFOR AUSTRALIA \u2013 You have statutory guarantees under the Australian Consumer Law and nothing in these terms is intended to affect those rights.\n\n13. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\n\nThis limitation applies to\n\n\u00b7 anything related to the software, services, content (including code) on third-party Internet sites, or third-party programs; and\n\n\u00b7 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.", + "json": "ms-nuget-package-manager.json", + "yaml": "ms-nuget-package-manager.yml", + "html": "ms-nuget-package-manager.html", + "license": "ms-nuget-package-manager.LICENSE" + }, + { + "license_key": "ms-office-extensible-file", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-office-extensible-file", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This license governs use of the accompanying software. If you use the software, you\n accept this license. If you do not accept the license, do not use the software.\n \n1. Definitions\n The terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and \"distribution\" have the\n same meaning here as under U.S. copyright law.\n A \"contribution\" is the original software, or any additions or changes to the software.\n A \"contributor\" is any person that distributes its contribution under this license.\n \"Licensed patents\" are a contributor's patent claims that read directly on its contribution.\n \"Excluded Products\u201d are software products or components, or web-based or hosted services, that primarily perform the same general functions as any of the following software applications: Microsoft Office, Word, Excel, PowerPoint, Outlook, OneNote, Publisher, SharePoint, or Access. \n \n2. Grant of Rights\n (A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create.\n (B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software.\n \n3. Conditions and Limitations\n (A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks.\n (B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically.\n (C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software.\n (D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license.\n (E) The software is licensed \"as-is.\" You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n (F) Platform Limitation- The licenses granted in sections 2(A) & 2(B) extend only to the software or derivative works that (1) are run on a Microsoft Windows operating system product, and (2) are not Excluded Products.", + "json": "ms-office-extensible-file.json", + "yaml": "ms-office-extensible-file.yml", + "html": "ms-office-extensible-file.html", + "license": "ms-office-extensible-file.LICENSE" + }, + { + "license_key": "ms-office-system-programs-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-office-system-programs-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SUPPLEMENTAL END USER LICENSE AGREEMENT FOR \nMICROSOFT OFFICE SYSTEM PROGRAMS SOFTWARE\n\nPLEASE READ THIS SUPPLEMENTAL END-USER LICENSE AGREEMENT (\"SUPPLEMENTAL EULA\") CAREFULLY. BY INSTALLING OR USING THE SOFTWARE THAT ACCOMPANIES THIS SUPPLEMENTAL EULA, YOU AGREE TO THE TERMS OF THIS SUPPLEMENTAL EULA. IF YOU DO NOT AGREE, DO NOT INSTALL OR USE THE SOFTWARE.\n\n1.\tGeneral\n\n\tThe accompanying Microsoft software includes computer software and may include associated media, printed materials, online or electronic documentation, and Internet-based services (collectively, the \"Components\"). The Components are provided to update, supplement, or replace existing functionality of the Microsoft Software named above which you previously licensed (the \"Software\"). Your use of the Components is subject to the terms and conditions of this Supplemental EULA and, as set forth below, the end user license agreement (either from Microsoft or some other entity) under which you have previously licensed the Software (the \"Software EULA\"). \n\nIF YOU DO NOT HAVE A VALIDLY LICENSED COPY OF THE SOFTWARE, YOU ARE NOT AUTHORIZED TO INSTALL, COPY OR OTHERWISE USE THE COMPONENTS AND YOU HAVE NO RIGHTS UNDER THIS SUPPLEMENTAL EULA.\n\n2.\tGeneral Terms and Conditions of Your Use of the Components\n\n 2.1\tMicrosoft grants you a license to the Components equivalent to, and subject to the same conditions, limitations and restrictions as, the license that the Software EULA grants you with respect to the Software, except as set forth below. \n \n 2.2\tYou may reproduce, install and use one copy of the Components on each computer running a validly licensed copy of the Software. \n \n 2.3\tThe Components are protected by copyright and other intellectual property laws and treaties. Microsoft Corporation or its suppliers own the title, copyright, and other intellectual property rights in the Components. All rights not expressly granted to you in this Supplemental EULA are reserved. The Components are licensed, not sold. \n \n 2.4\tMicrosoft also grants you the right to reproduce and distribute the .MSI file created on your computer upon installation of the Component (the \"Redistributable File\") in object code form only, provided that you comply with the following distribution requirements: (a) you distribute the Redistributable File only in conjunction with, and as a part of, your software program (\"Program\"); (b) your Program adds significant and primary functionality to the Redistributable File; (c) you do not permit further redistribution of the Redistributable File by your end-user customers; (d) you do not use Microsoft's name, logo, or trademarks to market your Program; (e) you include a valid copyright notice on your Program; and (f) you agree to indemnify, hold harmless, and defend Microsoft from and against any claims or lawsuits, including attorneys' fees, that arise or result from the use or distribution of your Program..\n \n 2.5\tCapitalized terms used in this Supplemental EULA and not otherwise defined herein shall have the meanings assigned to them in the Software EULA.\n\n3.\tAdditional Rights and Limitations\n\nIf the Software was licensed to you by Microsoft or any of its wholly owned subsidiaries, the limited warranty (if any) included in the Software EULA applies to the Components provided that the Components have been licensed to you within the term of that limited warranty. However, this Supplemental EULA does not extend the time period for which that limited warranty is provided. \n\nIF THE SOFTWARE WAS LICENSED TO YOU BY AN ENTITY OTHER THAN MICROSOFT OR ANY OF ITS WHOLLY OWNED SUBSIDIARIES, THEN THE FOLLOWING THREE PARAGRAPHS ALSO APPLY:\n\nDISCLAIMER OF WARRANTIES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, MICROSOFT AND ITS SUPPLIERS PROVIDE TO YOU THE COMPONENTS AND SUPPORT SERVICES (IF ANY) AS IS AND WITH ALL FAULTS; AND MICROSOFT AND ITS SUPPLIERS HEREBY DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES, DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF RELIABILITY OR AVAILABILITY, OF ACCURACY OR COMPLETENESS OF RESPONSES, OF RESULTS, OF WORKMANLIKE EFFORT, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE, ALL WITH REGARD TO THE COMPONENTS, AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT OR OTHER SERVICES, INFORMATION, SOFTWARE, AND RELATED CONTENT THROUGH THE COMPONENTS OR OTHERWISE ARISING OUT OF THE USE OF THE COMPONENTS. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT WITH REGARD TO THE COMPONENTS. \n\nEXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER DAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL MICROSOFT OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, PUNITIVE, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS OR CONFIDENTIAL OR OTHER INFORMATION, FOR BUSINESS INTERRUPTION, FOR PERSONAL INJURY, FOR LOSS OF PRIVACY, FOR FAILURE TO MEET ANY DUTY INCLUDING OF GOOD FAITH OR OF REASONABLE CARE, NEGLIGENCE, AND ANY OTHER PECUNIARY OR OTHER LOSS WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF OR INABILITY TO USE THE COMPONENTS, THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT OR OTHER SERVICES, INFORMATION, SOFTWARE, AND RELATED CONTENT THROUGH THE COMPONENTS OR OTHERWISE ARISING OUT OF THE USE OF THE COMPONENTS, OR OTHERWISE UNDER OR IN CONNECTION WITH ANY PROVISION OF THIS SUPPLEMENTAL EULA, EVEN IN THE EVENT OF THE FAULT, TORT (INCLUDING NEGLIGENCE), MISREPRESENTATION, STRICT OR PRODUCT LIABILITY, BREACH OF CONTRACT OR BREACH OF WARRANTY OF MICROSOFT OR ANY SUPPLIER, AND EVEN IF MICROSOFT OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \n\nLIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING ANY DAMAGES THAT YOU MIGHT INCUR FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT LIMITATION, ALL DAMAGES REFERENCED ABOVE AND ALL DIRECT OR GENERAL DAMAGES IN CONTRACT OR ANYTHING ELSE), THE ENTIRE LIABILITY OF MICROSOFT AND ANY OF ITS SUPPLIERS UNDER ANY PROVISION OF THIS SUPPLEMENTAL EULA AND YOUR EXCLUSIVE REMEDY FOR ALL OF THE FOREGOING SHALL BE LIMITED TO THE GREATER OF THE ACTUAL DAMAGES YOU INCUR IN REASONABLE RELIANCE ON THE COMPONENTS UP TO THE AMOUNT ACTUALLY PAID BY YOU FOR THE COMPONENTS OR U.S.$5.00. THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, EVEN IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE.\n\nSi vous avez acquis votre produit Microsoft au CANADA, le texte suivant vous concerne :\n\nD\u00c9NI DE GARANTIES. DANS LA MESURE MAXIMALE PERMISE PAR LES LOIS APPLICABLES, LES COMPOSANTS OS ET LES SERVICES DE SOUTIEN TECHNIQUE (LE CAS \u00c9CH\u00c9ANT) SONT FOURNIS TELS QUELS ET AVEC TOUS LES D\u00c9FAUTS PAR MICROSOFT ET SES FOURNISSEURS, LESQUELS PAR LES PR\u00c9SENTES D\u00c9NIENT TOUTES AUTRES GARANTIES ET CONDITIONS EXPRESSES, IMPLICITES OU EN VERTU DE LA LOI, NOTAMMENT, MAIS SANS LIMITATION, (LE CAS \u00c9CH\u00c9ANT) LES GARANTIES, DEVOIRS OU CONDITIONS IMPLICITES DE QUALIT\u00c9 MARCHANDE, D\u2019ADAPTATION \u00c0 UNE FIN PARTICULI\u00c8RE, DE FIABILIT\u00c9 OU DE DISPONIBILIT\u00c9, D\u2019EXACTITUDE OU D\u2019EXHAUSTIVIT\u00c9 DES R\u00c9PONSES, DES R\u00c9SULTATS, DES EFFORTS D\u00c9PLOY\u00c9S SELON LES R\u00c8GLES DE L\u2019ART, D\u2019ABSENCE DE VIRUS ET D\u2019ABSENCE DE N\u00c9GLIGENCE, LE TOUT \u00c0 L\u2019\u00c9GARD DU LOGICIEL ET DE LA PRESTATION OU DE L\u2019OMISSION DE LA PRESTATION DES SERVICES DE SOUTIEN TECHNIQUE OU \u00c0 L\u2019\u00c9GARD DE LA FOURNITURE OU DE L\u2019OMISSION DE LA FOURNITURE DE TOUS AUTRES SERVICES, RENSEIGNEMENTS, LOGICIELS, ET CONTENU QUI S\u2019Y RAPPORTE GR\u00c2CE AU LOGICIEL OU PROVENANT AUTREMENT DE L\u2019UTILISATION DU LOGICIEL . PAR AILLEURS, IL N\u2019Y A AUCUNE GARANTIE OU CONDITION QUANT AU TITRE DE PROPRI\u00c9T\u00c9, \u00c0 LA JOUISSANCE OU LA POSSESSION PAISIBLE, \u00c0 LA CONCORDANCE \u00c0 UNE DESCRIPTION NI QUANT \u00c0 UNE ABSENCE DE CONTREFA\u00c7ON CONCERNANT LES COMPOSANTS OS.\n\nEXCLUSION DE RESPONSABILIT\u00c9 POUR LES DOMMAGES ACCESSOIRES, INDIRECTS ET CERTAINS AUTRES TYPES DE DOMMAGES. DANS TOUTE LA MESURE PERMISE PAR LE DROIT APPLICABLE, MICROSOFT OU SES FOURNISSEURS NE POURRONT EN AUCUN CAS \u00caTRE TENUS RESPONSABLES DE TOUT DOMMAGE SP\u00c9CIAL, ACCESSOIRE, INCIDENT OU INDIRECT DE QUELQUE NATURE QUE CE SOIT (Y COMPRIS, MAIS NON DE FACON LIMITATIVE, LES PERTES DE B\u00c9N\u00c9FICES, PERTES D'INFORMATIONS CONFIDENTIELLES OU AUTRES INFORMATIONS, INTERRUPTIONS D'ACTIVIT\u00c9, PR\u00c9JUDICES CORPORELS, ATTEINTES \u00c0 LA VIE PRIV\u00c9E, MANQUEMENT \u00c0 TOUTE OBLIGATION (NOTAMMENT L'OBLIGATION DE BONNE FOI ET DE DILIGENCE), N\u00c9GLIGENCE, ET POUR TOUTE PERTE P\u00c9CUNIAIRE OU AUTRE DE QUELQUE NATURE QUE CE SOIT), R\u00c9SULTANT DE, OU RELATIFS A, L'UTILISATION OU L'IMPOSSIBILIT\u00c9 D'UTILISER LES COMPOSANTS OS OU LES SERVICES D'ASSISTANCE, OU LA FOURNITURE OU LE D\u00c9FAUT DE FOURNITURE DES SERVICES D'ASSISTANCE, OU AUTREMENT EN VERTU DE, OU RELATIVEMENT A, TOUTE DISPOSITION DE CE CLUF SUPPL\u00c9MENTAIRE, M\u00caME SI LA SOCI\u00c9T\u00c9 MICROSOFT OU UN QUELCONQUE FOURNISSEUR A \u00c9T\u00c9 PR\u00c9VENU DE L'\u00c9VENTUALIT\u00c9 DE TELS DOMMAGES.\n\nLIMITATION DE RESPONSABILIT\u00c9 ET RECOURS. NONOBSTANT TOUT DOMMAGE QUE VOUS POURRIEZ SUBIR POUR QUELQUE MOTIF QUE CE SOIT (NOTAMMENT TOUS LES DOMMAGES \u00c9NUM\u00c9R\u00c9S CI-DESSUS ET TOUS LES DOMMAGES DIRECTS OU G\u00c9N\u00c9RAUX), L'ENTI\u00c8RE RESPONSABILIT\u00c9 DE MICROSOFT ET DE L'UN QUELCONQUE DE SES FOURNISSEURS AU TITRE DE TOUTE STIPULATION DE CE CLUF SUPPL\u00c9MENTAIRE ET VOTRE SEUL RECOURS EN CE QUI CONCERNE TOUS LES DOMMAGES PR\u00c9CIT\u00c9S NE SAURAIENT EXC\u00c9DER LE MONTANT QUE VOUS AVEZ EFFECTIVEMENT PAY\u00c9 POUR LES COMPOSANTS OS OU 5 DOLLARS US (US$ 5,00), SELON LE PLUS \u00c9LEV\u00c9 DES DEUX MONTANTS. LES PR\u00c9SENTES LIMITATIONS ET EXCLUSIONS DEMEURERONT APPLICABLES DANS TOUTE LA MESURE PERMISE PAR LE DROIT APPLICABLE QUAND BIEN M\u00caME UN QUELCONQUE REM\u00c8DE \u00c0 UN QUELCONQUE MANQUEMENT NE PRODUIRAIT PAS D'EFFET.\n\n\u00c0 moins que cela ne soit prohib\u00e9 par le droit local applicable, la pr\u00e9sente Convention est r\u00e9gie par les lois de la province d\u2019Ontario, Canada. Vous consentez \u00e0 la comp\u00e9tence des tribunaux f\u00e9d\u00e9raux et provinciaux si\u00e9geant \u00e0 Toronto, dans la province d\u2019Ontario.\n\nAu cas o\u00f9 vous auriez des questions concernant cette licence ou que vous d\u00e9siriez vous mettre en rapport avec Microsoft pour quelque raison que ce soit, veuillez utiliser l\u2019information contenue dans le Logiciel pour contacter la filiale de Microsoft desservant votre pays, ou visitez Microsoft sur le World Wide Web \u00e0 http://www.microsoft.com.\n\nPIA EULA", + "json": "ms-office-system-programs-eula.json", + "yaml": "ms-office-system-programs-eula.yml", + "html": "ms-office-system-programs-eula.html", + "license": "ms-office-system-programs-eula.LICENSE" + }, + { + "license_key": "ms-patent-promise", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-ms-patent-promise", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft Patent Promise for .NET Libraries and Runtime Components \n\nMicrosoft Corporation and its affiliates (\"Microsoft\") promise not to assert \nany .NET Patents against you for making, using, selling, offering for sale, \nimporting, or distributing Covered Code, as part of either a .NET Runtime or \nas part of any application designed to run on a .NET Runtime. \n\nIf you file, maintain, or voluntarily participate in any claim in a lawsuit \nalleging direct or contributory patent infringement by any Covered Code, or \ninducement of patent infringement by any Covered Code, then your rights under \nthis promise will automatically terminate. \n\nThis promise is not an assurance that (i) any .NET Patents are valid or \nenforceable, or (ii) Covered Code does not infringe patents or other \nintellectual property rights of any third party. No rights except those \nexpressly stated in this promise are granted, waived, or received by \nMicrosoft, whether by implication, exhaustion, estoppel, or otherwise. \nThis is a personal promise directly from Microsoft to you, and you agree as a \ncondition of benefiting from it that no Microsoft rights are received from \nsuppliers, distributors, or otherwise from any other person in connection with \nthis promise. \n\nDefinitions: \n\n\"Covered Code\" means those Microsoft .NET libraries and runtime components as \nmade available by Microsoft at https://github.com/dotnet/coreclr, \nhttps://github.com/dotnet/corefx and https://github.com/dotnet/corert.\n\n\".NET Patents\" are those patent claims, both currently owned by Microsoft and \nacquired in the future, that are necessarily infringed by Covered Code. .NET \nPatents do not include any patent claims that are infringed by any Enabling \nTechnology, that are infringed only as a consequence of modification of \nCovered Code, or that are infringed only by the combination of Covered Code \nwith third party code. \n\n\".NET Runtime\" means any compliant implementation in software of (a) all of \nthe required parts of the mandatory provisions of Standard ECMA-335 \u2013 Common \nLanguage Infrastructure (CLI); and (b) if implemented, any additional \nfunctionality in Microsoft's .NET Framework, as described in Microsoft's API \ndocumentation on its MSDN website. For example, .NET Runtimes include \nMicrosoft's .NET Framework and those portions of the Mono Project compliant \nwith (a) and (b). \n\n\"Enabling Technology\" means underlying or enabling technology that may be \nused, combined, or distributed in connection with Microsoft's .NET Framework \nor other .NET Runtimes, such as hardware, operating systems, and applications \nthat run on .NET Framework or other .NET Runtimes.", + "json": "ms-patent-promise.json", + "yaml": "ms-patent-promise.yml", + "html": "ms-patent-promise.html", + "license": "ms-patent-promise.LICENSE" + }, + { + "license_key": "ms-patent-promise-mono", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-ms-patent-promise-mono", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft Patent Promise for Mono\n\nMicrosoft Corporation and its affiliates (\u201cMicrosoft\u201d) promise not to\nassert any Applicable Patents against you for making, using, selling,\noffering for sale, importing, or distributing Mono.\n\nIf you file, maintain, or voluntarily participate in any claim in a\nlawsuit alleging direct or contributory patent infringement by Mono,\nor inducement of patent infringement by Mono, then your rights under\nthis promise will automatically terminate.\n\nThis promise is not an assurance that (i) any Applicable Patents are\nvalid or enforceable or (ii) Mono does not infringe patents or other\nintellectual property rights of any third party. No rights except\nthose expressly stated in this promise are granted, waived or received\nby Microsoft, whether by implication, exhaustion, estoppel or\notherwise. This is a personal promise directly from Microsoft to you,\nand you agree as a condition of benefitting from it that no Microsoft\nrights are received from suppliers, distributors, or otherwise in\nconnection with this promise.\n\nDefinitions:\n\n\u201cMono\u201d means those portions of the software development technology, as\noriginally distributed by Xamarin, Inc. or the .NET Foundation under\nthe name \u201cMono,\u201d that implement .NET Framework Functionality, provided\nthat such portions at a minimum implement all of the required parts of\nthe mandatory provisions of Standard ECMA-335 \u2013 Common Language\nInfrastructure (CLI).\n\n\u201c.NET Framework Functionality\u201d means any functionality in Microsoft\u2019s\n.NET Framework as described in Microsoft\u2019s API documentation on\nMicrosoft\u2019s MSDN website, including the functionality in\nWindowsbase.dll, but excluding all other functionality in the Windows\nPresentation Foundation component of .NET Framework.\n\n\u201cApplicable Patents\u201d are those patent claims, currently owned by\nMicrosoft and acquired in the future, that are necessarily infringed\nby Mono. For clarity, Applicable Patents do not include any patent\nclaims that are infringed (x) by any underlying or enabling technology\nthat may be used, combined, or distributed in connection with Mono\n(such as hardware, operating systems, or applications that run on\nMono), (y) only as a consequence of modification of Mono, or (z) only\nby the combination of Mono with third party code.", + "json": "ms-patent-promise-mono.json", + "yaml": "ms-patent-promise-mono.yml", + "html": "ms-patent-promise-mono.html", + "license": "ms-patent-promise-mono.LICENSE" + }, + { + "license_key": "ms-permissive-1.1", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Microsoft Permissive License (Ms-PL) v1.1\n\nMicrosoft Permissive License (Ms-PL)\n\nThis license governs use of the accompanying software. If you use the software,\nyou accept this license. If you do not accept the license, do not use the\nsoftware.\n\n1. Definitions\n\nThe terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and \"distribution\"\nhave the same meaning here as under U.S. copyright law.\n\nA \"contribution\" is the original software, or any additions or changes to the\nsoftware.\n\nA \"contributor\" is any person that distributes its contribution under this\nlicense.\n\n\"Licensed patents\" are a contributor's patent claims that read directly on its\ncontribution.\n\n2. Grant of Rights\n\n(A) Copyright Grant- Subject to the terms of this license, including the license\nconditions and limitations in section 3, each contributor grants you a non-\nexclusive, worldwide, royalty-free copyright license to reproduce its\ncontribution, prepare derivative works of its contribution, and distribute its\ncontribution or any derivative works that you create.\n\n(B) Patent Grant- Subject to the terms of this license, including the license\nconditions and limitations in section 3, each contributor grants you a non-\nexclusive, worldwide, royalty-free license under its licensed patents to make,\nhave made, use, sell, offer for sale, import, and/or otherwise dispose of its\ncontribution in the software or derivative works of the contribution in the\nsoftware.\n\n3. Conditions and Limitations\n\n(A) No Trademark License- This license does not grant you rights to use any\ncontributors' name, logo, or trademarks.\n\n(B) If you bring a patent claim against any contributor over patents that you\nclaim are infringed by the software, your patent license from such contributor\nto the software ends automatically.\n\n(C) If you distribute any portion of the software, you must retain all\ncopyright, patent, trademark, and attribution notices that are present in the\nsoftware.\n\n(D) If you distribute any portion of the software in source code form, you may\ndo so only under this license by including a complete copy of this license with\nyour distribution. If you distribute any portion of the software in compiled or\nobject code form, you may only do so under a license that complies with this\nlicense.\n\n(E) The software is licensed \"as-is.\" You bear the risk of using it. The\ncontributors give no express warranties, guarantees or conditions. You may have\nadditional consumer rights under your local laws which this license cannot\nchange. To the extent permitted under your local laws, the contributors exclude\nthe implied warranties of merchantability, fitness for a particular purpose and\nnon-infringement.", + "json": "ms-permissive-1.1.json", + "yaml": "ms-permissive-1.1.yml", + "html": "ms-permissive-1.1.html", + "license": "ms-permissive-1.1.LICENSE" + }, + { + "license_key": "ms-pl", + "category": "Permissive", + "spdx_license_key": "MS-PL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft Public License (Ms-PL)\n\nThis license governs use of the accompanying software. If you use the software,\nyou accept this license. If you do not accept the license, do not use the\nsoftware.\n\n1. Definitions\n\nThe terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and \"distribution\"\nhave the same meaning here as under U.S. copyright law.\n\nA \"contribution\" is the original software, or any additions or changes to the\nsoftware.\n\nA \"contributor\" is any person that distributes its contribution under this\nlicense.\n\n\"Licensed patents\" are a contributor's patent claims that read directly on its\ncontribution.\n\n2. Grant of Rights\n\n(A) Copyright Grant- Subject to the terms of this license, including the license\nconditions and limitations in section 3, each contributor grants you a non-\nexclusive, worldwide, royalty-free copyright license to reproduce its\ncontribution, prepare derivative works of its contribution, and distribute its\ncontribution or any derivative works that you create.\n\n(B) Patent Grant- Subject to the terms of this license, including the license\nconditions and limitations in section 3, each contributor grants you a non-\nexclusive, worldwide, royalty-free license under its licensed patents to make,\nhave made, use, sell, offer for sale, import, and/or otherwise dispose of its\ncontribution in the software or derivative works of the contribution in the\nsoftware.\n\n3. Conditions and Limitations\n\n(A) No Trademark License- This license does not grant you rights to use any\ncontributors' name, logo, or trademarks.\n\n(B) If you bring a patent claim against any contributor over patents that you\nclaim are infringed by the software, your patent license from such contributor\nto the software ends automatically.\n\n(C) If you distribute any portion of the software, you must retain all\ncopyright, patent, trademark, and attribution notices that are present in the\nsoftware.\n\n(D) If you distribute any portion of the software in source code form, you may\ndo so only under this license by including a complete copy of this license with\nyour distribution. If you distribute any portion of the software in compiled or\nobject code form, you may only do so under a license that complies with this\nlicense.\n\n(E) The software is licensed \"as-is.\" You bear the risk of using it. The\ncontributors give no express warranties, guarantees, or conditions. You may have\nadditional consumer rights under your local laws which this license cannot\nchange. To the extent permitted under your local laws, the contributors exclude\nthe implied warranties of merchantability, fitness for a particular purpose and\nnon-infringement.", + "json": "ms-pl.json", + "yaml": "ms-pl.yml", + "html": "ms-pl.html", + "license": "ms-pl.LICENSE" + }, + { + "license_key": "ms-platform-sdk", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-platform-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft Platform SDK License\nEND-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE\nMICROSOFT PLATFORM SOFTWARE DEVELOPMENT KIT\n\nIMPORTANT\u2014READ CAREFULLY: This End-User License Agreement (\"EULA\") is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation for the Microsoft software that accompanies this EULA, which includes computer software and may include associated media, printed materials, \"online\" or electronic documentation, and Internet-based services (\"Software\"). An amendment or addendum to this EULA may accompany the Software. YOU AGREE TO BE BOUND BY THE TERMS OF THIS EULA BY INSTALLING, COPYING, OR OTHERWISE USING THE SOFTWARE. IF YOU DO NOT AGREE, DO NOT INSTALL, COPY, OR USE THE SOFTWARE; YOU MAY RETURN IT TO YOUR PLACE OF PURCHASE FOR A FULL REFUND, IF APPLICABLE.\n\n1.\tGRANT OF LICENSE. Microsoft grants you the rights described in this EULA provided that you comply with all terms and conditions of this EULA.\n\n1.1\tGeneral License Grant. Microsoft grants you a limited, nonexclusive license to use the Software, and to make and use copies of the Software, for the purposes of designing, developing and testing your software applications for use with any version or edition of a Microsoft Windows operating system for personal computers or servers (\"Microsoft Operating System Product\").\n\n1.2\tSharepoint Portal Server SDK. The Software contains the SharePoint Portal Server Software Development Kit (\"SPSSDK\"). In addition to the license granted in Section 1.1, Microsoft grants you a limited, nonexclusive license to modify the sample source code located in the SPSSDK solely to design, develop, and test your application internally within your organization. Your entire license under this EULA with respect to the SPSSDK is conditioned on your not using the SPSSDK to create software that is incompatible with file formats indexed by Microsoft SharePoint Portal Server 2001.\n\n2.\tADDITIONAL LICENSE RIGHTS\u2014REDISTRIBUTABLE COMPONENTS\n\n2.1\tSource Code. \"Source Code\" means source code that is located in any directory or sub-directory named \"samples\" in the Software or that is otherwise identified as sample code in the Software, other than source code included in the SPSSDK, or is identified as Microsoft Foundation Class Libraries (\"MFC\"), Template Libraries (\"ATL\"), and C runtimes (CRTs). Microsoft grants you a limited, nonexclusive license (a) to use and modify any Source Code to design, develop, and test your software applications; and (b) to make and distribute copies of the Source Code and your modifications, subject to your compliance with Section 3.\n\n2.2\tRedistributable Code. All portions of the Software that are listed in the text file \\License\\Redist.txt collectively constitute \"Redistributable Code.\" Microsoft grants you a limited, nonexclusive license to reproduce and distribute Redistributable Code in object code form only, subject to your compliance with Section 3.\n\n3.\tDISTRIBUTION REQUIREMENTS AND LICENSE LIMITATIONS\n\n3.1\tYour licenses under Section 2 to distribute Source Code, any modifications you make to the Source Code under Section 2.1, and Redistributable Code (collectively, \"Redistributables\") are conditioned on the following: (a) you will distribute Redistributables only in object code form and in conjunction with and as a part of a software application developed by you that adds significant and primary functionality to the Redistributables (\"Application\"); \n(b) the Redistributables will operate only in conjunction with a Microsoft Operating System Product; \n(c) your Application will invoke the Software only via interfaces described in the documentation accompanying the Software; \n(d) you will distribute your Application containing the Redistributables only pursuant to an end-user license agreement (which may be break-the-seal, click- wrap or signed) with terms no less protective than those contained in this EULA; \n(e) you will not use Microsoft\u2019s name, logo, or trademarks to market your Application; \n(f) you will include a valid copyright notice on your Application sufficient to protect Microsoft\u2019s copyright in the Software; \n(g) you will not remove or obscure any copyright, trademark or patent notices that appear on or in the Software as delivered to you; \n(h) you will indemnify, hold harmless, and defend Microsoft from and against any claims or lawsuits, including attorneys\u2019 and experts\u2019 fees, that arise or result from the use or distribution of your Application; and \n(i) you will otherwise comply with the terms of this EULA. You may not permit further distribution of Redistributables by your end users except that you may permit further redistribution of Redistributables by your distributors to end users if your distributors only distribute the Redistributables in conjunction with and as part of your Application or Applications, you comply with all other terms of this EULA, and your distributors comply with all restrictions of this EULA that are applicable to you.\n\n3.2\tRenaming MFC, ATL or CRTs. You must rename all files containing MFC, ATL or CRTs prior to distributing them or any modifications to them.\n\n3.3\tLinking .lib Files. For any Redistributable Code having a filename extension of .lib, you may distribute only the results of running such Redistributable Code through a linker with your application.\n\n3.4\tNotice for Windows Media Technologies. In each Application in which you include any Redistributables from the Windows Media Player SDK, Windows Media Services SDK, Windows Media Encoder SDK, or Windows Media Software Development Kit (including but not limited to, the Windows Media Format SDK) portions of the Software, you must include in your Application\u2019s Help-About box (or if there is no such box, then in another location that end users will easily discover), a copyright notice stating the following: \"Portions utilize Microsoft Windows Media Technologies. Copyright (c) 1999-2002 Microsoft Corporation. All Rights Reserved.\"\n\n3.5\tNo Alteration to Setup Programs. If any Redistributables in the Software as delivered to you are contained in a separate setup program, then you may only\ndistribute those Redistributables as part of that setup program, without alteration to that setup program or removal of any of its components.\n\n3.6\tPrerelease Code. The Software may contain prerelease code that might not operate correctly, is not at the level of performance and compatibility of the final, generally available product offering, and might be substantially modified prior to shipment of that offering. Microsoft is not obligated to make this or any later version of the Software commercially available. Your license under Section 2 to distribute any Redistributables identified in the documentation as prerelease, alpha, beta or release candidate code or under a similar designation indicating code that is not intended for commercial distribution (collectively, \"Prerelease Code\") is conditioned upon your marking the version of your Application containing the Prerelease Code as \"BETA,\" \"PRE-RELEASE\" or other reasonable designation of similar import. Your license under this Section 3.3 terminates upon Microsoft\u2019s publicly announced commencement of the commercial availability of the Microsoft Operating System Product for which your Application is developed.\n\n3.7\tIdentified Software. If you use the Redistributables, then in addition to your compliance with the applicable distribution requirements described for the Redistributables, the following also applies. Your license rights to Redistributables are conditioned on your (a) not incorporating Identified Software into or combining Identified Software with the Redistributables; (b) not distributing Identified Software in conjunction with the Redistributables; and (c) not using Identified Software in the development of a derivative work of Source Code. \"Identified Software\" means software that is licensed pursuant to terms that directly or indirectly create, or purport to create, obligations for Microsoft with respect to the Redistributables or grant, or purport to grant, to any third party any rights or immunities under Microsoft\u2019s intellectual property or proprietary rights in the Redistributables. Identified Software includes, without limitation, any software that requires as a condition of its use, modification and/or distribution that any other software incorporated into, derived from or distributed with such software must also be disclosed or distributed in source code form, licensed for the purpose of making derivative works, or redistributable at no charge.\n\n4.\tCOMPONENT EULAS. As a kit of development tools and other Microsoft software programs (each such tool or software program, a \"Component\"), the Software may contain one or more Components for which a separate end-user license agreement (a \"Component EULA\") may appear upon installation of the applicable Component. In the event of inconsistencies between this EULA and any Component EULA, the terms of the Component EULA will control as to the applicable Component.\n\n5.\tRESERVATION OF RIGHTS AND OWNERSHIP. The Software is licensed, not sold. Microsoft reserves all rights not expressly granted to you in this EULA. The Software is protected by copyright and other intellectual property laws and treaties. Microsoft or its suppliers own the title, copyright, and other intellectual property rights in the Software.\n\n6.\tLIMITATIONS ON REVERSE ENGINEERING, DECOMPILATION, AND DISASSEMBLY. You may not reverse engineer, decompile, or disassemble the Software, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation.\n\n7.\tNO RENTAL OR COMMERCIAL HOSTING. You may not rent, lease, lend or provide commercial hosting services with the Software. \n\n8.\tCONSENT TO USE OF DATA.You agree that Microsoft and its affiliates may collect and use technical information gathered as part of the product support services provided to you, if any, related to the Software. Microsoft may use this information solely to improve our products or to provide customized services or technologies to you and will not disclose this information in a form that personally identifies you.\n\n9.\tLINKS TO THIRD-PARTY SITES. You may link to third-party sites through the use of the Software. The third-party sites are not under the control of Microsoft, and Microsoft is not responsible for the contents of any third-party sites, any links contained in third-party sites, or any changes or updates to third-party sites. Microsoft is not responsible for web-casting or any other form of transmission received from any third- party sites. Microsoft is providing these links to third-party sites to you only as a convenience, and the inclusion of any link does not imply an endorsement by Microsoft of the third-party site. \n\n10.\tADDITIONAL SOFTWARE OR SERVICES. This EULA applies to updates, supplements, add-on components or Internet-based services components of the Software that Microsoft may provide to you or make available to you after the date you obtain your initial copy of the Software, unless Microsoft provides other terms along with the update, supplement, add-on component, or Internet-based services component. Microsoft reserves the right to discontinue any Internet-based services provided to you or made available to you through the use of the Software.\n\n11.\tEXPORT RESTRICTIONS. You acknowledge that the Software is subject to U.S. export jurisdiction. You agree to comply with all applicable international and national laws that apply to the Software, including the U.S. Export Administration Regulations, as well as end-user, end-use, and destination restrictions issued by U.S. and other governments. For additional information see .\n\n12.\tSOFTWARE TRANSFER. The initial user of the Software may make a one-time permanent transfer of this EULA and Software to another end user, provided the initial user retains no copies of the Software. This transfer must include all of the Software (including all component parts, the media and printed materials, any upgrades, this EULA, and, if applicable, the Certificate of Authenticity). The transfer may not be an indirect transfer, such as a consignment. Prior to the transfer, the end user receiving the Software must agree to all the EULA terms.\n\n13.\tTERMINATION. Without prejudice to any other rights, Microsoft may terminate this EULA if you fail to comply with the terms and conditions of this EULA.\nIn such event, you must destroy all copies of the Software and all of its component parts.\n\n14.\tDISCLAIMER OF WARRANTIES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, MICROSOFT AND ITS SUPPLIERS PROVIDE THE SOFTWARE AND SUPPORT SERVICES (IF ANY) AS IS AND WITH ALL FAULTS, AND HEREBY DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES, DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF RELIABILITY OR AVAILABILITY, OF ACCURACY OR COMPLETENESS OF RESPONSES, OF RESULTS, OF WORKMANLIKE EFFORT, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE, ALL WITH REGARD TO THE SOFTWARE AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT OR OTHER SERVICES, INFORMATION, SOFTWARE, AND RELATED CONTENT THROUGH THE SOFTWARE OR OTHERWISE ARISING OUT OF THE USE OF THE SOFTWARE. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION, OR NON-INFRINGEMENT WITH REGARD TO THE SOFTWARE.\n\n15.\tEXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER DAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL MICROSOFT OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, PUNITIVE, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS OR CONFIDENTIAL OR OTHER INFORMATION, FOR BUSINESS INTERRUPTION, FOR PERSONAL INJURY, FOR LOSS OF PRIVACY, FOR FAILURE TO MEET ANY DUTY INCLUDING OF GOOD FAITH OR OF REASONABLE CARE, FOR NEGLIGENCE, AND FOR ANY OTHER PECUNIARY OR OTHER LOSS WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF OR INABILITY TO USE THE SOFTWARE, THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT OR OTHER SERVICES, INFORMATON, SOFTWARE, AND RELATED CONTENT THROUGH THE SOFTWARE OR OTHERWISE ARISING OUT OF THE USE OF THE SOFTWARE, OR OTHERWISE UNDER OR IN CONNECTION WITH ANY PROVISION OF THIS EULA, EVEN IN THE EVENT OF THE FAULT, TORT (INCLUDING NEGLIGENCE), MISREPRESENTATION, STRICT LIABILITY, BREACH OF CONTRACT OR BREACH OF WARRANTY OF MICROSOFT OR ANY SUPPLIER, AND EVEN IF MICROSOFT OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n16.\tLIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING ANY DAMAGES THAT YOU MIGHT INCUR FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT LIMITATION, ALL DAMAGES REFERENCED HEREIN AND ALL DIRECT OR GENERAL DAMAGES IN CONTRACT OR ANYTHING ELSE), THE ENTIRE LIABILITY OF MICROSOFT AND ANY OF ITS SUPPLIERS UNDER ANY PROVISION OF THIS EULA AND YOUR EXCLUSIVE REMEDY HEREUNDER SHALL BE LIMITED TO THE GREATER OF THE ACTUAL DAMAGES YOU INCUR IN REASONABLE RELIANCE ON THE SOFTWARE UP TO THE AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE OR US$5.00. THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS (INCLUDING SECTIONS 14, 15 AND 16) SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, EVEN IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE.\n\n17.\tU.S. GOVERNMENT LICENSE RIGHTS. All Software provided to the U.S. Government pursuant to solicitations issued on or after December 1, 1995, is provided with the commercial license rights and restrictions described elsewhere herein. All Software provided to the U.S. Government pursuant to solicitations issued prior to December 1, 1995, is provided with \"Restricted Rights\" as provided for in FAR, 48 CFR 52.227-14 (JUNE 1987) or DFAR, 48 CFR 252.227-7013 (OCT 1988), as applicable.\n\n18.\tAPPLICABLE LAW. If you acquired this Software in the United States, this EULA is governed by the laws of the State of Washington. If you acquired this Software in Canada, unless expressly prohibited by local law, this EULA is governed by the laws in force in the Province of Ontario, Canada; and, in respect of any dispute which may arise hereunder, you consent to the jurisdiction of the federal and provincial courts sitting in Toronto, Ontario. If you acquired this Software in the European Union, Iceland, Norway, or Switzerland, then local law applies. If you acquired this Software in any other country, then local law may apply.\n\n19.\tENTIRE AGREEMENT; SEVERABILITY. This EULA (including any addendum or amendment to this EULA which is included with the Software) is the entire agreement between you and Microsoft relating to the Software and the support services (if any) and it supersedes all prior or contemporaneous oral or written communications, proposals and representations with respect to the Software or any other subject matter covered by this EULA. To the extent the terms of any Microsoft policies or programs for support services conflict with the terms of this EULA, the terms of this EULA shall control. If any provision of this EULA is held to be void, invalid, unenforceable or illegal, the other provisions shall continue in full force and effect.", + "json": "ms-platform-sdk.json", + "yaml": "ms-platform-sdk.yml", + "html": "ms-platform-sdk.html", + "license": "ms-platform-sdk.LICENSE" + }, + { + "license_key": "ms-programsynthesis-7.22.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-programsynthesis-7.22.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT PROGRAM SYNTHESIS USING EXAMPLES\n\nThese license terms are an agreement between you and Microsoft Corporation (or one of its affiliates). They apply to the software named above and any Microsoft services or software updates (except to the extent such services or updates are accompanied by new or additional terms, in which case those different terms apply prospectively and do not alter your or Microsoft\u2019s rights relating to pre-updated software or services). IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS.\n\n1. INSTALLATION AND USE RIGHTS.\na) General. You may install and use any number of copies of the software on your devices to design, develop and test your non-commercial programs. Whether a program is non-commercial is determined by the program\u2019s purpose and function, not by whether a fee is charged for the program. Examples of \u201cnon-commercial programs\u201d are programs written for the purposes of teaching, academic research, public demonstrations and personal experimentation. \nb) Third Party Software. The software may include third party applications that Microsoft, not the third party, licenses to you under this agreement. Any included notices for third party applications are for your information only.\n\n2. DATA COLLECTION. The software may collect information about you and your use of the software and send that to Microsoft. Microsoft may use this information to provide services and improve Microsoft\u2019s products and services. Your opt-out rights, if any, are described in the product documentation. Some features in the software may enable collection of data from users of your applications that access or use the software. If you use these features to enable data collection in your applications, you must comply with applicable law, including getting any required user consent, and maintain a prominent privacy policy that accurately informs users about how you use, collect, and share their data. You can learn more about Microsoft\u2019s data collection and use in the product documentation and the Microsoft Privacy Statement at https://go.microsoft.com/fwlink/?LinkId=521839. You agree to comply with all applicable provisions of the Microsoft Privacy Statement.\n\n3. SCOPE OF LICENSE. The software is licensed, not sold. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you will not (and have no right to):\na) work around any technical limitations in the software that only allow you to use it in certain ways;\nb) reverse engineer, decompile, or disassemble the software, or attempt to do so, except and only to the extent permitted by licensing terms governing the use of open-source components that may be included with the software;\nc) remove, minimize, block, or modify any notices of Microsoft or its suppliers in the software;\nd) use the software in any way that is against the law or to create or propagate malware; or\ne) share, publish, distribute, or lend the software, provide the software as a stand-alone hosted solution for others to use, or transfer the software or this agreement to any third party.\n\n4. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit http://aka.ms/exporting.\n\n5. SUPPORT SERVICES. Microsoft is not obligated under this agreement to provide any support services for the software. Any support provided is \u201cas is\u201d, \u201cwith all faults\u201d, and without warranty of any kind.\n\n6. UPDATES. The software may periodically check for updates, and download and install them for you. You may obtain updates only from Microsoft or authorized sources. Microsoft may need to update your system to provide you with updates. You agree to receive these automatic updates without any additional notice. Updates may not include or support all existing software features, services, or peripheral devices.\n\n7. PUBLICATION.\na) You may publish (or present papers or articles) on your results from using the software provided that no material or substantial portion of the software is included in any such publication or presentation. \nb) You will provide Microsoft with a copy of any proposed publication (this includes, without limitation, manuscripts, abstracts, presentations for professional meetings, and other publications) concerning the software, at least thirty (30) days prior to submission for publication. Microsoft will have 30 days (the \"Pre-publication Review Period\") to review the proposed publication. At Microsoft\u2019s request, the proposed publication may be delayed for up to 3 months beyond the end of the Pre-publication Review Period. If Microsoft seeks to delay publication, Microsoft will make such request in writing together with identification of information or materials of concern and reasons why delay is warranted. You will not unreasonably deny, condition, or delay responding to this request. \n\n8. LICENSE TO MICROSOFT. In the event you provide Microsoft with feedback about the software, or modification or derivatives of the software, you hereby grant Microsoft, without any restrictions or limitations, a non-exclusive, perpetual, irrevocable, royalty-free, assignable and sub-licensable license, to reproduce, publicly perform or display, install, use, modify, post, distribute, make and have made, sell and transfer such feedback, modifications and derivatives in any way and for any purpose, even if such materials are marked or otherwise designated by you as confidential. These rights survive this agreement. \n\n9. ENTIRE AGREEMENT. This agreement, and any other terms Microsoft may provide for supplements, updates, or third-party applications, is the entire agreement for the software.\n\n10. APPLICABLE LAW AND PLACE TO RESOLVE DISPUTES. If you acquired the software in the United States or Canada, the laws of the state or province where you live (or, if a business, where your principal place of business is located) govern the interpretation of this agreement, claims for its breach, and all other claims (including consumer protection, unfair competition, and tort claims), regardless of conflict of laws principles. If you acquired the software in any other country, its laws apply. If U.S. federal jurisdiction exists, you and Microsoft consent to exclusive jurisdiction and venue in the federal court in King County, Washington for all disputes heard in court. If not, you and Microsoft consent to exclusive jurisdiction and venue in the Superior Court of King County, Washington for all disputes heard in court.\n\n11. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:\na) Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights.\nb) Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software.\nc) Germany and Austria.\ni.\tWarranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software.\nii.\tLimitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law.\nSubject to the foregoing clause ii., Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called \"cardinal obligations\"). In other cases of slight negligence, Microsoft will not be liable for slight negligence.\n\n12. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \u201cAS IS.\u201d YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES, OR CONDITIONS. TO THE EXTENT PERMITTED UNDER APPLICABLE LAWS, MICROSOFT EXCLUDES ALL IMPLIED WARRANTIES, INCLUDING MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.\n\n13. LIMITATION ON AND EXCLUSION OF DAMAGES. IF YOU HAVE ANY BASIS FOR RECOVERING DAMAGES DESPITE THE PRECEDING DISCLAIMER OF WARRANTY, YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT, OR INCIDENTAL DAMAGES.\n\nThis limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, warranty, guarantee, or condition; strict liability, negligence, or other tort; or any other claim; in each case to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state, province, or country may not allow the exclusion or limitation of incidental, consequential, or other damages.\n\nPlease note: As this software is distributed in Canada, some of the clauses in this agreement are provided below in French.\n\nRemarque: Ce logiciel \u00e9tant distribu\u00e9 au Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\u00e7ais.\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel \u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft n\u2019accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\u00e9 marchande, d\u2019ad\u00e9quation \u00e0 un usage particulier et d\u2019absence de contrefa\u00e7on sont exclues.\n\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\n\nCette limitation concerne:\n\u2022\ttout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers; et\n\u2022\tles r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d\u2019une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\n\nElle s\u2019applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre l\u2019\u00e9ventualit\u00e9 d\u2019un tel dommage. Si votre pays n\u2019autorise pas l\u2019exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\u2019exclusion ci-dessus ne s\u2019appliquera pas \u00e0 votre \u00e9gard.\n\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d\u2019autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si celles-ci ne le permettent pas.", + "json": "ms-programsynthesis-7.22.0.json", + "yaml": "ms-programsynthesis-7.22.0.yml", + "html": "ms-programsynthesis-7.22.0.html", + "license": "ms-programsynthesis-7.22.0.LICENSE" + }, + { + "license_key": "ms-python-vscode-pylance-2021", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-python-vscode-pylance-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT PYLANCE EXTENSION FOR VISUAL STUDIO CODE\n\nThese license terms are an agreement between you and Microsoft Corporation (or one of its affiliates). They apply to the software named above and any Microsoft services or software updates (except to the extent such services or updates are accompanied by new or additional terms, in which case those different terms apply prospectively and do not alter your or Microsoft\u2019s rights relating to pre-updated software or services). IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS.\n\nINSTALLATION AND USE RIGHTS. \na) General. You may install and use any number of copies of the software only with Microsoft Visual Studio, Visual Studio for Mac, Visual Studio Code, Azure DevOps, Team Foundation Server, and successor Microsoft products and services (collectively, the \u201cVisual Studio Products and Services\u201d) to develop and test your applications. \nb) Third Party Components. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software.\n\nSCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. For clarification Microsoft, or its licensors, retains ownership of all aspects of the software. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. For example, if Microsoft technically limits or disables extensibility for the software, you may not extend the software by, among other things, loading or injecting into the software any non-Microsoft add-ins, macros, or packages; modifying the software registry settings; or adding features or functionality equivalent to that found in Microsoft products and services. \n\nYou may not: \na) work around any technical limitations in the software that only allow you to use it in certain ways; \nb) reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; \nc) remove, minimize, block, or modify any notices of Microsoft or its suppliers in the software; \nd) use the software in any way that is against the law or to create or propagate malware; or \ne) share, publish, distribute, or lease the software (except for any distributable code, subject to the terms above), provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party.\n\nDATA. \na) Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the product documentation.\u202f There are also some features in the software that may enable you to collect data from users of your applications. If you use these features to enable data collection in your applications, you must comply with applicable law, including providing appropriate notices to users of your applications. You can learn more about data collection and use in the help documentation and the privacy statement at https://aka.ms/privacy. Your use of the software operates as your consent to these practices. \nb) Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr.\n\nEXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit https://aka.ms/exporting.\n\nSUPPORT SERVICES. Microsoft is not obligated under this agreement to provide any support services for the software. Any support provided is \u201cas is\u201d, \u201cwith all faults\u201d, and without warranty of any kind.\n\nENTIRE AGREEMENT. This agreement, and any other terms Microsoft may provide for supplements, updates, or third-party applications, is the entire agreement for the software.\n\nAPPLICABLE LAW AND PLACE TO RESOLVE DISPUTES. If you acquired the software in the United States or Canada, the laws of the state or province where you live (or, if a business, where your principal place of business is located) govern the interpretation of this agreement, claims for its breach, and all other claims (including consumer protection, unfair competition, and tort claims), regardless of conflict of laws principles. If you acquired the software in any other country, its laws apply. If U.S. federal jurisdiction exists, you and Microsoft consent to exclusive jurisdiction and venue in the federal court in King County, Washington for all disputes heard in court. If not, you and Microsoft consent to exclusive jurisdiction and venue in the Superior Court of King County, Washington for all disputes heard in court.\n\nCONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you: \na) Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights. \nb) Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. \nc) Germany and Austria. i. Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software. ii. Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law. Subject to the foregoing clause ii., Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called \"cardinal obligations\"). In other cases of slight negligence, Microsoft will not be liable for slight negligence.\n\nDISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \u201cAS IS.\u201d YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES, OR CONDITIONS. TO THE EXTENT PERMITTED UNDER APPLICABLE LAWS, MICROSOFT EXCLUDES ALL IMPLIED WARRANTIES, INCLUDING MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.\n\nLIMITATION ON AND EXCLUSION OF DAMAGES. IF YOU HAVE ANY BASIS FOR RECOVERING DAMAGES DESPITE THE PRECEDING DISCLAIMER OF WARRANTY, YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT, OR INCIDENTAL DAMAGES. This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, warranty, guarantee, or condition; strict liability, negligence, or other tort; or any other claim; in each case to the extent permitted by applicable law. It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state, province, or country may not allow the exclusion or limitation of incidental, consequential, or other damages.\n\nPlease note: As this software is distributed in Canada, some of the clauses in this agreement are provided below in French. \nRemarque: Ce logiciel \u00e9tant distribu\u00e9 au Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\u00e7ais. EXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel \u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft n\u2019accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\u00e9 marchande, d\u2019ad\u00e9quation \u00e0 un usage particulier et d\u2019absence de contrefa\u00e7on sont exclues. LIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices. Cette limitation concerne: \u2022 tout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers; et \u2022 les r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d\u2019une autre faute dans la limite autoris\u00e9e par la loi en vigueur. Elle s\u2019applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre l\u2019\u00e9ventualit\u00e9 d\u2019un tel dommage. Si votre pays n\u2019autorise pas l\u2019exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\u2019exclusion ci-dessus ne s\u2019appliquera pas \u00e0 votre \u00e9gard. EFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d\u2019autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si celles-ci ne le permettent pas.", + "json": "ms-python-vscode-pylance-2021.json", + "yaml": "ms-python-vscode-pylance-2021.yml", + "html": "ms-python-vscode-pylance-2021.html", + "license": "ms-python-vscode-pylance-2021.LICENSE" + }, + { + "license_key": "ms-reactive-extensions-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-reactive-extensions-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Reactive Extensions Eula\nTo download the file you must agree to the following license:\n\nMICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT REACTIVE EXTENSIONS FOR JAVASCRIPT AND .NET LIBRARIES\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\nupdates,\nsupplements,\nInternet-based services, and\nsupport services\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\n\nIf you comply with these license terms, you have the rights below.\n\nINSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices to design, develop and test your programs. \n\nADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\nDistributable Code.The software contains code that you are permitted to distribute in programs you develop if you comply with the terms below.\nRight to Use and Distribute. The code and text files listed in the software REDIST.TXT files are \"Distributable Code.\"\n\nREDIST.TXT Files. You may copy and distribute the object code form of the Distributable Code. You may also combine the object code form of the Distributable Code with your programs to develop a unified web solution and permit others via online methods to access and use that unified web solution, provided that the Distributable Code is only used as part of and in conjunction with your programs.\n\nThird Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\n\nDistributable Code Requirements. For any Distributable Code, you must\nadd significant primary functionality to it in your programs;\nrequire distributors and external end users to agree to terms that protect it at least as much as this agreement;\ndisplay your valid copyright notice on your programs; and\nindemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\n\nDistributable Code Restrictions. You may not\nalter any copyright, trademark or patent notice in the Distributable Code;\nuse Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\ninclude Distributable Code in malicious, deceptive or unlawful programs; or\nmodify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\nthe code be disclosed or distributed in source code form; or\nothers have the right to modify it.\n\nSCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\nwork around any technical limitations in the software;\nreverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\nmake more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\npublish the software for others to copy;\nrent, lease or lend the software; or\ntransfer the software or this agreement to any third party.\n\nBACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\nDOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\nEXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\nSUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\nENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\nAPPLICABLE LAW.\nUnited States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\nOutside the United States. If you acquired the software in any other country, the laws of that country apply.\n\nLEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\nDISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nLIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\nThis limitation applies to\nanything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\nclaims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.", + "json": "ms-reactive-extensions-eula.json", + "yaml": "ms-reactive-extensions-eula.yml", + "html": "ms-reactive-extensions-eula.html", + "license": "ms-reactive-extensions-eula.LICENSE" + }, + { + "license_key": "ms-refl", + "category": "Proprietary Free", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software.\n\n1. Definitions\nThe terms \"reproduce,\" \"reproduction\" and \"distribution\" have the same meaning here as under U.S. copyright law.\n\n\"You\" means the licensee of the software.\n\n\"Your company\" means the company you worked for when you downloaded the software.\n\n\"Reference use\" means use of the software within your company as a reference, in read only form, for the sole purposes of debugging your products, maintaining your products, or enhancing the interoperability of your products with the software, and specifically excludes the right to distribute the software outside of your company.\n\n\"Licensed patents\" means any Licensor patent claims which read directly on the software as distributed by the Licensor under this license.\n\n2. Grant of Rights\n(A) Copyright Grant- Subject to the terms of this license, the Licensor grants you a non-transferable, non-exclusive, worldwide, royalty-free copyright license to reproduce the software for reference use.\n\n(B) Patent Grant- Subject to the terms of this license, the Licensor grants you a non-transferable, non-exclusive, worldwide, royalty-free patent license under licensed patents for reference use.\n\n3. Limitations\n(A) No Trademark License- This license does not grant you any rights to use the Licensor's name,\n logo, or trademarks.\n\n(B) If you begin patent litigation against the Licensor over patents that you think may apply to the software (including a cross-claim or counterclaim in a lawsuit), your license to the software ends automatically.\n\n(C) The software is licensed \"as-is.\" You bear the risk of using it. The Licensor gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the Licensor excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.", + "json": "ms-refl.json", + "yaml": "ms-refl.yml", + "html": "ms-refl.html", + "license": "ms-refl.LICENSE" + }, + { + "license_key": "ms-remote-ndis-usb-kit", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-remote-ndis-usb-kit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft Remote NDIS USB Kit EULA\nMICROSOFT REMOTE NDIS USB KIT\nEND-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE\n\nIMPORTANT-READ CAREFULLY: This End-User License Agreement (\"EULA\") is a\nlegal agreement between you (either an individual or a single entity) and Microsoft\nCorporation for the Microsoft software that accompanies this EULA, which includes\ncomputer software and may include associated media, printed materials, \"online\" or\nelectronic documentation, and Internet-based services (\"Software\"). An amendment or\naddendum to this EULA may accompany the Software. YOU AGREE TO BE BOUND\nBY THE TERMS OF THIS EULA BY INSTALLING, COPYING, OR OTHERWISE\nUSING THE SOFTWARE. IF YOU DO NOT AGREE, DO NOT INSTALL, COPY, OR\nUSE THE SOFTWARE; YOU MAY RETURN IT TO YOUR PLACE OF PURCHASE (IF\nAPPLICABLE) FOR A FULL REFUND.\n\n1.\tGRANT OF LICENSE. Microsoft grants you the following rights provided that you\ncomply with all terms and conditions of this EULA: a nonexclusive, worldwide, royalty\nfree right and license to use an unlimited number of copies of the Software on\ncomputers, including workstations, terminals, or other devices and redistribute the\nSoftware in object code only provided that each copy is a true and complete copy of the\nSoftware including the license.txt file.\n\n2.\tADDITIONAL LICENSE RIGHTS -- REDISTRIBUTABLE CODE. In addition to the\nrights granted in Section 1, certain portions of the Software, as described in this Section\n2, are provided to you with additional license rights. These additional license rights are\nconditioned upon your compliance with the distribution requirements and license\nrestrictions described in Section 3.\n\n2.1\tRedistributable Code--General. Microsoft grants you a nonexclusive, royalty-free\nright to reproduce and distribute the object code form of any portion of the Software\nlisted in REDIST.TXT (\"Redistributable Code\"). For general redistribution requirements\nfor Redistributable Code, see Section 3.1, below.\n\n3.\tLICENSE RESTRICTIONS -- DISTRIBUTION REQUIREMENTS. If you choose to\nexercise your rights under Section 2, any redistribution by you is subject to your\ncompliance with the following terms.\n\n3.1\tIf you are authorized and choose to redistribute Redistributable Code as described\nin Section 2, you agree: (i) to distribute the Software only in object code form and only\nin conjunction with and as a part of your hardware products (\"Licensee Product\") which\nare designed to operate in conjunction with Microsoft Windows 2000 operating systems;\n(ii) to distribute the Licensee Product containing the Redistributable Code pursuant to\nan end user license agreement (which may be \"break-the-seal\", \"click-wrap\" or signed),\nwith terms no less protective than those contained in this EULA; (iii) not to use\nMicrosoft's name, logo, or trademarks to market the Licensee Product; (iv) to display\nyour own valid copyright notice which shall be sufficient to protect Microsoft's copyright\nin the Software; (v) not to remove or obscure any copyright, trademark or patent notices\nthat appear on the Software as delivered to you; (vi) to indemnify, hold harmless, and\ndefend Microsoft from and against any claims or lawsuits, including attorney's fees, that\narise or result from the use or distribution of the Licensee Product; (vii) otherwise\ncomply with the terms of this EULA; and (viii) agree that Microsoft reserves all rights not\nexpressly granted.\nYou also agree not to permit further distribution of the Redistributable Code by your end\nusers except you may permit further redistribution of the Redistributable Code by your\ndistributors to your end-user customers if your distributors only distribute the\nRedistributable Code in conjunction with, and as part of, the Licensee Product and you\nand your distributors comply with all other terms of this EULA.\n\n3.2\tIf you use the Redistributable Code, then in addition to your compliance with the\napplicable distribution requirements described for the Redistributable Code, the\nfollowing also applies. Your license rights to the Redistributable Code are conditioned\nupon your not (i) creating derivative works of the Redistributable Code in any manner\nthat would cause the Redistributable Code in whole or in part to become subject to any\nof the terms of an Excluded License; or (ii) distributing the Redistributable Code (or\nderivative works thereof) in any manner that would cause the Redistributable Code to\nbecome subject to any of the terms of an Excluded License. An \"Excluded License\" is\nany license that requires as a condition of use, modification and/or distribution of\nsoftware subject to the Excluded License, that such software or other software\ncombined and/or distributed with such software be (x) disclosed or distributed in source\ncode form; (y) licensed for the purpose of making derivative works; or (z) redistributable\nat no charge.\n\n4.\tRESERVATION OF RIGHTS AND OWNERSHIP. Microsoft reserves all rights not\nexpressly granted to you in this EULA. The Software is protected by copyright and other\nintellectual property laws and treaties. Microsoft or its suppliers own the title, copyright,\nand other intellectual property rights in the Software. The Software is licensed, not\nsold.\n\n5.\tLIMITATIONS ON REVERSE ENGINEERING, DECOMPILATION, AND\nDISASSEMBLY. You may not reverse engineer, decompile, or disassemble the\nSoftware, except and only to the extent that such activity is expressly permitted by\napplicable law notwithstanding this limitation.\n\n6. NO RENTAL/COMMERCIAL HOSTING. You may not rent, lease, lend or provide\ncommercial hosting services with the Software.\n\n7.\tCONSENT TO USE OF DATA. You agree that Microsoft and its affiliates may\ncollect and use technical information gathered as part of the product support services\nprovided to you, if any, related to the Software. Microsoft may use this information solely\nto improve our products or to provide customized services or technologies to you and\nwill not disclose this information in a form that personally identifies you.\n\n8.\tLINKS TO THIRD PARTY SITES. You may link to third party sites through the use\nof the Software. The third party sites are not under the control of Microsoft, and\nMicrosoft is not responsible for the contents of any third party sites, any links contained\nin third party sites, or any changes or updates to third party sites. Microsoft is not\nresponsible for webcasting or any other form of transmission received from any third\nparty sites. Microsoft is providing these links to third party sites to you only as a\nconvenience, and the inclusion of any link does not imply an endorsement by Microsoft\nof the third party site.\n\n9.\tADDITIONAL SOFTWARE/SERVICES. This EULA applies to updates,\nsupplements, add-on components, or Internet-based services components, of the\nSoftware that Microsoft may provide to you or make available to you after the date you\nobtain your initial copy of the Software, unless we provide other terms along with the\nupdate, supplement, add-on component, or Internet-based services component.\nMicrosoft reserves the right to discontinue any Internet-based services provided to you\nor made available to you through the use of the Software.\n\n10.\tU.S. GOVERNMENT LICENSE RIGHTS. All Software provided to the U.S.\nGovernment pursuant to solicitations issued on or after December 1, 1995 is provided\nwith the commercial license rights and restrictions described elsewhere herein. All\nSoftware provided to the U.S. Government pursuant to solicitations issued prior to\nDecember 1, 1995 is provided with \"Restricted Rights\" as provided for in FAR, 48 CFR\n52.227-14 (JUNE 1987) or DFAR, 48 CFR 252.227-7013 (OCT 1988), as applicable.\n\n11.\tEXPORT RESTRICTIONS. You acknowledge that the Software is subject to U.S.\nexport jurisdiction. You agree to comply with all applicable international and national\nlaws that apply to the Software, including the U.S. Export Administration Regulations, as\nwell as end-user, end-use, and destination restrictions issued by U.S. and other\ngovernments. For additional information see http://www.microsoft.com/exporting/.\n\n12.\tSOFTWARE TRANSFER. The initial user of the Software may make a one-time\npermanent transfer of this EULA and Software to another end user, provided the initial\nuser retains no copies of the Software. The transfer may not be an indirect transfer,\nsuch as a consignment. Prior to the transfer, the end user receiving the Software must\nagree to all the EULA terms.\n\n13.\tTERMINATION. Without prejudice to any other rights, Microsoft may terminate this\nEULA if you fail to comply with the terms and conditions of this EULA. In such event,\nyou must destroy all copies of the Software and all of its component parts.\n\n14.\tDISCLAIMER OF WARRANTIES. TO THE MAXIMUM EXTENT PERMITTED BY\nAPPLICABLE LAW, MICROSOFT AND ITS SUPPLIERS PROVIDE THE SOFTWARE,\nAND SUPPORT SERVICES (IF ANY) AS IS AND WITH ALL FAULTS, AND\nMICROSOFT AND ITS SUPPLIERS HEREBY DISCLAIM ALL OTHER WARRANTIES\nAND CONDITIONS, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING,\nBUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES, DUTIES OR\nCONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR\nPURPOSE, OF RELIABILITY OR AVAILABILITY, OF ACCURACY OR\nCOMPLETENESS OF RESPONSES, OF RESULTS, OF WORKMANLIKE EFFORT,\nOF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE, ALL WITH REGARD TO\nTHE SOFTWARE, AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT\nOR OTHER SERVICES, INFORMATION, SOFTWARE, AND RELATED CONTENT\nTHROUGH THE SOFTWARE OR OTHERWISE ARISING OUT OF THE USE OF THE\nSOFTWARE. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET\nENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR\nNON-INFRINGEMENT WITH REGARD TO THE SOFTWARE. THE ENTIRE RISK AS\nTO THE QUALITY, OR ARISING OUT OF THE USE OR PERFORMANCE OF THE\nSOFTWARE AND ANY SUPPORT SERVICES, REMAINS WITH YOU.\n\n15.\tEXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER\nDAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO\nEVENT SHALL MICROSOFT OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL,\nINCIDENTAL, PUNITIVE, INDIRECT, OR CONSEQUENTIAL DAMAGES\nWHATSOEVER (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF\nPROFITS OR CONFIDENTIAL OR OTHER INFORMATION, FOR BUSINESS\nINTERRUPTION, FOR PERSONAL INJURY, FOR LOSS OF PRIVACY, FOR FAILURE\nTO MEET ANY DUTY INCLUDING OF GOOD FAITH OR OF REASONABLE CARE,\nFOR NEGLIGENCE, AND FOR ANY OTHER PECUNIARY OR OTHER LOSS\nWHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF OR\nINABILITY TO USE THE SOFTWARE, THE PROVISION OF OR FAILURE TO\nPROVIDE SUPPORT OR OTHER SERVICES, INFORMATION, SOFTWARE, AND\nRELATED CONTENT THROUGH THE SOFTWARE OR OTHERWISE ARISING OUT\nOF THE USE OF THE SOFTWARE, OR OTHERWISE UNDER OR IN CONNECTION\nWITH ANY PROVISION OF THIS EULA, EVEN IN THE EVENT OF THE FAULT, TORT\n(INCLUDING NEGLIGENCE), MISREPRESENTATION, STRICT LIABILITY, BREACH\nOF CONTRACT OR BREACH OF WARRANTY OF MICROSOFT OR ANY SUPPLIER,\nAND EVEN IF MICROSOFT OR ANY SUPPLIER HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES. BECAUSE SOME STATES/JURISDICTIONS DO\nNOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR\nCONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT\nAPPLY TO YOU.\n\n16.\tLIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING ANY\nDAMAGES THAT YOU MIGHT INCUR FOR ANY REASON WHATSOEVER\n(INCLUDING, WITHOUT LIMITATION, ALL DAMAGES REFERENCED HEREIN AND\nALL DIRECT OR GENERAL DAMAGES IN CONTRACT OR ANYTHING ELSE), THE\nENTIRE LIABILITY OF MICROSOFT AND ANY OF ITS SUPPLIERS UNDER ANY\nPROVISION OF THIS EULA AND YOUR EXCLUSIVE REMEDY HEREUNDER SHALL\nBE LIMITED TO THE GREATER OF THE ACTUAL DAMAGES YOU INCUR IN\nREASONABLE RELIANCE ON THE SOFTWARE UP TO THE AMOUNT ACTUALLY\nPAID BY YOU FOR THE SOFTWARE OR US$5.00. THE FOREGOING LIMITATIONS,\nEXCLUSIONS AND DISCLAIMERS SHALL APPLY TO THE MAXIMUM EXTENT\nPERMITTED BY APPLICABLE LAW, EVEN IF ANY REMEDY FAILS ITS ESSENTIAL\nPURPOSE.\n\n17.\tAPPLICABLE LAW. If you acquired this Software in the United States, this EULA\nis governed by the laws of the State of Washington. If you acquired this Software in\nCanada, unless expressly prohibited by local law, this EULA is governed by the laws in\nforce in the Province of Ontario, Canada; and, in respect of any dispute which may arise\nhereunder, you consent to the jurisdiction of the federal and provincial courts sitting in\nToronto, Ontario. If you acquired this Software in the European Union, Iceland, Norway,\nor Switzerland, then local law applies. If you acquired this Software in any other country,\nthen local law may apply.\n\n18.\tENTIRE AGREEMENT; SEVERABILITY. This EULA (including any addendum or\namendment to this EULA which is included with the Software) are the entire agreement\nbetween you and Microsoft relating to the Software and the support services (if any) and\nthey supersede all prior or contemporaneous oral or written communications, proposals\nand representations with respect to the Software or any other subject matter covered by\nthis EULA. To the extent the terms of any Microsoft policies or programs for support\nservices conflict with the terms of this EULA, the terms of this EULA shall control. If any\nprovision of this EULA is held to be void, invalid, unenforceable or illegal, the other\nprovisions shall continue in full force and effect.", + "json": "ms-remote-ndis-usb-kit.json", + "yaml": "ms-remote-ndis-usb-kit.yml", + "html": "ms-remote-ndis-usb-kit.html", + "license": "ms-remote-ndis-usb-kit.LICENSE" + }, + { + "license_key": "ms-research-shared-source", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-research-shared-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft\nResearch\nShared\nSource\nLicense\n\nMicrosoft Research Shared Source License Agreement (Non-commercial Use Only)\n\nThis Microsoft Research Shared Source license agreement (\"MSR-SSLA\") is a legal agreement between you and Microsoft Corporation (\"Microsoft\" or \"we\") for the software or data identified above, which may include source code, and any associated materials, text or speech files, associated media and \"online\" or electronic documentation and any updates we provide in our discretion (together, the \"Software\").\nBy installing, copying, or otherwise using this Software, found at http://research.microsoft.com/downloads, you agree to be bound by the terms of this MSR-SSLA. If you do not agree, do not install copy or use the Software. The Software is protected by copyright and other intellectual property laws and is licensed, not sold.\n\nSCOPE OF RIGHTS:\nYou may use, copy, reproduce, and distribute this Software for any non- commercial purpose, subject to the restrictions in this MSR-SSLA. Some purposes which can be non-commercial are teaching, academic research, public demonstrations and personal experimentation. You may also distribute this Software with books or other teaching materials, or publish the Software on websites, that are intended to teach the use of the Software for academic or other non-commercial purposes.\n\nYou may not use or distribute this Software or any derivative works in any form for commercial purposes. Examples of commercial purposes would be running business operations, licensing, leasing, or selling the Software, distributing the Software for use with commercial products, using the Software in the creation or use of commercial products or any other activity which purpose is to procure a commercial gain to you or others.\n\nIf the Software includes source code or data, you may create derivative works of such portions of the Software and distribute the modified Software for non- commercial purposes, as provided herein. In return, we simply require that you agree:\n\n1. That you will not remove any copyright or other notices from the Software.\n\n2. That if any of the Software is in binary format, you will not attempt to modify such portions of the Software, or to reverse engineer or decompile them, except and only to the extent authorized by applicable law.\n\n3. That if you distribute the Software or any derivative works of the Software, you will distribute them under the same terms and conditions as in this license, and you will not grant other rights to the Software or derivative works that are different from those provided by this MSR-SSLA.\n\n4. That if you have created derivative works of the Software, and distribute such derivative works, you will cause the modified files to carry prominent notices so that recipients know that they are not receiving the original Software. Such notices must state: 1. that you have changed the Software; and 2. the date of any changes.\n\n5. That Microsoft is granted back, without any restrictions or limitations, a non-exclusive, perpetual, irrevocable, royalty-free, assignable and sub- licensable license, to reproduce, publicly perform or display, install, use, modify, distribute, make and have made, sell and transfer your modifications to and/or derivative works of the Software source code or data, for any purpose. .\n\n6. That any feedback about the Software provided by you to us is voluntarily given, and Microsoft shall be free to use the feedback as it sees fit without obligation or restriction of any kind, even if the feedback is designated by you as confidential.\n\n7. THAT THE SOFTWARE COMES \"AS IS\", WITH NO WARRANTIES. THIS MEANS NO EXPRESS, IMPLIED OR STATUTORY WARRANTY, INCLUDING WITHOUT LIMITATION, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, any warranty against interference with your enjoyment of the Software OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT. There is no warranty that this Software will fulfill any of your particular purposes or needs. ALSO, YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE SOFTWARE OR DERIVATIVE WORKS.\n\n8. THAT NEITHER MICROSOFT NOR ANY CONTRIBUTOR TO THE SOFTWARE WILL BE LIABLE FOR ANY DAMAGES RELATED TO THE SOFTWARE OR THIS MSR-SSLA, INCLUDING DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL OR INCIDENTAL DAMAGES, TO THE MAXIMUM EXTENT THE LAW PERMITS, NO MATTER WHAT LEGAL THEORY IT IS BASED ON. ALSO, YOU MUST PASS THIS LIMITATION OF LIABILITY ON WHENEVER YOU DISTRIBUTE THE SOFTWARE OR DERIVATIVE WORKS.\n\n9. That we have no duty of reasonable care or lack of negligence, and we are not obligated to (and will not) provide technical support for the Software.\n\n10. That if you breach this MSR-SSLA or if you sue anyone over patents that you think may apply to or read on the Software or anyone's use of the Software, this MSR-SSLA (and your license and rights obtained herein) terminate automatically. Upon any such termination, you shall destroy all of your copies of the Software immediately. Sections 5, 6, 7, 8, 9, 10, 13 and 14 of this MSR- SSLA shall survive any termination of this MSR-SSLA.\n\n11. That the patent rights, if any, granted to you in this MSR-SSLA only apply to the Software, not to any derivative works you make.\n\n12. That the Software may be subject to U.S. export jurisdiction at the time it is licensed to you, and it may be subject to additional export or import laws in other places. You agree to comply with all such laws and regulations that may apply to the Software after delivery of the software to you.\n\n13. That all rights not expressly granted to you in this MSR-SSLA are reserved.\n\n14. That this MSR-SSLA shall be construed and controlled by the laws of the State of Washington, USA, without regard to conflicts of law. If any provision of this MSR-SSLA shall be deemed unenforceable or contrary to law, the rest of this MSR-SSLA shall remain in full effect and interpreted in an enforceable manner that most nearly captures the intent of the original language.\nCopyright (c) Microsoft Corporation. All rights reserved.\n\nDo you accept all of the terms of the preceding MSR-SSLA license agreement? If you accept the terms, click \"I Agree,\" then \"Next.\" Otherwise click \"Cancel.\"", + "json": "ms-research-shared-source.json", + "yaml": "ms-research-shared-source.yml", + "html": "ms-research-shared-source.html", + "license": "ms-research-shared-source.LICENSE" + }, + { + "license_key": "ms-rl", + "category": "Copyleft Limited", + "spdx_license_key": "MS-RL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft Reciprocal License (Ms-RL)\n\nThis license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software.\n\n1. Definitions\n The terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and \"distribution\" have the same meaning here as under U.S. copyright law.\n A \"contribution\" is the original software, or any additions or changes to the software.\n A \"contributor\" is any person that distributes its contribution under this license.\n \"Licensed patents\" are a contributor's patent claims that read directly on its contribution.\n\n2. Grant of Rights\n (A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create.\n (B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software.\n\n3. Conditions and Limitations\n (A) Reciprocal Grants- For any file you distribute that contains code from the software (in source code or binary format), you must provide recipients the source code to that file along with a copy of this license, which license will govern that file. You may license other files that are entirely your own work and do not contain code from the software under any terms you choose.\n (B) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks.\n (C) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically.\n (D) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software.\n (E) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license.\n (F) The software is licensed \"as-is.\" You bear the risk of using it. The contributors give no express warranties, guarantees, or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement.", + "json": "ms-rl.json", + "yaml": "ms-rl.yml", + "html": "ms-rl.html", + "license": "ms-rl.LICENSE" + }, + { + "license_key": "ms-rsl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-rsl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software.\n\n1. Definitions\nThe terms \"reproduce,\" \"reproduction\" and \"distribution\" have the same meaning here as under U.S. copyright law.\n\n\"You\" means the licensee of the software.\n\n\"Your company\" means the company you worked for when you downloaded the software.\n\n\"Reference use\" means use of the software within your company as a reference, in read only form, for the sole purposes of debugging your products, maintaining your products, or enhancing the interoperability of your products with the software, and specifically excludes the right to distribute the software outside of your company.\n\n\"Licensed patents\" means any Licensor patent claims which read directly on the software as distributed by the Licensor under this license.\n\n2. Grant of Rights\n(A) Copyright Grant- Subject to the terms of this license, the Licensor grants you a non-transferable, non-exclusive, worldwide, royalty-free copyright license to reproduce the software for reference use.\n\n(B) Patent Grant- Subject to the terms of this license, the Licensor grants you a non-transferable, non-exclusive, worldwide, royalty-free patent license under licensed patents for reference use.\n\n3. Limitations\n(A) No Trademark License- This license does not grant you any rights to use the Licensor's name,\n logo, or trademarks.\n\n(B) If you begin patent litigation against the Licensor over patents that you think may apply to the software (including a cross-claim or counterclaim in a lawsuit), your license to the software ends automatically.\n\n(C) The software is licensed \"as-is.\" You bear the risk of using it. The Licensor gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the Licensor excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.", + "json": "ms-rsl.json", + "yaml": "ms-rsl.yml", + "html": "ms-rsl.html", + "license": "ms-rsl.LICENSE" + }, + { + "license_key": "ms-silverlight-3", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-silverlight-3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS\nMICROSOFT SILVERLIGHT 3 TOOLS FOR VISUAL STUDIO 2008, Service Pack 1\n\nPLEASE NOTE: Microsoft Corporation (or based on where you live, one of its affiliates) licenses this supplement to you. You may use it with each validly licensed copy of Microsoft Visual Studio 2008 Service Pack 1 and Microsoft Visual Web Developer 2008 Express Edition software (for which this supplement is applicable) (the \"software\"). You may not use the supplement if you do not have a license for the software. The license terms for the software apply to your use of this supplement. Microsoft provides support services for the supplement as described at www.support.microsoft.com/common/international.aspx. \n\n=============================================\n\nMICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT SILVERLIGHT 3\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\n\u00b7\tUpdates (including but not limited to bug fixes, patches, updates, upgrades, enhancements, new versions, and successors to the software, collectively called \"Updates\"),\n\u00b7\tsupplements,\n\u00b7\tInternet-based services, and \n\u00b7\tsupport services\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\nAS DESCRIBED BELOW, YOUR INSTALLATION OF THIS SOFTWARE ALSO OPERATES AS YOUR CONSENT TO THE TRANSMISSION OF CERTAIN STANDARD COMPUTER INFORMATION AND TO THE AUTOMATIC DOWNLOADING AND INSTALLATION OF UPDATES ON YOUR COMPUTER.\n\nIf you comply with these license terms, you have the rights below.\n\n1.\tINSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software. You may also make any number of copies as you need to distribute the software within your organization.\n\n2.\tSCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n\u00b7\twork around any technical limitations in the software;\n\u00b7\treverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\u00b7\tpublish the software for others to copy;\n\u00b7\trent, lease or lend the software; or\n\u00b7\ttransfer the software or this agreement to any third party.\n\n3.\tINTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software. It may change or cancel them at any time. \n\na.\tAutomatic Updates. This software contains an Automatic Update feature that is on by default. For more information about this feature, including instructions for to turning it off, see go.microsoft.com/fwlink/?LinkId=147032. You may turn off this feature while the software is running (\"opt out\"). Unless you expressly opt out of this feature, this feature will (a) connect to Microsoft or service provider computer systems over the Internet, (b) use Internet protocols to send to the appropriate systems standard computer information, such as your computer\u2019s Internet protocol address, the type of operating system, browser and name and version of the software you are using, and the language code of the device where you installed the software, and (c) automatically download and install, or prompt you to download and/or install, current Updates to the software. In some cases, you will not receive a separate notice before this feature takes effect. By installing the software, you consent to the transmission of standard computer information and the automatic downloading and installation of Updates.\n\nb.\tMicrosoft Digital Rights Management. If you use the software to access content that has been protected with Microsoft Digital Rights Management (DRM), in order to let you play the content, the software may automatically request media usage rights from a rights server on the Internet and download and install available DRM Updates. For more information, see go.microsoft.com/fwlink/?LinkId=147032.\n\n4.\tNOTICE ABOUT THE H.264/AVC VISUAL STANDARD, AND THE VC-1 VIDEO STANDARD. This software may include H.264/MPEG-4 AVC and/or VC-1decoding technology. MPEG LA, L.L.C. requires this notice: \n\nTHIS PRODUCT IS LICENSED UNDER THE AVC AND THE VC-1 PATENT PORTFOLIO LICENSES FOR THE PERSONAL AND NON-COMMERCIAL USE OF A CONSUMER TO (A) ENCODE VIDEO IN COMPLIANCE WITH THE ABOVE STANDARDS (\"VIDEO STANDARDS\") AND/OR (B) DECODE AVC AND VC-1 VIDEO THAT WAS ENCODED BY A CONSUMER ENGAGED IN A PERSONAL AND NON-COMMERCIAL ACTIVITY AND/OR WAS OBTAINED FROM A VIDEO PROVIDER LICENSED TO PROVIDE SUCH VIDEO. NONE OF THE LICENSES EXTEND TO ANY OTHER PRODUCT REGARDLESS OF WHETHER SUCH PRODUCT IS INCLUDED WITH THIS SOFTWARE IN A SINGLE ARTICLE. NO LICENSE IS GRANTED OR SHALL BE IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED FROM MPEG LA, L.L.C. SEE WWW.MPEGLA.COM.\nFor clarification purposes only, the Notice in this Section does not limit or inhibit the use of the software provided under this agreement for normal business uses that are personal to that business which do not include (i) redistribution of the software to third parties, or (ii) creation of content with the VIDEO STANDARDS compliant technologies for distribution to third parties.\n\n5.\tEXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting. \n\n6.\tSUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n7.\tENTIRE AGREEMENT. This agreement, and the terms for supplements, Updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n8.\tAPPLICABLE LAW.\n\na.\tUnited States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\nb.\tOutside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n9.\tLEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n10.\tDISCLAIMER OF WARRANTY. The software is licensed \"as-is.\" You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n\n11.\tLIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\n\nThis limitation applies to\n\u00b7\tanything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\u00b7\tclaims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\n=============================================\nMICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT SILVERLIGHT 3 SOFTWARE DEVELOPMENT KIT\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\n\u00b7\tupdates,\n\u00b7\tsupplements,\n\u00b7\tInternet-based services, and\n\u00b7\tsupport services\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBy using the software, you accept these terms. If you do not accept them, do not use the software.\n\nThe software is a software development kit designed to work with Microsoft Silverlight (collectively \"Microsoft Silverlight\"). This agreement does not give you any rights to install or use Microsoft Silverlight. You must acquire a separate license to acquire such rights.\n\nIf you comply with these license terms, you have the rights below.\n\n1.\tINSTALLATION AND USE RIGHTS. One user may install and use any number of copies of the software on your devices to design, develop and test your programs for use with Microsoft Silverlight.\n\n2.\tADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\na.\tDistributable Code. The software contains code that you are permitted to distribute in programs you develop for use with Microsoft Silverlight if you comply with the terms below.\n\ni.\tRight to Use and Distribute. The code and text files listed below are \"Distributable Code.\"\n\u00b7\tSample Code. You may modify, copy, and distribute the source and object code form of code marked as \"sample.\"\n\u00b7\tSilverlight Libraries. You may copy and distribute the object code form of code marked as \"Silverlight Libraries\", \"Client Libraries\" and \"Server Libraries.\"\n\u00b7\tThird Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\n\nii.\tDistribution Requirements. For any Distributable Code you distribute, you must\n\u00b7\tadd significant primary functionality to it in your programs;\n\u00b7\trequire distributors and external end users to agree to terms that protect it at least as much as this agreement;\n\u00b7\tdisplay your valid copyright notice on your programs; and\n\u00b7\tindemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\n\niii.\tDistribution Restrictions. You may not\n\u00b7\talter any copyright, trademark or patent notice in the Distributable Code;\n\u00b7\tuse Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\n\u00b7\tinclude Distributable Code in malicious, deceptive or unlawful programs; or\n\u00b7\tmodify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\n\u00b7\tthe code be disclosed or distributed in source code form; or\n\u00b7\tothers have the right to modify it.\n\n3.\tSCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n\u00b7\twork around any technical limitations in the software;\n\u00b7\treverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\u00b7\tpublish the software for others to copy;\n\u00b7\trent, lease or lend the software; or\n\u00b7\ttransfer the software or this agreement to any third party.\n\n4.\tBACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n5.\tDOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n6.\tNOTICE ABOUT THE H.264/AVC VISUAL STANDARD, AND THE VC-1 VIDEO STANDARD. This software may include H.264/MPEG-4 AVC and/or VC-1. MPEG LA, L.L.C. requires this notice: \n\nTHIS PRODUCT IS LICENSED UNDER THE AVC AND THE VC-1 PATENT PORTFOLIO LICENSES FOR THE PERSONAL AND NON-COMMERCIAL USE OF A CONSUMER TO (1) ENCODE VIDEO IN COMPLIANCE WITH THE ABOVE STANDARDS (\"VIDEO STANDARDS\") AND/OR (2) DECODE AVC AND VC-1 VIDEO THAT WAS ENCODED BY A CONSUMER ENGAGED IN A PERSONAL AND NON-COMMERCIAL ACTIVITY AND/OR WAS OBTAINED FROM A VIDEO PROVIDER LICENSED TO PROVIDE SUCH VIDEO. NO LICENSE IS GRANTED OR SHALL BE IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED FROM MPEG LA, L.L.C. SEE WWW.MPEGLA.COM.\n\n7.\tEXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n8.\tSUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n9.\tENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n10.\tAPPLICABLE LAW.\n\na.\tUnited States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\nb.\tOutside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n11.\tLEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n12.\tDISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n13.\tLIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to\n\u00b7\tanything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\u00b7\tclaims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.", + "json": "ms-silverlight-3.json", + "yaml": "ms-silverlight-3.yml", + "html": "ms-silverlight-3.html", + "license": "ms-silverlight-3.LICENSE" + }, + { + "license_key": "ms-sql-server-compact-4.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-sql-server-compact-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT SQL SERVER COMPACT 4.0 \n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\u2022\tupdates,\n\u2022\tsupplements,\n\u2022\tInternet-based services, and\n\u2022\tsupport services\nfor this software, unless other terms accompany those items. If so, those terms apply.\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\nIf you comply with these license terms, you have the rights below.\n\n1.\tINSTALLATION AND USE RIGHTS. \na.\tInstallation and Use. You may install and use any number of copies of the software on your devices to design, develop and test your programs for use with the software.\nb.\tIncluded Microsoft Programs. The software contains the Microsoft Visual C++ 2008 Express Edition components listed below. You may only use these components with the software. The Microsoft Visual C++ 2008 Express license terms located at %Program Files%\\Microsoft SQL Server Compact Edition\\v4.0 apply to your use of them, except that the components listed below may be used for commercial hosting services when used in conjunction with the software. \n\u2022\tMicrosoft_VC90_CRT_x86.msm\n\u2022\tpolicy_9_0_Microsoft_VC90_CRT_x86.msm\n\u2022\tMicrosoft_VC90_CRT_x86_x64.msm\n\u2022\tpolicy_9_0_Microsoft_VC90_CRT_x86_x64.msm\n\u2022\tVC90.CRT_X86_msvcr90.dll\n\u2022\tVC90.CRT_X86_Microsoft.VC90.CRT.manifest\n\u2022\tVC90.CRT_AMD64_msvcr90.dll\n\u2022\tVC90.CRT_AMD64_Microsoft.VC90.CRT.manifest\n\n2.\tADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\na.\tDistributable Code. The software contains code that you are permitted to distribute in programs you develop if you comply with the terms below.\ni.\tRight to Use and Distribute. The code and text files listed below are \"Distributable Code.\"\n\u2022\tREDIST.TXT Files. You may copy and distribute the object code form of code listed in REDIST.TXT files.\n\u2022\tThird Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\nii.\tDistribution Requirements. For any Distributable Code you distribute, you must\n\u2022\tadd significant primary functionality to it in your programs;\n\u2022\tfor any Distributable Code having a filename extension of .lib, distribute only the results of running such Distributable Code through a linker with your program;\n\u2022\tdistribute Distributable Code included in a setup program only as part of that setup program without modification;\n\u2022\trequire distributors and external end users to agree to terms that protect it at least as much as this agreement; \n\u2022\tdisplay your valid copyright notice on your programs; and\n\u2022\tindemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\niii.\tDistribution Restrictions. You may not\n\u2022\talter any copyright, trademark or patent notice in the Distributable Code;\n\u2022\tuse Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\n\u2022\tdistribute Distributable Code to run on a platform other than the Windows platform;\n\u2022\tinclude Distributable Code in malicious, deceptive or unlawful programs; or\n\u2022\tmodify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\n\u2022\tthe code be disclosed or distributed in source code form; or\n\u2022\tothers have the right to modify it.\n\n3.\tSCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\u2022\twork around any technical limitations in the software;\n\u2022\treverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\u2022\tmake more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n\u2022\tpublish the software for others to copy;\n\u2022\trent, lease or lend the software; or\n\u2022\ttransfer the software or this agreement to any third party. \n\n4.\tBACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n5.\tDOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n6.\tEXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n7.\tSUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n8.\tENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n9.\tAPPLICABLE LAW.\na.\tUnited States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\nb.\tOutside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n10.\tLEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n11.\tDISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n12.\tLIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\nThis limitation applies to\n\u2022\tanything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\u2022\tclaims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.", + "json": "ms-sql-server-compact-4.0.json", + "yaml": "ms-sql-server-compact-4.0.yml", + "html": "ms-sql-server-compact-4.0.html", + "license": "ms-sql-server-compact-4.0.LICENSE" + }, + { + "license_key": "ms-sql-server-data-tools", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-sql-server-data-tools", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SQL Server Data Tools - License Terms\nMICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT SQL SERVER DATA TOOLS\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\n* updates,\n* supplements,\n* Internet-based services, and\n* support services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. YOU MAY CHOOSE NOT TO ACCEPT THESE TERMS, IN WHICH CASE YOU MAY NOT USE THE SOFTWARE (IF YOU HAVE NOT ALREADY INSTALLED IT) OR WITHDRAW YOUR ACCEPTANCE ANY TIME BY UNINSTALLING THE SOFTWARE.\n\nIf you comply with these license terms, you have the rights below.\n\n1. INSTALLATION AND USE RIGHTS.\n\n a. Installation and Use.\n\n* You may install and use any number of copies of the software on your devices to design, develop and test your programs.\n\n b. Other Microsoft Programs. The software includes other Microsoft SQL Server technologies, Microsoft Visual Studio 2015 Shell (Isolated) Redistributable Package, Microsoft Visual Studio 2015 Shell (Integrated) Redistributable Package, Microsoft Visual Studio Tools for Applications 2015, .NET Framework, Visual C++ Redistributable for Visual Studio 2015, and Microsoft Report Viewer 2016 Runtime in conjunction with the software licensed here. These components are governed by separate agreements and their own product support policies, as described in the license terms found in the installation directory for that component or in the \"Licenses\" folder accompanying the software.\n\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\n\n a. Distributable Code.\n\n i. Right to Use and Distribute. If you comply with the terms below:\n\n* You may copy and distribute the object code form of the Microsoft SQL Server Data-Tier Application Framework (\"Distributable Code\") in programs you develop; and\n\n* You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\n\n ii. Distribution Requirements. For any Distributable Code you distribute, you must\n\n* add significant primary functionality to it in your programs;\n\n* for any Distributable Code having a filename extension of .lib, distribute only the results of running such Distributable Code through a linker with your program;\n\n* distribute Distributable Code included in a setup program only as part of that setup program without modification;\n\n* require distributors and external end users to agree to the Microsoft license terms included as part of our software setup program;\n\n* display your valid copyright notice on your programs; and\n\n* indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\n\n iii. Distribution Restrictions. You may not\n\n* alter any copyright, trademark or patent notice in the Distributable Code;\n\n* use Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\n\n* distribute Distributable Code to run on a platform other than the Windows platform;\n\n* include Distributable Code in malicious, deceptive or unlawful programs; or\n\n* modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\n\n* the code be disclosed or distributed in source code form; or\n\n* others have the right to modify it.\n\n3. INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software. It may change or cancel them at any time. You may not use these devices in any way that could harm them or impair anyone else\u2019s use of them. You may not use the services to try to gain unauthorized access to any service, data, account or network by any means.\n\n a. SQL Server Reporting Services Map Report Item. The software may include features that retrieve content such as maps, images and other data through the Bing Maps (or successor branded) application programming interface (the \"Bing Maps APIs\"). The purpose of these features is to create reports displaying data on top of maps, aerial and hybrid imagery. If these features are included, you may use them to create and view dynamic or static documents. This may be done only in conjunction with and through methods and means of access integrated in the software. You may not otherwise copy, store, archive, or create a database of the content available through the Bing Maps APIs. You may not use the following for any purpose even if they are available through the Bing Maps APIs:\n\n* Bing Maps APIs to provide sensor based guidance/routing, or\n\n* any Road Traffic Data or Bird\u2019s Eye Imagery (or associated metadata).\n\nYour use of Bing Maps is also governed by the Bing Maps End User Terms of Use available at http://go.microsoft.com/?linkid=9710837 and the Bing Maps Privacy Statement available at http://go.microsoft.com/fwlink/?LinkID=248686.\n\n b. This software is designed to allow users of SQL Server Integration Services (SSIS) to (a) move data between on-premises data-stores and Microsoft online services and (b) trigger certain actions in Microsoft online services. In order to do this, the software uses Internet Protocols to (i) send data, including your own data as designated by you and data about the software\u2019s configuration, to these services, and (ii) request data, including your own data as designated by you and data about the nature and configuration of your Microsoft online services, from these services. Once you configure the software to communicate with these services, you may not receive separate notices when the software connects to these services.\n\n4. FEEDBACK. If you give feedback about the software to Microsoft, you give to Microsoft, without charge, the right to use, share and commercialize your feedback in any way and for any purpose. You also give to third parties, without charge, any patent rights needed for their products, technologies and services to use or interface with any specific parts of a Microsoft software or service that includes the feedback. You will not give feedback that is subject to a license that requires Microsoft to license its software or documentation to third parties because we include your feedback in them. These rights survive this agreement.\n\n5. THIRD PARTY NOTICES. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file accompanying the software. Even if such components are governed by other agreements, the disclaimers and the limitations on and exclusions of damages below also apply.\n\n6. .NET FRAMEWORK SOFTWARE. The software contains Microsoft .NET Framework software. This software is part of Windows. The license terms for Windows apply to your use of the .NET Framework software.\n\n7. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n* disclose the results of any benchmark tests of the software, other than the Microsoft .NET Framework (see separate term above), to any third party without Microsoft\u2019s prior written approval;\n\n* work around any technical limitations in the software;\n\n* reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\n* make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n\n* publish the software for others to copy;\n\n* rent, lease or lend the software;\n\n* transfer the software or this agreement to any third party; or\n\n* use the software for commercial software hosting services.\n\n8. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n9. UPDATES. The software may install automatic updates, which cannot be turned off. By using the software, you agree to receive automatic updates without any additional notice, and permit Microsoft to download and install them for you. You agree to obtain these updates only from Microsoft or Microsoft authorized sources. If you do not want software updates, disconnect your device from the internet or uninstall the software.\n\n10. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n11. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n12. APPLICABLE LAW.\n\n a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\n b. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n13. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n14. DISCLAIMER OF WARRANTY. The software is licensed \"as-is.\" You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights or statutory guarantees under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n\n FOR AUSTRALIA \u2013 You have statutory guarantees under the Australian Consumer Law and nothing in these terms is intended to affect those rights.\n\n15. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\n\nThis limitation applies to\n\n* anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\n* claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, these license terms are provided below in French.\n\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\u00e7ais.\n\nEXCLUSIONS DE GARANTIE. Le logiciel est conc\u00e9d\u00e9 sous licence \u00ab en l\u2019\u00e9tat \u00bb. Vous assumez tous les risques li\u00e9s \u00e0 son utilisation. Microsoft n\u2019accorde aucune garantie ou condition expresse. Vous pouvez b\u00e9n\u00e9ficier de droits des consommateurs suppl\u00e9mentaires dans le cadre du droit local, que ce contrat ne peut modifier. Lorsque cela est autoris\u00e9 par le droit local, Microsoft exclut les garanties implicites de qualit\u00e9, d\u2019ad\u00e9quation \u00e0 un usage particulier et d\u2019absence de contrefa\u00e7on.\n\nLIMITATION ET EXCLUSION DE RECOURS ET DE DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs limit\u00e9e uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\n\nCette limitation concerne :\n\ntoute affaire li\u00e9e au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers et\n\nles r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d\u2019une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\n\nElle s\u2019applique \u00e9galement m\u00eame si Microsoft connaissait l'\u00e9ventualit\u00e9 d'un tel dommage. La limitation ou exclusion ci-dessus peut \u00e9galement ne pas vous \u00eatre applicable, car votre pays n\u2019autorise pas l\u2019exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit.\n\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d\u2019autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si celles-ci ne le permettent pas.", + "json": "ms-sql-server-data-tools.json", + "yaml": "ms-sql-server-data-tools.yml", + "html": "ms-sql-server-data-tools.html", + "license": "ms-sql-server-data-tools.LICENSE" + }, + { + "license_key": "ms-sspl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ms-sspl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft Shared Source Permissive License (SS-PL) \nPublished: October 18, 2005 \n\nThis license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. \n\n1. Definitions \n\nThe terms \"reproduce,\" \"reproduction\" and \"distribution\" have the same meaning here as under U.S. copyright law. \n\n\"You\" means the licensee of the software. \n\n\"Licensed patents\" means any Licensor patent claims which read directly on the software as distributed by Licensor under this license. \n\n2. Grant of Rights \n\n(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, the Licensor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce the software, prepare derivative works of the software and distribute the software or any derivative works that you create. \n\n(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, the Licensor grants you a non-exclusive, worldwide, royalty-free patent license under licensed patents to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the software or derivative works of the software. \n\n3. Conditions and Limitations \n\n(A) No Trademark License- This license does not grant you any rights to use Licensor's name, logo, or trademarks. \n\n(B) If you begin patent litigation against the Licensor over patents that you think may apply to the software (including a cross-claim or counterclaim in a lawsuit), your license to the software ends automatically. \n\n(C) If you distribute copies of the software or derivative works, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. \n\n(D) If you distribute the software or derivative works in source code form you may do so only under this license (i.e., you must include a complete copy of this license with your distribution), and if you distribute the software or derivative works in compiled or object code form you may only do so under a license that complies with this license. \n\n(E) The software is licensed \"as-is.\" You bear the risk of using it. The Licensor gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the Licensor excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.", + "json": "ms-sspl.json", + "yaml": "ms-sspl.yml", + "html": "ms-sspl.html", + "license": "ms-sspl.LICENSE" + }, + { + "license_key": "ms-sysinternals-sla", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-sysinternals-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sysinternals Software License Terms\n\n 09/27/2009\n 5 minutes to read\n Contributors\n markruss Kent Sharkey \n\nThese license terms are an agreement between Sysinternals (a wholly owned subsidiary of Microsoft Corporation) and you. Please read them. They apply to the software you are downloading from technet.microsoft.com/sysinternals, which includes the media on which you received it, if any. The terms also apply to any Sysinternals\n\n updates,\n supplements,\n Internet-based services,\n and support services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\n\nIf you comply with these license terms, you have the rights below.\nInstallation and User Rights\n\nYou may install and use any number of copies of the software on your devices.\n\nScope of License\n\nThe software is licensed, not sold. This agreement only gives you some rights to use the software. Sysinternals reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n work around any technical limitations in the software;\n reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n publish the software for others to copy;\n rent, lease or lend the software;\n transfer the software or this agreement to any third party; or\n use the software for commercial software hosting services.\n\nSensitive Information\n\nPlease be aware that, similar to other debug tools that capture \u201cprocess state\u201d information, files saved by Sysinternals tools may include personally identifiable or other sensitive information (such as usernames, passwords, paths to files accessed, and paths to registry accessed). By using this software, you acknowledge that you are aware of this and take sole responsibility for any personally identifiable or other sensitive information provided to Microsoft or any other party through your use of the software.\n\nDocumentation\n\nAny person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\nExport Restrictions\n\nThe software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting .\n\nSupport Services\n\nBecause this software is \"as is,\" we may not provide support services for it.\n\nEntire Agreement\n\nThis agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\nApplicable Law\n\nUnited States . If you acquired the software in the United States , Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\nOutside the United States . If you acquired the software in any other country, the laws of that country apply.\nLegal Effect\n\nThis agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\nDisclaimer of Warranty\n\nThe software is licensed \"as-is.\" You bear the risk of using it. Sysinternals gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this agreement cannot change. To the extent permitted under your local laws, sysinternals excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n\nLimitation on and Exclusion of Remedies and Damages\n\nYou can recover from sysinternals and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\n\nThis limitation applies to\n\n anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Sysinternals knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\nPlease note: As this software is distributed in Quebec , Canada , some of the clauses in this agreement are provided below in French.\n\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\u00e7ais.\n\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel \u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Sysinternals n'accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits additionnels en vertu du droit local sur la protection dues consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\u00e9 marchande, d'ad\u00e9quation \u00e0 un usage particulier et d'absence de contrefa\u00e7on sont exclues.\n\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES DOMMAGES. Vous pouvez obtenir de Sysinternals et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\n\nCette limitation concerne :\n\n tout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\n les r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d'une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\n\nElle s'applique \u00e9galement, m\u00eame si Sysinternals connaissait ou devrait conna\u00eetre l'\u00e9ventualit\u00e9 d'un tel dommage. Si votre pays n'autorise pas l'exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l'exclusion ci-dessus ne s'appliquera pas \u00e0 votre \u00e9gard.\n\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d'autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si celles-ci ne le permettent pas.", + "json": "ms-sysinternals-sla.json", + "yaml": "ms-sysinternals-sla.yml", + "html": "ms-sysinternals-sla.html", + "license": "ms-sysinternals-sla.LICENSE" + }, + { + "license_key": "ms-testplatform-17.0.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-testplatform-17.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT VISUAL STUDIO TEST PLATFORM\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have different terms.\n\nIF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW.\n\n1. INSTALLATION AND USE RIGHTS.\n\nYou may install and use any number of copies of the software.\n\n2. TERMS FOR SPECIFIC COMPONENTS.\n\na. Third Party Components. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software. Even if such components are governed by other agreements, the disclaimers and the limitations on and exclusions of damages below also apply.\n\n3. DATA. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the product documentation. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications and you should provide a copy of Microsoft\u2019s privacy statement to your users. The Microsoft privacy statement is located here https://go.microsoft.com/fwlink/?LinkId=521839. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.\n\n4. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n\u00b7 work around any technical limitations in the software;\n\n\u00b7 reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software except, and only to the extent required by third party licensing terms governing the use of certain open source components that may be included in the software;\n\n\u00b7 remove, minimize, block or modify any notices of Microsoft or its suppliers in the software;\n\n\u00b7 use the software in any way that is against the law; or\n\n\u00b7 share, publish, rent or lease the software, or provide the software as a stand-alone hosted as solution for others to use, or transfer the software or this agreement to any third party.\n\n5. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting.\n\n6. SUPPORT SERVICES. Because this software is \u201cas is,\u201d we may not provide support services for it.\n\n7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n8. APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply.\n\n9. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:\n\na. Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights.\n\nb. Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software.\n\nc. Germany and Austria.\n\n(i) Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software.", + "json": "ms-testplatform-17.0.0.json", + "yaml": "ms-testplatform-17.0.0.yml", + "html": "ms-testplatform-17.0.0.html", + "license": "ms-testplatform-17.0.0.LICENSE" + }, + { + "license_key": "ms-ttf-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-ttf-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft TrueType Fonts \nEND-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE \n---------------------------------------------------\nIMPORTANT - READ CAREFULLY: This Microsoft End-User License Agreement (\"EULA\") is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation for the Microsoft software accompanying this EULA, which includes computer software and may include associated media, printed materials, and \"on-line\" or electronic documentation (\"SOFTWARE PRODUCT\" or \"SOFTWARE\"). By exercising your rights to make and use copies of the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, you may not use the SOFTWARE PRODUCT.\n\nSOFTWARE PRODUCT LICENSE\nThe SOFTWARE PRODUCT is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The SOFTWARE PRODUCT is licensed, not sold.\n\n1. GRANT OF LICENSE. This EULA grants you the following rights:\n*\tInstallation and Use. You may install and use an unlimited number of copies of the SOFTWARE PRODUCT.\n*\tReproduction and Distribution. You may reproduce and distribute an unlimited number of copies of the SOFTWARE PRODUCT; provided that each copy shall be a true and complete copy, including all copyright and trademark notices, and shall be accompanied by a copy of this EULA. Copies of the SOFTWARE PRODUCT may not be distributed for profit either on a standalone basis or included as part of your own product.\n\n2.\tDESCRIPTION OF OTHER RIGHTS AND LIMITATIONS.\n*\tLimitations on Reverse Engineering, Decompilation, and Disassembly. You may not reverse engineer, decompile, or disassemble the SOFTWARE PRODUCT, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation.\n*\tRestrictions on Alteration. You may not rename, edit or create any derivative works from the SOFTWARE PRODUCT, other than subsetting when embedding them in documents.\n*\tSoftware Transfer. You may permanently transfer all of your rights under this EULA, provided the recipient agrees to the terms of this EULA.\n*\tTermination. Without prejudice to any other rights, Microsoft may terminate this EULA if you fail to comply with the terms and conditions of this EULA. In such event, you must destroy all copies of the SOFTWARE PRODUCT and all of its component parts.\n\n3. COPYRIGHT. All title and copyrights in and to the SOFTWARE PRODUCT (including but not limited to any images, text, and \"applets\" incorporated into the SOFTWARE PRODUCT), the accompanying printed materials, and any copies of the SOFTWARE PRODUCT are owned by Microsoft or its suppliers. The SOFTWARE PRODUCT is protected by copyright laws and international treaty provisions. Therefore, you must treat the SOFTWARE PRODUCT like any other copyrighted material.\n\n4.\tU.S. GOVERNMENT RESTRICTED RIGHTS. The SOFTWARE PRODUCT and documentation are provided with RESTRICTED RIGHTS. Use, duplication, or disclosure by the Government is subject to restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs (c)(1) and (2) of the Commercial Computer Software-Restricted Rights at 48 CFR 52.227-19, as applicable. Manufacturer is Microsoft Corporation/One Microsoft Way/Redmond, WA 98052-6399.\n\nLIMITED WARRANTY\nNO WARRANTIES. Microsoft expressly disclaims any warranty for the SOFTWARE PRODUCT. The SOFTWARE PRODUCT and any related documentation is provided \"as is\" without warranty of any kind, either express or implied, including, without limitation, the implied warranties or merchantability, fitness for a particular purpose, or noninfringement. The entire risk arising out of use or performance of the SOFTWARE PRODUCT remains with you.\nNO LIABILITY FOR CONSEQUENTIAL DAMAGES. In no event shall Microsoft or its suppliers be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or any other pecuniary loss) arising out of the use of or inability to use this Microsoft product, even if Microsoft has been advised of the possibility of such damages. Because some states/jurisdictions do not allow the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply to you.\n\nMISCELLANEOUS If you acquired this product in the United States, this EULA is governed by the laws of the State of Washington. If this product was acquired outside the United States, then local laws may apply. Should you have any questions concerning this EULA, or if you desire to contact Microsoft for any reason, please contact the Microsoft subsidiary serving your country, or write: Microsoft Sales Information Center/One Microsoft Way/Redmond, WA 98052-6399.", + "json": "ms-ttf-eula.json", + "yaml": "ms-ttf-eula.yml", + "html": "ms-ttf-eula.html", + "license": "ms-ttf-eula.LICENSE" + }, + { + "license_key": "ms-typescript-msbuild-4.1.4", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-typescript-msbuild-4.1.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT TYPESCRIPT SOFTWARE DEVELOPMENT KIT\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one \nof its affiliates) and you. They apply to the software named above. The terms also apply to any Microsoft \nservices or updates for the software, except to the extent those have additional terms.\n\nIF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW.\n\n1.\tINSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software.\n\n2.\tTERMS FOR SPECIFIC COMPONENTS. \n\na.\tUtilities. The software may contain some items on the Utilities List at \nhttps://go.microsoft.com/fwlink/?linkid=823097. You may copy and install these Utilities, if \nincluded with the software, onto devices to debug and deploy your applications and databases \nyou developed with the software. Please note that Utilities are designed for temporary use, that \nMicrosoft may not be able to patch or update Utilities separately from the rest of the software, \nand that some Utilities by their nature may make it possible for others to access devices on which \nthe Utilities are installed. As a result, you should delete all Utilities you have installed after you \nfinish debugging or deploying your applications and databases. Microsoft is not responsible for \nany third party use or access of Utilities you install on any device.\n\nb.\tMicrosoft Platforms. The software may include components from Microsoft Windows; \nMicrosoft Windows Server; Microsoft SQL Server; Microsoft Exchange; Microsoft Office; and \nMicrosoft SharePoint. These components are governed by separate agreements and their own \nproduct support policies, as described in the Microsoft \"Licenses\" folder accompanying the \nsoftware, except that, if license terms for those components are also included in the associated \ninstallation directory, those license terms control.\n\nc.\tThird Party Components. The software may include third party components with separate \nlegal notices or governed by other agreements, as may be described in the ThirdPartyNotices \nfile(s) accompanying the software. \n\n3.\tDATA. \n\na.\tData Collection. The software may collect information about you and your use of the software, \nand send that to Microsoft. Microsoft may use this information to provide services and improve \nour products and services. You may opt-out of many of these scenarios, but not all, as described \nin the product documentation. There are also some features in the software that may enable \nyou and Microsoft to collect data from users of your applications. If you use these features, you \nmust comply with applicable law, including providing appropriate notices to users of your \napplications together with a copy of Microsoft's privacy statement. Our privacy statement is \nlocated at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data \ncollection and use in the help documentation and our privacy statement. Your use of the software \noperates as your consent to these practices.\n\nb.\tProcessing of Personal Data. To the extent Microsoft is a processor or subprocessor of \npersonal data in connection with the software, Microsoft makes the commitments in the \nEuropean Union General Data Protection Regulation Terms of the Online Services Terms to all \ncustomers effective May 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr. \n\n4.\tSCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights \nto use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights \ndespite this limitation, you may use the software only as expressly permitted in this agreement. In \ndoing so, you must comply with any technical limitations in the software that only allow you to use it \nin certain ways. For more information, see www.microsoft.com/licensing/userights. You may not\n*\twork around any technical limitations in the software;\n*\treverse engineer, decompile or disassemble the software, or attempt to do so, except and only to \nthe extent required by third party licensing terms governing use of certain open-source \ncomponents that may be included with the software;\n*\tremove, minimize, block or modify any notices of Microsoft or its suppliers in the software; \n*\tuse the software in any way that is against the law; or\n*\tshare, publish, rent, or lease the software, or provide the software as a stand-alone offering for \nothers to use.\n\n5.\tEXPORT RESTRICTIONS. You must comply with all domestic and international export laws and \nregulations that apply to the software, which include restrictions on destinations, end users and end \nuse. For further information on export restrictions, visit (aka.ms/exporting).\n\n6.\tSUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n7.\tENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based \nservices and support services that you use, are the entire agreement for the software and support \nservices.\n\n8.\tAPPLICABLE LAW. If you acquired the software in the United States, Washington law applies to \ninterpretation of and claims for breach of this agreement, and the laws of the state where you live \napply to all other claims. If you acquired the software in any other country, its laws apply.\n\n9.\tCONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. \nYou may have other rights, including consumer rights, under the laws of your state or country. \nSeparate and apart from your relationship with Microsoft, you may also have rights with respect to \nthe party from which you acquired the software. This agreement does not change those other rights \nif the laws of your state or country do not permit it to do so. For example, if you acquired the \nsoftware in one of the below regions, or mandatory country law applies, then the following provisions \napply to you:\n\na.\tAustralia. You have statutory guarantees under the Australian Consumer Law and nothing in \nthis agreement is intended to affect those rights.\n\nb.\tCanada. If you acquired this software in Canada, you may stop receiving updates by turning off \nthe automatic update feature, disconnecting your device from the Internet (if and when you re-\nconnect to the Internet, however, the software will resume checking for and installing updates), \nor uninstalling the software. The product documentation, if any, may also specify how to turn off \nupdates for your specific device or software.\n\nc.\tGermany and Austria.\n(i)\tWarranty. The properly licensed software will perform substantially as described in any \nMicrosoft materials that accompany the software. However, Microsoft gives no contractual \nguarantee in relation to the licensed software.\n(ii)\tLimitation of Liability. In case of intentional conduct, gross negligence, claims based \non the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is \nliable according to the statutory law.\n\nSubject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is \nin breach of such material contractual obligations, the fulfillment of which facilitate the due \nperformance of this agreement, the breach of which would endanger the purpose of this \nagreement and the compliance with which a party may constantly trust in (so-called \"cardinal \nobligations\"). In other cases of slight negligence, Microsoft will not be liable for slight negligence.\n\n10.\tDISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK \nOF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR \nCONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT \nEXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A \nPARTICULAR PURPOSE AND NON-INFRINGEMENT. \n\n11.\tLIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT \nAND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER \nANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, \nINDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to (a) anything related to the software, services, content (including code) on \nthird party Internet sites, or third party applications; and (b) claims for breach of contract, breach of \nwarranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by \napplicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. \nThe above limitation or exclusion may not apply to you because your country may not allow the \nexclusion or limitation of incidental, consequential or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, some of the clauses in this \nagreement are provided below in French.\nRemarque : Ce logiciel \ufffdtant distribu\ufffd au Qu\ufffdbec, Canada, certaines des clauses dans ce \ncontrat sont fournies ci-dessous en fran\ufffdais.\n\nEXON\ufffdRATION DE GARANTIE. Le logiciel vis\ufffd par une licence est offert \" tel quel \". Toute utilisation \nde ce logiciel est \ufffd votre seule risque et p\ufffdril. Microsoft n'accorde aucune autre garantie expresse. Vous \npouvez b\ufffdn\ufffdficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que \nce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de \nqualit\ufffd marchande, d'ad\ufffdquation \ufffd un usage particulier et d'absence de contrefa\ufffdon sont exclues.\n\nLIMITATION DES DOMMAGES-INT\ufffdR\ufffdTS ET EXCLUSION DE RESPONSABILIT\ufffd POUR LES \nDOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de \ndommages directs uniquement \ufffd hauteur de 5,00 $ US. Vous ne pouvez pr\ufffdtendre \ufffd aucune \nindemnisation pour les autres dommages, y compris les dommages sp\ufffdciaux, indirects ou accessoires et \npertes de b\ufffdn\ufffdfices.\n\nCette limitation concerne:\n* \ttout ce qui est reli\ufffd au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites \nInternet tiers ou dans des programmes tiers ; et\n* les r\ufffdclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\ufffd stricte, \nde n\ufffdgligence ou d'une autre faute dans la limite autoris\ufffde par la loi en vigueur.\nElle s'applique \ufffdgalement, m\ufffdme si Microsoft connaissait ou devrait conna\ufffdtre l'\ufffdventualit\ufffd d'un tel \ndommage. Si votre pays n'autorise pas l'exclusion ou la limitation de responsabilit\ufffd pour les dommages \nindirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l'exclusion ci-dessus \nne s'appliquera pas \ufffd votre \ufffdgard.\n\nEFFET JURIDIQUE. Le pr\ufffdsent contrat d\ufffdcrit certains droits juridiques. Vous pourriez avoir d'autres \ndroits pr\ufffdvus par les lois de votre pays. Le pr\ufffdsent contrat ne modifie pas les droits que vous conf\ufffdrent \nles lois de votre pays si celles-ci ne le permettent pas.\n\n2019AUG09_RTM_EXT\n(Typescript SDK)", + "json": "ms-typescript-msbuild-4.1.4.json", + "yaml": "ms-typescript-msbuild-4.1.4.yml", + "html": "ms-typescript-msbuild-4.1.4.html", + "license": "ms-typescript-msbuild-4.1.4.LICENSE" + }, + { + "license_key": "ms-visual-2008-runtime", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-2008-runtime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT VISUAL C++ 2008 RUNTIME LIBRARIES (X86, IA64 AND X64)\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\n\u00a5 updates,\n\n\u00a5 supplements,\n\n\u00a5 Internet-based services, and \n\n\u00a5 support services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\n\nIf you comply with these license terms, you have the rights below.\n\n1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices.\n\n2. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n\u00a5 disclose the results of any benchmark tests of the software to any third party without Microsoft\u0092s prior written approval;\n\n\u00a5 work around any technical limitations in the software;\n\n\u00a5 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\n\u00a5 make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n\n\u00a5 publish the software for others to copy;\n\n\u00a5 rent, lease or lend the software;\n\n\u00a5 transfer the software or this agreement to any third party; or\n\n\u00a5 use the software for commercial software hosting services.\n\n3. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n4. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n5. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n6. SUPPORT SERVICES. Because this software is as is, we may not provide support services for it.\n\n7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n8. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n9. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n10. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED AS-IS. YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n11. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\nThis limitation applies to\n\n\u00a5 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\n\u00a5 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.", + "json": "ms-visual-2008-runtime.json", + "yaml": "ms-visual-2008-runtime.yml", + "html": "ms-visual-2008-runtime.html", + "license": "ms-visual-2008-runtime.LICENSE" + }, + { + "license_key": "ms-visual-2010-runtime", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-2010-runtime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT VISUAL C++ 2010 RUNTIME LIBRARIES\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\u2022\tupdates,\n\u2022\tsupplements,\n\u2022\tInternet-based services, and \n\u2022\tsupport services\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\nIf you comply with these license terms, you have the rights below.\n\n1.\tINSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices.\n\n2.\tScope of License. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\u2022\tdisclose the results of any benchmark tests of the software to any third party without Microsoft\u2019s prior written approval;\n\u2022\twork around any technical limitations in the software;\n\u2022\treverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\u2022\tmake more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n\u2022\tpublish the software for others to copy;\n\u2022\trent, lease or lend the software;\n\u2022\ttransfer the software or this agreement to any third party; or\n\u2022\tuse the software for commercial software hosting services.\n\n3.\tBACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n4.\tDOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n5.\tExport Restrictions. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n6.\tSUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n7.\tEntire Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n8.\tApplicable Law.\na.\tUnited States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\nb.\tOutside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n9.\tLegal Effect. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n10.\tDisclaimer of Warranty. The software is licensed \"as-is.\" You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n\n11.\tLimitation on and Exclusion of Remedies and Damages. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\nThis limitation applies to\n\u2022\tanything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\u2022\tclaims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.", + "json": "ms-visual-2010-runtime.json", + "yaml": "ms-visual-2010-runtime.yml", + "html": "ms-visual-2010-runtime.html", + "license": "ms-visual-2010-runtime.LICENSE" + }, + { + "license_key": "ms-visual-2015-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-2015-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT VISUAL STUDIO 2015 SOFTWARE DEVELOPMENT KIT\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have additional terms.\n\nIF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW.\n\n INSTALLATION AND USE RIGHTS.\n Installation and Use. One user may use the software to develop and test their applications.\n Demo Use. The uses permitted above include use of the software in demonstrating your applications.\n Backup Copy. You may make one backup copy of the software, for reinstalling the software.\n DISTRIBUTABLE CODE. The software contains code that you are permitted to distribute in applications you develop as described in this Section. (For this Section the term \u201cdistribution\u201d also means deployment of your applications for third parties to access over the Internet.)\n Right to Use and Distribute. The code and text files listed below are \u201cDistributable Code.\u201d\n REDIST.TXT Files. You may copy and distribute the object code form of code listed on the REDIST list located at: http://go.microsoft.com/fwlink/?LinkId=523763&clcid=0x409.\n Sample Code and Templates and Styles. You may copy, modify and distribute the source and object code form of code marked as \u201csample\u201d, \u201ctemplate\u201d, and \u201cSimple Styles\u201d or \u201cSketch Styles\u201d.\n Image Library. You may copy and distribute images, graphics and animations in the Image Library as described in the software documentation.\n Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications.\n Distribution Requirements. For any Distributable Code you distribute, you must:\n add significant primary functionality to it in your applications;\n require distributors and external end users to agree to terms that protect the Distributable Code at least as much as this agreement and, except that with respect to the Visual Studio Shell, you must require your customers to agree to terms that protect the Shell at least as much as its Microsoft Software License Terms, which grant your customers installation and use rights to the Visual Studio Shell; and,\n indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the Distributable Code.\n Distribution Restrictions. You may not:\n use Microsoft\u2019s trademarks in your applications\u2019 names or branding in a way that suggests your applications come from or are endorsed by Microsoft; or,\n modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that (i) the code be disclosed or distributed in source code form; or (ii) others have the right to modify it.\n Developing for the Visual Studio Shell (Integrated and Isolated Modes). In addition to the requirements and restrictions for Distributable Code described above, the following applies to your applications that work with a Visual Studio Shell:\n Visual Studio Shell (Isolated) \u2013 Product Information. You will not alter or hide our Visual Studio sub-branding in the corner of the splash screen of the Visual Studio Shell (Isolated), and you will supply your own primary branding for your applications to indicate to your customers that such applications are yours.\n Limits on Extensions. You will not develop or enable others to develop extensions for Visual Studio which circumvent the technical limitations implemented in the software. For example, there are technical limitations in the Visual Studio Shell (Isolated) such that extensions to it may not load certain Microsoft packages (including packages from commercial Visual Studio product software) that may already be installed in the end user\u2019s machine.\n No Degrading Visual Studio. You will design and test the installation, uninstallation, and operation of your applications to ensure that such processes do not disable any features or adversely affect the functionality of any edition of the Visual Studio family of products.\n DATA.\n Collection and Use. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the product documentation. There are also some features in the software that may enable you to collect data from users of your applications. If you use these features to enable data collection in your applications, you must comply with applicable law, including providing appropriate notices to users of your applications. You can learn more about data collection and use in the help documentation and the privacy statement at http://go.microsoft.com/fwlink/?LinkID=528096. Your use of the software operates as your consent to these practices.\n Automatic Download Feature. The Visual Studio Shell includes a feature that will detect whether your customer\u2019s machine contains Microsoft components that are needed for the Visual Studio Shell to run, such as the .NET Framework. Visual Studio Shells will automatically download and install such components over the Internet if they are not present on your customer\u2019s machine. Visual Studio Shell does not notify the user that such components are being installed. You will comply with all applicable laws and notice obligations necessary to inform your customer of this automatic download feature.\n SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n work around any technical limitations in the software;\n reverse engineer, decompile or disassemble the software, or attempt to do so, except, and only to the extent required by third party licensing terms governing the use of certain open-source components that may be included with the software;\n remove, minimize, block or modify any notices of Microsoft or its suppliers in the software;\n use the software in any way that is against the law; or\n share, publish, rent or lease the software, or provide the software as a stand-alone hosted solution for others to use.\n EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit (aka.ms/exporting).\n SUPPORT SERVICES. Because this software is \u201cas is,\u201d we may not provide support services for it.\n ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply.\n CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:\n Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights.\n Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software.\n Germany and Austria.\n Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software.\n Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law.\n\n Subject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called \u201ccardinal obligations\u201d). In other cases of slight negligence, Microsoft will not be liable for slight negligence.\n DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \u201cAS-IS.\u201d YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.\n\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\u00e7ais.\n\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel \u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft n\u2019accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits additionnels en vertu du droit local sur la protection dues consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\u00e9 marchande, d\u2019ad\u00e9quation \u00e0 un usage particulier et d\u2019absence de contrefa\u00e7on sont exclues.\n\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices.\n\nCette limitation concerne:\n\n tout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\n les r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d\u2019une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\n\nElle s\u2019applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre l\u2019\u00e9ventualit\u00e9 d\u2019un tel dommage. Si votre pays n\u2019autorise pas l\u2019exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\u2019exclusion ci-dessus ne s\u2019appliquera pas \u00e0 votre \u00e9gard.\n\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d\u2019autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si celles ci ne le permettent pas.", + "json": "ms-visual-2015-sdk.json", + "yaml": "ms-visual-2015-sdk.yml", + "html": "ms-visual-2015-sdk.html", + "license": "ms-visual-2015-sdk.LICENSE" + }, + { + "license_key": "ms-visual-cpp-2015-runtime", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-cpp-2015-runtime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT VISUAL C++ 2015 - 2022 RUNTIME\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have different terms.\n\nIF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW.\n\n1. INSTALLATION AND USE RIGHTS.\n\nYou may install and use any number of copies of the software.\n\n2. TERMS FOR SPECIFIC COMPONENTS.\n\na. Microsoft Platforms. The software may include components from Microsoft Windows; Microsoft Windows Server; Microsoft SQL Server; Microsoft Exchange; Microsoft Office; and Microsoft SharePoint. These components are governed by separate agreements and their own product support policies, as described in the Microsoft \u201cLicenses\u201d folder accompanying the software, except that, if license terms for those components are also included in the associated installation directory, those license terms control.\n\nb. Third Party Components. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the notices file(s) accompanying the software.\n\n3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n\u00b7 work around any technical limitations in the software;\n\n\u00b7 reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software except, and only to the extent required by third party licensing terms governing the use of certain open source components that may be included in the software;\n\n\u00b7 remove, minimize, block or modify any notices of Microsoft or its suppliers in the software;\n\n\u00b7 use the software in any way that is against the law;\n\n\u00b7 share, publish, rent or lease the software; or\n\n\u00b7 provide the software as a stand-alone offering or combined with any of your applications for others to use, or transfer the software or this agreement to any third party.\n\n4. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting.\n\n5. SUPPORT SERVICES. Because this software is \u201cas is,\u201d we may not provide support services for it.\n\n6. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n7. APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply.\n\n8. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:\n\na. Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights.\n\nb. Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software.\n\nc. Germany and Austria.\n\n(i) Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software.\n\n(ii) Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law.\n\nSubject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called \"cardinal obligations\"). In other cases of slight negligence, Microsoft will not be liable for slight negligence.\n\n9. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \u201cAS-IS.\u201d YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n10. LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\nEULA ID: Cpp_2015-2022_ENU.1033", + "json": "ms-visual-cpp-2015-runtime.json", + "yaml": "ms-visual-cpp-2015-runtime.yml", + "html": "ms-visual-cpp-2015-runtime.html", + "license": "ms-visual-cpp-2015-runtime.LICENSE" + }, + { + "license_key": "ms-visual-studio-2017", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT VISUAL STUDIO ENTERPRISE 2017, VISUAL STUDIO PROFESSIONAL 2017, VISUAL STUDIO TEST PROFESSIONAL 2017 AND TRIAL EDITION\n\nThese license terms are an agreement between you and Microsoft Corporation (or based on where you live, one of its affiliates). They apply to the software named above. The terms also apply to any Microsoft services and updates for the software, except to the extent those have different terms.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE. INSTEAD, RETURN IT TO THE RETAILER FOR A REFUND OR CREDIT. If you cannot obtain a refund there, contact Microsoft about Microsoft\u2019s refund policies. See www.microsoft.com/worldwide. In the United States and Canada, call (800) MICROSOFT or see www.microsoft.com/info/nareturns.htm.\n\n________________________________________________________________________________________\n\nTRIAL EDITION USE RIGHTS. If the software is a trial edition, this Section applies to your use of the trial edition.\n\nA. GENERAL. You may use any number of copies of the trial edition on your devices. You may only use the trial edition for internal evaluation purposes, and only during the trial period. You may not distribute or deploy any applications you make with the trial edition to a production environment. You may run load tests of up to 250 virtual users during the trial period.\n\nB. TRIAL PERIOD AND CONVERSION. The trial period lasts for 30 days after you install the trial edition, plus any permitted extension period. After the expiration of the trial period, the trial edition will stop running. You may extend the trial period an additional 90 days if you sign in to the software. You may not be able to access data used with the trial edition when it stops running. You may convert your trial rights at any time to the full-use rights described below by acquiring a valid full-use license.\n\nC. DISCLAIMER OF WARRANTY. THE TRIAL EDITION IS LICENSED \u201cAS-IS.\u201d YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nFOR AUSTRALIA \u2013 YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS.\n\nD. SUPPORT. Because the trial edition is \u201cas is,\u201d we may not provide support services for it.\n\nE. LIMITATIONS ON DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to (a) anything related to the trial version, services, content (including code) on third party Internet sites, or third party programs; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\nFULL-USE LICENSE TERMS FOR THE SOFTWARE: When you acquire a valid license and either enter a product key or sign in to the software, the terms below apply. You may not share your product key or access credentials.\n\n1. OVERVIEW.\n\na. Software. The software includes development tools, applications and documentation.\n\nb. License Model. The software is licensed on a per user basis.\n\n2. USE RIGHTS.\n\na. General. One user may use copies of the software on your devices to develop and test applications. This includes using copies of the software on your own internal servers that remain fully dedicated to your own use. You may not, however, separate the components of the software and run those in a production environment,\n\nor on third party devices (except as otherwise stated in this agreement), or for any purpose other than developing and testing your applications. Running the software on Microsoft Azure requires a separate license.\n\nb. Workloads. These license terms apply to your use of the Workloads made available to you within the software, except to the extent a Workload or a Workload component comes with different terms.\n\nc. Demo Use. The use permitted above includes use of the software in demonstrating your applications.\n\nd. Backup copy. You may make one backup copy of the software, for reinstalling the software.\n\n3. TERMS FOR SPECIFIC COMPONENTS. a. Utilities. The software contains items on the Utilities List at https://go.microsoft.com/fwlink/?linkid=823097. You may copy and install those items, if included with the software, onto your devices to debug and deploy your applications and databases you developed with the software. Please note that Utilities are designed for temporary use, that Microsoft may not be able to patch or update Utilities separately from the rest of the software, and that some Utilities by their nature may make it possible for others to access the devices on which they are installed. As a result, you should delete all Utilities you have installed after you finish debugging or deploying your applications and databases. Microsoft is not responsible for any third party use or access of Utilities you install on any device.\n\nb. Build Tools. You may copy and install files from the software onto your build devices, including physical devices and virtual machines or containers on those machines, whether on-premises or remote machines that are owned by you, hosted on Azure for you, or dedicated solely to your use (collectively, \u201cBuild Devices\u201d). You and others in your organization may use these files on your Build Devices solely to compile, build, and verify applications or run quality or performance tests of those applications as part of the build process. For clarity, \u201capplications\u201d means applications developed by you and others in your organization who are each licensed to use the software.\n\nc. Font Components. While the software is running, you may use its fonts to display and print content. You may only: (i) embed fonts in content as permitted by the embedding restrictions in the fonts; and (ii) temporarily download them to a printer or other output device to help print content.\n\nd. Licenses for Other Components.\n\n\u00b7 Microsoft Platforms. The software may include components from Microsoft Windows; Microsoft Windows Server; Microsoft SQL Server; Microsoft Exchange; Microsoft Office; and Microsoft SharePoint. These components are governed by separate agreements and their own product support policies, as described in the Microsoft \u201cLicenses\u201d folder accompanying the software, except that, if separate license terms for those components are included in the associated installation directly, those license terms control.\n\n\u00b7 Developer resources. The software includes compilers, languages, runtimes, environments, and other resources. These components may be governed by separate agreements and have their own product support policies. A list of these other components is located at https://support.microsoft.com.\n\nThird Party Components. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software.\n\ne. PACKAGE MANAGERS. The software includes package managers, like NuGet, that give you the option to download other Microsoft and third party software packages to use with your application. Those packages are under their own licenses, and not this agreement. Microsoft does not distribute, license or provide any warranties for any of the third party packages.\n\n4. DISTRIBUTABLE CODE. The software contains code that you are permitted to distribute in applications you develop as described in this Section. (For this Section the term \u201cdistribution\u201d also means deployment of your applications for third parties to access over the Internet.)\n\na. Right to Use and Distribute. The code and text files listed below are \u201cDistributable Code.\u201d\n\n* REDIST.TXT Files. You may copy and distribute the object code form of code listed on the REDIST list located at https://go.microsoft.com/fwlink/?linkid=823097.\n\n* Sample Code, Templates and Styles. You may copy, modify and distribute the source and object code form of code marked as \u201csample\u201d, \u201ctemplate\u201d, \u201csimple styles\u201d and \u201csketch styles\u201d.\n\n* Image Library. You may copy and distribute images, graphics and animations in the Image Library as described in the software documentation.\n\n* Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications.\n\nb. Distribution Requirements. For any Distributable Code you distribute, you must:\n\n* add significant primary functionality to it in your applications;\n\n* require distributors and external end users to agree to terms that protect the Distributable Code at least as much as this agreement; and\n\n* indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the Distributable Code.\n\nc. Distribution Restrictions. You may not:\n\n* use Microsoft\u2019s trademarks in your applications\u2019 names or in a way that suggests your applications come from or are endorsed by Microsoft; or\n\n* modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it.\n\n5. DATA.\n\na. Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the product documentation. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with Microsoft\u2019s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.\n\nb. Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at http://go.microsoft.com/?linkid=9840733.\n\n6. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n* work around any technical limitations in the software;\n\n* reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software;\n\n* remove, minimize, block or modify any notices of Microsoft or its suppliers in the software;\n\n* use the software in any way that is against the law;\n\n* share, publish, rent or lease the software, or provide the software as a stand-alone offering for others to use.\n\n7. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n8. NOT FOR RESALE SOFTWARE. You may not sell software marked as \u201cNFR\u201d or \u201cNot for Resale.\u201d\n\n9. RIGHTS TO USE OTHER VERSIONS AND LOWER EDITIONS. You may use the software and any prior version on any device. You may create, store, install, run, or access in place of the version licensed, a copy or\n\ninstance of a prior version, different permitted language version, or lower edition.\n\n10. PROOF OF LICENSE. If you acquired the software on a disc or other media, your proof of license is the Microsoft certificate of authenticity label, the accompanying product key, and your receipt. If you purchased an online copy of the software, your proof of license is the Microsoft product key you received with your purchase and your receipt and/or being able to access the software service through your Microsoft account. To identify genuine Microsoft software, see www.howtotell.com.\n\n11. TRANSFER TO A THIRD PARTY. If you are a valid licensee of the software, you may transfer it and this agreement directly to another party. Before the transfer, that party must agree that this agreement applies to the transfer and use of the software. The transfer must include the software, genuine Microsoft product key, and (if applicable) the Proof of License label. The transferor must uninstall all copies of the software after transferring it from the device. The transferor may not retain any copies of the genuine Microsoft product key to be transferred, and may only retain copies of the software if otherwise licensed to do so. If you have acquired a non-perpetual license to use the software or if the software is marked Not for Resale you may not transfer the software or the software license agreement to another party.\n\n12. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting. 13. SUPPORT. Microsoft provides support for the software as described at https://support.microsoft.com.\n\n14. ENTIRE AGREEMENT. This agreement (including the warranty below), and the terms for supplements, updates, Internet-based services and support services, are the entire agreement for the software and support services.\n\n15. APPLICABLE LAW. If you acquired the software in the United States, Washington State law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquire the software in any other country, its laws apply.\n\n16. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or if mandatory country law applies, then the following provisions apply to you:\n\na) Australia. References to \u201cLimited Warranty\u201d mean the express warranty provided by Microsoft or the manufacturer or installer. This warranty is in addition to other rights and remedies you may have under law, including your rights and remedies under the statutory guarantees in the Australian Consumer Law.\n\nIn this section, \u201cgoods\u201d refers to the software for which Microsoft or the manufacturer or installer provides the express warranty. Our goods come with guarantees that cannot be excluded under the Australian Consumer Law. You are entitled to a replacement or refund for a major failure and compensation for any other reasonably foreseeable loss or damage. You are also entitled to have the goods repaired or replaced if the goods fail to be of acceptable quality and the failure does not amount to a major failure.\n\nb) Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software.\n\nc) Germany and Austria.\n\n(i) Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software.\n\n(ii) Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, and death or personal or physical injury, Microsoft is liable according to the statutory law.\n\nSubject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called \"cardinal obligations\"). In other cases of slight negligence, Microsoft will not be liable for slight negligence.\n\n17. LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO THE AMOUNT YOU PAID FOR THE SOFTWARE. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state or country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\n*************************************************************************\n\nLIMITED WARRANTY\n\nA. LIMITED WARRANTY. If you follow the instructions, the software will perform substantially as described in the Microsoft materials that you receive in or with the software.\n\nReferences to \u201climited warranty\u201d are references to the express warranty provided by Microsoft. This warranty is given in addition to other rights and remedies you may have under law, including your rights and remedies in accordance with the statutory guarantees under local Consumer Law.\n\nB. TERM OF WARRANTY; WARRANTY RECIPIENT; LENGTH OF ANY IMPLIED WARRANTIES. THE LIMITED WARRANTY COVERS THE SOFTWARE FOR ONE YEAR AFTER ACQUIRED BY THE FIRST USER. IF YOU RECEIVE SUPPLEMENTS, UPDATES, OR REPLACEMENT SOFTWARE DURING THAT YEAR, THEY WILL BE COVERED FOR THE REMAINDER OF THE WARRANTY OR 30 DAYS, WHICHEVER IS LONGER. If the first user transfers the software, the remainder of the warranty will apply to the recipient.\n\nTO THE EXTENT PERMITTED BY LAW, ANY IMPLIED WARRANTIES, GUARANTEES OR CONDITIONS LAST ONLY DURING THE TERM OF THE LIMITED WARRANTY. Some states do not allow limitations on how long an implied warranty lasts, so these limitations may not apply to you. They also might not apply to you because some countries may not allow limitations on how long an implied warranty, guarantee or condition lasts.\n\nC. EXCLUSIONS FROM WARRANTY. This warranty does not cover problems caused by your acts (or failures to act), the acts of others, or events beyond Microsoft\u2019s reasonable control.\n\nD. REMEDY FOR BREACH OF WARRANTY. MICROSOFT WILL REPAIR OR REPLACE THE SOFTWARE AT NO CHARGE. IF MICROSOFT CANNOT REPAIR OR REPLACE IT, MICROSOFT WILL REFUND THE AMOUNT SHOWN ON YOUR RECEIPT FOR THE SOFTWARE. IT WILL ALSO REPAIR OR REPLACE SUPPLEMENTS, UPDATES AND REPLACEMENT SOFTWARE AT NO CHARGE. IF MICROSOFT CANNOT REPAIR OR REPLACE THEM, IT WILL REFUND THE AMOUNT YOU PAID FOR THEM, IF ANY. YOU MUST UNINSTALL THE SOFTWARE AND RETURN ANY MEDIA AND OTHER ASSOCIATED MATERIALS TO MICROSOFT WITH PROOF OF PURCHASE TO OBTAIN A REFUND. THESE ARE YOUR ONLY REMEDIES FOR BREACH OF THE LIMITED WARRANTY.\n\nE. CONSUMER RIGHTS NOT AFFECTED. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS, WHICH THIS AGREEMENT CANNOT CHANGE.\n\nF. WARRANTY PROCEDURES. You need proof of purchase for warranty service.\n\n1. United States and Canada. For warranty service or information about how to obtain a refund for software acquired in the United States and Canada, contact Microsoft at:\n\n* (800) MICROSOFT;\n\n* Microsoft Customer Service and Support, One Microsoft Way, Redmond, WA 98052-6399; or\n\n* visit (aka.ms/nareturns).\n\n2. Europe, Middle East, and Africa. If you acquired the software in Europe, the Middle East, or Africa, Microsoft Ireland Operations Limited makes this limited warranty. To make a claim under this warranty, you should contact either:\n\n* Microsoft Ireland Operations Limited, Customer Care Centre, Atrium Building Block B, Carmanhall Road, Sandyford Industrial Estate, Dublin 18, Ireland; or\n\n* the Microsoft affiliate serving your country (see aka.ms/msoffices).\n\n3. Australia. For Warranty Services and to claim expenses in relation to the warranty (if applicable) for software acquired in Australia, contact Microsoft at:\n\n* 13 20 58; or\n\n* Microsoft Pty Ltd, 1 Epping Road, North Ryde NSW 2113, Australia.\n\n4. Outside the United States, Canada, Europe, Middle East, Africa, and Australia. If you acquired the software outside the United States, Canada, Europe, the Middle East, Africa, and Australia, contact the Microsoft affiliate serving your country (see aka.ms/msoffices).\n\nG. NO OTHER WARRANTIES. THE LIMITED WARRANTY IS THE ONLY DIRECT WARRANTY FROM\n\nMICROSOFT. MICROSOFT GIVES NO OTHER EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. WHERE ALLOWED BY YOUR LOCAL LAWS, MICROSOFT EXCLUDES IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. If your local laws give you any implied warranties, guarantees or conditions, despite this exclusion, your remedies are described in the Remedy for Breach of Warranty clause above, to the extent permitted by your local laws.\n\nFOR AUSTRALIA ONLY. References to \u201cLimited Warranty\u201d are references to the warranty provided by Microsoft. This warranty is given in addition to other rights and remedies you may have under law, including your rights and remedies in accordance with the statutory guarantees under the Australian Consumer Law. Our goods come with guarantees that cannot be excluded under the Australian Consumer Law. You are entitled to a replacement or refund for a major failure and compensation for any other reasonably foreseeable loss or damage. You are also entitled to have the goods repaired or replaced if the goods fail to be of acceptable quality and the failure does not amount to a major failure. Goods presented for repair may be replaced by refurbished goods of the same type rather than being replaced. Refurbished parts may be used to repair the goods.\n\nH. LIMITATION ON AND EXCLUSION OF DAMAGES FOR BREACH OF WARRANTY. THE LIMITATION ON AND EXCLUSION OF DAMAGES CLAUSE ABOVE APPLIES TO BREACHES OF THIS LIMITED WARRANTY.\n\nTHIS WARRANTY GIVES YOU SPECIFIC LEGAL RIGHTS, AND YOU MAY ALSO HAVE OTHER RIGHTS WHICH VARY FROM STATE TO STATE. YOU MAY ALSO HAVE OTHER RIGHTS WHICH VARY FROM COUNTRY TO COUNTRY.\n\nEULA ID: VS2017_ENT_PRO_TRIAL_RTW.2_ENU", + "json": "ms-visual-studio-2017.json", + "yaml": "ms-visual-studio-2017.yml", + "html": "ms-visual-studio-2017.html", + "license": "ms-visual-studio-2017.LICENSE" + }, + { + "license_key": "ms-visual-studio-2017-tools", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-2017-tools", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT VISUAL STUDIO 2017 TOOLS, ADD-ONs and EXTENSIONS\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have different terms.\n\nIF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW.\n\n1. INSTALLATION AND USE RIGHTS.\n\nYou may install and use any number of copies of the software.\n\n2. TERMS FOR SPECIFIC COMPONENTS.\n\na. Utilities. The software may contain some items on the Utilities List at https://go.microsoft.com/fwlink/?linkid=823097. You may copy and install these Utilities, if included with the software, onto devices to debug and deploy your applications and databases you developed with the software. Please note that Utilities are designed for temporary use, that Microsoft may not be able to patch or update Utilities separately from the rest of the software, and that some Utilities by their nature may make it possible for others to access devices on which the Utilities are installed. As a result, you should delete all Utilities you have installed after you finish debugging or deploying your applications and databases. Microsoft is not responsible for any third party use or access of Utilities you install on any device.\n\nb. Build Tools. The software may include build tools which have specific use terms. For build tools, you may copy and install files from the software onto your build devices, including physical devices and virtual machines or containers on those machines, whether on-premises or remote machines that are owned by you, hosted on Azure for you, or dedicated solely to your use (collectively, \u201cBuild Devices\u201d). You and others in your organization may use these files on your Build Devices solely to compile, build, and verify applications or run quality or performance tests of those applications as part of the build process. For clarity, \u201capplications\u201d means applications developed by you and others in your organization who are each licensed to use the software.\n\nc. Microsoft Platforms. The software may include components from Microsoft Windows; Microsoft Windows Server; Microsoft SQL Server; Microsoft Exchange; Microsoft Office; and Microsoft SharePoint. These components are governed by separate agreements and their own product support policies, as described in the Microsoft \u201cLicenses\u201d folder accompanying the software, except that, if license terms for those components are also included in the associated installation directory, those license terms control.\n\nd. Third Party Components. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software.\n\n3. DATA.\n\na. Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the product documentation. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications and you should provide a copy of Microsoft\u2019s privacy statement to your users. The Microsoft privacy statement is located here https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.\n\nb. Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at http://go.microsoft.com/?linkid=9840733.\n\n4. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n\u00b7 work around any technical limitations in the software;\n\n\u00b7 reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the\n\nsoftware except, and only to the extent required by third party licensing terms governing the use of certain open source components that may be included in the software;\n\n\u00b7 remove, minimize, block or modify any notices of Microsoft or its suppliers in the software;\n\n\u00b7 use the software in any way that is against the law; or\n\n\u00b7 share, publish, rent or lease the software, or provide the software as a stand-alone hosted as solution for others to use, or transfer the software or this agreement to any third party.\n\n5. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting.\n\n6. SUPPORT SERVICES. Because this software is \u201cas is,\u201d we may not provide support services for it.\n\n7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n8. APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply.\n\n9. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:\n\na. Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights.\n\nb. Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software.\n\nc. Germany and Austria.\n\n(i) Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software.\n\n(ii) Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law.\n\nSubject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called \"cardinal obligations\"). In other cases of slight negligence, Microsoft will not be liable for slight negligence.\n\n10. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \u201cAS-IS.\u201d YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n11. LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above\n\nlimitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\nEULA ID: VS 2017_TOOLS_ADDONs_C++_RTW.3_ENU", + "json": "ms-visual-studio-2017-tools.json", + "yaml": "ms-visual-studio-2017-tools.yml", + "html": "ms-visual-studio-2017-tools.html", + "license": "ms-visual-studio-2017-tools.LICENSE" + }, + { + "license_key": "ms-visual-studio-code", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT VISUAL STUDIO CODE\n\nThese license terms are an agreement between Microsoft Corporation (or based on\nwhere you live, one of its affiliates) and you. They apply to the software named\nabove. The terms also apply to any Microsoft services or updates for the\nsoftware, except to the extent those have additional terms.\n\nIF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW.\n\n1. INSTALLATION AND USE RIGHTS.\n\na. General. You may use any number of copies of the software to develop and test\nyour applications, including deployment within your internal corporate network.\n\nb. Demo use. The uses permitted above include use of the software in demonstrating\nyour applications.\n\nc. Backup copy. You may make one or more backup copies of the software, for\nreinstalling the software.\n\nd. Third Party Programs. The software may include third party components with\nseparate legal notices or governed by other agreements, as described in the\nThirdPartyNotices file accompanying the software. Even if such components are\ngoverned by other agreements, the disclaimers and the limitations on and\nexclusions of damages below also apply.\n\nThe software contains third party components licensed under open source licenses\nwith source code availability obligations. Copies of those licenses are included\nin the ThirdPartyNotices file or accompanying credits file. You may obtain the\ncomplete corresponding source code from us if and as required under the relevant\nopen source licenses by sending a money order or check for $5.00 to: Source Code\nCompliance Team, Microsoft Corporation, 1 Microsoft Way, Redmond, WA 98052 USA.\nPlease write \"third party source code for Visual Studio Code\" in the memo line\nof your payment. We may also make the source available at\nhttp://thirdpartysource.microsoft.com/.\n\ne. Extensions.The software gives you the option to download other Microsoft and\nthird party software packages from our extension marketplace or package\nmanagers. Those packages are under their own licenses, and not this agreement.\nMicrosoft does not distribute, license or provide any warranties for any of the\nthird party packages.\n\n2. DATA. The software may collect information about you and your use of the\nsoftware, and send that to Microsoft. Microsoft may use this information to\nprovide services and improve our products and services. There may also be some\nfeatures in the software that enable you to collect data from users of your\napplications. If you use these features to enable data collection in your\napplications, you must comply with applicable law, including providing\nappropriate notices to users of your applications.\n\nYou can learn more about data collection and use in the help documentation and\nthe privacy statement at\nhttp://go.microsoft.com/fwlink/?LinkID=528096&clcid=0x409. Your use of the\nsoftware operates as your consent to these practices.\n\n3. UPDATES. The software may install automatic updates. By using the software,\nyou agree to receive automatic updates without any additional notice, and permit\nMicrosoft to download and install them for you. If you do not want automatic\nupdates, you may turn them off by following the instructions in the\ndocumentation at http://go.microsoft.com/fwlink/?LinkID=616397.\n\n4. FEEDBACK. If you give feedback about the software to Microsoft, you give to\nMicrosoft, without charge, the right to use, share and commercialize your\nfeedback in any way and for any purpose. You will not give feedback that is\nsubject to a license that requires Microsoft to license its software or\ndocumentation to third parties because we include your feedback in them. These\nrights survive this agreement.\n\n5. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only\ngives you some rights to use the software. Microsoft reserves all other rights.\nUnless applicable law gives you more rights despite this limitation, you may use\nthe software only as expressly permitted in this agreement. In doing so, you\nmust comply with any technical limitations in the software that only allow you\nto use it in certain ways. You may not\n\n* work around any technical limitations in the software;\n\n* reverse engineer, decompile or disassemble the software, or otherwise attempt\nto derive the source code for the software except, and solely to the extent: (i)\npermitted by applicable law, despite this limitation; or (ii) required to debug\nchanges to any libraries licensed under the GNU Lesser General Public License\nwhich are included with and linked to by the software;\n\n* remove, minimize, block or modify any notices of Microsoft or its suppliers in\nthe software;\n\n* use the software in any way that is against the law; or\n\n* share, publish, or lend the software, or provide it as a hosted solution for\nothers to use, or transfer the software or this agreement to any third party.\n\n6. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide\nsupport services for it.\n\n7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates,\nInternet-based services and support services that you use, are the entire\nagreement for the software and support services.\n\n8. EXPORT RESTRICTIONS. Microsoft software, online services, professional\nservices and related technology are subject to U.S. export jurisdiction. You\nmust comply with all applicable international and national laws including the\nU.S. Export Administration Regulations, the International Traffic in Arms\nRegulations, Office of Foreign Assets Control sanction programs, and end-user,\nend use and destination restrictions by the U.S. and other governments related\nto Microsoft products, services and technologies. For additional information,\nsee http://www.microsoft.com/exporting.\n\n9. APPLICABLE LAW. If you acquired the software in the United States, Washington\nlaw applies to interpretation of and claims for breach of this agreement, and\nthe laws of the state where you live apply to all other claims. If you acquired\nthe software in any other country, its laws apply.\n\n10. LEGAL EFFECT. This agreement describes certain legal rights. You may have\nother rights under the laws of your state or country. This agreement does not\nchange your rights under the laws of your state or country if the laws of your\nstate or country do not permit it to do so. Without limiting the foregoing, for\nAustralia, YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND\nNOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS.\n\n11. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\"\" YOU BEAR THE RISK\nOF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO\nTHE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-\nINFRINGEMENT.\n\n12. LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND\nITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER\nDAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL\nDAMAGES.\n\nThis limitation applies to (a) anything related to the software, services,\ncontent (including code) on third party Internet sites, or third party\napplications; and (b) claims for breach of contract, breach of warranty,\nguarantee or condition, strict liability, negligence, or other tort to the\nextent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the\npossibility of the damages. The above limitation or exclusion may not apply to\nyou because your state or country may not allow the exclusion or limitation of\nincidental, consequential or other damages.", + "json": "ms-visual-studio-code.json", + "yaml": "ms-visual-studio-code.yml", + "html": "ms-visual-studio-code.html", + "license": "ms-visual-studio-code.LICENSE" + }, + { + "license_key": "ms-visual-studio-code-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT VISUAL STUDIO CODE\n\nThese license terms are an agreement between you and Microsoft Corporation (or\nbased on where you live, one of its affiliates). They apply to the software\nnamed above. The terms also apply to any Microsoft services or updates for the\nsoftware, except to the extent those have different terms.\n\nIF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW.\n\n1. INSTALLATION AND USE RIGHTS.\n\na. General. You may use any number of copies of the software to develop and test\nyour applications, including deployment within your internal corporate network.\n\nb. Demo use. The uses permitted above include use of the software in\ndemonstrating your applications.\n\nc. Backup copy. You may make one or more backup copies of the software, for\nreinstalling the software.\n\nd. Third Party Programs. The software may include third party components with\nseparate legal notices or governed by other agreements, as may be described in\nthe ThirdPartyNotices file accompanying the software.\n\ne. Extensions. The software gives you the option to download other Microsoft and\nthird party software packages from our extension marketplace or package\nmanagers. Those packages are under their own licenses, and not this agreement.\nMicrosoft does not distribute, license or provide any warranties for any of the\nthird party packages.\n\n2. DATA.\n\na. Data Collection. The software may collect information about you and your use\nof the software, and send that to Microsoft. Microsoft may use this information\nto provide services and improve our products and services. You may opt-out of\nmany of these scenarios, but not all, as described in the product documentation.\nThere may also be some features in the software that may enable you and\nMicrosoft to collect data from users of your applications. If you use these\nfeatures, you must comply with applicable law, including providing appropriate\nnotices to users of your applications together with Microsoft\u2019s privacy\nstatement. Our privacy statement is located at\nhttps://go.microsoft.com/fwlink/?LinkID=824704 . You can learn more about data\ncollection and use in the help documentation and our privacy statement. Your use\nof the software operates as your consent to these practices.\n\nb. Processing of Personal Data. To the extent Microsoft is a processor or\nsubprocessor of personal data in connection with the software, Microsoft makes\nthe commitments in the European Union General Data Protection Regulation Terms\nof the Online Services Terms to all customers effective May 25, 2018, at\nhttp://go.microsoft.com/?linkid=9840733 .\n\n3. UPDATES. The software may periodically check for updates, and download and\ninstall them for you. You may obtain updates only from Microsoft or authorized\nsources. Microsoft may need to update your system to provide you with updates.\nYou agree to receive these automatic updates without any additional notice.\nUpdates may not include or support all existing software features, services, or\nperipheral devices.\n\n4. FEEDBACK. If you give feedback about the software to Microsoft, you give to\nMicrosoft, without charge, the right to use, share and commercialize your\nfeedback in any way and for any purpose. You will not give feedback that is\nsubject to a license that requires Microsoft to license its software or\ndocumentation to third parties because we include your feedback in them. These\nrights survive this agreement.\n\n5. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only\ngives you some rights to use the software. Microsoft reserves all other rights.\nUnless applicable law gives you more rights despite this limitation, you may use\nthe software only as expressly permitted in this agreement. In doing so, you\nmust comply with any technical limitations in the software that only allow you\nto use it in certain ways. You may not\n\n* work around any technical limitations in the software;\n\n* reverse engineer, decompile or disassemble the software, or otherwise attempt\nto derive the source code for the software, except and to the extent required by\nthird party licensing terms governing use of certain open source components that\nmay be included in the software;\n\n*remove, minimize, block or modify any notices of Microsoft or its suppliers in\nthe software;\n\n* use the software in any way that is against the law;\n\n* share, publish, rent or lease the software, or provide the software as a\nstand-alone offering for others to use.\n\n6. SUPPORT SERVICES. Because this software is \u201cas is,\u201d we may not provide\nsupport services for it.\n\n7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates,\nInternet-based services and support services that you use, are the entire\nagreement for the software and support services.\n\n8. EXPORT RESTRICTIONS. You must comply with all domestic and international\nexport laws and regulations that apply to the software, which include\nrestrictions on destinations, end-users, and end use. For further information on\nexport restrictions, see http://www.microsoft.com/exporting .\n\n9. APPLICABLE LAW. If you acquired the software in the United States, Washington\nlaw applies to interpretation of and claims for breach of this agreement, and\nthe laws of the state where you live apply to all other claims. If you acquired\nthe software in any other country, its laws apply.\n\n10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal\nrights. You may have other rights, including consumer rights, under the laws of\nyour state or country. Separate and apart from your relationship with Microsoft,\nyou may also have rights with respect to the party from which you acquired the\nsoftware. This agreement does not change those other rights if the laws of your\nstate or country do not permit it to do so. For example, if you acquired the\nsoftware in one of the below regions, or mandatory country law applies, then the\nfollowing provisions apply to you:\n\na. Australia. You have statutory guarantees under the Australian Consumer Law\nand nothing in this agreement is intended to affect those rights.\n\nb. Canada. If you acquired this software in Canada, you may stop receiving\nupdates by turning off the automatic update feature, disconnecting your device\nfrom the Internet (if and when you re-connect to the Internet, however, the\nsoftware will resume checking for and installing updates), or uninstalling the\nsoftware. The product documentation, if any, may also specify how to turn off\nupdates for your specific device or software.\n\nc. Germany and Austria.\n\n i. Warranty. The properly licensed software will perform substantially as\n described in any Microsoft materials that accompany the software. However,\n Microsoft gives no contractual guarantee in relation to the licensed software.\n\n ii. Limitation of Liability. In case of intentional conduct, gross negligence,\n claims based on the Product Liability Act, as well as, in case of death or\n personal or physical injury, Microsoft is liable according to the statutory\n law.\n\nSubject to the foregoing clause (ii), Microsoft will only be liable for slight\nnegligence if Microsoft is in breach of such material contractual obligations,\nthe fulfillment of which facilitate the due performance of this agreement, the\nbreach of which would endanger the purpose of this agreement and the compliance\nwith which a party may constantly trust in (so-called \"cardinal obligations\").\nIn other cases of slight negligence, Microsoft will not be liable for slight\nnegligence.\n\n11. DISCLAIMER OF WARRANTY. The software is licensed \u201cas-is.\u201d You bear the risk\nof using it. Microsoft gives no express warranties, guarantees or conditions. To\nthe extent permitted under your local laws, Microsoft excludes the implied\nwarranties of merchantability, fitness for a particular purpose and non-\ninfringement.\n\n12. LIMITATION ON AND EXCLUSION OF DAMAGES. You can recover from Microsoft and\nits suppliers only direct damages up to U.S. $5.00. You cannot recover any other\ndamages, including consequential, lost profits, special, indirect or incidental\ndamages. This limitation applies to (a) anything related to the software,\nservices, content (including code) on third party Internet sites, or third party\napplications; and (b) claims for breach of contract, breach of warranty,\nguarantee or condition, strict liability, negligence, or other tort to the\nextent permitted by applicable law. It also applies even if Microsoft knew or\nshould have known about the possibility of the damages. The above limitation or\nexclusion may not apply to you because your state or country may not allow the\nexclusion or limitation of incidental, consequential or other damages.", + "json": "ms-visual-studio-code-2018.json", + "yaml": "ms-visual-studio-code-2018.yml", + "html": "ms-visual-studio-code-2018.html", + "license": "ms-visual-studio-code-2018.LICENSE" + }, + { + "license_key": "ms-visual-studio-code-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT VISUAL STUDIO CODE\n\nThese license terms are an agreement between you and Microsoft Corporation (or\nbased on where you live, one of its affiliates). They apply to the software\nnamed above. The terms also apply to any Microsoft services or updates for the\nsoftware, except to the extent those have different terms.\n\nIF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW.\n\n1. INSTALLATION AND USE RIGHTS.\n\na. General. You may use any number of copies of the software to develop and test\nyour applications, including deployment within your internal corporate network.\n\nb. Demo use. The uses permitted above include use of the software in\ndemonstrating your applications.\n\nc. Third Party Components. The software may include third party components with\nseparate legal notices or governed by other agreements, as may be described in\nthe ThirdPartyNotices file accompanying the software.\n\nd. Extensions. The software gives you the option to download other Microsoft and\nthird party software packages from our extension marketplace or package\nmanagers. Those packages are under their own licenses, and not this agreement.\nMicrosoft does not distribute, license or provide any warranties for any of the\nthird party packages. By accessing or using our extension marketplace, you agree\nto the extension marketplace terms located at https://aka.ms/vsmarketplace-ToU .\n\n2. DATA.\n\na. Data Collection. The software may collect information about you and your use\nof the software, and send that to Microsoft. Microsoft may use this information\nto provide services and improve our products and services. You may opt-out of\nmany of these scenarios, but not all, as described in the product documentation\nlocated at https://code.visualstudio.com/docs/supporting/faq#_how-to-disable-\ntelemetry-reporting . There may also be some features in the software that may\nenable you and Microsoft to collect data from users of your applications. If you\nuse these features, you must comply with applicable law, including providing\nappropriate notices to users of your applications together with Microsoft\u2019s\nprivacy statement. Our privacy statement is located at\nhttps://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data\ncollection and use in the help documentation and our privacy statement. Your use\nof the software operates as your consent to these practices.\n\nb. Processing of Personal Data. To the extent Microsoft is a processor or\nsubprocessor of personal data in connection with the software, Microsoft makes\nthe commitments in the European Union General Data Protection Regulation Terms\nof the Online Services Terms to all customers effective May 25, 2018, at\nhttps://docs.microsoft.com/legal/gdpr .\n\n3. UPDATES. The software may periodically check for updates and download and\ninstall them for you. You may obtain updates only from Microsoft or authorized\nsources. Microsoft may need to update your system to provide you with updates.\nYou agree to receive these automatic updates without any additional notice.\nUpdates may not include or support all existing software features, services, or\nperipheral devices. If you do not want automatic updates, you may turn them off\nby following the instructions in the documentation at\nhttps://go.microsoft.com/fwlink/?LinkID=616397 .\n\n4. FEEDBACK. If you give feedback about the software to Microsoft, you give to\nMicrosoft, without charge, the right to use, share and commercialize your\nfeedback in any way and for any purpose. You will not give feedback that is\nsubject to a license that requires Microsoft to license its software or\ndocumentation to third parties because we include your feedback in them. These\nrights survive this agreement.\n\n5. SCOPE OF LICENSE. This license applies to the Visual Studio Code product.\nSource code for Visual Studio Code is available at\nhttps://github.com/Microsoft/vscode under the MIT license agreement. The\nsoftware is licensed, not sold. This agreement only gives you some rights to use\nthe software. Microsoft reserves all other rights. Unless applicable law gives\nyou more rights despite this limitation, you may use the software only as\nexpressly permitted in this agreement. In doing so, you must comply with any\ntechnical limitations in the software that only allow you to use it in certain\nways. You may not\n\n* reverse engineer, decompile or disassemble the software, or otherwise attempt\nto derive the source code for the software except and solely to the extent\nrequired by third party licensing terms governing use of certain open source\ncomponents that may be included in the software;\n\n*remove, minimize, block or modify any notices of Microsoft or its suppliers in\nthe software;\n\n* use the software in any way that is against the law;\n\n* share, publish, rent or lease the software, or provide the software as a\nstand-alone offering for others to use.\n\n6. SUPPORT SERVICES. Because this software is \u201cas is,\u201d we may not provide\nsupport services for it.\n\n7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates,\nInternet-based services and support services that you use, are the entire\nagreement for the software and support services.\n\n8. EXPORT RESTRICTIONS. You must comply with all domestic and international\nexport laws and regulations that apply to the software, which include\nrestrictions on destinations, end-users, and end use. For further information on\nexport restrictions, see https://www.microsoft.com/exporting .\n\n9. APPLICABLE LAW. If you acquired the software in the United States, Washington\nlaw applies to interpretation of and claims for breach of this agreement, and\nthe laws of the state where you live apply to all other claims. If you acquired\nthe software in any other country, its laws apply.\n\n10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal\nrights. You may have other rights, including consumer rights, under the laws of\nyour state or country. Separate and apart from your relationship with Microsoft,\nyou may also have rights with respect to the party from which you acquired the\nsoftware. This agreement does not change those other rights if the laws of your\nstate or country do not permit it to do so. For example, if you acquired the\nsoftware in one of the below regions, or mandatory country law applies, then the\nfollowing provisions apply to you:\n\na. Australia. You have statutory guarantees under the Australian Consumer Law\nand nothing in this agreement is intended to affect those rights.\n\nb. Canada. If you acquired this software in Canada, you may stop receiving\nupdates by turning off the automatic update feature, disconnecting your device\nfrom the Internet (if and when you re-connect to the Internet, however, the\nsoftware will resume checking for and installing updates), or uninstalling the\nsoftware. The product documentation, if any, may also specify how to turn off\nupdates for your specific device or software.\n\nc. Germany and Austria.\n\n i. Warranty. The properly licensed software will perform substantially as\n described in any Microsoft materials that accompany the software. However,\n Microsoft gives no contractual guarantee in relation to the licensed software.\n\n ii. Limitation of Liability. In case of intentional conduct, gross negligence,\n claims based on the Product Liability Act, as well as, in case of death or\n personal or physical injury, Microsoft is liable according to the statutory\n law.\n\nSubject to the foregoing clause (ii), Microsoft will only be liable for slight\nnegligence if Microsoft is in breach of such material contractual obligations,\nthe fulfillment of which facilitate the due performance of this agreement, the\nbreach of which would endanger the purpose of this agreement and the compliance\nwith which a party may constantly trust in (so-called \"cardinal obligations\").\nIn other cases of slight negligence, Microsoft will not be liable for slight\nnegligence.\n\n11. DISCLAIMER OF WARRANTY. The software is licensed \u201cas-is.\u201d You bear the risk\nof using it. Microsoft gives no express warranties, guarantees or conditions. To\nthe extent permitted under your local laws, Microsoft excludes the implied\nwarranties of merchantability, fitness for a particular purpose and non-\ninfringement.\n\n12. LIMITATION ON AND EXCLUSION OF DAMAGES. You can recover from Microsoft and\nits suppliers only direct damages up to U.S. $5.00. You cannot recover any other\ndamages, including consequential, lost profits, special, indirect or incidental\ndamages. This limitation applies to (a) anything related to the software,\nservices, content (including code) on third party Internet sites, or third party\napplications; and (b) claims for breach of contract, breach of warranty,\nguarantee or condition, strict liability, negligence, or other tort to the\nextent permitted by applicable law. It also applies even if Microsoft knew or\nshould have known about the possibility of the damages. The above limitation or\nexclusion may not apply to you because your state or country may not allow the\nexclusion or limitation of incidental, consequential or other damages.", + "json": "ms-visual-studio-code-2022.json", + "yaml": "ms-visual-studio-code-2022.yml", + "html": "ms-visual-studio-code-2022.html", + "license": "ms-visual-studio-code-2022.LICENSE" + }, + { + "license_key": "ms-vs-addons-ext-17.2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-vs-addons-ext-17.2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT VISUAL STUDIO ADD-ONs and EXTENSIONS \n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have different terms.\n\nIF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW.\n\n1. INSTALLATION AND USE RIGHTS. \n\n\tYou may install and use any number of copies of the software to use solely with\n\t\t* Visual Studio Community \n\t\t* Visual Studio Professional \n\t\t* Visual Studio Enterprise \n\t\t* Visual Studio Code \n\n2. TERMS FOR SPECIFIC COMPONENTS.\n\ta. Microsoft Platforms. The software may include components from Microsoft Windows, Microsoft Windows Server, Microsoft SQL Server, Microsoft Exchange, Microsoft Office, or Microsoft SharePoint. These components are governed by separate agreements and their own product support policies, as described in the Microsoft Licenses folder accompanying the software, except that, if license terms for those components are also included in the associated installation directory, those license terms control.\n\tb. Third Party Components. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software. \n\tc. Package Managers. The software includes package managers, like NuGet, that give you the option to download other Microsoft and third party software packages to use with your applications. Those packages are under their own licenses, and not these license terms. Microsoft does not distribute, license or provide any warranties for any of the third party packages.\n\n3. DATA. \n\ta. Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the software documentation. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications and you should provide a copy of Microsoft's privacy statement to your users. The Microsoft privacy statement is located here https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use from the software documentation and our privacy statement. Your use of the software operates as your consent to these practices.\n\tb. Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr.\n\n4. SCOPE OF LICENSE. The software is licensed, not sold. These license terms only give you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in these license terms. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. In addition, you may not\n\t* work around any technical limitations in the software;\n\t* reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software except, and only to the extent required by third party licensing terms governing the use of certain open source components that may be included in the software;\n\t* remove, minimize, block or modify any notices of Microsoft or its suppliers in the software; \n\t* use the software in any way that is against the law; \n\t* share, publish, rent, or lease the software; or \n\t* provide the software as a stand-alone offering or combine it with any of your applications for others to use, or transfer the software or this agreement to any third party.\n\n5. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting. \n\n6. SUPPORT SERVICES. Because this software is \"as is\", we may not provide support services for it.\n\n7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n8. APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply.\n\n9. CONSUMER RIGHTS; REGIONAL VARIATIONS. These license terms describe certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. You may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:\n\ta. Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights.\n\tb. Canada. You may stop receiving updates on your device by turning off Internet access. If and when you re-connect to the Internet, the software will resume checking for and installing updates.\n\tc. Germany and Austria.\n\t\t(i)\tWarranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software.\n\t\t(ii)\tLimitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in the case of death or personal or physical injury, Microsoft is liable according to the statutory law.\n\n\tSubject to the preceding sentence (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called \"cardinal obligations\"). In other cases of slight negligence, Microsoft will not be liable for slight negligence.\n\n10. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS\". YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n11. LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.", + "json": "ms-vs-addons-ext-17.2.0.json", + "yaml": "ms-vs-addons-ext-17.2.0.yml", + "html": "ms-vs-addons-ext-17.2.0.html", + "license": "ms-vs-addons-ext-17.2.0.LICENSE" + }, + { + "license_key": "ms-web-developer-tools-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-web-developer-tools-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT WEB DEVELOPER TOOLS 1.0\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\n\u00b7 updates,\n\n\u00b7 supplements,\n\n\u00b7 Internet-based services, and\n\n\u00b7 support services\n\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBy using the software, you accept these terms. If you do not accept them, do not use the software.\n\nIf you comply with these license terms, you have the perpetual rights below.\n\n1. INSTALLATION AND USE RIGHTS.\n\na. Installation and Use. You may install and use any number of copies of the software for use with your ASP.NET programs on your devices running validly licensed copies of Microsoft Visual Studio. You may modify, copy and distribute or deploy any .js files contained in the software as part of your ASP.NET programs.\n\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\n\na. Distributable Code. In addition to the .js files described above, the software contains code that you are permitted to distribute in ASP.NET programs you develop if you comply with the terms below.\n\ni. Right to Use and Distribute. The code and text files listed below are \"Distributable Code.\"\n\n\u00b7 You may copy and distribute the object code form of code and files listed below.\n\n \u00b7 Microsoft.AspNet.Membership.OpenAuth.dll\n \u00b7 Microsoft.ScriptManager.WebForms.dII\n \u00b7 Microsoft.ScriptManager.MSAjax.dII\n\n\u00b7 Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\n\nii. Distribution Requirements. For any Distributable Code you distribute, you must\n\n\u00b7 add significant primary functionality to it in your programs;\n\n\u00b7 require distributors and external end users to agree to terms that protect it at least as much as this agreement;\n\n\u00b7 display your valid copyright notice on your programs; and\n\n\u00b7 indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\n\niii. Distribution Restrictions. You may not\n\n\u00b7 alter any copyright, trademark or patent notice in the Distributable Code;\n\n\u00b7 use Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\n\n\u00b7 distribute Distributable Code to run on a platform other than the Windows platform;\n\n\u00b7 include Distributable Code in malicious, deceptive or unlawful programs; or\n\n\u00b7 modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\n\n\u00b7 the code be disclosed or distributed in source code form; or\n\n\u00b7 others have the right to modify it.\n\n3. THIRD PARTY NOTICES. The software may include third party code that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party code are included for your information only.\n\n4. INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software. It may change or cancel them at any time.\n\n5. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n\u00b7 work around any technical limitations in the software;\n\n\u00b7 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\n\u00b7 make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n\n\u00b7 publish the software for others to copy;\n\n\u00b7 rent, lease or lend the software; or\n\n\u00b7 transfer the software or this agreement to any third party.\n\n6. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n7. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n8. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n9. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n10. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n11. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n12. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n13. DISCLAIMER OF WARRANTY. The software is licensed \"as-is.\" You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights or statutory guarantees under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n\nFOR AUSTRALIA \u2013 You have statutory guarantees under the Australian Consumer Law and nothing in these terms is intended to affect those rights.\n\n14. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\n\nThis limitation applies to\n\n\u00b7 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\n\u00b7 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.", + "json": "ms-web-developer-tools-1.0.json", + "yaml": "ms-web-developer-tools-1.0.yml", + "html": "ms-web-developer-tools-1.0.html", + "license": "ms-web-developer-tools-1.0.LICENSE" + }, + { + "license_key": "ms-windows-container-base-image-eula-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-win-container-eula-2020", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-windows-container-base-image-eula-2020" + ], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE\nFOR WINDOWS CONTAINER BASE IMAGE\n\nThis Supplemental License is for the Windows Container Base Image (\"Container Image\"). If you comply with the terms of this Supplemental License you may use the Container Image as described below.\n\nThe Container Image may only be used with a validly licensed copy of:\n* Windows Server Standard or Windows Server Datacenter software (collectively \"Server Host Software\"), or\n* Microsoft Windows Operating System (version 10) software (\"Client Host Software\"), or\n* Windows 10 IoT Enterprise and Windows 10 IoT Core (collectively \"IoT Host Software\").\n\nThe Server Host Software, Client Host Software, and IoT Host Software are collectively referred to as the \"Host Software\" and a license for Host Software is a \"Host License\".\n\nYou may not use the Container Image if you do not have a corresponding version and edition of the Host License. Certain restrictions and additional terms may apply, which are described herein. If licensing terms herein conflict with Host License, then this Supplemental License shall govern with respect to the Container Image. BY ACCEPTING THIS SUPPLEMENTAL LICENSE OR USING THE CONTAINER IMAGE, YOU AGREE TO ALL OF THESE TERMS. IF YOU DO NOT ACCEPT AND COMPLY WITH THESE TERMS, YOU MAY NOT USE THE CONTAINER IMAGE.\n\nDEFINITIONS\n\nWindows Server Container (without Hyper-V isolation) is a feature of Microsoft Windows Server software.\n\nWindows Server Container with Hyper-V isolation.[0] Section 2(k) of the Microsoft Windows Server (version 10) license terms is hereby deleted in its entirety and replaced with the revised terms as shown in \"UPDATED\" below.\nUPDATED: Windows Server Container with Hyper-V isolation (formerly known as Hyper-V Container) is a container technology in Windows Server which utilizes a virtual operating system environment to host one or more Windows Server Container(s). Each Hyper-V isolation instance used to host one or more Windows Server Container(s) is considered one virtual operating system environment.\n\nLICENSE TERMS\n\nHost License. The Host License terms apply to your use of the Container Image and any Windows container(s) created with the Container Image which are distinct and separate from a virtual machine.\n\nUse Rights. The Container Image may be used to create an isolated virtualized Windows operating system environment that includes at least one application that adds primary and significant functionality. You may use the Container Image only to create, build, and run Windows container(s) on Host Software. Updates to the Host Software may not update the Container Image so you may re-create any Windows containers based on an updated Container Image.\n\nRestrictions. You may not remove this Supplemental License document file from the Container Image. You may not enable remote access to the application(s) you run within your container to avoid applicable license fees. You may not reverse engineer, decompile, or disassemble the Container Image, or attempt to do so, except and only to the extent required by third party licensing terms governing the use of certain open-source components that may be included with the software. Additional restrictions in the Host License may apply.\n\nADDITIONAL TERMS\n\nClient Host Software. When running a Container Image on Client Host Software you may run any number of the Container Image instantiated as Windows containers for test or development purposes only. You may not use these Windows containers in a production environment on Client Host Software.\n\nIoT Host Software. When running a Container Image on IoT Host Software you may run any number of the Container Image instantiated as Windows containers for test or development purposes only. You may only use the Container Image in a production environment if you have agreed to the Microsoft Commercial Terms of Use for Windows 10 Core Runtime Images or the Windows 10 IoT Enterprise Device License (\"Windows IoT Commercial Agreement\"). Additional terms and restrictions in the Windows IoT Commercial Agreements apply to your use of Container Image in a production environment.\n\nThird Party Software. The Container Image may include third party applications that are licensed to you under this Supplemental License or under their own terms. License terms, notices, and acknowledgements, if any, for the third-party applications may be accessible online at http://aka.ms/thirdpartynotices or in an accompanying notices file. Even if such applications are governed by other agreements, the disclaimer, limitations on, and exclusions of damages in the Host License also apply to the extent allowed by applicable law.\n\nOpen Source Components. The Container Image may contain third party copyrighted software licensed under open source licenses with source code availability obligations. Copies of those licenses are included in the ThirdPartyNotices file or other accompanying notices file. You may obtain the complete corresponding source code from Microsoft if and as required under the relevant open source license by sending a money order or check for $5.00 to: Source Code Compliance Team, Microsoft Corporation, 1 Microsoft Way, Redmond, WA 98052, USA. Please include the name \"Microsoft Software Supplemental License for Windows Container base image\", the open source component name and version number in the memo line of your payment. You may also find a copy of the source at http://aka.ms/getsource.", + "json": "ms-windows-container-base-image-eula-2020.json", + "yaml": "ms-windows-container-base-image-eula-2020.yml", + "html": "ms-windows-container-base-image-eula-2020.html", + "license": "ms-windows-container-base-image-eula-2020.LICENSE" + }, + { + "license_key": "ms-windows-driver-kit", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-windows-driver-kit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT WINDOWS DRIVER KIT\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\uf0b7 updates, \n\uf0b7 supplements, \n\uf0b7 Internet-based services, and \n\uf0b7 support services\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBy using the software, you accept these terms. If you do not accept them, do not use the software. If you comply with these license terms, you have the rights below. \n\n1.\tINSTALLATION AND USE RIGHTS.\na.\tInstallation and Use. One user may install and use any number of copies of the software on your devices to design, develop and test your programs.\nb. Included Microsoft Programs. The software contains other Microsoft programs. In some cases, those programs and the license terms that apply to your use of them are addressed specifically in these license terms. For all other included Microsoft programs, these license terms govern your use.\nc.\tDevice Simulation Framework. One user may install and use any number of copies of the Device Simulation Framework on your devices for the sole purpose of testing the interoperability of your devices, drivers and firmware with Windows. For the avoidance of doubt, the Device Simulation Framework shall not be used for testing software you have designed and developed using a software development kit other than the Windows Driver Kit.\nd. Third Party Programs. The software contains third party programs. These license terms as well as any license terms accompanying the third party program files apply to your use of them.\n\n2.\tADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\n a.\tDistributable Code. The software contains code that you are permitted to distribute in\nprograms you develop if you comply with the terms below.\ni.\tRight to Use and Distribute. The code and text files listed below are \"Distributable Code.\"\n\uf0b7\tREDIST.TXT Files. You may copy and distribute the object code form of code listed in REDIST.TXT files.\n\uf0b7\tSample Code. You may modify, copy and distribute only in object code form the sample code found in the SRC directory of the Windows Driver Kit, except that you may also modify, copy, and distribute in source code form the sample code listed in the SAMPLES.TXT file.\n\uf0b7\tThird Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\nii.\tDistribution Requirements. For any Distributable Code you distribute, you must \n\uf0b7\tadd significant primary functionality to it in your programs; \n\uf0b7\trequire distributors and external end users to agree to terms that protect it at least\nas much as this agreement; \n\uf0b7\tdisplay your valid copyright notice on your programs; and \n\uf0b7\tindemnify, defend, and hold harmless Microsoft from any claims, including\nattorneys\u2019 fees, related to the distribution or use of your programs. \n\niii. Distribution Restrictions. You may not\n\uf0b7\talter any copyright, trademark or patent notice in the Distributable Code; \n\uf0b7\tuse Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your\nprograms come from or are endorsed by Microsoft; \n\uf0b7\tdistribute Distributable Code to run on a platform other than the Windows platform;\uf0b7\n\uf0b7\tinclude Distributable Code in malicious, deceptive or unlawful programs; or \n\uf0b7\tmodify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that the code be disclosed or distributed in source code form; or others have the right to modify it. \n\n3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways.\tYou may not\n\uf0b7\twork around any technical limitations in the software; \n\uf0b7\treverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; \n\uf0b7\tmake more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation; \n\uf0b7\tpublish the software for others to copy; \n\uf0b7\trent, lease or lend the software; \n\uf0b7\ttransfer the software or this agreement to any third party; or \n\uf0b7\tuse the software for commercial software hosting services.\n\n4. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n5. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n6. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n7.\tSUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it. \n\n8. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n9.\tAPPLICABLE LAW. \na.\tUnited States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n10. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n11. DISCLAIMER OF WARRANTY. The software is licensed \"as-is.\" You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n\n12. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES.\tYou can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\nThis limitation applies to\n\uf0b7\tanything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\uf0b7\tclaims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.", + "json": "ms-windows-driver-kit.json", + "yaml": "ms-windows-driver-kit.yml", + "html": "ms-windows-driver-kit.html", + "license": "ms-windows-driver-kit.LICENSE" + }, + { + "license_key": "ms-windows-identity-foundation", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-windows-identity-foundation", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS\nWINDOWS IDENTITY FOUNDATION FOR MICROSOFT WINDOWS OPERATING SYSTEMS \n\nMicrosoft Corporation (or based on where you live, one of its affiliates) licenses this supplement to you. If you are licensed to use Microsoft Windows operating systems software (for which this supplement is applicable) (the \"software\"), you may use this supplement. You may not use it if you do not have a license for the software. You may use this supplement with each validly licensed copy of the software.\nThe following license terms describe additional use terms for this supplement. These terms and the license terms for the software apply to your use of the supplement. If there is a conflict, these supplemental license terms apply.\n\nBy using this supplement, you accept these terms. If you do not accept them, do not use this supplement.\nIf you comply with these license terms, you have the rights below.\n\n1.\tDISTRIBUTABLE CODE. The supplement is comprised of Distributable Code. \"Distributable Code\" is code that you are permitted to distribute in programs you develop if you comply with the terms below.\n\na.\tRight to Use and Distribute. \n\u2022\tYou may copy and distribute the object code form of the supplement.\n\u2022\tThird Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\n\nb.\tDistribution Requirements. For any Distributable Code you distribute, you must\n\u2022\tadd significant primary functionality to it in your programs;\n\u2022\tfor any Distributable Code having a filename extension of .lib, distribute only the results of running such Distributable Code through a linker with your program;\n\u2022\tdistribute Distributable Code included in a setup program only as part of that setup program without modification; \n\u2022\trequire distributors and external end users to agree to terms that protect it at least as much as this agreement;\n\u2022\tdisplay your valid copyright notice on your programs; and\n\u2022\tindemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\n\nc.\tDistribution Restrictions. You may not\n\u2022\talter any copyright, trademark or patent notice in the Distributable Code;\n\u2022\tuse Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\n\u2022\tdistribute Distributable Code to run on a platform other than the Windows platform;\n\u2022\tinclude Distributable Code in malicious, deceptive or unlawful programs; or\n\u2022\tmodify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\n\u2022\tthe code be disclosed or distributed in source code form; or\n\u2022\tothers have the right to modify it.\n\n2.\tSUPPORT SERVICES FOR SUPPLEMENT. Microsoft provides support services for this software as described at www.support.microsoft.com/common/international.aspx.\n\nPlease note: As this software is distributed in Quebec, Canada, these license terms are provided below in French.\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, les termes de cette licence sont fournis ci-dessous en fran\u00e7ais.TERMES DU CONTRAT DE LICENCE D\u2019UN SUPPL\u00c9MENT MICROSOFT\nWINDOWS IDENTITY FOUNDATION POUR MICROSOFT WINDOWS OPERATING SYSTEMS \nMicrosoft Corporation (ou en fonction du lieu o\u00f9 vous vivez, l\u2019un de ses affili\u00e9s) vous accorde une licence pour ce suppl\u00e9ment. Si vous \u00eates titulaire d\u2019une licence d\u2019utilisation du logiciel Microsoft Windows operating systems (auquel s\u2019applique ce suppl\u00e9ment) (le \u00ab logiciel \u00bb), vous pouvez utiliser ce suppl\u00e9ment. Vous n\u2019\u00eates pas autoris\u00e9 \u00e0 utiliser ce suppl\u00e9ment si vous n\u2019\u00eates pas titulaire d\u2019une licence pour le logiciel. Vous pouvez utiliser une copie de ce suppl\u00e9ment avec chaque copie conc\u00e9d\u00e9e sous licence du logiciel.\nLes conditions de licence suivantes d\u00e9crivent les conditions d\u2019utilisation suppl\u00e9mentaires applicables pour ce suppl\u00e9ment. Les pr\u00e9sentes conditions et les conditions de licence pour le logiciel s'appliquent \u00e0 l'utilisation du suppl\u00e9ment. En cas de conflit, les pr\u00e9sentes conditions de licence suppl\u00e9mentaires s\u2019appliquent.\nEn utilisant ce suppl\u00e9ment, vous acceptez ces termes. Si vous ne les acceptez pas, n\u2019utilisez pas ce suppl\u00e9ment.\nDans le cadre du pr\u00e9sent accord de licence, vous disposez des droits ci-dessous.\n1.\tCODE DISTRIBUABLE. Le suppl\u00e9ment constitue du Code Distribuable. Le \u00ab Code Distribuable \u00bb est le code que vous \u00eates autoris\u00e9 \u00e0 distribuer dans les programmes que vous d\u00e9veloppez, sous r\u00e9serve de vous conformer aux termes ci-apr\u00e8s.\na.\tDroit d\u2019utilisation et de distribution. \n\u2022\tVous \u00eates autoris\u00e9 \u00e0 copier et \u00e0 distribuer la version en code objet du suppl\u00e9ment.\n\u2022\tDistribution par des tierces parties. Vous pouvez autoriser les distributeurs de vos programmes \u00e0 copier et \u00e0 distribuer le code distribuable en tant que partie int\u00e9grante de ces programmes.\nb.\tConditions de distribution. Pour pouvoir distribuer du code distribuable, vous devez :\n\u2022\ty ajouter des fonctionnalit\u00e9s importantes au sein de vos programmes,\n\u2022\tpour tout Code distribuable dont l\u2019extension de nom de fichier est .lib, distribuer seulement les r\u00e9sultats de l\u2019ex\u00e9cution de ce Code distribuable \u00e0 l\u2019aide d\u2019un \u00e9diteur de liens avec votre programme ;\n\u2022\tdistribuer le Code distribuable inclus dans un programme d\u2019installation seulement en tant que partie int\u00e9grante de ce programme sans modification ;\n\u2022\tlier les distributeurs et les utilisateurs externes par un contrat dont les termes les prot\u00e8gent autant que le pr\u00e9sent contrat,\n\u2022\tafficher votre propre mention de droits d\u2019auteur valable sur vos programmes et\n\u2022\tgarantir et d\u00e9fendre Microsoft contre toute r\u00e9clamation, y compris pour les honoraires d\u2019avocats, qui r\u00e9sulterait de la distribution ou l\u2019utilisation de vos programmes.\nc.\tRestrictions de distribution. Vous n\u2019\u00eates pas autoris\u00e9 \u00e0 :\n\u2022\tmodifier toute mention de droits d\u2019auteur, de marques ou de droits de propri\u00e9t\u00e9 industrielle pouvant figurer dans le code distribuable,\n\u2022\tutiliser les marques de Microsoft dans les noms de vos programmes ou d\u2019une fa\u00e7on qui sugg\u00e8re que vos programmes sont fournis par Microsoft ou sous la responsabilit\u00e9 de Microsoft,\n\u2022\tdistribuer le Code distribuable en vue de son ex\u00e9cution sur une plate-forme autre que la plate-forme Windows,\n\u2022\tinclure le Code distribuable dans des programmes malveillants, trompeurs ou interdits par la loi, ou\n\u2022\tmodifier ou distribuer le code source de code distribuable de mani\u00e8re \u00e0 ce qu\u2019il fasse l\u2019objet, en partie ou dans son int\u00e9gralit\u00e9, d\u2019une Licence Exclue. Une Licence Exclue implique comme condition d\u2019utilisation, de modification ou de distribution, que :\n\u2022\tle code soit d\u00e9voil\u00e9 ou distribu\u00e9 dans sa forme de code source, ou\n\u2022\td\u2019autres aient le droit de le modifier.\n2.\tSERVICES D\u2019ASSISTANCE TECHNIQUE POUR LE SUPPL\u00c9MENT. Microsoft fournit des services d\u2019assistance technique pour ce logiciel disponibles sur le site www.support.microsoft.com/common/international.aspx.", + "json": "ms-windows-identity-foundation.json", + "yaml": "ms-windows-identity-foundation.yml", + "html": "ms-windows-identity-foundation.html", + "license": "ms-windows-identity-foundation.LICENSE" + }, + { + "license_key": "ms-windows-os-2018", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-windows-os-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Last updated June 2018\nMICROSOFT SOFTWARE LICENSE TERMS\nWINDOWS OPERATING SYSTEM\nIF YOU LIVE IN (OR IF YOUR PRINCIPAL PLACE OF BUSINESS IS IN) THE UNITED STATES, PLEASE READ THE BINDING ARBITRATION CLAUSE AND CLASS ACTION WAIVER IN SECTION 11. IT AFFECTS HOW DISPUTES ARE RESOLVED.\nThank you for choosing Microsoft!\nDepending on how you obtained the Windows software, this is a license agreement between (i) you and the device manufacturer or software installer that distributes the software with your device; or (ii) you and Microsoft Corporation (or, based on where you live or, if a business, where your principal place of business is located, one of its affiliates) if you acquired the software from a retailer. Microsoft is the device manufacturer for devices produced by Microsoft or one of its affiliates, and Microsoft is the retailer if you acquired the software directly from Microsoft. Note that if you are a volume license customer, use of this software is subject to your volume license agreement rather than this agreement.\nThis agreement describes your rights and the conditions upon which you may use the Windows software. You should review the entire agreement, including any supplemental license terms that accompany the software and any linked terms, because all of the terms are important and together create this agreement that applies to you. You can review linked terms by pasting the (aka.ms/) link into a browser window.\nBy accepting this agreement or using the software, you agree to all of these terms, and consent to the transmission of certain information during activation and during your use of the software as per the privacy statement described in Section 3. If you do not accept and comply with these terms, you may not use the software or its features. You may contact the device manufacturer or installer, or your retailer if you purchased the software directly, to determine its return policy and return the software or device for a refund or credit under that policy. You must comply with that policy, which might require you to return the software with the entire device on which the software is installed for a refund or credit, if any.\n1.\tOverview.\na.\tApplicability. This agreement applies to the Windows software that is preinstalled on your device, or acquired from a retailer and installed by you, the media on which you received the software (if any), any fonts, icons, images or sound files included with the software, and also any Microsoft updates, upgrades, supplements or services for the software, unless other terms come with them. It also applies to Windows apps developed by Microsoft that provide functionality such as mail, contacts, music and photos that are included with and are a part of Windows. If this agreement contains terms regarding a feature or service not available on your device, then those terms do not apply.\nb.\tAdditional terms. Additional Microsoft and third-party terms may apply to your use of certain features, services and apps, depending on your device\u2019s capabilities, how it is configured, and how you use it. Please be sure to read them.\n(i)\tSome Windows apps provide an access point to, or rely on, online services, and the use of those services is sometimes governed by separate terms and privacy policies, such as the Microsoft Services Agreement at (aka.ms/msa). You can view these terms and policies by looking at the service terms of use or the app\u2019s settings, as applicable. The services may not be available in all regions.\n(ii)\tMicrosoft, the device manufacturer or installer may include additional apps, which will be subject to separate license terms and privacy policies.\n(iii)\tThe software includes Adobe Flash Player that is licensed under terms from Adobe Systems Incorporated at (aka.ms/adobeflash). Adobe and Flash are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries.\n(iv)\tThe software may include third-party programs that are licensed to you under this agreement, or under their own terms. License terms, notices and acknowledgements, if any, for the third-party programs can be viewed at (aka.ms/thirdpartynotices).\n(v)\tTo the extent included with Windows, Word, Excel, PowerPoint and OneNote are licensed for your personal, non-commercial use, unless you have commercial use rights under a separate agreement.\n2.\tInstallation and Use Rights.\na.\tLicense. The software is licensed, not sold. Under this agreement, we grant you the right to install and run one instance of the software on your device (the licensed device), for use by one person at a time, so long as you comply with all the terms of this agreement. Updating or upgrading from non-genuine software with software from Microsoft or authorized sources does not make your original version or the updated/upgraded version genuine, and in that situation, you do not have a license to use the software.\nb.\tDevice. In this agreement, \u201cdevice\u201d means a hardware system (whether physical or virtual) with an internal storage device capable of running the software. A hardware partition or blade is considered to be a device.\nc.\tRestrictions. The device manufacturer or installer and Microsoft reserve all rights (such as rights under intellectual property laws) not expressly granted in this agreement. For example, this license does not give you any right to, and you may not:\n(i)\tuse or virtualize features of the software separately;\n(ii)\tpublish, copy (other than the permitted backup copy), rent, lease, or lend the software;\n(iii)\ttransfer the software (except as permitted by this agreement);\n(iv)\twork around any technical restrictions or limitations in the software;\n(v)\tuse the software as server software, for commercial hosting, make the software available for simultaneous use by multiple users over a network, install the software on a server and allow users to access it remotely, or install the software on a device for use only by remote users;\n(vi)\treverse engineer, decompile, or disassemble the software, or attempt to do so, except and only to the extent that the foregoing restriction is (a) permitted by applicable law; (b) permitted by licensing terms governing the use of open-source components that may be included with the software; or (c) required to debug changes to any libraries licensed under the GNU Lesser General Public License which are included with and linked to by the software; and\n(vii)\twhen using Internet-based features you may not use those features in any way that could interfere with anyone else\u2019s use of them, or to try to gain access to or use any service, data, account, or network, in an unauthorized manner.\nd.\tMulti use scenarios.\n(i)\tMultiple versions. If when acquiring the software you were provided with multiple versions (such as 32-bit and 64-bit versions), you may install and activate only one of those versions at a time.\n(ii)\tMultiple or pooled connections. Hardware or software you use to multiplex or pool connections, or reduce the number of devices or users that access or use the software, does not reduce the number of licenses you need. You may only use such hardware or software if you have a license for each instance of the software you are using.\n(iii)\tDevice connections. You may allow up to 20 other devices to access the software installed on the licensed device for the purpose of using the following software features: file services, print services, Internet information services, and Internet connection sharing and telephony services on the licensed device. You may allow any number of devices to access the software on the licensed device to synchronize data between devices. This section does not mean, however, that you have the right to install the software, or use the primary function of the software (other than the features listed in this section), on any of these other devices.\n(iv)\tUse in a virtualized environment. This license allows you to install only one instance of the software for use on one device, whether that device is physical or virtual. If you want to use the software on more than one virtual device, you must obtain a separate license for each instance.\n(v)\tRemote access. No more than once every 90 days, you may designate a single user who physically uses the licensed device as the licensed user. The licensed user may access the licensed device from another device using remote access technologies. Other users, at different times, may access the licensed device from another device using remote access technologies, but only on devices separately licensed to run the same or higher edition of this software.\n(vi)\tRemote assistance. You may use remote assistance technologies to share an active session without obtaining any additional licenses for the software. Remote assistance allows one user to connect directly to another user\u2019s computer, usually to correct problems.\ne.\tBackup copy. You may make a single copy of the software for backup purposes, and may also use that backup copy to transfer the software if it was acquired as stand-alone software, as described in Section 4 below.\n3.\tPrivacy; Consent to Use of Data. Your privacy is important to us. Some of the software features send or receive information when using those features. Many of these features can be switched off in the user interface, or you can choose not to use them. By accepting this agreement and using the software you agree that Microsoft may collect, use, and disclose the information as described in the Microsoft Privacy Statement (aka.ms/privacy), and as may be described in the user interface associated with the software features.\n4.\tTransfer. The provisions of this section do not apply if you acquired the software in Germany or in any of the countries listed on this site (aka.ms/transfer), in which case any transfer of the software to a third party, and the right to use it, must comply with applicable law.\na.\tSoftware preinstalled on device. If you acquired the software preinstalled on a device (and also if you upgraded from software preinstalled on a device), you may transfer the license to use the software directly to another user, only with the licensed device. The transfer must include the software and, if provided with the device, an authentic Windows label including the product key. Before any permitted transfer, the other party must agree that this agreement applies to the transfer and use of the software.\nb.\tStand-alone software. If you acquired the software as stand-alone software (and also if you upgraded from software you acquired as stand-alone software), you may transfer the software to another device that belongs to you. You may also transfer the software to a device owned by someone else if (i) you are the first licensed user of the software and (ii) the new user agrees to the terms of this agreement. You may use the backup copy we allow you to make or the media that the software came on to transfer the software. Every time you transfer the software to a new device, you must remove the software from the prior device. You may not transfer the software to share licenses between devices.\n5.\tAuthorized Software and Activation. You are authorized to use this software only if you are properly licensed and the software has been properly activated with a genuine product key or by other authorized method. When you connect to the Internet while using the software, the software will automatically contact Microsoft or its affiliate to conduct activation to associate it with a certain device. You can also activate the software manually by Internet or telephone. In either case, transmission of certain information will occur, and Internet, telephone and SMS service charges may apply. During activation (or reactivation that may be triggered by changes to your device\u2019s components), the software may determine that the installed instance of the software is counterfeit, improperly licensed or includes unauthorized changes. If activation fails, the software will attempt to repair itself by replacing any tampered Microsoft software with genuine Microsoft software. You may also receive reminders to obtain a proper license for the software. Successful activation does not confirm that the software is genuine or properly licensed. You may not bypass or circumvent activation. To help determine if your software is genuine and whether you are properly licensed, see (aka.ms/genuine). Certain updates, support, and other services might only be offered to users of genuine Microsoft software.\n6.\tUpdates. The software periodically checks for system and app updates, and downloads and installs them for you. You may obtain updates only from Microsoft or authorized sources, and Microsoft may need to update your system to provide you with those updates. By accepting this agreement, you agree to receive these types of automatic updates without any additional notice.\n7.\tDowngrade Rights. If you acquired a device from a manufacturer or installer with a Professional version of Windows preinstalled on it and it is configured to run in full feature mode, you may use either a Windows 8.1 Pro or Windows 7 Professional version, but only for so long as Microsoft provides support for that earlier version as set forth in (aka.ms/windowslifecycle). This agreement applies to your use of the earlier versions. If the earlier version includes different components, any terms for those components in the agreement that comes with the earlier version apply to your use of such components. Neither the device manufacturer or installer, nor Microsoft, is obligated to supply earlier versions to you. You must obtain the earlier version separately, for which you may be charged a fee. At any time, you may replace an earlier version with the version you originally acquired.\n8.\tExport Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit (aka.ms/exporting).\n9.\tWarranty, Disclaimer, Remedy, Damages and Procedures. \na.\tLimited Warranty. Depending on how you obtained the Windows software, Microsoft, or the device manufacturer or installer, warrants that properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. This limited warranty does not cover problems that you cause, that arise when you fail to follow instructions, or that are caused by events beyond the reasonable control of Microsoft, or the device manufacturer or installer. The limited warranty starts when the first user acquires the software, and lasts for one year if acquired from Microsoft, or for 90 days if acquired from a device manufacturer or installer. If you obtain updates or supplements directly from Microsoft during the 90-day term of the device manufacturer\u2019s or installer\u2019s limited warranty, Microsoft provides the limited warranty for those updates or supplements. Any supplements, updates, or replacement software that you may receive from Microsoft during that year are also covered, but only for the remainder of that one-year period if acquired from Microsoft, or for 90 days if acquired from a device manufacturer or installer, or for 30 days, whichever is longer. Transferring the software will not extend the limited warranty.\nb.\tDisclaimer. Neither Microsoft, nor the device manufacturer or installer, gives any other express warranties, guarantees, or conditions. Microsoft and the device manufacturer and installer exclude all implied warranties and conditions, including those of merchantability, fitness for a particular purpose, and non-infringement. If your local law does not allow the exclusion of implied warranties, then any implied warranties, guarantees, or conditions last only during the term of the limited warranty and are limited as much as your local law allows. If your local law requires a longer limited warranty term, despite this agreement, then that longer term will apply, but you can recover only the remedies this agreement allows.\nc.\tLimited Remedy. If Microsoft, or the device manufacturer or installer, breaches its limited warranty, it will, at its election, either: (i) repair or replace the software at no charge, or (ii) accept return of the software (or at its election the device on which the software was preinstalled) for a refund of the amount paid, if any. The device manufacturer or installer (or Microsoft if you acquired them directly from Microsoft) may also repair or replace supplements, updates, and replacement of the software or provide a refund of the amount you paid for them, if any. These are your only remedies for breach of warranty. This limited warranty gives you specific legal rights, and you may also have other rights which vary from state to state or country to country. \nd.\tDamages. Except for any repair, replacement, or refund that Microsoft, or the device manufacturer or installer, may provide, you may not under this limited warranty, under any other part of this agreement, or under any theory, recover any damages or other remedy, including lost profits or direct, consequential, special, indirect, or incidental damages. The damage exclusions and remedy limitations in this agreement apply even if repair, replacement, or a refund does not fully compensate you for any losses, if Microsoft, or the device manufacturer or installer, knew or should have known about the possibility of the damages, or if the remedy fails of its essential purpose. Some states and countries do not allow the exclusion or limitation of incidental, consequential, or other damages, so those limitations or exclusions may not apply to you. If your local law allows you to recover damages from Microsoft, or the device manufacturer or installer, even though this agreement does not, you cannot recover more than you paid for the software (or up to $50 USD if you acquired the software for no charge).\ne.\tWarranty and Refund Procedures. For service or refund, you must provide a copy of your proof of purchase and comply with Microsoft\u2019s return policies if you acquired the software from Microsoft, or the device manufacturer\u2019s or installer\u2019s return policies if you acquired the software from a device manufacturer or installer. If you purchased stand-alone software, those return policies might require you to uninstall the software and return it to Microsoft. If you acquired the software pre-installed on a device, those return policies may require return of the software with the entire device on which the software is installed; the certificate of authenticity label including the product key (if provided with your device) must remain affixed. Contact the device manufacturer or installer at the address or toll-free telephone number provided with your device to find out how to obtain warranty service for the software. If Microsoft is your device manufacturer or if you acquired the software from a retailer, contact Microsoft at:\n(i)\tUnited States and Canada. For warranty service or information about how to obtain a refund for software acquired in the United States or Canada, contact Microsoft via telephone at (800) MICROSOFT; via mail at Microsoft Customer Service and Support, One Microsoft Way, Redmond, WA 98052-6399; or visit (aka.ms/nareturns).\n(ii)\tEurope, Middle East, and Africa. If you acquired the software in Europe, the Middle East, or Africa, contact either Microsoft Ireland Operations Limited, Customer Care Centre, Atrium Building Block B, Carmanhall Road, Sandyford Industrial Estate, Dublin 18, Ireland, or the Microsoft affiliate serving your country (aka.ms/msoffices).\n(iii)\tAustralia. If you acquired the software in Australia, contact Microsoft to make a claim at 13 20 58; or Microsoft Pty Ltd, 1 Epping Road, North Ryde NSW 2113 Australia.\n(iv)\tOther countries. If you acquired the software in another country, contact the Microsoft affiliate serving your country (aka.ms/msoffices).\n10.\tSupport.\na.\tFor software preinstalled on a device. For the software generally, contact the device manufacturer or installer for support options. Refer to the support number provided with the software. For updates and supplements obtained directly from Microsoft, Microsoft may provide limited support services for properly licensed software as described at (aka.ms/mssupport). \nb.\tFor software acquired from a retailer. Microsoft provides limited support services for properly licensed software as described at (aka.ms/mssupport).\n11.\tBinding Arbitration and Class Action Waiver if You Live in (or, if a Business, Your Principal Place of Business is in) the United States.\nWe hope we never have a dispute, but if we do, you and we agree to try for 60 days to resolve it informally. If we can\u2019t, you and we agree to binding individual arbitration before the American Arbitration Association (\u201cAAA\u201d) under the Federal Arbitration Act (\u201cFAA\u201d), and not to sue in court in front of a judge or jury. Instead, a neutral arbitrator will decide and the arbitrator\u2019s decision will be final except for a limited right of review under the FAA. Class action lawsuits, class-wide arbitrations, private attorney-general actions, and any other proceeding where someone acts in a representative capacity aren\u2019t allowed. Nor is combining individual proceedings without the consent of all parties. \u201cWe,\u201d \u201cour,\u201d and \u201cus\u201d includes Microsoft, the device manufacturer, and software installer.\na.\tDisputes covered\u2014everything except IP. The term \u201cdispute\u201d is as broad as it can be. It includes any claim or controversy between you and the device manufacturer or installer, or you and Microsoft, concerning the software, its price, or this agreement, under any legal theory including contract, warranty, tort, statute, or regulation, except disputes relating to the enforcement or validity of your, your licensors\u2019, our, or our licensors\u2019 intellectual property rights.\nb.\tMail a Notice of Dispute first. If you have a dispute and our customer service representatives can\u2019t resolve it, send a Notice of Dispute by U.S. Mail to the device manufacturer or installer, ATTN: LEGAL DEPARTMENT. If your dispute is with Microsoft, mail it to Microsoft Corporation, ATTN: CELA ARBITRATION, One Microsoft Way, Redmond, WA 98052-6399. Tell us your name, address, how to contact you, what the problem is, and what you want. A form is available at (aka.ms/disputeform). We\u2019ll do the same if we have a dispute with you. After 60 days, you or we may start an arbitration if the dispute is unresolved.\nc.\tSmall claims court option. Instead of mailing a Notice of Dispute, and if you meet the court\u2019s requirements, you may sue us in small claims court in your county of residence (or, if a business, your principal place of business) or our principal place of business\u2014King County, Washington USA if your dispute is with Microsoft. \nd.\tArbitration procedure. The AAA will conduct any arbitration under its Commercial Arbitration Rules (or if you are an individual and use the software for personal or household use, or if the value of the dispute is $75,000 USD or less whether or not you are an individual or how you use the software, its Consumer Arbitration Rules). For more information, see (aka.ms/adr) or call 1-800-778-7879. To start an arbitration, submit the form available at (aka.ms/arbitration) to the AAA; mail a copy to the device manufacturer or installer (or to Microsoft if your dispute is with Microsoft). In a dispute involving $25,000 USD or less, any hearing will be telephonic unless the arbitrator finds good cause to hold an in-person hearing instead. Any in-person hearing will take place in your county of residence (or, if a business, your principal place of business) or our principal place of business\u2014King County, Washington if your dispute is with Microsoft. You choose. The arbitrator may award the same damages to you individually as a court could. The arbitrator may award declaratory or injunctive relief only to you individually to satisfy your individual claim. Under AAA rules, the arbitrator rules on his or her own jurisdiction, including the arbitrability of any claim. But a court has exclusive authority to enforce the prohibition on arbitration on a class-wide basis or in a representative capacity.\ne.\tArbitration fees and payments.\n(i)\tDisputes involving $75,000 USD or less. The device manufacturer or installer (or Microsoft if your dispute is with Microsoft) will promptly reimburse your filing fees and pay the AAA\u2019s and arbitrator\u2019s fees and expenses. If you reject our last written settlement offer made before the arbitrator was appointed, your dispute goes all the way to an arbitrator\u2019s decision (called an \u201caward\u201d), and the arbitrator awards you more than this last written offer, the device manufacturer or installer (or Microsoft if your dispute is with Microsoft) will: (1) pay the greater of the award or $1,000 USD; (2) pay your reasonable attorney\u2019s fees, if any; and (3) reimburse any expenses (including expert witness fees and costs) that your attorney reasonably accrues for investigating, preparing, and pursuing your claim in arbitration.\n(ii)\tDisputes involving more than $75,000 USD. The AAA rules will govern payment of filing fees and the AAA\u2019s and arbitrator\u2019s fees and expenses.\nf.\tMust file within one year. You and we must file in small claims court or arbitration any claim or dispute (except intellectual property disputes \u2014 see Section 11.a.) within one year from when it first could be filed. Otherwise, it\u2019s permanently barred.\ng.\tSeverability. If any part of Section 11 (Binding Arbitration and Class Action Waiver) is found to be illegal or unenforceable, the remainder will remain in effect (with an arbitration award issued before any court proceeding begins), except that if a finding of partial illegality or unenforceability would allow class-wide or representative arbitration, Section 11 will be unenforceable in its entirety.\nh.\tConflict with AAA rules. This agreement governs if it conflicts with the AAA\u2019s Commercial Arbitration Rules or Consumer Arbitration Rules.\ni.\tMicrosoft as party or third-party beneficiary. If Microsoft is the device manufacturer or if you acquired the software from a retailer, Microsoft is a party to this agreement. Otherwise, Microsoft is not a party but is a third-party beneficiary of your agreement with the device manufacturer or installer to resolve disputes through informal negotiation and arbitration.\n12.\tGoverning Law. The laws of the state or country where you live (or, if a business, where your principal place of business is located) govern all claims and disputes concerning the software, its price, or this agreement, including breach of contract claims and claims under consumer protection laws, unfair competition laws, implied warranty laws, for unjust enrichment, and in tort, regardless of conflict of law principles. In the United States, the FAA governs all provisions relating to arbitration.\n13.\tConsumer Rights, Regional Variations. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. You may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:\na.\tAustralia. References to \u201cLimited Warranty\u201d are references to the express warranty provided by Microsoft or the device manufacturer or installer. This warranty is given in addition to other rights and remedies you may have under law, including your rights and remedies under the Australian Consumer Law consumer guarantees. Nothing in this agreement limits or changes those rights and remedies. In particular:.\n(i)\tthe provisions excluding and limiting warranties, guarantees, damages and remedies, and limiting duration of your rights under local laws in Section 9 headed Warranty, Disclaimer, Remedy, Damages and Procedures do not apply to the Australian Consumer Law consumer guarantees and your rights and remedies under them;\n(ii)\tsupport and refund policies referred to in Section 10 are subject to the Australian Consumer Law;\n(iii)\tthe Australian Consumer Law consumer guarantees apply to the evaluation software described in Section 14 d (ii) and the preview software described in Section 14 d (iv); and\n(iv)\tour goods come with guarantees that cannot be excluded under the Australian Consumer Law. In this section, \u201cgoods\u201d refers to the software for which Microsoft, the device manufacturer or installer provides the express warranty. You are entitled to a replacement or refund for a major failure and compensation for any other reasonably foreseeable loss or damage. You are also entitled to have the goods repaired or replaced if the goods fail to be of acceptable quality and the failure does not amount to a major failure.\nTo learn more about your rights under the Australian Consumer Law, please review the information at (aka.ms/acl).\nb.\tCanada. You may stop receiving updates on your device by turning off Internet access. If and when you re-connect to the Internet, the software will resume checking for and installing updates.\nc.\tEuropean Union. The academic use restriction in Section 14.d(i) below does not apply in the jurisdictions listed on this site: (aka.ms/academicuse).\nd.\tGermany and Austria.\n(i)\tWarranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, the device manufacturer or installer, and Microsoft, give no contractual guarantee in relation to the licensed software.\n(ii)\tLimitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, the device manufacturer or installer, or Microsoft is liable according to the statutory law.\nSubject to the preceding sentence, the device manufacturer or installer, or Microsoft will only be liable for slight negligence if the device manufacturer or installer or Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called \"cardinal obligations\"). In other cases of slight negligence, the device manufacturer or installer or Microsoft will not be liable for slight negligence.\ne.\tOther regions. See (aka.ms/variations) for a current list of regional variations.\n14.\tAdditional Notices.\na.\tNetworks, data and Internet usage. Some features of the software and services accessed through the software may require your device to access the Internet. Your access and usage (including charges) may be subject to the terms of your cellular or internet provider agreement. Certain features of the software may help you access the Internet more efficiently, but the software\u2019s usage calculations may be different from your service provider\u2019s measurements. You are always responsible for (i) understanding and complying with the terms of your own plans and agreements, and (ii) any issues arising from using or accessing networks, including public/open networks. You may use the software to connect to networks, and to share access information about those networks, only if you have permission to do so.\nb.\tH.264/AVC and MPEG-4 visual standards and VC-1 video standards. The software may include H.264/MPEG-4 AVC and/or VC-1 decoding technology. MPEG LA, L.L.C. requires this notice:\nTHIS PRODUCT IS LICENSED UNDER THE AVC, THE VC-1, AND THE MPEG-4 PART 2 VISUAL PATENT PORTFOLIO LICENSES FOR THE PERSONAL AND NON-COMMERCIAL USE OF A CONSUMER TO (i) ENCODE VIDEO IN COMPLIANCE WITH THE ABOVE STANDARDS (\u201cVIDEO STANDARDS\u201d) AND/OR (ii) DECODE AVC, VC-1, AND MPEG-4 PART 2 VIDEO THAT WAS ENCODED BY A CONSUMER ENGAGED IN A PERSONAL AND NON-COMMERCIAL ACTIVITY AND/OR WAS OBTAINED FROM A VIDEO PROVIDER LICENSED TO PROVIDE SUCH VIDEO. NO LICENSE IS GRANTED OR SHALL BE IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED FROM MPEG LA, L.L.C. SEE (AKA.MS/MPEGLA).\nc.\tMalware protection. Microsoft cares about protecting your device from malware. The software will turn on malware protection if other protection is not installed or has expired. To do so, other antimalware software will be disabled or may have to be removed.\nd.\tLimited rights versions. If the software version you acquired is marked or otherwise intended for a specific or limited use, then you may only use it as specified. You may not use such versions of the software for commercial, non-profit, or revenue-generating activities.\n(i)\tAcademic. For academic use, you must be a student, faculty or staff of an educational institution at the time of purchase.\n(ii)\tEvaluation. For evaluation (or test or demonstration) use, you may not sell the software, use it in a live operating environment, or use it after the evaluation period. Notwithstanding anything to the contrary in this Agreement, evaluation software is provided \u201cAS IS\u201d and no warranty, implied or express (including the Limited Warranty), applies to these versions.\n(iii)\tNFR. You may not sell software marked as \u201cNFR\u201d or \u201cNot for Resale\u201d.\n(iv)\tPreview. You may choose to use preview, insider, beta, or other pre-release versions of the software (\u201cpreviews\u201d) that Microsoft may make available. You may use previews only up to the software\u2019s expiration date and so long as you comply with all the terms of this agreement. Previews are experimental and may be substantially different from the commercially released version. Notwithstanding anything to the contrary in this agreement, previews are provided \u201cAS IS,\u201d and no warranty, implied or express (including the Limited Warranty), applies to these versions. By installing previews on your device, you may void or impact your device warranty and may not be entitled to support from your device manufacturer or network operator, if applicable. Microsoft is not responsible for any damage thereby caused to you. Microsoft may not provide support services for previews. If you provide Microsoft comments, suggestions or other feedback about the preview (\u201csubmission\u201d), you grant Microsoft and its partners rights to use the submission in any way and for any purpose.\n15.\tEntire Agreement. This agreement (together with the printed paper license terms or other terms accompanying any software supplements, updates, and services that are provided by the device manufacturer or installer, or Microsoft, and that you use), and the terms contained in web links listed in this agreement, are the entire agreement for the software and any such supplements, updates, and services (unless the device manufacturer or installer, or Microsoft, provides other terms with such supplements, updates, or services). You can review this agreement after your software is running by going to (aka.ms/useterms) or going to Settings - System - About within the software. You can also review the terms at any of the links in this agreement by typing the URLs into a browser address bar, and you agree to do so. You agree that you will read the terms before using the software or services, including any linked terms. You understand that by using the software and services, you ratify this agreement and the linked terms. There are also informational links in this agreement. The links containing notices and binding terms are:\n\u00b7\tMicrosoft Privacy Statement (aka.ms/privacy)\n\u00b7\tMicrosoft Services Agreement (aka.ms/msa)\n\u00b7\tAdobe Flash Player License Terms (aka.ms/adobeflash)", + "json": "ms-windows-os-2018.json", + "yaml": "ms-windows-os-2018.yml", + "html": "ms-windows-os-2018.html", + "license": "ms-windows-os-2018.LICENSE" + }, + { + "license_key": "ms-windows-sdk-server-2008-net-3.5", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-win-sdk-server-2008-net-3.5", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-windows-sdk-server-2008-net-3.5" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft Windows SDK for Windows Server 2008 and .NET Framework 3.5 License\n\nMICROSOFT SOFTWARE LICENSE TERMS\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft \n\udbff\udc00 updates,\n\udbff\udc00 supplements,\n\udbff\udc00 Internet-based services, and \n\udbff\udc00 support services \nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\nIf you comply with these license terms, you have the rights below. \n\n1. INSTALLATION AND USE RIGHTS.\na. Installation and Use. One user may install and use any number of copies of the software on your devices to design, develop and test your programs that run on a Microsoft Windows operating system.\nb. Included Microsoft Programs. The software contains other Microsoft programs. These license terms apply to your use of those programs.\n\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS. \n\na. Distributable Code. The software contains code that you are permitted to distribute in programs you develop if you comply with the terms below. \ni. Right to Use and Distribute. \nThe code and text files listed below are \"Distributable Code.\"\n\udbff\udc00 REDIST.TXT Files. You may copy and distribute the object code form of code listed in REDIST.TXT files. \n\udbff\udc00 Sample Code. You may modify, copy, and distribute the source and object code form of code marked as \"sample.\"\n\udbff\udc00 Microsoft Merge Modules. You may copy and distribute the unmodified output of Microsoft Merge Modules. \n\udbff\udc00 Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\nii. Distribution Requirements. For any Distributable Code you distribute, \nyou must\n\udbff\udc00 add significant primary functionality to it in your programs; \n\udbff\udc00 for any Distributable Code having a filename extension of .lib, distribute only the results of running such Distributable Code through a linker with your application; \n\udbff\udc00 distribute Distributable Code included in a setup program only as part of that setup program without modification; \n\udbff\udc00 require distributors and external end users to agree to terms that protect it at least as much as this agreement; \n\udbff\udc00 display your valid copyright notice on your programs;\n\udbff\udc00 for Distributable Code from the Windows Media Services SDK portions of the software, include in your program\u2019s Help-About box (or in another obvious place if there is no box) the following copyright notice: \"Portions utilize Microsoft Windows Media Technologies. Copyright (c) 2006 Microsoft Corporation. All Rights Reserved\"; and \n\udbff\udc00 indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\niii. Distribution Restrictions. \nYou may not \n\udbff\udc00 alter any copyright, trademark or patent notice in the Distributable Code; \n\udbff\udc00 use Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft; \n\udbff\udc00 include Distributable Code in malicious, deceptive or unlawful programs; or \n\udbff\udc00 modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that \n\udbff\udc00 the code be disclosed or distributed in source code form; or \n\udbff\udc00 others have the right to modify it. \n\nb. Additional Functionality. Microsoft may provide additional functionality for the software. Other license terms and fees may apply.\n\n3. INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software. It may change or cancel them at any time. You may not use this service in any way that could harm it or impair anyone else\u2019s use of it. You may not use the service to try to gain unauthorized access to any service, data, account or network by any means.\n\n4. MICROSOFT .NET BENCHMARK TESTING. The software includes one or more components of the .NET Framework 3.5 (\".NET Components\"). You may conduct internal benchmark testing of those components. You may disclose the results of any benchmark test of those components, provided that you comply with the conditions set forth at http://go.microsoft.com/fwlink/?LinkID=66406. Notwithstanding any other agreement you may have with Microsoft, if you disclose such benchmark test results, Microsoft shall have the right to disclose the results of benchmark tests it conducts of your products that compete with the applicable .NET Component, provided it complies with the same conditions set forth at http://go.microsoft.com/fwlink/?LinkID=66406.\n\n5. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. For more information, see www.microsoft.com/licensing/userights . \nYou may not\n\udbff\udc00 work around any technical limitations in the software; \n\udbff\udc00 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; \n\udbff\udc00 make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation; \n\udbff\udc00 publish the software for others to copy; \n\udbff\udc00 rent, lease or lend the software; or \n\udbff\udc00 use the software for commercial software hosting services.\n\n6. CODE GENERATION AND OPTIMIZATION TOOLS. You may not use the code generation or optimization tools in the software (such as compilers, linkers, assemblers, runtime code generators, and \ncode generating design and modeling tools) to create programs, object code, libraries, assemblies, or executables to run on a platform other than Microsoft operating systems, run-time technologies, or application platforms.\n\n7. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n8. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\n9. TRANSFER TO A THIRD PARTY. The first user of the software may transfer it, and this agreement, directly to a third party. Before the transfer, that party must agree that this agreement applies to the transfer and use of the software. The first user must uninstall the software before transferring it separately from the device. The first user may not retain any copies.\n\n10. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting .\n\n11. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n12. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n13. APPLICABLE LAW.\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n14. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n15. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n16. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\nThis limitation applies to \n\udbff\udc00 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and \n\udbff\udc00 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\n", + "json": "ms-windows-sdk-server-2008-net-3.5.json", + "yaml": "ms-windows-sdk-server-2008-net-3.5.yml", + "html": "ms-windows-sdk-server-2008-net-3.5.html", + "license": "ms-windows-sdk-server-2008-net-3.5.LICENSE" + }, + { + "license_key": "ms-windows-sdk-win10", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-windows-sdk-win10", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\n03/26/2021\n\nMicrosoft Enterprise Windows Driver Kit\nWindows Software Developer Kit for Windows 10\nWindows Driver Kit for Windows 10\nBuild Tools for Visual Studio 2017\n\nIF YOU LIVE IN, OR YOUR PRINCIPAL PLACE OF BUSINESS IS IN, THE UNITED STATES, PLEASE READ THE BINDING ARBITRATION AGREEMENT AND CLASS ACTION WAIVER (SECTION 20). IT AFFECTS HOW DISPUTES ARE RESOLVED.\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\nupdates,\nsupplements,\nInternet-based services, and\nsupport services,\nfor this software, unless other terms accompany those items. If so, those terms apply.\n\nBy using the software, you accept these terms. If you do not accept them, do not use the software. *******************************************************************\n\nIf you comply with these license terms, you have the perpetual rights below.\n\n1. INSTALLATION AND USE RIGHTS.\n\na. Installation and use. One user may install and use any number of copies of the software on your devices to design, develop and test your device drivers and supporting components, as defined by DCHU. Further, you may install, use and/or deploy via a network management system or as part of a desktop image, any number of copies of the software on computer devices within your internal corporate network to design, develop and test your device drivers and supporting components, as defined by DCHU, that run on a Microsoft operating system. Each copy must be complete, including all copyright and trademark notices. You must require end users to agree to terms that protect the software as much as these license terms.\n\nb. Included Microsoft Programs. The software contains other Microsoft programs. These license terms govern your use of included Microsoft programs.\n\nc. Utilities. The software contains certain components that are identified in the Utilities List located https://go.microsoft.com/fwlink/?LinkId=524839. Depending on the specific edition of the software, the number of Utility files you receive with the software may not be equal to the number of Utilities listed in the Utilities List. Except as otherwise provided on the Utilities List for specific files, you may copy and install the Utilities you receive with the software on to other third party machines. These Utilities may only be used to debug and deploy your programs and databases you have developed with the software. You must delete all the Utilities installed onto a third party machine within the earlier of (i) when you have finished debugging or deploying your programs; or (ii) thirty (30) days after installation of the Utilities onto that machine. We may add additional files to this list from time to time.\n\nd. Build Server List. The software includes the Visual Studio 2017 Build Tools. It also contains certain components that are identified in the Build Server List located at https://go.microsoft.com/fwlink/?LinkId=524838. You may install copies of the Visual Studio 2017 Build Tools and copies of the files listed in the Build Server list, onto your build machines, solely for the purpose of compiling, building, verifying and archiving your device drivers. These components may only be used in order to create and configure build systems internal to your organization to support your internal build environment. These components do not provide external distribution rights to any of the software or enable you to provide a build environment as a service to third parties. We may add additional files to this list from time to time.\n\ne. Third Party Programs. The software may include third party code that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party code are included for your information only and may be found in the credits.rtf or ThirdPartyNotices.txt file associated with the software.\n\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\na. Distributable Code. The software contains code that you are permitted to distribute in programs you develop if you comply with the terms below.\n\ni. Right to Use and Distribute. The code and text files listed below are \u201cDistributable Code.\u201d\n\nREDIST.TXT Files. You may copy and distribute the object code form of code listed in REDIST.TXT files plus any of the files listed on the REDIST list located at https://go.microsoft.com/fwlink/?LinkId=294840.\n\nThird party distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\n\nii. Distribution Requirements. For any Distributable Code you distribute, you must\n\nadd significant primary functionality to it in your programs;\nfor any Distributable Code having a filename extension of .lib, distribute only the results of running such Distributable Code through a linker with your program;\ndistribute Distributable Code included in a setup program only as part of that setup program without modification;\nrequire distributors and external end users to agree to terms that protect it at least as much as this agreement;\ndisplay your valid copyright notice on your programs; and\nindemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\n\niii. Distribution Restrictions. You may not\n\nalter any copyright, trademark or patent notice in the Distributable Code;\nuse Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\ndistribute Distributable Code to run on a platform other than the Windows platform;\ninclude Distributable Code in malicious, deceptive or unlawful programs; or\nmodify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\nthe code be disclosed or distributed in source code form; or\nothers have the right to modify it.\n\niv. Distribution Rights for Features made Available with the Software.\n\nWindows App Requirements. If you intend to make your program available in the Microsoft Store, the program must comply with the Certification as defined and described in the App Developer Agreement, currently available at: msdn.microsoft.com/en-us/library/windows/apps/hh694058.aspx.\n\nBing Maps. The software may include features that retrieve content such as maps, images, and other data through the Bing Maps (or successor branded) application programming interface (the \u201cBing Maps API\u201d) to create reports displaying data on top of maps, aerial and hybrid imagery. If these features are included, you may use these features to create and view dynamic or static documents only in conjunction with and through methods and means of access integrated in the software. You may not otherwise copy, store, archive, or create a database of the entity information including business names, addresses and geocodes available through the Bing Maps API. You may not use the Bing Maps API to provide sensor based guidance/routing, nor use any Road Traffic Data or Bird\u2019s Eye Maps API and associated content is also subject to the additional terms and conditions at https://go.microsoft.com/fwlink/?LinkID=21969.\n\nAdditional Mapping APIs. The software may include application programming interfaces that provide maps and other related mapping features and services that are not provided by Bing (the \u201cAdditional Mapping APIs\u201d). These Additional Mapping APIs are subject to additional terms and conditions and may require payment of fees to Microsoft and/or third party providers based on the use or volume of use of such Additional Mapping APIs. These terms and conditions will be provided when you obtain any necessary license keys to use such Additional Mapping APIs or when you review or receive documentation related to the use of such Additional Mapping APIs.\n\nPush Notifications. The Microsoft Push Notification Service may not be used to send notifications that are mission critical or otherwise could affect matters of life or death, including without limitation critical notifications related to a medical device or condition. MICROSOFT EXPRESSLY DISCLAIMS ANY WARRANTIES THAT THE USE OF THE MICROSOFT PUSH NOTIFICATION SERVICE OR DELIVERY OF MICROSOFT PUSH NOTIFICATION SERVICE NOTIFICATIONS WILL BE UNINTERRUPTED, ERROR FREE, OR OTHERWISE GUARANTEED TO OCCUR ON A REAL-TIME BASIS.\n\nSpeech namespace API. Using speech recognition functionality via the Speech namespace APIs in a program requires the support of a speech recognition service. The service may require network connectivity at the time of recognition (e.g., when using a predefined grammar). In addition, the service may also collect speech-related data in order to provide and improve the service. The speech-related data may include, for example, information related to grammar size and string phrases in a grammar.\n\nAlso, in order for a user to use speech recognition on the phone they must first accept certain terms of use. The terms of use notify the user that data related to their use of the speech recognition service will be collected and used to provide and improve the service. If a user does not accept the terms of use and speech recognition is attempted by the application, the operation will not work and an error will be returned to the application.\n\nAPI Use. We may monitor and collect data related to a program\u2019s use of APIs in order to provide, improve and personalize Microsoft products and services. End user information collected by Microsoft\u2019s monitoring and data collection related to your program\u2019s use of APIs is subject to the Microsoft Consumer Privacy Statement.\n\nLocation Framework. The software may contain a location framework component that enables support of location services in programs. In addition to the other limitations in this agreement, you must comply with all applicable local laws and regulations when using the location framework component or the rest of the software.\n\nDevice ID Access. The software may contain a component that enables programs to access the device ID of the device that is running the program. In addition to the other limitations in this agreement, you must comply with all applicable local laws and regulations when using the device ID access component or the rest of the software.\n\nPlayReady Support. The software may include the Windows Emulator, which contains Microsoft\u2019s PlayReady content access technology. Content owners use Microsoft PlayReady content access technology to protect their intellectual property, including copyrighted content. This software uses PlayReady technology to access PlayReady-protected content and/or WMDRM-protected content. Microsoft may decide to revoke the software\u2019s ability to consume PlayReady-protected content for reasons including but not limited to (i) if a breach or potential breach of PlayReady technology occurs, (ii) proactive robustness enhancement, and (iii) if Content owners require the revocation because the software fails to properly enforce restrictions on content usage. Revocation should not affect unprotected content or content protected by other content access technologies. Content owners may require you to upgrade PlayReady to access their content. If you decline an upgrade, you will not be able to access content that requires the upgrade and may not be able to install other operating system updates or upgrades.\n\nPackage Managers. The software may include package managers, like NuGet, that give you the option to download other Microsoft and third party software packages to use with your application. Those packages are under their own licenses, and not this agreement. Microsoft does not distribute, license or provide any warranties for any of the third party packages.\n\nFont Components. While the software is running, you may use its fonts to display and print content. You may only embed fonts in content as permitted by the embedding restrictions in the fonts; and temporarily download them to a printer or other output device to help print content.\n\nNotice about the H.264/AVD Visual Standard, and the VC-1 Video Standard. This software may include H.264/MPEG-4 AVC and/or VD-1 decoding technology. MPEG LA, L.L.C. requires this notice: THIS PRODUCT IS LICENSED UNDER THE AVC AND THE VC-1 PATENT PORTFOLIO LICENSES FOR THE PERSONAL AND NON-COMMERCIAL USE OF A CONSUMER TO (i) ENCODE VIDEO IN COMPLIANCE WITH THE ABOVE STANDARDS (\u201cVIDEO STANDARDS\u201d) AND/OR (ii) DECODE AVC, AND VC-1 VIDEO THAT WAS ENCODED BY A CONSUMER ENGAGED IN A PERSONAL AND NON-COMMERCIAL ACTIVITY AND/OR WAS OBTAINED FROM A VIDEO PROVIDER LICENSED TO PROVIDE SUCH VIDEO. NONE OF THE LICENSES EXTEND TO ANY OTHER PRODUCT REGARDLESS OF WHETHER SUCH PRODUCT IS INCLUDED WITH THIS SOFTWARE IN A SINGLE ARTICLE. NO LICENSE IS GRANTED OR SHALL BE IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED FROM MPEG LA, L.L.C. SEE WWW.MPEGLA.COM.\n\nFor clarification purposes, this notice does not limit or inhibit the use of the software for normal business uses that are personal to that business which do not include (i) redistribution of the software to third parties, or (ii) creation of content with the VIDEO STANDARDS compliant technologies for distribution to third parties.\n\nDATA. The software may collect information about you and your use of the software and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. Your opt-out rights, if any, are described in the product documentation. Some features in the software may enable collection of data from users of your applications that access or use the software. If you use these features to enable data collection in your applications, you must comply with applicable law, including getting any required user consent, and maintain a prominent privacy policy that accurately informs users about how you use, collect, and share their data. You can learn more about Microsoft\u2019s data collection and use in the help documentation and the Microsoft Privacy Statement at https://go.microsoft.com/fwlink/?LinkId=521839. You agree to comply with all applicable provisions of the Microsoft Privacy Statement.\n\nSCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\na. work around any technical limitations in the software;\nb. reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\nc. make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\nd. publish the software for others to copy;\ne. rent, lease or lend the software;\nf. transfer the software or this agreement to any third party; or\ng. use the software for commercial software hosting services.\n\n.NET FRAMEWORK SOFTWARE. The software contains Microsoft .NET Framework software. This software is part of Windows. The license terms for Windows apply to your use of the .NET Framework software.\n\nBACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\nDOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n\nEXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit (aka.ms/exporting).\n\nSUPPORT SERVICES. We are not obligated under this agreement to provide any support services for the software. If we elect to do so, any such support is \u201cas is\u201d, \u201cwith all faults\u201d, and without warranty of any kind.\n\nBINDING ARBITRATION AND CLASS ACTION WAIVER IF YOU LIVE (OR, IF A BUSINESS, YOUR PRINCIPAL PLACE OF BUSINESS IS) IN THE UNITED STATES. If we have a dispute, you and we agree to try for 60 days to resolve it informally. If we can\u2019t, you and we agree to binding individual arbitration before the American Arbitration Association under the Federal Arbitration Act, and not to sue in court in front of a judge or jury. Instead, a neutral arbitrator will decide. Class action lawsuits, class-wide arbitrations, private attorney-general actions, and any other proceeding where someone acts in a representative capacity are not allowed; nor is combining individual proceedings without the consent of all parties. The complete Arbitration Agreement and Class Action Waiver contains more terms and is at https://www.microsoft.com/en-us/legal/arbitration/default.aspx. You and we agree to these terms.\n\nENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\nCONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:\n\na. Australia. You have statutory guarantees under the Australian Consumer Law and nothing in these terms is intended to affect those rights.\n\nb. Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software.\n\nc. Germany and Austria.\n\ni. Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software.\n\nii. Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law.\n\nSubject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called \"cardinal obligations\"). In other cases of slight negligence, Microsoft will not be liable for slight negligence.\n\nDISCLAIMER OF WARRANTY. The software is licensed \u201cas-is.\u201d You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights or statutory guarantees under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n\nLIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.\n\na. This limitation applies to\ni. anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\nii. claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, these license terms are provided below in French.\n\nRemarque : Ce logiciel \u00e9tant distribu\u00e9 au Qu\u00e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\u00e7ais.\n\nEXON\u00c9RATION DE GARANTIE. Le logiciel vis\u00e9 par une licence est offert \u00ab tel quel \u00bb. Toute utilisation de ce logiciel est \u00e0 votre seule risque et p\u00e9ril. Microsoft n\u2019accorde aucune autre garantie expresse. Vous pouvez b\u00e9n\u00e9ficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\u00e9 marchande, d\u2019ad\u00e9quation \u00e0 un usage particulier et d\u2019absence de contrefa\u00e7on sont exclues.\n\nLIMITATION DES DOMMAGES-INT\u00c9R\u00caTS ET EXCLUSION DE RESPONSABILIT\u00c9 POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \u00e0 hauteur de 5,00 $ US. Vous ne pouvez pr\u00e9tendre \u00e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\u00e9ciaux, indirects ou accessoires et pertes de b\u00e9n\u00e9fices. Cette limitation concerne :\n\ntout ce qui est reli\u00e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\n\nles r\u00e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\u00e9 stricte, de n\u00e9gligence ou d\u2019une autre faute dans la limite autoris\u00e9e par la loi en vigueur.\n\nElle s\u2019applique \u00e9galement, m\u00eame si Microsoft connaissait ou devrait conna\u00eetre l\u2019\u00e9ventualit\u00e9 d\u2019un tel dommage. Si votre pays n\u2019autorise pas l\u2019exclusion ou la limitation de responsabilit\u00e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\u2019exclusion ci-dessus ne s\u2019appliquera pas \u00e0 votre \u00e9gard.\n\nEFFET JURIDIQUE. Le pr\u00e9sent contrat d\u00e9crit certains droits juridiques. Vous pourriez avoir d\u2019autres droits pr\u00e9vus par les lois de votre pays. Le pr\u00e9sent contrat ne modifie pas les droits que vous conf\u00e8rent les lois de votre pays si celles-ci ne le permettent pas.", + "json": "ms-windows-sdk-win10.json", + "yaml": "ms-windows-sdk-win10.yml", + "html": "ms-windows-sdk-win10.html", + "license": "ms-windows-sdk-win10.LICENSE" + }, + { + "license_key": "ms-windows-sdk-win7-net-4", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-windows-sdk-win7-net-4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT WINDOWS SOFTWARE DEVELOPMENT KIT FOR WINDOWS 7 and .NET FRAMEWORK 4\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\n\u2022 updates,\n\u2022 supplements,\n\u2022 Internet-based services, and \n\u2022 support services\nfor this software, unless other terms accompany those items. If so, those terms apply.\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\nIf you comply with these license terms, you have the rights below.\n1. INSTALLATION AND USE RIGHTS. \na. Installation and Use. You may install and use any number of copies of the software on your devices to design, develop and test your programs that run on a Microsoft Windows operating system. Further, you may install, use and/or deploy via a network management system or as part of a desktop image, any number of copies of the software on computer devices within your internal corporate network to design, develop and test your programs that run on a Microsoft Windows operating system. Each copy must be complete, including all copyright and trademark notices. You must require end users to agree to the terms that protect the software as much as these License terms.\nb. Included Microsoft Programs. The software contains other Microsoft programs. These license terms apply to your use of those programs. \n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\na. Distributable Code. The software contains code that you are permitted to distribute in programs you develop if you comply with the terms below.\ni. Right to Use and Distribute. The code and text files listed below are \"Distributable Code.\"\n\u2022 REDIST.TXT Files. You may copy and distribute the object code form of code listed in REDIST.TXT files, plus any files listed on the REDIST list located at .\n\u2022 Sample Code. You may modify, copy, and distribute the source and object code form of code marked as \"sample.\"\n\u2022\tSample Code for Microsoft Bing Maps AJAX Control. The software contains sample code that makes use of the Bing Maps AJAX Control. Your use and access of the Bing Maps AJAX Control is subject to the \"Microsoft Bing Maps Platform API\u2019s Terms of Use\" which is located at: . \n\u2022 Microsoft Merge Modules. You may copy and distribute the unmodified output of Microsoft Merge Modules.\n\u2022 Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\nii. Distribution Requirements. For any Distributable Code you distribute, you must\n\u2022 add significant primary functionality to it in your programs;\n\u2022 for any Distributable Code having a filename extension of .lib, distribute only the results of running such Distributable Code through a linker with your application;\n\u2022 distribute Distributable Code included in a setup program only as part of that setup program without modification;\n\u2022 require distributors and external end users to agree to terms that protect it at least as much as this agreement; \n\u2022 display your valid copyright notice on your programs; \n\u2022 for Distributable Code from the Windows Media Services SDK portions of the software, include in your program\u2019s Help-About box (or in another obvious place if there is no box) the following copyright notice: \"Portions utilize Microsoft Windows Media Technologies. Copyright (c) 2006 Microsoft Corporation. All Rights Reserved\"; and\n\u2022 indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\niii. Distribution Restrictions. You may not\n\u2022 alter any copyright, trademark or patent notice in the Distributable Code; \n\u2022 use Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft; \n\u2022 distribute Distributable Code to run on a platform other than the Windows platform;\n\u2022 include Distributable Code in malicious, deceptive or unlawful programs; or\n\u2022 modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\n\u2022 the code be disclosed or distributed in source code form; or \n\u2022 others have the right to modify it.\nb. Additional Functionality. Microsoft may provide additional functionality for the software. Other license terms and fees may apply.\n3. INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software. It may change or cancel them at any time. You may not use this service in any way that could harm it or impair anyone else\u2019s use of it. You may not use the service to try to gain unauthorized access to any service, data, account or network by any means.\n4. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. For more information, see www.microsoft.com/licensing/userights . You may not\n\u2022 work around any technical limitations in the software;\n\u2022 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\n\u2022 make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation;\n\u2022 publish the software for others to copy;\n\u2022 rent, lease or lend the software; or\n\u2022 use the software for commercial software hosting services.\n5.\tBACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n6. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\n7. TRANSFER TO A THIRD PARTY. The first user of the software may transfer it, and this agreement, directly to a third party. Before the transfer, that party must agree that this agreement applies to the transfer and use of the software. The first user must uninstall the software before transferring it separately from the device. The first user may not retain any copies.\n8. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting .\n9. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n10. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n11. APPLICABLE LAW.\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n12. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n13. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n14. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\nThis limitation applies to\n\u2022 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\n\u2022 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n(French text omitted)", + "json": "ms-windows-sdk-win7-net-4.json", + "yaml": "ms-windows-sdk-win7-net-4.yml", + "html": "ms-windows-sdk-win7-net-4.html", + "license": "ms-windows-sdk-win7-net-4.LICENSE" + }, + { + "license_key": "ms-windows-server-2003-ddk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-windows-server-2003-ddk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft Windows Server 2003 DDK License\n\nEND-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE\nMICROSOFT WINDOWS SERVER 2003 DRIVER DEVELOPMENT KIT SERVICE PACK 1\n\nIMPORTANT-READ CAREFULLY: This End-User License Agreement (\"EULA\") is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation (\"Microsoft\") for the Microsoft software that accompanies this EULA, which includes computer software and may include associated media, printed materials, \"online\" or electronic documentation, and Internet-based services (\"Software\"). An amendment or addendum to this EULA may accompany the Software. YOU AGREE TO BE BOUND BY THE TERMS OF THIS EULA BY INSTALLING, COPYING, OR OTHERWISE USING THE SOFTWARE. IF YOU DO NOT AGREE, DO NOT INSTALL, COPY, OR USE THE SOFTWARE; YOU MAY RETURN IT TO YOUR PLACE OF PURCHASE (IF APPLICABLE) FOR A FULL REFUND.\n\n1.\tGRANTS OF LICENSE. Microsoft grants you the rights described in this EULA provided that you comply with all terms and conditions of this EULA. \n1.1\tGeneral License Grant. Microsoft grants to you a personal, non-exclusive, nontransferable, royalty-free license to use the Software, and to make and use five (5) copies of the Software on one or more computers located at your premises solely for the purpose of designing, developing and testing drivers that operate in conjunction with the Software for use with Microsoft Windows 2000 Professional, Microsoft Windows 2000 Server, Microsoft Windows 2000 Advanced Server and Microsoft Windows 2000 Datacenter Server; Microsoft Windows XP, Microsoft Windows XP Service Pack 1; Microsoft Windows Server 2003 Standard Edition, Microsoft Windows Server 2003 Enterprise Edition and Microsoft Windows Server 2003 Datacenter Edition operating system products and any Microsoft operating system product that is a successor to any of the foregoing (each an \"OS Product\"). \n1.2\tDocumentation. You may make and use an unlimited number of copies of any documentation, provided that such copies shall be used only for personal purposes and are not to be republished or distributed (either in hard copy or electronic form) beyond your premises. \n\n2.\tADDITIONAL LICENSE RIGHTS -- REDISTRIBUTABLE CODE. In addition to the rights granted in Section 1, certain portions of the Software, as described in this Section 2, are provided to you with additional license rights. These additional license rights are conditioned upon your compliance with the distribution requirements and license limitations described in Section 3.\n2.1\tSample Code. Microsoft grants you a limited, nonexclusive, royalty-free license to: (a) use and modify the source code version of those portions of the Software identified as \"Samples\" in the Software (\"Sample Code\") for the sole purposes of designing, developing, and testing your software product(s), and (b) reproduce and distribute the Sample Code, along with any modifications thereof, in object code form (\"Redistributable Code\"). For applicable redistribution requirements for Sample Code, see Section 3 below.\n\n3.\tDISTRIBUTION REQUIREMENTS AND OTHER LICENSE RIGHTS AND LIMITATIONS. If you choose to exercise your rights under Section 2, any redistribution by you is subject to your compliance with this Section 3.\n(a)\tIf you choose to redistribute Sample Code, or Redistributable Code (collectively, the \"Redistributables\") as described in Section 2, you agree: (i) except as otherwise noted in Section 2.1 (Sample Code), to distribute the Redistributables only in object code form and in conjunction with and as a part of software developed by you that adds significant and primary functionality to the Redistributables (\"Licensee Software\"); (ii) that the Redistributables only operate in conjunction with Microsoft Windows platforms; (iii) that if the Licensee Software is distributed beyond Licensee's premises or externally from Licensee's organization, to distribute the Licensee Software containing the Redistributables pursuant to an end user license agreement (which may be \"break-the-seal\", \"click-wrap\" or signed), with terms no less protective than those contained in this EULA; (iv) not to use Microsoft's name, logo, or trademarks to market the Licensee Software; (v) to display your own valid copyright notice which shall be sufficient to protect Microsoft's copyright in the Software; (vi) not to remove or obscure any copyright, trademark or patent notices that appear on the Software as delivered to you; (vii) to indemnify, hold harmless, and defend Microsoft from and against any claims or lawsuits, including attorney's fees, that arise or result from the use or distribution of the Licensee Software; (viii) to otherwise comply with the terms of this EULA; and (ix) agree that Microsoft reserves all rights not expressly granted. \nYou also agree not to permit further distribution of the Redistributables by your end users except you may permit further redistribution of the Redistributables by your distributors to your end-user customers if (i) your distributors only distribute the Redistributables in conjunction with, and as part of, the Licensee Software, (ii) you comply with all other terms of this EULA, and (ii) your distributors comply with all restrictions of this EULA that are applicable to you. \n(b)\tIf you use the Redistributable Code, then in addition to your compliance with the applicable distribution requirements described for the Redistributable Code, the following also applies. Your license rights to the Redistributable Code are conditioned upon your not (i) creating derivative works of the Redistributable Code in any manner that would cause the Redistributable Code in whole or in part to become subject to any of the terms of an Excluded License; or (ii) distributing the Redistributable Code (or derivative works thereof) in any manner that would cause the Redistributable Code to become subject to any of the terms of an Excluded License. An \"Excluded License\" is any license that requires as a condition of use, modification and/or distribution of software subject to the Excluded License, that such software or other software combined and/or distributed with such software be (x) disclosed or distributed in source code form; (y) licensed for the purpose of making derivative works; or (z) redistributable at no charge.\n(c)\tIf you have developed, tested and submitted drivers for WQHL certification using the Windows Server 2003 Service Pack 1 Driver Development Kit Release Candidate 2 and such drivers have been certified, such drivers shall be considered Redistributables under this EULA.\n\n4.\tRESERVATION OF RIGHTS AND OWNERSHIP. Microsoft reserves all rights not expressly granted to you in this EULA. The Software is protected by copyright and other intellectual property laws and treaties. Microsoft or its suppliers own the title, copyright, and other intellectual property rights in the Software. The Software is licensed, not sold.\n\n5.\tLIMITATIONS ON REVERSE ENGINEERING, DECOMPILATION, AND DISASSEMBLY. You may not reverse engineer, decompile, or disassemble the Software, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation.\n\n6.\tNO RENTAL/COMMERCIAL HOSTING. You may not rent, lease, lend or provide commercial hosting services with the Software.\n\n7.\tCONSENT TO USE OF DATA. You agree that Microsoft and its affiliates may collect and use technical information gathered as part of the product support services provided to you, if any, related to the Software. Microsoft may use this information solely to improve our products or to provide customized services or technologies to you and will not disclose this information in a form that personally identifies you. \n\n8.\tLINKS TO THIRD PARTY SITES. You may link to third party sites through the use of the Software. The third party sites are not under the control of Microsoft, and Microsoft is not responsible for the contents of any third party sites, any links contained in third party sites, or any changes or updates to third party sites. Microsoft is not responsible for webcasting or any other form of transmission received from any third party sites. Microsoft is providing these links to third party sites to you only as a convenience, and the inclusion of any link does not imply an endorsement by Microsoft of the third party site.\n\n9.\tADDITIONAL SOFTWARE/SERVICES. This EULA applies to updates, supplements, add-on components, or Internet-based services components, of the Software that Microsoft may provide to you or make available to you after the date you obtain your initial copy of the Software, unless we provide other terms along with the update, supplement, add-on component, or Internet-based services component. Microsoft reserves the right to discontinue any Internet-based services provided to you or made available to you through the use of the Software. \n\n10.\tNOT FOR RESALE SOFTWARE. Software identified as \"Not For Resale\" or \"NFR,\" may not be sold or otherwise transferred for value, or used for any purpose other than demonstration, test or evaluation.\n\n11.\tACADEMIC EDITION SOFTWARE. To use Software identified as \"Academic Edition\" or \"AE,\" you must be a \"Qualified Educational User.\" For qualification-related questions, please contact the Microsoft Sales Information Center/One Microsoft Way/Redmond, WA 98052-6399 or the Microsoft subsidiary serving your country.\n\n12.\tEXPORT RESTRICTIONS. You acknowledge that the Software is subject to U.S. export jurisdiction. You agree to comply with all applicable international and national laws that apply to the Software, including the U.S. Export Administration Regulations, as well as end-user, end-use, and destination restrictions issued by U.S. and other governments. For additional information see .\n\n13.\tSOFTWARE TRANSFER. The initial user of the Software may make a one-time permanent transfer of this EULA and Software to another end user, provided the initial user retains no copies of the Software. This transfer must include all of the Software (including all component parts, the media and printed materials, any upgrades, this EULA, and, if applicable, the Certificate of Authenticity). The transfer may not be an indirect transfer, such as a consignment. Prior to the transfer, the end user receiving the Software must agree to all the EULA terms.\n\n14.\tTERMINATION. Without prejudice to any other rights, Microsoft may terminate this EULA if you fail to comply with the terms and conditions of this EULA. In such event, you must destroy all copies of the Software and all of its component parts.\n\n15. \tLIMITED WARRANTY FOR SOFTWARE ACQUIRED IN THE US AND CANADA. \nMicrosoft warrants that the Software will perform substantially in accordance with the accompanying materials for a period of ninety (90) days from the date of receipt. \nIf an implied warranty or condition is created by your state/jurisdiction and federal or state/provincial law prohibits disclaimer of it, you also have an implied warranty or condition, BUT ONLY AS TO DEFECTS DISCOVERED DURING THE PERIOD OF THIS LIMITED WARRANTY (NINETY DAYS). AS TO ANY DEFECTS DISCOVERED AFTER THE NINETY-DAY PERIOD, THERE IS NO WARRANTY OR CONDITION OF ANY KIND. Some states/jurisdictions do not allow limitations on how long an implied warranty or condition lasts, so the above limitation may not apply to you.\nAny supplements or updates to the Software, including without limitation, any (if any) service packs or hot fixes provided to you after the expiration of the ninety day Limited Warranty period are not covered by any warranty or condition, express, implied or statutory.\nLIMITATION ON REMEDIES; NO CONSEQUENTIAL OR OTHER DAMAGES. Your exclusive remedy for any breach of this Limited Warranty is as set forth below. Except for any refund elected by Microsoft, YOU ARE NOT ENTITLED TO ANY DAMAGES, INCLUDING BUT NOT LIMITED TO CONSEQUENTIAL DAMAGES, if the Software does not meet Microsoft's Limited Warranty, and, to the maximum extent allowed by applicable law, even if any remedy fails of its essential purpose. The terms of Section 17 (\"Exclusion of Incidental, Consequential and Certain Other Damages\") are also incorporated into this Limited Warranty. Some states/jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so the above limitation or exclusion may not apply to you. This Limited Warranty gives you specific legal rights. You may have other rights which vary from state/jurisdiction to state/jurisdiction. YOUR EXCLUSIVE REMEDY. Microsoft's and its suppliers' entire liability and your exclusive remedy for any breach of this Limited Warranty or for any other breach of this EULA or for any other liability relating to the Software shall be, at Microsoft's option from time to time exercised subject to applicable law, (a) return of the amount paid (if any) for the Software, or (b) repair or replacement of the Software, that does not meet this Limited Warranty and that is returned to Microsoft with a copy of your receipt. You will receive the remedy elected by Microsoft without charge, except that you are responsible for any expenses you may incur (e.g. cost of shipping the Software to Microsoft). This Limited Warranty is void if failure of the Software has resulted from accident, abuse, misapplication, abnormal use or a virus. Any replacement Software will be warranted for the remainder of the original warranty period or thirty (30) days, whichever is longer, and Microsoft will use commercially reasonable efforts to provide your remedy within a commercially reasonable time of your compliance with Microsoft's warranty remedy procedures. Outside the United States or Canada, neither these remedies nor any product support services offered by Microsoft are available without proof of purchase from an authorized international source. To exercise your remedy, contact: Microsoft, Attn. Microsoft Sales Information Center/One Microsoft Way/Redmond, WA 98052-6399, or the Microsoft subsidiary serving your country. \n\n16.\tDISCLAIMER OF WARRANTIES. The Limited Warranty that appears above is the only express warranty made to you and is provided in lieu of any other express warranties or similar obligations (if any) created by any advertising, documentation, packaging, or other communications. Except for the Limited Warranty and to the maximum extent permitted by applicable law, Microsoft and its suppliers provide the Software and support services (if any) AS IS AND WITH ALL FAULTS, and hereby disclaim all other warranties and conditions, whether express, implied or statutory, including, but not limited to, any (if any) implied warranties, duties or conditions of merchantability, of fitness for a particular purpose, of reliability or availability, of accuracy or completeness of responses, of results, of workmanlike effort, of lack of viruses, and of lack of negligence, all with regard to the Software, and the provision of or failure to provide support or other services, information, software, and related content through the Software or otherwise arising out of the use of the Software. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT WITH REGARD TO THE SOFTWARE.\n\n17.\tEXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER DAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL MICROSOFT OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, PUNITIVE, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS OR CONFIDENTIAL OR OTHER INFORMATION, FOR BUSINESS INTERRUPTION, FOR PERSONAL INJURY, FOR LOSS OF PRIVACY, FOR FAILURE TO MEET ANY DUTY INCLUDING OF GOOD FAITH OR OF REASONABLE CARE, FOR NEGLIGENCE, AND FOR ANY OTHER PECUNIARY OR OTHER LOSS WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF OR INABILITY TO USE THE SOFTWARE, THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT OR OTHER SERVICES, INFORMATION, SOFTWARE, AND RELATED CONTENT THROUGH THE SOFTWARE OR OTHERWISE ARISING OUT OF THE USE OF THE SOFTWARE, OR OTHERWISE UNDER OR IN CONNECTION WITH ANY PROVISION OF THIS EULA, EVEN IN THE EVENT OF THE FAULT, TORT (INCLUDING NEGLIGENCE), MISREPRESENTATION, STRICT LIABILITY, BREACH OF CONTRACT OR BREACH OF WARRANTY OF MICROSOFT OR ANY SUPPLIER, AND EVEN IF MICROSOFT OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \n\n18.\tLIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING ANY DAMAGES THAT YOU MIGHT INCUR FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT LIMITATION, ALL DAMAGES REFERENCED HEREIN AND ALL DIRECT OR GENERAL DAMAGES IN CONTRACT OR ANYTHING ELSE), THE ENTIRE LIABILITY OF MICROSOFT AND ANY OF ITS SUPPLIERS UNDER ANY PROVISION OF THIS EULA AND YOUR EXCLUSIVE REMEDY HEREUNDER (EXCEPT FOR ANY REMEDY OF REPAIR OR REPLACEMENT ELECTED BY MICROSOFT WITH RESPECT TO ANY BREACH OF THE LIMITED WARRANTY) SHALL BE LIMITED TO THE GREATER OF THE ACTUAL DAMAGES YOU INCUR IN REASONABLE RELIANCE ON THE SOFTWARE UP TO THE AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE OR US$5.00. THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS (INCLUDING SECTIONS 15, 16 AND 17) SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, EVEN IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE.\n\n19.\tU.S. GOVERNMENT LICENSE RIGHTS. All Software provided to the U.S. Government pursuant to solicitations issued on or after December 1, 1995 is provided with the commercial license rights and restrictions described elsewhere herein. All Software provided to the U.S. Government pursuant to solicitations issued prior to December 1, 1995 is provided with \"Restricted Rights\" as provided for in FAR, 48 CFR 52.227-14 (JUNE 1987) or DFAR, 48 CFR 252.227-7013 (OCT 1988), as applicable. \n\n20.\tGOVERNING LAW; ATTORNEYS' FEES. This Agreement shall be construed and controlled by the laws of the State of Washington, and you consent to the jurisdiction and venue in the federal courts sitting in King County, Washington, unless no federal subject matter jurisdiction exists, in which case you consent to the jurisdiction and venue in the Superior Court of King County, Washington. You waive all defenses of lack of personal jurisdiction and forum non conveniens. Process may be served on either party in the manner authorized by applicable law or court rule. If either Microsoft or you employ attorneys to enforce any rights arising out of or relating to this Agreement, the prevailing party shall be entitled to recover reasonable attorneys' fees.\n\n21.\tENTIRE AGREEMENT; SEVERABILITY. This EULA (including any addendum or amendment to this EULA which is included with the Software) are the entire agreement between you and Microsoft relating to the Software and the support services (if any) and they supersede all prior or contemporaneous oral or written communications, proposals and representations with respect to the Software or any other subject matter covered by this EULA. To the extent the terms of any Microsoft policies or programs for support services conflict with the terms of this EULA, the terms of this EULA shall control. If any provision of this EULA is held to be void, invalid, unenforceable or illegal, the other provisions shall continue in full force and effect.\n\n", + "json": "ms-windows-server-2003-ddk.json", + "yaml": "ms-windows-server-2003-ddk.yml", + "html": "ms-windows-server-2003-ddk.html", + "license": "ms-windows-server-2003-ddk.LICENSE" + }, + { + "license_key": "ms-windows-server-2003-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-windows-server-2003-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft Windows Server 2003 SP1 Platform SDK License\n\nMICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT PLATFORM SOFTWARE DEVELOPMENT KIT \nFOR MICROSOFT WINDOWS SERVER 2003 SERVICE PACK 1\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft:\n \u2022 updates,\n \u2022 supplements,\n \u2022 Internet-based services, and\n \u2022 support services\nfor this software, unless other terms accompany those items. If so, those terms apply.\nBy using this software, you accept these terms. If you do not accept them, do not use the software.\nIf you comply with these license terms, you have the rights below:\n\n1. USE RIGHTS. \na. Use. You may install the software on any number of devices to design, develop and test your programs that run on a Microsoft Windows operating system.\nb. Other Microsoft Programs. The software contains other Microsoft programs. The license terms with those programs apply to your use of them.\nc. Distributable Code. The software contains code that you are permitted to copy and distribute in programs you develop if you comply with the terms below.\n i. Right to Use and Distribute. The code and text files listed below are \"Distributable Code.\" You may:\n \u2022 REDIST.TXT Files. Copy and distribute the object code form of code listed in REDIST.TXT files;\n \u2022 Sample Code. Modify, copy and distribute the source and object code form of code marked as \"sample\" except for files identified as MFCs, ATLs and CRTs (see below);\n \u2022 MFCs, ATLs and CRTs. Modify the source code form of Microsoft Foundation Classes (MFCs), Active Template Libraries (ATLs), and C runtimes (CRTs) to design, develop and test your programs, and copy and distribute the object code form of your modified files under a new name; and\n \u2022 Third Party Distribution. Permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\n ii. Distribution Requirements. For any Distributable Code you distribute, you must:\n \u2022 add significant primary functionality to it in your programs;\n \u2022 only invoke the software via interfaces described in the software documentation;\n \u2022 for any Distributable Code having a filename extension of .lib, distribute only the results of running such Distributable Code through a linker with your application;\n \u2022 distribute Distributable Code included in a setup program only as part of that setup program without modification;\n \u2022 require distributors and external end users to agree to terms that protect it at least as much as this agreement;\n \u2022 display your valid copyright notice on your programs;\n \u2022 for Distributable Code from the Windows Media Services SDK portions of the software, include in your program\u2019s Help-About box (or in another obvious place if there is no box) the following copyright notice: \"Portions utilize Microsoft Windows Media Technologies. Copyright (c) 1999-2005 Microsoft Corporation. All Rights Reserved\"; and\n \u2022 indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\u2019 fees, related to the distribution or use of your programs.\n iii. Distribution Restrictions. You may not:\n \u2022 alter any copyright, trademark or patent notice in the Distributable Code;\n \u2022 use Microsoft\u2019s trademarks in your programs\u2019 names or in a way that suggests your programs come from or are endorsed by Microsoft;\n \u2022 distribute Distributable Code to run on a platform other than the Windows platform;\n \u2022 include Distributable Code in malicious, deceptive or unlawful programs; or\n \u2022 modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that:\n o the code be disclosed or distributed in source code form, or\n o others have the right to modify it.\n\n2. TRANSFER. The first user of the software may transfer it and this agreement directly to a third party. Before the transfer, that party must agree that this agreement applies to the transfer and use of the software. The first user must uninstall the software before transferring it separately from the device. The first user may not retain any copies.\n\n3. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\n\n4. DOCUMENTATION. You may copy and use the documentation for your internal, reference purposes.\n\n5. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\n6. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it. \n\n7. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not:\n \u2022 work around any technical limitations in the software,\n \u2022 reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation,\n \u2022 make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation,\n \u2022 publish the software for others to copy,\n \u2022 rent, lease or lend the software, or\n \u2022 use the software for commercial software hosting services.\n\n8. ENTIRE AGREEMENT. This agreement and the terms for supplements, updates, Internet-based services and support services that you use are the entire agreement for the software and support services.\n\n9. APPLICABLE LAW.\na. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\nb. Outside the United States. If you acquired the software in any other country, the laws of that country apply.\n\n10. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\n\n11. DISCLAIMER OF WARRANTY. The software is licensed \"as-is\". You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n\n12. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages. This limitation applies to:\n \u2022 anything related to the software, services, content (including code) on third party Internet sites, or third party programs, and\n \u2022 claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\n\n.", + "json": "ms-windows-server-2003-sdk.json", + "yaml": "ms-windows-server-2003-sdk.yml", + "html": "ms-windows-server-2003-sdk.html", + "license": "ms-windows-server-2003-sdk.LICENSE" + }, + { + "license_key": "ms-ws-routing-spec", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ms-ws-routing-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft WS Routing Specifications License WS/WS-Routing.xsd\n\nCopyright 2001 Microsoft Corporation. All rights reserved.\n\nThe presentation, distribution or other dissemination of the information contained herein by Microsoft is not a license, either expressly or impliedly, to any intellectual property owned or controlled by Microsoft.\n\nThis document and the information contained herein is provided on an \"AS IS\" basis and to the maximum extent permitted by applicable law, Microsoft provides the document AS IS AND WITH ALL FAULTS, and hereby disclaims all other warranties and conditions, either express, implied or statutory, including, but not limited to, any (if any) implied warranties, duties or conditions of merchantability, of fitness for a particular purpose, of accuracy or completeness of responses, of results, of workmanlike effort, of lack of viruses, and of lack of negligence, all with regard to the document. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT WITH REGARD TO THE DOCUMENT.\n\nIN NO EVENT WILL MICROSOFT BE LIABLE TO ANY OTHER PARTY FOR THE COST OF PROCURING SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS OF USE, LOSS OF DATA, OR ANY INCIDENTAL, CONSEQUENTIAL, DIRECT, INDIRECT, OR SPECIAL DAMAGES WHETHER UNDER CONTRACT, TORT, WARRANTY, OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY OTHER AGREEMENT RELATING TO THIS DOCUMENT, WHETHER OR NOT SUCH PARTY HAD ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.", + "json": "ms-ws-routing-spec.json", + "yaml": "ms-ws-routing-spec.yml", + "html": "ms-ws-routing-spec.html", + "license": "ms-ws-routing-spec.LICENSE" + }, + { + "license_key": "ms-xamarin-uitest3.2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-xamarin-uitest3.2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Xamarin.UITest 3.2.0\nLicense file\nMICROSOFT SOFTWARE LICENSE TERMS\n\n**Xamarin.UITest **\n\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have different terms.\n\nIF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW.\n\n**1. INSTALLATION AND USE RIGHTS. **\nYou may install and use any number of copies of the software.\n\n2. TERMS FOR SPECIFIC COMPONENTS.\n\na. Third Party Components. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software. \n\n3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\n\n* work around any technical limitations in the software;\n* reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software except, and only to the extent required by third party licensing terms governing the use of certain open source components that may be included in the software;\n* remove, minimize, block or modify any notices of Microsoft or its suppliers in the software; \n* use the software in any way that is against the law; or\n* share, publish, rent or lease the software, or provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party.\n\n4. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting. \n\n5. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services for it.\n\n6. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\n\n7. APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply.\n\n8. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:\n\na. Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights.\n\nb. Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software.\n\nc. Germany and Austria.\n\n(i) Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software.\n\n(ii) Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law.\n\nSubject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called \"cardinal obligations\"). In other cases of slight negligence, Microsoft will not be liable for slight negligence.\n\n9. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n10. LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\nThis limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.", + "json": "ms-xamarin-uitest3.2.0.json", + "yaml": "ms-xamarin-uitest3.2.0.yml", + "html": "ms-xamarin-uitest3.2.0.html", + "license": "ms-xamarin-uitest3.2.0.LICENSE" + }, + { + "license_key": "ms-xml-core-4.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-xml-core-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft XML Core Services (MSXML) 4.0 EULA\nEND-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE\nMicrosoft xml CORE SERVICES (MSXML) 4.0 \n\nIMPORTANT-READ CAREFULLY: This Microsoft End-User License Agreement (\"EULA\") is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation for the Microsoft software identified above, which may include computer software, associated media, printed materials, and \"online\" or electronic documentation (\"SOFTWARE\"). By downloading, installing, copying, or otherwise using the SOFTWARE, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, do not install or use the SOFTWARE.\n\nThe SOFTWARE is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. Microsoft or its suppliers own the title, copyright and other intellectual property rights in the SOFTWARE. The SOFTWARE is licensed, not sold.\n\nThe SOFTWARE consists of two elements: (1) XML Core Services component (\"COMPONENT\") which contains, among other items, files with \".dll\" extensions which expose application programming interfaces that provide implementation to read, write, transform and make other manipulations with XML; and (2) MSXML software development kit (\"SDK\") which may include documentation, sample code, and other information designed to assist in the development of your applications.\n\n1.\tGRANT OF LICENSE. This EULA grants you the following rights:\na.\tGeneral. You may install and use any number of copies of the SOFTWARE on any number of computers, including workstations, terminals or other digital electronic devices, for the purpose of designing, developing and testing your application(s) which work in conjunction with XML (\"Application(s)\"). \nb.\tSample Code. You may modify the portions of the SDK designated as \"Sample Code\" for the purpose of designing, developing and testing your Application.\nc.\tRedistribution of SOFTWARE and/or COMPONENT. You may copy and redistribute the SOFTWARE (in its entirety) and/or the COMPONENT (in its entirety) either in conjunction with your Application or standalone in and of itself, subject to the following restrictions and limitations:\n(i)\tIf you redistribute the SOFTWARE and/or COMPONENT in their entirety, your copy must be a true and complete copy of the SOFTWARE and/or COMPONENT, including Microsoft\u2019s set up and all copyright notices, logos, end user license agreement and/or trademarks that appear in the SOFTWARE and/or COMPONENT as received from Microsoft;\n(ii)\tIf you redistribute the SOFTWARE and/or COMPONENT in conjunction with your Application, your Application must include a valid copyright notice in your own name, which notice shall be sufficient to protect Microsoft\u2019s copyright in the SOFTWARE and/or COMPONENT;\n(iii)\tIf you redistribute the SOFTWARE and/or COMPONENT in conjunction with your Application, and if your Application does not display Microsoft\u2019s end user license agreement to your end user, then your Application must be accompanied by license terms that are at least as restrictive as, and as protective of Microsoft as, those contained in this EULA.;\n(iv)\tYou shall not use Microsoft\u2019s name, logo or trademarks to market your Application;\n(v)\tYou shall not modify or alter the SOFTWARE and/or COMPONENT in any way; provided that you may merge those files in the SOFTWARE and/or COMPONENT with \"msm\" extensions into the \"msm\" files of your Application;\n(vi)\tYou shall not redistribute individual parts or files of the COMPONENT; you must redistribute the COMPONENT in its entirety;\n(vii)\tYou shall not redistribute the SDK separately; the SDK may only be redistributed as part of the SOFTWARE in its entirety; and\n(viii)\tYou agree to indemnify, hold harmless and defend Microsoft from and against any claims or lawsuits, including reasonable attorneys\u2019 fees, which arise or result from your distribution of the SOFTWARE and/or COMPONENT and/or your Application.\nd.\tRedistribution of Sample Code as Modified by You. You may copy and redistribute any Sample Code that you have modified as described in Section 1(b) above and incorporated into your Application, in both source code form and object code form, subject to the following restrictions and limitations:\n(i)\tYou shall distribute the modified Sample Code only in conjunction with and as part of an Application that adds significant and primary functionality to the Sample Code;\n(ii)\tYou shall not use Microsoft\u2019s name, logo or trademarks to market your Application;\n(iii)\tYou shall to include a valid copyright notice in your own name in your Application, which notice shall be sufficient to protect Microsoft\u2019s copyright in the modified Sample Code; and\n(iv)\tYou agree to indemnify, hold harmless and defend Microsoft from and against any claims or lawsuits including reasonable attorneys\u2019 fees, which arise or result from the use or distribution of the modified Sample Code and/or your Application.\ne.\t\tIdentified Software. Your license rights to the SOFTWARE are conditioned upon your (a) not incorporating Identified Software into, or combining Identified Software with, the SOFTWARE, or a derivative work thereof; (b) not distributing Identified Software in conjunction with the SOFTWARE; and (c) not using Identified Software in the development of a derivative work of the SOFTWARE. \"Identified Software\" means software which is licensed pursuant to terms that directly or indirectly (i) create, or purport to create, obligations for Microsoft with respect to the SOFTWARE or derivative work thereof or (ii) grant, or purport to grant, to any third party any rights or immunities under Microsoft\u2019s intellectual property or proprietary rights in the SOFTWARE or derivative work thereof. Identified Software includes, without limitation, any software that requires as a condition of use, modification and/or distribution of such software that other software incorporated into, derived from or distributed with such software be (a) disclosed or distributed in source code form; (b) be licensed for the purpose of making derivative works; or (c) be redistributable at no charge.\nf.\tBenchmark Testing. You may not disclose the results of any benchmark test using the SOFTWARE to any third party without Microsoft\u2019s prior written approval. \ng.\tReservation of Rights. Microsoft reserves all rights not expressly granted herein. \n\n2.\tLIMITATIONS ON REVERSE ENGINEERING, DECOMPILATION, AND DISASSEMBLY. You may not reverse engineer, decompile, or disassemble the SOFTWARE, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation.\n3.\tNO RENTAL. You may not rent, lease, or lend the SOFTWARE.\n\n4.\tSUPPORT SERVICES. In the event Microsoft does provide you with support services related to the SOFTWARE (\"Support Services\"), use of such Support Services is governed by the Microsoft policies and programs described in the user manual, in \"online\" documentation, and/or in other Microsoft-provided materials. Any supplemental software code provided to you as part of the Support Services shall be considered part of the SOFTWARE and subject to the terms and conditions of this EULA. With respect to technical information you provide to Microsoft as part of the Support Services, Microsoft may use such information for its business purposes, including for product support and development. Microsoft will not utilize such technical information in a form that personally identifies you.\n\n5.\tTERMINATION. Without prejudice to any other rights, Microsoft may terminate this EULA if you fail to comply with the terms and conditions of this EULA. In such event, you must destroy all copies of the SOFTWARE and all of its component parts.\n\n6.\tINTELLECTUAL PROPERTY RIGHTS. All title and intellectual property rights in and to the SOFTWARE (including but not limited to any images, photographs, animations, video, audio, music, text and \"applets\" incorporated into the SOFTWARE), and any copies you are permitted to make herein are owned by Microsoft or its suppliers. All title and intellectual property rights in and to the content which may be accessed through use of the SOFTWARE is the property of the respective content owner and may be protected by applicable copyright or other intellectual property laws and treaties. This EULA grants you no rights to use such content. \n\n7.\tU.S. GOVERNMENT LICENSE RIGHTS. SOFTWARE provided to the U.S. Government pursuant to solicitations issued on or after December 1, 1995 is provided with the commercial license rights and restrictions described elsewhere herein. SOFTWARE provided to the U.S. Government pursuant to solicitations issued prior to December 1, 1995 is provided with \"Restricted Rights\" as provided for in FAR, 48 CFR 52.227-14 (JUNE 1987) or DFAR, 48 CFR 252.227-7013 (OCT 1988), as applicable. \n\n8.\tEXPORT RESTRICTIONS. You agree that the SOFTWARE is subject to U.S. export jurisdiction. You agree to comply with all applicable international and national laws that apply to the SOFTWARE including the U.S. Export Administration Regulations, as well as end-user, end use and destination restrictions issued by the U.S. and other governments. For additional information see http://www.microsoft.com/exporting/.\n\n9. \tDISCLAIMER OF WARRANTIES. To the maximum extent permitted by applicable law, Microsoft and its suppliers provide the SOFTWARE and any (if any) Support Services AS IS AND WITH ALL FAULTS, and hereby disclaim all warranties and conditions, either express, implied or statutory, including, but not limited to, any (if any) implied warranties or conditions of merchantability, of fitness for a particular purpose, of lack of viruses, of accuracy or completeness of responses, of results, and of lack of negligence or lack of workmanlike effort, all with regard to the SOFTWARE, and the provision of or failure to provide Support Services. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE. THE ENTIRE RISK AS TO THE QUALITY OF OR ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE AND SUPPORT SERVICES, IF ANY, REMAINS WITH YOU.\n\n10. EXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER DAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL MICROSOFT OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, PUNITIVE, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS OR CONFIDENTIAL OR OTHER INFORMATION, FOR BUSINESS INTERRUPTION, FOR PERSONAL INJURY, FOR LOSS OF PRIVACY, FOR FAILURE TO MEET ANY DUTY INCLUDING OF GOOD FAITH OR OF REASONABLE CARE, FOR NEGLIGENCE, AND FOR ANY OTHER PECUNIARY OR OTHER LOSS WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF OR INABILITY TO USE THE SOFTWARE, THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES, OR OTHERWISE UNDER OR IN CONNECTION WITH ANY PROVISION OF THIS EULA, EVEN IN THE EVENT OF THE FAULT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, BREACH OF CONTRACT OR BREACH OF WARRANTY OF MICROSOFT OR ANY SUPPLIER, AND EVEN IF MICROSOFT OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \n\n11. \tLIMITATION OF LIABILITY AND REMEDIES. Notwithstanding any damages that you might incur for any reason whatsoever (including, without limitation, all damages referenced above and all direct or general damages), the entire liability of Microsoft and any of its suppliers under any provision of this EULA and your exclusive remedy for all of the foregoing shall be limited to the greater of the amount actually paid by you for the SOFTWARE or U.S.$5.00. The foregoing limitations, exclusions and disclaimers shall apply to the maximum extent permitted by applicable law, even if any remedy fails its essential purpose.\n\n12.\tAPPLICABLE LAW. If you acquired this SOFTWARE in the United States, this EULA is governed by the laws of the State of Washington. If you acquired this SOFTWARE in Canada, unless expressly prohibited by local law, this EULA is governed by the laws in force in the Province of Ontario, Canada; and, in respect of any dispute which may arise hereunder, you consent to the jurisdiction of the federal and provincial courts sitting in Toronto, Ontario. If this SOFTWARE was acquired outside the United States, then local law may apply.\n\n13.\tENTIRE AGREEMENT. This EULA (including any addendum or amendment to this EULA which is included with the SOFTWARE) is the entire agreement between you and Microsoft relating to the SOFTWARE and the Support Services (if any) and it supersedes all prior or contemporaneous oral or written communications, proposals and representations with respect to the SOFTWARE or any other subject matter covered by this EULA. To the extent the terms of any Microsoft policies or programs for Support Services conflict with the terms of this EULA, the terms of this EULA shall control.\n\n14. \tQUESTIONS? Should you have any questions concerning this EULA, or if you desire to contact Microsoft for any reason, please contact the Microsoft subsidiary serving your country, or write: Microsoft Sales Information Center/One Microsoft Way/Redmond, WA 98052-6399. \n\n", + "json": "ms-xml-core-4.0.json", + "yaml": "ms-xml-core-4.0.yml", + "html": "ms-xml-core-4.0.html", + "license": "ms-xml-core-4.0.LICENSE" + }, + { + "license_key": "msj-sample-code", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-msj-sample-code", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft grants to you a royalty-free right to use and modify the source code version and to reproduce and distribute the object code version of the sample code, icons, cursors, and bitmaps provided within the Sample Code bin/folder on the SOFTWARE (\"Sample Code\") provided that you:\n\ndistribute the Sample Code only in conjunction with and as a part of your software product that adds primary and significant functionality to the sample code;\n\ndo not use Microsoft's name, logo, or trademarks to market your software product; and\n\nagree to indemnify, hold harmless, and defend Microsoft and its suppliers from and against any claims or lawsuits, including attorneys' fees, that arise or result from your distribution of your software product and \n\nall Microsoft Systems Journal (MSJ) code used within your program(s) must be flagged: \nCopyright {year of publication}, Microsoft Systems Journal.\n\nMSJ does not make any representation or warranty, express or implied with respect to any code or other information herein. \n\nMSJ disclaims any liability whatsoever for any use of such code or other information.", + "json": "msj-sample-code.json", + "yaml": "msj-sample-code.yml", + "html": "msj-sample-code.html", + "license": "msj-sample-code.LICENSE" + }, + { + "license_key": "msntp", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-msntp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "General Public Licence for the software known as MSNTP\n------------------------------------------------------\n\n (c) Copyright, N.M. Maclaren, 1996, 1997, 2000\n (c) Copyright, University of Cambridge, 1996, 1997, 2000\n\nFree use of MSNTP in source and binary forms is permitted, provided that this\nentire licence is duplicated in all copies, and that any documentation,\nannouncements, and other materials related to use acknowledge that the software\nwas developed by N.M. Maclaren (hereafter refered to as the Author) at the\nUniversity of Cambridge. Neither the name of the Author nor the University of\nCambridge may be used to endorse or promote products derived from this material\nwithout specific prior written permission.\n\nThe Author and the University of Cambridge retain the copyright and all other\nlegal rights to the software and make it available non-exclusively. All users\nmust ensure that the software in all its derivations carries a copyright notice\nin the form:\n (c) Copyright N.M. Maclaren,\n (c) Copyright University of Cambridge.\n\n\n\n NO WARRANTY\n\nBecause the MSNTP software is licensed free of charge, the Author and the\nUniversity of Cambridge provide absolutely no warranty, either expressed or\nimplied, including, but not limited to, the implied warranties of\nmerchantability and fitness for a particular purpose. The entire risk as to\nthe quality and performance of the MSNTP software is with you. Should MSNTP\nprove defective, you assume the cost of all necessary servicing or repair.\n\nIn no event, unless required by law, will the Author or the University of\nCambridge, or any other party who may modify and redistribute this software as\npermitted in accordance with the provisions below, be liable for damages for\nany losses whatsoever, including but not limited to lost profits, lost monies,\nlost or corrupted data, or other special, incidental or consequential losses\nthat may arise out of the use or inability to use the MSNTP software.\n\n COPYING POLICY\n\nPermission is hereby granted for copying and distribution of copies of the\nMSNTP source and binary files, and of any part thereof, subject to the\nfollowing licence conditions:\n\n1. You may distribute MSNTP or components of MSNTP, with or without additions\ndeveloped by you or by others. No charge, other than an \"at-cost\" distribution\nfee, may be charged for copies, derivations, or distributions of this material\nwithout the express written consent of the copyright holders.\n\n2. You may also distribute MSNTP along with any other product for sale,\nprovided that the cost of the bundled package is the same regardless of whether\nMSNTP is included or not, and provided that those interested only in MSNTP must\nbe notified that it is a product freely available from the University of\nCambridge.\n\n3. If you distribute MSNTP software or parts of MSNTP, with or without\nadditions developed by you or others, then you must either make available the\nsource to all portions of the MSNTP system (exclusive of any additions made by\nyou or by others) upon request, or instead you may notify anyone requesting\nsource that it is freely available from the University of Cambridge.\n\n4. You may not omit any of the copyright notices on either the source files,\nthe executable files, or the documentation.\n\n5. You may not omit transmission of this License agreement with whatever\nportions of MSNTP that are distributed.\n\n6. Any users of this software must be notified that it is without warranty or\nguarantee of any nature, express or implied, nor is there any fitness for use\nrepresented.\n\nOctober 1996\nApril 1997\nOctober 2000", + "json": "msntp.json", + "yaml": "msntp.yml", + "html": "msntp.html", + "license": "msntp.LICENSE" + }, + { + "license_key": "msppl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-msppl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft patterns & practices License\npatterns & practices Developer Center\nThis license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software.\n1. Definitions\nThe terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and \"distribution\" have the same meaning here as under U.S. copyright law.\nA \"contribution\" is the original software, or any additions or changes to the software.\nA \"contributor\" is any person that distributes its contribution under this license.\n\"Licensed patents\" are a contributor's patent claims that read directly on its contribution.\n2. Grant of Rights\n(A) Code\n* Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of any contribution for which source code is provided, and distribute its contribution or any permitted derivative works that you create.\n* Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or permitted derivative works of the contribution in the software.\n(B) Documentation\n* Documentation is governed by the Creative Commons Attribution License 3.0, a copy of which is attached below, and not by the other terms of this Microsoft patterns & practices license.\n3. Conditions and Limitations\n(A) No Trademark License - This license does not grant you rights to use any contributors' name, logo, or trademarks.\n(B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically.\n(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software.\n(D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license.\n(E) The software is licensed \"as-is.\" You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n(F) Platform Limitation - The licenses granted in section 2(A) extend only to the software or permitted derivative works that you create that run directly on a Microsoft Windows operating system product, Microsoft run-time technology (such as the .NET Framework or Silverlight), or Microsoft application platform (such as Microsoft Office or Microsoft Dynamics).\n(G) Binary Code Files - The software may include certain binary code files for which its source code is not included as part of the software, or that are packaged without the source code in an installable or executable package. As to these binary code files, unless applicable law gives you more rights despite this limitation, you must comply with all technical limitations in those files that only allow you to use it in certain ways. You may not modify, work around any technical limitations in, or reverse engineer, decompile or disassemble these binary code files, except and only to the extent that applicable law expressly permits, despite this limitation.\n(H) Feedback - If you give feedback about the software to Microsoft, you give to Microsoft, without charge, the right to use, share and commercialize your feedback in any way and for any purpose. You also give to third parties, without charge, any patent rights needed for their products, technologies and services to use or interface with any specific parts of a Microsoft software or service that includes the feedback. You will not give feedback that is subject to a license that requires Microsoft to license its software or documentation to third parties because we include your feedback in them. These rights survive this agreement.\n* * * * *\nCreative Commons Attribution License 3.0 Unported\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n1. Definitions\na. \"Collective Work\" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with one or more other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\nb. \"Derivative Work\" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image (\"synching\") will be considered a Derivative Work for the purpose of this License.\nc. \"Licensor\" means the individual, individuals, entity or entities that offers the Work under the terms of this License.\nd. \"Original Author\" means the individual, individuals, entity or entities who created the Work.\ne. \"Work\" means the copyrightable work of authorship offered under the terms of this License.\nf. \"You\" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\n3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\na. to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\nb. to create and reproduce Derivative Works provided that any such Derivative Work, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked \"The original work was translated from English to Spanish,\" or a modification could indicate \"The original work has been modified.\";\nc. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\nd. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works.\ne. For the avoidance of doubt, where the Work is a musical composition:\ni. Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or, in the event that Licensor is a member of a performance rights society (e.g. ASCAP, BMI, SESAC), via that society, royalties for the public performance or public digital performance (e.g. webcast) of the Work.\nii. Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work (\"cover version\") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions).\nf. Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions).\nThe above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.\n4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\na. You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of a recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. When You distribute, publicly display, publicly perform, or publicly digitally perform the Work, You may not impose any technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by Section 4(b), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by Section 4(b), as requested.\nb. If You distribute, publicly display, publicly perform, or publicly digitally perform the Work (as defined in Section 1 above) or any Derivative Works (as defined in Section 1 above) or Collective Works (as defined in Section 1 above), You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution (\"Attribution Parties\") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and, consistent with Section 3(b) in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., \"French translation of the Work by Original Author,\" or \"Screenplay based on original Work by Original Author\"). The credit required by this Section 4(b) may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear, if a credit for all contributing authors of the Derivative Work or Collective Work appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties.\n5. Representations, Warranties and Disclaimer\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND ONLY TO THE EXTENT OF ANY RIGHTS HELD IN THE LICENSED WORK BY THE LICENSOR. THE LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MARKETABILITY, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n7. Termination\na. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works (as defined in Section 1 above) or Collective Works (as defined in Section 1 above) from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\nb. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n8. Miscellaneous\na. Each time You distribute or publicly digitally perform the Work (as defined in Section 1 above) or a Collective Work (as defined in Section 1 above), the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\nb. Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\nc. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\nd. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\ne. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\n201011", + "json": "msppl.json", + "yaml": "msppl.yml", + "html": "msppl.html", + "license": "msppl.LICENSE" + }, + { + "license_key": "mtll", + "category": "Permissive", + "spdx_license_key": "MTLL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Software License for MTL\n\n\nThis file is part of the Matrix Template Library\n\nDresden University of Technology -- short TUD -- and Indiana University \n-- short IU -- have the exclusive rights to license this product under the\nfollowing license.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: \n1. All redistributions of source code must retain the above copyright notice, the list of authors in the original source code, this list of conditions and the disclaimer listed in this license; \n2. All redistributions in binary form must reproduce the above copyright notice, this list of conditions and the disclaimer listed in this license in the documentation and/or other materials provided with the distribution; \n3. Any documentation included with all redistributions must include the following acknowledgement: \n\"This product includes software developed at the University of Notre Dame, the Pervasive Technology Labs at Indiana University, and Dresden University of Technology. For technical information contact Andrew Lumsdaine at the Pervasive Technology Labs at Indiana University. For administrative and license questions contact the Advanced Research and Technology Institute at 1100 Waterway Blvd. Indianapolis, Indiana 46202, phone 317-274-5905, fax 317-274-5902.\" \nAlternatively, this acknowledgement may appear in the software itself, and wherever such third-party acknowledgments normally appear. \n4. The name \"MTL\" shall not be used to endorse or promote products derived from this software without prior written permission from IU or TUD. For written permission, please contact Indiana University Advanced Research & Technology Institute. \n5. Products derived from this software may not be called \"MTL\", nor may \"MTL\" appear in their name, without prior written permission of Indiana University Advanced Research & Technology Institute.\n\nTUD and IU provide no reassurances that the source code provided does not infringe the patent or any other intellectual property rights of any other entity. TUD and IU disclaim any liability to any recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise.\n\nLICENSEE UNDERSTANDS THAT SOFTWARE IS PROVIDED \"AS IS\" FOR WHICH NO WARRANTIES AS TO CAPABILITIES OR ACCURACY ARE MADE. DRESDEN UNIVERSITY OF TECHNOLOGY AND INDIANA UNIVERSITY GIVE NO WARRANTIES AND MAKE NO REPRESENTATION THAT SOFTWARE IS FREE OF INFRINGEMENT OF THIRD PARTY PATENT, COPYRIGHT, OR OTHER PROPRIETARY RIGHTS. DRESDEN UNIVERSITY OF TECHNOLOGY AND INDIANA UNIVERSITY MAKE NO WARRANTIES THAT SOFTWARE IS FREE FROM \"BUGS\", \"VIRUSES\", \"TROJAN HORSES\", \"TRAP DOORS\", \"WORMS\", OR OTHER HARMFUL CODE. LICENSEE ASSUMES THE ENTIRE RISK AS TO THE PERFORMANCE OF SOFTWARE AND/OR ASSOCIATED MATERIALS, AND TO THE PERFORMANCE AND VALIDITY OF INFORMATION GENERATED USING SOFTWARE.", + "json": "mtll.json", + "yaml": "mtll.yml", + "html": "mtll.html", + "license": "mtll.LICENSE" + }, + { + "license_key": "mtx-licensing-statement", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mtx-licensing-statement", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Patent License Grant. Monotype hereby grants to All a worldwide, non-exclusive, nocharge, royalty-free, irrevocable license under the Licensed Patents to make, use for any purpose, sell, and otherwise distribute and provide Licensed Products and Services, said license having a term until the last to expire of the Licensed Patents.\n\nCode and Format License. Monotype hereby grants to All a perpetual, worldwide, nonexclusive, no-charge, royalty-free, irrevocable license under its copyright rights to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, distribute, and otherwise use in Licensed Products and Services the Licensed Software and the Licensed Format, said license having a term until expiration of the foregoing copyright rights.\n\nFor purposes of this Licensing Statement, the following definitions apply:\n\n\u201cLicensed Patents\u201d means United States Patent No. 6,031,622 as well as all patents and patent applications that on or after December 28, 2011 are owned by Monotype and would necessarily be infringed through the use of the Licensed Technology in making, using, or selling any Licensed Products and Services.\n\n\u201cLicensed Products and Services\u201d means all products (including but not limited to software products) and systems incorporating any part of or all of the Licensed Technology, and services utilizing any part of or all of the Licensed Technology.\n\n\u201cLicensed Format\u201d means the MicroType Express (MTX) Font Format in the form that it exists as of December 28, 2011 a copy of which can be found at http://www.w3.org/Submission/MTX/.\n\n\u201cLicensed Software\u201d means Monotype's code disclosed in its Member Submission to the W3C dated March 5, 2008, a copy of which can be found at http://www.w3.org/Submission/MTX/, but means solely that code.\n\n\u201cLicensed Technology\u201d means the Licensed Format and the Licensed Software.\n\n\u201cAll\u201d and \u201cAnyone\u201d means any and all entities and individuals.", + "json": "mtx-licensing-statement.json", + "yaml": "mtx-licensing-statement.yml", + "html": "mtx-licensing-statement.html", + "license": "mtx-licensing-statement.LICENSE" + }, + { + "license_key": "mulanpsl-1.0", + "category": "Permissive", + "spdx_license_key": "MulanPSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "\u6728\u5170\u5bbd\u677e\u8bb8\u53ef\u8bc1, \u7b2c1\u7248\n\u6728\u5170\u5bbd\u677e\u8bb8\u53ef\u8bc1\uff0c \u7b2c1\u7248\n\n2019\u5e748\u6708 http://license.coscl.org.cn/MulanPSL\n\n\u60a8\u5bf9\u201c\u8f6f\u4ef6\u201d\u7684\u590d\u5236\u3001\u4f7f\u7528\u3001\u4fee\u6539\u53ca\u5206\u53d1\u53d7\u6728\u5170\u5bbd\u677e\u8bb8\u53ef\u8bc1\uff0c\u7b2c1\u7248\uff08\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\uff09\u7684\u5982\u4e0b\u6761\u6b3e\u7684\u7ea6\u675f\uff1a\n\n0. \u5b9a\u4e49\n\n\u201c\u8f6f\u4ef6\u201d\u662f\u6307\u7531\u201c\u8d21\u732e\u201d\u6784\u6210\u7684\u8bb8\u53ef\u5728\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u4e0b\u7684\u7a0b\u5e8f\u548c\u76f8\u5173\u6587\u6863\u7684\u96c6\u5408\u3002\n\n\u201c\u8d21\u732e\u8005\u201d\u662f\u6307\u5c06\u53d7\u7248\u6743\u6cd5\u4fdd\u62a4\u7684\u4f5c\u54c1\u8bb8\u53ef\u5728\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u4e0b\u7684\u81ea\u7136\u4eba\u6216\u201c\u6cd5\u4eba\u5b9e\u4f53\u201d\u3002\n\n\u201c\u6cd5\u4eba\u5b9e\u4f53\u201d\u662f\u6307\u63d0\u4ea4\u8d21\u732e\u7684\u673a\u6784\u53ca\u5176\u201c\u5173\u8054\u5b9e\u4f53\u201d\u3002\n\n\u201c\u5173\u8054\u5b9e\u4f53\u201d\u662f\u6307\uff0c\u5bf9\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u4e0b\u7684\u4e00\u65b9\u800c\u8a00\uff0c\u63a7\u5236\u3001\u53d7\u63a7\u5236\u6216\u4e0e\u5176\u5171\u540c\u53d7\u63a7\u5236\u7684\u673a\u6784\uff0c\u6b64\u5904\u7684\u63a7\u5236\u662f\u6307\u6709\u53d7\u63a7\u65b9\u6216\u5171\u540c\u53d7\u63a7\u65b9\u81f3\u5c1150%\u76f4\u63a5\u6216\u95f4\u63a5\u7684\u6295\u7968\u6743\u3001\u8d44\u91d1\u6216\u5176\u4ed6\u6709\u4ef7\u8bc1\u5238\u3002\n\n\u201c\u8d21\u732e\u201d\u662f\u6307\u7531\u4efb\u4e00\u201c\u8d21\u732e\u8005\u201d\u8bb8\u53ef\u5728\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u4e0b\u7684\u53d7\u7248\u6743\u6cd5\u4fdd\u62a4\u7684\u4f5c\u54c1\u3002\n\n1. \u6388\u4e88\u7248\u6743\u8bb8\u53ef\n\n\u6bcf\u4e2a\u201c\u8d21\u732e\u8005\u201d\u6839\u636e\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u6388\u4e88\u60a8\u6c38\u4e45\u6027\u7684\u3001\u5168\u7403\u6027\u7684\u3001\u514d\u8d39\u7684\u3001\u975e\u72ec\u5360\u7684\u3001\u4e0d\u53ef\u64a4\u9500\u7684\u7248\u6743\u8bb8\u53ef\uff0c\u60a8\u53ef\u4ee5\u590d\u5236\u3001\u4f7f\u7528\u3001\u4fee\u6539\u3001\u5206\u53d1\u5176\u201c\u8d21\u732e\u201d\uff0c\u4e0d\u8bba\u4fee\u6539\u4e0e\u5426\u3002\n\n2. \u6388\u4e88\u4e13\u5229\u8bb8\u53ef\n\n\u6bcf\u4e2a\u201c\u8d21\u732e\u8005\u201d\u6839\u636e\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u6388\u4e88\u60a8\u6c38\u4e45\u6027\u7684\u3001\u5168\u7403\u6027\u7684\u3001\u514d\u8d39\u7684\u3001\u975e\u72ec\u5360\u7684\u3001\u4e0d\u53ef\u64a4\u9500\u7684\uff08\u6839\u636e\u672c\u6761\u89c4\u5b9a\u64a4\u9500\u9664\u5916\uff09\u4e13\u5229\u8bb8\u53ef\uff0c\u4f9b\u60a8\u5236\u9020\u3001\u59d4\u6258\u5236\u9020\u3001\u4f7f\u7528\u3001\u8bb8\u8bfa\u9500\u552e\u3001\u9500\u552e\u3001\u8fdb\u53e3\u5176\u201c\u8d21\u732e\u201d\u6216\u4ee5\u5176\u4ed6\u65b9\u5f0f\u8f6c\u79fb\u5176\u201c\u8d21\u732e\u201d\u3002\u524d\u8ff0\u4e13\u5229\u8bb8\u53ef\u4ec5\u9650\u4e8e\u201c\u8d21\u732e\u8005\u201d\u73b0\u5728\u6216\u5c06\u6765\u62e5\u6709\u6216\u63a7\u5236\u7684\u5176\u201c\u8d21\u732e\u201d\u672c\u8eab\u6216\u5176\u201c\u8d21\u732e\u201d\u4e0e\u8bb8\u53ef\u201c\u8d21\u732e\u201d\u65f6\u7684\u201c\u8f6f\u4ef6\u201d\u7ed3\u5408\u800c\u5c06\u5fc5\u7136\u4f1a\u4fb5\u72af\u7684\u4e13\u5229\u6743\u5229\u8981\u6c42\uff0c\u4e0d\u5305\u62ec\u4ec5\u56e0\u60a8\u6216\u4ed6\u4eba\u4fee\u6539\u201c\u8d21\u732e\u201d\u6216\u5176\u4ed6\u7ed3\u5408\u800c\u5c06\u5fc5\u7136\u4f1a\u4fb5\u72af\u5230\u7684\u4e13\u5229\u6743\u5229\u8981\u6c42\u3002\u5982\u60a8\u6216\u60a8\u7684\u201c\u5173\u8054\u5b9e\u4f53\u201d\u76f4\u63a5\u6216\u95f4\u63a5\u5730\uff08\u5305\u62ec\u901a\u8fc7\u4ee3\u7406\u3001\u4e13\u5229\u88ab\u8bb8\u53ef\u4eba\u6216\u53d7\u8ba9\u4eba\uff09\uff0c\u5c31\u201c\u8f6f\u4ef6\u201d\u6216\u5176\u4e2d\u7684\u201c\u8d21\u732e\u201d\u5bf9\u4efb\u4f55\u4eba\u53d1\u8d77\u4e13\u5229\u4fb5\u6743\u8bc9\u8bbc\uff08\u5305\u62ec\u53cd\u8bc9\u6216\u4ea4\u53c9\u8bc9\u8bbc\uff09\u6216\u5176\u4ed6\u4e13\u5229\u7ef4\u6743\u884c\u52a8\uff0c\u6307\u63a7\u5176\u4fb5\u72af\u4e13\u5229\u6743\uff0c\u5219\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u6388\u4e88\u60a8\u5bf9\u201c\u8f6f\u4ef6\u201d\u7684\u4e13\u5229\u8bb8\u53ef\u81ea\u60a8\u63d0\u8d77\u8bc9\u8bbc\u6216\u53d1\u8d77\u7ef4\u6743\u884c\u52a8\u4e4b\u65e5\u7ec8\u6b62\u3002\n\n3. \u65e0\u5546\u6807\u8bb8\u53ef\n\n\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u4e0d\u63d0\u4f9b\u5bf9\u201c\u8d21\u732e\u8005\u201d\u7684\u5546\u54c1\u540d\u79f0\u3001\u5546\u6807\u3001\u670d\u52a1\u6807\u5fd7\u6216\u4ea7\u54c1\u540d\u79f0\u7684\u5546\u6807\u8bb8\u53ef\uff0c\u4f46\u60a8\u4e3a\u6ee1\u8db3\u7b2c4\u6761\u89c4\u5b9a\u7684\u58f0\u660e\u4e49\u52a1\u800c\u5fc5\u987b\u4f7f\u7528\u9664\u5916\u3002\n\n4. \u5206\u53d1\u9650\u5236\n\n\u60a8\u53ef\u4ee5\u5728\u4efb\u4f55\u5a92\u4ecb\u4e2d\u5c06\u201c\u8f6f\u4ef6\u201d\u4ee5\u6e90\u7a0b\u5e8f\u5f62\u5f0f\u6216\u53ef\u6267\u884c\u5f62\u5f0f\u91cd\u65b0\u5206\u53d1\uff0c\u4e0d\u8bba\u4fee\u6539\u4e0e\u5426\uff0c\u4f46\u60a8\u5fc5\u987b\u5411\u63a5\u6536\u8005\u63d0\u4f9b\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u7684\u526f\u672c\uff0c\u5e76\u4fdd\u7559\u201c\u8f6f\u4ef6\u201d\u4e2d\u7684\u7248\u6743\u3001\u5546\u6807\u3001\u4e13\u5229\u53ca\u514d\u8d23\u58f0\u660e\u3002\n\n5. \u514d\u8d23\u58f0\u660e\u4e0e\u8d23\u4efb\u9650\u5236\n\n\u201c\u8f6f\u4ef6\u201d\u53ca\u5176\u4e2d\u7684\u201c\u8d21\u732e\u201d\u5728\u63d0\u4f9b\u65f6\u4e0d\u5e26\u4efb\u4f55\u660e\u793a\u6216\u9ed8\u793a\u7684\u62c5\u4fdd\u3002\u5728\u4efb\u4f55\u60c5\u51b5\u4e0b\uff0c\u201c\u8d21\u732e\u8005\u201d\u6216\u7248\u6743\u6240\u6709\u8005\u4e0d\u5bf9\u4efb\u4f55\u4eba\u56e0\u4f7f\u7528\u201c\u8f6f\u4ef6\u201d\u6216\u5176\u4e2d\u7684\u201c\u8d21\u732e\u201d\u800c\u5f15\u53d1\u7684\u4efb\u4f55\u76f4\u63a5\u6216\u95f4\u63a5\u635f\u5931\u627f\u62c5\u8d23\u4efb\uff0c\u4e0d\u8bba\u56e0\u4f55\u79cd\u539f\u56e0\u5bfc\u81f4\u6216\u8005\u57fa\u4e8e\u4f55\u79cd\u6cd5\u5f8b\u7406\u8bba,\u5373\u4f7f\u5176\u66fe\u88ab\u5efa\u8bae\u6709\u6b64\u79cd\u635f\u5931\u7684\u53ef\u80fd\u6027\u3002\n\n\u6761\u6b3e\u7ed3\u675f\n\n\u5982\u4f55\u5c06\u6728\u5170\u5bbd\u677e\u8bb8\u53ef\u8bc1\uff0c\u7b2c1\u7248\uff0c\u5e94\u7528\u5230\u60a8\u7684\u8f6f\u4ef6\n\n\u5982\u679c\u60a8\u5e0c\u671b\u5c06\u6728\u5170\u5bbd\u677e\u8bb8\u53ef\u8bc1\uff0c\u7b2c1\u7248\uff0c\u5e94\u7528\u5230\u60a8\u7684\u65b0\u8f6f\u4ef6\uff0c\u4e3a\u4e86\u65b9\u4fbf\u63a5\u6536\u8005\u67e5\u9605\uff0c\u5efa\u8bae\u60a8\u5b8c\u6210\u5982\u4e0b\u4e09\u6b65\uff1a\n\n1\uff0c \u8bf7\u60a8\u8865\u5145\u5982\u4e0b\u58f0\u660e\u4e2d\u7684\u7a7a\u767d\uff0c\u5305\u62ec\u8f6f\u4ef6\u540d\u3001\u8f6f\u4ef6\u7684\u9996\u6b21\u53d1\u8868\u5e74\u4efd\u4ee5\u53ca\u60a8\u4f5c\u4e3a\u7248\u6743\u4eba\u7684\u540d\u5b57\uff1b\n\n2\uff0c \u8bf7\u60a8\u5728\u8f6f\u4ef6\u5305\u7684\u4e00\u7ea7\u76ee\u5f55\u4e0b\u521b\u5efa\u4ee5\u201cLICENSE\u201d\u4e3a\u540d\u7684\u6587\u4ef6\uff0c\u5c06\u6574\u4e2a\u8bb8\u53ef\u8bc1\u6587\u672c\u653e\u5165\u8be5\u6587\u4ef6\u4e2d\uff1b\n\n3\uff0c \u8bf7\u5c06\u5982\u4e0b\u58f0\u660e\u6587\u672c\u653e\u5165\u6bcf\u4e2a\u6e90\u6587\u4ef6\u7684\u5934\u90e8\u6ce8\u91ca\u4e2d\u3002\n\nCopyright (c) [2019] [name of copyright holder]\n[Software Name] is licensed under the Mulan PSL v1.\nYou can use this software according to the terms and conditions of the Mulan PSL v1.\nYou may obtain a copy of Mulan PSL v1 at:\n http://license.coscl.org.cn/MulanPSL\nTHIS SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR\nPURPOSE.\nSee the Mulan PSL v1 for more details.\nMulan Permissive Software License\uff0cVersion 1\nMulan Permissive Software License\uff0cVersion 1 (Mulan PSL v1)\n\nAugust 2019 http://license.coscl.org.cn/MulanPSL\n\nYour reproduction, use, modification and distribution of the Software shall be subject to Mulan PSL v1 (this License) with following terms and conditions:\n\n0. Definition\n\nSoftware means the program and related documents which are comprised of those Contribution and licensed under this License.\n\nContributor means the Individual or Legal Entity who licenses its copyrightable work under this License.\n\nLegal Entity means the entity making a Contribution and all its Affiliates.\n\nAffiliates means entities that control, or are controlled by, or are under common control with a party to this License, \u2018control\u2019 means direct or indirect ownership of at least fifty percent (50%) of the voting power, capital or other securities of controlled or commonly controlled entity.\n\nContribution means the copyrightable work licensed by a particular Contributor under this License.\n\n1. Grant of Copyright License\n\nSubject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable copyright license to reproduce, use, modify, or distribute its Contribution, with modification or not.\n\n2. Grant of Patent License\n\nSubject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable (except for revocation under this Section) patent license to make, have made, use, offer for sale, sell, import or otherwise transfer its Contribution where such patent license is only limited to the patent claims owned or controlled by such Contributor now or in future which will be necessarily infringed by its Contribution alone, or by combination of the Contribution with the Software to which the Contribution was contributed, excluding of any patent claims solely be infringed by your or others\u2019 modification or other combinations. If you or your Affiliates directly or indirectly (including through an agent, patent licensee or assignee\uff09, institute patent litigation (including a cross claim or counterclaim in a litigation) or other patent enforcement activities against any individual or entity by alleging that the Software or any Contribution in it infringes patents, then any patent license granted to you under this License for the Software shall terminate as of the date such litigation or activity is filed or taken.\n\n3. No Trademark License\n\nNo trademark license is granted to use the trade names, trademarks, service marks, or product names of Contributor, except as required to fulfill notice requirements in section 4.\n\n4. Distribution Restriction\n\nYou may distribute the Software in any medium with or without modification, whether in source or executable forms, provided that you provide recipients with a copy of this License and retain copyright, patent, trademark and disclaimer statements in the Software.\n\n5. Disclaimer of Warranty and Limitation of Liability\n\nThe Software and Contribution in it are provided without warranties of any kind, either express or implied. In no event shall any Contributor or copyright holder be liable to you for any damages, including, but not limited to any direct, or indirect, special or consequential damages arising from your use or inability to use the Software or the Contribution in it, no matter how it\u2019s caused or based on which legal theory, even if advised of the possibility of such damages.\n\nEnd of the Terms and Conditions\n\nHow to apply the Mulan Permissive Software License\uff0cVersion 1 (Mulan PSL v1) to your software\n\nTo apply the Mulan PSL v1 to your work, for easy identification by recipients, you are suggested to complete following three steps:\n\nFill in the blanks in following statement, including insert your software name, the year of the first publication of your software, and your name identified as the copyright owner;\nCreate a file named \u201cLICENSE\u201d which contains the whole context of this License in the first directory of your software package;\nAttach the statement to the appropriate annotated syntax at the beginning of each source file.\nCopyright (c) [2019] [name of copyright holder]\n[Software Name] is licensed under the Mulan PSL v1.\nYou can use this software according to the terms and conditions of the Mulan PSL v1.\nYou may obtain a copy of Mulan PSL v1 at:\n http://license.coscl.org.cn/MulanPSL\nTHIS SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR\nPURPOSE.\nSee the Mulan PSL v1 for more details.", + "json": "mulanpsl-1.0.json", + "yaml": "mulanpsl-1.0.yml", + "html": "mulanpsl-1.0.html", + "license": "mulanpsl-1.0.LICENSE" + }, + { + "license_key": "mulanpsl-1.0-en", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mulanpsl-1.0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Mulan Permissive Software License\uff0cVersion 1\n\nMulan Permissive Software License\uff0cVersion 1 (Mulan PSL v1)\n\nAugust 2019 http://license.coscl.org.cn/MulanPSL\n\nYour reproduction, use, modification and distribution of the Software shall be subject to Mulan PSL v1 (this License) with following terms and conditions:\n\n0. Definition\n\nSoftware means the program and related documents which are comprised of those Contribution and licensed under this License.\n\nContributor means the Individual or Legal Entity who licenses its copyrightable work under this License.\n\nLegal Entity means the entity making a Contribution and all its Affiliates.\n\nAffiliates means entities that control, or are controlled by, or are under common control with a party to this License, \u2018control\u2019 means direct or indirect ownership of at least fifty percent (50%) of the voting power, capital or other securities of controlled or commonly controlled entity.\n\nContribution means the copyrightable work licensed by a particular Contributor under this License.\n\n1. Grant of Copyright License\n\nSubject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable copyright license to reproduce, use, modify, or distribute its Contribution, with modification or not.\n\n2. Grant of Patent License\n\nSubject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable (except for revocation under this Section) patent license to make, have made, use, offer for sale, sell, import or otherwise transfer its Contribution where such patent license is only limited to the patent claims owned or controlled by such Contributor now or in future which will be necessarily infringed by its Contribution alone, or by combination of the Contribution with the Software to which the Contribution was contributed, excluding of any patent claims solely be infringed by your or others\u2019 modification or other combinations. If you or your Affiliates directly or indirectly (including through an agent, patent licensee or assignee\uff09, institute patent litigation (including a cross claim or counterclaim in a litigation) or other patent enforcement activities against any individual or entity by alleging that the Software or any Contribution in it infringes patents, then any patent license granted to you under this License for the Software shall terminate as of the date such litigation or activity is filed or taken.\n\n3. No Trademark License\n\nNo trademark license is granted to use the trade names, trademarks, service marks, or product names of Contributor, except as required to fulfill notice requirements in section 4.\n\n4. Distribution Restriction\n\nYou may distribute the Software in any medium with or without modification, whether in source or executable forms, provided that you provide recipients with a copy of this License and retain copyright, patent, trademark and disclaimer statements in the Software.\n\n5. Disclaimer of Warranty and Limitation of Liability\n\nThe Software and Contribution in it are provided without warranties of any kind, either express or implied. In no event shall any Contributor or copyright holder be liable to you for any damages, including, but not limited to any direct, or indirect, special or consequential damages arising from your use or inability to use the Software or the Contribution in it, no matter how it\u2019s caused or based on which legal theory, even if advised of the possibility of such damages.\n\nEnd of the Terms and Conditions\n\nHow to apply the Mulan Permissive Software License\uff0cVersion 1 (Mulan PSL v1) to your software\n\nTo apply the Mulan PSL v1 to your work, for easy identification by recipients, you are suggested to complete following three steps:\n\n Fill in the blanks in following statement, including insert your software name, the year of the first publication of your software, and your name identified as the copyright owner;\n Create a file named \u201cLICENSE\u201d which contains the whole context of this License in the first directory of your software package;\n Attach the statement to the appropriate annotated syntax at the beginning of each source file.\n\nCopyright (c) [2019] [name of copyright holder]\n[Software Name] is licensed under the Mulan PSL v1.\nYou can use this software according to the terms and conditions of the Mulan PSL v1.\nYou may obtain a copy of Mulan PSL v1 at:\n http://license.coscl.org.cn/MulanPSL\nTHIS SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR\nPURPOSE.\nSee the Mulan PSL v1 for more details.", + "json": "mulanpsl-1.0-en.json", + "yaml": "mulanpsl-1.0-en.yml", + "html": "mulanpsl-1.0-en.html", + "license": "mulanpsl-1.0-en.LICENSE" + }, + { + "license_key": "mulanpsl-2.0", + "category": "Permissive", + "spdx_license_key": "MulanPSL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "\u6728\u5170\u5bbd\u677e\u8bb8\u53ef\u8bc1, \u7b2c2\u7248\n\u6728\u5170\u5bbd\u677e\u8bb8\u53ef\u8bc1\uff0c \u7b2c2\u7248\n\n2020\u5e741\u6708 http://license.coscl.org.cn/MulanPSL2\n\n\u60a8\u5bf9\u201c\u8f6f\u4ef6\u201d\u7684\u590d\u5236\u3001\u4f7f\u7528\u3001\u4fee\u6539\u53ca\u5206\u53d1\u53d7\u6728\u5170\u5bbd\u677e\u8bb8\u53ef\u8bc1\uff0c\u7b2c2\u7248\uff08\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\uff09\u7684\u5982\u4e0b\u6761\u6b3e\u7684\u7ea6\u675f\uff1a\n\n0. \u5b9a\u4e49\n\n\u201c\u8f6f\u4ef6\u201d \u662f\u6307\u7531\u201c\u8d21\u732e\u201d\u6784\u6210\u7684\u8bb8\u53ef\u5728\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u4e0b\u7684\u7a0b\u5e8f\u548c\u76f8\u5173\u6587\u6863\u7684\u96c6\u5408\u3002\n\n\u201c\u8d21\u732e\u201d \u662f\u6307\u7531\u4efb\u4e00\u201c\u8d21\u732e\u8005\u201d\u8bb8\u53ef\u5728\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u4e0b\u7684\u53d7\u7248\u6743\u6cd5\u4fdd\u62a4\u7684\u4f5c\u54c1\u3002\n\n\u201c\u8d21\u732e\u8005\u201d \u662f\u6307\u5c06\u53d7\u7248\u6743\u6cd5\u4fdd\u62a4\u7684\u4f5c\u54c1\u8bb8\u53ef\u5728\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u4e0b\u7684\u81ea\u7136\u4eba\u6216\u201c\u6cd5\u4eba\u5b9e\u4f53\u201d\u3002\n\n\u201c\u6cd5\u4eba\u5b9e\u4f53\u201d \u662f\u6307\u63d0\u4ea4\u8d21\u732e\u7684\u673a\u6784\u53ca\u5176\u201c\u5173\u8054\u5b9e\u4f53\u201d\u3002\n\n\u201c\u5173\u8054\u5b9e\u4f53\u201d \u662f\u6307\uff0c\u5bf9\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u4e0b\u7684\u884c\u4e3a\u65b9\u800c\u8a00\uff0c\u63a7\u5236\u3001\u53d7\u63a7\u5236\u6216\u4e0e\u5176\u5171\u540c\u53d7\u63a7\u5236\u7684\u673a\u6784\uff0c\u6b64\u5904\u7684\u63a7\u5236\u662f\u6307\u6709\u53d7\u63a7\u65b9\u6216\u5171\u540c\u53d7\u63a7\u65b9\u81f3\u5c1150%\u76f4\u63a5\u6216\u95f4\u63a5\u7684\u6295\u7968\u6743\u3001\u8d44\u91d1\u6216\u5176\u4ed6\u6709\u4ef7\u8bc1\u5238\u3002\n\n1. \u6388\u4e88\u7248\u6743\u8bb8\u53ef\n\n\u6bcf\u4e2a\u201c\u8d21\u732e\u8005\u201d\u6839\u636e\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u6388\u4e88\u60a8\u6c38\u4e45\u6027\u7684\u3001\u5168\u7403\u6027\u7684\u3001\u514d\u8d39\u7684\u3001\u975e\u72ec\u5360\u7684\u3001\u4e0d\u53ef\u64a4\u9500\u7684\u7248\u6743\u8bb8\u53ef\uff0c\u60a8\u53ef\u4ee5\u590d\u5236\u3001\u4f7f\u7528\u3001\u4fee\u6539\u3001\u5206\u53d1\u5176\u201c\u8d21\u732e\u201d\uff0c\u4e0d\u8bba\u4fee\u6539\u4e0e\u5426\u3002\n\n2. \u6388\u4e88\u4e13\u5229\u8bb8\u53ef\n\n\u6bcf\u4e2a\u201c\u8d21\u732e\u8005\u201d\u6839\u636e\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u6388\u4e88\u60a8\u6c38\u4e45\u6027\u7684\u3001\u5168\u7403\u6027\u7684\u3001\u514d\u8d39\u7684\u3001\u975e\u72ec\u5360\u7684\u3001\u4e0d\u53ef\u64a4\u9500\u7684\uff08\u6839\u636e\u672c\u6761\u89c4\u5b9a\u64a4\u9500\u9664\u5916\uff09\u4e13\u5229\u8bb8\u53ef\uff0c\u4f9b\u60a8\u5236\u9020\u3001\u59d4\u6258\u5236\u9020\u3001\u4f7f\u7528\u3001\u8bb8\u8bfa\u9500\u552e\u3001\u9500\u552e\u3001\u8fdb\u53e3\u5176\u201c\u8d21\u732e\u201d\u6216\u4ee5\u5176\u4ed6\u65b9\u5f0f\u8f6c\u79fb\u5176\u201c\u8d21\u732e\u201d\u3002\u524d\u8ff0\u4e13\u5229\u8bb8\u53ef\u4ec5\u9650\u4e8e\u201c\u8d21\u732e\u8005\u201d\u73b0\u5728\u6216\u5c06\u6765\u62e5\u6709\u6216\u63a7\u5236\u7684\u5176\u201c\u8d21\u732e\u201d\u672c\u8eab\u6216\u5176\u201c\u8d21\u732e\u201d\u4e0e\u8bb8\u53ef\u201c\u8d21\u732e\u201d\u65f6\u7684\u201c\u8f6f\u4ef6\u201d\u7ed3\u5408\u800c\u5c06\u5fc5\u7136\u4f1a\u4fb5\u72af\u7684\u4e13\u5229\u6743\u5229\u8981\u6c42\uff0c\u4e0d\u5305\u62ec\u5bf9\u201c\u8d21\u732e\u201d\u7684\u4fee\u6539\u6216\u5305\u542b\u201c\u8d21\u732e\u201d\u7684\u5176\u4ed6\u7ed3\u5408\u3002\u5982\u679c\u60a8\u6216\u60a8\u7684\u201c\u5173\u8054\u5b9e\u4f53\u201d\u76f4\u63a5\u6216\u95f4\u63a5\u5730\uff0c\u5c31\u201c\u8f6f\u4ef6\u201d\u6216\u5176\u4e2d\u7684\u201c\u8d21\u732e\u201d\u5bf9\u4efb\u4f55\u4eba\u53d1\u8d77\u4e13\u5229\u4fb5\u6743\u8bc9\u8bbc\uff08\u5305\u62ec\u53cd\u8bc9\u6216\u4ea4\u53c9\u8bc9\u8bbc\uff09\u6216\u5176\u4ed6\u4e13\u5229\u7ef4\u6743\u884c\u52a8\uff0c\u6307\u63a7\u5176\u4fb5\u72af\u4e13\u5229\u6743\uff0c\u5219\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u6388\u4e88\u60a8\u5bf9\u201c\u8f6f\u4ef6\u201d\u7684\u4e13\u5229\u8bb8\u53ef\u81ea\u60a8\u63d0\u8d77\u8bc9\u8bbc\u6216\u53d1\u8d77\u7ef4\u6743\u884c\u52a8\u4e4b\u65e5\u7ec8\u6b62\u3002\n\n3. \u65e0\u5546\u6807\u8bb8\u53ef\n\n\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u4e0d\u63d0\u4f9b\u5bf9\u201c\u8d21\u732e\u8005\u201d\u7684\u5546\u54c1\u540d\u79f0\u3001\u5546\u6807\u3001\u670d\u52a1\u6807\u5fd7\u6216\u4ea7\u54c1\u540d\u79f0\u7684\u5546\u6807\u8bb8\u53ef\uff0c\u4f46\u60a8\u4e3a\u6ee1\u8db3\u7b2c4\u6761\u89c4\u5b9a\u7684\u58f0\u660e\u4e49\u52a1\u800c\u5fc5\u987b\u4f7f\u7528\u9664\u5916\u3002\n\n4. \u5206\u53d1\u9650\u5236\n\n\u60a8\u53ef\u4ee5\u5728\u4efb\u4f55\u5a92\u4ecb\u4e2d\u5c06\u201c\u8f6f\u4ef6\u201d\u4ee5\u6e90\u7a0b\u5e8f\u5f62\u5f0f\u6216\u53ef\u6267\u884c\u5f62\u5f0f\u91cd\u65b0\u5206\u53d1\uff0c\u4e0d\u8bba\u4fee\u6539\u4e0e\u5426\uff0c\u4f46\u60a8\u5fc5\u987b\u5411\u63a5\u6536\u8005\u63d0\u4f9b\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u7684\u526f\u672c\uff0c\u5e76\u4fdd\u7559\u201c\u8f6f\u4ef6\u201d\u4e2d\u7684\u7248\u6743\u3001\u5546\u6807\u3001\u4e13\u5229\u53ca\u514d\u8d23\u58f0\u660e\u3002\n\n5. \u514d\u8d23\u58f0\u660e\u4e0e\u8d23\u4efb\u9650\u5236\n\n\u201c\u8f6f\u4ef6\u201d\u53ca\u5176\u4e2d\u7684\u201c\u8d21\u732e\u201d\u5728\u63d0\u4f9b\u65f6\u4e0d\u5e26\u4efb\u4f55\u660e\u793a\u6216\u9ed8\u793a\u7684\u62c5\u4fdd\u3002\u5728\u4efb\u4f55\u60c5\u51b5\u4e0b\uff0c\u201c\u8d21\u732e\u8005\u201d\u6216\u7248\u6743\u6240\u6709\u8005\u4e0d\u5bf9\u4efb\u4f55\u4eba\u56e0\u4f7f\u7528\u201c\u8f6f\u4ef6\u201d\u6216\u5176\u4e2d\u7684\u201c\u8d21\u732e\u201d\u800c\u5f15\u53d1\u7684\u4efb\u4f55\u76f4\u63a5\u6216\u95f4\u63a5\u635f\u5931\u627f\u62c5\u8d23\u4efb\uff0c\u4e0d\u8bba\u56e0\u4f55\u79cd\u539f\u56e0\u5bfc\u81f4\u6216\u8005\u57fa\u4e8e\u4f55\u79cd\u6cd5\u5f8b\u7406\u8bba\uff0c\u5373\u4f7f\u5176\u66fe\u88ab\u5efa\u8bae\u6709\u6b64\u79cd\u635f\u5931\u7684\u53ef\u80fd\u6027\u3002\n\n6. \u8bed\u8a00\n\n\u201c\u672c\u8bb8\u53ef\u8bc1\u201d\u4ee5\u4e2d\u82f1\u6587\u53cc\u8bed\u8868\u8ff0\uff0c\u4e2d\u82f1\u6587\u7248\u672c\u5177\u6709\u540c\u7b49\u6cd5\u5f8b\u6548\u529b\u3002\u5982\u679c\u4e2d\u82f1\u6587\u7248\u672c\u5b58\u5728\u4efb\u4f55\u51b2\u7a81\u4e0d\u4e00\u81f4\uff0c\u4ee5\u4e2d\u6587\u7248\u4e3a\u51c6\u3002\n\n\u6761\u6b3e\u7ed3\u675f\n\n\u5982\u4f55\u5c06\u6728\u5170\u5bbd\u677e\u8bb8\u53ef\u8bc1\uff0c\u7b2c2\u7248\uff0c\u5e94\u7528\u5230\u60a8\u7684\u8f6f\u4ef6\n\n\u5982\u679c\u60a8\u5e0c\u671b\u5c06\u6728\u5170\u5bbd\u677e\u8bb8\u53ef\u8bc1\uff0c\u7b2c2\u7248\uff0c\u5e94\u7528\u5230\u60a8\u7684\u65b0\u8f6f\u4ef6\uff0c\u4e3a\u4e86\u65b9\u4fbf\u63a5\u6536\u8005\u67e5\u9605\uff0c\u5efa\u8bae\u60a8\u5b8c\u6210\u5982\u4e0b\u4e09\u6b65\uff1a\n\n1\uff0c \u8bf7\u60a8\u8865\u5145\u5982\u4e0b\u58f0\u660e\u4e2d\u7684\u7a7a\u767d\uff0c\u5305\u62ec\u8f6f\u4ef6\u540d\u3001\u8f6f\u4ef6\u7684\u9996\u6b21\u53d1\u8868\u5e74\u4efd\u4ee5\u53ca\u60a8\u4f5c\u4e3a\u7248\u6743\u4eba\u7684\u540d\u5b57\uff1b\n\n2\uff0c \u8bf7\u60a8\u5728\u8f6f\u4ef6\u5305\u7684\u4e00\u7ea7\u76ee\u5f55\u4e0b\u521b\u5efa\u4ee5\u201cLICENSE\u201d\u4e3a\u540d\u7684\u6587\u4ef6\uff0c\u5c06\u6574\u4e2a\u8bb8\u53ef\u8bc1\u6587\u672c\u653e\u5165\u8be5\u6587\u4ef6\u4e2d\uff1b\n\n3\uff0c \u8bf7\u5c06\u5982\u4e0b\u58f0\u660e\u6587\u672c\u653e\u5165\u6bcf\u4e2a\u6e90\u6587\u4ef6\u7684\u5934\u90e8\u6ce8\u91ca\u4e2d\u3002\n\nCopyright (c) [Year] [name of copyright holder]\n[Software Name] is licensed under Mulan PSL v2.\nYou can use this software according to the terms and conditions of the Mulan PSL v2.\nYou may obtain a copy of Mulan PSL v2 at:\n http://license.coscl.org.cn/MulanPSL2\nTHIS SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OF ANY KIND,\nEITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,\nMERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.\nSee the Mulan PSL v2 for more details.\nMulan Permissive Software License\uff0cVersion 2\nMulan Permissive Software License\uff0cVersion 2 (Mulan PSL v2)\n\nJanuary 2020 http://license.coscl.org.cn/MulanPSL2\n\nYour reproduction, use, modification and distribution of the Software shall be subject to Mulan PSL v2 (this License) with the following terms and conditions:\n\n0. Definition\n\nSoftware means the program and related documents which are licensed under this License and comprise all Contribution(s).\n\nContribution means the copyrightable work licensed by a particular Contributor under this License.\n\nContributor means the Individual or Legal Entity who licenses its copyrightable work under this License.\n\nLegal Entity means the entity making a Contribution and all its Affiliates.\n\nAffiliates means entities that control, are controlled by, or are under common control with the acting entity under this License, \u2018control\u2019 means direct or indirect ownership of at least fifty percent (50%) of the voting power, capital or other securities of controlled or commonly controlled entity.\n\n1. Grant of Copyright License\n\nSubject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable copyright license to reproduce, use, modify, or distribute its Contribution, with modification or not.\n\n2. Grant of Patent License\n\nSubject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable (except for revocation under this Section) patent license to make, have made, use, offer for sale, sell, import or otherwise transfer its Contribution, where such patent license is only limited to the patent claims owned or controlled by such Contributor now or in future which will be necessarily infringed by its Contribution alone, or by combination of the Contribution with the Software to which the Contribution was contributed. The patent license shall not apply to any modification of the Contribution, and any other combination which includes the Contribution. If you or your Affiliates directly or indirectly institute patent litigation (including a cross claim or counterclaim in a litigation) or other patent enforcement activities against any individual or entity by alleging that the Software or any Contribution in it infringes patents, then any patent license granted to you under this License for the Software shall terminate as of the date such litigation or activity is filed or taken.\n\n3. No Trademark License\n\nNo trademark license is granted to use the trade names, trademarks, service marks, or product names of Contributor, except as required to fulfill notice requirements in section 4.\n\n4. Distribution Restriction\n\nYou may distribute the Software in any medium with or without modification, whether in source or executable forms, provided that you provide recipients with a copy of this License and retain copyright, patent, trademark and disclaimer statements in the Software.\n\n5. Disclaimer of Warranty and Limitation of Liability\n\nTHE SOFTWARE AND CONTRIBUTION IN IT ARE PROVIDED WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED. IN NO EVENT SHALL ANY CONTRIBUTOR OR COPYRIGHT HOLDER BE LIABLE TO YOU FOR ANY DAMAGES, INCLUDING, BUT NOT LIMITED TO ANY DIRECT, OR INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING FROM YOUR USE OR INABILITY TO USE THE SOFTWARE OR THE CONTRIBUTION IN IT, NO MATTER HOW IT\u2019S CAUSED OR BASED ON WHICH LEGAL THEORY, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n6. Language\n\nTHIS LICENSE IS WRITTEN IN BOTH CHINESE AND ENGLISH, AND THE CHINESE VERSION AND ENGLISH VERSION SHALL HAVE THE SAME LEGAL EFFECT. IN THE CASE OF DIVERGENCE BETWEEN THE CHINESE AND ENGLISH VERSIONS, THE CHINESE VERSION SHALL PREVAIL.\n\nEND OF THE TERMS AND CONDITIONS\n\nHow to Apply the Mulan Permissive Software License\uff0cVersion 2 (Mulan PSL v2) to Your Software\n\nTo apply the Mulan PSL v2 to your work, for easy identification by recipients, you are suggested to complete following three steps:\n\nFill in the blanks in following statement, including insert your software name, the year of the first publication of your software, and your name identified as the copyright owner;\nCreate a file named \"LICENSE\" which contains the whole context of this License in the first directory of your software package;\nAttach the statement to the appropriate annotated syntax at the beginning of each source file.\nCopyright (c) [Year] [name of copyright holder]\n[Software Name] is licensed under Mulan PSL v2.\nYou can use this software according to the terms and conditions of the Mulan PSL v2.\nYou may obtain a copy of Mulan PSL v2 at:\n http://license.coscl.org.cn/MulanPSL2\nTHIS SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OF ANY KIND,\nEITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,\nMERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.\nSee the Mulan PSL v2 for more details.\nCopyright \u00a9 \u4e2d\u56fd\u5f00\u6e90\u4e91\u8054\u76df \u4eacICP\u590705013730\u53f7-37", + "json": "mulanpsl-2.0.json", + "yaml": "mulanpsl-2.0.yml", + "html": "mulanpsl-2.0.html", + "license": "mulanpsl-2.0.LICENSE" + }, + { + "license_key": "mulanpsl-2.0-en", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mulanpsl-2.0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Mulan Permissive Software License\uff0cVersion 2\n\nMulan Permissive Software License\uff0cVersion 2 (Mulan PSL v2)\n\nJanuary 2020 http://license.coscl.org.cn/MulanPSL2\n\nYour reproduction, use, modification and distribution of the Software shall be subject to Mulan PSL v2 (this License) with the following terms and conditions:\n\n0. Definition\n\nSoftware means the program and related documents which are licensed under this License and comprise all Contribution(s).\n\nContribution means the copyrightable work licensed by a particular Contributor under this License.\n\nContributor means the Individual or Legal Entity who licenses its copyrightable work under this License.\n\nLegal Entity means the entity making a Contribution and all its Affiliates.\n\nAffiliates means entities that control, are controlled by, or are under common control with the acting entity under this License, \u2018control\u2019 means direct or indirect ownership of at least fifty percent (50%) of the voting power, capital or other securities of controlled or commonly controlled entity.\n\n1. Grant of Copyright License\n\nSubject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable copyright license to reproduce, use, modify, or distribute its Contribution, with modification or not.\n\n2. Grant of Patent License\n\nSubject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable (except for revocation under this Section) patent license to make, have made, use, offer for sale, sell, import or otherwise transfer its Contribution, where such patent license is only limited to the patent claims owned or controlled by such Contributor now or in future which will be necessarily infringed by its Contribution alone, or by combination of the Contribution with the Software to which the Contribution was contributed. The patent license shall not apply to any modification of the Contribution, and any other combination which includes the Contribution. If you or your Affiliates directly or indirectly institute patent litigation (including a cross claim or counterclaim in a litigation) or other patent enforcement activities against any individual or entity by alleging that the Software or any Contribution in it infringes patents, then any patent license granted to you under this License for the Software shall terminate as of the date such litigation or activity is filed or taken.\n\n3. No Trademark License\n\nNo trademark license is granted to use the trade names, trademarks, service marks, or product names of Contributor, except as required to fulfill notice requirements in section 4.\n\n4. Distribution Restriction\n\nYou may distribute the Software in any medium with or without modification, whether in source or executable forms, provided that you provide recipients with a copy of this License and retain copyright, patent, trademark and disclaimer statements in the Software.\n\n5. Disclaimer of Warranty and Limitation of Liability\n\nTHE SOFTWARE AND CONTRIBUTION IN IT ARE PROVIDED WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED. IN NO EVENT SHALL ANY CONTRIBUTOR OR COPYRIGHT HOLDER BE LIABLE TO YOU FOR ANY DAMAGES, INCLUDING, BUT NOT LIMITED TO ANY DIRECT, OR INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING FROM YOUR USE OR INABILITY TO USE THE SOFTWARE OR THE CONTRIBUTION IN IT, NO MATTER HOW IT\u2019S CAUSED OR BASED ON WHICH LEGAL THEORY, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n6. Language\n\nTHIS LICENSE IS WRITTEN IN BOTH CHINESE AND ENGLISH, AND THE CHINESE VERSION AND ENGLISH VERSION SHALL HAVE THE SAME LEGAL EFFECT. IN THE CASE OF DIVERGENCE BETWEEN THE CHINESE AND ENGLISH VERSIONS, THE CHINESE VERSION SHALL PREVAIL.\n\nEND OF THE TERMS AND CONDITIONS\n\nHow to Apply the Mulan Permissive Software License\uff0cVersion 2 (Mulan PSL v2) to Your Software\n\nTo apply the Mulan PSL v2 to your work, for easy identification by recipients, you are suggested to complete following three steps:\n\n Fill in the blanks in following statement, including insert your software name, the year of the first publication of your software, and your name identified as the copyright owner;\n Create a file named \"LICENSE\" which contains the whole context of this License in the first directory of your software package;\n Attach the statement to the appropriate annotated syntax at the beginning of each source file.\n\nCopyright (c) [Year] [name of copyright holder]\n[Software Name] is licensed under Mulan PSL v2.\nYou can use this software according to the terms and conditions of the Mulan PSL v2.\nYou may obtain a copy of Mulan PSL v2 at:\n http://license.coscl.org.cn/MulanPSL2\nTHIS SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OF ANY KIND,\nEITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,\nMERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.\nSee the Mulan PSL v2 for more details.", + "json": "mulanpsl-2.0-en.json", + "yaml": "mulanpsl-2.0-en.yml", + "html": "mulanpsl-2.0-en.html", + "license": "mulanpsl-2.0-en.LICENSE" + }, + { + "license_key": "mule-source-1.1.3", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-mule-source-1.1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MuleSource Public License\nVersion 1.1.3\n\nThe MuleSource Public License Version (\"MSPL\") consists of the Mozilla Public\nLicense Version 1.1, modified to be specific to MuleSource, with the Additional\nTerms in Exhibit B. The original Mozilla Public License 1.1 can be found at:\nhttp://www.mozilla.org/MPL/MPL-1.1.html\n\n1. Definitions.\n\n1.0.1. \"Commercial Use\" means distribution or otherwise making the Covered Code\navailable to a third party.\n\n1.1. \"Contributor\" means each entity that creates or contributes to the creation\nof Modifications.\n\n1.2. \"Contributor Version\" means the combination of the Original Code, prior\nModifications used by a Contributor, and the Modifications made by that\nparticular Contributor.\n\n1.3. \"Covered Code\" means the Original Code or Modifications or the combination\nof the Original Code and Modifications, in each case including portions thereof.\n\n1.4. \"Electronic Distribution Mechanism\". means a mechanism generally accepted\nin the software development community for the electronic transfer of data.\n\n1.5. \"Executable\" means Covered Code in any form other than Source Code.\n\n1.6. \"Initial Developer\" means the individual or entity identified as the\nInitial Developer in the Source Code notice required by Exhibit A.\n\n1.7. \"Larger Work\" means a work which combines Covered Code or portions thereof\nwith code not governed by the terms of this License.\n\n1.8. \"License\" means this document.\n\n1.8.1. \"Licensable\" means having the right to grant, to the maximum extent\npossible, whether at the time of the initial grant or subsequently acquired, any\nand all of the rights conveyed herein.\n\n1.9. \"Modifications\" means any addition to or deletion from the substance or\nstructure of either the Original Code or any previous Modifications. When\nCovered Code is released as a series of files, a Modification is:\n\nA. Any addition to or deletion from the contents of a file containing Original\nCode or previous Modifications.\n\nB. Any new file that contains any part of the Original Code or previous\nModifications.\n\n1.10. \"Original Code\" means Source Code of computer software code which is\ndescribed in the Source Code notice required by Exhibit A as Original Code, and\nwhich, at the time of its release under this License is not already Covered Code\ngoverned by this License.\n\n1.10.1. \"Patent Claims\" means any patent claim(s), now owned or hereafter\nacquired, including without limitation, method, process, and apparatus claims,\nin any patent Licensable by grantor.\n\n1.11. \"Source Code\" means the preferred form of the Covered Code for making\nmodifications to it, including all modules it contains, plus any associated\ninterface definition files, scripts used to control compilation and installation\nof an Executable, or source code differential comparisons against either the\nOriginal Code or another well known, available Covered Code of the Contributor's\nchoice. The Source Code can be in a compressed or archival form, provided the\nappropriate decompression or de-archiving software is widely available for no\ncharge.\n\n1.12. \"You\" (or \"Your\") means an individual or a legal entity exercising rights\nunder, and complying with all of the terms of, this License or a future version\nof this License issued under Section 6.1. For legal entities, \"You\" includes any\nentity which controls, is controlled by, or is under common control with You.\nFor purposes of this definition, \"control\" means (a) the power, direct or\nindirect, to cause the direction or management of such entity, whether by\ncontract or otherwise, or (b) ownership of more than fifty percent (50%) of the\noutstanding shares or beneficial ownership of such entity.\n\n2. Source Code License..\n\n2.1. The Initial Developer Grant.\n\nThe Initial Developer hereby grants You a world-wide, royalty-free, non-\nexclusive license, subject to third party intellectual property claims:\n\n(a) under intellectual property rights (other than patent or trademark)\nLicensable by Initial Developer to use, reproduce, modify, display, perform,\nsublicense and distribute the Original Code (or portions thereof) with or\nwithout Modifications, and/or as part of a Larger Work; and\n\n(b) under Patents Claims infringed by the making, using or selling of Original\nCode, to make, have made, use, practice, sell, and offer for sale, and/or\notherwise dispose of the Original Code (or portions thereof).\n\n(c) the licenses granted in this Section 2.1(a) and (b) are effective on the\ndate Initial Developer first distributes Original Code under the terms of this\nLicense.\n\n(d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for\ncode that You delete from the Original Code; 2) separate from the Original Code;\nor 3) for infringements caused by: i) the modification of the Original Code or\nii) the combination of the Original Code with other software or devices.\n\n2.2. Contributor Grant.\n\nSubject to third party intellectual property claims, each Contributor hereby\ngrants You a world-wide, royalty-free, non-exclusive license\n\n(a) under intellectual property rights (other than patent or trademark)\nLicensable by Contributor, to use, reproduce, modify, display, perform,\nsublicense and distribute the Modifications created by such Contributor (or\nportions thereof) either on an unmodified basis, with other Modifications, as\nCovered Code and/or as part of a Larger Work; and\n\n(b) under Patent Claims infringed by the making, using, or selling of\nModifications made by that Contributor either alone and/or in combination with\nits Contributor Version (or portions of such combination), to make, use, sell,\noffer for sale, have made, and/or otherwise dispose of: 1) Modifications made by\nthat Contributor (or portions thereof); and 2) the combination of Modifications\nmade by that Contributor with its Contributor Version (or portions of such\ncombination).\n\n(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date\nContributor first makes Commercial Use of the Covered Code.\n\n(d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for\nany code that Contributor has deleted from the Contributor Version; 2) separate\nfrom the Contributor Version; 3) for infringements caused by: i) third party\nmodifications of Contributor Version or ii) the combination of Modifications\nmade by that Contributor with other software (except as part of the Contributor\nVersion) or other devices; or 4) under Patent Claims infringed by Covered Code\nin the absence of Modifications made by that Contributor.\n\n3. Distribution Obligations.\n\n3.1. Application of License.\n\nThe Modifications which You create or to which You contribute are governed by\nthe terms of this License, including without limitation Section 2.2. The Source\nCode version of Covered Code may be distributed only under the terms of this\nLicense or a future version of this License released under Section 6.1, and You\nmust include a copy of this License with every copy of the Source Code You\ndistribute. You may not offer or impose any terms on any Source Code version\nthat alters or restricts the applicable version of this License or the\nrecipients' rights hereunder. However, You may include an additional document\noffering the additional rights described in Section 3.5.\n\n3.2. Availability of Source Code.\n\nAny Modification which You create or to which You contribute must be made\navailable in Source Code form under the terms of this License either on the same\nmedia as an Executable version or via an accepted Electronic Distribution\nMechanism to anyone to whom you made an Executable version available; and if\nmade available via Electronic Distribution Mechanism, must remain available for\nat least twelve (12) months after the date it initially became available, or at\nleast six (6) months after a subsequent version of that particular Modification\nhas been made available to such recipients. You are responsible for ensuring\nthat the Source Code version remains available even if the Electronic\nDistribution Mechanism is maintained by a third party.\n\n3.3. Description of Modifications.\n\nYou must cause all Covered Code to which You contribute to contain a file\ndocumenting the changes You made to create that Covered Code and the date of any\nchange. You must include a prominent statement that the Modification is derived,\ndirectly or indirectly, from Original Code provided by the Initial Developer and\nincluding the name of the Initial Developer in (a) the Source Code, and (b) in\nany notice in an Executable version or related documentation in which You\ndescribe the origin or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters.\n\n(a) Third Party Claims.\n\nIf Contributor has knowledge that a license under a third party's intellectual\nproperty rights is required to exercise the rights granted by such Contributor\nunder Sections 2.1 or 2.2, Contributor must include a text file with the Source\nCode distribution titled \"LEGAL\" which describes the claim and the party making\nthe claim in sufficient detail that a recipient will know whom to contact. If\nContributor obtains such knowledge after the Modification is made available as\ndescribed in Section 3.2, Contributor shall promptly modify the LEGAL file in\nall copies Contributor makes available thereafter and shall take other steps\n(such as notifying appropriate mailing lists or newsgroups) reasonably\ncalculated to inform those who received the Covered Code that new knowledge has\nbeen obtained.\n\n(b) Contributor APIs.\n\nIf Contributor's Modifications include an application programming interface and\nContributor has knowledge of patent licenses which are reasonably necessary to\nimplement that API, Contributor must also include this information in the LEGAL\nfile.\n\n(c) Representations.\n\nContributor represents that, except as disclosed pursuant to Section 3.4(a)\nabove, Contributor believes that Contributor's Modifications are Contributor's\noriginal creation(s) and/or Contributor has sufficient rights to grant the\nrights conveyed by this License.\n\n3.5. Required Notices.\n\nYou must duplicate the notice in Exhibit A in each file of the Source Code. If\nit is not possible to put such notice in a particular Source Code file due to\nits structure, then You must include such notice in a location (such as a\nrelevant directory) where a user would be likely to look for such a notice. If\nYou created one or more Modification(s) You may add your name as a Contributor\nto the notice described in Exhibit A. You must also duplicate this License in\nany documentation for the Source Code where You describe recipients' rights or\nownership rights relating to Covered Code. You may choose to offer, and to\ncharge a fee for, warranty, support, indemnity or liability obligations to one\nor more recipients of Covered Code. However, You may do so only on Your own\nbehalf, and not on behalf of the Initial Developer or any Contributor. You must\nmake it absolutely clear than any such warranty, support, indemnity or liability\nobligation is offered by You alone, and You hereby agree to indemnify the\nInitial Developer and every Contributor for any liability incurred by the\nInitial Developer or such Contributor as a result of warranty, support,\nindemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions.\n\nYou may distribute Covered Code in Executable form only if the requirements of\nSection 3.1-3.5 have been met for that Covered Code, and if You include a notice\nstating that the Source Code version of the Covered Code is available under the\nterms of this License, including a description of how and where You have\nfulfilled the obligations of Section 3.2. The notice must be conspicuously\nincluded in any notice in an Executable version, related documentation or\ncollateral in which You describe recipients' rights relating to the Covered\nCode. You may distribute the Executable version of Covered Code or ownership\nrights under a license of Your choice, which may contain terms different from\nthis License, provided that You are in compliance with the terms of this License\nand that the license for the Executable version does not attempt to limit or\nalter the recipient's rights in the Source Code version from the rights set\nforth in this License. If You distribute the Executable version under a\ndifferent license You must make it absolutely clear that any terms which differ\nfrom this License are offered by You alone, not by the Initial Developer or any\nContributor. You hereby agree to indemnify the Initial Developer and every\nContributor for any liability incurred by the Initial Developer or such\nContributor as a result of any such terms You offer.\n\n3.7. Larger Works.\n\nYou may create a Larger Work by combining Covered Code with other code not\ngoverned by the terms of this License and distribute the Larger Work as a single\nproduct. In such a case, You must make sure the requirements of this License are\nfulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to comply with any of the terms of this License with\nrespect to some or all of the Covered Code due to statute, judicial order, or\nregulation then You must: (a) comply with the terms of this License to the\nmaximum extent possible; and (b) describe the limitations and the code they\naffect. Such description must be included in the LEGAL file described in Section\n3.4 and must be included with all distributions of the Source Code. Except to\nthe extent prohibited by statute or regulation, such description must be\nsufficiently detailed for a recipient of ordinary skill to be able to understand\nit.\n\n5. Application of this License.\n\nThis License applies to code to which the Initial Developer has attached the\nnotice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n\n6.1. New Versions.\n\nMuleSource Inc. (\"MuleSource\") may publish revised and/or new versions of the\nLicense from time to time. Each version will be given a distinguishing version\nnumber.\n\n6.2. Effect of New Versions.\n\nOnce Covered Code has been published under a particular version of the License,\nYou may always continue to use it under the terms of that version. You may also\nchoose to use such Covered Code under the terms of any subsequent version of the\nLicense published by MuleSource. No one other than MuleSource has the right to\nmodify the terms applicable to Covered Code created under this License.\n\n6.3. Derivative Works.\n\nIf You create or use a modified version of this License (which you may only do\nin order to apply it to code which is not already Covered Code governed by this\nLicense), You must (a) rename Your license so that the phrases \"MuleSource\",\n\"MSPL\" or any confusingly similar phrase do not appear in your license (except\nto note that your license differs from this License) and (b) otherwise make it\nclear that Your version of the license contains terms which differ from the\nMuleSource Public License. (Filling in the name of the Initial Developer,\nOriginal Code or Contributor in the notice described in Exhibit A shall not of\nthemselves be deemed to be modifications of this License.)\n\n7. DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT\nWARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT\nLIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE,\nFIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE\nQUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE\nPROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER\nCONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION.\nTHIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO\nUSE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n\n8.1. This License and the rights granted hereunder will terminate automatically\nif You fail to comply with terms herein and fail to cure such breach within 30\ndays of becoming aware of the breach. All sublicenses to the Covered Code which\nare properly granted shall survive any termination of this License. Provisions\nwhich, by their nature, must remain in effect beyond the termination of this\nLicense shall survive.\n\n8.2. If You initiate litigation by asserting a patent infringement claim\n(excluding declatory judgment actions) against Initial Developer or a\nContributor (the Initial Developer or Contributor against whom You file such\naction is referred to as \"Participant\") alleging that:\n\n(a) such Participant's Contributor Version directly or indirectly infringes any\npatent, then any and all rights granted by such Participant to You under\nSections 2.1 and/or 2.2 of this License shall, upon 60 days notice from\nParticipant terminate prospectively, unless if within 60 days after receipt of\nnotice You either: (i) agree in writing to pay Participant a mutually agreeable\nreasonable royalty for Your past and future use of Modifications made by such\nParticipant, or (ii) withdraw Your litigation claim with respect to the\nContributor Version against such Participant. If within 60 days of notice, a\nreasonable royalty and payment arrangement are not mutually agreed upon in\nwriting by the parties or the litigation claim is not withdrawn, the rights\ngranted by Participant to You under Sections 2.1 and/or 2.2 automatically\nterminate at the expiration of the 60 day notice period specified above.\n\n(b) any software, hardware, or device, other than such Participant's Contributor\nVersion, directly or indirectly infringes any patent, then any rights granted to\nYou by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective\nas of the date You first made, used, sold, distributed, or had made,\nModifications made by that Participant.\n\n8.3. If You assert a patent infringement claim against Participant alleging that\nsuch Participant's Contributor Version directly or indirectly infringes any\npatent where such claim is resolved (such as by license or settlement) prior to\nthe initiation of patent infringement litigation, then the reasonable value of\nthe licenses granted by such Participant under Sections 2.1 or 2.2 shall be\ntaken into account in determining the amount or value of any payment or license.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user\nlicense agreements (excluding distributors and resellers) which have been\nvalidly granted by You or any distributor hereunder prior to termination shall\nsurvive termination.\n\n9. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY,\nWHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE\nINITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR\nANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT,\nSPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING,\nWITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER\nFAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN\nIF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS\nLIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL\nINJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\nPROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR\nLIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND\nLIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS. The Covered Code is a \"commercial item,\" as that\nterm is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial\ncomputer software\" and \"commercial computer software documentation,\" as such\nterms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R.\n12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S.\nGovernment End Users acquire Covered Code with only those rights set forth\nherein.\n\n11. MISCELLANEOUS. This License represents the complete agreement concerning\nsubject matter hereof. If any provision of this License is held to be\nunenforceable, such provision shall be reformed only to the extent necessary to\nmake it enforceable. This License shall be governed by California law provisions\n(except to the extent applicable law, if any, provides otherwise), excluding its\nconflict-of-law provisions. With respect to disputes in which at least one party\nis a citizen of, or an entity chartered or registered to do business in the\nUnited States of America, any litigation relating to this License shall be\nsubject to the jurisdiction of the Federal Courts of the Northern District of\nCalifornia, with venue lying in Santa Clara County, California, with the losing\nparty responsible for costs, including without limitation, court costs and\nreasonable attorneys' fees and expenses. The application of the United Nations\nConvention on Contracts for the International Sale of Goods is expressly\nexcluded. Any law or regulation which provides that the language of a contract\nshall be construed against the drafter shall not apply to this License.\n\n12. RESPONSIBILITY FOR CLAIMS. As between Initial Developer and the\nContributors, each party is responsible for claims and damages arising, directly\nor indirectly, out of its utilization of rights under this License and You agree\nto work with Initial Developer and Contributors to distribute such\nresponsibility on an equitable basis. Nothing herein is intended or shall be\ndeemed to constitute any admission of liability.\n\n13. MULTIPLE-LICENSED CODE. Initial Developer may designate portions of the\nCovered Code as \"Multiple-Licensed\". \"Multiple-Licensed\" means that the Initial\nDeveloper permits you to utilize portions of the Covered Code under Your choice\nof the SPL or the alternative licenses, if any, specified by the Initial\nDeveloper in the file described in Exhibit A.\n\nMuleSource Public License 1.1.3 - Exhibit A\n\nThe contents of this file are subject to the MuleSource Public License Version\n1.1.3 (\"License\"); You may not use this file except in compliance with the\nLicense. You may obtain a copy of the License at http://www.MuleSource.com/MSPL\nSoftware distributed under the License is distributed on an \"AS IS\" basis,\nWITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the\nspecific language governing rights and limitations under the License.\n\nThe Original Code is: MuleSource Mule\n\nThe Initial Developer of the Original Code is MuleSource, Inc.\nPortions created by MuleSource are Copyright (C) 2003 MuleSource, Inc.;\nAll Rights Reserved.\nContributor(s): ______________________________________.\n\n[NOTE: The text of this Exhibit A may differ slightly from the text of the\nnotices in the Source Code files of the Original Code. You should use the text\nof this Exhibit A rather than the text found in the Original Code Source Code\nfor Your Modifications.]\n\nMuleSource Public License 1.1.3 - Exhibit B\nAdditional Terms applicable to the MuleSource Public License.\n\nI. Effect.These additional terms described in this MuleSource Public License -\nAdditional Terms shall apply to the Covered Code under this License.\n\nII. MuleSource and logo. This License does not grant any rights to use the\ntrademarks \"MuleSource\", \"Mule\" and the \"MuleSource\", \"Mule\" logos even if\nsuch marks are included in the Original Code or Modifications. \n\nHowever, in addition to the other notice obligations, all copies of the Covered Code in Executable\nand Source Code form distributed must, as a form of attribution of the original\nauthor, include on each user interface screen (i) the \"Powered by Mule\" logo and\n(ii) the copyright notice in the same form as the latest version of the Covered\nCode distributed by MuleSource, Inc. at the time of distribution of such copy.\nIn addition, the \"Powered by Mule\" logo must be visible to all users and be\nlocated at the very bottom center of each user interface screen. Notwithstanding\nthe above, the dimensions of the \"Powered by Mule\" logo must be at least 130 x\n25 pixels. When users click on the \"Powered by Mule\" logo it must direct them\nback to http://www.MuleSource.com. In addition, the copyright notice must remain\nvisible to all users at all times at the bottom of the user interface screen.\nWhen users click on the copyright notice, it must direct them back to\nhttp://www.MuleSource.com", + "json": "mule-source-1.1.3.json", + "yaml": "mule-source-1.1.3.yml", + "html": "mule-source-1.1.3.html", + "license": "mule-source-1.1.3.LICENSE" + }, + { + "license_key": "mule-source-1.1.4", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-mule-source-1.1.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MuleSource Public License\nVersion 1.1.4\n\nThe MuleSource Public License Version (\"MSPL\") consists of the Mozilla Public\nLicense Version 1.1, modified to be specific to MuleSource, with the Additional\nTerms in Exhibit B. The original Mozilla Public License 1.1 can be found at:\nhttp://www.mozilla.org/MPL/MPL-1.1.html\n\n1. Definitions.\n\n1.0.1. \"Commercial Use\" means distribution or otherwise making the Covered Code\navailable to a third party.\n\n1.1. \"Contributor\" means each entity that creates or contributes to the creation\nof Modifications.\n\n1.2. \"Contributor Version\" means the combination of the Original Code, prior\nModifications used by a Contributor, and the Modifications made by that\nparticular Contributor.\n\n1.3. \"Covered Code\" means the Original Code or Modifications or the combination\nof the Original Code and Modifications, in each case including portions thereof.\n\n1.4. \"Electronic Distribution Mechanism\". means a mechanism generally accepted\nin the software development community for the electronic transfer of data.\n\n1.5. \"Executable\" means Covered Code in any form other than Source Code.\n\n1.6. \"Initial Developer\" means the individual or entity identified as the\nInitial Developer in the Source Code notice required by Exhibit A.\n\n1.7. \"Larger Work\" means a work which combines Covered Code or portions thereof\nwith code not governed by the terms of this License.\n\n1.8. \"License\" means this document.\n\n1.8.1. \"Licensable\" means having the right to grant, to the maximum extent\npossible, whether at the time of the initial grant or subsequently acquired, any\nand all of the rights conveyed herein.\n\n1.9. \"Modifications\" means any addition to or deletion from the substance or\nstructure of either the Original Code or any previous Modifications. When\nCovered Code is released as a series of files, a Modification is:\n\nA. Any addition to or deletion from the contents of a file containing Original\nCode or previous Modifications.\n\nB. Any new file that contains any part of the Original Code or previous\nModifications.\n\n1.10. \"Original Code\" means Source Code of computer software code which is\ndescribed in the Source Code notice required by Exhibit A as Original Code, and\nwhich, at the time of its release under this License is not already Covered Code\ngoverned by this License.\n\n1.10.1. \"Patent Claims\" means any patent claim(s), now owned or hereafter\nacquired, including without limitation, method, process, and apparatus claims,\nin any patent Licensable by grantor.\n\n1.11. \"Source Code\" means the preferred form of the Covered Code for making\nmodifications to it, including all modules it contains, plus any associated\ninterface definition files, scripts used to control compilation and installation\nof an Executable, or source code differential comparisons against either the\nOriginal Code or another well known, available Covered Code of the Contributor's\nchoice. The Source Code can be in a compressed or archival form, provided the\nappropriate decompression or de-archiving software is widely available for no\ncharge.\n\n1.12. \"You\" (or \"Your\") means an individual or a legal entity exercising rights\nunder, and complying with all of the terms of, this License or a future version\nof this License issued under Section 6.1. For legal entities, \"You\" includes any\nentity which controls, is controlled by, or is under common control with You.\nFor purposes of this definition, \"control\" means (a) the power, direct or\nindirect, to cause the direction or management of such entity, whether by\ncontract or otherwise, or (b) ownership of more than fifty percent (50%) of the\noutstanding shares or beneficial ownership of such entity.\n\n2. Source Code License..\n\n2.1. The Initial Developer Grant.\n\nThe Initial Developer hereby grants You a world-wide, royalty-free, non-\nexclusive license, subject to third party intellectual property claims:\n\n(a) under intellectual property rights (other than patent or trademark)\nLicensable by Initial Developer to use, reproduce, modify, display, perform,\nsublicense and distribute the Original Code (or portions thereof) with or\nwithout Modifications, and/or as part of a Larger Work; and\n\n(b) under Patents Claims infringed by the making, using or selling of Original\nCode, to make, have made, use, practice, sell, and offer for sale, and/or\notherwise dispose of the Original Code (or portions thereof).\n\n(c) the licenses granted in this Section 2.1(a) and (b) are effective on the\ndate Initial Developer first distributes Original Code under the terms of this\nLicense.\n\n(d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for\ncode that You delete from the Original Code; 2) separate from the Original Code;\nor 3) for infringements caused by: i) the modification of the Original Code or\nii) the combination of the Original Code with other software or devices.\n\n2.2. Contributor Grant.\n\nSubject to third party intellectual property claims, each Contributor hereby\ngrants You a world-wide, royalty-free, non-exclusive license\n\n(a) under intellectual property rights (other than patent or trademark)\nLicensable by Contributor, to use, reproduce, modify, display, perform,\nsublicense and distribute the Modifications created by such Contributor (or\nportions thereof) either on an unmodified basis, with other Modifications, as\nCovered Code and/or as part of a Larger Work; and\n\n(b) under Patent Claims infringed by the making, using, or selling of\nModifications made by that Contributor either alone and/or in combination with\nits Contributor Version (or portions of such combination), to make, use, sell,\noffer for sale, have made, and/or otherwise dispose of: 1) Modifications made by\nthat Contributor (or portions thereof); and 2) the combination of Modifications\nmade by that Contributor with its Contributor Version (or portions of such\ncombination).\n\n(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date\nContributor first makes Commercial Use of the Covered Code.\n\n(d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for\nany code that Contributor has deleted from the Contributor Version; 2) separate\nfrom the Contributor Version; 3) for infringements caused by: i) third party\nmodifications of Contributor Version or ii) the combination of Modifications\nmade by that Contributor with other software (except as part of the Contributor\nVersion) or other devices; or 4) under Patent Claims infringed by Covered Code\nin the absence of Modifications made by that Contributor.\n\n3. Distribution Obligations.\n\n3.1. Application of License.\n\nThe Modifications which You create or to which You contribute are governed by\nthe terms of this License, including without limitation Section 2.2. The Source\nCode version of Covered Code may be distributed only under the terms of this\nLicense or a future version of this License released under Section 6.1, and You\nmust include a copy of this License with every copy of the Source Code You\ndistribute. You may not offer or impose any terms on any Source Code version\nthat alters or restricts the applicable version of this License or the\nrecipients' rights hereunder. However, You may include an additional document\noffering the additional rights described in Section 3.5.\n\n3.2. Availability of Source Code.\n\nAny Modification which You create or to which You contribute must be made\navailable in Source Code form under the terms of this License either on the same\nmedia as an Executable version or via an accepted Electronic Distribution\nMechanism to anyone to whom you made an Executable version available; and if\nmade available via Electronic Distribution Mechanism, must remain available for\nat least twelve (12) months after the date it initially became available, or at\nleast six (6) months after a subsequent version of that particular Modification\nhas been made available to such recipients. You are responsible for ensuring\nthat the Source Code version remains available even if the Electronic\nDistribution Mechanism is maintained by a third party.\n\n3.3. Description of Modifications.\n\nYou must cause all Covered Code to which You contribute to contain a file\ndocumenting the changes You made to create that Covered Code and the date of any\nchange. You must include a prominent statement that the Modification is derived,\ndirectly or indirectly, from Original Code provided by the Initial Developer and\nincluding the name of the Initial Developer in (a) the Source Code, and (b) in\nany notice in an Executable version or related documentation in which You\ndescribe the origin or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters.\n\n(a) Third Party Claims.\n\nIf Contributor has knowledge that a license under a third party's intellectual\nproperty rights is required to exercise the rights granted by such Contributor\nunder Sections 2.1 or 2.2, Contributor must include a text file with the Source\nCode distribution titled \"LEGAL\" which describes the claim and the party making\nthe claim in sufficient detail that a recipient will know whom to contact. If\nContributor obtains such knowledge after the Modification is made available as\ndescribed in Section 3.2, Contributor shall promptly modify the LEGAL file in\nall copies Contributor makes available thereafter and shall take other steps\n(such as notifying appropriate mailing lists or newsgroups) reasonably\ncalculated to inform those who received the Covered Code that new knowledge has\nbeen obtained.\n\n(b) Contributor APIs.\n\nIf Contributor's Modifications include an application programming interface and\nContributor has knowledge of patent licenses which are reasonably necessary to\nimplement that API, Contributor must also include this information in the LEGAL\nfile.\n\n(c) Representations.\n\nContributor represents that, except as disclosed pursuant to Section 3.4(a)\nabove, Contributor believes that Contributor's Modifications are Contributor's\noriginal creation(s) and/or Contributor has sufficient rights to grant the\nrights conveyed by this License.\n\n3.5. Required Notices.\n\nYou must duplicate the notice in Exhibit A in each file of the Source Code. If\nit is not possible to put such notice in a particular Source Code file due to\nits structure, then You must include such notice in a location (such as a\nrelevant directory) where a user would be likely to look for such a notice. If\nYou created one or more Modification(s) You may add your name as a Contributor\nto the notice described in Exhibit A. You must also duplicate this License in\nany documentation for the Source Code where You describe recipients' rights or\nownership rights relating to Covered Code. You may choose to offer, and to\ncharge a fee for, warranty, support, indemnity or liability obligations to one\nor more recipients of Covered Code. However, You may do so only on Your own\nbehalf, and not on behalf of the Initial Developer or any Contributor. You must\nmake it absolutely clear than any such warranty, support, indemnity or liability\nobligation is offered by You alone, and You hereby agree to indemnify the\nInitial Developer and every Contributor for any liability incurred by the\nInitial Developer or such Contributor as a result of warranty, support,\nindemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions.\n\nYou may distribute Covered Code in Executable form only if the requirements of\nSection 3.1-3.5 have been met for that Covered Code, and if You include a notice\nstating that the Source Code version of the Covered Code is available under the\nterms of this License, including a description of how and where You have\nfulfilled the obligations of Section 3.2. The notice must be conspicuously\nincluded in any notice in an Executable version, related documentation or\ncollateral in which You describe recipients' rights relating to the Covered\nCode. You may distribute the Executable version of Covered Code or ownership\nrights under a license of Your choice, which may contain terms different from\nthis License, provided that You are in compliance with the terms of this License\nand that the license for the Executable version does not attempt to limit or\nalter the recipient's rights in the Source Code version from the rights set\nforth in this License. If You distribute the Executable version under a\ndifferent license You must make it absolutely clear that any terms which differ\nfrom this License are offered by You alone, not by the Initial Developer or any\nContributor. You hereby agree to indemnify the Initial Developer and every\nContributor for any liability incurred by the Initial Developer or such\nContributor as a result of any such terms You offer.\n\n3.7. Larger Works.\n\nYou may create a Larger Work by combining Covered Code with other code not\ngoverned by the terms of this License and distribute the Larger Work as a single\nproduct. In such a case, You must make sure the requirements of this License are\nfulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to comply with any of the terms of this License with\nrespect to some or all of the Covered Code due to statute, judicial order, or\nregulation then You must: (a) comply with the terms of this License to the\nmaximum extent possible; and (b) describe the limitations and the code they\naffect. Such description must be included in the LEGAL file described in Section\n3.4 and must be included with all distributions of the Source Code. Except to\nthe extent prohibited by statute or regulation, such description must be\nsufficiently detailed for a recipient of ordinary skill to be able to understand\nit.\n\n5. Application of this License.\n\nThis License applies to code to which the Initial Developer has attached the\nnotice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n\n6.1. New Versions.\n\nMuleSource Inc. (\"MuleSource\") may publish revised and/or new versions of the\nLicense from time to time. Each version will be given a distinguishing version\nnumber.\n\n6.2. Effect of New Versions.\n\nOnce Covered Code has been published under a particular version of the License,\nYou may always continue to use it under the terms of that version. You may also\nchoose to use such Covered Code under the terms of any subsequent version of the\nLicense published by MuleSource. No one other than MuleSource has the right to\nmodify the terms applicable to Covered Code created under this License.\n\n6.3. Derivative Works.\n\nIf You create or use a modified version of this License (which you may only do\nin order to apply it to code which is not already Covered Code governed by this\nLicense), You must (a) rename Your license so that the phrases \"MuleSource\",\n\"MSPL\" or any confusingly similar phrase do not appear in your license (except\nto note that your license differs from this License) and (b) otherwise make it\nclear that Your version of the license contains terms which differ from the\nMuleSource Public License. (Filling in the name of the Initial Developer,\nOriginal Code or Contributor in the notice described in Exhibit A shall not of\nthemselves be deemed to be modifications of this License.)\n\n7. DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT\nWARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT\nLIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE,\nFIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE\nQUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE\nPROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER\nCONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION.\nTHIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO\nUSE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n\n8.1. This License and the rights granted hereunder will terminate automatically\nif You fail to comply with terms herein and fail to cure such breach within 30\ndays of becoming aware of the breach. All sublicenses to the Covered Code which\nare properly granted shall survive any termination of this License. Provisions\nwhich, by their nature, must remain in effect beyond the termination of this\nLicense shall survive.\n\n8.2. If You initiate litigation by asserting a patent infringement claim\n(excluding declatory judgment actions) against Initial Developer or a\nContributor (the Initial Developer or Contributor against whom You file such\naction is referred to as \"Participant\") alleging that:\n\n(a) such Participant's Contributor Version directly or indirectly infringes any\npatent, then any and all rights granted by such Participant to You under\nSections 2.1 and/or 2.2 of this License shall, upon 60 days notice from\nParticipant terminate prospectively, unless if within 60 days after receipt of\nnotice You either: (i) agree in writing to pay Participant a mutually agreeable\nreasonable royalty for Your past and future use of Modifications made by such\nParticipant, or (ii) withdraw Your litigation claim with respect to the\nContributor Version against such Participant. If within 60 days of notice, a\nreasonable royalty and payment arrangement are not mutually agreed upon in\nwriting by the parties or the litigation claim is not withdrawn, the rights\ngranted by Participant to You under Sections 2.1 and/or 2.2 automatically\nterminate at the expiration of the 60 day notice period specified above.\n\n(b) any software, hardware, or device, other than such Participant's Contributor\nVersion, directly or indirectly infringes any patent, then any rights granted to\nYou by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective\nas of the date You first made, used, sold, distributed, or had made,\nModifications made by that Participant.\n\n8.3. If You assert a patent infringement claim against Participant alleging that\nsuch Participant's Contributor Version directly or indirectly infringes any\npatent where such claim is resolved (such as by license or settlement) prior to\nthe initiation of patent infringement litigation, then the reasonable value of\nthe licenses granted by such Participant under Sections 2.1 or 2.2 shall be\ntaken into account in determining the amount or value of any payment or license.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user\nlicense agreements (excluding distributors and resellers) which have been\nvalidly granted by You or any distributor hereunder prior to termination shall\nsurvive termination.\n\n9. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY,\nWHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE\nINITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR\nANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT,\nSPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING,\nWITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER\nFAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN\nIF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS\nLIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL\nINJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\nPROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR\nLIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND\nLIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS. The Covered Code is a \"commercial item,\" as that\nterm is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial\ncomputer software\" and \"commercial computer software documentation,\" as such\nterms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R.\n12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S.\nGovernment End Users acquire Covered Code with only those rights set forth\nherein.\n\n11. MISCELLANEOUS. This License represents the complete agreement concerning\nsubject matter hereof. If any provision of this License is held to be\nunenforceable, such provision shall be reformed only to the extent necessary to\nmake it enforceable. This License shall be governed by California law provisions\n(except to the extent applicable law, if any, provides otherwise), excluding its\nconflict-of-law provisions. With respect to disputes in which at least one party\nis a citizen of, or an entity chartered or registered to do business in the\nUnited States of America, any litigation relating to this License shall be\nsubject to the jurisdiction of the Federal Courts of the Northern District of\nCalifornia, with venue lying in Santa Clara County, California, with the losing\nparty responsible for costs, including without limitation, court costs and\nreasonable attorneys' fees and expenses. The application of the United Nations\nConvention on Contracts for the International Sale of Goods is expressly\nexcluded. Any law or regulation which provides that the language of a contract\nshall be construed against the drafter shall not apply to this License.\n\n12. RESPONSIBILITY FOR CLAIMS. As between Initial Developer and the\nContributors, each party is responsible for claims and damages arising, directly\nor indirectly, out of its utilization of rights under this License and You agree\nto work with Initial Developer and Contributors to distribute such\nresponsibility on an equitable basis. Nothing herein is intended or shall be\ndeemed to constitute any admission of liability.\n\n13. MULTIPLE-LICENSED CODE. Initial Developer may designate portions of the\nCovered Code as \"Multiple-Licensed\". \"Multiple-Licensed\" means that the Initial\nDeveloper permits you to utilize portions of the Covered Code under Your choice\nof the SPL or the alternative licenses, if any, specified by the Initial\nDeveloper in the file described in Exhibit A.\n\nMuleSource Public License 1.1.4 - Exhibit A\n\nThe contents of this file are subject to the MuleSource Public License Version\n1.1.4 (\"License\"); You may not use this file except in compliance with the\nLicense. You may obtain a copy of the License at http://www.MuleSource.com/MSPL\nSoftware distributed under the License is distributed on an \"AS IS\" basis,\nWITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the\nspecific language governing rights and limitations under the License.\n\nThe Original Code is: MuleSource Mule\n\nThe Initial Developer of the Original Code is MuleSource, Inc.\nPortions created by MuleSource are Copyright (C) 2003 MuleSource, Inc.;\nAll Rights Reserved.\nContributor(s): ______________________________________.\n\n[NOTE: The text of this Exhibit A may differ slightly from the text of the\nnotices in the Source Code files of the Original Code. You should use the text\nof this Exhibit A rather than the text found in the Original Code Source Code\nfor Your Modifications.]\n\nMuleSource Public License 1.1.4 - Exhibit B\nAdditional Terms applicable to the MuleSource Public License.\n\nI. Effect.These additional terms described in this MuleSource Public License -\nAdditional Terms shall apply to the Covered Code under this License.\n\nII. MuleSource and logo. This License does not grant any rights to use the\ntrademarks \"MuleSource\", \"Mule\" and the \"MuleSource\", \"Mule\" logos even if\nsuch marks are included in the Original Code or Modifications.\n\nRedistributions of the Covered Code in binary form or source code form, must\nensure that the first time the resulting executable program is launched, a\nuser interface, if any, shall include the attribution information set forth\nbelow prominently. If the executable program does not launch a user interface,\nthe Company name and URL shall be included in the notice section of each file\nof the Covered Code. :\n\n(a) MuleSource Inc.\n(b) Logo image: http://www.mulesource.com/images/mulesource_logo.gif\n(c) http://www.mulesource.com", + "json": "mule-source-1.1.4.json", + "yaml": "mule-source-1.1.4.yml", + "html": "mule-source-1.1.4.html", + "license": "mule-source-1.1.4.LICENSE" + }, + { + "license_key": "mulle-kybernetik", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mulle-kybernetik", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Mulle Kybernetik License\n\nPermission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the software, derivative works or modified versions, and any portions thereof, and that both notices appear in supporting documentation, and that credit is given to Mulle Kybernetik in all documents and publicity pertaining to direct or indirect use of this code or its derivatives.\n\nTHIS IS EXPERIMENTAL SOFTWARE AND IT IS KNOWN TO HAVE BUGS, SOME OF WHICH MAY HAVE SERIOUS CONSEQUENCES. THE COPYRIGHT HOLDER ALLOWS FREE USE OF THIS SOFTWARE IN ITS \"AS IS\" CONDITION. THE COPYRIGHT HOLDER DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING DIRECTLY OR INDIRECTLY FROM THE USE OF THIS SOFTWARE OR OF ANY DERIVATIVE WORK.", + "json": "mulle-kybernetik.json", + "yaml": "mulle-kybernetik.yml", + "html": "mulle-kybernetik.html", + "license": "mulle-kybernetik.LICENSE" + }, + { + "license_key": "multics", + "category": "Permissive", + "spdx_license_key": "Multics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute these programs and their\ndocumentation for any purpose and without fee is hereby granted,provided\nthat the below copyright notice and historical background appear in all\ncopies and that both the copyright notice and historical background and\nthis permission notice appear in supporting documentation, and that\nthe names of MIT, HIS, BULL or BULL HN not be used in advertising or\npublicity pertaining to distribution of the programs without specific\nprior written permission.\nCopyright 1972 by Massachusetts Institute of Technology and Honeywell Information\nSystems Inc.\nCopyright 2006 by BULL HN Information Systems Inc.\nCopyright 2006 by Bull SAS\nAll Rights Reserved", + "json": "multics.json", + "yaml": "multics.yml", + "html": "multics.html", + "license": "multics.LICENSE" + }, + { + "license_key": "mup", + "category": "Permissive", + "spdx_license_key": "Mup", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following DISCLAIMER.\n\n2. 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.\n\n3. Any additions, deletions, or changes to the original files must be clearly indicated in accompanying documentation. including the reasons for the changes, and the names of those who made the modifications.\n\nDISCLAIMER\n\nTHIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS 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.", + "json": "mup.json", + "yaml": "mup.yml", + "html": "mup.html", + "license": "mup.LICENSE" + }, + { + "license_key": "musl-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-musl-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "In addition, permission is hereby granted for all public header files\n(include/* and arch/*/bits/*) and crt files intended to be linked into\napplications (crt/*, ldso/dlstart.c, and arch/*/crt_arch.h) to omit\nthe copyright notice and permission notice otherwise required by the\nlicense, and to use these files without any requirement of\nattribution. These files include substantial contributions from:\n\nBobby Bingham\nJohn Spencer\nNicholas J. Kain\nRich Felker\nRichard Pennington\nStefan Kristiansson\nSzabolcs Nagy\n\nall of whom have explicitly granted such permission.", + "json": "musl-exception.json", + "yaml": "musl-exception.yml", + "html": "musl-exception.html", + "license": "musl-exception.LICENSE" + }, + { + "license_key": "mvt-1.1", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-mvt-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "MVT License 1.1\n===============\n\n1. Definitions\n--------------\n\n1.1. \"Contributor\"\n means each individual or legal entity that creates, contributes to\n the creation of, or owns Covered Software.\n\n1.2. \"Contributor Version\"\n means the combination of the Contributions of others (if any) used\n by a Contributor and that particular Contributor's Contribution.\n\n1.3. \"Contribution\"\n means Covered Software of a particular Contributor.\n\n1.4. \"Covered Software\"\n means Source Code Form to which the initial Contributor has attached\n the notice in Exhibit A, the Executable Form of such Source Code\n Form, and Modifications of such Source Code Form, in each case\n including portions thereof.\n\n1.5. \"Incompatible With Secondary Licenses\"\n means\n\n (a) that the initial Contributor has attached the notice described\n in Exhibit B to the Covered Software; or\n\n (b) that the Covered Software was made available under the terms of\n version 1.1 or earlier of the License, but not also under the\n terms of a Secondary License.\n\n1.6. \"Executable Form\"\n means any form of the work other than Source Code Form.\n\n1.7. \"Larger Work\"\n means a work that combines Covered Software with other material, in\n a separate file or files, that is not Covered Software.\n\n1.8. \"License\"\n means this document.\n\n1.9. \"Licensable\"\n means having the right to grant, to the maximum extent possible,\n whether at the time of the initial grant or subsequently, any and\n all of the rights conveyed by this License.\n\n1.10. \"Modifications\"\n means any of the following:\n\n (a) any file in Source Code Form that results from an addition to,\n deletion from, or modification of the contents of Covered\n Software; or\n\n (b) any new file in Source Code Form that contains any Covered\n Software.\n\n1.11. \"Patent Claims\" of a Contributor\n means any patent claim(s), including without limitation, method,\n process, and apparatus claims, in any patent Licensable by such\n Contributor that would be infringed, but for the grant of the\n License, by the making, using, selling, offering for sale, having\n made, import, or transfer of either its Contributions or its\n Contributor Version.\n\n1.12. \"Secondary License\"\n means either the GNU General Public License, Version 2.0, the GNU\n Lesser General Public License, Version 2.1, the GNU Affero General\n Public License, Version 3.0, or any later versions of those\n licenses.\n\n1.13. \"Source Code Form\"\n means the form of the work preferred for making modifications.\n\n1.14. \"You\" (or \"Your\")\n means an individual or a legal entity exercising rights under this\n License. For legal entities, \"You\" includes any entity that\n controls, is controlled by, or is under common control with You. For\n purposes of this definition, \"control\" means (a) the power, direct\n or indirect, to cause the direction or management of such entity,\n whether by contract or otherwise, or (b) ownership of more than\n fifty percent (50%) of the outstanding shares or beneficial\n ownership of such entity.\n\n1.15. \"Data\"\n means any data extracted from an electronic device with or without\n use of Covered Software, and/or analysed using Covered Software or\n a Larger Work.\n\n1.16. \"Device Owner\" (or \"Device Owners\")\n means an individual or a legal entity with legal ownership of an\n electronic device which is being analysed through the use of\n Covered Software or a Larger Work, or from which Data was extracted\n for subsequent analysis.\n\n1.17. \"Data Owner\" (or \"Data Owners\")\n means an individual or group of individuals who made legitimate use\n of the electronic device from which Data that is extracted and/or\n analyzed originated. \"Data Owner\" might or might not differ from\n \"Device Owner\".\n\n2. License Grants and Conditions\n--------------------------------\n\n2.1. Grants\n\nEach Contributor hereby grants You a world-wide, royalty-free,\nnon-exclusive license:\n\n(a) under intellectual property rights (other than patent or trademark)\n Licensable by such Contributor to use, reproduce, make available,\n modify, display, perform, distribute, and otherwise exploit its\n Contributions, either on an unmodified basis, with Modifications, or\n as part of a Larger Work; and\n\n(b) under Patent Claims of such Contributor to make, use, sell, offer\n for sale, have made, import, and otherwise transfer either its\n Contributions or its Contributor Version.\n\n2.2. Effective Date\n\nThe licenses granted in Section 2.1 with respect to any Contribution\nbecome effective for each Contribution on the date the Contributor first\ndistributes such Contribution.\n\n2.3. Limitations on Grant Scope\n\nThe licenses granted in this Section 2 are the only rights granted under\nthis License. No additional rights or licenses will be implied from the\ndistribution or licensing of Covered Software under this License.\nNotwithstanding Section 2.1(b) above, no patent license is granted by a\nContributor:\n\n(a) for any code that a Contributor has removed from Covered Software;\n or\n\n(b) for infringements caused by: (i) Your and any other third party's\n modifications of Covered Software, or (ii) the combination of its\n Contributions with other software (except as part of its Contributor\n Version); or\n\n(c) under Patent Claims infringed by Covered Software in the absence of\n its Contributions.\n\nThis License does not grant any rights in the trademarks, service marks,\nor logos of any Contributor (except as may be necessary to comply with\nthe notice requirements in Section 3.4).\n\n2.4. Subsequent Licenses\n\nNo Contributor makes additional grants as a result of Your choice to\ndistribute the Covered Software under a subsequent version of this\nLicense (see Section 10.2) or under the terms of a Secondary License (if\npermitted under the terms of Section 3.3).\n\n2.5. Representation\n\nEach Contributor represents that the Contributor believes its\nContributions are its original creation(s) or it has sufficient rights\nto grant the rights to its Contributions conveyed by this License.\n\n2.6. Fair Use\n\nThis License is not intended to limit any rights You have under\napplicable copyright doctrines of fair use, fair dealing, or other\nequivalents.\n\n2.7. Conditions\n\nSections 3.0, 3.1, 3.2, 3.3, and 3.6 are conditions of the licenses\ngranted in Section 2.1.\n\n3. Responsibilities\n-------------------\n\n3.0. Consensual Use Restriction\n\nUse of Covered Software or of a Larger Work is permitted provided that\nthe Data Owner must explicitly consent to the procedure, free from any\nform of coercion, and must be fully informed about the nature of the\nprocedure, its privacy implications, and any data retention and disposal\npolicy.\n\n3.1. Distribution of Source Form\n\nAll distribution of Covered Software in Source Code Form, including any\nModifications that You create or to which You contribute, must be under\nthe terms of this License. You must inform recipients that the Source\nCode Form of the Covered Software is governed by the terms of this\nLicense, and how they can obtain a copy of this License. You may not\nattempt to alter or restrict the recipients' rights in the Source Code\nForm.\n\n3.2. Distribution of Executable Form\n\nIf You distribute Covered Software in Executable Form then:\n\n(a) such Covered Software must also be made available in Source Code\n Form, as described in Section 3.1, and You must inform recipients of\n the Executable Form how they can obtain a copy of such Source Code\n Form by reasonable means in a timely manner, at a charge no more\n than the cost of distribution to the recipient; and\n\n(b) You may distribute such Executable Form under the terms of this\n License, or sublicense it under different terms, provided that the\n license for the Executable Form does not attempt to limit or alter\n the recipients' rights in the Source Code Form under this License.\n\n3.3. Distribution of a Larger Work\n\nYou may create and distribute a Larger Work under terms of Your choice,\nprovided that You also comply with the requirements of this License for\nthe Covered Software. If the Larger Work is a combination of Covered\nSoftware with a work governed by one or more Secondary Licenses, and the\nCovered Software is not Incompatible With Secondary Licenses, this\nLicense permits You to additionally distribute such Covered Software\nunder the terms of such Secondary License(s), so that the recipient of\nthe Larger Work may, at their option, further distribute the Covered\nSoftware under the terms of either this License or such Secondary\nLicense(s).\n\n3.4. Notices\n\nYou may not remove or alter the substance of any license notices\n(including copyright notices, patent notices, disclaimers of warranty,\nor limitations of liability) contained within the Source Code Form of\nthe Covered Software, except that You may alter any license notices to\nthe extent required to remedy known factual inaccuracies.\n\n3.5. Application of Additional Terms\n\nYou may choose to offer, and to charge a fee for, warranty, support,\nindemnity or liability obligations to one or more recipients of Covered\nSoftware. However, You may do so only on Your own behalf, and not on\nbehalf of any Contributor. You must make it absolutely clear that any\nsuch warranty, support, indemnity, or liability obligation is offered by\nYou alone, and You hereby agree to indemnify every Contributor for any\nliability incurred by such Contributor as a result of warranty, support,\nindemnity or liability terms You offer. You may include additional\ndisclaimers of warranty and limitations of liability specific to any\njurisdiction.\n\n4. Inability to Comply Due to Statute or Regulation\n---------------------------------------------------\n\nIf it is impossible for You to comply with any of the terms of this\nLicense with respect to some or all of the Covered Software due to\nstatute, judicial order, or regulation then You must: (a) comply with\nthe terms of this License to the maximum extent possible; and (b)\ndescribe the limitations and the code they affect. Such description must\nbe placed in a text file included with all distributions of the Covered\nSoftware under this License. Except to the extent prohibited by statute\nor regulation, such description must be sufficiently detailed for a\nrecipient of ordinary skill to be able to understand it.\n\n5. Termination\n--------------\n\n5.1. The rights granted under this License will terminate automatically\nif You fail to comply with any of its terms. However, if You become\ncompliant, then the rights granted under this License from a particular\nContributor are reinstated (a) provisionally, unless and until such\nContributor explicitly and finally terminates Your grants, and (b) on an\nongoing basis, if such Contributor fails to notify You of the\nnon-compliance by some reasonable means prior to 60 days after You have\ncome back into compliance. Moreover, Your grants from a particular\nContributor are reinstated on an ongoing basis if such Contributor\nnotifies You of the non-compliance by some reasonable means, this is the\nfirst time You have received notice of non-compliance with this License\nfrom such Contributor, and You become compliant prior to 30 days after\nYour receipt of the notice.\n\n5.2. If You initiate litigation against any entity by asserting a patent\ninfringement claim (excluding declaratory judgment actions,\ncounter-claims, and cross-claims) alleging that a Contributor Version\ndirectly or indirectly infringes any patent, then the rights granted to\nYou by any and all Contributors for the Covered Software under Section\n2.1 of this License shall terminate.\n\n5.3. In the event of termination under Sections 5.1 or 5.2 above, all\nend user license agreements (excluding distributors and resellers) which\nhave been validly granted by You or Your distributors under this License\nprior to termination shall survive termination.\n\n************************************************************************\n* *\n* 6. Disclaimer of Warranty *\n* ------------------------- *\n* *\n* Covered Software is provided under this License on an \"as is\" *\n* basis, without warranty of any kind, either expressed, implied, or *\n* statutory, including, without limitation, warranties that the *\n* Covered Software is free of defects, merchantable, fit for a *\n* particular purpose or non-infringing. The entire risk as to the *\n* quality and performance of the Covered Software is with You. *\n* Should any Covered Software prove defective in any respect, You *\n* (not any Contributor) assume the cost of any necessary servicing, *\n* repair, or correction. This disclaimer of warranty constitutes an *\n* essential part of this License. No use of any Covered Software is *\n* authorized under this License except under this disclaimer. *\n* *\n************************************************************************\n\n************************************************************************\n* *\n* 7. Limitation of Liability *\n* -------------------------- *\n* *\n* Under no circumstances and under no legal theory, whether tort *\n* (including negligence), contract, or otherwise, shall any *\n* Contributor, or anyone who distributes Covered Software as *\n* permitted above, be liable to You for any direct, indirect, *\n* special, incidental, or consequential damages of any character *\n* including, without limitation, damages for lost profits, loss of *\n* goodwill, work stoppage, computer failure or malfunction, or any *\n* and all other commercial damages or losses, even if such party *\n* shall have been informed of the possibility of such damages. This *\n* limitation of liability shall not apply to liability for death or *\n* personal injury resulting from such party's negligence to the *\n* extent applicable law prohibits such limitation. Some *\n* jurisdictions do not allow the exclusion or limitation of *\n* incidental or consequential damages, so this exclusion and *\n* limitation may not apply to You. *\n* *\n************************************************************************\n\n8. Litigation\n-------------\n\nAny litigation relating to this License may be brought only in the\ncourts of a jurisdiction where the defendant maintains its principal\nplace of business and such litigation shall be governed by laws of that\njurisdiction, without reference to its conflict-of-law provisions.\nNothing in this Section shall prevent a party's ability to bring\ncross-claims or counter-claims.\n\n9. Miscellaneous\n----------------\n\nThis License represents the complete agreement concerning the subject\nmatter hereof. If any provision of this License is held to be\nunenforceable, such provision shall be reformed only to the extent\nnecessary to make it enforceable. Any law or regulation which provides\nthat the language of a contract shall be construed against the drafter\nshall not be used to construe this License against a Contributor.\n\n10. Versions of the License\n---------------------------\n\n10.1. New Versions\n\nClaudio Guarnieri is the license steward. Except as provided in Section\n10.3, no one other than the license steward has the right to modify or\npublish new versions of this License. Each version will be given a\ndistinguishing version number.\n\n10.2. Effect of New Versions\n\nYou may distribute the Covered Software under the terms of the version\nof the License under which You originally received the Covered Software,\nor under the terms of any subsequent version published by the license\nsteward.\n\n10.3. Modified Versions\n\nIf you create software not governed by this License, and you want to\ncreate a new license for such software, you may create and use a\nmodified version of this License if you rename the license and remove\nany references to the name of the license steward (except to note that\nsuch modified license differs from this License).\n\n10.4. Distributing Source Code Form that is Incompatible With Secondary\nLicenses\n\nIf You choose to distribute Source Code Form that is Incompatible With\nSecondary Licenses under the terms of this version of the License, the\nnotice described in Exhibit B of this License must be attached.\n\nExhibit A - Source Code Form License Notice\n-------------------------------------------\n\n This Source Code Form is subject to the terms of the MVT License,\n v. 1.1. If a copy of the MVT License was not distributed with this\n file, You can obtain one at https://license.mvt.re/1.1/.\n\nIf it is not possible or desirable to put the notice in a particular\nfile, then You may include the notice in a location (such as a LICENSE\nfile in a relevant directory) where a recipient would be likely to look\nfor such a notice.\n\nYou may add additional accurate notices of copyright ownership.\n\nExhibit B - \"Incompatible With Secondary Licenses\" Notice\n---------------------------------------------------------\n\n This Source Code Form is \"Incompatible With Secondary Licenses\", as\n defined by the MVT License, v. 1.1.\n\n\nThis license is an adaption of Mozilla Public License, v. 2.0.", + "json": "mvt-1.1.json", + "yaml": "mvt-1.1.yml", + "html": "mvt-1.1.html", + "license": "mvt-1.1.LICENSE" + }, + { + "license_key": "mx4j", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mx4j", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The MX4J License, Version 1.0\n\nCopyright (c) by the MX4J contributors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in\n the documentation and/or other materials provided with the\n distribution.\n\n3. The end-user documentation included with the redistribution,\n if any, must include the following acknowledgment:\n \"This product includes software developed by the\n MX4J project (http://mx4j.sourceforge.net).\"\n Alternately, this acknowledgment may appear in the software itself,\n if and wherever such third-party acknowledgments normally appear.\n\n4. The name \"MX4J\" must not be used to endorse or promote\n products derived from this software without prior written\n permission.\n For written permission, please contact biorn_steedom@users.sourceforge.net\n\n5. Products derived from this software may not be called \"MX4J\",\n nor may \"MX4J\" appear in their name, without prior written\n permission of Simone Bordet.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE MX4J CONTRIBUTORS\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\nUSE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\nOF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n====================================================================\n\nThis software consists of voluntary contributions made by many\nindividuals on behalf of the MX4J project. For more information on\nMX4J, please see\n.", + "json": "mx4j.json", + "yaml": "mx4j.yml", + "html": "mx4j.html", + "license": "mx4j.LICENSE" + }, + { + "license_key": "mysql-connector-odbc-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-mysql-con-odbc-exception-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mysql-connector-odbc-exception-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception to the MySQL Connector/ODBC GPL license, one is allowed \nto use the product with any ODBC manager, even if the ODBC manager is not licensed under the GPL. In other words: The ODBC manager itself is not affected by the MySQL Connector/ODBC GPL license.", + "json": "mysql-connector-odbc-exception-2.0.json", + "yaml": "mysql-connector-odbc-exception-2.0.yml", + "html": "mysql-connector-odbc-exception-2.0.html", + "license": "mysql-connector-odbc-exception-2.0.LICENSE" + }, + { + "license_key": "mysql-floss-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-mysql-floss-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": " MySQL FLOSS License Exception\n The MySQL AB Exception for Free/Libre and Open Source Software-only\n Applications Using MySQL Client Libraries (the \"FLOSS Exception\").\n Version 0.6, 7 March 2007\n Exception Intent\n We want specified Free/Libre and Open Source Software (``FLOSS'')\n applications to be able to use specified GPL-licensed MySQL client\n libraries (the ``Program'') despite the fact that not all FLOSS licenses\n are compatible with version 2 of the GNU General Public License (the\n ``GPL'').\n Legal Terms and Conditions\n As a special exception to the terms and conditions of version 2.0 of the\n GPL:\n 1. You are free to distribute a Derivative Work that is formed entirely\n from the Program and one or more works (each, a \"FLOSS Work\") licensed\n under one or more of the licenses listed below in section 1, as long as:\n a. You obey the GPL in all respects for the Program and the Derivative\n Work, except for identifiable sections of the Derivative Work which are not\n derived from the Program, and which can reasonably be considered\n independent and separate works in themselves,\n b. all identifiable sections of the Derivative Work which are not derived\n from the Program, and which can reasonably be considered independent and\n separate works in themselves,\n i. are distributed subject to one of the FLOSS licenses listed below, and\n ii. the object code or executable form of those sections are accompanied by\n the complete corresponding machine-readable source code for those sections\n on the same medium and under the same FLOSS license as\n the corresponding object code or executable forms of those sections, and\n c. any works which are aggregated with the Program or with a Derivative\n Work on a volume of a storage or distribution medium in accordance with the\n GPL, can reasonably be considered independent and separate works in\n themselves\n which are not derivatives of either the Program, a Derivative Work or a\n FLOSS Work.\n If the above conditions are not met, then the Program may only be copied,\n modified, distributed or used under the terms and conditions of the GPL or\n another valid licensing option from MySQL AB.\n 2. FLOSS License List\n License name Version(s)/Copyright Date\n Academic Free License 2.0\n Apache Software License 1.0/1.1/2.0\n Apple Public Source License 2.0\n Artistic license From Perl 5.8.0\n BSD license \"July 22 1999\"\n Common Development and Distribution License (CDDL) 1.0\n Common Public License 1.0\n Eclipse Public License 1.0\n GNU Library or \"Lesser\" General Public License (LGPL) 2.0/2.1\n Jabber Open Source License 1.0\n MIT license (As listed in file MIT-License.txt) ---\n Mozilla Public License (MPL) 1.0/1.1\n Open Software License 2.0\n OpenSSL license (with original SSLeay license) \"2003\" (\"1998\")\n PHP License 3.0\n Python license (CNRI Python License) ---\n Python Software Foundation License 2.1.1\n Sleepycat License \"1999\"\n University of Illinois/NCSA Open Source License ---\n W3C License \"2001\"\n X11 License \"2001\"\n Zlib/libpng License ---\n Zope Public License 2.0\n Due to the many variants of some of the above licenses, we require that any\n version follow the 2003 version of the Free Software Foundation's Free\n Software Definition (http://www.gnu.org/philosophy/free-sw.html) or version\n 1.9 of the Open Source Definition by the Open Source Initiative\n http://www.opensource.org/docs/definition.php).\n 3. Definitions\n a. Terms used, but not defined, herein shall have the meaning provided in\n the GPL.\n b. Derivative Work means a derivative work under copyright law.\n 4. Applicability: This FLOSS Exception applies to all Programs that contain\n a notice placed by MySQL AB saying that the Program may be distributed\n under the terms of this FLOSS Exception. If you create or distribute a work\n which is a Derivative Work of both the Program and any other work licensed\n under the GPL, then this FLOSS Exception is not available for that work;\n thus, you must remove the FLOSS Exception notice from that work and comply\n with the GPL in all respects, including by retaining all GPL notices. You\n may choose to redistribute a copy of the Program exclusively under the\n terms of the GPL by removing the FLOSS Exception notice from that copy of\n the Program, provided that the copy has never been modified by you or any\n third party.\n Appendix A. Qualified Libraries and Packages\n The following is a non-exhaustive list of libraries and packages which are\n covered by the FLOSS License Exception. Please note that this appendix is\n provided merely as an additional service to\n specific FLOSS projects wishing to simplify licensing information for their\n users. Compliance with one of the licenses noted under the \"FLOSS license\n list\" section remains a prerequisite.\n Package Name Qualifying License and Version\n Apache Portable Runtime (APR) Apache Software License 2.0", + "json": "mysql-floss-exception-2.0.json", + "yaml": "mysql-floss-exception-2.0.yml", + "html": "mysql-floss-exception-2.0.html", + "license": "mysql-floss-exception-2.0.LICENSE" + }, + { + "license_key": "mysql-linking-exception-2018", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-mysql-linking-exception-2018", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": " This program is also distributed with certain software (including\n but not limited to OpenSSL) that is licensed under separate terms,\n as designated in a particular file or component or in included license\n documentation. The authors of MySQL hereby grant you an additional\n permission to link the program and your derivative works with the\n separately licensed software that they have included with MySQL.", + "json": "mysql-linking-exception-2018.json", + "yaml": "mysql-linking-exception-2018.yml", + "html": "mysql-linking-exception-2018.html", + "license": "mysql-linking-exception-2018.LICENSE" + }, + { + "license_key": "naist-2003", + "category": "Permissive", + "spdx_license_key": "NAIST-2003", + "other_spdx_license_keys": [ + "LicenseRef-scancode-naist-2003" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Use, reproduction, and distribution of this software is permitted.\nAny copy of this software, whether in its original form or modified,\nmust include both the above copyright notice and the following\nparagraphs.\n\nNara Institute of Science and Technology (NAIST),\nthe copyright holders, disclaims all warranties with regard to this\nsoftware, including all implied warranties of merchantability and\nfitness, in no event shall NAIST be liable for\nany special, indirect or consequential damages or any damages\nwhatsoever resulting from loss of use, data or profits, whether in an\naction of contract, negligence or other tortuous action, arising out\nof or in connection with the use or performance of this software.\n\nA large portion of the dictionary entries\noriginate from ICOT Free Software. The following conditions for ICOT\nFree Software applies to the current dictionary as well.\n\nEach User may also freely distribute the Program, whether in its\noriginal form or modified, to any third party or parties, PROVIDED\nthat the provisions of Section 3 (\"NO WARRANTY\") will ALWAYS appear\non, or be attached to, the Program, which is distributed substantially\nin the same form as set out herein and that such intended\ndistribution, if actually made, will neither violate or otherwise\ncontravene any of the laws and regulations of the countries having\njurisdiction over the User or the intended distribution itself.\n\nNO WARRANTY\n\nThe program was produced on an experimental basis in the course of the\nresearch and development conducted during the project and is provided\nto users as so produced on an experimental basis. Accordingly, the\nprogram is provided without any warranty whatsoever, whether express,\nimplied, statutory or otherwise. The term \"warranty\" used herein\nincludes, but is not limited to, any warranty of the quality,\nperformance, merchantability and fitness for a particular purpose of\nthe program and the nonexistence of any infringement or violation of\nany right of any third party.\n\nEach user of the program will agree and understand, and be deemed to\nhave agreed and understood, that there is no warranty whatsoever for\nthe program and, accordingly, the entire risk arising from or\notherwise connected with the program is assumed by the user.\n\nTherefore, neither ICOT, the copyright holder, or any other\norganization that participated in or was otherwise related to the\ndevelopment of the program and their respective officials, directors,\nofficers and other employees shall be held liable for any and all\ndamages, including, without limitation, general, special, incidental\nand consequential damages, arising out of or otherwise in connection\nwith the use or inability to use the program or any product, material\nor result produced or otherwise obtained by using the program,\nregardless of whether they have been advised of, or otherwise had\nknowledge of, the possibility of such damages at any time during the\nproject or thereafter. Each user will be deemed to have agreed to the\nforegoing by his or her commencement of use of the program. The term\n\"use\" as used herein includes, but is not limited to, the use,\nmodification, copying and distribution of the program and the\nproduction of secondary products from the program.\n\nIn the case where the program, whether in its original form or\nmodified, was distributed or delivered to or received by a user from\nany person, organization or entity other than ICOT, unless it makes or\ngrants independently of ICOT any specific warranty to the user in\nwriting, such person, organization or entity, will also be exempted\nfrom and not be held liable to the user for any such damages as noted\nabove as far as the program is concerned.", + "json": "naist-2003.json", + "yaml": "naist-2003.yml", + "html": "naist-2003.html", + "license": "naist-2003.LICENSE" + }, + { + "license_key": "nant-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-nant-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "In addition, as a special exception, Gerry Shaw gives permission to link the \ncode of this program with the Microsoft .NET library (or with modified versions \nof Microsoft .NET library that use the same license as the Microsoft .NET \nlibrary), and distribute linked combinations including the two. You must obey \nthe GNU General Public License in all respects for all of the code used other \nthan the Microsoft .NET library. If you modify this file, you may extend this \nexception to your version of the file, but you are not obligated to do so. If \nyou do not wish to do so, delete this exception statement from your version.", + "json": "nant-exception-2.0-plus.json", + "yaml": "nant-exception-2.0-plus.yml", + "html": "nant-exception-2.0-plus.html", + "license": "nant-exception-2.0-plus.LICENSE" + }, + { + "license_key": "nasa-1.3", + "category": "Copyleft Limited", + "spdx_license_key": "NASA-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "NASA OPEN SOURCE AGREEMENT VERSION 1.3\n\nTHIS OPEN SOURCE AGREEMENT (\"AGREEMENT\") DEFINES THE RIGHTS OF USE, REPRODUCTION, DISTRIBUTION, MODIFICATION AND REDISTRIBUTION OF CERTAIN COMPUTER SOFTWARE ORIGINALLY RELEASED BY THE UNITED STATES GOVERNMENT AS REPRESENTED BY THE GOVERNMENT AGENCY LISTED BELOW (\"GOVERNMENT AGENCY\"). THE UNITED STATES GOVERNMENT, AS REPRESENTED BY GOVERNMENT AGENCY, IS AN INTENDED THIRD-PARTY BENEFICIARY OF ALL SUBSEQUENT DISTRIBUTIONS OR REDISTRIBUTIONS OF THE SUBJECT SOFTWARE. ANYONE WHO USES, REPRODUCES, DISTRIBUTES, MODIFIES OR REDISTRIBUTES THE SUBJECT SOFTWARE, AS DEFINED HEREIN, OR ANY PART THEREOF, IS, BY THAT ACTION, ACCEPTING IN FULL THE RESPONSIBILITIES AND OBLIGATIONS CONTAINED IN THIS AGREEMENT.\n\nGovernment Agency: \nGovernment Agency Original Software Designation: \nGovernment Agency Original Software Title: \nUser Registration Requested. Please Visit http:// \nGovernment Agency Point of Contact for Original Software: \n\n1. DEFINITIONS\n\nA. \"Contributor\" means Government Agency, as the developer of the Original Software, and any entity that makes a Modification.\nB. \"Covered Patents\" mean patent claims licensable by a Contributor that are necessarily infringed by the use or sale of its Modification alone or when combined with the Subject Software.\nC. \"Display\" means the showing of a copy of the Subject Software, either directly or by means of an image, or any other device.\nD. \"Distribution\" means conveyance or transfer of the Subject Software, regardless of means, to another.\nE. \"Larger Work\" means computer software that combines Subject Software, or portions thereof, with software separate from the Subject Software that is not governed by the terms of this Agreement.\nF. \"Modification\" means any alteration of, including addition to or deletion from, the substance or structure of either the Original Software or Subject Software, and includes derivative works, as that term is defined in the Copyright Statute, 17 USC 101. However, the act of including Subject Software as part of a Larger Work does not in and of itself constitute a Modification.\nG. \"Original Software\" means the computer software first released under this Agreement by Government Agency with Government Agency designation and entitled , including source code, object code and accompanying documentation, if any.\nH. \"Recipient\" means anyone who acquires the Subject Software under this Agreement, including all Contributors.\nI. \"Redistribution\" means Distribution of the Subject Software after a Modification has been made.\nJ. \"Reproduction\" means the making of a counterpart, image or copy of the Subject Software.\nK. \"Sale\" means the exchange of the Subject Software for money or equivalent value.\nL. \"Subject Software\" means the Original Software, Modifications, or any respective parts thereof.\nM. \"Use\" means the application or employment of the Subject Software for any purpose.\n\n2. GRANT OF RIGHTS\n\nA. Under Non-Patent Rights: Subject to the terms and conditions of this Agreement, each Contributor, with respect to its own contribution to the Subject Software, hereby grants to each Recipient a non-exclusive, world-wide, royalty-free license to engage in the following activities pertaining to the Subject Software:\n\n1. Use\n2. Distribution\n3. Reproduction\n4. Modification\n5. Redistribution\n6. Display\n\nB. Under Patent Rights: Subject to the terms and conditions of this Agreement, each Contributor, with respect to its own contribution to the Subject Software, hereby grants to each Recipient under Covered Patents a non-exclusive, world-wide, royalty-free license to engage in the following activities pertaining to the Subject Software: \n\n1. Use\n2. Distribution\n3. Reproduction\n4. Sale\n5. Offer for Sale\n\nC. The rights granted under Paragraph B. also apply to the combination of a Contributor's Modification and the Subject Software if, at the time the Modification is added by the Contributor, the addition of such Modification causes the combination to be covered by the Covered Patents. It does not apply to any other combinations that include a Modification.\n\nD. The rights granted in Paragraphs A. and B. allow the Recipient to sublicense those same rights. Such sublicense must be under the same terms and conditions of this Agreement.\n\n3. OBLIGATIONS OF RECIPIENT\n\nA. Distribution or Redistribution of the Subject Software must be made under this Agreement except for additions covered under paragraph 3H.\n\n1. Whenever a Recipient distributes or redistributes the Subject Software, a copy of this Agreement must be included with each copy of the Subject Software; and\n2. If Recipient distributes or redistributes the Subject Software in any form other than source code, Recipient must also make the source code freely available, and must provide with each copy of the Subject Software information on how to obtain the source code in a reasonable manner on or through a medium customarily used for software exchange.\n\nB. Each Recipient must ensure that the following copyright notice appears prominently in the Subject Software:\n\n[Government Agency will insert the applicable copyright notice in each agreement accompanying the initial distribution of original software and remove this bracketed language.]\n\n[The following copyright notice will be used if created by a contractor pursuant to Government Agency contract and rights obtained from creator by assignment. Government Agency will insert the year and its Agency designation and remove the bracketed language.] Copyright \" {YEAR} United States Government as represented by . All Rights Reserved.\n\n[The following copyright notice will be used if created by civil servants only. Government Agency will insert the year and its Agency designation and remove the bracketed language.] Copyright \" {YEAR} United States Government as represented by . No copyright is claimed in the United States under Title 17, U.S.Code. All Other Rights Reserved.\n\n\nC. Each Contributor must characterize its alteration of the Subject Software as a Modification and must identify itself as the originator of its Modification in a manner that reasonably allows subsequent Recipients to identify the originator of the Modification. In fulfillment of these requirements, Contributor must include a file (e.g., a change log file) that describes the alterations made and the date of the alterations, identifies Contributor as originator of the alterations, and consents to characterization of the alterations as a Modification, for example, by including a statement that the Modification is derived, directly or indirectly, from Original Software provided by Government Agency. Once consent is granted, it may not thereafter be revoked.\n\nD. A Contributor may add its own copyright notice to the Subject Software. Once a copyright notice has been added to the Subject Software, a Recipient may not remove it without the express permission of the Contributor who added the notice.\n\nE. A Recipient may not make any representation in the Subject Software or in any promotional, advertising or other material that may be construed as an endorsement by Government Agency or by any prior Recipient of any product or service provided by Recipient, or that may seek to obtain commercial advantage by the fact of Government Agency's or a prior Recipient's participation in this Agreement.\n\nF. In an effort to track usage and maintain accurate records of the Subject Software, each Recipient, upon receipt of the Subject Software, is requested to register with Government Agency by visiting the following website: . Recipient's name and personal information shall be used for statistical purposes only. Once a Recipient makes a Modification available, it is requested that the Recipient inform Government Agency at the web site provided above how to access the Modification.\n\n[Alternative paragraph for use when a web site for release and monitoring of subject software will not be supported by releasing Government Agency] In an effort to track usage and maintain accurate records of the Subject Software, each Recipient, upon receipt of the Subject Software, is requested to provide Government Agency, by e-mail to the Government Agency Point of Contact listed in clause 5.F., the following information: . Recipient's name and personal information shall be used for statistical purposes only. Once a Recipient makes a Modification available, it is requested that the Recipient inform Government Agency, by e-mail to the Government Agency Point of Contact listed in clause 5.F., how to access the Modification.\n\nG. Each Contributor represents that that its Modification is believed to be Contributor's original creation and does not violate any existing agreements, regulations, statutes or rules, and further that Contributor has sufficient rights to grant the rights conveyed by this Agreement.\n\nH. A Recipient may choose to offer, and to charge a fee for, warranty, support, indemnity and/or liability obligations to one or more other Recipients of the Subject Software. A Recipient may do so, however, only on its own behalf and not on behalf of Government Agency or any other Recipient. Such a Recipient must make it absolutely clear that any such warranty, support, indemnity and/or liability obligation is offered by that Recipient alone. Further, such Recipient agrees to indemnify Government Agency and every other Recipient for any liability incurred by them as a result of warranty, support, indemnity and/or liability offered by such Recipient.\n\nI. A Recipient may create a Larger Work by combining Subject Software with separate software not governed by the terms of this agreement and distribute the Larger Work as a single product. In such case, the Recipient must make sure Subject Software, or portions thereof, included in the Larger Work is subject to this Agreement.\n\n\nJ. Notwithstanding any provisions contained herein, Recipient is hereby put on notice that export of any goods or technical data from the United States may require some form of export license from the U.S. Government. Failure to obtain necessary export licenses may result in criminal liability under U.S. laws. Government Agency neither represents that a license shall not be required nor that, if required, it shall be issued. Nothing granted herein provides any such export license.\n\n4. DISCLAIMER OF WARRANTIES AND LIABILITIES; WAIVER AND INDEMNIFICATION\n\nA. No Warranty: THE SUBJECT SOFTWARE IS PROVIDED \"AS IS\" WITHOUT ANY WARRANTY OF ANY KIND, EITHER EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY THAT THE SUBJECT SOFTWARE WILL CONFORM TO SPECIFICATIONS, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR FREEDOM FROM INFRINGEMENT, ANY WARRANTY THAT THE SUBJECT SOFTWARE WILL BE ERROR FREE, OR ANY WARRANTY THAT DOCUMENTATION, IF PROVIDED, WILL CONFORM TO THE SUBJECT SOFTWARE. THIS AGREEMENT DOES NOT, IN ANY MANNER, CONSTITUTE AN ENDORSEMENT BY GOVERNMENT AGENCY OR ANY PRIOR RECIPIENT OF ANY RESULTS, RESULTING DESIGNS, HARDWARE, SOFTWARE PRODUCTS OR ANY OTHER APPLICATIONS RESULTING FROM USE OF THE SUBJECT SOFTWARE. FURTHER, GOVERNMENT AGENCY DISCLAIMS ALL WARRANTIES AND LIABILITIES REGARDING THIRD-PARTY SOFTWARE, IF PRESENT IN THE ORIGINAL SOFTWARE, AND DISTRIBUTES IT \"AS IS.\"\n\nB. Waiver and Indemnity: RECIPIENT AGREES TO WAIVE ANY AND ALL CLAIMS AGAINST THE UNITED STATES GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY PRIOR RECIPIENT. IF RECIPIENT'S USE OF THE SUBJECT SOFTWARE RESULTS IN ANY LIABILITIES, DEMANDS, DAMAGES, EXPENSES OR LOSSES ARISING FROM SUCH USE, INCLUDING ANY DAMAGES FROM PRODUCTS BASED ON, OR RESULTING FROM, RECIPIENT'S USE OF THE SUBJECT SOFTWARE, RECIPIENT SHALL INDEMNIFY AND HOLD HARMLESS THE UNITED STATES GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY PRIOR RECIPIENT, TO THE EXTENT PERMITTED BY LAW. RECIPIENT'S SOLE REMEDY FOR ANY SUCH MATTER SHALL BE THE IMMEDIATE, UNILATERAL TERMINATION OF THIS AGREEMENT.\n\n5. GENERAL TERMS\n\nA. Termination: This Agreement and the rights granted hereunder will terminate automatically if a Recipient fails to comply with these terms and conditions, and fails to cure such noncompliance within thirty (30) days of becoming aware of such noncompliance. Upon termination, a Recipient agrees to immediately cease use and distribution of the Subject Software. All sublicenses to the Subject Software properly granted by the breaching Recipient shall survive any such termination of this Agreement.\n\nB. Severability: If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement.\n\nC. Applicable Law: This Agreement shall be subject to United States federal law only for all purposes, including, but not limited to, determining the validity of this Agreement, the meaning of its provisions and the rights, obligations and remedies of the parties.\n\nD. Entire Understanding: This Agreement constitutes the entire understanding and agreement of the parties relating to release of the Subject Software and may not be superseded, modified or amended except by further written agreement duly executed by the parties. \n\n\nE. Binding Authority: By accepting and using the Subject Software under this Agreement, a Recipient affirms its authority to bind the Recipient to all terms and conditions of this Agreement and that that Recipient hereby agrees to all terms and conditions herein.\n\nF. Point of Contact: Any Recipient contact with Government Agency is to be directed to the designated representative as follows: .", + "json": "nasa-1.3.json", + "yaml": "nasa-1.3.yml", + "html": "nasa-1.3.html", + "license": "nasa-1.3.LICENSE" + }, + { + "license_key": "naughter", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-naughter", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Naughter Software License\n\nYou are allowed to include the source code in any product (commercial, shareware, freeware or otherwise) when your product is released in binary form.\n\nYou are allowed to modify the source code in any way you want except you cannot modify the copyright details at the top of each module.\n\nIf you want to distribute source code with your application, then you are only allowed to distribute versions released by the author. This is to maintain a single distribution point for the source code.\n\nThe executable file itself, namely \"ShelExec.exe\" can be freely redistributed by anyone.", + "json": "naughter.json", + "yaml": "naughter.yml", + "html": "naughter.html", + "license": "naughter.LICENSE" + }, + { + "license_key": "naumen", + "category": "Permissive", + "spdx_license_key": "Naumen", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "NAUMEN Public License\n\nThis software is Copyright (c) NAUMEN (tm) and Contributors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions in source code must retain the above copyright notice, this list of conditions, and the following disclaimer.\n\n2. 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.\n\n3. The name NAUMEN (tm) must not be used to endorse or promote products derived from this software without prior written permission from NAUMEN.\n\n4. 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 NAUMEN.\n\n5. If any files originating from NAUMEN or Contributors are modified, you must cause the modified files to carry prominent notices stating that you changed the files and the date of any change.\n\nDisclaimer:\n\n THIS SOFTWARE IS PROVIDED BY NAUMEN \"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 NAUMEN 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. \n\nThis software consists of contributions made by NAUMEN and Contributors. Specific attributions are listed in the accompanying credits file.", + "json": "naumen.json", + "yaml": "naumen.yml", + "html": "naumen.html", + "license": "naumen.LICENSE" + }, + { + "license_key": "nbpl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "NBPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Net Boolean Public License \n\nVersion 1, 22 August 1998 \nCopyright 1998, Net Boolean Incorporated, Redwood City, California, USA \nAll Rights Reserved. \n\nNote: \nThis license is derived from the \"Artistic License\" as distributed \nwith the Perl Programming Language. Its terms are different from \nthose of the \"Artistic License.\" \n\nPREAMBLE \n\nThe intent of this document is to state the conditions under which a \nPackage may be copied, such that the Copyright Holder maintains some \nsemblance of artistic control over the development of the package, \nwhile giving the users of the package the right to use and distribute \nthe Package in a more-or-less customary fashion, plus the right to make \nreasonable modifications. \n\nDefinitions: \n\n\"Package\" refers to the collection of files distributed by the \nCopyright Holder, and derivatives of that collection of files \ncreated through textual modification. \n\n\"Standard Version\" refers to such a Package if it has not been \nmodified, or has been modified in accordance with the wishes \nof the Copyright Holder. \n\n\"Copyright Holder\" is whoever is named in the copyright or \ncopyrights for the package. \n\n\"You\" is you, if you're thinking about copying or distributing \nthis Package. \n\n\"Reasonable copying fee\" is whatever you can justify on the \nbasis of media cost, duplication charges, time of people involved, \nand so on. (You will not be required to justify it to the \nCopyright Holder, but only to the computing community at large \nas a market that must bear the fee.) \n\n\"Freely Available\" means that no fee is charged for the item \nitself, though there may be fees involved in handling the item. \nIt also means that recipients of the item may redistribute it \nunder the same conditions they received it. \n\n1. You may make and give away verbatim copies of the source form of the \nStandard Version of this Package without restriction, provided that you \nduplicate all of the original copyright notices and associated disclaimers. \n\n2. You may apply bug fixes, portability fixes and other modifications \nderived from the Public Domain or from the Copyright Holder. A Package \nmodified in such a way shall still be considered the Standard Version. \n\n3. You may otherwise modify your copy of this Package in any way, provided \nthat you insert a prominent notice in each changed file stating how and \nwhen you changed that file, and provided that you do at least ONE of the \nfollowing: \n\na) place your modifications in the Public Domain or otherwise make them \nFreely Available, such as by posting said modifications to Usenet or \nan equivalent medium, or placing the modifications on a major archive \nsite such as uunet.uu.net, or by allowing the Copyright Holder to include \nyour modifications in the Standard Version of the Package. \n\nb) use the modified Package only within your corporation or organization. \n\nc) rename any non-standard executables so the names do not conflict \nwith standard executables, which must also be provided, and provide \na separate manual page for each non-standard executable that clearly \ndocuments how it differs from the Standard Version. \n\nd) make other distribution arrangements with the Copyright Holder. \n\n4. You may distribute the programs of this Package in object code or \nexecutable form, provided that you do at least ONE of the following: \n\na) distribute a Standard Version of the executables and library files, \ntogether with instructions (in the manual page or equivalent) on where \nto get the Standard Version. \n\nb) accompany the distribution with the machine-readable source of \nthe Package with your modifications. \n\nc) accompany any non-standard executables with their corresponding \nStandard Version executables, giving the non-standard executables \nnon-standard names, and clearly documenting the differences in manual \npages (or equivalent), together with instructions on where to get \nthe Standard Version. \n\nd) make other distribution arrangements with the Copyright Holder. \n\n5. You may charge a reasonable copying fee for any distribution of this \nPackage. You may charge any fee you choose for support of this Package. \nYou may not charge a fee for this Package itself. However, \nyou may distribute this Package in aggregate with other (possibly \ncommercial) programs as part of a larger (possibly commercial) software \ndistribution provided that you do not advertise this Package as a \nproduct of your own. \n\n6. The scripts and library files supplied as input to or produced as \noutput from the programs of this Package do not automatically fall \nunder the copyright of this Package, but belong to whomever generated \nthem, and may be sold commercially, and may be aggregated with this \nPackage. \n\n7. C subroutines supplied by you and linked into this Package in order \nto emulate subroutines and variables of the language defined by this \nPackage shall not be considered part of this Package, but are the \nequivalent of input as in Paragraph 6, provided these subroutines do \nnot change the language in any way that would cause it to fail the \nregression tests for the language. \n\n8. The name of the Copyright Holder may not be used to endorse or promote \nproducts derived from this software without specific prior written permission. \n\n9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR \nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED \nWARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \n\nThe End", + "json": "nbpl-1.0.json", + "yaml": "nbpl-1.0.yml", + "html": "nbpl-1.0.html", + "license": "nbpl-1.0.LICENSE" + }, + { + "license_key": "ncbi", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-ncbi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PUBLIC DOMAIN NOTICE\nNational Center for Biotechnology Information\n\nWith the exception of certain third-party files summarized below, this\nsoftware is a \"United States Government Work\" under the terms of the\nUnited States Copyright Act. It was written as part of the authors'\nofficial duties as United States Government employees and thus cannot\nbe copyrighted. This software is freely available to the public for\nuse. The National Library of Medicine and the U.S. Government have not\nplaced any restriction on its use or reproduction.\n\nAlthough all reasonable efforts have been taken to ensure the accuracy\nand reliability of the software and data, the NLM and the U.S.\nGovernment do not and cannot warrant the performance or results that\nmay be obtained by using this software or data. The NLM and the U.S.\nGovernment disclaim all warranties, express or implied, including\nwarranties of performance, merchantability or fitness for any\nparticular purpose.\n\nPlease cite the authors in any work or product based on this material.", + "json": "ncbi.json", + "yaml": "ncbi.yml", + "html": "ncbi.html", + "license": "ncbi.LICENSE" + }, + { + "license_key": "ncgl-uk-2.0", + "category": "Free Restricted", + "spdx_license_key": "NCGL-UK-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Non-Commercial Government Licence\nfor public sector information\n\nYou are encouraged to use and re-use the Information that is available under this licence freely and flexibly, with only a few conditions.\n\nUsing information under this licence\nUse of copyright and database right material expressly made available under this licence (the \u2018Information\u2019) indicates your acceptance of the terms and conditions below.\n\nThe Licensor grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information for Non-Commercial purposes only subject to the conditions below.\n\nThis licence does not affect your freedom under fair dealing or fair use or any other copyright or database right exceptions and limitations.\n\nYou are free to:\ncopy, publish, distribute and transmit the Information;\nadapt the Information;\nexploit the Information for Non-Commercial purposes for example, by combining it with other information in your own product or application.\n\nYou are not permitted to:\nexercise any of the rights granted to you by this licence in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation.\n\nYou must, where you do any of the above:\nacknowledge the source of the Information by including any attribution statement specified by the Information Provider(s) and, where possible, provide a link to this licence;\nIf the Information Provider does not provide a specific attribution statement, you must use the following:\n\nContains information licensed under the Non-Commercial Government Licence v2.0.\n\nIf you are using Information from several Information Providers and listing multiple attributions is not practical in your product or application, you may include a URI or hyperlink to a resource that contains the required attribution statements.\n\nensure that any onward licensing of the Information \u2013 for example when combined with other information \u2013 is for Non-Commercial purposes only.\n\nThese are important conditions of this licence and if you fail to comply with them or use the Information other than for Non-Commercial purposes the rights granted to you under this licence, or any similar licence granted by the Licensor, will end automatically.\n\nExemptions\nThis licence does not cover the use of:\n\npersonal data in the Information;\nInformation that has not been accessed by way of publication or disclosure under information access legislation (including the Freedom of Information Acts for the UK and Scotland) by or with the consent of the Information Provider;\ndepartmental or public sector organisation logos, crests, military insignia and the Royal Arms except where they form an integral part of a document or dataset;\nmilitary insignia\nthird party rights the Information Provider is not authorised to license;\nother intellectual property rights, including patents, trade marks, and design rights; and\nidentity documents such as the British Passport.\n\nNon-endorsement\nThis licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider and/or Licensor endorse you or your use of the Information.\n\nNo warranty\nThe Information is licensed \u2018as is\u2019 and the Information Provider excludes all representations, warranties, obligations and liabilities in relation to the Information to the maximum extent permitted by law.\n\nThe Information Provider is not liable for any errors or omissions in the Information and shall not be liable for any loss, injury or damage of any kind caused by its use. The Information Provider does not guarantee the continued supply of the Information.\n\nGoverning Law\nThis licence is governed by the laws of the jurisdiction in which the Information Provider has its principal place of business, unless otherwise specified by the Information Provider.\n\nDefinitions\nIn this licence the terms below have the following meanings:\n\n\u2018Information\u2019\nmeans information protected by copyright or by database right (for example, literary and artistic works, content, data and source code) offered for use under the terms of this licence.\n\n\u2018Information Provider\u2019\nmeans the person or organisation providing the Information under this licence.\n\n\u2018Licensor\u2019\nmeans any Information Provider which has the authority to offer Information under the terms of this licence or the Keeper of the Public Records, who has the authority to offer Information subject to Crown copyright and Crown database rights and Information subject to copyright and database right that has been assigned to or acquired by the Crown, under the terms of this licence.\n\n\u2018Non-Commercial purposes\u2019\nmeans not intended for or directed toward commercial advantage or private monetary compensation. For the purposes of this licence, \u2018private monetary compensation\u2019 does not include the exchange of the Information for other copyrighted works by means of digital file-sharing or otherwise provided there is no payment of any monetary compensation in connection with the exchange of the Information.\n\n\u2018Use\u2019\nas a verb, means doing any act which is restricted by copyright or database right, whether in the original medium or in any other medium, and includes without limitation distributing, copying, adapting, modifying as may be technically necessary to use it in a different mode or format.\n\n\u2018You\u2019\nmeans the natural or legal person, or body of persons corporate or incorporate, acquiring rights under this licence.", + "json": "ncgl-uk-2.0.json", + "yaml": "ncgl-uk-2.0.yml", + "html": "ncgl-uk-2.0.html", + "license": "ncgl-uk-2.0.LICENSE" + }, + { + "license_key": "nero-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-nero-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Licensor: Nero AG (\"Nero\") \nTHIS IS A LEGAL AGREEMENT BETWEEN YOU, THE \"END USER\", AND NERO AG, R\u00dcPPURRER STRASSE 1A, 76307 KARLSRUHE, GERMANY. \n\nCONCLUSION OF THE CONTRACT \nTHIS AGREEMENT IS EFFECTIVE \nBY OPENING THE SEALED PACKING OF NERO\u00b4S SOFTWARE ON THE \"EFFECTIVE DATE,\" YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, PROMPTLY RETURN THE SOFTWARE AND ALL THE ACCOMPANYING ITEMS (INCLUDING WRITTEN MATERIALS AND BINDERS OR OTHER CONTAINERS) TO THE PLACE YOU OBTAINED THEM FOR A FULL REFUND. \nOR \nBY INSTALLING OR USING THE DOWNLOADED SOFTWARE, YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS AGREEMENT BY MEANS OF CLICKING THE \"ACCEPT\" BUTTON DURING THE INSTALLATION OF THE SOFTWARE. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, REFRAIN FROM INSTALLING THE SOFTWARE OR PROMPTLY UNINSTALL AND DELETE THE SOFTWARE AND ALL THE ACCOMPANYING ITEMS (INCLUDING DOCUMENTATION OR MANUALS) IF THE TERMS OF THIS AGREEMENT COMPRISE AN OFFER BY NERO, THEN YOUR ACCEPTANCE IS EXPRESSLY LIMITED TO THE TERMS CONTAINED HEREIN. \n\nThe terms of your license agreement (\"Agreement\") for the Software described above depend on whether you obtained the Software by: \n(a) Purchase from a Nero OEM partner; or \n(b) Purchase from Nero or a Nero distributor; or \n(c) Downloading a free or trial version of the Software. \n(d) Participation in a Nero Beta program \nwhich can be distinguished as follows: \nIf the jewel box in which you received the Software includes the word \"OEM\" or \"Essentials\" on its cover (or on the disc itself), you have acquired a copy of the Software from a Nero OEM partner. \nThis also applies if you downloaded Software which only allows you to install under the condition that you need to connect a hardware device to your PC. \nIf the jewel box in which you received the Software has only Nero's label on it and does not include the word \"OEM\" or \"Essentials\" on its cover (or on the disc itself), you have acquired a copy of the Software from either Nero or a Nero distributor. \nIf the disc containing the software or the Software itself is labeled \"TRIAL\",\"DEMO\",\"FREE\", \"FREEMIUM\" ,\"LITE\" or similar terms and was downloaded free of charge via Nero\u2019s official website www.nero.com you have obtained a free or trial version of the Software. \nIf the disc containing the software or the Software itself is labeled \"BETA\", \"PRE RELEASE\" or similar you have obtained the Software via participation in a Nero Beta program. \nCERTAIN TERMS MAY ALSO VARY DEPENDING ON \n(e) THE AREA YOU USUALLY RESIDE AND OBTAINED THE SOFTWARE IN \n(f) If the Software was obtained via an offer labeled \"Family\", \"Family\" Pack or similar\n\nYOU MAY ALSO HAVE CONCLUDED ANOTHER AGREEMENT DIRECTLY WITH NERO THAT SUPPLEMENTS OR SUPERSEDES ALL OR PORTIONS OF THIS AGREEMENT \n\nA. LICENSE TERMS AND CONDITIONS APPLICABLE TO SOFTWARE ACQUIRED FROM OEM PARTNER \nI. Grant of license \nThis Agreement permits you to use one copy of the Software acquired with this license on any single computer (\"OEM License\"), provided the Software is in use on only one computer at any given time. If you have acquired a multiple license for the Software, then at any one time you may have in use up to as many copies of the Software as you have licenses. The Software is \"in use\" on a computer when it is loaded into the temporary memory or installed into the permanent memory (e.g. hard disk, CD ROM, or other storage device) of that computer, except that a copy installed on a network server for the sole purpose of distribution to other computers is not considered \"in use\". If the anticipated number of users of the Software might exceed the authorized number of applicable licenses, then you must have a reasonable mechanism or process in place to assure that the number of concurrent uses of the Software does not exceed the number of licenses. \nTHE OEM LICENSE GRANTED HEREIN IS ONLY VALID IF ACQUIRED AS A BUNDLE WITH CD/DVD-RECORDING HARDWARE. \n\n\nII. Copyright \nThe Software is owned by Nero or its licensors and is protected by copyright laws, international treaty provisions, and other national laws. You agree that you have no right, title or interest in the Software, except as set forth in Subsection I. If the Software is not copy protected you may either \n(a) make one copy of the Software solely for backup or archival purposes, or \n(b) transfer the Software to a single hard disk provided you keep the original solely for backup or archival purposes. \nProduct manual(s) or written materials accompanying the Software may not be copied. \n\n\nIII. Other restrictions \nYou may not rent or lease the Software, but you may permanently transfer your rights under this Agreement provided that: \n(a) you transfer all copies of the Software and all written materials; \n(b) the recipient agrees to be bound by the terms of this Agreement; and \n(c) you remove any and all copies of the Software from your computer and cease any further use of the Software. \nAny transfer must include the most recent update and all prior versions. You may not copy the Software except as expressly set forth above. You may not reverse engineer, decompile or disassemble the Software unless this right is specifically granted to you by applicable law to decompile only to achieve interoperability with other Software. You are not allowed to post or otherwise make the Software available on the World Wide Web. If you did not acquire the Software in its original packaging and you are not a transfer recipient under this subsection, you are not licensed to use the Software. \nUpdates and Upgrades: You will have the opportunity to maintain the Software by means of Updates and Upgrades. An \"Update\" is a new release of the existing Software and is provided to You free of charge by Nero. An \"Upgrade\" is a major functional enhancement to the Software that You can purchase via the Nero website (www.nero.com). Should you decide to install an Update, the provisions of this Agreement will apply to such Update. Should you purchase an Upgrade, your rights to install and use the Software will be limited to either the originally purchased version of the Software or the Upgrade, but not both, in accordance with the provisions of this Agreement. For the avoidance of doubt, this Agreement permits you to install and use only one version (either the original version or the Upgrade) of the Software at any one time and you agree not to use, transfer or permit any third party to use the version that you have not installed. \n\n\nIV. Warranties \nTHE LIMITED WARRANTY SET FORTH IN THIS SECTION PROVIDES YOU WITH SPECIFIC LEGAL RIGHTS. YOU MAY HAVE ADDITIONAL RIGHTS BY LAW WHICH VARY FROM JURISDICTION TO JURISDICTION. NERO DOES EXPLICITLY NOT INTEND TO LIMIT YOUR WARRANTY RIGHTS TO AN EXTENT NOT PERMITTED BY LAW. PLEASE SEE SECTION E. \"LICENSE TERMS AND CONDITIONS APPLICABLE TO CERTAIN JURISDICTIONS\" FOR PROVISIONS THAT APPLY TO SPECIFIC JURISDICTIONS. \nNERO MAKES NO WARRANTIES TO YOU IN CONNECTION WITH THIS OEM LICENSE, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. The party from whom you purchased the product with which this Software has been bundled may have warranty and/or support obligations to you. \n\n\nV. Liability for consequential damages \nANY CLAIMS CONCERNING PRODUCT LIABILITY FACING NERO DUE TO REGULATION 85/374/EEC WILL BE GRANTED AND ARE NOT SUBJECT OF THIS AGREEMENT. \nYOU MAY HAVE ADDITIONAL RIGHTS BY LAW WHICH VARY FROM JURISDICTION TO JURISDICTION. NERO DOES EXPLICITLY NOT INTEND TO LIMIT YOUR LIABILITY RIGHTS TO AN EXTENT NOT PERMITTED BY LAW. PLEASE SEE SECTION E. \"LICENSE TERMS AND CONDITIONS APPLICABLE TO CERTAIN JURISDICTIONS\" FOR PROVISIONS THAT APPLY TO SPECIFIC JURISDICTIONS. \nIn no event shall Nero or its licensors be liable for any other damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other pecuniary loss) arising out of the use of or inability to use the Software, even if Nero has been advised of the possibility of such damages. You are required to take reasonable measures to avoid, damages, especially to make backup copies of the software and any valuable data stored on your PC. Nero OEM Partners are liable for those damages concerning software purchased from OEM. \n\n\nVI. Reservation of proprietary rights \nAll proprietary rights on delivered Software are reserved to Nero unless all claims against the End User are paid off or the cheque is cashed in. If reservation of proprietary rights is performed by Nero, the End User is no longer entitled to use the Software furthermore. All copies made of Nero\u00b4s Software have to be deleted completely and ultimately by the End User. \n\n\nVII. Duration of the agreement \nThe agreement is concluded for an undefined period of time. By violating the provisions about copyright and other restrictions according to II. and III. the End User is no longer entitled to use Nero\u00b4s Software and its accompanying items. In this case End User is obligated to resend original discs and all copies of data carriers and to erase completely and ultimately all data from End User\u00b4s computer established by means of Nero\u00b4s Software. The observance of this agreement is conditional for the legal use of the Software and its accompanying items. In case of violation of any obligation stipulated in this agreement by the End User, Nero is entitled to terminate this agreement extraordinarily and immediately. \n\n\nVIII. Safeguard measures \nEnd User will keep the Software in safe custody and will indicate his members of household to follow the obligations stipulated in this agreement. End User will follow all relevant legal provisions, especially the laws on intellectual property and copyright. \n\n\nIX. Disclaimer \nTHE SOFTWARE IS DESIGNED TO ASSIST YOU IN REPRODUCING MATERIAL IN WHICH YOU OWN THE COPYRIGHT OR HAVE OBTAINED PERMISSION TO COPY FROM THE COPYRIGHT OWNER. UNLESS YOU OWN THE COPYRIGHT OR HAVE PERMISSION TO COPY FROM THE COPYRIGHT OWNER, YOU MAY BE VIOLATING COPYRIGHT LAW AND BE SUBJECT TO PAYMENT OF DAMAGES AND OTHER REMEDIES. IF YOU ARE UNCERTAIN ABOUT YOUR RIGHTS, YOU SHOULD CONTACT YOUR LEGAL ADVISOR. YOU ASSUME FULL RESPONSIBILITY FOR THE LEGAL AND RESPONSIBLE USE OF THE SOFTWARE. \n\n\nX. U.S. Government Restricted Rights \nAny use of the Nero Software by the U.S. Government is conditioned upon the Government agreeing that the Software is subject to Restricted Rights as provided under the provisions set forth in subdivision (c)(1)(ii) of Clause 252.227-7013 of the Defense Federal Acquisition Regulations Supplement, or the similar acquisition regulations of other applicable U.S. Government organizations. The Contractor/Manufacturer is Nero AG, R\u00fcppurrer Strasse 1a, 76137, Karlsruhe, Germany. \n\n\n\nXI. Web Search Feature \nNero has integrated in some of Nero' software applications a feature that enables you to enter a search request through the Software which will provide you with search results from a variety of sources, including the World Wide Web (the \"Web Search Feature\"). Nero and its affiliates do not and cannot guarantee the continuous operation of this Web Search Feature. Nero reserves the right to change the functionality of this feature or to cease supporting or integrating such feature into the Software without further notice to you. \nYou acknowledge and agree that Nero and its affiliates shall not be liable for any delays, failures or outages relating to or arising out of use of the Web Search Feature. For additional information concerning the Web Search Feature, please visit www.nero.com. \n\n\nXII. Hosting Services \nNero has integrated a function into some of the Nero software applications which supports the upload, download, as well as the viewing of videos, photos, or music on \"hosting services\" (e.g. My Nero, YouTube, My Space, Flickr, or ccMixter). Nero, its affiliated companies and service providers do not provide any guarantee for the uninterrupted service of this function. Nero reserves the right to change the functionality or to cease the support or the integration of this function in the software at any time without further notice. You hereby confirm that Nero and its affiliated companies do not assume any accountability for delays, errors, or failures which concern this function or which arise as a result of using the function. \n\n\nXIII. Autobackup Function \nSome Nero applications have an autobackup function included that is hosted by a third party and is subject to separate terms and conditions. Nero, its affiliated companies and service providers do not provide any guarantee for the uninterrupted service of this function. Nero reserves the right to change the functionality or to cease the support or the integration of this function in the software at any time without further notice. You hereby confirm that Nero and its affiliated companies do not assume any accountability for delays, errors, or failures which concern this function or which arise as a result of using the function. \n\n\nXIV. Gracenote \u00ae music recognition service \nSome Nero software applications have the Gracenote \u00ae music recognition service included as a demo version, others as a full version. The complete Gracenote \u00ae music recognition service can be obtained by purchasing the Gracenote plug-in. Nero, its affiliated companies and service providers do not provide any guarantee for the uninterrupted service of this function. Nero reserves the right to change the functionality or to cease the support or the integration of this function in the software at any time without further notice. You hereby confirm that Nero and its affiliated companies do not assume any accountability for delays, errors, or failures which concern this function or which arise as a result of using the function. \n\n\nXV. Patent Activation \nSome applications within Nero require third-party technologies, some of which are available in this edition as limited (demo) versions. Online activation is available to acquire unlimited access to these technologies. This will help ensure full functionality of the Software. Internet connection or fax equipment is required for this activation. \nNero will transmit and process only the data that is necessary for activating the third-party technologies. \nThe Software will not send any such data without your prior consent. \nOther than the Internet protocol address that may be considered personally identifiable information in some jurisdictions no personally identifiable information is provided to Nero. \nYou won\u2019t need to provide your name or other personal information during the activation process. \nFor further information please see our privacy statement available on www.nero.com. \n\n\nB. LICENSE TERMS AND CONDITIONS APPLICABLE TO SOFTWARE ACQUIRED FROM NERO OR A NERO DISTRIBUTOR \nThe license terms and conditions applicable to Software purchased from Nero or a Nero Distributor are exactly the same as set forth in Section A above, except that Subsection I (Grant of license) and Subsection IV (Warranties) shall read as follows: \n\n\nI. Grant of license \nThis Agreement permits you to use one copy of the Software acquired with this license on any single computer, provided the Software is in use on only one computer at any given time. If you have acquired a multiple license for the Software, then at any one time you may have in use up to as many copies of the Software as you have licenses. The Software is \"in use\" on a computer when it is loaded into the temporary memory or installed into the permanent memory (e.g. hard disk, CD ROM, or other storage device) of that computer, except that a copy installed on a network server for the sole purpose of distribution to other computers is not considered \"in use\". If the anticipated number of users of the Software might exceed the authorized number of applicable licenses, then you must have a reasonable mechanism or process in place to assure that the number of concurrent uses of the Software does not exceed the number of licenses. \n\n\nII. Warranties \nTHE LIMITED WARRANTY SET FORTH IN THIS SECTION PROVIDES YOU WITH SPECIFIC LEGAL RIGHTS. YOU MAY HAVE ADDITIONAL RIGHTS BY LAW WHICH VARY FROM JURISDICTION TO JURISDICTION. NERO DOES EXPLICITLY NOT INTEND TO LIMIT YOUR WARRANTY RIGHTS TO AN EXTENT NOT PERMITTED BY LAW. PLEASE SEE SECTION E. \"LICENSE TERMS AND CONDITIONS APPLICABLE TO CERTAIN JURISDICTIONS\" \" FOR PROVISIONS THAT APPLY TO SPECIFIC JURISDICTIONS. \nNero warrants that for a period of ninety (90) days from the date of receipt, the Software will perform substantially in accordance with the accompanying documentation. Any implied warranties on the Software are limited to 90 days or the shortest period permitted by applicable law, whichever is greater. Nero\u2019s entire liability and your exclusive remedy for a breach of this warranty shall be, at Nero\u2019s sole option, either (a) return of the price paid or (b) repair or replacement of the Software that does not meet Nero\u2019s limited warranty and that is returned to Nero with a copy of your receipt. If failure of the Software is the result of accident, abuse, or misapplication, this limited warranty shall be void. Any replacement Software will be warranted for the remainder of the original warranty period or 30 days, whichever is longer. NERO MAKES NO OTHER WARRANTIES TO YOU IN CONNECTION WITH THIS LICENSE, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \n\n\nIII. Liability for consequential damages \nANY CLAIMS CONCERNING PRODUCT LIABILITY FACING NERO DUE TO REGULATION 85/374/EEC WILL BE GRANTED AND ARE NOT SUBJECT OF THIS AGREEMENT. \nYOU MAY HAVE ADDITIONAL RIGHTS BY LAW WHICH VARY FROM JURISDICTION TO JURISDICTION. NERO DOES EXPLICITLY NOT INTEND TO LIMIT YOUR LIABILITY RIGHTS TO AN EXTENT NOT PERMITTED BY LAW. PLEASE SEE SECTION E. \"LICENSE TERMS AND CONDITIONS APPLICABLE TO CERTAIN JURISDICTIONS\" FOR PROVISIONS THAT APPLY TO SPECIFIC JURISDICTIONS. \nIn no event shall Nero or its licensors be liable for any other damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other pecuniary loss) arising out of the use of or inability to use the Software, even if Nero has been advised of the possibility of such damages. You are required to take reasonable measures to avoid, damages, especially to make backup copies of the software and any valuable data stored on your PC. \n\n\nC. LICENSE TERMS AND CONDITIONS APPLICABLE TO DOWNLOADED FREE SOFTWARE PRODUCTS AND/OR TRIAL (DEMO) VERSIONS \nThe license terms and conditions applicable to downloaded free Software products and/or trial (demo) Versions are exactly the same as set forth in Section A above, except that Subsection I (Grant of license) and Subsection IV (Warranties) and Subsection V (Liability for consequential damages) shall read as follows and Subsections XV (Commercial use) and XVI (Distribution of free versions) shall be added: \n\n\nI. Grant of license \nThis Agreement permits you to use one copy of the Software acquired with this license on any single computer, provided the Software is in use on only one computer at any given time. For the avoidance of doubt, downloading multiple Copies of the Software does not imply an extension of the license beyond usage on one single computer. \nThe Software is \"in use\" on a computer when it is loaded into the temporary memory or installed into the permanent memory (e.g. hard disk, CD ROM, or other storage device) of that computer. If the anticipated number of users of the Software might exceed the authorized number of licenses, then you must have a reasonable mechanism or process in place to assure that the number of concurrent uses of the Software does not exceed the number of licenses. UNDER NO CONDITIONS MAY A FREE DOWNLOAD BE DISTRIBUTED WITHOUT THE PRIOR WRITTEN PERMISSION OF NERO. TO REQUEST SUCH PERMISSION EMAIL: PRESS@NERO.COM. \n\n\nII. Warranties \n(a) The user is aware that it is not possible to create software programs with zero defects. \n(b) NERO MAKES NO WARRANTIES TO YOU IN CONNECTION WITH THIS FREE/TRIAL LICENSE, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE EXCEPT THOSE WARRANTIES INDISPENSABLE BY LAW. \n\n\nIII. Liability for consequential damages \nANY CLAIMS CONCERNING PRODUCT LIABILITY FACING NERO DUE TO REGULATION 85/374/EEC WILL BE GRANTED AND ARE NOT SUBJECT OF THIS AGREEMENT. \nNero is liable for damages due to lack of property, especially for violating third party copyrights. Nero does not accept liability for any offences against this agreement caused by negligence, except from offences that caused physical injury. \n\n\nIV. Commercial use \nFree and trial (demo) versions of the Software are offered solely for personal, non-commercial use. Any distribution, purchase, sale delivery or utilization in combination with any product or service to a third party or other commercial or business purposes is expressly prohibited unless such right is specifically explicitly granted by Nero in writing. \n\n\nV. Distribution \nThis license does not grant you the right to sublicense or distribute the Software in any form if not expressly granted by Nero in writing. \n\n\nD. LICENSE TERMS AND CONDITIONS APPLICABLE TO SOFTWARE PROVIDED WITHIN A NERO BETA PROGRAM \nTHE LICENSE TERMS AND CONDITIONS APPLICABLE TO SOFTWARE PROVIDED WITHIN A NERO BETA PROGRAM ARE EXACTLY THE SAME AS SET FORTH IN SECTION A ABOVE, EXCEPT THAT IF THIS SOFTWARE IS DISTRIBUTED AS PART OF A NERO BETA PROGRAM THEN THE TERMS OF THE NERO BETA PARTICIPANT AGREEMENT, WHETHER OR NOT SIGNED BY BETA PARTICIPANT, WILL OVERRIDE ANY CONFLICTING TERMS IN THIS END USER LICENSE AGREEMENT. \nFOR AVOIDANCE OF DOUBT IT IS EXPRESSLY STATED THAT USE OF ANY BETA SOFTWARE IS AT YOUR OWN RISK. \nIF YOU HAVE ANY QUESTIONS ABOUT WHETHER YOUR USE OF THE SOFTWARE IS SUBJECT TO THE TERMS OF THE NERO BETA PARTICIPANT AGREEMENT THEN PLEASE CHECK WITH THE PARTY THROUGH WHOM THE SOFTWARE WAS OBTAINED \n\n\nE. LICENSE TERMS AND CONDITIONS APPLICABLE TO CERTAIN JURISDICTIONS \nTHIS SECTION SETS FORTH SPECIFIC PROVISIONS APPLICABLE TO CERTAIN JURISDICTIONS. \nIF ANY PROVISION IN THIS SECTION IS IN CONFLICT WITH ANY OTHER TERM OR CONDITION IN THIS AGREEMENT, THE REGULATIONS AS SET FORTH IN THIS SECTION SHALL APPLY. \nTHIS SHALL NOT APPLY IN CASE OF CONFLICTS WITH SECTIONS C OR D OF THIS AGREEMENT \n\n\nI. Provisions applicable in the European Union \nIf you are a consumer residing in a country that is part of the European union (EU) and obtained the Software in such country, the license terms and conditions applicable to your jurisdiction are exactly the same as set forth in the applicable Section A or B above, except that Sections A.IV. or B.II. (\"Warranties\") shall read as follows: \n\n\nII. Warranties \n(a) Defects in the Software supplied including the manuals and other documentation shall be corrected by Nero within the warranty period of two years from delivery following appropriate notification by the user. This shall take the form of rectification of defects or replacement delivery at the user's choice. \n(b) Should Nero not be prepared or able to effect this rectification or replacement delivery, or should this take longer than a suitable deadline set by the user or fail for other reasons, the user shall be entitled to withdraw from the Contract or to demand that the sale be canceled or the purchased price reduced. Failure to rectify the defects or effect replacement delivery shall only be assumed if Nero has been afforded ample opportunity to effect the rectification or replacement delivery without the desired success being achieved, if the rectification or replacement delivery is not possible or if it is refused or unacceptably delayed by Nero, or if the rectification of defects has already been performed unsuccessfully twice. The right of the user to demand compensation under \u00a7 437 of the German Civil Code remains unaffected. \n(c) The user is aware that it is not possible to create software programs with zero defects. Nero shall only warrant against software defects that significantly reduce the Software's value or suitability for use as stipulated in the contract. \n(d) It is the responsibility of the user to determine the destination for use of the software and to select the suitable hardware/computer types. Nero shall not be liable for this. \n(e) Unless otherwise specified in section \"Liability for consequential damages\", Nero shall only be liable for damage to the Software supplied itself; in particular Nero shall accept no liability for loss of data or other indirect losses. \nIf failure of the Software is the result of accident, abuse, or misapplication, this warranty shall be void. Any replacement Software will be warranted for the remainder of the original warranty. NERO MAKES NO WARRANTIES TO YOU IN CONNECTION WITH IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \n\n\nIII. Provisions applicable in Germany and Austria \nIf you are a consumer residing in either Germany or Austria and obtained the Software in such country, the license terms and conditions applicable to your jurisdiction are exactly the same as set forth in the applicable Section A . or B . above, except that Sections A.V. or B.III (\"Liability for consequential damages\") shall read as follows: \n\n\nIV. Liability for consequential damages \nNero will only be liable up to the amount of damages as typically foreseeable at the time of entering into the agreement in respect of damages caused by a slightly negligent breach of a material contractual obligation and will not be liable for damages caused by a slightly negligent breach of a non-material contractual obligation while any of the above limitations will not apply to any statutory liability such as liability under the German Product Liability Act (\"Produkthaftungsgesetz\") or liability for culpably caused personal injuries. \n\n\nF. LICENSE TERMS AND CONDITIONS APPLICABLE TO SOFTWARE PROVIDED WITHIN A NERO FAMILY PACK \nThe license terms and conditions applicable to Software products obtained as part of a Nero Family Pack are exactly the same as set forth in Section A above, except that Subsection I (\"Grant of license\") shall read as follows and Subsections II. (\"Commercial use\") and III. (\"Restrictions of Family Pack Licenses\") shall be added:\n\nI. Grant of license\n\nThis agreement permits you to use one copy of the software acquired with this license on any single computer in your household , provided the software is in use on only one computer at any given time. If you have acquired a multiple license for the software, then at any one time you may have in use up to as many copies of the software in your household as you have licenses. \nThe software is \"in use\" on a computer when it is loaded into the temporary memory or installed into the permanent memory (e.g. Hard disk, cd rom, or other storage device) of that computer. If the anticipated number of users of the software might exceed the authorized number of licenses, then you must have a reasonable mechanism or process in place to assure that the number of concurrent uses of the software does not exceed the number of licenses. \n\n\nII. Commercial use \nFamily Pack versions of the Software are offered solely for personal, non-commercial use. Any distribution, purchase, sale delivery or utilization in combination with any product or service to a third party or other commercial or business purposes is expressly prohibited. \n\n\nIII. Restrictions of Family Pack Licenses \nFamily Pack versions of the Software are only transferable in accordance with Section A. III if such transfer is done with all licenses obtained as part of a Nero Family Pack. Licenses obtained with a Nero Family Pack can not be tranferred seperately. \n\n\nG. TERMS AND CONDITIONS APPLICABLE TO ALL LICENSES \nI. Third Party Disclaimer and Limitations \n\n\n1. WM-DRM: \nWM-DRM: Content providers are using the Microsoft digital rights management technology for Windows Media (\"WM-DRM\") to protect the integrity of their content (\"Secure Content\") so that their intellectual property, including copyright, in such content is not misappropriated. Portions of this Software and other third party applications (\"WM-DRM Software\") use WM-DRM to transfer or play Secure Content. If the WM-DRM Software\u2019s security has been compromised, owners of Secure Content (\"Secure Content Owners\") may request that Microsoft revoke the WM-DRM Software\u2019s right to copy, display, transfer and/or play Secure Content. Revocation does not alter the WM-DRM Software\u2019s ability to play unprotected content. A list of revoked WM-DRM Software is sent to your computer whenever you download a license for Secure Content from the Internet. Microsoft may, in conjunction with such license, also download revocation lists onto your computer on behalf of Secure Content Owners. Secure Content Owners may also require you to upgrade some of the WM-DRM components distributed with this Software (\"WM-DRM Upgrades\") before accessing their content. When you attempt to play such content, WM-DRM Software built by Microsoft will notify you that a WM-DRM Upgrade is required and then ask for your consent before the WM-DRM Upgrade is downloaded. WM-DRM Software used by third parties may do the same. If you decline the upgrade, you will not be able to access content that requires the WM-DRM Upgrade; however, you will still be able to access unprotected content and Secure Content that does not require the upgrade. \n\n\n2. MPEG-2: \nIf the product you purchased was provided as \"MPEG-2 Royalty Product\" the following applies: \nMPEG-2 ROYALTY PRODUCT. ANY USE OF THIS PRODUCT OTHER THAN CONSUMER PERSONAL USE IN ANY MANNER THAT COMPLIES WITH THE MPEG-2 STANDARD FOR ENCODING VIDEO INFORMATION FOR PACKAGED MEDIA IS EXPRESSLY PROHIBITED WITHOUT A LICENSE UNDER APPLICABLE PATENTS IN THE MPEG-2 PATENT PORTFOLIO, WHICH LICENSE IS AVAILABLE FROM MPEG LA L.L.C., 250 STEELE STREET, SUITE 300, DENVER, COLORADO 80206. OTHER THIRD-PARTY LICENSES INCLUDED ONLY IF GRANTED IN WRITTEN. \nIf the product you purchased was not provided as \"MPEG-2 Royalty Product\" the following applies: \nMPEG-2 INTERMEDIATE PRODUCT. USE OF THIS PRODUCT IN ANY MANNER THAT COMPLIES WITH THE MPEG-2 STANDARD IS EXPRESSLY PROHIBITED WITHOUT A LICENSE UNDER APPLICABLE PATENTS IN THE MPEG-2 PATENT PORTFOLIO, WHICH LICENSE IS AVAILABLE FROM MPEG LA, L.L.C., 250 STEELE STREET, SUITE 300, DENVER, COLORADO 80206. OTHER THIRD-PARTY LICENSES INCLUDED ONLY IF GRANTED IN WRITTEN. \n\n\n3. MPEG-4: \nUse of this product in any manner that complies with the MPEG-4 Visual Standard is prohibited, except for use by a consumer engaging in personal and non-commercial activities. \n\n\n4. MP3 and mp3PRO: \nSupply of this product only conveys a license for private, non-commercial use and does not convey a license nor imply any right to use this product in any commercial (i.e. revenue-generating) real time broadcasting (terrestrial, satellite, cable and/or any other media), broadcasting / streaming via Internet, intranets and/or other networks or in other electronic content distribution systems, such as pay-audio or audio-on-demand applications. An independent license for such use is required. For details, please visit www.mp3licensing.com. \n\n\n5. Dolby: \nSupply of this implementation of Dolby Technology does not convey a license nor imply a right under any patent, or any other industrial or intellectual property right of Dolby Laboratories, to use this implementation in any finished end-user or ready-to-use final product. It is hereby notified that a license for such use is required from Dolby Laboratories. \nConfidential information \u2013 Limited distribution to authorized persons only. This Dolby Software is protected under U.S. copyright laws as an unpublished work. They are confidential and proprietary to Dolby Laboratories. Their reproduction or disclosure, in whole or in part, or the production of derivative works therefrom without the express permission of Dolby Laboratories is prohibited. Do not copy. Copyright \u00a9 1992-1999 Dolby Laboratories, Inc. All rights reserved \n\n\n6. aac: \nThe aac Plug-In is using the MP4 file format I/O library. This library is available under MPL from www.mpeg4ip.net. aacPlus developed by Coding Technologies (\"CT\"). www.codingtechnologies.com Trademarks of CT are the property of CT. \n\n\nII. Embedded Software \nYou acknowledge that the Software licensed hereunder contains third party components that are licensed pursuant to its own terms and conditions (\"Embedded Software\"), as specified below. A copy or location of the licenses associated with such Embedded Software is provided below. NOTWITHSTANDING ANYTHING ELSE TO THE CONTRARY IN THIS AGREEMENT, EMBEDDED 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 FOUNDATION 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.\" \n\n\n1. OpenSSL License: \nOpen SSL is copyright \u00a9 1998-2005 The OpenSSL Project. All rights reserved. Redistribution and use of Open SSL in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of Open SSL source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions of Open SSL 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 the Open SSL 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/)\". Open SSL TOOLKIT 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. \n\n\n2. PuTTY: \nNero BackItUp uses PuTTY to transfer data over SSH. PuTTY is copyright 1997-2005 Simon Tatham. Portions of PuTTY are copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus Kuhn, and CORE SDI S.A. Permission is hereby granted, free of charge, to any person obtaining a copy of PuTTY 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: PuTTY 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 SIMON TATHAM 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. \n\n\n3. AES: \nAES software used in Nero BackItUp is copyright \u00a9 2002, Dr Brian Gladman, Worcester, UK. All rights reserved. The free distribution and use of AES software in both source and binary form is allowed (with or without changes) provided that: 1. Distributions of the AES source code include the above copyright notice, this list of conditions and the following disclaimer; 2. Distributions in binary form include the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other associated materials; 3. The copyright holder's name is not used to endorse products built using the AES software without specific written permission. AES software is provided 'as is' with no explicit or implied warranties in respect of its properties, including, but not limited to, correctness and/or fitness for purpose. The AES source code can be fetched from http://fp.gladman.plus.com. \n\n\n4. 7zip: \nThis 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. \nThis 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. \nhttp://www.7-zip.org/license.txt \nIn order to comply with the terms and conditions of certain Embedded Software, you may download the source code of the 7zip library from http://www.nero.com/link.php?topic_id=7106. \n\n\n5. NeVP6DecLib: \nNeVP6DecLib is derived from FFmpeg sources. FFmpeg is a trademark of Fabrice Bellard (originator of the FFmpeg project - FFmpeg project, http://ffmpeg.mplayerhq.hu) \nNeVP6DecLib is licensed under the Lesser GNU Lesser General Public License. GNU Lesser General Public, Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA and you can distribute it and/or modify it under the terms of such license. \nIn order to comply with the terms and conditions of certain Embedded Software, you may download the source code of the NeVP6DecLib library from http://www.nero.com/link.php?topic_id=7107. \n\n\n6. Gracenote \u00ae music recognition service: \nThis application contains software from Gracenote, Inc. of Emeryville, California (\"Gracenote\"). The software from Gracenote (the \"Gracenote Client\") enables this application to do online disc identification and obtain music-related information, including name, artist, track, and title information (\"Gracenote Data\") from online servers (\"Gracenote Servers\") and to perform other functions. You may use Gracenote Data only by means of the intended End-User functions of this application software. \nYou agree that you will use Gracenote Data, the Gracenote Client, and Gracenote Servers for your own personal non-commercial use only. You agree not to assign, copy, transfer or transmit the Gracenote Client or any Gracenote Data to any third party. YOU AGREE NOT TO USE OR EXPLOIT GRACENOTE DATA, THE GRACENOTE CLIENT, OR GRACENOTE SERVERS, EXCEPT AS EXPRESSLY PERMITTED HEREIN. \nYou agree that your non-exclusive license to use the Gracenote Data, the Gracenote Client, and Gracenote Servers will terminate if you violate these restrictions. If your license terminates, you agree to cease any and all use of the Gracenote Data, the Gracenote Client, and Gracenote Servers. Gracenote reserves all rights in Gracenote Data, the Gracenote Client, and the Gracenote Servers, including all ownership rights. You agree that Gracenote, Inc. may enforce its rights under this Agreement against you directly in its own name. \nThe Gracenote Service uses a unique identifier to track queries for statistical purposes. The purpose of a randomly assigned numeric identifier is to allow the Gracenote service to count queries without knowing anything about who you are. For more information, see the web page for the Gracenote Privacy Policy for the Gracenote Service. \nBy using the software, you agree that the Gracenote software may submit a waveform signature to Gracenote. A waveform signature is a distillation of the sound-wave information in the music itself and helps the Gracenote service to identify artist and title information for digital music files. A waveform signature does not contain any information about you or your computer, and computing the waveform signature should have no noticeable effect on the performance of your computer. For more information, see the FAQ (Frequently Asked Questions) page, and the Privacy Policy for the Gracenote Service. \nThe Gracenote Client and each item of Gracenote Data are licensed to you \"AS IS.\" Gracenote makes no representations or warranties, express or implied, regarding the accuracy of any Gracenote Data from in the Gracenote Servers. Gracenote reserves the right to delete Data from the Gracenote Servers or to change Data categories for any cause that Gracenote deems sufficient. No warranty is made that the Gracenote Client or Gracenote Servers are error-free or that functioning of Gracenote Client or Gracenote Servers will be uninterrupted. Gracenote is not obligated to provide you with any new enhanced or additional Data types or categories that Gracenote may choose to provide in the future and is free to discontinue its online service at any time. \nGRACENOTE DISCLAIMS ALL WARRANTIES EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT. GRACENOTE DOES NOT WARRANT THE RESULTS THAT WILL BE OBTAINED BY YOUR USE OF THE GRACENOTE CLIENT OR ANY GRACENOTE CDDB SERVER. IN NO CASE WILL GRACENOTE BE LIABLE FOR ANY CONSEQUENTIAL OR INCIDENTAL DAMAGES OR FOR ANY LOST PROFITS OR LOST REVENUES. \nCD and music-related data from Gracenote, Inc., copyright \u00a9 2000-2008 Gracenote. Gracenote Software, copyright \u00a9 2000-2008 Gracenote. This product and service may practice one or more of the following U.S. Patents: #5,987,525; #6,061,680; #6,154,773, #6,161,132, #6,230,192, #6,230,207, #6,240,459, #6,330,593, and other patents issued or pending. Some services supplied under license from Open Globe, Inc. for U.S. Patent: #6,304,523 \nGracenote and CDDB are registered trademarks of Gracenote. The Gracenote logo and logotype, and the \"Powered by Gracenote\" logo are trademarks of Gracenote. For more information, please visit www.gracenote.com. \n\n\n7. Microsoft Redistributable Software Components: \nSome of the Software products that are object of this agreement may contain redistributable update packages of Microsoft Corporation. Those update packages are for example, but not limited to, Windows6.0-KB843524-ia64.msu, Windows6.0-KB843524-x64.msu, and Windows6.0-KB843524-x86.msu. The license granted to you hereunder is a non-exclusive, royalty-free, non-transferable, non-assignable, revocable, limited, fully paid-up license to use and reproduce the Redistributable Software Component solely for your personal and internal business operations. With installing those components to your system you agree that you own a validly licensed copy of the Licensed Product for which the Redistributable Software Component applies. All other provisions of this agreement also apply to Microsoft Redistributable Software Components. \nCopyright \u00a9 2008 Microsoft Corporation. All rights reserved. \n\n\n8. MD5: \nSome of the Software products that are object of this agreement may contain RSA Data Security, Inc. MD5 Message-Digest Algorithm cryptographic algorithm. \nLicense to copy and use this MD5 Message-Digest Algorithm cryptographic algorithm is granted provided that it is identified as the \"RSA Data Security, Inc. MD5 Message-Digest Algorithm\" in all material mentioning or referencing this software or this function. \nLicense is also granted to make and use derivative works provided that such works are identified as \"derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm\" in all material mentioning or referencing the derived work. \nRSA Data Security, Inc. makes no representations concerning either the merchantability of this MD5 Message-Digest Algorithm cryptographic algorithm or the suitability of it for any particular purpose. It is provided \"as is\" without express or implied warranty of any kind. \nCopyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All rights reserved.\n\n\n\nIII. Governing Law \n\nIf any dispute shall arise pursuant to any provision of this Agreement, the plaintiff must choose place of performance or residence of the defendant as place of jurisdiction. If any term or provision of this Agreement shall be declared invalid in arbitration or by a court of competent jurisdiction, such invalidity shall be limited solely to the specific term or provision invalidated, and the remainder of this Agreement shall remain in full force and effect, according to its terms. \nAny provision declared invalid shall be modified to the legal provisions. \nCopyright \u00a9 1996-2012 Nero AG and its licensors. All rights reserved. \nNero, Nero BackItUp, Nero Burn, Nero Digital, Nero Express, Nero MediaStreaming, Nero Recode, Nero RescueAgent, Nero SmartDetect, Nero Simply Enjoy, Nero SmoothPlay, Nero StartSmart, Nero Surround, Burn-At-Once, LayerMagic, Liquid Media, SecurDisc, the SecurDisc logo, Superresolution, UltraBuffer, Nero Burning ROM, Nero Kwik Blu-ray, Nero Kwik Media, Nero Kwik Burn, Nero Kwik Play, Nero Kwik DVD, Nero Kwik Photobook, Nero Kwik Faces, Nero Kwik Move it, Nero Kwik Sync , Nero Kwik Themes, Nero Video, Nero Video Express, Nero SoundTrax, Nero WaveEditor and Nero CoverDesigner are common law trademarks or registered trademarks of Nero AG. \nPortions of the Software utilize Microsoft Windows Media Technologies. Copyright \u00a9 1999-2002. Microsoft Corporation. All Rights Reserved. \nThis product contains portions of imaging code owned by Pegasus Software LLC, Tampa, FL. \nGracenote, CDDB, MusicID, MediaVOCS, the Gracenote logo and logotype, and the \"Powered by Gracenote\" logo are either registered trademarks or trademarks of Gracenote in the United States and/or other countries. \nManufactured under license from Dolby Laboratories. Dolby, Pro Logic, and the double-D symbol are registered trademarks of Dolby Laboratories, Inc. Confidential unpublished works. Copyright 2011 Dolby Laboratories. All rights reserved. \nManufactured under license under U.S. Patent Nos: 5,956,674; 5,974,380; 6,487,535 & other U.S. and worldwide patents issued & pending. DTS, the Symbol, & DTS and the Symbol together are registered trademarks & DTS Digital Surround, DTS 2.0+Digital Out and the DTS logos are trademarks of DTS, Inc. Product includes software. \u00a9 DTS, Inc. All Rights Reserved. \nAVCHD and AVCHD logo, AVCHD Lite and AVCHD Lite logo are trademarks of Panasonic Corporation and Sony Corporation. \nFacebook is a registered trademark of Facebook, Inc. \nYahoo! and Flickr are registered trademarks of Yahoo! Inc. \nMy Space is a trademark of MySpace, Inc., \nGoogle, Android and YouTube are trademarks of Google, Inc. \nApple, Apple TV, iTunes, iTunes Store, iPad, iPod, iPod touch, iPhone, Mac and QuickTime are trademarks of Apple Inc. registered in the U.S and other countries. \nBlu-ray Disc, Blu-ray, Blu-ray 3D, BD-Live, BONUSVIEW, BDXL, AVCREC and the logos are trademarks of the Blu-ray Disc Association. \nDVD Logo is a trademark of Format/Logo Licensing Corp. registered in the U.S., Japan and other countries. \nBluetooth is a trademark owned by Bluetooth SIG, Inc. \nThe USB logo is a trademark of Universal Serial Bus Implementers Corporation. \nActiveX, ActiveSync, Aero, Authenticode, Bing, DirectX, DirectShow, Internet Explorer, Microsoft, MSN, Outlook, Windows, Windows Mail, Windows Media, Windows Media Player, Windows Mobile, Windows.NET, Windows Server, Windows Vista, Windows XP, Windows 7, Xbox, Xbox 360, PowerPoint, Silverlight, the Silverlight logo, Visual C++, the Windows Vista start button, and the Windows logo are trademarks or registered trademarks of Microsoft Corporation in the United States and other countries. \nFaceVACS and Cognitec are either registered trademarks or trademarks of Cognitec Systems GmbH. \nDivX and DivX Certified are registered trademarks of DivX, Inc. \nDVB is a registered trademark of the DVB Project. \nNVIDIA, GeForce, ForceWare, and CUDA are trademarks or registered trademarks of NVIDIA. \nSony, Memory Stick, PlayStation, and PSP are trademarks or registered trademarks of Sony Corporation. \nHDV is a trademark of Sony Corporation and Victor Company of Japan, Limited (JVC). \n3GPP is a trademark of European Telecommunications Standards Institute (ETSI) \nAdobe, Acrobat, Reader, Premiere, AIR, and Flash are trademarks or registered trademarks of Adobe Systems, Incorporated. \nAMD Athlon, AMD Opteron, AMD Sempron, AMD Turion, ATI Catalyst, ATI Radeon, ATI, Remote Wonder, and TV Wonder are trademarks or registered trademarks of Advanced Micro Devices, Inc. \nLinux is a registered trademark of Linus Torvalds. \nCompactFlash is a registered trademark of SanDisk Corporation \nUPnP is a registered trademark of UPnP Implementers Corporation. \nAsk and Ask.com are registered trademarks of IAC Search & Media. \nIEEE is a registered trademark of The Institute of Electrical and Electronics Engineers, Inc. \nPhilips is a registered trademark of Koninklijke Philips Electronics.N.V. \nInstallShield is a registered trademark of Macrovision Corporation. \nUnicode is a registered trademark of Unicode, Inc. \nCheck Point is a registered trademark of Check Point Software Technologies Ltd. \nLabelflash is a trademark of Yamaha Corporation \nLightScribe is a registered trademark of the Hewlett-Packard Development Company, L.P. \nIntel, Intel Media SDK, Intel Core, Intel XScale and Pentium are trademarks or registered trademarks of Intel Corporation in the U.S. and/or other countries. \nMP3 SURROUND, MP3PRO and their logos are trademarks of Thomson S.A. \nThis product is furnished under U.S. and foreign patents owned and licensed by AT&T Corp. \nOther product and brand names may be trademarks of their respective owners and do not imply affiliation with, sponsorship, or endorsement by owners. \nwww.nero.com \n\nIf you have any questions concerning this Agreement contact us via legal@nero.com. \n\u00a9 2012 Nero AG. All rights reserved.", + "json": "nero-eula.json", + "yaml": "nero-eula.yml", + "html": "nero-eula.html", + "license": "nero-eula.LICENSE" + }, + { + "license_key": "net-snmp", + "category": "Permissive", + "spdx_license_key": "Net-SNMP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Net SNMP License\nhttp://net-snmp.sourceforge.net/about/license.html \n\nVarious copyrights apply to this package, listed in various separate parts \nbelow. Please make sure that you read all the parts. Up until 2001, the \nproject was based at UC Davis, and the first part covers all code written \nduring this time. From 2001 onwards, the project has been based at \nSourceForge, and Networks Associates Technology, Inc hold the copyright on \nbehalf of the wider Net-SNMP community, covering all derivative work done \nsince then. An additional copyright section has been added as Part 3 below \nalso under a BSD license for the work contributed by Cambridge Broadband Ltd. \nto the project since 2001.\n\nAn additional copyright section has been added as Part 4 below also under a \nBSD license for the work contributed by Sun Microsystems, Inc. to the project \nsince 2003. \n \nCode has been contributed to this project by many people over the years it \nhas been in development, and a full list of contributors can be found in the \nREADME file under the THANKS section. \n \n---- Part 1: CMU/UCD copyright notice: (BSD like) ----- \n \n \n Copyright 1989, 1991, 1992 by Carnegie Mellon University \n \n Derivative Work - 1996, 1998-2000 \nCopyright 1996, 1998-2000 The Regents of the University of California \n \n All Rights Reserved \n \nPermission to use, copy, modify and distribute this software and its \ndocumentation for any purpose and without fee is hereby granted, provided \nthat the above copyright notice appears in all copies and that both that \ncopyright notice and this permission notice appear in \nsupporting documentation, and that the name of CMU and The Regents of the \nUniversity of California not be used in advertising or publicity pertaining \nto distribution of the software without specific written permission. \n \nCMU AND THE REGENTS OF THE UNIVERSITY OF CALIFORNIA DISCLAIM ALL WARRANTIES \nWITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF \nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL CMU OR \nTHE REGENTS OF THE UNIVERSITY OF CALIFORNIA BE LIABLE FOR ANY SPECIAL, \nINDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING \nFROM THE LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, \nNEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE \nUSE OR PERFORMANCE OF THIS SOFTWARE. \n \nPart 2: Networks Associates Technology, Inc copyright notice (BSD) \n \nCopyright (c) 2001-2003, Networks Associates Technology, Inc \nAll rights reserved. \n \nRedistribution and use in source and binary forms, with or without \nmodification, are permitted provided that the following conditions are met: \n \nRedistributions of source code must retain the above copyright notice, \nthis list of conditions and the following disclaimer. \n \nRedistributions in binary form must reproduce the above copyright notice, \nthis list of conditions and the following disclaimer in the documentation \nand/or other materials provided with the distribution. \n \nNeither the name of the Networks Associates Technology, Inc nor the names of \nits contributors may be used to endorse or promote products derived from this \nsoftware without specific prior written permission. \n \nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' \nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE \nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE \nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF \nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS \nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN \nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE. \n \n---- Part 3: Cambridge Broadband Ltd. copyright notice (BSD) ----- \n \nPortions of this code are copyright (c) 2001-2003, Cambridge Broadband Ltd. \nAll rights reserved. \n \nRedistribution and use in source and binary forms, with or without \nmodification, are permitted provided that the following conditions are met: \n \nRedistributions of source code must retain the above copyright notice, his \nlist of conditions and the following disclaimer. \n \nRedistributions in binary form must reproduce the above copyright notice, \nthis list of conditions and the following disclaimer in the documentation \nand/or other materials provided with the distribution. \n \nThe name of Cambridge Broadband Ltd. may not be used to endorse or promote \nproducts derived from this software without specific prior written \npermission. \n \nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER ``AS IS'' AND ANY \nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR \nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE \nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF \nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR \nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, \nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE \nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN \nIF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \n \n---- Part 4: Sun Microsystems, Inc. copyright notice (BSD) ----- \n \nCopyright \u00a9 2003 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, \nCalifornia 95054, U.S.A. All rights reserved. \n \nUse is subject to license terms below. \n \nThis distribution may include materials developed by third parties. \n \nSun, Sun Microsystems, the Sun logo and Solaris are trademarks or registered \ntrademarks of Sun Microsystems, Inc. in the U.S. and other countries. \n \nRedistribution and use in source and binary forms, with or without \nmodification, are permitted provided that the following conditions are met: \n \nRedistributions of source code must retain the above copyright notice, this \nlist of conditions and the following disclaimer. \n \nRedistributions in binary form must reproduce the above copyright notice, \nthis list of conditions and the following disclaimer in the documentation \nand/or other materials provided with the distribution. \n \nNeither the name of the Sun Microsystems, Inc. nor the names of its \ncontributors may be used to endorse or promote products derived from this \nsoftware without specific prior written permission. \n \nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' \nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE \nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE \nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF \nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS \nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN \nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE. \n \n---- Part 5: Sparta, Inc copyright notice (BSD) ----- \n \nCopyright (c) 2003-2006, Sparta, Inc \nAll rights reserved. \n \nRedistribution and use in source and binary forms, with or without \nmodification, are permitted provided that the following conditions are met: \n \nRedistributions of source code must retain the above copyright notice, this \nlist of conditions and the following disclaimer. \n \nRedistributions in binary form must reproduce the above copyright notice, \nthis list of conditions and the following disclaimer in the documentation \nand/or other materials provided with the distribution. \n \nNeither the name of Sparta, Inc nor the names of its contributors may be \nused to endorse or promote products derived from this software without \nspecific prior written permission. \n \nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' \nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE \nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE \nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF \nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS \nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN \nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE. \n \n---- Part 6: Cisco/BUPTNIC copyright notice (BSD) ----- \n \nCopyright (c) 2004, Cisco, Inc and Information Network Center of Beijing \nUniversity of Posts and Telecommunications. \nAll rights reserved. \n \nRedistribution and use in source and binary forms, with or without \nmodification, are permitted provided that the following conditions are met: \n \nRedistributions of source code must retain the above copyright notice, this \nlist of conditions and the following disclaimer. \n \nRedistributions in binary form must reproduce the above copyright notice, \nthis list of conditions and the following disclaimer in the documentation \nand/or other materials provided with the distribution. \n \nNeither the name of Cisco, Inc, Beijing University of Posts and \nTelecommunications, nor the names of their contributors may be used to \nendorse or promote products derived from this software without specific prior \nwritten permission. \n \nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' \nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE \nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE \nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF \nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS \nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN \nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE. \n \n---- Part 7: Fabasoft R&D Software GmbH & Co KG copyright notice (BSD) ----- \n \nCopyright (c) Fabasoft R&D Software GmbH & Co KG, 2003 \noss@fabasoft.com \nAuthor: Bernhard Penz \n \nRedistribution and use in source and binary forms, with or without \nmodification, are permitted provided that the following conditions are met: \n \nRedistributions of source code must retain the above copyright notice, this \nlist of conditions and the following disclaimer. \n \nRedistributions in binary form must reproduce the above copyright notice, \nthis list of conditions and the following disclaimer in the documentation \nand/or other materials provided with the distribution. \n \nThe name of Fabasoft R&D Software GmbH & Co KG or any of its subsidiaries, \nbrand or product names may not be used to endorse or promote products derived \nfrom this software without specific prior written permission. \n \nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER ``AS IS'' AND ANY \nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR \nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE \nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF \nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR \nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, \nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE \nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN \nIF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "net-snmp.json", + "yaml": "net-snmp.yml", + "html": "net-snmp.html", + "license": "net-snmp.LICENSE" + }, + { + "license_key": "netapp-sdk-aug2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-netapp-sdk-aug2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "NETAPP MANAGEABILITY SDK LICENSE AGREEMENT\n\nThis NetApp Manageability SDK License Agreement (\u201cLicense\u201d) is entered into between you (as an individual and/or on behalf of the company by which you are employed) (\u201cYou\u201d, \u201cYour\u201d or \u201cLicensee\u201d) and NetApp, Inc., located at 1395 Crossman Avenue, Sunnyvale, California 94089 (\u201cNetApp\u201d), and provides the terms under which NetApp licenses the NetApp Manageability SDK (\u201cSDK\u201d) to You.\n\nIf You are accessing the SDK electronically from the NetApp Support Site (\"NSS\"), indicate your acceptance of these terms by selecting the \"Accept\" button. By accepting the terms of the License, You agree to be bound by the terms of the License, which includes any other applicable licenses provided with the SDK. If You do not agree to all of the terms, do not download the SDK. This License only applies to the SDK licensed by NetApp, Inc. or its affiliates (collectively, \"NetApp\") and expressly excludes any software that may be made available on the NSS by third parties.\n\u00a0\n1.\tSOFTWARE DEVELOPMENT KIT LICENSE GRANT.\u00a0The following license terms apply to the NetApp Manageability Software Development Kit. Subject to the terms and conditions of this License, NetApp grants You a license to:\n\u00a0\ni. Internally use the documentation which may include the \"Getting Started Guide,\" FAQs, API documentation, and trouble-shooting guidelines (collectively, the \"SDK Documentation\") solely for the purpose of researching, designing, developing and testing a software application product (the \"Licensee Application)\" for use with NetApp products;\n\nii. Use, reproduce and distribute the language libraries in object code form for those languages where such use, reproduction and distribution is possible in object code form and in source code form only for those languages where such use, reproduction and distribution in object code form is not possible, such as scripting languages, and only as incorporated into the Licensee Application; provided, however, that You (A) do not modify the language libraries; (B) reproduce and include the copyright notice that appears in the language libraries as provided by NetApp, and (C) distribute the Licensee Application incorporating the language libraries pursuant to terms no less restrictive than those set forth herein; and\n\niii. Use, reproduce, modify and create derivatives of the sample code which may include utilities (the \"Sample Derivatives\") and reproduce and distribute the Sample Derivatives in object code form as incorporated in the Licensee Application; provided, however, that You (A) reproduce and include the copyright notice that appears in the sample code as provided by NetApp, and (B) distribute the Licensee Application incorporating the Sample Derivatives pursuant to terms no less restrictive than those set forth herein. You will promptly disclose to NetApp all Sample Derivatives made by or created for You. NetApp will not provide technical support, phone support, or updates to You for the sample code licensed under this License. If NetApp, at its sole option, supplies updates to You, the updates will be considered part of the sample code, and subject to the terms of this License.\n\u00a0\n1.1 You shall not combine the language libraries or the Sample Derivatives into a Licensee Application such that the language libraries or Sample Derivatives would be licensed under a license that requires the language libraries or Sample Derivatives to be (a) disclosed or distributed in source code form, (b) licensed for the purpose of making derivative works, or (c) redistributable at no charge.\n\u00a0\n1.2\u00a0Third Party Software.\u00a0Notwithstanding other statements in this License, the SDK may include third party software including free, copyleft and open source software components (collectively referred to as \"Third Party Software\") that are distributed in compliance with the particular licensing terms and conditions attributable to the Third Party Software. NetApp provides the Third Party Software to you \"AS IS\" without any warranties or indemnities of any kind. Copyright notices and licensing terms and conditions applicable to the Third Party Software are available for review with the SDK Documentation at\u00a0https://mysupport.netapp.com/documentation/productlibrary/index.html?productID=60427, and are included in a NOTICES file included within the downloaded files.\u2028\u00a0\n\n2. \tSNAPDIFF API.\u00a0This License does not include a license for the NetApp SnapDiff APIs and accompanying API documentation (collectively, \"SnapDiff\"). If You require a license to SnapDiff, please contact your NetApp representative\n\n3.\tRESTRICTIONS.\u00a0NetApp shall retain all right, title and interest in and to the SDK and SDK Documentation, and all copies thereof (hereafter referred to collectively as the \"NetApp Software\"). Except as set forth in Section 1 above, Licensee shall not make any copies of the NetApp Software except as reasonably required for backup purposes. Licensee shall not, nor shall Licensee allow any third party to: (a) decompile, disassemble, decrypt, extract, or otherwise reverse engineer or attempt to reconstruct, or discover any source code or underlying ideas, algorithms, or file formats of, or used in, the NetApp Software by any means whatever; or (b) remove or conceal any product identification, copyright or other notices contained in or on the NetApp Software; (c) publish or provide any results of benchmark tests run on the NetApp Software to a third party without NetApp's prior written consent; or (d) modify the NetApp Software or cause it to be modified, incorporate it into or with other software, display, reproduce, publish, sell, offer for sale or create a derivative work of any part of the NetApp Software except as expressly permitted in this License. Any such modification of the NetApp Software will breach this License, and such derivative work is and shall be owned entirely by NetApp; You hereby assign and agree to assign to NetApp all right, title and interest in and to said derivative work. NetApp, and any relevant third parties, reserve the right to revise, including bug fixes and/or patches, upgrade or otherwise change or modify the NetApp Software (\"Upgrade\") at any time. Licensee shall implement each Upgrade as it is made generally available by NetApp and is prohibited and shall immediately cease use of any version of the NetApp Software not incorporating such Upgrade. The NetApp Software is protected by copyrights, one or more U.S. patents issued or pending, and other applicable laws. Licensee agrees to take all adequate steps to protect the NetApp Software from unauthorized disclosure or use.\n\u00a0\n4.\tCONFIDENTIALITY.\u2028\n4.1 You acknowledge that the NetApp Software and the terms of this License, the APIs, the API documentation, and the source code are proprietary and confidential information of NetApp (hereafter \"Confidential Information\"). You shall not make the Confidential Information available in any form to any person other than to Your employees or consultants with a need to know and who are under an obligation of confidentiality not to disclose such Confidential Information. You shall use the same degree of care to protect the confidentiality of such Confidential Information as You use to protect Your own confidential information but in no event shall such degree of care be less than a reasonable degree of care. Confidential Information shall not include any information that (a) You can prove was received by You without confidentiality obligations of any kind prior to the time of disclosure, provided You did not receive the information from any third party in violation of that party's confidentiality obligations, (b) is in the public domain at the time of disclosure, (c) enters the public domain after the time of disclosure through no fault of Yours, or (d) is independently developed by You.\n\u00a0\n5.\tTERMINATION OF LICENSE.\u00a0This License is effective until terminated. This License will terminate automatically if You breach any material provision of this License. Upon termination, Licensee shall immediately cease all use of the NetApp Software, de-install it, and return or destroy all copies of the NetApp Software and all portions thereof and the accompanying documentation and, where requested by NetApp, shall certify so in writing to NetApp. Termination is not an exclusive remedy and all other remedies at law or in equity will be available to NetApp whether or not the License is terminated. Sections 1.1, 1.2, 3, 4 through 13 will survive termination of this License.\n\u00a0\n6.\tWARRANTY DISCLAIMER.\u00a0THE NETAPP SOFTWARE IS PROVIDED BY NETAPP \"AS IS\" AND WITHOUT WARRANTY OF ANY KIND. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED. IN NO EVENT SHALL NETAPP BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, CONSEQUENTIAL OR OTHER DAMAGES. SOME JURISDICTIONS DO NOT ALLOW LIMITATIONS OF IMPLIED WARRANTIES; THESE LIMITATIONS MAY NOT APPLY.\n\u00a0\n7.\tLIMITATIONS OF LIABILITY & DAMAGES.\u00a0NETAPP SHALL NOT BE LIABLE FOR LOSS OR INTERRUPTION OF BUSINESS, LOSS OF REVENUE OR PROFITS, OR LOSS OR CORRUPTION OF DATA, HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY. SUCH THEORIES OF LIABILITY INCLUDE CONTRACT OR TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE) OR OTHERWISE, ARISING OUT OF OR IN CONNECTION WITH THE DOWNLOAD, INSTALLATION, USE, OPERATION, OR MAINTENACE OF THE NETAPP SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE OR LOSS. IT IS UNDERSTOOD THAT THE NETAPP SOFTWARE IS LICENSED TO YOU WITHOUT CHARGE. THEREFORE, NETAPP'S TOTAL LIABILITY FOR ANY DAMAGE OR CLAIM ARISING FROM LICENSING OR USE OF THE NETAPP SOFTWARE OR THE ACCOMPANYING DOCUMENTATION SHALL NOT EXCEED ONE HUNDRED DOLLARS (US$100.00). IN NO EVENT SHALL NETAPP BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, EXEMPLARY, SPECIAL OR CONSEQUENTIAL DAMAGES; LOST OR CORRUPTED DATA, LOSS OF PROFITS, SAVINGS, OR REVENUES; OR FOR ANY OCCURRENCE BEYOND ITS CONTROL ARISING OUT OF THIS LICENSE OR FROM YOUR USE OF THE NETAPP SOFTWARE.\n\u00a0\nWARNING: The NetApp Software is not designed or intended for use in on-line control of equipment in hazardous environments such as the operation of nuclear facilities, aircraft, air traffic, aircraft navigation or aircraft communications, or in the design, construction, operation or maintenance of any nuclear facility, or in the operation or maintenance of any direct life support system. NetApp disclaims any express or implied warranty of fitness for such uses and shall not be liable for any costs, liabilities or damages resulting from the use of the NetApp Software in such an environment. Licensee agrees that it will not use or license the NetApp Software for such purposes.\n\u00a0\n8.\tU.S. GOVERNMENT AND EXPORT REGULATIONS; COMPLIANCE WITH LAWS.\u00a0This Section 9 applies to You only if You are a U.S. Federal Government end user. The Software and Documentation is \u201ccommercial\u201d computer software and documentation and is licensed to You in accordance with the rights articulated in applicable U.S. government acquisition regulations (e.g. FAR, DFARs) pertaining to commercial computer software and documentation. You will not be subject to applicable audit costs specified in Section 9. Any dispute between You and NetApp will be subject to resolution pursuant to the Contract Disputes Act of 1978. Nothing contained in this License is meant to derogate the rights of the U.S. Department of Justice as identified in 28 U.S.C. \u00a7516. All other provisions of this License remain in effect as written.\n\u00a0\n9.\tLICENSEE INDEMNITY.\u00a0You shall defend, indemnify and hold NetApp and its directors, employees subsidiaries, affiliates, successors and assigns harmless from and against all claims, damages, losses, costs and expenses, including attorneys' fees, arising from any third party claims asserted against NetApp and its employees, subsidiaries, affiliates, successors and assigns, that are based in whole or in part on any of the following: (a) Licensee's use or misuse of the NetApp Software in violation of this License; (b) use of the NetApp Software in combination with any other software not provided hereunder; (c) Your breach of this License; or (d) a claim based upon an actual or alleged infringement of an intellectual property right of a third party arising from or related to the Licensee Application.\n\u00a0\n10.\tCOMPLIANCE WITH LAWS.\u00a0Each party shall comply with all applicable federal, state, local and foreign laws and ordinances including, but not limited to all export laws, restrictions and regulations of the Department of Commerce or other United States or foreign agency or authority, the Occupational Safety and Health Act of 1970 (29 U.S.C. Sections 651, 678), the Fair Labor Standards Act of 1938 (29 U.S.C. Sections 201-219), the Work Hours and Safety Act of 1962 (40 U.S.C. Sections 327, 333), the Equal Employment Opportunity (42 U.S.C. Sections 2000e, et seq.) and federal regulations governing affirmative action programs.\n\u00a0\n11.\tGOVERNING LAW.\u00a0This License shall be construed in accordance with and all disputes hereunder shall be governed by the laws of the State of California, excepting its conflicts of law rules. All disputes arising out of this License shall be subject to the exclusive jurisdiction and venue of the Superior Court of the State of California of Santa Clara County and the Federal District Court of the Northern District of California, United States of America, and You consent to the personal and exclusive jurisdiction and venue of such courts. The United Nations Convention on Contracts for the International Sales of Goods is specifically disclaimed.\n\u00a0\n12.\tSEVERABILITY.\u00a0If any provision of this License is held to be unenforceable, this License will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this License will immediately terminate.\n\u00a0\n13.\tINTEGRATION.\u00a0This License is the entire agreement between You and NetApp relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this License. No modification of this License will be binding, unless in writing and signed by an authorized representative of each party.\n\u00a0\nNetApp SDK License Agreement rev. Aug2020", + "json": "netapp-sdk-aug2020.json", + "yaml": "netapp-sdk-aug2020.yml", + "html": "netapp-sdk-aug2020.html", + "license": "netapp-sdk-aug2020.LICENSE" + }, + { + "license_key": "netcat", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-netcat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Netcat is entirely my own creation, although plenty of other code was used as\nexamples. It is freely given away to the Internet community in the hope that\nit will be useful, with no restrictions except giving credit where it is due.\nNo GPLs, Berkeley copyrights or any of that nonsense. The author assumes NO\nresponsibility for how anyone uses it. If netcat makes you rich somehow and\nyou're feeling generous, mail me a check. If you are affiliated in any way\nwith Microsoft Network, get a life. Always ski in control. Comments,\nquestions, and patches to nc110-devel@lists.sourceforge.net.", + "json": "netcat.json", + "yaml": "netcat.yml", + "html": "netcat.html", + "license": "netcat.LICENSE" + }, + { + "license_key": "netcdf", + "category": "Permissive", + "spdx_license_key": "NetCDF", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Portions of this software were developed by the Unidata Program at the\nUniversity Corporation for Atmospheric Research.\n\nAccess and use of this software shall impose the following obligations and\nunderstandings on the user. The user is granted the right, without any fee or\ncost, to use, copy, modify, alter, enhance and distribute this software, and any\nderivative works thereof, and its supporting documentation for any purpose\nwhatsoever, provided that this entire notice appears in all copies of the\nsoftware, derivative works and supporting documentation. Further, UCAR requests\nthat the user credit UCAR/Unidata in any publications that result from the use\nof this software or in any product that includes this software, although this is\nnot an obligation. The names UCAR and/or Unidata, however, may not be used in\nany advertising or publicity to endorse or promote any products or commercial\nentity unless specific written permission is obtained from UCAR/Unidata. The\nuser also understands that UCAR/Unidata is not obligated to provide the user\nwith any support, consulting, training or assistance of any kind with regard to\nthe use, operation and performance of this software nor to provide the user with\nany updates, revisions, new versions or \"bug fixes.\"\n\nTHIS SOFTWARE IS PROVIDED BY UCAR/UNIDATA \"AS IS\" AND ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT\nSHALL UCAR/UNIDATA BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER\nIN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE ACCESS, USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "netcdf.json", + "yaml": "netcdf.yml", + "html": "netcdf.html", + "license": "netcdf.LICENSE" + }, + { + "license_key": "netcomponents", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-netcomponents", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Savarese.Org\nCopyright \u00a9 1996-1999 Daniel F. Savarese.\nCopyright in this document and the software accompanying this document is owned by Daniel F. Savarese. All rights reserved.\n\nNetComponents License\nDaniel F. Savarese, hereinafter referred to as Daniel, grants you a non-exclusive, non-transferable limited license to use the software components comprising the NetComponents Java class package (\"Licensed Software\"). There is no fee for this license. You may not redistribute any of the Licensed Software except as follows:\n\n 1. You may reproduce and redistribute the Licensed Software in object code form only (Java .class files) and only when incorporated into your software product which adds substantial and primary functionality to the Licensed Software.\n 2. You may not permit further redistribution of the Licensed Software by your end users except as part of a new software product you develop that meets the restricions of item 1. \n\nTo clarify, you may use the Licensed Software only to build new software you develop, and you may only distribute the Licensed Software as part of this new software. You may not include the Licensed Software in a software development kit or other library or development tool that exposes the API's of the Licensed Software without first negotiating a specific license for that purpose with Daniel. Except as permitted by applicable law and this License, you may not decompile, reverse engineer, disassemble, modify, rent, lease, loan, distribute, create derivative works from the Licensed Software or transmit the Licensed Software over a network.\n\nYou may not use or otherwise export or reexport the Licensed Software except as authorized by United States law and the laws of the jurisdiction in which the Licensed Software was obtained. In particular, but without limitation, the Licensed Software may not be used or otherwise exported or reexported (1) into (or to a national or resident of) any United States embargoed country or (2) to anyone on the U.S. Treasury Department't list of Specially Designated Nationals or the U.S. Department of Commerce's Table of Denial Orders. By using the Licensed Software, you represent and warrant that you are not located in, under control of, or a national or resident of any such country or on any such list.\n\nDANIEL MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE LICENSED SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. ORO SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE LICENSED SOFTWARE OR ITS DERIVATIVES. THE LICENSED SOFTWARE IS NOT DESIGNED FOR USE IN HIGH RISK ACTIVITIES REQUIRING FAIL-SAFE PERFORMANCE. ORO DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR HIGH RISK ACTIVITIES.\nRestricted Rights Legend\n\nThe Licensed Software and documentation is a \"commercial item,\" as defined in 48 C.F.R. 2.101 (10/95), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as defined in 48 C.F.R. 12.212 (9/95). Use, duplication, or disclosure by the U.S. Government is subject to the restrictions of U.S. GOVERNMENT END USERS consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (6/95).\nTrademarks\nORO, the ORO logo, Original Reusable Objects, Component software for the Internet, and NetComponents are trademarks or registered trademarks of Daniel F. Savarese in the United States and other countries.\n\nJava is trademark of Sun Microsystems, Inc. Netscape is a trademark of Netscape Communications Corporation. All other product names mentioned are the trademarks of their respective owners.", + "json": "netcomponents.json", + "yaml": "netcomponents.yml", + "html": "netcomponents.html", + "license": "netcomponents.LICENSE" + }, + { + "license_key": "netron", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-netron", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "END USER LICENSE AGREEMENT (\u221e2006); FRANCOIS VANDERSEYPEN \"THE NETRON PROJECT\".\n\nIMPORTANT PLEASE READ CAREFULLY\n\nBefore reading the articles below, please take good notice of the following preliminary terms and definitions:\n\nDEFINITIONS\n\n\"Agreement\": this End User License Agreement, as may be renewed, modified and/or amended from time to time.\n\n\"Documentation\": any online or otherwise enclosed documentation provided by THE NETRON PROJECT.\n\n\"IP Rights\": any and all intellectual property rights, including but not limited to copyrights, trademarks and patents, as well as know how and trade secrets contained in or relating to the THE NETRON PROJECT Software, the Documentation, the THE NETRON PROJECT Website or the THE NETRON PROJECT Promotional Materials.\n\nTHE NETRON PROJECT: refers to the open source project, hosted on Sourceforge.Net, owned by Dr.F.M.Vanderseypen, Belgium.\n\n\"Netron Graph Library\": also called \"Netron graph control\", refers to the software this license agreement applies to, the API, UI and Documentation, as well as any future programming fixes, updates and upgrade thereof.\n\n\"Terms of Service\": means the agreement between THE NETRON PROJECT and You for the use of the software.\n\n\"UI\": the user interface of the software.\n\n\"You\": you, the end user of the THE NETRON PROJECT software, also used in the form \u00ecYour\u00ee where applicable.\n\n\"THE NETRON PROJECT website\": the webspace located at http://www.netronproject.com.\n\nENTERING INTO THIS AGREEMENT\n\nThis End User License Agreement constitutes a valid and binding agreement between THE NETRON PROJECTand You, as a user, for the use of the THE NETRON PROJECT software. You must enter into this Agreement by clicking on the ACCEPT button in order to be able to install and use the THE NETRON PROJECTsoftware. You hereby agree and acknowledge that this Agreement covers all Your use of THE NETRON PROJECT software, whether it be from this installation or from any other terminals where THE NETRON PROJECT software has been installed, by You or by third parties. Furthermore, by installing and (continuously) using the THE NETRON PROJECT software You agree to be bound by the terms of this Agreement and any new versions hereof.\n\n\nNO WARRANTY \n\nBecause 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. \nIn 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. \n\n\nLICENSE AND RESTRICTIONS\n\nPermission 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: \n\n1. 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. \n\n2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. \n\n3. This notice may not be removed or altered from any source distribution. \n\n4. Exclusive Ownership. You acknowledge and agree that any and all IP Rights to or arising from the THE NETRON PROJECT software are and shall remain the exclusive property of THE NETRON PROJECT and/or its licensors. Nothing in this Agreement intends to transfer any such IP Rights to, or to vest any such IP Rights in, You. You are only entitled to the limited use of the IP Rights granted to You in this Agreement. You will not take any action to jeopardize, limit or interfere with the IP Rights. You acknowledge and agree that any unauthorized use of the IP Rights is a violation of this Agreement as well as a violation of intellectual property laws, including without limitation copyright laws and trademark laws.\n\n5.Paid Services. This Agreement applies to downloading, installing and using the THE NETRON PROJECT software, free of charge. The use of any paid services which may be offered by THE NETRON PROJECT or its Affiliates, is subject to the additional Terms of Service that are published on the THE NETRON PROJECT Website.\n\nYOU EXPRESSLY ACKNOWLEDGE THAT YOU HAVE READ THIS AGREEMENT AND UNDERSTAND THE RIGHTS, OBLIGATIONS, TERMS AND CONDITIONS SET FORTH HEREIN. BY CLICKING ON THE ACCEPT BUTTON AND/OR CONTINUING TO INSTALL THE THE NETRON PROJECT SOFTWARE, YOU EXPRESSLY CONSENT TO BE BOUND BY ITS TERMS AND CONDITIONS AND GRANT TO THE NETRON PROJECT THE RIGHTS SET FORTH HEREIN.", + "json": "netron.json", + "yaml": "netron.yml", + "html": "netron.html", + "license": "netron.LICENSE" + }, + { + "license_key": "netronome-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-netronome-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Agilio(r) Firmware License Agreement (the \"AGREEMENT\")\n\nBY INSTALLING OR USING IN ANY MANNER THE SOFTWARE THAT ACCOMPANIES THIS\nAGREEMENT (THE \"SOFTWARE\") YOU (THE \"LICENSEE\") ACKNOWLEDGE TO BE BOUND\nBY ALL OF THE TERMS OF THIS AGREEMENT.\n\nLICENSE GRANT. Subject to the terms and conditions set forth herein,\nNetronome Systems, Inc. (\"NETRONOME\") hereby grants LICENSEE a non-\nexclusive license to use, reproduce and distribute the SOFTWARE\nexclusively in object form.\n\nRestrictions. LICENSEE agrees that, (a) unless explicitly provided by\nNETRONOME, the source code of the SOFTWARE is not being provided to\nLICENSEE and is confidential and proprietary to NETRONOME and that\nLICENSEE has no right to access or use such source code. Accordingly,\nLICENSEE agrees that it shall not cause or permit the disassembly,\ndecompilation or reverse engineering of the SOFTWARE or otherwise attempt\nto gain access to the source code for the SOFTWARE; and (b) LICENSEE\nagrees that it shall not subject the SOFTWARE in whole or in part, to the\nterms of any software license that requires, as a condition of use,\nmodification and/or distribution that the source code of the SOFTWARE, or\nthe SOFTWARE be i) disclosed or distributed in source code form; ii)\nlicensed for the purpose of making derivative works of the source code of\nthe SOFTWARE; or iii) redistribution of the source code of the SOFTWARE\nat no charge.\n\nDISCLAIMER OF ALL WARRANTIES. THE SOFTWARE IS PROVIDED \"AS IS\" AND WITH\nALL FAULTS AND NETRONOME AND ITS LICENSORS HEREBY DISCLAIM ALL EXPRESS OR\nIMPLIED WARRANTIES OF ANY KIND, INCLUDING, WITHOUT LIMITATION, ANY\nWARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT AND FITNESS FOR A\nPARTICULAR PURPOSE.\n\nLIMITATIONS OF LIABILITY. EXCEPT WHERE PROHIBITED BY LAW, IN NO EVENT\nSHALL NETRONOME OR ANY OTHER PARTY INVOLVED IN THE CREATION, PRODUCTION,\nOR DELIVERY OF THE SOFTWARE BE LIABLE FOR ANY LOSS OF PROFITS, DATA, USE\nOF THE SOFTWARE, DOCUMENTATION OR EQUIPMENT, OR FOR ANY SPECIAL,\nINCIDENTAL, CONSEQUENTIAL, EXEMPLARY, PUNITIVE, MULTIPLE OR OTHER\nDAMAGES, ARISING FROM OR IN CONNECTION WITH THE SOFTWARE EVEN IF\nNETRONOME OR ITS LICENSORS HAVE BEEN MADE AWARE OF THE POSSIBILITY OF\nSUCH DAMAGES AND NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY\nLIMITED REMEDY.\n\nEXPORT COMPLIANCE. LICENSEE shall not use or export or transmit the\nSOFTWARE, directly or indirectly, to any restricted countries or in any\nother manner that would violate any applicable US and other export\ncontrol and other regulations and laws as shall from time to time govern\nthe delivery, license and use of technology, including without limitation\nthe Export Administration Act of 1979, as amended, and any regulations\nissued thereunder.\n\nPROHIBITION OF SOFTWARE USE IN HIGH RISK ACTIVITIES AND LIFE\nSUPPORT APPLICATIONS. The SOFTWARE is not designed, manufactured or\nintended for use as on-line control equipment in hazardous environments\nrequiring fail-safe performance, such as in the operation of nuclear\nfacilities, aircraft navigation or communications systems, air traffic\ncontrol, life support systems, human implantation or any other\napplication where product failure could lead to loss of life or\ncatastrophic property damage or weapons systems, in which the failure of\nthe SOFTWARE could lead directly to death, personal injury, or severe\nphysical or environmental damage (\"High Risk Activities\"). Accordingly\nNETRONOME and, where applicable, NETRONOME'S third party licensors\nspecifically disclaim any express or implied warranty of fitness for High\nRisk Activities.", + "json": "netronome-firmware.json", + "yaml": "netronome-firmware.yml", + "html": "netronome-firmware.html", + "license": "netronome-firmware.LICENSE" + }, + { + "license_key": "network-time-protocol", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Network Time Protocol License\nhttp://www.eecis.udel.edu/~mills/ntp/html/copyright.html \n\nPermission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose with or without fee is hereby granted,\nprovided that the above copyright notice appears in all copies and\nthat both the copyright notice and this permission notice appear in\nsupporting documentation, and that the name University of Delaware not\nbe used in advertising or publicity pertaining to distribution of the\nsoftware without specific, written prior permission. The University of\nDelaware makes no representations about the suitability this software\nfor any purpose. It is provided \"as is\" without express or implied\nwarranty.", + "json": "network-time-protocol.json", + "yaml": "network-time-protocol.yml", + "html": "network-time-protocol.html", + "license": "network-time-protocol.LICENSE" + }, + { + "license_key": "new-relic", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-new-relic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "All other components of this product are\nCopyright (c) 2008-2014 New Relic, Inc. All rights reserved.\n\nCertain inventions disclosed in this file may be claimed within\npatents owned or patent applications filed by New Relic, Inc. or third\nparties.\n\nSubject to the terms of this notice, New Relic grants you a\nnonexclusive, nontransferable license, without the right to\nsublicense, to (a) install and execute one copy of these files on any\nnumber of workstations owned or controlled by you and (b) distribute\nverbatim copies of these files to third parties. As a condition to the\nforegoing grant, you must provide this notice along with each copy you\ndistribute and you must not remove, alter, or obscure this notice. All\nother use, reproduction, modification, distribution, or other\nexploitation of these files is strictly prohibited, except as may be set\nforth in a separate written license agreement between you and New\nRelic. The terms of any such license agreement will control over this\nnotice. The license stated above will be automatically terminated and\nrevoked if you exceed its scope or violate any of the terms of this\nnotice.\n\nThis License does not grant permission to use the trade names,\ntrademarks, service marks, or product names of New Relic, except as\nrequired for reasonable and customary use in describing the origin of\nthis file and reproducing the content of this notice. You may not\nmark or brand this file with any trade name, trademarks, service\nmarks, or product names other than the original brand (if any)\nprovided by New Relic.\n\nUnless otherwise expressly agreed by New Relic in a separate written\nlicense agreement, these files are provided AS IS, WITHOUT WARRANTY OF\nANY KIND, including without any implied warranties of MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE, TITLE, or NON-INFRINGEMENT. As a\ncondition to your use of these files, you are solely responsible for\nsuch use. New Relic will have no liability to you for direct,\nindirect, consequential, incidental, special, or punitive damages or\nfor lost profits or data.", + "json": "new-relic.json", + "yaml": "new-relic.yml", + "html": "new-relic.html", + "license": "new-relic.LICENSE" + }, + { + "license_key": "newlib-historical", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-newlib-historical", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The authors hereby grant permission to use, copy, modify, distribute,\nand license this software and its documentation for any purpose, provided\nthat existing copyright notices are retained in all copies and that this\nnotice is included verbatim in any distributions. No written agreement,\nlicense, or royalty fee is required for any of the authorized uses.\nModifications to this software may be copyrighted by their authors\nand need not follow the licensing terms described here, provided that\nthe new terms are clearly indicated on the first page of each file where\nthey apply.", + "json": "newlib-historical.json", + "yaml": "newlib-historical.yml", + "html": "newlib-historical.html", + "license": "newlib-historical.LICENSE" + }, + { + "license_key": "newran", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-newran", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "There are no restrictions on the use of newran except that I take no liability for any problems that may arise from its use.\n\nI welcome its distribution as part of low cost CD-ROM collections.\n\nYou can use it in your commercial projects. However, if you distribute the source, please make it clear which parts are mine and that they are available essentially for free over the Internet.", + "json": "newran.json", + "yaml": "newran.yml", + "html": "newran.html", + "license": "newran.LICENSE" + }, + { + "license_key": "newsletr", + "category": "Permissive", + "spdx_license_key": "Newsletr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to anyone to use this software for any purpose\non any computer system, and to redistribute it freely, subject to the\nfollowing restrictions:\n\n1. This software is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n2. Altered versions must be plainly marked as such, and must not be\nmisrepresented as being the original software.", + "json": "newsletr.json", + "yaml": "newsletr.yml", + "html": "newsletr.html", + "license": "newsletr.LICENSE" + }, + { + "license_key": "newton-king-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-newton-king-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Contributor License Agreement\n\nBy contributing your code to Json.NET you grant James Newton-King a non-exclusive, irrevocable, worldwide,\nroyalty-free, sublicenseable, transferable license under all of Your relevant intellectual property rights\n(including copyright, patent, and any other rights), to use, copy, prepare derivative works of, distribute and\npublicly perform and display the Contributions on any licensing terms, including without limitation:\n(a) open source licenses like the MIT license; and (b) binary, proprietary, or commercial licenses. Except for the\nlicenses granted herein, You reserve all right, title, and interest in and to the Contribution.\n\nYou confirm that you are able to grant us these rights. You represent that You are legally entitled to grant the\nabove license. If Your employer has rights to intellectual property that You create, You represent that You have\nreceived permission to make the Contributions on behalf of that employer, or that Your employer has waived such\nrights for the Contributions.\n\nYou represent that the Contributions are Your original works of authorship, and to Your knowledge, no other person\nclaims, or has the right to claim, any right in any invention or patent related to the Contributions. You also\nrepresent that You are not legally obligated, whether by entering into an agreement or otherwise, in any way that\nconflicts with the terms of this license.\n\nJames Newton-King acknowledges that, except as explicitly described in this Agreement, any Contribution which\nyou provide is on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED,\nINCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS\nFOR A PARTICULAR PURPOSE.", + "json": "newton-king-cla.json", + "yaml": "newton-king-cla.yml", + "html": "newton-king-cla.html", + "license": "newton-king-cla.LICENSE" + }, + { + "license_key": "nexb-eula-saas-1.1.0", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-nexb-eula-saas-1.1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "NEXB INC.\nEND USER AGREEMENT FOR SOFTWARE AS A SERVICE\nREAD THIS AGREEMENT CAREFULLY.\n\nThis Agreement is a legally binding agreement between you (meaning the person or the entity that obtained the Service under the terms and conditions of this Agreement and referred to below as \"You\" or \"Customer\") and nexB (meaning nexB Inc.). You are agreeing to be bound by all terms and conditions of this Agreement. \n\nBy clicking on the \"Agree\" or \"Accept\" or similar button in this Agreement, or proceeding with the use of the Service, or authorizing any other person to do so, You are representing that You are (i) authorized to bind the Customer to the terms of this Agreement; and (ii) agreeing on behalf of the Customer that the terms of this Agreement shall govern the relationship of the parties with regard to the subject matter in this Agreement, and waiving any rights, to the maximum extent permitted by applicable law, to any claim anywhere in the world concerning the enforceability or validity of this Agreement.\n\nIf You do not have authority to agree to the terms of this Agreement on behalf of the Customer, or do not accept the terms of this Agreement on behalf of the Customer, click on the \"Cancel\" or \"Decline\" or other similar button and/or immediately cease any further attempt to use the Service.\n\n1.\tDEFINITIONS\n\n(a) \"Agreement\" means this End User Agreement for Software as a Service.\n\n(b) \"Service\" means the software as a service that you have purchased from nexB, including accompanying Software, Content and Documentation.\n\n(c) \"Software\" means the software program(s) and third-party software programs that nexB uses to deliver the Service, and updates to any such Software which Licensee is entitled to receive from nexB for the purposes of this Agreement..\n\n(d) \"Content\" means any information or data supplied by nexB to Customer to be used in or with the Service, including but not limited to, information and data about software licenses and software components.\n\n(e) \"Documentation\" means any documentation supplied by nexB including associated media, printed materials, and online or electronic documentation.\n\n(f) \"Updates\" means the provision by nexB to Customer of Software updates and/or enhancements made generally available to customers from time to time.\n\n(g) \"Support\" means online technical support (and where applicable, phone or other support) for the sole purpose of addressing technical issues relating to the use of the Service.\n\n(h) \"Order Form\" means a signed sales order or quote from nexB form under which Licensee may order a Software Evaluation or Subscription License from nexB in the form of Exhibit A.\n\n(i) \"User\" means each employee, agent, representative or other person working directly or indirectly for or on behalf of Customer organization who has access to and may potentially use the Service.\n\n(j) \"Subscription Fees\" means the fees to be paid by Customer to nexB in connection with the use of the Service for the duration of any Subscription Period.\n\n(k) \"Subscription Period\" means the amount of calendar time that the Customer is authorized to use the Service.\n\n(l) \"Evaluation Period\" means the amount of calendar time that the Customer is authorized to use the Service for evaluation purposes only. The Evaluation Period is 30 days unless otherwise agreed in writing between the parties.\n\n(m) \"Open Source Software\" means any software that is subject to an Open Source License.\n\n(n) \"Open Source License\" means any license that allows software to be freely used, modified, and shared. An Open Source License may require a Customer to acknowledge the author of the software and also to redistribute source code for the software or derivative works of the software. Open Source Licenses include, but are not limited to, the GNU GPL, GNU LGPL, MPL, Apache, BSD and MIT licenses.\n\n2.\tRIGHTS GRANTED\n\nSubject to the terms and conditions of this Agreement, nexB grants to Customer a non-exclusive, non-assignable right during the Subscription (or Evaluation) Period to:\n \n(a)\tUse the Service for the number of Users and according to other parameters specified on an Order Form for your internal business purposes.\n\n(b)\tUse, copy, reproduce, adapt and modify the Documentation for your internal business purposes.\n\n(c)\tBack up and archive your data from the Service at any time. \n\n\n3.\tOWNERSHIP\n\n(a)\tThe Service, including without limitation all know-how, concepts, logic and specifications, is a proprietary product belonging to us and our licensors, and is protected throughout the world by copyright and other intellectual property rights.\n\n(b)\tYou retain all ownership and intellectual property rights in and to your data. nexB retains all ownership and intellectual property rights to the Service, Software, Content and Documentation. nexB also retains all ownership and intellectual property rights to anything developed and delivered under this Agreement.\n\n(c)\tYou shall not (and shall not allow any third party to) copy, modify, create a derivative work from, reverse engineer, reverse assemble or otherwise attempt to discover any source code, or sell, assign, sublicense, grant a security interest in or otherwise transfer any right in the Software. You agree not to modify the Service in any manner or form, or to use modified versions of the Software, including (without limitation) for the purpose of obtaining unauthorized access to the Service. You agree not to access the Service by any means other than through the interface that is provided by nexB for use in accessing the Service.\n\n(d)\tCustomer acknowledges that any symbols, trademarks, tradenames, and service marks adopted by nexB to identify the Service, Software and Content belong to nexB and that Customer shall have no rights therein.\n\n\n4.\tCONFIDENTIALITY\nCustomer acknowledges that the Service contains proprietary trade secrets and other intellectual property of nexB and hereby agrees to maintain the confidentiality of the Software using at least the same degree of care as used to maintain the confidentiality of its own most confidential information. Customer agrees to communicate the terms and conditions of this Agreement to those persons employed by Customer or otherwise within its organization who come into contact with the Service, and to use its best efforts to ensure their compliance with such terms and conditions, including, without limitation, not permitting such persons to use any portion of the Service for the purpose of deriving the source code of the Software.\n\n5.\tPRIVACY AND SECURITY\n\n(a)\tYou acknowledge and agree that it may be necessary for us to collect and process certain information relating to Customer and individual Users in order to perform the Service, and that such information may include proprietary, confidential and/or personal data, including without limitation (i) names, email addresses, telephone numbers and other contact details; (ii) account usernames; (iii) IP addresses; and (iv) usage information.\n\n(b)\tYou further acknowledge and agree that nexB may access or disclose information about Customer, including the content of Customer communications, in order to: (i) comply with the law or respond to lawful requests or legal process; (ii) protect the rights or property of nexB or nexB's customers, including the enforcement of nexB's agreements or policies governing Customer's use of the Service; or (iii) act on a good faith belief that such access or disclosure is necessary to protect the personal safety of nexB employees, customers, or the public.\n\n6.\tTHIRD-PARTY SOFTWARE\n\n(a)\tThe Service may operate or interface with software or other technology which is not owned by us and is licensed to us by third parties (\"Third Party Licensors\"), but which we have the necessary rights to license to you (\"Third Party Software\"). You agree that (i) you will use such Third Party Software in accordance with this Agreement, (ii) no Third Party Licensor makes any warranties, conditions, undertakings or representations of any kind, either express or implied, to you concerning such Third Party Software or the Service itself, (iii) no Third Party Licensor will have any obligation or liability to you as a result of this Agreement or your use of such Third Party Software, (iv) such Third Party Software may be licensed under license terms which grant you additional rights or contain additional restrictions in relation to such materials, beyond those set forth in this Agreement, and such additional license rights and restrictions are described or linked to within the applicable Documentation or within the Service itself.\n\n(b)\tnexB will notify Customer in writing whether whether there is any Open Source Software embedded in the Software. For any such Open Source Software, nexB warrants that it has complied with any Open Source License terms and conditions and provided Licensee with the license terms, source code or other information necessary for Licensee's compliance with such license terms and conditions. nexB warrants that it will provide an updated disclosure of Open Source Software in the documentation for each new release of the Software.\n\n7.\tLIMITED WARRANTY\n\n(a)\tIf Customer has paid a Subscription Fee for the Service, nexB warrants to Customer during the Subscription Period that the Service when used for its intended purpose will achieve in all material respects the functionality described in the Documentation. nexB does not warrant that the Service will be error-free. This warranty is only for the benefit of the Customer.\n\n(b)\tCustomer\u2019s sole and exclusive remedy for nexB\u2019s breach of this warranty shall be that nexB shall be required to use commercially reasonable efforts to modify the Service to achieve in all material respects the functionality described in the Documentation. If nexB is unable to restore such functionality, then Customer shall be entitled to terminate the Agreement and shall be entitled to receive a pro-rata refund of the Subscription Fees paid for under the Agreement for its use of the Service but which use has not yet been furnished by nexB as of the date of such termination. nexB shall have no obligation with respect to a warranty claim unless notified in accordance with subsection (c) below of such claim within thirty (30) days after Customer first learns or should have learned of any material functionality problem.\n\n(c)\tIn the event of a failure of the Service to achieve the functionality described in the Documentation, Customer will notify nexB of the problem using nexB's online tracking system with sufficient details as reasonably requested by nexB in order to allow nexB to attempt to reproduce the problem. nexB shall use its best efforts to provide a correction or workaround to the Customer within the time period specified for the problem severity at https://dejacode.zendesk.com/home . We reserve the right to limit the number of Users who may contact our technical support team.\n\n(d)\tWe reserve the right, in our sole discretion, to change, update, and enhance the Service at any time including to add functionality or features to, or remove them from, the Service. We may also suspend the Service or stop providing the Service altogether. If nexB suspends or stops providing the Service or removes functionality or features that Customer deems essential for its use of the Service, then Customer shall be entitled to terminate the Agreement and shall be entitled to receive a pro-rata refund of the Subscription Fees paid for under the Agreement for its use of the Service but which use has not yet been furnished by nexB as of the date of such termination.\n\n(e)\tEXCEPT AS EXPRESSLY SET FORTH IN THIS SECTION 7, THE SERVICE IS PROVIDED TO CUSTOMER ON AN \"AS IS\" BASIS, WITH ANY AND ALL FAULTS, AND WITHOUT ANY WARRANTY OF ANY KIND; AND NEXB AND ITS RESELLERS EXPRESSLY DISCLAIM ALL REPRESENTATIONS, WARRANTIES AND CONDITIONS WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SATISFACTORY QUALITY, AND NON-INFRINGEMENT OF THIRD-PARTY RIGHTS. NEXB DOES NOT WARRANT THAT THE SERVICE WILL MEET CUSTOMER\u2019S OR ITS END USERS\u2019 REQUIREMENTS, OR THAT THE OPERATION OF THE SERVICE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT DEFECTS IN THE SERVICE WILL BE CORRECTED. CUSTOMER EXPRESSLY ACKNOWLEDGES AND AGREES THAT THE USE OF THE SERVICE AND ALL RESULTS OF SUCH USE IS SOLELY AT CUSTOMER\u2019S AND ITS END USERS\u2019 OWN RISK. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY NEXB OR ITS AUTHORIZED REPRESENTATIVES SHALL CREATE A WARRANTY OR IN ANY WAY INCREASE THE SCOPE OF ANY WARRANTY. SOME JURISDICTIONS MAY NOT ALLOW THE EXCLUSION AND/OR LIMITATION OF IMPLIED WARRANTIES OR CONDITIONS, OR ALLOW LIMITATIONS ON HOW LONG AN IMPLIED WARRANTY LASTS, SO THE ABOVE LIMITATIONS OR EXCLUSIONS MAY NOT APPLY TO CUSTOMER. IN SUCH EVENT, NEXB\u2019S WARRANTIES AND CONDITIONS WITH RESPECT TO THE SERVICE WILL BE LIMITED TO THE GREATEST EXTENT PERMITTED BY APPLICABLE LAW IN SUCH JURISDICTION.\n\n8.\tINDEMNIFICATION\n\n(a)\tnexB will defend and indemnify Customer for all reasonable costs arising from a claim that Service furnished and used within the scope of this Agreement infringes a U.S. copyright or U.S. patent provided that: (i) Customer notifies nexB in writing within 30 days after Customer learns or should have learned of the claim; (ii) nexB has sole control of the defense and all related settlement negotiations; and (iii) Customer provides nexB with the assistance, information, and authority necessary to perform the above.\n\n(b)\tIn the event the Service is held or believed by nexB to infringe, or Customer's use of the Service is enjoined, nexB will have the option, at its expense, to: (i) modify the Service to cause it to become non-infringing; (ii) obtain a license for Customer to continue using the Service; or (iii) if none of the foregoing remedies are commercially feasible, terminate this Agreement and refund any Subscription Fees paid for the Service, prorated over the term from the effective date of the Agreement.\n\nThis Section 8 states nexB's entire liability for infringement.\n\n9.\tLIMITATION OF LIABILITY\n\n(a)\tIn no event will nexB or its resellers be liable to Customer or any third party for any incidental or consequential damages (including, without limitation, indirect, special, punitive, or exemplary damages for loss of business, loss of profits, business interruption, or loss of business information) arising out of or related to the use of or inability to use the Software or Content, or for any claim by any other party, even if nexB has been advised of the possibility of such damages.\n\n(b)\tnexB's aggregate liability with respect to its obligations under this Agreement or otherwise with respect to the Service or otherwise shall not exceed the Subscription Fees received by nexB from Customer during the 12 month period immediately preceding the event that gave rise to the claim. Because some states and/or countries do not allow the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply.\n\n10.\tNO LEGAL ADVICE\nCustomer\u2019s use of the Service is not intended to create, and does not constitute, an attorney-client relationship between Customer and any person or entity connected with nexB. The Service should not be used as a substitute for competent legal advice from a lawyer whom Customer has retained. Neither the Service, the Content, the Documentation nor any communications between nexB and Customer or any User is intended to provide, and in no event shall it be treated as providing or constituting legal advice.\n\n11.\tEXPORT RESTRICTIONS\nnexB makes no representation that the Service is appropriate or available for use outside of the United States of America. The Service is further subject to United States export controls. Software, Content or Documentation from the Service may not be used, disclosed or transported (i) into (or to a national or resident of) Cuba, Iran, Iraq, Libya, North Korea, Sudan, Syria, or any other country to which the United States has embargoed goods; or (ii) to anyone on the U.S. Treasury Department's List of Specially Designated Nationals or the U.S. Commerce Department's Table of Deny Orders. By using the Service, Customer represents and warrants that it is not located in, under the control of, or a national or resident of any such country or on any such list.\n\n12.\tU.S. GOVERNMENT RESTRICTED RIGHTS\nThe Service has been developed entirely at private expense and is provided as \"Commercial Computer Software\" or \"restricted computer software\". Use, duplication, or disclosure by the United States Government is subject to restrictions as set forth in subparagraph (c) (1) (ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs (c) (1) and (2) of the Commercial Computer Software-Restricted Rights clause at 48 CFR 52.227-19, and successor thereof, as applicable.\n\n13.\tTERMINATION\n\n(a)\tIf Customer fails to comply with the terms and conditions of this Agreement, this Agreement and Customer's right and license to use the Service will terminate immediately. Customer may terminate this Agreement at any time by notifying nexB in writing. Upon the termination of this Agreement, Customer must cease using the Service.\n\n(b)\tIf Customer uses the Service during an Evaluation Period, nexB may terminate this Agreement for convenience and for any or no reason and may, at its sole discretion, require Customer to discontinue Customer access to the Service at any time.\n\n(c)\tIn addition to any other termination rights provided in this Agreement, either party may terminate this Agreement immediately upon written notice if the other party materially breaches any provision of this Agreement and fails to cure such breach within 30 days after delivery of a written notice describing the breach.\n\n14.\tMARKETING\nCustomer agrees to be identified as a customer of nexB and that nexB may refer to Customer by name, trade name and trademark, if applicable, and may briefly describe Customer's business in nexB's marketing materials, on nexB's web site, and in public or legal documents. Customer can deny nexB this right at any time by submitting a written request via email to marketing@nexb.com, requesting to be excluded from Software marketing material.\n\n15.\tTAXES\nSubscription Fees are exclusive of sales, use, value-added or other similar taxes. Customer shall pay or reimburse nexB for such taxes on or related to the Service whether assessed at the time of Your purchase or thereafter determined to have been due, unless an exemption certificate or a direct payment permit is provided to nexB for each taxing jurisdiction for which You claim exemption.\n\n16.\tGENERAL\n\n(a)\tCustomer agrees that all agreements, notices, disclosures, and other communications that nexB provides to Customer electronically satisfy any legal requirement that such communications be in writing, to the extent permitted by applicable law.\n\n(b)\tCustomer shall not assign this Agreement or transfer any of its rights hereunder, or delegate the performance of any of its duties or obligations arising under this Agreement, whether by merger, acquisition, sale of assets, operation of law, or otherwise, without the prior written consent of nexB. Subject to the foregoing, this Agreement shall be binding upon, and inure to the benefit of, the successors and assigns of the parties thereto. Except as otherwise specified in this Agreement, this Agreement may be amended or supplemented only by a writing that refers explicitly to this Agreement and that is signed on behalf of both parties. No waiver will be implied from conduct or failure to enforce rights.\n\n(c)\tThis Agreement will be governed by the laws of the State of California without regard to conflicts of law provisions thereof. The parties expressly disclaim the application of the United Nations Convention on Contracts for the International Sale of Goods and the Uniform Computer Information Transactions Act. Each party irrevocably consents to the exclusive jurisdiction of and venue in the US federal or state courts seated in the Counties of San Francisco, San Mateo or Santa Clara, California, USA.\n\n(d)\tAny terms of this Agreement that by their nature extend beyond the termination of this Agreement shall remain in effect until fulfilled, and such terms shall apply to the respective successors and assigns of either party. Terms that survive include, but are not limited to, the provisions of Sections 4 (Ownership), 5 (Confidentiality), 7 (Limited Warranty), 9 (Limitation of Liability) and 16 (General).\n\n(e)\tIf any term of this Agreement is found invalid or unenforceable, that term will be enforced to the maximum extent permitted by law and the remainder of this Agreement will remain in full force.\n\n(f)\tThe parties are independent contractors and nothing contained herein shall be construed as creating an agency, partnership, or other form of joint enterprise between the parties.\n\n(g)\tThis Agreement, including the third-party software license agreements and any Order Forms that incorporate this Agreement, represents the entire agreement between the parties relating to Customer's use of the Service and supersedes any and all prior or contemporaneous oral or written representations, communications, or advertising with respect to the Service.\n\n17.\tCHANGES TO THIS AGREEMENT \n\nWe may update or modify this Agreement from time to time, including any referenced policies or other documents. If a revision meaningfully reduces your rights, we will use reasonable efforts to notify You (by, for example, sending an email to the billing or technical contact you designate in the applicable Order, posting on our blog, through your nexB account, or in the Product itself). If we modify the Agreement during Your Subscription Period, the modified version will be effective upon Your next renewal of a Subscription Period.. In this case, if You object to the updated Agreement, as Your exclusive remedy, you may choose not to renew, including cancelling any terms set to auto-renew. You may be required to click through the updated Agreement to show Your acceptance. For the avoidance of doubt, any Order Form is subject to the version of the Agreement in effect at the time the Order Form is accepted.\n\nRevision: 1.1.0 October 2017", + "json": "nexb-eula-saas-1.1.0.json", + "yaml": "nexb-eula-saas-1.1.0.yml", + "html": "nexb-eula-saas-1.1.0.html", + "license": "nexb-eula-saas-1.1.0.LICENSE" + }, + { + "license_key": "nexb-ssla-1.1.0", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-nexb-ssla-1.1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "nexB Software Subscription License Agreement\n\nThis Software Subscription License Agreement (the \"Agreement) is entered into by and between nexB Inc., a California corporation, having its principal place of business at 735 Industrial Road Suite 101, San Carlos, CA 94070 and ___________________, a ______________ corporation, having its principal place of business at _________________________________________________ (\"Licensee\"). This Agreement is effective as of _________________ (\"Effective Date\").\n \n\n1.\tDEFINITIONS\n \n(a) \"Agreement\" means this Software Subscription License Agreement.\n\n(b) \"Software Subscription License\" means a license to use the Software subject to the duration of a Subscription or Evaluation Period.\n\n(c) \"Software\" means the DejaCode software program(s) and third-party software programs supplied by nexB, and updates to any such Software which Licensee is entitled to receive from nexB for the purposes of this Agreement.\n\n(d) \"Content\" means any information or data supplied by nexB to Licensee to be used in or with the Software, including but not limited to, information and data about software licenses and software components.\n\n(e) \"Documentation\" means any documentation supplied by nexB including associated media, printed materials, and online or electronic documentation.\n\n(f) \"Updates\" means the provision by nexB to Licensee of Software updates and/or enhancements made generally available to customers from time to time.\n\n(g) \"Support\" means online technical support (and where applicable, phone or other support) for the sole purpose of addressing technical issues relating to the use of the Software.\n\n(h) \"Order Form\" means a signed sales order or quote form under which Licensee may order a Software Evaluation or Subscription License from nexB in the form of Exhibit A.\n\n(i) \"User\" means each employee, agent, representative or other person working directly or indirectly for or on behalf of Licensee organization who has access to and may potentially use the Software.\n\n(j) \"Subscription Fees\" means the fees to be paid by Licensee to nexB in connection with licensing the Software for the duration of any Subscription Period as specified by an Order Form.\n\n(k) \"Subscription Period\" means the amount of calendar time that the Licensee is authorized to use the Software as specified by an Order Form.\n\n(l) \"Evaluation Period\" means the amount of calendar time that the Licensee is authorized to use the Software for evaluation purposes only. The Evaluation Period is 30 days unless otherwise agreed between the parties.\n\n(m) \"Open Source Software\" means any software that is subject to an Open Source License.\n\n(n) \"Open Source License\" means any license that allows software to be freely used, modified, and shared. An Open Source License may require a licensee to acknowledge the author of the software and also to redistribute source code for the software or derivative works of the software. Open Source Licenses include, but are not limited to, the GNU GPL, GNU LGPL, MPL, Apache, BSD and MIT licenses.\n\n2.\tLICENSE GRANT\n\n(a)\tSubject to the terms and conditions of this Agreement, nexB grants to Licensee a non-exclusive, non-transferable license during the Subscription or Evaluation Period to install and use the Software on the number of computers and for the number of Users specified in the Order Form.\n\n(b)\tSubject to the terms and conditions of this Agreement, nexB grants to Licensee a non-exclusive, non-transferable license during the Subscription or Evaluation Period to install and use the Content on the number of computers and for the number of Users specified in the Order Form.\n\n(c)\tThis is not a perpetual license. Licensee has no right to retain or to use the Software or Content after termination of the applicable Subscription or Evaluation Period for any reason. Licensee may not permit access to or use of the Software by any Users other than the Users licensed and paid for by Licensee.\n\n(d)\tLicensee may make a reasonable number of copies of the Software exclusively for back-up, non-production testing, disaster recovery, failover or archival purposes. Licensee may not publish, display, disclose, rent, lease, modify, loan, distribute, transfer, assign or sublicense the Software or create derivative works based on the Software or any part thereof. Licensee may not reverse engineer, decompile, translate, adapt, or disassemble the Software, nor shall the Licensee attempt to create the source code from the object code for the Software.\n\n3.\tUPDATES\nnexB, at its sole discretion, may provide updates in connection with the Software. Updates may be provided by email, downloads or otherwise as nexB deems appropriate. Updates will be provided without charge during the Subscription Period.\n\n4.\tOWNERSHIP\n\n(a)\tThe Software is the property of nexB or its suppliers. The Software is licensed, not sold. Title and copyrights to the Software, in whole and in part and all copies thereof, and all modifications, enhancements, derivatives and other alterations of the Software regardless of who made any modifications, if any, are, and will remain, the sole and exclusive property of nexB and its suppliers.\nLicensee has a limited license to use the Software (i) for as long as this Agreement remains in full force and effect and subject to any applicable Subscription (or Evaluation) Period, (ii) provided that any other agreement concerning Licensee\u2019s use of the Software remains in full force and effect and (iii) for so long as Licensee has timely made payment of any Subscription Fees due nexB. Any other use of the Software by any person, business, corporation, government organization or any other entity is strictly forbidden and a violation of this Agreement.\n\n(b)\tThe Software is protected by United States Copyright Law and International Treaty provisions. Further, the structure, organization, and code embodied in the Software are the valuable and confidential trade secrets of nexB and its suppliers and are protected by intellectual property laws and treaties. All rights not expressly granted to Licensee herein are expressly reserved by nexB. Licensee may not remove any proprietary notices from any copy of the Software or Documentation. Licensee agrees to abide by the copyright law and all other applicable laws of the United States including, but not limited to, export control laws.\n\n(c)\tLicensee acknowledges that any symbols, trademarks, tradenames, and service marks adopted by nexB to identify the Software belong to nexB and that Licensee shall have no rights therein.\n\n5.\tCONFIDENTIALITY\nLicensee acknowledges that the Software contains proprietary trade secrets of nexB and hereby agrees to maintain the confidentiality of the Software using at least the same degree of care as used to maintain the confidentiality of their own most confidential information. Licensee agrees to reasonably communicate the terms and conditions of this Agreement to those persons employed by Licensee or otherwise within their organization who come into contact with the Software, and to use reasonable best efforts to ensure their compliance with such terms and conditions, including, without limitation, not knowingly permitting such persons to use any portion of the Software for the purpose of deriving the source code of the Software.\n\n6.\tTHIRD-PARTY SOFTWARE\n\n(a)\tThe Licensee acknowledges that the Software may contain third-party software, including Open Source Software, which is licensed to Licensee in accordance with the separate license agreements included with the Software, and subject to any obligations or restrictions set forth herein. Licensee agrees to abide by the terms and conditions of the third-party software license agreements. nexB will have no responsibility with respect to any third-party software, and Licensee will look solely to the licensor(s) of the third-party software for any remedy. nexB claims no right in the third-party software.\n\n(b)\tnexB will notify Licensee in writing whether there is any Open Source Software embedded in the Software. For any such Open Source Software, nexB warrants that it has complied with any Open Source License terms and conditions and provided Licensee with the license terms, source code or other information necessary for Licensee's compliance with such license terms and conditions. nexB warrants that it will provide an updated disclosure of Open Source Software in the documentation for each new release of the Software. Licensee may also request a separate disclosure of the Open Source Software used in the current version of the Software.\n\n7.\tLIMITED WARRANTY\n\n(a)\tIf Licensee has paid a license fee for the Software, nexB warrants to Licensee during the Subscription Period that the Software when used for its intended purpose will achieve in all material respects the functionality described in the Documentation. nexB does not warrant that the Software will be error-free. This warranty is only for the benefit of the Licensee.\n\n(b)\tLicensee\u2019s sole and exclusive remedy for nexB\u2019s breach of this warranty shall be that nexB shall be required to use commercially reasonable efforts to modify the Software to achieve in all material respects the functionality described in the Documentation and if nexB is unable to restore such functionality, then Licensee shall be entitled to terminate the Agreement and shall be entitled to receive a pro-rata refund of the license fees paid for under the Agreement for its use of the Software but which use has not yet been furnished by nexB as of the date of such termination. nexB shall have no obligation with respect to a warranty claim unless notified of such claim within thirty (30) days after Licensee first learns or should have learned of any material functionality problem.\n\n(c)\tIn the event of a failure of the Software to achieve the functionality described in the Documentation, Licensee will notify nexB of the problem using nexB's online tracking system with sufficient details as reasonably requested by nexB in order to allow nexB to attempt to reproduce the problem. nexB shall use its best efforts to provide a correction or workaround to the Licensee within the time period specified for the problem severity in Exhibit B.\n\n(d)\tnexB reserves the right, in our sole discretion, to change, update, and enhance the Software at any time including to add functionality or features to, or remove them from, the Software, If nexB removes functionality or features that Licensee deems essential for its use of the Software, then Licensee shall be entitled to terminate the Agreement and shall be entitled to receive a pro-rata refund of the Subscription Fees paid for under the Agreement for its use of the Software, but which use has not yet been furnished by nexB as of the date of such termination.\n\n(e)\tEXCEPT AS EXPRESSLY SET FORTH IN THIS SECTION 7, THE SOFTWARE IS PROVIDED TO LICENSEE ON AN \"AS IS\" BASIS, WITH ANY AND ALL FAULTS, AND WITHOUT ANY WARRANTY OF ANY KIND; AND nexB EXPRESSLY DISCLAIMS ALL REPRESENTATIONS, WARRANTIES AND CONDITIONS WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SATISFACTORY QUALITY, AND NON-INFRINGEMENT OF THIRD-PARTY RIGHTS. nexB DOES NOT WARRANT THAT THE SOFTWARE OR SERVICES WILL MEET LICENSEE\u2019S OR ITS END USERS\u2019 REQUIREMENTS, OR THAT THE OPERATION OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT DEFECTS IN THE SOFTWARE OR SERVICES WILL BE CORRECTED. LICENSEE EXPRESSLY ACKNOWLEDGES AND AGREES THAT THE USE OF THE SOFTWARE AND SERVICES AND ALL RESULTS OF SUCH USE IS SOLELY AT LICENSEE\u2019S AND ITS END USERS\u2019 OWN RISK. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY nexB OR ITS AUTHORIZED REPRESENTATIVES SHALL CREATE A WARRANTY OR IN ANY WAY INCREASE THE SCOPE OF ANY WARRANTY. SOME JURISDICTIONS MAY NOT ALLOW THE EXCLUSION AND/OR LIMITATION OF IMPLIED WARRANTIES OR CONDITIONS, OR ALLOW LIMITATIONS ON HOW LONG AN IMPLIED WARRANTY LASTS, SO THE ABOVE LIMITATIONS OR EXCLUSIONS MAY NOT APPLY TO LICENSEE. IN SUCH EVENT, nexB\u2019S WARRANTIES AND CONDITIONS WITH RESPECT TO THE SOFTWARE AND SERVICES WILL BE LIMITED TO THE GREATEST EXTENT PERMITTED BY APPLICABLE LAW IN SUCH JURISDICTION.\n\n8.\tINDEMNIFICATION\n\n(a)\tnexB will defend and indemnify Licensee for all reasonable costs arising from a claim that Software furnished and used within the scope of this Agreement infringes a U.S. copyright or U.S. patent provided that:\n(i) Licensee notifies nexB in writing within 30 days after Licensee learns or should have learned of the claim\n(ii) nexB has sole control of the defense and all related settlement negotiations, and\n(iii) Licensee provides nexB with the assistance, information, and authority necessary to perform the above.\n\n(b)\tnexB will have no liability for any claim of infringement based on:\n(i) code contained within the Software which was not created by nexB including, but not limited to, the third-party software or Open Source Software;\n(ii) use of a superseded or altered release of the Software, except for such alteration(s) or modification(s) which have been made by nexB or under nexB's direction, if such infringement would have been avoided by the use of a current, unaltered release of the Software that nexB provides to Licensee, or\n(iii) the combination, operation, or use of any Software furnished under this Agreement with programs or data not furnished by nexB if such infringement would have been avoided by the use of the Software without such programs or data.\n\n(c)\tIn the event the Software is held or believed by nexB to infringe, or Licensee's use of the Software is enjoined, nexB will have the option, at its expense, to:\n(i) modify the Software to cause it to become non-infringing;\n(ii) obtain a license for Licensee to continue using the Software;\n(iii) substitute the Software with other Software reasonably suitable to Licensee, or\n(iv) if none of the foregoing remedies are commercially feasible, terminate the license for the infringing Software and refund any Subscription Fees paid for the Software, prorated over the term from the effective date of the Agreement.\n\nThis Section states nexB's entire liability for infringement.\n\n9.\tLIMITATION OF LIABILITY\n\n(a)\tIn no event will nexB be liable to Licensee or any third party for any incidental or consequential damages (including, without limitation, indirect, special, punitive, or exemplary damages for loss of business, loss of profits, business interruption, or loss of business information) arising out of the use of or inability to use the Software, or for any claim by any other party, even if nexB has been advised of the possibility of such damages.\n\n(b)\tnexB's aggregate liability with respect to its obligations under this Agreement or otherwise with respect to the Software, Content and Documentation or otherwise shall not exceed the Subscription Fees received by nexB from Licensee during the 12 month period immediately preceding the event that gave rise to the claim. Because some states and/or countries do not allow the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply.\n\n10.\tNO LEGAL ADVICE\nLicensee\u2019s use of the Software, Content and Documentation is not intended to create, and does not constitute, an attorney-client relationship between Licensee and any person or entity connected with nexB. The Software, Content and Documentation should not be used as a substitute for competent legal advice from a lawyer whom Licensee has retained. Neither the Software, the Documentation nor any communications between nexB and Licensee or any User is intended to provide, and in no event shall it be treated as providing, legal advice.\n\n11.\tEXPORT RESTRICTIONS\nnexB makes no representation that the Software, Content or Documentation is appropriate or available for use outside of the United States of America. Software, Content and Documentation are further subject to United States export controls. No Software, Content or Documentation may be downloaded or otherwise exported or re-exported (1) into (or to a national or resident of) Cuba, Iran, Iraq, Libya, North Korea, Sudan, Syria, or any other country to which the United States has embargoed goods; or (2) to anyone on the U.S. Treasury Department's List of Specially Designated Nationals or the U.S. Commerce Department's Table of Deny Orders. By downloading or using the Software, Content or Documentation, Licensee represents and warrants that they are not located in, under the control of, or a national or resident of any such country or on any such list.\n\n12.\tU.S GOVERNMENT RESTRICTED RIGHTS\nThe Software has been developed entirely at private expense and is provided as \"Commercial Computer Software\" or \"restricted computer software\". Use, duplication, or disclosure by the United States Government is subject to restrictions as set forth in subparagraph (c) (1) (ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs (c) (1) and (2) of the Commercial Computer Software-Restricted Rights clause at 48 CFR 52.227-19, and successor thereof, as applicable.\n\n13.\tTERMINATION\n\n(a)\tIf Licensee fails to comply with the terms and conditions of this Agreement, this Agreement and Licensee's right and license to use the Software will terminate immediately. Licensee may terminate this Agreement at any time by notifying nexB. Upon the termination of this Agreement, Licensee must cease using the Software and delete the Software from its computers and archives.\n\n(b)\tDuring an Evaluation Period, nexB may terminate this License Agreement for convenience and for any or no reason and may, at its sole discretion, require Licensee to return the Software to nexB or discontinue Licensee access to the Software at any time.\n\n(c)\tIn addition to any other termination rights provided in this Agreement, either party may terminate this Agreement immediately upon written notice if the other party materially breaches any provision of this Agreement and fails to cure such breach within 30 days after delivery of a written notice describing the breach.\n\n14.\tMARKETING\nLicensee agrees to be identified as a customer of nexB and that nexB may refer to Licensee by name, trade name and trademark, if applicable, and may briefly describe Licensee's business in nexB's marketing materials, on nexB's web site, in public or legal documents. Licensee can deny nexB this right at any time by submitting a written request via email to sales@nexb.com, requesting to be excluded from Software marketing material.\n\n15.\tPAYMENT\nSubscription Fees are exclusive of sales and use taxes. Licensee shall pay or reimburse nexB for such taxes on or related to the Software unless an exemption certificate or a direct payment permit is provided to nexB. Unless otherwise agreed upon by the parties in writing, all undisputed invoices will be paid thirty (30) days from the Effective Date of the Agreement.\n\n16.\tGENERAL\n\n(a)\tLicensee agrees that all agreements, notices, disclosures, and other communications that nexB provides to Licensee electronically satisfy any legal requirement that such communications be in writing, to the extent permitted by applicable law.\n\n(b)\tLicensee shall not assign this Agreement or transfer any of its rights hereunder, or delegate the performance of any of its duties or obligations arising under this Agreement, whether by merger, acquisition, sale of assets, operation of law, or otherwise, without the prior written consent of nexB. Subject to the foregoing, this Agreement shall be binding upon, and inure to the benefit of, the successors and assigns of the parties thereto. Except as otherwise specified in this Agreement, this Agreement may be amended or supplemented only by a writing that refers explicitly to this Agreement and that is signed on behalf of both parties. No waiver will be implied from conduct or failure to enforce rights.\n\n(c)\tThis Agreement will be governed by the laws of the State of California without regard to conflicts of law provisions thereof. The parties expressly disclaim the application of the United Nations Convention on Contracts for the International Sale of Goods and the Uniform Computer Information Transactions Act. Each party irrevocably consents to the exclusive jurisdiction of and venue in the federal or state courts seated in the Counties of San Francisco, San Mateo or Santa Clara, California.\n\n(d)\tAny terms of this Agreement that by their nature extend beyond the termination of this Agreement shall remain in effect until fulfilled, and such terms shall apply to the respective successors and assigns of either party. Terms that survive include, but are not limited to, the provisions of Sections 4 (Ownership), 5 (Confidentiality), 7 (Limited Warranty), 9 (Limitation of Liability) and 16 (General).\n\n(e)\tIf any term of this Agreement is found invalid or unenforceable that term will be enforced to the maximum extent permitted by law and the remainder of this Agreement will remain in full force.\n\n(f)\tThe parties are independent contractors and nothing contained herein shall be construed as creating an agency, partnership, or other form of joint enterprise between the parties. \n\n(g)\tThis Agreement, including the third-party software license agreements and any Order Forms that incorporate this Agreement, represents the entire agreement between the parties relating to Licensee's use of the Software, Content and Documentation and supersedes any and all prior or contemporaneous oral or written representations, communications, or advertising with respect to the Software, Content and Documentation whether written or oral, except to the extent nexB makes any software or services available to Licensee under separate written terms. \n\nIN WITNESS WHEREOF, each of the parties hereto has caused this Agreement to be executed on its behalf by its duly authorized representative.\n\nnexB\t\t Licensee - \n\nBy:\t\t By:\t\n\nName:\t\t Name:\t\n\nTitle:\t\t Title:\t\n\nRevision 1.1.0 October 2017", + "json": "nexb-ssla-1.1.0.json", + "yaml": "nexb-ssla-1.1.0.yml", + "html": "nexb-ssla-1.1.0.html", + "license": "nexb-ssla-1.1.0.LICENSE" + }, + { + "license_key": "ngpl", + "category": "Copyleft Limited", + "spdx_license_key": "NGPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Nethack General Public License\nCopyright (c) 1989 M. Stephenson\n(Based on the BISON general public license, copyright 1988 Richard M. Stallman)\nEveryone is permitted to copy and distribute verbatim copies of this license, but changing it is not allowed. You can also use this wording to make the terms for other programs.\n\nThe license agreements of most software companies keep you at the mercy of those companies. By contrast, our general public license is intended to give everyone the right to share NetHack. To make sure that you get the rights we want you to have, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. Hence this license agreement.\n\nSpecifically, we want to make sure that you have the right to give away copies of NetHack, that you receive source code or else can get it if you want it, that you can change NetHack or use pieces of it in new free programs, and that you know you can do these things.\n\nTo make sure that everyone has such rights, we have to forbid you to deprive anyone else of these rights. For example, if you distribute copies of NetHack, 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 tell them their rights.\n\nAlso, for our own protection, we must make certain that everyone finds out that there is no warranty for NetHack. If NetHack is modified by someone else and passed on, we want its recipients to know that what they have is not what we distributed.\n\nTherefore we (Mike Stephenson and other holders of NetHack copyrights) make the following terms which say what you must do to be allowed to distribute or change NetHack.\nCOPYING POLICIES\n\n 1. You may copy and distribute verbatim copies of NetHack source code as you receive it, in any medium, provided that you keep intact the notices on all files that refer to copyrights, to this License Agreement, and to the absence of any warranty; and give any other recipients of the NetHack program a copy of this License Agreement along with the program.\n 2. You may modify your copy or copies of NetHack or any portion of it, and copy and distribute such modifications under the terms of Paragraph 1 above (including distributing this License Agreement), provided that you also do the following:\n\n a) cause the modified files to carry prominent notices stating that you changed the files and the date of any change; and\n\n b) cause the whole of any work that you distribute or publish, that in whole or in part contains or is a derivative of NetHack or any part thereof, to be licensed at no charge to all third parties on terms identical to those contained in this License Agreement (except that you may choose to grant more extensive warranty protection to some or all third parties, at your option)\n\n c) You may charge a distribution fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.\n 3. You may copy and distribute NetHack (or a portion or derivative of it, under Paragraph 2) in object code or executable form under the terms of Paragraphs 1 and 2 above provided that you also do one of the following:\n\n a) accompany it with the complete machine-readable source code, which must be distributed under the terms of Paragraphs 1 and 2 above; or,\n\n b) accompany it with full information as to how to obtain the complete machine-readable source code from an appropriate archive site. (This alternative is allowed only for noncommercial distribution.)\n\n For these purposes, complete source code means either the full source distribution as originally released over Usenet or updated copies of the files in this distribution used to create the object code or executable.\n 4. You may not copy, sublicense, distribute or transfer NetHack except as expressly provided under this License Agreement. Any attempt otherwise to copy, sublicense, distribute or transfer NetHack is void and your rights to use the program under this License agreement shall be automatically terminated. However, parties who have received computer software programs from you with this License Agreement will not have their licenses terminated so long as such parties remain in full compliance.\n\nStated plainly: You are permitted to modify NetHack, or otherwise use parts of NetHack, provided that you comply with the conditions specified above; in particular, your modified NetHack or program containing parts of NetHack must remain freely available as provided in this License Agreement. In other words, go ahead and share NetHack, but don't try to stop anyone else from sharing it farther.", + "json": "ngpl.json", + "yaml": "ngpl.yml", + "html": "ngpl.html", + "license": "ngpl.LICENSE" + }, + { + "license_key": "nice", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and/or distribute this software for any purpose with or\nwithout fee is hereby granted.\n\nThis software and this license are NOT allowed to be used by any person who writes\nprogramming source code but:\n\n- Does not write documentation of their source code's public Application Programming\n Interface (API).\n- Negligently writes documentation of their source code's public API in order to bypass\n this restriction.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO\nTHIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT\nSHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR\nANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\nOF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH\nTHE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "nice.json", + "yaml": "nice.yml", + "html": "nice.html", + "license": "nice.LICENSE" + }, + { + "license_key": "nicta-exception", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-nicta-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "No right, title or interest in or to any trade mark, service mark, logo\nor trade name of National ICT Australia Limited, ABN 62 102 206 173\n(\u201cNICTA\u201d) or its licensors is granted. Modified versions of the Program\nmust be plainly marked as such, and must not be distributed using\n\u201ceChronos\u201d as a trade mark or product name, or misrepresented as being\nthe original Program.", + "json": "nicta-exception.json", + "yaml": "nicta-exception.yml", + "html": "nicta-exception.html", + "license": "nicta-exception.LICENSE" + }, + { + "license_key": "nicta-psl", + "category": "Permissive", + "spdx_license_key": "NICTA-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-nicta-psl" + ], + "is_exception": false, + "is_deprecated": false, + "text": "NICTA Public Software Licence\nVersion 1.0\n\nCopyright \u00a9 2004 National ICT Australia Ltd\n\nAll rights reserved.\n\nBy this licence, National ICT Australia Ltd (NICTA) grants permission,\nfree of charge, to any person who obtains a copy of this software\nand any associated documentation files (\"the Software\") to use and\ndeal with the Software in source code and binary forms without\nrestriction, with or without modification, and to permit persons\nto whom the Software is furnished to do so, provided that the\nfollowing conditions are met:\n\n- Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimers.\n- Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimers in\n the documentation and/or other materials provided with the\n distribution.\n- The name of NICTA may not be used to endorse or promote products\n derived from this Software without specific prior written permission.\n\nEXCEPT AS EXPRESSLY STATED IN THIS LICENCE AND TO THE FULL EXTENT\nPERMITTED BY APPLICABLE LAW, THE SOFTWARE IS PROVIDED \"AS-IS\" AND\nNICTA MAKES NO REPRESENTATIONS, WARRANTIES OR CONDITIONS OF ANY\nKIND, EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY\nREPRESENTATIONS, WARRANTIES OR CONDITIONS REGARDING THE CONTENTS\nOR ACCURACY OF THE SOFTWARE, OR OF TITLE, MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE, NONINFRINGEMENT, THE ABSENCE OF LATENT\nOR OTHER DEFECTS, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR\nNOT DISCOVERABLE.\n\nTO THE FULL EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL\nNICTA BE LIABLE ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\nNEGLIGENCE) FOR ANY LOSS OR DAMAGE WHATSOEVER, INCLUDING (WITHOUT\nLIMITATION) LOSS OF PRODUCTION OR OPERATION TIME, LOSS, DAMAGE OR\nCORRUPTION OF DATA OR RECORDS; OR LOSS OF ANTICIPATED SAVINGS,\nOPPORTUNITY, REVENUE, PROFIT OR GOODWILL, OR OTHER ECONOMIC LOSS;\nOR ANY SPECIAL, INCIDENTAL, INDIRECT, CONSEQUENTIAL, PUNITIVE OR\nEXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH THIS LICENCE,\nTHE SOFTWARE OR THE USE OF THE SOFTWARE, EVEN IF NICTA HAS BEEN\nADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nIf applicable legislation implies warranties or conditions, or\nimposes obligations or liability on NICTA in respect of the Software\nthat cannot be wholly or partly excluded, restricted or modified,\nNICTA's liability is limited, to the full extent permitted by the\napplicable legislation, at its option, to:\n\na. in the case of goods, any one or more of the following:\n i. the replacement of the goods or the supply of equivalent goods;\n ii. the repair of the goods;\n iii. the payment of the cost of replacing the goods or of acquiring\n equivalent goods;\n iv. the payment of the cost of having the goods repaired; or\nb. in the case of services:\n i. the supplying of the services again; or \n ii. the payment of the cost of having the services supplied\n again.", + "json": "nicta-psl.json", + "yaml": "nicta-psl.yml", + "html": "nicta-psl.html", + "license": "nicta-psl.LICENSE" + }, + { + "license_key": "niels-ferguson", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-niels-ferguson", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright (c) 2002 by Niels Ferguson.\n\nThe author hereby grants a perpetual license to everybody to use this\ncode for any purpose as long as the copyright message is included in the\nsource code of this or any derived work.\n\nYes, this means that you, your company, your club, and anyone else can\nuse this code anywhere you want. You can change it and distribute it\nunder the GPL, include it in your commercial product without releasing\nthe source code, put it on the web, etc. The only thing you cannot do is\nremove my copyright message, or distribute any source code based on this\nimplementation that does not include my copyright message.\n\nI appreciate a mention in the documentation or credits, but I understand\nif that is difficult to do. I also appreciate it if you tell me where\nand why you used my code.\n\nDISCLAIMER: As I'm giving away my work for free, I'm of course not going\nto accept any liability of any form. This code, or the Twofish cipher,\nmight very well be flawed; you have been warned. This software is\nprovided as-is, without any kind of warrenty or guarantee. And that is\nreally all you can expect when you download code for free from the\nInternet.", + "json": "niels-ferguson.json", + "yaml": "niels-ferguson.yml", + "html": "niels-ferguson.html", + "license": "niels-ferguson.LICENSE" + }, + { + "license_key": "nilsson-historical", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nilsson-historical", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software is\nfreely granted, provided that the above copyright notice, this notice\nand the following disclaimer are preserved with no changes.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.", + "json": "nilsson-historical.json", + "yaml": "nilsson-historical.yml", + "html": "nilsson-historical.html", + "license": "nilsson-historical.LICENSE" + }, + { + "license_key": "nist-pd", + "category": "Public Domain", + "spdx_license_key": "NIST-PD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Conditions Of Use\n\nThis software was developed by employees of the National Institute of\nStandards and Technology (NIST), an agency of the Federal Government.\nPursuant to title 15 Untied States Code Section 105, works of NIST\nemployees are not subject to copyright protection in the United States\nand are considered to be in the public domain. As a result, a formal\nlicense is not needed to use the software.\n\nThis software is provided by NIST as a service and is expressly\nprovided \"AS IS.\" NIST MAKES NO WARRANTY OF ANY KIND, EXPRESS, IMPLIED\nOR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTY OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT\nAND DATA ACCURACY. NIST does not warrant or make any representations\nregarding the use of the software or the results thereof, including but\nnot limited to the correctness, accuracy, reliability or usefulness of\nthe software.\n\nPermission to use this software is contingent upon your acceptance\nof the terms of this agreement", + "json": "nist-pd.json", + "yaml": "nist-pd.yml", + "html": "nist-pd.html", + "license": "nist-pd.LICENSE" + }, + { + "license_key": "nist-pd-fallback", + "category": "Permissive", + "spdx_license_key": "NIST-PD-fallback", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software was developed by employees of the National Institute of Standards\nand Technology (NIST), an agency of the Federal Government and is being made\navailable as a public service. Pursuant to title 17 United States Code Section\n105, works of NIST employees are not subject to copyright protection in the\nUnited States. This software may be subject to foreign copyright. Permission\nin the United States and in foreign countries, to the extent that NIST may hold\ncopyright, to use, copy, modify, create derivative works, and distribute this\nsoftware and its documentation without fee is hereby granted on a non-exclusive\nbasis, provided that this notice and disclaimer of warranty appears in all\ncopies.\n\nTHE SOFTWARE IS PROVIDED 'AS IS' WITHOUT ANY WARRANTY OF ANY KIND, EITHER\nEXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY\nTHAT THE SOFTWARE WILL CONFORM TO SPECIFICATIONS, ANY IMPLIED WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND FREEDOM FROM\nINFRINGEMENT, AND ANY WARRANTY THAT THE DOCUMENTATION WILL CONFORM TO THE\nSOFTWARE, OR ANY WARRANTY THAT THE SOFTWARE WILL BE ERROR FREE. IN NO EVENT\nSHALL NIST BE LIABLE FOR ANY DAMAGES, INCLUDING, BUT NOT LIMITED TO, DIRECT,\nINDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES, ARISING OUT OF, RESULTING FROM, OR \nN ANY WAY CONNECTED WITH THIS SOFTWARE, WHETHER OR NOT BASED UPON WARRANTY,\nCONTRACT, TORT, OR OTHERWISE, WHETHER OR NOT INJURY WAS SUSTAINED BY PERSONS OR\nPROPERTY OR OTHERWISE, AND WHETHER OR NOT LOSS WAS SUSTAINED FROM, OR AROSE OUT\nOF THE RESULTS OF, OR USE OF, THE SOFTWARE OR SERVICES PROVIDED HEREUNDER.", + "json": "nist-pd-fallback.json", + "yaml": "nist-pd-fallback.yml", + "html": "nist-pd-fallback.html", + "license": "nist-pd-fallback.LICENSE" + }, + { + "license_key": "nist-srd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nist-srd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright protection on this compilation of data has been secured by the Secretary of the U.S. Department of Commerce on behalf of the United States in the United States and all countries that are parties to the Universal Copyright Convention, pursuant to Section 290(e) of Title 15 of the United States Code.", + "json": "nist-srd.json", + "yaml": "nist-srd.yml", + "html": "nist-srd.html", + "license": "nist-srd.LICENSE" + }, + { + "license_key": "nlod-1.0", + "category": "Permissive", + "spdx_license_key": "NLOD-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Norwegian Licence for Open Government Data (NLOD)\nPreface of licence\n\nThis licence grants you the right to copy, use and distribute information, provided you acknowledge the contributors and comply with the terms and conditions stipulated in this licence. By using information made available under this licence, you accept the terms and conditions set forth in this licence. As set out in Section 7, the licensor disclaims any and all liability for the quality of the information and what the information is used for.\n\nThis licence shall not impose any limitations on the rights or freedoms of the licensee under the Norwegian Freedom of Information Act or any other legislation granting the general public a right of access to public sector information, or that follow from exemptions or limitations stipulated in the Norwegian Copyright Act. Further, the licence shall not impose any limitations on the licensee's freedom of expression recognized by law.\n\n1. Definitions\n\n\u00abDatabase\u00bb shall mean a database or similar protected under Section 43 of the Norwegian Copyright Act. \n\u00abInformation\u00bb shall mean texts, images, recordings, data sets or other works protected under Section 1 of the Norwegian Copyright Act, or which are protected under provisions addressing what is referred to as \u00abneighbouring rights\u00bb in Chapter 5 of the Norwegian Copyright Act (including databases and photographs), and which are distributed under this licence. \n\u00abCopy\u00bb shall mean reproduction in any form. \n\u00abLicensee\u00bb and \u00abyou\u00bb shall mean natural or legal persons using information under this licence. \n\u00abLicensor\u00bb shall mean the natural or legal person that makes information available under this licence. \n\u00abDistribute\u00bb shall mean any actions whereby information is made available, including to distribute, transfer, communicate, disperse, show, perform, sell, lend and rent. \n\u00abUse\u00bb shall mean one or more actions relevant to copyright law requiring permission from the owner of the copyright.\n\n2. Licence \nThe licensee, subject to the limitations that follow from this licence, may use the information for any purpose and in all contexts, by:\n\n* copying the information and distributing the information to others, \n* modifying the information and/or combining the information with other information, and \n* copying and distributing such changed or combined information. \n* This is a non-exclusive, free, perpetual and worldwide licence. The information may be used in any medium and format known today and/or which will become known in the future. The Licensee shall not sub-license or transfer this licence.\n\n3. Exemptions \nThe licence does not apply to and therefore does not grant a right to use:\n\n* information which contains personal data covered by the Norwegian Personal Data Act unless there is a legitimate basis for the disclosure and further processing of the personal data \n* information distributed in violation of a statutory obligation to observe confidentiality \n* information excluded from public disclosure pursuant to law, including information deemed sensitive under the Norwegian National Security Act \n* information subject to third party rights which the licensor is not authorised to license to the licensee \n* information protected by intellectual property rights other than copyright and neighbouring rights in accordance with Chapter 5 of the Norwegian Copyright Act, such as trademarks, patents and design rights, but this does not entail an impediment to use information where the licensor's logo has been permanently integrated into the information or to attribute the origin of the information in accordance with the article below relating to attribution.\n\nIf the licensor has made available information not covered by the licence according to the above list, the licensee must cease all use of the information under the licence, and erase the information as soon as he or she becomes aware of or should have understood that the information is not covered by the licence.\n\n4. Effects of breach of the licence \nThe licence is subject to the licensee's compliance with the terms and conditions of this licence. In the event that the licensee commits a breach of this licence, this will entail that the licensee's right to use the information will be revoked immediately without further notice. In case of such a breach, the licensee must immediately and without further notice take measures to cause the infringement to end. Because the right to use the information has been terminated, the licensee must cease all use of the information by virtue of the licence.\n\n5. Attribution \nThe licensee shall attribute the licensor as specified by the licensor and include a reference to this licence. To the extent practically possible, the licensee shall provide a link to both this licence and the source of the information.\n\nIf the licensor has not specified how attributions shall be made, the licensee shall normally state the following: \u00abContains data under the Norwegian licence for Open Government data (NLOD) distributed by [name of licensor]\u00bb.\n\nIf the licensor has specified that the information shall only be available under a specific version of this licence, cf. Section 10, the licensee shall also state this.\n\nIf the information has been changed, the licensee must clearly indicate that changes have been made by the licensee.\n\n6. Proper use \nThe licensee shall not use the information in a manner that appears misleading nor present the information in a distorted or incorrect manner. \nNeither the licensor's nor other contributors' names or trademarks must be used to support, recommend or market the licensee or any products or services using the information.\n\n7. Disclaimer of liability \nThe information is licensed \u00abas is\u00bb. The information may contain errors and omissions. The licensor provides no warranties, including relating to the content and relevance of the information.\n\nThe licensor disclaims any liability for errors and defects associated with the information to the maximum extent permitted by law.\n\nThe licensor shall not be liable for direct or indirect losses as a result of use of the information or in connection with copying or further distribution of the information.\n\n8. Guarantees regarding data quality and accessibility \nThis licence does not prevent the licensor from issuing supplementary statements regarding expected or intended data quality and accessibility. Such statements shall be regarded as indicative in nature and not binding on the part of the licensor. The disclaimers in Section 7 also apply in full for such indicative statements. Based on separate agreement, the licensor may provide guarantees and distribute the information on terms and conditions different from those set forth in this licence.\n\n9. Licence compatibility \nIf the licensee is to distribute an adapted or combined work based on information covered by this licence and some other work licensed under a licence compatible by contract, such distribution may be based on an appropriate licence compatible by contract, cf. the list below.\n\nA licence compatible by contract shall mean the following licences:\n\n* for all information: Open Government Licence (version 1.0), \n* for those parts of the information which do not constitute databases: Creative Commons Attribution Licence (generic version 1.0, 2.0, 2.5 and unported version 3.0) and Creative Commons Navngivelse 3.0 Norge, \n* for those parts of the information which constitute databases: Open Data Commons Attribution License (version 1.0).\n\nThis provision does not prevent other licences from being compatible with this licence based on their content.\n\n10. New versions of the licence \nThe licensee may choose to use the information covered by this licence under any new versions of the Norwegian licence for Open Government data (NLOD) issued by the responsible ministry (currently the Ministry of Government Administration, Reform and Church Affairs) when these versions are final and official, unless the licensor when making the information available under this licence specifically has stated that solely version 1.0 of this licence may be used.\n\n11. Governing law and legal venue \nThis licence, including its formation, and any disputes and claims arising in connection with or relating to this licence, shall be regulated by Norwegian law. The legal venue shall be the licensor's ordinary legal venue. The licensor may, with regard to intellectual proprietary rights, choose to pursue a claim at other competent legal venues and/or based on the laws of the country where the intellectual property rights are sought enforced.", + "json": "nlod-1.0.json", + "yaml": "nlod-1.0.yml", + "html": "nlod-1.0.html", + "license": "nlod-1.0.LICENSE" + }, + { + "license_key": "nlod-2.0", + "category": "Permissive", + "spdx_license_key": "NLOD-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Norwegian Licence for Open Government Data (NLOD) 2.0\n\nPreface of licence\n\nThis licence grants you the right to copy, use and distribute information, provided you acknowledge the contributors and comply with the terms and conditions stipulated in this licence. By using information made available under this licence, you accept the terms and conditions set forth in this licence. As set out in Section 7, the licensor disclaims any and all liability for the quality of the information and what the information is used for.\n\nThis licence shall not impose any limitations on the rights or freedoms of the licensee under the Norwegian Freedom of Information Act or any other legislation granting the general public a right of access to public sector information, or that follow from exemptions or limitations stipulated in the Norwegian Copyright Act. Further, the licence shall not impose any limitations on the licensee\u2019s freedom of expression recognized by law.\n\n1. Definitions\n\n \u00abDatabase\u00bb shall mean a database or similar protected under Section 43 of the Norwegian Copyright Act.\n \u00abInformation\u00bb shall mean texts, images, recordings, data sets or other works protected under Section 1 of the Norwegian Copyright Act, or which are protected under provisions addressing what is referred to as \u00abneighbouring rights\u00bb in Chapter 5 of the Norwegian Copyright Act (including databases and photographs), and which are distributed under this licence.\n \u00abCopy\u00bb shall mean reproduction in any form.\n \u00abLicensee\u00bb and \u00abyou\u00bb shall mean natural or legal persons using information under this licence.\n \u00abLicensor\u00bb shall mean the natural or legal person that makes information available under this licence.\n \u00abDistribute\u00bb shall mean any actions whereby information is made available, including to distribute, transfer, communicate, disperse, show, perform, sell, lend and rent.\n \u00abUse\u00bb shall mean one or more actions relevant to copyright law requiring permission from the owner of the copyright.\n\n2. Licence\nThe licensee, subject to the limitations that follow from this licence, may use the information for any purpose and in all contexts, by:\n\n * copying the information and distributing the information to others,\n * modifying the information and/or combining the information with other information, and\n * copying and distributing such changed or combined information.\n\nThis is a non-exclusive, free, perpetual and worldwide licence. The information may be used in any medium and format known today and/or which will become known in the future. The Licensee shall not sub-license or transfer this licence.\n\n3. Exemptions\nThe licence does not apply to and therefore does not grant a right to use:\n\n * information which contains personal data covered by the Norwegian Personal Data Act unless there is a legitimate basis for the disclosure and further processing of the personal data\n * information distributed in violation of a statutory obligation to observe confidentiality\n * information excluded from public disclosure pursuant to law, including information deemed sensitive under the Norwegian National Security Act\n * information subject to third party rights which the licensor is not authorised to license to the licensee\n * information protected by intellectual property rights other than copyright and neighbouring rights in accordance with Chapter 5 of the Norwegian Copyright Act, such as trademarks, patents and design rights, but this does not entail an impediment to use information where the licensor\u2019s logo has been permanently integrated into the information or to attribute the origin of the information in accordance with the article below relating to attribution.\n\nIf the licensor has made available information not covered by the licence according to the above list, the licensee must cease all use of the information under the licence, and erase the information as soon as he or she becomes aware of or should have understood that the information is not covered by the licence.\n\n4. Effects of breach of the licence\nThe licence is subject to the licensee\u2019s compliance with the terms and conditions of this licence. In the event that the licensee commits a breach of this licence, this will entail that the licensee\u2019s right to use the information will be revoked immediately without further notice. In case of such a breach, the licensee must immediately and without further notice take measures to cause the infringement to end. Because the right to use the information has been terminated, the licensee must cease all use of the information by virtue of the licence.\n\n5. Attribution\nThe licensee shall attribute the licensor as specified by the licensor and include a reference to this licence. To the extent practically possible, the licensee shall provide a link to both this licence and the source of the information.\n\nIf the licensor has not specified how attributions shall be made, the licensee shall normally state the following: \u00abContains data under the Norwegian licence for Open Government data (NLOD) distributed by [name of licensor]\u00bb.\n\nIf the licensor has specified that the information shall only be available under a specific version of this licence, cf. Section 10, the licensee shall also state this.\n\nIf the information has been changed, the licensee must clearly indicate that changes have been made by the licensee.\n\n6. Proper use\nThe licensee shall not use the information in a manner that appears misleading nor present the information in a distorted or incorrect manner.\nNeither the licensor\u2019s nor other contributors' names or trademarks must be used to support, recommend or market the licensee or any products or services using the information.\n\n7. Disclaimer of liability\nThe information is licensed \u00abas is\u00bb. The information may contain errors and omissions. The licensor provides no warranties, including relating to the content and relevance of the information.\n\nThe licensor disclaims any liability for errors and defects associated with the information to the maximum extent permitted by law.\n\nThe licensor shall not be liable for direct or indirect losses as a result of use of the information or in connection with copying or further distribution of the information.\n\n8. Guarantees regarding data quality and accessibility\nThis licence does not prevent the licensor from issuing supplementary statements regarding expected or intended data quality and accessibility. Such statements shall be regarded as indicative in nature and not binding on the part of the licensor. The disclaimers in Section 7 also apply in full for such indicative statements. Based on separate agreement, the licensor may provide guarantees and distribute the information on terms and conditions different from those set forth in this licence.\n\n9. Licence compatibility\nIf the licensee is to distribute an adapted or combined work based on information covered by this licence and some other work licensed under a licence compatible by contract, such distribution may be based on an appropriate licence compatible by contract, cf. the list below.\n\nA licence compatible by contract shall mean the following licences:\n\n * for all information: Open Government Licence (version 1.0, 2.0 and 3.0), Creative Commons Attribution Licence (international version 4.0 and norwegian version 4.0),\n * for those parts of the information which do not constitute databases: Creative Commons Attribution Licence (generic version 1.0, 2.0, 2.5 and unported version 3.0) and Creative Commons Navngivelse 3.0 Norge,\n * for those parts of the information which constitute databases: Open Data Commons Attribution License (version 1.0).\n \nThis provision does not prevent other licences from being compatible with this licence based on their content.\n\n10. New versions of the licence\nThe licensee may choose to use the information covered by this licence under any new versions of the Norwegian licence for Open Government data (NLOD) issued by the responsible ministry (currently the Ministry of Local Government and Modernisation) when these versions are final and official, unless the licensor when making the information available under this licence specifically has stated that solely version 2.0 of this licence may be used.\n\n11. Governing law and legal venue\nThis licence, including its formation, and any disputes and claims arising in connection with or relating to this licence, shall be regulated by Norwegian law. The legal venue shall be the licensor\u2019s ordinary legal venue. The licensor may, with regard to intellectual proprietary rights, choose to pursue a claim at other competent legal venues and/or based on the laws of the country where the intellectual property rights are sought enforced.", + "json": "nlod-2.0.json", + "yaml": "nlod-2.0.yml", + "html": "nlod-2.0.html", + "license": "nlod-2.0.LICENSE" + }, + { + "license_key": "nlpl", + "category": "Public Domain", + "spdx_license_key": "NLPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "NO LIMIT PUBLIC LICENSE\n Version 0, June 2012\n\nGilles LAMIRAL\nLa Billais\n35580 Baulon\nFrance\n\n NO LIMIT PUBLIC LICENSE\nTerms and conditions for copying, distribution, modification\nor anything else.\n\n 0. No limit to do anything with this work and this license.", + "json": "nlpl.json", + "yaml": "nlpl.yml", + "html": "nlpl.html", + "license": "nlpl.LICENSE" + }, + { + "license_key": "no-license", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-no-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "", + "json": "no-license.json", + "yaml": "no-license.yml", + "html": "no-license.html", + "license": "no-license.LICENSE" + }, + { + "license_key": "node-js", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-node-js", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Node's license follows:\n\n====\n\nCopyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\n====\n\nThis license applies to all parts of Node that are not externally\nmaintained libraries. The externally maintained libraries used by Node are:\n\n- V8, located at deps/v8. V8's license follows:\n \"\"\"\n This license applies to all parts of V8 that are not externally\n maintained libraries. The externally maintained libraries used by V8\n are:\n\n - PCRE test suite, located in\n test/mjsunit/third_party/regexp-pcre.js. This is based on the\n test suite from PCRE-7.3, which is copyrighted by the University\n of Cambridge and Google, Inc. The copyright notice and license\n are embedded in regexp-pcre.js.\n\n - Layout tests, located in test/mjsunit/third_party. These are\n based on layout tests from webkit.org which are copyrighted by\n Apple Computer, Inc. and released under a 3-clause BSD license.\n\n - Strongtalk assembler, the basis of the files assembler-arm-inl.h,\n assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h,\n assembler-ia32.cc, assembler-ia32.h, assembler-x64-inl.h,\n assembler-x64.cc, assembler-x64.h, assembler-mips-inl.h,\n assembler-mips.cc, assembler-mips.h, assembler.cc and assembler.h.\n This code is copyrighted by Sun Microsystems Inc. and released\n under a 3-clause BSD license.\n\n - Valgrind client API header, located at third_party/valgrind/valgrind.h\n This is release under the BSD license.\n\n These libraries have their own licenses; we recommend you read them,\n as their terms may differ from the terms below.\n\n Copyright 2006-2012, the V8 project authors. All rights reserved.\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n \"\"\"\n\n- C-Ares, an asynchronous DNS client, located at deps/cares. C-Ares license\n follows:\n \"\"\"\n /* Copyright 1998 by the Massachusetts Institute of Technology.\n *\n * Permission to use, copy, modify, and distribute this\n * software and its documentation for any purpose and without\n * fee is hereby granted, provided that the above copyright\n * notice appear in all copies and that both that copyright\n * notice and this permission notice appear in supporting\n * documentation, and that the name of M.I.T. not be used in\n * advertising or publicity pertaining to distribution of the\n * software without specific, written prior permission.\n * M.I.T. makes no representations about the suitability of\n * this software for any purpose. It is provided \"as is\"\n * without express or implied warranty.\n \"\"\"\n\n- OpenSSL located at deps/openssl. OpenSSL is cryptographic software written\n by Eric Young (eay@cryptsoft.com) to provide SSL/TLS encryption. OpenSSL's\n license follows:\n \"\"\"\n /* ====================================================================\n * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n *\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n *\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in\n * the documentation and/or other materials provided with the\n * distribution.\n *\n * 3. All advertising materials mentioning features or use of this\n * software must display the following acknowledgment:\n * \"This product includes software developed by the OpenSSL Project\n * for use in the OpenSSL Toolkit. (http://www.openssl.org/)\"\n *\n * 4. The names \"OpenSSL Toolkit\" and \"OpenSSL Project\" must not be used to\n * endorse or promote products derived from this software without\n * prior written permission. For written permission, please contact\n * openssl-core@openssl.org.\n *\n * 5. Products derived from this software may not be called \"OpenSSL\"\n * nor may \"OpenSSL\" appear in their names without prior written\n * permission of the OpenSSL Project.\n *\n * 6. Redistributions of any form whatsoever must retain the following\n * acknowledgment:\n * \"This product includes software developed by the OpenSSL Project\n * for use in the OpenSSL Toolkit (http://www.openssl.org/)\"\n *\n * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY\n * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR\n * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n * OF THE POSSIBILITY OF SUCH DAMAGE.\n * ====================================================================\n *\n * This product includes cryptographic software written by Eric Young\n * (eay@cryptsoft.com). This product includes software written by Tim\n * Hudson (tjh@cryptsoft.com).\n *\n */\n \"\"\"\n\n- HTTP Parser, located at deps/http_parser. HTTP Parser's license follows:\n \"\"\"\n http_parser.c is based on src/http/ngx_http_parse.c from NGINX copyright\n Igor Sysoev.\n\n Additional changes are licensed under the same terms as NGINX and\n copyright Joyent, Inc. and other Node contributors. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n IN THE SOFTWARE.\n \"\"\"\n\n- Closure Linter is located at tools/closure_linter. Closure's license\n follows:\n \"\"\"\n # Copyright (c) 2007, Google Inc.\n # All rights reserved.\n #\n # Redistribution and use in source and binary forms, with or without\n # modification, are permitted provided that the following conditions are\n # met:\n #\n # * Redistributions of source code must retain the above copyright\n # notice, this list of conditions and the following disclaimer.\n # * Redistributions in binary form must reproduce the above\n # copyright notice, this list of conditions and the following disclaimer\n # in the documentation and/or other materials provided with the\n # distribution.\n # * Neither the name of Google Inc. nor the names of its\n # contributors may be used to endorse or promote products derived from\n # this software without specific prior written permission.\n #\n # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n # \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n \"\"\"\n\n- tools/cpplint.py is a C++ linter. Its license follows:\n \"\"\"\n # Copyright (c) 2009 Google Inc. All rights reserved.\n #\n # Redistribution and use in source and binary forms, with or without\n # modification, are permitted provided that the following conditions are\n # met:\n #\n # * Redistributions of source code must retain the above copyright\n # notice, this list of conditions and the following disclaimer.\n # * Redistributions in binary form must reproduce the above\n # copyright notice, this list of conditions and the following disclaimer\n # in the documentation and/or other materials provided with the\n # distribution.\n # * Neither the name of Google Inc. nor the names of its\n # contributors may be used to endorse or promote products derived from\n # this software without specific prior written permission.\n #\n # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n # \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n \"\"\"\n\n- lib/punycode.js is copyright 2011 Mathias Bynens \n and released under the MIT license.\n \"\"\"\n * Punycode.js \n * Copyright 2011 Mathias Bynens \n * Available under MIT license \n \"\"\"\n\n- tools/gyp. GYP is a meta-build system. GYP's license follows:\n \"\"\"\n Copyright (c) 2009 Google Inc. All rights reserved.\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n \"\"\"\n\n- Zlib at deps/zlib. zlib's license follows:\n \"\"\"\n /* zlib.h -- interface of the 'zlib' general purpose compression library\n version 1.2.8, April 28th, 2013\n\n Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler\n\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\n Jean-loup Gailly Mark Adler\n jloup@gzip.org madler@alumni.caltech.edu\n */\n \"\"\"\n\n- npm is a package manager program located at deps/npm.\n npm's license follows:\n \"\"\"\n Copyright (c) Isaac Z. Schlueter\n All rights reserved.\n\n npm is released under the Artistic 2.0 License.\n The text of the License follows:\n\n\n --------\n\n\n The Artistic License 2.0\n\n Copyright (c) 2000-2006, The Perl Foundation.\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n\n Definitions\n\n \"Copyright Holder\" means the individual(s) or organization(s)\n named in the copyright notice for the entire Package.\n\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n\n \"You\" and \"your\" means any person who would like to copy,\n distribute, or modify the Package.\n\n \"Package\" means the collection of files distributed by the\n Copyright Holder, and derivatives of that collection and/or of\n those files. A given Package may consist of either the Standard\n Version, or a Modified Version.\n\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n\n \"Distributor Fee\" means any fee that you charge for Distributing\n this Package or providing support for this Package to another\n party. It does not mean licensing fees.\n\n \"Standard Version\" refers to the Package if it has not been\n modified, or has been modified only in ways explicitly requested\n by the Copyright Holder.\n\n \"Modified Version\" means the Package, if it has been changed, and\n such changes were not explicitly requested by the Copyright\n Holder.\n\n \"Original License\" means this Artistic License as Distributed with\n the Standard Version of the Package, in its current version or as\n it may be modified by The Perl Foundation in the future.\n\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n\n \"Compiled\" form means the compiled bytecode, object code, binary,\n or any other form resulting from mechanical transformation or\n translation of the Source form.\n\n\n Permission for Use and Modification Without Distribution\n\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n\n\n Permissions for Redistribution of the Standard Version\n\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n\n\n Distribution of Modified Versions of the Package as Source\n\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n\n (a) make the Modified Version available to the Copyright Holder\n of the Standard Version, under the Original License, so that the\n Copyright Holder may include your modifications in the Standard\n Version.\n\n (b) ensure that installation of your Modified Version does not\n prevent the user installing or running the Standard Version. In\n addition, the Modified Version must bear a name that is different\n from the name of the Standard Version.\n\n (c) allow anyone who receives a copy of the Modified Version to\n make the Source form of the Modified Version available to others\n under\n\n (i) the Original License or\n\n (ii) a license that permits the licensee to freely copy,\n modify and redistribute the Modified Version using the same\n licensing terms that apply to the copy that the licensee\n received, and requires that the Source form of the Modified\n Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor\n Fees are allowed.\n\n\n Distribution of Compiled Forms of the Standard Version\n or Modified Versions without the Source\n\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n\n (6) You may Distribute a Modified Version in Compiled form without\n the Source, provided that you comply with Section 4 with respect to\n the Source of the Modified Version.\n\n\n Aggregating or Linking the Package\n\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n\n\n Items That are Not Considered Part of a Modified Version\n\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n\n\n General Provisions\n\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n\n (11) If your Modified Version has been derived from a Modified\n Version made by someone other than you, you are nevertheless required\n to ensure that your Modified Version complies with the requirements of\n this license.\n\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n\n (14) Disclaimer of Warranty:\n THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS \"AS\n IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL\n LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\n DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\n --------\n\n\n \"Node.js\" and \"node\" trademark Joyent, Inc. npm is not officially\n part of the Node.js project, and is neither owned by nor\n officially affiliated with Joyent, Inc.\n\n Packages published in the npm registry (other than the Software and\n its included dependencies) are not part of npm itself, are the sole\n property of their respective maintainers, and are not covered by\n this license.\n\n \"npm Logo\" created by Mathias Pettersson and Brian Hammond,\n used with permission.\n\n \"Gubblebum Blocky\" font\n Copyright (c) by Tjarda Koster, http://jelloween.deviantart.com\n included for use in the npm website and documentation,\n used with permission.\n\n This program uses several Node modules contained in the node_modules/\n subdirectory, according to the terms of their respective licenses.\n \"\"\"\n\n- tools/doc/node_modules/marked. Marked is a Markdown parser. Marked's\n license follows:\n \"\"\"\n Copyright (c) 2011-2012, Christopher Jeffrey (https://github.com/chjj/)\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n \"\"\"\n\n- test/gc/node_modules/weak. Node-weak is a node.js addon that provides garbage\n collector notifications. Node-weak's license follows:\n \"\"\"\n Copyright (c) 2011, Ben Noordhuis \n\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n \"\"\"\n\n- src/ngx-queue.h. ngx-queue.h is taken from the nginx source tree. nginx's\n license follows:\n \"\"\"\n Copyright (C) 2002-2012 Igor Sysoev\n Copyright (C) 2011,2012 Nginx, Inc.\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\n THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n \"\"\"\n\n- wrk is located at tools/wrk. wrk's license follows:\n \"\"\"\n\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS", + "json": "node-js.json", + "yaml": "node-js.yml", + "html": "node-js.html", + "license": "node-js.LICENSE" + }, + { + "license_key": "nokia-qt-exception-1.1", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "Nokia Qt LGPL Exception version 1.1\n\nAs an additional permission to the GNU Lesser General Public License version\n2.1, the object code form of a \"work that uses the Library\" may incorporate\nmaterial from a header file that is part of the Library. You may distribute\nsuch object code under terms of your choice, provided that:\n\n (i) the header files of the Library have not been modified; and\n (ii) the incorporated material is limited to numerical parameters, data\n structure layouts, accessors, macros, inline functions and templates; and\n (iii) you comply with the terms of Section 6 of the GNU Lesser\n General Public License version 2.1.\n\nMoreover, you may apply this exception to a modified version of the Library,\nprovided that such modification does not involve copying material from the\nLibrary into the modified Library's header files unless such material is limited\nto\n\n (i) numerical parameters;\n (ii) data structure layouts;\n (iii) accessors; and\n (iv) small macros, templates and inline functions of five lines or less in length.\n\nFurthermore, you are not required to apply this additional permission to a\nmodified version of the Library.", + "json": "nokia-qt-exception-1.1.json", + "yaml": "nokia-qt-exception-1.1.yml", + "html": "nokia-qt-exception-1.1.html", + "license": "nokia-qt-exception-1.1.LICENSE" + }, + { + "license_key": "nokos-1.0a", + "category": "Copyleft Limited", + "spdx_license_key": "Nokia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Nokia Open Source License (NOKOS License) Version 1.0a\n\n 1. DEFINITIONS.\n\n\"Affiliates\" of a party shall mean an entity\n\na) which is directly or indirectly controlling such party;\n\nb) which is under the same direct or indirect ownership or control as such party; or\n\nc) which is directly or indirectly owned or controlled by such party.\n\nFor these purposes, an entity shall be treated as being controlled by another if that\nother entity has fifty percent (50%) or more of the votes in such entity, is able to\ndirect its affairs and/or to control the composition of its board of directors or\nequivalent body.\n\n\"Commercial Use\" shall mean distribution or otherwise making the Covered Software\navailable to a third party.\n\n''Contributor'' shall mean each entity that creates or contributes to the creation of\nModifications.\n\n''Contributor Version'' shall mean in case of any Contributor the combination of the\nOriginal Software, prior Modifications used by a Contributor, and the Modifications\nmade by that particular Contributor and in case of Nokia in addition the Original\nSoftware in any form, including the form as Exceutable.\n\n''Covered Software'' shall mean the Original Software or Modifications or the\ncombination of the Original Software and Modifications, in each case including\nportions thereof.\n\n''Electronic Distribution Mechanism'' shall mean a mechanism generally accepted in\nthe software development community for the electronic transfer of data.\n\n''Executable'' shall mean Covered Software in any form other than Source Code.\n\n''Nokia'' shall mean Nokia Corporation and its Affiliates.\n\n''Larger Work'' shall mean a work, which combines Covered Software or portions\nthereof with code not governed by the terms of this License.\n\n''License'' shall mean this document.\n\n\"Licensable\" shall mean having the right to grant, to the maximum extent possible,\nwhether at the time of the initial grant or subsequently acquired, any and all of the\nrights conveyed herein.\n\n''Modifications'' shall mean any addition to or deletion from the substance or\nstructure of either the Original Software or any previous Modifications. When Covered\nSoftware is released as a series of files, a Modification is:\n\na) Any addition to or deletion from the contents of a file containing Original\nSoftware or previous Modifications.\n\nb) Any new file that contains any part of the Original Software or previous\nModifications.\n\n''Original Software'' shall mean the Source Code of computer software code which is\ndescribed in the Source Code notice required by Exhibit A as Original Software, and\nwhich, at the time of its release under this License is not already Covered Software\ngoverned by this License.\n\n\"Patent Claims\" shall mean any patent claim(s), now owned or hereafter acquired,\nincluding without limitation, method, process, and apparatus claims, in any patent\nLicensable by grantor.\n\n''Source Code'' shall mean the preferred form of the Covered Software for making\nmodifications to it, including all modules it contains, plus any associated interface\ndefinition files, scripts used to control compilation and installation of an\nExecutable, or source code differential comparisons against either the Original\nSoftware or another well known, available Covered Software of the Contributor's\nchoice. The Source Code can be in a compressed or archival form, provided the\nappropriate decompression or de-archiving software is widely available for no charge.\n\n\"You'' (or \"Your\") shall mean an individual or a legal entity exercising rights\nunder, and complying with all of the terms of, this License or a future version of\nthis License issued under Section 6.1. For legal entities, \"You'' includes Affiliates\nof such entity.\n\n2. SOURCE CODE LICENSE.\n\n2.1 Nokia Grant.\n\nSubject to the terms of this License, Nokia hereby grants You a world-wide, royalty-\nfree, non-exclusive license, subject to third party intellectual property claims:\n\na) under copyrights Licensable by Nokia to use, reproduce, modify, display, perform,\nsublicense and distribute the Original Software (or portions thereof) with or without\nModifications, and/or as part of a Larger Work;\n\nb) and under Patents Claims necessarily infringed by the making, using or selling of\nOriginal Software, to make, have made, use, practice, sell, and offer for sale,\nand/or otherwise dispose of the Original Software (or portions thereof).\n\nc) The licenses granted in this Section 2.1(a) and (b) are effective on the date\nNokia first distributes Original Software under the terms of this License.\n\nd) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code\nthat You delete from the Original Software; 2) separate from the Original Software;\nor 3) for infringements caused by: i) the modification of the Original Software or\nii) the combination of the Original Software with other software or devices.\n\n2.2 Contributor Grant.\n\nSubject to the terms of this License and subject to third party intellectual property\nclaims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive\nlicense\n\na) under copyrights Licensable by Contributor, to use, reproduce, modify, display,\nperform, sublicense and distribute the Modifications created by such Contributor (or\nportions thereof) either on an unmodified basis, with other Modifications, as Covered\nSoftware and/or as part of a Larger Work; and\n\nb) under Patent Claims necessarily infringed by the making, using, or selling of\nModifications made by that Contributor either alone and/or in combination with its\nContributor Version (or portions of such combination), to make, use, sell, offer for\nsale, have made, and/or otherwise dispose of: 1) Modifications made by that\nContributor (or portions thereof); and 2) the combination of Modifications made by\nthat Contributor with its Contributor Version (or portions of such combination).\n\nc) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date\nContributor first makes Commercial Use of the Covered Software.\n\nd) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any\ncode that Contributor has deleted from the Contributor Version; 2) separate from the\nContributor Version; 3) for infringements caused by: i) third party modifications of\nContributor Version or ii) the combination of Modifications made by that Contributor\nwith other software (except as part of the Contributor Version) or other devices; or\n4) under Patent Claims infringed by Covered Software in the absence of Modifications\nmade by that Contributor.\n\n3. DISTRIBUTION OBLIGATIONS.\n\n3.1 Application of License.\n\n\nThe Modifications which You create or to which You contribute are governed by the\nterms of this License, including without limitation Section 2.2. The Source Code\nversion of Covered Software may be distributed only under the terms of this License\nor a future version of this License released under Section 6.1, and You must include\na copy of this License with every copy of the Source Code You distribute. You may not\noffer or impose any terms on any Source Code version that alters or restricts the\napplicable version of this License or the recipients' rights hereunder. However, You\nmay include an additional document offering the additional rights described in\nSection 3.5.\n\n3.2 Availability of Source Code.\n\nAny Modification which You create or to which You contribute must be made available\nin Source Code form under the terms of this License either on the same media as an\nExecutable version or via an accepted Electronic Distribution Mechanism to anyone to\nwhom you made an Executable version available; and if made available via Electronic\nDistribution Mechanism, must remain available for at least twelve (12) months after\nthe date it initially became available, or at least six (6) months after a subsequent\nversion of that particular Modification has been made available to such recipients.\nYou are responsible for ensuring that the Source Code version remains available even\nif the Electronic Distribution Mechanism is maintained by a third party.\n\n3.3 Description of Modifications.\n\nYou must cause all Covered Software to which You contribute to contain a file\ndocumenting the changes You made to create that Covered Software and the date of any\nchange. You must include a prominent statement that the Modification is derived,\ndirectly or indirectly, from Original Software provided by Nokia and including the\nname of Nokia in (a) the Source Code, and (b) in any notice in an Executable version\nor related documentation in which You describe the origin or ownership of the Covered\nSoftware.\n\n3.4 Intellectual Property Matters\n\n(a) Third Party Claims.\n\nIf Contributor has knowledge that a license under a third party's intellectual\nproperty rights is required to exercise the rights granted by such Contributor under\nSections 2.1 or 2.2, Contributor must include a text file with the Source Code\ndistribution titled \"LEGAL'' which describes the claim and the party making the claim\nin sufficient detail that a recipient will know whom to contact. If Contributor\nobtains such knowledge after the Modification is made available as described in\nSection 3.2, Contributor shall promptly modify the LEGAL file in all copies\nContributor makes available thereafter and shall take other steps (such as notifying\nappropriate mailing lists or newsgroups) reasonably calculated to inform those who\nreceived the Covered Software that new knowledge has been obtained.\n\n(b) Contributor APIs.\n\nIf Contributor's Modifications include an application programming interface and\nContributor has knowledge of patent licenses which are reasonably necessary to\nimplement that API, Contributor must also include this information in the LEGAL file.\n\n(c) Representations.\n\nContributor represents that, except as disclosed pursuant to Section 3.4(a) above,\nContributor believes that Contributor's Modifications are Contributor's original\ncreation(s) and/or Contributor has sufficient rights to grant the rights conveyed by\nthis License.\n\n3.5 Required Notices.\n\nYou must duplicate the notice in Exhibit A in each file of the Source Code. If it is\nnot possible to put such notice in a particular Source Code file due to its\nstructure, then You must include such notice in a location (such as a relevant\ndirectory) where a user would be likely to look for such a notice. If You created one\nor more Modification(s) You may add your name as a Contributor to the notice\ndescribed in Exhibit A. You must also duplicate this License in any documentation for\nthe Source Code where You describe recipients' rights or ownership rights relating to\nCovered Software. You may choose to offer, and to charge a fee for, warranty,\nsupport, indemnity or liability obligations to one or more recipients of Covered\nSoftware. However, You may do so only on Your own behalf, and not on behalf of Nokia\nor any Contributor. You must make it absolutely clear that any such warranty,\nsupport, indemnity or liability obligation is offered by You alone, and You hereby\nagree to indemnify Nokia and every Contributor for any liability incurred by Nokia or\nsuch Contributor as a result of warranty, support, indemnity or liability terms You\noffer.\n\n3.6 Distribution of Executable Versions.\n\nYou may distribute Covered Software in Executable form only if the requirements of\nSection 3.1-3.5 have been met for that Covered Software, and if You include a notice\nstating that the Source Code version of the Covered Software is available under the\nterms of this License, including a description of how and where You have fulfilled\nthe obligations of Section 3.2. The notice must be conspicuously included in any\nnotice in an Executable version, related documentation or collateral in which You\ndescribe recipients' rights relating to the Covered Software. You may distribute the\nExecutable version of Covered Software or ownership rights under a license of Your\nchoice, which may contain terms different from this License, provided that You are in\ncompliance with the terms of this License and that the license for the Executable\nversion does not attempt to limit or alter the recipient's rights in the Source Code\nversion from the rights set forth in this License. If You distribute the Executable\nversion under a different license You must make it absolutely clear that any terms\nwhich differ from this License are offered by You alone, not by Nokia or any\nContributor. You hereby agree to indemnify Nokia and every Contributor for any\nliability incurred by Nokia or such Contributor as a result of any such terms You\noffer.\n\n3.7 Larger Works.\n\nYou may create a Larger Work by combining Covered Software with other software not\ngoverned by the terms of this License and distribute the Larger Work as a single\nproduct. In such a case, You must make sure the requirements of this License are\nfulfilled for the Covered Software.\n\n4. INABILITY TO COMPLY DUE TO STATUTE OR REGULATION.\n\nIf it is impossible for You to comply with any of the terms of this License with\nrespect to some or all of the Covered Software due to statute, judicial order, or\nregulation then You must: (a) comply with the terms of this License to the maximum\nextent possible; and (b) describe the limitations and the code they affect. Such\ndescription must be included in the LEGAL file described in Section 3.4 and must be\nincluded with all distributions of the Source Code.\n\nExcept to the extent prohibited by statute or regulation, such description must be\nsufficiently detailed for a recipient of ordinary skill to be able to understand it.\n\n5. APPLICATION OF THIS LICENSE.\n\nThis License applies to code to which Nokia has attached the notice in Exhibit A and\nto related Covered Software.\n\n6. VERSIONS OF THE LICENSE.\n\n\n6.1 New Versions.\n\nNokia may publish revised and/or new versions of the License from time to time. Each\nversion will be given a distinguishing version number.\n\n6.2 Effect of New Versions.\n\nOnce Covered Software has been published under a particular version of the License,\nYou may always continue to use it under the terms of that version. You may also\nchoose to use such Covered Software under the terms of any subsequent version of the\nLicense published by Nokia. No one other than Nokia has the right to modify the terms\napplicable to Covered Software created under this License.\n\n7. DISCLAIMER OF WARRANTY.\n\nCOVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS'' BASIS, WITHOUT\nWARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION,\nWARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A\nPARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND\nPERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE\nDEFECTIVE IN ANY RESPECT, YOU (NOT NOKIA, ITS LICENSORS OR AFFILIATES OR ANY OTHER\nCONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS\nDISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY\nCOVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n\n8.1 This License and the rights granted hereunder will terminate automatically if You\nfail to comply with terms herein and fail to cure such breach within 30 days of\nbecoming aware of the breach. All sublicenses to the Covered Software which are\nproperly granted shall survive any termination of this License. Provisions which, by\ntheir nature, must remain in effect beyond the termination of this License shall\nsurvive.\n\n8.2 If You initiate litigation by asserting a patent infringement claim (excluding\ndeclatory judgment actions) against Nokia or a Contributor (Nokia or Contributor\nagainst whom You file such action is referred to as \"Participant\") alleging that:\n\na) such Participant's Contributor Version directly or indirectly infringes any\npatent, then any and all rights granted by such Participant to You under Sections 2.1\nand/or 2.2 of this License shall, upon 60 days notice from Participant terminate\nprospectively, unless if within 60 days after receipt of notice You either: (i) agree\nin writing to pay Participant a mutually agreeable reasonable royalty for Your past\nand future use of Modifications made by such Participant, or (ii) withdraw Your\nlitigation claim with respect to the Contributor Version against such Participant. If\nwithin 60 days of notice, a reasonable royalty and payment arrangement are not\nmutually agreed upon in writing by the parties or the litigation claim is not\nwithdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2\nautomatically terminate at the expiration of the 60 day notice period specified\nabove.\n\nb) any software, hardware, or device, other than such Participant's Contributor\nVersion, directly or indirectly infringes any patent, then any rights granted to You\nby such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the\ndate You first made, used, sold, distributed, or had made, Modifications made by that\nParticipant.\n\n8.3 If You assert a patent infringement claim against Participant alleging that such\nParticipant's Contributor Version directly or indirectly infringes any patent where\nsuch claim is resolved (such as by license or settlement) prior to the initiation of\npatent infringement litigation, then the reasonable value of the licenses granted by\nsuch Participant under Sections 2.1 or 2.2 shall be taken into account in determining\nthe amount or value of any payment or license.\n\n8.4 In the event of termination under Sections 8.1 or 8.2 above, all end user license\nagreements (excluding distributors and resellers) which have been validly granted by\nYou or any distributor hereunder prior to termination shall survive termination.\n\n9. LIMITATION OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING\nNEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, NOKIA, ANY OTHER CONTRIBUTOR, OR ANY\nDISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO\nANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY\nCHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE,\nCOMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES,\nEVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS\nLIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH\nLIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL\nOR CONSEQUENTIAL DAMAGES, BUT MAY ALLOW LIABILITY TO BE LIMITED; IN SUCH CASES, A\nPARTY's, ITS EMPLOYEES, LICENSORS OR AFFILIATES' LIABILITY SHALL BE LIMITED TO U.S.\n$50. Nothing contained in this License shall prejudice the statutory rights of any\nparty dealing as a consumer.\n\n10. MISCELLANEOUS.\n\nThis License represents the complete agreement concerning subject matter hereof. All\nrights in the Covered Software not expressly granted under this License are reserved.\nNothing in this License shall grant You any rights to use any of the trademarks of\nNokia or any of its Affiliates, even if any of such trademarks are included in any\npart of Covered Software and/or documentation to it.\n\nThis License is governed by the laws of Finland excluding its conflict-of-law\nprovisions. All disputes arising from or relating to this Agreement shall be settled\nby a single arbitrator appointed by the Central Chamber of Commerce of Finland. The\narbitration procedure shall take place in Helsinki, Finland in the English language.\nIf any part of this Agreement is found void and unenforceable, it will not affect the\nvalidity of the balance of the Agreement, which shall remain valid and enforceable\naccording to its terms.\n\n11. RESPONSIBILITY FOR CLAIMS.\n\nAs between Nokia and the Contributors, each party is responsible for claims and\ndamages arising, directly or indirectly, out of its utilization of rights under this\nLicense and You agree to work with Nokia and Contributors to distribute such\nresponsibility on an equitable basis. Nothing herein is intended or shall be deemed\nto constitute any admission of liability.\n\n \n\nEXHIBIT A\n\nThe contents of this file are subject to the NOKOS License Version 1.0 (the\n\"License\"); you may not use this file except in compliance with the License.\n\nSoftware distributed under the License is distributed on an \"AS IS\" basis, WITHOUT\nWARRANTY OF ANY KIND, either express or implied. See the License for the specific\nlanguage governing rights and limitations under the License.\n\nThe Original Software is\n .\n\nCopyright \u00a9 Nokia and others. All Rights Reserved.", + "json": "nokos-1.0a.json", + "yaml": "nokos-1.0a.yml", + "html": "nokos-1.0a.html", + "license": "nokos-1.0a.LICENSE" + }, + { + "license_key": "non-violent-4.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-non-violent-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "NON-VIOLENT PUBLIC LICENSE v4\n\nPreamble\n\nThe Non-Violent Public license is a freedom-respecting sharealike license\nfor both the author of a work as well as those subject to a work. It aims\nto protect the basic rights of human beings from exploitation and the earth\nfrom plunder. It aims to ensure a copyrighted work is forever available\nfor public use, modification, and redistribution under the same terms so\nlong as the work is not used for harm. For more information about the NPL\nrefer to the official webpage\n\nOfficial Webpage: https://thufie.lain.haus/NPL.html\n\nTerms and Conditions\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS\nNON-VIOLENT PUBLIC LICENSE v4 (\"LICENSE\"). THE WORK IS PROTECTED BY\nCOPYRIGHT AND ALL OTHER APPLICABLE LAWS. ANY USE OF THE WORK OTHER THAN\nAS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. BY\nEXERCISING ANY RIGHTS TO THE WORK PROVIDED IN THIS LICENSE, YOU AGREE\nTO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE\nMAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS\nCONTAINED HERE IN AS CONSIDERATION FOR ACCEPTING THE TERMS AND\nCONDITIONS OF THIS LICENSE AND FOR AGREEING TO BE BOUND BY THE TERMS\nAND CONDITIONS OF THIS LICENSE.\n\n1. DEFINITIONS\n\n a. \"Act of War\" means any action of one country against any group\n either with an intention to provoke a conflict or an action that\n occurs during a declared war or during armed conflict between\n military forces of any origin. This includes but is not limited\n to enforcing sanctions or sieges, supplying armed forces,\n or profiting from the manufacture of tools or weaponry used in\n military conflict.\n\n b. \"Adaptation\" means a work based upon the Work, or upon the\n Work and other pre-existing works, such as a translation,\n adaptation, derivative work, arrangement of music or other\n alterations of a literary or artistic work, or phonogram or\n performance and includes cinematographic adaptations or any\n other form in which the Work may be recast, transformed, or\n adapted including in any form recognizably derived from the\n original, except that a work that constitutes a Collection will\n not be considered an Adaptation for the purpose of this License.\n For the avoidance of doubt, where the Work is a musical work,\n performance or phonogram, the synchronization of the Work in\n timed-relation with a moving image (\"synching\") will be\n considered an Adaptation for the purpose of this License.\n\n c. \"Bodily Harm\" means any physical hurt or injury to a person that\n interferes with the health or comfort of the person and that is more\n more than merely transient or trifling in nature.\n\n d. \"Collection\" means a collection of literary or artistic\n works, such as encyclopedias and anthologies, or performances,\n phonograms or broadcasts, or other works or subject matter other\n than works listed in Section 1(i) below, which, by reason of the\n selection and arrangement of their contents, constitute\n intellectual creations, in which the Work is included in its\n entirety in unmodified form along with one or more other\n contributions, each constituting separate and independent works\n in themselves, which together are assembled into a collective\n whole. A work that constitutes a Collection will not be\n considered an Adaptation (as defined above) for the purposes of\n this License.\n\n e. \"Distribute\" means to make available to the public the\n original and copies of the Work or Adaptation, as appropriate,\n through sale, gift or any other transfer of possession or\n ownership.\n\n f. \"Incarceration\" means confinement in a jail, prison, or any\n other place where individuals of any kind are held against\n either their will or the will of their legal guardians.\n\n g. \"Licensor\" means the individual, individuals, entity or\n entities that offer(s) the Work under the terms of this License.\n\n h. \"Original Author\" means, in the case of a literary or\n artistic work, the individual, individuals, entity or entities\n who created the Work or if no individual or entity can be\n identified, the publisher; and in addition (i) in the case of a\n performance the actors, singers, musicians, dancers, and other\n persons who act, sing, deliver, declaim, play in, interpret or\n otherwise perform literary or artistic works or expressions of\n folklore; (ii) in the case of a phonogram the producer being the\n person or legal entity who first fixes the sounds of a\n performance or other sounds; and, (iii) in the case of\n broadcasts, the organization that transmits the broadcast.\n\n i. \"Work\" means the literary and/or artistic work offered under\n the terms of this License including without limitation any\n production in the literary, scientific and artistic domain,\n whatever may be the mode or form of its expression including\n digital form, such as a book, pamphlet and other writing; a\n lecture, address, sermon or other work of the same nature; a\n dramatic or dramatico-musical work; a choreographic work or\n entertainment in dumb show; a musical composition with or\n without words; a cinematographic work to which are assimilated\n works expressed by a process analogous to cinematography; a work\n of drawing, painting, architecture, sculpture, engraving or\n lithography; a photographic work to which are assimilated works\n expressed by a process analogous to photography; a work of\n applied art; an illustration, map, plan, sketch or\n three-dimensional work relative to geography, topography,\n architecture or science; a performance; a broadcast; a\n phonogram; a compilation of data to the extent it is protected\n as a copyrightable work; or a work performed by a variety or\n circus performer to the extent it is not otherwise considered a\n literary or artistic work.\n\n j. \"You\" means an individual or entity exercising rights under\n this License who has not previously violated the terms of this\n License with respect to the Work, or who has received express\n permission from the Licensor to exercise rights under this\n License despite a previous violation.\n\n k. \"Publicly Perform\" means to perform public recitations of the\n Work and to communicate to the public those public recitations,\n by any means or process, including by wire or wireless means or\n public digital performances; to make available to the public\n Works in such a way that members of the public may access these\n Works from a place and at a place individually chosen by them;\n to perform the Work to the public by any means or process and\n the communication to the public of the performances of the Work,\n including by public digital performance; to broadcast and\n rebroadcast the Work by any means including signs, sounds or\n images.\n\n l. \"Reproduce\" means to make copies of the Work by any means\n including without limitation by sound or visual recordings and\n the right of fixation and reproducing fixations of the Work,\n including storage of a protected performance or phonogram in\n digital form or other electronic medium.\n\n m. \"Software\" means any digital Work which, through use of a\n third-party piece of Software or through the direct usage of\n itself on a computer system, the memory of the computer is\n modified dynamically or semi-dynamically. \"Software\",\n secondly, processes or interprets information.\n\n n. \"Source Code\" means the human-readable form of Software\n through which the Original Author and/or Distributor originally\n created, derived, and/or modified it.\n\n o. \"Surveilling\" means the use of the Work to either\n overtly or covertly observe and record persons and or their\n activities.\n\n p. \"Web Service\" means the use of a piece of Software to\n interpret or modify information that is subsequently and directly\n served to users over the Internet.\n\n q. \"Discriminate\" means the use of a work to differentiate between\n humans in a such a way which prioritizes some above others on the\n basis of percieved membership within certain groups.\n\n r. \"Hate Speech\" means communication or any form\n of expression which is solely for the purpose of expressing hatred\n for some group or advocating a form of Discrimination\n (to Discriminate per definition in (q)) between humans.\n\n2. FAIR DEALING RIGHTS\n\n Nothing in this License is intended to reduce, limit, or restrict any\n uses free from copyright or rights arising from limitations or\n exceptions that are provided for in connection with the copyright\n protection under copyright law or other applicable laws.\n\n3. LICENSE GRANT\n\n Subject to the terms and conditions of this License, Licensor hereby\n grants You a worldwide, royalty-free, non-exclusive, perpetual (for the\n duration of the applicable copyright) license to exercise the rights in\n the Work as stated below:\n\n a. to Reproduce the Work, to incorporate the Work into one or\n more Collections, and to Reproduce the Work as incorporated in\n the Collections;\n\n b. to create and Reproduce Adaptations provided that any such\n Adaptation, including any translation in any medium, takes\n reasonable steps to clearly label, demarcate or otherwise\n identify that changes were made to the original Work. For\n example, a translation could be marked \"The original work was\n translated from English to Spanish,\" or a modification could\n indicate \"The original work has been modified.\";\n\n c. to Distribute and Publicly Perform the Work including as\n incorporated in Collections; and,\n\n d. to Distribute and Publicly Perform Adaptations. The above\n rights may be exercised in all media and formats whether now\n known or hereafter devised. The above rights include the right\n to make such modifications as are technically necessary to\n exercise the rights in other media and formats. Subject to\n Section 8(g), all rights not expressly granted by Licensor are\n hereby reserved.\n\n4. RESTRICTIONS\n\n The license granted in Section 3 above is expressly made subject to and\n limited by the following restrictions:\n\n a. You may Distribute or Publicly Perform the Work only under\n the terms of this License. You must include a copy of, or the\n Uniform Resource Identifier (URI) for, this License with every\n copy of the Work You Distribute or Publicly Perform. You may not\n offer or impose any terms on the Work that restrict the terms of\n this License or the ability of the recipient of the Work to\n exercise the rights granted to that recipient under the terms of\n the License. You may not sublicense the Work. You must keep\n intact all notices that refer to this License and to the\n disclaimer of warranties with every copy of the Work You\n Distribute or Publicly Perform. When You Distribute or Publicly\n Perform the Work, You may not impose any effective technological\n measures on the Work that restrict the ability of a recipient of\n the Work from You to exercise the rights granted to that\n recipient under the terms of the License. This Section 4(a)\n applies to the Work as incorporated in a Collection, but this\n does not require the Collection apart from the Work itself to be\n made subject to the terms of this License. If You create a\n Collection, upon notice from any Licensor You must, to the\n extent practicable, remove from the Collection any credit as\n required by Section 4(f), as requested. If You create an\n Adaptation, upon notice from any Licensor You must, to the\n extent practicable, remove from the Adaptation any credit as\n required by Section 4(f), as requested.\n\n b. If the Work meets the definition of Software, You may exercise\n the rights granted in Section 3 only if You provide a copy of the\n corresponding Source Code from which the Work was derived in digital\n form, or You provide a URI for the corresponding Source Code of\n the Work, to any recipients upon request.\n\n c. If the Work is used as or for a Web Service, You may exercise\n the rights granted in Section 3 only if You provide a copy of the\n corresponding Source Code from which the Work was derived in digital\n form, or You provide a URI for the corresponding Source Code to the\n Work, to any recipients of the data served or modified by the Web\n Service.\n\n d. You may exercise the rights granted in Section 3 for\n any purposes only if:\n\n i. You do not use the Work for the purpose of inflicting\n Bodily Harm on human beings (subject to criminal\n prosecution or otherwise) outside of providing medical aid.\n ii.You do not use the Work for the purpose of Surveilling\n or tracking individuals for financial gain.\n iii. You do not use the Work in an Act of War.\n iv. You do not use the Work for the purpose of supporting\n or profiting from an Act of War.\n v. You do not use the Work for the purpose of Incarceration.\n vi. You do not use the Work for the purpose of extracting\n oil, gas, or coal.\n vii. You do not use the Work for the purpose of\n expediting, coordinating, or facilitating paid work\n undertaken by individuals under the age of 12 years.\n viii. You do not use the Work to either Discriminate or\n spread Hate Speech on the basis of sex, sexual orientation,\n gender identity, race, age, disability, color, national origin,\n religion, or lower economic status.\n\n e. If You Distribute, or Publicly Perform the Work or any\n Adaptations or Collections, You must, unless a request has been\n made pursuant to Section 4(a), keep intact all copyright notices\n for the Work and provide, reasonable to the medium or means You\n are utilizing: (i) the name of the Original Author (or\n pseudonym, if applicable) if supplied, and/or if the Original\n Author and/or Licensor designate another party or parties (e.g.,\n a sponsor institute, publishing entity, journal) for attribution\n (\"Attribution Parties\") in Licensor!s copyright notice, terms of\n service or by other reasonable means, the name of such party or\n parties; (ii) the title of the Work if supplied; (iii) to the\n extent reasonably practicable, the URI, if any, that Licensor\n specifies to be associated with the Work, unless such URI does\n not refer to the copyright notice or licensing information for\n the Work; and, (iv) consistent with Section 3(b), in the case of\n an Adaptation, a credit identifying the use of the Work in the\n Adaptation (e.g., \"French translation of the Work by Original\n Author,\" or \"Screenplay based on original Work by Original\n Author\"). The credit required by this Section 4(e) may be\n implemented in any reasonable manner; provided, however, that in\n the case of an Adaptation or Collection, at a minimum such credit\n will appear, if a credit for all contributing authors of the\n Adaptation or Collection appears, then as part of these credits\n and in a manner at least as prominent as the credits for the\n other contributing authors. For the avoidance of doubt, You may\n only use the credit required by this Section for the purpose of\n attribution in the manner set out above and, by exercising Your\n rights under this License, You may not implicitly or explicitly\n assert or imply any connection with, sponsorship or endorsement\n by the Original Author, Licensor and/or Attribution Parties, as\n appropriate, of You or Your use of the Work, without the\n separate, express prior written permission of the Original\n Author, Licensor and/or Attribution Parties.\n\n f. Except as otherwise agreed in writing by the Licensor or as\n may be otherwise permitted by applicable law, if You Reproduce,\n Distribute or Publicly Perform the Work either by itself or as\n part of any Adaptations or Collections, You must not distort,\n mutilate, modify or take other derogatory action in relation to\n the Work which would be prejudicial to the Original Author's\n honor or reputation. Licensor agrees that in those jurisdictions\n (e.g. Japan), in which any exercise of the right granted in\n Section 3(b) of this License (the right to make Adaptations)\n would be deemed to be a distortion, mutilation, modification or\n other derogatory action prejudicial to the Original Author's\n honor and reputation, the Licensor will waive or not assert, as\n appropriate, this Section, to the fullest extent permitted by\n the applicable national law, to enable You to reasonably\n exercise Your right under Section 3(b) of this License (right to\n make Adaptations) but not otherwise.\n\n g. Do not make any legal claim against anyone accusing the\n Work, with or without changes, alone or with other works,\n of infringing any patent claim.\n\n5. REPRESENTATIONS, WARRANTIES AND DISCLAIMER\n\n UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR\n OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY\n KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,\n INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,\n FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF\n LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF\n ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW\n THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO\n YOU.\n\n6. LIMITATION ON LIABILITY\n\n EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL\n LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL,\n INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF\n THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. TERMINATION\n\n a. This License and the rights granted hereunder will terminate\n automatically upon any breach by You of the terms of this\n License. Individuals or entities who have received Adaptations\n or Collections from You under this License, however, will not\n have their licenses terminated provided such individuals or\n entities remain in full compliance with those licenses. Sections\n 1, 2, 5, 6, 7, and 8 will survive any termination of this\n License.\n\n b. Subject to the above terms and conditions, the license\n granted here is perpetual (for the duration of the applicable\n copyright in the Work). Notwithstanding the above, Licensor\n reserves the right to release the Work under different license\n terms or to stop distributing the Work at any time; provided,\n however that any such election will not serve to withdraw this\n License (or any other license that has been, or is required to\n be, granted under the terms of this License), and this License\n will continue in full force and effect unless terminated as\n stated above.\n\n8. REVISED LICENSE VERSIONS\n\n a. This License may receive future revisions in the original\n spirit of the license intended to strengthen This License.\n Each version of This License has an incrementing version number.\n\n b. Unless otherwise specified like in Section 8(c) The Licensor\n has only granted this current version of This License for The Work.\n In this case future revisions do not apply.\n\n c. The Licensor may specify that the latest available\n revision of This License be used for The Work by either explicitly\n writing so or by suffixing the License URI with a \"+\" symbol.\n\n d. The Licensor may specify that The Work is also available\n under the terms of This License's current revision as well\n as specific future revisions. The Licensor may do this by\n writing it explicitly or suffixing the License URI with any\n additional version numbers each separated by a comma.\n\n9. MISCELLANEOUS\n\n a. Each time You Distribute or Publicly Perform the Work or a\n Collection, the Licensor offers to the recipient a license to\n the Work on the same terms and conditions as the license granted\n to You under this License.\n\n b. Each time You Distribute or Publicly Perform an Adaptation,\n Licensor offers to the recipient a license to the original Work\n on the same terms and conditions as the license granted to You\n under this License.\n\n c. If the Work is classified as Software, each time You Distribute\n or Publicly Perform an Adaptation, Licensor offers to the recipient\n a copy and/or URI of the corresponding Source Code on the same\n terms and conditions as the license granted to You under this License.\n\n d. If the Work is used as a Web Service, each time You Distribute\n or Publicly Perform an Adaptation, or serve data derived from the\n Software, the Licensor offers to any recipients of the data a copy\n and/or URI of the corresponding Source Code on the same terms and\n conditions as the license granted to You under this License.\n\n e. If any provision of this License is invalid or unenforceable\n under applicable law, it shall not affect the validity or\n enforceability of the remainder of the terms of this License,\n and without further action by the parties to this agreement,\n such provision shall be reformed to the minimum extent necessary\n to make such provision valid and enforceable.\n\n f. No term or provision of this License shall be deemed waived\n and no breach consented to unless such waiver or consent shall\n be in writing and signed by the party to be charged with such\n waiver or consent.\n\n g. This License constitutes the entire agreement between the\n parties with respect to the Work licensed here. There are no\n understandings, agreements or representations with respect to\n the Work not specified here. Licensor shall not be bound by any\n additional provisions that may appear in any communication from\n You. This License may not be modified without the mutual written\n agreement of the Licensor and You.\n\n h. The rights granted under, and the subject matter referenced,\n in this License were drafted utilizing the terminology of the\n Berne Convention for the Protection of Literary and Artistic\n Works (as amended on September 28, 1979), the Rome Convention of\n 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances\n and Phonograms Treaty of 1996 and the Universal Copyright\n Convention (as revised on July 24, 1971). These rights and\n subject matter take effect in the relevant jurisdiction in which\n the License terms are sought to be enforced according to the\n corresponding provisions of the implementation of those treaty\n provisions in the applicable national law. If the standard suite\n of rights granted under applicable copyright law includes\n additional rights not granted under this License, such\n additional rights are deemed to be included in the License; this\n License is not intended to restrict the license of any rights\n under applicable law.", + "json": "non-violent-4.0.json", + "yaml": "non-violent-4.0.yml", + "html": "non-violent-4.0.html", + "license": "non-violent-4.0.LICENSE" + }, + { + "license_key": "nonexclusive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nonexclusive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The recipient, and any party obtaining a copy of these files from\nthe recipient, directly or indirectly, is granted, free of charge, a\nfull and unrestricted irrevocable, world-wide, paid up, royalty-free,\nnonexclusive right and license to deal in this software and\ndocumentation files (the \"Software\"), including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense,\nand/or sell copies of the Software, and to permit persons who receive\ncopies from any such party to do so. This license includes without\nlimitation a license to do the foregoing actions under any patents of\nthe party supplying this software to the recipient.", + "json": "nonexclusive.json", + "yaml": "nonexclusive.yml", + "html": "nonexclusive.html", + "license": "nonexclusive.LICENSE" + }, + { + "license_key": "nortel-dasa", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nortel-dasa", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Nortel DASA License\n\nCreated by F.Schnekenbuehl from clk_rcc8000.c\nNortel DASA Network Systems GmbH, Department: ND250\nA Joint venture of Daimler-Benz Aerospace and Nortel\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.", + "json": "nortel-dasa.json", + "yaml": "nortel-dasa.yml", + "html": "nortel-dasa.html", + "license": "nortel-dasa.LICENSE" + }, + { + "license_key": "northwoods-sla-2021", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-northwoods-sla-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "NORTHWOODS SOFTWARE CORPORATION\nSoftware License Agreement\n\nThis Software License Agreement (this \u201cAgreement\u201d) is a legal agreement between Northwoods Software Corporation, a New Hampshire corporation (\u201cNorthwoods\u201d), and you, either an individual or a single entity. This Software License Agreement sets forth the terms and conditions under which Northwoods grants to you a license to use one or more computer software products of Northwoods and Northwoods\u00e2\u20ac\u2122 related documentation therefor. Certain capitalized terms used in this Agreement are defined in Section 1.0 below.\n\nEach Licensed Product is identified in a License Certificate issued by Northwoods to you. If two or more Licensed Products are listed on a License Certificate, the License shall apply to each such Licensed Product.\n\nThis Agreement sets forth the terms and conditions applicable to your License of the Licensed Software and the Documentation. Please note that, as more particularly set forth in this Agreement, certain of the terms and conditions set forth in this Agreement may not be applicable to your License, depending on the type of License that you purchased and the terms of your License Certificate.\n*** IMPORTANT NOTICE ***\n\nBY INSTALLING, COPYING, OR OTHERWISE USING ANY OF THE LICENSED SOFTWARE, YOU AGREE TO BE BOUND BY THE TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT, THEN YOU SHOULD NOT INSTALL ANY OF THE LICENSED SOFTWARE.\n\nNOTE: Unless you have purchased a Development and Distribution License, your usage of any Licensed Software and related Documentation is governed by an Evaluation License.\n\nIn addition to the foregoing, the terms and conditions of this Agreement include the following:\n\n1.0 DEFINITIONS\n\nThe following terms and variations thereof shall have the following meanings:\n\n\u201cAgreement\u201d\n means this Software License Agreement between Northwoods and Customer.\n\u201cCustomer\u201d\n means you, the individual or single entity in whose name the License Certificate was issued.\n\u201cDeveloper\u201d\n means, with respect to a particular Licensed Product, an Internal User who (a) is a member of the Licensed Group for such Licensed Product and (b) uses such Licensed Product to develop one or more Licensed Applications.\n\u201cDocumentation\u201d\n means, with respect to any Licensed Software, such assistance manuals, online help files, release notes, Sample Code, or other materials, in printed or electronic form, including any Updates thereof, that may be provided by Northwoods to assist a Developer in the use of such Licensed Software.\n\u201cDomain Name\u201d\n means a unique name that identifies an Internet resource, such as a web site (e.g., nwoods.com).\n\u201cEvaluation License\u201d\n means a License permitting Customer to use a Licensed Product in accordance with the provisions of Section 2.1.1(a) below and the further terms and conditions of this Agreement.\n\u201cExternal User\u201d\n means someone other than an Internal User.\n\u201cIntellectual Property Right\u201d\n means any U.S. or foreign patent, copyright, trade secret, trademark, industrial property, or other proprietary or intellectual property right of any kind.\n\u201cInternal User\u201d\n means an employee or contractor of Customer. For purposes hereof, \u201ccontractor\u201d\n means someone who is not an employee of Customer but who is under contract with Customer to perform services of a type that otherwise might be performed by an employee of Customer.\n\u201cLicense\u201d\n means Northwoods\u00e2\u20ac\u2122 grant to you of a non-exclusive, non-transferable right to use a Licensed Product, subject to and in accordance with the terms and conditions of this Agreement. There are two different types of Licenses - an Evaluation License and a Development and Distribution License.\n\u201cLicense Certificate\u201d\n means, with respect to a particular Licensed Product that is licensed by Northwoods to Customer under this Agreement, a certificate issued by Northwoods to Customer that identifies the applicable Licensed Software and the License-Specific Terms applicable to Customer\u00e2\u20ac\u2122s use of such Licensed Product.\n\u201cLicense Effective Date\u201d\n means the date on which Customer first installs any Licensed Software on a computer for evaluation purposes, or, if the Customer purchased a Development and Distribution License, the date on which Customer placed the order therefor.\n\u201cLicense-Specific Terms\u201d\n means, with respect to a particular Licensed Product that is licensed by Northwoods to Customer under this Agreement, the identity of the applicable Licensed Software that is part of such Licensed Product together with certain additional licensing terms applicable to Customer\u00e2\u20ac\u2122s use of such Licensed Product that are set forth in the License Certificate for such Licensed Product. The License-Specific Terms are recorded in Northwoods\u00e2\u20ac\u2122 records. In the event of any inconsistency between the License-Specific Terms contained in Northwoods\u00e2\u20ac\u2122 records and the License-Specific Terms stated in any printed, electronic, or other copy of a License Certificate (whether due to an alteration of such License Certificate or other cause), the License-Specific Terms contained in Northwoods\u00e2\u20ac\u2122 records shall be controlling.\n\u201cLicense Term\u201d\n means the duration of the License, which depends on the type of License and the License-Specific Terms, all as more particularly set forth in this Agreement.\n\u201cLicensed Application\u201d\n means a software application (including Redistributables) developed by a Developer by use of the Licensed Software. The License-Specific Terms may further define what constitutes a Licensed Application.\n\u201cLicensed Application End User\u201d\n means an authorized user of a Licensed Application.\n\u201cLicensed Domain\u201d\n means a Domain Name from which a Licensed Application End User is able to access a Licensed Application via the Internet. For the avoidance of doubt, if two or more Domain Names identify the same web site or other Internet resource (i.e., there is a single primary Domain Name from which a Licensed Application End User is able to access a Licensed Application via the Internet and there are also one or more alias Domain Names that point to that same primary Domain Name), then there will only be considered to be one Licensed Domain and the alias Domain Name(s) will not be counted.\n\u201cLicensed Group\u201d\n means, with respect to a particular Licensed Product, such Internal Users who are permitted to be Developers for such Licensed Product, as set forth in the License Certificate for such Licensed Product. By way of examples, if the License Certificate for a Licensed Product states that the Licensed Group for such Licensed Product (a) is a particular business unit within Customer, only an Internal User within such business unit may be a Developer for such Licensed Product, or (b) is unlimited, any Internal User of Customer may be a Developer for such Licensed Product, in both cases subject to such additional limitations as are otherwise set forth in this Agreement and the applicable License Certificate (including any limitation on the number of Developers who may develop Licensed Applications for such Licensed Product).\n\u201cLicensed Product\u201d\n means, collectively, Licensed Software that is licensed by Northwoods for use by Customer under this Agreement and the related Documentation for such Licensed Software.\n\u201cLicensed Software\u201d\n means any Northwoods\u00e2\u20ac\u2122 computer software product licensed for use under this Agreement, including any Updates of such computer software product that may be supplied to Customer by Northwoods. The Licensed Software is identified in the License-Specific Terms.\n\u201cNorthwoods\u201d\n means Northwoods Software Corporation, a New Hampshire corporation, and its successors and assigns.\n\u201cObject Code\u201d\n means, with respect to software, an encoded form of such software that allows such software to be used on a computer, but which is not intended to allow such software to be enhanced or otherwise modified.\n\u201cDevelopment and Distribution License\u201d\n means a License permitting Customer to use a Licensed Product in accordance with the provisions of Section 2.1.1(b) below and the further terms and conditions of this Agreement.\n\u201cRedistributables\u201d\n means (a) the Object Code form of portions of the Licensed Software, which portions are described as such in the Documentation and are usually provided as Dynamic Link Libraries (DLL\u00e2\u20ac\u2122s), tar files, zip files, JAR files, or obfuscated javascript files (depending on the specific product), and (b) also the Source Code or Object Code form of the Sample Code as originally supplied to, or as modified by, Customer. For the avoidance of doubt, obfuscated javascript files are considered to be Object Code and not Source Code.\n\u201cSample Code\u201d\n means the Source Code version of the computer software supplied by Northwoods and described as \u201csample code\u201d\n in the Documentation, which computer software is intended to illustrate how to use the Licensed Software. For the avoidance of doubt, Sample Code is part of the Documentation and not part of the Licensed Software.\n\u201cSource Code\u201d\n means, with respect to software, an encoded form of such software that allows a software developer to enhance and otherwise modify such software and that can be used, with certain software development tools, to produce Object Code.\n\u201cTrial Period\u201d\n means, with respect to an Evaluation License, a period of thirty (30) days following the License Effective Date therefor or such longer period of time, if any, as may be specified as the License Term for such Evaluation License in the License-Specific Terms therefor.\n\u201cUpdate\u201d\n means any bug fix, correction, patch, workaround, enhancement, release, version, or other update of a Licensed Product provided by Northwoods to Customer after the initial delivery of such Licensed Product.\n\n2.0 LICENSE PROVISIONS\n2.1 License Grant and Restrictions\n\n2.1.1 Subject to the further terms and conditions of this Agreement, Northwoods grants to Customer a worldwide License to use each Licensed Product, as follows:\n\n Evaluation License. If the License is an Evaluation License, then:\n Customer may only use the Licensed Product for evaluation purposes; and\n the License Term shall commence on the License Effective Date and shall continue thereafter for the Trial Period, subject to termination of the License during the License Term as otherwise set forth in this Agreement.\n The Licensed Software may include a duration limitation that tracks the License Term and may disable the Licensed Software when the License Term expires. If Customer purchases a Development and Distribution License for the Licensed Product, Northwoods will provide Customer with a software code which, when activated, will deactivate any such duration limitation.\n Development and Distribution License. If the License is a Development and Distribution License, then:\n the License Term shall commence on the License Effective Date and shall continue thereafter for the period set forth in the License-Specific Terms, subject to termination of the License during the License Term as otherwise set forth in this Agreement;\n the aggregate number of Developers who may use the Licensed Software to develop Licensed Applications is specified in the License-Specific Terms;\n the aggregate number of Licensed Applications that such Developer(s) may develop is specified in the License-Specific Terms;\n the Licensed Application End Users may be Internal Users or External Users; and\n the aggregate number of Licensed Application End Users who are authorized to use each Licensed Application is not limited; and\n for those Licensed Products that enable Licensed Applications to be accessed via the Internet, the aggregate number of Licensed Domains from which Licensed Application End Users may access any such Licensed Application is specified in the License-Specific Terms.\n For the avoidance of doubt, upon the expiration or earlier termination of the License Term (unless, and then only to the extent that, the License Term is renewed by Northwoods), (A) no further Licensed Applications may be developed, and (B) with respect to any Licensed Application that was developed prior to such expiration or termination, any Licensed Application End User who was using such Licensed Application prior to such expiration or termination may continue to use such Licensed Application after such expiration or termination, but no other Licensed Application End Users or anyone else may use such Licensed Application.\n The parties agree that, for purposes of this Agreement, all Licensed Products shall be delivered by Northwoods to Customer in the State of New Hampshire.\n\n2.1.2 Customer may make such number of copies of each Licensed Product as may reasonably be required for Customer\u00e2\u20ac\u2122s exercise of its License rights and for archival purposes. Each such copy shall be and remain subject to all usage and other restrictions applicable to such Licensed Product under this Agreement. All such copies are and shall remain the sole property of Northwoods and subject to this Agreement. All Intellectual Property Rights notices included in such Licensed Product must be maintained in all such copies and may not be altered or removed.\n\n2.1.3 Customer is solely responsible for all hardware, infrastructure systems, and third party software associated with operating the Licensed Software.\n\n2.1.4 Except as may otherwise expressly be permitted by this Agreement, and subject to such additional limitations and restrictions as are set forth in this Agreement, CUSTOMER MAY NOT:\n\n use, copy, display, publish, or transfer any Licensed Product;\n modify any Licensed Product, or create any derivative work of any Licensed Product;\n reverse engineer, disassemble, decompile, or take any other action to derive the Source Code form of any of the Licensed Software;\n use any Licensed Product, nor permit any Licensed Product to be used, other than by one or more Developers (the number of permitted Developers being specified in the License-Specific Terms) to develop a Licensed Application;\n rent, lease, transfer, sell, sublicense, or distribute any Licensed Product thereof to any third party without the express written consent of Northwoods; for the avoidance of doubt, no time-sharing or service-sharing use of any Licensed Product by any third party is permitted;\n use any Licensed Product to develop a Licensed Application unless Customer includes substantial added value in such Licensed Application in addition to the Redistributables;\n use any Licensed Product to develop a Licensed Application if such Licensed Application would be competitive with such Licensed Product; nor\n distribute any portion of any Licensed Product other than the Redistributables, which may only be distributed in Object Code form and only as part of a Licensed Application.\n\n2.1.5 Except as otherwise set forth in this Section, the Licensed Software is provided and may only be used in Object Code form. If the License-Specific Terms expressly provide that any of the Licensed Software is being licensed with Source Code rights, then such Licensed Software shall also be provided and may be used in Source Code form. In such case, Customer:\n\n may modify such Licensed Software and use the modified Licensed Software in the same fashion, and subject to the same restrictions, as the unmodified Licensed Software (however, for the avoidance of doubt, Customer shall not redistribute any Source Code); and\n shall defend, indemnify, and hold harmless Northwoods and its affiliates, and its and their respective successors and assigns, and all of the respective officers, directors, employees, stockholders, managers, members, agents, and representatives of any of the foregoing (each, an \u201cIndemnitee\u201d) from and against any and all claims, losses, damages, liabilities, costs, and expenses (including reasonable attorneys\u00e2\u20ac\u2122 and other professional fees) suffered or incurred by Northwoods or any other Indemnitee that arise out of or relate to any modifications of such Licensed Software made by Customer.\n\n2.2 License Termination\n\n2.2.1 With respect to each Licensed Product that is listed in a License Certificate, the License of such Licensed Product shall commence on the License Effective Date and shall continue thereafter for the applicable License Term, subject to earlier termination as follows:\n\n Customer may terminate such License at any time and for any reason by written notice to Northwoods;\n if Customer breaches any of its obligations under this Agreement, then such License shall automatically terminate; provided, that, if such breach is curable, then such License shall terminate if such breach is not cured by Customer within thirty (30) days of notice from Northwoods; and\n if Customer is declared bankrupt, becomes insolvent, or commences liquidation or receivership proceedings, then such License may be terminated by Northwoods.\n\nUpon termination of all License(s) granted under this Agreement, this Agreement shall automatically terminate; provided, that the following provisions of this Agreement shall survive any such termination: Sections 1.0 (to the extent that any term defined therein is used in any other Section which survives such termination), 2.2.2, 2.3, 2.4, 3.2, 4.0, 5.0, and 6.0.\n\n2.2.2 Upon the expiration or earlier termination of such License, Customer shall:\n\n immediately cease all use of such Licensed Product;\n promptly destroy all copies (including tangible, electronic, magnetic, and other copies) of such Licensed Product; provided, that to the extent that Customer archives electronic information in the ordinary course of its business, Customer shall not be required to destroy such electronic copies of such Licensed Product as are so included in such archives, so long as such electronic copies are not otherwise copied or used by Customer, and\n promptly certify in writing to Northwoods that Customer has complied with its obligations hereunder and is no longer using or in possession of any copy of such Licensed Product.\n\n2.3 Proprietary Rights\n\n2.3.1 Each Licensed Product and all Intellectual Property Rights therein are the exclusive property of Northwoods or its licensors. All rights in and to each Licensed Product not specifically granted to Customer under this Agreement are reserved to Northwoods.\n\n2.3.2 Customer shall not alter or remove any Intellectual Property Rights notices or any other legal notices contained on or in copies of any Licensed Product. If Customer is permitted by Northwoods to make any copies of any Licensed Product, Customer shall reproduce all such notices on or in all copies. The existence of any copyright notice shall not constitute publication and shall not be construed as an admission or presumption of publication of any Licensed Product.\n\n2.3.3 All Updates of a Licensed Product provided by Northwoods (regardless of any payments made by Customer therefor) shall belong to and be owned by Northwoods, shall be considered to be part of such Licensed Product, and shall be licensed to Customer on the same terms and conditions as are applicable to such Licensed Product under this Agreement (including the License-Specific Terms).\n2.4 Confidentiality\n\n2.4.1 Customer agrees that each Licensed Product is confidential and proprietary to Northwoods. Customer agrees to hold each Licensed Product in confidence and not to disclose such Licensed Product without the prior written approval of Northwoods, except:\n\n to Customer\u00e2\u20ac\u2122s Developer(s) to whom disclosure is necessary for Customer\u00e2\u20ac\u2122s permitted use of such Licensed Product, provided that (i) Customer shall ensure that each such Developer agrees to comply with all of Customer\u00e2\u20ac\u2122s obligations under this Agreement, and (ii) the acts and omissions of Customer\u00e2\u20ac\u2122s Developer(s) shall be deemed to be the acts and omissions of Customer and Customer shall be responsible therefor and for any breach of this Agreement caused thereby, or\n as required by applicable law, rule, or regulation, or by an order of a court or governmental or law enforcement agency or other authority, each of competent jurisdiction, provided that Customer shall have used reasonable efforts to secure confidential treatment of any such information to be disclosed, or\n that Customer may distribute Redistributables (in Object Code form) as part of Licensed Applications as permitted by Section 2.1.\n\n2.4.2 Customer shall take all reasonable steps to safeguard all copies of each Licensed Product and ensure that no persons, whether or not authorized to have access to a Licensed Product, shall take any action in violation of this Agreement.\n\n3.0 LIMITED WARRANTY; WARRANTY LIMITATIONS AND DISCLAIMERS\n3.1 Limited Warranty.\n\n If the License is a Development and Distribution License, then Northwoods warrants (the \u201cLimited Warranty\u201d) that the Licensed Software will, for a period of thirty (30) days following the date on which the Licensed Software was first delivered to Customer (the \u201cLimited Warranty Period\u201d), function substantially as set forth in the Documentation therefor. The Limited Warranty is only for the benefit of Customer. The Limited Warranty shall not apply to an Evaluation License.\n Customer\u00e2\u20ac\u2122s sole and exclusive remedy for any breach of the Limited Warranty shall be as follows:\n If the Limited Warranty is breached, Customer must, during the Limited Warranty Period, notify Northwoods in writing of the non-conformity in the Licensed Software that constitutes the breach.\n In the event such a notification is given to Northwoods during the Limited Warranty Period, Northwoods will attempt to verify the non-conformity reported by Customer and, if verified, ascertain the reason for the non-conformity and supply a correction or bypass.\n If Northwoods verifies the reported non-conformity but is unable to repair or replace the defective Licensed Software, or determines that such repair or replacement is impractical in Northwoods\u00e2\u20ac\u2122 sole judgment, then Northwoods may terminate the License by providing written notice thereof to Customer. Likewise, if Northwoods verifies the reported non-conformity but fails to repair or replace the defective Licensed Software within thirty (30) days after Northwoods\u00e2\u20ac\u2122 receipt of Customer\u00e2\u20ac\u2122s notice of the breach, then, during the continuance of such failure, Customer may elect to terminate the License by providing written notice thereof to Northwoods. In the event of any such termination, Customer shall comply with its obligations under Section 2.2.2 and, upon Northwoods\u00e2\u20ac\u2122 receipt of Customer\u00e2\u20ac\u2122s written certification pursuant to Section 2.2.2(c), Northwoods shall refund to Customer the License fee paid by Customer for the defective Licensed Product.\n The Limited Warranty shall not apply if any breach of the Limited Warranty is due to: (i) the use of the Licensed Software other than in accordance with the Documentation; or (ii) any modification of the Licensed Software other than an Update provided by Northwoods during the Limited Warranty Period.\n\n3.2 Disclaimers.\n\n All software contains errors, and Customer acknowledges that the use of any software (including the Licensed Software) entails the likelihood of some human and machine errors, omissions, delays, interruptions, and losses, including inadvertent loss of data or damage to media, which may give rise to loss or damage. Accordingly, NORTHWOODS MAKES NO WARRANTY THAT THE LICENSED SOFTWARE IS ERROR-FREE.\n NORTHWOODS ALSO MAKES NO WARRANTY THAT ANY LICENSED PRODUCT WILL MEET CUSTOMER\u00e2\u20ac\u2122S REQUIREMENTS.\n EXCEPT FOR THE LIMITED WARRANTY (WHICH APPLIES ONLY TO A DEVELOPMENT AND DISTRIBUTION LICENSE, AND NOT TO AN EVALUATION LICENSE), EACH LICENSED PRODUCT IS PROVIDED \u201cAS IS\u201d AND NORTHWOODS MAKES NO WARRANTIES, EXPRESS OR IMPLIED, WITH RESPECT TO ANY LICENSED PRODUCT. WITHOUT LIMITING THE GENERALITY OF THE FOREGOING, NORTHWOODS DISCLAIMS AND EXCLUDES ANY AND ALL IMPLIED WARRANTIES, INCLUDING ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND ANY OTHER IMPLIED WARRANTY ARISING OUT OF OR IN CONNECTION WITH THE DELIVERY, USE, OR PERFORMANCE OF ANY LICENSED PRODUCT.\n\n4.0 LIMITATION OF LIABILITY\n\n4.1 THE TOTAL LIABILITY OF NORTHWOODS UNDER THIS AGREEMENT (INCLUDING AS A RESULT OF A BREACH OF ANY OF NORTHWOODS\u00e2\u20ac\u2122 OBLIGATIONS HEREUNDER AND/OR FOR THE DELIVERY, USE, PERFORMANCE, OR NON-PERFORMANCE OF ANY LICENSED PRODUCT), WHETHER ARISING IN CONTRACT, NEGLIGENCE, STRICT LIABILITY, TORT, OR OTHER CLAIM OR ACTION, SHALL BE LIMITED TO THE DIRECT LOSSES AND DAMAGES SUFFERED BY CUSTOMER THAT ARE OTHERWISE RECOVERABLE UNDER THIS AGREEMENT, IN AN AMOUNT NOT TO EXCEED THE LICENSE FEE PAID TO NORTHWOODS FOR SUCH LICENSED PRODUCT UNDER THIS AGREEMENT.\n\n4.2 NORTHWOODS NEITHER ASSUMES, NOR AUTHORIZES ANY OTHER PERSON TO ASSUME ON NORTHWOODS\u00e2\u20ac\u2122 BEHALF, ANY LIABILITIES IN ADDITION TO THOSE LIABILITIES OF NORTHWOODS SPECIFICALLY SET FORTH IN THIS AGREEMENT.\n\n4.3 Except as otherwise expressly set forth in Section 3.1(b)(iii), ALL AMOUNTS PAID BY CUSTOMER TO NORTHWOODS ARE NON-REFUNDABLE.\n\n4.5 Customer is responsible for any and all uses of each Licensed Product (including testing of the same to determine whether it does or does not meet Customer\u00e2\u20ac\u2122s requirements, and in the case of the Sample Code that any Open Source Software referenced therein has acceptable license terms), and for the distribution and use of any Redistributables as part of Licensed Applications. Customer agrees that Northwoods shall have no liability or responsibility for any use of any Redistributable as part of any Licensed Application, and Customer shall defend, indemnify, and hold harmless Northwoods and all other Indemnitees from and against any and all claims, losses, damages, liabilities, costs, and expenses (including reasonable attorneys\u00e2\u20ac\u2122 and other professional fees) that arise out of or relate to any such uses.\n\n4.6 Customer acknowledges that the limitations on Northwoods\u00e2\u20ac\u2122 liability set forth in this Agreement are a material part of the consideration payable by Customer to Northwoods under this Agreement and that Northwoods would not have entered into this Agreement without such limitations.\n\n5.0 TAXES; GOVERNMENTAL RESTRICTIONS\n\n5.1 Customer is solely responsible for any and all sales, use, and other taxes and governmental charges applicable to this Agreement and/or each Licensed Product, including the transfer of any media and/or data. Notwithstanding the foregoing, in no event shall Customer be responsible for any taxes based on the net income of Northwoods.\n\n5.2 Customer may not export or otherwise use any Licensed Product or any Redistributable except as authorized by United States law and the laws of the jurisdiction(s) in which such Licensed Product or Redistributable is to be used. In particular, but without limitation, no Licensed Product or Redistributable may be exported or re-exported (a) into any U.S. embargoed countries or (b) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Department of Commerce Denied Person\u00e2\u20ac\u2122s List or Entity List. Customer represents and warrants that Customer is not located in any such country or on any such list.\n\n5.3 If any Licensed Product is licensed to or for use by the U.S. Government or any agency thereof, the following provisions shall apply: Such license and usage rights include only those rights expressly set forth in this Agreement (which are the rights customarily provided by Northwoods to the public) and do not include any additional rights to use, modify, reproduce, release, perform, display, or disclose any Licensed Product or Redistributable. All Licensed Software and Redistributables are \u201cCommercial Computer Software\u201d, and all Documentation is \u201cCommercial Computer Software Documentation\u201d, within the meaning of the applicable civilian and military Federal acquisition regulations and any supplement thereto. If a government agency has a need for rights not conveyed under these terms, it must negotiate with Northwoods to determine if there are acceptable terms for transferring such rights, and a mutually acceptable written addendum specifically conveying such rights must be executed and delivered by Northwoods and the government agency. The contractor/manufacturer is Northwoods Software Corporation, 4 Water Street, Suite 101, Nashua, New Hampshire, USA.\n\n5.4 All unpublished rights are reserved under the copyright laws of the United States and all applicable foreign countries.\n\n6.0 GENERAL PROVISIONS\n\n6.1 Governing Law; Jurisdiction.\n\n This Agreement shall be governed by and construed in accordance with the laws of the State of New Hampshire, USA, without reference to its conflict of laws principles. The provisions of the United Nations Convention on Contracts for the International Sale of Goods are excluded.\n The parties agree that, in the event of any action for enforcement of or breach of this Agreement, the Federal and State courts of the State of New Hampshire shall have exclusive jurisdiction over the enforcement of this Agreement, and the parties specifically consent to, and agree that they are subject to, the jurisdiction of such courts; provided, that Northwoods shall be entitled to seek injunctive or other equitable relief in any court of competent jurisdiction.\n\n6.2 Notices. Except as otherwise specifically set forth in this Agreement, all notices and other communications required to be given under this Agreement shall be in writing and shall be deemed to have been sufficiently given if sent by registered or certified mail, return receipt requested, or by a nationally recognized express courier. Any such notice (a) if given to Northwoods, shall be sent to Northwoods at its address set forth on its web site (https://www.nwoods.com or any successor thereto), or (b) if given to Customer, shall be sent to Customer at its address set forth in the License-Specific Terms or such other address as Customer may have notified Northwoods in writing.\n\n6.3 Assignment. This Agreement is assignable by Northwoods. This Agreement is not assignable, in whole or in part, by Customer without the prior written consent of Northwoods, and any assignment or attempted assignment of this Agreement (including an assignment by operation of law) by Customer without such consent shall be void and shall also constitute a breach of this Agreement; provided, however, that Customer may assign this Agreement to a purchaser or other acquirer of all or substantially all of Customer\u00e2\u20ac\u2122s assets or business if, within thirty (30) days following such assignment, said purchaser or acquirer provides Northwoods with written notice of such permitted assignment and a written certification signed by the purchaser or acquirer agreeing to be bound by and perform all of Customer\u00e2\u20ac\u2122s obligations under this Agreement. This Agreement is binding on and for the benefit of Customer and its permitted successors and assigns, as well as Northwoods and its successors and assigns.\n\n6.4 Enforceability. Each provision of this Agreement shall be valid and enforced to the fullest extent permitted by law. If there is any conflict between any provision of this Agreement and any statute, law, or governmental ordinance, order, rule, or regulation, the latter shall prevail; provided, that any such conflicting provision shall be curtailed and limited only to the extent necessary to bring it within the legal requirements and the remainder of this Agreement shall not be affected thereby.\n\n6.5 Waiver. The failure of any party to enforce any term or condition of this Agreement shall not constitute a waiver of such party\u00e2\u20ac\u2122s right to enforce such term or condition or any other term or condition of this Agreement, unless waived in writing.\n\n6.6 Force Majeure. Neither party will be liable for any failure to perform any of such party\u00e2\u20ac\u2122s obligations under this Agreement (excluding, however, a party\u00e2\u20ac\u2122s payment obligations) due to any causes beyond such party\u00e2\u20ac\u2122s reasonable control, including acts of God (including earthquakes and other natural disasters), war, riot, embargoes, acts of civil or military authorities, fire, flood, accident, and strikes. In the event of any such cause, the affected party\u00e2\u20ac\u2122s time for delivery or other performance will be extended for a period equal to the duration of the delay caused thereby.\n\n6.7 Interpretation. Section headings are inserted for convenience of reference only and shall not affect the construction of this Agreement. The singular number shall include the plural, and vice versa. Any use of the word \u201cincluding\u201d will be interpreted to mean \u201cincluding, but not limited to,\u201d unless otherwise indicated. References to any individual or entity shall be construed to mean such individual or entity and his, her, or its successors in interest and permitted assigns, as applicable.\n\n6.8 Entire Agreement. This Agreement, including the License-Specific Terms, (a) is the entire agreement between Northwoods and Customer with respect to Northwoods\u00e2\u20ac\u2122 license to Customer of the Licensed Product(s) and Customer\u00e2\u20ac\u2122s right to use the same, and (b) supersedes all prior agreements, covenants, understandings, representations, warranties, and undertakings, whether written, electronic, or oral, between the parties regarding such matters.\n\n6.9 Amendments. This Agreement may only be amended by a writing duly executed and delivered by each party.\n\n6.10 Publicity. Northwoods shall be permitted to include Customer\u00e2\u20ac\u2122s name and logo in a list of Northwoods other customers on a Northwoods\u00e2\u20ac\u2122 website. Neither party may issue press releases including the other party\u00e2\u20ac\u2122s name without prior written consent of the other party.\n\nNorthwoods Software Corporation\n4 Water Street, Suite 101, Nashua, NH 03060 US\nInternet: https://www.nwoods.com\nE-mail: GoSales@nwoods.com\n\nCopyright \u00a9 1999-2021 Northwoods Software Corporation. All rights reserved.", + "json": "northwoods-sla-2021.json", + "yaml": "northwoods-sla-2021.yml", + "html": "northwoods-sla-2021.html", + "license": "northwoods-sla-2021.LICENSE" + }, + { + "license_key": "nosl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "NOSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Netizen Open Source License (NOSL) is a license based on the Mozilla Public License (MPL).\n\nNETIZEN OPEN SOURCE LICENSE Version 1.0\n\n1. Definitions.\n\n 1.0.1. \"Commercial Use\" means distribution or otherwise making the\n Covered Code available to a third party.\n\n 1.1. \"Contributor\" means each entity that creates or contributes to\n the creation of Modifications.\n\n 1.2. \"Contributor Version\" means the combination of the Original\n Code, prior Modifications used by a Contributor, and the Modifications\n made by that particular Contributor.\n\n 1.3. \"Covered Code\" means the Original Code or Modifications or the\n combination of the Original Code and Modifications, in each case\n including portions thereof.\n\n 1.4. \"Electronic Distribution Mechanism\" means a mechanism generally\n accepted in the software development community for the electronic\n transfer of data.\n\n 1.5. \"Executable\" means Covered Code in any form other than Source\n Code.\n\n 1.6. \"Initial Developer\" means the individual or entity identified\n as the Initial Developer in the Source Code notice required by Exhibit\n A.\n\n 1.7. \"Larger Work\" means a work which combines Covered Code or\n portions thereof with code not governed by the terms of this License.\n\n 1.8. \"License\" means this document.\n\n 1.8.1. \"Licensable\" means having the right to grant, to the maximum\n extent possible, whether at the time of the initial grant or\n subsequently acquired, any and all of the rights conveyed herein.\n\n 1.9. \"Modifications\" means any addition to or deletion from the\n substance or structure of either the Original Code or any previous\n Modifications. When Covered Code is released as a series of files, a\n Modification is:\n A. Any addition to or deletion from the contents of a file\n containing Original Code or previous Modifications.\n\n B. Any new file that contains any part of the Original Code or\n previous Modifications.\n\n 1.10. \"Original Code\" means Source Code of computer software code\n which is described in the Source Code notice required by Exhibit A as\n Original Code, and which, at the time of its release under this\n License is not already Covered Code governed by this License.\n\n 1.10.1. \"Patent Claims\" means any patent claim(s), now owned or\n hereafter acquired, including without limitation, method, process,\n and apparatus claims, in any patent Licensable by grantor.\n\n 1.11. \"Source Code\" means the preferred form of the Covered Code for\n making modifications to it, including all modules it contains, plus\n any associated interface definition files, scripts used to control\n compilation and installation of an Executable, or source code\n differential comparisons against either the Original Code or another\n well known, available Covered Code of the Contributor's choice. The\n Source Code can be in a compressed or archival form, provided the\n appropriate decompression or de-archiving software is widely available\n for no charge.\n\n 1.12. \"You\" (or \"Your\") means an individual or a legal entity\n exercising rights under, and complying with all of the terms of, this\n License or a future version of this License issued under Section 6.1.\n For legal entities, \"You\" includes any entity which controls, is\n controlled by, or is under common control with You. For purposes of\n this definition, \"control\" means (a) the power, direct or indirect,\n to cause the direction or management of such entity, whether by\n contract or otherwise, or (b) ownership of more than fifty percent\n (50%) of the outstanding shares or beneficial ownership of such\n entity.\n\n2. Source Code License.\n\n 2.1. The Initial Developer Grant.\n The Initial Developer hereby grants You a world-wide, royalty-free,\n non-exclusive license, subject to third party intellectual property\n claims:\n (a) under intellectual property rights (other than patent or\n trademark) Licensable by Initial Developer to use, reproduce,\n modify, display, perform, sublicense and distribute the Original\n Code (or portions thereof) with or without Modifications, and/or\n as part of a Larger Work; and\n\n (b) under Patents Claims infringed by the making, using or\n selling of Original Code, to make, have made, use, practice,\n sell, and offer for sale, and/or otherwise dispose of the\n Original Code (or portions thereof).\n\n (c) the licenses granted in this Section 2.1(a) and (b) are\n effective on the date Initial Developer first distributes\n Original Code under the terms of this License.\n\n (d) Notwithstanding Section 2.1(b) above, no patent license is\n granted: 1) for code that You delete from the Original Code; 2)\n separate from the Original Code; or 3) for infringements caused\n by: i) the modification of the Original Code or ii) the\n combination of the Original Code with other software or devices.\n\n 2.2. Contributor Grant.\n Subject to third party intellectual property claims, each Contributor\n hereby grants You a world-wide, royalty-free, non-exclusive license\n\n (a) under intellectual property rights (other than patent or\n trademark) Licensable by Contributor, to use, reproduce, modify,\n display, perform, sublicense and distribute the Modifications\n created by such Contributor (or portions thereof) either on an\n unmodified basis, with other Modifications, as Covered Code\n and/or as part of a Larger Work; and\n\n (b) under Patent Claims infringed by the making, using, or\n selling of Modifications made by that Contributor either alone\n and/or in combination with its Contributor Version (or portions\n of such combination), to make, use, sell, offer for sale, have\n made, and/or otherwise dispose of: 1) Modifications made by that\n Contributor (or portions thereof); and 2) the combination of\n Modifications made by that Contributor with its Contributor\n Version (or portions of such combination).\n\n (c) the licenses granted in Sections 2.2(a) and 2.2(b) are\n effective on the date Contributor first makes Commercial Use of\n the Covered Code.\n\n (d) Notwithstanding Section 2.2(b) above, no patent license is\n granted: 1) for any code that Contributor has deleted from the\n Contributor Version; 2) separate from the Contributor Version;\n 3) for infringements caused by: i) third party modifications of\n Contributor Version or ii) the combination of Modifications made\n by that Contributor with other software (except as part of the\n Contributor Version) or other devices; or 4) under Patent Claims\n infringed by Covered Code in the absence of Modifications made by\n that Contributor.\n\n3. Distribution Obligations.\n\n 3.1. Application of License.\n The Modifications which You create or to which You contribute are\n governed by the terms of this License, including without limitation\n Section 2.2. The Source Code version of Covered Code may be\n distributed only under the terms of this License or a future version\n of this License released under Section 6.1, and You must include a\n copy of this License with every copy of the Source Code You\n distribute. You may not offer or impose any terms on any Source Code\n version that alters or restricts the applicable version of this\n License or the recipients' rights hereunder. However, You may include\n an additional document offering the additional rights described in\n Section 3.5.\n\n 3.2. Availability of Source Code.\n Any Modification which You create or to which You contribute must be\n made available in Source Code form under the terms of this License\n either on the same media as an Executable version or via an accepted\n Electronic Distribution Mechanism to anyone to whom you made an\n Executable version available; and if made available via Electronic\n Distribution Mechanism, must remain available for at least twelve (12)\n months after the date it initially became available, or at least six\n (6) months after a subsequent version of that particular Modification\n has been made available to such recipients. You are responsible for\n ensuring that the Source Code version remains available even if the\n Electronic Distribution Mechanism is maintained by a third party.\n\n 3.3. Description of Modifications.\n You must cause all Covered Code to which You contribute to contain a\n file documenting the changes You made to create that Covered Code and\n the date of any change. You must include a prominent statement that\n the Modification is derived, directly or indirectly, from Original\n Code provided by the Initial Developer and including the name of the\n Initial Developer in (a) the Source Code, and (b) in any notice in an\n Executable version or related documentation in which You describe the\n origin or ownership of the Covered Code.\n\n 3.4. Intellectual Property Matters\n (a) Third Party Claims.\n If Contributor has knowledge that a license under a third party's\n intellectual property rights is required to exercise the rights\n granted by such Contributor under Sections 2.1 or 2.2,\n Contributor must include a text file with the Source Code\n distribution titled \"LEGAL\" which describes the claim and the\n party making the claim in sufficient detail that a recipient will\n know whom to contact. If Contributor obtains such knowledge after\n the Modification is made available as described in Section 3.2,\n Contributor shall promptly modify the LEGAL file in all copies\n Contributor makes available thereafter and shall take other steps\n (such as notifying appropriate mailing lists or newsgroups)\n reasonably calculated to inform those who received the Covered\n Code that new knowledge has been obtained.\n\n (b) Contributor APIs.\n If Contributor's Modifications include an application programming\n interface and Contributor has knowledge of patent licenses which\n are reasonably necessary to implement that API, Contributor must\n also include this information in the LEGAL file.\n\n (c) Representations.\n Contributor represents that, except as disclosed pursuant to\n Section 3.4(a) above, Contributor believes that Contributor's\n Modifications are Contributor's original creation(s) and/or\n Contributor has sufficient rights to grant the rights conveyed by\n this License.\n\n 3.5. Required Notices.\n You must duplicate the notice in Exhibit A in each file of the Source\n Code. If it is not possible to put such notice in a particular Source\n Code file due to its structure, then You must include such notice in a\n location (such as a relevant directory) where a user would be likely\n to look for such a notice. If You created one or more Modification(s)\n You may add your name as a Contributor to the notice described in\n Exhibit A. You must also duplicate this License in any documentation\n for the Source Code where You describe recipients' rights or ownership\n rights relating to Covered Code. You may choose to offer, and to\n charge a fee for, warranty, support, indemnity or liability\n obligations to one or more recipients of Covered Code. However, You\n may do so only on Your own behalf, and not on behalf of the Initial\n Developer or any Contributor. You must make it absolutely clear than\n any such warranty, support, indemnity or liability obligation is\n offered by You alone, and You hereby agree to indemnify the Initial\n Developer and every Contributor for any liability incurred by the\n Initial Developer or such Contributor as a result of warranty,\n support, indemnity or liability terms You offer.\n\n 3.6. Distribution of Executable Versions.\n You may distribute Covered Code in Executable form only if the\n requirements of Section 3.1-3.5 have been met for that Covered Code,\n and if You include a notice stating that the Source Code version of\n the Covered Code is available under the terms of this License,\n including a description of how and where You have fulfilled the\n obligations of Section 3.2. The notice must be conspicuously included\n in any notice in an Executable version, related documentation or\n collateral in which You describe recipients' rights relating to the\n Covered Code. You may distribute the Executable version of Covered\n Code or ownership rights under a license of Your choice, which may\n contain terms different from this License, provided that You are in\n compliance with the terms of this License and that the license for the\n Executable version does not attempt to limit or alter the recipient's\n rights in the Source Code version from the rights set forth in this\n License. If You distribute the Executable version under a different\n license You must make it absolutely clear that any terms which differ\n from this License are offered by You alone, not by the Initial\n Developer or any Contributor. You hereby agree to indemnify the\n Initial Developer and every Contributor for any liability incurred by\n the Initial Developer or such Contributor as a result of any such\n terms You offer.\n\n 3.7. Larger Works.\n You may create a Larger Work by combining Covered Code with other code\n not governed by the terms of this License and distribute the Larger\n Work as a single product. In such a case, You must make sure the\n requirements of this License are fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\n\n If it is impossible for You to comply with any of the terms of this\n License with respect to some or all of the Covered Code due to\n statute, judicial order, or regulation then You must: (a) comply with\n the terms of this License to the maximum extent possible; and (b)\n describe the limitations and the code they affect. Such description\n must be included in the LEGAL file described in Section 3.4 and must\n be included with all distributions of the Source Code. Except to the\n extent prohibited by statute or regulation, such description must be\n sufficiently detailed for a recipient of ordinary skill to be able to\n understand it.\n\n5. Application of this License.\n\n This License applies to code to which the Initial Developer has\n attached the notice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n\n 6.1. New Versions.\n Netizen Pty Ltd (\"Netizen \") may publish revised and/or new versions \n of the License from time to time. Each version will be given a \n distinguishing version number.\n\n 6.2. Effect of New Versions.\n Once Covered Code has been published under a particular version of the\n License, You may always continue to use it under the terms of that\n version. You may also choose to use such Covered Code under the terms\n of any subsequent version of the License published by Netizen. No one\n other than Netizen has the right to modify the terms applicable to\n Covered Code created under this License.\n\n 6.3. Derivative Works.\n If You create or use a modified version of this License (which you may\n only do in order to apply it to code which is not already Covered Code\n governed by this License), You must (a) rename Your license so that\n the phrases \"Netizen\", \"NOSL\" or any confusingly similar phrase do not \n appear in your license (except to note that your license differs from \n this License) and (b) otherwise make it clear that Your version of the \n license contains terms which differ from the Netizen Open Source \n License and Xen Open Source License. (Filling in the name of the \n Initial Developer, Original Code or Contributor in the notice described \n in Exhibit A shall not of themselves be deemed to be modifications of\n this License.)\n\n7. DISCLAIMER OF WARRANTY.\n\n COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS,\n WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\n WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF\n DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.\n THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE\n IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT,\n YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE\n COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER\n OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF\n ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n 7.1 To the extent permitted by law and except as expressly provided \n to the contrary in this Agreement, all warranties whether express, \n implied, statutory or otherwise, relating in any way to the subject\n matter of this Agreement or to this Agreement generally, are excluded. \n Where legislation implies in this Agreement any condition or warranty \n and that legislation avoids or prohibits provisions in a contract \n excluding or modifying the application of or the exercise of or \n liability under such term, such term shall be deemed to be included \n in this Agreement. However, the liability of Supplier for any breach \n of such term shall be limited, at the option of Supplier, to any one \n or more of the following: if the breach related to goods: the \n replacement of the goods or the supply of equivalent goods; the repair \n of such goods; the payment of the cost of replacing the goods or of \n acquiring equivalent goods; or the payment of the cost of having the \n goods repaired; and if the breach relates to services the supplying \n of the services again; or the payment of the cost of having the \n services supplied again.\n\n8. TERMINATION.\n\n 8.1. This License and the rights granted hereunder will terminate\n automatically if You fail to comply with terms herein and fail to cure\n such breach within 30 days of becoming aware of the breach. All\n sublicenses to the Covered Code which are properly granted shall\n survive any termination of this License. Provisions which, by their\n nature, must remain in effect beyond the termination of this License\n shall survive.\n\n 8.2. If You initiate litigation by asserting a patent infringement\n claim (excluding declatory judgment actions) against Initial Developer\n or a Contributor (the Initial Developer or Contributor against whom\n You file such action is referred to as \"Participant\") alleging that:\n\n (a) such Participant's Contributor Version directly or indirectly\n infringes any patent, then any and all rights granted by such\n Participant to You under Sections 2.1 and/or 2.2 of this License\n shall, upon 60 days notice from Participant terminate prospectively,\n unless if within 60 days after receipt of notice You either: (i)\n agree in writing to pay Participant a mutually agreeable reasonable\n royalty for Your past and future use of Modifications made by such\n Participant, or (ii) withdraw Your litigation claim with respect to\n the Contributor Version against such Participant. If within 60 days\n of notice, a reasonable royalty and payment arrangement are not\n mutually agreed upon in writing by the parties or the litigation claim\n is not withdrawn, the rights granted by Participant to You under\n Sections 2.1 and/or 2.2 automatically terminate at the expiration of\n the 60 day notice period specified above.\n\n (b) any software, hardware, or device, other than such Participant's\n Contributor Version, directly or indirectly infringes any patent, then\n any rights granted to You by such Participant under Sections 2.1(b)\n and 2.2(b) are revoked effective as of the date You first made, used,\n sold, distributed, or had made, Modifications made by that\n Participant.\n\n 8.3. If You assert a patent infringement claim against Participant\n alleging that such Participant's Contributor Version directly or\n indirectly infringes any patent where such claim is resolved (such as\n by license or settlement) prior to the initiation of patent\n infringement litigation, then the reasonable value of the licenses\n granted by such Participant under Sections 2.1 or 2.2 shall be taken\n into account in determining the amount or value of any payment or\n license.\n\n 8.4. In the event of termination under Sections 8.1 or 8.2 above,\n all end user license agreements (excluding distributors and resellers)\n which have been validly granted by You or any distributor hereunder\n prior to termination shall survive termination.\n\n9. LIMITATION OF LIABILITY.\n\n UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\n (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL\n DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,\n OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR\n ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY\n CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,\n WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\n COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\n INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF\n LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\n RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\n PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE\n EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO\n THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS.\n\n The Covered Code is a \"commercial item,\" as that term is defined in\n 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer\n software\" and \"commercial computer software documentation,\" as such\n terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48\n C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),\n all U.S. Government End Users acquire Covered Code with only those\n rights set forth herein.\n\n11. MISCELLANEOUS.\n\n This License represents the complete agreement concerning subject\n matter hereof. If any provision of this License is held to be\n unenforceable, such provision shall be reformed only to the extent\n necessary to make it enforceable.\n\n This Agreement shall be governed by and construed according to the \n law of the State of Victoria. The parties irrevocably submit to the \n exclusive jurisdiction of the Courts of Victoria and Australia and \n any Courts hearing appeals from such Courts. This Agreement is \n deemed to have been made in Victoria.\n\n The application of the United Nations Convention on\n Contracts for the International Sale of Goods is expressly excluded.\n Any law or regulation which provides that the language of a contract\n shall be construed against the drafter shall not apply to this\n License.\n\n12. RESPONSIBILITY FOR CLAIMS.\n\n As between Initial Developer and the Contributors, each party is\n responsible for claims and damages arising, directly or indirectly,\n out of its utilization of rights under this License and You agree to\n work with Initial Developer and Contributors to distribute such\n responsibility on an equitable basis. Nothing herein is intended or\n shall be deemed to constitute any admission of liability.\n\n13. MULTIPLE-LICENSED CODE.\n\n Initial Developer may designate portions of the Covered Code as\n \"Multiple-Licensed\". \"Multiple-Licensed\" means that the Initial\n Developer permits you to utilize portions of the Covered Code under\n Your choice of the NPL or the alternative licenses, if any, specified\n by the Initial Developer in the file described in Exhibit A.\n\nEXHIBIT A - Netizen Open Source License\n\n ``The contents of this file are subject to the Netizen Open Source\n License Version 1.0 (the \"License\"); you may not use this file except \n in compliance with the License. You may obtain a copy of the License at\n http://netizen.com.au/licenses/NOPL/\n\n Software distributed under the License is distributed on an \"AS IS\"\n basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the\n License for the specific language governing rights and limitations\n under the License.\n\n The Original Code is .\n\n The Initial Developer of the Original Code is .\n Portions created by are Copyright (C) \n . All Rights Reserved.\n\n Contributor(s): .\n\n Alternatively, the contents of this file may be used under the terms\n of the license (the \"[ ] License\"), in which case the\n provisions of [ ] License are applicable instead of those\n above. If you wish to allow use of your version of this file only\n under the terms of the [ ] License and not to allow others to use\n your version of this file under the NOSL, indicate your decision by\n deleting the provisions above and replace them with the notice and\n other provisions required by the [ ] License. If you do not delete\n the provisions above, a recipient may use your version of this file\n under either the NOSL or the [ ] License.\"\n\n [NOTE: The text of this Exhibit A may differ slightly from the text of\n the notices in the Source Code files of the Original Code. You should\n use the text of this Exhibit A rather than the text found in the\n Original Code Source Code for Your Modifications.]\n\n ----------------------------------------------------------------------", + "json": "nosl-1.0.json", + "yaml": "nosl-1.0.yml", + "html": "nosl-1.0.html", + "license": "nosl-1.0.LICENSE" + }, + { + "license_key": "nosl-3.0", + "category": "Copyleft", + "spdx_license_key": "NPOSL-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Non-Profit Open Software License (\"Non-Profit OSL\") 3.0\n\nThis Non-Profit Open Software License (\"Non-Profit OSL\") version 3.0 (the \"License\") applies to any original work of authorship (the \"Original Work\") whose owner (the \"Licensor\") has placed the following licensing notice adjacent to the copyright notice for the Original Work:\n\nLicensed under the Non-Profit Open Software License version 3.0\n\n1) Grant of Copyright License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, for the duration of the copyright, to do the following:\n\na) to reproduce the Original Work in copies, either alone or as part of a collective work;\n\nb) to translate, adapt, alter, transform, modify, or arrange the Original Work, thereby creating derivative works (\"Derivative Works\") based upon the Original Work;\n\nc) to distribute or communicate copies of the Original Work and Derivative Works to the public, with the proviso that copies of Original Work or Derivative Works that You distribute or communicate shall be licensed under this Non-Profit Open Software License or as provided in section 17(d);\n\nd) to perform the Original Work publicly; and\n\ne) to display the Original Work publicly.\n\n2) Grant of Patent License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, for the duration of the patents, to make, use, sell, offer for sale, have made, and import the Original Work and Derivative Works.\n\n3) Grant of Source Code License. The term \"Source Code\" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work.\n\n4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior permission of the Licensor. Except as expressly stated herein, nothing in this License grants any license to Licensor's trademarks, copyrights, patents, trade secrets or any other intellectual property. No patent license is granted to make, use, sell, offer for sale, have made, or import embodiments of any patent claims other than the licensed claims defined in Section 2. No license is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under terms different from this License any Original Work that Licensor otherwise would have a right to license.\n\n5) External Deployment. The term \"External Deployment\" means the use, distribution, or communication of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether those works are distributed or communicated to those persons or made available as an application intended for use over a network. As an express condition for the grants of license hereunder, You must treat any External Deployment by You of the Original Work or a Derivative Work as a distribution under section 1(c).\n\n6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent, or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an \"Attribution Notice.\" You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work.\n\n7) Warranty of Provenance and Disclaimer of Warranty. The Original Work is provided under this License on an \"AS IS\" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of non-infringement, merchantability or fitness for a particular purpose. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to the Original Work is granted by this License except under this disclaimer.\n\n8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to anyone for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to the extent applicable law prohibits such limitation.\n\n9) Acceptance and Termination. If, at any time, You expressly assented to this License, that assent indicates your clear and irrevocable acceptance of this License and all of its terms and conditions. If You distribute or communicate copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. This License conditions your rights to undertake the activities listed in Section 1, including your right to create Derivative Works based upon the Original Work, and doing so without honoring these terms and conditions is prohibited by copyright law and international treaty. Nothing in this License is intended to affect copyright exceptions and limitations (including \"fair use\" or \"fair dealing\"). This License shall terminate immediately and You may no longer exercise any of the rights granted to You by this License upon your failure to honor the conditions in Section 1(c).\n\n10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware.\n\n11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of copyright or patent law in the appropriate jurisdiction. This section shall survive the termination of this License.\n\n12) Attorneys' Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License.\n\n13) Miscellaneous. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable.\n\n14) Definition of \"You\" in This License. \"You\" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, \"You\" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, \"control\" means (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.\n\n15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You.\n\n16) Modification of This License. This License is Copyright \u00a9 2005 Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the \"Modified License\") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the \"Open Software License\" or \"OSL\" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice \"Licensed under \" or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process.\n\n17) Non-Profit Amendment. The name of this amended version of the Open Software License (\"OSL 3.0\") is \"Non-Profit Open Software License 3.0\". The original OSL 3.0 license has been amended as follows:\n\n(a) Licensor represents and declares that it is a not-for-profit organization that derives no revenue whatsoever from the distribution of the Original Work or Derivative Works thereof, or from support or services relating thereto.\n\n(b) The first sentence of Section 7 [\"Warranty of Provenance\"] of OSL 3.0 has been stricken. For Original Works licensed under this Non-Profit OSL 3.0, LICENSOR OFFERS NO WARRANTIES WHATSOEVER.\n\n(c) In the first sentence of Section 8 [\"Limitation of Liability\"] of this Non-Profit OSL 3.0, the list of damages for which LIABILITY IS LIMITED now includes \"direct\" damages.\n\n(d) The proviso in Section 1(c) of this License now refers to this \"Non-Profit Open Software License\" rather than the \"Open Software License\". You may distribute or communicate the Original Work or Derivative Works thereof under this Non-Profit OSL 3.0 license only if You make the representation and declaration in paragraph (a) of this Section 17. Otherwise, You shall distribute or communicate the Original Work or Derivative Works thereof only under the OSL 3.0 license and You shall publish clear licensing notices so stating. Also by way of clarification, this License does not authorize You to distribute or communicate works under this Non-Profit OSL 3.0 if You received them under the original OSL 3.0 license.\n\n(e) Original Works licensed under this license shall reference \"Non-Profit OSL 3.0\" in licensing notices to distinguish them from works licensed under the original OSL 3.0 license.", + "json": "nosl-3.0.json", + "yaml": "nosl-3.0.yml", + "html": "nosl-3.0.html", + "license": "nosl-3.0.LICENSE" + }, + { + "license_key": "notre-dame", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-notre-dame", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "COPYRIGHT NOTICE:\nCopyright 1997-2000, University of Notre Dame.\nAuthors: Jeremy G. Siek, Jeffery M. Squyres, Michael P. McNally, and\n Andrew Lumsdaine\n\nLICENSE AGREEMENT:\nIn consideration of being allowed to copy and/or use this software,\nuser agrees to be bound by the terms and conditions of this License\nAgreement as \"Licensee.\" This Agreement gives you, the LICENSEE,\ncertain rights and obligations. By using the software, you indicate\nthat you have read, understood, and will comply with the following\nterms and conditions.\n\nPermission is hereby granted to use or copy this program for any\npurpose, provided the text of this NOTICE (to include COPYRIGHT\nNOTICE, LICENSE AGREEMENT, and DISCLAIMER) is retained with all\ncopies. Permission to modify the code and to distribute modified code\nis granted, provided the text of this NOTICE is retained, a notice\nthat the code was modified is included with the above COPYRIGHT NOTICE\nand with the COPYRIGHT NOTICE in any modified files, and that this\nfile (\"LICENSE\") is distributed with the modified code.\n\nTitle to copyright to this software and its derivatives and to any\nassociated documentation shall at all times remain with Licensor and\nLICENSEE agrees to preserve the same. Nothing in this Agreement shall\nbe construed as conferring rights to use in advertising, publicity or\notherwise any trademark or the name of the University of Notre Dame du\nLac.\n\nDISCLAIMER:\n\nLICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED.\nBy way of example, but not limitation, Licensor MAKES NO\nREPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY\nPARTICULAR PURPOSE OR THAT THE USE OF THE LICENSED SOFTWARE COMPONENTS\nOR DOCUMENTATION WILL NOT INFRINGE ANY PATENTS, COPYRIGHTS, TRADEMARKS\nOR OTHER RIGHTS.\n\nThe Authors and the University of Notre Dame du Lac shall not be held\nliable for any liability nor for any direct, indirect or consequential\ndamages with respect to any claim by LICENSEE or any third party on\naccount of or arising from this Agreement or use of this software.\n\nAny disputes arising out of this Agreement or LICENSEE'S use of the\nsoftware at any time shall be resolved by the courts of the state of\nIndiana. LICENSEE hereby consents to the jurisdiction of the Indiana\ncourts and waives the right to challenge the jurisdiction thereof in\nany dispute arising out of this Agreement or Licensee's use of the\nsoftware.", + "json": "notre-dame.json", + "yaml": "notre-dame.yml", + "html": "notre-dame.html", + "license": "notre-dame.LICENSE" + }, + { + "license_key": "noweb", + "category": "Copyleft Limited", + "spdx_license_key": "Noweb", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Noweb is protected by copyright. It is not public-domain\nsoftware or shareware, and it is not protected by a ``copyleft''\nagreement like the one used by the Free Software Foundation.\n\nNoweb is available free for any use in any field of endeavor. You may\nredistribute noweb in whole or in part provided you acknowledge its\nsource and include this COPYRIGHT file. You may modify noweb and\ncreate derived works, provided you retain this copyright notice, but\nthe result may not be called noweb without my written consent. \n\nYou may sell noweb if you wish. For example, you may sell a CD-ROM\nincluding noweb. \n\nYou may sell a derived work, provided that all source code for your\nderived work is available, at no additional charge, to anyone who buys\nyour derived work in any form. You must give permisson for said\nsource code to be used and modified under the terms of this license.\nYou must state clearly that your work uses or is based on noweb and\nthat noweb is available free of change. You must also request that\nbug reports on your work be reported to you.", + "json": "noweb.json", + "yaml": "noweb.yml", + "html": "noweb.html", + "license": "noweb.LICENSE" + }, + { + "license_key": "npl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "NPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "NETSCAPE PUBLIC LICENSE\nVersion 1.0\n\n1. Definitions.\n\n1.1. ``Contributor'' means each entity that creates or contributes to the creation of Modifications.\n1.2. ``Contributor Version'' means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor.\n\n1.3. ``Covered Code'' means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof.\n\n1.4. ``Electronic Distribution Mechanism'' means a mechanism generally accepted in the software development community for the electronic transfer of data.\n\n1.5. ``Executable'' means Covered Code in any form other than Source Code.\n\n1.6. ``Initial Developer'' means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A.\n\n1.7. ``Larger Work'' means a work which combines Covered Code or portions thereof with code not governed by the terms of this License.\n\n1.8. ``License'' means this document.\n\n1.9. ``Modifications'' means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is:\n\nA. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications.\n\nB. Any new file that contains any part of the Original Code or previous Modifications.\n\n1.10. ``Original Code'' means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License.\n\n1.11. ``Source Code'' means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or a list of source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge.\n\n1.12. ``You'' means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, ``You'' includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, ``control'' means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity.\n\n2. Source Code License.\n2.1. The Initial Developer Grant. \nThe Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims:\n(a) to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, or as part of a Larger Work; and\n\n(b) under patents now or hereafter owned or controlled by Initial Developer, to make, have made, use and sell (``Utilize'') the Original Code (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Original Code (or portions thereof) and not to any greater extent that may be necessary to Utilize further Modifications or combinations.\n\n2.2. Contributor Grant. \nEach Contributor hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims:\n\n(a) to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code or as part of a Larger Work; and\n\n(b) under patents now or hereafter owned or controlled by Contributor, to Utilize the Contributor Version (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Contributor Version (or portions thereof), and not to any greater extent that may be necessary to Utilize further Modifications or combinations.\n\n3. Distribution Obligations.\n3.1. Application of License. \nThe Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5.\n3.2. Availability of Source Code. \nAny Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\n3.3. Description of Modifications. \nYou must cause all Covered Code to which you contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters\n\n(a) Third Party Claims. \nIf You have knowledge that a party claims an intellectual property right in particular functionality or code (or its utilization under this License), you must include a text file with the source code distribution titled ``LEGAL'' which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after You make Your Modification available as described in Section 3.2, You shall promptly modify the LEGAL file in all copies You make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained.\n\n(b) Contributor APIs. \nIf Your Modification is an application programming interface and You own or control patents which are reasonably necessary to implement that API, you must also include this information in the LEGAL file.\n\n3.5. Required Notices. \nYou must duplicate the notice in Exhibit A in each file of the Source Code, and this License in any documentation for the Source Code, where You describe recipients' rights relating to Covered Code. If You created one or more Modification(s), You may add your name as a Contributor to the notice described in Exhibit A. If it is not possible to put such notice in a particular Source Code file due to its structure, then you must include such notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions. \nYou may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer.\n\n3.7. Larger Works. \nYou may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\nIf it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n\n5. Application of this License.\nThis License applies to code to which the Initial Developer has attached the notice in Exhibit A, and to related Covered Code.\n6. Versions of the License.\n6.1. New Versions. \nNetscape Communications Corporation (``Netscape'') may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number.\n6.2. Effect of New Versions. \nOnce Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License.\n\n6.3. Derivative Works. \nIf you create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), you must (a) rename Your license so that the phrases ``Mozilla'', ``MOZILLAPL'', ``MOZPL'', ``Netscape'', ``NPL'' or any confusingly similar phrase do not appear anywhere in your license and (b) otherwise make it clear that your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.)\n\n7. DISCLAIMER OF WARRANTY.\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN ``AS IS'' BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n8. TERMINATION.\nThis License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.\n9. LIMITATION OF LIABILITY.\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n10. U.S. GOVERNMENT END USERS.\nThe Covered Code is a ``commercial item,'' as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of ``commercial computer software'' and ``commercial computer software documentation,'' as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n11. MISCELLANEOUS.\nThis License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in, the United States of America: (a) unless otherwise agreed in writing, all disputes relating to this License (excepting any dispute relating to intellectual property rights) shall be subject to final and binding arbitration, with the losing party paying all costs of arbitration; (b) any arbitration relating to this Agreement shall be held in Santa Clara County, California, under the auspices of JAMS/EndDispute; and (c) any litigation relating to this Agreement shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n12. RESPONSIBILITY FOR CLAIMS.\nExcept in cases where another Contributor has failed to comply with Section 3.4, You are responsible for damages arising, directly or indirectly, out of Your utilization of rights under this License, based on the number of copies of Covered Code you made available, the revenues you received from utilizing such rights, and other relevant factors. You agree to work with affected parties to distribute responsibility on an equitable basis.\nAMENDMENTS\nAdditional Terms applicable to the Netscape Public License.\nI. Effect. \nThese additional terms described in this Netscape Public License -- Amendments shall apply to the Mozilla Communicator client code and to all Covered Code under this License.\n\nII. ``Netscape's Branded Code'' means Covered Code that Netscape distributes and/or permits others to distribute under one or more trademark(s) which are controlled by Netscape but which are not licensed for use under this License.\n\nIII. Netscape and logo. \nThis License does not grant any rights to use the trademark ``Netscape'', the ``Netscape N and horizon'' logo or the Netscape lighthouse logo, even if such marks are included in the Original Code.\n\nIV. Inability to Comply Due to Contractual Obligation. \nPrior to licensing the Original Code under this License, Netscape has licensed third party code for use in Netscape's Branded Code. To the extent that Netscape is limited contractually from making such third party code available under this License, Netscape may choose to reintegrate such code into Covered Code without being required to distribute such code in Source Code form, even if such code would otherwise be considered ``Modifications'' under this License.\n\nV. Use of Modifications and Covered Code by Initial Developer.\n\nV.1. In General. \nThe obligations of Section 3 apply to Netscape, except to the extent specified in this Amendment, Section V.2 and V.3.\n\nV.2. Other Products. \nNetscape may include Covered Code in products other than the Netscape's Branded Code which are released by Netscape during the two (2) years following the release date of the Original Code, without such additional products becoming subject to the terms of this License, and may license such additional products on different terms from those contained in this License.\n\nV.3. Alternative Licensing. \nNetscape may license the Source Code of Netscape's Branded Code, including Modifications incorporated therein, without such additional products becoming subject to the terms of this License, and may license such additional products on different terms from those contained in this License.\n\nVI. Arbitration and Litigation. \nNotwithstanding the limitations of Section 11 above, the provisions regarding arbitration and litigation in Section 11(a), (b) and (c) of the License shall apply to all disputes relating to this License.\n\nEXHIBIT A.\n``The contents of this file are subject to the Netscape Public License Version 1.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.mozilla.org/NPL/\nSoftware distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.\n\nThe Original Code is Mozilla Communicator client code, released March 31, 1998.\n\nThe Initial Developer of the Original Code is Netscape Communications Corporation. Portions created by Netscape are Copyright (C) 1998 Netscape Communications Corporation. All Rights Reserved.\n\nContributor(s): .''\n\n\n[NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. This is due to time constraints encountered in simultaneously finalizing the License and in preparing the Original Code for release. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.]", + "json": "npl-1.0.json", + "yaml": "npl-1.0.yml", + "html": "npl-1.0.html", + "license": "npl-1.0.LICENSE" + }, + { + "license_key": "npl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "NPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "AMENDMENTS\nThe Netscape Public License Version 1.1 (\"NPL\") consists of the Mozilla Public License Version 1.1 with the following Amendments, including Exhibit A-Netscape Public License. Files identified with \"Exhibit A-Netscape Public License\" are governed by the Netscape Public License Version 1.1.\n\nAdditional Terms applicable to the Netscape Public License.\n\nI. Effect. \nThese additional terms described in this Netscape Public License -- Amendments shall apply to the Mozilla Communicator client code and to all Covered Code under this License.\nII. ''Netscape's Branded Code'' means Covered Code that Netscape distributes and/or permits others to distribute under one or more trademark(s) which are controlled by Netscape but which are not licensed for use under this License.\n\nIII. Netscape and logo. \nThis License does not grant any rights to use the trademarks \"Netscape'', the \"Netscape N and horizon'' logo or the \"Netscape lighthouse\" logo, \"Netcenter\", \"Gecko\", \"Java\" or \"JavaScript\", \"Smart Browsing\" even if such marks are included in the Original Code or Modifications.\n\nIV. Inability to Comply Due to Contractual Obligation. \nPrior to licensing the Original Code under this License, Netscape has licensed third party code for use in Netscape's Branded Code. To the extent that Netscape is limited contractually from making such third party code available under this License, Netscape may choose to reintegrate such code into Covered Code without being required to distribute such code in Source Code form, even if such code would otherwise be considered ''Modifications'' under this License.\n\nV. Use of Modifications and Covered Code by Initial Developer.\n\nV.1. In General. \nThe obligations of Section 3 apply to Netscape, except to the extent specified in this Amendment, Section V.2 and V.3.\nV.2. Other Products. \nNetscape may include Covered Code in products other than the Netscape's Branded Code which are released by Netscape during the two (2) years following the release date of the Original Code, without such additional products becoming subject to the terms of this License, and may license such additional products on different terms from those contained in this License.\n\nV.3. Alternative Licensing. \nNetscape may license the Source Code of Netscape's Branded Code, including Modifications incorporated therein, without such Netscape Branded Code becoming subject to the terms of this License, and may license such Netscape Branded Code on different terms from those contained in this License. \n \n\nVI. Litigation. \nNotwithstanding the limitations of Section 11 above, the provisions regarding litigation in Section 11(a), (b) and (c) of the License shall apply to all disputes relating to this License.\n\nEXHIBIT A-Netscape Public License.\n\n\n''The contents of this file are subject to the Netscape Public License Version 1.1 (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.mozilla.org/NPL/\nSoftware distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.\n\nThe Original Code is Mozilla Communicator client code, released March 31, 1998.\n\nThe Initial Developer of the Original Code is Netscape Communications Corporation. Portions created by Netscape are Copyright (C) 1998-1999 Netscape Communications Corporation. All Rights Reserved.\n\nContributor(s): .\n\n\nAlternatively, the contents of this file may be used under the terms of the license (the \"[ ] License\"), in which case the provisions of [ ] License are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the [ ] License and not to allow others to use your version of this file under the NPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [ ] License. If you do not delete the provisions above, a recipient may use your version of this file under either the NPL or the [ ] License.\"", + "json": "npl-1.1.json", + "yaml": "npl-1.1.yml", + "html": "npl-1.1.html", + "license": "npl-1.1.LICENSE" + }, + { + "license_key": "npsl-exception-0.92", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-npsl-exception-0.92", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Nmap Public Source License Version 0.92\nFor more information on this license, see https://nmap.org/npsl/\n\n0. Preamble\n\nThe intent of this license is to establish freedom to share and change\nthe software regulated by this license under the open source model. It\nalso includes a Contributor Agreement and disclaims any warranty on\nCovered Software. Proprietary software companies wishing to use or\nincorporate Covered Software within their programs must contact\nLicensor to purchase a separate license. Open source developers who\nwish to incorporate parts of Covered Software into free software with\nconflicting licenses may write Licensor to request a waiver of terms.\n\nIf the Nmap Project (directly or through one of its commercial\nlicensing customers) has granted you additional rights to Nmap or Nmap\nOEM, those additional rights take precedence where they conflict with\nthe terms of this license agreement.\n\nThis License represents the complete agreement concerning subject\nmatter hereof. It contains the license terms themselves, but not the\nreasoning behind them or detailed explanations. For further\ninformation about this License, see https://nmap.org/npsl/ . That page\nmakes a good faith attempt to explain this License, but it does not\nand can not modify its governing terms in any way.\n\n1. Definitions\n\n* \"Contribution\" means any work of authorship, including the original\n version of the Work and any modifications or additions to that Work\n or Derivative Works thereof, that is intentionally submitted to\n Licensor by the copyright owner or by an individual or Legal Entity\n authorized to submit on behalf of the copyright owner. For the\n purposes of this definition, \"submitted\" means any form of\n electronic, verbal, or written communication sent to the Licensor or\n its representatives, including but not limited to communication on\n electronic mailing lists, source code control systems, web sites,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a\n Contribution.\"\n\n* \"Contributor\" means Licensor and any individual or Legal Entity on\n behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n* \"Covered Software\" means the work of authorship, whether in Source\n or Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n\n* \"Derivative Work\" or \"Collective Work\" means any work, whether in\n Source or Object form, that is based on (or derived from) the Work\n and for which the editorial revisions, annotations, elaborations, or\n other modifications represent, as a whole, an original work of\n authorship. It includes software as described in Section 3 of this\n License.\n\n* \"Executable\" means Covered Software in any form other than Source Code.\n\n* \"Externally Deploy\" means to Deploy the Covered Software in any way\n that may be accessed or used by anyone other than You, used to\n provide any services to anyone other than You, or used in any way to\n deliver any content to anyone other than You, whether the Covered\n Software is distributed to those parties, made available as an\n application intended for use over a computer network, or used to\n provide services or otherwise deliver content to anyone other than\n You.\n\n* \"GPL\" means the GNU General Public License Version 2, as published\n by the Free Software Foundation and provided in Exhibit A.\n\n* \"Legal Entity\" means the union of the acting entity and all other\n entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n* \"License\" means this document, including Exhibits.\n\n* \"Licensor\" means Insecure.Com LLC and its successors and assigns.\n\n* \"Main License Body\" means all of the terms of this document,\n excluding Exhibits.\n\n* \"You\" (or \"Your\") means an individual or Legal Entity exercising\n permissions granted by this License.\n\n2. General Terms\n\nCovered Software is licensed to you under the terms of the GPL\n(Exhibit A), with all the exceptions, clarifications, and additions\nnoted in this Main License Body. Where the terms in this Main License\nBody conflict in any way with the GPL, the Main License Body terms\nshall take precedence. These additional terms mean that You may not\ndistribute Covered Software or Derivative Works under plain GPL terms\nwithout special permission from Licensor.\n\nYou are not required to accept this License. However, nothing else\ngrants You permission to use, copy, modify or distribute the software\nor its derivative works. These actions are prohibited by law if You do\nnot accept this License. Therefore, by modifying, copying or\ndistributing the software (or any work based on the software), You\nindicate your acceptance of this License to do so, and all its terms\nand conditions. In addition, you agree to the terms of this License by\nclicking the Accept button or downloading the software.\n\n3. Derivative Works\n\nThis License (including the GPL portion) places important restrictions\non derived works. Licensor interprets that term quite broadly. To\navoid any misunderstandings, we consider software to constitute a\n\"derivative work\" of Covered Software for the purposes of this license\nif it does any of the following:\n\n* Integrates source code from Covered Software\n\n* Reads or includes Covered Software data files, such as nmap-os-db or\n nmap-service-probes.\n\n* Is designed specifically to execute Covered Software and parse the\n results (as opposed to typical shell or execution-menu apps, which\n will execute anything you tell them to).\n\n* Includes Covered Software in a proprietary executable installer. The\n installers produced by InstallShield are an example of\n this. Including Nmap with other software in compressed or archival\n form does not trigger this provision, provided appropriate open\n source decompression or de-archiving software is widely available\n for no charge. For the purposes of this license, an installer is\n considered to include Covered Software even if it actually retrieves\n a copy of Covered Software from another source during runtime (such\n as by downloading it from the Internet).\n\n* Links (statically or dynamically) to a library which does any of the\n above\n\n* Executes a helper program, module, or script to do any of the above.\n This list is not exclusive, but is meant to clarify Licensor's\n intentions with some common examples. Distribution of any works\n which meet these criteria must be under the terms of this license\n (including this Main License Body and GPL), with no additional\n conditions or restrictions. They must abide by all restrictions that\n the GPL places on derivative or collective works, including the\n requirements for distributing their source code and allowing\n royalty-free redistribution.\n\n4. Contributor Agreement (Grant of Copyright and Patent Licenses)\n\nEach Contributor hereby grants to Licensor a perpetual, worldwide,\nnon-exclusive, no-charge, royalty-free, irrevocable copyright license\nto reproduce, prepare Derivative Works of, publicly display, publicly\nperform, sublicense, and distribute the Contribution and such\nDerivative Works in Source or Object form.\n\nEach Contributor hereby grants to You and Licensor a perpetual,\nworldwide, non-exclusive, no-charge, royalty-free, irrevocable (except\nas stated in this section) patent license to make, have made, use,\noffer to sell, sell, import, and otherwise transfer the Work, where\nsuch license applies only to those patent claims licensable by such\nContributor that are necessarily infringed by their Contribution(s)\nalone or by combination of their Contribution(s) with the Work to\nwhich such Contribution(s) was submitted. If You institute patent\nlitigation against any entity (including a cross-claim or counterclaim\nin a lawsuit) alleging that the Work or a Contribution incorporated\nwithin the Work constitutes direct or contributory patent\ninfringement, then any patent licenses granted to You under this\nLicense for that Work shall terminate as of the date such litigation\nis filed.\n\nContributors may impose different terms on their Contributions by\nstating those terms in writing at the time the Contribution is\nmade. Contributors may withhold all authority from Licensor to\nincorporate submissions by conspicuously marking or otherwise\ndesignating them in writing as \"Not a Contribution\" at the time they\nmake the work available.\n\n5. Disclaimer of Warranty and Limitation of Liability\n\nUnless required by applicable law or agreed to in writing, Licensor\nprovides the Covered Software (and each Contributor provides its\nContributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS\nOF ANY KIND, either express or implied, including, without limitation,\nany warranties or conditions of TITLE, NON-INFRINGEMENT,\nMERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely\nresponsible for determining the appropriateness of using or\nredistributing the Covered Software and assume any risks associated\nwith Your exercise of permissions under this License.\n\nIn no event and under no legal theory, whether in tort (including\nnegligence), contract, or otherwise, unless required by applicable law\n(such as deliberate and grossly negligent acts) or agreed to in\nwriting, shall any Contributor be liable to You for damages, including\nany direct, indirect, special, incidental, or consequential damages of\nany character arising as a result of this License or out of the use or\ninability to use the Covered Software (including but not limited to\ndamages for loss of goodwill, work stoppage, computer failure or\nmalfunction, or any and all other commercial damages or losses), even\nif such Contributor has been advised of the possibility of such\ndamages.\n\n6. External Deployment\n\nIf You Externally Deploy Covered Software, such as hosting a website\ndesigned to execute Nmap scans for users, the system and its\ndocumentation must, if technically feasible, prominently display a\nnotice stating that the system uses the Nmap Security Scanner to\nperform its tasks. If technically feasible, the notice must contain a\nhyperlink to https://nmap.org/ or provide that URL in the text.\n\n7. Trademarks\n\nThis License does not grant permission to use the trade names,\ntrademarks, service marks, or product names of the Licensor, except as\nrequired for reasonable and customary use in describing the origin of\nthe Covered Software.\n\n8. Termination for Patent Action\n\nThis License shall terminate automatically and You may no longer\nexercise any of the rights granted to You by this License as of the\ndate You commence an action, including a cross-claim or counterclaim,\nagainst Licensor or any licensee alleging that the Covered Software\ninfringes a patent. This termination provision shall not apply for an\naction alleging patent infringement by combinations of the Covered\nSoftware with other software or hardware.\n\n9. Jurisdiction, Venue and Governing Law\n\nThis License is governed by the laws of the State of Washington and\nthe intellectual property laws of the United States of America,\nexcluding the jurisdiction's conflict-of-law provisions. Any\nlitigation or other dispute resolution between You and Licensor\nrelating to this License shall take place in the Northern District of\nCalifornia, and You and Licensor hereby consent to the personal\njurisdiction of, and venue in, the state and federal courts within\nthat District with respect to this License. The application of the\nUnited Nations Convention on Contracts for the International Sale of\nGoods is expressly excluded.\n\n10. Npcap and the Official Nmap Windows Builds\n\nThe official Windows Nmap builds includes the Npcap driver and library\n(https://npcap.org) for packet capture and transmission on\nWindows. That software is under its own separate license terms rather\nthan this license. Therefore anyone wishing to use or redistribute\nboth pieces of software must comply with both licenses. Since Npcap\ndoes not allow for redistribution without special permission, the\nofficial Nmap Windows builds which include Npcap may not be\nredistributed without special permission. Such permission can be\nrequested by email to sales@nmap.com.\n\n11. Permission to link with OpenSSL\n\nLicensor grants permission to link Covered Software with any version\nof the OpenSSL library from OpenSSL.Org, and distribute linked\ncombinations including the two (assuming such distribution is\notherwise allowed by this agreement). You must obey this License in\nall respects for all code used other than OpenSSL.\n\n12. Waiver; Construction\n\nFailure by Licensor or any Contributor to enforce any provision of\nthis License will not be deemed a waiver of future enforcement of that\nor any other provision. Any law or regulation which provides that the\nlanguage of a contract shall be construed against the drafter will not\napply to this License.\n\n13. Enforceability\n\nIf any provision of this License is invalid or unenforceable under\napplicable law, it shall not affect the validity or enforceability of\nthe remainder of the terms of this License, and without further action\nby the parties hereto, such provision shall be reformed to the minimum\nextent necessary to make such provision valid and enforceable.\n\nExhibit A. The GNU General Public License Version 2\nGNU GENERAL PUBLIC LICENSE\nVersion 2, June 1991\n\nCopyright (C) 1989, 1991 Free Software Foundation, Inc. \n51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\nEveryone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\nPreamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the\nrights. These restrictions translate to certain responsibilities for\nyou if you distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n0. This License applies to any program or other work which contains a\nnotice placed by the copyright holder saying it may be distributed\nunder the terms of this General Public License. The \"Program\", below,\nrefers to any such program or work, and a \"work based on the Program\"\nmeans either the Program or any derivative work under copyright law:\nthat is to say, a work containing the Program or a portion of it,\neither verbatim or with modifications and/or translated into another\nlanguage. (Hereinafter, translation is included without limitation in\nthe term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n1. You may copy and distribute verbatim copies of the Program's source\ncode as you receive it, in any medium, provided that you conspicuously\nand appropriately publish on each copy an appropriate copyright notice\nand disclaimer of warranty; keep intact all the notices that refer to\nthis License and to the absence of any warranty; and give any other\nrecipients of the Program a copy of this License along with the\nProgram.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n2. You may modify your copy or copies of the Program or any portion of\nit, thus forming a work based on the Program, and copy and distribute\nsuch modifications or work under the terms of Section 1 above,\nprovided that you also meet all of these conditions:\n\na) You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\nb) You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\nc) If the modified program normally reads commands interactively when\nrun, you must cause it, when started running for such interactive use\nin the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn 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.\n\n3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\na) Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\nb) Accompany it with a written offer, valid for at least three years,\nto give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\nc) Accompany it with the information you received as to the offer to\ndistribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n4. You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n5. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n6. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted\nherein. You are not responsible for enforcing compliance by third\nparties to this License.\n\n7. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Program at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n8. If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n9. The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n10. If you wish to incorporate parts of the Program into other free\nprograms whose distribution conditions are different, write to the\nauthor to ask for permission. For software which is copyrighted by the\nFree Software Foundation, write to the Free Software Foundation; we\nsometimes make exceptions for this. Our decision will be guided by the\ntwo goals of preserving the free status of all derivatives of our free\nsoftware and of promoting the sharing and reuse of software generally.\n\nNO WARRANTY\n\n11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE\nLAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS\nAND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF\nANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\nEND OF TERMS AND CONDITIONS\n\n[For brevity, we've cut out the GPL's final section on \"How to Apply\nTehse Terms to Your New Program\", but you can find that at\nhttps://www.gnu.org/licenses/gpl-2.0.html#SEC4 ]", + "json": "npsl-exception-0.92.json", + "yaml": "npsl-exception-0.92.yml", + "html": "npsl-exception-0.92.html", + "license": "npsl-exception-0.92.LICENSE" + }, + { + "license_key": "npsl-exception-0.93", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-npsl-exception-0.93", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Nmap Public Source License Version 0.93\nFor more information on this license, see https://nmap.org/npsl/\n\n0. Preamble\n\nThe intent of this license is to establish freedom to share and change\nthe software regulated by this license under the open source model. It\nalso includes a Contributor Agreement and disclaims any warranty on\nCovered Software. Companies wishing to use or incorporate Covered\nSoftware within their own products may find that our Nmap OEM product\n(https://nmap.org/oem/) better suits their needs. Open source\ndevelopers who wish to incorporate parts of Covered Software into free\nsoftware with conflicting licenses may write Licensor to request a\nwaiver of terms.\n\nIf the Nmap Project (directly or through one of its commercial\nlicensing customers) has granted you additional rights to Nmap or Nmap\nOEM, those additional rights take precedence where they conflict with\nthe terms of this license agreement.\n\nThis License represents the complete agreement concerning subject\nmatter hereof. It contains the license terms themselves, but not the\nreasoning behind them or detailed explanations. For further\ninformation about this License, see https://nmap.org/npsl/ . That page\nmakes a good faith attempt to explain this License, but it does not\nand can not modify its governing terms in any way.\n\n1. Definitions\n\n* \"Contribution\" means any work of authorship, including the original\n version of the Work and any modifications or additions to that Work\n or Derivative Works thereof, that is intentionally submitted to\n Licensor by the copyright owner or by an individual or Legal Entity\n authorized to submit on behalf of the copyright owner. For the\n purposes of this definition, \"submitted\" means any form of\n electronic, verbal, or written communication sent to the Licensor or\n its representatives, including but not limited to communication on\n electronic mailing lists, source code control systems, web sites,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a\n Contribution.\"\n\n* \"Contributor\" means Licensor and any individual or Legal Entity on\n behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n* \"Covered Software\" means the work of authorship, whether in Source\n or Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n\n* \"Derivative Work\" or \"Collective Work\" means any work, whether in\n Source or Object form, that is based on (or derived from) the Work\n and for which the editorial revisions, annotations, elaborations, or\n other modifications represent, as a whole, an original work of\n authorship. It includes software as described in Section 3 of this\n License.\n\n* \"Executable\" means Covered Software in any form other than Source Code.\n\n* \"Externally Deploy\" means to Deploy the Covered Software in any way\n that may be accessed or used by anyone other than You, used to\n provide any services to anyone other than You, or used in any way to\n deliver any content to anyone other than You, whether the Covered\n Software is distributed to those parties, made available as an\n application intended for use over a computer network, or used to\n provide services or otherwise deliver content to anyone other than\n You.\n\n* \"GPL\" means the GNU General Public License Version 2, as published\n by the Free Software Foundation and provided in Exhibit A.\n\n* \"Legal Entity\" means the union of the acting entity and all other\n entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n* \"License\" means this document, including Exhibits.\n\n* \"Licensor\" means Insecure.Com LLC and its successors and assigns.\n\n* \"Main License Body\" means all of the terms of this document,\n excluding Exhibits.\n\n* \"You\" (or \"Your\") means an individual or Legal Entity exercising\n permissions granted by this License.\n\n2. General Terms\n\nCovered Software is licensed to you under the terms of the GPL\n(Exhibit A), with all the exceptions, clarifications, and additions\nnoted in this Main License Body. Where the terms in this Main License\nBody conflict in any way with the GPL, the Main License Body terms\nshall take precedence. These additional terms mean that You may not\ndistribute Covered Software or Derivative Works under plain GPL terms\nwithout special permission from Licensor.\n\nYou are not required to accept this License. However, nothing else\ngrants You permission to use, copy, modify or distribute the software\nor its derivative works. These actions are prohibited by law if You do\nnot accept this License. Therefore, by modifying, copying or\ndistributing the software (or any work based on the software), You\nindicate your acceptance of this License to do so, and all its terms\nand conditions. In addition, you agree to the terms of this License by\nclicking the Accept button or downloading the software.\n\n3. Derivative Works\n\nThis License (including the GPL portion) places important restrictions\non derived works. Licensor interprets that term quite broadly. To\navoid any misunderstandings, we consider software to constitute a\n\"derivative work\" of Covered Software for the purposes of this license\nif it does any of the following:\n\n* Integrates source code from Covered Software\n\n* Reads or includes Covered Software data files, such as nmap-os-db or\n nmap-service-probes.\n\n* Is designed specifically to execute Covered Software and parse the\n results (as opposed to typical shell or execution-menu apps, which\n will execute anything you tell them to).\n\n* Includes Covered Software in a proprietary executable installer. The\n installers produced by InstallShield are an example of\n this. Including Nmap with other software in compressed or archival\n form does not trigger this provision, provided appropriate open\n source decompression or de-archiving software is widely available\n for no charge. For the purposes of this license, an installer is\n considered to include Covered Software even if it actually retrieves\n a copy of Covered Software from another source during runtime (such\n as by downloading it from the Internet).\n\n* Links (statically or dynamically) to a library which does any of the\n above\n\n* Executes a helper program, module, or script to do any of the above.\n This list is not exclusive, but is meant to clarify Licensor's\n intentions with some common examples. Distribution of any works\n which meet these criteria must be under the terms of this license\n (including this Main License Body and GPL), with no additional\n conditions or restrictions. They must abide by all restrictions that\n the GPL places on derivative or collective works, including the\n requirements for distributing their source code and allowing\n royalty-free redistribution.\n\n4. Contributor Agreement (Grant of Copyright and Patent Licenses)\n\nEach Contributor hereby grants to Licensor a perpetual, worldwide,\nnon-exclusive, no-charge, royalty-free, irrevocable copyright license\nto reproduce, prepare Derivative Works of, publicly display, publicly\nperform, sublicense, and distribute the Contribution and such\nDerivative Works in Source or Object form.\n\nEach Contributor hereby grants to You and Licensor a perpetual,\nworldwide, non-exclusive, no-charge, royalty-free, irrevocable (except\nas stated in this section) patent license to make, have made, use,\noffer to sell, sell, import, and otherwise transfer the Work, where\nsuch license applies only to those patent claims licensable by such\nContributor that are necessarily infringed by their Contribution(s)\nalone or by combination of their Contribution(s) with the Work to\nwhich such Contribution(s) was submitted. If You institute patent\nlitigation against any entity (including a cross-claim or counterclaim\nin a lawsuit) alleging that the Work or a Contribution incorporated\nwithin the Work constitutes direct or contributory patent\ninfringement, then any patent licenses granted to You under this\nLicense for that Work shall terminate as of the date such litigation\nis filed.\n\nContributors may impose different terms on their Contributions by\nstating those terms in writing at the time the Contribution is\nmade. Contributors may withhold all authority from Licensor to\nincorporate submissions by conspicuously marking or otherwise\ndesignating them in writing as \"Not a Contribution\" at the time they\nmake the work available.\n\n5. Disclaimer of Warranty and Limitation of Liability\n\nUnless required by applicable law or agreed to in writing, Licensor\nprovides the Covered Software (and each Contributor provides its\nContributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS\nOF ANY KIND, either express or implied, including, without limitation,\nany warranties or conditions of TITLE, NON-INFRINGEMENT,\nMERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely\nresponsible for determining the appropriateness of using or\nredistributing the Covered Software and assume any risks associated\nwith Your exercise of permissions under this License.\n\nIn no event and under no legal theory, whether in tort (including\nnegligence), contract, or otherwise, unless required by applicable law\n(such as deliberate and grossly negligent acts) or agreed to in\nwriting, shall any Contributor be liable to You for damages, including\nany direct, indirect, special, incidental, or consequential damages of\nany character arising as a result of this License or out of the use or\ninability to use the Covered Software (including but not limited to\ndamages for loss of goodwill, work stoppage, computer failure or\nmalfunction, or any and all other commercial damages or losses), even\nif such Contributor has been advised of the possibility of such\ndamages.\n\n6. External Deployment\n\nIf You Externally Deploy Covered Software, such as hosting a website\ndesigned to execute Nmap scans for users, the system and its\ndocumentation must, if technically feasible, prominently display a\nnotice stating that the system uses the Nmap Security Scanner to\nperform its tasks. If technically feasible, the notice must contain a\nhyperlink to https://nmap.org/ or provide that URL in the text.\n\n7. Trademarks\n\nThis License does not grant permission to use the trade names,\ntrademarks, service marks, or product names of the Licensor, except as\nrequired for reasonable and customary use in describing the origin of\nthe Covered Software.\n\n8. Termination for Patent Action\n\nThis License shall terminate automatically and You may no longer\nexercise any of the rights granted to You by this License as of the\ndate You commence an action, including a cross-claim or counterclaim,\nagainst Licensor or any licensee alleging that the Covered Software\ninfringes a patent. This termination provision shall not apply for an\naction alleging patent infringement by combinations of the Covered\nSoftware with other software or hardware.\n\n9. Jurisdiction, Venue and Governing Law\n\nThis License is governed by the laws of the State of Washington and\nthe intellectual property laws of the United States of America,\nexcluding the jurisdiction's conflict-of-law provisions. Any\nlitigation or other dispute resolution between You and Licensor\nrelating to this License shall take place in the Northern District of\nCalifornia, and You and Licensor hereby consent to the personal\njurisdiction of, and venue in, the state and federal courts within\nthat District with respect to this License. The application of the\nUnited Nations Convention on Contracts for the International Sale of\nGoods is expressly excluded.\n\n10. Npcap and the Official Nmap Windows Builds\n\nThe official Windows Nmap builds includes the Npcap driver and library\n(https://npcap.org) for packet capture and transmission on\nWindows. That software is under its own separate license terms rather\nthan this license. Therefore anyone wishing to use or redistribute\nboth pieces of software must comply with both licenses. Since Npcap\ndoes not allow for redistribution without special permission, the\nofficial Nmap Windows builds which include Npcap may not be\nredistributed without special permission. Such permission can be\nrequested by email to sales@nmap.com.\n\n11. Permission to link with OpenSSL\n\nLicensor grants permission to link Covered Software with any version\nof the OpenSSL library from OpenSSL.Org, and distribute linked\ncombinations including the two (assuming such distribution is\notherwise allowed by this agreement). You must obey this License in\nall respects for all code used other than OpenSSL.\n\n12. Waiver; Construction\n\nFailure by Licensor or any Contributor to enforce any provision of\nthis License will not be deemed a waiver of future enforcement of that\nor any other provision. Any law or regulation which provides that the\nlanguage of a contract shall be construed against the drafter will not\napply to this License.\n\n13. Enforceability\n\nIf any provision of this License is invalid or unenforceable under\napplicable law, it shall not affect the validity or enforceability of\nthe remainder of the terms of this License, and without further action\nby the parties hereto, such provision shall be reformed to the minimum\nextent necessary to make such provision valid and enforceable.\n\nExhibit A. The GNU General Public License Version 2\nGNU GENERAL PUBLIC LICENSE\nVersion 2, June 1991\n\nCopyright (C) 1989, 1991 Free Software Foundation, Inc. \n51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\nEveryone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\nPreamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the\nrights. These restrictions translate to certain responsibilities for\nyou if you distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n0. This License applies to any program or other work which contains a\nnotice placed by the copyright holder saying it may be distributed\nunder the terms of this General Public License. The \"Program\", below,\nrefers to any such program or work, and a \"work based on the Program\"\nmeans either the Program or any derivative work under copyright law:\nthat is to say, a work containing the Program or a portion of it,\neither verbatim or with modifications and/or translated into another\nlanguage. (Hereinafter, translation is included without limitation in\nthe term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n1. You may copy and distribute verbatim copies of the Program's source\ncode as you receive it, in any medium, provided that you conspicuously\nand appropriately publish on each copy an appropriate copyright notice\nand disclaimer of warranty; keep intact all the notices that refer to\nthis License and to the absence of any warranty; and give any other\nrecipients of the Program a copy of this License along with the\nProgram.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n2. You may modify your copy or copies of the Program or any portion of\nit, thus forming a work based on the Program, and copy and distribute\nsuch modifications or work under the terms of Section 1 above,\nprovided that you also meet all of these conditions:\n\na) You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\nb) You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\nc) If the modified program normally reads commands interactively when\nrun, you must cause it, when started running for such interactive use\nin the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn 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.\n\n3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\na) Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\nb) Accompany it with a written offer, valid for at least three years,\nto give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\nc) Accompany it with the information you received as to the offer to\ndistribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n4. You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n5. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n6. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted\nherein. You are not responsible for enforcing compliance by third\nparties to this License.\n\n7. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Program at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n8. If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n9. The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n10. If you wish to incorporate parts of the Program into other free\nprograms whose distribution conditions are different, write to the\nauthor to ask for permission. For software which is copyrighted by the\nFree Software Foundation, write to the Free Software Foundation; we\nsometimes make exceptions for this. Our decision will be guided by the\ntwo goals of preserving the free status of all derivatives of our free\nsoftware and of promoting the sharing and reuse of software generally.\n\nNO WARRANTY\n\n11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE\nLAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS\nAND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF\nANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\nEND OF TERMS AND CONDITIONS\n\n[For brevity, we've cut out the GPL's final section on \"How to Apply\nTehse Terms to Your New Program\", but you can find that at\nhttps://www.gnu.org/licenses/gpl-2.0.html#SEC4 ]", + "json": "npsl-exception-0.93.json", + "yaml": "npsl-exception-0.93.yml", + "html": "npsl-exception-0.93.html", + "license": "npsl-exception-0.93.LICENSE" + }, + { + "license_key": "npsl-exception-0.94", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-npsl-exception-0.94", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Nmap Public Source License Version 0.94\nFor more information on this license, see https://nmap.org/npsl/\n\n0. Preamble\n\nThe intent of this license is to establish freedom to share and change\nthe software regulated by this license under the open source model. It\nalso includes a Contributor Agreement and disclaims any warranty on\nCovered Software. Companies wishing to use or incorporate Covered\nSoftware within their own products may find that our Nmap OEM product\n(https://nmap.org/oem/) better suits their needs. Open source\ndevelopers who wish to incorporate parts of Covered Software into free\nsoftware with conflicting licenses may write Licensor to request a\nwaiver of terms.\n\nIf the Nmap Project (directly or through one of its commercial\nlicensing customers) has granted you additional rights to Nmap or Nmap\nOEM, those additional rights take precedence where they conflict with\nthe terms of this license agreement.\n\nThis License represents the complete agreement concerning subject\nmatter hereof. It contains the license terms themselves, but not the\nreasoning behind them or detailed explanations. For further\ninformation about this License, see https://nmap.org/npsl/ . That page\nmakes a good faith attempt to explain this License, but it does not\nand can not modify its governing terms in any way.\n\n1. Definitions\n\n* \"Contribution\" means any work of authorship, including the original\n version of the Work and any modifications or additions to that Work\n or Derivative Works thereof, that is intentionally submitted to\n Licensor by the copyright owner or by an individual or Legal Entity\n authorized to submit on behalf of the copyright owner. For the\n purposes of this definition, \"submitted\" means any form of\n electronic, verbal, or written communication sent to the Licensor or\n its representatives, including but not limited to communication on\n electronic mailing lists, source code control systems, web sites,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a\n Contribution.\"\n\n* \"Contributor\" means Licensor and any individual or Legal Entity on\n behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n* \"Covered Software\" means the work of authorship, whether in Source\n or Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n\n* \"Derivative Work\" or \"Collective Work\" means any work, whether in\n Source or Object form, that is based on (or derived from) the Work\n and for which the editorial revisions, annotations, elaborations, or\n other modifications represent, as a whole, an original work of\n authorship. It includes software as described in Section 3 of this\n License.\n\n* \"Executable\" means Covered Software in any form other than Source Code.\n\n* \"Externally Deploy\" means to Deploy the Covered Software in any way\n that may be accessed or used by anyone other than You, used to\n provide any services to anyone other than You, or used in any way to\n deliver any content to anyone other than You, whether the Covered\n Software is distributed to those parties, made available as an\n application intended for use over a computer network, or used to\n provide services or otherwise deliver content to anyone other than\n You.\n\n* \"GPL\" means the GNU General Public License Version 2, as published\n by the Free Software Foundation and provided in Exhibit A.\n\n* \"Legal Entity\" means the union of the acting entity and all other\n entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n* \"License\" means this document, including Exhibits.\n\n* \"Licensor\" means Nmap Software LLC and its successors and assigns.\n\n* \"Main License Body\" means all of the terms of this document,\n excluding Exhibits.\n\n* \"You\" (or \"Your\") means an individual or Legal Entity exercising\n permissions granted by this License.\n\n2. General Terms\n\nCovered Software is licensed to you under the terms of the GPL\n(Exhibit A), with all the exceptions, clarifications, and additions\nnoted in this Main License Body. Where the terms in this Main License\nBody conflict in any way with the GPL, the Main License Body terms\nshall take precedence. These additional terms mean that You may not\ndistribute Covered Software or Derivative Works under plain GPL terms\nwithout special permission from Licensor.\n\nYou are not required to accept this License. However, nothing else\ngrants You permission to use, copy, modify or distribute the software\nor its derivative works. These actions are prohibited by law if You do\nnot accept this License. Therefore, by modifying, copying or\ndistributing the software (or any work based on the software), You\nindicate your acceptance of this License to do so, and all its terms\nand conditions. In addition, you agree to the terms of this License by\nclicking the Accept button or downloading the software.\n\n3. Derivative Works\n\nThis License (including the GPL portion) places important restrictions\non derived works. Licensor interprets that term quite broadly. To\navoid any misunderstandings, we consider software to constitute a\n\"derivative work\" of Covered Software for the purposes of this license\nif it does any of the following:\n\n* Integrates source code from Covered Software\n\n* Reads or includes Covered Software data files, such as nmap-os-db or\n nmap-service-probes.\n\n* Is designed specifically to execute Covered Software and parse the\n results (as opposed to typical shell or execution-menu apps, which\n will execute anything you tell them to).\n\n* Includes Covered Software in a proprietary executable installer. The\n installers produced by InstallShield are an example of\n this. Including Nmap with other software in compressed or archival\n form does not trigger this provision, provided appropriate open\n source decompression or de-archiving software is widely available\n for no charge. For the purposes of this license, an installer is\n considered to include Covered Software even if it actually retrieves\n a copy of Covered Software from another source during runtime (such\n as by downloading it from the Internet).\n\n* Links (statically or dynamically) to a library which does any of the\n above\n\n* Executes a helper program, module, or script to do any of the above.\n This list is not exclusive, but is meant to clarify Licensor's\n intentions with some common examples. Distribution of any works\n which meet these criteria must be under the terms of this license\n (including this Main License Body and GPL), with no additional\n conditions or restrictions. They must abide by all restrictions that\n the GPL places on derivative or collective works, including the\n requirements for distributing their source code and allowing\n royalty-free redistribution.\n\n4. Contributor Agreement (Grant of Copyright and Patent Licenses)\n\nEach Contributor hereby grants to Licensor a perpetual, worldwide,\nnon-exclusive, no-charge, royalty-free, irrevocable copyright license\nto reproduce, prepare Derivative Works of, publicly display, publicly\nperform, sublicense, and distribute the Contribution and such\nDerivative Works in Source or Object form.\n\nEach Contributor hereby grants to You and Licensor a perpetual,\nworldwide, non-exclusive, no-charge, royalty-free, irrevocable (except\nas stated in this section) patent license to make, have made, use,\noffer to sell, sell, import, and otherwise transfer the Work, where\nsuch license applies only to those patent claims licensable by such\nContributor that are necessarily infringed by their Contribution(s)\nalone or by combination of their Contribution(s) with the Work to\nwhich such Contribution(s) was submitted. If You institute patent\nlitigation against any entity (including a cross-claim or counterclaim\nin a lawsuit) alleging that the Work or a Contribution incorporated\nwithin the Work constitutes direct or contributory patent\ninfringement, then any patent licenses granted to You under this\nLicense for that Work shall terminate as of the date such litigation\nis filed.\n\nContributors may impose different terms on their Contributions by\nstating those terms in writing at the time the Contribution is\nmade. Contributors may withhold all authority from Licensor to\nincorporate submissions by conspicuously marking or otherwise\ndesignating them in writing as \"Not a Contribution\" at the time they\nmake the work available.\n\n5. Disclaimer of Warranty and Limitation of Liability\n\nUnless required by applicable law or agreed to in writing, Licensor\nprovides the Covered Software (and each Contributor provides its\nContributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS\nOF ANY KIND, either express or implied, including, without limitation,\nany warranties or conditions of TITLE, NON-INFRINGEMENT,\nMERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely\nresponsible for determining the appropriateness of using or\nredistributing the Covered Software and assume any risks associated\nwith Your exercise of permissions under this License.\n\nIn no event and under no legal theory, whether in tort (including\nnegligence), contract, or otherwise, unless required by applicable law\n(such as deliberate and grossly negligent acts) or agreed to in\nwriting, shall any Contributor be liable to You for damages, including\nany direct, indirect, special, incidental, or consequential damages of\nany character arising as a result of this License or out of the use or\ninability to use the Covered Software (including but not limited to\ndamages for loss of goodwill, work stoppage, computer failure or\nmalfunction, or any and all other commercial damages or losses), even\nif such Contributor has been advised of the possibility of such\ndamages.\n\n6. External Deployment\n\nIf You Externally Deploy Covered Software, such as hosting a website\ndesigned to execute Nmap scans for users, the system and its\ndocumentation must, if technically feasible, prominently display a\nnotice stating that the system uses the Nmap Security Scanner to\nperform its tasks. If technically feasible, the notice must contain a\nhyperlink to https://nmap.org/ or provide that URL in the text.\n\n7. Trademarks\n\nThis License does not grant permission to use the trade names,\ntrademarks, service marks, or product names of the Licensor, except as\nrequired for reasonable and customary use in describing the origin of\nthe Covered Software.\n\n8. Termination for Patent Action\n\nThis License shall terminate automatically and You may no longer\nexercise any of the rights granted to You by this License as of the\ndate You commence an action, including a cross-claim or counterclaim,\nagainst Licensor or any licensee alleging that the Covered Software\ninfringes a patent. This termination provision shall not apply for an\naction alleging patent infringement by combinations of the Covered\nSoftware with other software or hardware.\n\n9. Jurisdiction, Venue and Governing Law\n\nThis License is governed by the laws of the State of Washington and\nthe intellectual property laws of the United States of America,\nexcluding the jurisdiction's conflict-of-law provisions. Any\nlitigation or other dispute resolution between You and Licensor\nrelating to this License shall take place in the Northern District of\nCalifornia, and You and Licensor hereby consent to the personal\njurisdiction of, and venue in, the state and federal courts within\nthat District with respect to this License. The application of the\nUnited Nations Convention on Contracts for the International Sale of\nGoods is expressly excluded.\n\n10. Npcap and the Official Nmap Windows Builds\n\nThe official Windows Nmap builds includes the Npcap driver and library\n(https://npcap.org) for packet capture and transmission on\nWindows. That software is under its own separate license terms rather\nthan this license. Therefore anyone wishing to use or redistribute\nboth pieces of software must comply with both licenses. Since Npcap\ndoes not allow for redistribution without special permission, the\nofficial Nmap Windows builds which include Npcap may not be\nredistributed without special permission. Such permission can be\nrequested by email to sales@nmap.com.\n\n11. Permission to link with OpenSSL\n\nLicensor grants permission to link Covered Software with any version\nof the OpenSSL library from OpenSSL.Org, and distribute linked\ncombinations including the two (assuming such distribution is\notherwise allowed by this agreement). You must obey this License in\nall respects for all code used other than OpenSSL.\n\n12. Waiver; Construction\n\nFailure by Licensor or any Contributor to enforce any provision of\nthis License will not be deemed a waiver of future enforcement of that\nor any other provision. Any law or regulation which provides that the\nlanguage of a contract shall be construed against the drafter will not\napply to this License.\n\n13. Enforceability\n\nIf any provision of this License is invalid or unenforceable under\napplicable law, it shall not affect the validity or enforceability of\nthe remainder of the terms of this License, and without further action\nby the parties hereto, such provision shall be reformed to the minimum\nextent necessary to make such provision valid and enforceable.\n\nExhibit A. The GNU General Public License Version 2\nGNU GENERAL PUBLIC LICENSE\nVersion 2, June 1991\n\nCopyright (C) 1989, 1991 Free Software Foundation, Inc. \n51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\nEveryone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\nPreamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the\nrights. These restrictions translate to certain responsibilities for\nyou if you distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n0. This License applies to any program or other work which contains a\nnotice placed by the copyright holder saying it may be distributed\nunder the terms of this General Public License. The \"Program\", below,\nrefers to any such program or work, and a \"work based on the Program\"\nmeans either the Program or any derivative work under copyright law:\nthat is to say, a work containing the Program or a portion of it,\neither verbatim or with modifications and/or translated into another\nlanguage. (Hereinafter, translation is included without limitation in\nthe term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n1. You may copy and distribute verbatim copies of the Program's source\ncode as you receive it, in any medium, provided that you conspicuously\nand appropriately publish on each copy an appropriate copyright notice\nand disclaimer of warranty; keep intact all the notices that refer to\nthis License and to the absence of any warranty; and give any other\nrecipients of the Program a copy of this License along with the\nProgram.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n2. You may modify your copy or copies of the Program or any portion of\nit, thus forming a work based on the Program, and copy and distribute\nsuch modifications or work under the terms of Section 1 above,\nprovided that you also meet all of these conditions:\n\na) You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\nb) You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\nc) If the modified program normally reads commands interactively when\nrun, you must cause it, when started running for such interactive use\nin the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\na) Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\nb) Accompany it with a written offer, valid for at least three years,\nto give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\nc) Accompany it with the information you received as to the offer to\ndistribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n4. You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n5. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n6. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted\nherein. You are not responsible for enforcing compliance by third\nparties to this License.\n\n7. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Program at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n8. If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n9. The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n10. If you wish to incorporate parts of the Program into other free\nprograms whose distribution conditions are different, write to the\nauthor to ask for permission. For software which is copyrighted by the\nFree Software Foundation, write to the Free Software Foundation; we\nsometimes make exceptions for this. Our decision will be guided by the\ntwo goals of preserving the free status of all derivatives of our free\nsoftware and of promoting the sharing and reuse of software generally.\n\nNO WARRANTY\n\n11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE\nLAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS\nAND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF\nANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\nEND OF TERMS AND CONDITIONS\n\n[For brevity, we've cut out the GPL's final section on \"How to Apply\nThese Terms to Your New Program\", but you can find that at\nhttps://www.gnu.org/licenses/gpl-2.0.html#SEC4 ]", + "json": "npsl-exception-0.94.json", + "yaml": "npsl-exception-0.94.yml", + "html": "npsl-exception-0.94.html", + "license": "npsl-exception-0.94.LICENSE" + }, + { + "license_key": "nrl", + "category": "Permissive", + "spdx_license_key": "NRL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "NRL License\nCOPYRIGHT NOTICE\n\nAll of the documentation and software included in this software distribution from the US Naval Research Laboratory (NRL) are copyrighted by their respective developers.\n\nPortions of the software are derived from the Net/2 and 4.4-Lite Berkeley Software Distributions (BSD) of the University of California at Berkeley and those portions are copyright by The Regents of the University of California. All Rights Reserved. The UC Berkeley Copyright and License agreement is binding on those portions of the software. In all cases, the NRL developers have retained the original UC Berkeley copyright and license notices in the respective files in accordance with the UC Berkeley copyrights and license.\n\nPortions of this software and documentation were developed at NRL by various people. Those developers have each copyrighted the portions that they developed at NRL and have assigned All Rights for those portions to NRL. Outside the USA, NRL has copyright on some of the software developed at NRL. The affected files all contain specific copyright notices and those notices must be retained in any derived work.\n\nNRL LICENSE\n\nNRL grants permission for redistribution and use in source and binary forms, with or without modification, of the software and documentation created at NRL provided that the following conditions are met:\n\n1. All terms of the UC Berkeley copyright and license must be followed. \n2. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. \n3. 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. \n4. All advertising materials mentioning features or use of this software must display the following acknowledgements:\n\nThis product includes software developed by the University of California, Berkeley and its contributors.\n\nThis product includes software developed at the Information Technology Division, US Naval Research Laboratory.\n\n5. Neither the name of the NRL nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHE SOFTWARE PROVIDED BY NRL IS PROVIDED BY NRL 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 NRL 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.\n\nThe 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 the US Naval Research Laboratory (NRL).", + "json": "nrl.json", + "yaml": "nrl.yml", + "html": "nrl.html", + "license": "nrl.LICENSE" + }, + { + "license_key": "nrl-permission", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nrl-permission", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify and distribute this software and its\ndocumentation is hereby granted, provided that both the copyright\nnotice and this permission notice appear in all copies of the software,\nderivative works or modified versions, and any portions thereof, and\nthat both notices appear in supporting documentation.\n\nNRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS \"AS IS\" CONDITION AND\nDISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER\nRESULTING FROM THE USE OF THIS SOFTWARE.", + "json": "nrl-permission.json", + "yaml": "nrl-permission.yml", + "html": "nrl-permission.html", + "license": "nrl-permission.LICENSE" + }, + { + "license_key": "ntlm", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ntlm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "COPYRIGHT AND LICENCE\n\nThis application is free software. This code 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. You may freely use, copy and distribute this software as long as all copyright notices, including this notice, remain intact and that you do not try to claim it as your own or try to sell it. You may alter the code as long as you send me any diffs (this will ensure that you have an easier time of it when you upgrade ;).\n\nParts of this code Copyright (C) 2007 David (Buzz) Bussenschutt. \n\nPerl port of this code is Copyright (C) 2001 Mark Bush. \n\nThe code is originally based on fetchmail code which is Copyright (C) 1997 Eric S. Raymond.\n\nFetchmail uses SMB/Netbios code from samba which is Copyright (C) Andrew Tridgell 1992-1998 with modifications from Jeremy Allison.", + "json": "ntlm.json", + "yaml": "ntlm.yml", + "html": "ntlm.html", + "license": "ntlm.LICENSE" + }, + { + "license_key": "ntp-0", + "category": "Permissive", + "spdx_license_key": "NTP-0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software and\nits documentation for any purpose is hereby granted, provided that\nthe names of M.I.T. and the M.I.T. S.I.P.B. not be used in\nadvertising or publicity pertaining to distribution of the software\nwithout specific, written prior permission. M.I.T. and the\nM.I.T. S.I.P.B. make no representations about the suitability of\nthis software for any purpose. It is provided \"as is\" without\nexpress or implied warranty.", + "json": "ntp-0.json", + "yaml": "ntp-0.yml", + "html": "ntp-0.html", + "license": "ntp-0.LICENSE" + }, + { + "license_key": "ntpl", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Permission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose with or without fee is hereby granted,\nprovided that the above copyright notice appears in all copies and\nthat both the copyright notice and this permission notice appear in\nsupporting documentation, and that the name of the authors not be\nused in advertising or publicity pertaining to distribution of the\nsoftware without specific, written prior permission. The authors\nmakes no representations about the suitability this software for any\npurpose. It is provided \"as is\" without express or implied warranty.", + "json": "ntpl.json", + "yaml": "ntpl.yml", + "html": "ntpl.html", + "license": "ntpl.LICENSE" + }, + { + "license_key": "ntpl-origin", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ntpl-origin", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify and distribute this software and its\ndocumentation for any purpose and without fee is hereby granted,\nprovided that the above copyright notice appears in all copies and\nthat both the copyright notice and this permission notice appear in\nsupporting documentation. This software is supported as is and without\nany express or implied warranties, including, without limitation, the\nimplied warranties of merchantability and fitness for a particular\npurpose. The name Origin B.V. must not be used to endorse or promote\nproducts derived from this software without prior written permission.", + "json": "ntpl-origin.json", + "yaml": "ntpl-origin.yml", + "html": "ntpl-origin.html", + "license": "ntpl-origin.LICENSE" + }, + { + "license_key": "numerical-recipes-notice", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-numerical-recipes-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Types of License Offered\n\nHere are the types of licenses that we offer. Note that some types are\nautomatically acquired with the purchase of media from Cambridge University\nPress, or of an unlocking password from the Numerical Recipes On-Line Software\nStore, while other types of licenses require that you communicate specifically with\nNumerical Recipes Software (email: orders@nr.com or fax: 781 863-1739). Our\nWeb site http://www.nr.com has additional information.\n\n- \"Immediate License\" If you are the individual owner of a copy of this book and\nyou type one or more of its routines into your computer, we authorize you to use\nthem on that computer for your own personal and noncommercial purposes. You\nare not authorized to transfer or distribute machine-readable copies to any other\nperson, or to use the routines on more than one machine, or to distribute executable\nprograms containing our routines. This is the only free license.\n\n- \"Single-Screen License\" This is the most common type of low-cost license, with\nterms governed by our Single Screen (Shrinkwrap) License document (complete\nterms available through ourWeb site). Basically, this license lets you use Numerical\nRecipes routines on any one screen (PC, workstation, X-terminal, etc.). You may\nalso, under this license, transfer pre-compiled, executable programs incorporating\nour routines to other, unlicensed, screens or computers, providing that (i) your\napplication is noncommercial (i.e., does not involve the selling of your program\nfor a fee), (ii) the programs were first developed, compiled, and successfully run\non a licensed screen, and (iii) our routines are bound into the programs in such a\nmanner that they cannot be accessed as individual routines and cannot practicably\nbe unbound and used in other programs. That is, under this license, your program\nuser must not be able to use our programs as part of a program library or \"mix-andmatch\"\nworkbench. Conditions for other types of commercial or noncommercial\ndistribution may be found on our Web site (http://www.nr.com).\n\n- \"Multi-Screen, Server, Site, and Corporate Licenses\" The terms of the Single\nScreen License can be extended to designated groups of machines, defined by\nnumber of screens, number of machines, locations, or ownership. Significant\ndiscounts from the corresponding single-screen prices are available when the\nestimated number of screens exceeds 40. Contact Numerical Recipes Software\n(email: orders@nr.com or fax: 781 863-1739) for details.\n\n- \"Course Right-to-Copy License\" Instructors at accredited educational institutions\nwho have adopted this book for a course, and who have already purchased a Single\nScreen License (either acquired with the purchase of media, or from the Numerical\nRecipes On-Line Software Store), may license the programs for use in that course\nas follows: Mail your name, title, and address; the course name, number, dates,\nand estimated enrollment; and advance payment of $5 per (estimated) student'\nto Numerical Recipes Software, at this address: P.O. Box 243, Cambridge, MA\n02238 (USA). You will receive by return mail a license authorizing you to make\ncopies of the programs for use by your students, and/or to transfer the programs to\na machine accessible to your students (but only for the duration of the course).\n\nAbout Copyrights on Computer Programs\nLike artistic or literary compositions, computer programs are protected by\ncopyright. Generally it is an infringement for you to copy into your computer a\nprogram from a copyrighted source. (It is also not a friendly thing to do, since it\ndeprives the program's author of compensation for his or her creative effort.) Under\ncopyright law, all \"derivative works\" (modified versions, or translations into another\ncomputer language) also come under the same copyright as the original work.\nCopyright does not protect ideas, but only the expression of those ideas in\na particular form. In the case of a computer program, the ideas consist of the\nprogram's methodology and algorithm, including the necessary sequence of steps\nadopted by the programmer. The expression of those ideas is the program source\ncode (particularly any arbitrary or stylistic choices embodied in it), its derived object\ncode, and any other derivative works.\n\nIf you analyze the ideas contained in a program, and then express those\nideas in your own completely different implementation, then that new program\nimplementation belongs to you. That is what we have done for those programs in\nthis book that are not entirely of our own devising. When programs in this book are\nsaid to be \"based\" on programs published in copyright sources, we mean that the\nideas are the same. The expression of these ideas as source code is our own. We\nbelieve that no material in this book infringes on an existing copyright.\n\nTrademarks\nSeveral registered trademarks appear within the text of this book: Sun is a\ntrademark of Sun Microsystems, Inc. SPARC and SPARCstation are trademarks\nof SPARC International, Inc. Microsoft, Windows 95, Windows NT, PowerStation,\nand MS are trademarks of Microsoft Corporation. DEC, VMS, Alpha AXP, and\nULTRIX are trademarks of Digital Equipment Corporation. IBM is a trademark of\nInternational Business Machines Corporation. Apple and Macintosh are trademarks\nof Apple Computer, Inc. UNIX is a trademark licensed exclusively through X/Open\nCo. Ltd. IMSL is a trademark of Visual Numerics, Inc. NAG refers to proprietary\ncomputer software of Numerical Algorithms Group (USA) Inc. PostScript and\nAdobe Illustrator are trademarks of Adobe Systems Incorporated. Last, and no doubt\nleast, Numerical Recipes (when identifying products) is a trademark of Numerical\nRecipes Software.\n\nAttributions\nThe fact that ideas are legally \"free as air\" in no way supersedes the ethical\nrequirement that ideas be credited to their known originators. When programs in\nthis book are based on known sources, whether copyrighted or in the public domain,\npublished or \"handed-down,\" we have attempted to give proper attribution. Unfortunately,\nthe lineage of many programs in common circulation is often unclear. We\nwould be grateful to readers for new or corrected information regarding attributions,\nwhich we will attempt to incorporate in subsequent printings.", + "json": "numerical-recipes-notice.json", + "yaml": "numerical-recipes-notice.yml", + "html": "numerical-recipes-notice.html", + "license": "numerical-recipes-notice.LICENSE" + }, + { + "license_key": "nunit-v2", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "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.\n\nPermission 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:\n\n1. 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 (see the following) in the product documentation is required.\n\nPortions Copyright \u00a9 2002-2012 Charlie Poole \nor Copyright \u00a9 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov \nor Copyright \u00a9 2000-2002 Philip A. Craig\n\n2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.\n\n3. This notice may not be removed or altered from any source distribution.", + "json": "nunit-v2.json", + "yaml": "nunit-v2.yml", + "html": "nunit-v2.html", + "license": "nunit-v2.LICENSE" + }, + { + "license_key": "nvidia", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nvidia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "NOTICE TO USER: The source code is copyrighted under U.S. and international laws. NVIDIA, Corp. of Sunnyvale, California owns the copyright and as design patents pending on the design and interface of the NV chips. \nUsers and possessors of this source code are hereby granted a nonexclusive, royalty-free copyright and design patent license to use this code in individual and commercial software.\n\nAny use of this source code must include, in the user documentation and internal comments to the code, notices to the end user as follows:\n\nCopyright (c) 1996-1998 NVIDIA, Corp. NVIDIA design patents pending in the U.S. and foreign countries.\n\nNVIDIA, CORP. MAKES NO REPRESENTATION ABOUT THE SUITABILITY OF THIS SOURCE CODE FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\" WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND. NVIDIA, CORP. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOURCE CODE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL NVIDIA, CORP. BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL, 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 SOURCE CODE.", + "json": "nvidia.json", + "yaml": "nvidia.yml", + "html": "nvidia.html", + "license": "nvidia.LICENSE" + }, + { + "license_key": "nvidia-2002", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nvidia-2002", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "NVIDIA Corporation(\"NVIDIA\") supplies this software to you in\nconsideration of your agreement to the following terms, and your use,\ninstallation, modification or redistribution of this NVIDIA software\nconstitutes acceptance of these terms. If you do not agree with these\nterms, please do not use, install, modify or redistribute this NVIDIA\nsoftware.\n\nIn consideration of your agreement to abide by the following terms, and\nsubject to these terms, NVIDIA grants you a personal, non-exclusive\nlicense, under NVIDIA's copyrights in this original NVIDIA software (the\n\"NVIDIA Software\"), to use, reproduce, modify and redistribute the\nNVIDIA Software, with or without modifications, in source and/or binary\nforms; provided that if you redistribute the NVIDIA Software, you must\nretain the copyright notice of NVIDIA, this notice and the following\ntext and disclaimers in all such redistributions of the NVIDIA Software.\nNeither the name, trademarks, service marks nor logos of NVIDIA\nCorporation may be used to endorse or promote products derived from the\nNVIDIA Software without specific prior written permission from NVIDIA.\nExcept as expressly stated in this notice, no other rights or licenses\nexpress or implied, are granted by NVIDIA herein, including but not\nlimited to any patent rights that may be infringed by your derivative\nworks or by other works in which the NVIDIA Software may be\nincorporated. No hardware is licensed hereunder. \n\nTHE NVIDIA SOFTWARE IS BEING PROVIDED ON AN \"AS IS\" BASIS, WITHOUT\nWARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED,\nINCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\nITS USE AND OPERATION EITHER ALONE OR IN COMBINATION WITH OTHER\nPRODUCTS.\n\nIN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY SPECIAL, INDIRECT,\nINCIDENTAL, EXEMPLARY, CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, LOST PROFITS; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\nUSE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) OR ARISING IN ANY WAY\nOUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE\nNVIDIA SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT,\nTORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF\nNVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "nvidia-2002.json", + "yaml": "nvidia-2002.yml", + "html": "nvidia-2002.html", + "license": "nvidia-2002.LICENSE" + }, + { + "license_key": "nvidia-apex-sdk-eula-2011", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nvidia-apex-sdk-eula-2011", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "NVIDIA CORPORATION\nNVIDIA APEX SDK END USER LICENSE AGREEMENT\nWelcome to the new world of game development physical asset creation provided to you\nwith the APEX SDK from NVIDIA\u00ae.\n\nNVIDIA Corporation (\u201cNVIDIA\u201d) is willing to license the APEX SDK and the\naccompanying documentation, samples applications, utilities, and asset authoring\nlibraries to you only on the condition that you accept all the terms in this License\nAgreement (\u201cAgreement\u201d).\n\nIMPORTANT: READ THE FOLLOWING TERMS AND CONDITIONS BEFORE\nUSING THE ACCOMPANYING NVIDIA APEX SDK.\nIF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, NVIDIA IS\nNOT WILLING TO LICENSE THE APEX SDK TO YOU. IF YOU DO NOT AGREE\nTO THESE TERMS, YOU SHALL DESTROY THIS ENTIRE PRODUCT AND\nPROVIDE EMAIL VERIFICATION TO PHYSXLICENCING@NVIDIA.COM OF\nDELETION OF ALL COPIES OF THE ENTIRE PRODUCT.\nNVIDIA MAY MODIFY THE TERMS OF THIS AGREEMENT FROM TIME TO\nTIME. ANY USE OF THE APEX SDK WILL BE SUBJECT TO SUCH UPDATED\nTERMS. A CURRENT VERSION OF THIS AGREEMENT IS POSTED ON\nNVIDIA\u2019S DEVELOPER WEBSITE: www.developer.nvidia.com/apex\n\n1. Definitions.\n\u201cPhysics Application\u201d means a software application designed for use and fully\ncompatible with the PhysX and APEX SDK and/or NVIDIA Graphics processor\nproducts, including but not limited to, a video game, visual simulation, movie, or other\nproduct. \u201cAPEX Software Development Kit\u201d or \u201cAPEX SDK\u201d means the set of\ninstructions for computers, in executable form and in any media (which may include\ndiskette, CD-ROM, downloadable internet, hardware, or firmware) comprising\nNVIDIA\u2019s proprietary Software Development Kit and related media and printed\nmaterials, including Redistributable Code, Sample Code, reference guides and manuals,\ninstallation routines, API\u2019s, libraries, any subsequent updates or adaptations provided by\nNVIDIA, whether with this installation or as separately downloaded. \u201cSample Code\u201d\nmeans the sample interface or application source and object code files contained within\nthe APEX SDK\u2019s \u201cSamples\u201d directory or made available for download from the PhysX\ndeveloper site and designated as sample code.\n\n2. License. NVIDIA grants you (\u201cyou\u201d) a limited, non-exclusive, non-transferable\nworld-wide, royalty-free license to (a) internally install, use and display the APEX SDK, \nsolely for purposes of developing APEX asset content for Physics Applications; (b)\ninternally use, copy, modify and compile the Sample Code to design, develop and test\nAPEX assets; and (c) reproduce and distribute the Redistributable Code only in object\ncode form and only as fully integrated into Physics Applications, provided you meet and\ncomply with all requirements of this Agreement.\n\nIn addition, you may not and shall not permit others to:\n(i) modify, reproduce, de-compile, reverse engineer or translate the APEX\nSDK; or\n(ii) distribute or transfer the APEX SDK other than as part of the Physics\nApplication.\n\nExcept as expressly granted herein, no other license under any patent, copyright, trade\nsecret, trademark or other intellectual property right is granted to or conferred upon you\nby this Agreement. All other rights are expressly reserved by NVIDIA and its licensors.\n\n3. Redistribution; Physics Applications. Any redistribution of the APEX SDK (in\naccordance with Section 2 above) or portions thereof must be subject to an end user\nlicense agreement including language that\n(a) prohibits the end user from modifying, reproducing, de-compiling, reverse\nengineering or translating the APEX SDK;\n(b) prohibits the end user from distributing or transferring the APEX SDK other\nthan as part of the Physics Application;\n(c) disclaims any and all warranties on behalf of NVIDIA and its affiliated\ncompanies and licensors;\n(d) disclaims, to the maximum extent permitted by law, NVIDIA\u2019s, its affiliated\ncompanies and its licensors' liability for all damages, direct or indirect, incidental or\nconsequential, that may arise from any use of the APEX SDK and/or Physics\nApplication;\n(e) requires the end user to agree not to export the APEX SDK and/or Physics\nApplication, directly or indirectly, in violation of any U.S. laws; and\n\nYOU ARE REQUIRED TO NOTIFY NVIDIA PRIOR TO USE OF THE APEX SDK\nIN THE DEVELOPMENT OF ANY COMMERCIAL PHYSICS APPLICATION.\nPLEASE SEND NOTIFICATION BY EMAIL TO:\nPHYSXLICENSING@NVIDIA.COM AND PROVIDE THE FOLLOWING\nINFORMATION IN THE EMAIL:\n- COMPANY NAME\n- PUBLISHER NAME\n- GAME TITLE\n- PLATFORMS (I.E. PC, XBOX, PS3, WII)\n- SCHEDULED SHIP DATE\n\nANY COMMERCIAL PHYSICS APPLICATION INTEGRATING THE APEX SDK IS\nSUBJECT TO A LICENSE TO NVIDIA FOR USE AND PUBLIC DISPLAY OF\nSUCH PHYSICS APPLICATION FOR ADVERTISING AND MARKETING\nPURPOSES.\n\nFAILURE TO NOTIFY NVIDIA PURSUANT TO THIS SECTION AND FAILURE\nTO PROVIDE ATTRIBUTION PURSUANT TO SECTION 6 SHALL BE\nCONSIDERED A MATERIAL BREACH OF THIS AGREEMENT.\n\n4. Ownership, Protections. The APEX SDK is owned by NVIDIA and NVIDIA\nlicensors, and is protected by United States copyright laws, international treaty\nprovisions, and other applicable laws. With regard to any copies made, you agree to\nreproduce any copyright notices and other proprietary legends included on the original.\nNVIDIA copyright notice(s) may appear in any of several forms, including machinereadable \nform, and you agree to reproduce such notice in each form in which it appears.\nTitle and copyrights to the APEX SDK and any copies made by you remain with\nNVIDIA and its licensors. You acknowledge that the APEX SDK contain valuable\nproprietary information and trade secrets and that unauthorized or improper use of the\nAPEX SDK will result in irreparable harm to NVIDIA and its licensors for which\nmonetary damages would be inadequate and for which NVIDIA and its licensors will be\nentitled to immediate injunctive relief. Subject to the rights of NVIDIA and its licensors\nin the APEX SDK and the Sample Code, you own your modifications to the Sample\nCode.\n\n5. Restrictions. You will not, and will not permit others to: (a) modify, translate,\ndecompile, bootleg, reverse engineer, disassemble, or extract the inner workings of any\nportion of the APEX SDK except the Sample Code, (b) copy the look-and-feel or\nfunctionality of any portion of the APEX SDK except the Sample Code; (c) remove any\nproprietary notices, marks, labels, or logos from the APEX SDK or any portion thereof;\n(d) rent, transfer or use as a service bureau all or some of the APEX SDK without\nNVIDIA\u2019s prior written consent, except in the form of Physics Applications and subject\nto the requirements of this Agreement; (e) utilize any computer software or hardware\nwhich is designed to defeat any copy protection device, should the APEX SDK be\nequipped with such a protection device; or (f) use the NVIDIA Licensed Software in any\nmanner that would cause the NVIDIA Licensed Software to become subject to an Open\nSource License. \"Open Source License\" includes, without limitation, a software license\nthat requires as a condition of use, modification, and/or distribution of such software that\nthe NVIDIA Licensed Software be (i) disclosed or distributed in source code form; (ii) be\nlicensed for the purpose of making derivative works; or (iii) be redistributable at no\ncharge. Unauthorized copying of the APEX SDK, or failure to comply with any of the\nprovisions of this Agreement, will result in automatic termination of this license.\n\n6. Attribution Requirements and Trademark License. You must provide attribution\nto NVIDIA.\n\nA: You will include a reference to the APEX SDK and NVIDIA in any press releases\nfor such Game that relate to NVIDIA, or in-game physics, and will identify \nNVIDIA as the provider of \"APEX\" (or such other term or phrase as indicated by\nNVIDIA from time to time).\n\nB: For Games, Demos, and Videos that incorporate the APEX SDK or portions\nthereof, the NVIDIA logos must appear:\na. on the back cover of the instruction manual or similar placement in an\nelectronic file for the purpose of acknowledgement/copyright/trademark\nnotice;\nb. on external packaging;\nc. during opening marquee or credits with inclusion of \u201cNVIDIA\u201d;\nd. must appear on title marketing feature list with a specific call-out of\nNVIDIA APEX Technology\ne. on the credit screen; and\nf. in the \u201cAbout\u201d or \u201cInfo\u201d box menu items (or equivalent) of all Physics\nGames or Applications using any portion of the APEX SDK.\n\nC: Provide a quote citing the Licensee\u2019s integration of the APEX SDK into the Game\nor Application for NVIDIA\u2019s use in press materials and website.\n\nD: Refer to NVIDIA\u2019s APEX SDK in all press coverage referring to the use APEX\nin the development of any Game or Application.\nFAILURE TO PROVIDE ATTRIBUTION PURSUANT TO THIS SECTION SHALL\nBE CONSIDERED A MATERIAL BREACH OF THIS AGREEMENT.\n\nExcept as expressly set forth in this Section 6, or in a separate written agreement with\nNVIDIA, you may not use NVIDIA's trademarks, whether registered or unregistered, in\nconnection with the Physics Application in any manner or imply that NVIDIA endorses\nor otherwise approves of the Physics Application or that you and NVIDIA are in any way\naffiliated. Your use of the NVIDIA name under this Agreement does not create any\nright, title or interest in the NVIDIA name or any NVIDIA trademarks and all goodwill\narising from your use inure solely to the benefit of NVIDIA.\n\n7. DISCLAIMER. EXCEPT FOR THE ABOVE EXPRESS LIMITED\nWARRANTY, THE APEX SDK IS PROVIDED \u201cAS IS\u201d AND NVIDIA AND ITS\nLICENSORS MAKE, AND YOU RECEIVE, NO OTHER WARRANTIES OF ANY\nKIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR IN ANY\nCOMMUNICATION WITH YOU. NVIDIA SPECIFICALLY DISCLAIMS ANY\nOTHER WARRANTY INCLUDING THE IMPLIED WARRANTIES OF\nMERCHANTABILITY, NON-INFRINGEMENT, OR FITNESS FOR A PARTICULAR\nPURPOSE. NVIDIA DOES NOT WARRANT THAT THE OPERATION OF THE\nSOFTWARE WILL BE UNINTERRUPTED OR ERROR FREE OR THAT DEFECTS\nIN THE SOFTWARE WILL BE CORRECTED. NVIDIA MAKES NO WARRANTY\nWITH RESPECT TO THE CORRECTNESS, ACCURACY, OR RELIABILITY OF\nTHE SOFTWARE AND DOCUMENTATION. Some jurisdictions do not allow the\nexclusion of implied warranties, so the above exclusion may not apply to you.\n\n8. Remedies. The entire liability of NVIDIA and its licensors, and your exclusive\nremedy under the warranty provided herein will be, at NVIDIA\u2019s option, to replace any\nmedia found to be defective within the warranty period, or to refund the purchase price \nand terminate this Agreement. To seek such a remedy, you must return the entire APEX\nSDK to NVIDIA, with a copy of the original purchase receipt within the warranty period.\n\n9. Confidential Information. All technical and business information disclosed by\nNVIDIA to you under this Agreement, including but not limited to source code,\ndocumentation, technical assistance and any confidential information pertaining to\nNVIDIA\u2019s business or products, are to be considered \u201cNVIDIA Confidential\nInformation.\u201d You will not disclose any portion of NVIDIA Confidential Information to\nany third party and will protect all NVIDIA Confidential Information with the same\ndegree of care as you use to protect your own information of a confidential or proprietary\nnature, but always with at least a reasonable degree of care. This obligation of\nconfidentiality will survive termination and/or expiration of this Agreement for any\nreason.\n\n10. LIMITATION OF LIABILITY. THE TOTAL LIABILITY OF NVIDIA AND\nITS LICENSORS UNDER THIS AGREEMENT FOR DAMAGES WILL NOT\nEXCEED $100 IN THE AGGREGATE. IN NO EVENT WILL NVIDIA OR ITS\nLICENSORS BE LIABLE IN ANY WAY FOR INCIDENTAL, CONSEQUENTIAL,\nINDIRECT, SPECIAL OR PUNITIVE DAMAGES OF ANY NATURE, INCLUDING\nWITHOUT LIMITATION, LOST BUSINESS PROFITS, OR LIABILITY OR INJURY\nTO THIRD PERSONS, WHETHER FORESEEABLE OR NOT, REGARDLESS OF\nWHETHER NVIDIA OR ITS LICENSORS HAVE BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES. Some jurisdictions do not permit limitations of\nliability for incidental or consequential damages, so the above exclusions may not apply\nto you.\n\n11. Customer and Technical Support. You will be solely responsible for providing\ncustomer and technical support to end users of the Physics Application for all features of\nthe Physics Application, including those features that relate to integration, functionality\nor compatibility of the Physics Application with NVIDIA products. NVIDIA may\nprovide you with technical support related to use of the APEX SDK under terms and\nconditions as posted on the NVIDIA PhysX developer website, which may, in NVIDIA\u2019s\nsole discretion, be changed from time to time.\n\n12. Term of License; Termination. Your right to use the APEX SDK will begin when\nyou click the \u201cACCEPT\u201d button, which constitutes acceptance of the terms and\nconditions herein. The license is effective until otherwise terminated. You may\nterminate it at any time by destroying the APEX SDK and all portions thereof, together\nwith all copies in any form. If you fail to comply with any material term or condition of\nthis Agreement and do not cure the noncompliance within 30 days of receipt of written\nnotice of noncompliance from NVIDIA, NVIDIA may terminate your rights to conduct\nany further development under Sections 2(a) and (b) of this Agreement (\"Partial\nTermination\"). Upon Partial Termination, you will certify to NVIDIA in writing that the\noriginal and all stand-alone copies, in whole or in part, of the APEX SDK have been\ndestroyed. Upon Partial Termination, you may continue to distribute any Physics\nApplication that has been commercially released prior to such termination subject to\nprospective compliance with this Agreement. Upon any other termination, you will\ncertify to NVIDIA in writing that the original and all copies, in whole or in part, of the \nAPEX SDK have been destroyed, including those portions contained within any\nunshipped Physics Applications.\n\n13. Governing Law. This Agreement will be governed by the laws of the United\nStates of America to the extent that they apply and otherwise by the laws of the State of\nCalifornia, without reference to principles of conflicts of law.\n\n14. Export. You agree and certify that no portion of the APEX SDK nor any other\ntechnical data received from NVIDIA will be exported outside the United States except\nas authorized and as permitted by the laws and regulations of the United States. If you\nhave rightfully obtained the APEX SDK outside of the United States, you agree that you\nwill not re-export any portion of the APEX SDK nor any other technical data received\nfrom NVIDIA, except as permitted by the laws and regulations of the United States and\nthe laws and regulations of the jurisdiction in which you obtained the APEX SDK.\n\n15. Assignment. You may not sublicense, assign or transfer this Agreement or the\nAPEX SDK except as expressly provided in this Agreement. Any attempt to otherwise\nsublicense, assign or transfer any of the rights, duties or obligations hereunder is null and\nvoid.\n\n16. Survival. The parties agree that where the context of any provision indicates an\nintent that it will survive the term of this Agreement, then it will survive. All terms of\nthis Agreement survive Partial Termination except Sections 2(a) and (b).\n\n17. Entire Agreement. This Agreement contains the parties\u2019 entire agreement\nregarding your use of the APEX SDK and may be amended only in writing signed by\nboth parties.\n\nCopyright 2011 NVIDIA Corporation. All rights reserved.\nUS AND INTERNATIONAL PATENTS PENDING.\nRev (7-22-11)", + "json": "nvidia-apex-sdk-eula-2011.json", + "yaml": "nvidia-apex-sdk-eula-2011.yml", + "html": "nvidia-apex-sdk-eula-2011.html", + "license": "nvidia-apex-sdk-eula-2011.LICENSE" + }, + { + "license_key": "nvidia-cuda-supplement-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nvidia-cuda-supplement-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The terms in this supplement govern your use of the NVIDIA CUDA Toolkit SDK under the terms of your license agreement (\u201cAgreement\u201d) as modified by this supplement. Capitalized terms used but not defined below have the meaning assigned to them in the Agreement.\n\nThis supplement is an exhibit to the Agreement and is incorporated as an integral part of the Agreement. In the event of conflict between the terms in this supplement and the terms in the Agreement, the terms in this supplement govern.\n\n2.1. License Scope\nThe SDK is licensed for you to develop applications only for use in systems with NVIDIA GPUs.\n\n2.2. Distribution\nThe portions of the SDK that are distributable under the Agreement are listed in Attachment A.\n\n2.3. Operating Systems\nThose portions of the SDK designed exclusively for use on the Linux or FreeBSD operating systems, or other operating systems derived from the source code to these operating systems, may be copied and redistributed for use in accordance with this Agreement, provided that the object code files are not modified in any way (except for unzipping of compressed files).\n\n2.4. Audio and Video Encoders and Decoders\nYou acknowledge and agree that it is your sole responsibility to obtain any additional third-party licenses required to make, have made, use, have used, sell, import, and offer for sale your products or services that include or incorporate any third-party software and content relating to audio and/or video encoders and decoders from, including but not limited to, Microsoft, Thomson, Fraunhofer IIS, Sisvel S.p.A., MPEG-LA, and Coding Technologies. NVIDIA does not grant to you under this Agreement any necessary patent or other rights with respect to any audio and/or video encoders and decoders.\n\n2.5. Licensing\nIf the distribution terms in this Agreement are not suitable for your organization, or for any questions regarding this Agreement, please contact NVIDIA at nvidia-compute-license-questions@nvidia.com.\n\n2.6. Attachment A\nThe following CUDA Toolkit files may be distributed with Licensee Applications developed by you, including certain variations of these files that have version number or architecture specific information embedded in the file name - as an example only, for release version 9.0 of the 64-bit Windows software, the file cudart64_90.dll is redistributable.\n\nComponent\tCUDA Runtime\nWindows\tcudart.dll, cudart_static.lib, cudadevrt.lib\nMac OSX\tlibcudart.dylib, libcudart_static.a, libcudadevrt.a\nLinux\tlibcudart.so, libcudart_static.a, libcudadevrt.a\nAndroid\tlibcudart.so, libcudart_static.a, libcudadevrt.a\nComponent\tCUDA FFT Library\nWindows\tcufft.dll, cufftw.dll, cufft.lib, cufftw.lib\nMac OSX\tlibcufft.dylib, libcufft_static.a, libcufftw.dylib, libcufftw_static.a\nLinux\tlibcufft.so, libcufft_static.a, libcufftw.so, libcufftw_static.a\nAndroid\tlibcufft.so, libcufft_static.a, libcufftw.so, libcufftw_static.a\nComponent\tCUDA BLAS Library\nWindows\tcublas.dll, cublasLt.dll\nMac OSX\tlibcublas.dylib, libcublasLt.dylib, libcublas_static.a, libcublasLt_static.a\nLinux\tlibcublas.so, libcublasLt.so, libcublas_static.a, libcublasLt_static.a\nAndroid\tlibcublas.so, libcublasLt.so, libcublas_static.a, libcublasLt_static.a\nComponent\tNVIDIA \"Drop-in\" BLAS Library\nWindows\tnvblas.dll\nMac OSX\tlibnvblas.dylib\nLinux\tlibnvblas.so\nComponent\tCUDA Sparse Matrix Library\nWindows\tcusparse.dll, cusparse.lib\nMac OSX\tlibcusparse.dylib, libcusparse_static.a\nLinux\tlibcusparse.so, libcusparse_static.a\nAndroid\tlibcusparse.so, libcusparse_static.a\nComponent\tCUDA Linear Solver Library\nWindows\tcusolver.dll, cusolver.lib\nMac OSX\tlibcusolver.dylib, libcusolver_static.a\nLinux\tlibcusolver.so, libcusolver_static.a\nAndroid\tlibcusolver.so, libcusolver_static.a\nComponent\tCUDA Random Number Generation Library\nWindows\tcurand.dll, curand.lib\nMac OSX\tlibcurand.dylib, libcurand_static.a\nLinux\tlibcurand.so, libcurand_static.a\nAndroid\tlibcurand.so, libcurand_static.a\nComponent\tNVIDIA Performance Primitives Library\nWindows\tnppc.dll, nppc.lib, nppial.dll, nppial.lib, nppicc.dll, nppicc.lib, nppicom.dll, nppicom.lib, nppidei.dll, nppidei.lib, nppif.dll, nppif.lib, nppig.dll, nppig.lib, nppim.dll, nppim.lib, nppist.dll, nppist.lib, nppisu.dll, nppisu.lib, nppitc.dll, nppitc.lib, npps.dll, npps.lib\nMac OSX\tlibnppc.dylib, libnppc_static.a, libnppial.dylib, libnppial_static.a, libnppicc.dylib, libnppicc_static.a, libnppicom.dylib, libnppicom_static.a, libnppidei.dylib, libnppidei_static.a, libnppif.dylib, libnppif_static.a, libnppig.dylib, libnppig_static.a, libnppim.dylib, libnppisu_static.a, libnppitc.dylib, libnppitc_static.a, libnpps.dylib, libnpps_static.a\nLinux\tlibnppc.so, libnppc_static.a, libnppial.so, libnppial_static.a, libnppicc.so, libnppicc_static.a, libnppicom.so, libnppicom_static.a, libnppidei.so, libnppidei_static.a, libnppif.so, libnppif_static.a libnppig.so, libnppig_static.a, libnppim.so, libnppim_static.a, libnppist.so, libnppist_static.a, libnppisu.so, libnppisu_static.a, libnppitc.so libnppitc_static.a, libnpps.so, libnpps_static.a\nAndroid\tlibnppc.so, libnppc_static.a, libnppial.so, libnppial_static.a, libnppicc.so, libnppicc_static.a, libnppicom.so, libnppicom_static.a, libnppidei.so, libnppidei_static.a, libnppif.so, libnppif_static.a libnppig.so, libnppig_static.a, libnppim.so, libnppim_static.a, libnppist.so, libnppist_static.a, libnppisu.so, libnppisu_static.a, libnppitc.so libnppitc_static.a, libnpps.so, libnpps_static.a\nComponent\tNVIDIA JPEG Library\nLinux\tlibnvjpeg.so, libnvjpeg_static.a\nComponent\tInternal common library required for statically linking to cuBLAS, cuSPARSE, cuFFT, cuRAND, nvJPEG and NPP\nMac OSX\tlibculibos.a\nLinux\tlibculibos.a\nComponent\tNVIDIA Runtime Compilation Library and Header\nAll\tnvrtc.h\nWindows\tnvrtc.dll, nvrtc-builtins.dll\nMac OSX\tlibnvrtc.dylib, libnvrtc-builtins.dylib\nLinux\tlibnvrtc.so, libnvrtc-builtins.so\nComponent\tNVIDIA Optimizing Compiler Library\nWindows\tnvvm.dll\nMac OSX\tlibnvvm.dylib\nLinux\tlibnvvm.so\nComponent\tNVIDIA Common Device Math Functions Library\nWindows\tlibdevice.10.bc\nMac OSX\tlibdevice.10.bc\nLinux\tlibdevice.10.bc\nComponent\tCUDA Occupancy Calculation Header Library\nAll\tcuda_occupancy.h\nComponent\tCUDA Half Precision Headers\nAll\tcuda_fp16.h, cuda_fp16.hpp\nComponent\tCUDA Profiling Tools Interface (CUPTI) Library\nWindows\tcupti.dll\nMac OSX\tlibcupti.dylib\nLinux\tlibcupti.so\nComponent\tNVIDIA Tools Extension Library\nWindows\tnvToolsExt.dll, nvToolsExt.lib\nMac OSX\tlibnvToolsExt.dylib\nLinux\tlibnvToolsExt.so\nComponent\tNVIDIA CUDA Driver Libraries\nLinux\tlibcuda.so, libnvidia-ptxjitcompiler.so\n\nThe NVIDIA CUDA Driver Libraries are only distributable in applications that meet this criteria:\n\nThe application was developed starting from a NVIDIA CUDA container obtained from Docker Hub or the NVIDIA GPU Cloud, and\nThe resulting application is packaged as a Docker container and distributed to users on Docker Hub or the NVIDIA GPU Cloud only.\n\nIn addition to the rights above, for parties that are developing software intended solely for use on Jetson development kits or Jetson modules, and running Linux for Tegra software, the following shall apply:\nThe SDK may be distributed in its entirety, as provided by NVIDIA, and without separation of its components, for you and/or your licensees to create software development kits for use only on the Jetson platform and running Linux for Tegra software.\n\n2.7. Attachment B\n\nAdditional Licensing Obligations\nThe following third party components included in the SOFTWARE are licensed to Licensee pursuant to the following terms and conditions:\n\nLicensee's use of the GDB third party component is subject to the terms and conditions of GNU GPL v3:\nThis product includes copyrighted third-party software licensed\nunder the terms of the GNU General Public License v3 (\"GPL v3\").\nAll third-party software packages are copyright by their respective\nauthors. GPL v3 terms and conditions are hereby incorporated into\nthe Agreement by this reference: http://www.gnu.org/licenses/gpl.txt\n\nConsistent with these licensing requirements, the software listed below is provided under the terms of the specified open source software licenses. To obtain source code for software provided under licenses that require redistribution of source code, including the GNU General Public License (GPL) and GNU Lesser General Public License (LGPL), contact oss-requests@nvidia.com. This offer is valid for a period of three (3) years from the date of the distribution of this product by NVIDIA CORPORATION.\nComponent License\nCUDA-GDB GPL v3\nLicensee represents and warrants that any and all third party licensing and/or royalty payment obligations in connection with Licensee's use of the H.264 video codecs are solely the responsibility of Licensee.\n\nLicensee's use of the Thrust library is subject to the terms and conditions of the Apache License Version 2.0. All third-party software packages are copyright by their respective authors. Apache License Version 2.0 terms and conditions are hereby incorporated into the Agreement by this reference. http://www.apache.org/licenses/LICENSE-2.0.html\n\nIn addition, Licensee acknowledges the following notice: Thrust includes source code from the Boost Iterator, Tuple, System, and Random Number libraries.\n\nBoost Software License - Version 1.0 - August 17th, 2003\n. . . .\n\nPermission is hereby granted, free of charge, to any person or \norganization obtaining a copy of the software and accompanying \ndocumentation covered by this license (the \"Software\") to use, \nreproduce, display, distribute, execute, and transmit the Software, \nand to prepare derivative works of the Software, and to permit \nthird-parties to whom the Software is furnished to do so, all \nsubject to the following:\n\nThe copyright notices in the Software and this entire statement, \nincluding the above license grant, this restriction and the following \ndisclaimer, must be included in all copies of the Software, in whole \nor in part, and all derivative works of the Software, unless such \ncopies or derivative works are solely in the form of machine-executable \nobject code generated by a source language processor.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF \nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND \nNON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR \nANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR \nOTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING \nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR \nOTHER DEALINGS IN THE SOFTWARE.\nLicensee's use of the LLVM third party component is subject to the following terms and conditions:\n======================================================\nLLVM Release License\n======================================================\nUniversity of Illinois/NCSA\nOpen Source License\n\nCopyright (c) 2003-2010 University of Illinois at Urbana-Champaign.\nAll rights reserved.\n\nDeveloped by:\n\n LLVM Team\n\n University of Illinois at Urbana-Champaign\n\n http://llvm.org\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to \ndeal with the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or \nsell copies of the Software, and to permit persons to whom the Software is \nfurnished to do so, subject to the following conditions:\n\n* Redistributions of source code must retain the above copyright notice, \n this list of conditions and the following disclaimers.\n\n* Redistributions in binary form must reproduce the above copyright \n notice, this list of conditions and the following disclaimers in the \n documentation and/or other materials provided with the distribution.\n\n* Neither the names of the LLVM Team, University of Illinois at Urbana-\n Champaign, nor the names of its contributors may be used to endorse or\n promote products derived from this Software without specific prior \n written permission.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, \nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL \nTHE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR \nOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS WITH THE SOFTWARE.\nLicensee's use (e.g. nvprof) of the PCRE third party component is subject to the following terms and conditions:\n------------\nPCRE LICENCE\n------------\nPCRE is a library of functions to support regular expressions whose syntax\nand semantics are as close as possible to those of the Perl 5 language.\nRelease 8 of PCRE is distributed under the terms of the \"BSD\" licence, as\nspecified below. The documentation for PCRE, supplied in the \"doc\" \ndirectory, is distributed under the same terms as the software itself. The\nbasic library functions are written in C and are freestanding. Also \nincluded in the distribution is a set of C++ wrapper functions, and a just-\nin-time compiler that can be used to optimize pattern matching. These are \nboth optional features that can be omitted when the library is built.\n\nTHE BASIC LIBRARY FUNCTIONS\n---------------------------\nWritten by: Philip Hazel\nEmail local part: ph10\nEmail domain: cam.ac.uk\nUniversity of Cambridge Computing Service,\nCambridge, England.\nCopyright (c) 1997-2012 University of Cambridge\nAll rights reserved.\n\nPCRE JUST-IN-TIME COMPILATION SUPPORT\n-------------------------------------\nWritten by: Zoltan Herczeg\nEmail local part: hzmester\nEmain domain: freemail.hu\nCopyright(c) 2010-2012 Zoltan Herczeg\nAll rights reserved.\n\nSTACK-LESS JUST-IN-TIME COMPILER\n--------------------------------\nWritten by: Zoltan Herczeg\nEmail local part: hzmester\nEmain domain: freemail.hu\nCopyright(c) 2009-2012 Zoltan Herczeg\nAll rights reserved.\n\nTHE C++ WRAPPER FUNCTIONS\n-------------------------\nContributed by: Google Inc.\nCopyright (c) 2007-2012, Google Inc.\nAll rights reserved.\nTHE \"BSD\" LICENCE\n-----------------\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice, \n this list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright \n notice, this list of conditions and the following disclaimer in the \n documentation and/or other materials provided with the distribution.\n\n * Neither the name of the University of Cambridge nor the name of Google \n Inc. nor the names of their contributors may be used to endorse or \n promote products derived from this software without specific prior \n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE \nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE \nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF \nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS \nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN \nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE.\nSome of the cuBLAS library routines were written by or derived from code written by Vasily Volkov and are subject to the Modified Berkeley Software Distribution License as follows:\nCopyright (c) 2007-2009, Regents of the University of California\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n * Neither the name of the University of California, Berkeley nor\n the names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR \"AS IS\" AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\nIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\nSome of the cuBLAS library routines were written by or derived from code written by Davide Barbieri and are subject to the Modified Berkeley Software Distribution License as follows:\nCopyright (c) 2008-2009 Davide Barbieri @ University of Rome Tor Vergata.\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n * The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR \"AS IS\" AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\nIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\nSome of the cuBLAS library routines were derived from code developed by the University of Tennessee and are subject to the Modified Berkeley Software Distribution License as follows:\nCopyright (c) 2010 The University of Tennessee.\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer listed in this license in the documentation and/or\n other materials provided with the distribution.\n * Neither the name of the copyright holders nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nSome of the cuBLAS library routines were written by or derived from code written by Jonathan Hogg and are subject to the Modified Berkeley Software Distribution License as follows:\nCopyright (c) 2012, The Science and Technology Facilities Council (STFC).\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n * Neither the name of the STFC nor the names of its contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE STFC BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\nIF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nSome of the cuBLAS library routines were written by or derived from code written by Ahmad M. Abdelfattah, David Keyes, and Hatem Ltaief, and are subject to the Apache License, Version 2.0, as follows:\n -- (C) Copyright 2013 King Abdullah University of Science and Technology\n Authors:\n Ahmad Abdelfattah (ahmad.ahmad@kaust.edu.sa)\n David Keyes (david.keyes@kaust.edu.sa)\n Hatem Ltaief (hatem.ltaief@kaust.edu.sa)\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the King Abdullah University of Science and\n Technology nor the names of its contributors may be used to endorse \n or promote products derived from this software without specific prior \n written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE\nSome of the cuSPARSE library routines were written by or derived from code written by Li-Wen Chang and are subject to the NCSA Open Source License as follows:\nCopyright (c) 2012, University of Illinois.\n\nAll rights reserved.\n\nDeveloped by: IMPACT Group, University of Illinois, http://impact.crhc.illinois.edu\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal with the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimers in the documentation and/or other materials provided\n with the distribution.\n * Neither the names of IMPACT Group, University of Illinois, nor\n the names of its contributors may be used to endorse or promote\n products derived from this Software without specific prior\n written permission.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR\nIN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE\nSOFTWARE.\nSome of the cuRAND library routines were written by or derived from code written by Mutsuo Saito and Makoto Matsumoto and are subject to the following license:\nCopyright (c) 2009, 2010 Mutsuo Saito, Makoto Matsumoto and Hiroshima\nUniversity. All rights reserved.\n\nCopyright (c) 2011 Mutsuo Saito, Makoto Matsumoto, Hiroshima\nUniversity and University of Tokyo. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n * Neither the name of the Hiroshima University nor the names of\n its contributors may be used to endorse or promote products\n derived from this software without specific prior written\n permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nSome of the cuRAND library routines were derived from code developed by D. E. Shaw Research and are subject to the following license:\nCopyright 2010-2011, D. E. Shaw Research.\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions, and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n * Neither the name of D. E. Shaw Research nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nSome of the Math library routines were written by or derived from code developed by Norbert Juffa and are subject to the following license:\nCopyright (c) 2015-2017, Norbert Juffa\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without \nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright \n notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT \nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nHOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT \nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT \n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nLicensee's use of the lz4 third party component is subject to the following terms and conditions:\nCopyright (C) 2011-2013, Yann Collet.\nBSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nThe NPP library uses code from the Boost Math Toolkit, and is subject to the following license:\nBoost Software License - Version 1.0 - August 17th, 2003\n. . . .\n\nPermission is hereby granted, free of charge, to any person or \norganization obtaining a copy of the software and accompanying \ndocumentation covered by this license (the \"Software\") to use, \nreproduce, display, distribute, execute, and transmit the Software, \nand to prepare derivative works of the Software, and to permit \nthird-parties to whom the Software is furnished to do so, all \nsubject to the following:\n\nThe copyright notices in the Software and this entire statement, \nincluding the above license grant, this restriction and the following \ndisclaimer, must be included in all copies of the Software, in whole \nor in part, and all derivative works of the Software, unless such \ncopies or derivative works are solely in the form of machine-executable \nobject code generated by a source language processor.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF \nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND \nNON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR \nANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR \nOTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING \nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR \nOTHER DEALINGS IN THE SOFTWARE.\nPortions of the Nsight Eclipse Edition is subject to the following license:\nThe Eclipse Foundation makes available all content in this plug-in\n(\"Content\"). Unless otherwise indicated below, the Content is provided\nto you under the terms and conditions of the Eclipse Public License\nVersion 1.0 (\"EPL\"). A copy of the EPL is available at http://\nwww.eclipse.org/legal/epl-v10.html. For purposes of the EPL, \"Program\"\nwill mean the Content.\n\nIf you did not receive this Content directly from the Eclipse\nFoundation, the Content is being redistributed by another party\n(\"Redistributor\") and different terms and conditions may apply to your\nuse of any object code in the Content. Check the Redistributor's\nlicense that was provided with the Content. If no such license exists,\ncontact the Redistributor. Unless otherwise indicated below, the terms\nand conditions of the EPL still apply to any source code in the\nContent and such source code may be obtained at http://www.eclipse.org.\nSome of the cuBLAS library routines uses code from OpenAI, which is subject to the following license:\nLicense URL \nhttps://github.com/openai/openai-gemm/blob/master/LICENSE\n\nLicense Text \nThe MIT License\n\nCopyright (c) 2016 OpenAI (http://openai.com), 2016 Google Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE. \nLicensee's use of the Visual Studio Setup Configuration Samples is subject to the following license:\nThe MIT License (MIT) \nCopyright (C) Microsoft Corporation. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person \nobtaining a copy of this software and associated documentation \nfiles (the \"Software\"), to deal in the Software without restriction, \nincluding without limitation the rights to use, copy, modify, merge, \npublish, distribute, sublicense, and/or sell copies of the Software, \nand to permit persons to whom the Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included \nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS \nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, \nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE \nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER \nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, \nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nLicensee's use of linmath.h header for CPU functions for GL vector/matrix operations from lunarG is subject to the Apache License Version 2.0.\nThe DX12-CUDA sample uses the d3dx12.h header, which is subject to the MIT license .", + "json": "nvidia-cuda-supplement-2020.json", + "yaml": "nvidia-cuda-supplement-2020.yml", + "html": "nvidia-cuda-supplement-2020.html", + "license": "nvidia-cuda-supplement-2020.LICENSE" + }, + { + "license_key": "nvidia-gov", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nvidia-gov", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright 1993-2012 NVIDIA Corporation. All rights reserved.\n\nNOTICE TO USER: \n\nThis source code is subject to NVIDIA ownership rights under U.S. and\ninternational Copyright laws. Users and possessors of this source code\nare hereby granted a nonexclusive, royalty-free license to use this code\nin individual and commercial software.\n\nNVIDIA MAKES NO REPRESENTATION ABOUT THE SUITABILITY OF THIS SOURCE\nCODE FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\" WITHOUT EXPRESS OR\nIMPLIED WARRANTY OF ANY KIND. NVIDIA DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOURCE CODE, INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE.\nIN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL,\nOR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE\nOR PERFORMANCE OF THIS SOURCE CODE. \n\nU.S. Government End Users. This source code is a \"commercial item\" as\nthat term is defined at 48 C.F.R. 2.101 (OCT 1995), consisting of\n\"commercial computer software\" and \"commercial computer software\ndocumentation\" as such terms are used in 48 C.F.R. 12.212 (SEPT 1995)\nand is provided to the U.S. Government only as a commercial end item. \nConsistent with 48 C.F.R.12.212 and 48 C.F.R. 227.7202-1 through\n227.7202-4 (JUNE 1995), all U.S. Government End Users acquire the\nsource code with only those rights set forth herein.\n\nAny use of this source code in individual and commercial software must\ninclude, in the user documentation and internal comments to the code,\nthe above Disclaimer and U.S. Government End Users Notice.", + "json": "nvidia-gov.json", + "yaml": "nvidia-gov.yml", + "html": "nvidia-gov.html", + "license": "nvidia-gov.LICENSE" + }, + { + "license_key": "nvidia-isaac-eula-2019.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nvidia-isaac-eula-2019.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SOFTWARE LICENSE AGREEMENT FOR NVIDIA SOFTWARE DEVELOPMENT KITS\n\nThis Software License Agreement, including exhibits attached (\"Agreement\u201d) is a\nlegal agreement between you and NVIDIA Corporation (\"NVIDIA\") and governs your\nuse of a NVIDIA software development kit (\u201cSDK\u201d).\n\nEach SDK has its own set of software and materials, but here is a description of\nthe types of items that may be included in a SDK: source code, header files,\nAPIs, data sets and assets (examples include images, textures, models, scenes,\nvideos, native API input/output files), binary software, sample code, libraries,\nutility programs, programming code and documentation.\n\nThis Agreement can be accepted only by an adult of legal age of majority in the\ncountry in which the SDK is used.\n\nIf you are entering into this Agreement on behalf of a company or other legal\nentity, you represent that you have the legal authority to bind the entity to\nthis Agreement, in which case \u201cyou\u201d will mean the entity you represent.\n\nIf you don\u2019t have the required age or authority to accept this Agreement, or if\nyou don\u2019t accept all the terms and conditions of this Agreement, do not\ndownload, install, copy or use the SDK.\n\nYou agree to use the SDK only for purposes that are permitted by (a) this\nAgreement, and (b) any applicable law, regulation or generally accepted\npractices or guidelines in the relevant jurisdictions.\n\n 1. License.\n\n1.1 Grant\n\nSubject to the terms of this Agreement, NVIDIA hereby grants you a non-\nexclusive, non-transferable license, without the right to sublicense (except as\nexpressly provided in this Agreement) to:\n\n (i) Install and use the SDK,\n\n (ii) Modify and create derivative works of sample source code delivered in\n the SDK, and\n\n (iii) Distribute those portions of the SDK that are identified in this\n Agreement as distributable, as incorporated in object code format into a\n software application that meets the distribution requirements indicated in\n this Agreement.\n\n1.2 Distribution Requirements\n\nThese are the distribution requirements for you to exercise the distribution grant:\n\n (i) Your application must have material additional functionality, beyond the\n included portions of the SDK.\n\n (ii) The distributable portions of the SDK shall only be accessed by your\n application.\n\n (iii) The following notice shall be included in modifications and derivative\n works of sample source code distributed: \u201cThis software contains source code\n provided by NVIDIA Corporation.\u201d\n\n (iv) Unless a developer tool is identified in this Agreement as\n distributable, it is delivered for your internal use only.\n\n (v) The terms under which you distribute your application must be consistent\n with the terms of this Agreement, including (without limitation) terms\n relating to the license grant and license restrictions and protection of\n NVIDIA\u2019s intellectual property rights. Additionally, you agree that you will\n protect the privacy, security and legal rights of your application users.\n\n (vi) You agree to notify NVIDIA in writing of any known or suspected\n distribution or use of the SDK not in compliance with the requirements of\n this Agreement, and to enforce the terms of your agreements with respect to\n distributed SDK.\n\n1.3 Authorized Users\n\nYou may allow employees and contractors of your entity or of your\nsubsidiary(ies) to access and use the SDK from your secure network to perform\nwork on your behalf.\n\nIf you are an academic institution you may allow users enrolled or employed by\nthe academic institution to access and use the SDK from your secure network.\n\nYou are responsible for the compliance with the terms of this Agreement by your\nauthorized users. If you become aware that your authorized users didn\u2019t follow\nthe terms of this Agreement, you agree to take reasonable steps to resolve the\nnon-compliance and prevent new occurrences.\n\n1.4 Pre-Release SDK\n\nThe SDK versions identified as alpha, beta, preview or otherwise as pre-release,\nmay not be fully functional, may contain errors or design flaws, and may have\nreduced or different security, privacy, accessibility, availability, and\nreliability standards relative to commercial versions of NVIDIA software and\nmaterials. Use of a pre-release SDK may result in unexpected results, loss of\ndata, project delays or other unpredictable damage or loss.\n\nYou may use a pre-release SDK at your own risk, understanding that pre-release\nSDKs are not intended for use in production or business-critical systems.\n\nNVIDIA may choose not to make available a commercial version of any pre-release\nSDK. NVIDIA may also choose to abandon development and terminate the\navailability of a pre-release SDK at any time without liability.\n\n1.5 Updates\n\nNVIDIA may, at its option, make available patches, workarounds or other updates\nto this SDK. Unless the updates are provided with their separate governing\nterms, they are deemed part of the SDK licensed to you as provided in this\nAgreement.\n\nYou agree that the form and content of the SDK that NVIDIA provides may change\nwithout prior notice to you. While NVIDIA generally maintains compatibility\nbetween versions, NVIDIA may in some cases make changes that introduce\nincompatibilities in future versions of the SDK.\n\n1.6 Third Party Licenses\n\nThe SDK may come bundled with, or otherwise include or be distributed with,\nthird party software licensed by a NVIDIA supplier and/or open source software\nprovided under an open source license. Use of third party software is subject to\nthe third party license terms, or in the absence of third party terms, the terms\nof this Agreement. Copyright to third party software is held by the copyright\nholders indicated in the third-party software or license.\n\nYou acknowledge and agree that it is your sole responsibility to obtain any\nadditional third party licenses required to make, have made, use, have used,\nsell, import, and offer for sale your products or services that include or\nincorporate any third-party software and content relating to audio and/or video\nencoders and decoders from, including but not limited to, Microsoft, Thomson,\nFraunhofer IIS, Sisvel S.p.A., MPEG-LA, and Coding Technologies. NVIDIA does not\ngrant to you under this Agreement any necessary patent or other rights with\nrespect to any audio and/or video encoders and decoders.\n\n1.7 Reservation of Rights\n\nNVIDIA reserves all rights, title and interest in and to the SDK not expressly\ngranted to you under this Agreement.\n\n 2. Limitations.\n\nThe following license limitations apply to your use of the SDK:\n\n2.1 You may not reverse engineer, decompile or disassemble, or remove copyright\nor other proprietary notices from any portion of the SDK or copies of the SDK.\n\n2.2 Except as expressly provided in this Agreement, you may not copy, sell,\nrent, sublicense, transfer, distribute, modify, or create derivative works of\nany portion of the SDK. For clarity, you may not distribute or sublicense the\nSDK as a stand-alone product.\n\n2.3 Unless you have an agreement with NVIDIA for this purpose, you may not\nindicate that an application created with the SDK is sponsored or endorsed by\nNVIDIA.\n\n2.4 You may not bypass, disable, or circumvent any encryption, security, digital\nrights management or authentication mechanism in the SDK.\n\n2.5 You may not use the SDK in any manner that would cause it to become subject\nto an open source software license. As examples, licenses that require as a\ncondition of use, modification, and/or distribution that the SDK be (i)\ndisclosed or distributed in source code form; (ii) licensed for the purpose of\nmaking derivative works; or (iii) redistributable at no charge.\n\n2.6 Unless you have an agreement with NVIDIA for this purpose, you may not use\nthe SDK with any system or application where the use or failure of the system or\napplication can reasonably be expected to threaten or result in personal injury,\ndeath, or catastrophic loss. Examples include use in nuclear, avionics,\nnavigation, military, medical, life support or other life critical applications.\nNVIDIA does not design, test or manufacture the SDK for these critical uses and\nNVIDIA shall not be liable to you or any third party, in whole or in part, for\nany claims or damages arising from such uses.\n\n2.7 You agree to defend, indemnify and hold harmless NVIDIA and its affiliates,\nand their respective employees, contractors, agents, officers and directors,\nfrom and against any and all claims, damages, obligations, losses, liabilities,\ncosts or debt, fines, restitutions and expenses (including but not limited to\nattorney\u2019s fees and costs incident to establishing the right of indemnification)\narising out of or related to your use of the SDK outside of the scope of this\nAgreement, or not in compliance with its terms.\n\n 3. Ownership.\n\n3.1 NVIDIA or its licensors hold all rights, title and interest in and to the\nSDK and its modifications and derivative works, including their respective\nintellectual property rights, subject to your rights under Section 3.2. This SDK\nmay include software and materials from NVIDIA\u2019s licensors, and these licensors\nare intended third party beneficiaries that may enforce this Agreement with\nrespect to their intellectual property rights.\n\n3.2 You hold all rights, title and interest in and to your applications and your\nderivative works of the sample source code delivered in the SDK, including their\nrespective intellectual property rights, subject to NVIDIA\u2019s rights under\nsection 3.1.\n\n3.3 You may, but don\u2019t have to, provide to NVIDIA suggestions, feature requests\nor other feedback regarding the SDK, including possible enhancements or\nmodifications to the SDK. For any feedback that you voluntarily provide, you\nhereby grant NVIDIA and its affiliates a perpetual, non-exclusive, worldwide,\nirrevocable license to use, reproduce, modify, license, sublicense (through\nmultiple tiers of sublicensees), and distribute (through multiple tiers of\ndistributors) it without the payment of any royalties or fees to you. NVIDIA\nwill decide if and how to respond to feedback and if to incorporate feedback\ninto the SDK. NVIDIA is constantly looking for ways to improve its products, so\nyou may send feedback to NVIDIA through the developer portal at\nhttps://developer.nvidia.com.\n\n 4. No Warranties.\n\nTHE SDK IS PROVIDED BY NVIDIA \u201cAS IS\u201d AND \u201cWITH ALL FAULTS.\u201d TO THE MAXIMUM\nEXTENT PERMITTED BY LAW, NVIDIA\n\nAND ITS AFFILIATES EXPRESSLY DISCLAIM ALL WARRANTIES OF ANY KIND OR NATURE,\nWHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON-\nINFRINGEMENT, OR THE ABSENCE OF ANY DEFECTS THEREIN, WHETHER LATENT OR PATENT.\nNO WARRANTY IS MADE ON THE BASIS OF TRADE USAGE, COURSE OF DEALING OR COURSE OF\nTRADE.\n\n 5. Limitations of Liability.\n\nTO THE MAXIMUM EXTENT PERMITTED BY LAW, NVIDIA AND ITS AFFILIATES SHALL NOT BE\nLIABLE FOR ANY SPECIAL, INCIDENTAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR ANY\nLOST PROFITS, LOSS OF USE, LOSS OF DATA OR LOSS OF GOODWILL, OR THE COSTS OF\nPROCURING SUBSTITUTE PRODUCTS, ARISING OUT OF OR IN CONNECTION WITH THIS\nAGREEMENT OR THE USE OR PERFORMANCE OF THE SDK, WHETHER SUCH LIABILITY ARISES\nFROM ANY CLAIM BASED UPON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT\n(INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER CAUSE OF ACTION OR THEORY\nOF LIABILITY. IN NO EVENT WILL NVIDIA\u2019S AND ITS AFFILIATES TOTAL CUMULATIVE\nLIABILITY UNDER OR ARISING OUT OF THIS AGREEMENT EXCEED US$10.00. THE NATURE OF\nTHE LIABILITY OR THE NUMBER OF CLAIMS OR SUITS SHALL NOT ENLARGE OR EXTEND THIS\nLIMIT.\n\nThese exclusions and limitations of liability shall apply regardless if NVIDIA\nor its affiliates have been advised of the possibility of such damages, and\nregardless of whether a remedy fails its essential purpose. These exclusions and\nlimitations of liability form an essential basis of the bargain between the\nparties, and, absent any of these exclusions or limitations of liability, the\nprovisions of this Agreement, including, without limitation, the economic terms,\nwould be substantially different.\n\n 6. Termination.\n\n6.1 This Agreement will continue to apply until terminated by either you or\nNVIDIA as described below.\n\n6.2 If you want to terminate this Agreement, you may do so by stopping to use\nthe SDK.\n\n6.3 NVIDIA may, at any time, terminate this Agreement if: (i) you fail to comply\nwith any term of this Agreement and the non-compliance is not fixed within\nthirty (30) days following notice from NVIDIA (or immediately if you violate\nNVIDIA\u2019s intellectual property rights); (ii) you commence or participate in any\nlegal proceeding against NVIDIA with respect to the SDK; or (iii) NVIDIA decides\nto no longer provide the SDK in a country or, in NVIDIA\u2019s sole discretion, the\ncontinued use of it is no longer commercially viable.\n\n6.4 Upon any termination of this Agreement, you agree to promptly discontinue\nuse of the SDK and destroy all copies in your possession or control. Your prior\ndistributions in accordance with this Agreement are not affected by the\ntermination of this Agreement. Upon written request, you will certify in writing\nthat you have complied with your commitments under this section. Upon any\ntermination of this Agreement all provisions survive except for the licenses\ngranted to you.\n\n 7. General.\n\nIf you wish to assign this Agreement or your rights and obligations, including\nby merger, consolidation, dissolution or operation of law, contact NVIDIA to ask\nfor permission. Any attempted assignment not approved by NVIDIA in writing shall\nbe void and of no effect. NVIDIA may assign, delegate or transfer this Agreement\nand its rights and obligations, and if to a non-affiliate you will be notified.\n\nYou agree to cooperate with NVIDIA and provide reasonably requested information\nto verify your compliance with this Agreement.\n\nThis Agreement will be governed in all respects by the laws of the United States\nand of the State of Delaware as those laws are applied to contracts entered into\nand performed entirely within Delaware by Delaware residents, without regard to\nthe\n\nconflicts of laws principles. The United Nations Convention on Contracts for the\nInternational Sale of Goods is specifically disclaimed. You agree to all terms\nof this Agreement in the English language.\n\nThe state or federal courts residing in Santa Clara County, California shall\nhave exclusive jurisdiction over any dispute or claim arising out of this\nAgreement. Notwithstanding this, you agree that NVIDIA shall still be allowed to\napply for injunctive remedies or an equivalent type of urgent legal relief in\nany jurisdiction.\n\nIf any court of competent jurisdiction determines that any provision of this\nAgreement is illegal, invalid or unenforceable, such provision will be construed\nas limited to the extent necessary to be consistent with and fully enforceable\nunder the law and the remaining provisions will remain in full force and effect.\nUnless otherwise specified, remedies are cumulative.\n\nEach party acknowledges and agrees that the other is an independent contractor\nin the performance of this Agreement.\n\nNeither party will be responsible for any failure or delay in its performance\nunder this Agreement to the extent due to causes beyond its reasonable control\nfor so long as the cause or event continues in effect.\n\nThe SDK has been developed entirely at private expense and is \u201ccommercial items\u201d\nconsisting of \u201ccommercial computer software\u201d and \u201ccommercial computer software\ndocumentation\u201d provided with RESTRICTED RIGHTS. Use, duplication or disclosure\nby the U.S. Government or a U.S. Government subcontractor is subject to the\nrestrictions in this Agreement pursuant to DFARS 227.7202-3(a) or as set forth\nin subparagraphs (b)(1) and (2) of the Commercial Computer Software - Restricted\nRights clause at FAR 52.227-19, as applicable. Contractor/manufacturer is\nNVIDIA, 2788 San Tomas Expressway, Santa Clara, CA 95051.\n\nThe SDK is subject to United States export laws and regulations. You agree that\nyou will not ship, transfer or export the SDK into any country, or use the SDK\nin any manner, prohibited by the United States Bureau of Industry and Security\nor economic sanctions regulations administered by the U.S. Department of\nTreasury\u2019s Office of Foreign Assets Control (OFAC), or any applicable export\nlaws, restrictions or regulations. These laws include restrictions on\ndestinations, end users and end use. By accepting this Agreement, you confirm\nthat you are not a resident or citizen of any country currently embargoed by the\nU.S. and that you are not otherwise prohibited from receiving the SDK.\n\nAny notice delivered by NVIDIA to you under this Agreement will be delivered via\nmail, email or fax. You agree that any notices that NVIDIA sends you\nelectronically will satisfy any legal communication requirements. Please direct\nyour legal notices or other correspondence to NVIDIA Corporation, 2788 San Tomas\nExpressway, Santa Clara, California 95051, United States of America, Attention:\nLegal Department.\n\nThis Agreement and any exhibits incorporated to this Agreement constitute the\nentire agreement of the parties with respect to the subject matter of this\nAgreement and supersede all prior negotiations, conversations, or discussions\nbetween the parties relating to this subject matter. Any additional and/or\nconflicting terms on documents issued by you are null, void, and invalid. Any\namendment or waiver under this Agreement shall be in writing and signed by\nrepresentatives of both parties.\n\n(v. March 8, 2019)\n\n\nISAAC SUPPLEMENT\n\nTO SOFTWARE LICENSE AGREEMENT FOR NVIDIA SOFTWARE DEVELOPMENT KITS\n\nThe terms in this supplement govern your use of the NVIDIA Isaac SDK under the\nterms of your software license agreement (\u201cAgreement\u201d) as modified by this\nsupplement. Capitalized terms used but not defined below have the meaning\nassigned to them in the Agreement.\n\nThis supplement is an exhibit to the Agreement and is incorporated as an\nintegral part of the Agreement. In the event of conflict between the terms in\nthis supplement and the terms in the Agreement, the terms in this supplement\ngovern.\n\n 1. Distribution. The following portions of the SDK are distributable under\n the Agreement: the runtimes files ending with .so and .a as part of your\n application.\n\n 2. Samples. In this SDK, the folder that contains sample source code is the\n apps/samples folder. With respect to source code samples licensed to you,\n NVIDIA and its affiliates are free to continue independently developing\n source code samples and you covenant not to sue NVIDIA, its affiliates or\n their licensees with respect to later versions of NVIDIA released source\n code samples.\n\n 3. Restrictions. The following restrictions apply:\n\n I. You are not permitted to disclose the results of any benchmarking or\n other competitive analysis relating to the SDK without the prior written\n permission from NVIDIA; and\n\n II. The SDK is licensed for use with a computer system incorporating one\n or more NVIDIA GPU hardware products and running NVIDIA software\n drivers.\n\n 4. Source Code Modification and Ownership. Subject to the terms of the\n Agreement and this supplement, NVIDIA hereby grants you a non-exclusive,\n non-transferable license, without the right to sublicense to modify and\n create derivative works of software provided to you by NVIDIA in source code\n form, except for header files. As between you and NVIDIA, NVIDIA holds all\n rights, title and interest in and to your modifications and derivative works\n of the source code software. Subject to NVIDIA\u2019s rights described in the\n Agreement and this section, you retain all rights, title and in and to your\n software and products developed independently from the use of the SDK (as\n may be demonstrated by documentation). You have no obligation to provide to\n NVIDIA your modifications to the NVIDIA source code.\n\n 5. Indemnity. You agree to defend, indemnify and hold harmless NVIDIA and\n its affiliates, and their respective employees, contractors, agents,\n officers and directors, from and against any and all claims, damages,\n obligations, losses, liabilities, costs or debt, fines, restitutions and\n expenses (including but not limited to attorney\u2019s fees and costs incident to\n establishing the right of indemnification) arising out of or related to any\n damages, or injuries, illness or death related to the use of goods and/or\n services that include or utilize the SDK.\n\n(v. March 8, 2019)", + "json": "nvidia-isaac-eula-2019.1.json", + "yaml": "nvidia-isaac-eula-2019.1.yml", + "html": "nvidia-isaac-eula-2019.1.html", + "license": "nvidia-isaac-eula-2019.1.LICENSE" + }, + { + "license_key": "nvidia-ngx-eula-2019", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nvidia-ngx-eula-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Abstract\nThis document is the End User License Agreement (EULA) for NVIDIA NGX. This document contains specific license terms and conditions for NVIDIA NGX. By accepting this agreement, you agree to comply with all the terms and conditions applicable to the specific product(s) included herein.\n\nLICENSE AGREEMENT FOR NVIDIA SOFTWARE DEVELOPMENT KITS\nThis license agreement, including exhibits attached (\"Agreement\u201d) is a legal agreement between you and NVIDIA Corporation (\"NVIDIA\") and governs your use of a NVIDIA software development kit (\u201cSDK\u201d).\n\nEach SDK has its own set of software and materials, but here is a description of the types of items that may be included in a SDK: source code, header files, APIs, data sets and assets (examples include images, textures, models, scenes, videos, native API input/output files), binary software, sample code, libraries, utility programs, programming code and documentation.\n\nThis Agreement can be accepted only by an adult of legal age of majority in the country in which the SDK is used.\n\nIf you are entering into this Agreement on behalf of a company or other legal entity, you represent that you have the legal authority to bind the entity to this Agreement, in which case \u201cyou\u201d will mean the entity you represent.\n\nIf you don\u2019t have the required age or authority to accept this Agreement, or if you don\u2019t accept all the terms and conditions of this Agreement, do not download, install or use the SDK.\n\nYou agree to use the SDK only for purposes that are permitted by (a) this Agreement, and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions.\n\n1. License.\n1.1. Grant\nSubject to the terms of this Agreement, NVIDIA hereby grants you a non-exclusive, non-transferable license, without the right to sublicense (except as expressly provided in this Agreement) to:\n\n(i) Install and use the SDK,\n\n(ii) Modify and create derivative works of sample source code delivered in the SDK, and\n\n(iii) Distribute those portions of the SDK that are identified in this Agreement as distributable, as incorporated in object code format into a software application that meets the distribution requirements indicated in this Agreement.\n\n1.2. Distribution Requirements\nThese are the distribution requirements for you to exercise the distribution grant:\n\n(i) Your application must have material additional functionality, beyond the included portions of the SDK.\n\n(ii) The distributable portions of the SDK shall only be accessed by your application.\n\n(iii) The following notice shall be included in modifications and derivative works of sample source code distributed: \u201cThis software contains source code provided by NVIDIA Corporation.\u201d\n\n(iv) Unless a developer tool is identified in this Agreement as distributable, it is delivered for your internal use only.\n\n(v) The terms under which you distribute your application must be consistent with the terms of this Agreement, including (without limitation) terms relating to the license grant and license restrictions and protection of NVIDIA\u2019s intellectual property rights. Additionally, you agree that you will protect the privacy, security and legal rights of your application users.\n\n(vi) You agree to notify NVIDIA in writing of any known or suspected distribution or use of the SDK not in compliance with the requirements of this Agreement, and to enforce the terms of your agreements with respect to distributed SDK.\n\n1.3. Authorized Users\nYou may allow employees and contractors of your entity or of your subsidiary(ies) to access and use the SDK from your secure network to perform work on your behalf.\n\nIf you are an academic institution you may allow users enrolled or employed by the academic institution to access and use the SDK from your secure network.\n\nYou are responsible for the compliance with the terms of this Agreement by your authorized users. If you become aware that your authorized users didn\u2019t follow the terms of this Agreement, you agree to take reasonable steps to resolve the non-compliance and prevent new occurrences.\n\n1.4. Pre-Release SDK\nThe SDK versions identified as alpha, beta, preview or otherwise as pre-release, may not be fully functional, may contain errors or design flaws, and may have reduced or different security, privacy, accessibility, availability, and reliability standards relative to commercial versions of NVIDIA software and materials. Use of a pre-release SDK may result in unexpected results, loss of data, project delays or other unpredictable damage or loss.\n\nYou may use a pre-release SDK at your own risk, understanding that pre-release SDKs are not intended for use in production or business-critical systems.\n\nNVIDIA may choose not to make available a commercial version of any pre-release SDK. NVIDIA may also choose to abandon development and terminate the availability of a pre-release SDK at any time without liability.\n\n1.5. Updates\nNVIDIA may, at its option, make available patches, workarounds or other updates to this SDK. Unless the updates are provided with their separate governing terms, they are deemed part of the SDK licensed to you as provided in this Agreement.\n\nYou agree that the form and content of the SDK that NVIDIA provides may change without prior notice to you. While NVIDIA generally maintains compatibility between versions, NVIDIA may in some cases make changes that introduce incompatibilities in future versions of the SDK.\n\n1.6. Third Party Licenses\nThe SDK may come bundled with, or otherwise include or be distributed with, third party software licensed by a NVIDIA supplier and/or open source software provided under an open source license. Use of third party software is subject to the third-party license terms, or in the absence of third party terms, the terms of this Agreement. Copyright to third party software is held by the copyright holders indicated in the third-party software or license.\n\n1.7. Reservation of Rights\nNVIDIA reserves all rights, title and interest in and to the SDK not expressly granted to you under this Agreement.\n\n2. Limitations.\nThe following license limitations apply to your use of the SDK:\n\n2.1\nYou may not reverse engineer, decompile or disassemble, or remove copyright or other proprietary notices from any portion of the SDK or copies of the SDK.\n\n2.2\nExcept as expressly provided in this Agreement, you may not copy, sell, rent, sublicense, transfer, distribute, modify, or create derivative works of any portion of the SDK. For clarity, you may not distribute or sublicense the SDK as a stand-alone product.\n\n2.3\nUnless you have an agreement with NVIDIA for this purpose, you may not indicate that an application created with the SDK is sponsored or endorsed by NVIDIA.\n\n2.4\nYou may not bypass, disable, or circumvent any encryption, security, digital rights management or authentication mechanism in the SDK.\n\n2.5\nYou may not use the SDK in any manner that would cause it to become subject to an open source software license. As examples, licenses that require as a condition of use, modification, and/or distribution that the SDK be (i) disclosed or distributed in source code form; (ii) licensed for the purpose of making derivative works; or (iii) redistributable at no charge.\n\n2.6\nUnless you have an agreement with NVIDIA for this purpose, you may not use the SDK with any system or application where the use or failure of the system or application can reasonably be expected to threaten or result in personal injury, death, or catastrophic loss. Examples include use in nuclear, avionics, navigation, military, medical, life support or other life critical applications. NVIDIA does not design, test or manufacture the SDK for these critical uses and NVIDIA shall not be liable to you or any third party, in whole or in part, for any claims or damages arising from such uses.\n\n2.7\n2.7 You agree to defend, indemnify and hold harmless NVIDIA and its affiliates, and their respective employees, contractors, agents, officers and directors, from and against any and all claims, damages, obligations, losses, liabilities, costs or debt, fines, restitutions and expenses (including but not limited to attorney\u2019s fees and costs incident to establishing the right of indemnification) arising out of or related to your use of the SDK outside of the scope of this Agreement, or not in compliance with its terms.\n\n3. Ownership.\n3.1\nNVIDIA or its licensors hold all rights, title and interest in and to the SDK and its modifications and derivative works, including their respective intellectual property rights, subject to your rights under Section 3.2. This SDK may include software and materials from NVIDIA\u2019s licensors, and these licensors are intended third party beneficiaries that may enforce this Agreement with respect to their intellectual property rights.\n\n3.2\nYou hold all rights, title and interest in and to your applications and your derivative works of the sample source code delivered in the SDK, including their respective intellectual property rights, subject to NVIDIA\u2019s rights under section 3.1.\n\n3.3\nYou may, but don\u2019t have to, provide to NVIDIA suggestions, feature requests or other feedback regarding the SDK, including possible enhancements or modifications to the SDK. For any feedback that you voluntarily provide, you hereby grant NVIDIA and its affiliates a perpetual, non-exclusive, worldwide, irrevocable license to use, reproduce, modify, license, sublicense (through multiple tiers of sublicensees), and distribute (through multiple tiers of distributors) it without the payment of any royalties or fees to you. NVIDIA will use feedback at its choice. NVIDIA is constantly looking for ways to improve its products, so you may send feedback to NVIDIA through the developer portal at https://developer.nvidia.com.\n\n4. No Warranties.\nTHE SDK IS PROVIDED BY NVIDIA \u201cAS IS\u201d AND \u201cWITH ALL FAULTS.\u201d TO THE MAXIMUM EXTENT PERMITTED BY LAW, NVIDIA AND ITS AFFILIATES EXPRESSLY DISCLAIM ALL WARRANTIES OF ANY KIND OR NATURE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, OR THE ABSENCE OF ANY DEFECTS THEREIN, WHETHER LATENT OR PATENT. NO WARRANTY IS MADE ON THE BASIS OF TRADE USAGE, COURSE OF DEALING OR COURSE OF TRADE.\n\n5. Limitations of Liability.\nTO THE MAXIMUM EXTENT PERMITTED BY LAW, NVIDIA AND ITS AFFILIATES SHALL NOT BE LIABLE FOR ANY SPECIAL, INCIDENTAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR ANY LOST PROFITS, LOSS OF USE, LOSS OF DATA OR LOSS OF GOODWILL, OR THE COSTS OF PROCURING SUBSTITUTE PRODUCTS, ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT OR THE USE OR PERFORMANCE OF THE SDK, WHETHER SUCH LIABILITY ARISES FROM ANY CLAIM BASED UPON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER CAUSE OF ACTION OR THEORY OF LIABILITY. IN NO EVENT WILL NVIDIA\u2019S AND ITS AFFILIATES TOTAL CUMULATIVE LIABILITY UNDER OR ARISING OUT OF THIS AGREEMENT EXCEED US$10.00. THE NATURE OF THE LIABILITY OR THE NUMBER OF CLAIMS OR SUITS SHALL NOT ENLARGE OR EXTEND THIS LIMIT.\n\nThese exclusions and limitations of liability shall apply regardless if NVIDIA or its affiliates have been advised of the possibility of such damages, and regardless of whether a remedy fails its essential purpose. These exclusions and limitations of liability form an essential basis of the bargain between the parties, and, absent any of these exclusions or limitations of liability, the provisions of this Agreement, including, without limitation, the economic terms, would be substantially different.\n\n6. Termination.\n6.1\nThis Agreement will continue to apply until terminated by either you or NVIDIA as described below.\n\n6.2\nIf you want to terminate this Agreement, you may do so by stopping to use the SDK.\n\n6.3\nNVIDIA may, at any time, terminate this Agreement if: (i) you fail to comply with any term of this Agreement and the non-compliance is not fixed within thirty (30) days following notice from NVIDIA (or immediately if you violate NVIDIA\u2019s intellectual property rights); (ii) you commence or participate in any legal proceeding against NVIDIA with respect to the SDK; or (iii) NVIDIA decides to no longer provide the SDK in a country or, in NVIDIA\u2019s sole discretion, the continued use of it is no longer commercially viable.\n\n6.4\nUpon any termination of this Agreement, you agree to promptly discontinue use of the SDK and destroy all copies in your possession or control. Your prior distributions in accordance with this Agreement are not affected by the termination of this Agreement. Upon written request, you will certify in writing that you have complied with your commitments under this section. Upon any termination of this Agreement all provisions survive except for the license grant provisions.\n\n7. General.\nIf you wish to assign this Agreement or your rights and obligations, including by merger, consolidation, dissolution or operation of law, contact NVIDIA to ask for permission. Any attempted assignment not approved by NVIDIA in writing shall be void and of no effect. NVIDIA may assign, delegate or transfer this Agreement and its rights and obligations, and if to a non-affiliate you will be notified.\n\nYou agree to cooperate with NVIDIA and provide reasonably requested information to verify your compliance with this Agreement.\n\nThis Agreement will be governed in all respects by the laws of the United States and of the State of Delaware as those laws are applied to contracts entered into and performed entirely within Delaware by Delaware residents, without regard to the conflicts of laws principles. The United Nations Convention on Contracts for the International Sale of Goods is specifically disclaimed. You agree to all terms of this Agreement in the English language.\n\nThe state or federal courts residing in Santa Clara County, California shall have exclusive jurisdiction over any dispute or claim arising out of this Agreement. Notwithstanding this, you agree that NVIDIA shall still be allowed to apply for injunctive remedies or an equivalent type of urgent legal relief in any jurisdiction.\n\nIf any court of competent jurisdiction determines that any provision of this Agreement is illegal, invalid or unenforceable, such provision will be construed as limited to the extent necessary to be consistent with and fully enforceable under the law and the remaining provisions will remain in full force and effect. Unless otherwise specified, remedies are cumulative.\n\nEach party acknowledges and agrees that the other is an independent contractor in the performance of this Agreement.\n\nThe SDK has been developed entirely at private expense and is \u201ccommercial items\u201d consisting of \u201ccommercial computer software\u201d and \u201ccommercial computer software documentation\u201d provided with RESTRICTED RIGHTS. Use, duplication or disclosure by the U.S. Government or a U.S. Government subcontractor is subject to the restrictions in this Agreement pursuant to DFARS 227.7202-3(a) or as set forth in subparagraphs (c)(1) and (2) of the Commercial Computer Software - Restricted Rights clause at FAR 52.227-19, as applicable. Contractor/manufacturer is NVIDIA, 2788 San Tomas Expressway, Santa Clara, CA 95051.\n\nThe SDK is subject to United States export laws and regulations. You agree that you will not ship, transfer or export the SDK into any country, or use the SDK in any manner, prohibited by the United States Bureau of Industry and Security or economic sanctions regulations administered by the U.S. Department of Treasury\u2019s Office of Foreign Assets Control (OFAC), or any applicable export laws, restrictions or regulations. These laws include restrictions on destinations, end users and end use. By accepting this Agreement, you confirm that you are not a resident or citizen of any country currently embargoed by the U.S. and that you are not otherwise prohibited from receiving the SDK.\n\nAny notice delivered by NVIDIA to you under this Agreement will be delivered via mail, email or fax. You agree that any notices that NVIDIA sends you electronically will satisfy any legal communication requirements. Please direct your legal notices or other correspondence to NVIDIA Corporation, 2788 San Tomas Expressway, Santa Clara, California 95051, United States of America, Attention: Legal Department.\n\nThis Agreement and any exhibits incorporated into this Agreement constitute the entire agreement of the parties with respect to the subject matter of this Agreement and supersede all prior negotiations or documentation exchanged between the parties relating to this SDK license. Any additional and/or conflicting terms on documents issued by you are null, void, and invalid. Any amendment or waiver under this Agreement shall be in writing and signed by representatives of both parties.\n\n8. NVIDIA RTX SUPPLEMENT TO SOFTWARE LICENSE AGREEMENT FOR NVIDIA SOFTWARE DEVELOPMENT KITS\nNVIDIA RTX SUPPLEMENT TO SOFTWARE LICENSE AGREEMENT FOR NVIDIA SOFTWARE DEVELOPMENT KITS\nThe terms in this supplement govern your use of the NVIDIA RTX SDK under the terms of your license agreement (\u201cAgreement\u201d) as modified by this supplement. Capitalized terms used but not defined below have the meaning assigned to them in the Agreement.\n\nThis supplement is an exhibit to the Agreement and is incorporated as an integral part of the Agreement. In the event of conflict between the terms in this supplement and the terms in the Agreement, the terms in this supplement govern.\n\n1. Interoperability.\nYour applications that incorporate, or are based on, the SDK must be fully interoperable with GPU hardware products designed by NVIDIA or its affiliates.\n\n2. Limitations.\nYour applications that incorporate, or are based on, the SDK may be deployed in a cloud service that runs on systems that consume NVIDIA vGPU software, and any other cloud service use of the SDK or its functionality is outside of the scope of the Agreement. For the purpose of this section, cloud services include application service providers or service bureaus, operators of hosted/virtual system environments, or hosting, time sharing or providing any other type of service to others.\n\n3. Distribution.\nThe following portions of the SDK are distributable under the Agreement in applications developed for authorized platforms only, as described in the documentation provided by NVIDIA: any software or materials within the SDK, other than developer tools provided for your internal use.\n\n4. Notification.\nYou are required to notify NVIDIA prior to commercial release of an application (including a plug-in to a commercial application). Please send notifications to: https://developer.nvidia.com/sw-notification and provide the following information in the email: company name, publisher and developer name, application name, platform (i.e. PC, Linux), scheduled ship date, and webLink to product/video.\n\n5. Audio and Video Encoders and Decoders.\nYou acknowledge and agree that it is your sole responsibility to obtain any additional third-party licenses required to make, have made, use, have used, sell, import, and offer for sale your products or services that include or incorporate any third-party software and content relating to audio and/or video encoders and decoders from, including but not limited to, Microsoft, Thomson, Fraunhofer IIS, Sisvel S.p.A., MPEG-LA, and Coding Technologies. NVIDIA does not grant to you under this Agreement any necessary patent or other rights with respect to any audio and/or video encoders and decoders.\n\n6. Marketing.\n6.1 Marketing Activities. Your license to the SDK under the Agreement is subject to your compliance with the following marketing terms:\n(a) Identification by You. During the term of the Agreement, NVIDIA agrees that you may identify NVIDIA on your websites, printed collateral, trade-show displays and other retail packaging materials, as the supplier of the NVIDIA RTX SDK for the applications that were developed with use of the SDK, provided that all such references to NVIDIA will be subject to NVIDIA's prior review and written approval, which will not be unreasonably withheld or delayed.\n\n(b) NVIDIA Trademark Placement in Applications. For applications that incorporate the NVIDIA RTX SDK or portions thereof, you must attribute the use of the RTX SDK by including the NVIDIA Marks on splash screens, in the about box of the application (if present), and in credits for game applications.\n\n(c) Marketing and Promotion by You. You will include a reference to the NVIDIA RTX SDK and NVIDIA in all of your press releases for the applications that were developed with use of the SDK, and you will identify NVIDIA as the provider of \u201cNVIDIA RTX\u2122\u201d (or such other term or phrase as indicated by NVIDIA from time to time).\n\n(d) Identification by NVIDIA. You agree that NVIDIA may identify you on NVIDIA's websites, printed collateral, trade-show displays, and other retail packaging materials as an individual or entity that produces products and services which incorporate the NVIDIA RTX SDK. To the extent that you provide NVIDIA with input or usage requests with regard to the use of your logo or materials, NVIDIA will use commercially reasonable efforts to comply with such requests. For the avoidance of doubt, NVIDIA\u2019s rights pursuant to this section shall survive any expiration or termination of the Agreement with respect to existing applications which incorporate the NVIDIA RTX SDK.\n\n(e) Applications Marketing Material. You may provide NVIDIA with screenshots, imagery, and video footage of applications representative of your use of the NVIDIA RTX SDKs in your application (collectively, \u201cAssets\u201d). You hereby grant to NVIDIA the right to create and display self-promotional demo materials using the Assets, and after release of the application to the public to distribute, sub-license, and use the Assets to promote and market the NVIDIA RTX SDK. To the extent you provide NVIDIA with input or usage requests with regard to the use of your logo or materials, NVIDIA will use commercially reasonable efforts to comply with such requests. For the avoidance of doubt, NVIDIA\u2019s rights pursuant to this section shall survive any termination of the Agreement with respect to applications which incorporate the NVIDIA RTX SDK.\n\n6.2 Trademark Ownership and Licenses. Trademarks are owned and licenses as follows:\n(a) Ownership of Trademarks. Each party owns the trademarks, logos, and trade names (collectively \"Marks\") for their respective products or services, including without limitation in applications, and the NVIDIA RTX SDK. Each party agrees to use the Marks of the other only as permitted in this exhibit.\n\n(b) Trademark License to NVIDIA. You grant to NVIDIA a non-exclusive, non-sub licensable, non-transferable (except as set forth in the assignment provision of the Agreement), worldwide license to refer to you and your applications, and to use your Marks on NVIDIA's marketing materials and on NVIDIA's website (subject to any reasonable conditions of you) solely for NVIDIA\u2019s marketing activities set forth in this exhibit Sections (d)-(e) above. NVIDIA will follow your specifications for your Marks as to style, color, and typeface as reasonably provided to NVIDIA.\n\n(c) Trademark License to You. NVIDIA grants to you a non-exclusive, non-sub licensable, non-transferable (except as set forth in the assignment provision of the Agreement), worldwide license, subject to the terms of this exhibit and the Agreement, to use NVIDIA RTX\u2122, NVIDIA GeForce RTX\u2122 in combination with GeForce products, and/or NVIDIA Quadro RTX\u2122 in combination with Quadro products (collectively, the \u201cNVIDIA Marks\u201d) on your marketing materials and on your website (subject to any reasonable conditions of NVIDIA) solely for your marketing activities set forth in this exhibit Sections 6.1 (a)-(c) above. For the avoidance of doubt, you will not and will not permit others to use any NVIDIA Mark for any other goods or services, or in a way that tarnishes, degrades, disparages or reflects adversely any of the NVIDIA Marks or NVIDIA\u2019s business or reputation, or that dilutes or otherwise harms the value, reputation or distinctiveness of or NVIDIA\u2019s goodwill in any NVIDIA Mark. In addition to the termination rights set forth in the Agreement, NVIDIA may terminate this trademark license at any time upon written notice to you. You will follow NVIDIA's use guidelines and specifications for NVIDIA's Marks as to style, color and typeface as provided in NVIDIA Marks and submit a sample of each proposed use of NVIDIA's Marks at least one (1) weeks prior to the desired implementation of such use to obtain NVIDIA's prior written approval (which approval will not be unreasonably withheld or delayed). If NVIDIA does not respond within ten (10) business days of your submission of such sample, the sample will be deemed unapproved. All goodwill associated with use of NVIDIA Marks will inure to the sole benefit of NVIDIA.\n6.3 Use Guidelines. Use of the NVIDIA Marks is subject to the following guidelines:\n(a) Business Practices. You covenant that you will: (a) conduct business with respect to NVIDIA\u2019s products in a manner that reflects favorably at all times on the good name, goodwill and reputation of such products; (b) avoid deceptive, misleading or unethical practices that are detrimental to NVIDIA, its customers, or end users; (c) make no false or misleading representations with regard to NVIDIA or its products; and (d) not publish or employ or cooperate in the publication or employment of any misleading or deceptive advertising or promotional materials.\n\n(b) No Combination Marks or Similar Marks. You agree not to (a) combine NVIDIA Marks with any other content without NVIDIA\u2019s prior written approval, or (b) use any other trademark, trade name, or other designation of source which creates a likelihood of confusion with NVIDIA Marks.\n\n(c) No Harm to Marks. You agree that you will take such steps as are reasonably necessary to ensure that neither you, nor any person under your control (including your customers), will take or cause to be taken any action that brings NVIDIA or NVIDIA Marks into disrepute. You agree that you will not, directly or indirectly, in any country or governing body, apply to register in your own name, or otherwise attempt to acquire any legal interest in or right in or to, any NVIDIA Mark.\n\n7. Licensing.\nIf the distribution terms in this Agreement are not suitable for your organization, if you want to engage with NVIDIA for marketing of your applications, or for any questions regarding this Agreement, please contact NVIDIA at nvidia-rtx-license-questions@nvidia.com.\n\nNotices\nNotice\nTHE INFORMATION IN THIS GUIDE AND ALL OTHER INFORMATION CONTAINED IN NVIDIA DOCUMENTATION REFERENCED IN THIS GUIDE IS PROVIDED \u201cAS IS.\u201d NVIDIA MAKES NO WARRANTIES, EXPRESSED, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO THE INFORMATION FOR THE PRODUCT, AND EXPRESSLY DISCLAIMS ALL IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE. Notwithstanding any damages that customer might incur for any reason whatsoever, NVIDIA\u2019s aggregate and cumulative liability towards customer for the product described in this guide shall be limited in accordance with the NVIDIA terms and conditions of sale for the product.\n\nTHE NVIDIA PRODUCT DESCRIBED IN THIS GUIDE IS NOT FAULT TOLERANT AND IS NOT DESIGNED, MANUFACTURED OR INTENDED FOR USE IN CONNECTION WITH THE DESIGN, CONSTRUCTION, MAINTENANCE, AND/OR OPERATION OF ANY SYSTEM WHERE THE USE OR A FAILURE OF SUCH SYSTEM COULD RESULT IN A SITUATION THAT THREATENS THE SAFETY OF HUMAN LIFE OR SEVERE PHYSICAL HARM OR PROPERTY DAMAGE (INCLUDING, FOR EXAMPLE, USE IN CONNECTION WITH ANY NUCLEAR, AVIONICS, LIFE SUPPORT OR OTHER LIFE CRITICAL APPLICATION). NVIDIA EXPRESSLY DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR SUCH HIGH RISK USES. NVIDIA SHALL NOT BE LIABLE TO CUSTOMER OR ANY THIRD PARTY, IN WHOLE OR IN PART, FOR ANY CLAIMS OR DAMAGES ARISING FROM SUCH HIGH RISK USES.\n\nNVIDIA makes no representation or warranty that the product described in this guide will be suitable for any specified use without further testing or modification. Testing of all parameters of each product is not necessarily performed by NVIDIA. It is customer\u2019s sole responsibility to ensure the product is suitable and fit for the application planned by customer and to do the necessary testing for the application in order to avoid a default of the application or the product. Weaknesses in customer\u2019s product designs may affect the quality and reliability of the NVIDIA product and may result in additional or different conditions and/or requirements beyond those contained in this guide. NVIDIA does not accept any liability related to any default, damage, costs or problem which may be based on or attributable to: (i) the use of the NVIDIA product in any manner that is contrary to this guide, or (ii) customer product designs.\n\nOther than the right for customer to use the information in this guide with the product, no other license, either expressed or implied, is hereby granted by NVIDIA under this guide. Reproduction of information in this guide is permissible only if reproduction is approved by NVIDIA in writing, is reproduced without alteration, and is accompanied by all associated conditions, limitations, and notices.\n\nTrademarks\nNVIDIA, the NVIDIA logo, and cuBLAS, CUDA, cuDNN, cuFFT, cuSPARSE, DIGITS, DGX, DGX-1, DGX Station, GRID, Jetson, Kepler, NGX, NVIDIA GPU Cloud, Maxwell, NCCL, NVLink, Pascal, Tegra, TensorRT, Tesla and Volta are trademarks and/or registered trademarks of NVIDIA Corporation in the Unites States and other countries. Other company and product names may be trademarks of the respective companies with which they are associated.\n\nCopyright\n\u00a9 2019 NVIDIA Corporation. All rights reserved.", + "json": "nvidia-ngx-eula-2019.json", + "yaml": "nvidia-ngx-eula-2019.yml", + "html": "nvidia-ngx-eula-2019.html", + "license": "nvidia-ngx-eula-2019.LICENSE" + }, + { + "license_key": "nvidia-sdk-eula-v0.11", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nvidia-sdk-eula-v0.11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License Agreement for NVIDIA Software Development Kits\nRelease date: January 28, 2020 \n\n1.1. License \n\n1.1.1. License Grant \n\nSubject to the terms of this Agreement, NVIDIA hereby grants you a non-exclusive, nontransferable \nlicense, without the right to sublicense (except as expressly provided in this \nAgreement) to:\n\n1. \nInstall and use the SDK, \n2. \nModify and create derivative works of sample source code delivered in the SDK, \nand \n3. \nDistribute those portions of the SDK that are identified in this Agreement as \ndistributable, as incorporated in object code format into a software application that \nmeets the distribution requirements indicated in this Agreement. \n\n1.1.2. Distribution Requirements \n\nThese are the distribution requirements for you to exercise the distribution grant:\n1. \nYour application must have material additional functionality, beyond the included \nportions of the SDK. \n2. \nThe distributable portions of the SDK shall only be accessed by your application. \n3. \nThe following notice shall be included in modifications and derivative works of \nsample source code distributed: \u201cThis software contains source code provided by \nNVIDIA Corporation.\u201d \n4. \nUnless a developer tool is identified in this Agreement as distributable, it is \ndelivered for your internal use only. \n5. \nThe terms under which you distribute your application must be consistent with the \nterms of this Agreement, including (without limitation) terms relating to the license \ngrant and license restrictions and protection of NVIDIA\u2019s intellectual property \nrights. Additionally, you agree that you will protect the privacy, security and legal \nrights of your application users. \n6. \nYou agree to notify NVIDIA in writing of any known or suspected distribution or \nuse of the SDK not in compliance with the requirements of this Agreement, and to \nenforce the terms of your agreements with respect to distributed SDK. \n\n1.1.3. Authorized Users \n\nYou may allow employees and contractors of your entity or of your subsidiary(ies) to \naccess and use the SDK from your secure network to perform work on your behalf. \n\nIf you are an academic institution you may allow users enrolled or employed by the \nacademic institution to access and use the SDK from your secure network. \n\nYou are responsible for the compliance with the terms of this Agreement by your \nauthorized users. If you become aware that your authorized users didn\u2019t follow \nthe terms of this Agreement, you agree to take reasonable steps to resolve the noncompliance \nand prevent new occurrences. \n\n1.1.4. Pre-Release SDK \n\nThe SDK versions identified as alpha, beta, preview or otherwise as pre-release, may \nnot be fully functional, may contain errors or design flaws, and may have reduced or \ndifferent security, privacy, accessibility, availability, and reliability standards relative to \ncommercial versions of NVIDIA software and materials. Use of a pre-release SDK may \nresult in unexpected results, loss of data, project delays or other unpredictable damage \nor loss. \n\nYou may use a pre-release SDK at your own risk, understanding that pre-release SDKs \nare not intended for use in production or business-critical systems. \n\nNVIDIA may choose not to make available a commercial version of any pre-release SDK. \nNVIDIA may also choose to abandon development and terminate the availability of a \npre-release SDK at any time without liability. \n\n1.1.5. Updates \n\nNVIDIA may, at its option, make available patches, workarounds or other updates to \nthis SDK. Unless the updates are provided with their separate governing terms, they are \ndeemed part of the SDK licensed to you as provided in this Agreement. You agree that \nthe form and content of the SDK that NVIDIA provides may change without prior notice \nto you. While NVIDIA generally maintains compatibility between versions, NVIDIA \nmay in some cases make changes that introduce incompatibilities in future versions of \nthe SDK. \n\n1.1.6. Third Party Licenses \n\nThe SDK may come bundled with, or otherwise include or be distributed with, third \nparty software licensed by a NVIDIA supplier and/or open source software provided \nunder an open source license. Use of third party software is subject to the third-party \nlicense terms, or in the absence of third party terms, the terms of this Agreement. \nCopyright to third party software is held by the copyright holders indicated in the third-\nparty software or license. \n\n1.1.7. Reservation of Rights \n\nNVIDIA reserves all rights, title, and interest in and to the SDK, not expressly granted to \nyou under this Agreement. \n\n1.2. Limitations \n\nThe following license limitations apply to your use of the SDK:\n1. \nYou may not reverse engineer, decompile or disassemble, or remove copyright or \nother proprietary notices from any portion of the SDK or copies of the SDK. \n2. \nExcept as expressly provided in this Agreement, you may not copy, sell, rent, \nsublicense, transfer, distribute, modify, or create derivative works of any portion of \nthe SDK. For clarity, you may not distribute or sublicense the SDK as a stand-alone \nproduct. \n3. \nUnless you have an agreement with NVIDIA for this purpose, you may not indicate \nthat an application created with the SDK is sponsored or endorsed by NVIDIA. \n4. \nYou may not bypass, disable, or circumvent any encryption, security, digital rights \nmanagement or authentication mechanism in the SDK. \n5. \nYou may not use the SDK in any manner that would cause it to become subject to \nan open source software license. As examples, licenses that require as a condition of \nuse, modification, and/or distribution that the SDK be: \na. \nDisclosed or distributed in source code form; \nb. \nLicensed for the purpose of making derivative works; or \nc. \nRedistributable at no charge. \n6. \nUnless you have an agreement with NVIDIA for this purpose, you may not use \nthe SDK with any system or application where the use or failure of the system or \napplication can reasonably be expected to threaten or result in personal injury, \ndeath, or catastrophic loss. Examples include use in avionics, navigation, military, \nmedical, life support or other life critical applications. NVIDIA does not design, test \nor manufacture the SDK for these critical uses and NVIDIA shall not be liable to you \nor any third party, in whole or in part, for any claims or damages arising from such \nuses. \n7. \nYou agree to defend, indemnify and hold harmless NVIDIA and its affiliates, and \ntheir respective employees, contractors, agents, officers and directors, from and \nagainst any and all claims, damages, obligations, losses, liabilities, costs or debt, \nfines, restitutions and expenses (including but not limited to attorney\u2019s fees and \ncosts incident to establishing the right of indemnification) arising out of or related \nto your use of the SDK outside of the scope of this Agreement, or not in compliance \nwith its terms. \n\n1.3. Ownership\n1. \nNVIDIA or its licensors hold all rights, title and interest in and to the SDK and its \nmodifications and derivative works, including their respective intellectual property \nrights, subject to your rights described in this section. This SDK may include \nsoftware and materials from NVIDIA\u2019s licensors, and these licensors are intended \nthird party beneficiaries that may enforce this Agreement with respect to their \nintellectual property rights.\n2. \nYou hold all rights, title and interest in and to your applications and your derivative \nworks of the sample source code delivered in the SDK, including their respective \nintellectual property rights, subject to NVIDIA\u2019s rights described in this section. \n3. \nYou may, but don\u2019t have to, provide to NVIDIA suggestions, feature requests \nor other feedback regarding the SDK, including possible enhancements or \nmodifications to the SDK. For any feedback that you voluntarily provide, you \nhereby grant NVIDIA and its affiliates a perpetual, non-exclusive, worldwide, \nirrevocable license to use, reproduce, modify, license, sublicense (through multiple \ntiers of sublicensees), and distribute (through multiple tiers of distributors) it \nwithout the payment of any royalties or fees to you. NVIDIA will use feedback \nat its choice. NVIDIA is constantly looking for ways to improve its products, \nso you may send feedback to NVIDIA through the developer portal at https:// \ndeveloper.nvidia.com. \n\n1.4. No Warranties \n\nTHE SDK IS PROVIDED BY NVIDIA \u201cAS IS\u201d AND \u201cWITH ALL FAULTS.\u201d TO \nTHE MAXIMUM EXTENT PERMITTED BY LAW, NVIDIA AND ITS AFFILIATES \nEXPRESSLY DISCLAIM ALL WARRANTIES OF ANY KIND OR NATURE, WHETHER \nEXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY \nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, \nTITLE, NON-INFRINGEMENT, OR THE ABSENCE OF ANY DEFECTS THEREIN, \nWHETHER LATENT OR PATENT. NO WARRANTY IS MADE ON THE BASIS OF \nTRADE USAGE, COURSE OF DEALING OR COURSE OF TRADE. \n\n1.5. Limitation of Liability \n\nTO THE MAXIMUM EXTENT PERMITTED BY LAW, NVIDIA AND ITS AFFILIATES \nSHALL NOT BE LIABLE FOR ANY SPECIAL, INCIDENTAL, PUNITIVE OR \nCONSEQUENTIAL DAMAGES, OR ANY LOST PROFITS, LOSS OF USE, LOSS OF \nDATA OR LOSS OF GOODWILL, OR THE COSTS OF PROCURING SUBSTITUTE \nPRODUCTS, ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT \nOR THE USE OR PERFORMANCE OF THE SDK, WHETHER SUCH LIABILITY \nARISES FROM ANY CLAIM BASED UPON BREACH OF CONTRACT, BREACH \nOF WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR \nANY OTHER CAUSE OF ACTION OR THEORY OF LIABILITY. IN NO EVENT WILL \nNVIDIA\u2019S AND ITS AFFILIATES TOTAL CUMULATIVE LIABILITY UNDER OR \nARISING OUT OF THIS AGREEMENT EXCEED US$10.00. THE NATURE OF THE \nLIABILITY OR THE NUMBER OF CLAIMS OR SUITS SHALL NOT ENLARGE OR \nEXTEND THIS LIMIT. \n\nThese exclusions and limitations of liability shall apply regardless if NVIDIA or its \naffiliates have been advised of the possibility of such damages, and regardless of \nwhether a remedy fails its essential purpose. These exclusions and limitations of liability \nform an essential basis of the bargain between the parties, and, absent any of these \nexclusions or limitations of liability, the provisions of this Agreement, including, without \nlimitation, the economic terms, would be substantially different. \n\n1.6. Termination\n1. \nThis Agreement will continue to apply until terminated by either you or NVIDIA as \ndescribed below. \n2. \nIf you want to terminate this Agreement, you may do so by stopping to use the SDK. \n3. \nNVIDIA may, at any time, terminate this Agreement if: \na. \n(i) you fail to comply with any term of this Agreement and the non-compliance \nis not fixed within thirty (30) days following notice from NVIDIA (or \nimmediately if you violate NVIDIA\u2019s intellectual property rights); \nb. \n(ii) you commence or participate in any legal proceeding against NVIDIA with \nrespect to the SDK; or \nc. \n(iii) NVIDIA decides to no longer provide the SDK in a country or, in NVIDIA\u2019s \nsole discretion, the continued use of it is no longer commercially viable. \n4. \nUpon any termination of this Agreement, you agree to promptly discontinue \nuse of the SDK and destroy all copies in your possession or control. Your prior \ndistributions in accordance with this Agreement are not affected by the termination \nof this Agreement. Upon written request, you will certify in writing that you have \ncomplied with your commitments under this section. Upon any termination of this \nAgreement all provisions survive except for the license grant provisions. \n\n1.7. General \n\nIf you wish to assign this Agreement or your rights and obligations, including by \nmerger, consolidation, dissolution or operation of law, contact NVIDIA to ask for \npermission. Any attempted assignment not approved by NVIDIA in writing shall be \nvoid and of no effect. NVIDIA may assign, delegate or transfer this Agreement and its \nrights and obligations, and if to a non-affiliate you will be notified. \n\nYou agree to cooperate with NVIDIA and provide reasonably requested information to \nverify your compliance with this Agreement. \n\nThis Agreement will be governed in all respects by the laws of the United States and of \nthe State of Delaware as those laws are applied to contracts entered into and performed \nentirely within Delaware by Delaware residents, without regard to the conflicts of laws \nprinciples. The United Nations Convention on Contracts for the International Sale of \nGoods is specifically disclaimed. You agree to all terms of this Agreement in the English \nlanguage. \n\nThe state or federal courts residing in Santa Clara County, California shall have exclusive \njurisdiction over any dispute or claim arising out of this Agreement. Notwithstanding \nthis, you agree that NVIDIA shall still be allowed to apply for injunctive remedies or an \nequivalent type of urgent legal relief in any jurisdiction. \n\nIf any court of competent jurisdiction determines that any provision of this Agreement is \nillegal, invalid or unenforceable, such provision will be construed as limited to the extent \nnecessary to be consistent with and fully enforceable under the law and the remaining \nprovisions will remain in full force and effect. Unless otherwise specified, remedies are \ncumulative. \n\nEach party acknowledges and agrees that the other is an independent contractor in the \nperformance of this Agreement. \n\nThe SDK has been developed entirely at private expense and is \u201ccommercial items\u201d \nconsisting of \u201ccommercial computer software\u201d and \u201ccommercial computer software \ndocumentation\u201d provided with RESTRICTED RIGHTS. Use, duplication or disclosure \nby the U.S. Government or a U.S. Government subcontractor is subject to the restrictions \nin this Agreement pursuant to DFARS 227.7202-3(a) or as set forth in subparagraphs \n(c)(1) and (2) of the Commercial Computer Software - Restricted Rights clause at \nFAR 52.227-19, as applicable. Contractor/manufacturer is NVIDIA, 2788 San Tomas \nExpressway, Santa Clara, CA 95051. \n\nThe SDK is subject to United States export laws and regulations. You agree that you will \nnot ship, transfer or export the SDK into any country, or use the SDK in any manner, \nprohibited by the United States Bureau of Industry and Security or economic sanctions \nregulations administered by the U.S. Department of Treasury\u2019s Office of Foreign Assets \nControl (OFAC), or any applicable export laws, restrictions or regulations. These \nlaws include restrictions on destinations, end users and end use. By accepting this \nAgreement, you confirm that you are not a resident or citizen of any country currently \nembargoed by the U.S. and that you are not otherwise prohibited from receiving the \nSDK. \n\nAny notice delivered by NVIDIA to you under this Agreement will be delivered via \nmail, email or fax. You agree that any notices that NVIDIA sends you electronically \nwill satisfy any legal communication requirements. Please direct your legal notices or \nother correspondence to NVIDIA Corporation, 2788 San Tomas Expressway, Santa Clara, \nCalifornia 95051, United States of America, Attention: Legal Department. \n\nThis Agreement and any exhibits incorporated into this Agreement constitute the \nentire agreement of the parties with respect to the subject matter of this Agreement \nand supersede all prior negotiations or documentation exchanged between the parties \n\nwww.nvidia.com \nEnd User License Agreements (EULA) \nDR-06739-001_v01_v11.0", + "json": "nvidia-sdk-eula-v0.11.json", + "yaml": "nvidia-sdk-eula-v0.11.yml", + "html": "nvidia-sdk-eula-v0.11.html", + "license": "nvidia-sdk-eula-v0.11.LICENSE" + }, + { + "license_key": "nvidia-video-codec-agreement", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nvidia-video-codec-agreement", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "NVIDIA VIDEO CODEC SDK LICENSE AGREEMENT (\u201cAgreement\u201d)\n\nBY DOWNLOADING, INSTALLING OR USING THE SOFTWARE AND OTHER AVAILABLE MATERIALS, YOU (\u201cLICENSEE\u201d) AGREE TO BE BOUND BY THE FOLLOWING TERMS AND CONDITIONS OF THIS AGREEMENT. If Licensee does not agree to the terms and condition of this Agreement, THEN do not downLOAD, INSTALL OR USE the SOFTWARE AND MATERIALS.\n\nThe materials available for download to Licensees may include software in both sample source code (\"Source Code\") and object code (\"Object Code\") versions (collectively, the \u201cSoftware\u201d), documentation and other materials (collectively, these code and materials referred to herein as \"Licensed Materials\"). Except as expressly indicated herein, all terms and conditions of this Agreement apply to all of the Licensed Materials.\n\nExcept as expressly set forth herein, NVIDIA owns all of the Licensed Materials and makes them available to Licensee only under the terms and conditions set forth in this Agreement.\n\nLicense: Subject to Licensee\u2019s compliance with the terms of this Agreement, NVIDIA grants to Licensee a nonexclusive, non-transferable, worldwide, royalty-free, fully paid-up license and right to install, use, reproduce, display, perform, modify the Source Code of the Software, and to prepare and have prepared derivative works thereof, and distribute the Software and derivative works thereof (in object code only) as integrated in Licensee software products solely for use with supported NVIDIA GPU hardware products as specified in the accompanying release notes. The following terms apply to the Licensed Material:\n\nDerivative Works: Subject to the License Grant Back below, Licensee shall own any Derivative Works it creates directly to the Source Code that integrates with Licensee\u2019s software product (\"Modification(s)\") subject to NVIDIA\u2019s ownership of the underlying Source Code and all intellectual property rights therein. \n\nDistribution: Licensee may distribute the Software (in object code form) integrated with Licensee software products only to Licensee\u2019s authorized distributors, resellers, and others in Licensee\u2019s distribution chain for Licensee product and end users and grant to such third party a sublicense to use the Software under a written, legally enforceable agreement that has the effect of protecting the Software and the rights of NVIDIA under terms no less restrictive than this Agreement.\n\nLimitations: Unless otherwise authorized in the Agreement, Licensee shall not otherwise assign, sublicense, lease, or in any other way transfer or disclose Software to any third party. Licensee agrees not to disassemble, decompile or reverse engineer the Object Code or use or modify any of the Licensed Materials to enable screen scraping, data scraping, or any other activity with the purpose of capturing copyright protected content in violation of a third party party\u2019s intellectual property or other proprietary rights. Licensee shall indemnify NVIDIA for any and all claims, liabilities, damages, expenses and costs arising from Licensee\u2019s breach of the foregoing limitations. \n\nLicense Grant Back: Licensee hereby grants to NVIDIA and its affiliates a worldwide, non-exclusive, irrevocable, perpetual, sublicenseable (through multiple tiers of sublicensees), royalty-free and fully paid-up right and license to the Modification(s) created by or on behalf of Licensee so that NVIDIA may copy, modify, create derivatives works thereof, to use, have used, import, make, have made, sell, offer to sell, sublicense (through multiple tiers of sublicensees), distribute (through multiple tiers of distributors) such derivative work(s) on a stand-alone basis or as incorporated into the Licensed Materials or other related technologies. For the sake of clarity, NVIDIA is not prohibited or otherwise restricted from independently developing new features or functionality with respect to the Licensed Materials\n\nNo Other License: No rights or licenses with respect to any proprietary information or patent, copyright, trade secret or other intellectual property right owned or controlled by NVIDIA are granted by NVIDIA to Licensee under this Agreement, expressly or by implication, except as expressly provided in this Agreement. \n\nConfidentiality: If applicable, any exchange of Confidential Information (as defined in the NDA) shall be made pursuant to the terms and conditions of a separately signed Non-Disclosure Agreement (\u201cNDA\u201d) by and between NVIDIA and You. For the sake of clarity, You agree that (a) the Software (in source code form); and (b) Your use of the Software is considered Confidential Information of NVIDIA.\n\nIf You wish to have a third party consultant or subcontractor (\"Contractor\") perform work on Your behalf which involves access to or use of Software, You shall obtain a written confidentiality agreement from the Contractor which contains terms and obligations with respect to access to or use of Software no less restrictive than those set forth in this Agreement and excluding any distribution or sublicense rights, and use for any other purpose than permitted in this Agreement. Otherwise, You shall not disclose the terms or existence of this Agreement or use NVIDIA's name in any publications, advertisements, or other announcements without NVIDIA's prior written consent. Unless otherwise provided in this Agreement, You do not have any rights to use any NVIDIA trademarks or logos.\n\nIntellectual Property Ownership: Except as expressly licensed to Licensee under this Agreement, NVIDIA reserves all right, title and interest, including but not limited to all intellectual property rights, in and to the Licensed Materials and any derivative work(s) made thereto. The algorithms, structure, organization and Source Code are the valuable trade secrets and confidential information of NVIDIA.\n\nLicensee acknowledges and agrees that it is Licensee\u2019s sole responsibility to obtain any, additional, third party licenses required to make, have made, use, have used, sell, import, and offer for sale Licensee products that include or incorporate any third party technology such as operating systems, audio and/or video encoders and decoders or any technology from, including but not limited to, Microsoft, Thomson, Fraunhofer IIS, Sisvel S.p.A., MPEG-LA, and Coding Technologies (\u201cThird Party Technology\u201d). Licensee acknowledges and agrees that NVIDIA has not granted to Licensee under this Agreement any necessary patent rights with respect to the Third Party Technology. As such, Licensee\u2019s use of the Third Party Technology may be subject to further restrictions and terms and conditions. Licensee acknowledges and agrees that Licensee is solely and exclusively responsible for obtaining any and all authorizations and licenses required for the use, distribution and/or incorporation of the Third Party Technology.\n\nLicensee shall, at its own expense fully indemnify, hold harmless, defend and/or settle any claim, suit or proceeding that is asserted by a third party against NVIDIA and its officers, employees or agents, to the extent such claim, suit or proceeding arising from or related to Licensee\u2019s failure to fully satisfy and/or comply with the third party licensing obligations related to the Third Party Technology (a \u201cClaim\u201d). In the event of a Claim, Licensee agrees to: (a) pay all damages or settlement amounts, which shall not be finalized without the prior written consent of NVIDIA, (including other reasonable costs incurred by NVIDIA, including reasonable attorneys fees, in connection with enforcing this paragraph); (b) reimburse NVIDIA for any licensing fees and/or penalties incurred by NVIDIA in connection with a Claim; and (c) immediately procure/satisfy the third party licensing obligations before using the Software pursuant to this Agreement.\n\nTerm of Agreement: This Agreement shall become effective from the date of the initial download and shall remain in effect for one year thereafter, unless terminated as provided below. Unless either party notifies the other party of its intent to terminate this Agreement at least thirty (30) days prior to the end of the Initial Term or the applicable renewal period, this Agreement will be automatically renewed for one (1) year renewal periods thereafter, unless terminated in accordance with the \u201cTermination\u201d provision of this Agreement.\n\nNVIDIA may terminate this Agreement (and with it, all of Licensee\u2019s right to the Licensed Materials) if (i) Licensee fails to comply with any of the terms and conditions of this Agreement and if the breach is not cured within thirty (30) days after notice thereof. Upon expiration or termination of this Agreement pursuant to this paragraph, Licensee shall immediately cease using the Licensed Materials and return or destroy or copies thereof in its possession.\n\nDefensive Suspension:If Licensee commences or participates in any legal proceeding against NVIDIA, then NVIDIA may, in its sole discretion, suspend or terminate all license grants and any other rights provided under this Agreement.\n\nNo Support: NVIDIA has no obligation to support or to continue providing or updating any of the Licensed Materials.\n\nNo Warranty: THE LICENSED MATERIALS PROVIDED BY NVIDIA TO LICENSEE HEREUNDER ARE PROVIDED \"AS IS.\" NVIDIA DISCLAIMS ALL WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n\nLimitation of Liability: NVIDIA SHALL NOT BE LIABLE TO LICENSEE, LICENSEE\u2019S CUSTOMERS, OR ANY OTHER PERSON OR ENTITY CLAIMING THROUGH OR UNDER LICENSEE FOR ANY LOSS OF PROFITS, INCOME, SAVINGS, OR ANY OTHER CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE, DIRECT OR INDIRECT DAMAGES (WHETHER IN AN ACTION IN CONTRACT, TORT OR BASED ON A WARRANTY), EVEN IF NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF THE ESSENTIAL PURPOSE OF ANY LIMITED REMEDY. IN NO EVENT SHALL NVIDIA\u2019S AGGREGATE LIABILITY TO LICENSEE OR ANY OTHER PERSON OR ENTITY CLAIMING THROUGH OR UNDER LICENSEE EXCEED THE AMOUNT OF MONEY ACTUALLY PAID BY LICENSEE TO NVIDIA FOR THE LICENSED MATERIALS.\n\nApplicable Law and Jurisdiction: This Agreement shall be deemed to have been made in, and shall be construed pursuant to, the laws of the State of Delaware. The state and/or federal courts residing in Santa Clara County, California shall have exclusive jurisdiction over any dispute or claim arising out of this Agreement. The United Nations Convention on Contracts for the International Sale of Goods is specifically disclaimed.\n\nFeedback:Licensee may, but is not obligated to, provide to NVIDIA any suggestions, comments and feedback regarding the Licensed Materials that are delivered by NVIDIA to Licensee under this Agreement (collectively, \u201cLicensee Feedback\u201d). NVIDIA may use and include any Licensee Feedback that Licensee voluntarily provides to improve the Licensed Materials or other related NVIDIA technologies. Accordingly, if Licensee provides Licensee Feedback, Licensee grants NVIDIA and its licensees a perpetual, irrevocable, worldwide, royalty-free, fully paid-up license grant to freely use, have used, sell, modify, reproduce, transmit, license, sublicense (through multiple tiers of sublicensees), distribute (through multiple tiers of distributors), and otherwise commercialize the Licensee Feedback in the Licensed Materials or other related technologies. \n\nRESTRICTED RIGHTS NOTICE: Licensed Materials has been developed entirely at private expense and is commercial computer software provided with RESTRICTED RIGHTS. Use, duplication or disclosure by the U.S. Government or a U.S. Government subcontractor is subject to the restrictions set forth in the license agreement under which Licensed Materials was obtained pursuant to DFARS 227.7202-3(a) or as set forth in subparagraphs (c)(1) and (2) of the Commercial Computer Software - Restricted Rights clause at FAR 52.227-19, as applicable. Contractor/manufacturer is NVIDIA, 2701 San Tomas Expressway, Santa Clara, CA 95050.\n\nMiscellaneous: If any provision of this Agreement is inconsistent with, or cannot be fully enforced under, the law, such provision will be construed as limited to the extent necessary to be consistent with and fully enforceable under the law. This Agreement is the final, complete and exclusive agreement between the parties relating to the subject matter hereof, and supersedes all prior or contemporaneous understandings and agreements relating to such subject matter, whether oral or written. This Agreement is solely between NVIDIA and Licensee. There are no third party beneficiaries, express or implied, to this Agreement. This Agreement may only be modified in writing signed by an authorized officer of NVIDIA. Licensee agrees that it will not ship, transfer or export the Licensed Materials into any country, or use the Licensed Materials in any manner, prohibited by the United States Bureau of Industry and Security or any export laws, restrictions or regulations. This Agreement, and Licensee\u2019s rights and obligations herein, may not be assigned, subcontracted, delegated, or otherwise transferred by Licensee without NVIDIA\u2019s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void. The terms of this Agreement shall be binding upon assignees.", + "json": "nvidia-video-codec-agreement.json", + "yaml": "nvidia-video-codec-agreement.yml", + "html": "nvidia-video-codec-agreement.html", + "license": "nvidia-video-codec-agreement.LICENSE" + }, + { + "license_key": "nwhm", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nwhm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "If you are not a white heterosexual male you are permitted to copy, sell and use this work in any manner you choose without need to include any attribution you do not see fit. You are asked as a courtesy to retain this license in any derivatives but you are not required. If you are a white heterosexual male you are provided the same permissions (reuse, modification, resale) but are required to include this license in any documentation and any public facing derivative. You are also required to include attribution to the original author or to an author responsible for redistribution of a derivative.", + "json": "nwhm.json", + "yaml": "nwhm.yml", + "html": "nwhm.html", + "license": "nwhm.LICENSE" + }, + { + "license_key": "nxp-firmware-patent", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nxp-firmware-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution. Reproduction and redistribution in binary form, without\nmodification, for use solely in conjunction with a NXP\nchipset, is permitted provided that the following conditions are met:\n\n . Redistributions must reproduce the above copyright notice and the following\n disclaimer in the documentation and/or other materials provided with the\n distribution.\n\n . Neither the name of NXP nor the names of its suppliers\n may be used to endorse or promote products derived from this Software\n without specific prior written permission.\n\n . No reverse engineering, decompilation, or disassembly of this Software is\n permitted.\n\nLimited patent license. NXP (.Licensor.) grants you\n(.Licensee.) a limited, worldwide, royalty-free, non-exclusive license under\nthe Patents to make, have made, use, import, offer to sell and sell the\nSoftware. No hardware per se is licensed hereunder.\nThe term .Patents. as used in this agreement means only those patents or patent\napplications owned solely and exclusively by Licensor as of the date of\nLicensor.s submission of the Software and any patents deriving priority (i.e.,\nhaving a first effective filing date) therefrom. The term .Software. as used in\nthis agreement means the firmware image submitted by Licensor, under the terms\nof this license, to git://git.kernel.org/pub/scm/linux/kernel/git/firmware/\nlinux-firmware.git.\nNotwithstanding anything to the contrary herein, Licensor does not grant and\nLicensee does not receive, by virtue of this agreement or the Licensor's\nsubmission of any Software, any license or other rights under any patent or\npatent application owned by any affiliate of Licensor or any other entity\n(other than Licensor), whether expressly, impliedly, by virtue of estoppel or\nexhaustion, or otherwise.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\nTHE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\nOF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\nUSE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "nxp-firmware-patent.json", + "yaml": "nxp-firmware-patent.yml", + "html": "nxp-firmware-patent.html", + "license": "nxp-firmware-patent.LICENSE" + }, + { + "license_key": "nxp-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nxp-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in binary form is permitted provided that the following\nconditions are met:\n\n1. Redistributions must reproduce the above copyright notice, this list of\nconditions and the following disclaimer in the documentation and/or other\nmaterials provided with the distribution.\n\n2. Redistribution and use shall be used only with NXP B.V. silicon products.\nAny other use, reproduction, modification, translation, or compilation of the\nSoftware is prohibited.\n\n3. No reverse engineering, decompilation, or disassembly is permitted.\n\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THIS SOFTWARE IS PROVIDED\n\"AS IS\" WITHOUT WARRANTY OF ANY KIND, INCLUDING, WITHOUT LIMITATION, ANY EXPRESS\nOR IMPLIED WARRANTIES OF MERCHANTABILITY, ACCURACY, FITNESS OR SUFFICIENCY FOR A\nPARTICULAR PURPOSE, SATISFACTORY QUALITY, CORRESPONDENCE WITH DESCRIPTION, QUIET\nENJOYMENT OR NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY RIGHTS.\nNXP B.V., ITS AFFILIATES AND THEIR SUPPLIERS DISCLAIM ANY WARRANTY THAT THE\nDELIVERABLES WILL OPERATE WITHOUT INTERRUPTION OR BE ERROR-FREE.", + "json": "nxp-linux-firmware.json", + "yaml": "nxp-linux-firmware.yml", + "html": "nxp-linux-firmware.html", + "license": "nxp-linux-firmware.LICENSE" + }, + { + "license_key": "nxp-mc-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nxp-mc-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Software License Agreement (\"Agreement\")\n\nANY USE, REPRODUCTION, OR DISTRIBUTION OF THE ACCOMPANYING BINARY SOFTWARE\nCONSTITUTES LICENSEE'S ACCEPTANCE OF THE TERMS AND CONDITIONS OF THIS AGREEMENT.\n\nLicensed Software. \"Binary Software\" means software in binary form specified in\nANNEX A. Subject to the terms and conditions of this Agreement, NXP USA, Inc.\n(\"Licensor\"), grants to you (\"Licensee\") a worldwide, non-exclusive, and\nroyalty-free license to reproduce and distribute the Binary Software in its\ncomplete and unmodified binary form as provided by Licensor, for use solely in\nconjunction with a programmable processing unit supplied directly or indirectly\nfrom Licensor.\n\nRestrictions. Licensee must reproduce the Licensor copyright notice above with\neach binary copy of the Binary Software or in the accompanying documentation.\nLicensee must not reverse engineer, decompile, disassemble or modify in any way\nthe Binary Software. Licensee must not use the Binary Software in violation of\nany applicable law or regulation. This Agreement shall automatically terminate\nupon Licensee's breach of any term or condition of this Agreement in which case,\nLicensee shall destroy all copies of the Binary Software. Neither the name of\nLicensor nor the names of its suppliers may be used to endorse or promote\nproducts derived from this Binary Software without specific prior written\npermission.\n\nDisclaimer. TO THE MAXIMUM EXTENT PERMITTED BY LAW, LICENSOR EXPRESSLY\nDISCLAIMS ANY WARRANTY FOR THE BINARY SOFTWARE. THE BINARY SOFTWARE IS PROVIDED\n\"AS IS\", WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING\nWITHOUT LIMITATION THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE, OR NON-INFRINGEMENT. WITHOUT LIMITING THE GENERALITY OF THE\nFOREGOING, LICENSOR DOES NOT WARRANT THAT THE BINARY SOFTWARE IS ERROR-FREE OR\nWILL OPERATE WITHOUT INTERRUPTION, AND LICENSOR GRANTS NO WARRANTY REGARDING ITS\nUSE OR THE RESULTS THEREFROM, INCLUDING ITS CORRECTNESS, ACCURACY, OR\nRELIABILITY.\n\nLimitation of Liability. IN NO EVENT WILL LICENSOR, OR ANY OF LICENSOR'S\nLICENSORS HAVE ANY LIABILITY HEREUNDER FOR ANY INDIRECT, SPECIAL, OR\nCONSEQUENTIAL DAMAGES, HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER\nFOR BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, ARISING OUT\nOF THIS AGREEMENT, INCLUDING DAMAGES FOR LOSS OF PROFITS, OR THE COST OF\nPROCUREMENT OF SUBSTITUTE GOODS, EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES. LICENSOR'S TOTAL LIABILITY FOR ALL COSTS, DAMAGES,\nCLAIMS, OR LOSSES WHATSOEVER ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT\nOR THE BINARY SOFTWARE SUPPLIED UNDER THIS AGREEMENT IS LIMITED TO THE AGGREGATE\nAMOUNT PAID BY LICENSEE TO LICENSOR IN CONNECTION WITH THE BINARY SOFTWARE TO\nWHICH LOSSES OR DAMAGES ARE CLAIMED.\n\nTrade Compliance. Licensee shall comply with all applicable export and import\ncontrol laws and regulations including but not limited to the US Export\nAdministration Regulation (including prohibited party lists issued by other\nfederal governments), Catch-all regulations and all national and international\nembargoes. Licensee further agrees that it will not knowingly transfer, divert,\nexport or re-export, directly or indirectly, any product, software, including\nsoftware source code, or technology restricted by such regulations or by other\napplicable national regulations, received from Licensor under this Agreement,\nor any direct product of such software or technical data to any person, firm,\nentity, country or destination to which such transfer, diversion, export or\nre-export is restricted or prohibited, without obtaining prior written\nauthorization from the applicable competent government authorities to the extent\nrequired by those laws. Licensee acknowledge that the \"restricted encryption\nsoftware\" that is subject to the US Export Administration Regulations (EAR), is\nnot intended for use by a government end user, as defined in part 772 of the\nEAR. This provision shall survive termination or expiration of this Agreement.\n\nAssignment. Licensee may not assign this Agreement without the prior written\nconsent of Licensor. Licensor may assign this Agreement without Licensee's\nconsent.\n\nGoverning Law. This Agreement will be governed by, construed, and enforced in\naccordance with the laws of the State of Texas, USA, without regard to conflicts\nof laws principles, will apply to all matters relating to this Agreement or the\nBinary Software, and Licensee agrees that any litigation will be subject to the\nexclusive jurisdiction of the state or federal courts Texas, USA. The United\nNations Convention on Contracts for the International Sale of Goods will not\napply to this Agreement.\n\nRestrictions, Warranty Disclaimer, Limitation of Liability, Trade Compliance,\nAssignment, Governing Law, and Third Party Terms shall survive termination or\nexpiration of this Agreement.\n\nThird Party Terms. The licensed Binary Software includes the following third\nparty software for which the following terms apply:\n\nLibfdt - Flat Device Tree manipulation\nCopyright (c) 2006 David Gibson, IBM Corporation\nAll rights reserved.\n\nRedistributions must reproduce the above copyright notice, this list of\nconditions and the following disclaimer in the documentation and/or other\nmaterials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLibElf\nCopyright (c) 2006,2008-2011 Joseph Koshy\nAll rights reserved.\n\nRedistributions must reproduce the above copyright notice, this list of\nconditions and the following disclaimer in the documentation and/or other\nmaterials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\nANNEX A\nBINARY SOFTWARE\nOnly software in binary form may be provided under this Agreement", + "json": "nxp-mc-firmware.json", + "yaml": "nxp-mc-firmware.yml", + "html": "nxp-mc-firmware.html", + "license": "nxp-mc-firmware.LICENSE" + }, + { + "license_key": "nxp-microcontroller-proprietary", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nxp-microctl-proprietary", + "other_spdx_license_keys": [ + "LicenseRef-scancode-nxp-microcontroller-proprietary" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Software that is described herein is for illustrative purposes only\nwhich provides customers with programming information regarding the\nproducts. This software is supplied \"\"AS IS\"\" without any warranties.\nNXP Semiconductors assumes no responsibility or liability for the\nuse of the software, conveys no license or title under any patent,\ncopyright, or mask work right to the product. NXP Semiconductors\nreserves the right to make changes in the software without\nnotification. NXP Semiconductors also make no representation or\nwarranty that such application will be suitable for the specified\nuse without further testing or modification.\n\nPermission to use, copy, modify, and distribute this software and its\ndocumentation is hereby granted, under NXP Semiconductors' and its\nlicensor's relevant copyrights in the software, without fee, provided that it\nis used in conjunction with NXP Semiconductors microcontrollers. This\ncopyright, permission, and disclaimer notice must appear in all copies of\nthis code.", + "json": "nxp-microcontroller-proprietary.json", + "yaml": "nxp-microcontroller-proprietary.yml", + "html": "nxp-microcontroller-proprietary.html", + "license": "nxp-microcontroller-proprietary.LICENSE" + }, + { + "license_key": "nxp-warranty-disclaimer", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nxp-warranty-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Software that is described herein is for illustrative purposes only\nwhich provides customers with programming information regarding the\nproducts. This software is supplied \"AS IS\" without any warranties.\nNXP Semiconductors assumes no responsibility or liability for the\nuse of the software, conveys no license or title under any patent,\ncopyright, or mask work right to the product. NXP Semiconductors\nreserves the right to make changes in the software without\nnotification. NXP Semiconductors also make no representation or\nwarranty that such application will be suitable for the specified\nuse without further testing or modification.", + "json": "nxp-warranty-disclaimer.json", + "yaml": "nxp-warranty-disclaimer.yml", + "html": "nxp-warranty-disclaimer.html", + "license": "nxp-warranty-disclaimer.LICENSE" + }, + { + "license_key": "nysl-0.9982", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nysl-0.9982", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "NYSL Version 0.9982 (en) (Unofficial)\n----------------------------------------\nA. This software is \"Everyone'sWare\". It means:\n Anybody who has this software can use it as if he/she is\n the author.\n\n A-1. Freeware. No fee is required.\n A-2. You can freely redistribute this software.\n A-3. You can freely modify this software. And the source\n may be used in any software with no limitation.\n A-4. When you release a modified version to public, you\n must publish it with your name.\n\nB. The author is not responsible for any kind of damages or loss\n while using or misusing this software, which is distributed\n \"AS IS\". No warranty of any kind is expressed or implied.\n You use AT YOUR OWN RISK.\n\nC. Copyrighted to \n\nD. Above three clauses are applied both to source and binary\n form of this software.", + "json": "nysl-0.9982.json", + "yaml": "nysl-0.9982.yml", + "html": "nysl-0.9982.html", + "license": "nysl-0.9982.LICENSE" + }, + { + "license_key": "nysl-0.9982-jp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nysl-0.9982-jp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "NYSL Version 0.9982\n----------------------------------------\n\nA. \u672c\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u306f Everyone'sWare \u3067\u3059\u3002\u3053\u306e\u30bd\u30d5\u30c8\u3092\u624b\u306b\u3057\u305f\u4e00\u4eba\u4e00\u4eba\u304c\u3001\n \u3054\u81ea\u5206\u306e\u4f5c\u3063\u305f\u3082\u306e\u3092\u6271\u3046\u306e\u3068\u540c\u3058\u3088\u3046\u306b\u3001\u81ea\u7531\u306b\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u51fa\u6765\u307e\u3059\u3002\n\n A-1. \u30d5\u30ea\u30fc\u30a6\u30a7\u30a2\u3067\u3059\u3002\u4f5c\u8005\u304b\u3089\u306f\u4f7f\u7528\u6599\u7b49\u3092\u8981\u6c42\u3057\u307e\u305b\u3093\u3002\n A-2. \u6709\u6599\u7121\u6599\u3084\u5a92\u4f53\u306e\u5982\u4f55\u3092\u554f\u308f\u305a\u3001\u81ea\u7531\u306b\u8ee2\u8f09\u30fb\u518d\u914d\u5e03\u3067\u304d\u307e\u3059\u3002\n A-3. \u3044\u304b\u306a\u308b\u7a2e\u985e\u306e \u6539\u5909\u30fb\u4ed6\u30d7\u30ed\u30b0\u30e9\u30e0\u3067\u306e\u5229\u7528 \u3092\u884c\u3063\u3066\u3082\u69cb\u3044\u307e\u305b\u3093\u3002\n A-4. \u5909\u66f4\u3057\u305f\u3082\u306e\u3084\u90e8\u5206\u7684\u306b\u4f7f\u7528\u3057\u305f\u3082\u306e\u306f\u3001\u3042\u306a\u305f\u306e\u3082\u306e\u306b\u306a\u308a\u307e\u3059\u3002\n \u516c\u958b\u3059\u308b\u5834\u5408\u306f\u3001\u3042\u306a\u305f\u306e\u540d\u524d\u306e\u4e0b\u3067\u884c\u3063\u3066\u4e0b\u3055\u3044\u3002\n\nB. \u3053\u306e\u30bd\u30d5\u30c8\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u751f\u3058\u305f\u640d\u5bb3\u7b49\u306b\u3064\u3044\u3066\u3001\u4f5c\u8005\u306f\n \u8cac\u4efb\u3092\u8ca0\u308f\u306a\u3044\u3082\u306e\u3068\u3057\u307e\u3059\u3002\u5404\u81ea\u306e\u8cac\u4efb\u306b\u304a\u3044\u3066\u3054\u5229\u7528\u4e0b\u3055\u3044\u3002\n\nC. \u8457\u4f5c\u8005\u4eba\u683c\u6a29\u306f \u306b\u5e30\u5c5e\u3057\u307e\u3059\u3002\u8457\u4f5c\u6a29\u306f\u653e\u68c4\u3057\u307e\u3059\u3002\n\nD. \u4ee5\u4e0a\u306e\uff13\u9805\u306f\u3001\u30bd\u30fc\u30b9\u30fb\u5b9f\u884c\u30d0\u30a4\u30ca\u30ea\u306e\u53cc\u65b9\u306b\u9069\u7528\u3055\u308c\u307e\u3059\u3002", + "json": "nysl-0.9982-jp.json", + "yaml": "nysl-0.9982-jp.yml", + "html": "nysl-0.9982-jp.html", + "license": "nysl-0.9982-jp.LICENSE" + }, + { + "license_key": "o-uda-1.0", + "category": "Permissive", + "spdx_license_key": "O-UDA-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Use of Data Agreement v1.0\nThis is the Open Use of Data Agreement, Version 1.0 (the \"O-UDA\"). Capitalized terms are defined in Section 5. Data Provider and you agree as follows:\n\nProvision of the Data\n\n1.1. You may use, modify, and distribute the Data made available to you by the Data Provider under this O-UDA if you follow the O-UDA's terms.\n\n1.2. Data Provider will not sue you or any Downstream Recipient for any claim arising out of the use, modification, or distribution of the Data provided you meet the terms of the O-UDA.\n\n1.3 This O-UDA does not restrict your use, modification, or distribution of any portions of the Data that are in the public domain or that may be used, modified, or distributed under any other legal exception or limitation.\n\nNo Restrictions on Use or Results\n\n2.1. The O-UDA does not impose any restriction with respect to:\n\n2.1.1. the use or modification of Data; or\n\n2.1.2. the use, modification, or distribution of Results.\n\nRedistribution of Data\n\n3.1. You may redistribute the Data under terms of your choice, so long as:\n\n3.1.1. You include with any Data you redistribute all credit or attribution information that you received with the Data, and your terms require any Downstream Recipient to do the same; and\n\n3.1.2. Your terms include a warranty disclaimer and limitation of liability for Upstream Data Providers at least as broad as those contained in Section 4.2 and 4.3 of the O-UDA.\n\nNo Warranty, Limitation of Liability\n\n4.1. Data Provider does not represent or warrant that it has any rights whatsoever in the Data.\n\n4.2. THE DATA IS PROVIDED ON AN \u201cAS IS\u201d 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.\n\n4.3. NEITHER DATA PROVIDER NOR ANY UPSTREAM DATA PROVIDER SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 DATA OR RESULTS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nDefinitions\n\n5.1. \"Data\" means the material you receive under the O-UDA in modified or unmodified form, but not including Results.\n\n5.2. \"Data Provider\" means the source from which you receive the Data and with whom you enter into the O-UDA.\n\n5.3. \"Downstream Recipient\" means any person or persons who receives the Data directly or indirectly from you in accordance with the O-UDA.\n\n5.4. \"Result\" means anything that you develop or improve from your use of Data that does not include more than a de minimis portion of the Data on which the use is based. Results may include de minimis portions of the Data necessary to report on or explain use that has been conducted with the Data, such as figures in scientific papers, but do not include more. Artificial intelligence models trained on Data (and which do not include more than a de minimis portion of Data) are Results.\n\n5.5. \"Upstream Data Providers\" means the source or sources from which the Data Provider directly or indirectly received, under the terms of the O-UDA, material that is included in the Data.", + "json": "o-uda-1.0.json", + "yaml": "o-uda-1.0.yml", + "html": "o-uda-1.0.html", + "license": "o-uda-1.0.LICENSE" + }, + { + "license_key": "o-young-jong", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-o-young-jong", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copying or modifying this code for any purpose is permitted, provided that this\ncopyright notice is preserved in its entirety in all copies or modifications.\n\nNo warranties is provided, as to this code.", + "json": "o-young-jong.json", + "yaml": "o-young-jong.yml", + "html": "o-young-jong.html", + "license": "o-young-jong.LICENSE" + }, + { + "license_key": "oasis-ipr-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oasis-ipr-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Intellectual Property Rights (IPR) Policy\n1. INTRODUCTION\n2. DEFINITIONS\n3. CONFIDENTIALITY\n4. TC FORMATION\n5. CONTRIBUTIONS\n6. LIMITED PATENT COVENANT FOR SPECIFICATION DEVELOPMENT\n7. FEEDBACK\n8. DISCLOSURE\n9. TYPES OF OBLIGATIONS\n10. LICENSING REQUIREMENTS\n11. WITHDRAWAL AND TERMINATION\n12. LIMITATIONS OF LIABILITY\n13. GENERAL\n14. NOTICES\nAppendix A. Feedback License\nAppendix B. Copyright License Grant\n\n\n1. INTRODUCTION\nThe OASIS Intellectual Property Rights (IPR) Policy governs the treatment of intellectual property in the production\nof deliverables by OASIS Open (hereafter referred to as OASIS).\nThis Policy applies to all members of OASIS and their Affiliates (as defined below). The OASIS Board of Directors\nmay amend this Policy at any time in its sole discretion. In the event of such change to this Policy, the Board will\nprovide instructions for transition of membership and Technical Committees to the new Policy; however, no\namendment to this Policy will be effective in less than 60 calendar days from the date that written notice of such\namendment is given to the Member at its address of record with OASIS.\n\n\n2. DEFINITIONS\nEach capitalized term within this document shall have the meaning provided below:\n\n1. Affiliate \u2013 any entity that directly or indirectly controls, is controlled by, or is under common control with,\nanother entity, so long as such control exists. In the event that such control ceases to exist, such Affiliate will\nbe deemed to have withdrawn from OASIS pursuant to the terms set forth in the withdrawal provisions in\nSection 11. For purposes of this definition, with respect to a business entity, control means direct or indirect\nbeneficial ownership of or the right to exercise (i) greater than fifty percent (50%) of the voting stock or\nequity in an entity; or (ii) greater than fifty percent (50%) of the ownership interest representing the right to\nmake the decisions for the subject entity in the event that there is no voting stock or equity.\n\n2. Beneficiary \u2013 any organization, including its Affiliates as defined in this Policy, or individual who benefits\nfrom the OASIS Non-Assertion Covenant with respect to Essential Claims from Obligated Parties for a\nparticular OASIS Standards Final Deliverable. A Beneficiary need not be an OASIS member.\n\n3. Continuing Licensing or Non-Assertion Obligation \u2013 a licensing or non-assertion obligation, of the types\ndefined by Section 9 of this Policy, which survives a TC Party\u2019s withdrawal from an OASIS Technical\nCommittee.\n\n4. Contribution \u2013 any material submitted to an OASIS Technical Committee by a TC Member in writing or\nelectronically, whether in an in-person meeting or in any electronic conference or mailing list maintained by\nOASIS for the OASIS Technical Committee and which is or was proposed for inclusion in an OASIS Deliverable.\n\n5. Contribution Obligation \u2013 a licensing or non-assertion requirement, as described in Section 10 that results\nfrom making a Contribution as described in Section 9.1.\n\n6. Contributor \u2013 a TC Party on whose behalf a Contribution is made by the TC Party\u2019s TC Member.\n\n7. Covered Product \u2013 includes only those specific portions of a product (hardware, software or combinations\nthereof) that (a) implement and are compliant with all Normative Portions of an OASIS Standards Final\nDeliverable produced by a Non-Assertion Mode TC that must be implemented to comply with such\ndeliverable, and (b) to the extent that the product implements one or more optional portions of such\ndeliverable, those portions that implement and are compliant with all Normative Portions that must be\nimplemented to comply with such optional portions of the deliverable.\n\n8. Eligible Person \u2013 one of a class of individuals that include: persons holding individual memberships in\nOASIS, employees or designees of organizational members of OASIS, and such other persons as may be\ndesignated by the OASIS Board of Directors.\n\n9. Essential Claims \u2013 those claims in any patent or patent application in any jurisdiction in the world that\nwould necessarily be infringed by an implementation of those portions of a particular OASIS Standards Final\nDeliverable created within the scope of the TC charter in effect at the time such deliverable was developed.\nA claim is necessarily infringed hereunder only when it is not possible to avoid infringing it because there is\nno non-infringing alternative for implementing the Normative Portions of that particular OASIS Standards\nFinal Deliverable. Existence of a non-infringing alternative shall be judged based on the state of the art at\nthe time the OASIS Standards Final Deliverable is approved.\n\n10. Feedback \u2013 any written or electronic input provided to an OASIS Technical Committee by individuals who\nare not TC Members and which is proposed for inclusion in an OASIS Deliverable. All such Feedback must be\nmade under the terms of the Feedback License (Appendix A).\n\n11. Final Maintenance Deliverable \u2013 Any OASIS Standards Final Deliverable that results entirely from\nMaintenance Activity.\n\n12. IPR Mode \u2013 an element of an OASIS TC charter, which specifies the type of licenses or non-assertion\ncovenants required for any Essential Claims associated with the output produced by a given Technical\nCommittee. This is further described in Section 4.\n\n13. Licensed Products \u2013 include only those specific portions of a Licensee\u2019s products (hardware, software or\ncombinations thereof) that (a) implement and are compliant with all Normative Portions of an OASIS\nStandards Final Deliverable that must be implemented to comply with such deliverable, and (b) to the\nextent that the Licensee\u2019s products implement one or more optional portions of such deliverable, those\nportions of Licensee\u2019s products that implement and are compliant with all Normative Portions that must be\nimplemented to comply with such optional portions of the deliverable.\n\n14. Licensee \u2013 any organization, including its Affiliates as defined in this Policy, or individual that licenses\nEssential Claims from Obligated Parties for a particular OASIS Standards Final Deliverable. Licensees need\nnot be OASIS members.\n\n15. Maintenance Activity \u2013 Any drafting or development work to modify an OASIS Standards Final Deliverable\nthat (a) constitutes only error corrections, bug fixes or editorial formatting changes to the OASIS Standards\nFinal Deliverable; and (b) does not add any feature; and (c) is within the scope of the TC that approved the\nOASIS Standards Final Deliverable (whether or not the work is conducted by the same TC).\n\n16. Normative Portion \u2013 a portion of an OASIS Standards Final Deliverable that must be implemented to\ncomply with such deliverable. If such deliverable defines optional parts, Normative Portions include those\nportions of the optional part that must be implemented if the implementation is to comply with such\noptional part. Examples and/or reference implementations and other specifications or standards that were\ndeveloped outside the TC and which are referenced in the body of a particular OASIS Standards Final\nDeliverable that may be included in such deliverable are not Normative Portions.\n\n17. Non-Assertion Mode TC \u2013 an OASIS TC that is chartered under the Non-Assertion IPR Mode described in\nSection 4.\n\n18. OASIS Deliverable \u2013 a work product developed by a Technical Committee within the scope of its charter\nwhich is enumerated in and developed in accordance with the OASIS Technical Committee Process.\n\n19. OASIS Standards Draft Deliverable \u2013 an OASIS Deliverable that has been designated and approved by a\nTechnical Committee as an OASIS Standards Draft Deliverable and which is enumerated in and developed\nin accordance with the OASIS Technical Committee Process.\n\n20. OASIS Standards Final Deliverable \u2013 an OASIS Deliverable that has been designated and approved by a\nTechnical Committee as an OASIS Standards Final Deliverable and which is enumerated in and developed\nin accordance with the OASIS Technical Committee Process.\n\n21. OASIS Party \u2013 a member of OASIS (i.e., an entity that has executed an OASIS Membership Agreement) and\nits Affiliates.\n\n22. OASIS TC Administrator \u2013 the person(s) appointed to represent OASIS in administrative matters relating to\nTCs as provided by the OASIS Technical Committee Process.\n\n23. OASIS Technical Committee (TC) \u2013 a group of Eligible Persons formed, and whose actions are conducted,\naccording to the provisions of the OASIS Technical Committee Process.\n\n24. OASIS Technical Committee Process \u2013 the \"OASIS OPEN TECHNICAL COMMITTEE PROCESS\", as from time to\ntime amended, which describes the operation of Technical Committees at OASIS.\n\n25. Obligated Party \u2013 a TC Party that incurs a licensing or non-assertion obligation for its Essential Claims by\neither a Contribution Obligation or a Participation Obligation.\n\n26. Participation Obligation \u2013 a licensing or non-assertion requirement, as described in Section 10, that arises\nfrom membership in an OASIS Technical Committee, as described in Section 9.2.\n\n27. RAND Mode TC \u2013 an OASIS TC that is chartered under the RAND IPR Mode described in Section 4.\n\n28. RF Mode TC \u2013 an OASIS TC that is chartered under one of the RF IPR Modes described in Section 4.\n\n29. TC Member \u2013 an Eligible Person who has completed the requirements to join a TC during the period in which\ns/he maintains his or her membership as described by the OASIS Technical Committee Process. A TC\nMember may represent the interests of a TC Party in the TC.\n\n30. TC Party \u2013 an OASIS Party that is, or is represented by, a TC Member in the relevant Technical Committee.\n\n\n3. CONFIDENTIALITY\nNeither Contributions nor Feedback that are subject to any requirement of confidentiality may be considered in\nany part of the OASIS Technical Committee Process. All Contributions and Feedback will therefore be deemed to\nhave been submitted on a non-confidential basis, notwithstanding any markings or representations to the\ncontrary, and OASIS shall have no obligation to treat any such material as confidential.\n\n\n4. TC FORMATION\nAt the time a TC is chartered, the proposal to form the TC must specify the IPR Mode under which the Technical\nCommittee will operate. This Policy describes the following IPR Modes:\n\n1. RAND \u2013 requires all Obligated Parties to license their Essential Claims using the RAND licensing elements\ndescribed in Section 10.1.\n\n2. RF on RAND Terms \u2013 requires all Obligated Parties to license their Essential Claims using the RF licensing\nelements described in Sections 10.2.1 and 10.2.2.\n\n3. RF on Limited Terms \u2013 requires all Obligated Parties to license their Essential Claims using the RF licensing\nelements described in Sections 10.2.1 and 10.2.3.\n\n4. Non-Assertion \u2013 requires all Obligated Parties to provide an OASIS Non-Assertion Covenant as described in\nSection 10.3.\nA TC may not change its IPR Mode without closing and submitting a new charter.\n\n\n5. CONTRIBUTIONS\n\n5.1 General\nAt the time of submission of a Contribution for consideration by an OASIS Technical Committee, each named coContributor (and its respective Affiliates) is deemed to agree to the following terms and conditions and to make\nthe following representations (based on the actual knowledge of the TC Member(s) making the Contribution, with\nrespect to items 3 \u2013 5 below, inclusive):\n\n1. OASIS has no duty to publish or otherwise use or disseminate any Contribution.\n\n2. OASIS may reference the name(s) of the Contributor(s) for the purpose of acknowledging and publishing\nthe Contribution.\n\n3. The Contribution properly identifies any holders of copyright interests in the Contribution.\n\n4. No information in the Contribution is confidential, and OASIS may freely disclose any information in the\nContribution.\n\n5. There are no limits to the Contributor\u2019s ability to make the grants, acknowledgments, and agreements\nrequired by this Policy with respect to such Contribution.\n\n\n5.2 Copyright Licenses\n\n1. To the extent that a Contributor holds a copyright interest in its Contribution, such Contributor grants to\nOASIS a perpetual, irrevocable, non-exclusive, royalty-free, worldwide copyright license, with the right to\ndirectly and indirectly sublicense, to copy, publish, and distribute the Contribution in any way, and to\nprepare derivative works that are based on or incorporate all or part of the Contribution solely for the\npurpose of developing and promoting the OASIS Deliverable and enabling (subject to the rights of the\nowners of any Essential Claims) the implementation of the same by Licensees or Beneficiaries.\n\n2. To the extent that a Contribution is subject to copyright by parties that are not Contributors, the\nsubmitter(s) must provide OASIS with a signed \u201cCopyright License Grant\u201d (Appendix B) from each such\ncopyright owner whose permission would be required to permit OASIS to exercise the rights described in\nAppendix B.\n\n\n5.3 Trademarks\n\n1. Trademarks or service marks that are not owned by OASIS shall not be used by OASIS, except as approved\nby the OASIS Board of Directors, to refer to work conducted at OASIS, including the use in the name of an\nOASIS TC, an OASIS Deliverable, or incorporated into such work.\n\n2. No OASIS Party may use an OASIS trademark or service mark in connection with an OASIS Deliverable or\notherwise, except in compliance with such license and usage guidelines as OASIS may from time to time\nrequire.\n\n\n6. LIMITED PATENT COVENANT FOR DELIVERABLE DEVELOPMENT\n\nTo permit TC Members and their TC Parties to develop implementations of OASIS Standards Draft Deliverables\nbeing developed by a TC, each TC Party represented by a TC Member in a TC, at such time that the TC Member\njoins the TC, grants to each other TC Party in that TC automatically and without further action on its part, and on\nan ongoing basis, a limited covenant not to assert any Essential Claims required to implement such OASIS\nStandards Draft Deliverable and covering making or using (but not selling or otherwise distributing) an\nimplementation of such OASIS Standards Draft Deliverable, solely for the purpose of testing and developing such\ndeliverable and only until either the OASIS Standards Draft Deliverable is approved as an OASIS Standards Final\nDeliverable or the Technical Committee is closed.\n\n\n7. FEEDBACK\n\n1. OASIS encourages Feedback to OASIS Deliverables from both OASIS Parties who are not TC Parties and the\npublic at large. Feedback will be accepted only under the \"Feedback License\" (Appendix A).\n\n2. OASIS will require that submitters of Feedback agree to the terms of the Feedback License before\ntransmitting submitted Feedback to the Technical Committee.\n\n\n8. DISCLOSURE\n\n1. Disclosure Obligations \u2013 Each TC Party shall disclose to OASIS in writing the existence of all patents and/or\npatent applications owned or claimed by such TC Party that are actually known to the TC Member directly\nparticipating in the TC, and which such TC Member believes may contain any Essential Claims or claims\nthat might become Essential Claims upon approval of an OASIS Standards Final Deliverable as such\ndocument then exists (collectively, \u201cDisclosed Claims\u201d).\n\n2. Disclosure of Third Party Patent Claims \u2013 Each TC Party whose TC Members become aware of patents or\npatent applications owned or claimed by a third party that contain claims that might become Essential\nClaims upon approval of an OASIS Standards Final Deliverable should disclose them, provided that such\ndisclosure is not prohibited by any confidentiality obligation binding upon them. It is understood that any TC\nParty that discloses third party patent claims to OASIS does not take a position on the essentiality or\nrelevance of the third party claims to the OASIS Standards Final Deliverable in its then-current form.\nIn both cases (Sections 8.1 and 8.2), it is understood and agreed that such TC Party(s)\u2019 TC Member(s) do not\nrepresent that they know of all potentially pertinent claims of patents and patent applications owned or\nclaimed by the TC Party or any third parties. For the avoidance of doubt, while the disclosure obligation\nunder Sections 8.1 and 8.2 applies directly to all TC Parties, this obligation is triggered based on the actual\nknowledge of the TC Party\u2019s TC Members regarding the TC Party\u2019s patents or patent applications that may\ncontain Essential Claims.\n\n3. Disclosure Requests \u2013 Disclosure requests will be included as described in Section 12 with all public review\ncopies of OASIS Standards Final Deliverables. All OASIS Parties are encouraged to review such OASIS\nStandards Final Deliverables and make appropriate disclosures.\n\n4. Limitations \u2013 A disclosure request and the obligation to disclose set forth above do not imply any\nobligations on the recipients of disclosure requests (collectively or individually) or on any OASIS Party to\nperform or conduct patent searches. Nothing in this Policy nor the act of receiving a disclosure request for\nan OASIS Standards Final Deliverable, regardless of whether it is responded to, shall be construed or\notherwise interpreted as any kind of express or implied representation with respect to the existence or nonexistence of patents or patent applications which contain Essential Claims, other than that such TC Party\nhas acted in good faith with respect to its disclosure obligations.\n\n5. Information \u2013 Any disclosure of Disclosed Claims shall include (a) in the case of issued patents and\npublished patent applications, the patent or patent application publication number, the associated country\nand, as reasonably practicable, the relevant portions of the applicable OASIS Standards Final Deliverable;\nand (b) in the case of unpublished patent applications, the existence of the unpublished application and, as\nreasonably practicable, the relevant portions of the applicable OASIS Standards Final Deliverable.\n\n\n9. TYPES OF OBLIGATIONS\n\n9.1 Contribution Obligation\nA TC Party has a Contribution Obligation, which arises at the time the Contribution is submitted to a TC, to license\nor provide under non-assertion covenants as appropriate for the IPR mode described in Section 10, any claims\nunder its patents or patent applications that become Essential Claims when such Contribution is incorporated\n(either in whole or in part) into (a) the OASIS Standards Final Deliverable produced by the TC that received the\nContribution, or (b) any Final Maintenance Deliverable with respect to that OASIS Standards Final Deliverable.\n\n9.2 Participation Obligation\nA TC Party has a Participation Obligation to license or provide under non-assertion covenant as appropriate for\nthe IPR mode, as described in Section 10, any claims under its patents or patent applications that would be\nEssential Claims in the then current OASIS Standards Draft Deliverable, if that draft subsequently becomes an\nOASIS Standards Final Deliverable, even if the TC Party is not a Contributor, when all of the following conditions are\nmet:\n\n- An OASIS Standards Final Deliverable is finally approved that incorporates such OASIS Standards Draft\nDeliverable, either in whole or in part;\n\n- The TC Party has been on, or has been represented by TC Member(s) on such TC for a total of sixty (60)\ncalendar days, which need not be continuous;\n\n- The TC Party is on, or is represented by TC Member(s) on such TC after a period of seven (7) calendar days\nafter the ballot to approve such OASIS Standards Draft Deliverable has elapsed.\n\n\nOnce the foregoing conditions are met, that TC Party\u2019s Participation Obligation so to license or provide a nonassertion covenant continues with respect to that OASIS Standards Final Deliverable, and any Final Maintenance\n\nDeliverable subsequently approved with respect to that OASIS Standards Final Deliverable.\nFor organizational TC Parties, the membership threshold is met by one or more employees or organizational\ndesignees of such Parties having been a TC Member on any 60 calendar days, although any given calendar day\nis only one day of membership, regardless of the number of participants on that day.\n\nEach time a new OASIS Standards Draft Deliverable is approved by the TC, the Participation Obligation adjusts to\nencompass the material in the latest OASIS Standards Draft Deliverable seven days after such draft has been\napproved for publication.\n\n\n10. LICENSING REQUIREMENTS\n\n10.1 RAND Mode TC Requirements\n\nFor an OASIS Standards Final Deliverable developed by a RAND Mode TC, except where a Licensee has a separate,\nsigned agreement under which the Essential Claims are licensed to such Licensee on more favorable terms and\nconditions than set forth in this section (in which case such separate signed agreement shall supersede this\nLimited Patent License), each Obligated Party in such TC hereby covenants that, upon request and subject to\nSection 11, it will grant to any OASIS Party or third party: a nonexclusive, worldwide, non-sublicensable, perpetual\npatent license (or an equivalent non-assertion covenant) under its Essential Claims covered by its Contribution\nObligations or Participation Obligations on fair, reasonable, and non-discriminatory terms to make, have made,\nuse, market, import, offer to sell, and sell, and to otherwise directly or indirectly distribute (a) Licensed Products\nthat implement such OASIS Standards Final Deliverable, and (b) Licensed Products that implement any Final\nMaintenance Deliverable with respect to that OASIS Standards Final Deliverable. Such license need not extend to\nfeatures of a Licensed Product that are not required to comply with the Normative Portions of such OASIS\nStandards Final Deliverable or Final Maintenance Deliverable. For the sake of clarity, the rights set forth above\ninclude the right to directly or indirectly authorize a third party to make unmodified copies of the Licensee\u2019s\nLicensed Products and to license (optionally under the third party\u2019s license) the Licensee\u2019s Licensed Products\nwithin the scope of, and subject to the terms of, the Obligated Party\u2019s license.\n\nAt the election of the Obligated Party, such license may include a term requiring the Licensee to grant a reciprocal\nlicense to its Essential Claims (if any) covering the same OASIS Standards Final Deliverable and any such Final\nMaintenance Deliverable. Such term may require the Licensee to grant licenses to all implementers of such\ndeliverable. The Obligated Party may also include a term providing that such license may be suspended with\nrespect to the Licensee if that Licensee first sues the Obligated Party for infringement by the Obligated Party of any\nof the Licensee\u2019s Essential Claims covering the same OASIS Standards Final Deliverable or any such Final\nMaintenance Deliverable.\n\nLicense terms that are fair, reasonable, and non-discriminatory beyond those specifically mentioned above are\nleft to the Licensees and Obligated Parties involved.\n\n10.2 RF Mode TC Requirements\n\n10.2.1 Common\n\nFor an OASIS Standards Final Deliverable developed by an RF Mode TC, except where a Licensee has a separate,\nsigned agreement under which the Essential Claims are licensed to such Licensee on more favorable terms and\nconditions than set forth in this section (in which case such separate signed agreement shall supersede this\nLimited Patent License), each Obligated Party in such TC hereby covenants that, upon request and subject to\nSection 11, it will grant to any OASIS Party or third party: a nonexclusive, worldwide, non-sublicensable, perpetual\npatent license (or an equivalent non-assertion covenant) under its Essential Claims covered by its Contribution\nObligations or Participation Obligations without payment of royalties or fees, and subject to the applicable Section\n\n10.2.2 or 10.2.3, to make, have made, use, market, import, offer to sell, and sell, and to otherwise directly or indirectly\ndistribute (a) Licensed Products that implement such OASIS Standards Final Deliverable, and (b) Licensed\nProducts that implement any Final Maintenance Deliverable with respect to that OASIS Standards Final\nDeliverable. Such license need not extend to features of a Licensed Product that are not required to comply with\nthe Normative Portions of such OASIS Standards Final Deliverable or Final Maintenance Deliverable. For the sake of\nclarity, the rights set forth above include the right to directly or indirectly authorize a third party to make\nunmodified copies of the Licensee\u2019s Licensed Products and to license (optionally under the third party\u2019s license)\nthe Licensee\u2019s Licensed Products, within the scope of, and subject to the terms of, the Obligated Party\u2019s license.\nAt the election of the Obligated Party, such license may include a term requiring the Licensee to grant a reciprocal\nlicense to its Essential Claims (if any) covering the same OASIS Standards Final Deliverable and any such Final\nMaintenance Deliverable. Such term may require the Licensee to grant licenses to all implementers of such\ndeliverable. The Obligated Party may also include a term providing that such license may be suspended with\nrespect to the Licensee if that Licensee first sues the Obligated Party for infringement by the Obligated Party of any\nof the Licensee\u2019s Essential Claims covering the same OASIS Standards Final Deliverable and any such Final\nMaintenance Deliverable.\n\n10.2.2 RF on RAND Terms\n\nWith TCs operating under the RF on RAND Terms IPR Mode, license terms that are fair, reasonable, and nondiscriminatory beyond those specifically mentioned in Section 10.2.1 may also be included, and such additional\nRAND terms are left to the Licensees and Obligated Parties involved.\n\n10.2.3 RF on Limited Terms\n\nWith TCs operating under the RF on Limited Terms IPR Mode, Obligated Parties may not impose any further\nconditions or restrictions beyond those specifically mentioned in Section 10.2.1 on the use of any technology or\nintellectual property rights, or other restrictions on behavior of the Licensee, but may include reasonable,\ncustomary terms relating to operation or maintenance of the license relationship, including the following: choice\nof law and dispute resolution.\n\n10.3. Non-Assertion Mode TC Requirements\n\n10.3.1. For an OASIS Standards Final Deliverable developed by a Non-Assertion Mode TC, and any Final\nMaintenance Deliverable with respect to that OASIS Standards Final Deliverable, each Obligated Party in such TC\nhereby makes the following world-wide \u201cOASIS Non-Assertion Covenant\u201d.\nEach Obligated Party in a Non-Assertion Mode TC irrevocably covenants that, subject to Section 10.3.2 and Section\n11 of the OASIS IPR Policy, it will not assert any of its Essential Claims covered by its Contribution Obligations or\nParticipation Obligations against any OASIS Party or third party for making, having made, using, marketing,\nimporting, offering to sell, selling, and otherwise distributing Covered Products that implement an OASIS Standards\nFinal Deliverable developed by that TC and Covered Products that implement any Final Maintenance Deliverable\nwith respect to that OASIS Standards Final Deliverable.\n\n10.3.2. The covenant described in Section 10.3.1 may be suspended or revoked by the Obligated Party with respect\nto any OASIS Party or third party if that OASIS Party or third party asserts an Essential Claim in a suit first brought\nagainst, or attempts in writing to assert an Essential Claim against, a Beneficiary with respect to a Covered\nProduct that implements the same OASIS Standards Final Deliverable or any such Final Maintenance Deliverable.\n\n\n11. WITHDRAWAL AND TERMINATION\n\nA TC Party may withdraw from a TC at any time by notifying the OASIS TC Administrator in writing of such decision\nto withdraw. Withdrawal shall be deemed effective when such written notice is sent.\n\n11.1 Withdrawal from a Technical Committee\nA TC Party that withdraws from an OASIS Technical Committee shall have Continuing Licensing or Non-Assertion\nObligations based on its Contribution Obligations and Participation Obligations as follows:\n\n1. A TC Party that has incurred neither a Contribution Obligation nor a Participation Obligation prior to\nwithdrawal has no licensing or non-assertion obligations for OASIS Standards Final Deliverable(s)\noriginating from that OASIS TC.\n\n2. A TC Party that has incurred a Contribution Obligation prior to withdrawal continues to be subject to its\nContribution Obligation.\n\n3. A TC Party that has incurred a Participation Obligation prior to withdrawal continues to be subject to its\nParticipation Obligation but only with respect to OASIS Standards Draft Deliverable(s) approved more than\nseven (7) calendar days prior to its withdrawal.\n\n11.2 Termination of an OASIS Membership\nAn OASIS Party that terminates its OASIS membership (voluntarily or involuntarily) is deemed to withdraw from all\nTCs in which that OASIS Party has TC Member(s) representing it, and such OASIS Party remains subject to\nContinuing Licensing or Non-Assertion Obligations for each such TC based on its Obligated Party status in that TC\non the date that its membership termination becomes effective.\n\n\n12. LIMITATIONS OF LIABILITY\n\nAll OASIS Deliverables are provided \u201cas is\u201d, without warranty of any kind, express or implied, and OASIS, as well as\nall OASIS Parties and TC Members, expressly disclaim any warranty of merchantability, fitness for a particular or\nintended purpose, accuracy, completeness, non-infringement of third party rights, or any other warranty.\nIn no event shall OASIS or any of its constituent parts (including, but not limited to, the OASIS Board of Directors),\nbe liable to any other person or entity for any loss of profits, loss of use, direct, indirect, incidental, consequential,\npunitive, or special damages, whether under contract, tort, warranty, or otherwise, arising in any way out of this\nPolicy, whether or not such party had advance notice of the possibility of such damages.\nIn addition, except for grossly negligent or intentionally fraudulent acts, OASIS Parties and TC Members (or their\nrepresentatives), shall not be liable to any other person or entity for any loss of profits, loss of use, direct, indirect,\nincidental, consequential, punitive, or special damages, whether under contract, tort, warranty, or otherwise,\narising in any way out of this Policy, whether or not such party had advance notice of the possibility of such\ndamages.\nOASIS assumes no responsibility to compile, confirm, update or make public any assertions of Essential Claims or\nother intellectual property rights that might be infringed by an implementation of an OASIS Deliverable.\nIf OASIS at any time refers to any such assertions by any owner of such claims, OASIS takes no position as to the\nvalidity or invalidity of such assertions, or that all such assertions that have or may be made have been referred\nto.\n\n\n13. GENERAL\n\n13.1. By ratifying this document, OASIS warrants that it will not inhibit the traditional open and free access to OASIS\ndocuments for which license and right have been assigned or obtained according to the procedures set forth in\nthis section. This warranty is perpetual and will not be revoked by OASIS or its successors or assigns as to any\nalready adopted OASIS Standards Final Deliverable; provided, however, that neither OASIS nor its assigns shall be\nobligated to:\n\n1. 13.1.1. Perpetually maintain its existence; nor\n\n2. 13.1.2. Provide for the perpetual existence of a website or other public means of accessing OASIS Standards\nFinal Deliverables; nor\n\n3. 13.1.3. Maintain the public availability of any given OASIS Standards Final Deliverable that has been retired or\nsuperseded, or which is no longer being actively utilized in the marketplace.\n\n13.2. Where any copyrights, trademarks, patents, patent applications, or other proprietary rights are known, or\nclaimed, with respect to any OASIS Deliverable and are formally brought to the attention of the OASIS TC\nAdministrator, OASIS shall consider appropriate action, which may include disclosure of the existence of such\nrights, or claimed rights. The OASIS Technical Committee Process shall prescribe the method for providing this\ninformation.\n\n1. 13.2.1. OASIS disclaims any responsibility for identifying the existence of or for evaluating the applicability of\nany claimed copyrights, trademarks, patents, patent applications, or other rights, and will make no\nassurances on the validity or scope of any such rights.\n\n2. 13.2.2. Where the OASIS TC Administrator is formally notified of rights, or claimed rights under Section 8.8 with\nrespect to entities other than Obligated Parties, the OASIS President shall attempt to obtain from the\nclaimant of such rights a written assurance that any Licensee will be able to obtain the right to utilize, use,\nand distribute the technology or works when implementing, using, or distributing technology based upon\nthe specific OASIS Standards Final Deliverable (or, in the case of an OASIS Standards Draft Deliverable, that\nany Licensee will then be able to obtain such a right) under terms that are consistent with this Policy. All\nsuch information will be made available to the TC that produced such deliverable, but the failure to obtain\nsuch written assurance shall not prevent votes from being conducted, except that the OASIS TC\nAdministrator may defer approval for a reasonable period of time where a delay may facilitate the\nobtaining of such assurances. The results will, however, be recorded by the OASIS TC Administrator, and\nmade available to the public. The OASIS Board of Directors may also direct that a summary of the results be\nincluded in any published OASIS Standards Final Deliverable.\n\n3. 13.2.3. Except for the rights expressly provided herein, neither OASIS nor any OASIS Party grants or receives, by\nimplication, estoppel, or otherwise, any rights under any patents or other intellectual property rights of the\nOASIS Party, OASIS, any other OASIS Party, or any third party.\n\n13.3. Solely for purposes of Section 365(n) of Title 11, United States Bankruptcy Code, and any equivalent law in any\nforeign jurisdiction, the promises under Section 10 will be treated as if they were a license and any OASIS Party or\nthird-party may elect to retain its rights under this promise if Obligated Party, as a debtor in possession, or a\nbankruptcy trustee in a case under the United States Bankruptcy Code, rejects any obligations stated in Section\n10.\n\n\n14. Required Notice\n\n14.1 Documents\nAny OASIS Deliverable shall include the following notices replacing [copyright year] with the year or range of years\nof publication (bracketed language, other than the date, need only appear in OASIS Standards Final Deliverable\ndocuments):\n\nCopyright \u00a9 OASIS Open [copyright year]. All Rights Reserved.\nAll capitalized terms in the following text have the meanings assigned to them in the OASIS Intellectual Property\n\nRights Policy (the \"OASIS IPR Policy\"). The full Policy may be found at the OASIS website: [http://www.oasisopen.org/policies-guidelines/ipr]\nThis document and translations of it may be copied and furnished to others, and derivative works that comment\non or otherwise explain it or assist in its implementation may be prepared, copied, published, and distributed, in\nwhole or in part, without restriction of any kind, provided that the above copyright notice and this section are\nincluded on all such copies and derivative works. However, this document itself may not be modified in any way,\nincluding by removing the copyright notice or references to OASIS, except as needed for the purpose of\ndeveloping any document or deliverable produced by an OASIS Technical Committee (in which case the rules\napplicable to copyrights, as set forth in the OASIS IPR Policy, must be followed) or as required to translate it into\nlanguages other than English.\nThe limited permissions granted above are perpetual and will not be revoked by OASIS or its successors or\nassigns.\nThis document and the information contained herein is provided on an \u201cAS IS\u201d basis and OASIS DISCLAIMS ALL\n\nWARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE\nINFORMATION HEREIN WILL NOT INFRINGE ANY OWNERSHIP RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY\nOR FITNESS FOR A PARTICULAR PURPOSE. OASIS AND ITS MEMBERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT,\nSPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THIS DOCUMENT OR ANY PART THEREOF.\n\n[OASIS requests that any OASIS Party or any other party that believes it has patent claims that would necessarily\nbe infringed by implementations of this OASIS Standards Final Deliverable, to notify OASIS TC Administrator and\nprovide an indication of its willingness to grant patent licenses to such patent claims in a manner consistent with\nthe IPR Mode of the OASIS Technical Committee that produced this deliverable.]\n[OASIS invites any party to contact the OASIS TC Administrator if it is aware of a claim of ownership of any patent\nclaims that would necessarily be infringed by implementations of this OASIS Standards Final Deliverable by a\npatent holder that is not willing to provide a license to such patent claims in a manner consistent with the IPR\nMode of the OASIS Technical Committee that produced this OASIS Standards Final Deliverable. OASIS may include\nsuch claims on its website, but disclaims any obligation to do so.]\n\n[OASIS takes no position regarding the validity or scope of any intellectual property or other rights that might be\nclaimed to pertain to the implementation or use of the technology described in this OASIS Standards Final\nDeliverable or the extent to which any license under such rights might or might not be available; neither does it\nrepresent that it has made any effort to identify any such rights. Information on OASIS\u2019 procedures with respect\nto rights in any document or deliverable produced by an OASIS Technical Committee can be found on the OASIS\nwebsite. Copies of claims of rights made available for publication and any assurances of licenses to be made\navailable, or the result of an attempt made to obtain a general license or permission for the use of such\nproprietary rights by implementers or users of this OASIS Standards Final Deliverable, can be obtained from the\nOASIS TC Administrator. OASIS makes no representation that any information or list of intellectual property rights\nwill at any time be complete, or that any claims in such list are, in fact, Essential Claims.]\n\n\n14.2 Alternative Notice\n\nOther OASIS Deliverables that are primarily intended for machine rather than human consumption and whose\nformat requires terse expression may, as an alternative to Section 14.1, include just the short-form notice as follows\nreplacing [copyright year] with the year or year range of publication:\nCopyright \u00a9 OASIS Open [copyright year]. All Rights Reserved.\nDistributed under the terms of the OASIS IPR Policy, [http://www.oasis-open.org/policies-guidelines/ipr], AS-IS,\nWITHOUT ANY IMPLIED OR EXPRESS WARRANTY; there is no warranty of MERCHANTABILITY, FITNESS FOR A PARTICULAR\nPURPOSE or NONINFRINGEMENT of the rights of others.\n\n14.3 Additional Copyright Notices\n\nAdditional copyright notices identifying Contributors may also be included with the OASIS copyright notice.\n\n\nAppendix A. Feedback License\n\nThe \"OASIS ___________ Technical Committee\" is developing technology (the \"OASIS ____________\nDeliverable\") as defined by its charter and welcomes input, suggestions and other feedback (\"Feedback\") on the\nOASIS ____________ Deliverable. By the act of submitting, you (on behalf of yourself if you are an individual,\nand your organization and its Affiliates if you are providing Feedback on behalf of that organization) agree to the\nfollowing terms (all capitalized terms are defined in the OASIS Intellectual Property Rights (\"IPR\") Policy, see\nhttp://www.oasis-open.org/who/intellectualproperty.php):\n\n1. Copyright \u2013 You (and your represented organization and its Affiliates) grant to OASIS a perpetual,\nirrevocable, non-exclusive, royalty-free, worldwide copyright license, with the right to directly and indirectly\nsublicense, to copy, publish, and distribute the Feedback in any way, and to prepare derivative works that\nare based on or incorporate all or part of the Feedback, solely for the purpose of developing and promoting\nthe OASIS Deliverable and enabling the implementation of the same by Licensees or Beneficiaries.\n\n2. Essential Claims \u2013 You covenant to grant a patent license or offer an OASIS Non-Assertion Covenant as\nappropriate under any patent claims that you (or your represented organization or its Affiliates) own or\ncontrol that become Essential Claims because of the incorporation of such Feedback into the OASIS\nStandards Final Deliverable, and any Final Maintenance Deliverable with respect to that OASIS Standards\nFinal Deliverable, on terms consistent with Section 10 of the OASIS IPR Policy for the IPR Mode specified in the\ncharter of this OASIS Technical Committee.\n\n3. Right to Provide \u2013 You warrant to the best of your knowledge that you have rights to provide this Feedback,\nand if you are providing Feedback on behalf of an organization, you warrant that you have the rights to\nprovide Feedback on behalf of your organization and to bind your organization and its Affiliates to the\nlicensing or non-assertion obligations provided above.\n\n4. Confidentiality \u2013 You further warrant that no information in this Feedback is confidential, and that OASIS\nmay freely disclose any information in the Feedback.\n\n5. No requirement to Use \u2013 You also acknowledge that OASIS is not required to incorporate your Feedback into\nany version of this OASIS Deliverable.\nAssent of Feedback Provider: By: _________________________ (Signature) Name:\n_______________________ Title: ________________________ Organization: ________________\nDate: ________________________ Email: _______________________\n\nAppendix B. Copyright License Grant\n\nThe undersigned, on its own behalf and on behalf of its represented organization and its Affiliates, if any, with\nrespect to their collective copyright ownership rights in the Contribution \"__________________,\" grants to\nOASIS a perpetual, irrevocable, non-exclusive, royalty-free, world-wide copyright license, with the right to directly\nand indirectly sublicense, to copy, publish, and distribute the Contribution in any way, and to prepare derivative\nworks that are based on or incorporate all or part of the Contribution solely for the purpose of developing and\npromoting the OASIS Deliverable and enabling the implementation of the same by Licensees or Beneficiaries (all\nabove capitalized terms are defined in the OASIS Intellectual Property Rights (\"IPR\") Policy, see http://www.oasisopen.org/who/intellectualproperty.php).\n\nAssent of the Undersigned: By: __________________________ (Signature) Name:\n_______________________ Title: ________________________ Organization: ________________\nDate: ________________________ Email: _______________________\n\nHistorical revisions of this policy\nApproved 07/31/2013\nIntellectual Property Rights (IPR) Policy\n\nApproved 05/02/2012\nIntellectual Property Rights (IPR) Policy (2 May 2012)\n\nApproved 05/02/2012\nIntellectual Property Rights (IPR) Policy (21 June 2012)\n\nApproved 07/28/2010\nIntellectual Property Rights (IPR) Policy (28 July 2010)\n\nApproved 05/19/2009\nIPR (19 May 2009)", + "json": "oasis-ipr-2013.json", + "yaml": "oasis-ipr-2013.yml", + "html": "oasis-ipr-2013.html", + "license": "oasis-ipr-2013.LICENSE" + }, + { + "license_key": "oasis-ipr-policy-2014", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oasis-ipr-policy-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Intellectual Property Rights (IPR) Policy\n\n1. INTRODUCTION\n2. DEFINITIONS\n3. CONFIDENTIALITY\n4. TC FORMATION\n5. CONTRIBUTIONS\n6. LIMITED PATENT COVENANT FOR SPECIFICATION DEVELOPMENT\n7. FEEDBACK\n8. DISCLOSURE\n9. TYPES OF OBLIGATIONS\n10. LICENSING REQUIREMENTS\n11. WITHDRAWAL AND TERMINATION\n12. LIMITATIONS OF LIABILITY\n13. GENERAL\n14. NOTICES\nAppendix A. Feedback License\nAppendix B. Copyright License Grant\n\n1. INTRODUCTION\n\nThe OASIS Intellectual Property Rights (IPR) Policy governs the treatment of intellectual property in the production of deliverables by OASIS Open (hereafter referred to as OASIS).\n\nThis Policy applies to all members of OASIS and their Affiliates (as defined below). The OASIS Board of Directors may amend this Policy at any time in its sole discretion. In the event of such change to this Policy, the Board will provide instructions for transition of membership and Technical Committees to the new Policy; however, no amendment to this Policy will be effective in less than 60 calendar days from the date that written notice of such amendment is given to the Member at its address of record with OASIS.\n\n2. DEFINITIONS\n\nEach capitalized term within this document shall have the meaning provided below:\n\n Affiliate - any entity that directly or indirectly controls, is controlled by, or is under common control with, another entity, so long as such control exists. In the event that such control ceases to exist, such Affiliate will be deemed to have withdrawn from OASIS pursuant to the terms set forth in the withdrawal provisions in Section 11. For purposes of this definition, with respect to a business entity, control means direct or indirect beneficial ownership of or the right to exercise (i) greater than fifty percent (50%) of the voting stock or equity in an entity; or (ii) greater than fifty percent (50%) of the ownership interest representing the right to make the decisions for the subject entity in the event that there is no voting stock or equity.\n Beneficiary - any organization, including its Affiliates as defined in this Policy, or individual who benefits from the OASIS Non-Assertion Covenant with respect to Essential Claims from Obligated Parties for a particular OASIS Standards Final Deliverable. A Beneficiary need not be an OASIS member.\n Continuing Licensing or Non-Assertion Obligation - a licensing or non-assertion obligation, of the types defined by Section 9 of this Policy, which survives a TC Party's withdrawal from an OASIS Technical Committee.\n Contribution - any material submitted to an OASIS Technical Committee by a TC Member in writing or electronically, whether in an in-person meeting or in any electronic conference or mailing list maintained by OASIS for the OASIS Technical Committee and which is or was proposed for inclusion in an OASIS Deliverable.\n Contribution Obligation - a licensing or non-assertion requirement, as described in Section 10 that results from making a Contribution as described in Section 9.1.\n Contributor - a TC Party on whose behalf a Contribution is made by the TC Party's TC Member.\n Covered Product - includes only those specific portions of a product (hardware, software or combinations thereof) that (a) implement and are compliant with all Normative Portions of an OASIS Standards Final Deliverable produced by a Non-Assertion Mode TC that must be implemented to comply with such deliverable, and (b) to the extent that the product implements one or more optional portions of such deliverable, those portions that implement and are compliant with all Normative Portions that must be implemented to comply with such optional portions of the deliverable.\n Eligible Person - one of a class of individuals that include: persons holding individual memberships in OASIS, employees or designees of organizational members of OASIS, and such other persons as may be designated by the OASIS Board of Directors.\n Essential Claims - those claims in any patent or patent application in any jurisdiction in the world that would necessarily be infringed by an implementation of those portions of a particular OASIS Standards Final Deliverable created within the scope of the TC charter in effect at the time such deliverable was developed. A claim is necessarily infringed hereunder only when it is not possible to avoid infringing it because there is no non-infringing alternative for implementing the Normative Portions of that particular OASIS Standards Final Deliverable. Existence of a non-infringing alternative shall be judged based on the state of the art at the time the OASIS Standards Final Deliverable is approved.\n Feedback - any written or electronic input provided to an OASIS Technical Committee by individuals who are not TC Members and which is proposed for inclusion in an OASIS Deliverable. All such Feedback must be made under the terms of the Feedback License (Appendix A).\n Final Maintenance Deliverable - Any OASIS Standards Final Deliverable that results entirely from Maintenance Activity.\n IPR Mode - an element of an OASIS TC charter, which specifies the type of licenses or non-assertion covenants required for any Essential Claims associated with the output produced by a given Technical Committee. This is further described in Section 4.\n Licensed Products - include only those specific portions of a Licensee's products (hardware, software or combinations thereof) that (a) implement and are compliant with all Normative Portions of an OASIS Standards Final Deliverable that must be implemented to comply with such deliverable, and (b) to the extent that the Licensee's products implement one or more optional portions of such deliverable, those portions of Licensee's products that implement and are compliant with all Normative Portions that must be implemented to comply with such optional portions of the deliverable.\n Licensee - any organization, including its Affiliates as defined in this Policy, or individual that licenses Essential Claims from Obligated Parties for a particular OASIS Standards Final Deliverable. Licensees need not be OASIS members.\n Maintenance Activity - Any drafting or development work to modify an OASIS Standards Final Deliverable that (a) constitutes only error corrections, bug fixes or editorial formatting changes to the OASIS Standards Final Deliverable; and (b) does not add any feature; and (c) is within the scope of the TC that approved the OASIS Standards Final Deliverable (whether or not the work is conducted by the same TC).\n Normative Portion - a portion of an OASIS Standards Final Deliverable that must be implemented to comply with such deliverable. If such deliverable defines optional parts, Normative Portions include those portions of the optional part that must be implemented if the implementation is to comply with such optional part. Examples and/or reference implementations and other specifications or standards that were developed outside the TC and which are referenced in the body of a particular OASIS Standards Final Deliverable that may be included in such deliverable are not Normative Portions.\n Non-Assertion Mode TC - an OASIS TC that is chartered under the Non-Assertion IPR Mode described in Section 4.\n OASIS Deliverable - a work product developed by a Technical Committee within the scope of its charter which is enumerated in and developed in accordance with the OASIS Technical Committee Process.\n OASIS Standards Draft Deliverable - an OASIS Deliverable that has been designated and approved by a Technical Committee as an OASIS Standards Draft Deliverable and which is enumerated in and developed in accordance with the OASIS Technical Committee Process.\n OASIS Standards Final Deliverable - an OASIS Deliverable that has been designated and approved by a Technical Committee as an OASIS Standards Final Deliverable and which is enumerated in and developed in accordance with the OASIS Technical Committee Process.\n OASIS Party - a member of OASIS (i.e., an entity that has executed an OASIS Membership Agreement) and its Affiliates.\n OASIS TC Administrator - the person(s) appointed to represent OASIS in administrative matters relating to TCs as provided by the OASIS Technical Committee Process.\n OASIS Technical Committee (TC) - a group of Eligible Persons formed, and whose actions are conducted, according to the provisions of the OASIS Technical Committee Process.\n OASIS Technical Committee Process - the \"OASIS OPEN TECHNICAL COMMITTEE PROCESS\", as from time to time amended, which describes the operation of Technical Committees at OASIS.\n Obligated Party - a TC Party that incurs a licensing or non-assertion obligation for its Essential Claims by either a Contribution Obligation or a Participation Obligation.\n Participation Obligation - a licensing or non-assertion requirement, as described in Section 10, that arises from membership in an OASIS Technical Committee, as described in Section 9.2.\n RAND Mode TC - an OASIS TC that is chartered under the RAND IPR Mode described in Section 4.\n RF Mode TC - an OASIS TC that is chartered under one of the RF IPR Modes described in Section 4.\n TC Member - an Eligible Person who has completed the requirements to join a TC during the period in which s/he maintains his or her membership as described by the OASIS Technical Committee Process. A TC Member may represent the interests of a TC Party in the TC.\n TC Party - an OASIS Party that is, or is represented by, a TC Member in the relevant Technical Committee.\n\n3. CONFIDENTIALITY\n\nNeither Contributions nor Feedback that are subject to any requirement of confidentiality may be considered in any part of the OASIS Technical Committee Process. All Contributions and Feedback will therefore be deemed to have been submitted on a non-confidential basis, notwithstanding any markings or representations to the contrary, and OASIS shall have no obligation to treat any such material as confidential.\n\n4. TC FORMATION\n\nAt the time a TC is chartered, the proposal to form the TC must specify the IPR Mode under which the Technical Committee will operate. This Policy describes the following IPR Modes:\n\n RAND - requires all Obligated Parties to license their Essential Claims using the RAND licensing elements described in Section 10.1.\n RF on RAND Terms - requires all Obligated Parties to license their Essential Claims using the RF licensing elements described in Sections 10.2.1 and 10.2.2.\n RF on Limited Terms - requires all Obligated Parties to license their Essential Claims using the RF licensing elements described in Sections 10.2.1 and 10.2.3.\n Non-Assertion - requires all Obligated Parties to provide an OASIS Non-Assertion Covenant as described in Section 10.3.\n\nA TC may not change its IPR Mode without closing and submitting a new charter.\n\n5. CONTRIBUTIONS\n\n5.1 General\n\nAt the time of submission of a Contribution for consideration by an OASIS Technical Committee, each named co-Contributor (and its respective Affiliates) is deemed to agree to the following terms and conditions and to make the following representations (based on the actual knowledge of the TC Member(s) making the Contribution, with respect to items 3 - 5 below, inclusive):\n\n OASIS has no duty to publish or otherwise use or disseminate any Contribution.\n OASIS may reference the name(s) of the Contributor(s) for the purpose of acknowledging and publishing the Contribution.\n The Contribution properly identifies any holders of copyright interests in the Contribution.\n No information in the Contribution is confidential, and OASIS may freely disclose any information in the Contribution.\n There are no limits to the Contributor's ability to make the grants, acknowledgments, and agreements required by this Policy with respect to such Contribution.\n\n5.2 Copyright Licenses\n\n To the extent that a Contributor holds a copyright interest in its Contribution, such Contributor grants to OASIS a perpetual, irrevocable, non-exclusive, royalty-free, worldwide copyright license, with the right to directly and indirectly sublicense, to copy, publish, and distribute the Contribution in any way, and to prepare derivative works that are based on or incorporate all or part of the Contribution solely for the purpose of developing and promoting the OASIS Deliverable and enabling (subject to the rights of the owners of any Essential Claims) the implementation of the same by Licensees or Beneficiaries.\n To the extent that a Contribution is subject to copyright by parties that are not Contributors, the submitter(s) must provide OASIS with a signed \"Copyright License Grant\" (Appendix B) from each such copyright owner whose permission would be required to permit OASIS to exercise the rights described in Appendix B.\n\n5.3 Trademarks\n\n Trademarks or service marks that are not owned by OASIS shall not be used by OASIS, except as approved by the OASIS Board of Directors, to refer to work conducted at OASIS, including the use in the name of an OASIS TC, an OASIS Deliverable, or incorporated into such work.\n No OASIS Party may use an OASIS trademark or service mark in connection with an OASIS Deliverable or otherwise, except in compliance with such license and usage guidelines as OASIS may from time to time require.\n\n6. LIMITED PATENT COVENANT FOR DELIVERABLE DEVELOPMENT\n\nTo permit TC Members and their TC Parties to develop implementations of OASIS Standards Draft Deliverables being developed by a TC, each TC Party represented by a TC Member in a TC, at such time that the TC Member joins the TC, grants to each other TC Party in that TC automatically and without further action on its part, and on an ongoing basis, a limited covenant not to assert any Essential Claims required to implement such OASIS Standards Draft Deliverable and covering making or using (but not selling or otherwise distributing) an implementation of such OASIS Standards Draft Deliverable, solely for the purpose of testing and developing such deliverable and only until either the OASIS Standards Draft Deliverable is approved as an OASIS Standards Final Deliverable or the Technical Committee is closed.\n\n7. FEEDBACK\n\n OASIS encourages Feedback to OASIS Deliverables from both OASIS Parties who are not TC Parties and the public at large. Feedback will be accepted only under the \"Feedback License\" (Appendix A).\n OASIS will require that submitters of Feedback agree to the terms of the Feedback License before transmitting submitted Feedback to the Technical Committee.\n\n8. DISCLOSURE\n\n Disclosure Obligations - Each TC Party shall disclose to OASIS in writing the existence of all patents and/or patent applications owned or claimed by such TC Party that are actually known to the TC Member directly participating in the TC, and which such TC Member believes may contain any Essential Claims or claims that might become Essential Claims upon approval of an OASIS Standards Final Deliverable as such document then exists (collectively, \"Disclosed Claims\").\n Disclosure of Third Party Patent Claims - Each TC Party whose TC Members become aware of patents or patent applications owned or claimed by a third party that contain claims that might become Essential Claims upon approval of an OASIS Standards Final Deliverable should disclose them, provided that such disclosure is not prohibited by any confidentiality obligation binding upon them. It is understood that any TC Party that discloses third party patent claims to OASIS does not take a position on the essentiality or relevance of the third party claims to the OASIS Standards Final Deliverable in its then-current form.\n\n In both cases (Sections 8.1 and 8.2), it is understood and agreed that such TC Party(s)' TC Member(s) do not represent that they know of all potentially pertinent claims of patents and patent applications owned or claimed by the TC Party or any third parties. For the avoidance of doubt, while the disclosure obligation under Sections 8.1 and 8.2 applies directly to all TC Parties, this obligation is triggered based on the actual knowledge of the TC Party's TC Members regarding the TC Party's patents or patent applications that may contain Essential Claims.\n Disclosure Requests - Disclosure requests will be included as described in Section 12 with all public review copies of OASIS Standards Final Deliverables. All OASIS Parties are encouraged to review such OASIS Standards Final Deliverables and make appropriate disclosures.\n Limitations - A disclosure request and the obligation to disclose set forth above do not imply any obligations on the recipients of disclosure requests (collectively or individually) or on any OASIS Party to perform or conduct patent searches. Nothing in this Policy nor the act of receiving a disclosure request for an OASIS Standards Final Deliverable, regardless of whether it is responded to, shall be construed or otherwise interpreted as any kind of express or implied representation with respect to the existence or non-existence of patents or patent applications which contain Essential Claims, other than that such TC Party has acted in good faith with respect to its disclosure obligations.\n Information - Any disclosure of Disclosed Claims shall include (a) in the case of issued patents and published patent applications, the patent or patent application publication number, the associated country and, as reasonably practicable, the relevant portions of the applicable OASIS Standards Final Deliverable; and (b) in the case of unpublished patent applications, the existence of the unpublished application and, as reasonably practicable, the relevant portions of the applicable OASIS Standards Final Deliverable.\n\n9. TYPES OF OBLIGATIONS\n\n9.1 Contribution Obligation\n\nA TC Party has a Contribution Obligation, which arises at the time the Contribution is submitted to a TC, to license or provide under non-assertion covenants as appropriate for the IPR mode described in Section 10, any claims under its patents or patent applications that become Essential Claims when such Contribution is incorporated (either in whole or in part) into (a) the OASIS Standards Final Deliverable produced by the TC that received the Contribution, or (b) any Final Maintenance Deliverable with respect to that OASIS Standards Final Deliverable.\n\n9.2 Participation Obligation\n\nA TC Party has a Participation Obligation to license or provide under non-assertion covenant as appropriate for the IPR mode, as described in Section 10, any claims under its patents or patent applications that would be Essential Claims in the then current OASIS Standards Draft Deliverable, if that draft subsequently becomes an OASIS Standards Final Deliverable, even if the TC Party is not a Contributor, when all of the following conditions are met:\n\n An OASIS Standards Final Deliverable is finally approved that incorporates such OASIS Standards Draft Deliverable, either in whole or in part;\n The TC Party has been on, or has been represented by TC Member(s) on such TC for a total of sixty (60) calendar days, which need not be continuous;\n The TC Party is on, or is represented by TC Member(s) on such TC after a period of seven (7) calendar days after the ballot to approve such OASIS Standards Draft Deliverable has elapsed.\n\nOnce the foregoing conditions are met, that TC Party's Participation Obligation so to license or provide a non-assertion covenant continues with respect to that OASIS Standards Final Deliverable, and any Final Maintenance Deliverable subsequently approved with respect to that OASIS Standards Final Deliverable.\n\nFor organizational TC Parties, the membership threshold is met by one or more employees or organizational designees of such Parties having been a TC Member on any 60 calendar days, although any given calendar day is only one day of membership, regardless of the number of participants on that day.\n\nEach time a new OASIS Standards Draft Deliverable is approved by the TC, the Participation Obligation adjusts to encompass the material in the latest OASIS Standards Draft Deliverable seven days after such draft has been approved for publication.\n\n10. LICENSING REQUIREMENTS\n\n10.1 RAND Mode TC Requirements\n\nFor an OASIS Standards Final Deliverable developed by a RAND Mode TC, except where a Licensee has a separate, signed agreement under which the Essential Claims are licensed to such Licensee on more favorable terms and conditions than set forth in this section (in which case such separate signed agreement shall supersede this Limited Patent License), each Obligated Party in such TC hereby covenants that, upon request and subject to Section 11, it will grant to any OASIS Party or third party: a nonexclusive, worldwide, non-sublicensable, perpetual patent license (or an equivalent non-assertion covenant) under its Essential Claims covered by its Contribution Obligations or Participation Obligations on fair, reasonable, and non-discriminatory terms to make, have made, use, market, import, offer to sell, and sell, and to otherwise directly or indirectly distribute (a) Licensed Products that implement such OASIS Standards Final Deliverable, and (b) Licensed Products that implement any Final Maintenance Deliverable with respect to that OASIS Standards Final Deliverable. Such license need not extend to features of a Licensed Product that are not required to comply with the Normative Portions of such OASIS Standards Final Deliverable or Final Maintenance Deliverable. For the sake of clarity, the rights set forth above include the right to directly or indirectly authorize a third party to make unmodified copies of the Licensee's Licensed Products and to license (optionally under the third party's license) the Licensee's Licensed Products within the scope of, and subject to the terms of, the Obligated Party's license.\n\nAt the election of the Obligated Party, such license may include a term requiring the Licensee to grant a reciprocal license to its Essential Claims (if any) covering the same OASIS Standards Final Deliverable and any such Final Maintenance Deliverable. Such term may require the Licensee to grant licenses to all implementers of such deliverable. The Obligated Party may also include a term providing that such license may be suspended with respect to the Licensee if that Licensee first sues the Obligated Party for infringement by the Obligated Party of any of the Licensee's Essential Claims covering the same OASIS Standards Final Deliverable or any such Final Maintenance Deliverable.\n\nLicense terms that are fair, reasonable, and non-discriminatory beyond those specifically mentioned above are left to the Licensees and Obligated Parties involved.\n\n10.2 RF Mode TC Requirements\n\n10.2.1 Common\n\nFor an OASIS Standards Final Deliverable developed by an RF Mode TC, except where a Licensee has a separate, signed agreement under which the Essential Claims are licensed to such Licensee on more favorable terms and conditions than set forth in this section (in which case such separate signed agreement shall supersede this Limited Patent License), each Obligated Party in such TC hereby covenants that, upon request and subject to Section 11, it will grant to any OASIS Party or third party: a nonexclusive, worldwide, non-sublicensable, perpetual patent license (or an equivalent non-assertion covenant) under its Essential Claims covered by its Contribution Obligations or Participation Obligations without payment of royalties or fees, and subject to the applicable Section 10.2.2 or 10.2.3, to make, have made, use, market, import, offer to sell, and sell, and to otherwise directly or indirectly distribute (a) Licensed Products that implement such OASIS Standards Final Deliverable, and (b) Licensed Products that implement any Final Maintenance Deliverable with respect to that OASIS Standards Final Deliverable. Such license need not extend to features of a Licensed Product that are not required to comply with the Normative Portions of such OASIS Standards Final Deliverable or Final Maintenance Deliverable. For the sake of clarity, the rights set forth above include the right to directly or indirectly authorize a third party to make unmodified copies of the Licensee's Licensed Products and to license (optionally under the third party's license) the Licensee's Licensed Products, within the scope of, and subject to the terms of, the Obligated Party's license.\n\nAt the election of the Obligated Party, such license may include a term requiring the Licensee to grant a reciprocal license to its Essential Claims (if any) covering the same OASIS Standards Final Deliverable and any such Final Maintenance Deliverable. Such term may require the Licensee to grant licenses to all implementers of such deliverable. The Obligated Party may also include a term providing that such license may be suspended with respect to the Licensee if that Licensee first sues the Obligated Party for infringement by the Obligated Party of any of the Licensee's Essential Claims covering the same OASIS Standards Final Deliverable and any such Final Maintenance Deliverable.\n\n10.2.2 RF on RAND Terms\n\nWith TCs operating under the RF on RAND Terms IPR Mode, license terms that are fair, reasonable, and non-discriminatory beyond those specifically mentioned in Section 10.2.1 may also be included, and such additional RAND terms are left to the Licensees and Obligated Parties involved.\n\n10.2.3 RF on Limited Terms\n\nWith TCs operating under the RF on Limited Terms IPR Mode, Obligated Parties may not impose any further conditions or restrictions beyond those specifically mentioned in Section 10.2.1 on the use of any technology or intellectual property rights, or other restrictions on behavior of the Licensee, but may include reasonable, customary terms relating to operation or maintenance of the license relationship, including the following: choice of law and dispute resolution.\n\n10.3. Non-Assertion Mode TC Requirements\n\n10.3.1. For an OASIS Standards Final Deliverable developed by a Non-Assertion Mode TC, and any Final Maintenance Deliverable with respect to that OASIS Standards Final Deliverable, each Obligated Party in such TC hereby makes the following world-wide \"OASIS Non-Assertion Covenant\".\n\n Each Obligated Party in a Non-Assertion Mode TC irrevocably covenants that, subject to Section 10.3.2 and Section 11 of the OASIS IPR Policy, it will not assert any of its Essential Claims covered by its Contribution Obligations or Participation Obligations against any OASIS Party or third party for making, having made, using, marketing, importing, offering to sell, selling, and otherwise distributing Covered Products that implement an OASIS Standards Final Deliverable developed by that TC and Covered Products that implement any Final Maintenance Deliverable with respect to that OASIS Standards Final Deliverable.\n\n10.3.2. The covenant described in Section 10.3.1 may be suspended or revoked by the Obligated Party with respect to any OASIS Party or third party if that OASIS Party or third party asserts an Essential Claim in a suit first brought against, or attempts in writing to assert an Essential Claim against, a Beneficiary with respect to a Covered Product that implements the same OASIS Standards Final Deliverable or any such Final Maintenance Deliverable.\n\n11. WITHDRAWAL AND TERMINATION\n\nA TC Party may withdraw from a TC at any time by notifying the OASIS TC Administrator in writing of such decision to withdraw. Withdrawal shall be deemed effective when such written notice is sent.\n\n11.1 Withdrawal from a Technical Committee\n\nA TC Party that withdraws from an OASIS Technical Committee shall have Continuing Licensing or Non-Assertion Obligations based on its Contribution Obligations and Participation Obligations as follows:\n\n A TC Party that has incurred neither a Contribution Obligation nor a Participation Obligation prior to withdrawal has no licensing or non-assertion obligations for OASIS Standards Final Deliverable(s) originating from that OASIS TC.\n A TC Party that has incurred a Contribution Obligation prior to withdrawal continues to be subject to its Contribution Obligation.\n A TC Party that has incurred a Participation Obligation prior to withdrawal continues to be subject to its Participation Obligation but only with respect to OASIS Standards Draft Deliverable(s) approved more than seven (7) calendar days prior to its withdrawal.\n\n11.2 Termination of an OASIS Membership\n\nAn OASIS Party that terminates its OASIS membership (voluntarily or involuntarily) is deemed to withdraw from all TCs in which that OASIS Party has TC Member(s) representing it, and such OASIS Party remains subject to Continuing Licensing or Non-Assertion Obligations for each such TC based on its Obligated Party status in that TC on the date that its membership termination becomes effective.\n\n12. LIMITATIONS OF LIABILITY\n\nAll OASIS Deliverables are provided \"as is\", without warranty of any kind, express or implied, and OASIS, as well as all OASIS Parties and TC Members, expressly disclaim any warranty of merchantability, fitness for a particular or intended purpose, accuracy, completeness, non-infringement of third party rights, or any other warranty.\n\nIn no event shall OASIS or any of its constituent parts (including, but not limited to, the OASIS Board of Directors), be liable to any other person or entity for any loss of profits, loss of use, direct, indirect, incidental, consequential, punitive, or special damages, whether under contract, tort, warranty, or otherwise, arising in any way out of this Policy, whether or not such party had advance notice of the possibility of such damages.\n\nIn addition, except for grossly negligent or intentionally fraudulent acts, OASIS Parties and TC Members (or their representatives), shall not be liable to any other person or entity for any loss of profits, loss of use, direct, indirect, incidental, consequential, punitive, or special damages, whether under contract, tort, warranty, or otherwise, arising in any way out of this Policy, whether or not such party had advance notice of the possibility of such damages.\n\nOASIS assumes no responsibility to compile, confirm, update or make public any assertions of Essential Claims or other intellectual property rights that might be infringed by an implementation of an OASIS Deliverable.\n\nIf OASIS at any time refers to any such assertions by any owner of such claims, OASIS takes no position as to the validity or invalidity of such assertions, or that all such assertions that have or may be made have been referred to.\n\n13. GENERAL\n\n13.1. By ratifying this document, OASIS warrants that it will not inhibit the traditional open and free access to OASIS documents for which license and right have been assigned or obtained according to the procedures set forth in this section. This warranty is perpetual and will not be revoked by OASIS or its successors or assigns as to any already adopted OASIS Standards Final Deliverable; provided, however, that neither OASIS nor its assigns shall be obligated to:\n\n 13.1.1. Perpetually maintain its existence; nor\n 13.1.2. Provide for the perpetual existence of a website or other public means of accessing OASIS Standards Final Deliverables; nor\n 13.1.3. Maintain the public availability of any given OASIS Standards Final Deliverable that has been retired or superseded, or which is no longer being actively utilized in the marketplace.\n\n13.2. Where any copyrights, trademarks, patents, patent applications, or other proprietary rights are known, or claimed, with respect to any OASIS Deliverable and are formally brought to the attention of the OASIS TC Administrator, OASIS shall consider appropriate action, which may include disclosure of the existence of such rights, or claimed rights. The OASIS Technical Committee Process shall prescribe the method for providing this information.\n\n 13.2.1. OASIS disclaims any responsibility for identifying the existence of or for evaluating the applicability of any claimed copyrights, trademarks, patents, patent applications, or other rights, and will make no assurances on the validity or scope of any such rights.\n 13.2.2. Where the OASIS TC Administrator is formally notified of rights, or claimed rights under Section 8.8 with respect to entities other than Obligated Parties, the OASIS President shall attempt to obtain from the claimant of such rights a written assurance that any Licensee will be able to obtain the right to utilize, use, and distribute the technology or works when implementing, using, or distributing technology based upon the specific OASIS Standards Final Deliverable (or, in the case of an OASIS Standards Draft Deliverable, that any Licensee will then be able to obtain such a right) under terms that are consistent with this Policy. All such information will be made available to the TC that produced such deliverable, but the failure to obtain such written assurance shall not prevent votes from being conducted, except that the OASIS TC Administrator may defer approval for a reasonable period of time where a delay may facilitate the obtaining of such assurances. The results will, however, be recorded by the OASIS TC Administrator, and made available to the public. The OASIS Board of Directors may also direct that a summary of the results be included in any published OASIS Standards Final Deliverable.\n 13.2.3. Except for the rights expressly provided herein, neither OASIS nor any OASIS Party grants or receives, by implication, estoppel, or otherwise, any rights under any patents or other intellectual property rights of the OASIS Party, OASIS, any other OASIS Party, or any third party.\n\n13.3. Solely for purposes of Section 365(n) of Title 11, United States Bankruptcy Code, and any equivalent law in any foreign jurisdiction, the promises under Section 10 will be treated as if they were a license and any OASIS Party or third-party may elect to retain its rights under this promise if Obligated Party, as a debtor in possession, or a bankruptcy trustee in a case under the United States Bankruptcy Code, rejects any obligations stated in Section 10.\n\n14. Required Notice\n\n14.1 Documents\n\nAny OASIS Deliverable shall include the following notices replacing [copyright year] with the year or range of years of publication (bracketed language, other than the date, need only appear in OASIS Standards Final Deliverable documents):\n\n Copyright \u00a9 OASIS Open [copyright year]. All Rights Reserved.\n\n All capitalized terms in the following text have the meanings assigned to them in the OASIS Intellectual Property Rights Policy (the \"OASIS IPR Policy\"). The full Policy may be found at the OASIS website: [http://www.oasis-open.org/policies-guidelines/ipr]\n\n This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published, and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this section are included on all such copies and derivative works. However, this document itself may not be modified in any way, including by removing the copyright notice or references to OASIS, except as needed for the purpose of developing any document or deliverable produced by an OASIS Technical Committee (in which case the rules applicable to copyrights, as set forth in the OASIS IPR Policy, must be followed) or as required to translate it into languages other than English.\n\n The limited permissions granted above are perpetual and will not be revoked by OASIS or its successors or assigns.\n\n This document and the information contained herein is provided on an \"AS IS\" basis and OASIS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY OWNERSHIP RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. OASIS AND ITS MEMBERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THIS DOCUMENT OR ANY PART THEREOF.\n\n [OASIS requests that any OASIS Party or any other party that believes it has patent claims that would necessarily be infringed by implementations of this OASIS Standards Final Deliverable, to notify OASIS TC Administrator and provide an indication of its willingness to grant patent licenses to such patent claims in a manner consistent with the IPR Mode of the OASIS Technical Committee that produced this deliverable.]\n\n [OASIS invites any party to contact the OASIS TC Administrator if it is aware of a claim of ownership of any patent claims that would necessarily be infringed by implementations of this OASIS Standards Final Deliverable by a patent holder that is not willing to provide a license to such patent claims in a manner consistent with the IPR Mode of the OASIS Technical Committee that produced this OASIS Standards Final Deliverable. OASIS may include such claims on its website, but disclaims any obligation to do so.]\n\n [OASIS takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the implementation or use of the technology described in this OASIS Standards Final Deliverable or the extent to which any license under such rights might or might not be available; neither does it represent that it has made any effort to identify any such rights. Information on OASIS' procedures with respect to rights in any document or deliverable produced by an OASIS Technical Committee can be found on the OASIS website. Copies of claims of rights made available for publication and any assurances of licenses to be made available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementers or users of this OASIS Standards Final Deliverable, can be obtained from the OASIS TC Administrator. OASIS makes no representation that any information or list of intellectual property rights will at any time be complete, or that any claims in such list are, in fact, Essential Claims.]\n\n14.2 Alternative Notice\n\nOther OASIS Deliverables that are primarily intended for machine rather than human consumption and whose format requires terse expression may, as an alternative to Section 14.1, include just the short-form notice as follows replacing [copyright year] with the year or year range of publication:\n\n Copyright \u00a9 OASIS Open [copyright year]. All Rights Reserved.\n Distributed under the terms of the OASIS IPR Policy, [http://www.oasis-open.org/policies-guidelines/ipr], AS-IS, WITHOUT ANY IMPLIED OR EXPRESS WARRANTY; there is no warranty of MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE or NONINFRINGEMENT of the rights of others.\n\n14.3 Additional Copyright Notices\n\nAdditional copyright notices identifying Contributors may also be included with the OASIS copyright notice.\n\nAppendix A. Feedback License\n\nThe \"OASIS ___________ Technical Committee\" is developing technology (the \"OASIS ____________ Deliverable\") as defined by its charter and welcomes input, suggestions and other feedback (\"Feedback\") on the OASIS ____________ Deliverable. By the act of submitting, you (on behalf of yourself if you are an individual, and your organization and its Affiliates if you are providing Feedback on behalf of that organization) agree to the following terms (all capitalized terms are defined in the OASIS Intellectual Property Rights (\"IPR\") Policy, see http://www.oasis-open.org/who/intellectualproperty.php):\n\n Copyright - You (and your represented organization and its Affiliates) grant to OASIS a perpetual, irrevocable, non-exclusive, royalty-free, worldwide copyright license, with the right to directly and indirectly sublicense, to copy, publish, and distribute the Feedback in any way, and to prepare derivative works that are based on or incorporate all or part of the Feedback, solely for the purpose of developing and promoting the OASIS Deliverable and enabling the implementation of the same by Licensees or Beneficiaries.\n Essential Claims - You covenant to grant a patent license or offer an OASIS Non-Assertion Covenant as appropriate under any patent claims that you (or your represented organization or its Affiliates) own or control that become Essential Claims because of the incorporation of such Feedback into the OASIS Standards Final Deliverable, and any Final Maintenance Deliverable with respect to that OASIS Standards Final Deliverable, on terms consistent with Section 10 of the OASIS IPR Policy for the IPR Mode specified in the charter of this OASIS Technical Committee.\n Right to Provide - You warrant to the best of your knowledge that you have rights to provide this Feedback, and if you are providing Feedback on behalf of an organization, you warrant that you have the rights to provide Feedback on behalf of your organization and to bind your organization and its Affiliates to the licensing or non-assertion obligations provided above.\n Confidentiality - You further warrant that no information in this Feedback is confidential, and that OASIS may freely disclose any information in the Feedback.\n No requirement to Use - You also acknowledge that OASIS is not required to incorporate your Feedback into any version of this OASIS Deliverable.\n\n Assent of Feedback Provider:\n By: _________________________ (Signature)\n Name: _______________________\n Title: ________________________ Organization: ________________\n Date: ________________________ Email: _______________________\n\nAppendix B. Copyright License Grant\n\nThe undersigned, on its own behalf and on behalf of its represented organization and its Affiliates, if any, with respect to their collective copyright ownership rights in the Contribution \"__________________,\" grants to OASIS a perpetual, irrevocable, non-exclusive, royalty-free, world-wide copyright license, with the right to directly and indirectly sublicense, to copy, publish, and distribute the Contribution in any way, and to prepare derivative works that are based on or incorporate all or part of the Contribution solely for the purpose of developing and promoting the OASIS Deliverable and enabling the implementation of the same by Licensees or Beneficiaries (all above capitalized terms are defined in the OASIS Intellectual Property Rights (\"IPR\") Policy, see http://www.oasis-open.org/who/intellectualproperty.php).\n\n Assent of the Undersigned:\n By: __________________________ (Signature)\n Name: _______________________\n Title: ________________________ Organization: ________________\n Date: ________________________ Email: _______________________\n\nDates\nApproved: \nWed, 2013-07-31\nEffective: \nWed, 2014-10-15", + "json": "oasis-ipr-policy-2014.json", + "yaml": "oasis-ipr-policy-2014.yml", + "html": "oasis-ipr-policy-2014.html", + "license": "oasis-ipr-policy-2014.LICENSE" + }, + { + "license_key": "oasis-ws-security-spec", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-oasis-ws-security-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oasis WS Security Specification License\n\nOASIS takes no position regarding the validity or scope of any intellectual\nproperty or other rights that might be claimed to pertain to the implementation\nor use of the technology described in this document or the extent to which any\nlicense under such rights might or might not be available; neither does it\nrepresent that it has made any effort to identify any such rights. Information\non OASIS's procedures with respect to rights in OASIS specifications can be\nfound at the OASIS website. Copies of claims of rights made available for\npublication and any assurances of licenses to be made available, or the result\nof an attempt made to obtain a general license or permission for the use of such\nproprietary rights by implementors or users of this specification, can be\nobtained from the OASIS Executive Director.\n\nOASIS invites any interested party to bring to its attention any copyrights,\npatents or patent applications, or other proprietary rights which may cover\ntechnology that may be required to implement this specification. Please address\nthe information to the OASIS Executive Director.\n\nCopyright \u00a9 OASIS Open 2002-2004. All Rights Reserved.\n\nThis document and translations of it may be copied and furnished to others, and\nderivative works that comment on or otherwise explain it or assist in its\nimplementation may be prepared, copied, published and distributed, in whole or\nin part, without restriction of any kind, provided that the above copyright\nnotice and this paragraph are included on all such copies and derivative works.\nHowever, this document itself does not be modified in any way, such as by\nremoving the copyright notice or references to OASIS, except as needed for the\npurpose of developing OASIS specifications, in which case the procedures for\ncopyrights defined in the OASIS Intellectual Property Rights document must be\nfollowed, or as required to translate it into languages other than English.\n\nThe limited permissions granted above are perpetual and will not be revoked by\nOASIS or its successors or assigns. This document and the information contained\nherein is provided on an \"AS IS\" basis and OASIS DISCLAIMS ALL WARRANTIES,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF\nTHE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF\nMERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.", + "json": "oasis-ws-security-spec.json", + "yaml": "oasis-ws-security-spec.yml", + "html": "oasis-ws-security-spec.html", + "license": "oasis-ws-security-spec.LICENSE" + }, + { + "license_key": "ocaml-lgpl-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "OCaml-LGPL-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "OCaml LGPL Linking Exception\n\nAs a special exception to the GNU Lesser General Public License, you may link, \nstatically or dynamically, a \"work that uses the OCaml Core System \" with a \npublicly distributed version of the OCaml Core System to produce an executable \nfile containing portions of the OCaml Core System , and distribute that \nexecutable file under terms of your choice, without any of the additional \nrequirements listed in clause 6 of the GNU Lesser General Public License. By \n\"a publicly distributed version of the OCaml Core System \", we mean either the \nunmodified OCaml Core System as distributed by INRIA , or a modified version of \nthe OCaml Core System that is distributed under the conditions defined in clause \n2 of the GNU Lesser General Public License. This exception does not however \ninvalidate any other reasons why the executable file might be covered by the GNU \nLesser General Public License.", + "json": "ocaml-lgpl-linking-exception.json", + "yaml": "ocaml-lgpl-linking-exception.yml", + "html": "ocaml-lgpl-linking-exception.html", + "license": "ocaml-lgpl-linking-exception.LICENSE" + }, + { + "license_key": "ocb-non-military-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ocb-non-military-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License for Non-Military Software Implementations of OCB\nJanuary 10, 2013\n1 Definitions\n1.1 \"Licensor\" means Phillip Rogaway.\n1.2 \"Licensed Patents\" means any patent that claims priority to United States Patent Application No. 09/918,615 entitled \"Method and Apparatus for Facilitating Efficient Authenticated Encryption,\" and any utility, divisional, provisional, continuation, continuations-in-part, reexamination, reissue, or foreign counterpart patents that may issue with respect to the aforesaid patent application. This includes, but is not limited to, United States Patent No. 7,046,802; United States Patent No. 7,200,227; United States Patent No. 7,949,129; United States Patent No. 8,321,675; and any patent that issues out of United States Patent Application No. 13/669,114.\n1.3 \"Use\" means any practice of any invention claimed in the Licensed Patents.\n1.4 \"Military Use\" means any Use by, in cooperation with, on behalf of, or paid for by: the U.S. Department of Defense; U.S. Armed Forces (including the Army, Navy, Marines, Air Force, and Coast Guard); U.S. Department of Energy; U.S. Department of Homeland Security; U.S. intelligence agencies (including reconnaissance agencies); or foreign counterparts of these organizations.\n1.5 \"Research Use\" means any Use by an accredited academic institution, by a commercial research laboratory, or by an employee or student of such an institution when such Use is made in the course of their employment or studies.\n1.6 \"Noncommercial Use\" means any Use that is not intended for or directed toward commercial advantage or private monetary compensation.\n1.7 \"Software Implementation\" means any practice of any invention claimed in the Licensed Patents that takes the form of software executing on a userprogrammable, general-purpose computer or that takes the form of a computerreadable medium storing such software. Software Implementation does not include, for example, application-specific integrated circuits (ASICs), fieldprogrammable gate arrays (FPGAs), embedded systems, or IP cores.\n2 License Grant\n2.1 License. Subject to your compliance with the terms of this license, including the restrictions set forth in Section 2.2, Licensor hereby grants to you a perpetual, worldwide, non-exclusive, non-transferable, non-sublicenseable, no-charge, royalty-free, irrevocable license to practice any invention claimed in the Licensed Patents (i) for any Research Use, (ii) for any Noncommercial Use, and (iii) in any Software Implementation.\n2.2 Restrictions\n\n2.2.1 The license above does not apply to and no license is granted for any Military Use of the Licensed Patents.\n\n2.2.2\n\nThe license above does not apply to and no license is granted for any Software Implementation that does not include the full text of this license in user-readable source code or documentation. The requirement of this paragraph may be satisfied by presenting the full text of this license to end users during software installation.\n\n2.2.3\n\nIf you or your affiliates institute patent litigation (including, but not limited to, a cross-claim or counterclaim in a lawsuit) against any entity alleging that any Use authorized by this license infringes another patent, then any rights granted to you under this license automatically terminate as of the date such litigation is filed.\n\n3 Disclaimer\n\nYOUR USE OF THE LICENSED PATENTS IS AT YOUR OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELATED TO ANY USE OF THE LICENSED PATENTS, INCLUDING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE.", + "json": "ocb-non-military-2013.json", + "yaml": "ocb-non-military-2013.yml", + "html": "ocb-non-military-2013.html", + "license": "ocb-non-military-2013.LICENSE" + }, + { + "license_key": "ocb-open-source-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ocb-open-source-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License for Open Source Software Implementations of OCB\nJanuary 9, 2013\n1 Definitions\n1.1 \"Licensor\" means Phillip Rogaway.\n1.2 \"Licensed Patents\" means any patent that claims priority to United States Patent Application No. 09/918,615 entitled \"Method and Apparatus for Facilitating Efficient Authenticated Encryption,\" and any utility, divisional, provisional, continuation, continuations-in-part, reexamination, reissue, or foreign counterpart patents that may issue with respect to the aforesaid patent application. This includes, but is not limited to, United States Patent No. 7,046,802; United States Patent No. 7,200,227; United States Patent No. 7,949,129; United States Patent No. 8,321,675; and any patent that issues out of United States Patent Application No. 13/669,114.\n1.3 \"Use\" means any practice of any invention claimed in the Licensed Patents.\n1.4 \"Software Implementation\" means any practice of any invention claimed in the Licensed Patents that takes the form of software executing on a userprogrammable, general-purpose computer or that takes the form of a computerreadable medium storing such software. Software Implementation does not include, for example, application-specific integrated circuits (ASICs), fieldprogrammable gate arrays (FPGAs), embedded systems, or IP cores.\n1.5 \"Open Source Software\" means software whose source code is published and made available for inspection and use by anyone because either (a) the source code is subject to a license that permits recipients to copy, modify, and distribute the source code without payment of fees or royalties, or (b) the source code is in the public domain, including code released for public use through a CC0 waiver. All licenses certified by the Open Source Initiative at opensource.org as of January 9, 2013 and all Creative Commons licenses identified on the creativecommons.org website as of January 9, 2013, including the Public License Fallback of the CC0 waiver, satisfy these requirements for the purposes of this license.\n1.6 \"Open Source Software Implementation\" means a Software Implementation in which the software implicating the Licensed Patents is Open Source Software. Open Source Software Implementation does not include any Software Implementation in which the software implicating the Licensed Patents is combined, so as to form a larger program, with software that is not Open Source Software.\n2 License Grant\n2.1 License. Subject to your compliance with the terms of this license, including the restriction set forth in Section 2.2, Licensor hereby grants to you a perpetual, worldwide, non-exclusive, non-transferable, non-sublicenseable, no-charge,\nroyalty-free, irrevocable license to practice any invention claimed in the Licensed Patents in any Open Source Software Implementation.\n2.2 Restriction. If you or your affiliates institute patent litigation (including, but not limited to, a cross-claim or counterclaim in a lawsuit) against any entity alleging that any Use authorized by this license infringes another patent, then any rights granted to you under this license automatically terminate as of the date such litigation is filed.\n3 Disclaimer\nYOUR USE OF THE LICENSED PATENTS IS AT YOUR OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELATED TO ANY USE OF THE LICENSED PATENTS, INCLUDING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE.", + "json": "ocb-open-source-2013.json", + "yaml": "ocb-open-source-2013.yml", + "html": "ocb-open-source-2013.html", + "license": "ocb-open-source-2013.LICENSE" + }, + { + "license_key": "ocb-patent-openssl-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ocb-patent-openssl-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Patent License for OpenSSL\n1. Definitions\n1.1 \" Licensor\" means Phillip Rogaway. orOne Shields Avenue, Davis, CA 95616-8562.\n1.2 \" Licensed Patents\" means any patent that claims priority to United States Patent Application No. 09/918 ,615 entitled \"Method and Apparatus for Facilitating Efficient Authenticated Encryption,\" and any utili ty, divisional, provisional, continuation, continuat ions in part, reexami nation , reissue, or foreign counterpart patents that may issue with respect to the aforesaid patent application. This includes, but is not limited to, Uni ted States Patent No. 7,046,802; United States Palen I No. 7,200,227; United States Patent No. 7,949, 129; United States Patent No.8 ,321 ,675; and any patent that issues out or Uni ted States Patent Application No. 13/669, 114.\n1.3 \" Use in OpenSSL\" means using, making, copying, modifying, distribu ting, having made, importing or having imported any program, software, or computer system containing or based upon the OpenSSL toolkit, but does not include any imp lementation of the Licensed Patents that is unrelated to the OpenSSL toolkit.\n1.4 \"Licensee\" means the OpenSSL Software Foundation, at 1829 Mount Ephraim Road, Adamstown , MD 21710, its affiliates, assignees. or sllccessors in interest, or anyone using, making, copying, modifying, di stributing, having made, importing, or having imported any program, software, or computer system including or based upon the OpenSSL toolkit, or their customers, supp liers, importers, manufacturers, distributors, or insurers.\n2, Grant of License\n2.1 Licensor hereby grants to Licensee a perpetual, worldwide, non-exclusive, nontransferable, non-sublicenseable, no-charge, royalty-free, irrevocab le license to Use in OpenSSL any invention claimed in the Licensed Patents.\n3. Disclaimer\n3. 1 LICENSEE'S USE OF THE LICENSED PATENTS IS AT LICENSEE'S OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNfNG THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDfNG, WITHOUT LIM ITATION, WARRANTIES OF TITLE, MERCHANTIB ILlTY, FITNESS FOR A PARTICULAR PURPOSE, OR NON INFRfNGEMENT. fN NO EVENT W ILL LICENSOR BE LIABLE FOR ANY CLA IM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELAT ED TO ANY USE OF THE LICENSED PATENTS, INCLUD ING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADV ISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE.\nDated: November 13, 2013\nPhillip Rogaway", + "json": "ocb-patent-openssl-2013.json", + "yaml": "ocb-patent-openssl-2013.yml", + "html": "ocb-patent-openssl-2013.html", + "license": "ocb-patent-openssl-2013.LICENSE" + }, + { + "license_key": "occt-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "OCCT-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Open CASCADE Exception (version 1.0) to GNU LGPL version 2.1.\n\nThe object code (i.e. not a source) form of a \"work that uses the Library\" can incorporate material from a header file that is part of the Library. As a special exception to the GNU Lesser General Public License version 2.1, you may distribute such object code incorporating material from header files provided with the Open CASCADE Technology libraries (including code of CDL generic classes) under terms of your choice, provided that you give prominent notice in supporting documentation to this code that it makes use of or is based on facilities provided by the Open CASCADE Technology software.", + "json": "occt-exception-1.0.json", + "yaml": "occt-exception-1.0.yml", + "html": "occt-exception-1.0.html", + "license": "occt-exception-1.0.LICENSE" + }, + { + "license_key": "occt-pl", + "category": "Copyleft Limited", + "spdx_license_key": "OCCT-PL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open CASCADE Technology Public License \nVersion 6.6, April 2013\nOPEN CASCADE releases and makes publicly available the source code of the software Open CASCADE Technology to the free software development community under the terms and conditions of this license.\n\nIt is not the purpose of this license to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this license 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.\n\nPlease read this license carefully and completely before downloading this software. By downloading, using, modifying, distributing and sublicensing this software, you indicate your acceptance to be bound by the terms and conditions of this license. If you do not want to accept or cannot accept for any reasons the terms and conditions of this license, please do not download or use in any manner this software. \n \n1. Definitions\n\nUnless there is something in the subject matter or in the context inconsistent therewith, the capitalized terms used in this License shall have the following meaning.\n\n\"Applicable Intellectual Property Rights\" means (a) with respect to the Initial Developer, any rights under patents or patents applications or other intellectual property rights that are now or hereafter acquired, owned by or assigned to the Initial Developer and that cover subject matter contained in the Original Code, but only to the extent necessary to use, reproduce, modify, distribute or sublicense the Original Code without infringement; and (b) with respect to You or any Contributor, any rights under patents or patents applications or other intellectual property rights that are now or hereafter acquired, owned by or assigned to You or to such Contributor and that cover subject matter contained in Your Modifications or in such Contributor's Modifications, taken alone or in combination with Original Code.\n\n\"Contributor\" means each individual or legal entity that creates or contributes to the creation of any Modification, including the Initial Developer.\n\n\"Derivative Program\": means a new program combining the Software or portions thereof with other source code not governed by the terms of this License.\n\n\"Initial Developer\": means OPEN CASCADE, with main offices at 1, place des Fr\u00e8res Montgolfier, 78280, Guyancourt, France.\n\n\"Modifications\": mean any addition to, deletion from or change to the substance or the structure of the Software. When source code of the Software is released as a series of files, a Modification is: (a) any addition to, deletion from or change to the contents of a file containing the Software or (b) any new file or other representation of computer program statements that contains any part of the Software. By way of example, Modifications include any debug of, or improvement to, the Original Code or any of its components or portions as well as its next versions or releases thereof.\n\n\"Original Code\": means (a) the source code of the software Open CASCADE Technology originally made available by the Initial Developer under this License, including the source code of any updates or upgrades of the Original Code and (b) the object code compiled from such source code and originally made available by Initial Developer under this License.\n\n\"Software\": means the Original Code, the Modifications, the combination of Original Code and any Modifications or any respective portions thereof.\n\n\"You\" or \"Your\": means an individual or a legal entity exercising rights under this License \n \n2. Acceptance of license \nBy using, reproducing, modifying, distributing or sublicensing the Software or any portion thereof, You expressly indicate Your acceptance of the terms and conditions of this License and undertake to act in accordance with all the provisions of this License applicable to You. \n \n3. Scope and purpose \nThis License applies to the Software and You may not use, reproduce, modify, distribute, sublicense or circulate the Software, or any portion thereof, except as expressly provided under this License. Any attempt to otherwise use, reproduce, modify, distribute or sublicense the Software is void and will automatically terminate Your rights under this License. \n \n4. Contributor license \nSubject to the terms and conditions of this License, the Initial Developer and each of the Contributors hereby grant You a world-wide, royalty-free, irrevocable and non-exclusive license under the Applicable Intellectual Property Rights they own or control, to use, reproduce, modify, distribute and sublicense the Software provided that:\n\nYou reproduce in all copies of the Software the copyright and other proprietary notices and disclaimers of the Initial Developer as they appear in the Original Code and attached hereto as Schedule \"A\" and any other notices or disclaimers attached to the Software and keep intact all notices in the Original Code that refer to this License and to the absence of any warranty;\n\nYou include a copy of this License with every copy of the Software You distribute;\n\nIf you distribute or sublicense the Software (as modified by You or on Your behalf as the case may be), You cause such Software to be licensed as a whole, at no charge, to all third parties, under the terms and conditions of the License, making in particular available to all third parties the source code of the Software;\n\nYou document all Your Modifications, indicate the date of each such Modification, designate the version of the Software You used, prominently include a file carrying such information with respect to the Modifications and duplicate the copyright and other proprietary notices and disclaimers attached hereto as Schedule \"B\" or any other notices or disclaimers attached to the Software with your Modifications.\n\nFor greater certainty, it is expressly understood that You may freely create Derivative Programs (without any obligation to publish such Derivative Program) and distribute same as a single product. In such case, You must ensure that all the requirements of this License are fulfilled for the Software or any portion thereof.\n\n5. Your license \nYou hereby grant all Contributors and anyone who becomes a party under this License a world-wide, non-exclusive, royalty-free and irrevocable license under the Applicable Intellectual Property Rights owned or controlled by You, to use, reproduce, modify, distribute and sublicense all Your Modifications under the terms and conditions of this License.\n\n6. Software subject to license \nYour Modifications shall be governed by the terms and conditions of this License. You are not authorized to impose any other terms or conditions than those prevailing under this License when You distribute and/or sublicense the Software, save and except as permitted under Section 7 hereof.\n\n7. Additional terms \nYou may choose to offer, on a non-exclusive basis, and to charge a fee for any warranty, support, maintenance, liability obligations or other rights consistent with the scope of this License with respect to the Software (the \"Additional Terms\") to the recipients of the Software. However, You may do so only on Your own behalf and on Your sole and exclusive responsibility. You must obtain the recipient's agreement that any such Additional Terms are offered by You alone, and You hereby agree to indemnify, defend and hold the Initial Developer and any Contributor harmless for any liability incurred by or claims asserted against the Initial Developer or any Contributors with respect to any such Additional Terms.\n\n8. Disclaimer of warranty \nThe Software is provided under this License on an \"as is\" basis, without warranty of any kind, including without limitation, warranties that the Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Software is with You.\n\n9. Liability \nUnder no circumstances shall You, the Initial Developer or any Contributor be liable to any person for any direct or indirect damages of any kind including, without limitation, damages for loss of goodwill, loss of data, work stoppage, computer failure or malfunction or any and all other commercial damages or losses resulting from or relating to this License or indirectly to the use of the Software.\n\n10. Trademark \nThis License does not grant any rights to use the trademarks, trade names and domain names \"MATRA\", \"EADS Matra Datavision\", \"CAS.CADE\", \"Open CASCADE\", \"opencascade.com\" and \"opencascade.org\" or any other trademarks, trade names or domain names used or owned by the Initial Developer.\n\n11. Copyright \nThe Initial Developer retains all rights, title and interest in and to the Original Code. You may not remove the copyright \u00a9 notice which appears when You download the Software.\n\n12. Term \nThis License is granted to You for a term equal to the remaining period of protection covered by the intellectual property rights applicable to the Original Code.\n\n13. Termination \nIn case of termination, as provided in Section 3 above, You agree to immediately stop any further use, reproduction, modification, distribution and sublicensing of the Software and to destroy all copies of the Software that are in Your possession or control. All sublicenses of the Software which have been properly granted prior to termination shall survive any termination of this License. In addition, Sections 5, 8 to 11, 13.2 and 15.2 of this License, in reason of their nature, shall survive the termination of this License for a period of fifteen (15) years.\n\n14. Versions of the license \nThe Initial Developer may publish new versions of this License from time to time. Once Original Code has been published under a particular version of this License, You may choose to continue to use it under the terms and conditions of that version or use the Original Code under the terms of any subsequent version of this License published by the Initial Developer.\n\n15. Miscellaneous \n15.1 Relationship of the Parties This License will not be construed as creating an agency, partnership, joint venture or any other form of legal association between You and the Initial Developer, and You will not represent to the contrary, whether expressly, by implication or otherwise.\n\n15.2 Independent Development Nothing in this License will impair the Initial Developer's right to acquire, license, develop, have others develop for it, market or distribute technology or products that perform the same or similar functions as, or otherwise compete with, Modifications, Derivative Programs, technology or products that You may develop, produce, market or distribute.\n\n15.3 Severability If for any reason a court of competent jurisdiction finds any provision of this License, or portion thereof, to be unenforceable, that provision of the License will be enforced to the maximum extent permissible so as to effect the economic benefits and intent of the parties, and the remainder of this License will continue in full force and extent.\n\nEND OF THE TERMS AND CONDITIONS OF THIS LICENSE\n\nOPEN CASCADE is a French soci\u00e9t\u00e9 par actions simplifi\u00e9e having its registered head office at 1, place des Fr\u00e8res Montgolfier, 78280, Guyancourt, France and main offices at 1, place des Fr\u00e8res Montgolfier, 78280, Guyancourt, France. Its web site is located at the following address opencascade.com\n\nOpen CASCADE Technology Public License \nSchedule \"A\"\n\nThe content of this file is subject to the Open CASCADE Technology Public License (the \"License\"). You may not use the content of this file except in compliance with the License. Please obtain a copy of the License at opencascade.com and read it completely before using this file.\n\nThe Initial Developer of the Original Code is OPEN CASCADE, with main offices at 1, place des Fr\u00e8res Montgolfier, 78280, Guyancourt, France. The Original Code is copyright \u00a9 OPEN CASCADE SAS, 2001. All rights reserved. \"The Original Code and all software distributed under the License are distributed on an \"AS IS\" basis, without warranty of any kind, and the Initial Developer hereby disclaims all such warranties, including without limitation, any warranties of merchantability, fitness for a particular purpose or non-infringement.\n\nPlease see the License for the specific terms and conditions governing rights and limitations under the License\". \nEnd of Schedule \"A\"\n\nOpen CASCADE Technology Public License \nSchedule \"B\"\n\n\"The content of this file is subject to the Open CASCADE Technology Public License (the \"License\"). You may not use the content of this file except in compliance with the License. Please obtain a copy of the License at opencascade.com and read it completely before using this file.\n\nThe Initial Developer of the Original Code is OPEN CASCADE, with main offices at 1, place des Fr\u00e8res Montgolfier, 78280, Guyancourt, France. The Original Code is copyright \u00a9 Open CASCADE SAS, 2001. All rights reserved.\n\nModifications to the Original Code have been made by . Modifications are copyright \u00a9 [Year to be included]. All rights reserved.\n\nThe software Open CASCADE Technology and all software distributed under the License are distributed on an \"AS IS\" basis, without warranty of any kind, and the Initial Developer hereby disclaims all such warranties, including without limitation, any warranties of merchantability, fitness for a particular purpose or non-infringement.\n\nPlease see the License for the specific terms and conditions governing rights and limitations under the License\" \nEnd of Schedule \"B\"", + "json": "occt-pl.json", + "yaml": "occt-pl.yml", + "html": "occt-pl.html", + "license": "occt-pl.LICENSE" + }, + { + "license_key": "oclc-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-oclc-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OCLC Research Public License 1.0\nTerms & Conditions Of Use\nNovember, 2000\nCopyright \u00a9 2000. OCLC Research. All Rights Reserved\n\nPLEASE READ THIS DOCUMENT CAREFULLY. BY DOWNLOADING OR USING THE CODE BASE AND DOCUMENTATION ACCOMPANYING THIS LICENSE (THE \"License\"), YOU AGREE TO THE FOLLOWING TERMS AND CONDITIONS OF THIS LICENSE.\nSection One: Your Rights\n\nSubject to these terms and conditions of this License, the OCLC Office of Research (the \"Original Contributor\") and each subsequent contributor (collectively with the Original Contributor, the \"Contributors\") hereby grants you a non-exclusive, worldwide, no-charge, transferable, copyright license to execute, prepare derivative works of, and distribute (internally and externally), for commercial and noncommercial purposes, the original code contributed by Original Contributor and all Modifications (collectively called the \"Program\").\n\nThis non-exclusive license (with respect to the grant from a particular Contributor) automatically terminates for any entity that initiates legal action for intellectual property infringement against such Contributor as of the initiation of such action.\nSection Two: Your License Grant\n\nIf you make a Modification and distribute it externally you are a Contributor, and you must provide such Modification in source code form to the Original Contributor within thirty (30) days of such distribution under the terms of the license in Section 1 above in accordance with the instructions below. A \"Modification\" to the Program is any addition to or deletion from the contents of any file of the Program or of any Modifications and any new file that contains any part of the Program or of any Modifications.\n\nAs a Contributor you represent that your contributions are your original creation(s) and, to the best of your knowledge, no third party has any claim (including but not limited to intellectual property claims) relating to your Modification. You represent that your contribution submission includes complete details of any license or other restriction associated with any part of your Modification (including a copy of any applicable license agreement).\n\nIf, after submitting your contribution, you learn of a third party claim or other restriction relating to your contribution, you shall promptly modify your contribution submission and take all reasonable steps to inform those who may have received the Program containing such Modification.\nSection Three: Redistribution\n\nIf you distribute the Program or any derivative work of the Program in a form to which the recipient can make Modifications, you must ensure that the recipient of the Program or derivative work of the Program accepts the terms of this License with respect to the Program and any Modifications included your distribution. In addition, in each source and data file of the Program and any Modification you distribute must contain the following:\n\n \"The contents of this file, as updated from time to time by the OCLC Office of Research, are subject to OCLC Research Public License Version 1.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a current copy of the License at http://purl.oclc.org/oclc/research/ORPL/.\n\n Software distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.\n\n This software consists of voluntary contributions made by many individuals on behalf of OCLC Research. For more information on OCLC Research, please see http://www.oclc.org/oclc/research/.\n\n The Original Code is .\n\n The Initial Developer of the Original Code is . Portions created by are Copyright (C) . All Rights Reserved.\n\n Contributor(s): .\"\n\nIf you redistribute the Program or any derivative work of the Program in a form to which the recipient can not make Modifications, you must include the following in appropriate and conspicuous locations:\n\n \"Includes software, which is Copyright (c) 2000- (insert then current year) OCLC OCLC Research and others. All rights reserved.\"\n\nAny redistribution must be made without any further restriction on the recipient's exercise of the rights granted herein.\nSection Four: Termination\n\nIf you fail to comply with this License, your rights (but not your obligations) under this License shall terminate automatically unless you cure such breach within thirty days of becoming aware of the noncompliance. All sublicenses granted by you which preexist such termination and are properly granted shall survive such termination.\nSection Five: Other Terms\n\nExcept for the copyright notices required above or as otherwise agreed in writing, you may not use any trademark of any of the Contributors.\n\nAll transfers of the Program or any part thereof shall be made in compliance with U.S. Trade regulations or other restrictions of the U.S. Department of Commerce, as well as other similar trade or commerce restrictions which might apply.\n\nAny patent obtained by any party covering the Program or any part thereof must include a provision providing for the free, perpetual and unrestricted commercial and noncommercial use by any third party.\n\nIf, 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.\n\nIf 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.\n\nYOU AGREE THAT THE PROGRAM IS PROVIDED AS-IS, WITHOUT WARRANTY OF ANY KIND (EITHER EXPRESS OR IMPLIED) INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTY OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND ANY WARRANTY OF NON INFRINGEMENT. IN NO EVENT SHALL THE 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 THE PROGRAM, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nThe Original Contributor from time to time may change this License, and the amended license will apply to all copies of the Program downloaded after the new license is posted. This License provides you no implied rights or licenses to the intellectual property of any Contributor.", + "json": "oclc-1.0.json", + "yaml": "oclc-1.0.yml", + "html": "oclc-1.0.html", + "license": "oclc-1.0.LICENSE" + }, + { + "license_key": "oclc-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "OCLC-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OCLC Research Public License 2.0\nTerms & Conditions Of Use\nMay, 2002\nCopyright (C) 2002. OCLC Research. All Rights Reserved\n \nPLEASE READ THIS DOCUMENT CAREFULLY. BY DOWNLOADING OR USING THE CODE BASE \nAND/OR DOCUMENTATION ACCOMPANYING THIS LICENSE (THE \"License\"), YOU AGREE TO \nTHE FOLLOWING TERMS AND CONDITIONS OF THIS LICENSE. \n\nSection 1.\tYour Rights\n\n\tSubject to these terms and conditions of this License, the OCLC Office of Research (the \n\"Original Contributor\") and each subsequent contributor (collectively with the Original Contributor, the \n\"Contributors\") hereby grant you a non-exclusive, worldwide, no-charge, transferable license to execute, \nprepare derivative works of, and distribute (internally and externally), for commercial and noncommercial \npurposes, the original code contributed by Original Contributor and all Modifications (collectively called \nthe \"Program\").\n\nSection 2.\tDefinitions \n\nA \"Modification\" to the Program is any addition to or deletion from the contents of any file of \nthe Program and any new file that contains any part of the Program. If you make a Modification and \ndistribute the Program externally you are a \"Contributor.\" The distribution of the Program must be under \nthe terms of this license including those in Section 3 below. \n\nA \"Combined Work\" results from combining and integrating all or parts of the Program with \nother code. A Combined Work may be thought of as having multiple parents or being result of multiple \nlines of code development. \n\nSection 3.\tDistribution Licensing Terms \n\nA.\tGeneral Requirements\n\nExcept as necessary to recognize third-party rights or third-party restriction (see \nbelow), a distribution of the Program in any of the forms listed below must not put any \nfurther restrictions on the recipient's exercise of the rights granted herein.\n\nAs a Contributor, you represent that your Modification(s) are your original creation(s) \nand, to the best of your knowledge, no third party has any claim (including but not \nlimited to intellectual property claims) relating to your Modification(s). You represent \nthat each of your Modifications includes complete details of any third-party right or \nother third-party restriction associated with any part of your Modification (including a \ncopy of any applicable license agreement).\n\nThe Program must be distributed without charge beyond the costs of physically \ntransferring the files to the recipient.\n\nThis Warranty Disclaimer/Limitation of Liability must be prominently displayed with \nevery distribution of the Program in any form:\n\nYOU AGREE THAT THE PROGRAM IS PROVIDED AS-IS, WITHOUT WARRANTY \nOF ANY KIND (EITHER EXPRESS OR IMPLIED). ACCORDINGLY, OCLC MAKES \nNO WARRANTIES, REPRESENTATIONS OR GUARANTEES, EITHER EXPRESS \nOR IMPLIED, AND DISCLAIMS ALL SUCH WARRANTIES, REPRESENTATIONS OR \nGUARANTEES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES \nOF MERCHANTABILITY AND FITNESS FOR ANY PARTICULAR PURPOSE, AS TO: \n(A) THE FUNCTIONALITY OR NONINFRINGEMENT OF PROGRAM, ANY \nMODIFICATION, A COMBINED WORK OR AN AGGREGATE WORK; OR (B) THE \nRESULTS OF ANY PROJECT UNDERTAKEN USING THE PROGRAM, ANY \nMODIFICATION, A COMBINED WORK OR AN AGGREGATE WORK. IN NO EVENT \nSHALL THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, CONSEQUENTIAL OR ANY OTHER \nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE \nGOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS \nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, \nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING \nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THE \nPROGRAM, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. YOU \nHEREBY WAIVE ANY CLAIMS FOR DAMAGES OF ANY KIND AGAINST \nCONTRIBUTORS WHICH MAY RESULT FROM YOUR USE OF THE PROGRAM.\n\nB.\tRequirements for a Distribution of Modifiable Code \n\nIf you distribute the Program in a form to which the recipient can make Modifications \n(e.g. source code), the terms of this license apply to use by recipient. In addition, each \nsource and data file of the Program and any Modification you distribute must contain \nthe following notice: \n\n\"Copyright (c) 2000- (insert then current year) OCLC Online Computer Library Center, \nInc. and other contributors. All rights reserved. The contents of this file, as updated \nfrom time to time by the OCLC Office of Research, are subject to OCLC Research \nPublic License Version 2.0 (the \"License\"); you may not use this file except in \ncompliance with the License. You may obtain a current copy of the License at \nhttp://purl.oclc.org/oclc/research/ORPL/. Software distributed under the License is \ndistributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express \nor implied. See the License for the specific language governing rights and limitations \nunder the License. This software consists of voluntary contributions made by many \nindividuals on behalf of OCLC Research. For more information on OCLC Research, \nplease see http://www.oclc.org/oclc/research/. The Original Code is \n . The Initial Developer of the Original Code is \n . Portions created by are \nCopyright (C) . All Rights Reserved. Contributor(s): \n .\"\n\nC.\tRequirements for a Distribution of Non-modifiable Code \n\nIf you distribute the Program in a form to which the recipient cannot make Modifications \n(e.g. object code), the terms of this license apply to use by recipient and you must \ninclude the following statement in appropriate and conspicuous locations:\n\n\"Copyright (c) 2000- (insert then current year) OCLC Online Computer Library Center, \nInc. and other contributors. All rights reserved.\"\n\nIn addition, the source code must be included with the object code distribution or the \ndistributor must provide the source code to the recipient upon request.\n\nD.\tRequirements for a Combined Work Distribution\n\nDistributions of Combined Works are subject to the terms of this license and must be \nmade at no charge to the recipient beyond the costs of physically transferring the files \nto recipient.\n\nA Combined Work may be distributed as either modifiable or non-modifiable code. The \nrequirements of Section 3.B or 3.C above (as appropriate) apply to such distributions.\n\nAn \"Aggregate Work\" is when the Program exists, without integration, with other \nprograms on a storage medium. This License does not apply to portions of an \nAggregate Work which are not covered by the definition of \"Program\" provided in this \nLicense. You are not forbidden from selling an Aggregate Work. However, the Program \ncontained in an Aggregate Work is subject to this License. Also, should the Program \nbe extracted from an Aggregate Work, this License applies to any use of the Program \napart from the Aggregate Work.\n\nSection 4.\tLicense Grant\n\nFor purposes of permitting use of your Modifications by OCLC and other licensees \nhereunder, you hereby grant to OCLC and such other licensees the non-exclusive, worldwide, royalty-\nfree, transferable, sublicenseable license to execute, copy, alter, delete, modify, adapt, change, revise, \nenhance, develop, publicly display, distribute (internally and externally) and/or create derivative works \nbased on your Modifications (and derivative works thereof) in accordance with these Terms. This Section \n4 shall survive termination of this License for any reason.\n\nSection 5.\tTermination of Rights\n\nThis non-exclusive license (with respect to the grant from a particular Contributor) \nautomatically terminates for any entity that initiates legal action for intellectual property infringement (with \nrespect to the Program) against such Contributor as of the initiation of such action.\n\nIf you fail to comply with this License, your rights (but not your obligations) under this \nLicense shall terminate automatically unless you cure such breach within thirty (30) days of becoming \naware of the noncompliance. All sublicenses granted by you which preexist such termination and are \nproperly granted shall survive such termination.\n\nSection 6.\tOther Terms\n\nExcept for the copyright notices required above, you may not use any trademark of any of \nthe Contributors without the prior written consent of the relevant Contributor. You agree not to remove, \nalter or obscure any copyright or other proprietary rights notice contained in the Program. \n\nAll transfers of the Program or any part thereof shall be made in compliance with U.S. \nimport/export regulations or other restrictions of the U.S. Department of Commerce, as well as other \nsimilar trade or commerce restrictions which might apply.\n\nAny patent obtained by any party covering the Program or any part thereof must include a \nprovision providing for the free, perpetual and unrestricted commercial and noncommercial use by any \nthird party.\n\nIf, as a consequence of a court judgment or settlement relating to intellectual property \ninfringement or any other cause of action, conditions are imposed on you that contradict the conditions of \nthis License, such conditions do not excuse you from compliance with this License. If you cannot \ndistribute the Program so as to simultaneously satisfy your obligations under this License and such other \nconditions, you may not distribute the Program at all. For example, if a patent license would not permit \nroyalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, \nyou could not satisfy both the patent license and this License, and you would be required to refrain \nentirely from distribution of the Program.\n\nIf you learn of a third party claim or other restriction relating to a Program you have already \ndistributed you shall promptly redo your Program to address the issue and take all reasonable steps to \ninform those who may have received the Program at issue. An example of an appropriate reasonable \nstep to inform would be posting an announcement on an appropriate web bulletin board. \n\nThe provisions of this License are deemed to be severable, and the invalidity or unenforceability of \nany provision shall not affect or impair the remaining provisions which shall continue in full force and effect. In \nsubstitution for any provision held unlawful, there shall be substituted a provision of similar import reflecting the \noriginal intent of the parties hereto to the extent permissible under law.\n\nThe Original Contributor from time to time may change this License, and the amended \nlicense will apply to all copies of the Program downloaded after the new license is posted. This License \ngrants only the rights expressly stated herein and provides you with no implied rights or licenses to the \nintellectual property of any Contributor.\n\n\t\tThis License is the complete and exclusive statement of the agreement between the \nparties concerning the subject matter hereof and may not be amended except by the written agreement of \nthe parties. This License shall be governed by and construed in accordance with the laws of the State of \nOhio and the United States of America, without regard to principles of conflicts of law.", + "json": "oclc-2.0.json", + "yaml": "oclc-2.0.yml", + "html": "oclc-2.0.html", + "license": "oclc-2.0.LICENSE" + }, + { + "license_key": "ocsl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ocsl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Version 1.0\nORACLE COMMUNITY SOURCE LICENSE\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ORACLE COMMUNITY SOURCE LICENSE (\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES YOUR ACCEPTANCE OF THIS AGREEMENT.\n1. RIGHTS GRANTED.\n\nOracle Corporation (\"Oracle\") hereby grants You (as either an individual or a legal entity exercising rights under this license) a worldwide, royalty-free, non-exclusive copyright license to use, copy, modify, distribute and sublicense the software program accompanying this license (the \"Program\"), including any end user documentation accompanying the software program (the \"Documentation\"), in source and binary forms. Oracle also grants You a worldwide, royalty-free, non-exclusive patent license under Oracle's Licensed Patents solely to make, use, sell, offer to sell, import and otherwise transfer the Program in source code and object code form and to sublicense, directly and indirectly, such rights. This license shall not apply to any modifications of the Program or to any combination of the Program with any other technology. \"Licensed Patents\" shall mean patent claims that are licensable by Oracle and that are necessarily infringed by the use or sale of the Program. You agree not to remove any product identification, copyright notices, or other notices or proprietary restrictions contained in the Programs.\n\nOther than as expressly provided in this paragraph, You receive no right or license to the intellectual property of Oracle under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.\n2. DISTRIBUTION REQUIREMENTS.\n\nIf You choose to distribute the Program, You must also comply with the following requirements:\n\n 1. If You distribute the Program in source code form, you must license the Program under the same terms as set forth in this Agreement;\n 2. If You distribute the Program in object code form, You must make the source code for the Program available on a medium customarily used for software exchange;\n 3. If You distribute the Program in object code form, You may do so under Your own license agreement provided that Your license:\n 1. does not conflict with the terms and conditions of this Agreement;\n 2. effectively disclaims on behalf of Oracle all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantibilty or fitness for a particular purpose;\n 3. effectively excludes Oracle's liability for ALL damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;\n 4. states that any provisions that differ from this Agreement are offered by You alone; and\n 5. states that source code for the Program is available from You and informs licensees how to obtain the source code from You.\n 4. Any distribution of the Program must contain the following copyright notice in a conspicuous location:\n \"Copyright 1999, 2000 Oracle Corporation. All rights reserved.\"\n In addition, if You modify the Program, you must identify yourself as the author of the modification in such a way that allows subsequent recipients to identify the originator of the modification.\n\n3. ADDITIONAL TERMS OFFERED BY YOU.\n\nIn distributing the Program, You may choose to accept certain responsibilities regarding the Program with respect to end users, business partners and the like. If You choose to offer terms in addition to those provided in this Agreement, for example warranty, support or indemnity terms, You may do so solely on Your own behalf and You agree to indemnify, defend and hold Oracle harmless for any liability, damages or losses arising from claims brought by a third party against Oracle related to any such additional terms. In addition, You agree to indemnify Oracle for any liability, damages or losses arising from a claim brought by a third party that Your distribution of the Program in a modified format or as combined with other technology infringes a copyright, patent, trade secret or other intellectual property right. For purposes of clarity, You shall not have an obligation to indemnify Oracle for a claim of infringement to the extent such a claim is based on the Program, in its unmodified or standalone form, infringing a third party's intellectual property rights. You agree that You will not enter into any settlement that binds Oracle without Oracle's prior written consent.\n4. PUBLICITY.\n\nYou may not use \"Oracle\", any term beginning with the letters \"Ora\", any other term likely to cause confusion with \"Oracle\" or any trademarks adopted by Oracle to identify the Program as any portion of your tradename or trademark or to otherwise endorse or promote products derived from the Program.\n5. NO WARRANTY.\n\nThis Program is provided \"as is\", without warranty of any kind. ALL EXPRESSED OR IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OR MERCHANTIBILITY, NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE, ARE HEREBY DISCLAIMED.\n6. LIABILITY.\n\nIN NO EVENT SHALL ORACLE CORPORATION 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 PROGRAM, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n7. GENERAL.\n\nYour rights under this Agreement shall immediately terminate if You fail to comply with any of the material terms of this Agreement. In addition, if You institute patent litigation against Oracle with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by Oracle to You under this Agreement shall automatically terminate as of the date such litigation is filed. In addition, if You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program infringes Your patent(s) or contributes to or induces infringement of Your patent(s), then any patent rights granted to You under this Agreement shall automatically terminate as of the date the litigation is filed. Upon termination of this Agreement, You agree to immediately cease use and distribution of the Program. However, Your obligations under Paragraph 3 (\"Additional Terms Offered By You\") of this Agreement shall survive termination.\n\nThe Program is a \"commercial item\" as defined in FAR 2.101. Government software rights in the Program include only those rights customarily provided to the public as defined in this License. This customary commercial license in computer software is provided in accordance with FAR 12.212 (Computer Software) and, for the Department of Defense purchases, DFAR 227.7202-3 (Rights in Commercial Computer Software or Computer Software Documentation). Accordingly, all U.S. Government End Users acquire Program with only those rights set forth herein.\n\nYou agree to comply fully with all laws and regulations of the United States and other countries (\"Export Laws\")to assure that neither the Program, nor any direct products thereof are (1) exported, directly or indirectly, in violation of Export Laws, or (2) are used for any purpose prohibited by Export Laws, including, without limitation, nuclear, chemical, or biological weapons proliferation.\n\nIf any provision or provisions of this Agreement shall be held to be invalid, illegal or unenforceable, the validity, legality and enforceability of the remaining provisions shall not in any way be affected or impaired thereby. This Agreement will be governed by and construed under the laws of the State of California, without giving effect to such state's conflict of law principles. Any legal action or proceeding relating to this Agreement shall be instituted in a state or federal court in San Francisco or San Mateo County, California. You agree to submit to the jurisdiction of, and agree that venue is proper in, these courts in any such legal action or proceeding.\n\nThis Agreement constitutes the entire agreement of the parties concerning its subject matter and supersedes any and all prior or contemporaneous, written or oral negotiations, correspondence, understandings and agreements between the parties respecting the subject matter of this Agreement. Only Oracle may modify this Agreement. Oracle may choose to publish new versions of this Agreement from time to time. Each new version of this Agreement will be given a distinguishing version number. The Program may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, You may elect to distribute the Program under the new version. The failure of Oracle to enforce any of the provisions of this Agreement shall not be construed to be a waiver of the right of Oracle to later enforce such provisions.", + "json": "ocsl-1.0.json", + "yaml": "ocsl-1.0.yml", + "html": "ocsl-1.0.html", + "license": "ocsl-1.0.LICENSE" + }, + { + "license_key": "oculus-sdk", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-oculus-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Effective date: 6/1/2020\n\nCopyright \u00a9 Facebook Technologies, LLC and its affiliates. All rights reserved.\n\nThis Oculus SDK License Agreement (\u201cAgreement\u201d) is a legal agreement between you and Oculus governing your use of our Oculus Software Development Kit. Oculus Software Development Kit means any SDK, application programming interfaces (\u201cAPIs\u201d), tools, plugins, code, technology, specification, documentation, Platform Services, and/or content made available by us to others, including app developers and content providers (collectively, the \u201cSDK\u201d).\n\nBy downloading or using our SDK, you are agreeing to this Agreement along with other applicable terms and conditions such as the additional terms or documents accompanying the SDK, the Oculus Terms of Service, and our Privacy Policy (collectively, \u201cTerms\u201d). If you use the SDK as an interface to, or in conjunction with other Oculus products or services, then the terms for those other products or services also apply.\n\nHere, \"Oculus\" means Facebook Technologies, LLC, formerly known as Oculus VR, LLC, a Delaware limited liability company with its principal place of business at 1 Hacker Way, Menlo Park, California 94025, United States unless set forth otherwise. We may refer to \"Oculus\" as \"we\", \"our\", or \"us\" in the Agreement.\n\nYou may not use the SDK and may not accept the Agreement if (1) you are a person with whom Oculus is prohibited from transacting business under applicable law, or (2) you are a person barred from using or receiving the SDK by Oculus or under the applicable laws of the United States or other countries including the country in which you are resident or from which you use the SDK. If you are using the SDK on behalf of an entity, you represent and warrant that you have authority to bind that entity to the Agreement and by accepting the Agreement, you are doing so on behalf of that entity (and all references to \"you\" in the Agreement refer to that entity).\n\nThis Agreement requires the resolution of most disputes between you and Oculus by binding arbitration on an individual basis; class actions and jury trials are not permitted.\n\n1. License Grant\n1.1 License. Subject to the Terms and the restrictions in this Section, Oculus hereby grants you a limited, royalty-free, non-exclusive, non-transferrable, non-sublicensable, revocable copyright license (\u201cLicense\u201d) during the term of this Agreement to use and reproduce the SDK solely to develop, test, or distribute your Application (defined below) and to enable you and/or your end users access to Oculus features through your Application. You may only use the SDK to develop Applications in connection with Oculus approved hardware and software products (\u201cOculus Approved Products\u201d) unless the documentation accompanying the SDK expressly authorizes broader use such as with other third-party platforms.\n\n1.1.1 If the SDK includes any libraries, sample source code, or other materials that we make available specifically for incorporation in your Application (as indicated by applicable documentation), you may incorporate those materials and reproduce and distribute them as part of your Application, including by distributing those materials to third parties contributing to your Application.\n\n1.1.2 The SDK may include other content (e.g., sample code) that is for demonstration, reference, or other purposes and is subject to terms and conditions included with such materials. Such materials will be clearly marked in the applicable documentation. Absent such additional terms and conditions, you may modify, distribute, and sublicense any sample source made available as part of the SDK pursuant to the Terms.\n\n1.1.3 The SDK may include Oculus content that is subject to your additional right to display the content to your end users through the use of the corresponding SDK, as contemplated by the documentation accompanying such SDK. For example, the SDK may include avatars that you may display to your end users.\n\n1.2 General Restrictions. The License grant in this Section is solely for the purpose of developing, testing, and promoting your engines, tools, applications, content, games and demos, or other products and features (collectively, \u201cApplication\u201d) and providing you and/or your end users access to Oculus services and features through your Application as contemplated by applicable documentation accompanying the SDK. You may not (or allow those acting on your behalf to):\n\n1.2.1 modify or create derivative works from any SDK or its component (other than sample source code described in this Section or expressly authorized by the documents accompanying the SDK);\n\n1.2.2 misrepresent or mask either your identity or your Application's identity when using the SDK or developer accounts;\n\n1.2.3 attempt to circumvent any limitations documented with the SDK (e.g., limiting the number of requests you may make or end users you may serve);\n\n1.2.4 reverse engineer, decompile, disassemble, or otherwise attempt to extract the source code from the SDK, except to the extent that applicable law expressly permits despite this limitation;\n\n1.2.5 alter, restrict, or interfere with the normal operation or functionality of the SDK, the Oculus hardware or software, or Oculus Approved Products, including, but not limited to: (a) the behavior of the \u201cOculus button\u201d and \u201cXBox button\u201d implemented by the Oculus system software; (b) any on-screen messages or information; (c) the behavior of the proximity sensor in the Oculus hardware implemented by the Oculus system software; (d) any Oculus hardware or software security features; (e) any end user's settings; and (f) the Oculus Flash Screen Warnings or Health and Safety Warnings;\n\n1.2.6 use the SDK or your Application in a manner that violates: (a) the Oculus Data Use Policy (where applicable); (b) the Oculus Content Guidelines, or other applicable terms and policies made available on our Developer Policy portal; (c) any rights of Oculus or third parties; (d) applicable laws (such as laws regarding import, export, privacy, health & safety); or (e) other terms of service with Oculus or its affiliates;\n\n1.2.7 remove, obscure, or alter any Oculus Terms or any links to or notices of those Terms; or\n\n1.2.8 use or redistribute the SDK or any portion thereof in any manner that would cause the SDK (or any portion thereof) or Oculus to become subject to the terms of any open source license or other restrictions.\n\n1.3 Distribution and Sublicense Restrictions. The redistribution and sublicense rights under this Section are further subject to the following restrictions: (1) redistribution of sample source code or other materials must include the following copyright notice: \u201cCopyright \u00a9 Facebook Technologies, LLC and its affiliates. All rights reserved;\u201d and (2) If the sample source code or other materials include a \"License\" or \"Notice\" text file, you must provide a copy of the License or Notice file with the sample code.\n\n1.4 Privacy and Security.\n\n1.4.1 You are responsible for the data of your Application and agree to comply with all applicable privacy and data protection laws, as well as our applicable terms and policies, particularly the Oculus Developer Data Use Policy. You represent and warrant that you have provided robust and sufficiently prominent notice to users regarding data processing that includes, at a minimum, that third parties, including Oculus and its affiliates, may collect or receive information from your Application.\n\n1.4.2 For purposes of the GDPR, you acknowledge and agree that you are a separate and independent controller of the Developer User Data (as defined in the Oculus Developer Data Use Policy) and Facebook Technologies Ireland Limited (an affiliate of Oculus) is a separate and independent controller of the Oculus User Data (as defined in the Oculus Developer Data Use Policy). The parties do not and will not process Developer User Data nor Oculus User Data as joint controllers. Each party shall comply with the obligations that apply to it as a controller under the GDPR, and each party shall be individually and separately responsible for its own compliance.\n\n1.4.3 Notwithstanding the foregoing, to the extent the Developer User Data contain personal data which you process subject to the GDPR, you acknowledge and agree that only for purposes of providing/operating some APIs (for example, Spatial Audio VoIP API) as described in the Data Processing Terms, you have instructed Facebook Technologies Ireland Limited to process such personal data on your behalf as your processor pursuant to this Agreement and the Data Processing Terms, which are incorporated herein by reference.\n\n1.4.4 \u201cPersonal data,\u201d \u201ccontroller,\u201d \u201cprocessor,\u201d and \u201cprocess\u201d in this Section have the meanings set out in the Data Processing Terms.\n\n1.5 No Obligations. You have no obligations under this Agreement to license or make available your Application to Oculus or any third parties. Nothing in this Agreement obligates Oculus to enable you or any of your Applications to access, interact with, or retrieve or publish content to any Oculus platform or service. However, Oculus may require you to agree to additional terms as a condition of providing you with such platform services in connection with your use of the SDK. You acknowledge and agree that Oculus may develop products or services that may compete with your Application or any other products or services of yours.\n\n2. Oculus Platform Services\nOculus and/or its affiliates makes certain Platform Services (defined below) available to you to include and enable in your Application on our Platform. An Application that enables or includes any Platform Service must implement the Oculus Platform Framework with the Application. Once your Application has been authorized for use of the Platform Services, you are not required to update your Application to include new Platform Services that Oculus and/or its affiliates may make available as part of the Oculus Platform Framework. For more information, please visit https://developer.oculus.com.\n\n2.1 For the purpose of this Section,\n\n2.1.1 \u201cApplication Services\u201d means services provided by Oculus and/or its affiliates associated with the Platform, including, but not limited to, in-app purchasing, multiplayer matchmaking, friends, leader boards, achievements, Virtual Reality Real Time Systems (\u201cVERTS\u201d), voice over IP and cloud saves, which list may be changed from time to time in Oculus' or its affiliates\u2019 sole discretion.\n\n2.1.2 \"Oculus Platform Framework\" means the suite of Oculus platform services, including, but not limited to, the Oculus file distribution and update system (enabling distribution and updates of Applications by Oculus and/or its affiliates, including through generated activation Keys), entitlement system, and account authentication, which list may be changed from time to time in Oculus' or its affiliates\u2019 sole discretion.\n\n2.1.3 \"Platform\" means the virtual, mixed, and augmented reality platform made available by Oculus and/or its affiliates, including, but not limited to, the user experience, user interface, store, and social features, usable on hardware approved by Oculus or its affiliates or any third-party device or operating system, including, but not limited to, iOS, Android, Windows, OS X, Linux, and Windows Mobile.\n\n2.1.4 \"Platform Services\" means the Oculus Platform Framework and the Application Services.\n\n2.2 Key Provision and Redemption. If you request that Oculus generate activation keys for your Application on the Platform (\"Keys\") and Oculus agrees, you hereby grant Oculus and its affiliates (1) the right to generate Keys for you and (2) a license to make available, reproduce, distribute, perform, and display the Application to end users who have submitted a Key to Oculus or its affiliates. Oculus agrees to authenticate and make the Application available to any end user supplying a valid Key (or have its affiliates do so) (unless the Application has been removed or withdrawn).\n\n2.3 Platform Services Requirements. You will not make any use of any API, software, code or other item or information supplied by Oculus or its affiliates in connection with the Platform Services other than to enhance the functionality of your Application. In particular, you must not (nor enable others to): (1) defame, abuse, harass, stalk, or threaten others, or to promote or facilitate any prohibited or illegal activities; (2) enable any functionality in your Application that would generate excessive traffic over the Oculus network or servers that would negatively impact other users' experience, or otherwise interfere with or restrict the operation of the Platform Services, or Oculus' or its affiliates\u2019 servers or networks providing the Platform Services; (3) remove, obscure, or alter any license terms, policies or terms of service or any links to or notices thereto provided by Oculus or its affiliates; or (4) violate any rights of Oculus, its affiliates, or any third parties. You may not sublicense any software, firmware or other item or information supplied by Oculus or its affiliates in connection with the Platform Services for use by a third party, unless expressly authorized by Oculus or its affiliates to do so. You agree not to use (or encourage the use of) the Platform Services for mission critical, life saving or ultra-hazardous activities. Oculus or its affiliates may suspend operation of or remove any Application that does not comply with the restrictions in this Agreement.\n\n2.4 Oculus and/or its affiliates may discontinue or change functionality of the Platform Services at any time, and your continued use of the Platform Services or use of any modified or additional Platform Services is conditioned upon your adherence to the terms of this Agreement, as modified by Oculus or its affiliates from time to time.\n\n3. Intellectual Property\n3.1 Ownership. As between you and Oculus, Oculus and/or its affiliates or licensors own all rights, title, and interest, including all Intellectual Property Rights, in and to the SDK (including associated Oculus content and sample code) and all derivatives thereof. Oculus reserves all rights not expressly granted under the License. As between you and Oculus, you and/or your licensors own all rights, title, and interest in and to your Application, (excluding our SDK), including all Intellectual Property Rights. \u201cIntellectual Property Rights\u201d means any and all worldwide rights under applicable laws of patent, copyright, trade secret, trademark, rights of publicity and privacy, and other proprietary rights.\n\n3.2 Third-Party Materials. Our SDK may include third-party software offered under an open source license or third-party content subject to a separate third-party agreement. To the extent any of such third-party terms conflicts with this Agreement, such third-party terms will control solely with respect to such third-party software or content.\n\n3.3 Feedback. If you provide comments, suggestions, recommendations, or other feedback about our SDK or any other Oculus or affiliate product or service, we (and our affiliates and those we allow) may use such information for any purposes without obligation to you.\n\n3.4 Brand Attribution. This Agreement does not grant you or any third party permission to use our trade names, trademarks, service marks, logos, domain names, and other distinctive brand features (collectively, \u201cBrand Features\u201d) except as required for reasonable and customary use in describing the origin of the SDK or reproduction of the copyright notice as required under the License grant. You will not make any statement regarding the SDK or your Application which suggests partnership with, sponsorship by, or endorsement by Oculus or its employee, contractor, contributor, licensor, affiliate, or partner without our prior written permission.\n\n4. Confidentiality\n4.1 Confidentiality. Our communications to you and our SDK may contain Oculus confidential information, which includes information that is marked confidential or that would normally be considered confidential under the circumstances. If you receive any such information, you will not disclose it to any third party without Oculus' prior written consent. Oculus confidential information does not include information that you independently developed, that was rightfully given to you by a third party without a confidentiality obligation with regard to such information, or that becomes public through no fault of your own. You may disclose Oculus confidential information when compelled to do so by law if you provide us reasonable prior notice, unless a court order prohibits such notice.\n\n5. Termination\n5.1 Termination. The term of this Agreement will begin on the date on which you click accept, download, or use the SDK or any of its components and will continue until terminated as set forth in this Agreement. Oculus reserves the right to terminate this Agreement with you, or to discontinue or suspend the SDK or any portion or feature or your access thereto for any reason or no reason and at any time without liability or other obligation to you. Without limiting the generality of the foregoing, Oculus reserves the right to terminate this Agreement, including the License, immediately in the event you breach any material provisions of this Agreement or the Terms.\n\n5.2 Effect of Termination. Upon termination of this Agreement, you will immediately stop using, distributing, or otherwise making available the SDK and all Applications that incorporate the SDK or any of its components, cease all use of the Oculus Brand Features, and destroy or return any cached or stored content, software, or other materials obtained through our SDK.\n\n5.3 Surviving Provisions. When the Agreement comes to an end, those terms that by their nature are intended to continue indefinitely will continue to apply, including, but not limited to, Section 3 (Intellectual Property), Section 4 (Confidentiality), Section 5 (Termination), Section 6 (Liability) and Section 7 (General Provisions).\n\n6. Liability\n6.1 Indemnification. Unless prohibited by applicable law, you will indemnify and (at Oculus\u2019s option), defend Oculus, its affiliates, subsidiaries, agents, licensors, contributors, directors, officers, employees, suppliers, and distributors (collectively, \u201cOculus Parties\u201d) against all liabilities, damages, losses, costs, fees (including legal fees), and expenses relating to any allegation or third-party legal proceeding arising from: (1) your use of the SDK, or any negligence or misconduct by you, or your employees, agents, vendors, or contractors (collectively \u201cDeveloper Parties\u201d); (2) any Developer Parties\u2019 violation of the Agreement, Terms, or any applicable law and regulation; (3) any of your Application; or (4) End User Data (defined in SDK Data Use Policy).\n\n6.2 WARRANTIES. EXCEPT AS EXPRESSLY SET OUT IN THE TERMS, THE SDK IS PROVIDED \u201cAS IS\u201d WITHOUT ANY SPECIFIC PROMISES OR WARRANTIES, INCLUDING, BUT NOT LIMITED TO, ANY COMMITMENTS ABOUT THE CONTENT ACCESSED THROUGH THE SDK, THE SPECIFIC FUNCTIONS OF THE SDK OR OUR PLATFORM SERVICE, OR THEIR RELIABILITY, AVAILABILITY, OR ABILITY TO MEET YOUR NEEDS. THE OCULUS PARTIES HEREBY DISCLAIM ANY IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. SOME JURISDICTIONS DO NOT PERMIT THE EXCLUSION OR LIMITATION OF IMPLIED WARRANTIES, SO YOU MAY HAVE ADDITIONAL RIGHTS.\n\n6.3 LIMITATION OF LIABILITY. TO THE EXTENT PERMITTED BY APPLICABLE LAW, OCULUS PARTIES WILL NOT BE RESPONSIBLE FOR LOST PROFITS, BUSINESS OR GOODWILL, REVENUES, OR DATA; FINANCIAL LOSSES; OR INDIRECT, SPECIAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING AS A RESULT OF THIS AGREEMENT, USE OF THE SDK OR ANY MODIFIED SAMPLE CODE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. YOU AGREE THAT YOUR REMEDIES UNDER THIS AGREEMENT ARE LIMITED SOLELY TO THE RIGHT TO COLLECT MONEY DAMAGES, IF ANY, AND YOU HEREBY WAIVE YOUR RIGHT TO SEEK INJUNCTIVE RELIEF OR OTHER EQUITABLE RELIEF. IF YOU ARE A CALIFORNIA RESIDENT, YOU AGREE TO WAIVE CALIFORNIA CIVIL CODE \u00a7 1542, WHICH SAYS: \u201cA GENERAL RELEASE DOES NOT EXTEND TO CLAIMS WHICH THE CREDITOR DOES NOT KNOW OR SUSPECT TO EXIST IN HIS OR HER FAVOR AT THE TIME OF EXECUTING THE RELEASE, WHICH IF KNOWN BY HIM OR HER MUST HAVE MATERIALLY AFFECTED HIS OR HER SETTLEMENT WITH THE DEBTOR.\u201d TO THE EXTENT PERMITTED BY LAW, THE CUMULATIVE, AGGREGATE LIABILITY OF OCULUS PARTIES, FOR ANY CLAIM UNDER THE AGREEMENT SHALL NOT EXCEED THE GREATER OF ONE HUNDRED US DOLLARS ($100) OR THE AMOUNT YOU HAVE PAID US IN THE PAST TWELVE MONTHS. IN ALL CASES, OCULUS PARTIES WILL NOT BE LIABLE FOR ANY EXPENSE, LOSS, OR DAMAGE THAT IS NOT REASONABLY FORESEEABLE.\n\n7. General Provisions\n7.1 Updates. We may need to update the Agreement from time to time, including to accurately reflect the access or uses of our SDK, and so we encourage you to check the Agreement regularly. By continuing to access or use our SDK after any notice of an update to this Agreement, you agree to be bound by them. Any updates to the Disputes section of this Agreement will apply only to disputes that arise after notice of the update takes place. If you do not agree to the updated terms, please stop all access or use of our SDK. You cannot sidestep your compliance obligations under an updated version of the Agreement by developing against an older release of the SDK or relying on the older Agreement and all updates to your application are subject to the modified Agreement.\n\n7.2 Authorization. You hereby grant Oculus and its contractors and affiliates the authorization reasonably necessary for Oculus to exercise its rights and perform its obligations under this Agreement, including a limited, royalty-free, non-exclusive license to use, perform, and display the Application you provide to Oculus for testing, evaluation, and approval purposes.\n\n7.3 General Provisions. You and Oculus are independent contractors with regard to each other. The Agreement does not create any third-party beneficiary rights or any agency, partnership, employment, or joint venture. We are not liable for failure or delay in performance to the extent caused by circumstances beyond our reasonable control. If you do not comply with the Agreement, and Oculus does not take action right away or does not enforce any provision of the Agreement, this inaction or lack of enforcement will not act as a waiver by Oculus of any rights that it may have (such as taking action in the future) or in any way affect the validity of this Agreement or parts thereof. If a particular provision of this Agreement is deemed unenforceable, it will be deemed modified to the minimum extent necessary to render it enforceable and most nearly reflect the intent of the original provision, and all other provisions in this Agreement shall remain in full force and effect. You may not assign or delegate this Agreement or any obligations under this Agreement without our advance written consent. Any such prohibited attempted assignment will be void. Oculus may assign or delegate this Agreement and any of its rights or obligations under the Agreement without your consent or notice to you. This Agreement shall bind the parties and their respective heirs, successors, and permitted assigns. The Agreement is the entire agreement between you and Oculus relating to its subject and supersede any prior or contemporaneous agreements on that subject.\n\n7.4 Dispute Resolution.\n\n7.4.1 If you reside outside the US or your business is located outside the US: You agree that any claim, cause of action, or dispute you have against us that arises out of or relates to any access or use of the SDK must be resolved exclusively in the U.S. District Court for the Northern District of California or a state court located in San Mateo County, that you submit to the personal jurisdiction of either of these courts for the purpose of litigating any such claim, and that the laws of the State of California will govern this Agreement and any such claim, without regard to conflict of law provisions.\n\n7.4.2 If you reside in the US or your business is located in the US: You and we agree to arbitrate any claim, cause of action, or dispute between you and us that arises out of or relates to any access or use of the SDK for business or commercial purposes (\u201ccommercial claim\u201d). This provision does not cover any commercial claims relating to violations of your or our intellectual property rights, including, but not limited to, copyright infringement, patent infringement, trademark infringement, violations of the brand guidelines, violations of your or our confidential information or trade secrets, or efforts to interfere with our products or engage with our products in unauthorized ways (for example, automated ways).\n\n7.4.3 We and you agree that, by entering into this arbitration provision all parties are waiving their respective rights to a trial by jury or to participate in a class or representative action. THE PARTIES AGREE THAT EACH MAY BRING COMMERCIAL CLAIMS AGAINST THE OTHER ONLY IN ITS INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS, REPRESENTATIVE, OR PRIVATE ATTORNEY GENERAL PROCEEDING. You may bring a commercial claim only on your own behalf and cannot seek relief that would affect other parties. If there is a final judicial determination that any particular commercial claim (or a request for particular relief) cannot be arbitrated in accordance with this paragraph\u2019s limitations, then only that commercial claim (or only that request for relief) may be brought in court. All other commercial claims (or requests for relief) remain subject to this paragraph.\n\n7.4.4 The Federal Arbitration Act governs the interpretation and enforcement of this arbitration provision. All issues are for an arbitrator to decide, except that only a court may decide issues relating to the scope or enforceability of this arbitration provision or the interpretation of the prohibition of class and representative actions.\n\n7.4.5 If any party intends to seek arbitration of a dispute, that party must provide the other party with notice in writing.\n\n7.4.6 The arbitration will be governed by the AAA\u2019s Commercial Arbitration Rules (\u201cAAA Rules\u201d), as modified by this Agreement, and will be administered by the AAA. If the AAA is unavailable, the parties will agree to another arbitration provider or the court will appoint a substitute. The arbitrator will not be bound by rulings in other arbitrations in which you are not a party. To the fullest extent permitted by applicable law, any evidentiary submissions made in arbitration will be maintained as confidential in the absence of good cause for its disclosure. The arbitrator\u2019s award will be maintained as confidential only to the extent necessary to protect either party\u2019s trade secrets or proprietary business information or to comply with a legal requirement mandating confidentiality. Each party will be responsible for paying any AAA filing, administrative and arbitrator fees in accordance with AAA Rules, except that we will pay for your filing, administrative, and arbitrator fees if your commercial claim for damages does not exceed $75,000 and is non-frivolous (as measured by the standards set forth in Federal Rule of Civil Procedure 11(b)).\n\n7.4.7 If you do not wish to be bound by this provision (including its waiver of class and representative claims), you must notify us as set forth below within 30 days of the first acceptance date of any version of this Agreement containing an arbitration provision. Your notice to us under this subsection must be submitted to the address here: Facebook Technologies, LLC, 1 Hacker Way, Menlo Park, California 94025\n\n7.4.8 All commercial claims between us, whether subject to arbitration or not, will be governed by California law, excluding California\u2019s conflict of laws rules, except to the extent that California law is contrary to or preempted by federal law.\n\n7.4.9 If a commercial claim between you and us is not subject to arbitration, you agree that the claim must be resolved exclusively in the U.S. District Court for the Northern District of California or a state court located in San Mateo County, and that you submit to the personal jurisdiction of either of these courts for the purpose of litigating any such claim.\n\n7.4.10 If any provision of this dispute resolution provision is found unenforceable, that provision will be severed and the balance of the dispute resolution provision will remain in full force and effect.", + "json": "oculus-sdk.json", + "yaml": "oculus-sdk.yml", + "html": "oculus-sdk.html", + "license": "oculus-sdk.LICENSE" + }, + { + "license_key": "oculus-sdk-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oculus-sdk-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oculus SDK License Agreement\nEffective date: 10/13/2020\n\nCopyright \u00a9 Facebook Technologies, LLC and its affiliates. All rights reserved.\n\nThe text of this may be found at: https://developer.oculus.com/licenses/oculussdk/\n\nThis Oculus SDK License Agreement (\u201cAgreement\u201d) is a legal agreement between you and Oculus governing your use of our Oculus Software Development Kit. Oculus Software Development Kit means any SDK, application programming interfaces (\u201cAPIs\u201d), tools, plugins, code, technology, specification, documentation, Platform Services, and/or content made available by us to others, including app developers and content providers (collectively, the \u201cSDK\u201d).\n\nBy downloading or using our SDK, you are agreeing to this Agreement along with other applicable terms and conditions such as the additional terms or documents accompanying the SDK and the Terms of Service, and acknowledging our Privacy Policy (collectively, \u201cTerms\u201d). If you use the SDK as an interface to, or in conjunction with other Oculus products or services, then the terms for those other products or services also apply.\n\nHere, \"Oculus\" means Facebook Technologies, LLC, formerly known as Oculus VR, LLC, a Delaware limited liability company with its principal place of business at 1 Hacker Way, Menlo Park, California 94025, United States unless set forth otherwise. We may refer to \"Oculus\" as \"we\", \"our\", or \"us\" in the Agreement.\n\nYou may not use the SDK and may not accept the Agreement if (1) you are a person with whom Oculus is prohibited from transacting business under applicable law, or (2) you are a person barred from using or receiving the SDK by Oculus or under the applicable laws of the United States or other countries including the country in which you are resident or from which you use the SDK. If you are using the SDK on behalf of an entity, you represent and warrant that you have authority to bind that entity to the Agreement and by accepting the Agreement, you are doing so on behalf of that entity (and all references to \"you\" in the Agreement refer to that entity).\n\nThis Agreement requires the resolution of most disputes between you and Oculus by binding arbitration on an individual basis; class actions and jury trials are not permitted.\n\n1. License Grant\n1.1 License. Subject to the Terms and the restrictions in this Section, Oculus hereby grants you a limited, royalty-free, non-exclusive, non-transferrable, non-sublicensable, revocable copyright license (\u201cLicense\u201d) during the term of this Agreement to use and reproduce the SDK solely to develop, test, or distribute your Application (defined below) and to enable you and/or your end users access to Oculus features through your Application. You may only use the SDK to develop Applications in connection with Oculus approved hardware and software products (\u201cOculus Approved Products\u201d) unless the documentation accompanying the SDK expressly authorizes broader use such as with other third-party platforms.\n\n1.1.1 If the SDK includes any libraries, sample source code, or other materials that we make available specifically for incorporation in your Application (as indicated by applicable documentation), you may incorporate those materials and reproduce and distribute them as part of your Application, including by distributing those materials to third parties contributing to your Application.\n\n1.1.2 The SDK may include other content (e.g., sample code) that is for demonstration, reference, or other purposes and is subject to terms and conditions included with such materials. Such materials will be clearly marked in the applicable documentation. Absent such additional terms and conditions, you may modify, distribute, and sublicense any sample source made available as part of the SDK pursuant to the Terms.\n\n1.1.3 The SDK may include Oculus content that is subject to your additional right to display the content to your end users through the use of the corresponding SDK, as contemplated by the documentation accompanying such SDK. For example, the SDK may include avatars that you may display to your end users.\n\n1.2 General Restrictions. The License grant in this Section is solely for the purpose of developing, testing, and promoting your engines, tools, applications, content, games and demos, or other products and features (collectively, \u201cApplication\u201d) and providing you and/or your end users access to Oculus services and features through your Application as contemplated by applicable documentation accompanying the SDK. You may not (or allow those acting on your behalf to):\n\n1.2.1 modify or create derivative works from any SDK or its component (other than sample source code described in this Section or expressly authorized by the documents accompanying the SDK);\n\n1.2.2 misrepresent or mask either your identity or your Application's identity when using the SDK or developer accounts;\n\n1.2.3 attempt to circumvent any limitations documented with the SDK (e.g., limiting the number of requests you may make or end users you may serve);\n\n1.2.4 reverse engineer, decompile, disassemble, or otherwise attempt to extract the source code from the SDK, except to the extent that applicable law expressly permits despite this limitation;\n\n1.2.5 alter, restrict, or interfere with the normal operation or functionality of the SDK, the Oculus hardware or software, or Oculus Approved Products, including, but not limited to: (a) the behavior of the \u201cOculus button\u201d and \u201cXBox button\u201d implemented by the Oculus system software; (b) any on-screen messages or information; (c) the behavior of the proximity sensor in the Oculus hardware implemented by the Oculus system software; (d) any Oculus hardware or software security features; (e) any end user's settings; and (f) the Oculus Flash Screen Warnings or Health and Safety Warnings;\n\n1.2.6 use the SDK or your Application in a manner that violates: (a) the Oculus Data Use Policy (where applicable); (b) the Oculus Content Guidelines, or other applicable terms and policies made available on our Developer Policy portal; (c) any rights of Oculus or third parties; (d) applicable laws (such as laws regarding import, export, privacy, health & safety); or (e) other terms of service with Oculus or its affiliates;\n\n1.2.7 remove, obscure, or alter any Oculus Terms or any links to or notices of those Terms; or\n\n1.2.8 use or redistribute the SDK or any portion thereof in any manner that would cause the SDK (or any portion thereof) or Oculus to become subject to the terms of any open source license or other restrictions.\n\n1.3 Distribution and Sublicense Restrictions. The redistribution and sublicense rights under this Section are further subject to the following restrictions: (1) redistribution of sample source code or other materials must include the following copyright notice: \u201cCopyright \u00a9 Facebook Technologies, LLC and its affiliates. All rights reserved;\u201d and (2) If the sample source code or other materials include a \"License\" or \"Notice\" text file, you must provide a copy of the License or Notice file with the sample code.\n\n1.4 Privacy and Security.\n\n1.4.1 You are responsible for the data of your Application and agree to comply with all applicable privacy and data protection laws, as well as our applicable terms and policies, particularly the Oculus Developer Data Use Policy. You represent and warrant that you have provided robust and sufficiently prominent notice to users regarding data processing that includes, at a minimum, that third parties, including Oculus and its affiliates, may collect or receive information from your Application.\n\n1.4.2 For purposes of the GDPR, you acknowledge and agree that you are a separate and independent controller of the Developer User Data (as defined in the Oculus Developer Data Use Policy) and Facebook Ireland Limited (an affiliate of Oculus) is a separate and independent controller for any processing of personal data, except as provided in Section 1.4.3, including the Oculus User Data (as defined in the Oculus Developer Data Use Policy). The parties do not and will not process Developer User Data nor Oculus User Data as joint controllers. Each party shall comply with the obligations that apply to it as a controller under the GDPR, and each party shall be individually and separately responsible for its own compliance.\n\n1.4.3 1.4.3. Notwithstanding the foregoing, where the Developer User Data contain personal data which you process subject to the GDPR, you acknowledge and agree that to the extent that we process such data on your behalf as a processor, such as for purposes of providing/operating some APIs (for example, Spatial Audio VoIP API) as described in the Data Processing Terms, you have instructed Facebook Ireland Limited to process such personal data pursuant to this Agreement and the Data Processing Terms, which are incorporated herein by reference.\n\n1.4.4 \u201cPersonal data,\u201d \u201ccontroller,\u201d \u201cprocessor,\u201d and \u201cprocess\u201d in this Section have the meanings set out in the Data Processing Terms.\n\n1.5 You have no obligations under this Agreement to license or make available your Application to Oculus, its affiliates, or any third parties. Nothing in this Agreement obligates Oculus or its affiliates to enable you or any of your Applications to access, interact with, or retrieve or publish content to any Oculus platform or service. However, Oculus and/or its affiliates may require you to agree to additional terms as a condition of providing you with such platform services in connection with your use of the SDK. You acknowledge and agree that Oculus and its affiliates may develop products or services that may compete with your Application or any other products or services of yours.\n\n2. Oculus Platform Services\nOculus and/or its affiliates makes certain Platform Services (defined below) available to you to include and enable in your Application on our Platform. An Application that enables or includes any Platform Service must implement the Oculus Platform Framework with the Application. Once your Application has been authorized for use of the Platform Services, you are not required to update your Application to include new Platform Services that Oculus and/or its affiliates may make available as part of the Oculus Platform Framework. For more information, please visit https://developer.oculus.com.\n\n2.1 For the purpose of this Section,\n\n2.1.1 \u201cApplication Services\u201d means services provided by Oculus and/or its affiliates associated with the Platform, including, but not limited to, in-app purchasing, multiplayer matchmaking, friends, leader boards, achievements, Virtual Reality Real Time Systems (\u201cVERTS\u201d), voice over IP and cloud saves, which list may be changed from time to time in Oculus' or its affiliates\u2019 sole discretion.\n\n2.1.2 \"Oculus Platform Framework\" means the suite of Oculus platform services, including, but not limited to, the Oculus file distribution and update system (enabling distribution and updates of Applications by Oculus and/or its affiliates, including through generated activation Keys), entitlement system, and account authentication, which list may be changed from time to time in Oculus' or its affiliates\u2019 sole discretion.\n\n2.1.3 \"Platform\" means the virtual, mixed, and augmented reality platform made available by Oculus and/or its affiliates, including, but not limited to, the user experience, user interface, store, and social features, usable on hardware approved by Oculus or its affiliates or any third-party device or operating system, including, but not limited to, iOS, Android, Windows, OS X, Linux, and Windows Mobile.\n\n2.1.4 \"Platform Services\" means the Oculus Platform Framework and the Application Services.\n\n2.2 Key Provision and Redemption. If you request that Oculus generate activation keys for your Application on the Platform (\"Keys\") and Oculus agrees, you hereby grant Oculus and its affiliates (1) the right to generate Keys for you and (2) a license to make available, reproduce, distribute, perform, and display the Application to end users who have submitted a Key to Oculus or its affiliates. Oculus agrees to authenticate and make the Application available to any end user supplying a valid Key (or have its affiliates do so) (unless the Application has been removed or withdrawn).\n\n2.3 Platform Services Requirements. You will not make any use of any API, software, code or other item or information supplied by Oculus or its affiliates in connection with the Platform Services other than to enhance the functionality of your Application. In particular, you must not (nor enable others to): (1) defame, abuse, harass, stalk, or threaten others, or to promote or facilitate any prohibited or illegal activities; (2) enable any functionality in your Application that would generate excessive traffic over the Oculus network or servers that would negatively impact other users' experience, or otherwise interfere with or restrict the operation of the Platform Services, or Oculus' or its affiliates\u2019 servers or networks providing the Platform Services; (3) remove, obscure, or alter any license terms, policies or terms of service or any links to or notices thereto provided by Oculus or its affiliates; or (4) violate any rights of Oculus, its affiliates, or any third parties. You may not sublicense any software, firmware or other item or information supplied by Oculus or its affiliates in connection with the Platform Services for use by a third party, unless expressly authorized by Oculus or its affiliates to do so. You agree not to use (or encourage the use of) the Platform Services for mission critical, life saving or ultra-hazardous activities. Oculus or its affiliates may suspend operation of or remove any Application that does not comply with the restrictions in this Agreement.\n\n2.4 Changes to Platform or Platform Services. Oculus and/or its affiliates may change the Platform or the functionality of the Platform Services at any time, including discontinuing some of the functionality of the Platform Services, and your continued use of the Platform or Platform Services or use of any modified or additional Platform Services is conditioned upon your adherence to the terms of this Agreement, as modified by Oculus or its affiliates from time to time.\n\n3. Intellectual Property\n3.1 Ownership. As between you and Oculus, Oculus and/or its affiliates or licensors own all rights, title, and interest, including all Intellectual Property Rights, in and to the SDK (including associated Oculus content and sample code) and all derivatives thereof. Oculus reserves all rights not expressly granted under the License. As between you and Oculus, you and/or your licensors own all rights, title, and interest in and to your Application, (excluding our SDK), including all Intellectual Property Rights. \u201cIntellectual Property Rights\u201d means any and all worldwide rights under applicable laws of patent, copyright, trade secret, trademark, rights of publicity and privacy, and other proprietary rights.\n\n3.2 Third-Party Materials. Our SDK may include third-party software offered under an open source license or third-party content subject to a separate third-party agreement. To the extent any of such third-party terms conflicts with this Agreement, such third-party terms will control solely with respect to such third-party software or content.\n\n3.3 Feedback. If you provide comments, suggestions, recommendations, or other feedback about our SDK or any other Oculus or affiliate product or service, we (and our affiliates and those we allow) may use such information for any purposes without obligation to you.\n\n3.4 Brand Attribution. This Agreement does not grant you or any third party permission to use our trade names, trademarks, service marks, logos, domain names, and other distinctive brand features (collectively, \u201cBrand Features\u201d) except as required for reasonable and customary use in describing the origin of the SDK or reproduction of the copyright notice as required under the License grant. You will not use our SDK or make any statement regarding the SDK or your Application which suggests partnership with, sponsorship by, or endorsement by Oculus or its employee, contractor, contributor, licensor, affiliate, or partner without our prior written permission.\n\n4. Confidentiality\n4.1 Confidentiality. Our communications to you and our SDK may contain Oculus confidential information, which includes information that is marked confidential or that would normally be considered confidential under the circumstances. If you receive any such information, you will not disclose it to any third party without Oculus' prior written consent. Oculus confidential information does not include information that you independently developed, that was rightfully given to you by a third party without a confidentiality obligation with regard to such information, or that becomes public through no fault of your own. You may disclose Oculus confidential information when compelled to do so by law if you provide us reasonable prior notice, unless a court order prohibits such notice.\n\n5. Termination\n5.1 Termination. The term of this Agreement will begin on the date on which you click accept, download, or use the SDK or any of its components and will continue until terminated as set forth in this Agreement. Oculus reserves the right to terminate this Agreement with you, or to discontinue or suspend the SDK or any portion or feature or your access thereto in the event you breach any material provisions of this Agreement or the Terms, without liability or other obligation to you.\n\n5.2. Discontinuation of SDK. Oculus reserves the right to discontinue the SDK at any time, in our sole discretion, without notice to you, and without liability or other obligation to you. This Agreement will terminate automatically and without notice to you in the event that the SDK is discontinued.\n\n5.3 Effect of Termination. Upon termination of this Agreement, you will immediately stop using, distributing, or otherwise making available the SDK and all Applications that incorporate the SDK or any of its components, cease all use of the Oculus Brand Features, and destroy or return any cached or stored content, software, or other materials obtained through our SDK.\n\n5.4 Surviving Provisions. When the Agreement comes to an end, those terms that by their nature are intended to continue indefinitely will continue to apply, including, but not limited to, Section 3 (Intellectual Property), Section 4 (Confidentiality), Section 5 (Termination), Section 6 (Liability) and Section 7 (General Provisions).\n\n6. Liability\n6.1 Indemnification. Unless prohibited by applicable law, you will indemnify and (at Oculus\u2019s option), defend Oculus, its affiliates, subsidiaries, agents, licensors, contributors, directors, officers, employees, suppliers, and distributors (collectively, \u201cOculus Parties\u201d) against all liabilities, damages, losses, costs, fees (including legal fees), and expenses relating to any allegation or third-party legal proceeding arising from: (1) your use of the SDK, or any negligence or misconduct by you, or your employees, agents, vendors, or contractors (collectively \u201cDeveloper Parties\u201d); (2) any Developer Parties\u2019 violation of the Agreement, Terms, or any applicable law and regulation; (3) any of your Application; or (4) End User Data (defined in SDK Data Use Policy).\n\n6.2 WARRANTIES. EXCEPT AS EXPRESSLY SET OUT IN THE TERMS, THE SDK IS PROVIDED \u201cAS IS\u201d WITHOUT ANY SPECIFIC PROMISES OR WARRANTIES, INCLUDING, BUT NOT LIMITED TO, ANY COMMITMENTS ABOUT THE CONTENT ACCESSED THROUGH THE SDK, THE SPECIFIC FUNCTIONS OF THE SDK OR OUR PLATFORM SERVICE, OR THEIR RELIABILITY, AVAILABILITY, OR ABILITY TO MEET YOUR NEEDS. THE OCULUS PARTIES HEREBY DISCLAIM ANY IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. SOME JURISDICTIONS DO NOT PERMIT THE EXCLUSION OR LIMITATION OF IMPLIED WARRANTIES, SO YOU MAY HAVE ADDITIONAL RIGHTS.\n\n6.3 LIMITATION OF LIABILITY. TO THE EXTENT PERMITTED BY APPLICABLE LAW, OCULUS PARTIES WILL NOT BE RESPONSIBLE FOR LOST PROFITS, BUSINESS OR GOODWILL, REVENUES, OR DATA; FINANCIAL LOSSES; OR INDIRECT, SPECIAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING AS A RESULT OF THIS AGREEMENT, USE OF THE SDK OR ANY MODIFIED SAMPLE CODE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. YOU AGREE THAT YOUR REMEDIES UNDER THIS AGREEMENT ARE LIMITED SOLELY TO THE RIGHT TO COLLECT MONEY DAMAGES, IF ANY, AND YOU HEREBY WAIVE YOUR RIGHT TO SEEK INJUNCTIVE RELIEF OR OTHER EQUITABLE RELIEF. IF YOU ARE A CALIFORNIA RESIDENT, YOU AGREE TO WAIVE CALIFORNIA CIVIL CODE \u00a7 1542, WHICH SAYS: \u201cA GENERAL RELEASE DOES NOT EXTEND TO CLAIMS WHICH THE CREDITOR DOES NOT KNOW OR SUSPECT TO EXIST IN HIS OR HER FAVOR AT THE TIME OF EXECUTING THE RELEASE, WHICH IF KNOWN BY HIM OR HER MUST HAVE MATERIALLY AFFECTED HIS OR HER SETTLEMENT WITH THE DEBTOR.\u201d TO THE EXTENT PERMITTED BY LAW, THE CUMULATIVE, AGGREGATE LIABILITY OF OCULUS PARTIES, FOR ANY CLAIM UNDER THE AGREEMENT SHALL NOT EXCEED THE GREATER OF ONE HUNDRED US DOLLARS ($100) OR THE AMOUNT YOU HAVE PAID US IN THE PAST TWELVE MONTHS. IN ALL CASES, OCULUS PARTIES WILL NOT BE LIABLE FOR ANY EXPENSE, LOSS, OR DAMAGE THAT IS NOT REASONABLY FORESEEABLE.\n\n7. General Provisions\n7.1 Updates. We may need to update the Agreement from time to time, including to accurately reflect the access or uses of our SDK, and so we encourage you to check the Agreement regularly. By continuing to access or use our SDK after any notice of an update to this Agreement, you agree to be bound by them. Any updates to the Disputes section of this Agreement will apply only to disputes that arise after notice of the update takes place. If you do not agree to the updated terms, please stop all access or use of our SDK. You cannot sidestep your compliance obligations under an updated version of the Agreement by developing against an older release of the SDK or relying on the older Agreement and all updates to your application are subject to the modified Agreement.\n\n7.2 Authorization. You hereby grant Oculus and its contractors and affiliates the authorization reasonably necessary for Oculus to exercise its rights and perform its obligations under this Agreement, including a limited, royalty-free, non-exclusive license to use, perform, and display the Application you provide to Oculus for testing, evaluation, and approval purposes.\n\n7.3 General Provisions. You and Oculus are independent contractors with regard to each other. The Agreement does not create any third-party beneficiary rights or any agency, partnership, employment, or joint venture. We are not liable for failure or delay in performance to the extent caused by circumstances beyond our reasonable control. If you do not comply with the Agreement, and Oculus does not take action right away or does not enforce any provision of the Agreement, this inaction or lack of enforcement will not act as a waiver by Oculus of any rights that it may have (such as taking action in the future) or in any way affect the validity of this Agreement or parts thereof. If a particular provision of this Agreement is deemed unenforceable, it will be deemed modified to the minimum extent necessary to render it enforceable and most nearly reflect the intent of the original provision, and all other provisions in this Agreement shall remain in full force and effect. You may not assign or delegate this Agreement or any obligations under this Agreement without our advance written consent. Any such prohibited attempted assignment will be void. Oculus may assign or delegate this Agreement and any of its rights or obligations under the Agreement without your consent or notice to you. This Agreement shall bind the parties and their respective heirs, successors, and permitted assigns. The Agreement is the entire agreement between you and Oculus relating to its subject and supersede any prior or contemporaneous agreements on that subject.\n\n7.4 Dispute Resolution.\n\n7.4.1 If you reside outside the US or your business is located outside the US: You agree that any claim, cause of action, or dispute you have against us that arises out of or relates to any access or use of the SDK must be resolved exclusively in the U.S. District Court for the Northern District of California or a state court located in San Mateo County, that you submit to the personal jurisdiction of either of these courts for the purpose of litigating any such claim, and that the laws of the State of California will govern this Agreement and any such claim, without regard to conflict of law provisions.\n\n7.4.2 If you reside in the US or your business is located in the US: You and we agree to arbitrate any claim, cause of action, or dispute between you and us that arises out of or relates to any access or use of the SDK for business or commercial purposes (\u201ccommercial claim\u201d). This provision does not cover any commercial claims relating to violations of your or our intellectual property rights, including, but not limited to, copyright infringement, patent infringement, trademark infringement, violations of the brand guidelines, violations of your or our confidential information or trade secrets, or efforts to interfere with our products or engage with our products in unauthorized ways (for example, automated ways).\n\n7.4.3 We and you agree that, by entering into this arbitration provision all parties are waiving their respective rights to a trial by jury or to participate in a class or representative action. THE PARTIES AGREE THAT EACH MAY BRING COMMERCIAL CLAIMS AGAINST THE OTHER ONLY IN ITS INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS, REPRESENTATIVE, OR PRIVATE ATTORNEY GENERAL PROCEEDING. You may bring a commercial claim only on your own behalf and cannot seek relief that would affect other parties. If there is a final judicial determination that any particular commercial claim (or a request for particular relief) cannot be arbitrated in accordance with this paragraph\u2019s limitations, then only that commercial claim (or only that request for relief) may be brought in court. All other commercial claims (or requests for relief) remain subject to this paragraph.\n\n7.4.4 The Federal Arbitration Act governs the interpretation and enforcement of this arbitration provision. All issues are for an arbitrator to decide, except that only a court may decide issues relating to the scope or enforceability of this arbitration provision or the interpretation of the prohibition of class and representative actions.\n\n7.4.5 If any party intends to seek arbitration of a dispute, that party must provide the other party with notice in writing.\n\n7.4.6 The arbitration will be governed by the AAA\u2019s Commercial Arbitration Rules (\u201cAAA Rules\u201d), as modified by this Agreement, and will be administered by the AAA. If the AAA is unavailable, the parties will agree to another arbitration provider or the court will appoint a substitute. The arbitrator will not be bound by rulings in other arbitrations in which you are not a party. To the fullest extent permitted by applicable law, any evidentiary submissions made in arbitration will be maintained as confidential in the absence of good cause for its disclosure. The arbitrator\u2019s award will be maintained as confidential only to the extent necessary to protect either party\u2019s trade secrets or proprietary business information or to comply with a legal requirement mandating confidentiality. Each party will be responsible for paying any AAA filing, administrative and arbitrator fees in accordance with AAA Rules, except that we will pay for your filing, administrative, and arbitrator fees if your commercial claim for damages does not exceed $75,000 and is non-frivolous (as measured by the standards set forth in Federal Rule of Civil Procedure 11(b)).\n\n7.4.7 If you do not wish to be bound by this provision (including its waiver of class and representative claims), you must notify us as set forth below within 30 days of the first acceptance date of any version of this Agreement containing an arbitration provision. Your notice to us under this subsection must be submitted to the address here: Facebook Technologies, LLC, 1 Hacker Way, Menlo Park, California 94025\n\n7.4.8 All commercial claims between us, whether subject to arbitration or not, will be governed by California law, excluding California\u2019s conflict of laws rules, except to the extent that California law is contrary to or preempted by federal law.\n\n7.4.9 If a commercial claim between you and us is not subject to arbitration, you agree that the claim must be resolved exclusively in the U.S. District Court for the Northern District of California or a state court located in San Mateo County, and that you submit to the personal jurisdiction of either of these courts for the purpose of litigating any such claim.\n\n7.4.10 If any provision of this dispute resolution provision is found unenforceable, that provision will be severed and the balance of the dispute resolution provision will remain in full force and effect.", + "json": "oculus-sdk-2020.json", + "yaml": "oculus-sdk-2020.yml", + "html": "oculus-sdk-2020.html", + "license": "oculus-sdk-2020.LICENSE" + }, + { + "license_key": "oculus-sdk-3.5", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oculus-sdk-3.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oculus Software Development Kit License Agreement\n\nCopyright \u00a9 Facebook Technologies, LLC and its affiliates. All rights reserved.\n\nThe Oculus SDK License Agreement became effective on June 1, 2020, and governs your use of all Oculus SDKs. The agreement below is no longer in effect.\n\n***************************************************************\n\nThe text of this may be found at: https://developer.oculus.com/licenses/sdk-3.5/\n\nIn order to obtain and use the Oculus Software Development Kit for mobile or for PC, You must first agree to the terms of this License. If you agree to the terms of this License, you may use the Oculus Software Development Kit. If you do not agree to the terms of this License, then you may not use the Oculus Software Development Kit.\nOCULUS SDK LICENSE\n\n1. Subject to the terms and conditions of this License Agreement (the \"License\"), Facebook Technologies, LLC formerly known as Oculus VR, LLC (\"Oculus\") hereby grants to you a worldwide, non-exclusive, no-charge, royalty-free, sublicenseable copyright license to use, reproduce and redistribute (subject to restrictions below) the software contained in this Oculus Software Development Kit for PC and/or mobile (\"Oculus SDK\"), including, but not limited to, the samples, headers, LibOVR and VRLib headers, LibOVR and VRLib source and, subject to your compliance with Section 3, the headers, libraries and APIs to enable the Platform Services. This License is subject to the following terms and conditions:\n\n1.1 This license grants you the non-exclusive license and right to use (i) the Oculus SDK to make engines, tools, applications, content, games and demos (collectively and generally referred to as \"Developer Content\") for use on the Oculus approved hardware and software products (\"Oculus Approved Products\") and which may incorporate the Oculus SDK in whole or in part in binary or object code; and (ii) the headers, libraries, APIs and other tools made available by Oculus to enable the use of Platform Services with your Developer Content.\n\n1.2 For the sake of clarification, when you use the Oculus SDK in or with Developer Content, you retain all rights to your Developer Content, and you have no obligations to share or license Developer Content (including your source and object code) to Oculus or any third parties; provided, however, Oculus retains all rights to the Oculus SDK and the headers, libraries and APIs to the Platform Services and other tools made available by Oculus, including those that may be incorporated into your Developer Content.\n\n1.3 You agree that as a condition of this License you will design and distribute your Developer Content to ensure that your Developer Content and any software required to use your Developer Content does not, and you will not, alter or interfere with the normal operation, behavior or functionality of the Oculus hardware or software or Oculus Approved Products, including: (i) the behavior of the \"Oculus button\" and \"XBox button\" implemented by the Oculus system software; (ii) any on-screen messages or information; (iii) the behavior of the proximity sensor in the Oculus hardware implemented by the Oculus system software; (iv) Oculus hardware or software security features; (v) end user's settings; or (vi) the Oculus Flash Screen Warnings. You also agree not to commit any act intended to interfere with the normal operation of the Oculus hardware or software or Oculus Approved Products, or provide software to Oculus users or developers that would induce breach of any Oculus agreements or that contains malware, viruses, hacks, bots, Trojan horses, or other malicious code.\n\n1.4 You may not use the Oculus SDK for any purpose not expressly permitted by this License. You may not (except as and only to the extent any following restriction is prohibited by applicable law): (a) decompile; (b) reverse engineer; (c) disassemble; (d) attempt to derive the source code of the Oculus SDK or any part of the Oculus SDK, or any other software or firmware provided to you by Oculus.\nREDISTRIBUTION\n\n2. Subject to the terms and conditions of this License, your license to redistribute and sublicense the Oculus SDK is also expressly made subject to the following conditions:\n\n2.1 You may sublicense and redistribute the source, binary, or object code of the Oculus SDK in whole for no charge or as part of a for-charge piece of Developer Content; provided, however, you may only license, sublicense or redistribute the source, binary or object code of the Oculus SDK in its entirety. The Oculus SDK (including, but not limited to LibOVR and VRLib), and any Developer Content that includes any portion of the Oculus SDK, may only be used with Oculus Approved Products and may not be used, licensed, or sublicensed to interface with software or hardware or other commercial headsets, mobile tablets or phones that are not authorized and approved by Oculus;\n\n2.2 You must include with all such redistributed or sublicensed Oculus SDK code the following copyright notice: \u201cCopyright \u00a9 Facebook Technologies, LLC and its affiliates. All rights reserved.\u201d\n\n2.3 You must give any other recipients of the Oculus SDK a copy of this License as such recipients, licensees or sublicensees may only use the Oculus SDK subject to the terms of this License and such recipient's, licensee's or sublicensee's agreement to and acceptance of this License with Oculus; and\n\n2.4 The Oculus SDK includes a \"LICENSE\" text file (the \"License Notice\"), and any Oculus SDK distribution that you distribute must include a copy of this License with the License Notice.\nOCULUS PLATFORM SERVICES\n\n3. Oculus makes the headers, libraries and APIs, software, and other tools made available by Oculus to enable Platform Services in connection with your Developer Content. You agree not to use any API, code or other tools, instruction or service provided by Oculus to enable or use a Platform Service other than in compliance with these terms. For more information go to https://developer.oculus.com.\n\n \"Oculus Platform Framework\" means the suite of Oculus platform services, including but not limited to the Oculus file distribution and update system (enabling distribution and updates of Developer Content by Oculus, including through generated activation Keys), entitlement system, and account authentication, which list may be changed from time to time in Oculus' sole discretion.\n \"Application Services\" means services provided by Oculus associated with the Platform, including but not limited to in-app purchasing, multiplayer matchmaking, friends, leader boards, achievements, rooms, voice over IP and cloud saves, which list may be changed from time to time in Oculus' sole discretion.\n \"Platform\" means the Oculus virtual reality platform, including but not limited to the user experience, user interface, store, and social features, usable on Oculus approved hardware or any third-party device or operating system, including but not limited to iOS, Android, Windows, OS X, Linux, and Windows Mobile.\n \"Platform Services\" means the Oculus Platform Framework and the Application Services.\n\n3.1 Oculus Platform Services. Oculus makes certain Platform Services available to you to include and enable in your Developer Content. Developer Content that enables or includes any Platform Service must implement the Oculus Platform Framework with that Developer Content. Once your Developer Content has been authorized for use of the Platform Services, you are not required to update your Developer Content to include new Platform Services Oculus may make available as part of the Oculus Platform Framework.\n\n3.2 Limited Authorization. You hereby grant Oculus the limited authorization reasonably necessary for Oculus's exercise of its rights and performance of its obligations under this Section 3. You agree that Oculus may use its contractors and affiliates for the purposes of exercising its rights and licenses set forth in this Section 3.\n\n3.3. Internal Use. You agree that Oculus may grant its employees and internal contractors the right to use, perform and display the Developer Content you provide to Oculus for testing, evaluation and approval purposes, which shall be on a royalty-free basis.\n\n3.4 Key Provision and Redemption. If you request that Oculus generate activation keys for your Developer Content on the Platform (\"Keys\") and Oculus agrees, you hereby grant Oculus (i) the right to generate Keys for you and (ii) a license to make available, reproduce, distribute, perform, and display the Developer Content to end users who have submitted a Key to Oculus. Oculus agrees to authenticate and make Developer Content available to any end user supplying a valid Key (unless the Developer Content has been removed or withdrawn).\n\n3.5 Platform Services Requirements. You will not make any use of any API, software, code or other item or information supplied by Oculus in connection with the Platform Services other than to enhance the functionality of your Developer Content. In particular, you must not (nor enable others to): (i) defame, abuse, harass, stalk, or threaten others, or to promote or facilitate any prohibited or illegal activities; (ii) enable any functionality in your Developer Content that would generate excessive traffic over the Oculus network or servers that would negatively impact other users' experience, or otherwise interfere with or restrict the operation of the Platform Services, or Oculus's servers or networks providing the Platform Services; or (iii) remove, obscure, or alter any Oculus license terms, policies or terms of service or any links to or notices thereto. You may not sublicense any software, firmware or other item or information supplied by Oculus in connection with the Platform Service for use by a third party, unless expressly authorized by Oculus to do so. You agree not to use (or encourage the use of) the Platform Services for mission critical, life saving or ultra-hazardous activities. Oculus may suspend operation of or remove any Developer Content that does not comply with the restrictions in this License.\n\nYou will not use the Oculus Avatar associated with the Oculus ID of any end user in your Developer Content without the express permission of that end user unless, (i) that end user is actively engaged with your Developer Content or (ii) that end user remains part of an active session of your Developer Content with whom other end users are interacting, whether or not that end user is then online.\nGENERAL PROVISIONS\n\n4. Additional Materials\n\n4.1 Oculus may include in this Oculus SDK additional content (e.g., samples) for demonstration, references or other specific purposes. Such content will be clearly marked in the Oculus SDK and is subject to any included terms and conditions.\n\n4.2 Your use of third-party materials included in the Oculus SDK may be subject to other terms and conditions typically found in separate third-party license agreements or \"READ ME\" files included with such third-party materials. To the extent such other terms and conditions conflict with the terms and conditions of this License, the former will control with respect to the applicable third-party materials.\n\n5. THE OCULUS SDK AND ANY COMPONENT THEREOF, THE OCULUS HEADERS, LIBRARIES AND APIS, AND THE PLATFORM SERVICES FROM OCULUS AND ITS CONTRIBUTORS ARE PROVIDED \"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 OCULUS AS THE COPYRIGHT OWNER 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 OCULUS SDK, THE OCULUS HEADERS, LIBRARIES AND APIS OR THE PLATFORM SERVICES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. SOME JURISDICTIONS DO NOT PERMIT THE EXCLUSION OR LIMITATION OF IMPLIED WARRANTIES, SO YOU MAY HAVE ADDITIONAL RIGHTS.\n\n6. This License does not grant permission to use the trade names, trademarks, service marks, or product names of Oculus, except as required for reasonable and customary use in describing the origin of the Oculus SDK, and reproducing the content of the License Notice file. Oculus reserves all rights not expressly granted to you under this License. Neither the name of Facebook Technologies, LLC, Oculus VR, LLC, Oculus, nor the names of Oculus\u2019s contributors, licensors, employees, or contractors, may be used to endorse or promote products developed using the Oculus SDK without specific prior written permission of Oculus.\n\n7. You are responsible for ensuring that your use of the Oculus SDK and your Developer Content, including enabled Platform Services, complies with all applicable laws (including privacy laws) wherever your Developer Content is made available. You acknowledge and agree that you are solely responsible for any health and safety issues arising from your Developer Content. You will not collect end users' content or information, or otherwise access any Oculus site, using automated means (such as harvesting bots, robots, spiders, or scrapers) without Oculus' prior permission.\n\n8. Your acceptance of the terms and conditions of this License in and of itself and for all Developer Content created as of March 28, 2016, may be evidenced by any of the following: your usage of the Oculus SDK, or acceptance of the license agreement. As this License is updated for future releases of the Oculus SDK, you agree to abide by and meet all requirements of future updates of this License for those future Oculus SDK releases, with acceptance evidenced by usage of the Oculus SDK or any element thereof and the future updates of this License will apply for that future Developer Content that may be developed for or with that future Oculus SDK or any element thereof (i.e., you cannot sidestep out of the requirements of future updates of the License by developing against an older release of the Oculus SDK or License).\n\n9. Oculus reserves the right to terminate this License and all your rights hereunder immediately in the event you materially breach this License.\n\n10. Furthermore, Oculus also reserves the right to cancel or terminate this License for any of the following reasons:\n\n Intellectual property infringement by you with Developer Content created by you that is used with or by the Oculus SDK, or any of the Platform Services;\n Developer Content (including enabling Platform Services) that violates applicable law;\n Health and safety issues associated with your Developer Content;\n Failure to comply with or use properly the Oculus Flash Screen Warnings;\n Use of the Oculus SDK with a commercial product other than an Oculus Approved Product;\n Failure to provide required notices as set forth above; and\n Failure to observe the restrictions in Section 3.5.\n\n11. You agree to fully indemnify Oculus from any and all losses, costs, damages and expenses (including reasonable attorney's fees) arising out of your Developer Content or any matter set forth in Sections 6, 7 and 10(a) through (g).\n\n12. Oculus may discontinue or change functionality of the Platform Services at any time, and your continued use of the Platform Services or use of any modified or additional Platform Services is conditioned upon your adherence to the terms of this License, as modified by Oculus from time to time.\n\n13. In the event any provision of this License is determined to be invalid, prohibited or unenforceable by a court or other body of competent jurisdiction, this License shall be construed as if such invalid, prohibited or unenforceable provision has been more narrowly drawn so as not to be invalid, prohibited or unenforceable.\n\n14. You may not assign any rights or obligations under this License without the advance written consent of Oculus, which may be withheld in its sole discretion. Oculus may assign its rights or obligations under this License in its sole discretion.\n\n15. Failure of either party at any time to enforce any of the provisions of this License will not be construed as a waiver of such provisions or in any way affect the validity of this License or parts thereof.\n\n16. Your remedies under this License shall be limited to the right to collect money damages, if any, and you hereby waive your right to injunctive or other equitable relief.\n\n17. You will comply, and will not cause Oculus to not comply (by for example, providing Developer Content to Oculus under this Agreement for which required export clearances have not been obtained), with all applicable export control laws of the United States and any other applicable governmental authority, including without limitation, the U.S. Export Administration Regulations. You agree that this License and the Oculus SDK and accompanying documentation are Oculus's confidential information (and is not publicly available), and you will not use it, disclose it or make it available to others except in accordance with the terms of this License.\n\n18. This License shall be governed by the laws of the State of California, without giving effect to conflict of laws provisions or principles thereof. The parties agree that, except as provided below, all disputes relating to this License shall be resolved by binding non-appearance-based arbitration before a single neutral arbitrator in San Francisco, California. The arbitration will be conducted in the English language by a single arbitrator who is an attorney-at-law with at least fifteen (15) years\u2019 experience in consumer and technology transactions and who is also a member of the JAMS roster of arbitrators. If You and Oculus cannot agree on a mutually acceptable arbitrator within thirty (30) days after the arbitration is initiated, then JAMS will pick a neutral arbitrator who meets such qualifications. The arbitration shall be conducted in accordance with the rules and procedures of JAMS then in effect, and the judgment of the arbitrator shall be final and capable of entry in any court of competent jurisdiction. The parties undertake to keep confidential all awards in their arbitration, together with all materials in the proceedings created for the purpose of the arbitration and all other documents produced by another party in the proceedings not otherwise in the public domain, save and to the extent that disclosure may be required of a party by legal duty, to protect or pursue a legal right or to enforce or challenge an award in legal proceedings before a court or other judicial authority. You and Oculus agree the following may be submitted to a court of competent jurisdiction located within San Francisco, California and further agree to submit to the personal jurisdiction of the courts located within San Francisco, California in connection with (a) any entrance of an arbitrator's judgment or decision, (b) any dispute with respect to the arbitration process or procedure, (c) Oculus\u2019 exercise of any of its equitable rights or remedies or (d) any claims regarding the ownership, validity, enforceability and/or infringement of any intellectual property rights.", + "json": "oculus-sdk-3.5.json", + "yaml": "oculus-sdk-3.5.yml", + "html": "oculus-sdk-3.5.html", + "license": "oculus-sdk-3.5.LICENSE" + }, + { + "license_key": "odbl-1.0", + "category": "Copyleft", + "spdx_license_key": "ODbL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "## ODC Open Database License (ODbL)\n\n### Preamble\n\nThe Open Database License (ODbL) is a license agreement intended to\nallow users to freely share, modify, and use this Database while\nmaintaining this same freedom for others. Many databases are covered by\ncopyright, and therefore this document licenses these rights. Some\njurisdictions, mainly in the European Union, have specific rights that\ncover databases, and so the ODbL addresses these rights, too. Finally,\nthe ODbL is also an agreement in contract for users of this Database to\nact in certain ways in return for accessing this Database.\n\nDatabases can contain a wide variety of types of content (images,\naudiovisual material, and sounds all in the same database, for example),\nand so the ODbL only governs the rights over the Database, and not the\ncontents of the Database individually. Licensors should use the ODbL\ntogether with another license for the contents, if the contents have a\nsingle set of rights that uniformly covers all of the contents. If the\ncontents have multiple sets of different rights, Licensors should\ndescribe what rights govern what contents together in the individual\nrecord or in some other way that clarifies what rights apply. \n\nSometimes the contents of a database, or the database itself, can be\ncovered by other rights not addressed here (such as private contracts,\ntrade mark over the name, or privacy rights / data protection rights\nover information in the contents), and so you are advised that you may\nhave to consult other documents or clear other rights before doing\nactivities not covered by this License.\n\n------\n\nThe Licensor (as defined below) \n\nand \n\nYou (as defined below) \n\nagree as follows: \n\n### 1.0 Definitions of Capitalised Words\n\n\"Collective Database\" \u2013 Means this Database in unmodified form as part\nof a collection of independent databases in themselves that together are\nassembled into a collective whole. A work that constitutes a Collective\nDatabase will not be considered a Derivative Database.\n\n\"Convey\" \u2013 As a verb, means Using the Database, a Derivative Database,\nor the Database as part of a Collective Database in any way that enables\na Person to make or receive copies of the Database or a Derivative\nDatabase. Conveying does not include interaction with a user through a\ncomputer network, or creating and Using a Produced Work, where no\ntransfer of a copy of the Database or a Derivative Database occurs.\n\"Contents\" \u2013 The contents of this Database, which includes the\ninformation, independent works, or other material collected into the\nDatabase. For example, the contents of the Database could be factual\ndata or works such as images, audiovisual material, text, or sounds.\n\n\"Database\" \u2013 A collection of material (the Contents) arranged in a\nsystematic or methodical way and individually accessible by electronic\nor other means offered under the terms of this License.\n\n\"Database Directive\" \u2013 Means Directive 96/9/EC of the European\nParliament and of the Council of 11 March 1996 on the legal protection\nof databases, as amended or succeeded.\n\n\"Database Right\" \u2013 Means rights resulting from the Chapter III (\"sui\ngeneris\") rights in the Database Directive (as amended and as transposed\nby member states), which includes the Extraction and Re-utilisation of\nthe whole or a Substantial part of the Contents, as well as any similar\nrights available in the relevant jurisdiction under Section 10.4. \n\n\"Derivative Database\" \u2013 Means a database based upon the Database, and\nincludes any translation, adaptation, arrangement, modification, or any\nother alteration of the Database or of a Substantial part of the\nContents. This includes, but is not limited to, Extracting or\nRe-utilising the whole or a Substantial part of the Contents in a new\nDatabase.\n\n\"Extraction\" \u2013 Means the permanent or temporary transfer of all or a\nSubstantial part of the Contents to another medium by any means or in\nany form.\n\n\"License\" \u2013 Means this license agreement and is both a license of rights\nsuch as copyright and Database Rights and an agreement in contract.\n\n\"Licensor\" \u2013 Means the Person that offers the Database under the terms\nof this License. \n\n\"Person\" \u2013 Means a natural or legal person or a body of persons\ncorporate or incorporate.\n\n\"Produced Work\" \u2013 a work (such as an image, audiovisual material, text,\nor sounds) resulting from using the whole or a Substantial part of the\nContents (via a search or other query) from this Database, a Derivative\nDatabase, or this Database as part of a Collective Database. \n\n\"Publicly\" \u2013 means to Persons other than You or under Your control by\neither more than 50% ownership or by the power to direct their\nactivities (such as contracting with an independent consultant). \n\n\"Re-utilisation\" \u2013 means any form of making available to the public all\nor a Substantial part of the Contents by the distribution of copies, by\nrenting, by online or other forms of transmission.\n\n\"Substantial\" \u2013 Means substantial in terms of quantity or quality or a\ncombination of both. The repeated and systematic Extraction or\nRe-utilisation of insubstantial parts of the Contents may amount to the\nExtraction or Re-utilisation of a Substantial part of the Contents.\n\n\"Use\" \u2013 As a verb, means doing any act that is restricted by copyright\nor Database Rights whether in the original medium or any other; and\nincludes without limitation distributing, copying, publicly performing,\npublicly displaying, and preparing derivative works of the Database, as\nwell as modifying the Database as may be technically necessary to use it\nin a different mode or format. \n\n\"You\" \u2013 Means a Person exercising rights under this License who has not\npreviously violated the terms of this License with respect to the\nDatabase, or who has received express permission from the Licensor to\nexercise rights under this License despite a previous violation.\n\nWords in the singular include the plural and vice versa.\n\n### 2.0 What this License covers\n\n2.1. Legal effect of this document. This License is:\n\na. A license of applicable copyright and neighbouring rights;\n\nb. A license of the Database Right; and\n\nc. An agreement in contract between You and the Licensor.\n\n2.2 Legal rights covered. This License covers the legal rights in the\nDatabase, including:\n\na. Copyright. Any copyright or neighbouring rights in the Database.\nThe copyright licensed includes any individual elements of the\nDatabase, but does not cover the copyright over the Contents\nindependent of this Database. See Section 2.4 for details. Copyright\nlaw varies between jurisdictions, but is likely to cover: the Database\nmodel or schema, which is the structure, arrangement, and organisation\nof the Database, and can also include the Database tables and table\nindexes; the data entry and output sheets; and the Field names of\nContents stored in the Database;\n\nb. Database Rights. Database Rights only extend to the Extraction and\nRe-utilisation of the whole or a Substantial part of the Contents.\nDatabase Rights can apply even when there is no copyright over the\nDatabase. Database Rights can also apply when the Contents are removed\nfrom the Database and are selected and arranged in a way that would\nnot infringe any applicable copyright; and\n\nc. Contract. This is an agreement between You and the Licensor for\naccess to the Database. In return you agree to certain conditions of\nuse on this access as outlined in this License. \n\n2.3 Rights not covered. \n\na. This License does not apply to computer programs used in the making\nor operation of the Database; \n\nb. This License does not cover any patents over the Contents or the\nDatabase; and\n\nc. This License does not cover any trademarks associated with the\nDatabase. \n\n2.4 Relationship to Contents in the Database. The individual items of\nthe Contents contained in this Database may be covered by other rights,\nincluding copyright, patent, data protection, privacy, or personality\nrights, and this License does not cover any rights (other than Database\nRights or in contract) in individual Contents contained in the Database.\nFor example, if used on a Database of images (the Contents), this\nLicense would not apply to copyright over individual images, which could\nhave their own separate licenses, or one single license covering all of\nthe rights over the images. \n\n### 3.0 Rights granted\n\n3.1 Subject to the terms and conditions of this License, the Licensor\ngrants to You a worldwide, royalty-free, non-exclusive, terminable (but\nonly under Section 9) license to Use the Database for the duration of\nany applicable copyright and Database Rights. These rights explicitly\ninclude commercial use, and do not exclude any field of endeavour. To\nthe extent possible in the relevant jurisdiction, these rights may be\nexercised in all media and formats whether now known or created in the\nfuture. \n\nThe rights granted cover, for example:\n\na. Extraction and Re-utilisation of the whole or a Substantial part of\nthe Contents;\n\nb. Creation of Derivative Databases;\n\nc. Creation of Collective Databases;\n\nd. Creation of temporary or permanent reproductions by any means and\nin any form, in whole or in part, including of any Derivative\nDatabases or as a part of Collective Databases; and\n\ne. Distribution, communication, display, lending, making available, or\nperformance to the public by any means and in any form, in whole or in\npart, including of any Derivative Database or as a part of Collective\nDatabases.\n\n3.2 Compulsory license schemes. For the avoidance of doubt:\n\na. Non-waivable compulsory license schemes. In those jurisdictions in\nwhich the right to collect royalties through any statutory or\ncompulsory licensing scheme cannot be waived, the Licensor reserves\nthe exclusive right to collect such royalties for any exercise by You\nof the rights granted under this License;\n\nb. Waivable compulsory license schemes. In those jurisdictions in\nwhich the right to collect royalties through any statutory or\ncompulsory licensing scheme can be waived, the Licensor waives the\nexclusive right to collect such royalties for any exercise by You of\nthe rights granted under this License; and,\n\nc. Voluntary license schemes. The Licensor waives the right to collect\nroyalties, whether individually or, in the event that the Licensor is\na member of a collecting society that administers voluntary licensing\nschemes, via that society, from any exercise by You of the rights\ngranted under this License.\n\n3.3 The right to release the Database under different terms, or to stop\ndistributing or making available the Database, is reserved. Note that\nthis Database may be multiple-licensed, and so You may have the choice\nof using alternative licenses for this Database. Subject to Section\n10.4, all other rights not expressly granted by Licensor are reserved.\n\n### 4.0 Conditions of Use\n\n4.1 The rights granted in Section 3 above are expressly made subject to\nYour complying with the following conditions of use. These are important\nconditions of this License, and if You fail to follow them, You will be\nin material breach of its terms.\n\n4.2 Notices. If You Publicly Convey this Database, any Derivative\nDatabase, or the Database as part of a Collective Database, then You\nmust: \n\na. Do so only under the terms of this License or another license\npermitted under Section 4.4;\n\nb. Include a copy of this License (or, as applicable, a license\npermitted under Section 4.4) or its Uniform Resource Identifier (URI)\nwith the Database or Derivative Database, including both in the\nDatabase or Derivative Database and in any relevant documentation; and\n\nc. Keep intact any copyright or Database Right notices and notices\nthat refer to this License.\n\nd. If it is not possible to put the required notices in a particular\nfile due to its structure, then You must include the notices in a\nlocation (such as a relevant directory) where users would be likely to\nlook for it.\n\n4.3 Notice for using output (Contents). Creating and Using a Produced\nWork does not require the notice in Section 4.2. However, if you\nPublicly Use a Produced Work, You must include a notice associated with\nthe Produced Work reasonably calculated to make any Person that uses,\nviews, accesses, interacts with, or is otherwise exposed to the Produced\nWork aware that Content was obtained from the Database, Derivative\nDatabase, or the Database as part of a Collective Database, and that it\nis available under this License.\n\na. Example notice. The following text will satisfy notice under\nSection 4.3:\n\nContains information from DATABASE NAME, which is made available\nhere under the Open Database License (ODbL).\n\nDATABASE NAME should be replaced with the name of the Database and a\nhyperlink to the URI of the Database. \"Open Database License\" should\ncontain a hyperlink to the URI of the text of this License. If\nhyperlinks are not possible, You should include the plain text of the\nrequired URI's with the above notice.\n\n4.4 Share alike. \n\na. Any Derivative Database that You Publicly Use must be only under\nthe terms of: \n\ni. This License;\n\nii. A later version of this License similar in spirit to this\nLicense; or\n\niii. A compatible license. \n\nIf You license the Derivative Database under one of the licenses\nmentioned in (iii), You must comply with the terms of that license. \n\nb. For the avoidance of doubt, Extraction or Re-utilisation of the\nwhole or a Substantial part of the Contents into a new database is a\nDerivative Database and must comply with Section 4.4. \n\nc. Derivative Databases and Produced Works. A Derivative Database is\nPublicly Used and so must comply with Section 4.4. if a Produced Work\ncreated from the Derivative Database is Publicly Used.\n\nd. Share Alike and additional Contents. For the avoidance of doubt,\nYou must not add Contents to Derivative Databases under Section 4.4 a\nthat are incompatible with the rights granted under this License. \n\ne. Compatible licenses. Licensors may authorise a proxy to determine\ncompatible licenses under Section 4.4 a iii. If they do so, the\nauthorised proxy's public statement of acceptance of a compatible\nlicense grants You permission to use the compatible license.\n\n\n4.5 Limits of Share Alike. The requirements of Section 4.4 do not apply\nin the following:\n\na. For the avoidance of doubt, You are not required to license\nCollective Databases under this License if You incorporate this\nDatabase or a Derivative Database in the collection, but this License\nstill applies to this Database or a Derivative Database as a part of\nthe Collective Database; \n\nb. Using this Database, a Derivative Database, or this Database as\npart of a Collective Database to create a Produced Work does not\ncreate a Derivative Database for purposes of Section 4.4; and\n\nc. Use of a Derivative Database internally within an organisation is\nnot to the public and therefore does not fall under the requirements\nof Section 4.4.\n\n4.6 Access to Derivative Databases. If You Publicly Use a Derivative\nDatabase or a Produced Work from a Derivative Database, You must also\noffer to recipients of the Derivative Database or Produced Work a copy\nin a machine readable form of:\n\na. The entire Derivative Database; or\n\nb. A file containing all of the alterations made to the Database or\nthe method of making the alterations to the Database (such as an\nalgorithm), including any additional Contents, that make up all the\ndifferences between the Database and the Derivative Database.\n\nThe Derivative Database (under a.) or alteration file (under b.) must be\navailable at no more than a reasonable production cost for physical\ndistributions and free of charge if distributed over the internet.\n\n4.7 Technological measures and additional terms\n\na. This License does not allow You to impose (except subject to\nSection 4.7 b.) any terms or any technological measures on the\nDatabase, a Derivative Database, or the whole or a Substantial part of\nthe Contents that alter or restrict the terms of this License, or any\nrights granted under it, or have the effect or intent of restricting\nthe ability of any person to exercise those rights.\n\nb. Parallel distribution. You may impose terms or technological\nmeasures on the Database, a Derivative Database, or the whole or a\nSubstantial part of the Contents (a \"Restricted Database\") in\ncontravention of Section 4.74 a. only if You also make a copy of the\nDatabase or a Derivative Database available to the recipient of the\nRestricted Database:\n\ni. That is available without additional fee;\n\nii. That is available in a medium that does not alter or restrict\nthe terms of this License, or any rights granted under it, or have\nthe effect or intent of restricting the ability of any person to\nexercise those rights (an \"Unrestricted Database\"); and\n\niii. The Unrestricted Database is at least as accessible to the\nrecipient as a practical matter as the Restricted Database.\n\nc. For the avoidance of doubt, You may place this Database or a\nDerivative Database in an authenticated environment, behind a\npassword, or within a similar access control scheme provided that You\ndo not alter or restrict the terms of this License or any rights\ngranted under it or have the effect or intent of restricting the\nability of any person to exercise those rights. \n\n4.8 Licensing of others. You may not sublicense the Database. Each time\nYou communicate the Database, the whole or Substantial part of the\nContents, or any Derivative Database to anyone else in any way, the\nLicensor offers to the recipient a license to the Database on the same\nterms and conditions as this License. You are not responsible for\nenforcing compliance by third parties with this License, but You may\nenforce any rights that You have over a Derivative Database. You are\nsolely responsible for any modifications of a Derivative Database made\nby You or another Person at Your direction. You may not impose any\nfurther restrictions on the exercise of the rights granted or affirmed\nunder this License.\n\n### 5.0 Moral rights\n\n5.1 Moral rights. This section covers moral rights, including any rights\nto be identified as the author of the Database or to object to treatment\nthat would otherwise prejudice the author's honour and reputation, or\nany other derogatory treatment:\n\na. For jurisdictions allowing waiver of moral rights, Licensor waives\nall moral rights that Licensor may have in the Database to the fullest\nextent possible by the law of the relevant jurisdiction under Section\n10.4; \n\nb. If waiver of moral rights under Section 5.1 a in the relevant\njurisdiction is not possible, Licensor agrees not to assert any moral\nrights over the Database and waives all claims in moral rights to the\nfullest extent possible by the law of the relevant jurisdiction under\nSection 10.4; and\n\nc. For jurisdictions not allowing waiver or an agreement not to assert\nmoral rights under Section 5.1 a and b, the author may retain their\nmoral rights over certain aspects of the Database.\n\nPlease note that some jurisdictions do not allow for the waiver of moral\nrights, and so moral rights may still subsist over the Database in some\njurisdictions.\n\n### 6.0 Fair dealing, Database exceptions, and other rights not affected \n\n6.1 This License does not affect any rights that You or anyone else may\nindependently have under any applicable law to make any use of this\nDatabase, including without limitation:\n\na. Exceptions to the Database Right including: Extraction of Contents\nfrom non-electronic Databases for private purposes, Extraction for\npurposes of illustration for teaching or scientific research, and\nExtraction or Re-utilisation for public security or an administrative\nor judicial procedure. \n\nb. Fair dealing, fair use, or any other legally recognised limitation\nor exception to infringement of copyright or other applicable laws. \n\n6.2 This License does not affect any rights of lawful users to Extract\nand Re-utilise insubstantial parts of the Contents, evaluated\nquantitatively or qualitatively, for any purposes whatsoever, including\ncreating a Derivative Database (subject to other rights over the\nContents, see Section 2.4). The repeated and systematic Extraction or\nRe-utilisation of insubstantial parts of the Contents may however amount\nto the Extraction or Re-utilisation of a Substantial part of the\nContents.\n\n### 7.0 Warranties and Disclaimer\n\n7.1 The Database is licensed by the Licensor \"as is\" and without any\nwarranty of any kind, either express, implied, or arising by statute,\ncustom, course of dealing, or trade usage. Licensor specifically\ndisclaims any and all implied warranties or conditions of title,\nnon-infringement, accuracy or completeness, the presence or absence of\nerrors, fitness for a particular purpose, merchantability, or otherwise.\nSome jurisdictions do not allow the exclusion of implied warranties, so\nthis exclusion may not apply to You.\n\n### 8.0 Limitation of liability\n\n8.1 Subject to any liability that may not be excluded or limited by law,\nthe Licensor is not liable for, and expressly excludes, all liability\nfor loss or damage however and whenever caused to anyone by any use\nunder this License, whether by You or by anyone else, and whether caused\nby any fault on the part of the Licensor or not. This exclusion of\nliability includes, but is not limited to, any special, incidental,\nconsequential, punitive, or exemplary damages such as loss of revenue,\ndata, anticipated profits, and lost business. This exclusion applies\neven if the Licensor has been advised of the possibility of such\ndamages.\n\n8.2 If liability may not be excluded by law, it is limited to actual and\ndirect financial loss to the extent it is caused by proved negligence on\nthe part of the Licensor.\n\n### 9.0 Termination of Your rights under this License\n\n9.1 Any breach by You of the terms and conditions of this License\nautomatically terminates this License with immediate effect and without\nnotice to You. For the avoidance of doubt, Persons who have received the\nDatabase, the whole or a Substantial part of the Contents, Derivative\nDatabases, or the Database as part of a Collective Database from You\nunder this License will not have their licenses terminated provided\ntheir use is in full compliance with this License or a license granted\nunder Section 4.8 of this License. Sections 1, 2, 7, 8, 9 and 10 will\nsurvive any termination of this License.\n\n9.2 If You are not in breach of the terms of this License, the Licensor\nwill not terminate Your rights under it. \n\n9.3 Unless terminated under Section 9.1, this License is granted to You\nfor the duration of applicable rights in the Database. \n\n9.4 Reinstatement of rights. If you cease any breach of the terms and\nconditions of this License, then your full rights under this License\nwill be reinstated:\n\na. Provisionally and subject to permanent termination until the 60th\nday after cessation of breach; \n\nb. Permanently on the 60th day after cessation of breach unless\notherwise reasonably notified by the Licensor; or\n\nc. Permanently if reasonably notified by the Licensor of the\nviolation, this is the first time You have received notice of\nviolation of this License from the Licensor, and You cure the\nviolation prior to 30 days after your receipt of the notice.\n\nPersons subject to permanent termination of rights are not eligible to\nbe a recipient and receive a license under Section 4.8.\n\n9.5 Notwithstanding the above, Licensor reserves the right to release\nthe Database under different license terms or to stop distributing or\nmaking available the Database. Releasing the Database under different\nlicense terms or stopping the distribution of the Database will not\nwithdraw this License (or any other license that has been, or is\nrequired to be, granted under the terms of this License), and this\nLicense will continue in full force and effect unless terminated as\nstated above.\n\n### 10.0 General\n\n10.1 If any provision of this License is held to be invalid or\nunenforceable, that must not affect the validity or enforceability of\nthe remainder of the terms and conditions of this License and each\nremaining provision of this License shall be valid and enforced to the\nfullest extent permitted by law. \n\n10.2 This License is the entire agreement between the parties with\nrespect to the rights granted here over the Database. It replaces any\nearlier understandings, agreements or representations with respect to\nthe Database. \n\n10.3 If You are in breach of the terms of this License, You will not be\nentitled to rely on the terms of this License or to complain of any\nbreach by the Licensor. \n\n10.4 Choice of law. This License takes effect in and will be governed by\nthe laws of the relevant jurisdiction in which the License terms are\nsought to be enforced. If the standard suite of rights granted under\napplicable copyright law and Database Rights in the relevant\njurisdiction includes additional rights not granted under this License,\nthese additional rights are granted in this License in order to meet the\nterms of this License.", + "json": "odbl-1.0.json", + "yaml": "odbl-1.0.yml", + "html": "odbl-1.0.html", + "license": "odbl-1.0.LICENSE" + }, + { + "license_key": "odc-1.0", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "ODC Attribution License (ODC-By)\nPreamble\nThe Open Data Commons Attribution License is a license agreement\nintended to allow users to freely share, modify, and use this Database\nsubject only to the attribution requirements set out in Section 4.\n\nDatabases can contain a wide variety of types of content (images,\naudiovisual material, and sounds all in the same database, for example),\nand so this license only governs the rights over the Database, and not\nthe contents of the Database individually. Licensors may therefore wish\nto use this license together with another license for the contents.\n\nSometimes the contents of a database, or the database itself, can be\ncovered by other rights not addressed here (such as private contracts,\ntrademark over the name, or privacy rights / data protection rights\nover information in the contents), and so you are advised that you may\nhave to consult other documents or clear other rights before doing\nactivities not covered by this License.\n\nThe Licensor (as defined below)\n\nand\n\nYou (as defined below)\n\nagree as follows:\n\n1.0 Definitions of Capitalised Words\n\"Collective Database\" \u2013 Means this Database in unmodified form as part\nof a collection of independent databases in themselves that together are\nassembled into a collective whole. A work that constitutes a Collective\nDatabase will not be considered a Derivative Database.\n\n\"Convey\" \u2013 As a verb, means Using the Database, a Derivative Database,\nor the Database as part of a Collective Database in any way that enables\na Person to make or receive copies of the Database or a Derivative\nDatabase. Conveying does not include interaction with a user through a\ncomputer network, or creating and Using a Produced Work, where no\ntransfer of a copy of the Database or a Derivative Database occurs.\n\n\"Contents\" \u2013 The contents of this Database, which includes the\ninformation, independent works, or other material collected into the\nDatabase. For example, the contents of the Database could be factual\ndata or works such as images, audiovisual material, text, or sounds.\n\n\"Database\" \u2013 A collection of material (the Contents) arranged in a\nsystematic or methodical way and individually accessible by electronic\nor other means offered under the terms of this License.\n\n\"Database Directive\" \u2013 Means Directive 96/9/EC of the European\nParliament and of the Council of 11 March 1996 on the legal protection\nof databases, as amended or succeeded.\n\n\"Database Right\" \u2013 Means rights resulting from the Chapter III (\"sui\ngeneris\") rights in the Database Directive (as amended and as transposed\nby member states), which includes the Extraction and Re-utilisation of\nthe whole or a Substantial part of the Contents, as well as any similar\nrights available in the relevant jurisdiction under Section 10.4.\n\n\"Derivative Database\" \u2013 Means a database based upon the Database, and\nincludes any translation, adaptation, arrangement, modification, or any\nother alteration of the Database or of a Substantial part of the\nContents. This includes, but is not limited to, Extracting or\nRe-utilising the whole or a Substantial part of the Contents in a new\nDatabase.\n\n\"Extraction\" \u2013 Means the permanent or temporary transfer of all or a\nSubstantial part of the Contents to another medium by any means or in\nany form.\n\n\"License\" \u2013 Means this license agreement and is both a license of rights\nsuch as copyright and Database Rights and an agreement in contract.\n\n\"Licensor\" \u2013 Means the Person that offers the Database under the terms\nof this License.\n\n\"Person\" \u2013 Means a natural or legal person or a body of persons\ncorporate or incorporate.\n\n\"Produced Work\" \u2013 a work (such as an image, audiovisual material, text,\nor sounds) resulting from using the whole or a Substantial part of the\nContents (via a search or other query) from this Database, a Derivative\nDatabase, or this Database as part of a Collective Database.\n\n\"Publicly\" \u2013 means to Persons other than You or under Your control by\neither more than 50% ownership or by the power to direct their\nactivities (such as contracting with an independent consultant).\n\n\"Re-utilisation\" \u2013 means any form of making available to the public all\nor a Substantial part of the Contents by the distribution of copies, by\nrenting, by online or other forms of transmission.\n\n\"Substantial\" \u2013 Means substantial in terms of quantity or quality or a\ncombination of both. The repeated and systematic Extraction or\nRe-utilisation of insubstantial parts of the Contents may amount to the\nExtraction or Re-utilisation of a Substantial part of the Contents.\n\n\"Use\" \u2013 As a verb, means doing any act that is restricted by copyright\nor Database Rights whether in the original medium or any other; and\nincludes without limitation distributing, copying, publicly performing,\npublicly displaying, and preparing derivative works of the Database, as\nwell as modifying the Database as may be technically necessary to use it\nin a different mode or format.\n\n\"You\" \u2013 Means a Person exercising rights under this License who has not\npreviously violated the terms of this License with respect to the\nDatabase, or who has received express permission from the Licensor to\nexercise rights under this License despite a previous violation.\n\nWords in the singular include the plural and vice versa.\n\n2.0 What this License covers\n2.1. Legal effect of this document. This License is:\n\na. A license of applicable copyright and neighbouring rights;\n\nb. A license of the Database Right; and\n\nc. An agreement in contract between You and the Licensor.\n\n2.2 Legal rights covered. This License covers the legal rights in the\nDatabase, including:\n\na. Copyright. Any copyright or neighbouring rights in the Database.\nThe copyright licensed includes any individual elements of the\nDatabase, but does not cover the copyright over the Contents\nindependent of this Database. See Section 2.4 for details. Copyright\nlaw varies between jurisdictions, but is likely to cover: the Database\nmodel or schema, which is the structure, arrangement, and organisation\nof the Database, and can also include the Database tables and table\nindexes; the data entry and output sheets; and the Field names of\nContents stored in the Database;\n\nb. Database Rights. Database Rights only extend to the Extraction and\nRe-utilisation of the whole or a Substantial part of the Contents.\nDatabase Rights can apply even when there is no copyright over the\nDatabase. Database Rights can also apply when the Contents are removed\nfrom the Database and are selected and arranged in a way that would\nnot infringe any applicable copyright; and\n\nc. Contract. This is an agreement between You and the Licensor for\naccess to the Database. In return you agree to certain conditions of\nuse on this access as outlined in this License.\n\n2.3 Rights not covered.\n\na. This License does not apply to computer programs used in the making\nor operation of the Database;\n\nb. This License does not cover any patents over the Contents or the\nDatabase; and\n\nc. This License does not cover any trademarks associated with the\nDatabase.\n\n2.4 Relationship to Contents in the Database. The individual items of\nthe Contents contained in this Database may be covered by other rights,\nincluding copyright, patent, data protection, privacy, or personality\nrights, and this License does not cover any rights (other than Database\nRights or in contract) in individual Contents contained in the Database.\nFor example, if used on a Database of images (the Contents), this\nLicense would not apply to copyright over individual images, which could\nhave their own separate licenses, or one single license covering all of\nthe rights over the images.\n\n3.0 Rights granted\n3.1 Subject to the terms and conditions of this License, the Licensor\ngrants to You a worldwide, royalty-free, non-exclusive, terminable (but\nonly under Section 9) license to Use the Database for the duration of\nany applicable copyright and Database Rights. These rights explicitly\ninclude commercial use, and do not exclude any field of endeavour. To\nthe extent possible in the relevant jurisdiction, these rights may be\nexercised in all media and formats whether now known or created in the\nfuture.\n\nThe rights granted cover, for example:\n\na. Extraction and Re-utilisation of the whole or a Substantial part of\nthe Contents;\n\nb. Creation of Derivative Databases;\n\nc. Creation of Collective Databases;\n\nd. Creation of temporary or permanent reproductions by any means and\nin any form, in whole or in part, including of any Derivative\nDatabases or as a part of Collective Databases; and\n\ne. Distribution, communication, display, lending, making available, or\nperformance to the public by any means and in any form, in whole or in\npart, including of any Derivative Database or as a part of Collective\nDatabases.\n\n3.2 Compulsory license schemes. For the avoidance of doubt:\n\na. Non-waivable compulsory license schemes. In those jurisdictions in\nwhich the right to collect royalties through any statutory or\ncompulsory licensing scheme cannot be waived, the Licensor reserves\nthe exclusive right to collect such royalties for any exercise by You\nof the rights granted under this License;\n\nb. Waivable compulsory license schemes. In those jurisdictions in\nwhich the right to collect royalties through any statutory or\ncompulsory licensing scheme can be waived, the Licensor waives the\nexclusive right to collect such royalties for any exercise by You of\nthe rights granted under this License; and,\n\nc. Voluntary license schemes. The Licensor waives the right to collect\nroyalties, whether individually or, in the event that the Licensor is\na member of a collecting society that administers voluntary licensing\nschemes, via that society, from any exercise by You of the rights\ngranted under this License.\n\n3.3 The right to release the Database under different terms, or to stop\ndistributing or making available the Database, is reserved. Note that\nthis Database may be multiple-licensed, and so You may have the choice\nof using alternative licenses for this Database. Subject to Section\n10.4, all other rights not expressly granted by Licensor are reserved.\n\n4.0 Conditions of Use\n4.1 The rights granted in Section 3 above are expressly made subject to\nYour complying with the following conditions of use. These are important\nconditions of this License, and if You fail to follow them, You will be\nin material breach of its terms.\n\n4.2 Notices. If You Publicly Convey this Database, any Derivative\nDatabase, or the Database as part of a Collective Database, then You\nmust:\n\na. Do so only under the terms of this License;\n\nb. Include a copy of this License or its Uniform Resource Identifier (URI)\nwith the Database or Derivative Database, including both in the\nDatabase or Derivative Database and in any relevant documentation;\n\nc. Keep intact any copyright or Database Right notices and notices\nthat refer to this License; and\n\nd. If it is not possible to put the required notices in a particular\nfile due to its structure, then You must include the notices in a\nlocation (such as a relevant directory) where users would be likely to\nlook for it.\n\n4.3 Notice for using output (Contents). Creating and Using a Produced\nWork does not require the notice in Section 4.2. However, if you\nPublicly Use a Produced Work, You must include a notice associated with\nthe Produced Work reasonably calculated to make any Person that uses,\nviews, accesses, interacts with, or is otherwise exposed to the Produced\nWork aware that Content was obtained from the Database, Derivative\nDatabase, or the Database as part of a Collective Database, and that it\nis available under this License.\n\na. Example notice. The following text will satisfy notice under\nSection 4.3:\n\n Contains information from DATABASE NAME which is made available\n under the ODC Attribution License.\nDATABASE NAME should be replaced with the name of the Database and a\nhyperlink to the location of the Database. \"ODC Attribution License\"\nshould contain a hyperlink to the URI of the text of this License. If\nhyperlinks are not possible, You should include the plain text of the\nrequired URI\u2019s with the above notice.\n\n4.4 Licensing of others. You may not sublicense the Database. Each time\nYou communicate the Database, the whole or Substantial part of the\nContents, or any Derivative Database to anyone else in any way, the\nLicensor offers to the recipient a license to the Database on the same\nterms and conditions as this License. You are not responsible for\nenforcing compliance by third parties with this License, but You may\nenforce any rights that You have over a Derivative Database. You are\nsolely responsible for any modifications of a Derivative Database made\nby You or another Person at Your direction. You may not impose any\nfurther restrictions on the exercise of the rights granted or affirmed\nunder this License.\n\n5.0 Moral rights\n5.1 Moral rights. This section covers moral rights, including any rights\nto be identified as the author of the Database or to object to treatment\nthat would otherwise prejudice the author\u2019s honour and reputation, or\nany other derogatory treatment:\n\na. For jurisdictions allowing waiver of moral rights, Licensor waives\nall moral rights that Licensor may have in the Database to the fullest\nextent possible by the law of the relevant jurisdiction under Section\n10.4;\n\nb. If waiver of moral rights under Section 5.1 a in the relevant\njurisdiction is not possible, Licensor agrees not to assert any moral\nrights over the Database and waives all claims in moral rights to the\nfullest extent possible by the law of the relevant jurisdiction under\nSection 10.4; and\n\nc. For jurisdictions not allowing waiver or an agreement not to assert\nmoral rights under Section 5.1 a and b, the author may retain their\nmoral rights over certain aspects of the Database.\n\nPlease note that some jurisdictions do not allow for the waiver of moral\nrights, and so moral rights may still subsist over the Database in some\njurisdictions.\n\n6.0 Fair dealing, Database exceptions, and other rights not affected\n6.1 This License does not affect any rights that You or anyone else may\nindependently have under any applicable law to make any use of this\nDatabase, including without limitation:\n\na. Exceptions to the Database Right including: Extraction of Contents\nfrom non-electronic Databases for private purposes, Extraction for\npurposes of illustration for teaching or scientific research, and\nExtraction or Re-utilisation for public security or an administrative\nor judicial procedure.\n\nb. Fair dealing, fair use, or any other legally recognised limitation\nor exception to infringement of copyright or other applicable laws.\n\n6.2 This License does not affect any rights of lawful users to Extract\nand Re-utilise insubstantial parts of the Contents, evaluated\nquantitatively or qualitatively, for any purposes whatsoever, including\ncreating a Derivative Database (subject to other rights over the\nContents, see Section 2.4). The repeated and systematic Extraction or\nRe-utilisation of insubstantial parts of the Contents may however amount\nto the Extraction or Re-utilisation of a Substantial part of the\nContents.\n\n7.0 Warranties and Disclaimer\n7.1 The Database is licensed by the Licensor \"as is\" and without any\nwarranty of any kind, either express, implied, or arising by statute,\ncustom, course of dealing, or trade usage. Licensor specifically\ndisclaims any and all implied warranties or conditions of title,\nnon-infringement, accuracy or completeness, the presence or absence of\nerrors, fitness for a particular purpose, merchantability, or otherwise.\nSome jurisdictions do not allow the exclusion of implied warranties, so\nthis exclusion may not apply to You.\n\n8.0 Limitation of liability\n8.1 Subject to any liability that may not be excluded or limited by law,\nthe Licensor is not liable for, and expressly excludes, all liability\nfor loss or damage however and whenever caused to anyone by any use\nunder this License, whether by You or by anyone else, and whether caused\nby any fault on the part of the Licensor or not. This exclusion of\nliability includes, but is not limited to, any special, incidental,\nconsequential, punitive, or exemplary damages such as loss of revenue,\ndata, anticipated profits, and lost business. This exclusion applies\neven if the Licensor has been advised of the possibility of such\ndamages.\n\n8.2 If liability may not be excluded by law, it is limited to actual and\ndirect financial loss to the extent it is caused by proved negligence on\nthe part of the Licensor.\n\n9.0 Termination of Your rights under this License\n9.1 Any breach by You of the terms and conditions of this License\nautomatically terminates this License with immediate effect and without\nnotice to You. For the avoidance of doubt, Persons who have received the\nDatabase, the whole or a Substantial part of the Contents, Derivative\nDatabases, or the Database as part of a Collective Database from You\nunder this License will not have their licenses terminated provided\ntheir use is in full compliance with this License or a license granted\nunder Section 4.8 of this License. Sections 1, 2, 7, 8, 9 and 10 will\nsurvive any termination of this License.\n\n9.2 If You are not in breach of the terms of this License, the Licensor\nwill not terminate Your rights under it.\n\n9.3 Unless terminated under Section 9.1, this License is granted to You\nfor the duration of applicable rights in the Database.\n\n9.4 Reinstatement of rights. If you cease any breach of the terms and\nconditions of this License, then your full rights under this License\nwill be reinstated:\n\na. Provisionally and subject to permanent termination until the 60th\nday after cessation of breach;\n\nb. Permanently on the 60th day after cessation of breach unless\notherwise reasonably notified by the Licensor; or\n\nc. Permanently if reasonably notified by the Licensor of the\nviolation, this is the first time You have received notice of\nviolation of this License from the Licensor, and You cure the\nviolation prior to 30 days after your receipt of the notice.\n\n9.5 Notwithstanding the above, Licensor reserves the right to release\nthe Database under different license terms or to stop distributing or\nmaking available the Database. Releasing the Database under different\nlicense terms or stopping the distribution of the Database will not\nwithdraw this License (or any other license that has been, or is\nrequired to be, granted under the terms of this License), and this\nLicense will continue in full force and effect unless terminated as\nstated above.\n\n10.0 General\n10.1 If any provision of this License is held to be invalid or\nunenforceable, that must not affect the validity or enforceability of\nthe remainder of the terms and conditions of this License and each\nremaining provision of this License shall be valid and enforced to the\nfullest extent permitted by law.\n\n10.2 This License is the entire agreement between the parties with\nrespect to the rights granted here over the Database. It replaces any\nearlier understandings, agreements or representations with respect to\nthe Database.\n\n10.3 If You are in breach of the terms of this License, You will not be\nentitled to rely on the terms of this License or to complain of any\nbreach by the Licensor.\n\n10.4 Choice of law. This License takes effect in and will be governed by\nthe laws of the relevant jurisdiction in which the License terms are\nsought to be enforced. If the standard suite of rights granted under\napplicable copyright law and Database Rights in the relevant\njurisdiction includes additional rights not granted under this License,\nthese additional rights are granted in this License in order to meet the\nterms of this License.", + "json": "odc-1.0.json", + "yaml": "odc-1.0.yml", + "html": "odc-1.0.html", + "license": "odc-1.0.LICENSE" + }, + { + "license_key": "odc-by-1.0", + "category": "Permissive", + "spdx_license_key": "ODC-By-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-odc-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Open Data Commons Attribution License (ODC-By) v1.0\nODC Attribution License (ODC-By)\nPreamble\n\nThe Open Data Commons Attribution License is a license agreement\nintended to allow users to freely share, modify, and use this Database\nsubject only to the attribution requirements set out in Section 4.\n\nDatabases can contain a wide variety of types of content (images,\naudiovisual material, and sounds all in the same database, for example),\nand so this license only governs the rights over the Database, and not\nthe contents of the Database individually. Licensors may therefore wish\nto use this license together with another license for the contents.\n\nSometimes the contents of a database, or the database itself, can be\ncovered by other rights not addressed here (such as private contracts,\ntrademark over the name, or privacy rights / data protection rights\nover information in the contents), and so you are advised that you may\nhave to consult other documents or clear other rights before doing\nactivities not covered by this License.\n\nThe Licensor (as defined below)\n\nand\n\nYou (as defined below)\n\nagree as follows:\n1.0 Definitions of Capitalised Words\n\n\"Collective Database\" \u2013 Means this Database in unmodified form as part\nof a collection of independent databases in themselves that together are\nassembled into a collective whole. A work that constitutes a Collective\nDatabase will not be considered a Derivative Database.\n\n\"Convey\" \u2013 As a verb, means Using the Database, a Derivative Database,\nor the Database as part of a Collective Database in any way that enables\na Person to make or receive copies of the Database or a Derivative\nDatabase. Conveying does not include interaction with a user through a\ncomputer network, or creating and Using a Produced Work, where no\ntransfer of a copy of the Database or a Derivative Database occurs.\n\n\"Contents\" \u2013 The contents of this Database, which includes the\ninformation, independent works, or other material collected into the\nDatabase. For example, the contents of the Database could be factual\ndata or works such as images, audiovisual material, text, or sounds.\n\n\"Database\" \u2013 A collection of material (the Contents) arranged in a\nsystematic or methodical way and individually accessible by electronic\nor other means offered under the terms of this License.\n\n\"Database Directive\" \u2013 Means Directive 96/9/EC of the European\nParliament and of the Council of 11 March 1996 on the legal protection\nof databases, as amended or succeeded.\n\n\"Database Right\" \u2013 Means rights resulting from the Chapter III (\"sui\ngeneris\") rights in the Database Directive (as amended and as transposed\nby member states), which includes the Extraction and Re-utilisation of\nthe whole or a Substantial part of the Contents, as well as any similar\nrights available in the relevant jurisdiction under Section 10.4.\n\n\"Derivative Database\" \u2013 Means a database based upon the Database, and\nincludes any translation, adaptation, arrangement, modification, or any\nother alteration of the Database or of a Substantial part of the\nContents. This includes, but is not limited to, Extracting or\nRe-utilising the whole or a Substantial part of the Contents in a new\nDatabase.\n\n\"Extraction\" \u2013 Means the permanent or temporary transfer of all or a\nSubstantial part of the Contents to another medium by any means or in\nany form.\n\n\"License\" \u2013 Means this license agreement and is both a license of rights\nsuch as copyright and Database Rights and an agreement in contract.\n\n\"Licensor\" \u2013 Means the Person that offers the Database under the terms\nof this License.\n\n\"Person\" \u2013 Means a natural or legal person or a body of persons\ncorporate or incorporate.\n\n\"Produced Work\" \u2013 a work (such as an image, audiovisual material, text,\nor sounds) resulting from using the whole or a Substantial part of the\nContents (via a search or other query) from this Database, a Derivative\nDatabase, or this Database as part of a Collective Database.\n\n\"Publicly\" \u2013 means to Persons other than You or under Your control by\neither more than 50% ownership or by the power to direct their\nactivities (such as contracting with an independent consultant).\n\n\"Re-utilisation\" \u2013 means any form of making available to the public all\nor a Substantial part of the Contents by the distribution of copies, by\nrenting, by online or other forms of transmission.\n\n\"Substantial\" \u2013 Means substantial in terms of quantity or quality or a\ncombination of both. The repeated and systematic Extraction or\nRe-utilisation of insubstantial parts of the Contents may amount to the\nExtraction or Re-utilisation of a Substantial part of the Contents.\n\n\"Use\" \u2013 As a verb, means doing any act that is restricted by copyright\nor Database Rights whether in the original medium or any other; and\nincludes without limitation distributing, copying, publicly performing,\npublicly displaying, and preparing derivative works of the Database, as\nwell as modifying the Database as may be technically necessary to use it\nin a different mode or format.\n\n\"You\" \u2013 Means a Person exercising rights under this License who has not\npreviously violated the terms of this License with respect to the\nDatabase, or who has received express permission from the Licensor to\nexercise rights under this License despite a previous violation.\n\nWords in the singular include the plural and vice versa.\n2.0 What this License covers\n\n2.1. Legal effect of this document. This License is:\n\na. A license of applicable copyright and neighbouring rights;\n\nb. A license of the Database Right; and\n\nc. An agreement in contract between You and the Licensor.\n\n2.2 Legal rights covered. This License covers the legal rights in the\nDatabase, including:\n\na. Copyright. Any copyright or neighbouring rights in the Database.\nThe copyright licensed includes any individual elements of the\nDatabase, but does not cover the copyright over the Contents\nindependent of this Database. See Section 2.4 for details. Copyright\nlaw varies between jurisdictions, but is likely to cover: the Database\nmodel or schema, which is the structure, arrangement, and organisation\nof the Database, and can also include the Database tables and table\nindexes; the data entry and output sheets; and the Field names of\nContents stored in the Database;\n\nb. Database Rights. Database Rights only extend to the Extraction and\nRe-utilisation of the whole or a Substantial part of the Contents.\nDatabase Rights can apply even when there is no copyright over the\nDatabase. Database Rights can also apply when the Contents are removed\nfrom the Database and are selected and arranged in a way that would\nnot infringe any applicable copyright; and\n\nc. Contract. This is an agreement between You and the Licensor for\naccess to the Database. In return you agree to certain conditions of\nuse on this access as outlined in this License.\n\n2.3 Rights not covered.\n\na. This License does not apply to computer programs used in the making\nor operation of the Database;\n\nb. This License does not cover any patents over the Contents or the\nDatabase; and\n\nc. This License does not cover any trademarks associated with the\nDatabase.\n\n2.4 Relationship to Contents in the Database. The individual items of\nthe Contents contained in this Database may be covered by other rights,\nincluding copyright, patent, data protection, privacy, or personality\nrights, and this License does not cover any rights (other than Database\nRights or in contract) in individual Contents contained in the Database.\nFor example, if used on a Database of images (the Contents), this\nLicense would not apply to copyright over individual images, which could\nhave their own separate licenses, or one single license covering all of\nthe rights over the images.\n3.0 Rights granted\n\n3.1 Subject to the terms and conditions of this License, the Licensor\ngrants to You a worldwide, royalty-free, non-exclusive, terminable (but\nonly under Section 9) license to Use the Database for the duration of\nany applicable copyright and Database Rights. These rights explicitly\ninclude commercial use, and do not exclude any field of endeavour. To\nthe extent possible in the relevant jurisdiction, these rights may be\nexercised in all media and formats whether now known or created in the\nfuture.\n\nThe rights granted cover, for example:\n\na. Extraction and Re-utilisation of the whole or a Substantial part of\nthe Contents;\n\nb. Creation of Derivative Databases;\n\nc. Creation of Collective Databases;\n\nd. Creation of temporary or permanent reproductions by any means and\nin any form, in whole or in part, including of any Derivative\nDatabases or as a part of Collective Databases; and\n\ne. Distribution, communication, display, lending, making available, or\nperformance to the public by any means and in any form, in whole or in\npart, including of any Derivative Database or as a part of Collective\nDatabases.\n\n3.2 Compulsory license schemes. For the avoidance of doubt:\n\na. Non-waivable compulsory license schemes. In those jurisdictions in\nwhich the right to collect royalties through any statutory or\ncompulsory licensing scheme cannot be waived, the Licensor reserves\nthe exclusive right to collect such royalties for any exercise by You\nof the rights granted under this License;\n\nb. Waivable compulsory license schemes. In those jurisdictions in\nwhich the right to collect royalties through any statutory or\ncompulsory licensing scheme can be waived, the Licensor waives the\nexclusive right to collect such royalties for any exercise by You of\nthe rights granted under this License; and,\n\nc. Voluntary license schemes. The Licensor waives the right to collect\nroyalties, whether individually or, in the event that the Licensor is\na member of a collecting society that administers voluntary licensing\nschemes, via that society, from any exercise by You of the rights\ngranted under this License.\n\n3.3 The right to release the Database under different terms, or to stop\ndistributing or making available the Database, is reserved. Note that\nthis Database may be multiple-licensed, and so You may have the choice\nof using alternative licenses for this Database. Subject to Section\n10.4, all other rights not expressly granted by Licensor are reserved.\n4.0 Conditions of Use\n\n4.1 The rights granted in Section 3 above are expressly made subject to\nYour complying with the following conditions of use. These are important\nconditions of this License, and if You fail to follow them, You will be\nin material breach of its terms.\n\n4.2 Notices. If You Publicly Convey this Database, any Derivative\nDatabase, or the Database as part of a Collective Database, then You\nmust:\n\na. Do so only under the terms of this License;\n\nb. Include a copy of this License or its Uniform Resource Identifier (URI)\nwith the Database or Derivative Database, including both in the\nDatabase or Derivative Database and in any relevant documentation;\n\nc. Keep intact any copyright or Database Right notices and notices\nthat refer to this License; and\n\nd. If it is not possible to put the required notices in a particular\nfile due to its structure, then You must include the notices in a\nlocation (such as a relevant directory) where users would be likely to\nlook for it.\n\n4.3 Notice for using output (Contents). Creating and Using a Produced\nWork does not require the notice in Section 4.2. However, if you\nPublicly Use a Produced Work, You must include a notice associated with\nthe Produced Work reasonably calculated to make any Person that uses,\nviews, accesses, interacts with, or is otherwise exposed to the Produced\nWork aware that Content was obtained from the Database, Derivative\nDatabase, or the Database as part of a Collective Database, and that it\nis available under this License.\n\na. Example notice. The following text will satisfy notice under\nSection 4.3:\n\n Contains information from DATABASE NAME which is made available\n under the ODC Attribution License.\n\nDATABASE NAME should be replaced with the name of the Database and a\nhyperlink to the location of the Database. \"ODC Attribution License\"\nshould contain a hyperlink to the URI of the text of this License. If\nhyperlinks are not possible, You should include the plain text of the\nrequired URI\u2019s with the above notice.\n\n4.4 Licensing of others. You may not sublicense the Database. Each time\nYou communicate the Database, the whole or Substantial part of the\nContents, or any Derivative Database to anyone else in any way, the\nLicensor offers to the recipient a license to the Database on the same\nterms and conditions as this License. You are not responsible for\nenforcing compliance by third parties with this License, but You may\nenforce any rights that You have over a Derivative Database. You are\nsolely responsible for any modifications of a Derivative Database made\nby You or another Person at Your direction. You may not impose any\nfurther restrictions on the exercise of the rights granted or affirmed\nunder this License.\n5.0 Moral rights\n\n5.1 Moral rights. This section covers moral rights, including any rights\nto be identified as the author of the Database or to object to treatment\nthat would otherwise prejudice the author\u2019s honour and reputation, or\nany other derogatory treatment:\n\na. For jurisdictions allowing waiver of moral rights, Licensor waives\nall moral rights that Licensor may have in the Database to the fullest\nextent possible by the law of the relevant jurisdiction under Section\n10.4;\n\nb. If waiver of moral rights under Section 5.1 a in the relevant\njurisdiction is not possible, Licensor agrees not to assert any moral\nrights over the Database and waives all claims in moral rights to the\nfullest extent possible by the law of the relevant jurisdiction under\nSection 10.4; and\n\nc. For jurisdictions not allowing waiver or an agreement not to assert\nmoral rights under Section 5.1 a and b, the author may retain their\nmoral rights over certain aspects of the Database.\n\nPlease note that some jurisdictions do not allow for the waiver of moral\nrights, and so moral rights may still subsist over the Database in some\njurisdictions.\n6.0 Fair dealing, Database exceptions, and other rights not affected\n\n6.1 This License does not affect any rights that You or anyone else may\nindependently have under any applicable law to make any use of this\nDatabase, including without limitation:\n\na. Exceptions to the Database Right including: Extraction of Contents\nfrom non-electronic Databases for private purposes, Extraction for\npurposes of illustration for teaching or scientific research, and\nExtraction or Re-utilisation for public security or an administrative\nor judicial procedure.\n\nb. Fair dealing, fair use, or any other legally recognised limitation\nor exception to infringement of copyright or other applicable laws.\n\n6.2 This License does not affect any rights of lawful users to Extract\nand Re-utilise insubstantial parts of the Contents, evaluated\nquantitatively or qualitatively, for any purposes whatsoever, including\ncreating a Derivative Database (subject to other rights over the\nContents, see Section 2.4). The repeated and systematic Extraction or\nRe-utilisation of insubstantial parts of the Contents may however amount\nto the Extraction or Re-utilisation of a Substantial part of the\nContents.\n7.0 Warranties and Disclaimer\n\n7.1 The Database is licensed by the Licensor \"as is\" and without any\nwarranty of any kind, either express, implied, or arising by statute,\ncustom, course of dealing, or trade usage. Licensor specifically\ndisclaims any and all implied warranties or conditions of title,\nnon-infringement, accuracy or completeness, the presence or absence of\nerrors, fitness for a particular purpose, merchantability, or otherwise.\nSome jurisdictions do not allow the exclusion of implied warranties, so\nthis exclusion may not apply to You.\n8.0 Limitation of liability\n\n8.1 Subject to any liability that may not be excluded or limited by law,\nthe Licensor is not liable for, and expressly excludes, all liability\nfor loss or damage however and whenever caused to anyone by any use\nunder this License, whether by You or by anyone else, and whether caused\nby any fault on the part of the Licensor or not. This exclusion of\nliability includes, but is not limited to, any special, incidental,\nconsequential, punitive, or exemplary damages such as loss of revenue,\ndata, anticipated profits, and lost business. This exclusion applies\neven if the Licensor has been advised of the possibility of such\ndamages.\n\n8.2 If liability may not be excluded by law, it is limited to actual and\ndirect financial loss to the extent it is caused by proved negligence on\nthe part of the Licensor.\n9.0 Termination of Your rights under this License\n\n9.1 Any breach by You of the terms and conditions of this License\nautomatically terminates this License with immediate effect and without\nnotice to You. For the avoidance of doubt, Persons who have received the\nDatabase, the whole or a Substantial part of the Contents, Derivative\nDatabases, or the Database as part of a Collective Database from You\nunder this License will not have their licenses terminated provided\ntheir use is in full compliance with this License or a license granted\nunder Section 4.8 of this License. Sections 1, 2, 7, 8, 9 and 10 will\nsurvive any termination of this License.\n\n9.2 If You are not in breach of the terms of this License, the Licensor\nwill not terminate Your rights under it.\n\n9.3 Unless terminated under Section 9.1, this License is granted to You\nfor the duration of applicable rights in the Database.\n\n9.4 Reinstatement of rights. If you cease any breach of the terms and\nconditions of this License, then your full rights under this License\nwill be reinstated:\n\na. Provisionally and subject to permanent termination until the 60th\nday after cessation of breach;\n\nb. Permanently on the 60th day after cessation of breach unless\notherwise reasonably notified by the Licensor; or\n\nc. Permanently if reasonably notified by the Licensor of the\nviolation, this is the first time You have received notice of\nviolation of this License from the Licensor, and You cure the\nviolation prior to 30 days after your receipt of the notice.\n\n9.5 Notwithstanding the above, Licensor reserves the right to release\nthe Database under different license terms or to stop distributing or\nmaking available the Database. Releasing the Database under different\nlicense terms or stopping the distribution of the Database will not\nwithdraw this License (or any other license that has been, or is\nrequired to be, granted under the terms of this License), and this\nLicense will continue in full force and effect unless terminated as\nstated above.\n10.0 General\n\n10.1 If any provision of this License is held to be invalid or\nunenforceable, that must not affect the validity or enforceability of\nthe remainder of the terms and conditions of this License and each\nremaining provision of this License shall be valid and enforced to the\nfullest extent permitted by law.\n\n10.2 This License is the entire agreement between the parties with\nrespect to the rights granted here over the Database. It replaces any\nearlier understandings, agreements or representations with respect to\nthe Database.\n\n10.3 If You are in breach of the terms of this License, You will not be\nentitled to rely on the terms of this License or to complain of any\nbreach by the Licensor.\n\n10.4 Choice of law. This License takes effect in and will be governed by\nthe laws of the relevant jurisdiction in which the License terms are\nsought to be enforced. If the standard suite of rights granted under\napplicable copyright law and Database Rights in the relevant\njurisdiction includes additional rights not granted under this License,\nthese additional rights are granted in this License in order to meet the\nterms of this License.", + "json": "odc-by-1.0.json", + "yaml": "odc-by-1.0.yml", + "html": "odc-by-1.0.html", + "license": "odc-by-1.0.LICENSE" + }, + { + "license_key": "odl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-odl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Directory License\n\nThe Open Directory is a compilation of many different editors' contributions. Netscape Communications Corporation (`Netscape') owns the copyright to the compilation of the different contributions, and makes the Open Directory available to you to use under the following license agreement terms and conditions (`Open Directory License'). For purposes of this Open Directory License, `Open Directory' means only the Open Directory Project currently hosted at http://dmoz.org (or at another site as may be designated by Netscape in the future), and does not include any other versions of directories, even if referred to as an `Open Directory,' that may be hosted by Netscape on other web pages (e.g., Netscape Netcenter).\n\n1. Basic License. Netscape grants you a non-exclusive, royalty-free license to use, reproduce, modify and create derivative works from, and distribute and publish the Open Directory and your derivative works thereof, subject to all of the terms and conditions of this Open Directory License. You may authorize others to exercise the foregoing rights; provided, however, that you must have an agreement with your sublicensees that passes on the requirements and obligations of Sections 2 and 4 below and which must include a limitation of liability provision no less protective of Netscape than Section 6 below.\n\nDue to the nature of the content of the Open Directory, many third parties' trade names and trademarks will be identified within the content of the Open Directory (e.g., as part of URLs and description of link). Except for the limited license to use the Netscape attribution in Section 2 below, nothing herein shall be deemed to grant you any license to use any Netscape or third party trademark or tradename.\n\n2. Attribution Requirement. As a material condition of this Open Directory License, you must provide the below applicable attribution statements on (1) all copies of the Open Directory, in whole or in part, and derivative works thereof which are either distributed (internally or otherwise) or published (made available on the Internet and/or internally over any internal network/intranet or otherwise), whether distributed or published electronically, on hard copy media or by any other means, and (2) on any program/web page from which you directly link to/access any information contained within the Open Directory, in whole or in part, or any derivative work thereof:\n 1. If the Open Directory in whole or in part, or any derivative work thereof, is made available via the Internet or internal network/intranet and/or information contained therein is directly accessed or linked via the Internet or internal network/intranet then you must provide the appropriate Netscape attribution statement as described in the page(s) at the URL(s): http://dmoz.org/become_an_editor.\n 2. If the Open Directory in whole or in part, or any derivative work thereof, is made available on any hard copy media (e.g., CD-ROM, diskette), you must place on the packaging a notice providing Netscape attribution as described in the page(s) at the URL(s): http://dmoz.org/become_an_editor. If there is no `packaging', the previous attribution notice should be placed conspicuously such that it would be reasonably viewed by the recipient of the Open Directory.\n 3. If you are using or distributing the Open Directory in modified form (i.e., with additions or deletions), you must include a statement indicating you have made modifications to it. Such statement should be placed with the attribution notices required by Sections 2(a) and 2(b) above.\n\nNetscape grants you the non-exclusive, royalty-free license to use the above identified Netscape attribution statements solely for the purpose of the above attribution requirements, and such use must be in accordance with the usage guidelines that may be published by Netscape from time to time as part of the above URLs.\n \n3. Right To Identify Licensee. You agree that Netscape has the right to publicly identify you as a user/licensee of the Open Directory.\n\n4. Errors and Changes. From time to time Netscape may elect to post on the page(s) at the URL http://dmoz.org/become_an_editor certain specific changes to the Open Directory and/or above attribution statements, which changes may be to correct errors and/or remove content alleged to be improperly in the Open Directory. So long as you are exercising the license to Open Directory hereunder, you agree to use commercially reasonable efforts to check the page(s) at the URL http://dmoz.org/become_an_editor from time to time, and to use commercially reasonable efforts to make the changes/corrections/deletion of content from the Open Directory and/or attribution statements as may be indicated at such URL. Any changes to the Open Directory content posted at the page(s) at the URL http://dmoz.org/become_an_editor are part of Open Directory.\n\n5. No Warranty/Use At Your Risk. THE OPEN DIRECTORY AND ANY NETSCAPE TRADEMARKS AND LOGOS CONTAINED WITH THE REQUIRED ATTRIBUTION STATEMENTS ARE MADE AVAILABLE UNDER THIS OPEN DIRECTORY LICENSE AT NO CHARGE. ACCORDINGLY, THE OPEN DIRECTORY AND THE NETSCAPE TRADEMARKS AND LOGOS ARE PROVIDED `AS IS,' WITHOUT WARRANTY OF ANY KIND, INCLUDING WITHOUT LIMITATION THE WARRANTIES THAT THEY ARE MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. YOU ARE SOLELY RESPONSIBLE FOR YOUR USE, DISTRIBUTION, MODIFICATION, REPRODUCTION AND PUBLICATION OF THE OPEN DIRECTORY AND ANY DERIVATIVE WORKS THEREOF BY YOU AND ANY OF YOUR SUBLICENSEES (COLLECTIVELY, `YOUR OPEN DIRECTORY USE'). THE ENTIRE RISK AS TO YOUR OPEN DIRECTORY USE IS BORNE BY YOU. YOU AGREE TO INDEMNIFY AND HOLD NETSCAPE, ITS SUBSIDIARIES AND AFFILIATES HARMLESS FROM ANY CLAIMS ARISING FROM OR RELATING TO YOUR OPEN DIRECTORY USE.\n\n6. Limitation of Liability. IN NO EVENT SHALL NETSCAPE, ITS SUBSIDIARIES OR AFFILIATES, OR THE OPEN DIRECTORY CONTRIBUTING EDITORS, BE LIABLE FOR ANY INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF ADVISED OF THE POSSIBILITY THEREOF, AND REGARDLESS OF WHETHER ANY CLAIM IS BASED UPON ANY CONTRACT, TORT OR OTHER LEGAL OR EQUITABLE THEORY, RELATING OR ARISING FROM THE OPEN DIRECTORY, YOUR OPEN DIRECTORY USE OR THIS OPEN DIRECTORY LICENSE AGREEMENT.\n\n7. California Law. This Open Directory License will be governed by the laws of the State of California, excluding its conflict of laws provisions.", + "json": "odl.json", + "yaml": "odl.yml", + "html": "odl.html", + "license": "odl.LICENSE" + }, + { + "license_key": "odmg", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-odmg", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License Agreement\n\nRedistribution of this software is permitted provided that the following\nconditions are met:\n\n1. Redistributions of source or binary code formats must retain the above\ncopyright notice.\n\n2. Redistribution in any product and all advertising materials mentioning\nfeatures or use of this software must display the following acknowledgment:\n\u201cThis product includes copyrighted software developed by E. Wray Johnson for use\nand distribution by the Object Data Management Group (http://www.odmg.org/).\u201d\n\nNo-Nonsense Disclaimer\n\nTHIS SOFTWARE IS FREE AND PROVIDED \u201cAS-IS\u201d BY THE AUTHOR E. WRAY JOHNSON WHO\nASSUMES LIABILITY TO THE EXTENT OF THE AMOUNT THAT IS HEREBY BEING CHARGED FOR\nTHE SOFTWARE.", + "json": "odmg.json", + "yaml": "odmg.yml", + "html": "odmg.html", + "license": "odmg.LICENSE" + }, + { + "license_key": "ofl-1.0", + "category": "Permissive", + "spdx_license_key": "OFL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.0 - 22 November 2005\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of cooperative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide an open\nframework in which fonts may be shared and improved in partnership with\nothers.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and sold with any software provided that the font\nnames of derivative works are changed. The fonts and derivatives,\nhowever, cannot be released under any other type of license.\n\nDEFINITIONS\n\"Font Software\" refers to any and all of the following:\n - font files\n - data files\n - source code\n - build scripts\n - documentation\n\n\"Reserved Font Name\" refers to the Font Software name as seen by\nusers and any other names as specified after the copyright statement.\n\n\"Standard Version\" refers to the collection of Font Software\ncomponents as distributed by the Copyright Holder.\n\n\"Modified Version\" refers to any derivative font software made by\nadding to, deleting, or substituting -- in part or in whole --\nany of the components of the Standard Version, by changing formats\nor by porting the Font Software to a new environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Standard or Modified Versions, may be sold by itself.\n\n2) Standard or Modified Versions of the Font Software may be bundled,\nredistributed and sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s), in part or in whole, unless explicit written permission is\ngranted by the Copyright Holder. This restriction applies to all \nreferences stored in the Font Software, such as the font menu name and\nother font description fields, which are used to differentiate the\nfont from others.\n\n4) The name(s) of the Copyright Holder or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed using this license, and may not be distributed\nunder any other license.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.", + "json": "ofl-1.0.json", + "yaml": "ofl-1.0.yml", + "html": "ofl-1.0.html", + "license": "ofl-1.0.LICENSE" + }, + { + "license_key": "ofl-1.0-no-rfn", + "category": "Permissive", + "spdx_license_key": "OFL-1.0-no-RFN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This Font Software is licensed under the SIL Open Font License, Version 1.0.\nwith no Reserved Font Name for this Font Software.\nNo modification of the license is permitted, only verbatim copy is allowed.\nThis license is copied below, and is also available with a FAQ at:\nhttp://scripts.sil.org/OFL\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.0 - 22 November 2005\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of cooperative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide an open\nframework in which fonts may be shared and improved in partnership with\nothers.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and sold with any software provided that the font\nnames of derivative works are changed. The fonts and derivatives,\nhowever, cannot be released under any other type of license.\n\nDEFINITIONS\n\"Font Software\" refers to any and all of the following:\n - font files\n - data files\n - source code\n - build scripts\n - documentation\n\n\"Reserved Font Name\" refers to the Font Software name as seen by\nusers and any other names as specified after the copyright statement.\n\n\"Standard Version\" refers to the collection of Font Software\ncomponents as distributed by the Copyright Holder.\n\n\"Modified Version\" refers to any derivative font software made by\nadding to, deleting, or substituting -- in part or in whole --\nany of the components of the Standard Version, by changing formats\nor by porting the Font Software to a new environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Standard or Modified Versions, may be sold by itself.\n\n2) Standard or Modified Versions of the Font Software may be bundled,\nredistributed and sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s), in part or in whole, unless explicit written permission is\ngranted by the Copyright Holder. This restriction applies to all \nreferences stored in the Font Software, such as the font menu name and\nother font description fields, which are used to differentiate the\nfont from others.\n\n4) The name(s) of the Copyright Holder or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed using this license, and may not be distributed\nunder any other license.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.", + "json": "ofl-1.0-no-rfn.json", + "yaml": "ofl-1.0-no-rfn.yml", + "html": "ofl-1.0-no-rfn.html", + "license": "ofl-1.0-no-rfn.LICENSE" + }, + { + "license_key": "ofl-1.0-rfn", + "category": "Permissive", + "spdx_license_key": "OFL-1.0-RFN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " is a Reserved Font Name for this Font Software.\n is a Reserved Font Name for this Font Software.\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.0.\nNo modification of the license is permitted, only verbatim copy is allowed.\nThis license is copied below, and is also available with a FAQ at:\nhttp://scripts.sil.org/OFL\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.0 - 22 November 2005\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of cooperative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide an open\nframework in which fonts may be shared and improved in partnership with\nothers.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and sold with any software provided that the font\nnames of derivative works are changed. The fonts and derivatives,\nhowever, cannot be released under any other type of license.\n\nDEFINITIONS\n\"Font Software\" refers to any and all of the following:\n - font files\n - data files\n - source code\n - build scripts\n - documentation\n\n\"Reserved Font Name\" refers to the Font Software name as seen by\nusers and any other names as specified after the copyright statement.\n\n\"Standard Version\" refers to the collection of Font Software\ncomponents as distributed by the Copyright Holder.\n\n\"Modified Version\" refers to any derivative font software made by\nadding to, deleting, or substituting -- in part or in whole --\nany of the components of the Standard Version, by changing formats\nor by porting the Font Software to a new environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Standard or Modified Versions, may be sold by itself.\n\n2) Standard or Modified Versions of the Font Software may be bundled,\nredistributed and sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s), in part or in whole, unless explicit written permission is\ngranted by the Copyright Holder. This restriction applies to all \nreferences stored in the Font Software, such as the font menu name and\nother font description fields, which are used to differentiate the\nfont from others.\n\n4) The name(s) of the Copyright Holder or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed using this license, and may not be distributed\nunder any other license.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.", + "json": "ofl-1.0-rfn.json", + "yaml": "ofl-1.0-rfn.yml", + "html": "ofl-1.0-rfn.html", + "license": "ofl-1.0-rfn.LICENSE" + }, + { + "license_key": "ofl-1.1", + "category": "Permissive", + "spdx_license_key": "OFL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded,\nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.", + "json": "ofl-1.1.json", + "yaml": "ofl-1.1.yml", + "html": "ofl-1.1.html", + "license": "ofl-1.1.LICENSE" + }, + { + "license_key": "ofl-1.1-no-rfn", + "category": "Permissive", + "spdx_license_key": "OFL-1.1-no-RFN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This Font Software is licensed under the SIL Open Font License, Version 1.1.\nwith no Reserved Font Name for this Font Software.\nThis license is copied below, and is also available with a FAQ at:\nhttp://scripts.sil.org/OFL\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded,\nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.", + "json": "ofl-1.1-no-rfn.json", + "yaml": "ofl-1.1-no-rfn.yml", + "html": "ofl-1.1-no-rfn.html", + "license": "ofl-1.1-no-rfn.LICENSE" + }, + { + "license_key": "ofl-1.1-rfn", + "category": "Permissive", + "spdx_license_key": "OFL-1.1-RFN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "with Reserved Font Name .\nwith Reserved Font Name .\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttp://scripts.sil.org/OFL\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded,\nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.", + "json": "ofl-1.1-rfn.json", + "yaml": "ofl-1.1-rfn.yml", + "html": "ofl-1.1-rfn.html", + "license": "ofl-1.1-rfn.LICENSE" + }, + { + "license_key": "ofrak-community-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-ofrak-community-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OFRAK COMMUNITY LICENSE AGREEMENT \nVersion 1.0 \nEffective: August 8, 2022\n\nThank you for your interest in OFRAK (Open Firmware Reverse Analysis Konsole).\nThis OFRAK Community License Agreement (\u201cAgreement\u201d) provides users the right\nto use OFRAK and its components for personal or academic, non-commercial use,\nas detailed below. This includes educational purposes and non-funded academic\nresearch. This Agreement does not permit use for any other purposes, including\ncommercial purposes. For any such use, you will need to reach out to Red\nBalloon Security, Inc. at https://ofrak.com/license and request an OFRAK Pro\nLicense, OFRAK Enterprise License or a custom agreement. Below are the details\nregarding use of OFRAK. Note: As of August 2022, and for a limited period,\nOFRAK Pro Licenses are available at no cost. RED BALLOON SECURITY, INC. (\u201cRED\nBALLOON\u201d) IS ONLY WILLING TO LICENSE OFRAK AND RELATED DOCUMENTATION PURSUANT\nTO THIS AGREEMENT. READ THIS AGREEMENT CAREFULLY BEFORE DOWNLOADING AND\nINSTALLING AND USING OFRAK. BY ACCESSING, INSTALLING, COPYING OR OTHERWISE\nUSING OFRAK, YOU ACKNOWLEDGE AND AGREE ON BEHALF OF YOURSELF AND YOUR\nEMPLOYER/INSTITUTION (\u201cYOU\u201d) TO BE BOUND TO THIS AGREEMENT AND THAT YOU\nACKNOWLEDGE THAT THIS AGREEMENT CREATES A LEGALLY ENFORCEABLE CONTRACT AND\nCONSTITUTES ACCEPTANCE OF ALL TERMS AND CONDITIONS OF THIS AGREEMENT WITHOUT\nMODIFICATION. YOU REPRESENT THAT YOU ARE AUTHORIZED TO ACCEPT THIS AGREEMENT\nON YOUR EMPLOYER\u2019S BEHALF. IF YOU DO NOT AGREE TO THE FOREGOING TERMS AND\nCONDITIONS, DO NOT INSTALL, COPY OR USE OFRAK.\n\n1.\tDefinitions. 1.1\t\u201cOFRAK\u201d consists of (a) the source code\nrepository for OFRAK, which can be found at\nhttps://github.com/redballoonsecurity/ofrak; (b) the following Python\npackages, which are also available via PyPI, the Python Package Index: ofrak,\nofrak_components, ofrak_io, ofrak_type, ofrak_patch_maker, ofrak_angr,\nofrak_binary_ninja, ofrak_ghidra; (c) the OFRAK graphical user interface (GUI);\n(d) OFRAK documentation. OFRAK includes all updates, improvements, APIs and\nadd-ons provided by Red Balloon with respect thereto, which Red Balloon\nspecifies is licensed under this Community License Agreement. OFRAK is\npresently made available in three formats: (i) source code repository, (ii)\nPyPI Packages and (iii) Docker images with dependencies preinstalled.\n\n1.2\t\u201cAcademic Purposes\u201d means use within a non-profit academic institution\nby its then-current faculty and students for the purposes of non-profit\nscholarly research, classroom and education, and not any other use (including\nwithout limitation, directly or indirectly in connection with any commercial\nactivity such as, for example, sponsored research or consulting services).\nShared Use of OFRAK for an Academic Purpose is permitted only when (a) used for\neducational purposes, (b) access is restricted and not provided to the general\npublic, (c) access is limited to employees and/or students of the same\ninstitution involved in a specific educational activity, and (d) all users\naccept and are subject to this Agreement.\n\n1.3\t\u201cNon-Commercial Use\u201d means personal research, evaluation, or\ndevelopment use by an individual, and not use by or on behalf of any commercial\nentity or organization or directly or indirectly in connection with any\ncommercial activity. For clarity, you cannot make money off of redistributing\nOFRAK code (including Derivatives), OFRAK analysis, OFRAK-modified binaries, or\nother OFRAK outputs. Non-Commercial Use also excludes any Shared Use.\n \n1.4\t\u201cCommercial Use\u201d means any use other than Academic Purposes or\nNon-Commercial Use, including, without limitation, use for any commercial\npurpose or by any commercial entity, including without limitation\nredistributing the OFRAK code (including Derivatives), OFRAK analysis,\nOFRAK-modified binaries, or other OFRAK outputs for any monetary or other\ncommercial consideration.\n\n1.5\t\u201cDerivatives\u201d means any modifications, additions, enhancements, or\nderivative works of OFRAK or any component thereof. For purposes of this\nAgreement, Derivatives shall not include works that remain separable from, or\nmerely link to, the interfaces of OFRAK or any Derivatives.\n\n1.6\t\u201cShared Use\u201d means any use of OFRAK where the person who set up a\nparticular instance of OFRAK is not the same person interacting with that\ninstance of OFRAK, or where a single instance of OFRAK is used by more than one\nperson (whether on the same or different occasions). This includes, but is not\nlimited to, the use of OFRAK on a server that is accessible by more than one\nperson, or by any person other than the person who set up the use of OFRAK on\nthe said server.\n\n2.\tLicense. Subject to the terms and conditions of this Agreement, Red\nBalloon grants to you a nonexclusive, nonsublicensable, nontransferable,\nno-charge, royalty-free, limited license to install, use, copy, modify, create\nderivative works of OFRAK only for (a) Academic Purposes and (b) Non-Commercial\nUse and to share Derivatives (i) publicly within the community (via publicly\navailable forks on GitHub.com), (ii) for Shared Use for an Academic Purpose,\nand (iii) with Red Balloon, for the purposes stated in this Agreement. For\nclarity, the foregoing license does not grant to you any right or license to\ncommercialize, distribute or use OFRAK, Derivatives, OFRAK code, OFRAK\nanalysis, OFRAK-modified binaries, or other OFRAK outputs for any other purpose\nwhatsoever, including Commercial Use, other than Academic Purposes or\nNon-Commercial Use. In the event that you wish to use OFRAK for any other\npurpose, including Commercial Use, you need to contact Red Balloon and enter\ninto a separate OFRAK Pro License, OFRAK Enterprise License or other custom\nagreement. Except for the limited rights and licenses expressly granted\nhereunder, no other license is granted, no other use is permitted.\n\n3.\tDerivatives. To the extent that you prepare or create any Derivatives,\nyou shall and hereby grant to (a) all users of OFRAK a right and license to\nsuch Derivatives upon the terms and conditions set forth in this Agreement and\n(b) Red Balloon a perpetual, fully paid-up, royalty-free, worldwide and\nirrevocable, right and license to use, copy, modify, enhance, prepare\nderivative works of, distribute, with unlimited right to sublicense, make, have\nmade, sell, have sold, import, export and otherwise commercialize such\nDerivatives. You acknowledge that Red Balloon may, but is not obligated to,\ninclude your Derivatives in, and otherwise incorporate your Derivatives into,\nthe core OFRAK codebase. In the event that you create Derivatives, you must\n(i) retain all copyright and other proprietary rights licenses included in the\noriginal OFRAK code, and any other Derivatives, and (ii) make it clear that you\nmodified the original version of OFRAK. Red Balloon encourages you to make\nyour Derivatives available to the community by forking the OFRAK source code\nrepository on GitHub and publishing your Derivatives on your forked repository,\nbut you are not required to do so. You represent and warrant that you have\nsufficient rights to any Derivatives and are legally entitled to grant the\nabove rights and licenses. If you are an individual and your\nemployer(s)/institution(s) have rights to intellectual property that you create\nthat includes your Derivatives, you represent that you have received permission\nto make and contribute Derivatives on behalf of that employer/institution.\n\n4.\tOwnership; Restrictions. Except as expressly and unambiguously set\nforth herein, Red Balloon and its licensors and contributors retain all right,\ntitle and interest in and to OFRAK, Derivatives, all copies, modifications and\nderivative works thereof, including without limitation, all rights to patent,\ncopyright, trade secret and other proprietary or intellectual property rights\nrelated to any of the foregoing. To the extent that you create any\nDerivatives, subject to the rights and licenses granted herein, you retain\nownership of all right, title and interest in and to such Derivatives,\nincluding without limitation, all intellectual property rights related to any\nof the foregoing. You will maintain the copyright notice and any other notices\nor identifications that appear on or in OFRAK and any Derivatives or any other\nmedia or documentation that is subject to this Agreement. You will not (and\nwill not allow any third party to): (a) use OFRAK or any Derivatives, except\nas expressly permitted in this Agreement, (b) provide, lease, lend, disclose,\nuse for timesharing or service bureau purposes, or otherwise use or allow\nothers to use for the benefit of any third party, OFRAK, (c) possess or use\nOFRAK, or allow the transfer, transmission, export, or re-export of OFRAK or\nportion thereof in violation of any export control laws or regulations\nadministered by the U.S. Commerce Department, U.S. Treasury Department\u2019s Office\nof Foreign Assets Control, or any other government agency, (d) use OFRAK in any\nway that violates any applicable law, rule or regulation or for any illegal use\nor activity; or (e) seek any patent or other intellectual property rights or\nprotections over or in connection with OFRAK or any Derivatives you create.\n\n5.\tFeedback. In addition to Derivatives, you may, from time to time and\nin your sole discretion, make suggestions for changes, modifications or\nimprovements to OFRAK (\u201cFeedback\u201d). Red Balloon shall have an irrevocable,\nperpetual, worldwide, sublicenseable, transferable, full paid-up, royalty free\nright and license to use, distribute and otherwise exploit all Feedback for any\npurpose.\n\n6.\tNo Cost License. OFRAK and any Derivatives provided pursuant to this\nAgreement shall be provided during the Term at no charge to you. \n\n7. Services. No training or support services are provided under this Agreement.\nRed Balloon may in its discretion respond to support inquiries through Red\nBalloon\u2019s support channels, such as Slack.\n\n8.\tTerm and Termination. This Agreement shall commence upon the initial\ndownload of OFRAK and shall continue until and unless terminated as set forth\nherein (the \u201cTerm\u201d). This Agreement may be terminated by Red Balloon\nimmediately upon notice to you in the event that you breach any term or\ncondition of this Agreement. Upon any termination, you shall immediately cease\nall use of OFRAK. This sentence and the following provisions will survive\ntermination: 1, 3 - 5 and 9 - 12. Termination is not an exclusive remedy and\nall other remedies will remain available.\n\n9.\tWarranty Disclaimer. The parties acknowledge that OFRAK is provided\n\u201cAS IS\u201d and may not be functional on any machine or in any environment.\nNEITHER RED BALLOON NOR ANY CONTRIBUTOR OF ANY DERIVATIVES MAKE ANY WARRANTIES,\nEXPRESS OR IMPLIED, EITHER IN FACT OR BY OPERATION OF LAW, STATUTORY OR\nOTHERWISE, AND RED BALLOON AND ANY CONTRIBUTOR OF ANY DERIVATIVES EXPRESSLY\nEXCLUDES AND DISCLAIMS ANY WARRANTY OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE, TITLE, ACCURACY, FREEDOM FROM ERRORS, FREEDOM FROM\nPROGRAMMING DEFECTS, NONINTERFERENCE AND NONINFRINGEMENT, AND ALL IMPLIED\nWARRANTIES ARISING OUT OF COURSE OF DEALING, COURSE OF PERFORMANCE AND USAGE OF\nTRADE. THIS AGREEMENT IS NOT INTENDED FOR USE OF OFRAK IN HAZARDOUS\nENVIRONMENTS REQUIRING FAIL-SAFE PERFORMANCE WHERE THE FAILURE OF OFRAK COULD\nLEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SIGNIFICANT PHYSICAL OR\nENVIRONMENTAL DAMAGE (\u201cHIGH RISK ACTIVITIES\u201d). USE OF OFRAK IN HIGH RISK\nACTIVITIES IS NOT AUTHORIZED PURSUANT TO THIS AGREEMENT. THE PARTIES AGREE\nTHAT THIS SECTION 9 REPRESENTS A REASONABLE ALLOCATION OF RISK AND THAT RED\nBALLOON WOULD NOT PROCEED IN THE ABSENCE OF SUCH ALLOCATION.\n\n10.\tLimitations. NEITHER RED BALLOON NOR ANY CONTRIBUTOR OF DERIVATIVES\nSHALL BE RESPONSIBLE OR LIABLE WITH RESPECT TO ANY SUBJECT MATTER OF THIS\nAGREEMENT OR TERMS AND CONDITIONS RELATED THERETO UNDER ANY CONTRACT,\nNEGLIGENCE, STRICT LIABILITY OR OTHER THEORY (A) FOR LOSS OR INACCURACY OF\nDATA, OR COST OF PROCUREMENT OF SUBSTITUTE GOODS, SERVICES OR TECHNOLOGY; (B)\nFOR ANY DIRECT, INDIRECT, PUNITIVE, INCIDENTAL, RELIANCE, SPECIAL, EXEMPLARY OR\nCONSEQUENTIAL DAMAGES INCLUDING, BUT NOT LIMITED TO, LOSS OF REVENUES AND LOSS\nOF PROFITS TO LICENSEE OR ANY THIRD PARTIES; (C) FOR ANY MATTER BEYOND ITS\nREASONABLE CONTROL OR (D) FOR USE YOU OR OTHERS MAY MAKE OF OFRAK, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n11.\tIndemnification. You agree that (a) Red Balloon and any contributors\nshall have no liability whatsoever for your use of OFRAK or any Derivatives and\n(b) you shall indemnify, and hold harmless, and (upon request) defend Red\nBalloon and any other user or contributor from and against any and all claims,\ndamages, liabilities, losses, and costs (including reasonable attorneys\u2019 fees)\nsuffered or incurred by such party which arise from or relate to your (i) use\nof OFRAK or Derivatives, or (ii) breach of this Agreement.\n\n12.\tMiscellaneous. Neither this Agreement nor the licenses granted\nhereunder are assignable or transferable by you; any attempt to do so shall be\nvoid. Red Balloon may assign this Agreement in whole or in part. Any notice,\nreport, approval or consent required or permitted hereunder shall be in\nwriting. The provisions hereof are for the benefit of the parties only and not\nfor any other person or entity. If any provision of this Agreement shall be\nadjudged by any court of competent jurisdiction to be unenforceable or invalid,\nthat provision shall be limited or eliminated to the minimum extent necessary\nso that this Agreement shall otherwise remain in full force and effect and\nenforceable. This Agreement shall be deemed to have been made in, and shall be\nconstrued pursuant to the laws of the State of New York, without regard to\nconflicts of laws provisions thereof, and without regard to the United Nations\nConvention on the International Sale of Goods or the Uniform Computer\nInformation Transactions Act. Any waivers or amendments shall be effective only\nif made in writing. This Agreement is the complete and exclusive statement of\nthe mutual understanding of the parties and supersedes and cancels all previous\nwritten and oral agreements and communications relating to the subject matter\nof this Agreement.", + "json": "ofrak-community-1.0.json", + "yaml": "ofrak-community-1.0.yml", + "html": "ofrak-community-1.0.html", + "license": "ofrak-community-1.0.LICENSE" + }, + { + "license_key": "ogc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ogc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This OGC work (including software, documents, or other related items) is being\nprovided by the copyright holders under the following license. By obtaining,\nusing and/or copying this work, you (the licensee) agree that you have read,\nunderstood, and will comply with the following terms and conditions:\n\nPermission to use, copy, and modify this software and its documentation, with or\nwithout modification, for any purpose and without fee or royalty is hereby\ngranted, provided that you include the following on ALL copies of the software\nand documentation or portions thereof, including modifications, that you make:\n\n1. The full text of this NOTICE in a location viewable to users of the\nredistributed or derivative work.\n\n2. Notice of any changes or modifications to the OGC files, including the date\nchanges were made. (We recommend you provide URIs to the location from which the\ncode is derived.)\n\nTHIS SOFTWARE AND DOCUMENTATION IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE\nNO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\nTO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT\nTHE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY\nPATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.\n\nThe name and trademarks of copyright holders may NOT be used in advertising or\npublicity pertaining to the software without specific, written prior permission.\nTitle to copyright in this software and any associated documentation will at all\ntimes remain with copyright holders.", + "json": "ogc.json", + "yaml": "ogc.yml", + "html": "ogc.html", + "license": "ogc.LICENSE" + }, + { + "license_key": "ogc-1.0", + "category": "Permissive", + "spdx_license_key": "OGC-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OGC Software License, Version 1.0\n\nThis OGC work (including software, documents, or other related items) is being\nprovided by the copyright holders under the following license. By obtaining,\nusing and/or copying this work, you (the licensee) agree that you have read,\nunderstood, and will comply with the following terms and conditions:\n\nPermission to use, copy, and modify this software and its documentation, with or\nwithout modification, for any purpose and without fee or royalty is hereby\ngranted, provided that you include the following on ALL copies of the software\nand documentation or portions thereof, including modifications, that you make:\n\n1. The full text of this NOTICE in a location viewable to users of the\nredistributed or derivative work.\n\n2. Any pre-existing intellectual property disclaimers, notices, or terms and\nconditions. If none exist, a short notice of the following form (hypertext is\npreferred, text is permitted) should be used within the body of any redistributed\nor derivative code: \"Copyright \u00a9 [$date-of-document] Open Geospatial Consortium, Inc. \nAll Rights Reserved. http://www.ogc.org/ogc/legal \n(Hypertext is preferred, but a textual representation is permitted.)\n\n3. Notice of any changes or modifications to the OGC files, including the date\nchanges were made. (We recommend you provide URIs to the location from which the\ncode is derived.)\n \nTHIS SOFTWARE AND DOCUMENTATION IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE\nNO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\nTO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT\nTHE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY\nPATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.\n\nThe name and trademarks of copyright holders may NOT be used in advertising or\npublicity pertaining to the software without specific, written prior permission.\nTitle to copyright in this software and any associated documentation will at all\ntimes remain with copyright holders.", + "json": "ogc-1.0.json", + "yaml": "ogc-1.0.yml", + "html": "ogc-1.0.html", + "license": "ogc-1.0.LICENSE" + }, + { + "license_key": "ogc-2006", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "This OGC work (including software, documents, or other related items) is being\nprovided by the copyright holders under the following license. By obtaining,\nusing and/or copying this work, you (the licensee) agree that you have read,\nunderstood, and will comply with the following terms and conditions:\n\nPermission to use, copy, and modify this software and its documentation, with or\nwithout modification, for any purpose and without fee or royalty is hereby\ngranted, provided that you include the following on ALL copies of the software\nand documentation or portions thereof, including modifications, that you make:\n\n1. The full text of this NOTICE in a location viewable to users of the\nredistributed or derivative work.\n\n2. Any pre-existing intellectual property disclaimers, notices, or terms and\nconditions. If none exist, a short notice of the following form (hypertext is\npreferred, text is permitted) should be used within the body of any\nredistributed or derivative code: \"Copyright \u00a9 [$date-of-document] Open\nGeospatial Consortium, Inc. All Rights Reserved.\nhttp://www.opengeospatial.org/ogc/legal (Hypertext is preferred, but a textual\nrepresentation is permitted.)\n\n3. Notice of any changes or modifications to the OGC files, including the date\nchanges were made. (We recommend you provide URIs to the location from which the\ncode is derived.)\n\nTHIS SOFTWARE AND DOCUMENTATION IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE\nNO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\nTO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT\nTHE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY\nPATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.\n\nThe name and trademarks of copyright holders may NOT be used in advertising or\npublicity pertaining to the software without specific, written prior permission.\nTitle to copyright in this software and any associated documentation will at all\ntimes remain with copyright holders.", + "json": "ogc-2006.json", + "yaml": "ogc-2006.yml", + "html": "ogc-2006.html", + "license": "ogc-2006.LICENSE" + }, + { + "license_key": "ogc-document-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ogc-document-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Document Notice\n\nPublic documents on the OGC site are provided by the copyright holders under the\nfollowing license. The software or Document Type Definitions (DTDs) associated \nwith OGC specifications are governed by the Software Notice. By using and/or \ncopying this document, or the OGC document from which this statement is linked, \nyou (the licensee) agree that you have read, understood, and will comply with \nthe following terms and conditions:\n\nPermission to use, copy, and distribute the contents of this document, or the \nOGC document from which this statement is linked, in any medium for any purpose \nand without fee or royalty is hereby granted, provided that you include the \nfollowing on ALL copies of the document, or portions thereof, that you use:\n\n 1. Include a link or URL to the original OGC document.\n 2. The pre-existing copyright notice of the original author, or if it doesn't \n exist, a notice of the form: \"Copyright \u00a9 Open \n Geospatial Consortium, Inc. All Rights Reserved. \n http://www.opengeospatial.org/ogc/document (Hypertext is preferred, but a \n textual representation is permitted.)\n 3. If it exists, the STATUS of the OGC document.\n\nWhen space permits, inclusion of the full text of this NOTICE should be \nprovided. We request that authorship attribution be provided in any software, \ndocuments, or other items or products that you create pursuant to the \nimplementation of the contents of this document, or any portion thereof.\n\nNo right to create modifications or derivatives of OGC documents is granted \npursuant to this license. However, if additional requirements (documented in the \nCopyright FAQ) are satisfied, the right to create modifications or derivatives \nis sometimes granted by the OGC to individuals complying with those requirements.\n\nTHIS DOCUMENT IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS \nOR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF \nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE; \nTHAT THE CONTENTS OF THE DOCUMENT ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE \nIMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, \nCOPYRIGHTS, TRADEMARKS OR OTHER RIGHTS\n\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR \nCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE DOCUMENT OR THE PERFORMANCE \nOR IMPLEMENTATION OF THE CONTENTS THEREOF.\n\nThe name and trademarks of copyright holders may NOT be used in advertising or \npublicity pertaining to this document or its contents without specific, written \nprior permission. Title to copyright in this document will at all times remain \nwith copyright holders.", + "json": "ogc-document-2020.json", + "yaml": "ogc-document-2020.yml", + "html": "ogc-document-2020.html", + "license": "ogc-document-2020.LICENSE" + }, + { + "license_key": "ogdl-taiwan-1.0", + "category": "Permissive", + "spdx_license_key": "OGDL-Taiwan-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Government Data License, version 1.0\n\nThe Open Government Data License (the License) is intended to facilitate government data sharing and application among the public in outreaching and promotion method, and to advance government service efficacy and government data value and quality in collaboration with the creative private sector.\n\n1. Definition\n\n1.1. \"Data Providing Organization\" refers to government agency, government-owned business, public school and administrative legal entity that has various types of electronic data released to the public under the License when it is obtained or made in the scope of performance for public duties.\n\n1.2. \"User\" refers to individual, legal entity or group that receives and uses Open Data under the License, including individual, legal entity or group who is receiving and using Open Data as the recipient of the former Users under the sublicensing scenario.\n\n1.3. \"Open Data\" means data that the Data Providing Organization owns its copyright in whole or has full authority to provide it to third parties in sublicensing way, and provides it in an open and modifiable form such that there are no unnecessary technological obstacles to the performance of the licensed rights, including but not limited to the following creation protected by copyright:\n\n a. \"Compilation Work\" means a work formed by the creative selection and arrangement of data, and can be protected by copyright law, such as database or other qualified structured data combination.\n\n b. \"Material\" means a separate work, that is collected into the Open Data aggregation and can be protected by copyright law independently.\n\n1.4. \"Derivative Work\" means any adaptation based upon the Open Data provided under the License and in which the original data is reproduced, adapted, compiled, or otherwise modified.\n\n1.5. \"Information\" means the pure record that is not subject to copyright law and providing along with the Open Data. Accordingly, the granting of copyright license hereunder does not apply to such Information, however, other provisions of the License shall be applied to it as well as to the Open Data.\n\n2. Grant of Copyright License\n\n2.1. The Data Providing Organization grants User a perpetual, worldwide, non-exclusive, irrevocable, royalty-free copyright license to reproduce, distribute, publicly transmit, publicly broadcast, publicly recite, publicly present, publicly perform, compile, adapt to the Open Data provided for any purpose, including but not limited to making all kinds of Derivative Works either as products or services.\n\n2.2. User can sublicense the copyrights which he/she is granted through 2.1. to others.\n\n2.3. Any additional written offer or other formality for copyright license from the Data Providing Organization is not required, if User makes use of Open Data in compliance with the License.\n\n2.4. The License does not grant any rights in the patents and trademarks.\n\n3. Condition and Obligation\n\n3.1. By utilizing the Open Data provided under the License, User indicates his/her acceptance of this License and all its terms and conditions overall to do so, and shall make the reasonable efforts with respect to moral right protection of the third parties involved.\n\n3.2. When User makes use of the Open Data and its Derivative Work, he/she must make an explicit notice of statement as attribution requested in the Exhibit below by the Data Providing Organization. If User fails to comply with the attribution requirement, the rights granted under this License shall be deemed to have been void ab initio.\n\n4. License Version and Compatibility\n\n4.1. When a new version of the License has been updated and declared, if not the Data Providing Organization has already appointed a specific version of the License for the Open Data it provided, User may make use of the Open Data under the terms of the version of the License under which he/she originally received, or under the terms of any subsequent version published thereafter.\n\n4.2. The License is compatible with the Creative Commons Attribution License 4.0 International. This means that when the Open Data is provided under the License, User automatically satisfies the conditions of this License when he/she makes use of the Open Data in compliance with the Creative Commons Attribution License 4.0 International thereafter.\n\n5. Cessation of Data Providing\n\n5.1. Under the circumstances described hereunder, the Data Providing Organization may cease to provide all or part of a specific Open Data, and User shall not claim any damages or compensations on account of that to the provider:\n\n a. It has been evaluated by the Data Providing Organization that continuously providing of a specific Open Data as not being met the requirement of public interest due to the change of circumstances unpredictable or for a legitimate cause.\n\n b. A provided Open Data might jeopardize third parties' intellectual property rights, privacy rights, or other interests protected at law.\n\n6. Disclaimer\n\n6.1. The providing of Open Data under the License shall not be construed as any statement, warranty, or implication to the recommendation, permission, approval, or sanction of all kinds of authoritative declaration of intention made by the Data Providing Organization. And the Data Providing Organization shall only be liable to make the correcting and updating when the errors or omissions of Open Data provided by it has been acknowledged.\n\n6.2. The Data Providing Organization shall not be liable for damage or loss User encounters when he/she makes use of the Open Data provided under the License. This disclaimer applies as well when User has third parties encountered damage or loss and thus has been claimed for remedies. Unless otherwise specified according to law, the Data Providing Organization shall not be held responsible for any damages or compensations herein.\n\n6.3. User shall be liable for the damages to the Data Providing Organization, if he/she has used the Open Data provided wrongfully due to an intentional or negligent misconduct and caused damages to the Data Providing Organization. The same reimbursement rule for wrongful misconducting shall be applied to the User when the damaged one is a third party and the compensations have already been disbursed by the Data Providing Organization to the third party due to a legal claim.\n\n7. Governing Law\n\n7.1. The interpretation, validity, enforcement and matters not mentioned herein for the License is governed by the Laws of Republic of China (Taiwan).\n\nExhibit - Attribution\n\n a. Data Providing Organization/Agency [year] [distinguishing full name of the released Open Data and its version number]\n\n b. The Open Data is made available to the public under the Open Government Data License, User can make use of it when complying to the condition and obligation of its terms.\n\n c. Open Government Data License:https://data.gov.tw/license", + "json": "ogdl-taiwan-1.0.json", + "yaml": "ogdl-taiwan-1.0.yml", + "html": "ogdl-taiwan-1.0.html", + "license": "ogdl-taiwan-1.0.LICENSE" + }, + { + "license_key": "ogl-1.0a", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ogl-1.0a", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OPEN GAME LICENSE Version 1.0a\n\nThe following text is the property of Wizards of the Coast, Inc. and is\nCopyright 2000 Wizards of the Coast, Inc (\"Wizards\"). All Rights Reserved.\n\n1. Definitions: (a) \"Contributors\" means the copyright and/or trademark owners\nwho have contributed Open Game Content; (b) \"Derivative Material\" means\ncopyrighted material including derivative works and translations (including into\nother computer languages), potation, modification, correction, addition,\nextension, upgrade, improvement, compilation, abridgment or other form in which\nan existing work may be recast, transformed or adapted; (c) \"Distribute\" means\nto reproduce, license, rent, lease, sell, broadcast, publicly display, transmit\nor otherwise distribute; (d) \"Open Game Content\" means the game mechanic and\nincludes the methods, procedures, processes and routines to the extent such\ncontent does not embody the Product Identity and is an enhancement over the\nprior art and any additional content clearly identified as Open Game Content by\nthe Contributor, and means any work covered by this License, including\ntranslations and derivative works under copyright law, but specifically excludes\nProduct Identity; (e) \"Product Identity\" means product and product line names,\nlogos and identifying marks including trade dress; artifacts; creatures;\ncharacters; stories, storylines, plots, thematic elements, dialogue, incidents,\nlanguage, artwork, symbols, designs, depictions, likenesses, formats, poses,\nconcepts, themes and graphic, photographic and other visual or audio\nrepresentations; names and descriptions of characters, spells, enchantments,\npersonalities, teams, personas, likenesses and special abilities; places,\nlocations, environments, creatures, equipment, magical or supernatural abilities\nor effects, logos, symbols, or graphic designs; and any other trademark or\nregistered trademark clearly identified as Product Identity by the owner of the\nProduct Identity, and which specifically excludes the Open Game Content; (f)\n\"Trademark\" means the logos, names, mark, sign, motto, designs that are used by\na Contributor to identify itself or its products or the associated products\ncontributed to the Open Game License by the Contributor; (g) \"Use\", \"Used\" or\n\"Using\" means to use, Distribute, copy, edit, format, modify, translate and\notherwise create Derivative Material of Open Game Content; (h) \"You\" or \"Your\"\nmeans the licensee in terms of this agreement.\n\n2. The License: This License applies to any Open Game Content that contains a\nnotice indicating that the Open Game Content may only be Used under and in terms\nof this License. You must affix such a notice to any Open Game Content that You\nUse. No terms may be added to or subtracted from this License except as\ndescribed by the License itself. No other terms or conditions may be applied to\nany Open Game Content Distributed using this License.\n\n3. Offer and Acceptance: By Using the Open Game Content You indicate Your\nacceptance of the terms of this License.\n\n4. Grant and Consideration: In consideration for agreeing to use this License,\nthe Contributors grant You a perpetual, worldwide, royalty-free, non-exclusive\nlicense with the exact terms of this License to Use, the Open Game Content.\n\n5. Representation of Authority to Contribute: If You are contributing original\nmaterial as Open Game Content, You represent that Your contributions are Your\noriginal creation and/or You have sufficient rights to grant the rights conveyed\nby this License.\n\n6. Notice of License Copyright: You must update the COPYRIGHT NOTICE portion of\nthis License to include the exact text of the COPYRIGHT NOTICE of any Open Game\nContent You are copying, modifying or Distributing, and You must add the title,\nthe copyright date, and the copyright holder's name to the COPYRIGHT NOTICE of\nany original Open Game Content You Distribute.\n\n7. Use of Product Identity: You agree not to Use any Product Identity, including\nas an indication as to compatibility, except as expressly licensed in another,\nindependent agreement with the owner of each element of that Product Identity.\nYou agree not to indicate compatibility or co-adaptability with any Trademark or\nregistered Trademark in conjunction with a work containing Open Game Content\nexcept as expressly licensed in another, independent agreement with the owner of\nsuch Trademark or registered Trademark. The Use of any Product Identity in Open\nGame Content does not constitute a challenge to the ownership of that Product\nIdentity. The owner of any Product Identity Used in Open Game Content shall\nretain all rights, title and interest in and to that Product Identity.\n\n8. Identification: If You Distribute Open Game Content You must clearly indicate\nwhich portions of the work that You are Distributing are Open Game Content.\n\n9. Updating the License: Wizards or its designated Agents may publish updated\nversions of this License. You may use any authorized version of this License to\ncopy, modify and Distribute any Open Game Content originally Distributed under\nany version of this License.\n\n10. Copy of this License: You MUST include a copy of this License with every\ncopy of the Open Game Content You Distribute.\n\n11. Use of Contributor Credits: You may not market or advertise the Open Game\nContent using the name of any Contributor unless You have written permission\nfrom the Contributor to do so.\n\n12. Inability to Comply: If it is impossible for You to comply with any of the\nterms of this License with respect to some or all of the Open Game Content due\nto statute, judicial order, or governmental regulation then You may not Use any\nOpen Game Material so affected.\n\n13. Termination: This License will terminate automatically if You fail to comply\nwith all terms herein and fail to cure such breach within 30 days of becoming\naware of the breach. All sublicenses shall survive the termination of this\nLicense.\n\n14. Reformation: If any provision of this License is held to be unenforceable,\nsuch provision shall be reformed only to the extent necessary to make it\nenforceable.\n\n15. COPYRIGHT NOTICE\nOpen Game License v 1.0a Copyright 2000, Wizards of the Coast, Inc.", + "json": "ogl-1.0a.json", + "yaml": "ogl-1.0a.yml", + "html": "ogl-1.0a.html", + "license": "ogl-1.0a.LICENSE" + }, + { + "license_key": "ogl-canada-2.0-fr", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ogl-canada-2.0-fr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Licence du gouvernement ouvert \u2013 Canada\n\nNous vous encourageons \u00e0 utiliser l'Information offerte en vertu de la pr\u00e9sente licence, sous r\u00e9serve de quelques conditions.\nUtilisation de l'Information vis\u00e9e par cette licence\n\n L'utilisation de l'Information indique que vous acceptez les modalit\u00e9s \u00e9nonc\u00e9es ci-dessous.\n Le Fournisseur d\u2019information vous octroie une licence mondiale, libre de redevances, perp\u00e9tuelle et non exclusive pour l'utilisation de l'Information, y compris \u00e0 des fins commerciales, sous r\u00e9serve des modalit\u00e9s \u00e9nonc\u00e9es ci-dessous.\n\nVous \u00eates libre :\n\n de copier, de modifier, de publier, de traduire, d\u2019adapter, de distribuer ou d\u2019utiliser autrement l'Information, quel que soit le support, mode ou format employ\u00e9, \u00e0 toutes fins l\u00e9gitimes.\n\nVous \u00eates tenu, lorsque vous exercez l'une ou l'autre des activit\u00e9s susmentionn\u00e9es :\n\n de reconna\u00eetre la source de l'Information en ajoutant tout \u00e9nonc\u00e9 d'attribution pr\u00e9cis\u00e9 par le ou les fournisseurs d'information et, lorsque possible, de fournir un lien vers cette licence.\n Si le Fournisseur d'information ne vous fournit pas un \u00e9nonc\u00e9 d'attribution pr\u00e9cis, ou si vous utilisez de l'Information provenant de plusieurs fournisseurs d'information et que la pr\u00e9sence de multiples \u00e9nonc\u00e9s ne se pr\u00eate pas \u00e0 votre produit ou \u00e0 votre application, vous devez utiliser l'\u00e9nonc\u00e9 d'attribution suivant :\n\nContient de l'information vis\u00e9e par la Licence du gouvernement ouvert \u2013 Canada.\n\nLes modalit\u00e9s de cette licence sont importantes, et si vous ne respectez pas l'une ou l'autre d'entre elles, les droits qui vous sont conc\u00e9d\u00e9s aux termes de la pr\u00e9sente licence ou de toute autre licence semblable octroy\u00e9e par le Fournisseur d\u2019information vous seront retir\u00e9s automatiquement.\nExemptions\n\nLa pr\u00e9sente licence ne conf\u00e8re pas le droit d'utiliser :\n\n des Renseignements personnels;\n des droits de tierces parties que le Fournisseur d'information n'est pas autoris\u00e9 \u00e0 accorder;\n les noms, les embl\u00e8mes, les logos ou d'autres symboles officiels du Fournisseur d\u2019information;\n l'Information qui est assujettie \u00e0 d'autres droits de propri\u00e9t\u00e9 intellectuelle, y compris les brevets, les marques de commerce et les marques officielles.\n\nNon-approbation\n\nLa pr\u00e9sente licence ne vous accorde pas le droit d\u2019utiliser l\u2019Information de mani\u00e8re \u00e0 sugg\u00e9rer un statut officiel ou laisser entendre que le Fournisseur d\u2019information vous appuie ou approuve votre utilisation de l\u2019Information.\nAbsence de garantie\n\nL'Information est offerte sous licence \u00ab telle quelle \u00bb et le Fournisseur d'information, ni implicitement ni express\u00e9ment, ne fait aucune d\u00e9claration, n'accorde aucune garantie et n'assume aucune obligation ou responsabilit\u00e9 dans la mesure o\u00f9 la loi le lui permet.\n\nLe Fournisseur d'information ne peut \u00eatre tenu responsable de la pr\u00e9sence d'erreurs ou d'omissions dans l'Information et ne se verra en aucun cas imputer la responsabilit\u00e9 de quelque perte, blessure ou dommage direct(e), indirect(e), sp\u00e9cial(e), accessoire, cons\u00e9cutif(ve) ou autre caus\u00e9(e) par son utilisation ou d\u00e9coulant autrement de la pr\u00e9sente licence ou de l\u2019Information, m\u00eame s\u2019il est avis\u00e9 de la possibilit\u00e9 d\u2019un tel pr\u00e9judice.\nLois applicables\n\nCette licence est r\u00e9gie par les lois de la province de l\u2019Ontario et les lois applicables du Canada.\n\nToute proc\u00e9dure judiciaire se rapportant \u00e0 cette licence ne pourra \u00eatre port\u00e9e que devant les tribunaux de l\u2019Ontario ou la Cour f\u00e9d\u00e9rale du Canada.\nD\u00e9finitions\n\nLes d\u00e9finitions des termes employ\u00e9s dans la pr\u00e9sente licence ont la signification suivante :\n\n\u00ab Fournisseur d'information \u00bb\n S'entend de Sa Majest\u00e9 la Reine du chef du Canada.\n\u00ab Information \u00bb\n S'entend des renseignements prot\u00e9g\u00e9s par des droits d'auteur ou des autres renseignements qui sont offerts pour utilisation aux termes de la pr\u00e9sente licence.\n\u00ab Renseignements personnels \u00bb\n S\u2019entend des \u00ab renseignements personnels \u00bb au sens de l\u2019article 3 de la Loi sur la protection des renseignements personnels, L.R.C. 1985, c. P-21.\n\u00ab Vous \u00bb\n S'entend d'une personne physique ou morale, ou d'un groupe de personnes constitu\u00e9 en soci\u00e9t\u00e9 ou autre, qui acquiert des droits en vertu de la pr\u00e9sente licence.\n\nContr\u00f4le des versions\n\nIl s'agit de la version 2.0 de la Licence du gouvernement ouvert \u2013 Canada. Le Fournisseur d\u2019information peut apporter des modifications p\u00e9riodiques aux conditions de cette licence et produire une nouvelle version de celle-ci. Votre utilisation de l'Information sera r\u00e9gie par les conditions pr\u00e9cis\u00e9es dans la licence en vigueur \u00e0 la date o\u00f9 vous avez acc\u00e9d\u00e9 \u00e0 l'Information.", + "json": "ogl-canada-2.0-fr.json", + "yaml": "ogl-canada-2.0-fr.yml", + "html": "ogl-canada-2.0-fr.html", + "license": "ogl-canada-2.0-fr.LICENSE" + }, + { + "license_key": "ogl-uk-1.0", + "category": "Permissive", + "spdx_license_key": "OGL-UK-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You are encouraged to use and re-use the Information that is available under this\n licence, the Open Government Licence, freely and flexibly, with only a few conditions.\n\nUsing information under this licence\nUse of copyright and database right material expressly made available under this licence\n (the \u2018Information\u2019) indicates your acceptance of the terms and conditions below.\n\nThe Licensor grants you a worldwide, royalty-free, perpetual, non-exclusive licence to\nuse the Information subject to the conditions below.\n\nThis licence does not affect your freedom under fair dealing or fair use or any other\n copyright or database right exceptions and limitations.\n\nYou are free to:\ncopy, publish, distribute and transmit the Information;\nadapt the Information;\nexploit the Information commercially for example, by combining it with other Information,\nor by including it in your own product or application.\nYou must, where you do any of the above:\nacknowledge the source of the Information by including any attribution statement specified\nby the Information Provider(s) and, where possible, provide a link to this licence;\nIf the Information Provider does not provide a specific attribution statement, or if you are\nusing Information from several Information Providers and multiple attributions are not\npractical in your product or application, you may consider using the following:\n\nContains public sector information licensed under the Open Government Licence v1.0.\n\nensure that you do not use the Information in a way that suggests any official status or\nthat the Information Provider endorses you or your use of the Information;\nensure that you do not mislead others or misrepresent the Information or its source;\nensure that your use of the Information does not breach the Data Protection Act 1998 or\nthe Privacy and Electronic Communications (EC Directive) Regulations 2003.\nThese are important conditions of this licence and if you fail to comply with them the rights\ngranted to you under this licence, or any similar licence granted by the Licensor, will end automatically.\n\nExemptions\nThis licence does not cover the use of:\n\npersonal data in the Information;\nInformation that has neither been published nor disclosed under information access \nlegislation (including the Freedom of Information Acts for the UK and Scotland) by \nor with the consent of the Information Provider;\ndepartmental or public sector organisation logos, crests and the Royal Arms except \nwhere they form an integral part of a document or dataset;\nmilitary insignia;\nthird party rights the Information Provider is not authorised to license;\nInformation subject to other intellectual property rights, including patents, trademarks,\nand design rights; and\nidentity documents such as the British Passport.\nNo warranty\nThe Information is licensed \u2018as is\u2019 and the Information Provider excludes all representations,\nwarranties, obligations and liabilities in relation to the Information to the maximum extent permitted by law.\n\nThe Information Provider is not liable for any errors or omissions in the Information and\nshall not be liable for any loss, injury or damage of any kind caused by its use.\nThe Information Provider does not guarantee the continued supply of the Information.\n\nGoverning Law\nThis licence is governed by the laws of the jurisdiction in which the Information Provider\nhas its principal place of business, unless otherwise specified by the Information Provider.\n\nDefinitions\nIn this licence, the terms below have the following meanings:\n\n\u2018Information\u2019\nmeans information protected by copyright or by database right (for example, literary\nand artistic works, content, data and source code) offered for use under the terms of this licence.\n\n\u2018Information Provider\u2019\nmeans the person or organisation providing the Information under this licence.\n\n\u2018Licensor\u2019\nmeans any Information Provider which has the authority to offer Information under the\nterms of this licence or the Controller of Her Majesty\u2019s Stationery Office, who has the\nauthority to offer Information subject to Crown copyright and Crown database rights and\nInformation subject to copyright and database right that has been assigned to or acquired \nby the Crown, under the terms of this licence.\n\n\u2018Use\u2019\nas a verb, means doing any act which is restricted by copyright or database right, whether\nin the original medium or in any other medium, and includes without limitation distributing,\ncopying, adapting, modifying as may be technically necessary to use it in a different mode or format.\n\n\u2018You\u2019\nmeans the natural or legal person, or body of persons corporate or incorporate, acquiring rights under this licence.\n\nAbout the Open Government Licence\nThe Controller of Her Majesty\u2019s Stationery Office (HMSO) has developed this licence as a\ntool to enable Information Providers in the public sector to license the use and re-use\nof their Information under a common open licence. The Controller invites public sector\nbodies owning their own copyright and database rights to permit the use of their Information under this licence.\n\nThe Controller of HMSO has authority to license Information subject to copyright and\ndatabase right owned by the Crown. The extent of the Controller\u2019s offer to license this\nInformation under the terms of this licence is set out in the UK Government Licensing Framework.\n\nThis is version 1.0 of the Open Government Licence. The Controller of HMSO may, from\ntime to time, issue new versions of the Open Government Licence. However, you may continue\nto use Information licensed under this version should you wish to do so.\n\nThese terms have been aligned to be interoperable with any Creative Commons Attribution Licence,\nwhich covers copyright, and Open Data Commons Attribution License, which covers database rights and applicable copyrights.\n\nFurther context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website.", + "json": "ogl-uk-1.0.json", + "yaml": "ogl-uk-1.0.yml", + "html": "ogl-uk-1.0.html", + "license": "ogl-uk-1.0.LICENSE" + }, + { + "license_key": "ogl-uk-2.0", + "category": "Permissive", + "spdx_license_key": "OGL-UK-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You are encouraged to use and re-use the Information that is available under this licence freely and flexibly, with only a few conditions.\nUsing Information under this licence\n\nUse of copyright and database right material expressly made available under this licence (the \u2018Information\u2019) indicates your acceptance of the terms and conditions below.\n\nThe Licensor grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information subject to the conditions below.\n\nThis licence does not affect your freedom under fair dealing or fair use or any other copyright or database right exceptions and limitations.\nYou are free to:\n\n copy, publish, distribute and transmit the Information;\n adapt the Information;\n exploit the Information commercially and non-commercially for example, by combining it with other Information, or by including it in your own product or application.\n\nYou must, where you do any of the above:\n\n acknowledge the source of the Information by including any attribution statement specified by the Information Provider(s) and, where possible, provide a link to this licence;\n\n If the Information Provider does not provide a specific attribution statement, or if you are using Information from several Information Providers and multiple attributions are not practical in your product or application, you may use the following:\n\n Contains public sector information licensed under the Open Government Licence v2.0.\n\nThese are important conditions of this licence and if you fail to comply with them the rights granted to you under this licence, or any similar licence granted by the Licensor, will end automatically.\nExemptions\n\nThis licence does not cover:\n\n personal data in the Information;\n information that has neither been published nor disclosed under information access legislation (including the Freedom of Information Acts for the UK and Scotland) by or with the consent of the Information Provider;\n departmental or public sector organisation logos, crests and the Royal Arms except where they form an integral part of a document or dataset;\n military insignia;\n third party rights the Information Provider is not authorised to license;\n other intellectual property rights, including patents, trade marks, and design rights; and\n identity documents such as the British Passport\n\nNon-endorsement\n\nThis licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider endorses you or your use of the Information.\nNon warranty\n\nThe Information is licensed \u2018as is\u2019 and the Information Provider excludes all representations, warranties, obligations and liabilities in relation to the Information to the maximum extent permitted by law.\n\nThe Information Provider is not liable for any errors or omissions in the Information and shall not be liable for any loss, injury or damage of any kind caused by its use. The Information Provider does not guarantee the continued supply of the Information.\nGoverning Law\n\nThis licence is governed by the laws of the jurisdiction in which the Information Provider has its principal place of business, unless otherwise specified by the Information Provider.\nDefinitions\n\nIn this licence, the terms below have the following meanings:\n\n\u2018Information\u2019\nmeans information protected by copyright or by database right (for example, literary and artistic works, content, data and source code) offered for use under the terms of this licence.\n\n\u2018Information Provider\u2019\nmeans the person or organisation providing the Information under this licence.\n\n\u2018Licensor\u2019\nmeans any Information Provider who has the authority to offer Information under the terms of this licence. It includes the Controller of Her Majesty\u2019s Stationery Office, who has the authority to offer Information subject to Crown copyright and Crown database rights, and Information subject to copyright and database rights which have been assigned to or acquired by the Crown, under the terms of this licence.\n\n\u2018Use\u2019\nmeans doing any act which is restricted by copyright or database right, whether in the original medium or in any other medium, and includes without limitation distributing, copying, adapting, modifying as may be technically necessary to use it in a different mode or format.\n\n\u2018You\u2019\nmeans the natural or legal person, or body of persons corporate or incorporate, acquiring rights under this licence.\nAbout the Open Government Licence\n\nThe Controller of Her Majesty\u2019s Stationery Office (HMSO) has developed this licence as a tool to enable Information Providers in the public sector to license the use and re-use of their Information under a common open licence. The Controller invites public sector bodies owning their own copyright and database rights to permit the use of their Information under this licence.\n\nThe Controller of HMSO has authority to license Information subject to copyright and database right owned by the Crown. The extent of the Controller\u2019s offer to license this Information under the terms of this licence is set out on The National Archives website.\n\nThis is version 2.0 of the Open Government Licence. The Controller of HMSO may, from time to time, issue new versions of the Open Government Licence. If you are already using Information under a previous version of the Open Government Licence, the terms of that licence will continue to apply.\n\nThese terms are compatible with the Creative Commons Attribution License 4.0 and the Open Data Commons Attribution License, both of which license copyright and database rights. This means that when the Information is adapted and licensed under either of those licences, you automatically satisfy the conditions of the OGL when you comply with the other licence. The OGLv2.0 is Open Definition compliant.\n\nFurther context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website.", + "json": "ogl-uk-2.0.json", + "yaml": "ogl-uk-2.0.yml", + "html": "ogl-uk-2.0.html", + "license": "ogl-uk-2.0.LICENSE" + }, + { + "license_key": "ogl-uk-3.0", + "category": "Permissive", + "spdx_license_key": "OGL-UK-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You are encouraged to use and re-use the Information that is available under this licence freely and flexibly, with only a few conditions.\nUsing Information under this licence\n\nUse of copyright and database right material expressly made available under this licence (the 'Information') indicates your acceptance of the terms and conditions below.\n\nThe Licensor grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information subject to the conditions below.\n\nThis licence does not affect your freedom under fair dealing or fair use or any other copyright or database right exceptions and limitations.\nYou are free to:\n\n copy, publish, distribute and transmit the Information;\n adapt the Information;\n exploit the Information commercially and non-commercially for example, by combining it with other Information, or by including it in your own product or application.\n\nYou must (where you do any of the above):\n\n acknowledge the source of the Information in your product or application by including or linking to any attribution statement specified by the Information Provider(s) and, where possible, provide a link to this licence;\n\n If the Information Provider does not provide a specific attribution statement, you must use the following:\n\n Contains public sector information licensed under the Open Government Licence v3.0.\n\nIf you are using Information from several Information Providers and listing multiple attributions is not practical in your product or application, you may include a URI or hyperlink to a resource that contains the required attribution statements.\n\nThese are important conditions of this licence and if you fail to comply with them the rights granted to you under this licence, or any similar licence granted by the Licensor, will end automatically.\nExemptions\n\nThis licence does not cover:\n\n personal data in the Information;\n Information that has not been accessed by way of publication or disclosure under information access legislation (including the Freedom of Information Acts for the UK and Scotland) by or with the consent of the Information Provider;\n departmental or public sector organisation logos, crests and the Royal Arms except where they form an integral part of a document or dataset;\n military insignia;\n third party rights the Information Provider is not authorised to license;\n other intellectual property rights, including patents, trade marks, and design rights; and\n identity documents such as the British Passport\n\nNon-endorsement\n\nThis licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider and/or Licensor endorse you or your use of the Information.\nNo warranty\n\nThe Information is licensed 'as is' and the Information Provider and/or Licensor excludes all representations, warranties, obligations and liabilities in relation to the Information to the maximum extent permitted by law.\n\nThe Information Provider and/or Licensor are not liable for any errors or omissions in the Information and shall not be liable for any loss, injury or damage of any kind caused by its use. The Information Provider does not guarantee the continued supply of the Information.\nGoverning Law\n\nThis licence is governed by the laws of the jurisdiction in which the Information Provider has its principal place of business, unless otherwise specified by the Information Provider.\nDefinitions\n\nIn this licence, the terms below have the following meanings:\n\n'Information' means information protected by copyright or by database right (for example, literary and artistic works, content, data and source code) offered for use under the terms of this licence.\n\n'Information Provider' means the person or organisation providing the Information under this licence.\n\n'Licensor' means any Information Provider which has the authority to offer Information under the terms of this licence or the Keeper of Public Records, who has the authority to offer Information subject to Crown copyright and Crown database rights and Information subject to copyright and database right that has been assigned to or acquired by the Crown, under the terms of this licence.\n\n'Use' means doing any act which is restricted by copyright or database right, whether in the original medium or in any other medium, and includes without limitation distributing, copying, adapting, modifying as may be technically necessary to use it in a different mode or format.\n\n'You', 'you' and 'your' means the natural or legal person, or body of persons corporate or incorporate, acquiring rights in the Information (whether the Information is obtained directly from the Licensor or otherwise) under this licence.\nAbout the Open Government Licence\n\nThe National Archives has developed this licence as a tool to enable Information Providers in the public sector to license the use and re-use of their Information under a common open licence. The National Archives invites public sector bodies owning their own copyright and database rights to permit the use of their Information under this licence.\n\nThe Keeper of the Public Records has authority to license Information subject to copyright and database right owned by the Crown. The extent of the offer to license this Information under the terms of this licence is set out in the UK Government Licensing Framework.\n\nThis is version 3.0 of the Open Government Licence. The National Archives may, from time to time, issue new versions of the Open Government Licence. If you are already using Information under a previous version of the Open Government Licence, the terms of that licence will continue to apply.\n\nThese terms are compatible with the Creative Commons Attribution License 4.0 and the Open Data Commons Attribution License, both of which license copyright and database rights. This means that when the Information is adapted and licensed under either of those licences, you automatically satisfy the conditions of the OGL when you comply with the other licence. The OGLv3.0 is Open Definition compliant.\n\nFurther context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website.", + "json": "ogl-uk-3.0.json", + "yaml": "ogl-uk-3.0.yml", + "html": "ogl-uk-3.0.html", + "license": "ogl-uk-3.0.LICENSE" + }, + { + "license_key": "ogl-wpd-3.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ogl-wpd-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Data Licence\n\nBelow is WPD's Open Data Licence (latest version December 2020). These licence terms and conditions (the \u201cLicence\u201d) apply to the WPD's datasets as specified within the \u2018Connected Data\u2019 data access service. These terms are based on the Open Government Licence v3.0.\n\nYou are encouraged to use and re-use Information that is available under this licence freely and flexibly, with only a few conditions.\n1. Using the WPD Open Data Licence\n\n1.1 WPD is the 'Licensor' and the 'Information Provider' for the purpose of this Licence.\n\n1.2 On the \u2019Connected Data\u2019 data access service, this Licence applies to each data set marked as being provided on an 'Open' basis. It is your responsibility to check which data sets are made available under this Licence. If in doubt please email us for clarification at dsodigitalisation@westernpower.co.uk.\n\n1.3 The conditions of this Licence are important and if you fail to comply with them the rights granted to you under this Licence, or any similar Licence granted by Licensor, will end automatically.\n2. Using Information under this Licence\n\n2.1 Use of copyright and database right material expressly made available under this Licence (the 'Information') indicates your acceptance of the terms and conditions of this licence.\n\n2.2 The Licensor grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information subject to the conditions below.\n\n2.3 This Licence does not affect your freedom under fair dealing or fair use or any other copyright or database right exceptions and limitations.\n3. You are free to:\n\n3.1 copy, publish, distribute and transmit the Information;\n\n3.2 adapt the Information;\n\n3.3 exploit the Information commercially and non-commercially for example, by combining it with other Information, or by including it in your own product or application.\n4. You must (where you do any of the above):\n\n4.1 acknowledge WPD as the source of the Information by including the following attribution statement \u2018Supported by WPD Open Data';\n\n4.2 acknowledge that our other intellectual property rights, including all logos, design rights, patents and trademarks, are not covered under this Licence and this Licence will not transfer these to You or any third party.\n5. Exemptions\n\n5.1 The Licence does not cover:\n\n(a) personal data in the Information;\n\n(b) Information that has not been accessed by way of publication or disclosure under information access legislation (including the Freedom of Information Acts for the UK and Scotland) by or with the consent of the Information Provider;\n\n(c) departmental or public sector organisation logos, crests and the Royal Arms except where they form an integral part of a document or dataset;\n\n(d) military insignia;\n\n(e) third party rights the Information Provider is not authorised to license;\n\n(f) other intellectual property rights, including patents, trademarks, and design rights; and\n\n(g) identity documents such as the British Passport.\n\n5.2 Where it is believed that the overall service is being degraded by excessive use, the Licensor reserves the right to throttle or limit access to feeds as considered appropriate.\n6. Non-endorsement\n\nThis Licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider and/or Licensor endorse you or your use of the Information.\n7. No warranty\n\n7.1 The Information is licensed \u2018as is\u2019 and the Information Provider and/or Licensor excludes all representations, warranties, obligations and liabilities in relation to the Information to the maximum extent permitted by law.\n\n7.2 The Information Provider and/or Licensor are not liable for any errors or omissions in the Information and shall not be liable for any loss, injury or damage of any kind caused by its use. The Information Provider does not guarantee the continued supply of the Information.\n8. Governing Law\n\nThis Licence is governed by the laws of England and Wales and shall be shall be subject to the exclusive jurisdiction of the English and Welsh courts.\n9. Definitions\n\nIn this Licence, the terms below have the following meanings:\n\n'Information\u2019 means information protected by copyright or by database right (for example, literary and artistic works, content, data and source code) offered for use under the terms of this Licence.\n\n\u2018Information Provider\u2019 means the person or organisation providing the Information under this Licence.\n\n\u2018Licensor\u2019 means any Information Provider which has the authority to offer Information under the terms of this Licence or the Keeper of Public Records, who has the authority to offer Information subject to Crown copyright and Crown database rights and Information subject to copyright and database right that has been assigned to or acquired by the Crown, under the terms of this Licence.\n\n\u2018Use\u2019 means doing any act which is restricted by copyright or database right, whether in the original medium or in any other medium, and includes without limitation distributing, copying, adapting, modifying as may be technically necessary to use it in a different mode or format.\n\n'WPD' means Western Power Distribution Plc 09223384; Western Power Distribution (East Midlands) Plc (company number 02366923); Western Power Distribution (West Midlands) Plc (company number 03600574); Western Power Distribution (South West) Plc (company number 02366894); Western Power Distribution (South Wales) Plc (company number 02366985); WPD Smart Metering Limited ( company number 07139151); South Western Helicopters Limited (company number 02439215); WPD Property Investments Limited (company number 02373239) and WPD Telecoms Limited (company number 02386327). All are registered to Avonbank, Feeder Road, Bristol BS2 0TB.\n\n\u2018You\u2019, \u2018you\u2019 and \u2018your\u2019 means the natural or legal person, or body of persons corporate or incorporate, acquiring rights in the Information (whether the Information is obtained directly from the Licensor or otherwise) under this Licence.\nAbout the Open Government Licence 3.0\n\nThis Licence was based on version 3.0 of the Open Government Licence. The National Archives has developed the Open Government Licence 3.0 as a tool to enable Information Providers in the public sector to license the use and re-use of their Information under a common open licence. The National Archives invites public sector bodies owning their own copyright and database rights to permit the use of their Information under this licence.\n\nThe Keeper of the Public Records has authority to license Information subject to copyright and database right owned by the Crown. The extent of the offer to license this Information under the terms of this licence is set out in the UK Government Licensing Framework.\n\nThe National Archives may, from time to time, issue new versions of the Open Government Licence. If you are already using Information under a previous version of the Open Government Licence, the terms of that licence will continue to apply.\n\nThe Open Government Licence 3.0 is compatible with the Creative Commons Attribution License 4.0 and the Open Data Commons Attribution License, both of which license copyright and database rights. This means that when the Information is adapted and licensed under either of those licences, you automatically satisfy the conditions of the OGL when you comply with the other licence. The OGLv3.0 is Open Definition compliant.\n\nFurther context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website.", + "json": "ogl-wpd-3.0.json", + "yaml": "ogl-wpd-3.0.yml", + "html": "ogl-wpd-3.0.html", + "license": "ogl-wpd-3.0.LICENSE" + }, + { + "license_key": "ohdl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ohdl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Hardware Description License Version 1.0\n(Based on the MPL 2.0 RC2)\n========================================================\n\n1. Definitions\n--------------\n\n1.1. \"Contributor\"\n means each individual or legal entity that creates, contributes to\n the creation of, or owns a Covered Hardware Description.\n\n1.2. \"Contributor Version\"\n means the combination of the Contributions of others (if any) used\n by a Contributor and that particular Contributor's Contribution.\n\n1.3. \"Contribution\"\n means Covered Hardware Description of a particular Contributor.\n\n1.4. \"Covered Hardware Description\"\n means Source Code Form to which the initial Contributor has attached\n the notice in Exhibit A, the Processed Form of such Source Code\n Form, and Modifications of such Source Code Form, in each case\n including portions thereof.\n\n1.5. \"Incompatible With Secondary Licenses\"\n means that the initial Contributor has attached the notice described in\n Exhibit B to the Covered Hardware Description\n\n1.6. \"Processed Form\"\n means any form of the work other than Source Code Form.\n\n1.7. \"Larger Work\"\n means a work that combines a Covered Hardware Description with code in a \n separate file or files not governed by the terms of this License.\n\n1.8. \"License\"\n means this document.\n\n1.9. \"Licensable\"\n means having the right to grant, to the maximum extent possible,\n whether at the time of the initial grant or subsequently, any and\n all of the rights conveyed by this License.\n\n1.10. \"Modifications\"\n means any of the following:\n\n (a) any file in Source Code Form that results from an addition to,\n deletion from, or modification of the contents of a Covered\n Hardware Description; or\n\n (b) any new file in Source Code Form that contains any Covered\n Hardware Description Source.\n\n1.11. \"Patent Claims\" of a Contributor\n means any patent claim(s), including without limitation, method,\n process, and apparatus claims, in any patent Licensable by such\n Contributor that would be infringed, but for the grant of the\n License, by the making, using, selling, offering for sale, having\n made, import, or transfer of either its Contributions or its\n Contributor Version.\n\n1.12. \"Secondary License\"\n means either the GNU General Public License, Version 2.0 or later,\n the GNU Lesser General Public License, Version 2.1 or later, or the\n GNU Affero General Public License, Version 3.0 or later, or the\n TAPR Open Hardware License, Version 1.0 or later, or the CERN OHL,\n Verstion 1.1 or later.\n\n1.13. \"Source Code Form\"\n means the form of the work preferred for making modifications.\n\n1.14. \"You\" (or \"Your\")\n means an individual or a legal entity exercising rights under this\n License. For legal entities, \"You\" includes any entity that\n controls, is controlled by, or is under common control with You. For\n purposes of this definition, \"control\" means (a) the power, direct\n or indirect, to cause the direction or management of such entity,\n whether by contract or otherwise, or (b) ownership of more than\n fifty percent (50%) of the outstanding shares or beneficial\n ownership of such entity.\n\n2. License Grants and Conditions\n--------------------------------\n\n2.1. Grants\n\nEach Contributor hereby grants You a world-wide, royalty-free,\nnon-exclusive license:\n\n(a) under intellectual property rights (other than patent or trademark)\n Licensable by such Contributor to use, reproduce, make available,\n modify, display, perform, distribute, and otherwise exploit its\n Contributions, either on an unmodified basis, with Modifications, or\n as part of a Larger Work; and\n\n(b) under Patent Claims of such Contributor to make, use, sell, offer\n for sale, have made, import, and otherwise transfer either its\n Contributions or its Contributor Version.\n\n2.2. Effective Date\n\nThe licenses granted in Section 2.1 with respect to any Contribution\nbecome effective for each Contribution on the date the Contributor first\ndistributes such Contribution.\n\n2.3. Limitations on Grant Scope\n\nThe licenses granted in this Section 2 are the only rights granted under\nthis License. No additional rights or licenses will be implied from the\ndistribution or licensing of Covered Hardware Description under this License.\nNotwithstanding Section 2.1(b) above, no patent license is granted by a\nContributor:\n\n(a) for any code that a Contributor has removed from Covered Hardware \n Description; or\n\n(b) for infringements caused by: (i) Your and any other third party's\n modifications of a Covered Hardware Description, or (ii) the combination \n of its Contributions with other Source (except as part of its Contributor\n Version); or\n\n(c) under Patent Claims infringed by a Covered Hardware Description in the \n absence of its Contributions.\n\nThis License does not grant any rights in the trademarks, service marks,\nor logos of any Contributor (except as may be necessary to comply with\nthe notice requirements in Section 3.4).\n\n2.4. Subsequent Licenses\n\nNo Contributor makes additional grants as a result of Your choice to\ndistribute the Covered Hardware Description under a subsequent version of this\nLicense (see Section 10.2) or under the terms of a Secondary License (if\npermitted under the terms of Section 3.3).\n\n2.5. Representation\n\nEach Contributor represents that the Contributor believes its\nContributions are its original creation(s) or it has sufficient rights\nto grant the rights to its Contributions conveyed by this License.\n\n2.6. Fair Use\n\nThis License is not intended to limit any rights You have under\napplicable copyright doctrines of fair use, fair dealing, or other\nequivalents.\n\n2.7. Conditions\n\nSections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted\nin Section 2.1.\n\n3. Responsibilities\n-------------------\n\n3.1. Distribution of Source Form\n\nAll distribution of Covered Hardware Description in Source Code Form, \nincluding any Modifications that You create or to which You contribute, must be\nunder the terms of this License. You must inform recipients that the Source\nCode Form of the Covered Hardware Description is governed by the terms of this\nLicense, and how they can obtain a copy of this License. You may not\nattempt to alter or restrict the recipients' rights in the Source Code\nForm.\n\n3.2. Distribution of Processed Form\n\nIf You distribute Covered Hardware Description in Processed Form then:\n\n(a) such Covered Hardware Description must also be made available in Source \n Code Form, as described in Section 3.1, and You must inform recipients of\n the Processed Form how they can obtain a copy of such Source Code\n Form by reasonable means in a timely manner, at a charge no more\n than the cost of distribution to the recipient; and\n\n(b) You may distribute such Processed Form under the terms of this\n License, or sublicense it under different terms, provided that the\n license for the Processed Form does not attempt to limit or alter\n the recipients' rights in the Source Code Form under this License.\n\n3.3. Distribution of a Larger Work\n\nYou may create and distribute a Larger Work under terms of Your choice,\nprovided that You also comply with the requirements of this License for\nthe Covered Hardware Description. If the Larger Work is a combination of a \nCovered Hardware Description with a work governed by a Secondary License, and \nthe Covered Hardware Description is not Incompatible With Secondary Licenses, \nthis License permits You to additionally distribute such Covered Hardware \nDescription under the terms of that Secondary License, so that the recipient of\nthe Larger Work may, at their option, further distribute the Covered Hardware \nDescription under the terms of either this License or that Secondary License.\n\n3.4. Notices\n\nYou may not remove or alter the substance of any license notices\n(including copyright notices, patent notices, disclaimers of warranty,\nor limitations of liability) contained within the Source Code Form of\nthe Covered Hardware Description, except that You may alter any license notices\nto the extent required to remedy known factual inaccuracies.\n\n3.5. Application of Additional Terms\n\nYou may choose to offer, and to charge a fee for, warranty, support,\nindemnity or liability obligations to one or more recipients of a Covered\nHardware Description. However, You may do so only on Your own behalf, and not \non behalf of any Contributor. You must make it absolutely clear that any\nsuch warranty, support, indemnity, or liability obligation is offered by\nYou alone, and You hereby agree to indemnify every Contributor for any\nliability incurred by such Contributor as a result of warranty, support,\nindemnity or liability terms You offer. You may include additional\ndisclaimers of warranty and limitations of liability specific to any\njurisdiction.\n\n4. Inability to Comply Due to Statute or Regulation\n---------------------------------------------------\n\nIf it is impossible for You to comply with any of the terms of this\nLicense with respect to some or all of the Covered Hardware Description due to\nstatute, judicial order, or regulation then You must: (a) comply with\nthe terms of this License to the maximum extent possible; and (b)\ndescribe the limitations and the code they affect. Such description must\nbe placed in a text file included with all distributions of the Covered\nHardware Description under this License. Except to the extent prohibited by \nstatute or regulation, such description must be sufficiently detailed for a\nrecipient of ordinary skill to be able to understand it.\n\n5. Termination\n--------------\n\n5.1. The rights granted under this License will terminate automatically\nif You fail to comply with any of its terms. However, if You become\ncompliant, then the rights granted under this License from a particular\nContributor are reinstated (a) provisionally, unless and until such\nContributor explicitly and finally terminates Your grants, and (b) on an\nongoing basis, if such Contributor fails to notify You of the\nnon-compliance by some reasonable means prior to 60 days after You have\ncome back into compliance. Moreover, Your grants from a particular\nContributor are reinstated on an ongoing basis if such Contributor\nnotifies You of the non-compliance by some reasonable means, this is the\nfirst time You have received notice of non-compliance with this License\nfrom such Contributor, and You become compliant prior to 30 days after\nYour receipt of the notice.\n\n5.2. If You initiate litigation against any entity by asserting a patent\ninfringement claim (excluding declaratory judgment actions,\ncounter-claims, and cross-claims) alleging that a Contributor Version\ndirectly or indirectly infringes any patent, then the rights granted to\nYou by any and all Contributors for the Covered Hardware Description under \nSection 2.1 of this License shall terminate.\n\n5.3. In the event of termination under Sections 5.1 or 5.2 above, all\nend user license agreements (excluding distributors and resellers) which\nhave been validly granted by You or Your distributors under this License\nprior to termination shall survive termination.\n\n************************************************************************\n* *\n* 6. Disclaimer of Warranty *\n* ------------------------- *\n* *\n* The Covered Hardware Description is provided under this License on *\n* an \"as is\" basis, without warranty of any kind, either expressed, *\n* implied, or statutory, including, without limitation, warranties *\n* that the Covered Hardware Description is free of defects, *\n* merchantable, fit for a particular purpose or non-infringing. The *\n* entire risk as to the quality and performance of the Covered *\n* Hardware Description is with You. Should any Covered Hardware *\n* Description prove defective in any respect, You (not any *\n* Contributor) assume the cost of any necessary servicing, repair, or *\n* correction. This disclaimer of warranty constitutes an essential *\n* part of this License. No use of any Covered Hardware Description is *\n* authorized under this License except under this disclaimer. *\n* *\n************************************************************************\n\n************************************************************************\n* *\n* 7. Limitation of Liability *\n* -------------------------- *\n* *\n* Under no circumstances and under no legal theory, whether tort *\n* (including negligence), contract, or otherwise, shall any *\n* Contributor, or anyone who distributes Covered Hardware Description *\n* as permitted above, be liable to You for any direct, indirect, *\n* special, incidental, or consequential damages of any character *\n* including, without limitation, damages for lost profits, loss of *\n* goodwill, work stoppage, computer failure or malfunction, or any *\n* and all other commercial damages or losses, even if such party *\n* shall have been informed of the possibility of such damages. This *\n* limitation of liability shall not apply to liability for death or *\n* personal injury resulting from such party's negligence to the *\n* extent applicable law prohibits such limitation. Some *\n* jurisdictions do not allow the exclusion or limitation of *\n* incidental or consequential damages, so this exclusion and *\n* limitation may not apply to You. *\n* *\n************************************************************************\n\n8. Litigation\n-------------\n\nAny litigation relating to this License may be brought only in the\ncourts of a jurisdiction where the defendant maintains its principal\nplace of business and such litigation shall be governed by laws of that\njurisdiction, without reference to its conflict-of-law provisions.\nNothing in this Section shall prevent a party's ability to bring\ncross-claims or counter-claims.\n\n9. Miscellaneous\n----------------\n\nThis License represents the complete agreement concerning the subject\nmatter hereof. If any provision of this License is held to be\nunenforceable, such provision shall be reformed only to the extent\nnecessary to make it enforceable. Any law or regulation which provides\nthat the language of a contract shall be construed against the drafter\nshall not be used to construe this License against a Contributor.\n\n10. Versions of the License\n---------------------------\n\n10.1. New Versions\n\nJulius Baxter is the license steward. Except as provided in Section\n10.3, no one other than the license steward has the right to modify or\npublish new versions of this License. Each version will be given a\ndistinguishing version number.\n\n10.2. Effect of New Versions\n\nYou may distribute the Covered Hardware Description under the terms of the \nversion of the License under which You originally received the Covered Hardware\nDescription, or under the terms of any subsequent version published by the \nlicense steward.\n\n10.3. Modified Versions\n\nIf you create designs not governed by this License, and you want to\ncreate a new license for such designs, you may create and use a\nmodified version of this License if you rename the license and remove\nany references to the name of the license steward (except to note that\nsuch modified license differs from this License).\n\n10.4. Distributing Source Code Form that is Incompatible With Secondary\nLicenses\n\nIf You choose to distribute Source Code Form that is Incompatible With\nSecondary Licenses under the terms of this version of the License, the\nnotice described in Exhibit B of this License must be attached.\n\nExhibit A - Source Code Form License Notice\n-------------------------------------------\n\n This Source Code Form is subject to the terms of the \n Open Hardware Description License, v. 1.0. If a copy \n of the OHDL was not distributed with this file, You \n can obtain one at http://juliusbaxter.net/ohdl/ohdl.txt\n\nIf it is not possible or desirable to put the notice in a particular\nfile, then You may include the notice in a location (such as a LICENSE\nfile in a relevant directory) where a recipient would be likely to look\nfor such a notice.\n\nYou may add additional accurate notices of copyright ownership.\n\nExhibit B - \"Incompatible With Secondary Licenses\" Notice\n---------------------------------------------------------\n\n This Source Code Form is \"Incompatible With Secondary Licenses\", as\n defined by the Open Hardware Description License, v. 1.0.", + "json": "ohdl-1.0.json", + "yaml": "ohdl-1.0.yml", + "html": "ohdl-1.0.html", + "license": "ohdl-1.0.LICENSE" + }, + { + "license_key": "okl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-okl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "1. Redistribution and use of (Software) in source and binary\nforms, with or without modification, are permitted provided that the\nfollowing conditions are met:\n\n (a) Redistributions of source code must retain this clause 1\n (including paragraphs (a), (b) and (c)), clause 2 and clause 3\n (Licence Terms) and the above copyright notice.\n\n (b) Redistributions in binary form must reproduce the above\n copyright notice and the Licence Terms in the documentation and/or\n other materials provided with the distribution.\n\n (c) Redistributions in any form must be accompanied by information on\n how to obtain complete source code for:\n (i) the Software; and\n (ii) all accompanying software that uses (or is intended to\n use) the Software whether directly or indirectly. Such source\n code must:\n (iii) either be included in the distribution or be available\n for no more than the cost of distribution plus a nominal fee;\n and\n (iv) be licensed by each relevant holder of copyright under\n either the Licence Terms (with an appropriate copyright notice)\n or the terms of a licence which is approved by the Open Source\n Initative. For an executable file, \"complete source code\"\n means the source code for all modules it contains and includes\n associated build and other files reasonably required to produce\n the executable.\n\n2. THIS SOFTWARE IS PROVIDED ``AS IS'' AND, TO THE EXTENT PERMITTED BY\nLAW, ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\nPURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED. WHERE ANY WARRANTY IS\nIMPLIED AND IS PREVENTED BY LAW FROM BEING DISCLAIMED THEN TO THE\nEXTENT PERMISSIBLE BY LAW: (A) THE WARRANTY IS READ DOWN IN FAVOUR OF\nTHE COPYRIGHT HOLDER (AND, IN THE CASE OF A PARTICIPANT, THAT\nPARTICIPANT) AND (B) ANY LIMITATIONS PERMITTED BY LAW (INCLUDING AS TO\nTHE EXTENT OF THE WARRANTY AND THE REMEDIES AVAILABLE IN THE EVENT OF\nBREACH) ARE DEEMED PART OF THIS LICENCE IN A FORM MOST FAVOURABLE TO\nTHE COPYRIGHT HOLDER (AND, IN THE CASE OF A PARTICIPANT, THAT\nPARTICIPANT). IN THE LICENCE TERMS, \"PARTICIPANT\" INCLUDES EVERY\nPERSON WHO HAS CONTRIBUTED TO THE SOFTWARE OR WHO HAS BEEN INVOLVED IN\nTHE DISTRIBUTION OR DISSEMINATION OF THE SOFTWARE.\n\n3. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR ANY OTHER PARTICIPANT BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\nIF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "okl.json", + "yaml": "okl.yml", + "html": "okl.html", + "license": "okl.LICENSE" + }, + { + "license_key": "olf-ccla-1.0", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-olf-ccla-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Logistics Foundation\nCorporate Contributor License Agreement (\u201cCLA\u201d) \nVersion 1.0, March 2022 \nhttps://www.openlogisticsfoundation.org/licenses\n\nThe Open Logistics Foundation provides a framework for the design, development and use of open source solutions in logistics. Within this framework, developers bring together their efforts for increased efficiency and successful commercial use on the basis of open source components.\n\nThis CLA enables the Contributor to submit Contributions to the Open Logistics Foundation, or to have them submitted, and to grant the rights stated below in such Contribution/s in their entirety. This CLA determines which of the Contributor\u2019s rights in their Contributions to the Open Logistics Foundation will be granted by the Contributor to the Open Logistics Foundation and the conditions that must be observed in that regard.\n\nBy way of conclusion of this CLA, the Contributor accepts the following conditions for their current and future Contributions to the Open Logistics Foundation. Except for the licenses granted in this CLA to the Open Logistics Foundation and the recipients of Works containing such Contribution distributed by the Open Logistics Foundation, the Contributor reserves all rights in their Contributions.\n\nPlease complete, sign and send this Agreement to info@openlogisticsfoundation.org. The CLA is concluded when the Open Logistics Foundation expressly confirms the conclusion of the CLA or activates access to the Open Logistics Repository for the Contributor, thereby enabling the Contributor to submit Contributions.\n\nCorporation name: \nCorporation address:\nPoint of Contact / CLA-Manager:\nE-Mail:\nPhone:\n\nReferred to as \u201cContributor\u201d or \u201cyou\u201d\n\n1 Definitions\n\n(1) \u201cContribution\u201d means any work protected under copyright, design and/or patent law, including any modifications of or additions to this work as well as adaptations of the work, that are submitted by the Contributor as copyright holder or by parties legally or contractually entitled to do so by copyright holders to the Open Logistics Foundation for inclusion in works developed and distributed by the Open Logistics Foundation. Within the meaning of this definition, \u201csubmit\u201d means any form of electronic or written communication which is intentionally submitted to the Open Logistics Foundation to discuss or improve a current or future work or project undertaken by the Open Logistics Foundation, including but not limited to communications sent via electronic mailing lists, source code control systems and issue tracking systems; however, communications that the Contributor or any employee specifically named by him/her have clearly marked as \u201cno contribution\u201d, or which are otherwise identified as such in writing, are excluded.\n\n(2) \u201cWork\u201d means any work protected under copyright, design and/or patent law containing a Contribution.\n\n(3) \u201cCommitters\u201d are persons named by the Open Logistics Foundation or by Contributors who have write access to works or projects undertaken by the Open Logistics Foundation in the version control system.\n\n(4) \u201cSource Code\u201d means the version of the code of the respective Contribution \u2013 if the Contribution is a software \u2013 in the programming language.\n\n(5) \u201cObject Code\u201d means the intermediate product of a compilation or translation process of the Source Code.\n\n2 Granting of usage rights\nThe Contributor hereby grants the Open Logistics Foundation and any third party who receives and/or uses a Work or the Contributions themselves \u2013 whether adapted or not - for the duration of the existence of the copyrights pertaining to such Contributions\n\u2022 the royalty-free and non-exclusive right,\n\u2022 sublicensable for commercial and non-commercial purposes\n\u2022 worldwide and perpetual,\n\u2022 irrevocable and non-terminable,\nto use the Contributions in their original form or in modified, translated, edited or transformed form on their own or as a part of a Work in the following ways:\n\u2022 use them in any hardware and software environment, - insofar as the Contribution is a software \u2013 in particular to store or load them permanently or temporarily, to display them and run them, including to the extent reproductions are necessary to that end,\n\u2022 modify, translate, edit or transform them in another way,\n\u2022 store, reproduce, exhibit or publish them, distribute them in tangible or intangible form, on any medium or in any other way, for commercial and non-commercial purposes, in particular to communicate them privately or publicly, also through image, audio and other information carriers, irrespective of whether by wire or wireless means,\n\u2022 use them in databases, data networks and online services, including the right to make it available in Source Code or Object Code to users of the aforementioned databases, networks and online services for research and retrieval purposes,\n\u2022 allow third parties to use or operate them,\n\u2022 use them not only for own purposes but also to provide services to third parties,\n\u2022 distribute them.\n\nThe above right of use relates to the Contributions, in particular \u2013 insofar as the Contribution is a software\u2013 their Source Code and Object Code in any and all forms. The above usage rights include \u2013 where applicable \u2013 design rights.\n\n3 Granting of a patent license\n\n(1) For any patents (including pending patent applications) owned and licensable by the Contributor at the time of the submission of the Contribution, the Contributor hereby grants the Open Logistics Foundation and any third party who receives and/or uses a Work containing the Contributions or the Contributions themselves - adapted or not - a\n\u2022 perpetual,\n\u2022 worldwide,\n\u2022 non-exclusive,\n\u2022 free of charge,\n\u2022 irrevocable\npatent license in all rights deriving from the patent to\n\u2022 produce,\n\u2022 arrange to have produced,\n\u2022 use,\n\u2022 offer for sale,\n\u2022 sell,\n\u2022 import and otherwise transfer\n\n the Work or the respective Contributions.\n\nHowever, this patent license covers only those rights deriving from the patent of the respective Contributor as are indispensable in order not to infringe that patent and only to the extent that the use of the Contributor\u2019s respective Contribution, whether in itself or as a combination with other Contributions of the Contributor or any third parties together with the Work for which these Contributions were submitted, would otherwise infringe that patent. For avoidance of doubt, no patent licenses are granted for the use of a Work or the Contribution which become necessary for lawful use because third party modifications are made to the Work or the respective Contribution after the Contribution has been submitted by the Contributor.\n\n(2) If any entity or person institutes patent litigation against You or any other entity or person (including a cross-claim or counterclaim in a lawsuit) alleging that your Contribution, or the Work to which you have contributed, constitutes direct or contributory patent infringement, then any patent licenses granted to that person or entity under this CLA for that Contribution or Work shall terminate as of the date such litigation is filed.\n\n(3) The Contributor is entitled to decide in its own discretion to abandon respectively maintain any patent for which he has granted a patent license in accordance with para. 1 of this Section 3.\n\n4 Contributor\u2019s binding representations\n\n(1) The Contributor hereby represents that\na. it is entitled to grant the usage rights and - to the extent applicable - patent licenses for Contributions under this CLA, and\nb. by granting usage rights under Section 2 above and patent licenses under Section 3 above, they are not infringing any rights granted by the Contributor to third parties.\n\n(2) Furthermore, the Contributor hereby undertakes to identify by name all employees and service providers who submit Contributions or otherwise make them available to the Open Logistics Foundation in the Contributor\u2019s name, and that all employees and service providers they identify by name to the Open Logistics Foundation are authorised to submit Contributions in the Contributor\u2019s name; identifying the employees in this regard shall be at least in text form (as per Sec. 126b German Civil Code). It is the Contributor\u2019s sole responsibility to notify the Open Logistics Foundation if changes need to be made to the list of named employees authorised to make Contributions in the Contributor\u2019s name.\n\n(3) If the Contributor wishes to submit a third-party work, this must take place separately from any Contribution, in which case the complete details of the source and all licenses or other limitations (including but not limited to any associated patents, trademarks and licensing agreements) which they are personally aware of must be provided. The corresponding work must be clearly identified as a third-party work when it is submitted.\n\n5 Trademarks\nThe Contributor does not grant permission to use its trade names, trademarks, service marks or product names.\n\n6 No restriction on other use by the Contributor\nThe Contributor is expressly permitted to use and exploit the Contributions on a commercial or non\u2013 commercial basis \u2013 individually, in part or as part of another work \u2013 in accordance with the rights held by the Contributor, provided that such other use or exploitation does not conflict with the rights granted under this CLA.\n\n7 Obligations of the Open Logistics Foundation\n\n(1) The Open Logistics Foundation is not obliged to incorporate the Contributor\u2019s Contributions into any Work or to use them in any other way.\n\n(2) If a Work is distributed by the Open Logistics Foundation by way of incorporation of the Contributor\u2019s Contributions or if the Contributions themselves are distributed, the Open Logistics Foundation is obliged - irrespective of whether the Contributions have been modified by the Open Logistics Foundation or any third party -\na. to retain and to oblige the recipients of the Work to retain all copyright, patent, trade mark and name credit notices in the Contributions - in the form as distributed - with the exception of those notices that do not pertain to any part of the distributed Contributions;\nb. to grant the Contributor a license to the rights in the distributed Work that contains the Contributor\u2019s Contributions, corresponding to Sections 2 and 3 above.\n\n8 Contributor\u2019s assumption of the role of Committer\nIf the Open Logistics Foundation under a separate agreement assigns the role of a Committer to the Contributor and the Contributor accepts the role, the Contributor must comply with the guidelines, policies and codes of conduct imposed as part of the assignment.\n\n9 Limitation of liability\nExcept in cases of intent and gross negligence or causing personal injury, the Contributor, its legal representatives, trustees, officers and employees shall not be liable towards the Open Logistics Foundation for direct or indirect, material or immaterial losses of any kind arising from the use of the Contributions; this includes but is not limited to loss of goodwill, interruption of production, computer failures or errors, loss of data or economic losses, even if the Contributor has been made aware of the possibility of such losses. Notwithstanding the above, the Contributor shall only be liable under product liability law to the extent that the respective provisions are applicable to the Contributions.\nExcept in case of intent or gross negligence the Contributor, its legal representatives, trustees, officers and employees shall not be liable that any of the Contributions is free from any claim of infringement of any patent or any other intellectual property right owned by any third party, accurate, devoid of mistakes, complete and/or usable for any purpose.\n\n10 Other provisions\n\n(1) This CLA is governed by German law, excluding the UN Convention on Contracts for the International Sale of Goods (CISG). Exclusive place of jurisdiction for all disputes between the parties regarding\n the interpretation of this CLA is Dortmund. This CLA or any provision thereof may be amended or modified only with the mutual consent of the contracting parties as set out in a written instrument. This requirement of written form can only be deviated from in writing.\n\n(2) Any failure by the Open Logistics Foundation or the Contributor to insist that the other Party adhere to a provision of this CLA in a given situation does not affect the right of such Party to require adherence in the same regard at a later date. Waiving compliance with a provision in one situation shall not be deemed a waiver of compliance with that provision in the future or as a waiver of the provision in its entirety.\n\n(3) If any provision of this CLA should prove to be invalid and unenforceable, then the validity of the remaining provisions shall remain unaffected. In this case, that provision will be replaced, as far as possible, by an enforceable provision that most closely reflects the meaning of the original provision.\n\nLocation: \nDate: \nSignature: \nTitle and name: \nPosition and corporation: \n\n*****\nInitial list of designated employees. The authorization is not tied to particular Contributions.\nFull Name\nE-Mail\n\nIt is your responsibility to notify the Foundation when any change is required to the list of designated employees authorized to submit Contributions on behalf of the Corporation, or to the Corporation's Point of Contact with the Foundation.\n\nOpen Logistics Foundation Emil-Figge-Stra\u00dfe 80 | D-44227 Dortmund | Germany\nBoardJochen Thewes \u2013 Chairman | Stefan Hohm and Dr. Stephan Peters \u2013 Deputy Chairmen\nManaging Directors Andreas Nettstr\u00e4ter | Thorsten H\u00fclsmann\nCheques and transfers payable to Sparkasse Dortmund | IBAN DE63440501990001146017 | BIC (Swift Code) DORTDE33XXX VAT Ident no. DE350640517 | Tax no. 315/5704/0848 | Supervisory authority Bezirksregierung Arnsberg", + "json": "olf-ccla-1.0.json", + "yaml": "olf-ccla-1.0.yml", + "html": "olf-ccla-1.0.html", + "license": "olf-ccla-1.0.LICENSE" + }, + { + "license_key": "oll-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-oll-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Logistics License\nVersion 1.0, March 2022\nhttps://www.openlogisticsfoundation.org/licenses/\n\nTERMS AND CONDITIONS FOR THE USE, REPRODUCTION AND DISTRIBUTION\n\n\u00df1 Definitions\n\n(1) \"Subject Matter of the License\" means the copyrighted works of the software\ncomponents in source code or object code as well as the other components\nprotected under copyright, design and/or patent law which are made available\nunder this license in accordance with a copyright notice inserted into or\nattached to the work as well as the application and user documentation.\n\n(2) \"License\" means the terms and conditions for the use, reproduction and\ndistribution of the Subject Matter of the License in accordance with the\nprovisions of this document.\n\n(3) \"Licensor(s)\" means the copyright holder(s) or the entity authorised by law\nor contract by the copyright holder(s) to grant the license.\n\n(4) \"You\" (or \"Your\") means a natural or legal person exercising the\npermissions granted by this License.\n\n(5) \"Source Code\" means the version of the code of the software components of\nthe Subject Matter of the License in the programming language.\n\n(6) \"Object Code\" means the interim product after compilation or interpretation\nof the Source Code.\n\n(7) \"Derivative Works\" shall mean any work, whether in Source or Object Code or\nany other form, that is based on (or derived from) the Subject Matter of the\nLicense and for which the editorial revisions, annotations, elaborations, or\nother modifications represent, as a whole, an original work of authorship. For\nthe purposes of this License, Derivative Works shall not include works that\nremain separable from, or merely link (or bind by name) to the interfaces of,\nthe Subject Matter of the License and Derivative Works thereof.\n\n(8) \"Contribution\" means any proprietary work, including the original version\nof the Subject Matter of the License and any changes or additions to such work,\nor Derivative Works of such work, that the copyright holder, or a natural or\nlegal person authorised to make submissions, intentionally submits to the\nLicensor or one of the Licensors to be incorporated into the Subject Matter of\nthe License. For the purposes of this definition, \"submit\" means any form of\nelectronic or written communication which is sent to the Licensor (or one of\nthe Licensors) or its representatives to discuss or improve the Subject Matter\nof the License, including, but not limited to, communications sent via\nelectronic mailing lists, source code control systems and issue tracking\nsystems; however, communications that are clearly labelled as \"no contribution\"\nby the copyright holder or otherwise identified as such in writing are\nexcluded.\n\n(9) \"Contributor\" means the Licensor and/or any natural or legal person on\nwhose behalf the Licensor receives any Contribution subsequently incorporated\ninto the Subject Matter of the License.\n\n\u00df2 Granting of usage rights\n\nSubject to the terms and conditions of this License and compliance with the\nprovisions of this License, You are hereby granted by all Contributors, for the\nterm of the copyrights in the Subject Matter of the License, the\n\n- royalty-free and non-exclusive,\n- sub-licensable for commercial and non-commercial purposes,\n- worldwide and perpetual,\n- irrevocable and non-terminable\n\nright\n\n- to use in any hardware and software environment, - with regard to the\n software and data components - in particular to store or load it permanently\n or temporarily, to display it and run it, including to the extent\n reproductions are necessary to that end,\n- to modify, interpret, edit or redesign in another way,\n- to store, reproduce, exhibit, publish, distribute in tangible or intangible\n form, on any medium or in any other way, for commercial and non-commercial\n purposes, in particular to communicate privately or publicly, also through\n image, audio and other information carriers, irrespective of whether by wire\n or wireless means,\n- to use in databases, data networks and online services, including the right\n to make the software and data components of the Subject Matter of the License\n available in source code or object code to users of the aforementioned\n databases, networks and online services for research and retrieval purposes,\n- to allow third parties to use or operate,\n- to use for own purposes but also to provide services to third parties,\n- to distribute\n\nthe Subject Matter of the License in its original or modified, interpreted,\nedited or redesigned form.\n\nThis right of use relates to the Subject Matter of the License in particular\nits source code and object code of the software components in all forms\n(including - where applicable - design rights).\n\n\u00df3 Grant of a patent license\n\nSubject to the terms and conditions of this License and compliance with the\nprovisions of this License, You are hereby granted by each Contributor a\n\n- perpetual,\n- worldwide,\n- non-exclusive,\n- free of charge,\n- irrevocable (with the exception of the restrictions set out in this\n Section 3)\n\npatent license in all rights deriving from the patents, owned and licensable by\nthe Contributor at the time of the submission of the Contribution, to\n\n- produce,\n- have produced,\n- use,\n- offer for sale,\n- sell,\n- import and otherwise transfer\n\nthe Subject Matter of the License.\n\nHowever, this patent license covers only those rights deriving from the patents\nof the respective Contributors as are indispensable in order not to infringe\nthat patent and only to the extent that the use of the Contributor's respective\nContributions, whether in itself or as a combination with other Contributions\nof the Contributors or any third parties together with the Subject Matter of\nthe License for which these Contributions were submitted, would otherwise\ninfringe that patent. For avoidance of doubt, no patent licenses are granted\nfor the use of the Subject Matter of the License or the Contributions which\nbecome necessary for lawful use because third party modifications are made to\nthe Subject Matter of the License or the respective Contributions after the\nContributions has been submitted by the Contributors. Under no circumstances\nwill anything in this Section 3 be construed as granting, by implication,\nestoppel or otherwise, a license to any patent for which the respective\nContributors have not granted patent rights when they submitted their\nrespective Contributions.\n\nIn the event that You institute judicial patent proceedings against any entity\nor person (including a counterclaim or countersuit in a legal dispute), arguing\nthat the Subject Matter of the License or a Contribution incorporated or\ncontained therein constitutes a patent infringement or a contributory factor to\na patent infringement, all patent licenses which have been granted to You under\nthis License for the Subject Matter of the License as well as this License in\nitself shall be deemed terminated as of the date on which the action is filed.\n\nFor avoidance of doubt, the Contributors are entitled to decide in their own\ndiscretion to abandon respectively maintain any patent designated by patent\nnumber upon delivery of the Subject Matter of the License.\n\n\u00df4 Distribution\n\nYou may reproduce and distribute copies of the Subject Matter of the License or\nDerivative Works on any medium, with or without modifications, (with regard to\nsoftware components) in Source or Object Code, provided that You comply with\nthe following rules:\n\n- You must provide all other recipients of the Subject Matter of the License or\n of Derivative Works with a copy of this License and inform them that the\n Subject Matter of the License was originally licensed under this License.\n- You must ensure that modified files contain prominent notices indicating that\n You have modified the files.\n- You must retain all copyright, patent, trademark and name credit notices in\n the Subject Matter of the License in the source code of any Derivative Works\n You distribute, with the exception of those notices which do not belong to\n any part of the Derivative Works.\n- You must oblige the recipients of the Subject Matter of the License or\n Derivative Works to incorporate the provisions of this Section 4 into any\n license under which they distribute the the Subject Matter of the License or\n Derivative Works to any other recipients.\n\nYou may add Your own copyright notices to Your modifications and state any\nadditional or different license conditions and conditions for the use,\nreproduction or distribution of Your modifications or for these Derivative\nWorks as a whole, provided that Your use, reproduction and distribution of the\nwork in all other respects complies with the terms and conditions set out in\nthis License.\n\n\u00df5 Submission of Contributions\n\nUnless expressly stated otherwise, every Contribution that You have\nintentionally submitted for inclusion in the Subject Matter of the License is\nsubject to this License without any additional terms or conditions applying.\nIrrespective of the above, none of the terms or conditions contained herein may\nbe interpreted to replace or change the terms or conditions of a separate\nlicensing agreement that You may have concluded with a Licensor for such\nContributions, such as a so-called \"Contributor License Agreement\" (CLA).\n\n\u00df6 Trademarks\n\nThis License does not grant permission to use the trade names, trademarks,\nservice marks or product names of the Licensor or of a Contributor.\n\n\u00df7 Limited warranty\n\nThis License is granted free of charge and thus constitutes a gift.\nAccordingly, any warranty is excluded. Work on the Subject Matter of the\nLicense continues on an ongoing basis; it is constantly improved by countless\nContributors. The Subject Matter of the License is not completed and may\ntherefore contain errors (\"bugs\") or additional patents of Contributors or\nthird parties, as is inherent to this type of development.\n\n\u00df8 Limitation of liability\n\nExcept in cases of intent and gross negligence or causing personal injury, the\nContributors, their legal representatives, trustees, officers and employees\nshall not be liable for direct or indirect, material or immaterial loss or\ndamage of any kind arising from the License or the use of the Subject Matter of\nthe License; this applies, among other things, but not exclusively, to loss of\ngoodwill, loss of production, computer failures or errors, loss of data or\neconomic loss or damage, even if the Contributor has been notified of the\npossibility of such loss or damage. Irrespective of the above, the Licensor\nshall only be liable in the scope of statutory product liability, to the extent\nthe respective provisions are applicable to the Subject Matter of the License\nor the Contribution.\n\nExcept in the case of intent, the Contributors, their legal representatives,\ntrustees, officers and employees shall not be liable that any of the\nContributions are free from any claim of infringement of any patent or any\nother intellectual property right owned by any third party, accurate, devoid of\nmistakes, complete and/or usable for any purpose.\n\n\u00df9 Provision of warranties or assumption of additional liability in the event\nof distribution of the Subject Matter of the License\n\nIn the event of distribution of the Subject Matter of the License or Derivative\nWorks, You are free to assume support, warranty, indemnity or other liability\nobligations and/or rights in accordance with this License and to charge a fee\nin return. However, in accepting such obligations, You may act only on Your own\nbehalf and on Your sole responsibility, not on behalf of any other Contributor,\nand You hereby agree to indemnify, defend, and hold each Contributor harmless\nfor any liability incurred by, or claims asserted against, such Contributor by\nreason of your accepting any such warranty or additional liability.\n\n\u00df10 Applicable law\n\nThis License is governed by German law with the exclusion of its provisions on\nthe conflict of laws and with the exclusion of the UN Convention on Contracts\nfor the International Sale of Goods (CISG).\n\nEND OF TERMS AND CONDITIONS", + "json": "oll-1.0.json", + "yaml": "oll-1.0.yml", + "html": "oll-1.0.html", + "license": "oll-1.0.LICENSE" + }, + { + "license_key": "ooura-2001", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ooura-2001", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You may use, copy, modify this code for any purpose and \nwithout fee. You may distribute this ORIGINAL package.", + "json": "ooura-2001.json", + "yaml": "ooura-2001.yml", + "html": "ooura-2001.html", + "license": "ooura-2001.LICENSE" + }, + { + "license_key": "open-diameter", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-open-diameter", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Diameter License\n\nOpen Diameter: Open-source software for the Diameter and Diameter related protocols\n\nCopyright (C) 2002-2007 Open Diameter Project\n\nThis software consists of two parts, namely LGPL Part and GPL Part, which use different licences as described below.\n\n========= LGPL Part =========\n\nEach of the following libraries:\n\n- libdiamparser (Diameter parser library) - libdiameter (Diameter library) - libdiametereap (Diameter EAP application library) - libdiameternasreq (Diameter NASREQ application library) - libeap (EAP library) - libeaparchie (EAP-Archie method library) - libpana (PANA library)\n\nis licensed under the following terms and conditions.\n\nThis 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.\n\nThis 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.\n\nYou 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.\n\nIn addition, when you copy and redistribute some or the entire part of the source code of this software with or without modification, you MUST include this copyright notice in each copy.\n\nIf you make any changes that are appeared to be useful, please send sources that include the changed part to diameter-developers@lists.sourceforge.net so that we can reflect your changes to one unified version of this software.\n\n======== GPL Part ========\n\nEach of the following programs (libraries are also programs):\n\n- libeaptls (EAP-TLS method library) - libNASREQ (Diameter - freeradius translator) - panad (PANA daemon) - nasd (NAS daemon, including hostapdPatch) - aaad (AAA server daemon)\n\nis licensed under the following terms and conditions.\n\nThis 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 2 of the License, or (at your option) any later version.\n\nThis 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.\n\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US.\n\nIf you make any changes that are appeared to be useful, please send sources that include the changed part to diameter-developers@lists.sourceforge.net so that we can reflect your changes to one unified version of this software.", + "json": "open-diameter.json", + "yaml": "open-diameter.yml", + "html": "open-diameter.html", + "license": "open-diameter.LICENSE" + }, + { + "license_key": "open-group", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-open-group", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "THE OPEN GROUP PUBLIC LICENSE\n\nMOTIF GRAPHICAL USER INTERFACE SOFTWARE\n\nTHE ACCOMPANYING PROGRAM IS\nPROVIDED UNDER THE TERMS OF THIS THE OPEN GROUP PUBLIC LICENSE\n(\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM\nCONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n\n DEFINITIONS\n\n\"Contribution\" means:\n\n in the case of The Open Group, L.L.C. (\"The Open Group\"), the Original Program, and \n in the case of each Contributor,\n \ni. \u2020changes to the Program, and\n \nii. additions to the Program;\n\nwhere such changes\nand/or additions to the Program originate from and are distributed by that\nparticular Contributor. A Contribution 'originates' from a Contributor if it\nwas added to the Program by such Contributor itself or anyone acting on such\nContributor's behalf. Contributions do not include additions to the Program\nwhich:\n \ni. are separate modules of software distributed in conjunction\nwith the Program under their own license agreement, even if the separate\nmodules are linked in binary form to the Program, and \n \nii. are not derivative works of the Program.\n\n \"Contributor\" means The Open Group and any other entity that distributes the Program.\n\n \"Licensed Patents\" mean patent claims licensable by a Contributor which are\nnecessarily infringed by the use or sale of its Contribution alone or when\ncombined with the Program.\n\n \"Open Source\" programs mean software for which the source code is\navailable without confidential or trade secret restrictions and for which the\nsource code and object code are available for distribution without license\ncharges.\n\n\"Original Program\" means the original version of the software accompanying\nthis Agreement as released by The Open Group, including source code, object\ncode and documentation, if any.\n\n \"Program\" means the Original Program and Contributions.\n\n \"Recipient\" means anyone who receives the Program under this Agreement, including all Contributors.\n\nGRANT OF RIGHTS\n\nThe rights\ngranted under this license are limited solely to distribution and sublicensing\nof the Contribution(s) on, with, or for operating systems which are themselves\nOpen Source programs. Contact The Open Group for a license allowing\ndistribution and sublicensing of the Original Program on, with, or for\noperating systems which are not Open Source programs.\n\n Subject to the terms of this Agreement and the\n limitations of this Section 2, each Contributor hereby grants Recipient a\n non-exclusive, worldwide, royalty-free copyright license to reproduce,\n prepare derivative works of, publicly display, publicly perform,\n distribute and sublicense the Contribution of such Contributor, if any,\n and such derivative works, in source code and object code form.\n \n \u2020Subject to\n the terms of this Agreement and the limitations of this Section 2, each\n Contributor hereby grants Recipient a non-exclusive, worldwide,\n royalty-free patent license under Licensed Patents to make, use, sell,\n offer to sell, import and otherwise transfer the Contribution of such\n Contributor, if any, in source code and object code form. This patent\n license shall apply to the combination of the Contribution and the\n Program if, at the time the Contribution is added by the Contributor,\n such addition of the Contribution causes such combination to be covered\n by the Licensed Patents. The patent license shall not apply to any other\n combinations which include the Contribution. No hardware per se is\n licensed hereunder.\n \n Recipient understands that although each\n Contributor grants the licenses to its Contributions set forth herein, no\n assurances are provided by any Contributor that the Program does not\n infringe the patent or other intellectual property rights of any other\n entity. Each Contributor disclaims any liability to Recipient for claims\n brought by any other entity based on infringement of intellectual\n property rights or otherwise. As a condition to exercising the rights and\n licenses granted hereunder, each Recipient hereby assumes sole\n responsibility to secure any other intellectual property rights needed,\n if any. For example, if a third party patent license is required to allow\n Recipient to distribute the Program, it is Recipient's responsibility to\n acquire that license before distributing the Program.\n \n Each Contributor represents that to its knowledge\n it has sufficient copyright rights in its Contribution, if any, to grant\n the copyright license set forth in this Agreement. \n \n REQUIREMENTS\n\nA Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:\n\na. it\ncomplies with the terms and conditions of this Agreement; and\n\nb. its license agreement:\n \ni. effectively disclaims on behalf of all Contributors all\nwarranties and conditions, express and implied, including warranties or\nconditions of title and non-infringement, and implied warranties or conditions\nof merchantability and fitness for a particular purpose;\n \nii. effectively excludes on behalf of all Contributors all\nliability for damages, including direct, indirect, special, incidental and\nconsequential damages, such as lost profits;\n \niii. states that any provisions which differ from this Agreement\nare offered by that Contributor alone and not by any other party; and\n \niv. states that source code for the Program is available from such\nContributor, and informs licensees how to obtain it in a reasonable manner on\nor through a medium customarily used for software exchange.\n\nWhen the Program is made available in source code form:\n\na. it must be made available under this Agreement; and\n\nb. a copy of this Agreement must be included with each copy of the Program.\n\nEach Contributor must include the following in a conspicuous location in the Program:\n\nCopyright (c) {date here}, The Open Group Ltd. and others. All Rights Reserved.\n\nIn addition,\neach Contributor must identify itself as the originator of its Contribution, if\nany, in a manner that reasonably allows subsequent Recipients to identify the\noriginator of the Contribution.\n\nCOMMERCIAL DISTRIBUTION\n\nCommercial\ndistributors of software may accept certain responsibilities with respect to\nend users, business partners and the like. While this license is intended to\nfacilitate the commercial use of the Program, subject to the limitations\nprovided in Section 2, the Contributor who includes the Program in a commercial\nproduct offering should do so in a manner which does not create potential\nliability for other Contributors. Therefore, if a Contributor includes the\nProgram in a commercial product offering, such Contributor (\"Commercial\nContributor\") hereby agrees to defend and indemnify every other\nContributor (\"Indemnified Contributor\") against any losses, damages\nand costs (collectively \"Losses\") arising from claims, lawsuits and\nother legal actions brought by a third party against the Indemnified\nContributor to the extent caused by the acts or omissions of such Commercial\nContributor in connection with its distribution of the Program in a commercial\nproduct offering. The obligations in this section do not apply to any claims or\nLosses relating to any actual or alleged intellectual property infringement. In\norder to qualify, an Indemnified Contributor must:\n\na. promptly notify the Commercial Contributor in writing of such claim, and\n\nb. allow the Commercial Contributor to control, and cooperate with the Commercial\nContributor in, the defence and any related settlement negotiations.\n\nThe Indemnified Contributor may participate in any such claim at its own expense.\n\nFor example, a\nContributor might include the Program in a commercial product offering, Product\nX. That Contributor is then a Commercial Contributor. If that Commercial\nContributor then makes performance claims, or offers warranties related to\nProduct X, those performance claims and warranties are such Commercial\nContributor's responsibility alone. Under this section, the Commercial\nContributor would have to defend claims against the other Contributors related\nto those performance claims and warranties, and if a court requires any other\nContributor to pay any damages as a result, the Commercial Contributor must pay\nthose damages.\n\n NO WARRANTY\n\nEXCEPT AS\nEXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN \"AS\nIS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR\nIMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each\nRecipient is solely responsible for determining the appropriateness of using\nand distributing the Program and assumes all risks associated with its exercise\nof rights under this Agreement, including but not limited to the risks and\ncosts of program errors, compliance with applicable laws, damage to or loss of\ndata, programs or equipment, and unavailability or interruption of operations.\n\n DISCLAIMER OF LIABILITY\n\nEXCEPT AS\nEXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS\nSHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST\nPROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY\nWAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS\nGRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n GENERAL\n\nIf any provision\nof this Agreement is invalid or unenforceable under applicable law, it shall\nnot affect the validity or enforceability of the remainder of the terms of this\nAgreement, and without further action by the parties hereto, such provision\nshall be reformed to the minimum extent necessary to make such provision valid\nand enforceable.\n\nIf Recipient\ninstitutes patent litigation or other similar official proceedings to enforce\npatent rights against a Contributor with respect to a patent applicable to\nsoftware (including a cross-claim or counterclaim in a lawsuit), then any\npatent licenses granted by that Contributor to such Recipient under this\nAgreement shall terminate as of the date such litigation is filed. In addition,\nIf Recipient institutes patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that the Program itself\n(excluding combinations of the Program with other software or hardware)\ninfringes such Recipient's patent(s), then such Recipient's rights granted\nunder Section 2(b) shall terminate as of the date such litigation is filed.\n\nAll Recipient's\nrights under this Agreement shall terminate if it fails to comply with any of\nthe material terms or conditions of this Agreement and does not cure such\nfailure in a reasonable period of time after becoming aware of such\nnon-compliance. If all Recipient's rights under this Agreement terminate,\nRecipient agrees to cease use and distribution of the Program as soon as\nreasonably practicable. However, Recipient's obligations under this Agreement\nand any licenses granted by Recipient relating to the Program shall continue\nand survive.\n\nThe Open Group\nmay publish new versions (including revisions) of this Agreement from time to\ntime. Each new version of the Agreement will be given a distinguishing version\nnumber. The Program (including Contributions) may always be distributed subject\nto the version of the Agreement under which it was received. In addition, after\na new version of the Agreement is published, Contributor may elect to\ndistribute the Program (including its Contributions) under the new version. No\none other than The Open Group has the right to modify this Agreement. Except as\nexpressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights\nor licenses to the intellectual property of any Contributor under this\nAgreement, whether expressly, by implication, estoppel or otherwise. All rights\nin the Program not expressly granted under this Agreement are reserved.\n\nNo party to this\nAgreement will bring a legal action under this Agreement more than one year\nafter the cause of action arose. Each party waives its rights to a jury trial\nin any resulting litigation.", + "json": "open-group.json", + "yaml": "open-group.yml", + "html": "open-group.html", + "license": "open-group.LICENSE" + }, + { + "license_key": "open-public", + "category": "Copyleft Limited", + "spdx_license_key": "OPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OPEN PUBLIC LICENSE\nVersion 1.0\n\n1. Definitions. \n1.1. \"Contributor\" means each entity that creates or contributes to the creation of \nModifications.\n\n1.2. \"Contributor Version\" means the combination of the Original Code, prior \nModifications used by a Contributor, and the Modifications made by that particular \nContributor.\n\n1.3. \"Covered Code\" means the Original Code or Modifications or the combination \nof the Original Code and Modifications, in each case including portions thereof.\n\n1.4. \"Electronic Distribution Mechanism\" means a mechanism generally accepted \nin the software development community for the electronic transfer of data.\n\n1.5. \"Executable\" means Covered Code in any form other than Source Code.\n\n1.6. \"Initial Developer\" means the individual or entity identified as the Initial \nDeveloper in the Source Code notice required by Exhibit A.\n\n1.7. \"Larger Work\" means a work, which combines Covered Code or portions \nthereof with code not governed by the terms of this License.\n\n1.8. \"License\" means this document and the corresponding addendum describe in \nsection 6.4 below.\n\n1.9. \"Modifications\" means any addition to or deletion from the substance or \nstructure of either the Original Code or any previous Modifications. When Covered \nCode is released as a series of files, a Modification is:\n\nA. Any addition to or deletion from the contents of a file containing Original \nCode or previous Modifications.\nB. Any new file that contains any part of the Original Code or previous \nModifications.\n\n1.10. \"Original Code\" means Source Code of computer software code which is \ndescribed in the Source Code notice required by Exhibit A as Original Code, and \nwhich, at the time of its release under this License is not already Covered Code \ngoverned by this License.\n\n1.11. \"Source Code\" means the preferred form of the Covered Code for making \nmodifications to it, including all modules it contains, plus any associated interface \ndefinition files, scripts used to control compilation and installation of an Executable, \nor a list of source code differential comparisons against either the Original Code or \nanother well known, available Covered Code of the Contributor's choice. The Source \nCode can be in a compressed or archival form, provided the appropriate \ndecompression or de-archiving software is widely available for no charge.\n\n1.12. \"You\" means an individual or a legal entity exercising rights under, and \ncomplying with all of the terms of, this License or a future version of this License \nissued under Section 6.1. For legal entities, \"You\" includes any entity which controls, \nis controlled by, or is under common control with You. For purposes of this definition, \n\"control\" means (a) the power, direct or indirect, to cause the direction or \nmanagement of such entity, whether by contract or otherwise, or (b) ownership of \nfifty percent (50%) or more of the outstanding shares or beneficial ownership of such \nentity.\n\n1.13 \"License Author\" means Lutris Technologies, Inc.\n\n2. Source Code License.\n2.1. The Initial Developer Grant.\nThe Initial Developer hereby grants You a worldwide, royalty-free, non-exclusive \nlicense, subject to third party intellectual property claims:\n(a) under intellectual property rights (other than patent or trademark) to use, \nreproduce, modify, display, perform, sublicense and distribute the Original \nCode (or portions thereof) with or without Modifications, or as part of a Larger \nWork; and\n(b) under patents now or hereafter owned or controlled by Initial Developer, \nto make, have made, use and sell (\"offer to sell and import\") the Original \nCode (or portions thereof), but solely to the extent that any such patent is \nreasonably necessary to enable You to Utilize the Original Code (or portions \nthereof) and not to any greater extent that may be necessary to Utilize further \nModifications or combinations.\n\n2.2. Contributor Grant.\nEach Contributor hereby grants You a worldwide, royalty-free, non-exclusive license, \nsubject to third party intellectual property claims:\n\n(a) under intellectual property rights (other than patent or trademark) to use, \nreproduce, modify, display, perform, sublicense and distribute the \nModifications created by such Contributor (or portions thereof) either on an \nunmodified basis, with other Modifications, as Covered Code or as part of a \nLarger Work; and\n(b) under patents now or hereafter owned or controlled by Contributor, to to \nmake, have made, use and sell (\"offer to sell and import\") the Contributor \nVersion (or portions thereof), but solely to the extent that any such patent is \nreasonably necessary to enable You to Utilize the Contributor Version (or \nportions thereof), and not to any greater extent that may be necessary to \nUtilize further Modifications or combinations. \n\n3. Distribution Obligations. \n3.1. Application of License.\nThe Modifications which You create or to which You contribute are governed by the \nterms of this License, including without limitation Section 2.2. The Source Code \nversion of Covered Code may be distributed only under the terms of this License or a \nfuture version of this License released under Section 6.1, and You must include a \ncopy of this License with every copy of the Source Code You distribute. You may not \noffer or impose any terms on any Source Code version that alters or restricts the \napplicable version of this License or the recipients' rights hereunder. However, You \nmay include an additional document offering the additional rights described in \nSection 3.5.\n\n3.2. Availability of Source Code.\nAny Modification which You create or to which You contribute must be made \navailable, prior to any use, except for internal development and practice, in Source \nCode form under the terms of this License either on the same media as an \nExecutable version or via an accepted Electronic Distribution Mechanism to anyone \nto whom you made an Executable version available; and if made available via \nElectronic Distribution Mechanism, must remain available for at least twelve (12) \nmonths after the date it initially became available, or at least six (6) months after a \nsubsequent version of that particular Modification has been made available to such \nrecipients. You shall notify the Initial Developer of the Modification and the location of \nthe Source Code via the contact means provided for in the Developer Specific \nlicense. Initial Developer will be acting as maintainer of the Source Code and may \nprovide an Electronic Distribution mechanism for the Modification to be made \navailable.\n\n3.3. Description of Modifications.\nYou must cause all Covered Code to which you contribute to contain a file \ndocumenting the changes You made to create that Covered Code and the date of \nany change. You must include a prominent statement that the Modification is derived, \ndirectly or indirectly, from Original Code provided by the Initial Developer and \nincluding the name of the Initial Developer in (a) the Source Code, and (b) in any \nnotice in an Executable version or related documentation in which You describe the \norigin or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters\n\n(a) Third Party Claims.\nIf You have knowledge that a party claims an intellectual property right in \nparticular functionality or code (or its utilization under this License), you must \ninclude a text file with the source code distribution titled \"LEGAL\" which \ndescribes the claim and the party making the claim in sufficient detail that a \nrecipient will know whom to contact. If you obtain such knowledge after You \nmake Your Modification available as described in Section 3.2, You shall \npromptly modify the LEGAL file in all copies You make available thereafter \nand shall take other steps (such as notifying appropriate mailing lists or \nnewsgroups) reasonably calculated to inform those who received the \nCovered Code that new knowledge has been obtained.\n(b) Representations. \nContributor represents that, except as disclosed pursuant to Section 3.4(a) \nabove, Contributor believes that Contributor's Modifications are Contributor's \noriginal creation(s) and/or Contributor has sufficient rights to grant the rights \nconveyed by this License.\n\n3.5. Required Notices.\nYou must duplicate the notice in Exhibit A in each file of the Source Code, and this \nLicense in any documentation for the Source Code, where You describe recipients' \nrights relating to Covered Code. If You created one or more Modification(s), You may \nadd your name as a Contributor to the notice described in Exhibit A. If it is not \npossible to put such notice in a particular Source Code file due to its structure, then \nyou must include such notice in a location (such as a relevant directory file) where a \nuser would be likely to look for such a notice. You may choose to offer, and to charge \na fee for, warranty, support, indemnity or liability obligations to one or more recipients \nof Covered Code. However, You may do so only on Your own behalf, and not on \nbehalf of the Initial Developer or any Contributor. You must make it absolutely clear \nthat any such warranty, support, indemnity or liability obligation is offered by You \nalone, and You hereby agree to indemnify the Initial Developer and every Contributor \nfor any liability incurred by the Initial Developer or such Contributor as a result of \nwarranty, support, indemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions.\nYou may distribute Covered Code in Executable form only if the requirements of \nSection 3.1-3.5 have been met for that Covered Code, and if You include a notice \nstating that the Source Code version of the Covered Code is available under the \nterms of this License, including a description of how and where You have fulfilled the \nobligations of Section 3.2. The notice must be conspicuously included in any notice \nin an Executable version, related documentation or collateral in which You describe \nrecipients' rights relating to the Covered Code. You may distribute the Executable \nversion of Covered Code under a license of Your choice, which may contain terms \ndifferent from this License, provided that You are in compliance with the terms of this \nLicense and that the license for the Executable version does not attempt to limit or \nalter the recipient's rights in the Source Code version from the rights set forth in this \nLicense. If You distribute the Executable version under a different license You must \nmake it absolutely clear that any terms which differ from this License are offered by \nYou alone, not by the Initial Developer or any Contributor. You hereby agree to \nindemnify the Initial Developer and every Contributor for any liability incurred by the \nInitial Developer or such Contributor as a result of any such terms You offer. If you \ndistribute executable versions containing Covered Code, you must reproduce the \nnotice in Exhibit B in the documentation and/or other materials provided with the \nproduct.\n\n3.7. Larger Works.\nYou may create a Larger Work by combining Covered Code with other code not \ngoverned by the terms of this License and distribute the Larger Work as a single \nproduct. In such a case, You must make sure the requirements of this License are \nfulfilled for the Covered Code. \n\n4. Inability to Comply Due to Statute or Regulation.\nIf it is impossible for You to comply with any of the terms of this License with respect \nto some or all of the Covered Code due to statute or regulation then You must: (a) \ncomply with the terms of this License to the maximum extent possible; and (b) Cite \nall of the statutes or regulations that prohibit you from complying fully with this \nlicense. (c) describe the limitations and the code they affect. Such description must \nbe included in the LEGAL file described in Section 3.4 and must be included with all \ndistributions of the Source Code. Except to the extent prohibited by statute or \nregulation, such description must be sufficiently detailed for a recipient of ordinary \nskill to be able to understand it. \n\n5. Application of this License.\nThis License applies to code to which the Initial Developer has attached the notice in \nExhibit A, and to related Covered Code.\n\n6. Versions of the License.\n6.1. New Versions.\nLicense Author may publish revised and/or new versions of the License from time to \ntime. Each version will be given a distinguishing version number and shall be \nsubmitted to opensource.org for certification.\n6.2. Effect of New Versions.\nOnce Covered Code has been published under a particular version of the License, \nYou may always continue to use it under the terms of that version. You may also \nchoose to use such Covered Code under the terms of any subsequent version of the \nLicense published by Initial Developer. No one other than Initial Developer has the \nright to modify the terms applicable to Covered Code created under this License.\n\n6.3. Derivative Works.\nIf you create or use a modified version of this License, except in association with the \nrequired Devloper Specific License described in section 6.4, (which you may only do \nin order to apply it to code which is not already Covered Code governed by this \nLicense), you must (a) rename Your license so that the phrases \"Open\", \"OpenPL\", \n\"OPL\" or any confusingly similar phrase do not appear anywhere in your license and \n(b) otherwise make it clear that your version of the license contains terms which differ \nfrom the Open Public License. (Filling in the name of the Initial Developer, Original \nCode or Contributor in the notice described in Exhibit A shall not of themselves be \ndeemed to be modifications of this License.)\n\n6.4. Required Additional Developer Specific License\nThis license is a union of the following two parts that should be found as text files in \nthe same place (directory), in the order of preeminence:\n\n[1] A Developer specific license.\n\n[2] The contents of this file OPL.html, stating the general licensing policy of \nthe software.\n\nIn case of conflicting dispositions in the parts of this license, the terms of the lower-\nnumbered part will always be superseded by the terms of the higher numbered part.\n\n7. DISCLAIMER OF WARRANTY. \nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, \nWITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, \nINCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE \nIS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE \nOR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND \nPERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY \nCOVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE \nINITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF \nANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER \nOF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO \nUSE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER \nTHIS DISCLAIMER. \n\n8. TERMINATION. \n8.1 Termination upon Breach\nThis License and the rights granted hereunder will terminate automatically if You fail \nto comply with terms herein and fail to cure such breach within 30 days of becoming \naware of the breach. All sublicenses to the Covered Code, which are properly \ngranted, shall survive any termination of this License. Provisions that, by their nature, \nmust remain in effect beyond the termination of this License shall survive. \n8.2. Termination Upon Litigation.\nIf You initiate litigation by asserting a patent \ninfringement claim (excluding declatory judgment actions) against Initial Developer or \na Contributor (the Initial Developer or Contributor against whom You file such action \nis referred to as \"Participant\") alleging that:\n\n(a) such Participant's Contributor Version directly or indirectly infringes any \npatent, then any and all rights granted by such Participant to You under \nSections 2.1 and/or 2.2 of this License shall, upon 60 days notice from \nParticipant terminate prospectively, unless if within 60 days after receipt of \nnotice You either: (i) agree in writing to pay Participant a mutually agreeable \nreasonable royalty for Your past and future use of Modifications made by \nsuch Participant, or (ii) withdraw Your litigation claim with respect to the \nContributor Version against such Participant. If within 60 days of notice, a \nreasonable royalty and payment arrangement are not mutually agreed upon \nin writing by the parties or the litigation claim is not withdrawn, the rights \ngranted by Participant to You under Sections 2.1 and/or 2.2 automatically \nterminate at the expiration of the 60 day notice period specified above.\n(b) any software, hardware, or device, other than such Participant's \nContributor Version, directly or indirectly infringes any patent, then any rights \ngranted to You by such Participant under Sections 2.1(b) and 2.2(b) are \nrevoked effective as of the date You first made, used, sold, distributed, or \nhad made, Modifications made by that Participant.\n\n8.3. If You assert a patent infringement claim against Participant alleging that such \nParticipant's Contributor Version directly or indirectly infringes any patent where such \nclaim is resolved (such as by license or settlement) prior to the initiation of patent \ninfringement litigation, then the reasonable value of the licenses granted by such \nParticipant under Sections 2.1 or 2.2 shall be taken into account in determining the \namount or value of any payment or license.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license \nagreements (excluding distributors and resellers) which have been validly granted by \nYou or any distributor hereunder prior to termination shall survive termination.\n9. LIMITATION OF LIABILITY.\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER \nTORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE \nINITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF \nCOVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE \nTO YOU OR ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, \nOR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT \nLIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, \nCOMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER \nCOMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE \nBEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION \nOF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL \nINJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT \nAPPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO \nNOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR \nCONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY \nNOT APPLY TO YOU. \n10. U.S. GOVERNMENT END USERS. \nThe Covered Code is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 \n(Oct. 1995), consisting of \"commercial computer software\" and \"commercial \ncomputer software documentation,\" as such terms are used in 48 C.F.R. 12.212 \n(Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through \n227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with \nonly those rights set forth herein. \n11. MISCELLANEOUS. \nThis section was intentionally left blank. The contents of this section are found in the \ncorresponding addendum described above.\n12. RESPONSIBILITY FOR CLAIMS. \nExcept in cases where another Contributor has failed to comply with Section 3.4, You \nare responsible for damages arising, directly or indirectly, out of Your utilization of \nrights under this License, based on the number of copies of Covered Code you made \navailable, the revenues you received from utilizing such rights, and other relevant \nfactors. You agree to work with affected parties to distribute with Initial Developer \nresponsibility on an equitable basis. \nExhibit A. \nText for this Exhibit A is found in the corresponding addendum, described in section \n6.4 above, text file provided by the Initial Developer. This license is not valid or \ncomplete with out that file. \nExhibit B. \nText for this Exhibit B is found in the corresponding addendum, described in section \n6.4 above, text file provided by the Initial Developer. This license is not valid or \ncomplete with out that file.", + "json": "open-public.json", + "yaml": "open-public.yml", + "html": "open-public.html", + "license": "open-public.LICENSE" + }, + { + "license_key": "openbd-exception-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openbd-exception-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Additional Permission Granted by tagServlet Ltd: \n tagServlet Ltd grants the user the exception to distribute the entire \n Open BlueDragon runtime libraries without the web application (.cfml, .html, \n .js, .css, etc) that Open BlueDragon powers, from itself being licensed\n under the GNU General Public License (v3), as long the entire runtime \n remains intact and includes all license information.\n \n This exception does not overrule the embedded JAR files and where applicable\n the entire Open BlueDragon runtime only, must be available for inspection if \n ever asked, complete with all these copyright and license information.\n \n This applies only to distribution for the purpose of powering end-user CFML\n applications. This exception does not include embedding/linking any part of the \n runtime of Open BlueDragon within any other application other than a Servlet container \n whose sole purpose is to render CFML applications. Linking or usage by any\n Java application (even through CFML), is not permitted.\n \n Any modification, enhancements, linking, to the Open BlueDragon runtime still falls \n under the GNU General Public License (v3).", + "json": "openbd-exception-3.0.json", + "yaml": "openbd-exception-3.0.yml", + "html": "openbd-exception-3.0.html", + "license": "openbd-exception-3.0.LICENSE" + }, + { + "license_key": "opengroup", + "category": "Copyleft Limited", + "spdx_license_key": "OGTSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Open Group Test Suite License\n\nPreamble\n\nThe intent of this document is to state the conditions under which a Package may be copied, such that the Copyright Holder maintains some semblance of artistic control over the development of the package, while giving the users of the package the right to use and distribute the Package in a more-or-less customary fashion, plus the right to make reasonable modifications.\n\nTesting is essential for proper development and maintenance of standards-based products.\n\nFor buyers: adequate conformance testing leads to reduced integration costs and protection of investments in applications, software and people.\n\nFor software developers: conformance testing of platforms and middleware greatly reduces the cost of developing and maintaining multi-platform application software.\n\nFor suppliers: In-depth testing increases customer satisfaction and keeps development and support costs in check. API conformance is highly measurable and suppliers who claim it must be able to substantiate that claim.\n\nAs such, since these are benchmark measures of conformance, we feel the integrity of test tools is of importance. In order to preserve the integrity of the existing conformance modes of this test package and to permit recipients of modified versions of this package to run the original test modes, this license requires that the original test modes be preserved.\n\nIf you find a bug in one of the standards mode test cases, please let us know so we can feed this back into the original, and also raise any specification issues with the appropriate bodies (for example the POSIX committees).\n\nDefinitions:\n\n * \"Package\" refers to the collection of files distributed by the Copyright Holder, and derivatives of that collection of files created through textual modification.\n * \"Standard Version\" refers to such a Package if it has not been modified, or has been modified in accordance with the wishes of the Copyright Holder.\n * \"Copyright Holder\" is whoever is named in the copyright or copyrights for the package. \"You\" is you, if you're thinking about copying or distributing this Package.\n * \"Reasonable copying fee\" is whatever you can justify on the basis of media cost, duplication charges, time of people involved, and so on. (You will not be required to justify it to the Copyright Holder, but only to the computing community at large as a market that must bear the fee.)\n * \"Freely Available\" means that no fee is charged for the item itself, though there may be fees involved in handling the item. It also means that recipients of the item may redistribute it under the same conditions they received it. \n\n\n*\n\n1. You may make and give away verbatim copies of the source form of the Standard Version of this Package without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers.\n\n2. You may apply bug fixes, portability fixes and other modifications derived from the Public Domain or from the Copyright Holder. A Package modified in such a way shall still be considered the Standard Version.\n\n3. You may otherwise modify your copy of this Package in any way, provided that you insert a prominent notice in each changed file stating how and when you changed that file, and provided that you do at least the following:\n\n rename any non-standard executables and testcases so the names do not conflict with standard executables and testcases, which must also be provided, and provide a separate manual page for each non-standard executable and testcase that clearly documents how it differs from the Standard Version.\n\n4. You may distribute the programs of this Package in object code or executable form, provided that you do at least the following:\n\n accompany any non-standard executables and testcases with their corresponding Standard Version executables and testcases, giving the non-standard executables and testcases non-standard names, and clearly documenting the differences in manual pages (or equivalent), together with instructions on where to get the Standard Version.\n\n5. You may charge a reasonable copying fee for any distribution of this Package. You may charge any fee you choose for support of this Package. You may not charge a fee for this Package itself. However, you may distribute this Package in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution provided that you do not advertise this Package as a product of your own.\n\n6. The scripts and library files supplied as input to or produced as output from the programs of this Package do not automatically fall under the copyright of this Package, but belong to whomever generated them, and may be sold commercially, and may be aggregated with this Package.\n\n7.Subroutines supplied by you and linked into this Package shall not be considered part of this Package.\n\n8. The name of the Copyright Holder may not be used to endorse or promote products derived from this software without specific prior written permission.\n\n9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nThe End", + "json": "opengroup.json", + "yaml": "opengroup.yml", + "html": "opengroup.html", + "license": "opengroup.LICENSE" + }, + { + "license_key": "openi-pl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openi-pl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The OpenI Public License Version 1.0 (\"OPL\") consists of the Mozilla Public \nLicense Version 1.1, modified to be specific to OpenI, with the Additional \nTerms in Exhibit B. The original Mozilla Public License 1.1 can be found at: \nhttp://www.mozilla.org/MPL/MPL-1.1.html \n\nOPENI PUBLIC LICENSE \nVersion 1.0\n\n--------------------------------------------------------------------------------\n\n1. Definitions. \n\n1.0.1. \"Commercial Use\" means distribution or otherwise making the Covered \nCode available to a third party. \n1.1. ''Contributor'' means each entity that creates or contributes to the \ncreation of Modifications. \n\n1.2. ''Contributor Version'' means the combination of the Original Code, prior \nModifications used by a Contributor, and the Modifications made by that \nparticular Contributor. \n\n1.3. ''Covered Code'' means the Original Code or Modifications or the \ncombination of the Original Code and Modifications, in each case including \nportions thereof. \n\n1.4. ''Electronic Distribution Mechanism'' means a mechanism generally accepted \nin the software development community for the electronic transfer of data. \n\n1.5. ''Executable'' means Covered Code in any form other than Source Code. \n\n1.6. ''Initial Developer'' means the individual or entity identified as the \nInitial Developer in the Source Code notice required by Exhibit A. \n\n1.7. ''Larger Work'' means a work which combines Covered Code or portions \nthereof with code not governed by the terms of this License. \n\n1.8. ''License'' means this document. \n\n1.8.1. \"Licensable\" means having the right to grant, to the maximum extent \npossible, whether at the time of the initial grant or subsequently acquired, \nany and all of the rights conveyed herein. \n\n1.9. ''Modifications'' means any addition to or deletion from the substance \nor structure of either the Original Code or any previous Modifications. When \nCovered Code is released as a series of files, a Modification is: \n\nA. Any addition to or deletion from the contents of a file containing Original \nCode or previous Modifications. \nB. Any new file that contains any part of the Original Code or previous \nModifications. \n \n\n1.10. ''Original Code'' means Source Code of computer software code which is \ndescribed in the Source Code notice required by Exhibit A as Original Code, \nand which, at the time of its release under this License is not already Covered \nCode governed by this License. \n1.10.1. \"Patent Claims\" means any patent claim(s), now owned or hereafter \nacquired, including without limitation, method, process, and apparatus claims, \nin any patent Licensable by grantor. \n\n1.11. ''Source Code'' means the preferred form of the Covered Code for making \nmodifications to it, including all modules it contains, plus any associated \ninterface definition files, scripts used to control compilation and installation \nof an Executable, or source code differential comparisons against either the \nOriginal Code or another well known, available Covered Code of the Contributor's \nchoice. The Source Code can be in a compressed or archival form, provided the \nappropriate decompression or de-archiving software is widely available for no \ncharge. \n\n1.12. \"You'' (or \"Your\") means an individual or a legal entity exercising \nrights under, and complying with all of the terms of, this License or a future \nversion of this License issued under Section 6.1. For legal entities, \"You'' \nincludes any entity which controls, is controlled by, or is under common \ncontrol with You. For purposes of this definition, \"control'' means (a) the \npower, direct or indirect, to cause the direction or management of such entity, \nwhether by contract or otherwise, or (b) ownership of more than fifty percent \n(50%) of the outstanding shares or beneficial ownership of such entity.\n\n2. Source Code License. \n2.1. The Initial Developer Grant. \nThe Initial Developer hereby grants You a world-wide, royalty-free, \nnon-exclusive license, subject to third party intellectual property claims: \n(a) under intellectual property rights (other than patent or trademark) \nLicensable by Initial Developer to use, reproduce, modify, display, perform, \nsublicense and distribute the Original Code (or portions thereof) with or \nwithout Modifications, and/or as part of a Larger Work; and \n(b) under Patents Claims infringed by the making, using or selling of Original \nCode, to make, have made, use, practice, sell, and offer for sale, and/or \notherwise dispose of the Original Code (or portions thereof). \n\n \n(c) the licenses granted in this Section 2.1(a) and (b) are effective on \nthe date Initial Developer first distributes Original Code under the terms \nof this License. \n(d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for \ncode that You delete from the Original Code; 2) separate from the Original Code; \nor 3) for infringements caused by: i) the modification of the Original Code or \nii) the combination of the Original Code with other software or devices. \n \n\n2.2. Contributor Grant. \nSubject to third party intellectual property claims, each Contributor hereby \ngrants You a world-wide, royalty-free, non-exclusive license \n \n(a) under intellectual property rights (other than patent or trademark) \nLicensable by Contributor, to use, reproduce, modify, display, perform, \nsublicense and distribute the Modifications created by such Contributor \n(or portions thereof) either on an unmodified basis, with other Modifications, \nas Covered Code and/or as part of a Larger Work; and \n(b) under Patent Claims infringed by the making, using, or selling of \nModifications made by that Contributor either alone and/or in combination with \nits Contributor Version (or portions of such combination), to make, use, sell, \noffer for sale, have made, and/or otherwise dispose of: 1) Modifications made \nby that Contributor (or portions thereof); and 2) the combination of \nModifications made by that Contributor with its Contributor Version (or portions \nof such combination). \n\n(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date \nContributor first makes Commercial Use of the Covered Code. \n\n(d) Notwithstanding Section 2.2(b) above, no patent license is granted: \n1) for any code that Contributor has deleted from the Contributor Version; \n2) separate from the Contributor Version; 3) for infringements caused \nby: i) third party modifications of Contributor Version or ii) the \ncombination of Modifications made by that Contributor with other software \n(except as part of the Contributor Version) or other devices; or 4) under \nPatent Claims infringed by Covered Code in the absence of Modifications \nmade by that Contributor.\n\n\n3. Distribution Obligations. \n\n3.1. Application of License. \nThe Modifications which You create or to which You contribute are \ngoverned by the terms of this License, including without limitation \nSection 2.2. The Source Code version of Covered Code may be distributed \nonly under the terms of this License or a future version of this License \nreleased under Section 6.1, and You must include a copy of this License\nwith every copy of the Source Code You distribute. You may not offer or \nimpose any terms on any Source Code version that alters or restricts the \napplicable version of this License or the recipients' rights hereunder. \nHowever, You may include an additional document offering the additional \nrights described in Section 3.5. \n3.2. Availability of Source Code. \nAny Modification which You create or to which You contribute must be made \navailable in Source Code form under the terms of this License either on \nthe same media as an Executable version or via an accepted Electronic \nDistribution Mechanism to anyone to whom you made an Executable version \navailable; and if made available via Electronic Distribution Mechanism, \nmust remain available for at least twelve (12) months after the date it \ninitially became available, or at least six (6) months after a subsequent \nversion of that particular Modification has been made available to such \nrecipients. You are responsible for ensuring that the Source Code version \nremains available even if the Electronic Distribution Mechanism is \nmaintained by a third party. \n\n3.3. Description of Modifications. \nYou must cause all Covered Code to which You contribute to contain a file \ndocumenting the changes You made to create that Covered Code and the date of \nany change. You must include a prominent statement that the Modification is \nderived, directly or indirectly, from Original Code provided by the Initial \nDeveloper and including the name of the Initial Developer in (a) the Source \nCode, and (b) in any notice in an Executable version or related documentation \nin which You describe the origin or ownership of the Covered Code. \n\n3.4. Intellectual Property Matters \n\n(a) Third Party Claims. \nIf Contributor has knowledge that a license under a third party's intellectual \nproperty rights is required to exercise the rights granted by such Contributor \nunder Sections 2.1 or 2.2, Contributor must include a text file with the Source \nCode distribution titled \"LEGAL'' which describes the claim and the party making \nthe claim in sufficient detail that a recipient will know whom to contact. If \nContributor obtains such knowledge after the Modification is made available as \ndescribed in Section 3.2, Contributor shall promptly modify the LEGAL file in \nall copies Contributor makes available thereafter and shall take other steps \n(such as notifying appropriate mailing lists or newsgroups) reasonably calculated \nto inform those who received the Covered Code that new knowledge has been obtained. \n(b) Contributor APIs. \nIf Contributor's Modifications include an application programming interface and \nContributor has knowledge of patent licenses which are reasonably necessary to \nimplement that API, Contributor must also include this information in the LEGAL \nfile. \n \n\n (c) Representations. \nContributor represents that, except as disclosed pursuant to Section 3.4(a) \nabove, Contributor believes that Contributor's Modifications are Contributor's \noriginal creation(s) and/or Contributor has sufficient rights to grant the \nrights conveyed by this License.\n\n3.5. Required Notices. \nYou must duplicate the notice in Exhibit A in each file of the Source Code. \nIf it is not possible to put such notice in a particular Source Code file \ndue to its structure, then You must include such notice in a location (such \nas a relevant directory) where a user would be likely to look for such a \nnotice. If You created one or more Modification(s) You may add your name as \na Contributor to the notice described in Exhibit A. You must also duplicate \nthis License in any documentation for the Source Code where You describe \nrecipients' rights or ownership rights relating to Covered Code. You may \nchoose to offer, and to charge a fee for, warranty, support, indemnity or \nliability obligations to one or more recipients of Covered Code. However, You \nmay do so only on Your own behalf, and not on behalf of the Initial Developer \nor any Contributor. You must make it absolutely clear than any such warranty, \nsupport, indemnity or liability obligation is offered by You alone, and You \nhereby agree to indemnify the Initial Developer and every Contributor for any \nliability incurred by the Initial Developer or such Contributor as a result of \nwarranty, support, indemnity or liability terms You offer. \n\n3.6. Distribution of Executable Versions. \nYou may distribute Covered Code in Executable form only if the requirements \nof Section 3.1-3.5 have been met for that Covered Code, and if You include \na notice stating that the Source Code version of the Covered Code is available \nunder the terms of this License, including a description of how and where \nYou have fulfilled the obligations of Section 3.2. The notice must be \nconspicuously included in any notice in an Executable version, related \ndocumentation or collateral in which You describe recipients' rights relating \nto the Covered Code. You may distribute the Executable version of Covered \nCode or ownership rights under a license of Your choice, which may contain \nterms different from this License, provided that You are in compliance with \nthe terms of this License and that the license for the Executable version \ndoes not attempt to limit or alter the recipient's rights in the Source Code \nversion from the rights set forth in this License. If You distribute the \nExecutable version under a different license You must make it absolutely \nclear that any terms which differ from this License are offered by You alone, \nnot by the Initial Developer or any Contributor. You hereby agree to indemnify \nthe Initial Developer and every Contributor for any liability incurred by the \nInitial Developer or such Contributor as a result of any such terms You offer. \n\n3.7. Larger Works. \nYou may create a Larger Work by combining Covered Code with other code not \ngoverned by the terms of this License and distribute the Larger Work as a \nsingle product. In such a case, You must make sure the requirements of this \nLicense are fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation. \nIf it is impossible for You to comply with any of the terms of this License\nwith respect to some or all of the Covered Code due to statute, judicial order, \nor regulation then You must: (a) comply with the terms of this License to the \nmaximum extent possible; and (b) describe the limitations and the code they \naffect. Such description must be included in the LEGAL file described in \nSection 3.4 and must be included with all distributions of the Source Code. \nExcept to the extent prohibited by statute or regulation, such description \nmust be sufficiently detailed for a recipient of ordinary skill to be able \nto understand it.\n5. Application of this License. \nThis License applies to code to which the Initial Developer has attached the \nnotice in Exhibit A and to related Covered Code.\n6. Versions of the License. \n6.1. New Versions. \nLoyalty Matrix Inc. (''Loyalty Matrix'') may publish revised and/or new \nversions of the License from time to time. Each version will be given a \ndistinguishing version number. \n6.2. Effect of New Versions. \nOnce Covered Code has been published under a particular version of the License, \nYou may always continue to use it under the terms of that version. You may also \nchoose to use such Covered Code under the terms of any subsequent version of the \nLicense published by Loyalty Matrix. No one other than Loyalty Matrix has the \nright to modify the terms applicable to Covered Code created under this License. \n\n6.3. Derivative Works. \nIf You create or use a modified version of this License (which you may only do \nin order to apply it to code which is not already Covered Code governed by this \nLicense), You must (a) rename Your license so that the phrases ''OpenI'', \n''OPL'', ''Loyalty Matrix'', or any confusingly similar phrase do not appear in \nyour license (except to note that your license differs from this License) and \n(b) otherwise make it clear that Your version of the license contains terms \nwhich differ from the OpenI Public License. (Filling in the name of the Initial \nDeveloper, Original Code or Contributor in the notice described in Exhibit A \nshall not of themselves be deemed to be modifications of this License.)\n\n7. DISCLAIMER OF WARRANTY. \nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS'' BASIS, WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES \nTHAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE \nOR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED \nCODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT \nTHE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY \nSERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL \nPART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT \nUNDER THIS DISCLAIMER.\n\n8. TERMINATION. \n8.1. This License and the rights granted hereunder will terminate automatically if \nYou fail to comply with terms herein and fail to cure such breach within 30 days of \nbecoming aware of the breach. All sublicenses to the Covered Code which are properly \ngranted shall survive any termination of this License. Provisions which, by their \nnature, must remain in effect beyond the termination of this License shall survive. \n\n8.2. If You initiate litigation by asserting a patent infringement claim (excluding \ndeclatory judgment actions) against Initial Developer or a Contributor (the Initial \nDeveloper or Contributor against whom You file such action is referred to as \n\"Participant\") alleging that: \n\n(a) such Participant's Contributor Version directly or indirectly infringes any patent, \nthen any and all rights granted by such Participant to You under Sections 2.1 and/or \n2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, \nunless if within 60 days after receipt of notice You either: (i) agree in writing to \npay Participant a mutually agreeable reasonable royalty for Your past and future use \nof Modifications made by such Participant, or (ii) withdraw Your litigation claim \nwith respect to the Contributor Version against such Participant. If within 60 days \nof notice, a reasonable royalty and payment arrangement are not mutually agreed upon \nin writing by the parties or the litigation claim is not withdrawn, the rights granted \nby Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the \nexpiration of the 60 day notice period specified above. \n\n(b) any software, hardware, or device, other than such Participant's Contributor Version, \ndirectly or indirectly infringes any patent, then any rights granted to You by such \nParticipant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You \nfirst made, used, sold, distributed, or had made, Modifications made by that Participant. \n\n8.3. If You assert a patent infringement claim against Participant alleging that such \nParticipant's Contributor Version directly or indirectly infringes any patent where such \nclaim is resolved (such as by license or settlement) prior to the initiation of patent \ninfringement litigation, then the reasonable value of the licenses granted by such \nParticipant under Sections 2.1 or 2.2 shall be taken into account in determining the \namount or value of any payment or license. \n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license \nagreements (excluding distributors and resellers) which have been validly granted by You \nor any distributor hereunder prior to termination shall survive termination.\n\n9. LIMITATION OF LIABILITY. \nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), \nCONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY \nDISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY \nPERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER \nINCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER \nFAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH \nPARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF \nLIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH \nPARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME \nJURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL \nDAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS. \nThe Covered Code is a ''commercial item,'' as that term is defined in 48 C.F.R. 2.101 \n(Oct. 1995), consisting of ''commercial computer software'' and ''commercial computer \nsoftware documentation,'' as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). \nConsistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), \nall U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n\n11. MISCELLANEOUS. \nThis License represents the complete agreement concerning subject matter hereof. If \nany provision of this License is held to be unenforceable, such provision shall be \nreformed only to the extent necessary to make it enforceable. This License shall be \ngoverned by California law provisions (except to the extent applicable law, if any, \nprovides otherwise), excluding its conflict-of-law provisions. With respect to disputes \nin which at least one party is a citizen of, or an entity chartered or registered to do \nbusiness in the United States of America, any litigation relating to this License shall \nbe subject to the jurisdiction of the Federal Courts of the Northern District of California, \nwith venue lying in Santa Clara County, California, with the losing party responsible for \ncosts, including without limitation, court costs and reasonable attorneys' fees and expenses. \nThe application of the United Nations Convention on Contracts for the International Sale of \nGoods is expressly excluded. Any law or regulation which provides that the language of a \ncontract shall be construed against the drafter shall not apply to this License.\n\n12. RESPONSIBILITY FOR CLAIMS. \nAs between Initial Developer and the Contributors, each party is responsible for claims \nand damages arising, directly or indirectly, out of its utilization of rights under this \nLicense and You agree to work with Initial Developer and Contributors to distribute such \nresponsibility on an equitable basis. Nothing herein is intended or shall be deemed to \nconstitute any admission of liability.\n\n13. MULTIPLE-LICENSED CODE. \nInitial Developer may designate portions of the Covered Code as \u201cMultiple-Licensed\u201d. \n\u201cMultiple-Licensed\u201d means that the Initial Developer permits you to utilize portions of \nthe Covered Code under Your choice of the SPL or the alternative licenses, if any, specified \nby the Initial Developer in the file described in Exhibit A.\n\n\nOpenI Public License 1.0 - Exhibit A\nThe contents of this file are subject to the OpenI Public License Version 1.0\n(\"License\"); You may not use this file except in compliance with the \nLicense. You may obtain a copy of the License at http://www.openi.org/docs/opl-1.0.txt\nSoftware distributed under the License is distributed on an \"AS IS\" basis,\nWITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for\nthe specific language governing rights and limitations under the License.\n\nThe Original Code is: OpenI Open Source\n\nThe Initial Developer of the Original Code is Loyalty Matrix, Inc.\nPortions created by Loyalty Matrix are Copyright (C) 2005 Loyalty Matrix, Inc.;\nAll Rights Reserved.\nContributor(s): ______________________________________.\n\n\n[NOTE: The text of this Exhibit A may differ slightly from the text of the notices \nin the Source Code files of the Original Code. You should use the text of this \nExhibit A rather than the text found in the Original Code Source Code for Your \nModifications.]\n\n\nOpenI Public License 1.0 - Exhibit B\n\nAdditional Terms applicable to the OpenI Public License.\n\nI. Effect.\nThese additional terms described in this OpenI Public License - Additional Terms \nshall apply to the Covered Code under this License.\n\nII. OpenI and logo. \n\nThis License does not grant any rights to use the trademarks \"OpenI\", \n\"Open Intelligence\", and the \"OpenI\" logos even if such marks are included in the \nOriginal Code or Modifications.", + "json": "openi-pl-1.0.json", + "yaml": "openi-pl-1.0.yml", + "html": "openi-pl-1.0.html", + "license": "openi-pl-1.0.LICENSE" + }, + { + "license_key": "openjdk-assembly-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "OpenJDK-assembly-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "OpenJDK Assembly Exception\n\nThe OpenJDK source code made available by Oracle America, Inc. (Oracle) at\nopenjdk.java.net (\"OpenJDK Code\") is distributed under the terms of the GNU\nGeneral Public License version 2\nonly (\"GPL2\"), with the following clarification and special exception.\n\n Linking this OpenJDK Code statically or dynamically with other code\n is making a combined work based on this library. Thus, the terms\n and conditions of GPL2 cover the whole combination.\n\n As a special exception, Oracle gives you permission to link this\n OpenJDK Code with certain code licensed by Oracle as indicated at\n http://openjdk.java.net/legal/exception-modules-2007-05-08.html\n (\"Designated Exception Modules\") to produce an executable,\n regardless of the license terms of the Designated Exception Modules,\n and to copy and distribute the resulting executable under GPL2,\n provided that the Designated Exception Modules continue to be\n governed by the licenses under which they were offered by Oracle.\n\nAs such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code\nto build an executable that includes those portions of necessary code that\nOracle could not provide under GPL2 (or that Oracle has provided under GPL2\nwith the Classpath exception). If you modify or add to the OpenJDK code,\nthat new GPL2 code may still be combined with Designated Exception Modules\nif the new code is made subject to this exception by its copyright holder.", + "json": "openjdk-assembly-exception-1.0.json", + "yaml": "openjdk-assembly-exception-1.0.yml", + "html": "openjdk-assembly-exception-1.0.html", + "license": "openjdk-assembly-exception-1.0.LICENSE" + }, + { + "license_key": "openjdk-classpath-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openjdk-classpath-exception2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openjdk-classpath-exception-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "text": "OPENJDK ASSEMBLY EXCEPTION\n\nThe OpenJDK source code made available openjdk.dev.java.net (\"OpenJDK Code\") is distributed under\nthe terms of the GNU General Public License version 2\nonly (\"GPL2\"), with the following clarification and special exception.\n\n Linking this OpenJDK Code statically or dynamically with other code\n is making a combined work based on this library. Thus, the terms\n and conditions of GPL2 cover the whole combination.\n\n As a special exception, Sun gives you permission to link this\n OpenJDK Code with certain code licensed by Sun as indicated at\n http://openjdk.java.net/legal/exception-modules-2007-05-08.html\n (\"Designated Exception Modules\") to produce an executable,\n regardless of the license terms of the Designated Exception Modules,\n and to copy and distribute the resulting executable under GPL2,\n provided that the Designated Exception Modules continue to be\n governed by the licenses under which they were offered by Sun.\n\nAs such, it allows licensees and sublicensees of Sun's GPL2 OpenJDK Code\nto build an executable that includes those portions of necessary code that\nSun could not provide under GPL2 (or that Sun has provided under GPL2\nwith the Classpath exception). If you modify or add to the OpenJDK code,\nthat new GPL2 code may still be combined with Designated Exception Modules\nif the new code is made subject to this exception by its copyright holder.", + "json": "openjdk-classpath-exception-2.0.json", + "yaml": "openjdk-classpath-exception-2.0.yml", + "html": "openjdk-classpath-exception-2.0.html", + "license": "openjdk-classpath-exception-2.0.LICENSE" + }, + { + "license_key": "openjdk-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openjdk-exception", + "other_spdx_license_keys": [ + "Assembly-exception" + ], + "is_exception": true, + "is_deprecated": false, + "text": "\"CLASSPATH\" EXCEPTION TO THE GPL\n\nCertain source files distributed by Oracle America and/or its affiliates are\nsubject to the following clarification and special exception to the GPL, but\nonly where Oracle has expressly included in the particular source file's header\nthe words \"Oracle designates this particular file as subject to the \"Classpath\"\nexception as provided by Oracle in the LICENSE file that accompanied this code.\"\n\n Linking this library statically or dynamically with other modules is making\n a combined work based on this library. Thus, the terms and conditions of\n the GNU General Public License cover the whole combination.\n\n As a special exception, the copyright holders of this library give you\n permission to link this library with independent modules to produce an\n executable, regardless of the license terms of these independent modules,\n and to copy and distribute the resulting executable under terms of your\n choice, provided that you also meet, for each linked independent module,\n the terms and conditions of the license of that module. An independent\n module is a module which is not derived from or based on this library. If\n you modify this library, you may extend this exception to your version of\n the library, but you are not obligated to do so. If you do not wish to do\n so, delete this exception statement from your version.\n\nOpenJDK Assembly Exception\n\nThe OpenJDK source code made available by Sun at openjdk.java.net and\nopenjdk.dev.java.net (\"OpenJDK Code\") is distributed under the terms of\nthe GNU General Public License \nversion 2 only (\"GPL2\"), with the following clarification and special\nexception.\n\nLinking this OpenJDK Code statically or dynamically with other code is\nmaking a combined work based on this library. Thus, the terms and\nconditions of GPL2 cover the whole combination.\n\nAs a special exception, Sun gives you permission to link this OpenJDK\nCode with certain code licensed by Sun as indicated at\nhttp://openjdk.java.net/legal/exception-modules-2007-05-08.html\n(\"Designated Exception Modules\") to produce an executable, regardless of\nthe license terms of the Designated Exception Modules, and to copy and\ndistribute the resulting executable under GPL2, provided that the\nDesignated Exception Modules continue to be governed by the licenses\nunder which they were offered by Sun.\n\nAs such, it allows licensees and sublicensees of Sun's GPL2 OpenJDK Code\nto build an executable that includes those portions of necessary code\nthat Sun could not provide under GPL2 (or that Sun has provided under\nGPL2 with the Classpath exception). If you modify or add to the OpenJDK\ncode, that new GPL2 code may still be combined with Designated Exception\nModules if the new code is made subject to this exception by its\ncopyright holder.\n\n\nOpenJDK Designated Exception Modules\n\n8 May 2007\n\nFor purposes of those files in the OpenJDK distribution that are subject\nto the Assembly Exception, the following shall be deemed Designated\nException Modules:\n\nThose files in the OpenJDK distribution available at openjdk.java.net,\nopenjdk.dev.java.net, and download.java.net to which Sun has applied the\nClasspath Exception,\n\nAny of your derivative works of #1 above, to the extent you license them\nunder the GPLv2 with the Classpath Exception as defined in the OpenJDK\ndistribution available at openjdk.java.net, openjdk.dev.java.net, or\ndownload.java.net,\n\nAny files in the OpenJDK distribution that are made available at\nopenjdk.java.net, openjdk.dev.java.net, or download.java.net under a\nbinary code license, and\n\nAny files in the OpenJDK distribution that are made available at\nopenjdk.java.net, openjdk.dev.java.net, or download.java.net under an\nopen source license other than GPL, and your derivatives thereof that\nare in compliance with the applicable open source license.", + "json": "openjdk-exception.json", + "yaml": "openjdk-exception.yml", + "html": "openjdk-exception.html", + "license": "openjdk-exception.LICENSE" + }, + { + "license_key": "openldap-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "OLDAP-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The OpenLDAP Public License \n\nVersion 1.1, 25 August 1998 \nCopyright 1998, The OpenLDAP Foundation. \nAll Rights Reserved. \n\nNote: \nThis license is derived from the \"Artistic License\" as distributed \nwith the Perl Programming Language. Its terms are different from \nthose of the \"Artistic License.\" \n\nPREAMBLE \n\nThe intent of this document is to state the conditions under which a \nPackage may be copied, such that the Copyright Holder maintains some \nsemblance of artistic control over the development of the package, \nwhile giving the users of the package the right to use and distribute \nthe Package in a more-or-less customary fashion, plus the right to make \nreasonable modifications. \n\nDefinitions: \n\n\"Package\" refers to the collection of files distributed by the \nCopyright Holder, and derivatives of that collection of files \ncreated through textual modification. \n\n\"Standard Version\" refers to such a Package if it has not been \nmodified, or has been modified in accordance with the wishes \nof the Copyright Holder. \n\n\"Copyright Holder\" is whoever is named in the copyright or \ncopyrights for the package. \n\n\"You\" is you, if you're thinking about copying or distributing \nthis Package. \n\n\"Reasonable copying fee\" is whatever you can justify on the \nbasis of media cost, duplication charges, time of people involved, \nand so on. (You will not be required to justify it to the \nCopyright Holder, but only to the computing community at large \nas a market that must bear the fee.) \n\n\"Freely Available\" means that no fee is charged for the item \nitself, though there may be fees involved in handling the item. \nIt also means that recipients of the item may redistribute it \nunder the same conditions they received it. \n\n1. You may make and give away verbatim copies of the source form of the \nStandard Version of this Package without restriction, provided that you \nduplicate all of the original copyright notices and associated disclaimers. \n\n2. You may apply bug fixes, portability fixes and other modifications \nderived from the Public Domain or from the Copyright Holder. A Package \nmodified in such a way shall still be considered the Standard Version. \n\n3. You may otherwise modify your copy of this Package in any way, provided \nthat you insert a prominent notice in each changed file stating how and \nwhen you changed that file, and provided that you do at least ONE of the \nfollowing: \n\na) place your modifications in the Public Domain or otherwise make them \nFreely Available, such as by posting said modifications to Usenet or \nan equivalent medium, or placing the modifications on a major archive \nsite such as uunet.uu.net, or by allowing the Copyright Holder to include \nyour modifications in the Standard Version of the Package. \n\nb) use the modified Package only within your corporation or organization. \n\nc) rename any non-standard executables so the names do not conflict \nwith standard executables, which must also be provided, and provide \na separate manual page for each non-standard executable that clearly \ndocuments how it differs from the Standard Version. \n\nd) make other distribution arrangements with the Copyright Holder. \n\n4. You may distribute the programs of this Package in object code or \nexecutable form, provided that you do at least ONE of the following: \n\na) distribute a Standard Version of the executables and library files, \ntogether with instructions (in the manual page or equivalent) on where \nto get the Standard Version. \n\nb) accompany the distribution with the machine-readable source of \nthe Package with your modifications. \n\nc) accompany any non-standard executables with their corresponding \nStandard Version executables, giving the non-standard executables \nnon-standard names, and clearly documenting the differences in manual \npages (or equivalent), together with instructions on where to get \nthe Standard Version. \n\nd) make other distribution arrangements with the Copyright Holder. \n\n5. You may charge a reasonable copying fee for any distribution of this \nPackage. You may charge any fee you choose for support of this Package. \nYou may not charge a fee for this Package itself. However, \nyou may distribute this Package in aggregate with other (possibly \ncommercial) programs as part of a larger (possibly commercial) software \ndistribution provided that you do not advertise this Package as a \nproduct of your own. \n\n6. The scripts and library files supplied as input to or produced as \noutput from the programs of this Package do not automatically fall \nunder the copyright of this Package, but belong to whomever generated \nthem, and may be sold commercially, and may be aggregated with this \nPackage. \n\n7. C subroutines supplied by you and linked into this Package in order \nto emulate subroutines and variables of the language defined by this \nPackage shall not be considered part of this Package, but are the \nequivalent of input as in Paragraph 6, provided these subroutines do \nnot change the language in any way that would cause it to fail the \nregression tests for the language. \n\n8. The name of the Copyright Holder may not be used to endorse or promote \nproducts derived from this software without specific prior written permission. \n\n9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR \nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED \nWARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \n\nThe End", + "json": "openldap-1.1.json", + "yaml": "openldap-1.1.yml", + "html": "openldap-1.1.html", + "license": "openldap-1.1.LICENSE" + }, + { + "license_key": "openldap-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "OLDAP-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The OpenLDAP Public License \n\nVersion 1.2, 1 September 1998 \nCopyright 1998, The OpenLDAP Foundation. \nAll Rights Reserved. \n\nNote: \nThis license is derived from the \"Artistic License\" as distributed \nwith the Perl Programming Language. As differences may exist, \nthe complete license should be read. \n\nPREAMBLE \n\nThe intent of this document is to state the conditions under which \na Package may be copied, such that the Copyright Holder maintains \nsome semblance of artistic control over the development of the \npackage, while giving the users of the package the right to use \nand distribute the Package in a more-or-less customary fashion, \nplus the right to make reasonable modifications. \n\nDefinitions: \n\n\"Package\" refers to the collection of files distributed by the \nCopyright Holder, and derivatives of that collection of files \ncreated through textual modification. \n\n\"Standard Version\" refers to such a Package if it has not been \nmodified, or has been modified in accordance with the wishes \nof the Copyright Holder. \n\n\"Copyright Holder\" is whoever is named in the copyright or \ncopyrights for the package. \n\n\"You\" is you, if you're thinking about copying or distributing \nthis Package. \n\n\"Reasonable copying fee\" is whatever you can justify on the \nbasis of media cost, duplication charges, time of people \ninvolved, and so on. (You will not be required to justify it \nto the Copyright Holder, but only to the computing community \nat large as a market that must bear the fee.) \n\n\"Freely Available\" means that no fee is charged for the item \nitself, though there may be fees involved in handling the item. \nIt also means that recipients of the item may redistribute it \nunder the same conditions they received it. \n\n1. You may make and give away verbatim copies of the source form \nof the Standard Version of this Package without restriction, provided \nthat you duplicate all of the original copyright notices and \nassociated disclaimers. \n\n2. You may apply bug fixes, portability fixes and other modifications \nderived from the Public Domain or from the Copyright Holder. A \nPackage modified in such a way shall still be considered the Standard \nVersion. \n\n3. You may otherwise modify your copy of this Package in any way, \nprovided that you insert a prominent notice in each changed file \nstating how and when you changed that file, and provided that you \ndo at least ONE of the following: \n\na) place your modifications in the Public Domain or otherwise \nmake them Freely Available, such as by posting said modifications \nto Usenet or an equivalent medium, or placing the modifications \non a major archive site such as uunet.uu.net, or by allowing \nthe Copyright Holder to include your modifications in the \nStandard Version of the Package. \n\nb) use the modified Package only within your corporation or \norganization. \n\nc) rename any non-standard executables so the names do not \nconflict with standard executables, which must also be provided, \nand provide a separate manual page for each non-standard \nexecutable that clearly documents how it differs from the \nStandard Version. \n\nd) make other distribution arrangements with the Copyright \nHolder. \n\n4. You may distribute the programs of this Package in object code \nor executable form, provided that you do at least ONE of the \nfollowing: \n\na) distribute a Standard Version of the executables and library \nfiles, together with instructions (in the manual page or \nequivalent) on where to get the Standard Version. \n\nb) accompany the distribution with the machine-readable source \nof the Package with your modifications. \n\nc) accompany any non-standard executables with their corresponding \nStandard Version executables, giving the non-standard executables \nnon-standard names, and clearly documenting the differences in \nmanual pages (or equivalent), together with instructions on \nwhere to get the Standard Version. \n\nd) make other distribution arrangements with the Copyright \nHolder. \n\n5. You may charge a reasonable copying fee for any distribution of \nthis Package. You may charge any fee you choose for support of \nthis Package. You may not charge a fee for this Package itself. \nHowever, you may distribute this Package in aggregate with other \n(possibly commercial) programs as part of a larger (possibly \ncommercial) software distribution provided that you do not advertise \nthis Package as a product of your own. \n\n6. The scripts and library files supplied as input to or produced \nas output from the programs of this Package do not automatically \nfall under the copyright of this Package, but belong to whomever \ngenerated them, and may be sold commercially, and may be aggregated \nwith this Package. \n\n7. C subroutines supplied by you and linked into this Package in \norder to emulate subroutines and variables of the language defined \nby this Package shall not be considered part of this Package, but \nare the equivalent of input as in Paragraph 6, provided these \nsubroutines do not change the language in any way that would cause \nit to fail the regression tests for the language. \n\n8. The name of the Copyright Holder may not be used to endorse or \npromote products derived from this software without specific prior \nwritten permission. \n\n9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR \nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED \nWARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \n\nThe End", + "json": "openldap-1.2.json", + "yaml": "openldap-1.2.yml", + "html": "openldap-1.2.html", + "license": "openldap-1.2.LICENSE" + }, + { + "license_key": "openldap-1.3", + "category": "Copyleft Limited", + "spdx_license_key": "OLDAP-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The OpenLDAP Public License \n\nVersion 1.3, 17 January 1999 \nCopyright 1998-1999, The OpenLDAP Foundation. \nAll Rights Reserved. \n\nNote: \nThis license is derived from the \"Artistic License\" as distributed \nwith the Perl Programming Language. As significant differences \nexist, the complete license should be read. \n\nPREAMBLE \n\nThe intent of this document is to state the conditions under which \na Package may be copied, such that the Copyright Holder maintains \nsome semblance of artistic control over the development of the \npackage, while giving the users of the package the right to use \nand distribute the Package in a more-or-less customary fashion, \nplus the right to make reasonable modifications. \n\nDefinitions: \n\n\"Package\" refers to the collection of files distributed by the \nCopyright Holder, and derivatives of that collection of files \ncreated through textual modification. \n\n\"Standard Version\" refers to such a Package if it has not been \nmodified, or has been modified in accordance with the wishes \nof the Copyright Holder. \n\n\"Copyright Holder\" is whoever is named in the copyright or \ncopyrights for the package. \n\n\"You\" is you, if you're thinking about copying or distributing \nthis Package. \n\n\"Reasonable copying fee\" is whatever you can justify on the \nbasis of media cost, duplication charges, time of people \ninvolved, and so on. (You will not be required to justify it \nto the Copyright Holder, but only to the computing community \nat large as a market that must bear the fee.) \n\n\"Freely Available\" means that no fee is charged for the item \nitself, though there may be fees involved in handling the item. \nIt also means that recipients of the item may redistribute it \nunder the same conditions they received it. \n\n1. You may make and give away verbatim copies of the source form \nof the Standard Version of this Package without restriction, provided \nthat you duplicate all of the original copyright notices and \nassociated disclaimers. \n\n2. You may apply bug fixes, portability fixes and other modifications \nderived from the Public Domain or from the Copyright Holder. A \nPackage modified in such a way shall still be considered the Standard \nVersion. \n\n3. You may otherwise modify your copy of this Package in any way, \nprovided that you insert a prominent notice in each changed file \nstating how and when you changed that file, and provided that you \ndo at least ONE of the following: \n\na) place your modifications in the Public Domain or otherwise \nmake them Freely Available, such as by posting said modifications \nto Usenet or an equivalent medium, or placing the modifications \non a major archive site such as uunet.uu.net, or by allowing \nthe Copyright Holder to include your modifications in the \nStandard Version of the Package. \n\nb) use the modified Package only within your corporation or \norganization. \n\nc) rename any non-standard executables so the names do not \nconflict with standard executables, which must also be provided, \nand provide a separate manual page for each non-standard \nexecutable that clearly documents how it differs from the \nStandard Version. \n\nd) make other distribution arrangements with the Copyright \nHolder. \n\n4. You may distribute the programs of this Package in object code \nor executable form, provided that you do at least ONE of the \nfollowing: \n\na) distribute a Standard Version of the executables and library \nfiles, together with instructions (in the manual page or \nequivalent) on where to get the Standard Version. \n\nb) accompany the distribution with the machine-readable source \nof the Package with your modifications. \n\nc) accompany any non-standard executables with their corresponding \nStandard Version executables, giving the non-standard executables \nnon-standard names, and clearly documenting the differences in \nmanual pages (or equivalent), together with instructions on \nwhere to get the Standard Version. \n\nd) make other distribution arrangements with the Copyright \nHolder. \n\n5. You may charge a reasonable copying fee for any distribution of \nthis Package. You may charge any fee you choose for support of \nthis Package. You may not charge a fee for this Package itself. \nHowever, you may distribute this Package in aggregate with other \n(possibly commercial) programs as part of a larger (possibly \ncommercial) software distribution provided that you do not advertise \nthis Package as a product of your own. \n\n6. The scripts and library files supplied as input to or produced \nas output from the programs of this Package do not automatically \nfall under the copyright of this Package, but belong to whomever \ngenerated them, and may be sold commercially, and may be aggregated \nwith this Package. \n\n7. C subroutines supplied by you and linked into this Package in \norder to emulate subroutines and variables defined by this Package \nshall not be considered part of this Package, but are the equivalent \nof input as in Paragraph 6, provided these subroutines do not change \nthe behavior of the Package in any way that would cause it to fail \nthe regression tests for the Package. \n\n8. Software supplied by you and linked with this Package in order \nto use subroutines and variables defined by this Package shall not \nbe considered part of this Package and do not automatically fall \nunder the copyright of this Package, and the executables produced \nby linking your software with this Package may be used and \nredistributed without restriction and may be sold commercially. \n\n9. The name of the Copyright Holder may not be used to endorse or \npromote products derived from this software without specific prior \nwritten permission. \n\n10. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR \nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED \nWARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \n\nThe End", + "json": "openldap-1.3.json", + "yaml": "openldap-1.3.yml", + "html": "openldap-1.3.html", + "license": "openldap-1.3.LICENSE" + }, + { + "license_key": "openldap-1.4", + "category": "Copyleft Limited", + "spdx_license_key": "OLDAP-1.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The OpenLDAP Public License \n\nVersion 1.4, 18 January 1999 \nCopyright 1998-1999, The OpenLDAP Foundation. \nAll Rights Reserved. \n\nNote: \nThis license is derived from the \"Artistic License\" as distributed \nwith the Perl Programming Language. As significant differences \nexist, the complete license should be read. \n\nPREAMBLE \n\nThe intent of this document is to state the conditions under which \na Package may be copied, such that the Copyright Holder maintains \nsome semblance of artistic control over the development of the \npackage, while giving the users of the package the right to use \nand distribute the Package in a more-or-less customary fashion, \nplus the right to make reasonable modifications. \n\nDefinitions: \n\n\"Package\" refers to the collection of files distributed by the \nCopyright Holder, and derivatives of that collection of files \ncreated through textual modification. \n\n\"Standard Version\" refers to such a Package if it has not been \nmodified, or has been modified in accordance with the wishes \nof the Copyright Holder. \n\n\"Copyright Holder\" is whoever is named in the copyright or \ncopyrights for the package. \n\n\"You\" is you, if you're thinking about copying or distributing \nthis Package. \n\n\"Reasonable copying fee\" is whatever you can justify on the \nbasis of media cost, duplication charges, time of people \ninvolved, and so on. (You will not be required to justify it \nto the Copyright Holder, but only to the computing community \nat large as a market that must bear the fee.) \n\n\"Freely Available\" means that no fee is charged for the item \nitself, though there may be fees involved in handling the item. \nIt also means that recipients of the item may redistribute it \nunder the same conditions they received it. \n\n1. You may make and give away verbatim copies of the source form \nof the Standard Version of this Package without restriction, provided \nthat you duplicate all of the original copyright notices and \nassociated disclaimers. \n\n2. You may apply bug fixes, portability fixes and other modifications \nderived from the Public Domain or from the Copyright Holder. A \nPackage modified in such a way shall still be considered the Standard \nVersion. \n\n3. You may otherwise modify your copy of this Package in any way, \nprovided that you insert a prominent notice in each changed file \nstating how and when you changed that file, and provided that you \ndo at least ONE of the following: \n\na) place your modifications in the Public Domain or otherwise \nmake them Freely Available, such as by posting said modifications \nto Usenet or an equivalent medium, or placing the modifications \non a major archive site such as uunet.uu.net, or by allowing \nthe Copyright Holder to include your modifications in the \nStandard Version of the Package. \n\nb) use the modified Package only within your corporation or \norganization. \n\nc) rename any non-standard executables so the names do not \nconflict with standard executables, which must also be provided, \nand provide a separate manual page for each non-standard \nexecutable that clearly documents how it differs from the \nStandard Version. \n\nd) make other distribution arrangements with the Copyright \nHolder. \n\n4. You may distribute the programs of this Package in object code \nor executable form, provided that you do at least ONE of the \nfollowing: \n\na) distribute a Standard Version of the executables and library \nfiles, together with instructions (in the manual page or \nequivalent) on where to get the Standard Version. \n\nb) accompany the distribution with the machine-readable source \nof the Package with your modifications. \n\nc) accompany any non-standard executables with their corresponding \nStandard Version executables, giving the non-standard executables \nnon-standard names, and clearly documenting the differences in \nmanual pages (or equivalent), together with instructions on \nwhere to get the Standard Version. \n\nd) make other distribution arrangements with the Copyright \nHolder. \n\n5. You may charge a reasonable copying fee for any distribution of \nthis Package. You may charge any fee you choose for support of \nthis Package. You may not charge a fee for this Package itself. \nHowever, you may distribute this Package in aggregate with other \n(possibly commercial) programs as part of a larger (possibly \ncommercial) software distribution provided that you do not advertise \nthis Package as a product of your own. \n\n6. The scripts and library files supplied as input to or produced \nas output from the programs of this Package do not automatically \nfall under the copyright of this Package, but belong to whomever \ngenerated them, and may be sold commercially, and may be aggregated \nwith this Package. \n\n7. C subroutines supplied by you and linked into this Package in \norder to emulate subroutines and variables defined by this Package \nshall not be considered part of this Package, but are the equivalent \nof input as in Paragraph 6, provided these subroutines do not change \nthe behavior of the Package in any way that would cause it to fail \nthe regression tests for the Package. \n\n8. Software supplied by you and linked with this Package in order \nto use subroutines and variables defined by this Package shall not \nbe considered part of this Package and do not automatically fall \nunder the copyright of this Package. Executables produced \nby linking your software with this Package may be used and \nredistributed without restriction and may be sold commercially \nso long as the primary function of your software is different \nthan the package itself. \n\n9. The name of the Copyright Holder may not be used to endorse or \npromote products derived from this software without specific prior \nwritten permission. \n\n10. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR \nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED \nWARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \n\nThe End", + "json": "openldap-1.4.json", + "yaml": "openldap-1.4.yml", + "html": "openldap-1.4.html", + "license": "openldap-1.4.LICENSE" + }, + { + "license_key": "openldap-2.0", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The OpenLDAP Public License \n\nVersion 2.0, 7 June 1999 \nCopyright 1999, The OpenLDAP Foundation, Redwood City, California, USA. \nAll Rights Reserved. \n\nRedistribution and use of this software and associated documentation \n(\"Software\"), with or without modification, are permitted provided \nthat the following conditions are met: \n\n1. Redistributions of source code must retain copyright \nstatements and notices. Redistributions must also contain a \ncopy of this document. \n\n2. Redistributions in binary form must reproduce the \nabove copyright notice, this list of conditions and the \nfollowing disclaimer in the documentation and/or other \nmaterials provided with the distribution. \n\n3. The name \"OpenLDAP\" must not be used to endorse or promote \nproducts derived from this Software without prior written \npermission of the OpenLDAP Foundation. For written permission, \nplease contact foundation@openldap.org. \n\n4. Products derived from this Software may not be called \"OpenLDAP\" \nnor may \"OpenLDAP\" appear in their names without prior written \npermission of the OpenLDAP Foundation. OpenLDAP is a registered \ntrademark of the OpenLDAP Foundation. \n\n5. Due credit should be given to the OpenLDAP Project \n(http://www.openldap.org/). \n\nTHIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT \nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED \nOF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "openldap-2.0.json", + "yaml": "openldap-2.0.yml", + "html": "openldap-2.0.html", + "license": "openldap-2.0.LICENSE" + }, + { + "license_key": "openldap-2.0.1", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The OpenLDAP Public License \n\nVersion 2.0.1, 21 December 1999 \nCopyright 1999, The OpenLDAP Foundation, Redwood City, California, USA. \nAll Rights Reserved. \n\nRedistribution and use of this software and associated documentation \n(\"Software\"), with or without modification, are permitted provided \nthat the following conditions are met: \n\n1. Redistributions of source code must retain copyright \nstatements and notices. Redistributions must also contain a \ncopy of this document. \n\n2. Redistributions in binary form must reproduce the \nabove copyright notice, this list of conditions and the \nfollowing disclaimer in the documentation and/or other \nmaterials provided with the distribution. \n\n3. The name \"OpenLDAP\" must not be used to endorse or promote \nproducts derived from this Software without prior written \npermission of the OpenLDAP Foundation. For written permission, \nplease contact foundation@openldap.org. \n\n4. Products derived from this Software may not be called \"OpenLDAP\" \nnor may \"OpenLDAP\" appear in their names without prior written \npermission of the OpenLDAP Foundation. OpenLDAP is a trademark \nof the OpenLDAP Foundation. \n\n5. Due credit should be given to the OpenLDAP Project \n(http://www.openldap.org/). \n\nTHIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT \nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED \nOF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "openldap-2.0.1.json", + "yaml": "openldap-2.0.1.yml", + "html": "openldap-2.0.1.html", + "license": "openldap-2.0.1.LICENSE" + }, + { + "license_key": "openldap-2.1", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The OpenLDAP Public License \n\nVersion 2.1, 29 February 2000 \nCopyright 1999-2000, The OpenLDAP Foundation, Redwood City, California, USA. \nAll Rights Reserved. \n\nRedistribution and use of this software and associated documentation \n(\"Software\"), with or without modification, are permitted provided \nthat the following conditions are met: \n\n1. Redistributions of source code must retain copyright \nstatements and notices. Redistributions must also contain a \ncopy of this document. \n\n2. Redistributions in binary form must reproduce the \nabove copyright notice, this list of conditions and the \nfollowing disclaimer in the documentation and/or other \nmaterials provided with the distribution. \n\n3. The name \"OpenLDAP\" must not be used to endorse or promote \nproducts derived from this Software without prior written \npermission of the OpenLDAP Foundation. For written permission, \nplease contact foundation@openldap.org. \n\n4. Products derived from this Software may not be called \"OpenLDAP\" \nnor may \"OpenLDAP\" appear in their names without prior written \npermission of the OpenLDAP Foundation. OpenLDAP is a trademark \nof the OpenLDAP Foundation. \n\n5. Due credit should be given to the OpenLDAP Project \n(http://www.openldap.org/). \n\n6. The OpenLDAP Foundation may revise this license from time to \ntime. Each revision is distinguished by a version number. You \nmay use the Software under terms of this license revision or under \nthe terms of any subsequent license revision. \n\nTHIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT \nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED \nOF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "openldap-2.1.json", + "yaml": "openldap-2.1.yml", + "html": "openldap-2.1.html", + "license": "openldap-2.1.LICENSE" + }, + { + "license_key": "openldap-2.2", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The OpenLDAP Public License \nVersion 2.2, 1 March 2000 \n\nRedistribution and use of this software and associated documentation \n(\"Software\"), with or without modification, are permitted provided \nthat the following conditions are met: \n\n1. Redistributions of source code must retain copyright statements \nand notices. Redistributions must also contain a copy of this \ndocument. \n\n2. Redistributions in binary form must reproduce the above copyright \nnotice, this list of conditions and the following disclaimer in \nthe documentation and/or other materials provided with the \ndistribution. \n\n3. The name \"OpenLDAP\" must not be used to endorse or promote \nproducts derived from this Software without prior written permission \nof the OpenLDAP Foundation. \n\n4. Products derived from this Software may not be called \"OpenLDAP\" \nnor may \"OpenLDAP\" appear in their names without prior written \npermission of the OpenLDAP Foundation. \n\n5. Due credit should be given to the OpenLDAP Project \n(http://www.openldap.org/). \n\n6. The OpenLDAP Foundation may revise this license from time to \ntime. Each revision is distinguished by a version number. You \nmay use the Software under terms of this license revision or under \nthe terms of any subsequent the license. \n\nTHIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT \nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED \nOF THE POSSIBILITY OF SUCH DAMAGE. \n\nOpenLDAP is a trademark of the OpenLDAP Foundation. \n\nCopyright 1999-2000, The OpenLDAP Foundation, Redwood City, \nCalifornia, USA. All Rights Reserved. Permission to copy and \ndistributed verbatim copies of this document is granted.", + "json": "openldap-2.2.json", + "yaml": "openldap-2.2.yml", + "html": "openldap-2.2.html", + "license": "openldap-2.2.LICENSE" + }, + { + "license_key": "openldap-2.2.1", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The OpenLDAP Public License \nVersion 2.2.1, 1 March 2000 \n\nRedistribution and use of this software and associated documentation \n(\"Software\"), with or without modification, are permitted provided \nthat the following conditions are met: \n\n1. Redistributions of source code must retain copyright statements \nand notices. Redistributions must also contain a copy of this \ndocument. \n\n2. Redistributions in binary form must reproduce the above copyright \nnotice, this list of conditions and the following disclaimer in \nthe documentation and/or other materials provided with the \ndistribution. \n\n3. The name \"OpenLDAP\" must not be used to endorse or promote \nproducts derived from this Software without prior written permission \nof the OpenLDAP Foundation. \n\n4. Products derived from this Software may not be called \"OpenLDAP\" \nnor may \"OpenLDAP\" appear in their names without prior written \npermission of the OpenLDAP Foundation. \n\n5. Due credit should be given to the OpenLDAP Project \n(http://www.openldap.org/). \n\n6. The OpenLDAP Foundation may revise this license from time to \ntime. Each revision is distinguished by a version number. You \nmay use the Software under terms of this license revision or under \nthe terms of any subsequent revision of the license. \n\nTHIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT \nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED \nOF THE POSSIBILITY OF SUCH DAMAGE. \n\nOpenLDAP is a trademark of the OpenLDAP Foundation. \n\nCopyright 1999-2000 The OpenLDAP Foundation, Redwood City, \nCalifornia, USA. All Rights Reserved. Permission to copy and \ndistributed verbatim copies of this document is granted.", + "json": "openldap-2.2.1.json", + "yaml": "openldap-2.2.1.yml", + "html": "openldap-2.2.1.html", + "license": "openldap-2.2.1.LICENSE" + }, + { + "license_key": "openldap-2.2.2", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.2.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The OpenLDAP Public License \nVersion 2.2.2, 28 July 2000 \n\nRedistribution and use of this software and associated documentation \n(\"Software\"), with or without modification, are permitted provided \nthat the following conditions are met: \n\n1. Redistributions of source code must retain copyright statements \nand notices. \n\n2. Redistributions in binary form must reproduce applicable copyright \nstatements and notices, this list of conditions, and the following \ndisclaimer in the documentation and/or other materials provided \nwith the distribution. \n\n3. Redistributions must contain a verbatim copy of this document. \n\n4. The name \"OpenLDAP\" must not be used to endorse or promote \nproducts derived from this Software without prior written permission \nof the OpenLDAP Foundation. \n\n5. Products derived from this Software may not be called \"OpenLDAP\" \nnor may \"OpenLDAP\" appear in their names without prior written \npermission of the OpenLDAP Foundation. \n\n6. Due credit should be given to the OpenLDAP Project \n(http://www.openldap.org/). \n\n7. The OpenLDAP Foundation may revise this license from time to \ntime. Each revision is distinguished by a version number. You \nmay use the Software under terms of this license revision or under \nthe terms of any subsequent revision of the license. \n\nTHIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT \nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED \nOF THE POSSIBILITY OF SUCH DAMAGE. \n\nOpenLDAP is a trademark of the OpenLDAP Foundation. \n\nCopyright 1999-2000 The OpenLDAP Foundation, Redwood City, \nCalifornia, USA. All Rights Reserved. Permission to copy and \ndistributed verbatim copies of this document is granted.", + "json": "openldap-2.2.2.json", + "yaml": "openldap-2.2.2.yml", + "html": "openldap-2.2.2.html", + "license": "openldap-2.2.2.LICENSE" + }, + { + "license_key": "openldap-2.3", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The OpenLDAP Public License \nVersion 2.3, 28 July 2000 \n\nRedistribution and use of this software and associated documentation \n(\"Software\"), with or without modification, are permitted provided \nthat the following conditions are met: \n\n1. Redistributions of source code must retain copyright statements \nand notices. \n\n2. Redistributions in binary form must reproduce applicable copyright \nstatements and notices, this list of conditions, and the following \ndisclaimer in the documentation and/or other materials provided \nwith the distribution. \n\n3. Redistributions must contain a verbatim copy of this document. \n\n4. The name \"OpenLDAP\" must not be used to endorse or promote \nproducts derived from this Software without prior written permission \nof the OpenLDAP Foundation. \n\n5. Products derived from this Software may not be called \"OpenLDAP\" \nnor may \"OpenLDAP\" appear in their names without prior written \npermission of the OpenLDAP Foundation. \n\n6. Due credit should be given to the OpenLDAP Project \n(http://www.openldap.org/). \n\n7. The OpenLDAP Foundation may revise this license from time to \ntime. Each revision is distinguished by a version number. You \nmay use the Software under terms of this license revision or under \nthe terms of any subsequent revision of the license. \n\nTHIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT \nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED \nOF THE POSSIBILITY OF SUCH DAMAGE. \n\nOpenLDAP is a trademark of the OpenLDAP Foundation. \n\nCopyright 1999-2000 The OpenLDAP Foundation, Redwood City, \nCalifornia, USA. All Rights Reserved. Permission to copy and \ndistributed verbatim copies of this document is granted.", + "json": "openldap-2.3.json", + "yaml": "openldap-2.3.yml", + "html": "openldap-2.3.html", + "license": "openldap-2.3.LICENSE" + }, + { + "license_key": "openldap-2.4", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The OpenLDAP Public License \nVersion 2.4, 8 December 2000 \n\nRedistribution and use of this software and associated documentation \n(\"Software\"), with or without modification, are permitted provided \nthat the following conditions are met: \n\n1. Redistributions of source code must retain copyright statements \nand notices. \n\n2. Redistributions in binary form must reproduce applicable copyright \nstatements and notices, this list of conditions, and the following \ndisclaimer in the documentation and/or other materials provided \nwith the distribution. \n\n3. Redistributions must contain a verbatim copy of this document. \n\n4. The names and trademarks of the authors and copyright holders \nmust not be used in advertising or otherwise to promote the sale, \nuse or other dealing in this Software without specific, written \nprior permission. \n\n5. Due credit should be given to the OpenLDAP Project. \n\n6. The OpenLDAP Foundation may revise this license from time to \ntime. Each revision is distinguished by a version number. You \nmay use the Software under terms of this license revision or under \nthe terms of any subsequent revision of the license. \n\nTHIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT \nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY \nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL \nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE \nGOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS \nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER \nIN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR \nOTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN \nIF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \n\nOpenLDAP is a trademark of the OpenLDAP Foundation. \n\nCopyright 1999-2000 The OpenLDAP Foundation, Redwood City, \nCalifornia, USA. All Rights Reserved. Permission to copy and \ndistributed verbatim copies of this document is granted.", + "json": "openldap-2.4.json", + "yaml": "openldap-2.4.yml", + "html": "openldap-2.4.html", + "license": "openldap-2.4.LICENSE" + }, + { + "license_key": "openldap-2.5", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The OpenLDAP Public License \nVersion 2.5, 11 May 2001 \n\nRedistribution and use of this software and associated documentation \n(\"Software\"), with or without modification, are permitted provided \nthat the following conditions are met: \n\n1. Redistributions of source code must retain copyright statements \nand notices. \n\n2. Redistributions in binary form must reproduce applicable copyright \nstatements and notices, this list of conditions, and the following \ndisclaimer in the documentation and/or other materials provided \nwith the distribution. \n\n3. Redistributions must contain a verbatim copy of this document. \n\n4. The names and trademarks of the authors and copyright holders \nmust not be used in advertising or otherwise to promote the sale, \nuse or other dealing in this Software without specific, written \nprior permission. \n\n5. Due credit should be given to the authors of the Software. \n\n6. The OpenLDAP Foundation may revise this license from time to \ntime. Each revision is distinguished by a version number. You \nmay use the Software under terms of this license revision or under \nthe terms of any subsequent revision of the license. \n\nTHIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT \nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) OR \nOWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, \nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; \nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER \nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT \nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN \nANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE. \n\nOpenLDAP is a trademark of the OpenLDAP Foundation. \n\nCopyright 1999-2001 The OpenLDAP Foundation, Redwood City, \nCalifornia, USA. All Rights Reserved. Permission to copy and \ndistributed verbatim copies of this document is granted.", + "json": "openldap-2.5.json", + "yaml": "openldap-2.5.yml", + "html": "openldap-2.5.html", + "license": "openldap-2.5.LICENSE" + }, + { + "license_key": "openldap-2.6", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.6", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The OpenLDAP Public License \nVersion 2.6, 14 June 2001 \n\nRedistribution and use of this software and associated documentation \n(\"Software\"), with or without modification, are permitted provided \nthat the following conditions are met: \n\n1. Redistributions of source code must retain copyright statements \nand notices. \n\n2. Redistributions in binary form must reproduce applicable copyright \nstatements and notices, this list of conditions, and the following \ndisclaimer in the documentation and/or other materials provided \nwith the distribution. \n\n3. Redistributions must contain a verbatim copy of this document. \n\n4. The names and trademarks of the authors and copyright holders \nmust not be used in advertising or otherwise to promote the sale, \nuse or other dealing in this Software without specific, written \nprior permission. \n\n5. The OpenLDAP Foundation may revise this license from time to \ntime. Each revision is distinguished by a version number. You \nmay use the Software under terms of this license revision or under \nthe terms of any subsequent revision of the license. \n\nTHIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT \nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) OR \nOWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, \nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; \nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER \nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT \nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN \nANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE. \n\nOpenLDAP is a trademark of the OpenLDAP Foundation. \n\nCopyright 1999-2001 The OpenLDAP Foundation, Redwood City, \nCalifornia, USA. All Rights Reserved. Permission to copy and \ndistributed verbatim copies of this document is granted.", + "json": "openldap-2.6.json", + "yaml": "openldap-2.6.yml", + "html": "openldap-2.6.html", + "license": "openldap-2.6.LICENSE" + }, + { + "license_key": "openldap-2.7", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.7", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The OpenLDAP Public License \nVersion 2.7, 7 September 2001 \n\nRedistribution and use of this software and associated documentation \n(\"Software\"), with or without modification, are permitted provided \nthat the following conditions are met: \n\n1. Redistributions of source code must retain copyright statements \nand notices, \n\n2. Redistributions in binary form must reproduce applicable copyright \nstatements and notices, this list of conditions, and the following \ndisclaimer in the documentation and/or other materials provided \nwith the distribution, and \n\n3. Redistributions must contain a verbatim copy of this document. \n\nThe OpenLDAP Foundation may revise this license from time to time. \nEach revision is distinguished by a version number. You may use \nthis Software under terms of this license revision or under the \nterms of any subsequent revision of the license. \n\nTHIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS \nCONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, \nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY \nAND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT \nSHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) \nOR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, \nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; \nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER \nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT \nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN \nANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE. \n\nThe names of the authors and copyright holders must not be used in \nadvertising or otherwise to promote the sale, use or other dealing \nin this Software without specific, written prior permission. Title \nto copyright in this Software shall at all times remain with \ncopyright holders. \n\nOpenLDAP is a registered trademark of the OpenLDAP Foundation. \n\nCopyright 1999-2001 The OpenLDAP Foundation, Redwood City, \nCalifornia, USA. All Rights Reserved. Permission to copy and \ndistribute verbatim copies of this document is granted.", + "json": "openldap-2.7.json", + "yaml": "openldap-2.7.yml", + "html": "openldap-2.7.html", + "license": "openldap-2.7.LICENSE" + }, + { + "license_key": "openldap-2.8", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.8", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The OpenLDAP Public License\n Version 2.8, 17 August 2003\n\nRedistribution and use of this software and associated documentation\n(\"Software\"), with or without modification, are permitted provided\nthat the following conditions are met:\n\n1. Redistributions in source form must retain copyright statements\n and notices,\n\n2. Redistributions in binary form must reproduce applicable copyright\n statements and notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution, and\n\n3. Redistributions must contain a verbatim copy of this document.\n\nThe OpenLDAP Foundation may revise this license from time to time.\nEach revision is distinguished by a version number. You may use\nthis Software under terms of this license revision or under the\nterms of any subsequent revision of the license.\n\nTHIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS\nCONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT\nSHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S)\nOR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\nANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\n\nThe names of the authors and copyright holders must not be used in\nadvertising or otherwise to promote the sale, use or other dealing\nin this Software without specific, written prior permission. Title\nto copyright in this Software shall at all times remain with copyright\nholders.\n\nOpenLDAP is a registered trademark of the OpenLDAP Foundation.\n\nCopyright 1999-2003 The OpenLDAP Foundation, Redwood City,\nCalifornia, USA. All Rights Reserved. Permission to copy and\ndistribute verbatim copies of this document is granted.", + "json": "openldap-2.8.json", + "yaml": "openldap-2.8.yml", + "html": "openldap-2.8.html", + "license": "openldap-2.8.LICENSE" + }, + { + "license_key": "openmap", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openmap", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OpenMap Software License Agreement\n ----------------------------------\n\nThis Agreement sets forth the terms and conditions under which\nthe software known as OpenMap(tm) will be licensed by BBN\nTechnologies (\"BBN\") to you (\"Licensee\"), and by which Derivative \nWorks (as hereafter defined) of OpenMap will be licensed by you to BBN.\n\nDefinitions:\n\n \"Derivative Work(s)\" shall mean any revision, enhancement,\n modification, translation, abridgement, condensation or\n expansion created by Licensee or BBN that is based upon the\n Software or a portion thereof that would be a copyright\n infringement if prepared without the authorization of the\n copyright owners of the Software or portion thereof.\n\n \"OpenMap\" shall mean a programmer's toolkit for building map\n based applications as originally created by BBN, and any\n Derivative Works thereof as created by either BBN or Licensee,\n but shall include only those Derivative Works BBN has approved\n for inclusion into, and BBN has integrated into OpenMap.\n\n \"Standard Version\" shall mean OpenMap, as originally created by\n BBN.\n\n \"Software\" shall mean OpenMap and the Derivative Works created\n by Licensee and the collection of files distributed by the\n Licensee with OpenMap, and the collection of files created\n through textual modifications.\n\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the Derivative Works.\n\n \"Licensee\" is you, only if you agree to be bound by the terms\n and conditions set forth in this Agreement.\n\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people\n involved.\n\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions that they received it.\n\n1. BBN maintains all rights, title and interest in and to\nOpenMap, including all applicable copyrights, trade secrets,\npatents and other intellectual rights therein. Licensee hereby\ngrants to BBN all right, title and interest into the compilation\nof OpenMap. Licensee shall own all rights, title and interest\ninto the Derivative Works created by Licensee (subject to the\ncompilation ownership by BBN).\n\n2. BBN hereby grants to Licensee a royalty free, worldwide right\nand license to use, copy, distribute and make Derivative Works of\nOpenMap, and sublicensing rights of any of the foregoing in\naccordance with the terms and conditions of this Agreement,\nprovided that you duplicate all of the original copyright notices\nand associated disclaimers.\n\n3. Licensee hereby grants to BBN a royalty free, worldwide right\nand license to use, copy, distribute and make Derivative Works of\nDerivative Works created by Licensee and sublicensing rights of\nany of the foregoing.\n\n4. Licensee's right to create Derivative Works in the Software is\nsubject to Licensee agreement to insert a prominent notice in\neach changed file stating how and when you changed that file, and\nprovided that you do at least ONE of the following:\n\n a) place your modifications in the Public Domain or otherwise\n make them Freely Available, such as by posting said\n modifications to Usenet or an equivalent medium, or\n placing the modifications on a major archive site and by\n providing your modifications to the Copyright Holder.\n\n b) use the modified Package only within your corporation or\n organization.\n\n c) rename any non-standard executables so the names do not\n conflict with standard executables, which must also be\n provided, and provide a separate manual page for each\n non-standard executable that clearly documents how it\n differs from OpenMap.\n\n d) make other distribution arrangements with the Copyright\n Holder.\n\n5. Licensee may distribute the programs of this Software in\nobject code or executable form, provided that you do at least ONE\nof the following:\n\n a) distribute an OpenMap version of the executables and\n library files, together with instructions (in the manual\n page or equivalent) on where to get OpenMap.\n\n b) accompany the distribution with the machine-readable\n source code with your modifications.\n\n c) accompany any non-standard executables with their\n corresponding OpenMap executables, giving the non-standard\n executables non-standard names, and clearly documenting\n the differences in manual pages (or equivalent), together\n with instructions on where to get OpenMap.\n\n d) make other distribution arrangements with the Copyright\n Holder.\n\n6. You may charge a reasonable copying fee for any distribution\nof this Software. You may charge any fee you choose for support\nof this Software. You may not charge a fee for this Software\nitself. However, you may distribute this Software in aggregate\nwith other (possibly commercial) programs as part of a larger\n(possibly commercial) software distribution provided that you do\nnot advertise this Software as a product of your own.\n\n7. The data and images supplied as input to or produced as output\nfrom the Software do not automatically fall under the copyright\nof this Software, but belong to whomever generated them, and may\nbe sold commercially, and may be aggregated with this Software.\n\n8. BBN makes no representation about the suitability of OpenMap\nfor any purposes. BBN shall have no duty or requirement to\ninclude any Derivative Works into OpenMap.\n\n9. Each party hereto represents and warrants that they have the\nfull unrestricted right to grant all rights and licenses granted\nto the other party herein.\n\n10. THIS PACKAGE IS PROVIDED \"AS IS\" WITHOUT WARRANTIES OF ANY\nKIND, WHETHER EXPRESS OR IMPLIED, INCLUDING (BUT NOT LIMITED TO)\nALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, AND\nWITHOUT ANY WARRANTIES AS TO NONINFRINGEMENT.\n\n11. IN NO EVENT SHALL COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT,\nSPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER RESULTING\nFROM LOSS OF USE OF DATA OR PROFITS, WHETHER IN AN ACTION OF\nCONTRACT, NEGLIGENCE OR OTHER TORTIOUS CONDUCT, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS PACKAGE.\n\n12. Without limitation of the foregoing, You agree to commit no\nact which, directly or indirectly, would violate any U.S. law,\nregulation, or treaty, or any other international treaty or\nagreement to which the United States adheres or with which the\nUnited States complies, relating to the export or re-export of\nany commodities, software, or technical data.", + "json": "openmap.json", + "yaml": "openmap.yml", + "html": "openmap.html", + "license": "openmap.LICENSE" + }, + { + "license_key": "openmarket-fastcgi", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-openmarket-fastcgi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OpenMarket FastCGI\n\nThis FastCGI application library source and object code (the \"Software\") and its documentation (the \"Documentation\") are copyrighted by Open Market, Inc (\"Open Market\"). The following terms apply to all files associated with the Software and Documentation unless explicitly disclaimed in individual files.\n\nOpen Market permits you to use, copy, modify, distribute, and license this Software and the Documentation solely for the purpose of implementing the FastCGI specification defined by Open Market or derivative specifications publicly endorsed by Open Market and promulgated by an open standards organization and for no other purpose, provided that existing copyright notices are retained in all copies and that this notice is included verbatim in any distributions.\n\nNo written agreement, license, or royalty fee is required for any of the authorized uses. Modifications to this Software and Documentation may be copyrighted by their authors and need not follow the licensing terms described here, but the modified Software and Documentation must be used for the sole purpose of implementing the FastCGI specification defined by Open Market or derivative specifications publicly endorsed by Open Market and promulgated by an open standards organization and for no other purpose. If modifications to this Software and Documentation have new licensing terms, the new terms must protect Open Market's proprietary rights in the Software and Documentation to the same extent as these licensing terms and must be clearly indicated on the first page of each file where they apply.\n\nOpen Market shall retain all right, title and interest in and to the Software and Documentation, including without limitation all patent, copyright, trade secret and other proprietary rights.\n\nOPEN MARKET MAKES NO EXPRESS OR IMPLIED WARRANTY WITH RESPECT TO THE SOFTWARE OR THE DOCUMENTATION, INCLUDING WITHOUT LIMITATION ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL OPEN MARKET BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY DAMAGES ARISING FROM OR RELATING TO THIS SOFTWARE OR THE DOCUMENTATION, INCLUDING, WITHOUT LIMITATION, ANY INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES OR SIMILAR DAMAGES, INCLUDING LOST PROFITS OR LOST DATA, EVEN IF OPEN MARKET HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THE SOFTWARE AND DOCUMENTATION ARE PROVIDED \"AS IS\". OPEN MARKET HAS NO LIABILITY IN CONTRACT, TORT, NEGLIGENCE OR OTHERWISE ARISING OUT OF THIS SOFTWARE OR THE DOCUMENTATION.", + "json": "openmarket-fastcgi.json", + "yaml": "openmarket-fastcgi.yml", + "html": "openmarket-fastcgi.html", + "license": "openmarket-fastcgi.LICENSE" + }, + { + "license_key": "openmotif-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openmotif-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "In addition, as a special exception to the GNU GPL, the copyright holders\ngive permission to link the code of this program with the Motif and Open\nMotif libraries (or with modified versions of these that use the same\nlicense), and distribute linked combinations including the two. You\nmust obey the GNU General Public License in all respects for all of\nthe code used other than linking with Motif/Open Motif. If you modify\nthis file, you may extend this exception to your version of the file,\nbut you are not obligated to do so. If you do not wish to do so,\ndelete this exception statement from your version.", + "json": "openmotif-exception-2.0-plus.json", + "yaml": "openmotif-exception-2.0-plus.yml", + "html": "openmotif-exception-2.0-plus.html", + "license": "openmotif-exception-2.0-plus.LICENSE" + }, + { + "license_key": "opennetcf-shared-source", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-opennetcf-shared-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "NOTICE\nThis license governs use of the accompanying software (\"Software\"), and your use of the Software constitutes acceptance of this license.\nSubject to the restrictions below, you may use the Software for any commercial or noncommercial purpose, including distributing derivative works.\n\nSECTION 1: DEFINITIONS\nA. \"OpenNETCF\" refers to OpenNETCF Consulting, LLC, a limited liability corporation organized and operating under the laws of the state of Maryland.\n\nB. \"SDF\" refers to the OpenNETCF Smart Device Framework, which is an OpenNETCF software product\n\nC. \"SOFTWARE\" refers to the source code, compiled binaries, installation files documentation and any other materials provided by OpenNETCF.\n\nSECTION 2: LICENSE\nYou agree that:\nA. You are NOT allowed to combine or distribute the SOFTWARE with other software that is licensed under terms that seek to require that the SOFTWARE (or any intellectual property in it) be provided in source code form, licensed to others to allow the creation or distribution of derivative works, or distributed without charge.\n\nB. You may NOT distribute the SOFTWARE in source code form to any other person, company, government, group or entity.\n\nC. You may NOT decompile, disassemble, reverse engineer or otherwise attempt to extract, generate or retrieve source code from any compiled binary provided in the SOFTWARE.\n\nD. You will (a) NOT use OpenNETCF's name, logo, or trademarks in association with distribution of the SOFTWARE or derivative works unless otherwise permitted in writing; and (b) you WILL indemnify, hold harmless, and defend OpenNETCF from and against any claims or lawsuits, including attorneys fees, that arise or result from the use or distribution of your modifications to the SOFTWARE and any additional software you distribute along with the SOFTWARE.\n\nE. The SOFTWARE comes \"as is\", with no warranties. None whatsoever. This means no express, implied or statutory warranty, including without limitation, warranties of merchantability or fitness for a particular purpose or any warranty of title or non-infringement.\n\nF. Neither OpenNETCF nor its suppliers will be liable for any of those types of damages known as indirect, special, consequential, or incidental related to the SOFTWARE or this license, to the maximum extent the law permits, no matter what legal theory its based on. Also, you must pass this limitation of liability on whenever you distribute the SOFTWARE or derivative works.\n\nG. If you sue anyone over patents that you think may apply to the SOFTWARE for a person's use of the SOFTWARE, your license to the SOFTWARE ends automatically.\n\nH. The patent rights, if any, granted in this license only apply to the SOFTWARE, not to any derivative works you make.\n\nI. The SOFTWARE is subject to U.S. export jurisdiction at the time it is licensed to you, and it may be subject to additional export or import laws in other places. You agree to comply with all such laws and regulations that may apply to the SOFTWARE after delivery of the SOFTWARE to you.\n\nJ. If you are an agency of the U.S. Government, (i) the SOFTWARE is provided pursuant to a solicitation issued on or after December 1, 1995, is provided with the commercial license rights set forth in this license, and (ii) the SOFTWARE is provided pursuant to a solicitation issued prior to December 1, 1995, is provided with Restricted Rights as set forth in FAR, 48 C.F.R. 52.227-14 (June 1987) or DFAR, 48 C.F.R. 252.227-7013 (Oct 1988), as applicable.\n\nK. Your rights under this license end automatically if you breach it in any way.\n\nL. This license contains the only rights associated with the SOFTWARE and OpenNETCF reserves all rights not expressly granted to you in this license.\n\n\u00a9 2006-2012 OpenNETCF Consulting, LLC. All rights reserved.", + "json": "opennetcf-shared-source.json", + "yaml": "opennetcf-shared-source.yml", + "html": "opennetcf-shared-source.html", + "license": "opennetcf-shared-source.LICENSE" + }, + { + "license_key": "openorb-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-openorb-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "================================================================================\nThe OpenORB Community Software License, Version 1.0\n================================================================================\n\n Copyright (C) 2002 The OpenORB Project. All rights reserved.\n\n Redistribution and use in source and binary forms, with or without modifica-\n tion, are permitted provided that the following conditions are met:\n \n 1. Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n \n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n \n 3. The end-user documentation included with the redistribution, if any, must\n include the following acknowledgment: \"This product includes software\n developed by the OpenORB Community Project \n (http://sourceforge.net/projects/openorb/).\" together with the due credit \n statements listed below.\n Alternately, this acknowledgment and due credits may appear in the soft-\n ware itself, if and wherever such third-party acknowledgments normally \n appear.\n \n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\n FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\n MEMBERS OF THE OPENORB COMMUNITY PROJECT OR ITS CONTRIBUTORS BE LIABLE FOR \n ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL \n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER \n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, \n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE \n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n \n This software consists of voluntary contributions made by many individuals to \n the OpenORB Community Project. For more information on the OpenORB Community \n Project, please refer to .", + "json": "openorb-1.0.json", + "yaml": "openorb-1.0.yml", + "html": "openorb-1.0.html", + "license": "openorb-1.0.LICENSE" + }, + { + "license_key": "openpbs-2.3", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openpbs-2.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OpenPBS (Portable Batch System) v2.3 Software License\n\nCopyright (c) 1999-2000 Veridian Information Solutions, Inc.\nAll rights reserved.\n\n---------------------------------------------------------------------------\nFor a license to use or redistribute the OpenPBS software under conditions\nother than those described below, or to purchase support for this software,\nplease contact Veridian Systems, PBS Products Department (\"Licensor\") at:\n\n www.OpenPBS.org +1 650 967-4675 sales@OpenPBS.org\n 877 902-4PBS (US toll-free)\n---------------------------------------------------------------------------\n\nThis license covers use of the OpenPBS v2.3 software (the \"Software\") at\nyour site or location, and, for certain users, redistribution of the\nSoftware to other sites and locations. Use and redistribution of\nOpenPBS v2.3 in source and binary forms, with or without modification,\nare permitted provided that all of the following conditions are met.\nAfter December 31, 2001, only conditions 3-6 must be met:\n\n1. Commercial and/or non-commercial use of the Software is permitted\n provided a current software registration is on file at www.OpenPBS.org.\n If use of this software contributes to a publication, product, or\n service, proper attribution must be given; see www.OpenPBS.org/credit.html\n\n2. Redistribution in any form is only permitted for non-commercial,\n non-profit purposes. There can be no charge for the Software or any\n software incorporating the Software. Further, there can be no\n expectation of revenue generated as a consequence of redistributing\n the Software.\n\n3. Any Redistribution of source code must retain the above copyright notice\n and the acknowledgment contained in paragraph 6, this list of conditions\n and the disclaimer contained in paragraph 7.\n\n4. Any Redistribution in binary form must reproduce the above copyright\n notice and the acknowledgment contained in paragraph 6, this list of\n conditions and the disclaimer contained in paragraph 7 in the\n documentation and/or other materials provided with the distribution.\n\n5. Redistributions in any form must be accompanied by information on how to\n obtain complete source code for the OpenPBS software and any\n modifications and/or additions to the OpenPBS software. The source code\n must either be included in the distribution or be available for no more\n than the cost of distribution plus a nominal fee, and all modifications\n and additions to the Software must be freely redistributable by any party\n (including Licensor) without restriction.\n\n6. All advertising materials mentioning features or use of the Software must\n display the following acknowledgment:\n\n \"This product includes software developed by NASA Ames Research Center,\n Lawrence Livermore National Laboratory, and Veridian Information Solutions,\n Inc. Visit www.OpenPBS.org for OpenPBS software support,\n products, and information.\"\n\n7. DISCLAIMER OF WARRANTY\n\nTHIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. ANY EXPRESS\nOR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT\nARE EXPRESSLY DISCLAIMED.\n\nIN NO EVENT SHALL VERIDIAN CORPORATION, ITS AFFILIATED COMPANIES, OR THE\nU.S. GOVERNMENT OR ANY OF ITS AGENCIES BE LIABLE FOR ANY DIRECT OR INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\nOR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nThis license will be governed by the laws of the Commonwealth of Virginia,\nwithout reference to its choice of law rules.", + "json": "openpbs-2.3.json", + "yaml": "openpbs-2.3.yml", + "html": "openpbs-2.3.html", + "license": "openpbs-2.3.LICENSE" + }, + { + "license_key": "openpub", + "category": "Permissive", + "spdx_license_key": "OPUBL-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openpub" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Open Publication License\nv1.0, 8 June 1999\n\nI. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n\nThe Open Publication works may be reproduced and distributed in whole or in part, in any medium physical or electronic, provided that the terms of this license are adhered to, and that this license or an incorporation of it by reference (with any options elected by the author(s) and/or publisher) is displayed in the reproduction.\n\nProper form for an incorporation by reference is as follows:\n\n Copyright (c) by . This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, vX.Y or later (the latest version is presently available at http://www.opencontent.org/openpub/).\n\nThe reference must be immediately followed with any options elected by the author(s) and/or publisher of the document (see section VI).\n\nCommercial redistribution of Open Publication-licensed material is permitted.\n\nAny publication in standard (paper) book form shall require the citation of the original publisher and author. The publisher and author's names shall appear on all outer surfaces of the book. On all outer surfaces of the book the original publisher's name shall be as large as the title of the work and cited as possessive with respect to the title.\n\n\nII. COPYRIGHT\n\nThe copyright to each Open Publication is owned by its author(s) or designee.\n\n\nIII. SCOPE OF LICENSE\n\nThe following license terms apply to all Open Publication works, unless otherwise explicitly stated in the document.\n\nMere aggregation of Open Publication works or a portion of an Open Publication work with other works or programs on the same media shall not cause this license to apply to those other works. The aggregate work shall contain a notice specifying the inclusion of the Open Publication material and appropriate copyright notice.\n\nSEVERABILITY. If any part of this license is found to be unenforceable in any jurisdiction, the remaining portions of the license remain in force.\n\nNO WARRANTY. Open Publication works are licensed and provided \"as is\" without warranty of any kind, express or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose or a warranty of non-infringement.\n\n\nIV. REQUIREMENTS ON MODIFIED WORKS\n\nAll modified versions of documents covered by this license, including translations, anthologies, compilations and partial documents, must meet the following requirements:\n\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or imply endorsement of the resulting document without the original author's (or authors') permission. \n\n\nV. GOOD-PRACTICE RECOMMENDATIONS\n\nIn addition to the requirements of this license, it is requested from and strongly recommended of redistributors that:\n\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you provide email notification to the authors of your intent to redistribute at least thirty days before your manuscript or media freeze, to give the authors time to provide updated documents. This notification should describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly marked up in the document or else described in an attachment to the document.\n 3. Finally, while it is not mandatory under this license, it is considered good form to offer a free copy of any hardcopy and CD-ROM expression of an Open Publication-licensed work to its author(s). \n\n\nVI. LICENSE OPTIONS\n\nThe author(s) and/or publisher of an Open Publication-licensed document may elect certain options by appending language to the reference to or copy of the license. These options are considered part of the license instance and must be included with the license (or its incorporation by reference) in derived works.\n\nA. To prohibit distribution of substantively modified versions without the explicit permission of the author(s). \"Substantive modification\" is defined as a change to the semantic content of the document, and excludes mere changes in format or typographical corrections.\n\nTo accomplish this, add the phrase `Distribution of substantively modified versions of this document is prohibited without the explicit permission of the copyright holder.' to the license reference or copy.\n\nB. To prohibit any publication of this work or derivative works in whole or in part in standard (paper) book form for commercial purposes unless prior permission is obtained from the copyright holder.\n\nTo accomplish this, add the phrase 'Distribution of the work or derivative of the work in any standard (paper) book form is prohibited unless prior permission is obtained from the copyright holder.' to the license reference or copy.", + "json": "openpub.json", + "yaml": "openpub.yml", + "html": "openpub.html", + "license": "openpub.LICENSE" + }, + { + "license_key": "opensaml-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-opensaml-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The OpenSAML License, Version 1. \nCopyright (c) 2002 \nUniversity Corporation for Advanced Internet Development, Inc. \nAll rights reserved\n\nRedistribution and use in source and binary forms, with or without \nmodification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this \nlist of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, \nthis list of conditions and the following disclaimer in the documentation \nand/or other materials provided with the distribution, if any, must include \nthe following acknowledgment: \"This product includes software developed by \nthe University Corporation for Advanced Internet Development \nInternet2 Project. Alternately, this acknowledegement \nmay appear in the software itself, if and wherever such third-party \nacknowledgments normally appear.\n\nNeither the name of OpenSAML nor the names of its contributors, nor \nInternet2, nor the University Corporation for Advanced Internet Development, \nInc., nor UCAID may be used to endorse or promote products derived from this \nsoftware without specific prior written permission. For written permission, \nplease contact opensaml@opensaml.org\n\nProducts derived from this software may not be called OpenSAML, Internet2, \nUCAID, or the University Corporation for Advanced Internet Development, nor \nmay OpenSAML appear in their name, without prior written permission of the \nUniversity Corporation for Advanced Internet Development.\n\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" \nAND WITH ALL FAULTS. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT \nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A \nPARTICULAR PURPOSE, AND NON-INFRINGEMENT ARE DISCLAIMED AND THE ENTIRE RISK \nOF SATISFACTORY QUALITY, PERFORMANCE, ACCURACY, AND EFFORT IS WITH LICENSEE. \nIN NO EVENT SHALL THE COPYRIGHT OWNER, CONTRIBUTORS OR THE UNIVERSITY \nCORPORATION FOR ADVANCED INTERNET DEVELOPMENT, INC. BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; \nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND \nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT \n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS \nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "opensaml-1.0.json", + "yaml": "opensaml-1.0.yml", + "html": "opensaml-1.0.html", + "license": "opensaml-1.0.LICENSE" + }, + { + "license_key": "opensc-openssl-openpace-exception-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openpace-exception-gpl", + "other_spdx_license_keys": [ + "LicenseRef-scancode-opensc-openssl-openpace-exception-gpl" + ], + "is_exception": true, + "is_deprecated": false, + "text": "Additional permission under GNU GPL version 3 section 7\n\nIf you modify this Program, or any covered work, by linking or combining it\nwith OpenSSL (or a modified version of that library), containing\nparts covered by the terms of OpenSSL's license, the licensors of\nthis Program grant you additional permission to convey the resulting work.\nCorresponding Source for a non-source form of such a combination shall include\nthe source code for the parts of OpenSSL used as well as that of the\ncovered work.\n\nIf you modify this Program, or any covered work, by linking or combining it\nwith OpenSC (or a modified version of that library), containing\nparts covered by the terms of OpenSC's license, the licensors of\nthis Program grant you additional permission to convey the resulting work. \nCorresponding Source for a non-source form of such a combination shall include\nthe source code for the parts of OpenSC used as well as that of the\ncovered work.", + "json": "opensc-openssl-openpace-exception-gpl.json", + "yaml": "opensc-openssl-openpace-exception-gpl.yml", + "html": "opensc-openssl-openpace-exception-gpl.html", + "license": "opensc-openssl-openpace-exception-gpl.LICENSE" + }, + { + "license_key": "openssh", + "category": "Permissive", + "spdx_license_key": "SSH-OpenSSH", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This file is part of the OpenSSH software.\n\nThe licences which components of this software fall under are as\nfollows. First, we will summarize and say that all components\nare under a BSD licence, or a licence more free than that.\n\nOpenSSH contains no GPL code.\n\n1)\n * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland\n * All rights reserved\n *\n * As far as I am concerned, the code I have written for this software\n * can be used freely for any purpose. Any derived versions of this\n * software must be clearly marked as such, and if the derived work is\n * incompatible with the protocol description in the RFC file, it must be\n * called by a name other than \"ssh\" or \"Secure Shell\".\n\n [Tatu continues]\n * However, I am not implying to give any licenses to any patents or\n * copyrights held by third parties, and the software includes parts that\n * are not under my direct control. As far as I know, all included\n * source code is used in accordance with the relevant license agreements\n * and can be used freely for any purpose (the GNU license being the most\n * restrictive); see below for details.\n\n [However, none of that term is relevant at this point in time. All of\n these restrictively licenced software components which he talks about\n have been removed from OpenSSH, i.e.,\n\n - RSA is no longer included, found in the OpenSSL library\n - IDEA is no longer included, its use is deprecated\n - DES is now external, in the OpenSSL library\n - GMP is no longer used, and instead we call BN code from OpenSSL\n - Zlib is now external, in a library\n - The make-ssh-known-hosts script is no longer included\n - TSS has been removed\n - MD5 is now external, in the OpenSSL library\n - RC4 support has been replaced with ARC4 support from OpenSSL\n - Blowfish is now external, in the OpenSSL library\n\n [The licence continues]\n\n Note that any information and cryptographic algorithms used in this\n software are publicly available on the Internet and at any major\n bookstore, scientific library, and patent office worldwide. More\n information can be found e.g. at \"http://www.cs.hut.fi/crypto\".\n\n The legal status of this program is some combination of all these\n permissions and restrictions. Use only at your own responsibility.\n You will be responsible for any legal consequences yourself; I am not\n making any claims whether possessing or using this is legal or not in\n your country, and I am not taking any responsibility on your behalf.\n\n\n\t\t\t NO WARRANTY\n\n BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\n FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\n OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\n PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\n OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\n TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\n PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\n REPAIR OR CORRECTION.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\n WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\n REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\n INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\n OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\n TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\n YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\n PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGES.\n\n2)\n The 32-bit CRC compensation attack detector in deattack.c was\n contributed by CORE SDI S.A. under a BSD-style license.\n\n * Cryptographic attack detector for ssh - source code\n *\n * Copyright (c) 1998 CORE SDI S.A., Buenos Aires, Argentina.\n *\n * All rights reserved. Redistribution and use in source and binary\n * forms, with or without modification, are permitted provided that\n * this copyright notice is retained.\n *\n * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n * WARRANTIES ARE DISCLAIMED. IN NO EVENT SHALL CORE SDI S.A. BE\n * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY OR\n * CONSEQUENTIAL DAMAGES RESULTING FROM THE USE OR MISUSE OF THIS\n * SOFTWARE.\n *\n * Ariel Futoransky \n * \n\n3)\n ssh-keyscan was contributed by David Mazieres under a BSD-style\n license.\n\n * Copyright 1995, 1996 by David Mazieres .\n *\n * Modification and redistribution in source and binary forms is\n * permitted provided that due credit is given to the author and the\n * OpenBSD project by leaving this copyright notice intact.\n\n4)\n The Rijndael implementation by Vincent Rijmen, Antoon Bosselaers\n and Paulo Barreto is in the public domain and distributed\n with the following license:\n\n * @version 3.0 (December 2000)\n *\n * Optimised ANSI C code for the Rijndael cipher (now AES)\n *\n * @author Vincent Rijmen \n * @author Antoon Bosselaers \n * @author Paulo Barreto \n *\n * This code is hereby placed in the public domain.\n *\n * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS\n * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE\n * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n5)\n One component of the ssh source code is under a 3-clause BSD license,\n held by the University of California, since we pulled these parts from\n original Berkeley code.\n\n * Copyright (c) 1983, 1990, 1992, 1993, 1995\n * The Regents of the University of California. All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\n6)\n Remaining components of the software are provided under a standard\n 2-term BSD licence with the following names as copyright holders:\n\n\tMarkus Friedl\n\tTheo de Raadt\n\tNiels Provos\n\tDug Song\n\tAaron Campbell\n\tDamien Miller\n\tKevin Steves\n\tDaniel Kouril\n\tWesley Griffin\n\tPer Allansson\n\tNils Nordman\n\tSimon Wilkinson\n\n Portable OpenSSH additionally includes code from the following copyright\n holders, also under the 2-term BSD license:\n\n\tBen Lindstrom\n\tTim Rice\n\tAndre Lucas\n\tChris Adams\n\tCorinna Vinschen\n\tCray Inc.\n\tDenis Parker\n\tGert Doering\n\tJakob Schlyter\n\tJason Downs\n\tJuha Yrj\u02c6l\u2030\n\tMichael Stone\n\tNetworks Associates Technology, Inc.\n\tSolar Designer\n\tTodd C. Miller\n\tWayne Schroeder\n\tWilliam Jones\n\tDarren Tucker\n\tSun Microsystems\n\tThe SCO Group\n\tDaniel Walsh\n\tRed Hat, Inc\n\tSimon Vallet / Genoscope\n\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n *\n * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n8) Portable OpenSSH contains the following additional licenses:\n\n a) md5crypt.c, md5crypt.h\n\n\t * \"THE BEER-WARE LICENSE\" (Revision 42):\n\t * wrote this file. As long as you retain this\n\t * notice you can do whatever you want with this stuff. If we meet\n\t * some day, and you think this stuff is worth it, you can buy me a\n\t * beer in return. Poul-Henning Kamp\n\n b) snprintf replacement\n\n\t* Copyright Patrick Powell 1995\n\t* This code is based on code written by Patrick Powell\n\t* (papowell@astart.com) It may be used for any purpose as long as this\n\t* notice remains intact on all source code distributions\n\n c) Compatibility code (openbsd-compat)\n\n Apart from the previously mentioned licenses, various pieces of code\n in the openbsd-compat/ subdirectory are licensed as follows:\n\n Some code is licensed under a 3-term BSD license, to the following\n copyright holders:\n\n\tTodd C. Miller\n\tTheo de Raadt\n\tDamien Miller\n\tEric P. Allman\n\tThe Regents of the University of California\n\tConstantin S. Svintsoff\n\n\t* Redistribution and use in source and binary forms, with or without\n\t* modification, are permitted provided that the following conditions\n\t* are met:\n\t* 1. Redistributions of source code must retain the above copyright\n\t* notice, this list of conditions and the following disclaimer.\n\t* 2. Redistributions in binary form must reproduce the above copyright\n\t* notice, this list of conditions and the following disclaimer in the\n\t* documentation and/or other materials provided with the distribution.\n\t* 3. Neither the name of the University nor the names of its contributors\n\t* may be used to endorse or promote products derived from this software\n\t* without specific prior written permission.\n\t*\n\t* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n\t* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n\t* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n\t* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n\t* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n\t* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n\t* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n\t* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n\t* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n\t* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n\t* SUCH DAMAGE.\n\n Some code is licensed under an ISC-style license, to the following\n copyright holders:\n\n\tInternet Software Consortium.\n\tTodd C. Miller\n\tReyk Floeter\n\tChad Mynhier\n\n\t* Permission to use, copy, modify, and distribute this software for any\n\t* purpose with or without fee is hereby granted, provided that the above\n\t* copyright notice and this permission notice appear in all copies.\n\t*\n\t* THE SOFTWARE IS PROVIDED \"AS IS\" AND TODD C. MILLER DISCLAIMS ALL\n\t* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n\t* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL TODD C. MILLER BE LIABLE\n\t* FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n\t* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n\t* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN\n\t* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n Some code is licensed under a MIT-style license to the following\n copyright holders:\n\n\tFree Software Foundation, Inc.\n\n\t* Permission is hereby granted, free of charge, to any person obtaining a *\n\t* copy of this software and associated documentation files (the *\n\t* \"Software\"), to deal in the Software without restriction, including *\n\t* without limitation the rights to use, copy, modify, merge, publish, *\n\t* distribute, distribute with modifications, sublicense, and/or sell *\n\t* copies of the Software, and to permit persons to whom the Software is *\n\t* furnished to do so, subject to the following conditions: *\n\t* *\n\t* The above copyright notice and this permission notice shall be included *\n\t* in all copies or substantial portions of the Software. *\n\t* *\n\t* THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS *\n\t* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *\n\t* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *\n\t* IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *\n\t* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *\n\t* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *\n\t* THE USE OR OTHER DEALINGS IN THE SOFTWARE. *\n\t* *\n\t* Except as contained in this notice, the name(s) of the above copyright *\n\t* holders shall not be used in advertising or otherwise to promote the *\n\t* sale, use or other dealings in this Software without prior written *\n\t* authorization. *\n\t****************************************************************************/\n\n\n------\n$OpenBSD: LICENCE,v 1.19 2004/08/30 09:18:08 markus Exp $", + "json": "openssh.json", + "yaml": "openssh.yml", + "html": "openssh.html", + "license": "openssh.LICENSE" + }, + { + "license_key": "openssl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-openssl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in\n the documentation and/or other materials provided with the\n distribution.\n\n3. All advertising materials mentioning features or use of this\n software must display the following acknowledgment:\n \"This product includes software developed by the OpenSSL Project\n for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)\"\n\n4. The names \"OpenSSL Toolkit\" and \"OpenSSL Project\" must not be used to\n endorse or promote products derived from this software without\n prior written permission. For written permission, please contact\n licensing@OpenSSL.org.\n\n5. Products derived from this software may not be called \"OpenSSL\"\n nor may \"OpenSSL\" appear in their names without prior written\n permission of the OpenSSL Project.\n\n6. Redistributions of any form whatsoever must retain the following\n acknowledgment:\n \"This product includes software developed by the OpenSSL Project\n for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)\"\n\nTHIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY\nEXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR\nITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\nOF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "openssl.json", + "yaml": "openssl.yml", + "html": "openssl.html", + "license": "openssl.LICENSE" + }, + { + "license_key": "openssl-exception-agpl-3.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, the copyright holders give permission to link the\ncode of portions of this program with the OpenSSL library under certain\nconditions as described in each individual source file and distribute\nlinked combinations including the program with the OpenSSL library. You\nmust comply with the GNU Affero General Public License in all respects for\nall of the code used other than as permitted herein. If you modify file(s)\nwith this exception, you may extend this exception to your version of the\nfile(s), but you are not obligated to do so. If you do not wish to do so,\ndelete this exception statement from your version. If you delete this\nexception statement from all source files in the program, then also delete\nit in the license file.", + "json": "openssl-exception-agpl-3.0.json", + "yaml": "openssl-exception-agpl-3.0.yml", + "html": "openssl-exception-agpl-3.0.html", + "license": "openssl-exception-agpl-3.0.LICENSE" + }, + { + "license_key": "openssl-exception-agpl-3.0-monit", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl3.0monit", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-agpl-3.0-monit" + ], + "is_exception": true, + "is_deprecated": false, + "text": " * In addition, as a special exception, the copyright holders give\n * permission to link the code of portions of this program with the\n * OpenSSL library under certain conditions as described in each\n * individual source file, and distribute linked combinations\n * including the two.\n *\n * You must obey the GNU Affero General Public License in all respects\n * for all of the code used other than OpenSSL.", + "json": "openssl-exception-agpl-3.0-monit.json", + "yaml": "openssl-exception-agpl-3.0-monit.yml", + "html": "openssl-exception-agpl-3.0-monit.html", + "license": "openssl-exception-agpl-3.0-monit.LICENSE" + }, + { + "license_key": "openssl-exception-agpl-3.0-plus", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl3.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-agpl-3.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "text": "In addition, as a special exception, the copyright holders give\npermission to link the code of portions of this program with the\nOpenSSL library under certain conditions as described in each\nindividual source file, and distribute linked combinations\nincluding the two.\n\nYou must obey the GNU Affero General Public License V3 or later in all respects\nfor all of the code used other than OpenSSL or the components mentioned\nabove. If you modify file(s) with this exception, you may extend this\nexception to your version of the file(s), but you are not obligated to\ndo so. If you do not wish to do so, delete this exception statement from your\nversion. If you delete this exception statement from all source files in the\nprogram, then also delete it here.", + "json": "openssl-exception-agpl-3.0-plus.json", + "yaml": "openssl-exception-agpl-3.0-plus.yml", + "html": "openssl-exception-agpl-3.0-plus.html", + "license": "openssl-exception-agpl-3.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-gpl-2.0", + "category": "Copyleft", + "spdx_license_key": "x11vnc-openssl-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "The OpenSSL Exception:\n\nIn addition, as a special exception, the copyright holders give\npermission to link the code of portions of this program with the\nOpenSSL library under certain conditions as described in each\nindividual source file, and distribute linked combinations\nincluding the two.\nYou must obey the GNU General Public License in all respects\nfor all of the code used other than OpenSSL. If you modify\nfile(s) with this exception, you may extend this exception to your\nversion of the file(s), but you are not obligated to do so. If you\ndo not wish to do so, delete this exception statement from your\nversion. If you delete this exception statement from all source\nfiles in the program, then also delete it here.", + "json": "openssl-exception-gpl-2.0.json", + "yaml": "openssl-exception-gpl-2.0.yml", + "html": "openssl-exception-gpl-2.0.html", + "license": "openssl-exception-gpl-2.0.LICENSE" + }, + { + "license_key": "openssl-exception-gpl-2.0-plus", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-gpl-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception to the GNU General Public License terms,\npermission is hereby granted to link the code of this program, with or\nwithout modification, with any version of the OpenSSL library and/or any\nversion of unRAR, and to distribute such linked combinations. You must\nobey the GNU GPL in all respects for all of the code used other than\nOpenSSL and unRAR. If you modify this program, you may extend this\nexception to your version of the program, but you are not obligated to\ndo so. (In other words, you may release your derived work under pure\nGNU GPL version 2 or later as published by the FSF.)", + "json": "openssl-exception-gpl-2.0-plus.json", + "yaml": "openssl-exception-gpl-2.0-plus.yml", + "html": "openssl-exception-gpl-2.0-plus.html", + "license": "openssl-exception-gpl-2.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-gpl-3.0-plus", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-gpl-3.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "In addition, as a special exception, the copyright holders give permission to\nlink the code of portions of this program with the OpenSSL library under certain\nconditions as described in each individual source file, and distribute linked\ncombinations including the two.\n\nYou must obey the GNU General Public License in all respects for all of the code\nused other than OpenSSL. If you modify file(s) with this exception, you may\nextend this exception to your version of the file(s), but you are not obligated\nto do so. If you do not wish to do so, delete this exception statement from\nyour version. If you delete this exception statement from all source files in\nthe program, then also delete it here.", + "json": "openssl-exception-gpl-3.0-plus.json", + "yaml": "openssl-exception-gpl-3.0-plus.yml", + "html": "openssl-exception-gpl-3.0-plus.html", + "license": "openssl-exception-gpl-3.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-lgpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "In addition, as a special exception, the copyright holders give\n permission to link the code of portions of this program with the\n OpenSSL library under certain conditions as described in each\n individual source file, and distribute linked combinations including\n the two. You must obey the GNU Lesser General Public License in all\n respects for all of the code used other than OpenSSL. If you modify\n file(s) with this exception, you may extend this exception to your\n version of the file(s), but you are not obligated to do so. If you do\n not wish to do so, delete this exception statement from your version.\n If you delete this exception statement from all source files in the\n program, then also delete it here.", + "json": "openssl-exception-lgpl.json", + "yaml": "openssl-exception-lgpl.yml", + "html": "openssl-exception-lgpl.html", + "license": "openssl-exception-lgpl.LICENSE" + }, + { + "license_key": "openssl-exception-lgpl-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl2.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-lgpl-2.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "text": "LICENSE EXCEPTION FOR OPENSSL\n\nIn addition, as a special exception, the copyright holders give\npermission to link the code of portions of this program with the\nOpenSSL library, and distribute linked combinations\nincluding the two.\nYou must obey the GNU Library General Public License in all respects\nfor all of the code used other than OpenSSL. If you modify\nfile(s) with this exception, you may extend this exception to your\nversion of the file(s), but you are not obligated to do so. If you\ndo not wish to do so, delete this exception statement from your\nversion. If you delete this exception statement from all source\nfiles in the program, then also delete it here.", + "json": "openssl-exception-lgpl-2.0-plus.json", + "yaml": "openssl-exception-lgpl-2.0-plus.yml", + "html": "openssl-exception-lgpl-2.0-plus.html", + "license": "openssl-exception-lgpl-2.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-lgpl-3.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl3.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-lgpl-3.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "text": "In addition, as a special exception, the copyright holders give permission to\nlink this program with the OpenSSL library (or with modified versions of OpenSSL\nthat use the same license as OpenSSL), and distribute linked combinations\nincluding the two.\n\nYou must obey the GNU Lesser General Public License in all respects for all of\nthe code used other than OpenSSL. If you modify file(s) with this exception,\nyou may extend this exception to your version of the file(s), but you are not\nobligated to do so. If you do not wish to do so, delete this exception statement\nfrom your version. If you delete this exception statement from all source files\nin the program, then also delete it here.", + "json": "openssl-exception-lgpl-3.0-plus.json", + "yaml": "openssl-exception-lgpl-3.0-plus.yml", + "html": "openssl-exception-lgpl-3.0-plus.html", + "license": "openssl-exception-lgpl-3.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-mongodb-sspl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-mongodb-sspl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, the copyright holders give permission to link the\ncode of portions of this program with the OpenSSL library under certain\nconditions as described in each individual source file and distribute\nlinked combinations including the program with the OpenSSL library. You\nmust comply with the Server Side Public License in all respects for\nall of the code used other than as permitted herein. If you modify file(s)\nwith this exception, you may extend this exception to your version of the\nfile(s), but you are not obligated to do so. If you do not wish to do so,\ndelete this exception statement from your version. If you delete this\nexception statement from all source files in the program, then also delete\nit in the license file.", + "json": "openssl-exception-mongodb-sspl.json", + "yaml": "openssl-exception-mongodb-sspl.yml", + "html": "openssl-exception-mongodb-sspl.html", + "license": "openssl-exception-mongodb-sspl.LICENSE" + }, + { + "license_key": "openssl-nokia-psk-contribution", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-openssl-nokia-psk-contribution", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "The portions of the attached software (\"Contribution\") is developed by\nNokia Corporation and is licensed pursuant to the OpenSSL open source\nlicense.\n\nThe Contribution, originally written by Mika Kousa and Pasi Eronen of\nNokia Corporation, consists of the \"PSK\" (Pre-Shared Key) ciphersuites\nsupport (see RFC 4279) to OpenSSL.\n\nNo patent licenses or other rights except those expressly stated in\nthe OpenSSL open source license shall be deemed granted or received\nexpressly, by implication, estoppel, or otherwise.\n\nNo assurances are provided by Nokia that the Contribution does not\ninfringe the patent or other intellectual property rights of any third\nparty or that the license provides you with all the necessary rights\nto make use of the Contribution.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. IN\nADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA\nSPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY\nOTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR\nOTHERWISE.", + "json": "openssl-nokia-psk-contribution.json", + "yaml": "openssl-nokia-psk-contribution.yml", + "html": "openssl-nokia-psk-contribution.html", + "license": "openssl-nokia-psk-contribution.LICENSE" + }, + { + "license_key": "openssl-ssleay", + "category": "Permissive", + "spdx_license_key": "OpenSSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "LICENSE ISSUES\n ==============\n\n The OpenSSL toolkit stays under a dual license, i.e. both the conditions of\n the OpenSSL License and the original SSLeay license apply to the toolkit.\n See below for the actual license texts. Actually both licenses are BSD-style\n Open Source licenses. In case of any license issues related to OpenSSL\n please contact openssl-core@openssl.org.\n\n OpenSSL License\n ---------------\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer. \n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in\n the documentation and/or other materials provided with the\n distribution.\n\n3. All advertising materials mentioning features or use of this\n software must display the following acknowledgment:\n \"This product includes software developed by the OpenSSL Project\n for use in the OpenSSL Toolkit. (http://www.openssl.org/)\"\n\n4. The names \"OpenSSL Toolkit\" and \"OpenSSL Project\" must not be used to\n endorse or promote products derived from this software without\n prior written permission. For written permission, please contact\n openssl-core@openssl.org.\n\n5. Products derived from this software may not be called \"OpenSSL\"\n nor may \"OpenSSL\" appear in their names without prior written\n permission of the OpenSSL Project.\n\n6. Redistributions of any form whatsoever must retain the following\n acknowledgment:\n \"This product includes software developed by the OpenSSL Project\n for use in the OpenSSL Toolkit (http://www.openssl.org/)\"\n\nTHIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY\nEXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR\nITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\nOF THE POSSIBILITY OF SUCH DAMAGE.\n\n\nThis product includes cryptographic software written by Eric Young\n(eay@cryptsoft.com). This product includes software written by Tim\nHudson (tjh@cryptsoft.com).\n\n\n Original SSLeay License\n -----------------------\n\nCopyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)\nAll rights reserved.\n\nThis package is an SSL implementation written\nby Eric Young (eay@cryptsoft.com).\nThe implementation was written so as to conform with Netscapes SSL.\n\nThis library is free for commercial and non-commercial use as long as\nthe following conditions are aheared to. The following conditions\napply to all code found in this distribution, be it the RC4, RSA,\nlhash, DES, etc., code; not just the SSL code. The SSL documentation\nincluded with this distribution is covered by the same copyright terms\nexcept that the holder is Tim Hudson (tjh@cryptsoft.com).\n\nCopyright remains Eric Young's, and as such any Copyright notices in\nthe code are not to be removed.\nIf this package is used in a product, Eric Young should be given attribution\nas the author of the parts of the library used.\nThis can be in the form of a textual message at program startup or\nin documentation (online or textual) provided with the package.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the copyright\n notice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n \"This product includes cryptographic software written by\n Eric Young (eay@cryptsoft.com)\"\n The word 'cryptographic' can be left out if the rouines from the library\n being used are not cryptographic related :-).\n4. If you include any Windows specific code (or a derivative thereof) from \n the apps directory (application code) you must include an acknowledgement:\n \"This product includes software written by Tim Hudson (tjh@cryptsoft.com)\"\n\nTHIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n\nThe licence and distribution terms for any publically available version or\nderivative of this code cannot be changed. i.e. this code cannot simply be\ncopied and put under another distribution licence\n[including the GNU Public Licence.]", + "json": "openssl-ssleay.json", + "yaml": "openssl-ssleay.yml", + "html": "openssl-ssleay.html", + "license": "openssl-ssleay.LICENSE" + }, + { + "license_key": "openvpn-as-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-openvpn-as-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OpenVPN Access Server End User License Agreement (OpenVPN-AS EULA)\n\n1. Copyright Notice: OpenVPN Access Server License;\nCopyright (c) 2009-2013 OpenVPN Technologies, Inc. All rights reserved.\n\"OpenVPN\" is a trademark of OpenVPN Technologies, Inc.\n\n2. Redistribution of OpenVPN Access Server binary forms and related documents,\nare permitted provided that redistributions of OpenVPN Access Server\u00a0binary\nforms and related documents reproduce the above copyright notice as well as a\ncomplete copy of this EULA.\n\n3. You agree not to reverse engineer, decompile, disassemble, modify, translate,\nmake any attempt to discover the source code of this software, or create\nderivative works from this software.\n\n4. The OpenVPN Access Server is bundled with other open source software\ncomponents, some of which fall under different licenses. By using\u00a0OpenVPN or any\nof the bundled components, you agree to be bound by the conditions of the\nlicense for each respective component. For more information, you can find our\ncomplete EULA (End-User License Agreement) on our website (http://openvpn.net),\nand a copy of the EULA is also distributed with the Access Server in\u00a0the file\n/usr/local/openvpn_as/license.txt.\n\n5. This software is provided \"as is\" and any expressed or implied warranties,\nincluding, but not limited to, the implied warranties of merchantability and\nfitness for a particular purpose are disclaimed. In no event shall OpenVPN\nTechnologies, Inc. be liable for any direct, indirect, incidental, special,\nexemplary, or consequential damages (including, but not limited to, procurement\nof substitute goods or services; loss of use, data, or profits; or business\ninterruption) however caused and on any theory of liability, whether in\ncontract, strict liability, or tort (including negligence or otherwise) arising\nin any way out of the use of this software, even if advised of the possibility\nof such damage.\n\n6. OpenVPN Technologies, Inc. is the sole distributor of OpenVPN Access Server\nlicenses. This agreement and licenses granted by it may not be assigned,\nsublicensed, or otherwise transferred by licensee without prior written consent\nof OpenVPN Technologies Inc. Any licenses violating this provision will be\nsubject to revocation and deactivation, and will not be eligible for refunds.\n\n7. A purchased license entitles you to use this software for the duration of\ntime denoted on your license key on any one (1) particular device, up to the\nconcurrent user limit specified by your license. Multiple license keys may be\nactivated to achieve a desired concurrency limit on this given device. Unless\notherwise prearranged with OpenVPN Technologies, Inc., concurrency counts on\nlicense keys are not to be divided for use amongst multiple devices. Upon\nactivation of the first purchased license key in this software, you agree to\nforego any free licenses or keys that were given to you for demonstration\npurposes, and as such, the free licenses will not appear after the activation of\na purchased key. You are responsible for the timely activation of these licenses\non your desired server of choice.\u00a0Refunds on purchased license keys are only\npossible within 30 days of purchase of license key, and then only if the license\nkey has not already been activated on a system. To request a refund, contact us\nthrough our support ticket system using the account you have used to purchase\nthe license key. Exceptions to this policy may be given for machines under\nfailover mode, and when the feature is used as directed in the OpenVPN Access\nServer user manual. In these circumstances, a user is granted one (1) license\nkey (per original license key) for use solely on failover purposes free of\ncharge. Other failover and/or load balancing use cases will not be eligible for\nthis exception, and a separate license key would have to be acquired to satisfy\nthe licensing requirements. To request a license exception, please file a\nsupport ticket in the OpenVPN Access Server ticketing system. A staff member\nwill be responsible for determining exception eligibility, and we reserve the\nright to decline any requests not meeting our eligibility criteria, or requests\nwhich we believe may be fraudulent in nature.\n\n8. Activating a license key ties it to the specific hardware/software\ncombination that it was activated on, and activated license keys are\nnontransferable. Substantial software and/or hardware changes may invalidate an\nactivated license. In case of substantial software and/or hardware changes,\ncaused by for example, but not limited to failure and subsequent repair or\nalterations of (virtualized) hardware/software, our software product will\nautomatically attempt to contact our online licensing systems to renegotiate the\nlicensing state. On any given license key, you are limited to three (3)\nautomatic renegotiations within the license key lifetime. After these\nrenegotiations are exhausted, the license key is considered invalid, and the\nactivation state will be locked to the last valid system configuration it was\nactivated on. OpenVPN Technologies, Inc. reserves the right to grant exceptions\nto this policy for license holders under extenuating circumstances, and such\nexceptions can be requested through a ticket via the OpenVPN Access Server\nticketing system.\n\n9. Once an activated license key expires or becomes invalid, the concurrency\nlimit on our software product will decrease by the amount of concurrent\nconnections previously granted by the license key. If all of your purchased\nlicense key(s) have expired, the product will revert to demonstration mode,\nwhich allows a maximum of two (2) concurrent users to be connected to your\nserver. Prior to your license expiration date(s), OpenVPN Technologies, Inc.\nwill attempt to remind you to renew your license(s) by sending periodic email\nmessages to the licensee email address on record. You are solely responsible for\nthe timely renewal of your license key(s) prior to their expiration if continued\noperation is expected after the license expiration date(s). OpenVPN\nTechnologies, Inc. will not be responsible for any misdirected and/or\nundeliverable email messages, nor does it have an obligation to contact you\nregarding your expiring license keys.\n\n10. Any valid license key holder is entitled to use our ticketing system for\nsupport questions or issues specifically related to the OpenVPN Access Server\nproduct. To file a ticket, go to our website at http://openvpn.net/ and sign in\nusing the account that was registered and used to purchase the license key(s).\nYou can then access the support ticket system through our website and submit a\nsupport ticket. Tickets filed in the ticketing system are answered on a best-\neffort basis. OpenVPN Technologies, Inc. staff reserve the right to limit\nresponses to users of our demo / expired licenses, as well as requests that\nsubstantively deviate from the OpenVPN Access Server product line. Tickets\nrelated to the open source version of OpenVPN will not be handled here.\n\n11. Purchasing a license key does not entitle you to any special rights or\nprivileges, except the ones explicitly outlined in this user agreement. Unless\notherwise arranged prior to your purchase with OpenVPN Technologies, Inc.,\nsoftware maintenance costs and terms are subject to change after your initial\npurchase without notice. In case of price decreases or special promotions,\nOpenVPN Technologies, Inc. will not retrospectively apply credits or price\nadjustments toward any licenses that have already been issued. Furthermore, no\ndiscounts will be given for license maintenance renewals unless this is\nspecified in your contract with OpenVPN Technologies, Inc.", + "json": "openvpn-as-eula.json", + "yaml": "openvpn-as-eula.yml", + "html": "openvpn-as-eula.html", + "license": "openvpn-as-eula.LICENSE" + }, + { + "license_key": "openvpn-openssl-exception", + "category": "Copyleft Limited", + "spdx_license_key": "openvpn-openssl-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Special exception for linking OpenVPN with OpenSSL:\n\nIn addition, as a special exception, OpenVPN Technologies, Inc. gives permission\nto link the code of this program with the OpenSSL Library (or with modified\nversions of OpenSSL that use the same license as OpenSSL), and distribute linked\ncombinations including the two. You must obey the GNU General Public License in\nall respects for all of the code used other than OpenSSL. If you modify this\nfile, you may extend this exception to your version of the file, but you are not\nobligated to do so. If you do not wish to do so, delete this exception statement\nfrom your version.", + "json": "openvpn-openssl-exception.json", + "yaml": "openvpn-openssl-exception.yml", + "html": "openvpn-openssl-exception.html", + "license": "openvpn-openssl-exception.LICENSE" + }, + { + "license_key": "opera-eula-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-opera-eula-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "End User License Agreement\nOpera for Computers\nLast updated: December 14, 2018\n\nThis end user license agreement (\u201cEULA\u201d) governs your download and/or use of the executable code for the Opera for Computers desktop software application, including any update or upgrade thereto (\u201cSoftware\u201d). This EULA forms a binding contract between you and Opera Unite Pte. Ltd., a Singapore company with a registered address at 8 Burn Road #07-07 Trivex, Singapore 369977 (\u201cOpera\u201d).\n\nTerms & Conditions\n1. This is a contract. This EULA constitutes a contract between you and Opera. You may not use the Software if you do not accept the terms in this EULA. By downloading and/or using the Software, you agree to be bound by all the terms and conditions set forth in this EULA. If you are under thirteen (13) years of age, or at least thirteen (13) years of age but a minor where you live, you must have your parent or legal guardian accept this EULA on your behalf and approve your use of the Software.\n\n2. You are only granted a limited license to use the Software. Subject to the terms and conditions of this EULA, Opera hereby grants you a personal, limited, non-exclusive, non-transferable, non-sublicensable license to:\n\n(A) use the executable code version of the Software solely as installed on your personal computer; and\n\n(B) reproduce and distribute the Software solely as included in an application repository for a desktop open source operating system distribution PROVIDED THAT in all cases the Software is distributed: (i) without modification; (ii) free of charge to end-users; and (iii) with a copy of this EULA. Distribution for embedded open source operating systems is not permitted. For the avoidance of doubt, the Software must be distributed without modification (including as to the default search engine(s) in the Software settings), both at the time of distribution as well as after the Software is installed.\n\nYou may only use the Software as expressly authorized in this Section 2.\n\n3. You must respect our rights in the Software. Unless expressly permitted by law, you may not copy, decompile, reverse engineer, disassemble, attempt to derive the source code of, modify, or create derivative works of the Software. You may not remove, obscure, or alter any copyright notice or other proprietary rights notices affixed to or contained within the Software. You may not separate the component programs of the Software for use on different computers or sublicense, lease, rent, loan, or distribute the Software to any third party. You may not permit, direct or authorize any third party to take any action with respect to the Software which is inconsistent with the terms set forth in this EULA.\n\n4. The Software contains our valuable intellectual property. You acknowledge and agree that the Software, including its sequence, structure, organization, source code and applicable documentation, contains valuable trade secrets and other intellectual property of Opera and its suppliers. The Software is licensed and not sold to you, and no title or ownership to such Software or the intellectual property rights embodied therein is granted to you. The Software is the exclusive property of Opera and its suppliers, and all rights in and to the Software not expressly granted to you in this Agreement are reserved. Nothing in this EULA will be deemed to grant, by implication, estoppel or otherwise, a license under any existing or future patents of Opera, except to the extent necessary for you to use the Software as expressly permitted under this EULA. You acknowledge and agree that any actual or threatened breach of this EULA will constitute immediate, irreparable harm to Opera for which monetary damages would be an inadequate remedy, and that injunctive relief is an appropriate remedy for any such breach or violation.\n\n5. Components from third parties may be delivered along with the Software. The Software is delivered along with certain software components provided by third parties (\u201cThird Party Software\u201d). Opera shall not be responsible for any such Third-Party Software. Third-Party Software, particularly open source software, may be subject to separate license terms included with, or contained in the setup installation segments of such Third-Party Software. The terms set forth in this EULA do not apply to Third-Party Software to the extent they are inconsistent with such Third-Party Software licenses. This EULA governs your use of the Software in executable form. Source code for any open source Third-Party Software delivered along with the Software can be obtained at http://sourcecode.opera.com or by sending an email message to opensource@opera.com.\n\n6. The Software may provide for access to additional services. Various services may be offered where available via or as integrated into the Software (\u201cServices\u201d). By using any such Services, you agreed to the terms of service at https://www.opera.com/terms (\u201cTerms of Service\u201d). The Terms of Service are incorporated into this EULA by this reference. As is more fully explained in the Terms of Service, some Services are offered by Opera, others by third parties (which may be subject to separate terms \u2013 please refer to the Terms of Service for more information). Opera reserves the right at any time and from time to time to modify or discontinue, temporarily or permanently, the Services (or any part thereof) with or without notice. You agree that Opera shall not be liable to you or to any third party for any modification, suspension or discontinuance of the Services.\n\n7. Our Software and Services are ad-supported. The Software is free to download and our Services are generally provided free of charge. Opera incurs substantial development, collocation and bandwidth expenses in doing this. To support our business and continue providing you with the Software and Services for free, we will display the advertisements of select partners to you. By using our Software and Services, you consent to the placement of such advertisements within the Software and Services.\n\n8. Your privacy is important to us. Opera takes the protection and security of its users\u2019 information very seriously and will treat any and all such information in accordance with our privacy statement, which is currently posted at https://www.opera.com/privacy (\u201cPrivacy Statement\u201d). The Privacy Statement is incorporated into this EULA by this reference. You agree to the use of your data in accordance with Opera\u2019s Privacy Statement.\n\n9. Your license to use the Software terminates if you breach this EULA. This EULA will commence upon your download of the Software and continue in perpetuity unless terminated earlier as provided herein. This EULA will immediately terminate upon your breach of any of the terms or conditions set forth herein. Upon the termination of the EULA, you will discontinue all use of the Software, promptly destroy or have destroyed the Software and any copies thereof, and, upon request by Opera, certify in writing that such destruction has taken place. These remedies are cumulative and in addition to any other remedies which may be available. Section 1, as well as Sections 3 through 14 of this EULA shall survive termination.\n\n10. The Software is provided without any warranties or guarantees. THE SOFTWARE IS PROVIDED \u201cAS IS\u201d, AND OPERA DISCLAIMS ALL WARRANTIES WITH REGARD TO THE SOFTWARE WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR USE, SATISFACTORY QUALITY, OR QUIET ENJOYMENT. OPERA DOES NOT WARRANT THAT THE USE OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR FREE OR THAT THE SOFTWARE DOES NOT CONTAIN ANY VIRUSES. THIS WARRANTY DISCLAIMER IS A FUNDAMENTAL ELEMENT OF THE BASIS OF THE BARGAIN BETWEEN YOU AND OPERA. OPERA WOULD NOT PROVIDE THE SOFTWARE ABSENT SUCH DISCLAIMER. NO REPRESENTATIONS OR WARRANTIES ARE MADE BY ANY OF OPERA\u2019S CUSTOMERS OR SUPPLIERS UNDER OR BY VIRTUE OF THIS AGREEMENT. IF YOU ARE DISSATISFIED WITH ANY PORTION OF THE SOFTWARE, OR WITH ANY OF THESE TERMS, YOUR SOLE AND EXCLUSIVE REMEDY IS TO DISCONTINUE USING THE SOFTWARE.\n\n11. Opera is not liable for any damages you may incur. IN NO EVENT SHALL OPERA, ITS AFFILIATES, OR THEIR RESPECTIVE SUPPLIERS OR CUSTOMERS BE LIABLE FOR ANY INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR INDIRECT DAMAGES OF ANY KIND (INCLUDING WITHOUT LIMITATION DAMAGES FOR INTERRUPTION OF BUSINESS, LOST DATA, LOST PROFITS, OR THE LIKE) REGARDLESS OF THE FORM OF ACTION, WHETHER IN CONTRACT, TORT (INCLUDING WITHOUT LIMITATION NEGLIGENCE), PRODUCT LIABILITY, OR OTHER THEORY, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN NO EVENT WILL THE CUMULATIVE LIABILITY OF OPERA ARISING OUT OF OR RELATED TO THIS AGREEMENT EXCEED THE AMOUNT PAID TO OPERA IN RESPECT OF THE SOFTWARE GIVING RISE TO THE CLAIM OR, IF NO FEES WERE PAID, THEN FIVE HUNDRED EUROS. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE FOREGOING EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. THIS LIMITATION OF LIABILITY WILL APPLY NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY SET FORTH HEREIN. THIS LIMITATION OF LIABILITY IS A FUNDAMENTAL ELEMENT OF THE BASIS OF THE BARGAIN BETWEEN YOU AND OPERA. OPERA WOULD NOT PROVIDE THE SOFTWARE TO YOU ABSENT SUCH LIMITATION.\n\n12. This contract is based on English law. This EULA will be governed by the laws of England and Wales, without giving effect to any conflicts of law principles that may require the application of the laws of a different country. Any and all disputes arising out of or in connection with this EULA, including any question regarding its existence, validity or termination, shall be referred to and finally resolved by arbitration in English in accordance with the UNCITRAL Arbitration Rules for the time being in force at the commencement of the arbitration. The place of arbitration shall be Singapore before a tribunal of three arbitrators, one to be appointed by each of the parties and the third by the two so chosen, unless the parties have agreed to the appointment of a sole arbitrator. The parties agree that the seat of the arbitration shall remain in London. Notwithstanding this, you agree that Opera shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction. If any provision of this EULA is determined by a court of competent jurisdiction to be invalid, illegal, or unenforceable, the remaining provisions of this EULA shall not be affected or impaired thereby\n\n13. Opera may modify these terms. Opera may update the terms of this EULA, the Privacy Statement or the Terms of Service. The current version of this EULA is posted at https://www.opera.com/eula/computers, the latest version of the Privacy Statement is posted at https://www.opera.com/privacy, and the Terms of Service are posted at https://www.opera.com/terms. It is your responsibility to remain informed of any changes as you are bound by the latest version of the EULA, Privacy Statement and Terms of Service.\n\n14. General. You acknowledge and agree that the Software may contain cryptographic functionality the export of which may be restricted under applicable export control law. You will comply with all applicable laws and regulations in your activities with regard to the Software. You will not export or re-export the Software in violation of such laws or regulations or without all required licenses and authorizations. You may not assign or transfer this contract without obtaining Opera\u2019s prior written consent, and any purported assignment or transfer in violation of this restriction will be null and void.", + "json": "opera-eula-2018.json", + "yaml": "opera-eula-2018.yml", + "html": "opera-eula-2018.html", + "license": "opera-eula-2018.LICENSE" + }, + { + "license_key": "opera-eula-eea-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-opera-eula-eea-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "End User License Agreement\nOpera for Computers\nLast updated: December 14, 2018\n\nThis end user license agreement (\u201cEULA\u201d) governs your download and/or use of the executable code for the Opera for Computers desktop software application, including any update or upgrade thereto (\u201cSoftware\u201d). This EULA forms a binding contract between you and Opera Software AS, a Norwegian company with an address at P.O. Box 4214 Nydalen, NO-0401 Oslo, Norway (\u201cOpera\u201d).\n\nTerms & Conditions\n1. This is a contract. This EULA constitutes a contract between you and Opera. You may not use the Software if you do not accept the terms in this EULA. By downloading and/or using the Software, you agree to be bound by all the terms and conditions set forth in this EULA. If you are under thirteen (13) years of age, or at least thirteen (13) years of age but a minor where you live, you must have your parent or legal guardian accept this EULA on your behalf and approve your use of the Software.\n\n2. You are only granted a limited license to use the Software. Subject to the terms and conditions of this EULA, Opera hereby grants you a personal, limited, non-exclusive, non-transferable, non-sublicensable license to:\n\n(A) use the executable code version of the Software solely as installed on your personal computer; and\n\n(B) reproduce and distribute the Software solely as included in an application repository for a desktop open source operating system distribution PROVIDED THAT in all cases the Software is distributed: (i) without modification; (ii) free of charge to end-users; and (iii) with a copy of this EULA. Distribution for embedded open source operating systems is not permitted. For the avoidance of doubt, the Software must be distributed without modification (including as to the default search engine(s) in the Software settings), both at the time of distribution as well as after the Software is installed.\n\nYou may only use the Software as expressly authorized in this Section 2.\n\n3. You must respect our rights in the Software. Unless expressly permitted by law, you may not copy, decompile, reverse engineer, disassemble, attempt to derive the source code of, modify, or create derivative works of the Software. You may not remove, obscure, or alter any copyright notice or other proprietary rights notices affixed to or contained within the Software. You may not separate the component programs of the Software for use on different computers or sublicense, lease, rent, loan, or distribute the Software to any third party. You may not permit, direct or authorize any third party to take any action with respect to the Software which is inconsistent with the terms set forth in this EULA.\n\n4. The Software contains our valuable intellectual property. You acknowledge and agree that the Software, including its sequence, structure, organization, source code and applicable documentation, contains valuable trade secrets and other intellectual property of Opera and its suppliers. The Software is licensed and not sold to you, and no title or ownership to such Software or the intellectual property rights embodied therein is granted to you. The Software is the exclusive property of Opera and its suppliers, and all rights in and to the Software not expressly granted to you in this Agreement are reserved. Nothing in this EULA will be deemed to grant, by implication, estoppel or otherwise, a license under any existing or future patents of Opera, except to the extent necessary for you to use the Software as expressly permitted under this EULA. You acknowledge and agree that any actual or threatened breach of this EULA will constitute immediate, irreparable harm to Opera for which monetary damages would be an inadequate remedy, and that injunctive relief is an appropriate remedy for any such breach or violation.\n\n5. Components from third parties may be delivered along with the Software. The Software is delivered along with certain software components provided by third parties (\u201cThird Party Software\u201d). Opera shall not be responsible for any such Third-Party Software. Third-Party Software, particularly open source software, may be subject to separate license terms included with, or contained in the setup installation segments of such Third-Party Software. The terms set forth in this EULA do not apply to Third-Party Software to the extent they are inconsistent with such Third-Party Software licenses. This EULA governs your use of the Software in executable form. Source code for any open source Third-Party Software delivered along with the Software can be obtained at http://sourcecode.opera.com or by sending an email message to opensource@opera.com.\n\n6. The Software may provide for access to additional services. Various services may be offered where available via or as integrated into the Software (\u201cServices\u201d). By using any such Services, you agreed to the terms of service at https://www.opera.com/terms (\u201cTerms of Service\u201d). The Terms of Service are incorporated into this EULA by this reference. As is more fully explained in the Terms of Service, some Services are offered by Opera, others by third parties (which may be subject to separate terms \u2013 please refer to the Terms of Service for more information). Opera reserves the right at any time and from time to time to modify or discontinue, temporarily or permanently, the Services (or any part thereof) with or without notice. You agree that Opera shall not be liable to you or to any third party for any modification, suspension or discontinuance of the Services.\n\n7. Our Software and Services are ad-supported. The Software is free to download and our Services are generally provided free of charge. Opera incurs substantial development, collocation and bandwidth expenses in doing this. To support our business and continue providing you with the Software and Services for free, we will display the advertisements of select partners to you. By using our Software and Services, you consent to the placement of such advertisements within the Software and Services.\n\n8. Your privacy is important to us. Opera takes the protection and security of its users\u2019 information very seriously and will treat any and all such information in accordance with our privacy statement, which is currently posted at https://www.opera.com/privacy (\u201cPrivacy Statement\u201d). The Privacy Statement is incorporated into this EULA by this reference. You agree to the use of your data in accordance with Opera\u2019s Privacy Statement.\n\n9. Your license to use the Software terminates if you breach this EULA. This EULA will commence upon your download of the Software and continue in perpetuity unless terminated earlier as provided herein. This EULA will immediately terminate upon your breach of any of the terms or conditions set forth herein. Upon the termination of the EULA, you will discontinue all use of the Software, promptly destroy or have destroyed the Software and any copies thereof, and, upon request by Opera, certify in writing that such destruction has taken place. These remedies are cumulative and in addition to any other remedies which may be available. Section 1, as well as Sections 3 through 14 of this EULA shall survive termination.\n\n10. The Software is provided without any warranties or guarantees. THE SOFTWARE IS PROVIDED \u201cAS IS\u201d, AND OPERA DISCLAIMS ALL WARRANTIES WITH REGARD TO THE SOFTWARE WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR USE, SATISFACTORY QUALITY, OR QUIET ENJOYMENT. OPERA DOES NOT WARRANT THAT THE USE OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR FREE OR THAT THE SOFTWARE DOES NOT CONTAIN ANY VIRUSES. THIS WARRANTY DISCLAIMER IS A FUNDAMENTAL ELEMENT OF THE BASIS OF THE BARGAIN BETWEEN YOU AND OPERA. OPERA WOULD NOT PROVIDE THE SOFTWARE ABSENT SUCH DISCLAIMER. NO REPRESENTATIONS OR WARRANTIES ARE MADE BY ANY OF OPERA\u2019S CUSTOMERS OR SUPPLIERS UNDER OR BY VIRTUE OF THIS AGREEMENT. IF YOU ARE DISSATISFIED WITH ANY PORTION OF THE SOFTWARE, OR WITH ANY OF THESE TERMS, YOUR SOLE AND EXCLUSIVE REMEDY IS TO DISCONTINUE USING THE SOFTWARE.\n\n11. Opera is not liable for any damages you may incur. IN NO EVENT SHALL OPERA, ITS AFFILIATES, OR THEIR RESPECTIVE SUPPLIERS OR CUSTOMERS BE LIABLE FOR ANY INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR INDIRECT DAMAGES OF ANY KIND (INCLUDING WITHOUT LIMITATION DAMAGES FOR INTERRUPTION OF BUSINESS, LOST DATA, LOST PROFITS, OR THE LIKE) REGARDLESS OF THE FORM OF ACTION, WHETHER IN CONTRACT, TORT (INCLUDING WITHOUT LIMITATION NEGLIGENCE), PRODUCT LIABILITY, OR OTHER THEORY, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN NO EVENT WILL THE CUMULATIVE LIABILITY OF OPERA ARISING OUT OF OR RELATED TO THIS AGREEMENT EXCEED THE AMOUNT PAID TO OPERA IN RESPECT OF THE SOFTWARE GIVING RISE TO THE CLAIM OR, IF NO FEES WERE PAID, THEN FIVE HUNDRED EUROS. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE FOREGOING EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. THIS LIMITATION OF LIABILITY WILL APPLY NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY SET FORTH HEREIN. THIS LIMITATION OF LIABILITY IS A FUNDAMENTAL ELEMENT OF THE BASIS OF THE BARGAIN BETWEEN YOU AND OPERA. OPERA WOULD NOT PROVIDE THE SOFTWARE TO YOU ABSENT SUCH LIMITATION.\n\n12. This contract is based on Norwegian law. This EULA will be governed by the laws of Norway without giving effect to any conflicts of law principles that may require the application of the laws of a different country. The United Nations Convention on Contracts for the International Sale of Goods does not apply to this Agreement. All actions or proceedings arising under or related to this Agreement must be brought in the Oslo City Court, and you hereby agree to irrevocably submit to the exclusive jurisdiction and venue of any such court in all such actions or proceedings. Notwithstanding this, you agree that Opera shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction. If any provision of this EULA is determined by a court of competent jurisdiction to be invalid, illegal, or unenforceable, the remaining provisions of this EULA shall not be affected or impaired thereby.\n\n13. Opera may modify these Terms. Opera may update the terms of this EULA, the Privacy Statement or the Terms of Service. The current version of this EULA is posted at https://www.opera.com/eula/computers, the latest version of the Privacy Statement is posted at https://www.opera.com/privacy, and the Terms of Service are posted at https://www.opera.com/terms. It is your responsibility to remain informed of any changes as you are bound by the latest version of the EULA, Privacy Statement and Terms of Service.\n\n14. General. You acknowledge and agree that the Software may contain cryptographic functionality the export of which may be restricted under applicable export control law. You will comply with all applicable laws and regulations in your activities with regard to the Software. You will not export or re-export the Software in violation of such laws or regulations or without all required licenses and authorizations. You may not assign or transfer this contract without obtaining Opera\u2019s prior written consent, and any purported assignment or transfer in violation of this restriction will be null and void.", + "json": "opera-eula-eea-2018.json", + "yaml": "opera-eula-eea-2018.yml", + "html": "opera-eula-eea-2018.html", + "license": "opera-eula-eea-2018.LICENSE" + }, + { + "license_key": "opera-widget-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-opera-widget-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OPERA Widget License Version 1. 0\n\u00a9 Copyright 2006 Opera Software ASA. All rights reserved. \n\nOPERA SOFTWARE ASA (OPERA) IS WILLING TO PERMIT USE OF THIS SOFTWARE BY \nYOU, ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED \nIN THIS DOCUMENT. PLEASE READ THE TERMS AND CONDITIONS OF THIS AGREEMENT \nCAREFULLY. IF YOU ARE NOT WILLING TO BE BOUND, YOU ARE NOT ALLOWED TO \nACCESS THE CONTENTS OF, STUDY OR MAKE USE OF THE SOFTWARE IN ANY WAY. \n\n\nTerms of Agreement\n\n\n1. Definitions\n\ta) \"Original Code\" means:\nThe original version of the program accompanying this Agreement as \nreleased by Opera Software ASA (\"OPERA\") , including source code, object \ncode and documentation, if any. \n\tb) \"Covered Code\" means:\nThe Original Source Code, Contributions, the combination of the Original \nCode and Contributions, and/or any respective portions thereof. \n\tc) \"Contribution\" means:\nin the case of OPERA, the Original Code, and\nin the case of each Contributor, changes to the Original code, and \nadditions to the Original Code; where such changes and/or additions to \nthe Original Code originate from and are distributed by that particular \nContributor. A Contribution 'originates' from a Contributor if it was \nadded to the Original Code by such Contributor itself or anyone acting \non such Contributor's behalf. \nContributions do not include additions to the Original Code which: (i) \nare separate modules of software distributed in conjunction with the \nOriginal Code under their own license agreement, and (ii) are not \nderivative works of the Original Code. \n\td) \"Contributor\" means:\nOPERA and any other entity that distributes the Covered Code. \n\te) \"Recipient\" means:\nAnyone who receives the Covered Code under this Agreement, including all \nContributors. \n\tf) \"Larger Work\" means:\nA work which combines Covered Code or portions thereof with code not \ngoverned by the terms of this Agreement, specifically additions to the \nOriginal Code which: (i) are separate modules of software distributed in \nconjunction with the Original Code under their own license agreement, \nand (ii) are not derivative works of the Original Code. \n\n\n2. Grant of Rights\n\ta) Subject to the terms of this Agreement, each Contributor hereby grants \nRecipient a non-exclusive, worldwide, royalty-free copyright license to \nreproduce, prepare derivative works of, publicly display, publicly \nperform, distribute and sublicense the Contribution of such Contributor, \nif any, and such derivative works, in source code and object code form. \nThe limited license granted in this Section is only for the integration \nof the Contribution with or for the use of the Contribution in \nconnection with other proprietary software of OPERA, including but not \nlimited to OPERA\u2019s browser software. \n\tb) Recipient understands that although each Contributor grants the \nlicenses to its Contributions set forth herein, no assurances are \nprovided by any Contributor that the Covered Code does not infringe the \npatent or other intellectual property rights of any other entity. Each \nContributor disclaims any liability to Recipient for claims brought by \nany other entity based on infringement of intellectual property rights \nor otherwise. As a condition to exercising the rights and licenses \ngranted hereunder, each Recipient hereby assumes sole responsibility to \nsecure any other intellectual property rights needed, if any. \n\tc) Each Contributor represents that to its knowledge it has sufficient \ncopyright rights in its Contribution, if any, to grant the copyright \nlicense set forth in this Agreement. \n\n\n3. Requirements\n\ta) A Contributor may choose to distribute the Larger Work under its own \nlicense agreement, provided that: \n\t\ti. it complies with the terms and conditions of this Agreement; \n\t\tii. and its license agreement: \n\t\t\t1. effectively disclaims on behalf of all Contributors all warranties and \nconditions, express and implied, including warranties or conditions of \ntitle and non-infringement, and implied warranties or conditions of \nmerchantability and fitness for a particular purpose; \n\t\t\t2. effectively excludes on behalf of all Contributors all liability for \ndamages, including direct, indirect, special, incidental and \nconsequential damages, such as lost profits; \n\t\t\t3. states that any provisions which differ from this Agreement are \noffered by that Contributor alone and not by any other party; \n\t\t\t4. states that the Contribution only may be integrated with or used with \nother proprietary software of OPERA, including but not limited to \nOPERA\u2019s browser software. \n\t\t\t5. and states that source code for the Covered Code is available from \nsuch Contributor, and informs licensees how to obtain it in a reasonable \nmanner on or through a medium customarily used for software exchange. \n\tb) When the Covered Code is made available: \n\t\ti. it must be made available under this Agreement; and a copy of this \nAgreement must be included with each copy of the Covered Code. \n\t\tii. Each Contributor must duplicate, to the extent it does not already \nexist, the notice in Exhibit A in each file of the Covered Code of all \nContributions, and cause the modified files to carry prominent notices \nstating that the contributor changed the files and the date of any \nchange. \n\t\tiii. In addition, each Contributor must identify itself as the originator \nof its Contribution, if any, in a manner that reasonably allows \nsubsequent Recipients to identify the originator of the Contribution. \n\n\n4. No Warranty \nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE COVERED CODE IS \nPROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY \nKIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY \nWARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR \nFITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible \nfor determining the appropriateness of using and distributing the \nCovered Code for commercial and non-commercial purposes and assumes all \nrisks associated with its exercise of rights under this Agreement, \nincluding but not limited to the risks and costs of Covered Code errors, \ncompliance with applicable laws, damage to or loss of data, code or \nequipment, and unavailability or interruption of operations.\n\n\n5. Disclaimer of Liability \nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR \nANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING \nWITHOUT LIMITATION LOST PROFITS) , HOWEVER CAUSED AND ON ANY THEORY OF \nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING \nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR \nDISTRIBUTION OF THE COVERED CODE OR THE EXERCISE OF ANY RIGHTS GRANTED \nHEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \n\n\n6. General \nIf any provision of this Agreement is invalid or unenforceable under \napplicable law, it shall not affect the validity or enforceability of \nthe remainder of the terms of this Agreement, and without further action \nby the parties hereto, such provision shall be reformed to the minimum \nextent necessary to make such provision valid and enforceable. \n\nAll Recipient's rights under this Agreement shall terminate if it fails \nto comply with any of the material terms or conditions of this Agreement \nand does not cure such failure in a reasonable period of time after \nbecoming aware of such noncompliance. If all Recipient's rights under \nthis Agreement terminate, Recipient agrees to cease use and distribution \nof the Covered Code as soon as reasonably practicable. However, \nRecipient's obligations under this Agreement and any licenses granted by \nRecipient relating to the Covered Code shall continue and survive. \n\nOPERA may publish new versions (including revisions) of this Agreement \nfrom time to time. Each new version of the Agreement will be given a \ndistinguishing version number. The Covered Code (including \nContributions) may always be distributed subject to the version of the \nAgreement under which it was received. In addition, after a new version \nof the Agreement is published, Contributor may elect to distribute the \nCovered Code (including its Contributions) under the new version. No one \nother than OPERA has the right to modify this Agreement. Except as \nexpressly stated in Section 2(a) , Recipient receives no rights or \nlicenses to the intellectual property of any Contributor under this \nAgreement, whether expressly, by implication, estoppel or otherwise. All \nrights in the Covered Code not expressly granted under this Agreement \nare reserved. \n\nThis Agreement is governed by the laws of Norway. Any and all disputes \narising out of the rights and obligations in this Agreement shall be \nsubmitted to ordinary court proceedings. You accept the Oslo City Court \nas legal venue under this Agreement.", + "json": "opera-widget-1.0.json", + "yaml": "opera-widget-1.0.yml", + "html": "opera-widget-1.0.html", + "license": "opera-widget-1.0.LICENSE" + }, + { + "license_key": "opl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-opl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OpenContent License (OPL)\nVersion 1.0, July 14. 1998\n\nThis document outlines the principles underlying the OpenContent (OC) movement and may be redistributed provided it remains unaltered. For legal purposes, this document is the license under which OpenContent is made available for use.\n\nThe original version of this document may be found at http://www.opencontent.org/opl.html\n\nLICENSE\n\nTerms and Conditions for Copying, Distributing, and Modifying\n\nItems other than copying, distributing, and modifying the Content with which this license was distributed (such as using, etc.) are outside the scope of this license.\n\n1. You may copy and distribute exact replicas of the OpenContent (OC) 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 OC a copy of this License along with the OC. You may at your option charge a fee for the media and/or handling involved in creating a unique copy of the OC for use offline, you may at your option offer instructional support for the OC in exchange for a fee, or you may at your option offer warranty in exchange for a fee. You may not charge a fee for the OC itself. You may not charge a fee for the sole service of providing access to and/or use of the OC via a network (e.g. the Internet), whether it be via the world wide web, FTP, or any other method.\n\n2. You may modify your copy or copies of the OpenContent or any portion of it, thus forming works based on the Content, and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:\n\na) You must cause the modified content to carry prominent notices stating that you changed it, the exact nature and content of the changes, and the date of any change.\n\nb) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the OC or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License, unless otherwise permitted under applicable Fair Use law.\n\nThese requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the OC, 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 OC, 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. Exceptions are made to this requirement to release modified works free of charge under this license only in compliance with Fair Use law where applicable.\n\n3. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to copy, distribute or modify the OC. These actions are prohibited by law if you do not accept this License. Therefore, by distributing or translating the OC, or by deriving works herefrom, you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or translating the OC.\n\nNO WARRANTY\n4. BECAUSE THE OPENCONTENT (OC) IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE OC, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE OC \"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 OF USE OF THE OC IS WITH YOU. SHOULD THE OC PROVE FAULTY, INACCURATE, OR OTHERWISE UNACCEPTABLE YOU ASSUME THE COST OF ALL NECESSARY REPAIR OR CORRECTION.\n\n5. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MIRROR AND/OR REDISTRIBUTE THE OC 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 OC, EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.", + "json": "opl-1.0.json", + "yaml": "opl-1.0.yml", + "html": "opl-1.0.html", + "license": "opl-1.0.LICENSE" + }, + { + "license_key": "opml-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-opml-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and these paragraphs are included on all such copies and derivative works.\n\nThis document may not be modified in any way, such as by removing the copyright notice or references to UserLand or other organizations. Further, while these copyright restrictions apply to the written OPML specification, no claim of ownership is made by UserLand to the format it describes. Any party may, for commercial or non-commercial purposes, implement this protocol without royalty or license fee to UserLand. The limited permissions granted herein are perpetual and will not be revoked by UserLand or its successors or assigns.\n\nThis document and the information contained herein is provided on an \"AS IS\" basis and USERLAND DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.", + "json": "opml-1.0.json", + "yaml": "opml-1.0.yml", + "html": "opml-1.0.html", + "license": "opml-1.0.LICENSE" + }, + { + "license_key": "opnl-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-opnl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Released under the Open Innovation License\n\nVersion 1, 10th November 2020\n\nCopyright \u00a9 2020 Stark Drones Corporation\nCopyright \u00a9 2020 Andrew Magdy Kamal\n\nThis project is licensed under the Open Innovation License. This means any code, file, diagrams, data format, or other innovation containing this license within it can be copied, modified, redistributed, published, or even used for commercial purposes within the context of this license.\n\nAny code, file, diagrams, data format, or other innovation containing this license is understood to be fully \"AS IS\", no claims are made in regards to safety, security, warranty, usability, or other form of merchantability and market-readiness. \nIn no events are copyright holders, authors, or publishers are to be held liable for any claims, damage or results from usage of what have been licensed under this license.\nThe context of this license includes: Keeping this original license text verbatim and permissive notice, as well as the copyright notice included in any redistribution of said project. Project is defined as what is using this license. \nFor purposes of context, the copyright notice above version and year is meant to be modified for whomsoever publishes or releases \"any code, file, diagrams, data format, or other innovation\", so that they can include their information.\nAfter modifying, the comment saying \"// Insert information of license holder\" which starts with // can be removed. This current paragraph however, will remain in-tact.\n\nAnybody who releases software under the \"Open Innovation License\" agrees to at goodwill, build or release technology for the betterment of humanity not meant with the intention to harm a human being.\nThey agree to a prima facie moral duty through consequential deontology to understand that technology should be within the concept of moral good or outcomes that are morally right and/or ethical. They agree at goodwill to promote the advancement of humanity and civilization as a whole.\nThey agree to a sense of adventurement, edification, and the expansion of the human mind.\n\nSaid agreement which is within the last paragraph prior to this sentence is meant to be taken as a general consensus, but not legally enforceable. Again for context, the last paragraph which starts with \"Anybody\" and ends with \"human mind\" minus quotations, is outside of the boundaries of being legally enforceable and within the duties of oneselve's actions. \nThe rest of the license which includes the copyright notice and its context is within a legally enforceable context. For secondary context, the rest of the license refers to anything outside of that said paragraph.", + "json": "opnl-1.0.json", + "yaml": "opnl-1.0.yml", + "html": "opnl-1.0.html", + "license": "opnl-1.0.LICENSE" + }, + { + "license_key": "opnl-2.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-opnl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Open Innovation License\nVersion 2, 28th December 2020\nCopyright \u00a9 2020 Stark Drones Corporation\nCopyright \u00a9 2020 Andrew Magdy Kamal\n\nPreamble\nThe Stark Drones Corporation believes in building or releasing technology for the betterment of humanity. Technology should not be meant with the intention of harming a human being. We believe in a prima facie moral duty through personal moral obligation to understand that technology should be within the concept of moral good or outcomes that are morally right and/or ethical. We believe in promoting the advancement of humanity and civilization as a whole. \nWe believe in a sense of adventurement, edification, and the expansion of the human mind.\n\nReleased under the Open Innovation License\n\nThis project is licensed under the Open Innovation License. This means any code, file, diagrams, data format, or other innovation containing this license within it can be copied, modified, redistributed, published, or even used for non and/or commercial purposes within the context of this license.\n\nAny code, file, diagrams, data format, or other innovation containing this license is understood to be fully \"AS IS\", no claims are made in regards to safety, security, warranty, usability, or other form of merchantability and market-readiness. \nIn no events are copyright holders, authors, or publishers are to be held liable for any claims, damage or results from usage of what have been licensed under this license.\nThe context of this license includes: Keeping this original license text and file verbatim, as well as the copyright notice included in any redistribution of said project. Project is defined as what is using this license.\nFor purposes of context, the copyright notice after the preamble is meant to be modified for whomsoever publishes or releases \"any code, file, diagrams, data format, or other innovation\", so that they can include their information.", + "json": "opnl-2.0.json", + "yaml": "opnl-2.0.yml", + "html": "opnl-2.0.html", + "license": "opnl-2.0.LICENSE" + }, + { + "license_key": "oracle-bcl-javaee", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javaee", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle Binary Code License Agreement for Java EE Technologies\n\nORACLE AMERICA, INC. (\"ORACLE\"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE \"ACCEPT LICENSE AGREEMENT\" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE \"DECLINE LICENSE AGREEMENT\" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED.\n\n1. DEFINITIONS. \"Software\" means the software identified above in binary form that you selected for download, install or use (in the version You selected for download, install or use) from Oracle or its authorized licensees, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Oracle, and any user manuals, programming guides and other documentation provided to you by Oracle under this Agreement. \"Programs\" means Java technology applets and applications intended to run on the Java Platform, Enterprise Edition platform. \"README File\" means the README file for the Software set forth in the Software or otherwise available from Oracle at or through the following URL: http://www.oracle.com/technetwork/java/javaee/documentation/index.html. \n\n2. LICENSE TO USE. Subject to the terms and conditions of this Agreement including, but not limited to, the Java Technology Restrictions of the Supplemental License Terms, Oracle grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally the Software complete and unmodified for the sole purpose of running Programs.\n\n3. RESTRICTIONS. Software is copyrighted. Title to Software and all associated intellectual property rights is retained by Oracle and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that the Software is developed for general use in a variety of information management applications; it is not developed or intended for use in any inherently dangerous applications, including applications that may create a risk of personal injury. If you use the Software in dangerous applications, then you shall be responsible to take all appropriate fail-safe, backup, redundancy, and other measures to ensure its safe use. Oracle disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Oracle or its licensors is granted under this Agreement. Additional restrictions for developers are set forth in the Supplemental License Terms.\n\n4. DISCLAIMER OF WARRANTY. THE SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.\n\n5. LIMITATION OF LIABILITY. IN NO EVENT SHALL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000). \n\n6. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Oracle if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon termination, you must destroy all copies of Software.\n\n7. EXPORT REGULATIONS. You agree that U.S. export control laws and other applicable export and import laws govern your use of the Software, including technical data; additional information can be found on Oracle's Global Trade Compliance web site (http://www.oracle.com/products/export). You agree that neither the Software nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation. \n\n8. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Oracle that Oracle owns the ORACLE and JAVA trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other brand designations (\"Oracle Marks\"), and you agree to comply with the Third Party Usage Guidelines for Oracle Trademarks currently located at http://www.oracle.com/us/legal/third-party-trademarks/index.html. Any use you make of the Oracle Marks inures to Oracle's benefit. \n\n9. U.S. GOVERNMENT LICENSE RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation shall be only those set forth in this Agreement. \n\n10. GOVERNING LAW. This agreement is governed by the substantive and procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco, or Santa Clara counties in California in any dispute arising out of or relating to this agreement. \n\n11. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n12. INTEGRATION. This Agreement is the entire agreement between you and Oracle relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party.\n\nSUPPLEMENTAL LICENSE TERMS\n\nThese Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software.\n\nA. SOFTWARE INTERNAL USE FOR DEVELOPMENT LICENSE GRANT. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File incorporated herein by reference, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs.\n\nB. LICENSE TO DISTRIBUTE SOFTWARE. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Oracle's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section B does not extend to the Software identified in Section D.\n\nC. LICENSE TO DISTRIBUTE REDISTRIBUTABLES. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File, including but not limited to the Java Technology Restrictions of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the README File (\"Redistributables\") provided that: (i) you distribute the Redistributables complete and unmodified, and only bundled as part of Programs, (ii) the Programs add significant and primary functionality to the Redistributables, (iii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable README File), (iv) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (v) you only distribute the Redistributables pursuant to a license agreement that protects Oracle's interests consistent with the terms contained in the Agreement, (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section C does not extend to the Software identified in Section D.\n\nD. JAVA TECHNOLOGY RESTRICTIONS. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"javafx\", \"javaee\", \"sun\", \"oracle\" or similar convention as specified by Oracle in any naming convention designation. You shall not redistribute the Software listed on Schedule 1.\n\nE. SOURCE CODE. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement.\n\nF. THIRD PARTY CODE. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME file set forth in the Software or otherwise available from Oracle at or through the following URL: http://www.oracle.com/technetwork/java/javaee/documentation/index.html . In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME file, the disclaimer of warranty and limitation of liability provisions in paragraphs 4 and 5 of the Binary Code License Agreement shall apply to all Software in this distribution.\n\nG. TERMINATION FOR INFRINGEMENT. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right.\n\nH. INSTALLATION AND AUTO-UPDATE. The Software's installation and auto-update processes transmit a limited amount of data to Oracle (or its service provider) about those specific processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. You can find more information about the data Oracle collects as a result of your Software download at http://www.oracle.com/technetwork/java/javaee/documentation/index.html. \n\nFor inquiries please contact: Oracle America, Inc., 500 Oracle Parkway,\nRedwood Shores, California 94065, USA.\n\nLicense for Archived Java EE Technologies; Last updated 30 January 2012 \nSchedule 1 to Supplemental Terms\nNon-redistributable Java Technologies\n\nJava Platform, Enterprise Edition, Software Development Kit (except those files specifically identified as redistributable in the README File)\n\nJava Platform, Standard Edition, Software Development Kit\n\nJava Application Verification Kit (AVK) for Enterprise\n\nJava Message Service API Demo\n\nJava Message Service\n\nJava Platform, Enterprise Edition Deployment API\n\nJava Database Connectivity (JDBC) API Test Suite\n\nJava Web Services Developer Pack and Documentation\n\nJava Web Services Tutorial\n\nJava Platform, Enterprise Edition Client Provisioning", + "json": "oracle-bcl-javaee.json", + "yaml": "oracle-bcl-javaee.yml", + "html": "oracle-bcl-javaee.html", + "license": "oracle-bcl-javaee.LICENSE" + }, + { + "license_key": "oracle-bcl-javase-javafx-2012", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javase-javafx-2012", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX\n \nORACLE AMERICA, INC. (\"ORACLE\"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE \"ACCEPT LICENSE AGREEMENT\" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE \"DECLINE LICENSE AGREEMENT\" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED.\n \n1. DEFINITIONS. \"Software\" means the software identified above in binary form that you selected for download, install or use (in the version You selected for download, install or use) from Oracle or its authorized licensees, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Oracle, and any user manuals, programming guides and other documentation provided to you by Oracle under this Agreement. \"General Purpose Desktop Computers and Servers\" means computers, including desktop and laptop computers, or servers, used for general computing functions under end user control (such as but not specifically limited to email, general purpose Internet browsing, and office suite productivity tools). The use of Software in systems and solutions that provide dedicated functionality (other than as mentioned above) or designed for use in embedded or function-specific software applications, for example but not limited to: Software embedded in or bundled with industrial control systems, wireless mobile telephones, wireless handheld devices, netbooks, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control switching equipment, printers and storage management systems, and other related systems are excluded from this definition and not licensed under this Agreement. \"Programs\" means (a) Java technology applets and applications intended to run on the Java Platform, Standard Edition platform on Java-enabled General Purpose Desktop Computers and Servers; and (b) JavaFX technology applications intended to run on the JavaFX Runtime on JavaFX-enabled General Purpose Desktop Computers and Servers. \"Commercial Features\" means those features identified in Table 1-1 (Commercial Features In Java SE Product Editions) of the Java SE documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html. \"README File\" means the README file for the Software accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html.\n \n2. LICENSE TO USE. Subject to the terms and conditions of this Agreement including, but not limited to, the Java Technology Restrictions of the Supplemental License Terms, Oracle grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally the Software complete and unmodified for the sole purpose of running Programs. THE LICENSE SET FORTH IN THIS SECTION 2 DOES NOT EXTEND TO THE COMMERCIAL FEATURES. YOUR RIGHTS AND OBLIGATIONS RELATED TO THE COMMERCIAL FEATURES ARE AS SET FORTH IN THE SUPPLEMENTAL TERMS ALONG WITH ADDITIONAL LICENSES FOR DEVELOPERS AND PUBLISHERS.\n \n3. RESTRICTIONS. Software is copyrighted. Title to Software and all associated intellectual property rights is retained by Oracle and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that the Software is developed for general use in a variety of information management applications; it is not developed or intended for use in any inherently dangerous applications, including applications that may create a risk of personal injury. If you use the Software in dangerous applications, then you shall be responsible to take all appropriate fail-safe, backup, redundancy, and other measures to ensure its safe use. Oracle disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Oracle or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms.\n \n4. DISCLAIMER OF WARRANTY. THE SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT. \n \n5. LIMITATION OF LIABILITY. IN NO EVENT SHALL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).\n \n6. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Oracle if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon termination, you must destroy all copies of Software.\n \n7. EXPORT REGULATIONS. You agree that U.S. export control laws and other applicable export and import laws govern your use of the Software, including technical data; additional information can be found on Oracle's Global Trade Compliance web site (http://www.oracle.com/products/export). You agree that neither the Software nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation. \n \n8. TRADEMARKS AND LOGOS. You acknowledge and agree as between you\nand Oracle that Oracle owns the ORACLE and JAVA trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other brand\ndesignations (\"Oracle Marks\"), and you agree to comply with the Third\nParty Usage Guidelines for Oracle Trademarks currently located at\nhttp://www.oracle.com/us/legal/third-party-trademarks/index.html. Any use you make of the Oracle Marks inures to Oracle's benefit.\n \n9. U.S. GOVERNMENT LICENSE RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation shall be only those set forth in this Agreement. \n \n10. GOVERNING LAW. This agreement is governed by the substantive and procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco, or Santa Clara counties in California in any dispute arising out of or relating to this agreement. \n \n11. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n \n12. INTEGRATION. This Agreement is the entire agreement between you and Oracle relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party.\n \nSUPPLEMENTAL LICENSE TERMS\n \nThese Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software.\n \nA. COMMERCIAL FEATURES. You may not use the Commercial Features for running Programs, Java applets or applications in your internal business operations or for any commercial or production purpose, or for any purpose other than as set forth in Sections B, C, D and E of these Supplemental Terms. If You want to use the Commercial Features for any purpose other than as permitted in this Agreement, You must obtain a separate license from Oracle.\n \nB. SOFTWARE INTERNAL USE FOR DEVELOPMENT LICENSE GRANT. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File incorporated herein by reference, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs.\n \nC. LICENSE TO DISTRIBUTE SOFTWARE. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File, including, but not limited to the Java Technology Restrictions and Limitations on Redistribution of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that: (a) is a complete, unmodified reproduction of this Agreement; or (b) protects Oracle's interests consistent with the terms contained in this Agreement and that includes the notice set forth in Section H, and (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section C does not extend to the Software identified in Section G.\n \nD. LICENSE TO DISTRIBUTE REDISTRIBUTABLES. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File, including but not limited to the Java Technology Restrictions and Limitations on Redistribution of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the README File (\"Redistributables\") provided that: (i) you distribute the Redistributables complete and unmodified, and only bundled as part of Programs, (ii) the Programs add significant and primary functionality to the Redistributables, (iii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable README File), (iv) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (v) you only distribute the Redistributables pursuant to a license agreement that: (a) is a complete, unmodified reproduction of this Agreement; or (b) protects Oracle's interests consistent with the terms contained in the Agreement and includes the notice set forth in Section H, (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section D does not extend to the Software identified in Section G.\n \nE. DISTRIBUTION BY PUBLISHERS. This section pertains to your distribution of the JavaTM SE Development Kit Software (\"JDK\") with your printed book or magazine (as those terms are commonly used in the industry) relating to Java technology (\"Publication\"). Subject to and conditioned upon your compliance with the restrictions and obligations contained in the Agreement, Oracle hereby grants to you a non-exclusive, nontransferable limited right to reproduce complete and unmodified copies of the JDK on electronic media (the \"Media\") for the sole purpose of inclusion and distribution with your Publication(s), subject to the following terms: (i) You may not distribute the JDK on a stand-alone basis; it must be distributed with your Publication(s); (ii) You are responsible for downloading the JDK from the applicable Oracle web site; (iii) You must refer to the JDK as JavaTM SE Development Kit; (iv) The JDK must be reproduced in its entirety and without any modification whatsoever (including with respect to all proprietary notices) and distributed with your Publication subject to a license agreement that is a complete, unmodified reproduction of this Agreement; (v) The Media label shall include the following information: \"Copyright [YEAR], Oracle America, Inc. All rights reserved. Use is subject to license terms. ORACLE and JAVA trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other brand designations are trademarks or registered trademarks of Oracle in the U.S. and other countries.\" [YEAR] is the year of Oracle's release of the Software; the year information can typically be found in the Software\u2019s \"About\" box or screen. This information must be placed on the Media label in such a manner as to only apply to the JDK; (vi) You must clearly identify the JDK as Oracle's product on the Media holder or Media label, and you may not state or imply that Oracle is responsible for any third-party software contained on the Media; (vii) You may not include any third party software on the Media which is intended to be a replacement or substitute for the JDK; (viii) You agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of the JDK and/or the Publication; ; and (ix) You shall provide Oracle with a written notice for each Publication; such notice shall include the following information: (1) title of Publication, (2) author(s), (3) date of Publication, and (4) ISBN or ISSN numbers. Such notice shall be sent to Oracle America, Inc., 500 Oracle Parkway, Redwood Shores, California 94065 U.S.A , Attention: General Counsel.\n \nF. JAVA TECHNOLOGY RESTRICTIONS. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"sun\", \"oracle\" or similar convention as specified by Oracle in any naming convention designation.\n \nG. LIMITATIONS ON REDISTRIBUTION. You may not redistribute or otherwise transfer: (a) JavaFX Runtime prior to version 2.0.2, (b) JavaFX Development Kit prior to version 2.0.2, or (c) any and all patches, bug fixes and updates made available by Oracle through Oracle Premier Support, including those made available under Oracle's Java SE Support program.\n \nH. COMMERCIAL FEATURES NOTICE. For purpose of complying with Supplemental Term Section C.(v)(b) and D.(v)(b), your license agreement shall include the following notice, where the notice is displayed in a manner that anyone using the Software will see the notice:\n \nUse of the Commercial Features for any commercial or production purpose requires a separate license from Oracle. \"Commercial Features\" means those features identified Table 1-1 (Commercial Features In Java SE Product Editions) of the Java SE documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html\n \nI. SOURCE CODE. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement.\n \nJ. THIRD PARTY CODE. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME file accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME file, the disclaimer of warranty and limitation of liability provisions in paragraphs 4 and 5 of the Binary Code License Agreement shall apply to all Software in this distribution.\n \nK. TERMINATION FOR INFRINGEMENT. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right.\n \nL. INSTALLATION AND AUTO-UPDATE. The Software's installation and auto-update processes transmit a limited amount of data to Oracle (or its service provider) about those specific processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. You can find more information about the data Oracle collects as a result of your Software download at http://www.oracle.com/technetwork/java/javase/documentation/index.html.\n \n \nFor inquiries please contact: Oracle America, Inc., 500 Oracle Parkway,\nRedwood Shores, California 94065, USA.\n \nLast updated 25 April 2012", + "json": "oracle-bcl-javase-javafx-2012.json", + "yaml": "oracle-bcl-javase-javafx-2012.yml", + "html": "oracle-bcl-javase-javafx-2012.html", + "license": "oracle-bcl-javase-javafx-2012.LICENSE" + }, + { + "license_key": "oracle-bcl-javase-javafx-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javase-javafx-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle Binary Code License Agreement for Java SE and JavaFX Technologies\n\nORACLE AMERICA, INC. (\"ORACLE\"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE \"ACCEPT LICENSE AGREEMENT\" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE \"DECLINE LICENSE AGREEMENT\" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED.\n\n1. DEFINITIONS. \"Software\" means the software identified above in binary form that you selected for download, install or use (in the version You selected for download, install or use) from Oracle or its authorized licensees, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Oracle, and any user manuals, programming guides and other documentation provided to you by Oracle under this Agreement. \"General Purpose Desktop Computers and Servers\" means computers, including desktop and laptop computers, or servers, used for general computing functions under end user control (such as but not specifically limited to email, general purpose Internet browsing, and office suite productivity tools). The use of Software in systems and solutions that provide dedicated functionality (other than as mentioned above) or designed for use in embedded or function-specific software applications, for example but not limited to: Software embedded in or bundled with industrial control systems, wireless mobile telephones, wireless handheld devices, netbooks, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control switching equipment, printers and storage management systems, and other related systems are excluded from this definition and not licensed under this Agreement. \"Programs\" means: (a) Java technology applets and applications intended to run on the Java Platform, Standard Edition platform on Java-enabled General Purpose Desktop Computers and Servers, and (b) JavaFX technology applications intended to run on the JavaFX Runtime on JavaFX-enabled General Purpose Desktop Computers and Servers. \"README File\" means the README file for the Software set forth in the Software or otherwise available from Oracle at or through the following URL: http://www.oracle.com/technetwork/java/javase/documentation/index.html\n\n2. LICENSE TO USE. Subject to the terms and conditions of this Agreement including, but not limited to, the Java Technology Restrictions of the Supplemental License Terms, Oracle grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally the Software complete and unmodified for the sole purpose of running Programs.\n\n3. RESTRICTIONS. Software is copyrighted. Title to Software and all associated intellectual property rights is retained by Oracle and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that the Software is developed for general use in a variety of information management applications; it is not developed or intended for use in any inherently dangerous applications, including applications that may create a risk of personal injury. If you use the Software in dangerous applications, then you shall be responsible to take all appropriate fail-safe, backup, redundancy, and other measures to ensure its safe use. Oracle disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Oracle or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms.\n\n4. DISCLAIMER OF WARRANTY. THE SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.\n\n5. LIMITATION OF LIABILITY. IN NO EVENT SHALL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).\n\n6. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Oracle if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon termination, you must destroy all copies of Software.\n\n7. EXPORT REGULATIONS. You agree that U.S. export control laws and other applicable export and import laws govern your use of the Software, including technical data; additional information can be found on Oracle's Global Trade Compliance web site (http://www.oracle.com/products/export). You agree that neither the Software nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation.\n\n8. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Oracle that Oracle owns the ORACLE and JAVA trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other brand designations (\"Oracle Marks\"), and you agree to comply with the Third Party Usage Guidelines for Oracle Trademarks currently located at http://www.oracle.com/us/legal/third-party-trademarks/index.html . Any use you make of the Oracle Marks inures to Oracle's benefit.\n\n9. U.S. GOVERNMENT LICENSE RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation shall be only those set forth in this Agreement.\n\n10. GOVERNING LAW. This agreement is governed by the substantive and procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco, or Santa Clara counties in California in any dispute arising out of or relating to this agreement.\n\n11. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n12. INTEGRATION. This Agreement is the entire agreement between you and Oracle relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party.\n\nSUPPLEMENTAL LICENSE TERMS\n\nThese Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software.\n\nA. SOFTWARE INTERNAL USE FOR DEVELOPMENT LICENSE GRANT. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File incorporated herein by reference, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs.\n\nB. LICENSE TO DISTRIBUTE SOFTWARE. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Oracle's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section B does not extend to the Software identified in Section D.\n\nC. LICENSE TO DISTRIBUTE REDISTRIBUTABLES. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File, including but not limited to the Java Technology Restrictions of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the README File (\"Redistributables\") provided that: (i) you distribute the Redistributables complete and unmodified, and only bundled as part of Programs, (ii) the Programs add significant and primary functionality to the Redistributables, (iii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable README File), (iv) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (v) you only distribute the Redistributables pursuant to a license agreement that protects Oracle's interests consistent with the terms contained in the Agreement, (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section C does not extend to the Software identified in Section D.\n\nD. JAVA TECHNOLOGY RESTRICTIONS. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"javafx\", \"sun\", \"oracle\" or similar convention as specified by Oracle in any naming convention designation. You shall not redistribute the Software listed on Schedule 1.\n\nE. SOURCE CODE. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement.\n\nF. THIRD PARTY CODE. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME file set forth in the Software or otherwise available from Oracle at or through the following URL: http://www.oracle.com/technetwork/java/javase/documentation/index.html. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME file, the disclaimer of warranty and limitation of liability provisions in paragraphs 4 and 5 of the Binary Code License Agreement shall apply to all Software in this distribution.\n\nG. TERMINATION FOR INFRINGEMENT. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right.\n\nH. INSTALLATION AND AUTO-UPDATE. The Software's installation and auto-update processes transmit a limited amount of data to Oracle (or its service provider) about those specific processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. You can find more information about the data Oracle collects as a result of your Software download at http://www.oracle.com/technetwork/java/javase/documentation/index.html.\n\nFor inquiries please contact: Oracle America, Inc., 500 Oracle Parkway,\n\nRedwood Shores, California 94065, USA.\n\nLicense for Archived Java SE Technologies; last updated 02 April 2013\n\n\nSchedule 1 to Supplemental Terms\n\nNon-redistributable Java Technologies\n \nJavaFX Runtime versions prior to version 2.0.2, except for version 1.3.1\n\nJavaFX Development Kit (or SDK) versions prior to version 2.0.2, except for the version 1.3.1 Runtime components which are included in the version 1.3.1 Development Kit\n\nJavaFX Production Suite\n\nJava Naming and Directory Interface(TM)\n\nJava Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files\n\nJvmstat\n\nAny patches, bug fixes or updates made available by Oracle through Oracle Premier Support, including those made available under Oracle's Java SE Support program", + "json": "oracle-bcl-javase-javafx-2013.json", + "yaml": "oracle-bcl-javase-javafx-2013.yml", + "html": "oracle-bcl-javase-javafx-2013.html", + "license": "oracle-bcl-javase-javafx-2013.LICENSE" + }, + { + "license_key": "oracle-bcl-javase-platform-javafx-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-java-platform-2013", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2013" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX\n\nORACLE AMERICA, INC. (\"ORACLE\"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE \"ACCEPT LICENSE AGREEMENT\" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE \"DECLINE LICENSE AGREEMENT\" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED.\n\n1. DEFINITIONS. \"Software\" means the software identified above in binary form that you selected for download, install or use (in the version You selected for download, install or use) from Oracle or its authorized licensees, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Oracle, and any user manuals, programming guides and other documentation provided to you by Oracle under this Agreement. \"General Purpose Desktop Computers and Servers\" means computers, including desktop and laptop computers, or servers, used for general computing functions under end user control (such as but not specifically limited to email, general purpose Internet browsing, and office suite productivity tools). The use of Software in systems and solutions that provide dedicated functionality (other than as mentioned above) or designed for use in embedded or function-specific software applications, for example but not limited to: Software embedded in or bundled with industrial control systems, wireless mobile telephones, wireless handheld devices, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control switching equipment, printers and storage management systems, and other related systems are excluded from this definition and not licensed under this Agreement. \"Programs\" means (a) Java technology applets and applications intended to run on the Java Platform, Standard Edition platform on Java-enabled General Purpose Desktop Computers and Servers; and (b) JavaFX technology applications intended to run on the JavaFX Runtime on JavaFX-enabled General Purpose Desktop Computers and Servers. \"Commercial Features\" means those features identified in Table 1-1 (Commercial Features In Java SE Product Editions) of the Java SE documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html. \"README File\" means the README file for the Software accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html.\n\n2. LICENSE TO USE. Subject to the terms and conditions of this Agreement including, but not limited to, the Java Technology Restrictions of the Supplemental License Terms, Oracle grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally the Software complete and unmodified for the sole purpose of running Programs. THE LICENSE SET FORTH IN THIS SECTION 2 DOES NOT EXTEND TO THE COMMERCIAL FEATURES. YOUR RIGHTS AND OBLIGATIONS RELATED TO THE COMMERCIAL FEATURES ARE AS SET FORTH IN THE SUPPLEMENTAL TERMS ALONG WITH ADDITIONAL LICENSES FOR DEVELOPERS AND PUBLISHERS.\n\n3. RESTRICTIONS. Software is copyrighted. Title to Software and all associated intellectual property rights is retained by Oracle and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that the Software is developed for general use in a variety of information management applications; it is not developed or intended for use in any inherently dangerous applications, including applications that may create a risk of personal injury. If you use the Software in dangerous applications, then you shall be responsible to take all appropriate fail-safe, backup, redundancy, and other measures to ensure its safe use. Oracle disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Oracle or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms.\n\n4. DISCLAIMER OF WARRANTY. THE SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.\n\n5. LIMITATION OF LIABILITY. IN NO EVENT SHALL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).\n\n6. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Oracle if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon termination, you must destroy all copies of Software.\n\n7. EXPORT REGULATIONS. You agree that U.S. export control laws and other applicable export and import laws govern your use of the Software, including technical data; additional information can be found on Oracle's Global Trade Compliance web site (http://www.oracle.com/us/products/export). You agree that neither the Software nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation.\n\n8. TRADEMARKS AND LOGOS. You acknowledge and agree as between you\nand Oracle that Oracle owns the ORACLE and JAVA trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other brand\ndesignations (\"Oracle Marks\"), and you agree to comply with the Third\nParty Usage Guidelines for Oracle Trademarks currently located at\nhttp://www.oracle.com/us/legal/third-party-trademarks/index.html . Any use you make of the Oracle Marks inures to Oracle's benefit.\n\n9. U.S. GOVERNMENT LICENSE RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation shall be only those set forth in this Agreement.\n\n10. GOVERNING LAW. This agreement is governed by the substantive and procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco, or Santa Clara counties in California in any dispute arising out of or relating to this agreement.\n\n11. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n12. INTEGRATION. This Agreement is the entire agreement between you and Oracle relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party.\n\nSUPPLEMENTAL LICENSE TERMS\n\nThese Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software.\n\nA. COMMERCIAL FEATURES. You may not use the Commercial Features for running Programs, Java applets or applications in your internal business operations or for any commercial or production purpose, or for any purpose other than as set forth in Sections B, C, D and E of these Supplemental Terms. If You want to use the Commercial Features for any purpose other than as permitted in this Agreement, You must obtain a separate license from Oracle.\n\nB. SOFTWARE INTERNAL USE FOR DEVELOPMENT LICENSE GRANT. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File incorporated herein by reference, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs.\n\nC. LICENSE TO DISTRIBUTE SOFTWARE. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File, including, but not limited to the Java Technology Restrictions and Limitations on Redistribution of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that: (a) is a complete, unmodified reproduction of this Agreement; or (b) protects Oracle's interests consistent with the terms contained in this Agreement and that includes the notice set forth in Section H, and (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section C does not extend to the Software identified in Section G.\n\nD. LICENSE TO DISTRIBUTE REDISTRIBUTABLES. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File, including but not limited to the Java Technology Restrictions and Limitations on Redistribution of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the README File (\"Redistributables\") provided that: (i) you distribute the Redistributables complete and unmodified, and only bundled as part of Programs, (ii) the Programs add significant and primary functionality to the Redistributables, (iii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable README File), (iv) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (v) you only distribute the Redistributables pursuant to a license agreement that: (a) is a complete, unmodified reproduction of this Agreement; or (b) protects Oracle's interests consistent with the terms contained in the Agreement and includes the notice set forth in Section H, (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section D does not extend to the Software identified in Section G.\n\nE. DISTRIBUTION BY PUBLISHERS. This section pertains to your distribution of the JavaTM SE Development Kit Software (\"JDK\") with your printed book or magazine (as those terms are commonly used in the industry) relating to Java technology (\"Publication\"). Subject to and conditioned upon your compliance with the restrictions and obligations contained in the Agreement, Oracle hereby grants to you a non-exclusive, nontransferable limited right to reproduce complete and unmodified copies of the JDK on electronic media (the \"Media\") for the sole purpose of inclusion and distribution with your Publication(s), subject to the following terms: (i) You may not distribute the JDK on a stand-alone basis; it must be distributed with your Publication(s); (ii) You are responsible for downloading the JDK from the applicable Oracle web site; (iii) You must refer to the JDK as JavaTM SE Development Kit; (iv) The JDK must be reproduced in its entirety and without any modification whatsoever (including with respect to all proprietary notices) and distributed with your Publication subject to a license agreement that is a complete, unmodified reproduction of this Agreement; (v) The Media label shall include the following information: \"Copyright [YEAR], Oracle America, Inc. All rights reserved. Use is subject to license terms. ORACLE and JAVA trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other brand designations are trademarks or registered trademarks of Oracle in the U.S. and other countries.\" [YEAR] is the year of Oracle's release of the Software; the year information can typically be found in the Software\u2019s \"About\" box or screen. This information must be placed on the Media label in such a manner as to only apply to the JDK; (vi) You must clearly identify the JDK as Oracle's product on the Media holder or Media label, and you may not state or imply that Oracle is responsible for any third-party software contained on the Media; (vii) You may not include any third party software on the Media which is intended to be a replacement or substitute for the JDK; (viii) You agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of the JDK and/or the Publication; ; and (ix) You shall provide Oracle with a written notice for each Publication; such notice shall include the following information: (1) title of Publication, (2) author(s), (3) date of Publication, and (4) ISBN or ISSN numbers. Such notice shall be sent to Oracle America, Inc., 500 Oracle Parkway, Redwood Shores, California 94065 U.S.A , Attention: General Counsel.\n\nF. JAVA TECHNOLOGY RESTRICTIONS. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"sun\", \"oracle\" or similar convention as specified by Oracle in any naming convention designation.\n\nG. LIMITATIONS ON REDISTRIBUTION. You may not redistribute or otherwise transfer patches, bug fixes or updates made available by Oracle through Oracle Premier Support, including those made available under Oracle's Java SE Support program.\n\nH. COMMERCIAL FEATURES NOTICE. For purpose of complying with Supplemental Term Section C.(v)(b) and D.(v)(b), your license agreement shall include the following notice, where the notice is displayed in a manner that anyone using the Software will see the notice:\n\nUse of the Commercial Features for any commercial or production purpose requires a separate license from Oracle. \"Commercial Features\" means those features identified Table 1-1 (Commercial Features In Java SE Product Editions) of the Java SE documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html\n\n\nI. SOURCE CODE. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement.\n\nJ. THIRD PARTY CODE. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME file accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME file, the disclaimer of warranty and limitation of liability provisions in paragraphs 4 and 5 of the Binary Code License Agreement shall apply to all Software in this distribution.\n\nK. TERMINATION FOR INFRINGEMENT. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right.\n\nL. INSTALLATION AND AUTO-UPDATE. The Software's installation and auto-update processes transmit a limited amount of data to Oracle (or its service provider) about those specific processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. You can find more information about the data Oracle collects as a result of your Software download at http://www.oracle.com/technetwork/java/javase/documentation/index.html.\n\nFor inquiries please contact: Oracle America, Inc., 500 Oracle Parkway,\n\nRedwood Shores, California 94065, USA.\n\nLast updated 02 April 2013", + "json": "oracle-bcl-javase-platform-javafx-2013.json", + "yaml": "oracle-bcl-javase-platform-javafx-2013.yml", + "html": "oracle-bcl-javase-platform-javafx-2013.html", + "license": "oracle-bcl-javase-platform-javafx-2013.LICENSE" + }, + { + "license_key": "oracle-bcl-javase-platform-javafx-2017", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-java-platform-2017", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2017" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX\n\nORACLE AMERICA, INC. (\"ORACLE\"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE \"ACCEPT LICENSE AGREEMENT\" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE \"DECLINE LICENSE AGREEMENT\" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED.\n\n1. DEFINITIONS. \"Software\" means the software identified above in binary form that you selected for download, install or use (in the version You selected for download, install or use) from Oracle or its authorized licensees and/or those portions of such software produced by jlink as output using a Program\u2019s code, when such output is in unmodified form in combination, and for sole use with, that Program, as well as any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Oracle, and any user manuals, programming guides and other documentation provided to you by Oracle under this Agreement. The Java Linker (jlink) is available with Java 9 and later versions. \"General Purpose Desktop Computers and Servers\" means computers, including desktop and laptop computers, or servers, used for general computing functions under end user control (such as but not specifically limited to email, general purpose Internet browsing, and office suite productivity tools). The use of Software in systems and solutions that provide dedicated functionality (other than as mentioned above) or designed for use in embedded or function-specific software applications, for example but not limited to: Software embedded in or bundled with industrial control systems, wireless mobile telephones, wireless handheld devices, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control switching equipment, printers and storage management systems, and other related systems are excluded from this definition and not licensed under this Agreement. \"Programs\" means (a) Java technology applets and applications intended to run on the Java Platform, Standard Edition platform on Java-enabled General Purpose Desktop Computers and Servers; and (b) JavaFX technology applications intended to run on the JavaFX Runtime on JavaFX-enabled General Purpose Desktop Computers and Servers. \"Java SE LIUM\" means the Licensing Information User Manual \u2013 Oracle Java SE and Oracle Java Embedded Products Document accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html. \"Commercial Features\" means those features that are identified as such in the Java SE LIUM under the \"Description of Product Editions and Permitted Features\" section.\n\n2. LICENSE TO USE. Subject to the terms and conditions of this Agreement including, but not limited to, the Java Technology Restrictions of the Supplemental License Terms, Oracle grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally the Software complete and unmodified for the sole purpose of running Programs. THE LICENSE SET FORTH IN THIS SECTION 2 DOES NOT EXTEND TO THE COMMERCIAL FEATURES. YOUR RIGHTS AND OBLIGATIONS RELATED TO THE COMMERCIAL FEATURES ARE AS SET FORTH IN THE SUPPLEMENTAL TERMS ALONG WITH ADDITIONAL LICENSES FOR DEVELOPERS AND PUBLISHERS.\n\n3. RESTRICTIONS. Software is copyrighted. Title to Software and all associated intellectual property rights is retained by Oracle and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that the Software is developed for general use in a variety of information management applications; it is not developed or intended for use in any inherently dangerous applications, including applications that may create a risk of personal injury. If you use the Software in dangerous applications, then you shall be responsible to take all appropriate fail-safe, backup, redundancy, and other measures to ensure its safe use. Oracle disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Oracle or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms.\n\n4. DISCLAIMER OF WARRANTY. THE SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.\n\n5. LIMITATION OF LIABILITY. IN NO EVENT SHALL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).\n\n6. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Oracle if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon termination, you must destroy all copies of Software.\n\n7. EXPORT REGULATIONS. You agree that U.S. export control laws and other applicable export and import laws govern your use of the Software, including technical data; additional information can be found on Oracle's Global Trade Compliance web site (http://www.oracle.com/us/products/export). You agree that neither the Software nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation.\n\n8. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Oracle that Oracle owns the ORACLE and JAVA trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other brand designations (\"Oracle Marks\"), and you agree to comply with the Third Party Usage Guidelines for Oracle Trademarks currently located at http://www.oracle.com/us/legal/third-party-trademarks/index.html. Any use you make of the Oracle Marks inures to Oracle's benefit.\n\n9. U.S. GOVERNMENT LICENSE RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation shall be only those set forth in this Agreement.\n\n10. GOVERNING LAW. This agreement is governed by the substantive and procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco, or Santa Clara counties in California in any dispute arising out of or relating to this agreement.\n\n11. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n12. INTEGRATION. This Agreement is the entire agreement between you and Oracle relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party.\n\nSUPPLEMENTAL LICENSE TERMS\n\nThese Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software.\n\nA. COMMERCIAL FEATURES. You may not use the Commercial Features for running Programs, Java applets or applications in your internal business operations or for any commercial or production purpose, or for any purpose other than as set forth in Sections B, C, D and E of these Supplemental Terms. If You want to use the Commercial Features for any purpose other than as permitted in this Agreement, You must obtain a separate license from Oracle.\n\nB. SOFTWARE INTERNAL USE FOR DEVELOPMENT LICENSE GRANT. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Java SE LIUM incorporated herein by reference, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs.\n\nC. LICENSE TO DISTRIBUTE SOFTWARE. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Java SE LIUM, including, but not limited to the Java Technology Restrictions and Limitations on Redistribution of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that: (a) is a complete, unmodified reproduction of this Agreement; or (b) protects Oracle's interests consistent with the terms contained in this Agreement and that includes the notice set forth in Section H, and (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section C does not extend to the Software identified in Section G.\n\nD. LICENSE TO DISTRIBUTE REDISTRIBUTABLES. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Java SE LIUM, including but not limited to the Java Technology Restrictions and Limitations on Redistribution of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the Java SE LIUM (\"Redistributables\") provided that: (i) you distribute the Redistributables complete and unmodified, and only bundled as part of Programs, (ii) the Programs add significant and primary functionality to the Redistributables, (iii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable Java SE LIUM), (iv) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (v) you only distribute the Redistributables pursuant to a license agreement that: (a) is a complete, unmodified reproduction of this Agreement; or (b) protects Oracle's interests consistent with the terms contained in the Agreement and includes the notice set forth in Section H, (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section D does not extend to the Software identified in Section G.\n\nE. DISTRIBUTION BY PUBLISHERS. This section pertains to your distribution of the JavaTM SE Development Kit Software (\"JDK\") with your printed book or magazine (as those terms are commonly used in the industry) relating to Java technology (\"Publication\"). Subject to and conditioned upon your compliance with the restrictions and obligations contained in the Agreement, Oracle hereby grants to you a non-exclusive, nontransferable limited right to reproduce complete and unmodified copies of the JDK on electronic media (the \"Media\") for the sole purpose of inclusion and distribution with your Publication(s), subject to the following terms: (i) You may not distribute the JDK on a stand-alone basis; it must be distributed with your Publication(s); (ii) You are responsible for downloading the JDK from the applicable Oracle web site; (iii) You must refer to the JDK as JavaTM SE Development Kit; (iv) The JDK must be reproduced in its entirety and without any modification whatsoever (including with respect to all proprietary notices) and distributed with your Publication subject to a license agreement that is a complete, unmodified reproduction of this Agreement; (v) The Media label shall include the following information: \"Copyright [YEAR], Oracle America, Inc. All rights reserved. Use is subject to license terms. ORACLE and JAVA trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other brand designations are trademarks or registered trademarks of Oracle in the U.S. and other countries.\" [YEAR] is the year of Oracle's release of the Software; the year information can typically be found in the Software\u2019s \"About\" box or screen. This information must be placed on the Media label in such a manner as to only apply to the JDK; (vi) You must clearly identify the JDK as Oracle's product on the Media holder or Media label, and you may not state or imply that Oracle is responsible for any third-party software contained on the Media; (vii) You may not include any third party software on the Media which is intended to be a replacement or substitute for the JDK; (viii) You agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of the JDK and/or the Publication; ; and (ix) You shall provide Oracle with a written notice for each Publication; such notice shall include the following information: (1) title of Publication, (2) author(s), (3) date of Publication, and (4) ISBN or ISSN numbers. Such notice shall be sent to Oracle America, Inc., 500 Oracle Parkway, Redwood Shores, California 94065 U.S.A , Attention: General Counsel.\n\nF. JAVA TECHNOLOGY RESTRICTIONS. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"sun\", \"oracle\" or similar convention as specified by Oracle in any naming convention designation.\n\nG. LIMITATIONS ON REDISTRIBUTION. You may not redistribute or otherwise transfer patches, bug fixes or updates made available by Oracle through Oracle Premier Support, including those made available under Oracle's Java SE Support program.\n\nH. COMMERCIAL FEATURES NOTICE. For purpose of complying with Supplemental Term Section C.(v)(b) and D.(v)(b), your license agreement shall include the following notice, where the notice is displayed in a manner that anyone using the Software will see the notice:\n\nUse of the Commercial Features for any commercial or production purpose requires a separate license from Oracle. \"Commercial Features\" means those features that are identified as such in the Licensing Information User Manual \u2013 Oracle Java SE and Oracle Java Embedded Products Document, accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html, under the \"Description of Product Editions and Permitted Features\" section.\n \nI. SOURCE CODE. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement.\n\nJ. THIRD PARTY CODE. Additional copyright notices and license terms applicable to portions of the Software are set forth in the Java SE LIUM accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html. In addition to any terms and conditions of any third party opensource/freeware license identified in the Java SE LIUM, the disclaimer of warranty and limitation of liability provisions in paragraphs 4 and 5 of the Binary Code License Agreement shall apply to all Software in this distribution.\n\nK. TERMINATION FOR INFRINGEMENT. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right.\n\nL. INSTALLATION AND AUTO-UPDATE. The Software's installation and auto-update processes transmit a limited amount of data to Oracle (or its service provider) about those specific processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. You can find more information about the data Oracle collects as a result of your Software download at http://www.oracle.com/technetwork/java/javase/documentation/index.html.\n\nFor inquiries please contact: Oracle America, Inc., 500 Oracle Parkway,\n\nRedwood Shores, California 94065, USA.\n\nLast updated 21 September 2017", + "json": "oracle-bcl-javase-platform-javafx-2017.json", + "yaml": "oracle-bcl-javase-platform-javafx-2017.yml", + "html": "oracle-bcl-javase-platform-javafx-2017.html", + "license": "oracle-bcl-javase-platform-javafx-2017.LICENSE" + }, + { + "license_key": "oracle-bcl-jsse-1.0.3", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-jsse-1.0.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle Binary Code License Agreement for Java Secure Sockets Extension 1.0.3\nfor Connected Device Configuration 1.0.2\n\nORACLE AMERICA, INC. (\"ORACLE\"), FOR AND ON BEHALF OF ITSELF AND ITS\nSUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE\nSOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS\nCONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE\nTERMS (COLLECTIVELY \"AGREEMENT\"). PLEASE READ THE AGREEMENT CAREFULLY. BY\nSELECTING THE \"ACCEPT LICENSE AGREEMENT\" (OR THE EQUIVALENT) BUTTON AND/OR BY\nUSING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO\nTHEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER\nLEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE\nLEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO\nNOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE \"DECLINE LICENSE\nAGREEMENT\" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON\nTHIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED.\n\n1. DEFINITIONS. \"Software\" means the software identified above in binary\nform that you selected for download, install or use (in the version You\nselected for download, install or use) from Oracle or its authorized\nlicensees, any other machine readable materials (including, but not limited\nto, libraries, source files, header files, and data files), any updates\nor error corrections provided by Oracle, and any user manuals, programming\nguides and other documentation provided to you by Oracle under this\nAgreement. \"Programs\" means Java technology applets and applications\nintended to run on the Java Platform, Micro Edition platform. \"README File\"\nmeans the README file for the Software set forth in the Software or otherwise\navailable from Oracle.\n\n2. LICENSE TO USE. Subject to the terms and conditions of this Agreement\nincluding, but not limited to, the Java Technology Restrictions of the\nSupplemental License Terms, Oracle grants you a non-exclusive, nontransferable,\nlimited license without license fees to reproduce and use\ninternally the Software complete and unmodified for the sole purpose of\nrunning Programs.\n\n3. RESTRICTIONS. Software is copyrighted. Title to Software and all\nassociated intellectual property rights is retained by Oracle and/or its\nlicensors. Unless enforcement is prohibited by applicable law, you may not\nmodify, decompile, or reverse engineer Software. You acknowledge that the\nSoftware is developed for general use in a variety of information management\napplications; it is not developed or intended for use in any inherently\ndangerous applications, including applications that may create a risk of\npersonal injury. If you use the Software in dangerous applications, then you\nshall be responsible to take all appropriate fail-safe, backup, redundancy,\nand other measures to ensure its safe use. Oracle disclaims any express or\nimplied warranty of fitness for such uses. No right, title or interest in or\nto any trademark, service mark, logo or trade name of Oracle or its licensors\nis granted under this Agreement. Additional restrictions for developers are\nset forth in the Supplemental License Terms.\n\n4. DISCLAIMER OF WARRANTY. THE SOFTWARE IS PROVIDED \"AS IS\" WITHOUT\nWARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND\nIMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.\n\n5. LIMITATION OF LIABILITY. IN NO EVENT SHALL ORACLE BE LIABLE FOR ANY\nINDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES\nFOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD\nPARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN\nADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY FOR\nDAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S.\n$1,000).\n\n6. TERMINATION. This Agreement is effective until terminated. You may\nterminate this Agreement at any time by destroying all copies of Software.\nThis Agreement will terminate immediately without notice from Oracle if you\nfail to comply with any provision of this Agreement. Either party may\nterminate this Agreement immediately should any Software become, or in either\nparty's opinion be likely to become, the subject of a claim of infringement\nof any intellectual property right. Upon termination, you must destroy all\ncopies of Software.\n\n7. EXPORT REGULATIONS. You agree that U.S. export control laws and other\napplicable export and import laws govern your use of the Software, including\ntechnical data; additional information can be found on Oracle's Global Trade\nCompliance web site (http://www.oracle.com/products/export). You agree that\nneither the Software nor any direct product thereof will be exported,\ndirectly, or indirectly, in violation of these laws, or will be used for any\npurpose prohibited by these laws including, without limitation, nuclear,\nchemical, or biological weapons proliferation.\n\n8. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and\nOracle that Oracle owns the ORACLE and JAVA trademarks and all ORACLE- and\nJAVA-related trademarks, service marks, logos and other brand designations\n(\"Oracle Marks\"), and you agree to comply with the Third Party Usage\nGuidelines for Oracle Trademarks currently located at\nhttp://www.oracle.com/us/legal/third-party-trademarks/index.html. Any\nuse you make of the Oracle Marks inures to Oracle's benefit.\n\n9. U.S. GOVERNMENT LICENSE RIGHTS. If Software is being acquired by or on\nbehalf of the U.S. Government or by a U.S. Government prime contractor or\nsubcontractor (at any tier), then the Government's rights in Software and\naccompanying documentation shall be only those set forth in this Agreement.\n\n10. GOVERNING LAW. This agreement is governed by the substantive and\nprocedural laws of California. You and Oracle agree to submit to the\nexclusive jurisdiction of, and venue in, the courts of San Francisco, or\nSanta Clara counties in California in any dispute arising out of or relating\nto this agreement.\n\n11. SEVERABILITY. If any provision of this Agreement is held to be\nunenforceable, this Agreement will remain in effect with the provision\nomitted, unless omission would frustrate the intent of the parties, in which\ncase this Agreement will immediately terminate.\n\n12. INTEGRATION. This Agreement is the entire agreement between you and\nOracle relating to its subject matter. It supersedes all prior or\ncontemporaneous oral or written communications, proposals, representations\nand warranties and prevails over any conflicting or additional terms of any\nquote, order, acknowledgment, or other communication between the parties\nrelating to its subject matter during the term of this Agreement. No \nmodification of this Agreement will be binding, unless in writing and signed\nby an authorized representative of each party.\n\nSUPPLEMENTAL LICENSE TERMS\nThese Supplemental License Terms add to or modify the terms of the Binary\nCode License Agreement. Capitalized terms not defined in these Supplemental\nTerms shall have the same meanings ascribed to them in the Binary Code\nLicense Agreement. These Supplemental Terms shall supersede any inconsistent\nor conflicting terms in the Binary Code License Agreement, or in any license\ncontained within the Software.\n\nA. SOFTWARE INTERNAL USE FOR DEVELOPMENT LICENSE GRANT. Subject to the\nterms and conditions of this Agreement and restrictions and exceptions set\nforth in the README File incorporated herein by reference, including, but not\nlimited to the Java Technology Restrictions of these Supplemental Terms,\nOracle grants you a non-exclusive, non-transferable, limited license without\nfees to reproduce internally and use internally the Software complete and\nunmodified for the purpose of designing, developing, and testing your\nPrograms.\n\nB. LICENSE TO DISTRIBUTE SOFTWARE. Subject to the terms and conditions of\nthis Agreement and restrictions and exceptions set forth in the README File,\nincluding, but not limited to the Java Technology Restrictions of these\nSupplemental Terms, Oracle grants you a non-exclusive, non-transferable,\nlimited license without fees to reproduce and distribute the Software,\nprovided that (i) you distribute the Software complete and unmodified and\nonly bundled as part of, and for the sole purpose of running, your Programs,\n(ii) the Programs add significant and primary functionality to the Software,\n(iii) you do not distribute additional software intended to replace any\ncomponent(s) of the Software, (iv) you do not remove or alter any proprietary\nlegends or notices contained in the Software, (v) you only distribute the\nSoftware subject to a license agreement that protects Oracle's interests\nconsistent with the terms contained in this Agreement, (vi) you only\ndistribute the Software tightly integrated and configured to run with your\nimplementation of JSR 36 (Connected Device Configuration) and JSR 46\nFoundation Profile; (vii) you have a valid license from Oracle for JSR 36\n(Connected Device Configuration) and JSR 46 Foundation Profile, and (viii)\nyou agree to defend and indemnify Oracle and its licensors from and against\nany damages, costs, liabilities, settlement amounts and/or expenses\n(including attorneys' fees) incurred in connection with any claim, lawsuit\nor action by any third party that arises or results from the use or\ndistribution of any and all Programs and/or Software.\n\nC. JAVA TECHNOLOGY RESTRICTIONS. You may not create, modify, or change the\nbehavior of, or authorize your licensees to create, modify, or change the\nbehavior of, classes, interfaces, or subpackages that are in any way\nidentified as \"java\", \"javax\", \"javafx\", \"javaee\", \"sun\", \"oracle\" or\nsimilar convention as specified by Oracle in any naming convention\ndesignation.\n\nD. SOURCE CODE. Software may contain source code that, unless expressly\nlicensed for other purposes, is provided solely for reference purposes\npursuant to the terms of this Agreement. Source code may not be\nredistributed unless expressly provided for in this Agreement.\n\nE. THIRD PARTY CODE. Additional copyright notices and license terms\napplicable to portions of the Software are set forth in the\nTHIRDPARTYLICENSEREADME file set forth in the Software or otherwise available\nfrom Oracle. In addition to any terms and conditions of any third party\nopensource/freeware license identified in the THIRDPARTYLICENSEREADME file,\nthe disclaimer of warranty and limitation of liability provisions in\nparagraphs 4 and 5 of the Binary Code License Agreement shall apply to all\nSoftware in this distribution.\n\nF. TERMINATION FOR INFRINGEMENT. Either party may terminate this Agreement\nimmediately should any Software become, or in either party's opinion be\nlikely to become, the subject of a claim of infringement of any intellectual\nproperty right.\n\nFor inquiries please contact: Oracle America, Inc., 500 Oracle Parkway,\nRedwood Shores, California 94065, USA.\n\nLicense for Archived Java Secure Sockets Extension 1.0.3 for Connected Device\nConfiguration 1.0.2; Last updated 9 March 2012", + "json": "oracle-bcl-jsse-1.0.3.json", + "yaml": "oracle-bcl-jsse-1.0.3.yml", + "html": "oracle-bcl-jsse-1.0.3.html", + "license": "oracle-bcl-jsse-1.0.3.LICENSE" + }, + { + "license_key": "oracle-bsd-no-nuclear", + "category": "Free Restricted", + "spdx_license_key": "BSD-3-Clause-No-Nuclear-License-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Use is subject to license terms.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list\nof conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\nNeither the name of Oracle Corporation nor the names of its contributors may be\nused to endorse or promote products derived from this software without specific\nprior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nYou acknowledge that this software is not designed, licensed or intended for use\nin the design, construction, operation or maintenance of any nuclear facility.", + "json": "oracle-bsd-no-nuclear.json", + "yaml": "oracle-bsd-no-nuclear.yml", + "html": "oracle-bsd-no-nuclear.html", + "license": "oracle-bsd-no-nuclear.LICENSE" + }, + { + "license_key": "oracle-code-samples-bsd", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-oracle-code-samples-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\nRedistribution of source code must retain the above copyright notice,\nthis list of conditions and the following disclaimer.\n\nRedistribution in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n\nNeither the name of Oracle and/or its affiliates. or the names of\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nThis software is provided \"AS IS,\" without a warranty of any kind. ALL\nEXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING\nANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\nPURPOSE OR NON- INFRINGEMENT, ARE HEREBY EXCLUDED. Oracle and/or its\naffiliates. (\"SUN\") AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY\nDAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR\nDISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR\nITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR\nDIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE\nDAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY,\nARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, EVEN IF SUN\nHAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nYou acknowledge that this software is not designed, licensed or intended\nfor use in the design, construction, operation or maintenance of any\nnuclear facility.", + "json": "oracle-code-samples-bsd.json", + "yaml": "oracle-code-samples-bsd.yml", + "html": "oracle-code-samples-bsd.html", + "license": "oracle-code-samples-bsd.LICENSE" + }, + { + "license_key": "oracle-commercial-database-11g2", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-oracle-commercial-db-11g2", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-commercial-database-11g2" + ], + "is_exception": false, + "is_deprecated": false, + "text": "This Oracle database is subject to commercial licensing terms. Refer to http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm for complete details.", + "json": "oracle-commercial-database-11g2.json", + "yaml": "oracle-commercial-database-11g2.yml", + "html": "oracle-commercial-database-11g2.html", + "license": "oracle-commercial-database-11g2.LICENSE" + }, + { + "license_key": "oracle-devtools-vsnet-dev", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-devtools-vsnet-dev", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle Technology Network \nOracle Developer Tools for Visual Studio .NET Development License Terms\n \nExport Controls on the Programs \nSelecting the \"Accept License Agreement\" button is a confirmation of your agreement that you comply, now and during the trial term, with each of the following statements:\n \n-You are not a citizen, national, or resident of, and are not under control of, the government of Cuba, Iran, Sudan, Libya, North Korea, Syria, nor any country to which the United States has prohibited export. \n-You will not download or otherwise export or re-export the Programs, directly or indirectly, to the above mentioned countries nor to citizens, nationals or residents of those countries. \n-You are not listed on the United States Department of Treasury lists of Specially Designated Nationals, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers, nor are you listed on the United States Department of Commerce Table of Denial Orders.\n \nYou will not download or otherwise export or re-export the Programs, directly or indirectly, to persons on the above mentioned lists.\n \nYou will not use the Programs for, and will not allow the Programs to be used for, any purposes prohibited by United States law, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction.\n \nEXPORT RESTRICTIONS \nYou agree that U.S. export control laws and other applicable export and import laws govern your use of the programs, including technical data; additional information can be found on Oracle\u00ae's Global Trade Compliance web site (http://www.oracle.com/products/export).\n \nYou agree that neither the programs nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation.\n \nOracle Employees: Under no circumstances are Oracle Employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, failure to comply with this policy could result in disciplinary action up to and including termination.\n \nNote: You are bound by the Oracle Technology Network (\"OTN\") License Agreement terms. The OTN License Agreement terms also apply to all updates you receive under your Technology Track subscription.\n \nThe OTN License Agreement terms below supercede any shrinkwrap license on the OTN Technology Track software CDs and previous OTN License terms (including the Oracle Program License as modified by the OTN Program Use Certificate).\n \nORACLE TECHNOLOGY NETWORK LICENSE AGREEMENT\n\"We,\" \"us,\" and \"our\" refers to Oracle America, Inc., for and on behalf of itself and its subsidiaries and affiliates under common control. \"You\" and \"your\" refers to the individual or entity that wishes to use the programs from Oracle. \"Programs\" refers to the Oracle Developer Tools for Visual Studio.NET software product you wish to download and use and program documentation. \"License\" refers to your right to use the programs under the terms of this agreement. This agreement is governed by the substantive and procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco, San Mateo, or Santa Clara counties in California in any dispute arising out of or relating to this agreement.\n\nWe are willing to license the programs to you only upon the condition that you accept all of the terms contained in this agreement. Read the terms carefully and select the \"Accept\" button at the bottom of the page to confirm your acceptance. If you are not willing to be bound by these terms, select the \"Do Not Accept\" button and the registration process will not continue.\n\nLicense Rights \nWe grant you a nonexclusive, nontransferable limited license to use the programs for purposes of developing your applications. If you want to use the programs for any purpose other than as expressly permitted under this agreement you must contact us, or an Oracle reseller, to obtain the appropriate license. We may audit your use of the programs. Program documentation is provided with the programs.\n\nOwnership and Restrictions \nWe retain all ownership and intellectual property rights in the programs. You may make a sufficient number of copies of the programs for the licensed use and one copy of the programs for backup purposes.\n\nYou may not: \n- use the programs for any purpose other than as provided above; \n- distribute the programs; \n- charge your end users for use of the programs; \n- remove or modify any program markings or any notice of our proprietary rights; \n- use the programs to provide third party training on the content and/or functionality of the programs, - assign this agreement or give the programs, program access or an interest in the programs to any individual or entity \n- cause or permit reverse engineering (unless required by law for interoperability), disassembly or decompilation of the programs; \n- disclose results of any program benchmark tests without our prior consent; or, \n- use any Oracle name, trademark or logo.\n\nExport \nYou agree that U.S. export control laws and other applicable export and import laws govern your use of the programs, including technical data; additional information can be found on Oracle's Global Trade Compliance web site located at http://www.oracle.com/products/export/index.html?content.html. You agree that neither the programs nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation.\n\nDisclaimer of Warranty and Exclusive Remedies\n\nTHE PROGRAMS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.\n\nIN NO EVENT SHALL WE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. OUR ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).\n\nNo Technical Support \nOur technical support organization will not provide technical support, phone support, or updates to you for the programs licensed under this agreement.\n\nRestricted Rights \nIf you distribute a license to the United States government, the programs, including documentation, shall be considered commercial computer software and you will place a legend, in addition to applicable copyright notices, on the documentation, and on the media label, substantially similar to the following:\n\nNOTICE OF RESTRICTED RIGHTS \n\"Programs delivered subject to the DOD FAR Supplement are 'commercial computer software' and use, duplication, and disclosure of the programs, including documentation, shall be subject to the licensing restrictions set forth in the applicable Oracle license agreement. Otherwise, programs delivered subject to the Federal Acquisition Regulations are 'restricted computer software' and use, duplication, and disclosure of the programs, including documentation, shall be subject to the restrictions in FAR 52.227-19, Commercial Computer Software-Restricted Rights (June 1987). Oracle America, Inc., 500 Oracle Parkway, Redwood City, CA 94065.\"\n\nEnd of Agreement \nYou may terminate this agreement by destroying all copies of the programs. We have the right to terminate your right to use the programs if you fail to comply with any of the terms of this agreement, in which case you shall destroy all copies of the programs.\n\nRelationship Between the Parties \nThe relationship between you and us is that of licensee/licensor. Neither party will represent that it has any authority to assume or create any obligation, express or implied, on behalf of the other party, nor to represent the other party as agent, employee, franchisee, or in any other capacity. Nothing in this agreement shall be construed to limit either party's right to independently develop or distribute software that is functionally similar to the other party's products, so long as proprietary information of the other party is not included in such software.\n\nOpen Source \n\"Open Source\" software - software available without charge for use, modification and distribution - is often licensed under terms that require the user to make the user's modifications to the Open Source software or any software that the user 'combines' with the Open Source software freely available in source code form. If you use Open Source software in conjunction with the programs, you must ensure that your use does not: (i) create, or purport to create, obligations of us with respect to the Oracle programs; or (ii) grant, or purport to grant, to any third party any rights to or immunities under our intellectual property or proprietary rights in the Oracle. For example, you may not develop a software program using an Oracle program and an Open Source program where such use results in a program file(s) that contains code from both the Oracle program and the Open Source program (including without limitation libraries) if the Open Source program is licensed under a license that requires any \"modifications\" be made freely available. You also may not combine the Oracle program with programs licensed under the GNU General Public License (\"GPL\") in any manner that could cause, or could be interpreted or asserted to cause, the Oracle program, or any modifications thereto, to become subject to the terms of the GPL.\n\nEntire Agreement \nYou agree that this agreement is the complete agreement for the programs and licenses, and this agreement supersedes all prior or contemporaneous agreements or representations. If any term of this agreement is found to be invalid or unenforceable, the remaining provisions will remain effective.\n\nLast updated: 04/21/05\n\nShould you have any questions concerning this License Agreement, or if you desire to contact Oracle for any reason, please write: \nOracle America, Inc. \n500 Oracle Parkway, \nRedwood City, CA 94065\n\nOracle may contact you to ask if you had a satisfactory experience installing and using this OTN software download.", + "json": "oracle-devtools-vsnet-dev.json", + "yaml": "oracle-devtools-vsnet-dev.yml", + "html": "oracle-devtools-vsnet-dev.html", + "license": "oracle-devtools-vsnet-dev.LICENSE" + }, + { + "license_key": "oracle-entitlement-05-15", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-entitlement-05-15", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle Corporation (\"ORACLE\") ENTITLEMENT for SOFTWARE\n\nLicensee/Company: Entity receiving Software.\n\nEffective Date: Date of delivery of the Software to You.\n\nSoftware: Product\n\nLicense Term: Perpetual (subject to termination under the SLA).\n\nLicensed Unit: Software Copy.\n\nLicensed unit Count: Unlimited.\n\nPermitted Uses: \n\n1. You may reproduce and use the Software for Your own Individual,\nCommercial and Research and Instructional Use only for the purposes of\ndesigning, developing, testing, and running Your applets and\napplications (\"Programs\").\n\n2. Subject to the terms and conditions of this Agreement and\nrestrictions and exceptions set forth in the Software's documentation,\nYou may reproduce and distribute portions of Software identified as a\nredistributable in the documentation (each a \"Redistributable\"),\nprovided that You comply with the following (note that You may be\nentitled to reproduce and distribute other portions of the Software not\ndefined in the documentation as a Redistributable under certain other\nlicenses as described in the THIRDPARTYLICENSEREADME, if applicable):\n\n(a) You distribute Redistributable complete and unmodified and only\nbundled as part of Your Programs,\n\n(b) Your Programs add significant and primary functionality to the\nRedistributable,\n\n(c) You distribute Redistributable for the sole purpose of running Your\nPrograms,\n\n(d) You do not distribute additional software intended to replace any\ncomponent(s) of the Redistributable,\n\n(e) You do not remove or alter any proprietary legends or notices\ncontained in or on the Redistributable.\n\n(f) You only distribute the Redistributable subject to a license\nagreement that protects Oracle's interests consistent with the terms\ncontained in this Agreement, and\n\n(g) You agree to defend and indemnify Oracle and its licensors from and\nagainst any damages, costs, liabilities, settlement amounts and/or\nexpenses (including attorneys' fees) incurred in connection with any\nclaim, lawsuit or action by any third party that arises or results from\nthe use or distribution of any and all Programs and/or\nRedistributable.\n\n3. Java Technology Restrictions. You may not create, modify, or change\nthe behavior of, or authorize Your licensees to create, modify, or\nchange the behavior of, classes, interfaces, or subpackages that are in\nany way identified as \"java\", \"javax\", \"sun\" or similar convention as\nspecified by Oracle in any naming convention designation.\n\n4. No Diagnostic, Maintenance, Repair or Technical Support Services.\nThe scope of Your license does not include any right, express or\nimplied, (i) to access, copy, distribute, display or use the Software\nto provide diagnostic, maintenance, repair or technical support\nservices for Oracle software or Oracle hardware on behalf of any third party\nfor Your direct or indirect commercial gain or advantage, without Oracle's\nprior written authorization, or (ii) for any third party to access,\ncopy, distribute, display or use the Software to provide diagnostic,\nmaintenance, repair or technical support services for Oracle software or\nOracle hardware on Your behalf for such party's direct or indirect\ncommercial gain or advantage, without Oracle's prior written\nauthorization. The limitations set forth in this paragraph apply to any\nand all error corrections, patches, updates, and upgrades to the\nSoftware You may receive, access, download or otherwise obtain from\nOracle.\n\n5. Records and Documentation. During the term of the SLA and\nEntitlement, and for a period of three (3) years thereafter, You agree\nto keep proper records and documentation of Your compliance with the\nSLA and Entitlement. Upon Oracle's reasonable request, You will provide\ncopies of such records and documentation to Oracle for the purpose of\nconfirming Your compliance with the terms and conditions of the SLA and\nEntitlement. This section will survive any termination of the SLA and\nEntitlement. You may terminate this SLA and Entitlement at any time by\ndestroying all copies of the Software in which case the obligations set\nforth in Section 7 of the SLA shall apply.\n\n\nOracle Corporation (\"ORACLE\")\nSOFTWARE LICENSE AGREEMENT\n\nREAD THE TERMS OF THIS AGREEMENT (\"AGREEMENT\") CAREFULLY BEFORE OPENING\nSOFTWARE MEDIA PACKAGE. BY OPENING SOFTWARE MEDIA PACKAGE, YOU AGREE TO\nTHE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING SOFTWARE\nELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING\nTHE \"ACCEPT\" BUTTON AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE\nTO ALL OF THE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE\nOF PURCHASE FOR A REFUND OR, IF SOFTWARE IS ACCESSED ELECTRONICALLY,\nSELECT THE \"DECLINE\" (OR \"EXIT\") BUTTON AT THE END OF THIS AGREEMENT.\nIF YOU HAVE SEPARATELY AGREED TO LICENSE TERMS (\"MASTER TERMS\") FOR\nYOUR LICENSE TO THIS SOFTWARE, THEN SECTIONS 1-6 OF THIS AGREEMENT\n(\"SUPPLEMENTAL LICENSE TERMS\") SHALL SUPPLEMENT AND SUPERSEDE THE\nMASTER TERMS IN RELATION TO THIS SOFTWARE.\n\n1.\tDefinitions.\n\n(a) \"Entitlement\" means the collective set of applicable documents\nauthorized by Oracle evidencing your obligation to pay associated fees (if\nany) for the license, associated Services, and the authorized scope of\nuse of Software under this Agreement.\n\n(b) \"Licensed Unit\" means the unit of measure by which your use of\nSoftware and/or Service is licensed, as described in your Entitlement.\n\n(c) \"Permitted Use\" means the licensed Software use(s) authorized\nin this Agreement as specified in your Entitlement. The Permitted Use\nfor any bundled Oracle software not specified in your Entitlement will be\nevaluation use as provided in Section 3.\n\n(d) \"Service\" means the service(s) that Oracle or its delegate will\nprovide, if any, as selected in your Entitlement and as further\ndescribed in the applicable service listings at\nwww.sun.com/service/servicelist.\n\n(e) \"Software\" means the Oracle software described in your\nEntitlement. Also, certain software may be included for evaluation use\nunder Section 3.\n\n(f) \"You\" and \"Your\" means the individual or legal entity specified\nin the Entitlement, or for evaluation purposes, the entity performing\nthe evaluation.\n\n2. License Grant and Entitlement.\n\nSubject to the terms of your Entitlement, Oracle grants you a\nnonexclusive, nontransferable limited license to use Software for its\nPermitted Use for the license term. Your Entitlement will specify (a)\nSoftware licensed, (b) the Permitted Use, (c) the license term, and (d)\nthe Licensed Units.\n\nAdditionally, if your Entitlement includes Services, then it will also\nspecify the (e) Service and (f) service term.\n\nIf your rights to Software or Services are limited in duration and the\ndate such rights begin is other than the purchase date, your\nEntitlement will provide that beginning date(s).\n\nThe Entitlement may be delivered to you in various ways depending on\nthe manner in which you obtain Software and Services, for example, the\nEntitlement may be provided in your receipt, invoice or your contract\nwith Oracle or authorized Oracle reseller. It may also be in electronic\nformat if you download Software.\n\n3. Permitted Use.\n\nAs selected in your Entitlement, one or more of the following Permitted\nUses will apply to your use of Software. Unless you have an Entitlement\nthat expressly permits it, you may not use Software for any of the\nother Permitted Uses. If you don't have an Entitlement, or if your\nEntitlement doesn't cover additional software delivered to you, then\nsuch software is for your Evaluation Use.\n\n(a) Evaluation Use. You may evaluate Software internally for a period\nof 90 days from your first use.\n\n(b) Research and Instructional Use. You may use Software internally to\ndesign, develop and test, and also to provide instruction on such\nuses.\n\n(c) Individual Use. You may use Software internally for personal,\nindividual use.\n\n(d) Commercial Use. You may use Software internally for your own\ncommercial purposes.\n\n(e) Service Provider Use. You may make Software functionality\naccessible (but not by providing Software itself or through outsourcing\nservices) to your end users in an extranet deployment, but not to your\naffiliated companies or to government agencies.\n\n4. Licensed Units.\n\nYour Permitted Use is limited to the number of Licensed Units stated in\nyour Entitlement. If you require additional Licensed Units, you will\nneed additional Entitlement(s).\n\n5. Restrictions.\n\n(a) The copies of Software provided to you under this Agreement are\nlicensed, not sold, to you by Oracle. Oracle reserves all rights not\nexpressly granted. (b) You may make a single archival copy of Software,\nbut otherwise may not copy, modify, or distribute Software. However if\nthe Oracle documentation accompanying Software lists specific portions of\nSoftware, such as header files, class libraries, reference source code,\nand/or redistributable files, that may be handled differently, you may\ndo so only as provided in the Oracle documentation. (c) You may not rent,\nlease, lend or encumber Software. (d) Unless enforcement is prohibited\nby applicable law, you may not decompile, or reverse engineer Software.\n(e) The terms and conditions of this Agreement will apply to any\nSoftware updates, provided to you at Oracle's discretion, that replace\nand/or supplement the original Software, unless such update contains a\nseparate license. (f) You may not publish or provide the results of any\nbenchmark or comparison tests run on Software to any third party\nwithout the prior written consent of Oracle. (g) Software is confidential\nand copyrighted. (h) Unless otherwise specified, if Software is\ndelivered with embedded or bundled software that enables functionality\nof Software, you may not use such software on a stand-alone basis or\nuse any portion of such software to interoperate with any program(s)\nother than Software. (i) Software may contain programs that perform\nautomated collection of system data and/or automated software updating\nservices. System data collected through such programs may be used by\nOracle, its subcontractors, and its service delivery partners for the\npurpose of providing you with remote system services and/or improving\nOracle's software and systems. (j) Software is not designed, licensed or\nintended for use in the design, construction, operation or maintenance\nof any nuclear facility and Oracle and its licensors disclaim any express\nor implied warranty of fitness for such uses. (k) No right, title or\ninterest in or to any trademark, service mark, logo or trade name of\nOracle or its licensors is granted under this Agreement.\n\n6. Java Compatibility and Open Source.\n\nSoftware may contain Java technology. You may not create additional\nclasses to, or modifications of, the Java technology, except under\ncompatibility requirements available under a separate agreement\navailable at www.java.net.\n\nOracle supports and benefits from the global community of open source\ndevelopers, and thanks the community for its important contributions\nand open standards-based technology, which Oracle has adopted into many of\nits products.\n\nPlease note that portions of Software may be provided with notices and\nopen source licenses from such communities and third parties that\ngovern the use of those portions, and any licenses granted hereunder do\nnot alter any rights and obligations you may have under such open\nsource licenses, however, the disclaimer of warranty and limitation of\nliability provisions in this Agreement will apply to all Software in\nthis distribution.\n\n7. Term and Termination.\n\nThe license and service term are set forth in your Entitlement(s). Your\nrights under this Agreement will terminate immediately without notice\nfrom Oracle if you materially breach it or take any action in derogation\nof Oracle's and/or its licensors' rights to Software. Oracle may terminate\nthis Agreement should any Software become, or in Oracle's reasonable\nopinion likely to become, the subject of a claim of intellectual\nproperty infringement or trade secret misappropriation. Upon\ntermination, you will cease use of, and destroy, Software and confirm\ncompliance in writing to Oracle. Sections 1, 5, 6, 7, and 9-15 will\nsurvive termination of the Agreement.\n\n8. Limited Warranty.\n\nOracle warrants to you that for a period of 90 days from the date of\npurchase, as evidenced by a copy of the receipt, the media on which\nSoftware is furnished (if any) will be free of defects in materials and\nworkmanship under normal use. Except for the foregoing, Software is\nprovided \"AS IS\". Your exclusive remedy and Oracle's entire liability\nunder this limited warranty will be at Oracle's option to replace Software\nmedia or refund the fee paid for Software. Some states do not allow\nlimitations on certain implied warranties, so the above may not apply\nto you. This limited warranty gives you specific legal rights. You may\nhave others, which vary from state to state.\n\n9. Disclaimer of Warranty.\n\nUNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS,\nREPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT\nARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO\nBE LEGALLY INVALID.\n\n10. Limitation of Liability.\n\nTO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL ORACLE OR ITS\nLICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR\nSPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES,\nHOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR\nRELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF ORACLE HAS\nBEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Oracle's\nliability to you, whether in contract, tort (including negligence), or\notherwise, exceed the amount paid by you for Software under this\nAgreement. The foregoing limitations will apply even if the above\nstated warranty fails of its essential purpose. Some states do not\nallow the exclusion of incidental or consequential damages, so some of\nthe terms above may not be applicable to you.\n\n11. Export Regulations.\n\nAll Software, documents, technical data, and any other materials\ndelivered under this Agreement are subject to U.S. export control laws\nand may be subject to export or import regulations in other countries.\nYou agree to comply strictly with these laws and regulations and\nacknowledge that you have the responsibility to obtain any licenses to\nexport, re-export, or import as may be required after delivery to you.\n\n12. U.S. Government Restricted Rights.\n\nIf Software is being acquired by or on behalf of the U.S. Government or\nby a U.S. Government prime contractor or subcontractor (at any tier),\nthen the Government's rights in Software and accompanying documentation\nwill be only as set forth in this Agreement; this is in accordance with\n48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD)\nacquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD\nacquisitions).\n\n13. Governing Law.\n\nAny action related to this Agreement will be governed by California law\nand controlling U.S. federal law. No choice of law rules of any\njurisdiction will apply.\n\n14. Severability.\n\nIf any provision of this Agreement is held to be unenforceable, this\nAgreement will remain in effect with the provision omitted, unless\nomission would frustrate the intent of the parties, in which case this\nAgreement will immediately terminate.\n\n15. Integration.\n\nThis Agreement, including any terms contained in your Entitlement, is\nthe entire agreement between you and Oracle relating to its subject\nmatter. It supersedes all prior or contemporaneous oral or written\ncommunications, proposals, representations and warranties and prevails\nover any conflicting or additional terms of any quote, order,\nacknowledgment, or other communication between the parties relating to\nits subject matter during the term of this Agreement. No modification\nof this Agreement will be binding, unless in writing and signed by an\nauthorized representative of each party.\n\nFor inquiries please contact: Oracle Corporation, 500 Oracle Parkway,\nRedwood Shores, California 94065, USA.", + "json": "oracle-entitlement-05-15.json", + "yaml": "oracle-entitlement-05-15.yml", + "html": "oracle-entitlement-05-15.html", + "license": "oracle-entitlement-05-15.LICENSE" + }, + { + "license_key": "oracle-java-ee-sdk-2010", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-java-ee-sdk-2010", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle Technology Network Developer License Terms for JAVA EE SDK\n\nExport Controls on the Programs Selecting the \"Accept License Agreement\" button is a confirmation of your agreement that you comply, now and during the trial term, with each of the following statements:\n\n-You are not a citizen, national, or resident of, and are not under control of, the government of Cuba, Iran, Sudan, Libya, North Korea, Syria, nor any country to which the United States has prohibited export.\n\n-You will not download or otherwise export or re-export the Programs, directly or indirectly, to the above mentioned countries nor to citizens, nationals or residents of those countries.\n\n-You are not listed on the United States Department of Treasury lists of Specially Designated Nationals, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers, nor are you listed on the United States Department of Commerce Table of Denial Orders.\n\nYou will not download or otherwise export or re-export the Programs, directly or indirectly, to persons on the above mentioned lists.\n\nYou will not use the Programs for, and will not allow the Programs to be used for, any purposes prohibited by United States law, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction.\n\nEXPORT RESTRICTIONS You agree that U.S. export control laws and other applicable export and import laws govern your use of the programs, including technical data; additional information can be found on Oracle\u00ae's Global Trade Compliance web site (http://www.oracle.com/products/export).\n\nYou agree that neither the programs nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation.\n\nOracle Employees: Under no circumstances are Oracle Employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, failure to comply with this policy could result in disciplinary action up to and including termination.\n\nNote: You are bound by the Oracle Technology Network (\"OTN\") License Agreement terms. The OTN License Agreement terms also apply to all updates you receive under your Technology Track subscription.\n\nThe OTN License Agreement terms below supercede any shrinkwrap license on the OTN Technology Track software CDs and previous OTN License terms (including the Oracle Program License as modified by the OTN Program Use Certificate). \n\nOracle Technology Network Development License Agreement for JAVA EE SDK\n\n\"We,\" \"us,\" and \"our\" refers to Oracle America, Inc., for and on behalf of itself and its subsidiaries and affiliates under common control. \"You\" and \"your\" refers to the individual or entity that wishes to use the programs from Oracle. \"Programs\" refers to the Java EE SDK software product you wish to download and use and program documentation. \"License\" refers to your right to use the programs under the terms of this agreement. This agreement is governed by the substantive and procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco, San Mateo, or Santa Clara counties in California in any dispute arising out of or relating to this agreement.\n\nWe are willing to license the programs to you only upon the condition that you accept all of the terms contained in this agreement. Read the terms carefully and select the \"Accept\" button at the bottom of the page to confirm your acceptance. If you are not willing to be bound by these terms, select the \"Do Not Accept\" button and the registration process will not continue.\n\nLicense Rights\n\nWe grant you a nonexclusive, nontransferable limited license to use the programs for purposes of developing your applications. If you want to use the programs for any purpose other than as expressly permitted under this agreement you must contact us, or an Oracle reseller, to obtain the appropriate license. We may audit your use of the programs. Program documentation is provided with the programs.\n\nOwnership and Restrictions\n\nWe retain all ownership and intellectual property rights in the programs. You may make a sufficient number of copies of the programs for the licensed use and one copy of the programs for backup purposes.\n\nYou may not:\n\n\u00b7 use the programs for any purpose other than as provided above; \n\u00b7 distribute the programs; \n\u00b7 charge your end users for use of the programs; \n\u00b7 remove or modify any program markings or any notice of our proprietary rights; \n\u00b7 use the programs to provide third party training on the content and/or functionality of the programs; \n\u00b7 assign this agreement or give the programs, program access or an interest in the programs to any individual or entity; \n\u00b7 cause or permit reverse engineering (unless required by law for interoperability), disassembly or decompilation of the programs; \n\u00b7 disclose results of any program benchmark tests without our prior consent; or, \n\u00b7 use any Oracle name, trademark or logo.\n\nExport\n\nYou agree that U.S. export control laws and other applicable export and import laws govern your use of the programs, including technical data; additional information can be found on Oracle's Global Trade Compliance web site located at http://www.oracle.com/products/export/index.html. You agree that neither the programs nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation.\n\nDisclaimer of Warranty and Exclusive Remedies\n\nTHE PROGRAMS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT. IN NO EVENT SHALL WE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. OUR ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).\n\nNo Technical Support\n\nOur technical support organization will not provide technical support, phone support, or updates to you for the programs licensed under this agreement.\n\nRestricted Rights\n\nIf you distribute a license to the United States government, the programs, including documentation, shall be considered commercial computer software and you will place a legend, in addition to applicable copyright notices, on the documentation, and on the media label, substantially similar to the following:\n\nNOTICE OF RESTRICTED RIGHTS\n\n\"Programs delivered subject to the DOD FAR Supplement are 'commercial computer software' and use, duplication, and disclosure of the programs, including documentation, shall be subject to the licensing restrictions set forth in the applicable Oracle license agreement. Otherwise, programs delivered subject to the Federal Acquisition Regulations are 'restricted computer software' and use, duplication, and disclosure of the programs, including documentation, shall be subject to the restrictions in FAR 52.227-19, Commercial Computer Software-Restricted Rights (June 1987). Oracle America, Inc., 500 Oracle Parkway, Redwood City, CA 94065.\"\n\nEnd of Agreement\n\nYou may terminate this agreement by destroying all copies of the programs. We have the right to terminate your right to use the programs if you fail to comply with any of the terms of this agreement, in which case you shall destroy all copies of the programs.\n\nRelationship Between the Parties\n\nThe relationship between you and us is that of licensee/licensor. Neither party will represent that it has any authority to assume or create any obligation, express or implied, on behalf of the other party, nor to represent the other party as agent, employee, franchisee, or in any other capacity. Nothing in this agreement shall be construed to limit either party's right to independently develop or distribute software that is functionally similar to the other party's products, so long as proprietary information of the other party is not included in such software.\n\nOpen Source\n\n\"Open Source\" software - software available without charge for use, modification and distribution - is often licensed under terms that require the user to make the user's modifications to the Open Source software or any software that the user 'combines' with the Open Source software freely available in source code form. If you use Open Source software in conjunction with the programs, you must ensure that your use does not: (i) create, or purport to create, obligations of us with respect to the Oracle programs; or (ii) grant, or purport to grant, to any third party any rights to or immunities under our intellectual property or proprietary rights in the Oracle. For example, you may not develop a software program using an Oracle program and an Open Source program where such use results in a program file(s) that contains code from both the Oracle program and the Open Source program (including without limitation libraries) if the Open Source program is licensed under a license that requires any \"modifications\" be made freely available. You also may not combine the Oracle program with programs licensed under the GNU General Public License (\"GPL\") in any manner that could cause, or could be interpreted or asserted to cause, the Oracle program, or any modifications thereto, to become subject to the terms of the GPL.\n\nEntire Agreement\n\nYou agree that this agreement is the complete agreement for the programs and licenses, and this agreement supersedes all prior or contemporaneous agreements or representations. If any term of this agreement is found to be invalid or unenforceable, the remaining provisions will remain effective.\n\nLast updated: 05/10/2010 Should you have any questions concerning this License Agreement, or if you desire to contact Oracle for any reason, please write: Oracle America, Inc. 500 Oracle Parkway, Redwood City, CA 94065\n\nOracle may contact you to ask if you had a satisfactory experience installing and using this OTN software download.", + "json": "oracle-java-ee-sdk-2010.json", + "yaml": "oracle-java-ee-sdk-2010.yml", + "html": "oracle-java-ee-sdk-2010.html", + "license": "oracle-java-ee-sdk-2010.LICENSE" + }, + { + "license_key": "oracle-master-agreement", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-oracle-master-agreement", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Oracle Master Agreement (OMA) is the standard agreement that is used to license Oracle programs and acquire related services.\n\nSee http://www.oracle.com/us/corporate/contracts/oma/index.html\n\nOracle 1-800-633-0738", + "json": "oracle-master-agreement.json", + "yaml": "oracle-master-agreement.yml", + "html": "oracle-master-agreement.html", + "license": "oracle-master-agreement.LICENSE" + }, + { + "license_key": "oracle-mysql-foss-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-oracle-mysql-foss-exception2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-mysql-foss-exception-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "text": "Oracle's FOSS License Exception Terms and Conditions\n\n 1. Definitions. \"Derivative Work\" means a derivative work, as defined\n under applicable copyright law, formed entirely from the Program and\n one or more FOSS Applications.\n\n \"FOSS Application\" means a free and open source software application\n distributed subject to a license listed in the section below titled\n \"FOSS License List.\"\n\n \"FOSS Notice\" means a notice placed by Oracle or MySQL in a copy of\n the MySQL Client Libraries stating that such copy of the MySQL Client\n Libraries may be distributed under Oracle's or MySQL's FOSS (or FLOSS)\n License Exception.\n\n \"Independent Work\" means portions of the Derivative Work that are not\n derived from the Program and can reasonably be considered independent\n and separate works.\n\n \"Program\" means a copy of Oracle's MySQL Client Libraries that\n contains a FOSS Notice.\n\n 2. A FOSS application developer (\"you\" or \"your\") may distribute a\n Derivative Work provided that you and the Derivative Work meet all of\n the following conditions:\n\n a. You obey the GPL in all respects for the Program and all portions\n (including modifications) of the Program included in the\n Derivative Work (provided that this condition does not apply to\n Independent Works);\n b. The Derivative Work does not include any work licensed under the\n GPL other than the Program;\n c. You distribute Independent Works subject to a license listed in\n the section below titled \"FOSS License List\";\n d. You distribute Independent Works in object code or executable\n form with the complete corresponding machine-readable source code\n on the same medium and under the same FOSS license applying to\n the object code or executable forms;\n e. All works that are aggregated with the Program or the Derivative\n Work on a medium or volume of storage are not derivative works of\n the Program, Derivative Work or FOSS Application, and must\n reasonably be considered independent and separate works.\n\n 3. Oracle reserves all rights not expressly granted in these terms and\n conditions. If all of the above conditions are not met, then this FOSS\n License Exception does not apply to you or your Derivative Work.\n\nFOSS License List\n\n+------------------------------------------------------------------------+\n|License Name |Version(s)/Copyright Date|\n|----------------------------------------------+-------------------------|\n|Academic Free License |2.0 |\n|----------------------------------------------+-------------------------|\n|Apache Software License |1.0/1.1/2.0 |\n|----------------------------------------------+-------------------------|\n|Apple Public Source License |2.0 |\n|----------------------------------------------+-------------------------|\n|Artistic license |From Perl 5.8.0 |\n|----------------------------------------------+-------------------------|\n|BSD license |\"July 22 1999\" |\n|----------------------------------------------+-------------------------|\n|Common Development and Distribution License |1.0 |\n|(CDDL) | |\n|----------------------------------------------+-------------------------|\n|Common Public License |1.0 |\n|----------------------------------------------+-------------------------|\n|Eclipse Public License |1.0 |\n|----------------------------------------------+-------------------------|\n|European Union Public License (EUPL)\u00b9 |1.1 |\n|----------------------------------------------+-------------------------|\n|GNU Affero General Public License (AGPL) |3.0 |\n|----------------------------------------------+-------------------------|\n|GNU Library or \"Lesser\" General Public License|2.0/2.1/3.0 |\n|(LGPL) | |\n|----------------------------------------------+-------------------------|\n|GNU General Public License (GPL) |3.0 |\n|----------------------------------------------+-------------------------|\n|IBM Public License |1.0 |\n|----------------------------------------------+-------------------------|\n|Jabber Open Source License |1.0 |\n|----------------------------------------------+-------------------------|\n|MIT License (As listed in file |- |\n|MIT-License.txt) | |\n|----------------------------------------------+-------------------------|\n|Mozilla Public License (MPL) |1.0/1.1 |\n|----------------------------------------------+-------------------------|\n|Open Software License |2.0 |\n|----------------------------------------------+-------------------------|\n|OpenSSL license (with original SSLeay license)|\"2003\" (\"1998\") |\n|----------------------------------------------+-------------------------|\n|PHP License |3.0/3.01 |\n|----------------------------------------------+-------------------------|\n|Python license (CNRI Python License) |- |\n|----------------------------------------------+-------------------------|\n|Python Software Foundation License |2.1.1 |\n|----------------------------------------------+-------------------------|\n|Sleepycat License |\"1999\" |\n|----------------------------------------------+-------------------------|\n|University of Illinois/NCSA Open Source |- |\n|License | |\n|----------------------------------------------+-------------------------|\n|W3C License |\"2001\" |\n|----------------------------------------------+-------------------------|\n|X11 License |\"2001\" |\n|----------------------------------------------+-------------------------|\n|Zlib/libpng License |- |\n|----------------------------------------------+-------------------------|\n|Zope Public License |2.0 |\n+------------------------------------------------------------------------+\n\n\u00b9) When an Independent Work is licensed under a \"Compatible License\"\npursuant to the EUPL, the Compatible License rather than the EUPL is the\napplicable license for purposes of these FOSS License Exception Terms and\nConditions.", + "json": "oracle-mysql-foss-exception-2.0.json", + "yaml": "oracle-mysql-foss-exception-2.0.yml", + "html": "oracle-mysql-foss-exception-2.0.html", + "license": "oracle-mysql-foss-exception-2.0.LICENSE" + }, + { + "license_key": "oracle-nftc-2021", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-nftc-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle No-Fee Terms and Conditions (NFTC)\n\nDefinitions\n\n\"Oracle\" refers to Oracle America, Inc. \"You\" and \"Your\" refers to (a) a company or organization (each an \"Entity\") accessing the Programs, if use of the Programs will be on behalf of such Entity; or (b) an individual accessing the Programs, if use of the Programs will not be on behalf of an Entity. \"Program(s)\" refers to Oracle software provided by Oracle pursuant to the following terms and any updates, error corrections, and/or Program Documentation provided by Oracle. \"Program Documentation\" refers to Program user manuals and Program installation manuals, if any. If available, Program Documentation may be delivered with the Programs and/or may be accessed from www.oracle.com/documentation. \"Separate Terms\" refers to separate license terms that are specified in the Program Documentation, readmes or notice files and that apply to Separately Licensed Technology. \"Separately Licensed Technology\" refers to Oracle or third party technology that is licensed under Separate Terms and not under the terms of this license.\n\nSeparately Licensed Technology\n\nOracle may provide certain notices to You in Program Documentation, readmes or notice files in connection with Oracle or third party technology provided as or with the Programs. If specified in the Program Documentation, readmes or notice files, such technology will be licensed to You under Separate Terms. Your rights to use Separately Licensed Technology under Separate Terms are not restricted in any way by the terms herein. For clarity, notwithstanding the existence of a notice, third party technology that is not Separately Licensed Technology shall be deemed part of the Programs licensed to You under the terms of this license.\n\nSource Code for Open Source Software\n\nFor software that You receive from Oracle in binary form that is licensed under an open source license that gives You the right to receive the source code for that binary, You can obtain a copy of the applicable source code from https://oss.oracle.com/sources/ or http://www.oracle.com/goto/opensourcecode. If the source code for such software was not provided to You with the binary, You can also receive a copy of the source code on physical media by submitting a written request pursuant to the instructions in the \"Written Offer for Source Code\" section of the latter website.\n\n-------------------------------------------------------------------------------\n\nThe following license terms apply to those Programs that are not provided to You under Separate Terms.\n\nLicense Rights and Restrictions\n\nOracle grants to You, as a recipient of this Program, subject to the conditions stated herein, a nonexclusive, nontransferable, limited license to:\n\n(a) internally use the unmodified Programs for the purposes of developing, testing, prototyping and demonstrating your applications, and running the Program for Your own personal use or internal business operations; and\n\n(b) redistribute the unmodified Program and Program Documentation, under the terms of this License, provided that You do not charge Your licensees any fees associated with such distribution or use of the Program, including, without limitation, fees for products that include or are bundled with a copy of the Program or for services that involve the use of the distributed Program.\n\nYou may make copies of the Programs to the extent reasonably necessary for exercising the license rights granted herein and for backup purposes. You are granted the right to use the Programs to provide third party training in the use of the Programs and associated Separately Licensed Technology only if there is express authorization of such use by Oracle on the Program's download page or in the Program Documentation.\n\nYour license is contingent on compliance with the following conditions:\n\n- You do not remove markings or notices of either Oracle's or a licensor's proprietary rights from the Programs or Program Documentation;\n\n- You comply with all U.S. and applicable export control and economic sanctions laws and regulations that govern Your use of the Programs (including technical data);\n\n- You do not cause or permit reverse engineering, disassembly or decompilation of the Programs (except as allowed by law) by You nor allow an associated party to do so.\n\nFor clarity, any source code that may be included in the distribution with the Programs is provided solely for reference purposes and may not be modified, unless such source code is under Separate Terms permitting modification.\n\nOwnership\n\nOracle or its licensors retain all ownership and intellectual property rights to the Programs.\n\nInformation Collection\n\nThe Programs' installation and/or auto-update processes, if any, may transmit a limited amount of data to Oracle or its service provider about those processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. Refer to Oracle's Privacy Policy at www.oracle.com/privacy.\n\nDisclaimer of Warranties; Limitation of Liability\n\nTHE PROGRAMS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT.\n\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL ORACLE 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.\n\nLast updated: 12 September 2021", + "json": "oracle-nftc-2021.json", + "yaml": "oracle-nftc-2021.yml", + "html": "oracle-nftc-2021.html", + "license": "oracle-nftc-2021.LICENSE" + }, + { + "license_key": "oracle-openjdk-classpath-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-oracle-openjdk-exception-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-openjdk-classpath-exception-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "text": "\"CLASSPATH\" EXCEPTION TO THE GPL\n\nCertain source files distributed by Oracle America and/or its affiliates are\nsubject to the following clarification and special exception to the GPL, but\nonly where Oracle has expressly included in the particular source file's header\nthe words \"Oracle designates this particular file as subject to the \"Classpath\"\nexception as provided by Oracle in the LICENSE file that accompanied this code.\"\n\nLinking this library statically or dynamically with other modules is making\na combined work based on this library. Thus, the terms and conditions of\nthe GNU General Public License cover the whole combination.\n\nAs a special exception, the copyright holders of this library give you\npermission to link this library with independent modules to produce an\nexecutable, regardless of the license terms of these independent modules,\nand to copy and distribute the resulting executable under terms of your\nchoice, provided that you also meet, for each linked independent module,\nthe terms and conditions of the license of that module. An independent\nmodule is a module which is not derived from or based on this library. If\nyou modify this library, you may extend this exception to your version of\nthe library, but you are not obligated to do so. If you do not wish to do\nso, delete this exception statement from your version.", + "json": "oracle-openjdk-classpath-exception-2.0.json", + "yaml": "oracle-openjdk-classpath-exception-2.0.yml", + "html": "oracle-openjdk-classpath-exception-2.0.html", + "license": "oracle-openjdk-classpath-exception-2.0.LICENSE" + }, + { + "license_key": "oracle-otn-javase-2019", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-otn-javase-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle Technology Network License Agreement for Oracle Java SE\n\nOracle is willing to authorize Your access to software associated with this License Agreement (\u201cAgreement\u201d) only upon the condition that You accept that this Agreement governs Your use of the software. By selecting the \"Accept License Agreement\" button or box (or the equivalent) or installing or using the Programs, You indicate Your acceptance of this Agreement and Your agreement, as an authorized representative of Your company or organization (if being acquired for use by an entity) or as an individual, to comply with the license terms that apply to the software that You wish to download and access. If You are not willing to be bound by this Agreement, do not select the \u201cAccept License Agreement\u201d button or box (or the equivalent) and do not download or access the software.\n\nDefinitions\"Oracle\" refers to Oracle America, Inc.\n\n\"You\" and \"Your\" refers to (a) a company or organization (\u201cEntity\u201d) accessing the Programs, if use of the Programs will be on behalf of such Entity; or (b) an individual accessing the Programs (\u201cIndividual\u201d), if use of the Programs will not be on behalf of an Entity.\n\n\u201cContractors\u201d refers to Your agents and contractors (including, without limitation, outsourcers).\n\n\u201cDevelopment Use\u201d refers to Your internal use of the Programs to develop, test, prototype and demonstrate Your Applications. For purposes of clarity, the \u201cto develop\u201d grant includes using the Programs to run profilers, debuggers and Integrated Development Environments (IDE Tools) where the primary purpose of the IDE Tools is profiling, debugging and source code editing Applications.\n\n\"Program(s)\" refers to Oracle software provided by Oracle pursuant to this Agreement and any updates, error corrections, and/or Program Documentation provided by Oracle.\n\n\u201cProgram Documentation\u201d refers to the Licensing Information User Manual for Oracle Java SE for the applicable version accessible at https://www.oracle.com/technetwork/java/javase/documentation/ and other documentation provided by Oracle with the Programs or accessible at https://docs.oracle.com/en/java.\n\n\u201cSeparate Terms\u201d refers to separate license terms that are specified in the Program Documentation, readmes or notice files and that apply to Separately Licensed Third Party Technology.\n\n\u201cSeparately Licensed Third Party Technology\u201d refers to third party technology that is licensed under Separate Terms and not under the terms of this Agreement.\n\n\u201cApplication\u201d refers to applications intended to run on the Java Platform, Standard Edition.\n\n\u201cPersonal Use\u201d refers to an Individual's use of the Programs solely on a desktop or laptop computer under such Individual's control only to run Personal Applications.\n\n\u201cPersonal Applications\u201d refers to Applications designed for individual personal use only, such as games or personal productivity tools.\n\n\u201cOracle Approved Product Use\u201d refers to Your internal use of the Programs only to run: (a) the product(s) identified as Schedule A Products at https://java.com/oaa; and/or (b) software Applications developed using the products identified as Schedule B Products at java.com/oaa by an Oracle authorized licensee of such Schedule B Products. If You are unsure whether the Application You intend to run using the Programs is developed using a Schedule B Product, please contact your Application provider.\n\n\u201cOracle Cloud Infrastructure Use (\u201cOCI Use\u201d)\u201d refers to Your use of the Programs on Oracle's Cloud Infrastructure with the Oracle Cloud Infrastructure products identified in the Oracle PaaS and IaaS Universal Credits Service Descriptions available at http://oracle.com/contracts during the period in which You maintain a subscription for such Oracle Cloud Infrastructure products.\n\nLicense Rights and Restrictions Oracle grants You a nonexclusive, nontransferable, limited license to use the Programs, subject to the restrictions stated in this Agreement and Program Documentation, only for:\n\n(i) Personal Use,\n(ii) Development Use,\n(iii) Oracle Approved Product Use, and/or\n(iv) Oracle Cloud Infrastructure Use.\nYou may allow Your Contractor(s) to use the Programs, provided they are acting on Your behalf to exercise license rights granted in this Agreement and further provided that You are responsible for their compliance with this Agreement in such use. You will have a written agreement with Your Contractor(s) that strictly limits their right to use the Programs and that otherwise protects Oracle's intellectual property rights to the same extent as this Agreement. You may make copies of the Programs to the extent reasonably necessary to exercise the license rights granted in this Agreement.\n\nYou may not:\n\n remove or modify any Program markings or any notice of Oracle's or a licensor's proprietary rights;\n make the Programs available in any manner to any third party (other than Contractors acting on Your behalf as set forth in this Agreement);\n assign this Agreement or distribute, give, or transfer the Programs or an interest in them to any third party, except as expressly permitted in this Agreement for Contractors (the foregoing shall not be construed to limit the rights You may otherwise have with respect to Separately Licensed Third Party Technology);\n cause or permit reverse engineering (unless required by law for interoperability), disassembly or decompilation of the Programs; and\n create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"sun\", \u201coracle\u201d or similar convention as specified by Oracle in any naming convention designation.\n\nThe Programs may contain source code that, unless expressly licensed in this Agreement for other purposes (for example, licensed under an open source license), is provided solely for reference purposes pursuant to the terms of this Agreement and may not be modified.\n\nAll rights not expressly granted in this Agreement are reserved by Oracle. If You want to use the Programs for any purpose other than as expressly permitted under this Agreement, You must obtain from Oracle or an Oracle reseller a valid Program license under a separate agreement permitting such use.\n\nOwnershipOracle or its licensors retain all ownership and intellectual property rights to the Programs.\n\nThird-Party Technology The Programs may contain or require the use of third party technology that is provided with the Programs. Oracle may provide certain notices to You in Program Documentation, readmes or notice files in connection with such third party technology. Third party technology will be licensed to You either under the terms of this Agreement or, if specified in the Program Documentation, readmes or notice files, under Separate Terms. Your rights to use Separately Licensed Third Party Technology under Separate Terms are not restricted in any way by this Agreement. However, for clarity, notwithstanding the existence of a notice, third party technology that is not Separately Licensed Third Party Technology shall be deemed part of the Programs and is licensed to You under the terms of this Agreement.\n\nSource Code for Open Source SoftwareFor software that You receive from Oracle in binary form that is licensed under an open source license that gives You the right to receive the source code for that binary, You can obtain a copy of the applicable source code from https://oss.oracle.com/sources/ or http://www.oracle.com/goto/opensourcecode. If the source code for such software was not provided to You with the binary, You can also receive a copy of the source code on physical media by submitting a written request pursuant to the instructions in the \"Written Offer for Source Code\" section of the latter website.\n\nExport Controls Export laws and regulations of the United States and any other relevant local export laws and regulations apply to the Programs. You agree that such export control laws govern Your use of the Programs (including technical data) and any services deliverables provided under this agreement, and You agree to comply with all such export laws and regulations (including \"deemed export\" and \"deemed re-export\" regulations). You agree that no data, information, program and/or materials resulting from Programs or services (or direct products thereof) will be exported, directly or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation, or development of missile technology. Accordingly, You confirm:\n\n You will not download, provide, make available or otherwise export or re-export the Programs, directly or indirectly, to countries prohibited by applicable laws and regulations nor to citizens, nationals or residents of those countries.\n You are not listed on the United States Department of Treasury lists of Specially Designated Nationals and Blocked Persons, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers, nor are You listed on the United States Department of Commerce Table of Denial Orders.\n You will not download or otherwise export or re-export the Programs, directly or indirectly, to persons on the above mentioned lists.\n You will not use the Programs for, and will not allow the Programs to be used for, any purposes prohibited by applicable law, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction.\n\nInformation CollectionThe Programs' installation and/or update processes, if any, may transmit a limited amount of data to Oracle or its service provider about those processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. Refer to Oracle's Privacy Policy at www.oracle.com/privacy.\n\nDisclaimer of Warranties; Limitation of Liability THE PROGRAMS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT.\n\nIN NO EVENT WILL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY FOR DAMAGES UNDER THIS AGREEMENT SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).\n\nNo Technical Support Oracle does not provide technical support, phone support, or updates under this Agreement.\n\nAudit; Termination Oracle may audit an Entity's use of the Programs. You may terminate this Agreement by destroying all copies of the Programs. This Agreement shall automatically terminate without notice if You fail to comply with any of the terms of this Agreement, in which case You shall promptly destroy all copies of the Programs.\n\nRelationship Between the Parties Oracle is an independent contractor and we agree that no partnership, joint venture, or agency relationship exists between us. We each will be responsible for paying our own employees, including employment related taxes and insurance. Nothing in this Agreement shall be construed to limit either party's right to independently develop or distribute software that is functionally similar to the other party's products, so long as proprietary information of the other party is not included in such software.\n\nEntire Agreement; Governing Law You agree that this Agreement is the complete agreement for the Programs and this Agreement supersedes all prior or contemporaneous agreements or representations, including any clickwrap, shrinkwrap or similar licenses, or license agreements for prior versions of the Programs. This Agreement may not be modified and the rights and restrictions may not be altered or waived except in a writing signed by authorized representatives of You and of Oracle. If any term of this Agreement is found to be invalid or unenforceable, the remaining provisions will remain effective.\n\nThis Agreement is governed by the substantive and procedural laws of the State of California, USA, and You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco or Santa Clara counties in California in any dispute arising out of or relating to this Agreement.\n\nNotices Should You have any questions concerning this Agreement, or if You desire to contact Oracle for any reason, please write:\n\nOracle America, Inc.\n500 Oracle Parkway\nRedwood City, CA 94065\n\nOracle Employees: Under no circumstances are Oracle employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to Oracle employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, an Oracle employee's failure to comply with this policy could result in disciplinary action up to and including termination.\n\nLast updated: April 10, 2019", + "json": "oracle-otn-javase-2019.json", + "yaml": "oracle-otn-javase-2019.yml", + "html": "oracle-otn-javase-2019.html", + "license": "oracle-otn-javase-2019.LICENSE" + }, + { + "license_key": "oracle-sql-developer", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-sql-developer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle SQL Developer License Terms \nOracle SQL Developer Data Modeler License Terms\n\nExport Controls on the Programs \nSelecting the \"Accept License Agreement\" button is a confirmation of your agreement that you comply, now and during the trial term, with each of the following statements:\n\n-You are not a citizen, national, or resident of, and are not under control of, the government of Cuba, Iran, Sudan, Libya, North Korea, Syria, nor any country to which the United States has prohibited export. \n-You will not download or otherwise export or re-export the Programs, directly or indirectly, to the above mentioned countries nor to citizens, nationals or residents of those countries. \n-You are not listed on the United States Department of Treasury lists of Specially Designated Nationals, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers, nor are you listed on the United States Department of Commerce Table of Denial Orders.\n\n\nYou will not download or otherwise export or re-export the Programs, directly or indirectly, to persons on the above mentioned lists.\n\nYou will not use the Programs for, and will not allow the Programs to be used for, any purposes prohibited by United States law, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction.\n\nEXPORT RESTRICTIONS \nYou agree that U.S. export control laws and other applicable export and import laws govern your use of the programs, including technical data; additional information can be found on Oracle\u00ae's Global Trade Compliance web site (http://www.oracle.com/products/export).\n\nYou agree that neither the programs nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation.\n\nOracle Employees: Under no circumstances are Oracle Employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, failure to comply with this policy could result in disciplinary action up to and including termination.\n\nNote: You are bound by the Oracle Technology Network (\"OTN\") License Agreement terms. The OTN License Agreement terms also apply to all updates you receive under your Technology Track subscription.\n\nThe OTN License Agreement terms below supercede any shrinkwrap license on the OTN Technology Track software CDs and previous OTN License terms (including the Oracle Program License as modified by the OTN Program Use Certificate).\n\nOracle SQL Developer License Agreement \nOracle SQL Developer Data Modeler License Agreement\n\nWe,\" \"us,\" and \"our\" refers to Oracle America, Inc., for and on behalf of itself and its subsidiaries and affiliates under common control. \"You\" and \"your\" refers to the individual or entity that wishes to use the programs from Oracle. \"Programs\" refers to the Oracle software product you wish to download and use and program documentation. \"License\" refers to your right to use the programs under the terms of this agreement. This agreement is governed by the substantive and procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco, San Mateo, or Santa Clara counties in California in any dispute arising out of or relating to this agreement.\n\nWe are willing to license the programs to you only upon the condition that you accept all of the terms contained in this agreement. Read the terms carefully and select the \"Accept\" button at the bottom of the page to confirm your acceptance. If you are not willing to be bound by these terms, select the \"Do Not Accept\" button and the registration process will not continue.\n\nLICENSE RIGHTS \nWe grant you a nonexclusive, nontransferable limited license to use the programs solely for your business operations and any third party training as part of such business operations. We may audit your use of the programs. Program documentation may be accessed online at http://www.oracle.com/technetwork/indexes/documentation/index.html. \n\nOwnership and Restrictions \nWe retain all ownership and intellectual property rights in the programs. You may make a sufficient number of copies of the programs for the licensed use and one copy of the programs for backup purposes.\n\nYou may not: \n- remove or modify any program markings or any notice of our proprietary rights; \n- make the programs available in any manner to any third party, other than as specified above; \n- use the programs for any purpose other than as provided above; \n- assign this agreement or give or transfer the programs or an interest in them to another individual or entity; \n- cause or permit reverse engineering (unless required by law for interoperability), disassembly or decompilation of the programs; \n- disclose results of any program benchmark tests without our prior consent.\n\nExport \nYou agree that U.S. export control laws and other applicable export and import laws govern your use of the programs, including technical data; additional information can be found on Oracle's Global Trade Compliance web site located at http://www.oracle.com/products/export/index.html?content.html. You agree that neither the programs nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation.\n\nDisclaimer of Warranty and Exclusive Remedies\nTHE PROGRAMS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.\n\nIN NO EVENT SHALL WE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. OUR ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).\n\nTrial Programs Included With Orders \nWe may include additional programs with an order which may be used for trial purposes only. You will have 30 days from the delivery date to evaluate these programs. Any use of these programs after the 30 day trial period requires you to obtain the applicable license. Programs licensed for trial purposes are provided \"as is\" and we do not provide technical support or any warranties for these programs.\n\nTechnical Support \nOur technical support organization does not provide technical support, phone support, or updates specifically for the programs licensed under this agreement. However, if you have a supported license of an Oracle database program, then the technical support organization will provide technical support, phone support for the program licensed hereunder in conjunction with the Oracle database program license.\n\nEnd of Agreement \nYou may terminate this agreement by destroying all copies of the programs. We have the right to terminate your right to use the programs if you fail to comply with any of the terms of this agreement, in which case you shall destroy all copies of the programs.\n\nRelationship Between the Parties \nThe relationship between you and us is that of licensee/licensor. Neither party will represent that it has any authority to assume or create any obligation, express or implied, on behalf of the other party, nor to represent the other party as agent, employee, franchisee, or in any other capacity. Nothing in this agreement shall be construed to limit either party's right to independently develop or distribute software that is functionally similar to the other party's products, so long as proprietary information of the other party is not included in such software.\n\nOpen Source \nThird party technology that may be appropriate or necessary for use with the program may be specified in the program documentation. To the extent stated in the program documentation, such third party technology is licensed to you under the terms of the third party technology license agreement specified in the program documentation and not under the terms of this agreement. Nothing in this agreement should be construed as modifying or limiting your rights to use such third party technology under the terms of the specified third party license.\n\nEntire Agreement \nYou agree that this agreement is the complete agreement for the programs and licenses, and this agreement supersedes all prior or contemporaneous agreements or representations. If any term of this agreement is found to be invalid or unenforceable, the remaining provisions will remain effective.\n\nLast updated: 09/17/10 (jlr)\nShould you have any questions concerning this License Agreement, or if you desire to contact Oracle for any reason, please write: \nOracle America, Inc. \n500 Oracle Parkway, \nRedwood City, CA 94065 \n\nOracle may contact you to ask if you had a satisfactory experience installing and using this OTN software download.", + "json": "oracle-sql-developer.json", + "yaml": "oracle-sql-developer.yml", + "html": "oracle-sql-developer.html", + "license": "oracle-sql-developer.LICENSE" + }, + { + "license_key": "oracle-web-sites-tou", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-web-sites-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle Web Sites Terms of Use\n\nhttp://www.oracle.com/html/terms.html\n\nTerms of Use LAST REVISED: February 11, 2009\n\nBY USING THE ORACLE WEB SITES, YOU AGREE TO THESE TERMS OF USE. IF YOU DO NOT AGREE TO THESE TERMS OF USE, PLEASE DO NOT USE THE ORACLE WEB SITES.\n\nWelcome to the Oracle Web sites (the \"Site\"). Through the Site, you have access to a variety of resources and content. These include:\n\n(a) software and software as a service offerings (\"Software\"); (b) Web pages, data, messages, text, images, photographs, graphics, audio and video such as podcasts and Webcasts, and documents such as press releases, white papers and product data sheets (\"Materials\"); and (c) forums, discussion groups, chat areas, bulletin boards, blogs, wikis, e-mail functions, and other services in connection with which you can upload, download, share, email, post, publish, transmit or otherwise access or make available Content (as defined below) (\"Community Services\").\n\nSoftware, Materials, Community Services, and other information, content and services are collectively referred to as \"Content.\" By accessing or using the Site or the Content provided on or through the Site, you agree to follow and be bound by the following terms and conditions concerning your access to and use of the Site and the Content provided on or through the Site (\"Terms of Use\") and our Privacy Policy. Oracle Corporation and its affiliated companies (\"We\" or \"Oracle\") may revise the Terms of Use and Privacy Policy at any time without notice to you. The revised Terms of Use and Privacy Policy will be effective when posted. You can review the most current Terms of Use at http://www.oracle.com/html/terms.html and Privacy Policy\n\nat http://www.oracle.com/html/privacy.html.\n\n1. Terms Applicable to Specific Content and Areas of the Site\n\nSome areas of the Site or Content provided on or through the Site may have additional rules, guidelines, license agreements, user agreements or other terms and conditions that apply to your access or use of that area of the Site or Content (including terms and conditions applicable to a corporation or other organization and its users). If there is a conflict or inconsistency between the Terms of Use and the rules, guidelines, license agreement, user agreement or other terms and conditions for a specific area of the Site or for specific Content, the latter shall have precedence with respect to your access and use of that area of the Site or Content.\n\n2. Use of Software\n\nYour use of Software is subject to all agreements such as a license agreement or user agreement that accompanies or is included with the Software, ordering documents, exhibits, and other terms and conditions that apply (\"License Terms\"). In the event that Software is provided on or through the Site and is not licensed for your use through License Terms specific to the Software, you may use the Software subject to the following: (a) the Software may be used solely for your personal, informational, noncommercial purposes; (b) the Software may not be modified or altered in any way; and (c) the Software may not be redistributed.\n\n3. Use of Materials\n\nYou may download, store, display on your computer, view, listen to, play and print Materials that Oracle publishes or broadcasts on the Site or makes available for download through the Site subject to the following: (a) the Materials may be used solely for your personal, informational, noncommercial purposes; (b) the Materials may not be modified or altered in any way; and (c) the Materials may not be redistributed.\n\n4. Use of Community Services\n\nCommunity Services are provided as a convenience to users and Oracle is not obligated to provide anytechnical support for, or participate in, Community Services. While Community Services may include information regarding Oracle products and services, including information from Oracle employees, they are not an official customer support channel for Oracle.\n\nYou may use Community Services subject to the following: (a) Community Services may be used solely for your personal, informational, noncommercial purposes; (b) Content provided on or through Community Services may not be redistributed; and (c) personal data about other users may not be stored or collected except where expressly authorized by Oracle.\n\n5. Reservation of Rights\n\nThe Site and Content provided on or through the Site are the intellectual property and copyrighted works of Oracle or a third party provider. All rights, title and interest not expressly granted with respect to the Site and Content provided on or through the Site are reserved. All Content is provided on an \"As Is\" and \"As Available\" basis, and Oracle reserves the right to terminate the permissions granted to you in Sections 2, 3 and 4 above and your use of the Content at any time.\n\n6. Your Content\n\nYou agree that you will only upload, share, post, publish, transmit, or otherwise make available (\"Share\") on or through the Site Content that you have the right and authority to Share and for which you have the right and authority to grant to Oracle all of the licenses and rights set forth herein. By Sharing Content, you grant Oracle a worldwide, perpetual, royalty-free, irrevocable, nonexclusive, fully sublicensable license to use, reproduce, modify, adapt, translate, publish, publicly perform, publicly display, broadcast, transmit and distribute the Content for any purpose and in any form, medium, or technology now known or later developed. This includes, without limitation, the right to incorporate or implement the Content into any Oracle product or service, and to display, market, sublicense and distribute the Content as incorporated or embedded in any product or service distributed or offered by Oracle without compensation to you. You warrant that: (a) you have the right and authority to grant this license; (b) Oracle's exercise of the rights granted pursuant to this license will not infringe or otherwise violate any third party rights; and (c) all so-called moral rights in the Content have been waived to the full extent allowed by law.\n\nYou agree that you will not Share any Content that: (a) is binary executable code; (b) is false or misleading; (c) is defamatory, derogatory, degrading or harassing of another or constitutes a personal attack; (d) invades another's privacy or includes another's confidential, sensitive or personal information; (e) promotes bigotry, racism, hatred or harm against any group or individual; (f) is obscene or not in good taste; (g) violates or infringes or promotes the violation or infringement of another's rights, including intellectual property rights; (h) you do not have the right and authority to Share and grant the necessary rights and licenses for; (i) violates or promotes the violation of any applicable laws or regulations; (j) contains a solicitation of funds, goods or services, or promotes or advertises goods or services; or (k) contains any viruses, Trojan horses, or other components designed to limit or harm the functionality of a computer.\n\nOracle does not want to receive confidential information from you through or in connection with the Site. Notwithstanding anything that you may note or state in connection with Sharing Content, it shall not be considered confidential information and shall be received and treated by Oracle on a non-confidential and unrestricted basis.\n\n7. Security, Passwords and Means of Accessing the Site and Content\n\nYou agree not to access or use the Site in any manner that could damage, disable, overburden, or impair any Oracle accounts, computer systems or networks. You agree not to attempt to gain unauthorized access to any parts of the Site or any Oracle accounts, computer systems or networks. You agree not to interfere or attempt to interfere with the proper working of the Site or any Oracle accounts, computer systems or networks. You agree not to use any robot, spider, scraper or other automated means to access the Site or any Oracle accounts, computer systems or networks without Oracle's express written permission.\n\nAccess to and use of password protected or secure areas of the Site is restricted to authorized users only. You agree not to share your password(s), account information, or access to the Site. You are responsible for maintaining the confidentiality of password(s) and account information, and you are responsible for all activities that occur under your password(s) or account(s) or as a result of your access to the Site. You agree to notify Oracle immediately of any unauthorized use of your password(s) or account(s).\n\n8. No Unlawful or Prohibited Use\n\nYou agree not to use the Site or Content provided on or through the Site for any purpose that is unlawful or prohibited by these Terms of Use, or the rules, guidelines or terms of use posted for a specific area of the Site or Content provided on or through the Site.\n\n9. Indemnity\n\nYou agree to indemnify and hold harmless Oracle, its officers, directors, employees and agents from and against any and all claims, liabilities, damages, losses or expenses, including reasonable attorneys' fees and costs, due to or arising out of Content that you Share, your violation of the Terms of Use or any additional rules, guidelines or terms of use posted for a specific area of the Site or Content provided on or through the Site, or your violation or infringement of any third party rights.\n\n10. Monitoring\n\nOracle has no obligation to monitor the Site or screen Content that is Shared on or through the Site. However, Oracle reserves the right to review the Site and Content and to monitor all use of and activity on the Site, and to remove or choose not to make available on or through the Site any Content at its sole discretion.\n\n11. Termination of Use\n\nOracle may, in its sole discretion, at any time discontinue providing or limit access to the Site, any areas of the Site or Content provided on or through the Site. You agree that Oracle may, in its sole discretion, at any time, terminate or limit your access to or use of the Site or any Content. Oracle will terminate or limit your access to or use of the Site if, under appropriate circumstances, you are determined to be a repeat infringer of third party copyright rights. You agree that Oracle shall not be liable to you or any third-party for any termination or limitation of your access to or use of the Site or any Content.\n\n12. Third Party Web Sites, Content, Products and Services\n\nThe Site provides links to Web sites and access to Content, products and services of third parties, including users, advertisers, affiliates and sponsors of the Site. Oracle is not responsible for third party Content provided on or through the Site and you bear all risks associated with the access and use of such Web sites and third party Content, products and services.\n\n13. Disclaimer\n\nEXCEPT WHERE EXPRESSLY PROVIDED OTHERWISE, THE SITE, AND ALL CONTENT PROVIDED ON OR THROUGH THE SITE, ARE PROVIDED ON AN \"AS IS\" AND \"AS AVAILABLE\" BASIS. ORACLE EXPRESSLY DISCLAIMS ALL WARRANTIES OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT WITH RESPECT TO THE SITE AND ALL CONTENT PROVIDED ON OR THROUGH THE SITE. ORACLE MAKES NO WARRANTY THAT: (A) THE SITE OR CONTENT WILL MEET YOUR REQUIREMENTS; (B) THE SITE WILL BE AVAILABLE ON AN UNINTERRUPTED, TIMELY, SECURE, OR ERROR-FREE BASIS; (C) THE RESULTS THAT MAY BE OBTAINED FROM THE USE OF THE SITE OR ANY CONTENT PROVIDED ON OR THROUGH THE SITE WILL BE ACCURATE OR RELIABLE; OR (D) THE QUALITY OF ANY CONTENT PURCHASED OR OBTAINED BY YOU ON OR THROUGH THE SITE WILL MEET YOUR EXPECTATIONS.\n\nANY CONTENT ACCESSED, DOWNLOADED OR OTHERWISE OBTAINED ON OR THROUGH THE USE OF THE SITE IS USED AT YOUR OWN DISCRETION AND RISK. ORACLE SHALL HAVE NO RESPONSIBILITY FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR LOSS OF DATA THAT RESULTS FROM THE DOWNLOAD OR USE OF CONTENT.\n\nORACLE RESERVES THE RIGHT TO MAKE CHANGES OR UPDATES TO, AND MONITOR THE USE OF, THE SITE AND CONTENT PROVIDED ON OR THROUGH THE SITE AT ANY TIME WITHOUT NOTICE.\n\n14. Limitation of Liability\n\nIN NO EVENT SHALL ORACLE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, ARISING FROM YOUR ACCESS TO, OR USE OF, THE SITE OR ANY CONTENT PROVIDED ON OR THROUGH THE SITE.\n\n15. Exclusions and Limitations\n\nSOME JURISDICTIONS DO NOT ALLOW THE DISCLAIMER OR EXCLUSION OF CERTAIN WARRANTIES OR THE DISCLAIMER, EXCLUSION OR LIMITATION OF CERTAIN LIABILITIES. TO THE EXTENT THAT THEY ARE HELD TO BE LEGALLY INVALID, DISCLAIMERS, EXCLUSIONS AND LIMITATIONS SET FORTH IN THESE TERMS OF USE, INCLUDING THOSE SET FORTH IN SECTIONS 13 AND 14, DO NOT APPLY AND ALL OTHER TERMS SHALL REMAIN IN FULL FORCE AND EFFECT.\n\n16. Privacy Policy\n\nOracle is concerned about your privacy and has developed a policy to address privacy concerns. For more information, please see Oracle's Privacy Policy. Any personal information collected on this Site may be accessed and stored globally and will be treated in accordance with Oracle's Privacy Policy.\n\n17. Note About Minors\n\nMinors are not eligible to use the Site, and we ask that they do not submit any information to us.\n\n18. Export Restrictions/Legal Compliance\n\nYou may not access, download, use or export the Site, or the Content provided on or through the Site, in violation of U.S. export laws or regulations, or in violation of any other applicable laws or regulations. You agree to comply with all export laws and restrictions and regulations of any United States or foreign agency or authority, and not to directly or indirectly provide or otherwise make available the services and products of Oracle in violation of any such restrictions, laws or regulations, or without all necessary approvals, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction and of missile technology. As applicable, you shall obtain and bear all expenses relating to any necessary licenses and/or exemptions with respect to your own use of the services of Oracle outside the U.S. Neither the services of Oracle nor the underlying information or technology may be downloaded or otherwise provided or made available, either directly or indirectly, (a) into Cuba, Iran, North Korea, Sudan, Syria or any other country subject to U.S. trade sanctions, to individuals or entities controlled by such countries, or to nationals or residents of such countries other than nationals who are lawfully admitted permanent residents of countries not subject to such sanctions; or (b) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals and Blocked Persons or the U.S. Commerce Department's Table of Denial Orders. By agreeing to these Terms of Use, you agree to the foregoing and represent and warrant that you are not located in, under the control of, or a national or resident of any such country or on any such list.\n\n19. Applicable Laws\n\nAll matters relating to your access to, and use of, the Site and Content provided on or through or uploaded to the Site shall be governed by U.S. federal law or the laws of the State of California. Any legal action or proceeding relating to your access to, or use of, the Site or Content shall be instituted in a state or federal court in San Francisco, San Mateo or Santa Clara County, California. You and Oracle agree to submit to the jurisdiction of, and agree that venue is proper in, these courts in any such legal action or proceeding.\n\n20. Copyright/Trademark\n\nCopyright\u00a9 1995, 2010, Oracle and/or its affiliates. All rights reserved.\n\nOracle and Java are registered trademarks of Oracle and/or its affiliates. Other names appearing on the Site may be trademarks of their respective owners.\n\nFor information on use of Oracle trademarks, go here.\n\nFor information on making claims of copyright infringement, go here.\n\n21. Contact Information\n\nIf you have any questions regarding these Terms of Use, please contact Oracle at trademar_us@oracle.com. If you have any other questions, contact information is available at the Contact Oracle page on the Site.", + "json": "oracle-web-sites-tou.json", + "yaml": "oracle-web-sites-tou.yml", + "html": "oracle-web-sites-tou.html", + "license": "oracle-web-sites-tou.LICENSE" + }, + { + "license_key": "oreilly-notice", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-oreilly-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Our books are here to help you get your job done. In general, you may use the\ncode in our books in your programs and documentation. You do not need to contact\nus for permission unless you're reproducing a significant portion of the code.\nFor example, writing a program that uses several chunks of code from our books\ndoes not require permission. Answering a question by citing our books and\nquoting example code does not require permission. On the other hand, selling or\ndistributing a CD-ROM of examples from O'Reilly books does require permission.\nIncorporating a significant amount of example code from our books into your\nproduct's documentation does require permission.\n\nWe appreciate, but do not require, attribution. An attribution usually includes\nthe title, author, publisher, and ISBN.\n\nIf you think your use of code examples falls outside fair use or the permission\ngiven here, feel free to contact us at permissions@oreilly.com.", + "json": "oreilly-notice.json", + "yaml": "oreilly-notice.yml", + "html": "oreilly-notice.html", + "license": "oreilly-notice.LICENSE" + }, + { + "license_key": "oset-pl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "OSET-PL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OSET Public License\n(c) 2015 ALL RIGHTS RESERVED VERSION 2.1\n\nTHIS LICENSE DEFINES THE RIGHTS OF USE, REPRODUCTION, DISTRIBUTION, MODIFICATION, AND REDISTRIBUTION OF CERTAIN COVERED SOFTWARE (AS DEFINED BELOW) ORIGINALLY RELEASED BY THE OPEN SOURCE ELECTION TECHNOLOGY FOUNDATION (FORMERLY \"THE OSDV FOUNDATION\"). ANYONE WHO USES, REPRODUCES, DISTRIBUTES, MODIFIES, OR REDISTRIBUTES THE COVERED SOFTWARE, OR ANY PART THEREOF, IS BY THAT ACTION, ACCEPTING IN FULL THE TERMS CONTAINED IN THIS AGREEMENT. IF YOU DO NOT AGREE TO SUCH TERMS, YOU ARE NOT PERMITTED TO USE THE COVERED SOFTWARE.\n\nThis license was prepared based on the Mozilla Public License (\"MPL\"), version 2.0. For annotation of the differences between this license and MPL 2.0, please see the OSET Foundation web site at www.OSETFoundation.org/public-license.\n\nThe text of the license begins here:\n\n1. Definitions\n\n1.1 \"Contributor\" means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. \n1.2 \"Contributor Version\" means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor\u2019s Contribution. \n1.3 \"Contribution\" means Covered Software of a particular Contributor. \n1.4 \"Covered Software\" means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. \n1.5 \"Incompatible With Secondary Licenses\" means: a. That the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or b. that the Covered Software was made available under the terms of version 1.x or earlier of the License, but not also under the terms of a Secondary License. \n1.6 \"Executable Form\" means any form of the work other than Source Code Form. \n1.7 \"Larger Work\" means a work that combines Covered Software with other material, in a separate file (or files) that is not Covered Software. \n1.8 \"License\" means this document. \n1.9 \"Licensable\" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. \n1.10 \"Modifications\" means any of the following: a. any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or b. any new file in Source Code Form that contains any Covered Software. \n1.11 \"Patent Claims\" of a Contributor means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. \n1.12 \"Secondary License\" means one of: the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. \n1.13 \"Source Code Form\" means the form of the work preferred for making modifications. \n1.14 \"You\" (or \"Your\") means an individual or a legal entity exercising rights under this License. For legal entities, \"You\" includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, \"control\" means: (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2. License Grants and Conditions\n\n2.1 Grants Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: a. under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and b. under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version.\n\n2.2 Effective Date The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution.\n\n2.3 Limitations on Grant Scope The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: a. for any code that a Contributor has removed from Covered Software; or b. for infringements caused by: (i) Your and any other third party\u2019s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or c. under Patent Claims infringed by Covered Software in the absence of its Contributions. This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4).\n\n2.4 Subsequent Licenses No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3).\n\n2.5 Representation Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License.\n\n2.6 Fair Use This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents.\n\n2.7 Conditions Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1.\n\n3. Responsibilities\n\n3.1 Distribution of Source Form All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You must cause any of Your Modifications to carry prominent notices stating that You changed the files. You may not attempt to alter or restrict the recipients\u2019 rights in the Source Code Form.\n\n3.2 Distribution of Executable Form If You distribute Covered Software in Executable Form then: \na. such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and b. You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients\u2019 rights in the Source Code Form under this License.\n\n3.3 Distribution of a Larger Work You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s).\n\n3.4 Notices You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies.\n\n3.5 Application of Additional Terms\n\n3.5.1 You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. \n3.5.2 You may place additional conditions upon the rights granted in this License to the extent necessary due to statute, judicial order, regulation (including without limitation state and federal procurement regulation), national security, or public interest. Any such additional conditions must be clearly described in the notice provisions required under Section 3.4. Any alteration of the terms of this License will apply to all copies of the Covered Software distributed by You or by any downstream recipients that receive the Covered Software from You.\n\n4. Inability to Comply Due to Statute or Regulation If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation, then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the notices required under Section 3.4. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n\n5. Termination\n\n5.1 Failure to Comply The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60-days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30-days after Your receipt of the notice.\n\n5.2 Patent Infringement Claims If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate.\n\n5.3 Additional Compliance Terms Notwithstanding the foregoing in this Section 5, for purposes of this Section, if You breach Section 3.1 (Distribution of Source Form), Section 3.2 (Distribution of Executable Form), Section 3.3 (Distribution of a Larger Work), or Section 3.4 (Notices), then becoming compliant as described in Section 5.1 must also include, no later than 30 days after receipt by You of notice of such violation by a Contributor, making the Covered Software available in Source Code Form as required by this License on a publicly available computer network for a period of no less than three (3) years.\n\n5.4 Contributor Remedies If You fail to comply with the terms of this License and do not thereafter become compliant in accordance with Section 5.1 and, if applicable, Section 5.3, then each Contributor reserves its right, in addition to any other rights it may have in law or in equity, to bring an action seeking injunctive relief, or damages for willful copyright or patent infringement (including without limitation damages for unjust enrichment, where available under law), for all actions in violation of rights that would otherwise have been granted under the terms of this License.\n\n5.5 End User License Agreements In the event of termination under this Section 5, all end user license agreements (excluding distributors and resellers), which have been validly granted by You or Your distributors under this License prior to termination shall survive termination.\n\n6. Disclaimer of Warranty Covered Software is provided under this License on an \"as is\" basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer.\n\n7. Limitation of Liability Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party\u2019s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You.\n\n8. Litigation Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party\u2019s ability to bring cross-claims or counter-claims.\n\n9. Government Terms\n\n9.1 Commercial Item The Covered Software is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software with only those rights set forth herein.\n\n9.2 No Sovereign Immunity The U.S. federal government and states that use or distribute Covered Software hereby waive their sovereign immunity with respect to enforcement of the provisions of this License.\n\n9.3 Choice of Law and Venue\n\n9.3.1 If You are a government of a state of the United States, or Your use of the Covered Software is pursuant to a procurement contract with such a state government, this License shall be governed by the law of such state, excluding its conflict-of-law provisions, and the adjudication of disputes relating to this License will be subject to the exclusive jurisdiction of the state and federal courts located in such state. \n9.3.2 If You are an agency of the United States federal government, or Your use of the Covered Software is pursuant to a procurement contract with such an agency, this License shall be governed by federal law for all purposes, and the adjudication of disputes relating to this License will be subject to the exclusive jurisdiction of the federal courts located in Washington, D.C. \n9.3.3 You may alter the terms of this Section 9.3 for this License as described in Section 3.5.2.\n\n9.4 Supremacy This Section 9 is in lieu of, and supersedes, any other Federal Acquisition Regulation, Defense Federal Acquisition Regulation, or other clause or provision that addresses government rights in computer software under this License.\n\n10. Miscellaneous This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation, which provides that the language of a contract shall be construed against the drafter, shall not be used to construe this License against a Contributor.\n\n11. Versions of the License\n\n11.1 New Versions The Open Source Election Technology Foundation (\"OSET\") (formerly known as the Open Source Digital Voting Foundation) is the steward of this License. Except as provided in Section 11.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number.\n\n11.2 Effects of New Versions You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward.\n\n11.3 Modified Versions If You create software not governed by this License, and You want to create a new license for such software, You may create and use a modified version of this License if You rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License).\n\n11.4 Distributing Source Code Form That is Incompatible With Secondary Licenses If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached.\n\nEXHIBIT A \u2013 Source Code Form License Notice\n\nThis Source Code Form is subject to the terms of the OSET Public License, v.2.1 (\"OSET-PL-2.1\"). If a copy of the OPL was not distributed with this file, You can obtain one at: www.OSETFoundation.org/public-license.\n\nIf it is not possible or desirable to put the Notice in a particular file, then You may include the Notice in a location (e.g., such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. You may add additional accurate notices of copyright ownership.\n\nEXHIBIT B - \"Incompatible With Secondary License\" Notice\n\nThis Source Code Form is \"Incompatible With Secondary Licenses\", as defined by the OSET Public License, v.2.1.", + "json": "oset-pl-2.1.json", + "yaml": "oset-pl-2.1.yml", + "html": "oset-pl-2.1.html", + "license": "oset-pl-2.1.LICENSE" + }, + { + "license_key": "osetpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "OSET Public License\n(c) 2015 ALL RIGHTS RESERVED VERSION 2.1\n\nTHIS LICENSE DEFINES THE RIGHTS OF USE, REPRODUCTION, DISTRIBUTION, MODIFICATION, AND REDISTRIBUTION OF CERTAIN COVERED SOFTWARE (AS DEFINED BELOW) ORIGINALLY RELEASED BY THE OPEN SOURCE ELECTION TECHNOLOGY FOUNDATION (FORMERLY \"THE OSDV FOUNDATION\"). ANYONE WHO USES, REPRODUCES, DISTRIBUTES, MODIFIES, OR REDISTRIBUTES THE COVERED SOFTWARE, OR ANY PART THEREOF, IS BY THAT ACTION, ACCEPTING IN FULL THE TERMS CONTAINED IN THIS AGREEMENT. IF YOU DO NOT AGREE TO SUCH TERMS, YOU ARE NOT PERMITTED TO USE THE COVERED SOFTWARE.\n\nThis license was prepared based on the Mozilla Public License (\"MPL\"), version 2.0. For annotation of the differences between this license and MPL 2.0, please see the OSET Foundation web site at www.OSETFoundation.org/public-license.\n\nThe text of the license begins here:\n\n1. Definitions\n\n1.1 \"Contributor\" means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. \n1.2 \"Contributor Version\" means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor\u2019s Contribution. \n1.3 \"Contribution\" means Covered Software of a particular Contributor. \n1.4 \"Covered Software\" means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. \n1.5 \"Incompatible With Secondary Licenses\" means: a. That the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or b. that the Covered Software was made available under the terms of version 1.x or earlier of the License, but not also under the terms of a Secondary License. \n1.6 \"Executable Form\" means any form of the work other than Source Code Form. \n1.7 \"Larger Work\" means a work that combines Covered Software with other material, in a separate file (or files) that is not Covered Software. \n1.8 \"License\" means this document. \n1.9 \"Licensable\" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. \n1.10 \"Modifications\" means any of the following: a. any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or b. any new file in Source Code Form that contains any Covered Software. \n1.11 \"Patent Claims\" of a Contributor means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. \n1.12 \"Secondary License\" means one of: the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. \n1.13 \"Source Code Form\" means the form of the work preferred for making modifications. \n1.14 \"You\" (or \"Your\") means an individual or a legal entity exercising rights under this License. For legal entities, \"You\" includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, \"control\" means: (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2. License Grants and Conditions\n\n2.1 Grants Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: a. under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and b. under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version.\n\n2.2 Effective Date The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution.\n\n2.3 Limitations on Grant Scope The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: a. for any code that a Contributor has removed from Covered Software; or b. for infringements caused by: (i) Your and any other third party\u2019s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or c. under Patent Claims infringed by Covered Software in the absence of its Contributions. This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4).\n\n2.4 Subsequent Licenses No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3).\n\n2.5 Representation Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License.\n\n2.6 Fair Use This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents.\n\n2.7 Conditions Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1.\n\n3. Responsibilities\n\n3.1 Distribution of Source Form All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You must cause any of Your Modifications to carry prominent notices stating that You changed the files. You may not attempt to alter or restrict the recipients\u2019 rights in the Source Code Form.\n\n3.2 Distribution of Executable Form If You distribute Covered Software in Executable Form then: \na. such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and b. You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients\u2019 rights in the Source Code Form under this License.\n\n3.3 Distribution of a Larger Work You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s).\n\n3.4 Notices You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies.\n\n3.5 Application of Additional Terms\n\n3.5.1 You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. \n3.5.2 You may place additional conditions upon the rights granted in this License to the extent necessary due to statute, judicial order, regulation (including without limitation state and federal procurement regulation), national security, or public interest. Any such additional conditions must be clearly described in the notice provisions required under Section 3.4. Any alteration of the terms of this License will apply to all copies of the Covered Software distributed by You or by any downstream recipients that receive the Covered Software from You.\n\n4. Inability to Comply Due to Statute or Regulation If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation, then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the notices required under Section 3.4. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n\n5. Termination\n\n5.1 Failure to Comply The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60-days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30-days after Your receipt of the notice.\n\n5.2 Patent Infringement Claims If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate.\n\n5.3 Additional Compliance Terms Notwithstanding the foregoing in this Section 5, for purposes of this Section, if You breach Section 3.1 (Distribution of Source Form), Section 3.2 (Distribution of Executable Form), Section 3.3 (Distribution of a Larger Work), or Section 3.4 (Notices), then becoming compliant as described in Section 5.1 must also include, no later than 30 days after receipt by You of notice of such violation by a Contributor, making the Covered Software available in Source Code Form as required by this License on a publicly available computer network for a period of no less than three (3) years.\n\n5.4 Contributor Remedies If You fail to comply with the terms of this License and do not thereafter become compliant in accordance with Section 5.1 and, if applicable, Section 5.3, then each Contributor reserves its right, in addition to any other rights it may have in law or in equity, to bring an action seeking injunctive relief, or damages for willful copyright or patent infringement (including without limitation damages for unjust enrichment, where available under law), for all actions in violation of rights that would otherwise have been granted under the terms of this License.\n\n5.5 End User License Agreements In the event of termination under this Section 5, all end user license agreements (excluding distributors and resellers), which have been validly granted by You or Your distributors under this License prior to termination shall survive termination.\n\n6. Disclaimer of Warranty Covered Software is provided under this License on an \"as is\" basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer.\n\n7. Limitation of Liability Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party\u2019s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You.\n\n8. Litigation Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party\u2019s ability to bring cross-claims or counter-claims.\n\n9. Government Terms\n\n9.1 Commercial Item The Covered Software is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software with only those rights set forth herein.\n\n9.2 No Sovereign Immunity The U.S. federal government and states that use or distribute Covered Software hereby waive their sovereign immunity with respect to enforcement of the provisions of this License.\n\n9.3 Choice of Law and Venue\n\n9.3.1 If You are a government of a state of the United States, or Your use of the Covered Software is pursuant to a procurement contract with such a state government, this License shall be governed by the law of such state, excluding its conflict-of-law provisions, and the adjudication of disputes relating to this License will be subject to the exclusive jurisdiction of the state and federal courts located in such state. \n9.3.2 If You are an agency of the United States federal government, or Your use of the Covered Software is pursuant to a procurement contract with such an agency, this License shall be governed by federal law for all purposes, and the adjudication of disputes relating to this License will be subject to the exclusive jurisdiction of the federal courts located in Washington, D.C. \n9.3.3 You may alter the terms of this Section 9.3 for this License as described in Section 3.5.2.\n\n9.4 Supremacy This Section 9 is in lieu of, and supersedes, any other Federal Acquisition Regulation, Defense Federal Acquisition Regulation, or other clause or provision that addresses government rights in computer software under this License.\n\n10. Miscellaneous This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation, which provides that the language of a contract shall be construed against the drafter, shall not be used to construe this License against a Contributor.\n\n11. Versions of the License\n\n11.1 New Versions The Open Source Election Technology Foundation (\"OSET\") (formerly known as the Open Source Digital Voting Foundation) is the steward of this License. Except as provided in Section 11.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number.\n\n11.2 Effects of New Versions You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward.\n\n11.3 Modified Versions If You create software not governed by this License, and You want to create a new license for such software, You may create and use a modified version of this License if You rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License).\n\n11.4 Distributing Source Code Form That is Incompatible With Secondary Licenses If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached.\n\nEXHIBIT A \u2013 Source Code Form License Notice\n\nThis Source Code Form is subject to the terms of the OSET Public License, v.2.1 (\"OSET-PL-2.1\"). If a copy of the OPL was not distributed with this file, You can obtain one at: www.OSETFoundation.org/public-license.\n\nIf it is not possible or desirable to put the Notice in a particular file, then You may include the Notice in a location (e.g., such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. You may add additional accurate notices of copyright ownership.\n\nEXHIBIT B - \"Incompatible With Secondary License\" Notice\n\nThis Source Code Form is \"Incompatible With Secondary Licenses\", as defined by the OSET Public License, v.2.1.", + "json": "osetpl-2.1.json", + "yaml": "osetpl-2.1.yml", + "html": "osetpl-2.1.html", + "license": "osetpl-2.1.LICENSE" + }, + { + "license_key": "osf-1990", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-osf-1990", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "To anyone who acknowledges that this file is provided \"AS IS\"\nwithout any express or implied warranty: \npermission to use, copy, modify, and distribute this file \nfor any purpose is hereby granted without fee, \nprovided that the above copyright notices and\nthis notice appears in all source code copies, \nand that none of the names of {copyright holders} \nbe used in advertising or publicity pertaining to distribution \nof the software without specific, written prior permission. \nNeither {copyright holders} makes \nany representations about the suitability of\nthis software for any purpose.", + "json": "osf-1990.json", + "yaml": "osf-1990.yml", + "html": "osf-1990.html", + "license": "osf-1990.LICENSE" + }, + { + "license_key": "osgi-spec-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-osgi-spec-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OSGi Specification License, Version 2.0.\n\nLicense Grant\n\nOSGi Alliance (\"OSGi\") hereby grants you a fully-paid, non-exclusive, non-\ntransferable, worldwide, limited license (without the right to sublicense),\nunder OSGi\u2019s applicable intellectual property rights to view, download, and\nreproduce this OSGi Specification (\"Specification\") which follows this License\nAgreement (\"Agreement\"). You are not authorized to create any derivative work of\nthe Specification. However, to the extent that an implementation of the\nSpecification would necessarily be a derivative work of the Specification, OSGi\nalso grants you a perpetual, non-exclusive, worldwide, fully paid-up, royalty\nfree, limited license (without the right to sublicense) under any applicable\ncopyrights, to create and/or distribute an implementation of the Specification\nthat: (i) fully implements the Specification including all its required\ninterfaces and functionality; (ii) does not modify, subset, superset or\notherwise extend the OSGi Name Space, or include any public or protected\npackages, classes, Java interfaces, fields or methods within the OSGi Name Space\nother than those required and authorized by the Specification. An implementation\nthat does not satisfy limitations (i)-(ii) is not considered an implementation\nof the Specification, does not receive the benefits of this license, and must\nnot be described as an implementation of the Specification. An implementation of\nthe Specification must not claim to be a compliant implementation of the\nSpecification unless it passes the OSGi Compliance Tests for the Specification\nin accordance with OSGi processes. \"OSGi Name Space\" shall mean the public class\nor interface declarations whose names begin with \"org.osgi\" or any recognized\nsuccessors or replacements thereof.\n\nOSGi Participants (as such term is defined in the OSGi Intellectual Property\nRights Policy) have made non-assert and licensing commitments regarding patent\nclaims necessary to implement the Specification, if any, under the OSGi\nIntellectual Property Rights Policy which is available for examination on the\nOSGi public web site (www.osgi.org).\n\nNo Warranties and Limitation of Liability\n\nTHE SPECIFICATION IS PROVIDED \"AS IS,\" AND OSGi AND ANY OTHER AUTHORS MAKE NO\nREPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED\nTO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-\nINFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE SPECIFICATION ARE SUITABLE FOR\nANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY\nTHIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. OSGi AND ANY OTHER\nAUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SPECIFICATION OR THE\nPERFORMANCE OR IMPLEMENTATION OF THE CONTENTS THEREOF.\n\nCovenant Not to Assert\n\nAs a material condition to this license you hereby agree, to the extent that you\nhave any patent claims which are necessarily infringed by an implementation of\nthe Specification, not to assert any such patent claims against the creation,\ndistribution or use of an implementation of the Specification.\n\nGeneral\n\nThe name and trademarks of OSGi or any other Authors may NOT be used in any\nmanner, including advertising or publicity pertaining to the Specification or\nits contents without specific, written prior permission. Title to copyright in\nthe Specification will at all times remain with OSGi.\n\nNo other rights are granted by implication, estoppel or otherwise.", + "json": "osgi-spec-2.0.json", + "yaml": "osgi-spec-2.0.yml", + "html": "osgi-spec-2.0.html", + "license": "osgi-spec-2.0.LICENSE" + }, + { + "license_key": "osl-1.0", + "category": "Copyleft", + "spdx_license_key": "OSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Software License, v 1.0\n\nThe Open Software License\nv. 1.0\n\nThis Open Software License (the \"License\") applies to any original\nwork of authorship (the \"Original Work\") whose owner (the \"Licensor\")\nhas placed the following notice immediately following the copyright\nnotice for the Original Work: \"Licensed under the Open Software\nLicense version 1.0\"\n\nLicense Terms\n\n1) Grant of Copyright License. Licensor hereby grants You a\nworld-wide, royalty-free, non-exclusive, perpetual, non-sublicenseable\nlicense to do the following:\n\na) to reproduce the Original Work in copies;\n\nb) to prepare derivative works (\"Derivative Works\") based upon the\nOriginal Work;\n\nc) to distribute copies of the Original Work and Derivative Works\nto the public, with the proviso that copies of Original Work or\nDerivative Works that You distribute shall be licensed under the\nOpen Software License;\n\nd) to perform the Original Work publicly; and\n\ne) to display the Original Work publicly.\n\n2) Grant of Patent License. Licensor hereby grants You a world-wide,\nroyalty-free, non-exclusive, perpetual, non-sublicenseable license,\nunder patent claims owned or controlled by the Licensor that are\nembodied in the Original Work as furnished by the Licensor (\"Licensed\nClaims\") to make, use, sell and offer for sale the Original Work.\nLicensor hereby grants You a world-wide, royalty-free, non-exclusive,\nperpetual, non-sublicenseable license under the Licensed Claims to\nmake, use, sell and offer for sale Derivative Works.\n\n3) Grant of Source Code License. The term \"Source Code\" means the\npreferred form of the Original Work for making modifications to it and\nall available documentation describing how to access and modify the\nOriginal Work. Licensor hereby agrees to provide a machine-readable\ncopy of the Source Code of the Original Work along with each copy of\nthe Original Work that Licensor distributes. Licensor reserves the\nright to satisfy this obligation by placing a machine-readable copy of\nthe Source Code in an information repository reasonably calculated to\npermit inexpensive and convenient access by You for as long as\nLicensor continues to distribute the Original Work, and by publishing\nthe address of that information repository in a notice immediately\nfollowing the copyright notice that applies to the Original Work.\n\n4) Exclusions From License Grant. Nothing in this License shall be\ndeemed to grant any rights to trademarks, copyrights, patents, trade\nsecrets or any other intellectual property of Licensor except as\nexpressly stated herein. No patent license is granted to make, use,\nsell or offer to sell embodiments of any patent claims other than the\nLicensed Claims defined in Section 2. No right is granted to the\ntrademarks of Licensor even if such marks are included in the Original\nWork. Nothing in this License shall be interpreted to prohibit\nLicensor from licensing under different terms from this License any\nOriginal Work that Licensor otherwise would have a right to license.\n\n5) External Deployment. The term \"External Deployment\" means the use\nor distribution of the Original Work or Derivative Works in any way\nsuch that the Original Work or Derivative Works may be accessed or\nused by anyone other than You, whether the Original Work or Derivative\nWorks are distributed to those persons, made available as an\napplication intended for use over a computer network, or used to\nprovide services or otherwise deliver content to anyone other than\nYou. As an express condition for the grants of license hereunder, You\nagree that any External Deployment by You shall be deemed a\ndistribution and shall be licensed to all under the terms of this\nLicense, as prescribed in section 1(c) herein.\n\n6) Warranty and Disclaimer of Warranty. LICENSOR WARRANTS THAT THE\nCOPYRIGHT IN AND TO THE ORIGINAL WORK IS OWNED BY THE LICENSOR OR THAT\nTHE ORIGINAL WORK IS DISTRIBUTED BY LICENSOR UNDER A VALID CURRENT\nLICENSE FROM THE COPYRIGHT OWNER. EXCEPT AS EXPRESSLY STATED IN THE\nIMMEDIATELY PRECEEDING SENTENCE, THE ORIGINAL WORK IS PROVIDED UNDER\nTHIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY, EITHER EXPRESS OR\nIMPLIED, INCLUDING, WITHOUT LIMITATION, THE WARRANTY OF\nNON-INFRINGEMENT AND WARRANTIES THAT THE ORIGINAL WORK IS MERCHANTABLE\nOR FIT FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF\nTHE ORIGINAL WORK IS WITH YOU. THIS DISCLAIMER OF WARRANTY CONSTITUTES\nAN ESSENTIAL PART OF THIS LICENSE. NO LICENSE TO ORIGINAL WORK IS\nGRANTED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n7) Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL\nTHEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE,\nSHALL THE LICENSOR BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT,\nSPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING\nAS A RESULT OF THIS LICENSE OR THE USE OF THE ORIGINAL WORK INCLUDING,\nWITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE,\nCOMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL\nDAMAGES OR LOSSES, EVEN IF SUCH PERSON SHALL HAVE BEEN INFORMED OF THE\nPOSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT\nAPPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH\nPARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH\nLIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR\nLIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION\nAND LIMITATION MAY NOT APPLY TO YOU.\n\n8) Acceptance and Termination. Nothing else but this License (or\nanother written agreement between Licensor and You) grants You\npermission to create Derivative Works based upon the Original Work,\nand any attempt to do so except under the terms of this License (or\nanother written agreement between Licensor and You) is expressly\nprohibited by U.S. copyright law, the equivalent laws of other\ncountries, and by international treaty. Therefore, by exercising any\nof the rights granted to You in Sections 1 and 2 herein, You indicate\nYour acceptance of this License and all of its terms and conditions.\nThis license shall terminate immediately and you may no longer\nexercise any of the rights granted to You by this License upon Your\nfailure to honor the proviso in Section 1(c) herein.\n\n9) Mutual Termination for Patent Action. This License shall terminate\nautomatically and You may no longer exercise any of the rights granted\nto You by this License if You file a lawsuit in any court alleging\nthat any OSI Certified open source software that is licensed under any\nlicense containing this \"Mutual Termination for Patent Action\" clause\ninfringes any patent claims that are essential to use that software.\n\n10) Jurisdiction, Venue and Governing Law. You agree that any lawsuit\narising under or relating to this License shall be maintained in the\ncourts of the jurisdiction wherein the Licensor resides or in which\nLicensor conducts its primary business, and under the laws of that\njurisdiction excluding its conflict-of-law provisions. The application\nof the United Nations Convention on Contracts for the International\nSale of Goods is expressly excluded. Any use of the Original Work\noutside the scope of this License or after its termination shall be\nsubject to the requirements and penalties of the U.S. Copyright Act,\n17 U.S.C. \u00a7 101 et seq., the equivalent laws of other countries, and\ninternational treaty. This section shall survive the termination of\nthis License.\n\n11) Attorneys Fees. In any action to enforce the terms of this License\nor seeking damages relating thereto, the prevailing party shall be\nentitled to recover its costs and expenses, including, without\nlimitation, reasonable attorneys' fees and costs incurred in\nconnection with such action, including any appeal of such action. This\nsection shall survive the termination of this License.\n\n12) Miscellaneous. This License represents the complete agreement\nconcerning the subject matter hereof. If any provision of this License\nis held to be unenforceable, such provision shall be reformed only to\nthe extent necessary to make it enforceable.\n\n13) Definition of \"You\" in This License. \"You\" throughout this\nLicense, whether in upper or lower case, means an individual or a\nlegal entity exercising rights under, and complying with all of the\nterms of, this License. For legal entities, \"You\" includes any entity\nthat controls, is controlled by, or is under common control with you.\nFor purposes of this definition, \"control\" means (i) the power, direct\nor indirect, to cause the direction or management of such entity,\nwhether by contract or otherwise, or (ii) ownership of fifty percent\n(50%) or more of the outstanding shares, or (iii) beneficial ownership\nof such entity.\n\nThis license is Copyright (C) 2002 Lawrence E. Rosen. All rights\nreserved. Permission is hereby granted to copy and distribute this\nlicense without modification. This license may not be modified without\nthe express written permission of its copyright owner.", + "json": "osl-1.0.json", + "yaml": "osl-1.0.yml", + "html": "osl-1.0.html", + "license": "osl-1.0.LICENSE" + }, + { + "license_key": "osl-1.1", + "category": "Copyleft", + "spdx_license_key": "OSL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Open Software License v. 1.1\nThis Open Software License (the \"License\") applies to any original work of authorship (the \"Original Work\") whose owner (the \"Licensor\") has placed the following notice immediately following the copyright notice for the Original Work:\n\nLicensed under the Open Software License version 1.1\n\n1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, non-sublicenseable license to do the following:\n\na) to reproduce the Original Work in copies;\n\nb) to prepare derivative works (\"Derivative Works\") based upon the Original Work;\n\nc) to distribute copies of the Original Work and Derivative Works to the public, with the proviso that copies of Original Work or Derivative Works that You distribute shall be licensed under the Open Software License;\n\nd) to perform the Original Work publicly; and\n\ne) to display the Original Work publicly.\n\n2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, non-sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor (\"Licensed Claims\") to make, use, sell and offer for sale the Original Work. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, non-sublicenseable license under the Licensed Claims to make, use, sell and offer for sale Derivative Works.\n\n3) Grant of Source Code License. The term \"Source Code\" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work.\n\n4) Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the Licensed Claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license.\n\n5) External Deployment. The term \"External Deployment\" means the use or distribution of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether the Original Work or Derivative Works are distributed to those persons or made available as an application intended for use over a computer network. As an express condition for the grants of license hereunder, You agree that any External Deployment by You of a Derivative Work shall be deemed a distribution and shall be licensed to all under the terms of this License, as prescribed in section 1(c) herein.\n\n6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an \"Attribution Notice.\" You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work.\n\n7) Warranty and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work is owned by the Licensor or that the Original Work is distributed by Licensor under a valid current license from the copyright owner. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an \"AS IS\" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer.\n\n8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You.\n\n9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express and volitional assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Sections 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Sections 1 herein, You indicate Your acceptance of this License and all of its terms and conditions. This License shall terminate immediately and you may no longer exercise any of the rights granted to You by this License upon Your failure to honor the proviso in Section 1(c) herein.\n\n10) Mutual Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License if You file a lawsuit in any court alleging that any OSI Certified open source software that is licensed under any license containing this \"Mutual Termination for Patent Action\" clause infringes any patent claims that are essential to use that software.\n\n11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. \u00e5\u00a4 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License.\n\n12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License.\n\n13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable.\n\n14) Definition of \"You\" in This License. \"You\" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, \"You\" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, \"control\" means (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.\n\n15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You.\n\nThis license is Copyright (C) 2002 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner.", + "json": "osl-1.1.json", + "yaml": "osl-1.1.yml", + "html": "osl-1.1.html", + "license": "osl-1.1.LICENSE" + }, + { + "license_key": "osl-2.0", + "category": "Copyleft", + "spdx_license_key": "OSL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Software License v. 2.0\n\nThis Open Software License (the \"License\") applies to any original work of authorship (the \"Original Work\") whose owner (the \"Licensor\") has placed the following notice immediately following the copyright notice for the Original Work:\nLicensed under the Open Software License version 2.0\n\n1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following:\na) to reproduce the Original Work in copies;\n\nb) to prepare derivative works (\"Derivative Works\") based upon the Original Work;\n\nc) to distribute copies of the Original Work and Derivative Works to the public, with the proviso that copies of Original Work or Derivative Works that You distribute shall be licensed under the Open Software License;\n\nd) to perform the Original Work publicly; and\n\ne) to display the Original Work publicly.\n\n2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works.\n\n3) Grant of Source Code License. The term \"Source Code\" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work.\n\n4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license.\n\n5) External Deployment. The term \"External Deployment\" means the use or distribution of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether the Original Work or Derivative Works are distributed to those persons or made available as an application intended for use over a computer network. As an express condition for the grants of license hereunder, You agree that any External Deployment by You of a Derivative Work shall be deemed a distribution and shall be licensed to all under the terms of this License, as prescribed in section 1(c) herein.\n\n6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an \"Attribution Notice.\" You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work.\n\n7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an \"AS IS\" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer.\n\n8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You.\n\n9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions. This License shall terminate immediately and you may no longer exercise any of the rights granted to You by this License upon Your failure to honor the proviso in Section 1(c) herein.\n\n10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, for patent infringement (i) against Licensor with respect to a patent applicable to software or (ii) against any entity with respect to a patent applicable to the Original Work (but excluding combinations of the Original Work with other software or hardware).\n\n11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License.\n\n12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License.\n\n13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable.\n\n14) Definition of \"You\" in This License. \"You\" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, \"You\" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, \"control\" means (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.\n\n15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You.\n\nThis license is Copyright (C) 2003 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner.", + "json": "osl-2.0.json", + "yaml": "osl-2.0.yml", + "html": "osl-2.0.html", + "license": "osl-2.0.LICENSE" + }, + { + "license_key": "osl-2.1", + "category": "Copyleft", + "spdx_license_key": "OSL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Software License v. 2.1\n\nThis Open Software License (the \"License\") applies to any original work of authorship (the \"Original Work\") whose owner (the \"Licensor\") has placed the following notice immediately following the copyright notice for the Original Work:\n\nLicensed under the Open Software License version 2.1\n\n1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following:\n\n * to reproduce the Original Work in copies;\n * to prepare derivative works (\"Derivative Works\") based upon the Original Work;\n * to distribute copies of the Original Work and Derivative Works to the public, with the proviso that copies of Original Work or Derivative Works that You distribute shall be licensed under the Open Software License;\n * to perform the Original Work publicly; and\n * to display the Original Work publicly.\n\n2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works.\n\n3) Grant of Source Code License. The term \"Source Code\" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work.\n\n4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license.\n\n5) External Deployment. The term \"External Deployment\" means the use or distribution of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether the Original Work or Derivative Works are distributed to those persons or made available as an application intended for use over a computer network. As an express condition for the grants of license hereunder, You agree that any External Deployment by You of a Derivative Work shall be deemed a distribution and shall be licensed to all under the terms of this License, as prescribed in section 1(c) herein.\n\n6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an \"Attribution Notice.\" You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work.\n\n7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an \"AS IS\" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer.\n\n8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You.\n\n9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions. This License shall terminate immediately and you may no longer exercise any of the rights granted to You by this License upon Your failure to honor the proviso in Section 1(c) herein.\n\n10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware.\n\n11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. \u00a7 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License.\n\n12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License.\n\n13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable.\n\n14) Definition of \"You\" in This License. \"You\" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, \"You\" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, \"control\" means (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.\n\n15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You.\n\nThis license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner.", + "json": "osl-2.1.json", + "yaml": "osl-2.1.yml", + "html": "osl-2.1.html", + "license": "osl-2.1.LICENSE" + }, + { + "license_key": "osl-3.0", + "category": "Copyleft", + "spdx_license_key": "OSL-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Software License (\"OSL\") v. 3.0\n\nThis Open Software License (the \"License\") applies to any original work of authorship (the \"Original Work\") whose owner (the \"Licensor\") has placed the following licensing notice adjacent to the copyright notice for the Original Work:\n\nLicensed under the Open Software License version 3.0\n\n1) Grant of Copyright License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, for the duration of the copyright, to do the following:\n\na) to reproduce the Original Work in copies, either alone or as part of a collective work;\n\nb) to translate, adapt, alter, transform, modify, or arrange the Original Work, thereby creating derivative works (\"Derivative Works\") based upon the Original Work;\n\nc) to distribute or communicate copies of the Original Work and Derivative Works to the public, with the proviso that copies of Original Work or Derivative Works that You distribute or communicate shall be licensed under this Open Software License;\n\nd) to perform the Original Work publicly; and\n\ne) to display the Original Work publicly.\n\n2) Grant of Patent License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, for the duration of the patents, to make, use, sell, offer for sale, have made, and import the Original Work and Derivative Works.\n\n3) Grant of Source Code License. The term \"Source Code\" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work.\n\n4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior permission of the Licensor. Except as expressly stated herein, nothing in this License grants any license to Licensor's trademarks, copyrights, patents, trade secrets or any other intellectual property. No patent license is granted to make, use, sell, offer for sale, have made, or import embodiments of any patent claims other than the licensed claims defined in Section 2. No license is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under terms different from this License any Original Work that Licensor otherwise would have a right to license.\n\n5) External Deployment. The term \"External Deployment\" means the use, distribution, or communication of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether those works are distributed or communicated to those persons or made available as an application intended for use over a network. As an express condition for the grants of license hereunder, You must treat any External Deployment by You of the Original Work or a Derivative Work as a distribution under section 1(c).\n\n6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent, or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an \"Attribution Notice.\" You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work.\n\n7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately preceding sentence, the Original Work is provided under this License on an \"AS IS\" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of non-infringement, merchantability or fitness for a particular purpose. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to the Original Work is granted by this License except under this disclaimer.\n\n8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to anyone for any indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to the extent applicable law prohibits such limitation.\n\n9) Acceptance and Termination. If, at any time, You expressly assented to this License, that assent indicates your clear and irrevocable acceptance of this License and all of its terms and conditions. If You distribute or communicate copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. This License conditions your rights to undertake the activities listed in Section 1, including your right to create Derivative Works based upon the Original Work, and doing so without honoring these terms and conditions is prohibited by copyright law and international treaty. Nothing in this License is intended to affect copyright exceptions and limitations (including \"fair use\" or \"fair dealing\"). This License shall terminate immediately and You may no longer exercise any of the rights granted to You by this License upon your failure to honor the conditions in Section 1(c).\n\n10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware.\n\n11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of copyright or patent law in the appropriate jurisdiction. This section shall survive the termination of this License.\n\n12) Attorneys' Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License.\n\n13) Miscellaneous. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable.\n\n14) Definition of \"You\" in This License. \"You\" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, \"You\" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, \"control\" means (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.\n\n15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You.\n\n16) Modification of This License. This License is Copyright \u00a9 2005 Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the \"Modified License\") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the \"Open Software License\" or \"OSL\" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice \"Licensed under \" or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process.", + "json": "osl-3.0.json", + "yaml": "osl-3.0.yml", + "html": "osl-3.0.html", + "license": "osl-3.0.LICENSE" + }, + { + "license_key": "ossn-3.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ossn-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OPEN SOURCE SOCIAL NETWORK LICENSE (OSSN LICENSE) v3.0\nCopyright (C) 2014-2017 OPEN SOURCE SOCIAL NETWORK. \n\nThe Open Source Social Network License does not permit incorporating your program/software into proprietary program/software.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this Program/Software and associated documentation files (the \"Program/Software\"), to deal in the Program/Software with restriction, including limitation the rights to use, copy, modify, distribute, or sell copies of the Program/Software.\n\n1. Definitions\n\n\"Copyright\" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.\nTo \"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.\n\"You\" refers to the individual/organization that uses the program/software.\n\n2. Modifying, copy, distribution/selling of Program.\n\n2.1 You are allowed to modify the program/software subject to the following conditions:\n 2.1.0 You shall not remove the copyrights including powered by notice/links.\n 2.1.1 You shall not try to apply any techniques that hides copyright, 'powered by' notice/links.\n2.2 You are allowed to distribute/sell the copies of product keeping the section 2.1 in mind.\n\n3. Other 3rd party open source program/software\n\nSome of other open source program/software within this program/software released under different license like GPL, LGPL, MIT etc, you shall agree to the respective license. We tried to put the license name in the comment section of respective file or sub-program/software.\n\n4. Violation and Termination of License.\n\nIf your use of program/software violates the license, the license and the use of program/software shall terminated immediately. \n5. Revised Versions of this License.\nThe Open Source Social Network Authors may publish revised and/or new versions of the Open Source Social Network License from time to time. Such new versions will be similar to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. \n\n6. Disclaimer of Warranty.\n\nTHERE 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.\n\n7. Limitation of Liability.\n\nIN 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.\n\n8. Interpretation of Sections 6 and 7\n\nIf 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.", + "json": "ossn-3.0.json", + "yaml": "ossn-3.0.yml", + "html": "ossn-3.0.html", + "license": "ossn-3.0.LICENSE" + }, + { + "license_key": "oswego-concurrent", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-oswego-concurrent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html\n\nAll classes are released to the public domain and may be used for any purpose\nwhatsoever without permission or acknowledgment. Portions of the CopyOnWriteArrayList\nand ConcurrentReaderHashMap classes are adapted from Sun JDK source code. These are\ncopyright of Sun Microsystems, Inc, and are used with their kind permission, as\ndescribed in this license.\n\nhttp://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/sun-u.c.license.pdf\n\nTECHNOLOGY LICENSE FROM SUN MICROSYSTEMS, INC. TO DOUG LEA\n\nWhereas Doug Lea desires to utlized certain Java Software technologies in the\nutil.concurrent technology; and Whereas Sun Microsystems, Inc. (\"Sun\") desires that\nDoug Lea utilize certain Java Software technologies in the util.concurrent\ntechnology; Therefore the parties agree as follows, effective May 31, 2002:\n\n\"Java Software technologies\" means classes/java/util/ArrayList.java, and\nclasses/java/util/HashMap.java.\n\nThe Java Software technologies are Copyright (c) 1994-2000 Sun Microsystems, Inc. All\nrights reserved. \n\nSun hereby grants Doug Lea a non-exclusive, worldwide, non- transferrable license to\nuse, reproduce, create derivate works of, and distribute the Java Software and\nderivative works thereof in source and binary forms as part of a larger work, and to\nsublicense the right to use, reproduce and distribute the Java Software and Doug\nLea's derivative works as the part of larger works through multiple tiers of\nsublicensees provided that the following conditions are met: \n\n-Neither the name of or trademarks of Sun may be used to endorse or promote products\nincluding or derived from the Java Software technology without specific prior written\npermission; and \n\n-Redistributions of source or binary code must contain the above copyright notice,\nthis notice and and the following disclaimers:\n\nThis software is provided \"AS IS,\" without a warranty of any kind. ALL EXPRESS OR\nIMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY\nEXCLUDED. SUN MICROSYSTEMS, INC. AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY\nDAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE\nSOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN MICROSYSTEMS, INC. OR ITS LICENSORS\nBE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL,\nCONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE\nTHEORY OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USESOFTWARE, EVEN IF\nSUN MICROSYSTEMS, INC. HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nYou acknowledge that Software is not designed,licensed or intended for use in the\ndesign, construction, operation or maintenance of any nuclear facility.\n\nsigned [Doug Lea] dated", + "json": "oswego-concurrent.json", + "yaml": "oswego-concurrent.yml", + "html": "oswego-concurrent.html", + "license": "oswego-concurrent.LICENSE" + }, + { + "license_key": "other-copyleft", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-other-copyleft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This component contains third-party subcomponents licensed under\none or more copyleft licenses in the style of GPL, LGPL, MPL or EPL.\nThe license obligations of these subcomponents may apply when a subcomponent\ndepending on how the subcomponent is used and/or redistributed.", + "json": "other-copyleft.json", + "yaml": "other-copyleft.yml", + "html": "other-copyleft.html", + "license": "other-copyleft.LICENSE" + }, + { + "license_key": "other-permissive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-other-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This component contains multiple third-party subcomponents licensed\nunder permissive licenses in the style of MIT, BSD, X11, and/or Apache.", + "json": "other-permissive.json", + "yaml": "other-permissive.yml", + "html": "other-permissive.html", + "license": "other-permissive.LICENSE" + }, + { + "license_key": "otn-dev-dist", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle Technology Network Development and Distribution License Terms\nhttp://www.oracle.com/technetwork/licenses/distribution-license-152002.html\n\nExport Controls on the Programs \nSelecting the \"Accept License Agreement\" button is a confirmation of your agreement that you comply, now and during the trial term, with each of the following statements:\n -You are not a citizen, national, or resident of, and are not under control of, the government of Cuba, Iran, Sudan, Libya, North Korea, Syria, nor any country to which the United States has prohibited export. \n-You will not download or otherwise export or re-export the Programs, directly or indirectly, to the above mentioned countries nor to citizens, nationals or residents of those countries. \n-You are not listed on the United States Department of Treasury lists of Specially Designated Nationals, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers, nor are you listed on the United States Department of Commerce Table of Denial Orders.\nYou will not download or otherwise export or re-export the Programs, directly or indirectly, to persons on the above mentioned lists.\nYou will not use the Programs for, and will not allow the Programs to be used for, any purposes prohibited by United States law, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction.\n \nEXPORT RESTRICTIONS \nYou agree that U.S. export control laws and other applicable export and import laws govern your use of the programs, including technical data; additional information can be found on Oracle\u00ae's Global Trade Compliance web site (http://www.oracle.com/products/export).\nYou agree that neither the programs nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation.\nOracle Employees: Under no circumstances are Oracle Employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, failure to comply with this policy could result in disciplinary action up to and including termination.\n \nNote: You are bound by the Oracle Technology Network (\"OTN\") License Agreement terms. The OTN License Agreement terms also apply to all updates you receive under your Technology Track subscription.\n\nThe OTN License Agreement terms below supercede any shrinkwrap license on the OTN Technology Track software CDs and previous OTN License terms (including the Oracle Program License as modified by the OTN Program Use Certificate).\n \nOracle Technology Network Development and Distribution License Agreement\n\n\"We,\" \"us,\" and \"our\" refers to Oracle America, Inc., for and on behalf of itself and its subsidiaries and affiliates under common control. \"You\" and \"your\" refers to the individual or entity that wishes to use the programs from Oracle. \"Programs\" refers to the software product you wish to download and use and program documentation. \"License\" refers to your right to use the programs under the terms of this agreement. This agreement is governed by the substantive and procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco, San Mateo, or Santa Clara counties in California in any dispute arising out of or relating to this agreement.\nWe are willing to license the programs to you only upon the condition that you accept all of the terms contained in this agreement. Read the terms carefully and select the \"Accept\" button at the bottom of the page to confirm your acceptance. If you are not willing to be bound by these terms, select the \"Do Not Accept\" button and the registration process will not continue.\nLicense Rights \nWe grant you a nonexclusive, nontransferable limited license to use the programs: (a) for purposes of developing, testing, prototyping and running applications you have developed for your own internal data processing operations; (b) to distribute the programs with applications you have developed to your customers provided that each such licensee agrees to license terms consistent with the terms of this Agreement, you do not charge your end users any additional fees for the use of the programs, and your end users may only use the programs to run your applications for their own business operations; and (c) to use the programs to provide third party demonstrations and training. You are not permitted to use the programs for any purpose other than as permitted under this Agreement. If you want to use the programs for any purpose other than as expressly permitted under this agreement you must contact us, or an Oracle reseller, to obtain the appropriate license. We may audit your use and distribution of the programs. Program documentation is either shipped with the programs, or documentation may accessed online at http://www.oracle.com/technetwork/indexes/documentation/index.html.\nOwnership and Restrictions \nWe retain all ownership and intellectual property rights in the programs. You may make a sufficient number of copies of the programs for the licensed use and one copy of the programs for backup purposes.\nYou may not: \n- use the programs for any purpose other than as provided above; \n- distribute the programs unless accompanied with your applications; \n- charge your end users for use of the programs; \n- remove or modify any program markings or any notice of our proprietary rights; \n- use the programs to provide third party training on the content and/or functionality of the programs, except for training your licensed users; \n- assign this agreement or give the programs, program access or an interest in the programs to any individual or entity except as provided under this agreement; \n- cause or permit reverse engineering (unless required by law for interoperability), disassembly or decompilation of the programs; \n- disclose results of any program benchmark tests without our prior consent.\nProgram Distribution \nWe grant you a nonexclusive, nontransferable right to copy and distribute the programs to your end users provided that you do not charge your end users for use of the programs and provided your end users may only use the programs to run your applications for their business operations. Prior to distributing the programs you shall require your end users to execute an agreement binding them to terms consistent with those contained in this section and the sections of this agreement entitled \"License Rights,\" \"Ownership and Restrictions,\" \"Export,\" \"Disclaimer of Warranties and Exclusive Remedies,\" \"No Technical Support,\" \"End of Agreement,\" \"Relationship Between the Parties,\" and \"Open Source.\" You must also include a provision stating that your end users shall have no right to distribute the programs, and a provision specifying us as a third party beneficiary of the agreement. You are responsible for obtaining these agreements with your end users.\nYou agree to: (a) defend and indemnify us against all claims and damages caused by your distribution of the programs in breach of this agreements and/or failure to include the required contractual provisions in your end user agreement as stated above; (b) keep executed end user agreements and records of end user information including name, address, date of distribution and identity of programs distributed; (c) allow us to inspect your end user agreements and records upon request; and, (d) enforce the terms of your end user agreements so as to effect a timely cure of any end user breach, and to notify us of any breach of the terms.\nExport \nYou agree that U.S. export control laws and other applicable export and import laws govern your use of the programs, including technical data; additional information can be found on Oracle's Global Trade Compliance web site located at http://www.oracle.com/products/export/index.html?content.html. You agree that neither the programs nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation.\nDisclaimer of Warranty and Exclusive Remedies\nTHE PROGRAMS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.\nIN NO EVENT SHALL WE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. OUR ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).\nNo Technical Support \nOur technical support organization will not provide technical support, phone support, or updates to you for the programs licensed under this agreement.\nRestricted Rights \nIf you distribute a license to the United States government, the programs, including documentation, shall be considered commercial computer software and you will place a legend, in addition to applicable copyright notices, on the documentation, and on the media label, substantially similar to the following:\nNOTICE OF RESTRICTED RIGHTS\n\"Programs delivered subject to the DOD FAR Supplement are 'commercial computer software' and use, duplication, and disclosure of the programs, including documentation, shall be subject to the licensing restrictions set forth in the applicable Oracle license agreement. Otherwise, programs delivered subject to the Federal Acquisition Regulations are 'restricted computer software' and use, duplication, and disclosure of the programs, including documentation, shall be subject to the restrictions in FAR 52.227-19, Commercial Computer Software-Restricted Rights (June 1987). Oracle America, Inc., 500 Oracle Parkway, Redwood City, CA 94065.\"\nEnd of Agreement \nYou may terminate this agreement by destroying all copies of the programs. We have the right to terminate your right to use the programs if you fail to comply with any of the terms of this agreement, in which case you shall destroy all copies of the programs.\nRelationship Between the Parties \nThe relationship between you and us is that of licensee/licensor. Neither party will represent that it has any authority to assume or create any obligation, express or implied, on behalf of the other party, nor to represent the other party as agent, employee, franchisee, or in any other capacity. Nothing in this agreement shall be construed to limit either party's right to independently develop or distribute software that is functionally similar to the other party's products, so long as proprietary information of the other party is not included in such software.\nOpen Source \n\"Open Source\" software - software available without charge for use, modification and distribution - is often licensed under terms that require the user to make the user's modifications to the Open Source software or any software that the user 'combines' with the Open Source software freely available in source code form. If you use Open Source software in conjunction with the programs, you must ensure that your use does not: (i) create, or purport to create, obligations of us with respect to the Oracle programs; or (ii) grant, or purport to grant, to any third party any rights to or immunities under our intellectual property or proprietary rights in the Oracle programs. For example, you may not develop a software program using an Oracle program and an Open Source program where such use results in a program file(s) that contains code from both the Oracle program and the Open Source program (including without limitation libraries) if the Open Source program is licensed under a license that requires any \"modifications\" be made freely available. You also may not combine the Oracle program with programs licensed under the GNU General Public License (\"GPL\") in any manner that could cause, or could be interpreted or asserted to cause, the Oracle program or any modifications thereto to become subject to the terms of the GPL.\nEntire Agreement \nYou agree that this agreement is the complete agreement for the programs and licenses, and this agreement supersedes all prior or contemporaneous agreements or representations. If any term of this agreement is found to be invalid or unenforceable, the remaining provisions will remain effective.\nLast updated: 01/24/09\n \nShould you have any questions concerning this License Agreement, or if you desire to contact Oracle for any reason, please write: \nOracle America, Inc. \n500 Oracle Parkway, \nRedwood City, CA 94065\n \nOracle may contact you to ask if you had a satisfactory experience installing and using this OTN software download.", + "json": "otn-dev-dist.json", + "yaml": "otn-dev-dist.yml", + "html": "otn-dev-dist.html", + "license": "otn-dev-dist.LICENSE" + }, + { + "license_key": "otn-dev-dist-2009", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2009", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle Technology Network Developer License Terms \n\nExport Controls on the Programs\nSelecting the \"Accept License Agreement\" button is a confirmation of your agreement that you comply, now and during the trial term, with each of the following statements:\n\n-You are not a citizen, national, or resident of, and are not under control of, the government of Cuba, Iran, Sudan, Libya, North Korea, Syria, nor any country to which the United States has prohibited export.\n-You will not download or otherwise export or re-export the Programs, directly or indirectly, to the above mentioned countries nor to citizens, nationals or residents of those countries.\n-You are not listed on the United States Department of Treasury lists of Specially Designated Nationals, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers, nor are you listed on the United States Department of Commerce Table of Denial Orders.\n\nYou will not download or otherwise export or re-export the Programs, directly or indirectly, to persons on the above mentioned lists.\n\nYou will not use the Programs for, and will not allow the Programs to be used for, any purposes prohibited by United States law, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction.\n\nEXPORT RESTRICTIONS\nYou agree that U.S. export control laws and other applicable export and import laws govern your use of the programs, including technical data; additional information can be found on Oracle\u00ae's Global Trade Compliance web site (http://www.oracle.com/products/export).\n\nYou agree that neither the programs nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation.\n\nOracle Employees: Under no circumstances are Oracle Employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, failure to comply with this policy could result in disciplinary action up to and including termination.\n\nNote: You are bound by the Oracle Technology Network (\"OTN\") License Agreement terms. The OTN License Agreement terms also apply to all updates you receive under your Technology Track subscription.\n\nThe OTN License Agreement terms below supercede any shrinkwrap license on the OTN Technology Track software CDs and previous OTN License terms (including the Oracle Program License as modified by the OTN Program Use Certificate).\n\nOracle Technology Network Development License Agreement\n\"We,\" \"us,\" and \"our\" refers to Oracle America, Inc., for and on behalf of itself and its subsidiaries and affiliates under common control. \"You\" and \"your\" refers to the individual or entity that wishes to use the programs from Oracle. \"Programs\" refers to the Oracle software product you wish to download and use and program documentation. \"License\" refers to your right to use the programs under the terms of this agreement. This agreement is governed by the substantive and procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco, San Mateo, or Santa Clara counties in California in any dispute arising out of or relating to this agreement.\n\nWe are willing to license the programs to you only upon the condition that you accept all of the terms contained in this agreement. Read the terms carefully and select the \"Accept License Agreement\" button to confirm your acceptance. If you are not willing to be bound by these terms, select the \"Decline License Agreement\" button and the registration process will not continue.\n\nLICENSE RIGHTS\nWe grant you a nonexclusive, nontransferable limited license to use the programs only for the purpose of developing, testing, prototyping and demonstrating your application, and not for any other purpose. If you use the application you develop under this license for any internal data processing or for any commercial or production purposes, or you want to use the programs for any purpose other than as permitted under this agreement, you must obtain a production release version of the program by contacting us or an Oracle reseller to obtain the appropriate license. You acknowledge that we may not produce a production release version of the program and any development efforts undertaken by you are at your own risk. We may audit your use of the programs. Program documentation, if available, may accessed online at http://www.oracle.com/technetwork/documentation/index.html.\n\nOwnership and Restrictions We retain all ownership and intellectual property rights in the programs. The programs may be installed on one computer only, and used by one person in the operating environment identified by us. You may make one copy of the programs for backup purposes.\n\nYou may not:\n- use the programs for your own internal data processing or for any commercial or production purposes, or use the programs for any purpose except the development of your application;\n- use the application you develop with the programs for any internal data processing or commercial or production purposes without securing an appropriate license from us;\n- continue to develop your application after you have used it for any internal data processing, commercial or production purpose without securing an appropriate license from us, or an Oracle reseller;\n- remove or modify any program markings or any notice of our proprietary rights;\n- make the programs available in any manner to any third party;\n- use the programs to provide third party training;\n- assign this agreement or give or transfer the programs or an interest in them to another individual or entity; - cause or permit reverse engineering (unless required by law for interoperability), disassembly or decompilation of the programs;\n- disclose results of any program benchmark tests without our prior consent.\n\nExport\nYou agree that U.S. export control laws and other applicable export and import laws govern your use of the programs, including technical data; additional information can be found on Oracle's Global Trade Compliance web site located at http://www.oracle.com/products/export/index.html?content.html. You agree that neither the programs nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation.\n\nDisclaimer of Warranty and Exclusive Remedies\nTHE PROGRAMS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.\n\nIN NO EVENT SHALL WE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. OUR ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).\n\nTrial Programs Included With Orders\nWe may include additional programs with an order which may be used for trial purposes only. You will have 30 days from the delivery date to evaluate these programs. Any use of these programs after the 30 day trial period requires you to obtain the applicable license. Programs licensed for trial purposes are provided \"as is\" and we do not provide technical support or any warranties for these programs.\n\nNo Technical Support\nOur technical support organization will not provide technical support, phone support, or updates to you for the programs licensed under this agreement.\n\nEnd of Agreement\nYou may terminate this agreement by destroying all copies of the programs. We have the right to terminate your right to use the programs if you fail to comply with any of the terms of this agreement, in which case you shall destroy all copies of the programs.\n\nRelationship Between the Parties\nThe relationship between you and us is that of licensee/licensor. Neither party will represent that it has any authority to assume or create any obligation, express or implied, on behalf of the other party, nor to represent the other party as agent, employee, franchisee, or in any other capacity. Nothing in this agreement shall be construed to limit either party's right to independently develop or distribute software that is functionally similar to the other party's products, so long as proprietary information of the other party is not included in such software.\n\nOpen Source\n\"Open Source\" software - software available without charge for use, modification and distribution - is often licensed under terms that require the user to make the user's modifications to the Open Source software or any software that the user 'combines' with the Open Source software freely available in source code form. If you use Open Source software in conjunction with the programs, you must ensure that your use does not: (i) create, or purport to create, obligations of us with respect to the Oracle programs; or (ii) grant, or purport to grant, to any third party any rights to or immunities under our intellectual property or proprietary rights in the Oracle programs. For example, you may not develop a software program using an Oracle program and an Open Source program where such use results in a program file(s) that contains code from both the Oracle program and the Open Source program (including without limitation libraries) if the Open Source program is licensed under a license that requires any \"modifications\" be made freely available. You also may not combine the Oracle program with programs licensed under the GNU General Public License (\"GPL\") in any manner that could cause, or could be interpreted or asserted to cause, the Oracle program or any modifications thereto to become subject to the terms of the GPL.\n\nEntire Agreement\nYou agree that this agreement is the complete agreement for the programs and licenses, and this agreement supersedes all prior or contemporaneous agreements or representations. If any term of this agreement is found to be invalid or unenforceable, the remaining provisions will remain effective.\n\nLast updated: 01/24/09\n\nShould you have any questions concerning this License Agreement, or if you desire to contact Oracle for any reason, please write:\nOracle America, Inc.\n500 Oracle Parkway,\nRedwood City, CA 94065\n\n \nOracle may contact you to ask if you had a satisfactory experience installing and using this OTN software download.", + "json": "otn-dev-dist-2009.json", + "yaml": "otn-dev-dist-2009.yml", + "html": "otn-dev-dist-2009.html", + "license": "otn-dev-dist-2009.LICENSE" + }, + { + "license_key": "otn-dev-dist-2014", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle Technology Network Free Developer License Terms\n\nExport Controls on the Programs\n\nExport laws and regulations of the United States and any other relevant local export laws and regulations apply to the Programs. You agree that such export control laws govern your use of the Programs (including technical data) and any services deliverables provided under this agreement, and you agree to comply with all such export laws and regulations (including \"deemed export\" and \"deemed re-export\" regulations). You agree that no data, information, program, and/or materials resulting from services (or direct product thereof) will be exported, directly or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation, or development of missile technology. \n\nAccordingly, you confirm:\n\n-You will not download, provide, make available or otherwise export or re-export the Programs, directly or indirectly, to countries prohibited by applicable laws and regulations nor to citizens, nationals or residents of those countries.\n-You are not listed on the United States Department of Treasury lists of Specially Designated Nationals and Blocked Persons, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers, nor are you listed on the United States Department of Commerce Table of Denial Orders.\n- You will not download or otherwise export or re-export the Programs, directly or indirectly, to persons on the above mentioned lists.\n- You will not use the Program for, and will not allow the Program to be used for, any purposes prohibited by applicable law, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction. \n\nOracle Employees: Under no circumstances are Oracle Employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, failure to comply with this policy could result in disciplinary action up to and including termination. \n\nNote: You are bound by the Oracle Technology Network (\"OTN\") License Agreement terms. The OTN License Agreement terms also apply to all updates you receive under your Technology Track subscription. \n\nThe OTN License Agreement terms below supersede any shrinkwrap license on the OTN Technology Track software CDs and previous OTN License terms (including the Oracle Program License as modified by the OTN Program Use Certificate).\n\nORACLE TECHNOLOGY NETWORK DEVELOPMENT LICENSE AGREEMENT \n\n\"We,\" \"us,\" and \"our\" refers to Oracle America, Inc., for and on behalf of itself and its subsidiaries and affiliates under common control. \"You\" and \"your\" refers to the individual or entity that wishes to use the Programs from Oracle. \"Programs\" refers to the software product associated with this agreement that you wish to download and use and program documentation. \"Developer Desktop Computer\" refers to your physical computer that is accessed and used for software development and testing purposes by only one person (each \"Your Developer\") and with respect to use of the Programs does not participate in a Shared Development Environment. A Developer Desktop Computer may, for Your Developer's sole use, host one or more multiple virtual machines containing the Programs. \"Shared Development Environment\" refers to (a) software development occurring in a network or computer infrastructure shared by multiple people; and/or (b) software development occurring on a computer that is not dedicated to use only by Your Developer. \"Unit Testing\" refers to the testing of sets of one or more computer program modules making up a portion of an application together with control data, usage procedures, and operating procedures to determine if such computer program module(s) meet operation objectives. \"License\" refers to your right to use the Programs under the terms of this agreement.\n\nThis agreement is governed by the substantive and procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco or Santa Clara counties in California in any dispute arising out of or relating to this agreement.\n\nWe are willing to license the Programs to you only upon the condition that you accept all of the terms contained in this agreement. Read the terms carefully and select the \"Accept License Agreement\" button to confirm your acceptance. If you are not willing to be bound by these terms, select the \"Decline License Agreement\" button and the registration process will not continue.\n\nLicense Rights\n\nWe grant you a nonexclusive, nontransferable limited license to use the Programs only for the purpose of developing, testing (including Unit Testing with production data), prototyping and demonstrating your application(s), and not for any other purpose. This license permits you to allow each of Your Developers to deploy the Programs on one Developer Desktop Computer. You may not use the Programs in a Shared Development Environment. For deployment of the application(s) you develop under this license for any internal data processing or for any commercial or production purposes, or if you want to use the Programs for any purpose other than as permitted under this agreement, you must first obtain a production release version of the Programs by contacting us or an Oracle reseller to obtain the appropriate license. You may continue to develop, test, prototype and demonstrate your application(s) with the Programs under this license after you have deployed the application(s) for any internal data processing, commercial or production purposes (subject to the requirement to procure a production release version of the Programs as described in the preceding sentence). You acknowledge that we may not produce a production release version of the program and any development efforts undertaken by you are at your own risk. We may audit your use of the Programs. Program documentation, if available, may be accessed online at http://www.oracle.com/technetwork/indexes/documentation/index.html. We reserve all rights not expressly granted in this agreement.\n\nOwnership and Restrictions\n\nWe retain all ownership and intellectual property rights in the Programs. For each of Your Developers, the Programs may be installed on one Developer Desktop Computer only, and used by Your Developer in the operating environment identified by us. You may make one copy of the Programs for backup purposes. You are responsible for each of Your Developer\u2019s compliance with this agreement.\n\nYou may not: \n- use the Programs for your own internal data processing or for any commercial or production purposes, or use the Programs for any purpose except the development, testing, prototyping, and demonstrating of your application(s); \n- use the application(s) you develop with the Programs for any internal data processing or commercial or production purposes , including testing or running production or commercial workloads on the developer desktop, without obtaining an appropriate license from us; \n- remove or modify any program markings or any notice of our proprietary rights; \n- make the Programs available in any manner to any third party; \n- use the Programs to provide third party training; \n- assign this agreement or give or transfer the Programs or an interest in them to another individual or entity; - cause or permit reverse engineering (unless required by law for interoperability), disassembly or decompilation of the Programs; \n- disclose results of any program benchmark tests without our prior consent.\n\nDisclaimer of Warranty and Exclusive Remedies\n\nTHE PROGRAMS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.\n\n\nIN NO EVENT SHALL WE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. OUR ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).\n\nTrial Programs Included With Orders\n\nWe may include additional Programs with an order which may be used for trial purposes only. You will have 30 days from the delivery date to evaluate these Programs. Any use of these Programs after the 30 day trial period requires you to obtain the applicable license. Programs licensed for trial purposes are provided \"as is\" and we do not provide technical support or any warranties for these Programs.\n\nNo Technical Support\n\nOur technical support organization will not provide technical support, phone support, or updates to you for the Programs licensed under this agreement.\n\nEnd of Agreement\n\nYou may terminate this agreement by destroying all copies of the Programs. We have the right to terminate your right to use the Programs if you fail to comply with any of the terms of this agreement, in which case you shall destroy all copies of the Programs.\n\nRelationship Between the Parties\n\nThe relationship between you and us is that of licensee/licensor. Neither party will represent that it has any authority to assume or create any obligation, express or implied, on behalf of the other party, nor to represent the other party as agent, employee, franchisee, or in any other capacity. Nothing in this agreement shall be construed to limit either party's right to independently develop or distribute software that is functionally similar to the other party's products, so long as proprietary information of the other party is not included in such software.\n\nOpen Source\n\n\"Open Source\" software - software available without charge for use, modification and distribution - is often licensed under terms that require the user to make the user's modifications to the Open Source software or any software that the user 'combines' with the Open Source software freely available in source code form. If you use Open Source software in conjunction with the Programs, you must ensure that your use does not: (i) create, or purport to create, obligations of us with respect to the Oracle Programs; or (ii) grant, or purport to grant, to any third party any rights to or immunities under our intellectual property or proprietary rights in the Oracle Programs. For example, you may not develop a software program using the Oracle Programs and an Open Source program where such use results in a program file(s) that contains code from both the Oracle Programs and the Open Source program (including without limitation libraries) if the Open Source program is licensed under a license that requires any \"modifications\" be made freely available. You also may not combine the Oracle Programs with programs licensed under the GNU General Public License (\"GPL\") in any manner that could cause, or could be interpreted or asserted to cause, the Oracle program or any modifications thereto to become subject to the terms of the GPL.\n\nEntire Agreement\n\nYou agree that this agreement is the complete agreement for the Programs and licenses, and this agreement supersedes all prior or contemporaneous agreements or representations. If any term of this agreement is found to be invalid or unenforceable, the remaining provisions will remain effective.\n\nLast updated: 11 July 2014\n\nShould you have any questions concerning this License Agreement, or if you desire to contact Oracle for any reason, please write: \nOracle America, Inc. \n500 Oracle Parkway, \nRedwood City, CA 94065\n\nOracle may contact you to ask if you had a satisfactory experience installing and using this OTN software download.", + "json": "otn-dev-dist-2014.json", + "yaml": "otn-dev-dist-2014.yml", + "html": "otn-dev-dist-2014.html", + "license": "otn-dev-dist-2014.LICENSE" + }, + { + "license_key": "otn-dev-dist-2016", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle Technology Network License Agreement\n\nOracle is willing to authorize Your access to software associated with this License Agreement (\"Agreement\") only upon the condition that You accept that this Agreement governs Your use of the software. By selecting the \"Accept License Agreement\" button or box (or the equivalent) or installing or using the Programs You indicate Your acceptance of this Agreement and Your agreement, as an authorized representative of Your company or organization (if being acquired for use by an entity) or as an individual, to comply with the license terms that apply to the software that You wish to download and access. If You are not willing to be bound by this Agreement, do not select the \"Accept License Agreement\" button or box (or the equivalent) and do not download or access the software.\n\nDefinitions \n\"Oracle\" refers to Oracle America, Inc. \"You\" and \"Your\" refers to (a) a company or organization (each an \"Entity\") accessing the Programs, if use of the Programs will be on behalf of such Entity; or (b) an individual accessing the Programs, if use of the Programs will not be on behalf of an Entity. \"Contractors\" refers to Your agents and contractors (including, without limitation, outsourcers). \"Program(s)\" refers to Oracle software provided by Oracle pursuant to this Agreement and any updates, error corrections, and/or Program Documentation provided by Oracle. \"Program Documentation\" refers to Program user manuals and Program installation manuals, if any. If available, Program Documentation may be delivered with the Programs and/or may be accessed from www.oracle.com/documentation. \"Associated Product\" refers to the Oracle product(s), if any, and as identified in the Programs documentation or on the Programs download site, with which the Programs are intended to enable or enhance interoperation with Your application(s). \"Separate Terms\" refers to separate license terms that are specified in the Program Documentation, readmes or notice files and that apply to Separately Licensed Third Party Technology. \"Separately Licensed Third Party Technology\" refers to third party technology that is licensed under Separate Terms and not under the terms of this Agreement.\n\nLicense Rights and Restrictions\nOracle grants You a nonexclusive, nontransferable, limited license to, subject to the restrictions stated in this Agreement, (a) internally use the Programs solely for the purposes of developing, testing, prototyping and demonstrating Your applications, and running the Programs for Your own internal business operations; and (b) redistribute unmodified Programs and Programs Documentation pursuant to the Programs Redistribution section below. You may allow Your Contractor(s) to use the Programs, provided they are acting on Your behalf to exercise license rights granted in this Agreement and further provided that You are responsible for their compliance with this Agreement in such use. You will have a written agreement with Your Contractor(s) that strictly limits their right to use the Programs and that otherwise protects Oracle\u2019s intellectual property rights to the same extent as this Agreement. You may make copies of the Programs to the extent reasonably necessary to exercise the license rights granted in this Agreement. You may make one copy of the Programs for backup purposes.\n\nFurther, You may not:\n\nremove or modify any Program markings or any notice of Oracle\u2019s or a licensor\u2019s proprietary rights;\nuse the Programs to provide third party training;\nassign this Agreement or distribute, give, or transfer the Programs or an interest in them to any third party, except as expressly permitted in this Agreement (the foregoing shall not be construed to limit the rights You may otherwise have with respect to Separately Licensed Third Party Technology);\ncause or permit reverse engineering (unless required by law for interoperability), disassembly or decompilation of the Programs; and\ndisclose results of any Program benchmark tests without Oracle\u2019s prior consent.\nThe Programs may contain source code that, unless expressly licensed in this Agreement for other purposes (for example, licensed under an open source license), is provided solely for reference purposes pursuant to the terms of this Agreement and may not be modified.\n\nAll rights not expressly granted in this Agreement are reserved by Oracle. If You want to use the Programs or Your application for any purpose other than as expressly permitted under this Agreement, You must obtain from Oracle or an Oracle reseller a valid Programs license under a separate agreement permitting such use. However, You acknowledge that the Programs may not be intended for production use and/or Oracle may not make a version of the Programs available for production or other purposes; any development or other work You undertake with the Programs is at Your sole risk.\n\nPrograms Redistribution \nWe grant You a nonexclusive, nontransferable right to copy and distribute unmodified Programs and Programs Documentation as part of and included in Your application that is intended to interoperate with the Associated Product, if any, provided that You do not charge Your end users any additional fees for the use of the Programs. Prior to distributing the Programs and Programs Documentation, You shall require Your end users to execute an agreement binding them to terms, with respect to the Programs and Programs Documentation, materially consistent and no less restrictive than those contained in this section and the sections of this Agreement entitled \"License Rights\" (except that the redistribution right granted to You shall not be included; Your end users may not distribute Programs and Programs Documentation to any third parties), \"Ownership and Restrictions,\" \"Export Controls,\" \"Disclaimer of Warranties and Exclusive Remedies,\" \"No Technical Support\" (with respect to Oracle support; You may provide Your own support for Programs at Your discretion), \"End of Agreement,\" \"Relationship Between the Parties,\" \"Open Source Software,\" and \"U.S. Government End Users.\" You must also include a provision stating that Your end users shall have no right to distribute the Programs and Programs Documentation, and a provision specifying us as a third party beneficiary of the agreement. You are responsible for obtaining these agreements with Your end users.\n\nYou agree to: (a) defend and indemnify us against all claims and damages caused by Your distribution of the Programs and Programs Documentation in breach of this Agreement and/or failure to include the required contractual provisions in Your end user agreement as stated above; (b) keep executed end user agreements and records of end user information including name, address, date of distribution and identity of Programs distributed; (c) allow us to inspect Your end user agreements and records upon request; and, (d) enforce the terms of Your end user agreements so as to effect a timely cure of any end user breach, and to notify us of any breach of the terms.\n\nOwnership\nOracle or its licensors retain all ownership and intellectual property rights to the Programs.\n\nThird-Party Technology \nThe Programs may contain or require the use of third party technology that is provided with the Programs. Oracle may provide certain notices to You in Program Documentation, readmes or notice files in connection with such third party technology. Third party technology will be licensed to You either under the terms of this Agreement or, if specified in the Program Documentation, readmes or notice files, under Separate Terms. Your rights to use Separately Licensed Third Party Technology under Separate Terms are not restricted in any way by this Agreement. However, for clarity, notwithstanding the existence of a notice, third party technology that is not Separately Licensed Third Party Technology shall be deemed part of the Programs and is licensed to You under the terms of this Agreement.\n\nSource Code for Open Source Software \nFor software that You receive from Oracle in binary form that is licensed under an open source license that gives You the right to receive the source code for that binary, You can obtain a copy of the applicable source code from https://oss.oracle.com/sources/ or http://www.oracle.com/goto/opensourcecode. If the source code for such software was not provided to You with the binary, You can also receive a copy of the source code on physical media by submitting a written request pursuant to the instructions in the \"Written Offer for Source Code\" section of the latter website.\n\nExport Controls \nExport laws and regulations of the United States and any other relevant local export laws and regulations apply to the Programs . You agree that such export control laws govern Your use of the Programs (including technical data) and any services deliverables provided under this agreement, and You agree to comply with all such export laws and regulations (including \"deemed export\" and \"deemed re-export\" regulations). You agree that no data, information, program and/or materials resulting from Programs or services (or direct products thereof) will be exported, directly or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation, or development of missile technology. Accordingly, You confirm:\n\nYou will not download, provide, make available or otherwise export or re-export the Programs, directly or indirectly, to countries prohibited by applicable laws and regulations nor to citizens, nationals or residents of those countries.\nYou are not listed on the United States Department of Treasury lists of Specially Designated Nationals and Blocked Persons, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers, nor are You listed on the United States Department of Commerce Table of Denial Orders.\nYou will not download or otherwise export or re-export the Programs, directly or indirectly, to persons on the above mentioned lists.\nYou will not use the Programs for, and will not allow the Programs to be used for, any purposes prohibited by applicable law, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction.\nInformation Collection \nThe Programs\u2019 installation and/or auto-update processes, if any, may transmit a limited amount of data to Oracle or its service provider about those processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. Refer to Oracle\u2019s Privacy Policy at www.oracle.com/privacy.\n\nDisclaimer of Warranties; Limitation of Liability\nTHE PROGRAMS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT .\n\nIN NO EVENT WILL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE\u2019S ENTIRE LIABILITY FOR DAMAGES UNDER THIS AGREEMENT SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000) .\n\nNo Technical Support \nUnless Oracle support for the Programs, if any, is expressly included in a separate, current support agreement between You and Oracle, Oracle\u2019s technical support organization will not provide technical support, phone support, or updates to You for the Programs provided under this Agreement.\n\nAudit; Termination \nOracle may audit Your use of the Programs. You may terminate this Agreement by destroying all copies of the Programs. This Agreement shall automatically terminate without notice if You fail to comply with any of the terms of this Agreement, in which case You shall promptly destroy all copies of the Programs.\n\nU.S. Government End Users \nPrograms and/or Programs Documentation delivered to U.S. Government end users are \"commercial computer software\" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, use, duplication, disclosure, modification, and adaptation of the Programs and/or Programs Documentation shall be subject to the license terms and license restrictions set forth in this Agreement. No other rights are granted to the U.S. Government.\n\nRelationship Between the Parties \nOracle is an independent contractor and we agree that no partnership, joint venture, or agency relationship exists between us. We each will be responsible for paying our own employees, including employment related taxes and insurance.. Nothing in this agreement shall be construed to limit either party's right to independently develop or distribute software that is functionally similar to the other party's products, so long as proprietary information of the other party is not included in such software.\n\nEntire Agreement; Governing Law \nYou agree that this Agreement is the complete agreement for the Programs and this Agreement supersedes all prior or contemporaneous agreements or representations, including any clickwrap, shrinkwrap or similar licenses, or license agreements for prior versions of the Programs. This Agreement may not be modified and the rights and restrictions may not be altered or waived except in a writing signed by authorized representatives of You and of Oracle. If any term of this Agreement is found to be invalid or unenforceable, the remaining provisions will remain effective.\n\nThis Agreement is governed by the substantive and procedural laws of the State of California, USA, and You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco or Santa Clara counties in California in any dispute arising out of or relating to this Agreement.\n\nNotices \nShould you have any questions concerning this License Agreement, or if you desire to contact Oracle for any reason, please write:\n\nOracle America, Inc.\n500 Oracle Parkway \nRedwood City, CA 94065\n\nOracle Employees: Under no circumstances are Oracle Employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, failure to comply with this policy could result in disciplinary action up to and including termination.\n\nLast updated: 11 August 2016", + "json": "otn-dev-dist-2016.json", + "yaml": "otn-dev-dist-2016.yml", + "html": "otn-dev-dist-2016.html", + "license": "otn-dev-dist-2016.LICENSE" + }, + { + "license_key": "otn-early-adopter-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-early-adopter-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle Technology Network Early Adopter License Agreement for Oracle Solaris\n\nOracle is willing to authorize Your access to Oracle Solaris pre-GA software under this License Agreement (\u201cAgreement\u201d) only upon the condition that You accept that this Agreement governs Your use of the pre-GA Oracle Solaris and any updated versions of such pre-GA software. By selecting the \u201cAccept License Agreement\u201d button or box (or the equivalent) or installing or using the Programs You indicate Your acceptance of this Agreement and Your agreement, as an authorized representative of Your company or organization (if being acquired for use by an entity) or as an individual, to comply with the license terms that apply to the software that You wish to download and access. If You are not willing to be bound by this Agreement, do not select the \u201cAccept License Agreement\u201d button or box (or the equivalent) and do not download or access the software.\n\nDefinitions\n\n\"Oracle\" refers to Oracle America, Inc. \"You\" and \"Your\" refers to (a) a company or organization (each an \u201cEntity\u201d) accessing the Programs, if use of the Programs will be on behalf of such Entity; or (b) an individual accessing the Programs, if use of the Programs will not be on behalf of an Entity. \u201cContractors\u201d refers to Your agents and contractors (including, without limitation, outsourcers). \"Program(s)\" refers to Oracle software provided by Oracle pursuant to this Agreement and any updates, error corrections, and/or Program Documentation provided by Oracle. \u201cProgram Documentation\u201d refers to Program user manuals and Program installation manuals, if any. If available, Program Documentation may be delivered with the Programs and/or may be accessed from https://docs.oracle.com/en/ . \u201cSeparate Terms\u201d refers to separate license terms that are specified in the Program Documentation, readmes or notice files and that apply to Separately Licensed Third Party Technology. \u201cSeparately Licensed Third Party Technology\u201d refers to third party technology that is licensed under Separate Terms and not under the terms of this Agreement. \u201cSupplemental Programs\u201d refer to any supplemental Oracle production software as may be provided by Oracle for operation of the Programs. If included, Supplemental Programs are listed in Exhibit A to this Agreement. Programs and any Supplemental Programs are collectively \u201cOracle Technology\u201d. \"License\" refers to Your right to use the Oracle Technology under the terms of this Agreement.\n\nLicense Rights and Restrictions\n\nOracle grants You a revocable, nonexclusive, nontransferable, limited license to internally (a) use three (3) copies of the binary portions of the Oracle Technology, subject to the restrictions stated in this Agreement, solely for the purpose of non-production and non-commercial evaluation and testing of the Oracle Technology, including developing no more than a single prototype of each of Your applications; and (b) if provided by Oracle at its sole discretion, view the source code portions of the Programs internally for the purposes of evaluation and testing only. You may allow Your Contractor(s) to use the Oracle Technology , provided they are acting on Your behalf to exercise license rights granted in this Agreement and further provided that You are responsible for their compliance with this Agreement in such use. You will have a written agreement with Your Contractor(s) that strictly limits their right to use the Oracle Technology and that otherwise protects Oracle\u2019s intellectual property rights to the same extent as this Agreement. You may make copies of the Oracle Technology to the extent reasonably necessary to exercise the license rights granted in this Agreement. The Oracle Technology may be installed on three (3) computers only, and used by Your employees or agents in the operating environment identified by Oracle. You may make one copy of the Oracle Technology for backup purposes.\n\nFurther, You may not:\n\nremove or modify any Oracle Technology markings or any notice of Oracle\u2019s or a licensor\u2019s proprietary rights;\nmake the Oracle Technology available in any manner to any third party (other than Contractors acting on Your behalf as set forth in this Agreement);\nuse the Oracle Technology to provide third party training;\nassign this Agreement or distribute, give, or transfer the Oracle Technology or an interest in them to any third party, except as expressly permitted in this Agreement for Contractors (the foregoing shall not be construed to limit the rights You may otherwise have with respect to Separately Licensed Third Party Technology);\ncause or permit reverse engineering (unless required by law for interoperability), disassembly or decompilation of the Oracle Technology; and\ndisclose results of any Oracle Technology benchmark tests without Oracle\u2019s prior consent.\nThe Oracle Technology may contain source code that, unless expressly licensed in this Agreement for other purposes (for example, licensed under an open source license), is provided solely for reference purposes pursuant to the terms of this Agreement and may not be modified.\n\nAll rights not expressly granted in this Agreement are reserved by Oracle. If You want to use the Oracle Technology or Your application for any purpose other than as expressly permitted under this Agreement, You must obtain from Oracle or an Oracle reseller valid Oracle Technology licenses under a separate agreement permitting such use. However, You acknowledge that the Oracle Technology may not be intended for production use and/or Oracle may not make a version of the Oracle Technology available for production or other purposes; any development or other work You undertake with the Oracle Technology is at Your sole risk.\n\nYou acknowledge that (1) the Programs are not generally available and may have defects, security vulnerabilities, or other deficiencies that may not and/or cannot be corrected by Oracle and are subject to change at Oracle\u2019s sole discretion; and (2) Oracle may not produce a production release version of the Programs and any development efforts undertaken by You are at Your own risk. Oracle may audit Your use of the Oracle Technology.\n\nThe Oracle Technology will either be hosted by Oracle or provided to You. In the event that the Oracle Technology are provided to You in a hosted environment, Oracle may provide certain passwords and/or other access information to enable You to access the Oracle Technology. These passwords and/or access information shall be and are Oracle Confidential Information (as further defined below) under the terms of this agreement and shall be used solely for the purpose of accessing the Oracle Technology for the evaluation and testing purposes described above. Any hosted instance of the Oracle Technology is provided as is and without warranty. Oracle makes no assurances that any data loaded into the hosted instance will be secured or that such data will remain confidential. Further, Oracle, at its discretion, (a) may access, monitor, and/or review Your activity and data in the hosted instance, and (b) may delete Your files within the hosted instance. Accordingly, Oracle advises You not to place any personal information or other production data into the hosted instance. You agree to take all reasonable steps to prevent improper or unauthorized access to or use of the Oracle Technology.\n\nOwnership\n\nOracle or its licensors retain all ownership and intellectual property rights to the Oracle Technology .\n\nThird-Party Technology\n\nThe Oracle Technology may contain or require the use of third party technology that is provided with the Oracle Technology. Oracle may provide certain notices to You in Program Documentation, readmes or notice files in connection with such third party technology. Third party technology will be licensed to You either under the terms of this Agreement or, if specified in the Program Documentation, readmes or notice files, under Separate Terms. Your rights to use Separately Licensed Third Party Technology under Separate Terms are not restricted in any way by this Agreement. However, for clarity, notwithstanding the existence of a notice, third party technology that is not Separately Licensed Third Party Technology shall be deemed part of the Oracle Technology and is licensed to You under the terms of this Agreement.\n\nSource Code for Open Source Software\n\nFor software that you receive from Oracle in binary form that is licensed under an open source license that gives you the right to receive the source code for that binary, you can obtain a copy of the applicable source code from https://oss.oracle.com/sources/ or http://www.oracle.com/goto/opensourcecode. If the source code for such software was not provided to you with the binary, you can also receive a copy of the source code on physical media by submitting a written request pursuant to the instructions in the \"Written Offer for Source Code\" section of the latter website.\n\nFeedback\n\n\u201dFeedback\u201d shall mean any input provided to Oracle, in any manner, regarding Oracle\u2019s products, documentation and/or services, including changes or suggested changes to Oracle\u2019s current or future products, documentation, and/or services, and benchmark test results. You grant to Oracle a worldwide, royalty-free, non-exclusive, perpetual, and irrevocable right to use Feedback for any purpose, including but not limited to, incorporation of such Feedback into the Oracle Technology or other software products without compensation to You. Any Feedback shall be Oracle Confidential Information. You shall not be identified with Feedback if Oracle provides it to a third party.\n\nExport Controls\n\nExport laws and regulations of the United States and any other relevant local export laws and regulations apply to the Oracle Technology . You agree that such export control laws govern Your use of the Oracle Technology (including technical data) and any services deliverables provided under this agreement, and You agree to comply with all such export laws and regulations (including \"deemed export\" and \"deemed re-export\" regulations). You agree that no data, information, program and/or materials resulting from Oracle Technology or services (or direct products thereof) will be exported, directly or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation, or development of missile technology. Accordingly, You confirm:\n\nYou will not download, provide, make available or otherwise export or re-export the Oracle Technology, directly or indirectly, to countries prohibited by applicable laws and regulations nor to citizens, nationals or residents of those countries.\nYou are not listed on the United States Department of Treasury lists of Specially Designated Nationals and Blocked Persons, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers, nor are You listed on the United States Department of Commerce Table of Denial Orders.\nYou will not download or otherwise export or re-export the Oracle Technology, directly or indirectly, to persons on the above mentioned lists.\nYou will not use the Oracle Technology for, and will not allow the Oracle Technology to be used for, any purposes prohibited by applicable law, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction.\nInformation Collection\n\nThe Oracle Technology\u2019s \u2019 installation and/or auto-update processes, if any, may transmit a limited amount of data to Oracle or its service provider about those processes to help Oracle understand and optimize them. Further, the Oracle Technology may collect certain technical information regarding Your use of the Oracle Technology for the purpose of improving the functionality of the Oracle Technology. Except as set forth above with respect to Oracle-hosted instances of the Oracle Technology, Oracle will comply with its Privacy Policy in effect as data collection services are performed, refer to Oracle\u2019s Privacy Policy at http://www.oracle.com/legal/privacy/privacy-policy.html .\n\nOracle Confidential Information\n\n\u201cOracle Confidential Information\u201d includes the Software, any information related to the Software, and Feedback. Oracle Confidential Information shall not include information which: (a) is or becomes a part of the public domain through no act or omission of the other party; or (b) was in the other party\u2019s lawful possession prior to the disclosure and had not been obtained by the other party either directly or indirectly from the disclosing party; or (c) is lawfully disclosed to the other party by a third party without restriction on disclosure; or (d) except for Feedback (defined below), is independently developed by You.\n\nYou agree, both during the term of this Agreement and for a period of three years after termination of this Agreement and of all licenses granted hereunder, to hold Oracle Confidential Information in confidence. You agree not to make Oracle\u2019s Confidential Information available in any form to any unauthorized third parties. You agree to take all reasonable steps to ensure that Confidential Information is not disclosed or distributed by Your employees or agents in violation of the provisions of this Agreement.\n\nDisclaimer of Warranties; Limitation of Liability\n\nTHE ORACLE TECHNOLOGY IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT .\n\nIN NO EVENT WILL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE\u2019S ENTIRE LIABILITY FOR DAMAGES UNDER THIS AGREEMENT SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (USD $1,000) .\n\nNo Technical Support\n\nUnless Oracle support for the Oracle Technology, if any, is expressly included in a separate, current support agreement between You and Oracle, Oracle\u2019s technical support organization will not provide technical support, phone support, or updates to You for the Oracle Technology provided under this Agreement.\n\nAudit; Termination\n\nOracle may audit Your use of the Oracle Technology. You may terminate this Agreement by destroying all copies of the Oracle Technology. This Agreement shall automatically terminate without notice if You fail to comply with any of the terms of this Agreement, in which case You shall promptly destroy all copies of the Oracle Technology.\n\nRelationship Between the Parties \n\nOracle is an independent contractor and we agree that no partnership, joint venture, or agency relationship exists between us. We each will be responsible for paying our own employees, including employment related taxes and insurance.. Nothing in this agreement shall be construed to limit either party's right to independently develop or distribute software that is functionally similar to the other party's products, so long as proprietary information of the other party is not included in such software.\n\nEntire Agreement; Governing Law\n\nYou agree that this Agreement is the complete agreement for the Oracle Technology and this Agreement supersedes all prior or contemporaneous agreements or representations, including any clickwrap, shrinkwrap or similar licenses, or license agreements for prior versions of the Oracle Technology This Agreement may not be modified and the rights and restrictions may not be altered or waived except in a writing signed by authorized representatives of You and of Oracle. If any term of this Agreement is found to be invalid or unenforceable, the remaining provisions will remain effective.\n\nThis Agreement is governed by the substantive and procedural laws of the State of California, USA, and You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco or Santa Clara counties in California in any dispute arising out of or relating to this Agreement.\n\nNotices\n\nShould you have any questions concerning this License Agreement, or if you desire to contact Oracle for any reason, please write:\n\nOracle America, Inc.\n500 Oracle Parkway\nRedwood City, CA 94065\n\nOracle Employees: Under no circumstances are Oracle Employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, failure to comply with this policy could result in disciplinary action up to and including termination.\n\nLast updated: 17 January 2018", + "json": "otn-early-adopter-2018.json", + "yaml": "otn-early-adopter-2018.yml", + "html": "otn-early-adopter-2018.html", + "license": "otn-early-adopter-2018.LICENSE" + }, + { + "license_key": "otn-early-adopter-development", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-early-adopter-development", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle Technology Network Early Adopter Development License Agreement\n\nEXPORT CONTROLS\nExport laws and regulations of the United States and any other relevant local export laws and regulations apply to the Oracle Technology. You agree that such export control laws govern your use of the Oracle Technology (including technical data) and any services deliverables provided under this agreement, and you agree to comply with all such export laws and regulations (including \"deemed export\" and \"deemed re-export\" regulations). You agree that no data, information, program and/or materials resulting from services (or direct product thereof) will be exported, directly or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation, or development of missile technology.\n\nAccordingly, you confirm:\n\n-You will not download, provide, make available or otherwise export or re-export the Oracle Technology, directly or indirectly, to countries prohibited by applicable laws and regulations nor to citizens, nationals or residents of those countries.\n\n-You are not listed on the United States Department of Treasury lists of Specially Designated Nationals and Blocked Persons, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers, nor are you listed on the United States Department of Commerce Table of Denial Orders.\n\n- You will not download or otherwise export or re-export the Oracle Technology, directly or indirectly, to persons on the above mentioned lists.\n\n- You will not use the Oracle Technology for, and will not allow the Oracle Technology to be used for, any purposes prohibited by applicable law, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction.\n\nOracle Employees: Under no circumstances are Oracle Employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, failure to comply with this policy could result in disciplinary action up to and including termination.\n\n \n\nNote: You are bound by the Oracle Technology Network (\"OTN\") Early Adopter Development License Agreement (\"OTN License Agreement\") terms. The OTN License Agreement terms also apply to all updates You receive under Your Technology Track subscription.\n\nThe OTN License Agreement terms below supercede any shrinkwrap license on the OTN Technology Track software CDs and previous OTN License terms (including the Oracle Program License as modified by the OTN Program Use Certificate).\n\nPLEASE READ THE FOLLOWING LICENSE AGREEMENT TERMS AND CONDITIONS CAREFULLY BEFORE ACCESSING, DOWNLOADING, INSTALLING OR USING THE ORACLE TECHNOLOGY. THESE TERMS AND CONDITIONS CONSTITUTE A LEGAL AGREEMENT BETWEEN YOU AND ORACLE .\n\nOracle Technology Network Early Adopter Development License Agreement\n\n\"Oracle,\" We,\" \"Us,\" and \"Our\" refers to Oracle America, Inc., for and on behalf of itself and its subsidiaries and affiliates under common control. \"You\" and \"Your\" refers to the individual or entity, for which you are an authorized representative with full authority to enter into this agreement on behalf of, that wishes to use the Programs. \"Programs\" refers to the pre-production version of the Oracle software product You wish to access and use or download and use, including program documentation, if any. \"Supplemental Programs\" refer to any supplemental Oracle production software as may be provided by Oracle for operation of the Programs. If included, Supplemental Programs are listed in Exhibit A to this Agreement. Programs and any Supplemental Programs are collectively \"Oracle Technology\". \"License\" refers to Your right to use the Oracle Technology under the terms of this license agreement. \"Oracle Confidential Information\" includes the Software, any information related to the Software and Feedback. Oracle Confidential Information shall not include information which: (a) is or becomes a part of the public domain through no act or omission of the other party; or (b) was in the other party\u2019s lawful possession prior to the disclosure and had not been obtained by the other party either directly or indirectly from the disclosing party; or (c) is lawfully disclosed to the other party by a third party without restriction on disclosure; or (d) except for Feedback, is independently developed by You. You agree, both during the term of this Agreement and for a period of three years after termination of this Agreement and of all licenses granted hereunder, to hold Oracle\u2019s Confidential Information in confidence. You agree not to make Oracle\u2019s Confidential Information available in any form to any unauthorized third parties. Company agrees to take all reasonable steps to ensure that Confidential Information is not disclosed or distributed by its employees or agents in violation of the provisions of this Agreement.\n\nThis agreement is governed by California law, except for that body of laws related to the conflict of laws. You agree to submit to the exclusive jurisdiction of, and venue in, the courts located in San Francisco or Santa Clara counties in California in any dispute arising out of or relating to this agreement or the Oracle Technology.\n\nIn order to use the Oracle Technology, You must first agree to the license terms below by selecting the \"Accept License Agreement\" (or the equivalent) button below. If You do not or cannot agree to these license terms, You are not permitted to access, download or use the Oracle Technology.\n\nLicense Rights\nWe grant You a revocable, nonexclusive, nontransferable, royalty-free and limited right to (a) use one (1) copy of the binary portions of the Programs and any Supplemental Programs for the sole purpose of internal non-production and non-commercial evaluation and testing of the Programs, including, developing no more than a single prototype of each of Your applications; and (b) if provided by Us at our sole discretion, view the source code portions of the Programs internally for the purposes of evaluation and testing only (collectively, \"Authorized Use\").\n\nAll rights not expressly granted above are hereby reserved. If You want to use the Oracle Technology for any purpose other than as permitted under this agreement, including but not limited to distribution of the Oracle Technology or the application You develop or any use of the Oracle Technology or the application You develop for Your internal business purposes (other than the Authorized Use), You must obtain a valid Oracle license permitting such use.\n\nYou acknowledge that (1) the Programs are not generally available and may have defects, security vulnerabilities, or other deficiencies that may not and/or cannot be corrected by Us and are subject to change at Our sole discretion; and (2) We may not produce a production release version of the Programs and any development efforts undertaken by You are at Your own risk. We may audit Your use of the Oracle Technology.\n\nThe Oracle Technology will either be hosted by Oracle or provided to You. In the event that the Oracle Technology are provided to You in a hosted environment, Oracle may provide certain passwords and/or other access information to enable You to access the Oracle Technology. These passwords and/or access information shall be and are Oracle Confidential Information under the terms of this agreement and shall be used solely for the purpose of accessing the Oracle Technology for the evaluation and testing purposes described above. Any hosted instance of the Oracle Technology is provided as is and without warranty. Oracle makes no assurances that any data loaded into the hosted instance will be secured or that such data will remain confidential. Further, Oracle, at its discretion, (a) may access, monitor, and/or review Your activity and data in the hosted instance, and (b) may delete Your files within the hosted instance. Accordingly, Oracle advises You not to place any personal information or other production data into the hosted instance. You agree to take all reasonable steps to prevent improper or unauthorized access to or use of the Oracle Technology.\n\nCollection of Information\n\nThe Oracle Technology may collect certain technical information regarding Your use of the Oracle Technology for the purpose of improving the functionality of the Oracle Technology. Except as set forth above with respect to Oracle-hosted instances of the Oracle Technology, Oracle will comply with its Privacy Policy in effect as data collection services are performed, which is available at http://www.oracle.com/us/legal/privacy/index.html.\n\nOwnership and Restrictions\nWe retain all ownership and intellectual property rights in the Oracle Technology. The Oracle Technology may be accessed from the hosted environment or if the Oracle Technology are provided to You, the Oracle Technology may be installed on one computer only, and used by Your employees in the operating environment identified by Us. You may make one copy of the Oracle Technology for backup purposes.\n\nThe license grant set forth above is subject to the following additional specific agreements and covenants:\n\n(i) You shall not use the Oracle Technology for training, commercial time-sharing or service bureau use;\n\n(ii) You agree that it will not make copies of the Oracle Technology except for backup purposes;\n\n(iii) You agree not to cause or permit the disassembly, reverse compilation, or reverse engineering of the Oracle Technology, except as otherwise specified by law; and\n\n(iv) You shall not remove any product identification, copyright notices, or other notices or proprietary restrictions from the Oracle Technology.\n\nFeedback\n\n\"Feedback\" shall mean any input provided to Us, in any manner, regarding Oracle\u2019s products, documentation and/or services, including changes or suggested changes to Oracle\u2019s current or future products, documentation, and/or services, and benchmark test results. You grant to Oracle a worldwide, royalty-free, non-exclusive, perpetual, and irrevocable right to use Feedback for any purpose, including but not limited to, incorporation of such Feedback into the Software or other software products without compensation to You. Any Feedback shall be Oracle Confidential Information. Company shall not be identified with Feedback if Oracle provides it to a third party.\n\nExport\nYou agree to comply fully with export laws and regulations of the United States and any other applicable export laws (\"Export Laws\") to assure that neither the Software, Confidential Information nor any direct product thereof are: (1) exported, directly or indirectly, in violation of this Agreement or Export Laws; or (2) used for any purposes prohibited by the Export Laws, including, without limitation, nuclear, chemical, or biological weapons proliferation, or development of missile technology. \n\nDisclaimer of Warranty and Exclusive Remedies\nTHE ORACLE TECHNOLOGY IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, ACCURACY, TIMELINESS OR NONINFRINGEMENT.\n\nIN NO EVENT SHALL WE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. OUR ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).\n\nAdditional Trial Programs\nWe may include additional trial programs with the Programs licensed under this agreement which You download or access in the hosted environment. You will have 30 days from the delivery date or hosted environment access date to evaluate these additional trial programs. Any use of these trial programs after the 30 day trial period requires You to obtain the applicable license. Any additional trial programs are provided \"as is\" and We do not provide technical support or any warranties for these programs.\n\nNo Technical Support\nOur technical support organization will not provide technical support, phone support, or updates to You for the Oracle Technology licensed under this agreement.\n\nEnd of Agreement\nThis agreement, and Your right to use the Programs, will be terminated: (i) automatically upon the general commercial availability of the Programs, or six months from the date You download the Programs, whichever is first to occur, in which case You shall cease using and destroy all copies of the Oracle Technology in Your possession or control; (ii) by You, by ceasing to use and destroying all copies of the Oracle Technology in Your possession or control; or, (iii) by Us if You fail to comply with any of the terms of this agreement, in which case You shall cease using and destroy all copies of the Oracle Technology in Your possession or control.\n\nRelationship Between the Parties\nThe relationship between You and Us is that of licensee/licensor. Neither party will represent that it has any authority to assume or create any obligation, express or implied, on behalf of the other party, nor to represent the other party as agent, employee, franchisee, or in any other capacity. Nothing in this agreement shall be construed to limit either party's right to independently develop or distribute software that is functionally similar to the other party's products, so long as proprietary information of the other party is not included in such software. \n\nThird-Party Technology\n\nThe Oracle Technology may be distributed to You with third party technology or derivatives of third party technology (\"Third Party Technology\"). Oracle may provide certain notices to You in Oracle Technology documentation, readmes or otherwise in connection with such Third Party Technology. \n\nThird Party Technology will be licensed to You either under the terms of this agreement, or, if specified in the Oracle Technology documentation, readme files or otherwise, under separate license terms (\"Separate Terms\") and not under the terms of this agreement (\"Separately Licensed Third Party Technology\"). Your rights to use such Separately Licensed Third Party Technology under the Separate Terms are not restricted or modified in any way by this agreement.\n\nEntire Agreement\nYou agree that this agreement is the complete agreement for the Oracle Technology and licenses, and, except as may be expressly set forth in Exhibit A, this agreement supersedes all prior or contemporaneous agreements or representations, including any clickwrap, shrinkwrap or similar licenses. If any term of this agreement is found to be invalid or unenforceable, the remaining provisions will remain effective.\n\nLast updated: 19 April 2013\n\nShould You have any questions concerning this License Agreement, or if You desire to contact Oracle for any reason, please write: \nOracle America, Inc. \n500 Oracle Parkway, \nRedwood City, CA 94065\n\nOracle may contact You to ask if You had a satisfactory experience installing and using this software download and/or accessing and using the hosted environment.", + "json": "otn-early-adopter-development.json", + "yaml": "otn-early-adopter-development.yml", + "html": "otn-early-adopter-development.html", + "license": "otn-early-adopter-development.LICENSE" + }, + { + "license_key": "otn-standard-2014-09", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-standard-2014-09", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oracle Technology Network License Agreement\n\nOracle is willing to authorize Your access to software associated with this License Agreement (\u201cAgreement\u201d) only upon the condition that You accept that this Agreement governs Your use of the software. By selecting the \u201cAccept License Agreement\u201d button or box (or the equivalent) or installing or using the Programs You indicate Your acceptance of this Agreement and Your agreement, as an authorized representative of Your company or organization (if being acquired for use by an entity) or as an individual, to comply with the license terms that apply to the software that You wish to download and access. If You are not willing to be bound by this Agreement, do not select the \u201cAccept License Agreement\u201d button or box (or the equivalent) and do not download or access the software.\n\nDefinitions\n\"Oracle\" refers to Oracle America, Inc. \"You\" and \"Your\" refers to (a) a company or organization (each an \u201cEntity\u201d) accessing the Programs, if use of the Programs will be on behalf of such Entity; or (b) an individual accessing the Programs, if use of the Programs will not be on behalf of an Entity. \u201cContractors\u201d refers to Your agents and contractors (including, without limitation, outsourcers). \"Program(s)\" refers to Oracle software provided by Oracle pursuant to this Agreement and any updates, error corrections, and/or Program Documentation provided by Oracle. \u201cProgram Documentation\u201d refers to Program user manuals and Program installation manuals, if any. If available, Program Documentation may be delivered with the Programs and/or may be accessed from www.oracle.com/documentation. \u201cSeparate Terms\u201d refers to separate license terms that are specified in the Program Documentation, readmes or notice files and that apply to Separately Licensed Third Party Technology. \u201cSeparately Licensed Third Party Technology\u201d refers to third party technology that is licensed under Separate Terms and not under the terms of this Agreement.\n\nLicense Rights and Restrictions\nOracle grants You a nonexclusive, nontransferable, limited license to internally use the Programs, subject to the restrictions stated in this Agreement, only for the purpose of developing, testing, prototyping, and demonstrating Your application and only as long as Your application has not been used for any data processing, business, commercial, or production purposes, and not for any other purpose. You may allow Your Contractor(s) to use the Programs, provided they are acting on Your behalf to exercise license rights granted in this Agreement and further provided that You are responsible for their compliance with this Agreement in such use. You will have a written agreement with Your Contractor(s) that strictly limits their right to use the Programs and that otherwise protects Oracle\u2019s intellectual property rights to the same extent as this Agreement. You may make copies of the Programs to the extent reasonably necessary to exercise the license rights granted in this Agreement. You may make one copy of the Programs for backup purposes.\n\nFurther, You may not:\n\n remove or modify any Program markings or any notice of Oracle\u2019s or a licensor\u2019s proprietary rights;\n make the Programs available in any manner to any third party (other than Contractors acting on Your behalf as set forth in this Agreement);\n use the Programs to provide third party training;\n assign this Agreement or distribute, give, or transfer the Programs or an interest in them to any third party, except as expressly permitted in this Agreement for Contractors (the foregoing shall not be construed to limit the rights You may otherwise have with respect to Separately Licensed Third Party Technology);\n cause or permit reverse engineering (unless required by law for interoperability), disassembly or decompilation of the Programs; and\n disclose results of any Program benchmark tests without Oracle\u2019s prior consent.\n\nThe Programs may contain source code that, unless expressly licensed in this Agreement for other purposes (for example, licensed under an open source license), is provided solely for reference purposes pursuant to the terms of this Agreement and may not be modified.\n\nAll rights not expressly granted in this Agreement are reserved by Oracle. If You want to use the Programs or Your application for any purpose other than as expressly permitted under this Agreement, You must obtain from Oracle or an Oracle reseller a valid Programs license under a separate agreement permitting such use. However, You acknowledge that the Programs may not be intended for production use and/or Oracle may not make a version of the Programs available for production or other purposes; any development or other work You undertake with the Programs is at Your sole risk.\n\nOwnership\nOracle or its licensors retain all ownership and intellectual property rights to the Programs.\n\nThird-Party Technology\nThe Programs may contain or require the use of third party technology that is provided with the Programs. Oracle may provide certain notices to You in Program Documentation, readmes or notice files in connection with such third party technology. Third party technology will be licensed to You either under the terms of this Agreement or, if specified in the Program Documentation, readmes or notice files, under Separate Terms. Your rights to use Separately Licensed Third Party Technology under Separate Terms are not restricted in any way by this Agreement. However, for clarity, notwithstanding the existence of a notice, third party technology that is not Separately Licensed Third Party Technology shall be deemed part of the Programs and is licensed to You under the terms of this Agreement.\n\nSource Code for Open Source Software\nFor software that you receive from Oracle in binary form that is licensed under an open source license that gives you the right to receive the source code for that binary, you can obtain a copy of the applicable source code from https://oss.oracle.com/sources/ or http://www.oracle.com/goto/opensourcecode. If the source code for such software was not provided to you with the binary, you can also receive a copy of the source code on physical media by submitting a written request pursuant to the instructions in the \"Written Offer for Source Code\" section of the latter website.\n\nExport Controls\nExport laws and regulations of the United States and any other relevant local export laws and regulations apply to the Programs . You agree that such export control laws govern Your use of the Programs (including technical data) and any services deliverables provided under this agreement, and You agree to comply with all such export laws and regulations (including \"deemed export\" and \"deemed re-export\" regulations). You agree that no data, information, program and/or materials resulting from Programs or services (or direct products thereof) will be exported, directly or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation, or development of missile technology. Accordingly, You confirm:\n\n You will not download, provide, make available or otherwise export or re-export the Programs, directly or indirectly, to countries prohibited by applicable laws and regulations nor to citizens, nationals or residents of those countries.\n You are not listed on the United States Department of Treasury lists of Specially Designated Nationals and Blocked Persons, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers, nor are You listed on the United States Department of Commerce Table of Denial Orders.\n You will not download or otherwise export or re-export the Programs, directly or indirectly, to persons on the above mentioned lists.\n You will not use the Programs for, and will not allow the Programs to be used for, any purposes prohibited by applicable law, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction.\n\nInformation Collection\nThe Programs\u2019 installation and/or auto-update processes, if any, may transmit a limited amount of data to Oracle or its service provider about those processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. Refer to Oracle\u2019s Privacy Policy at www.oracle.com/privacy.\n\nDisclaimer of Warranties; Limitation of Liability\nTHE PROGRAMS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT .\n\nIN NO EVENT WILL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE\u2019S ENTIRE LIABILITY FOR DAMAGES UNDER THIS AGREEMENT SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000) .\n\nNo Technical Support\nUnless Oracle support for the Programs, if any, is expressly included in a separate, current support agreement between You and Oracle, Oracle\u2019s technical support organization will not provide technical support, phone support, or updates to You for the Programs provided under this Agreement.\n\nAudit; Termination\nOracle may audit Your use of the Programs. You may terminate this Agreement by destroying all copies of the Programs. This Agreement shall automatically terminate without notice if You fail to comply with any of the terms of this Agreement, in which case You shall promptly destroy all copies of the Programs.\n\nRelationship Between the Parties\nOracle is an independent contractor and we agree that no partnership, joint venture, or agency relationship exists between us. We each will be responsible for paying our own employees, including employment related taxes and insurance.. Nothing in this agreement shall be construed to limit either party's right to independently develop or distribute software that is functionally similar to the other party's products, so long as proprietary information of the other party is not included in such software.\n\nEntire Agreement; Governing Law\nYou agree that this Agreement is the complete agreement for the Programs and this Agreement supersedes all prior or contemporaneous agreements or representations, including any clickwrap, shrinkwrap or similar licenses, or license agreements for prior versions of the Programs. This Agreement may not be modified and the rights and restrictions may not be altered or waived except in a writing signed by authorized representatives of You and of Oracle. If any term of this Agreement is found to be invalid or unenforceable, the remaining provisions will remain effective.\n\nThis Agreement is governed by the substantive and procedural laws of the State of California, USA, and You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco or Santa Clara counties in California in any dispute arising out of or relating to this Agreement.\n\nNotices\nShould you have any questions concerning this License Agreement, or if you desire to contact Oracle for any reason, please write:\n\nOracle America, Inc.\n500 Oracle Parkway\nRedwood City, CA 94065\n\nOracle Employees : Under no circumstances are Oracle Employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, failure to comply with this policy could result in disciplinary action up to and including termination.\n\nLast updated: 09 September 2014", + "json": "otn-standard-2014-09.json", + "yaml": "otn-standard-2014-09.yml", + "html": "otn-standard-2014-09.html", + "license": "otn-standard-2014-09.LICENSE" + }, + { + "license_key": "owal-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-owal-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OPERA Web Applications License Version 1.0\n\u00a9 Copyright 2006 Opera Software ASA. All rights reserved.\nOPERA SOFTWARE ASA (\"OPERA\") IS WILLING TO PERMIT USE OF THIS SOFTWARE\nBY YOU, ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS\nCONTAINED IN THIS DOCUMENT. PLEASE READ THE TERMS AND CONDITIONS OF THIS\nAGREEMENT CAREFULLY. IF YOU ARE NOT WILLING TO BE BOUND, YOU ARE NOT\nALLOWED TO ACCESS THE CONTENTS OF, STUDY OR MAKE USE OF THE SOFTWARE IN\nANY WAY.\n\nTerms of Agreement\n\n1.Definitions\n a)\"Original Code\" means:\n The original version of the program accompanying this Agreement as\n released by Opera Software ASA (\"OPERA\"), including source code, object\n code and documentation, if any.\n b)\"Covered Code\" means:\n The Original Source Code, Contributions, the combination of the Original\n Code and Contributions, and/or any respective portions thereof.\n c)\"Contribution\" means:\n in the case of OPERA, the Original Code, and\n in the case of each Contributor, changes to the Original code, and\n additions to the Original Code; where such changes and/or additions to\n the Original Code originate from and are distributed by that particular\n Contributor. A Contribution 'originates' from a Contributor if it was\n added to the Original Code by such Contributor itself or anyone acting\n on such Contributor's behalf.\n Contributions do not include additions to the Original Code which: (i)\n are separate modules of software distributed in conjunction with the\n Original Code under their own license agreement, and (ii) are not\n derivative works of the Original Code.\n d)\"Contributor\" means:\n OPERA and any other entity that distributes the Covered Code.\n e)\"Recipient\" means:\n Anyone who receives the Covered Code under this Agreement, including all\n Contributors.\n f)\"Larger Work\" means:\n A work which combines Covered Code or portions thereof with code not\n governed by the terms of this Agreement, specifically additions to the\n Original Code which: (i) are separate modules of software distributed in\n conjunction with the Original Code under their own license agreement,\n and (ii) are not derivative works of the Original Code.\n2.Grant of Rights\n a)Subject to the terms of this Agreement, each Contributor hereby grants\n Recipient a non-exclusive, worldwide, royalty-free copyright license to\n reproduce, prepare derivative works of, publicly display, publicly\n perform, distribute and sublicense the Contribution of such Contributor,\n if any, and such derivative works, in source code and object code form.\n The limited license granted in this Section is only for the integration\n of the Contribution with or for the use of the Contribution in\n connection with other proprietary software of OPERA, including but not\n limited to OPERA\u2019s browser software.\n b)Recipient understands that although each Contributor grants the\n licenses to its Contributions set forth herein, no assurances are\n provided by any Contributor that the Covered Code does not infringe the\n patent or other intellectual property rights of any other entity. Each\n Contributor disclaims any liability to Recipient for claims brought by\n any other entity based on infringement of intellectual property rights\n or otherwise. As a condition to exercising the rights and licenses\n granted hereunder, each Recipient hereby assumes sole responsibility to\n secure any other intellectual property rights needed, if any.\n c)Each Contributor represents that to its knowledge it has sufficient\n copyright rights in its Contribution, if any, to grant the copyright\n license set forth in this Agreement.\n d)Except as expressly stated in this Agreement, no other rights or\n licenses, express or implied, are granted by OPERA herein, including but\n not limited to any rights to trademarks, service marks or logos\n belonging to OPERA, OPERA\u2019s suppliers or to any Contributor.\n\n3.Requirements\n a)A Contributor may choose to distribute the Larger Work under its own\n license agreement, provided that:\n 1.it complies with the terms and conditions of this Agreement;\n 2.and its license agreement:\n 1.effectively disclaims on behalf of all Contributors all warranties and\n conditions, express and implied, including warranties or conditions of\n title and non-infringement, and implied warranties or conditions of\n merchantability and fitness for a particular purpose;\n 2.effectively excludes on behalf of all Contributors all liability for\n damages, including direct, indirect, special, incidental and\n consequential damages, such as lost profits;\n 3.states that any provisions which differ from this Agreement are\n offered by that Contributor alone and not by any other party;\n 4.states that the Contribution only may be integrated with or used with\n other proprietary software of OPERA, including but not limited to\n OPERA\u2019s browser software.\n 5.and states that source code for the Covered Code is available from\n such Contributor, and informs licensees how to obtain it in a reasonable\n manner on or through a medium customarily used for software exchange.\n b)When the Covered Code is made available:\n 1. it must be made available under this Agreement; and a copy of this\n Agreement must be included with each copy of the Covered Code.\n 2.Each Contributor must duplicate, to the extent it does not already\n exist, the notice in Exhibit A in each file of the Covered Code of all\n Contributions, and cause the modified files to carry prominent notices\n stating that the contributor changed the files and the date of any\n change.\n 3.In addition, each Contributor must identify itself as the originator\n of its Contribution, if any, in a manner that reasonably allows\n subsequent Recipients to identify the originator of the Contribution.\n\n4.No Warranty\n EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE COVERED CODE IS\n PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY\n WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR\n FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible\n for determining the appropriateness of using and distributing the\n Covered Code for commercial and non-commercial purposes and assumes all\n risks associated with its exercise of rights under this Agreement,\n including but not limited to the risks and costs of Covered Code errors,\n compliance with applicable laws, damage to or loss of data, code or\n equipment, and unavailability or interruption of operations.\n5.Disclaimer of Liability\n EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR\n ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING\n WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR\n DISTRIBUTION OF THE COVERED CODE OR THE EXERCISE OF ANY RIGHTS GRANTED\n HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n6. General\n If any provision of this Agreement is invalid or unenforceable under\n applicable law, it shall not affect the validity or enforceability of\n the remainder of the terms of this Agreement, and without further action\n by the parties hereto, such provision shall be reformed to the minimum\n extent necessary to make such provision valid and enforceable.\n\n All Recipient's rights under this Agreement shall terminate if it fails\n to comply with any of the material terms or conditions of this Agreement\n and does not cure such failure in a reasonable period of time after\n becoming aware of such noncompliance. If all Recipient's rights under\n this Agreement terminate, Recipient agrees to cease use and distribution\n of the Covered Code as soon as reasonably practicable. However,\n Recipient's obligations under this Agreement and any licenses granted by\n Recipient relating to the Covered Code shall continue and survive.\n\n OPERA may publish new versions (including revisions) of this Agreement\n from time to time. Each new version of the Agreement will be given a\n distinguishing version number. The Covered Code (including\n Contributions) may always be distributed subject to the version of the\n Agreement under which it was received. In addition, after a new version\n of the Agreement is published, Contributor may elect to distribute the\n Covered Code (including its Contributions) under the new version. No one\n other than OPERA has the right to modify this Agreement. Except as\n expressly stated in Section 2(a), Recipient receives no rights or\n licenses to the intellectual property of any Contributor under this\n Agreement, whether expressly, by implication, estoppel or otherwise. All\n rights in the Covered Code not expressly granted under this Agreement\n are reserved.\n\n This Agreement is governed by the laws of Norway. Any and all disputes\n arising out of the rights and obligations in this Agreement shall be\n submitted to ordinary court proceedings. You accept the Oslo City Court\n as legal venue under this Agreement.", + "json": "owal-1.0.json", + "yaml": "owal-1.0.yml", + "html": "owal-1.0.html", + "license": "owal-1.0.LICENSE" + }, + { + "license_key": "owf-cla-1.0-copyright", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-owf-cla-1.0-copyright", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OWF Contributor License Agreement 1.0 - Copyright\nOpen Web Foundation\nContributor License Agreement (CLA 1.0)\n(Copyright Only)\n\n1. The Purpose of this Contributor License Agreement. This CLA sets forth the terms under which I will participate in and contribute to the development of the Specification. Capitalized terms are defined in the CLA\u2019s last section.\n\n2. Copyrights.\n\n2.1. Copyright Grant. I grant to you a perpetual (for the duration of the applicable copyright), worldwide, non-exclusive, no-charge, royalty-free, copyright license, without any obligation for accounting to me, to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, distribute, and implement any Contribution to the full extent of my copyright interest in the Contribution.\n\n2.2. Attribution. As a condition of the copyright grant, you must include an attribution to the Specification in any derivative work you make based on the Specification. That attribution must include, at minimum, the Specification name and version number.3. No Other Rights. Except as specifically set forth in this CLA, no other express or implied patent, trademark, copyright, or other property rights are granted under this CLA, including by implication, waiver, or estoppel.\n\n4. Open Web Foundation Agreement (\"OWFa\") version 1.0 Execution. I acknowledge that the goal of this CLA is to develop a specification that will be subject to the OWFa version 1.0. While I have no legal obligation to execute the OWFa version 1.0 for any version of the specification being developed under this CLA, I agree that the selection and terms of the OWFa version 1.0 will not be subject to negotiation.\n\n5. Antitrust Compliance. I acknowledge that I may compete with other participants, that I am under no obligation to implement the Specification, that each participant is free to develop competing technologies and standards, and that each party is free to license its patent rights to third parties, including for the purpose of enabling competing technologies and standards.\n\n6. Non-Circumvention. I agree that I will not intentionally take or willfully assist any third party to take any action for the purpose of circumventing my obligations under this CLA.\n\n7. Representations, Warranties and Disclaimers. I represent and warrant that 1) I am legally entitled to grant the rights and promises set forth in this CLA and 2) I will not intentionally include any third party materials in any Contribution unless those materials are available under terms that do not conflict with this CLA. IN ALL OTHER RESPECTS MY CONTRIBUTIONS ARE PROVIDED \"AS IS.\" The entire risk as to implementing or otherwise using the Contribution or the Specification is assumed by the implementer and user. Except as stated herein, I expressly disclaim any warranties (express, implied, or otherwise), including implied warranties of merchantability, non-infringement, fitness for a particular purpose, or title, related to the Contribution or the Specification. IN NO EVENT WILL ANY PARTY BE LIABLE TO ANY OTHER PARTY FOR LOST PROFITS OR ANY FORM OF INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER FROM ANY CAUSES OF ACTION OF ANY KIND WITH RESPECT TO THIS CLA, WHETHER BASED ON BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT THE OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Nothing in this CLA requires me to undertake a patent search.\n\n8. Definitions.\n\n8.1. Bound Entities. \u201cBound Entities\u201d means the entity listed below and any entities that the Bound Entity Controls.\n\n8.2. CLA. \u201cCLA\u201d means this document, which sets forth the rights, grants, promises, limitations, conditions, obligations, and disclaimers made available for my Contributions to the particular Specification.\n\n8.3. Contribution. \u201cContribution\u201d means any original work of authorship, including any modifications or additions to an existing work, that I intentionally submit for inclusion in the Specification, which is included in the Specification. For the purposes of this definition, \u201csubmit\u201d means any form of electronic, oral, or written communication for the purpose of discussing and improving the Specification, but excluding communication that I conspicuously designate in writing as not a contribution.\n\n8.4. Control. \u201cControl\u201d means direct or indirect control of more than 50% of the voting power to elect directors of that corporation, or for any other entity, the power to direct management of such entity.\n\n8.5. I, Me, or My. \u201cI,\u201d \u201cme,\u201d or \u201cmy\u201d refers to the signatory below and its Bound Entities, if applicable.\n\n8.6. Specification. \u201cSpecification\u201d means the Specification identified below as of the date of my last Contribution.\n\n8.7. You or Your. \u201cYou,\u201d \u201cyou,\u201d or \u201cyour\u201d means any person or entity who exercises copyright rights granted under this CLA, and any person or entity you Control.", + "json": "owf-cla-1.0-copyright.json", + "yaml": "owf-cla-1.0-copyright.yml", + "html": "owf-cla-1.0-copyright.html", + "license": "owf-cla-1.0-copyright.LICENSE" + }, + { + "license_key": "owf-cla-1.0-copyright-patent", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-owf-cla-1.0-copyright-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OWF Contributor License Agreement 1.0 - Copyright and Patent\nOpen Web Foundation\nContributor License Agreement (CLA 1.0)\n(Patent and Copyright Grants)\n\n1. The Purpose of this Contributor License Agreement. This CLA sets forth the terms under which I will participate in and contribute to the development of the Specification. Capitalized terms are defined in the CLA\u2019s last section.\n\n2. Copyrights.\n\n2.1. Copyright Grant. I grant to you a perpetual (for the duration of the applicable copyright), worldwide, non-exclusive, no-charge, royalty-free, copyright license, without any obligation for accounting to me, to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, distribute, and implement any Contribution to the full extent of my copyright interest in the Contribution.\n\n2.2. Attribution. As a condition of the copyright grant, you must include an attribution to the Specification in any derivative work you make based on the Specification. That attribution must include, at minimum, the Specification name and version number. \n\n3. Patents.\n\n3.1. Patent Non-Assert.\n\n3.1.1. The Promise. I, on behalf of myself and my successors in interest and assigns, irrevocably promise not to assert my Granted Claims against you for your Permitted Uses, subject to the terms and conditions of Section 3.1. This is a personal promise directly from me to you, and you acknowledge as a condition of benefiting from it that no rights from me are received from suppliers, distributors, or otherwise in connection with this promise. This promise also applies to your Permitted Uses of any other specifications incorporating all required portions of the Specification.\n\n3.1.2. Termination.\n\n3.1.2.1. As a Result of Claims by You. All rights, grants, and promises made by me to you under this CLA are terminated if you file, maintain, or voluntarily participate in a lawsuit against me or any person or entity asserting that its Permitted Uses infringe any Granted Claims you would have had the right to enforce had you signed this CLA, unless that suit was in response to a corresponding suit first brought against you.\n\n3.1.2.2. As a Result of Claims by a Related Entity of Mine. If a Related Entity of mine files, maintains, or voluntarily participates in a lawsuit asserting that a Permitted Use infringes any Granted Claims it would have had the right to enforce had it signed this CLA, then I relinquish any rights, grants, and promises I have received for the Specification from other signatories of this CLA, unless a) my promise to you was terminated pursuant to section 3.1.2.1, or b) that suit was in response to a corresponding suit first brought by you against the Related Entity.\n\n3.1.3. Additional Conditions. This promise is not an assurance (i) that any of my copyrights or issued patent claims cover an implementation of the Specification or are enforceable or (ii) that an implementation of the Specification would not infringe intellectual property rights of any third party. Notwithstanding the personal nature of my promise, this promise is intended to be binding on any future owner, assignee or exclusive licensee who has been given the right to enforce any Granted Claims against third parties.\n\n3.1.4. Bankruptcy. Solely for purposes of Section 365(n) of Title 11, United States Bankruptcy Code and any equivalent law in any foreign jurisdiction, this promise will be treated as if it were a license and you may elect to retain your rights under this promise if I (or any owner of any patents or patent applications referenced herein), as a debtor in possession, or a bankruptcy trustee, reject this non-assert.\n\n3.2. Patent License Commitment. In addition to rights granted in 3.1, on behalf of me and my successors in interest and assigns, I agree to grant to you a no charge, royalty free license to my Granted Claims on reasonable and non-discriminatory terms, where such license applies only to those Granted Claims infringed by the implementation of my Contribution(s) alone or by combination of my Contribution(s) with the Specification, solely for your Permitted Uses.\n\n4. No Other Rights. Except as specifically set forth in this CLA, no other express or implied patent, trademark, copyright, or other property rights are granted under this CLA, including by implication, waiver, or estoppel.\n\n5. Limited Opt-Out. I may withdraw my Contribution by providing written notice of that withdrawal within 45 days of submitting that Contribution. Notice of a Contribution withdrawal must be made, at minimum, in writing using the same communication mechanisms that were used to submit the corresponding Contribution and must include the exact material being withdrawn. Upon providing such valid notice, any obligations I incurred under this CLA for that particular identified Contribution will be null and void.\n\n6. Open Web Foundation Agreement (\"OWFa\") version 1.0 Execution. I acknowledge that the goal of this CLA is to develop a specification that will be subject to the OWFa version 1.0. While I have no legal obligation to execute the OWFa version 1.0 for any version of the specification being developed under this CLA, I agree that the selection and terms of the OWFa version 1.0 will not be subject to negotiation.\n\n7. Antitrust Compliance. I acknowledge that I may compete with other participants, that I am under no obligation to implement the Specification, that each participant is free to develop competing technologies and standards, and that each party is free to license its patent rights to third parties, including for the purpose of enabling competing technologies and standards.\n\n8. Non-Circumvention. I agree that I will not intentionally take or willfully assist any third party to take any action for the purpose of circumventing my obligations under this CLA.\n\n9. Representations, Warranties and Disclaimers. I represent and warrant that 1) I am legally entitled to grant the rights and promises set forth in this CLA and 2) I will not intentionally include any third party materials in any Contribution unless those materials are available under terms that do not conflict with this CLA. IN ALL OTHER RESPECTS MY CONTRIBUTIONS ARE PROVIDED \"AS IS.\" The entire risk as to implementing or otherwise using the Contribution or the Specification is assumed by the implementer and user. Except as stated herein, I expressly disclaim any warranties (express, implied, or otherwise), including implied warranties of merchantability, non-infringement, fitness for a particular purpose, or title, related to the Contribution or the Specification. IN NO EVENT WILL ANY PARTY BE LIABLE TO ANY OTHER PARTY FOR LOST PROFITS OR ANY FORM OF INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER FROM ANY CAUSES OF ACTION OF ANY KIND WITH RESPECT TO THIS CLA, WHETHER BASED ON BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT THE OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. All of my obligations under Section 3 regarding the transfer, successors in interest, or assignment of Granted Claims will be satisfied if I notify the transferee or assignee of any patent that I know contains Granted Claims of the obligations under Section 3. Nothing in this CLA requires me to undertake a patent search.\n\n10. Definitions.\n\n10.1. Bound Entities. \u201cBound Entities\u201d means the entity listed below and any entities that the Bound Entity Controls.\n\n10.2. CLA. \u201cCLA\u201d means this document, which sets forth the rights, grants, promises, limitations, conditions, obligations, and disclaimers made available for my Contributions to the particular Specification.\n\n10.3. Contribution. \u201cContribution\u201d means any original work of authorship, including any modifications or additions to an existing work, that I intentionally submit for inclusion in the Specification, which is included in the Specification. For the purposes of this definition, \u201csubmit\u201d means any form of electronic, oral, or written communication for the purpose of discussing and improving the Specification, but excluding communication that I conspicuously designate in writing as not a contribution.\n\n10.4. Control. \u201cControl\u201d means direct or indirect control of more than 50% of the voting power to elect directors of that corporation, or for any other entity, the power to direct management of such entity.\n\n10.5. Granted Claims. \"Granted Claims\" are those patent claims that I own or control, including those patent claims I acquire or control after the Date below, that are infringed by Permitted Uses. Granted Claims include only those patent claims that are infringed by the implementation of any portions of the Specification where the Specification describes the functionality causing the infringement in detail and does not merely reference the functionality causing the infringement. Granted Claims under this CLA exclude those patent claims that would be infringed by an implementation of the Specification if my Contribution to that Specification were removed.\n\n10.6. I, Me, or My. \u201cI,\u201d \u201cme,\u201d or \u201cmy\u201d refers to the signatory below and its Bound Entities, if applicable.\n\n10.7. Permitted Uses. \u201cPermitted Uses\u201d means making, using, selling, offering for sale, importing or distributing any implementation of the Specification 1) only to the extent it implements the Specification and 2) so long as all required portions of the Specification are implemented. Permitted Uses do not extend to any portion of an implementation that is not included in the Specification.\n\n10.8. Related Entities. \u201cRelated Entities\u201d means 1) any entity that Controls the Bound Entity (\u201cUpstream Entity\u201d), and 2) any other entity that is Controlled by an Upstream Entity that is not itself a Bound Entity.\n\n10.9. Specification. \u201cSpecification\u201d means the Specification identified below as of the date of my last Contribution.\n\n10.10. You or Your. \u201cYou,\u201d \u201cyou,\u201d or \u201cyour\u201d means any person or entity who exercises copyright or patent rights granted under this CLA, and any person or entity you Control.", + "json": "owf-cla-1.0-copyright-patent.json", + "yaml": "owf-cla-1.0-copyright-patent.yml", + "html": "owf-cla-1.0-copyright-patent.html", + "license": "owf-cla-1.0-copyright-patent.LICENSE" + }, + { + "license_key": "owfa-1-0-patent-only", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-owfa-1.0-patent-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OWFa 1.0 - Patent Only\nOpen Web Foundation\nFinal Specification Agreement (OWFa 1.0)\n(Patent Only)\n\n1. The Purpose of this Agreement. This Agreement sets forth the terms under which I make certain patent rights available to you for your Permitted Uses of the Specification. Capitalized terms are defined in the Agreement\u2019s last section.\n\n2. Patents.\n\n2.1. Patent Non-Assert.\n\n2.1.1. The Promise. I, on behalf of myself and my successors in interest and assigns, irrevocably promise not to assert my Granted Claims against you for your Permitted Uses, subject to the terms and conditions of Section 2.1. This is a personal promise directly from me to you, and you acknowledge as a condition of benefiting from it that no rights from me are received from suppliers, distributors, or otherwise in connection with this promise. This promise also applies to your Permitted Uses of any other specifications incorporating all required portions of the Specification.\n\n2.1.2. Termination.\n\n2.1.2.1. As a Result of Claims by You. All rights, grants, and promises made by me to you under this Agreement are terminated if you file, maintain, or voluntarily participate in a lawsuit against me or any person or entity asserting that its Permitted Uses infringe any Granted Claims you would have had the right to enforce had you signed this Agreement, unless that suit was in response to a corresponding suit first brought against you.\n\n2.1.2.2. As a Result of Claims by a Related Entity of Mine. If a Related Entity of mine files, maintains, or voluntarily participates in a lawsuit asserting that a Permitted Use infringes any Granted Claims it would have had the right to enforce had it signed this Agreement, then I relinquish any rights, grants, and promises I have received for the Specification from other signatories of this Agreement, unless a) my promise to you was terminated pursuant to section 2.1.2.1, or b) that suit was in response to a corresponding suit first brought by you against the Related Entity.\n\n2.1.3. Additional Conditions. This promise is not an assurance (i) that any of my copyrights or issued patent claims cover an implementation of the Specification or are enforceable or (ii) that an implementation of the Specification would not infringe intellectual property rights of any third party. Notwithstanding the personal nature of my promise, this promise is intended to be binding on any future owner, assignee or exclusive licensee to whom has been given the right to enforce any Granted Claims against third parties.\n\n2.1.4. Bankruptcy. Solely for purposes of Section 365(n) of Title 11, United States Bankruptcy Code and any equivalent law in any foreign jurisdiction, this promise will be treated as if it were a license and you may elect to retain your rights under this promise if I (or any owner of any patents or patent applications referenced herein), as a debtor in possession, or a bankruptcy trustee, reject this non-assert.\n\n2.2. Patent License Commitment. In addition to rights granted in 2.1, on behalf of me and my successors in interest and assigns, I agree to grant to you a no charge, royalty free license to my Granted Claims on reasonable and non-discriminatory terms, where such license applies only to those Granted Claims infringed by the implementation of the Specification, solely for your Permitted Uses.\n\n3. No Other Rights. Except as specifically set forth in this Agreement, no other express or implied patent, trademark, copyright, or other property rights are granted under this Agreement, including by implication, waiver, or estoppel.\n\n4. Antitrust Compliance. I acknowledge that I may compete with other participants, that I am under no obligation to implement the Specification, that each participant is free to develop competing technologies and standards, and that each party is free to license its patent rights to third parties, including for the purpose of enabling competing technologies and standards.\n\n5. Non-Circumvention. I agree that I will not intentionally take or willfully assist any third party to take any action for the purpose of circumventing my obligations under this Agreement.\n\n6. Representations, Warranties and Disclaimers. I represent and warrant that I am legally entitled to grant the rights and promises set forth in this Agreement. IN ALL OTHER RESPECTS THE SPECIFICATION IS PROVIDED \"AS IS.\" The entire risk as to implementing or otherwise using the Specification is assumed by the implementer and user. Except as stated herein, I expressly disclaim any warranties (express, implied, or otherwise), including implied warranties of merchantability, non-infringement, fitness for a particular purpose, or title, related to the Specification. IN NO EVENT WILL ANY PARTY BE LIABLE TO ANY OTHER PARTY FOR LOST PROFITS OR ANY FORM OF INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER FROM ANY CAUSES OF ACTION OF ANY KIND WITH RESPECT TO THIS AGREEMENT, WHETHER BASED ON BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT THE OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. All of my obligations under Section 2 regarding the transfer, successors in interest, or assignment of Granted Claims will be satisfied if I notify the transferee or assignee of any patent that I know contains Granted Claims of the obligations under Section 2. Nothing in this Agreement requires me to undertake a patent search.\n\n7. Definitions.\n\n7.1. Agreement. \u201cAgreement\u201d means this document, which sets forth the rights, grants, promises, limitations, conditions, obligations, and disclaimers made available for the particular Specification.\n\n7.2. Bound Entities. \u201cBound Entities\u201d means the entity listed below and any entities that the Bound Entity Controls.\n\n7.3. Control. \u201cControl\u201d means direct or indirect control of more than 50% of the voting power to elect directors of that corporation, or for any other entity, the power to direct management of such entity.\n\n7.4. Granted Claims. \"Granted Claims\" are those patent claims that I own or control, including those patent claims I acquire or control after the Date below, that are infringed by Permitted Uses. Granted Claims include only those patent claims that are infringed by the implementation of any portions of the Specification where the Specification describes the functionality causing the infringement in detail and does not merely reference the functionality causing the infringement.\n\n7.5. I, Me, or My. \u201cI,\u201d \u201cme,\u201d or \u201cmy\u201d refers to the signatory below and its Bound Entities, if applicable.\n\n7.6. Permitted Uses. \u201cPermitted Uses\u201d means making, using, selling, offering for sale, importing or distributing any implementation of the Specification 1) only to the extent it implements the Specification and 2) so long as all required portions of the Specification are implemented. Permitted Uses do not extend to any portion of an implementation that is not included in the Specification.\n\n7.7. Related Entities. \u201cRelated Entities\u201d means 1) any entity that Controls the Bound Entity (\u201cUpstream Entity\u201d), and 2) any other entity that is Controlled by an Upstream Entity that is not itself a Bound Entity.\n\n7.8. Specification. \u201cSpecification\u201d means the Specification identified below.\n\n7.9. You or Your. \u201cYou,\u201d \u201cyou,\u201d or \u201cyour\u201d means any person or entity who exercises copyright or patent rights granted under this Agreement, and any person or entity you Control.", + "json": "owfa-1-0-patent-only.json", + "yaml": "owfa-1-0-patent-only.yml", + "html": "owfa-1-0-patent-only.html", + "license": "owfa-1-0-patent-only.LICENSE" + }, + { + "license_key": "owfa-1.0", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-owfa-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OWFa 1.0\nOpen Web Foundation\nFinal Specification Agreement (OWFa 1.0)\n(Patent and Copyright Grants)\n \n1. The Purpose of this Agreement. This Agreement sets forth the terms under which I make certain copyright and patent rights available to you for your Permitted Uses of the Specification. Capitalized terms are defined in the Agreement\u2019s last section.\n\n2. Copyrights.\n \n2.1. Copyright Grant. I grant to you a perpetual (for the duration of the applicable copyright), worldwide, non-exclusive, no-charge, royalty-free, copyright license, without any obligation for accounting to me, to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, distribute, and implement the Specification to the full extent of my copyright interest in the Specification.\n \n2.2. Attribution. As a condition of the copyright grant, you must include an attribution to the Specification in any derivative work you make based on the Specification. That attribution must include, at minimum, the Specification name and version number.\n \n3. Patents.\n \n3.1. Patent Non-Assert.\n \n3.1.1. The Promise. I, on behalf of myself and my successors in interest and assigns, irrevocably promise not to assert my Granted Claims against you for your Permitted Uses, subject to the terms and conditions of Section 3.1. This is a personal promise directly from me to you, and you acknowledge as a condition of benefiting from it that no rights from me are received from suppliers, distributors, or otherwise in connection with this promise. This promise also applies to your Permitted Uses of any other specifications incorporating all required portions of the Specification.\n \n3.1.2. Termination.\n \n3.1.2.1. As a Result of Claims by You. All rights, grants, and promises made by me to you under this Agreement are terminated if you file, maintain, or voluntarily participate in a lawsuit against me or any person or entity asserting that its Permitted Uses infringe any Granted Claims you would have had the right to enforce had you signed this Agreement, unless that suit was in response to a corresponding suit first brought against you.\n \n3.1.2.2. As a Result of Claims by a Related Entity of Mine. If a Related Entity of mine files, maintains, or voluntarily participates in a lawsuit asserting that a Permitted Use infringes any Granted Claims it would have had the right to enforce had it signed this Agreement, then I relinquish any rights, grants, and promises I have received for the Specification from other signatories of this Agreement, unless a) my promise to you was terminated pursuant to section 3.1.2.1, or b) that suit was in response to a corresponding suit first brought by you against the Related Entity.\n \n3.1.3. Additional Conditions. This promise is not an assurance (i) that any of my copyrights or issued patent claims cover an implementation of the Specification or are enforceable or (ii) that an implementation of the Specification would not infringe intellectual property rights of any third party. Notwithstanding the personal nature of my promise, this promise is intended to be binding on any future owner, assignee or exclusive licensee to whom has been given the right to enforce any Granted Claims against third parties.\n \n3.1.4. Bankruptcy. Solely for purposes of Section 365(n) of Title 11, United States Bankruptcy Code and any equivalent law in any foreign jurisdiction, this promise will be treated as if it were a license and you may elect to retain your rights under this promise if I (or any owner of any patents or patent applications referenced herein), as a debtor in possession, or a bankruptcy trustee, reject this non-assert.\n \n3.2. Patent License Commitment. In addition to rights granted in 3.1, on behalf of me and my successors in interest and assigns, I agree to grant to you a no charge, royalty free license to my Granted Claims on reasonable and non-discriminatory terms, where such license applies only to those Granted Claims infringed by the implementation of the Specification, solely for your Permitted Uses.\n\n4. No Other Rights. Except as specifically set forth in this Agreement, no other express or implied patent, trademark, copyright, or other property rights are granted under this Agreement, including by implication, waiver, or estoppel.\n\n5. Antitrust Compliance. I acknowledge that I may compete with other participants, that I am under no obligation to implement the Specification, that each participant is free to develop competing technologies and standards, and that each party is free to license its patent rights to third parties, including for the purpose of enabling competing technologies and standards.\n\n6. Non-Circumvention. I agree that I will not intentionally take or willfully assist any third party to take any action for the purpose of circumventing my obligations under this Agreement.\n\n7. Representations, Warranties and Disclaimers. I represent and warrant that I am legally entitled to grant the rights and promises set forth in this Agreement. IN ALL OTHER RESPECTS THE SPECIFICATION IS PROVIDED \"AS IS.\" The entire risk as to implementing or otherwise using the Specification is assumed by the implementer and user. Except as stated herein, I expressly disclaim any warranties (express, implied, or otherwise), including implied warranties of merchantability, non-infringement, fitness for a particular purpose, or title, related to the Specification. IN NO EVENT WILL ANY PARTY BE LIABLE TO ANY OTHER PARTY FOR LOST PROFITS OR ANY FORM OF INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER FROM ANY CAUSES OF ACTION OF ANY KIND WITH RESPECT TO THIS AGREEMENT, WHETHER BASED ON BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT THE OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. All of my obligations under Section 3 regarding the transfer, successors in interest, or assignment of Granted Claims will be satisfied if I notify the transferee or assignee of any patent that I know contains Granted Claims of the obligations under Section 3. Nothing in this Agreement requires me to undertake a patent search.\n\n8. Definitions.\n \n8.1. Agreement. \"Agreement\" means this OWFa document, which sets forth the rights, grants, promises, limitations, conditions, obligations, and disclaimers made available for the particular Specification.\n \n8.2. Bound Entities. \"Bound Entities\" means the entity listed below and any entities that the Bound Entity Controls.\n \n8.3. Control. \"Control\" means direct or indirect control of more than 50% of the voting power to elect directors of that corporation, or for any other entity, the power to direct management of such entity.\n \n8.4. Granted Claims. \"Granted Claims\" are those patent claims that I own or control, including those patent claims I acquire or control after the Date below, that are infringed by Permitted Uses. Granted Claims include only those patent claims that are infringed by the implementation of any portions of the Specification where the Specification describes the functionality causing the infringement in detail and does not merely reference the functionality causing the infringement.\n \n8.5. I, Me, or My. \"I,\" \"me,\" or \"my\" refers to the signatory below and its Bound Entities, if applicable.\n \n8.6. Permitted Uses. \"Permitted Uses\" means making, using, selling, offering for sale, importing or distributing any implementation of the Specification 1) only to the extent it implements the Specification and 2) so long as all required portions of the Specification are implemented. Permitted Uses do not extend to any portion of an implementation that is not included in the Specification.\n \n8.7. Related Entities. \"Related Entities\" means 1) any entity that Controls the Bound Entity (\"Upstream Entity\"), and 2) any other entity that is Controlled by an Upstream Entity that is not itself a Bound Entity.\n \n8.8. Specification. \"Specification\" means the Specification identified below.\n \n8.9. You or Your. \"You,\" \"you,\" or \"your\" means any person or entity who exercises copyright or patent rights granted under this Agreement, and any person or entity you Control.", + "json": "owfa-1.0.json", + "yaml": "owfa-1.0.yml", + "html": "owfa-1.0.html", + "license": "owfa-1.0.LICENSE" + }, + { + "license_key": "owtchart", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-owtchart", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "OWTChart License\n\nCopyright and License Terms\n\nOWTChart is Open Source, which means that it can be used freely, for\npersonnal or commercial application, as long as the authors' Copyright\nand Distribution terms are respected. It is based on the GDChart\nlibrary, which in turn uses Boutell.com's GD (GifDraw) library, so this\nmeans 3 sets of Copyright and Distribution terms to follow.\n\nThe application part of OWTChart was developed by Daniel Morissette\n(danmo@videotron.ca), and part of it was done under contract with Health\nCanada. It is covered by the following Copyright and Distribution terms:\nCopyright (c) 1998, 1999, Daniel Morissette\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software. THE SOFTWARE IS\nPROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\nINCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.\n\nThe underlying GDChart library comes with the following Copyright notice\nfrom its author, Bruce Verderaime (brv@fred.net): GDChart is free for\nuse in your applications and for chart generation. YOU MAY NOT re-\ndistribute or represent the code as your own. Any re-distributions of\nthe code MUST reference the author, and include any and all original\ndocumentaion.\n\nIOW: Use it. Don't plagiarize it!\n\nFinally, the GD (GifDraw) library comes with the following Copyright\nnotices: Portions copyright 1994, 1995, 1996, 1997, 1998, by Cold Spring\nHarbor Laboratory. Funded under Grant P41-RR02188 by the National\nInstitutes of Health.\n\nPortions copyright 1996, 1997, 1998, by Boutell.Com, Inc. GIF\ndecompression code copyright 1990, 1991, 1993, by David Koblas\n(koblas@netcom.com). Non-LZW-based GIF compression code copyright 1998,\nby Hutchison Avenue Software Corporation. \n\nPermission has been granted to copy and distribute gd in any context,\nincluding a commercial application, provided that this notice is present\nin user-accessible supporting documentation. This does not affect your\nownership of the derived work itself, and the intent is to assure proper\ncredit for the authors of gd, not to interfere with your productive use\nof gd. If you have questions, ask. \"Derived works\" includes all programs\nthat utilize the library. Credit must be given in user- accessible\ndocumentation. Permission to use, copy, modify, and distribute this\nsoftware and its documentation for any purpose and without fee is hereby\ngranted, provided that the above copyright notice appear in all copies\nand that both that copyright notice and this permission notice appear in\nsupporting documentation. This software is provided \"as is\" without\nexpress or implied warranty.", + "json": "owtchart.json", + "yaml": "owtchart.yml", + "html": "owtchart.html", + "license": "owtchart.LICENSE" + }, + { + "license_key": "oxygen-xml-webhelp-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-oxygen-xml-webhelp-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Oxygen XML WebHelp license\n\nIMPORTANT:THIS SOFTWARE END USER LICENSE AGREEMENT (\"EULA\") IS A LEGAL AGREEMENT BETWEEN YOU (EITHER AN INDIVIDUAL OR, IF PURCHASED OR OTHERWISE ACQUIRED BY OR FOR AN ENTITY, A SINGLE LEGAL ENTITY) AND SYNCRO. READ IT CAREFULLY BEFORE COMPLETING THE INSTALLATION PROCESS AND USING THIS SOFTWARE. IT PROVIDES A LICENSE TO USE THIS SOFTWARE AND CONTAINS WARRANTY INFORMATION AND LIABILITY DISCLAIMERS. BY DOWNLOADING OR INSTALLING THE SOFTWARE YOU ARE INDICATING YOUR ASSENT TO THE TERMS OF THIS LICENSE. IF YOU DO NOT AGREE TO ALL OF THE FOLLOWING TERMS, DO NOT DOWNLOAD OR INSTALL THE SOFTWARE OR DISCONTINUE USE IMMEDIATELY AND DESTROY ALL COPIES IN YOUR POSSESSION. YOU ALSO ACCEPT AND ASSENT TO THE SYNCRO PRIVACY POLICY LOCATED AT http://www.oxygenxml.com/privacy_policy.html AND YOU AGREE TO RECEIVE NOTICES FROM SYNCRO ELECTRONICALLY.\n\n\n1. DEFINITION\n\n a) \"Syncro\" means Syncro Soft SRL.\n b) \"Software\" means the executable code of oXygen XML Web Help plugin (DITA-Open Toolkit plugin for generating Web Help output from DITA sources and Docbook XML source transformation to Webhelp output as an extension of the Docbook XSL distribution available at Sourceforge.net.), any updates or error corrections provided by Syncro and on-line or electronic documentation.\n c) \"Process\" means any automated process that is authorized by You to access and use the Software through the assignment of a single process ID and includes, without limitation, automated controls and background jobs.\n d) \"License Key\" means a unique key-code issued to You by Syncro (or its authorized reseller) to activate and use the Software.\n e) \"Maintenance Pack\" is a time-limited right to technical support and Software updates and upgrades which you may elect to purchase in addition to your Software license. Technical support only covers issues or questions resulting directly out of the operation of the Software. Syncro will not provide You with generic consultation, assistance, or advice under any other circumstances.\n\n2. LICENSE GRANTS\n\n 2.1. Upon your payment of the license fee and subject to the terms and conditions contained herein, Syncro or its authorized reseller provides you with a License Key and grants you a limited, non-exclusive, non-transferable license to: \n a) incorporate, integrate, include and use the Software for your internal business purpose on a Process basis meaning specific Processes are authorized to access the Software and the total number of Processes may not exceed the total number licensed by You.\n b) copy the Software in machine-readable form solely for backup purposes.\n 2.2. In addition to the rights specified above in section 2.1, You shall be entitled to use the licensed Software by an additional Process that mirrors or duplicates the licensed Process, solely for the purpose of testing internally of the Software output or for backup purposes.\n 2.3. Certain rights are not granted under this Agreement, but may be available under a separate agreement. If you would like to enter into a distribution agreement contact Syncro (support@oxygenxml.com)\n\n3. LICENSE RESTRICTIONS\n 3.1. You may not provide or make available by any means the License Key to any third party. You undertake to take such steps as are necessary in order to protect the License Key against unauthorized use.\n 3.2. You may not sell, rent, lease, sub-license, transfer, resell or otherwise distribute the Software or any part thereof.\n 3.3. You may not remove or obscure any copyright notices relating to the Software.\n\n4. OWNERSHIP AND INTELLECTUAL PROPERTY RIGHTS\n 4.1. This Agreement gives you limited rights to use the Software. Syncro retains any and all rights, title and interest in and to the Software and all copies thereof, including copyrights, patents, trade secret rights, trademarks and other intellectual property rights. All rights not specifically granted in this Agreement, including International Copyrights, are reserved by Syncro. The structure, organization and code of the Software are valuable trade secrets and confidential information of Syncro. \n\n5. PATENT AND COPYRIGHT INDEMNITY\n 5.1. Syncro will defend and indemnify You for all costs (including reasonable attorneys fees) arising from a claim that Software furnished and used within the scope of this Agreement infringes the copyright or other intellectual property rights protected by United States or European Union law of any third party, provided that: (i) You notify Syncro in writing within ten (10) business days of the claim, (ii) Syncro has sole control of the defense and all related settlement negotiations, and (iii) You provide Syncro with the assistance, information, and authority necessary to perform the above. \n 5.2. Syncro will have no liability for any claim of infringement based on (i) code contained within the Software which was not created by Syncro (ii) use of a superseded or altered release of the Software, except for such alteration(s) or modification(s) which have been made by Syncro or under Syncro' direction, if such infringement would have been avoided by the use of a current, unaltered release of the Software that Syncro provides to You, or (iii)the combination, operation, or use of any Software furnished under this Agreement with programs or data not furnished by Syncro if such infringement would have been avoided by the use of the Software without such programs or data. \n 5.3. In the event the Software is held or believed by Syncro to infringe, or Your use of the Software is enjoined, Syncro will have the option, at its expense, to (i) modify the Software to cause it to become non-infringing, (ii) obtain for You a license to continue using the Software, (iii) substitute the Software with other Software reasonably suitable to You, or (iv) if none of the foregoing remedies are commercially feasible, terminate the license for the infringing Software and refund any license fees paid for the Software, prorated over a three-year term from the effective date of the Agreement. This Section states Syncro' entire liability for infringement. \n\n6. LIMITED WARRANTIES\n 6.1. Syncro warrants that is holds the proper rights allowing it to license the Software and is not currently aware of any actions that may affect its rights to do so.\n 6.2. THE SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS, EXCEPT AS EXPRESSLY SET FORTH ABOVE, SYNCRO MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTY OR MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. WITHOUT LIMITATION, YOU ASSUME SOLE RESPONSIBILITY FOR SELECTING THE SOFTWARE TO ACHIEVE YOUR INTENDED RESULTS AND FOR THE INSTALLATION, USE AND RESULTS OBTAINED FROM THE SOFTWARE. SYNCRO MAKES NO WARRANTY THAT THE SOFTWARE WILL BE ERROR FREE OR FREE FROM INTERRUPTIONS OR OTHER FAILURES. IN PARTICULAR, THE SOFTWARE IS NOT DESIGNED FOR USE IN HAZARDOUS ENVIRONMENTS REQUIRING FAIL-SAFE PERFORMANCE. SYNCRO EXPRESSLY DISCLAIMS ANY WARRANTY OF FITNESS FOR HIGH-RISK ACTIVITIES.\n\n7. SUPPORT AND MAINTENANCE PACK\n 7.1. Subject to payment of the applicable fees for Maintenance Pack under this Agreement Syncro shall provide maintenance and support services in accordance with its standard maintenance and support terms for such services. Syncro technical support policies are posted on Oxygen XML\u2019s website (www.oxygenxml.com) and Syncro reserves the right to amend and modify its technical support policies from time to time, in its sole discretion. \n 7.2. At any time prior to the expiration of your Maintenance Pack and fourteen (14) days after, you may purchase a renewal of your Maintenance Pack. This additional Maintenance Pack will extend the availability of your current Maintenance Pack for a period of time beginning with the date when your Maintenance Pack expires. If you do not purchase any additional Maintenance Pack, you will lose the right to technical support and Software updates and upgrades as of the date your current Maintenance Pack expires. However, you will not lose the right to use the Software or the technical support,updates and upgrades provided free by Syncro.\n 7.3. If you have purchased or already own multiple licenses and you elect to purchase or renew their Maintenance Pack, you must purchase a Maintenance Pack for each license.\n 7.4. Technical support incidents can be submitted via e-mail or by phone. Syncro will use its best efforts to provide you with technical support within forty-eight (48) business hours of your request. \n 7.5. The latest information regarding Maintenance Pack (terms and conditions, prices, online purchase, etc.) is provided on the web site at: http://www.oxygenxml.com/support.html.\n\n8. LIMITATION OF LIABILITY\n 8.1. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL SYNCRO OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS OR CONFIDENTIAL OR OTHER INFORMATION, FOR BUSINESS INTERRUPTION, FOR PERSONAL INJURY, FOR LOSS OF PRIVACY, FOR FAILURE TO MEET ANY DUTY INCLUDING OF GOOD FAITH OR OF REASONABLE CARE, FOR NEGLIGENCE, AND FOR ANY OTHER PECUNIARY OR OTHER LOSS WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OR INABILITY TO USE THE SOFTWARE, THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES, OR OTHERWISE UNDER OR IN CONNECTION WITH ANY PROVISION OF THIS EULA, EVEN IN EVENT OF FAULT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, BREACH OF CONTRACT OR BREACH OF WARRANTY OF SYNCRO OR ANY SUPPLIER, AND EVEN IF SYNCRO OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ANY CASE, SYNCRO ENTIRE LIABILITY UNDER ANY PROVISION OF THIS EULA SHALL BE LIMITED TO THE GREATER OF THE AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE OR U.S.$5.00. Because some states and jurisdictions do not allow the exclusion or limitation of liability, the above limitation may not apply to you. In such states and jurisdictions, Syncro's liability shall be limited to the greatest extent permitted by law and the limitations or exclusions of warranties and liability contained herein do not prejudice applicable statutory consumer rights of person acquiring goods otherwise than in the course of business. The disclaimer and limited liability above are fundamental to this Agreement between Syncro and you.\n\n9. HIGH RISK ACTIVITIES\n 9.1. The Software is not fault-tolerant and is not designed, manufactured or intended for use or resale as on-line control equipment in hazardous environments requiring fail-safe performance, such as in the operation of nuclear facilities, aircraft navigation or communication systems, air traffic control, direct life support machines, or weapons systems, in which the failure of the Software could lead directly to death, personal injury, or severe physical or environmental damage (\"High Risk Activities\"). Syncro and its suppliers specifically disclaim any express or implied warranty of fitness for High Risk Activities.\n\n10. THIRD PARTY SOFTWARE\n 10.1. The Software contains the following third party software that requires additional terms and conditions: \n 10.1.1. jQuery JavaScript Library and jQuery Plug-Ins\n 10.1.2. jQuery Mobile JavaScript LibraryThe required third party software notices and/or additional terms and conditions are located at: http://www.oxygenxml.com/thirdparty/index.html and are made a part of and incorporated by reference into this Agreement. By accepting this Agreement, You are also accepting the additional terms and conditions, if any, forth therein.\n\n11. TERMINATION\n 11.1. You may terminate the Agreement at any time by destroying all copies of the Software. Syncro may terminate the Agreement and license granted herein immediately if you breach any provision of this Agreement or at the request of an authorized Syncro reseller in the event that you fail to make your license payment or other monies due and payable. \n\n12. EXPORT REGULATIONS\n 12.1. You acknowledge that the Software may be subject to export restrictions of various countries. You shall fully comply with all applicable export license restrictions and requirements as well as with all laws and regulations relating to the importation of the Software, in the United States and in any foreign jurisdiction in which the Software is used. Without limiting the foregoing, the Software may not be downloaded or otherwise exported or re-exported (i) into (or to a national or resident of) any country to which the U.S. has embargoed goods; or (ii) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Commerce Department's Table of Denial Orders. By downloading or using the Software, you are agreeing to the foregoing and you are representing and warranting that you are not located in, under the control of, or a national or resident of any such country or on any such list.\n\n13. GENERAL\n 13.1. Syncro makes efforts to provide updates or new versions of the Software, but Syncro reserves the right at any time not to release updates or new versions of the Software or, if released, to alter prices, features, specifications, capabilities, functions, licensing terms, release dates, general availability or other characteristics of the Software. \n 13.2. If any provision hereof shall be held illegal, invalid or unenforceable, in whole or in part, such provision shall be modified to the minimum extent necessary to make it legal, valid and enforceable, and the legality, validity and enforceability of all other provisions of this Agreement shall not be affected. \n 13.3. This Agreement will be governed by and construed in accordance with the laws of England and Wales. In the event of any disputes arising out of the interpretation or performance of this Agreement, the parties shall endeavor to settle the matter out of court prior to any court action. If no agreement can be reached to settle a dispute concerning the interpretation or performance of this Agreement, the competent courts of England and Wales shall have exclusive jurisdiction. Service of process upon either party shall be valid if served by registered or certified mail, return receipt requested and to the most current address provided by such party. The United Nations Convention on Contracts for the International Sale of Goods shall not apply to this Agreement. \n 13.4. You may not assign this Agreement in whole or in part, without Syncro prior written consent. Any attempt by You to assign this Agreement without such consent will be null and void. \n 13.5. This Agreement constitutes the entire agreement between Syncro and You related to the Software and supersedes any and all previous and contemporaneous understandings or agreements between the parties with respect to the same subject matter. No purchase order, other ordering document or any other document which purports to modify or supplement this Agreement shall add to or vary the terms and conditions of this Agreement unless executed by both Syncro and You. Syncro's acceptance of any purchase order placed by You is expressly made conditional on your assent to the terms set forth in this Agreement, and not those contained in your purchase order, and such purchase order terms shall have no effect on this Agreement. All questions concerning this Agreement shall be directed to support@oxygenxml.com", + "json": "oxygen-xml-webhelp-eula.json", + "yaml": "oxygen-xml-webhelp-eula.yml", + "html": "oxygen-xml-webhelp-eula.html", + "license": "oxygen-xml-webhelp-eula.LICENSE" + }, + { + "license_key": "ozplb-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ozplb-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Australian Public Licence B Version 1-0\n OZPLB Licence\n\nVersion 1-0\nCopyright (c) 2006, National ICT Australia, Ltd\nAll rights reserved.\n\nDeveloped by: Embedded, Real-time and Operating Systems Program (ERTOS)\nNational ICT Australia\nhttp://www.ertos.nicta.com.au\n\nPermission is granted by National ICT Australia, free of charge, to any person obtaining a copy of this software and any associated documentation files (the \"Software\") to deal with the software without restriction, including (without limitation) the rights to use, copy, modify, adapt, merge, publish, distribute, communicate to the public, sublicense, and/or sell, lend or rent out copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimers.\n\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimers in the documentation and/or other materials provided\n with the distribution.\n\n * Neither the name of National ICT Australia, nor the names of its\n contributors, may be used to endorse or promote products derived\n from this Software without specific prior written permission.\n\nEXCEPT AS EXPRESSLY STATED IN THIS LICENCE AND TO THE FULL EXTENT PERMITTED BY APPLICABLE LAW, THE SOFTWARE IS PROVIDED \"AS-IS\", AND NATIONAL ICT AUSTRALIA AND ITS CONTRIBUTORS MAKE NO REPRESENTATIONS, WARRANTIES OR CONDITIONS OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY REPRESENTATIONS, WARRANTIES OR CONDITIONS REGARDING THE CONTENTS OR ACCURACY OF THE SOFTWARE, OR OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, THE ABSENCE OF LATENT OR OTHER DEFECTS, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE.\n\nTO THE FULL EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL NATIONAL ICT AUSTRALIA OR ITS CONTRIBUTORS BE LIABLE ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHERWISE) FOR ANY CLAIM, LOSS, DAMAGES OR OTHER LIABILITY, INCLUDING (WITHOUT LIMITATION) LOSS OF PRODUCTION OR OPERATION TIME, LOSS, DAMAGE OR CORRUPTION OF DATA OR RECORDS; OR LOSS OF ANTICIPATED SAVINGS, OPPORTUNITY, REVENUE, PROFIT OR GOODWILL, OR OTHER ECONOMIC LOSS; OR ANY SPECIAL, INCIDENTAL, INDIRECT, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES, ARISING OUT OF OR IN CONNECTION WITH THIS LICENCE, THE SOFTWARE OR THE USE OF OR OTHER DEALINGS WITH THE SOFTWARE, EVEN IF NATIONAL ICT AUSTRALIA OR ITS\nCONTRIBUTORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH CLAIM, LOSS, DAMAGES OR OTHER LIABILITY.\n\nIf applicable legislation implies representations, warranties, or conditions, or imposes obligations or liability on National ICT Australia or one of its contributors in respect of the Software that\ncannot be wholly or partly excluded, restricted or modified, the liability of National ICT Australia or the contributor is limited, to the full extent permitted by the applicable legislation, at its\noption, to:\na. in the case of goods, any one or more of the following:\ni. the replacement of the goods or the supply of equivalent goods;\nii. the repair of the goods;\niii. the payment of the cost of replacing the goods or of acquiring\n equivalent goods;\niv. the payment of the cost of having the goods repaired; or\nb. in the case of services:\ni. the supplying of the services again; or\nii. the payment of the cost of having the services supplied again.\n\nThe construction, validity and performance of this licence is governed by the laws in force in New South Wales, Australia.", + "json": "ozplb-1.0.json", + "yaml": "ozplb-1.0.yml", + "html": "ozplb-1.0.html", + "license": "ozplb-1.0.LICENSE" + }, + { + "license_key": "ozplb-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ozplb-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Australian Public Licence B (OZPLB)\n\nVersion 1-1\n\nCopyright (c) 2006, P2P Networks and Applications Research Group, The University\nof Melbourne\n\nAll rights reserved.\n\nDeveloped by: P2P Networks and Applications Research Group\n The University of Melbourne, Australia\n http://www.cs.mu.oz.au/p2p\n\nWhere the country of The University of Melbourne (as indicated above) is not \nAustralia, permission is granted by The University of Melbourne, free of charge, \nto any person obtaining a copy of this software and any associated documentation \nfiles (the \"Software\") to deal with the Software, without restriction, under the \nterms of the University of Illinois/NCSA Open Source License (available at \nhttp://www.opensource.org/licenses/UoI-NCSA.php), in which case the provisions \nof the University of Illinois/NCSA Open Source License are applicable instead of \nthose of this licence.\n\nPermission is otherwise granted by The University of Melbourne, free of charge, \nto any person obtaining a copy of the Software to deal with the Software without\nrestriction, including (without limitation) the rights to use, copy, modify, \nadapt, merge, publish, distribute, communicate to the public, sublicense, and/or \nsell, lend or rent out copies of the Software, and to permit persons to whom the \nSoftware is furnished to do so, subject to the following conditions:\n\n- Redistributions of source code must retain the above copyright notice, the \n above permissions, this list of conditions and the following disclaimers and \n limitations. \n\n- Redistributions in binary form must reproduce the above copyright notice, the \n above permissions, this list of conditions and the following disclaimers in \n the documentation and/or other materials provided with the distribution and \n limitations. \n\n- Neither the name of The University of Melbourne, nor the names of its \n contributors, may be used to endorse or promote products derived from this \n Software without specific prior written permission. \n\n- The construction, validity and performance of this licence is governed by the \n laws in force in Victoria, Australia.\n\nEXCEPT AS EXPRESSLY STATED IN THIS LICENCE AND TO THE FULL EXTENT PERMITTED BY \nAPPLICABLE LAW, THE SOFTWARE IS PROVIDED \"AS-IS\", AND The University of \nMelboune AND ITS CONTRIBUTORS MAKE NO REPRESENTATIONS, WARRANTIES OR CONDITIONS \nOF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY \nREPRESENTATIONS, WARRANTIES OR CONDITIONS REGARDING THE CONTENTS OR ACCURACY OF \nTHE SOFTWARE, OR OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, \nNONINFRINGEMENT, THE ABSENCE OF LATENT OR OTHER DEFECTS, OR THE PRESENCE OR \nABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE.\n\nTO THE FULL EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL The University\nof Melbourne OR ITS CONTRIBUTORS BE LIABLE ON ANY LEGAL THEORY (INCLUDING, \nWITHOUT LIMITATION, IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHERWISE) FOR ANY \nCLAIM, LOSS, DAMAGES OR OTHER LIABILITY, INCLUDING (WITHOUT LIMITATION) LOSS OF \nPRODUCTION OR OPERATION TIME, LOSS, DAMAGE OR CORRUPTION OF DATA OR RECORDS; OR \nLOSS OF ANTICIPATED SAVINGS, OPPORTUNITY, REVENUE, PROFIT OR GOODWILL, OR OTHER \nECONOMIC LOSS; OR ANY SPECIAL, INCIDENTAL, INDIRECT, CONSEQUENTIAL, PUNITIVE OR \nEXEMPLARY DAMAGES, ARISING OUT OF OR IN CONNECTION WITH THIS LICENCE, THE \nSOFTWARE OR THE USE OF OR OTHER DEALINGS WITH THE SOFTWARE, EVEN IF The \nUniversity of Melbourne OR ITS CONTRIBUTORS HAVE BEEN ADVISED OF THE POSSIBILITY \nOF SUCH CLAIM, LOSS, DAMAGES OR OTHER LIABILITY.\n\nIf applicable legislation implies representations, warranties, or conditions, or\nimposes obligations or liability on The University of Melbourne or one of its \ncontributors in respect of the Software that cannot be wholly or partly excluded, \nrestricted or modified, the liability of The University of Melbourne or the \ncontributor is limited, to the full extent permitted by the applicable \nlegislation, at its option, to:\n\na. in the case of goods, any one or more of the following:\n\ni. the replacement of the goods or the supply of equivalent goods;\nii. the repair of the goods;\niii. the payment of the cost of replacing the goods or of acquiring equivalent \n goods;\niv. the payment of the cost of having the goods repaired; or\n\nb. in the case of services:\n\ni. the supplying of the services again; or\nii. the payment of the cost of having the services supplied again.", + "json": "ozplb-1.1.json", + "yaml": "ozplb-1.1.yml", + "html": "ozplb-1.1.html", + "license": "ozplb-1.1.LICENSE" + }, + { + "license_key": "paint-net", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-paint-net", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Paint.NET is free for use in any environment, including but not necessarily limited to: personal, academic, commercial, government, business, non-profit, and for-profit. \"Free\" in the preceding sentence means that there is no cost or charge associated with the installation and use of Paint.NET. Donations are always appreciated, of course! http://www.getpaint.net/donate.html \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software (the \"Software\"), to use the Software without restriction, including the rights to use, copy, publish, and distribute the Software, and to permit persons to whom the Software is furnished to do so.\n\nYou may not modify, adapt, rent, lease, loan, sell, or create derivative works based upon the Software or any part thereof. However, certain icons used in the Paint.NET user interface are from or adapted from those in the \"Crystal\" icon set, http://www.everaldo.com/crystal/, or the \"Oxygen\" icon set, http://www.oxygen-icons.org/. These icons are covered by the LGPL license, http://www.gnu.org/copyleft/lesser.html. These icons are stored as \"loose\" PNG image files in the Resources\\en-US\\ directory where Paint.NET is installed.\n\nThe above copyright notice and this permission notice shall be included in all copies of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "paint-net.json", + "yaml": "paint-net.yml", + "html": "paint-net.html", + "license": "paint-net.LICENSE" + }, + { + "license_key": "paolo-messina-2000", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paolo-messina-2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Free for non-commercial and commercial use, provided that the original author's name and copyright is quoted somewhere in the final executable and in the program's help or documentation.\n\nYou may change the code to your needs, provided that credits to the original author are given in the modified files.\n\nAlso a copy of your enhancements would be nice, but it's not required. Please, consider to share your work on CodeProject.", + "json": "paolo-messina-2000.json", + "yaml": "paolo-messina-2000.yml", + "html": "paolo-messina-2000.html", + "license": "paolo-messina-2000.LICENSE" + }, + { + "license_key": "paraview-1.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paraview-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Parts of ParaView are under the following licenses:\n\nParaView License Version 1.2\n========================================================================\n\nCopyright (c) 2005-2008 Sandia Corporation, Kitware Inc.\n\nSandia National Laboratories, New Mexico\nPO Box 5800\nAlbuquerque, NM 87185\n\nKitware Inc.\n28 Corporate Drive\nClifton Park, NY 12065\nUSA\n\nUnder the terms of Contract DE-AC04-94AL85000, there is a\nnon-exclusive license for use of this work by or on behalf of the\nU.S. Government. \n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the\n distribution.\n\n * Neither the name of Kitware nor the names of any contributors may\n be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n========================================================================\n\nOther licenses:\n\n========================================================================\n\nCopyright (c) 2000-2005 Kitware Inc. 28 Corporate Drive, Suite 204,\nClifton Park, NY, 12065, USA.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the\n distribution.\n\n * Neither the name of Kitware nor the names of any contributors may\n be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n========================================================================\n\nCopyright (c) 2002-2005 Los Alamos National Laboratory\n\nThis software and ancillary information known as vtk_ext (and herein\ncalled \"SOFTWARE\") is made available under the terms described below.\nThe SOFTWARE has been approved for release with associated LA_CC\nNumber 99-44, granted by Los Alamos National Laboratory in July 1999.\n\nUnless otherwise indicated, this SOFTWARE has been authored by an\nemployee or employees of the University of California, operator of the\nLos Alamos National Laboratory under Contract No. W-7405-ENG-36 with\nthe United States Department of Energy.\n\nThe United States Government has rights to use, reproduce, and\ndistribute this SOFTWARE. The public may copy, distribute, prepare\nderivative works and publicly display this SOFTWARE without charge,\nprovided that this Notice and any statement of authorship are\nreproduced on all copies.\n\nNeither the U. S. Government, the University of California, nor the\nAdvanced Computing Laboratory makes any warranty, either express or\nimplied, nor assumes any liability or responsibility for the use of\nthis SOFTWARE.\n\nIf SOFTWARE is modified to produce derivative works, such modified\nSOFTWARE should be clearly marked, so as not to confuse it with the\nversion available from Los Alamos National Laboratory.\n\n========================================================================\n\nVTK License\n\n========================================================================\n\nCopyright (c) 2000-2006 Kitware Inc. 28 Corporate Drive, Suite 204,\nClifton Park, NY, 12065, USA.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the\n distribution.\n\n * Neither the name of Kitware nor the names of any contributors may\n be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n========================================================================\n\nHDF5 License\n\n========================================================================\n\nNCSA HDF5 (Hierarchical Data Format 5) Software Library and Utilities\nCopyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 by the Board of\nTrustees of the University of Illinois All rights reserved.\n\nContributors: National Center for Supercomputing Applications (NCSA) at the\nUniversity of Illinois at Urbana-Champaign (UIUC), Lawrence Livermore National\nLaboratory (LLNL), Sandia National Laboratories (SNL), Los Alamos National\nLaboratory (LANL), Jean-loup Gailly and Mark Adler (gzip library).\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted for any purpose (including commercial purposes)\nprovided that the following conditions are met:\n\n 1. Redistributions of source code must retain the above copyright notice,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions, and the following disclaimer in the\n documentation and/or materials provided with the distribution.\n 3. In addition, redistributions of modified forms of the source or binary\n code must carry prominent notices stating that the original code was\n changed and the date of the change.\n 4. All publications or advertising materials mentioning features or use of\n this software are asked, but not required, to acknowledge that it was\n developed by the National Center for Supercomputing Applications at the\n University of Illinois at Urbana-Champaign and to credit the\n contributors.\n 5. Neither the name of the University nor the names of the Contributors may\n be used to endorse or promote products derived from this software without\n specific prior written permission from the University or the\n Contributors, as appropriate for the name(s) to be used.\n 6. THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY AND THE CONTRIBUTORS \"AS IS\"\n WITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED. In no event\n shall the University or the Contributors be liable for any damages\n suffered by the users arising out of the use of this software, even if\n advised of the possibility of such damage. \n\nPortions of HDF5 were developed with support from the University of California,\nLawrence Livermore National Laboratory (UC LLNL). The following statement\napplies to those portions of the product and must be retained in any\nredistribution of source code, binaries, documentation, and/or accompanying\nmaterials:\nThis work was partially produced at the University of California, Lawrence\nLivermore National Laboratory (UC LLNL) under contract no. W-7405-ENG-48\n(Contract 48) between the U.S. Department of Energy (DOE) and The Regents of\nthe University of California (University) for the operation of UC LLNL.\n\nDISCLAIMER: This work was prepared as an account of work sponsored by an agency\nof the United States Government. Neither the United States Government nor the\nUniversity of California nor any of their employees, makes any warranty,\nexpress or implied, or assumes any liability or responsibility for the\naccuracy, completeness, or usefulness of any information, apparatus, product,\nor process disclosed, or represents that its use would not infringe privately-\nowned rights. Reference herein to any specific commercial products, process, or\nservice by trade name, trademark, manufacturer, or otherwise, does not\nnecessarily constitute or imply its endorsement, recommendation, or favoring by\nthe United States Government or the University of California. The views and\nopinions of authors expressed herein do not necessarily state or reflect those\nof the United States Government or the University of California, and shall not\nbe used for advertising or product endorsement purposes. \n\n========================================================================\n\nXdmf License\n\n========================================================================\n\nCopyright (c) 2002 U.S. Army Research Laboratory \nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n * Neither the name of the U.S. Army Research Laboratory nor the names\n of any contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n\n * Modified source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "paraview-1.2.json", + "yaml": "paraview-1.2.yml", + "html": "paraview-1.2.html", + "license": "paraview-1.2.LICENSE" + }, + { + "license_key": "parity-6.0.0", + "category": "Copyleft", + "spdx_license_key": "Parity-6.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Parity Public License 6.0.0\n\nContributor: contributor name\n\nSource Code: source\n\nThis license lets you use and share this software for free, as long as you contribute software you make with it. Specifically:\n\nIf you follow the rules below, you may do everything with this software that would otherwise infringe either the contributor's copyright in it, any patent claim the contributor can license, or both.\n\n 1. Contribute changes and additions you make to this software.\n\n 2. If you combine this software with other software, contribute that other software.\n\n 3. Contribute software you develop, deploy, monitor, or run with this software.\n\n 4. Ensure everyone who gets a copy of this software from you, in source code or any other form, gets the text of this license and the contributor and source code lines above.\n\n 5. Do not make any legal claim against anyone accusing this software, with or without changes, alone or with other software, of infringing any patent claim.\n\nTo contribute software, publish all its source code, in the preferred form for making changes, through a freely accessible distribution system widely used for similar source code, and license contributions not already licensed to the public on terms as permissive as this license accordingly.\n\nYou are excused for unknowingly breaking 1, 2, or 3 if you contribute as required, or stop doing anything requiring this license, within 30 days of learning you broke the rule.\n\n**As far as the law allows, this software comes as is, without any warranty, and the contributor will not be liable to anyone for any damages related to this software or this license, for any kind of legal claim.**", + "json": "parity-6.0.0.json", + "yaml": "parity-6.0.0.yml", + "html": "parity-6.0.0.html", + "license": "parity-6.0.0.LICENSE" + }, + { + "license_key": "parity-7.0.0", + "category": "Copyleft", + "spdx_license_key": "Parity-7.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Parity Public License 7.0.0\n\nContributor: contributor name\n\nSource Code: source\n\nPurpose\nThis license allows you to use and share this software for free, but you have to share software that builds on it alike.\n\nAgreement\nIn order to receive this license, you have to agree to its rules. Those rules are both obligations under that agreement and conditions to your license. Don\u2019t do anything with this software that triggers a rule you can\u2019t or won\u2019t follow.\n\nNotices\nMake sure everyone who gets a copy of any part of this software from you, with or without changes, also gets the text of this license and the contributor and source code lines above.\n\nCopyleft\nContribute software you develop, operate, or analyze with this software, including changes or additions to this software. When in doubt, contribute.\n\nPrototypes\nYou don\u2019t have to contribute any change, addition, or other software that meets all these criteria:\n\nYou don\u2019t use it for more than thirty days.\n\nYou don\u2019t share it outside the team developing it, other than for non-production user testing.\n\nYou don\u2019t develop, operate, or analyze other software with it for anyone outside the team developing it.\n\nReverse Engineering\nYou may use this software to operate and analyze software you can\u2019t contribute in order to develop alternatives you can and do contribute.\n\nContribute\nTo contribute software:\n\nPublish all source code for the software in the preferred form for making changes through a freely accessible distribution system widely used for similar source code so the contributor and others can find and copy it.\n\nMake sure every part of the source code is available under this license or another license that allows everything this license does, such as the Blue Oak Model License 1.0.0, the Apache License 2.0, the MIT license, or the two-clause BSD license.\n\nTake these steps within thirty days.\n\nNote that this license does not allow you to change the license terms for this software. You must follow Notices.\n\nExcuse\nYou\u2019re excused for unknowingly breaking Copyleft if you contribute as required, or stop doing anything requiring this license, within thirty days of learning you broke the rule. You\u2019re excused for unknowingly breaking Notices if you take all practical steps to comply within thirty days of learning you broke the rule.\n\nDefense\nDon\u2019t make any legal claim against anyone accusing this software, with or without changes, alone or with other technology, of infringing any patent.\n\nCopyright\nThe contributor licenses you to do everything with this software that would otherwise infringe their copyright in it.\n\nPatent\nThe contributor licenses you to do everything with this software that would otherwise infringe any patents they can license or become able to license.\n\nReliability\nThe contributor can\u2019t revoke this license.\n\nNo Liability\nAs far as the law allows, this software comes as is, without any warranty or condition, and the contributor won\u2019t be liable to anyone for any damages related to this software or this license, under any kind of legal claim.", + "json": "parity-7.0.0.json", + "yaml": "parity-7.0.0.yml", + "html": "parity-7.0.0.html", + "license": "parity-7.0.0.LICENSE" + }, + { + "license_key": "passive-aggressive", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-passive-aggressive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby given to the user, with free of charge, to any person obtaining a copy of this software and its all associated documentation files, to deal in the software without restriction, including without limitation the rights to copy, modify, merge, publish, distribute, sublicense, and/orsell copies of the Software, but NOT including the right to run, execute or use the Software or any executable binaries built from the source code.\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE", + "json": "passive-aggressive.json", + "yaml": "passive-aggressive.yml", + "html": "passive-aggressive.html", + "license": "passive-aggressive.LICENSE" + }, + { + "license_key": "patent-disclaimer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-patent-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "", + "json": "patent-disclaimer.json", + "yaml": "patent-disclaimer.yml", + "html": "patent-disclaimer.html", + "license": "patent-disclaimer.LICENSE" + }, + { + "license_key": "paul-hsieh-derivative", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-paul-hsieh-derivative", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Paul Hsieh derivative license\n\nThe derivative content includes raw computer source code, ideas, opinions, and\nexcerpts whose original source is covered under another license and\ntransformations of such derivatives. Note that mere excerpts by themselves (with\nthe exception of raw source code) are not considered derivative works under this\nlicense. Use and redistribution is limited to the following conditions:\n\n One may not create a derivative work which, in any way, violates the Paul\n Hsieh exposition license described above on the original content.\n\n One may not apply a license to a derivative work that precludes anyone else\n from using and redistributing derivative content.\n\n One may not attribute any derivative content to authors not involved in the\n creation of the content, though an attribution to the author is not\n necessary.", + "json": "paul-hsieh-derivative.json", + "yaml": "paul-hsieh-derivative.yml", + "html": "paul-hsieh-derivative.html", + "license": "paul-hsieh-derivative.LICENSE" + }, + { + "license_key": "paul-hsieh-exposition", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-paul-hsieh-exposition", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Paul Hsieh exposition license\nThe content of all text, figures, tables and displayed layout is copyrighted by its author and owner Paul Hsieh unless specifically denoted otherwise. Redistribution is limited to the following conditions:\n\nThe redistributor must fully attribute the content's authorship and make a good faith effort to cite the original location of the original content.\n\nThe content may not be modified via excerpt or otherwise with the exception of additional citations such as described above without prior consent of Paul Hsieh.\n\nThe content may not be subject to a change in license without prior consent of Paul Hsieh.\n\nThe content may be used for commercial purposes.", + "json": "paul-hsieh-exposition.json", + "yaml": "paul-hsieh-exposition.yml", + "html": "paul-hsieh-exposition.html", + "license": "paul-hsieh-exposition.LICENSE" + }, + { + "license_key": "paul-mackerras", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paul-mackerras", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. The name(s) of the authors of this software must not be used to\n endorse or promote products derived from this software without\n prior written permission.\n\n3. Redistributions of any form whatsoever must retain the following\n acknowledgment:\n \"This product includes software developed by Paul Mackerras\n \".\n\nTHE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO\nTHIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY\nSPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN\nAN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING\nOUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "paul-mackerras.json", + "yaml": "paul-mackerras.yml", + "html": "paul-mackerras.html", + "license": "paul-mackerras.LICENSE" + }, + { + "license_key": "paul-mackerras-binary", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paul-mackerras-binary", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in\n the documentation and/or other materials provided with the\n distribution.\n\n3. The name(s) of the authors of this software must not be used to\n endorse or promote products derived from this software without\n prior written permission.\n\n4. Redistributions of any form whatsoever must retain the following\n acknowledgment:\n \"This product includes software developed by Paul Mackerras\n \".\n\nTHE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO\nTHIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY\nSPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN\nAN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING\nOUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "paul-mackerras-binary.json", + "yaml": "paul-mackerras-binary.yml", + "html": "paul-mackerras-binary.html", + "license": "paul-mackerras-binary.LICENSE" + }, + { + "license_key": "paul-mackerras-new", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paul-mackerras-new", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in\n the documentation and/or other materials provided with the\n distribution.\n\n3. The name(s) of the authors of this software must not be used to\n endorse or promote products derived from this software without\n prior written permission.\n\nTHE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO\nTHIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY\nSPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN\nAN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING\nOUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "paul-mackerras-new.json", + "yaml": "paul-mackerras-new.yml", + "html": "paul-mackerras-new.html", + "license": "paul-mackerras-new.LICENSE" + }, + { + "license_key": "paul-mackerras-simplified", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paul-mackerras-simplified", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. The name(s) of the authors of this software must not be used to\n endorse or promote products derived from this software without\n prior written permission.\n\nTHE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO\nTHIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY\nSPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN\nAN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING\nOUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "paul-mackerras-simplified.json", + "yaml": "paul-mackerras-simplified.yml", + "html": "paul-mackerras-simplified.html", + "license": "paul-mackerras-simplified.LICENSE" + }, + { + "license_key": "paulo-soares", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paulo-soares", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "These specific metrics files were created by Paulo Soares and may be used,\ncopied, and distributed for any purpose and without charge, with or without\nmodification.", + "json": "paulo-soares.json", + "yaml": "paulo-soares.yml", + "html": "paulo-soares.html", + "license": "paulo-soares.LICENSE" + }, + { + "license_key": "paypal-sdk-2013-2016", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paypal-sdk-2013-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The PayPal SDK is released under the following license:\n\nCopyright (c) 2013-2016 PAYPAL, INC.\n\nSDK LICENSE\n\nNOTICE TO USER: PayPal, Inc. is providing the Software and Documentation for use under the terms of \nthis Agreement. Any use, reproduction, modification or distribution of the Software or Documentation, \nor any derivatives or portions hereof, constitutes your acceptance of this Agreement.\n\nAs used in this Agreement, \"PayPal\" means PayPal, Inc. \"Software\" means the software code accompanying\nthis agreement. \"Documentation\" means the documents, specifications and all other items accompanying \nthis Agreement other than the Software. \n\n1. LICENSE GRANT Subject to the terms of this Agreement, PayPal hereby grants you a non-exclusive, \nworldwide, royalty free license to use, reproduce, prepare derivative works from, publicly display, \npublicly perform, distribute and sublicense the Software for any purpose, provided the copyright notice\nbelow appears in a conspicuous location within the source code of the distributed Software and this \nlicense is distributed in the supporting documentation of the Software you distribute. Furthermore, \nyou must comply with all third party licenses in order to use the third party software contained in the \nSoftware.\n\nSubject to the terms of this Agreement, PayPal hereby grants you a non-exclusive, worldwide, royalty free\nlicense to use, reproduce, publicly display, publicly perform, distribute and sublicense the Documentation \nfor any purpose. You may not modify the Documentation.\n\nNo title to the intellectual property in the Software or Documentation is transferred to you under the \nterms of this Agreement. You do not acquire any rights to the Software or the Documentation except as \nexpressly set forth in this Agreement.\n\nIf you choose to distribute the Software in a commercial product, you do so with the understanding that \nyou agree to defend, indemnify and hold harmless PayPal and its suppliers against any losses, damages and \ncosts arising from the claims, lawsuits or other legal actions arising out of such distribution. You may \ndistribute the Software in object code form under your own license, provided that your license agreement:\n\n(a) complies with the terms and conditions of this license agreement; \n\n(b) effectively disclaims all warranties and conditions, express or implied, on behalf of PayPal;\n\n(c) effectively excludes all liability for damages on behalf of PayPal;\n\n(d) states that any provisions that differ from this Agreement are offered by you alone and not PayPal; and\n\n(e) states that the Software is available from you or PayPal and informs licensees how to obtain it in a \nreasonable manner on or through a medium customarily used for software exchange. \n\n2. DISCLAIMER OF WARRANTY\nPAYPAL LICENSES THE SOFTWARE AND DOCUMENTATION TO YOU ONLY ON AN \"AS IS\" BASIS WITHOUT WARRANTIES OR CONDITIONS \nOF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY WARRANTIES OR CONDITIONS OF TITLE, \nNON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. PAYPAL MAKES NO WARRANTY THAT THE \nSOFTWARE OR DOCUMENTATION WILL BE ERROR-FREE. Each user of the Software or Documentation is solely responsible \nfor determining the appropriateness of using and distributing the Software and Documentation and assumes all \nrisks associated with its exercise of rights under this Agreement, including but not limited to the risks and \ncosts of program errors, compliance with applicable laws, damage to or loss of data, programs, or equipment, \nand unavailability or interruption of operations. Use of the Software and Documentation is made with the \nunderstanding that PayPal will not provide you with any technical or customer support or maintenance. Some \nstates or jurisdictions do not allow the exclusion of implied warranties or limitations on how long an implied \nwarranty may last, so the above limitations may not apply to you. To the extent permissible, any implied \nwarranties are limited to ninety (90) days.\n\n\n3. LIMITATION OF LIABILITY\nPAYPAL AND ITS SUPPLIERS SHALL NOT BE LIABLE FOR LOSS OR DAMAGE ARISING OUT OF THIS AGREEMENT OR FROM THE USE \nOF THE SOFTWARE OR DOCUMENTATION. IN NO EVENT WILL PAYPAL OR ITS SUPPLIERS BE LIABLE TO YOU OR ANY THIRD PARTY \nFOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, INCIDENTAL, OR SPECIAL DAMAGES INCLUDING LOST PROFITS, LOST SAVINGS, \nCOSTS, FEES, OR EXPENSES OF ANY KIND ARISING OUT OF ANY PROVISION OF THIS AGREEMENT OR THE USE OR THE INABILITY \nTO USE THE SOFTWARE OR DOCUMENTATION, HOWEVER CAUSED AND UNDER ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY OR TORT INCLUDING NEGLIGENCE OR OTHERWISE), EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \nPAYPAL'S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE \nLIMITED TO THE AMOUNT PAID BY YOU FOR THE SOFTWARE AND DOCUMENTATION. \n\n4. TRADEMARK USAGE\nPayPal is a trademark PayPal, Inc. in the United States and other countries. Such trademarks may not be used \nto endorse or promote any product unless expressly permitted under separate agreement with PayPal. \n\n5. TERM\nYour rights under this Agreement shall terminate if you fail to comply with any of the material terms or \nconditions of this Agreement and do not cure such failure in a reasonable period of time after becoming \naware of such noncompliance. If all your rights under this Agreement terminate, you agree to cease use \nand distribution of the Software and Documentation as soon as reasonably practicable. \n\n6. GOVERNING LAW AND JURISDICTION. This Agreement is governed by the statutes and laws of the State of \nCalifornia, without regard to the conflicts of law principles thereof. If any part of this Agreement is \nfound void and unenforceable, it will not affect the validity of the balance of the Agreement, which shall \nremain valid and enforceable according to its terms. Any dispute arising out of or related to this Agreement \nshall be brought in the courts of Santa Clara County, California, USA.", + "json": "paypal-sdk-2013-2016.json", + "yaml": "paypal-sdk-2013-2016.yml", + "html": "paypal-sdk-2013-2016.html", + "license": "paypal-sdk-2013-2016.LICENSE" + }, + { + "license_key": "pbl-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-pbl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permissive Binary License\n\nVersion 1.0, September 2015\n\nRedistribution. Redistribution and use in binary form, without\nmodification, are permitted provided that the following conditions are\nmet:\n\n1) Redistributions must reproduce the above copyright notice and the\n following disclaimer in the documentation and/or other materials\n provided with the distribution.\n\n2) Unless to the extent explicitly permitted by law, no reverse\n engineering, decompilation, or disassembly of this software is\n permitted.\n\n3) Redistribution as part of a software development kit must include the\n accompanying file named \"DEPENDENCIES\" and any dependencies listed in\n that file.\n\n4) Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n\nLimited patent license. The copyright holders (and contributors) grant a\nworldwide, non-exclusive, no-charge, royalty-free patent license to\nmake, have made, use, offer to sell, sell, import, and otherwise\ntransfer this software, where such license applies only to those patent\nclaims licensable by the copyright holders (and contributors) that are\nnecessarily infringed by this software. This patent license shall not\napply to any combinations that include this software. No hardware is\nlicensed hereunder.\n\nIf you institute patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that the software\nitself infringes your patent(s), then your rights granted under this\nlicense shall terminate as of the date such litigation is filed.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\nCONTRIBUTORS \"AS IS.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT\nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\nFOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nHOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "pbl-1.0.json", + "yaml": "pbl-1.0.yml", + "html": "pbl-1.0.html", + "license": "pbl-1.0.LICENSE" + }, + { + "license_key": "pcre", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pcre", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PCRE LICENCE \n------------ \n\nPCRE is a library of functions to support regular expressions whose\nsyntax and semantics are as close as possible to those of the Perl 5\nlanguage.\n\nWritten by: Philip Hazel \nUniversity of Cambridge Computing Service, Cambridge, England. \nPhone: +44 1223 334714.\nCopyright (c) 1997-2001 University of Cambridge\n\nPermission is granted to anyone to use this software for any purpose on\nany computer system, and to redistribute it freely, subject to the\nfollowing restrictions:\n\n1. This software is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n2. The origin of this software must not be misrepresented, either by\nexplicit claim or by omission. In practice, this means that if you use\nPCRE in software which you distribute to others, commercially or\notherwise, you must put a sentence like this\n\"Regular expression support is provided by the PCRE library package,\nwhich is open source software, written by Philip Hazel, and copyright by\nthe University of Cambridge, England\" \n\nsomewhere reasonably visible in your documentation and in any relevant\nfiles or online help data or similar.\n\nA reference to the ftp site for the source, that is, to\nftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ \nshould also be given in the documentation.\n\n3. Altered versions must be plainly marked as such, and must not be\nmisrepresented as being the original software.\n\n4. If PCRE is embedded in any software that is released under the GNU\nGeneral Purpose Licence (GPL), or Lesser General Purpose Licence (LGPL),\nthen the terms of that licence shall supersede any condition above with\nwhich it is incompatible.\n\nThe documentation for PCRE, supplied in the \"doc\" directory, is\ndistributed under the same terms as the software itself.\n\nEnd PCRE LICENCE", + "json": "pcre.json", + "yaml": "pcre.yml", + "html": "pcre.html", + "license": "pcre.LICENSE" + }, + { + "license_key": "pd-mit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pd-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Modified MIT License for Public Domain software\n\nPublic Domain or legal equivalent\nOriginal authorship by [authors] (the \"Authors\") in [year]\n\nPermission is hereby granted, free of charge, to any person obtaining a \ncopy of this software and associated documentation files (the \n\"Software\"), to deal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, merge, publish, \ndistribute, sublicense, and/or sell copies of the Software, and to \npermit persons to whom the Software is furnished to do so.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS \nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF \nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER \nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING \nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER \nDEALINGS IN THE SOFTWARE.", + "json": "pd-mit.json", + "yaml": "pd-mit.yml", + "html": "pd-mit.html", + "license": "pd-mit.LICENSE" + }, + { + "license_key": "pd-programming", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pd-programming", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Coords.js is free for both commercial and non-commercial use and\nredistribution, provided that PD'Programming's copyright and disclaimer are\nretained intact. You are free to modify coords.js for your own use and\nto redistribute coords.js with your modifications, provided that the\nmodifications are clearly documented.\n\nThis program is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nmerchantability or fitness for a particular purpose. Please use it AT\nYOUR OWN RISK.", + "json": "pd-programming.json", + "yaml": "pd-programming.yml", + "html": "pd-programming.html", + "license": "pd-programming.LICENSE" + }, + { + "license_key": "pddl-1.0", + "category": "Public Domain", + "spdx_license_key": "PDDL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Open Data Commons \u2013 Public Domain Dedication & Licence (PDDL)\nPreamble\nThe Open Data Commons \u2013 Public Domain Dedication & Licence is a document intended to allow you to freely share, modify, and use this work for any purpose and without any restrictions. This licence is intended for use on databases or their contents (\"data\"), either together or individually.\n\nMany databases are covered by copyright. Some jurisdictions, mainly in Europe, have specific special rights that cover databases called the \"sui generis\" database right. Both of these sets of rights, as well as other legal rights used to protect databases and data, can create uncertainty or practical difficulty for those wishing to share databases and their underlying data but retain a limited amount of rights under a \"some rights reserved\" approach to licensing as outlined in the Science Commons Protocol for Implementing Open Access Data. As a result, this waiver and licence tries to the fullest extent possible to eliminate or fully license any rights that cover this database and data. Any Community Norms or similar statements of use of the database or data do not form a part of this document, and do not act as a contract for access or other terms of use for the database or data.\n\nThe position of the recipient of the work\n\nBecause this document places the database and its contents in or as close as possible within the public domain, there are no restrictions or requirements placed on the recipient by this document. Recipients may use this work commercially, use technical protection measures, combine this data or database with other databases or data, and share their changes and additions or keep them secret. It is not a requirement that recipients provide further users with a copy of this licence or attribute the original creator of the data or database as a source. The goal is to eliminate restrictions held by the original creator of the data and database on the use of it by others.\n\nThe position of the dedicator of the work\n\nCopyright law, as with most other law under the banner of \"intellectual property\", is inherently national law. This means that there exists several differences in how copyright and other intellectual property rights can be relinquished, waived or licensed in the many legal jurisdictions of the world. This is despite much harmonisation of minimum levels of protection. The internet and other communication technologies span these many disparate legal jurisdictions and thus pose special difficulties for a document relinquishing and waiving intellectual property rights, including copyright and database rights, for use by the global community. Because of this feature of intellectual property law, this document first relinquishes the rights and waives the relevant rights and claims. It then goes on to license these same rights for jurisdictions or areas of law that may make it difficult to relinquish or waive rights or claims.\n\nThe purpose of this document is to enable rightsholders to place their work into the public domain. Unlike licences for free and open source software, free cultural works, or open content licences, rightsholders will not be able to \"dual license\" their work by releasing the same work under different licences. This is because they have allowed anyone to use the work in whatever way they choose. Rightsholders therefore can't re-license it under copyright or database rights on different terms because they have nothing left to license. Doing so creates truly accessible data to build rich applications and advance the progress of science and the arts.\n\nThis document can cover either or both of the database and its contents (the data). Because databases can have a wide variety of content \u2013 not just factual data \u2013 rightsholders should use the Open Data Commons \u2013 Public Domain Dedication & Licence for an entire database and its contents only if everything can be placed under the terms of this document. Because even factual data can sometimes have intellectual property rights, rightsholders should use this licence to cover both the database and its factual data when making material available under this document; even if it is likely that the data would not be covered by copyright or database rights. \n\nRightsholders can also use this document to cover any copyright or database rights claims over only a database, and leave the contents to be covered by other licences or documents. They can do this because this document refers to the \"Work\", which can be either \u2013 or both \u2013 the database and its contents. As a result, rightsholders need to clearly state what they are dedicating under this document when they dedicate it.\n\nJust like any licence or other document dealing with intellectual property, rightsholders should be aware that one can only license what one owns. Please ensure that the rights have been cleared to make this material available under this document.\n\nThis document permanently and irrevocably makes the Work available to the public for any use of any kind, and it should not be used unless the rightsholder is prepared for this to happen. \n\nPart I: Introduction\n\nThe Rightsholder (the Person holding rights or claims over the Work) agrees as follows: \n1.0 \tDefinitions of Capitalised Words\n\n\"Copyright\" \u2013 Includes rights under copyright and under neighbouring rights and similarly related sets of rights under the law of the relevant jurisdiction under Section 6.4.\n\n\"Data\" \u2013 The contents of the Database, which includes the information, independent works, or other material collected into the Database offered under the terms of this Document. \n\n\"Database\" \u2013 A collection of Data arranged in a systematic or methodical way and individually accessible by electronic or other means offered under the terms of this Document. \n\n\"Database Right\" \u2013 Means rights over Data resulting from the Chapter III (\"sui generis\") rights in the Database Directive (Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases) and any future updates as well as any similar rights available in the relevant jurisdiction under Section 6.4. \n\n\"Document\" \u2013 means this relinquishment and waiver of rights and claims and back up licence agreement. \n\n\"Person\" \u2013 Means a natural or legal person or a body of persons corporate or incorporate.\n\n\"Use\" \u2013 As a verb, means doing any act that is restricted by Copyright or Database Rights whether in the original medium or any other; and includes modifying the Work as may be technically necessary to use it in a different mode or format. This includes the right to sublicense the Work.\n\n\"Work\" \u2013 Means either or both of the Database and Data offered under the terms of this Document. \n\n\"You\" \u2013 the Person acquiring rights under the licence elements of this Document.\n\nWords in the singular include the plural and vice versa.\n2.0 \tWhat this document covers\n\n2.1. Legal effect of this Document. This Document is:\n\na. A dedication to the public domain and waiver of Copyright and Database Rights over the Work; and\n\nb. A licence of Copyright and Database Rights over the Work in jurisdictions that do not allow for relinquishment or waiver.\n\n2.2. Legal rights covered.\n\n a. Copyright. Any copyright or neighbouring rights in the Work. Copyright law varies between jurisdictions, but is likely to cover: the Database model or schema, which is the structure, arrangement, and organisation of the Database, and can also include the Database tables and table indexes; the data entry and output sheets; and the Field names of Data stored in the Database. Copyright may also cover the Data depending on the jurisdiction and type of Data; and\n\n b. Database Rights. Database Rights only extend to the extraction and re-utilisation of the whole or a substantial part of the Data. Database Rights can apply even when there is no copyright over the Database. Database Rights can also apply when the Data is removed from the Database and is selected and arranged in a way that would not infringe any applicable copyright.\n\n2.2 Rights not covered. \n\na. This Document does not apply to computer programs used in the making or operation of the Database; \n\nb. This Document does not cover any patents over the Data or the Database. Please see Section 4.2 later in this Document for further details; and\n\nc. This Document does not cover any trade marks associated with the Database. Please see Section 4.3 later in this Document for further details.\n\nUsers of this Database are cautioned that they may have to clear other rights or consult other licences.\n\n2.3 Facts are free. The Rightsholder takes the position that factual information is not covered by Copyright. This Document however covers the Work in jurisdictions that may protect the factual information in the Work by Copyright, and to cover any information protected by Copyright that is contained in the Work.\nPart II: Dedication to the public domain\n3.0 \tDedication, waiver, and licence of Copyright and Database Rights\n\n3.1 Dedication of Copyright and Database Rights to the public domain. The Rightsholder by using this Document, dedicates the Work to the public domain for the benefit of the public and relinquishes all rights in Copyright and Database Rights over the Work.\n\na. The Rightsholder realises that once these rights are relinquished, that the Rightsholder has no further rights in Copyright and Database Rights over the Work, and that the Work is free and open for others to Use.\n\nb. The Rightsholder intends for their relinquishment to cover all present and future rights in the Work under Copyright and Database Rights, whether they are vested or contingent rights, and that this relinquishment of rights covers all their heirs and successors.\n\nThe above relinquishment of rights applies worldwide and includes media and formats now known or created in the future.\n\n3.2 Waiver of rights and claims in Copyright and Database Rights when Section 3.1 dedication inapplicable. If the dedication in Section 3.1 does not apply in the relevant jurisdiction under Section 6.4, the Rightsholder waives any rights and claims that the Rightsholder may have or acquire in the future over the Work in:\n\na. Copyright; and\n\nb. Database Rights.\n\n To the extent possible in the relevant jurisdiction, the above waiver of rights and claims applies worldwide and includes media and formats now known or created in the future. The Rightsholder agrees not to assert the above rights and waives the right to enforce them over the Work. \n\n3.3 Licence of Copyright and Database Rights when Sections 3.1 and 3.2 inapplicable. If the dedication and waiver in Sections 3.1 and 3.2 does not apply in the relevant jurisdiction under Section 6.4, the Rightsholder and You agree as follows:\n\na. The Licensor grants to You a worldwide, royalty-free, non-exclusive, licence to Use the Work for the duration of any applicable Copyright and Database Rights. These rights explicitly include commercial use, and do not exclude any field of endeavour. To the extent possible in the relevant jurisdiction, these rights may be exercised in all media and formats whether now known or created in the future.\n\n3.4 Moral rights. This section covers moral rights, including the right to be identified as the author of the Work or to object to treatment that would otherwise prejudice the author's honour and reputation, or any other derogatory treatment:\n\na. For jurisdictions allowing waiver of moral rights, Licensor waives all moral rights that Licensor may have in the Work to the fullest extent possible by the law of the relevant jurisdiction under Section 6.4; \n\nb. If waiver of moral rights under Section 3.4 a in the relevant jurisdiction is not possible, Licensor agrees not to assert any moral rights over the Work and waives all claims in moral rights to the fullest extent possible by the law of the relevant jurisdiction under Section 6.4; and\n\nc. For jurisdictions not allowing waiver or an agreement not to assert moral rights under Section 3.4 a and b, the author may retain their moral rights over the copyrighted aspects of the Work.\n\nPlease note that some jurisdictions do not allow for the waiver of moral rights, and so moral rights may still subsist over the work in some jurisdictions.\n\n4.0 \tRelationship to other rights\n\n4.1 No other contractual conditions. The Rightsholder makes this Work available to You without any other contractual obligations, either express or implied. Any Community Norms statement associated with the Work is not a contract and does not form part of this Document.\n\n4.2 Relationship to patents. This Document does not grant You a licence for any patents that the Rightsholder may own. Users of this Database are cautioned that they may have to clear other rights or consult other licences.\n\n4.3 Relationship to trade marks. This Document does not grant You a licence for any trade marks that the Rightsholder may own or that the Rightsholder may use to cover the Work. Users of this Database are cautioned that they may have to clear other rights or consult other licences.\n\nPart III: General provisions\n\n5.0 \tWarranties, disclaimer, and limitation of liability\n\n5.1 The Work is provided by the Rightsholder \"as is\" and without any warranty of any kind, either express or implied, whether of title, of accuracy or completeness, of the presence of absence of errors, of fitness for purpose, or otherwise. Some jurisdictions do not allow the exclusion of implied warranties, so this exclusion may not apply to You.\n\n5.2 Subject to any liability that may not be excluded or limited by law, the Rightsholder is not \nliable for, and expressly excludes, all liability for loss or damage however and whenever caused to anyone by any use under this Document, whether by You or by anyone else, and whether caused by any fault on the part of the Rightsholder or not. This exclusion of liability includes, but is not limited to, any special, incidental, consequential, punitive, or exemplary damages. This exclusion applies even if the Rightsholder has been advised of the possibility of such damages.\n\n5.3 If liability may not be excluded by law, it is limited to actual and direct financial loss to the extent it is caused by proved negligence on the part of the Rightsholder.\n\n6.0 \tGeneral\n\n6.1 If any provision of this Document is held to be invalid or unenforceable, that must not affect the validity or enforceability of the remainder of the terms of this Document. \n\n6.2 This Document is the entire agreement between the parties with respect to the Work covered here. It replaces any earlier understandings, agreements or representations with respect to the Work not specified here. \n\n6.3 This Document does not affect any rights that You or anyone else may independently have under any applicable law to make any use of this Work, including (for jurisdictions where this Document is a licence) fair dealing, fair use, database exceptions, or any other legally recognised limitation or exception to infringement of copyright or other applicable laws. \n\n6.4 This Document takes effect in the relevant jurisdiction in which the Document terms are sought to be enforced. If the rights waived or granted under applicable law in the relevant jurisdiction includes additional rights not waived or granted under this Document, these additional rights are included in this Document in order to meet the intent of this Document.", + "json": "pddl-1.0.json", + "yaml": "pddl-1.0.yml", + "html": "pddl-1.0.html", + "license": "pddl-1.0.LICENSE" + }, + { + "license_key": "pdf-creator-pilot", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-pdf-creator-pilot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PDF Creator Pilot License Agreement\n \nThis is a legal agreement ('Agreement') between you, the end user, and Two Pilots. This agreement defines the licensing terms for the PDF Creator Pilot which is software shipped as a Windows Installer Package and includes all related documentation, examples, web pages, and other materials which support the use of the PDF Creator Pilot (collectively, the 'Software').\nThis license is granted by Two Pilots for all products purchased either directly or through any authorized agent of the company.\nIMPORTANT: CAREFULLY READ THIS LICENSE BEFORE USING THIS PRODUCT. INSTALLING, COPYING, OR OTHERWISE USING THIS PRODUCT INDICATES YOUR ACKNOWLEDGMENT THAT YOU HAVE READ THIS LICENSE AND AGREE TO ITS TERMS. IF YOU DO NOT AGREE, RETURN THE COMPLETE PRODUCT TO TWO PILOTS FOR A FULL REFUND. THIS LICENSE AGREEMENT IS YOUR PROOF OF LICENSE. PLEASE TREAT IT AS VALUABLE PROPERTY.\nThis License will continue as long as you use the Software. However, it will terminate if you fail to comply with any of its terms or conditions. You must agree, upon termination, to destroy all copies of PDF Creator Pilot that you have. \n \n1. Ownership. The Software is and shall remain a proprietary product of Two Pilots. Two Pilots and Two Pilots' licensors shall retain ownership of all copyrights, patents, trademarks, trade names, trade secrets, and other proprietary rights relating to or residing in the Software. Except for the license grant provided in Section 2, you shall have no right, title, or interest in or to the Software. The Software is licensed, not sold, to you for you to use only under the terms of this Agreement. If you agree to be bound by all of the terms of this Agreement, you will only own the media (if any) on which the Software may have been provided, not the Software itself. \n \n2. Grant of License.\nTypes of licenses. There are 5 (five) types of licenses issued for PDF Creator Pilot. These are: \n a. Small Business License. License issued per company, for an unlimited number of developers provided that total number of employees at time of purchase is less than or equal to 10 (ten). License grants the right to use the Software by web and desktop applications that your company exposes to clients. Only disk-based generation is enabled. The 'Producer' field (a tag which exists in the properties of the generated PDF) always contains the 'PDF Creator Pilot' string. \n b. Web License for Small Business. License issued per company, for an unlimited number of developers provided that total number of employees at time of purchase is less than or equal to 10 (ten). License grants right to use the Software by web and desktop applications that your company exposes to clients. Disk-based and in-memory generation is enabled. You may change the 'Producer' field of generated PDF files. \n c. In-House License. License issued per company, for an unlimited number of developers. License grants right to use the Software by both web and desktop applications used within your company only. Disk-based and in-memory generation is enabled. The 'Producer' field (a tag which exists in the properties of the generated PDF) always contains the 'PDF Creator Pilot' string. \n d. Application License. License issued per company, for an unlimited number of developers. License grants right to use the Software by desktop applications that your company sells/distributes to clients. Only disk-based generation is enabled. You may change the 'Producer' field of generated PDF files. \n e. Web License. License issued per company, for an unlimited number of developers. License grants right to use the Software by both web and desktop applications that your company exposes/sells/distributes to clients. Disk-based and in-memory generation is enabled. You may change the 'Producer' field of generated PDF files.\nInstallation and Use. Two Pilots grants a limited, non-exclusive, non-transferable right to use the Software for the purpose of developing web (if the Software is licensed under any license type except Application License) and desktop applications. You may install and use the Software on any number of developer computers your company owns. You may also make copies of the Software for backup and archival purposes. You may use the Software in your specific purpose application programs, in which case Two Pilots grants you permission under Two Pilots copyright to use the Software as part of your programs. Also, if you purchased a Small Business License, Web License for Small Business, Application License, or Web License, Two Pilots grants you permission to give away or sell such programs without additional licenses or fees (i.e. 'royalty-free'), as long as all copies of these programs bear a valid copyright notice and provided that your program is not merely a set or subset of the Software or a compilation or development tool or library which includes all or a portion of the Software, or is otherwise a product that is generally competitive with or a substitute for software. This permission is granted solely for the purpose set forth above, and you are not authorized to use the Software in any other manner.\nRedistribution. Two Pilots grants you a royalty-free right to distribute copies of the runtime files for use with applications you have developed using the Software, if the Software is licensed under a Small Business License, Web License for Small Business, Application License, or Web License. Distribution of Software runtime files is forbidden if the Software is licensed under an In-House License. Software runtime files are listed in Exhibit A. These libraries may not be distributed for any other purpose than to accompany software that you have developed using the Software. \n \n3. Other Restrictions. You may not rent, lease, sub-license, transfer, or sell the Software. You may not translate, reverse engineer, decompile, or disassemble the Software except (and only to the extent) that such activity is expressly permitted by applicable law notwithstanding this limitation. Two Pilots reserves all rights not expressly granted to you. \n \n4. Two Pilots may provide you with support services related to the Software during the 12 months after the Software is purchased. Use of support services is governed by Two Pilots policies. Any supplemental Software code provided to you as part of the support services shall be considered part of the Software and subject to the terms and conditions of this Agreement. With respect to technical information you provide to Two Pilots as part of the support services, Two Pilots may use such information for its business purposes, including product support and development. Two Pilots will not utilize such technical information in a form that personally identifies you. \n \n5. Copyright. PDF Creator Pilot is owned by Two Pilots and is protected by United States copyright laws and international treaty provisions. You may make copies of PDF Creator Pilot for backup and archival purposes. You may not, under any circumstances, copy the manual and other written materials that accompany the Software. \n \n6. Free and Trial Versions. Where the Software is provided free on a permanent, semi-permanent, limited use, or trial basis, all the terms relating to licensing shall be identical, save that you accept that there has been no financial gain on Two Pilots' part and as such you use the Software without warranty or guarantees of any kind. The risk is entirely yours, and you acknowledge this. You agree to indemnify us against all claims by you or any third party for any reason whatsoever. You accept that we have provided the Software for your sole benefit and have received nothing to our benefit and as such cannot be held responsible in any way or for any reason. \n \n7. Limited Warranty. Two Pilots does not warrant that the functions contained in the Software will meet your requirement or that the operation of the Software will be uninterrupted or error free. The Software is provided \"as is\" without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or suitability for a particular purpose. The user assumes the entire risk of any damage caused by the Software. \n \n8. Limitation of Liability. In no event shall Two Pilots or its licensors be liable to you for any consequential, special, incidental, or indirect damages of any kind arising out of the delivery, performance, or use of the Software, even if Two Pilots has been advised of the possibility of such damages. In any event, Two Pilots' liability for any claim, whether in contract, tort, or any other theory of liability will not exceed the license fee paid by you. \n \n9. Governing law and general provisions. This Agreement will be governed by the laws of the United States of America, excluding the application of its conflicts of law rules. If any part of this Agreement is found void and unenforceable, it will not affect the validity of the rest of the Agreement, which shall remain valid and enforceable according to its terms. You may not ship, transfer, or export the Software into any country or use it in any manner prohibited by any export laws, restrictions, or regulations. This Agreement shall automatically terminate upon failure by you to comply with its terms. \n \nCopyright \u00a9 1999-2012 Two Pilots and its licensors. All rights reserved. The Software is copyrighted and protected by U.S. copyright laws and international copyright treaties, as well as other intellectual property laws and treaties.\nWeb site: http://www.colorpilot.com/\n \nExhibit A\nPDFCreatorPilot.DLL \nPDFCreatorPilot.MSI", + "json": "pdf-creator-pilot.json", + "yaml": "pdf-creator-pilot.yml", + "html": "pdf-creator-pilot.html", + "license": "pdf-creator-pilot.LICENSE" + }, + { + "license_key": "pdl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-pdl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PUBLIC DOCUMENTATION LICENSE\nVersion 1.0\n\n1.0 DEFINITIONS.\n\n1.1. \"Commercial Use\" means distribution or otherwise making the\nDocumentation available to a third party.\n\n1.2. \"Contributor\" means a person or entity who creates or contributes\nto the creation of Modifications.\n\n1.3. \"Documentation\" means the Original Documentation or Modifications\nor the combination of the Original Documentation and Modifications, in\neach case including portions thereof.\n\n1.4. \"Electronic Distribution Mechanism\" means a mechanism generally\naccepted for the electronic transfer of data.\n\n1.5. \"Initial Writer\" means the individual or entity identified as the\nInitial Writer in the notice required by the Appendix.\n\n1.6. \"Larger Work\" means a work which combines Documentation or portions\nthereof with documentation or other writings not governed by the terms\nof this License.\n\n1.7. \"License\" means this document.\n\n1.8. \"Modifications\" means any addition to or deletion from the\nsubstance or structure of either the Original Documentation or any\nprevious Modifications, such as a translation, abridgment, condensation,\nor any other form in which the Original Documentation or previous\nModifications may be recast, transformed or adapted. A work consisting\nof editorial revisions, annotations, elaborations, and other\nmodifications which, as a whole represent an original work of\nauthorship, is a Modification. For example, when Documentation is\nreleased as a series of documents, a Modification is:\n\nA. Any addition to or deletion from the contents of the Original\nDocumentation or previous Modifications.\n\nB. Any new documentation that contains any part of the Original\nDocumentation or previous Modifications.\n\n1.9. \"Original Documentation\" means documentation described as Original\nDocumentation in the notice required by the Appendix, and which, at the\ntime of its release under this License is not already Documentation\ngoverned by this License.\n\n1.10. \"Editable Form\" means the preferred form of the Documentation for\nmaking Modifications to it. The Documentation can be in an electronic,\ncompressed or archival form, provided the appropriate decompression or\nde-archiving software is widely available for no charge.\n\n1.11. \"You\" (or \"Your\") means an individual or a legal entity exercising\nrights under, and complying with all of the terms of this License or a\nfuture version of this License issued under Section 5.0 (\"Versions of\nthe License\"). For legal entities, \"You\" includes any entity which\ncontrols, is controlled by, or is under common control with You. For\npurposes of this definition, \"control\" means (a) the power, direct or\nindirect, to cause the direction or management of such entity, whether\nby contract or otherwise, or (b) ownership of more than fifty percent\n(50%) of the outstanding shares or beneficial ownership of such entity.\n\n2.0 LICENSE GRANTS.\n\n2.1 Initial Writer Grant.\n\nThe Initial Writer hereby grants You a world-wide, royalty-free, non-\nexclusive license to use, reproduce, prepare Modifications of, compile,\npublicly perform, publicly display, demonstrate, market, disclose and\ndistribute the Documentation in any form, on any media or via any\nElectronic Distribution Mechanism or other method now known or later\ndiscovered, and to sublicense the foregoing rights to third parties\nthrough multiple tiers of sublicensees in accordance with the terms of\nthis License.\n\nThe license rights granted in this Section 2.1 (\"Initial Writer Grant\")\nare effective on the date Initial Writer first distributes Original\nDocumentation under the terms of this License.\n\n2.2. Contributor Grant.\n\nEach Contributor hereby grants You a world-wide, royalty-free, non-\nexclusive license to use, reproduce, prepare Modifications of, compile,\npublicly perform, publicly display, demonstrate, market, disclose and\ndistribute the Documentation in any form, on any media or via any\nElectronic Distribution Mechanism or other method now known or later\ndiscovered, and to sublicense the foregoing rights to third parties\nthrough multiple tiers of sublicensees in accordance with the terms of\nthis License.\n\nThe license rights granted in this Section 2.2 (\"Contributor Grant\") are\neffective on the date Contributor first makes Commercial Use of the\nDocumentation.\n\n3.0 DISTRIBUTION OBLIGATIONS\n\n3.1. Application of License\n\nThe Modifications which You create or to which You contribute are\ngoverned by the terms of this License, including without limitation\nSection 2.2 (\"Contributor Grant\"). The Documentation may be distributed\nonly under the terms of this License or a future version of this License\nreleased in accordance with Section 5.0 (\"Versions of the License\"), and\nYou must include a copy of this License with every copy of the\nDocumentation You distribute. You may not offer or impose any terms that\nalter or restrict the applicable version of this License or the\nrecipients' rights hereunder. However, You may include an additional\ndocument offering the additional rights described in Section 3.5\n(\"Required Notices\").\n\n3.2. Availability of Documentation.\n\nAny Modification which You create or to which You contribute must be\nmade available publicly in Editable Form under the terms of this License\nvia a fixed medium or an accepted Electronic Distribution Mechanism.\n\n3.3. Description of Modifications.\n\nAll Documentation to which You contribute must identify the changes You\nmade to create that Documentation and the date of any change. You must\ninclude a prominent statement that the Modification is derived, directly\nor indirectly, from Original Documentation provided by the Initial\nWriter and include the name of the Initial Writer in the Documentation\nor via an electronic link that describes the origin or ownership of the\nDocumentation. The foregoing change documentation may be created by\nusing an electronic program that automatically tracks changes to the\nDocumentation, and such changes must be available publicly for at least\nfive years following release of the changed Documentation.\n\n3.4. Intellectual Property Matters.\n\nContributor represents that Contributor believes that Contributor's\nModifications are Contributor's original creation(s) and/or Contributor\nhas sufficient rights to grant the rights conveyed by this License.\n\n3.5. Required Notices.\n\nYou must duplicate the notice in the Appendix in each file of the\nDocumentation. If it is not possible to put such notice in a particular\nDocumentation file due to its structure, then You must include such\nnotice in a location (such as a relevant directory) where a reader would\nbe likely to look for such a notice, for example, via a hyperlink in\neach file of the Documentation that takes the reader to a page that\ndescribes the origin and ownership of the Documentation. If You created\none or more Modification(s) You may add your name as a Contributor to\nthe notice described in the Appendix.\n\nYou must also duplicate this License in any Documentation file (or with\na hyperlink in each file of the Documentation) where You describe\nrecipients' rights or ownership rights.\n\nYou may choose to offer, and to charge a fee for, warranty, support,\nindemnity or liability obligations to one or more recipients of\nDocumentation. However, You may do so only on Your own behalf, and not\non behalf of the Initial Writer or any Contributor. You must make it\nabsolutely clear than any such warranty, support, indemnity or liability\nobligation is offered by You alone, and You hereby agree to indemnify\nthe Initial Writer and every Contributor for any liability incurred by\nthe Initial Writer or such Contributor as a result of warranty, support,\nindemnity or liability terms You offer.\n\n3.6. Larger Works.\n\nYou may create a Larger Work by combining Documentation with other\ndocuments not governed by the terms of this License and distribute the\nLarger Work as a single product. In such a case, You must make sure the\nrequirements of this License are fulfilled for the Documentation.\n\n4.0 APPLICATION OF THIS LICENSE.\n\nThis License applies to Documentation to which the Initial Writer has\nattached this License and the notice in the Appendix.\n\n5.0 VERSIONS OF THE LICENSE.\n\n5.1. New Versions.\n\nInitial Writer may publish revised and/or new versions of the License\nfrom time to time. Each version will be given a distinguishing version\nnumber.\n\n5.2. Effect of New Versions.\n\nOnce Documentation has been published under a particular version of the\nLicense, You may always continue to use it under the terms of that\nversion. You may also choose to use such Documentation under the terms\nof any subsequent version of the License published by\n [Insert name of the foundation, company, Initial\nWriter, or whoever may modify this License]. No one other than\n [Insert name of the foundation, company, Initial\nWriter, or whoever may modify this License] has the right to modify the\nterms of this License. Filling in the name of the Initial Writer,\nOriginal Documentation or Contributor in the notice described in the\nAppendix shall not be deemed to be Modifications of this License.\n\n6.0 DISCLAIMER OF WARRANTY.\n\nDOCUMENTATION IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS'' BASIS,\nWITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\nWITHOUT LIMITATION, WARRANTIES THAT THE DOCUMENTATION IS FREE OF\nDEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.\nTHE ENTIRE RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE\nDOCUMENTATION IS WITH YOU. SHOULD ANY DOCUMENTATION PROVE DEFECTIVE IN\nANY RESPECT, YOU (NOT THE INITIAL WRITER OR ANY OTHER CONTRIBUTOR)\nASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS\nDISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO\nUSE OF ANY DOCUMENTATION IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS\nDISCLAIMER.\n\n7.0 TERMINATION.\n\nThis License and the rights granted hereunder will terminate\nautomatically if You fail to comply with terms herein and fail to cure\nsuch breach within 30 days of becoming aware of the breach. All\nsublicenses to the Documentation which are properly granted shall\nsurvive any termination of this License. Provisions which, by their\nnature, must remain in effect beyond the termination of this License\nshall survive.\n\n8.0 LIMITATION OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT\n(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL\nWRITER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF DOCUMENTATION, OR\nANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY\nDIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY\nCHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,\nWORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\nDAMAGES OR LOSSES ARISING OUT OF OR RELATING TO THE USE OF THE\nDOCUMENTATION, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n9.0 U.S. GOVERNMENT END USERS.\n\nIf Documentation is being acquired by or on behalf of the U.S.\nGovernment or by a U.S. Government prime contractor or subcontractor (at\nany tier), then the Government's rights in Documentation will be only as\nset forth in this Agreement; this is in accordance with 48 CFR 227.7201\nthrough 227.7202-4 (for Department of Defense (DOD) acquisitions) and\nwith 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n10.0 MISCELLANEOUS.\n\nThis License represents the complete agreement concerning the subject\nmatter hereof. If any provision of this License is held to be\nunenforceable, such provision shall be reformed only to the extent\nnecessary to make it enforceable. This License shall be governed by\nCalifornia law, excluding its conflict-of-law provisions. With respect\nto disputes or any litigation relating to this License, the losing party\nis responsible for costs, including without limitation, court costs and\nreasonable attorneys' fees and expenses. The application of the United\nNations Convention on Contracts for the International Sale of Goods is\nexpressly excluded. Any law or regulation which provides that the\nlanguage of a contract shall be construed against the drafter shall not\napply to this License.\n\nAppendix\n\nPublic Documentation License Notice\n\nThe contents of this Documentation are subject to the Public\nDocumentation License Version 1.0 (the \"License\"); you may only use this\nDocumentation if you comply with the terms of this License. A copy of\nthe License is available at [Insert hyperlink].\n\nThe Original Documentation is . The Initial Writer of\nthe Original Documentation is Copyright (C) [Insert\nyear(s)]. All Rights Reserved. (Initial Writer\ncontact(s): [Insert hyperlink/alias]).\n\nContributor(s): .\n\nPortions created by are Copyright (C) [Insert year(s)].\nAll Rights Reserved. (Contributor contact(s): [Insert\nhyperlink/alias]).\n\nNOTE: The text of this Appendix may differ slightly from the text of the\nnotices in the files of the Original Documentation. You should use the\ntext of this Appendix rather than the text found in the Original\nDocumentation for Your Modifications.", + "json": "pdl-1.0.json", + "yaml": "pdl-1.0.yml", + "html": "pdl-1.0.html", + "license": "pdl-1.0.LICENSE" + }, + { + "license_key": "perl-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-perl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Perl Kit, Version 1.0\n\n\t\t Copyright (c) 1987, Larry Wall\n\nYou may copy the perl kit in whole or in part as long as you don't try to\nmake money off it, or pretend that you wrote it.", + "json": "perl-1.0.json", + "yaml": "perl-1.0.yml", + "html": "perl-1.0.html", + "license": "perl-1.0.LICENSE" + }, + { + "license_key": "peter-deutsch-document", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-peter-deutsch-document", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to copy and distribute this document for any\npurpose and without charge, including translations into other\nlanguages and incorporation into compilations, provided that the\ncopyright notice and this notice are preserved, and that any\nsubstantive changes or deletions from the original are clearly\nmarked.", + "json": "peter-deutsch-document.json", + "yaml": "peter-deutsch-document.yml", + "html": "peter-deutsch-document.html", + "license": "peter-deutsch-document.LICENSE" + }, + { + "license_key": "pfe-proprietary-notice", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-pfe-proprietary-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You expect me to believe that this stuff is free?\nI could get people to pay for this? Yes, it's completely free - you'll find the minimalist terms and conditions in the various readme files (you do look at readme files, don't you?) in the release ZIP archives and in the help file; but basically you can use PFE at home, at work, in the car and any improbable location of your choice without paying me a penny (or cent, if you're across the planet from where I am).\n\nBut in the unlikely circumstance that you actually think you'd like to distribute PFE with your commercial product - (no, don't laugh - it was known to happen) - I would want to sell you a licence. Well, I do have a mortgage to pay and a computer to support.", + "json": "pfe-proprietary-notice.json", + "yaml": "pfe-proprietary-notice.yml", + "html": "pfe-proprietary-notice.html", + "license": "pfe-proprietary-notice.LICENSE" + }, + { + "license_key": "pftijah-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-pftijah-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PfTijah Public License Version 1.1\n\nThis License is a derivative of the MonetDB Public License Version 1.1, where the difference is that all references to \"MonetDB\" and \"CWI\" have been changed to \"PfTijah\" and \"University of Twente\"\n\n1. Definitions.\n1.0.1. \"Commercial Use\"\nmeans distribution or otherwise making the Covered Code available to a third party.\n1.1. \"Contributor\"\nmeans each entity that creates or contributes to the creation of Modifications.\n1.2. \"Contributor Version\"\nmeans the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor.\n1.3. \"Covered Code\"\nmeans the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof.\n1.4. \"Electronic Distribution Mechanism\"\nmeans a mechanism generally accepted in the software development community for the electronic transfer of data.\n1.5. \"Executable\"\nmeans Covered Code in any form other than Source Code.\n1.6. \"Initial Developer\"\nmeans the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A.\n1.7. \"Larger Work\"\nmeans a work which combines Covered Code or portions thereof with code not governed by the terms of this License.\n1.8. \"License\"\nmeans this document.\n1.8.1. \"Licensable\"\nmeans having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein.\n1.9. \"Modifications\"\nmeans any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is:\nAny addition to or deletion from the contents of a file containing Original Code or previous Modifications.\nAny new file that contains any part of the Original Code or previous Modifications.\n1.10. \"Original Code\"\nmeans Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License.\n1.10.1. \"Patent Claims\"\nmeans any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor.\n1.11. \"Source Code\"\nmeans the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge.\n1.12. \"You\" (or \"Your\")\nmeans an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, \"You\" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, \"control\" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2. Source Code License.\n\n2.1. The Initial Developer Grant.\nThe Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims:\nunder intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and\nunder Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof).\nthe licenses granted in this Section 2.1 (a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License.\nNotwithstanding Section 2.1 (b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices.\n\n2.2. Contributor Grant.\nSubject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license\nunder intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and\nunder Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination).\nthe licenses granted in Sections 2.2 (a) and 2.2 (b) are effective on the date Contributor first makes Commercial Use of the Covered Code.\nNotwithstanding Section 2.2 (b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor.\n\n3. Distribution Obligations.\n\n3.1. Application of License.\nThe Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5.\n\n3.2. Availability of Source Code.\nAny Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\n3.3. Description of Modifications.\nYou must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters\n(a) Third Party Claims\nIf Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled \"LEGAL\" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained.\n\n(b) Contributor APIs\nIf Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file.\n\n(c) Representations.\nContributor represents that, except as disclosed pursuant to Section 3.4 (a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License.\n\n3.5. Required Notices.\nYou must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions.\nYou may distribute Covered Code in Executable form only if the requirements of Sections 3.1, 3.2, 3.3, 3.4 and 3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer.\n\n3.7. Larger Works.\nYou may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n\n5. Application of this License.\n\nThis License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n\n6.1. New Versions\nThe \"University of Twente\" may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number.\n\n6.2. Effect of New Versions\nOnce Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by \"University of Twente\". No one other than \"University of Twente\" has the right to modify the terms applicable to Covered Code created under this License.\n\n6.3. Derivative Works\nIf You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases \"PfTijah\", \"University of Twente\" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the PfTijah Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.)\n\n7. DISCLAIMER OF WARRANTY\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. Termination\n\n8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.\n\n8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as \"Participant\") alleging that:\nsuch Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above.\nany software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant.\n\n8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination.\n\n9. LIMITATION OF LIABILITY\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. government end users\n\nThe Covered Code is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n\n11. Miscellaneous\n\nThis License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by the laws of The Netherlands and You hereby irrevocably agree that the Courts of Amsterdam, The Netherlands, are to have jurisdiction to settle any disputes which may arise out of or in connection with this License. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n12. Responsibility for claims\n\nAs between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\n13. Multiple-licensed code\n\nInitial Developer may designate portions of the Covered Code as \"Multiple-Licensed\". \"Multiple-Licensed\" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the PfTijah Public License or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A.\n\nExhibit A - PfTijah Public License.\n\n\"The contents of this file are subject to the PfTijah Public License\nVersion 1.1 (the \"License\"); you may not use this file except in\ncompliance with the License. You may obtain a copy of the License at\nhttp://dbappl.cs.utwente.nl/Legal/PfTijah-1.1.html\n\nSoftware distributed under the License is distributed on an \"AS IS\"\nbasis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the\nLicense for the specific language governing rights and limitations\nunder the License.\n\nThe Original Code is .\n\nThe Initial Developer of the Original Code is .\nPortions created by are Copyright (C) \n . All Rights Reserved.\n\nContributor(s): .\n\nAlternatively, the contents of this file may be used under the terms\nof the license (the \"[ ] License\"), in which case the\nprovisions of [ ] License are applicable instead of those\nabove. If you wish to allow use of your version of this file only\nunder the terms of the [ ] License and not to allow others to use\nyour version of this file under the PfTijah Public License, indicate\nyour decision by deleting the provisions above and replace them with\nthe notice and other provisions required by the [ ] License. If you\ndo not delete the provisions above, a recipient may use your version\nof this file under either the PfTijah Public License or the [ ] License.\"\nNOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.", + "json": "pftijah-1.1.json", + "yaml": "pftijah-1.1.yml", + "html": "pftijah-1.1.html", + "license": "pftijah-1.1.LICENSE" + }, + { + "license_key": "pftus-1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-pftus-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The P.F.T.U.S(Protected Free To Use Software) License\n\nVersion 1.1x\nUnless required by applicable law or agreed to in writing, software\ndistributed under this License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nYou are not allowed to re-license this Software, Product, Binary, Source\nCode at all; unless you are the copyright holder.\nYour use of this software indicates your acceptance of this license agreement\nand warranty. We reserve rights to change this license or completely remove it\nat ANY TIME without ANY notice.\nPlease notice that you are refereed to as \"You\", \"Your\" and \"Mirrorer\" and\n\"Re-distributor\"\n\nSOURCE CODE\n 1. You do not have permissions to use this code to make a profit in ANY\n POSSIBLE WAY, NOR are you allowed to use it for competing purposes[1];\n contributing to the source code is allowed provided you do it either\n via forking or similar way AND you don't make any kind of profit from it\n unless you were specifically hired to contribute.\n 2. Mirroring is allowed as long as the mirrorer don't make any profit from\n mirroring of the code.\n\nBINARIES\n 1. Binaries may not be re-distributed at all[2]\n 2. Mirroring is allowed as long as the mirrorer don't make any profit\n from mirroring the produced binaries.\n\nDOCUMENTATION\n 1. Redistribution of the included documentation is allowed as long as the\n re-distributor comply the the following term(s):\n a. You shall not make any more profit from it than what the upkeep of\n the documentation costs.\n b. You shall link back to the original documentation in the header of\n the redistribution web-page.\n 2. Re-writing new documentation is allowed as long as it comply to the\n following term(s):\n a. It's clearly stated in the documentation that it isn't official.\n b. You are allowed to make a profit from it; as long as it is under\n 10 000 USD annually.\nPlease notice that you can request written permission from the owner of this\nSource Code/Binary or Project for Redistribution, using this software\nfor competing purposes or/and bypass the whole license.\n1. \"competing purposes\" means ANY software on ANY platform that is designed to\nbe used in similar fashion(eg serves the same or similar purposes as the\noriginal software).\n2. This doesn't apply to the following domains:\n * github.com\n * AND any domain with written permissions\nChanging is not permitted,\nredistribution is allowed. Some rights reserved.", + "json": "pftus-1.1.json", + "yaml": "pftus-1.1.yml", + "html": "pftus-1.1.html", + "license": "pftus-1.1.LICENSE" + }, + { + "license_key": "phil-bunce", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-phil-bunce", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Feel free to use this code any way you wish, but please remember it comes without any sort of warranty.", + "json": "phil-bunce.json", + "yaml": "phil-bunce.yml", + "html": "phil-bunce.html", + "license": "phil-bunce.LICENSE" + }, + { + "license_key": "philippe-de-muyter", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-philippe-de-muyter", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This program is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE.", + "json": "philippe-de-muyter.json", + "yaml": "philippe-de-muyter.yml", + "html": "philippe-de-muyter.html", + "license": "philippe-de-muyter.LICENSE" + }, + { + "license_key": "philips-proprietary-notice-2000", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-philips-proprietary-notice2000", + "other_spdx_license_keys": [ + "LicenseRef-scancode-philips-proprietary-notice-2000" + ], + "is_exception": false, + "is_deprecated": false, + "text": "This source code and any compilation or derivative thereof is the sole \nproperty of Philips Corporation and is provided pursuant to a Software \nLicense Agreement. This code is the proprietary information of \nPhilips Corporation and is confidential in nature. Its use and \ndissemination by any party other than Philips Corporation is strictly \nlimited by the confidential information provisions of the Agreement \nreferenced above.", + "json": "philips-proprietary-notice-2000.json", + "yaml": "philips-proprietary-notice-2000.yml", + "html": "philips-proprietary-notice-2000.html", + "license": "philips-proprietary-notice-2000.LICENSE" + }, + { + "license_key": "phorum-2.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-phorum-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Phorum License 2.0.\n\nCopyright (c) 2001 The Phorum Development Team. All rights\nreserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in\n the documentation and/or other materials provided with the\n distribution.\n\n3. The end-user documentation included with the redistribution,\n if any, must include the following acknowledgment:\n \"This product includes software developed by the\n Phorum Development Team (http://phorum.org/).\"\n Alternately, this acknowledgment may appear in the software itself,\n if and wherever such third-party acknowledgments normally appear.\n\n4. The names \"Phorum\" and \"Phorum Development Team\" must\n not be used to endorse or promote products derived from this\n software without prior written permission. For written\n permission, please contact core@phorum.org.\n\n5. Products derived from this software may not be called \"Phorum\",\n nor may \"Phorum\" appear in their name, without prior written\n permission of the Phorum Development Team.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE PHORUM DEVELOPMENT TEAM OR\nITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\nUSE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\nOF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n====================================================================\n\nThis software consists of voluntary contributions made by many\nindividuals on behalf of the Phorum Development Team. For more\ninformation on Phorum , please see\n.\n\nThis license is based on The Apache Software License Version 1.1.\nOnly the names, email addresses and urls were changed.\nPermission was granted from The Apache Software Foundation to use\ntheir license.\n\nThe original version of the license is copyright (c) 2000 The Apache\nSoftware Foundation. All rights reserved.\n\nFor more information on the Apache Software Foundation, please\nsee .", + "json": "phorum-2.0.json", + "yaml": "phorum-2.0.yml", + "html": "phorum-2.0.html", + "license": "phorum-2.0.LICENSE" + }, + { + "license_key": "php-2.0.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-php-2.0.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "-------------------------------------------------------------------- \n The PHP License, version 2.02\nCopyright (c) 1999 - 2002 The PHP Group. All rights reserved.\n-------------------------------------------------------------------- \n\nRedistribution and use in source and binary forms, with or without\nmodification, is permitted provided that the following conditions\nare met:\n\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer. \n \n 2. Redistributions in binary form must reproduce the above \n copyright notice, this list of conditions and the following \n disclaimer in the documentation and/or other materials provided\n with the distribution.\n \n 3. The name \"PHP\" must not be used to endorse or promote products \n derived from this software without prior permission from the \n PHP Group. This does not apply to add-on libraries or tools\n that work in conjunction with PHP. In such a case the PHP\n name may be used to indicate that the product supports PHP.\n \n 4. The PHP Group may publish revised and/or new versions of the\n license from time to time. Each version will be given a\n distinguishing version number.\n Once covered code has been published under a particular version\n of the license, you may always continue to use it under the\n terms of that version. You may also choose to use such covered\n code under the terms of any subsequent version of the license\n published by the PHP Group. No one other than the PHP Group has\n the right to modify the terms applicable to covered code created\n under this License.\n\n 5. Redistributions of any form whatsoever must retain the following\n acknowledgment:\n \"This product includes PHP, freely available from\n http://www.php.net/\".\n\n 6. The software incorporates the Zend Engine, a product of Zend\n Technologies, Ltd. (\"Zend\"). The Zend Engine is licensed to the\n PHP Association (pursuant to a grant from Zend that can be\n found at http://www.php.net/license/ZendGrant/) for\n distribution to you under this license agreement, only as a\n part of PHP. In the event that you separate the Zend Engine\n (or any portion thereof) from the rest of the software, or\n modify the Zend Engine, or any portion thereof, your use of the\n separated or modified Zend Engine software shall not be governed\n by this license, and instead shall be governed by the license\n set forth at http://www.zend.com/license/ZendLicense/. \n\n\n\nTHIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND \nANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A \nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PHP\nDEVELOPMENT TEAM OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\nOF THE POSSIBILITY OF SUCH DAMAGE.\n\n-------------------------------------------------------------------- \n\nThis software consists of voluntary contributions made by many\nindividuals on behalf of the PHP Group.\n\nThe PHP Group can be contacted via Email at group@php.net.\n\nFor more information on the PHP Group and the PHP project, \nplease see .", + "json": "php-2.0.2.json", + "yaml": "php-2.0.2.yml", + "html": "php-2.0.2.html", + "license": "php-2.0.2.LICENSE" + }, + { + "license_key": "php-3.0", + "category": "Permissive", + "spdx_license_key": "PHP-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "-------------------------------------------------------------------- \n The PHP License, version 3.0\nCopyright (c) 1999 - 2006 The PHP Group. All rights reserved.\n-------------------------------------------------------------------- \n\nRedistribution and use in source and binary forms, with or without\nmodification, is permitted provided that the following conditions\nare met:\n\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n \n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in\n the documentation and/or other materials provided with the\n distribution.\n \n 3. The name \"PHP\" must not be used to endorse or promote products\n derived from this software without prior written permission. For\n written permission, please contact group@php.net.\n \n 4. Products derived from this software may not be called \"PHP\", nor\n may \"PHP\" appear in their name, without prior written permission\n from group@php.net. You may indicate that your software works in\n conjunction with PHP by saying \"Foo for PHP\" instead of calling\n it \"PHP Foo\" or \"phpfoo\"\n \n 5. The PHP Group may publish revised and/or new versions of the\n license from time to time. Each version will be given a\n distinguishing version number.\n Once covered code has been published under a particular version\n of the license, you may always continue to use it under the terms\n of that version. You may also choose to use such covered code\n under the terms of any subsequent version of the license\n published by the PHP Group. No one other than the PHP Group has\n the right to modify the terms applicable to covered code created\n under this License.\n\n 6. Redistributions of any form whatsoever must retain the following\n acknowledgment:\n \"This product includes PHP, freely available from\n \".\n\nTHIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND \nANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A \nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PHP\nDEVELOPMENT TEAM OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\nOF THE POSSIBILITY OF SUCH DAMAGE.\n\n-------------------------------------------------------------------- \n\nThis software consists of voluntary contributions made by many\nindividuals on behalf of the PHP Group.\n\nThe PHP Group can be contacted via Email at group@php.net.\n\nFor more information on the PHP Group and the PHP project, \nplease see .\n\nThis product includes the Zend Engine, freely available at\n.", + "json": "php-3.0.json", + "yaml": "php-3.0.yml", + "html": "php-3.0.html", + "license": "php-3.0.LICENSE" + }, + { + "license_key": "php-3.01", + "category": "Permissive", + "spdx_license_key": "PHP-3.01", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The PHP License, version 3.01 \n\nCopyright (c) 1999 - 2012 The PHP Group. All rights reserved. \n\nRedistribution and use in source and binary forms, with or without \nmodification, is permitted provided that the following conditions \nare met: \n\n1. Redistributions of source code must retain the above copyright \nnotice, this list of conditions and the following disclaimer. \n\n2. Redistributions in binary form must reproduce the above copyright \nnotice, this list of conditions and the following disclaimer in \nthe documentation and/or other materials provided with the \ndistribution. \n\n3. The name \"PHP\" must not be used to endorse or promote products \nderived from this software without prior written permission. For \nwritten permission, please contact group@php.net. \n\n4. Products derived from this software may not be called \"PHP\", nor \nmay \"PHP\" appear in their name, without prior written permission \nfrom group@php.net. You may indicate that your software works in \nconjunction with PHP by saying \"Foo for PHP\" instead of calling \nit \"PHP Foo\" or \"phpfoo\" \n\n5. The PHP Group may publish revised and/or new versions of the \nlicense from time to time. Each version will be given a \ndistinguishing version number. \nOnce covered code has been published under a particular version \nof the license, you may always continue to use it under the terms \nof that version. You may also choose to use such covered code \nunder the terms of any subsequent version of the license \npublished by the PHP Group. No one other than the PHP Group has \nthe right to modify the terms applicable to covered code created \nunder this License. \n\n6. Redistributions of any form whatsoever must retain the following \nacknowledgment: \n\"This product includes PHP software, freely available from \n\". \n\nTHIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND \nANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, \nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A \nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PHP \nDEVELOPMENT TEAM OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED \nOF THE POSSIBILITY OF SUCH DAMAGE. \n\n-------------------------------------------------------------------- \n\nThis software consists of voluntary contributions made by many \nindividuals on behalf of the PHP Group. \n\nThe PHP Group can be contacted via Email at group@php.net. \n\nFor more information on the PHP Group and the PHP project, \nplease see . \n\nPHP includes the Zend Engine, freely available at \n.", + "json": "php-3.01.json", + "yaml": "php-3.01.yml", + "html": "php-3.01.html", + "license": "php-3.01.LICENSE" + }, + { + "license_key": "pine", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pine", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Pine License and Legal Notices\n\nPine and Pico are registered trademarks of the University of Washington. No commercial use of these\ntrademarks may be made without prior written permission of the University of Washington.\n\nPine, Pico, and Pilot software and its included text are Copyright 1989-2007 by\nthe University of Washington. \n\nUse of Pine/Pico/Pilot: You may compile and execute these programs for any purpose, including\ncommercial, without paying anything to the University of Washington, provided that the legal notices are\nmaintained intact and honored.\n\nLocal modification of this release is permitted as follows, or by mutual agreement: In order to\nreduce confusion and facilitate debugging, we request that locally modified versions be denoted by\nappending the letter \"L\" to the current version number, and that the local changes be\nenumerated in the integral release notes and associated documentation.\n\nRedistribution of this release is permitted as follows, or by mutual\nagreement:\n (a) In free-of-charge or at-cost distributions by non-profit concerns;\n (b) In free-of-charge distributions by for-profit concerns;\n (c) Inclusion in a CD-ROM collection of free-of-charge, shareware, or\n\t non-proprietary software for which a fee may be charged for the \n\t packaged distribution.\n\nRedistribution of binary versions is further constrained by license agreements for incorporated\nlibraries from third parties, e.g. LDAP, GSSAPI.\n\nThe University of Washington encourages unrestricted distribution of\nindividual patches to the Pine system. By \"patches\" we mean\n\"difference\" files that can be applied to the University of\nWashington Pine source distribution in order to accomplish bug fixes,\nminor enhancements, or adaptation to new operating systems. Submission of\nthese patches to University of Washington for possible inclusion in future\nPine versions is also encouraged, with the understanding that they would\nbe treated the same as all other Pine code in terms of licensing and the\nsubmission does not include any software which infringes third party rights.\n\nThe above permissions are hereby granted, provided that the Pine and\nPico copyright and trademark notices appear in all copies and that both\nthe above copyright notice and this permission notice appear in supporting\ndocumentation, and that the name of the University of Washington not be\nused in advertising or publicity pertaining to distribution of the\nsoftware without specific, prior written permission, and provided you\nacknowledge that pursuant to U.S. laws, Pine, Pico & Pilot software may\nnot be downloaded, acquired or otherwise exported or re-exported (i) into,\nor to a national or resident of any country to which the U.S. has\nembargoed goods; or (ii) to anyone on the U.S. Treasury Department's list\nof Specially Designated Nations or the U.S. Commerce Department's Table of\nDenial Orders.\n\nBy downloading the software, you represent that: 1) you are not located in\nor under the control of a national or resident of any such country or on\nany such list; and 2) you will not export or re-export the software to any\nprohibited country, or to any prohibited person, entity, or end-user as\nspecified by U.S. export controls.\n\nThis software is made available \"as is\", and\nTHE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD TO THIS\nSOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE, AND IN NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,\nINDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, TORT (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN\nCONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \n\nOther licensing terms are available by mutual agreement.\n\nPlease see the Pine FAQ for more information on Pine Legal Issues.\n\nEnd of Pine License and Legal Notices", + "json": "pine.json", + "yaml": "pine.yml", + "html": "pine.html", + "license": "pine.LICENSE" + }, + { + "license_key": "pivotal-tou", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-pivotal-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Pivotal Software, Inc. Terms of Use\n\nSee https://pivotal.io/terms-of-use for complete text. \n\nUse of Software\n\nTo the extent that Pivotal provides for the download of proprietary\nPivotal software or open source software from Pivotal Websites\n(\"Software\"), such Software is protected by the applicable copyright,\npatent or other intellectual property rights of either Pivotal or the\nthird-party licensor. Any use of the Software is subject to the terms of\nthe applicable end-user or open source license agreement.\n\nAll evaluation Software is provided \"AS IS\" for evaluation and internal\nuse only. You may not use evaluation Software for commercial,\ndevelopment or production purposes. In addition, evaluation Software\nmay be time-disabled and may cease to operate after a period of time.", + "json": "pivotal-tou.json", + "yaml": "pivotal-tou.yml", + "html": "pivotal-tou.html", + "license": "pivotal-tou.LICENSE" + }, + { + "license_key": "pixabay-content", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-pixabay-content", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License for Content \u2013 Pixabay License\n\nContent on Pixabay is made available to you on the following terms (\"Pixabay License\"). Under the Pixabay License you are granted an irrevocable, worldwide, non-exclusive and royalty free right to use, download, copy, modify or adapt the Content for commercial or non-commercial purposes. Attribution of the photographer, videographer, musician or Pixabay is not required but is always appreciated.\n\nThe Pixabay License does not allow:\n\n Sale or distribution of Content as digital Content or as digital wallpapers (such as on stock media websites);\n Sale or distribution of Content e.g. as a posters, digital prints, music files or physical products, without adding any additional elements or otherwise adding value\n Depiction of identifiable persons in an offensive, pornographic, obscene, immoral, defamatory or libelous way; or\n Any suggestion that there is an endorsement of products and services by depicted persons, brands, vocalists and organisations, unless permission was granted.\n\nPlease be aware that while all Content on Pixabay is free to use for commercial and non-commercial purposes, items in the Content, such as identifiable people, logos, brands, audio samples etc. may be subject to additional copyrights, property rights, privacy rights, trademarks etc. and may require the consent of a third party or the license of these rights - particularly for commercial applications. Pixabay does not represent or warrant that such consents or licenses have been obtained, and expressly disclaims any liability in this respect.", + "json": "pixabay-content.json", + "yaml": "pixabay-content.yml", + "html": "pixabay-content.html", + "license": "pixabay-content.LICENSE" + }, + { + "license_key": "planet-source-code", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-planet-source-code", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Terms of Agreement: \nBy using this code, you agree to the following terms... \n\nYou may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.\n\nYou MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws. \n\nYou may link to this code from another website, but ONLY if it is not wrapped in a frame.\n\nYou will abide by any additional copyright restrictions which the author may have placed in the code or code's description.", + "json": "planet-source-code.json", + "yaml": "planet-source-code.yml", + "html": "planet-source-code.html", + "license": "planet-source-code.LICENSE" + }, + { + "license_key": "plural-20211124", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-plural-20211124", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Plural Licensing\n\nSOFTWARE LICENSING\n\nYou are licensed to use compiled versions of the Plural platform produced by Plural Labs, Inc. under an MIT LICENSE\n\nYou may be licensed to use source code to create compiled versions not produced by Plural Labs, Inc. in one of three ways:\n\n1. Under the Free Software Foundation\u2019s GNU AGPL v.3.0, subject to the exceptions outlined in this policy; or\n2. Under a commercial license available from Plural Labs, Inc. by contacting commercial@plural.sh\n3. Creating a licensed installation on app.plural.sh\n\nYou are licensed to use the source code in Admin Tools and Configuration Files (plural/) under the Apache License v2.0.\n\nWe promise that we will not enforce the copyleft provisions in AGPL v3.0 against you if your application (a) does not\nlink to the Plural Platform directly, but exclusively uses the Plural Admin Tools and Configuration Files, and\n(b) you have not modified, added to or adapted the source code of Plural in a way that results in the creation of\na \u201cmodified version\u201d or \u201cwork based on\u201d Plural as these terms are defined in the AGPL v3.0 license.\n\n\n------------------------------------------------------------------------------------------------------------------------------\nMIT License\n\nCopyright (c) 2021 Plural Labs, Inc\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n------------------------------------------------------------------------------------------------------------------------------\n\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n------------------------------------------------------------------------------\n\nThe software is released under the terms of the GNU Affero General Public\nLicense, version 3.\n\n GNU AFFERO GENERAL PUBLIC LICENSE\n Version 3, 19 November 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU Affero General Public License is a free, copyleft license for\nsoftware and other kinds of works, specifically designed to ensure\ncooperation with the community in the case of network server software.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nour General Public Licenses are intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n Developers that use our General Public Licenses protect your rights\nwith two steps: (1) assert copyright on the software, and (2) offer\nyou this License which gives you legal permission to copy, distribute\nand/or modify the software.\n\n A secondary benefit of defending all users' freedom is that\nimprovements made in alternate versions of the program, if they\nreceive widespread use, become available for other developers to\nincorporate. Many developers of free software are heartened and\nencouraged by the resulting cooperation. However, in the case of\nsoftware used on network servers, this result may fail to come about.\nThe GNU General Public License permits making a modified version and\nletting the public access it on a server without ever releasing its\nsource code to the public.\n\n The GNU Affero General Public License is designed specifically to\nensure that, in such cases, the modified source code becomes available\nto the community. It requires the operator of a network server to\nprovide the source code of the modified version running there to the\nusers of that server. Therefore, public use of a modified version, on\na publicly accessible server, gives the public access to the source\ncode of the modified version.\n\n An older license, called the Affero General Public License and\npublished by Affero, was designed to accomplish similar goals. This is\na different license, not a version of the Affero GPL, but Affero has\nreleased a new version of the Affero GPL which permits relicensing under\nthis license.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU Affero General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Remote Network Interaction; Use with the GNU General Public License.\n\n Notwithstanding any other provision of this License, if you modify the\nProgram, your modified version must prominently offer all users\ninteracting with it remotely through a computer network (if your version\nsupports such interaction) an opportunity to receive the Corresponding\nSource of your version by providing access to the Corresponding Source\nfrom a network server at no charge, through some standard or customary\nmeans of facilitating copying of software. This Corresponding Source\nshall include the Corresponding Source for any work covered by version 3\nof the GNU General Public License that is incorporated pursuant to the\nfollowing paragraph.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the work with which it is combined will remain governed by version\n3 of the GNU General Public License.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU Affero General Public License from time to time. Such new versions\nwill be similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU Affero General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU Affero General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU Affero General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Affero General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Affero General Public License for more details.\n\n You should have received a copy of the GNU Affero General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If your software can interact with users remotely through a computer\nnetwork, you should also make sure that it provides a way for users to\nget its source. For example, if your program is a web application, its\ninterface could display a \"Source\" link that leads users to an archive\nof the code. There are many ways you could offer source, and different\nsolutions will be better for different programs; see section 13 for the\nspecific requirements.\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU AGPL, see\n.", + "json": "plural-20211124.json", + "yaml": "plural-20211124.yml", + "html": "plural-20211124.html", + "license": "plural-20211124.LICENSE" + }, + { + "license_key": "pml-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-pml-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Last updated January 9, 2020\n\nCurrent developers See what\u2019s changed?\nProgram Materials License Agreement\n\nThis is an agreement (the \u201cLicense Agreement\u201d) between the individual or entity (\u201cyou\u201d) that receives or uses any of the Program Materials (as defined below) and Amazon.com Services LLC, Amazon Media EU S.\u00e0 r.l. and their respective affiliates that make available Program Materials under this License Agreement (each, an \u201cAmazon Party\u201d and, together with their affiliates, \u201cAmazon,\u201d \u201cwe,\u201d or \u201cus\u201d).\n\nIf you receive or use any Program Materials, you accept and agree to be bound by this License Agreement and represent that you have the authority to bind yourself or the entity you represent to this License Agreement.\n\n1. Structure of Agreement\n\n This License Agreement includes (a) the body of the agreement below and (b) the schedules to this agreement and any other additional terms provided with the delivery of specific Program Materials (collectively, \u201cAdditional Terms\u201d). However, any Additional Terms only apply to you if you engage in the activity or use the Program Materials to which those Additional Terms apply (for instance, the terms of the Restricted Program Materials Schedule only apply to you if you receive or use Restricted Program Materials, as defined in that schedule). To the extent there is any conflict between the body of the agreement and any Additional Terms, the Additional Terms control with respect to the Program Materials to which they apply.\n\n2. Program Materials\n\n \u201cProgram Materials\u201d means any Software or Equipment an Amazon Party makes available to you under this License Agreement for use in connection with an Amazon program or service (each, an \u201cAmazon Program\u201d). \u201cSoftware\u201d means software, software development kits, libraries, application programming interfaces, sample code, templates, documentation, and other related materials. \u201cEquipment\u201d means physical hardware, including consumer electronics devices.\n\n3. License\n\n The Amazon Party that makes Program Materials available to you grants you a limited, revocable, non-exclusive, royalty-free, non-transferable, non-sub-licensable license to use the Program Materials and reproduce the Software (if applicable) solely for the purposes of developing, testing, and promoting your digital and physical products (\u201cYour Products\u201d) and providing end users access to Amazon Programs through Your Products, in each case, as contemplated by the documentation for the applicable Program Materials. You may use Program Materials only in connection with the Amazon Program for which they are made available, unless the documentation for the applicable Program Materials authorizes broader use. If the Program Materials include any libraries, source code, or other materials we make available specifically for incorporation in Your Products (as indicated by the applicable documentation), you may incorporate those materials in Your Products and reproduce and distribute those Program Materials as incorporated in Your Products. You may also modify any such source code to the extent necessary to incorporate it in Your Products. We may modify or discontinue (including by ceasing our distribution of or support for) any or all of the Program Materials at any time without notice and you are solely responsible for ensuring that Your Products function properly after any such modification or discontinuation.\n\n4. Limitations\n\n You may use the Program Materials only as expressly authorized under this License Agreement, and only through the interfaces and functionality we designate. You must comply with all instructions and requirements in any integration documents, guidelines, or other documentation that we provide, including any usage limits or quotas.\n\n Except as expressly permitted under Section 3, you will not: (a) incorporate or compile any portion of the Program Materials into Your Products or other digital or physical products; (b) distribute, sub-license, resell, lease, transfer, or otherwise provide access to any portion of the Program Materials to any third party; or (c) modify or create derivative works of the Program Materials. You will not circumvent or disable any copy protection, security, or other controls in the Program Materials or use the Program Materials in a way intended to avoid incurring any applicable fees or exceeding usage limits or quotas. You will not reverse engineer, disassemble or decompile the Program Materials (except to the extent applicable law doesn\u2019t allow this restriction); remove any embedded Software from any Equipment; copy any embedded Software; or use any Software provided with Equipment separate from the Equipment for which it was provided. You will not use the Program Materials with any software or other materials that are subject to licenses or restrictions (e.g., open source software licenses) that, when combined with the Program Materials, would require you or us to disclose, license, distribute or otherwise make all or any part of such Program Materials available to anyone. You will not remove, modify, or obscure any copyright, patent, trademark or other proprietary or attribution notices on or in any Program Materials. You will not direct, encourage, or assist any other party to take any action prohibited by this License Agreement.\n\n All licenses granted to you in this License Agreement are conditional on your continued compliance with this License Agreement and any other agreements you have entered into with Amazon related to your participation in an Amazon Program, and will immediately and automatically terminate if you do not comply with any term of such agreements.\n\n5. Reservation of Rights; Other Licenses\n\n The Program Materials are the intellectual property of Amazon or its licensors. Except for the rights explicitly granted to you in this License Agreement, all right, title and interest in and to the Program Materials are reserved and retained by us and our licensors. If you provide suggestions, ideas, or other feedback to us about the Amazon Programs or Program Materials, we will be free to exercise all rights in such feedback without restriction and without compensating you. The Program Materials may include or be distributed with Software that is provided under a separate license agreement (such as an open source license). To the extent there is a conflict between this License Agreement and any separate license, the separate license controls with respect to the Software that is the subject of such separate license. Any such separate license agreement may be indicated in the schedules to this License Agreement, in the license, notice, or readme files distributed with the applicable Software, or in related documentation.\n\n6. Disclaimers and Limitation on Liability\n\n THE PROGRAM MATERIALS ARE PROVIDED \u201cAS IS,\u201d AND WITHOUT WARRANTIES, OR REPRESENTATIONS OF ANY KIND, AND AMAZON, ITS LICENSORS, AND EACH OF THEIR RESPECTIVE AFFILIATES AND SUPPLIERS DISCLAIM ALL WARRANTIES, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, OR NON-INFRINGEMENT. YOUR USE OF THE PROGRAM MATERIALS IS AT YOUR SOLE RISK. IN NO EVENT WILL AMAZON, ITS LICENSORS, OR ANY OF THEIR RESPECTIVE AFFILIATES OR SUPPLIERS BE LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT LIMITATION ANY DIRECT, INDIRECT, CONSEQUENTIAL, SPECIAL, INCIDENTAL, PUNITIVE, OR EXEMPLARY DAMAGES (INCLUDING FOR ANY LOSS OF GOODWILL, BUSINESS INTERRUPTION, LOST PROFITS OR DATA, COST OF COVER, OR COMPUTER FAILURE OR MALFUNCTION) ARISING FROM OR RELATING TO THE PROGRAM MATERIALS OR THIS LICENSE AGREEMENT, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, EVEN IF AMAZON HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS AND DISCLAIMERS APPLY EXCEPT TO THE EXTENT PROHIBITED BY APPLICABLE LAW.\n\n7. Indemnification\n\n You release us and will indemnify, defend and hold us (including any respective officers, directors, employees, contractors and assigns) harmless from and against any loss, expense, claim, liability, damage, action or cause of action (including reasonable attorneys\u2019 fees) that arises out of any claim relating to Your Products or your breach or non-compliance with this License Agreement (each, a \u201cClaim\u201d). You will not consent to the entry of a judgment or settle a Claim without our prior written consent, which may not be unreasonably withheld. You will use counsel reasonably satisfactory to us to defend each Claim. If we reasonably determine that a Claim might adversely affect us, we may take control of the defense at our expense (and without limiting your indemnification obligations). Your obligations under this Section 7 are independent of your other obligations under this License Agreement.\n\n8. Compliance with Laws\n\n You will comply with all applicable laws, rules, regulations, orders, and other requirements of governmental agencies (together, \u201cLaws\u201d) in your use of the Program Materials and in the development and distribution of Your Products that use any Program Materials. Without limiting the foregoing, you will comply with all export, re-export, and import Laws of the United States and other countries that may apply to the Program Materials, and will not transfer, or encourage, assist, or authorize the transfer of, the Program Materials to a prohibited country or otherwise in violation of any applicable Laws. You will not engage in any activity using or related to the Program Materials, including the development or distribution of Your Products, that (a) infringes, violates, or misappropriates our rights or the rights of any third party, or (b) interferes with, damages, or uses in any unauthorized manner the hardware, software, networks, technologies, or other properties or services of ours or of any end user or other third party.\n\n9. Agreement Changes\n\n We reserve the right to change this License Agreement at any time in our discretion. We will give you notice of the changes by posting an updated version of this License Agreement online. Changes to this License Agreement will be effective as of the date we post them, unless we specify a different effective date when we make a particular change. You are responsible for checking for License Agreement updates. Your continued use of Program Materials after changes to this License Agreement take effect will constitute your acceptance of the changes. If you do not agree to a change, you must stop using the Program Materials and terminate this License Agreement.\n \n10. Termination\n\n We may terminate this License Agreement or your right to use any or all of the Program Materials at any time without advance notice to you, in which case you must cease all use of the Program Materials, destroy all copies of the Software in your possession or control, and, at Amazon\u2019s direction, return or destroy any Equipment provided to you. You may terminate this License Agreement at any time by taking all actions that would be required if we terminated the License Agreement. The following provisions of this License Agreement will survive termination: Sections 1-2, 4-8, 10-12, and any other provisions that, by their nature, are intended to survive.\n\n11. U.S. Government Rights\n\n The Program Materials are provided to the U.S. Government as \u201ccommercial items,\u201d \u201ccommercial computer software,\u201d \u201ccommercial computer software documentation,\u201d and \u201ctechnical data\u201d (each, as defined in the Federal Acquisition Regulation and the Defense Federal Acquisition Regulation Supplement) with the same rights and restrictions generally applicable to others under this License Agreement. If you are using the Program Materials on behalf of the U.S. Government and these terms fail to meet the U.S. Government\u2019s needs or are inconsistent in any respect with federal law, you must immediately discontinue use of the Program Materials.\n\n12. General\n\n If any provision of this License Agreement is held invalid by a court with jurisdiction over the parties to this License Agreement, such provision will be deemed to be restated to reflect as nearly as possible the original intentions of the parties in accordance with applicable law, and the remainder of this License Agreement will remain in full force and effect. You may not assign any of your rights or obligations under this License Agreement, whether by operation of law or otherwise, without our prior written consent. Each party may use one or more subcontractors to exercise its rights and perform its obligations hereunder. Each party will be responsible for ensuring that its subcontractors comply with the applicable portions of this License Agreement when performing work on its behalf and will be liable for any noncompliance. Our failure to insist upon or enforce your strict compliance with this License Agreement will not constitute a waiver of any of our rights. In addition to the Amazon Parties, our licensors may enforce this License Agreement against you with respect to their software and other materials included in the Program Materials, and our licensors are third-party beneficiaries of this License Agreement solely for that purpose. The word \u201cincluding\u201d will be interpreted without limitation when used in this License Agreement. This License Agreement is governed by the laws of the State of Washington, without reference to rules governing choice of laws or the U.N. Convention on Contracts for the International Sale of Goods, and you irrevocably consent to the exclusive jurisdiction and venue of the federal and state courts located in King County, Washington. HOWEVER, WE MAY SEEK INJUNCTIVE (OR SIMILAR) REMEDIES IN ANY JURISDICTION. This License Agreement supersedes all prior or contemporaneous representations, understandings, agreements, or communications between you and us, whether written or verbal, regarding the subject matter of this License Agreement. Each party will be responsible, as required under applicable law, for identifying and paying all taxes and other governmental fees and charges that are imposed on that party upon or with respect to the transactions under this License Agreement. For the transfer of any Equipment by Amazon to you, title (but not the intellectual property rights therein or any ownership interest in any embedded or related Software) will pass to you upon our handing them to a common carrier at our location. If Equipment is shipped to a location outside the United States, you will be the importer of record for the Equipment and will be solely responsible for all costs incurred during the transfer of and while holding the Equipment (e.g., customs duties, taxes, tariffs) as well as any risk of loss. Delivery terms for Equipment shipped to you will be Free Carrier (FCA) Incoterms 2010.\n\n\nMaps API Schedule\n\nIf you use the Program Materials we make available to enable the use of mapping-related features within Your Products (such materials, the \u201cMaps API\u201d), including through Amazon Maps redirection, you accept and agree to be bound by the HERE Materials Terms and Conditions, which apply to the portions of the Maps API provided by HERE North America, LLC or its affiliates.\n\n\nAmazon Mobile Ads API Schedule\n\nIf you use the Program Materials we make available to enable the use of our Amazon Mobile Ad Network within Your Products, including any component of our Amazon Mobile Ads API, you accept and agree to be bound by our Mobile Ad Network Publisher Agreement.\n\n\nRestricted Program Materials Schedule\n\nThe terms of this schedule apply to you if you receive or use any Program Materials we designate as confidential, restricted, prototype, beta, or for evaluation purposes (\u201cRestricted Program Materials\u201d).\n\n1. Confidentiality. You will protect and keep confidential any Restricted Program Materials and other non-public information or technology you may receive in connection with this License Agreement (including design elements, look and feel, features, functionality, product details, reference designs, and information regarding product launches) that is identified as confidential or proprietary or that, given the nature of such information or technology or the manner of its disclosure, reasonably should be considered confidential or proprietary (\u201cConfidential Information\u201d). You will (a) not disclose Confidential Information, (b) use Confidential Information only for the purpose provided and during any use period identified by Amazon, (c) restrict access to Confidential Information to your personnel that have a need to know the specific Confidential Information and have entered into written nondisclosure agreements, and (d) promptly upon termination of this License Agreement, destroy all Confidential Information (or at our direction return such Confidential Information to us). You may not take photos or videos of any Restricted Program Materials. You acknowledge that any violation of this schedule could cause irreparable harm to Amazon for which monetary damages may be difficult to ascertain or an inadequate remedy. You therefore agree that Amazon will have the right, in addition to its other rights and remedies, to seek injunctive relief for any violation of this schedule without any obligation to prove damages or post a bond or any other security.\n\n2. Distribution. You may not distribute any of Your Products that incorporate or were developed using Restricted Program Materials unless: (a) you submit Your Product to us for approval and we specifically approve the distribution in writing and (b) if any Restricted Program Materials incorporated in Your Product were provided to you in source code form, such Restricted Program Materials (and modifications thereof) are distributed solely in binary form as incorporated in Your Products.\n\n3. No Use of Contractors. Notwithstanding anything to the contrary in the License Agreement, you may not provide Restricted Program Materials to any contractor or other third-party without our prior written permission.\n\n4. Additional Restrictions. If we inform you that additional restrictions apply to certain Restricted Program Materials (e.g., that you must comply with specific equipment handling guidelines, limit use to locations authorized by us, or limit access to only specific employees), you will comply with those restrictions.\n\n5. Survival. All sections of this schedule will survive any termination of the License Agreement.\n\n\nAVS Component Schedule\n\nThe terms of this schedule apply if Your Products are designed to be incorporated as components of, or used in the development of, other applications or devices that provide end users access to the Amazon Alexa voice service (\u201cAVS Components\u201d).\n\n1. Flow-through Requirement. Prior to distributing any AVS Component that incorporates any Program Materials, you must ensure the recipient of the AVS Component agrees to a binding written agreement that: (a) subjects the recipient to this License Agreement and any additional terms that apply to the applicable Program Materials and (b) designates Amazon as a third-party beneficiary.\n\n\nChanges to Program Materials License Agreement posted January 9, 2020\n\nWe\u2019ve updated the Program Materials License Agreement to change one of the Amazon entities to Amazon.com Services LLC.\n\n\nChanges to Program Materials License Agreement posted August 22, 2018\n\nWe\u2019ve updated the Program Materials License Agreement to add the AVS Component Schedule applicable to certain AVS developers.\n\n\nChanges to Program Materials License Agreement posted December 1, 2017\n\nIn certain circumstances, we provide developers with access to prototype and confidential Program Materials or to certain hardware in connection with specific Amazon Programs. We updated the Program Materials License Agreement to include terms specific to these types of Program Materials and to make other updates. Please review the full text of the updated License Agreement carefully.", + "json": "pml-2020.json", + "yaml": "pml-2020.yml", + "html": "pml-2020.html", + "license": "pml-2020.LICENSE" + }, + { + "license_key": "pngsuite", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pngsuite", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify and distribute these images for any\npurpose and without fee is hereby granted.", + "json": "pngsuite.json", + "yaml": "pngsuite.yml", + "html": "pngsuite.html", + "license": "pngsuite.LICENSE" + }, + { + "license_key": "politepix-pl-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-politepix-pl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Politepix Public License version 1.0\n\nDefinitions\n\n\"Politepix\" refers to Politepix UG (haftungsbeschrankt), which may also be known as Politepix or Politepix UG, and which may at a later date be known as Politepix GmbH.\n\"Software\" refers to all elements of the OpenEars framework that are copyrighted to Politepix.\n\"Application\" for the purpose of this license refers exclusively to a self-contained compiled software program of the type that can be downloaded from the iTunes App Store or Cydia for use on an enduser's device, commonly known as an App. It explicitly excludes the following: frameworks, SDKs or client or server systems used for the creation of such software programs or for the creation of other types of software, as well as reusable components, operating systems, and plugins which modify apps, frameworks or operating systems.\n\nGranted Rights\n\nYou are granted the non-exclusive rights set forth in this license provided you agree to and comply with any and all conditions in this license. It is transferable to other parties provided that they agree to and comply with any and all conditions in this license. Use of the software signifies acceptance of this license.\n\n1. You may make modifications to the Software and you may use the original or modified versions of the Software to link, compile and build Applications, including commercial Applications.\n2. You may distribute these Applications in a binary, machine-executable form.\n\nIf your project wants more rights than this, please feel welcome to get in touch at http://www.politepix.com/contact and inquire about whether it is possible to obtain other licensing terms. Educational and public good projects are especially encouraged to inquire.\n\nCredit\n\nYou must include credit in your Application as follows in a user-readable form in an accessible view of your Application, replacing with the name of your Application:\n uses the CMU Pocketsphinx library, the CMU Flite library, the CMU CMUCMLTK library (http://cmusphinx.sourceforge.net) and Politepix\u2019s OpenEars (http://www.politepix.com/openears).\n\nContributions\n\nEach contributor, defined as a party who submits source code modifications for the Software whose purpose is to modify the behavior of the Software, also commonly known as patches or fixes, hereby grants Politepix a world-wide, royalty-free, non-exclusive license to use, reproduce, modify, display, perform, sublicense and distribute the modifications or portions thereof either on an unmodified basis or with other modifications. Submitting a contribution is defined as intentionally communicating the information to Politepix employees and representatives, including posts on the Politepix forums, sending uploads or diffs or pull requests to Politepix/OpenEars repositories or servers, and emails to Politepix employees or representatives.\n\nTermination and Survival\n\nThe rights granted hereunder will terminate automatically if you fail to comply with terms herein. The other provisions shall survive.\n\nMiscellaneous\n\nThis license represents the complete agreement concerning subject matter hereof. If any provision of this license is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This license and any litigation relating to it shall be subject to the jurisdiction of the courts located in Berlin, Germany.\n\nLimitation of Liability\n\nThe Software and this license document are provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, ACCURACY AND TITLE, AND THOSE ARISING FROM A COURSE OF DEALING OR USAGE OF TRADE. POLITEPIX UG (HAFTUNGSBESCHRANKT) SHALL NOT BE LIABLE FOR, AND HEREBY EXPRESSLY DISCLAIMS ANY LIABILITY FOR: DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, LOSS OF BUSINESS, OR ANY AND ALL OTHER CONSEQUENTIAL, SPECIAL, COMMERCIAL, INDIRECT OR PUNITIVE DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY ANY THIRD-PARTY.", + "json": "politepix-pl-1.0.json", + "yaml": "politepix-pl-1.0.yml", + "html": "politepix-pl-1.0.html", + "license": "politepix-pl-1.0.LICENSE" + }, + { + "license_key": "polyform-defensive-1.0.0", + "category": "Source-available", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "# PolyForm Defensive License 1.0.0\n\n\n\n## Acceptance\n\nIn order to get any license under these terms, you must agree\nto them as both strict obligations and conditions to all\nyour licenses.\n\n## Copyright License\n\nThe licensor grants you a copyright license for the\nsoftware to do everything you might do with the software\nthat would otherwise infringe the licensor's copyright\nin it for any permitted purpose. However, you may\nonly distribute the software according to [Distribution\nLicense](#distribution-license) and make changes or new works\nbased on the software according to [Changes and New Works\nLicense](#changes-and-new-works-license).\n\n## Distribution License\n\nThe licensor grants you an additional copyright license\nto distribute copies of the software. Your license\nto distribute covers distributing the software with\nchanges and new works permitted by [Changes and New Works\nLicense](#changes-and-new-works-license).\n\n## Notices\n\nYou must ensure that anyone who gets a copy of any part of\nthe software from you also gets a copy of these terms or the\nURL for them above, as well as copies of any plain-text lines\nbeginning with `Required Notice:` that the licensor provided\nwith the software. For example:\n\n> Required Notice: Copyright Yoyodyne, Inc. (http://example.com)\n\n## Changes and New Works License\n\nThe licensor grants you an additional copyright license to\nmake changes and new works based on the software for any\npermitted purpose.\n\n## Patent License\n\nThe licensor grants you a patent license for the software that\ncovers patent claims the licensor can license, or becomes able\nto license, that you would infringe by using the software.\n\n## Noncompete\n\nAny purpose is a permitted purpose, except for providing any\nproduct that competes with the software or any product the\nlicensor or any of its affiliates provides using the software.\n\n## Competition\n\nGoods and services compete even when they provide functionality\nthrough different kinds of interfaces or for different technical\nplatforms. Applications can compete with services, libraries\nwith plugins, frameworks with development tools, and so on,\neven if they're written in different programming languages\nor for different computer architectures. Goods and services\ncompete even when provided free of charge. If you market a\nproduct as a practical substitute for the software or another\nproduct, it definitely competes.\n\n## New Products\n\nIf you are using the software to provide a product that does\nnot compete, but the licensor or any of its affiliates brings\nyour product into competition by providing a new version of\nthe software or another product using the software, you may\ncontinue using versions of the software available under these\nterms beforehand to provide your competing product, but not\nany later versions.\n\n## Discontinued Products\n\nYou may begin using the software to compete with a product\nor service that the licensor or any of its affiliates has\nstopped providing, unless the licensor includes a plain-text\nline beginning with `Licensor Line of Business:` with the\nsoftware that mentions that line of business. For example:\n\n> Licensor Line of Business: YoyodyneCMS Content Management\nSystem (http://example.com/cms)\n\n## Sales of Business\n\nIf the licensor or any of its affiliates sells a line of\nbusiness developing the software or using the software\nto provide a product, the buyer can also enforce\n[Noncompete](#noncompete) for that product.\n\n## Fair Use\n\nYou may have \"fair use\" rights for the software under the\nlaw. These terms do not limit them.\n\n## No Other Rights\n\nThese terms do not allow you to sublicense or transfer any of\nyour licenses to anyone else, or prevent the licensor from\ngranting licenses to anyone else. These terms do not imply\nany other licenses.\n\n## Patent Defense\n\nIf you make any written claim that the software infringes or\ncontributes to infringement of any patent, your patent license\nfor the software granted under these terms ends immediately. If\nyour company makes such a claim, your patent license ends\nimmediately for work on behalf of your company.\n\n## Violations\n\nThe first time you are notified in writing that you have\nviolated any of these terms, or done anything with the software\nnot covered by your licenses, your licenses can nonetheless\ncontinue if you come into full compliance with these terms,\nand take practical steps to correct past violations, within\n32 days of receiving notice. Otherwise, all your licenses\nend immediately.\n\n## No Liability\n\n***As far as the law allows, the software comes as is, without\nany warranty or condition, and the licensor will not be liable\nto you for any damages arising out of these terms or the use\nor nature of the software, under any kind of legal claim.***\n\n## Definitions\n\nThe **licensor** is the individual or entity offering these\nterms, and the **software** is the software the licensor makes\navailable under these terms.\n\nA **product** can be a good or service, or a combination\nof them.\n\n**You** refers to the individual or entity agreeing to these\nterms.\n\n**Your company** is any legal entity, sole proprietorship,\nor other kind of organization that you work for, plus all\nits affiliates.\n\n**Affiliates** means the other organizations than an\norganization has control over, is under the control of, or is\nunder common control with.\n\n**Control** means ownership of substantially all the assets of\nan entity, or the power to direct its management and policies\nby vote, contract, or otherwise. Control can be direct or\nindirect.\n\n**Your licenses** are all the licenses granted to you for the\nsoftware under these terms.\n\n**Use** means anything you do with the software requiring one\nof your licenses.", + "json": "polyform-defensive-1.0.0.json", + "yaml": "polyform-defensive-1.0.0.yml", + "html": "polyform-defensive-1.0.0.html", + "license": "polyform-defensive-1.0.0.LICENSE" + }, + { + "license_key": "polyform-free-trial-1.0.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-polyform-free-trial-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "# Polyform Free Trial License 1.0.0\n\n\n\n## Acceptance\n\nIn order to get any license under these terms, you must agree\nto them as both strict obligations and conditions to all\nyour licenses.\n\n## Copyright License\n\nThe licensor grants you a copyright license for the software\nto do everything you might do with the software that would\notherwise infringe the licensor's copyright in it for any\npermitted purpose. However, you may only make changes or\nnew works based on the software according to [Changes and New\nWorks License](#changes-and-new-works-license), and you may\nnot distribute copies of the software.\n\n## Changes and New Works License\n\nThe licensor grants you an additional copyright license to\nmake changes and new works based on the software for any\npermitted purpose.\n\n## Patent License\n\nThe licensor grants you a patent license for the software that\ncovers patent claims the licensor can license, or becomes able\nto license, that you would infringe by using the software.\n\n## Fair Use\n\nYou may have \"fair use\" rights for the software under the\nlaw. These terms do not limit them.\n\n## Free Trial\n\nUse to evaluate whether the software suits a particular\napplication for less than 32 consecutive calendar days, on\nbehalf of you or your company, is use for a permitted purpose.\n\n## No Other Rights\n\nThese terms do not allow you to sublicense or transfer any of\nyour licenses to anyone else, or prevent the licensor from\ngranting licenses to anyone else. These terms do not imply\nany other licenses.\n\n## Patent Defense\n\nIf you make any written claim that the software infringes or\ncontributes to infringement of any patent, your patent license\nfor the software granted under these terms ends immediately. If\nyour company makes such a claim, your patent license ends\nimmediately for work on behalf of your company.\n\n## Violations\n\nIf you violate any of these terms, or do anything with the\nsoftware not covered by your licenses, all your licenses\nend immediately.\n\n## No Liability\n\n***As far as the law allows, the software comes as is, without\nany warranty or condition, and the licensor will not be liable\nto you for any damages arising out of these terms or the use\nor nature of the software, under any kind of legal claim.***\n\n## Definitions\n\nThe **licensor** is the individual or entity offering these\nterms, and the **software** is the software the licensor makes\navailable under these terms.\n\n**You** refers to the individual or entity agreeing to these\nterms.\n\n**Your company** is any legal entity, sole proprietorship,\nor other kind of organization that you work for, plus all\norganizations that have control over, are under the control of,\nor are under common control with that organization. **Control**\nmeans ownership of substantially all the assets of an entity,\nor the power to direct its management and policies by vote,\ncontract, or otherwise. Control can be direct or indirect.\n\n**Your licenses** are all the licenses granted to you for the\nsoftware under these terms.\n\n**Use** means anything you do with the software requiring one\nof your licenses.", + "json": "polyform-free-trial-1.0.0.json", + "yaml": "polyform-free-trial-1.0.0.yml", + "html": "polyform-free-trial-1.0.0.html", + "license": "polyform-free-trial-1.0.0.LICENSE" + }, + { + "license_key": "polyform-internal-use-1.0.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-polyform-internal-use-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "# Polyform Internal Use License 1.0.0\n\n\n\n## Acceptance\n\nIn order to get any license under these terms, you must agree\nto them as both strict obligations and conditions to all\nyour licenses.\n\n## Copyright License\n\nThe licensor grants you a copyright license for the software\nto do everything you might do with the software that would\notherwise infringe the licensor's copyright in it for any\npermitted purpose. However, you may only make changes or\nnew works based on the software according to [Changes and New\nWorks License](#changes-and-new-works-license), and you may\nnot distribute the software.\n\n## Changes and New Works License\n\nThe licensor grants you an additional copyright license to\nmake changes and new works based on the software for any\npermitted purpose.\n\n## Patent License\n\nThe licensor grants you a patent license for the software that\ncovers patent claims the licensor can license, or becomes able\nto license, that you would infringe by using the software.\n\n## Fair Use\n\nYou may have \"fair use\" rights for the software under the\nlaw. These terms do not limit them.\n\n## Internal Business Use\n\nUse of the software for the internal business operations of\nyou and your company is use for a permitted purpose.\n\n## No Other Rights\n\nThese terms do not allow you to sublicense or transfer any of\nyour licenses to anyone else, or prevent the licensor from\ngranting licenses to anyone else. These terms do not imply\nany other licenses.\n\n## Patent Defense\n\nIf you make any written claim that the software infringes or\ncontributes to infringement of any patent, your patent license\nfor the software granted under these terms ends immediately. If\nyour company makes such a claim, your patent license ends\nimmediately for work on behalf of your company.\n\n## Violations\n\nThe first time you are notified in writing that you have\nviolated any of these terms, or done anything with the software\nnot covered by your licenses, your licenses can nonetheless\ncontinue if you come into full compliance with these terms,\nand take practical steps to correct past violations, within\n32 days of receiving notice. Otherwise, all your licenses\nend immediately.\n\n## No Liability\n\n***As far as the law allows, the software comes as is, without\nany warranty or condition, and the licensor will not be liable\nto you for any damages arising out of these terms or the use\nor nature of the software, under any kind of legal claim.***\n\n## Definitions\n\nThe **licensor** is the individual or entity offering these\nterms, and the **software** is the software the licensor makes\navailable under these terms.\n\n**You** refers to the individual or entity agreeing to these\nterms.\n\n**Your company** is any legal entity, sole proprietorship,\nor other kind of organization that you work for, plus all\norganizations that have control over, are under the control of,\nor are under common control with that organization. **Control**\nmeans ownership of substantially all the assets of an entity,\nor the power to direct its management and policies by vote,\ncontract, or otherwise. Control can be direct or indirect.\n\n**Your licenses** are all the licenses granted to you for the\nsoftware under these terms.\n\n**Use** means anything you do with the software requiring one\nof your licenses.", + "json": "polyform-internal-use-1.0.0.json", + "yaml": "polyform-internal-use-1.0.0.yml", + "html": "polyform-internal-use-1.0.0.html", + "license": "polyform-internal-use-1.0.0.LICENSE" + }, + { + "license_key": "polyform-noncommercial-1.0.0", + "category": "Source-available", + "spdx_license_key": "PolyForm-Noncommercial-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "# Polyform Noncommercial License 1.0.0\n\n\n\n## Acceptance\n\nIn order to get any license under these terms, you must agree\nto them as both strict obligations and conditions to all\nyour licenses.\n\n## Copyright License\n\nThe licensor grants you a copyright license for the\nsoftware to do everything you might do with the software\nthat would otherwise infringe the licensor's copyright\nin it for any permitted purpose. However, you may\nonly distribute the software according to [Distribution\nLicense](#distribution-license) and make changes or new works\nbased on the software according to [Changes and New Works\nLicense](#changes-and-new-works-license).\n\n## Distribution License\n\nThe licensor grants you an additional copyright license\nto distribute copies of the software. Your license\nto distribute covers distributing the software with\nchanges and new works permitted by [Changes and New Works\nLicense](#changes-and-new-works-license).\n\n## Notices\n\nYou must ensure that anyone who gets a copy of any part of\nthe software from you also gets a copy of these terms or the\nURL for them above, as well as copies of any plain-text lines\nbeginning with `Required Notice:` that the licensor provided\nwith the software. For example:\n\n> Required Notice: Copyright Yoyodyne, Inc. (http://example.com)\n\n## Changes and New Works License\n\nThe licensor grants you an additional copyright license to\nmake changes and new works based on the software for any\npermitted purpose.\n\n## Patent License\n\nThe licensor grants you a patent license for the software that\ncovers patent claims the licensor can license, or becomes able\nto license, that you would infringe by using the software.\n\n## Noncommercial Purposes\n\nAny noncommercial purpose is a permitted purpose.\n\n## Personal Uses\n\nPersonal use for research, experiment, and testing for\nthe benefit of public knowledge, personal study, private\nentertainment, hobby projects, amateur pursuits, or religious\nobservance, without any anticipated commercial application,\nis use for a permitted purpose.\n\n## Noncommercial Organizations\n\nUse by any charitable organization, educational institution,\npublic research organization, public safety or health\norganization, environmental protection organization,\nor government institution is use for a permitted purpose\nregardless of the source of funding or obligations resulting\nfrom the funding.\n\n## Fair Use\n\nYou may have \"fair use\" rights for the software under the\nlaw. These terms do not limit them.\n\n## No Other Rights\n\nThese terms do not allow you to sublicense or transfer any of\nyour licenses to anyone else, or prevent the licensor from\ngranting licenses to anyone else. These terms do not imply\nany other licenses.\n\n## Patent Defense\n\nIf you make any written claim that the software infringes or\ncontributes to infringement of any patent, your patent license\nfor the software granted under these terms ends immediately. If\nyour company makes such a claim, your patent license ends\nimmediately for work on behalf of your company.\n\n## Violations\n\nThe first time you are notified in writing that you have\nviolated any of these terms, or done anything with the software\nnot covered by your licenses, your licenses can nonetheless\ncontinue if you come into full compliance with these terms,\nand take practical steps to correct past violations, within\n32 days of receiving notice. Otherwise, all your licenses\nend immediately.\n\n## No Liability\n\n***As far as the law allows, the software comes as is, without\nany warranty or condition, and the licensor will not be liable\nto you for any damages arising out of these terms or the use\nor nature of the software, under any kind of legal claim.***\n\n## Definitions\n\nThe **licensor** is the individual or entity offering these\nterms, and the **software** is the software the licensor makes\navailable under these terms.\n\n**You** refers to the individual or entity agreeing to these\nterms.\n\n**Your company** is any legal entity, sole proprietorship,\nor other kind of organization that you work for, plus all\norganizations that have control over, are under the control of,\nor are under common control with that organization. **Control**\nmeans ownership of substantially all the assets of an entity,\nor the power to direct its management and policies by vote,\ncontract, or otherwise. Control can be direct or indirect.\n\n**Your licenses** are all the licenses granted to you for the\nsoftware under these terms.\n\n**Use** means anything you do with the software requiring one\nof your licenses.", + "json": "polyform-noncommercial-1.0.0.json", + "yaml": "polyform-noncommercial-1.0.0.yml", + "html": "polyform-noncommercial-1.0.0.html", + "license": "polyform-noncommercial-1.0.0.LICENSE" + }, + { + "license_key": "polyform-perimeter-1.0.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-polyform-perimeter-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "# PolyForm Perimeter License 1.0.0\n\n\n\n## Acceptance\n\nIn order to get any license under these terms, you must agree\nto them as both strict obligations and conditions to all\nyour licenses.\n\n## Copyright License\n\nThe licensor grants you a copyright license for the\nsoftware to do everything you might do with the software\nthat would otherwise infringe the licensor's copyright\nin it for any permitted purpose. However, you may\nonly distribute the software according to [Distribution\nLicense](#distribution-license) and make changes or new works\nbased on the software according to [Changes and New Works\nLicense](#changes-and-new-works-license).\n\n## Distribution License\n\nThe licensor grants you an additional copyright license\nto distribute copies of the software. Your license\nto distribute covers distributing the software with\nchanges and new works permitted by [Changes and New Works\nLicense](#changes-and-new-works-license).\n\n## Notices\n\nYou must ensure that anyone who gets a copy of any part of\nthe software from you also gets a copy of these terms or the\nURL for them above, as well as copies of any plain-text lines\nbeginning with `Required Notice:` that the licensor provided\nwith the software. For example:\n\n> Required Notice: Copyright Yoyodyne, Inc. (http://example.com)\n\n## Changes and New Works License\n\nThe licensor grants you an additional copyright license to\nmake changes and new works based on the software for any\npermitted purpose.\n\n## Patent License\n\nThe licensor grants you a patent license for the software that\ncovers patent claims the licensor can license, or becomes able\nto license, that you would infringe by using the software.\n\n## Noncompete\n\nAny purpose is a permitted purpose, except for providing to\nothers any product that competes with the software.\n\n## Competition\n\nIf you use this software to market a product as a substitute\nfor the functionality or value of the software, it competes\nwith the software. A product may compete regardless how it is\ndesigned or deployed. For example, a product may compete even\nif it provides its functionality via any kind of interface\n(including services, libraries or plug-ins), even if it is\nported to a different platforms or programming languages,\nand even if it is provided free of charge.\n\n## Fair Use\n\nYou may have \"fair use\" rights for the software under the\nlaw. These terms do not limit them.\n\n## No Other Rights\n\nThese terms do not allow you to sublicense or transfer any of\nyour licenses to anyone else, or prevent the licensor from\ngranting licenses to anyone else. These terms do not imply\nany other licenses.\n\n## Patent Defense\n\nIf you make any written claim that the software infringes or\ncontributes to infringement of any patent, your patent license\nfor the software granted under these terms ends immediately. If\nyour company makes such a claim, your patent license ends\nimmediately for work on behalf of your company.\n\n## Violations\n\nThe first time you are notified in writing that you have\nviolated any of these terms, or done anything with the software\nnot covered by your licenses, your licenses can nonetheless\ncontinue if you come into full compliance with these terms,\nand take practical steps to correct past violations, within\n32 days of receiving notice. Otherwise, all your licenses\nend immediately.\n\n## No Liability\n\n***As far as the law allows, the software comes as is, without\nany warranty or condition, and the licensor will not be liable\nto you for any damages arising out of these terms or the use\nor nature of the software, under any kind of legal claim.***\n\n## Definitions\n\nThe **licensor** is the individual or entity offering these\nterms, and the **software** is the software the licensor makes\navailable under these terms.\n\nA **product** can be a good or service, or a combination\nof them.\n\n**You** refers to the individual or entity agreeing to these\nterms.\n\n**Your company** is any legal entity, sole proprietorship,\nor other kind of organization that you work for, plus all\norganizations that have control over, are under the control of,\nor are under common control with that organization. **Control**\nmeans ownership of substantially all the assets of an entity,\nor the power to direct its management and policies by vote,\ncontract, or otherwise. Control can be direct or indirect.\n\n**Your licenses** are all the licenses granted to you for the\nsoftware under these terms.\n\n**Use** means anything you do with the software requiring one\nof your licenses.", + "json": "polyform-perimeter-1.0.0.json", + "yaml": "polyform-perimeter-1.0.0.yml", + "html": "polyform-perimeter-1.0.0.html", + "license": "polyform-perimeter-1.0.0.LICENSE" + }, + { + "license_key": "polyform-shield-1.0.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-polyform-shield-1.0.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-polyform-defensive-1.0.0" + ], + "is_exception": false, + "is_deprecated": false, + "text": "# PolyForm Shield License 1.0.0\n\n\n\n## Acceptance\n\nIn order to get any license under these terms, you must agree\nto them as both strict obligations and conditions to all\nyour licenses.\n\n## Copyright License\n\nThe licensor grants you a copyright license for the\nsoftware to do everything you might do with the software\nthat would otherwise infringe the licensor's copyright\nin it for any permitted purpose. However, you may\nonly distribute the software according to [Distribution\nLicense](#distribution-license) and make changes or new works\nbased on the software according to [Changes and New Works\nLicense](#changes-and-new-works-license).\n\n## Distribution License\n\nThe licensor grants you an additional copyright license\nto distribute copies of the software. Your license\nto distribute covers distributing the software with\nchanges and new works permitted by [Changes and New Works\nLicense](#changes-and-new-works-license).\n\n## Notices\n\nYou must ensure that anyone who gets a copy of any part of\nthe software from you also gets a copy of these terms or the\nURL for them above, as well as copies of any plain-text lines\nbeginning with `Required Notice:` that the licensor provided\nwith the software. For example:\n\n> Required Notice: Copyright Yoyodyne, Inc. (http://example.com)\n\n## Changes and New Works License\n\nThe licensor grants you an additional copyright license to\nmake changes and new works based on the software for any\npermitted purpose.\n\n## Patent License\n\nThe licensor grants you a patent license for the software that\ncovers patent claims the licensor can license, or becomes able\nto license, that you would infringe by using the software.\n\n## Noncompete\n\nAny purpose is a permitted purpose, except for providing any\nproduct that competes with the software or any product the\nlicensor or any of its affiliates provides using the software.\n\n## Competition\n\nGoods and services compete even when they provide functionality\nthrough different kinds of interfaces or for different technical\nplatforms. Applications can compete with services, libraries\nwith plugins, frameworks with development tools, and so on,\neven if they're written in different programming languages\nor for different computer architectures. Goods and services\ncompete even when provided free of charge. If you market a\nproduct as a practical substitute for the software or another\nproduct, it definitely competes.\n\n## New Products\n\nIf you are using the software to provide a product that does\nnot compete, but the licensor or any of its affiliates brings\nyour product into competition by providing a new version of\nthe software or another product using the software, you may\ncontinue using versions of the software available under these\nterms beforehand to provide your competing product, but not\nany later versions.\n\n## Discontinued Products\n\nYou may begin using the software to compete with a product\nor service that the licensor or any of its affiliates has\nstopped providing, unless the licensor includes a plain-text\nline beginning with `Licensor Line of Business:` with the\nsoftware that mentions that line of business. For example:\n\n> Licensor Line of Business: YoyodyneCMS Content Management\nSystem (http://example.com/cms)\n\n## Sales of Business\n\nIf the licensor or any of its affiliates sells a line of\nbusiness developing the software or using the software\nto provide a product, the buyer can also enforce\n[Noncompete](#noncompete) for that product.\n\n## Fair Use\n\nYou may have \"fair use\" rights for the software under the\nlaw. These terms do not limit them.\n\n## No Other Rights\n\nThese terms do not allow you to sublicense or transfer any of\nyour licenses to anyone else, or prevent the licensor from\ngranting licenses to anyone else. These terms do not imply\nany other licenses.\n\n## Patent Defense\n\nIf you make any written claim that the software infringes or\ncontributes to infringement of any patent, your patent license\nfor the software granted under these terms ends immediately. If\nyour company makes such a claim, your patent license ends\nimmediately for work on behalf of your company.\n\n## Violations\n\nThe first time you are notified in writing that you have\nviolated any of these terms, or done anything with the software\nnot covered by your licenses, your licenses can nonetheless\ncontinue if you come into full compliance with these terms,\nand take practical steps to correct past violations, within\n32 days of receiving notice. Otherwise, all your licenses\nend immediately.\n\n## No Liability\n\n***As far as the law allows, the software comes as is, without\nany warranty or condition, and the licensor will not be liable\nto you for any damages arising out of these terms or the use\nor nature of the software, under any kind of legal claim.***\n\n## Definitions\n\nThe **licensor** is the individual or entity offering these\nterms, and the **software** is the software the licensor makes\navailable under these terms.\n\nA **product** can be a good or service, or a combination\nof them.\n\n**You** refers to the individual or entity agreeing to these\nterms.\n\n**Your company** is any legal entity, sole proprietorship,\nor other kind of organization that you work for, plus all\nits affiliates.\n\n**Affiliates** means the other organizations than an\norganization has control over, is under the control of, or is\nunder common control with.\n\n**Control** means ownership of substantially all the assets of\nan entity, or the power to direct its management and policies\nby vote, contract, or otherwise. Control can be direct or\nindirect.\n\n**Your licenses** are all the licenses granted to you for the\nsoftware under these terms.\n\n**Use** means anything you do with the software requiring one\nof your licenses.", + "json": "polyform-shield-1.0.0.json", + "yaml": "polyform-shield-1.0.0.yml", + "html": "polyform-shield-1.0.0.html", + "license": "polyform-shield-1.0.0.LICENSE" + }, + { + "license_key": "polyform-small-business-1.0.0", + "category": "Source-available", + "spdx_license_key": "PolyForm-Small-Business-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "# Polyform Small Business License 1.0.0\n\n\n\n## Acceptance\n\nIn order to get any license under these terms, you must agree\nto them as both strict obligations and conditions to all\nyour licenses.\n\n## Copyright License\n\nThe licensor grants you a copyright license for the\nsoftware to do everything you might do with the software\nthat would otherwise infringe the licensor's copyright\nin it for any permitted purpose. However, you may\nonly distribute the software according to [Distribution\nLicense](#distribution-license) and make changes or new works\nbased on the software according to [Changes and New Works\nLicense](#changes-and-new-works-license).\n\n## Distribution License\n\nThe licensor grants you an additional copyright license\nto distribute copies of the software. Your license\nto distribute covers distributing the software with\nchanges and new works permitted by [Changes and New Works\nLicense](#changes-and-new-works-license).\n\n## Notices\n\nYou must ensure that anyone who gets a copy of any part of\nthe software from you also gets a copy of these terms or the\nURL for them above, as well as copies of any plain-text lines\nbeginning with `Required Notice:` that the licensor provided\nwith the software. For example:\n\n> Required Notice: Copyright Yoyodyne, Inc. (http://example.com)\n\n## Changes and New Works License\n\nThe licensor grants you an additional copyright license to\nmake changes and new works based on the software for any\npermitted purpose.\n\n## Patent License\n\nThe licensor grants you a patent license for the software that\ncovers patent claims the licensor can license, or becomes able\nto license, that you would infringe by using the software.\n\n## Fair Use\n\nYou may have \"fair use\" rights for the software under the\nlaw. These terms do not limit them.\n\n## Small Business\n\nUse of the software for the benefit of your company is use for\na permitted purpose if your company has fewer than 100 total\nindividuals working as employees and independent contractors,\nand less than 1,000,000 USD (2019) total revenue in the prior\ntax year. Adjust this revenue threshold for inflation according\nto the United States Bureau of Labor Statistics' consumer price\nindex for all urban consumers, U.S. city average, for all items,\nnot seasonally adjusted, with 1982\u00e2\u20ac\u201c1984=100 reference base.\n\n## No Other Rights\n\nThese terms do not allow you to sublicense or transfer any of\nyour licenses to anyone else, or prevent the licensor from\ngranting licenses to anyone else. These terms do not imply\nany other licenses.\n\n## Patent Defense\n\nIf you make any written claim that the software infringes or\ncontributes to infringement of any patent, your patent license\nfor the software granted under these terms ends immediately. If\nyour company makes such a claim, your patent license ends\nimmediately for work on behalf of your company.\n\n## Violations\n\nThe first time you are notified in writing that you have\nviolated any of these terms, or done anything with the software\nnot covered by your licenses, your licenses can nonetheless\ncontinue if you come into full compliance with these terms,\nand take practical steps to correct past violations, within\n32 days of receiving notice. Otherwise, all your licenses\nend immediately.\n\n## No Liability\n\n***As far as the law allows, the software comes as is, without\nany warranty or condition, and the licensor will not be liable\nto you for any damages arising out of these terms or the use\nor nature of the software, under any kind of legal claim.***\n\n## Definitions\n\nThe **licensor** is the individual or entity offering these\nterms, and the **software** is the software the licensor makes\navailable under these terms.\n\n**You** refers to the individual or entity agreeing to these\nterms.\n\n**Your company** is any legal entity, sole proprietorship,\nor other kind of organization that you work for, plus all\norganizations that have control over, are under the control of,\nor are under common control with that organization. **Control**\nmeans ownership of substantially all the assets of an entity,\nor the power to direct its management and policies by vote,\ncontract, or otherwise. Control can be direct or indirect.\n\n**Your licenses** are all the licenses granted to you for the\nsoftware under these terms.\n\n**Use** means anything you do with the software requiring one\nof your licenses.", + "json": "polyform-small-business-1.0.0.json", + "yaml": "polyform-small-business-1.0.0.yml", + "html": "polyform-small-business-1.0.0.html", + "license": "polyform-small-business-1.0.0.LICENSE" + }, + { + "license_key": "polyform-strict-1.0.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-polyform-strict-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "# Polyform Strict License 1.0.0\n\n\n\n## Acceptance\n\nIn order to get any license under these terms, you must agree\nto them as both strict obligations and conditions to all\nyour licenses.\n\n## Copyright License\n\nThe licensor grants you a copyright license for the software\nto do everything you might do with the software that would\notherwise infringe the licensor's copyright in it for any\npermitted purpose, other than distributing the software or\nmaking changes or new works based on the software.\n\n## Patent License\n\nThe licensor grants you a patent license for the software that\ncovers patent claims the licensor can license, or becomes able\nto license, that you would infringe by using the software.\n\n## Noncommercial Purposes\n\nAny noncommercial purpose is a permitted purpose.\n\n## Personal Uses\n\nPersonal use for research, experiment, and testing for\nthe benefit of public knowledge, personal study, private\nentertainment, hobby projects, amateur pursuits, or religious\nobservance, without any anticipated commercial application,\nis use for a permitted purpose.\n\n## Noncommercial Organizations\n\nUse by any charitable organization, educational institution,\npublic research organization, public safety or health\norganization, environmental protection organization,\nor government institution is use for a permitted purpose\nregardless of the source of funding or obligations resulting\nfrom the funding.\n\n## Fair Use\n\nYou may have \"fair use\" rights for the software under the\nlaw. These terms do not limit them.\n\n## No Other Rights\n\nThese terms do not allow you to sublicense or transfer any of\nyour licenses to anyone else, or prevent the licensor from\ngranting licenses to anyone else. These terms do not imply\nany other licenses.\n\n## Patent Defense\n\nIf you make any written claim that the software infringes or\ncontributes to infringement of any patent, your patent license\nfor the software granted under these terms ends immediately. If\nyour company makes such a claim, your patent license ends\nimmediately for work on behalf of your company.\n\n## Violations\n\nThe first time you are notified in writing that you have\nviolated any of these terms, or done anything with the software\nnot covered by your licenses, your licenses can nonetheless\ncontinue if you come into full compliance with these terms,\nand take practical steps to correct past violations, within\n32 days of receiving notice. Otherwise, all your licenses\nend immediately.\n\n## No Liability\n\n***As far as the law allows, the software comes as is, without\nany warranty or condition, and the licensor will not be liable\nto you for any damages arising out of these terms or the use\nor nature of the software, under any kind of legal claim.***\n\n## Definitions\n\nThe **licensor** is the individual or entity offering these\nterms, and the **software** is the software the licensor makes\navailable under these terms.\n\n**You** refers to the individual or entity agreeing to these\nterms.\n\n**Your company** is any legal entity, sole proprietorship,\nor other kind of organization that you work for, plus all\norganizations that have control over, are under the control of,\nor are under common control with that organization. **Control**\nmeans ownership of substantially all the assets of an entity,\nor the power to direct its management and policies by vote,\ncontract, or otherwise. Control can be direct or indirect.\n\n**Your licenses** are all the licenses granted to you for the\nsoftware under these terms.\n\n**Use** means anything you do with the software requiring one\nof your licenses.", + "json": "polyform-strict-1.0.0.json", + "yaml": "polyform-strict-1.0.0.yml", + "html": "polyform-strict-1.0.0.html", + "license": "polyform-strict-1.0.0.LICENSE" + }, + { + "license_key": "postgresql", + "category": "Permissive", + "spdx_license_key": "PostgreSQL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PostgreSQL is released under the PostgreSQL License, a liberal Open Source license, similar to the BSD or MIT licenses.\n\nPostgreSQL Database Management System\n(formerly known as Postgres, then as Postgres95)\n\nPortions Copyright (c) The PostgreSQL Global Development Group\n\nPortions Copyright (c) 1994, The Regents of the University of California\n\nPermission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose, without fee, and without a written agreement is\nhereby granted, provided that the above copyright notice and this paragraph and\nthe following two paragraphs appear in all copies.\n\nIN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\nDIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST\nPROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF\nTHE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nTHE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN \"AS IS\" BASIS, AND\nTHE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,\nUPDATES, ENHANCEMENTS, OR MODIFICATIONS.", + "json": "postgresql.json", + "yaml": "postgresql.yml", + "html": "postgresql.html", + "license": "postgresql.LICENSE" + }, + { + "license_key": "powervr-tools-software-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-powervr-tools-software-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Imagination Technologies Limited (\"Imagination\") provides this Software subject to the terms of this Agreement. If you do not agree with any of these terms, then do not install or otherwise use the Software.\n\nDefinitions\n\"Software\" means all or any component comprising the software in source or binary form, documentation, or other materials including any related updates or upgrades made available by Imagination under this Agreement from time to time.\n\nLicense Grant\nSubject to your compliance with the terms of this Agreement, Imagination grants to you a non-exclusive, non-assignable license to:\n\n(a) use the Software for the sole purpose of developing, profiling, or assisting in the optimisation of internal, commercial, or non-commercial applications;\n\n(b) distribute the Software as a component of your application, provided that:\n\nyou do not distribute the Software on a stand alone basis;\nyou distribute such Software under terms no less restrictive than those in this Agreement;\nyou comply with the attribution requirements set out in Appendix 1;\nyou are solely responsible for any update, support obligation or other liability that may arise from such distribution; and\nyou do not make any statements that your application or its performance are certified, guaranteed or otherwise endorsed by Imagination; and\n(c) use the Software as expressly authorised by Imagination in writing, on the payment and/or support terms set out in Appendix 2 (if applicable).\n\nRestrictions\nOther than as expressly permitted herein, you may not: (i) use the Software for any unauthorised purpose; (ii) modify, disassemble, decompile, reverse engineer, revise or enhance the Software, create derivative works or attempt to discover the source code for any element of the Software not already provided in source code form; (iii) remove any proprietary or copyright notices on or accompanying the Software; or (iv) incorporate or combine the Software, with any open source software in such a way that would cause the Software, or any portion thereof, to be subject to all or part of the license obligations or other intellectual property related terms with respect to such open source software.\n\nOwnership and Contributions\nImagination retains all ownership of the Software, including without limitation all copyrights and other intellectual property rights therein. To the extent you provide any feedback or make any contributions in connection with the Software (collectively \"contributions\"), you agree to assign all intellectual property rights in such contribution to Imagination and agree not to assert any related rights against Imagination or any of its customers or licensees. You understand and agree that Imagination is not required to make any use of any contribution that you provide, but that if Imagination makes use of your contribution, neither Imagination nor any of its customers or licensees are required to credit or compensate you for your contribution. You represent and warrant that you have sufficient rights in your contribution to comply with the foregoing.\n\nWarranty Disclaimer\nTHE SOFTWARE IS PROVIDED \"AS IS\". IMAGINATION HEREBY DISCLAIMS ALL EXPRESS OR IMPLIED WARRANTIES AND CONDITIONS WITH REGARD TO THE SOFTWARE, INCLUDING ALL WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT.\n\nLimitation of Liability\nIN NO EVENT WILL IMAGINATION BE LIABLE TO YOU FOR ANY DAMAGES, CLAIMS OR COSTS WHATSOEVER ARISING FROM THIS AGREEMENT AND/OR YOUR USE OF THE SOFTWARE OR ANY COMPONENT THEREOF, INCLUDING WITHOUT LIMITATION ANY CONSEQUENTIAL, INDIRECT, INCIDENTAL DAMAGES, OR ANY LOST PROFITS OR LOST SAVINGS, EVEN IF IMAGINATION HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS OR FOR ANY CLAIM BY ANY THIRD PARTY. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION.\n\nThird Party Materials\nAll third party materials packaged with the Software, including without limitation, artwork, graphics, game demos and patches, are the sole and exclusive property of such third parties. Imagination makes no representations or warranties about the accuracy, usability or validity of any third party materials, and disclaims all liabilities in connection with such third party materials.\n\nTerm\nThis Agreement is effective until terminated. Imagination has the right to terminate this Agreement immediately if you fail to comply with any term of this Agreement. You may terminate this Agreement by destroying or returning to Imagination all copies of the Software in your possession.\n\nGoverning Law\nThis Agreement is governed by and shall be construed in accordance with English law and each party agrees to submit to the exclusive jurisdiction of the courts of England.\n\nAPPENDIX 1: ATTRIBUTION REQUIREMENTS\nIf source code is released as it is, the Copyright notice should be kept in a visible position. If object code is bundled with a product, all branding should be kept as it was originally, and the following acknowledgement should be displayed clearly in any associated documentation or other collateral in printed or electronic form distributed with the product incorporating the Software: \"This product includes components of the PowerVR Tools Software from Imagination Technologies Limited\". If source code is used to compile a product, the following acknowledgement should be displayed clearly in any associated documentation or other collateral in printed or electronic form distributed with the product incorporating the Software: \"This product includes components of the PowerVR Tools Software from Imagination Technologies Limited\".\n\nAPPENDIX 2: FEES\nLICENSE FEES: 0 (Zero)\n\nROYALTY FEES: 0 (Zero)\n\nSUPPORT AND MAINTENANCE TERMS AND FEES: 0 (Zero)", + "json": "powervr-tools-software-eula.json", + "yaml": "powervr-tools-software-eula.yml", + "html": "powervr-tools-software-eula.html", + "license": "powervr-tools-software-eula.LICENSE" + }, + { + "license_key": "ppp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ppp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The authors hereby grant permission to use, copy, modify, distribute,\nand license this software and its documentation for any purpose,\nprovided that existing copyright notices are retained in all copies and\nthat this notice and the following disclaimer are included verbatim in\nany distributions. No written agreement, license, or royalty fee is\nrequired for any of the authorized uses.\n\nTHIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS *AS IS* AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\nANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.", + "json": "ppp.json", + "yaml": "ppp.yml", + "html": "ppp.html", + "license": "ppp.LICENSE" + }, + { + "license_key": "proguard-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-proguard-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "ProGuard is free. You can use it freely for processing your applications,\ncommercial or not. Your code obviously remains yours after having been processed, and its license can remain the same.\n\nThe ProGuard code itself is copyrighted, but its distribution license provides you with some rights for modifying and redistributing its code and its documentation. More specifically, ProGuard is distributed under the terms of the GNU General Public License (GPL), version 2, as published by the Free Software Foundation (FSF). In short, this means that you may freely redistribute the program, modified or as is, on the condition that you make the complete source code available as well. If you develop a program that is linked with ProGuard, the program as a whole has to be distributed at no charge under the GPL. I am granting a special exception to the latter clause (in wording suggested by the FSF), for combinations with the following stand-alone applications: Apache Ant, Apache Maven, the Google Android SDK, the Eclipse ProGuardDT GUI, the EclipseME JME IDE, the Oracle NetBeans Java IDE, the Oracle JME Wireless Toolkit, the Intel TXE SDK, the Simple Build Tool for Scala, the NeoMAD Tools by Neomades, the Javaground Tools, and the Sanaware Tools.\n\nThe ProGuard user documentation is copyrighted as well. It may only be redistributed without changes, along with the unmodified version of the code.", + "json": "proguard-exception-2.0.json", + "yaml": "proguard-exception-2.0.yml", + "html": "proguard-exception-2.0.html", + "license": "proguard-exception-2.0.LICENSE" + }, + { + "license_key": "proprietary", + "category": "Proprietary Free", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "", + "json": "proprietary.json", + "yaml": "proprietary.yml", + "html": "proprietary.html", + "license": "proprietary.LICENSE" + }, + { + "license_key": "proprietary-license", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-proprietary-license", + "other_spdx_license_keys": [ + "LicenseRef-LICENSE", + "LicenseRef-LICENSE.md" + ], + "is_exception": false, + "is_deprecated": false, + "text": "This component is normally licensed under a proprietary license agreement with \na supplier that has terms and conditions that restrict the use of the code, \nbut may not require payment to the supplier.", + "json": "proprietary-license.json", + "yaml": "proprietary-license.yml", + "html": "proprietary-license.html", + "license": "proprietary-license.LICENSE" + }, + { + "license_key": "prosperity-1.0.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-prosperity-1.0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Prosperity Public License 1.0.1\n\nCopyright Notice: {Licensor Name}\n\nSource Notice: {https://example.com/project}\n\nThis license lets you use and share this software for free,\nwith a trial-length time limit on commercial use. Specifically:\n\nIf you follow the rules below, you may do everything with this\nsoftware that would otherwise infringe my copyright in it or any\npatent claim I can license that covers this software as of my\nlatest contribution.\n\n1. You must limit use of this software in any manner primarily\n intended for or directed toward commercial advantage or\n private monetary compensation to a trial period of 32\n consecutive calendar days. This limit does not apply to use in\n developing feedback, modifications, or extensions that you\n contribute back to those giving this license.\n\n2. Ensure everyone who gets a copy of this software from you,\n in source code or any other form, gets the text of this\n license and the copyright and source notices above.\n\n3. Do not make any legal claim against anyone for infringing\n any patent claim they would infringe by using this software\n alone, accusing this software, with or without changes,\n alone or as part of a larger program.\n\nYou are excused for unknowingly breaking rule 1 if you stop\ndoing anything requiring this license within 30 days of\nlearning you broke the rule.\n\n**This software comes as is, without any warranty at all. As far\nas the law allows, I will not be liable for any damages related\nto this software or this license, for any kind of legal claim.**", + "json": "prosperity-1.0.1.json", + "yaml": "prosperity-1.0.1.yml", + "html": "prosperity-1.0.1.html", + "license": "prosperity-1.0.1.LICENSE" + }, + { + "license_key": "prosperity-2.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-prosperity-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Prosperity Public License 2.0\n\nCopyright Notice: {Licensor Name}\n\nSource Notice: {https://example.com/project}\n\nThis license lets you use and share this software for free,\nwith a trial-length time limit on commercial use. Specifically:\n\nIf you follow the rules below, you may do everything with this\nsoftware that would otherwise infringe either the contributor's\ncopyright in it, any patent claim the contributor can license\nthat covers this software as of the contributor's latest\ncontribution, or both.\n\n1. You must limit use of this software in any manner primarily\n intended for or directed toward commercial advantage or\n private monetary compensation to a trial period of 32\n consecutive calendar days. This limit does not apply to use in\n developing feedback, modifications, or extensions that you\n contribute back to those giving this license.\n\n2. Ensure everyone who gets a copy of this software from you, in\n source code or any other form, gets the text of this license\n and the contributor and source code lines above.\n\n3. Do not make any legal claim against anyone for infringing any\n patent claim they would infringe by using this software alone,\n accusing this software, with or without changes, alone or as\n part of a larger application.\n\nYou are excused for unknowingly breaking rule 1 if you stop\ndoing anything requiring this license within 30 days of\nlearning you broke the rule.\n\n**This software comes as is, without any warranty at all. As far\nas the law allows, the contributor will not be liable for any\ndamages related to this software or this license, for any kind of\nlegal claim.**", + "json": "prosperity-2.0.json", + "yaml": "prosperity-2.0.yml", + "html": "prosperity-2.0.html", + "license": "prosperity-2.0.LICENSE" + }, + { + "license_key": "prosperity-3.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-prosperity-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "# The Prosperity Public License 3.0.0\n\nContributor: $name\n\nSource Code: $address\n\n## Purpose\n\nThis license allows you to use and share this software for noncommercial purposes for free and to try this software for commercial purposes for thirty days.\n\n## Agreement\n\nIn order to receive this license, you have to agree to its rules. Those rules are both obligations under that agreement and conditions to your license. Don't do anything with this software that triggers a rule you can't or won't follow.\n\n## Notices\n\nMake sure everyone who gets a copy of any part of this software from you, with or without changes, also gets the text of this license and the contributor and source code lines above.\n\n## Commercial Trial\n\nLimit your use of this software for commercial purposes to a thirty-day trial period. If you use this software for work, your company gets one trial period for all personnel, not one trial per person.\n\n## Contributions Back\n\nDeveloping feedback, changes, or additions that you contribute back to the contributor on the terms of a standardized public software license such as [the Blue Oak Model License 1.0.0](https://blueoakcouncil.org/license/1.0.0), [the Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0.html), [the MIT license](https://spdx.org/licenses/MIT.html), or [the two-clause BSD license](https://spdx.org/licenses/BSD-2-Clause.html) doesn't count as use for a commercial purpose.\n\n## Personal Uses\n\nPersonal use for research, experiment, and testing for the benefit of public knowledge, personal study, private entertainment, hobby projects, amateur pursuits, or religious observance, without any anticipated commercial application, doesn't count as use for a commercial purpose.\n\n## Noncommercial Organizations\n\nUse by any charitable organization, educational institution, public research organization, public safety or health organization, environmental protection organization, or government institution doesn't count as use for a commercial purpose regardless of the source of funding or obligations resulting from the funding.\n\n## Defense\n\nDon't make any legal claim against anyone accusing this software, with or without changes, alone or with other technology, of infringing any patent.\n\n## Copyright\n\nThe contributor licenses you to do everything with this software that would otherwise infringe their copyright in it.\n\n## Patent\n\nThe contributor licenses you to do everything with this software that would otherwise infringe any patents they can license or become able to license.\n\n## Reliability\n\nThe contributor can't revoke this license.\n\n## Excuse\n\nYou're excused for unknowingly breaking [Notices](#notices) if you take all practical steps to comply within thirty days of learning you broke the rule.\n\n## No Liability\n\n***As far as the law allows, this software comes as is, without any warranty or condition, and the contributor won't be liable to anyone for any damages related to this software or this license, under any kind of legal claim.***", + "json": "prosperity-3.0.json", + "yaml": "prosperity-3.0.yml", + "html": "prosperity-3.0.html", + "license": "prosperity-3.0.LICENSE" + }, + { + "license_key": "protobuf", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-protobuf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nCode generated by the Protocol Buffer compiler is owned by the owner\nof the input file used when generating it. This code is not\nstandalone and requires a support library to be linked with it. This\nsupport library is itself covered by the above license.", + "json": "protobuf.json", + "yaml": "protobuf.yml", + "html": "protobuf.html", + "license": "protobuf.LICENSE" + }, + { + "license_key": "ps-or-pdf-font-exception-20170817", + "category": "Copyleft Limited", + "spdx_license_key": "PS-or-PDF-font-exception-20170817", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "The font and related files in this directory are distributed under the\nGNU AFFERO GENERAL PUBLIC LICENSE Version 3 (see the file COPYING), with\nthe following exemption:\n\nAs a special exception, permission is granted to include these font\nprograms in a Postscript or PDF file that consists of a document that\ncontains text to be displayed or printed using this font, regardless\nof the conditions or license applying to the document itself.", + "json": "ps-or-pdf-font-exception-20170817.json", + "yaml": "ps-or-pdf-font-exception-20170817.yml", + "html": "ps-or-pdf-font-exception-20170817.html", + "license": "ps-or-pdf-font-exception-20170817.LICENSE" + }, + { + "license_key": "psf-2.0", + "category": "Permissive", + "spdx_license_key": "PSF-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2\n\n1. 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.\n2. 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 Python Software Foundation; All Rights Reserved\" are retained in Python alone or in any derivative version prepared by Licensee.\n3. 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.\n4. 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.\n5. 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.\n6. This License Agreement will automatically terminate upon a material breach of its terms and conditions.\n7. 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.\n8. By copying, installing or otherwise using Python, Licensee agrees to be bound by the terms and conditions of this License Agreement.", + "json": "psf-2.0.json", + "yaml": "psf-2.0.yml", + "html": "psf-2.0.html", + "license": "psf-2.0.LICENSE" + }, + { + "license_key": "psf-3.7.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-psf-3.7.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PSF LICENSE AGREEMENT FOR PYTHON 3.7.2\n\n1. This LICENSE AGREEMENT is between the Python Software Foundation (\"PSF\"), and\n the Individual or Organization (\"Licensee\") accessing and otherwise using Python\n 3.7.2 software in source or binary form and its associated documentation.\n\n2. Subject to the terms and conditions of this License Agreement, PSF hereby\n grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,\n analyze, test, perform and/or display publicly, prepare derivative works,\n distribute, and otherwise use Python 3.7.2 alone or in any derivative\n version, provided, however, that PSF's License Agreement and PSF's notice of\n copyright, i.e., \"Copyright \u00a9 2001-2019 Python Software Foundation; All Rights\n Reserved\" are retained in Python 3.7.2 alone or in any derivative version\n prepared by Licensee.\n\n3. In the event Licensee prepares a derivative work that is based on or\n incorporates Python 3.7.2 or any part thereof, and wants to make the\n derivative work available to others as provided herein, then Licensee hereby\n agrees to include in any such work a brief summary of the changes made to Python\n 3.7.2.\n\n4. PSF is making Python 3.7.2 available to Licensee on an \"AS IS\" basis.\n PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF\n EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR\n WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE\n USE OF PYTHON 3.7.2 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.\n\n5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 3.7.2\n FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF\n MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 3.7.2, OR ANY DERIVATIVE\n THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n6. This License Agreement will automatically terminate upon a material breach of\n its terms and conditions.\n\n7. Nothing in this License Agreement shall be deemed to create any relationship\n of agency, partnership, or joint venture between PSF and Licensee. This License\n Agreement does not grant permission to use PSF trademarks or trade name in a\n trademark sense to endorse or promote products or services of Licensee, or any\n third party.\n\n8. By copying, installing or otherwise using Python 3.7.2, Licensee agrees\n to be bound by the terms and conditions of this License Agreement.", + "json": "psf-3.7.2.json", + "yaml": "psf-3.7.2.yml", + "html": "psf-3.7.2.html", + "license": "psf-3.7.2.LICENSE" + }, + { + "license_key": "psfrag", + "category": "Permissive", + "spdx_license_key": "psfrag", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This system is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR\nA PARTICULAR PURPOSE. Don't come complaining to us if you modify this file and\nit doesn't work! If this file is modified by anyone but the authors, those\nchanges and their authors must be explicitly stated HERE.", + "json": "psfrag.json", + "yaml": "psfrag.yml", + "html": "psfrag.html", + "license": "psfrag.LICENSE" + }, + { + "license_key": "psutils", + "category": "Permissive", + "spdx_license_key": "psutils", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PS Utilities Package\n\nThe constituent files of this package listed below are copyright (C) 1991-1995 Angus J. C. Duggan.\n\nLICENSE Makefile.msc Makefile.nt Makefile.os2\nMakefile.unix README config.h descrip.mms\nepsffit.c epsffit.man extractres.man extractres.pl\nfixdlsrps.man fixdlsrps.pl fixfmps.man fixfmps.pl\nfixmacps.man fixmacps.pl fixpsditps.man fixpsditps.pl\nfixpspps.man fixpspps.pl fixscribeps.man fixscribeps.pl\nfixtpps.man fixtpps.pl fixwfwps.man fixwfwps.pl\nfixwpps.man fixwpps.pl fixwwps.man fixwwps.pl\ngetafm getafm.man includeres.man includeres.pl\nmaketext patchlev.h psbook.c psbook.man\npserror.c pserror.h psmerge.man psmerge.pl\npsnup.c psnup.man psresize.c psresize.man\npsselect.c psselect.man psspec.c psspec.h\npstops.c pstops.man psutil.c psutil.h\nshowchar\n\nThey may be copied and used for any purpose (including distribution as part of a for-profit product), provided:\n\n1) The original attribution of the programs is clearly displayed in the product and/or documentation, even if the programs are modified and/or renamed as part of the product.\n\n2) The original source code of the programs is provided free of charge (except for reasonable distribution costs). For a definition of reasonable distribution costs, see the Gnu General Public License or Larry Wall's Artistic License (provided with the Perl 4 kit). The GPL and Artistic License in NO WAY affect this license; they are merely used as examples of the spirit in which it is intended.\n\n3) These programs are provided \"as-is\". No warranty or guarantee of their fitness for any particular task is provided. Use of these programs is completely at your own risk.\n\nBasically, I don't mind how you use the programs so long as you acknowledge the author, and give people the originals if they want them.", + "json": "psutils.json", + "yaml": "psutils.yml", + "html": "psutils.html", + "license": "psutils.LICENSE" + }, + { + "license_key": "psytec-freesoft", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-psytec-freesoft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "(translated from the Japanese)\nAbout the license\t\t\t\t\n \u00b7 Distribution of this software is free. \n \u00b7 Recognize the use of part or all of the source code, the use of it and modify. \n \u00b7 It is not necessary according to the name of our need to ask permission to us when you use the source code, nor.", + "json": "psytec-freesoft.json", + "yaml": "psytec-freesoft.yml", + "html": "psytec-freesoft.html", + "license": "psytec-freesoft.LICENSE" + }, + { + "license_key": "public-domain", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-public-domain", + "other_spdx_license_keys": [ + "LicenseRef-PublicDomain" + ], + "is_exception": false, + "is_deprecated": false, + "text": "", + "json": "public-domain.json", + "yaml": "public-domain.yml", + "html": "public-domain.html", + "license": "public-domain.LICENSE" + }, + { + "license_key": "public-domain-disclaimer", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-public-domain-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This code is hereby placed in the public domain.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS\nOR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "public-domain-disclaimer.json", + "yaml": "public-domain-disclaimer.yml", + "html": "public-domain-disclaimer.html", + "license": "public-domain-disclaimer.LICENSE" + }, + { + "license_key": "purdue-bsd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-purdue-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software is not subject to any license of the American Telephone\nand Telegraph Company or the Regents of the University of California.\n\nPermission is granted to anyone to use this software for any purpose on any\ncomputer system, and to alter it and redistribute it freely, subject to the following\nrestrictions:\n\n1. Neither the authors nor Purdue University are responsible for any\nconsequences of the use of this software.\n\n2. The origin of this software must not be misrepresented, either by\nexplicit claim or by omission. Credit to the authors and Purdue\nUniversity must appear in documentation and sources.\n\n3. Altered versions must be plainly marked as such, and must not be\nmisrepresented as being the original software.\n\n4. This notice may not be removed or altered.", + "json": "purdue-bsd.json", + "yaml": "purdue-bsd.yml", + "html": "purdue-bsd.html", + "license": "purdue-bsd.LICENSE" + }, + { + "license_key": "pybench", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pybench", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "pybench License\n---------------\nThis copyright notice and license applies to all files in the pybench\ndirectory of the pybench distribution.\nCopyright (c), 1997-2006, Marc-Andre Lemburg (mal@lemburg.com)\nCopyright (c), 2000-2006, eGenix.com Software GmbH (info@egenix.com)\n All Rights Reserved.\n\nPermission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose and without fee or royalty is hereby\ngranted, provided that the above copyright notice appear in all copies\nand that both that copyright notice and this permission notice appear\nin supporting documentation or portions thereof, including\nmodifications, that you make.\n\nTHE AUTHOR MARC-ANDRE LEMBURG DISCLAIMS ALL WARRANTIES WITH REGARD TO\nTHIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS, IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL,\nINDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING\nFROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,\nNEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION\nWITH THE USE OR PERFORMANCE OF THIS SOFTWARE !", + "json": "pybench.json", + "yaml": "pybench.yml", + "html": "pybench.html", + "license": "pybench.LICENSE" + }, + { + "license_key": "pycrypto", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pycrypto", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PyCrypto License\nThe following software may be included in this product:\n\nPyCrypto - The Python Cryptography Toolkit \n\n=================================================================== \nDistribute and use freely; there are no restrictions on further \ndissemination and usage except those imposed by the laws of your \ncountry of residence. This software is provided \"as is\" without \nwarranty of fitness for use or suitability for any purpose, express \nor implied. Use at your own risk or not at all. \n=================================================================== \n\nIncorporating the code into commercial products is permitted; you do \nnot have to make source available or contribute your changes back \n(though that would be nice).", + "json": "pycrypto.json", + "yaml": "pycrypto.yml", + "html": "pycrypto.html", + "license": "pycrypto.LICENSE" + }, + { + "license_key": "pygres-2.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pygres-2.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PyGres, version 2.2 A Python interface for PostgreSQL database. Written by\nD'Arcy J.M. Cain, (darcy@druid.net). Based heavily on code written by\nPascal Andre, andre@chimay.via.ecp.fr. Copyright (c) 1995, Pascal Andre\n(andre@via.ecp.fr).\n\nPermission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose, without fee, and without a written\nagreement is hereby granted, provided that the above copyright notice and\nthis paragraph and the following two paragraphs appear in all copies or in\nany new file that contains a substantial portion of this file.\n\nIN NO EVENT SHALL THE AUTHOR BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,\nSPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS,\nARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE\nAUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nTHE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN \"AS IS\" BASIS, AND THE\nAUTHOR HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,\nENHANCEMENTS, OR MODIFICATIONS.\n\nFurther modifications copyright 1997, 1998, 1999 by D'Arcy J.M. Cain\n(darcy@druid.net) subject to the same terms and conditions as above.", + "json": "pygres-2.2.json", + "yaml": "pygres-2.2.yml", + "html": "pygres-2.2.html", + "license": "pygres-2.2.LICENSE" + }, + { + "license_key": "python", + "category": "Permissive", + "spdx_license_key": "Python-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2\n--------------------------------------------\n\n1. This LICENSE AGREEMENT is between the Python Software Foundation\n(\"PSF\"), and the Individual or Organization (\"Licensee\") accessing and\notherwise using this software (\"Python\") in source or binary form and\nits associated documentation.\n\n2. Subject to the terms and conditions of this License Agreement, PSF hereby\ngrants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,\nanalyze, test, perform and/or display publicly, prepare derivative works,\ndistribute, and otherwise use Python alone or in any derivative version,\nprovided, however, that PSF's License Agreement and PSF's notice of copyright,\ni.e., \"Copyright (c) Python Software Foundation;\nAll Rights Reserved\" are retained in Python alone or in any derivative version\nprepared by Licensee.\n\n3. In the event Licensee prepares a derivative work that is based on\nor incorporates Python or any part thereof, and wants to make\nthe derivative work available to others as provided herein, then\nLicensee hereby agrees to include in any such work a brief summary of\nthe changes made to Python.\n\n4. PSF is making Python available to Licensee on an \"AS IS\"\nbasis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON\nFOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS\nA RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,\nOR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n6. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n7. Nothing in this License Agreement shall be deemed to create any\nrelationship of agency, partnership, or joint venture between PSF and\nLicensee. This License Agreement does not grant permission to use PSF\ntrademarks or trade name in a trademark sense to endorse or promote\nproducts or services of Licensee, or any third party.\n\n8. By copying, installing or otherwise using Python, Licensee\nagrees to be bound by the terms and conditions of this License\nAgreement.\n\n\nBEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0\n-------------------------------------------\n\nBEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1\n\n1. This LICENSE AGREEMENT is between BeOpen.com (\"BeOpen\"), having an\noffice at 160 Saratoga Avenue, Santa Clara, CA 95051, and the\nIndividual or Organization (\"Licensee\") accessing and otherwise using\nthis software in source or binary form and its associated\ndocumentation (\"the Software\").\n\n2. Subject to the terms and conditions of this BeOpen Python License\nAgreement, BeOpen hereby grants Licensee a non-exclusive,\nroyalty-free, world-wide license to reproduce, analyze, test, perform\nand/or display publicly, prepare derivative works, distribute, and\notherwise use the Software alone or in any derivative version,\nprovided, however, that the BeOpen Python License is retained in the\nSoftware, alone or in any derivative version prepared by Licensee.\n\n3. BeOpen is making the Software available to Licensee on an \"AS IS\"\nbasis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE\nSOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS\nAS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY\nDERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n5. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n6. This License Agreement shall be governed by and interpreted in all\nrespects by the law of the State of California, excluding conflict of\nlaw provisions. Nothing in this License Agreement shall be deemed to\ncreate any relationship of agency, partnership, or joint venture\nbetween BeOpen and Licensee. This License Agreement does not grant\npermission to use BeOpen trademarks or trade names in a trademark\nsense to endorse or promote products or services of Licensee, or any\nthird party. As an exception, the \"BeOpen Python\" logos available at\nhttp://www.pythonlabs.com/logos.html may be used according to the\npermissions granted on that web page.\n\n7. By copying, installing or otherwise using the software, Licensee\nagrees to be bound by the terms and conditions of this License\nAgreement.\n\n\nCNRI LICENSE AGREEMENT FOR PYTHON 1.6.1\n---------------------------------------\n\n1. This LICENSE AGREEMENT is between the Corporation for National\nResearch Initiatives, having an office at 1895 Preston White Drive,\nReston, VA 20191 (\"CNRI\"), and the Individual or Organization\n(\"Licensee\") accessing and otherwise using Python 1.6.1 software in\nsource or binary form and its associated documentation.\n\n2. Subject to the terms and conditions of this License Agreement, CNRI\nhereby grants Licensee a nonexclusive, royalty-free, world-wide\nlicense to reproduce, analyze, test, perform and/or display publicly,\nprepare derivative works, distribute, and otherwise use Python 1.6.1\nalone or in any derivative version, provided, however, that CNRI's\nLicense Agreement and CNRI's notice of copyright, i.e., \"Copyright (c)\n1995-2001 Corporation for National Research Initiatives; All Rights\nReserved\" are retained in Python 1.6.1 alone or in any derivative\nversion prepared by Licensee. Alternately, in lieu of CNRI's License\nAgreement, Licensee may substitute the following text (omitting the\nquotes): \"Python 1.6.1 is made available subject to the terms and\nconditions in CNRI's License Agreement. This Agreement together with\nPython 1.6.1 may be located on the Internet using the following\nunique, persistent identifier (known as a handle): 1895.22/1013. This\nAgreement may also be obtained from a proxy server on the Internet\nusing the following URL: http://hdl.handle.net/1895.22/1013\".\n\n3. In the event Licensee prepares a derivative work that is based on\nor incorporates Python 1.6.1 or any part thereof, and wants to make\nthe derivative work available to others as provided herein, then\nLicensee hereby agrees to include in any such work a brief summary of\nthe changes made to Python 1.6.1.\n\n4. CNRI is making Python 1.6.1 available to Licensee on an \"AS IS\"\nbasis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON\n1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS\nA RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,\nOR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n6. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n7. This License Agreement shall be governed by the federal\nintellectual property law of the United States, including without\nlimitation the federal copyright law, and, to the extent such\nU.S. federal law does not apply, by the law of the Commonwealth of\nVirginia, excluding Virginia's conflict of law provisions.\nNotwithstanding the foregoing, with regard to derivative works based\non Python 1.6.1 that incorporate non-separable material that was\npreviously distributed under the GNU General Public License (GPL), the\nlaw of the Commonwealth of Virginia shall govern this License\nAgreement only as to issues arising under or with respect to\nParagraphs 4, 5, and 7 of this License Agreement. Nothing in this\nLicense Agreement shall be deemed to create any relationship of\nagency, partnership, or joint venture between CNRI and Licensee. This\nLicense Agreement does not grant permission to use CNRI trademarks or\ntrade name in a trademark sense to endorse or promote products or\nservices of Licensee, or any third party.\n\n8. By clicking on the \"ACCEPT\" button where indicated, or by copying,\ninstalling or otherwise using Python 1.6.1, Licensee agrees to be\nbound by the terms and conditions of this License Agreement.\n\n ACCEPT\n\n\nCWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2\n--------------------------------------------------\n\nCopyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,\nThe Netherlands. All rights reserved.\n\nPermission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose and without fee is hereby granted,\nprovided that the above copyright notice appear in all copies and that\nboth that copyright notice and this permission notice appear in\nsupporting documentation, and that the name of Stichting Mathematisch\nCentrum or CWI not be used in advertising or publicity pertaining to\ndistribution of the software without specific, written prior\npermission.\n\nSTICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO\nTHIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE\nFOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT\nOF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "python.json", + "yaml": "python.yml", + "html": "python.html", + "license": "python.LICENSE" + }, + { + "license_key": "python-2.0.1", + "category": "Permissive", + "spdx_license_key": "Python-2.0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2\n--------------------------------------------\n\n1. This LICENSE AGREEMENT is between the Python Software Foundation\n(\"PSF\"), and the Individual or Organization (\"Licensee\") accessing and\notherwise using this software (\"Python\") in source or binary form and\nits associated documentation.\n\n2. Subject to the terms and conditions of this License Agreement, PSF hereby\ngrants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,\nanalyze, test, perform and/or display publicly, prepare derivative works,\ndistribute, and otherwise use Python alone or in any derivative version,\nprovided, however, that PSF's License Agreement and PSF's notice of copyright,\ni.e., \"Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,\n2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Python Software Foundation;\nAll Rights Reserved\" are retained in Python alone or in any derivative version\nprepared by Licensee.\n\n3. In the event Licensee prepares a derivative work that is based on\nor incorporates Python or any part thereof, and wants to make\nthe derivative work available to others as provided herein, then\nLicensee hereby agrees to include in any such work a brief summary of\nthe changes made to Python.\n\n4. PSF is making Python available to Licensee on an \"AS IS\"\nbasis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON\nFOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS\nA RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,\nOR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n6. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n7. Nothing in this License Agreement shall be deemed to create any\nrelationship of agency, partnership, or joint venture between PSF and\nLicensee. This License Agreement does not grant permission to use PSF\ntrademarks or trade name in a trademark sense to endorse or promote\nproducts or services of Licensee, or any third party.\n\n8. By copying, installing or otherwise using Python, Licensee\nagrees to be bound by the terms and conditions of this License\nAgreement.\n\n\nBEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0\n-------------------------------------------\n\nBEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1\n\n1. This LICENSE AGREEMENT is between BeOpen.com (\"BeOpen\"), having an\noffice at 160 Saratoga Avenue, Santa Clara, CA 95051, and the\nIndividual or Organization (\"Licensee\") accessing and otherwise using\nthis software in source or binary form and its associated\ndocumentation (\"the Software\").\n\n2. Subject to the terms and conditions of this BeOpen Python License\nAgreement, BeOpen hereby grants Licensee a non-exclusive,\nroyalty-free, world-wide license to reproduce, analyze, test, perform\nand/or display publicly, prepare derivative works, distribute, and\notherwise use the Software alone or in any derivative version,\nprovided, however, that the BeOpen Python License is retained in the\nSoftware, alone or in any derivative version prepared by Licensee.\n\n3. BeOpen is making the Software available to Licensee on an \"AS IS\"\nbasis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE\nSOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS\nAS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY\nDERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n5. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n6. This License Agreement shall be governed by and interpreted in all\nrespects by the law of the State of California, excluding conflict of\nlaw provisions. Nothing in this License Agreement shall be deemed to\ncreate any relationship of agency, partnership, or joint venture\nbetween BeOpen and Licensee. This License Agreement does not grant\npermission to use BeOpen trademarks or trade names in a trademark\nsense to endorse or promote products or services of Licensee, or any\nthird party. As an exception, the \"BeOpen Python\" logos available at\nhttp://www.pythonlabs.com/logos.html may be used according to the\npermissions granted on that web page.\n\n7. By copying, installing or otherwise using the software, Licensee\nagrees to be bound by the terms and conditions of this License\nAgreement.\n\n\nCNRI LICENSE AGREEMENT FOR PYTHON 1.6.1\n---------------------------------------\n\n1. This LICENSE AGREEMENT is between the Corporation for National\nResearch Initiatives, having an office at 1895 Preston White Drive,\nReston, VA 20191 (\"CNRI\"), and the Individual or Organization\n(\"Licensee\") accessing and otherwise using Python 1.6.1 software in\nsource or binary form and its associated documentation.\n\n2. Subject to the terms and conditions of this License Agreement, CNRI\nhereby grants Licensee a nonexclusive, royalty-free, world-wide\nlicense to reproduce, analyze, test, perform and/or display publicly,\nprepare derivative works, distribute, and otherwise use Python 1.6.1\nalone or in any derivative version, provided, however, that CNRI's\nLicense Agreement and CNRI's notice of copyright, i.e., \"Copyright (c)\n1995-2001 Corporation for National Research Initiatives; All Rights\nReserved\" are retained in Python 1.6.1 alone or in any derivative\nversion prepared by Licensee. Alternately, in lieu of CNRI's License\nAgreement, Licensee may substitute the following text (omitting the\nquotes): \"Python 1.6.1 is made available subject to the terms and\nconditions in CNRI's License Agreement. This Agreement together with\nPython 1.6.1 may be located on the internet using the following\nunique, persistent identifier (known as a handle): 1895.22/1013. This\nAgreement may also be obtained from a proxy server on the internet\nusing the following URL: http://hdl.handle.net/1895.22/1013\".\n\n3. In the event Licensee prepares a derivative work that is based on\nor incorporates Python 1.6.1 or any part thereof, and wants to make\nthe derivative work available to others as provided herein, then\nLicensee hereby agrees to include in any such work a brief summary of\nthe changes made to Python 1.6.1.\n\n4. CNRI is making Python 1.6.1 available to Licensee on an \"AS IS\"\nbasis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON\n1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS\nA RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,\nOR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n6. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n7. This License Agreement shall be governed by the federal\nintellectual property law of the United States, including without\nlimitation the federal copyright law, and, to the extent such\nU.S. federal law does not apply, by the law of the Commonwealth of\nVirginia, excluding Virginia's conflict of law provisions.\nNotwithstanding the foregoing, with regard to derivative works based\non Python 1.6.1 that incorporate non-separable material that was\npreviously distributed under the GNU General Public License (GPL), the\nlaw of the Commonwealth of Virginia shall govern this License\nAgreement only as to issues arising under or with respect to\nParagraphs 4, 5, and 7 of this License Agreement. Nothing in this\nLicense Agreement shall be deemed to create any relationship of\nagency, partnership, or joint venture between CNRI and Licensee. This\nLicense Agreement does not grant permission to use CNRI trademarks or\ntrade name in a trademark sense to endorse or promote products or\nservices of Licensee, or any third party.\n\n8. By clicking on the \"ACCEPT\" button where indicated, or by copying,\ninstalling or otherwise using Python 1.6.1, Licensee agrees to be\nbound by the terms and conditions of this License Agreement.\n\n ACCEPT\n\n\nCWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2\n--------------------------------------------------\n\nCopyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,\nThe Netherlands. All rights reserved.\n\nPermission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose and without fee is hereby granted,\nprovided that the above copyright notice appear in all copies and that\nboth that copyright notice and this permission notice appear in\nsupporting documentation, and that the name of Stichting Mathematisch\nCentrum or CWI not be used in advertising or publicity pertaining to\ndistribution of the software without specific, written prior\npermission.\n\nSTICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO\nTHIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE\nFOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT\nOF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON DOCUMENTATION\n----------------------------------------------------------------------\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.", + "json": "python-2.0.1.json", + "yaml": "python-2.0.1.yml", + "html": "python-2.0.1.html", + "license": "python-2.0.1.LICENSE" + }, + { + "license_key": "python-cwi", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-python-cwi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software and its \ndocumentation for any purpose and without fee is hereby granted, \nprovided that the above copyright notice appear in all copies and that \nboth that copyright notice and this permission notice appear in \nsupporting documentation, and that the name of Stichting Mathematisch \nCentrum or CWI not be used in advertising or publicity pertaining to \ndistribution of the software without specific, written prior \npermission. \n\nSTICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO \nTHIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE \nFOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES \nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN \nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT \nOF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "python-cwi.json", + "yaml": "python-cwi.yml", + "html": "python-cwi.html", + "license": "python-cwi.LICENSE" + }, + { + "license_key": "qaplug", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-qaplug", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "END USER LICENSE AGREEMENT\n\nSolDevelo (\"Licensor\") will license the software application (\"Software\") to the User (\"Licensee\"), upon the condition that Licensee accept all of the Terms and Conditions of this End User License Agreement (\"Agreement\").\nPlease read the Terms and Conditions of this Agreement.\n\nTerms and Conditions\n\n1. Use.\nLicensee may use the Software solely in accordance with the Documentation or any other use restrictions contained herein.\nLicensee may install the Software on any number of machines that are under Licensee\u2019s personal control.\n\n2. Use Restrictions.\nLicensee agrees not to modify, change, disassemble, decompile or otherwise reverse engineer the Software.\n\n3. Bug Fixes.\nLicensee shall have access to any bug fixes for the Software that Licensor makes available to its general customer base.\n\n4. Ownership.\nThe Software is owned by Licensor.\nThe Software is protected by copyright and other laws.\nSolDevelo reserves the right to any and all protected components of its Software \u2013 including but not content with: the name of software, design, artwork, individual features.\nYou cannot copy, modify, adapt, distribute, reverse engineer and decompile any part of the Software which is in the possession of SolDevelo or persons who created them.\n\n5. Disclaimer of Warranty.\nThe Software is provided without warranty in its current \"AS IS\" condition.\nLICENSOR MAKES NO WARRANTY OF ANY KIND WHATSOEVER, WHETHER EXPRESSED OR IMPLIED, INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n\n6. Limitation of Liability.\nIN NO EVENT SHALL LICENSOR BE LIABLE UNDER ANY THEORY OF LIABILITY, WHETHER IN AN EQUITABLE, LEGAL, OR COMMON LAW ACTION ARISING HEREUNDER FOR CONTRACT, STRICT LIABILITY, INDEMNITY, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, FOR ANY DAMAGES.\nIN NO EVENT SHALL LICENSOR BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, EXEMPLARY, PUNITIVE, OR CONSEQUENTIAL DAMAGES OF ANY KIND AND HOWEVER CAUSED, INCLUDING BUT NOT LIMITED TO BUSINESS INTERRUPTION OR LOSS OF PROFITS, BUSINESS OPPORTUNITIES, OR GOOD WILL EVEN IF NOTIFIED OF THE POSSIBILITY OF SUCH DAMAGE, AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY.\n\n7. Confidential Information.\nLicensee agrees to keep confidential all technical, product, business, and other information regarding the Software (the \"Confidential Information\"), including but not limited to programming techniques and methods, research and development, computer programs, documentation, marketing plans, and business methods.\nLicensee shall at all times protect and safeguard the Confidential Information and agrees not to disclose, give, transmit or otherwise convey any Confidential Information, in whole or in part, to any other party.\nLicensee further agrees not to attempt to ascertain the source code of any computer program by unauthorized access or review, reverse engineering, decompilation, disassembly, or any other technique or method.\nLicensee agrees that it will not use any Confidential Information for its own purpose or for the benefit of any third party and shall honor the copyrights of and will not copy, duplicate, or in any manner reproduce any such copyrighted materials.\nThe provisions of this Section shall survive termination or expiration of this Agreement.\n\n8. Entire Agreement.\nThis Agreement constitutes the entire agreement and understanding between the parties relating to the subject matter hereof.\nThis Agreement may not be amended except by a written document signed by both parties.\n\n9. Severability.\nEach provision of this Agreement is a separately enforceable provision.\nIf any provision of this Agreement is determined to be or becomes unenforceable or illegal, such provision shall be reformed to the minimum extent necessary in order for this Agreement to remain in effect in accordance with its terms as modified by such reformation.", + "json": "qaplug.json", + "yaml": "qaplug.yml", + "html": "qaplug.html", + "license": "qaplug.LICENSE" + }, + { + "license_key": "qca-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-qca-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution. Reproduction and redistribution in binary form, without\nmodification, for use solely in conjunction with a Qualcomm Atheros, Inc.\nchipset, is permitted provided that the following conditions are met:\n\n \u2022 Redistributions must reproduce the above copyright notice and the following\n disclaimer in the documentation and/or other materials provided with the\n distribution.\n\n \u2022 Neither the name of Qualcomm Atheros, Inc. nor the names of its suppliers\n may be used to endorse or promote products derived from this Software\n without specific prior written permission.\n\n \u2022 No reverse engineering, decompilation, or disassembly of this Software is\n permitted.\n\nLimited patent license. Qualcomm Atheros, Inc. (\u201cLicensor\u201d) grants you\n(\u201cLicensee\u201d) a limited, worldwide, royalty-free, non-exclusive license under\nthe Patents to make, have made, use, import, offer to sell and sell the\nSoftware. No hardware per se is licensed hereunder.\nThe term \u201cPatents\u201d as used in this agreement means only those patents or patent\napplications owned solely and exclusively by Licensor as of the date of\nLicensor\u2019s submission of the Software and any patents deriving priority (i.e.,\nhaving a first effective filing date) therefrom. The term \u201cSoftware\u201d as used in\nthis agreement means the firmware image submitted by Licensor, under the terms\nof this license, to git://git.kernel.org/pub/scm/linux/kernel/git/firmware/\nlinux-firmware.git.\nNotwithstanding anything to the contrary herein, Licensor does not grant and\nLicensee does not receive, by virtue of this agreement or the Licensor\u2019s\nsubmission of any Software, any license or other rights under any patent or\npatent application owned by any affiliate of Licensor or any other entity\n(other than Licensor), whether expressly, impliedly, by virtue of estoppel or\nexhaustion, or otherwise.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\nTHE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\nOF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\nUSE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "qca-linux-firmware.json", + "yaml": "qca-linux-firmware.yml", + "html": "qca-linux-firmware.html", + "license": "qca-linux-firmware.LICENSE" + }, + { + "license_key": "qca-technology", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-qca-technology", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in binary forms, without\nmodification, are permitted (subject to the limitations in the\ndisclaimer below) provided that the following conditions are met:\n\n* Redistributions must reproduce the above copyright notice, this list\n of conditions, and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of Qualcomm Atheros, Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n* No Reverse engineering, decompiling, decrypting, or disassembling of\n this software is permitted.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. NO LICENSES OR OTHER RIGHTS,\nWHETHER EXPRESS, IMPLIED, BASED ON ESTOPPEL OR OTHERWISE, ARE GRANTED\nTO ANY PARTY'S PATENTS, PATENT APPLICATIONS, OR PATENTABLE INVENTIONS\nBY VIRTUE OF THIS LICENSE OR THE DELIVERY OR PROVISION BY QUALCOMM\nATHEROS, INC. OF THE SOFTWARE.\n\nIN NO EVENT SHALL THE COPYRIGHT OWNER OR ANY CONTRIBUTOR BE LIABLE FOR\nANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND REGARDLESS OF ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\nOTHERWISE) ARISING IN ANY WAY OUT OF OR RESULTING FROM THE USE OF THE\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ANY\nEVENT, THE TOTAL AGGREGATE LIABILITY THAT MAY BE IMPOSED ON QUALCOMM\nATHEROS, INC. FOR ANY DIRECT DAMAGES ARISING UNDER OR RESULTING FROM\nTHIS AGREEMENT OR IN CONNECTION WITH ANY USE OF THE SOFTWARE SHALL NOT\nEXCEED A TOTAL AMOUNT OF US$5.00.\n\nIF ANY OF THE ABOVE PROVISIONS ARE HELD TO BE VOID, INVALID,\nUNENFORCEABLE, OR ILLEGAL, THE OTHER PROVISIONS SHALL CONTINUE IN FULL\nFORCE AND EFFECT.", + "json": "qca-technology.json", + "yaml": "qca-technology.yml", + "html": "qca-technology.html", + "license": "qca-technology.LICENSE" + }, + { + "license_key": "qcad-exception-gpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-qcad-exception-gpl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Linking QCAD libraries statically or dynamically with other modules is making \na combined work based on the QCAD libraries. Thus, the terms and conditions of \nthe GNU General Public License cover the whole combination.\n\nAs a special exception, the copyright holders of QCAD give you permission to \nlink the QCAD libraries with independent modules to produce an executable or script, \nregardless of the license terms of these independent modules, and to copy and \ndistribute the resulting executable or script under terms of your choice, provided \nthat you also meet, for each linked independent module, the terms and conditions \nof the license of that module. An independent module is a module which is not \nderived from or based on QCAD. \n\nIf you modify QCAD, you may extend this exception to your version of QCAD, but \nyou are not obliged to do so. If you do not wish to do so, delete this exception \nstatement from your version.", + "json": "qcad-exception-gpl.json", + "yaml": "qcad-exception-gpl.yml", + "html": "qcad-exception-gpl.html", + "license": "qcad-exception-gpl.LICENSE" + }, + { + "license_key": "qhull", + "category": "Copyleft Limited", + "spdx_license_key": "Qhull", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Qhull, Copyright (c) 1993-2003\n\nThe National Science and Technology Research Center for Computation and Visualization of Geometric Structures (The Geometry Center) University of Minnesota\n\nemail: qhull@qhull.org\n\nThis software includes Qhull from The Geometry Center. Qhull is copyrighted as noted above. Qhull is free software and may be obtained via http from www.qhull.org. It may be freely copied, modified, and redistributed under the following conditions:\n\n1. All copyright notices must remain intact in all files.\n\n2. A copy of this text file must be distributed along with any copies of Qhull that you redistribute; this includes copies that you have modified, or copies of programs or other software products that include Qhull.\n\n3. If you modify Qhull, you must include a notice giving the name of the person performing the modification, the date of modification, and the reason for such modification.\n\n4. When distributing modified versions of Qhull, or other software products that include Qhull, you must provide notice that the original source code may be obtained as noted above.\n\n5. There is no warranty or other guarantee of fitness for Qhull, it is provided solely \"as is\". Bug reports or fixes may be sent to qhull_bug@qhull.org; the authors may or may not act on them as they desire.", + "json": "qhull.json", + "yaml": "qhull.yml", + "html": "qhull.html", + "license": "qhull.LICENSE" + }, + { + "license_key": "qlogic-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-qlogic-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in binary form, without modification, for use in conjunction\nwith QLogic authorized products is permitted provided that the following conditions\nare met:\n\n1. Redistribution in binary form must reproduce the above copyright notice, this\n list of conditions and the following disclaimer in the documentation and/or\n other materials provided with the distribution.\n2. The name of QLogic Corporation may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n3. Reverse engineering, decompilation, or disassembly of this firmware is not\n permitted.\n\nREGARDLESS OF WHAT LICENSING MECHANISM IS USED OR APPLICABLE,THIS PROGRAM IS\nPROVIDED BY QLOGIC CORPORATION \"AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\nGOODS OR SERVICES; LOSS OF USE,DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY,OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nUSER ACKNOWLEDGES AND AGREES THAT USE OF THIS PROGRAM WILL NOT CREATE OR GIVE\nGROUNDS FOR A LICENSE BY IMPLICATION, ESTOPPEL, OR OTHERWISE IN ANY INTELLECTUAL\nPROPERTY RIGHTS (PATENT, COPYRIGHT, TRADE SECRET, MASK WORK, OR OTHER PROPRIETARY\nRIGHT) EMBODIED IN ANY OTHER QLOGIC HARDWARE OR SOFTWARE EITHER SOLELY OR IN\nCOMBINATION WITH THIS PROGRAM.", + "json": "qlogic-firmware.json", + "yaml": "qlogic-firmware.yml", + "html": "qlogic-firmware.html", + "license": "qlogic-firmware.LICENSE" + }, + { + "license_key": "qlogic-microcode", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-qlogic-microcode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You may redistribute the hardware specific firmware binary file\nunder the following terms:\n\n1. Redistribution of source code (only if applicable),\n must retain the above copyright notice, this list of\n conditions and the following disclaimer.\n\n2. Redistribution in binary form must reproduce the above\n copyright notice, this list of conditions and the\n following disclaimer in the documentation and/or other\n materials provided with the distribution.\n\n3. The name of QLogic Corporation may not be used to\n endorse or promote products derived from this software\n without specific prior written permission\n\nREGARDLESS OF WHAT LICENSING MECHANISM IS USED OR APPLICABLE,\nTHIS PROGRAM IS PROVIDED BY QLOGIC CORPORATION \"AS IS'' AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\n\nUSER ACKNOWLEDGES AND AGREES THAT USE OF THIS PROGRAM WILL NOT\nCREATE OR GIVE GROUNDS FOR A LICENSE BY IMPLICATION, ESTOPPEL, OR\nOTHERWISE IN ANY INTELLECTUAL PROPERTY RIGHTS (PATENT, COPYRIGHT,\nTRADE SECRET, MASK WORK, OR OTHER PROPRIETARY RIGHT) EMBODIED IN\nANY OTHER QLOGIC HARDWARE OR SOFTWARE EITHER SOLELY OR IN\nCOMBINATION WITH THIS PROGRAM.", + "json": "qlogic-microcode.json", + "yaml": "qlogic-microcode.yml", + "html": "qlogic-microcode.html", + "license": "qlogic-microcode.LICENSE" + }, + { + "license_key": "qpl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "QPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Q Public License Version 1.0\n\nCopyright (C) 1999 Trolltech AS, Norway.\nEveryone is permitted to copy and distribute this license document.\n\nThe intent of this license is to establish freedom to share and change the software regulated by this license under the open source model.\n\nThis license applies to any software containing a notice placed by the copyright holder saying that it may be distributed under the terms of the Q Public License version 1.0. Such software is herein referred to as the Software. This license covers modification and distribution of the Software, use of third-party application programs based on the Software, and development of free software which uses the Software.\n\nGranted Rights\n\n1. You are granted the non-exclusive rights set forth in this license provided you agree to and comply with any and all conditions in this license. Whole or partial distribution of the Software, or software items that link with the Software, in any form signifies acceptance of this license.\n\n2. You may copy and distribute the Software in unmodified form provided that the entire package, including - but not restricted to - copyright, trademark notices and disclaimers, as released by the initial developer of the Software, is distributed.\n\n3. You may make modifications to the Software and distribute your modifications, in a form that is separate from the Software, such as patches. The following restrictions apply to modifications:\n\n a. Modifications must not alter or remove any copyright notices in the Software.\n\n b. When modifications to the Software are released under this license, a non-exclusive royalty-free right is granted to the initial developer of the Software to distribute your modification in future versions of the Software provided such versions remain available under these terms in addition to any other license(s) of the initial developer.\n\n4. You may distribute machine-executable forms of the Software or machine-executable forms of modified versions of the Software, provided that you meet these restrictions:\n\n a. You must include this license document in the distribution.\n\n b. You must ensure that all recipients of the machine-executable forms are also able to receive the complete machine-readable source code to the distributed Software, including all modifications, without any charge beyond the costs of data transfer, and place prominent notices in the distribution explaining this.\n\n c. You must ensure that all modifications included in the machine-executable forms are available under the terms of this license.\n\n5. You may use the original or modified versions of the Software to compile, link and run application programs legally developed by you or by others.\n\n6. You may develop application programs, reusable components and other software items that link with the original or modified versions of the Software. These items, when distributed, are subject to the following requirements:\n\n a. You must ensure that all recipients of machine-executable forms of these items are also able to receive and use the complete machine-readable source code to the items without any charge beyond the costs of data transfer.\n\n b. You must explicitly license all recipients of your items to use and re-distribute original and modified versions of the items in both machine-executable and source code forms. The recipients must be able to do so without any charges whatsoever, and they must be able to re-distribute to anyone they choose.\n\n c. If the items are not available to the general public, and the initial developer of the Software requests a copy of the items, then you must supply one.\n\nLimitations of Liability\nIn no event shall the initial developers or copyright holders be liable for any damages whatsoever, including - but not restricted to - lost revenue or profits or other direct, indirect, special, incidental or consequential damages, even if they have been advised of the possibility of such damages, except to the extent invariable law, if any, provides otherwise.\n\nNo Warranty\nThe Software and this license document are provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nChoice of Law\nThis license is governed by the Laws of Norway. Disputes shall be settled by Oslo City Court.", + "json": "qpl-1.0.json", + "yaml": "qpl-1.0.yml", + "html": "qpl-1.0.html", + "license": "qpl-1.0.LICENSE" + }, + { + "license_key": "qpopper", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-qpopper", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Qpopper(tm) is licensed by QUALCOMM Incorporated under the following\n terms and conditions. ANY USE OF QPOPPER CONSTITUTES AGREEMENT TO\n THESE TERMS.\n\n1. Warranty Disclaimer. QPOPPER SOFTWARE IS PROVIDED TO THE USER \"AS\n IS.\" QUALCOMM MAKES NO WARRANTIES, EITHER EXPRESS OR IMPLIED, WITH\n RESPECT TO THE QPOPPER SOFTWARE AND/OR ASSOCIATED MATERIALS\n PROVIDED TO THE USER, INCLUDING BUT NOT LIMITED TO ANY WARRANTY OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR AGAINST\n INFRINGEMENT. QUALCOMM does not warrant that the functions\n contained in the software will meet your requirements, or that the\n operation of the software will be uninterrupted or error-free, or\n that defects in the software will be corrected. Furthermore,\n QUALCOMM does not warrant or make any representations regarding\n the use or the results of the use of the software or any\n documentation provided therewith in terms of their correctness,\n accuracy, reliability, or otherwise. No oral or written\n information or advice given by QUALCOMM or a QUALCOMM\n representative shall create a warranty or in any way increase the\n scope of this warranty.\n\n2. Limitation of Liability. QUALCOMM AND ITS LICENSORS ARE NOT LIABLE\n FOR ANY CLAIMS OR DAMAGES WHATSOEVER ARISING IN CONNECTION WITH\n THE QPOPPER SOFTWARE, INCLUDING WITHOUT LIMITATION PROPERTY\n DAMAGE, PERSONAL INJURY, INTELLECTUAL PROPERTY INFRINGEMENT, LOSS\n OF PROFITS, OR INTERRUPTION OF BUSINESS, OR FOR ANY SPECIAL,\n CONSEQUENTIAL OR INCIDENTAL DAMAGES, HOWEVER CAUSED, WHETHER\n ARISING OUT OF BREACH OF WARRANTY, CONTRACT, TORT (INCLUDING\n NEGLIGENCE), STRICT LIABILITY, OR OTHERWISE.\n\n3. Using and Distributing Qpopper. If a party agrees to these terms\n and conditions, such party may copy and use Qpopper for any\n purpose, and distribute unmodified complete copies of Qpopper to\n any third party provided that such third party must agree to these\n terms and conditions prior to any use of Qpopper. Failure to\n include these license terms when distributing Qpopper shall be a\n material breach of this agreement, and the party committing such\n breach shall defend and indemnify QUALCOMM Incorporated against\n all claims, losses, liabilities, damages, costs and expenses,\n including attorney's fees, which QUALCOMM may incur in connection\n with such breach.\n\n4. Modifying Qpopper. Qpopper consists of (i) intellectual property\n owned by QUALCOMM Incorporated, and (ii) intellectual property\n owned by the Regents of the University of California. Any\n modifications to the U.C.-owned portions of Qpopper are subject to\n the provisions of Section 7 below. A party to this agreement may\n create derivative works of the QUALCOMM-owned portions of the\n Qpopper software, distribute such derivative works to third\n parties, and permit such third parties to copy and use such\n derivative works subject to the following restrictions:\n \n (a) The protocol greeting banner and the CAPA IMPLEMENTATION\n response tag must include clear notification that Qpopper has\n been modified (for example,\n \"FooPopper-by-Foo-Networks-hacked-from-Qpopper-4.0\").\n \n (b) Detailed notification of all modifications must be clearly and\n conspicuously included within the modified source files, and\n in a separate document. All of the source files and the\n document describing the changes must be distributed with the\n modified software.\n \n (c) When distributing the modified software the distributing party\n must clearly and conspicuously communicate to all recipients\n that the modified software is produced by the party that\n modified the software and is not a QUALCOMM product.\n\n (d) The term \"Qpopper\" shall not be used in connection with the\n modified software except in a purely factual manner when\n describing the history or development of the software.\n\n (e) The modified software must be licensed to end users using a\n license agreement which expressly states that portions of the\n modified software are based on code owned by QUALCOMM\n Incorporated, that such QUALCOMM code is only provided on the\n terms stated in this agreement, and that QUALCOMM bears no\n responsibility whatsoever for any modifications to the QUALCOMM\n code.\n\n (f) The modifying party shall defend and indemnify QUALCOMM\n Incorporated against all claims, losses, liabilities, damages,\n costs and expenses, including attorney's fees, which QUALCOMM\n may incur in connection with any intellectual property\n infringement or similar claim related to the modified\n software, if such claim is related to that party's\n modifications.\n\n5. Notices. QUALCOMM is a registered trademark and registered service\n mark of QUALCOMM Incorporated. Qpopper is a trademark of QUALCOMM\n Incorporated. QUALCOMM does not grant any party the right to use\n such marks on any modified version of the Qpopper software. All\n other trademarks and service marks are the property of their\n respective owners. The Qpopper software, excluding the portions\n owned by the Regents of the University of California, is Copyright\n 1993-2006 QUALCOMM Incorporated. All rights not expressly granted\n herein are reserved by QUALCOMM.\n\n6. General. This agreement is governed and interpreted in accordance\n with the laws of the State of California without giving effect to\n its conflict of laws provisions. Any claim arising out of or\n related to this agreement must be brought exclusively in the state\n or federal courts located in San Diego County, California. The\n United Nations Convention on Contracts for the International Sale\n of Goods is expressly disclaimed. If any provision of this\n agreement shall be invalid, the validity of the remaining\n provisions of this agreement shall not be affected. This\n agreement is the entire and exclusive agreement between QUALCOMM\n and any user of the Qpopper software with respect to the software\n and supersedes all prior agreements (whether written or oral) and\n other communications related to the software.\n\n7. IMPORTANT.\n\n This software program contains code, and/or derivatives or\n modifications of code originating from the software program\n \"Popper.\" Popper is (c) Copyright 1989-1991 The Regents of the\n University of California, All Rights Reserved. Popper was\n created by Austin Shelton, Information Systems and Technology,\n University of California, Berkeley. Permission from the Regents of\n the University of California to use, copy, modify, and distribute\n the \"Popper\" software contained herein for any purpose, without\n fee, and without a written agreement is hereby granted, provided\n that the above copyright notice and this paragraph and the\n following two paragraphs appear in all copies. HOWEVER, ADDITIONAL\n PERMISSIONS MAY BE NECESSARY FROM OTHER PERSONS OR ENTITIES, TO\n USE DERIVATIVES OR MODIFICATIONS OF POPPER.\n\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY\n PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL\n DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THE\n POPPER SOFTWARE, OR ITS DERIVATIVES OR MODIFICATIONS, AND ITS\n DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN\n ADVISED OF THE POSSIBLITY OF SUCH DAMAGE.\n\n THE UNIVERSITY OF CALIFORNIA, SPECIFICALLY DISCLAIMS ANY\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE\n POPPER SOFTWARE PROVIDED HEREUNDER IS ON AN \"AS IS\" BASIS, AND THE\n UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE\n MAINTENANCE, SUPPORT, UPDATES, ENCHANCEMENTS, OR MODIFICATIONS.", + "json": "qpopper.json", + "yaml": "qpopper.yml", + "html": "qpopper.html", + "license": "qpopper.LICENSE" + }, + { + "license_key": "qt-commercial-1.1", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-qt-commercial-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Qt FOR APPLICATION DEVELOPMENT LICENSE AGREEMENT\n\nAgreement version 1.1\n\nThis Qt for Application Development License Agreement (\"Agreement\") is a legal agreement between The Qt Company Ltd (\"The Qt Company\") with its registered office at Valimotie 21, 00380 Helsinki, Finland and you (either an individual or a legal entity) (\"Licensee\") for the Licensed Software (as defined below).\n\nPlease, read these license terms through carefully. By selecting \"I accept the Agreement\", you are deemed to accept these license terms and to commit yourself to observing them. When representing a legal entity, you should ensure your due authorization to approve these terms before you select \"I accept the Agreement\". Otherwise, we regard you as personally responsible for compliance with this Agreement. For clarity, please note that in case there already exists a signed license agreement between you and The Qt Company, this Agreement shall not override such an existing agreement but it shall continue to be valid subject to its applicable terms.\n\nUnder this Agreement, the Licensee has purchased one (1) of the three (3) different below mentioned rights applicable to the Licensed Software (as defined below):\n(i) A perpetual license, which shall be valid for an unlimited time as further stated in this Agreement (\"Perpetual License\"); or\n(ii) A subscription license, which shall be valid for the time period specified by the Qt Company (\"Subscription License\"); or\n(iii) A limited subscription license, which includes a discount in payment based on Licensee\u00b4s limited annual sales revenue, as further stated in Section 14.5 and www.qt.io, and which shall be valid for the time period specified by the Qt Company (\"Limited Subscription License\"). For clarity, Limited Subscription License shall not include any Support (as defined below).\n\n \n1. DEFINITIONS\n\n\"Affiliate\" of a Party shall mean an entity (i) which is directly or indirectly controlling such Party; (ii) which is under the same direct or indirect ownership or control as such Party; or (iii) which is directly or indirectly owned or controlled by such Party. For these purposes, an entity shall be treated as being controlled by another if that other entity has fifty percent (50 %) or more of the votes in such entity, is able to direct its affairs and/or to control the composition of its board of directors or equivalent body.\n\n\"Applications\" shall mean Licensee\u2019s software products created using the Licensed Software which may include portions of the Licensed Software.\n\n\"Continued-Usage Term\" shall mean, depending on the option purchased by Licensee, either a) if the Licensee has purchased Perpetual License; perpetuity; or b) if the Licensee has purchased Subscription License or Limited Subscription License; the paid term.\n\n\"Deployment Platforms\" shall mean those operating systems in which the Licensed Software can be distributed on according to the terms and conditions of this Agreement, especially Section 5.2.\n\n\"Development Platforms\" shall mean those operating systems in which the Licensed Software can be used only for designing, developing and testing Applications, but not distributed in any form or used for any other purpose.\n\n\"Designated User(s)\" shall mean the employee(s) of Licensee acting within the scope of their employment or Licensee\u2019s consultant(s) or contractor(s) acting within the scope of their services for Licensee and on behalf of Licensee.\n\n\"License Certificate\" shall mean the document accompanying the Licensed Software which specifies the modules which are licensed under the Agreement, Development Platforms, Deployment Platforms and Designated Users.\n\n\"Licensed Software\" shall mean the computer software, \"online\" or electronic documentation, associated media and printed materials, including the source code, example programs and the documentation delivered by The Qt Company to Licensee in conjunction with this Agreement. Licensed Software does not include Third Party Software (as defined in Section 7).\n\n\"Modified Software\" shall mean modifications made to the Licensed Software by Licensee.\n\n\"Online Services\" shall mean any services or access to systems provided by The Qt Company to the Licensee over Internet in conjunction with the Licensed Software or for the purpose of use by the Licensee of the Licensed Software or Support. Using some of the Online Services may be subject to additional fees.\n\n\"Party or Parties\" shall mean Licensee and/or The Qt Company.\n\n\"Redistributables\" shall mean the portions of the Licensed Software set forth in Appendix 1, Section 1 that may be distributed with or as part of Applications in object code form.\n\n\"Renewal Term\" shall mean a) in case the Licensee has purchased a Perpetual License: a time period of twelve (12) months, and b) in case the Licensee has purchased Subscription License or Limited Subscription License, a time period specified by the Qt Company at www.qt.io or directly to the Licensee.\n\n\"Start-For-Free Term\" shall mean the period from the later of (a) the Effective Date; or (b) the date the Licensed Software was initially delivered to Licensee by The Qt Company prior to the Supported Term. If no specific Effective Date is set forth in the Agreement, the Effective Date shall be deemed to be the date the Licensed Software was initially delivered to Licensee. Unless otherwise agreed with The Qt Company in writing, the maximum duration of Start-For-Free Term shall be thirty (30) days.\n\n\"Support\" shall mean standard developer support that is provided by The Qt Company to assist eligible Designated Users in using the Licensed Software in accordance with its established standard support procedures.\n\n\"Supported Term\" shall mean a time period that the Licensee has selected and paid for Support for the Licensed Software, calculated from either (i) the end of the Start-For-Free Term, or (ii) from the purchase of the Supported Term, or (iii) from end of the previous Supported Term, as applicable. For the Limited Subscription License, Supported Term shall mean a time period for which the Licensee has selected and paid for usage of Licensed Software.\n\n\"Updates\" shall mean a release or version of the Licensed Software containing enhancements, new features, bug fixes, error corrections and other changes that are generally made available to users of the Licensed Software that have contracted for maintenance and support.\n\n \n2. OWNERSHIP\n\nThe Licensed Software is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The Licensed Software is licensed, not sold.\nTo the extent Licensee submits bug fixes or error corrections, including information related thereto, Licensee hereby grants The Qt Company a sublicensable, irrevocable, perpetual, worldwide, non-exclusive, royalty-free and fully paid-up copyright and trade secret license to reproduce, adapt, translate, modify, and prepare derivative works of, publicly display, publicly perform, sublicense, make available and distribute error corrections and bug fixes, including derivative works thereof. All The Qt Company\u2019s and/or its licensors\u2019 trademarks, service marks, trade names, logos or other words or symbols are and shall remain the exclusive property of The Qt Company or its licensors respectively.\n\n \n3. MODULES\n\nSome of the files in the Licensed Software have been grouped into modules. These files contain specific notices defining the module of which they are a part. The modules licensed to Licensee are specified in the License Certificate accompanying the Licensed Software. The terms of the License Certificate are considered part of the Agreement. In the event of inconsistency or conflict between the language of this Agreement and the License Certificate, the provisions of this Agreement shall govern.\n\n \n4. VALIDITY OF THE AGREEMENT\n\nBy installing, copying, or otherwise using the Licensed Software, Licensee agrees to be bound by the terms of this Agreement. If Licensee does not agree to the terms of this Agreement, Licensee should not install, copy, or otherwise use the Licensed Software. In addition, by installing, copying, or otherwise using any Updates or other components of the Licensed Software that Licensee receives separately as part of the Licensed Software, Licensee agrees to be bound by any additional license terms that accompany such Updates, if any. If Licensee does not agree to the additional license terms that accompany such Updates, Licensee should not install, copy, or otherwise use such Updates.\n\nUpon Licensee\u2019s acceptance of the terms and conditions of this Agreement, The Qt Company grants Licensee the right to use the Licensed Software in the manner provided below.\n\n \n5. LICENSES GRANTED\n\n5.1 General\n\n5.1.1 Licensee is hereby granted a free of charge license for the Start-For-Free Term as described in Section 5.2 below. For clarity, Section 5.3 shall not apply for the Start-For-Free Term.\n\n5.1.2 Licensee may purchase additional license(s) for Continued-Usage Term, as described in Sections 5.2 and 5.3 below, subject to The Qt Company\u2019s payment terms and conditions applicable at the time of purchase. In addition, Licensee may purchase license(s) for the Continued-Usage Term without such a preceding Start-For-Free Term.\n\n5.2 Licenses granted during the Start-For-Free Term and the Continued-Usage Term\n\n5.2.1 Using, Modifying and Copying\n\nThe Qt Company grants to Licensee a non-exclusive, non-transferable, limited term license to use, modify and copy the Licensed Software for Designated Users specified in the License Certificate for the sole purposes of:\n\n(i) designing, developing, and testing Application(s);\n(ii) modifying the Licensed Software as limited by section 8 below; and\n(iii) compiling the Licensed Software and/or Modified Software source code into object code.\n\nLicensee may install copies of the Licensed Software on an unlimited number of computers provided that only the Designated Users use the Licensed Software.\nLicensee may at any time during the Supported Term designate another Designated User to replace a then-current Designated User by notifying The Qt Company, provided that a) the then-current Designated User has not been designated as a replacement during the last six (6) months; and b) there is no more than the specified number of Designated Users at any given time.\n\n5.3 Limited Redistribution right for the Continued-Usage Term only\n\nThe limited distribution licenses granted in this Section 5.3 shall only be applicable to the Continued-Usage Term, but not to Start-For-Free Term.\n\na) The Qt Company grants Licensee a non-exclusive, royalty-free right to reproduce and distribute the object code form of Redistributables (listed in Appendix 1, Section 1) for execution on the specified Deployment Platforms, excluding the Joint Hardware and Software Distribution as defined in b) below. Copies of Redistributables may only be distributed with and for the sole purpose of executing Applications permitted under this Agreement that Licensee has created using the Licensed Software. Under no circumstances may any copies of Redistributables be distributed separately. This Agreement does not give Licensee any rights to distribute any of the parts of the Licensed Software listed in Appendix 1, Section 2, neither as a whole nor as parts or snippets of code.\n\nb) Licensee may not distribute, transfer, assign or otherwise dispose of Applications and/or Redistributables, in binary/compiled form, or in any other form, if such action is part of a Joint Software and Hardware Distribution, except as provided by a separate runtime distribution license with The Qt Company or one of its authorized distributors. A Joint Hardware and Software Distribution shall be defined as either:\n\n(i) distribution of a hardware device where, in its final end user configuration, the main user interface of the device is provided by Application(s) created by Licensee or others, using Licensed Software or Licensed Software based software product, and depends on the Licensed Software or an open source version of Qt or any Qt based software product; or\n\n(ii) distribution of the Licensed Software with a device designed to facilitate the installation of the Licensed Software onto the same device where the main user interface of such device is provided by Application(s) created by Licensee or others, using the Licensed Software, and depends on the Licensed Software.\n\nc) For the avoidance of doubt, should the Licensee wish to distribute Licensed Software as a part of software development kit (SDK) for the purpose of developing Applications by Licensee\u00b4s customers for Licensee\u00b4s products, such distribution is subject to a separate Qt SDK distribution license agreement to be concluded with The Qt Company.\n\nThe licenses granted in this Section 5 by The Qt Company to Licensee are subject to Licensee\u2019s compliance with Section 8 of this Agreement.\n\n \n6. VERIFICATION\n\nThe Qt Company or a certified auditor on The Qt Company\u2019s behalf, may, upon its reasonable request and at its expense, audit Licensee with respect to the use of the Licensed Software. Such audit may be conducted by mail, electronic means or through an in-person visit to Licensee\u2019s place of business. Any such in-person audit shall be conducted during regular business hours at Licensee\u2019s facilities and shall not unreasonably interfere with Licensee\u2019s business activities. The Qt Company will not remove, copy, or redistribute any electronic material during the course of an audit. If an audit reveals that Licensee is using the Licensed Software in a way that is in material violation of the terms of the Agreement, then Licensee shall pay The Qt Company\u2019s reasonable costs of conducting the audit. In the case of a material violation, Licensee agrees to pay The Qt Company any amounts owing that are attributable to the unauthorized use. Alternatively, The Qt Company reserves the right, at The Qt Company\u2019s sole option, to terminate the licenses for the Licensed Software.\n\n \n7. THIRD PARTY SOFTWARE\n\nThe Licensed Software may provide links to third party libraries or code (collectively \"Third Party Software\") to implement various functions. Third Party Software does not comprise part of the Licensed Software. In some cases, access to Third Party Software may be included along with the Licensed Software delivery as a convenience for development and testing only. Such source code and libraries may be listed in the \"\u2026/src/3rdparty\" source tree delivered with the Licensed Software or documented in the Licensed Software where the Third Party Software is used, as may be amended from time to time, do not comprise the Licensed Software. Licensee acknowledges (i) that some part of Third Party Software may require additional licensing of copyright and patents from the owners of such, and (ii) that distribution of any of the Licensed Software referencing any portion of a Third Party Software may require appropriate licensing from such third parties.\n\n \n8. CONDITIONS FOR CREATING APPLICATIONS\n\nThe licenses granted in this Agreement for Licensee to create, modify and distribute Applications is subject to all of the following conditions: (i) all copies of the Applications Licensee creates must bear a valid copyright notice either Licensee\u2019s own or the copyright notice that appears on the Licensed Software; (ii) Licensee may not remove or alter any copyright, trademark or other proprietary rights notice contained in any portion of the Licensed Software including but not limited to the About Boxes; (iii) Licensee will indemnify and hold The Qt Company, its Affiliates, contractors, and its suppliers, harmless from and against any claims or liabilities arising out of the use, reproduction or distribution of Applications; (iv) Applications must be developed using a licensed, registered copy of the Licensed Software; (v) Applications must add primary and substantial functionality to the Licensed Software; (vi) Applications may not pass on functionality which in any way makes it possible for others to create software with the Licensed Software; however Licensee may use the Licensed Software\u2019s scripting and QML (\"Qt Quick\") functionality solely in order to enable scripting, themes and styles that augment the functionality and appearance of the Application(s) without adding primary and substantial functionality to the Application(s); (vii) Licensee may create Modified Software that breaks the source or binary compatibility with the Licensed Software. This includes, but is not limited to, changing the application programming interfaces (\"API\") by adding, changing or deleting any variable, method, or class signature in the Licensed Software, the inter-process QCop specification, and/or any inter-process protocols, services or standards in the Licensed Software libraries. To the extent that Licensee breaks source or binary compatibility with the Licensed Software, Licensee acknowledges that The Qt Company\u2019s ability to provide Support may be prevented or limited and Licensee\u2019s ability to make use of Updates may be restricted; (viii) Applications may not compete with the Licensed Software; (ix) Licensee may not use The Qt Company\u2019s or any of its suppliers\u2019 names, logos, or trademarks to market Applications, except to state that Licensee\u2019s Application(s) was developed using the Licensed Software; and (x) each Designated User creating the Application(s) needs to have a separate license for the Licensed Software.\n\nNOTE: If Licensee, or another third party, has, at any time, developed or distributed all (or any portions of) the Application(s) using an open source version of Qt licensed under the terms of the GNU Lesser General Public License, version 2.1 or later (\"LGPL\") or the GNU General Public License version 2.0 or later (\"GPL\"), Licensee may contact The Qt Company via email to address sales@qt.io to ask for the necessary permission to combine such development work with the Licensed Software. The Qt Company shall evaluate Licensee\u00b4s request, and respond to the request with estimated license costs and other applicable terms and details relating to the permission for the Licensee, depending on the actual situation in question. Copies of the licenses referred to above are located at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html, http://www.gnu.org/licenses/lgpl-3.0.html, http://www.fsf.org/licensing/licenses/info/GPLv2.html, and http://www.gnu.org/copyleft/gpl-3.0.html.\n\n \n9. PRE-RELEASE CODE\n\nThe Licensed Software may contain pre-release code and functionality marked or otherwise stated as \"Technology Preview\", \"Alpha\", \"Beta\" or similar. Such pre-release code may be present in order to provide experimental support for new platforms or preliminary version of new functionality. The pre-release code is not at the level of performance and compatibility of a final, generally available, product offering. The pre-release parts of the Licensed Software may not operate correctly and may be substantially modified prior to the first commercial product release, if any. The Qt Company is under no obligation to make pre-release code commercially available, or provide any Support or Updates relating thereto.\n\n \n10. LIMITED WARRANTY AND WARRANTY DISCLAIMER\n\nThe Qt Company hereby represents and warrants with respect to the Licensed Software that it has the power and authority to grant the rights and licenses granted to Licensee under this Agreement. Except as set forth above, the Licensed Software is licensed to Licensee \"as is\". To the maximum extent permitted by applicable law, The Qt Company on behalf of itself and its suppliers, disclaims all warranties and conditions, either express or implied, including, but not limited to, implied warranties of merchantability and fitness for a particular purpose, title and non-infringement regarding to the Licensed Software.\n\n \n11. LIMITATION OF LIABILITY\n\nIf, The Qt Company\u2019s warranty disclaimer notwithstanding, The Qt Company is held to be liable to Licensee whether in contract, tort, or any other legal theory, based on the Licensed Software, The Qt Company\u2019s entire liability to Licensee and Licensee\u2019s exclusive remedy shall be, at The Qt Company\u2019s option, either (a) return of the price Licensee paid for the Licensed Software, or (b) repair or replacement of the Licensed Software, provided Licensee returns all copies of the Licensed Software to The Qt Company as originally delivered to Licensee. The Qt Company shall not under any circumstances be liable to Licensee based on failure of the Licensed Software if the failure resulted from accident, abuse or misapplication, nor shall The Qt Company, under any circumstances, be liable for special damages, punitive or exemplary damages, damages for loss of profits or interruption of business or for loss or corruption of data. Any award of damages from The Qt Company to Licensee shall not exceed the total amount Licensee has paid to The Qt Company in connection with this Agreement.\n\n \n12. SUPPORT, UPDATES AND ONLINE SERVICES\n\nLicensee will be eligible to receive Support and Updates and to use the Online Services during the Supported Term, in accordance with The Qt Company\u2019s then current policies and procedures, if any. Such policies and procedures may be changed from time to time. For clarity, under the Limited Subscription License, the Licensee shall not be eligible to receive any Support for the Licensed Software.\n\nAs for the Perpetual License, unless Licensee notifies The Qt Company in writing no less than thirty (30) days prior to each expiry of Supported Term, Supported Term may, at the Qt Company\u2019s option be extended by Renewal Term, subject to due payments by Licensee and subject to The Qt Company\u2019s terms and conditions applicable at the time of extension.\n\nIn the event Licensee selects not to have Supported Term extended, The Qt Company shall, following the expiry of Supported Term, no longer make the Licensed Software, Support, Updates or Online Services available to Licensee.\n\n \n13. CONFIDENTIALITY\n\nEach party acknowledges that during the Start-For-Free-Term and Supported Term of this Agreement it shall have access to information about the other party\u2019s business, business methods, business plans, customers, business relations, technology, and other information, including the terms of this Agreement, that is confidential and of great value to the other party, and the value of which would be significantly reduced if disclosed to third parties (\"Confidential Information\"). Accordingly, when a party (the \"Receiving Party\") receives Confidential Information from another party (the \"Disclosing Party\"), the Receiving Party shall, and shall obligate its employees and agents and employees and agents of its Affiliates to: (i) maintain the Confidential Information in strict confidence; (ii) not disclose the Confidential Information to a third party without the Disclosing Party\u2019s prior written approval; and (iii) not, directly or indirectly, use the Confidential Information for any purpose other than for exercising its rights and fulfilling its responsibilities pursuant to this Agreement. Each party shall take reasonable measures to protect the Confidential Information of the other party, which measures shall not be less than the measures taken by such party to protect its own confidential and proprietary information.\n\n\"Confidential Information\" shall not include information that (a) is or becomes generally known to the public through no act or omission of the Receiving Party; (b) was in the Receiving Party\u2019s lawful possession prior to the disclosure hereunder and was not subject to limitations on disclosure or use; (c) is developed by employees of the Receiving Party or other persons working for the Receiving Party who have not had access to the Confidential Information of the Disclosing Party, as proven by the written records of the Receiving Party or by persons who have not had access to the Confidential Information of the Disclosing Party as proven by the written records of the Receiving Party; (d) is lawfully disclosed to the Receiving Party without restrictions, by a third party not under an obligation of confidentiality; or (e) the Receiving Party is legally compelled to disclose the information, in which case the Receiving Party shall assert the privileged and confidential nature of the information and cooperate fully with the Disclosing Party to protect against and prevent disclosure of any Confidential Information and to limit the scope of disclosure and the dissemination of disclosed Confidential Information by all legally available means.\nThe obligations of the Receiving Party under this Section shall continue during the Supported Term and for a period of five (5) years after expiration or termination of this Agreement. To the extent that the terms of the Non-Disclosure Agreement between The Qt Company and Licensee conflict with the terms of this Section 13, this Section 13 shall be controlling over the terms of the Non-Disclosure Agreement.\n\n \n14. GENERAL PROVISIONS\n\n14.1 No Assignment\nLicensee shall not be entitled to assign or transfer all or any of its rights, benefits and obligations under this Agreement without the prior written consent of The Qt Company, which shall not be unreasonably withheld. The Qt Company shall be entitled to assign or transfer any of its rights, benefits or obligations under this Agreement on an unrestricted basis.\n\n14.2 Termination\nThe Qt Company may terminate the Agreement at any time immediately upon written notice by The Qt Company to Licensee if Licensee breaches this Agreement.\nEither party shall have the right to terminate this Agreement immediately upon written notice in the event that the other party becomes insolvent, files for any form of bankruptcy, makes any assignment for the benefit of creditors, has a receiver, administrative receiver or officer appointed over the whole or a substantial part of its assets, ceases to conduct business, or an act equivalent to any of the above occurs under the laws of the jurisdiction of the other party.\nUpon termination of the Licenses, Licensee shall cease using the Licensed Software and return to The Qt Company all copies of Licensed Software that were supplied by The Qt Company. All other copies of Licensed Software in the possession or control of Licensee must be erased or destroyed. An officer of Licensee must promptly deliver to The Qt Company a written confirmation that this has occurred.\n\n14.3 Surviving Sections\nAny terms and conditions that by their nature or otherwise reasonably should survive a cancellation or termination of this Agreement shall also be deemed to survive. Such surviving terms and conditions include, but are not limited to the Section 13.\n\n14.4 Entire Agreement\nThis Agreement constitutes the complete agreement between the parties and supersedes all prior or contemporaneous discussions, representations, and proposals, written or oral, with respect to the subject matters discussed herein, with the exception of the non-disclosure agreement executed by the parties in connection with this Agreement (\"Non-Disclosure Agreement\"), if any, shall be subject to Section 13. No modification of this Agreement shall be effective unless contained in a writing executed by an authorized representative of each party. No term or condition contained in Licensee\u2019s purchase order shall apply unless expressly accepted by The Qt Company in writing. If any provision of the Agreement is found void or unenforceable, the remainder shall remain valid and enforceable according to its terms. If any remedy provided is determined to have failed for its essential purpose, all limitations of liability and exclusions of damages set forth in this Agreement shall remain in effect.\n\n14.5 Payment and Taxes\nIf credit has been extended to Licensee by The Qt Company, all payments under this Agreement are due within thirty (30) days of the date The Qt Company mails its invoice to Licensee. If The Qt Company has not extended credit to Licensee, Licensee shall be required to make payment concurrent with the delivery of the Licensed Software by The Qt Company. All amounts payable are gross amounts but exclusive of any value added tax, use tax, sales tax or similar tax. Licensee shall be entitled to withhold from payments any applicable withholding taxes and comply with all applicable tax and employment legislation. Each party shall pay all taxes (including, but not limited to, taxes based upon its income) or levies imposed on it under applicable laws, regulations and tax treaties as a result of this Agreement and any payments made hereunder (including those required to be withheld or deducted from payments). Each party shall furnish evidence of such paid taxes as is sufficient to enable the other party to obtain any credits available to it, including original withholding tax certificates.\n\nAs for the Limited Subscription License, the fees under this Agreement applicable for the Licensee, as further stated in www.qt.io, are subject to Licensee\u00b4s annual sales revenue being smaller than one hundred thousand (<100,000) USD. In case the Licensee\u00b4s annual sales revenue would increase up to one hundred thousand (100,000) USD or more, (i) the Licensee shall inform The Qt Company without undue delay in written form of such increase, and (ii) The Qt Company shall reserve the right to change applicable pricing for The Licensee, depending on The Qt Company\u00b4s then current pricing, as further stated in www.qt.io. The Licensee shall have the obligation, upon reasonable prior request by The Qt Company, to prove that its annual sales revenue is smaller than one hundred thousand (<100,000) USD in order for the Licensee to be entitled to continue using the Limited Subscription License.\n\n14.6 Force Majeure\nNeither party shall be liable to the other for any delay or non-performance of its obligations hereunder other than the obligation of paying the license fees in the event and to the extent that such delay or non-performance is due to an event of Force Majeure (as defined below). If any event of Force Majeure results in a delay or non-performance of a party for a period of three (3) months or longer, then either party shall have the right to terminate this Agreement with immediate effect without any liability (except for the obligations of payment arising prior to the event of Force Majeure) towards the other party. A \"Force Majeure\" event shall mean an act of God, terrorist attack or other catastrophic event of nature that prevents either party for fulfilling its obligations under this Agreement.\n\n14.7 Notices\nAny notice given by one party to the other shall be deemed properly given and deemed received if specifically acknowledged by the receiving party in writing or when successfully delivered to the recipient by hand, fax, or special courier during normal business hours on a business day to the addresses specified below. Each communication and document made or delivered by one party to the other party pursuant to this Agreement shall be in the English language or accompanied by a translation thereof.\nNotices to The Qt Company shall be given to:\nThe Qt Company Ltd\nAttn: Legal\nValimotie 21\nFI-00380 Helsinki\nFinland\nFax: +358 10 313 3700\n\n14.8 Export Control\nLicensee acknowledges that the Licensed Software may be subject to export control restrictions of various countries. Licensee shall fully comply with all applicable export license restrictions and requirements as well as with all laws and regulations relating to the importation of the Licensed Software and/or Modified Software and/or Applications and shall procure all necessary governmental authorizations, including without limitation, all necessary licenses, approvals, permissions or consents, where necessary for the re-exportation of the Licensed Software, Modified Software or Applications.\n\n14.9 Personal Data\nFor the purposes of this Agreement, personal data shall include but is not limited to: individual user\u00b4s name, email address, telephone number, profile, and any other information from which the individual user can be identified (\"Personal Data\"). Upon signing of this Agreement, the Licensee explicitly gives its consent to the process and transfer of any Personal Data relating to the Licensee or its Designated Users, for the purposes stated below.\n\nThe Qt Company may pass Personal Data outside The Qt Company group (1) if and to the extent a third party service provider has a strict need-to-know basis for such Personal Data to be able to provide its services to The Qt Company, or (2) in order to comply with the law or requests of governmental entities. Given the global nature of The Qt Company\u00b4s business, processing information for such purposes may involve a cross-border transfer of Personal Data. In addition, The Qt Company may collect individual user\u00b4s IP address and browser cookies about the use of services or tools relating to Licensed Software, and visits to The Qt Company\u00b4s web pages.\n\nIn processing and transferring Personal Data The Qt Company shall comply with all applicable European or foreign data protection laws as effective from time to time.\n\n14.10 Governing Law and Legal Venue\nThis Agreement shall be construed and interpreted in accordance with the laws of Finland, excluding its choice of law provisions. Any disputes, controversy or claim arising out of or relating to this Agreement, or the breach, termination or validity thereof shall be shall be finally settled by arbitration in accordance with the Arbitration Rules of the Finland Chamber of Commerce. The arbitration tribunal shall consist of one (1), or if either Party so requires, of three (3), arbitrators. The award shall be final and binding and enforceable in any court of competent jurisdiction. The arbitration shall be held in Helsinki, Finland and the process shall be conducted in the English language.\n\n14.11 No Implied License\nThere are no implied licenses or other implied rights granted under this Agreement, and all rights, save for those expressly granted hereunder, shall remain with The Qt Company and its licensors. In addition, no licenses or immunities are granted to the combination of the Licensed Software and/or Modified Software, as applicable, with any other software or hardware not delivered by The Qt Company under this Agreement.\n\n \nAppendix 1\n\n1. Parts of the Licensed Software that are permitted for distribution (\"Redistributables\")\n\u2013 The Licensed Software\u2019s essential and add-on libraries that have been included in an officially released version of the Licensed Software, in object code form\n\u2013 The Licensed Software\u2019s configuration tool (\"qtconfig\")\n\u2013 The Licensed Software\u2019s help tool in object code/executable form (\"Qt Assistant\")\n\u2013 The Licensed Software\u2019s internationalization tools in object code/executable form (\"Qt Linguist\", \"lupdate\", \"lrelease\")\n\u2013 The Licensed Software\u2019s designer tool (\"Qt Designer\")\n\u2013 The Licensed Software\u2019s IDE tool (\"Qt Creator\"), excluding any parts or plug-ins which are delivered to Licensee only in object code\n\u2013 The Licensed Software\u2019s QML (\"Qt Quick\") launcher tool (\"qmlscene\" and \"qmlviewer\") in object code/executable form\n\u2013 The Licensed Software\u2019s installer framework\n\n2. Parts of the Licensed Software that are not permitted for distribution without a separate SDK distribution license agreement include, but are not limited to\n\u2013 The Licensed Software\u2019s source code and header files\n\u2013 The Licensed Software\u2019s documentation\n\u2013 The Licensed Software\u2019s documentation generation tool (\"qdoc\")\n\u2013 The Licensed Software\u2019s tool for writing makefiles (\"qmake\")\n\u2013 The Licensed Software\u2019s Meta Object Compiler (\"moc\")\n\u2013 The Licensed Software\u2019s User Interface Compiler (\"uic\" or in the case of Qt Jambi: \"juic\")\n\u2013 The Licensed Software\u2019s Resource Compiler (\"rcc\")\n\u2013 The Licensed Software\u2019s generator (only in the case of Qt Jambi if applicable)\n\u2013 The Licensed Software\u2019s parts of the IDE tool (\"Qt Creator\") that are delivered to Licensee only in object code\n\u2013 The Licensed Software\u2019s Emulator", + "json": "qt-commercial-1.1.json", + "yaml": "qt-commercial-1.1.yml", + "html": "qt-commercial-1.1.html", + "license": "qt-commercial-1.1.LICENSE" + }, + { + "license_key": "qt-commercial-agreement-4.4.1", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-qt-commercial-agreement-4.4.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Qt LICENSE AGREEMENT \n\nAgreement version 4.4.1 \n\nThis Qt License Agreement (\u201cAgreement\u201d) is a legal agreement for the licensing of Licensed Software (as defined below) between The Qt Company (as defined below) and the Licensee who has accepted the terms of this Agreement by signing this Agreement or by downloading or using the Licensed Software or in any other appropriate means. \n\nCapitalized terms used herein are defined in Section 1. \n\nWHEREAS: \n\n Licensee wishes to use the Licensed Software for the purpose of developing and distributing Applications and/or Devices (each as defined below); \n The Qt Company is willing to grant the Licensee a right to use Licensed Software for such a purpose pursuant to term and conditions of this Agreement; and \n Parties wish to enable that their respective Affiliates also can sell and purchase licenses to serve Licensee Affiliates\u2019 needs to use Licensed Software pursuant to terms of the Agreement. Any such license purchases by Licensee Affiliates from The Qt Company or its Affiliates will create contractual relationship directly between the relevant The Qt Company and the respective ordering Licensee Affiliate (\u201cAcceding Agreement\u201d). Accordingly, Licensee shall not be a party to any such Acceding Agreement, and no rights or obligations are created to the Licensee thereunder but all rights and obligations under such Acceding Agreement are vested and borne solely by the ordering Licensee Affiliate and the relevant The Qt Company as a contracting parties under such Acceding Agreement. \n\nNOW, THEREFORE, THE PARTIES HEREBY AGREE AS FOLLOWS: \n\n1. DEFINITIONS\n\n\u201cAffiliate\u201d of a Party shall mean an entity (i) which is directly or indirectly controlling such Party; (ii) which is under the same direct or indirect ownership or control as such Party; or (iii) which is directly or indirectly owned or controlled by such Party. For these purposes, an entity shall be treated as being controlled by another if that other entity has fifty percent (50 %) or more of the votes in such entity, is able to direct its affairs and/or to control the composition of its board of directors or equivalent body. \n\n\u201cAdd-on Products\u201d shall mean The Qt Company\u2019s specific add-on software products which are not licensed as part of The Qt Company\u2019s standard product offering, but shall be included into the scope of Licensed Software only if so specifically agreed between the Parties. \n\n\u201cAgreement Term\u201d shall mean the validity period of this Agreement, as set forth in Section 12. \n\n\u201cApplications\u201d shall mean software products created using the Licensed Software, which include the Redistributables, or part thereof. \n\n\u201cContractor(s)\u201d shall mean third party consultants, distributors and contractors performing services to the Licensee under applicable contractual arrangement. \n\n\u201cCustomer(s)\u201d shall mean Licensee\u2019s customers to whom Licensee, directly or indirectly, distributes copies of the Redistributables as integrated or incorporated into Applications or Devices. \n\n\u201cData Protection Legislation\u201d shall mean the General Data Protection Regulation (EU 2016/679) (GDPR) and any national implementing laws, regulations and secondary legislation, as may be amended or updated from time to time, as well as any other data protection laws or regulations applicable in relevant territory. \n\n\u201cDeployment Platforms\u201d shall mean target operating systems and/or hardware specified in the License Certificate, on which the Redistributables can be distributed pursuant to the terms and conditions of this Agreement. \n\n\u201cDesignated User(s)\u201d shall mean the employee(s) of Licensee or Licensee\u2019s Affiliates acting within the scope of their employment or Licensee's Contractors acting within the scope of their services on behalf of Licensee. \n\n\u201cDevelopment License\u201d shall mean the license needed by the Licensee for each Designated User to use the Licensed Software under the license grant described in Section 3.1 of this Agreement. Development Licenses are available per respective Licensed Software products, each product having its designated scope and purpose of use. \n\n\u201cDevelopment License Term\u201d shall mean the agreed validity period of the Development License or QA Tools license during which time the relevant Licensed Software product can be used pursuant to this Agreement. Agreed Development License Term, as ordered and paid for by the Licensee, shall be memorialized in the applicable License Certificate. \n\n\u201cDevelopment Platforms\u201d shall mean those host operating systems specified in the License Certificate, in which the Licensed Software can be used under the Development License. \n\n\u201cDevices\u201d shall mean\n\n hardware devices or products that\n are manufactured and/or distributed by the Licensee, its Affiliates, Contractors or Customers, and\n incorporate, integrate or link to Applications such that substantial functionality of such unit, when used by an End User, is provided by Application(s) or otherwise depends on the Licensed Software, regardless of whether the Application is developed by Licensee or its Contractors; or\n Applications designed for the hardware devices specified in item (1).\n\nDevices covered by this Agreement shall be specified in Appendix 2 or in a quote. \n\n\u201cDistribution License(s)\u201d shall mean a royalty-bearing license required for any kind of sale, trade, exchange, loan, lease, rental or other distribution by or on behalf of Licensee to a third party of Redistributables in connection with Devices pursuant to license grant described in Section 3.3 of this Agreement. Distribution Licensed are sold separately for each type of Device respectively and cannot be used for any type of Devices at Licensee\u2019s discretion. \n\n\u201cDistribution License Packs\u201d shall mean set of prepaid Distribution Licenses for distribution of Redistributables, as defined in The Qt Company\u2019s standard price list, quote, Purchase Order confirmation or in an Appendix 2 hereto, as the case may be. \n\n\u201cEnd User\u201d shall mean the final end user of the Application or a Device. \n\n\u201cEvaluation License Term\u201d shall mean a time period specified in the License Certificate for the Licensee to use the relevant Licensed Software for evaluation purposes according to Section 3.6 herein. \n\n\u201cIntellectual Property Rights\u201d shall mean patents (including utility models), design patents, and designs (whether or not capable of registration), chip topography rights and other like protection, copyrights, trademarks, service marks, trade names, logos or other words or symbols and any other form of statutory protection of any kind and applications for any of the foregoing as well as any trade secrets. \n\n\u201cLicense Certificate\u201d shall mean a certificate generated by The Qt Company for each Designated User respectively upon them downloading the Licensed Software, which will be available under respective Designated User\u2019s Qt Account at account.qt.io. License Certificates will specify relevant information pertaining the Licensed Software purchased by Licensee and Designated User\u2019s license to the Licensed Software. \n\n\u201cLicense Fee\u201d shall mean the fee charged to the Licensee for rights granted under the terms of this Agreement. \n\n\u201cLicensed Software\u201d shall mean specified product of commercially licensed version of Qt Software and/or QA Tools defined in Appendix 1 and/or Appendix 3, which Licensee has purchased and which is provided to Licensee under the terms of this Agreement. Licensed Software shall include corresponding online or electronic documentation, associated media and printed materials, including the source code (where applicable), example programs and the documentation. Licensed Software does not include Third Party Software (as defined in Section 4) or Open Source Qt. The Qt Company may, in the course of its development activities, at its free and absolute discretion and without any obligation to send or publish any notifications to the Licensee or in general, make changes, additions or deletions in the components and functionalities of the Licensed Software, provided that no such changes, additions or deletions will affect the already released version of the Licensed Software, but only upcoming version(s). \n\n\u201cLicensee\u201d shall mean the individual or legal entity that is party to this Agreement. \n\n\u201cLicensee\u2019s Records\u201d shall mean books and records that contain information bearing on Licensee\u2019s compliance with this Agreement, Licensee\u2019s use of Open Source Qt and/or the payments due to The Qt Company under this Agreement, including, but not limited to user information, assembly logs, sales records and distribution records. \n\n\u201cModified Software\u201d shall have the meaning as set forth in Section 2.3. \n\n\u201cOnline Services\u201d shall mean any services or access to systems made available by The Qt Company to the Licensee over the Internet relating to the Licensed Software or for the purpose of use by the Licensee of the Licensed Software or Support. Use of any such Online Services is discretionary for the Licensee and some of them may be subject to additional fees. \n\n\u201cOpen Source Qt\u201d shall mean Qt Software available under the terms of the GNU Lesser General Public License, version 2.1 or later (\u201cLGPL\u201d) or the GNU General Public License, version 2.0 or later (\u201cGPL\u201d). For clarity, Open Source Qt shall not be provided, governed or used under this Agreement. \n\n\u201dParty\u201d or \u201cParties\u201d shall mean Licensee and/or The Qt Company. \n\n\u201cPermitted Software\u201d shall mean (i) third party open source software products that are generally available for public in source code form and free of any charge under any of the licenses approved by Open Source Initiative as listed on https://opensource.org/licenses, which may include parts of Open Source Qt or be developed using Open Source Qt; and (ii) software The Qt Company has made available via its Qt Marketplace online distribution channel. \n\n\u201cPre-Release Code\u201d shall have the meaning as set forth in Section 4. \n\n\u201cProhibited Combination\u201d shall mean any effort to use, combine, incorporate, link or integrate Licensed Software with any software created with or incorporating Open Source Qt, or use Licensed Software for creation of any such software. \n\n\u201cPurchase Order\u201d shall have the meaning as set forth in Section 10.2. \n\n\"QA Tools\u201d shall mean software libraries and tools as defined in Appendix 1 depending on which product(s) the Licensee has purchased under the Agreement. \n\n\u201cQt Software\u201d shall mean the software libraries and tools of The Qt Company, which The Qt Company makes available under commercial and/or open source licenses. \n\n\u201cRedistributables\" shall mean the portions of the Licensed Software set forth in Appendix 1 that may be distributed pursuant to the terms of this Agreement in object code form only, including any relevant documentation. Where relevant, any reference to Licensed Software in this Agreement shall include and refer also to Redistributables. \n\n\u201cRenewal Term\u201d shall mean an extension of previous Development License Term as agreed between the Parties. \n\n\u201cSubmitted Modified Software\u201d shall have the meaning as set forth in Section 2.3. \n\n\u201cSupport\u201d shall mean standard developer support that is provided by The Qt Company to assist Designated Users in using the Licensed Software in accordance with this Agreement and the Support Terms. \n\n\u201cSupport Terms\u201d shall mean The Qt Company\u2019s standard support terms specified in Appendix 9 hereto. \n\n\u201cTaxes\u201d shall have the meaning set forth in Section 10.5. \n\n\u201cThe Qt Company\u201d shall mean: \n\n in the event Licensee is an individual residing in the United States or a legal entity incorporated in the United States or having its headquarters in the United States, The Qt Company Inc., a Delaware corporation with its office at 3031 Tisch Way, 110 Plazbertela West, San Jose, CA 95128, USA.; or \n in the event the Licensee is an individual residing outside of the United States or a legal entity incorporated outside of the United States or having its registered office outside of the United States, The Qt Company Ltd., a Finnish company with its registered office at Miestentie 7, 02150 Espoo, Finland. \n\n\"Third-Party Software\" shall have the meaning set forth in Section 4. \n\n\u201cUpdates\u201d shall mean a release or version of the Licensed Software containing bug fixes, error corrections and other changes that are generally made available to users of the Licensed Software that have contracted for Support. Updates are generally depicted as a change to the digits following the decimal in the Licensed Software version number. The Qt Company shall make Updates available to the Licensee under the Support. Updates shall be considered as part of the Licensed Software hereunder. \n\n\u201cUpgrades\u201d shall mean a release or version of the Licensed Software containing enhancements and new features and are generally depicted as a change to the first digit of the Licensed Software version number. In the event Upgrades are provided to the Licensee under this Agreement, they shall be considered as part of the Licensed Software hereunder. \n\n2. OWNERSHIP\n\n2.1. Ownership of The Qt Company\n\nThe Licensed Software is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The Licensed Software is licensed, not sold. \n\nAll of The Qt Company's Intellectual Property Rights are and shall remain the exclusive property of The Qt Company or its licensors respectively. No rights to The Qt Company\u2019s Intellectual Property Rights are assigned or granted to Licensee under this Agreement, except when and to the extent expressly specified herein. \n\n2.2. Ownership of Licensee\n\nAll the Licensee\u2019s Intellectual Property Rights are and shall remain the exclusive property of the Licensee or its licensors respectively. \n\nAll Intellectual Property Rights to the Modified Software, Applications and Devices shall remain with the Licensee and no rights thereto shall be granted by the Licensee to The Qt Company under this Agreement (except as set forth in Section 2.3 below). \n\n2.3. Modified Software \n\nLicensee may create bug-fixes, error corrections, patches or modifications to the Licensed Software (\u201cModified Software\u201d). Such Modified Software may break the source or binary compatibility with the Licensed Software (including without limitation through changing the application programming interfaces (\u201cAPI\u201d) or by adding, changing or deleting any variable, method, or class signature in the Licensed Software and/or any inter-process protocols, services or standards in the Licensed Software libraries). To the extent that Licensee\u2019s Modified Software so breaks source or binary compatibility with the Licensed Software, Licensee acknowledges that The Qt Company\u2019s ability to provide Support may be prevented or limited and Licensee\u2019s ability to make use of Updates may be restricted. \n\nLicensee may, at its sole and absolute discretion, choose to submit Modified Software to The Qt Company (\u201cSubmitted Modified Software\u201d) in connection with Licensee\u2019s Support request, service request or otherwise. In the event Licensee does so, then, Licensee hereby grants The Qt Company a sublicensable, assignable, irrevocable, perpetual, worldwide, non-exclusive, royalty-free and fully paid-up license, under all of Licensee\u2019s Intellectual Property Rights, to reproduce, adapt, translate, modify, and prepare derivative works of, publicly display, publicly perform, sublicense, make available and distribute such Submitted Modified Software as The Qt Company sees fit at its free and absolute discretion. \n\n3. LICENSES GRANTED\n\n3.1. Development with Licensed Software\n\nSubject to the terms of this Agreement, The Qt Company grants to Licensee a worldwide, non-exclusive, non-transferable license, valid for each Development License Term, to use, modify and copy the Licensed Software by Designated Users on the Development Platforms for the sole purposes of designing, developing, demonstrating and testing Application(s) and/or Devices, and to provide thereto related support and other related services to Customers. Each Application and/or Device can only include, incorporate or integrate contributions by such Designated Users who are duly licensed for the applicable Development Platform(s) and Deployment Platform(s) (i.e have a valid license for the appropriate Licensed Software product). \n\nLicensee may install copies of the Licensed Software on five (5) computers per Designated User, provided that only the Designated Users who have a valid Development License may use the Licensed Software. \n\nLicensee may at any time designate another Designated User to replace a then-current Designated User by notifying The Qt Company in writing, where such replacement is due to termination of employment, change of job duties, long time absence or other such permanent reason affecting Designated User\u2019s need for Licensed Software. \n\nUpon expiry of the initially agreed Development License Term, the respective Development License Term shall be automatically extended to one or more Renewal Term(s), unless and until either Party notifies the other Party in writing, or any other method acceptable to The Qt Company (it being specifically acknowledged and understood that verbal notification is explicitly deemed inadequate in all circumstances), that it does not wish to continue the Development License Term, such notification to be provided to the other Party no less than thirty (30) days before expiry of the respective Development License Term. The Qt Company shall, in good time before the due date for the above notification, remind the Licensee on the coming Renewal Term. Unless otherwise agreed between the Parties, Renewal Term shall be 12 months. \n\nAny such Renewal Term shall be subject to License Fees agreed between the Parties or, if no advance agreement exists, subject to The Qt Company\u2019s standard list pricing applicable at the commencement date of any such Renewal Term. \n\nThe Qt Company may either request the Licensee to place a purchase order corresponding to a quote by The Qt Company, or use Licensee\u2019s stored Credit Card information in the Qt Account to automatically charge the Licensee for the relevant Renewal Term. \n\n3.2. Distribution of Applications \n\nSubject to the terms of this Agreement, The Qt Company grants to Licensee a worldwide, non-exclusive, non-transferable, revocable (for cause pursuant to this Agreement), right and license, valid for the Agreement Term, to \n\n distribute, by itself or through its Contractors, Redistributables as installed, incorporated or integrated into Applications for execution on the Deployment Platforms, and \n grant perpetual and irrevocable sublicenses to Redistributables, as distributed hereunder, for Customers solely to the extent necessary in order for the Customers to use the Applications for their respective intended purposes. \n\nRight to distribute the Redistributables as part of an Application as provided herein is not royalty-bearing but is conditional upon the Application having been created, updated and maintained under a valid and duly paid Development Licenses. \n\n3.3. Distribution of Devices\n\nSubject to the terms of this Agreement, The Qt Company grants to Licensee a worldwide, non-exclusive, non-transferable, revocable (for cause pursuant to this Agreement), right and license, valid for the Agreement Term, to \n\n distribute, by itself or through one or more tiers of Contractors, Redistributables as installed, incorporated or integrated, or intended to be installed, incorporated or integrated into Devices for execution on the Deployment Platforms, and \n grant perpetual and irrevocable sublicenses to Redistributables, as distributed hereunder, for Customers solely to the extent necessary in order for the Customers to use the Devices for their respective intended purposes. \n\nRight to distribute the Devices as provided herein is conditional upon (i) the Devices having been created, updated and maintained under a valid and duly paid Development Licenses, and (ii) the Licensee having acquired corresponding Distribution Licenses at the time of distribution of any Devices to Customers. \n\n3.4. Further Requirements\n\nThe licenses granted above in this Section 3 by The Qt Company to Licensee are conditional and subject to Licensee's compliance with the following terms: \n\n Licensee acknowledges that The Qt Company has separate products of Licensed Software for the purpose of Applications and Devices respectively, where development and distribution of Devices is only allowed using the correct designated product. Licensee shall make sure and bear the burden of proof that Licensee is using a correct product of Licensed Software entitling Licensee to development and distribution of Devices; \n Licensee shall not remove or alter any copyright, trademark or other proprietary rights notice(s) contained in any portion of the Licensed Software; \n Applications must add primary and substantial functionality to the Licensed Software so as not to compete with the Licensed Software; \n Applications may not pass on functionality which in any way makes it possible for others to create software with the Licensed Software; provided however that Licensee may use the Licensed Software's scripting and QML (\"Qt Quick\") functionality solely in order to enable scripting, themes and styles that augment the functionality and appearance of the Application(s) without adding primary and substantial functionality to the Application(s); \n Licensee shall not use Licensed Software in any manner or for any purpose that infringes, misappropriates or otherwise violates any Intellectual property or right of any third party, or that violates any applicable law; \n Licensee shall not use The Qt Company's or any of its suppliers' names, logos, or trademarks to market Applications, except that Licensee may use \u201cBuilt with Qt\u201d logo to indicate that Application(s) or Device(s) was developed using the Licensed Software; \n Licensee shall not distribute, sublicense or disclose source code of Licensed Software to any third party (provided however that Licensee may appoint employee(s) of Contractors and Affiliates as Designated Users to use Licensed Software pursuant to this Agreement). Such right may be available for the Licensee subject to a separate software development kit (\u201cSDK\u201d) license agreement to be concluded with The Qt Company; \n Licensee shall not grant the Customers a right to (a) make copies of the Redistributables except when and to the extent required to use the Applications and/or Devices for their intended purpose, (b) modify the Redistributables or create derivative works thereof, (c) decompile, disassemble or otherwise reverse engineer Redistributables, or (d) redistribute any copy or portion of the Redistributables to any third party, except as part of the onward sale of the Application or Device on which the Redistributables are installed; \n Licensee shall not and shall cause that its Affiliates or Contractors shall not use Licensed Software in any Prohibited Combination, unless Licensee has received an advance written permission from The Qt Company to do so. Absent such written permission, any and all distribution by the Licensee during the Agreement Term of a hardware device or product a) which incorporate or integrate any part of Licensed Software or Open Source Qt; or b) where substantial functionality is provided by software built with Licensed Software or Open Source Qt or otherwise depends on the Licensed Software or Open Source Qt, shall be considered to be Device distribution under this Agreement and shall be dependent on Licensee\u2019s compliance thereof (including but not limited to obligation to pay applicable License Fees for such distribution). Notwithstanding what is provided above in this sub-section (ix), Licensee is entitled to use and combine Licensed Software with any Permitted Software; \n Licensee shall cause all of its Affiliates, Contractors and Customers entitled to make use of the licenses granted under this Agreement, to be contractually bound to comply with the relevant terms of this Agreement and not to use the Licensed Software beyond the terms hereof and for any purposes other than operating within the scope of their services for Licensee. Licensee shall be responsible for any and all actions and omissions of its Affiliates and Contractors relating to the Licensed Software and use thereof (including but not limited to payment of all applicable License Fees); \n Except when and to the extent explicitly provided in this Section 3, Licensee shall not transfer, publish, disclose, display or otherwise make available the Licensed Software; and \n Licensee shall not attempt or enlist a third party to conduct or attempt to conduct any of the above. \n\nAbove terms shall not be applicable if and to the extent they conflict with any mandatory provisions of any applicable laws. \n\nAny use of Licensed Software beyond the provisions of this Agreement is strictly prohibited and requires an additional license from The Qt Company. \n\n3.5 QA Tools License \n\nSubject to the terms of this Agreement, The Qt Company grants to Licensee a worldwide, non-exclusive, non-transferable license, valid for the Development License Term, to use the QA Tools for Licensee's internal business purposes in the manner provided below and in Appendix 1 hereto. \n\nLicensee may modify the QA Tools except for altering or removing any details of ownership, copyright, trademark or other property right connected with the QA Tools. \n\nLicensee shall not distribute the QA Tools or any part thereof, modified or unmodified, separately or as part of any software package, Application or Device. \n\nUpon expiry of the initially agreed Development License Term, the respective Development License Term shall be automatically extended to one or more Renewal Term(s), unless and until either Party notifies the other Party in writing, or any other method acceptable to The Qt Company (it being specifically acknowledged and understood that verbal notification is explicitly deemed inadequate in all circumstances), that it does not wish to continue the Development License Term, such notification to be provided to the other Party no less than thirty (30) days before expiry of the respective Development License Term. The Qt Company shall, in good time before the due date for the above notification, remind the Licensee on the coming Renewal Term. Unless otherwise agreed between the Parties, Renewal Term shall be 12 months. \n\nAny such Renewal Term shall be subject to License Fees agreed between the Parties or, if no advance agreement exists, subject to The Qt Company\u2019s standard list pricing applicable at the commencement date of any such Renewal Term. \n\n3.6 Evaluation License \n\nSubject to the terms of this Agreement, The Qt Company grants to Licensee a worldwide, non-exclusive, non-transferable license, valid for the Evaluation License Term to use the Licensed Software solely for the Licensee\u2019s internal use to evaluate and determine whether the Licensed Software meets Licensee's business requirements, specifically excluding any commercial use of the Licensed Software or any derived work thereof. \n\nUpon the expiry of the Evaluation License Term, Licensee must either discontinue use of the relevant Licensed Software or acquire a commercial Development License or QA Tools License specified herein. \n\n4. THIRD-PARTY SOFTWARE\n\nThe Licensed Software may provide links or access to third party libraries or code (collectively \"Third-Party Software\") to implement various functions. Third-Party Software does not, however, comprise part of the Licensed Software, but is provided to Licensee complimentary and use thereof is discretionary for the Licensee. Third-Party Software will be listed in the \".../src/3rdparty\" source tree delivered with the Licensed Software or documented in the Licensed Software, as such may be amended from time to time. Licensee acknowledges that use or distribution of Third-Party Software is in all respects subject to applicable license terms of applicable third-party right holders. \n\n5. PRE-RELEASE CODE\n\nThe Licensed Software may contain pre-release code and functionality, or sample code marked or otherwise stated with appropriate designation such as \u201cTechnology Preview\u201d, \u201cAlpha\u201d, \u201cBeta\u201d, \u201cSample\u201d, \u201cExample\u201d etc. (\u201cPre-Release Code\u201d). \n\nSuch Pre-Release Code may be present complimentary for the Licensee, in order to provide experimental support or information for new platforms or preliminary versions of one or more new functionalities or for other similar reasons. The Pre-Release Code may not be at the level of performance and compatibility of a final, generally available, product offering. The Pre-Release Code may not operate correctly, may contain errors and may be substantially modified by The Qt Company prior to the first commercial product release, if any. The Qt Company is under no obligation to make Pre-Release Code commercially available, or provide any Support or Updates relating thereto. The Qt Company assumes no liability whatsoever regarding any Pre-Release Code, but any use thereof is exclusively at Licensee\u2019s own risk and expense. \n\nFor clarity, unless Licensed Software specifies different license terms for the respective Pre-Release Code, the Licensee is entitled to use such pre-release code pursuant to Section 3, just like other Licensed Software. \n\n6. LIMITED WARRANTY AND WARRANTY DISCLAIMER\n\nThe Qt Company hereby represents and warrants that (i) it has the power and authority to grant the rights and licenses granted to Licensee under this Agreement, and (ii) Licensed Software will operate materially in accordance with its specifications. \n\nExcept as set forth above, the Licensed Software is licensed to Licensee \"as is\" and Licensee\u2019s exclusive remedy and The Qt Company\u2019s entire liability for errors in the Licensed Software shall be limited, at The Qt Company\u2019s option, to correction of the error, replacement of the Licensed Software or return of the applicable fees paid for the defective Licensed Software for the time period during which the License is not able to utilize the Licensed Software under the terms of this Agreement. \n\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE QT COMPANY ON BEHALF OF ITSELF AND ITS LICENSORS, SUPPLIERS AND AFFILIATES, DISCLAIMS ALL OTHER WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT WITH REGARD TO THE LICENSED SOFTWARE. THE QT COMPANY DOES NOT WARRANT THAT THE LICENSED SOFTWARE WILL SATISFY LICENSEE\u2019S REQUIREMENTS OR THAT IT WILL OPERATE WITHOUT DEFECT OR ERROR OR THAT THE OPERATION THEREOF WILL BE UNINTERRUPTED. \n\n7. LIMITATION OF LIABILITY\n\nEXCEPT FOR (I) CASES OF GROSS NEGLIGENCE OR INTENTIONAL MISCONDUCT, AND (II) BREACH OF CONFIDENTIALITY, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL EITHER PARTY BE LIABLE TO THE OTHER PARTY FOR ANY LOSS OF PROFIT, LOSS OF DATA, LOSS OF BUSINESS OR GOODWILL OR ANY OTHER INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE COST, DAMAGES OR EXPENSE OF ANY KIND, HOWSOEVER ARISING UNDER OR IN CONNECTION WITH THIS AGREEMENT. \n\nEXCEPT FOR (I) CASES OF GROSS NEGLIGENCE OR INTENTIONAL MISCONDUCT, AND (II) BREACH OF CONFIDENTIALITY, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL EITHER PARTY\u2019S TOTAL AGGREGATE LIABILITY UNDER THIS AGREEMENT EXCEED THE AGGREGATE LICENSE FEES PAID OR PAYABLE TO THE QT COMPANY BY LICENSEE DURING THE DEVELOPMENT LICENSE TERM DURING WHICH THE EVENT RESULTING IN SUCH LIABILITY OCCURRED. \n\nTHE PROVISIONS OF THIS SECTION 7 ALLOCATE THE RISKS UNDER THIS AGREEMENT BETWEEN THE QT COMPANY AND LICENSEE AND THE PARTIES HAVE RELIED UPON THE LIMITATIONS SET FORTH HEREIN IN DETERMINING WHETHER TO ENTER INTO THIS AGREEMENT. \n\nNOTWITHSTANDING ANYTHING TO THE CONTRARY IN THIS AGREEMENT, LICENSEE SHALL ALWAYS BE LIABLE TO PAY THE APPLICABLE LICENSE FEES CORRESPONDING TO ITS ACTUAL USE OF LICENSED SOFTWARE. \n\n8. SUPPORT, UPDATES AND ONLINE SERVICES\n\nUpon due payment of the agreed License Fees the Licensee will be eligible to receive Support and Updates and to use the Online Services during the agreed Development License Term or other agreed fixed time period. Support is provided according to agreed support level and subject to applicable requirements and restrictions, as specified in the Support Terms. \n\nUnless otherwise decided by The Qt Company at its free and absolute discretion, Upgrades will not be included in the Support but may be available subject to additional fees. \n\nFrom time to time The Qt Company may change the Support Terms, provided that during the respective ongoing Support period the level of Support may not be reduced without the consent of the Licensee. \n\nUnless otherwise agreed, The Qt Company shall not be responsible for providing any service or support to Customers. \n\n9. CONFIDENTIALITY\n\nEach Party acknowledges that during the Agreement Term each Party may receive information about the other Party's business, business methods, business plans, customers, business relations, technology, and other information, including the terms of this Agreement, that is confidential and of great value to the other Party, and the value of which would be significantly reduced if disclosed to third parties (\u201cConfidential Information\u201d). Accordingly, when a Party (the \u201cReceiving Party\u201d) receives Confidential Information from the other Party (the \u201cDisclosing Party\u201d), the Receiving Party shall only disclose such information to employees and Contractors on a need to know basis, and shall cause its employees and employees of its Affiliates to: (i) maintain any and all Confidential Information in confidence; (ii) not disclose the Confidential Information to a third party without the Disclosing Party's prior written approval; and (iii) not, directly or indirectly, use the Confidential Information for any purpose other than for exercising its rights and fulfilling its responsibilities pursuant to this Agreement. Each Party shall take reasonable measures to protect the Confidential Information of the other Party, which measures shall not be less than the measures taken by such Party to protect its own confidential and proprietary information. \n\nObligation of confidentiality shall not apply to information that (i) is or becomes generally known to the public through no act or omission of the Receiving Party; (ii) was in the Receiving Party's lawful possession prior to the disclosure hereunder and was not subject to limitations on disclosure or use; (iii) is developed independently by employees or Contractors of the Receiving Party or other persons working for the Receiving Party who have not had access to the Confidential Information of the Disclosing Party, as proven by the written records of the Receiving Party; (iv) is lawfully disclosed to the Receiving Party without restrictions, by a third party not under an obligation of confidentiality; or (v) the Receiving Party is legally compelled to disclose, in which case the Receiving Party shall notify the Disclosing Party of such compelled disclosure and assert the privileged and confidential nature of the information and cooperate fully with the Disclosing Party to limit the scope of disclosure and the dissemination of disclosed Confidential Information to the minimum extent necessary. \n\nThe obligations under this Section 9 shall continue to remain in force for a period of five (5) years after the last disclosure, and, with respect to trade secrets, for so long as such trade secrets are protected under applicable trade secret laws. \n\n10. FEES, DELIVERY AND PAYMENT\n\n10.1. License Fees\n\nLicense Fees are described in The Qt Company\u2019s standard price list, quote or Purchase Order confirmation or in an Appendix 2 hereto, as the case may be. \n\nUnless otherwise expressly provided in this Agreement, the License Fees shall not be refunded or claimed as a credit in any event or for any reason whatsoever. \n\n10.2. Ordering Licenses\n\nLicensee may purchase Development Licenses, Distribution Licenses and QA Tools Licenses pursuant to agreed pricing terms or, if no specific pricing terms have been agreed upon, at The Qt Company's standard pricing terms applicable at the time of purchase. \n\nUnless expressly otherwise agreed, any price or other term quoted to the Licensee or specified herein shall only be valid for the thirty (30) days from the effective date of this Agreement, Appendix 2 or the date of the quote, as applicable. \n\nLicensee shall submit all purchase orders for Development Licenses and Distribution Licenses to The Qt Company by email or any other method acceptable to The Qt Company (each such order is referred to herein as a \u201cPurchase Order\u201d) for confirmation, whereupon the Purchase Order shall become binding between the Parties. \n\nLicensee acknowledges and agrees that all Purchase Orders for Licensed Software the Licensee makes during the Agreement Term shall be governed exclusively under the terms of this Agreement. \n\n10.3. Distribution License Packs\n\nUnless otherwise agreed, Distribution Licenses shall be purchased by way of Distribution License Packs. \n\nUpon due payment of the ordered Distribution License Pack(s), the Licensee will have an account of Distribution Licenses available for distributing the Redistributables in accordance with this Agreement. \n\nEach time Licensee distributes a copy of Redistributables, then one Distribution License is used, and Licensee\u2019s account of available Distribution Licenses is decreased accordingly. \n\nLicensee may distribute copies of the Redistributables so long as Licensee has Distribution Licenses remaining on its account. \n\n10.4. Payment Terms\n\nLicense Fees and any other charges under this Agreement shall be paid by Licensee no later than thirty (30) days from the date of the applicable invoice from The Qt Company. \n\nThe Qt Company will submit an invoice to Licensee after the date of this Agreement and/or after The Qt Company receives a Purchase Order from Licensee. \n\nA late payment charge of the lower of (a) one percent per month; or (b) the interest rate stipulated by applicable law, shall be charged on any unpaid balances that remain past due and which have not been disputed by the Licensee in good faith. \n\n10.5. Taxes\n\nAll License Fees and other charges payable hereunder are gross amounts but exclusive of any value added tax, use tax, sales tax, withholding tax and other taxes, duties or tariffs (\u201cTaxes\u201d) levied directly for the sale, delivery or use of Licensed Software hereunder pursuant to any applicable law. Such applicable Taxes shall be paid by Licensee to The Qt Company, or, where applicable, in lieu of payment of such Taxes to The Qt Company, Licensee shall provide an exemption certificate to The Qt Company and any applicable authority. \n\n11. RECORD-KEEPING AND REPORTING OBLIGATIONS; AUDIT RIGHTS \n\n11.1. Licensee\u2019s Record-keeping \n\nLicensee shall at all times during the Agreement Term and for a period of two (2) years thereafter maintain Licensee\u2019s Records in an accurate and up-to-date form. Licensee\u2019s Records shall be adequate to reasonably enable The Qt Company to determine Licensee\u2019s compliance with the provisions of this Agreement. The records shall conform to general good accounting practices. \n\nLicensee shall, within thirty (30) days from receiving The Qt Company\u2019s request to that effect, deliver to The Qt Company a report based on Licensee\u2019s Records, such report to contain information, in sufficient detail, on (i) number and identity of users working with Licensed Software or Open Source Qt, (ii) copies of Redistributables distributed by Licensee during the most recent calendar quarter and/or any other term specified by The Qt Company, , and (iii) any other information pertaining to Licensee\u2019s compliance with the terms of this Agreement (like e.g. information on products and/or projects relating to use of Distribution Licenses), as The Qt Company may reasonably require from time to time. \n\n11.2. The Qt Company\u2019s Audit Rights \n\nThe Qt Company or an independent auditor acting on behalf of The Qt Company\u2019s, may, upon at least thirty (30) days\u2019 prior written notice and at its expense, audit Licensee with respect to the Licensee\u2019s use of the Licensed Software, but not more frequently than once during each 6-month period. Such audit may be conducted by mail, electronic means or through an in-person visit to Licensee\u2019s place of business. Any possible in-person audit shall be conducted during regular business hours at Licensee's facilities and shall not unreasonably interfere with Licensee's business activities and shall be limited in scope to verify Licensee\u2019s compliance with the terms of this Agreement. The Qt Company or the independent auditor acting on behalf of The Qt Company shall be entitled to inspect Licensee\u2019s Records and conduct necessary interviews of Licensee\u2019s relevant employees and Contractors. All such Licensee\u2019s Records and use thereof shall be subject to an obligation of confidentiality under this Agreement. \n\nIf an audit reveals that Licensee is using the Licensed Software beyond scope of the licenses Licensee has paid for, Licensee shall pay to The Qt Company any amounts owed for such unauthorized use within 30 days from receipt of the corresponding invoice from The Qt Company. \n\nIn addition, in the event the audit reveals a material violation of the terms of this Agreement (without limitation, either (i) underpayment of more than 10 % of License Fees or 10,000 euros (whichever is more) or (ii) distribution of products, which include or result from Prohibited Combination, shall be deemed a material violation for purposes of this section), then the Licensee shall pay The Qt Company's reasonable cost of conducting such audit. \n\n12. TERM AND TERMINATION \n\n12.1. Agreement Term \n\nThis Agreement shall enter into force upon due acceptance by both Parties and remain in force until terminated pursuant to the terms of this Section 12 (\u201cAgreement Term\u201d). \n\n12.2. Termination for breach and suspension of rights \n\nEither Party shall have the right to terminate this Agreement upon thirty (30) days prior written notice if the other Party commits a material breach of any obligation of this Agreement and fails to remedy such breach within such notice period. \n\nInstead of termination, The Qt Company shall have the right to suspend or withhold grants of all rights to the Licensed Software hereunder, including but not limited to the Development Licenses, Distribution License, and Support, should Licensee fail to make payment in timely fashion or otherwise violates or is reasonably suspected to violate its obligations or terms of this Agreement, and where such violation or breach is not cured within ten (10) business days following The Qt Company\u2019s written notice thereof. \n\n12.3. Termination for insolvency \n\nEither Party shall have the right to terminate this Agreement immediately upon written notice in the event that the other Party becomes insolvent, files for any form of bankruptcy, makes any assignment for the benefit of creditors, has a receiver, administrative receiver or officer appointed over the whole or a substantial part of its assets, ceases to conduct business, or an act equivalent to any of the above occurs under the laws of the jurisdiction of the other Party. \n\n12.4. Parties\u00b4 Rights and Duties upon Termination \n\nUpon expiry or termination of the Agreement, Licensee shall cease and shall cause all Designated Users (including those of its Affiliates\u2019 and Contractors\u2019) to cease using the Licensed Software under this Agreement. For clarity, a Development License of a Designated User or a QA Tools License, and all rights relating thereto, shall always terminate at the expiry of the respective Development License Term, even if the Agreement continues to remain in force. \n\nUpon such termination the Licensee shall destroy or return to The Qt Company all copies of the Licensed Software and all related materials and will certify the same by Licensee\u2019s duly authorized officer to The Qt Company upon its request, provided however that Licensee may retain and exploit such copies of the Licensed Software as it may reasonably require in providing continued support to Customers. \n\nExcept when this Agreement is terminated by The Qt Company due to Licensee\u2019s material breach as set forth in Section 12.2, the Licensee may continue distribution of Applications and Devices under the terms of this Agreement despite the termination of this Agreement. In such event the terms hereof will continue to be applicable and govern any such distribution of Applications and Devices beyond the expiry or termination of this Agreement. In case of termination by The Qt Company due to Licensee\u2019s material breach, Licensee must cease any distribution of Applications and Devices at the date of termination of this Agreement. \n\nExpiry or termination of this Agreement for any reason whatsoever shall not relieve Licensee of its obligation to pay any License Fees accrued or payable to The Qt Company prior to the effective date of termination, and Licensee pay to The Qt Company all such fees within 30 days from the effective date of termination of this Agreement. \n\nTermination of this Agreement shall not affect any rights of Customers to continue use of Applications and Devices (and therein incorporated Redistributables). \n\n12.5. Extension of Rights under Special Circumstances \n\nIn the event of The Qt Company choosing not to renew the Development License(s) or QA Tools Licenses, as set forth in Section 3.1 and 3.5 respectively, and where such decision of non-renewal is not due to any ongoing breach or alleged breach (as reasonably determined by The Qt Company) by Licensee of the terms of this Agreement or any applicable license terms of Open Source Qt, then all valid and affected Development Licenses and QA Tools licenses possessed by the Licensee at such date shall be extended to be valid in perpetuity under the terms of this Agreement and Licensee is entitled to purchase additional licenses as set forth in Section 10.2. \n\nIn the event The Qt Company is declared bankrupt under a final, non-cancellable decision by relevant court of law, and this Agreement is not, at the date of expiry of the Development License(s) or QA Tools Licenses, assigned to party, who has assumed The Qt Company\u2019s position as a legitimate licensor of Licensed Software under this Agreement, then all valid Development Licenses and QA Tools Licenses possessed by the Licensee at such date of expiry, and which the Licensee has not notified for expiry, shall be extended to be valid in perpetuity under the terms of this Agreement. \n\nFor clarity, in case of an extension under this Section 12.5, any such extension shall not apply to The Qt Company\u2019s Support obligations, but Support shall be provided only up until the end of the respective fixed Development License Term regardless of the extension of relevant Development License or QA Tools License, unless otherwise agreed between the Parties. \n\n13. GOVERNING LAW AND LEGAL VENUE \n\nIn the event this Agreement is in the name of The Qt Company Inc., a Delaware Corporation, then: \n\n this Agreement shall be construed and interpreted in accordance with the laws of the State of California, USA, excluding its choice of law provisions; \n the United Nations Convention on Contracts for the International Sale of Goods will not apply to this Agreement; and \n any dispute, claim or controversy arising out of or relating to this Agreement or the breach, termination, enforcement, interpretation or validity thereof, including the determination of the scope or applicability of this Agreement to arbitrate, shall be determined by arbitration in San Francisco, USA, before one arbitrator. The arbitration shall be administered by JAMS pursuant to JAMS' Streamlined Arbitration Rules and Procedures. Judgment on the Award may be entered in any court having jurisdiction. This Section shall not preclude parties from seeking provisional remedies in aid of arbitration from a court of appropriate jurisdiction. \n\nIn the event this Agreement is in the name of The Qt Company Ltd., a Finnish Company, then: \n\n this Agreement shall be construed and interpreted in accordance with the laws of Finland, excluding its choice of law provisions; \n the United Nations Convention on Contracts for the International Sale of Goods will not apply to this Agreement; and \n any disputes, controversy or claim arising out of or relating to this Agreement, or the breach, termination or validity thereof shall be finally settled by arbitration in accordance with the Arbitration Rules of International Chamber of Commerce. The arbitration tribunal shall consist of one (1), or if either Party so requires, of three (3), arbitrators. The award shall be final and binding and enforceable in any court of competent jurisdiction. The arbitration shall be held in Helsinki, Finland and the process shall be conducted in the English language. This Section shall not preclude parties from seeking provisional remedies in aid of arbitration from a court of appropriate jurisdiction. \n\n14. GENERAL PROVISIONS \n\n14.1. No Assignment \n\nExcept in the case of a merger or sale of substantially all of its corporate assets, Licensee shall not be entitled to assign or transfer all or any of its rights, benefits and obligations under this Agreement without the prior written consent of The Qt Company, which shall not be unreasonably withheld or delayed. The Qt Company shall be entitled to freely assign or transfer any of its rights, benefits or obligations under this Agreement. \n\n14.2. No Third-Party Representations \n\nLicensee shall make no representations or warranties concerning the Licensed Software on behalf of The Qt Company. Any representation or warranty Licensee makes or purports to make on The Qt Company\u2019s behalf shall be void as to The Qt Company. \n\n14.3. Surviving Sections \n\nAny terms and conditions that by their nature or otherwise reasonably should survive termination of this Agreement shall so be deemed to survive. Such sections include especially the following: 1, 2, 6, 7, 9, 11, 12.4, 13 and 14. \n\n14.4. Entire Agreement \n\nThis Agreement, the Appendices hereto, the License Certificate and any applicable quote and Purchase Order accepted by The Qt Company constitute the complete agreement between the Parties and supersedes all prior or contemporaneous discussions, representations, and proposals, written or oral, with respect to the subject matters discussed herein. \n\nIn the event of any conflict or inconsistency between this Agreement and any Purchase Order, the terms of this Agreement will prevail over the terms of the Purchase Order with respect to such conflict or inconsistency. \n\nParties specifically acknowledge and agree that this Agreement prevails over any click-to-accept or similar agreements the Designated Users may need to accept online upon download of the Licensed Software, as may be required by The Qt Company\u2019s applicable processes relating to Licensed Software. \n\n14.5. Modifications \n\nNo modification of this Agreement shall be effective unless contained in a writing executed by an authorized representative of each Party. No term or condition contained in Licensee's Purchase Order (\u201cDeviating Terms\u201d) shall apply unless The Qt Company has expressly agreed such Deviating Terms in writing. Unless and to the extent expressly agreed by The Qt Company, any such Deviating Terms shall be deemed void and with no legal effect. For clarity, delivery of the Licensed Software following the receipt of the Purchase Order including Deviating Terms shall not constitute acceptance of such Deviating Terms. \n\n14.6. Force Majeure \n\nExcept for the payment obligations hereunder, neither Party shall be liable to the other for any delay or non-performance of its obligations hereunder in the event and to the extent that such delay or non-performance is due to an event of act of God, terrorist attack or other similar unforeseeable catastrophic event that prevents either Party for fulfilling its obligations under this Agreement and which such Party cannot avoid or circumvent (\u201cForce Majeure Event\u201d). If the Force Majeure Event results in a delay or non-performance of a Party for a period of three (3) months or longer, then either Party shall have the right to terminate this Agreement with immediate effect without any liability (except for the obligations of payment arising prior to the event of Force Majeure) towards the other Party. \n\n14.7. Notices \n\nAny notice given by one Party to the other shall be deemed properly given and deemed received if specifically acknowledged by the receiving Party in writing or when successfully delivered to the recipient by hand, fax, or special courier during normal business hours on a business day to the addresses specified for each Party on the signature page. Each communication and document made or delivered by one Party to the other Party pursuant to this Agreement shall be in the English language. \n\n14.8. Export Control \n\nLicensee acknowledges that the Redistributables, as incorporated in Applications or Devices, may be subject to export control restrictions under the applicable laws of respective countries. Licensee shall fully comply with all applicable export license restrictions and requirements as well as with all laws and regulations relating to the Redistributables and exercise of licenses hereunder and shall procure all necessary governmental authorizations, including without limitation, all necessary licenses, approvals, permissions or consents, where necessary for the re-exportation of the Redistributables, Applications and/or Devices. \n\n14.9. No Implied License \n\nThere are no implied licenses or other implied rights granted under this Agreement, and all rights, save for those expressly granted hereunder, shall remain with The Qt Company and its licensors. In addition, no licenses or immunities are granted to the combination of the Licensed Software with any other software or hardware not delivered by The Qt Company under this Agreement. \n\n14.10. Attorney Fees \n\nThe prevailing Party in any action to enforce this Agreement shall be entitled to recover its attorney\u2019s fees and costs in connection with such action, as to be ordered by the relevant dispute resolution body. \n\n14.11. Privacy \n\nLicensee acknowledges and agrees that for the purpose of this Agreement, The Qt Company may collect, use, transfer and disclose personal data pertaining to Designated Users as well as any other employees and directors of the Licensee and its Contractors relevant for carrying out the intent of this Agreement. Such personal data will be primarily collected from the relevant individuals but may be collected also from Licensee (e.g. in the course of Licensee\u2019s reporting obligations). The Parties acknowledge that as The Qt Company determines the purpose and means for such collection and processing of the applicable personal data, The Qt Company shall be regarded as the Data Controller under the applicable Data Protection Legislation. The Qt Company shall process any such personal data in accordance with its privacy and security policies and practices, which will comply with all applicable requirements of the Data Protection Legislation. \n\n14.12. Severability \n\nIf any provision of this Agreement shall be adjudged by any court of competent jurisdiction to be unenforceable or invalid, that provision shall be limited or eliminated to the minimum extent necessary so that this Agreement shall otherwise remain in full force and effect and enforceable. \n\n14.13. Marketing Rights \n\nParties have agreed upon Marketing Rights pursuant to Appendix 7, if any.", + "json": "qt-commercial-agreement-4.4.1.json", + "yaml": "qt-commercial-agreement-4.4.1.yml", + "html": "qt-commercial-agreement-4.4.1.html", + "license": "qt-commercial-agreement-4.4.1.LICENSE" + }, + { + "license_key": "qt-company-exception-2017-lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "As an additional permission to the GNU Lesser General Public License version\n2.1, the object code form of a \"work that uses the Library\" may incorporate\nmaterial from a header file that is part of the Library. You may distribute\nsuch object code under terms of your choice, provided that:\n (i) the header files of the Library have not been modified; and \n (ii) the incorporated material is limited to numerical parameters, data\n structure layouts, accessors, macros, inline functions and\n templates; and\n (iii) you comply with the terms of Section 6 of the GNU Lesser General\n Public License version 2.1.\n\nMoreover, you may apply this exception to a modified version of the Library,\nprovided that such modification does not involve copying material from the\nLibrary into the modified Library's header files unless such material is\nlimited to (i) numerical parameters; (ii) data structure layouts;\n(iii) accessors; and (iv) small macros, templates and inline functions of\nfive lines or less in length.\n\nFurthermore, you are not required to apply this additional permission to a\nmodified version of the Library.", + "json": "qt-company-exception-2017-lgpl-2.1.json", + "yaml": "qt-company-exception-2017-lgpl-2.1.yml", + "html": "qt-company-exception-2017-lgpl-2.1.html", + "license": "qt-company-exception-2017-lgpl-2.1.LICENSE" + }, + { + "license_key": "qt-company-exception-lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-qt-company-exception-lgpl-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception to the GNU Lesser General Public License version 2.1, the\nobject code form of a \"work that uses the Library\" may incorporate material from\na header file that is part of the Library. You may distribute such object code\nunder terms of your choice, provided that the incorporated material (i) does not\nexceed more than 5% of the total size of the Library; and (ii) is limited to\nnumerical parameters, data structure layouts, accessors, macros, inline\nfunctions and templates.", + "json": "qt-company-exception-lgpl-2.1.json", + "yaml": "qt-company-exception-lgpl-2.1.yml", + "html": "qt-company-exception-lgpl-2.1.html", + "license": "qt-company-exception-lgpl-2.1.LICENSE" + }, + { + "license_key": "qt-gpl-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "Qt-GPL-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "The Qt Company GPL Exception 1.0\n\nException 1:\n\nAs a special exception you may create a larger work which contains the\noutput of this application and distribute that work under terms of your\nchoice, so long as the work is not otherwise derived from or based on\nthis application and so long as the work does not in itself generate\noutput that contains the output from this application in its original\nor modified form.\n\nException 2:\n\nAs a special exception, you have permission to combine this application\nwith Plugins licensed under the terms of your choice, to produce an\nexecutable, and to copy and distribute the resulting executable under\nthe terms of your choice. However, the executable must be accompanied\nby a prominent notice offering all users of the executable the entire\nsource code to this application, excluding the source code of the\nindependent modules, but including any changes you have made to this\napplication, under the terms of this license.", + "json": "qt-gpl-exception-1.0.json", + "yaml": "qt-gpl-exception-1.0.yml", + "html": "qt-gpl-exception-1.0.html", + "license": "qt-gpl-exception-1.0.LICENSE" + }, + { + "license_key": "qt-kde-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-qt-kde-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, permission is given to link this program\nwith any edition of Qt, and distribute the resulting executable,\nwithout including the source code for Qt in the source distribution.", + "json": "qt-kde-linking-exception.json", + "yaml": "qt-kde-linking-exception.yml", + "html": "qt-kde-linking-exception.html", + "license": "qt-kde-linking-exception.LICENSE" + }, + { + "license_key": "qt-lgpl-exception-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "Qt-LGPL-exception-1.1", + "other_spdx_license_keys": [ + "Nokia-Qt-exception-1.1" + ], + "is_exception": true, + "is_deprecated": false, + "text": "The Qt Company Qt LGPL Exception version 1.1\n\nAs an additional permission to the GNU Lesser General Public License version\n2.1, the object code form of a \"work that uses the Library\" may incorporate\nmaterial from a header file that is part of the Library. You may distribute\nsuch object code under terms of your choice, provided that:\n (i) the header files of the Library have not been modified; and \n (ii) the incorporated material is limited to numerical parameters, data\n structure layouts, accessors, macros, inline functions and\n templates; and\n (iii) you comply with the terms of Section 6 of the GNU Lesser General\n Public License version 2.1.\n\nMoreover, you may apply this exception to a modified version of the Library,\nprovided that such modification does not involve copying material from the\nLibrary into the modified Library's header files unless such material is\nlimited to (i) numerical parameters; (ii) data structure layouts;\n(iii) accessors; and (iv) small macros, templates and inline functions of\nfive lines or less in length.\n\nFurthermore, you are not required to apply this additional permission to a\nmodified version of the Library.", + "json": "qt-lgpl-exception-1.1.json", + "yaml": "qt-lgpl-exception-1.1.yml", + "html": "qt-lgpl-exception-1.1.html", + "license": "qt-lgpl-exception-1.1.LICENSE" + }, + { + "license_key": "qt-qca-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-qt-qca-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, the copyright holder(s) give permission to link\nthis program with the Qt Library (commercial or non-commercial edition),\nand distribute the resulting executable, without including the source\ncode for the Qt library in the source distribution.\n\nAs a special exception, the copyright holder(s) give permission to link\nthis program with any other library, and distribute the resulting\nexecutable, without including the source code for the library in the\nsource distribution, provided that the library interfaces with this\nprogram only via the following plugin interfaces:\n\n1. The Qt Plugin APIs, only as authored by Trolltech\n2. The QCA Plugin API, only as authored by Justin Karneges", + "json": "qt-qca-exception-2.0.json", + "yaml": "qt-qca-exception-2.0.yml", + "html": "qt-qca-exception-2.0.html", + "license": "qt-qca-exception-2.0.LICENSE" + }, + { + "license_key": "qti-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-qti-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PLEASE READ THIS LICENSE AGREEMENT (\"AGREEMENT\") CAREFULLY. THIS AGREEMENT IS\nA BINDING LEGAL AGREEMENT ENTERED INTO BY AND BETWEEN YOU (OR IF YOU ARE\nENTERING INTO THIS AGREEMENT ON BEHALF OF AN ENTITY, THEN THE ENTITY THAT YOU\nREPRESENT) AND QUALCOMM TECHNOLOGIES, INC. (\"QTI\" \"WE\" \"OUR\" OR \"US\"). THIS IS\nTHE AGREEMENT THAT APPLIES TO YOUR USE OF THE DESIGNATED AND/OR LINKED\nAPPLICATIONS, THE ENCLOSED QUALCOMM TECHNOLOGIES' MATERIALS, INCLUDING RELATED\nDOCUMENTATION AND ANY UPDATES OR IMPROVEMENTS THEREOF\n(COLLECTIVELY, \"MATERIALS\"). BY USING OR COMPLETING THE INSTALLATION OF THE\nMATERIALS, YOU ARE ACCEPTING THIS AGREEMENT AND YOU AGREE TO BE BOUND BY ITS\nTERMS AND CONDITIONS. IF YOU DO NOT AGREE TO THESE TERMS, QTI IS UNWILLING TO\nAND DOES NOT LICENSE THE MATERIALS TO YOU. IF YOU DO NOT AGREE TO THESE TERMS\nYOU MUST DISCONTINUE THE INSTALLATION PROCESS AND YOU MAY NOT USE THE MATERIALS\nOR RETAIN ANY COPIES OF THE MATERIALS. ANY USE OR POSSESSION OF THE MATERIALS\nBY YOU IS SUBJECT TO THE TERMS AND CONDITIONS SET FORTH IN THIS AGREEMENT.\n\n1. RIGHT TO USE DELIVERABLES; RESTRICTIONS.\n\n 1.1 License. Subject to the terms and conditions of this Agreement,\n including, without limitation, the restrictions, conditions, limitations and\n exclusions set forth in this Agreement, QTI hereby grants to you a\n nonexclusive, limited license under QTI's copyrights to: (i) install and use\n the Materials; and (ii) to reproduce and redistribute the binary code portions\n of the Materials (the \"Redistributable Binary Code\"). You may make and use a\n reasonable number of copies of any documentation.\n\n 1.2 Redistribution Restrictions. Distribution of the Redistributable Binary\n Code is subject to the following restrictions: (i) Redistributable Binary Code\n may only be distributed in binary format and may not be distributed in source\n code format:; (ii) the Redistributable Binary Code may only operate in\n conjunction with platforms incorporating Qualcomm Technologies, Inc. chipsets;\n (iii) redistribution of the Redistributable Binary Code must include the .txt\n file setting forth the terms and condition of this Agreement; (iv) you may not\n use Qualcomm Technologies' or its affiliates or subsidiaries name, logo or\n trademarks; and (v) copyright, trademark, patent and any other notices that\n appear on the Materials may not be removed or obscured.\n\n 1.3 Additional Restrictions. Except as expressly permitted by this Agreement,\n you shall have no right to sublicense, transfer or otherwise disclose the\n Materials to any third party. You shall not reverse engineer, reverse\n assemble, reverse translate, decompile or reduce to source code form any\n portion of the Materials provided in object code form or executable form.\n Except for the purposes expressly permitted in this Agreement, You shall not\n use the Materials for any other purpose. QTI (or its licensors) shall retain\n title and all ownership rights in and to the Materials and any alterations,\n modifications (including all derivative works), translations or adaptations\n made of the Materials, and all copies thereof, and nothing herein shall be\n deemed to grant any right to You under any of QTI's or its affiliates'\n patents. You shall not subject the Materials to any third party license\n terms (e.g., open source license terms). You shall not use the Materials for\n the purpose of identifying or providing evidence to support any potential\n patent infringement claim against QTI, its affiliates, or any of QTI's or\n QTI's affiliates' suppliers and/or direct or indirect customers. QTI hereby\n reserves all rights not expressly granted herein.\n\n 1.4 Third Party Software and Materials. The Software may contain or link to\n certain software and/or materials that are written or owned by third parties.\n Such third party code and materials may be licensed under separate or\n different terms and conditions and are not licensed to you under the terms of\n this Agreement. You agree to comply with all terms and conditions imposed on\n you in the applicable third party licenses. Such terms and conditions may\n impose certain obligations on you as a condition to the permitted use of such\n third party code and materials. QTI does not represent or warrant that such\n third party licensors have or will continue to license or make available their\n code and materials to you.\n\n 1.5 Feedback. QTI may from time to time receive suggestions, feedback or\n other information from You regarding the Materials. Any suggestions, feedback\n or other disclosures received from You are and shall be entirely voluntary on\n the part of You. Notwithstanding any other term in this Agreement, QTI shall\n be free to use suggestions, feedback or other information received from You,\n without obligation of any kind to You. The Parties agree that all inventions,\n product improvements, and modifications conceived of or made by QTI that are\n based, either in whole or in part, on ideas, feedback, suggestions, or\n recommended improvements received from You are the exclusive property of QTI,\n and all right, title and interest in and to any such inventions, product\n improvements, and modifications will vest solely in QTI.\n\n 1.6 No Technical Support. QTI is under no obligation to provide any form of\n technical support for the Materials, and if QTI, in its sole discretion,\n chooses to provide any form of support or information relating to the\n Materials, such support and information shall be deemed confidential and\n proprietary to QTI.\n\n2. WARRANTY DISCLAIMER. YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT THE USE OF\nTHE MATERIALS IS AT YOUR SOLE RISK. THE MATERIALS AND TECHNICAL SUPPORT, IF\nANY, ARE PROVIDED \"AS IS\" AND WITHOUT WARRANTY OF ANY KIND, WHETHER EXPRESS OR\nIMPLIED. QTI ITS LICENSORS AND AFFILIATES MAKE NO WARRANTIES, EXPRESS OR\nIMPLIED, WITH RESPECT TO THE MATERIALS OR ANY OTHER INFORMATION OR DOCUMENTATION\nPROVIDED UNDER THIS AGREEMENT, INCLUDING BUT NOT LIMITED TO ANY WARRANTY OF\nMERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE OR AGAINST INFRINGEMENT, OR\nANY EXPRESS OR IMPLIED WARRANTY ARISING OUT OF TRADE USAGE OR OUT OF A COURSE OF\nDEALING OR COURSE OF PERFORMANCE. NOTHING CONTAINED IN THIS AGREEMENT SHALL BE\nCONSTRUED AS (I) A WARRANTY OR REPRESENTATION BY QTI, ITS LICENSORS OR\nAFFILIATES AS TO THE VALIDITY OR SCOPE OF ANY PATENT, COPYRIGHT OR OTHER\nINTELLECTUAL PROPERTY RIGHT OR (II) A WARRANTY OR REPRESENTATION BY QTI THAT ANY\nMANUFACTURE OR USE WILL BE FREE FROM INFRINGEMENT OF PATENTS, COPYRIGHTS OR\nOTHER INTELLECTUAL PROPERTY RIGHTS OF OTHERS, AND IT SHALL BE THE SOLE\nRESPONSIBILITY OF YOU TO MAKE SUCH DETERMINATION AS IS NECESSARY WITH RESPECT TO\nTHE ACQUISITION OF LICENSES UNDER PATENTS AND OTHER INTELLECTUAL PROPERTY OF\nTHIRD PARTIES.\n\n3. NO OTHER LICENSES OR INTELLECTUAL PROPERTY RIGHTS. Neither this Agreement,\nnor any act by QTI or any of its affiliates pursuant to this Agreement or\nrelating to the Materials (including, without limitation, the provision by QTI\nor its affiliates of the Materials), shall provide to You any license or any\nother rights whatsoever under any patents, trademarks, trade secrets, copyrights\nor any other intellectual property of QTI or any of its affiliates, except for\nthe copyright rights expressly licensed under this Agreement. You understand and\nagree that:\n\n (i) Neither this Agreement, nor delivery of the Materials, grants any right to\n practice, or any other right at all with respect to, any patent of QTI or any\n of its affiliates; and\n\n (ii) A separate license agreement from QUALCOMM Incorporated is needed to use\n or practice any patent of QUALCOMM Incorporated. You agree not to contend in\n any context that, as a result of the provision or use of the Materials, either\n QTI or any of its affiliates has any obligation to extend, or You or any other\n party has obtained any right to, any license, whether express or implied, with\n respect to any patent of QTI or any of its affiliates for any purpose.\n\n4. TERMINATION. This Agreement shall be effective upon acceptance, or access or\nuse of the Materials (whichever occurs first) by You and shall continue until\nterminated. You may terminate the Agreement at any time by deleting and\ndestroying all copies of the Materials and all related information in Your\npossession or control. This Agreement terminates immediately and automatically,\nwith or without notice, if You fail to comply with any provision hereof.\nAdditionally, QTI may at any time terminate this Agreement, without cause, upon\nnotice to You. Upon termination You must, to the extent possible, delete or\ndestroy all copies of the Materials in Your possession and the license granted\nto You in this Agreement shall terminate. Sections 1.2 through 10 shall survive\nthe termination of this Agreement. In the event that any restrictions,\nconditions, limitations are found to be either invalid or unenforceable, the\nrights granted to You in Section 1 (License) shall be null, void and ineffective\nfrom the Effective Date, and QTI shall also have the right to terminate this\nAgreement immediately, and with retroactive effect to the effective date.\n\n5. LIMITATION OF LIABILITY. IN NO EVENT SHALL QTI, QTI's AFFILIATES OR ITS\nLICENSORS BE LIABLE TO YOU FOR ANY INCIDENTAL, CONSEQUENTIAL OR SPECIAL DAMAGES,\nINCLUDING BUT NOT LIMITED TO ANY LOST PROFITS, LOST SAVINGS, OR OTHER INCIDENTAL\nDAMAGES, ARISING OUT OF THE USE OR INABILITY TO USE, OR THE DELIVERY OR FAILURE\nTO DELIVER, ANY OF THE DELIVERABLES, OR ANY BREACH OF ANY OBLIGATION UNDER THIS\nAGREEMENT, EVEN IF QTI HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\nTHE FOREGOING LIMITATION OF LIABILITY SHALL REMAIN IN FULL FORCE AND EFFECT\nREGARDLESS OF WHETHER YOUR REMEDIES HEREUNDER ARE DETERMINED TO HAVE FAILED OF\nTHEIR ESSENTIAL PURPOSE. THE ENTIRE LIABILITY OF QTI, QTI's AFFILIATES AND ITS\nLICENSORS, AND THE SOLE AND EXCLUSIVE REMEDY OF YOU, FOR ANY CLAIM OR CAUSE OF\nACTION ARISING HEREUNDER (WHETHER IN CONTRACT, TORT, OR OTHERWISE) SHALL NOT\nEXCEED US$50.\n\n6. INDEMNIFICATION. You agree to indemnify and hold harmless QTI and its\nofficers, directors, employees and successors and assigns against any and all\nthird party claims, demands, causes of action, losses, liabilities, damages,\ncosts and expenses, incurred by QTI (including but not limited to costs of\ndefense, investigation and reasonable attorney's fees) arising out of, resulting\nfrom or related to: (i) any breach of this Agreement by You; and (ii) your acts,\nomissions, products and services. If requested by QTI, You agree to defend QTI\nin connection with any third party claims, demands, or causes of action\nresulting from, arising out of or in connection with any of the foregoing.\n\n7. ASSIGNMENT. You shall not assign this Agreement or any right or interest\nunder this Agreement, nor delegate any obligation to be performed under this\nAgreement, without QTI's prior written consent. For purposes of this Section 7,\nan \"assignment\" by You under this Section shall be deemed to include, without\nlimitation, any merger, consolidation, sale of all or substantially all of its\nassets, or any substantial change in the management or control of You.\nAny attempted assignment in contravention of this Section 9 shall be void.\nQTI may freely assign this Agreement or delegate any or all of its rights and\nobligations hereunder to any third party.\n\n8. COMPLIANCE WITH LAWS; APPLICABLE LAW. You agree to comply with all\napplicable local, international and national laws and regulations and with U.S.\nExport Administration Regulations, as they apply to the subject matter of this\nAgreement. This Agreement is governed by the laws of the State of California,\nexcluding California's choice of law rules.\n\n9. CONTRACTING PARTIES. If the Materials are downloaded on any computer owned\nby a corporation or other legal entity, then this Agreement is formed by and\nbetween QTI and such entity. The individual accepting the terms of this\nAgreement represents and warrants to QTI that they have the authority to bind\nsuch entity to the terms and conditions of this Agreement.\n\n10. MISCELLANEOUS PROVISIONS. This Agreement, together with all exhibits\nattached hereto, which are incorporated herein by this reference, constitutes\nthe entire agreement between QTI and You and supersedes all prior negotiations,\nrepresentations and agreements between the parties with respect to the subject\nmatter hereof. No addition or modification of this Agreement shall be effective\nunless made in writing and signed by the respective representatives of QTI and\nYou. The restrictions, limitations, exclusions and conditions set forth in this\nAgreement shall apply even if QTI or any of its affiliates becomes aware of or\nfails to act in a manner to address any violation or failure to comply\ntherewith. You hereby acknowledge and agree that the restrictions, limitations,\nconditions and exclusions imposed in this Agreement on the rights granted in\nthis Agreement are not a derogation of the benefits of such rights. You further\nacknowledges that, in the absence of such restrictions, limitations, conditions\nand exclusions, QTI would not have entered into this Agreement with You. Each\nparty shall be responsible for and shall bear its own expenses in connection\nwith this Agreement. If any of the provisions of this Agreement are determined\nto be invalid, illegal, or otherwise unenforceable, the remaining provisions\nshall remain in full force and effect. This Agreement is entered into solely\nin the English language, and if for any reason any other language version is\nprepared by any party, it shall be solely for convenience and the English\nversion shall govern and control all aspects. If You are located in the\nprovince of Quebec, Canada, the following applies: The Parties hereby confirm\nthey have requested this Agreement and all related documents be prepared\nin English.", + "json": "qti-linux-firmware.json", + "yaml": "qti-linux-firmware.yml", + "html": "qti-linux-firmware.html", + "license": "qti-linux-firmware.LICENSE" + }, + { + "license_key": "qualcomm-iso", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-qualcomm-iso", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software module was originally developed by Qualcomm, Inc. in\nthe course of development of the ISO/IEC MPEG-B DASH standard for\nreference purposes and its performance may not have been optimized.\nThis software module is an implementation of one or more tools as\nspecified by the ISO/IEC MPEG-B DASH standard.\n\nISO/IEC gives users free license to this software module or\nmodifications thereof for use in products claiming conformance to\naudiovisual and image-coding related ITU Recommendations and/or ISO/IEC\nInternational Standards.\n\nISO/IEC gives users the same free license to this software module or\nmodifications thereof for research purposes and further ISO/IEC\nstandardisation.\n\nThose intending to use this software module in products are advised that\nits use may infringe existing patents. ISO/IEC have no liability for use\nof this software module or modifications thereof. Copyright is not\nreleased for products that do not conform to audiovisual and\nimage-coding related ITU Recommendations and/or ISO/IEC International\nStandards.\n\nQualcomm, Inc. retains full right to modify and use the code for its own\npurpose, assign or donate the code to a third party and to inhibit third\nparties from using the code for products that do not conform to\naudiovisual and image-coding related ITU Recommendations and/or ISO/IEC\nInternational Standards.\n\nThis copyright notice must be included in all copies or derivative\nworks. Copyright (c) ISO/IEC 2010.", + "json": "qualcomm-iso.json", + "yaml": "qualcomm-iso.yml", + "html": "qualcomm-iso.html", + "license": "qualcomm-iso.LICENSE" + }, + { + "license_key": "qualcomm-turing", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-qualcomm-turing", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software is free for commercial and non-commercial use subject to\nthe following conditions:\n\n1. Copyright remains vested in QUALCOMM Incorporated, and Copyright\nnotices in the code are not to be removed. If this package is used in\na product, QUALCOMM should be given attribution as the author of the\nTuring encryption algorithm. This can be in the form of a textual\nmessage at program startup or in documentation (online or textual)\nprovided with the package.\n\n2. Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\na. Redistributions of source code must retain the copyright notice,\n this list of conditions and the following disclaimer.\n\nb. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the\n distribution.\n\nc. All advertising materials mentioning features or use of this\n software must display the following acknowledgement: This product\n includes software developed by QUALCOMM Incorporated.\n\n3. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AND AGAINST\nINFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n4. The license and distribution terms for any publically available version\nor derivative of this code cannot be changed, that is, this code cannot\nsimply be copied and put under another distribution license including\nthe GNU Public License.\n\n5. The Turing family of encryption algorithms are covered by patents in\nthe United States of America and other countries. A free and\nirrevocable license is hereby granted for the use of such patents to\nthe extent required to utilize the Turing family of encryption\nalgorithms for any purpose, subject to the condition that any\ncommercial product utilising any of the Turing family of encryption\nalgorithms should show the words \"Encryption by QUALCOMM\" either on the\nproduct or in the associated documentation.", + "json": "qualcomm-turing.json", + "yaml": "qualcomm-turing.yml", + "html": "qualcomm-turing.html", + "license": "qualcomm-turing.LICENSE" + }, + { + "license_key": "quickfix-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-quickfix-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The QuickFIX Software License, Version 1.0\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in\n the documentation and/or other materials provided with the\n distribution.\n\n3. The end-user documentation included with the redistribution,\n if any, must include the following acknowledgment:\n \"This product includes software developed by\n quickfixengine.org (http://www.quickfixengine.org/).\"\n Alternately, this acknowledgment may appear in the software itself,\n if and wherever such third-party acknowledgments normally appear.\n\n4. The names \"QuickFIX\" and \"quickfixengine.org\" must\n not be used to endorse or promote products derived from this\n software without prior written permission. For written\n permission, please contact ask@quickfixengine.org\n\n5. Products derived from this software may not be called \"QuickFIX\",\n nor may \"QuickFIX\" appear in their name, without prior written\n permission of quickfixengine.org\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL QUICKFIXENGINE.ORG OR\nITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\nUSE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\nOF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.", + "json": "quickfix-1.0.json", + "yaml": "quickfix-1.0.yml", + "html": "quickfix-1.0.html", + "license": "quickfix-1.0.LICENSE" + }, + { + "license_key": "quicktime", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-quicktime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Apple Computer, Inc.\nSoftware License Agreement\nFor QuickTime\n\n\nPLEASE READ THE TERMS OF THIS SOFTWARE LICENSE AGREEMENT (\"LICENSE\") WHICH IS EITHER ENCLOSED IN THE SOFTWARE PACKAGE AND/OR PRESENTED ELECTRONICALLY WHEN ACCESSING THE SOFTWARE. BY CLICKING THE \"AGREE/ACCEPT\" BUTTON, YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS LICENSE. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE, CLICK \"DISAGREE/DECLINE\" AND (IF APPLICABLE) RETURN THE APPLE SOFTWARE TO THE PLACE WHERE YOU OBTAINED IT FOR A REFUND.\n\n1. General.\nThe software, documentation and any fonts accompanying this License whether on disk, in read only memory, on any other media or in any other form (collectively the \"Apple Software\") are licensed, not sold, to you by Apple Computer, Inc. (\"Apple\") for use only under the terms of this License, and Apple reserves all rights not expressly granted to you. The rights granted herein are limited to Apple's and its licensors' intellectual property rights in the Apple Software and do not include any other patents or intellectual property rights. You own the media on which the Apple Software is recorded but Apple and/or Apple's licensor(s) retain ownership of the Apple Software itself. The rights granted under the terms of this License include any software upgrades that replace and/or supplement the original Apple Software product, unless such upgrade contains a separate license.\n\n2. Permitted License Uses and Restrictions.\nThis License allows you to install and use one copy of the Apple Software on a single computer at a time. This License does not allow the Apple Software to exist on more than one computer at a time, and you may not make the Apple Software available over a network where it could be used by multiple computers at the same time. You may make one copy of the Apple Software in machine-readable form for backup purposes only; provided that the backup copy must include all copyright or other proprietary notices contained on the original. Except as and only to the extent expressly permitted in this License or by applicable law, you may not copy, decompile, reverse engineer, disassemble, modify, or create derivative works of the Apple Software or any part thereof. THE APPLE SOFTWARE IS NOT INTENDED FOR USE IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL SYSTEMS, LIFE SUPPORT MACHINES OR OTHER EQUIPMENT IN WHICH THE FAILURE OF THE APPLE SOFTWARE COULD LEAD TO DEATH, PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE.\n\n3. Transfer.\nYou may not rent, lease, lend or sublicense the Apple Software. You may, however, make a one-time permanent transfer of all of your license rights to the Apple Software to another party, provided that: (a) the transfer must include all of the Apple Software, including all its component parts, original media, printed materials and this License; (b) you do not retain any copies of the Apple Software, full or partial, including copies stored on a computer or other storage device; and (c) the party receiving the Apple Software reads and agrees to accept the terms and conditions of this License. NFR Copies: Notwithstanding other sections of this License, Apple Software labeled or otherwise provided to you on a promotional basis may only be used for demonstration, testing and evaluation purposes and may not be resold or transferred.\n\n4. Termination.\nThis License is effective until terminated. Your rights under this License will terminate automatically without notice from Apple if you fail to comply with any term(s) of this License. Upon the termination of this License, you shall cease all use of the Apple Software and destroy all copies, full or partial, of the Apple Software.\n\n5. Limited Warranty on Media.\nApple warrants the media on which the Apple Software is recorded and delivered by Apple to be free from defects in materials and workmanship under normal use for a period of ninety (90) days from the date of original retail purchase. Your exclusive remedy under this Section shall be, at Apple's option, a refund of the purchase price of the product containing the Apple Software or replacement of the Apple Software which is returned to Apple or an Apple authorized representative with a copy of the receipt. THIS LIMITED WARRANTY AND ANY IMPLIED WARRANTIES ON THE MEDIA INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, OF SATISFACTORY QUALITY, AND OF FITNESS FOR A PARTICULAR PURPOSE, ARE LIMITED IN DURATION TO NINETY (90) DAYS FROM THE DATE OF ORIGINAL RETAIL PURCHASE. SOME JURISDICTIONS DO NOT ALLOW LIMITATIONS ON HOW LONG AN IMPLIED WARRANTY LASTS, SO THE ABOVE LIMITATION MAY NOT APPLY TO YOU. THE LIMITED WARRANTY SET FORTH HEREIN IS THE ONLY WARRANTY MADE TO YOU AND IS PROVIDED IN LIEU OF ANY OTHER WARRANTIES (IF ANY) CREATED BY ANY DOCUMENTATION OR PACKAGING. THIS LIMITED WARRANTY GIVES YOU SPECIFIC LEGAL RIGHTS, AND YOU MAY ALSO HAVE OTHER RIGHTS WHICH VARY BY JURISDICTION.\n\n6. Disclaimer of Warranties.\nYOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT USE OF THE APPLE SOFTWARE IS AT YOUR SOLE RISK AND THAT THE ENTIRE RISK AS TO SATISFACTORY QUALITY, PERFORMANCE, ACCURACY AND EFFORT IS WITH YOU. EXCEPT FOR THE LIMITED WARRANTY ON MEDIA SET FORTH ABOVE AND TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE APPLE SOFTWARE IS PROVIDED \"AS IS\", WITH ALL FAULTS AND WITHOUT WARRANTY OF ANY KIND, AND APPLE AND APPLE'S LICENSORS (COLLECTIVELY REFERRED TO AS \"APPLE\" FOR THE PURPOSES OF SECTIONS 6 AND 7) HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH RESPECT TO THE APPLE SOFTWARE, EITHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND NON-INFRINGEMENT OF THIRD PARTY RIGHTS. APPLE DOES NOT WARRANT AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE APPLE SOFTWARE, THAT THE FUNCTIONS CONTAINED IN THE APPLE SOFTWARE WILL MEET YOUR REQUIREMENTS, THAT THE OPERATION OF THE APPLE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT DEFECTS IN THE APPLE SOFTWARE WILL BE CORRECTED. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE OR AN APPLE AUTHORIZED REPRESENTATIVE SHALL CREATE A WARRANTY. SHOULD THE APPLE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE ENTIRE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES OR LIMITATIONS ON APPLICABLE STATUTORY RIGHTS OF A CONSUMER, SO THE ABOVE EXCLUSION AND LIMITATIONS MAY NOT APPLY TO YOU. QuickTime Player automatically produces search results that reference sites and information located worldwide throughout the Internet. Because Apple has no control over such sites and information, Apple makes no guarantees as to such sites and information, including: (i) the accuracy, currency, content, or quality of any such sites and information, or (ii) whether an Apple search completed through the QuickTime Player may locate unintended or objectionable content. Because some of the content on the Internet consists of material that is adult-oriented or otherwise objectionable to some people or viewers under the age of 18, the results of any search or entering of a particular URL using the QuickTime Player may automatically and unintentionally generate links or references to objectionable material. By using the QuickTime Player, you acknowledge that Apple makes no representations or warranties with regard to the appropriateness of the content viewed through the QuickTime Player, whether on a pre-installed channel button or as a result of your search. Apple does not guarantee the sequence, accuracy, completeness or timeliness of the content played through the QuickTime Player. Apple, its officers, affiliates and subsidiaries shall not, directly or indirectly, be liable, in any way, to you or any other person for the content you receive using the QuickTime Player or for any inaccuracies, errors in or omissions from the content.\n\n7. Limitation of Liability.\nTO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT SHALL APPLE BE LIABLE FOR PERSONAL INJURY, OR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS, LOSS OF DATA, BUSINESS INTERRUPTION OR ANY OTHER COMMERCIAL DAMAGES OR LOSSES, ARISING OUT OF OR RELATED TO YOUR USE OR INABILITY TO USE THE APPLE SOFTWARE, HOWEVER CAUSED, REGARDLESS OF THE THEORY OF LIABILITY (CONTRACT, TORT OR OTHERWISE) AND EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY FOR PERSONAL INJURY, OR OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY TO YOU. In no event shall Apple's total liability to you for all damages (other than as may be required by applicable law in cases involving personal injury) exceed the amount of fifty dollars ($50.00). The foregoing limitations will apply even if the above stated remedy fails of its essential purpose.\n\n8. Export Law Assurances.\nYou may not use or otherwise export or reexport the Apple Software except as authorized by United States law and the laws of the jurisdiction in which the Apple Software was obtained. In particular, but without limitation, the Apple Software may not be exported or re-exported (a) into (or to a national or resident of) any U.S. embargoed countries (currently Cuba, Iran, Iraq, Libya, North Korea, Sudan and Syria) or (b) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Department of Commerce Denied Person's List or Entity List. By using the Apple Software, you represent and warrant that you are not located in, under control of, or a national or resident of any such country or on any such list.\n\n9. Government End Users.\nThe Apple Software and related documentation are \"Commercial Items\", as that term is defined at 48 C.F.R. \u00a72.101, consisting of \"Commercial Computer Software\" and \"Commercial Computer Software Documentation\", as such terms are used in 48 C.F.R. \u00a712.212 or 48 C.F.R. \u00a7227.7202, as applicable. Consistent with 48 C.F.R. \u00a712.212 or 48 C.F.R. \u00a7227.7202-1 through 227.7202-4, as applicable, the Commercial Computer Software and Commercial Computer Software Documentation are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Unpublished-rights reserved under the copyright laws of the United States.\n\n10. Controlling Law and Severability.\nThis License will be governed by and construed in accordance with the laws of the State of California, as applied to agreements entered into and to be performed entirely within California between California residents. This License shall not be governed by the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. If for any reason a court of competent jurisdiction finds any provision, or portion thereof, to be unenforceable, the remainder of this License shall continue in full force and effect.\n\n11. Complete Agreement; Governing Language.\nThis License constitutes the entire agreement between the parties with respect to the use of the Apple Software licensed hereunder and supersedes all prior or contemporaneous understandings regarding such subject matter. No amendment to or modification of this License will be binding unless in writing and signed by Apple. Any translation of this License is done for local requirements and in the event of a dispute between the English and any non-English versions, the English version of this License shall govern.\n\n12. MPEG-2 Notice.\nTo the extent that the Apple Software contains MPEG-2 functionality, the following provision applies: ANY USE OF THIS PRODUCT OTHER THAN CONSUMER PERSONAL USE IN ANY MANNER THAT COMPLIES WITH THE MPEG-2 STANDARD FOR ENCODING VIDEO INFORMATION FOR PACKAGED MEDIA IS EXPRESSLY PROHIBITED WITHOUT A LICENSE UNDER APPLICABLE PATENTS IN THE MPEG-2 PATENT PORTFOLIO, WHICH LICENSE IS AVAILABLE FROM MPEG LA, L.L.C, 250 STEELE STREET, SUITE 300, DENVER, COLORADO 80206.\n\n13. Use of MPEG-4.\nThis product is licensed under the MPEG-4 Systems Patent Portfolio License for encoding in compliance with the MPEG-4 Systems Standard, except that an additional license and payment of royalties are necessary for encoding in connection with (i) data stored or replicated in physical media which is paid for on a title by title basis and/or (ii) data which is paid for on a title by title basis and is transmitted to an end user for permanent storage and/or use. Such additional license may be obtained from MPEG LA, LLC. See http://www.mpegla.com for additional details.\n\nAdditional use licenses and fees are required for use of information encoded in compliance with the MPEG-4 Visual Standard other than the personal and non-commercial use of a consumer (i) in connection with information which has been encoded in compliance with the MPEG-4 Visual Standard by a consumer engaged in a personal and non-commercial activity, and/or (ii) in connection with MPEG-4 encoded video under license from a video provider. Additional information including that relating to promotional,internal and commercial uses and licensing may be obtained from MPEG LA, LLC. See http://www.mpegla.com.\n\nEA0156A", + "json": "quicktime.json", + "yaml": "quicktime.yml", + "html": "quicktime.html", + "license": "quicktime.LICENSE" + }, + { + "license_key": "quin-street", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-quin-street", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Content Licensing\n\nLinking to Our Content\nYou may post direct text hyperlinks to this website. This is not permission to host our articles or other content on your website or elsewhere. You may not use any of our logos or trademarks as hyperlinks. We reserve the right to request the removal of any such hyperlinks.\n\nReprints and ePrints\nOur copyrighted content may be customized to your specifications for limited distribution. For example, traditional hardcopy article reprints, electronic reprints (Eprints), corporate newsletters, wide format posters, or corporate office plaques. Please contact our reprint partners, Wright's Media, for further information. Request reprint information >>\n\nSingle Use Non-Commercial\nYou may use one of our articles for a non-commercial project (for example, a school project) provided that QuinStreet's copyright clause accompanies the article: \n\nReproduced with permission.\nCopyright 1999-2014 QuinStreet, Inc. All rights reserved.\n\nOn Your Website\nPlease contact us if you would like to syndicate our content, incorporate a feed or host on your website.\n\nOther Uses\nPlease contact us if you would like to license or reproduce content from this website in any other way; for example, in a book.\n\nContact Details\n\nQuinStreet, Inc.\nAttn: Copyright Agent\n950 Tower Lane, 6th Floor\nFoster City, CA 94404\n\nTel: (650) 578-7700\nFax: (650) 578-7604\n\nEmail: copyrightagent@quinstreet.com", + "json": "quin-street.json", + "yaml": "quin-street.yml", + "html": "quin-street.html", + "license": "quin-street.LICENSE" + }, + { + "license_key": "quirksmode", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-quirksmode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Quirksmode Copyright Notice\nhttp://www.quirksmode.org/about/copyright.html \n\nCopyright\nI don't believe in copyrights for JavaScript or CSS solutions. This means my site is largely free of boring copyright notices. Largely, not entirely. There are a few exceptions.\n\nYou may\nYou may copy, tweak, rewrite, sell or lease any code example on this site, with one single exception.\nYou may translate any page you like to any language you like, provided\n\u2022\tthe translation will be available online free of charge\n\u2022\tyou prominently display a link to the original at the top of your translation\n\u2022\tyou send me the URL when the translation is ready. I will link to your translation from my original page\nThis copyright notice itself does not have a copyright notice; feel free to copy it if you like it. (Seriously, I get this question from time to time.)\n\nYou may not\nYou may not copy complete pages or this entire site and put them online on a publicly accessible web space. The only public URL of this site is http://www.quirksmode.org \nThe Usable Forms script is copyrighted. It is perhaps the most important script I ever wrote, not for what it does but for the way it does it. Therefore I wish to claim the credits.\nUse it in any way you like as long as you leave my copyright notice intact.", + "json": "quirksmode.json", + "yaml": "quirksmode.yml", + "html": "quirksmode.html", + "license": "quirksmode.LICENSE" + }, + { + "license_key": "qwt-1.0", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Qwt License\nVersion 1.0, January 1, 2003\nThe Qwt library and included programs are provided under the terms\nof the GNU LESSER GENERAL PUBLIC LICENSE (LGPL) with the following\nexceptions:\n\n 1. Widgets that are subclassed from Qwt widgets do not\n constitute a derivative work.\n\n 2. Static linking of applications and widgets to the\n Qwt library does not constitute a derivative work\n and does not require the author to provide source\n code for the application or widget, use the shared\n Qwt libraries, or link their applications or\n widgets against a user-supplied version of Qwt.\n If you link the application or widget to a modified\n version of Qwt, then the changes to Qwt must be \n provided under the terms of the LGPL in sections\n 1, 2, and 4.\n\n 3. You do not have to provide a copy of the Qwt license\n with programs that are linked to the Qwt library, nor\n do you have to identify the Qwt license in your\n program or documentation as required by section 6\n of the LGPL.\n However, programs must still identify their use of Qwt.\n The following example statement can be included in user\n documentation to satisfy this requirement:\n [program/widget] is based in part on the work of\n the Qwt project (http://qwt.sf.net).\n----------------------------------------------------------------------\n GNU LESSER GENERAL PUBLIC LICENSE\n Version 2.1, February 1999\n Copyright (C) 1991, 1999 Free Software Foundation, Inc.\n 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n[This is the first released version of the Lesser GPL. It also counts\n as the successor of the GNU Library Public License, version 2, hence\n the version number 2.1.]\n Preamble\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicenses are intended to guarantee your freedom to share and change\nfree software--to make sure the software is free for all its users.\n This license, the Lesser General Public License, applies to some\nspecially designated software packages--typically libraries--of the\nFree Software Foundation and other authors who decide to use it. You\ncan use it too, but we suggest you first think carefully about whether\nthis license or the ordinary General Public License is the better\nstrategy to use in any particular case, based on the explanations below.\n When we speak of free software, we are referring to freedom of use,\nnot price. Our General Public Licenses are designed to make sure that\nyou have the freedom to distribute copies of free software (and charge\nfor this service if you wish); that you receive source code or can get\nit if you want it; that you can change the software and use pieces of\nit in new free programs; and that you are informed that you can do\nthese things.\n To protect your rights, we need to make restrictions that forbid\ndistributors to deny you these rights or to ask you to surrender these\nrights. These restrictions translate to certain responsibilities for\nyou if you distribute copies of the library or if you modify it.\n For example, if you distribute copies of the library, whether gratis\nor for a fee, you must give the recipients all the rights that we gave\nyou. You must make sure that they, too, receive or can get the source\ncode. If you link other code with the library, you must provide\ncomplete object files to the recipients, so that they can relink them\nwith the library after making changes to the library and recompiling\nit. And you must show them these terms so they know their rights.\n We protect your rights with a two-step method: (1) we copyright the\nlibrary, and (2) we offer you this license, which gives you legal\npermission to copy, distribute and/or modify the library.\n To protect each distributor, we want to make it very clear that\nthere is no warranty for the free library. Also, if the library is\nmodified by someone else and passed on, the recipients should know\nthat what they have is not the original version, so that the original\nauthor's reputation will not be affected by problems that might be\nintroduced by others.\n Finally, software patents pose a constant threat to the existence of\nany free program. We wish to make sure that a company cannot\neffectively restrict the users of a free program by obtaining a\nrestrictive license from a patent holder. Therefore, we insist that\nany patent license obtained for a version of the library must be\nconsistent with the full freedom of use specified in this license.\n Most GNU software, including some libraries, is covered by the\nordinary GNU General Public License. This license, the GNU Lesser\nGeneral Public License, applies to certain designated libraries, and\nis quite different from the ordinary General Public License. We use\nthis license for certain libraries in order to permit linking those\nlibraries into non-free programs.\n When a program is linked with a library, whether statically or using\na shared library, the combination of the two is legally speaking a\ncombined work, a derivative of the original library. The ordinary\nGeneral Public License therefore permits such linking only if the\nentire combination fits its criteria of freedom. The Lesser General\nPublic License permits more lax criteria for linking other code with\nthe library.\n We call this license the \"Lesser\" General Public License because it\ndoes Less to protect the user's freedom than the ordinary General\nPublic License. It also provides other free software developers Less\nof an advantage over competing non-free programs. These disadvantages\nare the reason we use the ordinary General Public License for many\nlibraries. However, the Lesser license provides advantages in certain\nspecial circumstances.\n For example, on rare occasions, there may be a special need to\nencourage the widest possible use of a certain library, so that it becomes\na de-facto standard. To achieve this, non-free programs must be\nallowed to use the library. A more frequent case is that a free\nlibrary does the same job as widely used non-free libraries. In this\ncase, there is little to gain by limiting the free library to free\nsoftware only, so we use the Lesser General Public License.\n In other cases, permission to use a particular library in non-free\nprograms enables a greater number of people to use a large body of\nfree software. For example, permission to use the GNU C Library in\nnon-free programs enables many more people to use the whole GNU\noperating system, as well as its variant, the GNU/Linux operating\nsystem.\n Although the Lesser General Public License is Less protective of the\nusers' freedom, it does ensure that the user of a program that is\nlinked with the Library has the freedom and the wherewithal to run\nthat program using a modified version of the Library.\n The precise terms and conditions for copying, distribution and\nmodification follow. Pay close attention to the difference between a\n\"work based on the library\" and a \"work that uses the library\". The\nformer contains code derived from the library, whereas the latter must\nbe combined with the library in order to run.\n GNU LESSER GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n 0. This License Agreement applies to any software library or other\nprogram which contains a notice placed by the copyright holder or\nother authorized party saying it may be distributed under the terms of\nthis Lesser General Public License (also called \"this License\").\nEach licensee is addressed as \"you\".\n A \"library\" means a collection of software functions and/or data\nprepared so as to be conveniently linked with application programs\n(which use some of those functions and data) to form executables.\n The \"Library\", below, refers to any such software library or work\nwhich has been distributed under these terms. A \"work based on the\nLibrary\" means either the Library or any derivative work under\ncopyright law: that is to say, a work containing the Library or a\nportion of it, either verbatim or with modifications and/or translated\nstraightforwardly into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".)\n \"Source code\" for a work means the preferred form of the work for\nmaking modifications to it. For a library, complete source code means\nall the source code for all modules it contains, plus any associated\ninterface definition files, plus the scripts used to control compilation\nand installation of the library.\n Activities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning a program using the Library is not restricted, and output from\nsuch a program is covered only if its contents constitute a work based\non the Library (independent of the use of the Library in a tool for\nwriting it). Whether that is true depends on what the Library does\nand what the program that uses the Library does.\n 1. You may copy and distribute verbatim copies of the Library's\ncomplete source code as you receive it, in any medium, provided that\nyou conspicuously and appropriately publish on each copy an\nappropriate copyright notice and disclaimer of warranty; keep intact\nall the notices that refer to this License and to the absence of any\nwarranty; and distribute a copy of this License along with the\nLibrary.\n You may charge a fee for the physical act of transferring a copy,\nand you may at your option offer warranty protection in exchange for a\nfee.\n 2. You may modify your copy or copies of the Library or any portion\nof it, thus forming a work based on the Library, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n a) The modified work must itself be a software library.\n b) You must cause the files modified to carry prominent notices\n stating that you changed the files and the date of any change.\n c) You must cause the whole of the work to be licensed at no\n charge to all third parties under the terms of this License.\n d) If a facility in the modified Library refers to a function or a\n table of data to be supplied by an application program that uses\n the facility, other than as an argument passed when the facility\n is invoked, then you must make a good faith effort to ensure that,\n in the event an application does not supply such function or\n table, the facility still operates, and performs whatever part of\n its purpose remains meaningful.\n (For example, a function in a library to compute square roots has\n a purpose that is entirely well-defined independent of the\n application. Therefore, Subsection 2d requires that any\n application-supplied function or table used by this function must\n be optional: if the application does not supply it, the square\n root function must still compute square roots.)\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Library,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Library, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Library.\nIn addition, mere aggregation of another work not based on the Library\nwith the Library (or with a work based on the Library) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n 3. You may opt to apply the terms of the ordinary GNU General Public\nLicense instead of this License to a given copy of the Library. To do\nthis, you must alter all the notices that refer to this License, so\nthat they refer to the ordinary GNU General Public License, version 2,\ninstead of to this License. (If a newer version than version 2 of the\nordinary GNU General Public License has appeared, then you can specify\nthat version instead if you wish.) Do not make any other change in\nthese notices.\n Once this change is made in a given copy, it is irreversible for\nthat copy, so the ordinary GNU General Public License applies to all\nsubsequent copies and derivative works made from that copy.\n This option is useful when you wish to copy part of the code of\nthe Library into a program that is not a library.\n 4. You may copy and distribute the Library (or a portion or\nderivative of it, under Section 2) in object code or executable form\nunder the terms of Sections 1 and 2 above provided that you accompany\nit with the complete corresponding machine-readable source code, which\nmust be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily used for software interchange.\n If distribution of object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the\nsource code from the same place satisfies the requirement to\ndistribute the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n 5. A program that contains no derivative of any portion of the\nLibrary, but is designed to work with the Library by being compiled or\nlinked with it, is called a \"work that uses the Library\". Such a\nwork, in isolation, is not a derivative work of the Library, and\ntherefore falls outside the scope of this License.\n However, linking a \"work that uses the Library\" with the Library\ncreates an executable that is a derivative of the Library (because it\ncontains portions of the Library), rather than a \"work that uses the\nlibrary\". The executable is therefore covered by this License.\nSection 6 states terms for distribution of such executables.\n When a \"work that uses the Library\" uses material from a header file\nthat is part of the Library, the object code for the work may be a\nderivative work of the Library even though the source code is not.\nWhether this is true is especially significant if the work can be\nlinked without the Library, or if the work is itself a library. The\nthreshold for this to be true is not precisely defined by law.\n If such an object file uses only numerical parameters, data\nstructure layouts and accessors, and small macros and small inline\nfunctions (ten lines or less in length), then the use of the object\nfile is unrestricted, regardless of whether it is legally a derivative\nwork. (Executables containing this object code plus portions of the\nLibrary will still fall under Section 6.)\n Otherwise, if the work is a derivative of the Library, you may\ndistribute the object code for the work under the terms of Section 6.\nAny executables containing that work also fall under Section 6,\nwhether or not they are linked directly with the Library itself.\n 6. As an exception to the Sections above, you may also combine or\nlink a \"work that uses the Library\" with the Library to produce a\nwork containing portions of the Library, and distribute that work\nunder terms of your choice, provided that the terms permit\nmodification of the work for the customer's own use and reverse\nengineering for debugging such modifications.\n You must give prominent notice with each copy of the work that the\nLibrary is used in it and that the Library and its use are covered by\nthis License. You must supply a copy of this License. If the work\nduring execution displays copyright notices, you must include the\ncopyright notice for the Library among them, as well as a reference\ndirecting the user to the copy of this License. Also, you must do one\nof these things:\n a) Accompany the work with the complete corresponding\n machine-readable source code for the Library including whatever\n changes were used in the work (which must be distributed under\n Sections 1 and 2 above); and, if the work is an executable linked\n with the Library, with the complete machine-readable \"work that\n uses the Library\", as object code and/or source code, so that the\n user can modify the Library and then relink to produce a modified\n executable containing the modified Library. (It is understood\n that the user who changes the contents of definitions files in the\n Library will not necessarily be able to recompile the application\n to use the modified definitions.)\n b) Use a suitable shared library mechanism for linking with the\n Library. A suitable mechanism is one that (1) uses at run time a\n copy of the library already present on the user's computer system,\n rather than copying library functions into the executable, and (2)\n will operate properly with a modified version of the library, if\n the user installs one, as long as the modified version is\n interface-compatible with the version that the work was made with.\n c) Accompany the work with a written offer, valid for at\n least three years, to give the same user the materials\n specified in Subsection 6a, above, for a charge no more\n than the cost of performing this distribution.\n d) If distribution of the work is made by offering access to copy\n from a designated place, offer equivalent access to copy the above\n specified materials from the same place.\n e) Verify that the user has already received a copy of these\n materials or that you have already sent this user a copy.\n For an executable, the required form of the \"work that uses the\nLibrary\" must include any data and utility programs needed for\nreproducing the executable from it. However, as a special exception,\nthe materials to be distributed need not include anything that is\nnormally distributed (in either source or binary form) with the major\ncomponents (compiler, kernel, and so on) of the operating system on\nwhich the executable runs, unless that component itself accompanies\nthe executable.\n It may happen that this requirement contradicts the license\nrestrictions of other proprietary libraries that do not normally\naccompany the operating system. Such a contradiction means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n 7. You may place library facilities that are a work based on the\nLibrary side-by-side in a single library together with other library\nfacilities not covered by this License, and distribute such a combined\nlibrary, provided that the separate distribution of the work based on\nthe Library and of the other library facilities is otherwise\npermitted, and provided that you do these two things:\n a) Accompany the combined library with a copy of the same work\n based on the Library, uncombined with any other library\n facilities. This must be distributed under the terms of the\n Sections above.\n b) Give prominent notice with the combined library of the fact\n that part of it is a work based on the Library, and explaining\n where to find the accompanying uncombined form of the same work.\n 8. You may not copy, modify, sublicense, link with, or distribute\nthe Library except as expressly provided under this License. Any\nattempt otherwise to copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically terminate your\nrights under this License. However, parties who have received copies,\nor rights, from you under this License will not have their licenses\nterminated so long as such parties remain in full compliance.\n 9. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Library or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Library (or any work based on the\nLibrary), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Library or works based on it.\n 10. Each time you redistribute the Library (or any work based on the\nLibrary), the recipient automatically receives a license from the\noriginal licensor to copy, distribute, link with or modify the Library\nsubject to these terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties with\nthis License.\n 11. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Library at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Library by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Library.\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply,\nand the section as a whole is intended to apply in other circumstances.\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n 12. If the distribution and/or use of the Library is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Library under this License may add\nan explicit geographical distribution limitation excluding those countries,\nso that distribution is permitted only in or among countries not thus\nexcluded. In such case, this License incorporates the limitation as if\nwritten in the body of this License.\n 13. The Free Software Foundation may publish revised and/or new\nversions of the Lesser General Public License from time to time.\nSuch new versions will be similar in spirit to the present version,\nbut may differ in detail to address new problems or concerns.\nEach version is given a distinguishing version number. If the Library\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Library does not specify a\nlicense version number, you may choose any version ever published by\nthe Free Software Foundation.\n 14. If you wish to incorporate parts of the Library into other free\nprograms whose distribution conditions are incompatible with these,\nwrite to the author to ask for permission. For software which is\ncopyrighted by the Free Software Foundation, write to the Free\nSoftware Foundation; we sometimes make exceptions for this. Our\ndecision will be guided by the two goals of preserving the free status\nof all derivatives of our free software and of promoting the sharing\nand reuse of software generally.\n NO WARRANTY\n 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n END OF TERMS AND CONDITIONS\n How to Apply These Terms to Your New Libraries\n If you develop a new library, and you want it to be of the greatest\npossible use to the public, we recommend making it free software that\neveryone can redistribute and change. You can do so by permitting\nredistribution under these terms (or, alternatively, under the terms of the\nordinary General Public License).\n To apply these terms, attach the following notices to the library. It is\nsafest to attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n \n Copyright (C) \n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\nAlso add information on how to contact you by electronic and paper mail.\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the library, if\nnecessary. Here is a sample; alter the names:\n Yoyodyne, Inc., hereby disclaims all copyright interest in the\n library `Frob' (a library for tweaking knobs) written by James Random Hacker.\n , 1 April 1990\n Ty Coon, President of Vice\nThat's all there is to it!", + "json": "qwt-1.0.json", + "yaml": "qwt-1.0.yml", + "html": "qwt-1.0.html", + "license": "qwt-1.0.LICENSE" + }, + { + "license_key": "qwt-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "Qwt-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Qwt License\nVersion 1.0, January 1, 2003\nThe Qwt library and included programs are provided under the terms\nof the GNU LESSER GENERAL PUBLIC LICENSE (LGPL) with the following\nexceptions:\n\n 1. Widgets that are subclassed from Qwt widgets do not\n constitute a derivative work.\n\n 2. Static linking of applications and widgets to the\n Qwt library does not constitute a derivative work\n and does not require the author to provide source\n code for the application or widget, use the shared\n Qwt libraries, or link their applications or\n widgets against a user-supplied version of Qwt.\n If you link the application or widget to a modified\n version of Qwt, then the changes to Qwt must be \n provided under the terms of the LGPL in sections\n 1, 2, and 4.\n\n 3. You do not have to provide a copy of the Qwt license\n with programs that are linked to the Qwt library, nor\n do you have to identify the Qwt license in your\n program or documentation as required by section 6\n of the LGPL.\n However, programs must still identify their use of Qwt.\n The following example statement can be included in user\n documentation to satisfy this requirement:\n [program/widget] is based in part on the work of\n the Qwt project (http://qwt.sf.net).", + "json": "qwt-exception-1.0.json", + "yaml": "qwt-exception-1.0.yml", + "html": "qwt-exception-1.0.html", + "license": "qwt-exception-1.0.LICENSE" + }, + { + "license_key": "rackspace", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-rackspace", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Subject to the terms of this notice, Rackspace, Inc. grants you a\nnonexclusive, nontransferable license, without the right to\nsublicense, to (a) install and execute one copy of these files on any\nnumber of workstations owned or controlled by you and (b) distribute\nverbatim copies eof these files to third parties. As a condition to the\nforegoing grant, you must provide this notice along with each copy you\ndistribute and you must not remove, alter, or obscure this notice. All\nother use, reproduction, modification, distribution, or other\nexploitation of these files is strictly prohibited, except as may be set\nforth in a separate written license agreement between you and ERackspace,\nInc. The terms of any such license agreement will control over this\nnotice. The license stated above will be automatically terminated and\nrevoked if you exceed its scope or violate any of the terms of this\nnotice.\n\nThis License does not grant permission to use the trade names,\ntrademarks, service marks, or product names of Rackspace, Inc.,\nAirbrake, Exceptional, Airbrake.io, Exceptional.io except as\nrequired for reasonable and customary use in describing the origin\nof this file and reproducing the content of this notice. You may\nnot mark or brand this file with any trade name, trademarks,\nservicemarks, or product names other than the original brand\n(if any)provided by Rackspace, Inc.\nUnless otherwise expressly agreed by Rackspace, Inc., in a\nseparate written license agreement, these files are provided AS IS,\nWITHOUT WARRANTY OF ANY KIND, including without any implied warranties\nof MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, or NON-INFRINGEMENT.\nAs a condition to your use of these files, you are solely responsible for\nsuch use. Rackspace, Inc. will have no liability to you for direct,\nindirect, consequential, incidental, special, or punitive damages or\nfor lost profits or data.", + "json": "rackspace.json", + "yaml": "rackspace.yml", + "html": "rackspace.html", + "license": "rackspace.LICENSE" + }, + { + "license_key": "radvd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-radvd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The author(s) grant permission for redistribution and use in source and\nbinary forms, with or without modification, of the software and documentation\nprovided that the following conditions are met:\n\n0. If you receive a version of the software that is specifically labelled\n as not being for redistribution (check the version message and/or README),\n you are not permitted to redistribute that version of the software in any\n way or form.\n1. All terms of all other applicable copyrights and licenses must be\n followed.\n2. Redistributions of source code must retain the authors' copyright\n notice(s), this list of conditions, and the following disclaimer.\n3. Redistributions in binary form must reproduce the authors' copyright\n notice(s), this list of conditions, and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n4. All advertising materials mentioning features or use of this software\n must display the following acknowledgement with the name(s) of the\n authors as specified in the copyright notice(s) substituted where\n indicated:\n\n This product includes software developed by the authors which are \n\tmentioned at the start of the source files and other contributors.\n\n5. Neither the name(s) of the author(s) nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY ITS AUTHORS AND CONTRIBUTORS ``AS IS'' AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "radvd.json", + "yaml": "radvd.yml", + "html": "radvd.html", + "license": "radvd.LICENSE" + }, + { + "license_key": "ralf-corsepius", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Permission to use, copy, modify, and distribute this software \nis freely granted, provided that this notice is preserved.", + "json": "ralf-corsepius.json", + "yaml": "ralf-corsepius.yml", + "html": "ralf-corsepius.html", + "license": "ralf-corsepius.LICENSE" + }, + { + "license_key": "ralink-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ralink-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution.\nRedistribution and use in binary form, without modification, are\npermitted provided that the following conditions are met:\n\nRedistributions must reproduce the above copyright notice and the\nfollowing disclaimer in the documentation and/or other materials\nprovided with the distribution.\n\nNeither the name of Ralink Technology Corporation\nnor the names of its suppliers may be used to endorse or promote\nproducts derived from this software without specific prior written\npermission.\n\nNo reverse engineering, decompilation, or disassembly of this\nsoftware is permitted.\n\nLimited patent license. Ralink Technology Corporation grants a world-wide,\nroyalty-free, non-exclusive license under patents it now or hereafter\nowns or controls to make, have made, use, import, offer to sell and\nsell (\"Utilize\") this software, but solely to the extent that any\nsuch patent is necessary to Utilize the software alone, or in\ncombination with an operating system licensed under an approved Open\nSource license as listed by the Open Source Initiative at\nhttp://opensource.org/licenses. The patent license shall not apply to\nany other combinations which include this software. No hardware per\nse is licensed hereunder.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND \nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, \nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE \nCOPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, \nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS \nOF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND \nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR \nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE \nUSE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH \nDAMAGE.", + "json": "ralink-firmware.json", + "yaml": "ralink-firmware.yml", + "html": "ralink-firmware.html", + "license": "ralink-firmware.LICENSE" + }, + { + "license_key": "rar-winrar-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-rar-winrar-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "RAR and WinRAR END USER LICENSE AGREEMENT (EULA)\n\nThe following agreement regarding RAR (and its Windows version - WinRAR) archiver - referred to as \"software\" - is made between win.rar GmbH - referred to as \"licensor\" - and anyone who is installing, accessing or in any other way using the software - referred to as \"user\".\n\nThe author and holder of the copyright of the software is Alexander L. Roshal. The licensor and as such issuer of the license and bearer of the worldwide exclusive usage rights including the rights to reproduce, distribute and make the software available to the public in any form is win.rar GmbH, Marienstrasse 12, 10117 Berlin, Germany. \n \nThe software is distributed as try before you buy. This means that anyone may use the software during a test period of a maximum of 40 days at no charge. Following this test period, the user must purchase a license to continue using the software. \n \nThe software's trial version may be freely distributed, with exceptions noted below, provided the distribution package is not modified in any way. \n\nNobody may distribute separate parts of the package, with the exception of the UnRAR components, without written permission.\n \nThe software's unlicensed trial version may not be distributed inside of any other software package without written permission. The software must remain in the original unmodified installation file for download without any barrier and conditions to the user such as collecting fees for the download or making the download conditional on the user giving his contact data.\n \nThe unmodified installation file of WinRAR must be provided pure and unpaired. Any bundling is interdicted. In particular the use of any install or download software which is providing any kind of download bundles is prohibited unless granted by win.rar GmbH in written form.\n \nHacks/cracks, keys or key generators may not be included, pointed to or referred to by the distributor of the trial version.\n \nIn case of violation of the precedent conditions the allowance lapses immediately and automatically. \n \nThe trial version of the software can display a registration reminder dialog. Depending on the software version and configuration such dialog can contain either a predefined text and links loaded locally or a web page loaded from the internet. Such web page can contain licensing instructions or other materials according to the licensor's choice, including advertisement. When opening a web page, the software transfers only those parameters which are technically required by HTTP protocol to successfully open a web page in a browser. \n \nThe software is distributed \"as is\". No warranty of any kind is expressed or implied. You use at your own risk. Neither the author, the licensor nor the agents of the licensor will be liable for data loss, damages, loss of profits or any other kind of loss while using or misusing this software. \n \nThere are 2 basic types of licenses issued for the software. These are: \n\nA single computer usage license. The user purchases one license to use the software on one computer.\n\nHome users may use their single computer usage license on all computers and mobile devices (USB drive, external hard drive, etc.) which are property of the license owner.\n\nBusiness users require one license per computer or mobile device on which the software is installed. \n \nA multiple usage license. The user purchases a number of usage licenses for use, by the purchaser or the purchaser's employees on the same number of computers.\n\nIn a network (server/client) environment the user must purchase a license copy for each separate client (workstation) on which the software is installed, used or accessed. A separate license copy for each client (workstation) is needed regardless of whether the clients (workstations) will use the software simultaneously or at different times. If for example you wish to have 9 different clients (workstations) in your network with access to RAR, you must purchase 9 license copies. \n \nA user who purchased a license, is granted a non-exclusive right to use the software on as many computers as defined by the licensing terms above according to the number of licenses purchased, for any legal purpose. \n \nThere are no additional license fees, apart from the cost of the license, associated with the creation and distribution of RAR archives, volumes, self-extracting archives or self-extracting volumes. Owners of a license may use their copies of the software to produce archives and self-extracting archives and to distribute those archives free of any additional royalties. \n \nThe licensed software may not be rented or leased but may be permanently transferred, in its entirety, if the recipient agrees to the terms of this license. \n \nTo buy a license, please read the file order.htm provided with the software for details. \n \nYou may not use, copy, emulate, clone, rent, lease, sell, modify, decompile, disassemble, otherwise reverse engineer, or transfer the licensed software, or any subset of the licensed software, except as provided for in this agreement. Any such unauthorized use shall result in immediate and automatic termination of this license and may result in criminal and/or civil prosecution. \n\nNeither RAR binary code, WinRAR binary code, UnRAR source or UnRAR binary code may be used or reverse engineered to re-create the RAR compression algorithm, which is proprietary, without written permission. \n\nThe software may be using components developed and/or copyrighted by third parties. Please read \"Acknowledgments\" help file topic for WinRAR or acknow.txt text file for other RAR versions for details. \n \nThis License Agreement is construed solely and exclusively under German law. If you are a merchant, the courts at the registered office of win.rar GmbH in Berlin/Germany shall have exclusive jurisdiction for any and all disputes arising in connection with this License Agreement or its validity. \n \nInstalling and using the software signifies acceptance of these terms and conditions of the license. If you do not agree with the terms of this license, you must remove all software files from your storage devices and cease to use the software.", + "json": "rar-winrar-eula.json", + "yaml": "rar-winrar-eula.yml", + "html": "rar-winrar-eula.html", + "license": "rar-winrar-eula.LICENSE" + }, + { + "license_key": "rcsl-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-rcsl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "REALNETWORKS COMMUNITY SOURCE LICENSE\n RESEARCH AND DEVELOPMENT USE\n(RCSL R&D)\nVersion 2.0 (Rev. Date: February 8, 2005)\n\nRECITALS\n\nOriginal Contributor has developed Specifications, Source Code implementations and Executables of the Helix DNA Code, and an associated TCK; and\n\nOriginal Contributor desires to license the Helix DNA Code to a large community to facilitate research, innovation and product development while maintaining compatibility of such products with the Helix DNA Code as delivered by Original Contributor;\n\nTherefore, Original Contributor makes available the Helix DNA Code, the Specifications, and the TCK available under for Research and Development Use only under the following terms:\n\nLICENSE\n\n1. Introduction.\n\nThe RealNetworks Community Source License Research and Development Use ( RCSL R&D or License) is a license to use the Source Code of certain portions of the Helix DNA Code, Specifications, and the TCK for research and development use only. You accept the terms of this License by downloading or using the Helix DNA Code, the Specifications, or the TCK.\n\nThis License does not include a license to access or modify the Source Code of the Real Format Code. If you desire the right to receive access to the Source Code of the Real Format Code for the purposes of porting and optimization, You and Original Contributor may elect to execute a Real Format Source Code Porting Agreement.\n\nThis License does not include a license to make Commercial Use of the Helix DNA Code or Real Format Code. If You desire a license for Commercial Use of the Helix DNA Code or Real Format Code, You and Original Contributor may desire to execute the RealNetworks Community Source License - Commercial Use ( RCSL Commercial ) for the version of the Helix DNA Code and/or Real Format Code You would like to make Commercial Use of. Once executed by You and Original Contributor, the RCSL Commercial would supersede the terms of this License.\n\nCapitalized terms used in this License are defined in the Glossary attached to the end of this License.\n\n2. License Grants.\n\n2.1 Original Contributor Grant to use Covered Code, Specifications, and TCK.\n\nSubject to Your compliance with the terms of this License, Original Contributor grants to You a worldwide, royalty-free, non-exclusive license, to the extent of Original Contributor's Intellectual Property Rights covering the Covered Code, Specifications, and TCK to do the following:\n\n(a) Research Use License:\n\n(i) use, reproduce and modify the Covered Code and Specifications to create Modifications and Reformatted Specifications for Research Use by You;\n\n(ii) publish and display Covered Code and Specifications with, or as part of Modifications, as permitted under Section 3.1(b) below;\n\n(iii) reproduce and distribute copies of Covered Code to Licensees and students for Research Use by You;\n\n(iv) compile, reproduce and distribute Covered Code in Executable form, and Reformatted Specifications to anyone for Research Use by You; and\n\n(v) use the TCK to develop and test Covered Code.\n\n(b) Other than the licenses expressly granted in this License, Original Contributor retains all right, title, and interest in Covered Code, Specifications and TCK.\n\n(c) TCK Use Restrictions.\n\nYou may not create derivative works of the TCK or use the TCK to test any implementation of the Specification except for the purpose of creating Compliant Covered Code. You may not publish Your test results or make claims of comparative compatibility with respect to other implementations of the Specification. You may not develop Your own tests that are intended to validate conformation with the Specification.\n\n2.2 Your Grants.\n\n(a) To Other Licensees. You hereby grant to each Licensee a license to Your Error Corrections and Shared Modifications, of the same scope and extent as Original Contributor's licenses under Section 2.1 (a) above relative to Research Use.\n\n(b) To Original Contributor. You hereby grant to Original Contributor a worldwide, royalty-free, non-exclusive, perpetual and irrevocable license, to the extent of Your Intellectual Property Rights covering Your Error Corrections, Shared Modifications and Reformatted Specifications, to use, reproduce, modify, display and distribute Your Error Corrections, Shared Modifications and Reformatted Specifications, in any form, including the right to sublicense such rights through multiple tiers of distribution.\n\n(c) Other than the licenses expressly granted in Sections 2.2(a) and (b) above, and the restrictions set forth in Section 3.1 below, You retain all right, title, and interest in Your Error Corrections, Shared Modifications and Reformatted Specifications.\n\n2.3 Contributor Modifications.\n\nYou may use, reproduce, modify, display and distribute Contributor Error Corrections, Shared Modifications and Reformatted Specifications, obtained by You under this License, to the same scope and extent as with Original Code, Upgraded Code and Specifications.\n\n2.4 Subcontracting.\n\nYou may deliver the Source Code of Covered Code to other Licensees for the sole purpose of furnishing development services to You in connection with Your rights granted in this License, provided that You do not enter a separate agreement with such Licensee that contains provisions inconsistent with the ownership and licensing requirements set forth in this License.\n\n3. Requirements and Responsibilities.\n\n3.1 Research Use License.\n\nAs a condition of exercising the rights granted under Section 2.1(a) above, You must comply with the following:\n\n(a) Your Contributions. All Error Corrections and Shared Modifications which You create are automatically subject to the licenses granted under Section 2.2 above. You are encouraged to license all of Your other Modifications under Section 2.2 as Shared Modifications, but are not required to do so. You must notify Original Contributor of any errors in the Specification.\n\n(b) Source Code Availability. You must provide all Your Error Corrections to Original Contributor as soon as reasonably practicable and, in any event, no later than when You share such Error Corrections with any other Licensee. Original Contributor may, at its discretion, post Source Code for Your Error Corrections and Shared Modifications at www.helixcommunity.org.\n\n(c) Notices. All Error Corrections and Shared Modifications You create or contribute to must include a file documenting the additions and changes You made and the date of such additions and changes. You must also include the notice set forth in Attachment A-1 in the file header. If it is not possible to put the notice in a particular Source Code file due to its structure, then You must include the notice in a location (such as a relevant directory file), where a recipient would be most likely to look for such a notice.\n\n(d) Redistribution.\n\n(i) Source. Covered Code may be distributed in Source Code form only to another Licensee (except for students as provided below). You may not offer or impose any terms on any Covered Code that alter the rights, requirements, or responsibilities of such Licensee. You may distribute Covered Code to students for use in connection with their course work and research projects undertaken at accredited educational institutions. Such students need not be Licensees, but must be given a copy of the notice set forth in Attachment A-3 and such notice must also be included in a file header or prominent location in the Source Code made available to such students.\n\n(ii) Executable. You may distribute Executable version(s) of Covered Code to Licensees and other third parties only for the purpose of evaluation and comment in connection with Research Use by You and under a license of Your choice, but which limits use of such Executable version(s) of Covered Code only to that purpose.\n\n(iii) Modified Class, Interface and Package Naming. In connection with Research Use by You only, You may use Original Contributor's class, Interface and package names only to accurately reference or invoke the Source Code files You modify. Original Contributor grants to You a limited license to the extent necessary for such purposes.\n\n(e) Extensions.\n\n(i) You may not include any Source Code of Community Code in any Extensions. You may include the compiled Header Files of Community Code in an Extension provided that Your use of the Covered Code, including Header Files, complies with the TCK and all other terms of this License.\n\n(ii) Open. You must refrain from enforcing any Intellectual Property Rights You may have covering any interface(s) of Your Extension, which would prevent the implementation of such interface(s) by Original Contributor or any Licensee. This obligation does not prevent You from enforcing any Intellectual Property Right You have that would otherwise be infringed by an implementation of Your Extension.\n\n(iii) Interface Modifications and Naming. You may not modify or add to the GUID space \"xxxxxxxx-0901-11d1-8B06-00A024406D59\" or any other GUID space designated by Original Contributor. You may not modify any Interface prefix provided with the Covered Code or any other prefix designated by Original Contributor.\n\n(f) Any Specifications provided to You by Original Contributor are confidential and proprietary information of Original Contributor. You must maintain the confidentiality of the Specifications and may not disclose them to any third party without Original Contributor s prior written consent. You may only use the Specifications under the terms of this License and only for the purpose of implementing the terms of this License with respect to Community Code. You may not use, copy or distribute any such Specifications except as provided in writing by Original Contributor.\n\n3.2. No Commercial Use.\n\nYou may not make Commercial Use of any Covered Code unless You and Original Contributor have executed a copy of the RCSL - Commercial available at www.helixcommunity.org.\n\n4. Versions of the License.\n\n4.1 License Versions.\n\nOriginal Contributor may publish revised versions of the RCSL - R&D from time to time. Each version will be given a distinguishing version number. No one other than Original Contributor has the right to promulgate RCSL R&D versions.\n\n4.2 Effect of New License Versions.\n\n(a) Once a particular version of Covered Code has been provided under a version of the RCSL R&D, You may always continue to use such Covered Code under the terms of that version of the RCSL R&D. You may also choose to use such Covered Code under the terms of any subsequent version of the RCSL R&D, but not under a prior version of the RCSL R&D. (For example, if a version of Covered Code has been provided under RCSL R&D 2.1, You may not use such Covered Code under RCSL R&D 2.0.)\n\n(b) Version 2.0 of this RCSL R&D (and all subsequent versions) supercedes versions 1.0, 1.1, and 1.2 of RCSL plus Attachments A-C.\n\n4.3 Multiple-Licensed Code.\n\nOriginal Contributor may designate portions of the Covered Code as Multiple-Licensed. Multiple-Licensed means that the Original Contributor permits You to utilize those designated portions of the Covered Code under Your choice of this License or the alternative license(s), if any, specified by the Original Contributor at www.helixcommunity.org or in Header Files for the applicable Covered Code.\n\n5. Disclaimer of Warranty.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE \"AS IS,\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. YOU BEAR THE ENTIRE RISK IN CONNECTION WITH YOUR USE AND DISTRIBUTION OF COVERED CODE UNDER THIS LICENSE. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT SUBJECT TO THIS DISCLAIMER.\n\n6. Termination.\n\n6.1 By You.\n\nYou may terminate this License at anytime by providing written notice to Original Contributor.\n\n6.2 By Original Contributor.\n\nThis License and the rights granted hereunder will terminate:\n\n(i) automatically if You fail to comply with the terms of this License and fail to cure such breach within 30 days of receipt of written notice of the breach;\n\n(ii) immediately in the event of circumstances specified in Sections 7.1 and 8.4; or\n\n(iii) at Original Contributor's discretion upon any action initiated by You (including by cross-claim or counter claim) alleging that use or distribution by Original Contributor or any Licensee, of any Covered Code, the TCK or Specifications infringe a patent owned or controlled by You.\n\n6.3 Effective of Termination.\n\nUpon termination, You must discontinue use of and destroy all copies of Covered Code in Your possession. All sublicenses to the Covered Code which You have properly granted shall survive any termination of this License. Provisions that, by their nature, should remain in effect beyond the termination of this License shall survive including, without limitation, Sections 2.2, 3, 5, 7 and 8.\n\n6.4 No Compensation.\n\nEach party waives and releases the other from any claim to compensation or indemnity for permitted or lawful termination of the business relationship established by this License.\n\n7. Liability.\n\n7.1 Infringement. Should any of the Covered Code, TCK or Specifications (\"Materials\") become the subject of a claim of infringement, Original Contributor may, at its sole option, (i) attempt to procure the rights necessary for You to continue using the Materials, (ii) modify the Materials so that they are no longer infringing, or (iii) terminate Your right to use the Materials, immediately upon written notice.\n\n7.2 LIMITATION OF LIABILITY. TO THE FULL EXTENT ALLOWED BY APPLICABLE LAW, ORIGINAL CONTRIBUTOR'S LIABILITY TO YOU FOR CLAIMS RELATING TO THIS LICENSE, WHETHER FOR BREACH OR IN TORT, SHALL BE LIMITED TO ONE HUNDRED PERCENT (100%) OF THE AMOUNT HAVING THEN ACTUALLY BEEN PAID BY YOU TO ORIGINAL CONTRIBUTOR FOR ALL COPIES LICENSED HEREUNDER OF THE PARTICULAR ITEMS GIVING RISE TO SUCH CLAIM, IF ANY, DURING THE TWELVE MONTHS PRECEDING THE CLAIMED BREACH. IN NO EVENT WILL YOU (RELATIVE TO YOUR SHARED MODIFICATIONS OR ERROR CORRECTIONS) OR ORIGINAL CONTRIBUTOR BE LIABLE FOR ANY INDIRECT, PUNITIVE, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH OR ARISING OUT OF THIS LICENSE (INCLUDING, WITHOUT LIMITATION, LOSS OF PROFITS, USE, DATA, OR OTHER ECONOMIC ADVANTAGE), HOWEVER IT ARISES AND ON ANY THEORY OF LIABILITY, WHETHER IN AN ACTION FOR CONTRACT, STRICT LIABILITY OR TORT (INCLUDING NEGLIGENCE) OR OTHERWISE, WHETHER OR NOT YOU OR ORIGINAL CONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY.\n\n8. Miscellaneous.\n\n8.1 No Trademark License.\n\nYou are granted no right, title or license to, or any interest in, any trademarks of Original Contributor hereunder.\n\n8.2 Integration.\n\nThis License represents the complete agreement concerning the subject matter hereof.\n\n8.3 Assignment.\n\nOriginal Contributor may assign this License, and its rights and obligations hereunder, in its sole discretion. You may assign Your rights and obligations under this the License to a third party upon prior written notice to Original Contributor.\n\n8.4 Severability.\n\nIf any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Notwithstanding the foregoing, if You are prohibited by law from fully and specifically complying with Sections 2.2 or 3, this License will immediately terminate and You must immediately discontinue any use of the Materials.\n\n8.5 Governing Law.\n\nThis License shall be governed by the laws of the United States and the State of Washington, as applied to contracts entered into and to be performed in Washington between Washington residents. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. The state and federal courts located in Seattle, Washington have exclusive jurisdiction over any claim relating to the License, including contract and tort claims.\n\n8.6 Construction.\n\nAny law or regulation, which provides that the language of a contract shall be construed against the drafter, shall not apply to this License.\n\n8.7 U.S. Government End Users.\n\nThe Covered Code is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n\n8.8 Press Announcements.\n\nYou may make press announcements or other public statements regarding this License without the prior written consent of the Original Contributor, if Your statement is limited to announcing the licensing of the Covered Code. All other public announcements regarding this License require the prior written consent of the Original Contributor. Consent requests are welcome at press@helixcommunity.org.\n\n8.9 International Use.\n\na) Export/Import laws. Covered Code is subject to U.S. export control laws and may be subject to export or import regulations in other countries. You must comply strictly with all such laws and regulations and must obtain any necessary licenses to export, re-export, or import as may be permitted under this Agreement.\n\nb) Intellectual Property Protection. Due to limited intellectual property protection and enforcement in certain countries, this License does not permit the redistribution of the Covered Code, TCK and Specifications to any country on the list of restricted countries at www.helixcommunity.org.\n\n8.10 Language.\n\nThis License is in the English language only, which language shall be controlling in all respects, and all versions of this License in any other language shall be for accommodation only and shall not be binding on the parties to this License. All communications and notices made or given pursuant to this License, and all documentation and support to be provided, unless otherwise noted, shall be in the English language.", + "json": "rcsl-2.0.json", + "yaml": "rcsl-2.0.yml", + "html": "rcsl-2.0.html", + "license": "rcsl-2.0.LICENSE" + }, + { + "license_key": "rcsl-3.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-rcsl-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "REALNETWORKS COMMUNITY SOURCE LICENSE\nRESEARCH AND DEVELOPMENT USE\n(RCSL R&D)\nVersion 3.0 (Rev. Date: May 29, 2007)\n \nRECITALS\n \nRealNetworks, Inc. (\"RN\") has developed Specifications, Source Code implementations and Executables of the Helix DNA Code, and an associated TCK; and\n \nRN desires to license the Helix DNA Code to a large community to facilitate research, innovation and product development while maintaining compatibility of such products with the Helix DNA Code as delivered by RN;\n \nTherefore, RN makes available the Helix DNA Code, the Specifications, and the TCK available for Research and Development Use only under the following terms: \n \nLICENSE\n \n1. Introduction. \n \nThe RealNetworks Community Source License \u2013 Research and Development Use (\"RCSL R&D\" or \"License\") is a license to use the Source Code of certain portions of the Helix DNA Code, Specifications, and the TCK for research and development use only. You (\"Licensee,\" as more specifically defined below) accept the terms of this License by downloading or using the Helix DNA Code, the Specifications, or the TCK, unless Licensee and RN have signed a license agreement that expressly supersedes this RCSL R&D. \n \nThis License does not include a license to access or modify the Source Code of the Real Format Client Code. If Licensee desires the right to receive access to the Source Code of the Real Format Client Code for the purposes of porting and optimization, Licensee and RN may elect to execute a Real Format Source Code Porting and Optimization Agreement.\n \nThis License does not include a license to make Commercial Use of the Helix DNA Code or Real Format Client Code. If Licensee desires a license for Commercial Use of the Helix DNA Code or Real Format Client Code, Licensee and RN may desire to execute the RealNetworks Community Source License - Commercial Use (\"RCSL Commercial\") for the version of the Helix DNA Code or Real Format Client Code of which Licensee would like to make Commercial Use. Once executed by Licensee and RN, the RCSL Commercial would supersede the terms of this License.\n \nCapitalized terms used in this License are defined in the Glossary attached to the end of this License.\n \n 2. License Grants.\n \n 2.1 RN Grant to use Covered Code, Specifications, and TCK. \n \nSubject to Licensee\u2019s compliance with the terms of this License, RN grants to Licensee a worldwide, royalty-free, non-exclusive license, to the extent of RN's Intellectual Property Rights covering the Covered Code, Specifications, and the TCK to do the following:\n \n(a) Research Use License.\n \n(i) use, reproduce and modify the Covered Code and Specifications to create Modifications and Reformatted Specifications for Research Use by Licensee;\n \n(ii) publish and display Covered Code and Specifications with, or as part of Modifications, as permitted under Section 3.1(b) below;\n \n(iii) reproduce and distribute copies of Covered Code to Licensees and students for Research Use by Licensee;\n \n(iv) compile, reproduce and distribute Covered Code in Executable form, and Reformatted Specifications to anyone for Research Use by Licensee; and\n \n(v) use the TCK to develop and test Covered Code.\n \n(b) Reservation of Rights.\n \nOther than the licenses expressly granted in this License, RN retains all right, title, and interest in Covered Code, Specifications and the TCK.\n \n(c) TCK Use Restrictions. \n \n Licensee may not create derivative works of the TCK or use the TCK to test any implementation of the Specifications except for the purpose of creating Compliant Covered Code. Licensee may not publish Licensee\u2019s test results or make claims of comparative compatibility with respect to other implementations of the Specification. \n \n2.2 Licensee\u2019s Grants.\n \n(a) To Other Helix Licensees. Licensee hereby grants to each other Helix Licensee a license to Licensee\u2019s Error Corrections and Shared Modifications, of the same scope and extent as RN's licenses under Section 2.1 (a) above relative to Research Use.\n \n(b) To RN. Licensee hereby grant to RN a worldwide, royalty-free, non-exclusive, perpetual and irrevocable license, to the extent of Licensee\u2019s Intellectual Property Rights covering Licensee\u2019s Error Corrections, Shared Modifications and Reformatted Specifications, to use, reproduce, modify, display and distribute Licensee\u2019s Error Corrections, Shared Modifications and Reformatted Specifications, in any form, including the right to sublicense such rights through multiple tiers of distribution.\n \n(c) Other than the licenses expressly granted in Sections 2.2(a) and (b) above, and the restrictions set forth in Section 3.1 below, Licensee retains all right, title, and interest in Licensee\u2019s Error Corrections, Shared Modifications and Reformatted Specifications.\n \n2.3 Modifications by Helix Licensees. \n \nLicensee may use, reproduce, modify, display and distribute Error Corrections, Shared Modifications and Reformatted Specifications, obtained by Licensee under this License from any other Helix Licensee, to the same scope and extent as with Original Code, Upgraded Code and Specifications.\n \n2.4 Subcontracting. \n \n Licensee may deliver the Source Code of Covered Code to other Helix Licensees for the sole purpose of furnishing development services to Licensee in connection with Licensee\u2019s rights granted in this License, provided that Licensee does not enter a separate agreement with such Licensee that contains provisions inconsistent with the ownership and licensing requirements set forth in this License. \n \n3. Requirements and Responsibilities.\n \n3.1 Research Use License. \n \nAs a condition of exercising the rights granted under Section 2.1(a) above, Licensee must comply with the following:\n \n(a) Licensee\u2019s Contributions. All Error Corrections and Shared Modifications which Licensee creates are automatically subject to the licenses granted under Section 2.2 above. Licensee is encouraged to license all of Licensee\u2019s other Modifications under Section 2.2 as Shared Modifications, but is not required to do so. Licensee must notify RN of any errors in the Specifications.\n \n(b) Source Code Availability. Licensee must provide all of Licensee\u2019s Error Corrections to RN as soon as reasonably practicable and, in any event, no later than when Licensee shares such Error Corrections with any other Helix Licensee. RN may, at its discretion, post Source Code for Licensee\u2019s Error Corrections and Shared Modifications at the Helix Community Website. \n \n(c) Notices. All Error Corrections and Shared Modifications that Licensee creates or contributes to must include a file documenting the additions and changes Licensee made and the date of such additions and changes. Licensee must also include the notice set forth in Attachment A-1 in the file header of any Error Correction or Shared Modification. If it is not possible to put the notice in a particular Source Code file due to its structure, then Licensee must include the notice in a location (such as a relevant directory file), where a recipient would be most likely to look for such a notice.\n \n(d) Redistribution.\n \n(i) Source. Covered Code may be distributed in Source Code form only to another Helix Licensee (except for students as provided below). Licensee may not offer or impose any terms on any Covered Code that alter the rights, requirements, or responsibilities of such Helix Licensee. Licensee may distribute Covered Code to students for use in connection with their course work and research projects undertaken at accredited educational institutions. Such students need not be Helix Licensees, but must be given a copy of the notice set forth in Attachment A-3 and such notice must also be included in a file header or prominent location in the Source Code made available to such students.\n \n(ii) Executable. Licensee may distribute Executable version(s) of Covered Code to Helix Licensees and other third parties only for the purpose of evaluation and comment in connection with Research Use by Licensee and under a license of Licensee\u2019s choice, but that limits use of such Executable version(s) of Covered Code only to that purpose.\n \n(iii) Modified Class, Interface and Package Naming. In connection with Research Use by Licensee only, Licensee may use RN's class, Interface and package names only to accurately reference or invoke the Source Code files that Licensee modifies. RN grants to Licensee a limited license to the extent necessary for such purposes. \n \n(e) Extensions. \n \n(i) Licensee may not include any Source Code of Community Code in any Extensions. Licensee may include the compiled Header Files of Community Code in an Extension provided that Licensee\u2019s use of the Covered Code, including Header Files, complies with the TCK and all other terms of this License. \n \n(ii) Open. Licensee must refrain from enforcing any Intellectual Property Rights Licensee may have covering any Interface(s) of Licensee\u2019s Extension, which would prevent the implementation of such Interface(s) by RN or any Helix Licensee. This obligation does not prevent Licensee from enforcing any Intellectual Property Right Licensee has that would otherwise be infringed by an implementation of Licensee\u2019s Extension.\n \n(iii) Interface Modifications and Naming. Licensee may not modify or add to the GUID space \"xxxxxxxx-0901-11d1-8B06-00A024406D59\" or any other GUID space designated by RN. Licensee may not modify any Interface prefix provided with the Covered Code or any other prefix designated by RN. \n \n(f) Any Specifications provided to Licensee by RN are confidential and proprietary information of RN. Licensee must maintain the confidentiality of the Specifications and may not disclose them to any third party without RN\u2019s prior written consent. Licensee may only use the Specifications under the terms of this License and only for the purpose of implementing the terms of this License with respect to Community Code. Licensee may not use, copy or distribute any such Specifications except as provided in writing by RN.\n \nNo Commercial Use. \n \nLicensee may not make Commercial Use of any Covered Code unless Licensee and RN have executed a copy of the RCSL - Commercial available at the Helix Community Website, or another license agreement expressly granting commercial use rights. \n \n4. Versions of the License.\n \n4.1 License Versions.\n \nRN may publish revised versions of this License from time to time. Each version will be given a distinguishing version number. No one other than RN has the right to promulgate versions of this License.\n \n4.2 Effect of New License Versions.\n \n(a) Once a particular version of Covered Code has been provided under a version of this License, Licensee may always continue to use such Covered Code under the terms of that version of the License. Licensee may also choose to use such Covered Code under the terms of any subsequent version of the License, but not under a prior version of the License. (For example, if a version of Covered Code has been provided under RCSL R&D 2.1, Licensee may not use such Covered Code under RCSL R&D 2.0.) \n \n(b) Version 3.0 of this License (and all subsequent versions) supercedes versions 1.0, 1.1, 1.2, and 2.0 of RCSL R&D plus Attachments A-C.\n \n4.3 Multiple-Licensed Code.\n \nRN may designate portions of the Covered Code as \"Multiple-Licensed.\" \"Multiple-Licensed\" means that the RN permits Licensee to utilize those designated portions of the Covered Code under Licensee\u2019s choice of this License or the alternative license(s), if any, specified by the RN at the Helix Community Website or in Header Files for the applicable Covered Code. \n \n5. Disclaimer of Warranty.\n \nCOVERED CODE IS PROVIDED UNDER THIS LICENSE \"AS IS,\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. YOU BEAR THE ENTIRE RISK IN CONNECTION WITH YOUR USE AND DISTRIBUTION OF COVERED CODE UNDER THIS LICENSE. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT SUBJECT TO THIS DISCLAIMER.\n \n6. Termination.\n \n6.1 By Licensee.\n \nLicensee may terminate this License at anytime by providing written notice to RN.\n \n6.2 By RN.\n \nThis License and the rights granted hereunder will terminate:\n \n(a) automatically if Licensee fails to comply with the terms of this License and fails to cure such breach within 30 days of receipt of written notice of the breach;\n \n(b) immediately in the event of circumstances specified in Sections 7.1 and 8.4; or\n \n(c) at RN's discretion upon any action initiated by Licensee (including by cross-claim or counter claim) alleging that use or distribution by RN or any Licensee, of any Covered Code, the TCK or Specifications infringe a patent owned or controlled by Licensee.\n \n6.3 Effect of Termination. \n \nUpon termination, Licensee must discontinue use of and destroy all copies of Covered Code in Licensee\u2019s possession. All sublicenses to the Covered Code that Licensee has properly granted shall survive any termination of this License. Provisions that, by their nature, should remain in effect beyond the termination of this License shall survive including, without limitation, Sections 2.2, 3, 5, 7, 8, and the Glossary.\n \n6.4 No Compensation.\n \nEach party waives and releases the other from any claim to compensation or indemnity for permitted or lawful termination of the business relationship established by this License.\n \n7. Liability.\n \n7.1 Infringement. \n \nShould any of the Covered Code, TCK or Specifications (\"Materials\") become the subject of a claim of infringement, RN may, at its sole option, (i) attempt to procure the rights necessary for Licensee to continue using the Materials, (ii) modify the Materials so that they are no longer infringing, or (iii) terminate Licensee\u2019s right to use the Materials, immediately upon written notice. \n \n 7.2 LIMITATION OF LIABILITY. \n \n TO THE FULL EXTENT ALLOWED BY APPLICABLE LAW, RN'S LIABILITY TO LICENSEE FOR CLAIMS RELATING TO THIS LICENSE, WHETHER FOR BREACH OR IN TORT, SHALL BE LIMITED TO ONE HUNDRED PERCENT (100%) OF THE AMOUNT HAVING THEN ACTUALLY BEEN PAID BY LICENSEE TO RN FOR ALL COPIES LICENSED HEREUNDER OF THE PARTICULAR ITEMS GIVING RISE TO SUCH CLAIM, IF ANY, DURING THE TWELVE MONTHS PRECEDING THE CLAIMED BREACH. IN NO EVENT WILL EITHER PARTY BE LIABLE FOR ANY INDIRECT, PUNITIVE, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH OR ARISING OUT OF THIS LICENSE (INCLUDING, WITHOUT LIMITATION, LOSS OF PROFITS, USE, DATA, OR OTHER ECONOMIC ADVANTAGE), HOWEVER IT ARISES AND ON ANY THEORY OF LIABILITY, WHETHER IN AN ACTION FOR CONTRACT, STRICT LIABILITY OR TORT (INCLUDING NEGLIGENCE) OR OTHERWISE, WHETHER OR NOT LICENSEE OR RN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY.\n \n8. Miscellaneous.\n \n8.1 No Trademark License. \n \nLicensee is granted no right, title or license to, or any interest in, any trademarks of RN hereunder. \n \n8.2 Integration. \n \nThis License represents the complete agreement concerning the subject matter hereof.\n \n8.3 Assignment. \n \nRN may assign this License, and its rights and obligations hereunder, in its sole discretion. Licensee may assign Licensee\u2019s rights and obligations under this the License to a third party upon prior written notice to RN. \n \n8.4 Severability. \n \nIf any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Notwithstanding the foregoing, if Licensee is prohibited by law from fully and specifically complying with Sections 2.2 or 3, this License will immediately terminate and Licensee must immediately discontinue any use of the Materials.\n \n8.5 Governing Law. \n \nThis License shall be governed by the laws of the United States and the State of Washington, as applied to contracts entered into and to be performed in Washington between Washington residents. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. The state and federal courts located in Seattle, Washington have exclusive jurisdiction over any claim relating to the License, including contract and tort claims.\n \n8.6 Construction. \n \nAny law or regulation, which provides that the language of a contract shall be construed against the drafter, shall not apply to this License.\n \n8.7 U.S. Government End Users. \n \nThe Covered Code is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. \n \n Press Announcements. \n \nLicensee may make press announcements or other public statements regarding this License without the prior written consent of the RN, if Licensee\u2019s statement is limited to announcing the licensing of the Covered Code. All other public announcements regarding this License require the prior written consent of the RN. Consent requests are welcome at press@helixcommunity.org.\n \n8.9 International Use.\n \n(a) Export/Import laws. Covered Code is subject to U.S. export control laws and may be subject to export or import regulations in other countries. Licensee must comply strictly with all such laws and regulations and must obtain any necessary licenses to export, re-export, or import as may be permitted under this Agreement. \n \n(b) Intellectual Property Protection. Due to limited intellectual property protection and enforcement in certain countries, this License does not permit the redistribution of the Covered Code, TCK and Specifications to any country on the list of restricted countries at the Helix Community Website. \n \n8.10 Language. \n \nThis License is in the English language only, which language shall be controlling in all respects, and all versions of this License in any other language shall be for accommodation only and shall not be binding on the parties to this License. All communications and notices made or given pursuant to this License, and all documentation and support to be provided, unless otherwise noted, shall be in the English language.\n \nGLOSSARY\n \n\"Applicable Patent Claims\" means: (a) in the case where RN is the grantor of rights, claims of patents that (i) are now or hereafter acquired, owned by or assigned to RN and (ii) are necessarily infringed by using or making the Original Code or Upgraded Code, including Modifications provided by RN, alone and not in combination with other software or hardware; and (b) in the case where Licensee is the grantor of rights, claims of patents that (i) are now or hereafter acquired, owned by or assigned to Licensee and (ii) are infringed (directly or indirectly) by using or making Licensee Modifications, taken alone or in combination with Covered Code.\n \n\"Application Programming Interfaces (APIs)\" means the interfaces, associated header files, service provider interfaces, and protocols that enable a device, application, operating system, or other program to obtain services from or make requests of (or provide services in response to requests from) other programs, and to use, benefit from, or rely on the resources, facilities, and capabilities of the relevant programs using the APIs. APIs includes the technical documentation describing the APIs, the Source Code constituting the API, and any Header Files used with the APIs.\n \n\"Commercial Use\" means any use (internal or external), copying, sublicensing or distribution (internal or external), directly or indirectly of Covered Code by Licensee other than Licensee\u2019s Research Use of Covered Code within Licensee\u2019s business or organization or in conjunction with other Helix Licensees with equivalent Research Use rights. Commercial Use includes any use of the Covered Code for direct or indirect commercial or strategic gain, advantage or other business purpose. Any Commercial Use requires execution of the RCSL - Commercial Use by Licensee and RN.\n \n\"Community Code\" means the Original Code, Upgraded Code, Error Corrections, Shared Modifications, or any combination thereof.\n \n\"Compliant Covered Code\" means Covered Code that complies with the requirements of the TCK.\n \n\"Covered Code\" means the Original Code, Upgraded Code, Modifications, or any combination thereof.\n \n\"Error Correction\" means any change made to Community Code which conforms to the Specification and corrects the adverse effect of a failure of Community Code to perform any function set forth in or required by the Specifications.\n \n\"Executable\" means Covered Code that has been converted from Source Code to the preferred form for execution by a computer or digital processor (e.g. binary form). \n \n\"Extension(s)\" means any additional Interfaces developed by or for Licensee which: (i) are designed for use with the Helix DNA Code; (ii) constitute an API for a library of computing functions or services; and (iii) are disclosed or otherwise made available to third party software developers for the purpose of developing software which invokes such additional Interfaces. The foregoing shall not apply to software developed by Licensee\u2019s subcontractors to be exclusively used by Licensee. \n \n\"Helix Community Website\" means the website located at www.helixcommunity.org designated by RN for access to the Helix DNA Code, TCK and Specifications, and for posting Modifications.\n \n\"Header File(s)\" means that portion of the Source Code that provides the names and types of member functions, data members, class definitions, and interface definitions necessary to implement the APIs for the Covered Code. Header Files include, files specifically designated by RN as Header Files. Header Files do not include the code necessary to implement the functionality underlying the Interface.\n \n\"Helix DNA Client\" means the software identified on the Helix Community Website as the \"Helix DNA Client\" and which implements audio and video playback and rendering as defined in the Specifications.\n \n\"Helix DNA Code\" means the Helix DNA Server, the Helix DNA Client, the Helix DNA Producer, and any other Helix technologies that may be designated by RN from time to time. \n \n\"Helix DNA Producer\" means the portion of the Covered Code that implements the Helix Producer engine as defined in the Specification.\n \n\"Helix DNA Server\" means the portion of the Covered Code that implement the Helix Server streaming engine as defined in the Specification.\n \n\"Helix Licensee\" means any person or entity who has entered into a license agreement with RN providing for both source code development rights to and Commercial Use of the Helix DNA Client.\n \n\"Intellectual Property Rights\" means worldwide statutory and common law rights associated solely with (i) Applicable Patent Claims; (ii) works of authorship including copyrights, copyright applications, copyright registrations and \"moral rights\"; (iii) the protection of trade and industrial secrets and confidential information; and (iv) divisions, continuations, renewals, and re-issuances of the foregoing now existing or acquired in the future.\n \n\"Licensee\" means the individual, or a legal entity acting by and through an individual or individuals, exercising rights either under this License or under a future version of this License issued pursuant to Section 4.1. For legal entities, \"Licensee\" includes any entity that by majority voting interest controls, is controlled by, or is under common control with Licensee.\n \n\"Interface\" means interfaces, functions, properties, class definitions, APIs, Header Files, GUIDs, V-Tables, or protocols allowing one piece of software, firmware or hardware to communicate or interoperate with another piece of software, firmware or hardware.\n \n \n\"Modification(s)\" means (i) any addition to, deletion from or change to the substance or structure of the Covered Code, including Interfaces; (ii) any new file or other representation of computer program statements that contains any portion of Covered Code; or (iii) any new Source Code implementing any portion of the Specifications.\n \n\"Original Code\" means the Source Code for the Helix DNA Code as described on the Helix Community Website.\n \n\"RN\" means RealNetworks, Inc., its affiliates and its successors and assigns.\n \n\"Personal Use\" means use of Covered Code by an individual solely for his or her personal, private and non-commercial purposes. An individual's use of Covered Code in his or her capacity as an officer, employee, member, independent contractor or agent of a corporation, business or organization (commercial or non-commercial) does not qualify as Personal Use.\n \n\"Real Format Client Code\" means the software identified on the Helix Community Website as \"Real Format Client Code\" and which enables the playing back of content in RealMedia File Formats.\n \n\"RealMedia File Format\" means the file format designed and developed by RN for storing multimedia data and used to store RealAudio and RealVideo encoded streams. Valid RealMedia File Format extensions include: .rm, .rmj, .rmc, .rmvb, .rms, .ra, .rv, .rax .rvx.\n \n\"Reformatted Specifications\" means any revision to the Specifications which translates or reformats the Specifications (as for example in connection with Licensee\u2019s documentation) but which does not alter, subset or superset the functional or operational aspects of the Specifications.\n \n\"Research Use\" means use and distribution of Covered Code only for Licensee\u2019s Personal Use, research or development use and expressly excludes Commercial Use. Research Use also includes use of Covered Code to teach individuals how to use Covered Code.\n \n\"Shared Modifications\" means Modifications that Licensee distributes or uses for a Commercial Use, in addition to any Modifications provided by Licensee, at Licensee\u2019s option, pursuant to Section 2.2, or received by Licensee from another Helix Licensee pursuant to Section 2.3.\n \n\"Source Code\" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable.\n \n\"Specifications\" means the specifications for the Helix DNA Code and other documentation, as published by RN from time to time on the Helix Community Website. \n \n\"Technology Compatibility Kit\" or \"TCK\" means the interoperability testing specification, documentation and related testing tools made available to Licensee by RN from time to time for the purpose of testing Licensee\u2019s implementations of the Covered Code. RN may, in its sole discretion and from time to time, revise a TCK to correct errors or omissions and in connection with Upgrades.\n \n \"Upgrade(s)\" means new versions of Helix DNA Code designated exclusively by RN as an \"Upgrade\" and released by RN from time to time under the terms of this License.\n \n\"Upgraded Code\" means the Source Code or Executables for Upgrades, possibly including Modifications made by other Helix Licensees.\n \nATTACHMENT A\n \nREQUIRED NOTICES\n \nATTACHMENT A-1\n \nREQUIRED IN ALL CASES\n \nNotice to be included in header file of all Error Corrections and Shared Modifications:\n \nPortions Copyright 1994-2007 \u00a9 RealNetworks, Inc. All rights reserved. \n\nThe contents of this file, and the files included with this file, are subject to the current version of RealNetworks Community Source License Version 3.0 (the \"License\"). You may not use this file except in compliance with the License executed by both you and RealNetworks. You may obtain a copy of the License at https://www.helixcommunity.org/content/rcsl. You may also obtain a copy of the License by contacting RealNetworks directly. Please see the License for the rights, obligations and limitations governing use of the contents of the file.\n\nThis file is part of the Helix DNA Code. RealNetworks, Inc., is the developer of the Original Code and owns the copyrights in the portions it created. \n\nThis file, and the files included with this file, are distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.\n\nContributor(s):\n \n\nTechnology Compatibility Kit Test Suite(s) Location:\n \n\nATTACHMENT A-2\n \nSAMPLE LICENSEE CERTIFICATION\n \n\"By clicking the `Agree' button below, you certify that you are a Licensee in good standing under the RealNetworks Community Source License \u2013 Research and Development or the RealNetworks Community Source License \u2013 Commercial, (each, a \"License\") and that your access, use and distribution of code and information you may obtain at this site is subject to the License. If you are not a Licensee under the RealNetworks Community Source License you may not download, copy or use the Helix DNA Code.\n \nATTACHMENT A-3\n \nREQUIRED STUDENT NOTIFICATION\n \n\"This software and related documentation has been obtained by your educational institution subject to the RealNetworks Community Source License. You have been provided access to the software and related documentation for use only in connection with your course work and research activities as a matriculated student of your educational institution. Any other use is expressly prohibited.\n \nTHIS SOFTWARE AND RELATED DOCUMENTATION CONTAINS PROPRIETARY MATERIAL OF REALNETWORKS, INC, WHICH ARE PROTECTED BY VARIOUS INTELLECTUAL PROPERTY RIGHTS.\n \nYou may not use this file except in compliance with the License. You may obtain a copy of the License on the web at https://www.helixcommunity.org/content/rcsl.", + "json": "rcsl-3.0.json", + "yaml": "rcsl-3.0.yml", + "html": "rcsl-3.0.html", + "license": "rcsl-3.0.LICENSE" + }, + { + "license_key": "rdisc", + "category": "Permissive", + "spdx_license_key": "Rdisc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Rdisc (this program) was developed by Sun Microsystems, Inc. and is provided for unrestricted use provided that this legend is included on all tape media and as a part of the software program in whole or part. Users may copy or modify Rdisc without charge, and they may freely distribute it.\n\nRDISC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.\n\nRdisc is provided with no support and without any obligation on the part of Sun Microsystems, Inc. to assist in its use, correction, modification or enhancement.\n\nSUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY RDISC OR ANY PART THEREOF.\n\nIn no event will Sun Microsystems, Inc. be liable for any lost revenue or profits or other special, indirect and consequential damages, even if Sun has been advised of the possibility of such damages.", + "json": "rdisc.json", + "yaml": "rdisc.yml", + "html": "rdisc.html", + "license": "rdisc.LICENSE" + }, + { + "license_key": "realm-platform-extension-2017", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-realm-platform-extension-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Realm Platform Extensions License\n\n Copyright (c) 2011-2017 Realm Inc All rights reserved\n\n Redistribution and use in binary form, with or without modification, is\n permitted provided that the following conditions are met:\n\n 1. You agree not to attempt to decompile, disassemble, reverse engineer or\n otherwise discover the source code from which the binary code was derived.\n You may, however, access and obtain a separate license for most of the\n source code from which this Software was created, at\n http://realm.io/pricing/.\n\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n 3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from this\n software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.", + "json": "realm-platform-extension-2017.json", + "yaml": "realm-platform-extension-2017.yml", + "html": "realm-platform-extension-2017.html", + "license": "realm-platform-extension-2017.LICENSE" + }, + { + "license_key": "red-hat-attribution", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-red-hat-attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software \nis freely granted, provided that this notice is preserved.", + "json": "red-hat-attribution.json", + "yaml": "red-hat-attribution.yml", + "html": "red-hat-attribution.html", + "license": "red-hat-attribution.LICENSE" + }, + { + "license_key": "red-hat-bsd-simplified", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-red-hat-bsd-simplified", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n1. Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY RED HAT, INC. ''AS IS'' AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE FREEBSD PROJECT OR CONTRIBUTORS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\nTHE POSSIBILITY OF SUCH DAMAGE.\n\nThe views and conclusions contained in the software and documentation\nare those of the authors and should not be interpreted as representing\nofficial policies, either expressed or implied, of Red Hat, Inc.", + "json": "red-hat-bsd-simplified.json", + "yaml": "red-hat-bsd-simplified.yml", + "html": "red-hat-bsd-simplified.html", + "license": "red-hat-bsd-simplified.LICENSE" + }, + { + "license_key": "red-hat-logos", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-red-hat-logos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Red Hat, Inc. grants you the right to use the Package during the\nnormal operation of other software programs that call upon the\nPackage. Red Hat, Inc. grants to you the right and license to copy\nand redistribute the Package, but only in conjunction with copying or\nredistributing additional software packages that call upon the Package\nduring the normal course of operation. Such rights are granted to you\nwithout fee, provided that:\n\n1. The above copyright notice and this license are included with each\ncopy you make, and they remain intact and are not altered, deleted, or\nmodified in any way;\n2. You do not modify the Package, or the appearance of any or all of\nthe Logos in any manner; and\n3. You do not use any or all of the Logos as, or as part of, a\ntrademark, trade name, or trade identifier; or in any other fashion\nexcept as set forth in this license.\n\nNO WARRANTY. THIS PACKAGE IS PROVIDED \"AS IS\" AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL RED HAT, INC. BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\nIN ANY WAY OUT OF THE USE OF THIS PACKAGE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.", + "json": "red-hat-logos.json", + "yaml": "red-hat-logos.yml", + "html": "red-hat-logos.html", + "license": "red-hat-logos.LICENSE" + }, + { + "license_key": "red-hat-trademarks", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-red-hat-trademarks", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Red Hat\u00ae, Red Hat Enterprise Linux, and the Shadowman logo, either\nseparately or in combination, are hereinafter referred to as \"Red Hat\nTrademarks\" and are trademarks of Red Hat, Inc., registered in the\nUnited States and other countries.\n\nThe redhat-logos package (\"Package\") contains images that are or include\nthe Red Hat Trademarks and Red Hat trade dress. You are granted the\nright to use the Package only during the normal operation of software\nprograms that call upon the Package. No other copyright or trademark\nlicense is granted herein.\n\nNO WARRANTY. THIS PACKAGE IS PROVIDED \"AS IS\" AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND\nINTELLECTUAL PROPERTY NONINFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL\nRED HAT, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nPACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "red-hat-trademarks.json", + "yaml": "red-hat-trademarks.yml", + "html": "red-hat-trademarks.html", + "license": "red-hat-trademarks.LICENSE" + }, + { + "license_key": "redis-source-available-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-redis-source-available-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "REDIS SOURCE AVAILABLE LICENSE AGREEMENT\n\nVersion 1, February 21, 2019\n \nThis Agreement sets forth the terms on which the Licensor makes available the Software. BY INSTALLING, DOWNLOADING, ACCESSING, USING OR DISTRIBUTING ANY OF THE SOFTWARE, YOU AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO SUCH TERMS AND CONDITIONS, YOU MUST NOT USE THE SOFTWARE. If you are receiving the Software on behalf of a legal entity, you represent and warrant that you have the actual authority to agree to the terms and conditions of this agreement on behalf of such entity. \n\n\n0. DEFINITIONS\n\nThe terms below have the meanings set forth below for purposes of this Agreement:\n\nAgreement: this Redis Source Available License Agreement.\n\nDatabase Product: any of the following products or services: (a) database; (b) caching engine; (c) stream processing engine; (d) search engine; (e) indexing engine; (f) machine learning or deep learning or artificial intelligence serving engine; \n(g) a product or service exposing the Redis API; (h) a product or service exposing the Redis Modules API; or \n(i) a product or service exposing the Software API. \n\nLicense: the Redis Source Available License described in Section 1. \n\nLicensor: Redis Labs Ltd.\n\nModification: a modification of the Software made by You under the License, Section 1.1(c). \n\nRedis: the open source Redis software as described in redis.io. \n\nSoftware: certain software components designed to work with Redis and provided to you under this Agreement.\n\nYou: the recipient of this Software, an individual, or the entity on whose behalf you are receiving the Software.\n\nYour Application: an application developed by or for You, where such application is not a Database Product.\n\n1. LICENSE GRANT AND CONDITIONS \n\n 1.1 Subject to the terms and conditions of this Section 1, Licensor hereby grants to You a non-exclusive, royalty-free, worldwide, non-transferable license during the term of this Agreement to: \n (a) distribute or make available the Software or your Modifications under the terms of this Agreement, only as part of Your Application, so long as you include the following notice on any copy you distribute: \"This software is subject to the terms of the Redis Source Available License Agreement\".\n (b) use the Software, or your Modifications, only as part of Your Application, but not in connection with any Database Product that is distributed or otherwise made available by any third party.\n (c) modify the Software, provided that Modifications remain subject to the terms of this License. \n (d) reproduce the Software as necessary for the above. \n\n 1.2. Sublicensing. You may sublicense the right to use the Software fully embedded in Your Application as distributed by you in accordance with Section 1.1(a), pursuant to a written license that disclaims all warranties and liabilities on behalf of Licensor.\n\n 1.3. Notices. On all copies of the Software that you make, you must retain all copyright or other proprietary notices.\n \n2. TERM AND TERMINATION. This Agreement will continue unless and until earlier terminated as set forth herein. If You breach any of its conditions or obligations under this Agreement, this Agreement will terminate automatically and the licenses granted herein will terminate automatically.\n\n3. INTELLECTUAL PROPERTY. As between the parties, Licensor retains all right, title, and interest in the Software, and to Redis or other Licensor trademarks or service marks, and all intellectual property rights therein. Licensor hereby reserves all rights not expressly granted to You in this Agreement. \n\n4. DISCLAIMER. TO THE EXTENT ALLOWABLE UNDER LAW, LICENSOR HEREBY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS, EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, AND SPECIFICALLY DISCLAIMS ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, WITH RESPECT TO THE SOFTWARE. Licensor has no obligation to support the Software. \n\n5. LIMITATION OF LIABILITY. TO THE EXTENT ALLOWABLE UNDER LAW, LICENSOR WILL NOT BE LIABLE FOR ANY DAMAGES OF ANY KIND, INCLUDING BUT NOT LIMITED TO, LOST PROFITS OR ANY CONSEQUENTIAL, SPECIAL, INCIDENTAL, INDIRECT, OR DIRECT DAMAGES, ARISING OUT OF OR RELATING TO THIS AGREEMENT. \n\n6. GENERAL. You are not authorized to assign Your rights under this Agreement to any third party. Licensor may freely assign its rights under this Agreement to any third party. This Agreement is the entire agreement between the parties on the subject matter hereof. No amendment or modification hereof will be valid or binding upon the parties unless made in writing and signed by the duly authorized representatives of both parties. In the event that any provision, including without limitation any condition, of this Agreement is held to be unenforceable, this Agreement and all licenses and rights granted hereunder will immediately terminate. Failure by Licensor to exercise any right hereunder will not be construed as a waiver of any subsequent breach of that right or as a waiver of any other right. This Agreement will be governed by and interpreted in accordance with the laws of the state of California, without reference to its conflict of laws principles. If You are located within the United States, all disputes arising out of this Agreement are subject to the exclusive jurisdiction of courts located in Santa Clara County, California. USA. If You are located outside of the United States, any dispute, controversy or claim arising out of or relating to this Agreement will be referred to and finally determined by arbitration in accordance with the JAMS before a single arbitrator in Santa Clara County, California. Judgment upon the award rendered by the arbitrator may be entered in any court having jurisdiction thereof.", + "json": "redis-source-available-1.0.json", + "yaml": "redis-source-available-1.0.yml", + "html": "redis-source-available-1.0.html", + "license": "redis-source-available-1.0.LICENSE" + }, + { + "license_key": "regexp", + "category": "Permissive", + "spdx_license_key": "Spencer-86", + "other_spdx_license_keys": [ + "LicenseRef-scancode-regexp" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to anyone to use this software for any\npurpose on any computer system, and to redistribute it freely,\nsubject to the following restrictions:\n\n1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n\n2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n\n3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.", + "json": "regexp.json", + "yaml": "regexp.yml", + "html": "regexp.html", + "license": "regexp.LICENSE" + }, + { + "license_key": "reportbug", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-reportbug", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This program is freely distributable per the following license:\n\nPermission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose and without fee is hereby granted,\nprovided that the above copyright notice appears in all copies and that\nboth that copyright notice and this permission notice appear in\nsupporting documentation.\n\nI DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL I\nBE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY\nDAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\nSOFTWARE.", + "json": "reportbug.json", + "yaml": "reportbug.yml", + "html": "reportbug.html", + "license": "reportbug.LICENSE" + }, + { + "license_key": "repoze", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-Modification", + "other_spdx_license_keys": [ + "LicenseRef-scancode-repoze" + ], + "is_exception": false, + "is_deprecated": false, + "text": "A copyright notice accompanies this license document that identifies the copyright\nholders.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\nRedistributions in source code must retain the accompanying\ncopyright notice, this list of conditions, and the following\ndisclaimer.\n\nRedistributions in binary form must reproduce the accompanying\ncopyright notice, this list of conditions, and the following\ndisclaimer in the documentation and/or other materials provided\nwith the distribution.\n\nNames of the copyright holders must not be used to endorse or\npromote products derived from this software without prior\nwritten permission from the copyright holders.\n\nIf any files are modified, you must cause the modified files to\ncarry prominent notices stating that you changed the files and\nthe date of any change.\n\nDisclaimer\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND\n ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\n TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\n ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF\n THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.", + "json": "repoze.json", + "yaml": "repoze.yml", + "html": "repoze.html", + "license": "repoze.LICENSE" + }, + { + "license_key": "rh-eula", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-rh-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "END USER LICENSE AGREEMENT\nRED HAT\u00ae ENTERPRISE LINUX\u00ae AND RED HAT APPLICATIONS\n\nThis end user license agreement (\"EULA\") governs the use of any of the versions\nof Red Hat Enterprise Linux, any Red Hat Applications (as set forth at\nwww.redhat.com/licenses/products), and any related updates, source code,\nappearance, structure and organization (the \"Programs\"), regardless of the\ndelivery mechanism.\n\n\n1. License Grant. Subject to the following terms, Red Hat, Inc. (\"Red Hat\")\n grants to you (\"User\") a perpetual, worldwide license to the Programs\n pursuant to the GNU General Public License v.2. The Programs are either a\n modular operating system or an application consisting of hundreds of\n software components. With the exception of certain image files identified\n in Section 2 below, the license agreement for each software component is\n located in the software component's source code and permits User to run,\n copy, modify, and redistribute (subject to certain obligations in some\n cases) the software component, in both source code and binary code forms.\n This EULA pertains solely to the Programs and does not limit User's rights\n under, or grant User rights that supersede, the license terms of any\n particular component.\n\n2. Intellectual Property Rights. The Programs and each of their components are\n owned by Red Hat and others and are protected under copyright law and under\n other laws as applicable. Title to the Programs and any component, or to any\n copy, modification, or merged portion shall remain with the aforementioned,\n subject to the applicable license. The \"Red Hat\" trademark and the\n \"Shadowman\" logo are registered trademarks of Red Hat in the U.S. and other\n countries. This EULA does not permit User to distribute the Programs or\n their components using Red Hat's trademarks, regardless of whether the copy\n has been modified. User should read the information found at\n http://www.redhat.com/about/corporate/trademark/ before distributing a copy\n of the Programs. User may make a commercial redistribution of the Programs\n only if, (a) a separate agreement with Red Hat authorizing such commercial\n redistribution is executed or other written permission is granted by Red Hat\n or (b) User modifies any files identified as \"REDHAT-LOGOS\" to remove and\n replace all images containing the \"Red Hat\" trademark or the \"Shadowman\"\n logo. Merely deleting these files may corrupt the Programs.\n\n3. Limited Warranty. Except as specifically stated in this Section 3, a\n separate agreement with Red Hat, or a license for a particular component, to\n the maximum extent permitted under applicable law, the Programs and the\n components are provided and licensed \"as is\" without warranty of any kind,\n expressed or implied, including the implied warranties of merchantability,\n non-infringement or fitness for a particular purpose. Red Hat warrants that\n the media on which the Programs and the components are furnished will be\n free from defects in materials and manufacture under normal use for a period\n of 30 days from the date of delivery to User. Red Hat does not warrant that\n the functions contained in the Programs will meet User's requirements or\n that the operation of the Programs will be entirely error free, appear\n precisely as described in the accompanying documentation, or comply with\n regulatory requirements. This warranty extends only to the party that\n purchases services pertaining to the Programs from Red Hat or a Red Hat\n authorized distributor.\n\n4. Limitation of Remedies and Liability. To the maximum extent permitted by\n applicable law, User's exclusive remedy under this EULA is to return any\n defective media within 30 days of delivery along with a copy of User's\n payment receipt and Red Hat, at its option, will replace it or refund the\n money paid by User for the media. To the maximum extent permitted under\n applicable law, neither Red Hat, any Red Hat authorized distributor, nor the\n licensor of any component provided to User under this EULA will be liable to\n User for any incidental or consequential damages, including lost profits or\n lost savings arising out of the use or inability to use the Programs or any\n component, even if Red Hat, such authorized distributor or licensor has been\n advised of the possibility of such damages. In no event shall Red Hat's\n liability, an authorized distributor\u2019s liability or the liability of the\n licensor of a component provided to User under this EULA exceed the amount\n that User paid to Red Hat under this EULA during the twelve months preceding\n the action.\n\n5. Export Control. As required by the laws of the United States and other\n countries, User represents and warrants that it: (a) understands that the\n Programs and their components may be subject to export controls under the\n U.S. Commerce Department\u2019s Export Administration Regulations (\"EAR\"); (b) is\n not located in a prohibited destination country under the EAR or\n U.S. sanctions regulations (currently Cuba, Iran, Iraq, North Korea, Sudan\n and Syria, subject to change as posted by the United States government); (c)\n will not export, re-export, or transfer the Programs to any prohibited\n destination or persons or entities on the U.S. Bureau of Industry and\n Security Denied Parties List or Entity List, or the U.S. Office of Foreign\n Assets Control list of Specially Designated Nationals and Blocked Persons,\n or any similar lists maintained by other countries, without the necessary\n export license(s) or authorizations(s); (d) will not use or transfer the\n Programs for use in connection with any nuclear, chemical or biological\n weapons, missile technology, or military end-uses where prohibited by an\n applicable arms embargo, unless authorized by the relevant government agency\n by regulation or specific license; (e) understands and agrees that if it is\n in the United States and exports or transfers the Programs to eligible end\n users, it will, to the extent required by EAR Section 740.17(e), submit\n semi-annual reports to the Commerce Department\u2019s Bureau of Industry and\n Security, which include the name and address (including country) of each\n transferee; and (f) understands that countries including the United States\n may restrict the import, use, or export of encryption products (which may\n include the Programs and the components) and agrees that it shall be solely\n responsible for compliance with any such import, use, or export\n restrictions.\n\n6. Third Party Programs. Red Hat may distribute third party software programs\n with the Programs that are not part of the Programs. These third party\n programs are not required to run the Programs, are provided as a convenience\n to User, and are subject to their own license terms. The license terms\n either accompany the third party software programs or can be viewed at\n http://www.redhat.com/licenses/thirdparty/eula.html. If User does not agree\n to abide by the applicable license terms for the third party software\n programs, then User may not install them. If User wishes to install the\n third party software programs on more than one system or transfer the third\n party software programs to another party, then User must contact the\n licensor of the applicable third party software programs.\n\n7. General. In the case of a discrepancy between the Spanish version and the\n English version of this EULA, the English version shall prevail. If any\n provision of this agreement is held to be unenforceable, that shall not\n affect the enforceability of the remaining provisions. This agreement shall\n be governed by the laws of the State of New York and of the United States,\n without regard to any conflict of laws provisions. The rights and\n obligations of the parties to this EULA shall not be governed by the United\n Nations Convention on the International Sale of Goods.\n\nCopyright \u00a9 2007 Red Hat, Inc. All rights reserved. \"Red Hat\" and the Red Hat\n\"Shadowman\" logo are registered trademarks of Red Hat, Inc. \"Linux\" is a\nregistered trademark of Linus Torvalds. All other trademarks are the property of\ntheir respective owners.", + "json": "rh-eula.json", + "yaml": "rh-eula.yml", + "html": "rh-eula.html", + "license": "rh-eula.LICENSE" + }, + { + "license_key": "rh-eula-lgpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-rh-eula-lgpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This end user license agreement (\"EULA\") governs the use of the JBoss\nEnterprise Middleware and any related updates, source code, appearance,\nstructure and organization (the \"Programs\"), regardless of the delivery\nmechanism.\n\n1. License Grant. Subject to the following terms, Red Hat, Inc. (\"Red\nHat\") grants to you a perpetual, worldwide license to the Programs (each\nof which may include multiple software components) pursuant to the GNU\nLesser General Public License v. 2.1. With the exception of certain\nimage files identified in Section 2 below, each software component is\ngoverned by a license that permits you to run, copy, modify, and\nredistribute (subject to certain obligations in some cases) the software\ncomponent. This EULA pertains solely to the Programs and does not limit\nyour rights under, or grant you rights that supersede, the license terms\napplicable to any particular component.\n\n2. Intellectual Property Rights. The Programs and each of their\ncomponents are owned by Red Hat and other licensors and are protected\nunder copyright law and under other laws as applicable. Title to the\nPrograms and any component, or to any copy, modification, or merged\nportion shall remain with Red Hat and other licensors, subject to the\napplicable license. The \"JBoss\" trademark, \"Red Hat\" trademark, the\nindividual Program trademarks, and the \"Shadowman\" logo are registered\ntrademarks of Red Hat and its affiliates in the U.S. and other\ncountries. This EULA does not permit you to distribute the Programs\nusing Red Hat's trademarks, regardless of whether they have been\nmodified. You may make a commercial redistribution of the Programs only\nif (a) permitted under a separate written agreement with Red Hat\nauthorizing such commercial redistribution or (b) you remove and\nreplaced all occurrences of Red Hat trademarks and logos. Modifications\nto the software may corrupt the Programs. You should read the\ninformation found at http://www.redhat.com/about/corporate/trademark/\nbefore distributing a copy of the Programs.\n\n3. Limited Warranty. Except as specifically stated in this Section 3, a\nseparate agreement with Red Hat, or a license for a particular\ncomponent, to the maximum extent permitted under applicable law, the\nPrograms and the components are provided and licensed \"as is\" without\nwarranty of any kind, expressed or implied, including the implied\nwarranties of merchantability, non-infringement or fitness for a\nparticular purpose. Red Hat warrants that the media on which the\nPrograms and the components are provided will be free from defects in\nmaterials and manufacture under normal use for a period of 30 days from\nthe date of delivery to you. Neither Red Hat nor its affiliates warrant\nthat the functions contained in the Programs will meet your requirements\nor that the operation of the Programs will be entirely error free,\nappear or perform precisely as described in the accompanying\ndocumentation, or comply with regulatory requirements. This warranty\nextends only to the party that purchases subscription services for the\nPrograms from Red Hat and/or its affiliates or a Red Hat authorized\ndistributor.\n\n4. Limitation of Remedies and Liability. To the maximum extent permitted\nby applicable law, your exclusive remedy under this EULA is to return\nany defective media within 30 days of delivery along with a copy of your\npayment receipt and Red Hat, at its option, will replace it or refund\nthe money you paid for the media. To the maximum extent permitted under\napplicable law, under no circumstances will Red Hat, its affiliates, any\nRed Hat authorized distributor, or the licensor of any component\nprovided to you under this EULA be liable to you for any incidental or\nconsequential damages, including lost profits or lost savings arising\nout of the use or inability to use the Programs or any component, even\nif Red Hat, its affiliates, an authorized distributor, and/or licensor\nhas been advised of the possibility of such damages. In no event shall\nRed Hat's or its affiliates\u2019 liability, an authorized distributor\u2019s\nliability or the liability of the licensor of a component provided to\nyou under this EULA exceed the amount that you paid to Red Hat for the\nmedia under this EULA.\n\n5. Export Control. As required by the laws of the United States and\nother countries, you represent and warrant that you: (a) understand that\nthe Programs and their components may be subject to export controls\nunder the U.S. Commerce Department\u2019s Export Administration Regulations\n(\"EAR\"); (b) are not located in a prohibited destination country under\nthe EAR or U.S. sanctions regulations (currently Cuba, Iran, Iraq, North\nKorea, Sudan and Syria, subject to change as posted by the United States\ngovernment); (c) will not export, re-export, or transfer the Programs to\nany prohibited destination, persons or entities on the U.S. Bureau of\nIndustry and Security Denied Parties List or Entity List, or the U.S.\nOffice of Foreign Assets Control list of Specially Designated Nationals\nand Blocked Persons, or any similar lists maintained by other countries,\nwithout the necessary export license(s) or authorizations(s); (d) will\nnot use or transfer the Programs for use in connection with any nuclear,\nchemical or biological weapons, missile technology, or military end-uses\nwhere prohibited by an applicable arms embargo, unless authorized by the\nrelevant government agency by regulation or specific license; (e)\nunderstand and agree that if you are in the United States and export or\ntransfer the Programs to eligible end users, you will, to the extent\nrequired by EAR Section 740.17(e), submit semi-annual reports to the\nCommerce Department\u2019s Bureau of Industry and Security, which include the\nname and address (including country) of each transferee; and (f)\nunderstand that countries including the United States may restrict the\nimport, use, or export of encryption products (which may include the\nPrograms and the components) and agree that you shall be solely\nresponsible for compliance with any such import, use, or export\nrestrictions.\n\n6. Third Party Programs. Red Hat may distribute third party software\nprograms with the Programs that are not part of the Programs. These\nthird party software programs are not required to run the Programs, are\nprovided as a convenience to you, and are subject to their own license\nterms. The license terms either accompany the third party software\nprograms or can be viewed at\nhttp://www.redhat.com/licenses/thirdparty/eula.html. If you do not agree\nto abide by the applicable license terms for the third party software\nprograms, then you may not install them. If you wish to install the\nthird party software programs on more than one system or transfer the\nthird party software programs to another party, then you must contact\nthe licensor of the applicable third party software programs.\n\n7. General. If any provision of this EULA is held to be unenforceable,\nthe enforceability of the remaining provisions shall not be affected.\nAny claim, controversy or dispute arising under or relating to this EULA\nshall be governed by the laws of the State of New York and of the United\nStates, without regard to any conflict of laws provisions. The rights\nand obligations of the parties to this EULA shall not be governed by the\nUnited Nations Convention on the International Sale of Goods.\n\nCopyright \u00a9 2010 Red Hat, Inc. All rights reserved. \"Red Hat,\" \"JBoss\"\nand the JBoss logo are registered trademarks of Red Hat, Inc. All other\ntrademarks are the property of their respective owners.", + "json": "rh-eula-lgpl.json", + "yaml": "rh-eula-lgpl.yml", + "html": "rh-eula-lgpl.html", + "license": "rh-eula-lgpl.LICENSE" + }, + { + "license_key": "ricebsd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ricebsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Rice BSD Software License\nPermits source and binary redistribution of the software ARPACK and\nP_ARPACK for both non-commercial and commercial use.\n\n Copyright (\u00a9) 2001, Rice University\n Developed by D.C. Sorensen, R.B. Lehoucq, C. Yang, and K. Maschhoff.\n All rights reserved.\n\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n \u2022 Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n \u2022 Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n \u2022 If you modify the source for these routines we ask that you change the\n name of the routine and comment the changes made to the original.\n \u2022 Written notification is provided to the developers of intent to use\n this software. Also, we ask that use of ARPACK is properly cited in\n any resulting publications or software documentation.\n \u2022 Neither the name of Rice University (RICE) nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n\nTHIS SOFTWARE IS PROVIDED BY RICE AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS\nOR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL RICE OR CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGE.", + "json": "ricebsd.json", + "yaml": "ricebsd.yml", + "html": "ricebsd.html", + "license": "ricebsd.LICENSE" + }, + { + "license_key": "richard-black", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-richard-black", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This code is copyright 1993 Richard Black. All rights are reserved. You may use this code only if it includes a statement to that effect.", + "json": "richard-black.json", + "yaml": "richard-black.yml", + "html": "richard-black.html", + "license": "richard-black.LICENSE" + }, + { + "license_key": "ricoh-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "RSCPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Ricoh Source Code Public License\n\nVersion 1.0\n\n1. Definitions.\n\n1.1. \"Contributor\" means each entity that creates or contributes to the creation of Modifications.\n\n1.2. \"Contributor Version\" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor.\n\n1.3. \"Electronic Distribution Mechanism\" means a website or any other mechanism generally accepted in the software development community for the electronic transfer of data.\n\n1.4. \"Executable Code\" means Governed Code in any form other than Source Code.\n\n1.5. \"Governed Code\" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof.\n\n1.6. \"Larger Work\" means a work which combines Governed Code or portions thereof with code not governed by the terms of this License.\n\n1.7. \"Licensable\" means the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein.\n\n1.8. \"License\" means this document.\n\n1.9. \"Modifications\" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Governed Code is released as a series of files, a Modification is:\n\n(a) Any addition to or deletion from the contents of a file containing Original Code or previous Modifications.\n\n(b) Any new file that contains any part of the Original Code or previous Modifications.\n\n1.10. \"Original Code\" means the \"Platform for Information Applications\" Source Code as released under this License by RSV.\n\n1.11 \"Patent Claims\" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by the grantor of a license thereto.\n\n1.12. \"RSV\" means Ricoh Silicon Valley, Inc., a California corporation with offices at 2882 Sand Hill Road, Suite 115, Menlo Park, CA 94025-7022.\n2882 Sand Hill Road, Suite 115, Menlo Park, CA 94025-7022.\n\n1.13. \"Source Code\" means the preferred form of the Governed Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of Executable Code, or a list of source code differential comparisons against either the Original Code or another well known, available Governed Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge.\n\n1.14. \"You\" means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, \"You\" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, \"control\" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity.\n\n2. Source Code License.\n\n2.1. Grant from RSV. RSV hereby grants You a worldwide, royalty-free, non-exclusive license, subject to third party intellectual property claims:\n\n(a) to use, reproduce, modify, create derivative works of, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, or as part of a Larger Work; and\n\n(b) under Patent Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof).\n\n2.2. Contributor Grant. Each Contributor hereby grants You a worldwide, royalty-free, non-exclusive license, subject to third party intellectual property claims:\n\n(a) to use, reproduce, modify, create derivative works of, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Governed Code or as part of a Larger Work; and\n\n(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: (i) Modifications made by that Contributor (or portions thereof); and (ii) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination).\n\n3. Distribution Obligations.\n\n3.1. Application of License. The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Governed Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5.\n\n3.2. Availability of Source Code. Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable Code version or via an Electronic Distribution Mechanism to anyone to whom you made an Executable Code version available; and if made available via an Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\n3.3. Description of Modifications. You must cause all Governed Code to which you contribute to contain a file documenting the changes You made to create that Governed Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by RSV and including the name of RSV in (a) the Source Code, and (b) in any notice in an Executable Code version or related documentation in which You describe the origin or ownership of the Governed Code.\n\n3.4. Intellectual Property Matters.\n\n3.4.1. Third Party Claims. If You have knowledge that a party claims an intellectual property right in particular functionality or code (or its utilization under this License), you must include a text file with the source code distribution titled \"LEGAL\" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after You make Your Modification available as described in Section 3.2, You shall promptly modify the LEGAL file in all copies You make available thereafter and shall take other steps (such as notifying RSV and appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Governed Code that new knowledge has been obtained. In the event that You are a Contributor, You represent that, except as disclosed in the LEGAL file, your Modifications are your original creations and, to the best of your knowledge, no third party has any claim (including but not limited to intellectual property claims) relating to your Modifications. You represent that the LEGAL file includes complete details of any license or other restriction associated with any part of your Modifications. \n 3.4.2. Contributor APIs. If Your Modification is an application programming interface and You own or control patents which are reasonably necessary to implement that API, you must also include this information in the LEGAL file.\n\n3.5. Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code, and this License in any documentation for the Source Code, where You describe recipients' rights relating to Governed Code. If You created one or more Modification(s), You may add your name as a Contributor to the notice described in Exhibit A. If it is not possible to put such notice in a particular Source Code file due to its structure, then you must include such notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Governed Code. However, You may do so only on Your own behalf, and not on behalf of RSV or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify RSV and every Contributor for any liability incurred by RSV or such Contributor as a result of warranty, support, indemnity or liability terms You offer.\n\n3.6. Distribution of Executable Code Versions. You may distribute Governed Code in Executable Code form only if the requirements of Section 3.1-3.5 have been met for that Governed Code, and if You include a prominent notice stating that the Source Code version of the Governed Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable Code version, related documentation or collateral in which You describe recipients' rights relating to the Governed Code. You may distribute the Executable Code version of Governed Code under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable Code version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable Code version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by RSV or any Contributor. You hereby agree to indemnify RSV and every Contributor for any liability incurred by RSV or such Contributor as a result of any such terms You offer. \n 3.7. Larger Works. You may create a Larger Work by combining Governed Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Governed Code.\n\n4. Inability to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to comply with any of theterms of this License with respect to some or all of the Governed Code due to statute or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n\n5. Trademark Usage.\n\n5.1. Advertising Materials. All advertising materials mentioning features or use of the Governed Code must display the following acknowledgement: \"This product includes software developed by Ricoh Silicon Valley, Inc.\"\n\n5.2. Endorsements. The names \"Ricoh,\" \"Ricoh Silicon Valley,\" and \"RSV\" must not be used to endorse or promote Contributor Versions or Larger Works without the prior written permission of RSV.\n\n5.3. Product Names. Contributor Versions and Larger Works may not be called \"Ricoh\" nor may the word \"Ricoh\" appear in their names without the prior written permission of RSV.\n\n6. Versions of the License.\n\n6.1. New Versions. RSV may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number.\n\n6.2. Effect of New Versions. Once Governed Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Governed Code under the terms of any subsequent version of the License published by RSV. No one other than RSV has the right to modify the terms applicable to Governed Code created under this License.\n\n7. Disclaimer of Warranty.\n\nGOVERNED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE GOVERNED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE GOVERNED CODE IS WITH YOU. SHOULD ANY GOVERNED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT RSV OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY GOVERNED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. Termination.\n\n8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Governed Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.\n\n8.2. If You initiate patent infringement litigation against RSV or a Contributor (RSV or the Contributor against whom You file such action is referred to as \"Participant\") alleging that:\n\n(a) such Participant's Original Code or Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of the Original Code or the Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Original Code or the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above.\n\n(b) any software, hardware, or device provided to You by the Participant, other than such Participant's Original Code or Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Original Code or the Modifications made by that Participant.\n\n8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Original Code or Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination.\n\n9. Limitation of Liability.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL RSV, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF GOVERNED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. TO THE EXTENT THAT ANY EXCLUSION OF DAMAGES ABOVE IS NOT VALID, YOU AGREE THAT IN NO EVENT WILL RSVS LIABILITY UNDER OR RELATED TO THIS AGREEMENT EXCEED FIVE THOUSAND DOLLARS ($5,000). THE GOVERNED CODE IS NOT INTENDED FOR USE IN CONNECTION WITH ANY NUCLER, AVIATION, MASS TRANSIT OR MEDICAL APPLICATION OR ANY OTHER INHERENTLY DANGEROUS APPLICATION THAT COULD RESULT IN DEATH, PERSONAL INJURY, CATASTROPHIC DAMAGE OR MASS DESTRUCTION, AND YOU AGREE THAT NEITHER RSV NOR ANY CONTRIBUTOR SHALL HAVE ANY LIABILITY OF ANY NATURE AS A RESULT OF ANY SUCH USE OF THE GOVERNED CODE.\n\n10. U.S. Government End Users.\n\nThe Governed Code is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Governed Code with only those rights set forth herein.\n\n11. Miscellaneous.\n\nThis License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. The parties submit to personal jurisdiction in California and further agree that any cause of action arising under or related to this Agreement shall be brought in the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California. The losing party shall be responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. Notwithstanding anything to the contrary herein, RSV may seek injunctive relief related to a breach of this Agreement in any court of competent jurisdiction. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n12. Responsibility for Claims.\n\nExcept in cases where another Contributor has failed to comply with Section 3.4, You are responsible for damages arising, directly or indirectly, out of Your utilization of rights under this License, based on the number of copies of Governed Code you made available, the revenues you received from utilizing such rights, and other relevant factors. You agree to work with affected parties to distribute responsibility on an equitable basis.\n\nEXHIBIT A\n\n\"The contents of this file are subject to the Ricoh Source Code Public License Version 1.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.risource.org/RPL\n\nSoftware distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.\n\nThis code was initially developed by Ricoh Silicon Valley, Inc. Portions created by Ricoh Silicon Valley, Inc. are Copyright (C) 1995-1999. All Rights Reserved.\n\nContributor(s): .\"", + "json": "ricoh-1.0.json", + "yaml": "ricoh-1.0.yml", + "html": "ricoh-1.0.html", + "license": "ricoh-1.0.LICENSE" + }, + { + "license_key": "riverbank-sip", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-riverbank-sip", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "RIVERBANK COMPUTING LIMITED LICENSE AGREEMENT FOR SIP 4.9.2\n\n1. This LICENSE AGREEMENT is between Riverbank Computing Limited\n(\"Riverbank\"), and the Individual or Organization (\"Licensee\") accessing\nand otherwise using SIP 4.9.2 software in source or binary form and its\nassociated documentation. SIP 4.9.2 comprises a software tool for\ngenerating Python bindings for software C and C++ libraries, and a Python\nextension module used at runtime by those generated bindings.\n\n2. Subject to the terms and conditions of this License Agreement, Riverbank\nhereby grants Licensee a nonexclusive, royalty-free, world-wide license\nto reproduce, analyze, test, perform and/or display publicly, prepare\nderivative works, distribute, and otherwise use SIP 4.9.2 alone or in\nany derivative version, provided, however, that Riverbank's License\nAgreement and Riverbank's notice of copyright, e.g., \"Copyright (c) 2009\nRiverbank Computing Limited; All Rights Reserved\" are retained in\nSIP 4.9.2 alone or in any derivative version prepared by Licensee.\n\n3. In the event Licensee prepares a derivative work that is based on\nor incorporates SIP 4.9.2 or any part thereof, and wants to make\nthe derivative work available to others as provided herein, then\nLicensee hereby agrees to include in any such work a brief summary of\nthe changes made to SIP 4.9.2.\n\n4. Licensee may not use SIP 4.9.2 to generate Python bindings for any\nC or C++ library for which bindings are already provided by Riverbank.\n\n5. Riverbank is making SIP 4.9.2 available to Licensee on an \"AS IS\"\nbasis. RIVERBANK MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, RIVERBANK MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF SIP 4.9.2 WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n6. RIVERBANK SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF\nSIP 4.9.2 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS\nAS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING SIP 4.9.2,\nOR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n7. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n8. Nothing in this License Agreement shall be deemed to create any\nrelationship of agency, partnership, or joint venture between Riverbank\nand Licensee. This License Agreement does not grant permission to use\nRiverbank trademarks or trade name in a trademark sense to endorse or\npromote products or services of Licensee, or any third party.\n\n9. By copying, installing or otherwise using SIP 4.9.2, Licensee\nagrees to be bound by the terms and conditions of this License Agreement.", + "json": "riverbank-sip.json", + "yaml": "riverbank-sip.yml", + "html": "riverbank-sip.html", + "license": "riverbank-sip.LICENSE" + }, + { + "license_key": "robert-hubley", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-robert-hubley", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software is provided ``AS IS'' and any express or implied \nwarranties, including, but not limited to, the implied warranties of \nmerchantability and fitness for a particular purpose, are disclaimed. \nIn no event shall the authors be liable for any direct, indirect, \nincidental, special, exemplary, or consequential damages (including, but \nnot limited to, procurement of substitute goods or services; loss of use, \ndata, or profits; or business interruption) however caused and on any \ntheory of liability, whether in contract, strict liability, or tort \n(including negligence or otherwise) arising in any way out of the use of \nthis software, even if advised of the possibility of such damage.", + "json": "robert-hubley.json", + "yaml": "robert-hubley.yml", + "html": "robert-hubley.html", + "license": "robert-hubley.LICENSE" + }, + { + "license_key": "rogue-wave", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-rogue-wave", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Rogue Wave Software License\n\n(c) Copyright Rogue Wave Software, Inc.\nALL RIGHTS RESERVED\n\nThe software and information contained herein are proprietary to, and\ncomprise valuable trade secrets of, Rogue Wave Software, Inc., which\nintends to preserve as trade secrets such software and information.\nThis software is furnished pursuant to a written license agreement and\nmay be used, copied, transmitted, and stored only in accordance with\nthe terms of such license and with the inclusion of the above copyright\nnotice. This software and information or any other copies thereof may\nnot be provided or otherwise made available to any other person.\n\nNotwithstanding any other lease or license that may pertain to, or\naccompany the delivery of, this computer software and information, the\nrights of the Government regarding its use, reproduction and disclosure\nare as set forth in Section 52.227-19 of the FARS Computer\nSoftware-Restricted Rights clause.\n\nUse, duplication, or disclosure by the Government is subject to\nrestrictions as set forth in subparagraph (c)(1)(ii) of the Rights in\nTechnical Data and Computer Software clause at DFARS 252.227-7013.\nContractor/Manufacturer is Rogue Wave Software, Inc.,\nP.O. Box 2328, Corvallis, Oregon 97339.\n\nThis computer software and information is distributed with \"restricted\nrights.\" Use, duplication or disclosure is subject to restrictions as\nset forth in NASA FAR SUP 18-52.227-79 (April 1985) \"Commercial\nComputer Software-Restricted Rights (April 1985).\" If the Clause at\n18-52.227-74 \"Rights in Data General\" is specified in the contract,\nthen the \"Alternate III\" clause applies.", + "json": "rogue-wave.json", + "yaml": "rogue-wave.yml", + "html": "rogue-wave.html", + "license": "rogue-wave.LICENSE" + }, + { + "license_key": "rpl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "RPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Reciprocal Public License, version 1.1 \n\nCopyright (C) 2001-2002 Technical Pursuit Inc., \nAll Rights Reserved. \n\nPREAMBLE \n\nThis Preamble is intended to describe, in plain English, the nature, intent, and scope of this License. However, this Preamble is not a part of this License. The legal effect of this License is dependent only upon the terms of the License and not this Preamble. \n\nThis License is based on the concept of reciprocity. In exchange for being granted certain rights under the terms of this License to Licensor's Software, whose Source Code You have access to, You are required to reciprocate by providing equal access and rights to all third parties to the Source Code of any Modifications, Derivative Works, and Required Components for execution of same (collectively defined as Extensions) that You Deploy by Deploying Your Extensions under the terms of this License. In this fashion the available Source Code related to the original Licensed Software is enlarged for the benefit of everyone. \n\nUnder the terms of this License You may: \na. Distribute the Licensed Software exactly as You received it under the terms of this License either alone or as a component of an aggregate software distribution containing programs from several different sources without payment of a royalty or other fee. \nb. Use the Licensed Software for any purpose consistent with the rights granted by this License, but the Licensor is not providing You any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Software doesn't work properly or causes You any injury or damages. \nc. Create Extensions to the Licensed Software consistent with the rights granted by this License, provided that You make the Source Code to any Extensions You Deploy available to all third parties under the terms of this License, document Your Modifications clearly, and title all Extensions distinctly from the Licensed Software. \nd. Charge a fee for warranty or support, or for accepting indemnity or liability obligations for Your customers. \n\nUnder the terms of this License You may not: \na. Charge for the Source Code to the Licensed Software, or Your Extensions, other than a nominal fee not to exceed Your cost for reproduction and distribution where such reproduction and distribution involve physical media. \nb. Modify or delete any pre-existing copyright notices, change notices, or License text in the Licensed Software. \nc. Assert any patent claims against the Licensor or Contributors, or which would in any way restrict the ability of any third party to use the Licensed Software or portions thereof in any form under the terms of this License, or Your rights to the Licensed Software under this License automatically terminate. \nd. Represent either expressly or by implication, appearance, or otherwise that You represent Licensor or \n\nContributors in any capacity or that You have any form of legal association by virtue of this License. \nUnder the terms of this License You must: \na. Document any Modifications You make to the Licensed Software including the nature of the change, the authors of the change, and the date of the change. This documentation must appear both in the Source Code and in a text file titled \"CHANGES\" distributed with the Licensed Software and Your Extensions. \nb. Make the Source Code for any Extensions You Deploy available in a timely fashion via an Electronic Distribution Mechanism such as FTP or HTTP download. \nc. Notify the Licensor of the availability of Source Code to Your Extensions in a timely fashion and include in such notice a brief description of the Extensions, the distinctive title used, and instructions on how to acquire the Source Code and future updates. \nd. Grant Licensor and all third parties a world-wide, non-exclusive, royalty-free license under any intellectual property rights owned or controlled by You to use, reproduce, display, perform, modify, sublicense, and distribute Your Extensions, in any form, under the terms of this License. \n\nLICENSE TERMS \n\n1.0 General; Applicability & Definitions. This Reciprocal Public License Version 1.1 (\"License\") applies to any programs or other works as well as any and all updates or maintenance releases of said programs or works (\"Software\") not already covered by this License which the Software copyright holder (\"Licensor\") makes publicly available containing a Notice (hereinafter defined) from the Licensor specifying or allowing use or distribution under the terms of this License. As used in this License and Preamble: \n\n1.1 \"Contributor\" means any person or entity who created or contributed to the creation of an Extension. \n\n1.2 \"Deploy\" means to use, Serve, sublicense or distribute Licensed Software other than for Your internal Research and/or Personal Use, and includes without limitation, any and all internal use or distribution of Licensed Software within Your business or organization other than for Research and/or Personal Use, as well as direct or indirect sublicensing or distribution of Licensed Software by You to any third party in any form or manner. \n\n1.3 \"Derivative Works\" as used in this License is defined under U.S. copyright law. \n\n1.4 \"Electronic Distribution Mechanism\" means a mechanism generally accepted in the software development community for the electronic transfer of data such as download from an FTP or web site, where such mechanism is publicly accessible. \n\n1.5 \"Extensions\" means any Modifications, Derivative Works, or Required Components as those terms are defined in this License. \n\n1.6 \"License\" means this Reciprocal Public License. \n\n1.7 \"Licensed Software\" means any Software licensed pursuant to this License. Licensed Software also includes all previous Extensions from any Contributor that You receive. \n\n1.8 \"Licensor\" means the copyright holder of any Software previously uncovered by this License who releases the Software under the terms of this License. \n\n1.9 \"Modifications\" means any additions to or deletions from the substance or structure of (i) a file or other storage containing Licensed Software, or (ii) any new file or storage that contains any part of Licensed Software, or (iii) any file or storage which replaces or otherwise alters the original functionality of Licensed Software at runtime. \n\n1.10 \"Notice\" means the notice contained in EXHIBIT A. \n\n1.11 \"Personal Use\" means use of Licensed Software by an individual solely for his or her personal, private and non-commercial purposes. An individual's use of Licensed Software in his or her capacity as an officer, employee, member, independent contractor or agent of a corporation, business or organization (commercial or non-commercial) does not qualify as Personal Use. \n\n1.12 \"Required Components\" means any text, programs, scripts, schema, interface definitions, control files, or other works created by You which are required by a third party of average skill to successfully install and run Licensed Software containing Your Modifications, or to install and run Your Derivative Works. \n\n1.13 \"Research\" means investigation or experimentation for the purpose of understanding the nature and limits of the Licensed Software and its potential uses. \n\n1.14 \"Serve\" means to deliver Licensed Software and/or Your Extensions by means of a computer network to one or more computers for purposes of execution of Licensed Software and/or Your Extensions. \n\n1.15 \"Software\" means any computer programs or other works as well as any updates or maintenance releases of those programs or works which are distributed publicly by Licensor. \n\n1.16 \"Source Code\" means the preferred form for making modifications to the Licensed Software and/or Your Extensions, including all modules contained therein, plus any associated text, interface definition files, scripts used to control compilation and installation of an executable program or other components required by a third party of average skill to build a running version of the Licensed Software or Your Extensions. \n\n1.17 \"You\" or \"Your\" means an individual or a legal entity exercising rights under this License. For legal entities, \"You\" or \"Your\" includes any entity which controls, is controlled by, or is under common control with, You, where \"control\" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. \n\n2.0 Acceptance Of License. You are not required to accept this License since you have not signed it, however nothing else grants you permission to use, copy, distribute, modify, or create derivatives of either the Software or any Extensions created by a Contributor. These actions are prohibited by law if you do not accept this License. Therefore, by performing any of these actions You indicate Your acceptance of this License and Your agreement to be bound by all its terms and conditions. IF YOU DO NOT AGREE WITH ALL THE TERMS AND CONDITIONS OF THIS LICENSE DO NOT USE, MODIFY, CREATE DERIVATIVES, OR DISTRIBUTE THE SOFTWARE. IF IT IS IMPOSSIBLE FOR YOU TO COMPLY WITH ALL THE TERMS AND CONDITIONS OF THIS LICENSE THEN YOU CAN NOT USE, MODIFY, CREATE DERIVATIVES, OR DISTRIBUTE THE SOFTWARE. \n\n3.0 Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants You a world-wide, royalty-free, non-exclusive license, subject to Licensor's intellectual property rights, and any third party intellectual property claims derived from the Licensed Software under this License, to do the following: \n\n3.1 Use, reproduce, modify, display, perform, sublicense and distribute Licensed Software and Your Extensions in both Source Code form or as an executable program. \n\n3.2 Create Derivative Works (as that term is defined under U.S. copyright law) of Licensed Software by adding to or deleting from the substance or structure of said Licensed Software. \n\n3.3 Under claims of patents now or hereafter owned or controlled by Licensor, to make, use, have made, and/or otherwise dispose of Licensed Software or portions thereof, but solely to the extent that any such claim is necessary to enable You to make, use, have made, and/or otherwise dispose of Licensed Software or portions thereof. \n\n3.4 Licensor reserves the right to release new versions of the Software with different features, specifications, capabilities, functions, licensing terms, general availability or other characteristics. Title, ownership rights, and intellectual property rights in and to the Licensed Software shall remain in Licensor and/or its Contributors. \n\n4.0 Grant of License From Contributor. By application of the provisions in Section 6 below, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license, subject to said Contributor's intellectual property rights, and any third party intellectual property claims derived from the Licensed Software under this License, to do the following: \n\n4.1 Use, reproduce, modify, display, perform, sublicense and distribute any Extensions Deployed by such Contributor or portions thereof, in both Source Code form or as an executable program, either on an unmodified basis or as part of Derivative Works. \n\n4.2 Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, have made, and/or otherwise dispose of Extensions or portions thereof, but solely to the extent that any such claim is necessary to enable You to make, use, have made, and/or otherwise dispose of Contributor's Extensions or portions thereof. \n\n5.0 Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. Except as expressly stated in Sections 3 and 4, no other patent rights, express or implied, are granted herein. Your Extensions may require additional patent licenses from Licensor or Contributors which each may grant in its sole discretion. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Software. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. \n\n5.1 You expressly acknowledge and agree that although Licensor and each Contributor grants the licenses to their respective portions of the Licensed Software set forth herein, no assurances are provided by Licensor or any Contributor that the Licensed Software does not infringe the patent or other intellectual property rights of any other entity. Licensor and each Contributor disclaim any liability to You for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, You hereby assume sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow You to distribute the Licensed Software, it is Your responsibility to acquire that license before distributing the Licensed Software. \n\n6.0 Your Obligations And Grants. In consideration of, and as an express condition to, the licenses granted to You under this License You hereby agree that any Modifications, Derivative Works, or Required Components (collectively Extensions) that You create or to which You contribute are governed by the terms of this License including, without limitation, Section 4. Any Extensions that You create or to which You contribute must be Deployed under the terms of this License or a future version of this License released under Section 7. You hereby grant to Licensor and all third parties a world-wide, non-exclusive, royalty-free license under those intellectual property rights You own or control to use, reproduce, display, perform, modify, create derivatives, sublicense, and distribute Your Extensions, in any form. Any Extensions You make and Deploy must have a distinct title so as to readily tell any subsequent user or Contributor that the Extensions are by You. You must include a copy of this License with every copy of the Extensions You distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Software, or its Extensions that alter or restrict the applicable version of this License or the recipients' rights hereunder. \n\n6.1 Availability of Source Code. You must make available, under the terms of this License, the Source Code of the Licensed Software and any Extensions that You Deploy, either on the same media as You distribute any executable or other form of the Licensed Software, or via an Electronic Distribution Mechanism. The Source Code for any version of Licensed Software, or its Extensions that You Deploy must be made available at the time of Deployment and must remain available for as long as You Deploy the Extensions or at least twelve (12) months after the date You Deploy, whichever is longer. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. You may not charge a fee for the Source Code distributed under this Section in excess of Your actual cost of duplication and distribution where such duplication and distribution involve physical media. \n\n6.2 Description of Modifications. You must cause any Modifications that You create or to which You contribute, to update the file titled \"CHANGES\" distributed with Licensed Software documenting the additions, changes or deletions You made, the authors of such Modifications, and the dates of any such additions, changes or deletions. You must also cause a cross-reference to appear in the Source Code at the location of each change. You must include a prominent statement that the Modifications are derived, directly or indirectly, from the Licensed Software and include the names of the Licensor and any Contributor to the Licensed Software in (i) the Source Code and (ii) in any notice displayed by the Licensed Software You distribute or in related documentation in which You describe the origin or ownership of the Licensed Software. You may not modify or delete any pre-existing copyright notices, change notices or License text in the Licensed Software. \n\n6.3 Intellectual Property Matters. \na. Third Party Claims. If You have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, You must include a text file with the Source Code distribution titled \"LEGAL\" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If You obtain such knowledge after You make any Extensions available as described in Section 6.1, You shall promptly modify the LEGAL file in all copies You make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Software from You that new knowledge has been obtained. \nb. Contributor APIs. If Your Extensions include an application programming interface (\"API\") and You have knowledge of patent licenses that are reasonably necessary to implement that API, You must also include this information in the LEGAL file. \nc. Representations. You represent that, except as disclosed pursuant to 6.3(a) above, You believe that any Extensions You distribute are Your original creations and that You have sufficient rights to grant the rights conveyed by this License. \n\n6.4 Required Notices. \na. License Text. You must duplicate this License in any documentation You provide along with the Source Code of any Extensions You create or to which You contribute, wherever You describe recipients' rights relating to Licensed Software. You must duplicate the notice contained in EXHIBIT A (the \"Notice\") in each file of the Source Code of any copy You distribute of the Licensed Software and Your Extensions. If You create an Extension, You may add Your name as a Contributor to the text file titled \"CONTRIB\" distributed with the Licensed Software along with a description of the contribution. If it is not possible to put the Notice in a particular Source Code file due to its structure, then You must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. \nb. Source Code Availability. You must notify Licensor within one (1) month of the date You initially Deploy of the availability of Source Code to Your Extensions and include in such notification the name under which you Deployed Your Extensions, a description of the Extensions, and instructions on how to acquire the Source Code, including instructions on how to acquire updates over time. Should such instructions change you must provide Licensor with revised instructions within one (1) month of the date of change. Should you be unable to notify Licensor directly, you must provide notification by posting to appropriate news groups, mailing lists, or web sites where a search engine would reasonably be expected to index them. \n\n6.5 Additional Terms. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Software. However, You may do so only on Your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Licensor and every Contributor for any liability plus attorney fees, costs, and related expenses due to any such action or claim incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms You offer. \n\n6.6 Conflicts With Other Licenses. Where any portion of Your Extensions, by virtue of being Derivative Works of another product or similar circumstance, fall under the terms of another license, the terms of that license should be honored however You must also make Your Extensions available under this License. If the terms of this License continue to conflict with the terms of the other license you may write the Licensor for permission to resolve the conflict in a fashion that remains consistent with the intent of this License. Such permission will be granted at the sole discretion of the Licensor. \n\n7.0 Versions of This License. Licensor may publish from time to time revised and/or new versions of the License. Once Licensed Software has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Licensed Software under the terms of any subsequent version of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Software created under this License. \n\n7.1 If You create or use a modified version of this License, which You may do only in order to apply it to software that is not already Licensed Software under this License, You must rename Your license so that it is not confusingly similar to this License, and must make it clear that Your license contains terms that differ from this License. In so naming Your license, You may not use any trademark of Licensor or of any Contributor. Should Your modifications to this License be limited to alteration of EXHIBIT A purely for purposes of adjusting the Notice You require of licensees, You may continue to refer to Your License as the Reciprocal Public License or simply the RPL. \n\n8.0 Disclaimer of Warranty. LICENSED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. FURTHER THERE IS NO WARRANTY MADE AND ALL IMPLIED WARRANTIES ARE DISCLAIMED THAT THE LICENSED SOFTWARE MEETS OR COMPLIES WITH ANY DESCRIPTION OF PERFORMANCE OR OPERATION, SAID COMPATIBILITY AND SUITABILITY BEING YOUR RESPONSIBILITY. LICENSOR DISCLAIMS ANY WARRANTY, IMPLIED OR EXPRESSED, THAT ANY CONTRIBUTOR'S EXTENSIONS MEET ANY STANDARD OF COMPATIBILITY OR DESCRIPTION OF PERFORMANCE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED SOFTWARE IS WITH YOU. SHOULD LICENSED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. UNDER THE TERMS OF THIS LICENSOR WILL NOT SUPPORT THIS SOFTWARE AND IS UNDER NO OBLIGATION TO ISSUE UPDATES TO THIS SOFTWARE. LICENSOR HAS NO KNOWLEDGE OF ERRANT CODE OR VIRUS IN THIS SOFTWARE, BUT DOES NOT WARRANT THAT THE SOFTWARE IS FREE FROM SUCH ERRORS OR VIRUSES. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. \n\n9.0 Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. \n\n10.0 High Risk Activities. THE LICENSED SOFTWARE IS NOT FAULT-TOLERANT AND IS NOT DESIGNED, MANUFACTURED, OR INTENDED FOR USE OR DISTRIBUTION AS ON-LINE CONTROL EQUIPMENT IN HAZARDOUS ENVIRONMENTS REQUIRING FAIL-SAFE PERFORMANCE, SUCH AS IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR COMMUNICATIONS SYSTEMS, AIR TRAFFIC CONTROL, DIRECT LIFE SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH THE FAILURE OF THE LICENSED SOFTWARE COULD LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE (\"HIGH RISK ACTIVITIES\"). LICENSOR AND CONTRIBUTORS SPECIFICALLY DISCLAIM ANY EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR HIGH RISK ACTIVITIES. \n\n11.0 Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License which specifically disclaims warranties and limits any liability of the Licensor. This paragraph is to be used in conjunction with and controlled by the Disclaimer Of Warranties of Section 8, the Limitation Of Damages in Section 9, and the disclaimer against use for High Risk Activities in Section 10. The Licensor has thereby disclaimed all warranties and limited any damages that it is or may be liable for. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis consistent with the terms of this License including Sections 8, 9, and 10. Nothing herein is intended or shall be deemed to constitute any admission of liability. \n\n12.0 Termination. This License and all rights granted hereunder will terminate immediately in the event of the circumstances described in Section 13.6 or if applicable law prohibits or restricts You from fully and or specifically complying with Sections 3, 4 and/or 6, or prevents the enforceability of any of those Sections, and You must immediately discontinue any use of Licensed Software. \n\n12.1 Automatic Termination Upon Breach. This License and the rights granted hereunder will terminate automatically if You fail to comply with the terms herein and fail to cure such breach within thirty (30) days of becoming aware of the breach. All sublicenses to the Licensed Software that are properly granted shall survive any termination of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. \n\n12.2 Termination Upon Assertion of Patent Infringement. If You initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom You file such an action is referred to herein as \"Respondent\") alleging that Licensed Software directly or indirectly infringes any patent, then any and all rights granted by such Respondent to You under Sections 3 or 4 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the \"Notice Period\") unless within that Notice Period You either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for Your past or future use of Licensed Software made by such Respondent, or (ii) withdraw Your litigation claim with respect to Licensed Software against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to You under Sections 3 and 4 automatically terminate at the expiration of said Notice Period. \n\n12.3 Reasonable Value of This License. If You assert a patent infringement claim against Respondent alleging that Licensed Software directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 3 and 4 shall be taken into account in determining the amount or value of any payment or license. \n\n12.4 No Retroactive Effect of Termination. In the event of termination under this Section all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by You or any distributor hereunder prior to termination shall survive termination. \n\n13.0 Miscellaneous. \n\n13.1 U.S. Government End Users. The Licensed Software is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Software with only those rights set forth herein. \n\n13.2 Relationship of Parties. This License will not be construed as creating an agency, partnership, joint venture, or any other form of legal association between or among You, Licensor, or any Contributor, and You will not represent to the contrary, whether expressly, by implication, appearance, or otherwise. \n\n13.3 Independent Development. Nothing in this License will impair Licensor's right to acquire, license, develop, subcontract, market, or distribute technology or products that perform the same or similar functions as, or otherwise compete with, Extensions that You may develop, produce, market, or distribute. \n\n13.4 Consent To Breach Not Waiver. Failure by Licensor or Contributor to enforce any provision of this License will not be deemed a waiver of future enforcement of that or any other provision. \n\n13.5 Severability. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. \n\n13.6 Inability to Comply Due to Statute or Regulation. If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Licensed Software due to statute, judicial order, or regulation, then You cannot use, modify, or distribute the software. \n\n13.7 Export Restrictions. You may be restricted with respect to downloading or otherwise acquiring, exporting, or reexporting the Licensed Software or any underlying information or technology by United States and other applicable laws and regulations. By downloading or by otherwise obtaining the Licensed Software, You are agreeing to be responsible for compliance with all applicable laws and regulations. \n\n13.8 Arbitration, Jurisdiction & Venue. This License shall be governed by Colorado law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that any dispute relating to this License shall be submitted to binding arbitration under the rules then prevailing of the American Arbitration Association. You further agree that Adams County, Colorado USA is proper venue and grant such arbitration proceeding jurisdiction as may be appropriate for purposes of resolving any dispute under this License. Judgement upon any award made in arbitration may be entered and enforced in any court of competent jurisdiction. The arbitrator shall award attorney's fees and costs of arbitration to the prevailing party. Should either party find it necessary to enforce its arbitration award or seek specific performance of such award in a civil court of competent jurisdiction, the prevailing party shall be entitled to reasonable attorney's fees and costs. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. You and Licensor expressly waive any rights to a jury trial in any litigation concerning Licensed Software or this License. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. \n\n13.9 Entire Agreement. This License constitutes the entire agreement between the parties with respect to the subject matter hereof. \n\nEXHIBIT A \n\nThe Notice below must appear in each file of the Source Code of any copy You distribute of the Licensed Software or any Extensions thereto, except as may be modified as allowed under the terms of Section 7.1 \nCopyright (C) 1999-2002 Technical Pursuit Inc., All Rights Reserved. Patent Pending, Technical Pursuit Inc. \n\nUnless explicitly acquired and licensed from Licensor under the Technical Pursuit License (\"TPL\") Version 1.0 or greater, the contents of this file are subject to the Reciprocal Public License (\"RPL\") Version 1.1, or subsequent versions as allowed by the RPL, and You may not copy or use this file in either source code or executable form, except in compliance with the terms and conditions of the RPL. \nYou may obtain a copy of both the TPL and the RPL (the \"Licenses\") from Technical Pursuit Inc. at http://www.technicalpursuit.com. \n\nAll software distributed under the Licenses is provided strictly on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND TECHNICAL PURSUIT INC. HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT, OR NON-INFRINGEMENT. See the Licenses for specific language governing rights and limitations under the Licenses.", + "json": "rpl-1.1.json", + "yaml": "rpl-1.1.yml", + "html": "rpl-1.1.html", + "license": "rpl-1.1.LICENSE" + }, + { + "license_key": "rpl-1.5", + "category": "Copyleft Limited", + "spdx_license_key": "RPL-1.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Reciprocal Public License (RPL)\n\nVersion 1.5, July 15, 2007\n\nCopyright (C) 2001-2007\nTechnical Pursuit Inc.,\nAll Rights Reserved.\n\nLICENSE TERMS\n\n1.0 General; Applicability & Definitions. This Reciprocal Public License Version 1.5 (\"License\") applies to any programs or other works as well as any and all updates or maintenance releases of said programs or works (\"Software\") not already covered by this License which the Software copyright holder (\"Licensor\") makes available containing a License Notice (hereinafter defined) from the Licensor specifying or allowing use or distribution under the terms of this License. As used in this License:\n\n1.1 \"Contributor\" means any person or entity who created or contributed to the creation of an Extension.\n\n1.2 \"Deploy\" means to use, Serve, sublicense or distribute Licensed Software other than for Your internal Research and/or Personal Use, and includes without limitation, any and all internal use or distribution of Licensed Software within Your business or organization other than for Research and/or Personal Use, as well as direct or indirect sublicensing or distribution of Licensed Software by You to any third party in any form or manner.\n\n1.3 \"Derivative Works\" as used in this License is defined under U.S. copyright law.\n\n1.4 \"Electronic Distribution Mechanism\" means a mechanism generally accepted in the software development community for the electronic transfer of data such as download from an FTP server or web site, where such mechanism is publicly accessible.\n\n1.5 \"Extensions\" means any Modifications, Derivative Works, or Required Components as those terms are defined in this License.\n\n1.6 \"License\" means this Reciprocal Public License.\n\n1.7 \"License Notice\" means any notice contained in EXHIBIT A.\n\n1.8 \"Licensed Software\" means any Software licensed pursuant to this License.\nLicensed Software also includes all previous Extensions from any Contributor that You receive.\n\n1.9 \"Licensor\" means the copyright holder of any Software previously not covered by this License who releases the Software under the terms of this License.\n\n1.10 \"Modifications\" means any additions to or deletions from the substance or structure of (i) a file or other storage containing Licensed Software, or (ii) any new file or storage that contains any part of Licensed Software, or (iii) any file or storage which replaces or otherwise alters the original functionality of Licensed Software at runtime.\n\n1.11 \"Personal Use\" means use of Licensed Software by an individual solely for his or her personal, private and non-commercial purposes. An individual's use of Licensed Software in his or her capacity as an officer, employee, member, independent contractor or agent of a corporation, business or organization (commercial or non-commercial) does not qualify as Personal Use.\n\n1.12 \"Required Components\" means any text, programs, scripts, schema, interface definitions, control files, or other works created by You which are required by a third party of average skill to successfully install and run Licensed Software containing Your Modifications, or to install and run Your Derivative Works.\n\n1.13 \"Research\" means investigation or experimentation for the purpose of understanding the nature and limits of the Licensed Software and its potential uses.\n\n1.14 \"Serve\" means to deliver Licensed Software and/or Your Extensions by means of a computer network to one or more computers for purposes of execution of Licensed Software and/or Your Extensions.\n\n1.15 \"Software\" means any computer programs or other works as well as any updates or maintenance releases of those programs or works which are distributed publicly by Licensor.\n\n1.16 \"Source Code\" means the preferred form for making modifications to the Licensed Software and/or Your Extensions, including all modules contained therein, plus any associated text, interface definition files, scripts used to control compilation and installation of an executable program or other components required by a third party of average skill to build a running version of the Licensed Software or Your Extensions.\n\n1.17 \"User-Visible Attribution Notice\" means any notice contained in EXHIBIT B.\n\n1.18 \"You\" or \"Your\" means an individual or a legal entity exercising rights under this License. For legal entities, \"You\" or \"Your\" includes any entity which controls, is controlled by, or is under common control with, You, where \"control\" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity.\n\n2.0 Acceptance Of License. You are not required to accept this License since you have not signed it, however nothing else grants you permission to use, copy, distribute, modify, or create derivatives of either the Software or any Extensions created by a Contributor. These actions are prohibited by law if you do not accept this License. Therefore, by performing any of these actions You indicate Your acceptance of this License and Your agreement to be bound by all its terms and conditions. IF YOU DO NOT AGREE WITH ALL THE TERMS AND CONDITIONS OF THIS LICENSE DO NOT USE, MODIFY, CREATE DERIVATIVES, OR DISTRIBUTE THE SOFTWARE. IF IT IS IMPOSSIBLE FOR YOU TO COMPLY WITH ALL THE TERMS AND CONDITIONS OF THIS LICENSE THEN YOU CAN NOT USE, MODIFY, CREATE DERIVATIVES, OR DISTRIBUTE THE SOFTWARE.\n\n3.0 Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants You a world-wide, royalty-free, non- exclusive license, subject to Licensor's intellectual property rights, and any third party intellectual property claims derived from the Licensed Software under this License, to do the following:\n\n3.1 Use, reproduce, modify, display, perform, sublicense and distribute Licensed Software and Your Extensions in both Source Code form or as an executable program.\n\n3.2 Create Derivative Works (as that term is defined under U.S. copyright law) of Licensed Software by adding to or deleting from the substance or structure of said Licensed Software.\n\n3.3 Under claims of patents now or hereafter owned or controlled by Licensor, to make, use, have made, and/or otherwise dispose of Licensed Software or portions thereof, but solely to the extent that any such claim is necessary to enable You to make, use, have made, and/or otherwise dispose of Licensed Software or portions thereof.\n\n3.4 Licensor reserves the right to release new versions of the Software with different features, specifications, capabilities, functions, licensing terms, general availability or other characteristics. Title, ownership rights, and intellectual property rights in and to the Licensed Software shall remain in Licensor and/or its Contributors.\n\n4.0 Grant of License From Contributor. By application of the provisions in Section 6 below, each Contributor hereby grants You a world-wide, royalty- free, non-exclusive license, subject to said Contributor's intellectual property rights, and any third party intellectual property claims derived from the Licensed Software under this License, to do the following:\n\n4.1 Use, reproduce, modify, display, perform, sublicense and distribute any Extensions Deployed by such Contributor or portions thereof, in both Source Code form or as an executable program, either on an unmodified basis or as part of Derivative Works.\n\n4.2 Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, have made, and/or otherwise dispose of Extensions or portions thereof, but solely to the extent that any such claim is necessary to enable You to make, use, have made, and/or otherwise dispose of Licensed Software or portions thereof.\n\n5.0 Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. Except as expressly stated in Sections 3 and 4, no other patent rights, express or implied, are granted herein. Your Extensions may require additional patent licenses from Licensor or Contributors which each may grant in its sole discretion. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Software. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license.\n\n5.1 You expressly acknowledge and agree that although Licensor and each Contributor grants the licenses to their respective portions of the Licensed Software set forth herein, no assurances are provided by Licensor or any Contributor that the Licensed Software does not infringe the patent or other intellectual property rights of any other entity. Licensor and each Contributor disclaim any liability to You for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, You hereby assume sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow You to distribute the Licensed Software, it is Your responsibility to acquire that license before distributing the Licensed Software.\n\n6.0 Your Obligations And Grants. In consideration of, and as an express condition to, the licenses granted to You under this License You hereby agree that any Modifications, Derivative Works, or Required Components (collectively\nExtensions) that You create or to which You contribute are governed by the terms of this License including, without limitation, Section 4. Any Extensions that You create or to which You contribute must be Deployed under the terms of this License or a future version of this License released under Section 7. You hereby grant to Licensor and all third parties a world-wide, non-exclusive, royalty-free license under those intellectual property rights You own or control to use, reproduce, display, perform, modify, create derivatives, sublicense, and distribute Licensed Software, in any form. Any Extensions You make and Deploy must have a distinct title so as to readily tell any subsequent user or Contributor that the Extensions are by You. You must include a copy of this License or directions on how to obtain a copy with every copy of the Extensions You distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Software, or its Extensions that alter or restrict the applicable version of this License or the recipients' rights hereunder.\n\n6.1 Availability of Source Code. You must make available, under the terms of this License, the Source Code of any Extensions that You Deploy, via an Electronic Distribution Mechanism. The Source Code for any version that You Deploy must be made available within one (1) month of when you Deploy and must remain available for no less than twelve (12) months after the date You cease to Deploy. You are responsible for ensuring that the Source Code to each version You Deploy remains available even if the Electronic Distribution Mechanism is maintained by a third party. You may not charge a fee for any copy of the Source Code distributed under this Section in excess of Your actual cost of duplication and distribution of said copy.\n\n6.2 Description of Modifications. You must cause any Modifications that You create or to which You contribute to be documented in the Source Code, clearly describing the additions, changes or deletions You made. You must include a prominent statement that the Modifications are derived, directly or indirectly, from the Licensed Software and include the names of the Licensor and any Contributor to the Licensed Software in (i) the Source Code and (ii) in any notice displayed by the Licensed Software You distribute or in related documentation in which You describe the origin or ownership of the Licensed Software. You may not modify or delete any pre-existing copyright notices, change notices or License text in the Licensed Software without written permission of the respective Licensor or Contributor.\n\n6.3 Intellectual Property Matters.\n\na. Third Party Claims. If You have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, You must include a human-readable file with Your distribution that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact.\n\nb. Contributor APIs. If Your Extensions include an application programming interface (\"API\") and You have knowledge of patent licenses that are reasonably necessary to implement that API, You must also include this information in a human-readable file supplied with Your distribution.\n\nc. Representations. You represent that, except as disclosed pursuant to 6.3(a) above, You believe that any Extensions You distribute are Your original creations and that You have sufficient rights to grant the rights conveyed by this License.\n\n6.4 Required Notices.\n\na. License Text. You must duplicate this License or instructions on how to acquire a copy in any documentation You provide along with the Source Code of any Extensions You create or to which You contribute, wherever You describe recipients' rights relating to Licensed Software.\n\nb. License Notice. You must duplicate any notice contained in EXHIBIT A (the \"License Notice\") in each file of the Source Code of any copy You distribute of the Licensed Software and Your Extensions. If You create an Extension, You may add Your name as a Contributor to the Source Code and accompanying documentation along with a description of the contribution. If it is not possible to put the License Notice in a particular Source Code file due to its structure, then You must include such License Notice in a location where a user would be likely to look for such a notice.\n\nc. Source Code Availability. You must notify the software community of the availability of Source Code to Your Extensions within one (1) month of the date You initially Deploy and include in such notification a description of the Extensions, and instructions on how to acquire the Source Code. Should such instructions change you must notify the software community of revised instructions within one (1) month of the date of change. You must provide notification by posting to appropriate news groups, mailing lists, weblogs, or other sites where a publicly accessible search engine would reasonably be expected to index your post in relationship to queries regarding the Licensed Software and/or Your Extensions.\n\nd. User-Visible Attribution. You must duplicate any notice contained in EXHIBIT B (the \"User-Visible Attribution Notice\") in each user-visible display of the Licensed Software and Your Extensions which delineates copyright, ownership, or similar attribution information. If You create an Extension, You may add Your name as a Contributor, and add Your attribution notice, as an equally visible and functional element of any User-Visible Attribution Notice content. To ensure proper attribution, You must also include such User-Visible Attribution Notice in at least one location in the Software documentation where a user would be likely to look for such notice.\n\n6.5 Additional Terms. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Software. However, You may do so only on Your own behalf, and not on behalf of the Licensor or any Contributor except as permitted under other agreements between you and Licensor or Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Licensor and every Contributor for any liability plus attorney fees, costs, and related expenses due to any such action or claim incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms You offer.\n\n6.6 Conflicts With Other Licenses. Where any portion of Your Extensions, by virtue of being Derivative Works of another product or similar circumstance, fall under the terms of another license, the terms of that license should be honored however You must also make Your Extensions available under this License. If the terms of this License continue to conflict with the terms of the other license you may write the Licensor for permission to resolve the conflict in a fashion that remains consistent with the intent of this License.\nSuch permission will be granted at the sole discretion of the Licensor.\n\n7.0 Versions of This License. Licensor may publish from time to time revised versions of the License. Once Licensed Software has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Licensed Software under the terms of any subsequent version of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Software created under this License.\n\n7.1 If You create or use a modified version of this License, which You may do only in order to apply it to software that is not already Licensed Software under this License, You must rename Your license so that it is not confusingly similar to this License, and must make it clear that Your license contains terms that differ from this License. In so naming Your license, You may not use any trademark of Licensor or of any Contributor. Should Your modifications to this License be limited to alteration of a) Section 13.8 solely to modify the legal Jurisdiction or Venue for disputes, b) EXHIBIT A solely to define License Notice text, or c) to EXHIBIT B solely to define a User-Visible Attribution Notice, You may continue to refer to Your License as the Reciprocal Public License or simply the RPL.\n\n8.0 Disclaimer of Warranty. LICENSED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.\nFURTHER THERE IS NO WARRANTY MADE AND ALL IMPLIED WARRANTIES ARE DISCLAIMED THAT THE LICENSED SOFTWARE MEETS OR COMPLIES WITH ANY DESCRIPTION OF PERFORMANCE OR OPERATION, SAID COMPATIBILITY AND SUITABILITY BEING YOUR RESPONSIBILITY. LICENSOR DISCLAIMS ANY WARRANTY, IMPLIED OR EXPRESSED, THAT ANY CONTRIBUTOR'S EXTENSIONS MEET ANY STANDARD OF COMPATIBILITY OR DESCRIPTION OF PERFORMANCE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED SOFTWARE IS WITH YOU. SHOULD LICENSED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. UNDER THE TERMS OF THIS LICENSOR WILL NOT SUPPORT THIS SOFTWARE AND IS UNDER NO OBLIGATION TO ISSUE UPDATES TO THIS SOFTWARE. LICENSOR HAS NO KNOWLEDGE OF ERRANT CODE OR VIRUS IN THIS SOFTWARE, BUT DOES NOT WARRANT THAT THE SOFTWARE IS FREE FROM SUCH ERRORS OR VIRUSES. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n9.0 Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10.0 High Risk Activities. THE LICENSED SOFTWARE IS NOT FAULT-TOLERANT AND IS NOT DESIGNED, MANUFACTURED, OR INTENDED FOR USE OR DISTRIBUTION AS ON-LINE CONTROL EQUIPMENT IN HAZARDOUS ENVIRONMENTS REQUIRING FAIL-SAFE PERFORMANCE, SUCH AS IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR COMMUNICATIONS SYSTEMS, AIR TRAFFIC CONTROL, DIRECT LIFE SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH THE FAILURE OF THE LICENSED SOFTWARE COULD LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE (\"HIGH RISK ACTIVITIES\"). LICENSOR AND CONTRIBUTORS SPECIFICALLY DISCLAIM ANY EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR HIGH RISK ACTIVITIES.\n\n11.0 Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License which specifically disclaims warranties and limits any liability of the Licensor. This paragraph is to be used in conjunction with and controlled by the Disclaimer Of Warranties of Section 8, the Limitation Of Damages in Section 9, and the disclaimer against use for High Risk Activities in Section 10. The Licensor has thereby disclaimed all warranties and limited any damages that it is or may be liable for. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis consistent with the terms of this License including Sections 8, 9, and 10. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\n12.0 Termination. This License and all rights granted hereunder will terminate immediately in the event of the circumstances described in Section 13.6 or if applicable law prohibits or restricts You from fully and or specifically complying with Sections 3, 4 and/or 6, or prevents the enforceability of any of those Sections, and You must immediately discontinue any use of Licensed Software.\n\n12.1 Automatic Termination Upon Breach. This License and the rights granted hereunder will terminate automatically if You fail to comply with the terms herein and fail to cure such breach within thirty (30) days of becoming aware of the breach. All sublicenses to the Licensed Software that are properly granted shall survive any termination of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive.\n\n12.2 Termination Upon Assertion of Patent Infringement. If You initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom You file such an action is referred to herein as \"Respondent\") alleging that Licensed Software directly or indirectly infringes any patent, then any and all rights granted by such Respondent to You under Sections 3 or\n4 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the \"Notice Period\") unless within that Notice Period You either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for Your past or future use of Licensed Software made by such Respondent, or (ii) withdraw Your litigation claim with respect to Licensed Software against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to You under Sections 3 and 4 automatically terminate at the expiration of said Notice Period.\n\n12.3 Reasonable Value of This License. If You assert a patent infringement claim against Respondent alleging that Licensed Software directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 3 and 4 shall be taken into account in determining the amount or value of any payment or license.\n\n12.4 No Retroactive Effect of Termination. In the event of termination under this Section all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by You or any distributor hereunder prior to termination shall survive termination.\n\n13.0 Miscellaneous.\n\n13.1 U.S. Government End Users. The Licensed Software is a \"commercial item,\"\nas that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995).\nConsistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Software with only those rights set forth herein.\n\n13.2 Relationship of Parties. This License will not be construed as creating an agency, partnership, joint venture, or any other form of legal association between or among You, Licensor, or any Contributor, and You will not represent to the contrary, whether expressly, by implication, appearance, or otherwise.\n\n13.3 Independent Development. Nothing in this License will impair Licensor's right to acquire, license, develop, subcontract, market, or distribute technology or products that perform the same or similar functions as, or otherwise compete with, Extensions that You may develop, produce, market, or distribute.\n\n13.4 Consent To Breach Not Waiver. Failure by Licensor or Contributor to enforce any provision of this License will not be deemed a waiver of future enforcement of that or any other provision.\n\n13.5 Severability. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable.\n\n13.6 Inability to Comply Due to Statute or Regulation. If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Licensed Software due to statute, judicial order, or regulation, then You cannot use, modify, or distribute the software.\n\n13.7 Export Restrictions. You may be restricted with respect to downloading or otherwise acquiring, exporting, or reexporting the Licensed Software or any underlying information or technology by United States and other applicable laws and regulations. By downloading or by otherwise obtaining the Licensed Software, You are agreeing to be responsible for compliance with all applicable laws and regulations.\n\n13.8 Arbitration, Jurisdiction & Venue. This License shall be governed by Colorado law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that any dispute relating to this License shall be submitted to binding arbitration under the rules then prevailing of the American Arbitration Association. You further agree that Adams County, Colorado USA is proper venue and grant such arbitration proceeding jurisdiction as may be appropriate for purposes of resolving any dispute under this License. Judgement upon any award made in arbitration may be entered and enforced in any court of competent jurisdiction. The arbitrator shall award attorney's fees and costs of arbitration to the prevailing party. Should either party find it necessary to enforce its arbitration award or seek specific performance of such award in a civil court of competent jurisdiction, the prevailing party shall be entitled to reasonable attorney's fees and costs. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. You and Licensor expressly waive any rights to a jury trial in any litigation concerning Licensed Software or this License. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n13.9 Entire Agreement. This License constitutes the entire agreement between the parties with respect to the subject matter hereof.\n\nEXHIBIT A\n\nThe License Notice below must appear in each file of the Source Code of any copy You distribute of the Licensed Software or any Extensions thereto:\n\nUnless explicitly acquired and licensed from Licensor under another license, the contents of this file are subject to the Reciprocal Public License (\"RPL\") Version 1.5, or subsequent versions as allowed by the RPL, and You may not copy or use this file in either source code or executable form, except in compliance with the terms and conditions of the RPL.\n\nAll software distributed under the RPL is provided strictly on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND LICENSOR HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT, OR NON-INFRINGEMENT. See the RPL for specific language governing rights and limitations under the RPL.\n\nEXHIBIT B\n\nThe User-Visible Attribution Notice below, when provided, must appear in each user-visible display as defined in Section 6.4 (d):", + "json": "rpl-1.5.json", + "yaml": "rpl-1.5.yml", + "html": "rpl-1.5.html", + "license": "rpl-1.5.LICENSE" + }, + { + "license_key": "rpsl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "RPSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "RealNetworks Public Source License Version 1.0\n(Rev. Date October 28, 2002)\n\n1. General Definitions. This License applies to any program or other work which\nRealNetworks, Inc., or any other entity that elects to use this license,\n(\"Licensor\") makes publicly available and which contains a notice placed by\nLicensor identifying such program or work as \"Original Code\" and stating that it\nis subject to the terms of this RealNetworks Public Source License version 1.0\n(or subsequent version thereof) (\"License\"). You are not required to accept this\nLicense. However, nothing else grants You permission to use, copy, modify or\ndistribute the software or its derivative works. These actions are prohibited by\nlaw if You do not accept this License. Therefore, by modifying, copying or\ndistributing the software (or any work based on the software), You indicate your\nacceptance of this License to do so, and all its terms and conditions. In\naddition, you agree to the terms of this License by clicking the Accept button\nor downloading the software. As used in this License:\n\n1.1 \"Applicable Patent Rights\" mean: (a) in the case where Licensor is the\ngrantor of rights, claims of patents that (i) are now or hereafter acquired,\nowned by or assigned to Licensor and (ii) are necessarily infringed by using or\nmaking the Original Code alone and not in combination with other software or\nhardware; and (b) in the case where You are the grantor of rights, claims of\npatents that (i) are now or hereafter acquired, owned by or assigned to You and\n(ii) are infringed (directly or indirectly) by using or making Your\nModifications, taken alone or in combination with Original Code.\n\n1.2 \"Compatible Source License\" means any one of the licenses listed on Exhibit\nB or at https://www.helixcommunity.org/content/complicense or other licenses\nspecifically identified by Licensor in writing. Notwithstanding any term to the\ncontrary in any Compatible Source License, any code covered by any Compatible\nSource License that is used with Covered Code must be made readily available in\nSource Code format for royalty-free use under the terms of the Compatible Source\nLicense or this License.\n\n1.3 \"Contributor\" means any person or entity that creates or contributes to the\ncreation of Modifications.\n\n1.4 \"Covered Code\" means the Original Code, Modifications, the combination of\nOriginal Code and any Modifications, and/or any respective portions thereof.\n\n1.5 \"Deploy\" means to use, sublicense or distribute Covered Code other than for\nYour internal research and development (R&D) and/or Personal Use, and includes\nwithout limitation, any and all internal use or distribution of Covered Code\nwithin Your business or organization except for R&D use and/or Personal Use, as\nwell as direct or indirect sublicensing or distribution of Covered Code by You\nto any third party in any form or manner.\n\n1.6 \"Derivative Work\" means either the Covered Code or any derivative work under\nUnited States copyright law, and including any work containing or including any\nportion of the Covered Code or Modifications, either verbatim or with\nmodifications and/or translated into another language. Derivative Work also\nincludes any work which combines any portion of Covered Code or Modifications\nwith code not otherwise governed by the terms of this License.\n\n1.7 \"Externally Deploy\" means to Deploy the Covered Code in any way that may be\naccessed or used by anyone other than You, used to provide any services to\nanyone other than You, or used in any way to deliver any content to anyone other\nthan You, whether the Covered Code is distributed to those parties, made\navailable as an application intended for use over a computer network, or used to\nprovide services or otherwise deliver content to anyone other than You.\n\n1.8. \"Interface\" means interfaces, functions, properties, class definitions,\nAPIs, header files, GUIDs, V-Tables, and/or protocols allowing one piece of\nsoftware, firmware or hardware to communicate or interoperate with another piece\nof software, firmware or hardware.\n\n1.9 \"Modifications\" mean any addition to, deletion from, and/or change to, the\nsubstance and/or structure of the Original Code, any previous Modifications, the\ncombination of Original Code and any previous Modifications, and/or any\nrespective portions thereof. When code is released as a series of files, a\nModification is: (a) any addition to or deletion from the contents of a file\ncontaining Covered Code; and/or (b) any new file or other representation of\ncomputer program statements that contains any part of Covered Code.\n\n1.10 \"Original Code\" means (a) the Source Code of a program or other work as\noriginally made available by Licensor under this License, including the Source\nCode of any updates or upgrades to such programs or works made available by\nLicensor under this License, and that has been expressly identified by Licensor\nas such in the header file(s) of such work; and (b) the object code compiled\nfrom such Source Code and originally made available by Licensor under this\nLicense.\n\n1.11 \"Personal Use\" means use of Covered Code by an individual solely for his or\nher personal, private and non-commercial purposes. An individual's use of\nCovered Code in his or her capacity as an officer, employee, member, independent\ncontractor or agent of a corporation, business or organization (commercial or\nnon-commercial) does not qualify as Personal Use.\n\n1.12 \"Source Code\" means the human readable form of a program or other work that\nis suitable for making modifications to it, including all modules it contains,\nplus any associated interface definition files, scripts used to control\ncompilation and installation of an executable (object code).\n\n1.13 \"You\" or \"Your\" means an individual or a legal entity exercising rights\nunder this License. For legal entities, \"You\" or \"Your\" includes any entity\nwhich controls, is controlled by, or is under common control with, You, where\n\"control\" means (a) the power, direct or indirect, to cause the direction or\nmanagement of such entity, whether by contract or otherwise, or (b) ownership of\nfifty percent (50%) or more of the outstanding shares or beneficial ownership of\nsuch entity.\n\n2. Permitted Uses; Conditions & Restrictions. Subject to the terms and\nconditions of this License, Licensor hereby grants You, effective on the date\nYou accept this License (via downloading or using Covered Code or otherwise\nindicating your acceptance of this License), a worldwide, royalty-free,\nnon-exclusive copyright license, to the extent of Licensor's copyrights cover\nthe Original Code, to do the following:\n\n2.1 You may reproduce, display, perform, modify and Deploy Covered Code,\nprovided that in each instance:\n\n(a) You must retain and reproduce in all copies of Original Code the copyright\nand other proprietary notices and disclaimers of Licensor as they appear in the\nOriginal Code, and keep intact all notices in the Original Code that refer to\nthis License;\n\n(b) You must include a copy of this License with every copy of Source Code of\nCovered Code and documentation You distribute, and You may not offer or impose\nany terms on such Source Code that alter or restrict this License or the\nrecipients' rights hereunder, except as permitted under Section 6;\n\n(c) You must duplicate, to the extent it does not already exist, the notice in\nExhibit A in each file of the Source Code of all Your Modifications, and cause\nthe modified files to carry prominent notices stating that You changed the files\nand the date of any change;\n\n(d) You must make Source Code of all Your Externally Deployed Modifications\npublicly available under the terms of this License, including the license grants\nset forth in Section 3 below, for as long as you Deploy the Covered Code or\ntwelve (12) months from the date of initial Deployment, whichever is longer. You\nshould preferably distribute the Source Code of Your Deployed Modifications\nelectronically (e.g. download from a web site); and\n\n(e) if You Deploy Covered Code in object code, executable form only, You must\ninclude a prominent notice, in the code itself as well as in related\ndocumentation, stating that Source Code of the Covered Code is available under\nthe terms of this License with information on how and where to obtain such\nSource Code. You must also include the Object Code Notice set forth in Exhibit A\nin the \"about\" box or other appropriate place where other copyright notices are\nplaced, including any packaging materials.\n\n2.2 You expressly acknowledge and agree that although Licensor and each\nContributor grants the licenses to their respective portions of the Covered Code\nset forth herein, no assurances are provided by Licensor or any Contributor that\nthe Covered Code does not infringe the patent or other intellectual property\nrights of any other entity. Licensor and each Contributor disclaim any liability\nto You for claims brought by any other entity based on infringement of\nintellectual property rights or otherwise. As a condition to exercising the\nrights and licenses granted hereunder, You hereby assume sole responsibility to\nsecure any other intellectual property rights needed, if any. For example, if a\nthird party patent license is required to allow You to make, use, sell, import\nor offer for sale the Covered Code, it is Your responsibility to acquire such\nlicense(s).\n\n2.3 Subject to the terms and conditions of this License, Licensor hereby grants\nYou, effective on the date You accept this License (via downloading or using\nCovered Code or otherwise indicating your acceptance of this License), a\nworldwide, royalty-free, perpetual, non-exclusive patent license under\nLicensor's Applicable Patent Rights to make, use, sell, offer for sale and\nimport the Covered Code, provided that in each instance you comply with the\nterms of this License.\n\n3. Your Grants. In consideration of, and as a condition to, the licenses granted\nto You under this License:\n\n(a) You grant to Licensor and all third parties a non-exclusive, perpetual,\nirrevocable, royalty free license under Your Applicable Patent Rights and other\nintellectual property rights owned or controlled by You, to make, sell, offer\nfor sale, use, import, reproduce, display, perform, modify, distribute and\nDeploy Your Modifications of the same scope and extent as Licensor's licenses\nunder Sections 2.1 and 2.2; and\n\n(b) You grant to Licensor and its subsidiaries a non-exclusive, worldwide,\nroyalty-free, perpetual and irrevocable license, under Your Applicable Patent\nRights and other intellectual property rights owned or controlled by You, to\nmake, use, sell, offer for sale, import, reproduce, display, perform,\ndistribute, modify or have modified (for Licensor and/or its subsidiaries),\nsublicense and distribute Your Modifications, in any form and for any purpose,\nthrough multiple tiers of distribution.\n\n(c) You agree not use any information derived from Your use and review of the\nCovered Code, including but not limited to any algorithms or inventions that may\nbe contained in the Covered Code, for the purpose of asserting any of Your\npatent rights, or assisting a third party to assert any of its patent rights,\nagainst Licensor or any Contributor.\n\n4. Derivative Works. You may create a Derivative Work by combining Covered Code\nwith other code not otherwise governed by the terms of this License and\ndistribute the Derivative Work as an integrated product. In each such instance,\nYou must make sure the requirements of this License are fulfilled for the\nCovered Code or any portion thereof, including all Modifications.\n\n4.1 You must cause any Derivative Work that you distribute, publish or\nExternally Deploy, that in whole or in part contains or is derived from the\nCovered Code or any part thereof, to be licensed as a whole at no charge to all\nthird parties under the terms of this License and no other license except as\nprovided in Section 4.2. You also must make Source Code available for the\nDerivative Work under the same terms as Modifications, described in Sections 2\nand 3, above.\n\n4.2 Compatible Source Licenses. Software modules that have been independently\ndeveloped without any use of Covered Code and which contain no portion of the\nCovered Code, Modifications or other Derivative Works, but are used or combined\nin any way wtih the Covered Code or any Derivative Work to form a larger\nDerivative Work, are exempt from the conditions described in Section 4.1 but\nonly to the extent that: the software module, including any software that is\nlinked to, integrated with, or part of the same applications as, the software\nmodule by any method must be wholly subject to one of the Compatible Source\nLicenses. Notwithstanding the foregoing, all Covered Code must be subject to the\nterms of this License. Thus, the entire Derivative Work must be licensed under a\ncombination of the RPSL (for Covered Code) and a Compatible Source License for\nany independently developed software modules within the Derivative Work. The\nforegoing requirement applies even if the Compatible Source License would\nordinarily allow the software module to link with, or form larger works with,\nother software that is not subject to the Compatible Source License. For\nexample, although the Mozilla Public License v1.1 allows Mozilla code to be\ncombined with proprietary software that is not subject to the MPL, if\nMPL-licensed code is used with Covered Code the MPL-licensed code could not be\ncombined or linked with any code not governed by the MPL. The general intent of\nthis section 4.2 is to enable use of Covered Code with applications that are\nwholly subject to an acceptable open source license. You are responsible for\ndetermining whether your use of software with Covered Code is allowed under Your\nlicense to such software.\n\n4.3 Mere aggregation of another work not based on the Covered Code with the\nCovered Code (or with a work based on the Covered Code) on a volume of a storage\nor distribution medium does not bring the other work under the scope of this\nLicense. If You deliver the Covered Code for combination and/or integration with\nan application previously provided by You (for example, via automatic updating\ntechnology), such combination and/or integration constitutes a Derivative Work\nsubject to the terms of this License.\n\n5. Exclusions From License Grant. Nothing in this License shall be deemed to\ngrant any rights to trademarks, copyrights, patents, trade secrets or any other\nintellectual property of Licensor or any Contributor except as expressly stated\nherein. No right is granted to the trademarks of Licensor or any Contributor\neven if such marks are included in the Covered Code. Nothing in this License\nshall be interpreted to prohibit Licensor from licensing under different terms\nfrom this License any code that Licensor otherwise would have a right to\nlicense. Modifications, Derivative Works and/or any use or combination of\nCovered Code with other technology provided by Licensor or third parties may\nrequire additional patent licenses from Licensor which Licensor may grant in its\nsole discretion. No patent license is granted separate from the Original Code or\ncombinations of the Original Code with other software or hardware.\n\n5.1. Trademarks. This License does not grant any rights to use the trademarks or\ntrade names owned by Licensor (\"Licensor Marks\" defined in Exhibit C) or to any\ntrademark or trade name belonging to any Contributor. No Licensor Marks may be\nused to endorse or promote products derived from the Original Code other than as\npermitted by the Licensor Trademark Policy defined in Exhibit C.\n\n6. Additional Terms. You may choose to offer, and to charge a fee for, warranty,\nsupport, indemnity or liability obligations and/or other rights consistent with\nthe scope of the license granted herein (\"Additional Terms\") to one or more\nrecipients of Covered Code. However, You may do so only on Your own behalf and\nas Your sole responsibility, and not on behalf of Licensor or any Contributor.\nYou must obtain the recipient's agreement that any such Additional Terms are\noffered by You alone, and You hereby agree to indemnify, defend and hold\nLicensor and every Contributor harmless for any liability incurred by or claims\nasserted against Licensor or such Contributor by reason of any such Additional\nTerms.\n\n7. Versions of the License. Licensor may publish revised and/or new versions of\nthis License from time to time. Each version will be given a distinguishing\nversion number. Once Original Code has been published under a particular version\nof this License, You may continue to use it under the terms of that version. You\nmay also choose to use such Original Code under the terms of any subsequent\nversion of this License published by Licensor. No one other than Licensor has\nthe right to modify the terms applicable to Covered Code created under this\nLicense.\n\n8. NO WARRANTY OR SUPPORT. The Covered Code may contain in whole or in part\npre-release, untested, or not fully tested works. The Covered Code may contain\nerrors that could cause failures or loss of data, and may be incomplete or\ncontain inaccuracies. You expressly acknowledge and agree that use of the\nCovered Code, or any portion thereof, is at Your sole and entire risk. THE\nCOVERED CODE IS PROVIDED \"AS IS\" AND WITHOUT WARRANTY, UPGRADES OR SUPPORT OF\nANY KIND AND LICENSOR AND LICENSOR'S LICENSOR(S) (COLLECTIVELY REFERRED TO AS\n\"LICENSOR\" FOR THE PURPOSES OF SECTIONS 8 AND 9) AND ALL CONTRIBUTORS EXPRESSLY\nDISCLAIM ALL WARRANTIES AND/OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT\nNOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, OF\nSATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF ACCURACY, OF QUIET\nENJOYMENT, AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. LICENSOR AND EACH\nCONTRIBUTOR DOES NOT WARRANT AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE\nCOVERED CODE, THAT THE FUNCTIONS CONTAINED IN THE COVERED CODE WILL MEET YOUR\nREQUIREMENTS, THAT THE OPERATION OF THE COVERED CODE WILL BE UNINTERRUPTED OR\nERROR-FREE, OR THAT DEFECTS IN THE COVERED CODE WILL BE CORRECTED. NO ORAL OR\nWRITTEN DOCUMENTATION, INFORMATION OR ADVICE GIVEN BY LICENSOR, A LICENSOR\nAUTHORIZED REPRESENTATIVE OR ANY CONTRIBUTOR SHALL CREATE A WARRANTY. You\nacknowledge that the Covered Code is not intended for use in high risk\nactivities, including, but not limited to, the design, construction, operation\nor maintenance of nuclear facilities, aircraft navigation, aircraft\ncommunication systems, or air traffic control machines in which case the failure\nof the Covered Code could lead to death, personal injury, or severe physical or\nenvironmental damage. Licensor disclaims any express or implied warranty of\nfitness for such uses.\n\n9. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT\nSHALL LICENSOR OR ANY CONTRIBUTOR BE LIABLE FOR ANY INCIDENTAL, SPECIAL,\nINDIRECT OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO THIS LICENSE OR\nYOUR USE OR INABILITY TO USE THE COVERED CODE, OR ANY PORTION THEREOF, WHETHER\nUNDER A THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE OR STRICT\nLIABILITY), PRODUCTS LIABILITY OR OTHERWISE, EVEN IF LICENSOR OR SUCH\nCONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND\nNOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. SOME\nJURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY OF INCIDENTAL OR\nCONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY TO YOU. In no event\nshall Licensor's total liability to You for all damages (other than as may be\nrequired by applicable law) under this License exceed the amount of ten dollars\n($10.00).\n\n10. Ownership. Subject to the licenses granted under this License, each\nContributor retains all rights, title and interest in and to any Modifications\nmade by such Contributor. Licensor retains all rights, title and interest in and\nto the Original Code and any Modifications made by or on behalf of Licensor\n(\"Licensor Modifications\"), and such Licensor Modifications will not be\nautomatically subject to this License. Licensor may, at its sole discretion,\nchoose to license such Licensor Modifications under this License, or on\ndifferent terms from those contained in this License or may choose not to\nlicense them at all.\n\n11. Termination. \n\n11.1 Term and Termination. The term of this License is perpetual unless\nterminated as provided below. This License and the rights granted hereunder will\nterminate:\n\n(a) automatically without notice from Licensor if You fail to comply with any\nterm(s) of this License and fail to cure such breach within 30 days of becoming\naware of such breach;\n\n(b) immediately in the event of the circumstances described in Section 12.5(b);\nor\n\n(c) automatically without notice from Licensor if You, at any time during the\nterm of this License, commence an action for patent infringement against\nLicensor (including by cross-claim or counter claim in a lawsuit);\n\n(d) upon written notice from Licensor if You, at any time during the term of\nthis License, commence an action for patent infringement against any third party\nalleging that the Covered Code itself (excluding combinations with other\nsoftware or hardware) infringes any patent (including by cross-claim or counter\nclaim in a lawsuit).\n\n11.2 Effect of Termination. Upon termination, You agree to immediately stop any\nfurther use, reproduction, modification, sublicensing and distribution of the\nCovered Code and to destroy all copies of the Covered Code that are in your\npossession or control. All sublicenses to the Covered Code which have been\nproperly granted prior to termination shall survive any termination of this\nLicense. Provisions which, by their nature, should remain in effect beyond the\ntermination of this License shall survive, including but not limited to Sections\n3, 5, 8, 9, 10, 11, 12.2 and 13. No party will be liable to any other for\ncompensation, indemnity or damages of any sort solely as a result of terminating\nthis License in accordance with its terms, and termination of this License will\nbe without prejudice to any other right or remedy of any party.\n\n12. Miscellaneous.\n\n12.1 Government End Users. The Covered Code is a \"commercial item\" as defined in\nFAR 2.101. Government software and technical data rights in the Covered Code\ninclude only those rights customarily provided to the public as defined in this\nLicense. This customary commercial license in technical data and software is\nprovided in accordance with FAR 12.211 (Technical Data) and 12.212 (Computer\nSoftware) and, for Department of Defense purchases, DFAR 252.227-7015 (Technical\nData -- Commercial Items) and 227.7202-3 (Rights in Commercial Computer Software\nor Computer Software Documentation). Accordingly, all U.S. Government End Users\nacquire Covered Code with only those rights set forth herein.\n\n12.2 Relationship of Parties. This License will not be construed as creating an\nagency, partnership, joint venture or any other form of legal association\nbetween or among You, Licensor or any Contributor, and You will not represent to\nthe contrary, whether expressly, by implication, appearance or otherwise.\n\n12.3 Independent Development. Nothing in this License will impair Licensor's\nright to acquire, license, develop, have others develop for it, market and/or\ndistribute technology or products that perform the same or similar functions as,\nor otherwise compete with, Modifications, Derivative Works, technology or\nproducts that You may develop, produce, market or distribute.\n\n12.4 Waiver; Construction. Failure by Licensor or any Contributor to enforce any\nprovision of this License will not be deemed a waiver of future enforcement of\nthat or any other provision. Any law or regulation which provides that the\nlanguage of a contract shall be construed against the drafter will not apply to\nthis License.\n\n12.5 Severability. (a) If for any reason a court of competent jurisdiction finds\nany provision of this License, or portion thereof, to be unenforceable, that\nprovision of the License will be enforced to the maximum extent permissible so\nas to effect the economic benefits and intent of the parties, and the remainder\nof this License will continue in full force and effect. (b) Notwithstanding the\nforegoing, if applicable law prohibits or restricts You from fully and/or\nspecifically complying with Sections 2 and/or 3 or prevents the enforceability\nof either of those Sections, this License will immediately terminate and You\nmust immediately discontinue any use of the Covered Code and destroy all copies\nof it that are in your possession or control.\n\n12.6 Dispute Resolution. Any litigation or other dispute resolution between You\nand Licensor relating to this License shall take place in the Seattle,\nWashington, and You and Licensor hereby consent to the personal jurisdiction of,\nand venue in, the state and federal courts within that District with respect to\nthis License. The application of the United Nations Convention on Contracts for\nthe International Sale of Goods is expressly excluded.\n\n12.7 Export/Import Laws. This software is subject to all export and import laws\nand restrictions and regulations of the country in which you receive the Covered\nCode and You are solely responsible for ensuring that You do not export,\nre-export or import the Covered Code or any direct product thereof in violation\nof any such restrictions, laws or regulations, or without all necessary\nauthorizations.\n\n12.8 Entire Agreement; Governing Law. This License constitutes the entire\nagreement between the parties with respect to the subject matter hereof. This\nLicense shall be governed by the laws of the United States and the State of\nWashington.\n\nWhere You are located in the province of Quebec, Canada, the following clause\napplies: The parties hereby confirm that they have requested that this License\nand all related documents be drafted in English. Les parties ont exigé\nque le présent contrat et tous les documents connexes soient\nrédigés en anglais.\n\n EXHIBIT A. \n\n\"Copyright © 1995-2002\nRealNetworks, Inc. and/or its licensors. All Rights Reserved.\n\nThe contents of this file, and the files included with this file, are subject to\nthe current version of the RealNetworks Public Source License Version 1.0 (the\n\"RPSL\") available at https://www.helixcommunity.org/content/rpsl unless you have\nlicensed the file under the RealNetworks Community Source License Version 1.0\n(the \"RCSL\") available at https://www.helixcommunity.org/content/rcsl, in which\ncase the RCSL will apply. You may also obtain the license terms directly from\nRealNetworks. You may not use this file except in compliance with the RPSL or,\nif you have a valid RCSL with RealNetworks applicable to this file, the RCSL.\nPlease see the applicable RPSL or RCSL for the rights, obligations and\nlimitations governing use of the contents of the file.\n\nThis file is part of the Helix DNA Technology. RealNetworks is the developer of\nthe Original code and owns the copyrights in the portions it created.\n\nThis file, and the files included with this file, is distributed and made\navailable on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR\nIMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING\nWITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\nPURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.\n\nContributor(s): \n\nTechnology Compatibility Kit Test\nSuite(s) Location (if licensed under the RCSL): \n\nObject Code Notice: Helix DNA Client technology included. Copyright (c)\nRealNetworks, Inc., 1995-2002. All rights reserved.\n\n\n EXHIBIT B \n\nCompatible Source Licenses for the RealNetworks Public Source License. The\nfollowing list applies to the most recent version of the license as of October\n25, 2002, unless otherwise indicated.\n\n* Academic Free License\n* Apache Software License\n* Apple Public Source License\n* Artistic license\n* Attribution Assurance Licenses\n* BSD license\n* Common Public License (1)\n* Eiffel Forum License\n* GNU General Public License (GPL) (1)\n* GNU Library or \"Lesser\" General Public License (LGPL) (1)\n* IBM Public License\n* Intel Open Source License\n* Jabber Open Source License\n* MIT license\n* MITRE Collaborative Virtual Workspace License (CVW License)\n* Motosoto License\n* Mozilla Public License 1.0 (MPL)\n* Mozilla Public License 1.1 (MPL)\n* Nokia Open Source License\n* Open Group Test Suite License\n* Python Software Foundation License\n* Ricoh Source Code Public License\n* Sun Industry Standards Source License (SISSL)\n* Sun Public License\n* University of Illinois/NCSA Open Source License\n* Vovida Software License v. 1.0\n* W3C License\n* X.Net License\n* Zope Public License\n* zlib/libpng license\n\n(1) Note: because this license contains certain reciprocal licensing terms that\npurport to extend to independently developed code, You may be prohibited under\nthe terms of this otherwise compatible license from using code licensed under\nits terms with Covered Code because Covered Code may only be licensed under the\nRealNetworks Public Source License. Any attempt to apply non RPSL license terms,\nincluding without limitation the GPL, to Covered Code is expressly forbidden.\nYou are responsible for ensuring that Your use of Compatible Source Licensed\ncode does not violate either the RPSL or the Compatible Source License.\n\nThe latest version of this list can be found at:\nhttps://www.helixcommunity.org/content/complicense\n\n EXHIBIT C \n\nRealNetworks' Trademark policy. \n\nRealNetworks defines the following trademarks collectively as \"Licensor\nTrademarks\": \"RealNetworks\", \"RealPlayer\", \"RealJukebox\", \"RealSystem\",\n\"RealAudio\", \"RealVideo\", \"RealOne Player\", \"RealMedia\", \"Helix\" or any other\ntrademarks or trade names belonging to RealNetworks.\n\nRealNetworks \"Licensor Trademark Policy\" forbids any use of Licensor Trademarks\nexcept as permitted by and in strict compliance at all times with RealNetworks'\nthird party trademark usage guidelines which are posted at\nhttp://www.realnetworks.com/info/helixlogo.html.", + "json": "rpsl-1.0.json", + "yaml": "rpsl-1.0.yml", + "html": "rpsl-1.0.html", + "license": "rpsl-1.0.LICENSE" + }, + { + "license_key": "rrdtool-floss-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-rrdtool-floss-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "FLOSS License Exception \n=======================\n(Adapted from http://www.mysql.com/company/legal/licensing/foss-exception.html )\n\nI want specified Free/Libre and Open Source Software (\"FLOSS\")\napplications to be able to use specified GPL-licensed RRDtool\nlibraries (the \"Program\") despite the fact that not all FLOSS licenses are\ncompatible with version 2 of the GNU General Public License (the \"GPL\").\n\nAs a special exception to the terms and conditions of version 2.0 of the GPL:\n\nYou are free to distribute a Derivative Work that is formed entirely from\nthe Program and one or more works (each, a \"FLOSS Work\") licensed under one\nor more of the licenses listed below, as long as:\n\n1. You obey the GPL in all respects for the Program and the Derivative\nWork, except for identifiable sections of the Derivative Work which are\nnot derived from the Program, and which can reasonably be considered\nindependent and separate works in themselves,\n\n2. all identifiable sections of the Derivative Work which are not derived\nfrom the Program, and which can reasonably be considered independent and\nseparate works in themselves,\n\n1. are distributed subject to one of the FLOSS licenses listed\nbelow, and\n\n2. the object code or executable form of those sections are\naccompanied by the complete corresponding machine-readable source\ncode for those sections on the same medium and under the same FLOSS\nlicense as the corresponding object code or executable forms of\nthose sections, and\n\n3. any works which are aggregated with the Program or with a Derivative\nWork on a volume of a storage or distribution medium in accordance with\nthe GPL, can reasonably be considered independent and separate works in\nthemselves which are not derivatives of either the Program, a Derivative\nWork or a FLOSS Work.\n\nIf the above conditions are not met, then the Program may only be copied,\nmodified, distributed or used under the terms and conditions of the GPL.\n\nFLOSS License List\n==================\nLicense name\tVersion(s)/Copyright Date\nAcademic Free License\t\t2.0\nApache Software License\t1.0/1.1/2.0\nApple Public Source License\t2.0\nArtistic license\t\tFrom Perl 5.8.0\nBSD license\t\t\t\"July 22 1999\"\nCommon Public License\t\t1.0\nGNU Library or \"Lesser\" General Public License (LGPL)\t2.0/2.1\nIBM Public License, Version 1.0\nJabber Open Source License\t1.0\nMIT License (As listed in file MIT-License.txt)\t-\nMozilla Public License (MPL)\t1.0/1.1\nOpen Software License\t\t2.0\nOpenSSL license (with original SSLeay license)\t\"2003\" (\"1998\")\nPHP License\t\t\t3.01\nPython license (CNRI Python License)\t-\nPython Software Foundation License\t2.1.1\nSleepycat License\t\t\"1999\"\nW3C License\t\t\t\"2001\"\nX11 License\t\t\t\"2001\"\nZlib/libpng License\t\t-\nZope Public License\t\t2.0/2.1", + "json": "rrdtool-floss-exception-2.0.json", + "yaml": "rrdtool-floss-exception-2.0.yml", + "html": "rrdtool-floss-exception-2.0.html", + "license": "rrdtool-floss-exception-2.0.LICENSE" + }, + { + "license_key": "rsa-1990", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-rsa-1990", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "RSA Data Security, Inc. makes no representations concerning either\nthe merchantability of this software or the suitability of this\nsoftware for any particular purpose. It is provided \"as is\"\nwithout express or implied warranty of any kind.\n\nThese notices must be retained in any copies of any part of this\ndocumentation and/or software.", + "json": "rsa-1990.json", + "yaml": "rsa-1990.yml", + "html": "rsa-1990.html", + "license": "rsa-1990.LICENSE" + }, + { + "license_key": "rsa-cryptoki", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-rsa-cryptoki", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "DISCLAIMER\nRegarding the header / include files:\nLicense to copy and use this software is granted provided that it is identified as \"RSA Security Inc. PKCS #11 Cryptographic Token Interface (Cryptoki)\" in all material mentioning or referencing this software or this function.\n\nLicense is also granted to make and use derivative works provided that such works are identified as \"derived from the RSA Security Inc. PKCS #11 Cryptographic Token Interface (Cryptoki)\" in all material mentioning or referencing the derived work.\n\nThis software is provided \"AS IS\" and RSA Security, Inc. disclaims all warranties including but not limited to the implied warranty of merchantability, fitness for a particular purpose, and noninfringement.\n\nRegarding reference implementations:\nRSA Laboratories is providing links to external reference implementations for the benefit of PKCS #11 developers. RSA Laboratories has not verified or reviewed these implementations and therefore can make no statement regarding their conformance to the current PKCS #11 specification. RSA Laboratories also makes no representations regarding intellectual property coverage or ownership of the reference implementations. The implementations may also be subject to regulations on the import, export and/or use of cryptography. Resolution of these issues is the responsibility of the user.", + "json": "rsa-cryptoki.json", + "yaml": "rsa-cryptoki.yml", + "html": "rsa-cryptoki.html", + "license": "rsa-cryptoki.LICENSE" + }, + { + "license_key": "rsa-demo", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-rsa-demo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This file is used to demonstrate how to interface to an\nRSA Data Security, Inc. licensed development product.\n\nYou have a royalty-free right to use, modify, reproduce and\ndistribute this demonstration file (including any modified\nversion), provided that you agree that RSA Data Security,\nInc. has no warranty, implied or otherwise, or liability\nfor this demonstration file or any modified version.", + "json": "rsa-demo.json", + "yaml": "rsa-demo.yml", + "html": "rsa-demo.html", + "license": "rsa-demo.LICENSE" + }, + { + "license_key": "rsa-md2", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-rsa-md2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License to copy and use this software is granted for non-commercial Internet Privacy-Enhanced Mail provided that it is identified as the \"RSA Data Security, Inc. MD2 Message Digest Algorithm\" in all material mentioning or referencing this software or this function.\n\nRSA Data Security, Inc. makes no representations concerning either the merchantability of this software or the suitability of this software for any particular purpose. It is provided \"as is\" without express or implied warranty of any kind.\n\nThese notices must be retained in any copies of any part of this documentation and/or software.", + "json": "rsa-md2.json", + "yaml": "rsa-md2.yml", + "html": "rsa-md2.html", + "license": "rsa-md2.LICENSE" + }, + { + "license_key": "rsa-md4", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-rsa-md4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License to copy and use this software is granted provided that it\nis identified as the \"RSA Data Security, Inc. MD4 Message-Digest\nAlgorithm\" in all material mentioning or referencing this software\nor this function.\n\nLicense is also granted to make and use derivative works provided\nthat such works are identified as \"derived from the RSA Data\nSecurity, Inc. MD4 Message-Digest Algorithm\" in all material\nmentioning or referencing the derived work.\n\nRSA Data Security, Inc. makes no representations concerning either\nthe merchantability of this software or the suitability of this\nsoftware for any particular purpose. It is provided \"as is\"\nwithout express or implied warranty of any kind.\n\nThese notices must be retained in any copies of any part of this\ndocumentation and/or software.", + "json": "rsa-md4.json", + "yaml": "rsa-md4.yml", + "html": "rsa-md4.html", + "license": "rsa-md4.LICENSE" + }, + { + "license_key": "rsa-md5", + "category": "Permissive", + "spdx_license_key": "RSA-MD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License to copy and use this software is granted provided that it\nis identified as the \"RSA Data Security, Inc. MD5 Message-Digest\nAlgorithm\" in all material mentioning or referencing this software\nor this function.\n\nLicense is also granted to make and use derivative works provided\nthat such works are identified as \"derived from the RSA Data\nSecurity, Inc. MD5 Message-Digest Algorithm\" in all material\nmentioning or referencing the derived work.\n\nRSA Data Security, Inc. makes no representations concerning either\nthe merchantability of this software or the suitability of this\nsoftware for any particular purpose. It is provided \"as is\"\nwithout express or implied warranty of any kind.\n\nThese notices must be retained in any copies of any part of this\ndocumentation and/or software.", + "json": "rsa-md5.json", + "yaml": "rsa-md5.yml", + "html": "rsa-md5.html", + "license": "rsa-md5.LICENSE" + }, + { + "license_key": "rsa-proprietary", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-rsa-proprietary", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The text of this license is secured, and may be viewed at\nhttps://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf", + "json": "rsa-proprietary.json", + "yaml": "rsa-proprietary.yml", + "html": "rsa-proprietary.html", + "license": "rsa-proprietary.LICENSE" + }, + { + "license_key": "rtools-util", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-rtools-util", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software is provided AS IS. No warranty is granted, \nneither expressed nor implied. USE THIS SOFTWARE AT YOUR OWN RISK.\nNO REPRESENTATION OF MERCHANTABILITY or FITNESS FOR ANY \nPURPOSE is given.\n\nLicense to use this software is limited by the following terms:\n\n1) This code may be used in any program, including programs developed\n for commercial purposes, provided that this notice is included verbatim.\n\nAlso, in return for using this code, please attempt to make your fixes and\nupdates available in some way, such as by sending your updates to the\nauthor.", + "json": "rtools-util.json", + "yaml": "rtools-util.yml", + "html": "rtools-util.html", + "license": "rtools-util.LICENSE" + }, + { + "license_key": "ruby", + "category": "Copyleft Limited", + "spdx_license_key": "Ruby", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " 1. You may make and give away verbatim copies of the source form of the\n software without restriction, provided that you duplicate all of the\n original copyright notices and associated disclaimers.\n\n 2. You may modify your copy of the software in any way, provided that\n you do at least ONE of the following:\n\n a) place your modifications in the Public Domain or otherwise\n make them Freely Available, such as by posting said\n modifications to Usenet or an equivalent medium, or by allowing\n the author to include your modifications in the software.\n\n b) use the modified software only within your corporation or\n organization.\n\n c) give non-standard binaries non-standard names, with\n instructions on where to get the original software distribution.\n\n d) make other distribution arrangements with the author.\n\n 3. You may distribute the software in object code or binary form,\n provided that you do at least ONE of the following:\n\n a) distribute the binaries and library files of the software,\n together with instructions (in the manual page or equivalent)\n on where to get the original distribution.\n\n b) accompany the distribution with the machine-readable source of\n the software.\n\n c) give non-standard binaries non-standard names, with\n instructions on where to get the original software distribution.\n\n d) make other distribution arrangements with the author.\n\n 4. You may modify and include the part of the software into any other\n software (possibly commercial). But some files in the distribution\n are not written by the author, so that they are not under these terms.\n\n For the list of those files and their copying conditions, see the\n file LEGAL.\n\n 5. The scripts and library files supplied as input to or produced as\n output from the software do not automatically fall under the\n copyright of the software, but belong to whomever generated them,\n and may be sold commercially, and may be aggregated with this\n software.\n\n 6. THIS SOFTWARE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE.", + "json": "ruby.json", + "yaml": "ruby.yml", + "html": "ruby.html", + "license": "ruby.LICENSE" + }, + { + "license_key": "rubyencoder-commercial", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-rubyencoder-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Terms & Conditions\nPLEASE READ THIS CAREFULLY BEFORE USING MATERIALS:\nA IMPORTANT PROVISIONS\nYOUR ATTENTION IS DRAWN PARTICULARLY TO THE PROVISIONS OF CLAUSE 10.2 OF THE FOLLOWING LICENCE AGREEMENT.\n\nPLEASE READ THIS CAREFULLY BEFORE USING MATERIALS:\nA IMPORTANT PROVISIONS\nYOUR ATTENTION IS DRAWN PARTICULARLY TO THE PROVISIONS OF CLAUSE 10.2 OF THE FOLLOWING LICENCE AGREEMENT.\n\nB PROPERTY OF SourceGuardian Ltd\nYOU MAY OBTAIN A COPY OF THIS SOFTWARE PRODUCT EITHER BY DOWNLOADING IT REMOTELY FROM OUR SERVER OR BY COPYING IT FROM AN AUTHORISED DISKETTE, CD-ROM OR OTHER MEDIA ('HARD MEDIA'). THE COPYRIGHT, DATABASE RIGHTS AND ANY OTHER INTELLECTUAL PROPERTY RIGHTS IN THE PROGRAMS AND DATA WHICH CONSTITUTE THIS RUBYENCODER SOFTWARE PRODUCT (THE 'MATERIALS'), TOGETHER WITH THE HARD MEDIA ON WHICH THEY WERE SUPPLIED TO YOU, ARE AND REMAIN THE PROPERTY OF SourceGuardian Ltd LIMITED ('SourceGuardian Ltd'). YOU ARE LICENSED TO USE THEM ONLY IF YOU ACCEPT ALL THE TERMS AND CONDITIONS SET OUT BELOW.\n\nC LICENSE ACCEPTANCE PROCEDURE\nBY CLICKING ON THE ACCEPTANCE BUTTON WHICH FOLLOWS THIS LICENCE AGREEMENT (MARKED 'I ACCEPT'), YOU INDICATE ACCEPTANCE OF THIS LICENCE AGREEMENT AND THE LIMITED WARRANTY AND LIMITATION OF LIABILITY SET OUT IN THIS LICENCE AGREEMENT. SUCH ACCEPTANCE IS EITHER ON YOUR OWN BEHALF OR ON BEHALF OF ANY CORPORATE ENTITY WHICH EMPLOYS YOU OR WHICH YOU REPRESENT ('CORPORATE LICENSEE'). IN THIS LICENCE AGREEMENT, 'YOU' INCLUDES BOTH THE READER AND ANY CORPORATE LICENSEE.\n\nD LICENSE REJECTION PROCEDURE\nYOU SHOULD THEREFORE READ THIS LICENCE AGREEMENT CAREFULLY BEFORE CLICKING ON THE ACCEPTANCE BUTTON. IF YOU DO NOT ACCEPT THESE TERMS AND CONDITIONS, YOU SHOULD CLICK ON THE 'REJECT' BUTTON, DELETE THE MATERIALS FROM YOUR COMPUTER AND PROMPTLY (AND IN ANY EVENT, WITHIN 14 DAYS OF RECEIPT) RETURN TO SourceGuardian Ltd OR A LICENSED RESELLER (A) THE HARD MEDIA; (B) ANY OTHER ITEMS PROVIDED THAT ARE PART OF THIS PRODUCT; AND (C) YOUR DATED PROOF OF PURCHASE. ANY MONEY YOU PAID TO SourceGuardian Ltd OR AN SourceGuardian Ltd RESELLER FOR THE MATERIALS WILL BE REFUNDED LESS ANY CREDIT CARD TRANSACTION FEE INCURRED BY SourceGuardian Ltd.\n\nE OTHER AGREEMENTS\nIF YOUR USE OF THESE PROGRAMS AND DATA IS PURSUANT TO AN EXECUTED LICENCE AGREEMENT, SUCH AGREEMENT SHALL APPLY INSTEAD OF THE FOLLOWING TERMS AND CONDITIONS.\n\nLICENSE AGREEMENT AND LIMITED WARRANTY\n1. Ownership of materials and copies\nThe Materials and related documentation are copyrighted works of authorship, and are also protected under applicable database laws. SourceGuardian Ltd retains ownership of the Materials and all subsequent copies of the Materials, regardless of the form in which the copies may exist. This licence is not a sale of the original Materials or any copies.\n\n2. Licence\n2.1. Evaluation Licence\n\nIf you have received an evaluation version of the Materials, SourceGuardian Ltd hereby grants to you, strictly for your own internal business purposes (and subject to the other terms and conditions of this Licence Agreement), a limited, non-exclusive licence for a single user to:\n\n2.1.1. install the Materials for use on a single computer owned, leased and/or controlled by you for an evaluation period of 14 days;\n\n2.1.2. make a single copy of the Materials for back-up, archival or other security purposes.\n\n2.2. Full Licence\n\nProvided that you have paid the applicable licence fee (and subject to the other terms and conditions of this Licence Agreement), SourceGuardian Ltd hereby grants to you, strictly for your own internal business purposes, a limited, non-exclusive licence for a single user to:\n\n2.2.1. install the Materials for use on a single computer owned, leased and/or controlled by you;\n\n2.2.2. make a single copy of the Materials for back-up, archival or other security purposes. \n\n2.2.3 Use RubyEncoder for development, testing, training and demonstration purposes and for the purpose of providing services to end users. \n\n2.3 Subject to the remaining provisions of this Licence SourceGuardian Ltd grants to the Licensee a world-wide, royalty free, non-exclusive, licence to permit the Licensee to do the following things in relation to the Loader (being defined as the software program made available on the RubyEncoder website at www.rubyencoder.com in object code form that facilitates the conversion of scripts encoded with RubyEncodser to readable form). The following permissions shall be deemed to apply to and cover any use of the Loaders prior to the effective date of this Licence Agreement. \n\n2.3.1 Distribute free of charge and make copies of the Loader for non-revenue generating activities including but not limited to evaluation, development, demonstration, training purposes, test, verification as well as for end user support. All such copies shall be subject to the provisions of this Licence Agreement; \n\n2.3.2 Merge, incorporate, install and integrate the Loader with any third party or Licensee software; \n\n2.3.3 Use, distribute and market the Loader to end users provided always that end users are either (i) directed to the RubyEncoder website and agree to the terms of SourceGuardian Ltd\u2019s free Loader Licence or (ii) are supplied with a copy of SourceGuardian Ltd\u2019s free Loader Licence when the encoded files are supplied. \n\n3. Limited Support\nSourceGuardian Ltd shall make available to you (at such times and to such extent as SourceGuardian Ltd may, in its sole discretion, deem reasonable) limited email support services for a period of 6 months from the date of your first installation of the Materials. Without prejudice to the foregoing provisions of this clause 3 , such support services are, in any event, limited to your making a maximum of 20 requests for assistance during the support period.\n\n4. License restrictions\nYou may not use, copy, modify or transfer the Materials (including any related documentation) or any copy, in whole or in part, including any print-out of all or part of any database, except as expressly provided for in this licence. If you transfer possession of any copy of the Materials to another party or use the Materials on a different computer from that on which the Materials were originally installed except as provided herein or without obtaining SourceGuardian Ltd's prior written consent, your licence is automatically terminated. You may not translate, reverse engineer, decompile, disassemble, modify or create derivative works based on the Materials, except as expressly permitted by the laws of England and Wales. You may not vary, delete or obscure any notices of proprietary rights or any product identification or restrictions on or in the Materials.\n\n5. No transfer\nThe Materials are licensed only to you. You may not rent, lease, sub-license, sell, assign, pledge, transfer or otherwise dispose of the Materials, on a temporary or permanent basis, nor use the same for remote hosting, ASP services, to act as a bureau or for time-sharing use without the prior written consent of SourceGuardian Ltd.\n\n6. Undertakings\nYou undertake to:\n\n6.1. ensure that, prior to use of the Materials by your employees or agents, all such parties are notified of this licence and the terms of this Licence Agreement;\n\n6.2. reproduce and include our copyright notice (or such other party's copyright notice as specified on the Materials) on all and any copies of the Materials, including any partial copies of the Materials;\n\n6.3. hold all drawings, specifications, data (including object and source codes), software listings and all other information relating to the Materials confidential and not at any time, during this licence or after its expiry, disclose the same, whether directly or indirectly, to any third party without SourceGuardian Ltd's consent.\n\n7. Limited warranty\n7.1. Subject to the limitations and exclusions of liability below, SourceGuardian Ltd warrants that (a) the Hard Media on which the Materials are furnished will be free from material defects under normal use; and that (b) the copy of the program will materially conform to the documentation which accompanies the program. The Warranty Period is 90 days from the date of delivery to you.\n\n7.2. SourceGuardian Ltd will also indemnify you for personal injury or death solely and directly caused by any defect in its products or the negligence of its employees.\n\n7.3. SourceGuardian Ltd shall not be liable under the said warranty above if the Materials fail to operate in accordance with the said warranty as a result of any modification, variation or addition to the Materials not performed by the SourceGuardian Ltd or caused by any abuse, corruption or incorrect use or installation of the Materials, including use of the Materials with equipment or other software which is incompatible.\n\n8. No other warranties\n8.1. The foregoing warranty is made in lieu of any other warranties, representations or guarantees of any kind, either expressed or implied, including, but not limited to, any implied warranties of quality, merchantability, fitness for a particular purpose or ability to achieve a particular result. You assume the entire risk as to the quality and performance of the Materials. Should the Materials prove defective, you (and not the SourceGuardian Ltd nor any licensed reseller) assume the entire cost of all necessary servicing, repair or correction.\n\n8.2. SourceGuardian Ltd does not warrant that the Materials will meet your requirements or that its operation will be uninterrupted or error free.\n\n9. Limitation of liability\nSourceGuardian Ltd's entire liability and your exclusive remedy shall be:\n\n9.1. the replacement of any Hard Media not meeting SourceGuardian Ltd's 'Limited Warranty' and which is returned to SourceGuardian Ltd together with dated proof of purchase; or\n\n9.2. if, during the Warranty Period, SourceGuardian Ltd is unable to deliver replacement Hard Media which is free of material defects, you may terminate this Licence Agreement by returning the Materials to SourceGuardian Ltd and any money you paid to SourceGuardian Ltd for the Materials will be refunded less any credit card transaction fee incurred by SourceGuardian Ltd.\n\n10. Exclusion of liability\n10.1. Except in respect of personal injury or death caused directly by the negligence of SourceGuardian Ltd, in no event will SourceGuardian Ltd be liable to you or any third party for any damages, including any lost profits, lost savings, loss of data or any indirect, special, incidental or consequential damages arising out of the use of or inability to use such Materials, even if SourceGuardian Ltd has been advised of the possibility of such damages. Nothing in this Licence Agreement limits liability for fraudulent misrepresentation.\n\n10.2. Without prejudice to any other provisions of this Licence Agreement you hereby expressly acknowledge that encryption software is not infallible and that third parties may develop and employ methods to circumvent the Materials and you agree that SourceGuardian Ltd shall have no liability to you or any third party in such circumstances.\n\n11. Your statutory rights\nThis licence gives you specific legal rights and you may also have other rights that vary from country to country. Some jurisdictions do not allow the exclusion of implied warranties, or certain kinds of limitations or exclusions of liability, so the above limitations and exclusions may not apply to you. Other jurisdictions allow limitations and exclusions subject to certain conditions. In such a case the above limitations and exclusions shall apply to the fullest extent permitted by the laws of such applicable jurisdictions. If any part of the above limitations or exclusions is held to be void or unenforceable, such part shall be deemed to be deleted from this Licence Agreement and the remainder of the limitation or exclusion shall continue in full force and effect. Any rights that you may have as a consumer (ie a purchaser for private as opposed to business, academic or government use) are not affected.\n\n12. Term\nThe licence is effective until terminated. You may terminate it at any time by destroying the Materials together with all copies in any form. It will also terminate upon conditions set out elsewhere in this Licence Agreement or if you fail to comply with any term or condition of this Licence Agreement or if you voluntarily return the Materials to us. You agree upon such termination to destroy the Materials together with all copies in any form.\n\n13. Export\nYou will comply with all applicable laws, rules, and regulations governing export of goods and information, including the laws of the countries in which the Materials were created. In particular, you will not export or re-export, directly or indirectly, separately or as a part of a system, the Materials or other information relating thereto to any country for which an export licence or other approval is required, without first obtaining such licence or other approval.\n\n14. General\n14.1. You agree that SourceGuardian Ltd shall have the right, after supplying undertakings as to confidentiality, to audit any computer system on which the Materials are installed in order to verify compliance with this licence Agreement.\n\n14.2. This Licence Agreement constitutes the complete and exclusive statement of the Agreement between SourceGuardian Ltd and you with respect to the subject matter of this Licence Agreement and supersedes all proposals, representations, understandings and prior agreements, whether oral or written, and all other communications between us relating to that subject matter.\n\n14.3. Any clause in this Licence Agreement that is found to be invalid or unenforceable shall be deemed deleted and the remainder of this Licence Agreement shall not be affected by that deletion.\n\n14.4. Failure or neglect by either party to exercise any of its rights or remedies under this Licence Agreement will not be construed as a waiver of that party's rights nor in any way affect the validity of the whole or part of this Licence Agreement nor prejudice that party's right to take subsequent action.\n\n14.5. This Licence Agreement is personal to you and you may not assign, transfer, sub-contract or otherwise part with this Licence Agreement or any right or obligation under it without the SourceGuardian Ltd's prior written consent.\n\n14.6. This Licence Agreement and any claim or matter arising under or in connection with this Licence Agreement and the legal relationships established by this Licence Agreement shall be governed by and construed in all respects in accordance with the law of England and Wales, and the parties agree to submit to the non-exclusive jurisdiction of the English courts.\n\nShould you have any questions concerning this Licence Agreement you may contact SourceGuardian Limited at Rotterdam House, 116 Quayside, Newcastle upon Tyne. NE16 5EG. United Kingdom. Tel: 0845 155 2455. Email: support@rubyencoder.com.", + "json": "rubyencoder-commercial.json", + "yaml": "rubyencoder-commercial.yml", + "html": "rubyencoder-commercial.html", + "license": "rubyencoder-commercial.LICENSE" + }, + { + "license_key": "rubyencoder-loader", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-rubyencoder-loader", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "RUBYENCODER LOADER LICENCE \n \nThis Licence applies to the use of the Loaders for RubyEncoder by End Users and is granted by SourceGuardian Ltd (registered number 05663267) which is referred to in this Licence as \u201cRubyEncoder\u201d. The licence terms for the use of RubyEncoder software are set out at http://www.rubyencoder.com/terms.html. If you are a licensee of RubyEncoder your use of the Loaders is governed by that licence.\n\nIf you are an End User of RubyEncoder then, by downloading the Loader, you are accepting the terms of this Licence on behalf of yourself and any company, unincorporated association or partnership for which you work. This Licence comes into effect on the date that you download the Loader. If, having read the Licence, you do not agree to be bound to any of its terms you should not download the Loader and any enquiries on the content of this Licence should be directed to RubyEncoder, C/O SourceGuardian Ltd, Rotterdam House, 116 Quayside, Newcastle upon Tyne. NE16 5EG. Tel: 0845 155 2455 Email: support@rubyencoder.com.\n\n1. Definitions\n\nDefect Any material error that prevents the Loader from uploading or downloading scripts to and from RubyEncoder (unless used in conjunction with third party software that is not on the list of maintained software on RubyEncoder\u2019s website)\nEnd User(s) Users of the Loader in commercial operation \n\nLoader The software program that facilitates the conversion of scripts encoded with RubyEncoderto readable form\n\nMaintainence Issuing updates to RubyEncoder to ensure continuing compatibility with third party software programs with which RubyEncoder is designed to inter-operate. \n\nRubyEncoder The software encryption product of that name used to encrypt scripts from human-readable form into a form capable of being read only with the Loader, available at www.rubyencoder.com\n\nSupport Assisting the End User with enquiries relating to Defects\n\n2. License for End Users\nSubject to the remaining provisions of this Licence SourceGuardian Ltd grants to the End User a world-wide, royalty free, non-exclusive, licence to permit the End User to use the Loader in its commercial operations for the purposes of:\n2.1 Reading scripts encrypted withRubyEncoder;\n2.2 Bundling the End User\u2019s own software applications together with the Loader;\n2.3 Linking the End User\u2019s software applications to the Loaders on RubyEncoder\u2019s website (to ensure that the applications remain current with the latest updated version of the Loader)\n\nThis License shall be deemed to apply to and cover any use of the Loaders prior to the effective date of this Licence.\n\n3. Restrictions and Exceptions\n3.1 The rights granted to the End User under this Licence do not operate to assign or transfer the ownership of any intellectual property rights in the Loader to the End User.\n3.2 The Loader is intended for commercial use only and not for use by consumers. By accepting this Licence the End User confirms that he or she is acting in the course of business. The End User will not remove or obscure any copyright or ownership notices or warning legends from the Loader nor will the End User attempt to reverse engineer, decompile or otherwise interfere with the Loader except to the extent expressly permitted by law or under this Licence. SourceGuardian Ltd may terminate this Licence immediately if it discovers that the End User is in breach of its obligations in this Licence and in such a case the End User will immediately delete the Loader from its computer systems and will on request by SourceGuardian Ltd provide and execute such written assurances as SourceGuardian Ltd may require confirming such deletion.\n3.3 The Loader is licensed free of charge and accordingly is provided on an \u201cas is\u201d basis. The End User agrees and acknowledges that SourceGuardian Ltd has no liability to the End User, whether in contract, tort (including negligence) or otherwise arising from any Defects in the Loader and all warranties implied by the laws of any jurisdiction in which the End User uses the Loader are expressly excuded to the fullest extent permitted by the laws of such jurisdiction.\n3.4 In no event will SourceGuardian Ltd be liable to the End User for any consequential loss or any financial loss.\n3.5 SourceGuardian Ltd's only obligation to the End User is to use reasonable commercial efforts to (i) correct Defects within a reasonable time (ii) ensure the the Loader is not corrupted and is free of any computer virus, trojans, worms or logic bombs and (iii) to issue Maintenance updates from time to time. SourceGuardian Ltd may terminate or assign its obligations under this paragraph 3.5 by publishing a notice to this effect on the RubyEncoder website at www.rubyencoder.com. In such circumstances the provisions of paragraph 3.2 will also terminate.Nothing in this Licence applies so as to exclude or limit any liability that SourceGuardian Ltd may have to the End User based on fraudulent misrepresentation or personal injury resulting from SourceGuardian Ltd's negligence.\n\n4. General\n4.1 This Agreement contains the entire agreement between the parties on the subject matter of this Agreement and supersedes all representations, undertakings and agreements previously made between the parties with respect to the subject matter of this Agreement.\n4.2 If any provision (or part of a provision) of this Licence is found by any court or administrative body of competent jurisdiction to be invalid, unenforceable or illegal, the other provisions will remain in force. If any invalid, unenforceable or illegal provision would be valid, enforceable or legal if some part of it were deleted, the provision will apply with whatever modification is necessary to give effect to the commercial intention of the parties.\n4.3 This Licence constitutes the whole agreement between the parties and supersedes any previous arrangement, understanding or agreement between them relating to its subject matter.\n4.4 Each party acknowledges and agrees that in entering into this Licence it does not rely on any undertaking, promise, assurance, statement, representation, warranty or understanding (whether in writing or not) of any person (whether party to this Licence or not) relating to the subject matter of this Licence, other than as expressly set out in this Licence.\n4.5 This Licence and any disputes or claims arising out of or in connection with it or its subject matter or formation (including non-contractual disputes or claims) are governed by, and should be construed in accordance with, the law of England and Wales.\n4.6 The parties irrevocably agree that the courts of England have exclusive jurisdiction to settle any dispute or claim that arises out of or in connection with the Contract or its subject matter or formation (including non-contractual disputes or claims).", + "json": "rubyencoder-loader.json", + "yaml": "rubyencoder-loader.yml", + "html": "rubyencoder-loader.html", + "license": "rubyencoder-loader.LICENSE" + }, + { + "license_key": "rute", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-rute", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copying\n\nThis license dictates the conditions under which you may copy, modify and distribute this work.\nExceptions to this license are likely to be granted for specific cases. Please email the author for details.\n\nTERMS AND CONDITIONS\n1. This work may not be reproduced in hard copy except for personal use. Further, it may not be reproduced in hard copy for training material, nor for commercial gain, nor for public or organisation-wide distribution. Further, it may not be reproduced in hard copy except where the intended reader of the hard copy initiates the process of converting the work to hard copy.\n2. The work may not be modified except by a generic format translation utility, as may be appropriate for viewing the work using an alternative electronic media. Such a modified version of the work must clearly credit the author, display this license, and include all copyright notices. Such a modified version of the work must clearly state the means by which it was translated, as well as where an original copy may be obtained.\n3. Verbatim copies of the work may be redistributed through any electronic media. Modified versions of the work as per 2. above may be redistributed same, provided that they can reasonably be said to include, albeit in translated form, all the original source files.\n4. The work is not distributed to promote any product, computer program or operating system. Even if otherwise cited, all of the opinions expressed in the work are exclusively those of the author. The author withdraws any implication that any statement made within this work can be justified, verified or corroborated.\nNO WARRANTY\n5. THE COPYRIGHT HOLDER(S) PROVIDE NO WARRANTY FOR THE ACCURACY OR COMPLETENESS OF THIS WORK, OR TO THE FUNCTIONALITY OF THE EXAMPLE PROGRAMS OR DATA CONTAINED THEREIN, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n6. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE WORK 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 WORK (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.", + "json": "rute.json", + "yaml": "rute.yml", + "html": "rute.html", + "license": "rute.LICENSE" + }, + { + "license_key": "rxtx-exception-lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-rxtx-exception-lgpl-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, the copyright holders of RXTX give you\npermission to link RXTX with independent modules that communicate with\nRXTX solely through the Sun Microsytems CommAPI interface version 2,\nregardless of the license terms of these independent modules, and to copy\nand distribute the resulting combined work under terms of your choice,\nprovided that every copy of the combined work is accompanied by a complete\ncopy of the source code of RXTX (the version of RXTX used to produce the\ncombined work), being distributed under the terms of the GNU Lesser General\nPublic License plus this exception. An independent module is a\nmodule which is not derived from or based on RXTX.\n\nNote that people who make modified versions of RXTX are not obligated\nto grant this special exception for their modified versions; it is\ntheir choice whether to do so. The GNU Lesser General Public License\ngives permission to release a modified version without this exception; this\nexception also makes it possible to release a modified version which\ncarries forward this exception.", + "json": "rxtx-exception-lgpl-2.1.json", + "yaml": "rxtx-exception-lgpl-2.1.yml", + "html": "rxtx-exception-lgpl-2.1.html", + "license": "rxtx-exception-lgpl-2.1.LICENSE" + }, + { + "license_key": "ryszard-szopa", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ryszard-szopa", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This work \u2018as-is\u2019 we provide.\nNo warranty, express or implied.\nWe\u2019ve done our best,\nto debug and test.\nLiability for damages denied.\n\nPermission is granted hereby,\nto copy, share, and modify.\nUse as is fit,\nfree or for profit.\nOn this notice these rights rely.", + "json": "ryszard-szopa.json", + "yaml": "ryszard-szopa.yml", + "html": "ryszard-szopa.html", + "license": "ryszard-szopa.LICENSE" + }, + { + "license_key": "saas-mit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-saas-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nIf your version of the Software supports interaction with it remotely through\na computer network, the above copyright notice and this permission notice\nshall be accessible to all users.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.", + "json": "saas-mit.json", + "yaml": "saas-mit.yml", + "html": "saas-mit.html", + "license": "saas-mit.LICENSE" + }, + { + "license_key": "saf", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-saf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Service Availability Forum License\n\nOWNERSHIP OF SPECIFICATION AND COPYRIGHTS. The Specification and all worldwide copyrights therein are the exclusive property of Licensor. You may not remove, obscure, or alter any copyright or other proprietary rights notices that are in or on the copy of the Specification you download. You must reproduce all such notices on all copies of the Specification you make. Licensor may make changes to the Specification, or to items referenced therein, at any time without notice. Licensor is not obligated to support or update the Specification.\n\nCopyright(c) Service Availability(TM) Forum. All rights reserved.\n\nPermission to use, copy, modify, and distribute this software for any purpose without fee is hereby granted, provided that this entire notice is included in all copies of any software which is or includes a copy or modification of this software and in all copies of the supporting documentation for such software.\n\nTHIS SOFTWARE IS BEING PROVIDED \"AS IS\", WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN PARTICULAR, THE SERVICE AVAILABILITY FORUM DOES NOT MAKE ANY REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.", + "json": "saf.json", + "yaml": "saf.yml", + "html": "saf.html", + "license": "saf.LICENSE" + }, + { + "license_key": "safecopy-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-safecopy-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The SafeCopy Free! utility is freeware. \n\nUser is granted a non-exclusive license to use SafeCopy Free! utility, for any legal purpose, at a time.\nThe SafeCopy Free! software may not be rented or leased, but may be permanently transferred, if the person\nreceiving it agrees to terms of this license. If the software is an update, the transfer must include the update\nand all previous versions. \n\nThe SafeCopy Free! may be freely distributed, provided the distribution package is not modified.\nNo person or company may charge a fee for the distribution of SafeCopy Free! without written permission from the\ncopyright holder. \n\nSafeCopy Free! IS DISTRIBUTED \"AS IS\". NO WARRANTY OF ANY KIND IS EXPRESSED OR IMPLIED. YOU USE THIS SOFTWARE AT\nYOUR OWN RISK THE AUTHOR ASSUMES NO LIABILITY FOR DATA LOSS, DAMAGES, DIRECT OR CONSEQUENTIAL, LOSS OF PROFITS OR\nANY OTHER KIND OF LOSS WHILE USING OR MISUSING THIS SOFTWARE.\n\nThe integrity of the original SafeCopy Free! distribution file as distributed by Elwinsoft is essential.\nSafeCopy Free! and all of its related files must be distributed together in the original format.\nThe SafeCopy Free! distribution file may not have files added to it or removed from it, and none of its contents\nmay be emulate, clone, rent, lease, sell, modify, decompile, disassemble, otherwise reverse engineer, or transfer\nthe licensed program, or any subset of the licensed program, except as provided for in this agreement.\nAny such unauthorized use shall result in immediate and automatic termination of this license and may result\nin criminal and/or civil prosecution.\n\nInstalling and/or using SafeCopy Free! signifies acceptance of these terms and conditions of the license.\n\nIf you do not agree with the terms of this license you must remove SafeCopy Free! files from your storage\ndevices and cease to use the product.", + "json": "safecopy-eula.json", + "yaml": "safecopy-eula.yml", + "html": "safecopy-eula.html", + "license": "safecopy-eula.LICENSE" + }, + { + "license_key": "san-francisco-font", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-san-francisco-font", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "APPLE INC.\nLICENSE AGREEMENT FOR THE APPLE SAN FRANCISCO FONT\nFor iOS, OS X and tvOS application uses only\n\nPLEASE READ THIS SOFTWARE LICENSE AGREEMENT (\"LICENSE\") CAREFULLY BEFORE USING\nTHE APPLE SAN FRANCISCO FONT (DEFINED BELOW). BY USING THE APPLE FONT, YOU ARE\nAGREEING TO BE BOUND BY THE TERMS OF THIS LICENSE. IF YOU ARE ACCESSING THE\nAPPLE FONT ELECTRONICALLY, SIGNIFY YOUR AGREEMENT TO BE BOUND BY THE TERMS OF\nTHIS LICENSE BY CLICKING THE \"AGREE \" BUTTON. IF YOU DO NOT AGREE TO THE TERMS OF\nTHIS LICENSE, DO NOT USE THE APPLE FONT AND CLICK \"DISAGREE\".\n\nIMPORTANT NOTE: THE APPLE SAN FRANCISCO FONT IS TO BE USED SOLELY FOR CREATING\nMOCK-UPS OF USER INTERFACES TO BE USED IN SOFTWARE PRODUCTS RUNNING ON\nAPPLE\u2019S iOS, OS X OR tvOS OPERATING SYSTEMS, AS APPLICABLE.\n\n1. General.\n\nA. The Apple font, interfaces, content, data, and other materials accompanying this License, whether on\ndisk, print or electronic documentation, in read only memory, or any other media or in any other form,\n(collectively, the \"Apple Font\") are licensed, not sold, to you by Apple Inc. (\"Apple\") for use only under\nthe terms of this License. Apple and/or Apple\u2019s licensors retain ownership of the Apple Font itself and\nreserve all rights not expressly granted to you. The terms of this License will govern any software\nupgrades provided by Apple that replace and/or supplement the original Apple Font, unless such\nupgrade is accompanied by a separate license in which case the terms of that license will govern.\n\nB. Title and intellectual property rights in and to any content displayed by or accessed through the Apple\nFont belongs to the respective content owner. Such content may be protected by copyright or other\nintellectual property laws and treaties, and may be subject to terms of use of the third party providing\nsuch content. This License does not grant you any rights to use such content nor does it guarantee that\nsuch content will continue to be available to you.\n\n2. Permitted License Uses and Restrictions.\n\nA. Limited License. Subject to the terms of this License, you may use the Apple Font solely for creating\nmock-ups of user interfaces to be used in software products running on Apple\u2019s iOS, OS X or tvOS\noperating systems, as applicable. The foregoing right includes the right to show the Apple Font in screen\nshots, images, mock-ups or other depictions, digital and/or print, of such software products running\nsolely on iOS, OS X or tvOS.\n\nYou may use this Apple Font only for the purposes described in this License and only if you are a\nregistered Apple Developer, or as otherwise expressly permitted by Apple in writing.\n\nB. Other Use Restrictions. The grants set forth in this License do not permit you to, and you agree not to,\ninstall, use or run the Apple Font for the purpose of creating mock-ups of user interfaces to be used in\nsoftware products running on any non-Apple operating system or to enable others to do so. You may not\nembed the Apple Font in any software programs or other products. Except as expressly provided for\nherein, you may not use the Apple Font to, create, develop, display or otherwise distribute any\ndocumentation, artwork, website content or any other work product.\n\nExcept as otherwise expressly permitted by the terms of this License or as otherwise licensed by Apple:\n(i) only one user may use the Apple Font at a time, and (ii) you may not make the Apple Font available\nover a network where it could be run or used by multiple computers at the same time. You may not rent,\nlease, lend, trade, transfer, sell, sublicense or otherwise redistribute the Apple Font in any unauthorized\nway.\n\nC. No Reverse Engineering; Limitations. You may not, and you agree not to or to enable others to, copy \n(except as expressly permitted by this License), decompile, reverse engineer, disassemble, attempt to\nderive the source code of, decrypt, modify, create derivative works of the Apple Font or any part thereof\n(except as and only to the extent any foregoing restriction is prohibited by applicable law).\n\nD. Compliance with Laws. You agree to use the Apple Font in compliance with all applicable laws,\nincluding local laws of the country or region in which you reside or in which you download or use the\nApple Font.\n\n3. No Transfer. Except as otherwise set forth herein, you may not transfer this Apple Font without\nApple\u2019s express prior written approval. All components of the Apple Font are provided as part of a\nbundle and may not be separated from the bundle and distributed as standalone applications.\n\n4. Termination. This License shall commence upon your installation or use of the Apple Font. Your rights\nunder this License will terminate automatically or cease to be effective without notice from Apple (a) if\nyou fail to comply with any term(s) of this License, (b) if you are no longer a registered Apple Developer,\nor (c) if Apple releases a version of the Apple Font which is incompatible with this version of the Apple\nFont. Upon the termination of this License, you shall cease all use of the Apple Font and destroy all\ncopies, full or partial, of the Apple Font. Section 2B, 2C, and 5 through 10 of this License shall survive\nany termination.\n\n5. Disclaimer of Warranties.\n\nA. YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW, USE OF THE APPLE FONT IS AT YOUR SOLE RISK AND THAT THE ENTIRE RISK\nAS TO SATISFACTORY QUALITY, PERFORMANCE, ACCURACY AND EFFORT IS WITH YOU.\n\nB. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE APPLE FONT IS PROVIDED\n\"AS IS\" AND \"AS AVAILABLE\", WITH ALL FAULTS AND WITHOUT WARRANTY OF ANY KIND, AND\nAPPLE AND APPLE'S LICENSORS (COLLECTIVELY REFERRED TO AS \"APPLE\" FOR THE PURPOSES\nOF SECTIONS 5 AND 6) HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH RESPECT TO\nTHE APPLE FONT, EITHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY,\nFITNESS FOR A PARTICULAR PURPOSE, ACCURACY, QUIET ENJOYMENT, AND NONINFRINGEMENT\nOF THIRD PARTY RIGHTS.\n\nC. APPLE DOES NOT WARRANT AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE APPLE\nFONT, THAT THE FUNCTIONS CONTAINED IN THE APPLE FONT WILL MEET YOUR REQUIREMENTS,\nTHAT THE OPERATION OF THE APPLE FONT WILL BE UNINTERRUPTED OR ERROR-FREE, THAT THE\nAPPLE FONT WILL BE COMPATIBLE OR WORK WITH ANY THIRD PARTY SOFTWARE, APPLICATIONS\nOR THIRD PARTY SERVICES, OR THAT DEFECTS IN THE APPLE FONT WILL BE CORRECTED.\nINSTALLATION OF THIS APPLE FONT MAY AFFECT THE AVAILABILITY AND USABILITY OF THIRD\nPARTY SOFTWARE, APPLICATIONS OR THIRD PARTY SERVICES, AS WELL AS APPLE PRODUCTS\nAND SERVICES.\n\nD. YOU FURTHER ACKNOWLEDGE THAT THE APPLE FONT IS NOT INTENDED OR SUITABLE FOR\nUSE IN SITUATIONS OR ENVIRONMENTS WHERE THE FAILURE OR TIME DELAYS OF, OR ERRORS\nOR INACCURACIES IN THE CONTENT, DATA OR INFORMATION PROVIDED BY, THE APPLE FONT\nCOULD LEAD TO DEATH, PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL\nDAMAGE, INCLUDING WITHOUT LIMITATION THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT\nNAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL, LIFE SUPPORT OR\nWEAPONS SYSTEMS.\n\nE. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE OR AN APPLE AUTHORIZED\nREPRESENTATIVE SHALL CREATE A WARRANTY. SHOULD THE APPLE FONT PROVE DEFECTIVE,\nYOU ASSUME THE ENTIRE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n6. Limitation of Liability. TO THE EXTENT NOT PROHIBITED BY APPLICABLE LAW, IN NO EVENT\nSHALL APPLE BE LIABLE FOR PERSONAL INJURY, OR ANY INCIDENTAL, SPECIAL, INDIRECT OR\nCONSEQUENTIAL DAMAGES WHATSOEVER, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR\nLOSS OF PROFITS, CORRUPTION OR LOSS OF DATA, FAILURE TO TRANSMIT OR RECEIVE ANY\nDATA OR INFORMATION, BUSINESS INTERRUPTION OR ANY OTHER COMMERCIAL DAMAGES OR\nLOSSES, ARISING OUT OF OR RELATED TO YOUR USE OR INABILITY TO USE THE APPLE FONT OR\nANY THIRD PARTY SOFTWARE, APPLICATIONS, OR SERVICES IN CONJUNCTION WITH THE APPLE\nFONT, HOWEVER CAUSED, REGARDLESS OF THE THEORY OF LIABILITY (CONTRACT, TORT OR\nOTHERWISE) AND EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\nSOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR\nPERSONAL INJURY, OR OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY\nNOT APPLY TO YOU. In no event shall Apple's total liability to you for all damages (other than as may be\nrequired by applicable law in cases involving personal injury) exceed the amount of fifty dollars ($50.00).\nThe foregoing limitations will apply even if the above stated remedy fails of its essential purpose.\n\n7. Export Control. You may not use or otherwise export or re-export the Apple Font except as\nauthorized by United States law and the laws of the jurisdiction(s) in which the Apple Font was obtained.\nIn particular, but without limitation, the Apple Font may not be exported or re-exported (a) into any U.S.\nembargoed countries or (b) to anyone on the U.S. Treasury Department's list of Specially Designated\nNationals or the U.S. Department of Commerce Denied Person's List or Entity List or any other restricted\nparty lists. By using the Apple Font, you represent and warrant that you are not located in any such\ncountry or on any such list. You also agree that you will not use the Apple Font for any purposes\nprohibited by United States law, including, without limitation, the development, design, manufacture or\nproduction of missiles, nuclear, chemical or biological weapons.\n\n8. Government End Users. The Apple Font and related documentation are \"Commercial Items\", as that\nterm is defined at 48 C.F.R. \u00a72.101, consisting of \"Commercial Computer Software\" and \"Commercial\nComputer Software Documentation\", as such terms are used in 48 C.F.R. \u00a712.212 or 48 C.F.R.\n\u00a7227.7202, as applicable. Consistent with 48 C.F.R. \u00a712.212 or 48 C.F.R. \u00a7227.7202-1 through\n227.7202-4, as applicable, the Commercial Computer Software and Commercial Computer Software\nDocumentation are being licensed to U.S. Government end users (a) only as Commercial Items and (b)\nwith only those rights as are granted to all other end users pursuant to the terms and conditions herein.\nUnpublished-rights reserved under the copyright laws of the United States.\n\n9. Controlling Law and Severability. This License will be governed by and construed in accordance\nwith the laws of the State of California, excluding its conflict of law principles. This License shall not be\ngoverned by the United Nations Convention on Contracts for the International Sale of Goods, the\napplication of which is expressly excluded. If for any reason a court of competent jurisdiction finds any\nprovision, or portion thereof, to be unenforceable, the remainder of this License shall continue in full\nforce and effect.\n\n10. Complete Agreement; Governing Language. This License constitutes the entire agreement\nbetween you and Apple relating to the use of the Apple Font licensed hereunder and supersedes all prior\nor contemporaneous understandings regarding such subject matter. No amendment to or modification\nof this License will be binding unless in writing and signed by Apple. To the extent that there are any\ninconsistent terms in any applicable Apple software license agreements, these terms shall govern your\nuse of the Apple Font.\n\nEA1370\n2/24/2016", + "json": "san-francisco-font.json", + "yaml": "san-francisco-font.yml", + "html": "san-francisco-font.html", + "license": "san-francisco-font.LICENSE" + }, + { + "license_key": "sandeep", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sandeep", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Terms of Use\n\nAll scripts available here are original scripts written by the author\nhimself and are protected by international copyright laws. The terms of\nuse listed below will have to be accepted by those who shall be using\nthese scripts:\n\n 1. The scripts found here may be used on both personal and commercial\n web sites free of charge. However, users may not specifically sell\n these scripts or add them to a product on sale without the expressed\n written permission of the author. These scripts may also not be put\n up at another script archive without prior permission of the author.\n\n 2. Users must agree not to remove the copyright notice inside each\n script. This notice is the one that appears inside the |\n\n 3. Although the use of these scripts are not in any way harmful to any\n machines, the users must agree not to hold the author liable for any\n damage resulting from either the proper or improper use of any of\n the scripts. i.e. the use of these scripts is at the users own risk.\n\nIt would be very much appreciated if a link back to the author's home\npage is included although it is not required.\n\nIf you use any of the scripts listed here it will be understood that you\nhave read and agreed to the above usage terms and conditions.\n\n \nCopyright \u00a9 2000 - 2014 *Sandeep Gangadharan*. All rights reserved.", + "json": "sandeep.json", + "yaml": "sandeep.yml", + "html": "sandeep.html", + "license": "sandeep.LICENSE" + }, + { + "license_key": "sane-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-sane-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "The exception is that, if you link a SANE library with other files\nto produce an executable, this does not by itself cause the\nresulting executable to be covered by the GNU General Public\nLicense. Your use of that executable is in no way restricted on\naccount of linking the SANE library code into it.", + "json": "sane-exception-2.0-plus.json", + "yaml": "sane-exception-2.0-plus.yml", + "html": "sane-exception-2.0-plus.html", + "license": "sane-exception-2.0-plus.LICENSE" + }, + { + "license_key": "sash", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sash", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to use, distribute, or modify this source, \nprovided that this copyright notice remains intact.", + "json": "sash.json", + "yaml": "sash.yml", + "html": "sash.html", + "license": "sash.LICENSE" + }, + { + "license_key": "sata", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sata", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Star And Thank Author License (SATA)\n\nCopyright \u00a9 2014 zTrix(i@ztrix.me) kongtianyi(kongtianyi@foxmail.com)\n\nProject Url: https://github.com/zTrix/sata-license\n https://github.com/kongtianyi/sata-license\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software. \n\nAnd wait, the most important, you shall star/+1/like the project(s) in project url \nsection above first, and then thank the author(s) in Copyright section. \n\nHere are some suggested ways:\n\n - Email the authors a thank-you letter, and make friends with him/her/them.\n - Report bugs or issues.\n - Tell friends what a wonderful project this is.\n - And, sure, you can just express thanks in your mind without telling the world.\n\nContributors of this project by forking have the option to add his/her name and \nforked project url at copyright and project url sections, but shall not delete \nor modify anything else in these two sections.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "json": "sata.json", + "yaml": "sata.yml", + "html": "sata.html", + "license": "sata.LICENSE" + }, + { + "license_key": "sax-pd", + "category": "Public Domain", + "spdx_license_key": "SAX-PD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright Status for SAX\n\nSAX is free!\n\nIn fact, it's not possible to own a license to SAX, since it's been placed in\nthe public domain.\n\nNo Warranty\n\nBecause SAX is released to the public domain, there is no warranty for the\ndesign or for the software implementation, to the extent permitted by applicable\nlaw. Except when otherwise stated in writing the copyright holders and/or other\nparties provide SAX \"as is\" without warranty of any kind, either expressed or\nimplied, including, but not limited to, the implied warranties of\nmerchantability and fitness for a particular purpose. The entire risk as to the\nquality and performance of SAX is with you. Should SAX prove defective, you\nassume the cost of all necessary servicing, repair or correction.\n\nIn no event unless required by applicable law or agreed to in writing will any\ncopyright holder, or any other party who may modify and/or redistribute SAX, be\nliable to you for damages, including any general, special, incidental or\nconsequential damages arising out of the use or inability to use SAX (including\nbut not limited to loss of data or data being rendered inaccurate or losses\nsustained by you or third parties or a failure of the SAX to operate with any\nother programs), even if such holder or other party has been advised of the\npossibility of such damages.\n\nCopyright Disclaimers\n\nThis page includes statements to that effect by David Megginson, who would have\nbeen able to claim copyright for the original work.\n\nSAX 1.0\n\nVersion 1.0 of the Simple API for XML (SAX), created collectively by the\nmembership of the XML-DEV mailing list, is hereby released into the public\ndomain.\n\nNo one owns SAX: you may use it freely in both commercial and non-commercial\napplications, bundle it with your software distribution, include it on a CD-ROM,\nlist the source code in a book, mirror the documentation at your own web site,\nor use it in any other way you see fit.\n\nDavid Megginson, Megginson Technologies Ltd.\n1998-05-11\n\nSAX 2.0\n\nI hereby abandon any property rights to SAX 2.0 (the Simple API for XML), and\nrelease all of the SAX 2.0 source code, compiled code, and documentation\ncontained in this distribution into the Public Domain. SAX comes with NO\nWARRANTY or guarantee of fitness for any purpose.\n\nDavid Megginson, Megginson Technologies Ltd.\n2000-05-05", + "json": "sax-pd.json", + "yaml": "sax-pd.yml", + "html": "sax-pd.html", + "license": "sax-pd.LICENSE" + }, + { + "license_key": "saxpath", + "category": "Permissive", + "spdx_license_key": "Saxpath", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nre permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\nlist of conditions, and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\nthis list of conditions, and the disclaimer that follows these conditions in\nthe documentation and/or other materials provided with the distribution.\n\n3. The name \"SAXPath\" must not be used to endorse or promote products derived\nfrom this software without prior written permission. For written permission,\nplease contact license@saxpath.org.\n\n4. Products derived from this software may not be called \"SAXPath\", nor may\n\"SAXPath\" appear in their name, without prior written permission from the\nSAXPath Project Management (pm@saxpath.org).\n\nIn addition, we request (but do not require) that you include in the end-user\ndocumentation provided with the redistribution and/or in the software itself\nan acknowledgement equivalent to the following:\n\"This product includes software developed by the SAXPath Project\n(http://www.saxpath.org/).\"\n\nAlternatively, the acknowledgment may be graphical using the logos available\nat http://www.saxpath.org/\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE SAXPath\nAUTHORS OR THE PROJECT CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "saxpath.json", + "yaml": "saxpath.yml", + "html": "saxpath.html", + "license": "saxpath.LICENSE" + }, + { + "license_key": "sbia-b", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sbia-b", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PART B. DOWNLOADING AGREEMENT - LICENSE FROM SBIA WITH RIGHT TO SUBLICENSE (\"SOFTWARE LICENSE\").\n------------------------------------------------------------------------------------------------\n\n1. As used in this Software License, \"you\" means the individual downloading and/or\n using, reproducing, modifying, displaying and/or distributing the Software and\n the institution or entity which employs or is otherwise affiliated with such\n individual in connection therewith. The Section of Biomedical Image Analysis,\n Department of Radiology at the Universiy of Pennsylvania (\"SBIA\") hereby grants\n you, with right to sublicense, with respect to SBIA's rights in the software,\n and data, if any, which is the subject of this Software License (collectively,\n the \"Software\"), a royalty-free, non-exclusive license to use, reproduce, make\n derivative works of, display and distribute the Software, provided that:\n (a) you accept and adhere to all of the terms and conditions of this Software\n License; (b) in connection with any copy of or sublicense of all or any portion\n of the Software, all of the terms and conditions in this Software License shall\n appear in and shall apply to such copy and such sublicense, including without\n limitation all source and executable forms and on any user documentation,\n prefaced with the following words: \"All or portions of this licensed product\n (such portions are the \"Software\") have been obtained under license from the\n Section of Biomedical Image Analysis, Department of Radiology at the University\n of Pennsylvania and are subject to the following terms and conditions:\"\n (c) you preserve and maintain all applicable attributions, copyright notices\n and licenses included in or applicable to the Software; (d) modified versions\n of the Software must be clearly identified and marked as such, and must not\n be misrepresented as being the original Software; and (e) you consider making,\n but are under no obligation to make, the source code of any of your modifications\n to the Software freely available to others on an open source basis.\n\n2. The license granted in this Software License includes without limitation the\n right to (i) incorporate the Software into proprietary programs (subject to\n any restrictions applicable to such programs), (ii) add your own copyright\n statement to your modifications of the Software, and (iii) provide additional\n or different license terms and conditions in your sublicenses of modifications\n of the Software; provided that in each case your use, reproduction or\n distribution of such modifications otherwise complies with the conditions\n stated in this Software License.\n\n3. This Software License does not grant any rights with respect to third party\n software, except those rights that SBIA has been authorized by a third\n party to grant to you, and accordingly you are solely responsible for\n (i) obtaining any permissions from third parties that you need to use,\n reproduce, make derivative works of, display and distribute the Software,\n and (ii) informing your sublicensees, including without limitation your\n end-users, of their obligations to secure any such required permissions.\n\n4. The Software has been designed for research purposes only and has not been\n reviewed or approved by the Food and Drug Administration or by any other\n agency. YOU ACKNOWLEDGE AND AGREE THAT CLINICAL APPLICATIONS ARE NEITHER\n RECOMMENDED NOR ADVISED. Any commercialization of the Software is at the\n sole risk of the party or parties engaged in such commercialization.\n You further agree to use, reproduce, make derivative works of, display\n and distribute the Software in compliance with all applicable governmental\n laws, regulations and orders, including without limitation those relating\n to export and import control.\n\n5. The Software is provided \"AS IS\" and neither SBIA nor any contributor to\n the software (each a \"Contributor\") shall have any obligation to provide\n maintenance, support, updates, enhancements or modifications thereto.\n SBIA AND ALL CONTRIBUTORS SPECIFICALLY DISCLAIM ALL EXPRESS AND IMPLIED\n WARRANTIES OF ANY KIND INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n IN NO EVENT SHALL SBIA OR ANY CONTRIBUTOR BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY ARISING IN ANY WAY RELATED\n TO THE SOFTWARE, EVEN IF SBIA OR ANY CONTRIBUTOR HAS BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGES. TO THE MAXIMUM EXTENT NOT PROHIBITED BY LAW OR\n REGULATION, YOU FURTHER ASSUME ALL LIABILITY FOR YOUR USE, REPRODUCTION,\n MAKING OF DERIVATIVE WORKS, DISPLAY, LICENSE OR DISTRIBUTION OF THE SOFTWARE\n AND AGREE TO INDEMNIFY AND HOLD HARMLESS SBIA AND ALL CONTRIBUTORS FROM\n AND AGAINST ANY AND ALL CLAIMS, SUITS, ACTIONS, DEMANDS AND JUDGMENTS ARISING\n THEREFROM.\n\n6. None of the names, logos or trademarks of SBIA or any of SBIA's affiliates\n or any of the Contributors, or any funding agency, may be used to endorse\n or promote products produced in whole or in part by operation of the Software\n or derived from or based on the Software without specific prior written\n permission from the applicable party.\n\n7. Any use, reproduction or distribution of the Software which is not in accordance\n with this Software License shall automatically revoke all rights granted to you\n under this Software License and render Paragraphs 1 and 2 of this Software\n License null and void.\n\n8. This Software License does not grant any rights in or to any intellectual\n property owned by SBIA or any Contributor except those rights expressly\n granted hereunder.\n\n\nPART C. MISCELLANEOUS\n---------------------\n\nThis Agreement shall be governed by and construed in accordance with the laws\nof The Commonwealth of Pennsylvania without regard to principles of conflicts\nof law. This Agreement shall supercede and replace any license terms that you\nmay have agreed to previously with respect to Software from SBIA.", + "json": "sbia-b.json", + "yaml": "sbia-b.yml", + "html": "sbia-b.html", + "license": "sbia-b.LICENSE" + }, + { + "license_key": "scancode-acknowledgment", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-scancode-acknowledgment", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "json": "scancode-acknowledgment.json", + "yaml": "scancode-acknowledgment.yml", + "html": "scancode-acknowledgment.html", + "license": "scancode-acknowledgment.LICENSE" + }, + { + "license_key": "scanlogd-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-scanlogd-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You're allowed to do whatever you like with this software (including\nre-distribution in any form, with or without modification), provided\nthat credit is given where it is due and any modified versions are\nmarked as such.\n\nThere's absolutely no warranty.", + "json": "scanlogd-license.json", + "yaml": "scanlogd-license.yml", + "html": "scanlogd-license.html", + "license": "scanlogd-license.LICENSE" + }, + { + "license_key": "scansoft-1.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-scansoft-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The ScanSoft Public License - Software, Version 1.2\n\nCopyright (c) 2000-2003, ScanSoft, Inc. \n\nRedistribution and use in source and binary forms, with or without \nmodification, are permitted provided that the following conditions are met: \n\t* Redistributions of source code must retain the above copyright \n\tnotice, this list of conditions and the following disclaimer. \n\t* Redistributions in binary form must reproduce the above copyright \n\tnotice, this list of conditions and the following disclaimer in the \n\tdocumentation and/or other materials provided with the distribution. \n\t* Neither the name of SpeechWorks International, Inc., ScanSoft, Inc. \n\tnor the names of its contributors may be used to endorse or promote \t\n\tproducts derived from this software without specific prior written \n\tpermission. For written permission contact Director, Product \n\tManagement, ScanSoft, Inc., 695 Atlantic Ave., \n\tBoston, MA 02111.\n\t* Products derived from the software may not be called \"ScanSoft\" or \n\t\"SpeechWorks\", nor may \"ScanSoft\" or \"SpeechWorks\" appear in their \n\tname, without prior written permission of ScanSoft.\n\t\nAdditional information regarding the use of this software may be noted in the\nRelease Notes included in this package.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND \nCONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES OR \nCONDITIONS, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED \nWARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, \nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE \nDISCLAIMED. IN NO EVENT SHALL SCANSOFT OR ITS CONTRIBUTORS BE LIABLE \nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, \nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, \nOR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON \nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, \nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY \nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE.", + "json": "scansoft-1.2.json", + "yaml": "scansoft-1.2.yml", + "html": "scansoft-1.2.html", + "license": "scansoft-1.2.LICENSE" + }, + { + "license_key": "scea-1.0", + "category": "Permissive", + "spdx_license_key": "SCEA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SCEA Shared Source License 1.0\n\nTerms and Conditions:\n\n1. Definitions:\n\n\"Software\" shall mean the software and related documentation, whether in Source or Object Form, made available under this SCEA Shared Source license (\"License\"), that is indicated by a copyright notice file included in the source files or attached or accompanying the source files.\n\n\"Licensor\" shall mean Sony Computer Entertainment America, Inc. (herein \"SCEA\")\n\n\"Object Code\" or \"Object Form\" shall mean any form that results from translation or transformation of Source Code, including but not limited to compiled object code or conversions to other forms intended for machine execution.\n\"Source Code\" or \"Source Form\" shall have the plain meaning generally accepted in the software industry, including but not limited to software source code, documentation source, header and configuration files.\n\n\"You\" or \"Your\" shall mean you as an individual or as a company, or whichever form under which you are exercising rights under this License.\n\n2. License Grant.\n\nLicensor hereby grants to You, free of charge subject to the terms and conditions of this License, an irrevocable, non-exclusive, worldwide, perpetual, and royalty-free license to use, modify, reproduce, distribute, publicly perform or display the Software in Object or Source Form .\n\n3. No Right to File for Patent.\nIn exchange for the rights that are granted to You free of charge under this License, You agree that You will not file for any patent application, seek copyright protection or take any other action that might otherwise impair the ownership rights in and to the Software that may belong to SCEA or any of the other contributors/authors of the Software.\n\n4. Contributions.\n\nSCEA welcomes contributions in form of modifications, optimizations, tools or documentation designed to improve or expand the performance and scope of the Software (collectively \"Contributions\"). Per the terms of this License You are free to modify the Software and those modifications would belong to You. You may however wish to donate Your Contributions to SCEA for consideration for inclusion into the Software. For the avoidance of doubt, if You elect to send Your Contributions to SCEA, You are doing so voluntarily and are giving the Contributions to SCEA and its parent company Sony Computer Entertainment, Inc., free of charge, to use, modify or distribute in any form or in any manner. SCEA acknowledges that if You make a donation of Your Contributions to SCEA, such Contributions shall not exclusively belong to SCEA or its parent company and such donation shall not be to Your exclusion. SCEA, in its sole discretion, shall determine whether or not to include Your donated Contributions into the Software, in whole, in part, or as modified by SCEA. Should SCEA elect to include any such Contributions into the Software, it shall do so at its own risk and may elect to give credit or special thanks to any such contributors in the attached copyright notice. However, if any of Your contributions are included into the Software, they will become part of the Software and will be distributed under the terms and conditions of this License. Further, if Your donated Contributions are integrated into the Software then Sony Computer Entertainment, Inc. shall become the copyright owner of the Software now containing Your contributions and SCEA would be the Licensor.\n\n5. Redistribution in Source Form\n\nYou may redistribute copies of the Software, modifications or derivatives thereof in Source Code Form, provided that You:\n\na. Include a copy of this License and any copyright notices with source\n\nb. Identify modifications if any were made to the Software\n\nc. Include a copy of all documentation accompanying the Software and modifications made by You\n\n6. Redistribution in Object Form\n\nIf You redistribute copies of the Software, modifications or derivatives thereof in Object Form only (as incorporated into finished goods, i.e. end user applications) then You will not have a duty to include any copies of the code, this License, copyright notices, other attributions or documentation.\n\n7. No Warranty\n\nTHE SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT ANY REPRESENTATIONS OR WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. YOU ARE SOLELY RESPONSIBLE FOR DETERMINING THE APPROPRIATENESS OF USING, MODIFYING OR REDISTRIBUTING THE SOFTWARE AND ASSUME ANY RISKS ASSOCIATED WITH YOUR EXERCISE OF PERMISSIONS UNDER THIS LICENSE.\n\n8. Limitation of Liability\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY WILL EITHER PARTY BE LIABLE TO THE OTHER PARTY OR ANY THIRD PARTY FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, SPECIAL, INCIDENTAL, OR EXEMPLARY DAMAGES WITH RESPECT TO ANY INJURY, LOSS, OR DAMAGE, ARISING UNDER OR IN CONNECTION WITH THIS LETTER AGREEMENT, WHETHER FORESEEABLE OR UNFORESEEABLE, EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH INJURY, LOSS, OR DAMAGE. THE LIMITATIONS OF LIABILITY SET FORTH IN THIS SECTION SHALL APPLY TO THE FULLEST EXTENT PERMISSIBLE AT LAW OR ANY GOVERMENTAL REGULATIONS.\n\n9. Governing Law and Consent to Jurisdiction\n\nThis Agreement shall be governed by and interpreted in accordance with the laws of the State of California, excluding that body of law related to choice of laws, and of the United States of America. Any action or proceeding brought to enforce the terms of this Agreement or to adjudicate any dispute arising hereunder shall be brought in the Superior Court of the County of San Mateo, State of California or the United States District Court for the Northern District of California. Each of the parties hereby submits itself to the exclusive jurisdiction and venue of such courts for purposes of any such action. In addition, each party hereby waives the right to a jury trial in any action or proceeding related to this Agreement.\n\n10. Copyright Notice for Redistribution of Source Code\n\nCopyright 2005 Sony Computer Entertainment Inc.\n\nLicensed under the SCEA Shared Source License, Version 1.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at:\nhttp://research.scea.com/scea_shared_source_license.html\n\nUnless 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.", + "json": "scea-1.0.json", + "yaml": "scea-1.0.yml", + "html": "scea-1.0.html", + "license": "scea-1.0.LICENSE" + }, + { + "license_key": "schemereport", + "category": "Permissive", + "spdx_license_key": "SchemeReport", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "; We intend this report to belong to the entire Scheme community, and so\n; we grant permission to copy it in whole or in part without fee. In\n; particular, we encourage implementors of Scheme to use this report as\n; a starting point for manuals and other documentation, modifying it as\n; necessary.", + "json": "schemereport.json", + "yaml": "schemereport.yml", + "html": "schemereport.html", + "license": "schemereport.LICENSE" + }, + { + "license_key": "scilab-en-2005", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-scilab-en", + "other_spdx_license_keys": [ + "LicenseRef-scancode-scilba-en" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Important notice : this is a translation of the original license\nwritten in French\n\nSCILAB License\n\n1- Preface\n\nThe aim of this license is to lay down the conditions enabling you to\nuse, modify and circulate the SOFTWARE. However, INRIA and ENPC remain\nthe authors of the SOFTWARE and so retain property rights and the use\nof all ancillary rights.\n\n2- Definitions\n\nThe SOFTWARE is defined as all successive versions of SCILAB software\nand their documentation that have been developed by INRIA and ENPC.\n\nSCILAB DERIVED SOFTWARE is defined as all or part of the SOFTWARE that\nyou have modified and/or translated and/or adapted.\n\nSCILAB COMPOSITE SOFTWARE is defined as all or a part of the SOFTWARE\nthat you have interfaced with a software, an application package or a\ntoolbox of which you are owner or entitled beneficiary.\n\n3- Object and conditions of the SOFTWARE license\n\n 1. INRIA and ENPC authorize you free of charge, to reproduce the\n SOFTWARE source and/or object code on any present and future\n support, without restriction, providing the following reference\n appears in all the copies: Scilab (c)INRIA-ENPC.\n\n 2. INRIA and ENPC authorize you free of charge to correct any bugs,\n carry out any modifications required for the porting of the\n SOFTWARE and to carry out any usual functional modification or\n correction, providing you insert a patch file or you indicate by\n any other equivalent means the nature and date of the\n modification or the correction, on the corresponding file(s) of\n the SOFTWARE.\n\n 3. INRIA and ENPC authorize you free of charge to use the SOFTWARE\n source and/or object code, without restriction, providing the\n following reference appears in all the copies: Scilab\n (c)INRIA-ENPC.\n\n 4. INRIA and ENPC authorize you free of charge to circulate and\n distribute, free of charge or for a fee, the SOFTWARE source\n and/or object code, including the SOFTWARE modified in\n accordance with above-mentioned article 3 b), on any present and\n future support, providing: * the following reference appears in\n all the copies: Scilab (c)INRIA-ENPC. * the SOFTWARE is\n circulated or distributed under the present license. * patch\n files or files containing equivalent means indicating the nature\n and the date of the modification or the correction to the\n SOFTWARE file(s) concerned are freely circulated.\n\n4- Object and conditions of the DERIVED SOFTWARE license\n\n 1. INRIA and ENPC authorize you free of charge to reproduce and\n modify and/or translate and/or adapt all or part of the source\n and/or the object code of the SOFTWARE, providing a patch file\n indicating the date and the nature of the modification and/or\n the translation and/or the adaptation and the name of their\n author in the SOFTWARE file(s) concerned is inserted. The\n SOFTWARE thus modified is defined as DERIVED SOFTWARE. The INRIA\n authorizes you free of charge to use the source and/or object\n code of the SOFTWARE, without restriction, providing the\n following reference appears in all the copies: Scilab\n (c)INRIA-ENPC.\n\n 2. INRIA and ENPC authorize you free of charge to use the SOFTWARE\n source and/or object code modified according to article 4-a)\n above, without restriction, providing the following reference\n appears in all the copies: \"Scilab inside (c)INRIA-ENPC\".\n\n 3. The INRIA and the ENPC authorize you free of charge to circulate\n and distribute for no charge, for non-commercial purposes the\n source and/or object code of DERIVED SOFTWARE on any present and\n future support, providing: * the reference \" Scilab inside\n (c)INRIA-ENPC \" is prominently mentioned; * the DERIVED SOFTWARE\n is distributed under the present license; * the recipients of\n the distribution can access the SOFTWARE code source; * the\n DERIVED SOFTWARE is distributed under a name other than SCILAB.\n\n 4. Any commercial use or circulation of the DERIVED SOFTWARE shall\n have been previously authorized by INRIA and ENPC.\n\n5- Object and conditions of the license concerning COMPOSITE SOFTWARE\n\n 1. INRIA and ENPC authorize you to reproduce and interface all or\n part of the SOFTWARE with all or part of other software,\n application packages or toolboxes of which you are owner or\n entitled beneficiary in order to obtain COMPOSITE SOFTWARE.\n\n 2. INRIA and ENPC authorize you free, of charge, to use the\n SOFTWARE source and/or object code included in the COMPOSITE\n SOFTWARE, without restriction, providing the following statement\n appears in all the copies: \"composite software using Scilab\n (c)INRIA-ENPC functionality\".\n\n 3. INRIA and ENPC authorize you, free of charge, to circulate and\n distribute for no charge, for purposes other than commercial,\n the source and/or object code of COMPOSITE SOFTWARE on any\n present and future support, providing: * the following reference\n is prominently mentioned: \"composite software using Scilab\n (c)INRIA-ENPC functionality \"; * the SOFTWARE included in\n COMPOSITE SOFTWARE is distributed under the present license ; *\n recipients of the distribution have access to the SOFTWARE\n source code; * the COMPOSITE SOFTWARE is distributed under a\n name other than SCILAB.\n\n 4. Any commercial use or distribution of COMPOSITE SOFTWARE shall\n have been previously authorized by INRIA and ENPC.\n\n6- Limitation of the warranty\n\nExcept when mentioned otherwise in writing, the SOFTWARE is supplied\nas is, with no explicit or implicit warranty, including warranties of\ncommercialization or adaptation. You assume all risks concerning the\nquality or the effects of the SOFTWARE and its use. If the SOFTWARE is\ndefective, you will bear the costs of all required services,\ncorrections or repairs.\n\n7- Consent\n\nWhen you access and use the SOFTWARE, you are presumed to be aware of\nand to have accepted all the rights and obligations of the present\nlicense.\n\n8- Binding effect\n\nThis license has the binding value of a contract.\n\nYou are not responsible for respect of the license by a third party.\n\n9- Applicable law\n\nThe present license and its effects are subject to French law and the\ncompetent French courts.", + "json": "scilab-en-2005.json", + "yaml": "scilab-en-2005.yml", + "html": "scilab-en-2005.html", + "license": "scilab-en-2005.LICENSE" + }, + { + "license_key": "scilab-fr", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-scilab-fr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Licence SCILAB\n\n1- Pr\u00e9ambule\n\nLa pr\u00e9sente licence a pour objet d'\u00e9tablir les conditions dans\nlesquelles vous pouvez utiliser, modifier et diffuser le\nLOGICIEL. Toutefois l'INRIA et l'ENPC demeurent les auteurs du\nLOGICIEL et conservent la jouissance et l'usage de tous les droits qui\ny sont attach\u00e9s.\n\n2- D\u00e9finitions\n\nLe LOGICIEL est constitu\u00e9 par toutes les versions successives du\nlogiciel SCILAB, et de leur documentation, d\u00e9velopp\u00e9es par l'INRIA et\nl'ENPC.\n\nLes LOGICIELS DERIVES de SCILAB sont constitu\u00e9s de tout ou partie du\nLOGICIEL que vous avez modifi\u00e9 et/ou traduit et/ou adapt\u00e9.\n\nLes LOGICIELS COMPOSITES de SCILAB sont constitu\u00e9s de tout ou partie\ndu LOGICIEL que vous avez mis en interface avec un logiciel, un\nprogiciel ou une bo\u00eete \u00e0 outils dont vous \u00eatres propri\u00e9taire ou ayant\ndroit.\n\n3- Objet et conditions de la licence portant sur le LOGICIEL\n\n 1. L'INRIA et l'ENPC vous autorisent, gratuittement, \u00e0 reproduire\n sur tout support pr\u00e9sent et \u00e0 venir le code source et/ou le code\n objet du LOGICIEL, sans restriction, \u00e0 condition de faire\n figurer sur toutes les copies la mention du copyright suivante :\n Scilab (c)INRIA-ENPC.\n\n 2. L'INRIA et l'ENPC vous autorisent gratuitement \u00e0 corriger les\n bogues \u00e9ventuels, \u00e0 effectuer les modifications n\u00e9cessaires au\n portage du LOGICIEL et \u00e0 proc\u00e9der \u00e0 toute modification ou\n correction fonctionnelle usuelle, \u00e0 condition d'ins\u00e9rer un\n fichier patch, ou d'indiquer par tout autre moyen \u00e9quivalent la\n nature et la date de la modification ou de la correction\n apport\u00e9e, sur le(s) fichier(s) concern\u00e9(s) du LOGICIEL.\n\n 3. L'INRIA et l'ENPC vous autorisent gratuitement, \u00e0 utiliser le\n code source et/ou le code objet du LOGICIEL, sans restriction, \u00e0\n condition de faire figurer sur toutes les copies la mention du\n copyright suivante : Scilab (c)INRIA-ENPC.\n\n 4. L'INRIA et l'ENPC vous autorisent gratuitement, \u00e0 diffuser et\n distribuer gratuitement ou \u00e0 titre on\u00e9reux le code source et/ou\n le code objet du LOGICIEL y compris du LOGICIEL modifi\u00e9\n conform\u00e9ment \u00e0 l'article 3 b) ci-dessus, sur tout support\n pr\u00e9sent et \u00e0 venir, \u00e0 condition : * de faire figurer sur toutes\n les copies la mention du copyright suivante : Scilab\n (c)INRIA-ENPC. * de diffuser ou de distribuer le LOGICIEL sous\n la pr\u00e9sente licence. * de diffuser librement les fichiers patch\n ou les fichiers contenant les moyens \u00e9quivalents indiquant la\n nature et la date de la modification ou de la correction\n apport\u00e9e sur le(s) fichier(s) concern\u00e9(s) du LOGICIEL.\n\n4- Objet et conditions de la licence portant sur les LOGICIELS DERIVES\n\n 1. L'INRIA et l'ENPC vous autorisent, gratuitement, \u00e0 reproduire et\n \u00e0 modifier et/ou \u00e0 traduire et/ou \u00e0 adapter tout ou partie du\n code source et/ou du code objet du LOGICIEL, \u00e0 condition\n d'ins\u00e9rer un fichier patch indiquant la date et la nature de la\n modification et/ou de la traduction et/ou de l'adaptation et le\n nom de leur auteur sur le(s) fichier(s) concern\u00e9(s) du\n LOGICIEL. Le LOGICIEL ainsi modifi\u00e9 constitue des LOGICIELS\n DERIVES. L'INRIA vous autorise gratuitement, \u00e0 utiliser le code\n source et/ou le code objet du LOGICIEL, sans restriction, \u00e0\n condition de faire figurer sur toutes les copies la mention du\n copyright suivante : Scilab (c)INRIA-ENPC.\n\n 2. L'INRIA et l'ENPC vous autorisent gratuitement, \u00e0 utiliser le\n code source et/ou le code objet du LOGICIEL modifi\u00e9 en vertu de\n l'article 4-a) ci-dessus, sans restriction, \u00e0 condition de faire\n figurer sur toutes les copies la mention du copyright suivante :\n \" Scilab inside (c)INRIA-ENPC \".\n\n 3. L'INRIA et l'ENPC vous autorisent, gratuitement, \u00e0 diffuser et \u00e0\n distribuer \u00e0 titre gratuit \u00e0 des fins autres que commerciales,\n le code source et/ou le code objet des LOGICIELS DERIVES sur\n tout support pr\u00e9sent et \u00e0 venir, \u00e0 condition : * d'indiquer\n clairement la mention \" Scilab inside (c)INRIA-ENPC \" ; * de\n distribuer le LOGICIEL DERIVE sous la pr\u00e9sente licence ; * de\n permettre aux destinataires de la distribution d'avoir acc\u00e8s au\n code source du LOGICIEL ; * de distribuer le LOGICIEL DERIVE\n sous une autre d\u00e9nomination que SCILAB.\n\n 4. Toute utilisation ou diffusion commerciale du LOGICIEL DERIVE\n doit \u00eatre pr\u00e9alablement autoris\u00e9e par l'INRIA et l'ENPC.\n\n5- Objet et conditions de la licence portant sur les LOGICIELS COMPOSITES\n\n 1. L'INRIA et l'ENPC vous autorisent \u00e0 reproduire et \u00e0 proc\u00e9der \u00e0\n l'interface de tout ou partie du LOGICIEL, avec tout ou partie\n d'autres logiciels, progiciels ou bo\u00eetes \u00e0 outils dont vous \u00eates\n propri\u00e9taires ou titulaires des droits, afin d'obtenir des\n LOGICIELS COMPOSITES.\n\n 2. L'INRIA et l'ENPC vous autorisent gratuitement, \u00e0 utiliser le\n code source et/ou le code objet du LOGICIEL inclus dans le\n LOGICIEL COMPOSITE, sans restriction, \u00e0 condition de faire\n figurer sur toutes les copies la mention du copyright suivante :\n \" logiciel composite utilisant les fonctionnalit\u00e9s de Scilab\n (c)INRIA-ENPC \".\n\n 3. L'INRIA et l'ENPC vous autorisent, gratuitement, \u00e0 diffuser et \u00e0\n distribuer \u00e0 titre gratuit, \u00e0 des fins autres que commerciales,\n le code source et/ou le code objet des LOGICIELS COMPOSITES sur\n tout support pr\u00e9sent et \u00e0 venir, \u00e0 condition : * d'indiquer\n clairement la mention \" logiciel composite utilisant les\n fonctionnalit\u00e9s de Scilab (c)INRIA-ENPC \" ; * de distribuer le\n LOGICIEL inclus dans les LOGICIELS COMPOSITES sous la pr\u00e9sente\n licence ; * de permettre aux destinataires de la distribution\n d'avoir acc\u00e8s au code source du LOGICIEL ; * de distribuer le\n LOGICIEL COMPOSITE sous une autre d\u00e9nomination que SCILAB.\n\n 4. Toute utilisation ou diffusion commerciale du LOGICIEL COMPOSITE\n doit \u00eatre pr\u00e9alablement autoris\u00e9e par l'INRIA et l'ENPC.\n\n6- Limitation de garantie\n\nSauf mention \u00e9crite contraire, le LOGICIEL est fourni en l'\u00e9tat, sans\naucune garantie explicite ou implicite, y compris les garanties de\ncommercialisation ou d'adaptation. Vous assumez tous les risques quant\n\u00e0 la qualit\u00e9 ou aux effets du LOGICIEL et de son utilisation. Si le\nLOGICIEL est d\u00e9fectueux, vous assumez le co\u00fbt de tous les services,\ncorrections ou r\u00e9parations n\u00e9cessaires.\n\n7- Consentement\n\nEn acc\u00e9dant et en travaillant sur le LOGICIEL, vous \u00eates pr\u00e9sum\u00e9\nconna\u00eetre et avoir accept\u00e9 tous les droits et toutes les obligations\nr\u00e9sultant de la pr\u00e9sente licence.\n\n8- Effet Obligatoire\n\nCette licence a la valeur obligatoire d'un contrat.\n\nVous n'\u00eates pas responsable du respect de la licence par un tiers.\n\n9- Loi applicable\n\nLa pr\u00e9sente licence et ses effets sont soumis au droit fran\u00e7ais et aux\ntribunaux fran\u00e7ais comp\u00e9tents.", + "json": "scilab-fr.json", + "yaml": "scilab-fr.yml", + "html": "scilab-fr.html", + "license": "scilab-fr.LICENSE" + }, + { + "license_key": "scintilla", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-scintilla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose and without fee is hereby granted,\nprovided that the above copyright notice appear in all copies and that\nboth that copyright notice and this permission notice appear in\nsupporting documentation.\n\nNEIL HODGSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS\nSOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS, IN NO EVENT SHALL NEIL HODGSON BE LIABLE FOR ANY\nSPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE\nOR PERFORMANCE OF THIS SOFTWARE.", + "json": "scintilla.json", + "yaml": "scintilla.yml", + "html": "scintilla.html", + "license": "scintilla.LICENSE" + }, + { + "license_key": "scola-en", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-scola-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Statistics Canada Open Licence Agreement\n\nThis agreement is between Her Majesty the Queen in Right of Canada, as represented by the Minister for Statistics Canada (\"Statistics Canada\") and you (an individual or a legal entity that you are authorized to represent).\n\nThe following are terms governing your use of the Information. Your use of any Information indicates your understanding and agreement to be bound by these terms. If you do not agree to these terms, you may not use the Information.\n\nStatistics Canada may modify this agreement at any time, and such modifications shall be effective immediately upon posting of the modified agreement on the Statistics Canada website. Your use of the Information will be governed by the terms of the agreement in force as of the date and time you accessed the Information.\nDefinitions\n\n\"Information\" means any data files, data bases, tables, graphs, maps and text for which Statistics Canada is the owner or a licensee of all intellectual property rights and made available to you in accordance with this agreement, at cost or no cost, either on the Statistics Canada website or by other means as a result of a contract for goods or services.\n\n\"Value-added Products\" means any products you have produced by adapting or incorporating the Information, in whole or in part, in accordance with this agreement.\nLicence Grant\n\nSubject to this agreement, Statistics Canada grants you a worldwide, royalty-free, non-exclusive licence to:\n\n use, reproduce, publish, freely distribute, or sell the Information;\n use, reproduce, publish, freely distribute, or sell Value-added Products; and,\n sublicence any or all such rights, under terms consistent with this agreement.\n\nIn doing any of the above, you shall:\n\n reproduce the Information accurately;\n not use the Information in a way that suggests that Statistics Canada endorses you or your use of the Information;\n not misrepresent the Information or its source;\n use the Information in a manner that does not breach or infringe any applicable laws;\n not merge or link the Information with any other databases for the purpose of attempting to identify an individual person, business or organization; and\n not present the Information in such a manner that gives the appearance that you may have received, or had access to, information held by Statistics Canada about any identifiable individual person, business or organization.\n\nIntellectual Property Rights\n\nIntellectual property rights, being any and all intellectual property rights recognized by the law, including but not limited to, intellectual property rights protected through legislation, in Value-added Products, shall vest in you, in such person as you shall decide or as determined by law.\n\nIntellectual property rights that Statistics Canada may have in the Information shall remain the property of Statistics Canada. Intellectual property rights that third parties may have in the Information shall remain their property.\nAcknowledgment of Source\n\n(a) You shall include and maintain the following notice on all licensed rights of the Information:\n\nSource: Statistics Canada, name of product, reference date. Reproduced and distributed on an \"as is\" basis with the permission of Statistics Canada.\n\n(b) Where any Information is contained within a Value-added Product, you shall include on such Value-added Product the following notice:\n\nAdapted from Statistics Canada, name of product, reference date. This does not constitute an endorsement by Statistics Canada of this product.\nAdvertising and Publicity\n\nYou shall not include on any reproduction of the Information or any material relating to your Value-added Product, or elsewhere:\n\n(a) the name, crest, logos or other insignia or domain names of Statistics Canada or the official symbols of the Government of Canada, including the Canada wordmark, the Coat of Arms of Canada, and the flag symbol, without written authorization from the Treasury Board Secretariat. Request for authorization from the Treasury Board Secretariat may be addressed to:\n\ninformation@fip-pcim.gc.ca\nFederal Identity Program\nTreasury Board of Canada Secretariat\n300 Laurier Avenue West\nOttawa, Canada K1A 0R5\n\n(b) any annotation that may be interpreted as an endorsement by the Statistics Canada of the Value-added Product or that would imply that you have an exclusive distribution arrangement for any or all of the Information or that you have access to any confidential information or information not available to others.\nNo Warranty and no Liability\n\nThe Information is licensed 'as is', and Statistics Canada makes no representations or warranties whatsoever with respect to the Information, whether express or implied, in relation to the Information and expressly disclaims any implied warranty of merchantability or fitness for a particular purpose of the Information.\n\nStatistics Canada or any of its Ministers, officials, servants, employees, agents, successors and assigns shall not be liable for any errors or omissions in the Information and shall not, under any circumstances, be liable for any direct, indirect, special, incidental, consequential, or other loss, injury or damage, however caused, that you may suffer at any time by reason of your possession, access to or use of the Information or arising out of the exercise of your rights or the fulfilment of your obligations under this agreement.\nTerm\n\nThis agreement is effective as of the date and time you access the Information and shall terminate automatically if you breach any of the terms of this agreement.\n\nNotwithstanding termination of this agreement:\n\n you may continue to distribute Value-added Products for the purpose of completing orders made before the termination of this agreement provided you comply with the requirements set out in the Acknowledgment of Source clause; and\n individuals or entities who have received Value-added Products or reproductions of the Information from you pursuant to this agreement will not have their licences terminated provided they remain in full compliance with those licences.\n\nSurvival\n\nAll obligations which expressly or by their nature survive termination of this agreement shall continue in full force and effect. For greater clarity, and without limiting the generality of the foregoing, the following provisions survive expiration or termination of this agreement: Acknowledgment of Source, and No warranty and no Liability.\nApplicable Law\n\nThis agreement shall be governed and construed in accordance with the laws of the province of Ontario and the laws of Canada applicable therein. The parties hereby attorn to the exclusive jurisdiction of the Federal Court of Canada.", + "json": "scola-en.json", + "yaml": "scola-en.yml", + "html": "scola-en.html", + "license": "scola-en.LICENSE" + }, + { + "license_key": "scola-fr", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-scola-fr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Entente de licence ouverte de Statistique Canada\n\nLa pr\u00e9sente entente est conclue entre Sa Majest\u00e9 la Reine du chef du Canada, repr\u00e9sent\u00e9e par le ministre responsable de Statistique Canada (\u00ab Statistique Canada \u00bb) et vous (un particulier ou une personne morale que vous \u00eates autoris\u00e9 \u00e0 repr\u00e9senter).\n\nVous trouverez ci-apr\u00e8s les conditions qui r\u00e9gissent votre utilisation de l'information. Votre utilisation de toute information indique que vous comprenez ces conditions et que vous acceptez d'\u00eatre li\u00e9 par celles-ci. Si vous n'acceptez pas ces conditions, il ne vous est pas permis d'utiliser l'information.\n\nStatistique Canada peut modifier cette entente en tout temps, et ces modifications entreront en vigueur d\u00e8s la publication de la version modifi\u00e9e de l'entente dans le site Web de Statistique Canada. Votre utilisation de l'information sera r\u00e9gie par les conditions de l'entente en vigueur \u00e0 la date et \u00e0 l'heure o\u00f9 vous avez acc\u00e9d\u00e9 \u00e0 l'information.\nD\u00e9finitions\n\nL'\u00ab information \u00bb comprend tout fichier de donn\u00e9es, base de donn\u00e9es, tableau, graphique, carte ou texte dont Statistique Canada est propri\u00e9taire ou concessionnaire de tous les droits de propri\u00e9t\u00e9 intellectuelle et qui est mis \u00e0 votre disposition conform\u00e9ment \u00e0 la pr\u00e9sente entente, moyennant des frais ou gratuitement, dans le site Web de Statistique Canada ou par d'autres moyens en vertu d'un contrat pour des biens ou des services.\n\nLes \u00ab produits \u00e0 valeur ajout\u00e9e \u00bb comprennent tous produits que vous avez \u00e9labor\u00e9s en adaptant ou en int\u00e9grant l'information, en tout ou en partie, conform\u00e9ment aux conditions de la pr\u00e9sente entente.\nOctroi de licence\n\nSous r\u00e9serve des conditions de la pr\u00e9sente entente, Statistique Canada vous accorde une licence mondiale, libre de redevances et non exclusive vous permettant :\n\n d'utiliser, de reproduire, de publier, de diffuser gratuitement ou de vendre l'information;\n d'utiliser, de reproduire, de publier, de diffuser gratuitement ou de vendre les produits \u00e0 valeur ajout\u00e9e;\n d'accorder des sous licences conf\u00e9rant une partie ou la totalit\u00e9 de ces droits, conform\u00e9ment aux conditions de cette entente.\n\nDurant l'ex\u00e9cution de toute activit\u00e9 susmentionn\u00e9e, vous devez :\n\n reproduire l'information avec exactitude;\n ne pas utiliser l'information d'une fa\u00e7on qui laisse croire que Statistique Canada vous appuie ou appuie l'utilisation que vous faites de l'information;\n ne pas pr\u00e9senter de mani\u00e8re inexacte l'information ou sa source;\n utiliser l'information d'une mani\u00e8re qui ne viole ni n'enfreint toute loi applicable;\n ne pas fusionner ni lier l'information \u00e0 toute autre base de donn\u00e9es pour tenter d'identifier une personne, une entreprise ou une organisation particuli\u00e8re;\n ne pas pr\u00e9senter l'information d'une fa\u00e7on donnant l'impression que vous auriez pu avoir re\u00e7u ou avoir eu acc\u00e8s \u00e0 des renseignements d\u00e9tenus par Statistique Canada sur toute personne, entreprise ou organisation identifiable.\n\nDroits de propri\u00e9t\u00e9 intellectuelle\n\nLes droits de propri\u00e9t\u00e9 intellectuelle visant les produits \u00e0 valeur ajout\u00e9e, \u00e0 savoir tout droit de propri\u00e9t\u00e9 intellectuelle reconnu par la loi, y compris mais sans s'y limiter les droits de propri\u00e9t\u00e9 intellectuelle prot\u00e9g\u00e9s par une l\u00e9gislation, vous sont attribu\u00e9s ou sont attribu\u00e9s \u00e0 la personne que vous d\u00e9signez ou qui est d\u00e9sign\u00e9e par application de la loi.\n\nLes droits de propri\u00e9t\u00e9 intellectuelle visant l'information que poss\u00e8de Statistique Canada demeurent la propri\u00e9t\u00e9 de Statistique Canada. Les droits de propri\u00e9t\u00e9 intellectuelle visant l'information qui appartient \u00e0 des tiers demeurent la propri\u00e9t\u00e9 de ces derniers.\nMention de la source\n\n(a) Pour tout exercice de vos droits d'utilisation de l'information, vous devez inclure et maintenir la mention suivante :\n\nSource : Statistique Canada, nom du produit, date de r\u00e9f\u00e9rence. Reproduit et diffus\u00e9 \u00ab tel quel \u00bb avec la permission de Statistique Canada.\n\n(b) Pour toute information contenue dans un produit \u00e0 valeur ajout\u00e9e, vous devez inclure dans ce produit la mention suivante :\n\nAdapt\u00e9 de Statistique Canada, nom du produit, date de r\u00e9f\u00e9rence. Cela ne constitue pas une approbation de ce produit par Statistique Canada.\nPromotion et publicit\u00e9\n\nIl vous est interdit d'utiliser sur toute reproduction de l'information ou sur tout mat\u00e9riel ayant trait \u00e0 votre produit \u00e0 valeur ajout\u00e9e, ou ailleurs :\n\n(a) le nom, l'embl\u00e8me, les logos ou tout insigne ou nom de domaine de Statistique Canada ou les symboles officiels du gouvernement du Canada, y compris le mot symbole \u00ab Canada \u00bb, les armoiries du Canada et le symbole du drapeau, sans l'autorisation \u00e9crite du Secr\u00e9tariat du Conseil du Tr\u00e9sor. La demande d'autorisation au Secr\u00e9tariat du Conseil du Tr\u00e9sor peut \u00eatre adress\u00e9e \u00e0 :\n\ninformation@fip-pcim.gc.ca\nProgramme de coordination de l'image de marque\nSecr\u00e9tariat du Conseil du Tr\u00e9sor du Canada,\n300, avenue Laurier Ouest\nOttawa (Canada) K1A 0R5\n\n(b) toute annotation qui pourrait \u00eatre interpr\u00e9t\u00e9e comme une approbation du produit \u00e0 valeur ajout\u00e9e par Statistique Canada ou qui sous-entendrait que vous avez conclu une entente de distribution exclusive pour une partie ou pour toute l'information, ou que vous avez acc\u00e8s \u00e0 des renseignements confidentiels ou non accessibles \u00e0 d'autres parties.\nPas de garantie ni de responsabilit\u00e9\n\nL'information est octroy\u00e9e sous licence \u00ab telle quelle \u00bb, et Statistique Canada ne fait aucune assertion et n'offre aucune garantie d'aucune sorte, explicite ou implicite, relativement \u00e0 l'information et rejette express\u00e9ment toute garantie implicite de qualit\u00e9 marchande de l'information ou de son utilit\u00e9 \u00e0 des fins particuli\u00e8res.\n\nStatistique Canada ni aucun de ses ministres, dirigeants, fonctionnaires, employ\u00e9s, agents, successeurs et ayant droit ne sera tenu responsable d'aucune erreur ni omission dans l'information et ne sera en aucun cas tenu responsable des pertes, blessures ou dommages directs, indirects, sp\u00e9ciaux, cons\u00e9quents ou autre, quelle qu'en soit la cause, que vous pourriez subir \u00e0 n'importe quel moment en raison de votre possession de l'information, de votre acc\u00e8s \u00e0 cette information ou de son utilisation, ou r\u00e9sultant de l'exercice de vos droits ou du respect de vos obligations aux termes de la pr\u00e9sente entente.\nTerme\n\nLa pr\u00e9sente entente entre en vigueur \u00e0 la date et \u00e0 l'heure o\u00f9 vous acc\u00e9dez \u00e0 l'information et est r\u00e9sili\u00e9e automatiquement si vous enfreignez l'une de ses conditions.\n\nNonobstant la r\u00e9siliation de cette entente :\n\n vous pouvez continuer de distribuer les produits \u00e0 valeur ajout\u00e9e aux fins de remplir les commandes faites avant la r\u00e9siliation de l'entente, \u00e0 condition que vous respectiez les exigences \u00e9nonc\u00e9es dans la clause de mention de la source;\n les licences des particuliers ou des personnes morales auxquels vous avez fourni des produits \u00e0 valeur ajout\u00e9e ou des reproductions de l'information en vertu de la pr\u00e9sente entente ne seront pas r\u00e9sili\u00e9es \u00e0 condition qu'ils continuent \u00e0 se conformer enti\u00e8rement aux conditions de ces licences.\n\nSurvie\n\nLes obligations qui survivent \u00e0 la r\u00e9siliation de la pr\u00e9sente entente, express\u00e9ment ou en raison de leur nature, demeureront en vigueur. Pour plus de clart\u00e9, et sans limiter la g\u00e9n\u00e9ralit\u00e9 de ce qui pr\u00e9c\u00e8de, les dispositions qui suivent survivent \u00e0 l'expiration ou \u00e0 la r\u00e9siliation de la pr\u00e9sente entente : \u00ab Mention de la source \u00bb et \u00ab Aucune garantie ni responsabilit\u00e9 \u00bb.\nLois applicables\n\nLa pr\u00e9sente entente est r\u00e9gie et interpr\u00e9t\u00e9e conform\u00e9ment aux lois de la province de l'Ontario et aux lois du Canada qui sont applicables. Par la pr\u00e9sente, les parties reconnaissent la comp\u00e9tence exclusive de la Cour f\u00e9d\u00e9rale du Canada.", + "json": "scola-fr.json", + "yaml": "scola-fr.yml", + "html": "scola-fr.html", + "license": "scola-fr.LICENSE" + }, + { + "license_key": "scribbles", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-scribbles", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copying or modifying this code for any purpose is permitted, provided that this\ncopyright notice is preserved in its entirety in all copies or modifications\n\nCOMPAQ COMPUTER CORPORATION MAKES NO WARRANTIES, EXPRESSED OR IIMPLIED, AS TO\nTHE USEFULNESS OR CORRECTNESS OF THIS CODE.", + "json": "scribbles.json", + "yaml": "scribbles.yml", + "html": "scribbles.html", + "license": "scribbles.LICENSE" + }, + { + "license_key": "script-asylum", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-script-asylum", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Use of these materials are limited to personal and commercial use as long as\nlong as credits are left intact. Modification of the original material is\npermitted as long as credits for the original developer(s) are left intact and\npermission is granted by the developer(s).", + "json": "script-asylum.json", + "yaml": "script-asylum.yml", + "html": "script-asylum.html", + "license": "script-asylum.LICENSE" + }, + { + "license_key": "script-nikhilk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-script-nikhilk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "End User License Agreement for Script# \nIT IS IMPORTANT THAT YOU CAREFULLY READ THIS NOTICE BEFORE INSTALLING THIS PRODUCT. BY INSTALLING, OR OTHERWISE USING THIS SOFTWARE, YOU AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE AGREEMENT (THE \"AGREEMENT\") WHICH CONSTITUTES A LEGALLY BINDING CONTRACT BETWEEN THE LICENSOR (PROJECTS.NIKHILK.NET, HEREAFTER \"WE\", OR \"US\") AND THE LICENSEE (EITHER AN INDIVIDUAL OR ENTITY, HEREAFTER \"YOU\"). \nTHIS AGREEMENT \n1.1 In this Agreement, the phrase \"Software\" means any version of the computer programs above and all associated media, printed materials, \"online\" or electronic documentation and bundled software. \n1.2 The Software is licensed, not sold, to You for use only under the terms of this Agreement. We reserve any rights not expressly granted to You. \n1.3 By installing, copying or otherwise using the Software, You agree to be bound by the terms of this Agreement. If You do not agree to the terms of this Agreement You must not use the Software and must immediately delete any and all copies of the Software in your procession. \nGRANT OF LICENSE \n2.1 We hereby grant You the following non-exclusive license to use the Software. The rights granted to the Licensee are personal and non-transferable. \n2.2 You may deploy the script files included with the product or those generated from using the product to a Web server. \n2.3 The following are the restrictions placed on the use of the Software. You may not: \n- Remove the auto-generated header identifying Script# as the generator or tool used to produce the script files you deploy into your application or component. \n- Modify or adapt the Software into another program or product. \n- Reverse engineer, disassemble or decompile, or make any attempt to discover the source code of the Software through current or future available technologies. \n- Redistribute, publish or deploy the Software on a standalone basis for others to copy without prior acknowledgment from the Licensor. \n- Copy or republish any portion of the documentation without prior acknowledgment from the Licensor. \n- Sell, re-license, sub-license, rent, lease any part of the Software or create derivative works. \n- Use the Software to perform any unauthorized transfer of information or any illegal purpose. \n2.4 We may from time to time create updated versions of the Software and may, at our option, make such updates available to You. \n2.5 The Software is pre-release software. We have the sole right to determine all aspects of future updates, changes, and releases of the Software. \n2.6 You permit the Software to connect and communicate with our servers to send version and usage information for the purposes of improving the Software or sending information about available updates. \n2.7 You agree to indemnify, hold harmless, and defend Us from and against any claims, allegations, lawsuits, losses and costs (including attorney fees), that arise or result from the use, deployment or distribution the software. \n2.8 Any feedback including bug reports, feature suggestions or ideas provided by You to Us through any communication channel are given to Us without any associated charge or implied patent or intellectual rights. Thereafter, We have the full right to use, share and commercialize such feedback in any way and \nfor any purpose. You will not give feedback that is subject to a license that requires Us to license the Software to third parties because of inclusion of such feedback. These rights survive this Agreement. \n2.9 We do not provide any support services because the software is being made available to You in \"as-is\" form. \n2.10 We reserve the right to update the Agreement and the terms of the License with newer versions of the Software. \nINTELLECTUAL PROPERTY RIGHTS \n3.1 The Software is protected by copyright and other intellectual property laws. Title to, ownership of, and all rights and interests in each and every part of the Software (including all copyrights, trademarks, patent rights or other intellectual property rights of whatever nature), and all copies thereof shall remain at all times vested in Us. \nWARRANTIES \n4.1 We expressly disclaim any warranty for the Software. The Software and any associated materials are provided \"As Is\" without warranty of any kind, either express or implied, including without limitation, the implied warranties or merchantability, fitness for a particular purpose, or non-infringement. The entire risk arising out of use or performance of the Software remains with You. \nTERMINATION \n5.1 This Agreement takes effect upon your use of the Software and remains effective until terminated. You may terminate it at any time by destroying all copies of the Software in possession. It will also automatically terminate if You fail to comply with any term or condition of this Agreement. You agree on termination of this Agreement to destroy all copies of the Software in possession. \nGENERAL TERMS \n6.1 This written Agreement is the exclusive agreement between You and Us concerning the Software and supersedes any prior agreement, communication, advertising or representation concerning the Software. \n6.2 This Agreement may be modified only by a writing signed by You and Us. \n6.3 In the event of litigation between You and Us concerning the Software, the prevailing party in the litigation will be entitled to recover attorney fees and expenses from the other party. \n6.4 This Agreement is governed by the laws of the State of Washington, USA. Irrespective of the country in which the Software was acquired, the construction, validity and performance of the Agreement shall be governed in all respects by English law. You agree to submit to exclusive jurisdiction of English courts. \n6.5 If any provision of this Agreement is found to be invalid by any court having competent jurisdiction, the invalidity of such provision shall not affect the validity of the remaining provisions of this Agreement, which shall remain in full force and effect. \n6.6 You agree that the Software will not be shipped, transferred or exported into any country or used in any manner prohibited by the United States Export Administration Act or any other export laws, restrictions or regulations.", + "json": "script-nikhilk.json", + "yaml": "script-nikhilk.yml", + "html": "script-nikhilk.html", + "license": "script-nikhilk.LICENSE" + }, + { + "license_key": "scrub", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-scrub", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SCRUB - Simple Character String Replacer Documentation\n\nFirst Release: December 1988\n\nCopyright 1988-1993 Duxbury Systems, Inc.\n\nThis program and its documentation, that is specifically the files SCRUB.EXE,\nSCRUB.ERM, SCRUB.EHL and SCRUB.DOC, may be distributed freely and used for any\nlegal purpose, provided it is not altered in any way nor its notices, including\nthis notice, obscured from view.\n\nDuxbury Systems, Inc. of Westford, Massachusetts, USA designs and manufactures\nsoftware related to braille. We can be reached at 978-692-3000.", + "json": "scrub.json", + "yaml": "scrub.yml", + "html": "scrub.html", + "license": "scrub.LICENSE" + }, + { + "license_key": "scsl-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-scsl-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun Community Source License v3.0\n\t\t\t\t\t\nII. PURPOSES\nOriginal Contributor is licensing the Reference Code and Technology Specifications and is permitting implementation of Technology under and subject to this Sun Community Source License (the \"License\") to promote research, education, innovation and product development using the Technology.\n\nCOMMERCIAL USE AND DISTRIBUTION OF TECHNOLOGY IS PERMITTED ONLY UNDER OPTIONAL SUPPLEMENTS TO THIS LICENSE.\n\nIII. RESEARCH USE RIGHTS\n\nA. From Original Contributor. Subject to and conditioned upon Your full compliance with the terms and conditions of this License, including Sections IV (Restrictions and Community Responsibilities) and V.E.7 (International Use), Original Contributor:\n\n1. grants to You a non-exclusive, worldwide and royalty-free license to the extent of Original Contributor's copyrights and trade secret rights in and covering the Reference Code and Technology Specifications to do the following for Your Research Use only:\na) reproduce, prepare derivative works of, display and perform the Reference Code, in whole or in part, alone or as part of Covered Code;\nb) reproduce, prepare derivative works of and display the Technology Specifications;\nc) distribute source or object code copies of Reference Code, in whole or in part, alone or as part Covered Code, to other Community Members or to students; and\nd) distribute object code copies of Reference Code, in whole or in part, alone or as part of object code copies of Covered Code, to third parties.\n\n2. will not, during the term of Your License, bring against You any claim alleging that Your using, making, having made, importing or distributing Community Code for Your Research Use, insofar as permitted under Section III.A.1 of this License, necessarily infringes any patent now owned or hereafter acquired by Original Contributor whose claims cover subject matter contained in or embodied by the Reference Code or which would necessarily be infringed by the use or distribution of any and all implementations of the Technology Specifications.\n\n3. grants to You a non-exclusive, worldwide and royalty-free license, to the extent of its intellectual property rights therein, to use (a) Original Contributor's class, interface and package names only insofar as necessary to accurately reference or invoke Your Modifications for Research Use, and (b) any associated software tools, documents and information provided by Original Contributor at the Technology Site for use in exercising the above license rights.\n\nB. Contributed Code. Subject to and conditioned upon compliance with the terms and conditions of this License, including Sections IV (Restrictions and Community Responsibilities) and V.E.7 (International Use), each Community Member:\n\n1. grants to each Community Member a non-exclusive, worldwide and royalty-free license to the extent of such Community Member's copyrights and trade secret rights in and covering its Contributed Code, to reproduce, modify, display and distribute Contributed Code, in whole or in part, in source code and object code form, to the same extent as permitted under such Community Member's License with Original Contributor (including all supplements thereto).\n\n2. will not, during the term of the Community Member's License, bring against any Community Member any claim alleging that using, making, having made, importing or distributing Contributed Code as permitted under this License (including any supplements) infringes any patents or patent applications now owned or hereafter acquired by such Community Member which patents or patent applications are infringed by using, making, having made, selling, offering for sale, importing or otherwise transferring the Contributed Code (\"Community Member Patents\"). This covenant shall apply to the combination of the Contributed Code with other Covered Code if, at the time the Contributed Code is posted, such addition of the Contributed Code causes such combination to be covered by the Community Member Patents. The covenant shall not apply to any other combinations which include the Contributed Code or to the use or distribution of modified Contributed Code where the modifications made by the Community Member add to the functions performed by the Contributed Code in question and where, in the absence of such modifications, there would be no infringement of a Community Member Patent.\n\n3. grants to Original Contributor, in addition to the rights set forth in Sections III.B.1 and III.B.2, the right to sublicense all such rights in Contributed Code, in whole or in part, as part of Reference Code or other technologies based in whole or in part on Reference Code or Technology and to copy, distribute, modify and prepare derivative works of Contributed Code Specifications, in whole or in part, in connection with the exercise of such rights.\n\nC. Subcontracting. You may provide Covered Code to a contractor for the sole purpose of providing development services exclusively to You consistent with Your rights under this License. Such Contractor must be a Community Member or have executed an agreement with You that is consistent with Your rights and obligations under this License. Such subcontractor must assign exclusive rights in all work product to You. You agree that such work product is to be treated as Covered Code.\n\nD. No Implied Licenses. Neither party is granted any right or license other than the licenses and covenants expressly set out herein. Other than the licenses and covenants expressly set out herein, Original Contributor retains all right, title and interest in Reference Code and Technology Specifications and You retain all right, title and interest in Your Modifications and associated specifications. Except as expressly permitted herein, You must not otherwise use any package, class or interface naming conventions that appear to originate from Original Contributor.\n\nIV. RESTRICTIONS AND COMMUNITY RESPONSIBILITIES\nAs a condition to Your license and other rights and immunities, You must comply with the restrictions and responsibilities set forth below, as modified or supplemented, if at all, in Attachment B, Additional Research Use Terms and Conditions.\n\nA. Source Code Availability. You must provide source code and any specifications for Your Error Corrections to Original Contributor as soon as practicable. You may provide other Contributed Code to Original Contributor at any time, in Your discretion. Original Contributor may, in its discretion, post Your Contributed Code and Contributed Code Specifications on the Technology Site. You may post Your Contributed Code and/or Contributed Code Specifications on another website of Your choice; provided, source code of Community Code and Technology Specifications must be provided to Community Members only and only following certification of Community Member status as required under Section IV.D.\n\nB. Notices. You must reproduce without alteration copyright and other proprietary notices in any Covered Code that You distribute. The statement, \"Use and Distribution is subject to the Sun Community Source License available at http://sun.com/software/communitysource\" must appear prominently in Your Modifications and, in all cases, in the same file as all Your copyright and other proprietary notices.\n\nC. Modifications. You must include a diff file with Your Contributed Code that identifies and details the changes or additions You made, the version of Reference Code or Contributed Code You used and the date of such changes or additions. In addition, You must provide any Contributed Code Specifications for Your Contributed Code. Your Modifications are Covered Code and You expressly agree that use and distribution, in whole or in part, of Your Modifications shall only be done in accordance with and subject to this License.\n\nD. Distribution Requirements. You may distribute object code of Covered Code to third parties for Research Use only pursuant to a license of Your choice which is consistent with this License. You may distribute source code of Covered Code and the Technology Specifications for Research Use only to (i) Community Members from whom You have first obtained a certification of status in the form set forth in Attachment A-1, and (ii) students from whom You have first obtained an executed acknowledgment in the form set forth in Attachment A-2. You must keep a copy of each such certificate and acknowledgment You obtain and provide a copy to Original Contributor, if requested.\n\nE. Extensions.\n\n1. You may create and add Interfaces but, unless expressly permitted at the Technology Site, You must not incorporate any Reference Code in Your Interfaces. If You choose to disclose or permit disclosure of Your Interfaces to even a single third party for the purposes of enabling such third party to independently develop and distribute (directly or indirectly) technology which invokes such Interfaces, You must then make the Interfaces open by (a) promptly following completion thereof, publishing to the industry, on a non-confidential basis and free of all copyright restrictions, a reasonably detailed, current and accurate specification for the Interfaces, and (b) as soon as reasonably possible, but in no event more than thirty (30) days following publication of Your specification, making available on reasonableterms and without discrimination, a reasonably complete and practicable test suite and methodology adequate to create and test implementations of the Interfaces by a reasonably skilled technologist.\n\n2. You shall not assert any intellectual property rights You may have covering Your Interfaces which would necessarily be infringed by the creation, use or distribution of all reasonable independent implementations of Your specification of such Interfaces by a Community Member or Original Contributor. Nothing herein is intended to prevent You from enforcing any of Your intellectual property rights covering Your specific implementation of Your Interfaces or functionality using such Interfaces other than as specifically set forth in this Section IV.E.2.\n\nV. GOVERNANCE.\n\nA. License Versions.\n\nOnly Original Contributor may promulgate new versions of this License. Once You have accepted Reference Code, Technology Specifications, Contributed Code and/or Contributed Code Specifications under a version of this License, You may continue to use such version of Reference Code, Technology Specifications, Contributed Code and/or Contributed Code Specifications under that version of the License. New code and specifications which You may subsequently choose to accept will be subject to any new License in effect at the time of Your acceptance of such code and specifications.\n\nB. Disclaimer Of Warranties.\n\n1. COVERED CODE, ALL TECHNOLOGY SPECIFICATIONS AND CONTRIBUTED CODE SPECIFICATIONS ARE PROVIDED \"AS IS\", WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT ANY SUCH COVERED CODE, TECHNOLOGY SPECIFICATIONS AND CONTRIBUTED CODE SPECIFICATIONS ARE FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING OF THIRD PARTY RIGHTS. YOU AGREE THAT YOU BEAR THE ENTIRE RISK IN CONNECTION WITH YOUR USE AND CONTRIBUTION OF ANY AND ALL COVERED CODE, TECHNOLOGY SPECIFICATIONS AND CONTRIBUTED CODE SPECIFICATIONS UNDER THIS LICENSE. NO USE OF ANY COVERED CODE, TECHNOLOGY SPECIFICATIONS OR CONTRIBUTED CODE SPECIFICATIONS IS AUTHORIZED EXCEPT SUBJECT TO AND IN CONSIDERATION FOR THIS DISCLAIMER.\n\n2. You understand that, although each Community Member grants the licenses set forth in the License and any supplements hereto, no assurances are provided by any Community Member that Covered Code or any specifications do not infringe the intellectual property rights of any third party.\n\n3. You acknowledge that Reference Code and Technology Specifications are neither designed nor intended for use in the design, construction, operation or maintenance of any nuclear facility.\n\n\nC. Limitation Of Liability.\n\n1. Infringement. Each Community Member disclaims any liability to all other Community Members for claims brought by any third party based on infringement of intellectual property rights. Original Contributor represents that, to its knowledge, it has sufficient copyrights to allow You to use and distribute the Reference Code as herein permitted (including as permitted in any Supplement hereto) and You represent that, to Your knowledge, You have sufficient copyrights to allow each Community Member and Original Contributor to use and distribute Your Shared Modifications and Error Corrections as herein permitted (including as permitted in any supplements to the License). You agree to notify Original Contributor should You become aware of any potential or actual infringement of the Technology or any of Original Contributor's intellectual property rights in the Technology, Reference Code or Technology Specifications.\n\n\n2. Suspension. If any portion of, or functionality implemented by, the Reference Code, Technology or Technology Specifications becomes the subject of a claim or threatened claim of infringement (\"Affected Materials\"), Original Contributor may, in its unrestricted discretion, suspend Your rights to use and distribute the Affected Materials under this License. Such suspension of rights will be effective immediately upon Original Contributor's posting of notice of suspension on the Technology Site. Original Contributor has no obligation to lift the suspension of rights relative to the Affected Materials until a final, non-appealable determination is made by a court or governmental agency of competent jurisdiction that Original Contributor is legally able, without the payment of a fee or royalty, to reinstate Your rights to the Affected Materials to the full extent contemplated hereunder. Upon such determination, Original Contributor will lift the suspension by posting a notice to such effect on the Technology Site. Nothing herein shall be construed to prevent You, at Your option and expense, and subject to applicable law and the restrictions and responsibilities set forth in this License and any Supplements, from replacing Reference Code in Affected Materials with non-infringing code or independently negotiating, without compromising or prejudicing Original Contributor's position, to obtain the rights necessary to use Affected Materials as herein permitted.\n\n3. Disclaimer. ORIGINAL CONTRIBUTOR'S LIABILITY TO YOU FOR ALL CLAIMS RELATING TO THIS LICENSE OR ANY SUPPLEMENT HERETO, WHETHER FOR BREACH OR TORT, IS LIMITED TO THE GREATER OF ONE THOUSAND DOLLARS (US$1000.00) OR THE FULL AMOUNT PAID BY YOU FOR THE MATERIALS GIVING RISE TO THE CLAIM, IF ANY. IN NO EVENT WILL ORIGINAL CONTRIBUTOR BE LIABLE FOR ANY INDIRECT, PUNITIVE, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH OR ARISING OUT OF THIS LICENSE (INCLUDING, WITHOUT LIMITATION, LOSS OF PROFITS, USE, DATA OR ECONOMIC ADVANTAGE OF ANY SORT), HOWEVER IT ARISES AND ON ANY THEORY OF LIABILITY (including negligence), WHETHER OR NOT ORIGINAL CONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE AND NOTWITHSTANDING FAILURE OF THE ESSENTIAL PURPOSE OF ANY REMEDY.\n\nD. Termination.\n\nYou may terminate this License at any time by notifying Original Contributor in writing.\n\nAll Your rights will terminate under this License if You fail to comply with any of the material terms or conditions of this License and do not cure such failure in a reasonable period of time after becoming aware of such noncompliance.\n\nIf You institute patent litigation against a Community Member with respect to a patent applicable to Community Code, then any patent licenses or covenants granted by such Community Member to You under this License shall terminate as of the date such litigation is filed. In addition, if You institute patent litigation against any Community Member or Original Contributor alleging that Reference Code, Technology or Technology Specifications infringe Your patent(s), then the rights granted to You under Section III.A above will terminate.\n\nUpon termination, You must discontinue all uses and distribution of Community Code, except that You may continue to use, reproduce, prepare derivative works of, display and perform Your Modifications, so long as the license grants and covenants of this license are not required to do so, for purposes other than to implement functionality designated in any portion of the Technology Specifications. Properly granted sublicenses to third parties will survive termination. Provisions which, by their nature, should remain in effect following termination survive.\n\nE. Miscellaneous.\n\n1. Trademark. You agree to comply with Original Contributors Trademark & Logo Usage Requirements, as modified from time to time, available at the Technology Site. Except as expressly provided in this License, You are granted no rights in or to any Sun, Jini, Jiro or Java trademarks now or hereafter used or licensed by Original Contributor (the \"Sun Trademarks\"). You agree not to (a) challenge Original Contributor's ownership or use of Sun Trademarks; (b) attempt to register any Sun Trademarks, or any mark or logo substantially similar thereto; or (c) incorporate any Sun Trademarks into Your own trademarks, product names, service marks, company names or domain names.\n\n2. Integration and Assignment. Original Contributor may assign this Research Use License to another by written notification to the other party. This License represents the complete agreement of the parties concerning the subject matter hereof.\n\n3. Severability. If any provision of this License is held unenforceable, such provision shall be reformed to the extent necessary to make it enforceable unless to do so would defeat the intent of the parties, in which case, this License shall terminate.\n\n4. Governing Law. This License is governed by the laws of the United States and the State of California, as applied to contracts entered into and performed in California between California residents. The United Nations Convention on Contracts for the International Sale of Goods shall not apply. Nor shall any law or regulation which provides that a contract be construed against the drafter.\n\n5. Dispute Resolution.\n\na) Any dispute arising out of or relating to this License shall be finally settled by arbitration as set forth in this Section, except that either party may bring an action in a court of competent jurisdiction (which jurisdiction shall be exclusive), relative to any dispute relating to such party's intellectual property rights. Arbitration will be administered (i) by the American Arbitration Association (AAA), (ii) in accordance with the rules of the United Nations Commission on International Trade Law (UNCITRAL) (the \"Rules\") in effect at the time of arbitration, modified as set forth herein, and (iii) by an arbitrator described in Section 5.b who shall apply the governing laws required under Section V.E.4 above. Judgment upon the award rendered by the arbitrator may be entered in any court having jurisdiction to enforce such award. The arbitrator must not award damages in excess of or of a different type than those permitted by this License and any such award is void.\n\nb) All proceedings will be in English and conducted by a single arbitrator selected in accordance with the Rules who is fluent in English, familiar with technology matters pertinent in the dispute and is either a retired judge or practicing attorney having at least ten (10) years litigation experience. Venue for arbitration will be in San Francisco, California, unless the parties agree otherwise. Each party will be required to produce documents relied upon in the arbitration and to respond to no more than twenty-five single question interrogatories. All awards are payable in US dollars and may include for the prevailing party (i) pre-judgment interest, (ii) reasonable attorneys' fees incurred in connection with the arbitration, and (iii) reasonable costs and expenses incurred in enforcing the award.\n\n6. U.S. Government. If this Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), the Government's rights in this Software and accompanying documentation shall be only as set forth in this license, in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DoD acquisitions).\n\n7. International Use.\n\n(a) Covered Code is subject to US export control laws and may be subject to export or import regulations in other countries. Each party shall comply fully with all such laws and regulations and acknowledges its responsibility to obtain such licenses to export, re-export or import as may be required. You must pass through these obligations to all Your licensees.\n\n(b) You must not distribute Reference Code or Technology Specifications into countries other than those listed on the Technology Site by Original Contributor, from time to time.\n\nREAD ALL THE TERMS OF THIS LICENSE CAREFULLY BEFORE ACCEPTING. IF YOU ARE AGREEING TO THIS LICENSE ON BEHALF OF A COMPANY, YOU REPRESENT THAT YOU ARE AUTHORIZED TO BIND THE COMPANY TO THE LICENSE. WHETHER YOU ARE ACTING ON YOUR OWN BEHALF OR THAT OF A COMPANY, YOU MUST BE OF MAJORITY AGE AND OTHERWISE COMPETENT TO ENTER INTO CONTRACTS.", + "json": "scsl-3.0.json", + "yaml": "scsl-3.0.yml", + "html": "scsl-3.0.html", + "license": "scsl-3.0.LICENSE" + }, + { + "license_key": "secret-labs-2011", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-secret-labs-2011", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "By obtaining, using, and/or copying this software and/or its associated documentation, you agree that you have read, understood, and will comply with the following terms and conditions:\n\nPermission to use, copy, modify, and distribute this software and its associated documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies, and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Secret Labs AB or the author not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission.\n\nSECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR 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.", + "json": "secret-labs-2011.json", + "yaml": "secret-labs-2011.yml", + "html": "secret-labs-2011.html", + "license": "secret-labs-2011.LICENSE" + }, + { + "license_key": "see-license", + "category": "Unstated License", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "", + "json": "see-license.json", + "yaml": "see-license.yml", + "html": "see-license.html", + "license": "see-license.LICENSE" + }, + { + "license_key": "selinux-nsa-declaration-1.0", + "category": "Public Domain", + "spdx_license_key": "libselinux-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This library (libselinux) is public domain software, i.e. not copyrighted.\n\nWarranty Exclusion\n------------------\nYou agree that this software is a\nnon-commercially developed program that may contain \"bugs\" (as that\nterm is used in the industry) and that it may not function as intended.\nThe software is licensed \"as is\". NSA makes no, and hereby expressly\ndisclaims all, warranties, express, implied, statutory, or otherwise\nwith respect to the software, including noninfringement and the implied\nwarranties of merchantability and fitness for a particular purpose.\n\nLimitation of Liability\n-----------------------\nIn no event will NSA be liable for any damages, including loss of data,\nlost profits, cost of cover, or other special, incidental,\nconsequential, direct or indirect damages arising from the software or\nthe use thereof, however caused and on any theory of liability. This\nlimitation will apply even if NSA has been advised of the possibility\nof such damage. You acknowledge that this is a reasonable allocation of\nrisk.", + "json": "selinux-nsa-declaration-1.0.json", + "yaml": "selinux-nsa-declaration-1.0.yml", + "html": "selinux-nsa-declaration-1.0.html", + "license": "selinux-nsa-declaration-1.0.LICENSE" + }, + { + "license_key": "sencha-app-floss-exception", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-sencha-app-floss-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Exception for Applications Version 1.04, January 18, 2013\n\nException Intent\n\nWe want people to be able to build Free/Libre and Open Source Software (\"FLOSS\") applications using Sencha SDKs despite the fact that not all FLOSS licenses are compatible with version 3.0 of the GNU General Public License (the \"GPL\").\n\nThis Exception is intended to be used for end-user applications and is not intended to be applied to software development libraries or toolkits, as per section 2(d) below. For development libraries, please refer to the Open Source License Exception for Development.\nTerms and Conditions\nDefinitions\n\n Terms used, but not defined, herein shall have the meaning provided in the GPL.\n \"Library\" means Ext JS, Sencha Touch or Sencha GXT, for which this exception is applicable.\n \"Derivative Work\" means derivative works as defined by US copyright law.\n\nAdditional Grants\n\nAs a special exception to the terms and conditions of version 3.0 of the GPL:\n\nYou are free to distribute a Derivative Work that is formed entirely from the Library and one or more works (each, a \"FLOSS Work\") licensed under one or more of the licenses listed below in section 5, as long as:\n\n You obey the GPL in all respects for the Library and the Derivative Work, except for identifiable sections of the Derivative Work which are not derived from the Library, and which can reasonably be considered independent and separate works in themselves\n All identifiable sections of the Derivative Work which are not derived from the Library, and which can reasonably be considered independent and separate works in themselves, are distributed subject to one of the FLOSS licenses listed below, and\n The object code or executable form of those sections are accompanied by the complete corresponding machine-readable source code for those sections on the same medium and under the same FLOSS license as the corresponding object code or executable forms of those sections, and\n Any works which are aggregated with the Library or with a Derivative Work on a volume of a storage or distribution medium in accordance with the GPL, can reasonably be considered independent and separate works in themselves which are not derivatives of either the Library, a Derivative Work or a FLOSS Work.\n The Derivative Work can reasonably be considered independent and separate work that is intended for use by end-users and not as a library for software development purposes.\n\nApplicability\n\nThis exception applies to Ext JS version 2.2 or later, Sencha Touch 1.0 or later and Sencha GXT version 1.0 or later released under the GPL that contain a conspicuous notice with the Derivative Work and conspicuously posted online near any download location, saying that Derivative Works built using the Library may be distributed under the terms of this Exception and that the included Library is subject to the terms of the GPL v3.\n\nThis Exception can in no way be considered to grant rights to use or distribute the Library under any license other than the GPL v3.\nTermination\n\nIf you fail to comply with any of the terms in this Exception then all rights granted to you herein are void and your rights immediately revert back to those granted in the GPL v3.\nOpen Source License List\nLicense name Version(s)/Copyright Date\nAcademic Free License 2.0\nApache Software License 2.0\nApple Public Source License 2.0\nArtistic license From Perl 5.8.0\nBSD license \"July 22 1999\"\nCommon Development and Distribution License (CDDL) 1.0\nCommon Public License 1.0\nEclipse Public License 1.0\nEducational Community License 2.0\nEuropean Union Public License (EUPL) 1.1\nGNU General Public License (GPL) 2.0\nGNU Library or \"Lesser\" General Public License (LGPL) 3.0\nJabber Open Source License 1.0\nMIT License (As listed in file MIT-License.txt) -\nMozilla Public License (MPL) 1.0/1.1/2.0\nOpen Software License 2.0\nOpenSSL license (with original SSLeay license) \"2003\" (\"1998\")\nPHP License 3.0\nPython license (CNRI Python License) -\nPython Software Foundation License 2.1.1\nSleepycat License \"1999\"\nUniversity of Illinois/NCSA Open Source License -\nW3C License \"2001\"\nX11 License \"2001\"\nZimbra Public License 1.3\nZlib/libpng License -\nZope Public License 2.0", + "json": "sencha-app-floss-exception.json", + "yaml": "sencha-app-floss-exception.yml", + "html": "sencha-app-floss-exception.html", + "license": "sencha-app-floss-exception.LICENSE" + }, + { + "license_key": "sencha-commercial", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-sencha-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sencha Commercial License\nSencha Commercial Software License Agreement: Ext JS, Sencha GXT, and/or Sencha Touch Charts\nVersion 1.11\n\nTHIS DOCUMENT IS A LEGAL AGREEMENT (the \"License Agreement\") BETWEEN SENCHA INC. (\"We,\" \"Us\") AND YOU OR THE ORGANIZATION ON WHOSE BEHALF YOU ARE UNDERTAKING THE LICENSE DESCRIBED BELOW (\"You\") IN RELATION TO SENCHA EXT JS AND/OR SENCHA GXT (THE \"Software\"). BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING THE SOFTWARE, YOU ACCEPT THE FOLLOWING TERMS AND CONDITIONS. IF YOU DO NOT AGREE WITH ANY OF THE TERMS OR CONDITIONS OF THIS LICENSE AGREEMENT, DO NOT PROCEED WITH THE DOWNLOADING, COPYING, INSTALLATION OR ANY OTHER USE OF THE SOFTWARE OR ANY PORTION THEREOF. THE SOFTWARE IS PROTECTED BY UNITED STATES COPYRIGHT LAWS AND INTERNATIONAL COPYRIGHT LAWS, AS WELL AS OTHER INTELLECTUAL PROPERTY LAWS AND TREATIES. THE SOFTWARE IS LICENSED, NOT SOLD.\n\nTHIS LICENSE AGREEMENT DESCRIBES YOUR RIGHTS WITH RESPECT TO THE SOFTWARE AND ITS COMPONENTS.\n\n1. OWNERSHIP, LICENSE GRANT\n\nThis is a license agreement and not an agreement for sale. We reserve ownership of all intellectual property rights inherent in or relating to the Software, which include, but are not limited to, all copyright, patent rights, all rights in relation to registered and unregistered trademarks (including service marks), confidential information (including trade secrets and know-how) and all rights other than those expressly granted by this License Agreement.\n\nSubject to the payment of the fee required and subject to the terms and conditions of this License Agreement, We grant to You a revocable, non- transferable and non-exclusive license (i) for Designated User(s) (as defined below) within Your organization to install and use the Software on any workstations used exclusively by such Designated User(s) and (ii) for You to install and use the Software in connection with unlimited domains and sub-domains on unlimited servers, solely in connection with distribution of the Software in accordance with sections 3 and 4 below. This license is not sublicensable except as explicitly set forth herein. \"Designated User\" shall mean a single distinct employee acting within the scope of their employment with You or Your consultant or contractor acting within the scope of the services they provide for You or on Your behalf for whom You have purchased a license to use the Software.\n\nIn addition to the other terms contained herein, We grant to You a revocable, non- transferable and non-exclusive license to install and use the Software on a single computer (the \"Trial License\") strictly for Your internal evaluation and review purposes and not for production purposes. This Trial License applies only if You have registered with Us for a Trial License of the Software and shall be effective for forty-five (45) consecutive days following the date of registration (\"the Trial Period\"). You may only register for a Trial License once in any eighteen month period. You agree not to use a Trial License for any purpose other than determining whether to purchase a license to the Software. You are explicitly not permitted to distribute the Software to any user outside the Organization on whose behalf you have undertaken this license. Your rights to use the Trial License will immediately terminate upon the earlier of (i) the expiration of the Trial Period, or (ii) such time that You purchase a license to the Software. We reserve the right to terminate Your Trial License at any time in Our absolute and sole discretion.\n\n2. PERMITTED USES, SOURCE CODE, MODIFICATIONS\n\nWe provide You with source code so that You can create Modifications of the original Software, where Modification means: a) any addition to or deletion from the contents of a file included in the original Software or previous Modifications created by You, or b) any new file that contains any part of the original Software or previous Modifications. While You retain all rights to any original work authored by You as part of the Modifications, We continue to own all copyright and other intellectual property rights in the Software.\n\n3. DISTRIBUTION\n\nYou may distribute the Software in any applications, frameworks, or elements (collectively referred to as an \"Application\" or \"Applications\") that you develop using the Software in accordance with this License Agreement, provided that such distribution does not violate the restrictions set forth in Section 4 of this License Agreement. You must not remove, obscure or interfere with any copyright, acknowledgment, attribution, trademark, warning or disclaimer statement affixed to, incorporated in or otherwise applied in connection with the Software.\n\nYou are required to ensure that the Software is not reused by or with any applications other than those with which You distribute it as permitted herein. For example, if You install the Software on a customer\u2019s server, that customer is not permitted to use the Software independently of Your application, and must be informed as such.\n\nYou will not owe Us any royalties for Your distribution of the Software in accordance with this License Agreement.\n\n4. PROHIBITED USES\n\nYou may not, without Our prior written consent, redistribute the Software or Modifications other than by including the Software or a portion thereof within Your own product, which must have substantially different functionality than the Software or Modifications and must not allow any third party to use the Software or Modifications, or any portions thereof, for software development or application development purposes. You are explicitly not allowed to redistribute the Software or Modifications as part of any product that can be described as a development toolkit or library, an application builder, a website builder or any product that is intended for use by software, application, or website developers or designers. You are not allowed to redistribute any part of the Software documentation. You may not change or remove the copyright notice from any of the files included in the Software or Modifications.\n\nUNDER NO CIRCUMSTANCES MAY YOU USE THE SOFTWARE FOR A PRODUCT THAT IS INTENDED FOR SOFTWARE OR APPLICATION DEVELOPMENT PURPOSES.\n\nThe Open Source version of the Software (\"GPL Version\") is licensed under the terms of the GNU General Public License versions 3.0 (\"GPL\") and not under this License Agreement. If You, or another third party, has, at any time, developed all (or any portions of) the Application(s) using the GPL Version, You may not combine such development work with the Software and must license such Application(s) (or any portions derived there from) under the terms of the GNU General Public License version 3, a copy of which is located at http://www.gnu.org/copyleft/gpl.html.\n\n5. TERMINATION\n\nThis License Agreement and Your right to use the Software and Modifications will terminate immediately without notice if You fail to comply with the terms and conditions of this License Agreement. Upon termination, You agree to immediately cease using and destroy the Software or Modifications, including all accompanying documents. The provisions of sections 4, 5, 6, 7, 8, 9, and 11 will survive any termination of this License Agreement.\n\n6. DISCLAIMER OF WARRANTIES\n\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, WE AND OUR SUPPLIERS DISCLAIM ALL WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND TITLE AND NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE. WE DO NOT GUARANTEE THAT THE OPERATION OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, AND YOU ACKNOWLEDGE THAT IT IS NOT TECHNICALLY PRACTICABLE FOR US TO DO SO.\n\n7. LIMITATION OF LIABILITIES\n\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL WE OR OUR SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION OR ANY OTHER PECUNIARY LAW) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ANY CASE, OUR ENTIRE LIABILITY UNDER ANY PROVISION OF THIS LICENSE AGREEMENT SHALL BE LIMITED TO THE AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE.\n\n8. VERIFICATION\n\nWe or a certified auditor acting on Our behalf, may, upon its reasonable request and at its expense, audit You with respect to the use of the Software. Such audit may be conducted by mail, electronic means or through an in-person visit to Your place of business. Any such in-person audit shall be conducted during regular business hours at Your facilities and shall not unreasonably interfere with Your business activities. We shall not remove, copy, or redistribute any electronic material during the course of an audit. If an audit reveals that You are using the Software in a way that is in material violation of the terms of the License Agreement, then You shall pay Our reasonable costs of conducting the audit. In the case of a material violation, You agree to pay Us any amounts owing that are attributable to the unauthorized use. In the alternative, We reserve the right, at Our sole option, to terminate the licenses for the Software.\n\n9. PAYMENT AND TAXES\n\nIf credit has been extended to You by Us, all payments under this License Agreement are due within thirty (30) days of the date We mail an invoice to You. If We have not extended credit to You, You shall be required to make payment concurrent with the delivery of the Software by Us. All amounts payable are gross amounts but exclusive of any value added tax, use tax, sales tax or similar tax. You shall be entitled to withhold from payments any applicable withholding taxes and comply with all applicable tax and employment legislation. Each party shall pay all taxes (including, but not limited to, taxes based upon its income) or levies imposed on it under applicable laws, regulations and tax treaties as a result of this License Agreement and any payments made hereunder (including those required to be withheld or deducted from payments). Each party shall furnish evidence of such paid taxes as is sufficient to enable the other party to obtain any credits available to it, including original withholding tax certificates.\n\n10. SUPPORT AND UPDATES\n\nYou are not entitled to any support for the Software under this License Agreement. All support must be purchased separately and will be subject to the terms and conditions contained in the Sencha support agreement. You are entitled to receive minor version updates to the Software (i.e. versions identified as follows (X.Y, X.Y+1). You are not entitled to receive major version updates (i.e. X.Y, X+1.Y) or bug fix updates to the Software (X.Y.Z, X.Y.Z+1), unless purchased independently of this license.\n\n11 MISCELLANEOUS\n\nThe license granted herein applies only to the version of the Software available when purchased in connection with the terms of this License Agreement. Any previous or subsequent license granted to You for use of the Software shall be governed by the terms and conditions of the agreement entered in connection with purchase of that version of the Software. You agree that you will comply with all applicable laws and regulations with respect to the Software, including without limitation all export and re-export control laws and regulations.\n\nWhile redistributing the Software or Modifications thereof, You may choose to offer acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License Agreement. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on our behalf. You agree to indemnify, defend, and hold Us harmless from and against any liability incurred by, or claims asserted against, Us (i) by reason of Your accepting any such support, warranty, indemnity or additional liability; or (ii) arising out of the use, reproduction or distribution of Your Application, except to the extent such claim is solely based on the inclusion of the Software therein.\n\nYou agree to be identified as a customer of ours and You agree that We may refer to You by name, trade name and trademark, if applicable, and may briefly describe Your business in our marketing materials and web site.\n\nYou may not assign or transfer this License Agreement without Our prior written consent, which will not be unreasonably withheld. This License Agreement will inure to the benefit of Our successors and assigns.\n\nYou acknowledge that this License Agreement is complete and is the exclusive representation of our agreement. No oral or written information given by Us or on our behalf shall create a warranty or collateral contract, or in any way increase the scope of this License Agreement in any way, and You may not rely on any such oral or written information. No term or condition contained in any purchase order shall apply unless expressly such term or condition is accepted by Us in writing,\n\nThere are no implied licenses or other implied rights granted under this License Agreement, and all rights, save for those expressly granted hereunder, shall remain with Us and our licensors. In addition, no licenses or immunities are granted to the combination of the Software and/or Modifications, as applicable, with any other software or hardware not delivered by Us to You under this License Agreement.\n\nIf any provision in this License Agreement shall be determined to be invalid, such provision shall be deemed omitted; the remainder of this License Agreement shall continue in full force and effect. If any remedy provided is determined to have failed for its essential purpose, all limitations of liability and exclusions of damages set forth in this License Agreement shall remain in effect.\n\nThis License Agreement may be modified only by a written instrument signed by an authorized representative of each party.\n\nThis License Agreement is governed by the law of the State of California, United States (notwithstanding conflicts of laws provisions), and all parties irrevocably submit to the jurisdiction of the courts of the State of California and further agree to commence any litigation which may arise hereunder in the state or federal courts located in the judicial district of Santa Clara County, California, US.\n\nIf the Software or any related documentation is licensed to the U.S. government or any agency thereof, it will be deemed to be \"commercial computer software\" or \"commercial computer software documentation,\" pursuant to DFAR Section 227.7202 and FAR Section 12.212. Any use of the Software or related documentation by the U.S. government will be governed solely by the terms of this License Agreement.", + "json": "sencha-commercial.json", + "yaml": "sencha-commercial.yml", + "html": "sencha-commercial.html", + "license": "sencha-commercial.LICENSE" + }, + { + "license_key": "sencha-commercial-3.17", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-sencha-commercial-3.17", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sencha Software License Agreement\nVersion 3.17\n\nTHIS DOCUMENT IS A LEGAL AGREEMENT (the \u201cAgreement\u201d) BETWEEN SENCHA INC. (\u201cWe,\u201d \u201cUs\u201d) AND YOU OR THE ORGANIZATION ON WHOSE BEHALF YOU ARE ENTERING INTO THIS AGREEMENT (\u201cYou\u201d) IN RELATION TO SENCHA SOFTWARE GENERALLY MADE AVAILABLE IN SOURCE CODE FORMAT (\u201cSencha SDKs\u201d) AND/OR SENCHA SOFTWARE GENERALLY MADE AVAILABLE IN OBJECT CODE FORMAT (\u201cSencha Tools\u201d). (The Sencha SDKs and the Sencha Tools are sometimes hereinafter collectively referred to as the \u201cSoftware\u201d.)\n\nRIGHTS GRANTED HEREIN APPLY ONLY TO SOFTWARE FOR WHICH YOU\u2019VE PAID THE APPLICABLE FEE, WHICH MAY INCLUDE THE FOLLOWING SENCHA SDKs: SENCHA EXT JS, SENCHA GXT, SENCHA EXTREACT, SENCHA EXTANGULAR, SENCHA TREE GRID, SENCHA PIVOT GRID, SENCHA CHARTS, SENCHA CALENDAR COMPONENT, AND/OR SENCHA D3 ADAPTER; AND/OR THE FOLLOWING SENCHA TOOLS: SENCHA ARCHITECT, SENCHA JETBRAINS PLUG-IN, SENCHA ECLIPSE PLUG-IN, SENCHA VISUAL STUDIO PLUG-IN, SENCHA VISUAL STUDIO CODE PLUG-IN, SENCHA INSPECTOR, SENCHA THEMER, SENCHA STENCILS, SENCHA EXTGEN, SENCHA EXTBUILD, SENCHA CMD AND/OR SENCHA TEST.\n\nBY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING THE SOFTWARE, YOU ACCEPT THE FOLLOWING TERMS AND CONDITIONS. IF YOU DO NOT AGREE WITH ANY OF THE TERMS OR CONDITIONS OF THIS LICENSE AGREEMENT, DO NOT PROCEED WITH THE DOWNLOADING, COPYING, INSTALLATION OR ANY OTHER USE OF THE SOFTWARE OR ANY PORTION THEREOF AS YOU HAVE NO RIGHTS TO DO SO. THE SOFTWARE IS PROTECTED BY UNITED STATES COPYRIGHT LAWS AND INTERNATIONAL COPYRIGHT LAWS, AS WELL AS OTHER INTELLECTUAL PROPERTY LAWS AND TREATIES. THE SOFTWARE IS LICENSED, NOT SOLD.\n\nTHIS LICENSE AGREEMENT DESCRIBES YOUR RIGHTS AND RESTRICTIONS WITH RESPECT TO THE SOFTWARE AND ITS COMPONENTS.\n\n1. DEFINITIONS\n\n\u201cApplication\u201d means any software, application, or elements that Your Designated Users develop using the Software or Modifications in accordance with this Agreement; provided that any such Application (i) must have substantially different functionality than the Software, and (ii) must not allow any third party to use the Sencha SDKs or Modifications, or any portion thereof, for software development or application development purposes.\n\n\u201cDesignated User\u201d shall mean a single distinct person for whom You have purchased a license to use the Software, whether such person is an employee acting within the scope of their employment with You or Your consultant or contractor acting within the scope of the services they provide for You. A Designated User can be replaced with a new Designated User only after being a Designated User for a minimum of six (6) months.\n\n\u201cEnd User\u201d means an end user of Your Application who acquires a license to such solely for their own internal use and not for distribution, resale, user interface design, or software development purposes.\n\n\u201cModification\u201d means: a) any addition to or deletion from the contents of a file included in the original Sencha SDKs or previous Modifications created by You, and/or b) any new file that leverages any part of the original Sencha SDKs or previous Modifications.\n\n\u201cSample Code\u201d means sample source code included with the Software and designated as \u201csample code,\u201d \u201csamples,\u201d \u201csample application code,\u201d \u201cstencils,\u201d \u201capp templates,\u201d and/or \u201csnippets,\u201d and/or found in directories labeled \u201csamples\u201d or \u201cexamples\u201d.\n\n2. LICENSE GRANTS\n\n2.1 Use Grant. Subject to the payment of the fee required, and subject to Your compliance with all of the terms and conditions of this Agreement, except to the extent You has purchased a Subscription License (as defined in Section 7), We grant to You a revocable, non-exclusive, non-transferable, non-sublicensable, perpetual right and license (i) for Designated User(s) to use the Software to create Modifications and Applications; (ii) for You to distribute the Sencha SDKs and/or Modifications to End Users solely as integrated into the Applications; and (iii) for End Users to use the Sencha SDKs as integrated into Your Applications.\n\n2.2 Trial License. In addition to the other terms contained herein, and subject to Your compliance with all of the terms and conditions of this Agreement, We grant to You a revocable, non-exclusive, non-transferable and non-sublicensable license to install and use the Software (the \u201cTrial License\u201d) strictly for Your internal evaluation and review purposes and not for production purposes. This Trial License applies only if You have registered with Us for a Trial License of the Software and shall be effective for thirty (30) consecutive days following the date of registration (\u201cthe Trial Period\u201d). You may only register for a Trial License once in any eighteen month period. You agree not to use a Trial License for any purpose other than determining whether to purchase a license to the Software. You are explicitly not permitted to distribute the Software to any user outside the Organization on whose behalf You have undertaken this license. Your rights to use the Trial License will immediately terminate upon the earlier of (i) the expiration of the Trial Period, or (ii) such time that You purchase a license to the Software. We reserve the right to terminate Your Trial License at any time in Our absolute and sole discretion.\n\n2.3 Beta License. In addition to the other terms contained herein, in the event You have downloaded or received beta or pre-release versions of the Software (the \u201cBeta Software\u201d) from Us, subject to Your compliance with all of the terms and conditions of this Agreement, We grant to You a revocable, non-exclusive, non-transferable and non-sublicensable license to install and use the Beta Software strictly for Your internal evaluation and review purposes and not for production purposes (the \u201cBeta License\u201d). You are explicitly not permitted to distribute the Software to any user outside the Organization on whose behalf You have undertaken this license. Your rights to use the Beta Software will immediately terminate upon the earlier of (i) the expiration of the evaluation period established by Us, or (ii) such time that You purchase a license to a non-evaluation version of the Software. We reserve the right to terminate Your Beta License at any time in Our absolute and sole discretion.\n\n2.4 Reservation. YOU ACKNOWLEDGE THAT TRIAL AND/OR BETA SOFTWARE MIGHT PLACE WATERMARKS ON OUTPUT, CONTAIN LIMITED FUNCTIONALITY, FUNCTION FOR A LIMITED PERIOD OF TIME, OR LIMIT THE FUNCTIONALITY OR TIME OF FUNCTIONING OF ANY OUTPUT. ACCESS TO AND/OR USE OF ANY FILES OR OUTPUT CREATED WITH SUCH SOFTWARE IS ENTIRELY AT YOUR OWN RISK. WE ARE LICENSING THE SOFTWARE ON AN \u201cAS IS\u201d BASIS AT YOUR OWN RISK AND WE DISCLAIM ANY WARRANTY OR LIABILITY TO YOU OF ANY KIND.\n\n2.5 Sample Code. You may modify the Sample Code solely for the purposes of designing, developing and testing Applications. You are permitted to use, copy and redistribute Your modified Sample Code only if all of the following conditions are met: (a) You include Our copyright notice (if any) with Your Application, including every location in which any other copyright notice appears in such Application; (b) You do not otherwise use Our name, logos or other of Our trademarks to market Your Application, unless otherwise agreed by Us in writing; and (c) each Designated User is duly licensed to use and distribute any of Our products that may be included in an application using and/or generated by the Software.\n\n3. OWNERSHIP\n\nThis is a license agreement and not an agreement for sale. We reserve ownership of all intellectual property rights inherent in or relating to the Software, which include, but are not limited to, all copyright, patent rights, all rights in relation to registered and unregistered trademarks (including service marks), confidential information (including trade secrets and know-how) and all rights other than those expressly granted by this Agreement.\n\nWe provide You with source code to the Sencha SDKs so that You can create Modifications and Applications. While You retain all rights to any original work authored by You as part of the Modifications, We continue to own all copyright and other intellectual property rights in the Sencha SDKs.\n\nYou must not remove, obscure or interfere with any copyright, acknowledgment, attribution, trademark, warning or disclaimer statement affixed to, incorporated in or otherwise applied in connection with the Software.\n\n4. PROHIBITED USES OF SENCHA SDKs\n\nYou may not redistribute the Sencha SDKs or Modifications other than by including the Sencha SDKs or a portion thereof within Your Application. You may not redistribute the Sencha SDKs or Modifications as part of any Application of which all or any part can be described as a development toolkit or library, an application builder, a website builder, an user interface designer, or is intended for use by software, application, or website developers or designers. You may not redistribute any part of the Sencha SDKs documentation. You may not change or remove the copyright notice from any of the files included in the Sencha SDKs or Modifications.\n\nUNDER NO CIRCUMSTANCES MAY YOU USE THE SENCHA SDKS FOR AN APPLICATION THAT IS INTENDED FOR SOFTWARE OR APPLICATION DEVELOPMENT PURPOSES.\n\nYou are required to ensure that the Sencha SDKs is not reused by or with any applications other than those with which You distribute it as permitted herein. For example, if You install the Sencha SDKs on a customer\u2019s server, that customer is not permitted to use the Sencha SDKs independently of Your Application, and must be informed as such.\n\nAlternate versions of the Sencha SDKs (\u201cGPL Version\u201d) may be licensed under the terms of the GNU General Public License versions 3.0 (\u201cGPL\u201d). If You, or another third party, has, at any time, developed all or any portion of the Application(s) using a GPL Version, You may not combine such work with the Sencha SDKs licensed hereunder, and You must license such application(s) under the terms of the GNU General Public License version 3.\n\n5. PROHIBITED USES OF SENCHA TOOLS\n\nYou agree not to sublicense, assign or transfer the Sencha Tools or Your rights in the Sencha Tools, or authorize any portion of the Sencha Tools to be copied onto or accessed from another individual\u2019s or entity\u2019s computer except as may be explicitly provided in this Agreement. Notwithstanding anything to the contrary in this section, You may transfer copies of the Sencha Tools installed on one of Your computers to another one of Your computers provided that the resulting installation and use of the Sencha Tools is in accordance with the terms of this Agreement and does not cause You to exceed Your right to use the Sencha Tools under this Agreement. Except as expressly authorized under this Agreement, You are prohibited from: (a) renting, leasing, lending or granting other rights in the Sencha Tools including rights on a membership or subscription basis; and (b) providing use of the Sencha Tools in a computer service business, third party outsourcing facility or service, service bureau arrangement, network, or time sharing basis.\n\nYou agree not to modify, port, adapt or translate the Sencha Tools. You agree not to reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of the Sencha Tools. You agree not to use any part of the Sencha Tools or Your knowledge of the Sencha Tools (or any information that You learn as a result of Your use of the Sencha Tools) to create a product with the same or substantially the same functionality as the Sencha Tools. The Sencha Tools may include various applications, utilities and components, may support multiple platforms and languages or may be provided to You on multiple media or in multiple copies. Nonetheless, the Sencha Tools is designed and provided to You as a single product to be used as a single product on computers and platforms as permitted herein. You are not required to use all component parts of the Sencha Tools, but You shall not unbundle any component parts of the Sencha Tools for use on different computers. You shall not unbundle or repackage the Sencha Tools for distribution, transfer or resale.\n\nYou agree to use the Software pursuant to the terms and conditions of this Agreement, and not any other terms or conditions unless provided in writing signed by the parties hereto.\n\n6. TERMINATION\n\nThis Agreement and Your right to use the Software and Modifications will terminate immediately if You fail to comply with any of the terms and conditions of this Agreement. Upon termination, You agree to immediately cease using and destroy the Software or Modifications, including all accompanying documents. The provisions of sections 3, 4, 5, 6, 7, 8, 10, and 11 will survive any termination of this Agreement.\n\nA license to Sencha Test (unless bundled as part of Sencha Ext JS Enterprise) as provided under Section 2 of this Agreement (a \u201cTerm License\u201d) commences on the date of purchase and continues for an initial term of one (1) year or more, depending on the fee paid (the \u201cInitial Term\u201d). A Term License will automatically terminate at the end of the Initial Term, unless You choose to extend the Term License, subject to Our agreement based on payment of the applicable fees (each such extension is referred to as an \u201cExtension\u201d). The \u201cTerm\u201d shall mean the Initial Term as extended by each Extension. Upon the expiration of the Term, the applicable Term Licenses shall terminate automatically, and You shall immediately cease use of Sencha Test, provided, however, that any licenses for use of Sencha Test scripts granted to You in accordance with the terms and conditions hereof shall survive such termination.\n\n7. ADDITIONAL LICENSE TERMS APPLICABLE TO THE SUBSCRIPTION LICENSE\n\nIn the event You has purchased a license to Sencha Ext JS, Sencha GXT, ExtReact and/or Sencha ExtAngular (each a \u201cSubscription Software\u201d) under the Single Developer Subscription License program the following terms apply \u2013 the terms contained in this Section do not apply to perpetual, Trial licenses or Beta licenses. Subject to the payment of the fee required, and subject to the terms and conditions of this Agreement, You are granted a limited, revocable, non-exclusive, non-transferable, non-sublicensable right and license (i) for Designated User(s) to use the Subscription Software to create Modifications and Applications; (ii) for You to distribute the Subscription Software and/or Modifications to End Users solely as integrated into the Applications; and (iii) for End Users to use the Subscription Software as integrated into Your Applications (the \u201cSubscription License\u201d). The term of the Subscription License commences on the date of purchase and will continue for an initial term of one (1) year (the \u201cInitial Subscription Term\u201d). Upon expiration of each Initial Subscription Term, if You elected a subscription plan with auto-renewals, the Subscription Term will automatically renew for successive one (1) year terms (each a \u201cSubscription Renewal\u201d and together with the Initial Subscription Term, the \u201cSubscription Term\u201d) at the then current fee unless either party gives written notice of its intent not to renew at least thirty (30) days prior to the end of the current Subscription Term. If You elected a subscription plan without auto-renewals, the Subscription License will automatically terminate at the end of the Initial Subscription Term. Upon the expiration or termination of the Subscription Term, the Subscription License shall terminate automatically, and You shall immediately cease Your use of the applicable Subscription Software. However, You can continue distributing and allowing End User use of the Modification and Application developed using the Subscription Software during the Subscription Term, in accordance with the terms and conditions of this Agreement.\n\n8. ADDITIONAL LICENSE TERMS APPLICABLE TO THE COMMUNITY EDITION\n\nIn the event You have obtained a Sencha Ext JS Standard Community Edition license (the \u201cCommunity Edition\u201d), the following terms apply in addition to the General Terms described in Section 2 above. Please note that the Community Edition does not include all the software packages that Sencha Ext JS includes, and in particular does not include Ext JS Classic, Ext JS Charts, and many Ext JS fonts and themes. Please see Our website for a complete description of what is included in the Community Edition. We reserve the right to update or change the software included in the Community Edition at our discretion, and any such change shall take effect with respect to Your Community Edition after the expiration of Your Community Edition Term (as defined below). The Community Edition may or may not contain the most recent versions of the included software. Note that Sencha GXT is not offered and may not be licensed as a Community Edition.\n\nThe Community Edition license applies solely if Your cumulative annual revenue (of the for-profit organization, the government entity or the individual developer) or any donations (of the non-profit organization) does not exceed USD $10,000.00 (or the equivalent in other currencies) (the \u201cThreshold\u201d). If You are an individual developer, the revenue of all contract work performed by You in one calendar year may not exceed the Threshold (whether or not the Community Edition is used for all projects). For example, a developer who receives payment of more than $10,000.00 for a single project (or more than $10,000.00 for multiple projects) even if such engagements do not anticipate the use of the Community Edition, is not allowed to use the Community Edition. In addition, a developer building solely an app store application would not be allowed to use the Community Edition once the app store revenue reaches a revenue of $10,000.00 or more in a year. If You are a company that has a cumulative annual revenue which exceeds the Threshold, then You are not allowed to use the Community Edition, regardless of whether the Community Edition is used solely to write applications for the business\u2019 internal use or is seen by third parties outside the company or has a direct revenue associated with it. If You do not qualify to use the Community Edition or otherwise satisfy the additional terms and restrictions applicable to the Community Edition described in this Section, You may not download or use the Community Edition and any such use is unauthorized, constitutes a violation of this Agreement and may constitute a misappropriation of Our intellectual property rights.\n\nYou may use a Community Edition license to create Modifications and Applications (i) for which You do not charge directly or indirectly a fee or receive other consideration including but not limited to a license fee, a service fee, a development fee, a consulting fee, a subscription fee, a support fee, a hosting fee, or receive an income, or the like (\u201cLicense Fees\u201d) or (ii) to the extent You charge a License Fees, Your cumulative annual revenue shall not exceed USD $10,000.00 (or the equivalent in other currencies). In the event You elect to license the Community Edition (for profit or non-profit) then the total number of the Community Edition licenses deployed may not exceed five (5) Designated Users.\n\nThe term of the Community Edition license is for one year from acceptance of your registration of the Community Edition (the \u201cCommunity Edition Term\u201d) and will automatically expire upon the end of the Community Edition Term \u2013 the Community Edition license will not auto-renew. To the extent You want to continue using the Community Edition after the expiration or termination of Your Community Edition Term, You must register and be accepted for another Community Edition Term and agree with the terms and conditions of the Agreement in force at that time. Upon expiration or termination of the Community Edition Term, You shall immediately cease Your use of the Community Edition and cease any further development of the Modifications and Applications. However, You can continue distributing the Modifications and Applications that you developed with the Community Edition during the Community Edition Term, in accordance with the terms and conditions of this Agreement.. All restrictions and conditions relating to the Community Edition license shall survive the termination or expiration of Your Community Edition Term. The Community Edition license granted under this Section will automatically terminate upon Your breach of the terms specified herein. The support described in this Agreement does not apply to the Community Edition.\n\nWe will collect information about Your use of the Community Edition for auditing purposes and to improve Our products and services. For more information about Our collection, use and disclosure of personal data, please review Our Privacy Policy at sencha.com/privacy.\n\n9. DISCLAIMER OF WARRANTIES\n\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, WE AND OUR RESELLERS DISCLAIM ALL WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE. WE DO NOT GUARANTEE THAT THE OPERATION OF THE SOFTWARE OR THE CODE IT PRODUCES WILL BE UNINTERRUPTED OR ERROR-FREE, AND YOU ACKNOWLEDGE THAT IT IS NOT TECHNICALLY PRACTICABLE FOR US TO DO SO.\n\n10. LIMITATION OF LIABILITIES\n\nIN NO EVENT WILL WE, OUR SUBSIDIARIES, OUR AFFILIATES, OR OUR LICENSORS BE LIABLE TO YOU, WHETHER IN CONTRACT, BY REASON OF NEGLIGENCE OR OTHERWISE, FOR PUNITIVE, CONSEQUENTIAL, EXEMPLARY, INCIDENTAL, OR INDIRECT DAMAGES OR COSTS (INCLUDING LEGAL FEES AND EXPENSES) OR LOSS OF GOODWILL OR PROFIT IN CONNECTION WITH THE SUPPLY, USE OR PERFORMANCE OF OR INABILITY TO USE THE SOFTWARE, OR NON-PERFORMANCE OF ANY OBLIGATIONS PROVIDED HEREUNDER, OR IN CONNECTION WITH ANY CLAIM ARISING FROM THIS AGREEMENT, EVEN IF WE, OUR SUBSIDIARIES, OUR AFFILIATES, OR OUR LICENSORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR COSTS YOU AGREE THAT OUR ENTIRE LIABILITY HEREUNDER FOR DAMAGES SHALL NOT EXCEED THE LESSER OF (I) THE AGGREGATE AMOUNTS PAID OR PAYABLE BY YOU WITHIN THE SIX MONTH PERIOD IMMEDIATELY PRECEEDING THE DATE THE LIABILITY THAT GAVE RISE TO DAMAGES WAS INCURRED; AND (II) FIVE HUNDRED DOLLARS ($500).\n\n11. VERIFICATION\n\nWe or a certified auditor acting on Our behalf, may, upon Our reasonable request and at Our expense, audit You with respect to the use of the Software. Such audit may be conducted by mail, electronic means or through an in-person visit to Your place of business. Any such in-person audit shall be conducted during regular business hours at Your facilities and shall not unreasonably interfere with Your business activities. We shall not remove, copy, or redistribute any electronic material during the course of an audit. If an audit reveals that You are using the Software in a way that is in material violation of the terms of this Agreement, then You shall pay Our reasonable costs of conducting the audit. In the case of a material violation, You agree to pay Us any amounts owing that are attributable to the unauthorized use. In the alternative, We reserve the right, at Our discretion, to terminate the licenses for the Software, in addition to any other remedies available under law. This Section shall survive expiration or termination of this Agreement for a period of two (2) years.\n\nWe will collect information about Your use of the Software for auditing purposes and to improve Our products and services. For more information about Our collection, use and disclosure of personal data, please review Our Privacy Policy at sencha.com/privacy.\n\n12. PAYMENT AND TAXES\n\nIf credit has been extended to You by Us, all payments under this Agreement are due within thirty (30) days of the date We mail an invoice to You. If We have not extended credit to You, You shall be required to make payment concurrent with the delivery of the Software by Us. Any value added tax, use tax, sales tax or similar tax (\u201cTransaction Taxes\u201d) shall be Your sole responsibility. Each party shall pay all taxes (including, but not limited to, taxes based upon its income) or levies imposed on it under applicable laws, regulations and tax treaties as a result of this Agreement and any payments made hereunder (including those required to be withheld or deducted from payments); provided that You shall be responsible for all Transactions Taxes and shall pay or reimburse Us for the same upon invoice. Each party shall furnish evidence of such paid taxes as is sufficient to enable the other party to obtain any credits available to it, including original withholding tax certificates. Notwithstanding the foregoing, Software ordered through Our resellers is subject to the fees and payment terms set forth on the applicable reseller invoice.\n\n13. MISCELLANEOUS\n\n13.1 Limitations. The license granted herein applies only to the version of the Software available when purchased in connection with the terms of this Agreement, and to any updates and/or upgrades to which You may be entitled. Any previous or subsequent license granted to You for use of the Software shall be governed by the terms and conditions of the agreement entered in connection with purchase or download of that version of the Software. Support and maintenance, including rights to updates and upgrades, are provided pursuant to the terms of the Sencha Support and Maintenance Agreement. You agree that You will comply with all applicable laws and regulations with respect to the Software, including without limitation all export and re-export control laws and regulations.\n\n13.2 Support Services. While redistributing the Sencha SDKs or Modifications thereof as part of Your Application, You may choose to offer acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this Agreement. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on our behalf. You shall indemnify Us and our resellers, or at Our option, defend Us and our resellers against any claim, suit or proceeding brought against Us or our resellers (i) arising by reason of Your accepting any such support, warranty, indemnity or additional liability; or (ii) arising out of the use, reproduction or distribution of Your Application, except to the extent such claim is solely based on the inclusion of the Sencha SDKs therein. Further, You agree only to distribute the Sencha SDKs pursuant to an enforceable written agreement for Our benefit that includes all the limitations and restrictions of this Agreement and is as protective of Us and Sencha SDKs as is this Agreement. For clarity, for Sencha SDKs for which You have paid a fee, You must purchase Designated User licenses for each contractor or consultant who uses the Sencha SDKs to create an Application on Your behalf (including system integrators), whether or not such contractor or consultant has its own license to the Sencha SDKs.\n\n13.3 Consent. You agree to be identified as a customer of Ours and You agree that We may refer to You by name, trade name and trademark, if applicable, and may briefly describe Your business in our marketing materials and web site.\n\n13.4 Assignment. You may not assign or transfer this Agreement without Our prior written consent. Any attempted assignment or delegation in violation of this Section shall be null and void. This Agreement may be assigned by Us in whole or part and will inure to the benefit of Our successors and assigns. Notwithstanding the foregoing, in any instance in which You transfer ownership of an Application on a work for hire basis, You may assign licenses for the total Designated Users that have used the Software to develop said Application under this Agreement to another party (Assignee) provided (i) You provide written notice to Us prior to the effective date of such assignment; and (ii) the transfer is in quantities We generally make available to Our customers (minimum 5 Designated Users); and (iii) there is a written agreement, wherein the Assignee accepts the terms of this Agreement. Upon any such transfer, the Assignee may appoint new Designated Users. For license(s) purchased under our Independent Consultant Program: (i) you represent and warrant that the information you provided to us is true and correct in all material regards, and (ii) notwithstanding any provision herein to the contrary, you may assign any such license(s) to the entity you designated to us as the Client, provided that assignee accepts the terms of this Agreement in connection with the Assignment. On any such assignment, the assignee may change the Designated User.\n\n13.5 Entire Agreement. This Agreement is the complete and exclusive statement of the mutual understanding of the parties and supersedes and cancels all previous written and oral agreements and communications relating to the subject matter of this Agreement. No oral or written information given by Us, Our resellers, or otherwise on Our behalf shall create a warranty or collateral contract, or in any way increase the scope of this Agreement in any way, and You may not rely on any such oral or written information. Any waivers or amendments shall be effective only if made in writing. Further, any different or additional terms of any related purchase order, confirmation, or similar form shall have no force or effect. The license granted herein is conditioned upon the acceptance of the terms and conditions hereof to the exclusion of all other terms, and no other or additional terms shall apply, unless so provided in writing signed by the parties hereto. You expressly agree by Your use of the Software that no such other, different or additional terms or conditions shall apply, notwithstanding any statements to the contrary included in any purchase order, confirmation, or similar form, and regardless of whether we accept payments referenced therein which shall not constitute acceptance of additional terms and conditions.\n\n13.6 No Implied License. There are no implied licenses or other implied rights granted under this Agreement, and all rights, save for those expressly granted hereunder, shall remain with Us and our licensors. In addition, no licenses or immunities are granted to the combination of the Software and/or Modifications, as applicable, with any other software or hardware not delivered by Us or Our resellers to You under this Agreement. Your rights under this Agreement apply only to Software, Modifications, and/or Applications for which all Designated Users are duly licensed hereunder.\n\n13.7 Legal Effect. If any provision in this Agreement shall be determined to be invalid, such provision shall be deemed omitted; the remainder of this Agreement shall continue in full force and effect. If any remedy provided is determined to have failed for its essential purpose, all limitations of liability and exclusions of damages set forth in this Agreement shall remain in effect. The failure of either party to enforce any provision of this Agreement may not be deemed a waiver of that or any other provision of this Agreement.\n\n13.8 Applicable Law. This Agreement, and all claims or causes of action that may be based upon, arise out of, or relate to this Agreement and/or the Software shall be governed by the law of the State of Texas, United States (notwithstanding conflicts of laws provisions), and all parties irrevocably submit to the jurisdiction of the state or federal courts of the State of Texas and further agree to commence any litigation which may arise hereunder or related hereto and/or to the Software in the state or federal courts located in the judicial district of Travis County, Texas, US.\n\n13.9 Commercial Computer Software. If the Software or any related documentation is licensed to the U.S. Government or any agency thereof, it will be considered to be \u201ccommercial computer software\u201d or \u201ccommercial computer software documentation,\u201d as those terms are used in 48 CFR \u00a7 12.212 or 48 CFR \u00a7 227.7202, and is being licensed with only those rights as are granted to all other licensees as set forth in this Agreement.\n\n13.10 Definition of Sencha Bundles Packages.\n\n(i) Sencha Ext JS Bundles:\n\nSencha Ext JS Pro includes Sencha Ext JS (which includes Sencha Tree Grid and Sencha Charts), Sencha Stencils, Sencha Visual Studio Code Plugin, Sencha ExtGen, Sencha ExtBuild, Sencha Cmd, Sencha Architect, Sencha JetBrains Plugin, Sencha Eclipse Plugin, Sencha Visual Studio Plugin, and Sencha Themer.\nSencha Ext JS Enterprise includes all the Sencha Ext JS Pro Software and Sencha Pivot Grid, Sencha Inspector, Sencha Calendar Component, Sencha Exporter, Sencha D3 Adapter, ExtAngular Premium, ExtReact ProPremium and Sencha Test.\n(ii) Sencha GXT Bundles:\n\nSencha GXT Premium includes Sencha GXT (which includes GXT Charts and GXT Theme Builder), Sencha Ext JS (which includes Sencha Tree Grid and Sencha Charts), Sencha Stencils, Sencha Visual Studio Code Plugin, Sencha ExtGen, Sencha ExtBuild, Sencha Cmd, and Sencha Themer.\n(iii) Sencha ExtReact Bundles:\n\nSencha ExtReact Pro includes Sencha ExtReact, Sencha Cmd, Sencha Themer, Sencha Tree Grid, Sencha Pivot Grid, Sencha Calendar Component, Sencha Exporter, and Sencha D3 Adapter.\n(iv) Sencha ExtAngular Bundles:\n\nSencha ExtAngular Standard includes Sencha ExtAngular, and Sencha Cmd.\nSencha ExtAngular Premium includes all the Sencha ExtAngular Standard Software and Sencha Themer, Sencha Tree Grid, Sencha Pivot Grid, Sencha Calendar Component, Sencha Exporter, and Sencha D3 Adapter.", + "json": "sencha-commercial-3.17.json", + "yaml": "sencha-commercial-3.17.yml", + "html": "sencha-commercial-3.17.html", + "license": "sencha-commercial-3.17.LICENSE" + }, + { + "license_key": "sencha-commercial-3.9", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-sencha-commercial-3.9", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sencha Software License Agreement\nSummary of Important Use Restrictions\n\nPlease read the entire agreement and definitions below.\nCommercial vs. Open Source License\n\nSource Software may be made available under this Commercial License and under the GNU General Public License version 3 (GPLv3). This Commercial License requires the payment of a fee for each Designated User (i.e. developer). If you choose not to pay a fee and use the GPLv3 license, you are required to release the source code of any program that you distribute with the Software. If you choose to pay for a Commercial License, you are not required to disclose your source code. No closed source application can include or use Sencha Ext JS or Sencha GXT unless commercially licensed, whether or not you modify these libraries.\nGPL & Trial Development\n\nYou cannot commence development of an application under GPLv3 license and later convert to a commercial license. You cannot develop during a trial period and continue development beyond the trial period (30 days). You must download the appropriate version of the Software (GPL or Commercial) for the license that you are using. If you fail to comply with licensing requirements you may be subject to action for intellectual property rights infringement.\nProhibited Uses\n\nUnder this Commercial License, you are not allowed to create applications that can be described as a development toolkit or library, an application builder, a website builder or any application that is intended for use by software, application, or website developers or designers. If you are concerned about this prohibition, you can discuss getting an OEM license by emailing us at license@sencha.com.\nDesignated Users\n\nUnder this Commercial License, each Designated User (a developer or anybody using the Software to design UI) must be licensed. You can move the license to another Designated User every 6 months.\nConsultants and Software Integrators\n\nConsultants and SI\u2019s that develop applications must ensure that the third parties for which they develop are licensed for the Software. In some cases, you can transfer your license to the third party, and in other cases third parties will need to have their own Commercial License. Consultants can\u2019t use the same license to build application for multiple customers, if the customers are to own the application, unless the third parties purchase a commercial license directly.\n\nCertain consultants and integrators can take advantage of our Independent Consultant Program, which offers commercial licenses for fewer developers.\nLicense Term\n\nExt JS / GXT: Licenses for Sencha Ext JS and Sencha GXT include perpetual development and use rights, with version upgrades under annual Maintenance and Support (1 year included).\n\nExt JS Single Developer Subscription License: Sencha Ext JS may also be licensed on an annual basis which includes support, and must be current to develop, distribute, and use applications.\n\nExtReact: Sencha ExtReact is licensed on an annual basis which includes support, and must be current to develop applications. Rights to distribute and use applications are perpetual.\n\nSencha Test: Sencha Test is licensed on an annual basis which includes support, and must be current to access the Sencha Test tools. Rights to use test scripts are perpetual.\n\nPlease read the entire agreement and definitions below. Your Commercial License is governed by the terms below and not by the terms of this Summary of Important License Use Restrictions.\nSencha Software License Agreement\nVersion 3.9\n\nTHIS DOCUMENT IS A LEGAL AGREEMENT (the \"Agreement\") BETWEEN SENCHA INC. (\"We,\" \"Us\") AND YOU OR THE ORGANIZATION ON WHOSE BEHALF YOU ARE ENTERING INTO THIS AGREEMENT (\"You\") IN RELATION TO SENCHA SOFTWARE GENERALLY MADE AVAILABLE IN SOURCE CODE FORMAT (\"Sencha SDKs\") AND/OR SENCHA SOFTWARE GENERALLY MADE AVAILABLE IN OBJECT CODE FORMAT (\"Sencha Tools\"). (The Sencha SDKs and the Sencha Tools are sometimes hereinafter collectively referred to as the \"Software\".)\n\nRIGHTS GRANTED HEREIN APPLY ONLY TO SOFTWARE FOR WHICH YOU\u2019VE PAID THE APPLICABLE FEE, WHICH MAY INCLUDE THE FOLLOWING SENCHA SDKs: SENCHA EXT JS, SENCHA GXT, SENCHA EXTREACT, SENCHA TREE GRID, SENCHA PIVOT GRID, SENCHA CHARTS, SENCHA CALENDAR COMPONENT, AND/OR SENCHA D3 ADAPTER; AND/OR THE FOLLOWING SENCHA TOOLS: SENCHA ARCHITECT, SENCHA JETBRAINS PLUG-IN, SENCHA ECLIPSE PLUG-IN, SENCHA VISUAL STUDIO PLUG-IN, SENCHA VISUAL STUDIO CODE PLUG-IN, SENCHA INSPECTOR, SENCHA THEMER, SENCHA STENCILS, SENCHA CMD, AND/OR SENCHA TEST.\n\nBY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING THE SOFTWARE, YOU ACCEPT THE FOLLOWING TERMS AND CONDITIONS. IF YOU DO NOT AGREE WITH ANY OF THE TERMS OR CONDITIONS OF THIS LICENSE AGREEMENT, DO NOT PROCEED WITH THE DOWNLOADING, COPYING, INSTALLATION OR ANY OTHER USE OF THE SOFTWARE OR ANY PORTION THEREOF AS YOU HAVE NO RIGHTS TO DO SO. THE SOFTWARE IS PROTECTED BY UNITED STATES COPYRIGHT LAWS AND INTERNATIONAL COPYRIGHT LAWS, AS WELL AS OTHER INTELLECTUAL PROPERTY LAWS AND TREATIES. THE SOFTWARE IS LICENSED, NOT SOLD.\n\nTHIS LICENSE AGREEMENT DESCRIBES YOUR RIGHTS AND RESTRICTIONS WITH RESPECT TO THE SOFTWARE AND ITS COMPONENTS.\n\n1. DEFINITIONS\n\n\"Application\" means any software, application, or elements that Your Designated Users develop using the Software or Modifications in accordance with this Agreement; provided that any such Application (i) must have substantially different functionality than the Software, and (ii) must not allow any third party to use the Sencha SDKs or Modifications, or any portion thereof, for software development or application development purposes.\n\n\"Designated User\" shall mean a single distinct person for whom You have purchased a license to use the Software, whether such person is an employee acting within the scope of their employment with You or Your consultant or contractor acting within the scope of the services they provide for You. A Designated User can be replaced with a new Designated User only after being a Designated User for a minimum of six (6) months.\n\n\"End User\" means an end user of Your Application who acquires a license to such solely for their own internal use and not for distribution, resale, user interface design, or software development purposes.\n\"Modification\" means: a) any addition to or deletion from the contents of a file included in the original Sencha SDKs or previous Modifications created by You, and/or b) any new file that leverages any part of the original Sencha SDKs or previous Modifications.\n\n\"Sample Code\" means sample source code included with the Software and designated as \"sample code,\" \"samples,\" \"sample application code,\" \"stencils,\" \"app templates,\" and/or \"snippets,\" and/or found in directories labeled \"samples\" or \"examples\".\n\n2. LICENSE GRANT\n\nSubject to the payment of the fee required, and subject to Your compliance with all of the terms and conditions of this Agreement, We grant to You a revocable, non-exclusive, non-transferable and non-sublicensable license (i) for Designated User(s) to use the Software to create Modifications and Applications; (ii) for You to distribute the Sencha SDKs and/or Modifications to End Users solely as integrated into the Applications; and (iii) for End Users to use the Sencha SDKs as integrated into Your Applications in accordance with the terms of this Agreement.\n\nIn addition to the other terms contained herein, and subject to Your compliance with all of the terms and conditions of this Agreement, We grant to You a revocable, non-exclusive, non-transferable and non-sublicensable license to install and use the Software (the \"Trial License\") strictly for Your internal evaluation and review purposes and not for production purposes. This Trial License applies only if You have registered with Us for a Trial License of the Software and shall be effective for thirty (30) consecutive days following the date of registration (\"the Trial Period\"). You may only register for a Trial License once in any eighteen month period. You agree not to use a Trial License for any purpose other than determining whether to purchase a license to the Software. You are explicitly not permitted to distribute the Software to any user outside the Organization on whose behalf You have undertaken this license. Your rights to use the Trial License will immediately terminate upon the earlier of (i) the expiration of the Trial Period, or (ii) such time that You purchase a license to the Software. We reserve the right to terminate Your Trial License at any time in Our absolute and sole discretion.\n\nIn addition to the other terms contained herein, in the event You have downloaded or received beta or pre-release versions of the Software (the \"Beta Software\") from Us, subject to Your compliance with all of the terms and conditions of this Agreement, We grant to You a revocable, non-exclusive, non-transferable and non-sublicensable license to install and use the Beta Software strictly for Your internal evaluation and review purposes and not for production purposes (the \"Beta License\"). You are explicitly not permitted to distribute the Software to any user outside the Organization on whose behalf You have undertaken this license. Your rights to use the Beta Software will immediately terminate upon the earlier of (i) the expiration of the evaluation period established by Us, or (ii) such time that You purchase a license to a non-evaluation version of the Software. We reserve the right to terminate Your Beta License at any time in Our absolute and sole discretion.\n\nYOU ACKNOWLEDGE THAT TRIAL AND/OR BETA SOFTWARE MIGHT PLACE WATERMARKS ON OUTPUT, CONTAIN LIMITED FUNCTIONALITY, FUNCTION FOR A LIMITED PERIOD OF TIME, OR LIMIT THE FUNCTIONALITY OR TIME OF FUNCTIONING OF ANY OUTPUT. ACCESS TO AND/OR USE OF ANY FILES OR OUTPUT CREATED WITH SUCH SOFTWARE IS ENTIRELY AT YOUR OWN RISK. WE ARE LICENSING THE SOFTWARE ON AN \"AS IS\" BASIS AT YOUR OWN RISK AND WE DISCLAIM ANY WARRANTY OR LIABILITY TO YOU OF ANY KIND.\n\nSubject to the payment of the fee required, You may modify the \"Sample Code\" solely for the purposes of designing, developing and testing Applications. You are permitted to use, copy and redistribute Your modified Sample Code only if all of the following conditions are met: (a) You include Our copyright notice (if any) with Your Application, including every location in which any other copyright notice appears in such Application; (b) You do not otherwise use Our name, logos or other of Our trademarks to market Your Application, unless otherwise agreed by Us in writing; and (c) each Designated User is duly licensed to use and distribute any of Our products that may be included in an application using and/or generated by the Software.\n\n3. OWNERSHIP\n\nThis is a license agreement and not an agreement for sale. We reserve ownership of all intellectual property rights inherent in or relating to the Software, which include, but are not limited to, all copyright, patent rights, all rights in relation to registered and unregistered trademarks (including service marks), confidential information (including trade secrets and know-how) and all rights other than those expressly granted by this Agreement.\n\nWe provide You with source code to the Sencha SDKs so that You can create Modifications and Applications. While You retain all rights to any original work authored by You as part of the Modifications, We continue to own all copyright and other intellectual property rights in the Sencha SDKs.\nYou must not remove, obscure or interfere with any copyright, acknowledgment, attribution, trademark, warning or disclaimer statement affixed to, incorporated in or otherwise applied in connection with the Software.\n\n4. PROHIBITED USES (SENCHA SDKs)\n\nYou may not redistribute the Sencha SDKs or Modifications other than by including the Sencha SDKs or a portion thereof within Your Application. You may not redistribute the Sencha SDKs or Modifications as part of any Application that can be described as a development toolkit or library, an application builder, a website builder a user interface designer, or any application that is intended for use by software, application, or website developers or designers. You may not redistribute any part of the Sencha SDKs documentation. You may not change or remove the copyright notice from any of the files included in the Sencha SDKs or Modifications.\n\nUNDER NO CIRCUMSTANCES MAY YOU USE THE SENCHA SDKS FOR AN APPLICATION THAT IS INTENDED FOR SOFTWARE OR APPLICATION DEVELOPMENT PURPOSES.\n\nYou are required to ensure that the Sencha SDKs is not reused by or with any applications other than those with which You distribute it as permitted herein. For example, if You install the Sencha SDKs on a customer\u2019s server, that customer is not permitted to use the Sencha SDKs independently of Your Application, and must be informed as such.\n\nAlternate versions of the Sencha SDKs (\"GPL Version\") may be licensed under the terms of the GNU General Public License versions 3.0 (\"GPL\"). If You, or another third party, has, at any time, developed all or any portion of the Application(s) using a GPL Version, You may not combine such work with the Sencha SDKs licensed hereunder, and You must license such application(s) under the terms of the GNU General Public License version 3.\n\n5. PROHIBITED USES (SENCHA TOOLS)\n\nYou agree not to sublicense, assign or transfer the Sencha Tools or Your rights in the Sencha Tools, or authorize any portion of the Sencha Tools to be copied onto or accessed from another individual\u2019s or entity\u2019s computer except as may be explicitly provided in this Agreement. Notwithstanding anything to the contrary in this section, You may transfer copies of the Sencha Tools installed on one of Your computers to another one of Your computers provided that the resulting installation and use of the Sencha Tools is in accordance with the terms of this Agreement and does not cause You to exceed Your right to use the Sencha Tools under this Agreement. Except as expressly authorized under this Agreement, You are prohibited from: (a) renting, leasing, lending or granting other rights in the Sencha Tools including rights on a membership or subscription basis; and (b) providing use of the Sencha Tools in a computer service business, third party outsourcing facility or service, service bureau arrangement, network, or time sharing basis.\n\nYou agree not to modify, port, adapt or translate the Sencha Tools. You agree not to reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of the Sencha Tools. You agree not to use any part of the Sencha Tools or Your knowledge of the Sencha Tools (or any information that You learn as a result of Your use of the Sencha Tools) to create a product with the same or substantially the same functionality as the Sencha Tools. The Sencha Tools may include various applications, utilities and components, may support multiple platforms and languages or may be provided to You on multiple media or in multiple copies. Nonetheless, the Sencha Tools is designed and provided to You as a single product to be used as a single product on computers and platforms as permitted herein. You are not required to use all component parts of the Sencha Tools, but You shall not unbundle any component parts of the Sencha Tools for use on different computers. You shall not unbundle or repackage the Sencha Tools for distribution, transfer or resale.\n\nYou agree to use the Software pursuant to the terms and conditions of this Agreement, and not any other terms or conditions unless provided in writing signed by the parties hereto.\n\n6. TERMINATION\n\nThis Agreement and Your right to use the Software and Modifications will terminate immediately if You fail to comply with any of the terms and conditions of this Agreement. Upon termination, You agree to immediately cease using and destroy the Software or Modifications, including all accompanying documents. The provisions of sections 3, 4, 5, 6, 7, 8, 10, and 11 will survive any termination of this Agreement.\n\nA license to Sencha Test or Sencha ExtReact under Section 2 of this Agreement (a \"Term License\") commences on the date of purchase and continues for an initial term of one (1) year or more, depending on the fee paid (the \"Initial Term\"). A Term License will automatically terminate at the end of the Initial Term, unless You choose to extend the Term License, subject to Our agreement based on payment of the applicable fees (each such extension is referred to as an \"Extension\"). The \"Term\" shall mean the Initial Term as extended by each Extension. Upon the expiration of the Term, the applicable Term Licenses shall terminate automatically, and You shall immediately cease use of Sencha Test and/or development with Sencha ExtReact (as applicable); provided, however, that (i) any license for Your distribution and for End User use of Sencha ExtReact granted in accordance with the terms and conditions hereof shall survive such termination; and (ii) any licenses for use of Sencha Test scripts granted to You in accordance with the terms and conditions hereof shall survive such termination.\n\nA license to Sencha Ext JS when purchased under the Single Developer Subscription License program (a \"Subscription License\") commences on the Effective Date and will continue for an initial term of one (1) year (the \"Initial Subscription Term\"). If You elected a subscription plan with auto-renewals, the Subscription License will automatically renew for successive one (1) year terms (each a \"Subscription Renewal\") at the then current fee unless either party gives written notice of its intent not to renew at least thirty (30) days prior to the end of the current Subscription Term (as hereinafter defined). If You elected a subscription plan without auto-renewals, the Subscription License will automatically terminate at the end of the Initial Subscription Term, unless You choose to renew the Subscription License, subject to Our written agreement and based on payment of the applicable fees (each such renewal also referred to as a \"Subscription Renewal\"). \"Subscription Term\" shall mean the Initial Subscription Term as extended by each Subscription Renewal. Upon the expiration of the Subscription Term, the applicable Subscription Licenses shall terminate automatically, and You shall immediately cease use of Sencha Ext JS under the applicable Subscription License.\n\n7. DISCLAIMER OF WARRANTIES\n\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, WE AND OUR RESELLERS DISCLAIM ALL WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE. WE DO NOT GUARANTEE THAT THE OPERATION OF THE SOFTWARE OR THE CODE IT PRODUCES WILL BE UNINTERRUPTED OR ERROR-FREE, AND YOU ACKNOWLEDGE THAT IT IS NOT TECHNICALLY PRACTICABLE FOR US TO DO SO.\n\n8. LIMITATION OF LIABILITIES\n\nIN NO EVENT WILL WE, OUR SUBSIDIARIES, OUR AFFILIATES, OR OUR LICENSORS BE LIABLE TO YOU, WHETHER IN CONTRACT, BY REASON OF NEGLIGENCE OR OTHERWISE, FOR PUNITIVE, CONSEQUENTIAL, EXEMPLARY, INCIDENTAL, OR INDIRECT DAMAGES OR COSTS (INCLUDING LEGAL FEES AND EXPENSES) OR LOSS OF GOODWILL OR PROFIT IN CONNECTION WITH THE SUPPLY, USE OR PERFORMANCE OF OR INABILITY TO USE THE SOFTWARE, OR NON-PERFORMANCE OF ANY OBLIGATIONS PROVIDED HEREUNDER, OR IN CONNECTION WITH ANY CLAIM ARISING FROM THIS AGREEMENT, EVEN IF WE, OUR SUBSIDIARIES, OUR AFFILIATES, OR OUR LICENSORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR COSTS YOU AGREE THAT OUR ENTIRE LIABILITY HEREUNDER FOR DAMAGES SHALL NOT EXCEED THE LESSER OF (I) THE AGGREGATE AMOUNTS PAID OR PAYABLE BY YOU WITHIN THE SIX MONTH PERIOD IMMEDIATELY PRECEEDING THE DATE THE LIABILITY THAT GAVE RISE TO DAMAGES WAS INCURRED; AND TO(II) FIVE HUNDRED DOLLARS ($500).\n\n9. VERIFICATION\n\nWe or a certified auditor acting on Our behalf, may, upon Our reasonable request and at Our expense, audit You with respect to the use of the Software. Such audit may be conducted by mail, electronic means or through an in-person visit to Your place of business. Any such in-person audit shall be conducted during regular business hours at Your facilities and shall not unreasonably interfere with Your business activities. We shall not remove, copy, or redistribute any electronic material during the course of an audit. If an audit reveals that You are using the Software in a way that is in material violation of the terms of this Agreement, then You shall pay Our reasonable costs of conducting the audit. In the case of a material violation, You agree to pay Us any amounts owing that are attributable to the unauthorized use. In the alternative, We reserve the right, at Our discretion, to terminate the licenses for the Software, in addition to any other remedies available under law. This Section shall survive expiration or termination of this Agreement for a period of two (2) years.\n\n10. PAYMENT AND TAXES\n\nIf credit has been extended to You by Us, all payments under this Agreement are due within thirty (30) days of the date We mail an invoice to You. If We have not extended credit to You, You shall be required to make payment concurrent with the delivery of the Software by Us. Any value added tax, use tax, sales tax or similar tax (\"Transaction Taxes\") shall be Your sole responsibility. Each party shall pay all taxes (including, but not limited to, taxes based upon its income) or levies imposed on it under applicable laws, regulations and tax treaties as a result of this Agreement and any payments made hereunder (including those required to be withheld or deducted from payments); provided that You shall be responsible for all Transactions Taxes and shall pay or reimburse Us for the same upon invoice. Each party shall furnish evidence of such paid taxes as is sufficient to enable the other party to obtain any credits available to it, including original withholding tax certificates. Notwithstanding the foregoing, Software ordered through Our resellers is subject to the fees and payment terms set forth on the applicable reseller invoice.\n\n11. MISCELLANEOUS\n\nThe license granted herein applies only to the version of the Software available when purchased in connection with the terms of this Agreement, and to any updates and/or upgrades to which You may be entitled. Any previous or subsequent license granted to You for use of the Software shall be governed by the terms and conditions of the agreement entered in connection with purchase or download of that version of the Software. Support and maintenance, including rights to updates and upgrades, are provided pursuant to the terms of the Sencha Support and Maintenance Agreement. You agree that You will comply with all applicable laws and regulations with respect to the Software, including without limitation all export and re-export control laws and regulations.\nWhile redistributing the Sencha SDKs or Modifications thereof as part of Your Application, You may choose to offer acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this Agreement. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on our behalf. You shall indemnify Us and our resellers, or at Our option, defend Us and our resellers against any claim, suit or proceeding brought against Us or our resellers (i) arising by reason of Your accepting any such support, warranty, indemnity or additional liability; or (ii) arising out of the use, reproduction or distribution of Your Application, except to the extent such claim is solely based on the inclusion of the Sencha SDKs therein. Further, You agree only to distribute the Sencha SDKs pursuant to an enforceable written agreement for Our benefit that includes all the limitations and restrictions of this Agreement and is as protective of Us and Sencha SDKs as is this Agreement. For clarity, for Sencha SDKs for which You have paid a fee, You must purchase Designated User licenses for each contractor or consultant who uses the Sencha SDKs to create an Application on Your behalf (including system integrators), whether or not such contractor or consultant has its own license to the Sencha SDKs.\n\nYou agree to be identified as a customer of Ours and You agree that We may refer to You by name, trade name and trademark, if applicable, and may briefly describe Your business in our marketing materials and web site.\n\nYou may not assign or transfer this Agreement without Our prior written consent. Any attempted assignment or delegation in violation of this Section shall be null and void. This Agreement may be assigned by Us in whole or part and will inure to the benefit of Our successors and assigns. Notwithstanding the foregoing, in any instance in which You transfer ownership of an Application on a work for hire basis, You may assign licenses for the total Designated Users that have used the Software to develop said Application under this Agreement to another party (Assignee) provided (i) You provide written notice to Us prior to the effective date of such assignment; and (ii) the transfer is in quantities We generally make available to Our customers (minimum 5 Designated Users); and (iii) there is a written agreement, wherein the assignee accepts the terms of this Agreement. Upon any such transfer, the assignee may appoint new Designated Users. For license(s) purchased under our Independent Consultant Program: (i) you represent and warrant that the information you provided to us is true and correct in all material regards, and (ii) notwithstanding any provision herein to the contrary, you may assign any such license(s) to the entity you designated to us as the Client, provided that assignee accepts the terms of this Agreement in connection with the Assignment. On any such assignment, the assignee may change the Designated User.\n\nThis Agreement is the complete and exclusive statement of the mutual understanding of the parties and supersedes and cancels all previous written and oral agreements and communications relating to the subject matter of this Agreement. No oral or written information given by Us, Our resellers, or otherwise on Our behalf shall create a warranty or collateral contract, or in any way increase the scope of this Agreement in any way, and You may not rely on any such oral or written information. Any waivers or amendments shall be effective only if made in writing. Further, any different or additional terms of any related purchase order, confirmation, or similar form shall have no force or effect. The license granted herein is conditioned upon the acceptance of the terms and conditions hereof to the exclusion of all other terms, and no other or additional terms shall apply, unless so provided in writing signed by the parties hereto. You expressly agree by Your use of the Software that no such other, different or additional terms or conditions shall apply, notwithstanding any statements to the contrary included in any purchase order, confirmation, or similar form, and regardless of whether we accept payments referenced therein which shall not constitute acceptance of additional terms and conditions.\n\nThere are no implied licenses or other implied rights granted under this Agreement, and all rights, save for those expressly granted hereunder, shall remain with Us and our licensors. In addition, no licenses or immunities are granted to the combination of the Software and/or Modifications, as applicable, with any other software or hardware not delivered by Us or Our resellers to You under this Agreement. Your rights under this Agreement apply only to Software, Modifications, and/or Applications for which all Designated Users are duly licensed hereunder.\n\nIf any provision in this Agreement shall be determined to be invalid, such provision shall be deemed omitted; the remainder of this Agreement shall continue in full force and effect. If any remedy provided is determined to have failed for its essential purpose, all limitations of liability and exclusions of damages set forth in this Agreement shall remain in effect. The failure of either party to enforce any provision of this Agreement may not be deemed a waiver of that or any other provision of this Agreement.\n\nThis Agreement, and all claims or causes of action that may be based upon, arise out of, or relate to this Agreement and/or the Software shall be governed by the law of the State of Texas, United States (notwithstanding conflicts of laws provisions), and all parties irrevocably submit to the jurisdiction of the state or federal courts of the State of Texas and further agree to commence any litigation which may arise hereunder or related hereto and/or to the Software in the state or federal courts located in the judicial district of Travis County, Texas, US.\n\nIf the Software or any related documentation is licensed to the U.S. Government or any agency thereof, it will be considered to be \"commercial computer software\" or \"commercial computer software documentation,\" as those terms are used in 48 CFR \u00a7 12.212 or 48 CFR \u00a7 227.7202, and is being licensed with only those rights as are granted to all other licensees as set forth in this Agreement.\n\nSencha Ext JS Bundles: Sencha Ext JS Standard includes Sencha Ext JS (which includes Sencha Tree Grid and Sencha Charts), Sencha Stencils, Sencha Visual Studio Code Plugin, and Sencha Cmd. Sencha Ext JS Pro includes all the Sencha Ext JS Standard Software and Sencha Architect, Sencha JetBrains Plugin, Sencha Eclipse Plugin, Sencha Visual Studio Plugin, and Sencha Themer. Sencha Ext JS Premium includes all the Sencha Ext JS Pro Software and Sencha Pivot Grid, Sencha Inspector, Sencha Calendar Component, Sencha Exporter, and Sencha D3 Adapter.\n\nSencha ExtReact Bundles: Sencha ExtReact Standard includes Sencha ExtReact and Sencha Cmd. Sencha ExtReact Premium includes all the Sencha ExtReact Standard Software and Sencha Themer, Sencha Tree Grid, Sencha Pivot Grid, Sencha Calendar Component, Sencha Exporter, and Sencha D3 Adapter.", + "json": "sencha-commercial-3.9.json", + "yaml": "sencha-commercial-3.9.yml", + "html": "sencha-commercial-3.9.html", + "license": "sencha-commercial-3.9.LICENSE" + }, + { + "license_key": "sencha-dev-floss-exception", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-sencha-dev-floss-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Exception for Development Version 1.04, January 18, 2013\n\nException Intent\n\nWe want people who build extensions, developer toolkits and frameworks, language packs and themes for Sencha frameworks and libraries to be able to publicly distribute them under less restrictive license terms, even though version 3 of the GNU General Public License (the \"GPL\") may require them to be licensed under the GPL.\n\nThis Exception does not grant usage or distribution of any Sencha development library under a license other than the GPL and cannot be applied to end-user applications. For applications, please refer to the Open Source License Exception for Applications.\nTerms and Conditions\nDefinitions\n\n Terms used, but not defined, herein shall have the meaning provided in the GPL.\n \"Library\" means Ext JS, Sencha Touch or Sencha GXT, for which this exception is applicable.\n \"Code\" means source code for the Library or Extension.\n \"Images\" means images distributed with Code.\n \"Modification\" means a visual change or enhancement made to a Library Component (\"Component\") by means of modifying the standard functionality or visual appearance of the Component.\n\n\n*\"Extension\" means the combination of Code and Images to form a Modification or a completely new and original Component.\n\nAdditional Grants\n\nAs a special exception to the terms and conditions of version 3.0 of the GPL:\n\nYou are free to distribute an Extension licensed under one or more of the licenses listed below in section 5, as long as:\n\n Your Extension does not contain any Code or modified Code from the Library.\n You do not distribute the Library, as a whole or in part, with your Extension. Optionally, you should include instructions for developers using your Extension explaining how to obtain the Library.\n You include PROMINENT notice in EVERY location you display the license information for your Extension that it uses the Library, that the Library is distributed under the terms of the GPL v3 and you must include a link to http://www.sencha.com/license.\n Your Extension is distributed subject to one of the FLOSS licenses listed below, and is accompanied by the complete corresponding machine-readable source code on the same medium and under the same FLOSS license as the Extension\n Your Extension can reasonably be considered to be adding to or modifying standard functionality of the Library for software development purposes and does not constitute an independent and separate application in itself.\n\nApplicability\n\nThis exception applies to Ext JS version 2.2 or later, Sencha Touch 1.0 or later and Sencha GXT version 1.0 or later released under the GPL that contain a conspicuous notice with the Derivative Work and conspicuously posted online near any download location, saying that Derivative Works built using the Library may be distributed under the terms of this Exception and that the included Library is subject to the terms of the GPL v3.\n\nThis Exception can in no way be considered to grant rights to use or distribute the Library under any license other than the GPL v3.\nTermination\n\nIf you fail to comply with any of the terms in this Exception then all rights granted to you herein are void and your rights immediately revert back to those granted in the GPL v3.\nOpen Source License List\nLicense name Version(s)/Copyright Date\nAcademic Free License 2.0\nApache Software License 2.0\nApple Public Source License 2.0\nArtistic license From Perl 5.8.0\nBSD license \"July 22 1999\"\nCommon Development and Distribution License (CDDL) 1.0\nCommon Public License 1.0\nEclipse Public License 1.0\nEducational Community License 2.0\nEuropean Union Public License (EUPL) 1.1\nGNU General Public License (GPL) 2.0\nGNU Library or \"Lesser\" General Public License (LGPL) 3.0\nJabber Open Source License 1.0\nMIT License (As listed in file MIT-License.txt) -\nMozilla Public License (MPL) 1.0/1.1/2.0\nOpen Software License 2.0\nOpenSSL license (with original SSLeay license) \"2003\" (\"1998\")\nPHP License 3.0\nPython license (CNRI Python License) -\nPython Software Foundation License 2.1.1\nSleepycat License \"1999\"\nUniversity of Illinois/NCSA Open Source License -\nW3C License \"2001\"\nX11 License \"2001\"\nZimbra Public License 1.3\nZlib/libpng License -\nZope Public License 2.0", + "json": "sencha-dev-floss-exception.json", + "yaml": "sencha-dev-floss-exception.yml", + "html": "sencha-dev-floss-exception.html", + "license": "sencha-dev-floss-exception.LICENSE" + }, + { + "license_key": "sendmail", + "category": "Permissive", + "spdx_license_key": "Sendmail", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " SENDMAIL LICENSE\n\nThe following license terms and conditions apply, unless a different\nlicense is obtained from Sendmail, Inc., 6425 Christie Ave, Fourth Floor,\nEmeryville, CA 94608, USA, or by electronic mail at license@sendmail.com.\n\nLicense Terms:\n\nUse, Modification and Redistribution (including distribution of any\nmodified or derived work) in source and binary forms is permitted only if\neach of the following conditions is met:\n\n1. Redistributions qualify as \"freeware\" or \"Open Source Software\" under\n one of the following terms:\n\n (a) Redistributions are made at no charge beyond the reasonable cost of\n materials and delivery.\n\n (b) Redistributions are accompanied by a copy of the Source Code or by an\n irrevocable offer to provide a copy of the Source Code for up to three\n years at the cost of materials and delivery. Such redistributions\n must allow further use, modification, and redistribution of the Source\n Code under substantially the same terms as this license. For the\n purposes of redistribution \"Source Code\" means the complete compilable\n and linkable source code of sendmail including all modifications.\n\n2. Redistributions of source code must retain the copyright notices as they\n appear in each source code file, these license terms, and the\n disclaimer/limitation of liability set forth as paragraph 6 below.\n\n3. Redistributions in binary form must reproduce the Copyright Notice,\n these license terms, and the disclaimer/limitation of liability set\n forth as paragraph 6 below, in the documentation and/or other materials\n provided with the distribution. For the purposes of binary distribution\n the \"Copyright Notice\" refers to the following language:\n \"Copyright (c) 1998-2004 Sendmail, Inc. All rights reserved.\"\n\n4. Neither the name of Sendmail, Inc. nor the University of California nor\n the names of their contributors may be used to endorse or promote\n products derived from this software without specific prior written\n permission. The name \"sendmail\" is a trademark of Sendmail, Inc.\n\n5. All redistributions must comply with the conditions imposed by the\n University of California on certain embedded code, whose copyright\n notice and conditions for redistribution are as follows:\n\n (a) Copyright (c) 1988, 1993 The Regents of the University of\n California. All rights reserved.\n\n (b) Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n\n (i) Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n (ii) Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n\n (iii) Neither the name of the University nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n\n6. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY\n SENDMAIL, INC. AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN\n NO EVENT SHALL SENDMAIL, INC., THE REGENTS OF THE UNIVERSITY OF\n CALIFORNIA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\n USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\n ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n$Revision: 8.13 $, Last updated $Date: 2004/05/11 23:57:57 $", + "json": "sendmail.json", + "yaml": "sendmail.yml", + "html": "sendmail.html", + "license": "sendmail.LICENSE" + }, + { + "license_key": "sendmail-8.23", + "category": "Copyleft Limited", + "spdx_license_key": "Sendmail-8.23", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SENDMAIL LICENSE \nThe following license terms and conditions apply, unless a redistribution agreement or other license is obtained from Proofpoint, Inc., 892 Ross Street, Sunnyvale, CA, 94089, USA, or by electronic mail at sendmail-license@proofpoint.com. \n\nLicense Terms: \n\nUse, Modification and Redistribution (including distribution of any modified or derived work) in source and binary forms is permitted only if each of the following conditions is met: \n\n1. Redistributions qualify as \"freeware\" or \"Open Source Software\" under one of the following terms:\n\nRedistributions are made at no charge beyond the reasonable cost ofmaterials and delivery.\n\nRedistributions are accompanied by a copy of the Source Code or by an irrevocable offer to provide a copy of the Source Code for up to three years at the cost of materials and delivery. Such redistributions must allow further use, modification, and redistribution of the Source Code under substantially the same terms as this license. For the purposes of redistribution \"Source Code\" means the complete compilable and linkable source code of sendmail and associated libraries and utilities in the sendmail distribution including all modifications. \n\n2. Redistributions of Source Code must retain the copyright notices as they appear in each Source Code file, these license terms, and the disclaimer/limitation of liability set forth as paragraph 6 below. \n\n3. Redistributions in binary form must reproduce the Copyright Notice, these license terms, and the disclaimer/limitation of liability set forth as paragraph 6 below, in the documentation and/or other materials provided with the distribution. For the purposes of binary distribution the \"Copyright Notice\" refers to the following language: \"Copyright (c) 1998-2014 Proofpoint, Inc. All rights reserved.\" \n\n4. Neither the name of Proofpoint, Inc. nor the University of California nor names of their contributors may be used to endorse or promote products derived from this software without specific prior written permission. The name \"sendmail\" is a trademark of Proofpoint, Inc. \n\n5. All redistributions must comply with the conditions imposed by theUniversity of California on certain embedded code, which copyrightNotice and conditions for redistribution are as follows:\n\n(a) Copyright (c) 1988, 1993 The Regents of the University ofCalifornia. All rights reserved.\n\n(b) Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the abovec opyright notice, this list of conditions and the following \ndisclaimer in the documentation and/or other materials provided with the distribution.\n\n(c) 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. \n\n6. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY SENDMAIL, INC. 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 SENDMAIL, INC., THE REGENTS OF THE UNIVERSITY OF CALIFORNIA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUTNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ONANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OFTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \n\n$Revision: 8.23 $, Last updated $Date: 2014-01-26 20:10:01 $, Document139848.1", + "json": "sendmail-8.23.json", + "yaml": "sendmail-8.23.yml", + "html": "sendmail-8.23.html", + "license": "sendmail-8.23.LICENSE" + }, + { + "license_key": "service-comp-arch", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-service-comp-arch", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Service Component Architecture JavaDoc, Interface Definition files,\nand XSD files are being provided by the copyright holders under the\nfollowing license. By using and/or copying this work, you agree that\nyou have read, understood and will comply with the following terms and\nconditions:\n\nPermission to copy, display, make derivative works of, and distribute\nthe Service Component Architecture JavaDoc, Interface Definition Files\nand XSD files (the \"Artifacts\") in any medium without fee or royalty is\nhereby granted, provided that you include the following on ALL copies\nof the Artifacts, or portions thereof, that you make:\n\n1. A link or URL to the Artifacts at this location:\nhttp://www.osoa.org/display/Main/Service+Component+Architecture+Specifications\n\n2. The full text of this copyright notice as shown in the Artifacts.\n\nTHE ARTIFACTS ARE PROVIDED \"AS IS,\" AND THE AUTHORS MAKE NO\nREPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THE\nARTIFACTS AND THE IMPLEMENTATION OF THEIR CONTENTS, INCLUDING, BUT NOT\nLIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\nPURPOSE, NON-INFRINGEMENT OR TITLE.\n\nTHE AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL,\nINCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO ANY\nUSE OR DISTRIBUTION OF THE ARTIFACTS.\n\nThe name and trademarks of the Authors may NOT be used in any manner,\nincluding advertising or publicity pertaining to the Service Component\nArchitecture Specification or its contents without specific, written\nprior permission. Title to copyright in the Service Component\nArchitecture Specification and the JavaDoc, Interface Definition Files\nand XSD Files will at all times remain with the Authors.\n\nNo other rights are granted by implication, estoppel or otherwise.", + "json": "service-comp-arch.json", + "yaml": "service-comp-arch.yml", + "html": "service-comp-arch.html", + "license": "service-comp-arch.LICENSE" + }, + { + "license_key": "sfl-license", + "category": "Permissive", + "spdx_license_key": "iMatix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The SFL License Agreement\n\nThis license agreement covers your use of the iMatix STANDARD FUNCTION LIBRARY (SFL), its source code, documentation, and executable files, hereinafter referred to as \"the Product\".\n\nThe Product is Copyright \u00a9 1991-2000 iMatix Corporation. You may use it and distribute it according to this following License Agreement. If you do not agree with these terms, please remove the Product from your system. By incorporating the Product in your work or distributing the Product to others you implicitly agree to these license terms.\n\nStatement Of Copyright\n\nThe Product is, and remains, Copyright \u00a9 1991-2000 iMatix Corporation, with exception of specific copyrights as noted in the individual source files.\n\nConditions Of Use\n\nYou do not need to provide the source code for the Product as part of your product. However, you must do one of these things to comply with the Product License Agreement:\n\n1. Provide the source code for Product modules that you use, or\n2. Make your product freely available according to a license similar to the GNU General Public License, or the Perl Artistic License, or\n3. Add this phrase to the documentation for your product: \"This product uses parts of the iMatix SFL, Copyright \u00a9 1991-2000 iMatix Corporation \". \n\nRights Of Usage\n\nYou may freely and at no cost use the Product in any project, commercial, academic, military, or private, so long as you respect the License Agreement. The License Agreement does not affect any software except the Product. In particular, any application that uses the Product does not itself fall under the License Agreement.\n\nYou may modify any part of the Product, including sources and documentation, except this License Agreement, which you may not modify.\n\nYou must clearly indicate any modifications at the start of each source file. The user of any modified Product code must know that the source file is not original.\n\nAt your discretion, you may rewrite or reuse any part of the Product so that your derived code is not obviously part of the Product. This derived code does not fall under the Product License Agreement directly, but you must include a credit at the start of each source file indicating the original authorship and source of the code, and a statement of copyright as follows:\n\"Parts copyright (c) 1991-2000 iMatix Corporation.\"\n\nRights Of Distribution\n\nYou may freely distribute the Product, or any subset of the Product, by any means. The License, in the form of the file called \"LICENSE.TXT\" must accompany any such distribution.\n\nYou may charge a fee for distributing the Product, for providing a warranty on the Product, for making modifications to the Product, or for any other service provided in relation to the Product. You are not required to ask our permission for any of these activities.\n\nAt no time will iMatix associate itself with any distribution of the Product except that supplied from the Internet site http://www.imatix.com.\n\nDisclaimer Of Warranty\n\nThe Product is provided as free software, in the hope that it will be useful. It is provided \"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 Product is with you. Should the Product prove defective, the full cost of repair, servicing, or correction lies with you.", + "json": "sfl-license.json", + "yaml": "sfl-license.yml", + "html": "sfl-license.html", + "license": "sfl-license.LICENSE" + }, + { + "license_key": "sgi-cid-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sgi-cid-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "CID FONT CODE PUBLIC LICENSE Version 1.0 3/31/99\n\nSubject to any applicable third party claims, Silicon Graphics, Inc. (\"SGI\")\nhereby grants permission to Recipient (defined below), under SGI's copyrights\nin the Original Software (defined below), to use, copy, modify, merge, pub-\nlish, distribute, sublicense and/or sell copies of Subject Software (defined\nbelow) in both source code and executable form, and to permit persons to whom\nthe Subject Software is furnished in accordance with this License to do the\nsame, subject to all of the following terms and conditions, which Recipient\naccepts by engaging in any such use, copying, modifying, merging, publica-\ntion, distributing, sublicensing or selling:\n\n1. Definitions.\n\n a. \"Original Software\" means source code of computer software code\n that is described in Exhibit A as Original Software.\n\n b. \"Modifications\" means any addition to or deletion from the sub-\n stance or structure of either the Original Software or any previous\n Modifications. When Subject Software is released as a series of\n files, a Modification means (i) any addition to or deletion from\n the contents of a file containing Original Software or previous\n Modifications and (ii) any new file that contains any part of the\n Original Code or previous Modifications.\n\n c. \"Subject Software\" means the Original Software or Modifications\n or the combination of the Original Software and Modifications, or\n portions of any of the foregoing.\n\n d. \"Recipient\" means an individual or a legal entity exercising\n rights under the terms of this License. For legal entities, \"Recip-\n ient\" includes any entity that controls, is controlled by, or is\n under common control with Recipient. For purposes of this defini-\n tion, \"control\" of an entity means (i) the power, direct or indi-\n rect, to direct or manage such entity, or (ii) ownership of fifty\n percent (50%) or more of the outstanding shares or beneficial own-\n ership of such entity.\n\n e. \"Required Notice\" means the notice set forth in Exhibit A to\n this License.\n\n f. \"Accompanying Technology\" means any software or other technology\n that is not a Modification and that is distributed or made publicly\n available by Recipient with the Subject Software. Separate soft-\n ware files that do not contain any Original Software or any previ-\n ous Modification shall not be deemed a Modification, even if such\n software files are aggregated as part of a product, or in any\n medium of storage, with any file that does contain Original Soft-\n ware or any previous Modification.\n\n2. License Terms. All distribution of the Subject Software must be made sub-\nject to the terms of this License. A copy of this License and the Required\nNotice must be included in any documentation for Subject Software where\nRecipient's rights relating to Subject Software and/or any Accompanying Tech-\nnology are described. Distributions of Subject Software in source code form\nmust also include the Required Notice in every file distributed. In addition,\na ReadMe file entitled \"Important Legal Notice\" must be distributed with each\ndistribution of one or more files that incorporate Subject Software. That\nfile must be included with distributions made in both source code and exe-\ncutable form. A copy of the License and the Required Notice must be included\nin that file. Recipient may distribute Accompanying Technology under a\nlicense of Recipient's choice, which may contain terms different from this\nLicense, provided that (i) Recipient is in compliance with the terms of this\nLicense, (ii) such other license terms do not modify or supersede the terms\nof this License as applicable to the Subject Software, (iii) Recipient hereby\nindemnifies SGI for any liability incurred by SGI as a result of the distri-\nbution of Accompanying Technology or the use of other license terms.\n\n3. Termination. This License and the rights granted hereunder will terminate\nautomatically if Recipient fails to comply with terms herein and fails to\ncure such breach within 30 days of the breach. Any sublicense to the Subject\nSoftware that is properly granted shall survive any termination of this\nLicense absent termination by the terms of such sublicense. Provisions which,\nby their nature, must remain in effect beyond the termination of this License\nshall survive.\n\n4. Trademark Rights. This License does not grant any rights to use any trade\nname, trademark or service mark whatsoever. No trade name, trademark or ser-\nvice mark of SGI may be used to endorse or promote products derived from or\nincorporating any Subject Software without prior written permission of SGI.\n\n5. No Other Rights. No rights or licenses not expressly granted hereunder\nshall arise by implication, estoppel or otherwise. Title to and ownership of\nthe Original Software at all times remains with SGI. All rights in the Origi-\nnal Software not expressly granted under this License are reserved.\n\n6. Compliance with Laws; Non-Infringement. Recipient shall comply with all\napplicable laws and regulations in connection with use and distribution of\nthe Subject Software, including but not limited to, all export and import\ncontrol laws and regulations of the U.S. government and other countries.\nRecipient may not distribute Subject Software that (i) in any way infringes\n(directly or contributorily) the rights (including patent, copyright, trade\nsecret, trademark or other intellectual property rights of any kind) of any\nother person or entity, or (ii) breaches any representation or warranty,\nexpress, implied or statutory, which under any applicable law it might be\ndeemed to have been distributed.\n\n7. Claims of Infringement. If Recipient at any time has knowledge of any one\nor more third party claims that reproduction, modification, use, distribu-\ntion, import or sale of Subject Software (including particular functionality\nor code incorporated in Subject Software) infringes the third party's intel-\nlectual property rights, Recipient must place in a well-identified web page\nbearing the title \"LEGAL\" a description of each such claim and a description\nof the party making each such claim in sufficient detail that a user of the\nSubject Software will know whom to contact regarding the claim. Also, upon\ngaining such knowledge of any such claim, Recipient must conspicuously\ninclude the URL for such web page in the Required Notice, and in the text of\nany related documentation, license agreement or collateral in which Recipient\ndescribes end user's rights relating to the Subject Software. If Recipient\nobtains such knowledge after it makes Subject Software available to any other\nperson or entity, Recipient shall take other steps (such as notifying appro-\npriate mailing lists or newsgroups) reasonably calculated to provide such\nknowledge to those who received the Subject Software.\n\n8. DISCLAIMER OF WARRANTY. SUBJECT SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS,\nWITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT\nLIMITATION, WARRANTIES THAT THE SUBJECT SOFTWARE IS FREE OF DEFECTS, MER-\nCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. SGI ASSUMES NO\nRISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE. SHOULD ANY SOFTWARE\nPROVE DEFECTIVE IN ANY RESPECT, SGI ASSUMES NO COST OR LIABILITY FOR ANY SER-\nVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN\nESSENTIAL PART OF THIS LICENSE. NO USE OF ANY SUBJECT SOFTWARE IS AUTHORIZED\nHEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n9. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY,\nWHETHER TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY),\nCONTRACT, OR OTHERWISE, SHALL SGI OR ANY SGI LICENSOR BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SUBJECT SOFTWARE OR\nTHE USE OR OTHER DEALINGS IN THE SUBJECT SOFTWARE. SOME JURISDICTIONS DO NOT\nALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES, SO THIS EXCLUSION AND\nLIMITATION MAY NOT APPLY TO RECIPIENT TO THE EXTENT SO DISALLOWED.\n\n10. Indemnity. Recipient shall be solely responsible for damages arising,\ndirectly or indirectly, out of its utilization of rights under this License.\nRecipient will defend, indemnify and hold SGI and its successors and assigns\nharmless from and against any loss, liability, damages, costs or expenses\n(including the payment of reasonable attorneys fees) arising out of (Recipi-\nent's use, modification, reproduction and distribution of the Subject Soft-\nware or out of any representation or warranty made by Recipient.\n\n11. U.S. Government End Users. The Subject Software is a \"commercial item\"\nconsisting of \"commercial computer software\" as such terms are defined in\ntitle 48 of the Code of Federal Regulations and all U.S. Government End Users\nacquire only the rights set forth in this License and are subject to the\nterms of this License.\n\n12. Miscellaneous. This License represents the complete agreement concerning\nsubject matter hereof. If any provision of this License is held to be unen-\nforceable by any judicial or administrative authority having proper jurisdic-\ntion with respect thereto, such provision shall be reformed so as to achieve\nas nearly as possible the same economic effect as the original provision and\nthe remainder of this License will remain in effect. This License shall be\ngoverned by and construed in accordance with the laws of the United States\nand the State of California as applied to agreements entered into and to be\nperformed entirely within California between California residents. Any liti-\ngation relating to this License shall be subject to the exclusive jurisdic-\ntion of the Federal Courts of the Northern District of California (or, absent\nsubject matter jurisdiction in such courts, the courts of the State of Cali-\nfornia), with venue lying exclusively in Santa Clara County, California, with\nthe losing party responsible for costs, including without limitation, court\ncosts and reasonable attorneys fees and expenses. The application of the\nUnited Nations Convention on Contracts for the International Sale of Goods is\nexpressly excluded. Any law or regulation that provides that the language of\na contract shall be construed against the drafter shall not apply to this\nLicense.\n\nExhibit A\n\nCopyright (c) 1994-1999 Silicon Graphics, Inc.\n\nThe contents of this file are subject to the CID Font Code Public License\nVersion 1.0 (the \"License\"). You may not use this file except in compliance\nwith the License. You may obtain a copy of the License at Silicon Graphics,\nInc., attn: Legal Services, 2011 N. Shoreline Blvd., Mountain View, CA 94043\nor at http://www.sgi.com/software/opensource/cid/license.html\n\nSoftware distributed under the License is distributed on an \"AS IS\" basis.\nALL WARRANTIES ARE DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED\nWARRANTIES OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE OR OF NON-\nINFRINGEMENT. See the License for the specific language governing rights and\nlimitations under the License.\n\nThe Original Software (as defined in the License) is CID font code that was\ndeveloped by Silicon Graphics, Inc. Those portions of the Subject Software\n(as defined in the License) that were created by Silicon Graphics, Inc. are\nCopyright (c) 1994-1999 Silicon Graphics, Inc. All Rights Reserved.", + "json": "sgi-cid-1.0.json", + "yaml": "sgi-cid-1.0.yml", + "html": "sgi-cid-1.0.html", + "license": "sgi-cid-1.0.LICENSE" + }, + { + "license_key": "sgi-freeb-1.1", + "category": "Permissive", + "spdx_license_key": "SGI-B-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SGI FREE SOFTWARE LICENSE B (Version 1.1 [02/22/2000]) \n2.License Grant and Restrictions.\n2.1.SGI License Grant. Subject to the terms of this License and any third party intellectual property claims, for the duration of intellectual property protections inherent in the Original Code, SGI hereby grants Recipient a worldwide, royalty-free, non-exclusive license, to do the following: (i) under copyrights Licensable by SGI, to reproduce, distribute, create derivative works from, and, to the extent applicable, display and perform the Original Code and/or any Modifications provided by SGI alone and/or as part of a Larger Work; and (ii) under any Licensable Patents, to make, have made, use, sell, offer for sale, import and/or otherwise transfer the Original Code and/or any Modifications provided by SGI. Recipient accepts the terms and conditions of this License by undertaking any of the aforementioned actions. The patent license shall apply to the Covered Code if, at the time any related Modification is added, such addition of the Modification causes such combination to be covered by the Licensed Patents. The patent license in Section 2.1(ii) shall not apply to any other combinations that include the Modification. No patent license is provided under SGI Patents for infringements of SGI Patents by Modifications not provided by SGI or combinations of Original Code and Modifications not provided by SGI. \n2.2.Recipient License Grant. Subject to the terms of this License and any third party intellectual property claims, Recipient hereby grants SGI and any other Recipients a worldwide, royalty-free, non-exclusive license, under any Recipient Patents, to make, have made, use, sell, offer for sale, import and/or otherwise transfer the Original Code and/or any Modifications provided by SGI.\n2.3.No License For Hardware Implementations. The licenses granted in Section 2.1 and 2.2 are not applicable to implementation in Hardware of the algorithms embodied in the Original Code or any Modifications provided by SGI .\n3.Redistributions. \n3.1.Retention of Notice/Copy of License. The Notice set forth in Exhibit A, below, must be conspicuously retained or included in any and all redistributions of Covered Code. For distributions of the Covered Code in source code form, the Notice must appear in every file that can include a text comments field; in executable form, the Notice and a copy of this License must appear in related documentation or collateral where the Recipient.s rights relating to Covered Code are described. Any Additional Notice Provisions which actually appears in the Original Code must also be retained or included in any and all redistributions of Covered Code.\n3.2.Alternative License. Provided that Recipient is in compliance with the terms of this License, Recipient may, so long as without derogation of any of SGI.s rights in and to the Original Code, distribute the source code and/or executable version(s) of Covered Code under (1) this License; (2) a license identical to this License but for only such changes as are necessary in order to clarify Recipient.s role as licensor of Modifications; and/or (3) a license of Recipient.s choosing, containing terms different from this License, provided that the license terms include this Section 3 and Sections 4, 6, 7, 10, 12, and 13, which terms may not be modified or superseded by any other terms of such license. If Recipient elects to use any license other than this License, Recipient must make it absolutely clear that any of its terms which differ from this License are offered by Recipient alone, and not by SGI. It is emphasized that this License is a limited license, and, regardless of the license form employed by Recipient in accordance with this Section 3.2, Recipient may relicense only such rights, in Original Code and Modifications by SGI, as it has actually been granted by SGI in this License.\n3.3.Indemnity. Recipient hereby agrees to indemnify SGI for any liability incurred by SGI as a result of any such alternative license terms Recipient offers.\n4.Termination. This License and the rights granted hereunder will terminate automatically if Recipient breaches any term herein and fails to cure such breach within 30 days thereof. Any sublicense to the Covered Code that is properly granted shall survive any termination of this License, absent termination by the terms of such sublicense. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive.\n5.No Trademark Or Other Rights. This License does not grant any rights to: (i) any software apart from the Covered Code, nor shall any other rights or licenses not expressly granted hereunder arise by implication, estoppel or otherwise with respect to the Covered Code; (ii) any trade name, trademark or service mark whatsoever, including without limitation any related right for purposes of endorsement or promotion of products derived from the Covered Code, without prior written permission of SGI; or (iii) any title to or ownership of the Original Code, which shall at all times remains with SGI. All rights in the Original Code not expressly granted under this License are reserved. \n6.Compliance with Laws; Non-Infringement. There are various worldwide laws, regulations, and executive orders applicable to dispositions of Covered Code, including without limitation export, re-export, and import control laws, regulations, and executive orders, of the U.S. government and other countries, and Recipient is reminded it is obliged to obey such laws, regulations, and executive orders. Recipient may not distribute Covered Code that (i) in any way infringes (directly or contributorily) any intellectual property rights of any kind of any other person or entity or (ii) breaches any representation or warranty, express, implied or statutory, to which, under any applicable law, it might be deemed to have been subject.\n7.Claims of Infringement. If Recipient learns of any third party claim that any disposition of Covered Code and/or functionality wholly or partially infringes the third party's intellectual property rights, Recipient will promptly notify SGI of such claim.\n8.Versions of the License. SGI may publish revised and/or new versions of the License from time to time, each with a distinguishing version number. Once Covered Code has been published under a particular version of the License, Recipient may, for the duration of the license, continue to use it under the terms of that version, or choose to use such Covered Code under the terms of any subsequent version published by SGI. Subject to the provisions of Sections 3 and 4 of this License, only SGI may modify the terms applicable to Covered Code created under this License.\n9.DISCLAIMER OF WARRANTY. COVERED CODE IS PROVIDED \"AS IS.\" ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS ARE DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. SGI ASSUMES NO RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE. SHOULD THE SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, SGI ASSUMES NO COST OR LIABILITY FOR SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY IS AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT SUBJECT TO THIS DISCLAIMER.\n10.LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES NOR LEGAL THEORY, WHETHER TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY), CONTRACT, OR OTHERWISE, SHALL SGI OR ANY SGI LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SGI's NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO RECIPIENT.\n11.Indemnity. Recipient shall be solely responsible for damages arising, directly or indirectly, out of its utilization of rights under this License. Recipient will defend, indemnify and hold harmless Silicon Graphics, Inc. from and against any loss, liability, damages, costs or expenses (including the payment of reasonable attorneys fees) arising out of Recipient's use, modification, reproduction and distribution of the Covered Code or out of any representation or warranty made by Recipient.\n12.U.S. Government End Users. The Covered Code is a \"commercial item\" consisting of \"commercial computer software\" as such terms are defined in title 48 of the Code of Federal Regulations and all U.S. Government End Users acquire only the rights set forth in this License and are subject to the terms of this License.\n13.Miscellaneous. This License represents the complete agreement concerning the its subject matter. If any provision of this License is held to be unenforceable, such provision shall be reformed so as to achieve as nearly as possible the same legal and economic effect as the original provision and the remainder of this License will remain in effect. This License shall be governed by and construed in accordance with the laws of the United States and the State of California as applied to agreements entered into and to be performed entirely within California between California residents. Any litigation relating to this License shall be subject to the exclusive jurisdiction of the Federal Courts of the Northern District of California (or, absent subject matter jurisdiction in such courts, the courts of the State of California), with venue lying exclusively in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License.\nExhibit A\nLicense Applicability. Except to the extent portions of this file are made subject to an alternative license as permitted in the SGI Free Software License B, Version 1.1 (the \"License\"), the contents of this file are subject only to the provisions of the License. You may not use this file except in compliance with the License. You may obtain a copy of the License at Silicon Graphics, Inc., attn: Legal Services, 1600 Amphitheatre Parkway, Mountain View, CA 94043-1351, or at: \nhttp://oss.sgi.com/projects/FreeB\nNote that, as provided in the License, the Software is distributed on an \"AS IS\" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.\nOriginal Code. The Original Code is: [name of software, version number, and release date], developed by Silicon Graphics, Inc. The Original Code is Copyright (c) [dates of first publication, as appearing in the Notice in the Original Code] Silicon Graphics, Inc. Copyright in any portions created by third parties is as indicated elsewhere herein. All Rights Reserved.\nAdditional Notice Provisions: [such additional provisions, if any, as appear in the Notice in the Original Code under the heading \"Additional Notice Provisions\"]", + "json": "sgi-freeb-1.1.json", + "yaml": "sgi-freeb-1.1.yml", + "html": "sgi-freeb-1.1.html", + "license": "sgi-freeb-1.1.LICENSE" + }, + { + "license_key": "sgi-freeb-2.0", + "category": "Permissive", + "spdx_license_key": "SGI-B-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice including the dates of first publication and\neither this permission notice or a reference to\nhttp://oss.sgi.com/projects/FreeB/ shall be included in all copies or\nsubstantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR\nTHE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nExcept as contained in this notice, the name of Silicon Graphics, Inc.\nshall not be used in advertising or otherwise to promote the sale, use\nor other dealings in this Software without prior written authorization\nfrom Silicon Graphics, Inc.", + "json": "sgi-freeb-2.0.json", + "yaml": "sgi-freeb-2.0.yml", + "html": "sgi-freeb-2.0.html", + "license": "sgi-freeb-2.0.LICENSE" + }, + { + "license_key": "sgi-fslb-1.0", + "category": "Free Restricted", + "spdx_license_key": "SGI-B-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SGI FREE SOFTWARE LICENSE B\n(Version 1.0 1/25/2000)\n\n 1. Definitions.\n 1.1 \"Additional Notice Provisions\" means such additional provisions as appear in the Notice in Original Code under the heading \"Additional Notice Provisions.\"\n 1.2 \"API\" means an application programming interface established by SGI in conjunction with the Original Code.\n 1.3 \"Covered Code\" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof.\n 1.4 \"Hardware\" means any physical device that accepts input, processes input, stores the results of processing, and/or provides output.\n 1.5 \"Larger Work\" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License.\n 1.6 \"Licensable\" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein.\n 1.7 \"License\" means this document.\n 1.8 \"Modifications\" means any addition to the substance or structure of the Original Code and/or any addition to or deletion from previous Modifications. When Covered Code is released as a series of files, a Modification is:\n A. Any addition to the contents of a file containing Original Code and/or any addition to or deletion from previous Modifications.\n B. Any new file that contains any part of the Original Code or previous Modifications.\n 1.9 \"Notice\" means any notice in Original Code or Covered Code, as required by and in compliance with this License.\n 1.10 \"Original Code\" means source code of computer software code which is described in the source code Notice required by Exhibit A as Original Code, and updates and error corrections specifically thereto.\n 1.11 \"Recipient\" means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 8. For legal entities, \"Recipient\" includes any entity which controls, is controlled by, or is under common control with Recipient. For purposes of this definition, \"control\" of an entity means (a) the power, direct or indirect, to direct or manage such entity, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity.\n 1.12 SGI\" means Silicon Graphics, Inc.\n 2. License Grant and Restrictions.\n 2.1 License Grant. Subject to the provisions of this License and any third party intellectual property claims, for the duration of intellectual property protections inherent in the Original Code, SGI hereby grants Recipient a worldwide, royalty-free, non-exclusive license, to do the following: (i) under copyrights Licensable by SGI, to reproduce, distribute, create derivative works from, and, to the extent applicable, display and perform the Original Code alone and/or as part of a Larger Work; and (ii) under any patent claims Licensable by SGI and embodied in the Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code. Recipient accepts the terms and conditions of this License by undertaking any of the aforementioned actions.\n 2.2 Restriction on Patent License. Notwithstanding the provisions of Section 2.1(ii), no patent license is granted: 1) separate from the Original Code; nor 2) for infringements caused by (i) modification of the Original Code, or (ii) the combination of the Original Code with other software or Hardware.\n 2.3 No License For Hardware Implementations. The licenses granted in Section 2.1 are not applicable to implementation in Hardware of the algorithms embodied in the Original Code.\n 2.4 Modifications License and API Compliance. Modifications are only licensed under Section 2.1(i) to the extent such Modifications are fully compliant with any API as may be identified in Additional Notice Provisions as appear in the Original Code.\n 3. Redistributions.\n A. Retention of Notice/Copy of License. The Notice set forth in Exhibit A, below, must be conspicuously retained or included in any and all redistributions of Covered Code. For distributions of the Covered Code in source code form, the Notice must appear in every file that can include a text comments field; in executable form, the Notice and a copy of this License must appear in related documentation or collateral where the Recipient's rights relating to Covered Code are described. Any Additional Notice Provisions which actually appears in the Original Code must also be retained or included in any and all redistributions of Covered Code.\n B. Alternative License. Provided that Recipient is in compliance with the terms of this License, Recipient may distribute the source code and/or executable version(s) of Covered Code under (1) this License; (2) a license identical to this License but for only such changes as are necessary in order to clarify Recipient's role as licensor of Modifications, without derogation of any of SGI's rights; and/or (3) a license of Recipient's choosing, containing terms different from this License, provided that the license terms include this Section 3 and Sections 4, 6, 7, 10, 12, and 13, which terms may not be modified or superseded by any other terms of such license. If Recipient elects to use any license other than this License, Recipient must make it absolutely clear that any of its terms which differ from this License are offered by Recipient alone, and not by SGI.\n C. Indemnity. Recipient hereby agrees to indemnify SGI for any liability incurred by SGI as a result of any such alternative license terms Recipient offers.\n 4. Termination. This License and the rights granted hereunder will terminate automatically if Recipient breaches any term herein and fails to cure such breach within 30 days thereof. Any sublicense to the Covered Code that is properly granted shall survive any termination of this License, absent termination by the terms of such sublicense. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive.\n 5. No Trademark Or Other Rights. This License does not grant any rights to: (i) any software apart from the Covered Code, nor shall any other rights or licenses not expressly granted hereunder arise by implication, estoppel or otherwise with respect to the Covered Code; (ii) any trade name, trademark or service mark whatsoever, including without limitation any related right for purposes of endorsement or promotion of products derived from the Covered Code, without prior written permission of SGI; or (iii) any title to or ownership of the Original Code, which shall at all times remains with SGI. All rights in the Original Code not expressly granted under this License are reserved.\n 6. Compliance with Laws; Non-Infringement. Recipient hereby assures that it shall comply with all applicable laws, regulations, and executive orders, in connection with any and all dispositions of Covered Code, including but not limited to, all export, re-export, and import control laws, regulations, and executive orders, of the U.S. government and other countries. Recipient may not distribute Covered Code that (i) in any way infringes (directly or contributorily) the rights (including patent, copyright, trade secret, trademark or other intellectual property rights of any kind) of any other person or entity or (ii) breaches any representation or warranty, express, implied or statutory, to which, under any applicable law, it might be deemed to have been subject.\n 7. Claims of Infringement. If Recipient learns of any third party claim that any disposition of Covered Code and/or functionality wholly or partially infringes the third party's intellectual property rights, Recipient will promptly notify SGI of such claim.\n 8. Versions of the License. SGI may publish revised and/or new versions of the License from time to time, each with a distinguishing version number. Once Covered Code has been published under a particular version of the License, Recipient may, for the duration of the license, continue to use it under the terms of that version, or choose to use such Covered Code under the terms of any subsequent version published by SGI. Subject to the provisions of Sections 3 and 4 of this License, only SGI may modify the terms applicable to Covered Code created under this License.\n 9. DISCLAIMER OF WARRANTY. COVERED CODE IS PROVIDED \"AS IS.\" ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS ARE DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. SGI ASSUMES NO RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE. SHOULD THE SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, SGI ASSUMES NO COST OR LIABILITY FOR SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY IS AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT SUBJECT TO THIS DISCLAIMER.\n 10. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES NOR LEGAL THEORY, WHETHER TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY), CONTRACT, OR OTHERWISE, SHALL SGI OR ANY SGI LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SGI's NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO RECIPIENT.\n 11. Indemnity. Recipient shall be solely responsible for damages arising, directly or indirectly, out of its utilization of rights under this License. Recipient will defend, indemnify and hold harmless Silicon Graphics, Inc. from and against any loss, liability, damages, costs or expenses (including the payment of reasonable attorneys fees) arising out of Recipient's use, modification, reproduction and distribution of the Covered Code or out of any representation or warranty made by Recipient.\n 12. U.S. Government End Users. The Covered Code is a \"commercial item\" consisting of \"commercial computer software\" as such terms are defined in title 48 of the Code of Federal Regulations and all U.S. Government End Users acquire only the rights set forth in this License and are subject to the terms of this License.\n 13. Miscellaneous. This License represents the complete agreement concerning the its subject matter. If any provision of this License is held to be unenforceable, such provision shall be reformed so as to achieve as nearly as possible the same legal and economic effect as the original provision and the remainder of this License will remain in effect. This License shall be governed by and construed in accordance with the laws of the United States and the State of California as applied to agreements entered into and to be performed entirely within California between California residents. Any litigation relating to this License shall be subject to the exclusive jurisdiction of the Federal Courts of the Northern District of California (or, absent subject matter jurisdiction in such courts, the courts of the State of California), with venue lying exclusively in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.", + "json": "sgi-fslb-1.0.json", + "yaml": "sgi-fslb-1.0.yml", + "html": "sgi-fslb-1.0.html", + "license": "sgi-fslb-1.0.LICENSE" + }, + { + "license_key": "sgi-glx-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sgi-glx-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "GLX PUBLIC LICENSE Version 1.0 2/11/99 License\n\nSubject to any third party claims, Silicon Graphics, Inc. (\"SGI\") hereby\ngrants permission to Recipient (defined below), under Recipient's copyrights\nin the Original Software (defined below), to use, copy, modify, merge, pub-\nlish, distribute, sublicense and/or sell copies of Subject Software (defined\nbelow), and to permit persons to whom the Subject Software is furnished in\naccordance with this License to do the same, subject to all of the following\nterms and conditions, which Recipient accepts by engaging in any such use,\ncopying, modifying, merging, publishing, distributing, sublicensing or sell-\ning:\n\n1. Definitions.\n\n (a) \"Original Software\" means source code of computer software code\n which is described in Exhibit A as Original Software.\n\n (b) \"Modifications\" means any addition to or deletion from the sub-\n stance or structure of either the Original Software or any previous\n Modifications. When Subject Software is released as a series of\n files, a Modification means (i) any addition to or deletion from\n the contents of a file containing Original Software or previous\n Modifications and (ii) any new file that contains any part of the\n Original Code or previous Modifications.\n\n (c) \"Subject Software\" means the Original Software or Modifications\n or the combination of the Original Software and Modifications, or\n portions of any of the foregoing.\n\n (d) \"Recipient\" means an individual or a legal entity exercising\n rights under, and complying with all of the terms of, this License.\n For legal entities, \"Recipient\" includes any entity which controls,\n is controlled by, or is under common control with Recipient. For\n purposes of this definition, \"control\" of an entity means (a) the\n power, direct or indirect, to direct or manage such entity, or (b)\n ownership of fifty percent (50%) or more of the outstanding shares\n or beneficial ownership of such entity.\n\n2. Redistribution of Source Code Subject to These Terms. Redistributions of\nSubject Software in source code form must retain the notice set forth in\nExhibit A, below, in every file. A copy of this License must be included in\nany documentation for such Subject Software where the recipients' rights\nrelating to Subject Software are described. Recipient may distribute the\nsource code version of Subject Software under a license of Recipient's\nchoice, which may contain terms different from this License, provided that\n(i) Recipient is in compliance with the terms of this License, and (ii) the\nlicense terms include this Section 2 and Sections 3, 4, 7, 8, 10, 12 and 13\nof this License, which terms may not be modified or superseded by any other\nterms of such license. If Recipient distributes the source code version under\na different license Recipient must make it absolutely clear that any terms\nwhich differ from this License are offered by Recipient alone, not by SGI.\nRecipient hereby agrees to indemnify SGI for any liability incurred by SGI as\na result of any such terms Recipient offers.\n\n3. Redistribution in Executable Form. The notice set forth in Exhibit A must\nbe conspicuously included in any notice in an executable version of Subject\nSoftware, related documentation or collateral in which Recipient describes\nthe user's rights relating to the Subject Software. Recipient may distribute\nthe executable version of Subject Software under a license of Recipient's\nchoice, which may contain terms different from this License, provided that\n(i) Recipient is in compliance with the terms of this License, and (ii) the\nlicense terms include this Section 3 and Sections 4, 7, 8, 10, 12 and 13 of\nthis License, which terms may not be modified or superseded by any other\nterms of such license. If Recipient distributes the executable version under\na different license Recipient must make it absolutely clear that any terms\nwhich differ from this License are offered by Recipient alone, not by SGI.\nRecipient hereby agrees to indemnify SGI for any liability incurred by SGI as\na result of any such terms Recipient offers.\n\n4. Termination. This License and the rights granted hereunder will terminate\nautomatically if Recipient fails to comply with terms herein and fails to\ncure such breach within 30 days of the breach. Any sublicense to the Subject\nSoftware which is properly granted shall survive any termination of this\nLicense absent termination by the terms of such sublicense. Provisions which,\nby their nature, must remain in effect beyond the termination of this License\nshall survive.\n\n5. No Trademark Rights. This License does not grant any rights to use any\ntrade name, trademark or service mark whatsoever. No trade name, trademark or\nservice mark of SGI may be used to endorse or promote products derived from\nthe Subject Software without prior written permission of SGI.\n\n6. No Other Rights. This License does not grant any rights with respect to\nthe OpenGL API or to any software or hardware implementation thereof or to\nany other software whatsoever, nor shall any other rights or licenses not\nexpressly granted hereunder arise by implication, estoppel or otherwise with\nrespect to the Subject Software. Title to and ownership of the Original Soft-\nware at all times remains with SGI. All rights in the Original Software not\nexpressly granted under this License are reserved.\n\n7. Compliance with Laws; Non-Infringement. Recipient shall comply with all\napplicable laws and regulations in connection with use and distribution of\nthe Subject Software, including but not limited to, all export and import\ncontrol laws and regulations of the U.S. government and other countries.\nRecipient may not distribute Subject Software that (i) in any way infringes\n(directly or contributorily) the rights (including patent, copyright, trade\nsecret, trademark or other intellectual property rights of any kind) of any\nother person or entity or (ii) breaches any representation or warranty,\nexpress, implied or statutory, which under any applicable law it might be\ndeemed to have been distributed.\n\n8. Claims of Infringement. If Recipient at any time has knowledge of any one\nor more third party claims that reproduction, modification, use, distribu-\ntion, import or sale of Subject Software (including particular functionality\nor code incorporated in Subject Software) infringes the third party's intel-\nlectual property rights, Recipient must place in a well-identified web page\nbearing the title \"LEGAL\" a description of each such claim and a description\nof the party making each such claim in sufficient detail that a user of the\nSubject Software will know whom to contact regarding the claim. Also, upon\ngaining such knowledge of any such claim, Recipient must conspicuously\ninclude the URL for such web page in the Exhibit A notice required under Sec-\ntions 2 and 3, above, and in the text of any related documentation, license\nagreement or collateral in which Recipient describes end user's rights relat-\ning to the Subject Software. If Recipient obtains such knowledge after it\nmakes Subject Software available to any other person or entity, Recipient\nshall take other steps (such as notifying appropriate mailing lists or news-\ngroups) reasonably calculated to inform those who received the Subject Soft-\nware that new knowledge has been obtained.\n\n9. DISCLAIMER OF WARRANTY. SUBJECT SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS,\nWITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT\nLIMITATION, WARRANTIES THAT THE SUBJECT SOFTWARE IS FREE OF DEFECTS, MER-\nCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON- INFRINGING. SGI ASSUMES NO\nRISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE. SHOULD ANY SOFTWARE\nPROVE DEFECTIVE IN ANY RESPECT, SGI ASSUMES NO COST OR LIABILITY FOR ANY SER-\nVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN\nESSENTIAL PART OF THIS LICENSE. NO USE OF ANY SUBJECT SOFTWARE IS AUTHORIZED\nHEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n10. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THE-\nORY, WHETHER TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIA-\nBILITY), CONTRACT, OR OTHERWISE, SHALL SGI OR ANY SGI LICENSOR BE LIABLE FOR\nANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY\nCHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK\nSTOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\nCOMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF\nTHE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY\nTO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SGI's NEGLIGENCE TO\nTHE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO\nNOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES,\nSO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO RECIPIENT.\n\n11. Indemnity. Recipient shall be solely responsible for damages arising,\ndirectly or indirectly, out of its utilization of rights under this License.\nRecipient will defend, indemnify and hold harmless Silicon Graphics, Inc.\nfrom and against any loss, liability, damages, costs or expenses (including\nthe payment of reasonable attorneys fees) arising out of Recipient's use,\nmodification, reproduction and distribution of the Subject Software or out of\nany representation or warranty made by Recipient.\n\n12. U.S. Government End Users. The Subject Software is a \"commercial item\"\nconsisting of \"commercial computer software\" as such terms are defined in\ntitle 48 of the Code of Federal Regulations and all U.S. Government End\nUsers acquire only the rights set forth in this License and are subject to\nthe terms of this License.\n\n13. Miscellaneous. This License represents the complete agreement concerning\nsubject matter hereof. If any provision of this License is held to be unen-\nforceable, such provision shall be reformed so as to achieve as nearly as\npossible the same economic effect as the original provision and the remainder\nof this License will remain in effect. This License shall be governed by and\nconstrued in accordance with the laws of the United States and the State of\nCalifornia as applied to agreements entered into and to be performed entirely\nwithin California between California residents. Any litigation relating to\nthis License shall be subject to the exclusive jurisdiction of the Federal\nCourts of the Northern District of California (or, absent subject matter\njurisdiction in such courts, the courts of the State of California), with\nvenue lying exclusively in Santa Clara County, California, with the losing\nparty responsible for costs, including without limitation, court costs and\nreasonable attorneys fees and expenses. The application of the United Nations\nConvention on Contracts for the International Sale of Goods is expressly\nexcluded. Any law or regulation which provides that the language of a con-\ntract shall be construed against the drafter shall not apply to this License.\n\nExhibit A\n\nThe contents of this file are subject to Sections 2, 3, 4, 7, 8, 10, 12 and\n13 of the GLX Public License Version 1.0 (the \"License\"). You may not use\nthis file except in compliance with those sections of the License. You may\nobtain a copy of the License at Silicon Graphics, Inc., attn: Legal Services,\n2011 N. Shoreline Blvd., Mountain View, CA 94043 or at\nhttp://www.sgi.com/software/opensource/glx/license.html.\n\nSoftware distributed under the License is distributed on an \"AS IS\" basis.\nALL WARRANTIES ARE DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED\nWARRANTIES OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE OR OF NON-\nINFRINGEMENT. See the License for the specific language governing rights and\nlimitations under the License.\n\nThe Original Software is GLX version 1.2 source code, released February,\n1999. The developer of the Original Software is Silicon Graphics, Inc. Those\nportions of the Subject Software created by Silicon Graphics, Inc. are Copy-\nright (c) 1991-9 Silicon Graphics, Inc. All Rights Reserved.", + "json": "sgi-glx-1.0.json", + "yaml": "sgi-glx-1.0.yml", + "html": "sgi-glx-1.0.html", + "license": "sgi-glx-1.0.LICENSE" + }, + { + "license_key": "sglib", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sglib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Basically, I only care that you do not remove the Copyright notice from the\nsource code when using Sglib.\n\nMore precisely: you can use Sglib or its derivative forms (under the condition\nthat the Copyright notice is preserved) in any project, whether commercial or\nnot, free of charges. In particular, you can use Sglib under the terms of any\nlicense defined as an open source license by the Open Source Initiative\n(see http://www.opensource.org/). This includes most common open source licenses\nsuch as the BSD license and GNU GPL.\n\nIf you need to use sglib under any particular license conditions, contact the\nauthor.", + "json": "sglib.json", + "yaml": "sglib.yml", + "html": "sglib.html", + "license": "sglib.LICENSE" + }, + { + "license_key": "shavlik-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-shavlik-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Shavlik Technologies, LLC\nEND USER LICENSE AGREEMENT\nCAREFULLY READ THE FOLLOWING TERMS AND CONDITIONS BEFORE LOADING THE SOFTWARE. THIS \nAGREEMENT GOVERNS THE USE OF THE PRODUCT (AS DEFINED BELOW). BY CLICKING \"I ACCEPT\" \nBELOW, OR BY INSTALLING, COPYING, OR OTHERWISE USING THE PRODUCT, YOU ARE SIGNING THIS \nAGREEMENT, THEREBY BECOMING BOUND BY ITS TERMS. BY INDICATING YOUR AGREEMENT, YOU ALSO \nREPRESENT AND WARRANT THAT YOU ARE A DULY AUTHORIZED REPRESENTATIVE OF THE ENTITY THAT \nHAS PURCHASED THE SOFTWARE AND THAT YOU HAVE THE RIGHT AND AUTHORITY TO ENTER INTO \nTHIS AGREEMENT ON THE ENTITY\u2019S BEHALF. IF YOU DO NOT AGREE WITH THIS AGREEMENT, THEN \nCLICK \"I DO NOT ACCEPT\" BELOW OR DO NOT INSTALL, COPY OR USE THE PRODUCT.\n\n1. License.\nSubject to the terms and conditions of this Agreement, Shavlik Technologies, LLC (\"Shavlik\") grants to \nthe individual or entity installing this product (\"Licensee\"), a non-exclusive, non-transferable license to \nuse the software, together with any updates and data components provided to Licensee under a current \nSoftware Support Services Agreement, and any accompanying documentation provided by Shavlik \n(collectively, the \"Product\"), solely for Licensee\u2019s internal business purposes and only in as many copies \nand/or for the number of virtual or physical workstations, PCs, servers, and/or other devices scanned, \nremediated, or reported on using the Software (\"Seats\") as authorized by Shavlik as part of Licensee\u2019s \npurchase. The Product may require a maintainable data component. Licensee shall have access to the \nmaintainable data component so long as Licensee purchases and maintains a current Software Support \nServices Agreement.\n\n2. Limitations on Use.\nLicensee shall not, nor cause or permit any other person to: (i) reverse engineer, translate, disassemble, \ndecompile, sell, rent, lease, manufacture, adapt, create derivative works from, or otherwise modify or \ndistribute the Product or any part thereof; (ii) copy, in whole or in part, the Product with the exception \nof one copy of the Product for backup or archival purposes; (iii) use the Product to provide consulting \nor other services to third parties; or (iv) delete any copyright, trademark, patent or other notices of \nproprietary rights of Shavlik as they appear anywhere in or on the Product.\n\n3. Proprietary Rights.\nAll intellectual property rights including trademarks, service marks, patents, copyrights, trade secrets, \nand other proprietary rights in or related to the Product is and will remain the property of Shavlik or its \nlicensors, whether or not specifically recognized or protected under local law. Product may include third \nparty products. Please read our accompanying documentation for further information.4. No Warranty.\nShavlik does not warrant that the functions contained in the Product will meet Licensee\u2019s requirements \nor that operation of the program will be uninterrupted or error-free. The entire risk as to the results \nand performance of the Product is assumed by Licensee. THE PRODUCT IS FURNISHED \"AS IS\" \nWITHOUT ANY WARRANTY OF ANY KIND, AND SHAVLIK AND ITS LICENSORS HEREBY DISCLAIM \nALL WARRANTIES, EXPRESS, IMPLIED OR STATUTORY IN RESPECT OF THE PRODUCT INCLUDING, \nWITHOUT LIMITATION, ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A \nPARTICULAR PURPOSE, AND ANY WARRANTIES AS TO NON-INFRINGEMENT. SOME STATES AND \nCOUNTRIES DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SOME OF THE ABOVE \nEXCLUSION MAY NOT APPLY TO LICENSEE. THIS WARRANTY GIVES LICENSEE SPECIFIC LEGAL \nRIGHTS. LICENSEE MAY HAVE OTHER RIGHTS WHICH VARY BY STATE OR COUNTRY.\n\n5. LIMITATION OF LIABILITY.\nIN NO EVENT SHALL SHAVLIK OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT, \nOR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL, EXEMPLARY OR OTHER \nDAMAGES HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF \nTHE USE OF OR INABILITY TO USE THE PRODUCT EVEN IF SHAVLIK HAS BEEN ADVISED OF THE \nPOSSIBILITY OF SUCH LOSS OR DAMAGES. IN NO EVENT SHALL SHAVLIK\u2019S TOTAL LIABILITY TO \nLICENSEE, WHETHER IN CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, EXCEED \nTHE AMOUNT OF ANY LICENSE FEE PAID BY LICENSEE TO SHAVLIK FOR THE PRODUCT.\n\n6. Term and Termination.\nThis Agreement is effective upon installation of the Product and will remain in effect until terminated. \nShavlik may terminate this Agreement immediately if Licensee fails to comply with any provision of this \nAgreement. Upon termination, Licensee agrees to destroy the original and all copies of the Product in \nits possession or control, and erase all copies residing on any computer equipment. Sections 3, 4, 5, 6, 7, \nand 9 shall survive termination of this Agreement.\n\n7. Export Control and Government Use.\nLicensee agrees to comply with all applicable United States export control laws and regulations, as \namended from time to time, including without limitation, the laws and regulations administered by the \nUnited States Department of Commerce and the United States Department of State. Licensee shall \nnot export, import or transfer the Product contrary to U.S. or other applicable laws, whether directly or \nindirectly, and will not cause, approve or otherwise facilitate others such as agents or any third parties \nin doing so. Any Product acquired by or on behalf of a unit or agency of the United States Government \nis \"commercial computer software\" or \"commercial computer software documentation\" and, absent a \nwritten agreement to the contrary, the Government\u2019s rights with respect to such software or \ndocumentation are limited by the terms of this Agreement, pursuant to FAR \u00a7 12.212(a) and its successor \nregulations and/or DFARS \u00a7 227.7202-1(a) and its successor regulations, as applicable.\n\n8. Open Source Software.\nThe Product includes or may include some software programs that are licensed (or sublicensed) to the \nuser under the GNU General Public License (GPL) or other similar software licenses (\"Free Software \nLicenses\") which, among other rights, permit the user to copy, modify and redistribute certain programs, \nor portions thereof, and have access to the source code. The GPL requires that for any software covered \nunder the GPL, which is distributed to someone in an executable binary format that the source code also \nbe made available to those users. For any such software, the source code shall be made available to you \nupon request.\n\n9. General.\nThis Agreement and any dispute arising from or relating to it shall be governed by and construed \nand enforced in accordance with Minnesota law, without reference to conflicts of laws principles, and \nexcluding the UN Convention on Contracts for the International Sale of Goods. Any legal action or \nproceeding shall be instituted in a state or federal court in Hennepin County, Minnesota, USA. Any \nwaiver of or modification to the terms of this Agreement will not be effective unless executed in writing \nand signed by Shavlik. If any provision of this Agreement is held to be unenforceable, in whole or in \npart, such holding shall not affect the validity of the other provisions of this Agreement. Licensee may \nnot assign this Agreement or any associated transactions without the written consent of Shavlik. This \nAgreement constitutes the complete agreement between the parties and supersedes all prior or \ncontemporaneous agreements or representations, written or oral, concerning the subject matter of this \nAgreement including any purchase order or ordering document.\n\nShould you have any questions concerning the Product or this License, contact Shavlik Technologies, \nLLC, 2665 Long Lake Road, Suite 400, Roseville, Minnesota 55113 Telephone: +1 (800) 690 6911 or +1 (651) \n426-6624; fax: (651) 426-3345; e-mail: info@shavlik.com\nSHAVLIK EULA #H4Q2 VERSION 2.3", + "json": "shavlik-eula.json", + "yaml": "shavlik-eula.yml", + "html": "shavlik-eula.html", + "license": "shavlik-eula.LICENSE" + }, + { + "license_key": "shital-shah", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-shital-shah", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You may freely copy, store, distribute and use any material published on this\nsite free of charge and without my explicit permission, provided anyone else\ndoesn't owns copyright for it or no notice has been put explicitly stating\notherwise. All programs available on this website, unless stated otherwise, can\nbe freely copied, stored or redistributed with or without your own custom\nalterations. You are not required to take my explicit permission or retain\noriginal copyright notice. If you are redistributing any other material except\nprograms available on this website, you may not alter or distort the content\nand you must acknowledge the original copyright notice in your redistribution.\n\nTerms of Use\nYou use any information, facts, opinions, views, material or programs available\non this website at completely your risks. There are no explicit or implicit \nwarrenties of any kind for any information, facts, opinions, views, material or \nprograms that are expressed or available on or through this website. You \ncompletely assume any and all risks and associated liabilities that might result \nby usage of any information, facts, opinions, views, material or programs \navailable on this website.\n\nDisclaimer\nThe views expressed on this website are solely mine and does not represent that \nof my employer or my clients.This is my official personaebsite. Most content and \nprograms available on this website are original and authored by myself, unless \notherwise noted. If you feel credit due to someone is not given or if any \ncopyright laws are violated or object to certain content on this website, please\nfeel free to write to me and let me know.", + "json": "shital-shah.json", + "yaml": "shital-shah.yml", + "html": "shital-shah.html", + "license": "shital-shah.LICENSE" + }, + { + "license_key": "shl-0.5", + "category": "Permissive", + "spdx_license_key": "SHL-0.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SOLDERPAD HARDWARE LICENSE version 0.5\n\nThis license is based closely on the Apache License Version 2.0, but is not approved or endorsed by the Apache Foundation. A copy of the non-modified Apache License 2.0 can be found at http://www.apache.org/licenses/LICENSE-2.0.\n\n\n\nAs this license is not currently OSI or FSF approved, the Licensor permits any Work licensed under this License, at the option of the Licensee, to be treated as licensed under the Apache License Version 2.0 (which is so approved).\n\n\n\nThis License is licensed under the terms of this License and in particular clause 7 below (Disclaimer of Warranties) applies in relation to its use.\n\n\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n\n\n1. Definitions.\n\n\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\n\n\"Licensor\" shall mean the Rights owner or entity authorized by the Rights owner that is granting the License.\n\n\n\n\"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.\n\n\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\n\n\"Rights\" means copyright and any similar right including design right (whether registered or unregistered), semiconductor topography (mask) rights and database extraction rights (but excluding Patents and Trademarks).\n\n\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to source code, net lists, board layouts, CAD files, documentation source, and configuration files.\n\n\n\n\"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, the instantiation of a hardware design and conversions to other media types, including intermediate forms such as bytecodes, FPGA bitstreams, artwork and semiconductor topographies (mask works).\n\n\n\n\"Work\" shall mean the work of authorship, whether in Source form or other Object form, made available under the License, as indicated by a Rights notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\n\n\"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) or physically connect to or interoperate with the interfaces of, the Work and Derivative Works thereof.\n\n\n\n\"Contribution\" shall mean any design or 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 Rights owner or by an individual or Legal Entity authorized to submit on behalf of the Rights 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 Rights owner as \"Not a Contribution.\"\n\n\n\n\"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.\n\n\n\n2. Grant of 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 license under the Rights to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form and do anything in relation to the Work as if the Rights did not exist.\n\n\n\n3. 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.\n\n\n\n4. 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:\n\n\n\nYou must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n\n\nYou must cause any modified files to carry prominent notices stating that You changed the files; and\n\n\n\nYou 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\n\n\n\nIf 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.\n\n\n\n5. 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.\n\n\n\n6. 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.\n\n\n\n7. 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.\n\n\n\n8. 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.\n\n\n\n9. 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.\n\n\n\nEND OF TERMS AND CONDITIONS\n\n\n\nAPPENDIX: How to apply this license to your work\n\nTo apply this 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.\n\n\n\nCopyright [yyyy] [name of copyright owner] Copyright and related rights are licensed under the Solderpad Hardware License, Version 0.5 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://solderpad.org/licenses/SHL-0.5. Unless required by applicable law or agreed to in writing, software, hardware and materials distributed under this 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.", + "json": "shl-0.5.json", + "yaml": "shl-0.5.yml", + "html": "shl-0.5.html", + "license": "shl-0.5.LICENSE" + }, + { + "license_key": "shl-0.51", + "category": "Permissive", + "spdx_license_key": "SHL-0.51", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SOLDERPAD HARDWARE LICENSE version 0.51\n\nThis license is based closely on the Apache License Version 2.0, but is not approved or endorsed by the Apache Foundation. A copy of the non-modified Apache License 2.0 can be found at http://www.apache.org/licenses/LICENSE-2.0.\n\nAs this license is not currently OSI or FSF approved, the Licensor permits any Work licensed under this License, at the option of the Licensee, to be treated as licensed under the Apache License Version 2.0 (which is so approved).\n\nThis License is licensed under the terms of this License and in particular clause 7 below (Disclaimer of Warranties) applies in relation to its use. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \n\n \"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n \n\n \"Licensor\" shall mean the Rights owner or entity authorized by the Rights owner that is granting the License.\n\n \n\n \"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.\n\n \n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n \n\n \"Rights\" means copyright and any similar right including design right (whether registered or unregistered), semiconductor topography (mask) rights and database rights (but excluding Patents and Trademarks).\n\n \n\n \"Source\" form shall mean the preferred form for making modifications, including but not limited to source code, net lists, board layouts, CAD files, documentation source, and configuration files.\n\n \n\n \"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, the instantiation of a hardware design and conversions to other media types, including intermediate forms such as bytecodes, FPGA bitstreams, artwork and semiconductor topographies (mask works).\n\n \n\n \"Work\" shall mean the work of authorship, whether in Source form or other Object form, made available under the License, as indicated by a Rights notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n \n\n \"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) or physically connect to or interoperate with the interfaces of, the Work and Derivative Works thereof.\n\n \n\n \"Contribution\" shall mean any design or 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 Rights owner or by an individual or Legal Entity authorized to submit on behalf of the Rights 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 Rights owner as \"Not a Contribution.\"\n\n \n\n \"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.\n\n 2. Grant of 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 license under the Rights to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form and do anything in relation to the Work as if the Rights did not exist.\n\n 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.\n\n 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:\n\n 1. You must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n 2. You must cause any modified files to carry prominent notices stating that You changed the files; and\n\n 3. 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\n\n 4. 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.\n\n 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.\n\n 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.\n\n 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.\n\n 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.\n\n 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\n\nAPPENDIX: How to apply this license to your work\n\nTo apply this 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.\n\nCopyright [yyyy] [name of copyright owner] Copyright and related rights are licensed under the Solderpad Hardware License, Version 0.51 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://solderpad.org/licenses/SHL-0.51. Unless required by applicable law or agreed to in writing, software, hardware and materials distributed under this 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.", + "json": "shl-0.51.json", + "yaml": "shl-0.51.yml", + "html": "shl-0.51.html", + "license": "shl-0.51.LICENSE" + }, + { + "license_key": "shl-2.0", + "category": "Permissive", + "spdx_license_key": "SHL-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Solderpad Hardware Licence v2.0\n\nSolderpad Hardware Licence v2.0\nAN UPDATED VERSION OF THIS LICENSE IS AVAILABLE.\n\nPlease see the licenses page.\n\nThis licence (the \u201cLicence\u201d) operates as a wraparound licence to the Apache License Version 2.0 (the \u201cApache License\u201d) and grants to You the rights, and imposes the obligations, set out in the Apache License (which can be found here: http://apache.org/licenses/LICENSE-2.0), with the following extensions. It must be read in conjunction with the Apache License. Section 1 below modifies definitions in the Apache License, and section 2 below replaces sections 2 of the Apache License. You may, at your option, choose to treat any Work released under this License as released under the Apache License (thus ignoring all sections written below entirely). Words in italics indicate changes rom the Apache License, but are indicative and not to be taken into account in interpretation.\n\n1. The definitions set out in the Apache License are modified as follows:\n\nCopyright any reference to \u2018copyright\u2019 (whether capitalised or not) includes \u2018Rights\u2019 (as defined below).\n\nContribution also includes any design, as well as any work of authorship.\n\nDerivative Works shall not include works that remain reversibly separable from, or merely link (or bind by name) or physically connect to or interoperate with the interfaces of the Work and Derivative Works thereof.\n\nObject form shall mean any form resulting from mechanical transformation or translation of a Source form or the application of a Source form to physical material, including but not limited to compiled object code, generated documentation, the instantiation of a hardware design or physical object and conversions to other media types, including intermediate forms such as bytecodes, FPGA bitstreams, moulds, artwork and semiconductor topographies (mask works).\n\nRights means copyright and any similar right including design right (whether registered or unregistered), semiconductor topography (mask) rights and database rights (but excluding Patents and Trademarks).\n\nSource form shall mean the preferred form for making modifications, including but not limited to source code, net lists, board layouts, CAD files, documentation source, and configuration files.\n\nWork also includes a design or work of authorship, whether in Source form or other Object form.\n\n2. Grant of Licence\n\n2.1 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 license under the Rights to reproduce, prepare Derivative Works of, make, adapt, repair, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form and do anything in relation to the Work as if the Rights did not exist.", + "json": "shl-2.0.json", + "yaml": "shl-2.0.yml", + "html": "shl-2.0.html", + "license": "shl-2.0.LICENSE" + }, + { + "license_key": "shl-2.1", + "category": "Permissive", + "spdx_license_key": "SHL-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Solderpad Hardware License v2.1\n\nThis license operates as a wraparound license to the Apache License Version 2.0 (the \u201cApache License\u201d) and incorporates the terms and conditions of the Apache License (which can be found here: http://apache.org/licenses/LICENSE-2.0), with the following additions and modifications. It must be read in conjunction with the Apache License. Section 1 below modifies definitions and terminology in the Apache License and Section 2 below replaces Section 2 of the Apache License. The Appendix replaces the Appendix in the Apache License. You may, at your option, choose to treat any Work released under this license as released under the Apache License (thus ignoring all sections written below entirely).\n\n1. Terminology in the Apache License is supplemented or modified as follows:\n\n\u201cAuthorship\u201d: any reference to \u2018authorship\u2019 shall be taken to read \u201cauthorship or design\u201d.\n\n\u201cCopyright owner\u201d: any reference to \u2018copyright owner\u2019 shall be taken to read \u201cRights owner\u201d.\n\n\u201cCopyright statement\u201d: the reference to \u2018copyright statement\u2019 shall be taken to read \u2018copyright or other statement pertaining to Rights\u2019.\n\nThe following new definition shall be added to the Definitions section of the Apache License:\n\n\u201cRights\u201d means copyright and any similar right including design right (whether registered or unregistered), rights in semiconductor topographies (mask works) and database rights (but excluding Patents and Trademarks).\n\nThe following definitions shall replace the corresponding definitions in the Apache License:\n\n\u201cLicense\u201d shall mean this Solderpad Hardware License version 2.1, being the terms and conditions for use, manufacture, instantiation, adaptation, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\u201cLicensor\u201d shall mean the owner of the Rights or entity authorized by the owner of the Rights that is granting the License.\n\n\u201cDerivative Works\u201d 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 or design. For the purposes of this License, Derivative Works shall not include works that remain reversibly separable from, or merely link (or bind by name) or physically connect to or interoperate with the Work and Derivative Works thereof.\n\n\u201cObject\u201d form shall mean any form resulting from mechanical transformation or translation of a Source form or the application of a Source form to physical material, including but not limited to compiled object code, generated documentation, the instantiation of a hardware design or physical object or material and conversions to other media types, including intermediate forms such as bytecodes, FPGA bitstreams, moulds, artwork and semiconductor topographies (mask works).\n\n\u201cSource\u201d form shall mean the preferred form for making modifications, including but not limited to source code, net lists, board layouts, CAD files, documentation source, and configuration files.\n\n\u201cWork\u201d shall mean the work of authorship or design, whether in Source or Object form, made available under the License, as indicated by a notice relating to Rights that is included in or attached to the work (an example is provided in the Appendix below).\n\n2. Grant of 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 license under the Rights to reproduce, prepare Derivative Works of, make, adapt, repair, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form and do anything in relation to the Work as if the Rights did not exist.\n\nAPPENDIX\n\nCopyright [yyyy] [name of copyright owner]\nSPDX-License-Identifier: Apache-2.0 WITH SHL-2.1\n\nLicensed under the Solderpad Hardware License v 2.1 (the \u201cLicense\u201d); you may not use this file except in compliance with the License, or, at your option, the Apache License version 2.0. You may obtain a copy of the License at\n\nhttps://solderpad.org/licenses/SHL-2.1/\n\nUnless required by applicable law or agreed to in writing, any work distributed under the License is distributed on an \u201cAS IS\u201d 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.", + "json": "shl-2.1.json", + "yaml": "shl-2.1.yml", + "html": "shl-2.1.html", + "license": "shl-2.1.LICENSE" + }, + { + "license_key": "signal-gpl-3.0-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-signal-gpl-3.0-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Additional Permissions For Submission to Apple App Store: Provided that you are otherwise in compliance with the GPLv3 for each covered work you convey (including without limitation making the Corresponding Source available in compliance with Section 6 of the GPLv3), Open Whisper Systems also grants you the additional permission to convey through the Apple App Store non-source executable versions of the Program as incorporated into each applicable covered work as Executable Versions only under the Mozilla Public License version 2.0 (https://www.mozilla.org/en-US/MPL/2.0/).", + "json": "signal-gpl-3.0-exception.json", + "yaml": "signal-gpl-3.0-exception.yml", + "html": "signal-gpl-3.0-exception.html", + "license": "signal-gpl-3.0-exception.LICENSE" + }, + { + "license_key": "simpl-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-simpl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SIMPLE PUBLIC LICENSE VERSION 1.1 2003-01-21\n\nCopyright (c) The Analysis and Solutions Company\nhttp://www.analysisandsolutions.com/\n\n1. Permission to use, copy, modify, and distribute this software and\nits documentation, with or without modification, for any purpose and\nwithout fee or royalty is hereby granted, provided that you include\nthe following on ALL copies of the software and documentation or\nportions thereof, including modifications, that you make:\n\n a. The full text of this license in a location viewable to users\n of the redistributed or derivative work.\n\n b. Notice of any changes or modifications to the files,\n including the date changes were made.\n\n2. The name, servicemarks and trademarks of the copyright holders\nmay NOT be used in advertising or publicity pertaining to the\nsoftware without specific, written prior permission.\n\n3. Title to copyright in this software and any associated\ndocumentation will at all times remain with copyright holders.\n\n4. THIS SOFTWARE AND DOCUMENTATION IS PROVIDED \"AS IS,\" AND\nCOPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY\nOR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE\nOR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS,\nCOPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\n5. COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DAMAGES, INCLUDING\nBUT NOT LIMITED TO, DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL,\nARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.", + "json": "simpl-1.1.json", + "yaml": "simpl-1.1.yml", + "html": "simpl-1.1.html", + "license": "simpl-1.1.LICENSE" + }, + { + "license_key": "simpl-2.0", + "category": "Copyleft", + "spdx_license_key": "SimPL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Preamble\nThis Simple Public License 2.0 (SimPL 2.0 for short) is a plain language implementation of GPL 2.0. The words are different, but the goal is the same - to guarantee for all users the freedom to share and change software. If anyone wonders about the meaning of the SimPL, they should interpret it as consistent with GPL 2.0.\n\nSimple Public License (SimPL) 2.0\nThe SimPL applies to the software's source and object code and comes with any rights that I have in it (other than trademarks). You agree to the SimPL by copying, distributing, or making a derivative work of the software.\n\nYou get the royalty free right to:\nUse the software for any purpose;\nMake derivative works of it (this is called a \"Derived Work\");\nCopy and distribute it and any Derived Work.\n\nIf you distribute the software or a Derived Work, you must give back to the community by:\nProminently noting the date of any changes you make;\nLeaving other people's copyright notices, warranty disclaimers, and license terms in place;\nProviding the source code, build scripts, installation scripts, and interface definitions in a form that is easy to get and best to modify;\nLicensing it to everyone under SimPL, or substantially similar terms (such as GPL 2.0), without adding further restrictions to the rights provided;\nConspicuously announcing that it is available under that license.\n\nThere are some things that you must shoulder:\nYou get NO WARRANTIES. None of any kind;\nIf the software damages you in any way, you may only recover direct damages up to the amount you paid for it (that is zero if you did not pay anything). You may not recover any other damages, including those called \"consequential damages.\" (The state or country where you live may not allow you to limit your liability in this way, so this may not apply to you);\n\nThe SimPL continues perpetually, except that your license rights end automatically if:\nYou do not abide by the \"give back to the community\" terms (your licensees get to keep their rights if they abide);\nAnyone prevents you from distributing the software under the terms of the SimPL.\n\nLicense for the License\nYou may do anything that you want with the SimPL text; it's a license form to use in any way that you find helpful. To avoid confusion, however, if you change the terms in any way then you may not call your license the Simple Public License or the SimPL (but feel free to acknowledge that your license is \"based on the Simple Public License\").", + "json": "simpl-2.0.json", + "yaml": "simpl-2.0.yml", + "html": "simpl-2.0.html", + "license": "simpl-2.0.LICENSE" + }, + { + "license_key": "six-labors-split-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-six-labors-split-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Six Labors Split License\nVersion 1.0, June 2022\nCopyright (c) Six Labors\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications, including but not limited to software source\n code, documentation source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including\n but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n \"Work\" (or \"Works\") shall mean any Six Labors software made available under the License, as indicated by a\n copyright notice that is included in or attached to the work.\n\n \"Direct Package Dependency\" shall mean any Work in Source or Object form that is installed directly by You.\n\n \"Transitive Package Dependency\" shall mean any Work in Object form that is installed indirectly by a third party\n dependency unrelated to Six Labors.\n\n2. License\n\n Works in Source or Object form are split licensed and may be licensed under the Apache License, Version 2.0 or a\n Six Labors Commercial Use License.\n\n Licenses are granted based upon You meeting the qualified criteria as stated. Once granted,\n You must reference the granted license only in all documentation.\n\n Works in Source or Object form are licensed to You under the Apache License, Version 2.0 if.\n\n - You are consuming the Work in for use in software licensed under an Open Source or Source Available license.\n - You are consuming the Work as a Transitive Package Dependency.\n - You are consuming the Work as a Direct Package Dependency in the capacity of a For-profit company/individual with\n less than 1M USD annual gross revenue.\n - You are consuming the Work as a Direct Package Dependency in the capacity of a Non-profit organization\n or Registered Charity.\n\n For all other scenarios, Works in Source or Object form are licensed to You under the Six Labors Commercial License\n which may be purchased by visiting https://sixlabors.com/pricing/.", + "json": "six-labors-split-1.0.json", + "yaml": "six-labors-split-1.0.yml", + "html": "six-labors-split-1.0.html", + "license": "six-labors-split-1.0.LICENSE" + }, + { + "license_key": "skip-2014", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-skip-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "****** SKIP - The System of Kanji Indexing by Patterns ******\n \n***** Introduction *****\n \nThe System of Kanji Indexing by Patterns (SKIP) system for\n ordering kanji was developed by Jack Halpern and used as the\n main index for kanji in the New Japanese-English Character\n Dictionary (Kenkyusha/NTC, 1990) and The Kodansha Kanji\n Learner's Dictionary (Kodansha, 1999) and other dictionaries\n published by Kanji Dictionary Publishing Society.\n \nThe SKIP codes for the kanji not in the NJECD were compiled by\n Jack Halpern and Martin Duerst (the remaining kanji in JIS X\n 0208) and Jim Breen (the 5,801 kanji in JIS X 0212).\n An overview of the SKIP system is available at this page.\n\n ***** Conditions Of Use *****\n\n As of December 12, 2014, the SKIP coding system and all\n established SKIP codes have been placed under a Creative\n Commons_Attribution-ShareAlike_4.0_International. (The full\n License Code is here.)\n\n As stated in that license, you may copy and redistribute the\n SKIP coding system in any medium or format for any purpose,\n even commercially, as long as you give appropriate credit.\n\n Appropriate credit must clearly attribute the system and codes\n to Jack Halpern, with a link to the website of the Kanji\n Dictionary Publishing Society at http://www.kanji.org/. Below\n is an example of how such an attribution may look like:\n\n The SKIP (System of Kanji Indexing by Patterns)\n system for ordering kanji was developed by Jack\n Halpern (Kanji Dictionary Publishing Society at http:\n //www.kanji.org/), and is used with his permission.\n\n To get the latest SKIP codes, please contact us at jack[at]cjki.org.", + "json": "skip-2014.json", + "yaml": "skip-2014.yml", + "html": "skip-2014.html", + "license": "skip-2014.LICENSE" + }, + { + "license_key": "sleepycat", + "category": "Copyleft", + "spdx_license_key": "Sleepycat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Redistributions in any form must be accompanied by information on\n how to obtain complete source code for the DB software and any\n accompanying software that uses the DB software. The source code\n must either be included in the distribution or be available for no\n more than the cost of distribution plus a nominal fee, and must be\n freely redistributable under reasonable conditions. For an\n executable file, complete source code means the source code for all\n modules it contains. It does not include source code for modules or\n files that typically accompany the major components of the operating\n system on which the executable file runs.\n\n THIS SOFTWARE IS PROVIDED BY ORACLE CORPORATION ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE CORPORATION\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n THE POSSIBILITY OF SUCH DAMAGE.", + "json": "sleepycat.json", + "yaml": "sleepycat.yml", + "html": "sleepycat.html", + "license": "sleepycat.LICENSE" + }, + { + "license_key": "slf4j-2005", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Permission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, and/or sell copies of the Software, and to permit persons\nto whom the Software is furnished to do so, provided that the above\ncopyright notice(s) and this permission notice appear in all copies of\nthe Software and that both the above copyright notice(s) and this\npermission notice appear in supporting documentation.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\nHOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY\nSPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER\nRESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF\nCONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN\nCONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nExcept as contained in this notice, the name of a copyright holder\nshall not be used in advertising or otherwise to promote the sale, use\nor other dealings in this Software without prior written authorization\nof the copyright holder.", + "json": "slf4j-2005.json", + "yaml": "slf4j-2005.yml", + "html": "slf4j-2005.html", + "license": "slf4j-2005.LICENSE" + }, + { + "license_key": "slf4j-2008", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Licensing terms for SLF4J\n\nSLF4J source code and binaries are distributed under the MIT license.\n\nCopyright (c) 2004-2008 QOS.ch All rights reserved. \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this\nsoftware and associated documentation files (the \"Software\"), to deal in the Software\nwithout restriction, including without limitation the rights to use, copy, modify,\nmerge, publish, distribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be included in all copies\nor substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\nINCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\nCONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE\nOR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nThese terms are identical to those of the MIT License, also called the X License or\nthe X11 License, which is a simple, permissive non-copyleft free software license. It\nis deemed compatible with virtually all types of licenses, commercial or otherwise.\nIn particular, the Free Software Foundation has declared it compatible with GNU GPL.\nIt is also known to be approved by the Apache Software Foundation as compatible with\nApache Software License.", + "json": "slf4j-2008.json", + "yaml": "slf4j-2008.yml", + "html": "slf4j-2008.html", + "license": "slf4j-2008.LICENSE" + }, + { + "license_key": "slysoft-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-slysoft-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "END USER LICENSE AGREEMENT\n\nfor: All Software Products of SlySoft inc. IMPORTANT READ CAREFULLY and PRINT FOR YOUR REFERENCE: This End-User License Agreement ('EULA') is a legal agreement between you (either an individual person or a single legal entity, who will be referred to in this EULA as 'You') and SlySoft. It includes any associated media, printed materials and electronic documentation (the 'Software'). The Software also includes any software updates, add-on components, web services and/or supplements that SlySoft may provide to You or make available to You after the date You obtain Your initial copy of the Software to the extent that such items are not accompanied by a separate license agreement or terms of use. By installing, copying, downloading, accessing or otherwise using the Software, You agree to be bound by the terms of this EULA. If You do not agree to the terms of this EULA, do not install, access or use the Software. For purposes of this EULA, the term 'Licensor' refers to SlySoft except in the event that You acquired the Software as a component of a SlySoft software product originally licensed from the manufacturer of your computer system or computer system component, then 'Licensor' or refers to such hardware manufacturer. By installing, copying, downloading, accessing or otherwise using the Software, You agree to be bound by the terms of this EULA. If You do not agree to the terms of this EULA, Licensor is unwilling to license the Software. In such event, You may not install, copy, download or otherwise use the Software.\nNOTE: IF YOU DO NOT HAVE A VALID LICENSE FOR AnyDVD, CloneDVD, or CloneCD, etc. (A 'SOFTWARE PRODUCT'), YOU ARE NOT AUTHORIZED TO INSTALL, COPY OR OTHERWISE USE THE SOFTWARE EXCEPT AS NECESSARY FOR YOUR 21 DAYS TRIAL PERIOD.\n\nSOFTWARE LICENSE\n\nThe Software is protected by intellectual property laws and treaties. The Software is licensed, not sold.\n\nThis EULA grants you the following rights:\nSystems Software - . You may install and use one copy of the SOFTWARE PRODUCT on a single computer or if you licensed it for multiple computers on as many computers as you legally obtained a license for, including a workstation, terminal or other digital electronic device ('COMPUTER').\nStorage/Network Use - You may also store or install a copy of the SOFTWARE PRODUCT on a storage device, such as a network server, used only to install or run the SOFTWARE PRODUCT on your other COMPUTERS over an internal network; however, you must acquire and dedicate a license for each separate COMPUTER on or from which the SOFTWARE PRODUCT is installed, used, accessed, displayed or run. A license for the SOFTWARE PRODUCT may only be shared or used concurrently on as many different COMPUTERS as the license is valid for.\n\nRestrictions:\nYou may not sell, license or distribute copies of the Software on a stand-alone basis or as part of any collection, product or service where the primary value of the product or service are the Software.\nYou may not use or distribute any of the Software that include representations of identifiable individuals, governments, logos, initials, emblems, trademarks, or entities for any commercial purposes or to express or imply any endorsement or association with any product, service, entity, or activity.\nYou must indemnify, hold harmless, and defend SlySoft and Universal Gaming Concepts Billing and Customer Service Inc. from and against any claims or lawsuits, including attorneys' fees, that arise from or result from the use or distribution of Software as modified by You.\n\nSlySoft respects the rights of artists and film companies, and the proper use of the software does not violate those rights. You cannot copy DVDs in order to sell or give away copies, or for any commercial purpose.\n\nSlySoft discourages any attempt to copy rented DVDs. It is illegal to make a copy of a DVD for most purposes other than your own personal use. SlySoft respects the rights of artists and film companies, and asks that You do the same.\n\nUsing the SOFTWARE will create backup copies of DVDs. The copy will be an archival backup copy of a DVD, created solely for the private and personal use of the owner of the DVD from which it was made. Federal copyright laws prohibit the unauthorized reproduction, distribution, or exhibition of copyrighted materials, if any, contained in the archival backup copy. The resale, reproduction, distribution, or commercial exploitation of the archival backup copy is strictly forbidden. We ask you to respect the rights of copyright holders.\n\nDESCRIPTION OF OTHER RIGHTS AND LIMITATIONS.\nLimitations on Reverse Engineering, Decompilation, and Disassembly. You may not reverse engineer, decompile, or disassemble the Software, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation.\n\nTrademarks. This EULA does not grant You any rights in connection with any trademarks or service marks of Licensor or its suppliers.\n\nNo rental, leasing or commercial hosting. You may not rent, lease, lend or provide commercial hosting services to third parties with the Software.\n\nSupport Services. Licensor may provide You with support services related to the Software ('Support Services'). Use of Support Services is governed by the policies and programs described in the user manual, in 'online' documentation, or in other materials from the support services provider. Any supplemental software code provided to You as part of the Support Services are considered part of the Software and subject to the terms and conditions of this EULA. You acknowledge and agree that Licensor may use information You provide to Licensor as part of the Support Services for its business purposes, including for product support and development. For Software licensed from the hardware manufacturer, please refer to the manufacturer's support number and address provided in Your hardware documentation.\n\nTermination. Without prejudice to any other rights, Licensor or its suppliers may terminate this EULA if You fail to comply with the terms and conditions of this EULA. In such event, You must destroy all copies of the Software and all of its component parts.\n\nUPGRADES If the SOFTWARE PRODUCT is labeled as an upgrade, you must be properly licensed to use a product identified by SlySoft as being eligible for the upgrade in order to use the SOFTWARE PRODUCT. A SOFTWARE PRODUCT labeled as an upgrade replaces and/or supplements the product that formed the basis for your eligibility for the upgrade. You may use the resulting upgraded product only in accordance with the terms of this EULA. If the SOFTWARE PRODUCT is an upgrade of a component of a package of software programs that you licensed as a single product, the SOFTWARE PRODUCT may be used and transferred only as part of that single product package and may not be separated for use on more than one computer.\n\nBACKUP COPY After installation of one copy of the SOFTWARE PRODUCT pursuant to this EULA, you may keep the original media on which the SOFTWARE PRODUCT was provided by SlySoft solely for backup or archival purposes. If the original media is required to use the SOFTWARE PRODUCT on the COMPUTER, you may make one copy of the SOFTWARE PRODUCT solely for backup or archival purposes. Except as expressly provided in this EULA, you may not otherwise make copies of the SOFTWARE PRODUCT or the printed materials accompanying the SOFTWARE PRODUCT.\n\nAUTOMATIC COMMUNICATIONS FEATURES. The SOFTWARE PRODUCT consists of interactive Internet applications that perform a variety of communications over the Internet as part of its normal operation. A number of communications features are automatic and are enabled by default. By installing and/or using the SOFTWARE PRODUCT, you consent to the SOFTWARE PRODUCTS communications features. Once you have activated the SOFTWARE PRODUCT, user information including your user id will be sent in communications with SlySoft's servers. This information is used to perform a background check against SlySoft's license servers. You are responsible for any telecommunications or other connectivity charges incurred through use of the Software.\n\nINTELLECTUAL PROPERTY RIGHTS. All title and intellectual property rights in and to the Software (including but not limited to any images, photographs, animations, video, audio, music, text, and 'applets' incorporated into the Software), the accompanying printed materials, and any copies of the Software are owned by Licensor or its suppliers. All title and intellectual property rights in and to the content that is not contained in the Software, but may be accessed through use of the Software, is the property of the respective content owners and may be protected by applicable copyright or other intellectual property laws and treaties. This EULA grants You no rights to use such content. If this Software contains documentation that is provided only in electronic form, you may print one copy of such electronic documentation. You may not copy the printed materials accompanying the Software. All rights not specifically granted under this EULA are reserved by Licensor and its suppliers.\n\nLIMITED WARRANTY\nNOTE: IF YOU LICENSED THE SOFTWARE FROM A HARDWARE MANUFACTURER AS A COMPONENT OF A SlySoft SOFTWARE PRODUCT, PLEASE REFER TO THE LIMITED WARRANTIES, LIMITATION OF LIABILITY, AND OTHER SPECIAL PROVISION APPENDICES PROVIDED WITH OR IN SUCH OTHER SlySoft SOFTWARE PRODUCT. SUCH LIMITED WARRANTIES, LIMITATIONS OF LIABILITY AND SPECIAL PROVISIONS ARE AN INTEGRAL PART OF THIS EULA AND SHALL SUPERSEDE ALL OF THE WARRANTIES, LIMITATIONS OF LIABILITY AND OTHER SPECIAL PROVISIONS SET FORTH BELOW.\nFOR SOFTWARE LICENSED DIRECTLY FROM SlySoft THE FOLLOWING SECTIONS APPLY: LIMITED WARRANTY FOR SOFTWARE. SlySoft warrants that the Software will perform substantially in accordance with the accompanying materials for a period of ninety (90) days from the date of receipt. If an implied warranty or condition is created by your country, state/jurisdiction and federal or state/provincial law prohibits disclaimer of it, you also have an implied warranty or condition, BUT ONLY AS TO DEFECTS DISCOVERED DURING THE PERIOD OF THIS LIMITED WARRANTY (NINETY DAYS). AS TO ANY DEFECTS DISCOVERED AFTER THE NINETY (90) DAY PERIOD, THERE IS NO WARRANTY OR CONDITION OF ANY KIND. Some states/jurisdictions do not allow limitations on how long an implied warranty or condition lasts, so the above limitation may not apply to you. Any supplements or updates to the Software, including without limitation, any (if any) service packs or hot fixes provided to you after the expiration of the ninety (90) day Limited Warranty period are not covered by any warranty or condition, express, implied or statutory.\nLIMITATION ON REMEDIES: NO CONSEQUENTIAL OR OTHER DAMAGES - Your exclusive remedy for any breach of this Limited Warranty is as set forth below. Except for any refund elected by SlySoft YOU ARE NOT ENTITLED TO ANY DAMAGES, INCLUDING BUT NOT LIMITED TO CONSEQUENTIAL DAMAGES, if the Software does not meet SlySoft's Limited Warranty, and, to the maximum extent allowed by applicable law, even if any remedy fails of its essential purpose. The terms of the section below ('Exclusion of Incidental, Consequential and Certain Other Damages') are also incorporated into this Limited Warranty. Some countries, states/jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so the above limitation or exclusion may not apply to you. This Limited Warranty gives you specific legal rights. You may have others which vary from state/jurisdiction to state/jurisdiction.\n\nYOUR EXCLUSIVE REMEDY. SlySoft and its suppliers' entire liability and your exclusive remedy shall be, at SlySoft's option from time to time exercised subject to applicable law, (a) return of the price paid (if any) for the Software, or (b) repair or replacement of the Software, that does not meet this Limited Warranty and that is returned to SlySoft with a copy of your receipt. You will receive the remedy elected by SlySoft without charge, except that you are responsible for any expenses you may incur (e.g. cost of shipping the Software to SlySoft. This Limited Warranty is void if failure of the Software has resulted from accident, abuse, misapplication, abnormal use or a virus. Any replacement Software will be warranted for the remainder of the original warranty period or thirty (30) days, whichever is longer. Outside the United States or Canada, neither these remedies nor any product support services offered by SlySoft are available without proof of purchase from an authorized international source. To exercise your remedy, contact: SlySoft Dickenson Bay Street, John Henry Building, 3rd floor. DISCLAIMER OF WARRANTIES. The Limited Warranty that appears above is the only express warranty made to you and is provided in lieu of any other express warranties (if any) created by any documentation or packaging. Except for the Limited Warranty and to the maximum extent permitted by applicable law, SlySoft and its suppliers provide the Software and support services (if any) AS IS AND WITH ALL FAULTS, and hereby disclaim all other warranties and conditions, either express, implied or statutory, including, but not limited to, any (if any) implied warranties, duties or conditions of merchantability, of fitness for a particular purpose, of accuracy or completeness of responses, of results, of workmanlike effort, of lack of viruses, and of lack of negligence, all with regard to the Software, and the provision of or failure to provide support services. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT WITH REGARD TO THE Software. EXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER DAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL SlySoft OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS OR CONFIDENTIAL OR OTHER INFORMATION, FOR BUSINESS INTERRUPTION, FOR PERSONAL INJURY, FOR LOSS OF PRIVACY, FOR FAILURE TO MEET ANY DUTY INCLUDING OF GOOD FAITH OR OF REASONABLE CARE, FOR NEGLIGENCE, AND FOR ANY OTHER PECUNIARY OR OTHER LOSS WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF OR INABILITY TO USE THE SOFTWARE, THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES, OR OTHERWISE UNDER OR IN CONNECTION WITH ANY PROVISION OF THIS EULA, EVEN IN THE EVENT OF THE FAULT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, BREACH OF CONTRACT OR BREACH OF WARRANTY OF ANY SUPPLIER, AND EVEN IF SlySoft OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ENTIRE AGREEMENT. This EULA (including any addendum or amendment to this EULA which is included with the Software) is the entire agreement between you and SlySoft relating to the Software and the support services (if any) and they supersede all prior or contemporaneous oral or written communications, proposals and representations with respect to the Software or any other subject matter covered by this EULA. To the extent the terms of any SlySoft policies or programs for support services conflict with the terms of this EULA, the terms of this EULA shall control.\n\nSlySoft, Inc.\nP.O. Box W874\nSt. John's\nAntigua and Barbuda", + "json": "slysoft-eula.json", + "yaml": "slysoft-eula.yml", + "html": "slysoft-eula.html", + "license": "slysoft-eula.LICENSE" + }, + { + "license_key": "smail-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-smail-gpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "\t\t SMAIL GENERAL PUBLIC LICENSE\n\t\t (Clarified 11 Feb 1988)\n\n Copyright (C) 1988 Landon Curt Noll & Ronald S. Karr\n Copyright (C) 1992 Ronald S. Karr\n Copyleft (GNU) 1988 Landon Curt Noll & Ronald S. Karr\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license, but changing it is not allowed. You can also\n use this wording to make the terms for other programs.\n\n The license agreements of most software companies keep you at the\nmercy of those companies. By contrast, our general public license is\nintended to give everyone the right to share SMAIL. To make sure that\nyou get the rights we want you to have, we need to make restrictions\nthat forbid anyone to deny you these rights or to ask you to surrender\nthe rights. Hence this license agreement.\n\n Specifically, we want to make sure that you have the right to give\naway copies of SMAIL, that you receive source code or else can get it\nif you want it, that you can change SMAIL or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To make sure that everyone has such rights, we have to forbid you to\ndeprive anyone else of these rights. For example, if you distribute\ncopies of SMAIL, you must give the recipients all the rights that you\nhave. You must make sure that they, too, receive or can get the\nsource code. And you must tell them their rights.\n\n Also, for our own protection, we must make certain that everyone\nfinds out that there is no warranty for SMAIL. If SMAIL is modified by\nsomeone else and passed on, we want its recipients to know that what\nthey have is not what we distributed, so that any problems introduced\nby others will not reflect on our reputation.\n\n Therefore we (Landon Curt Noll and Ronald S. Karr) make the following \nterms which say what you must do to be allowed to distribute or change \nSMAIL.\n\n\n\t\t\tCOPYING POLICIES\n\n 1. You may copy and distribute verbatim copies of SMAIL source code\nas you receive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy a valid copyright notice \"Copyright\n(C) 1988 Landon Curt Noll & Ronald S. Karr\" (or with whatever year is\nappropriate); keep intact the notices on all files that refer to this\nLicense Agreement and to the absence of any warranty; and give any\nother recipients of the SMAIL program a copy of this License\nAgreement along with the program. You may charge a distribution fee\nfor the physical act of transferring a copy.\n\n 2. You may modify your copy or copies of SMAIL or any portion of it,\nand copy and distribute such modifications under the terms of\nParagraph 1 above, provided that you also do the following:\n\n a) cause the modified files to carry prominent notices stating\n that you changed the files and the date of any change; and\n\n b) cause the whole of any work that you distribute or publish,\n that in whole or in part contains or is a derivative of SMAIL or\n any part thereof, to be licensed at no charge to all third\n parties on terms identical to those contained in this License\n Agreement (except that you may choose to grant more extensive\n warranty protection to some or all third parties, at your option).\n\n c) You may charge a distribution fee for the physical act of\n transferring a copy, and you may at your option offer warranty\n protection in exchange for a fee.\n\nMere aggregation of another unrelated program with this program (or its\nderivative) on a volume of a storage or distribution medium does not bring\nthe other program under the scope of these terms.\n\n 3. You may copy and distribute SMAIL (or a portion or derivative of it,\nunder Paragraph 2) in object code or executable form under the terms of\nParagraphs 1 and 2 above provided that you also do one of the following:\n\n a) accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of\n Paragraphs 1 and 2 above; or,\n\n b) accompany it with a written offer, valid for at least three\n years, to give any third party free (except for a nominal\n shipping charge) a complete machine-readable copy of the\n corresponding source code, to be distributed under the terms of\n Paragraphs 1 and 2 above; or,\n\n c) accompany it with the information you received as to where the\n corresponding source code may be obtained. (This alternative is\n allowed only for non-commercial distribution and only if you\n received the program in object code or executable form alone.)\n\nFor an executable file, complete source code means all the source code for\nall modules it contains; but, as a special exception, it need not include\nsource code for modules which are standard libraries that accompany the\noperating system on which the executable file runs.\n\n 4. You may not copy, sublicense, distribute or transfer SMAIL\nexcept as expressly provided under this License Agreement. Any attempt\notherwise to copy, sublicense, distribute or transfer SMAIL is void and\nyour rights to use the program under this License agreement shall be\nautomatically terminated. However, parties who have received computer\nsoftware programs from you with this License Agreement will not have\ntheir licenses terminated so long as such parties remain in full compliance.\n\n 5. If you wish to incorporate parts of SMAIL into other free\nprograms whose distribution conditions are different, write to Landon\nCurt Noll & Ronald S. Karr via the Free Software Foundation at 51\nFranklin St, Fifth Floor, Boston, MA 02110-1301, USA. We have not yet\nworked out a simple rule that can be stated here, but we will often\npermit this. We will be guided by the two goals of preserving the\nfree status of all derivatives of our free software and of promoting\nthe sharing and reuse of software.\n\nYour comments and suggestions about our licensing policies and our\nsoftware are welcome! This contract was based on the contract made by\nthe Free Software Foundation. Please contact the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\nUSA, or call (617) 542-5942 for details on copylefted material in\ngeneral.\n\n\t\t NO WARRANTY\n\n BECAUSE SMAIL IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY NO\nWARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW. EXCEPT WHEN\nOTHERWISE STATED IN WRITING, LANDON CURT NOLL & RONALD S. KARR AND/OR\nOTHER PARTIES PROVIDE SMAIL \"AS IS\" WITHOUT WARRANTY OF ANY KIND,\nEITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nTHE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF SMAIL IS WITH\nYOU. SHOULD SMAIL PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL\nNECESSARY SERVICING, REPAIR OR CORRECTION.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL LANDON CURT NOLL &\nRONALD S. KARR AND/OR ANY OTHER PARTY WHO MAY MODIFY AND REDISTRIBUTE\nSMAIL AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nLOST PROFITS, LOST MONIES, OR OTHER SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE\n(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED\nINACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR A FAILURE OF THE\nPROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) SMAIL, EVEN IF YOU HAVE\nBEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY\nANY OTHER PARTY.", + "json": "smail-gpl.json", + "yaml": "smail-gpl.yml", + "html": "smail-gpl.html", + "license": "smail-gpl.LICENSE" + }, + { + "license_key": "smartlabs-freeware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-smartlabs-freeware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Freeware Licence Agreement\nThis licence agreement only applies to the free version of this software.\n\nTerms and Conditions\nBY DOWNLOADING, INSTALLING, USING, TRANSMITTING, DISTRIBUTING OR COPYING THIS SOFTWARE (\"THE SOFTWARE\"), YOU AGREE TO THE TERMS OF THIS AGREEMENT (INCLUDING THE SOFTWARE LICENCE AND DISCLAIMER OF WARRANTY) WITH SmartLabs LLC (with the business address at 72, Oktyabrskata str., 127521 Moscow, Russia) THE OWNER OF ALL RIGHTS IN RESPECT OF THE SOFTWARE. \n\nPLEASE READ THIS DOCUMENT CAREFULLY BEFORE USING THE SOFTWARE. \n\nIF YOU DO NOT AGREE TO ANY OF THE TERMS OF THIS LICENCE THEN DO NOT DOWNLOAD, INSTALL, USE, TRANSMIT, DISTRIBUTE OR COPY THE SOFTWARE. \n\nTHIS DOCUMENT CONSTITUES A LICENCE TO USE THE SOFTWARE ON THE TERMS AND CONDITIONS APPEARING BELOW. \n\nThe Software is licensed to you without charge for use only upon the terms of this licence, and SmartLabs LLC reserves all rights not expressly granted to you. SmartLabs LLC retains ownership of all copies of the Software. \n\n1. Licence\nYou may use the Software without charge. \n\nYou may distribute exact copies of the Software to anyone. \n\n2. Restrictions\nSmartLabs LLC reserves the right to revoke the above distribution right at any time, for any or no reason. \n\nYOU MAY NOT MODIFY, ADAPT, TRANSLATE, RENT, LEASE, LOAN, SELL, REQUEST DONATIONS OR CREATE DERIVATE WORKS BASED UPON THE SOFTWARE OR ANY PART THEREOF. \n\nThe Software contains trade secrets and to protect them you may not decompile, reverse engineer, disassemble or otherwise reduce the Software to a humanly perceivable form. You agree not to divulge, directly or indirectly, until such trade secrets cease to be confidential, for any reason not your own fault. \n\n3. Termination\nThis licence is effective until terminated. The Licence will terminate automatically without notice from SmartLabs LLC if you fail to comply with any provision of this Licence. Upon termination you must destroy the Software and all copies thereof. You may terminate this Licence at any time by destroying the Software and all copies thereof. Upon termination of this licence for any reason you shall continue to be bound by the provisions of Section 2 above. Termination will be without prejudice to any rights SmartLabs LLC may have as a result of this agreement. \n\n4. Disclaimer of Warranty, Limitation of Remedies\nTO THE FULL EXTENT PERMITTED BY LAW, SmartLabs LLC HEREBY EXCLUDES ALL CONDITIONS AND WARRANTIES, WHETHER IMPOSED BY STATUTE OR BY OPERATION OF LAW OR OTHERWISE, NOT EXPRESSLY SET OUT HEREIN. THE SOFTWARE, AND ALL ACCOMPANYING FILES, DATA AND MATERIALS ARE DISTRIBUTED \"AS IS\" AND WITH NO WARRANTIES OF ANY KIND, WHETHER EXPRESS OR IMPLIED. SmartLabs LLC DOES NOT WARRANT, GUARANTEE OR MAKE ANY REPRESENTATIONS REGARDING THE USE, OR THE RESULTS OF THE USE, OF THE SOFTWARE WITH RESPECT TO ITS CORRECTNESS, ACCURACY, RELIABILITY, CURRENTNESS OR OTHERWISE. THE ENTIRE RISK OF USING THE SOFTWARE IS ASSUMED BY YOU. SmartLabs LLC MAKES NO EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS INCLUDING, WITHOUT LIMITATION, THE WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE WITH RESPECT TO THE SOFTWARE. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY SmartLabs LLC, IT'S DISTRIBUTORS, AGENTS OR EMPLOYEES SHALL CREATE A WARRANTY, AND YOU MAY NOT RELY ON ANY SUCH INFORMATION OR ADVICE. \n\nIMPORTANT NOTE: Nothing in this Agreement is intended or shall be construed as excluding or modifying any statutory rights, warranties or conditions which by virtue of any national or state Fair Trading, Trade Practices or other such consumer legislation may not be modified or excluded. If permitted by such legislation, however, SmartLabs LLC' liability for any breach of any such warranty or condition shall be and is hereby limited to the supply of the Software licensed hereunder again as SmartLabs LLC at its sole discretion may determine to be necessary to correct the said breach. \n\nIN NO EVENT SHALL SmartLabs LLC BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, AND THE LOSS OF BUSINESS INFORMATION OR COMPUTER PROGRAMS), EVEN IF SmartLabs LLC OR ANY SmartLabs LLC REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ADDITION, IN NO EVENT DOES SmartLabs LLC AUTHORISE YOU TO USE THE SOFTWARE IN SITUATIONS WHERE FAILURE OF THE SOFTWARE TO PERFORM CAN REASONABLY BE EXPECTED TO RESULT IN A PHYSICAL INJURY, OR IN LOSS OF LIFE. ANY SUCH USE BY YOU IS ENTIRELY AT YOUR OWN RISK, AND YOU AGREE TO HOLD SmartLabs LLC HARMLESS FROM ANY CLAIMS OR LOSSES RELATING TO SUCH UNAUTHORISED USE. \n\n5. General\nAll rights of any kind in the Software which are not expressly granted in this Agreement are entirely and exclusively reserved to and by SmartLabs LLC. \n\nThis agreement contains the entire Agreement between the parties hereto with respect to the subject matter hereof, and supersedes all prior agreements and/or understandings (oral or written). Failure or delay by SmartLabs LLC in enforcing any right or provision hereof shall not be deemed a waiver of such provision or right with respect to the instant or any subsequent breach. If any provision of this Agreement shall be held by a court of competent jurisdiction to be contrary to law, that provision will be enforced to the maximum extent permissible, and the remaining provisions of this Agreement will remain in force and effect.", + "json": "smartlabs-freeware.json", + "yaml": "smartlabs-freeware.yml", + "html": "smartlabs-freeware.html", + "license": "smartlabs-freeware.LICENSE" + }, + { + "license_key": "smppl", + "category": "Copyleft Limited", + "spdx_license_key": "SMPPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Secure Messaging Protocol (SMP) Libraries [ACL, CML, SFL]\nDistribution Rights\n\nAll source code for the SMP is being provided at no cost and with no financial limitations regarding its use and distribution. Organizations can use the SMP without paying any royalties or licensing fees. The SMP was originally developed by the U.S. Government. BAE Systems is enhancing and supporting the SMP under contract to the U.S. Government. The U.S. Government is furnishing the SMP software at no cost to the vendor subject to the conditions of the SMP Public License provided with the SMP software.\n\n29 May 2002\n\nSecure Messaging Protocol (SMP) Public License\n\nThe United States Government/Department of Defense/National Security Agency/Office of Network Security (collectively \"the U.S. Government\") hereby grants permission to any person obtaining a copy of the SMP source and object files (the \"SMP Software\") and associated documentation files (the \"SMP Documentation\"), or any portions thereof, to do the following, subject to the following license conditions:\n\nYou may, free of charge and without additional permission from the U.S. Government, use, copy, modify, sublicense and otherwise distribute the SMP Software or components of the SMP Software, with or without modifications developed by you and/or by others.\n\nYou may, free of charge and without additional permission from the U.S. Government, distribute copies of the SMP Documentation, with or without modifications developed by you and/or by others, at no charge or at a charge that covers the cost of reproducing such copies, provided that this SMP Public License is retained.\n\nFurthermore, if you distribute the SMP Software or parts of the SMP Software, with or without modifications developed by you and/or others, then you must either make available the source code to all portions of the SMP Software (exclusive of any modifications made by you and/or by others) upon request, or instead you may notify anyone requesting the SMP Software source code that it is freely available from the U.S. Government.\n\nTransmission of this SMP Public License must accompany whatever portions of the SMP Software you redistribute.\n\nThe SMP Software is provided without warranty or guarantee of any nature, express or implied, including without limitation the warranties of merchantability and fitness for a particular purpose.\n\nThe U.S. Government cannot be held liable for any damages either directly or indirectly caused by the use of the SMP Software.\n\nIt is not permitted to copy, sublicense, distribute or transfer any of the SMP Software except as expressly indicated herein. Any attempts to do otherwise will be considered a violation of this License and your rights to the SMP Software will be voided.\n\nThe SMP uses the Enhanced SNACC (eSNACC) Abstract Syntax Notation One (ASN.1) C++ Library to ASN.1 encode and decode security-related data objects. The eSNACC ASN.1 C++ Library is covered by the ENHANCED SNACC SOFTWARE PUBLIC LICENSE. None of the GNU public licenses apply to the eSNACC ASN.1 C++ Library. The eSNACC Compiler is not distributed as part of the SMP.\n\nCopyright \u00a9 1997-2002 National Security Agency", + "json": "smppl.json", + "yaml": "smppl.yml", + "html": "smppl.html", + "license": "smppl.LICENSE" + }, + { + "license_key": "smsc-non-commercial-2012", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-smsc-non-commercial-2012", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright 2012 SMSC\n\nTHIS SOFTWARE PROVIDED BY STANDARD MICROSYSTEMS CORPORATION`(\"SMSC\")IS SAMPLE\nCODE INTENDED FOR EVALUATION PURPOSES ONLY. IT IS NOT INTENDED FOR COMMERCIAL\nUSE. THIS SOFTWARE IS PROVIDED BY SMSC \"AS IS\" AND ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY AND\nSPECIFICALLY DISCLAIMED. IN NO EVENT SHALL SMSC BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "smsc-non-commercial-2012.json", + "yaml": "smsc-non-commercial-2012.yml", + "html": "smsc-non-commercial-2012.html", + "license": "smsc-non-commercial-2012.LICENSE" + }, + { + "license_key": "snapeda-design-exception-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-snapeda-design-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Design Exception 1.0: You and your sub-licensees are hereby licensed to design, manufacture, use and distribute, circuit board designs and circuit boards formed by combining Design Files provided by SnapEDA with other circuit elements of your choosing. You may then convey such combinations under terms of your choice, and are not required to attribute SnapEDA as the source, even if such actions would otherwise violate the terms of the Creative Commons License. For clarity, any files shared publicly containing Design Files are still subject to the Site License restriction of 5.1.(g)", + "json": "snapeda-design-exception-1.0.json", + "yaml": "snapeda-design-exception-1.0.yml", + "html": "snapeda-design-exception-1.0.html", + "license": "snapeda-design-exception-1.0.LICENSE" + }, + { + "license_key": "snia", + "category": "Copyleft", + "spdx_license_key": "SNIA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "STORAGE NETWORKING INDUSTRY ASSOCIATION\nPUBLIC LICENSE\nVersion 1.1\n\n1. Definitions.\n\n1.1 \"Commercial Use\" means distribution or otherwise making the Covered Code available to a third party.\n\n1.2 \"Contributor\" means each entity that creates or contributes to the creation of Modifications.\n\n1.3 \"Contributor Version\" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor.\n\n1.4 \"Covered Code\" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof.\n\n1.5 \"Electronic Distribution Mechanism\" means a mechanism generally accepted in the software development community for the electronic transfer of data.\n\n1.6 \"Executable\" means Covered Code in any form other than Source Code.\n\n1.7 \"Initial Developer\" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A.\n\n1.8 \"Larger Work\" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License.\n\n1.9 \"License\" means this document.\n\n1.10 \"Licensable\" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein.\n\n1.11 \"Modifications\" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is:\nA. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications.\nB. Any new file that contains any part of the Original Code or previous Modifications.\n\n1.12 \"Original Code\" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License.\n\n1.13 \"Patent Claims\" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor.\n\n1.14 \"Source Code\" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge.\n\n1.15 \"You\" (or \"Your\") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, \"You\" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, \"control\" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity\n\n2. Source Code License.\n\n2.1 The Initial Developer Grant. The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims:\n(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and\n(b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof).\n(c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License.\n(d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices.\n\n2.2 Contributor Grant. Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license\n(a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and\n(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination).\n(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code.\n(d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor.\n\n3. Distribution Obligations.\n\n3.1 Application of License. The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5.\n\n3.2 Availability of Source Code. Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\n3.3 Description of Modifications. You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code.\n\n3.4 Intellectual Property Matters.\n(a) Third Party Claims. If Contributor has actual knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled \"LEGAL\" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter.\n(b) Contributor API's. If Contributor's Modifications include an application programming interface and Contributor has actual knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file.\n(c) Representations. Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License.\n\n3.5 Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be most likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability (excluding any liability arising from intellectual property claims relating to the Covered Code) incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer.\n\n3.6 Distribution of Executable Versions. You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligation of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability (excluding any liability arising from intellectual property claims relating to the Covered Code) incurred by the Initial Developer or such Contributor as a result of any such terms You offer.\n\n3.7 Larger Works. You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation. If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n\n5. Application of this License. This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n\n6.1 New Versions. The Storage Networking Industry Association (the \"SNIA\") may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number.\n\n6.2 Effect of New Versions. Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by the SNIA. No one other than the SNIA has the right to modify the terms applicable to Covered Code created under this License.\n\n6.3 Derivative Works. If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases \"Storage Networking Industry Association,\" \"SNIA,\" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the SNIA Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.)\n\n7. DISCLAIMER OF WARRANTY. COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n\n8.1 This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within a reasonable time after becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.\n\n8.2 If You initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as \"Participant\") alleging that: o (a) such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above.\n\n8.3 If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license.\n\n8.4 In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination.\n\n9. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS. The Covered Code is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n\n11. MISCELLANEOUS This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n12. RESPONSIBILITY FOR CLAIMS. As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\n13. MULTIPLE-LICENSED CODE. Initial Developer may designate portions of the Covered Code as \"Multiple-Licensed\". \"Multiple-Licensed\" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of this License or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A.\n\n14. ACCEPTANCE. This License is accepted by You if You retain, use, or distribute the Covered Code for any purpose.\n\nEXHIBIT A The SNIA Public License.\n\nThe contents of this file are subject to the SNIA Public License Version 1.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\nwww.snia.org/smi/developers/cim/\n\nSoftware distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.\n\nThe Original Code is .\n\nThe Initial Developer of the Original Code is [COMPLETE THIS] .\n\nContributor(s): .\n\nRead more about this license at http://www.snia.org/smi/developers/open_source/", + "json": "snia.json", + "yaml": "snia.yml", + "html": "snia.html", + "license": "snia.LICENSE" + }, + { + "license_key": "snmp4j-smi", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-snmp4j-smi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SNMP4J-SMI LICENSE AGREEMENT\n============================\n\nTHIS LICENSE AGREEMENT (this \"Agreement\") is made effective as of the date the\nproduct is installed by and between (i) Frank Fock, the author of SNMP4J-SMI\n(\"LICENSOR\") and the party executing this Agreement as Licensee (\"LICENSEE\").\n\n\n1. DEFINITIONS.\n\n1.1 The term \"Software Product\" means Frank Fock's SNMP4J-SMI computer\nsoftware (including Source Code, derived Object Code, and derived Executable\nCode as defined in Section 1.3, 1.4, and 1.5) and documentation thereof, as\nspecified in Exhibit A, that is provided by LICENSOR to LICENSEE hereunder,\nincluding bug fixes and updates thereto provided by LICENSOR to LICENSEE in\nconnection with this Agreement. The term \"derived\" in the above context refers\nto the process of creating machine executable code from the original Source\nCode only. It does not refer to amendment or alteration of the original\nSource Code by LICENSOR or any third party.\n\n1.2 The term \"Intellectual Property Rights\" means patent rights, copyright\nrights, trade secret rights, and any other intellectual property rights.\n\n1.3 The term \"Executable Code\" is a fully compiled and linked program that\ncontains any code derived from the Software Product. It can no longer be altered\nor combined with any other code. Executable code is ready to be executed by a\ncomputer and is essentially a complete software image for use in a specific\nproduct.\n\n1.4 The term \"Object Code\" is the compiled version of the Software Product that\ncan be linked and therefore combined with other code to create Executable Code\nas specified in Exhibit A. Examples of Object Code are libraries and software\ndevelopment kits, in particular SNMP development kits.\n\n1.5 The term \"Source Code\" is the human readable form of the Software Product,\nas specified in Exhibit A.\n\n1.6 Documentation means the documentation regarding the Licensed Software\nprovided by LICENSOR to LICENSEE hereunder.\n\n\n2. GRANT OF LICENSE.\n\n2.1 Source and Object Code User License. Subject to the terms and conditions of\nthis Agreement, and upon payment by LICENSEE to LICENSOR of the one-time license\nfee set forth in Addendum A, LICENSOR grants LICENSEE a perpetual (subject to\ntermination rights in Section 6), non-exclusive, non-transferable license to\nreproduce, and use the Object Code for LICENSEE's personal use only.\n\n2.2 Except as specified in 2.1, neither the Software Product Source Code nor\nObject Code derived from the Software Product may be redistributed or resold.\nExecutable Code programs derived from the Software Product may be redistributed\nand resold without limitation and without royalty, provided that LICENSEE\nadded significant functionality to those derived Excecutable Code programs.\nFunctionality in this context refers to the program's behavior, not appearance.\n\n2.3 No Sublicense Right. LICENSEE has no right to transfer, or sublicense\nthe Licensed Software to any third party, except as specified in 2.2 and\nexcept if the third party takes over the business of LICENSEE.\n\n2.4 Other Restrictions in License Grants. LICENSEE may not: (i) copy the\nLicensed Software, except as necessary to use the Licensed Software in\naccordance with the license granted under Section 2.1 and 2.2, and\nexcept for a reasonable number of backup copies. (ii) LICENSEE acknowledges that\nLicensed Software is not designed or intended for use in the design,\nconstruction, operation or maintenance of any nuclear facility.\n\n2.5 No Trademark License. LICENSEE has no right or license to use any trademark\nof LICENSOR during or after the term of this Agreement.\n\n2.6 Proprietary Notices. The Licensed Software is copyrighted. All proprietary\nnotices incorporated in, marked on, or affixed to the Licensed Software by\nLICENSOR shall be duplicated by LICENSEE on all copies, in whole or in part, in\nany form of the Licensed Software and not be altered, removed, or obliterated on\nsuch copies.\n\n2.7 Reservation. LICENSOR reserve all rights and licenses to the Licensed\nSoftware not expressly granted to LICENSEE under this Agreement.\n\n2.8 Delivery. Upon execution of this Agreement, and payment of the amounts due\nand owing under this Agreement, LICENSOR will provide LICENSEE with one (1) copy\nof the Software Product by downloading from LICENSOR's Web site.\n\n\n\n3. WARRANTY.\n\n3.1. LICENSOR warrants to LICENSEE that for a period of one year from the date\nof purchase, as evidenced by a copy of the receipt, the media on which\nSoftware is furnished (if any) will be free of defects in materials and\nworkmanship under normal use. Except for the foregoing, Software is\nprovided \"AS IS\". LICENSEE exclusive remedy and LICENSOR's entire liability\nunder this limited warranty will be at LICENSOR's option to replace Software\nmedia or refund the fee paid for Software. Any implied warranties on the\nSoftware are limited to one year after receipt of the software according to\n\u00c2\u00a7434 ff Buergerliches Gesetzbuch (BGB).\n\n3.2. In no event shall LICENSOR be liable to LICENSEE, in excess of the\nprice paid to LICENSOR by LICENSEE for the Software Product hereunder, for any\nbreach of warranty or any claim, loss or damage arising from or relating to the\ninstallation, use or performance of the Software Product (including, without\nlimitation, any indirect, special, incidental or consequential damages).\n\n3.3 The above section (3.2) does not apply for liability for damages caused by\ngross negligence or wilful default as well as for liability for personal\ninjury including threats to life or physical condition.\n\n3.4. LICENSOR reserves the right at any time to make changes to the Software\nProduct.\n\n3.5. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS\nOR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED\nWARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON\n-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE\nHELD TO BE LEGALLY INVALID.\n\n3.6 In no event will LICENSOR be liable for any third-party products used with,\nor installed in, the Software Product. LICENSOR does not warrant the\ncompatibility of the Software Product with any third-party products, whether\nhardware or software.\n\n3.7 General Provision. This warranty shall not apply in any case of amendment or\nalterations of the Software Product made by LICENSEE.\n\n\n\n4. INTELLECTUAL AND PROPERTY INDEMNIFICATION.\n\n4.1. LICENSOR agrees to indemnify and hold LICENSEE harmless from any final\naward of costs and damages against LICENSEE for any action based on infringement\nof any German intellectual property rights as a result of the use of the\nLicensed Software: (i) under the terms and conditions specified herein; (ii)\nunder normal use; and (iii) not in combination with other items; provided\nthat LICENSOR is promptly notified in writing of any such suit or claim\nagainst LICENSEE and further provided that LICENSEE permits LICENSOR to\ndefend, compromise or settle the same and gives LICENSOR all available\ninformation, reasonable assistance and authority to enable LICENSOR to do\nso. LICENSOR'S LIABILITY TO LICENSEE PURSUANT TO THIS ARTICLE IS LIMITED TO THE\nTOTAL FEES PAID BY LICENSEE TO LICENSOR IN THE CALENDAR YEAR IN WHICH ANY FINAL\nAWARD OF COSTS AND DAMAGES IS DUE AND OWING.\n\n\n5. TRADE SECRETS AND PROPRIETARY INFORMATION.\n\n5.1. LICENSEE acknowledges that LICENSOR is the owner of the Software Product,\nthat the Software Product is confidential in nature and not in the public\ndomain, that LICENSOR claims all intellectual and industrial property rights\ngranted by law therein and that, except as set forth herein, LICENSOR does not\nhereby grant any rights or ownership of the Software Product to LICENSEE or\nany third party. Except as set forth herein, LICENSEE agrees not to copy or\notherwise reproduce the Software Product, in whole or in part, without\nLICENSOR's prior written consent. LICENSEE further agrees to take all\nreasonable steps to ensure that no unauthorized persons shall have access to the\nSoftware Product and that all authorized persons having access to the Software\nProduct shall refrain from any such disclosure, duplication or\nreproduction except to the extent reasonably required in the performance of\nLICENSEE'S rights under this Agreement.\n\n5.2. LICENSEE agrees to accord the Software Product and the Documentation and\nall other confidential information relating to this Agreement the same degree\nand methods of protection as LICENSEE undertakes with respect to its\nconfidential information, trade secrets and other proprietary data.\n\n5.3. LICENSEE agrees not to challenge, directly or indirectly, the right, title\nand interest of LICENSOR in and to the Software Product, nor the\nvalidity or enforceability of LICENSOR's rights under applicable law. LICENSEE\nagrees not to directly or indirectly, register, apply for registration or\nattempt to acquire any legal protection for the Software Product or any\nproprietary rights therein or to take any other action which may adversely\naffect LICENSOR's right, title or interest in or to the Software Product in any\njurisdiction.\n\n5.4. LICENSEE acknowledges that, in the event of a material breach by LICENSEE\nof its obligations under this Article 5, LICENSOR may immediately\nterminate this Agreement, without liability to LICENSEE and may bring an\nappropriate legal action to enjoin any such breach hereof, and shall be\nentitled to recover from LICENSEE reasonable legal fees and costs in\naddition to other appropriate relief.\n\n5.5. LICENSEE agrees to notify LICENSOR immediately and in writing of all\ncircumstances surrounding the unauthorized possession or use of the Software\nProduct and Documentation by any person or entity. LICENSEE agrees to cooperate\nfully with LICENSOR in any litigation relating to or arising from such\nunauthorized possession or use.\n\n\n6. TERMINATION.\n\n6.1. LICENSOR may terminate this Agreement at any time after the occurrence of\nany of the following events if LICENSOR provides 30 days notice of its intention\nto terminate as a result of the occurrence and LICENSEE fails to cure such\noccurrence within such 30 days:\n\n(a) LICENSEE is declared or acknowledges that it is insolvent or otherwise\nunable to pay its debts as they become due or upon the filing of any proceeding\n(whether voluntary or involuntary) for bankruptcy, insolvency or relief from\ncreditors of LICENSEE;\n\n(b) LICENSEE assigns or transfers this Agreement or any of its rights to\nobligations hereunder, without LICENSOR's prior written consent; or\n\n(c) LICENSEE violates any material provision of this Agreement, including\nwithout limitation, the payment obligations set forth in Addendum A.\n\n6.2. LICENSEE may terminate this Agreement at any time after the occurrence of\nany of the following events if LICENSEE provides 30 days notice of its intention\nto terminate as a result of the occurrence and LICENSOR fails to cure such\noccurrence within such 30 days:\n\n(a) LICENSOR is declared or acknowledges that it is insolvent or otherwise\nunable to pay its debts as they become due or upon the filing of any\nproceeding (whether voluntary or involuntary) for bankruptcy, insolvency or\nrelief from creditors or LICENSOR; or\n\n(b) LICENSOR violates any material provision of this Agreement.\n\n6.3. Upon the termination of this Agreement for any reason, LICENSEE will\ndiscontinue all use of the Software Product and, within ten (10) days after\ntermination, will destroy or delete all copies of the Software Product then\nin its possession, including but not limited to, any back-up or archival copies\nof the Software Product and Documentation. At LICENSOR's request, LICENSEE\nwill verify in writing to LICENSOR that such actions have been taken.\n\n6.4. No termination of this Agreement for any reason whatsoever shall in any way\naffect the continuing obligations of the parties under Articles 5 hereof.\n\n\n7. APPLICABLE LAW\n\nThis LICENSE shall be deemed to have been made in, and shall be construed\npursuant to, the laws of Germany, without reference to conflicts of laws\nprinciples. All controversies and disputes arising out of or relating to this\nAgreement shall be submitted to the exclusive jurisdiction of Esslingen am\nNeckar, Germany, as long as LICENSEE is deemed to be a merchant (as defined by\nHandelsgesetzbuch, \u00c2\u00a71-7). The United Nations Convention on Contracts\nfor the International Sale of Goods is specifically disclaimed.\n\n\n\n8. GENERAL PROVISIONS.\n\n8.1. This Agreement does not create any relationship of association,\npartnership, joint venture or agency between the parties.\n\n8.2. This Agreement (including the Exhibit and Addendum attached to the\nAgreement) sets forth the entire agreement and understandings between the\nparties hereto with respect to the subject matter hereof. This Agreement\nmerges all previous discussions and negotiations between the parties and\nsupersedes and replaces any and every other agreement, which may have existed\nbetween LICENSOR and LICENSEE with respect to the contents hereof.\n\n8.3. Except to the extent and in the manner specified in this Agreement, any\nmodification or amendment of any provision of this Agreement must be in writing\nand bear the signature of the duly authorized representative of each party.\n\n8.4. The failure of either party to exercise any right granted herein, or to\nrequire the performance by the other party hereto of any provision if this\nAgreement, or the waiver by either party of any breach of this Agreement, shall\nnot prevent a subsequent exercise or enforcement of such provisions or be deemed\na waiver of any subsequent breach of the same or any other provision of this\nAgreement.\n\n8.5. Except in the case of merger, acquisition or the sale of substantial assets\nor equity of Licensee or assignment to any direct or indirect subsidiary or\naffiliate of LICENSEE, LICENSEE shall not sell, assign or transfer any of its\nrights, duties or obligations hereunder without the prior written consent of\nLICENSOR. LICENSOR reserves the right to assign or transfer this Agreement or\nany of its rights, duties and obligations hereunder, to any direct or\nindirect subsidiary or affiliate of LICENSOR.\n\n8.6. All notices required by this Agreement must be sent by certified mail in\norder to be deemed effective when sent to the following:\n\nFOR LICENSOR:\n\nFrank Fock\nMaximilian-Kolbe-Str. 10\n73257 Koengen, Germany\n\n\nEXHIBIT A\n\nLicensed Software\n\nSNMP4J-SMI v1.x\n\na. Object Code (Application Programmers Interface) and sample Source Code\n (Java SE 6 or later).\n\nADDENDUM A\n\nIn order to obtain a license to use SNMP4J-SMI under this license agreement,\nLICENSEE has to purchase a commercial license from LICENSOR. The actual pricing\nlist and other related information can be found at http://www.agentpp.com or\nhttp://www.snmp4j.org.\n\nFor evaluation purposes and open source use, a fee free license is granted which\nrestricts the usage of MIB specification with the Software Product to standard\nMIB modules which are not registered under the enterprise OID (1.3.6.1.4).", + "json": "snmp4j-smi.json", + "yaml": "snmp4j-smi.yml", + "html": "snmp4j-smi.html", + "license": "snmp4j-smi.LICENSE" + }, + { + "license_key": "snprintf", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-snprintf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "It may be used for any purpose as long as this notice remains intact on all\nsource code distributions.", + "json": "snprintf.json", + "yaml": "snprintf.yml", + "html": "snprintf.html", + "license": "snprintf.LICENSE" + }, + { + "license_key": "softerra-ldap-browser-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-softerra-ldap-browser-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "END-USER LICENSE AGREEMENT\n\nThis end-user software license agreement is a legal agreement (\"Agreement\") between you (\"Licensee\") and Softerra, LLC (\"Softerra\"), which is the owner of the LDAP Browser Software (\"Software\"). This Agreement specifies the terms and conditions under which Licensee may use the Software.\n\nPLEASE READ THIS LICENSE AGREEMENT CAREFULLY BEFORE DOWNLOADING OR USING THE SOFTWARE.\n\nBY CLICKING ON THE \"ACCEPT\" BUTTON, OPENING THE PACKAGE, DOWNLOADING THE PRODUCT, OR USING THE EQUIPMENT THAT CONTAINS THIS PRODUCT, YOU ARE CONSENTING TO BE BOUND BY THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL OF THE TERMS OF THIS AGREEMENT, CLICK THE \"DO NOT ACCEPT\" BUTTON AND THE INSTALLATION PROCESS WILL NOT CONTINUE, OR DO NOT DOWNLOAD THE PRODUCT.\n\nDefinitions\n\n'Documentation' means the user documentation, in whatever form available, supplied by Softerra with the Software.\n\n'Licensee' means a person or entity that is granted permission through a license to access or otherwise use the Software.\n\n'Outsourcee' means a third party engaged by a Licensee in data processing, consulting, or internal information management at locations designated by Licensee or Outsourcee.\n\n'Upgrades' means any updates, releases, or enhancements that may be provided within the scope of support services.\n\nScope of Use\n\nLicense Restrictions. Except as expressly permitted by this Agreement, Licensee may not: (i) lease, loan, resell, sublicense or otherwise distribute the Software; (ii) use the Software for the benefit of any third party, including without limitation, operation in a timesharing arrangement or in a service bureau; (iii) use the Software to develop products competitive with the Software; (iv) permit third-parties access to, or use of, the Software, except as expressly set forth herein; (v) distribute or publish source code(s) of the Software; or (vi) use unauthorized source code(s). Licensee shall notify Softerra if he/she becomes aware of any unauthorized third party access to or use of the Software.\n\nOutsourcees. If Licensee is contracted with an Outsourcee, Licensee may permit the Outsourcee to access and use the Software provided that: (i) the Outsourcee complies with the terms of this Agreement and accesses and uses the Software solely for purposes of rendering services to Licensee; and (ii) the total number of licenses used by Licensee and Outsourcee do not exceed the number of licenses ordered. Licensee shall ensure that the Outsourcee is informed about and observes the terms and conditions of this Agreement. Upon completion of Licensee's services by the Outsourcee, Licensee shall certify in writing that the Outsourcee has uninstalled and destroyed all copies of Software within thirty (30) days after such completion of services.\n\nDuplication of Software. The number of Software copies made by Licensee shall not exceed the number of licensed copies ordered plus a reasonable number of archival copies for inactive backup purposes. All Software copyright, trademark, patent, and related proprietary notices incorporated in or fixed to the Software shall be duplicated by Licensee on all copies or extracts thereof and shall not be altered, removed, or obliterated.\n\nUpgrades\n\nIf the Software and the related documentation are provided as an upgrade to an earlier licensed release of the Software, then you must have a valid license to operate such earlier release of the same version and edition as the upgrade to install or use the upgrade. All software being upgraded is deemed to be a part of the Software and is subject to this Agreement.\n\nTerm and Termination\n\nThe license granted for the Software will continue until it is terminated. Softerra may terminate any license granted herein if Licensee fail to comply with the terms of this Agreement. Upon the termination of a license for any reason, Licensee must promptly return to Softerra or destroy all copies of the Software and related documentation covered by the license.\n\nTrademarks and Intellectual Property\n\nSoftware is the intellectual property of Softerra.\n\nNo Additional Rights or Licenses. You acknowledge and agree that except for the rights granted in this Agreement, all other rights, and all title and interest in and to the Software (as an independent work and as an underlying work serving as a basis for any application you may develop) and related documentation remain the sole and exclusive property of Softerra, and that you will not derive or assert any title or interest in or to the Software or related documentation. Without limiting the generality of the foregoing, you do not receive any rights to any patents, copyrights, trademarks to the Software or related documentation. This Agreement does not authorize you to use Softerra's name or any of its trademarks.\n\nLimited Warranty SOFTERRA PROVIDES NO REMEDIES OR WARRANTIES, WHETHER EXPRESS OR IMPLIED, FOR THE SOFTWARE. THE SOFTWARE AND DOCUMENTATION ARE PROVIDED \"AS IS\".\n\nYou acknowledge that due to the complexity of the Software, it is possible that use of the Software could lead to the unintentional loss or corruption of data. You assume all risks of such data loss or corruption; the warranties provided in this Agreement do not cover any damages or losses resulting from data loss or corruption.\n\nLimitation on Liability\n\nSofterra assumes no liability or responsibility for any damages resulting from altering the Software in any way, its misuse, accidents, abuse, misapplication, use of third party software that may conflict with the Software as well as use of the Software with other than a recommended hardware configuration.\n\nIN NO CASE SHALL SOFTERRA BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES OR LOSS, INCLUDING, WITHOUT LIMITATION, LOST PROFITS OR THE INABILITY TO USE EQUIPMENT OR ACCESS DATA, WHETHER SUCH DAMAGES ARE BASED UPON A BREACH OF EXPRESS OR IMPLIED WARRANTIES, BREACH OF CONTRACT, NEGLIGENCE, STRICT TORT, OR ANY OTHER LEGAL THEORY. THIS IS TRUE EVEN IF SOFTERRA IS ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nMiscellaneous\n\nThis Agreement is the complete agreement between you and Softerra concerning the Software and related documentation. The failure or delay of Softerra to exercise any of its rights under this Agreement or upon any breach of this Agreement shall not be deemed a waiver of those rights or of the breach.", + "json": "softerra-ldap-browser-eula.json", + "yaml": "softerra-ldap-browser-eula.yml", + "html": "softerra-ldap-browser-eula.html", + "license": "softerra-ldap-browser-eula.LICENSE" + }, + { + "license_key": "softfloat", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-softfloat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SoftFloat Legal Notice\n\nSoftFloat was written by John R. Hauser. \n\nThis work was made possible in part by the International Computer Science\nInstitute, located at Suite 600, 1947 Center Street, Berkeley, California 94704.\nFunding was partially provided by the National Science Foundation under grant\nMIP-9311980.\n\nThe original version of this code was written as part of a project to build\na fixed-point vector processor in collaboration with the University of\nCalifornia at Berkeley, overseen by Profs. Nelson Morgan and John Wawrzynek.\n\nTHIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE. Although reasonable effort\nhas been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT\nTIMES RESULT IN INCORRECT BEHAVIOR. USE OF THIS SOFTWARE IS RESTRICTED TO\nPERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY\nAND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.\n\nDerivative works are acceptable, even for commercial purposes, provided\nthat the minimal documentation requirements stated in the source code are\nsatisfied.", + "json": "softfloat.json", + "yaml": "softfloat.yml", + "html": "softfloat.html", + "license": "softfloat.LICENSE" + }, + { + "license_key": "softfloat-2.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-softfloat-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SoftFloat Legal Notice\n\nWritten by John R. Hauser.\n\nThis work was made possible in part by the International Computer Science\nInstitute, located at Suite 600, 1947 Center Street, Berkeley, California 94704.\nFunding was partially provided by the National Science Foundation under grant\nMIP-9311980.\n\nThe original version of this code was written as part of a project to build\na fixed-point vector processor in collaboration with the University of\nCalifornia at Berkeley, overseen by Profs. Nelson Morgan and John Wawrzynek.\n\nMore information is available through the Web page \nhttp://www.jhauser.us/arithmetic/SoftFloat-2b/SoftFloat-source.txt\n\nTHIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE. Although reasonable effort\nhas been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT\nTIMES RESULT IN INCORRECT BEHAVIOR. USE OF THIS SOFTWARE IS RESTRICTED TO\nPERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY\nAND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.\n\nDerivative works are acceptable, even for commercial purposes, so long as\n(1) they include prominent notice that the work is derivative, and (2) they\ninclude prominent notice akin to these three paragraphs for those parts of\nthis code that are retained.", + "json": "softfloat-2.0.json", + "yaml": "softfloat-2.0.yml", + "html": "softfloat-2.0.html", + "license": "softfloat-2.0.LICENSE" + }, + { + "license_key": "softsurfer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-softsurfer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This code may be freely used and modified for any purpose\nproviding that this copyright notice is included with it.\nCopyright holder makes no warranty for this code, and cannot be held\nliable for any real or imagined damage resulting from its use.\nUsers of this code must verify correctness for their application.", + "json": "softsurfer.json", + "yaml": "softsurfer.yml", + "html": "softsurfer.html", + "license": "softsurfer.LICENSE" + }, + { + "license_key": "solace-software-eula-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-solace-software-eula-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Version: APRIL 1, 2020\n\nSOLACE CORPORATION\n\nLICENCE AGREEMENT FOR SOLACE SOFTWARE\n\nTHIS LICENCE AGREEMENT and any documents expressly referred to in this agreement (the \u201cAgreement\u201d) between SOLACE CORPORATION, a company incorporated under the laws of the Province of Ontario (\u201cSOLACE\u201d) and licensee, the party identified in the Order (as defined below) or that otherwise accepts this Agreement (the \u201cLicensee\u201d) (together the \u201cParties\u201d, and each a \u201cParty\u201d), is made on the Effective Date (as defined below).\n\nBY ACCEPTING THE TERMS OF THIS AGREEMENT, EITHER BY: A) ACCEPTING THE AGREEMENT ONLINE, B) SIGNING THE ORDER (AS DEFINED BELOW) WHICH REFERENCES THIS AGREEMENT, OR C) INSTALLING OR USING THE SOFTWARE AFTER BEING MADE AWARE OF THIS AGREEMENT, THE LICENSEE ACKNOWLEDGES THAT IT HAS READ AND UNDERSTOOD ALL OF THE PROVISIONS, AND HAS THE AUTHORITY TO AGREE TO, AND IS CONFIRMING THAT IT IS AGREEING TO, COMPLY WITH AND BE BOUND BY, ALL OF THE TERMS AND CONDITIONS CONTAINED HEREIN, TOGETHER WITH THE TERMS SET FORTH IN ANY ORDER. IF, AFTER READING THIS AGREEMENT, THE LICENSEE DOES NOT ACCEPT OR AGREE TO THE TERMS AND CONDITIONS CONTAINED HEREIN, THE LICENSEE SHALL NOT INSTALL OR USE THE SOFTWARE.\n\nIF YOU ARE AN AGENT OR EMPLOYEE OF ANOTHER ENTITY THEN YOU HEREBY REPRESENT AND WARRANT THAT: (I) THE INDIVIDUAL ACCEPTING THIS AGREEMENT IS DULY AUTHORIZED TO ACCEPT THIS AGREEMENT ON SUCH ENTITY\u2019S BEHALF AND TO BIND SUCH ENTITY, AND (II) SUCH ENTITY HAS FULL POWER, CORPORATE OR OTHERWISE, TO ENTER INTO THIS AGREEMENT AND PERFORM ITS OBLIGATIONS HEREUNDER.\n\n1 INTERPRETATION\n\n1.1 Definitions. In this Agreement the following terms shall have the following meanings:\n\n\u201cCore\u201d means (i) a single physical processor core or hyper-thread when Solace PubSub+ software is deployed on either a bare-metal server or a cloud or virtualization environment that presents physical cores to the software, and (ii) a single virtual core when deployed in a cloud or virtualization environment that presents virtual cores to the VMR.\n\n\u201cDocumentation\u201d means the documentation made accessible by SOLACE via a URL provided to\nLicensee.\n\n\u201cOrder\u201d means (i) an electronic form provided by SOLACE on its website for ordering Software Subscriptions, Professional Services, and/or Support and Maintenance Services, or (ii) a written document, including a Licensee purchase order, executed by SOLACE and Licensee pursuant to which Licensee purchases of Software Subscriptions, Professional Services, and/or Support and Maintenance Services from SOLACE.\n\n\u201cProducts\u201d means the Software, Documentation, Support and Maintenance Services, Professional\nServices and other products and services that are ordered by Licensee from SOLACE. \u201cSoftware\u201d means the SOLACE software product(s) described in an Order.\n\u201cSOLACE Quotation\u201d means SOLACE\u2019s sales quotation document provided by SOLACE to a prospective customer which sets out the fees for SOLACE\u2019s Products.\n\n\u201cSubscription\u201d means the right granted by SOLACE to Licensee to install and use the Software in accordance with the terms of this Agreement and the applicable Order, for the Subscription Term specified in the applicable Order.\n\n\u201cSubscription Fee\u201d means the fee payable by Licensee for a Subscription in accordance with the terms hereof and the applicable Order.\n\n\u201cSubscription Term\u201d means the period of time that Licensee is authorized by SOLACE to install and use the Software (including the Documentation).\n\n\u201cSupport and Maintenance Services\u201d means the support services provided by SOLACE for the\nSoftware in accordance with the Support and Maintenance Terms.\n\n\u201cSupport and Maintenance Terms\u201d means SOLACE\u2019S policies, terms and conditions for the provision of Support and Maintenance Services to its customers, a copy of which is available on the SOLACE website at https://solace.com/support.\n\n\u201cStatement of Work\u201d or \u201cSOW\u201d shall mean a statement of work in the form attached hereto as Schedule B pursuant to which the parties agree upon the Professional Services to be provided by SOLACE to Licensee, the fees to be charged, milestones, deliverables and such other terms and conditions as the parties may agree upon.\n\n1.2\tCurrency. Unless otherwise specified, all dollar amounts in this Agreement, including the symbol\n\u201c$\u201d, refer to United States currency.\n\n2\tLICENSE GRANT\n\n2.1\tGeneral License to Software.\n\n(a) Provided Licensee complies with this Agreement, SOLACE hereby grants to Licensee a non-exclusive, non-sublicensable (except as permitted in accordance with Section 2.6 below), non-transferable, license, during the term of this Agreement, to install and use the Software in object code form during the applicable Subscription Term for the number of Cores specified in the Order, solely for the Licensee\u2019s internal business purposes and in accordance with the terms of this Agreement.\n\n(b) If Licensee requires a license from SOLACE to enable Licensee to bundle or otherwise make available a Product with Licensee\u2019s own software, such bundling will be pursuant to separate terms to be agreed.\n\n2.2 Documentation. Provided Licensee complies with this Agreement, Licensee may reproduce the Documentation, for use on an internal basis only, and solely in support of the Licensee\u2019s licensed use of the Software. Distribution of the Documentation outside of Licensee is prohibited without\nthe express written permission of SOLACE. Licensee must reproduce all copyright and other proprietary notices that are on the original copy of the Documentation.\n\n2.3 Back-up Copy. In addition to the number of copies of the Software installed and used pursuant to Section 2.1 and paid for in accordance with Section 5, Licensee may make one copy of each licensed Product per Subscription solely for back-up purposes, provided that Licensee reproduces all copyright and other proprietary notices that are on the original copy of the Software and such back-up copy is not installed or used other than for back-up and recovery purposes. Back-up copies that are used as part of a live or \u2018hot\u2019 back-up will be subject to additional fees.\n\n2.4 Use Restrictions. Licensee will not: (a) reverse engineer, disassemble, decompile, or translate the Software (other than Sample Applications), or otherwise attempt to derive the source code version of the Software, except if and only to the extent expressly permitted by applicable law, and provided that Licensee first approaches SOLACE and seeks permission in writing; (b) except as expressly permitted in this Agreement, rent, lease, loan or otherwise in any manner provide, transfer or distribute the Products or any part thereof to any third party; (c) use the Software in violation of applicable laws; (d) circumvent any user limits or other license timing or use restrictions that are built into the Software; and (e) except as expressly permitted in this Agreement, reproduce, distribute, publicly perform, publicly display or create adaptations or derivative works of or based on the Products.\n\n2.5 Publicly Available Software. Portions of the Software include software programs that are distributed by SOLACE pursuant to the terms and conditions of a license granted by the copyright owner of such software programs and which governs Customer\u2019s use of such software programs (\u201cPublicly Available Software\u201d). The Licensee\u2019s use of Publicly Available Software in conjunction with the Software in a manner consistent with the terms of this Agreement is permitted, however, the Licensee may have broader rights under the applicable license for Publicly Available Software and nothing contained herein is intended to impose restrictions or limitations on the Licensee\u2019s use of the Publicly Available Software. The warranty, indemnity and limitation of liability provisions in this Agreement will apply to all of the Software, including Publicly Available Software included in the Software. Copies of such Publicly Available Software license agreements are available by contacting Licensor at support@solace.com. The source code for certain portions of the Publicly Available Software included in the Software (as specified in the copyright notices) is available by contacting SOLACE at support@solcae.com within a three (3) year period from the original date of receipt of the applicable Software or Adapter and for a fee that shall not exceed Licensor' costs associated with the shipping of such software source code.\n\n2.6 Sub-licensing. Any sub-licensing of the Software under this Agreement must be expressly authorized by SOLACE pursuant to an Order or otherwise in writing. Any attempt by Licensee to sub-license or otherwise transfer the Products to a third party in breach of this restriction will be void. Any sub-licensing that may be permitted under this Agreement by SOLACE will be subject to such sub-licensee agreeing to substantially similar restrictions and obligations set out in this Agreement. Licensee will be fully liable for any breach by a sub-licensee of any restriction or\nobligation, and SOLACE may bring a Claim against Licensee if SOLACE suffers any Losses arising from such breach.\n\n2.7\tEvaluation Licenses.\n\n(a) If the Software provided to Licensee under this Agreement is designated by SOLACE in an Order or otherwise as an evaluation release (indicated by terms such as \u201cpre- commercial\u201d, \u201calpha,\u201d \u201cbeta,\u201d \u201ctrial,\u201d \u201cdraft,\u201d \u201cearly access,\u201d \u201cEA\u201d or \u201cevaluation\u201d) (each an \u201cEvaluation Software Release\u201d), Licensee will have the limited right under this Agreement to download and install the Software on the number of Cores identified in the Order or, if not identified, one Core, for the Licensee\u2019s internal and non-commercial evaluation of the Software.\n\n(b) Licensee acknowledges that the Evaluation Software Release may not meet performance and compatibility standards of a production version. The Evaluation Software Release may not operate correctly, may be substantially modified by SOLACE prior to first commercial shipment, and may be withdrawn completely and never issued for commercial use.\n\n(c) If Licensee desires other rights for the Evaluation Software Release, Licensee must request from SOLACE a commercial release of the Software.\n\n(d) The limited use license granted in subsection (a) will automatically expire on the earlier of: (i) the date when the Software is made available to Licensee as a commercially available product, and (ii) the date specified in the Order or, if no such date is identified in the Order, the date that is 30 days after the date of delivery or provision of the Evaluation Software Release to Licensee. Following license expiry Licensee will permanently delete or otherwise purge such Evaluation Software Release from Licensee\u2019s systems and, if requested by SOLACE, certify the same.\n\n2.8 License of APIs. Provided Licensee complies with this Agreement and any terms that SOLACE provides, SOLACE grants to Licensee a non-exclusive, royalty free license, during the term of this Agreement, to download, install and use, the applicable application programming interfaces that may be made available by SOLACE with the Software (\u201cAPIs\u201d) solely to create interfaces between the Software and the Licensee\u2019s software or third party software on Licensee\u2019s systems.\n\n2.9\tLicense to Sample Applications.\n\n(a) SOLACE may, in its sole discretion, provide certain sample Software in source code or object code form for the purposes of demonstrating certain features enabled by the Software, including demonstrating to Licensees how to build applications using APIs, and for use by Licensees with such APIs (each, a \u201cSample Application\u201d).\n\n(b) Whether provided separately or together with other Software, if SOLACE provides such Sample Application to Licensee, then SOLACE hereby grants to Licensee a non- sublicensable, non-transferable, non-exclusive, revocable license, to install such Sample Application for Licensee\u2019s evaluation for the same duration as the Software with which\ndelivery of the Sample Application.\n\n3\tOPTIONAL SERVICES AND SUPPORT\n\n3.1 Optional Services. Licensee acknowledge that certain optional services, such as training, integration and development services may be provided by SOLACE in association with the Products, and access to such services will be provided only pursuant to a Statement of Work executed by SOLACE and Licensee and may include separate and additional fees.\n\n3.2\tSupport.\n\n(a) Provided Licensee complies with this Agreement, SOLACE will provide Support and Maintenance Services the Software in accordance with SOLACE\u2019s then standard Support and Maintenance Terms. The level of support will be dependent on whether Licensee has procured either the \u2018Premium Support Plan\u2019 or \u2018Standard Support Plan\u2019 defined in SOLACE\u2019s Support and Maintenance Terms and as specified in the applicable Order.\n\n(b) SOLACE may enhance such standard Support and Maintenance Services from time to time in its discretion.\n\n(c) For greater clarity, SOLACE\u2019s then standard Support and Maintenance Terms do not apply to Evaluation Software Releases, Sample Applications or any free versions of the Software that may be made available. SOLACE may make available support related information on a free basis for such Software on its publicly accessible website or otherwise, and such support related information will, for greater clarity, be subject to the limitations and exclusions in this Agreement.\n\n4\tPROPRIETARY RIGHTS\n\n4.1 Intellectual Property Rights. In this Agreement \u201cIntellectual Property Rights\u201d means: (a) any and all proprietary rights anywhere in the world provided under: (i) patent law; (ii) copyright law (including moral rights); (iii) trademark law; (iv) design patent or industrial design law; or (v) any other statutory provision or common law principle applicable to this Agreement, including trade secret law, that may provide a right in either hardware or information generally or the expression or use of such hardware or information; (b) any and all applications, registrations, licenses, sub- licenses, franchises, agreements or any other evidence of a right in any of the foregoing. Except for the licenses expressly granted herein, othing in this Agreement or the provision of the Products conveys or otherwise provides to Licensee title, interest or any Intellectual Property Rights in or to: (a) the Products, or (b) know-how, ideas, or any other subject matter protectable under laws applicable to Intellectual Property Rights of any jurisdiction. As between Licensee and SOLACE, SOLACE and its affiliates and licensors are the sole and exclusive owners of the Products, including Intellectual Property Rights therein.\n\n4.2 Feedback. Licensee is encouraged to provide to SOLACE suggestions, comments and feedback related to the Products (including reporting bugs) (the \u201cFeedback\u201d). Licensee hereby grants to SOLACE a license to use, copy, distribute, modify or otherwise adapt, incorporate into any software and documentation, including the Products, and sublicense, without attribution or compensation to Licensee, all Feedback which SOLACE receives or otherwise obtains from\nor will cause all moral rights to be waived in any Feedback.\n\n4.3 Third Party Licenses. The Software may contain or require third party software that is licensed under third party terms. SOLACE may direct Licensee to such third party terms, and in some instances the Software cannot be used or further distributed without Licensee\u2019s acceptance of such terms. Any failure of Licensee to agree to the terms applicable to such third party software may undermine certain functionality of or prevent Licensee from using the Software.\n\n4.4\tOpen Source Software.\n\n(a) Licensee will not represent to third parties, or use any third party software or code in conjunction with: (i) the Software; or (ii) any software, products, documentation, content or other materials developed using the Software, in such a way that: (A) creates, purports to create or has the potential to create, obligations for SOLACE with respect to the Software; or (B) grants, purports to grant, or has the potential to grant to any third party any rights to or immunities under any Intellectual Property Rights of SOLACE, as such rights exist in or relate to the Products.\n\n(b) Licensee will not use any Software in any manner, including through incorporation, linking, distribution or otherwise, that will cause any Products and any Intellectual Property Rights therein to become subject to any encumbrance or terms and conditions of any third party or open source license, including any open source license listed on http://www.opensource.org/licenses/alphabetical (each an \u201cOpen Source License\u201d).\n\n(c) The restrictions, limitations, exclusions and conditions referred to under subsection (b) will apply even if SOLACE becomes aware of or fails to act in a manner to address any violation or failure to comply therewith. No act by SOLACE that is undertaken under this Agreement in respect to any Products will be construed as intending to cause any Intellectual Property Rights that are owned or controlled by SOLACE or any of its affiliates (or for which SOLACE or any of its affiliates has received license rights) to become subject to any encumbrance or terms and conditions of any Open Source License.\n\n4.5\tUse of Name and Logo. Licensee will not display or make any use of SOLACE\u2019s or its affiliates\u2019\nnames, marks or logos without the prior written approval of SOLACE.\n\n5\tFEES AND TAXES\n\n5.1 Fees. Licensee shall pay the applicable Subscription Fees and support fees specified in the applicable Order. Except as otherwise specified herein or in an Order, Subscription Fees are based on Subscriptions purchased and not actual usage. Subscription Fees paid are refundable if the number of Subscriptions purchased are decreased during the relevant Subscription Term.\n\n5.2 Invoices and Payment. Subscription Fees will be invoiced in advance and otherwise in accordance with the relevant Order. All invoices issued by SOLACE are due and payable within 30 days of the invoice date unless otherwise agreed in an Order. Licensee will be responsible for any and all\nsales, use, excise, import, value-added, services, consumption, and other taxes assessed on the receipt of the Products, and any related services as a whole.\n\n5.3 Overdue Charges. Any payment not received from Customer by the due date may accrue (except with respect to charges then subject to a reasonable and good faith dispute), at Licensor' discretion, late charges at the rate of 1.5% of the outstanding balance per month (19.57% per annum), or the maximum rate permitted by law, whichever is lower, from the date such payment was due until the date paid.\n\n6\tCONFIDENTIALITY\n\n6.1\tDefinition of Confidential Information.\n\nIn this Agreement \u201cConfidential Information\u201d of a Party means any information of a Party (including in respect to SOLACE any of its affiliates, licensors, customers, employees or subcontractors) (the \u201cDisclosing Party\u201d), whether oral, written or in electronic form, which has or will come into the possession or knowledge of the other Party (the \u201cReceiving Party\u201d) in connection with or as a result of entering into this Agreement that can reasonably be considered to be confidential in the circumstances of disclosure or which is designated as confidential. The Products, any performance information, service levels, support terms, and results of testing of the Software, and the terms of this Agreement are Confidential Information of SOLACE. Notwithstanding the foregoing, \u201cConfidential Information\u201d does not include information that is:\n\n(a) publicly available when it is received by or becomes known to the Receiving Party or that subsequently becomes publicly available other than through a direct or indirect act or omission of the Receiving Party (but only after it becomes publicly available);\n\n(b) established by evidence to have been already known to the Receiving Party at the time of its disclosure to the Receiving Party and is not known by the Receiving Party to be the subject of an obligation of confidence of any kind;\n\n(c) independently developed by the Receiving Party without any use of or reference to the Confidential Information of the Disclosing Party as established by evidence that would be acceptable to a court of competent jurisdiction;\n\n(d) received by the Receiving Party in good faith without an obligation of confidence of any kind from a third party who the Receiving Party had no reason to believe was not lawfully in possession of such information free of any obligation of confidence of any kind, but only until the Receiving Party subsequently comes to have reason to believe that such information was subject to an obligation of confidence of any kind when originally received; or\n\n(e) Feedback provided by Licensee or a representative of Licensee.\n\n6.2\tConfidentiality Obligations.\n\n(a) Each Party will, in its capacity as a Receiving Party: (i) not use or reproduce Confidential Information of the Disclosing Party for any purpose, other than as may be reasonably necessary for the exercise of its rights or the performance of its obligations set out in this\nAgreement; and (ii) not disclose, provide access to, transfer or otherwise make available any Confidential Information of the Disclosing Party to any third party except as expressly permitted in this Agreement.\n\n(b) Each Party may, in its capacity as a Receiving Party, disclose Confidential Information of the Disclosing Party: (i) if and to the extent required by a governmental authority or otherwise as required by applicable law, provided that the Receiving Party must first give the Disclosing Party notice of such compelled disclosure (except where prohibited by applicable law from doing so) and must use commercially reasonable efforts to provide the Disclosing Party with an opportunity to take such steps as it desires to challenge or contest such disclosure or seek a protective order. Thereafter, the Receiving Party may disclose the Confidential Information of the Disclosing Party, but only to the extent required by applicable law and subject to any protective order that applies to such disclosure; and (ii) to: (A) its accountants, internal and external auditors and other professional advisors if and to the extent that such persons need to know such Confidential Information in order to provide the applicable professional advisory services relating to the Receiving Party; and (B) employees of the Receiving Party and its subcontractors if and to the extent that such persons need to know such Confidential Information to perform their respective obligations under this Agreement;\n\nprovided that any such person is aware of the provisions of this Section 6.2 and has entered into a written agreement with the Receiving Party that includes confidentiality obligations in respect of such Confidential Information of the Disclosing Party that are no less stringent than those contained in this Section 6.2.\n\n6.3 Consent to Injunctive Relief. Any unauthorized use or disclosure of the Confidential Information of SOLACE, its affiliates or licensors may cause irreparable harm and significant injury to SOLACE that would be difficult to ascertain or quantify; accordingly Licensee agrees that SOLACE will have the right to seek and obtain injunctive or other equitable relief to enforce the terms of this Agreement and without limiting any other rights or remedies that SOLACE may have.\n\n7\tWARRANTY AND DISCLAIMER OF WARRANTIES.\n\n7.1 Warranty. SOLACE warrants that the Software will materially comply with the Documentation during the Subscription Term. If the Software does not materially conform with the warranty in the prior sentence, provided that Licensee is in compliance with the terms of this Agreement, and all Subscription Fees are fully-paid up, SOLACE will provide the support to Licensee in respect to the applicable Software to the extent set out in SOLACE\u2019s then current Support and Maintenance Terms, and the provision of support to correct the non-compliance with the warranty in this Section will be Licensee\u2019s sole and exclusive remedy in the event of non-compliance with the\nwarranty in this Section by SOLACE. All other support will be dependent on the plan procured by\nLicensee, as defined in the Support and Maintenance Terms.\n\n7.2\tDisclaimers.\n\n(a) EXCEPT AS SET OUT IN SECTION 7.1, THE PRODUCTS AND SUPPORT THAT MAY BE PROVIDED BY SOLACE UNDER THIS AGREEMENT, IS PROVIDED \u2018AS-IS\u2019 AND \u2018AS AVAILABLE\u2019.\n\n(b) Except as set out in Section 7.1, the Products and support are without any additional warranties of any kind, whether express, implied, collateral, statutory or otherwise. SOLACE does not warrant or make any representations regarding the use, or the results of the use, of the Products in terms of its correctness, accuracy, reliability, or otherwise.\n\n(c) SOLACE does not represent or warrant that the functionality of the Products will meet Licensee requirements, or that the operation of the Products will be uninterrupted or error-free, or that the Products or any service enabled by the use of the Software will always be available, or that defects in the Products will be corrected.\n\n(d) TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW, SOLACE ON ITS OWN BEHALF AND ON BEHALF OF ITS AFFILIATES AND LICENSOR(S) EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS, WHETHER EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING ANY IMPLIED WARRANTIES, AND CONDITIONS OF MERCHANTABLE QUALITY, MERCHANTABILITY, QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.\n\n(e)\tSome jurisdictions do not allow the exclusion of implied warranties, so exclusions in this\nArticle 7 will apply only to the extent permitted by applicable law.\n\n8\tLICENSEE INDEMNITY AND EXCLUSION.\n\n8.1\tLicensee Indemnity.\n\n(a) Without limiting SOLACE\u2019s rights and remedies under this Agreement, Licensee will indemnify, defend and hold SOLACE, its licensors, affiliates or any of their respective directors, officers, employees or agents (together, the \u201cSolace Indemnitees\u201d) harmless from and against any and all third party Claims and Losses incurred or otherwise suffered by each SOLACE Indemnitee arising out of, resulting from or related to:\n\n(i) any use, reproduction or distribution of the Products (notwithstanding the restrictions and obligations in this Agreement), as modified or integrated by Licensee in Licensee application, which causes an infringement or misappropriation of any Intellectual Property Right, publicity or privacy right of any third parties arising in any jurisdiction anywhere in the world, except and\nsolely to the extent such infringement is caused by the unmodified Software, or portions thereof, as supplied to Licensee by SOLACE under this Agreement; or\n\n(ii)\tany use, downloading, distribution, installation, storage, execution, or transfer of the Products in breach of this Agreement.\n\n(b) SOLACE may enforce the indemnity under this Article 8 on behalf of any or all of the SOLACE Indemnitees. Licensee may only bring a Claim against SOLACE and not any SOLACE Indemnitees under this Agreement.\n\n8.2\tSOLACE Indemnity.\n\n(a) SOLACE will defend Licensee from and against any and all Claims by a third party incurred or otherwise suffered by Licensee arising out of, resulting from or related to a Claim that the Products licensed pursuant to Section 2.1 infringe or misappropriate third party copyright or patent rights in Canada or the United States of America, and indemnity Licensee from any damages awarded by a court of final determination.\n\n(b) Without limitation, Section 8.2 will not be applicable and SOLACE will not be liable to defend a Claim to the extent that such Claim is based on: (i) Licensee\u2019s use of the Products after SOLACE notifies Licensee to discontinue using them; (ii) Licensee combining the Products with non-SOLACE services, products, programs or data; or (iii) Licensee altering or modifying the Products.\n\n(c) If SOLACE receives information concerning an infringement or misappropriation Claim related to the Products, SOLACE may, at its expense and without obligation to do so, either: (i) procure the Intellectual Property Rights or other right(s) to continue to use the Product; or (ii) replace or modify the Product to make it non-infringing; or (iii) immediately terminate this Agreement on written notice to Licensee, in which case SOLACE will refund to Licensee, on a pro-rata basis, any pre-paid fees in respect to such Product from the date of such termination to the end of the then current Subscription Term for such Product; and this Section 8.2(c) states the sole and exclusive remedy of Licensee and the entire liability of SOLACE for third party infringement claims and actions.\n\n8.3 Indemnification Procedures. Each Party\u2019s obligations under this Article 8 are contingent on all of the following: (i) the Party seeking the indemnity (the \u201cIndemnified Party\u201d) must notify the other Party (the \u201cIndemnifying Party\u201d), in a timely manner and in writing of the Claim; (ii) the Indemnified Party must give the Indemnifying Party sole control over defense and settlement of the Claim; (iii) the Indemnified Party must provide the Indemnifying Party with reasonable information and assistance, at the Indemnifying Party\u2019s request, as needed in defending the Claim (the Indemnifying Party will reimburse the Indemnified Party for reasonable expenses that the Indemnified Party incurs in providing that assistance). The Indemnified Party may choose to have its counsel, monitor or participate in the defense of such a Claim provided that the Indemnified Party will be responsible for the cost of its own counsel and the Indemnifying Party\u2019s obligations in this Article 8 do not extend to the Indemnified Party\u2019s legal costs should it wish to exercise such right. The Indemnifying Party will not be responsible for any settlement made by the Indemnified\nClaim without the Indemnified Party\u2019s prior written consent.\n\n9\tLIMITATIONS OF LIABILITY.\n\n9.1\tDefinition and Limitations of Liability.\n\n(a) In this Agreement: \u201cClaim\u201d means any actual, threatened or potential civil, criminal, administrative, regulatory, arbitral or investigative demand, allegation, action, suit, investigation or proceeding or any other claim or demand; and \u201cLosses\u201d means any and all damages, fines, penalties, deficiencies, losses, liabilities (including settlements and judgments), costs and expenses (including interest, court costs, reasonable fees and expenses of lawyers, accountants and other experts and professionals or other reasonable fees and expenses of litigation or other proceedings or of any Claim, default or assessment).\n\n(b) SUBJECT TO SECTION 9.1(d), TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, UNDER NO CIRCUMSTANCES WILL SOLACE INDEMNITEES BE LIABLE FOR (A) ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE, EXEMPLARY OR CONSEQUENTIAL DAMAGES; OR (B) ANY DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION, IN EACH CASE, ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT, INCLUDING ANY DOWNLOAD, INSTALLATION OR USE OF, OR INABILITY TO USE, THE PRODUCTS; EVEN IF SUCH DAMAGES WERE FORESEEABLE, AND REGARDLESS OF WHETHER THE SOLACE INDEMNITIEES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n(c) SUBJECT TO SECTION 9.1(d), TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL SOLACE INDEMNITEES\u2019 TOTAL AGGREGATE LIABILITY IN RESPECT OF THIS AGREEMENT, INCLUDING THE PRODUCTS AND ANY SERVICES THAT MAY BE PROVIDED HEREUNDER, FOR ANY AND ALL LOSSES AND CLAIMS EXCEED THE AMOUNTS PAID TO SOLACE IN THE 12 MONTHS IMMEDIATELY PRECEDING THE EVENT GIVING RISE TO THE CLAIM.\n\n(d)\tCertain Damages Not Excluded or Limited. NOTWITHSTANDING THE FOREGOING, SECTIONS 9.1 (b) AND (c) DO NOT APPLY TO (I) DAMAGES ARISING FROM A PARTY\u2019S BREACH OF ITS CONFIDENTIALITY OBLIGATIONS HEREUNDER, (II) INDEMNIFICATION CLAIMS, (III) DAMAGES ARISING FROM INFRINGEMENT OF A PARTY\u2019S INTELLECTUAL PROPERTY RIGHTS; (IV) ANY CLAIMS FOR NON-PAYMENT, (V) FRAUD OR WILLFUL MISCONDUCT, OR (VI) BODILY INJURY OR DEATH.\n\n(e) This Article 9 will apply irrespective of the nature of the cause of action, demand or Claim, including, breach of contract (including fundamental breach), negligence (including gross negligence), tort or any other legal theory, and will survive a fundamental breach or breaches of this Agreement or of any remedy contained herein.\n\n10\tTERM AND TERMINATION.\nuntil the expiry of the Subscription Term set out in the Order or the Agreement terminates in accordance with its terms. Subject to payment of the applicable Software Fees, Software Subscriptions shall automatically renew for additional periods equal to the expiring Subscription Term or one (1) year (whichever is shorter), unless either party gives the other notice of non- renewal at least thirty (30) days prior to the end of the then-current Subscription Term. The Subscription Fees during any automatic renewal term will be as set forth in the applicable Order.\n\n10.2 Termination for Cause. A party may terminate this Agreement for cause (i) upon 30 days\u2019 written notice to the other party of a material breach if such breach remains uncured at the expiration of such period, or (ii) if the other party becomes the subject of a petition in bankruptcy or any other proceeding relating to insolvency, receivership, liquidation or assignment for the benefit of creditors.\n\n10.3 Termination by SOLACE. SOLACE may terminate this Agreement for cause with immediate effect on written notice if Licensee commits a breach of Articles 4 or 5 by Licensee.\n\n10.4 Termination of Sample Application and Evaluation Software Release Licenses for Convenience by SOLACE. SOLACE may terminate the licenses in respect to the Sample Applications, Evaluation Software Releases, and any other Products that may be licensed by SOLACE on a trial basis, at any time for convenience, upon written notice to Licensee.\n\n10.5 Termination of Licenses of Trial Software. Subject to Section 10.4, if any Software is licensed for use by a Licensee on a trial basis, the license to use such Software during a trial period will continue for such duration set out in an Order.\n\n10.6 Effects of Termination. Upon termination or expiry of this Agreement or specific licenses granted hereunder for any reason, and without limiting SOLACE\u2019s other rights or remedies under this Agreement: (a) Licensee must permanently delete or destroy, or otherwise purge, all copies (electronic or otherwise) of the applicable Products from Licensee\u2019s systems, and any other Confidential Information of SOLACE, in Licensee\u2019s possession or control, and, if requested by SOLACE, certify the same, and the license and other rights granted to Licensee in this Agreement will terminate; (b) termination or expiration of this Agreement or an individual Subscription will result in termination of any applicable Support and Maintenance Services; and (c) Licensee will not receive a return of any pre-paid fees in respect to the applicable Products, on a pro-rata basis or otherwise, except where expressly stated in this Agreement.\n\n10.7 Survival. Neither the expiration nor the earlier termination of this Agreement will release either of the Parties from any obligation or liability that accrued prior to such expiration or termination. The provisions of this Agreement requiring performance or fulfilment after the expiration or earlier termination of this Agreement, including Articles 4, 5, 7, 8, 9, 10, 11, 12, and 13, and such other provisions as are necessary for the interpretation thereof and any other provisions hereof, the nature and intent of which is to survive termination or expiration of this Agreement, will survive the expiration or earlier termination of this Agreement.\n\n11\tAUDIT AND REMEDIATION\n\n11.1 Audit. During the term of this Agreement and for two years thereafter, SOLACE or any internal or external audit representative acting on behalf of SOLACE (the \u201cSOLACE Audit Representatives\u201d)\nregular business hours and upon reasonable prior written notice to Licensee, to audit and inspect on a mutually agreed upon date and location any system or facility or part of a system or facility to which Licensee has downloaded the Software or is receiving any services (or both) in order to verify the performance by Licensee of its obligations under this Agreement, including the Licensee\u2019s usage of the Products in accordance with the restrictions and terms in this Agreement.\n\n11.2 Remediation. Without limiting SOLACE\u2019s rights and remedies under this Agreement, if an audit conducted pursuant to this Agreement reveals any error, deficiency or other failure to perform on the part of Licensee including use of the Software contrary to the licenses in this Agreement or installed on systems, computers or processors for which the Licensee has not paid applicable Subscription Fees: (a) Licensee will immediately pay to SOLACE any fees due and payable for Software used in breach of the restrictions in this Agreement, plus interest at the lesser of: (i) the rate of 1.5 percent per month compounded monthly (19.562 percent per annum); or (ii) the maximum rate allowed by applicable law, in each case, on the amount outstanding from the date when payment is due until the date payment in full is received by SOLACE; and (b) pursue any other right or remedy SOLACE may have under this Agreement.\n\n12\tEXPORT COMPLIANCE ASSURANCES\n\n(a) All Products obtained from SOLACE are subject to the export control and economic sanctions laws and regulations of Canada, including the Exports and Import Permits Act, R.S.C. 1985, c. E-19, Area Control List, Export Control List, and the United States, including the\tExport Administration Regulations (\u201cEAR\u201d, 15 CFR 730 et seq., http://www.bis.doc.gov/) administered by the Department of Commerce, Bureau of Industry and Security, and the Foreign Asset Control Regulations (31 CFR 500 et seq., http://www.treas.gov/offices/enforcement/ofac/) administered by the Department of Treasury, Office of Foreign Assets Control (\u201cOFAC\u201d), each as may be amended and updated from time to time.\n\n(b) Licensee will not, and will ensure that Licensee will not directly or indirectly export, re- export, transfer or release (collectively, \u201cexport\u201d) any Products to any destination, person, entity or end use prohibited or restricted under Canadian or US law, or the laws of the jurisdiction in which Licensee is resident or in which Licensee uses the Products, without prior government or regulatory authorization to the extent required by applicable laws and regulations.\n\n(c) The US government maintains embargoes and sanctions against the countries listed in Country Groups E:1/2 of the EAR (Supplement 1 to part 740), including, as at the Effective Date, Cuba, Iran, North Korea, Sudan and Syria, as amended from time to time. Licensee will not directly or indirectly employ any Product received from SOLACE in missile technology, sensitive nuclear or chemical biological weapons activities, or in any manner knowingly transfer any Product to any party for any such end use. Licensee will not export Products listed in Supplement 2 to part 744 of the EAR for military end-uses, as defined in part 744.21, to the People\u2019s Republic of China. Licensee will not transfer any Product to any party listed on any of the denied parties lists or specially designated nationals lists maintained under said regulations without appropriate US government authorization to the extent required by regulation. Licensee acknowledge that other countries may have\ntrade laws pertaining to import, use, export or distribution of Products, and that compliance with same is Licensee responsibility.\n\n(d) Licensee may not use the Products if Licensee is barred from receiving the Products under the laws of Canada, the United States or any other country including the country in which Licensee are resident or in which Licensee use the Products.\n\n13\tGENERAL\n\n13.1 U.S. Government Users. If Licensee are acting on behalf of an agency or instrumentality of the U.S. federal government, the Product, as applicable, are \u201ccommercial computer software\u201d and \u201ccommercial computer software documentation\u201d developed exclusively at private expense by SOLACE. Pursuant to FAR 12.212 or DFARS 227 7202 and their successors, as applicable, use, reproduction and disclosure of the Products is governed by the terms of this Agreement.\n\n13.2 Entire Agreement. This Agreement, and the agreements and other documents required to be delivered pursuant to this Agreement, constitute the entire and exclusive agreement between SOLACE and Licensee, and sets out all the covenants, promises, warranties, representations, conditions and agreements between the Parties in connection with the subject matter of this Agreement, and supersedes all prior agreements (whether written or oral, pre-contractual or otherwise) and other communications between SOLACE and Licensee. There are no covenants, promises, warranties, representations, conditions or other agreements, whether oral or written, pre-contractual or otherwise, express, implied or collateral, whether statutory or otherwise, between the Parties in connection with the subject matter of this Agreement except as specifically set forth in this Agreement and any document required to be delivered pursuant to this Agreement.\n\n13.3 Amendments. This Agreement may be modified only by a written amendment agreed to by both Licensee and SOLACE, except that SOLACE may modify the Documentation from time to time, provided that SOLACE does not materially lessen the description of the functionality of the Products as a result of such modification.\n\n13.4 English Language. This Agreement is entered into solely in the English language, and if for any reason any other language version is prepared by any Party, it will be solely for convenience and the English version will govern and control in all respects. If Licensee are located in the province of Quebec, Canada, the following applies: The Parties hereby confirm they have requested this Agreement and all related documents be prepared in English. Les parties ont exig\u00e9 que le pr\u00e9sent contrat et tous les documents connexes soient r\u00e9dig\u00e9s en anglais.\n\n13.5 Waiver. To be effective, any waiver by a Party of any of its rights or any other Party\u2019s obligations under this Agreement must be made in a writing signed by the Party to be charged with the waiver. No failure or forbearance by any Party to insist upon or enforce performance by any other Party of any of the provisions of this Agreement or to exercise any rights or remedies under this Agreement or otherwise at law or in equity will be construed as a waiver or relinquishment to any extent of such Party\u2019s right to assert or rely upon any such provision, right, or remedy in that or any other instance; rather, the same will be and remain in full force and effect. A Party\u2019s waiver\nof a breach of any term will not be a waiver of any subsequent breach of the same or another term.\n\n13.6 Cumulative Rights. The rights of each Party hereunder are cumulative and no exercise or enforcement by a Party of any right or remedy hereunder will preclude the exercise or enforcement by such Party of any other right or remedy hereunder or which such Party is otherwise entitled by law to enforce.\n\n13.7 Severability. If, in any jurisdiction, any provision of this Agreement or its application to any Party or circumstance is restricted, prohibited or unenforceable, the provision will, as to that jurisdiction, be ineffective only to the extent of the restriction, prohibition or unenforceability without invalidating the remaining provisions of this Agreement and without affecting the validity or enforceability of such provision in any other jurisdiction, or without affecting its application to other Parties or circumstances.\n\n13.8 Assignment. SOLACE may assign this Agreement or any of the benefits, rights or obligations under this Agreement without the prior written consent of the Licensee. Licensee may not assign this Agreement or any of the benefits, rights or obligations under this Agreement without the prior written consent of SOLACE. Any attempt by Licensee to so assign or transfer is null and void. If SOLACE does consent to an assignment of this Agreement, the transferee/assignee must be acceptable to SOLACE and agree to the terms and conditions of this Agreement.\n\n13.9 Further Assurances. The Parties will, with reasonable diligence, do all things and provide all such reasonable assurances as may be required to consummate the transactions contemplated by this Agreement, and each Party will provide such further documents or instruments required by any other Party as may be reasonably necessary or desirable to effect the purpose of this Agreement and carry out its provisions.\n\n13.10 Governing Law and Jurisdiction. This Agreement is governed and interpreted in accordance with the laws of the Province of Ontario and the laws of Canada applicable therein, without giving effect to its conflict of laws provisions. Any Claim arising out of or related to this Agreement must be brought exclusively in a federal or provincial court located in Ottawa, Canada, and Licensee hereby consents to the jurisdiction and venue of such courts. Each of the Parties irrevocably waives, to the fullest extent it may effectively do so, the defence of an inconvenient forum to the maintenance of such action, application or proceeding. The Parties will not raise any objection to the venue of any action, application, reference or other proceeding arising out of or related to this Agreement in the federal or provincial courts sitting in Ottawa, including the objection that the proceedings have been brought in an inconvenient forum. A final judgment in any such action, application or proceeding is conclusive and may be enforced in other jurisdictions by suit on the judgment or in any other manner specified by law. The United Nations Convention on Contracts for the International Sale of Goods is expressly disclaimed and will not apply.", + "json": "solace-software-eula-2020.json", + "yaml": "solace-software-eula-2020.yml", + "html": "solace-software-eula-2020.html", + "license": "solace-software-eula-2020.LICENSE" + }, + { + "license_key": "spark-jive", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-spark-jive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License Agreement\n \nThis is a legal agreement between You, the User of the Spark application\n(\"The Software\"), and Jive Software (\"Jive Software\"). By downloading the Software,\nyou agree to be bound by the terms of this agreement.\n \nAll ownership and copyright of the images and icons included in the Software\ndistribution remain the property of Jive Software and INCORS GmbH. Jive Software\ngrants to you a nonexclusive, non-sublicensable right to use the icons royalty-free\nas part of Spark.\n \nYou may not lease, license or sub-license the icons, or a subset of the icons,\nor any modified icons to any third party. You may not incorporate them into your\nown software or design products.\n \nAll icon files are provided \"As is\" without warranties of merchantability and\nfitness for a particular purpose. You agree to hold Jive Software harmless for\nany result that may occur during the course of using the licensed icons.\n \nThis License Agreement shall be governed and construed in accordance with the\nlaws of Oregon. If any provision of this License Agreement is held to be\nunenforceable, this License Agreement will remain in effect with the provision\nomitted.", + "json": "spark-jive.json", + "yaml": "spark-jive.yml", + "html": "spark-jive.html", + "license": "spark-jive.LICENSE" + }, + { + "license_key": "sparky", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sparky", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright, License, and Disclaimer\n\nThe following copyright, license and disclaimer applies to the distributed\nSparky source code, documentation and binaries.\n\nCopyright (c) 2009, The Regents of the University of California.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n 3. Redistributions must acknowledge that this software was\n originally developed by the UCSF Resource for Biocomputing,\n Visualization, and Informatics under support by the NIH\n National Center for Research Resources, grant P41-RR01081.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER \"AS IS\" AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\nOF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "sparky.json", + "yaml": "sparky.yml", + "html": "sparky.html", + "license": "sparky.LICENSE" + }, + { + "license_key": "speechworks-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-speechworks-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The SpeechWorks Public License - Software, Version 1.1\n\nCopyright (c) 2000-2001, SpeechWorks International, Inc. \n\nRedistribution and use in source and binary forms, with or without \nmodification, are permitted provided that the following conditions are met: \n\t* Redistributions of source code must retain the above copyright \n\tnotice, this list of conditions and the following disclaimer. \n\t* Redistributions in binary form must reproduce the above copyright \n\tnotice, this list of conditions and the following disclaimer in the \n\tdocumentation and/or other materials provided with the distribution. \n\t* Neither the name of Speech Works International, Inc. (\"SWI\") nor \n\tthe names of its contributors may be used to endorse or promote \n\tproducts derived from this software without specific prior written \n\tpermission. For written permission contact Director, Product \n\tManagement, SpeechWorks International, Inc., 695 Atlantic Ave., \n\tBoston, MA 02110.\n\t* Products derived from the software may not be called \"SpeechWorks\", \n\tnor may \"SpeechWorks\" appear in their name, without prior written \n\tpermission of SWI.\n\t\nAddional information regarding the use of this software may be noted in the\nREADME.html file contained in this package.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND \nCONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES OR \nCONDITIONS, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED \nWARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, \nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE \nDISCLAIMED. IN NO EVENT SHALL SWI OR ITS CONTRIBUTORS BE LIABLE \nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, \nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, \nOR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON \nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, \nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY \nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE.", + "json": "speechworks-1.1.json", + "yaml": "speechworks-1.1.yml", + "html": "speechworks-1.1.html", + "license": "speechworks-1.1.LICENSE" + }, + { + "license_key": "spell-checker-exception-lgpl-2.1-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-spell-exception-lgpl-2.1-plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-spell-checker-exception-lgpl-2.1-plus" + ], + "is_exception": true, + "is_deprecated": false, + "text": "In addition, as a special exception, Dom Lachowicz\ngives permission to link the code of this program with\nnon-LGPL Spelling Provider libraries (eg: a MSFT Office\nspell checker backend) and distribute linked combinations including\nthe two. You must obey the GNU Lesser General Public License in all\nrespects for all of the code used other than said providers. If you modify\nthis file, you may extend this exception to your version of the\nfile, but you are not obligated to do so. If you do not wish to\ndo so, delete this exception statement from your version.", + "json": "spell-checker-exception-lgpl-2.1-plus.json", + "yaml": "spell-checker-exception-lgpl-2.1-plus.yml", + "html": "spell-checker-exception-lgpl-2.1-plus.html", + "license": "spell-checker-exception-lgpl-2.1-plus.LICENSE" + }, + { + "license_key": "spl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "SPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "1. Definitions.\n\n 1.0.1. \"Commercial Use\" means distribution or otherwise making the\n Covered Code available to a third party.\n\n 1.1. \"Contributor\" means each entity that creates or contributes to\n the creation of Modifications.\n\n 1.2. \"Contributor Version\" means the combination of the Original Code,\n prior Modifications used by a Contributor, and the Modifications made\n by that particular Contributor.\n\n 1.3. \"Covered Code\" means the Original Code or Modifications or the\n combination of the Original Code and Modifications, in each case\n including portions thereof and corresponding documentation released\n with the source code.\n\n 1.4. \"Electronic Distribution Mechanism\" means a mechanism generally\n accepted in the software development community for the electronic\n transfer of data.\n\n 1.5. \"Executable\" means Covered Code in any form other than Source\n Code.\n\n 1.6. \"Initial Developer\" means the individual or entity identified as\n the Initial Developer in the Source Code notice required by Exhibit\n A.\n\n 1.7. \"Larger Work\" means a work which combines Covered Code or\n portions thereof with code not governed by the terms of this\n License.\n\n 1.8. \"License\" means this document.\n\n 1.8.1. \"Licensable\" means having the right to grant, to the maximum\n extent possible, whether at the time of the initial grant or\n subsequently acquired, any and all of the rights conveyed herein.\n\n 1.9. \"Modifications\" means any addition to or deletion from the\n substance or structure of either the Original Code or any previous\n Modifications. When Covered Code is released as a series of files, a\n Modification is:\n\n A. Any addition to or deletion from the contents of a file containing\n Original Code or previous Modifications.\n\n B. Any new file that contains any part of the Original Code or\n previous Modifications.\n\n 1.10. \"Original Code\"../ means Source Code of computer software code\n which is described in the Source Code notice required by Exhibit A as\n Original Code, and which, at the time of its release under this\n License is not already Covered Code governed by this License.\n\n 1.10.1. \"Patent Claims\" means any patent claim(s), now owned or\n hereafter acquired, including without limitation, method, process, and\n apparatus claims, in any patent Licensable by grantor.\n\n 1.11. \"Source Code\"../ means the preferred form of the Covered Code\n for\n making modifications to it, including all modules it contains, plus\n any associated documentation, interface definition files, scripts used\n to control compilation and installation of an Executable, or source\n code differential comparisons against either the Original Code or\n another well known, available Covered Code of the Contributor's\n choice. The Source Code can be in a compressed or archival form,\n provided the appropriate decompression or de-archiving software is\n widely available for no charge.\n\n 1.12. \"You\" (or \"Your\") means an individual or a legal entity\n exercising rights under, and complying with all of the terms of, this\n License or a future version of this License issued under Section 6.1.\n For legal entities, \"You\" includes any entity which controls, is\n controlled by, or is under common control with You. For purposes of\n this definition, \"control\"../ means (a) the power, direct or indirect,\n to\n cause the direction or management of such entity, whether by contract\n or otherwise, or (b) ownership of more than fifty percent (50%) of the\n outstanding shares or beneficial ownership of such entity.\n\n2. Source Code License.\n\n 2.1 The Initial Developer Grant.\n\n The Initial Developer hereby grants You a world-wide, royalty-free,\n non-exclusive license, subject to third party intellectual property\n claims:\n\n (a) under intellectual property rights (other than patent or\n trademark) Licensable by Initial Developer to use, reproduce, modify,\n display, perform, sublicense and distribute the Original Code (or\n portions thereof) with or without Modifications, and/or as part of a\n Larger Work; and\n\n (b) under Patent Claims infringed by the making, using or selling of\n Original Code, to make, have made, use, practice, sell, and offer for\n sale, and/or otherwise dispose of the Original Code (or portions\n thereof).\n\n (c) the licenses granted in this Section 2.1(a) and (b) are effective\n on the date Initial Developer first distributes Original Code under\n the terms of this License.\n\n (d) Notwithstanding Section 2.1(b) above, no patent license is\n granted: 1) for code that You delete from the Original Code; 2)\n separate from the Original Code; or 3) for infringements caused\n by:\n\n i) the modification of the Original Code or ii) the combination of the\n Original Code with other software or devices.\n\n 2.2. Contributor Grant.\n\n Subject to third party intellectual property claims, each Contributor\n hereby grants You a world-wide, royalty-free, non-exclusive license\n\n (a) under intellectual property rights (other than patent\n or\n trademark) Licensable by Contributor, to use, reproduce, modify,\n display, perform, sublicense and distribute the Modifications created\n by such Contributor (or portions thereof) either on an unmodified\n basis, with other Modifications, as Covered Code and/or as part of a\n Larger Work; and\n\n b) under Patent Claims infringed by the making, using, or selling of\n Modifications made by that Contributor either alone and/or in\n combination with its Contributor Version (or portions of such\n combination), to make, use, sell, offer for sale, have made, and/or\n otherwise dispose of: 1) Modifications made by that Contributor (or\n portions thereof); and 2) the combination of Modifications made by\n that Contributor with its Contributor Version (or portions of such\n combination).\n\n (c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective\n on the date Contributor first makes Commercial Use of the Covered\n Code.\n\n (d) notwithstanding Section 2.2(b) above, no patent license is\n granted: 1) for any code that Contributor has deleted from the\n Contributor Version; 2) separate from the Contributor Version; 3) for\n infringements caused by: i) third party modifications of Contributor\n Version or ii) the combination of Modifications made by that\n Contributor with other software (except as part of the Contributor\n Version) or other devices; or 4) under Patent Claims infringed by\n Covered Code in the absence of Modifications made by that\n Contributor.\n\n 3. Distribution Obligations.\n\n 3.1. Application of License.\n\n The Modifications which You create or to which You contribute are\n governed by the terms of this License, including without limitation\n Section 2.2. The Source Code version of Covered Code may be\n distributed only under the terms of this License or a future version\n of this License released under Section 6.1, and You must include a\n copy of this License with every copy of the Source Code You\n distribute. You may not offer or impose any terms on any Source Code\n version that alters or restricts the applicable version of this\n License or the recipients' rights hereunder. However, You may include\n an additional document offering the additional rights described in\n Section 3.5.\n\n 3.2. Availability of Source Code.\n\n Any Modification which You create or to which You contribute must be\n made available in Source Code form under the terms of this License\n either on the same media as an Executable version or via an accepted\n Electronic Distribution Mechanism to anyone to whom you made an\n Executable version available; and if made available via Electronic\n Distribution Mechanism, must remain available for at least twelve (12)\n months after the date it initially became available, or at least six\n (6) months after a subsequent version of that particular Modification\n has been made available to such recipients. You are responsible for\n ensuring that the Source Code version remains available even if the\n Electronic Distribution Mechanism is maintained by a third party.\n\n 3.3. Description of Modifications.\n\n You must cause all Covered Code to which You contribute to contain a\n file documenting the changes You made to create that Covered Code and\n the date of any change. You must include a prominent statement that\n the Modification is derived, directly or indirectly, from Original\n Code provided by the Initial Developer and including the name of the\n Initial Developer in (a) the Source Code, and (b) in any notice in an\n Executable version or related documentation in which You describe the\n origin or ownership of the Covered Code.\n\n 3.4. Intellectual Property Matters.\n\n (a) Third Party Claims.\n\n If Contributor has knowledge that a license under a third party's\n intellectual property rights is required to exercise the rights\n granted by such Contributor under Sections 2.1 or 2.2, Contributor\n must include a text file with the Source Code distribution titled\n \"../LEGAL'' which describes the claim and the party making the claim in\n sufficient detail that a recipient will know whom to contact. If\n Contributor obtains such knowledge after the Modification is made\n available as described in Section 3.2, Contributor shall promptly\n modify the LEGAL file in all copies Contributor makes available\n thereafter and shall take other steps (such as notifying appropriate\n mailing lists or newsgroups) reasonably calculated to inform those who\n received the Covered Code that new knowledge has been obtained.\n\n (b) Contributor APIs.\n\n If Contributor's Modifications include an application programming\n interface (\"API\"../) and Contributor has knowledge of patent licenses\n which are reasonably necessary to implement that API, Contributor must\n also include this information in the LEGAL file.\n\n (c) Representations.\n\n Contributor represents that, except as disclosed pursuant to Section\n 3.4(a) above, Contributor believes that Contributor's Modifications\n are Contributor's original creation(s) and/or Contributor has\n sufficient rights to grant the rights conveyed by this\n License\n\n .\n\n 3.5. Required Notices.\n\n You must duplicate the notice in Exhibit A in each file of the Source\n Code. If it is not possible to put such notice in a particular Source\n Code file due to its structure, then You must include such notice in a\n location (such as a relevant directory) where a user would be likely\n to look for such a notice. If You created one or more Modification(s)\n You may add your name as a Contributor to the notice described in\n Exhibit A. You must also duplicate this License in any documentation\n for the Source Code where You describe recipients' rights or ownership\n rights relating to Covered Code. You may choose to offer, and to\n charge a fee for, warranty, support, indemnity or liability\n obligations to one or more recipients of Covered Code. However, You\n may do so only on Your own behalf, and not on behalf of the Initial\n Developer or any Contributor. You must make it absolutely clear than\n any such warranty, support, indemnity or liability obligation is\n offered by You alone, and You hereby agree to indemnify the Initial\n Developer and every Contributor for any liability incurred by the\n Initial Developer or such Contributor as a result of warranty,\n support, indemnity or liability terms You offer.\n\n 3.6. Distribution of Executable Versions.\n\n You may distribute Covered Code in Executable form only if the\n requirements of Section 3.1-3.5 have been met for that Covered Code,\n and if You include a notice stating that the Source Code version of\n the Covered Code is available under the terms of this License,\n including a description of how and where You have fulfilled the\n obligations of Section 3.2. The notice must be conspicuously included\n in any notice in an Executable version, related documentation or\n collateral in which You describe recipients' rights relating to the\n Covered Code. You may distribute the Executable version of Covered\n Code or ownership rights under a license of Your choice, which may\n contain terms different from this License, provided that You are in\n compliance with the terms of this License and that the license for the\n Executable version does not attempt to limit or alter the recipient's\n rights in the Source Code version from the rights set forth in this\n License. If You distribute the Executable version under a different\n license You must make it absolutely clear that any terms which differ\n from this License are offered by You alone, not by the Initial\n Developer or any Contributor. You hereby agree to indemnify the\n Initial Developer and every Contributor for any liability incurred by\n the Initial Developer or such Contributor as a result of any such\n terms You offer.\n\n 3.7. Larger Works.\n\n You may create a Larger Work by combining Covered Code with other\n code\n not governed by the terms of this License and distribute the Larger\n Work as a single product. In such a case, You must make sure the\n requirements of this License are fulfilled for the Covered Code.\n\n 4. Inability to Comply Due to Statute or Regulation.\n\n If it is impossible for You to comply with any of the terms of this\n License with respect to some or all of the Covered Code due to\n statute, judicial order, or regulation then You must: (a) comply with\n the terms of this License to the maximum extent possible; and (b)\n describe the limitations and the code they affect. Such description\n must be included in the LEGAL file described in Section 3.4 and must\n be included with all distributions of the Source Code. Except to the\n extent prohibited by statute or regulation, such description must be\n sufficiently detailed for a recipient of ordinary skill to be able to\n understand it.\n\n 5. Application of this License.\n\n This License applies to code to which the Initial Developer has\n attached the notice in Exhibit A and to related Covered Code.\n\n 6. Versions of the License.\n\n 6.1. New Versions.\n\n Sun Microsystems, Inc. (\"Sun\") may publish revised and/or new versions\n of the License from time to time. Each version will be given a\n distinguishing version number.\n\n 6.2. Effect of New Versions.\n\n Once Covered Code has been published under a particular version of\n the\n License, You may always continue to use it under the terms of that\n version. You may also choose to use such Covered Code under the terms\n of any subsequent version of the License published by Sun. No one\n other than Sun has the right to modify the terms applicable to Covered\n Code created under this License.\n\n 6.3. Derivative Works.\n\n If You create or use a modified version of this License (which you\n may\n only do in order to apply it to code which is not already Covered Code\n governed by this License), You must: (a) rename Your license so that\n the phrases \"Sun,\" \"Sun Public License,\" or \"SPL\"../ or any confusingly\n similar phrase do not appear in your license (except to note that your\n license differs from this License) and (b) otherwise make it clear\n that Your version of the license contains terms which differ from the\n Sun Public License. (Filling in the name of the Initial Developer,\n Original Code or Contributor in the notice described in Exhibit A\n shall not of themselves be deemed to be modifications of this\n License.)\n\n 7. DISCLAIMER OF WARRANTY.\n\n COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"../AS IS'' BASIS,\n WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\n WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF\n DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.\n THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE\n IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT,\n YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE\n COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER\n OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF\n ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS\n DISCLAIMER.\n\n 8. TERMINATION.\n\n 8.1. This License and the rights granted hereunder will terminate\n automatically if You fail to comply with terms herein and fail to cure\n such breach within 30 days of becoming aware of the breach. All\n sublicenses to the Covered Code which are properly granted shall\n survive any termination of this License. Provisions which, by their\n nature, must remain in effect beyond the termination of this License\n shall survive.\n\n 8.2. If You initiate litigation by asserting a patent infringement\n claim (excluding declaratory judgment actions) against Initial Developer\n or a Contributor (the Initial Developer or Contributor against whom\n You file such action is referred to as \"Participant\") alleging\n that:\n\n (a) such Participant's Contributor Version directly or indirectly\n infringes any patent, then any and all rights granted by such\n Participant to You under Sections 2.1 and/or 2.2 of this License\n shall, upon 60 days notice from Participant terminate prospectively,\n unless if within 60 days after receipt of notice You either: (i)\n agree in writing to pay Participant a mutually agreeable reasonable\n royalty for Your past and future use of Modifications made by such\n Participant, or (ii) withdraw Your litigation claim with respect to\n the Contributor Version against such Participant. If within 60 days\n of notice, a reasonable royalty and payment arrangement are not\n mutually agreed upon in writing by the parties or the litigation claim\n is not withdrawn, the rights granted by Participant to You under\n Sections 2.1 and/or 2.2 automatically terminate at the expiration of\n the 60 day notice period specified above.\n\n (b) any software, hardware, or device, other than such Participant's\n Contributor Version, directly or indirectly infringes any patent, then\n any rights granted to You by such Participant under Sections 2.1(b)\n and 2.2(b) are revoked effective as of the date You first made, used,\n sold, distributed, or had made, Modifications made by that\n Participant.\n\n 8.3. If You assert a patent infringement claim against Participant\n alleging that such Participant's Contributor Version directly or\n indirectly infringes any patent where such claim is resolved (such as\n by license or settlement) prior to the initiation of patent\n infringement litigation, then the reasonable value of the licenses\n granted by such Participant under Sections 2.1 or 2.2 shall be taken\n into account in determining the amount or value of any payment or\n license.\n\n 8.4. In the event of termination under Sections 8.1 or 8.2 above,\n all\n end user license agreements (excluding distributors and resellers)\n which have been validly granted by You or any distributor hereunder\n prior to termination shall survive termination.\n\n 9. LIMITATION OF LIABILITY.\n\n UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\n (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL\n DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,\n OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR\n ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY\n CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,\n WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\n COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\n INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF\n LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\n RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\n PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE\n EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO\n THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n 10. U.S. GOVERNMENT END USERS.\n\n The Covered Code is a \"commercial item,\" as that term is defined in\n 48\n C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\"\n and \"commercial computer software documentation,\"../ as such terms are\n used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R.\n 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all\n U.S. Government End Users acquire Covered Code with only those rights\n set forth herein.\n\n 11. MISCELLANEOUS.\n\n This License represents the complete agreement concerning subject\n matter hereof. If any provision of this License is held to be\n unenforceable, such provision shall be reformed only to the extent\n necessary to make it enforceable. This License shall be governed by\n California law provisions (except to the extent applicable law, if\n any, provides otherwise), excluding its conflict-of-law provisions.\n With respect to disputes in which at least one party is a citizen of,\n or an entity chartered or registered to do business in the United\n States of America, any litigation relating to this License shall be\n subject to the jurisdiction of the Federal Courts of the Northern\n District of California, with venue lying in Santa Clara County,\n California, with the losing party responsible for costs, including\n without limitation, court costs and reasonable attorneys' fees and\n expenses. The application of the United Nations Convention on\n Contracts for the International Sale of Goods is expressly excluded.\n Any law or regulation which provides that the language of a contract\n shall be construed against the drafter shall not apply to this\n License.\n\n 12. RESPONSIBILITY FOR CLAIMS.\n\n As between Initial Developer and the Contributors, each party is\n responsible for claims and damages arising, directly or indirectly,\n out of its utilization of rights under this License and You agree to\n work with Initial Developer and Contributors to distribute such\n responsibility on an equitable basis. Nothing herein is intended or\n shall be deemed to constitute any admission of liability.\n\n 13. MULTIPLE-LICENSED CODE.\n\n Initial Developer may designate portions of the Covered Code as\n ?Multiple-Licensed?. ?Multiple-Licensed? means that the Initial\n Developer permits you to utilize portions of the Covered Code under\n Your choice of the alternative licenses, if any, specified by the\n Initial Developer in the file described in Exhibit A.\n\n Exhibit A -Sun Public License Notice.\n\n The contents of this file are subject to the Sun Public License\n\n Version 1.0 (the License); you may not use this file except in\n\n compliance with the License. A copy of the License is available at\n\n http://www.sun.com/\n\n The Original Code is . The Initial Developer of the\n\n Original Code is . Portions created by are Copyright\n\n (C) . All Rights Reserved.\n\n Contributor(s): .\n\n Alternatively, the contents of this file may be used under the terms\n\n of the license (the ?[ ] License?), in which case the\n\n provisions of [ ] License are applicable instead of those above.\n\n If you wish to allow use of your version of this file only under the\n\n terms of the [ ] License and not to allow others to use your\n\n version of this file under the SPL, indicate your decision by deleting\n\n the provisions above and replace them with the notice and other\n\n provisions required by the [ ] License. If you do not delete the\n\n provisions above, a recipient may use your version of this file under\n\n either the SPL or the [ ] License.\n\n [NOTE: The text of this Exhibit A may differ slightly from the text of\n\n the notices in the Source Code files of the Original Code. You should\n\n use the text of this Exhibit A rather than the text found in the\n\n Original Code Source Code for Your Modifications.]", + "json": "spl-1.0.json", + "yaml": "spl-1.0.yml", + "html": "spl-1.0.html", + "license": "spl-1.0.LICENSE" + }, + { + "license_key": "splunk-3pp-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-splunk-3pp-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "End User License Agreement for Third-Party Content\nREAD CAREFULLY: LICENSOR LICENSES THIS PROGRAM, TOOL, PLUG-IN, ADD-ON, APPLICATION, LIBRARY, CONTENT, DATA, SOLUTION, SERVICE OR OTHER ITEM OR MATERIAL (THE \"CONTENT\") TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS END USER LICENSE AGREEMENT (\"AGREEMENT\").\n\nSplunk Apps hosts certain content created and published by individuals and entities other than Splunk Inc. or its affiliates (\"Splunk\"). Such third-party content made available through Splunk Apps are licensed, not sold, to you. Your license to each content that you obtain through Splunk Apps is subject to your prior acceptance of this End User License Agreement, and you agree that the terms of this Agreement will apply to each Content that you license through Splunk Apps.\n\nResponsibility. If you are downloading, accessing or using the Content provided or authored by a third-party developer or provider, this Agreement is solely between the developer or provider of the Content (\"Licensor\") and you, and not with Splunk. Licensor, and not Splunk, is solely responsible for the Content, including, without limitation, for any warranties, maintenance and support, notices and consents to be given to Users. You agree to foregoing even if the Content has been examined against best practices for Splunk development, deemed cloud compatible or otherwise vetted by Splunk. Notwithstanding the above, you acknowledge that Splunk is a third-party beneficiary of this Agreement and that upon your acceptance of the terms of this Agreement, Splunk will have the right to enforce the Agreement against you as a third-party beneficiary thereof. Questions, complaints or claims with respect to the Content should be directed solely to the Licensor, whose contact information can be found on the Content Download Page from which the Content is downloaded.\n\nQualified User. The Content is to be used only in conjunction with the specific Splunk software product or service identified in materials distributed with the Content, with which such Content was designed to operate (\"Splunk Software\"). Therefore, you may use the Content only if you are an authorized user of the Splunk Software. This Agreement does not modify or alter the terms of the software license agreement delivered with the Splunk Software.\n\nLicense. Subject to the terms and conditions of this Agreement, Licensor grants to you a license to download and use the Content in connection with the Splunk Software.\n\nWarranty. THE CONTENT IS FURNISHED ON AN \"AS IS\" BASIS, AND LICENSOR DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION, WARRANTIES OF NON-INFRINGEMENT OF THIRD-PARTY RIGHTS, OR OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, AND ANY WARRANTIES ARISING BY STATUTE OR OTHERWISE IN LAW, OR FROM A COURSE OF DEALING OR USAGE OF TRADE. LICENSOR SPECIFICALLY DOES NOT WARRANT THAT THE CONTENT WILL MEET YOUR REQUIREMENTS; WILL OPERATE IN ALL THE COMBINATIONS WHICH MAY BE SELECTED FOR USE BY YOU; THAT THE OPERATION OF THE CONTENT WILL BE ERROR-FREE OR UNINTERRUPTED, ACCURATE, USEFUL, RELIABLE, OR COMPLETE; OR THAT ALL ERRORS OR DEFECTS IN THE CONTENT WILL BE CORRECTED. NEITHER SPLUNK NOR LICENSOR SHALL BE LIABLE FOR ANY DAMAGES WHATSOEVER ARISING FROM OR RELATING TO YOUR USE OR INABILITY TO USE THE CONTENT. YOU USE THE CONTENT AT YOUR OWN RISK.\n\nLimitation of Liability. UNDER NO CIRCUMSTANCES WILL SPLUNK OR LICENSOR BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL OR EXEMPLARY DAMAGES, FOR LOSS OF PROFITS, USE, REVENUE, OR DATA OR FOR BUSINESS INTERRUPTION (REGARDLESS OF THE LEGAL THEORY FOR SEEKING SUCH DAMAGES OR OTHER LIABILITY) ARISING OUT OF OR IN CONNECTION WITH USE OF THE CONTENT, WHETHER OR NOT SPLUNK OR LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ADDITION, THE LIABILITY OF SPLUNK OR LICENSOR ARISING OUT OF OR RELATING TO THE CONTENT WILL NOT EXCEED THE AMOUNT PAID OR PAYABLE BY YOU (IF ANY) FOR SUCH CONTENT.\n\nGeneral. This Agreement will be governed by and construed in accordance with the laws of the State of California (and, to the extent controlling, the federal laws of the United States, without reference to the conflicts-of-laws rules thereof). The UN Convention on Contracts for the International Sale of Goods and the Uniform Computer Information Transaction Act shall not apply to this Agreement. This Agreement constitutes the entire agreement between Licensor and you with respect to the Content and may not be modified except by a written instrument executed by you and an authorized representative of Licensor.", + "json": "splunk-3pp-eula.json", + "yaml": "splunk-3pp-eula.yml", + "html": "splunk-3pp-eula.html", + "license": "splunk-3pp-eula.LICENSE" + }, + { + "license_key": "splunk-mint-tos-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-splunk-mint-tos-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Splunk MINT Terms of Service\nLast revised: April 16, 2018\n\nThese Splunk MINT Terms of Service between you and Splunk Inc., a Delaware corporation (\u201cSplunk\u201d), as updated from time to time, and together with the documents and policies referred to herein (collectively, the \u201cAgreement\u201d), govern your access to and use of the Service. By accessing or using the Service in any manner, you are agreeing to the Agreement.\n\nIn this Agreement, \u201cSplunk,\u201d \u201cwe,\u201d \u201cus,\u201d and \u201cour\u201d refers to Splunk Inc., a Delaware corporation, and \u201cCustomer,\u201d \u201cyou,\u201d and \u201cyour\u201d refers to the entity on whose behalf you are entering into this Agreement or, if there is no such entity, you as an individual. Section 20 contains definitions of other terms that are capitalized in this Agreement.\n\nBy clicking on the \u201cI accept\u201d button or other button or mechanism designed to acknowledge agreement to the terms of an electronic copy of this Agreement by creating an account with us or otherwise using the Site or any of the Services, or by downloading, installing, accessing, or otherwise copying or using all or any portion of the Software, (i) you accept this Agreement on behalf of the entity for which you are authorized to act (e.g., an employer) and acknowledge that such entity is legally bound by this Agreement or, if there is no such entity for which you are authorized to act, you accept this Agreement on behalf of yourself as an individual and acknowledge that you are legally bound by this Agreement, and (ii) you represent and warrant that you have the right, power and authority to act on behalf of and bind such entity (if any) and yourself. Also, to enter into this Agreement and thereby use the Site, Services and Software, you as an individual must be at least 18 years old. Accordingly, you represent and warrant that you are at least 18 years old.\n\nIF YOU DO NOT AGREE TO THE TERMS CONTAINED IN THIS AGREEMENT, OR IF YOU DO NOT HAVE THE RIGHT, POWER AND AUTHORITY TO ACT ON BEHALF OF AND BIND SUCH ENTITY OR YOURSELF AS AN INDIVIDUAL (IF THERE IS NO SUCH ENTITY), DO NOT SELECT THE \u201cI ACCEPT\u201d BUTTON OR OTHER BUTTON OR MECHANISM DESIGNED TO ACKNOWLEDGE AGREEMENT, DO NOT USE ANY OF THE SPLUNK MATERIALS, AND DO NOT DOWNLOAD, INSTALL, ACCESS OR OTHERWISE COPY OR USE ALL OR ANY PORTION OF THE SOFTWARE. THE SPLUNK MATERIALS ARE BEING LICENSED AND NOT SOLD TO YOU. SPLUNK PERMITS YOU TO DOWNLOAD, INSTALL, ACCESS, OR OTHERWISE COPY OR USE THE SPLUNK MATERIALS (INCLUDING THE FUNCTIONALITY OR FEATURES THEREOF) ONLY IN ACCORDANCE WITH THIS AGREEMENT.\n\n1. Registration.\n\nCustomer may be required to register and establish an account in order to access and use Splunk Materials. If so, Customer must: (i) provide true, accurate, current and complete information on the applicable registration form (collectively, the \u201cRegistration Data\u201d) and (ii) maintain and promptly update the Registration Data to ensure that it remains true, accurate, current and complete. If we have reasonable grounds to suspect that your information is untrue, inaccurate, not current, or incomplete, we may suspend or terminate your account and/or disable and prohibit any and all current or future access to and use of all or any portion of the Splunk Materials by you. Customer must provide a valid email address for each person authorized to use Customer\u2019s account. Each person who uses the Service must have a separate username and password. Customer must provide any other information requested by Splunk in order to complete the registration process. Customer will maintain (and is responsible for maintaining) the confidentiality of the user name, password and other Registration Data associated with its account. Customer may not share Customer passwords or access codes with a third party. Customer is responsible for any access and use of the Splunk Materials via Customer\u2019s or its User\u2019s accounts and for all activities that occur in connection with Customer\u2019s or its User\u2019s accounts, regardless of whether the activities were undertaken by Customer, its User, or a third party. Splunk will not be liable for any loss or damage arising from Customer\u2019s (or one or more of its User\u2019s) failure to comply with this Section, including any loss or damage arising from the failure to (a) maintain the confidentiality of a user name, password or other Registration Data, (b) immediately notify Splunk of any unauthorized access to or use of Customer\u2019s password or account or any other breach of security, and (c) ensure that Customer exits from its account at the end of each session. Customer agrees to notify Splunk immediately if it believes that an unauthorized third party may be using Customer\u2019s account or if Customer\u2019s account information is lost or stolen. Customer is solely responsible for its Users\u2019 compliance with the Agreement.\n\n2. Service.\n\nSplunk will make the Service available to you during the term of this Agreement. Subject to and conditioned on Customer\u2019s continuing compliance with the terms and conditions of this Agreement, Customer may (i) access and use the Site and the Services in accordance with the Documentation and this Agreement and in connection with Customer\u2019s use of the designated Splunk software product or service, and (ii) access and use the results, reports and other information generated with respect to the performance of the Customer App that is made available to Customer through the Services (including copies of such results, reports and other information), in each case to monitor, maintain and improve the Customer App. Customer is responsible for obtaining and maintaining all telecommunications, broadband and computer equipment and services needed to access and use the Service and for paying all charges related thereto, including, without limitation, Internet service provider fees, telecommunications fees, and the costs of any equipment and third-party software (including, without limitation, encryption and other security technology).\n\n3. Software.\n\n3.1. License to Software. Access to the Service may require or allow for use of one or more Software applications offered by Splunk. Use of all Software is subject to the end user license agreement provided or referenced by Splunk in connection with such Software. In the case of the Splunk SDK, the following would apply: Subject to and conditioned on Customer\u2019s continuing compliance with the terms and conditions of this Agreement, including without limitation compliance with the obligations regarding the End User Requirements, Splunk hereby grants Customer a non-exclusive, limited, non-transferable, revocable, royalty-free license (without the right to sublicense except as expressly permitted by this Section) to: (i) install, use, and copy the Splunk SDK for the purpose of debugging, monitoring, developing and operating the Customer App, and (ii) include the Splunk SDK in the Customer App and distribute to End Users (directly or indirectly in accordance with Customer\u2019s regular distribution channels for the Customer App) the Splunk SDK as contained within the Customer App. Unless otherwise stated on the download page, this license to the Splunk SDK is perpetual, but you may not be able to view data or results generated by the Splunk SDK if the Service is terminated or expired.\n\n3.2. End User Requirements. For each distribution and copy of the Customer App that contains the Splunk SDK, Customer will require the applicable End User to enter into a legally binding license agreement with Customer that, at a minimum, complies with the following criteria (\u201cEnd User Requirements\u201d): (a) limits the license grant to use of the Customer App by the End User on the applicable mobile device(s) on a specified mobile platform or on applicable web browsers; (b) disclaims all warranties by and on behalf of Splunk; (c) limits all liabilities of Splunk; (d) prohibits decompilation and other reverse engineering of the Splunk Materials; (e) provides that Customer will protect the privacy and legal rights of End Users under all applicable laws and regulations, which includes communicating a legally adequate privacy notice; (f) notifies End Users that certain information will be made available to Customer, Splunk and other entities and that additional charges (e.g., data usage charges) may be incurred by End Users (e.g., in the transmission of such information) by their mobile service providers or internet service providers; (g) obtains sufficient authorization from End Users to transfer such information to Customer, Splunk and other entities and to permit the storage and processing of such information; and (h) otherwise obtains and maintains any required consents from End Users to allow Splunk (including its service providers) to provide or have provided the Services, including without limitation consent for Customer, Splunk and other entities to access, monitor, use and disclose End User data. In the license agreement with End Users, Customer will not refer to Splunk by name or with other identifying information; instead, Customer will address the End User Requirements by referring to its \u201csuppliers,\u201d \u201clicensors\u201d and \u201cservice providers\u201d (or using similar words that refer to Splunk).\n\n4. License Restrictions.\n\nExcept as expressly permitted in this Agreement or by Splunk, Customer may not, and will not permit any third party to: (a) copy or modify, translate, or create any derivative works of all or any portion of the Splunk Materials; (b) reverse engineer (except and only to the extent specifically allowed by law), decompile, disassemble or otherwise attempt to discover the source code, object code or underlying structure, ideas, algorithms, methods, or techniques used or embodied in the Splunk Materials; (c) distribute, rent, loan, lease, sell, sublicense, or otherwise transfer all or any portion of the Splunk Materials or any rights granted in this Agreement to any other person or legal entity; (d) use the Splunk Materials for timesharing, or service bureau purposes, or for any purpose other than its own internal business purposes; (e) access or use the Splunk Materials in order to monitor its availability, performance, or functionality for the purpose of developing a competing or similar product or services; (f) remove, circumvent, disable, damage or otherwise interfere with any security features of the Splunk Materials; (g) gain or attempt to gain unauthorized access to the Site or the Service (in whole or in part), other accounts, computer systems, or networks related to the Site or the Service (whether through hacking, password mining or any other means); (h) remove, alter, or obscure any copyright, trademark, confidentiality or proprietary or other notices, labels, or marks from or on the Splunk Materials; (i) interfere with or disrupt the Service, or servers or networks connected to any website through which the Service is provided; (j) use Splunk SDKs to send data to a location other than the Service or Splunk; or (k) use the Service other than in accordance with this Agreement and in compliance with all applicable laws and regulations (including, but not limited to, any applicable privacy laws and intellectual property laws). Splunk has the right (but not the obligation) to monitor Customer\u2019s usage of the Service to verify compliance with this Agreement.\n\n5. Splunk Ownership.\n\nSplunk and/or its suppliers, licensors and service providers own all worldwide right, title and interest in and to the Splunk Materials, including all worldwide patent rights; copyright rights (including those with respect to computer software, software design, software code, software architecture, programming tools, graphical user interfaces, applications programming interfaces, reports, dashboards, templates, business rules, use cases, screens, alerts, notifications, drawings, specifications and databases); trade secrets and other rights with respect to confidential or proprietary information; know-how; other rights with respect to inventions, discoveries, ideas, improvements, techniques, formulae, algorithms, processes, schematics, testing procedures, technical information and other technology; and any other intellectual property and proprietary rights, whether or not subject to registration; and all rights under any license or other arrangement with respect to the foregoing. Except as expressly stated in this Agreement, Splunk does not grant Customer any license or other rights under or with respect to any intellectual property rights in the Splunk Materials; all right, title, and interest in and to the Splunk Materials not expressly granted in this Agreement remain with Splunk and/or its suppliers, licensors and service providers; and no license or other rights with respect to the Splunk Materials or related intellectual property rights shall be implied. \u201cSplunk\u201d and related trademarks and service marks (including related graphics and logos) and trade names used on or in the Splunk Materials are the trademarks or service marks of Splunk, and Customer may not use, or authorize the use of, such trademarks, service marks or trade names without Splunk\u2019s written permission (whether in connection with any products or services or otherwise). Other trademarks, service marks, and trade names that may appear on or in the Splunk Materials are the property of their respective owners.\n\n6. Customer Content; Responsibilities\n\n6.1. Representations. By submitting or transmitting Customer Content on or through the Site or the Service, Customer acknowledges and represents that: (a) Customer is the owner of Customer Content and/or has the requisite rights to submit and distribute Customer Content in connection with the Service and to grant the licenses set forth in this Agreement; (b) Customer Content does not infringe or misappropriate any intellectual property or proprietary right of any third party or violate any applicable laws, rules or regulations; and (c) any Customer Content provided to Splunk in connection with Customer\u2019s registration for, or use of, the Service is and shall remain true, accurate, and complete.\n\n6.2. License to Customer Content. By submitting or posting Customer Content on areas of the Site or the Service, Customer grants Splunk a worldwide, royalty free, non-exclusive license to access and use such Content on the Site or the Service for the purpose of providing the Service to Customer, responding to Customer\u2019s or Users\u2019 request for technical assistance with respect to the Service or in connection with customer support matters.\n\n6.3. Responsibility for Customer Content. Customer is the owner and/or controller of all of Customer Content that Customer transmits to or uses in connection with the Service. Customer is solely responsible for all Customer Content, including without limitation, for: (a) the accuracy, quality and legal use of Customer Content and the means by which Customer acquired Customer Content (including, without limitation, Customer Data), and (b) taking steps to maintain appropriate security, protection, and backup of Customer Content (which may include the use of encryption technology to protect Customer Content from unauthorized access), and routine archiving of Customer Content. By submitting, transmitting or otherwise making Customer Content available to Splunk and/or others, Customer acknowledges and agrees that: (i) Customer will evaluate and bear all risks associated with Customer Content; (ii) under no circumstances will Splunk be liable in any way for Customer Content, including, but not limited to, any loss or damage, any errors or omissions, or any unauthorized access or use; and (iii) Customer (and not Splunk) is responsible for securing and protecting the confidentiality of Customer Content.\n\n6.4. No Personal or Sensitive Data. Customer agrees not to transmit any personal information to the Site or the Service, as personal information may be defined by applicable law due to the data type, use or location, except in connection with registering and establishing an account with Splunk. Customer acknowledges that Splunk may use third-party service providers in connection with the Service, including, without limitation, the use of cloud computing service providers, which may transmit, maintain and store Customer Data using third-party computers and equipment in locations around the globe. Customer acknowledges that any data storage functionality associated with the Service is not intended for the storage of sensitive personal data. Customer agrees not to upload or otherwise submit any sensitive personal data in connection with the Service. In particular, Customer agrees not to transmit or store within the Service any (i) protected health information, as defined in the Health Insurance Portability and Accountability Act of 1996 (45 C.F.R. \u00a7 160.103) as amended and supplemented by the Health Information Technology for Economic and Clinical Health Act, as each is amended from time to time (collectively \u201cHIPAA\u201d), (ii) financial information protected under the Gramm-Leach-Bliley Act, (iii) information protected under the Children\u2019s Online Privacy Protection Act of 1998 (\u201cCOPPA\u201d), or (iv) information protected by the International Traffic in Arms Regulations, or export-controlled as provided in Section 19. Customer further agrees that Splunk will have no responsibility or liability with respect to any such sensitive data that is processed, transmitted, disclosed, or stored in connection with the Service. In particular, Customer agrees not to cause, or otherwise request that, Splunk create, receive, maintain or transmit protected health information for or on behalf of Customer in connection with the Service or in any manner that would make Splunk a Business Associate (as defined at 45 C.F.R. \u00a7 160.103 of HIPAA) to Customer, and Splunk specifically disclaims any responsibility or obligation to act as a Business Associate. Splunk is not responsible for encryption of Customer Data when stored on the Service. If Customer makes any of its or its End Users\u2019 personally identifiable or other information publicly available on the Site or through the Services, Customer does so at its own risk.\n\n6.5. Security and Protection of Customer Data. Splunk will maintain administrative, physical and technical safeguards to protect the security of Customer Data as described in the Documentation or the Site.\n\n6.6. Splunk\u2019s Right to Remove, Suspend or Terminate. Splunk may remove any Customer Content that is submitted to the Service without notice at any time if we believe, in our sole and absolute discretion, that such Customer Content is excessive in size or exceeds storage limits. Further, if Splunk is made aware or believes in good faith that Customer Content or conduct may (a) violate the Agreement, (b) violate any law, regulation, or rights of a third party, (c) pose a security risk to the Service or any users of the Service, or otherwise adversely impact the Service or the systems, or (d) subject Splunk or any third party to liability, Splunk has the right, but not the obligation, to immediately remove or disable access to such Customer Content and/or suspend or terminate Customer\u2019s access to the Service.\n\n7. Additional Customer Obligations.\n\nCustomer will at all times access and use the Splunk Materials (or any content or other materials obtained from or through the Site or the Services) only in accordance with this Agreement and all applicable laws and regulations. In all circumstances, as a condition to Customer\u2019s access to and use of the Splunk Materials, Customer agrees that it will not access or use the Splunk Materials (or any content or other materials accessed through the Splunk Materials) for any purpose that is unlawful or in any manner which could damage, disable, overburden or impair the operation of the Splunk Materials (or the networks connected to or used for the Site or the Services) or interfere with any other party\u2019s use of the Splunk Materials. Splunk may take whatever steps we believe are appropriate, at our sole discretion, to detect and prevent any such activities. Further, Splunk may take whatever steps we believe are appropriate, at our sole discretion, to enforce or verify compliance with any part of this Agreement (including, without limitation, our right to pursue or cooperate with any legal process relating to Customer\u2019s use of the Splunk Materials or any third party claim that Customer\u2019s use of the Splunk Materials is unlawful or infringes such third party\u2019s rights). If Customer fails to comply with any of the terms and conditions of this Agreement, Customer\u2019s right to use the Splunk Materials automatically terminates. Splunk reserves the right to deny Customer\u2019s access to and use of the Splunk Materials if Customer fails to comply with such terms and conditions or if Customer is the subject of complaints by others.\n\n8. Collection of Information; Privacy.\n\n8.1. Privacy Policy. Customer\u2019s submission of information through the Site and the Services and any other information provided to Splunk, as well as the information Splunk may collect regarding any End User or the Customer App, is governed by Splunk\u2019s privacy policy located at http://www.splunk.com/r/privacy (or such other location as we may designate) (\u201cPrivacy Policy\u201d). Notwithstanding anything to the contrary in the Privacy Policy, if you no longer want to receive marketing-related emails from us on a going-forward basis, you may only opt out of receiving them by clicking on the communication preferences link, unsubscribe link, or similar link at the bottom of the email or by emailing us at mobilesupport@splunk.com if no such link is available. The Privacy Policy (as revised from time to time in accordance with its terms) is incorporated into, and considered a part of, this Agreement.\n\n8.2. Notices to Customer and Consent to Electronic Communications. Customer consents to receiving electronic communications and notifications from Splunk in connection with this Agreement and Customer\u2019s use of the Service. Customer agrees that any such communication will satisfy any legal communication requirements, including that such communications be in writing. Splunk may provide Customer with notices regarding the Service, including changes to this Agreement, by email to the email address of Customer\u2019s administrator (and/or other alternate email address associated with Customer account if provided), or by postings on Splunk\u2019s website and/or the Site. Notices that are provided by posting on the Site will be effective three (3) days after posting. Notices that are provided by email will be effective when Splunk sends the email, unless otherwise noted in that email. Customer will be deemed to have received any email sent to the email address then associated with Customer\u2019s account when Splunk sends the email, whether or not Customer actually receives the email.\n\n9. Feedback.\n\nIn the event that Customer provides any Feedback to Splunk (including through the Site or the Services), Customer hereby grants to Splunk a perpetual, irrevocable, world-wide, royalty free, fully paid-up, unrestricted right and license to use, make, have made, offer for sale, sell, copy, distribute (through multiple tiers of distribution), publicly perform or display, import, export, transmit, create derivative works of, and otherwise exploit such Feedback as part of or in connection with any Splunk product, service, technology, content, material, specification or documentation, in any manner Splunk deems fit. Splunk, in its sole discretion, may or may not respond to Customer\u2019s Feedback or promise to address all of Customer\u2019s Feedback in the development of future features or functionalities of the Splunk Materials or any related or subsequent versions of the Splunk Materials.\n\n10. Third-Party Content.\n\nThe Site and the Services may contain links to other websites, apps or content operated or provided by third parties. Such web sites, apps and content are not under the control of Splunk. Splunk is not responsible for such websites, apps and content or any links contained in any third-party website, app or content. Splunk provides these links only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to the third-party websites, apps or content. Further, Splunk is not responsible for any content or materials posted on the Site or through the Service by you or our other customers or users of the Site. Any opinions and views stated are those of the individuals making them and do not reflect our opinions and views. Information submitted by others may not be verified or reviewed in any way before it appears on the Site or through the Services. Therefore, we do not warrant the validity or accuracy of any such information. Please use caution and common sense when using the Site or the Services. In no way do we endorse the content or legality of any offers, statements, or promises made by any other parties on or off the Site or as part of or separate from the Services.\n\n11. Confidentiality.\n\n11.1. Confidential Information. The Receiving Party shall use the same degree of care that it uses to protect the confidentiality of its own confidential information of like kind (but in no event less than reasonable care). The Receiving Party agrees (i) not to use any Confidential Information of the Disclosing Party for any purpose outside the scope of this Agreement, and (ii) except as otherwise authorized by the Disclosing Party in writing, to limit access to Confidential Information of the Disclosing Party to those of its and its Affiliates\u2019 employees, contractors, and agents who need such access for purposes consistent with this Agreement and who have confidentiality obligations to the Receiving Party containing protections no less stringent than those herein.\n\n11.2. Compelled Disclosure of Confidential Information. The Receiving Party may disclose Confidential Information of the Disclosing Party if it is compelled by law to do so, provided the Receiving Party gives the Disclosing Party prior notice of such compelled disclosure (to the extent legally permitted) and reasonable assistance, at the Disclosing Party\u2019s cost, if the Disclosing Party wishes to contest the disclosure. If the Receiving Party is compelled by law to disclose the Disclosing Party\u2019s Confidential Information as part of a civil proceeding to which the Disclosing Party is a Party, and the Disclosing Party is not contesting the disclosure, the Disclosing Party will reimburse the Receiving Party for its reasonable cost of compiling and providing secure access to such Confidential Information.\n\n12. Warranty Disclaimer.\n\nSPLUNK AND ITS AFFILIATES, AND THEIR SUPPLIERS, LICENSORS AND SERVICE PROVIDERS, PROVIDE THE SITE, SERVICES AND SOFTWARE AS-IS AND EXPRESSLY DISCLAIM ANY AND ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT ANY QUIET ENJOYMENT AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. SPLUNK DOES NOT WARRANT THAT THE SITE, SERVICES OR SOFTWARE WILL BE ERROR-FREE, NOR DOES SPLUNK PROVIDE ANY WARRANTIES AS TO THE ACCURACY OR COMPLETENESS OF THE SITE, SERVICES OR SOFTWARE, OR THE INFORMATION PROVIDED ON THE SITE OR BY THE SERVICES. YOU AGREE THAT, AS BETWEEN YOU AND SPLUNK, YOU ARE RESPONSIBLE FOR THE ACCURACY AND QUALITY OF THE DATA PROVIDED BY YOU OR YOUR END USERS TO SPLUNK AND ITS AFFILIATES AND THEIR SUPPLIERS, LICENSORS AND SERVICE PROVIDERS. Because this disclaimer of warranty may not be valid in some states or jurisdictions, the above disclaimer may not apply to you.\n\nThe Splunk Materials, or any feature or part thereof, may not be available for use in all jurisdictions, and Splunk makes no representation that the Splunk Materials, or any feature or part thereof is appropriate or available for use in any particular jurisdiction. To the extent Customer chooses to access and use the Splunk Materials, Customer does so at Customer\u2019s own initiative and at Customer\u2019s own risk, and Customer is responsible for complying with any applicable laws, rules, and regulations.\n\n13. Limitation of Liability.\n\nSPLUNK AND ITS AFFILIATES, SUBSIDIARIES, OFFICERS, DIRECTORS, EMPLOYEES, AGENTS, PARTNERS AND LICENSORS (THE \u201cSPLUNK ENTITIES\u201d) SHALL NOT BE LIABLE TO CUSTOMER FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES OF ANY KIND, UNDER ANY CONTRACT, NEGLIGENCE, STRICT LIABILITY OR OTHER THEORY, INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS, GOODWILL, USE, CONTENT, DATA, SECURITY OF DATA, OR LOSS OF OTHER INTANGIBLES, OR THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, EVEN IF SPLUNK HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. FURTHER, THE SPLUNK ENTITIES SHALL NOT BE RESPONSIBLE FOR ANY LIABILITY OR DAMAGES ARISING IN CONNECTION WITH OR RESULTING FROM: (I) CUSTOMER USE OR INABILITY TO USE THE SERVICE, INCLUDING AS A RESULT OF ANY: (A) TERMINATION OR SUSPENSION OF CUSTOMER ACCOUNT, OR (B) ANY UNANTICIPATED OR UNSCHEDULED DOWNTIME FOR ANY REASON, INCLUDING AS A RESULT OF POWER OUTAGES, SYSTEM FAILURES, OR OTHER INTERRUPTIONS, OR (C) THE COST OF PROCUREMENT OF SUBSTITUTE SERVICES OR GOODS, OR (D) ANY INVESTMENT, EXPENDITURE, OR COMMITMENT BY CUSTOMER IN CONNECTION WITH THIS AGREEMENT OR CUSTOMER\u2019S USE OF OR ACCESS TO THE SERVICE; (II) ANY CHANGES MADE TO THE SERVICE OR ANY TEMPORARY OR PERMANENT CESSATION OF THE SERVICE OR ANY PART THEREOF; (III) ANY UNAUTHORIZED ACCESS TO, ALTERATION OF, OR DELETION OF CUSTOMER CONTENT; (IV) THE DELETION OF, DESTRUCTION, DAMAGE, LOSS, CORRUPTION OF, OR FAILURE TO STORE, SEND OR RECEIVE ANY CUSTOMER CONTENT, TRANSMISSIONS OR DATA ON OR THROUGH THE SERVICE; (V) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE SERVICE; AND (VI) ANY OTHER MATTER RELATING TO THE SERVICE. IN ANY CASE, THE AGGREGATE LIABILITY OF THE SPLUNK ENTITIES UNDER THIS AGREEMENT OR ARISING FROM OR RELATED TO THIS AGREEMENT SHALL BE LIMITED TO US$100. Some jurisdictions do not allow the exclusion or limitation of certain damages. To the extent such a law applies to Customer, some or all of the exclusions or limitations set forth above may not apply to Customer, and Customer may have additional rights. Splunk is acting on behalf of its Affiliates and their licensors, suppliers and service providers for the purpose of disclaiming, excluding and limiting obligations, warranties and liabilities, but in no other respects and for no other purposes.\n\n14. Support; Modification of Site or Services.\n\nSplunk reserves the right at any time and from time to time to modify the Splunk Materials or discontinue, temporarily or permanently, the Site or any of the Services (or any part thereof). Splunk will not be liable to Customer or any other user or other third party for any such modification or discontinuance. If you do not agree to the modification or discontinuance and the modification or discontinuance is material, you may terminate this Agreement by providing us with notice of termination within thirty (30) days after the earlier of (i) the modification or discontinuance or (ii) our notice to you of the modification or discontinuance. On providing notice of termination, you will cease all access to and use of the Splunk Materials and we will have no obligation to provide any further Splunk Materials to you. If Splunk permanently discontinues the Services, and there remains a period for which you have paid fees in advance for access to and use of the Services, we will provide you with a refund or credit (for use with other products or services of Splunk or its affiliates) of a pro rata portion of the fees you paid in advance but unused.\n\n15. Term and Termination; Suspension\n\n15.1. Term. The Agreement will be effective from the earlier of (a) the date this Agreement is accepted by Customer, or (b) the date Customer first accesses or uses the Service (\u201cEffective Date\u201d) and will expire automatically upon the end of the Subscription Term, unless earlier terminated pursuant to this Section 15. If Customer has elected for auto-renewal plan, the Subscription Term and the Agreement will automatically renew for the subscription term upon expiration of the initial or then-current term, unless one party notifies the other of its intent not to renew at least thirty (30) days in advance of the expiration of the Subscription Term or then-current renewal period.\n\n15.2. Termination or Suspension for Cause. Either party may terminate this Agreement for cause, upon thirty (30) days\u2019 advance notice to the other party if there is any breach of this Agreement by the other party, unless the defaulting party has cured the breach within the thirty (30) day notice period. Further, Splunk may terminate Customer\u2019s account and/or suspend or terminate Customer\u2019s access to and use of the Splunk Materials and/or cease providing all or any part of the Site or Services at any time if Splunk determines that such action is appropriate\u2014for example, to (i) prevent errors or any other harm with respect to the Splunk Materials; (ii) mitigate or otherwise limit our damages or our liability; or (iii) respond to applicable law or regulation or any court or governing agency order.\n\n15.3. Termination for Convenience. Customer may terminate Customer\u2019s account and/or stop using the Splunk Materials at any time and for any or no reason by written notice to Splunk or by any other means, which Splunk may make available (e.g., through the Site). Upon such termination, Customer will not be entitled to receive (and Splunk has no obligation to provide) any refund of any fees paid prior to such termination.\n\n15.4. Effect of Termination. Upon any termination of this Agreement: (i) Splunk may deactivate, delete and/or bar access to Customer\u2019s account and any files associated with Customer\u2019s account; (ii) Customer will immediately cease access to and use of the Splunk Materials; (iii) all license and other rights granted to Customer under this Agreement will immediately terminate; (iv) Customer will promptly return or, if instructed by Splunk, destroy all copies of Splunk Materials in its possession or control; and (v) except as expressly set forth in Sections 14 and 16.1 of this Agreement, Customer will not be entitled to receive (and Splunk has no obligation to provide) any refund of any fees paid prior to such termination. Upon expiration or termination, Splunk will have the right to immediately delete, without notice, Customer Content and all backups thereof, and Splunk will not be liable for any loss or damage, which may be incurred by Customer or any third parties as a result of such deletion.\n\n15.5. Survival. The following sections shall survive the termination or expiration of the Agreement: 4, 5, 9, 11, 12, 13, 15.4 and 16-20.\n\n16. Indemnity.\n\nCustomer shall defend, and pay all damages (including attorneys\u2019 fees and costs) finally awarded against Splunk, or that are agreed to in a court-approved settlement, to the extent a claim, demand, suit or proceeding is made or brought against a Splunk Entity by a third party (including those brought by the government) that: (i) alleges that Customer Data, Customer Content, Customer Apps or Customer\u2019s use of the Service infringes or misappropriates such third party\u2019s patent, copyright, trademark or trade secret, or violates another right of a third party, (ii) arises out of the activities of Users and End Users, (iii) Customer Data, Customer Content, Customer Apps or Customer use of the Service violates applicable law or regulation, or (iv) arises out of a dispute between Customer and another customer of Splunk (each, a \u201cSplunk Claim\u201d), provided that Splunk: (a) gives Customer prompt written notice of the Splunk Claim, (b) gives Customer sole control of the defense and settlement of the Splunk Claim except that Customer may not settle any Splunk Claim that requires any action or forbearance on Splunk\u2019s part without Splunk\u2019s prior consent (that Splunk will not unreasonably withhold or delay), and (c) Splunk gives Customer all reasonable assistance, at Customer expense.\n\n17. U.S. Government Use of the Service\n\nSplunk provides the Service, including all related Software and technology, for federal government end use solely in accordance with the following: Government technical data and software rights related to the Service and Software include only those rights customarily provided to the public as defined in this Agreement. This customary commercial license is provided in accordance with FAR 12.211 (Technical Data) and FAR 12.212 (Software) and, for Department of Defense transactions, DFAR 252.227-7015 (Technical Data\u2013Commercial Items) and DFAR 227.7202-3 (Rights in Commercial Computer Software or Computer Software Documentation). If a government agency has a need for rights not conveyed under these terms, it must negotiate with Splunk to determine if there are acceptable terms for transferring such rights, and a mutually acceptable written addendum specifically conveying such rights must be included in any applicable contract or agreement.\n\n18. Import and Export Control.\n\nCustomer\u2019s access to and use of the Splunk Materials are subject to the customs and export control laws and regulations of the United States and may also be subject to the customs and export laws and regulations of other countries. Customer will comply fully with all applicable customs and export control laws and regulations of the United States and any other country where you access or use any of the Splunk Materials. Customer certifies that it is not on any of the relevant U.S. Government Lists of prohibited persons, including but not limited to the U.S. Treasury Department\u2019s List of Specially Designated Nationals, and the U.S. Commerce Department\u2019s List of Denied Persons or Entity List. Customer further certifies that it will not export, re-export, ship, transfer or otherwise use the Splunk Materials in any country subject to an embargo or other sanction by the United States, and that it will not use the Splunk Materials for any purpose prohibited by U.S. laws or for any nuclear, chemical, missile or biological weapons related end uses. Customer is prohibited from sending to its account any data or software that cannot be exported without prior written government authorization, including, but not limited to, certain types of encryption software.\n\n19. General Terms.\n\n19.1. Choice of Law and Disputes. This Agreement shall be governed by and construed in accordance with the laws of the State of California, as if performed wholly within the state and without giving effect to the principles of conflict of law. Any legal action or proceeding arising under this Agreement will be brought exclusively in the federal or state courts located in the Northern District of California, and the parties hereby consent to personal jurisdiction and venue therein. Splunk may seek injunctive or other relief in any state, federal, or national court of competent jurisdiction for any actual or alleged infringement of Splunk\u2019s its Affiliates, or any third party\u2019s intellectual property or other proprietary rights. The United Nations Convention for the International Sale of Goods does not apply to this Agreement.\n\n19.2. No Waiver. Unless otherwise provided herein, all rights and remedies, whether conferred hereunder or by any other instrument or law, will be cumulative and may be exercised singularly or concurrently. The failure by either party to enforce any provisions of this Agreement will not constitute a waiver of any other right hereunder or of any subsequent enforcement of that or any other provisions.\n\n19.3. Severability. If any provision of this Agreement is held by a court of competent jurisdiction to be contrary to law, invalid or unenforceable, the provision shall be modified by the court and interpreted so as best to accomplish the objectives and intent of the original provision to the fullest extent permitted by law, and the remaining provisions of this Agreement shall remain in effect. If such construction is not possible, the invalid or unenforceable portion will be severed from this Agreement but the remainder of the Agreement will remain in full force and effect.\n\n19.4. Independent Contractors; No Third Party Beneficiaries. The parties are independent contractors. This Agreement does not create a partnership, franchise, joint venture, agency, fiduciary or employment relationship between the parties. The third party licensors of Splunk Materials are third-party beneficiaries of the Agreement. There are no other third-party beneficiaries of this Agreement.\n\n19.5. Force Majeure. Splunk and its officers, directors, employees, agents, partners and licensors will not be liable for any delay or failure to perform any obligation under this Agreement where the delay or failure results from any cause beyond Splunk\u2019s or its officers\u2019, directors\u2019, employees\u2019, agents\u2019, partners\u2019, or licensors\u2019 reasonable control, including, without limitation, acts of God, labor disputes or other industrial disturbances, systemic electrical, telecommunications, or other utility failures, earthquake, storms or other elements of nature, blockages, embargoes, riots, acts or orders of government, acts of terrorism, or war.\n\n19.6. Notices. All notices required or permitted under this Agreement will be by email. All notices to Splunk will be sent to mobilesupport@splunk.com(or to such other email address as we may notify, you from time to time). All notices to you will be sent to the email address you provide to Splunk as part of the Registration Data (or to such other email address as you may notify to us from time to time).\n\n19.7. Assignment. Customer may not assign, delegate or transfer this Agreement, in whole or in part, by agreement, operation of law or otherwise, without Splunk\u2019s prior written consent.\n\n19.8. Entire Agreement. This Agreement, which incorporates the Splunk Privacy Policy at http://www.splunk.com/view/SP-CAAAAAG, the Splunk Acceptable Use Policy at http://splunk.com/goto/splunkcloud_aup, the Rules of Conduct set forth in Splunk\u2019s Website Terms of Use (as currently located at: http://www.splunk.com/view/SP-CAAAAAH), the Splunk Documentation, as well as the terms and documents referred to in each, constitutes the entire agreement between Customer and Splunk and shall supersede any prior agreements between Customer and Splunk concerning the Splunk Materials (including, but not limited to, any prior versions of the Agreement) or any preprinted terms on the Order Document. Any terms and conditions contained or referenced by either party in a quote, purchase order, acceptance, invoice or any similar document purporting to modify the terms and conditions contained in this Agreement are hereby rejected and will be disregarded and have no effect unless otherwise expressly agreed to by the parties. This Agreement does not amend any other separate agreement Customer may have with Splunk for other software products or services that are not Services.\n\n19.9. Modification. Splunk reserves the right to update or otherwise make changes to this Agreement from time to time on at least thirty (30) days\u2019 notice, which notice we will provide to you by any reasonable means, including without limitation by posting the revised version of this Agreement on the Site. If you object to the revised version of this Agreement, you will, within such thirty (30) day period, notify us of your objection and, if you so notify us, the revised version will not apply to you. Instead, effective at the end of such thirty (30) day period, your existing Agreement will terminate; you will cease all access to and use of the Splunk Materials; and we will have no obligation to provide any further Splunk Materials to you. If you do not notify us of your objection during the thirty (30) day period, your continued access to and use of the Splunk Materials after the effective date of such revised version of this Agreement will be deemed your acceptance of such revised version; however, changes to this Agreement will not apply to any dispute between you and us based on a claim filed before the effective date of the changes. You can determine when this Agreement was last revised by referring to the \u201cLAST UPDATED\u201d or similar legend at the top of this Agreement.\n\n20. Definitions\n\n20.1. \u201cAffiliate\u201d means any entity that directly or indirectly controls, is controlled by, or is under common control with the subject entity. \u201cControl,\u201d for purposes of this definition, means direct or indirect ownership or control of more than 50% of the voting interests of the subject entity.\n\n20.2. \u201cConfidential Information\u201d means all nonpublic information disclosed by a party (\u201cDisclosing Party\u201d) to the other party (\u201cReceiving Party\u201d), whether orally or in writing, that is designated as \u201cconfidential\u201d or that, given the nature of the information or circumstances surrounding its disclosure, should reasonably be understood to be confidential. Customer Confidential Information shall include Customer Content. Splunk Confidential Information shall include: (i) nonpublic information relating to Splunk or its Affiliates\u2019 or business partners\u2019 technology, customers, business plans, promotional and marketing activities, finances and other business affairs; (ii) third-party information that Splunk is obligated to keep confidential; and (iii) the nature, content and existence of any discussions or negotiations between Customer and Splunk or our Affiliates. Notwithstanding the foregoing, \u201cConfidential Information\u201d does not include any information that: (i) is or becomes generally known to the public without breach of any obligation owed to the Disclosing Party, (ii) was known to the Receiving Party prior to its disclosure by the Disclosing Party without breach of any obligation owed to the Disclosing Party, (iii) is received from a third party without breach of any obligation owed to the Disclosing Party, or (iv) was independently developed by the Receiving Party.\n\n20.3. \u201cContent\u201d means materials, information, software (including machine images), data, text, audio, music, sound, video, images, photographs, graphics, messages, files, attachments, or other content.\n\n20.4. \u201cCustomer App\u201d means a software application created by Customer that is to be run on a mobile platform (i.e., a hardware/software environment for laptops, tablets, smartphones and other portable devices, including Android, iOS, Windows Phone (WP) and such further platforms as may be supported by Splunk from time to time) or a web application created by Customer to be accessed by an End User\u2019s browser and that includes the Splunk SDK.\n\n20.5. \u201cCustomer Claim\u201d has the meaning set forth in Section 16.1\n\n20.6. \u201cCustomer Content\u201d means Content that Customer transmitted, or that was transmitted on Customer behalf, to or from the Service, or that Customer stores, or displays or within the Service, or that is otherwise used or processed in connection with Customer\u2019s account. Customer Content includes Customer Data.\n\n20.7. \u201cCustomer Data\u201d means electronic data and information submitted by or for Customer to the Service or that Customer collects and processes using the Service, which may include its End User data.\n\n20.8. \u201cDocumentation\u201d means online user guides, documentation and help and training materials published on Splunk\u2019s website at http://docs.splunk.com/Documentation or accessible through the Service or the Software, as may be updated by Splunk from time to time.\n\n20.9. \u201cEnd User\u201d means Customer\u2019s end user customer who receives a Customer App for use on his or her mobile device or uses a Customer App through his or her browser.\n\n20.10. \u201cEnd User Requirements\u201d has the meaning set forth in Section 3.2.\n\n20.11. \u201cEffective Date\u201d has the meaning set forth in Section 15.1.\n\n20.12. \u201cFeedback\u201d means all suggestions, comments, opinions, code, input, ideas, reports, information, know-how or other feedback provided by Customer (whether in oral, electronic or written form) to Splunk in connection with Customer\u2019s use of the Service. Feedback does not include any data, results or output created or generated by Customer using the Service, unless submitted or communicated by Customer to Splunk.\n\n20.13. \u201cRegistration Data\u201d has the meaning set forth in Section 1.\n\n20.14. \u201cSplunk Claim\u201d has the meaning set forth in Section 16.2.\n\n20.15. \u201cSplunk Materials\u201d means the Site, Service and Software.\n\n20.16. \u201cSplunk SDK\u201d means the Splunk MINT Software Developer Kit that Splunk makes available to you, including without limitation through the Site.\n\n20.17. \u201cService\u201d means the cloud-based service called \u201cSplunk MINT Cloud Services\u201d provided and maintained by Splunk for collecting and processing data generated by the Splunk SDK.\n\n20.18. \u201cSite\u201d means mint.splunk.com and any successor or related site designated by Splunk from which the Services are provided.\n\n20.19. \u201cSoftware\u201d means the Splunk SDK and any other software, add-on, application or program created, owned or licensed by Splunk that Splunk makes available for download for use in connection with the Service or for the purposes of enabling use of the Service. Software also includes any related Documentation.\n\n20.20. \u201cUser\u201d means \u201cCustomer\u201d if an individual, or if an entity, Customer\u2019s individual employee(s), consultant, contractor, agent or representative whom Customer authorizes to use the Service and whom Customer (or Splunk, at Customer\u2019s request) have supplied a user identification and password.", + "json": "splunk-mint-tos-2018.json", + "yaml": "splunk-mint-tos-2018.yml", + "html": "splunk-mint-tos-2018.html", + "license": "splunk-mint-tos-2018.LICENSE" + }, + { + "license_key": "splunk-sla", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-splunk-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SPLUNK SOFTWARE LICENSE AGREEMENT\n\nTHIS SPLUNK SOFTWARE LICENSE AGREEMENT (\u201cAGREEMENT\u201d) GOVERNS THE LICENSING, INSTALLATION AND USE OF SPLUNK SOFTWARE. BY DOWNLOADING AND/OR INSTALLING SPLUNK SOFTWARE: (a) you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the company, GOVERNMENT, or other entity for which you are acting (for example, as an employee OR GOVERNMENT OFFICIAL) or, if there is no company, GOVERNMENT or other entity for which you are acting, on behalf of yourself as an individual; and (b) you represent and warrant that you have the authority to act on behalf of and bind SUCH company, GOVERNMENT OR OTHER ENTITY (if any). \n\nWITHOUT LIMITING THE FOREGOING, YOU (AND YOUR ENTITY, IF ANY) ACKNOWLEDGE THAT BY SUBMITTING AN ORDER FOR THE SPLUNK SOFTWARE, YOU (AND YOUR ENTITY (IF ANY)) HAVE AGREED TO BE BOUND BY THIS AGREEMENT.\n\nAs used in this Agreement, \u201cSplunk,\u201d refers to Splunk Inc., a Delaware corporation, with its principal place of business at 270 Brannan Street, San Francisco, California 94107, U.S.A.; and \u201cCustomer\u201d refers to the company, government, or other entity on whose behalf you have entered into this Agreement or, if there is no such entity, you as an individual. \n\n DEFINITIONS. Capitalized terms used but not otherwise defined in this Agreement have the meanings set forth in Exhibit A.\n\n LICENSE GRANTS\n\n 2.1 Purchased Software. Subject to Customer\u2019s compliance with this Agreement, including Customer\u2019s timely payment of all License Fees, Splunk grants to Customer a nonexclusive, worldwide, nontransferable, nonsublicensable license during the applicable Term to install and use the Purchased Software within the Licensed Capacity solely for Customer\u2019s Internal Business Purposes. \n\n 2.2 Evaluation Software. If the applicable Order specifies that any Software is provided under an evaluation license or a free trial license, then subject to Customer\u2019s compliance with this Agreement, Splunk grants to Customer a nonexclusive, worldwide, nontransferable, nonsublicensable license during the applicable Term to install and use the Evaluation Software within the Licensed Capacity solely for evaluating whether Customer wishes to purchase a commercial license for such Software. Notwithstanding anything to the contrary in this Agreement, Splunk does not provide maintenance and support (Section 7), warranty (Section 10), or indemnification (Section 13) with respect to Evaluation Software.\n\n 2.3 Test and Development Software. If the applicable Order specifies that any Software is provided under a test and development license, then subject to Customer\u2019s compliance with this Agreement, Splunk grants to Customer a nonexclusive, worldwide, nontransferable, nonsublicensable license during the applicable Term to install and use the Test and Development Software within the Licensed Capacity in a non-production system used for software product migration testing, software product pre-production staging, testing new data sources, types or use cases, or other non-production use. In no way should the Test and Development Software be used for any revenue generation, commercial activity or other productive business or purpose. Notwithstanding anything to the contrary in this Agreement, Splunk does not provide warranty (Section 10), or indemnification (Section 13) with respect to the Test and Development Software.\n\n 2.4 Free Software. Splunk may make certain Software available for license without charge, and such Free Software may have limited features, functions, or other limitations of any kind. Subject to Customer\u2019s compliance with this Agreement, Splunk grants to Customer a nonexclusive, worldwide, nontransferable, nonsublicensable license during the applicable Term to install and use the Free Software within the Licensed Capacity solely for Customer\u2019s Internal Business Purposes. Notwithstanding anything to the contrary in this Agreement, Splunk does not provide maintenance and support (Section 7), warranty (Section 10), or indemnification (Section 13) with respect to Free Software.\n\n 2.5 Content Subscription. When the applicable Order specifies a Content Subscription service as elected by Customer, Splunk will deliver or otherwise make available the applicable Content Subscription service to Customer during the subscription period, and subject to Customer\u2019s compliance with this Agreement (including Customer\u2019s timely payment of all applicable Content Subscription Fees), Splunk grants to such Customer a nonexclusive, worldwide, nontransferable, nonsublicensable license during the applicable subscription period to install and use the subscribed content solely in connection with the designated Purchased Software and solely for Customer\u2019s Internal Business Purposes. Such content will be treated as Purchased Software under this Agreement except that Section 10 (Warranty) will not apply.\n\n 2.6 Splunk Extensions. Subject to Customer\u2019s compliance with this Agreement, including Customer\u2019s timely payment of all License Fees (if any), Splunk grants to Customer a nonexclusive, worldwide, nontransferable, nonsublicensable license to use Splunk Extensions solely in connection with applicable Software that Customer has licensed from Splunk, subject to the same limitations and restrictions (including with respect to Term and Licensed Capacity) that apply to the Software with which the Splunk Extensions are used. Notwithstanding the foregoing, if any Splunk Extension is provided to Customer under a separate license agreement that grants Customer more permissive or broader rights with respect to such Splunk Extension (e.g., a separate license agreement that is provided to Customer as part of the download process for such Splunk Extension), then that separate license agreement, and not this Agreement, will govern Customer\u2019s installation and use of such Splunk Extension (but, for clarity, this Agreement will apply to all other Splunk Extensions). \n\n 2.7 Customer Extensions. Subject to Customer\u2019s compliance with this Agreement, Splunk grants to Customer a nonexclusive, worldwide, nontransferable, nonsublicensable license (a) to copy, modify and use the Splunk Developer Tools solely to develop Extensions for use with the designated Software or Splunk Extension (\u201cCustomer Extensions\u201d), including to support interoperability between the Software or Splunk Extension and Customer\u2019s system or environment and (b) to distribute the Customer Extensions exclusively for the use with the designated Software or Splunk Extension. The foregoing license is subject to the following conditions: (x) Splunk proprietary legends or notices contained in the Splunk Developer Tools may not be removed or altered when used in or with the Customer Extension; and (y) Customer may not make any statement that Customer Extension is certified or that its performance is guaranteed by Splunk. Customer retains title to the Customer Extensions, subject to Splunk\u2019s ownership set forth in Section 5. If Customer allows end users of Customer Extensions to modify or distribute the Customer Extensions, Customer shall limit such modification or distribution to use with the designated Software or Splunk Extension only, and will flow down the conditions in (x) and (y) above to end users of Customer Extensions. Customer agrees to assume full responsibility for the performance and distribution of Customer Extensions.\n\n 2.8 Open Source Software. Customer acknowledges that certain Software may contain Open Source Software. Open Source Software may be identified in the end user documentation or in a list of the Open Source Software provided to Customer upon Customer\u2019s written request. Any Open Source Software that is delivered to Customer as part of Purchased Software, and which may not be taken out of the Purchased Software or used separately from the Purchased Software is covered by the warranty, support and indemnification provisions applicable to Purchased Software. Customer acknowledges that specific terms required by the respective licensor of the Open Source Software may apply to the use of Open Source Software, which terms shall be included in the documentation; however, these terms will not: (a) impose any additional restrictions on Customer's use of the Software, or (b) negate or amend Splunk\u2019s responsibilities with respect to Purchased Software.\n\n LICENSE RESTRICTIONS. Unless otherwise expressly permitted by Splunk, Customer will not and Customer has no right to: (a) copy any Splunk Materials (except as required to run the Software and for reasonable backup purposes); (b) modify, adapt, or create derivative works of any Splunk Materials; (c) rent, lease, loan, resell, transfer, sublicense, distribute, disclose or otherwise provide any Splunk Materials to any third party; (d) decompile, disassemble or reverse-engineer any Splunk Materials, or determine or attempt to determine any source code, algorithms, methods or techniques embodied in any Splunk Materials, except to the extent expressly permitted by applicable law notwithstanding a contractual prohibition to the contrary; (e) access or use any Disabled Materials; (f) provide to any third party the results of any benchmark tests or other evaluation of any Splunk Materials without Splunk\u2019s prior written consent; (g) attempt to disable or circumvent any license key or other technological mechanisms or measures intended to prevent, limit or control use or copying of, or access to, any Splunk Materials (including in order to gain access to any Disabled Materials); (h) remove or obscure any copyright, trademark, patent, or other proprietary notices, legends or symbols from any Splunk Materials; (i) exceed the Licensed Capacity or violate other license limitations identified in Exhibit B or elsewhere in this Agreement; (j) separately use any of the applicable features and functionalities of the Splunk Materials with external applications or code not furnished by Splunk or any data not processed by the Software, except otherwise specifically permitted in the Documentation; (k) misuse the Software or use the Software for any illegal, harmful, fraudulent, or offensive purposes; (l) otherwise access or use any Splunk Materials except as expressly authorized in this Agreement; or (m) encourage or assist any third party to do any of the foregoing. Customer acknowledges that the Software may be configured to display warnings, reduce available functionality, and/or cease functioning if unauthorized or improper use is detected, including if the Term expires or the Licensed Capacity is reached or exceeded.\n\n SERVICE PROVIDERS. Customer may permit its authorized consultants, contractors, and agents (\u201cService Providers\u201d) to access and use the Software solely on Customer\u2019s behalf in connection with providing services to Customer, subject to the terms and conditions of this Agreement. Any such access or use by a Service Provider will be subject to the same limitations and restrictions that apply to Customer under this Agreement, and Customer will be jointly and severally liable for any Service Provider\u2019s actions relating to or use of the Software. For avoidance of doubt, the aggregate use by Customer and all of its Service Providers must not exceed the Licensed Capacity and nothing in this Section 4 is intended to or will be deemed to increase any Licensed Capacity.\n\n OWNERSHIP. Splunk, its suppliers and/or licensors own all worldwide right, title and interest in and to the Splunk Materials, including all related Intellectual Property Rights. Except for the licenses expressly granted to Customer in Section 2, Customer will not acquire or claim any right, title or interest in or to any Splunk Materials or related Intellectual Property Rights, whether by implication, operation of law or otherwise. Notwithstanding anything to the contrary, the Software is licensed, not sold, to Customer. To the extent that Customer provides any Feedback, Customer grants to Splunk a perpetual, irrevocable, worldwide, nonexclusive, transferable, sublicensable, royalty-free, fully paid-up right and license to use and commercially exploit the Feedback in any manner Splunk deems fit.\n\n LICENSE AND SUBSCRIPTION FEES. Customer will pay all license fees set forth in the Order (the \u201cLicense Fees\u201d) for the Software delivered to Customer no later than thirty (30) days after the date of Splunk\u2019s applicable invoice. Customer will also pay all content subscription fees as may be applicable to the Purchased Software, as identified in the Order (the \u201cContent Subscription Fees\u201d, collectively together with License Fees, the \u201cFees\u201d). Without limitation of Splunk\u2019s other termination rights, if Customer fails to pay the Fees when due, then Splunk may terminate this Agreement and all licenses granted hereunder by notice to Customer. All Fees are non-refundable once paid. Any fees and payment terms for Splunk Extensions not included in the Order will be as set forth on the download page for such Splunk Extensions.\n\n MAINTENANCE AND SUPPORT. If Customer has purchased support and maintenance for the Purchased Software as set forth in the Order (the \u201cSupport Services\u201d), then Splunk will provide the level of support and maintenance included in the Order in accordance with the terms and conditions set forth in Exhibit C.\n\n CONFIGURATION SERVICES. Subject to Customer\u2019s payment of applicable fees, Splunk will provide the deployment, usage assistance, configuration, and/or training services (if any) set forth in the Order (the \u201cProfessional Services\u201d) in accordance with Splunk\u2019s standard professional services terms and conditions provided at https://www.splunk.com/en_us/legal/professional-services-agreement.html, which terms and conditions are hereby incorporated by reference and made a part of this Agreement.\n\n SOFTWARE VERIFICATION AND AUDIT. At Splunk\u2019s request, Customer will furnish Splunk with a certification signed by Customer\u2019s authorized representative verifying that the Software is being used in accordance with this Agreement and the applicable Order. Also, if Customer has purchased an offering that requires usage reporting as identified in the Order, Customer agrees to provide such reporting pursuant to the requirements set forth by Splunk. Upon at least ten (10) days\u2019 prior written notice to Customer, Splunk may audit Customer\u2019s (and its Service Providers\u2019) use of the Software to ensure that Customer (and such Service Providers) are in compliance with this Agreement and the applicable Order. Any such audit will be conducted during regular business hours at Customer\u2019s (and/or its Service Providers) facilities, will not unreasonably interfere with Customer\u2019s (or its Service Providers\u2019) business and will comply with Customer\u2019s (or its Service Providers\u2019) reasonable security procedures. Customer will (and will ensure that its Service Providers) provide Splunk with reasonable access to all relevant records and facilities reasonably necessary to conduct the audit. If an audit reveals that Customer (and/or any Service Provider) has exceeded the Licensed Capacity or the scope of Customer\u2019s license grant during the period audited, then Splunk will invoice Customer, and Customer will promptly pay Splunk any underpaid Fees based on Splunk\u2019s price list in effect at the time the audit is completed. If the excess usage exceeds ten percent (10%) of the Licensed Capacity, then Customer will also pay Splunk\u2019s reasonable costs of conducting the audit. Customer will ensure that its Service Providers provide Splunk with the access described in this Section 9. This Section 9 will survive expiration or termination of this Agreement for a period of three (3) years.\n\n WARRANTY. Splunk warrants that for a period of thirty (30) days from the Delivery of Purchased Software, the Purchased Software will substantially perform the material functions described in Splunk\u2019s user documentation for such Purchased Software, when used in accordance with the user documentation. The sole liability of Splunk (and its Affiliates and suppliers/licensors), and Customer\u2019s sole remedy, for any failure of the Purchased Software to conform to the foregoing warranty, is for Splunk to do one of the following (at Splunk\u2019s sole option and discretion): (a) modify, or provide an Enhancement for, the Purchased Software so that it conforms to the foregoing warranty, (b) replace Customer\u2019s copy of the Purchased Software with a copy that conforms to the foregoing warranty, or (c) terminate the license with respect to the non-conforming Purchased Software and refund the License Fees paid by Customer for such non-conforming Purchased Software. All warranty claims must be made by written notice from Customer to Splunk on or before the expiration of the warranty period, as detailed in Section 23.2 below.\n\n WARRANTY DISCLAIMER. EXCEPT AS EXPRESSLY SET FORTH IN SECTION 10 ABOVE, THE SPLUNK MATERIALS, OPEN SOURCE SOFTWARE, THIRD PARTY CONTENT, SUPPORT SERVICES AND PROFESSIONAL SERVICES ARE PROVIDED \u201cAS IS\u201d WITH NO WARRANTIES WHATSOEVER, EXPRESS OR IMPLIED. TO THE FULL EXTENT PERMITTED BY LAW, SPLUNK AND ITS SUPPLIERS AND LICENSORS DISCLAIM ALL WARRANTIES OTHER THAN AS EXPRESSLY SET FORTH IN SECTION 10, INCLUDING ANY IMPLIED WARRANTIES OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR QUIET ENJOYMENT, AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR TRADE USAGE. WITHOUT LIMITATION OF THE GENERALITY OF THE FOREGOING, SPLUNK DOES NOT WARRANT THAT USE OF THE SOFTWARE OR SPLUNK MATERIALS WILL BE UNINTERRUPTED, ERROR FREE OR SECURE, OR THAT ALL DEFECTS WILL BE CORRECTED.\n\n LIMITATION OF LIABILITY. TO THE FULL EXTENT PERMITTED BY APPLICABLE LAW AND NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY OR LIMITATION OF LIABILITY: (A) SPLUNK AND ITS AFFILIATES, SUBSIDIARIES, OFFICERS, DIRECTORS, EMPLOYEES, AGENTS, PARTNERS (INCLUDING AUTHORIZED PARTNERS AS DEFINED IN SECTION 21 BELOW) AND LICENSORS (THE \u201cSPLUNK ENTITIES\u201d) WILL NOT BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL, CONSEQUENTIAL OR PUNITIVE DAMAGES (INCLUDING ANY DAMAGES ARISING FROM LOSS OF USE, LOSS OF DATA, LOST PROFITS, LOST REVENUE, BUSINESS INTERRUPTION, OR COSTS OF PROCURING SUBSTITUTE SOFTWARE OR SERVICES) ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SUBJECT MATTER HEREOF; AND (B) SPLUNK ENTITIES\u2019 TOTAL CUMULATIVE LIABILITY ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SUBJECT MATTER HEREOF WILL NOT EXCEED THE AMOUNTS PAID BY CUSTOMER TO SPLUNK FOR THE PURCHASED SOFTWARE IN THE TWELVE (12) MONTHS PRIOR TO THE EVENT GIVING RISE TO SUCH LIABILITY, IN EACH OF THE FOREGOING CASES (A) AND (B), REGARDLESS OF WHETHER SUCH LIABILITY ARISES FROM CONTRACT, INDEMNIFICATION, WARRANTY, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, AND REGARDLESS OF WHETHER SPLUNK HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGE. IN ADDITION, CUSTOMER, AND NOT SPLUNK, IS SOLELY RESPONSIBLE FOR THE ACCURACY, QUALITY AND SECURITY OF CUSTOMER\u2019S DATA AND FOR MAINTAINING A BACKUP OF ALL SUCH DATA, AND FOR ENSURING THE SECURITY AND INTEGRITY OF CUSTOMER\u2019S (AND ITS SERVICE PROVIDER\u2019S) DATA, COMPUTERS, NETWORKS AND SYSTEMS (INCLUDING WITH RESPECT TO PROTECTING AGAINST VIRUSES AND MALWARE).\n\n INDEMNITY. Splunk will defend Customer against any claim, demand, suit or proceeding brought against Customer by a third party alleging that Purchased Software infringes or misappropriates such third party\u2019s Intellectual Property Rights (\u201cClaim\u201d), and Splunk will pay all damages finally awarded against Customer by a court of competent jurisdiction as a result of such Claim, subject to the other terms and conditions of this Agreement. Notwithstanding the foregoing, Splunk has no obligation to indemnify Customer with respect to: (a) use of the Purchased Software in a manner that is not permitted under the Agreement or that is inconsistent with Splunk\u2019s applicable user documentation; (b) modifications to the Splunk Materials made by anyone other than Splunk; (c) the combination of Software with hardware or software not made by Splunk, or with third-party services, processes or materials where the infringement or misappropriation would not occur but for such combination; (d) Customer\u2019s continued use of the Purchased Software or other allegedly infringing activity after receiving notice of the alleged infringement; or (e) any version of the Purchased Software that is no longer supported by Splunk ((a) through (e), collectively, \u201cExcluded Matters\u201d). If an applicable Claim is made or appears likely to be made, Splunk may, at its option and expense, modify the affected Purchased Software so that it is non-infringing, or replace it with substantially functionally equivalent software. If Splunk determines that neither is reasonably feasible, Splunk may terminate Customer\u2019s applicable license and refund Customer a pro rata refund of the Fees previously paid by Customer, which will be calculated using the remainder of the license term (beginning with the date of Splunk\u2019s receipt of notice of the applicable Claim), or if the Purchased Software is licensed under a perpetual license, a refund of Fees previously paid by Customer, less straight-line depreciation on a three-year basis from the Delivery of the applicable Software. The obligations set forth in this Section constitute Customer\u2019s sole and exclusive remedy, and Splunk\u2019s entire liability, with respect to any Claims that the Purchased Software infringes any third party\u2019s Intellectual Property Rights. Customer will defend Splunk against any claim brought against Splunk by a third party arising out of or relating to any Excluded Matter or any Customer Extension, and Customer will pay all damages finally awarded against Splunk by a court of competent jurisdiction as a result of such claim. Each party\u2019s indemnity obligations set forth in this Section 13 are conditioned upon the party seeking indemnification (x) providing prompt written notice to the other party of the applicable claim; (y) giving the indemnifying party sole control of the defense and/or settlement of the applicable claim, except that: (i) the indemnified party may participate in the defense with counsel of its choice at its own expense, and (ii) the indemnifying party will not agree to any settlement that imposes a material obligation on the indemnified party without the indemnified party\u2019s prior written consent (not to be unreasonably withheld or delayed), and (z) providing reasonable cooperation and assistance in the defense and negotiations.\n\n CONFIDENTIAL INFORMATION.\n 14.1 Confidential Information. \u201cConfidential Information\u201d means any technical or business information, ideas, materials, know-how or other subject matter that is disclosed by one party to the other party that: (a) if disclosed in writing, is marked \u201cconfidential\u201d or \u201cproprietary\u201d at the time of such disclosure; (b) if disclosed orally, is identified as \u201cconfidential\u201d or \u201cproprietary\u201d at the time of such disclosure, and is summarized in a writing sent by the disclosing party to the receiving party within thirty (30) days after any such disclosure; or (c) under the circumstances, a person exercising reasonable business judgment would understand to be confidential or proprietary. Confidential Information of Splunk will include the Splunk Materials (including any license keys).\n\n 14.2 Use and Disclosure Restrictions. The party receiving Confidential Information (\u201cRecipient\u201d) agrees: (a) to maintain the Confidential Information of the party disclosing such information (the \u201cDiscloser\u201d) in strict confidence; (b) not to disclose such Confidential Information to any third parties; and (c) not to use any such Confidential Information for any purpose other than to exercise its rights or perform its obligations under this Agreement. Recipient will treat Confidential Information of the Discloser with the same degree of care as it accords to its own Confidential Information, but in no event with less than reasonable care. Recipient may disclose the Confidential Information of Discloser to its directors, officers, employees, and subcontractors (collectively, \u201cRepresentatives\u201d), who have a bona fide need to know such Confidential Information, provided that each such Representative is bound by a legal obligation as protective of the other party\u2019s Confidential Information as those set forth herein. Recipient\u2019s obligations under this Section 14 will continue in effect for a period of three (3) years from the date of last disclosure of Confidential Information by Discloser, except that Customer\u2019s obligations under this Section 14 will continue in effect in perpetuity with respect to Splunk Materials.\n\n 14.3 Exclusions. The obligations of Recipient under Section 14.1 will not apply to any Confidential Information that: (a) is now or thereafter becomes generally known or available to the public, through no act or omission on the part of Recipient (or any of its Representatives, Affiliates, or agents) or any third party subject to any use or disclosure restrictions with respect to such Confidential Information; (b) was known by or lawfully in the possession of Recipient, prior to receiving such information from Discloser, without restriction as to use or disclosure; (c) is rightfully acquired by Recipient from a third party who has the right to disclose it and who provides it without restriction as to use or disclosure; or (d) is independently developed by Recipient without access, use or reference to any Confidential Information of Discloser.\n\n 14.4 Required Disclosures. The provisions of Section 14.1 will not restrict Recipient from disclosing Discloser\u2019s Confidential Information to the extent required by any law enforcement agencies or regulators or compelled by a court or administrative agency of competent jurisdiction, provided that, to the extent permissible under law, Recipient uses reasonable efforts to give Discloser advance notice of such required disclosure as appropriate in order to enable Discloser to prevent or limit disclosure.\n\n 14.5 Return or Destruction of Confidential Information. Upon termination of the Agreement or support and maintenance, Recipient will promptly return to Discloser or, at Discloser\u2019s option, destroy all tangible items and embodiments containing or consisting of Discloser\u2019s Confidential Information and all copies thereof and provide written certification of such destruction or return by an authorized person.\n\n 14.6 Injunctive Relief. Recipient agrees that, due to the unique nature of the Confidential Information, the unauthorized disclosure or use of the Confidential Information will cause irreparable harm and significant injury to Discloser, the extent of which will be difficult to ascertain and for which there will be no adequate remedy at law. Accordingly, Recipient agrees that Discloser, in addition to any other available remedies, will have the right to an immediate injunction and other equitable relief enjoining any breach or threatened breach of this Section 14, without the necessity of posting any bond or other security. Recipient will notify Discloser in writing immediately upon Recipient\u2019s becoming aware of any such breach or threatened breach.\n\n TERM. This Agreement will commence upon Splunk\u2019s first Delivery of the Software specified in the Order (or, Splunk\u2019s other initial delivery of the Software to Customer) and will remain in effect until the expiration of the applicable Software license term, unless earlier terminated pursuant to Section 16 (the \u201cTerm\u201d). For the avoidance of doubt, termination of a license term shall not affect the term of any other licenses applicable to other Splunk products and services that Customer has purchased. Further, termination of a Content Subscription shall not affect the term of the base license applicable to the Software that Customer has purchased.\n \n 15.1 Purchased Software, etc. Unless otherwise indicated in the Order, the Term for Purchased Software, Free Software, Splunk Extensions and Splunk Developer Tools, if applicable, will continue indefinitely, unless and until terminated pursuant to Section 16. If the Order indicates a Term of a specific duration for any of the foregoing, the licenses granted to Customer for such Purchased Software or Free Software will terminate automatically upon expiration of such Term. Upon expiration of any Term, the applicable Software will stop working automatically.\n\n 15.2 Evaluation Software. If Customer is granted a license for Evaluation Software, then the Term for such Evaluation Software will be specified in the Order or with the license key. If no such term is specified, the Term for Evaluation Software is thirty (30) days from the date the license key is delivered. Any license keys provided for Evaluation Software will automatically expire and cause the Evaluation Software to become non-operational at the end of the Term. If Customer wishes to use the Evaluation Software after the Term expires, then Customer must obtain the applicable paid license.\n\n\n TERMINATION. Either party may terminate this Agreement by written notice to the other party if the other party materially breaches this Agreement and does not cure the breach within thirty (30) days of receiving written notice of the breach pursuant to Section 23.2 below. In addition, Splunk may immediately terminate this Agreement (in whole or in part, including with respect to any Term) by written notice to Customer (a) if Customer materially breaches Section 3, and (b) as set forth in Section 6. Splunk may also terminate Customer\u2019s license to any Evaluation Software at any time with or without cause by notice to Customer. If Customer is the Government, then termination terms and conditions will be governed by 48 C.F.R. \u00a7 52.212-4. Upon any expiration or termination of this Agreement, the rights and licenses granted to Customer hereunder will automatically terminate, and Customer agrees to cease immediately using the Splunk Materials and to return or destroy all copies of the Splunk Materials and other Splunk Confidential Information in Customer\u2019s possession or control, and certify in writing the completion of such return or destruction in accordance with Section14.5. Upon termination of this Agreement, Splunk will have no obligation to refund any Fees or other amounts received from Customer during the Term, and notwithstanding any early termination above, Customer shall still be required to pay all Fees payable under an Order (i.e., no such early termination shall relieve Customer of its obligations to pay all Fees payable under an Order) unless otherwise provided in this Agreement. Termination of Support and Maintenance Terms and Conditions due to Splunk\u2019s breach is provided in Section 3.2 of Exhibit C. Section 1 (Definitions), Section 5 (Ownership), Section 9 (Software Verification and Audit), Section 11 (Warranty Disclaimer), Section 12 (Limitation of Liability), Section 13 (Indemnity), Section 14 (Confidentiality), Section 16 (Termination) and Sections 17 (Export) through 23 (General) will survive any expiration or termination of this Agreement.\n\n EXPORT. Customer will comply fully with all relevant export laws and regulations of the United States and any other country (\u201cExport Laws\u201d) where Customer uses any of the Splunk Materials. Customer certifies that Customer is not on any of the relevant U.S. government lists of prohibited persons, including the Treasury Department\u2019s List of Specially Designated Nationals and the Commerce Department\u2019s List of Denied Persons or Entity List. Customer further certifies that Customer will not export, re-export, ship, transfer or otherwise use the Splunk Materials in any country subject to an embargo or other sanction by the United States, and that Customer will not use the Splunk Materials for any purpose prohibited by the Export Laws, including, but not limited to, nuclear, chemical, missile or biological weapons related end uses.\n\n GOVERNMENT END USER RIGHTS. Customer acknowledges that all Splunk Materials were developed entirely at private expense and that no part of the Splunk Materials was first produced in the performance of a government contract. Customer agrees that all Splunk Materials and any derivatives thereof are \u201cCommercial Items\u201d as defined in 48 C.F.R. \u00a7 2.101, and if Customer is the Government, then such use, duplication, reproduction, release, modification, disclosure or transfer of this commercial product and data, is restricted in accordance with 48 C.F.R. \u00a7 12.211, 48 C.F.R. \u00a7 12.212, 48 C.F.R. \u00a7 227.7102-2, and 48 C.F.R. \u00a7 227.7202, as applicable. Consistent with 48 C.F.R. \u00a7 12.211, 48 C.F.R. \u00a7 12.212, 48 C.F.R. \u00a7 227.7102-1 through 48 C.F.R. \u00a7 227.7102-3, and 48 C.F.R. \u00a7\u00a7 227.7202-1 through 227.7202-4, as applicable, the Splunk Materials are licensed to Government end users (a) only as Commercial Items and (b) with only those rights as are granted to all other users pursuant to this Agreement and any related agreement(s), as applicable. Accordingly, Customer will have no rights in the Splunk Materials except as expressly agreed to in writing by Customer and Splunk. \n\n PUBLICITY. Customer agrees that Splunk may publish a brief description of Customer\u2019s deployment of the Software and identify Customer as a Splunk customer on any of Splunk\u2019s websites, client lists, press releases, and/or other marketing materials.\n\n THIRD PARTY CONTENT DISCLAIMER. Certain Extensions and other materials or services made available for download or access on Splunkbase are developed and/or provided by third parties (\u201cThird-Party Content\u201d). Splunk makes such Third-Party Content available for download on Splunkbase as a convenience to its customers, but Splunk neither controls nor endorses, nor is Splunk responsible for, any Third-Party Content, including the accuracy, integrity, quality, legality, usefulness or safety of Third-Party Content. Certain Third-Party Content may, among other things, be inaccurate, nonfunctional, infringing or dangerous. Nothing in this Agreement or on Splunkbase will be deemed to be a representation or warranty by Splunk with respect to any Third-Party Content, even if a particular Extension or other item of Third-Party Content is identified as \u201ccertified\u201d or \"validated\" for use with Software. Splunk has no obligation to monitor Third-Party Content, and Splunk may block or disable access to any Third-Party Content at any time. In addition, the availability of any Third-Party Content through Splunkbase does not imply Splunk\u2019s endorsement of, or affiliation with, any provider of such Third-Party Content, nor does such availability create any legal relationship between Customer and any such provider. Customer\u2019s use of Third-Party Content is at Customer\u2019s own risk and may be subject to any additional terms, conditions and policies applicable to such Third-Party Content (such as license terms, terms of service or privacy policies of the providers of such Third-Party Content).\n\n AUTHORIZED PARTNERS. If Customer acquired the Software through an authorized reseller, partner or OEM of Splunk (\u201cAuthorized Partner\u201d) then, notwithstanding anything to the contrary in this Agreement: (a) Customer\u2019s use of the Software is subject to any additional terms in the agreement provided by the Authorized Partner; (b) Customer agrees to pay the Authorized Partner the Fees and other applicable fees, and Customer will have no direct Fee payment obligations to Splunk for such Software; (c) Customer\u2019s agreement with the Authorized Partner is between Customer and the Authorized Partner and is not binding on Splunk; and (d) Splunk may terminate this Agreement (including Customer\u2019s right to use the Software) if Splunk does not receive payment for Customer\u2019s use of the Software from the Authorized Partner or if Customer breaches any term of this Agreement. If Customer\u2019s warranty and support terms stated in its agreement with the Authorized Partner are different from those set forth in this Agreement, then such different terms are solely between Customer and the Authorized Partner and Splunk will have no obligations to Customer under this Agreement with respect to such different terms. Except as set forth in the preceding sentence, if there is any conflict or inconsistency between this Agreement and Customer\u2019s agreement with Authorized Partner, then this Agreement will control (and will resolve such inconsistency) as between Splunk and Customer.\n\n CHOICE OF LAW AND DISPUTES. Unless Customer is the Government, this Agreement will be governed by and construed in accordance with the laws of the State of California, as if performed wholly within the state and without giving effect to the conflicts of law principles of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. Any legal action or proceeding arising under this Agreement will be brought exclusively in the federal or state courts located in San Francisco, California, and the parties hereby consent to personal jurisdiction and venue therein (except that Splunk may seek injunctive relief to prevent improper or unauthorized use or disclosure of any Splunk Materials in any court of competent jurisdiction). If Customer is the Government, this Agreement will be governed by and interpreted in accordance with the Contract Disputes Act of 1978, as amended (41 U.S.C. \u00a7\u00a7 7101-7109). Failure of the parties to reach agreement on any request for equitable adjustment, claim, appeal, or action arising under or relating to this Agreement will be a dispute to be resolved in accordance with the clause at 48 C.F.R \u00a7 52.233-1, which is incorporated in this Agreement by reference.\n\n GENERAL\n\n 23.1 Purchase Order. Customer\u2019s issuance of a purchase order constitutes acceptance of this Agreement notwithstanding anything to the contrary in such purchase order. If any purchase order contains any terms or conditions that are different from or additional to the terms and conditions set forth in this Agreement, then Splunk expressly rejects such different or additional terms and conditions, and such different or additional terms and conditions will not become a part of the agreement between the parties notwithstanding any subsequent acknowledgement, invoice or license key that Splunk may issue.\n\n 23.2 Notices. All notices required or permitted under this Agreement will be in writing and delivered in person, by confirmed facsimile transmission, by overnight delivery service, or by registered or certified mail, postage prepaid with return receipt requested, and in each instance will be deemed given upon receipt. All communications will be sent to the addresses set forth in the applicable Order or to such other address as may be specified by either party to the other party in accordance with this Section.\n\n 23.3 Assignment. Customer may not assign, delegate or transfer this Agreement, in whole or in part, by agreement, operation of law or otherwise without the prior written consent of Splunk. Splunk may assign this Agreement in whole or in part to an Affiliate or in connection with an internal reorganization or a merger, acquisition, or sale of all or substantially all of Splunk\u2019s assets to which this Agreement relates. Splunk may also assign its rights to receive payment due as a result of performance of this Agreement to a bank, trust company, or other financing institution, including any federal lending agency in accordance with the Assignment of Claims Act (31 U.S.C. \u00a7 3727) and may assign this Agreement in accordance with the provisions at 48 C.F.R \u00a7 42.12, as applicable. Any attempt to assign this Agreement other than as permitted herein will be null and void. Subject to the foregoing, this Agreement will bind and inure to the benefit of the parties\u2019 permitted successors and assigns.\n\n 23.4 Rights and Remedies. Except as otherwise expressly set forth in this Agreement, the rights and remedies of either party as set forth in this Agreement are not exclusive and are in addition to any other rights and remedies now or hereafter provided by law or at equity.\n\n 23.5 Waiver; Severability. The waiver by either party of a breach of or a default under this Agreement will not be effective unless in writing. The failure by either party to enforce any provisions of this Agreement will not constitute a waiver of any other right hereunder or of any subsequent enforcement of that or any other provisions. If a court of competent jurisdiction holds any provision of this Agreement invalid or unenforceable, the remaining provisions of the Agreement will remain in full force and effect, and the provision affected will be construed so as to be enforceable to the maximum extent permissible by law.\n\n 23.6 Interpretation. For purposes of interpreting this Agreement, (a) unless the context otherwise requires, the singular includes the plural, and the plural includes the singular; (b) unless otherwise specifically stated, the words \u201cherein,\u201d \u201chereof,\u201d and \u201chereunder\u201d and other words of similar import refer to this Agreement as a whole and not to any particular section or paragraph; (c) the words \u201cinclude\u201d and \u201cincluding\u201d will not be construed as terms of limitation, and will therefore mean \u201cincluding but not limited to\u201d and \u201cincluding without limitation\u201d; (d) unless otherwise specifically stated, the words \u201cwriting\u201d or \u201cwritten\u201d mean preserved or presented in retrievable or reproducible form, whether electronic (including email but excluding voice mail) or hard copy; (e) the captions and section and paragraph headings used in this Agreement are inserted for convenience only and will not affect the meaning or interpretation of this Agreement; and (f) the references herein to the parties will refer to their permitted successors and assigns.\n\n 23.7 Operational Metrics and Usage Data. The Software and other Splunk Extensions may be configured to allow Splunk to collect and process technical and related information about Customer\u2019s use of the Software (which may include, without limitation, ingest volume, search concurrency, number of unique user logins, Internet protocol addresses, page views, session duration, and other similar data) and certain aggregated, anonymized information about the Software environment (such as hardware identification, operating system, application version), performance, configuration and other usage information. Splunk uses this information to support and troubleshoot issues, provide updates, automate invoices, analyze trends and improve Splunk\u2019s products or services. Participation in the collection and processing of such data by Splunk is voluntary (except for certain Free or Evaluation Software or other programs as designated by Splunk, which may require Customer\u2019s participation in an in-product analytics program as a condition of receiving access to and using such Software) and instructions on how to disable these in-product collection features are set forth in Splunk\u2019s end user documentation. Splunk collects and processes the information it collects subject to Splunk\u2019s Privacy Policy, which can be found at https://www.splunk.com/en_us/legal/privacy/privacy-policy.html and is hereby incorporated by reference and made a part of this Agreement.\n\n 23.8 Integration; Entire Agreement. This Agreement along with any additional terms incorporated herein by reference, including the Order and the Exhibits hereto, constitute the complete and exclusive understanding and agreement between the parties and supersedes any and all prior or contemporaneous agreements, communications and understandings, written or oral, relating to their subject matter. Any waiver, modification or amendment of any provision of this Agreement will be effective only if in writing and signed by duly authorized representatives of both parties. Any terms and conditions contained or referenced by either party in a quote, purchase order, acceptance, invoice or any similar document purporting to modify the terms and conditions contained in this Agreement will be disregarded and have no effect unless otherwise expressly agreed to by the parties in accordance with the preceding sentence. \n\n \nEXHIBIT A\nDEFINITIONS\n\n \u201cAffiliate,\u201d with respect to a party, means a corporation, partnership or other entity controlling, controlled by or under common control with such party, but only so long as such control continues to exist. For purposes of this definition, \u201ccontrol\u201d means ownership, directly or indirectly, of greater than fifty percent (50%) of the voting rights in such entity (or, in the case of a noncorporate entity, equivalent rights).\n\n \u201cAuthorized Partner\u201d has the meaning set forth in Section 21.\n\n \u201cClaim\u201d has the meaning set forth in Section 13.\n\n \u201cConfidential Information\u201d has the meaning set forth in Section 14.1.\n\n \u201cContent Subscription\u201d means certain entitlement for Customer to receive a collection of updated contents applicable to the Purchased Software (such as models, rules and configurations, as further described in the relevant end user documentation for the Purchased Software) on a periodic basis for the duration of the subscription period. This can be purchased as an add-on service to the term license or perpetual license to the applicable Purchased Software as identified in the Order.\n\n \u201cContent Subscription Fees\u201d has the meaning set forth in Section 6.\n\n \u201cCustomer Extensions\u201d has the meaning set forth in Section 2.7.\n\n \u201cDelivery\u201d means the date of Splunk\u2019s initial delivery of the license key for the applicable Software or otherwise making the applicable Software available for download by Customer.\n\n \u201cDisabled Materials\u201d means certain materials (including programs, modules or components, functionality, features, documentation, content or other materials) that may be contained in or provided with the Software as part of the delivery mechanism used by Splunk, but that are disabled or hidden in Customer\u2019s setting, because Customer either: (a) does not have the relevant license or license key, or (b) has not paid the applicable Fees, for those materials.\n\n \u201cEnhancements\u201d means any updates, upgrades, releases, fixes, enhancements or modifications to the Purchased Software made generally commercially available by Splunk to its support customers under the terms and conditions set forth in Exhibit C.\n\n \u201cEvaluation Software\u201d means Software that is specified in an Order as provided under an evaluation license or a free trial license.\n\n \u201cExcluded Matters\u201d has the meaning set forth in Section 13.\n\n \u201cExtension\u201d means any separately downloadable suite, configuration file, add-on, technical add-on, example module, command, function or application that extends the features or functionality of the applicable Software.\n\n \u201cFeedback\u201d means all suggestions for improvement or enhancement, recommendations, comments, opinions, code, input, ideas, reports, information, know-how or other feedback provided by Customer (whether in oral, electronic or written form) to Splunk in connection with Splunk\u2019s Software. Feedback does not include any data, results or output created or generated by Customer using the Software, unless specifically submitted or communicated by Customer to Splunk as part of the Feedback. \n\n \u201cFree Software\u201d means Software that is specified in an Order as provided to Customer without charge (other than Evaluation Software).\n\n \u201cGovernment\u201d means an agency, department, or instrumentality of the United States government.\n\n \u201cIntellectual Property Rights\u201d means all patent, copyright, trademark, and trade secret rights and other intellectual property and proprietary rights, whether registered or unregistered.\n\n \u201cInternal Business Purpose\u201d means Customer\u2019s use for its own internal business operations on Customer\u2019s systems, networks and devices with Customer\u2019s data. Such use does not include use by Customer on a service bureau basis or otherwise to provide services to, or process data for, any third party.\n\n \u201cLicensed Capacity\u201d means the maximum usage of the Software (e.g., aggregate daily volume of data indexed, based on source types, number of Nodes, number of monitored accounts, number of users, etc.) that is permitted under the type of license included in the applicable Order. The Licensed Capacity associated with each Purchased Software is set forth in Exhibit B.\n\n \u201cLicense Fees\u201d has the meaning set forth in Section 6.\n\n \u201cOpen Source Software\u201d means software or similar subject matter that is distributed under an open source license such as (by way of example only) the GNU General Public License, GNU Lesser General Public License, Apache License, Mozilla Public License, BSD License, MIT License, Common Public License, any derivative of any of the foregoing licenses, or any other license approved as an open source license by the Open Source Initiative.\n\n \u201cOrder\u201d means Splunk\u2019s quote, statement of work, or ordering document accepted by Customer via Customer\u2019s purchase order or other ordering document submitted to Splunk (directly or indirectly through an Authorized Partner) to order Splunk Materials or services, which references the products, services, pricing and other applicable terms set forth in an applicable Splunk quote or ordering document.\n\n \u201cProfessional Services\u201d has the meaning set forth in Section 8.\n\n \u201cPurchased Software\u201d means Software that is licensed to Customer and for which Customer has paid a License Fee to Splunk, whether directly or through an Authorized Partner.\n\n \u201cService Providers\u201d has the meaning set forth in Section 4.\n\n \u201cSplunkbase\u201d means Splunk\u2019s online directory of or platform for Extensions, currently located at https://splunkbase.splunk.com/ and any and all successors, replacements, new versions, derivatives, updates and upgrades thereto and any other similar platform(s) owned and/or controlled by Splunk.\n\n \u201cSplunk Developer Tool\u201d means the standard application programming interface configurations, software development kits, libraries, command line interface tools, other tooling (including scaffolding and data generation tools), integrated development environment plug-ins or extensions, code examples, tutorials, reference guides and other related materials identified and provided by Splunk to facilitate or enable the creation of Extensions or otherwise support interoperability between the Software and Customer\u2019s system or environment.\n\n \u201cSplunk Extensions\u201d means Extensions made available through Splunkbase that are identified on Splunkbase as published by Splunk (and not by any third party).\n\n \u201cSplunk Materials\u201d mean the Software, Software license keys, Splunk Developer Tools, Splunk Extensions and end user documentation relating to the foregoing.\n\n \u201cSoftware\u201d means the Software products listed in an Order and any Enhancements thereto made available to Customer by Splunk.\n\n \u201cSupport Services\u201d has the meaning set forth in Section 7.\n\n \u201cTerm\u201d has the meaning set forth in Section 15.\n\n \u201cTest and Development Software\u201d means Software that is specified in an Order as provided under a test and development license.\n\n \u201cThird-Party Content\u201d has the meaning set forth in Section 20.\n\n \nEXHIBIT B\nLICENSED CAPACITY\n\nThe Licensed Capacity and other license limitations associated with each Purchased Software can be found here: https://www.splunk.com/en_us/legal/licensed-capacity.html \n\n \nEXHIBIT C\n\nSPLUNK INC.\n\nSUPPORT AND MAINTENANCE TERMS AND CONDITIONS\nCustomer agrees that the following terms and conditions (\u201cTerms and Conditions\u201d) will govern the delivery of any support and/or maintenance services by Splunk (\u201cSupport\u201d) listed on an Order entered into pursuant to the Software License Agreement (the \u201cAgreement\u201d) to which these Terms and Conditions are attached and made a part thereof. Subject to Customer\u2019s termination rights set forth in the Agreement, ordering any Support from Splunk or any Authorized Partner indicates Customer\u2019s acceptance of these Terms and Conditions. These Terms and Conditions are effective upon receipt and confirmation of acceptance of Customer\u2019s purchase order by Splunk or an Authorized Partner (the \u201cEffective Date\u201d).\n\n DEFINITIONS. Unless otherwise defined in these Terms and Conditions, capitalized terms have the meanings set forth in the Agreement.\n\n SUPPORT AND MAINTENANCE.\n 2.1 Services. Subject to Customer\u2019s timely payment of the applicable annual Support fees set forth in the Order (the \u201cSupport Fees\u201d), Splunk will provide the level of Support identified in the Order in accordance with the Support descriptions set forth below. No other maintenance or support for the Software is included.\n\n 2.2 Support Fees. Support Fees will be due and payable in accordance with the Order. Splunk will notify (electronically or otherwise) Customer of the then-current annual Support Fee for Customer\u2019s level of Support in each notice of term renewal. Support Fees are non-refundable once paid.\n\n 2.3 Exclusions. Splunk will have no obligation of any kind to provide Support for issues caused by or arising out of any of the following (each, a \u201cLicensee-Generated Error\u201d): (i) modifications to the Software not made by Splunk; (ii) use of the Software other than as authorized in the Agreement or as provided in the documentation for the Software; (iii) damage to the machine on which the Software is installed; (iv) Customer\u2019s continued failure to use the Software without reference to the documentation; (v) versions of the Software other than the Supported Version (defined in Section2.6.6); (vi) third-party products not expressly supported by Splunk and described in the documentation; or (vii) conflicts related to replacing or installing hardware, drivers, and software that are not expressly supported by Splunk and described in the documentation. If Splunk determines that support for an issue caused by a Licensee-Generated Error, Splunk will notify Customer as soon as reasonably possible under the circumstances. If Customer agrees that Splunk should provide support for the Licensee-Generated Error via a confirming email, then Splunk will have the right to invoice Customer at Splunk\u2019s then-current time and materials rates for any such support provided by Splunk.\n\n 2.4 Support for Splunk Extensions. Subject to Customer\u2019s payment of the applicable annual Support Fees, if Customer are a licensee of a Splunk Extension supported by Splunk, Splunk will provide an Initial Response and Acknowledgement in accordance with P3 terms as described in the Support Programs (as defined below). Updates for the Software will be provided when made available. No other sections in these Terms and Conditions apply to Splunk Extensions.\n\n 2.5 Restrictions. Support is delivered only in English unless Customer is in a location where Splunk has made localized Support available.\n\n 2.6 Support Descriptions.\n\n 2.6.1 Splunk Support.Customer\u2019s Order will identify the level of Support Customer purchases for the applicable Purchased Software. A summary of the different support programs and levels are described here: http://www.splunk.com/en_us/support-and-services/support-programs.html (\u201cSupport Programs\u201d). Support cases are handled based on case priority levels as described in the Support Programs. When submitting a case, Customer will select the priority for initial response by logging the case online, in accordance with the priority guidelines set forth in the Support Programs. When the case is received, Splunk Support may change the priority if the issue does not conform to the criteria for the selected priority and will provide Customer with notice (electronic or otherwise) of such change. \n\n 2.6.2 Authorized Support Contacts. Support will be provided solely to the authorized individual(s) specified by Customer that Splunk will communicate with that individual(s) when providing Support (\u201cSupport Contacts\u201d). Splunk strongly recommends that Customer\u2019s support contact(s) be trained on the Purchased Software. Customer\u2019s Order will indicate a maximum number of authorized Support Contacts for Customer\u2019s license level. Customer will be asked to designate Customer\u2019s authorized support contacts, including their primary email address and Splunk.com login ID, following Splunk\u2019s acknowledgment of Customer\u2019s Order.\n\n 2.6.3 Defect Resolution. Should Splunk in its sole judgment determine that there is a defect in the Purchased Software, it will, at its sole option, repair that defect in the version of the Software that Customer is currently using or instruct Customer to install a newer version of the Software with that defect repaired. Splunk reserves the right to provide Customer with a workaround in lieu of fixing a defect should it in its sole judgment determine that it is more effective to do so.\n\n 2.6.4 Support Hours. Support is provided via telephone, email and web portal. Support will be delivered by a member of Splunk\u2019s technical support team during the regional hours of operation listed in the Support Programs page.\n\n 2.6.5 Customer\u2019s Obligation to Assist. Should Customer report a purported defect in the Purchased Software to Splunk, Splunk may require Customer to provide them with the following information: (a) a general description of the operating environment, (b) a list of all hardware components, operating systems and networks, (c) a reproducible test case, and (d) any log files, trace and systems files. Customer\u2019s failure to provide this information may prevent Splunk from identifying and fixing that purported defect.\n\n 2.6.6 Software Upgrades and Software Support Policy. When available, Splunk provides updates, upgrades, maintenance releases and reset keys only to Splunk Support customers pursuant to Splunk\u2019s Support Policy provided at: https://www.splunk.com/en_us/legal/splunk-software-support-policy.html (\u201cSupport Policy\u201d). Software comes with a three-digit number version. The first digit represents the major release (i.e., upgrade), the second digit identifies the minor releases (i.e., updates) and the third digit identifies the maintenance releases. With a new major version, the number to the left of the decimal is changed and for minor releases, the number to the right of the decimal point is increased. Subject to the foregoing, Splunk provides Support for the duration specified in the Support Policy following the initial release date of each respective major or minor version. The current version and the releases within the support period will be \u201cSupported Versions\u201d.\n\n\n \n 2.7 Changes in Support and Software. Subject to the Support Policy, Customer acknowledges that Splunk has the right to discontinue the manufacture and development of any Software and the Support for any Software, including the distribution of older Software versions, at any time in its sole discretion, provided that Splunk agrees not to discontinue Support for the Software during the current annual term of these Terms and Conditions, subject to the termination provisions herein. Splunk reserves the right to alter Support from time to time, using reasonable discretion but in no event will such alterations result in (i) diminished support from the level of Support set forth herein; (ii) materially diminished obligations for Splunk; (iii) materially diminished Customer\u2019s rights; or (iv) higher Support Fees during the then-current term. Splunk will provide Customer with thirty (30) days\u2019 prior written notice (delivered electronically or otherwise) of any permitted material changes to the Support contemplated herein.\n\n\n TERM AND TERMINATION.\n\n 3.1 Term. These Terms and Conditions will commence on the Delivery date and, unless terminated earlier in accordance with the terms of the Agreement, for a period of one (1) year (or for term purchased if different than one year) thereafter (the \u201cInitial Term\u201d). These Terms and Conditions will, for support and maintenance services purchased for perpetual licenses, automatically renew for additional one (1)-year terms (or for term purchased if different than one year) (each, a \u201cRenewal Term,\u201d and the Initial Term, collectively with any and all Renewal Terms, will be referred to as the \u201cSupport Term\u201d), unless either party provides the other (or if purchased through an Authorized Partner, Customer provides the Authorized Partner) with written notice of its intent not to renew these Terms and Conditions at least thirty (30) days prior to the end of the then-current Initial Term or Renewal Term. Customer must purchase and/or renew Support for all of the licenses for a particular Software product. If the Support Term lapses, Customer may seek to re-activate Support by submitting a purchase order that includes fees for the lapsed period plus a reinstatement fee.\n\n 3.2 Termination. Either party may terminate these Terms and Conditions by written notice to the other party if the other party materially breaches this Agreement or these Terms and Conditions and does not cure the breach within thirty (30) days of receiving notice of the breach. If Customer terminates the Agreement for Splunk\u2019s uncured material breach of these Terms and Conditions, then Splunk will refund any unused prepaid fees to Customer as Customer\u2019s sole and exclusive remedy. When Customer accepts a term license or cloud subscription in an Order that also terminates the Customer\u2019s perpetual licenses of a Software (\u201cPrior Software\u201d), all rights granted with respect to the Prior Software are terminated upon the effective date of the Order, unless otherwise specified on the Order. There will be no refund of any Fees previously paid with respect to the Prior Software. Customer will certify in writing within thirty (30) business days of the date of a request from Splunk, the destruction of all of the Prior Software including all Software copies and related license keys thereof.\n\n\n 4. FORCE MAJEURE. Splunk will not be responsible for any failure or delay in its performance under these Terms and Conditions due to causes beyond its reasonable control, including, but not limited to, labor disputes, strikes, lockouts, shortages of or inability to obtain labor, energy, raw materials or supplies, war, acts of terror, riot, acts of God or governmental action.", + "json": "splunk-sla.json", + "yaml": "splunk-sla.yml", + "html": "splunk-sla.html", + "license": "splunk-sla.LICENSE" + }, + { + "license_key": "square-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-square-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Square Inc. Individual Contributor License Agreement\n\nAn Individual Contributor License Agreement (an \"Agreement\") is required to establish and define the intellectual property license granted in connection with Contributions (defined below) from any person or entity to Square, Inc. (\u201cSquare\u201d) for inclusion in any of the products owned or managed by Square (the \u201cWork\u201d). This Agreement is for your protection as well as Square\u2019s. This Agreement does not alter your rights to use your own Contributions for other purposes. By executing this Agreement, you accept and agree to the following terms and conditions for any past, current, or future Contributions submitted to Square. Except for the license granted herein to Square and recipients of software distributed by Square, you reserve all right, title, and interest in and to the Contributions you create.\n\n1. Definitions.\n\n\u201cControl:\u201d shall mean (i) the power, direct or indirect, to cause the direction or management of an entity, whether by contract or otherwise; or (ii) ownership of fifty percent (50%) or more of the outstanding shares; or (iii) beneficial ownership of an entity.\n\n\"Contribution:\" shall mean any original work of authorship, including any modifications or additions to an existing work, that is intentionally Transmitted by You to Square for inclusion in the Work. \n\n\"Transmitted:\" shall mean any form of electronic, verbal, or written communication sent to Square or its representatives for the purpose of discussing and improving the Work, but excluding communications that are conspicuously marked or otherwise designated in writing by You as \"Not a Contribution.\"\n\n\"You:\" (or \"Your\") shall mean the copyright owner or legal entity authorized by the copyright owner that is making this Agreement with Square. For legal entities, the entity making a Contribution and all other entities that control, are controlled by, or are under common control with that entity are considered to be a single contributor.\n\n2. Grant of Copyright License.\n\nSubject to the terms and conditions of this Agreement, You hereby grant to Square and to recipients of software distributed by Square 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 Your Contributions and such derivative works.\n\n3. Grant of Patent License.\n\nSubject to the terms and conditions of this Agreement, You hereby grant to Square and to recipients of software distributed by Square 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 You that are necessarily infringed by Your Contributions alone or by combination of Your Contributions with the Work to which such Contributions was Transmitted. If any entity institutes patent litigation against You or any other entity (including a cross-claim or counterclaim in a lawsuit) alleging that your Contribution, or the Work to which you have contributed, constitutes direct or contributory patent infringement, then any patent licenses granted to that entity under this Agreement for that Contribution or Work shall terminate as of the date such litigation is filed.\n\n4. Representations and Warranties.\n\nYou represent and warrant that:\n * you are legally entitled to grant the above licenses;\n * if your employer has rights to intellectual property that you create that includes your Contribution, that you have received permission to make Contributions on behalf of an employer and that your employer has waived such rights for your Contributions to Square, or that your employer has executed a separate Agreement with Square;\n * that each of Your Contributions is Your original creation; and\n * that Your Contributions include complete details of any third-party license or other restriction (including, but not limited to, related patents and trademarks) of which you are personally aware and which are associated with any part of Your Contributions.\n\n 5. Submitting the Work of Others.\n\nShould You wish to submit work that is not Your original creation, You may submit it to Square separately from any Contribution, identifying the complete details of its source and of any license or other restriction (including, but not limited to, related patents, trademarks, and license agreements) of which you are personally aware, and conspicuously marking the work as \"Transmitted on behalf of a third-party: [Insert name of third-party here].\"\n\n6. Ongoing Support and Maintenance of Contributions.\n\nYou are not expected to provide support for Your Contributions, except to the extent You desire to provide support. You may provide support for free, for a fee, or not at all. \n\nYOU PROVIDE YOUR 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. UNLESS OTHERWISE REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING.\n\n8. Continuing Disclosures.\n\nYou agree to notify Square of any facts or circumstances of which you become aware that would make these representations inaccurate in any respect.\n\nSign Electronically\n\nBy completing the form below and clicking the Submit button you agree to and accept all the terms of this Agreement.", + "json": "square-cla.json", + "yaml": "square-cla.yml", + "html": "square-cla.html", + "license": "square-cla.LICENSE" + }, + { + "license_key": "squeak", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-squeak", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Apple Computer, Inc. Software License\n\nPLEASE READ THIS SOFTWARE LICENSE AGREEMENT \"LICENSE\" CAREFULLY BEFORE DOWNLOADING THIS SOFTWARE. BY DOWNLOADING THIS SOFTWARE YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS LICENSE. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE, DO NOT DOWNLOAD.\n\n1. License. The software, documentation and any fonts which you will receive by downloading this software (the \"Apple Software\") are licensed, not sold, to you by Apple Computer, Inc. or its local subsidiary, if any. Apple and/or Apple's licensor(s) retain title to the Apple Software, and the Apple Software and any copies which this License authorizes you to make are subject to this License. This License grants no right or license under any trademarks, service marks, or tradenames of Apple.\n\n2. Permitted Uses and Restrictions. This License allows you to copy, install and use the Apple Software on an unlimited number of computers under your direct control. You may modify and create derivative works of the Apple Software (\"Modified Software\"), however, you may not modify or create derivative works of the fonts provided by Apple (\"Fonts\"). You may distribute and sublicense such Modified Software only under the terms of a valid, binding license that makes no representations or warranties on behalf of Apple, and is no less protective of Apple and Apple's rights than this License. You may distribute and sublicense the Fonts only as a part of and for use with Modified Software, and not as a part of or for use with Modified Software that is distributed or sublicensed for a fee or for other valuable consideration. If the Modified Software contains modifications, overwrites, replacements, deletions, additions, or ports to new platforms of: (1) the methods of existing class objects or their existing relationships, or (2) any part of the virtual machine, then for so long as the Modified Software is distributed or sublicensed to others, such modified, overwritten, replaced, deleted, added and ported portions of the Modified Software must be made publicly available, preferably by means of download from a website, at no charge under the terms set forth in Exhibit A below. You may transfer your rights under this License provided you transfer this License and a copy of the Apple Software to a party who agrees to accept the terms of this License and destroy any other copies of the Apple Software in your possession. Your rights under this License will terminate automatically without notice from Apple if you fail to comply with any term(s) of this License.\n\n3. Disclaimer Of Warranty. The Apple Software is pre-release, and untested, or not fully tested. The Apple Software may contain errors that could cause failures or loss of data, and may be incomplete or contain inaccuracies. You expressly acknowledge and agree that use of the Apple Software is at your sole risk. You acknowledge that Apple has not publicly announced, nor promised or guaranteed to you, that Apple will release a final, commercial or any future pre-release version of the Apple Software to you or anyone in the future, and that Apple has no express or implied obligation to announce or introduce a final, commercial or any future pre-release version of the Apple Software or any similar or compatible product, or to continue to offer or support the Apple Software in the future. The Apple Software is provided \"AS-IS\" and without warranty of any kind and Apple and Apple's licensor(s) (for the purposes of Sections 3 and 4, Apple and Apple's licensor(s) shall be collectively referred to as \"Apple\") EXPRESSLY DISCLAIM ALL WARRANTIES AND/OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY OR SATISFACTORY QUALITY AND FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. APPLE DOES NOT WARRANT THAT THE FUNCTIONS CONTAINED IN THE APPLE SOFTWARE WILL MEET YOUR REQUIREMENTS, OR THAT THE OPERATION OF THE APPLE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT DEFECTS IN THE APPLE SOFTWARE WILL BE CORRECTED. FURTHERMORE, APPLE DOES NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE OR THE RESULTS OF THE USE OF THE APPLE SOFTWARE OR RELATED DOCUMENTATION IN TERMS OF THEIR CORRECTNESS, ACCURACY, RELIABILITY, OR OTHERWISE. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE OR AN APPLE AUTHORIZED REPRESENTATIVE SHALL CREATE A WARRANTY OR IN ANY WAY INCREASE THE SCOPE OF THIS WARRANTY. SHOULD THE APPLE SOFTWARE PROVE DEFECTIVE, YOU (AND NOT APPLE OR AN APPLE AUTHORIZED REPRESENTATIVE) ASSUME THE ENTIRE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO THE ABOVE EXCLUSION MAY NOT APPLY TO YOU. THE TERMS OF THIS DISCLAIMER DO NOT AFFECT OR PREJUDICE THE STATUTORY RIGHTS OF A CONSUMER ACQUIRING APPLE PRODUCTS OTHERWISE THAN IN THE COURSE OF A BUSINESS, NEITHER DO THEY LIMIT OR EXCLUDE ANY LIABILITY FOR DEATH OR PERSONAL INJURY CAUSED BY APPLE'S NEGLIGENCE.\n\n4. Limitation of Liability. UNDER NO CIRCUMSTANCES, INCLUDING NEGLIGENCE, SHALL APPLE BE LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO THIS LICENSE. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES SO THIS LIMITATION MAY NOT APPLY TO YOU. In no event shall Apple's total liability to you for all damages exceed the amount of fifty dollars ($50.00).\n\n5. Indemnification. You agree to indemnify and hold Apple harmless from any and all damages, liabilities, costs and expenses (including but not limited to attorneys' fees and costs of suit) incurred by Apple as a result of any claim, proceeding, and/or judgment to the extent it arises out of or is connected in any manner with the operation, use, distribution or modification of Modified Software, or the combination of Apple Software or Modified Software with other programs; provided that Apple notifies Licensee of any such claim or proceeding in writing, tenders to Licensee the opportunity to defend or settle such claim or proceeding at Licensee's expense, and cooperates with Licensee in defending or settling such claim or proceeding.\n\n6. Export Law Assurances. You may not use or otherwise export or reexport the Apple Software except as authorized by United States law and the laws of the jurisdiction in which the Apple Software was obtained. In particular, but without limitation, the Apple Software may not be exported or reexported (i) into (or to a national or resident of) any U.S. embargoed country or (ii) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Department of Commerce's Table of Denial Orders. By using the Apple Software, you represent and warrant that you are not located in, under control of, or a national or resident of any such country or on any such list.\n\n7. Government End Users. If the Apple Software is supplied to the United States Government, the Apple Software is classified as \"restricted computer software\" as defined in clause 52.227-19 of the FAR. The United States Government's rights to the Apple Software are as provided in clause 52.227-19 of the FAR.\n\n8. Controlling Law and Severability. If there is a local subsidiary of Apple in the country in which the Apple Software License was obtained, then the local law in which the subsidiary sits shall govern this License. Otherwise, this License shall be governed by the laws of the United States and the State of California. If for any reason a court of competent jurisdiction finds any provision, or portion thereof, to be unenforceable, the remainder of this License shall continue in full force and effect.\n\n9. Complete Agreement. This License constitutes the entire agreement between the parties with respect to the use of the Apple Software and supersedes all prior or contemporaneous understandings regarding such subject matter. No amendment to or modification of this License will be binding unless in writing and signed by Apple.\n\nWhere the Licensee is located in the province of Quebec, Canada, the following clause applies: The parties hereto confirm that they have requested that this Agreement and all related documents be drafted in English. Les parties ont exige que le present contrat et tous les documents connexes soient rediges en anglais.\n\nEXHIBIT A\n\nLicense. You may copy, install, use, modify and create derivative works of the (Modified Software) \"Changed Software\" (but you may not modify or create derivative works of the (Fonts)) and distribute and sublicense such Changed Software, provided however, that if the Changed Software contains modifications, overwrites, replacements, deletions, additions, or ports to new platforms of: (1) the methods of existing classes objects or their existing relationships, or (2) any part of the virtual machine, then for so long as the Changed Software is distributed or sublicensed to others, such modified, overwritten, replaced, deleted, added and ported portions of the Changed Software must be made publicly available, preferably by means of download from a website, at no charge under the terms of a license that makes no representations or warranties on behalf of any third party, is no less protective of (the licensors of the Modified Software) and its licensors, and contains the terms set forth in Exhibit A below (which should contain the terms of this Exhibit A). You may distribute and sublicense the (Fonts) only as a part of and for use with Changed Software, and not as a part of or for use with Changed Software that is distributed or sublicensed for a fee or for other valuable consideration.", + "json": "squeak.json", + "yaml": "squeak.yml", + "html": "squeak.html", + "license": "squeak.LICENSE" + }, + { + "license_key": "srgb", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-srgb", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "To anyone who acknowledges that the file \"sRGB Color Space Profile.icm\" \nis provided \"AS IS\" WITH NO EXPRESS OR IMPLIED WARRANTY:\npermission to use, copy and distribute this file for any purpose is hereby \ngranted without fee, provided that the file is not changed including the HP \ncopyright notice tag, and that the name of Hewlett-Packard Company not be \nused in advertising or publicity pertaining to distribution of the software \nwithout specific, written prior permission. Hewlett-Packard Company makes \nno representations about the suitability of this software for any purpose.", + "json": "srgb.json", + "yaml": "srgb.yml", + "html": "srgb.html", + "license": "srgb.LICENSE" + }, + { + "license_key": "ssleay", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ssleay", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This package is an SSL implementation written by Eric Young (eay@cryptsoft.com).\nThe implementation was written so as to conform with Netscapes SSL.\n\nThis library is free for commercial and non-commercial use as long as\nthe following conditions are aheared to. The following conditions\napply to all code found in this distribution, be it the RC4, RSA,\nlhash, DES, etc., code; not just the SSL code. The SSL documentation\nincluded with this distribution is covered by the same copyright terms\nexcept that the holder is Tim Hudson (tjh@cryptsoft.com).\n\nCopyright remains Eric Young's, and as such any Copyright notices in\nthe code are not to be removed.\nIf this package is used in a product, Eric Young should be given attribution\nas the author of the parts of the library used.\nThis can be in the form of a textual message at program startup or\nin documentation (online or textual) provided with the package.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the copyright\n notice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n \"This product includes cryptographic software written by\n Eric Young (eay@cryptsoft.com)\"\n The word 'cryptographic' can be left out if the rouines from the library\n being used are not cryptographic related :-).\n\nTHIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n\nThe licence and distribution terms for any publically available version or\nderivative of this code cannot be changed. i.e. this code cannot simply be\ncopied and put under another distribution licence\n[including the GNU Public Licence.]", + "json": "ssleay.json", + "yaml": "ssleay.yml", + "html": "ssleay.html", + "license": "ssleay.LICENSE" + }, + { + "license_key": "ssleay-windows", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ssleay-windows", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This package is an SSL implementation written by Eric Young (eay@cryptsoft.com).\nThe implementation was written so as to conform with Netscapes SSL.\n\nThis library is free for commercial and non-commercial use as long as\nthe following conditions are aheared to. The following conditions\napply to all code found in this distribution, be it the RC4, RSA,\nlhash, DES, etc., code; not just the SSL code. The SSL documentation\nincluded with this distribution is covered by the same copyright terms\nexcept that the holder is Tim Hudson (tjh@cryptsoft.com).\n\nCopyright remains Eric Young's, and as such any Copyright notices in\nthe code are not to be removed.\nIf this package is used in a product, Eric Young should be given attribution\nas the author of the parts of the library used.\nThis can be in the form of a textual message at program startup or\nin documentation (online or textual) provided with the package.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the copyright\n notice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n \"This product includes cryptographic software written by\n Eric Young (eay@cryptsoft.com)\"\n The word 'cryptographic' can be left out if the rouines from the library\n being used are not cryptographic related :-).\n4. If you include any Windows specific code (or a derivative thereof) from\n the apps directory (application code) you must include an acknowledgement:\n \"This product includes software written by Tim Hudson (tjh@cryptsoft.com)\"\n\nTHIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n\nThe licence and distribution terms for any publically available version or\nderivative of this code cannot be changed. i.e. this code cannot simply be\ncopied and put under another distribution licence\n[including the GNU Public Licence.]", + "json": "ssleay-windows.json", + "yaml": "ssleay-windows.yml", + "html": "ssleay-windows.html", + "license": "ssleay-windows.LICENSE" + }, + { + "license_key": "st-bsd-restricted", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-st-bsd-restricted", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without \nmodification, are permitted, provided that the following conditions are met:\n\n1. Redistribution of source code must retain the above copyright notice, \n this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n3. Neither the name of STMicroelectronics nor the names of other \n contributors to this software may be used to endorse or promote products \n derived from this software without specific written permission.\n4. This software, including modifications and/or derivative works of this \n software, must execute solely and exclusively on microcontroller or\n microprocessor devices manufactured by or for STMicroelectronics.\n5. Redistribution and use of this software other than as permitted under \n this license is void and will automatically terminate your rights under \n this license. \n\nTHIS SOFTWARE IS PROVIDED BY STMICROELECTRONICS AND CONTRIBUTORS \"AS IS\" \nAND ANY EXPRESS, IMPLIED OR STATUTORY WARRANTIES, INCLUDING, BUT NOT \nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A \nPARTICULAR PURPOSE AND NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY\nRIGHTS ARE DISCLAIMED TO THE FULLEST EXTENT PERMITTED BY LAW. IN NO EVENT \nSHALL STMICROELECTRONICS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, \nOR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF \nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING \nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "st-bsd-restricted.json", + "yaml": "st-bsd-restricted.yml", + "html": "st-bsd-restricted.html", + "license": "st-bsd-restricted.LICENSE" + }, + { + "license_key": "st-mcd-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-st-mcd-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SLA0044 Rev5/February 2018\n\nBY INSTALLING COPYING, DOWNLOADING, ACCESSING OR OTHERWISE USING THIS SOFTWARE\nOR ANY PART THEREOF (AND THE RELATED DOCUMENTATION) FROM STMICROELECTRONICS\nINTERNATIONAL N.V, SWISS BRANCH AND/OR ITS AFFILIATED COMPANIES\n(STMICROELECTRONICS), THE RECIPIENT, ON BEHALF OF HIMSELF OR HERSELF, OR ON\nBEHALF OF ANY ENTITY BY WHICH SUCH RECIPIENT IS EMPLOYED AND/OR ENGAGED AGREES\nTO BE BOUND BY THIS SOFTWARE LICENSE AGREEMENT.\n\nUnder STMicroelectronics\u2019 intellectual property rights, the redistribution,\nreproduction and use in source and binary forms of the software or any part\nthereof, with or without modification, are permitted provided that the following\nconditions are met:\n\n1. Redistribution of source code (modified or not) must retain any copyright\nnotice, this list of conditions and the disclaimer set forth below as items 10\nand 11.\n\n2. Redistributions in binary form, except as embedded into microcontroller or\nmicroprocessor device manufactured by or for STMicroelectronics or a software\nupdate for such device, must reproduce any copyright notice provided with the\nbinary code, this list of conditions, and the disclaimer set forth below as\nitems 10 and 11, in documentation and/or other materials provided with the\ndistribution.\n\n3. Neither the name of STMicroelectronics nor the names of other contributors\nto this software may be used to endorse or promote products derived from this\nsoftware or part thereof without specific written permission.\n\n4. This software or any part thereof, including modifications and/or derivative\nworks of this software, must be used and execute solely and exclusively on or in\ncombination with a microcontroller or microprocessor device manufactured by or\nfor STMicroelectronics.\n\n5. No use, reproduction or redistribution of this software partially or totally\nmay be done in any manner that would subject this software to any Open Source\nTerms. \u201cOpen Source Terms\u201d shall mean any open source license which requires as\npart of distribution of software that the source code of such software is\ndistributed therewith or otherwise made available, or open source license that\nsubstantially complies with the Open Source definition specified at\nwww.opensource.org and any other comparable open source license such as for\nexample GNU General Public License (GPL), Eclipse Public License (EPL), Apache\nSoftware License, BSD license or MIT license.\n\n6. STMicroelectronics has no obligation to provide any maintenance, support or\nupdates for the software.\n\n7. The software is and will remain the exclusive property of STMicroelectronics\nand its licensors. The recipient will not take any action that jeopardizes\nSTMicroelectronics and its licensors' proprietary rights or acquire any rights\nin the software, except the limited rights specified hereunder.\n\n8. The recipient shall comply with all applicable laws and regulations\naffecting the use of the software or any part thereof including any applicable\nexport control law or regulation.\n\n9. Redistribution and use of this software or any part thereof other than as\npermitted under this license is void and will automatically terminate your\nrights under this license.\n\n10. THIS SOFTWARE IS PROVIDED BY STMICROELECTRONICS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS, IMPLIED OR STATUTORY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-\nINFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY RIGHTS, WHICH ARE DISCLAIMED\nTO THE FULLEST EXTENT PERMITTED BY LAW. IN NO EVENT SHALL STMICROELECTRONICS OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\nOR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\nIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY\nOF SUCH DAMAGE.\n\n11. EXCEPT AS EXPRESSLY PERMITTED HEREUNDER, NO LICENSE OR OTHER RIGHTS, WHETHER\nEXPRESS OR IMPLIED, ARE GRANTED UNDER ANY PATENT OR OTHER INTELLECTUAL PROPERTY\nRIGHTS OF STMICROELECTRONICS OR ANY THIRD PARTY.", + "json": "st-mcd-2.0.json", + "yaml": "st-mcd-2.0.yml", + "html": "st-mcd-2.0.html", + "license": "st-mcd-2.0.LICENSE" + }, + { + "license_key": "stable-diffusion-2022-08-22", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-stable-diffusion-2022-08-22", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright (c) 2022 Robin Rombach and Patrick Esser and contributors\n\nCreativeML Open RAIL-M\ndated August 22, 2022\n\nSection I: PREAMBLE\n\nMultimodal generative models are being widely adopted and used, and have the potential to transform the way artists, among other individuals, conceive and benefit from AI or ML technologies as a tool for content creation.\n\nNotwithstanding the current and potential benefits that these artifacts can bring to society at large, there are also concerns about potential misuses of them, either due to their technical limitations or ethical considerations.\n\nIn short, this license strives for both the open and responsible downstream use of the accompanying model. When it comes to the open character, we took inspiration from open source permissive licenses regarding the grant of IP rights. Referring to the downstream responsible use, we added use-based restrictions not permitting the use of the Model in very specific scenarios, in order for the licensor to be able to enforce the license in case potential misuses of the Model may occur. At the same time, we strive to promote open and responsible research on generative models for art and content generation.\n\nEven though downstream derivative versions of the model could be released under different licensing terms, the latter will always have to include - at minimum - the same use-based restrictions as the ones in the original license (this license). We believe in the intersection between open and responsible AI development; thus, this License aims to strike a balance between both in order to enable responsible open-science in the field of AI.\n\nThis License governs the use of the model (and its derivatives) and is informed by the model card associated with the model.\n\nNOW THEREFORE, You and Licensor agree as follows:\n\n1. Definitions\n\n- \"License\" means the terms and conditions for use, reproduction, and Distribution as defined in this document.\n- \"Data\" means a collection of information and/or content extracted from the dataset used with the Model, including to train, pretrain, or otherwise evaluate the Model. The Data is not licensed under this License.\n- \"Output\" means the results of operating a Model as embodied in informational content resulting therefrom.\n- \"Model\" means any accompanying machine-learning based assemblies (including checkpoints), consisting of learnt weights, parameters (including optimizer states), corresponding to the model architecture as embodied in the Complementary Material, that have been trained or tuned, in whole or in part on the Data, using the Complementary Material.\n- \"Derivatives of the Model\" means all modifications to the Model, works based on the Model, or any other model which is created or initialized by transfer of patterns of the weights, parameters, activations or output of the Model, to the other model, in order to cause the other model to perform similarly to the Model, including - but not limited to - distillation methods entailing the use of intermediate data representations or methods based on the generation of synthetic data by the Model for training the other model.\n- \"Complementary Material\" means the accompanying source code and scripts used to define, run, load, benchmark or evaluate the Model, and used to prepare data for training or evaluation, if any. This includes any accompanying documentation, tutorials, examples, etc, if any.\n- \"Distribution\" means any transmission, reproduction, publication or other sharing of the Model or Derivatives of the Model to a third party, including providing the Model as a hosted service made available by electronic or other remote means - e.g. API-based or web access.\n- \"Licensor\" means the copyright owner or entity authorized by the copyright owner that is granting the License, including the persons or entities that may have rights in the Model and/or distributing the Model.\n- \"You\" (or \"Your\") means an individual or Legal Entity exercising permissions granted by this License and/or making use of the Model for whichever purpose and in any field of use, including usage of the Model in an end-use application - e.g. chatbot, translator, image generator.\n- \"Third Parties\" means individuals or legal entities that are not under common control with Licensor or You.\n- \"Contribution\" means any work of authorship, including the original version of the Model and any modifications or additions to that Model or Derivatives of the Model thereof, that is intentionally submitted to Licensor for inclusion in the Model 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 Model, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n- \"Contributor\" means Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Model.\n\nSection II: INTELLECTUAL PROPERTY RIGHTS\n\nBoth copyright and patent grants apply to the Model, Derivatives of the Model and Complementary Material. The Model and Derivatives of the Model are subject to additional terms as described in Section III.\n\n2. 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, publicly display, publicly perform, sublicense, and distribute the Complementary Material, the Model, and Derivatives of the Model.\n3. Grant of Patent License. Subject to the terms and conditions of this License and where and as applicable, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this paragraph) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Model and the Complementary Material, 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 Model 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 Model and/or Complementary Material or a Contribution incorporated within the Model and/or Complementary Material constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for the Model and/or Work shall terminate as of the date such litigation is asserted or filed.\n\nSection III: CONDITIONS OF USAGE, DISTRIBUTION AND REDISTRIBUTION\n\n4. Distribution and Redistribution. You may host for Third Party remote access purposes (e.g. software-as-a-service), reproduce and distribute copies of the Model or Derivatives of the Model thereof in any medium, with or without modifications, provided that You meet the following conditions:\nUse-based restrictions as referenced in paragraph 5 MUST be included as an enforceable provision by You in any type of legal agreement (e.g. a license) governing the use and/or distribution of the Model or Derivatives of the Model, and You shall give notice to subsequent users You Distribute to, that the Model or Derivatives of the Model are subject to paragraph 5. This provision does not apply to the use of Complementary Material.\nYou must give any Third Party recipients of the Model or Derivatives of the Model a copy of this License;\nYou must cause any modified files to carry prominent notices stating that You changed the files;\nYou must retain all copyright, patent, trademark, and attribution notices excluding those notices that do not pertain to any part of the Model, Derivatives of the Model.\nYou may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions - respecting paragraph 4.a. - for use, reproduction, or Distribution of Your modifications, or for any such Derivatives of the Model as a whole, provided Your use, reproduction, and Distribution of the Model otherwise complies with the conditions stated in this License.\n5. Use-based restrictions. The restrictions set forth in Attachment A are considered Use-based restrictions. Therefore You cannot use the Model and the Derivatives of the Model for the specified restricted uses. You may use the Model subject to this License, including only for lawful purposes and in accordance with the License. Use may include creating any content with, finetuning, updating, running, training, evaluating and/or reparametrizing the Model. You shall require all of Your users who use the Model or a Derivative of the Model to comply with the terms of this paragraph (paragraph 5).\n6. The Output You Generate. Except as set forth herein, Licensor claims no rights in the Output You generate using the Model. You are accountable for the Output you generate and its subsequent uses. No use of the output can contravene any provision as stated in the License.\n\nSection IV: OTHER PROVISIONS\n\n7. Updates and Runtime Restrictions. To the maximum extent permitted by law, Licensor reserves the right to restrict (remotely or otherwise) usage of the Model in violation of this License, update the Model through electronic means, or modify the Output of the Model based on updates. You shall undertake reasonable efforts to use the latest version of the Model.\n8. Trademarks and related. Nothing in this License permits You to make use of Licensors\u2019 trademarks, trade names, logos or to otherwise suggest endorsement or misrepresent the relationship between the parties; and any rights not expressly granted herein are reserved by the Licensors.\n9. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Model and the Complementary Material (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 Model, Derivatives of the Model, and the Complementary Material and assume any risks associated with Your exercise of permissions under this License.\n10. 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 Model and the Complementary Material (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.\n11. Accepting Warranty or Additional Liability. While redistributing the Model, Derivatives of the Model and the Complementary Material 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.\n12. If any provision of this License is held to be invalid, illegal or unenforceable, the remaining provisions shall be unaffected thereby and remain valid as if such provision had not been set forth herein.\n\nEND OF TERMS AND CONDITIONS\n\nAttachment A\n\nUse Restrictions\n\nYou agree not to use the Model or Derivatives of the Model:\n- In any way that violates any applicable national, federal, state, local or international law or regulation;\n- For the purpose of exploiting, harming or attempting to exploit or harm minors in any way;\n- To generate or disseminate verifiably false information and/or content with the purpose of harming others;\n- To generate or disseminate personal identifiable information that can be used to harm an individual;\n- To defame, disparage or otherwise harass others;\n- For fully automated decision making that adversely impacts an individual\u2019s legal rights or otherwise creates or modifies a binding, enforceable obligation;\n- For any use intended to or which has the effect of discriminating against or harming individuals or groups based on online or offline social behavior or known or predicted personal or personality characteristics;\n- To exploit any of the vulnerabilities of a specific group of persons based on their age, social, physical or mental characteristics, in order to materially distort the behavior of a person pertaining to that group in a manner that causes or is likely to cause that person or another person physical or psychological harm;\n- For any use intended to or which has the effect of discriminating against individuals or groups based on legally protected characteristics or categories;\n- To provide medical advice and medical results interpretation;\n- To generate or disseminate information for the purpose to be used for administration of justice, law enforcement, immigration or asylum processes, such as predicting an individual will commit fraud/crime commitment (e.g. by text profiling, drawing causal relationships between assertions made in documents, indiscriminate and arbitrarily-targeted use).", + "json": "stable-diffusion-2022-08-22.json", + "yaml": "stable-diffusion-2022-08-22.yml", + "html": "stable-diffusion-2022-08-22.html", + "license": "stable-diffusion-2022-08-22.LICENSE" + }, + { + "license_key": "standard-ml-nj", + "category": "Permissive", + "spdx_license_key": "SMLNJ", + "other_spdx_license_keys": [ + "StandardML-NJ" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose and without fee is hereby granted,\nprovided that the above copyright notice appear in all copies and that\nboth the copyright notice and this permission notice and warranty\ndisclaimer appear in supporting documentation, and that the names of the\nauthors or their employers not be used in advertising or publicity\npertaining to distribution of the software without specific, written\nprior permission.\n\nThe authors and their employers disclaim all warranties with regard to\nthis software, including all implied warranties of merchantability and\nfitness. In no event shall the authors or their employers be liable for\nany special, indirect or consequential damages or any damages whatsoever\nresulting from loss of use, data or profits, whether in an action of\ncontract, negligence or other tortious action, arising out of or in\nconnection with the use or performance of this software.", + "json": "standard-ml-nj.json", + "yaml": "standard-ml-nj.yml", + "html": "standard-ml-nj.html", + "license": "standard-ml-nj.LICENSE" + }, + { + "license_key": "stanford-mrouted", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-stanford-mrouted", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The mrouted program is covered by the following license. Use of the\nmrouted program represents acceptance of these terms and conditions.\n\n1. STANFORD grants to LICENSEE a nonexclusive and nontransferable license\nto use, copy and modify the computer software ``mrouted'' (hereinafter\ncalled the ``Program''), upon the terms and conditions hereinafter set\nout and until Licensee discontinues use of the Licensed Program.\n\n2. LICENSEE acknowledges that the Program is a research tool still in\nthe development state, that it is being supplied ``as is,'' without any\naccompanying services from STANFORD, and that this license is entered\ninto in order to encourage scientific collaboration aimed at further\ndevelopment and application of the Program.\n\n3. LICENSEE may copy the Program and may sublicense others to use object\ncode copies of the Program or any derivative version of the Program.\nAll copies must contain all copyright and other proprietary notices found\nin the Program as provided by STANFORD. Title to copyright to the\nProgram remains with STANFORD.\n\n4. LICENSEE may create derivative versions of the Program. LICENSEE\nhereby grants STANFORD a royalty-free license to use, copy, modify,\ndistribute and sublicense any such derivative works. At the time\nLICENSEE provides a copy of a derivative version of the Program to a\nthird party, LICENSEE shall provide STANFORD with one copy of the source\ncode of the derivative version at no charge to STANFORD.\n\n5. STANFORD MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED.\nBy way of example, but not limitation, STANFORD MAKES NO REPRESENTATION\nOR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR\nTHAT THE USE OF THE LICENSED PROGRAM WILL NOT INFRINGE ANY PATENTS,\nCOPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. STANFORD shall not be held liable\nfor any liability nor for any direct, indirect or consequential damages\nwith respect to any claim by LICENSEE or any third party on account of or\narising from this Agreement or use of the Program.\n\n6. This agreement shall be construed, interpreted and applied in\naccordance with the State of California and any legal action arising\nout of this Agreement or use of the Program shall be filed in a court\nin the State of California.\n\n7. Nothing in this Agreement shall be construed as conferring rights to\nuse in advertising, publicity or otherwise any trademark or the name\nof ``Stanford''.\n\nThe mrouted program is COPYRIGHT 1989 by The Board of Trustees of\nLeland Stanford Junior University.", + "json": "stanford-mrouted.json", + "yaml": "stanford-mrouted.yml", + "html": "stanford-mrouted.html", + "license": "stanford-mrouted.LICENSE" + }, + { + "license_key": "stanford-pvrg", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-stanford-pvrg", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PUBLIC DOMAIN LICENSE: Stanford University Portable Video Research Group.\nIf you use this software, you agree to the following:\n\nThis program package is purely experimental, and is licensed \"as is\". Permission\nis granted to use, modify, and distribute this program without charge for any\npurpose, provided this license/disclaimer notice appears in the copies. No\nwarranty or maintenance is given, either expressed or implied. In no event shall\nthe author(s) be liable to you or a third party for any special, incidental,\nconsequential, or other damages, arising out of the use or inability to use the\nprogram for any purpose (or the loss of data), even if we have been advised of\nsuch possibilities. Any public reference or advertisement of this source code\nshould refer to it as the Portable Video Research Group (PVRG).", + "json": "stanford-pvrg.json", + "yaml": "stanford-pvrg.yml", + "html": "stanford-pvrg.html", + "license": "stanford-pvrg.LICENSE" + }, + { + "license_key": "statewizard", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-statewizard", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use of the StateWizard Engine in source and binary forms,\nwith or without modification, are permitted provided that the following\nconditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list\nof conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\nRedistributions of source code modifications must send back to the Intelliwizard\nProject and republish them.\n\nAll advertising materials mentioning features or use of this software must\ndisplay the following acknowledgment: \"This product includes software developed\nby the IntelliWizard Project for use in the StateWizard Engine.\n(http://www.intelliwizard.com/)\" The names \"StateWizard Engine\" and\n\"IntelliWizard Project\" must not be used to endorse or promote products derived\nfrom this software without prior written permission. For written permission,\nplease contact info@intelliwizard.com. Products derived from this software may\nnot be called \"StateWizard\" nor may \"StateWizard\" appear in their names without\nprior written permission of the StateWizard Project.\n\nRedistributions of any form whatsoever must retain the following acknowledgment:\n\"This product includes software developed by the Intelliwizard Project for use\nin the StateWizard Engine (http://www.intelliwizard.com/)\"\n\nTHIS SOFTWARE IS PROVIDED BY THE IntelliWizard PROJECT ``AS IS'' AND ANY\nEXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE IntelliWizard PROJECT OR ITS CONTRIBUTORS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\nGOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF\nTHE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "statewizard.json", + "yaml": "statewizard.yml", + "html": "statewizard.html", + "license": "statewizard.LICENSE" + }, + { + "license_key": "stax", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-stax", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Streaming API for XML (JSR-173) Specification Reference Implementation License Agreement\n\nREAD THE TERMS OF THIS (THE \"AGREEMENT\") CAREFULLY BEFORE VIEWING OR USING THE SOFTWARE LICENSED HEREUNDER. BY VIEWING OR USING THE SOFTWARE, YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE \"ACCEPT\" BUTTON AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO ORIGINAL CONTRIBUTOR, DEFINED HEREIN.\n\n1.0 DEFINITIONS.\n \n1.1. \"BEA\" means BEA Systems, Inc., the licensor of the Original Code.\n\n1.2. \"Contributor\" means BEA and each entity that creates or contributes to the creation of Modifications.\n\n1.3. \"Covered Code\" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof and corresponding documentation released with the source code.\n\n1.4. \"Executable\" means Covered Code in any form other than Source Code.\n\n1.5. \"FCS\" means first commercial shipment of a product.\n\n1.6. \"Modifications\" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is:\n\n(a) Any addition to or deletion from the contents of a file containing Original Code or previous Modifications.\n\n(b) Any new file that contains any part of the Original Code or previous Modifications.\n\n1.7. \"Original Code\" means Source Code of computer software code Reference Implementation.\n\n1.8. \"Patent Claims\" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent for which the grantor has the right to grant a license.\n\n1.9. \"Reference Implementation\" means the prototype or \"proof of concept\" implementa\u00adtion of the Specification developed and made available for license by or on behalf of BEA.\n\n1.10. \"Source Code\" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated documentation, interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. \n\n1.11. \"Specification\" means the written specification for the Streaming API for XML , Java technology developed pursuant to the Java Community Process.\n1.12. \"Technology Compatibility Kit\" or \"TCK\" means the documentation, testing tools and test suites associated with the Specification as may be revised by BEA from time to time, that is provided so that an implementer of the Specifi\u00adcation may determine if its implementation is compliant with the Specification.\n\n1.13. \"You\" (or \"Your\") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this Agreement or a future version of this Agreement issued under Section 6.1. For legal entities, \"You\" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, \"control\" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2.0 SOURCE CODE LICENSE. \n\n2.1. Copyright Grant. Subject to the terms of this Agreement, each Contributor hereby grants You a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Covered Code of such Contributor, if any, and such derivative works, in Source Code and Executable form.\n\n2.2. Patent Grant. Subject to the terms of this Agreement, each Contributor hereby grants You a non-exclusive, worldwide, royalty-free patent license under the Patent Claims to make, use, sell, offer to sell, import and otherwise transfer the Covered Code prepared and provided by such Contributor, if any, in Source Code and Executable form. This patent license shall apply to the Covered Code if, at the time a Modification is added by the Contributor, such addition of the Modification causes such combination to be covered by the Patent Claims. The patent license shall not apply to any other combinations which include the Modification.\n\n2.3. Conditions to Grants. You understand that although each Contributor grants the licenses to the Covered Code prepared by it, no assurances are provided by any Contributor that the Covered Code does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to You for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, You hereby assume sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow You to distribute Covered Code, it is Your responsibility to acquire that license before distributing such code.\n\n2.4. Contributors\u2019 Representation. Each Contributor represents that to its knowledge it has sufficient copyright rights in the Covered Code it provides , if any, to grant the copyright license set forth in this Agreement.\n\n3.0 DISTRIBUION RESTRICTIONS.\n\n3.1. Application of Agreement.\n\nThe Modifications which You create or to which You contribute are governed by the terms of this Agreement, including without limitation Section 2.0. The Source Code version of Covered Code may be distributed only under the terms of this Agreement or a future version of this Agreement released under Section 6.1, and You must include a copy of this Agreement with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this Agreement or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.3.\n\n3.2. Description of Modifications.\n\nYou must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by BEA and including the name of BEA in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code.\n\n3.3. Required Notices.\n\nYou must duplicate the following notice in each file of the Source Code:\n\n\"(c) 2002, 2003 BEA Systems, Inc. All rights Reserved. The contents of this file are subject to the BEA Streaming API for XML Specification Reference Implementation License Agreement (the \"Agreement\"); you may not use this file except in compliance with the Agreement. A copy of the Agreement is available at http://www.bea.com/\"\n\nIf You created one or more Modification(s) You may add your name as a Contributor to the copyright portion of the notice above. You must also duplicate this Agreement in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of BEA or any other Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify BEA and every other Contributor for any liability incurred by BEA or such other Contributor as a result of warranty, support, indemnity or liability terms You offer.\n\n3.4. Distribution of Executable Versions.\n\nYou may choose to distribute Covered Code in Executable form under its own license agreement, provided that:\n\n \t(a) You comply with the terms and conditions of this Agreement; and\n\n(b) Your license agreement: (i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; (ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; (iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and (iv) states that Source Code for the Covered Code is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.\n\n(c) You do not use any marks, brands or logos associated with the JCP Specification, or otherwise promote or market any Covered Code, as being compatible, compliant, conformant or otherwise consistent with the Specification unless such product passes, in accordance with the documentation (including the TCK Users Guide, if any), the most current TCK applicable to the latest version of the Specification and available from BEA one hundred twenty (120) days before FCS of such version of the product; provided, however, that if You elect to use a version of the TCK also provided by BEA that is newer than that which is required under this Section 2.1(b)(v), then You agree to pass such TCK.\n\n3.5. Distribution of Source Code Versions.\n\nWhen You make Covered Code available in Source Code form:\n\n \t(a) it must be made available under this Agreement; and\n \n \t(b) a copy of this Agreement must be included with each copy of the Covered Code. \n\nYou may not remove or alter any copyright notices contained within the Covered Code. Each Contributor must identify itself as the originator of its contribution to the Covered Code, if any, in a manner that reasonably allows subsequent licensees to identify the originator of each portion of the Covered Code.\n\n\n\n4.0 DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS'' BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT BEA OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n5.0 TERMINATION.\n\n5.1. This Agreement and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this Agreement. Provisions which, by their nature, must remain in effect beyond the termination of this Agreement shall survive.\n\n5.2. If You initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against BEA or a Contributor (BEA or Contributor against whom You file such action is referred to as \"Participant\") alleging that:\n\n(a) such Participant's Covered Code directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.0of this Agreement shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Covered Code against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Section 2.0 automatically terminate at the expiration of the 60 day notice period specified above.\n\n(b) any software, hardware, or device, other than such Participant's Covered Code, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.0 are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant.\n\n5.3. If You assert a patent infringement claim against Participant alleging that such Participant's Covered Code directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.0 shall be taken into account in determining the amount or value of any payment or license.\n\n5.4. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination.\n\n6.0 LIMITATION OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOUBEA, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n7.0 U.S. GOVERNMENT END USERS. \n\nThe Covered Code is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n\n8.0 MISCELLANEOUS. \n\nThis Agreement represents the complete agreement concerning subject matter hereof. If any provision of this Agreement is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This Agreement shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this Agreement shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this Agreement.\n\n9.0 RESPONSIBILITY FOR CLAIMS.\n\nAs between BEA and the other Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this Agreement and You agree to work with BEA and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.", + "json": "stax.json", + "yaml": "stax.yml", + "html": "stax.html", + "license": "stax.LICENSE" + }, + { + "license_key": "stlport-2000", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-stlport-2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "STLport License Agreement\n\nBoris Fomitchev grants Licensee a non-exclusive, non-transferable, royalty- free\nlicense to use STLport and its documentation without fee.\n\nBy downloading, using, or copying STLport or any portion thereof, Licensee\nagrees to abide by the intellectual property laws and all other applicable laws\nof the United States of America, and to all of the terms and conditions of this\nAgreement.\n\nLicensee shall maintain the following copyright and permission notices on\nSTLport sources and its documentation unchanged :\n\nCopyright 1999,2000 Boris Fomitchev\n\nThis material is provided \"as is\", with absolutely no warranty expressed or\nimplied. Any use is at your own risk. Permission to use or copy this software\nfor any purpose is hereby granted without fee, provided the above notices are\nretained on all copies. Permission to modify the code and to distribute modified\ncode is granted, provided the above notices are retained, and a notice that the\ncode was modified is included with the above copyright notice.\n\nThe Licensee may distribute binaries compiled with STLport (whether original or modified) without any royalties or restrictions.\n\nThe Licensee may distribute original or modified STLport sources, provided that:\n\n\u2022 The conditions indicated in the above permission notice are met; \n\n\u2022 The following copyright notices are retained when present, and conditions\nprovided in accompanying permission notices are met :\n\nCopyright 1994 Hewlett-Packard Company \nCopyright 1996,97 Silicon Graphics Computer Systems, Inc. \nCopyright 1997 Moscow Center for SPARC Technology.\n\nPermission to use, copy, modify, distribute and sell this software and its\ndocumentation for any purpose is hereby granted without fee, provided that the\nabove copyright notice appear in all copies and that both that copyright notice\nand this permission notice appear in supporting documentation. Hewlett-Packard\nCompany makes no representations about the suitability of this software for any\npurpose. It is provided \"as is\" without express or implied warranty.\n\nPermission to use, copy, modify, distribute and sell this software and its\ndocumentation for any purpose is hereby granted without fee, provided that the\nabove copyright notice appear in all copies and that both that copyright notice\nand this permission notice appear in supporting documentation. Silicon Graphics\nmakes no representations about the suitability of this software for any purpose.\nIt is provided \"as is\" without express or implied warranty.\n\nPermission to use, copy, modify, distribute and sell this software and its\ndocumentation for any purpose is hereby granted without fee, provided that the\nabove copyright notice appear in all copies and that both that copyright notice\nand this permission notice appear in supporting documentation. Moscow Center for\nSPARC Technology makes no representations about the suitability of this software\nfor any purpose. It is provided \"as is\" without express or implied warranty.", + "json": "stlport-2000.json", + "yaml": "stlport-2000.yml", + "html": "stlport-2000.html", + "license": "stlport-2000.LICENSE" + }, + { + "license_key": "stlport-4.5", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-stlport-4.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This material is provided \"as is\", with absolutely no warranty expressed\nor implied. Any use is at your own risk.\n\nPermission to use or copy this software for any purpose is hereby\ngranted without fee, provided the above notices are retained on all\ncopies.\n\nPermission to modify the code and to distribute modified code is\ngranted, provided the above notices are retained, and a notice that\nthe code was modified is included with the above copyright notice.", + "json": "stlport-4.5.json", + "yaml": "stlport-4.5.yml", + "html": "stlport-4.5.html", + "license": "stlport-4.5.LICENSE" + }, + { + "license_key": "stmicroelectronics-centrallabs", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-stmicroelectronics-centrallabs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The STMicroelectronics corporate logo is a trademark of STMicroelectronics\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n- Redistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\n- Redistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\n- Neither the name nor trademarks of STMicroelectronics International N.V. nor\nany other STMicroelectronics company nor the names of its contributors may be\nused to endorse or promote products derived from this software without specific\nprior written permission.\n\n- All of the icons, pictures, logos and other images that are provided with the\nsource code in a directory whose title begins with st_images may only be used\nfor internal purposes and shall not be redistributed to any third party or\nmodified in any way.\n\n- Any redistributions in binary form shall not include the capability to display\nany of the icons, pictures, logos and other images that are provided with the\nsource code in a directory whose title begins with st_images.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "stmicroelectronics-centrallabs.json", + "yaml": "stmicroelectronics-centrallabs.yml", + "html": "stmicroelectronics-centrallabs.html", + "license": "stmicroelectronics-centrallabs.LICENSE" + }, + { + "license_key": "stmicroelectronics-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-stmicro-linux-firmware", + "other_spdx_license_keys": [ + "LicenseRef-scancode-stmicroelectronics-linux-firmware" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution. Redistribution and use in binary form, without modification, \nare permitted provided that the following conditions are met:\n\n* Redistributions must reproduce the above copyright notice and the following \ndisclaimer in the documentation and/or other materials provided with the \ndistribution.\n\n* Neither the name of ST Microelectronics NV. nor the names of its suppliers \nmay be used to endorse or promote products derived from this software without \nspecific prior written permission.\n\n* No reverse engineering, decompilation, or disassembly of this software is \npermitted.\n\nLimited patent license. ST Microelectronics NV. grants a world-wide, royalty-free,\n non-exclusive license under patents it now or hereafter owns or controls to make, \n have made, use, import, offer to sell and sell (\"Utilize\") this software, but \n solely to the extent that any such patent is necessary to Utilize the software in \nconjunction with an ST Microelectronics chipset. The patent license shall not \napply to any other combinations which include this software. No hardware per se \nis licensed hereunder.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ANDCONTRIBUTORS \n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE \nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; \nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON \nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT \n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS \nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "stmicroelectronics-linux-firmware.json", + "yaml": "stmicroelectronics-linux-firmware.yml", + "html": "stmicroelectronics-linux-firmware.html", + "license": "stmicroelectronics-linux-firmware.LICENSE" + }, + { + "license_key": "stream-benchmark", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-stream-benchmark", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License:\n 1. You are free to use this program and/or to redistribute\n this program.\n 2. You are free to modify this program for your own use,\n including commercial use, subject to the publication\n restrictions in item 3.\n 3. You are free to publish results obtained from running this\n program, or from works that you derive from this program,\n with the following limitations:\n 3a. In order to be referred to as \"STREAM benchmark results\",\n published results must be in conformance to the STREAM\n Run Rules, (briefly reviewed below) published at\n http://www.cs.virginia.edu/stream/ref.html\n and incorporated herein by reference.\n As the copyright holder, John McCalpin retains the\n right to determine conformity with the Run Rules.\n 3b. Results based on modified source code or on runs not in\n accordance with the STREAM Run Rules must be clearly\n labelled whenever they are published. Examples of\n proper labelling include:\n \"tuned STREAM benchmark results\"\n \"based on a variant of the STREAM benchmark code\"\n Other comparable, clear, and reasonable labelling is\n acceptable.\n 3c. Submission of results to the STREAM benchmark web site\n is encouraged, but not required.\n 4. Use of this program or creation of derived works based on this\n program constitutes acceptance of these licensing restrictions.\n 5. Absolutely no warranty is expressed or implied.", + "json": "stream-benchmark.json", + "yaml": "stream-benchmark.yml", + "html": "stream-benchmark.html", + "license": "stream-benchmark.LICENSE" + }, + { + "license_key": "strongswan-exception", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-strongswan-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Linking strongSwan statically or dynamically with other modules is making a\ncombined work based on strongSwan. Thus, the terms and conditions of the GNU\nGeneral Public License cover the whole combination.\n\nIn addition, as a special exception, the copyright holders of strongSwan give\nyou permission to combine strongSwan with free software programs or libraries\nthat are released under the GNU LGPL and with code included in the standard\nrelease of the OpenSSL project's OpenSSL library under the OpenSSL or SSLeay\nlicenses (or modified versions of such code, with unchanged license). You may\ncopy and distribute such a system following the terms of the GNU GPL for\nstrongSwan and the licenses of the other code concerned, provided that you\ninclude the source code of that other code when and as the GNU GPL requires\ndistribution of source code.\n\nNote that people who make modified versions of strongSwan are not obligated to\ngrant this special exception for their modified versions; it is their choice\nwhether to do so. The GNU General Public License gives permission to release a\nmodified version without this exception; this exception also makes it possible\nto release a modified version which carries forward this exception.", + "json": "strongswan-exception.json", + "yaml": "strongswan-exception.yml", + "html": "strongswan-exception.html", + "license": "strongswan-exception.LICENSE" + }, + { + "license_key": "stu-nicholls", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-stu-nicholls", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This copyright notice must be kept untouched in the stylesheet at all times.\n\nThe original version of this stylesheet and the associated (x)html is available at \nhttp://www.stunicholls.com/menu/pro_drop_2.html \n\nCopyright (c) 2005-2007 Stu Nicholls. All rights reserved. \n\nThis stylesheet and the associated (x)html may be modified in any way to fit your requirements.", + "json": "stu-nicholls.json", + "yaml": "stu-nicholls.yml", + "html": "stu-nicholls.html", + "license": "stu-nicholls.LICENSE" + }, + { + "license_key": "subcommander-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-subcommander-exception-2.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-subcommander-exception-2.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "text": "In addition, as a special exception, the copyright holder gives permission to\nlink the code of this program with the Qt library (or with modified versions of\nQt that use the same license as Qt), and distribute linked combinations \nincluding the two. You must obey the GNU General Public License in all respects \nfor all of the code used other than Qt. If you modify a file to which this \nlicense applies, you may extend this exception to your version of the file, but \nyou are not obligated to do so. If you do not wish to do so, delete this \nexception statement from your version.", + "json": "subcommander-exception-2.0-plus.json", + "yaml": "subcommander-exception-2.0-plus.yml", + "html": "subcommander-exception-2.0-plus.html", + "license": "subcommander-exception-2.0-plus.LICENSE" + }, + { + "license_key": "sugarcrm-1.1.3", + "category": "Copyleft", + "spdx_license_key": "SugarCRM-1.1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SUGARCRM PUBLIC LICENSE\n\nVersion 1.1.3\n\nThe SugarCRM Public License Version (\"SPL\") consists of the Mozilla Public License Version 1.1, modified to be specific to SugarCRM, with the Additional Terms in Exhibit B. The original Mozilla Public License 1.1 can be found at: http://www.mozilla.org/MPL/MPL-1.1.html\n\n\n1. Definitions.\n\n1.0.1. \"Commercial Use\" means distribution or otherwise making the Covered Code available to a third party.\n1.1. ''Contributor'' means each entity that creates or contributes to the creation of Modifications.\n\n1.2. ''Contributor Version'' means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor.\n\n1.3. ''Covered Code'' means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof.\n\n1.4. ''Electronic Distribution Mechanism'' means a mechanism generally accepted in the software development community for the electronic transfer of data.\n\n1.5. ''Executable'' means Covered Code in any form other than Source Code.\n\n1.6. ''Initial Developer'' means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A.\n\n1.7. ''Larger Work'' means a work which combines Covered Code or portions thereof with code not governed by the terms of this License.\n\n1.8. ''License'' means this document.\n\n1.8.1. \"Licensable\" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein.\n\n1.9. ''Modifications'' means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is:\n\nA. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications.\nB. Any new file that contains any part of the Original Code or previous Modifications. \n1.10. ''Original Code'' means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License.\n1.10.1. \"Patent Claims\" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor.\n\n1.11. ''Source Code'' means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge.\n\n1.12. \"You'' (or \"Your\") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, \"You'' includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, \"control'' means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2. Source Code License.\n2.1. The Initial Developer Grant. \nThe Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims:\n(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and\n(b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof).\n(c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License.\n(d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. \n\n2.2. Contributor Grant. \nSubject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license\n(a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and\n(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination).\n(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code.\n(d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor.\n\n\n3. Distribution Obligations.\n\n3.1. Application of License. \nThe Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5.\n3.2. Availability of Source Code. \nAny Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\n3.3. Description of Modifications. \nYou must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters\n\n(a) Third Party Claims. \nIf Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled \"LEGAL'' which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained.\n(b) Contributor APIs. \nIf Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. \n(c) Representations.\nContributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License.\n\n3.5. Required Notices. \nYou must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions. \nYou may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer.\n\n3.7. Larger Works. \nYou may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\nIf it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n\n5. Application of this License.\nThis License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n6.1. New Versions. \nSugarCRM Inc. (''SugarCRM'') may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number.\n6.2. Effect of New Versions. \nOnce Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by SugarCRM. No one other than SugarCRM has the right to modify the terms applicable to Covered Code created under this License.\n\n6.3. Derivative Works. \nIf You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases ''SugarCRM'', ''SPL'' or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the SugarCRM Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.)\n\n7. DISCLAIMER OF WARRANTY.\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS'' BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.\n8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as \"Participant\") alleging that:\n\n(a) such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above.\n\n(b) any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant.\n\n8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination.\n\n9. LIMITATION OF LIABILITY.\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS.\nThe Covered Code is a ''commercial item,'' as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of ''commercial computer software'' and ''commercial computer software documentation,'' as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n\n11. MISCELLANEOUS.\nThis License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n12. RESPONSIBILITY FOR CLAIMS.\nAs between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\n13. MULTIPLE-LICENSED CODE.\nInitial Developer may designate portions of the Covered Code as \"Multiple-Licensed\". \"Multiple-Licensed\" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the SPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A.\nSugarCRM Public License 1.1.3 - Exhibit A\n\nThe contents of this file are subject to the SugarCRM Public License Version 1.1.3\n(\"License\"); You may not use this file except in compliance with the \nLicense. You may obtain a copy of the License at http://www.sugarcrm.com/SPL\nSoftware distributed under the License is distributed on an \"AS IS\" basis,\nWITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for\nthe specific language governing rights and limitations under the License.\n\nThe Original Code is: SugarCRM Open Source\n\nThe Initial Developer of the Original Code is SugarCRM, Inc.\nPortions created by SugarCRM are Copyright (C) 2004 SugarCRM, Inc.;\nAll Rights Reserved.\nContributor(s): .\n[NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.]\n\nSugarCRM Public License 1.1.3 - Exhibit B\n\nAdditional Terms applicable to the SugarCRM Public License.\n\nI. Effect.\nThese additional terms described in this SugarCRM Public License \u2013 Additional Terms shall apply to the Covered Code under this License.\n\nII. SugarCRM and logo.\nThis License does not grant any rights to use the trademarks \"SugarCRM\" and the \"SugarCRM\" logos even if such marks are included in the Original Code or Modifications.\n\nHowever, in addition to the other notice obligations, all copies of the Covered Code in Executable and Source Code form distributed must, as a form of attribution of the original author, include on each user interface screen (i) the \"Powered by SugarCRM\" logo and (ii) the copyright notice in the same form as the latest version of the Covered Code distributed by SugarCRM, Inc. at the time of distribution of such copy. In addition, the \"Powered by SugarCRM\" logo must be visible to all users and be located at the very bottom center of each user interface screen. Notwithstanding the above, the dimensions of the \"Powered By SugarCRM\" logo must be at least 106 x 23 pixels. When users click on the \"Powered by SugarCRM\" logo it must direct them back to http://www.sugarforge.org. In addition, the copyright notice must remain visible to all users at all times at the bottom of the user interface screen. When users click on the copyright notice, it must direct them back to http://www.sugarcrm.com", + "json": "sugarcrm-1.1.3.json", + "yaml": "sugarcrm-1.1.3.yml", + "html": "sugarcrm-1.1.3.html", + "license": "sugarcrm-1.1.3.LICENSE" + }, + { + "license_key": "sun-bcl-11-06", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-06", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License Agreement for {ProductName}\nSun Microsystems, Inc. Binary Code License Agreement\n\nREAD THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\") CAREFULLY BEFORE OPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA PACKAGE, YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE \"ACCEPT\" BUTTON AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED ELECTRONICALLY, SELECT THE \"DECLINE\" BUTTON AT THE END OF THIS AGREEMENT.\n\n1. LICENSE TO USE. Sun grants you a non-exclusive and non-transferable license for the internal use only of the accompanying software and documentation and any error corrections provided by Sun (collectively \"Software\"), by the number of users and the class of computer hardware for which the corresponding fee has been paid.\n\n2. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Except as specifically authorized in any Supplemental License Terms, you may not make copies of Software, other than a single copy of Software for archival purposes. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. Licensee acknowledges that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement.\n\n3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software.\n\n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability\n\nto you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose.\n\n6. Termination. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Upon Termination, you must destroy all copies of Software.\n\n7. Export Regulations. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you.\n\n8. U.S. Government Restricted Rights. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n9. Governing Law. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply.\n\n10. Severability. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n11. Integration. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party.\n\n{ProductName} \nSUPPLEMENTAL LICENSE TERMS\n\nThese supplemental license terms (\"Supplemental Terms\") add to or modify the terms of the Binary Code License Agreement (collectively, the \"Agreement\"). Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Agreement, or in any license contained within the Software.\n\n1. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement, including, but not limited to Section 3 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license to reproduce internally and use internally the binary form of the Software, complete and unmodified, for the sole purpose of designing,\n\ndeveloping and testing your Java applets and applications (\"Programs\").\n\n2. License to Distribute Software. In addition to the license granted in Section 1 (Software Internal Use and Development License Grant) of these Supplemental Terms, subject to the terms and conditions of this Agreement, including but not limited to, Section 3 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license to reproduce and distribute the Software in binary code form only, provided that you (i) distribute the Software complete and unmodified and only bundled as part of your Programs, (ii) do not distribute additional software intended to replace any component(s) of the Software, (iii) do not remove or alter any proprietary legends or notices contained in the Software, (iv) only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (v) agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software.\n\n3. Java Technology Restrictions. You may not modify the Java Platform Interface (\"JPI\", identified as classes contained within the \"java\" package or any subpackages of the \"java\" package), by creating additional classes within the JPI or otherwise causing the addition to or modification of the classes in the JPI. In the event that you create an additional class and associated API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, you must promptly publish broadly an accurate specification for such API for free use by all developers. You may not create, or authorize your licensees to create additional classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"sun\" or similar convention as specified by Sun in any naming convention designation.\n\n4. Trademarks and Logos. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations (\"Sun Marks\"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit.\n\n5. Source Code. Software may contain source code that is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement.\n\n6. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right.\n\nFor inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. \n(Form ID#011801)", + "json": "sun-bcl-11-06.json", + "yaml": "sun-bcl-11-06.yml", + "html": "sun-bcl-11-06.html", + "license": "sun-bcl-11-06.LICENSE" + }, + { + "license_key": "sun-bcl-11-07", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-07", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun Microsystems, Inc.\nBinary Code License Agreement\n\nREAD THE TERMS OF THIS AGREEMENT AND ANY PROVIDED\nSUPPLEMENTAL LICENSE TERMS (COLLECTIVELY\n\"AGREEMENT\") CAREFULLY BEFORE OPENING THE SOFTWARE\nMEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA\nPACKAGE, YOU AGREE TO THE TERMS OF THIS\nAGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE\nELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE\nTERMS BY SELECTING THE \"ACCEPT\" BUTTON AT THE END\nOF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL\nTHESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE\nTO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE\nSOFTWARE IS ACCESSED ELECTRONICALLY, SELECT THE\n\"DECLINE\" BUTTON AT THE END OF THIS AGREEMENT.\n\n1. LICENSE TO USE. Sun grants you a\nnon-exclusive and non-transferable license for the\ninternal use only of the accompanying software and\ndocumentation and any error corrections provided\nby Sun (collectively \"Software\"), by the number of\nusers and the class of computer hardware for which\nthe corresponding fee has been paid.\n\n2. RESTRICTIONS. Software is confidential and\ncopyrighted. Title to Software and all associated\nintellectual property rights is retained by Sun\nand/or its licensors. Except as specifically\nauthorized in any Supplemental License Terms, you\nmay not make copies of Software, other than a\nsingle copy of Software for archival purposes.\nUnless enforcement is prohibited by applicable\nlaw, you may not modify, decompile, or reverse\nengineer Software. Licensee acknowledges that\nLicensed Software is not designed or intended for\nuse in the design, construction, operation or\nmaintenance of any nuclear facility. Sun\nMicrosystems, Inc. disclaims any express or\nimplied warranty of fitness for such uses. No\nright, title or interest in or to any trademark,\nservice mark, logo or trade name of Sun or its\nlicensors is granted under this Agreement.\n\n3. LIMITED WARRANTY. Sun warrants to you that for\na period of ninety (90) days from the date of\npurchase, as evidenced by a copy of the receipt,\nthe media on which Software is furnished (if any)\nwill be free of defects in materials and\nworkmanship under normal use. Except for the\nforegoing, Software is provided \"AS IS\". Your\nexclusive remedy and Sun's entire liability under\nthis limited warranty will be at Sun's option to\nreplace Software media or refund the fee paid for\nSoftware.\n\n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN\nTHIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS,\nREPRESENTATIONS AND WARRANTIES, INCLUDING ANY\nIMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE OR NON-INFRINGEMENT ARE\nDISCLAIMED, EXCEPT TO THE EXTENT THAT THESE\nDISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n5. LIMITATION OF LIABILITY. TO THE EXTENT NOT\nPROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS\nLICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT\nOR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL,\nINCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED\nREGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT\nOF OR RELATED TO THE USE OF OR INABILITY TO USE\nSOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES. In no event will\nSun's liability to you, whether in contract, tort\n(including negligence), or otherwise, exceed the\namount paid by you for Software under this\nAgreement. The foregoing limitations will apply\neven if the above stated warranty fails of its\nessential purpose.\n\n6. Termination. This Agreement is effective\nuntil terminated. You may terminate this\nAgreement at any time by destroying all copies of\nSoftware. This Agreement will terminate\nimmediately without notice from Sun if you fail to\ncomply with any provision of this Agreement. Upon\nTermination, you must destroy all copies of\nSoftware.\n\n7. Export Regulations. All Software and technical\ndata delivered under this Agreement are subject to\nUS export control laws and may be subject to\nexport or import regulations in other countries.\nYou agree to comply strictly with all such laws\nand regulations and acknowledge that you have the\nresponsibility to obtain such licenses to export,\nre-export, or import as may be required after\ndelivery to you.\n\n8. U.S. Government Restricted Rights. If Software\nis being acquired by or on behalf of the U.S.\nGovernment or by a U.S. Government prime\ncontractor or subcontractor (at any tier), then\nthe Government's rights in Software and\naccompanying documentation will be only as set\nforth in this Agreement; this is in accordance\nwith 48 CFR 227.7201 through 227.7202-4 (for\nDepartment of Defense (DOD) acquisitions) and with\n48 CFR 2.101 and 12.212 (for non-DOD\nacquisitions).\n\n9. Governing Law. Any action related to this\nAgreement will be governed by California law and\ncontrolling U.S. federal law. No choice of law\nrules of any jurisdiction will apply.\n\n10. Severability. If any provision of this\nAgreement is held to be unenforceable, this\nAgreement will remain in effect with the provision\nomitted, unless omission would frustrate the\nintent of the parties, in which case this\nAgreement will immediately terminate.\n\n11. Integration. This Agreement is the entire\nagreement between you and Sun relating to its\nsubject matter. It supersedes all prior or\ncontemporaneous oral or written communications,\nproposals, representations and warranties and\nprevails over any conflicting or additional terms\nof any quote, order, acknowledgment, or other\ncommunication between the parties relating to its\nsubject matter during the term of this Agreement.\nNo modification of this Agreement will be binding,\nunless in writing and signed by an authorized\nrepresentative of each party.\n\n{ProductName}\n\nSUPPLEMENTAL LICENSE TERMS\n\nThese supplemental license terms (\"Supplemental\nTerms\") add to or modify the terms of the Binary\nCode License Agreement (collectively, the\n\"Agreement\"). Capitalized terms not defined in\nthese Supplemental Terms shall have the same\nmeanings ascribed to them in the Binary Code\nLicense Agreement. These Supplemental Terms shall\nsupersede any inconsistent or conflicting terms in\nthe Binary Code License Agreement, or in any\nlicense contained within the Software.\n\n1. Software Internal Use and Development License\nGrant. Subject to the terms and conditions of this\nAgreement, including, but not limited to Section 4\n(Java Technology Restrictions) of these\nSupplemental Terms, Sun grants you a\nnon-exclusive, non-transferable, limited license\nwithout fees to reproduce internally and use\ninternally the binary form of the Software\ncomplete and unmodified for the sole purpose of\ndesigning, developing, testing, and running your\nJava applets and applications intended to run on\nJava-enabled general purpose desktop computers and\nservers (\"Programs\").\n\n2. License to Distribute Software. Subject to the\nterms and conditions of this Agreement, including,\nbut not limited to Section 4 (Java Technology\nRestrictions) of these Supplemental Terms, Sun\ngrants you a non-exclusive, non-transferable,\nlimited license without fees to reproduce and\ndistribute the Software, provided that: (i) you\ndistribute the Software complete and unmodified\nand only bundled as part of, and for the sole\npurpose of running, your Programs, (ii) the\nPrograms add significant and primary functionality\nto the Software, (iii) you do not distribute\nadditional software intended to replace any\ncomponent(s) of the Software, (iv) you do not\nremove or alter any proprietary legends or notices\ncontained in the Software, (v) you only distribute\nthe Software subject to a license agreement that\nprotects Sun's interests consistent with the terms\ncontained in this Agreement, and (vi) you agree to\ndefend and indemnify Sun and its licensors from\nand against any damages, costs, liabilities,\nsettlement amounts and/or expenses (including\nattorneys' fees) incurred in connection with any\nclaim, lawsuit or action by any third party that\narises or results from the use or distribution of\nany and all Programs and/or Software.\n\n3. License to Distribute Redistributables. Subject\nto the terms and conditions of this Agreement,\nincluding but not limited to Section 4 (Java\nTechnology Restrictions) of these Supplemental\nTerms, Sun grants you a non-exclusive,\nnon-transferable, limited license without fees to\nreproduce and distribute those files specifically\nidentified as redistributable in the Software\n\"README\" file (\"Redistributables\") provided that:\n(i) you distribute the Redistributables complete\nand unmodified (unless otherwise specified in the\napplicable README file), and only bundled as part\nof Programs, (ii) you do not distribute additional\nsoftware intended to supersede any component(s) of\nthe Redistributables, (iii) you do not remove or\nalter any proprietary legends or notices contained\nin or on the Redistributables, (iv) you only\ndistribute the Redistributables pursuant to a\nlicense agreement that protects Sun's interests\nconsistent with the terms contained in the\nAgreement, and (v) you agree to defend and\nindemnify Sun and its licensors from and against\nany damages, costs, liabilities, settlement\namounts and/or expenses (including attorneys'\nfees) incurred in connection with any claim,\nlawsuit or action by any third party that arises\nor results from the use or distribution of any and\nall Programs and/or Software.\n\n4. Java Technology Restrictions. You may not\nmodify the Java Platform Interface (\"JPI\",\nidentified as classes contained within the \"java\"\npackage or any subpackages of the \"java\" package),\nby creating additional classes within the JPI or\notherwise causing the addition to or modification\nof the classes in the JPI. In the event that you\ncreate an additional class and associated API(s)\nwhich (i) extends the functionality of the Java\nplatform, and (ii) is exposed to third party\nsoftware developers for the purpose of developing\nadditional software which invokes such additional\nAPI, you must promptly publish broadly an accurate\nspecification for such API for free use by all\ndevelopers. You may not create, or authorize your\nlicensees to create, additional classes,\ninterfaces, or subpackages that are in any way\nidentified as \"java\", \"javax\", \"sun\" or similar\nconvention as specified by Sun in any naming\nconvention designation.\n\n5. Trademarks and Logos. You acknowledge and agree\nas between you and Sun that Sun owns the SUN,\nSOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks\nand all SUN, SOLARIS, JAVA, JINI, FORTE, and\niPLANET-related trademarks, service marks, logos\nand other brand designations (\"Sun Marks\"), and\nyou agree to comply with the Sun Trademark and\nLogo Usage Requirements currently located at\nhttp://www.sun.com/policies/trademarks. Any use\nyou make of the Sun Marks inures to Sun's benefit.\n\n6. Source Code. Software may contain source code\nthat is provided solely for reference purposes\npursuant to the terms of this Agreement. Source\ncode may not be redistributed unless expressly\nprovided for in this Agreement.\n\n7. Termination for Infringement. Either party may\nterminate this Agreement immediately should any\nSoftware become, or in either party's opinion be\nlikely to become, the subject of a claim of\ninfringement of any intellectual property right.\n\nFor inquiries please contact: Sun Microsystems,\nInc., 4150 Network Circle, Santa Clara, California\n95054, U.S.A.\n(LFI#128935/Form ID#011801)", + "json": "sun-bcl-11-07.json", + "yaml": "sun-bcl-11-07.yml", + "html": "sun-bcl-11-07.html", + "license": "sun-bcl-11-07.LICENSE" + }, + { + "license_key": "sun-bcl-11-08", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-08", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun Microsystems, Inc.\nBinary Code License Agreement\n\n{ProductName}\n\nREAD THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\") CAREFULLY BEFORE OPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA PACKAGE, YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE \"ACCEPT\" BUTTON AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED ELECTRONICALLY, SELECT THE \"DECLINE\" BUTTON AT THE END OF THIS AGREEMENT. \n\n1. LICENSE TO USE. Sun grants you a non-exclusive and non-transferable license for the internal use only of the accompanying software and documentation and any error corrections provided by Sun (collectively \"Software\"), by the number of users and the class of computer hardware for which the corresponding fee has been paid. \n\n2. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Except as specifically authorized in any Supplemental License Terms, you may not make copies of Software, other than a single copy of Software for archival purposes. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. Licensee acknowledges that Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. \n\n3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. \n\n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. \n\n5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. \n\n6. Termination. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Upon Termination, you must destroy all copies of Software. \n\n7. Export Regulations. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. \n\n8. U.S. Government Restricted Rights. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). \n\n9. Governing Law. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply. \n\n10. Severability. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. \n\n11. Integration. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. \n\n \n {ProductName}\n \n SUPPLEMENTAL LICENSE TERMS\n\nThese supplemental license terms (\"Supplemental Terms\") add to or modify the terms of the Binary Code License Agreement (collectively, the \"Agreement\"). Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Agreement, or in any license contained within the Software. \n\n1. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement, including, but not limited to Section 3 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license to reproduce internally and use internally the binary form of the Software, complete and unmodified, for the sole purpose of designing, developing and testing your Java applets and applications (\"Programs\"). \n\n2. License to Distribute Software. In addition to the license granted in Section 1 (Software Internal Use and Development License Grant) of these Supplemental Terms, subject to the terms and conditions of this Agreement, including but not limited to, Section 3 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license to reproduce and distribute the Software in binary code form only, provided that you (i) distribute the Software complete and unmodified and only bundled as part of your Programs, (ii) do not distribute additional software intended to replace any component(s) of the Software, (iii) do not remove or alter any proprietary legends or notices contained in the Software, (iv) only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (v) agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. \n\n3. Java Technology Restrictions. You may not modify the Java Platform Interface (\"JPI\", identified as classes contained within the \"java\" package or any subpackages of the \"java\" package), by creating additional classes within the JPI or otherwise causing the addition to or modification of the classes in the JPI. In the event that you create an additional class and associated API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, you must promptly publish broadly an accurate specification for such API for free use by all developers. You may not create, or authorize your licensees to create additional classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"sun\" or similar convention as specified by Sun in any naming convention designation. \n\n4. Java Runtime Availability. Refer to the appropriate version of the Java Runtime Environment binary code license (currently located at http://www.java.sun.com/jdk/index.html) for the availability of runtime code which may be distributed with Java applets and applications.\n\n5. Trademarks and Logos. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations (\"Sun Marks\"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. \n\n6. Source Code. Software may contain source code that is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. \n\n7. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right.\n\n8. Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME. In addition to any terms and conditions of any third party open source/freeware license identified in the THIRDPARTYLICENSEREADME, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution.\n\nFor inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A\n\n(LFI#143342/Form ID#011801)", + "json": "sun-bcl-11-08.json", + "yaml": "sun-bcl-11-08.yml", + "html": "sun-bcl-11-08.html", + "license": "sun-bcl-11-08.LICENSE" + }, + { + "license_key": "sun-bcl-j2re-1.2.x", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.2.x", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun Microsystems, Inc. \n Binary Code License Agreement\n\nREAD THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL \nLICENSE TERMS (COLLECTIVELY \"AGREEMENT\") CAREFULLY BEFORE \nOPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE \nMEDIA PACKAGE, YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF \nYOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE YOUR \nACCEPTANCE OF THESE TERMS BY SELECTING THE \"ACCEPT\" BUTTON AT \nTHE END OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE \nTERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE OF \nPURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED\nELECTRONICALLY, SELECT THE \"DECLINE\" BUTTON AT THE END OF THIS\nAGREEMENT.\n\n1. LICENSE TO USE. Sun grants you a non-exclusive and\nnon-transferable license for the internal use only of the accompanying\nsoftware and documentation and any error corrections provided by Sun\n(collectively \"Software\"), by the number of users and the class of\ncomputer hardware for which the corresponding fee has been paid.\n\n2. RESTRICTIONS Software is confidential and copyrighted. Title to\nSoftware and all associated intellectual property rights is retained\nby Sun and/or its licensors. Except as specifically authorized in any\nSupplemental License Terms, you may not make copies of Software, other\nthan a single copy of Software for archival purposes. Unless\nenforcement is prohibited by applicable law, you may not modify,\ndecompile, reverse engineer Software. Software is not designed or\nlicensed for use in on-line control of aircraft, air traffic, aircraft\nnavigation or aircraft communications; or in the design, construction,\noperation or maintenance of any nuclear facility. You warrant that\nyou will not use Software for these purposes. You may not publish or\nprovide the results of any benchmark or comparison tests run on\nSoftware to any third party without the prior written consent of Sun.\nNo right, title or interest in or to any trademark, service mark, logo\nor trade name of Sun or its licensors is granted under this Agreement.\n\n3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety\n(90) days from the date of purchase, as evidenced by a copy of the\nreceipt, the media on which Software is furnished (if any) will be\nfree of defects in materials and workmanship under normal use. Except\nfor the foregoing, Software is provided \"AS IS\". Your exclusive\nremedy and Sun's entire liability under this limited warranty will be\nat Sun's option to replace Software media or refund the fee paid for\nSoftware.\n\n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, \nALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,\nINCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT \nTO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, \nIN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE,\nPROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL \nOR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF\nLIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO \nUSE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES. In no event will Sun's liability to you, whether in\ncontract, tort (including negligence), or otherwise, exceed the amount\npaid by you for Software under this Agreement. The foregoing\nlimitations will apply even if the above stated warranty fails of its\nessential purpose.\n\n6. Termination. This Agreement is effective until terminated. You\nmay terminate this Agreement at any time by destroying all copies of\nSoftware. This Agreement will terminate immediately without notice\nfrom Sun if you fail to comply with any provision of this Agreement.\nUpon Termination, you must destroy all copies of Software.\n\n7. Export Regulations. All Software and technical data delivered\nunder this Agreement are subject to US export control laws and may be\nsubject to export or import regulations in other countries. You agree\nto comply strictly with all such laws and regulations and acknowledge\nthat you have the responsibility to obtain such licenses to export,\nre-export, or import as may be required after delivery to you.\n\n8. U.S. Government Restricted Rights. Use, duplication, or\ndisclosure by the U.S. Government is subject to restrictions set forth\nin this Agreement and as provided in DFARS 227.7202-1 (a) and\n227.7202-3(a) (1995), DFARS 252.227-7013 (c)(1)(ii)(Oct 1988), FAR\n12.212 (a) (1995), FAR 52.227-19 (June 1987), or FAR 52.227-14(ALT\nIII) (June 1987), as applicable.\n\n9. Governing Law. Any action related to this Agreement will be\ngoverned by California law and controlling U.S. federal law. No\nchoice of law rules of any jurisdiction will apply.\n\n10. Severability. If any provision of this Agreement is held to be\nunenforceable, This Agreement will remain in effect with the provision\nomitted, unless omission would frustrate the intent of the parties, in\nwhich case this Agreement will immediately terminate.\n\n11. Integration. This Agreement is the entire agreement between you\nand Sun relating to its subject matter. It supersedes all prior or\ncontemporaneous oral or written communications, proposals,\nrepresentations and warranties and prevails over any conflicting or\nadditional terms of any quote, order, acknowledgment, or other\ncommunication between the parties relating to its subject matter\nduring the term of this Agreement. No modification of this Agreement\nwill be binding, unless in writing and signed by an authorized\nrepresentative of each party.\n\nFor inquiries please contact: Sun Microsystems, Inc. 901 San Antonio\nRoad, Palo Alto, California 94303\n\n JAVA(R) 2 RUNTIME ENVIRONMENT, STANDARD EDITION, VERSION 1.2.1_004\n SUPPLEMENTAL LICENSE TERMS\n\nThese supplemental terms (\"Supplement\") add to the terms of the Binary\nCode License Agreement (\"Agreement\"). Capitalized terms not defined\nherein shall have the same meanings ascribed to them in the Agreement.\nThe Supplement terms shall supersede any inconsistent or conflicting\nterms in the Agreement.\n\n1. License to Distribute. You are granted a royalty-free right to\nreproduce and distribute the Software provided that you: (i)distribute\nthe Software complete and unmodified, only as part of, and for the\nsole purpose of running, your Java applet or application (\"Program\")\ninto which the Software is incorporated; (ii) do not distribute\nadditional software intended to replace any component(s) of the\nSoftware; (iii) do not remove or alter any proprietary legends or\nnotices contained in the Software; (iv) only distribute the Program\nsubject to a license agreement that protects Sun's interests\nconsistent with the terms contained herein; (v) may not create, or\nauthorize your licensees to create additional classes, interfaces, or\nsubpackages that are contained in the \"java\" or \"sun\" packages or\nsimilar as specified by Sun in any class file naming convention; (vi)\nagree to the extent Programs are developed which utilize the Windows\n95/98 style graphical user interface or components contained therein,\nsuch applets or applications may only be developed to run on a Windows\n95/98 or Windows NT platform; and(vii) agree to indemnify, hold\nharmless, and defend Sun and its licensors from and against any claims\nor lawsuits, including attorneys' fees, that arise or result from the\nuse or distribution of the Program.\n\n2. Trademarks and Logos. This Agreement does not authorize Licensee to\nuse any Sun name, trademark or logo. Licensee acknowledges as between\nit and Sun that Sun owns the Java trademark and all Java-related\ntrademarks, logos and icons including the Coffee Cup and Duke (\"Java\nMarks\") and agrees to comply with the Java Trademark Guidelines at\nhttp://java.sun.com/trademarks.html.\n\n3. High Risk Activities. Notwithstanding Section 2, with respect to\nhigh risk activities, the following language shall apply: the Software\nis not designed or intended for use in on-line control of aircraft,\nair traffic, aircraft navigation or aircraft communications; or in the\ndesign, construction, operation or maintenance of any nuclear\nfacility. Sun disclaims any express or implied warranty of fitness for\nsuch uses.", + "json": "sun-bcl-j2re-1.2.x.json", + "yaml": "sun-bcl-j2re-1.2.x.yml", + "html": "sun-bcl-j2re-1.2.x.html", + "license": "sun-bcl-j2re-1.2.x.LICENSE" + }, + { + "license_key": "sun-bcl-j2re-1.4.2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.4.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun Microsystems, Inc. Binary Code License Agreement for the JAVATM 2 RUNTIME ENVIRONMENT (J2RE), STANDARD EDITION, VERSION 1.4.2_X\n\nSUN MICROSYSTEMS, INC. (\"SUN\") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE \"ACCEPT\" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE \"DECLINE\" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE.\n\n1.DEFINITIONS. \"Software\" means the identified above in binary form, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Sun, and any user manuals, programming guides and other documentation provided to you by Sun under this Agreement. \"Programs\" mean Java applets and applications intended to run on the Java 2 Platform, Standard Edition (J2SETM platform) platform on Java-enabled general purpose desktop computers and servers.\n\n2.LICENSE TO USE. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of the Supplemental License Terms, Sun grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally Software complete and unmodified for the sole purpose of running Programs. Additional licenses for developers and/or publishers are granted in the Supplemental License Terms.\n\n3.RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. Licensee acknowledges that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms.\n\n4.LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Any implied warranties on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state.\n\n5.DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n6.LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you.\n\n7.SOFTWARE UPDATES FROM SUN. You acknowledge that at your request or consent optional features of the Software may download, install, and execute applets, applications, software extensions, and updated versions of the Software from Sun (\"Software Updates\"), which may require you to accept updated terms and conditions for installation. If additional terms and conditions are not presented on installation, the Software Updates will be considered part of the Software and subject to the terms and conditions of the Agreement.\n\n8.SOFTWARE FROM SOURCES OTHER THAN SUN. You acknowledge that, by your use of optional features of the Software and/or by requesting services that require use of the optional features of the Software, the Software may automatically download, install, and execute software applications from sources other than Sun (\"Other Software\"). Sun makes no representations of a relationship of any kind to licensors of Other Software. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE OTHER SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you.\n\n9.TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon Termination, you must destroy all copies of Software.\n\n10.EXPORT REGULATIONS. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you.\n\n11.TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations (\"Sun Marks\"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit.\n\n12.U.S. GOVERNMENT RESTRICTED RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n13.GOVERNING LAW. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply.\n\n14. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n15. INTEGRATION. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party.\n\nSUPPLEMENTAL LICENSE TERMS\n\nThese Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement . These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software.\n\nA.Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs.\n\nB.License to Distribute Software. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified (unless otherwise specified in the applicable README file) and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software (unless otherwise specified in the applicable README file), (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software.\n\nC.License to Distribute Redistributables. Subject to the terms and conditions of this Agreement, including but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the Software \"README\" file (\"Redistributables\") provided that: (i) you distribute the Redistributables complete and unmodified (unless otherwise specified in the applicable README file), and only bundled as part of Programs, (ii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable README file), (iii) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (iv) you only distribute the Redistributables pursuant to a license agreement that protects Sun's interests consistent with the terms contained in the Agreement, (v) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software.\n\nD.Java Technology Restrictions. You may not modify the Java Platform Interface (\"JPI\", identified as classes contained within the \"java\" package or any subpackages of the \"java\" package), by creating additional classes within the JPI or otherwise causing the addition to or modification of the classes in the JPI. In the event that you create an additional class and associated API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, you must promptly publish broadly an accurate specification for such API for free use by all developers. You may not create, or authorize your licensees to create, additional classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"sun\" or similar convention as specified by Sun in any naming convention designation.\n\nE.Source Code. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement.\n\nF.Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution.\n\nFor inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. (LFI#129530/Form ID#011801)", + "json": "sun-bcl-j2re-1.4.2.json", + "yaml": "sun-bcl-j2re-1.4.2.yml", + "html": "sun-bcl-j2re-1.4.2.html", + "license": "sun-bcl-j2re-1.4.2.LICENSE" + }, + { + "license_key": "sun-bcl-j2re-1.4.x", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.4.x", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun Microsystems, Inc. \n Binary Code License Agreement\n\nREAD THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL LICENSE\nTERMS (COLLECTIVELY \"AGREEMENT\") CAREFULLY BEFORE OPENING THE SOFTWARE\nMEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA PACKAGE, YOU AGREE TO\nTHE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE\nELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING\nTHE \"ACCEPT\" BUTTON AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE\nTO ALL THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE\nOF PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED\nELECTRONICALLY, SELECT THE \"DECLINE\" BUTTON AT THE END OF THIS AGREEMENT.\n\n1. LICENSE TO USE. Sun grants you a non-exclusive and\nnon-transferable license for the internal use only of the accompanying\nsoftware and documentation and any error corrections provided by Sun\n(collectively \"Software\"), by the number of users and the class of\ncomputer hardware for which the corresponding fee has been paid.\n\n2. RESTRICTIONS. Software is confidential and copyrighted. Title to\nSoftware and all associated intellectual property rights is retained\nby Sun and/or its licensors. Except as specifically authorized in any\nSupplemental License Terms, you may not make copies of Software, other\nthan a single copy of Software for archival purposes. Unless\nenforcement is prohibited by applicable law, you may not modify,\ndecompile, or reverse engineer Software. You acknowledge that\nSoftware is not designed, licensed or intended for use in the design,\nconstruction, operation or maintenance of any nuclear facility. Sun\ndisclaims any express or implied warranty of fitness for such uses.\nNo right, title or interest in or to any trademark, service mark, logo\nor trade name of Sun or its licensors is granted under this Agreement.\n\n3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety\n(90) days from the date of purchase, as evidenced by a copy of the\nreceipt, the media on which Software is furnished (if any) will be\nfree of defects in materials and workmanship under normal use. Except\nfor the foregoing, Software is provided \"AS IS\". Your exclusive\nremedy and Sun's entire liability under this limited warranty will be\nat Sun's option to replace Software media or refund the fee paid for\nSoftware.\n\n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL\nEXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,\nINCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE\nEXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN\nNO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE,\nPROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR\nPUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF\nLIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE\nSOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES. In no event will Sun's liability to you, whether in\ncontract, tort (including negligence), or otherwise, exceed the amount\npaid by you for Software under this Agreement. The foregoing\nlimitations will apply even if the above stated warranty fails of its\nessential purpose.\n\n6. Termination. This Agreement is effective until terminated. You\nmay terminate this Agreement at any time by destroying all copies of\nSoftware. This Agreement will terminate immediately without notice\nfrom Sun if you fail to comply with any provision of this Agreement.\nUpon Termination, you must destroy all copies of Software.\n\n7. Export Regulations. All Software and technical data delivered under\nthis Agreement are subject to US export control laws and may be\nsubject to export or import regulations in other countries. You agree\nto comply strictly with all such laws and regulations and acknowledge\nthat you have the responsibility to obtain such licenses to export,\nre-export, or import as may be required after delivery to you.\n\n8. U.S. Government Restricted Rights. If Software is being acquired\nby or on behalf of the U.S. Government or by a U.S. Government prime\ncontractor or subcontractor (at any tier), then the Government's\nrights in Software and accompanying documentation will be only as set\nforth in this Agreement; this is in accordance with 48 CFR 227.7201\nthrough 227.7202-4 (for Department of Defense (DOD) acquisitions) and\nwith 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n9. Governing Law. Any action related to this Agreement will be\ngoverned by California law and controlling U.S. federal law. No\nchoice of law rules of any jurisdiction will apply.\n\n10. Severability. If any provision of this Agreement is held to be\nunenforceable, this Agreement will remain in effect with the provision\nomitted, unless omission would frustrate the intent of the parties, in\nwhich case this Agreement will immediately terminate.\n\n11. Integration. This Agreement is the entire agreement between you\nand Sun relating to its subject matter. It supersedes all prior or\ncontemporaneous oral or written communications, proposals,\nrepresentations and warranties and prevails over any conflicting or\nadditional terms of any quote, order, acknowledgment, or other\ncommunication between the parties relating to its subject matter\nduring the term of this Agreement. No modification of this Agreement\nwill be binding, unless in writing and signed by an authorized\nrepresentative of each party.\n\n\n JAVA(TM) 2 RUNTIME ENVIRONMENT (J2RE), STANDARD EDITION, VERSION 1.4.X\n SUPPLEMENTAL LICENSE TERMS\n\nThese supplemental license terms (\"Supplemental Terms\") add to or\nmodify the terms of the Binary Code License Agreement (collectively,\nthe \"Agreement\"). Capitalized terms not defined in these Supplemental\nTerms shall have the same meanings ascribed to them in the\nAgreement. These Supplemental Terms shall supersede any inconsistent\nor conflicting terms in the Agreement, or in any license contained\nwithin the Software.\n\n1. Software Internal Use and Development License Grant. Subject to\nthe terms and conditions of this Agreement, including, but not limited\nto Section 4 (Java Technology Restrictions) of these Supplemental\nTerms, Sun grants you a non-exclusive, non-transferable, limited\nlicense to reproduce internally and use internally the binary form of\nthe Software complete and unmodified for the sole purpose of\ndesigning, developing and testing your Java applets and applications\nintended to run on the Java platform (\"Programs\").\n\n2. License to Distribute Software. Subject to the terms and\nconditions of this Agreement, including, but not limited to Section 4\n(Java Technology Restrictions) of these Supplemental Terms, Sun grants\nyou a non-exclusive, non-transferable, limited license to reproduce\nand distribute the Software, provided that (i) you distribute the\nSoftware complete and unmodified (unless otherwise specified in the\napplicable README file) and only bundled as part of, and for the sole\npurpose of running, your Programs, (ii) the Programs add significant\nand primary functionality to the Software, (iii) you do not distribute\nadditional software intended to replace any component(s) of the\nSoftware (unless otherwise specified in the applicable README file),\n(iv) you do not remove or alter any proprietary legends or notices\ncontained in the Software, (v) you only distribute the Software\nsubject to a license agreement that protects Sun's interests\nconsistent with the terms contained in this Agreement, and (vi) you\nagree to defend and indemnify Sun and its licensors from and against\nany damages, costs, liabilities, settlement amounts and/or expenses\n(including attorneys' fees) incurred in connection with any claim,\nlawsuit or action by any third party that arises or results from the\nuse or distribution of any and all Programs and/or Software. (vi)\ninclude the following statement as part of product documentation\n(whether hard copy or electronic), as a part of a copyright page or\nproprietary rights notice page, in an \"About\" box or in any other form\nreasonably designed to make the statement visible to users of the\nSoftware: \"This product includes code licensed from RSA Security,\nInc.\", and (vii) include the statement, \"Some portions licensed from\nIBM are available at http://oss.software.ibm.com/icu4j/\".\n\n3. License to Distribute Redistributables. Subject to the terms and\nconditions of this Agreement, including but not limited to Section 4\n(Java Technology Restrictions) of these Supplemental Terms, Sun grants\nyou a non-exclusive, non-transferable, limited license to reproduce\nand distribute those files specifically identified as redistributable\nin the Software \"README\" file (\"Redistributables\") provided that: (i)\nyou distribute the Redistributables complete and unmodified (unless\notherwise specified in the applicable README file), and only bundled\nas part of Programs, (ii) you do not distribute additional software\nintended to supersede any component(s) of the Redistributables (unless\notherwise specified in the applicable README file), (iii) you do not\nremove or alter any proprietary legends or notices contained in or on\nthe Redistributables, (iv) you only distribute the Redistributables\npursuant to a license agreement that protects Sun's interests\nconsistent with the terms contained in the Agreement, (v) you agree to\ndefend and indemnify Sun and its licensors from and against any\ndamages, costs, liabilities, settlement amounts and/or expenses\n(including attorneys' fees) incurred in connection with any claim,\nlawsuit or action by any third party that arises or results from the\nuse or distribution of any and all Programs and/or Software, (vi)\ninclude the following statement as part of product documentation\n(whether hard copy or electronic), as a part of a copyright page or\nproprietary rights notice page, in an \"About\" box or in any other form\nreasonably designed to make the statement visible to users of the\nSoftware: \"This product includes code licensed from RSA Security,\nInc.\", and (vii) include the statement, \"Some portions licensed from\nIBM are available at http://oss.software.ibm.com/icu4j/\".\n\n4. Java Technology Restrictions. You may not modify the Java\nPlatform Interface (\"JPI\", identified as classes contained within the\n\"java\" package or any subpackages of the \"java\" package), by creating\nadditional classes within the JPI or otherwise causing the addition to\nor modification of the classes in the JPI. In the event that you\ncreate an additional class and associated API(s) which (i) extends the\nfunctionality of the Java platform, and (ii) is exposed to third party\nsoftware developers for the purpose of developing additional software\nwhich invokes such additional API, you must promptly publish broadly\nan accurate specification for such API for free use by all developers.\nYou may not create, or authorize your licensees to create, additional\nclasses, interfaces, or subpackages that are in any way identified as\n\"java\", \"javax\", \"sun\" or similar convention as specified by Sun in\nany naming convention designation.\n\n5. Notice of Automatic Software Updates from Sun. You acknowledge\nthat the Software may automatically download, install, and execute\napplets, applications, software extensions, and updated versions of\nthe Software from Sun (\"Software Updates\"), which may require you to\naccept updated terms and conditions for installation. If additional\nterms and conditions are not presented on installation, the Software\nUpdates will be considered part of the Software and subject to the\nterms and conditions of the Agreement.\n\n6. Notice of Automatic Downloads. You acknowledge that, by your use\nof the Software and/or by requesting services that require use of the\nSoftware, the Software may automatically download, install, and\nexecute software applications from sources other than Sun (\"Other\nSoftware\"). Sun makes no representations of a relationship of any kind\nto licensors of Other Software. TO THE EXTENT NOT PROHIBITED BY LAW,\nIN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE,\nPROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR\nPUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF\nLIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE\nOTHER SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n7. Trademarks and Logos. You acknowledge and agree as between you\nand Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET\ntrademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and\niPLANET-related trademarks, service marks, logos and other brand\ndesignations (\"Sun Marks\"), and you agree to comply with the Sun\nTrademark and Logo Usage Requirements currently located at\nhttp://www.sun.com/policies/trademarks. Any use you make of the Sun\nMarks inures to Sun's benefit.\n\n8. Source Code. Software may contain source code that is provided\nsolely for reference purposes pursuant to the terms of this Agreement.\nSource code may not be redistributed unless expressly provided for in\nthis Agreement.\n\n9. Termination for Infringement. Either party may terminate this\nAgreement immediately should any Software become, or in either party's\nopinion be likely to become, the subject of a claim of infringement of\nany intellectual property right.\n\nFor inquiries please contact: Sun Microsystems, Inc. 901 San Antonio\nRoad, Palo Alto, California 94303\n(LFI#109998/Form ID#011801)", + "json": "sun-bcl-j2re-1.4.x.json", + "yaml": "sun-bcl-j2re-1.4.x.yml", + "html": "sun-bcl-j2re-1.4.x.html", + "license": "sun-bcl-j2re-1.4.x.LICENSE" + }, + { + "license_key": "sun-bcl-j2re-5.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-5.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun Microsystems, Inc. Binary Code License Agreement for the JAVA 2 PLATFORM STANDARD EDITION RUNTIME ENVIRONMENT 5.0\n\nSUN MICROSYSTEMS, INC. (\"SUN\") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE \"ACCEPT\" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE \"DECLINE\" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE.\n\n1. DEFINITIONS. \"Software\" means the identified above in binary form, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Sun, and any user manuals, programming guides and other documentation provided to you by Sun under this Agreement. \"Programs\" mean Java applets and applications intended to run on the Java 2 Platform Standard Edition (J2SE platform) platform on Java-enabled general purpose desktop computers and servers.\n\n2. LICENSE TO USE. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of the Supplemental License Terms, Sun grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally Software complete and unmodified for the sole purpose of running Programs. Additional licenses for developers and/or publishers are granted in the Supplemental License Terms.\n\n3. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms.\n\n4. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Any implied warranties on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state.\n\n5. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n6. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you.\n\n7. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon Termination, you must destroy all copies of Software.\n\n8. EXPORT REGULATIONS. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you.\n\n9. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations (\"Sun Marks\"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit.\n\n10. U.S. GOVERNMENT RESTRICTED RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n11. GOVERNING LAW. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply.\n\n12. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n13. INTEGRATION. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party.\n\nSUPPLEMENTAL LICENSE TERMS These Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement . These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software.\n\nA. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software \"README\" file incorporated herein by reference, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs.\n\nB. License to Distribute Software. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software README file, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software.\n\nC. Java Technology Restrictions. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"sun\" or similar convention as specified by Sun in any naming convention designation.\n\nD. Source Code. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement.\n\nE. Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution.\n\nF. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right.\n\nG. Installation and Auto-Update. The Software's installation and auto-update processes transmit a limited amount of data to Sun (or its service provider) about those specific processes to help Sun understand and optimize them. Sun does not associate the data with personally identifiable information. You can find more information about the data Sun collects at http://java.com/data/.\n\nFor inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. (LFI#143333/Form ID#011801)", + "json": "sun-bcl-j2re-5.0.json", + "yaml": "sun-bcl-j2re-5.0.yml", + "html": "sun-bcl-j2re-5.0.html", + "license": "sun-bcl-j2re-5.0.LICENSE" + }, + { + "license_key": "sun-bcl-java-servlet-imp-2.1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-java-servlet-imp-2.1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Java Servlet Implementation Classes\nVersion 2.1.1\nBinary Code License\n\nThis binary code license (\"License\") contains rights and restrictions \nassociated with use of the accompanying Java Servlet Implementation Classes \nsoftware and documentation (\"Software\"). Read the License carefully before \nusing the Software. By using the Software you agree to the terms and \nconditions of this License.\n\n 1. Limited License Grant. By agreeing to this License, Sun grants to you \n (\"Licensee\") a non-exclusive, nontransferable limited license to use the \n Software without fee for evaluation of the Software and for development \n of applications which utilize the Software. Licensee may make one archival \n copy of the Software and may redistribute complete, unmodified copies of \n the Software to software developers within the Licensee's organization to \n avoid unnecessary download time provided that this License conspicuously \n appear with all copies of the Software. Except for the foregoing and the \n distribution rights authorized for the Servlet Classes specified below, \n Licensee may not redistribute the Software in whole or in part, either \n separately or included with a product.\n\n 2. License to Distribute Servlet Classes. Licensee is granted a royalty-free \n right to reproduce and distribute the binary code form of the servlet \n classes contained in the Software in the archive file \"servlet.jar\" \n (\"Servlet Classes\"), provided that Licensee: (i) distributes the Servlet \n Classes complete and unmodified in their original Java Archive file, and \n only as a part of Licensee's application that incorporates the Servlet \n Classes (\"Program\"); (ii) does not distribute additional software intended \n to replace any components of the Servlet Classes; (iii) agrees to \n incorporate the most current version of the Servlet Classes that was \n available from Sun no later than 180 days prior to each production release \n of Program; (iv) does not remove or alter any proprietary legends or \n notices contained in the Servlet Classes; (v) includes the provisions of \n Sections 3, 4, 6, 8, and 9 in Licensee's license agreement for the Program;\n and (vi) agrees to indemnify, hold harmless, and defend Sun and its \n licensors from and against any claims or lawsuits, including attorneys' \n fees, that arise or result from the use or distribution of the Software.\n\n 3. Java Platform Interface. Licensee may not modify the Java Platform \n Interface (JPI, identified as classes contained within the javax package \n or any subpackages of the javax package), by creating additional classes \n within the JPI or otherwise causing the addition to or modification of \n the classes in the JPI. In the event that Licensee creates any \n Java-related API and distribute such API to others for applet or \n application development, you must promptly publish broadly, an accurate \n specification for such API for free use by all developers of Java-based \n software. \n\n 4. Restrictions. Software is confidential copyrighted information of Sun and \n title to all copies is retained by Sun and/or its licensors. Licensee \n shall not modify, decompile, disassemble, decrypt, extract, or otherwise \n reverse engineer Software. Software may not be leased, assigned, or \n sublicensed, in whole or in part. Software is not designed or intended \n for use in on-line control of aircraft, air traffic, aircraft navigation \n or aircraft communications; or in the design, construction, operation or \n maintenance of any nuclear facility. Licensee warrants that it will not \n use or redistribute the Software for such purposes.\n\n 5. Trademarks and Logos. This License does not authorize Licensee to use any \n Sun name, trademark or logo. Licensee acknowledges that Sun owns the \n Java trademark and all Java- related trademarks, logos and icons including\n the Coffee Cup and Duke (\"Java Marks\") and agrees to: (i) to comply with \n the Java Trademark Guidelines at http://java.sun.com/ trademarks.html; \n (ii) not do anything harmful to or inconsistent with Sun's rights in the \n Java Marks; and (iii) assist Sun in protecting those rights, including \n assigning to Sun any rights acquired by Licensee in any Java Mark. \n\n 6. Disclaimer of Warranty. Software is provided \"AS IS,\" without a warranty \n of any kind. ALL EXPRESS OR IMPLIED REPRESENTATIONS AND WARRANTIES, \n INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A \n PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. \n\n 7. Limitation of Liability. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR \n ANY DAMAGES SUFFERED BY LICENSEE OR ANY THIRD PARTY AS A RESULT OF USING \n OR DISTRIBUTING SOFTWARE. IN NO EVENT WILL SUN OR ITS LICENSORS BE \n LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, \n SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED \n AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR \n INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY \n OF SUCH DAMAGES.\n\n 8. Termination. This License is effective until terminated. Licensee may \n terminate this License at any time by destroying all copies of Software. \n This License will terminate immediately without notice from Sun if Licensee\n fails to comply with any provision of this License. Upon such termination,\n Licensee must destroy all copies of Software.\n\n 9. Export Regulations. Software, including technical data, is subject to U.S.\n export control laws, including the U.S. Export Administration Act and its\n associated regulations, and may be subject to export or import regulations\n in other countries. Licensee agrees to comply strictly with all such \n regulations and acknowledges that it has the responsibility to obtain \n licenses to export, re-export, or import Software. Software may not be \n downloaded, or otherwise exported or re-exported (i) into, or to a national\n or resident of, Cuba, Iraq, Iran, North Korea, Libya, Sudan, Syria or any \n country to which the U.S. has embargoed goods; or (ii) to anyone on the \n U.S. Treasury Department's list of Specially Designated Nations or the U.S.\n Commerce Department's Table of Denial Orders.\n\n 10. Restricted Rights. Use, duplication or disclosure by the United States \n government is subject to the restrictions as set forth in the Rights in \n Technical Data and Computer Software Clauses in DFARS 252.227-7013(c) \n (1) (ii) and FAR 52.227-19(c) (2) as applicable.\n\n 11. Governing Law. Any action related to this License will be governed by \n California law and controlling U.S. federal law. No choice of law rules \n of any jurisdiction will apply. \n\n 12. Severability. If any of the above provisions are held to be in \n violation of applicable law, void, or unenforceable in any jurisdiction, \n then such provisions are herewith waived to the extent necessary for the \n License to be otherwise enforceable in such jurisdiction. However, if in \n Sun's opinion deletion of any provisions of the License by operation of \n this paragraph unreasonably compromises the rights or increase the \n liabilities of Sun or its licensors, Sun reserves the right to terminate \n the License and refund the fee paid by Licensee, if any, as Licensee's \n sole and exclusive remedy. \n\n 13. Integration. This Agreement is the entire agreement between Licensee and \n Sun relating to its subject matter. It supersedes all prior or \n contemporaneous oral or written communications, proposals, representations\n and warranties and prevails over any conflicting or additional terms of \n any quote, order, acknowledgment, or other communication between the \n parties relating to its subject matter during the term of this Agreement. \n No modification of this Agreement will be binding, unless in writing and \n signed by an authorized representative of each party.", + "json": "sun-bcl-java-servlet-imp-2.1.1.json", + "yaml": "sun-bcl-java-servlet-imp-2.1.1.yml", + "html": "sun-bcl-java-servlet-imp-2.1.1.html", + "license": "sun-bcl-java-servlet-imp-2.1.1.LICENSE" + }, + { + "license_key": "sun-bcl-javahelp", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-javahelp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SUN JavaHelp(TM) 2.0\nSun Microsystems, Inc. Binary Code License Agreement\n\nREAD THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\") CAREFULLY BEFORE OPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA PACKAGE, YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE \"ACCEPT\" BUTTON AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED ELECTRONICALLY, SELECT THE \"DECLINE\" BUTTON AT THE END OF THIS AGREEMENT.\n\n1. LICENSE TO USE. Sun grants you a non-exclusive and non-transferable license for the internal use only of the accompanying software and documentation and any error corrections provided by Sun (collectively \"Software\"), by the number of users and the class of computer hardware for which the corresponding fee has been paid.\n\n2. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Except as specifically authorized in any Supplemental License Terms, you may not make copies of Software, other than a single copy of Software for archival purposes. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that Software is not designed, licensed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement.\n\n3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software.\n\n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose.\n\n6. Termination. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Upon Termination, you must destroy all copies of Software.\n\n7. Export Regulations. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you.\n\n8. U.S. Government Restricted Rights. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n9. Governing Law. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply.\n\n10. Severability. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n11. Integration. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party.\n\nJAVAHELP(TM) VERSION 2.0 SUPPLEMENTAL LICENSE TERMS\n\nThese supplemental license terms (\"Supplemental Terms\") add to or modify the terms of the Binary Code License Agreement (collectively, the \"Agreement\"). Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Agreement, or in any license contained within the Software.\n\n1. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement, including, but not limited to Section 4 (Java(TM) Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license to reproduce internally and use internally the binary form of the Software complete and unmodified for the sole purpose of designing, developing and testing your Java applets and applications intended to run on the Java platform (\"Programs\").\n\n2. License to Distribute Software. In addition to the license granted in Section 1 (Software Internal Use and Development License Grant) of these Supplemental Terms, subject to the terms and conditions of this Agreement, including but not limited to Section 4 (Java Technology Restrictions), Sun grants you a non-exclusive, non-transferable, limited license to reproduce and distribute the Software in binary form only, provided that you (i) distribute the Software complete and unmodified and only bundled as part of your Programs, (ii) do not distribute additional software intended to replace any component(s) of the Software, (iii) do not remove or alter any proprietary legends or notices contained in the Software, (iv) only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (v) agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software.\n\n3. License to Distribute Redistributables. In addition to the license granted in Section 1 (Software Internal Use and Development License Grant) of these Supplemental Terms, subject to the terms and conditions of this Agreement, including but not limited to Section 3 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license to reproduce and distribute those files specifically identified as redistributable in the Software \"README\" file (\"Redistributables\") provided that: (i) you distribute the Redistributables complete and unmodified (unless otherwise specified in the applicable README file), and only bundled as part of your Programs, (ii) you do not distribute additional software intended to supersede any component(s) of the Redistributables, (iii) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (iv) you only distribute the Redistributables pursuant to a license agreement that protects Sun's interests consistent with the terms contained in the Agreement, and (v) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software.\n\n4. Java Technology Restrictions. You may not modify the Java Platform Interface (\"JPI\", identified as classes contained within the \"java\" package or any subpackages of the \"java\" package), by creating additional classes within the JPI or otherwise causing the addition to or modification of the classes in the JPI. In the event that you create an additional class and associated API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, you must promptly publish broadly an accurate specification for such API for free use by all developers. You may not create, or authorize your licensees to create, additional classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"sun\" or similar convention as specified by Sun in any naming convention designation.\n\n5. Java Runtime Availability. Refer to the appropriate version of the Java Runtime Environment binary code license (currently located at http://www.java.sun.com/jdk/index.html) for the availability of runtime code which may be distributed with Java applets and applications.\n\n6. Trademarks and Logos. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations (\"Sun Marks\"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit.\n\n7. Source Code. Software may contain source code that is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. Some source code may contain alternative license terms that apply only to that source code file.\n\n8. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right.\n\nFor inquiries please contact: Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054. (LFI#136278/Form ID#011801)", + "json": "sun-bcl-javahelp.json", + "yaml": "sun-bcl-javahelp.yml", + "html": "sun-bcl-javahelp.html", + "license": "sun-bcl-javahelp.LICENSE" + }, + { + "license_key": "sun-bcl-jimi-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-jimi-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SUN JIMI SDK\n\nJIMI SDK Version 2.0 Sun Microsystems, Inc. Please see the file classes/LICENSE_JIMI.txt\n\nSun Microsystems, Inc. Binary Code License Agreement\n\nREAD THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\") CAREFULLY BEFORE OPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA PACKAGE, YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE \"ACCEPT\" BUTTON AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL OF THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED ELECTRONICALLY, SELECT THE \"DECLINE\" BUTTON AT THE END OF THIS AGREEMENT AND THE INSTALLATION PROCESS WILL NOT CONTINUE.\n\n1. License to Use. Sun Microsystems, Inc. (\"Sun\") grants you a non-exclusive and non- transferable license for the internal use only of the accompanying software, documentation and any error corrections provided by Sun (collectively \"Software\"), by the number of users and the class of computer hardware for which the corresponding fee has been paid.\n\n2. Restrictions. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Except as specifically authorized in any Supplemental License Terms, you may not make copies of Software, other than a single copy of Software for archival purposes. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that Software is not designed, licensed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement.\n\n3. Limited Warranty. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software.\n\n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose.\n\n6. Termination. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Upon Termination, you must destroy all copies of Software.\n\n7. Export Regulations. All Software and any technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you.\n\n8. U.S. Government Restricted Rights. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 C.F.R. 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 C.F.R. 2.101 and 12.212 (for non- DOD acquisitions).\n\n9. Governing Law. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply.\n\n10. Severability. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n11. Integration. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party.\n\nFor inquiries please contact: Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California 94303\n\nJIMI SDK, Version 2.0 SUPPLEMENTAL LICENSE TERMS\n\nThese supplemental terms (\"Supplement\") add to the terms of the Binary Code License Agreement (\"Agreement\"). Capitalized terms not defined herein shall have the same meanings ascribed toh them in the Agreement. The Supplement terms shall supersede any inconsistent or conflicting terms in the Agreement. \n\n1. Limited License Grant.\n\na. Software Development License. Subject to your obligation to indemnify Sun pursuant to Section 3 below, Sun grants to you a non-exclusive, non-transferable limited license to use the Software without fee for evaluation of the Software and for development of Java(TM) applets and applications provided that you may not re-distribute the Software in whole or in part, except as provided in Section 1.b below. The Software may contain source code which is provided for reference purposes only, and may not be modified (except for the purpose of correcting errors) or redistributed.\n\nb. License to Distribute Runtime. Subject to your obligation to indemnify Sun pursuant to Section 3 below, Sun grants to you a non-exclusive, non-transferable limited, royalty-free license to reproduce, distribute offer to sell and sell the Software provided that you: \n(i)distribute the Software complete and unmodified (except for error corrections), only as part of, and for the sole purpose of running, your Java applet or application (\"Program\") into which the Software is incorporated; \n(ii) do not distribute additional software intended to replace any component(s) of the Software; \n(iii) do not remove or alter any proprietary legends or notices contained in the Software; \n(iv) only distribute the Program subject to a license agreement that protects Sun's interests consistent with the terms contained herein; and \n(v) may not create, or authorize your licensees to create additional classes, interfaces, or subpackages that are contained in the \"java\" or \"sun\" packages or similar as ! specified by Sun in any class file naming convention.\n\n2. Java Platform Interface. In the event that Licensee creates an additional API(s) which: \n(i) extends the functionality of a Java Environment; and, \n(ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, Licensee must promptly publish broadly an accurate specification for such API for free use by all developers.\n\n3.Indemnity to Sun. As a condition precedent to each license grant in this Agreement, you agree to indemnify, hold harmless, and defend Sun and its licensors from and against any and all claims, lawsuits, liabilities, demands and expenses (including attorneys' fees), that arise or result from the use or distribution of the Software or the Program, including without limitation, those brought by Unisys Corporation, its successors and assigns, with respect to U.S. Patent Number 4,558,302 and all foreign counterparts thereto which Unisys Corporation may now have or acquire in the future (the \"LZW Patents\") relating to your making, using, selling, licensing, importing, offering to sell, or otherwise transferring the GIF encoding and/or decoding feature of the Software or the Program. This Agreement does not grant any rights to you with respect to the LZW Patents.\n\n4. Trademarks and Logos. This Agreement does not authorize you to use any Sun name, trademark or logo. Licensee acknowledges as between it and Sun that Sun owns the Java trademark and all Java-related trademarks, logos and icons including the Coffee Cup and Duke (\"Java Marks\") and agrees to comply with the Java Trademark Guidelines at http://java.sun.com", + "json": "sun-bcl-jimi-sdk.json", + "yaml": "sun-bcl-jimi-sdk.yml", + "html": "sun-bcl-jimi-sdk.html", + "license": "sun-bcl-jimi-sdk.LICENSE" + }, + { + "license_key": "sun-bcl-jre6", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-jre6", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun Microsystems, Inc. Binary Code License Agreement for the JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 6\n\nSUN MICROSYSTEMS, INC. (\"SUN\") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE \"ACCEPT\" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE \"DECLINE\" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE.\n\n1. DEFINITIONS. \"Software\" means the identified above in binary form, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Sun, and any user manuals, programming guides and other documentation provided to you by Sun under this Agreement. \"General Purpose Desktop Computers and Servers\" means computers, including desktop, laptop and tablet computers, or servers, used for general computing functions under end user control (such as but not specifically limited to email, general purpose Internet browsing, and office suite productivity tools). The use of Software in systems and solutions that provide dedicated functionality (other than as mentioned above) or designed for use in embedded or function-specific software applications, for example but not limited to: Software embedded in or bundled with industrial control systems, wireless mobile telephones, wireless handheld devices, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control switching equipment, printers and storage management systems, and other related systems are excluded from this definition and not licensed under this Agreement. \"Programs\" means Java technology applets and applications intended to run on the Java Platform Standard Edition (Java SE) platform on Java-enabled General Purpose Desktop Computers and Servers.\n\n2. LICENSE TO USE. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of the Supplemental License Terms, Sun grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally Software complete and unmodified for the sole purpose of running Programs. Additional licenses for developers and/or publishers are granted in the Supplemental License Terms.\n\n3. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms.\n\n4. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Any implied warranties on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state.\n\n5. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n6. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you.\n\n7. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon Termination, you must destroy all copies of Software.\n\n8. EXPORT REGULATIONS. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you.\n\n9. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations (\"Sun Marks\"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit.\n\n10. U.S. GOVERNMENT RESTRICTED RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n11. GOVERNING LAW. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply.\n\n12. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n13. INTEGRATION. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. \n\nSUPPLEMENTAL LICENSE TERMS\n\nThese Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software.\n\nA. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software \"README\" file incorporated herein by reference, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs.\n\nB. License to Distribute Software. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software README file, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software.\n\nC. Java Technology Restrictions. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"sun\" or similar convention as specified by Sun in any naming convention designation.\n\nD. Source Code. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement.\n\nE. Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution.\n\nF. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right.\n\nG. Installation and Auto-Update. The Software's installation and auto-update processes transmit a limited amount of data to Sun (or its service provider) about those specific processes to help Sun understand and optimize them. Sun does not associate the data with personally identifiable information. You can find more information about the data Sun collects at http://java.com/data/.\n\nFor inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A.", + "json": "sun-bcl-jre6.json", + "yaml": "sun-bcl-jre6.yml", + "html": "sun-bcl-jre6.html", + "license": "sun-bcl-jre6.LICENSE" + }, + { + "license_key": "sun-bcl-jsmq", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-jsmq", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SUN Java System Message Queue License\nSun Microsystems, Inc. Binary Code License Agreement\n\nREAD THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\") CAREFULLY BEFORE OPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA PACKAGE, YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE \"ACCEPT\" BUTTON AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED ELECTRONICALLY, SELECT THE \"DECLINE\" BUTTON AT THE END OF THIS AGREEMENT.\n\n1. LICENSE TO USE. Sun grants you a non-exclusive and non-transferable license for the internal use only of the accompanying software and documentation and any error corrections provided by Sun (collectively \"Software\"), by the number of users and the class of computer hardware for which the corresponding fee has been paid.\n\n2. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Except as specifically authorized in any Supplemental License Terms, you may not make copies of Software, other than a single copy of Software for archival purposes. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that Software is not designed, licensed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement.\n\n3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software.\n\n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose.\n\n6. Termination. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Upon Termination, you must destroy all copies of Software.\n\n7. Export Regulations. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re- export, or import as may be required after delivery to you.\n\n8. U.S. Government Restricted Rights. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n9. Governing Law. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply.\n\n10. Severability. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n11. Integration. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party.\n\nSun Microsystems, Inc.\n\nSupplemental Terms and Conditions for \nSun Java System Message Queue Platform Edition 3 2005Q1 and\nSun Java System Message Queue Enterprise Edition 3 2005Q1\n\nThese terms and conditions for the Software supplement the terms and conditions of the Agreement. Capitalized terms not defined herein shall have the meanings ascribed to them in ethe BCL. These terms and conditions shall supersede any inconsistent or conflicting terms and conditions in the BCL.\n\nA. Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME file. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME file, the disclaimer of warranty and limitation of liability provisions in paragraphs 4 and 5 of the BCL shall apply to all Software in this distribution.\n\nB. License to Evaluate Message Queue EE. If you have not paid the applicable fees for Message Queue EE, Sun grants you a non-exclusive, non-transferable, royalty-free and limited license to use Message Queue EE internally for the sole purpose of evaluation, for a period of ninety (90) days from the date you begin using the Message Queue EE features. No license to Message Queue EE is granted hereunder for any other purpose, including any commercial or production use of Message Queue EE. Sun is under no obligation to provide you with support, updates, error corrections or any other service for Software licensed for evaluation.\n\nC. License to Use Software. The following terms and conditions apply to your use of Message Queue PE, and, if you have paid the applicable fees for a commercial use license to Message Queue EE, Message Queue EE.\n\n1. Definitions.\n\n(a) \"Broker\" means the server side Software component that manages the routing of JMS messages.\n\n(b) \"Client Applications\" means the application created by you using the APIs provided in the Software for connecting with the Broker.\n\n2. Additional Use Conditions.\n\n(a) You may copy the documentation, without change, as necessary to fully utilize Software, provided the copies contain all of the original proprietary notices.\n\n(b) You may use any Sun ONE, Sun or third party products embedded in or bundled with Software only in conjunction with Software (and the applications that run on Software), and not with other software products or on a stand-alone basis. Except as otherwise explicitly provided, the use of each such bundled product shall be governed by its license agreement.\n\n3. License to Distribute Redistributables. Subject to the terms and conditions of this Agreement, Sun grants you a non-exclusive, non-transferable, limited license to reproduce and distribute the binary form of those files specifically identified as redistributable below in Paragraph 3.(a) (\"Redistributables\"), provided that: (i) you do not distribute additional software intended to supersede any component(s) of the Redistributables, (ii) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (iii) you only distribute the Redistributables pursuant to a license agreement that protects Sun's interests consistent with the terms contained in the Agreement, and (iv) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of\n\n(a). Only the following jar files may be redistributed in accordance with the license in Section C, Paragraph 3 of these SupplementalTerms.\njms.jar \nimq.jar \nimqxm.jar \nfscontext.jar \nproviderutil.jar \njndi.jar \nldap.jar \nldapbp.jar \njaas.jar \njsse.jar \njnet.jar \njcert.jar\n\nAdditionally the following files can be redistributed:\nLICENSE \nCOPYRIGHT\n\nAll other files distributed with the product are NOT redistributable.\n\n4. Java Technology Restrictions. You may not create or modify, or authorize your licensees to create or modify, additional classes, interfaces, or sub- packages that are in any way identified as \"java\", \"javax\", \"sun\" or similar convention as specified by Sun in any naming convention designation.\n\n5. Trademarks and Logos. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, JDK, FORTE, STAROFFICE, STARPORTAL and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, STAROFFICE, STARPORTAL and iPLANET-related trademarks, service marks, logos and other brand designations (\"Sun Marks\"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit.\n\n6. Source Code. Software may contain source code that is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement.\n\n7. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right.\n\n8. Additional Restrictions. You may not publish or provide the results of any benchmark or comparison tests run on Software to any third party without the prior written consent of Sun.", + "json": "sun-bcl-jsmq.json", + "yaml": "sun-bcl-jsmq.yml", + "html": "sun-bcl-jsmq.html", + "license": "sun-bcl-jsmq.LICENSE" + }, + { + "license_key": "sun-bcl-opendmk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-opendmk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Binary License for Project OpenDMK\n\nSun Microsystems, Inc. Binary Code License Agreement\n\nSUN MICROSYSTEMS, INC. (\"SUN\") IS WILLING TO LICENSE THE SOFTWARE TO YOU\nONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS\nBINARY CODE LICENSE AGREEMENT (\"AGREEMENT\"). PLEASE READ THE AGREEMENT\nCAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE FULL\nTERMS OF THIS AGREEMENT.\n\n1. Definitions.\n\n\"Software\" means all software provided to You in binary code form by Sun\nunder this License as indicated on the \"opendmk.dev.java.net\" website.\nSoftware includes any updates or error corrections or documentation relating\nto Software provided to You by Sun under this License as indicated on\nthe \"opendmk.dev.java.net\" website.\n\n2. Permitted Uses.\n\nSubject to the terms and conditions of this Agreement and restrictions\nand exceptions set forth in the Software's documentation, Sun grants you\na non-exclusive,non-transferable, limited license without fees to\n\n(a) reproduce and use internally the Software for the purposes of\n developing or running a Project OpenDMK code distribution.\n\n(b) reproduce and distribute the Software (and also portions of Software\n identified as Redistributable in the documentation accompanying\n Software), provided that you (i) distribute the Software or\n Redistributables bundled as part of, and for the sole purpose of\n running, Project OpenDMK code; (ii) do not remove or alter any proprietary\n legends or notices contained in or on the Software or Redistributables,\n (iii) only distribute the Software or Redistributables subject to a\n license agreement that protects Sun's interests consistent with the\n terms contained in this Agreement, and (iv) you agree to defend and\n indemnify Sun and its licensors from and against any damages, costs,\n liabilities, settlement amounts and/or expenses (including attorneys'\n fees) incurred in connection with any claim, lawsuit or action by any\n third party that arises or results from the use or distribution of any\n and all Programs, Software, or Redistributables.\n\n3. Restrictions.\n\n(a) The copies of Software provided to you under this Agreement is licensed,\n not sold, to you by Sun. Sun reserves all rights not expressly granted.\n\n(b) You may not modify Software. However if the documentation accompanying\n Software lists specific portions of Software, such as header files, class\n libraries, reference source code, and/or redistributable files, that may\n be handled differently, you may do so only as provided in the\n documentation.\n\n(c) You may not rent, lease, lend or encumber Software.\n\n(d) You do not remove or alter any proprietary legends or notices contained\n in the Software,\n\n(e) Unless enforcement is prohibited by applicable law, you may not decompile,\n or reverse engineer Software.\n\n(f) The terms and conditions of this Agreement will apply to any Software\n updates, provided to you at Sun's discretion, that replace and/or\n supplement the original Software, unless such update contains a separate\n license.\n\n(g) Software is copyrighted.\n\n(h) Software is not designed, licensed or intended for use in the design,\n construction, operation or maintenance of any nuclear facility and Sun\n and its licensors disclaim any express or implied warranty of fitness\n for such uses.\n\n(i) No right, title or interest in or to any trademark, service mark, logo\n or trade name of Sun or its licensors is granted under this Agreement.\n\n(j) If your Permitted Use in this Agreement permits the distribution Software\n or portions of the Software, you may only distribute the Software subject\n to a license agreement that protects Sun's interests consistent with the\n terms contained in this Agreement.\n\n4. Open Source.\n\nSun supports and benefits from the global community of open source developers,\nand thanks the community for its important contributions and open\nstandards-based technology, which Sun has adopted into many of its products.\n\nPlease note that portions of Software may be provided with notices and open\nsource licenses from such communities and third parties that govern the use\nof those portions, and any licenses granted hereunder do not alter any rights\nand obligations you may have under such open source licenses, however, the\ndisclaimer of warranty and limitation of liability provisions in this\nAgreement will apply to all Software in this distribution.\n\n5. Term and Termination.\n\nThe Agreement is effective on the Date you receive the Software and remains\neffective until terminated. Your rights under this Agreement will terminate\nimmediately without notice from Sun if you materially breach it or take any\naction in derogation of Sun's and/or its licensors' rights to Software. Sun\nmay terminate this Agreement should any Software become, or in Sun's\nreasonable opinion likely to become, the subject of a claim of intellectual\nproperty infringement or trade secret misappropriation. Upon termination,\nyou will cease use of, and destroy, Software and confirm compliance in\nwriting to Sun. Sections 1, 3, 4, 5, and 7-13 will survive termination of\nthe Agreement.\n\n6. Limited Warranty.\n\nSun warrants to you that for a period of 90 days from the date of receipt,\nthe media on which Software is furnished (if any) will be free of defects\nin materials and workmanship under normal use. Except for the foregoing,\nSoftware is provided \"AS IS\". Your exclusive remedy and Sun's entire\nliability under this limited warranty will be at Sun's option to replace\nSoftware media or refund the fee paid for Software. Some states do not allow\nlimitations on certain implied warranties, so the above may not apply to you.\nThis limited warranty gives you specific legal rights. You may have others,\nwhich vary from state to state.\n\n7. Disclaimer of Warranty.\n\nUNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS,\nREPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE\nDISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE\nLEGALLY INVALID.\n\n8. Limitation of Liability.\n\nTO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS\nBE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT,\nCONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF\nTHE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY\nTO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES. In no event will Sun's liability to you, whether in contract,\ntort (including negligence), or otherwise, exceed the amount paid by you\nSoftware under this Agreement. The foregoing limitations will apply even if\nthe above stated warranty fails of its essential purpose. Some states do not\nallow the exclusion of incidental or consequential damages, so some of the\nterms above may not be applicable to you.\n\n9. Export Regulations.\n\nAll Software, documents, technical data, and any other materials delivered\nunder this Agreement are subject to U.S. export control laws and may be\nsubject to export or import regulations in other countries. You agree to\ncomply strictly with these laws and regulations and acknowledge that you\nhave the responsibility to obtain any licenses to export, re-export, or\nimport as may be required after delivery to you.\n\n10. U.S. Government Restricted Rights.\n\nIf Software is being acquired by or on behalf of the U.S. Government or by a\nU.S. Government prime contractor or subcontractor (at any tier), then the\nGovernment's rights in Software and accompanying documentation will be only\nas set forth in this Agreement; this is in accordance with 48 CFR 227.7201\nthrough 227.7202-4 (for Department of Defense (DOD) acquisitions) and with\n48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n11. Governing Law.\n\nAny action related to this Agreement will be governed by California law and\ncontrolling U.S. federal law. No choice of law rules of any jurisdiction\nwill apply.\n\n12. Severability.\n\nIf any provision of this Agreement is held to be unenforceable, this\nAgreement will remain in effect with the provision omitted, unless omission\nwould frustrate the intent of the parties, in which case this Agreement will\nimmediately terminate.\n\n13. Integration.\n\nThis Agreement is the entire agreement between you and Sun relating to its\nsubject matter. It supersedes all prior or contemporaneous oral or written\ncommunications, proposals, representations and warranties and prevails over\nany conflicting or additional terms of any quote, order, acknowledgment, or\nother communication between the parties relating to its subject matter during\nthe term of this Agreement. No modification of this Agreement will be binding,\nunless in writing and signed by an authorized representative of each party.\n\nPage Last Modified: 14 August 2007", + "json": "sun-bcl-opendmk.json", + "yaml": "sun-bcl-opendmk.yml", + "html": "sun-bcl-opendmk.html", + "license": "sun-bcl-opendmk.LICENSE" + }, + { + "license_key": "sun-bcl-openjdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-openjdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Binary License for OpenJDK\n\nSun Microsystems, Inc. Binary Code License Agreement\n\nSUN MICROSYSTEMS, INC. (\"SUN\") IS WILLING TO LICENSE THE SOFTWARE TO YOU\nONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS\nBINARY CODE LICENSE AGREEMENT (\"AGREEMENT\"). PLEASE READ THE AGREEMENT\nCAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE FULL\nTERMS OF THIS AGREEMENT.\n\n1. Definitions.\n\n\"Software\" means all third party software provided to You in binary code form\nby Sun under this License as specifically indicated on the openjdk.java.net\nsource download web page. Software includes any updates or error corrections\nor documentation relating to Software provided to You by Sun under this\nLicense as indicated on the openjdk.java.net source download web page.\n\n2. Permitted Uses.\n\nSubject to the terms and conditions of this Agreement, Sun grants you\na non-exclusive, non-transferable, limited license without fees to\n\n(a) reproduce and use internally the Software for the purposes of\n developing or running a distribution based upon OpenJDK code\n made available from Sun (\"OpenJDK Code\").\n\n(b) reproduce and distribute the Software, provided that you (i) distribute\nthe Software bundled as part of, and for the sole purpose of running an\nunmodified version of the OpenJDK Code or a runtime environment based upon\ntheOpenJDK Code; (ii) only distribute and use the Software with the\ncomponent of the OpenJDK Code into which such Software was originally\nincorporated by Sun; (iii) do not remove or alter any proprietary legends or\nnotices contained in or on the Software; (iv) only distribute the Software\nsubject to a license agreement that protects Sun's interests consistent with\nthe terms contained in this Agreement; and (v) you agree to defend and\nindemnify Sun and its licensors from and against any damages, costs,\nliabilities, settlement amounts and/or expenses (including attorneys' fees)\nincurred in connection with any claim, lawsuit or action by any third party\nthat arises or results from (A) the use or distribution of your software,\nproduct or materials (or any part thereof) in any manner, or (B) your use or\ndistribution of the Software in violation of the terms of this Agreement or\napplicable law.\n\n3. Restrictions.\n\n(a) The copies of Software provided to you under this Agreement is licensed,\n not sold, to you by Sun. Sun reserves all rights not expressly granted.\n\n(b) You may not modify Software.\n\n(c) You may not rent, lease, lend or encumber Software.\n\n(d) You do not remove or alter any proprietary legends or notices contained\n in the Software,\n\n(e) Unless enforcement is prohibited by applicable law, you may not decompile,\n or reverse engineer Software.\n\n(f) The terms and conditions of this Agreement will apply to any Software\n updates, provided to you at Sun's discretion, that replace and/or\n supplement the original Software, unless such update contains a separate\n license.\n\n(g) Software is copyrighted.\n\n(h) Software is not designed, licensed or intended for use in the design,\n construction, operation or maintenance of any nuclear facility and Sun\n and its licensors disclaim any express or implied warranty of fitness\n for such uses.\n\n(i) No right, title or interest in or to any trademark, service mark, logo\n or trade name of Sun or its licensors is granted under this Agreement.\n\n(j) If your Permitted Use in this Agreement permits the distribution Software\n or portions of the Software, you may only distribute the Software subject\n to a license agreement that protects Sun's interests consistent with the\n terms contained in this Agreement.\n\n4. Open Source.\n\nSun supports and benefits from the global community of open source developers,\nand thanks the community for its important contributions and open\nstandards-based technology, which Sun has adopted into many of its products.\n\nPlease note that portions of Software may be provided with notices and open\nsource licenses from such communities and third parties that govern the use\nof those portions, and any licenses granted hereunder do not alter any rights\nand obligations you may have under such open source licenses, however, the\ndisclaimer of warranty and limitation of liability provisions in this\nAgreement will apply to all Software in this distribution.\n\n5. Term and Termination.\n\nThe Agreement is effective on the Date you receive the Software and remains\neffective until terminated. Your rights under this Agreement will terminate\nimmediately without notice from Sun if you materially breach it or take any\naction in derogation of Sun's and/or its licensors' rights to Software. Sun\nmay terminate this Agreement should any Software become, or in Sun's\nreasonable opinion likely to become, the subject of a claim of intellectual\nproperty infringement or trade secret misappropriation. Upon termination,\nyou will cease use of, and destroy, Software and confirm compliance in\nwriting to Sun. Sections 1, 3, 4, 5, and 7-13 will survive termination of\nthe Agreement.\n\n6. Limited Warranty.\n\nSun warrants to you that for a period of 90 days from the date of receipt,\nthe media on which Software is furnished (if any) will be free of defects\nin materials and workmanship under normal use. Except for the foregoing,\nSoftware is provided \"AS IS\". Your exclusive remedy and Sun's entire\nliability under this limited warranty will be at Sun's option to replace\nSoftware media or refund the fee paid for Software. Some states do not allow\nlimitations on certain implied warranties, so the above may not apply to you.\nThis limited warranty gives you specific legal rights. You may have others,\nwhich vary from state to state.\n\n7. Disclaimer of Warranty.\n\nUNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS,\nREPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE\nDISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE\nLEGALLY INVALID.\n\n8. Limitation of Liability.\n\nTO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS\nBE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT,\nCONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF\nTHE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY\nTO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES. In no event will Sun's liability to you, whether in contract,\ntort (including negligence), or otherwise, exceed the amount paid by you\nSoftware under this Agreement. The foregoing limitations will apply even if\nthe above stated warranty fails of its essential purpose. Some states do not\nallow the exclusion of incidental or consequential damages, so some of the\nterms above may not be applicable to you.\n\n9. Export Regulations.\n\nAll Software, documents, technical data, and any other materials delivered\nunder this Agreement are subject to U.S. export control laws and may be\nsubject to export or import regulations in other countries. You agree to\ncomply strictly with these laws and regulations and acknowledge that you\nhave the responsibility to obtain any licenses to export, re-export, or\nimport as may be required after delivery to you.\n\n10. U.S. Government Restricted Rights.\n\nIf Software is being acquired by or on behalf of the U.S. Government or by a\nU.S. Government prime contractor or subcontractor (at any tier), then the\nGovernment's rights in Software and accompanying documentation will be only\nas set forth in this Agreement; this is in accordance with 48 CFR 227.7201\nthrough 227.7202-4 (for Department of Defense (DOD) acquisitions) and with\n48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n11. Governing Law.\n\nAny action related to this Agreement will be governed by California law and\ncontrolling U.S. federal law. No choice of law rules of any jurisdiction\nwill apply.\n\n12. Severability.\n\nIf any provision of this Agreement is held to be unenforceable, this\nAgreement will remain in effect with the provision omitted, unless omission\nwould frustrate the intent of the parties, in which case this Agreement will\nimmediately terminate.\n\n13. Integration.\n\nThis Agreement is the entire agreement between you and Sun relating to its\nsubject matter. It supersedes all prior or contemporaneous oral or written\ncommunications, proposals, representations and warranties and prevails over\nany conflicting or additional terms of any quote, order, acknowledgment, or\nother communication between the parties relating to its subject matter during\nthe term of this Agreement. No modification of this Agreement will be binding,\nunless in writing and signed by an authorized representative of each party.\n\nSUPPLEMENTAL TERMS.\n\nA. As a condition to the rights and licenses granted to you in this\nAgreement, you cannot and shall not distribute a modified version of the AWT\nthat does not contain all of the class libraries (or equivalent libraries)\nof the AWT if such modified version is distributed in association with\ndedicated circuitry in silicon. For purposes of this section, \"AWT\" means\nthe abstract windowing toolkit class libraries implemented in the OpenJDK\nCode or any modified version of such abstract windowing toolkit that is\ncreated and distributed by Sun or its licensees.", + "json": "sun-bcl-openjdk.json", + "yaml": "sun-bcl-openjdk.yml", + "html": "sun-bcl-openjdk.html", + "license": "sun-bcl-openjdk.LICENSE" + }, + { + "license_key": "sun-bcl-sdk-1.3", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Java 2 Software Development Kit (J2SDK), Standard Edition, Version 1.3.x\nSun Microsystems, Inc. Binary Code License Agreement\n\n1. LICENSE TO USE. Sun grants you a non-exclusive and non-transferable license for the internal use only of the accompanying software and documentation and any error corrections provided by Sun (collectively \"Software\"), by the number of users and the class of computer hardware for which the corresponding fee has been paid. \"General Purpose Desktop Computers and Servers\" means computers, including desktop, laptop and tablet computers, or servers, used for general computing functions under end user control (such as but not specifically limited to email, general purpose Internet browsing, and office suite productivity tools). The use of Software in systems and solutions that provide dedicated functionality (other than as mentioned above) or designed for use in embedded or function-specific software applications, for example but not limited to: Software embedded in or bundled with industrial control systems, wireless mobile telephones, wireless handheld devices, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control switching equipment, printers and storage management systems, and other related systems are excluded from this definition and not licensed under this Agreement. \"Programs\" means Java technology applets and applications intended to run on the Java 2 Platform Standard Edition (J2SE) platform on Java-enabled General Purpose Desktop Computers and Servers.\n\n2. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Except as specifically authorized in any Supplemental License Terms, you may not make copies of Software, other than a single copy of Software for archival purposes. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. Licensee acknowledges that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement.\n\n3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software.\n\n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose.\n\n6. Termination. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Upon Termination, you must destroy all copies of Software.\n\n7. Export Regulations. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you.\n\n8. U.S. Government Restricted Rights. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n9. Governing Law. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply.\n\n10. Severability. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n11. Integration. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party.\n\nJava 2 Software Development Kit (J2SDK), Standard Edition, Version 1.3.x SUPPLEMENTAL LICENSE TERMS\n\nThese supplemental license terms (\"Supplemental Terms\") add to or modify the terms of the Binary Code License Agreement (collectively, the \"Agreement\"). Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software.\n\n1. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software \"README\" file incorporated herein by reference, including, but not limited to Section 4 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the binary form of the Software complete and unmodified (unless otherwise specified in the applicable README file) for the sole purpose of designing, developing, testing, and running your Java applets and applications intended to run on Programs.\n\n2. License to Distribute Software. Subject to the terms and conditions of this Agreement, including, but not limited to Section 4 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that: (i) you distribute the Software complete and unmodified (unless otherwise specified in the applicable README file) and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software.\n\n3. License to Distribute Redistributables. Subject to the terms and conditions of this Agreement, including but not limited to Section 4 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the Software \"README\" file (\"Redistributables\") provided that: (i) you distribute the Redistributables complete and unmodified (unless otherwise specified in the applicable README file), and only bundled as part of Programs, (ii) you do not distribute additional software intended to supersede any component(s) of the Redistributables, (iii) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (iv) you only distribute the Redistributables pursuant to a license agreement that protects Sun's interests consistent with the terms contained in the Agreement, and (v) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software.\n\n4. Java Technology Restrictions. You may not modify the Java Platform Interface (\"JPI\", identified as classes contained within the \"java\" package or any subpackages of the \"java\" package), by creating additional classes within the JPI or otherwise causing the addition to or modification of the classes in the JPI. In the event that you create an additional class and associated API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, you must promptly publish broadly an accurate specification for such API for free use by all developers. You may not create, or authorize your licensees to create, additional classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"sun\" or similar convention as specified by Sun in any naming convention designation.\n\n5. Trademarks and Logos. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations (\"Sun Marks\"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit.\n\n6. Source Code. Software may contain source code that is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement.\n\n7. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right.\n\n8. Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME. In addition to any terms and conditions of any third party open source/freeware license identified in the THIRDPARTYLICENSEREADME, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution.\n\nFor inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. (LFI#143968/Form ID#011801)", + "json": "sun-bcl-sdk-1.3.json", + "yaml": "sun-bcl-sdk-1.3.yml", + "html": "sun-bcl-sdk-1.3.html", + "license": "sun-bcl-sdk-1.3.LICENSE" + }, + { + "license_key": "sun-bcl-sdk-1.4.2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-1.4.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun Microsystems, Inc. Binary Code License Agreement\nfor the JAVA 2 SOFTWARE DEVELOPMENT KIT (J2SDK), STANDARD EDITION,\nVERSION 1.4.2_X\n\nSUN MICROSYSTEMS, INC. (\"SUN\") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE \"ACCEPT\" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE \"DECLINE\" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE.\n\n1.DEFINITIONS. \"Software\" means the identified above in binary form, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Sun, and any user manuals, programming guides and other documentation provided to you by Sun under this Agreement. \"General Purpose Desktop Computers and Servers\" means computers, including desktop, laptop and tablet computers, or servers, used for general computing functions under end user control (such as but not specifically limited to email, general purpose Internet browsing, and office suite productivity tools). The use of Software in systems and solutions that provide dedicated functionality (other than as mentioned above) or designed for use in embedded or function-specific software applications, for example but not limited to: Software embedded in or bundled with industrial control systems, wireless mobile telephones, wireless handheld devices, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control switching equipment, printers and storage management systems, and other related systems is excluded from this definition and not licensed under this Agreement. \"Programs\" means Java technology applets and applications intended to run on the Java 2 Platform Standard Edition (J2SE) platform on Java-enabled General Purpose Desktop Computers and Servers.\n\n2.LICENSE TO USE. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of the Supplemental License Terms, Sun grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally Software complete and unmodified for the sole purpose of running Programs. Additional licenses for developers and/or publishers are granted in the Supplemental License Terms.\n\n3.RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. Licensee acknowledges that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms.\n\n4.LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Any implied warranties on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state.\n\n5.DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n6.LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you.\n\n7.SOFTWARE UPDATES FROM SUN. You acknowledge that at your request or consent optional features of the Software may download, install, and execute applets, applications, software extensions, and updated versions of the Software from Sun (\"Software Updates\"), which may require you to accept updated terms and conditions for installation. If additional terms and conditions are not presented on installation, the Software Updates will be considered part of the Software and subject to the terms and conditions of the Agreement.\n\n8.SOFTWARE FROM SOURCES OTHER THAN SUN. You acknowledge that, by your use of optional features of the Software and/or by requesting services that require use of the optional features of the Software, the Software may automatically download, install, and execute software applications from sources other than Sun (\"Other Software\"). Sun makes no representations of a relationship of any kind to licensors of Other Software. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE OTHER SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you.\n\n9.TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon Termination, you must destroy all copies of Software.\n\n10.EXPORT REGULATIONS. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you.\n\n11.TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations (\"Sun Marks\"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit.\n\n12.U.S. GOVERNMENT RESTRICTED RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n13.GOVERNING LAW. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply.\n\n14. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n15. INTEGRATION. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party.\n\nSUPPLEMENTAL LICENSE TERMS\n\nThese Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement . These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software.\n\nA.Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs.\n\nB.License to Distribute Software. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified (unless otherwise specified in the applicable README file) and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software (unless otherwise specified in the applicable README file), (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software.\n\nC.License to Distribute Redistributables. Subject to the terms and conditions of this Agreement, including but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the Software \"README\" file (\"Redistributables\") provided that: (i) you distribute the Redistributables complete and unmodified (unless otherwise specified in the applicable README file), and only bundled as part of Programs, (ii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable README file), (iii) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (iv) you only distribute the Redistributables pursuant to a license agreement that protects Sun's interests consistent with the terms contained in the Agreement, (v) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software.\n\nD.Java Technology Restrictions. You may not modify the Java Platform Interface (\"JPI\", identified as classes contained within the \"java\" package or any subpackages of the \"java\" package), by creating additional classes within the JPI or otherwise causing the addition to or modification of the classes in the JPI. In the event that you create an additional class and associated API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, you must promptly publish broadly an accurate specification for such API for free use by all developers. You may not create, or authorize your licensees to create, additional classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"sun\" or similar convention as specified by Sun in any naming convention designation.\n\nE.Distribution by Publishers. This section pertains to your distribution of the Software with your printed book or magazine (as those terms are commonly used in the industry) relating to Java technology (\"Publication\"). Subject to and conditioned upon your compliance with the restrictions and obligations contained in the Agreement, in addition to the license granted in Paragraph 1 above, Sun hereby grants to you a non-exclusive, nontransferable limited right to reproduce complete and unmodified copies of the Software on electronic media (the \"Media\") for the sole purpose of inclusion and distribution with your Publication(s), subject to the following terms: (i) You may not distribute the Software on a stand-alone basis; it must be distributed with your Publication(s); (ii) You are responsible for downloading the Software from the applicable Sun web site; (iii) You must refer to the Software as JavaTM 2 Software Development Kit, Standard Edition, Version 1.4.2; (iv) The Software must be reproduced in its entirety and without any modification whatsoever (including, without limitation, the Binary Code License and Supplemental License Terms accompanying the Software and proprietary rights notices contained in the Software); (v) The Media label shall include the following information: Copyright 2003, Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Sun, Sun Microsystems, the Sun logo, Solaris, Java, the Java Coffee Cup logo, J2SE , and all trademarks and logos based on Java are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. This information must be placed on the Media label in such a manner as to only apply to the Sun Software; (vi) You must clearly identify the Software as Sun's product on the Media holder or Media label, and you may not state or imply that Sun is responsible for any third-party software contained on the Media; (vii) You may not include any third party software on the Media which is intended to be a replacement or substitute for the Software; (viii) You shall indemnify Sun for all damages arising from your failure to comply with the requirements of this Agreement. In addition, you shall defend, at your expense, any and all claims brought against Sun by third parties, and shall pay all damages awarded by a court of competent jurisdiction, or such settlement amount negotiated by you, arising out of or in connection with your use, reproduction or distribution of the Software and/or the Publication. Your obligation to provide indemnification under this section shall arise provided that Sun: (i) provides you prompt notice of the claim; (ii) gives you sole control of the defense and settlement of the claim; (iii) provides you, at your expense, with all available information, assistance and authority to defend; and (iv) has not compromised or settled such claim without your prior written consent; and (ix) You shall provide Sun with a written notice for each Publication; such notice shall include the following information: (1) title of Publication, (2) author(s), (3) date of Publication, and (4) ISBN or ISSN numbers. Such notice shall be sent to Sun Microsystems, Inc., 4150 Network Circle, M/S USCA12-110, Santa Clara, California 95054, U.S.A , Attention: Contracts Administration.\n\nF.Source Code. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement.\n\nG.Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution.\n\nH.Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right.\n\nFor inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. (LFI#129530/Form ID#011801)", + "json": "sun-bcl-sdk-1.4.2.json", + "yaml": "sun-bcl-sdk-1.4.2.yml", + "html": "sun-bcl-sdk-1.4.2.html", + "license": "sun-bcl-sdk-1.4.2.LICENSE" + }, + { + "license_key": "sun-bcl-sdk-5.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-5.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun Microsystems, Inc. Binary Code License Agreement\nfor the JAVA 2 PLATFORM STANDARD EDITION DEVELOPMENT KIT 5.0\n\nSUN MICROSYSTEMS, INC. (\"SUN\") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE \"ACCEPT\" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE \"DECLINE\" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE.\n\n1. DEFINITIONS. \"Software\" means the identified above in binary form, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Sun, and any user manuals, programming guides and other documentation provided to you by Sun under this Agreement. \"Programs\" mean Java applets and applications intended to run on the Java 2 Platform Standard Edition (J2SE platform) platform on Java-enabled general purpose desktop computers and servers.\n\n2. LICENSE TO USE. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of the Supplemental License Terms, Sun grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally Software complete and unmodified for the sole purpose of running Programs. Additional licenses for developers and/or publishers are granted in the Supplemental License Terms.\n\n3. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms.\n\n4. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Any implied warranties on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state.\n\n5. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n6. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you.\n\n7. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon Termination, you must destroy all copies of Software.\n\n8. EXPORT REGULATIONS. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you.\n\n9. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations (\"Sun Marks\"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit.\n\n10. U.S. GOVERNMENT RESTRICTED RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n11. GOVERNING LAW. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply.\n\n12. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n13. INTEGRATION. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party.\n\nSUPPLEMENTAL LICENSE TERMS\n\nThese Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement . These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software.\n\nA. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software \"README\" file, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs.\n\nB. License to Distribute Software. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software README file, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software.\n\nC. License to Distribute Redistributables. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software README file, including but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the Software \"README\" file (\"Redistributables\") provided that: (i) you distribute the Redistributables complete and unmodified, and only bundled as part of Programs, (ii) the Programs add significant and primary functionality to the Redistributables, (iii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable README file), (iv) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (v) you only distribute the Redistributables pursuant to a license agreement that protects Sun's interests consistent with the terms contained in the Agreement, (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software.\n\nD. Java Technology Restrictions. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"sun\" or similar convention as specified by Sun in any naming convention designation.\n\nE. Distribution by Publishers. This section pertains to your distribution of the Software with your printed book or magazine (as those terms are commonly used in the industry) relating to Java technology (\"Publication\"). Subject to and conditioned upon your compliance with the restrictions and obligations contained in the Agreement, in addition to the license granted in Paragraph 1 above, Sun hereby grants to you a non-exclusive, nontransferable limited right to reproduce complete and unmodified copies of the Software on electronic media (the \"Media\") for the sole purpose of inclusion and distribution with your Publication(s), subject to the following terms: (i) You may not distribute the Software on a stand-alone basis; it must be distributed with your Publication(s); (ii) You are responsible for downloading the Software from the applicable Sun web site; (iii) You must refer to the Software as JavaTM 2 Platform Standard Edition Development Kit 5.0; (iv) The Software must be reproduced in its entirety and without any modification whatsoever (including, without limitation, the Binary Code License and Supplemental License Terms accompanying the Software and proprietary rights notices contained in the Software); (v) The Media label shall include the following information: Copyright 2004, Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Sun, Sun Microsystems, the Sun logo, Solaris, Java, the Java Coffee Cup logo, J2SE , and all trademarks and logos based on Java are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. This information must be placed on the Media label in such a manner as to only apply to the Sun Software; (vi) You must clearly identify the Software as Sun's product on the Media holder or Media label, and you may not state or imply that Sun is responsible for any third-party software contained on the Media; (vii) You may not include any third party software on the Media which is intended to be a replacement or substitute for the Software; (viii) You shall indemnify Sun for all damages arising from your failure to comply with the requirements of this Agreement. In addition, you shall defend, at your expense, any and all claims brought against Sun by third parties, and shall pay all damages awarded by a court of competent jurisdiction, or such settlement amount negotiated by you, arising out of or in connection with your use, reproduction or distribution of the Software and/or the Publication. Your obligation to provide indemnification under this section shall arise provided that Sun: (i) provides you prompt notice of the claim; (ii) gives you sole control of the defense and settlement of the claim; (iii) provides you, at your expense, with all available information, assistance and authority to defend; and (iv) has not compromised or settled such claim without your prior written consent; and (ix) You shall provide Sun with a written notice for each Publication; such notice shall include the following information: (1) title of Publication, (2) author(s), (3) date of Publication, and (4) ISBN or ISSN numbers. Such notice shall be sent to Sun Microsystems, Inc., 4150 Network Circle, M/S USCA12-110, Santa Clara, California 95054, U.S.A , Attention: Contracts Administration.\n\nF. Source Code. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement.\n\nG. Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution.\n\nFor inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A.\n(LFI#141623/Form ID#011801)", + "json": "sun-bcl-sdk-5.0.json", + "yaml": "sun-bcl-sdk-5.0.yml", + "html": "sun-bcl-sdk-5.0.html", + "license": "sun-bcl-sdk-5.0.LICENSE" + }, + { + "license_key": "sun-bcl-sdk-6.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-6.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun Microsystems, Inc. Binary Code License Agreement \nfor the JAVA SE DEVELOPMENT KIT (JDK), VERSION 6\n\n1. DEFINITIONS. \"Software\" means the identified above in binary form, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Sun, and any user manuals, programming guides and other documentation provided to you by Sun under this Agreement. \"General Purpose Desktop Computers and Servers\" means computers, including desktop, laptop and tablet computers, or servers, used for general computing functions under end user control (such as but not specifically limited to email, general purpose Internet browsing, and office suite productivity tools). The use of Software in systems and solutions that provide dedicated functionality (other than as mentioned above) or designed for use in embedded or function-specific software applications, for example but not limited to: Software embedded in or bundled with industrial control systems, wireless mobile telephones, wireless handheld devices, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control switching equipment, printers and storage management systems, and other related systems are excluded from this definition and not licensed under this Agreement. \"Programs\" means Java technology applets and applications intended to run on the Java Platform Standard Edition (Java SE) platform on Java-enabled General Purpose Desktop Computers and Servers.\n\n2. LICENSE TO USE. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of the Supplemental License Terms, Sun grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally Software complete and unmodified for the sole purpose of running Programs. Additional licenses for developers and/or publishers are granted in the Supplemental License Terms.\n\n3. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms.\n\n4. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Any implied warranties on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state.\n\n5. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n6. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you.\n\n7. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon Termination, you must destroy all copies of Software.\n\n8. EXPORT REGULATIONS. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you.\n\n9. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations (\"Sun Marks\"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit.\n\n10. U.S. GOVERNMENT RESTRICTED RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n11. GOVERNING LAW. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply.\n\n12. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n13. INTEGRATION. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party.\n\nSUPPLEMENTAL LICENSE TERMS\n\nThese Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement . These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software.\n\nA. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software \"README\" file incorporated herein by reference, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs.\n\nB. License to Distribute Software. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software README file, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non- transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software.\n\nC. License to Distribute Redistributables. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software README file, including but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the Software \"README\" file (\"Redistributables\") provided that: (i) you distribute the Redistributables complete and unmodified, and only bundled as part of Programs, (ii) the Programs add significant and primary functionality to the Redistributables, (iii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable README file), (iv) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (v) you only distribute the Redistributables pursuant to a license agreement that protects Sun's interests consistent with the terms contained in the Agreement, (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software.\n\nD. Java Technology Restrictions. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"sun\" or similar convention as specified by Sun in any naming convention designation.\n\nE. Distribution by Publishers. This section pertains to your distribution of the Software with your printed book or magazine (as those terms are commonly used in the industry) relating to Java technology (\"Publication\"). Subject to and conditioned upon your compliance with the restrictions and obligations contained in the Agreement, in addition to the license granted in Paragraph 1 above, Sun hereby grants to you a non-exclusive, nontransferable limited right to reproduce complete and unmodified copies of the Software on electronic media (the \"Media\") for the sole purpose of inclusion and distribution with your Publication(s), subject to the following terms: (i) You may not distribute the Software on a stand-alone basis; it must be distributed with your Publication(s); (ii) You are responsible for downloading the Software from the applicable Sun web site; (iii) You must refer to the Software as JavaTM SE Development Kit 6; (iv) The Software must be reproduced in its entirety and without any modification whatsoever (including, without limitation, the Binary Code License and Supplemental License Terms accompanying the Software and proprietary rights notices contained in the Software); (v) The Media label shall include the following information: Copyright 2006, Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Sun, Sun Microsystems, the Sun logo, Solaris, Java, the Java Coffee Cup logo, J2SE, and all trademarks and logos based on Java are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. This information must be placed on the Media label in such a manner as to only apply to the Sun Software; (vi) You must clearly identify the Software as Sun's product on the Media holder or Media label, and you may not state or imply that Sun is responsible for any third-party software contained on the Media; (vii) You may not include any third party software on the Media which is intended to be a replacement or substitute for the Software; (viii) You shall indemnify Sun for all damages arising from your failure to comply with the requirements of this Agreement. In addition, you shall defend, at your expense, any and all claims brought against Sun by third parties, and shall pay all damages awarded by a court of competent jurisdiction, or such settlement amount negotiated by you, arising out of or in connection with your use, reproduction or distribution of the Software and/or the Publication. Your obligation to provide indemnification under this section shall arise provided that Sun: (a) provides you prompt notice of the claim; (b) gives you sole control of the defense and settlement of the claim; (c) provides you, at your expense, with all available information, assistance and authority to defend; and (d) has not compromised or settled such claim without your prior written consent; and (ix) You shall provide Sun with a written notice for each Publication; such notice shall include the following information: (1) title of Publication, (2) author(s), (3) date of Publication, and (4) ISBN or ISSN numbers. Such notice shall be sent to Sun Microsystems, Inc., 4150 Network Circle, M/S USCA12-110, Santa Clara, California 95054, U.S.A , Attention: Contracts Administration.\n\nF. Source Code. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement.\n\nG. Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution.\n\nH. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right.\n\nI. Installation and Auto-Update. The Software's installation and auto-update processes transmit a limited amount of data to Sun (or its service provider) about those specific processes to help Sun understand and optimize them. Sun does not associate the data with personally identifiable information. You can find more information about the data Sun collects at http://java.com/data/.\n\nFor inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A.", + "json": "sun-bcl-sdk-6.0.json", + "yaml": "sun-bcl-sdk-6.0.yml", + "html": "sun-bcl-sdk-6.0.html", + "license": "sun-bcl-sdk-6.0.LICENSE" + }, + { + "license_key": "sun-bcl-web-start", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-web-start", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "JAVATM WEB START VERSION 1.2.x\nSun Microsystems, Inc.\nBinary Code License Agreement\n\n1. LICENSE TO USE. Sun grants you a non-exclusive and non-transferable license for the internal use only of the accompanying software and documentation and any error corrections provided by Sun (collectively \"Software\"), by the number of users and the class of computer hardware for which the corresponding fee has been paid.\n\n2. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Except as specifically authorized in any Supplemental License Terms, you may not make copies of Software, other than a single copy of Software for archival purposes. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that Software is not designed, licensed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement.\n\n3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun';s option to replace Software media or refund the fee paid for Software.\n\n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose.\n\n6. Termination. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Upon Termination, you must destroy all copies of Software.\n\n7. Export Regulations. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you.\n\n8. U.S. Government Restricted Rights. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n9. Governing Law. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply.\n\n10. Severability. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n11. Integration. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party.\n\nJAVATM WEB START VERSION 1.2.x \nSUPPLEMENTAL LICENSE TERMS\n\nThese supplemental license terms (\"Supplemental Terms\") add to or modify the terms of the Binary Code License Agreement (collectively, the \"Agreement\"). Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Agreement.These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Agreement, or in any license contained within the Software.\n\n1. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement, including, but not limited to Section 3 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license to reproduce internally and use internally the binary form of the Software complete and unmodified for the sole purpose of designing, developing, testing, and running your Java applets and applications intended to run on the Java platform (\"Programs\").\n\n2. License to Distribute Software. Subject to the terms and conditions of this Agreement, including, but not limited to Section 3 (Java Technology Restrictions) of these SupplementalTerms, Sun grants you a non-exclusive, non-transferable, limited license to reproduce and distribute the Software in binary code form only, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Java applets or applications (\"Programs\"), (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software.\n\n3. Java Technology Restrictions. You may not modify the Java Platform Interface (\"JPI\", identified as classes contained within the \"java\" package or any subpackages of the \"java\" package), by creating additional classes within the JPI or otherwise causing the addition to or modification of the classes in the JPI. In the event that you create an additional class and associated API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, you must promptly publish broadly an accurate specification for such API for free use by all developers. You may not create, or authorize your licensees to create, additional classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"sun\" or similar convention as specified by Sun in any naming convention designation.\n\n4. Notice of Contents. Software may contain a Java Runtime Environment (JRE).\n\n5. Notice of Automatic Software Updates from Sun. You acknowledge that the Software may automatically download, install, and execute applets, applications, software extensions, and updated versions of the Software from Sun (\"Software Updates\"), which may require you to accept updated terms and conditions for installation. If additional terms and conditions are not presented on installation, the Software Updates will be considered part of the Software and subject to the terms and conditions of the Agreement.\n\n6. Notice of Automatic Downloads. You acknowledge that, by your use of the Software and/or by requesting services that require use of the Software, the Software may automatically download, install, and execute software applications from sources other than Sun (\"Other Software\"). Sun makes no representations of a relationship of any kind to licensors of Other Software. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE OTHER SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Limited Warranty. Any implied warranties on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state.\n\n8. Limitation of Liability. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms of Section 5, Limitation of Liability, above may not be applicable to you.\n\n9. Trademarks and Logos. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, STAROFFICE, STARPORTAL and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, STAROFFICE, STARPORTAL and iPLANET-related trademarks, service marks, logos and other brand designations (\"Sun Marks\"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit.\n\n10. Source Code. Software may contain source code that is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement.\n\n11. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right.", + "json": "sun-bcl-web-start.json", + "yaml": "sun-bcl-web-start.yml", + "html": "sun-bcl-web-start.html", + "license": "sun-bcl-web-start.LICENSE" + }, + { + "license_key": "sun-bsd-extra", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-sun-bsd-extra", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun grants you (\"Licensee\") a non-exclusive, royalty free, license to use,\nmodify and redistribute this software in source and binary code form, provided\nthat\n\ni) this copyright notice and license appear on all copies of the software; and \n\nii) Licensee does not utilize the software in a manner which is disparaging to\nSun.\n\nThis software is provided \"AS IS,\" without a warranty of any kind. ALL EXPRESS\nOR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED\nWARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-\nINFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR\nANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING\nTHE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE\nFOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL,\nCONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF\nTHE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,\nEVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nThis software is not designed or intended for use in on-line control of\naircraft, air traffic, aircraft navigation or aircraft communications; or in the\ndesign, construction, operation or maintenance of any nuclear facility. Licensee\nrepresents and warrants that it will not use or redistribute the Software for\nsuch purposes.", + "json": "sun-bsd-extra.json", + "yaml": "sun-bsd-extra.yml", + "html": "sun-bsd-extra.html", + "license": "sun-bsd-extra.LICENSE" + }, + { + "license_key": "sun-bsd-no-nuclear", + "category": "Free Restricted", + "spdx_license_key": "BSD-3-Clause-No-Nuclear-License", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\nRedistribution of source code must retain the above copyright notice,\nthis list of conditions and the following disclaimer.\n\nRedistribution in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n\nNeither the name of Sun Microsystems, Inc. nor the names of contributors\nmay be used to endorse or promote products derived from this software\nwithout specific prior written permission.\n\nThis software is provided \"AS IS,\" without a warranty of any kind. ALL\nEXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING\nANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\nPURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MICROSYSTEMS, INC.\n(\"SUN\") AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED\nBY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS\nSOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE\nLIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT,\nSPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED\nAND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR\nINABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nYou acknowledge that this software is not designed, licensed or intended\nfor use in the design, construction, operation or maintenance of any\nnuclear facility.", + "json": "sun-bsd-no-nuclear.json", + "yaml": "sun-bsd-no-nuclear.yml", + "html": "sun-bsd-no-nuclear.html", + "license": "sun-bsd-no-nuclear.LICENSE" + }, + { + "license_key": "sun-communications-api", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-communications-api", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun Communications API\ncomm.jar Java(TM) Communications API 2.0 \nCopyright Sun Microsystems, Inc. \n\nSun Microsystems, Inc. Binary Code License Agreement\n\n1. LICENSE TO USE. Sun grants you a non-exclusive and non-transferable license for the internal use only of the accompanying software and documentation and any error corrections provided by Sun (collectively \"Software\"), by the number of users and the class of computer hardware for which the corresponding fee has been paid.\n\n2. RESTRICTIONS Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Except as specifically authorized in any Supplemental License Terms, you may not make copies of Software, other than a single copy of Software for archival purposes. Unless enforcement is prohibited by applicable law, you may not modify, decompile, reverse engineer Software. Software is not designed or licensed for use in on-line control of aircraft, air traffic, aircraft navigation or aircraft communications; or in the design, construction, operation or maintenance of any nuclear facility. You warrant that you will not use Software for these purposes. You may not publish or provide the results of any benchmark or comparison tests run on Software to any third party without the prior written consent of Sun. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement.\n\n3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun';s option to replace Software media or refund the fee paid for Software.\n\n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose.\n\n6. Termination. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Upon Termination, you must destroy all copies of Software.\n\n7. Export Regulations. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you.\n\n8. U.S. Government Restricted Rights. Use, duplication, or disclosure by the U.S. Government is subject to restrictions set forth in this Agreement and as provided in DFARS 227.7202-1 (a) and 227.7202-3(a) (1995), DFARS 252.227-7013 (c)(1)(ii)(Oct 1988), FAR 12.212 (a) (1995), FAR 52.227-19 (June 1987), or FAR 52.227-14(ALT III) (June 1987), as applicable.\n\n9. Governing Law. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply.\n\n10. Severability. If any provision of this Agreement is held to be unenforceable, This Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n11. Integration. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party.\n\nFor inquiries please contact: Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California 94303\n\nJAVATM COMMUNICATIONS API \nSUPPLEMENTAL LICENSE TERMS\n\nThese supplemental terms (\"Supplement\") add to the terms of the Binary Code License Agreement (\"Agreement\"). Capitalized terms not defined herein shall have the same meanings ascribed to them in the Agreement. The Supplement terms shall supersede any inconsistent or conflicting terms in the Agreement.\n\n1. License to Distribute. You are granted a royalty-free right to reproduce and distribute the Software provided that you: (i)distribute the Software complete and unmodified, only as part of, and for the sole purpose of running, your Java applet or application (\"Program\") into which the Software is incorporated; (ii) do not distribute additional software intended to replace any component(s) of the Software; (iii) do not remove or alter any proprietary legends or notices contained in the Software; (iv) only distribute the Program subject to a license agreement that protects Sun\u2019s interests consistent with the terms contained herein; (v) may not create, or authorize your licensees to create additional classes, interfaces, or subpackages that are contained in the \"java\", \"javax\" or \"sun\" packages or similar as specified by Sun in any class file naming convention; and (vi) agree to indemnify, hold harmless, and defend Sun and its licensors from and against any claims or lawsuits, including attorneys fees, that arise or result from the use or distribution of the Program.\n\n2. Trademarks and Logos. This Agreement does not authorize Licensee to use any Sun name, trademark or logo. Licensee acknowledges as between it and Sun that Sun owns the Java trademark and all Java-related trademarks, logos and icons including the Coffee Cup and Duke (\";Java Marks\") and agrees to comply with the Java Trademark Guidelines at http://java.sun.com/trademarks.html\n\n3. High Risk Activities. Notwithstanding Section 2, with respect to high risk activities, the following language shall apply: the Software is not designed or intended for use in on-line control of aircraft, air traffic, aircraft navigation or aircraft communications; or in the design, construction, operation or maintenance of any nuclear facility. Sun disclaims any express or implied warranty of fitness for such uses.", + "json": "sun-communications-api.json", + "yaml": "sun-communications-api.yml", + "html": "sun-communications-api.html", + "license": "sun-communications-api.LICENSE" + }, + { + "license_key": "sun-ejb-spec-2.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-ejb-spec-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Enterprise JavaBeansTM Specification (\"Specification\") \nVersion: 2.1 \nStatus: FCS \nRelease: November 24, 2003\n\nCopyright 2003 Sun Microsystems, Inc.\n4150 Network Circle, Santa Clara, California 95054, U.S.A \nAll rights reserved.\n\nNOTICE; LIMITED LICENSE GRANTS\n\nSun Microsystems, Inc. (\"Sun\") hereby grants you a fully-paid, non-exclusive, non-transferable, worldwide, limited license (without the right to sublicense), under the Sun's applicable intellectual property rights to view, download, use and reproduce the Specification only for the purpose of internal evaluation, which shall be understood to include developing applications intended to run on an implementation of the Specification provided that such applications do not themselves implement any portion(s) of the Specification.\n\nSun also grants you a perpetual, non-exclusive, worldwide, fully paid-up, royalty free, limited license (without the right to sublicense) under any applicable copyrights or patent rights it may have in the Specification to create and/or distribute an Independent Implementation of the Specification that: (i) fully implements the Spec(s) including all its required interfaces and functionality; (ii) does not modify, subset, superset or otherwise extend the Licensor Name Space, or include any public or protected packages, classes, Java interfaces, fields or methods within the Licensor Name Space other than those required/authorized by the Specification or Specifications being implemented; and (iii) passes the TCK (including satisfying the requirements of the applicable TCK Users Guide) for such Specification. The foregoing license is expressly conditioned on your not acting outside its scope. No license is granted hereunder for any other purpose.\n\nYou need not include limitations (i)-(iii) from the previous paragraph or any other particular \"pass through\" requirements in any license You grant concerning the use of your Independent Implementation or products derived from it. However, except with respect to implementations of the Specification (and products derived from them) that satisfy limitations (i)-(iii) from the previous paragraph, You may neither: (a) grant or otherwise pass through to your licensees any licenses under Sun's applicable intellectual property rights; nor (b) authorize your licensees to make any claims concerning their implementation's compliance with the Spec in question.\n\nFor the purposes of this Agreement: \"Independent Implementation\" shall mean an implementation of the Specification that neither derives from any of Sun's source code or binary code materials nor, except with an appropriate and separate license from Sun, includes any of Sun's source code or binary code materials; and \"Licensor Name Space\" shall mean the public class or interface declarations whose names begin with \"java\", \"javax\", \"com.sun\" or their equivalents in any subsequent naming convention adopted by Sun through the Java Community Process, or any recognized successors or replacements thereof.\n\nThis Agreement will terminate immediately without notice from Sun if you fail to comply with any material provision of or act outside the scope of the licenses granted above.\n\nTRADEMARKS\n\nNo right, title, or interest in or to any trademarks, service marks, or trade names of Sun or Sun's licensors is granted hereunder. Sun, Sun Microsystems, the Sun logo, Java, the Java Coffee Cup logo, EJB, Enterprise JavaBeans, and JavaBeans are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries.\n\nDISCLAIMER OF WARRANTIES\n\nTHE SPECIFICATION IS PROVIDED \"AS IS\". SUN MAKES NO REPRESENTATIONS OR WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, THAT THE CONTENTS OF THE SPECIFICATION ARE SUITABLE FOR ANY PURPOSE OR THAT ANY PRACTICE OR IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADE SECRETS OR OTHER RIGHTS. This document does not represent any commitment to release or implement any portion of the Specification in any product.\n\nTHE SPECIFICATION COULD INCLUDE TECHNICAL INACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION THEREIN; THESE CHANGES WILL BE INCORPORATED INTO NEW VERSIONS OF THE SPECIFICATION, IF ANY. SUN MAY MAKE IMPROVEMENTS AND/OR CHANGES TO THE PRODUCT(S) AND/OR THE PROGRAM(S) DESCRIBED IN THE SPECIFICATION AT ANY TIME. Any use of such changes in the Specification will be governed by the then-current license for the applicable version of the Specification.\n\nLIMITATION OF LIABILITY\n\nTO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT LIMITATION, LOST REVENUE, PROFITS OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO ANY FURNISHING, PRACTICING, MODIFYING OR ANY USE OF THE SPECIFICATION, EVEN IF SUN AND/OR ITS LICENSORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nYou will indemnify, hold harmless, and defend Sun and its licensors from any claims arising or resulting from: (i) your use of the Specification; (ii) the use or distribution of your Java application, applet and/or clean room implementation; and/or (iii) any claims that later versions or releases of any Specification furnished to you are incompatible with the Specification provided to you under this license.\n\nRESTRICTED RIGHTS LEGEND\n\nU.S. Government: If this Specification is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in the Specification and accompanying documentation shall be only as set forth in this license; this is in accordance with 48 C.F.R. 227.7201 through 227.7202-4 (for Department of Defense (DoD) acquisitions) and with 48 C.F.R. 2.101 and 12.212 (for non-DoD acquisitions).\n\nREPORT\n\nYou may wish to report any ambiguities, inconsistencies or inaccuracies you may find in connection with your use of the Specification (\"Feedback\"). To the extent that you provide Sun with any Feedback, you hereby: (i) agree that such Feedback is provided on a non-proprietary and non-confidential basis, and (ii) grant Sun a perpetual, non-exclusive, worldwide, fully paid- up, irrevocable license, with the right to sublicense through multiple levels of sublicensees, to incorporate, disclose, and use without limitation the Feedback for any purpose related to the Specification and future versions, implementations, and test suites thereof.\n\n(LFI#135809/Form ID#011801)", + "json": "sun-ejb-spec-2.1.json", + "yaml": "sun-ejb-spec-2.1.yml", + "html": "sun-ejb-spec-2.1.html", + "license": "sun-ejb-spec-2.1.LICENSE" + }, + { + "license_key": "sun-ejb-spec-3.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-ejb-spec-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Specification: JSR-000220 Enterprise JavaBeans v.3.0 (\"Specification\"\nVersion: 3.0 \nStatus: Final Release \nRelease: 8 May 2006\n\nCopyright 2006 SUN MICROSYSTEMS, INC. \n4150 Network Circle, Santa Clara, California 95054, U.S.A \nAll rights reserved. \n\nLIMITED LICENSE GRANTS\n\n1. License for Evaluation Purposes. Sun hereby grants you a fully-\npaid, non-exclusive, non-transferable, worldwide, limited license\n(without the right to sublicense), under Sun\u2019s applicable intellectual\nproperty rights to view, download, use and reproduce the Specification\nonly for the purpose of internal evaluation. This includes (i)\ndeveloping applications intended to run on an implementation of the\nSpecification, provided that such applications do not themselves\nimplement any portion(s) of the Specification, and (ii) discussing the\nSpecification with any third party; and (iii) excerpting brief portions\nof the Specification in oral or written communications which discuss the\nSpecification provided that such excerpts do not in the aggregate\nconstitute a significant portion of the Specification.\n\n2. License for the Distribution of Compliant Implementations. Sun also\ngrants you a perpetual, nonexclusive, non-transferable, worldwide, fully\npaid-up, royalty free, limited license (without the right to sublicense)\nunder any applicable copyrights or, subject to the provisions of\nsubsection 4 below, patent rights it may have covering the Specification\nto create and/or distribute an Independent Implementation of the\nSpecification that: (a) fully implements the Specification including all\nits required interfaces and functionality; (b) does not modify, subset,\nsuperset or otherwise extend the Licensor Name Space, or include any\npublic or protected packages, classes, Java interfaces, fields or\nmethods within the Licensor Name Space other than those\nrequired/authorized by the Specification or Specifications being\nimplemented; and (c) passes the Technology Compatibility Kit (including\nsatisfying the requirements of the applicable TCK Users Guide) for such\nSpecification (\"Compliant Implementation\"). In addition, the foregoing\nlicense is expressly conditioned on your not acting outside its scope.\nNo license is granted hereunder for any other purpose (including, for\nexample, modifying the Specification, other than to the extent of your\nfair use rights, or distributing the Specification to third parties).\nAlso, no right, title, or interest in or to any trademarks, service\nmarks, or trade names of Sun or Sun\u2019s licensors is granted hereunder.\n\nJava, and Java-related logos, marks and names are trademarks or\nregistered trademarks of Sun Microsystems, Inc. in the U.S. and other\ncountries.\n\n3. Pass-through Conditions. You need not include limitations (a)-(c)\nfrom the previous paragraph or any other particular \"pass through\"\nrequirements in any license You grant concerning the use of your\nIndependent Implementation or products derived from it. However, except\nwith respect to Independent Implementations and products derived from\nthem) that satisfy limitations (a)-(c) from the previous paragraph, You\nmay neither: (a) grant or otherwise pass through to your licensees any\nlicenses under Sun\u2019s applicable intellectual property rights; nor (b)\nauthorize your licensees to make any claims concerning their\nimplementation\u2019s compliance with the Specification in question.\n\n4. Reciprocity Concerning Patent Licenses.\n\na. With respect to any patent claims covered by the license granted\nunder subparagraph 2 above that would be infringed by all technically\nfeasible implementations of the Specification, such license is\nconditioned upon your offering on fair, reasonable and non-\ndiscriminatory terms, to any party seeking it from You, a perpetual,\nnon-exclusive, non-transferable, worldwide license under Your patent\nrights which are or would be infringed by all technically feasible\nimplementations of the Specification to develop, distribute and use a\nCompliant Implementation.\n\nb With respect to any patent claims owned by Sun and covered by the\nlicense granted under subparagraph 2, whether or not their infringement\ncan be avoided in a technically feasible manner when implementing the\nSpecification, such license shall terminate with respect to such claims\nif You initiate a claim against Sun that it has, in the course of\nperforming its responsibilities as the Specification Lead, induced any\nother entity to infringe Your patent rights.\n\nc Also with respect to any patent claims owned by Sun and covered by the\nlicense granted under subparagraph 2 above, where the infringement of\nsuch claims can be avoided in a technically feasible manner when\nimplementing the Specification such license, with respect to such\nclaims, shall terminate if You initiate a claim against Sun that its\nmaking, having made, using, offering to sell, selling or importing a\nCompliant Implementation infringes Your patent rights.\n\n5. Definitions. For the purposes of this Agreement: \"Independent\nImplementation\" shall mean an implementation of the Specification that\nneither derives from any of Sun\u2019s source code or binary code materials\nnor, except with an appropriate and separate license from Sun, includes\nany of Sun\u2019s source code or binary code materials; \"Licensor Name Space\"\nshall mean the public class or interface declarations whose names begin\nwith \"java\", \"javax\", \"com.sun\" or their equivalents in any subsequent\nnaming convention adopted by Sun through the Java Community Process, or\nany recognized successors or replacements thereof; and \"Technology\nCompatibility Kit\" or \"TCK\" shall mean the test suite and accompanying\nTCK User\u2019s Guide provided by Sun which corresponds to the Specification\nand that was available either (i) from Sun 120 days before the first\nrelease of Your Independent Implementation that allows its use for\ncommercial purposes, or (ii) more recently than 120 days from such\nrelease but against which You elect to test Your implementation of the\nSpecification.\n\nThis Agreement will terminate immediately without notice from Sun if you\nbreach the Agreement or act outside the scope of the licenses granted\nabove.\n\nDISCLAIMER OF WARRANTIES\n\nTHE SPECIFICATION IS PROVIDED \"AS IS\". SUN MAKES NO REPRESENTATIONS OR\nWARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO,\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,\nNONINFRINGEMENT (INCLUDING AS A CONSEQUENCE OF ANY PRACTICE OR\nIMPLEMENTATION OF THE SPECIFICATION), OR THAT THE CONTENTS OF THE\nSPECIFICATION ARE SUITABLE FOR ANY PURPOSE. This document does not\nrepresent any commitment to release or implement any portion of the\nSpecification in any product. In addition, the Specification could\ninclude technical inaccuracies or typographical errors.\n\nLIMITATION OF LIABILITY\n\nTO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS\nLICENSORS BE LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT LIMITATION, LOST\nREVENUE, PROFITS OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL,\nINCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE\nTHEORY OF LIABILITY, ARISING OUT OF OR RELATED IN ANY WAY TO YOUR\nHAVING, IMPLEMENTING OR OTHERWISE USING THE SPECIFICATION, EVEN IF SUN\nAND/OR ITS LICENSORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\nYou will indemnify, hold harmless, and defend Sun and its licensors from\nany claims arising or resulting from: (i) your use of the Specification;\n(ii) the use or distribution of your Java application, applet and/or\nimplementation; and/or (iii) any claims that later versions or releases\nof any Specification furnished to you are incompatible with the\nSpecification provided to you under this license.\n\nRESTRICTED RIGHTS LEGEND\n\nU.S. Government: If this Specification is being acquired by or on behalf\nof the U.S. Government or by a U.S. Government prime contractor or\nsubcontractor (at any tier), then the Government\u2019s rights in the\nSoftware and accompanying documentation shall be only as set forth in\nthis license; this is in accordance with 48 C.F.R. 227.7201 through\n227.7202-4 (for Department of Defense (DoD) acquisitions) and with 48\nC.F.R. 2.101 and 12.212 (for non-DoD acquisitions).\n\nREPORT\n\nIf you provide Sun with any comments or suggestions concerning the\nSpecification (\"Feedback\"), you hereby: (i) agree that such Feedback is\nprovided on a non-proprietary and non-confidential basis, and (ii) grant\nSun a perpetual, non-exclusive, worldwide, fully paid-up, irrevocable\nlicense, with the right to sublicense through multiple levels of\nsublicensees, to incorporate, disclose, and use without limitation the\nFeedback for any purpose.\n\nGENERAL TERMS\n\nAny action related to this Agreement will be governed by California law\nand controlling U.S. federal law. The U.N. Convention for the\nInternational Sale of Goods and the choice of law rules of any\njurisdiction will not apply.\n\nThe Specification is subject to U.S. export control laws and may be\nsubject to export or import regulations in other countries. Licensee\nagrees to comply strictly with all such laws and regulations and\nacknowledges that it has the responsibility to obtain such licenses to\nexport, re-export or import as may be required after delivery to\nLicensee.\n\nThis Agreement is the parties\u2019 entire agreement relating to its subject\nmatter. It supersedes all prior or contemporaneous oral or written\ncommunications, proposals, conditions, representations and warranties\nand prevails over any conflicting or additional terms of any quote,\norder, acknowledgment, or other communication between the parties\nrelating to its subject matter during the term of this Agreement. No\nmodification to this Agreement will be binding, unless in writing and\nsigned by an authorized representative of each party.\n\nRev. April, 2006 Sun/Final/Full", + "json": "sun-ejb-spec-3.0.json", + "yaml": "sun-ejb-spec-3.0.yml", + "html": "sun-ejb-spec-3.0.html", + "license": "sun-ejb-spec-3.0.LICENSE" + }, + { + "license_key": "sun-entitlement-03-15", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-entitlement-03-15", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License Agreement for {ProductName}\nSun Microsystems, Inc. (\"Sun\") ENTITLEMENT for SOFTWARE\n\nLicensee/Company: Entity receiving Software. \nEffective Date: Date of delivery of the Software to You. \nSoftware: {ProductName}\nLicense Term: Perpetual (subject to termination under the SLA) \nLicensed Unit: Software Copy \nLicensed unit Count: Unlimited \n\nPermitted Uses:\n\n1. You may reproduce and use the Software for Your own Individual, Commercial, or Research and Instructional Use for the purposes of designing, developing, testing, and running Your applets and application (\"Programs\").\n\n2. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software's documentation, You may reproduce and distribute portions of Software identified as a redistributable in the documentation (\"Redistributable\"), provided that:\n\n(a) You distribute Redistributable complete and unmodified and only bundled as part of Your Programs,\n\n(b) Your Programs add significant and primary functionality to the Redistributable, (c) You distribute Redistributable for the sole purpose of running Your Programs,\n\n(d) You do not distribute additional software intended to replace any component(s) of the Redistributable,\n\n(e) You do not remove or alter any proprietary legends or notices contained in or on the Redistributable.\n\n(f) You only distribute the Redistributable subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and\n\n(g) You agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Redistributable.\n\n3. Java Technology Restrictions. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"sun\" or similar convention as specified by Sun in any naming convention designation.\n\nSun Microsystems, Inc. (\"Sun\") SOFTWARE LICENSE AGREEMENT \n\n1. Definitions.\n\n(a) \"Entitlement\" means the collective set of applicable documents authorized by Sun evidencing your obligation to pay associated fees (if any) for the license, associated Services, and the authorized scope of use of Software under this Agreement.\n\n(b) \"Licensed Unit\" means the unit of measure by which your use of Software and/or Service is licensed, as described in your Entitlement.\n\n(c) \"Permitted Use\" means the licensed Software use(s) authorized in this Agreement as specified in your Entitlement. The Permitted Use for any bundled Sun software not specified in your Entitlement will be evaluation use as provided in Section 3.\n\n(d) \"Service\" means the service(s) that Sun or its delegate will provide, if any, as selected in your Entitlement and as further described in the applicable service listings at www.sun.com/service/servicelist.\n\n(e) \"Software\" means the Sun software described in your Entitlement. Also, certain software may be included for evaluation use under Section 3.\n\n(f) \"You\" and \"Your\" means the individual or legal entity specified in the Entitlement, or for evaluation purposes, the entity performing the evaluation.\n\n2. License Grant and Entitlement.\n\nSubject to the terms of your Entitlement, Sun grants you a nonexclusive, nontransferable limited license to use Software for its Permitted Use for the license term. Your Entitlement will specify (a) Software licensed, (b) the Permitted Use, (c) the license term, and (d) the Licensed Units.\n\nAdditionally, if your Entitlement includes Services, then it will also specify the (e) Service and (f) service term.\n\nIf your rights to Software or Services are limited in duration and the date such rights begin is other than the purchase date, your Entitlement will provide that beginning date(s).\n\nThe Entitlement may be delivered to you in various ways depending on the manner in which you obtain Software and Services, for example, the Entitlement may be provided in your receipt, invoice or your contract with Sun or authorized Sun reseller. It may also be in electronic format if you download Software.\n\n3. Permitted Use.\n\nAs selected in your Entitlement, one or more of the following Permitted Uses will apply to your use of Software. Unless you have an Entitlement that expressly permits it, you may not use Software for any of the other Permitted Uses. If you don't have an Entitlement, or if your Entitlement doesn't cover additional software delivered to you, then such software is for your Evaluation Use.\n\n(a) Evaluation Use. You may evaluate Software internally for a period of 90 days from your first use.\n\n(b) Research and Instructional Use. You may use Software internally to design, develop and test, and also to provide instruction on such uses.\n\n(c) Individual Use. You may use Software internally for personal, individual use. (d) Commercial Use. You may use Software internally for your own commercial purposes.\n\n(e) Service Provider Use. You may make Software functionality accessible (but not by providing Software itself or through outsourcing services) to your end users in an extranet deployment, but not to your affiliated companies or to government agencies.\n\n4. Licensed Units.\n\nYour Permitted Use is limited to the number of Licensed Units stated in your Entitlement. If you require additional Licensed Units, you will need additional Entitlement(s).\n\n5. Restrictions.\n\n(a) The copies of Software provided to you under this Agreement are licensed, not sold, to you by Sun. Sun reserves all rights not expressly granted. (b) You may make a single archival copy of Software, but otherwise may not copy, modify, or distribute Software. However if the Sun documentation accompanying Software lists specific portions of Software, such as header files, class libraries, reference source code, and/or redistributable files, that may be handled differently, you may do so only as provided in the Sun documentation. (c) You may not rent, lease, lend or encumber Software. (d) Unless enforcement is prohibited by applicable law, you may not decompile, or reverse engineer Software. (e) The terms and conditions of this Agreement will apply to any Software updates, provided to you at Sun's discretion, that replace and/or supplement the original Software, unless such update contains a separate license. (f) You may not publish or provide the results of any benchmark or comparison tests run on Software to any third party without the prior written consent of Sun. (g) Software is confidential and copyrighted. (h) Unless otherwise specified, if Software is delivered with embedded or bundled software that enables functionality of Software, you may not use such software on a stand-alone basis or use any portion of such software to interoperate with any program(s) other than Software. (i) Software may contain programs that perform automated collection of system data and/or automated software updating services. System data collected through such programs may be used by Sun, its subcontractors, and its service delivery partners for the purpose of providing you with remote system services and/or improving Sun's software and systems. (j) Software is not designed, licensed or intended for use in the design, construction, operation or maintenance of any nuclear facility and Sun and its licensors disclaim any express or implied warranty of fitness for such uses. (k) No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement.\n\n6. Term and Termination.\n\nThe license and service term are set forth in your Entitlement(s). Your rights under this Agreement will terminate immediately without notice from Sun if you materially breach it or take any action in derogation of Sun's and/or its licensors' rights to Software. Sun may terminate this Agreement should any Software become, or in Sun's reasonable opinion likely to become, the subject of a claim of intellectual property infringement or trade secret misappropriation. Upon termination, you will cease use of, and destroy, Software and confirm compliance in writing to Sun. Sections 1, 5, 6, 7, and 9-15 will survive termination of the Agreement.\n\n7. Java Compatibility and Open Source.\n\nSoftware may contain Java technology. You may not create additional classes to, or modifications of, the Java technology, except under compatibility requirements available under a separate agreement available at www.java.net.\n\nSun supports and benefits from the global community of open source developers, and thanks the community for its important contributions and open standards-based technology, which Sun has adopted into many of its products.\n\nPlease note that portions of Software may be provided with notices and open source licenses from such communities and third parties that govern the use of those portions, and any licenses granted hereunder do not alter any rights and obligations you may have under such open source licenses, however, the disclaimer of warranty and limitation of liability provisions in this Agreement will apply to all Software in this distribution.\n\n8. Limited Warranty.\n\nSun warrants to you that for a period of 90 days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Some states do not allow limitations on certain implied warranties, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state.\n\n9. Disclaimer of Warranty.\n\nUNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n10. Limitation of Liability.\n\nTO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you.\n\n11. Export Regulations.\n\nAll Software, documents, technical data, and any other materials delivered under this Agreement are subject to U.S. export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with these laws and regulations and acknowledge that you have the responsibility to obtain any licenses to export, re-export, or import as may be required after delivery to you.\n\n12. U.S. Government Restricted Rights.\n\nIf Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n13. Governing Law.\n\nAny action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply.\n\n14. Severability.\n\nIf any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n15. Integration.\n\nThis Agreement, including any terms contained in your Entitlement, is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed byan authorized representative of each party.\n\nPlease contact Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054 if you have questions.", + "json": "sun-entitlement-03-15.json", + "yaml": "sun-entitlement-03-15.yml", + "html": "sun-entitlement-03-15.html", + "license": "sun-entitlement-03-15.LICENSE" + }, + { + "license_key": "sun-entitlement-jaf", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-entitlement-jaf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "A. Sun Microsystems, Inc. (\"Sun\") ENTITLEMENT for SOFTWARE\n\nLicensee/Company: Entity receiving Software.\nEffective Date: Date of delivery of the Software to You.\n\nSoftware: {Software Product Name}\nLicense Term: Perpetual (subject to termination under the SLA).\nLicensed Unit: Software Copy.\nLicensed unit Count: Unlimited.\n\nPermitted Uses:\n\n1. You may reproduce and use the Software for Individual, Commercial,\nor Research and Instructional Use for the purposes of designing,\ndeveloping, testing, and running Your applets and\napplication(\"Programs\").\n\n2. Subject to the terms and conditions of this Agreement and\nrestrictions and exceptions set forth in the Software's documentation,\nYou may reproduce and distribute portions of Software identified as a\nredistributable in the documentation (\"Redistributable\"), provided\nthat:\n\n(a) you distribute Redistributable complete and unmodified and only\nbundled as part of Your Programs,\n\n(b) your Programs add significant and primary functionality to the\nRedistributable,\n\n(c) you distribute Redistributable for the sole purpose of running your\nPrograms,\n\n(d) you do not distribute additional software intended to replace any\ncomponent(s) of the Redistributable,\n\n(e) you do not remove or alter any proprietary legends or notices\ncontained in or on the Redistributable.\n\n(f) you only distribute the Redistributable subject to a license\nagreement that protects Sun's interests consistent with the terms\ncontained in this Agreement, and\n\n(g) you agree to defend and indemnify Sun and its licensors from and\nagainst any damages, costs, liabilities, settlement amounts and/or\nexpenses (including attorneys' fees) incurred in connection with any\nclaim, lawsuit or action by any third party that arises or results from\nthe use or distribution of any and all Programs and/or\nRedistributable.\n\n3. Java Technology Restrictions. You may not create, modify, or change\nthe behavior of, or authorize your licensees to create, modify, or\nchange the behavior of, classes, interfaces, or subpackages that are in\nany way identified as \"java\", \"javax\", \"sun\" or similar convention as\nspecified by Sun in any naming convention designation.\n\nB. Sun Microsystems, Inc. (\"Sun\")\nSOFTWARE LICENSE AGREEMENT\n\nREAD THE TERMS OF THIS AGREEMENT (\"AGREEMENT\") CAREFULLY BEFORE OPENING\nSOFTWARE MEDIA PACKAGE. BY OPENING SOFTWARE MEDIA PACKAGE, YOU AGREE TO\nTHE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING SOFTWARE\nELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING\nTHE \"ACCEPT\" BUTTON AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE\nTO ALL OF THE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE\nOF PURCHASE FOR A REFUND OR, IF SOFTWARE IS ACCESSED ELECTRONICALLY,\nSELECT THE \"DECLINE\" (OR \"EXIT\") BUTTON AT THE END OF THIS AGREEMENT.\nIF YOU HAVE SEPARATELY AGREED TO LICENSE TERMS (\"MASTER TERMS\") FOR\nYOUR LICENSE TO THIS SOFTWARE, THEN SECTIONS 1-5 OF THIS AGREEMENT\n(\"SUPPLEMENTAL LICENSE TERMS\") SHALL SUPPLEMENT AND SUPERSEDE THE\nMASTER TERMS IN RELATION TO THIS SOFTWARE.\n\n1. Definitions.\n\n(a) \"Entitlement\" means the collective set of applicable documents\nauthorized by Sun evidencing your obligation to pay associated fees (if\nany) for the license, associated Services, and the authorized scope of\nuse of Software under this Agreement.\n\n(b) \"Licensed Unit\" means the unit of measure by which your use of\nSoftware and/or Service is licensed, as described in your Entitlement.\n\n(c) \"Permitted Use\" means the licensed Software use(s) authorized\nin this Agreement as specified in your Entitlement. The Permitted Use\nfor any bundled Sun software not specified in your Entitlement will be\nevaluation use as provided in Section 3.\n\n(d) \"Service\" means the service(s) that Sun or its delegate will\nprovide, if any, as selected in your Entitlement and as further\ndescribed in the applicable service listings at\nwww.sun.com/service/servicelist.\n\n(e) \"Software\" means the Sun software described in your\nEntitlement. Also, certain software may be included for evaluation use\nunder Section 3.\n\n(f) \"You\" and \"Your\" means the individual or legal entity specified\nin the Entitlement, or for evaluation purposes, the entity performing\nthe evaluation.\n\n2. License Grant and Entitlement.\n\nSubject to the terms of your Entitlement, Sun grants you a\nnonexclusive, nontransferable limited license to use Software for its\nPermitted Use for the license term. Your Entitlement will specify (a)\nSoftware licensed, (b) the Permitted Use, (c) the license term, and (d)\nthe Licensed Units.\n\nAdditionally, if your Entitlement includes Services, then it will also\nspecify the (e) Service and (f) service term.\n\nIf your rights to Software or Services are limited in duration and the\ndate such rights begin is other than the purchase date, your\nEntitlement will provide that beginning date(s).\n\nThe Entitlement may be delivered to you in various ways depending on\nthe manner in which you obtain Software and Services, for example, the\nEntitlement may be provided in your receipt, invoice or your contract\nwith Sun or authorized Sun reseller. It may also be in electronic\nformat if you download Software.\n\n3. Permitted Use.\n\nAs selected in your Entitlement, one or more of the following Permitted\nUses will apply to your use of Software. Unless you have an Entitlement\nthat expressly permits it, you may not use Software for any of the\nother Permitted Uses. If you don't have an Entitlement, or if your\nEntitlement doesn't cover additional software delivered to you, then\nsuch software is for your Evaluation Use.\n\n(a) Evaluation Use. You may evaluate Software internally for a period\nof 90 days from your first use.\n\n(b) Research and Instructional Use. You may use Software internally to\ndesign, develop and test, and also to provide instruction on such\nuses.\n\n(c) Individual Use. You may use Software internally for personal,\nindividual use.\n\n(d) Commercial Use. You may use Software internally for your own\ncommercial purposes.\n\n(e) Service Provider Use. You may make Software functionality\naccessible (but not by providing Software itself or through outsourcing\nservices) to your end users in an extranet deployment, but not to your\naffiliated companies or to government agencies.\n\n4. Licensed Units.\n\nYour Permitted Use is limited to the number of Licensed Units stated in\nyour Entitlement. If you require additional Licensed Units, you will\nneed additional Entitlement(s).\n\n5.\tRestrictions.\n\n(a) The copies of Software provided to you under this Agreement are\nlicensed, not sold, to you by Sun. Sun reserves all rights not\nexpressly granted. (b) You may make a single archival copy of Software,\nbut otherwise may not copy, modify, or distribute Software. However if\nthe Sun documentation accompanying Software lists specific portions of\nSoftware, such as header files, class libraries, reference source code,\nand/or redistributable files, that may be handled differently, you may\ndo so only as provided in the Sun documentation. (c) You may not rent,\nlease, lend or encumber Software. (d) Unless enforcement is prohibited\nby applicable law, you may not decompile, or reverse engineer\nSoftware. (e) The terms and conditions of this Agreement will apply to\nany Software updates, provided to you at Sun's discretion, that replace\nand/or supplement the original Software, unless such update contains a\nseparate license. (f) You may not publish or provide the results of any\nbenchmark or comparison tests run on Software to any third party\nwithout the prior written consent of Sun. (g) Software is confidential\nand copyrighted. (h) Unless otherwise specified, if Software is\ndelivered with embedded or bundled software that enables functionality\nof Software, you may not use such software on a stand-alone basis or\nuse any portion of such software to interoperate with any program(s)\nother than Software. (i) Software may contain programs that perform\nautomated collection of system data and/or automated software updating\nservices. System data collected through such programs may be used by\nSun, its subcontractors, and its service delivery partners for the\npurpose of providing you with remote system services and/or improving\nSun's software and systems. (j) Software is not designed, licensed or\nintended for use in the design, construction, operation or maintenance\nof any nuclear facility and Sun and its licensors disclaim any express\nor implied warranty of fitness for such uses. (k) No right, title or\ninterest in or to any trademark, service mark, logo or trade name of\nSun or its licensors is granted under this Agreement.\n\n6.\tTerm and Termination. \n\nThe license and service term are set forth in your Entitlement(s). Your\nrights under this Agreement will terminate immediately without notice\nfrom Sun if you materially breach it or take any action in derogation\nof Sun's and/or its licensors' rights to Software. Sun may terminate\nthis Agreement should any Software become, or in Sun's reasonable\nopinion likely to become, the subject of a claim of intellectual\nproperty infringement or trade secret misappropriation. Upon\ntermination, you will cease use of, and destroy, Software and confirm\ncompliance in writing to Sun. Sections 1, 5, 6, 7, and 9-15 will\nsurvive termination of the Agreement.\n\n7. Java Compatibility and Open Source.\n\nSoftware may contain Java technology. You may not create additional\nclasses to, or modifications of, the Java technology, except under\ncompatibility requirements available under a separate agreement\navailable at www.java.net.\n\nSun supports and benefits from the global community of open source\ndevelopers, and thanks the community for its important contributions\nand open standards-based technology, which Sun has adopted into many of\nits products.\n\nPlease note that portions of Software may be provided with notices and\nopen source licenses from such communities and third parties that\ngovern the use of those portions, and any licenses granted hereunder do\nnot alter any rights and obligations you may have under such open\nsource licenses, however, the disclaimer of warranty and limitation of\nliability provisions in this Agreement will apply to all Software in\nthis distribution.\n\n8. Limited Warranty.\n\nSun warrants to you that for a period of 90 days from the date of\npurchase, as evidenced by a copy of the receipt, the media on which\nSoftware is furnished (if any) will be free of defects in materials and\nworkmanship under normal use. Except for the foregoing, Software is\nprovided \"AS IS\". Your exclusive remedy and Sun's entire liability\nunder this limited warranty will be at Sun's option to replace Software\nmedia or refund the fee paid for Software. Some states do not allow\nlimitations on certain implied warranties, so the above may not apply\nto you. This limited warranty gives you specific legal rights. You may\nhave others, which vary from state to state.\n\n9. Disclaimer of Warranty.\n\nUNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS,\nREPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT\nARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO\nBE LEGALLY INVALID.\n\n10. Limitation of Liability.\n\nTO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS\nLICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR\nSPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES,\nHOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR\nRELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS\nBEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's\nliability to you, whether in contract, tort (including negligence), or\notherwise, exceed the amount paid by you for Software under this\nAgreement. The foregoing limitations will apply even if the above\nstated warranty fails of its essential purpose. Some states do not\nallow the exclusion of incidental or consequential damages, so some of\nthe terms above may not be applicable to you.\n\n11. Export Regulations.\n\nAll Software, documents, technical data, and any other materials\ndelivered under this Agreement are subject to U.S. export control laws\nand may be subject to export or import regulations in other countries.\nYou agree to comply strictly with these laws and regulations and\nacknowledge that you have the responsibility to obtain any licenses to\nexport, re-export, or import as may be required after delivery to you.\n\n12. U.S. Government Restricted Rights.\n\nIf Software is being acquired by or on behalf of the U.S. Government or\nby a U.S. Government prime contractor or subcontractor (at any tier),\nthen the Government's rights in Software and accompanying documentation\nwill be only as set forth in this Agreement; this is in accordance with\n48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD)\nacquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD\nacquisitions).\n\n13. Governing Law.\n\nAny action related to this Agreement will be governed by California law\nand controlling U.S. federal law. No choice of law rules of any\njurisdiction will apply.\n\n14. Severability.\n\nIf any provision of this Agreement is held to be unenforceable, this\nAgreement will remain in effect with the provision omitted, unless\nomission would frustrate the intent of the parties, in which case this\nAgreement will immediately terminate.\n\n15. Integration.\n\nThis Agreement, including any terms contained in your Entitlement, is\nthe entire agreement between you and Sun relating to its subject\nmatter. It supersedes all prior or contemporaneous oral or written\ncommunications, proposals, representations and warranties and prevails\nover any conflicting or additional terms of any quote, order,\nacknowledgment, or other communication between the parties relating to\nits subject matter during the term of this Agreement. No modification\nof this Agreement will be binding, unless in writing and signed by an\nauthorized representative of each party.\n\nPlease contact Sun Microsystems, Inc. 4150 Network Circle, Santa Clara,\nCalifornia 95054 if you have questions.", + "json": "sun-entitlement-jaf.json", + "yaml": "sun-entitlement-jaf.yml", + "html": "sun-entitlement-jaf.html", + "license": "sun-entitlement-jaf.LICENSE" + }, + { + "license_key": "sun-glassfish", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-glassfish", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun GlassFish License\n\n1. Definitions.\n\n\"Software\" means all the portions of the GlassFish distribution provided by Sun only in binary code form, and including any updates or error corrections or documentation provided by Sun under this Agreement.\n\n2. Permitted Uses.\n\nSubject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software's documentation, Sun grants you a non-exclusive, non-transferable, limited license without fees to\n\n(a) reproduce and use internally the Software for the purposes of developing or running GlassFish or modified versions of GlassFish.\n\n(b) reproduce and distribute the Software (and also portions of Software identified as Redistributable in the documentation accompanying Software), provided that you\n\n (i) distribute the Software or Redistributables bundled as part of, and for the sole purpose of running, GlassFish or modified versions of GlassFish;\n\n (ii) do not remove or alter any proprietary legends or notices contained in or on the Software or Redistributables,\n\n (iii) only distribute the Software or Redistributables subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and\n\n (iv) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs, Software, or Redistributables.\n\n3. Restrictions.\n(a) The copies of Software provided to you under this Agreement is licensed, not sold, to you by Sun. Sun reserves all rights not expressly granted.\n\n(b) You may not modify Software. However if the documentation accompanying Software lists specific portions of Software, such as header files, class libraries, reference source code, and/or redistributable files, that may be handled differently, you may do so only as provided in the documentation.\n\n(c) You may not rent, lease, lend or encumber Software.\n\n(d) you do not remove or alter any proprietary legends or notices contained in the Software,\n\n(e) Unless enforcement is prohibited by applicable law, you may not decompile, or reverse engineer Software.\n\n(f) The terms and conditions of this Agreement will apply to any Software updates, provided to you at Sun's discretion, that replace and/or supplement the original Software, unless such update contains a separate license.\n\n(g) Software is confidential and copyrighted.\n\n(h) Software is not designed, licensed or intended for use in the design, construction, operation or maintenance of any nuclear facility and Sun and its licensors disclaim any express or implied warranty of fitness for such uses.\n\n(i) No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement.\n\n(j) If your Permitted Use in this Agreement permits the distribution Software or portions of the Software, you may only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement.\n\n4. Java Compatibility and Open Source.\n\nSoftware may contain Java technology. You may not create additional classes to, or modifications of, the Java technology, except under compatibility requirements available under a separate agreement available at www.java.net. Sun supports and benefits from the global community of open source developers, and thanks the community for its important contributions and open standards-based technology, which Sun has adopted into many of its products. Please note that portions of Software may be provided with notices and open source licenses from such communities and third parties that govern the use of those portions, and any licenses granted hereunder do not alter any rights and obligations you may have under such open source licenses, however, the disclaimer of warranty and limitation of liability provisions in this Agreement will apply to all Software in this distribution.\n\n5. Term and Termination.\n\nThe Agreement is effective on the Date you receive the Software and remains effective until terminated. Your rights under this Agreement will terminate immediately without notice from Sun if you materially breach it or take any action in derogation of Sun's and/or its licensors' rights to Software. Sun may terminate this Agreement should any Software become, or in Sun's reasonable opinion likely to become, the subject of a claim of intellectual property infringement or trade secret misappropriation. Upon termination, you will cease use of, and destroy, Software and confirm compliance in writing to Sun. Sections 1, 3, 4, 5, and 7-13 will survive termination of the Agreement.\n\n6. Limited Warranty.\n\nSun warrants to you that for a period of 90 days from the date of receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Some states do not allow limitations on certain implied warranties, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state.\n\n7. Disclaimer of Warranty.\n\nUNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n8. Limitation of Liability.\n\nTO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you.\n\n9. Export Regulations.\n\nAll Software, documents, technical data, and any other materials delivered under this Agreement are subject to U.S. export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with these laws and regulations and acknowledge that you have the responsibility to obtain any licenses to export, re-export, or import as may be required after delivery to you.\n\n10. U.S. Government Restricted Rights.\n\nIf Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n11. Governing Law.\n\nAny action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply.\n\n12. Severability.\n\nIf any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\n13. Integration.\n\nThis Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party.", + "json": "sun-glassfish.json", + "yaml": "sun-glassfish.yml", + "html": "sun-glassfish.html", + "license": "sun-glassfish.LICENSE" + }, + { + "license_key": "sun-iiop", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-iiop", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software product (LICENSED PRODUCT), implementing the Object Management Group's \"Internet Inter-ORB Protocol\", is protected by copyright and is distributed under the following license restricting its use. Portions of LICENSED PRODUCT may be protected by one or more U.S. or foreign patents, or pending applications.\n\nLICENSED PRODUCT is made available for your use provided that you include this license and copyright notice on all media and documentation and the software program in which this product is incorporated in whole or part.\n\nYou may copy, modify, distribute, or sublicense the LICENSED PRODUCT without charge as part of a product or software program developed by you, so long as you preserve the functionality of interoperating with the Object Management Group's \"Internet Inter-ORB Protocol\" version one. However, any uses other than the foregoing uses shall require the express written consent of Sun Microsystems, Inc.\n\nThe names of Sun Microsystems, Inc. and any of its subsidiaries or affiliates may not be used in advertising or publicity pertaining to distribution of the LICENSED PRODUCT as permitted herein.\n\nThis license is effective until terminated by Sun for failure to comply with this license. Upon termination, you shall destroy or return all code and documentation for the LICENSED PRODUCT.\n\nLICENSED PRODUCT IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.\n\nLICENSED PRODUCT IS PROVIDED WITH NO SUPPORT AND WITHOUT ANY OBLIGATION ON THE PART OF SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES TO ASSIST IN ITS USE, CORRECTION, MODIFICATION OR ENHANCEMENT.\n\nSUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES SHALL HAVE NO LIABILITY WITH RESPECT TO THE INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY LICENSED PRODUCT OR ANY PART THEREOF.\n\nIN NO EVENT WILL SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES BE LIABLE FOR ANY LOST REVENUE OR PROFITS OR OTHER SPECIAL, INDIRECT AND CONSEQUENTIAL DAMAGES, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nUse, duplication, or disclosure by the government is subject to restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 and FAR 52.227-19.\n\nSunOS, SunSoft, Sun, Solaris, Sun Microsystems and the Sun logo are trademarks or registered trademarks of Sun Microsystems, Inc.", + "json": "sun-iiop.json", + "yaml": "sun-iiop.yml", + "html": "sun-iiop.html", + "license": "sun-iiop.LICENSE" + }, + { + "license_key": "sun-java-transaction-api", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-java-transaction-api", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License Agreement\n\nSUN MICROSYSTEMS, INC. (``SUN'') IS WILLING TO LICENSE ITS Java Transaction API\nSOFTWARE (``SOFTWARE'') TO YOU (\"CUSTOMER\") ONLY UPON THE CONDITION \nTHAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS LICENSE AGREEMENT \n(\"AGREEMENT\"). READ THE TERMS AND CONDITIONS OF THE AGREEMENT \nCAREFULLY BEFORE SELECTING THE \"ACCEPT\" BUTTON AT THE BOTTOM OF THIS\nPAGE. BY SELECTING THE \"ACCEPT\" BUTTON YOU AGREE TO THE TERMS AND \nCONDITIONS OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY \nITS TERMS, SELECT THE \"DO NOT ACCEPT\" BUTTON AT THE BOTTOM OF THIS PAGE\nAND THE INSTALLATION PROCESS WILL NOT CONTINUE.\n\n1. License to Distribute. Customer is granted a royalty-free,\nnon-transferable right to reproduce and use the Software\nfor the purpose of developing applications which run in\nconjunction with the Software. Customer may not modify the Software\n(including any APIs exposed by the Software) in any way.\n\n2. Restrictions. Software is confidential copyrighted information\nof Sun and title to all copies is retained by Sun and/or its\nlicensors. Except to the extent enforcement of this provision is\nprohibited by applicable law, if at all, Customer shall not decompile,\ndisassemble, decrypt, extract, or otherwise reverse engineer Software.\nSoftware is not designed or intended for use in on-line control of\naircraft, air traffic, aircraft navigation or aircraft communications;\nor in the design, construction, operation or maintenance of any nuclear\nfacility. Customer warrants that it will not use or redistribute the\nSoftware for such purposes.\n\n3. Trademarks and Logos. This Agreement does not authorize\nCustomer to use any Sun name, trademark or logo. Customer acknowledges\nthat Sun owns the Java trademark and all Java-related trademarks, logos\nand icons including the Coffee Cup and Duke (``Java Marks'') and agrees\nto: (i) comply with the Java Trademark Guidelines at\nhttp://java.sun.com/trademarks.html; (ii) not do anything harmful to or\ninconsistent with Sun's rights in the Java Marks; and (iii) assist Sun\nin protecting those rights, including assigning to Sun any rights\nacquired by Customer in any Java Mark.\n\n4. Disclaimer of Warranty. Software is provided ``AS IS,'' without a\nwarranty of any kind. ALL EXPRESS OR IMPLIED REPRESENTATIONS AND\nWARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED.\n\n5.Limitation of Liability. IN NO EVENT WILL SUN OR ITS LICENSORS\nBE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL,\nINDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES HOWEVER CAUSED\nAND REGARDLESS OF THE THEORY OF LIABILITY ARISING OUT OF THE\nDOWNLOADING OF, USE OF, OR INABILITY TO USE, SOFTWARE, EVEN IF SUN HAS\nBEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n6. Termination. Customer may terminate this Agreement at any time\nby destroying all copies of Software. This Agreement will terminate \nimmediately without notice from Sun if Customer fails to comply with \nany provision of this Agreement. Upon such termination, Customer must \ndestroy all copies of Software. Sections 4 and 5 above shall survive \ntermination of this Agreement.\n\n7. Export Regulations. Software, including technical data, is\nsubject to U.S. export control laws, including the U.S. Export\nAdministration Act and its associated regulations, and may be subject\nto export or import regulations in other countries. Customer agrees to\ncomply strictly with all such regulations and acknowledges that it has\nthe responsibility to obtain licenses to export, re-export, or import\nSoftware. Software may not be downloaded, or otherwise exported or\nre-exported (i) into, or to a national or resident of, Cuba, Iraq,\nIran, North Korea, Libya, Sudan, Syria or any country to which the U.S.\nhas embargoed goods; or (ii) to anyone on the U.S. Treasury\nDepartment's list of Specially Designated Nations or the U.S. Commerce\nDepartment's Table of Denial Orders.\n\n8. Restricted Rights. Use, duplication or disclosure by the United\nStates government is subject to the restrictions as set forth in the\nRights in Technical Data and Computer Software Clauses in DFARS\n252.227-7013(c) (1) (ii) and FAR 52.227-19(c) (2) as applicable.\n\n9. Governing Law. Any action related to this Agreement will be\ngoverned by California law and controlling U.S. federal law. No choice\nof law rules of any jurisdiction will apply.\n\n10. Severability. If any of the above provisions are held to be in\nviolation of applicable law, void, or unenforceable in any\njurisdiction, then such provisions are herewith waived or amended to\nthe extent necessary for the Agreement to be otherwise enforceable in\nsuch jurisdiction. However, if in Sun's opinion deletion or amendment\nof any provisions of the Agreement by operation of this paragraph\nunreasonably compromises the rights or increase the liabilities of Sun\nor its licensors, Sun reserves the right to terminate the Agreement.", + "json": "sun-java-transaction-api.json", + "yaml": "sun-java-transaction-api.yml", + "html": "sun-java-transaction-api.html", + "license": "sun-java-transaction-api.LICENSE" + }, + { + "license_key": "sun-java-web-services-dev-pack-1.6", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-java-web-services-dev-1.6", + "other_spdx_license_keys": [ + "LicenseRef-scancode-sun-java-web-services-dev-pack-1.6" + ], + "is_exception": false, + "is_deprecated": false, + "text": "JAVA WEB SERVICES DEVELOPER PACK, VERSION 1.6\nSun Microsystems Inc. Software License Agreement\n\nSUN IS WILLING TO LICENSE THE ACCOMPANYING BINARY SOFTWARE IN MACHINE-READABLE FORM, TOGETHER WITH ACCOMPANYING DOCUMENTATION (COLLECTIVELY \"SOFTWARE\") TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS AND CONDITION CONTAINED IN THIS SOFTWARE LICENSE AGREEMENT. READ THE TERMS AND CONDITIONS OF THIS SOFTWARE LICENSE AGREEMENT CAREFULLY BEFORE OPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA PACKAGE, YOU AGREE TO THE TERMS OF THIS SOFTWARE LICENSE AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE \"ACCEPT\" BUTTON AT THE END OF THIS SOFTWARE LICENSE AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED ELECTRONICALLY, SELECT THE \"DECLINE\" BUTTON AT THE END OF THIS SOFTWARE LICENSE AGREEMENT. \n\nLICENSE TO EVALUATE EA SOFTWARE: The Binary Code License Agreement (\"BCL\") and the Evaluation Terms (\"Evaluation Terms\") below shall apply to the portions of the Software identified as Early Access in the Software's Release Notes. The BCL and the Evaluation Terms shall collectively be referred to as the Evaluation Agreement (\"Evaluation Agreement\"). \n\nLICENSE TO USE FCS SOFTWARE: The BCL and the Supplemental Terms (\"Supplemental Terms\") provided following the BCL shall apply to portions of the Software identified as FCS Software in the Software's Release Notes. BCL and the Supplemental Terms shall collectively be referred to as the Agreement (\"Agreement\"). \n\n\nEVALUATION TERMS\n\nThe terms of the Evaluation Agreement shall apply to portions of Software identified as Early Access in the Software's Release Notes (\"Software\"). These Evaluation Terms add to or modify the terms of the BCL. Capitalized terms not defined in these Evaluation Terms shall have the same meanings ascribed to them in the BCL. These Evaluation Terms shall supersede any inconsistent or conflicting terms in the BCL below, or in any license contained within the Software. \n\nI. LICENSE TO EVALUATE. Sun grants to you, a non-exclusive, non-transferable, royalty-free and limited license to use one (1) copy of the Software internally for the purposes of evaluation only for one hundred eighty (180) days after the date you download the Software from Sun (\"Evaluation Period\"). No license is granted to you for any other purpose. You may not sell, rent, loan or otherwise encumber or transfer the Software in whole or in part, to any third party. Licensee shall have no right to use the Software for productive or commercial use. \n\nII. DUTIES. You agree to evaluate and test the Software for use in your software environment and provide feedback to Sun in a manner reasonably requested by Sun. Any and all test results, error data, reports or other information, feedback or materials made or provided by you relating to Software (collectively, \"Feedback\") is the exclusive property of Sun and you hereby assigns all Feedback to Sun at no cost to Sun. Sun may use such Feedback in any manner and for any purpose, without limitation, liability or obligation to you. \n\nIII. CONFIDENTIAL INFORMATION. For purposes of the Evaluation Agreement, \"Confidential Information\" means: (i) business and technical information and any source code or binary code, which Sun discloses to Licensee related to Software; (ii) Licensee's feedback based on Software; and (iii) the terms, conditions, and existence of this Agreement. Licensee may not disclose or use Confidential Information, except for the purposes specified in this Agreement. You will protect the Confidential Information with the same degree of care, but not less than a reasonable degree of care, as Licensee uses to protect its own Confidential Information. You must restrict access to Confidential Information to your employees or contractors with a need for access to perform their employment or contractual obligations and who have agreed in writing to be bound by a confidentiality obligation, which incorporates the protections and restrictions substantially as set forth in this Agreement. Your obligations regarding Confidential Information will expire no less than five (5) years from the date of receipt of the Confidential Information, except for Sun source code which will be protected in perpetuity. You agree that Software contains Sun trade secrets. Notwithstanding any provisions contained in this Agreement concerning nondisclosure and non-use of the Confidential Information, the nondisclosure obligations of this section will not apply to any portion of Confidential Information that you can demonstrate in writing is: (i) now, or hereafter through no act or failure to act on the part of you becomes, generally known to the public; (ii) known to you at the time of receiving the Confidential Information without an obligation of confidentiality; (iii) hereafter rightfully furnished to you by a third party without restriction on disclosure; or (iv) independently developed by you without any use ofthe Confidential Information. \n\nIV. TERMINATION AND/OR EXPIRATION. Upon expiration of the Evaluation Period, unless terminated earlier by Sun, you agree to immediately cease use of and destroy Software. Either party may terminate this Evaluation Agreement upon ten (10) days' written notice to the other party. However, Sun may terminate this Evaluation Agreement immediately should any Software become, or in Sun's opinion be likely to become, the subject of a claim of infringement of a patent, trade secret or copyright. Sun may terminate this Evaluation Agreement immediately should you materially breach any of its provisions or take any action in derogation of Sun's rights to the Confidential Information licensed to you. Upon termination or expiration of this Evaluation Agreement, you will immediately cease use of and destroy Software, any copies thereof and provide to Sun a written statement certifying that you have complied with the foregoing obligations. Rights and obligations under this Evaluation Agreement which by their nature should survive, will remain in effect after termination or expiration hereof.\n\nV. NO SUPPORT. Sun is under no obligation to support Software or to provide upgrades or error corrections (\"Software Updates\") to the Software. If Sun, at its sole option, supplies Software Updates to you, the Software Updates will be considered part of Software, and subject to the terms of this Agreement. \n\nVI. LIMITATION OF LIABILITY. Licensee acknowledges that the Software may be experimental and that the Software may have defects or deficiencies, which cannot or will not be corrected by Sun. Licensee will hold Sun harmless from any claims based on Licensee's use of the Software for any purposes other than those of internal evaluation, and from any claims that later versions or releases of any Software furnished to Licensee are incompatible with the Software provided to Licensee under this Agreement. \n\nVII. NO SUPPLEMENTAL TERMS. The Supplemental Terms following the BCL do not apply to the Evaluation Agreement. Portions of Software identified as Early Access in the Software's Release Notes may not be redistributed even if identified as Redistributable in the Software's Release Notes.\n\nVIII. Trademarks and Logos. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations (\"Sun Marks\"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. \n\nIX. Source Code. Software may contain source code that is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed.\n\nX. Third Party Licenses. Additional copyright notices and license terms applicable to portions of the software are set forth in the THIRDPARTYLICENSEREADME file.\n\nSun Microsystems, Inc. \nBinary Code License Agreement\n\nREAD THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\") CAREFULLY BEFORE OPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA PACKAGE, YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE \"ACCEPT\" BUTTON AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED ELECTRONICALLY, SELECT THE \"DECLINE\" BUTTON AT THE END OF THIS AGREEMENT. \n\n1. LICENSE TO USE. Sun grants you a non-exclusive and non-transferable license for the internal use only of the accompanying software and documentation and any error corrections provided by Sun (collectively \"Software\"), by the number of users and the class of computer hardware for which the corresponding fee has been paid. \n\n2. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Except as specifically authorized in any Supplemental License Terms, you may not make copies of Software, other than a single copy of Software for archival purposes. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. Licensee acknowledges that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. \n\n3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. \n\n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. \n\n5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. \n\n6. Termination. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Upon Termination, you must destroy all copies of Software. \n\n7. Export Regulations. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. \n\n8. U.S. Government Restricted Rights. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). \n\n9. Governing Law. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply. \n\n10. Severability. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. \n\n11. Integration. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. \n\nSUPPLEMENTAL LICENSE TERMS\n\nThese supplemental license terms (\"Supplemental Terms\") add to or modify the terms of the Binary Code License Agreement (collectively, the \"Agreement\"). Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Agreement, or in any license contained within the Software. \n\nA. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement, including, but not limited to Section C (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license to reproduce internally and use internally the binary form of the Software complete and unmodified for the purposes of designing, developing, testing, and running your Java applets and applications intended to run on the Java platform (\"Programs\"), except for certain files identified in the Software \"Release Notes\" file which may only be used for the purposes of designing, developing, and testing Programs.\n\nB. License to Distribute Redistributables. Subject to the terms and conditions of this Agreement, including but not limited to Section C (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license to reproduce and distribute those components specifically identified as redistributable in the Software \"Release Notes\" file (\"Redistributables\") provided that: (i) you distribute the Redistributables complete and unmodified (unless otherwise specified in the applicable Release Notes file), and only bundled as part of your Programs, (ii) you do not distribute additional software intended to supersede any portion of the Redistributables, (iii) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (iv) you only distribute the Redistributables pursuant to a license agreement that protects Sun's interests consistent with the terms contained in the Agreement, (v) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software, and (vi) if you distribute the Java Secure Socket Extension package, include the following statement as part of product documentation (whether hard copy or electronic), as a part of a copyright page or proprietary rights notice page, in an \"About\" box or in any other form reasonably designed to make the statement visible to users of the Software: \"This product includes code licensed from RSA Data Security\".\n\nC. Java Technology Restrictions. You may not modify the Java Platform Interface (\"JPI\", identified as classes contained within the \"java\" package or any subpackages of the \"java\" package), by creating additional classes within the JPI or otherwise causing the addition to or modification of the classes in the JPI. In the event that you create an additional class and associated API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, you must promptly publish broadly an accurate specification for such API for free use by all developers. You may not create, or authorize your licensees to create, additional classes, interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"sun\" or similar convention as specified by Sun in any naming convention designation. \n\nD. Java Runtime Availability. Refer to the appropriate version of the Java Runtime Environment binary code license (currently located at http://www.java.sun.com/jdk/index.html) for the availability of runtime code which may be distributed with Java applets and applications. \n\nE. Trademarks and Logos. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations (\"Sun Marks\"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. \n\nF. Source Code. Software may contain source code that is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement.\n\nG. Third Party Licenses. Additional copyright notices and license terms applicable to portions of the software are set forth in the THIRDPARTYLICENSEREADME file.\n\nH. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right.\n\nFor inquiries please contact: Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054.", + "json": "sun-java-web-services-dev-pack-1.6.json", + "yaml": "sun-java-web-services-dev-pack-1.6.yml", + "html": "sun-java-web-services-dev-pack-1.6.html", + "license": "sun-java-web-services-dev-pack-1.6.LICENSE" + }, + { + "license_key": "sun-javamail", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-javamail", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun JavaMail\nLicense Agreement\n\n1.\tLicense to Distribute. Customer is granted a royalty-free, non-transferable right to reproduce and use the Software for the purpose of developing applications which run in conjunction with the Software. Customer may not modify the Software (including any APIs exposed by the Software) in any way.\n\n2.\tRestrictions. Software is confidential copyrighted information of Sun and title to all copies is retained by Sun and/or its licensors. Except to the extent enforcement of this provision is prohibited by applicable law, if at all, Customer shall not decompile, disassemble, decrypt, extract, or otherwise reverse engineer Software. Software is not designed or intended for use in on-line control of aircraft, air traffic, aircraft navigation or aircraft communications; or in the design, construction, operation or maintenance of any nuclear facility. Customer warrants that it will not use or redistribute the Software for such purposes.\n\n3.\tTrademarks and Logos. This Agreement does not authorize Customer to use any Sun name, trademark or logo. Customer acknowledges that Sun owns the Java trademark and all Java-related trademarks, logos and icons including the Coffee Cup and Duke (``Java Marks'') and agrees to: (i) comply with the Java Trademark Guidelines at http://java.sun.com/trademarks.html; (ii) not do anything harmful to or inconsistent with Sun's rights in the Java Marks; and (iii) assist Sun in protecting those rights, including assigning to Sun any rights acquired by Customer in any Java Mark.\n\n4. Disclaimer of Warranty. Software is provided ``AS IS,'' without a warranty of any kind. ALL EXPRESS OR IMPLIED REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED.\n\n5.Limitation of Liability.\tIN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL,INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY ARISING OUT OF THE DOWNLOADING OF, USE OF, OR INABILITY TO USE, SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n6.\tTermination. Customer may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if Customer fails to comply with any provision of this Agreement. Upon such termination, Customer must destroy all copies of Software. Sections 4 and 5 above shall survive termination of this Agreement.\n\n7.\tExport Regulations. Software, including technical data, is subject to U.S. export control laws, including the U.S. Export Administration Act and its associated regulations, and may be subject to export or import regulations in other countries. Customer agrees to comply strictly with all such regulations and acknowledges that it has the responsibility to obtain licenses to export, re-export, or import Software. Software may not be downloaded, or otherwise exported or re-exported (i) into, or to a national or resident of, Cuba, Iraq, Iran, North Korea, Libya, Sudan, Syria or any country to which the U.S. has embargoed goods; or (ii) to anyone on the U.S. Treasury Department's list of Specially Designated Nations or the U.S. Commerce Department's Table of Denial Orders.\n\n8.\tRestricted Rights. Use, duplication or disclosure by the United States government is subject to the restrictions as set forth in the Rights in Technical Data and Computer Software Clauses in DFARS 252.227-7013(c) (1) (ii) and FAR 52.227-19(c) (2) as applicable.\n\n9.\tGoverning Law. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply.\n\n10.\tSeverability. If any of the above provisions are held to be in violation of applicable law, void, or unenforceable in any jurisdiction, then such provisions are herewith waived or amended to the extent necessary for the Agreement to be otherwise enforceable in such jurisdiction. However, if in Sun's opinion deletion or amendment of any provisions of the Agreement by operation of this paragraph unreasonably compromises the rights or increase the liabilities of Sun or its licensors, Sun reserves the right to terminate the Agreement.", + "json": "sun-javamail.json", + "yaml": "sun-javamail.yml", + "html": "sun-javamail.html", + "license": "sun-javamail.LICENSE" + }, + { + "license_key": "sun-jsr-spec-04-2006", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-jsr-spec-04-2006", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright 2006 SUN MICROSYSTEMS, INC.\n4150 Network Circle, Santa Clara, California 95054, U.S.A\nAll rights reserved.\n\nLIMITED LICENSE GRANTS\n\n1. License for Evaluation Purposes. Sun hereby grants you a fully-paid,\nnon-exclusive, non-transferable, worldwide, limited license (without the\nright to sublicense), under Sun's applicable intellectual property\nrights to view, download, use and reproduce the Specification only for\nthe purpose of internal evaluation. This includes (i) developing\napplications intended to run on an implementation of the Specification,\nprovided that such applications do not themselves implement any\nportion(s) of the Specification, and (ii) discussing the Specification\nwith any third party; and (iii) excerpting brief portions of the\nSpecification in oral or written communications which discuss the\nSpecification provided that such excerpts do not in the aggregate\nconstitute a significant portion of the Specification.\n\n2. License for the Distribution of Compliant Implementations. Sun also\ngrants you a perpetual, non-exclusive, non-transferable, worldwide,\nfully paid-up, royalty free, limited license (without the right to\nsublicense) under any applicable copyrights or, subject to the\nprovisions of subsection 4 below, patent rights it may have covering the\nSpecification to create and/or distribute an Independent Implementation\nof the Specification that: (a) fully implements the Specification\nincluding all its required interfaces and functionality; (b) does not\nmodify, subset, superset or otherwise extend the Licensor Name Space, or\ninclude any public or protected packages, classes, Java interfaces,\nfields or methods within the Licensor Name Space other than those\nrequired/authorized by the Specification or Specifications being\nimplemented; and (c) passes the Technology Compatibility Kit (including\nsatisfying the requirements of the applicable TCK Users Guide) for such\nSpecification (\"Compliant Implementation\"). In addition, the foregoing\nlicense is expressly conditioned on your not acting outside its scope.\nNo license is granted hereunder for any other purpose (including, for\nexample, modifying the Specification, other than to the extent of your\nfair use rights, or distributing the Specification to third parties).\nAlso, no right, title, or interest in or to any trademarks, service\nmarks, or trade names of Sun or Sun's licensors is granted hereunder.\n\nJava, and Java-related logos, marks and names are trademarks or\nregistered trademarks of Sun Microsystems, Inc. in the U.S. and other\ncountries.\n\n3. Pass-through Conditions. You need not include limitations (a)-(c)\nfrom the previous paragraph or any other particular \"pass through\"\nrequirements in any license You grant concerning the use of your\nIndependent Implementation or products derived from it. However, except\nwith respect to Independent Implementations (and products derived from\nthem) that satisfy limitations (a)-(c) from the previous paragraph, You\nmay neither: (a) grant or otherwise pass through to your licensees any\nlicenses under Sun's applicable intellectual property rights; nor (b)\nauthorize your licensees to make any claims concerning their\nimplementation's compliance with the Specification in question.\n\n4. Reciprocity Concerning Patent Licenses.\n\na. With respect to any patent claims covered by the license granted\nunder subparagraph 2 above that would be infringed by all technically\nfeasible implementations of the Specification, such license is\nconditioned upon your offering on fair, reasonable and non-\ndiscriminatory terms, to any party seeking it from You, a perpetual,\nnon-exclusive, non-transferable, worldwide license under Your patent\nrights which are or would be infringed by all technically feasible\nimplementations of the Specification to develop, distribute and use a\nCompliant Implementation.\n\nb With respect to any patent claims owned by Sun and covered by the\nlicense granted under subparagraph 2, whether or not their infringement\ncan be avoided in a technically feasible manner when implementing the\nSpecification, such license shall terminate with respect to such claims\nif You initiate a claim against Sun that it has, in the course of\nperforming its responsibilities as the Specification Lead, induced any\nother entity to infringe Your patent rights.\n\nc Also with respect to any patent claims owned by Sun and covered by the\nlicense granted under subparagraph 2 above, where the infringement of\nsuch claims can be avoided in a technically feasible manner when\nimplementing the Specification such license, with respect to such\nclaims, shall terminate if You initiate a claim against Sun that its\nmaking, having made, using, offering to sell, selling or importing a\nCompliant Implementation infringes Your patent rights.\n\n5. Definitions. For the purposes of this Agreement: \"Independent\nImplementation\" shall mean an implementation of the Specification that\nneither derives from any of Sun's source code or binary code materials\nnor, except with an appropriate and separate license from Sun, includes\nany of Sun's source code or binary code materials; \"Licensor Name Space\"\nshall mean the public class or interface declarations whose names begin\nwith \"java\", \"javax\", \"com.sun\" or their equivalents in any subsequent\nnaming convention adopted by Sun through the Java Community Process, or\nany recognized successors or replacements thereof; and\n\"Technology Compatibility Kit\" or \"TCK\" shall mean the test suite and\naccompanying TCK User's Guide provided by Sun which corresponds to the\nSpecification and that was available either (i) from Sun 120 days before\nthe first release of Your Independent Implementation that allows its use\nfor commercial purposes, or (ii) more recently than 120 days from such\nrelease but against which You elect to test Your implementation of the\nSpecification.\n\nThis Agreement will terminate immediately without notice from Sun if you\nbreach the Agreement or act outside the scope of the licenses granted\nabove.\n\nDISCLAIMER OF WARRANTIES\n\nTHE SPECIFICATION IS PROVIDED \"AS IS\". SUN MAKES NO REPRESENTATIONS OR\nWARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO,\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-\nINFRINGEMENT (INCLUDING AS A CONSEQUENCE OF ANY PRACTICE OR\nIMPLEMENTATION OF THE SPECIFICATION), OR THAT THE CONTENTS OF THE\nSPECIFICATION ARE SUITABLE FOR ANY PURPOSE. This document does not\nrepresent any commitment to release or implement any portion of the\nSpecification in any product. In addition, the Specification could\ninclude technical inaccuracies or typographical errors.\n\nLIMITATION OF LIABILITY\n\nTO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS\nLICENSORS BE LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT LIMITATION, LOST\nREVENUE, PROFITS OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL,\nINCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE\nTHEORY OF LIABILITY, ARISING OUT OF OR RELATED IN ANY WAY TO YOUR\nHAVING, IMPLEMENTING OR OTHERWISE USING THE SPECIFICATION, EVEN IF SUN\nAND/OR ITS LICENSORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\nYou will indemnify, hold harmless, and defend Sun and its licensors from\nany claims arising or resulting from: (i) your use of the Specification;\n(ii) the use or distribution of your Java application, applet and/or\nimplementation; and/or (iii) any claims that later versions or releases\nof any Specification furnished to you are incompatible with the\nSpecification provided to you under this license.\n\nRESTRICTED RIGHTS LEGEND\n\nU.S. Government: If this Specification is being acquired by or on behalf\nof the U.S. Government or by a U.S. Government prime contractor or\nsubcontractor (at any tier), then the Government's rights in the\nSoftware and accompanying documentation shall be only as set forth in\nthis license; this is in accordance with 48 C.F.R. 227.7201 through\n227.7202-4 (for Department of Defense (DoD) acquisitions) and with 48\nC.F.R. 2.101 and 12.212 (for non-DoD acquisitions).\n\nREPORT\n\nIf you provide Sun with any comments or suggestions concerning the\nSpecification (\"Feedback\"), you hereby: (i) agree that such Feedback is\nprovided on a non-proprietary and non-confidential basis, and (ii) grant\nSun a perpetual, non-exclusive, worldwide, fully paid-up, irrevocable\nlicense, with the right to sublicense through multiple levels of\nsublicensees, to incorporate, disclose, and use without limitation the\nFeedback for any purpose.\n\nGENERAL TERMS\n\nAny action related to this Agreement will be governed by California law\nand controlling U.S. federal law. The U.N. Convention for the\nInternational Sale of Goods and the choice of law rules of any\njurisdiction will not apply.\n\nThe Specification is subject to U.S. export control laws and may be\nsubject to export or import regulations in other countries. Licensee\nagrees to comply strictly with all such laws and regulations and\nacknowledges that it has the responsibility to obtain such licenses to\nexport, re-export or import as may be required after delivery to\nLicensee.\n\nThis Agreement is the parties' entire agreement relating to its subject\nmatter. It supersedes all prior or contemporaneous oral or written\ncommunications, proposals, conditions, representations and warranties\nand prevails over any conflicting or additional terms of any quote,\norder, acknowledgment, or other communication between the parties\nrelating to its subject matter during the term of this Agreement. No\nmodification to this Agreement will be binding, unless in writing and\nsigned by an authorized representative of each party.\n\nRev. April, 2006 Sun/Final/Full", + "json": "sun-jsr-spec-04-2006.json", + "yaml": "sun-jsr-spec-04-2006.yml", + "html": "sun-jsr-spec-04-2006.html", + "license": "sun-jsr-spec-04-2006.LICENSE" + }, + { + "license_key": "sun-jta-spec-1.0.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-jta-spec-1.0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun JTA Specification License v1.0.1\nhttp://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download\n\nCopyright 1997-1999 Sun Microsystems, Inc.\n901 San Antonio Road, Palo Alto, California 94303 U.S.A.\nAll rights reserved. Copyright in this document is owned by Sun Microsystems Inc.\n\nSun Microsystems, Inc. (SUN) hereby grants to you at no charge a nonexclusive,\nnontransferable, perpetual, worldwide, limited license (without the right to\nsublicense) under SUN's intellectual property rights that are essential to\npractice this specification for the limited purpose of creating and distributing\nimplementations of this specification, provided however, that such\nimplementations do not derive from any SUN source code or binary materials and\ndo not include any SUN binary materials without an appropriate and separate\nlicense from SUN. Other than this limited license, you acquire no right, title\nor interest in or to this specification or any other SUN intellectual property.\nNo right, title, or interest in or to any trademarks, service marks, or trade\nnames of SUN or SUN\u2019s licensors is granted hereunder.\n\nRESTRICTED RIGHTS LEGEND\nUse, duplication, or disclosure by the U.S. Government is subject to restrictions of FAR 52.227-\n14(g)(2)(6/87) and FAR 52.227-19(6/87), or DFAR 252.227-7015(b)(6/95) and DFAR 227.7202-1(a).\n\nThis specification contains the proprietary information of SUN and may only be used in accordance with\nthe license terms set forth above.\n\nSUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE\nSPECIFICATION, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nIMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,\nOR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY\nYOU AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SPECIFICATION OR ITS\nDERIVATIVES.\n\nTRADEMARKS\nSun, the Sun logo, Sun Microsystems, Java, Enterprise JavaBeans, JDBC, and JDK are trademarks or\nregistered trademarks of Sun Microsystems, Inc. in the United States and other countries.\n\nTHIS PUBLICATION IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER\nEXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT.\nTHIS PUBLICATION COULD INCLUDE TECHNICAL INACCURACIES OR TYPOGRAPHICAL\nERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION HEREIN; THESE\nCHANGES WILL BE INCORPORATED IN NEW EDITIONS OF THE PUBLICATION. SUN\nMICROSYSTEMS, INC. MAY MAKE IMPROVEMENTS AND/OR CHANGES IN THE\nPRODUCT(S) AND/OR THE PROGRAM(S) DESCRIBED IN THIS PUBLICATION AT ANY TIME.", + "json": "sun-jta-spec-1.0.1.json", + "yaml": "sun-jta-spec-1.0.1.yml", + "html": "sun-jta-spec-1.0.1.html", + "license": "sun-jta-spec-1.0.1.LICENSE" + }, + { + "license_key": "sun-jta-spec-1.0.1b", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-jta-spec-1.0.1b", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Java(TM) Transaction API (JTA) Specification\n(\"Specification\")\nVersion: 1.0.1B\nStatus: Maintenance Release\nRelease: November 5, 2002\n\nCopyright 2002 Sun Micro systems, Inc.\n\n4150 Network Circle, Santa Clara, California\n95054, U.S.A\nAll rights reserved.\n\nNOTICE; LIMITED LICENSE GRANTS\n\nSun Microsystems, Inc. (\"Sun\") hereby grants you a\nfully-paid, non-exclusive, non-t ransferable,\nworldwide, limited license (without the right to\nsublicense), under the Sun's applicable\nintellectual property rights to view, download,\nuse and reproduce the Specification only for the\npurpose of internal evalua tion, which shall be\nunderstood to include developing applications\nintended to run on an implementation of the\nSpecification provided that such applications do\nnot themselves implement any portion(s) of the\nSpecification.\n\nSun also grants you a perpetual, non-exclusive,\nworldwide, fully paid-up, royalty free, limited\nlicense (without the right to sublicense) under\nany applicable copyrights or patent rights it may\nhave in the Specification to c reate and/or\ndistribute an Independent Implementation of the\nSpecification that: (i) fully implements the\nSpec(s) including all its required interfaces and\nfunctionality; (ii) does not modify, subset,\nsuperset or otherwise ex tend the Licensor Name\nSpace, or include any public or protected\npackages, classes, Java interfaces, fields or\nmethods within the Licensor Name Space other than\nthose required/authorized by the Specification or\nSpecifications being implemented; and (iii) passes\nthe TCK (including satisfying the requirements of\nthe applicable TCK Users Guide) for such\nSpecification. The foregoing license is expressly\nconditioned on your not acting outside its scope.\nNo license is granted hereunder for any other\npurpose.\n\nYou need not include limitations (i)-(iii) from\nthe previous paragraph or any other particular\n\"pass through\" requirements in any license You\ngrant concerning the use of your Independent\nImplementation or products derived from it.\nHowever, except with respect to implementations of\nthe Specification (and products derived from them)\nthat satisfy limitations (i)-(iii) from the\nprevious pa ragraph, You may neither: (a) grant or\notherwise pass through to your licensees any\nlicenses under Sun's applicable intellectual\nproperty rights; nor (b) authorize your licensees\nto make any claims concerning their\nimplementa tion's compliance with the Spec in\nquestion.\n\nFor the purposes of this Agreement: \"Independent\nImplementation\" shall mean an implementation of\nthe Specification that neither derives from any of\nSun's source code or binary code materials nor,\nexcept with an appropriate and separate license\nfrom Sun, includes any of Sun's source code or\nbinary code materials; and \"Licensor Name Space\"\nshall mean the public class or interface\ndeclarations whose n ames begin with \"java\",\n\"javax\", \"com.sun\" or their equivalents in any\nsubsequent naming convention adopted by Sun\nthrough the Java Community Process, or any\nrecognized successors or replacements thereof.\n\nThis Agreement w ill terminate immediately without\nnotice from Sun if you fail to comply with any\nmaterial provision of or act outside the scope of\nthe licenses granted above.\n\nTRADEMARKS\n\nNo right, title, or interest in or to any\ntrademarks, service marks, or trade names of Sun\nor Sun's licensors is granted hereunder. Sun, Sun\nMicrosystems, the Sun logo, Java, and the Java\nCoffee Cup logo are trademarks or registered\ntrademarks of Sun Microsystems, Inc. in the U.S.\nand other countries.\n\nDISCLAIMER OF WARRANTIES\n\nTHE SPECIFICATION IS PROVIDED \"AS IS\". SUN MAKES\nNO REPRESENTATIONS OR WARRANTIES, EITHER EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO,\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE, OR NON-INFRINGEMENT, THAT THE\nCONTENTS OF THE SPECIFICATION ARE SUITABLE FOR ANY\nPURPOSE OR THAT ANY PRACTICE OR IMPLEMENTATION OF\nSUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADE SECRETS OR OTHER\nRIGHTS. This document does not represent any\ncommitment to release or implement any portion of\nthe Specification in any product.\n\nTHE SPECIFICATION COULD INCLUDE TECHNICAL\nINACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE\nPERIODICALLY ADDED TO THE INFORMATION THEREIN;\nTHESE CHANGES WILL BE INCORPORATED INTO NEW\nVERSIONS OF THE SPECIFICATION, IF ANY. SUN MAY\nMAKE IMPROVEMENTS AND/OR CHANGES TO THE P RODUCT(S)\nAND/OR THE PROGRAM(S) DESCRIBED IN THE\nSPECIFICATION AT ANY TIME. Any use of such\nchanges in the Specification will be governed by\nthe then-current license for the applicable\nversion of the Specification.\n\nLIMITATION OF LIABILITY\n\nTO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT\nWILL SUN OR ITS LICENSORS BE LIABLE FOR ANY\nDAMAGES, INCLUDING WITHOUT LIMITATION, LOST\nREVENUE, PROFITS OR DATA, OR FOR SPECIAL,\nINDIRECT, CONSEQU ENTIAL, INCIDENTAL OR PUNITIVE\nDAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE\nTHEORY OF LIABILITY, ARISING OUT OF OR RELATED TO\nANY FURNISHING, PRACTICING, MODIFYING OR ANY USE\nOF THE SPECIFICATION, EVEN IF SUN AND/OR ITS\nLICE NSORS HAVE BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\nYou will indemnify, hold harmless, and defend Sun\nand its licensors from any claims arising or\nresulting from: (i) your use of the Specification;\n(ii) the use or distribution of your Java\napplication, applet and/or clean room\nimplementation; and/or (iii) any claims that later\nversions or releases of any Specification\nfurnished to you are incompatible with the\nSpecification provided t o you under this license.\n\nRESTRICTED RIGHTS LEGEND\n\nU.S. Government: If this Specification is being\nacquired by or on behalf of the U.S. Government or\nby a U.S. Government prime contractor or\nsubcontractor (at any tier ), then the Government's\nrights in the Software and accompanying\ndocumentation shall be only as set forth in this\nlicense; this is in accordance with 48 C.F.R.\n227.7201 through 227.7202-4 (for Department of\nDefense (DoD) acqu isitions) and with 48 C.F.R.\n2.101 and 12.212 (for non-DoD acquisitions).\n\nREPORT\n\nYou may wish to report any ambiguities,\ninconsistencies or inaccuracies you may find in\nconnection with your use of the Specification\n(\"Feedback\"). To the extent that you provide Sun\nwith any Feedback, you hereby: (i) agree that such\nFeedback is provided on a non-proprietary and\nnon-confidential basis, and (ii) grant Sun a\nperpetual, non-exclusive, worldwide, fully\npaid-up, irrevocable license, with the right to\nsublicense through multiple levels of\nsublicensees, to incorporate, disclose, and use\nwithout limitation the Feedback for any purpose\nrelated to the Specification and fut ure versions,\nimplementations, and test suites thereof.\n\n(LFI#121049/Form ID#011801)", + "json": "sun-jta-spec-1.0.1b.json", + "yaml": "sun-jta-spec-1.0.1b.yml", + "html": "sun-jta-spec-1.0.1b.html", + "license": "sun-jta-spec-1.0.1b.LICENSE" + }, + { + "license_key": "sun-no-high-risk-activities", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-sun-no-high-risk-activities", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this Software and its \ndocumentation for NON-COMMERCIAL or COMMERCIAL purposes and without fee is \nhereby granted. \n\nThis Software is provided \"AS IS\". All express warranties, including any \nimplied warranty of merchantability, satisfactory quality, fitness for a \nparticular purpose, or non-infringement, are disclaimed, except to the extent \nthat such disclaimers are held to be legally invalid.\n\nYou acknowledge that Software is not designed, licensed or intended for use in \nthe design, construction, operation or maintenance of any nuclear facility \n(\"High Risk Activities\"). Sun disclaims any express or implied warranty of \nfitness for such uses. \n\nPlease refer to the file http://www.sun.com/policies/trademarks/ for further \nimportant trademark information and to \nhttp://java.sun.com/nav/business/index.html for further important licensing \ninformation for the Java Technology.", + "json": "sun-no-high-risk-activities.json", + "yaml": "sun-no-high-risk-activities.yml", + "html": "sun-no-high-risk-activities.html", + "license": "sun-no-high-risk-activities.LICENSE" + }, + { + "license_key": "sun-project-x", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-project-x", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Java Project X Technology Release 2 Source Software License Agreement\n\n1. LICENSE GRANT (A) Definition of Software\n\n\"Software\" means the \"Java Project X Technology Release 2\" experimental XML software in source form, any portions of the software code provided in binary form, and any user manuals, programming guides and other documentation provided to Licensee by Sun under this Agreement.\n\n(B) Sun's Limited Grant to Licensee\n\n(1) Internal Source Evaluation\n\nSun grants Licensee a non-exclusive, non-transferable royalty-free right to use the Software internally for the purposes of evaluation only, except as otherwise permitted in Section 1(B)(2) below.\n\n(2) Commercial Binary Distribution\n\nSun grants Licensee a non-exclusive, non-transferable, royalty-free right to reproduce and distribute the Software in binary form only provided that Licensee complies with the following: (i) distribute the Software in binary form only complete and unmodified, only as part of, and for the sole purpose of running Licensee's software program (\"Program\") into which the Software is incorporated or bundled; (ii) do not remove or alter any proprietary legends or notices contained in the Software; (iii) only distribute the Program subject to a license agreement that protects Sun\u2019s interests consistent with the terms contained herein; and (iv) agree to indemnify, hold harmless, and defend Sun and its licensors from and against any claims or lawsuits, including attorney\u2019s fees, that arise or result from the use or distribution of the Program.\n\n(C) License Restrictions\n\nLicensee may not duplicate the Software in source form other than for a single copy of Software for archival purposes only. Licensee agrees to reproduce any copyright and other proprietary right notices on any such copy. Except as explicitly provided by this Agreement, Licensee may not rent, lease, loan, sell, or distribute the Software in whole or part, to any third party. No right, title, or interest in or to any trademarks, service marks, or trade names of Sun or Sun's licensors is granted hereunder. No license to any other Sun intellectual property is granted hereunder.\n\n(D) Licensee's Grant to Sun and Indemnification of Sun\n\nLicensee grants to Sun a non-exclusive, unrestricted, perpetual, worldwide, royalty-free license to use any modifications, in source and binary code form, that Licensee makes to the Software that are the original work of Licensee \"Modifications \". Licensee will deliver Modifications to Sun upon request. Licensee's grant to Sun includes the right to copy, modify, create derivative works from, sublicense and distribute Modifications. Licensee will defend and indemnity Sun from all claims of any nature for damages arising out of Sun's use or distribution of Modifications, and will pay all damages and costs awarded by a court of final appeal attributable to such claim.\n\n(E) Aircraft Product and Nuclear Applications Restriction\n\nLICENSEE ACKNOWLEDGES THAT SOFTWARE IS NOT DESIGNED OR INTENDED FOR USE IN ON-LINE CONTROL OF AIRCRAFT, AIR TRAFFIC, AIRCRAFT NAVIGATION OR AIRCRAFT COMMUNICATIONS; OR IN THE DESIGN, CONSTRUCTION, OPERATION OR MAINTENANCE OF ANY NUCLEAR FACILITY. SUN DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR SUCH USES.\n\n2. Ownership\n\n(A) Software As between Sun and Licensee, Sun is and will be the sole and exclusive owner of all right, title and interest in and to the Software and other than the limited rights granted to Licensee in this Agreement, Licensee will not acquire any right, title or interest in the Software.\n\n(B) Modifications\n\nLicensee will own Modifications; however, Licensee\u2019 use of the Modifications will be limited solely to Licensee\u2019 internal, noncommercial uses.\n\n3. Confidentiality\n\n(A) For purposes of this Agreement, \"Confidential Information\" means all technical information and any source code or binary code which Sun discloses to Licensee under this Agreement.\tLicensee may not disclose Confidential Information or use it except for the purposes specified in this Agreement. Licensee will protect the confidentiality of Confidential Information to the same degree of care, but no less than reasonable care, as Licensee uses to protect its own Confidential Information. Licensee's obligations regarding Confidential Information will expire no less than five (5) years from the date of receipt of the Confidential Information, except for Sun source code which will be protected in perpetuity. Licensee agrees that the Software contains trade secrets of Sun.\n\n(B) Notwithstanding any provisions contained in this Agreement concerning nondisclosure and non-use of the Confidential Information, the obligations of Section 3.(A) above will not apply to any portion of Confidential Information that a Licensee can demonstrate in writing is: (i) now, or hereafter through no act or failure to act on the part of Licensee becomes, generally known to the general public; (ii) known to Licensee at the time of receiving the Confidential Information without an obligation of confidentiality; (iii) hereafter rightfully furnished to Licensee by a third party without restriction on disclosure; or (iv) independently developed by Licensee without any use of the Confidential Information.\n\n(C) Licensee must restrict access to Confidential Information to its employees or contractors with a need for this access to perform their employment or contractual obligations and who have agreed in writing to be bound by a confidentiality obligation which incorporates the protections and restrictions substantially as set forth in this Agreement.\n\n(D) It is understood and agreed that, notwithstanding any other provision of this Agreement, Licensee's breach of the provisions of Section 3 of this Agreement will cause Sun irreparable damage for which recovery of money damages would be inadequate, and that Sun will therefore be entitled to seek timely injunctive relief to protect Sun\u2019s rights under this Agreement in addition to any and all remedies available at law.\n\n4. TERM, Termination and survival \n\n(A) The Agreement is effective until terminated.\n\n(B) Either party may terminate this Agreement upon ten (10) days; written notice to the other party. However, Sun may terminate this Agreement immediately should any Software become, or in Sun\u2019s opinion be likely to become, the subject of a claim of infringement of a patent, trade secret or copyright.\n\n(C) Sun may terminate this Agreement immediately should Licensee materially breach any of its provisions or take any action in derogation of Sun's rights to the Confidential Information licensed to Licensee.\n\n(D) Upon termination or expiration of this Agreement, Licensee will immediately cease use and destroy the Software and any copies thereof and provide Sun a written statement certifying that Licensee has complied with the foregoing obligations.\n\n(E) Rights and obligations under this Agreement which by their nature should survive, will remain in effect after termination or expiration hereof.\n\n5. DISCLAIMER OF Warranty\n\nLICENSEE ACKNOWLEDGES THAT: (i) THE SOFTWARE IS NONCOMMERCIAL, EXPERIMENTAL SOFTWARE; (ii) THE SOFTWARE MAY CONTAIN ERRORS, DESIGN FLAWS OR OTHER PROBLEMS WHICH CANNOT OR WILL NOT BE CORRECTED BY SUN; (iii) THE SOFTWARE MAY NOT FUNCTION FULLY OR ADEQUATELY UPON INSTALLATION; (iv) IT MAY NOT BE POSSIBLE TO MAKE THE SOFTWARE FUNCTIONAL; (v) USE OF THE SOFTWARE MAY RESULT IN UNEXPECTED RESULTS, LOSS OF DATA OR OTHER UNPREDICTABLE DAMAGE OR LOSS TO LICENSEE; AND (vi) SUN IS UNDER NO OBLIGATION TO CONTINUE FURTHER DEVELOPMENT OF THE SOFTWARE OR RELEASE THE SOFTWARE AS A PRODUCT FROM SUN. THE SOFTWARE IS PROVIDED TO LICENSEE \"AS IS\". ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS, AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. 6. MAINTENANCE AND SUPPORT\n\nSun has no obligation to provide maintenance, error corrections, updates or support for the Software under this Agreement.\n\n7. Limitation of Liability \n\nTO THE EXTENT NOT PROHIBITED BY APPLICABLE LAW, SUN'S AGGREGATE LIABILITY TO LICENSEE OR TO ANY THIRD PARTY FOR CLAIMS RELATING TO THIS AGREEMENT, WHETHER FOR BREACH OR IN TORT, WILL BE LIMITED TO THE FEES PAID BY LICENSEE FOR SOFTWARE WHICH IS THE SUBJECT MATTER OF THE CLAIMS. IN NO EVENT WILL SUN BE LIABLE FOR ANY INDIRECT, PUNITIVE, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGE IN CONNECTION WITH OR ARISING OUT OF THIS AGREEMENT (INCLUDING LOSS OF BUSINESS, REVENUE, PROFITS, USE, DATA OR OTHER ECONOMIC ADVANTAGE), HOWEVER IT ARISES, WHETHER FOR BREACH OF IN TORT, EVEN IF SUN HAS BEEN PREVIOUSLY ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. LIABILITY FOR DAMAGES WILL BE LIMITED AND EXCLUDED, EVEN IF ANY EXCLUSIVE REMEDY PROVIDED FOR IN THIS AGREEMENT FAILS OF ITS ESSENTIAL PURPOSE.\n\nLICENSEE WILL HOLD SUN HARMLESS FROM ANY CLAIMS BASED ON LICENSEE\u2019S USE OF THE SOFTWARE AND FROM ANY CLAIMS THAT LATER VERSIONS OR RELEASES OF ANY SOFTWARE FURNISHED TO LICENSEE ARE INCOMPATIBLE WITH THE SOFTWARE PROVIDED TO LICENSEE UNDER THIS AGREEMENT.\n\n8. Government User\n\nSoftware is provided solely under the terms and conditions of this Agreement. The FAR and/or DFAR or any other U.S. Government Agency provisions relating to Rights in Data, Computer Software and/or Technical Data do not apply, even though some of the terms of those provisions may be similar to provisions stated herein.\n\n9. Export Law\n\nLicensee acknowledges and agrees that this Software and/or technology is subject to the U.S. Export Administration Laws and Regulations. Diversion of such Software and/or technology contrary to U.S. law is prohibited. Licensee agrees that none of this Software and/or technology, nor any direct product therefrom, is being or will be acquired for, shipped, transferred, or reexported, directly or indirectly, to proscribed or embargoed countries or their nationals, nor be used for nuclear activities, chemical biological weapons, or missile projects unless authorized by the U.S. Government. Proscribed countries are set forth in the U.S. Export Administration Regulations. Countries subject to U.S. embargo are: Cuba, Iran, Iraq, Libya, North Korea, Syria, and the Sudan. This list is subject to change without further notice from Sun, and Licensee must comply with the list as it exists in fact. Licensee certifies that it is not on the U.S. Department of Commerce\u2019s Denied Persons List ! or affiliated lists or on the U.S. Department of Treasury\u2019s Specially Designated Nationals List. Licensee agrees to comply strictly with all U.S. export laws and assumes sole responsibility for obtaining licenses to export or reexport as may be required.\n\nLicensee is responsible for complying with any applicable local laws and regulations, including but not limited to, the export and import laws and regulations of other countries.\n\n10. Governing Law, Jurisdiction and Venue\n\nAny action related to this Agreement shall be governed by California law and controlling U.S. federal law. The U.N. Convention for the International Sale of Goods and choice of law rules of any jurisdiction shall not apply. The parties agree that any action shall be brought in the United States District Court for the Northern District of California or the California superior Court for the County of Santa Clara, as applicable, and the parties hereby submit exclusively to the personal jurisdiction and venue of the United States District Court for the Northern District of California and the California Superior Court of the county of Santa Clara.\n\n11. NO ASSIGNMENT\n\nNeither party may assign or otherwise transfer any of its rights or obligations under this Agreement, without the prior written consent of the other party, except that Sun may assign its right to payment and may assign this Agreement to an affiliated company.\n\n12. OFFICIAL LANGUAGE The official text of this Agreement is in the English language and any interpretation or construction of this Agreement will be based thereon. In the event that this Agreement or any documents or notices related to it are translated into any other language, the English language version will control.\n\n13. ENTIRE AGREEMENT\n\nThis Agreement is the parties entire agreement relating to the Software. It supersedes all prior or contemporaneous oral or written communications, proposals, warranties, and representations with respect to its subject matter, and following Licensee's acceptance of this license by clicking on the Accept Button, will prevail over any conflicting or additional terms of any subsequent quote, order, acknowledgment, or any other communications by or between the parties. No modification to this Agreement will be binding, unless in writing and signed by an authorized representative of each party.", + "json": "sun-project-x.json", + "yaml": "sun-project-x.yml", + "html": "sun-project-x.html", + "license": "sun-project-x.LICENSE" + }, + { + "license_key": "sun-prop-non-commercial", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-prop-non-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software\nand its documentation for NON-COMMERCIAL purposes and without\nfee is hereby granted provided that this copyright notice\nappears in all copies.\n\nThe Java source code is the confidential and proprietary information\nof Sun Microsystems, Inc. (\"Confidential Information\"). You shall\nnot disclose such Confidential Information and shall use it only in\naccordance with the terms of the license agreement you entered into\nwith Sun.\n\nSUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF\nTHE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\nTO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR\nANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR\nDISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.", + "json": "sun-prop-non-commercial.json", + "yaml": "sun-prop-non-commercial.yml", + "html": "sun-prop-non-commercial.html", + "license": "sun-prop-non-commercial.LICENSE" + }, + { + "license_key": "sun-proprietary-jdk", + "category": "Commercial", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.", + "json": "sun-proprietary-jdk.json", + "yaml": "sun-proprietary-jdk.yml", + "html": "sun-proprietary-jdk.html", + "license": "sun-proprietary-jdk.LICENSE" + }, + { + "license_key": "sun-rpc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sun-rpc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun RPC is a product of Sun Microsystems, Inc. and is provided for\nunrestricted use provided that this legend is included on all tape\nmedia and as a part of the software program in whole or part. Users\nmay copy or modify Sun RPC without charge, but are not authorized\nto license or distribute it to anyone else except as part of a product or \nprogram developed by the user.\n \nSUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE\nWARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR\nPURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.\n \nSun RPC is provided with no support and without any obligation on the\npart of Sun Microsystems, Inc. to assist in its use, correction,\nmodification or enhancement.\n \nSUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE\nINFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC\nOR ANY PART THEREOF.\n \nIn no event will Sun Microsystems, Inc. be liable for any lost revenue\nor profits or other special, indirect and consequential damages, even if \nSun has been advised of the possibility of such damages.\n \nSun Microsystems, Inc.\n2550 Garcia Avenue\nMountain View, California 94043", + "json": "sun-rpc.json", + "yaml": "sun-rpc.yml", + "html": "sun-rpc.html", + "license": "sun-rpc.LICENSE" + }, + { + "license_key": "sun-sdk-spec-1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-sdk-spec-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Java(TM) Development Kit (JDK(TM)) (\"Specification\") \nVersion: 1.1.8 \nStatus: FCS\n\nCopyright 2002 Sun Microsystems, Inc.\n4150 Network Circle, Santa Clara, California 95054, U.S.A \nAll rights reserved.\n\nNOTICE; LIMITED LICENSE GRANTS\n\nSun Microsystems, Inc. (\"Sun\") hereby grants you a fully-paid, non-exclusive, non-transferable, worldwide, limited license (without the right to sublicense), under the Sun's applicable intellectual property rights to view, download, use and reproduce the Specification only for the purpose of internal evaluation, which shall be understood to include developing applications intended to run on an implementation of the Specification provided that such applications do not themselves implement any portion(s) of the Specification.\n\nSun also grants you a perpetual, non-exclusive, worldwide, fully paid-up, royalty free, limited license (without the right to sublicense) under any applicable copyrights or patent rights it may have in the Specification to create and/or distribute an Independent Implementation of the Specification that: (i) fully implements the Spec(s) including all its required interfaces and functionality; (ii) does not modify, subset, superset or otherwise extend the Licensor Name Space, or include any public or protected packages, classes, Java interfaces, fields or methods within the Licensor Name Space other than those required/authorized by the Specification or Specifications being implemented; and (iii) passes the TCK (including satisfying the requirements of the applicable TCK Users Guide) for such Specification. The foregoing license is expressly conditioned on your not acting outside its scope. No license is granted hereunder for any other purpose.\n\nYou need not include limitations (i)-(iii) from the previous paragraph or any other particular \"pass through\" requirements in any license You grant concerning the use of your Independent Implementation or products derived from it. However, except with respect to implementations of the Specification (and products derived from them) that satisfy limitations (i)-(iii) from the previous paragraph, You may neither: (a) grant or otherwise pass through to your licensees any licenses under Sun's applicable intellectual property rights; nor (b) authorize your licensees to make any claims concerning their implementation's compliance with the Spec in question.\n\nFor the purposes of this Agreement: \"Independent Implementation\" shall mean an implementation of the Specification that neither derives from any of Sun's source code or binary code materials nor, except with an appropriate and separate license from Sun, includes any of Sun's source code or binary code materials; and \"Licensor Name Space\" shall mean the public class or interface declarations whose names begin with \"java\", \"javax\", \"com.sun\" or their equivalents in any subsequent naming convention adopted by Sun through the Java Community Process, or any recognized successors or replacements thereof.\n\nThis Agreement will terminate immediately without notice from Sun if you fail to comply with any material provision of or act outside the scope of the licenses granted above.\n\nTRADEMARKS\n\nNo right, title, or interest in or to any trademarks, service marks, or trade names of Sun or Sun's licensors is granted hereunder. Sun, Sun Microsystems, the Sun logo, Java, J2SE, JDK, and the Java Coffee Cup logo are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries.\n\nDISCLAIMER OF WARRANTIES\n\nTHE SPECIFICATION IS PROVIDED \"AS IS\". SUN MAKES NO REPRESENTATIONS OR WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, THAT THE CONTENTS OF THE SPECIFICATION ARE SUITABLE FOR ANY PURPOSE OR THAT ANY PRACTICE OR IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADE SECRETS OR OTHER RIGHTS. This document does not represent any commitment to release or implement any portion of the Specification in any product.\n\nTHE SPECIFICATION COULD INCLUDE TECHNICAL INACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION THEREIN; THESE CHANGES WILL BE INCORPORATED INTO NEW VERSIONS OF THE SPECIFICATION, IF ANY. SUN MAY MAKE IMPROVEMENTS AND/OR CHANGES TO THE PRODUCT(S) AND/OR THE PROGRAM(S) DESCRIBED IN THE SPECIFICATION AT ANY TIME. Any use of such changes in the Specification will be governed by the then-current license for the applicable version of the Specification.\n\nLIMITATION OF LIABILITY\n\nTO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT LIMITATION, LOST REVENUE, PROFITS OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO ANY FURNISHING, PRACTICING, MODIFYING OR ANY USE OF THE SPECIFICATION, EVEN IF SUN AND/OR ITS LICENSORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nYou will indemnify, hold harmless, and defend Sun and its licensors from any claims arising or resulting from: (i) your use of the Specification; (ii) the use or distribution of your Java application, applet and/or clean room implementation; and/or (iii) any claims that later versions or releases of any Specification furnished to you are incompatible with the Specification provided to you under this license.\n\nRESTRICTED RIGHTS LEGEND\n\nU.S. Government: If this Specification is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in the Software and accompanying documentation shall be only as set forth in this license; this is in accordance with 48 C.F.R. 227.7201 through 227.7202-4 (for Department of Defense (DoD) acquisitions) and with 48 C.F.R. 2.101 and 12.212 (for non-DoD acquisitions).\n\nREPORT\n\nYou may wish to report any ambiguities, inconsistencies or inaccuracies you may find in connection with your use of the Specification (\"Feedback\"). To the extent that you provide Sun with any Feedback, you hereby: (i) agree that such Feedback is provided on a non-proprietary and non-confidential basis, and (ii) grant Sun a perpetual, non-exclusive, worldwide, fully paid-up, irrevocable license, with the right to sublicense through multiple levels of sublicensees, to incorporate, disclose, and use without limitation the Feedback for any purpose related to the Specification and future versions, implementations, and test suites thereof.", + "json": "sun-sdk-spec-1.1.json", + "yaml": "sun-sdk-spec-1.1.yml", + "html": "sun-sdk-spec-1.1.html", + "license": "sun-sdk-spec-1.1.LICENSE" + }, + { + "license_key": "sun-sissl-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-sun-sissl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun Industry Standards Source License 1.0\n\nDEFINITIONS\n\n1.1. \"Commercial Use\" means distribution or otherwise\nmaking the Original Code available to a third party.\n\n1.2. \"Contributor Version\" means the combination of the\nOriginal Code, and the Modifications made by that particular\nContributor.\n\n1.3. \"Electronic Distribution Mechanism\" means a mechanism\ngenerally accepted in the software development community for\nthe electronic transfer of data.\n\n1.4. \"Executable\" means Original Code in any form other\nthan Source Code.\n\n1.5. \"Initial Developer\" means the individual or entity\nidentified as the Initial Developer in the Source Code\nnotice required by 2 (Exhibit A)\n\n1.6. \"Larger Work\" means a work which combines Original\nCode or portions thereof with code not governed by the terms\nof this License.\n\n1.7. \"License\" means this document.\n\n1.8. \"Licensable\" means having the right to grant, to the\nmaximum extent possible, whether at the time of the initial\ngrant or subsequently acquired, any and all of the rights\nconveyed herein.\n\n1.9. \"Modifications\" means any addition to or deletion from\nthe substance or structure of either the Original Code or\nany previous Modifications. A Modification is:\n\nA. Any addition to or deletion from the contents of a file\ncontaining Original Code or previous Modifications.\n\nB. Any new file that contains any part of the Original Code\nor previous Modifications. .\n\n1.10. \"Original Code\" means Source Code of computer\nsoftware code which is described in the Source Code notice\nrequired by Exhibit A as Original Code.\n\n1.11. \"Patent Claims\" means any patent claims, now owned or\nhereafter acquired, including without limitation, method,\nprocess, and apparatus claims, in any patent Licensable by\ngrantor.\n\n1.12. \"Source Code\" means the preferred form of the\nOriginal Code for making modifications to it, including all\nmodules it contains, plus any associated interface\ndefinition files, or scripts used to control compilation and\ninstallation of an Executable.\n\n1.13. \"Standards\" means the standard identified in Exhibit\nB or a subsequent version of such standard.\n\n1.14. \"You\" or \"Your\" means an individual or a legal entity\nexercising rights under, and complying with all of the terms\nof, this License or a future version of this License issued\nunder Section 6.1. For legal entities, \"You\" includes any\nentity which controls, is controlled by, or is under common\ncontrol with You. For purposes of this definition,\n\"control\" means (a) the power, direct or indirect, to cause\nthe direction or management of such entity, whether by\ncontract or otherwise, or (b) ownership of more than fifty\npercent (50%) of the outstanding shares or beneficial\nownership of such entity.\n\n2.0 SOURCE CODE LICENSE\n\n2.1 The Initial Developer Grant: The Initial Developer\nhereby grants You a world-wide, royalty-free, non-exclusive\nlicense, subject to third party intellectual property\nclaims:\n\na) under intellectual property rights (other than patent or\ntrademark) Licensable by Initial Developer to use,\nreproduce, modify, display, perform, sub license and\ndistribute the Original Code (or portions thereof )with or\nwithout Modifications, and/or as part of a Larger Work; and\n\nb) under Patents Claims infringed by the making, using or\nselling of Original Code, to make, have made, use, practice,\nsell, and offer for sale, and/or otherwise dispose of the\nOriginal Code (or portions thereof).\n\nc) the licenses granted in this Section 2.1(a ) and (b) are\neffective on the date Initial Developer first distributes\nOriginal Code under the terms of this License.\n\nd) Notwithstanding Section 2.1(b )above, no patent license\nis granted: 1) for code that You delete from the Original\nCode; 2) separate from the Original Code; or 3) for\ninfringements caused by: i) the modification of the\nOriginal Code or\n\nii) the combination of the Original Code with other software\nor devices, including but not limited to Modifications.\n\n3.0 DISTRIBUTION OBLIGATIONS\n\n3.1 Application of License. The Source Code version of\nOriginal Code may be distributed only under the terms of\nthis License or a future version of this License released\nunder Section 6.1, and You must include a copy of this\nLicense with every copy of the Source Code You distribute.\nYou may not offer or impose any terms on any Source Code\nversion that alters or restricts the applicable version of\nthis License or the recipient's rights hereunder. Your\nlicense for shipment of the Contributor Version is\nconditioned upon your full compliance with this Section.\nThe Modifications which you create must comply with all\nrequirements set out by the Standards body in effect 120\ndays before You ship the Contributor Version. In the event\nthat the Modifications do not meet such requirements, You\nagree to publish (i) any deviation from the Standards\nprotocol resulting from implementation of your Modifications\nand (ii) a reference implementation of Your Modifications,\nand to make any such deviation and reference implementation\navailable to all third parties under the same terms as the\nlicense on a royalty free basis within thirty (30) days of\nYour first customer shipment of Your Modifications.\n\n3.2 Required Notices. You must duplicate the notice in\nExhibit A in each file of the Source Code. If it is not\npossible to put such notice in a particular Source Code file\ndue to its structure, then You must include such notice in a\nlocation (such as a relevant directory ) where a user would\nbe likely to look for such a notice. If You created one or\nmore Modifications ) You may add your name as a Contributor\nto the notice described in Exhibit A. You must also\nduplicate this License in any documentation for the Source\nCode where You describe recipients' rights or ownership\nrights relating to Initial Code. You may choose to offer,\nand to charge a fee for, warranty, support, indemnity or\nliability obligations to one or more recipients of Your\nversion of the Code. However, You may do so only\n\non Your own behalf, and not on behalf of the Initial\nDeveloper. You must make it absolutely clear than any such\nwarranty, support, indemnity or liability obligation is\noffered by You alone, and You hereby agree to indemnify the\nInitial Developer for any liability incurred by the Initial\nDeveloper as a result of warranty, support, indemnity or\nliability terms You offer.\n\n3.3 Distribution of Executable Versions. You may distribute\nOriginal Code in Executable and Source form only if the\nrequirements of Section 3.1 and 3.2 have been met for that\nOriginal Code, and if You include a notice stating that the\nSource Code version of the Original Code is available under\nthe terms of this License. The notice must be conspicuously\nincluded in any notice in an Executable or Source versions,\nrelated documentation or collateral in which You describe\nrecipients' rights relating to the Original Code. You may\ndistribute the Executable and Source versions of Your\nversion of the Code or ownership rights under a license of\nYour choice, which may contain terms different from this\nLicense, provided that You are in compliance with the terms\nof this License. If You distribute the Executable and\nSource versions under a different license You must make it\nabsolutely clear that any terms which differ from this\nLicense are offered by You alone, not by the Initial\nDeveloper . You hereby agree to indemnify the Initial\nDeveloper for any liability incurred by the Initial\nDeveloper as a result of any such terms You offer .\n\n3.4 Larger Works. You may create a Larger Work by combining\nOriginal Code with other code not governed by the terms of\nthis License and distribute the Larger Work as a single\nproduct. In such a case, You must make sure the\nrequirements of this License are fulfilled for the Original\nCode.\n\n4.0 INABILITY TO COMPLY DUE TO STATUTE OR REGULATION\n\nIf it is impossible for You to comply with any of the terms\nof this License with respect to some or all of the Original\nCode due to statute, judicial order, or regulation then You\nmust:\n\na) comply with the terms of this License to the maximum\nextent possible; and\n\nb) describe the limitations and the code they affect. Such\ndescription must be included in the LEGAL file described in\nSection 3.2 and must be included with all distributions of\nthe Source Code. Except to the extent prohibited by statute\nor regulation, such description must be sufficiently\ndetailed for a recipient of ordinary skill to be able to\nunderstand it.\n\n5.0 APPLICATION OF THIS LICENSE This License applies to code\nto which the Initial Developer has attached the notice in\nExhibit A and to related Modifications as set out in Section\n3.1.\n\n6.0 VERSIONS OF THE LICENSE\n\n6.1 New Versions. Sun Microsystems, Inc. Sun may publish\nrevised and/or new versions of the License from time to\ntime. Each version will be given a distinguishing version\nnumber .\n\n6.2 Effect of New Versions. Once Original Code has been\npublished under a particular version of the License, You may\nalways continue to use it under the terms of that version.\nYou may also choose to use such Original Code under the\nterms of any subsequent version of the License published by\nSun. No one other than Sun has the right to modify the\nterms applicable to Original Code.\n\n7. DISCLAIMER OF W ARRANTY. ORIGINAL CODE IS PROVIDED\nUNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF\nANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT\nLIMITATION, WARRANTIES THAT THE ORIGINAL CODE IS FREE OF\nDEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR\nNON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND\nPERFORMANCE OF THE ORIGINAL CODE IS WITH YOU. SHOULD ANY\nORIGINAL CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE\nINITIAL DEVELOPER )ASSUME THE COST OF ANY NECESSARY\nSERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF\nWARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO\nUSE OF ANY ORIGINAL CODE IS AUTHORIZED HEREUNDER EXCEPT\nUNDER THIS DISCLAIMER.\n\n8.0 TERMINATION\n\n8.1 This License and the rights granted hereunder will\nterminate automatically if You fail to comply with terms\nherein and fail to cure such breach within 30 days of\nbecoming aware of the breach. All sublicenses to the\nOriginal Code which are properly granted shall survive any\ntermination of this License. Provisions which, by their\nnature, must remain in effect beyond the termination of this\nLicense shall survive.\n\n8.2 .In the event of termination under Section 8.1 above,\nall end user license agreements (excluding distributors and\nresellers) which have been validly granted by You or any\ndistributor hereunder prior to termination shall survive\ntermination.\n\n9.0 LIMIT OF LIABILITY UNDER NO CIRCUMSTANCES AND UNDER NO\nLEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE) ,CONTRACT,\nOR OTHER WISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER\nCONTRIBUTOR, OR ANY DISTRIBUTOR OF ORIGINAL CODE, OR ANY\nSUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR\nANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\nOF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR\nLOSS OF GOOD WILL, WORK STOPPAGE, COMPUTER FAILURE OR\nMALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR\nLOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE\nPOSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY\nSHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT\nAPPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME\nJURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF\nINCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND\nLIMITATION MAY NOT APPLY TO YOU.\n\n10.0 U .S. GOVERNMENT END USERS U.S. Government: If this\nSoftware is being acquired by or on behalf of the U.S.\nGovernment or by a U.S. Government prime contractor or\nsubcontractor (at any tier), then the Government's rights in\nthe Software and accompanying documentation shall be only as\nset forth in this license; this is in accordance with 48 C.F\n.R. 227.7201 through 227.7202-4 (for Department of Defense\n(DoD) acquisitions )and with 48 C.F.R.2.101 and 12.212( for\nnon-DoD acquisitions).\n\n11.0 MISCELLANEOUS This License represents the complete\nagreement concerning subject matter hereof. If any\nprovision of this License is held to be unenforceable, such\nprovision shall be reformed only to the extent necessary to\nmake it enforceable. This License shall be governed by\nCalifornia law provisions (except to the extent applicable\nlaw, if any, provides otherwise), excluding its\nconflict-of-law provisions. With respect to disputes in\nwhich at least one party is a citizen of, or an entity\nchartered or registered to do business in the United States\nof America, any litigation relating to this License shall be\nsubject to the jurisdiction of the Federal Courts of the\nNorthern District of California, with venue lying in Santa\nClara County, California, with the losing party responsible\nfor costs, including without limitation, court costs and\nreasonable attorneys fees and expenses. The application of\nthe United Nations Convention on Contracts for the\nInternational Sale of Goods is expressly excluded. Any law\nor regulation which provides that the language of a contract\nshall be construed against the drafter shall not apply to\nthis License.\n\nEXHIBIT A - Sun Standards\n\n\"The contents of this file are subject to the Sun Standards\nLicense Version 1.0 the (the \"License\";) You may not use\nthis file except in compliance with the License. You may\nobtain a copy of the License at\n .\n\n Software distributed under the License is distributed on\nan \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either\nexpress or implied. See the License for the specific\nlanguage governing rights and limitations under the License.\n\nThe Original Code is Copyright 1998 by Sun Microsystems, Inc\n\nThe Initial Developer of the Original Code is: Sun\nMicrosystems, Inc.\n\nPortions created by are\nCopyright .\n\nAll Rights Reserved.\n\nContributors: .\n\nEXHIBIT B - Sun Standards\n\nThe Standard is defined as the following IETF RFCs:\n\nRFC1831: RPC: Remote Procedure Call Protocol Specification\nVersion 2 RFC1832: XDR: External Data REpresentation\nStandard RFC1833: Binding Protocols for ONC RPC Version 2\nRFC2078: Generic Security Service Application Program\nInterface, Version 2 RFC2203: RPCSEC_GSS Protocol\nSpecification RFC2695: Authentication Mechanisms for ONC RPC", + "json": "sun-sissl-1.0.json", + "yaml": "sun-sissl-1.0.yml", + "html": "sun-sissl-1.0.html", + "license": "sun-sissl-1.0.LICENSE" + }, + { + "license_key": "sun-sissl-1.1", + "category": "Proprietary Free", + "spdx_license_key": "SISSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun Industry Standards Source License - Version 1.1\n\n 1.0 DEFINITIONS\n\n 1.1 \"Commercial Use\" means distribution or otherwise making the\n Original Code available to a third party.\n\n 1.2 \"Contributor Version\" means the combination of the Original Code,\n and the Modifications made by that particular Contributor.\n\n 1.3 \"Electronic Distribution Mechanism\" means a mechanism generally\n accepted in the software development community for the electronic\n transfer of data.\n\n 1.4 \"Executable\" means Original Code in any form other than Source\n Code.\n\n 1.5 \"Initial Developer\" means the individual or entity identified as\n the Initial Developer in the Source Code notice required by Exhibit A.\n\n 1.6 \"Larger Work\" means a work which combines Original Code or\n portions thereof with code not governed by the terms of this License.\n\n 1.7 \"License\" means this document.\n\n 1.8 \"Licensable\" means having the right to grant, to the maximum\n extent possible, whether at the time of the initial grant or\n subsequently acquired, any and all of the rights conveyed herein.\n\n 1.9 \"Modifications\" means any addition to or deletion from the\n substance or structure of either the Original Code or any previous\n Modifications. A Modification is:\n A. Any addition to or deletion from the contents of a file containing\n Original Code or previous Modifications.\n B. Any new file that contains any part of the Original Code or\n previous Modifications.\n\n 1.10 \"Original Code\" means Source Code of computer software code which\n is described in the Source Code notice required by Exhibit A as Original Code.\n\n 1.11 \"Patent Claims\" means any patent claim(s), now owned or hereafter\n acquired, including without limitation, method, process, and apparatus\n claims, in any patent Licensable by grantor.\n\n 1.12 \"Source Code\" means the preferred form of the Original Code for\n making modifications to it, including all modules it contains, plus\n any associated interface definition files, or scripts used to control\n compilation and installation of an Executable.\n\n 1.13 \"Standards\" means the standards identified in Exhibit B.\n\n 1.14 \"You\" (or \"Your\") means an individual or a legal entity\n exercising rights under, and complying with all of the terms of, this\n License or a future version of this License issued under Section 6.1.\n For legal entities, \"You'' includes any entity which controls, is\n controlled by, or is under common control with You. For purposes of\n this definition, \"control'' means (a) the power, direct or indirect,\n to cause the direction or management of such entity, whether by\n contract or otherwise, or (b) ownership of more than fifty percent\n (50%) of the outstanding shares or beneficial ownership of such\n entity.\n\n 2.0 SOURCE CODE LICENSE\n\n 2.1 The Initial Developer Grant\n The Initial Developer hereby grants You a world-wide, royalty-free,\n non-exclusive license, subject to third party intellectual property\n claims:\n (a) under intellectual property rights (other than patent or\n trademark) Licensable by Initial Developer to use, reproduce,\n modify, display, perform, sublicense and distribute the Original\n Code (or portions thereof) with or without Modifications, and/or\n as part of a Larger Work; and\n (b) under Patents Claims infringed by the making, using or selling\n of Original Code, to make, have made, use, practice, sell, and\n offer for sale, and/or otherwise dispose of the Original Code (or\n portions thereof).\n (c) the licenses granted in this Section 2.1(a) and (b) are\n effective on the date Initial Developer first distributes Original\n Code under the terms of this License.\n (d) Notwithstanding Section 2.1(b) above, no patent license is\n granted: 1) for code that You delete from the Original Code; 2)\n separate from the Original Code; or 3) for infringements caused\n by: i) the modification of the Original Code or ii) the\n combination of the Original Code with other software or devices,\n including but not limited to Modifications.\n\n 3.0 DISTRIBUTION OBLIGATIONS\n\n 3.1 Application of License.\n The Source Code version of Original Code may be distributed only under\n the terms of this License or a future version of this License released\n under Section 6.1, and You must include a copy of this License with\n every copy of the Source Code You distribute. You may not offer or\n impose any terms on any Source Code version that alters or restricts\n the applicable version of this License or the recipients' rights\n hereunder. Your license for shipment of the Contributor Version is\n conditioned upon Your full compliance with this Section. The\n Modifications which You create must comply with all requirements set\n out by the Standards body in effect one hundred twenty (120) days\n before You ship the Contributor Version. In the event that the\n Modifications do not meet such requirements, You agree to publish\n either (i) any deviation from the Standards protocol resulting from\n implementation of Your Modifications and a reference implementation of\n Your Modifications or (ii) Your Modifications in Source Code form, and\n to make any such deviation and reference implementation or\n Modifications available to all third parties under the same terms as\n this license on a royalty free basis within thirty (30) days of Your\n first customer shipment of Your Modifications.\n\n 3.2 Required Notices.\n You must duplicate the notice in Exhibit A in each file of the Source\n Code. If it is not possible to put such notice in a particular Source\n Code file due to its structure, then You must include such notice in a\n location (such as a relevant directory) where a user would be likely\n to look for such a notice. If You created one or more Modification(s)\n You may add Your name as a Contributor to the notice described in\n Exhibit A. You must also duplicate this License in any documentation\n for the Source Code where You describe recipients' rights or ownership\n rights relating to Initial Code. You may choose to offer, and to\n charge a fee for, warranty, support, indemnity or liability\n obligations to one or more recipients of Your version of the Code.\n However, You may do so only on Your own behalf, and not on behalf of\n the Initial Developer. You must make it absolutely clear than any such\n warranty, support, indemnity or liability obligation is offered by You\n alone, and You hereby agree to indemnify the Initial Developer for any\n liability incurred by the Initial Developer as a result of warranty,\n support, indemnity or liability terms You offer.\n\n 3.3 Distribution of Executable Versions.\n You may distribute Original Code in Executable and Source form only if\n the requirements of Sections 3.1 and 3.2 have been met for that\n Original Code, and if You include a notice stating that the Source\n Code version of the Original Code is available under the terms of this\n License. The notice must be conspicuously included in any notice in an\n Executable or Source versions, related documentation or collateral in\n which You describe recipients' rights relating to the Original Code.\n You may distribute the Executable and Source versions of Your version\n of the Code or ownership rights under a license of Your choice, which\n may contain terms different from this License, provided that You are\n in compliance with the terms of this License. If You distribute the\n Executable and Source versions under a different license You must make\n it absolutely clear that any terms which differ from this License are\n offered by You alone, not by the Initial Developer. You hereby agree\n to indemnify the Initial Developer for any liability incurred by the\n Initial Developer as a result of any such terms You offer.\n\n 3.4 Larger Works.\n You may create a Larger Work by combining Original Code with other\n code not governed by the terms of this License and distribute the\n Larger Work as a single product. In such a case, You must make sure\n the requirements of this License are fulfilled for the Original Code.\n\n 4.0 INABILITY TO COMPLY DUE TO STATUTE OR REGULATION\n\n If it is impossible for You to comply with any of the terms of this\n License with respect to some or all of the Original Code due to\n statute, judicial order, or regulation then You must: (a) comply with\n the terms of this License to the maximum extent possible; and (b)\n describe the limitations and the code they affect. Such description\n must be included in the LEGAL file described in Section 3.2 and must\n be included with all distributions of the Source Code. Except to the\n extent prohibited by statute or regulation, such description must be\n sufficiently detailed for a recipient of ordinary skill to be able to\n understand it.\n\n 5.0 APPLICATION OF THIS LICENSE\n\n This License applies to code to which the Initial Developer has\n attached the notice in Exhibit A and to related Modifications as set\n out in Section 3.1.\n\n 6.0 VERSIONS OF THE LICENSE\n\n 6.1 New Versions.\n Sun may publish revised and/or new versions of the License from time\n to time. Each version will be given a distinguishing version number.\n\n 6.2 Effect of New Versions.\n Once Original Code has been published under a particular version of\n the License, You may always continue to use it under the terms of that\n version. You may also choose to use such Original Code under the terms\n of any subsequent version of the License published by Sun. No one\n other than Sun has the right to modify the terms applicable to\n Original Code.\n\n 7.0 DISCLAIMER OF WARRANTY\n\n ORIGINAL CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS,\n WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\n WITHOUT LIMITATION, WARRANTIES THAT THE ORIGINAL CODE IS FREE OF\n DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.\n THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE ORIGINAL CODE\n IS WITH YOU. SHOULD ANY ORIGINAL CODE PROVE DEFECTIVE IN ANY RESPECT,\n YOU (NOT THE INITIAL DEVELOPER) ASSUME THE COST OF ANY NECESSARY\n SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY\n CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY ORIGINAL\n CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n 8.0 TERMINATION\n\n 8.1 This License and the rights granted hereunder will terminate\n automatically if You fail to comply with terms herein and fail to cure\n such breach within 30 days of becoming aware of the breach. All\n sublicenses to the Original Code which are properly granted shall\n survive any termination of this License. Provisions which, by their\n nature, must remain in effect beyond the termination of this License\n shall survive.\n\n 8.2 In the event of termination under Section 8.1 above, all end user\n license agreements (excluding distributors and resellers) which have\n been validly granted by You or any distributor hereunder prior to\n termination shall survive termination.\n\n 9.0 LIMIT OF LIABILITY\n\n UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\n (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL\n DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF ORIGINAL CODE,\n OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR\n ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY\n CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,\n WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\n COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\n INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF\n LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\n RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\n PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE\n EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO\n THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n 10.0 U.S. GOVERNMENT END USERS\n\n U.S. Government: If this Software is being acquired by or on behalf of\n the U.S. Government or by a U.S. Government prime contractor or\n subcontractor (at any tier), then the Government's rights in the\n Software and accompanying documentation shall be only as set forth in\n this license; this is in accordance with 48 C.F.R. 227.7201 through\n 227.7202-4 (for Department of Defense (DoD) acquisitions) and with 48\n C.F.R. 2.101 and 12.212 (for non-DoD acquisitions).\n\n 11.0 MISCELLANEOUS\n\n This License represents the complete agreement concerning subject\n matter hereof. If any provision of this License is held to be\n unenforceable, such provision shall be reformed only to the extent\n necessary to make it enforceable. This License shall be governed by\n California law provisions (except to the extent applicable law, if\n any, provides otherwise), excluding its conflict-of-law provisions.\n With respect to disputes in which at least one party is a citizen of,\n or an entity chartered or registered to do business in the United\n States of America, any litigation relating to this License shall be\n subject to the jurisdiction of the Federal Courts of the Northern\n District of California, with venue lying in Santa Clara County,\n California, with the losing party responsible for costs, including\n without limitation, court costs and reasonable attorneys' fees and\n expenses. The application of the United Nations Convention on\n Contracts for the International Sale of Goods is expressly excluded.\n Any law or regulation which provides that the language of a contract\n shall be construed against the drafter shall not apply to this License.\n\n EXHIBIT A - Sun Standards License\n\"The contents of this file are subject to the Sun Standards\nLicense Version 1.1 (the \"License\");\nYou may not use this file except in compliance with the\nLicense. You may obtain a copy of the\nLicense at .\n\nSoftware distributed under the License is distributed on\nan \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either\nexpress or implied. See the License for the specific\nlanguage governing rights and limitations under the License.\n\nThe Original Code is .\n\nThe Initial Developer of the Original Code is:\nSun Microsystems, Inc..\n\nPortions created by: \n\nare Copyright (C): \n\nAll Rights Reserved.\n\nContributor(s): \n\n EXHIBIT B - Standards\n\n The Standard is defined as the following:\n\n OpenOffice.org XML File Format Specification, located at\n http://xml.openoffice.org\n\n OpenOffice.org Application Programming Interface Specification,\n located at\n http://api.openoffice.org\n\n We welcome your feedback.\n CollabNet, Inc. CollabNet is a trademark of CollabNet, Inc.\n Sun, Sun Microsystems, the Sun Logo, Solaris, Java, StarOffice,\n StarOffice 6.0 and StarSuite 6.0 are trademarks or registered\n trademarks of Sun Microsystems, Inc., in the United States and other countries.", + "json": "sun-sissl-1.1.json", + "yaml": "sun-sissl-1.1.yml", + "html": "sun-sissl-1.1.html", + "license": "sun-sissl-1.1.LICENSE" + }, + { + "license_key": "sun-sissl-1.2", + "category": "Proprietary Free", + "spdx_license_key": "SISSL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "SUN INDUSTRY STANDARDS SOURCE LICENSE \nVersion 1.2 \n\n1.0 DEFINITIONS\n1.1 Commercial Use means distribution or otherwise making the Original Code available to a third party.\n\n1.2 Contributor Version means the combination of the Original Code, and the Modifications made by that particular Contributor.\n\n1.3 Electronic Distribution Mechanism means a mechanism generally accepted in the software development community for the electronic transfer of data.\n\n1.4 Executable means Original Code in any form other than Source Code.\n\n1.5 Initial Developer means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A.\n\n1.6 Larger Work means a work which combines Original Code or portions thereof with code not governed by the terms of this License.\n\n1.7 License means this document.\n\n1.8 Licensable means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein.\n\n1.9 Modifications means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. A Modification is: \nA. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. \nB. Any new file that contains any part of the Original Code or previous Modifications.\n\n1.10 Original Code means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code.\n\n1.11 Patent Claims means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor.\n\n1.12 Source Code means the preferred form of the Original Code for making modifications to it, including all modules it contains, plus any associated interface definition files, or scripts used to control compilation and installation of an Executable.\n\n1.13 Standards means the standards identified in Exhibit B.\n\n1.14 You (or Your) means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, You includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, control means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n\n2.0 SOURCE CODE LICENSE\n\n2.1 The Initial Developer Grant The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: \n(a)under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and \n(b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). \n(c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License. \n(d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices, including but not limited to Modifications.\n\n\n3.0 DISTRIBUTION OBLIGATIONS\n\n3.1 Application of License. \nThe Source Code version of Original Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients rights hereunder. Your license for shipment of the Contributor Version is conditioned upon Your full compliance with this Section. The Modifications which You create must comply with all requirements set out by the Standards body in effect one hundred twenty (120) days before You ship the Contributor Version. In the event that the Modifications do not meet such requirements, You agree to publish either (i) any deviation from the Standards protocol resulting from implementation of Your Modifications and a reference implementation of Your Modifications or (ii) Your Modifications in Source Code form, and to make any such deviation and reference implementation or Modifications available to all third parties under the same terms a this license on a royalty free basis within thirty (30) days of Your first customer shipment of Your Modifications. Additionally, in the event that the Modifications you create do not meet the requirements set out in this Section, You agree to comply with the Standards requirements set out in Exhibit B.\n\n3.2 Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add Your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients rights or ownership rights relating to Initial Code. \nYou may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Your version of the Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer for any liability incurred by the Initial Developer as a result of warranty, support, indemnity or liability terms You offer.\n\n3.3 Distribution of Executable Versions. You may distribute Original Code in Executable and Source form only if the requirements of Sections 3.1 and 3.2 have been met for that Original Code, and if You include a notice stating that the Source Code version of the Original Code is available under the terms of this License. The notice must be conspicuously included in any notice in an Executable or Source versions, related documentation or collateral in which You describe recipients rights relating to the Original Code. You may distribute the Executable and Source versions of Your version of the Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License. If You distribute the Executable and Source versions under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer. You hereby agree to indemnify the Initial Developer for any liability incurred by the Initial Developer as a result of any such terms You offer.\n\n3.4 Larger Works. You may create a Larger Work by combining Original Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Original Code.\n\n4.0 INABILITY TO COMPLY DUE TO STATUTE OR REGULATION \nIf it is impossible for You to comply with any of the terms of this License with respect to some or all of the Original Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.2 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n\n\n5.0 APPLICATION OF THIS LICENSE \nThis License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Modifications as set out in Section 3.1.\n\n\n6.0 VERSIONS OF THE LICENSE\n\n6.1 New Versions. Sun may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number.\n\n6.2 Effect of New Versions. Once Original Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Original Code under the terms of any subsequent version of the License published by Sun. No one other than Sun has the right to modify the terms applicable to Original Code.\n\n7.0 DISCLAIMER OF WARRANTY \nORIGINAL CODE IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE ORIGINAL CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE ORIGINAL CODE IS WITH YOU. SHOULD ANY ORIGINAL CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY ORIGINAL CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8.0 TERMINATION\n\n8.1 This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Original Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. 8.2 In the event of termination under Section 8.1 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination.\n\n\nEXHIBIT A - Sun Industry Standards Source License\n\n\n\"The contents of this file are subject to the Sun Industry \nStandards Source License Version 1.2 (the License); You \nmay not use this file except in compliance with the License.\"\n\n\"You may obtain a copy of the License at \ngridengine.sunsource.net/license.html\"\n\n\"Software distributed under the License is distributed on an \nAS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or \nimplied. See the License for the specific language governing \nrights and limitations under the License.\"\n\n\"The Original Code is Grid Engine.\"\n\n\"The Initial Developer of the Original Code is: \nSun Microsystems, Inc.\"\n\n\"Portions created by: Sun Microsystems, Inc. are \nCopyright (C) 2001 Sun Microsystems, Inc.\"\n\n\"All Rights Reserved.\"\n\n\"Contributor(s): \"\n\nEXHIBIT B - Standards\n\n\n1.0 Requirements for project Standards. The requirements for project Standards are version-dependent and are defined at: Grid Engine standards.\n\n2.0 Additional requirements. The additional requirements pursuant to Section 3.1 are defined as:\n\n2.1 Naming Conventions. If any of your Modifications do not meet the requirements of the Standard, then you must change the product name so that Grid Engine, gridengine, gridengine.sunsource, and similar naming conventions are not used.\n\n2.2 Compliance Claims. If any of your Modifications do not meet the requirements of the Standards you may not claim, directly or indirectly, that your implementation of the Standards is compliant.\n\nStandard License Header\nThe contents of this file are subject to the Sun Industry \nStandards Source License Version 1.2 (the License); You \nmay not use this file except in compliance with the License.\nYou may obtain a copy of the License at \ngridengine.sunsource.net/license.html\n\nSoftware distributed under the License is distributed on an \nAS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or \nimplied. See the License for the specific language governing \nrights and limitations under the License.\n\nThe Original Code is Grid Engine.\n\nThe Initial Developer of the Original Code is: \nSun Microsystems, Inc.\n\nPortions created by: Sun Microsystems, Inc. are \nCopyright (C) 2001 Sun Microsystems, Inc.\n\nAll Rights Reserved.\n\n\"Contributor(s): \"", + "json": "sun-sissl-1.2.json", + "yaml": "sun-sissl-1.2.yml", + "html": "sun-sissl-1.2.html", + "license": "sun-sissl-1.2.LICENSE" + }, + { + "license_key": "sun-source", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sun-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This source code is a product of Sun Microsystems, Inc. and is provided for\nunrestricted use. Users may copy or modify this source code without\ncharge.\n\nSUN SOURCE CODE IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE\nWARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR\nPURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.\n\nSun source code is provided with no support and without any obligation on the\npart of Sun Microsystems, Inc. to assist in its use, correction,\nmodification or enhancement.\n\nSUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE\nINFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY THIS SOFTWARE\nOR ANY PART THEREOF.\n\nIn no event will Sun Microsystems, Inc. be liable for any lost revenue\nor profits or other special, indirect and consequential damages, even if\nSun has been advised of the possibility of such damages.\n\nSun Microsystems, Inc.\n2550 Garcia Avenue\nMountain View, California 94043", + "json": "sun-source.json", + "yaml": "sun-source.yml", + "html": "sun-source.html", + "license": "sun-source.LICENSE" + }, + { + "license_key": "sun-ssscfr-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-sun-ssscfr-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Sun Solaris Source Code (Foundation Release) License 1.1\n\nREAD ALL THE TERMS OF THIS LICENSE CAREFULLY BEFORE ACCEPTING.\nBY ACCEPTING THIS LICENSE, YOU ARE ACCEPTING AND AGREEING TO ABIDE BY\nTHE TERMS AND CONDITIONS OF THIS LICENSE.\nIF YOU ARE AGREEING TO THIS LICENSE ON BEHALF OF A COMPANY, YOU\nREPRESENT THAT YOU ARE AUTHORIZED TO BIND THE COMPANY TO THE\nLICENSE.\nWHETHER YOU ARE ACTING ON YOUR OWN BEHALF OR THAT OF A COMPANY,\nYOU MUST BE OF MAJORITY AGE AND OTHERWISE COMPETENT TO ENTER INTO\nCONTRACTS.\n\nSUN SOLARIS TM SOURCE CODE (FOUNDATION RELEASE) LICENSE\nVersion 1.1\n\nI. DEFINITIONS\n\n\"Licensee Code\" means Reference Code, Contributed Code, and\nany combination thereof.\n\"Licensee\" means You, Original Contributor and any other party\nthat has entered into and has in effect a version of this License for\nthe Technology with Original Contributor.\n\"Contributed Code\" means Shared Modifications and any other\ncode other than Reference Code made available on the Technology\nSite by a Licensee.\n\"Contributor\" means any Licensee who makes available\nContributed Code.\n\"Covered Code\" means any and all code (including Modifications)\nimplementing all or any portion of the Technology Specifications or\nContributed Code Specifications.\n\"Interfaces\" means classes or other programming code or\nspecifications designed for use with the Technology comprising a\nmeans or link for invoking functionality, operations or protocols\nand which are additional to or extend the interfaces designated in\nthe Technology Specifications.\n\"Modifications\" means any (i) change or addition to Covered\nCode, or (ii) new source or object code implementing any portion\nof the Technology Specifications, but (iii) excluding any\nincorporated Reference Code.\n\"Original Contributor\" means Sun Microsystems, Inc., its\naffiliates, successors and assigns.\n\"Reference Code\" means source code for the Technology\ndesignated by Original Contributor at the Technology Site from\ntime to time.\n\"Research Use\" means research, reference, evaluation,\ndevelopment, educational or personal use, excluding use or\ndistribution for direct or indirect commercial (including strategic)\ngain or advantage.\n\"Shared Modifications\" means those Modifications which\nLicensee elects to share with other Licensees.\n\"Technology Specifications\" means the documentation for the\nTechnology designated by Original Contributor at the Technology\nSite, from time to time.\n\"Technology\" means the technology described in and\ncontemplated by the Technology Specifications.\n\"Technology Site\" means the website designated by Original\nContributor for accessing Licensee Code and Technology\nSpecifications.\n\"You\" means the individual executing this license or the legal\nentity or entities represented by the individual executing this\nlicense. \"Your\" is the possessive of \"You\".\n\nII. PURPOSE\nOriginal Contributor is licensing the Reference Code and Technology Specifications under and\nsubject to this Sun Solaris Source Code (Foundation Release) License (the License) to promote\nresearch, education, innovation and prototyping using the Technology.\n\nINTERNAL DEPLOYMENT, COMMERCIAL USE AND DISTRIBUTION OF\nTECHNOLOGY AND/OR REFERENCE CODE IN SOURCE CODE OR OBJECT CODE\nFORM IS NOT PERMITTED UNDER THIS AGREEMENT.\n\nIII. RESEARCH USE RIGHTS\n\tA. From Original Contributor. Subject to and conditioned upon your full compliance with\n\tthe terms and conditions of this License including Section IV (Restrictions and Licensee\n\tResponsibilities) and Section V.E.7 (International Use), Original Contributor:\n\n\t\t1. Grants to You a non-exclusive, worldwide and royalty-free license to the extent of\n\t\tOriginal Contributor's copyrights and trade secret rights in and covering the Reference\n\t\tCode and Technology Specifications to do the following for Your Research Use only:\n\t\ta. Reproduce and prepare derivative works of the Reference Code, in whole or in part,\n\t\talone or as part of Covered Code; and\n\t\tb. Reproduce and prepare derivative works of the Technology Specifications.\n\n\t\t2. will not, during the term of Your License, bring against You any claim alleging that\n\t\tYour using, making, having made, importing or distributing Licensee Code for Your\n\t\tResearch Use, insofar as permitted under Section III.A.1 of this License, necessarily\n\t\tinfringes any patent now owned or hereafter acquired by Original Contributor whose\n\t\tclaims cover subject matter contained in or embodied by the Reference Code or which\n\t\twould necessarily be infringed by the use or distribution of any and all\n\t\timplementations of the Technology Specifications.\n\n\t\t3. grants to You a non-exclusive, worldwide and royalty-free license, to the extent of its\n\t\tintellectual property rights therein, to use (i) Original Contributor's class, interface and\n\t\tpackage names only insofar as necessary to accurately reference or invoke Your\n\t\tModifications for Research Use, and (ii) any associated software tools, documents and\n\t\tinformation provided by Original Contributor at the Technology Site for use in\n\t\texercising the above license rights.\n\n\tB. Contributed Code. Subject to and conditioned upon compliance with the terms and\n\tconditions of this License, including Sections IV (Restrictions and Licensee\n\tResponsibilities) and V.E.7 (International Use), each Contributor:\n\n\t\t1. grants to each Licensee a non-exclusive, worldwide and royalty-free license to the\n\t\textent of such Contributor's copyrights and trade secret rights in and covering its\n\t\tContributed Code, to reproduce, prepare derivative works of, and distribute\n\t\tContributed Code, in whole or in part, in source code and object code form, to the\n\t\tsame extent as permitted under such Licensee's License with Original Contributor\n\t\t(including all supplements thereto).\n\n\t\t2. will not, during the term of the Licensee's License, bring against any Licensee any\n\t\tclaim alleging that using, making, having made, importing or distributing Contributed\n\t\tCode as permitted under this License necessarily infringes any patent now owned or\n\t\thereafter acquired by such Contributor whose claims would necessarily be infringed\n\t\tby the use or distribution of the Contributed Code. This covenant applies to the\n\t\tcombination of the Contributed Code and the Reference Code if, at the time the\n\t\tContributed Code is added to Reference Code, such addition of Contributed Code\n\t\tcauses such combination to be covered by said patents. This covenant shall not apply\n\t\tto any other combinations which include the Contributed Code.\n\n\tC. Modifications. You covenant that You will not bring against Original Contributor and/or\n\tSolaris licensees any claim alleging that any patent now owned or hereafter acquired by\n\tYou is infringed by Original Contributor and/or Solaris licensees where such patent is\n\trelated to Modifications to the Reference Code or based on Reference Code. Any\n\tpermitted transfer of this Agreement, your Modifications, or such patent must be subject\n\tto this covenant.\n\n\tD. No Implied Licenses. Neither party is granted any right or license other than the licenses\n\tand covenants expressly set out herein. Other than the licenses and covenants expressly\n\tset out herein, Original Contributor retains all right, title and interest in Reference Code\n\tand Technology Specifications and You retain all right, title and interest in Your\n\tModifications and associated specifications. Except as expressly permitted herein, You\n\tSun Solaris Source Code (FR) License 5 December 4, 2000\n\tmay not otherwise use any package, class or interface naming conventions that appear to\n\toriginate from Original Contributor.\n\nIV. RESTRICTIONS AND RESPONSIBILITIES.\n\nAs a condition to Your license and other rights and immunities, You must comply with the\nrestrictions and responsibilities set forth below.\n\n\tA. Source Code Availability. You may provide Contributed Code to Original Contributor at\n\tany time, in Your discretion. Original Contributor will post Your Contributed Code and\n\tContributed Code Specifications on the Technology Site.\n\n\tB. Notices. You must reproduce without alteration copyright and other proprietary notices\n\tin any Covered Code that You create. The statement \"Use and Distribution is subject to\n\tthe Sun Solaris Source Code (Foundation Release) License available at\n\t\"http://www.sun.com/solaris/source\" must appear prominently in Your Modifications\n\tand, in all cases, in the same file as all Your copyright and other proprietary notices.\n\n\tC. Modifications. You must include a \"diff\" file with Your Contributed Code that identifies\n\tand details the changes or additions You made, the version of Reference Code or\n\tContributed Code You used and the date of such changes or additions. In addition, you\n\tmust provide any Contributed Code Specifications for Your Contributed Code. Your\n\tModifications are Covered Code and You expressly agree that use and distribution, in\n\twhole or in part, of Your Modifications shall only be done in accordance with and\n\tsubject to this License.\n\n\tD. Extensions.\n\n\t\t1. You may create and add \"Interfaces\" but, unless expressly permitted at the Technology\n\t\tSite, You may not incorporate any Reference Code in Your Interfaces. If You choose to\n\t\tdisclose or permit disclosure of Your Interfaces to even a single third party for the\n\t\tpurposes of enabling such third party to independently develop and distribute (directly\n\t\tor indirectly) technology which invokes such Interfaces, You must then make the\n\t\tInterfaces open by (i) promptly following completion thereof, publishing to the\n\t\tindustry, on a non-confidential basis and free of all copyright restrictions, a reasonably\n\t\tdetailed, current and accurate specification for the Interfaces, and (ii) as soon as\n\t\treasonably possible, but in no event more than thirty (30) days following publication\n\t\tof Your specification, making available on reasonable terms and without\n\t\tdiscrimination, a reasonably complete and practicable test suite and methodology\n\t\tadequate to create and test implementations of the Interfaces by a reasonably skilled\n\t\ttechnologist.\n\n\t\t2. You shall not assert any intellectual property rights You may have covering Your\n\t\tInterfaces which would necessarily be infringed by the creation, use or distribution of\n\t\tall reasonable independent implementations of your specification of such Interfaces by\n\t\tSun Solaris Source Code (FR) License 6 December 4, 2000\n\t\ta Licensee or Original Contributor. Nothing herein is intended to prevent You from\n\t\tenforcing any of Your intellectual property rights covering Your specific\n\t\timplementation of Your Interfaces or functionality using such Interfaces other than as\n\t\tspecifically set forth in this Section D.2.\n\n\tE. Confidential Information. You agree to treat the Reference Code as confidential\n\tinformation of the Original Contributor. Reference Code will not be provided by You to\n\tany third party. You will establish appropriate procedures to prevent the disclosure of\n\tsuch Reference Code.\n\n\tF. Sharing of Covered Code. You may not share Covered Code with any non-Licensee\n\tunder any circumstances. You may only share Covered Code with other Licensees on\n\tthe Technology Site, consistent with any rules or guidelines set forth in this Agreement\n\tand the Technology Site.\n\nV. GOVERNANCE\n\n\tA. LICENSE VERSIONS.\n\tOnly Original Contributor may promulgate new versions of this License. Once You have\n\taccepted Reference Code, Technology Specifications, Contributed Code and/or\n\tContributed Code Specifications under a version of this License, You may always\n\tcontinue to use such version of Reference Code, Technology Specifications, Contributed\n\tCode and/or Contributed Code Specifications under that version of the License. New code\n\tand specifications which You may subsequently choose to accept will be subject to any\n\tnew License in effect at the time of Your acceptance of such code and specifications.\n\n\tB. DISCLAIMER OF WARRANTIES.\n\t\t1. AS IS. COVERED CODE AND ALL SPECIFICATIONS ARE PROVIDED \"AS IS\",\n\t\tWITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED\n\t\tINCLUDING, WITHOUT LIMITATION, WARRANTIES THAT ANY COVERED\n\t\tCODE OR SPECIFICATIONS ARE FREE OF DEFECTS, MERCHANTABLE, FIT\n\t\tFOR A PARTICULAR PURPOSE OR NON-INFRINGING OF THIRD PARTY\n\t\tRIGHTS. YOU AGREE THAT YOU BEAR THE ENTIRE RISK IN CONNECTION\n\t\tWITH YOUR USE AND DISTRIBUTION OF ANY AND ALL COVERED CODE\n\t\tOR SPECIFICATIONS UNDER THIS LICENSE. NO USE OF ANY COVERED\n\t\tCODE OR SPECIFICATIONS IS AUTHORIZED EXCEPT SUBJECT TO AND IN\n\t\tCONSIDERATION FOR THIS DISCLAIMER.\n\n\t\t2. You understand that, although each Licensee grants the licenses set forth in the License,\n\t\tno assurances are provided by any Licensee that Covered Code or any specifications do\n\t\tnot infringe the intellectual property rights of any third party.\n\t\tSun Solaris Source Code (FR) License 7 December 4, 2000\n\n\t\t3. Hazardous Applications. You acknowledge that Reference Code and Technology\n\t\tSpecifications are neither designed nor intended for use in the design, construction,\n\t\toperation or maintenance of any nuclear facility.\n\n\tC. LIMITATION ON LIABILITY.\n\n\t\t1. Infringement. Each Licensee disclaims any liability to all other Licensee for claims\n\t\tbrought by any third party based on infringement of intellectual property rights. Original\n\t\tContributor represents that, to its knowledge, it has sufficient copyrights to allow You to\n\t\tuse and distribute the Reference Code as herein permitted and You represent that, to\n\t\tYour knowledge, You have sufficient copyrights to allow each Licensee and Original\n\t\tContributor to use and distribute Your Shared Modifications and Error Corrections as\n\t\tcontemplated herein. You agree to notify Original Contributor should You become\n\t\taware of any potential or actual infringement of the Technology or any of Original\n\t\tContributor's intellectual property rights in the Technology, Reference Code or\n\t\tTechnology Specifications.\n\n\t\t2. Suspension. If any portion of, or functionality implemented by, the Reference Code,\n\t\tTechnology or Technology Specifications becomes the subject of a claim or threatened\n\t\tclaim of infringement (\"Affected Materials\"), Original Contributor may, in its\n\t\tunrestricted discretion, suspend Your rights to use and distribute the Affected Materials\n\t\tunder this License. Such suspension of rights will be effective immediately upon\n\t\tOriginal Contributor's posting of notice of suspension on the Technology Site. Original\n\t\tContributor has no obligation to lift the suspension of rights relative to the Affected\n\t\tMaterials until a final, non-appealable determination is made by a court or governmental\n\t\tagency of competent jurisdiction that Original Contributor is legally able, without the\n\t\tpayment of a fee or royalty, to reinstate Your rights to the Affected Materials to the full\n\t\textent contemplated hereunder. Upon such determination, Original Contributor will lift\n\t\tthe suspension by posting a notice to such effect on the Technology Site. Nothing herein\n\t\tshall be construed to prevent You, at Your option and expense, and subject to applicable\n\t\tlaw and the restrictions and responsibilities set forth in this License and any\n\t\tSupplements, from replacing Reference Code in Affected Materials with non-infringing\n\t\tcode or independently negotiating, without compromising or prejudicing Original\n\t\tContributor's position, to obtain the rights necessary to use Affected Materials as herein\n\t\tpermitted.\n\n\t\t3. Disclaimer. ORIGINAL CONTRIBUTOR'S LIABILITY TO YOU FOR ALL CLAIMS\n\t\tRELATING TO THIS LICENSE OR ANY SUPPLEMENT HERETO, WHETHER\n\t\tFOR BREACH OR TORT, IS LIMITED TO THE GREATER OF ONE THOUSAND\n\t\tDOLLARS (US $1000.00) OR THE FULL AMOUNT PAID BY YOU FOR THE\n\t\tMATERIALS GIVING RISE TO THE CLAIM, IF ANY. IN NO EVENT WILL\n\t\tORIGINAL CONTRIBUTOR BE LIABLE FOR ANY INDIRECT, PUNITIVE,\n\t\tSPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION\n\t\tWITH OR ARISING OUT OF THIS LICENSE (INCLUDING, WITHOUT\n\t\tLIMITATION, LOSS OF PROFITS, USE, DATA OR ECONOMIC ADVANTAGE OF\n\t\tSun Solaris Source Code (FR) License 8 December 4, 2000\n\t\tANY SORT), HOWEVER IT ARISES AND ON ANY THEORY OF LIABILITY\n\t\tWHETHER OR NOT ORIGINAL CONTRIBUTOR HAS BEEN ADVISED OF THE\n\t\tPOSSIBILITY OF SUCH DAMAGE AND NOTWITHSTANDING FAILURE OF THE\n\t\tESSENTIAL PURPOSE OF ANY REMEDY.\n\n\tD. TERMINATION.\n\tYou may terminate this License at any time by notifying Original Contributor in writing.\n\tAll Your rights will terminate under this License if You fail to comply with any of the\n\tmaterial terms or conditions of this License and do not cure such failure in a reasonable\n\tperiod of time after becoming aware of such noncompliance.\n\n\tIf You institute patent litigation against a Licensee with respect to a patent applicable to\n\tLicensee Code, then any patent licenses granted by such Licensee to You under this\n\tLicense shall terminate as of the date such litigation is filed. In addition, if You institute\n\tpatent litigation against any Licensee or Original Contributor alleging that Reference\n\tCode, Technology or Technology Specifications infringe Your patent(s), then the rights\n\tgranted to You under Section III.A above will terminate.\n\n\tUpon termination, You must discontinue all uses and distribution of Licensee Code,\n\texcept that You may continue to use, reproduce, prepare derivative works of Your\n\tModifications (without the benefit of any license arising from this License) for purposes\n\tother than to implement functionality designated in any portion of the Technology\n\tSpecifications. Properly granted sublicenses to third parties will survive termination.\n\tProvisions which, by their nature, should remain in effect following termination survive.\n\n\tE. MISCELLANEOUS.\n\t\t1. Trademark. You agree to comply with Original Contributor's Trademark & Logo Usage\n\t\tRequirements, as modified from time to time, available at the Technology Site. Except\n\t\tas expressly provided in this License, You are granted no rights in or to any \"Sun\",\n\t\t\"Solaris\", \"Jini\", \"Jiro\" or \"Java\" trademarks now or hereafter used or licensed by\n\t\tOriginal Contributor (the \"Sun Trademarks\"). You agree not to (i) challenge Original\n\t\tContributor's ownership or use of Sun Trademarks; (ii) attempt to register any Sun\n\t\tTrademarks, or any mark or logo substantially similar thereto; or (iii) incorporate any\n\t\tSun Trademarks into you own trademarks, product names, service marks, company\n\t\tnames or domain names.\n\n\t\t2. Integration and Assignment. Original Contributor may assign this Research Use License\n\t\tto another by written notification to the other party. This License represents the complete\n\t\tagreement of the parties concerning the subject matter hereof.\n\n\t\t3. Severability. If any provision of this License is held unenforceable, such provision shall\n\t\tbe reformed to the extent necessary to make it enforceable unless to do so would defeat\n\t\tthe intent of the parties.\n\n\t\t4. Governing Law. This License is governed by the laws of the United States and the State\n\t\tof California, as applied to contracts entered into and performed in California between\n\t\tSun Solaris Source Code (FR) License 9 December 4, 2000\n\t\tCalifornia residents. The United Nations Convention on Contracts for the International\n\t\tSale of Goods shall not apply. Nor shall any law or regulation which provides that a\n\t\tcontract be construed against the drafter.\n\n\t\t5. Dispute Resolution.\n\t\ta. Any dispute arising out of or relating to this License shall be finally settled by\n\t\tarbitration as set forth in this Section, except that either party may bring an action in a\n\t\tcourt of competent jurisdiction (which jurisdiction shall be exclusive), relative to any\n\t\tdispute relating to such party's intellectual property rights. Arbitration will be\n\t\tadministered (i) by the American Arbitration Association (AAA), (ii) in accordance\n\t\twith the rules of the United Nations Commission on International Trade Law\n\t\t(UNCITRAL) (the \"Rules\") in effect at the time of arbitration, modified as set forth\n\t\therein, and (iii) the arbitrator will apply the governing laws required under Section E.4\n\t\tabove. Judgment upon the award rendered by the arbitrator may be entered in any\n\t\tcourt having jurisdiction to enforce such award. The arbitrator may not award damages\n\t\tin excess of or of a different type than those permitted by this License and any such\n\t\taward is void.\n\t\tb. All proceedings will be in English and conducted by a single arbitrator selected in\n\t\taccordance with the Rules who is fluent in English, familiar with technology matters\n\t\tpertinent in the dispute and either a retired judge or practicing attorney having at least\n\t\tten (10) years litigation experience. Venue for arbitration will be in San Francisco,\n\t\tCalifornia, unless the parties agree otherwise. Each party will be required to produce\n\t\tdocuments relied upon in the arbitration and to respond to no more than twenty-five\n\t\tsingle question interrogatories. All awards are payable in US dollars and may include\n\t\tfor the prevailing party (i) pre-judgment interest, (ii) reasonable attorney's fees\n\t\tincurred in connection with the arbitration, and (iii) reasonable costs and expenses\n\t\tincurred in enforcing the award.\n\n\t\t6. U.S. Government: If this Software is being acquired by or on behalf of the U.S.\n\t\tGovernment or by a U.S. Government prime contractor or subcontractor (at any tier),\n\t\tthen the Government's rights in this Software and accompanying documentation shall be\n\t\tonly as set forth in this license; this is in accordance with 48 CFR 227.7201 through\n\t\t227.7202-4 (for Department of Defense acquisitions) and with 48 CFR 2.101 and\n\t\t12.212 (for non-DoD acquisitions).\n\n\t\t7. International Use.\n\t\ta. Covered Code is subject to US export control laws and may be subject to export or\n\t\timport regulations in other countries. Each party shall comply fully with all such laws\n\t\tand regulations and acknowledges its responsibility to obtain such licenses to export,\n\t\tre-export or import as may be required. You must pass through these obligations to all\n\t\tYour licensees.\n\t\tSun Solaris Source Code (FR) License 10 December 4, 2000\n\t\tb. You may not distribute Reference Code or Technology Specifications into countries\n\t\tother than those listed on the Technology Site by Original Contributor, from time to\n\t\ttime.\n\nACCEPTED AND AGREED:\nSignature:\nPrinted Name\nand Title:\nCompany:\nDate:\nSDLC Personal ID:\nEmail Address: \nPhone Number: \nSun Solaris Source Code (FR) License 11 December 4, 2000\n\nATTACHMENT A-1\n\nSTUDENT ACKNOWLDGEMENT\nYou acknowledge that this software and related documentation has been obtained by your\neducational institution subject to the Sun Solaris Source Code (Foundation Release) License (the\nLicense). You have been provided with access to the software and documentation for use only in\nconnection with your course work as a matriculated student of your educational institution.\nCommercial use of the software and documentation is expressly prohibited.\nTHIS SOFTWARE AND RELATED DOCUMENTATION CONTAINS PROPRIETARY\nMATERIALS OF SUN MICROSYSTEMS, INC. PROTECTED BY VARIOUS\nINTELLECTUAL PROPERTY RIGHTS. YOUR USE OF THE SOFTWARE AND\nDOCUMENTATION IS LIMITED. YOU ACKNOWLEDGE THAT THE SOFTWARE AND\nRELATED DOCUMENTATION SHALL BE TREATED AS CONFIDENTIAL\nINFORMATION.\n- - - - - - - - -Signature: \nPrinted Name: \nDate: \nSDLC Personal ID: \nEmail Address: \nPhone Number:", + "json": "sun-ssscfr-1.1.json", + "yaml": "sun-ssscfr-1.1.yml", + "html": "sun-ssscfr-1.1.html", + "license": "sun-ssscfr-1.1.LICENSE" + }, + { + "license_key": "sunpro", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sunpro", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Developed at SunPro, a Sun Microsystems, Inc. business.\n\nPermission to use, copy, modify, and distribute this\nsoftware is freely granted, provided that this notice\nis preserved.", + "json": "sunpro.json", + "yaml": "sunpro.yml", + "html": "sunpro.html", + "license": "sunpro.LICENSE" + }, + { + "license_key": "sunsoft", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sunsoft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without restrict-\nion, including without limitation the rights to use, copy, modify,\nmerge, publish distribute, sublicense, and/or sell copies of the\nSoftware, and to permit persons to whom the Software is furnished\nto do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-\nINFRINGEMENT. IN NO EVENT SHALL SUNSOFT, INC. OR ITS PARENT\nCOMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\nExcept as contained in this notice, the name of SunSoft, Inc.\nshall not be used in advertising or otherwise to promote the\nsale, use or other dealings in this Software without written\nauthorization from SunSoft Inc.", + "json": "sunsoft.json", + "yaml": "sunsoft.yml", + "html": "sunsoft.html", + "license": "sunsoft.LICENSE" + }, + { + "license_key": "supervisor", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-supervisor", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Supervisor License\nhttps://github.com/Supervisor/supervisor/blob/master/LICENSES.txt\n\nSupervisor is licensed under the following license:\n\n A copyright notice accompanies this license document that identifies\n the copyright holders.\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n 1. Redistributions in source code must retain the accompanying\n copyright notice, this list of conditions, and the following\n disclaimer.\n\n 2. Redistributions in binary form must reproduce the accompanying\n copyright notice, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n\n 3. Names of the copyright holders must not be used to endorse or\n promote products derived from this software without prior\n written permission from the copyright holders.\n\n 4. If any files are modified, you must cause the modified files to\n carry prominent notices stating that you changed the files and\n the date of any change.\n\n Disclaimer\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND\n ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\n TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\n ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF\n THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nhttp_client.py code is based on code by Daniel Krech, which was\nreleased under this license:\n\n LICENSE AGREEMENT FOR RDFLIB 0.9.0 THROUGH 2.3.1\n ------------------------------------------------\n Copyright (c) 2002-2005, Daniel Krech, http://eikeon.com/\n All rights reserved.\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n\n * Neither the name of Daniel Krech nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nMedusa, the asynchronous communications framework upon which\nsupervisor's server and client code is based, was created by Sam\nRushing:\n\n Medusa was once distributed under a 'free for non-commercial use'\n license, but in May of 2000 Sam Rushing changed the license to be\n identical to the standard Python license at the time. The standard\n Python license has always applied to the core components of Medusa,\n this change just frees up the rest of the system, including the http\n server, ftp server, utilities, etc. Medusa is therefore under the\n following license:\n\n ============================== \n Permission to use, copy, modify, and distribute this software and\n its documentation for any purpose and without fee is hereby granted,\n provided that the above copyright notice appear in all copies and\n that both that copyright notice and this permission notice appear in\n supporting documentation, and that the name of Sam Rushing not be\n used in advertising or publicity pertaining to distribution of the\n software without specific, written prior permission.\n\n SAM RUSHING DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN\n NO EVENT SHALL SAM RUSHING BE LIABLE FOR ANY SPECIAL, INDIRECT OR\n CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\n OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,\n NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION\n WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n ==============================\n\nSome software in this distribution is released under the Zope Public\nLicense (as marked in its file header):\n\n Zope Public License (ZPL) Version 2.1\n -------------------------------------\n\n A copyright notice accompanies this license document that\n identifies the copyright holders.\n\n This license has been certified as open source. It has also\n been designated as GPL compatible by the Free Software\n Foundation (FSF).\n\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the\n following conditions are met:\n\n 1. Redistributions in source code must retain the\n accompanying copyright notice, this list of conditions,\n and the following disclaimer.\n\n 2. Redistributions in binary form must reproduce the accompanying\n copyright notice, this list of conditions, and the\n following disclaimer in the documentation and/or other\n materials provided with the distribution.\n\n 3. Names of the copyright holders must not be used to\n endorse or promote products derived from this software\n without prior written permission from the copyright\n holders.\n\n 4. The right to distribute this software or to use it for\n any purpose does not give you the right to use\n Servicemarks (sm) or Trademarks (tm) of the copyright\n holders. Use of them is covered by separate agreement\n with the copyright holders.\n\n 5. If any files are modified, you must cause the modified\n files to carry prominent notices stating that you changed\n the files and the date of any change.\n\n Disclaimer\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS''\n AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT\n NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN\n NO EVENT SHALL THE COPYRIGHT HOLDERS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\n\nSupervisor Copyright Notice\n\nSupervisor is Copyright (c) 2006-2011 Agendaless Consulting and Contributors.\n(http://www.agendaless.com), All Rights Reserved\n\n This software is subject to the provisions of the license at\n http://www.repoze.org/LICENSE.txt . A copy of this license should\n accompany this distribution. THIS SOFTWARE IS PROVIDED \"AS IS\" AND\n ANY AND ALL EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING,\n BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF TITLE,\n MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE.\n\nTrackRefs code Copyright (c) 2007 Zope Corporation and Contributors\n\n This software is subject to the provisions of the Zope Public License, \n Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. \n THIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY AND ALL EXPRESS OR IMPLIED \n WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED \n WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS \n FOR A PARTICULAR PURPOSE. \n\nmedusa was (is?) Copyright (c) Sam Rushing.\n\nhttp_client.py code Copyright (c) by Daniel Krech, http://eikeon.com/.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "supervisor.json", + "yaml": "supervisor.yml", + "html": "supervisor.html", + "license": "supervisor.LICENSE" + }, + { + "license_key": "sustainable-use-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-sustainable-use-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "# Sustainable Use License\n\nVersion 1.0\n\n## Acceptance\n\nBy using the software, you agree to all of the terms and conditions below.\n\n## Copyright License\n\nThe licensor grants you a non-exclusive, royalty-free, worldwide, non-sublicensable, non-transferable license to use, copy, distribute, make available, and prepare derivative works of the software, in each case subject to the limitations below.\n\n## Limitations\n\nYou may use or modify the software only for your own internal business purposes or for non-commercial or personal use.\nYou may distribute the software or provide it to others only if you do so free of charge for non-commercial purposes.\nYou may not alter, remove, or obscure any licensing, copyright, or other notices of the licensor in the software. Any use of the licensor\u2019s trademarks is subject to applicable law.\n\n## Patents\n\nThe licensor grants you a license, under any patent claims the licensor can license, or becomes able to license, to make, have made, use, sell, offer for sale, import and have imported the software, in each case subject to the limitations and conditions in this license. This license does not cover any patent claims that you cause to be infringed by modifications or additions to the software. If you or your company make any written claim that the software infringes or contributes to infringement of any patent, your patent license for the software granted under these terms ends immediately. If your company makes such a claim, your patent license ends immediately for work on behalf of your company.\n\n## Notices\n\nYou must ensure that anyone who gets a copy of any part of the software from you also gets a copy of these terms.\nIf you modify the software, you must include in any modified copies of the software a prominent notice stating that you have modified the software.\n\n## No Other Rights\n\nThese terms do not imply any licenses other than those expressly granted in these terms.\n\n## Termination\n\nIf you use the software in violation of these terms, such use is not licensed, and your license will automatically terminate. If the licensor provides you with a notice of your violation, and you cease all violation of this license no later than 30 days after you receive that notice, your license will be reinstated retroactively. However, if you violate these terms after such reinstatement, any additional violation of these terms will cause your license to terminate automatically and permanently.\n\n## No Liability\n\nAs far as the law allows, the software comes as is, without any warranty or condition, and the licensor will not be liable to you for any damages arising out of these terms or the use or nature of the software, under any kind of legal claim.\n\n## Definitions\n\nThe \u201clicensor\u201d is the entity offering these terms.\n\nThe \u201csoftware\u201d is the software the licensor makes available under these terms, including any portion of it.\n\n\u201cYou\u201d refers to the individual or entity agreeing to these terms.\n\n\u201cYour company\u201d is any legal entity, sole proprietorship, or other kind of organization that you work for, plus all organizations that have control over, are under the control of, or are under common control with that organization. Control means ownership of substantially all the assets of an entity, or the power to direct its management and policies by vote, contract, or otherwise. Control can be direct or indirect.\n\n\u201cYour license\u201d is the license granted to you for the software under these terms.\n\n\u201cUse\u201d means anything you do with the software requiring your license.\n\n\u201cTrademark\u201d means trademarks, service marks, and similar rights.", + "json": "sustainable-use-1.0.json", + "yaml": "sustainable-use-1.0.yml", + "html": "sustainable-use-1.0.html", + "license": "sustainable-use-1.0.LICENSE" + }, + { + "license_key": "svndiff", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-svndiff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\n notice(s), this list of conditions and the following disclaimer\n unmodified other than the allowable addition of one or more\n copyright notices.\n2. Redistributions in binary form must reproduce the above copyright\n notice(s), this list of conditions and the following disclaimer in\n the documentation and/or other materials provided with the\n distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "svndiff.json", + "yaml": "svndiff.yml", + "html": "svndiff.html", + "license": "svndiff.LICENSE" + }, + { + "license_key": "swig", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-swig", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You may copy, modify, distribute, and make derivative works based on this\nsoftware, in source code or object code form, without restriction. If you\ndistribute the software to others, you may do so according to the terms of your\nchoice. This software is offered as is, without warranty of any kind.", + "json": "swig.json", + "yaml": "swig.yml", + "html": "swig.html", + "license": "swig.LICENSE" + }, + { + "license_key": "swl", + "category": "Permissive", + "spdx_license_key": "SWL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "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.\n\nIN 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.\n\nGOVERNMENT 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.\n\nBY INSTALLING THIS SOFTWARE, YOU ACKNOWLEDGE THAT YOU HAVE READ THIS AGREEMENT, THAT YOU UNDERSTAND IT, AND THAT YOU AGREE TO BE BOUND BY ITS TERMS AND CONDITIONS.", + "json": "swl.json", + "yaml": "swl.yml", + "html": "swl.html", + "license": "swl.LICENSE" + }, + { + "license_key": "sybase", + "category": "Proprietary Free", + "spdx_license_key": "Watcom-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "USE OF THE SYBASE OPEN WATCOM SOFTWARE DESCRIBED BELOW (\"SOFTWARE\") IS \nSUBJECT TO THE TERMS AND CONDITIONS SET FORTH IN THE SYBASE OPEN WATCOM \nPUBLIC LICENSE SET FORTH BELOW (\"LICENSE\"). YOU MAY NOT USE THE SOFTWARE \nIN ANY MANNER UNLESS YOU ACCEPT THE TERMS AND CONDITIONS OF THE LICENSE. \nYOU INDICATE YOUR ACCEPTANCE BY IN ANY MANNER USING (INCLUDING WITHOUT \nLIMITATION BY REPRODUCING, MODIFYING OR DISTRIBUTING) THE SOFTWARE. IF YOU \nDO NOT ACCEPT ALL OF THE TERMS AND CONDITIONS OF THE LICENSE, DO NOT USE \nTHE SOFTWARE IN ANY MANNER.\n\n\nSybase Open Watcom Public License version 1.0\n\n1. General; Definitions. This License applies only to the following \nsoftware programs: the open source versions of Sybase's Watcom C/C++ and \nFortran compiler products (\"Software\"), which are modified versions of, \nwith significant changes from, the last versions made commercially \navailable by Sybase. As used in this License:\n\n1.1 \"Applicable Patent Rights\" mean: (a) in the case where Sybase is the \ngrantor of rights, (i) claims of patents that are now or hereafter \nacquired, owned by or assigned to Sybase and (ii) that cover subject matter \ncontained in the Original Code, but only to the extent necessary to use, \nreproduce and/or distribute the Original Code without infringement; and (b) \nin the case where You are the grantor of rights, (i) claims of patents that \nare now or hereafter acquired, owned by or assigned to You and (ii) that \ncover subject matter in Your Modifications, taken alone or in combination \nwith Original Code.\n\n1.2 \"Contributor\" means any person or entity that creates or contributes to \nthe creation of Modifications.\n\n1.3 \"Covered Code\" means the Original Code, Modifications, the combination \nof Original Code and any Modifications, and/or any respective portions \nthereof.\n\n1.4 \"Deploy\" means to use, sublicense or distribute Covered Code other than \nfor Your internal research and development (R&D) and/or Personal Use, and \nincludes without limitation, any and all internal use or distribution of \nCovered Code within Your business or organization except for R&D use and/or \nPersonal Use, as well as direct or indirect sublicensing or distribution of \nCovered Code by You to any third party in any form or manner.\n\n1.5 \"Larger Work\" means a work which combines Covered Code or portions thereof\n with code not governed by the terms of this License.\n\n1.6 \"Modifications\" mean any addition to, deletion from, and/or change to, \nthe substance and/or structure of the Original Code, any previous \nModifications, the combination of Original Code and any previous \nModifications, and/or any respective portions thereof. When code is \nreleased as a series of files, a Modification is: (a) any addition to or \ndeletion from the contents of a file containing Covered Code; \nand/or (b) \nany new file or other representation of computer program statements that \ncontains any part of Covered Code.\n\n1.7 \"Original Code\" means (a) the Source Code of a program or other work \nas originally made available by Sybase under this License, including the \nSource Code of any updates or upgrades to such programs or works made \navailable by Sybase under this License, and that has been expressly \nidentified by Sybase as such in the header file(s) of such work; and (b) \nthe object code compiled from such Source Code and originally made \navailable by Sybase under this License.\n\n1.8 \"Personal Use\" means use of Covered Code by an individual solely for \nhis or her personal, private and non-commercial purposes. An individual's \nuse of Covered Code in his or her capacity as an officer, employee, member, \nindependent contractor or agent of a corporation, business or organization \n(commercial or non-commercial) does not qualify as Personal Use.\n\n1.9 \"Source Code\" means the human readable form of a program or other work \nthat is suitable for making modifications to it, including all modules it \ncontains, plus any associated interface definition files, scripts used to \ncontrol compilation and installation of an executable (object code).\n\n1.10 \"You\" or \"Your\" means an individual or a legal entity exercising \nrights under this License. For legal entities, \"You\" or \"Your\" includes \nany entity which controls, is controlled by, or is under common control \nwith, You, where \"control\" means (a) the power, direct or indirect, to\n cause the direction or management of such entity, whether by contract or \notherwise, or (b) ownership of fifty percent (50%) or more of the \noutstanding shares or beneficial ownership of such entity.\n\n2. Permitted Uses; Conditions & Restrictions.Subject to the terms and \nconditions of this License, Sybase hereby grants You, effective on the \ndate You accept this License and download the Original Code, a world-wide, \nroyalty-free, non-exclusive license, to the extent of Sybase's Applicable \nPatent Rights and copyrights covering the Original Code, to do the \nfollowing:\n\n2.1 You may use, reproduce, display, perform, modify and distribute \nOriginal Code, with or without Modifications, solely for Your internal \nresearch and development and/or Personal Use, provided that in each \ninstance:\n(a) You must retain and reproduce in all copies of Original Code the \ncopyright and other proprietary notices and disclaimers of Sybase as they \nappear in the Original Code, and keep intact all notices in the Original \nCode that refer to this License; and\n(b) You must retain and reproduce a copy of this License with every copy \nof Source Code of Covered Code and documentation You distribute, and You \nmay not offer or impose any terms on such Source Code that alter or \nrestrict this License or the recipients' rights hereunder, except as \npermitted under Section 6.\n(c) Whenever reasonably feasible you should include the copy of this \nLicense in a click-wrap format, which requires affirmative acceptance by \nclicking on an \"I accept\" button or similar mechanism. If a click-wrap \nformat is not included, you must include a statement that any use \n(including without limitation reproduction, modification or distribution) \nof the Software, and any other affirmative act that you define, constitutes \nacceptance of the License, and instructing the user not to use the Covered \nCode in any manner if the user does not accept all of the terms and \nconditions of the License.\n\n2.2 You may use, reproduce, display, perform, modify and Deploy Covered Code, \nprovided that in each instance:\n(a) You must satisfy all the conditions of Section 2.1 with respect to the \nSource Code of the Covered Code;\n(b) You must duplicate, to the extent it does not already exist, the notice \nin Exhibit A in each file of the Source Code of all Your Modifications, and \ncause the modified files to carry prominent notices stating that You \nchanged the files and the date of any change;\n(c) You must make Source Code of all Your Deployed Modifications publicly \navailable under the terms of this License, including the license grants \nset forth in Section 3 below, for as long as you Deploy the Covered Code \nor twelve (12) months from the date of initial Deployment, whichever is \nlonger. You should preferably distribute the Source Code of Your Deployed \nModifications electronically (e.g. download from a web site);\n(d) if You Deploy Covered Code in object code, executable form only, You \nmust include a prominent notice, in the code itself as well as in related \ndocumentation, stating that Source Code of the Covered Code is available \nunder the terms of this License with information on how and where to \nobtain such Source Code; and\n(e) the object code form of the Covered Code may be distributed under Your \nown license agreement, provided that such license agreement contains terms \nno less protective of Sybase and each Contributor than the terms of this \nLicense, and stating that any provisions which differ from this License \nare offered by You alone and not by any other party.\n\n2.3 You expressly acknowledge and agree that although Sybase and each \nContributor grants the licenses to their respective portions of the Covered \nCode set forth herein, no assurances are provided by Sybase or any \nContributor that the Covered Code does not infringe the patent or other \nintellectual property rights of any other entity. Sybase and each \nContributor disclaim any liability to You for claims brought by any other \nentity based on infringement of intellectual property rights or otherwise. \nAs a condition to exercising the rights and licenses granted hereunder, \nYou hereby assume sole responsibility to secure any other intellectual \nproperty rights needed, if any. For example, if a third party patent \nlicense is required to allow You to distribute the Covered Code, it is \nYour responsibility to acquire that license before distributing the Covered \nCode.\n\n3. Your Grants. In consideration of, and as a condition to, the licenses \ngranted to You under this License, You hereby grant to Sybase and all \nthird parties a non-exclusive, royalty-free license, under Your Applicable \nPatent Rights and other intellectual property rights (other than patent) \nowned or controlled by You, to use, reproduce, display, perform, modify, \ndistribute and Deploy Your Modifications of the same scope and extent as \nSybase's licenses under Sections 2.1 and 2.2.\n\n4. Larger Works. You may create a Larger Work by combining Covered Code \nwith other code not governed by the terms of this License and distribute \nthe Larger Work as a single product. In each such instance, You must make \nsure the requirements of this License are fulfilled for the Covered Code \nor any portion thereof.\n\n5. Limitations on Patent License. Except as expressly stated in Section 2, \nno other patent rights, express or implied, are granted by Sybase herein. \nModifications and/or Larger Works may require additional patent licenses \nfrom Sybase which Sybase may grant in its sole discretion.\n\n6. Additional Terms. You may choose to offer, and to charge a fee for, \nwarranty, support, indemnity or liability obligations and/or other rights \nconsistent with this License (\"Additional Terms\") to one or more recipients \nof Covered Code. However, You may do so only on Your own behalf and as \nYour sole responsibility, and not on behalf of Sybase or any Contributor. \nYou must obtain the recipient's agreement that any such Additional Terms \nare offered by You alone, and You hereby agree to indemnify, defend and \nhold Sybase and every Contributor harmless for any liability incurred by \nor claims asserted against Sybase or such Contributor by reason of any \nsuch Additional Terms.\n\n7. Versions of the License. Sybase may publish revised and/or new versions \nof this License from time to time. Each version will be given a \ndistinguishing version number. Once Original Code has been published under \na particular version of this License, You may continue to use it under the \nterms of that version. You may also choose to use such Original Code under \nthe terms of any subsequent version of this License published by Sybase. No \none other than Sybase has the right to modify the terms applicable to \nCovered Code created under this License.\n\n8. NO WARRANTY OR SUPPORT. The Covered Code may contain in whole or in part \npre-release, untested, or not fully tested works. The Covered Code may \ncontain errors that could cause failures or loss of data, and may be \nincomplete or contain inaccuracies. You expressly acknowledge and agree that \nuse of the Covered Code, or any portion thereof, is at Your sole and entire \nrisk. THE COVERED CODE IS PROVIDED \"AS IS\" AND WITHOUT WARRANTY, UPGRADES \nOR SUPPORT OF ANY KIND AND SYBASE AND SYBASE'S LICENSOR(S) (COLLECTIVELY \nREFERRED TO AS \"SYBASE\" FOR THE PURPOSES OF SECTIONS 8 AND 9) AND ALL \nCONTRIBUTORS EXPRESSLY DISCLAIM ALL WARRANTIES AND/OR CONDITIONS, EXPRESS \nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR \nCONDITIONS OF MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A \nPARTICULAR PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND NONINFRINGEMENT \nOF THIRD PARTY RIGHTS. SYBASE AND EACH CONTRIBUTOR DOES NOT WARRANT \nAGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE COVERED CODE, THAT THE \nFUNCTIONS CONTAINED IN THE COVERED CODE WILL MEET YOUR REQUIREMENTS, THAT \nTHE OPERATION OF THE COVERED CODE WILL BE UNINTERRUPTED OR ERROR-FREE, OR \nTHAT DEFECTS IN THE COVERED CODE WILL BE CORRECTED. NO ORAL OR WRITTEN \nINFORMATION OR ADVICE GIVEN BY SYBASE, A SYBASE AUTHORIZED REPRESENTATIVE \nOR ANY CONTRIBUTOR SHALL CREATE A WARRANTY. You acknowledge that the \nCovered Code is not intended for use in the operation of nuclear facilities, \naircraft navigation, communication systems, or air traffic control \nmachines in which case the failure of the Covered Code could lead to death,\n personal injury, or severe physical or environmental damage.\n\n9. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO \nEVENT SHALL SYBASE OR ANY CONTRIBUTOR BE LIABLE FOR ANY DIRECT, INCIDENTAL, \nSPECIAL, INDIRECT, CONSEQUENTIAL OR OTHER DAMAGES OF ANY KIND ARISING OUT \nOF OR RELATING TO THIS LICENSE OR YOUR USE OR INABILITY TO USE THE COVERED \nCODE, OR ANY PORTION THEREOF, WHETHER UNDER A THEORY OF CONTRACT, WARRANTY, \nTORT (INCLUDING NEGLIGENCE), PRODUCTS LIABILITY OR OTHERWISE, EVEN IF \nSYBASE OR SUCH CONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH \nDAMAGES, AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. \nSOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY OF INCIDENTAL \nOR CONSEQUENTIAL OR OTHER DAMAGES OF ANY KIND, SO THIS LIMITATION MAY NOT \nAPPLY TO YOU. In no event shall Sybase's or any Contributor's total \nliability to You for all damages (other than as may be required by \napplicable law) under this License exceed the amount of five hundred \ndollars ($500.00).\n\n10. Trademarks. This License does not grant any rights to use the \ntrademarks or trade names \"Sybase\" or any other trademarks or trade names \nbelonging to Sybase (collectively \"Sybase Marks\") or to any trademark or \ntrade name belonging to any Contributor(\"Contributor Marks\"). No Sybase \nMarks or Contributor Marks may be used to endorse or promote products \nderived from the Original Code or Covered Code other than with the prior \nwritten consent of Sybase or the Contributor, as applicable.\n\n11. Ownership. Subject to the licenses granted under this License, each Contributor \nretains all rights, title and interest in and to any Modifications made by such \nContributor. Sybase retains all rights, title and interest in and to the \nOriginal Code and any Modifications made by or on behalf of Sybase (\"Sybase \nModifications\"), and such Sybase Modifications will not be automatically \nsubject to this License. Sybase may, at its sole discretion, choose to \nlicense such Sybase Modifications under this License, or on different terms \nfrom those contained in this License or may choose not to license them at \nall.\n\n12. Termination.\n\n12.1 Termination. This License and the rights granted hereunder will \nterminate:\n(a) automatically without notice if You fail to comply with any term(s) of \nthis License and fail to cure such breach within 30 days of becoming \naware of such breach;\n(b) immediately in the event of the circumstances described in Section \n13.5(b); or\n(c) automatically without notice if You, at any time during the term of \nthis License, commence an action for patent infringement (including as a \ncross claim or counterclaim) against Sybase or any Contributor.\n\n12.2 Effect of Termination. Upon termination, You agree to immediately \nstop any further use, reproduction, modification, sublicensing and \ndistribution of the Covered Code and to destroy all copies of the Covered \nCode that are in your possession or control. All sublicenses to the Covered \nCode that have been properly granted prior to termination shall survive any \ntermination of this License. Provisions which, by their nature, should \nremain in effect beyond the termination of this License shall survive, \nincluding but not limited to Sections 3, 5, 8, 9, 10, 11, 12.2 and 13. No \nparty will be liable to any other for compensation, indemnity or damages \nof any sort solely as a result of terminating this License in accordance \nwith its terms, and termination of this License will be without prejudice \nto any other right or remedy of any party.\n\n13. Miscellaneous.\n\n13.1 Government End Users. The Covered Code is a \"commercial item\" as \ndefined in FAR 2.101. Government software and technical data rights in the \nCovered Code include only those rights customarily provided to the public \nas defined in this License. This customary commercial license in technical \ndata and software is provided in accordance with FAR 12.211 (Technical \nData) and 12.212 (Computer Software) and, for Department of Defense \npurchases, DFAR 252.227-7015 (Technical Data -- Commercial Items) and \n227.7202-3 (Rights in Commercial Computer Software or Computer Software \nDocumentation). Accordingly, all U.S. Government End Users acquire Covered \nCode with only those rights set forth herein.\n\n13.2 Relationship of Parties. This License will not be construed as \ncreating an agency, partnership, joint venture or any other form of legal \nassociation between or among you, Sybase or any Contributor, and You will \nnot represent to the contrary, whether expressly, by implication, \nappearance or otherwise.\n\n13.3 Independent Development. Nothing in this License will impair Sybase's \nor any Contributor's right to acquire, license, develop, have others develop \nfor it, market and/or distribute technology or products that perform the \nsame or similar functions as, or otherwise compete with, Modifications, \nLarger Works, technology or products that You may develop, produce, market \nor distribute.\n\n13.4 Waiver; Construction. Failure by Sybase or any Contributor to enforce \nany provision of this License will not be deemed a waiver of future \nenforcement of that or any other provision. Any law or regulation which \nprovides that the language of a contract shall be construed against the \ndrafter will not apply to this License.\n\n13.5 Severability. (a) If for any reason a court of competent jurisdiction \nfinds any provision of this License, or portion thereof, to be \nunenforceable, that provision of the License will be enforced to the maximum \nextent permissible so as to effect the economic benefits and intent of the \nparties, and the remainder of this License will continue in full force and \neffect. (b) Notwithstanding the foregoing, if applicable law prohibits or \nrestricts You from fully and/or specifically complying with Sections 2 \nand/or 3 or prevents the enforceability of either of those Sections, this \nLicense will immediately terminate and You must immediately discontinue any \nuse of the Covered Code and destroy all copies of it that are in your \npossession or control.\n\n13.6 Dispute Resolution. Any litigation or other dispute resolution between \nYou and Sybase relating to this License shall take place in the Northern \nDistrict of California, and You and Sybase hereby consent to the personal \njurisdiction of, and venue in, the state and federal courts within that \nDistrict with respect to this License. The application of the United Nations \nConvention on Contracts for the International Sale of Goods is expressly \nexcluded.\n\n13.7 Entire Agreement; Governing Law. This License constitutes the entire \nagreement between the parties with respect to the subject matter hereof. \nThis License shall be governed by the laws of the United States and the \nState of California, except that body of California law concerning conflicts \nof law. Where You are located in the province of Quebec, Canada, the following \nclause applies: The parties hereby confirm that they have requested that this \nLicense and all related documents be drafted in English. Les parties ont \nexige que le present contrat et tous les documents connexes soient rediges \nen anglais.\n\nEXHIBIT A.\n\"Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved. This file \ncontains Original Code and/or Modifications of Original Code as defined in and \nthat are subject to the Sybase Open Watcom Public License version 1.0 (the \n'License'). You may not use this file except in compliance with the License. \nBY USING THIS FILE YOU AGREE TO ALL TERMS AND CONDITIONS OF THE LICENSE. A \ncopy of the License is provided with the Original Code and Modifications, and \nis also available at www.sybase.com/developer/opensource.\nThe Original Code and all software distributed under the License are \ndistributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS \nOR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM ALL SUCH \nWARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, \nFITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please \nsee the License for the specific language governing rights and limitations \nunder the License.\"", + "json": "sybase.json", + "yaml": "sybase.yml", + "html": "sybase.html", + "license": "sybase.LICENSE" + }, + { + "license_key": "symphonysoft", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-symphonysoft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\n3. The end-user documentation included with the redistribution, if any, must\ninclude the following acknowlegement:\n\"This product includes software developed by SymphonySoft Limited (http://www.symphonysoft.com).\"\nAlternately, this acknowlegement may appear in the software itself, if and\nwherever such third-party acknowlegements normally appear.\n\n4. All advertising materials mentioning features or use of this software must\ndisplay the following acknowledgement: \"This product includes software developed\nby SymphonySoft Limited (http://www.symphonysoft.com) and its contributors\".\n\n5. Neither the name of SymphonySoft Limited, Cubis Limited, Mule, Universal\nMessage Objects nor the names of its contributors may be used to endorse or\npromote products derived from this software without specific prior written\npermission.\n\nTHIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS \"AS IS\" AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE", + "json": "symphonysoft.json", + "yaml": "symphonysoft.yml", + "html": "symphonysoft.html", + "license": "symphonysoft.LICENSE" + }, + { + "license_key": "synopsys-attribution", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-synopsys-attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Synopsys HS OTG Linux Software Driver and documentation (hereinafter,\n\"Software\") is an Unsupported proprietary work of Synopsys, Inc. unless\notherwise expressly agreed to in writing between Synopsys and you.\n\nThe Software IS NOT an item of Licensed Software or Licensed Product under\nany End User Software License Agreement or Agreement for Licensed Product\nwith Synopsys or any supplement thereto. You are permitted to use and\nredistribute this Software in source and binary forms, with or without\nmodification, provided that redistributions of source code must retain this\nnotice. You may not view, use, disclose, copy or distribute this file or\nany information contained herein except pursuant to this license grant from\nSynopsys. If you do not agree with this notice, including the disclaimer\nbelow, then you are not authorized to use the Software.\n\nTHIS SOFTWARE IS BEING DISTRIBUTED BY SYNOPSYS SOLELY ON AN \"AS IS\" BASIS\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE HEREBY DISCLAIMED. IN NO EVENT SHALL SYNOPSYS BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGE.", + "json": "synopsys-attribution.json", + "yaml": "synopsys-attribution.yml", + "html": "synopsys-attribution.html", + "license": "synopsys-attribution.LICENSE" + }, + { + "license_key": "synopsys-mit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-synopsys-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Synopsys DWC ETHER QOS Software Driver and documentation (hereinafter\n\"Software\") is an unsupported proprietary work of Synopsys, Inc. unless\notherwise expressly agreed to in writing between Synopsys and you.\n\nThe Software IS NOT an item of Licensed Software or Licensed Product under\nany End User Software License Agreement or Agreement for Licensed Product\nwith Synopsys or any supplement thereto. Permission is hereby granted,\nfree of charge, to any person obtaining a copy of this software annotated\nwith this license and the Software, to deal in the Software without\nrestriction, including without limitation the rights to use, copy, modify,\nmerge, publish, distribute, sublicense, and/or sell copies of the Software,\nand to permit persons to whom the Software is furnished to do so, subject\nto the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHIS SOFTWARE IS BEING DISTRIBUTED BY SYNOPSYS SOLELY ON AN \"AS IS\" BASIS\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE HEREBY DISCLAIMED. IN NO EVENT SHALL SYNOPSYS BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGE.", + "json": "synopsys-mit.json", + "yaml": "synopsys-mit.yml", + "html": "synopsys-mit.html", + "license": "synopsys-mit.LICENSE" + }, + { + "license_key": "syntext-serna-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-syntext-serna-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Syntext, Inc. GPL License Exception for Syntext Serna Free Edition \n\nVersion 1.0\n\nAdditional rights granted beyond the GPL (the \"Exception\").\n\nAs a special exception to the terms and conditions of GPL version 2.0 \nor GPL version 3.0, Syntext, Inc. hereby grants you the rights described below,\nprovided you agree to the terms and conditions in this Exception, including its\nobligations and restrictions on use. \n\nNothing in this Exception gives you or anyone else the right to change the\nlicensing terms of the Syntext Serna Free Editon.\n\n1) Definitions\n\n\"FOSS Application\" means a free and open source software application \ndistributed subject to a license listed in the section below titled \n\"FOSS License List.\"\n\n\"Licensed Software\" shall refer to the software licensed under the GPL \n version 2.0 or GPL version 3.0 and this exception.\n\n\"Derivative Work\" means a derivative work, as defined under applicable\ncopyright law, formed entirely from the Licensed Software and one or more FOSS\nApplications.\n\n\"Independent Work\" means portions of the Derivative Work that are not derived \nfrom the Licensed Software and can reasonably be considered independent and\nseparate works.\n\n2) The right to use open source licenses not compatible with the GNU General\nPublic License version 2.0 or GNU General Public License version 3.0: You may\ndistribute Derivative Work in object code or executable form, provided that:\n\nA) You distribute Independent Works subject to a license listed in the \nsection 4 below, titled \"FOSS License List\";\n\nand\n\nB) You obey the GPL in all respects for the Licensed Software and all portions \n(including modifications and extensions) of the Licensed Software included in\nthe Derivative Work (provided that this condition does not apply to \nIndependent Works);\n\nC) You must, on request, make a complete package including the complete source\ncode of Derivative Work (as defined in the GNU General Public License \nversion 2, section 3, but excluding anything excluded by the special exception \nin the same section) available to Syntext, Inc. under the same license as that\ngranted to other recipients of the source code of Derivative Work;\n\nand\n\nD) Your or any other contributor's rights to:\n\ni) distribute the source code of Derivative Work to anyone for any purpose;\n\nand\n\nii) publicly discuss the development project for Derivative Work and its goals\nin any form and in any forum are not prohibited by any legal instrument, \nincluding but not limited to contracts, non-disclosure agreements, and \nemployee contracts.\n\n3) Syntext, Inc. reserves all rights not expressly granted in these terms and \nconditions. If all of the above conditions are not met, then this FOSS License\nException does not apply to you or your Derivative Work.", + "json": "syntext-serna-exception-1.0.json", + "yaml": "syntext-serna-exception-1.0.yml", + "html": "syntext-serna-exception-1.0.html", + "license": "syntext-serna-exception-1.0.LICENSE" + }, + { + "license_key": "synthesis-toolkit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-synthesis-toolkit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nAny person wishing to distribute modifications to the Software is\nasked to send the modifications to the original developer so that they\ncan be incorporated into the canonical version. This is, however, not\na binding provision of this license.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "synthesis-toolkit.json", + "yaml": "synthesis-toolkit.yml", + "html": "synthesis-toolkit.html", + "license": "synthesis-toolkit.LICENSE" + }, + { + "license_key": "takao-abe", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-takao-abe", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software \nand its documentation for any purpose is hereby granted \nwithout fee, provided that the following conditions are met: \n \nOne retains the entire copyright notice properly, and both the \ncopyright notice and this license. in the documentation and/or \nother materials provided with the distribution. \n \nThis software and the name of the author must not be used to \nendorse or promote products derived from this software without \nprior written permission. \n \nTHIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT EXPRESSED OR IMPLIED \nWARRANTIES OF ANY KIND, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABLILITY AND FITNESS FOR A \nPARTICULAR PURPOSE. \nIN NO EVENT SHALL THE AUTHOR TAKAO ABE BE LIABLE FOR ANY DIRECT,\nINDIRECT, GENERAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n( INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE \nGOODS OR SERVICES; LOSS OF USE, DATA OR PROFITS; OR BUSINESS \nINTERRUPTION ) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, \nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ( INCLUDING \nNEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE OF \nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */\n \nThis driver is developed in my private time, and is opened as \nvoluntary contributions for the NTP. \nThe manufacturer of the JJY receiver has not participated in \na development of this driver. \nThe manufacturer does not warrant anything about this driver, \nand is not liable for anything about this driver.", + "json": "takao-abe.json", + "yaml": "takao-abe.yml", + "html": "takao-abe.html", + "license": "takao-abe.LICENSE" + }, + { + "license_key": "takuya-ooura", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-takuya-ooura", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You may use, copy, modify and distribute this code for any purpose (include\ncommercial use) and without fee. Please refer to this package when you modify\nthis code.", + "json": "takuya-ooura.json", + "yaml": "takuya-ooura.yml", + "html": "takuya-ooura.html", + "license": "takuya-ooura.LICENSE" + }, + { + "license_key": "taligent-jdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-taligent-jdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The original version of this source code and documentation\nis copyrighted and owned by Taligent, Inc., a wholly-owned\nsubsidiary of IBM. These materials are provided under terms\nof a License Agreement between Taligent and Sun. This technology\nis protected by multiple US and International patents.\n\nThis notice and attribution to Taligent may not be removed.\nTaligent is a registered trademark of Taligent, Inc.", + "json": "taligent-jdk.json", + "yaml": "taligent-jdk.yml", + "html": "taligent-jdk.html", + "license": "taligent-jdk.LICENSE" + }, + { + "license_key": "tanuki-community-sla-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Tanuki Software, Inc. \nCommunity Software License Agreement\nVersion 1.0\n\nIMPORTANT-READ CAREFULLY: This license agreement is a legal agreement\nbetween you and Tanuki Software, Inc.(\"TSI\"), which includes computer\nsoftware, associated media, printed materials, and may include online\nor electronic documentation ( Software ). PLEASE READ THIS AGREEMENT\nCAREFULLY BEFORE YOU INSTALL, COPY, DOWNLOAD OR USE THE SOFTWARE\nACCOMPANYING THIS PACKAGE.\n\nSection 1 - Grant of License\n\nCommunity editions of the Software are made available on the GNU\nGeneral Public License, Version 2 (\"GPLv2\"), included in Section 3 of\nthis license document. All sections of the Community Software License\nAgreement must be complied with in addition to those of the GPLv2.\n\n\nSection 2 - Your Obligations\n\nA copy of this license must be distributed in full with the Product\nin a location that is obvious to Your customers. The Software\nProgram may not be modified, nor may the Product in any way obfuscate\nor obstruct the copyright notice and license information displayed in\nthe console and log files by the Software Program on startup. \n\n\nSection 3 - GPLv2 License Agreement\n\n GNU GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies of\n this license document, but changing it is not allowed.\n\n Preamble\n\n The licenses for most software are designed to take away your\n freedom to share and change it. By contrast, the GNU General\n Public License is intended to guarantee your freedom to share and\n change free software--to make sure the software is free for all\n its users. This General Public License applies to most of the Free\n Software Foundation's software and to any other program whose\n authors commit to using it. (Some other Free Software Foundation\n software is covered by the GNU Library General Public License\n instead.) You can apply it to your programs, too.\n\n When we speak of free software, we are referring to freedom, not\n price. Our General Public Licenses are designed to make sure that\n you have the freedom to distribute copies of free software (and\n charge for this service if you wish), that you receive source code\n or can get it if you want it, that you can change the software or\n use pieces of it in new free programs; and that you know you can\n do these things.\n\n To protect your rights, we need to make restrictions that forbid\n anyone to deny you these rights or to ask you to surrender the\n rights. These restrictions translate to certain responsibilities\n for you if you distribute copies of the software, or if you modify\n it.\n\n For example, if you distribute copies of such a program, whether\n gratis or for a fee, you must give the recipients all the rights\n that you have. You must make sure that they, too, receive or can\n get the source code. And you must show them these terms so they\n know their rights.\n\n We protect your rights with two steps:\n\n (1) copyright the software, and\n (2) offer you this license which gives you legal permission to\n copy, distribute and/or modify the software.\n\n Also, for each author's protection and ours, we want to make\n certain that everyone understands that there is no warranty for\n this free software. If the software is modified by someone else\n and passed on, we want its recipients to know that what they have\n is not the original, so that any problems introduced by others\n will not reflect on the original authors' reputations.\n\n Finally, any free program is threatened constantly by software\n patents. We wish to avoid the danger that redistributors of a free\n program will individually obtain patent licenses, in effect making\n the program proprietary. To prevent this, we have made it clear\n that any patent must be licensed for everyone's free use or not\n licensed at all.\n\n The precise terms and conditions for copying, distribution and\n modification follow.\n GNU GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License applies to any program or other work which\n contains a notice placed by the copyright holder saying it may be\n distributed under the terms of this General Public License. The\n \"Program\", below, refers to any such program or work, and a \"work\n based on the Program\" means either the Program or any derivative\n work under copyright law: that is to say, a work containing the\n Program or a portion of it, either verbatim or with modifications\n and/or translated into another language. (Hereinafter, translation\n is included without limitation in the term \"modification\".) Each\n licensee is addressed as \"you\".\n\n Activities other than copying, distribution and modification are\n not covered by this License; they are outside its scope. The act\n of running the Program is not restricted, and the output from the\n Program is covered only if its contents constitute a work based on\n the Program (independent of having been made by running the\n Program). Whether that is true depends on what the Program does.\n\n 1. You may copy and distribute verbatim copies of the Program's\n source code as you receive it, in any medium, provided that you\n conspicuously and appropriately publish on each copy an\n appropriate copyright notice and disclaimer of warranty; keep\n intact all the notices that refer to this License and to the\n absence of any warranty; and give any other recipients of the\n Program a copy of this License along with the Program.\n\n You may charge a fee for the physical act of transferring a copy,\n and you may at your option offer warranty protection in exchange\n for a fee.\n\n 2. You may modify your copy or copies of the Program or any\n portion of it, thus forming a work based on the Program, and copy\n and distribute such modifications or work under the terms of\n Section 1 above, provided that you also meet all of these\n conditions:\n\n a) You must cause the modified files to carry prominent notices\n stating that you changed the files and the date of any change.\n\n b) You must cause any work that you distribute or publish, that in\n whole or in part contains or is derived from the Program or any\n part thereof, to be licensed as a whole at no charge to all third\n parties under the terms of this License.\n\n c) If the modified program normally reads commands interactively\n when run, you must cause it, when started running for such\n interactive use in the most ordinary way, to print or display an\n announcement including an appropriate copyright notice and a\n notice that there is no warranty (or else, saying that you provide\n a warranty) and that users may redistribute the program under\n these conditions, and telling the user how to view a copy of this\n License. (Exception: if the Program itself is interactive but does\n not normally print such an announcement, your work based on the\n Program is not required to print an announcement.)\n\n These requirements apply to the modified work as a whole. If\n identifiable sections of that work are not derived from the\n Program, and can be reasonably considered independent and separate\n works in themselves, then this License, and its terms, do not\n apply to those sections when you distribute them as separate works.\n But when you distribute the same sections as part of a whole which\n is a work based on the Program, the distribution of the whole must\n be on the terms of this License, whose permissions for other\n licensees extend to the entire whole, and thus to each and every\n part regardless of who wrote it.\n\n Thus, it is not the intent of this section to claim rights or\n contest your rights to work written entirely by you; rather, the\n intent is to exercise the right to control the distribution of\n derivative or collective works based on the Program.\n\n In addition, mere aggregation of another work not based on the\n Program with the Program (or with a work based on the Program) on\n a volume of a storage or distribution medium does not bring the\n other work under the scope of this License.\n\n 3. You may copy and distribute the Program (or a work based on it,\n under Section 2) in object code or executable form under the terms\n of Sections 1 and 2 above provided that you also do one of the\n following:\n\n a) Accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of Sections\n 1 and 2 above on a medium customarily used for software\n interchange; or,\n\n b) Accompany it with a written offer, valid for at least three\n years, to give any third party, for a charge no more than your\n cost of physically performing source distribution, a complete\n machine-readable copy of the corresponding source code, to be\n distributed under the terms of Sections 1 and 2 above on a medium\n customarily used for software interchange; or,\n\n c) Accompany it with the information you received as to the offer\n to distribute corresponding source code. (This alternative is\n allowed only for noncommercial distribution and only if you\n received the program in object code or executable form with such\n an offer, in accord with Subsection b above.)\n\n The source code for a work means the preferred form of the work\n for making modifications to it. For an executable work, complete\n source code means all the source code for all modules it contains,\n plus any associated interface definition files, plus the scripts\n used to control compilation and installation of the executable.\n However, as a special exception, the source code distributed need\n not include anything that is normally distributed (in either\n source or binary form) with the major components (compiler,\n kernel, and so on) of the operating system on which the executable\n runs, unless that component itself accompanies the executable.\n\n If distribution of executable or object code is made by offering\n access to copy from a designated place, then offering equivalent\n access to copy the source code from the same place counts as\n distribution of the source code, even though third parties are not\n compelled to copy the source along with the object code.\n\n 4. You may not copy, modify, sublicense, or distribute the Program\n except as expressly provided under this License. Any attempt\n otherwise to copy, modify, sublicense or distribute the Program is\n void, and will automatically terminate your rights under this\n License. However, parties who have received copies, or rights,\n from you under this License will not have their licenses\n terminated so long as such parties remain in full compliance.\n\n 5. You are not required to accept this License, since you have not\n signed it. However, nothing else grants you permission to modify\n or distribute the Program or its derivative works. These actions\n are prohibited by law if you do not accept this License.\n Therefore, by modifying or distributing the Program (or any work\n based on the Program), you indicate your acceptance of this\n License to do so, and all its terms and conditions for copying,\n distributing or modifying the Program or works based on it.\n\n 6. Each time you redistribute the Program (or any work based on\n the Program), the recipient automatically receives a license from\n the original licensor to copy, distribute or modify the Program\n subject to these terms and conditions. You may not impose any\n further restrictions on the recipients' exercise of the rights\n granted herein. You are not responsible for enforcing compliance\n by third parties to this License.\n\n 7. If, as a consequence of a court judgment or allegation of\n patent infringement or for any other reason (not limited to\n patent issues), conditions are imposed on you (whether by court\n order, agreement or otherwise) that contradict the conditions of\n this License, they do not excuse you from the conditions of this\n License. If you cannot distribute so as to satisfy simultaneously\n your obligations under this License and any other pertinent\n obligations, then as a consequence you may not distribute the\n Program at all. For example, if a patent license would not permit\n royalty-free redistribution of the Program by all those who\n receive copies directly or indirectly through you, then the only\n way you could satisfy both it and this License would be to refrain\n entirely from distribution of the Program.\n\n If any portion of this section is held invalid or unenforceable\n under any particular circumstance, the balance of the section is\n intended to apply and the section as a whole is intended to apply\n in other circumstances.\n\n It is not the purpose of this section to induce you to infringe\n any patents or other property right claims or to contest validity\n of any such claims; this section has the sole purpose of\n protecting the integrity of the free software distribution system,\n which is implemented by public license practices. Many people have\n made generous contributions to the wide range of software\n distributed through that system in reliance on consistent\n application of that system; it is up to the author/donor to decide\n if he or she is willing to distribute software through any other\n system and a licensee cannot impose that choice.\n\n This section is intended to make thoroughly clear what is believed\n to be a consequence of the rest of this License.\n\n 8. If the distribution and/or use of the Program is restricted in\n certain countries either by patents or by copyrighted interfaces,\n the original copyright holder who places the Program under this\n License may add an explicit geographical distribution limitation\n excluding those countries, so that distribution is permitted only\n in or among countries not thus excluded. In such case, this\n License incorporates the limitation as if written in the body of\n this License.\n\n 9. The Free Software Foundation may publish revised and/or new\n versions of the General Public License from time to time. Such new\n versions will be similar in spirit to the present version, but may\n differ in detail to address new problems or concerns.\n\n Each version is given a distinguishing version number. If the\n Program specifies a version number of this License which applies\n to it and \"any later version\", you have the option of following\n the terms and conditions either of that version or of any later\n version published by the Free Software Foundation. If the Program\n does not specify a version number of this License, you may choose\n any version ever published by the Free Software Foundation.\n\n 10. If you wish to incorporate parts of the Program into other\n free programs whose distribution conditions are different, write\n to the author to ask for permission. For software which is\n copyrighted by the Free Software Foundation, write to the Free\n Software Foundation; we sometimes make exceptions for this. Our\n decision will be guided by the two goals of preserving the free\n status of all derivatives of our free software and of promoting\n the sharing and reuse of software generally.\n \n NO WARRANTY\n\n 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\n WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE\n LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS\n AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\n OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\n FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND\n PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE\n DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR\n OR CORRECTION.\n\n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\n WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY\n MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE\n LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,\n INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\n INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\n DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU\n OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY\n OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n\nSection 4 - 3rd Party Components\n\n(1) The Software Program includes software and documentation components\ndeveloped in part by Silver Egg Technology, Inc.(\"SET\") prior to\n2001. All SET components were released under the following license.\n\n Copyright (c) 2001 Silver Egg Technology\n \n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation\n files (the \"Software\"), to deal in the Software without \n restriction, including without limitation the rights to use, \n copy, modify, merge, publish, distribute, sub-license, and/or \n sell copies of the Software, and to permit persons to whom the\n Software is furnished to do so, subject to the following \n conditions:\n \n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \n OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND \n NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT \n HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, \n WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING \n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE.", + "json": "tanuki-community-sla-1.0.json", + "yaml": "tanuki-community-sla-1.0.yml", + "html": "tanuki-community-sla-1.0.html", + "license": "tanuki-community-sla-1.0.LICENSE" + }, + { + "license_key": "tanuki-community-sla-1.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Tanuki Software, Ltd. \nCommunity Software License Agreement\nVersion 1.1\n\nIMPORTANT-READ CAREFULLY: This license agreement is a legal agreement\nbetween you (\"Licensee\") and Tanuki Software, Ltd. (\"TSI\"), which\nincludes computer software, associated media, printed materials, and\nmay include online or electronic documentation ( Software ). PLEASE\nREAD THIS AGREEMENT CAREFULLY BEFORE YOU INSTALL, COPY, DOWNLOAD OR\nUSE THE SOFTWARE ACCOMPANYING THIS PACKAGE.\n\nSection 1 - Grant of License\n\nCommunity editions of the Software are made available on the GNU\nGeneral Public License, Version 2 (\"GPLv2\"), included in Section 4 of\nthis license document. All sections of the Community Software License\nAgreement must be complied with in addition to those of the GPLv2.\n\n\nSection 2 - Definitions \n\n2.1. \"Community Edition\" shall mean versions of the Software Program\ndistributed in source form under this license agreement, and all new\nreleases, corrections, enhancements and updates to the Software\nProgram, which TSI makes generally available under this agreement.\n\n2.2. \"Documentation\" shall mean the contents of the website\ndescribing the functionality and use of the Software Program, located\nat http://wrapper.tanukisoftware.org\n\n2.3. \"Product\" shall mean the computer programs, that are provided by\nLicensee to Licensee customers or potential customers, and that\ncontain both the Software Program as a component of the Product, and a\ncomponent or components (other than the Software Program) that provide\nthe material functionality of the Product. If the Product is released\nin source form, the Software Program or any of its components may only\nbe included in executable form.\n\n2.4. \"Software Program\" shall mean the computer software and license\nfile provided by TSI under this Agreement, including all new releases,\ncorrections, enhancements and updates to such computer software, which\nTSI makes generally available and which Licensee receive pursuant to\nLicensee subscription to TSIMS. Some specific features or platforms\nmay not be enabled if they do not fall under the feature set(s)\ncovered by the specific license fees paid.\n\n2.5 \"End User\" shall mean the customers of the Licensee or any\nrecipient of the Product whether or not any payment is made to use\nthe Product.\n\n\nSection 3 - Licensee Obligations\n\nA copy of this license must be distributed in full with the Product\nin a location that is obvious to any End User.\n\nIn accordance with Section 4, the full source code of all components\nof the Product must be made available to any and all End Users.\n\nLicensee may extend and/or modify the Software Program and distribute\nunder the terms of this agreement provided that the copyright notice\nand license information displayed in the console and log files are\nnot obfuscated or obstructed in any way.\n\n\nSection 4 - GPLv2 License Agreement\n\n GNU GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies of\n this license document, but changing it is not allowed.\n\n Preamble\n\n The licenses for most software are designed to take away your\n freedom to share and change it. By contrast, the GNU General\n Public License is intended to guarantee your freedom to share and\n change free software--to make sure the software is free for all\n its users. This General Public License applies to most of the Free\n Software Foundation's software and to any other program whose\n authors commit to using it. (Some other Free Software Foundation\n software is covered by the GNU Library General Public License\n instead.) You can apply it to your programs, too.\n\n When we speak of free software, we are referring to freedom, not\n price. Our General Public Licenses are designed to make sure that\n you have the freedom to distribute copies of free software (and\n charge for this service if you wish), that you receive source code\n or can get it if you want it, that you can change the software or\n use pieces of it in new free programs; and that you know you can\n do these things.\n\n To protect your rights, we need to make restrictions that forbid\n anyone to deny you these rights or to ask you to surrender the\n rights. These restrictions translate to certain responsibilities\n for you if you distribute copies of the software, or if you modify\n it.\n\n For example, if you distribute copies of such a program, whether\n gratis or for a fee, you must give the recipients all the rights\n that you have. You must make sure that they, too, receive or can\n get the source code. And you must show them these terms so they\n know their rights.\n\n We protect your rights with two steps:\n\n (1) copyright the software, and\n (2) offer you this license which gives you legal permission to\n copy, distribute and/or modify the software.\n\n Also, for each author's protection and ours, we want to make\n certain that everyone understands that there is no warranty for\n this free software. If the software is modified by someone else\n and passed on, we want its recipients to know that what they have\n is not the original, so that any problems introduced by others\n will not reflect on the original authors' reputations.\n\n Finally, any free program is threatened constantly by software\n patents. We wish to avoid the danger that redistributors of a free\n program will individually obtain patent licenses, in effect making\n the program proprietary. To prevent this, we have made it clear\n that any patent must be licensed for everyone's free use or not\n licensed at all.\n\n The precise terms and conditions for copying, distribution and\n modification follow.\n GNU GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License applies to any program or other work which\n contains a notice placed by the copyright holder saying it may be\n distributed under the terms of this General Public License. The\n \"Program\", below, refers to any such program or work, and a \"work\n based on the Program\" means either the Program or any derivative\n work under copyright law: that is to say, a work containing the\n Program or a portion of it, either verbatim or with modifications\n and/or translated into another language. (Hereinafter, translation\n is included without limitation in the term \"modification\".) Each\n licensee is addressed as \"you\".\n\n Activities other than copying, distribution and modification are\n not covered by this License; they are outside its scope. The act\n of running the Program is not restricted, and the output from the\n Program is covered only if its contents constitute a work based on\n the Program (independent of having been made by running the\n Program). Whether that is true depends on what the Program does.\n\n 1. You may copy and distribute verbatim copies of the Program's\n source code as you receive it, in any medium, provided that you\n conspicuously and appropriately publish on each copy an\n appropriate copyright notice and disclaimer of warranty; keep\n intact all the notices that refer to this License and to the\n absence of any warranty; and give any other recipients of the\n Program a copy of this License along with the Program.\n\n You may charge a fee for the physical act of transferring a copy,\n and you may at your option offer warranty protection in exchange\n for a fee.\n\n 2. You may modify your copy or copies of the Program or any\n portion of it, thus forming a work based on the Program, and copy\n and distribute such modifications or work under the terms of\n Section 1 above, provided that you also meet all of these\n conditions:\n\n a) You must cause the modified files to carry prominent notices\n stating that you changed the files and the date of any change.\n\n b) You must cause any work that you distribute or publish, that in\n whole or in part contains or is derived from the Program or any\n part thereof, to be licensed as a whole at no charge to all third\n parties under the terms of this License.\n\n c) If the modified program normally reads commands interactively\n when run, you must cause it, when started running for such\n interactive use in the most ordinary way, to print or display an\n announcement including an appropriate copyright notice and a\n notice that there is no warranty (or else, saying that you provide\n a warranty) and that users may redistribute the program under\n these conditions, and telling the user how to view a copy of this\n License. (Exception: if the Program itself is interactive but does\n not normally print such an announcement, your work based on the\n Program is not required to print an announcement.)\n\n These requirements apply to the modified work as a whole. If\n identifiable sections of that work are not derived from the\n Program, and can be reasonably considered independent and separate\n works in themselves, then this License, and its terms, do not\n apply to those sections when you distribute them as separate works.\n But when you distribute the same sections as part of a whole which\n is a work based on the Program, the distribution of the whole must\n be on the terms of this License, whose permissions for other\n licensees extend to the entire whole, and thus to each and every\n part regardless of who wrote it.\n\n Thus, it is not the intent of this section to claim rights or\n contest your rights to work written entirely by you; rather, the\n intent is to exercise the right to control the distribution of\n derivative or collective works based on the Program.\n\n In addition, mere aggregation of another work not based on the\n Program with the Program (or with a work based on the Program) on\n a volume of a storage or distribution medium does not bring the\n other work under the scope of this License.\n\n 3. You may copy and distribute the Program (or a work based on it,\n under Section 2) in object code or executable form under the terms\n of Sections 1 and 2 above provided that you also do one of the\n following:\n\n a) Accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of Sections\n 1 and 2 above on a medium customarily used for software\n interchange; or,\n\n b) Accompany it with a written offer, valid for at least three\n years, to give any third party, for a charge no more than your\n cost of physically performing source distribution, a complete\n machine-readable copy of the corresponding source code, to be\n distributed under the terms of Sections 1 and 2 above on a medium\n customarily used for software interchange; or,\n\n c) Accompany it with the information you received as to the offer\n to distribute corresponding source code. (This alternative is\n allowed only for noncommercial distribution and only if you\n received the program in object code or executable form with such\n an offer, in accord with Subsection b above.)\n\n The source code for a work means the preferred form of the work\n for making modifications to it. For an executable work, complete\n source code means all the source code for all modules it contains,\n plus any associated interface definition files, plus the scripts\n used to control compilation and installation of the executable.\n However, as a special exception, the source code distributed need\n not include anything that is normally distributed (in either\n source or binary form) with the major components (compiler,\n kernel, and so on) of the operating system on which the executable\n runs, unless that component itself accompanies the executable.\n\n If distribution of executable or object code is made by offering\n access to copy from a designated place, then offering equivalent\n access to copy the source code from the same place counts as\n distribution of the source code, even though third parties are not\n compelled to copy the source along with the object code.\n\n 4. You may not copy, modify, sublicense, or distribute the Program\n except as expressly provided under this License. Any attempt\n otherwise to copy, modify, sublicense or distribute the Program is\n void, and will automatically terminate your rights under this\n License. However, parties who have received copies, or rights,\n from you under this License will not have their licenses\n terminated so long as such parties remain in full compliance.\n\n 5. You are not required to accept this License, since you have not\n signed it. However, nothing else grants you permission to modify\n or distribute the Program or its derivative works. These actions\n are prohibited by law if you do not accept this License.\n Therefore, by modifying or distributing the Program (or any work\n based on the Program), you indicate your acceptance of this\n License to do so, and all its terms and conditions for copying,\n distributing or modifying the Program or works based on it.\n\n 6. Each time you redistribute the Program (or any work based on\n the Program), the recipient automatically receives a license from\n the original licensor to copy, distribute or modify the Program\n subject to these terms and conditions. You may not impose any\n further restrictions on the recipients' exercise of the rights\n granted herein. You are not responsible for enforcing compliance\n by third parties to this License.\n\n 7. If, as a consequence of a court judgment or allegation of\n patent infringement or for any other reason (not limited to\n patent issues), conditions are imposed on you (whether by court\n order, agreement or otherwise) that contradict the conditions of\n this License, they do not excuse you from the conditions of this\n License. If you cannot distribute so as to satisfy simultaneously\n your obligations under this License and any other pertinent\n obligations, then as a consequence you may not distribute the\n Program at all. For example, if a patent license would not permit\n royalty-free redistribution of the Program by all those who\n receive copies directly or indirectly through you, then the only\n way you could satisfy both it and this License would be to refrain\n entirely from distribution of the Program.\n\n If any portion of this section is held invalid or unenforceable\n under any particular circumstance, the balance of the section is\n intended to apply and the section as a whole is intended to apply\n in other circumstances.\n\n It is not the purpose of this section to induce you to infringe\n any patents or other property right claims or to contest validity\n of any such claims; this section has the sole purpose of\n protecting the integrity of the free software distribution system,\n which is implemented by public license practices. Many people have\n made generous contributions to the wide range of software\n distributed through that system in reliance on consistent\n application of that system; it is up to the author/donor to decide\n if he or she is willing to distribute software through any other\n system and a licensee cannot impose that choice.\n\n This section is intended to make thoroughly clear what is believed\n to be a consequence of the rest of this License.\n\n 8. If the distribution and/or use of the Program is restricted in\n certain countries either by patents or by copyrighted interfaces,\n the original copyright holder who places the Program under this\n License may add an explicit geographical distribution limitation\n excluding those countries, so that distribution is permitted only\n in or among countries not thus excluded. In such case, this\n License incorporates the limitation as if written in the body of\n this License.\n\n 9. The Free Software Foundation may publish revised and/or new\n versions of the General Public License from time to time. Such new\n versions will be similar in spirit to the present version, but may\n differ in detail to address new problems or concerns.\n\n Each version is given a distinguishing version number. If the\n Program specifies a version number of this License which applies\n to it and \"any later version\", you have the option of following\n the terms and conditions either of that version or of any later\n version published by the Free Software Foundation. If the Program\n does not specify a version number of this License, you may choose\n any version ever published by the Free Software Foundation.\n\n 10. If you wish to incorporate parts of the Program into other\n free programs whose distribution conditions are different, write\n to the author to ask for permission. For software which is\n copyrighted by the Free Software Foundation, write to the Free\n Software Foundation; we sometimes make exceptions for this. Our\n decision will be guided by the two goals of preserving the free\n status of all derivatives of our free software and of promoting\n the sharing and reuse of software generally.\n \n NO WARRANTY\n\n 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\n WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE\n LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS\n AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\n OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\n FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND\n PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE\n DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR\n OR CORRECTION.\n\n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\n WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY\n MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE\n LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,\n INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\n INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\n DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU\n OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY\n OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n\nSection 4 - 3rd Party Components\n\n(1) The Software Program includes software and documentation components\ndeveloped in part by Silver Egg Technology, Inc.(\"SET\") prior to 2001\nand released under the following license.\n\n Copyright (c) 2001 Silver Egg Technology\n\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation\n files (the \"Software\"), to deal in the Software without\n restriction, including without limitation the rights to use,\n copy, modify, merge, publish, distribute, sub-license, and/or\n sell copies of the Software, and to permit persons to whom the\n Software is furnished to do so, subject to the following\n conditions:\n \n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE.", + "json": "tanuki-community-sla-1.1.json", + "yaml": "tanuki-community-sla-1.1.yml", + "html": "tanuki-community-sla-1.1.html", + "license": "tanuki-community-sla-1.1.LICENSE" + }, + { + "license_key": "tanuki-community-sla-1.2", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Tanuki Software, Ltd. \nCommunity Software License Agreement\nVersion 1.2\n\nIMPORTANT-READ CAREFULLY: This license agreement is a legal agreement\nbetween you (\"Licensee\") and Tanuki Software, Ltd. (\"TSI\"), which\nincludes computer software, associated media, printed materials, and\nmay include online or electronic documentation ( Software ). PLEASE\nREAD THIS AGREEMENT CAREFULLY BEFORE YOU INSTALL, COPY, DOWNLOAD OR\nUSE THE SOFTWARE ACCOMPANYING THIS PACKAGE.\n\nSection 1 - Grant of License\n\nCommunity editions of the Software are made available on the GNU\nGeneral Public License, Version 2 (\"GPLv2\"), included in Section 4 of\nthis license document. All sections of the Community Software License\nAgreement must be complied with in addition to those of the GPLv2.\n\n\nSection 2 - Definitions \n\n2.1. \"Community Edition\" shall mean versions of the Software Program\ndistributed in source form under this license agreement, and all new\nreleases, corrections, enhancements and updates to the Software\nProgram, which TSI makes generally available under this agreement.\n\n2.2. \"Documentation\" shall mean the contents of the website\ndescribing the functionality and use of the Software Program, located\nat http://wrapper.tanukisoftware.org\n\n2.3. \"Product\" shall mean the computer programs, that are provided by\nLicensee to Licensee customers or potential customers, and that\ncontain both the Software Program as a component of the Product, and a\ncomponent or components (other than the Software Program) that provide\nthe material functionality of the Product. If the Product is released\nin source form, the Software Program or any of its components may only\nbe included in executable form.\n\n2.4. \"Software Program\" shall mean the computer software and license\nfile provided by TSI under this Agreement, including all new releases,\ncorrections, enhancements and updates to such computer software, which\nTSI makes generally available and which Licensee receive pursuant to\nLicensee subscription to TSIMS. Some specific features or platforms\nmay not be enabled if they do not fall under the feature set(s)\ncovered by the specific license fees paid.\n\n2.5 \"End User\" shall mean the customers of the Licensee or any\nrecipient of the Product whether or not any payment is made to use\nthe Product.\n\n\nSection 3 - Licensee Obligations\n\nA copy of this license must be distributed in full with the Product\nin a location that is obvious to any End User.\n\nIn accordance with Section 4, the full source code of all components\nof the Product must be made available to any and all End Users.\n\nLicensee may extend and/or modify the Software Program and distribute\nunder the terms of this agreement provided that the copyright notice\nand license information displayed in the console and log files are\nnot obfuscated or obstructed in any way.\n\n\nSection 4 - GPLv2 License Agreement\n\n GNU GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies of\n this license document, but changing it is not allowed.\n\n Preamble\n\n The licenses for most software are designed to take away your\n freedom to share and change it. By contrast, the GNU General\n Public License is intended to guarantee your freedom to share and\n change free software--to make sure the software is free for all\n its users. This General Public License applies to most of the Free\n Software Foundation's software and to any other program whose\n authors commit to using it. (Some other Free Software Foundation\n software is covered by the GNU Library General Public License\n instead.) You can apply it to your programs, too.\n\n When we speak of free software, we are referring to freedom, not\n price. Our General Public Licenses are designed to make sure that\n you have the freedom to distribute copies of free software (and\n charge for this service if you wish), that you receive source code\n or can get it if you want it, that you can change the software or\n use pieces of it in new free programs; and that you know you can\n do these things.\n\n To protect your rights, we need to make restrictions that forbid\n anyone to deny you these rights or to ask you to surrender the\n rights. These restrictions translate to certain responsibilities\n for you if you distribute copies of the software, or if you modify\n it.\n\n For example, if you distribute copies of such a program, whether\n gratis or for a fee, you must give the recipients all the rights\n that you have. You must make sure that they, too, receive or can\n get the source code. And you must show them these terms so they\n know their rights.\n\n We protect your rights with two steps:\n\n (1) copyright the software, and\n (2) offer you this license which gives you legal permission to\n copy, distribute and/or modify the software.\n\n Also, for each author's protection and ours, we want to make\n certain that everyone understands that there is no warranty for\n this free software. If the software is modified by someone else\n and passed on, we want its recipients to know that what they have\n is not the original, so that any problems introduced by others\n will not reflect on the original authors' reputations.\n\n Finally, any free program is threatened constantly by software\n patents. We wish to avoid the danger that redistributors of a free\n program will individually obtain patent licenses, in effect making\n the program proprietary. To prevent this, we have made it clear\n that any patent must be licensed for everyone's free use or not\n licensed at all.\n\n The precise terms and conditions for copying, distribution and\n modification follow.\n GNU GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License applies to any program or other work which\n contains a notice placed by the copyright holder saying it may be\n distributed under the terms of this General Public License. The\n \"Program\", below, refers to any such program or work, and a \"work\n based on the Program\" means either the Program or any derivative\n work under copyright law: that is to say, a work containing the\n Program or a portion of it, either verbatim or with modifications\n and/or translated into another language. (Hereinafter, translation\n is included without limitation in the term \"modification\".) Each\n licensee is addressed as \"you\".\n\n Activities other than copying, distribution and modification are\n not covered by this License; they are outside its scope. The act\n of running the Program is not restricted, and the output from the\n Program is covered only if its contents constitute a work based on\n the Program (independent of having been made by running the\n Program). Whether that is true depends on what the Program does.\n\n 1. You may copy and distribute verbatim copies of the Program's\n source code as you receive it, in any medium, provided that you\n conspicuously and appropriately publish on each copy an\n appropriate copyright notice and disclaimer of warranty; keep\n intact all the notices that refer to this License and to the\n absence of any warranty; and give any other recipients of the\n Program a copy of this License along with the Program.\n\n You may charge a fee for the physical act of transferring a copy,\n and you may at your option offer warranty protection in exchange\n for a fee.\n\n 2. You may modify your copy or copies of the Program or any\n portion of it, thus forming a work based on the Program, and copy\n and distribute such modifications or work under the terms of\n Section 1 above, provided that you also meet all of these\n conditions:\n\n a) You must cause the modified files to carry prominent notices\n stating that you changed the files and the date of any change.\n\n b) You must cause any work that you distribute or publish, that in\n whole or in part contains or is derived from the Program or any\n part thereof, to be licensed as a whole at no charge to all third\n parties under the terms of this License.\n\n c) If the modified program normally reads commands interactively\n when run, you must cause it, when started running for such\n interactive use in the most ordinary way, to print or display an\n announcement including an appropriate copyright notice and a\n notice that there is no warranty (or else, saying that you provide\n a warranty) and that users may redistribute the program under\n these conditions, and telling the user how to view a copy of this\n License. (Exception: if the Program itself is interactive but does\n not normally print such an announcement, your work based on the\n Program is not required to print an announcement.)\n\n These requirements apply to the modified work as a whole. If\n identifiable sections of that work are not derived from the\n Program, and can be reasonably considered independent and separate\n works in themselves, then this License, and its terms, do not\n apply to those sections when you distribute them as separate works.\n But when you distribute the same sections as part of a whole which\n is a work based on the Program, the distribution of the whole must\n be on the terms of this License, whose permissions for other\n licensees extend to the entire whole, and thus to each and every\n part regardless of who wrote it.\n\n Thus, it is not the intent of this section to claim rights or\n contest your rights to work written entirely by you; rather, the\n intent is to exercise the right to control the distribution of\n derivative or collective works based on the Program.\n\n In addition, mere aggregation of another work not based on the\n Program with the Program (or with a work based on the Program) on\n a volume of a storage or distribution medium does not bring the\n other work under the scope of this License.\n\n 3. You may copy and distribute the Program (or a work based on it,\n under Section 2) in object code or executable form under the terms\n of Sections 1 and 2 above provided that you also do one of the\n following:\n\n a) Accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of Sections\n 1 and 2 above on a medium customarily used for software\n interchange; or,\n\n b) Accompany it with a written offer, valid for at least three\n years, to give any third party, for a charge no more than your\n cost of physically performing source distribution, a complete\n machine-readable copy of the corresponding source code, to be\n distributed under the terms of Sections 1 and 2 above on a medium\n customarily used for software interchange; or,\n\n c) Accompany it with the information you received as to the offer\n to distribute corresponding source code. (This alternative is\n allowed only for noncommercial distribution and only if you\n received the program in object code or executable form with such\n an offer, in accord with Subsection b above.)\n\n The source code for a work means the preferred form of the work\n for making modifications to it. For an executable work, complete\n source code means all the source code for all modules it contains,\n plus any associated interface definition files, plus the scripts\n used to control compilation and installation of the executable.\n However, as a special exception, the source code distributed need\n not include anything that is normally distributed (in either\n source or binary form) with the major components (compiler,\n kernel, and so on) of the operating system on which the executable\n runs, unless that component itself accompanies the executable.\n\n If distribution of executable or object code is made by offering\n access to copy from a designated place, then offering equivalent\n access to copy the source code from the same place counts as\n distribution of the source code, even though third parties are not\n compelled to copy the source along with the object code.\n\n 4. You may not copy, modify, sublicense, or distribute the Program\n except as expressly provided under this License. Any attempt\n otherwise to copy, modify, sublicense or distribute the Program is\n void, and will automatically terminate your rights under this\n License. However, parties who have received copies, or rights,\n from you under this License will not have their licenses\n terminated so long as such parties remain in full compliance.\n\n 5. You are not required to accept this License, since you have not\n signed it. However, nothing else grants you permission to modify\n or distribute the Program or its derivative works. These actions\n are prohibited by law if you do not accept this License.\n Therefore, by modifying or distributing the Program (or any work\n based on the Program), you indicate your acceptance of this\n License to do so, and all its terms and conditions for copying,\n distributing or modifying the Program or works based on it.\n\n 6. Each time you redistribute the Program (or any work based on\n the Program), the recipient automatically receives a license from\n the original licensor to copy, distribute or modify the Program\n subject to these terms and conditions. You may not impose any\n further restrictions on the recipients' exercise of the rights\n granted herein. You are not responsible for enforcing compliance\n by third parties to this License.\n\n 7. If, as a consequence of a court judgment or allegation of\n patent infringement or for any other reason (not limited to\n patent issues), conditions are imposed on you (whether by court\n order, agreement or otherwise) that contradict the conditions of\n this License, they do not excuse you from the conditions of this\n License. If you cannot distribute so as to satisfy simultaneously\n your obligations under this License and any other pertinent\n obligations, then as a consequence you may not distribute the\n Program at all. For example, if a patent license would not permit\n royalty-free redistribution of the Program by all those who\n receive copies directly or indirectly through you, then the only\n way you could satisfy both it and this License would be to refrain\n entirely from distribution of the Program.\n\n If any portion of this section is held invalid or unenforceable\n under any particular circumstance, the balance of the section is\n intended to apply and the section as a whole is intended to apply\n in other circumstances.\n\n It is not the purpose of this section to induce you to infringe\n any patents or other property right claims or to contest validity\n of any such claims; this section has the sole purpose of\n protecting the integrity of the free software distribution system,\n which is implemented by public license practices. Many people have\n made generous contributions to the wide range of software\n distributed through that system in reliance on consistent\n application of that system; it is up to the author/donor to decide\n if he or she is willing to distribute software through any other\n system and a licensee cannot impose that choice.\n\n This section is intended to make thoroughly clear what is believed\n to be a consequence of the rest of this License.\n\n 8. If the distribution and/or use of the Program is restricted in\n certain countries either by patents or by copyrighted interfaces,\n the original copyright holder who places the Program under this\n License may add an explicit geographical distribution limitation\n excluding those countries, so that distribution is permitted only\n in or among countries not thus excluded. In such case, this\n License incorporates the limitation as if written in the body of\n this License.\n\n 9. The Free Software Foundation may publish revised and/or new\n versions of the General Public License from time to time. Such new\n versions will be similar in spirit to the present version, but may\n differ in detail to address new problems or concerns.\n\n Each version is given a distinguishing version number. If the\n Program specifies a version number of this License which applies\n to it and \"any later version\", you have the option of following\n the terms and conditions either of that version or of any later\n version published by the Free Software Foundation. If the Program\n does not specify a version number of this License, you may choose\n any version ever published by the Free Software Foundation.\n\n 10. If you wish to incorporate parts of the Program into other\n free programs whose distribution conditions are different, write\n to the author to ask for permission. For software which is\n copyrighted by the Free Software Foundation, write to the Free\n Software Foundation; we sometimes make exceptions for this. Our\n decision will be guided by the two goals of preserving the free\n status of all derivatives of our free software and of promoting\n the sharing and reuse of software generally.\n \n NO WARRANTY\n\n 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\n WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE\n LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS\n AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\n OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\n FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND\n PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE\n DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR\n OR CORRECTION.\n\n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\n WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY\n MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE\n LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,\n INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\n INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\n DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU\n OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY\n OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n\nSection 4 - 3rd Party Components\n\n(1) The Software Program includes software and documentation components\ndeveloped in part by Silver Egg Technology, Inc.(\"SET\") prior to 2001\nand released under the following license.\n\n Copyright (c) 2001 Silver Egg Technology\n\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation\n files (the \"Software\"), to deal in the Software without\n restriction, including without limitation the rights to use,\n copy, modify, merge, publish, distribute, sub-license, and/or\n sell copies of the Software, and to permit persons to whom the\n Software is furnished to do so, subject to the following\n conditions:\n \n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE.", + "json": "tanuki-community-sla-1.2.json", + "yaml": "tanuki-community-sla-1.2.yml", + "html": "tanuki-community-sla-1.2.html", + "license": "tanuki-community-sla-1.2.LICENSE" + }, + { + "license_key": "tanuki-community-sla-1.3", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Tanuki Software, Ltd. \nCommunity Software License Agreement\nVersion 1.3\n\nIMPORTANT-READ CAREFULLY: This license agreement is a legal agreement\nbetween you (\"Licensee\") and Tanuki Software, Ltd. (\"TSI\"), which\nincludes computer software, associated media, printed materials, and\nmay include online or electronic documentation ( Software ). PLEASE\nREAD THIS AGREEMENT CAREFULLY BEFORE YOU INSTALL, COPY, DOWNLOAD OR\nUSE THE SOFTWARE ACCOMPANYING THIS PACKAGE.\n\nSection 1 - Grant of License\n\nCommunity editions of the Software are made available on the GNU\nGeneral Public License, Version 2 (\"GPLv2\") or Version 3 (\"GPLv3\"),\nincluded in Sections 4 and 5 of this license document. All sections\nof the Community Software License Agreement must be complied with in\naddition to those of either the GPLv2 or GPLv3. This license allows\nthe Software Program to be used with Products that are released under\neither GPLv2 or GPLv3.\n\n\nSection 2 - Definitions \n\n2.1. \"Community Edition\" shall mean versions of the Software Program\ndistributed in source form under this license agreement, and all new\nreleases, corrections, enhancements and updates to the Software\nProgram, which TSI makes generally available under this agreement.\n\n2.2. \"Documentation\" shall mean the contents of the website\ndescribing the functionality and use of the Software Program, located\nat http://wrapper.tanukisoftware.org\n\n2.3. \"Product\" shall mean the computer programs, that are provided by\nLicensee to Licensee customers or potential customers, and that\ncontain both the Software Program as a component of the Product, and a\ncomponent or components (other than the Software Program) that provide\nthe material functionality of the Product. If the Product is released\nin source form, the Software Program or any of its components may only\nbe included in executable form.\n\n2.4. \"Software Program\" shall mean the computer software and license\nfile provided by TSI under this Agreement, including all new releases,\ncorrections, enhancements and updates to such computer software, which\nTSI makes generally available and which Licensee receive pursuant to\nLicensee subscription to TSIMS. Some specific features or platforms\nmay not be enabled if they do not fall under the feature set(s)\ncovered by the specific license fees paid.\n\n2.5 \"End User\" shall mean the customers of the Licensee or any\nrecipient of the Product whether or not any payment is made to use\nthe Product.\n\n\nSection 3 - Licensee Obligations\n\nA copy of this license must be distributed in full with the Product\nin a location that is obvious to any End User.\n\nIn accordance with Section 4, the full source code of all components\nof the Product must be made available to any and all End Users.\n\nLicensee may extend and/or modify the Software Program and distribute\nunder the terms of this agreement provided that the copyright notice\nand license information displayed in the console and log files are\nnot obfuscated or obstructed in any way.\n\n\nSection 4 - GPLv2 License Agreement\n\n GNU GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies of\n this license document, but changing it is not allowed.\n\n Preamble\n\n The licenses for most software are designed to take away your\n freedom to share and change it. By contrast, the GNU General\n Public License is intended to guarantee your freedom to share and\n change free software--to make sure the software is free for all\n its users. This General Public License applies to most of the Free\n Software Foundation's software and to any other program whose\n authors commit to using it. (Some other Free Software Foundation\n software is covered by the GNU Library General Public License\n instead.) You can apply it to your programs, too.\n\n When we speak of free software, we are referring to freedom, not\n price. Our General Public Licenses are designed to make sure that\n you have the freedom to distribute copies of free software (and\n charge for this service if you wish), that you receive source code\n or can get it if you want it, that you can change the software or\n use pieces of it in new free programs; and that you know you can\n do these things.\n\n To protect your rights, we need to make restrictions that forbid\n anyone to deny you these rights or to ask you to surrender the\n rights. These restrictions translate to certain responsibilities\n for you if you distribute copies of the software, or if you modify\n it.\n\n For example, if you distribute copies of such a program, whether\n gratis or for a fee, you must give the recipients all the rights\n that you have. You must make sure that they, too, receive or can\n get the source code. And you must show them these terms so they\n know their rights.\n\n We protect your rights with two steps:\n\n (1) copyright the software, and\n (2) offer you this license which gives you legal permission to\n copy, distribute and/or modify the software.\n\n Also, for each author's protection and ours, we want to make\n certain that everyone understands that there is no warranty for\n this free software. If the software is modified by someone else\n and passed on, we want its recipients to know that what they have\n is not the original, so that any problems introduced by others\n will not reflect on the original authors' reputations.\n\n Finally, any free program is threatened constantly by software\n patents. We wish to avoid the danger that redistributors of a free\n program will individually obtain patent licenses, in effect making\n the program proprietary. To prevent this, we have made it clear\n that any patent must be licensed for everyone's free use or not\n licensed at all.\n\n The precise terms and conditions for copying, distribution and\n modification follow.\n\n GNU GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License applies to any program or other work which\n contains a notice placed by the copyright holder saying it may be\n distributed under the terms of this General Public License. The\n \"Program\", below, refers to any such program or work, and a \"work\n based on the Program\" means either the Program or any derivative\n work under copyright law: that is to say, a work containing the\n Program or a portion of it, either verbatim or with modifications\n and/or translated into another language. (Hereinafter, translation\n is included without limitation in the term \"modification\".) Each\n licensee is addressed as \"you\".\n\n Activities other than copying, distribution and modification are\n not covered by this License; they are outside its scope. The act\n of running the Program is not restricted, and the output from the\n Program is covered only if its contents constitute a work based on\n the Program (independent of having been made by running the\n Program). Whether that is true depends on what the Program does.\n\n 1. You may copy and distribute verbatim copies of the Program's\n source code as you receive it, in any medium, provided that you\n conspicuously and appropriately publish on each copy an\n appropriate copyright notice and disclaimer of warranty; keep\n intact all the notices that refer to this License and to the\n absence of any warranty; and give any other recipients of the\n Program a copy of this License along with the Program.\n\n You may charge a fee for the physical act of transferring a copy,\n and you may at your option offer warranty protection in exchange\n for a fee.\n\n 2. You may modify your copy or copies of the Program or any\n portion of it, thus forming a work based on the Program, and copy\n and distribute such modifications or work under the terms of\n Section 1 above, provided that you also meet all of these\n conditions:\n\n a) You must cause the modified files to carry prominent notices\n stating that you changed the files and the date of any change.\n\n b) You must cause any work that you distribute or publish, that in\n whole or in part contains or is derived from the Program or any\n part thereof, to be licensed as a whole at no charge to all third\n parties under the terms of this License.\n\n c) If the modified program normally reads commands interactively\n when run, you must cause it, when started running for such\n interactive use in the most ordinary way, to print or display an\n announcement including an appropriate copyright notice and a\n notice that there is no warranty (or else, saying that you provide\n a warranty) and that users may redistribute the program under\n these conditions, and telling the user how to view a copy of this\n License. (Exception: if the Program itself is interactive but does\n not normally print such an announcement, your work based on the\n Program is not required to print an announcement.)\n\n These requirements apply to the modified work as a whole. If\n identifiable sections of that work are not derived from the\n Program, and can be reasonably considered independent and separate\n works in themselves, then this License, and its terms, do not\n apply to those sections when you distribute them as separate works.\n But when you distribute the same sections as part of a whole which\n is a work based on the Program, the distribution of the whole must\n be on the terms of this License, whose permissions for other\n licensees extend to the entire whole, and thus to each and every\n part regardless of who wrote it.\n\n Thus, it is not the intent of this section to claim rights or\n contest your rights to work written entirely by you; rather, the\n intent is to exercise the right to control the distribution of\n derivative or collective works based on the Program.\n\n In addition, mere aggregation of another work not based on the\n Program with the Program (or with a work based on the Program) on\n a volume of a storage or distribution medium does not bring the\n other work under the scope of this License.\n\n 3. You may copy and distribute the Program (or a work based on it,\n under Section 2) in object code or executable form under the terms\n of Sections 1 and 2 above provided that you also do one of the\n following:\n\n a) Accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of Sections\n 1 and 2 above on a medium customarily used for software\n interchange; or,\n\n b) Accompany it with a written offer, valid for at least three\n years, to give any third party, for a charge no more than your\n cost of physically performing source distribution, a complete\n machine-readable copy of the corresponding source code, to be\n distributed under the terms of Sections 1 and 2 above on a medium\n customarily used for software interchange; or,\n\n c) Accompany it with the information you received as to the offer\n to distribute corresponding source code. (This alternative is\n allowed only for noncommercial distribution and only if you\n received the program in object code or executable form with such\n an offer, in accord with Subsection b above.)\n\n The source code for a work means the preferred form of the work\n for making modifications to it. For an executable work, complete\n source code means all the source code for all modules it contains,\n plus any associated interface definition files, plus the scripts\n used to control compilation and installation of the executable.\n However, as a special exception, the source code distributed need\n not include anything that is normally distributed (in either\n source or binary form) with the major components (compiler,\n kernel, and so on) of the operating system on which the executable\n runs, unless that component itself accompanies the executable.\n\n If distribution of executable or object code is made by offering\n access to copy from a designated place, then offering equivalent\n access to copy the source code from the same place counts as\n distribution of the source code, even though third parties are not\n compelled to copy the source along with the object code.\n\n 4. You may not copy, modify, sublicense, or distribute the Program\n except as expressly provided under this License. Any attempt\n otherwise to copy, modify, sublicense or distribute the Program is\n void, and will automatically terminate your rights under this\n License. However, parties who have received copies, or rights,\n from you under this License will not have their licenses\n terminated so long as such parties remain in full compliance.\n\n 5. You are not required to accept this License, since you have not\n signed it. However, nothing else grants you permission to modify\n or distribute the Program or its derivative works. These actions\n are prohibited by law if you do not accept this License.\n Therefore, by modifying or distributing the Program (or any work\n based on the Program), you indicate your acceptance of this\n License to do so, and all its terms and conditions for copying,\n distributing or modifying the Program or works based on it.\n\n 6. Each time you redistribute the Program (or any work based on\n the Program), the recipient automatically receives a license from\n the original licensor to copy, distribute or modify the Program\n subject to these terms and conditions. You may not impose any\n further restrictions on the recipients' exercise of the rights\n granted herein. You are not responsible for enforcing compliance\n by third parties to this License.\n\n 7. If, as a consequence of a court judgment or allegation of\n patent infringement or for any other reason (not limited to\n patent issues), conditions are imposed on you (whether by court\n order, agreement or otherwise) that contradict the conditions of\n this License, they do not excuse you from the conditions of this\n License. If you cannot distribute so as to satisfy simultaneously\n your obligations under this License and any other pertinent\n obligations, then as a consequence you may not distribute the\n Program at all. For example, if a patent license would not permit\n royalty-free redistribution of the Program by all those who\n receive copies directly or indirectly through you, then the only\n way you could satisfy both it and this License would be to refrain\n entirely from distribution of the Program.\n\n If any portion of this section is held invalid or unenforceable\n under any particular circumstance, the balance of the section is\n intended to apply and the section as a whole is intended to apply\n in other circumstances.\n\n It is not the purpose of this section to induce you to infringe\n any patents or other property right claims or to contest validity\n of any such claims; this section has the sole purpose of\n protecting the integrity of the free software distribution system,\n which is implemented by public license practices. Many people have\n made generous contributions to the wide range of software\n distributed through that system in reliance on consistent\n application of that system; it is up to the author/donor to decide\n if he or she is willing to distribute software through any other\n system and a licensee cannot impose that choice.\n\n This section is intended to make thoroughly clear what is believed\n to be a consequence of the rest of this License.\n\n 8. If the distribution and/or use of the Program is restricted in\n certain countries either by patents or by copyrighted interfaces,\n the original copyright holder who places the Program under this\n License may add an explicit geographical distribution limitation\n excluding those countries, so that distribution is permitted only\n in or among countries not thus excluded. In such case, this\n License incorporates the limitation as if written in the body of\n this License.\n\n 9. The Free Software Foundation may publish revised and/or new\n versions of the General Public License from time to time. Such new\n versions will be similar in spirit to the present version, but may\n differ in detail to address new problems or concerns.\n\n Each version is given a distinguishing version number. If the\n Program specifies a version number of this License which applies\n to it and \"any later version\", you have the option of following\n the terms and conditions either of that version or of any later\n version published by the Free Software Foundation. If the Program\n does not specify a version number of this License, you may choose\n any version ever published by the Free Software Foundation.\n\n 10. If you wish to incorporate parts of the Program into other\n free programs whose distribution conditions are different, write\n to the author to ask for permission. For software which is\n copyrighted by the Free Software Foundation, write to the Free\n Software Foundation; we sometimes make exceptions for this. Our\n decision will be guided by the two goals of preserving the free\n status of all derivatives of our free software and of promoting\n the sharing and reuse of software generally.\n \n NO WARRANTY\n\n 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\n WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE\n LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS\n AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\n OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\n FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND\n PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE\n DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR\n OR CORRECTION.\n\n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\n WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY\n MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE\n LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,\n INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\n INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\n DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU\n OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY\n OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n\nSection 5 - GPLv3 License Agreement\n\n GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright c 2007 Free Software Foundation, Inc. \n\n Everyone is permitted to copy and distribute verbatim copies of\n this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\n software and other kinds of works.\n\n The licenses for most software and other practical works are\n designed to take away your freedom to share and change the works.\n By contrast, the GNU General Public License is intended to\n guarantee your freedom to share and change all versions of a\n program--to make sure it remains free software for all its users.\n We, the Free Software Foundation, use the GNU General Public\n License for most of our software; it applies also to any other\n work released this way by its authors. You can apply it to your\n programs, too.\n\n When we speak of free software, we are referring to freedom, not\n price. Our General Public Licenses are designed to make sure that\n you have the freedom to distribute copies of free software (and\n charge for them if you wish), that you receive source code or can\n get it if you want it, that you can change the software or use\n pieces of it in new free programs, and that you know you can do\n these things.\n\n To protect your rights, we need to prevent others from denying you\n these rights or asking you to surrender the rights. Therefore, you\n have certain responsibilities if you distribute copies of the\n software, or if you modify it: responsibilities to respect the\n freedom of others.\n\n For example, if you distribute copies of such a program, whether\n gratis or for a fee, you must pass on to the recipients the same\n freedoms that you received. You must make sure that they, too,\n receive or can get the source code. And you must show them these\n terms so they know their rights.\n\n Developers that use the GNU GPL protect your rights with two\n steps: (1) assert copyright on the software, and (2) offer you\n this License giving you legal permission to copy, distribute\n and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly\n explains that there is no warranty for this free software. For\n both users' and authors' sake, the GPL requires that modified\n versions be marked as changed, so that their problems will not be\n attributed erroneously to authors of previous versions.\n\n Some devices are designed to deny users access to install or run\n modified versions of the software inside them, although the\n manufacturer can do so. This is fundamentally incompatible with\n the aim of protecting users' freedom to change the software. The\n systematic pattern of such abuse occurs in the area of products\n for individuals to use, which is precisely where it is most\n unacceptable. Therefore, we have designed this version of the GPL\n to prohibit the practice for those products. If such problems\n arise substantially in other domains, we stand ready to extend\n this provision to those domains in future versions of the GPL, as\n needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software\n patents. States should not allow patents to restrict development\n and use of software on general-purpose computers, but in those\n that do, we wish to avoid the special danger that patents applied\n to a free program could make it effectively proprietary. To\n prevent this, the GPL assures that patents cannot be used to\n render the program non-free.\n\n The precise terms and conditions for copying, distribution and\n modification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public\n License.\n\n \"Copyright\" also means copyright-like laws that apply to other\n kinds of works, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\n License. Each licensee is addressed as \"you\". \"Licensees\" and\n \"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the\n work in a fashion requiring copyright permission, other than the\n making of an exact copy. The resulting work is called a \"modified\n version\" of the earlier work or a work \"based on\" the earlier\n work.\n\n A \"covered work\" means either the unmodified Program or a work\n based on the Program.\n\n To \"propagate\" a work means to do anything with it that, without\n permission, would make you directly or secondarily liable for\n infringement under applicable copyright law, except executing it\n on a computer or modifying a private copy. Propagation includes\n copying, distribution (with or without modification), making\n available to the public, and in some countries other activities as\n well.\n\n To \"convey\" a work means any kind of propagation that enables\n other parties to make or receive copies. Mere interaction with a\n user through a computer network, with no transfer of a copy, is\n not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\n to the extent that it includes a convenient and prominently\n visible feature that (1) displays an appropriate copyright notice,\n and (2) tells the user that there is no warranty for the work\n (except to the extent that warranties are provided), that\n licensees may convey the work under this License, and how to view\n a copy of this License. If the interface presents a list of user\n commands or options, such as a menu, a prominent item in the list\n meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\n for making modifications to it. \"Object code\" means any non-source\n form of a work.\n\n A \"Standard Interface\" means an interface that either is an\n official standard defined by a recognized standards body, or, in\n the case of interfaces specified for a particular programming\n language, one that is widely used among developers working in that\n language.\n\n The \"System Libraries\" of an executable work include anything,\n other than the work as a whole, that (a) is included in the normal\n form of packaging a Major Component, but which is not part of that\n Major Component, and (b) serves only to enable use of the work\n with that Major Component, or to implement a Standard Interface\n for which an implementation is available to the public in source\n code form. A \"Major Component\", in this context, means a major\n essential component (kernel, window system, and so on) of the\n specific operating system (if any) on which the executable work\n runs, or a compiler used to produce the work, or an object code\n interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means\n all the source code needed to generate, install, and (for an\n executable work) run the object code and to modify the work,\n including scripts to control those activities. However, it does\n not include the work's System Libraries, or general-purpose tools\n or generally available free programs which are used unmodified in\n performing those activities but which are not part of the work.\n For example, Corresponding Source includes interface definition\n files associated with source files for the work, and the source\n code for shared libraries and dynamically linked subprograms that\n the work is specifically designed to require, such as by intimate\n data communication or control flow between those subprograms and\n other parts of the work.\n\n The Corresponding Source need not include anything that users can\n regenerate automatically from other parts of the Corresponding\n Source.\n\n The Corresponding Source for a work in source code form is that\n same work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\n copyright on the Program, and are irrevocable provided the stated\n conditions are met. This License explicitly affirms your unlimited\n permission to run the unmodified Program. The output from running\n a covered work is covered by this License only if the output,\n given its content, constitutes a covered work. This License\n acknowledges your rights of fair use or other equivalent, as\n provided by copyright law.\n\n You may make, run and propagate covered works that you do not\n convey, without conditions so long as your license otherwise\n remains in force. You may convey covered works to others for the\n sole purpose of having them make modifications exclusively for\n you, or provide you with facilities for running those works,\n provided that you comply with the terms of this License in\n conveying all material for which you do not control copyright.\n Those thus making or running the covered works for you must do\n so exclusively on your behalf, under your direction and control,\n on terms that prohibit them from making any copies of your\n copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\n the conditions stated below. Sublicensing is not allowed; section\n 10 makes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\n measure under any applicable law fulfilling obligations under\n article 11 of the WIPO copyright treaty adopted on 20 December\n 1996, or similar laws prohibiting or restricting circumvention of\n such measures.\n\n When you convey a covered work, you waive any legal power to\n forbid circumvention of technological measures to the extent such\n circumvention is effected by exercising rights under this License\n with respect to the covered work, and you disclaim any intention\n to limit operation or modification of the work as a means of\n enforcing, against the work's users, your or third parties' legal\n rights to forbid circumvention of technological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\n receive it, in any medium, provided that you conspicuously and\n appropriately publish on each copy an appropriate copyright\n notice; keep intact all notices stating that this License and any\n non-permissive terms added in accord with section 7 apply to the\n code; keep intact all notices of the absence of any warranty;\n and give all recipients a copy of this License along with the\n Program.\n\n You may charge any price or no price for each copy that you\n convey, and you may offer support or warranty protection for a\n fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications\n to produce it from the Program, in the form of source code under\n the terms of section 4, provided that you also meet all of these\n conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to \"keep\n intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and\n independent works, which are not by their nature extensions of the\n covered work, and which are not combined with it such as to form a\n larger program, in or on a volume of a storage or distribution\n medium, is called an \"aggregate\" if the compilation and its\n resulting copyright are not used to limit the access or legal\n rights of the compilation's users beyond what the individual works\n permit. Inclusion of a covered work in an aggregate does not cause\n this License to apply to the other parts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\n of sections 4 and 5, provided that you also convey the machine-\n readable Corresponding Source under the terms of this License, in\n one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the Corresponding\n Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission,\n provided you inform other peers where the object code and\n Corresponding Source of the work are being offered to the general\n public at no charge under subsection 6d.\n\n A separable portion of the object code, whose source code is\n excluded from the Corresponding Source as a System Library, need\n not be included in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means\n any tangible personal property which is normally used for\n personal, family, or household purposes, or (2) anything designed\n or sold for incorporation into a dwelling. In determining whether\n a product is a consumer product, doubtful cases shall be resolved\n in favor of coverage. For a particular product received by a\n particular user, \"normally used\" refers to a typical or common use\n of that class of product, regardless of the status of the\n particular user or of the way in which the particular user\n actually uses, or expects or is expected to use, the product. A\n product is a consumer product regardless of whether the product\n has substantial commercial, industrial or non-consumer uses,\n unless such uses represent the only significant mode of use of the\n product.\n\n \"Installation Information\" for a User Product means any methods,\n procedures, authorization keys, or other information required to\n install and execute modified versions of a covered work in that\n User Product from a modified version of its Corresponding Source.\n The information must suffice to ensure that the continued\n functioning of the modified object code is in no case prevented or\n interfered with solely because modification has been made.\n\n If you convey an object code work under this section in, or with,\n or specifically for use in, a User Product, and the conveying\n occurs as part of a transaction in which the right of possession\n and use of the User Product is transferred to the recipient in\n perpetuity or for a fixed term (regardless of how the transaction\n is characterized), the Corresponding Source conveyed under this\n section must be accompanied by the Installation Information. But\n this requirement does not apply if neither you nor any third party\n retains the ability to install modified object code on the User\n Product (for example, the work has been installed in ROM).\n\n The requirement to provide Installation Information does not\n include a requirement to continue to provide support service,\n warranty, or updates for a work that has been modified or\n installed by the recipient, or for the User Product in which it\n has been modified or installed. Access to a network may be denied\n when the modification itself materially and adversely affects the\n operation of the network or violates the rules and protocols for\n communication across the network.\n\n Corresponding Source conveyed, and Installation Information\n provided, in accord with this section must be in a format that is\n publicly documented (and with an implementation available to the\n public in source code form), and must require no special password\n or key for unpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of\n this License by making exceptions from one or more of its\n conditions. Additional permissions that are applicable to the\n entire Program shall be treated as though they were included in\n this License, to the extent that they are valid under applicable\n law. If additional permissions apply only to part of the Program,\n that part may be used separately under those permissions, but the\n entire Program remains governed by this License without regard to\n the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\n remove any additional permissions from that copy, or from any part\n of it. (Additional permissions may be written to require their own\n removal in certain cases when you modify the work.) You may place\n additional permissions on material, added by you to a covered\n work, for which you have or can give appropriate copyright\n permission.\n\n Notwithstanding any other provision of this License, for material\n you add to a covered work, you may (if authorized by the copyright\n holders of that material) supplement the terms of this License\n with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material,\n or requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors\n or authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions\n of it) with contractual assumptions of liability to the recipient,\n for any liability that these contractual assumptions directly\n impose on those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\n restrictions\" within the meaning of section 10. If the Program as\n you received it, or any part of it, contains a notice stating that\n it is governed by this License along with a term that is a further\n restriction, you may remove that term. If a license document\n contains a further restriction but permits relicensing or\n conveying under this License, you may add to a covered work\n material governed by the terms of that license document, provided\n that the further restriction does not survive such relicensing or\n conveying.\n\n If you add terms to a covered work in accord with this section,\n you must place, in the relevant source files, a statement of the\n additional terms that apply to those files, or a notice indicating\n where to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in\n the form of a separately written license, or stated as exceptions;\n the above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\n provided under this License. Any attempt otherwise to propagate or\n modify it is void, and will automatically terminate your rights\n under this License (including any patent licenses granted under\n the third paragraph of section 11).\n\n However, if you cease all violation of this License, then your\n license from a particular copyright holder is reinstated (a)\n provisionally, unless and until the copyright holder explicitly\n and finally terminates your license, and (b) permanently, if the\n copyright holder fails to notify you of the violation by some\n reasonable means prior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\n reinstated permanently if the copyright holder notifies you of the\n violation by some reasonable means, this is the first time you\n have received notice of violation of this License (for any work)\n from that copyright holder, and you cure the violation prior to 30\n days after your receipt of the notice.\n\n Termination of your rights under this section does not terminate\n the licenses of parties who have received copies or rights from\n you under this License. If your rights have been terminated and\n not permanently reinstated, you do not qualify to receive new\n licenses for the same material under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\n run a copy of the Program. Ancillary propagation of a covered work\n occurring solely as a consequence of using peer-to-peer\n transmission to receive a copy likewise does not require\n acceptance. However, nothing other than this License grants you\n permission to propagate or modify any covered work. These actions\n infringe copyright if you do not accept this License. Therefore,\n by modifying or propagating a covered work, you indicate your\n acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\n receives a license from the original licensors, to run, modify and\n propagate that work, subject to this License. You are not\n responsible for enforcing compliance by third parties with this\n License.\n\n An \"entity transaction\" is a transaction transferring control of\n an organization, or substantially all assets of one, or\n subdividing an organization, or merging organizations. If\n propagation of a covered work results from an entity transaction,\n each party to that transaction who receives a copy of the work\n also receives whatever licenses to the work the party's\n predecessor in interest had or could give under the previous\n paragraph, plus a right to possession of the Corresponding Source\n of the work from the predecessor in interest, if the predecessor\n has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\n rights granted or affirmed under this License. For example, you\n may not impose a license fee, royalty, or other charge for\n exercise of rights granted under this License, and you may not\n initiate litigation (including a cross-claim or counterclaim in a\n lawsuit) alleging that any patent claim is infringed by making,\n using, selling, offering for sale, or importing the Program or any\n portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under\n this License of the Program or a work on which the Program is\n based. The work thus licensed is called the contributor's\n \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\n owned or controlled by the contributor, whether already acquired\n or hereafter acquired, that would be infringed by some manner,\n permitted by this License, of making, using, or selling its\n contributor version, but do not include claims that would be\n infringed only as a consequence of further modification of the\n contributor version. For purposes of this definition, \"control\"\n includes the right to grant patent sublicenses in a manner\n consistent with the requirements of this License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-\n free patent license under the contributor's essential patent\n claims, to make, use, sell, offer for sale, import and otherwise\n run, modify and propagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any\n express agreement or commitment, however denominated, not to\n enforce a patent (such as an express permission to practice a\n patent or covenant not to sue for patent infringement). To \"grant\"\n such a patent license to a party means to make such an agreement\n or commitment not to enforce a patent against the party.\n\n If you convey a covered work, knowingly relying on a patent\n license, and the Corresponding Source of the work is not available\n for anyone to copy, free of charge and under the terms of this\n License, through a publicly available network server or other\n readily accessible means, then you must either (1) cause the\n Corresponding Source to be so available, or (2) arrange to deprive\n yourself of the benefit of the patent license for this particular\n work, or (3) arrange, in a manner consistent with the requirements\n of this License, to extend the patent license to downstream\n recipients. \"Knowingly relying\" means you have actual knowledge\n that, but for the patent license, your conveying the covered work\n in a country, or your recipient's use of the covered work in a\n country, would infringe one or more identifiable patents in that\n country that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\n arrangement, you convey, or propagate by procuring conveyance of,\n a covered work, and grant a patent license to some of the parties\n receiving the covered work authorizing them to use, propagate,\n modify or convey a specific copy of the covered work, then the\n patent license you grant is automatically extended to all\n recipients of the covered work and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\n the scope of its coverage, prohibits the exercise of, or is\n conditioned on the non-exercise of one or more of the rights that\n are specifically granted under this License. You may not convey a\n covered work if you are a party to an arrangement with a third\n party that is in the business of distributing software, under\n which you make payment to the third party based on the extent of\n your activity of conveying the work, and under which the third\n party grants, to any of the parties who would receive the covered\n work from you, a discriminatory patent license (a) in connection\n with copies of the covered work conveyed by you (or copies made\n from those copies), or (b) primarily for and in connection with\n specific products or compilations that contain the covered work,\n unless you entered into that arrangement, or that patent license\n was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or\n limiting any implied license or other defenses to infringement\n that may otherwise be available to you under applicable patent\n law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order,\n agreement or otherwise) that contradict the conditions of this\n License, they do not excuse you from the conditions of this\n License. If you cannot convey a covered work so as to satisfy\n simultaneously your obligations under this License and any other\n pertinent obligations, then as a consequence you may not convey it\n at all. For example, if you agree to terms that obligate you to\n collect a royalty for further conveying from those to whom you\n convey the Program, the only way you could satisfy both those\n terms and this License would be to refrain entirely from conveying\n the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\n permission to link or combine any covered work with a work\n licensed under version 3 of the GNU Affero General Public License\n into a single combined work, and to convey the resulting work. The\n terms of this License will continue to apply to the part which is\n the covered work, but the special requirements of the GNU Affero\n General Public License, section 13, concerning interaction through\n a network will apply to the combination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new\n versions of the GNU General Public License from time to time. Such\n new versions will be similar in spirit to the present version, but\n may differ in detail to address new problems or concerns.\n\n Each version is given a distinguishing version number. If the\n Program specifies that a certain numbered version of the GNU\n General Public License \"or any later version\" applies to it, you\n have the option of following the terms and conditions either of\n that numbered version or of any later version published by the\n Free Software Foundation. If the Program does not specify a\n version number of the GNU General Public License, you may choose\n any version ever published by the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\n versions of the GNU General Public License can be used, that\n proxy's public statement of acceptance of a version permanently\n authorizes you to choose that version for the Program.\n\n Later license versions may give you additional or different\n permissions. However, no additional obligations are imposed on any\n author or copyright holder as a result of your choosing to follow\n a later version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\n APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE\n COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\"\n WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE\n RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.\n SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL\n NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\n WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES\n AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\n FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\n CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE\n THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA\n BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\n PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\n PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF\n THE POSSIBILITY OF SUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\n above cannot be given local legal effect according to their terms,\n reviewing courts shall apply local law that most closely\n approximates an absolute waiver of all civil liability in\n connection with the Program, unless a warranty or assumption of\n liability accompanies a copy of the Program in return for a fee.\n\n\nSection 6 - 3rd Party Components\n\n(1) The Software Program includes software and documentation components\ndeveloped in part by Silver Egg Technology, Inc.(\"SET\") prior to 2001\nand released under the following license.\n\n Copyright (c) 2001 Silver Egg Technology\n\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation\n files (the \"Software\"), to deal in the Software without\n restriction, including without limitation the rights to use,\n copy, modify, merge, publish, distribute, sub-license, and/or\n sell copies of the Software, and to permit persons to whom the\n Software is furnished to do so, subject to the following\n conditions:\n \n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE.", + "json": "tanuki-community-sla-1.3.json", + "yaml": "tanuki-community-sla-1.3.yml", + "html": "tanuki-community-sla-1.3.html", + "license": "tanuki-community-sla-1.3.LICENSE" + }, + { + "license_key": "tanuki-development", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-tanuki-development", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Tanuki Software, Ltd.\nDevelopment Software License Agreement\nVersion 1.3\n\nIMPORTANT-READ CAREFULLY: This License Agreement is a legal agreement\nbetween you (\"Licensee\") and Tanuki Software, Ltd. (\"TSI\"), under\nwhich TSI grants licenses with respect to computer software,\nassociated media, printed materials, and may include online or\nelectronic documentation. PLEASE READ THIS AGREEMENT CAREFULLY BEFORE\nYOU INSTALL, COPY, DOWNLOAD OR USE THE SOFTWARE ACCOMPANYING THIS\nPACKAGE. BY INSTALLING, COPYING, DOWNLOADING OR USING THE SOFTWARE,\nYOU, ON BEHALF OF YOURSELF AND/OR THE BUSINESS YOU REPRESENT, AGREE TO\nBE BOUND BY ALL TERMS AND CONDITIONS OF THIS AGREEMENT INCLUDING ALL\nTERMS AND CONDITIONS INCORPORATED HEREIN BY REFERENCE. The Licensee\nmay optionally request that this agreement be signed by both parties:\n\nLicense Agreement Number: TSILA-____________\n \nPursuant to this DEVELOPMENT SOFTWARE LICENSE AGREEMENT (the\n\"Agreement\") dated this __th day of ______, 20__ (the \"Effective\nDate\"), _____________________ (\"Licensee\") and Tanuki Software, Ltd.\n(\"TSI\") agree to the following terms and conditions:\n\n\nSection 1 - Grant of License\n\nEffective upon the payment of the license fees presented in Exhibit 1,\nTSI grants to Licensee a non-exclusive, non-transferable,\nnon-sublicensable right and license to use, reproduce, display, sell,\nlease, distribute and transfer copies, directly or indirectly, of the\nSoftware Program and documentation, in executable code form only, as\nparts of Licensee Products within the Product Group(s) defined in\nExhibit 1, for the purposes of marketing such Products to Licensee\ncustomers and for internal development of Products, during the period\nLicensee's subscription of the TSIMS (as defined in Section 5)\neffectively continues. Licensee may continue to market and\ndistribute Product Versions containing the Software Program so long as\nsuch Product Versions have been completely developed by the end of the\nperiod Licensee's subscription of the TSIMS is active; provided\nhowever that under no circumstances may Licensee develop or continue\nto develop any new Product, or new Product Version, using or\ncontaining the Software Program after Licensee discontinues\nsubscription of TSIMS. Licensee may not, under any circumstances,\ndistribute or resell the Software Program as a stand-alone product,\nnor use the Software Program to create any Product to directly compete\nwith the Software Program.\n\nWhere the Licensee qualifies as a Small Business, as defined in\nSection 2.5, the Product Group restriction is removed and all Licensee\nProducts will be covered by this agreement.\n\n\nSection 2 - Definitions \n\n2.1. \"Community Edition\" shall mean versions of the Software Program\ndistributed in source form under the Tanuki Software, Ltd. Community\nSoftware License Agreement (CSLA), and all new releases, corrections,\nenhancements and updates to the Software Program, which TSI makes\ngenerally available under the CSLA. \n\n2.2. \"Documentation\" shall mean the contents of the website describing\nthe functionality and use of the Software Program, located at\nhttp://wrapper.tanukisoftware.org\n\n2.3. \"Product\" shall mean the computer programs, that are provided by\nLicensee to Licensee customers or potential customers, and that\ncontain both the Software Program as a component of the Product, and a\ncomponent or components (other than the Software Program) that provide\nthe material functionality of the Product. If the Product is released\nin source form, the Software Program or any of its components may only\nbe included in executable form.\n\n2.4 \"Product Version\" shall mean a specific distribution or release of\na Product. Any modifications to the distribution or release which\ninclude changes to program functionality or updated included modules\nor libraries constitute a new Product Version.\n\n2.4 \"Product Group\" shall mean one or more Products or Product\ncomponents which are designed as components of a common project,\nproduct, or product suite.\n\n2.5 \"Small Business\" shall mean a company or organization with less\nthan 100 employees and annual sales of less than 5 million USD, 4\nmillion EUR, or 400 million JPY, depending on the currency used to\npurchase the Software Program, unless otherwise qualified in\nExhibit 1.\n\n2.6. \"Software Program\" shall mean the computer software and license\nfile provided by TSI under this Agreement, including all new releases,\ncorrections, enhancements and updates to such computer software, which\nTSI makes generally available and which Licensee receive pursuant to\nLicensee subscription to TSIMS. Some specific features or platforms\nmay not be enabled if they do not fall under the feature set(s)\ncovered by the specific license fees paid.\n\n\nSection 3 - Licensee Obligations\n\nLicensee shall be solely responsible for all marketing, manufacturing,\npackaging, documentation production, distribution and customer pricing\nof the Products, and ensure that the Products and Licensee's such\nactivities shall be in compliance with the applicable laws and\nregulations. Except as otherwise provided in this Agreement, Licensee\nshall also assume all responsibility and liability to customers for\nrelated support and assistance. Under no circumstances may Licensee\nmodify, decompile, reverse engineer or disassemble any executable code\ncontained within the Software Program nor create or prepare derivative\nworks of, or attempt to discover or modify in any way the underlying\nsource code of the Software Program or any part thereof. Licensee\nagrees that Licensee will not, nor will Licensee authorize or license\nanother to, sell, market or license the Software Program, or any\nportion thereof, as a standalone computer software program, component\nor software development tool, or as a component or components of a\ncomputer software program, the chief marketability and functionality\nof which is the Software Program. Licensee further agrees that\nLicensee will not publish, present or document the application\nprogramming interface (API) of the Software Program except as required\nfor specific use within the Product.\n\nLicensee shall ensure that each end user receiving a copy of any\nProduct shall receive a license agreement containing terms no less\nprotective of the Software Program than those contained in Exhibit 2,\nwhich shall include the Copyright Notices described therein in a\nlocation that is obvious to Licensee's customers. \n\nNeither the Software Program nor Product may be modified, nor in any\nway obfuscate or obstruct the copyright notice and license information\ndisplayed in the console and log files by the Software Program on\nstartup.\n\nLicensee may extend and/or modify the Community Edition of the\nSoftware Program and distribute under the terms of this agreement\nprovided that a) the Software Program is only distributed in\nexecutable form, and b) a valid license key is distributed with\nSoftware Program such that the Software Program is able to access the\nlicense key, and c) the Copyright and \"Licensed to {Licensee} for\n{Product}\" notices are clearly visible in the console and log files of\nthe Software Program on startup, and d) the \"Licensed to {Licensee}\nfor {Product}\" notice displays the Licensee and Product values from\nthe license key file.\n\n\nSection 4 - Copyright and Trademark\n\nLicensee acknowledges that all copyrights in the Software Program and\nthe goodwill associated therewith are vested in and belong to TSI.\n\n\nSection 5 - Maintenance Services\n\n5.1 Scope and Duration\nTSI Maintenance Services (\"TSIMS\") are provided on an annual basis for\nthe Software Program. The first year of TSIMS shall be included in the\ninitial fees paid for the license. Successive one (1) year periods of\nTSIMS, can optionally be ordered for 25% of the then current rate\nestablished by TSI for an equivalent Agreement. TSI shall provide\nLicensee with notice of such renewal, at least thirty (30) days prior\nto the end of the current TSIMS period. In the event that Licensee\nallows TSIMS to expire, TSI will allow Licensee to obtain TSIMS for\nsuch Licensed Software including any new versions of the Licensed\nSoftware upon payment of 125% of all lapsed TSIMS fees.\n\nFor Licensees who have qualified as a Small Business, this status may\nbe reviewed each time TSIMS is renewed. For Licensees who no longer\nqualify as a Small Business, this agreement will continue to cover\nexisting Products and Product Groups, but additional Product Group(s)\nwill require their own separate Agreement(s).\n\n5.2 Maintenance Obligations of the Parties\nLicensee agrees to provide first line support for the Product and\nSoftware Program to Licensee customers, which support will include\n(i) appropriate number of trained personnel available to provide, in a\ncompetent manner, first line support of the Software Program to\nLicensee customers, (ii) log of all communication between Licensee and\nLicensee customer, as well as a reproducible test case (wherever\npossible) and any relevant information for any second line support\ncases that have been opened by Licensee with TSI.\n\n\nSection 6 - Warranty and Limited Liability\n\nSoftware Warranty: TSI warrants that, for a period of ninety (90) days\nfrom the initial delivery of the Software Program to Licensee, the\nSoftware Program, if used by Licensee in accordance with the\nDocumentation, shall operate in material conformity with the\nDocumentation for such Software Program. TSI does not warrant that the\nSoftware Program will meet all of Licensee requirements or that the\nuse of the Software Program will be uninterrupted or error free. TSI's\nentire liability, and Licensee exclusive remedy, under this limited\nSoftware Warranty shall be for TSI (i) to attempt, through reasonable\nefforts, to correct any reproducible material nonconformity discovered\nwithin the ninety (90) day warranty period; or (ii) to replace the\nnonconforming Software Program with Software Program which conforms to\nthe foregoing warranty. In the event TSI is unable to cure the breach\nof warranty described in this Section 6, after attempting the remedies\ndescribed in (i) and (ii) above, Licensee may return the Software\nProgram and TSI shall refund any license and maintenance fees paid by\nLicensee to TSI for the Software Program provided the refund of\nmaintenance fees shall be limited to the amount representing the\nperiod during which the Software Program showed nonconformity. The\nabove remedies are available only if TSI is promptly notified in\nwriting, within the warranty period, upon discovery of the\nnonconformity by Licensee and TSI's examination of the Software\nProgram discloses that such nonconformity exists, and that the\nSoftware Program has not been (i) altered or modified, other than by\nTSI, (ii) subjected to negligence, or computer or electrical\nmalfunctions, or (iii) used, adjusted, or installed other than in\naccordance with the Documentation. \n\nTSIMS and Other Services Warranty: TSI warrants that any TSIMS or\nother services performed pursuant to the terms of this Agreement shall\nbe performed in a professional and workmanlike manner consistent with\ngenerally accepted industry standards. \n\nDisclaimer: THE EXPRESS LIMITED WARRANTIES SET FORTH ABOVE ARE\nEXCLUSIVE AND IN LIEU OF ALL OTHER WARRANTIES, EXPRESS, IMPLIED OR\nSTATUTORY WITH RESPECT TO THE SOFTWARE PROGRAM, AND TSI EXPRESSLY\nDISCLAIMS ANY IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION,\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLimitation of Liability: IN NO EVENT SHALL EITHER PARTY'S LIABILITY\nARISING OUT OF THIS AGREEMENT OR THE TERMINATION OF THIS AGREEMENT\nEXCEED THE AMOUNTS PAID OR DUE TO TSI HEREUNDER DURING A FULL YEAR\nIMMEDIATELY PRECEDING SUCH EVENT. IF SUCH LIABILITY RELATES TO\nPARTICULAR ITEMS OF SOFTWARE PROGRAM OR SERVICES PROVIDED BY TSI, SUCH\nLIABILITY SHALL BE LIMITED TO THE FEES PAID FOR THE RELEVANT SOFTWARE\nPROGRAM OR SERVICES. IN NO EVENT SHALL EITHER PARTY HAVE ANY LIABILITY\nFOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES INCLUDING, WITHOUT\nLIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF DATA OR COSTS OF\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, ARISING IN ANY WAY OUT OF\nTHIS AGREEMENT UNDER ANY CAUSE OF ACTION, WHETHER OR NOT THE OTHER\nPARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. NO ACTION\nMAY BE BROUGHT AGAINST TSI LATER THAN ONE (1) YEAR AFTER THE CAUSE OF\nACTION OCCURRED. EXCEPT FOR CLAIMS MADE UNDER SECTION 7\n(INDEMNIFICATION), IN NO EVENT SHALL TSI BE LIABLE FOR ANY CLAIMS,\nDEMANDS OR ACTIONS OF ANY NATURE BROUGHT BY ANY THIRD PARTY AGAINST\nLICENSEE. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING THE FAILURE\nOF THE ESSENTIAL PURPOSE OF ANY LIMITED REMEDY.\n\nWarranty Claims: Any claims made by Licensee for the breach of a\nwarranty set forth in this Section 6, shall be made in writing and\ndelivered to TSI by the end of the applicable warranty period, and\nLicensee shall provide TSI a reproducible test case, if applicable,\ndemonstrating the breach of warranty.\n\n\nSection 7 - Indemnification\n\nTSI warrants that the use or distribution of unaltered Software\nProgram(s), or the exercise of the licenses granted hereunder, will\nnot infringe any copyright or patent, or other intellectual property\nrights of any third party, and TSI has all rights necessary for the\ngrant of the rights and licenses granted by this Agreement. TSI agrees\nto indemnify, defend and hold Licensee harmless from any and all\nactions, causes of action, claims, demands, reasonable costs,\nliabilities, reasonable expenses (including reasonable attorney's\nfees) and damages (collectively, a \"Loss\" or \"Losses\") arising from\nany claim that the Software Program infringes any copyright or patent,\nor other intellectual property right of a third party, provided,\nhowever:\n(1) Licensee shall promptly deliver to TSI notice in writing of any\n infringement claim made by a third party, and, if known, specify\n in reasonable detail the nature of the claim and the amount, or an\n estimate of the amount, of the liability arising there from.\n Licensee shall, at TSI's expense, provide to TSI as promptly as\n practicable thereafter information and documentation reasonably\n requested by TSI to support and verify the claim asserted,\n provided that, in so doing, TSI may restrict or condition any\n disclosure in the interest of preserving privileges of importance\n in any foreseeable litigation.\n(2) TSI may assume and retain sole control of the investigation, the\n defense or the settlement of any third party infringement claim\n made against Licensee or TSI with respect to the Software Program,\n including the employment of counsel or accountants, at its cost\n and expense. Licensee shall have the right to employ counsel\n separate from counsel employed by TSI in any such action and to\n participate therein, but the fees and expenses of such counsel\n employed by Licensee shall be at Licensee expense. TSI shall have\n the right to determine and adopt (or, in the case of a proposal by\n Licensee, to approve) a settlement of such matter in its\n reasonable discretion. TSI shall not be liable for any settlement\n of any claim effected without TSI's prior written consent, which\n shall not be unreasonably withheld. Whether or not TSI chooses to\n so investigate or defend such claim, Licensee shall reasonably\n cooperate with TSI in the defense thereof and shall furnish such\n records, information and testimony, and attend such conferences,\n discovery proceedings, hearings, trials and appeals, as may be\n reasonably requested by TSI in connection therewith.\n(3) If such a claim arises, or in either party's judgment is likely to\n arise, Licensee agrees to allow TSI, at TSI's option, to either\n (i) procure the right to permit the continued exercise of the\n rights and licenses in the Software Program granted under this\n Agreement; (ii) replace or modify the Software Program so it\n be-comes non-infringing, while affording equivalent performance;\n or (iii) terminate the license for the infringing Software Program\n and upon return thereof by Licensee, refund the unearned portion\n of any license fees paid by Licensee for the remainder of the\n current term hereof.\n(4) TSI shall have no indemnity obligation for claims of infringement\n resulting from any combination, operation or use of the Software\n Program, or any components thereof, with any software programs or\n data not supplied by TSI if such infringement would have been\n avoided by use of the Software Program alone. Licensee\n acknowledges and agrees that these four items are the exclusive\n remedy of Licensee for damages for breach of warranty or\n representations contained in this Section 7.\n\n\nSection 8 - Termination\n\nShould either party commit a material breach of its obligations\nhereunder, the other party may, at its option, terminate this\nAgreement by written notice to the party in default. Such notice shall\nidentify and describe the default upon which termination is based. The\ndefaulting party shall have thirty (30) days from the effective\ndelivery of the notice to cure such default, which, if affected, shall\nprevent termination by virtue of such default. Should an insolvency\nproceeding be filed by or against either party, the other party may\nterminate this Agreement forthwith by giving a written notice to the\nfirst party. Upon termination of this Agreement, Licensee will either\nreturn to TSI or destroy all copies of the Software Program and\ndocumentation then in Licensee's possession. Licenses to the Software\nProgram granted in the normal course of business by Licensee to its\ncustomers shall survive termination of this Agreement. Licensee\nshall, within thirty (30) days after the date of such termination,\nfurnish TSI with a certificate of compliance in accordance with this\nSection. The parties agree that TSI shall have the right to enforce\nthe obligations arising under this Section and to enjoin or compel\nLicensee through injunctive relief. Licensee may retain a commercially\nreasonable number of copies of the Software Program and documentation\nsolely for the purpose of supporting Licensee customers who purchased\na Product prior to the termination of this Agreement.\n\n\nSection 9 - Export Controls\n\nLicensee shall comply with, and ensure that Licensee distributors and\nresellers comply with, all applicable laws, regulations, rulings and\nexecutive orders of Japan or any other relevant jurisdiction relating\nto the export and re-export of the Software Program or any products\ncontaining the Software Program. Licensee shall not directly or\nindirectly export or re-export any Software Program or any Products\ncontaining the Software Program unless Licensee have obtained a\nlicense to do so if such a license is required. Licensee further\nagree that Licensee take appropriate measure to ensure that the\nSoftware Program or any Products containing the Software Program will\nnot be exported or re-exported in violation of any applicable laws or\nregulations of any relevant jurisdiction.\n\n\nSection 10 - Entire Agreement\n\nThis Agreement, including any attachments, constitutes the entire\nagreement of the parties with respect to the subject matter hereof and\nsupersedes all prior agreements, both oral and written,\nrepresentations, statements, negotiations and undertakings, with\nrespect to the subject matter hereof, which such agreements,\nrepresentations, statements, negotiations and undertakings are merged\nherein. No amendment or modification of this Agreement or any\nprovision or attachment of this Agreement shall be effective unless it\nis in writing and signed by both parties.\n\n\nSection 11 - Governing Law\n\nThe validity, construction and performance of this Agreement shall be\ngoverned by the substantive laws of Japan (excluding conflicts of law\nprinciples). Licensee and TSI agree that any dispute arising out of\nthis Agreement shall be subject to the exclusive jurisdiction of the\nTokyo District Court of Japan. If any legal action is undertaken to\nenforce the terms of this Agreement, the prevailing party shall be\nentitled to reasonable attorney's fees and costs in addition to any\nother relief to which that party may be entitled.\n\n Licensee agrees that the United Nations Convention on Contracts for\nthe International Sales of Goods will not apply to this Agreement.\n\n\nSection 12 - Assignment and Benefit\n\nWithout the consent of the other party in writing, neither party may\nassign this Agreement; provided, however, TSI or Licensee may assign\nthis Agreement to a wholly-owned subsidiary of the respective\ncorporation or a corporation in which the shareholders of the\nrespective corporation own a majority interest of the voting control\nprovided that the assigning party remains obligated hereunder; further\nprovided, however, TSI or Licensee may assign this Agreement to\nanother corporation which acquires or has acquired substantially all\nof the stock or assets of the assignor. Where the Licensee had\nqualified as a Small Business, and the assignee does not, this\nagreement will continue to cover existing Products and Product\nGroup(s), but additional Product Group(s) will require their own\nseparate Agreement(s).\n\nThis Agreement shall be binding upon and shall inure to the benefit of\nLicensee and TSI and each party's successors, subject to the other\nprovisions of this Section.\n\n\nSection 13 - 3rd Party Components\n\n(1) The Software Program includes software and documentation\ncomponents developed in part by Silver Egg Technology, Inc.(\"SET\")\nprior to 2001 and released under the following license.\n\n Copyright (c) 2001 Silver Egg Technology\n\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation\n files (the \"Software\"), to deal in the Software without\n restriction, including without limitation the rights to use, copy,\n modify, merge, publish, distribute, sub-license, and/or sell\n copies of the Software, and to permit persons to whom the Software\n is furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicensor represents and warrants that the Program does not contain any\ncode subject to the GNU General Public License (\"GPL\"), GNU Lesser\nGPL, \"copyleft\" license, or any other license that requires as a\ncondition of use, modification and/or distribution of such code that\nother software incorporated into, derived from, or distributed with\nsuch code be (i) disclosed or distributed in Source Code Program form;\n(ii) licensed for the purpose of making derivative works; or (iii)\nredistributable at no charge.\n\n\nSection 14 - Confidentiality \n\nConfidential Information means all technical, business, financial and\nother information that is disclosed by either party to the other,\nwhether orally or in writing, and all the terms and conditions of this\nAgreement, and all non-publicly available information. \"Confidential\nInformation\" will not include any information (a) that is publicly\navailable through no breach of this Agreement by either party, (b)\nthat is independently developed or was previously known by either\nparty, or (c) that is rightfully acquired by either party from a third\nparty not under an obligation of confidentiality.\n\nExcept as expressly permitted by this Agreement, both parties shall\nnot, nor shall they permit their respective employees, agents,\nattorneys or independent contractors to, disclose, use, copy,\ndistribute, sell, license, publish, reproduce or otherwise make\navailable Confidential Information of the other party. Each party\nwill (a) secure and protect the other party's Confidential Information\nby using the same or greater level of care that it uses to protect its\nown confidential and proprietary information of like kind, but in no\nevent less than a reasonable degree of care, and (b) advise each of\ntheir respective employees, agents, attorneys and independent\ncontractors who have access to such Confidential Information of the\nterms of this paragraph. Notwithstanding the foregoing, either party\nmay disclose the other party's Confidential Information to the extent\nrequired by applicable law or regulation, or by order of a court or\nother governmental entity, in which case such party shall so notify\nthe other party as soon as practicable. \n\nThe confidentiality obligation hereunder shall survive termination or\nexpiration of this Agreement.\n\n\nSection 15 - Payments\n\nAll amounts payable are due net 30 days from the invoice date unless\notherwise specified in the invoice. All amounts payable are gross\namounts but exclusive only of any value added tax, sales tax or their\nequivalent. If any such tax is or will be chargeable, the Licensee\nshall pay the tax to the Licensor and the Licensor shall provide the\nLicensee with a tax invoice that meets all conditions necessary to\nallow the Licensee to reclaim such tax. If according to applicable law\nor regulations the Licensee is liable for any such tax, the Licensee\nwill account for or pay the tax to the tax authorities. Each Party is\nresponsible for all taxes (including, but not limited to, taxes based\nupon its income) or levies imposed on it under applicable laws,\nregulations and tax treaties as a result of this agreement. In the\nevent that a withholding tax is payable, and the Licensee is required\nto deduct the withholding tax from the payment to the Licensor as\nrequired under applicable laws, regulations and tax treaties, the\nLicensee agrees to furnish evidence of such paid taxes to the Licensor\nas is sufficient to enable the Licensor to obtain any tax credits\navailable to it. Such evidence must be translated into English or\nJapanese and be provided with the original, unless approved by the\nLicensor in writing. \n\n\n----------------------------------------------------------------------\nIN WITNESS WHEREOF, the parties have caused this Agreement to be\nexecuted by their respective duly authorized representatives. \n\nLICENSEE \t\t\t\t\tTSI \n \n__________________________ By: ______________________________ \n \nDepartment name Title: ___________________________ \n\n__________________________ Date: ____________________________\n \n\nLicensee's Authorized Signature\n\n___________________________\n\n\nTyped or Printed Name\n\n___________________________\n\n\nTitle:\n\n___________________________\n\n\nDate:\n\n___________________________\n\n\nStreet Address\n\n___________________________\n\nCity or Town\n___________________________\n\nState or Province\n___________________________\n\nZip Code\n___________________________\n\nCountry\n___________________________\n \n\n\n----------------------------------------------------------------------\nEXHIBIT 1\n\nLicensed Software:\nJava Service Wrapper version ____, __________ Edition __ Bit\n\nLicensed Operating System and Hardware Platform:\nAll platforms\n\nLicensed Software Commercial Restrictions:\nNone\n\nLicensed Software Use:\nBundle Development / Deployment.\n\nLicensed Software Use Location:\nBundle Development/Deployment Worldwide\n\nAuthorized Number of Users:\nUnlimited\n\nLicensee Small Business Status:\n[ ] Small Business\n[ X ] N/A\n\nLicensee Product Group(s) Covered by this Agreement:\n\n\nFEES:\nSoftware License + first year of TSIMS\n$ \n\nTSIMS for year 2 and onward will be priced at 25% of the then current\nprice of a new Software License.\n[ ] TSIMS for year 2 and later will be automatically invoiced one\n month prior to TSIMS expiring unless previously notified in\n writing of a request not to renew.\n[ X ] TSIMS for year 2 and later will be invoiced on request.\n Requests made after TSIMS has expired will be at 125% of the\n regular price.\n\n(Services)\nNone\n\n\n----------------------------------------------------------------------\nEXHIBIT 2\nEnd User License Terms / Copyright Notice\n\nAll End User Licenses shall include provisions that:\n\n(1) the End User is granted only a personal, nontransferable, and\n nonexclusive right to use the software only for personal use of\n the End User;\n\n(2) Licensee and/or its licensors retain all of their intellectual\n property rights in the software, and no title to such intellectual\n property is transferred to the End User;\n\n(3) the End User agrees not to reverse assemble, decompile, or\n otherwise attempt to derive source code from the TSI software;\n\n(4) Licensee's licensors shall not be liable to the End User for any\n indirect, consequential, incidental or special damages arising out\n of the use or license of the software, regardless of the theory of\n liability (including negligence and strict liability); and\n\n(5) Licensee and/or its licensors will have the right to terminate the\n license at any time in the event the End Users misuses the\n software;\n\nand\n\nA section concerning 3rd party components shall be provided, in all\nEnd User licenses, which contains at least the following:\n\nThe Software Program includes software and documentation components\ndeveloped in part by Silver Egg Technology, Inc.(\"SET\") prior to 2001\nand released under the following license.\n\n Copyright (c) 2001 Silver Egg Technology\n\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation\n files (the \"Software\"), to deal in the Software without\n restriction, including without limitation the rights to use, copy,\n modify, merge, publish, distribute, sub-license, and/or sell\n copies of the Software, and to permit persons to whom the Software\n is furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.", + "json": "tanuki-development.json", + "yaml": "tanuki-development.yml", + "html": "tanuki-development.html", + "license": "tanuki-development.LICENSE" + }, + { + "license_key": "tanuki-maintenance", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-tanuki-maintenance", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Tanuki Software, Ltd.\nMaintenance Support Services Addendum\nVersion 1.3\n\nMaintenance Support Agreement Number: TSIMS-_____________\n\nThis Maintenance Support Services Addendum to the Development Software\nLicense Agreement, number TSILA-_______________ (\"Agreement\") is\neffective on ______ __, ____. All terms and definitions contained in\nthe Agreement to which this Addendum refers shall apply to the\nSoftware Program and services provided hereunder unless superseded by\nthe terms below.\n\n\n1. DEFINITIONS: The following definitions apply to this Addendum.\n\n1.1 \"TSIMS\" means the annual, prepaid Maintenance Support services\nplan provided to Licensee by Tanuki Software, Ltd. (\"TSI\") which\nincludes email based technical support during business hours\n(wrapper-support@tanukisoftware.com) for the Software Program version\nlicensed hereunder including any applicable Updates and New Versions.\n\n1.2 \"New Version\" means a major Software Program release that includes\nnew product functionality and is denoted by a whole new product\nextension number (i.e., 3.3 to 4.0). New Versions shall include the\nfollowing deliverables online:\n- documentation,\n- installation guide,\n- authorization codes,\n- release notes.\n\n1.3 \"Site\" means a single physical location, a single purchasing\ncontact, and a single Licensee support contact where Software Program\nis in use. TSIMS must be purchased for all Software Programs at a Site\nwhen TSIMS is renewed at that Site.\n\n1.4 \"Updates\" means all bug fixes, patches, workarounds, and\nenhancements contained in any of the releases of the Software Program\n(i.e., 3.3 to 3.4).\n\n\n2. SERVICES:\n\n2.1 Licensee shall be entitled to the level of service as described in\nSection 7 herein.\n\n2.2 TSIMS is provided subject to the terms and conditions set forth in\nthis Addendum. TSI has no obligation to provide TSIMS unless;\n(a) Licensee is in compliance with all terms and conditions of the\nAgreement, (b) the Software Program is unmodified by Licensee or any\nthird party, and is properly maintained by Licensee at the current or\nimmediately preceding version level, (c) and Licensee provides to TSI\ntechnical support personnel the name of its sole point of contact for\ntechnical support. Additional support services may be available to\nLicensee at TSI's current hourly consulting rates.\n\n3.3 Prior to or upon expiration of this Agreement, upon Licensee's\nrequest, the parties hereto will negotiate in good faith an ongoing\nSoftware Program support plan.\n\n\n3. TERM AND RENEWALS:\n\n3.1 TSIMS shall commence on (a) the day of the Software Program\nshipment or (b) the date specified in this Agreement; or (c) as\notherwise specified and agreed to in writing by TSI but in no case not\nlater than six (6) months from date of Software Program shipment and\nwill continue for a period of one year from the date established in\n(a), (b) or (c) above. If no specific TSIMS start is established, then\nTSIMS will commence on the Software Program shipment date. TSIMS may\nbe renewed for subsequent one (1) year periods subject to then current\nTSIMS fees and the execution of a new Maintenance Support Services\nAddendum.\n\n\n4. CONDITIONS AND DISCLAIMER:\n\n4.1 TSI's obligation to provide TSIMS hereunder shall be limited to\nthe express undertakings described herein and shall not extend to any\nsoftware or hardware products, (a) owned by any third party (b)\nfurnished, modified, revised or repaired by persons other than\nemployees or agents of TSI, (c) operated under improper or unsafe\nconditions, (d) transferred without notice to TSI, or (e) any Licensee\nhardware or expendable supplies. TSIMS shall not include, without\nlimitation, relocation or transfer of the Software Program, or\nmodifications required to adapt products to other hardware or to other\nsoftware not bearing the TSI trademark and not supplied by TSI, or\nmodifications required to bring any outdated TSI Products to a\nrevision level acceptable to TSI.\n\n4.2 Licensee shall notify TSI promptly of problems requiring support\nor corrective action by TSI. Licensee shall maintain at its own cost\n(i) any necessary backup and security of software and any data; and\n(ii) the overall performance of the Licensee system.\n\n\n5. ASSIGNMENT:\nThe rights to prepaid TSIMS are assignable by Licensee, upon written\nnotice to TSI, to any successor of Licensee who agrees in writing to\nbe bound by the terms hereof and pays for the services provided.\n\n\n6. Standard level Maintenance and Support\n\n6.1 Scope of Services\nTSI will provide the following services to all Licensees:\n- Answers to Installation and Authorization Questions\n- Product Use Guidance\n- Problem Diagnosis\n- Software Program Configuration Help\n- Software Program Updates\n- New Media and documentation\n- New Versions of the Software Program\n\nThese services exclude explicitly:\n- Third-Party Products\n- Hardware Platform Related Support\n- Operating System Related Support\n- Integration Advice or Any Other Consulting\n- Training. TSI maintains training and consulting departments that\ncan assist, on a fee-for-service basis, with some or all of the\nservices explicitly excluded as above.\n\n6.2 Limitation\nTSI supports the Software Program as described in the then-current\nprice book for which an annual TSIMS fee is paid. However, TSI will\nfix errors in the current version and the immediately preceding\nversion of the Software Program. The Licensee will provide TSI with\nall the necessary information on the application, the platform, and\nthe infrastructure at the supported Site. If any of such information\nis confidential, the Licensee should notify TSI in accordance with the\nconfidentiality provision of the License Agreement.\n\n6.3 Levels of Support\n1st Level (or First Line Support) Support includes filing the problem\nas an issue in TSI's database, querying the TSI database for similar\nproblems, bugs, and resolutions on the topic and communicating a\nresolution or plan for a resolution back to the Licensee.\n\n2nd Level Support includes further research on the issue and includes,\nbut is not limited to: recreating the problem in house, receiving and\nworking with pieces of Licensee's code that illustrate the behavior;\ndebugging Licensee's code and working to resolve the issue. 2nd Level\nSupport issues are typically assigned to a TSI Product Specialist.\n\n3rd Level Support includes but is not limited to the assistance of\nProduct Support Specialists and Engineering Level Developers to assist\nin debugging code, providing hints to solve the problem, working with\nTSI product code to determine root causes.\n\nWhen the Licensee acquires TSI products through a TSI Partner, it is\nexpected that the main support channel will be established through\nthat Partner. In that case, 1st level support will be handled by that\nPartner, and TSI will communicate solely with the Partner on\nLicensee's issues.\n\n6.4 Priority of an Issue\nThe Licensee and TSI customer support staff shall jointly set issue\npriority levels.\n\nSEVERITY LEVEL 0 - CRISIS - An emergency deployment or production\nenvironment situation where the Software Program is inoperable or\nfails catastrophically and there is no workaround.\n\nSEVERITY LEVEL 1 - HIGH - A detrimental situation where one of the\nfollowing conditions occurs:\n1.) performance of the Software Program degrades substantially under\nreasonable loads causing a severe impact on use; or 2.) one or more\nprimary functions or commands of the Software Program is inoperable.\n\nSEVERITY LEVEL 2 - MEDIUM - Occurs when use of the Software Program is\nnoticeably affected but reasonably correctable by a workaround,\ndocumentation change, or patch which may be completely resolved and\nintegrated into a future release.\n\nSEVERITY LEVEL 3 - LOW - An inconvenient situation where the Software\nProgram is usable but does not provide a function in the most\nconvenient manner and the Licensee suffers little or no significant\nimpact.\n\n6.5 Licensee Assistance and Responsibility in Problem Resolution\nWhen filing an issue, Licensee shall make the following information\navailable to TSI:\n- Maintenance Support Agreement Number\n- Version (including revision level) of the TSI Software Program\n involved and any supporting product of software involved\n- Platform (Including Operating System Revision Level) of the\n Operating Environment\n- Error or other warning or advisory messages which you have been\n receiving\n- A reproducible test case where applicable\n- Any trace, log, and/or console files\n- Configuration files\n- Severity Level of problem\n- Priority Business or other justification for Severity Level 0\n priority issues\n- Licensee responsibility with regard to assisting in resolving the\n Licensee issue includes providing a Licensee on-site technical\n contact, whose availability and response should mirror the response\n level requested of TSI, to provide resource and operational\n assistance.\n\n6.6 Response/Resolution Time\nWithin the business hours of the Customer Support Engineer responsible\nfor the issue:\nResponse Time: For the most prompt service, relevant technical detail\nand quickest response time, (generally less than 1 day) issues should\nbe reported via email at wrapper-support@tanukisoftware.com. Response\nto issues reported to Customer Support through fax, or telephone may\nhave longer response times.\n\nInitial Analysis/Resolution Time:\n\nCrisis Handled on a Case by Case Basis, but initial response will be\nwithin 1 Business Day\n\nHigh Within 5 Business Days\n\nMedium Within 10 Business Days\n\nLow Subject to Development and Customer Support Priority\n\nResolution means that Customer Support will use its reasonable efforts\nto resolve Licensee issues as prioritized above. Resolution may\ninclude: specification of a workaround; identification of a bug; or\nthe recognition that additional analysis work needs to be done, on the\npart of Customer Support and the Licensee, which will extend beyond\nthe initial resolution time.\nIn all cases, resolution of issues by Customer Support will require\nthe Licensee to assist in the following: documentation and\nreproduction of the issue; provision of a Licensee contact person with\nwhom TSI Customer Support can maintain contact to arrange for\nanalysis, testing, systems, and other resources and other tasks in\nsupport of resolution of the Licensee's problem and to whom status\nreports and requests for resources can be addressed.\nOngoing communication shall be maintained regarding Licensee issue\nstatus and progress towards resolution between TSI Customer Support\nand the Licensee's issue contact.\n\n6.7 Notification\nThe Licensee will, by default, be notified by e-mail of all relevant\nupdates on the issue since appropriate levels of technical detail are\noften best captured and presented via written e-mail.\nTSI's Support staff can also maintain telephone contact with the\nLicensee, if requested.\n\n6.8 Distribution of Updates\nShipment of Updates and New Versions will be made on a request-only\nbasis. Requests can be made through an e-mail message.\n\n6.9 Licensee Issues Are Typically Handled by Customer Support\nEngineers\nThis is the primary and usual scenario. Contact is maintained between\nthe Licensee and the TSI Customer Support Engineer (\"CSE\") responsible\nfor the issue. The e-mail address to be used is: \nwrapper-support@tanukisoftware.com", + "json": "tanuki-maintenance.json", + "yaml": "tanuki-maintenance.yml", + "html": "tanuki-maintenance.html", + "license": "tanuki-maintenance.LICENSE" + }, + { + "license_key": "tapr-ohl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "TAPR-OHL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The TAPR Open Hardware License Version 1.0 (May 25, 2007) Copyright 2007 TAPR - http://www.tapr.org/OHL\n\nPREAMBLE\n\nOpen Hardware is a thing - a physical artifact, either electrical or mechanical - whose design information is available to, and usable by, the public in a way that allows anyone to make, modify, distribute, and use that thing. In this preface, design information is called \"documentation\" and things created from it are called \"products.\"\n\nThe TAPR Open Hardware License (\"OHL\") agreement provides a legal framework for Open Hardware projects. It may be used for any kind of product, be it a hammer or a computer motherboard, and is TAPR's contribution to the community; anyone may use the OHL for their Open Hardware project.\n\nLike the GNU General Public License, the OHL is designed to guarantee your freedom to share and to create. It forbids anyone who receives rights under the OHL to deny any other licensee those same rights to copy, modify, and distribute documentation, and to make, use and distribute products based on that documentation.\n\nUnlike the GPL, the OHL is not primarily a copyright license. While copyright protects documentation from unauthorized copying, modification, and distribution, it has little to do with your right to make, distribute, or use a product based on that documentation. For better or worse, patents play a significant role in those activities. Although it does not prohibit anyone from patenting inventions embodied in an Open Hardware design, and of course cannot prevent a third party from enforcing their patent rights, those who benefit from an OHL design may not bring lawsuits claiming that design infringes their patents or other intellectual property.\n\nThe OHL addresses unique issues involved in the creation of tangible, physical things, but does not cover software, firmware, or code loaded into programmable devices. A copyright-oriented license such as the GPL better suits these creations.\n\nHow can you use the OHL, or a design based upon it? While the terms and conditions below take precedence over this preamble, here is a summary:\n\n * You may modify the documentation and make products based upon it.\n\n * You may use products for any legal purpose without limitation.\n\n * You may distribute unmodified documentation, but you must include the complete package as you received it.\n\n * You may distribute products you make to third parties, if you either include the documentation on which the product is based, or make it available without charge for at least three years to anyone who requests it.\n\n * You may distribute modified documentation or products based on it, if you:\n\n * License your modifications under the OHL.\n\n * Include those modifications, following the requirements stated below.\n\n * Attempt to send the modified documentation by email to any of the developers who have provided their email address. This is a good faith obligation - if the email fails, you need do nothing more and may go on with your distribution.\n\n * If you create a design that you want to license under the OHL, you should:\n\n * Include this document in a file named LICENSE (with the appropriate extension) that is included in the documentation package.\n\n * If the file format allows, include a notice like \"Licensed under the TAPR Open Hardware License (www.tapr.org/OHL)\" in each documentation file. While not required, you should also include this notice on printed circuit board artwork and the product itself; if space is limited the notice can be shortened or abbreviated.\n\n * Include a copyright notice in each file and on printed circuit board artwork.\n\n * If you wish to be notified of modifications that others may make, include your email address in a file named \"CONTRIB.TXT\" or something similar.\n\n * Any time the OHL requires you to make documentation available to others, you must include all the materials you received from the upstream licensors. In addition, if you have modified the documentation:\n\n * You must identify the modifications in a text file (preferably named \"CHANGES.TXT\") that you include with the documentation. That file must also include a statement like \"These modifications are licensed under the TAPR Open Hardware License.\"\n\n * You must include any new files you created, including any manufacturing files (such as Gerber files) you create in the course of making products.\n\n * You must include both \"before\" and \"after\" versions of all files you modified.\n\n * You may include files in proprietary formats, but you must also include open format versions (such as Gerber, ASCII, Postscript, or PDF) if your tools can create them.\n\nTERMS AND CONDITIONS\n\n1. Introduction\n\n 1.1 This Agreement governs how you may use, copy, modify, and distribute Documentation, and how you may make, have made, and distribute Products based on that Documentation. As used in this Agreement, to \"distribute\" Documentation means to directly or indirectly make copies available to a third party, and to \"distribute\" Products means to directly or indirectly give, loan, sell or otherwise transfer them to a third party.\n\n 1.2 \"Documentation\" includes:\n\n (a) schematic diagrams;\n\n (b) circuit or circuit board layouts, including Gerber and other data files used for manufacture;\n\n (c) mechanical drawings, including CAD, CAM, and other data files used for manufacture;\n\n (d) flow charts and descriptive text; and\n\n (e) other explanatory material.\n\n Documentation may be in any tangible or intangible form of expression, including but not limited to computer files in open or proprietary formats and representations on paper, film, or other media.\n\n 1.3 \"Products\" include:\n\n (a) circuit boards, mechanical assemblies, and other physical parts and components;\n\n (b) assembled or partially assembled units (including components and subassemblies); and\n\n (c) parts and components combined into kits intended for assembly by others; which are based in whole or in part on the Documentation.\n\n 1.4 This Agreement applies to any Documentation which contains a notice stating it is subject to the TAPR Open Hardware License, and to all Products based in whole or in part on that Documentation. If Documentation is distributed in an archive (such as a \"zip\" file) which includes this document, all files in that archive are subject to this Agreement unless they are specifically excluded. Each person who contributes content to the Documentation is referred to in this Agreement as a \"Licensor.\"\n\n 1.5 By (a) using, copying, modifying, or distributing the Documentation, or (b) making or having Products made or distributing them, you accept this Agreement, agree to comply with its terms, and become a \"Licensee.\" Any activity inconsistent with this Agreement will automatically terminate your rights under it (including the immunities from suit granted in Section 2), but the rights of others who have received Documentation, or have obtained Products, directly or indirectly from you will not be affected so long as they fully comply with it themselves.\n\n 1.6 This Agreement does not apply to software, firmware, or code loaded into programmable devices which may be used in conjunction with Documentation or Products. Such software is subject to the license terms established by its copyright holder(s).\n\n2. Patents\n\n 2.1 Each Licensor grants you, every other Licensee, and every possessor or user of Products a perpetual, worldwide, and royalty-free immunity from suit under any patent, patent application, or other intellectual property right which he or she controls, to the extent necessary to make, have made, possess, use, and distribute Products. This immunity does not extend to infringement arising from modifications subsequently made by others.\n\n 2.2 If you make or have Products made, or distribute Documentation that you have modified, you grant every Licensor, every other Licensee, and every possessor or user of Products a perpetual, worldwide, and royalty-free immunity from suit under any patent, patent application, or other intellectual property right which you control, to the extent necessary to make, have made, possess, use, and distribute Products. This immunity does not extend to infringement arising from modifications subsequently made by others.\n\n 2.3 To avoid doubt, providing Documentation to a third party for the sole purpose of having that party make Products on your behalf is not considered \"distribution,\"\\\" and a third party's act of making Products solely on your behalf does not cause that party to grant the immunity described in the preceding paragraph.\n\n 2.4 These grants of immunity are a material part of this Agreement, and form a portion of the consideration given by each party to the other. If any court judgment or legal agreement prevents you from granting the immunity required by this Section, your rights under this Agreement will terminate and you may no longer use, copy, modify or distribute the Documentation, or make, have made, or distribute Products.\n\n3. Modifications\n\nYou may modify the Documentation, and those modifications will become part of the Documentation. They are subject to this Agreement, as are Products based in whole or in part on them. If you distribute the modified Documentation, or Products based in whole or in part upon it, you must email the modified Documentation in a form compliant with Section 4 to each Licensor who has provided an email address with the Documentation. Attempting to send the email completes your obligations under this Section and you need take no further action if any address fails.\n\n4. Distributing Documentation\n\n 4.1 You may distribute unmodified copies of the Documentation in its entirety in any medium, provided that you retain all copyright and other notices (including references to this Agreement) included by each Licensor, and include an unaltered copy of this Agreement.\n\n 4.2 You may distribute modified copies of the Documentation if you comply with all the requirements of the preceding paragraph and:\n\n (a) include a prominent notice in an ASCII or other open format file identifying those elements of the Documentation that you changed, and stating that the modifications are licensed under the terms of this Agreement;\n\n (b) include all new documentation files that you create, as well as both the original and modified versions of each file you change (files may be in your development tool's native file format, but if reasonably possible, you must also include open format, such as Gerber, ASCII, Postscript, or PDF, versions);\n\n (c) do not change the terms of this Agreement with respect to subsequent licensees; and\n\n (d) if you make or have Products made, include in the Documentation all elements reasonably required to permit others to make Products, including Gerber, CAD/CAM and other files used for manufacture.\n\n5. Making Products\n\n 5.1 You may use the Documentation to make or have Products made, provided that each Product retains any notices included by the Licensor (including, but not limited to, copyright notices on circuit boards).\n\n 5.2 You may distribute Products you make or have made, provided that you include with each unit a copy of the Documentation in a form consistent with Section 4. Alternatively, you may include either (i) an offer valid for at least three years to provide that Documentation, at no charge other than the reasonable cost of media and postage, to any person who requests it; or (ii) a URL where that Documentation may be downloaded, available for at least three years after you last distribute the Product.\n\n6. NEW LICENSE VERSIONS\n\nTAPR may publish updated versions of the OHL which retain the same general provisions as the present version, but differ in detail to address new problems or concerns, and carry a distinguishing version number. If the Documentation specifies a version number which applies to it and \"any later version\", you may choose either that version or any later version published by TAPR. If the Documentation does not specify a version number, you may choose any version ever published by TAPR. TAPR owns the copyright to the OHL, but grants permission to any person to copy, distribute, and use it in unmodified form.\n\n7. WARRANTY AND LIABILITY LIMITATIONS\n\n 7.1 THE DOCUMENTATION IS PROVIDED ON AN\"AS-IS\" BASIS WITHOUT WARRANTY OF ANY KIND, TO THE EXTENT PERMITTED BY APPLICABLE LAW. ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND TITLE, ARE HEREBY EXPRESSLY DISCLAIMED.\n\n 7.2 IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL ANY LICENSOR BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE, OR EXEMPLARY DAMAGES ARISING OUT OF THE USE OF, OR INABILITY TO USE, THE DOCUMENTATION OR PRODUCTS, INCLUDING BUT NOT LIMITED TO CLAIMS OF INTELLECTUAL PROPERTY INFRINGEMENT OR LOSS OF DATA, EVEN IF THAT PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n 7.3 You agree that the foregoing limitations are reasonable due to the non-financial nature of the transaction represented by this Agreement, and acknowledge that were it not for these limitations, the Licensor(s) would not be willing to make the Documentation available to you.\n\n 7.4 You agree to defend, indemnify, and hold each Licensor harmless from any claim brought by a third party alleging any defect in the design, manufacture, or operation of any Product which you make, have made, or distribute pursuant to this Agreement.\n\n####", + "json": "tapr-ohl-1.0.json", + "yaml": "tapr-ohl-1.0.yml", + "html": "tapr-ohl-1.0.html", + "license": "tapr-ohl-1.0.LICENSE" + }, + { + "license_key": "tatu-ylonen", + "category": "Permissive", + "spdx_license_key": "SSH-short", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "As far as I am concerned, the code I have written for this software\ncan be used freely for any purpose. Any derived versions of this\nsoftware must be clearly marked as such, and if the derived work is\nincompatible with the protocol description in the RFC file, it must be\ncalled by a name other than \"ssh\" or \"Secure Shell\".", + "json": "tatu-ylonen.json", + "yaml": "tatu-ylonen.yml", + "html": "tatu-ylonen.html", + "license": "tatu-ylonen.LICENSE" + }, + { + "license_key": "tcl", + "category": "Permissive", + "spdx_license_key": "TCL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software is copyrighted by the Regents of the University of\nCalifornia, Sun Microsystems, Inc., Scriptics Corporation, ActiveState\nCorporation and other parties. The following terms apply to all files\nassociated with the software unless explicitly disclaimed in\nindividual files.\n\nThe authors hereby grant permission to use, copy, modify, distribute,\nand license this software and its documentation for any purpose, provided\nthat existing copyright notices are retained in all copies and that this\nnotice is included verbatim in any distributions. No written agreement,\nlicense, or royalty fee is required for any of the authorized uses.\nModifications to this software may be copyrighted by their authors\nand need not follow the licensing terms described here, provided that\nthe new terms are clearly indicated on the first page of each file where\nthey apply.\n\nIN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY\nFOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\nARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY\nDERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\n\nTHE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.\nTHIS SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS, AND THE AUTHORS AND\nDISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT,\nUPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nGOVERNMENT USE: If you are acquiring this software on behalf of the\nU.S. government, the Government shall have only \"Restricted Rights\"\nin the software and related documentation as defined in the Federal\nAcquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you\nare acquiring the software on behalf of the Department of Defense, the\nsoftware shall be classified as \"Commercial Computer Software\" and the\nGovernment shall have only \"Restricted Rights\" as defined in Clause\n252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the\nauthors grant the U.S. Government and others acting in its behalf\npermission to use and distribute the software in accordance with the\nterms specified in this license.", + "json": "tcl.json", + "yaml": "tcl.yml", + "html": "tcl.html", + "license": "tcl.LICENSE" + }, + { + "license_key": "tcp-wrappers", + "category": "Permissive", + "spdx_license_key": "TCP-wrappers", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "-----BEGIN PGP SIGNED MESSAGE-----\n\nAs of June 1, 2001, the text below constitutes the TCP Wrappers license.\n\n/************************************************************************\n* Copyright 1995 by Wietse Venema. All rights reserved. Some individual\n* files may be covered by other copyrights.\n*\n* This material was originally written and compiled by Wietse Venema at\n* Eindhoven University of Technology, The Netherlands, in 1990, 1991,\n* 1992, 1993, 1994 and 1995.\n*\n* Redistribution and use in source and binary forms, with or without\n* modification, are permitted provided that this entire copyright notice\n* is duplicated in all such copies.\n*\n* This software is provided \"as is\" and without any expressed or implied\n* warranties, including, without limitation, the implied warranties of\n* merchantibility and fitness for any particular purpose.\n************************************************************************/\n\n-----BEGIN PGP SIGNATURE-----\nVersion: 2.6.3i\nCharset: noconv\n\niQCVAwUBOxo3X9yA8qbVMny5AQHT8wP9FZOtWxEM4SMj4Sj9QezMERz31n5fd0pC\njUDnyzmosOudM/iFlv6YfyR820aNvNNI+AdtgWYRPVHocVNOrZcmu7IADO8hlU//\nv8BeBE0bdjeVmOQYRQfXgt3J2q0b8x8Q5a/LCLVLh8k6DFGg8AfEbLDQWhi1JiXC\n0JsaB8crR3M=\n=0AMW\n-----END PGP SIGNATURE-----", + "json": "tcp-wrappers.json", + "yaml": "tcp-wrappers.yml", + "html": "tcp-wrappers.html", + "license": "tcp-wrappers.LICENSE" + }, + { + "license_key": "teamdev-services", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-teamdev-services", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "https://www.teamdev.com/services\n\nTeamDev\nConnect with Us\n\nemail: sales@teamdev.com \nphone: +380 57 766\u20134300 \nGoogle+: http://google.com/+TeamDev \nLinkedIn: http://www.linkedin.com/company/teamdev-ltd \nFacebook: https://www.facebook.com/TeamDev \nTwitter: http://twitter.com/TeamDev\n\nEmail us at sales@teamdev.com to request the estimate for your app.", + "json": "teamdev-services.json", + "yaml": "teamdev-services.yml", + "html": "teamdev-services.html", + "license": "teamdev-services.LICENSE" + }, + { + "license_key": "tekhvc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tekhvc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted to use, copy,\nmodify, sell, and otherwise distribute this software and its\ndocumentation for any purpose and without fee, provided that:\n\n1. This copyright, permission, and disclaimer notice is reproduced in\n all copies of this software and any modification thereof and in\n supporting documentation;\n2. Any color-handling application which displays TekHVC color\n cooordinates identifies these as TekHVC color coordinates in any\n interface that displays these coordinates and in any associated\n documentation;\n3. The term \"TekHVC\" is always used, and is only used, in association\n with the mathematical derivations of the TekHVC Color Space,\n including those provided in this file and any equivalent pathways and\n mathematical derivations, regardless of digital (e.g., floating point\n or integer) representation.\n\nTektronix makes no representation about the suitability of this software\nfor any purpose. It is provided \"as is\" and with all faults.\n\nTEKTRONIX DISCLAIMS ALL WARRANTIES APPLICABLE TO THIS SOFTWARE,\nINCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE. IN NO EVENT SHALL TEKTRONIX BE LIABLE FOR ANY\nSPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\nRESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER IN AN ACTION OF\nCONTRACT, NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN\nCONNECTION WITH THE USE OR THE PERFORMANCE OF THIS SOFTWARE.", + "json": "tekhvc.json", + "yaml": "tekhvc.yml", + "html": "tekhvc.html", + "license": "tekhvc.LICENSE" + }, + { + "license_key": "telerik-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-telerik-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Telerik End User License Agreement for Kendo UI Professional\n\n(Last Updated July 16th, 2014)\n\nIf You have accessed the Software, as defined below, through the Telerik Platform, this document does not apply to You. Please see http://www.telerik.com/purchase/license-agreement/platform for the terms and conditions that apply to Your use of the Software.\nKendo UI Professional is a suite of software components which replaces the Telerik software product previously known as Kendo UI Complete. It is offered pursuant to the terms and conditions contained below.\n\nIMPORTANT \u2013 PLEASE READ THIS END USER LICENSE AGREEMENT (THE \"AGREEMENT\") CAREFULLY BEFORE ATTEMPTING TO DOWNLOAD OR USE ANY SOFTWARE, DOCUMENTATION, OR OTHER MATERIALS MADE AVAILABLE THROUGH THIS WEB SITE. THIS AGREEMENT CONSTITUTES A LEGALLY BINDING AGREEMENT BETWEEN YOU OR THE COMPANY WHICH YOU REPRESENT AND ARE AUTHORIZED TO BIND (the \"Licensee\" or \"You\"), AND TELERIK AD (\"Telerik\" or \"Licensor\"). PLEASE CHECK THE \"I HAVE READ AND AGREE TO THE LICENSE AGREEMENT\" BOX AT THE BOTTOM OF THIS AGREEMENT IF YOU AGREE TO BE BOUND BY THE TERMS AND CONDITIONS OF THIS AGREEMENT. BY CHECKING THE \"I HAVE READ AND AGREE TO THE LICENSE AGREEMENT\" BOX AND/OR BY PURCHASING, DOWNLOADING, INSTALLING OR OTHERWISE USING THE SOFTWARE MADE AVAILABLE BY TELERIK THROUGH THIS WEB SITE, YOU ACKNOWLEDGE (1) THAT YOU HAVE READ THIS AGREEMENT, (2) THAT YOU UNDERSTAND IT, (3) THAT YOU AGREE TO BE BOUND BY ITS TERMS AND CONDITIONS, AND (4) TO THE EXTENT YOU ARE ENTERING INTO THIS AGREEMENT ON BEHALF OF A COMPANY, YOU HAVE THE POWER AND AUTHORITY TO BIND THAT COMPANY.\n\nContent Management System and/or .NET component vendors are not allowed to use the Software (as defined below) without the express permission of Telerik. If You or the company You represent is a Content Management System or .NET component vendor, You may not purchase a license for or use the Software unless You contact Telerik directly and obtain permission.\n\nThis is a license agreement and not an agreement for sale.\n\n1. Software License. \n\nSubject to the terms of this Agreement, Telerik hereby grants to You the following limited, non\u2013exclusive, non\u2013transferable license (the \"License\") to use the Telerik computer software identified as Kendo UI Professional and any updates, upgrades, modifications and error corrections thereto provided to You by Telerik (the \"Programs\") and any accompanying documentation (the \"Documentation\" and, together with the Programs, the \"Software\") as set forth below. You are granted either a Trial License pursuant to Section 1.1 or a Commercial License with Updates and Support pursuant to Section 1.2. Which version of the License applies (i.e., Trial License or Commercial License with Updates and Support) is determined at the time of the License purchase. \n\nFor purposes of this Agreement:\n\n\"Your Integrated Products\" are limited to those software applications which: (i) are developed by Your Licensed Developers; (ii) add substantial functionality beyond the functionality provided by the incorporated components of the Software; and (iii) are not commercial alternatives for, or competitive in the marketplace with, the Software or any components of the Software.\n\n\"Licensed Developers\" (i) are limited to the number of Your employees or contractors authorized by You to use the Software to develop software specifically for You and (ii) must correspond to the maximum number of seats You have purchased from Telerik hereunder. This means that, at any given time, the number of Licensed Developers cannot exceed the number of seats that You have purchased from Telerik and for which You have paid Telerik all applicable License Fees pursuant to this Agreement. The Software is in \"use\" on a computer when it is loaded into temporary memory (i.e. RAM) or installed into permanent memory (e.g. hard disk or other storage device). Your Licensed Developers may install the Software on multiple machines, so long as the Software is not being used simultaneously for development purposes at any given time by more Licensed Developers than You have seats.\n\n1.1 Trial License\n\n1.1.1 License Grant. If You download the free Trial License, then, subject to the terms and conditions set forth in this Agreement, Licensor hereby grants to Licensee and Licensee hereby accepts a license to use the Software for the sole purpose of evaluating its functionality and performance. You are not allowed to integrate the Software into end products or use it for any commercial, productive or training purpose. You may not redistribute the Software. The term of the Trial License shall be 30 days. If You wish to continue using the Software beyond expiration of the Trial License, You must purchase the applicable commercial license.\n\n1.1.2 Support. You are entitled to enter five (5) support requests via Telerik\u2019s ticketing system with a 72 hour response time (excluding Saturdays, Sundays and holidays) for thirty (30) days after download of Your initial Trial License. For avoidance of doubt, You are not entitled to additional support requests for any Trial Licenses downloaded after Your initial download (e.g. to evaluate a different Kendo UI product or a new release), for a period of one (1) year from the date of Your initial download.\n\n1.1.3 Updates. At Telerik\u2019s sole discretion, You may receive minor updates (i.e. service pack updates) for the Software version You are evaluating. You are not eligible to receive major updates (i.e. major revisions to or new versions of the Software) for the Software You are evaluating. Software updates replace and/or supplement (and may disable) the version of the Software that formed the basis for Your eligibility for the update. You may use the resulting updated Software only in accordance with the terms of this Trial License.\n\n1.1.4 THE TRIAL VERSION OF THE SOFTWARE IS LICENSED \u2018AS IS\u2019. YOU BEAR THE RISK OF USING IT. TELERIK GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, TELERIK EXCLUDES THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n1.2 Commercial License with Updates and Support. If You purchase a Commercial License with Updates and Support, Your Licensed Developers may use the Software in minified and source code form in accordance with Section 1.3 in the development of Your Integrated Products. In addition, for the applicable period of one (1), two (2) or three (3) years from the date on which You purchased the Software, for which You have purchased updates and support (the \"Subscription Period\"), You will receive minor and major updates for the Software, access to certain source code for the Software, as well as the \"Commercial\" support package, each as described in further detail below.\n\n1.2.2 Support. During the Subscription Period, You are entitled to the \"Commercial\" support package as described in greater detail here: http://www.telerik.com/purchase/support-plans/kendo-ui, subject to the limitations and restrictions described in the following Fair Usage Policy. The support services for tickets submitted relating to AngularJS implementations are limited to (i) assistance with plain implementations which include AngularJS and Kendo UI widgets, (ii) assistance with implementations which utilize the Kendo Angular labs project (https://github.com/kendo-labs/angular-kendo) and its directives (project support) or (iii) implementations which require extension of the existing Kendo Angular labs project with new logic.\n\n1.2.2.1 Support Package Fair Usage Policy. Telerik may limit or terminate Your access to any or all of the support services available under the \"Commercial\" support package if Your use of the support services is determined by Telerik, in its sole and reasonable discretion, to be excessive.\n\n1.2.2.2 In no event will Telerik provide support of any kind to end-users of Your Integrated Products.\n\n1.2.3 Updates. During the Subscription Period, You will be eligible to receive all major and minor updates for the version of the Software that You license hereunder and source code for the Software. Updates replace and/or supplement (and may disable) the version of the Software that formed the basis for Your eligibility for the update. You may use the resulting updated Software only in accordance with the terms of this License.\n\n1.3 Source Code. The Software\u2019s source code is provided to You so that You can create modifications under the terms of this Agreement.\n\n1.3.1 While Telerik does not claim any ownership rights in Your Integrated Products, any modifications You develop to the Software source code will be the exclusive property of Telerik, and You agree to and hereby do assign all right, title and interest in and to such modifications and all rights associated therewith to Telerik.\n\n1.3.2 You will be entitled to use modifications of the Software\u2019s source code developed by You under the terms of this Agreement and Telerik hereby grants You a license to use such modifications pursuant to Section 1.2.\n\n1.3.3 You acknowledge that the Software\u2019s source code is confidential and contains valuable and proprietary trade secrets of Telerik. Under no circumstances may any portion of the Software\u2019s source code or any modified version of the source code be distributed, disclosed or otherwise made available to any third party.\n\n1.3.4 Telerik DOES NOT provide technical support for any source code that has been modified by any party other than Telerik.\n\n1.3.5 The Software\u2019s source code is provided \"as is\", without warranty of any kind. Refunds are not available for any licenses that include a right to receive source code.\n\n1.4 Testing and Building License. You may also use the Software in the testing and building of Your Integrated Products. This license is not limited to a number of seats.\n\n2. License Options for Redistribution\n\n2.1 Redistribution under Commercial License. If You have purchased a Commercial License, You may distribute the Programs in minified form as embedded in Your Integrated Products to Your end-users only pursuant to an end-user license that meets the requirements of this Section. You are not permitted to distribute the Software pursuant to this Section: as a standalone product or as a part of any product other than Your Integrated Product. Your end-user license agreement must: prohibit distribution of the Software by Your Authorized End Users; limit the liability of Your licensors or suppliers to the maximum extent permitted by applicable law; and prohibit any attempt to disassemble, decompile or \"unlock\", decode or otherwise reverse translate or engineer, or attempt in any manner to reconstruct or discover any source code or underlying algorithms of the Software. Provided Your Authorized End-Users are in compliance with their license agreements with You, any sublicenses to use the Software granted by You to Your Authorized End-Users will survive any termination of this Agreement or the License set forth herein between You and Telerik. You are not allowed to, and are expressly prohibited from granting Your Authorized End-Users any right to further sublicense the Software.\n\n2.2 Redistribution of Kendo UI Core under Open Source License. Kendo UI Core, a suite of components licensed under the Apache 2.0 license, is shipped with Kendo UI Professional and publicly available on Github at https://github.com/telerik/kendo-ui-core. You may use and distribute the Kendo UI Core software solely pursuant to the terms of the Apache 2.0 software. In no event may You distribute any source code other than Kendo UI Core.\n\n3. No Trademark License\n\nYou may not use the Telerik product names, logos or trademarks to market Your Integrated Product.\n\n4. Delivery\n\nTelerik shall make a master copy of the Software available for download by Licensee in electronic files only.\n\n5. Updates\n\nThe parties agree and acknowledge that updates provided to You as part of this Agreement may include new software products governed by additional terms and conditions. These additional terms and conditions must be accepted by You at the time You download such new products. If You do not agree to these additional terms and conditions, You should not download the new products. In case of a conflict between the terms and conditions of this Agreement and the terms and conditions applicable to any new product made available to You as part of any updates, the terms and conditions of this Agreement shall govern.\n\n6. Term and Termination\n\nThis Agreement and the License granted hereunder shall continue until terminated in accordance with this Section. Unless otherwise specified in this Agreement, the License granted hereunder shall last as long as You use the Software in compliance with the terms herein. Unless otherwise prohibited by law, and without prejudice to Telerik\u2019s other rights or remedies, Telerik shall have the right to terminate this Agreement and the License granted hereunder immediately if You breach any of the material terms of this Agreement, and You fail to cure such material breach within thirty (30) days of receipt of notice from Telerik. Upon termination of this Agreement, all Licenses granted to You hereunder shall terminate automatically and You shall immediately cease use and distribution of the Software; provided, however, that any sublicenses granted to Your Authorized End-Users in accordance with Section 2 shall survive such termination. You must also destroy (i) all copies of the Software not integrated into a live, functioning instance(s) of Your Integrated Product(s) already installed, implemented and deployed for Your Authorized End-User(s), and (ii) any product and company logos provided by Telerik in connection with this Agreement.\n\n7. Product Discontinuance\n\nTelerik reserves the right to discontinue the Software or any component of the Software, whether offered as a standalone product or solely as a component, at any time. However, Telerik is obligated to provide support in accordance with the terms set forth in this Agreement for all discontinued Software or components for a period of one (1) year after the date of discontinuance.\n\n8. Intellectual Property\n\nAll title and ownership rights in and to the Software (including but not limited to any images, photographs, animations, video, audio, music, or text embedded in the Software), the intellectual property embodied in the Software, and any trademarks or service marks of Telerik that are used in connection with the Software are and shall at all times remain exclusively owned by Telerik and its licensors. All title and intellectual property rights in and to the content that may be accessed through use of the Software is the property of the respective content owner and may be protected by applicable copyright or other intellectual property laws and treaties. This Agreement grants You no rights to use such content. Any open source software that may be delivered by Telerik embedded in or in association with Telerik products is provided pursuant to the open source license applicable to the software and subject to the disclaimers and limitations on liability set forth in such license. As required by the Common Public License (\"CPL\"), if a user wishes to obtain the source code for the components licensed under the CPL a user may access them at http://wixtoolset.org.\n\n9. Limited Warranty\n\nExcept as specified in Section 1.1.4 (Trial License), Telerik warrants solely to You that the Software will perform substantially in accordance with the accompanying written materials for a period of ninety (90) days after the date on which You purchase the License for the Software. Telerik does not warrant the use of the Software will be uninterrupted or error free at all times and in all circumstances, nor that program errors will be corrected. This limited warranty shall not apply to any error or failure resulting from (i) machine error, (ii) Your failure to follow operating instructions, (iii) negligence or accident, or (iv) modifications to the Software by any person or entity other than Telerik. In the event of a breach of warranty, Your sole and exclusive remedy and Telerik\u2019s sole and exclusive obligation, is repair of all or any portion of the Software. If such remedy fails of its essential purpose, Licensee\u2019s sole remedy and Telerik\u2019s maximum liability shall be a refund of the paid purchase price for the defective Software only. This limited warranty is only valid if Telerik receives written notice of breach of warranty no later than thirty (30) days after the warranty period expires. EXCEPT FOR THE EXPRESS WARRANTIES SET FORTH IN THIS SECTION 9, TELERIK DISCLAIMS ALL OTHER WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\n10. Limitation of Liability\n\nTo the maximum extent permitted by applicable law, in no event will Telerik be liable for any indirect, special, incidental, or consequential damages arising out of the use of or inability to use the Software, including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if advised of the possibility thereof, and regardless of the legal or equitable theory (contract, tort or otherwise) upon which the claim is based. In any case, Telerik\u2019s entire liability under any provision of this Agreement shall not exceed in the aggregate the sum of the license fees Licensee paid to Telerik for the Software giving rise to such damages, or in the case of a Trial license shall not exceed $5, notwithstanding any failure of essential purpose of any limited remedy. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not be applicable. Telerik is not responsible for any liability arising out of content provided by Licensee or a third party that is accessed through the Software and/or any material linked through such content. Any data included in the Software upon shipment from Telerik is for testing use only and Telerik hereby disclaims any and all liability arising therefrom.\n\n11. Indemnity\n\nYou agree to indemnify, hold harmless, and defend Telerik and its resellers from and against any and all claims, lawsuits and proceedings (collectively \"Claims\"), and all expenses, costs (including attorney's fees), judgments, damages and other liabilities resulting from such Claims, that arise or result from (i) Your use of the Software in violation of this Agreement, (ii) the use or distribution of Your Integrated Product or (iii) Your modification of the Software\u2019s source code.\n\n12. Confidentiality\n\nExcept as otherwise provided herein, each party expressly undertakes to retain in confidence all information and know-how transmitted or disclosed to the other that the disclosing party has identified as being proprietary and/or confidential or that, by the nature of the circumstances surrounding the disclosure, ought in good faith to be treated as proprietary and/or confidential, and expressly undertakes to make no use of such information and know-how except under the terms and during the existence of this Agreement. However, neither party shall have an obligation to maintain the confidentiality of information that (i) it received rightfully from a third party without an obligation to maintain such information in confidence; (ii) the disclosing party has disclosed to a third party without any obligation to maintain such information in confidence; (iii) was known to the receiving party prior to its disclosure by the disclosing party; or (iv) is independently developed by the receiving party without use of the confidential information of the disclosing party. Further, either party may disclose confidential information of the other party as required by governmental or judicial order, provided such party gives the other party prompt written notice prior to such disclosure and complies with any protective order (or equivalent) imposed on such disclosure. Without limiting the foregoing, Licensee shall treat any source code for the Programs as confidential information and shall not disclose, disseminate or distribute such materials to any third party without Telerik\u2019s prior written permission. Each party\u2019s obligations under this Section 12 shall apply at all times during the term of this Agreement and for five (5) years following termination of this Agreement, provided, however, that (i) obligations with respect to source code shall survive in perpetuity and (ii) trade secrets shall be maintained as such until they fall into the public domain.\n\n13. Governing Law\n\nThis Agreement will be governed by the law of the Commonwealth of Massachusetts, U.S.A., without regard to the conflict of laws principles thereof. If any dispute, controversy, or claim cannot be resolved by a good faith discussion between the parties, then it shall be submitted for resolution to a state or Federal court of competent jurisdiction in Boston, Massachusetts, USA, and the parties hereby agree to submit to the jurisdiction and venue of such court. Neither the Uniform Computer Information Transactions Act nor the United Nations Convention for the International Sale of Goods shall apply to this Agreement. Failure of a party to enforce any provision of this Agreement shall not constitute or be construed as a waiver of such provision or of the right to enforce such provision.\n\n14. Entire Agreement\n\nThis Agreement sets forth our entire agreement with respect to the Software and supersedes any prior or contemporaneous communications regarding the Software. You agree that You are not relying on any representation or obligation other than those set forth in this Agreement. Use of any purchase order or other Licensee document in connection herewith shall be for administrative convenience only and all terms and conditions stated therein shall be void and of no effect unless otherwise agreed to in writing by both parties. In cases where this license is being obtained through an approved third party, these terms shall supersede any third party license or purchase agreement.\n\n15. No Assignment\n\nYou may not assign, sublicense, sub-contract, or otherwise transfer this Agreement, or any rights or obligations under it, without Telerik\u2019s prior written consent.\n\n16. Survival\n\nAny provisions of the Agreement containing license restrictions, including, but not limited to those related to the Program source code, warranties and warranty disclaimers, confidentiality obligations, limitations of liability and/or indemnity terms, and any provision of the Agreement which, by its nature, is intended to survive shall remain in effect following any termination or expiration of the Agreement.\n\n17. Severability\n\nIf a particular provision of this Agreement is terminated or held by a court of competent jurisdiction to be invalid, illegal, or unenforceable, this Agreement shall remain in full force and effect as to the remaining provisions.\n\n18. Force Majeure\n\nNeither party shall be deemed in default of this Agreement if failure or delay in performance is caused by an act of God, fire, flood, severe weather conditions, material shortage or unavailability of transportation, government ordinance, laws, regulations or restrictions, war or civil disorder, or any other cause beyond the reasonable control of such party.\n\n19. Export Classifications\n\nYou expressly agree not to export or re-export Telerik Software or Your Integrated Product to any country, person, entity or end user subject to U.S. export restrictions. You specifically agree not to export, re-export, or transfer the Software to any country to which the U.S. has embargoed or restricted the export of goods or services, or to any national of any such country, wherever located, who intends to transmit or transport the products back to such country, or to any person or entity who has been prohibited from participating in U.S. export transactions by any federal agency of the U.S. government. You warrant and represent that neither the U.S.A. Bureau of Export Administration nor any other federal agency has suspended, revoked or denied Your export privileges.\n\n20. Commercial Software\n\nThe Programs and the Documentation are \"Commercial Items\", as that term is defined at 48 C.F.R. \u00a72.101, consisting of \"Commercial Computer Software\" and \"Commercial Computer Software Documentation\", as such terms are used in 48 C.F.R. \u00a712.212 or 48 C.F.R. \u00a7227.7202, as applicable. Consistent with 48 C.F.R. \u00a712.212 or 48 C.F.R. \u00a7227.7202-1 through 227.7202-4, as applicable, the Commercial Computer Software and Commercial Computer Software Documentation are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Unpublished-rights reserved under the copyright laws of the United States. \n\n21. Reports and Audit Rights. \n\nLicensee shall grant Telerik audit rights against Licensee twice within a calendar three hundred and sixty five (365) day period upon two weeks written notice, to verify Licensee\u2019s compliance with this Agreement. Licensee shall keep adequate records to verify Licensee\u2019s compliance with this Agreement.\n\nYOU ACKNOWLEDGE THAT YOU HAVE READ THIS AGREEMENT, THAT YOU UNDERSTAND THIS AGREEMENT, AND UNDERSTAND THAT BY CONTINUING THE INSTALLATION OF THE SOFTWARE PRODUCT, BY LOADING OR RUNNING THE SOFTWARE PRODUCT, OR BY PLACING OR COPYING THE SOFTWARE ONTO YOUR COMPUTER HARD DRIVE, YOU AGREE TO BE BOUND BY THIS AGREEMENT\u2019S TERMS AND CONDITIONS. YOU FURTHER AGREE THAT, EXCEPT FOR WRITTEN SEPARATE AGREEMENTS BETWEEN TELERIK AND YOU, THIS AGREEMENT IS A COMPLETE AND EXCLUSIVE STATEMENT OF THE RIGHTS AND LIABILITIES OF THE PARTIES.", + "json": "telerik-eula.json", + "yaml": "telerik-eula.yml", + "html": "telerik-eula.html", + "license": "telerik-eula.LICENSE" + }, + { + "license_key": "tenable-nessus", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-tenable-nessus", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "TENABLE NETWORK SECURITY, INC. \nNESSUS SOFTWARE LICENSE AND SUBSCRIPTION AGREEMENT\n\nThis is a legal agreement (\"Agreement\") between Tenable Network Security, Inc., a Delaware corporation having offices at 7021 Columbia Gateway Drive, Suite 500, Columbia, MD 21046 (\"Tenable\"), and you (\"You\"), the party licensing Software and/or downloading the Plugins through Tenable\u2019s subscription service (as each capitalized term is defined below). This Agreement covers Your permitted use of the Software and/or the Plugins, as applicable (collectively, the \"Licensed Materials\"). BY CLICKING BELOW YOU INDICATE YOUR ACCEPTANCE OF THIS AGREEMENT AND YOU ACKNOWLEDGE THAT YOU HAVE READ ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT, UNDERSTAND THEM, AND AGREE TO BE LEGALLY BOUND BY THEM. IN ADDITION, IF YOU HAVE PREVIOUSLY LICENSED THE SOFTWARE AND/OR THE PLUGINS, BY CLICKING BELOW YOU INDICATE YOUR ACCEPTANCE THAT THESE TERMS AND CONDITIONS SUPERSEDE ANY EARLIER AGREEMENTS AND THAT ALL COPIES OF THE LICENSED MATERIALS IN YOUR POSSESSION WILL BE DEEMED TO BE LICENSED UNDER AND SUBJECT TO THE TERMS AND CONDITIONS OF THIS AGREEMENT. If You do not agree with the terms of this Agreement, You may not use the Licensed Materials. The Licensed Materials can only be provided to You by Tenable. The term \"Agreement\" includes any exhibits to the document.\n\n1. Grant of Licenses. \n(a) Software License Grant. \"Software\" means \n(i) Nessus 5.x or higher that You download from any authorized Tenable website, including www.nessus.org, or obtain via Tenable authorized CD or any other Tenable authorized method; \n(ii) the associated user manuals and user documentation, if any, as well as any patches, updates, improvements, additions, enhancements and other modifications or revised versions of Nessus 5.x or higher that may be provided to You by Tenable from time to time that were developed by Tenable; and \n(iii) any Nessus daemons, command line interfaces, web server, application programming interfaces (\"APIs\"), and/or any graphical user interfaces You obtain from Tenable that were developed by Tenable. Any software that is not marked as copyrighted by Tenable is not Software as defined under this Agreement and is subject to other license terms as described in the documentation. For the avoidance of doubt, any components or software licensed as part of an open source license, if any, are not considered \"Software.\" \n\nIf You have obtained a copy of the Software, subject to the terms and conditions, and Your acceptance, of this Agreement, Tenable grants to You a perpetual, non-exclusive, nontransferable license in object code form only to use the Software \n(i) solely for Your internal operations and internal security purposes to seek and assess information technology vulnerabilities and misconfigurations for Your own networks or that you are otherwise authorized to scan; and \n(ii) provided that You have received all required consents, to provide services to third parties to seek and assess information technology vulnerabilities and misconfigurations on the third party\u2019s network. \n\nAny rights in the Software not granted in this Agreement are expressly reserved by Tenable. You are entitled to one copy of the Software. If you license additional copies of the Software, they must be paid for separately and will be subject to their own terms and conditions.\n\n(b) Plugins License Grant. \"Plugins\" means any plugins (and related updates) that are marked as copyrighted by Tenable. Any plugins or components that are not marked as copyrighted by Tenable are not Plugins as defined under this Agreement and are subject to other license terms. Subject to the terms and conditions of this Agreement, Tenable grants to You for the Term (as defined below) a non-exclusive, non-transferable license in object code form only to use the Plugins as permitted in conjunction with the Software licensed in Section 1(c). The Plugins include vulnerability detection programs not developed by Tenable or its licensors and which are licensed to You under separate agreements. The terms and conditions of this Agreement do not apply to such vulnerability detection programs.\n\n(c) Products. Tenable licenses several variations of the Software, described in more detail below. Tenable reserves the right to withdraw features from the Software or move features between variations of the Software provided that either: \n(1) the core functionality of the Software remains the same; or \n(2) You are offered a license to the product to which the functionality was moved.\n\n(i) Nessus Home. Nessus Home is non-commercial Software that permits You to use the Plugins in conjunction with the Software for Your personal use solely to detect vulnerabilities only on Your own personal system (or for Your own personal network) that You use for non-commercial purposes or on the personal system (or for the personal network) of another natural person in a non-commercial arrangement. You are not eligible to use Nessus Home if You are a corporation, a governmental entity or any other form of organization. You may not use Nessus Home to use the Plugins on a computer owned by Your employer or otherwise use the Plugins for the benefit of or to perform any services for any corporation, governmental entity or any other form of organization. When using Nessus Home, Tenable may collect scan data from You (including results, configuration, and gathered artifacts) in order to provide feedback to Tenable and improve the Software. You may not use Tenable Network Security Confidential and Proprietary 2 Nessus Software License and Subscription Agreement v13 03.03.15 Nessus Home with Nessus Manager or with any Software that is managed by a Nessus Manager installation. Tenable does not provide any support services in connection with Nessus Home.\n\n(ii) Nessus Professional. Nessus Professional is commercial Software that permits You to use the Plugins in conjunction with the Software to detect vulnerabilities only on Your system or network, a system or network that you are otherwise authorized to scan, or on the system or network of a third party for which You perform scanning services, auditing services, incident response services, quality assurance and other lab testing, vulnerability assessment services or other security consulting services; provided that You have paid the applicable Fee for each copy of the Software in conjunction with which You will use the Plugins. If You use a supported commercial version of Nessus Professional, Tenable will supply You during the term with reasonable online and email support 24 hours a day, 7 days a week, for the Software.\n\n(iii) Nessus Manager. Nessus Manager is commercial Software that permits You to use the Plugins in conjunction with the Software to detect vulnerabilities only on Your system or network, a system or network that you are otherwise authorized to scan, or on the system or network of a third party for which You perform scanning services, auditing services, incident response services, quality assurance and other lab testing, vulnerability assessment services or other security consulting services. You may only use Nessus Manager for the number of Hosts for which you have paid all applicable Fees. A \"Host\" is any scanned device that can have a unique tag pushed to it (via a registry entry, text file, etc.), one that can have a unique identifier (CPU ID, Instance ID, Agent ID, IP Address, MAC Address, NetBIOS Name, etc.) pulled from it, or is addressable via URI or URL (i.e., http://www.tenable.com). Your license to use Nessus Manager also will provide You with access to a limited number (equivalent to the Host count) of Nessus agents that You may install on endpoints. Nessus Manager allows multiple users to access the Software. You agree that You are responsible for the use by any of the users permitted to access the Software. Nessus Manager allows You to manage multiple scanners from one installation, at a rate of one scanner for each 256 Hosts licensed up to 10,240 Hosts, and one scanner for each 512 Hosts after that. You may only manage scanners that You have received all appropriate authorizations to use. If You use a supported commercial version of Nessus Manager, Tenable will supply You during the term with reasonable phone, online and email support 24 hours a day, 7 days a week, for the Software.\n\n2. Other Use. (a) Training Organizations. Notwithstanding the prohibition on commercial use in Section 1(c)(i), if You are a training organization authorized by Tenable, You may use the Licensed Materials, and provide access to the Licensed Materials to students, in and for the classroom setting only. Upon completion of the class, the student\u2019s right to use the Licensed Materials is terminated and any students wishing to use the Licensed Materials must register for, and pay any applicable fees associated with, their own subscription. You may not use the Licensed Materials granted to You for training purposes to secure Your or any third party\u2019s networks or in any other way except for classroom training in a non-production environment. Tenable may terminate access to any free Licensed Materials under this Section 2(a) at it sole discretion at any time. (b) Evaluations. Upon Your request and subsequent approval by Tenable, You may receive access to evaluate the Licensed Materials. Such evaluation may take the form of limited access to Nessus Professional or Nessus Manager. Such evaluation may also take the form of an on-demand evaluation where You may use Nessus Home commercially for a limited period of time as specified by Tenable. Unless otherwise agreed to by Tenable, an evaluation will only be provided once. You must purchase a subscription to the Licensed Materials to continue to use them commercially after the evaluation period ends. You may not use an evaluation subscription in a production capacity, to scan third party networks, or to provide a service to Your customers. (c) Custom Nessus Plugin Development and Distribution. Tenable allows users to write and develop new Nessus plugins; however, You must have an active Nessus subscription in order to add plugins to Your Nessus scanner. You may use the Tenable \".inc\" files provided with the Licensed Materials, as well as the built-in NASL functions to write custom plugins for Your internal use and internal redistribution, provided, however, that they may not be privately or publicly distributed, whether for free or for a fee. Plugin writers should also be aware that many of the APIs available in the NASL language and various \".inc\" libraries may be used to write custom plugins, but such plugins may only be distributed within Your organization and may not be distributed publicly, whether for free or for a fee. For example, custom plugins that specifically make use of authenticated logins to remote systems via Secure Shell or Windows Domain, that use the libraries included in the Licensed Materials or that have previously been distributed by Tenable, may not be publicly distributed. To ensure that Your custom plugins do not make use of a library that prohibits public distribution, You should audit them to determine which libraries are being invoked and then read each corresponding license. Tenable Network Security Confidential and Proprietary 3 Nessus Software License and Subscription Agreement v13 03.03.15\n\n3. Term. This Agreement commences on the date on which You execute this Agreement or download, install or use the Software (whichever occurs first) (the \"Effective Date\") and continues until it is terminated according to the terms of this Agreement (the \"Term\"). The initial subscription commences on the Effective Date and continues as follows: (i) if You subscribe to Nessus Home, until it is terminated according to the terms of this Agreement; or (ii) if You subscribe to Nessus Professional or Nessus Manager, a period of one (1) year until midnight before the anniversary of the Effective Date, unless terminated earlier according to the terms of this Agreement. If You subscribe to Nessus Professional or Nessus Manager, You may extend the subscription for additional one (1) year periods so long as You continue to pay the applicable Fees in accordance with this Agreement and Tenable is making the Licensed Materials commercially available.\n\n4. Intellectual Property. This Agreement does not transfer to You any title to or any ownership right or interest in the Licensed Materials. You acknowledge that Tenable owns and retains all right, title and interest in and to the Licensed Materials. All enhancements, modifications and derivative works that Tenable or any Tenable-authorized third party makes to the Licensed Materials or accompanying documentation, and all intellectual property rights therein, will be the property of Tenable. Your rights with respect to the Licensed Materials are limited to the right to use the Licensed Materials pursuant to the terms and conditions in this Agreement. Any rights in or to the Licensed Materials (including rights of use) not expressly granted in this Agreement are reserved by Tenable.\n\n5. No Reverse Engineering, Other Restrictions. You may not directly or indirectly: (i) sell, lease, redistribute or transfer any of the Licensed Materials on a stand-alone basis; (ii) decompile, disassemble, reverse engineer, or otherwise attempt to derive, obtain or modify the source code of the Licensed Materials; (iii) reproduce, modify, translate or create derivative works of all or any part of the Licensed Materials; (iv) rent, lease or loan the Licensed Materials in any form to any third party; (v) remove, alter or obscure any proprietary notice, labels, or marks on the Licensed Materials; or (vi) sell, resell, loan or otherwise provide access to third parties to the APIs, Nessus client interface, or Nessus communication interface shipped by Tenable and provided to You. You may not sublicense any of the rights granted to You in this Agreement. You may not distribute or otherwise provide the Licensed Materials to third parties unless authorized to do so in writing by Tenable. You are responsible for all use of the Licensed Materials and for compliance with this Agreement; any breach by You or any user using the Licensed Materials on Your behalf shall be deemed to have been made by You. You may not copy the documentation as You agree it is provided to You under copyright protection. You may not use the Licensed Materials if You are, or You work for, a competitor of Tenable\u2019s in the network security software industry. For the avoidance of doubt, You may not include or redistribute the Licensed Materials on physical or virtual appliances to perform on-site scans.\n\n6. Restrictions on Third Party Use and Access. You may permit a third party (a \"Third Party\") to (a) use the Licensed Materials to perform security services for Your business or (b) administer the Licensed Materials, each provided that: (i) any such Third Party use or administration is for Your sole benefit and on Your behalf; (ii) You acknowledge that You shall be legally responsible for the Third Party\u2019s use of the Licensed Materials including any obligations arising from such use and any breach by the Third Party of the terms and conditions of the Agreement, including Section 7 (Confidentiality); (iii) usage by You and the Third Party, when taken together, does not at any time exceed the usage restrictions imposed under this Agreement. Upon sixty (60) days\u2019 notice, Tenable may withdraw its consent to the use of any Third Party in its reasonable discretion. You agree not to deliver or otherwise make available the Licensed Materials, in whole or in part, to any party other than Tenable, except for purposes specifically related to Your use of the Licensed Materials, without Tenable\u2019s prior written consent. You agree to use Your commercially reasonable efforts and to take all reasonable steps to ensure that no unauthorized parties have or use the Licensed Materials and that no unauthorized copy, publication, disclosure or distribution of the Licensed Materials, in whole or in part, in any form is made by You or any third party. You agree to notify Tenable promptly of any unauthorized access to, or use, copying, publication, disclosure or distribution of the Licensed Materials. You acknowledge that the Licensed Materials contain valuable Confidential Information and trade secrets of Tenable or its affiliates and their licensors or suppliers.\n\n7. Confidentiality. (a) As used in this Agreement, \"Confidential Information\" means any and all information and material of a party that: (i) is marked \"Confidential,\" \"Restricted,\" or \"Confidential Information\" or other similar marking; (ii) is known by the party Tenable Network Security Confidential and Proprietary 4 Nessus Software License and Subscription Agreement v13 03.03.15 receiving it under this Agreement (the \"Receiving Party\") to be confidential or proprietary; or (iii) from all the relevant circumstances, a reasonable person would understand to be confidential or proprietary. Tenable\u2019s Confidential Information includes the Licensed Materials. Confidential Information does not include any information that the Receiving Party can prove: (a) was already known to the Receiving Party without restrictions at the time of its disclosure by the other party (the \"Disclosing Party\"); (b) after its disclosure by the Disclosing Party, is made known to the Receiving Party without restrictions by a third party having the right to do so; (c) is or becomes publicly known without violation of this Agreement; or (d) is independently developed by the Receiving Party without reference to the Disclosing Party\u2019s Confidential Information. Confidential Information will remain the property of the Disclosing Party, and the Receiving Party will not be deemed by virtue of this Agreement or any access to the Disclosing Party\u2019s Confidential Information to have acquired any right, title or interest in or to the Disclosing Party\u2019s Confidential Information. The Receiving Party may not copy any of the Disclosing Party\u2019s Confidential Information without the Disclosing Party\u2019s prior written permission. The Receiving Party may not remove any copyright, trademark, proprietary rights or other notices included in or affixed to any of the Disclosing Party\u2019s Confidential Information. Other than using the Licensed Materials in accordance with the terms of this Agreement, You may not use Tenable\u2019s Confidential Information for Your or a third party\u2019s benefit, competitive development or any other purpose. The Receiving Party agrees: (I) to hold the Disclosing Party\u2019s Confidential Information in strict confidence; (II) to limit disclosure of the Disclosing Party\u2019s Confidential Information to the Receiving Party\u2019s own employees having a need to know the Confidential Information for the purposes of this Agreement or those of any Third Party, as specified in Section 6; (III) not to disclose the Disclosing Party\u2019s Confidential Information to any third party other than to a Third Party as specified in Section 6; (IV) to use the Confidential Information solely and exclusively in accordance with the terms of this Agreement in order to carry out the Receiving Party\u2019s obligations and exercise the Receiving Party rights under this Agreement; (V) to afford the Disclosing Party\u2019s Confidential Information at least the same level of protection against unauthorized disclosure or use as the Receiving Party normally uses to protect its own information of a similar character, but in no event less than reasonable care; and (VI) to notify the Disclosing Party promptly of any unauthorized use or disclosure of the Disclosing Party\u2019s Confidential Information and to cooperate with and assist the Disclosing Party in every reasonable way to stop or minimize such unauthorized use or disclosure. The Receiving Party agrees that if a court of competent jurisdiction determines that the Receiving Party has breached, or attempted or threatened to breach, the Receiving Party\u2019s confidentiality obligations to the Disclosing Party or its proprietary rights, the Disclosing Party will suffer irreparable harm and that monetary damages will be inadequate to compensate it for such breach. Accordingly, the Disclosing Party, in addition to and not in lieu of any other rights, remedies or damages available to it at law or in equity, shall be entitled to seek appropriate injunctive relief and other measures restraining further attempted or threatened breaches of such obligations without requirement to post any bond. Tenable is not willing to accept any confidential information or any personal information from You under this Agreement unless you are licensing Nessus Professional or Nessus Manager. (b) You acknowledge that Tenable does not require any personally identifiable information, (beyond name, phone number and email) from You for any reason whatsoever, including without limitation in order for Tenable to provide the Licensed Materials or any associated support. However, If You disclose any information that is \"Nonpublic Personal Information\", as defined in Title V of the Gramm-Leach-Bliley Act of 1999, or any successor federal statute, and the rules and regulations thereunder, all as may be amended or supplemented from time to time, or \"Protected Health Information (\u2018PHI\u2019)\", as defined in the Health Insurance Portability and Accountability Act of 1996, or any successor federal statute, and the rules and regulations thereunder, all as may be amended or supplemented from time to time, for which You have separate obligations, You will notify Tenable immediately. Upon such written notification, Tenable will take steps to return or destroy the Nonpublic Personal Information or PHI as quickly as reasonably possible and will protect such information in accordance with Your reasonable instructions prior to returning or destroying it. This should not be read as to alleviate any requirement on You to keep such information confidential and Tenable does not assume any liability with respect to Your disclosure whether willful or accidental.\n\n8. Warranty and Disclaimer. (a) Licensed Materials. Tenable warrants that, for a period of thirty (30) days from the Effective Date (the \"Warranty Period\"), the unmodified Licensed Materials will, under normal use, substantially perform the functions described in their technical documentation. If there is a breach of this warranty, then Tenable\u2019s sole obligation, and Your exclusive remedy, will be for Tenable, at its option, to correct the performance of the Licensed Materials at no charge so that it substantially performs the functions described in its technical documentation or to replace the Licensed Materials. You acknowledge that the remedies described in the preceding sentence are sufficient and cannot fail of their essential purpose. (b) Disclaimer. EXCEPT AS SPECIFICALLY SET FORTH IN SECTION 8(a), TENABLE DOES NOT MAKE ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING ANY WARRANTIES OF Tenable Network Security Confidential and Proprietary 5 Nessus Software License and Subscription Agreement v13 03.03.15 TITLE, NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, INTEGRATION, PERFORMANCE AND ACCURACY, AND ANY IMPLIED WARRANTIES ARISING FROM STATUTE, COURSE OF DEALING, COURSE OF PERFORMANCE OR USAGE OF TRADE, OTHER THAN THOSE WARRANTIES WHICH ARE IMPLIED BY AND INCAPABLE OF EXCLUSION, RESTRICTION, OR MODIFICATION UNDER APPLICABLE LAW. TENABLE MAKES NO WARRANTY THAT THE LICENSED MATERIALS WILL OPERATE ERROR-FREE, FREE OF ANY SECURITY DEFECTS OR IN AN UNINTERRUPTED MANNER.\n\n9. Limitation of Liability. IF YOU SHOULD BECOME ENTITLED TO CLAIM DAMAGES FROM TENABLE (INCLUDING FOR NEGLIGENCE, STRICT LIABILITY, BREACH OF CONTRACT, MISREPRESENTATION AND OTHER CONTRACT OR TORT CLAIMS) TENABLE WILL BE LIABLE ONLY FOR THE AMOUNT OF YOUR ACTUAL DIRECT DAMAGES, NOT TO EXCEED (IN THE AGGREGATE FOR ALL CLAIMS) THE FEES, IF ANY, YOU PAID TO TENABLE UNDER THIS AGREEMENT WITHIN THE TWELVE MONTH PERIOD IMMEDIATELY PRECEDING THE EARLIEST DATE ON WHICH THE ACT OR OMMISSION GIVING RISE TO YOUR CLAIM OCCURRED OR SHOULD HAVE OCCURRED, AS APPLICABLE.\n\n10. Exclusion of Damages. UNDER NO CIRCUMSTANCES WILL TENABLE BE LIABLE TO YOU OR ANY OTHER PERSON OR ENTITY FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, EXEMPLARY OR PUNITIVE DAMAGES (INCLUDING NEGLIGENCE, STRICT LIABILITY, BREACH OF CONTRACT, MISREPRESENTATION AND OTHER CONTRACT OR TORT CLAIMS; LOST PROFITS; OR ANY DAMAGES RESULTING FROM LOSS OF DATA, SECURITY BREACH, PROPERTY DAMAGE, LOSS OF REVENUE, LOSS OF BUSINESS OR LOST SAVINGS), ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT, THE PERFORMANCE OF THE LICENSED MATERIALS OR OF ANY OTHER OBLIGATIONS RELATING TO THIS AGREEMENT, WHETHER OR NOT TENABLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. YOU ARE SOLELY RESPONSIBLE AND LIABLE FOR VERIFYING THE SECURITY, ACCURACY AND ADEQUACY OF ANY OUTPUT FROM THE LICENSED MATERIALS, AND FOR ANY RELIANCE THEREON.\n\n11. Additional Provisions Regarding Liability. The limitations of liability set forth in Sections 9 and 10 will survive and apply notwithstanding the failure of any limited or exclusive remedy for breach of warranty set forth in this Agreement. The parties agree that the foregoing limitations will not be read so as to limit any liability to an extent that would not be permitted under applicable law and specifically will not limit any liability for gross negligence, intentional tortious or unlawful conduct or damages for strict liability that may not be limited by law.\n\n12. Indemnification. (a) Each of the parties acknowledges and agrees that by entering into and performing its obligations under this Agreement, Tenable will not assume and should not be exposed to the business and operational risks associated with Your business and your use of the Licensed Materials. You acknowledge that Your use of the Licensed Materials is only a portion of Your overall security solution and that Tenable is not responsible for Your overall security solution. The parties acknowledge that the use of the Licensed Materials may affect the operation of Your network during vulnerability scanning. Tenable shall not be liable to You for any impairment of the operation of Your network arising from Your use of the Licensed Materials during such scanning. As between You and Tenable, You are (and Tenable is not) responsible for the success or failure of such security solution. Accordingly, You agree that You will, at Your expense, indemnify, defend and hold Tenable harmless in all claims and actions that seek compensation of any kind for injury or death to persons and/or for damage to property, and that arise out of or relate to Your security solutions or Your use of the Licensed Materials or the solutions You provide to a third party through Your use of the Licensed Materials. You also agree to pay all settlements, costs, damages, legal fees and expenses finally awarded in all such claims and actions. If You are a governmental entity that is prohibited by applicable law from providing this type of indemnification, this Section 12(a) will not apply. The following provision applies only to Nessus Professional and Nessus Manager subscriptions: (b) Tenable will, at its sole cost and expense, defend (or at its option, settle) and indemnify You and Your subsidiaries and affiliates, and their officers, directors, employees, representatives and agents, from and against any and all third party claims brought against You based upon a claim that use of the Licensed Materials in accordance with this Agreement infringes such third party\u2019s United States patent, copyright or trademark or misappropriates any trade secret, and will pay all settlements entered into and damages finally awarded (including reasonable attorneys\u2019 fees) to the extent based on such claim Tenable Network Security Confidential and Proprietary 6 Nessus Software License and Subscription Agreement v13 03.03.15 or action, provided that You give Tenable (a) prompt notice of such action or claim; (b) the right to control and direct the investigation, defense, and/or settlement of such action or claim; and (c) reasonable cooperation. If Your use of the Licensed Materials is, or in Tenable\u2019s opinion is likely to be, the subject of an infringement claim, or if required by settlement, Tenable may, in its sole discretion and expense, (a) substitute for the Licensed Materials substantially functionally similar non-infringing software; (b) procure for You the right to continue using the Licensed Materials; (c) if the infringing material consists of Plugins, remove the Plugins in question from the subscription and provide You with a pro rata refund based upon the total number of Plugins removed relative to the total number of Plugins; or (d) terminate this Agreement, accept return of the Licensed Materials and refund to You the Fee for the portion of the Term paid for but not yet received. Tenable has no liability with respect to patent, copyright or trademark infringement or trade secret misappropriation arising out of: (i) modifications of the Licensed Materials; (ii) Your use of the Licensed Materials in combination with software (other than the Software) or third party equipment; (iii) Your failure to use any new or corrected versions of the Licensed Materials made available by Tenable; or (iv) Your use of the Licensed Materials in a manner not permitted by this Agreement. This Section 12(b) sets forth Tenable\u2019s sole liability and Your sole and exclusive remedy with respect to any claim of intellectual property infringement by the Licensed Materials.\n\n13. Verification. For the term of this Agreement and one (1) year thereafter, You agree that Tenable or its designee shall have the right, at its own expense and under reasonable conditions of time and place, to audit and copy all records of Your use of the Software. Upon Tenable\u2019s written approval, Tenable may instead require You to complete accurately a self-audit questionnaire in a form provided by Tenable. If an audit reveals unlicensed use of the Licensed Materials, a breach of this Agreement or underpayment of any Fees by You or Your employees or agents, You must, in addition to such other rights and remedies as may be available to Tenable as the result of such breach, promptly order and pay for sufficient licenses (at Tenable\u2019s then-current price for such licenses) to permit all usage disclosed and pay the full cost of such audit and copying. Tenable will use information obtained from such audit only to verify and enforce Your compliance with the terms of this Agreement, to comply with any governmental reporting requirements and for such other purposes as required by law. The foregoing audit right will not apply to the extent not allowable under applicable law.\n\n14. Your Payment Obligations. You agree to pay any and all amounts due or incurred by You as specified in the invoice for the applicable subscription to the Licensed Materials (the \"Fees\"). The invoice may be issued by Tenable or one of its authorized distributors, as applicable. Payment is due upon delivery of an invoice unless other terms have been agreed upon by Tenable. You agree to pay directly or reimburse Tenable (or the authorized distributor, as applicable) for any taxes (including, sales or excise taxes, value added taxes, landing fees, import duties and the like), however designated and whether foreign or domestic, arising out of this Agreement, imposed on the Plugins or the use thereof, or Tenable\u2019s performance under this Agreement. You agree to pay invoices under this Agreement without deducting any present or future taxes, withholdings or other charges except those deductions it is legally required to make. If You are legally required to make any deductions, You agree to pay such amounts as are necessary to make the net amounts remaining after such deductions equal to the stated amount due under this Agreement. The payments or reimbursements will be in such amounts as are sufficient to relieve Tenable (or the authorized distributor, as applicable) from owing any further taxes, either directly or on the basis of the payments made under this Agreement. Notwithstanding the foregoing, Tenable will be solely responsible for its income tax obligations and all employer reporting and payment obligations with respect to its personnel. You agree to pay any interest and penalties imposed by any taxing authorities to the extent such interest and penalties are applicable to taxes not paid at Your request or as a result of reliance by Tenable (or the authorized distributor, as applicable) on Your representations. If a certificate of exemption or similar document or proceeding is necessary in order to exempt any transaction from a tax, You will obtain such certificate or document.\n\n15. Legal Compliance; Restricted Rights. The Licensed Materials are provided solely for lawful purposes and use. You are solely responsible for, and agree to perform Your obligations in a manner that complies with all applicable national, federal, state and local laws, statutes, ordinances, regulations, codes and other types of government authority (including those governing export control, unfair competition, anti-discrimination, false advertising, privacy and data protection, and publicity and those identifying and requiring permits, licenses, approvals, and other consents) (\"Laws\"). If a charge is made that You are not complying with any such Laws, You will promptly notify Tenable of such charges in writing. Without limiting the foregoing, You agree to comply with all U.S. export Laws (including the International Traffic in Arms Regulation (\"ITAR\"), 22 CFR 120-130, and the Export Administration Regulation (\"EAR\"), 15 CFR Parts 730 et seq.) and applicable export Laws of Your locality (if You are not in the United States), to ensure that no information or technical data provided pursuant to this Agreement is exported or re-exported directly or indirectly in violation of Law or without first obtaining all required authorizations or licenses. No physical or computational access Tenable Network Security Confidential and Proprietary 7 Nessus Software License and Subscription Agreement v13 03.03.15 by nationals of any country listed in Country Group E:1 in Supplement No. 1 to part 740 of the EAR is permitted. You will, at Your sole cost and expense, obtain and maintain in effect all permits, licenses, approvals and other consents related to Your obligations under this Agreement. You agree, at Your expense, to comply with all foreign exchange and other Laws applicable to You. The parties further agree to comply with sanctions administered by the Department of Treasury\u2019s Office of Foreign Assets Control (\"OFAC\") and shall not engage in prohibited trade to persons or entities on the Specially Designated Nationals (\"SDN\") list. Unless You are prohibited by law from doing so, You will defend, indemnify, and hold Tenable harmless from any breach of this Section 15.\n\n16. Termination. (a) You may terminate this Agreement at any time by destroying or returning to Tenable the Licensed Materials, together with all copies, modifications and merged portions of the Licensed Materials in any form. (b) This Agreement and Your license to use the Licensed Materials shall terminate automatically if You fail to comply with any term or condition of this Agreement. (c) Immediately upon termination of this Agreement, You shall destroy or return to Tenable the Licensed Materials, together with all copies, modifications and merged portions of the Licensed Materials in any form, and shall certify to Tenable in writing that through Your commercially reasonable efforts and to Your knowledge all such materials have been destroyed or returned to Tenable and removed from host computers on which the Licensed Materials resided. However, You may download the then-current version of the Licensed Materials and enter into a new license under the then-current terms. The removal and deletion provisions of this Section do not apply to copies of the Licensed Materials that are made pursuant to Your reasonable back-up and archival policies (under which back-up tapes that will be overwritten in due course may contain copies of the Licensed Materials), provided that (i) such copies are only retained by You in the course of Your back-up procedures, (ii) such copies will be deleted within a reasonable period of time in the normal course of overwriting under the back-up process, and (iii) such copies never be used to exceed the license restrictions under this Agreement. (d) Any provision of this Agreement that imposes or contemplates continuing obligations on a party, including Sections 4, 5, 6, 7, 9, 10, 11, 13, 16, 17, 22, and 23 will survive the expiration or termination of this Agreement.\n\n17. Governing Law and Dispute Resolution. (a) This Agreement shall be governed in all respects by the laws of the State of Maryland, USA, without regard to choice-of-law rules or principles. If You are a governmental entity that cannot legally agree to be governed by the laws of the State of Maryland, this Section 17(a) will be deemed to refer to the laws of the Your state rather than to the State of Maryland. (b) You and Tenable submit to the exclusive jurisdiction of the courts of Howard County, Maryland and the United States District Court for Maryland, Baltimore Division, for any question or dispute arising out of or relating to this Agreement. Due to the high costs and time involved in commercial litigation before a jury, the parties waive all right to a jury trial with respect to any and all issues in any action or proceeding arising out of or related to this Agreement. If You are a governmental entity that cannot legally submit to the exclusive jurisdiction of the courts of Howard County, Maryland, this Section 17(b) will be deemed to be deleted. (c) The Licensed Materials are licensed subject to Tenable\u2019s standard commercial agreement (this Agreement); the Licensed Materials are commercial items as defined by the Federal Acquisition Regulation (FAR) System, Title 48 of the Code of Federal Regulations. Tenable licenses the Licensed Materials to You pursuant to the terms of this Agreement and not any clause identified in FAR Part 27, DFARS Part 227, or any other government agency data rights clause, except that, if You are a government entity and the Agreement is subject to FAR 52.227-19 Commercial Computer Software License (Dec 2007), Tenable agrees that that clause supplements the other terms of this Agreement. If you do not agree to the terms of this paragraph, you shall return the Licensed Materials unused for a refund. (d) You expressly agree with Tenable that this Agreement shall not be governed by the U.N. Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. No aspect or provision of the Uniform Computer Information Transactions Act, as implemented under Maryland law, shall apply to this Agreement. Tenable Network Security Confidential and Proprietary 8 Nessus Software License and Subscription Agreement v13 03.03.15\n\n18. Notices. Any notices or other communication required or permitted to be made or given by either party pursuant to this Agreement will be in writing, in English, and will be deemed to have been duly given when delivered if delivered personally or sent by recognized overnight express courier, to the address specified herein or such other address as a party may specify in writing. Tenable may also provide notices to You via an email address You have provided to Tenable. All notices to Tenable shall be sent to the attention of the Legal Department, at Tenable Network Security, 7021 Columbia Gateway Drive, Suite 500, Columbia, MD 21046.\n\n19. Transfer and Assignment. You may not rent, lease, lend, sublicense or otherwise provide the Licensed Materials to any third party, except as expressly provided in this Agreement. You may not assign or otherwise transfer this Agreement without Tenable\u2019s prior written consent. You may use the Licensed Materials to provide services to third parties only as expressly provided in this Agreement.\n\n20. Language. The language of this Agreement is English and all invoices and other documents given under this Agreement must be in English to be effective. No translation, if any, of this Agreement or any notice will be of any effect in the interpretation of this Agreement or in determining the intent of the parties.\n\n21. Third Parties. This Agreement is not intended nor will it be interpreted to confer any benefit, right or privilege in any person or entity not a party to this Agreement. Any party who is not a party to this Agreement has no right under any Law to enforce any term of this Agreement.\n\n22. Trademarks. Nessus, ProfessionalFeed, HomeFeed, Tenable Network Security and Tenable\u2019s \"hexagon\" logo are registered trademarks of Tenable. Tenable\u2019s other logos, including the \"eye\" logo, are also trademarks of Tenable. Tenable does not grant to You, either expressly or by implication, any license or permission under this Agreement to use any of the Tenable marks (including trademarks, service marks, trade names, trade dress, symbols, logos, designs, domain names, slogans and other source identifiers).\n\n23. General. This Agreement constitutes the entire agreement between the parties, and supersedes all other prior or contemporaneous communications between the parties (whether written or oral) relating to the subject matter of this Agreement, provided, however, that this Agreement will not supersede (and will be subject to) any written agreements signed by both Tenable and You that contain license terms for the Licensed Materials and that specifically provide that such agreements are intended to supersede license agreements that may be included in subsequent orders of the Licensed Materials. Tenable will provide a reasonable replacement for damaged or lost Licensed Materials for You at no charge. No supplement, modification or amendment of this Agreement shall be binding, unless executed in writing by a duly authorized representative of each party to this Agreement. The provisions of this Agreement will be deemed severable, and the unenforceability of any one or more provisions will not affect the enforceability of any other provisions. In addition, if any provision of this Agreement, for any reason, is declared to be unenforceable, the parties will substitute an enforceable provision that, to the maximum extent possible under applicable law, preserves the original intentions and economic positions of the parties. Unless Tenable agrees otherwise, You agree that Tenable may use Your name in a customer list. Neither party shall be liable for any loss or delay (including failure to meet the service level commitment) resulting from any force majeure event, including, but not limited to, acts of God, fire, natural disaster, terrorism, labor stoppage, Internet service provider failures or delays, civil unrest, war or military hostilities, criminal acts of third parties, and any payment date or delivery date shall be extended to the extent of any delay resulting from any force majeure event. No failure or delay by a party in exercising any right, power or remedy will operate as a waiver of that right, power or remedy, and no waiver will be effective unless it is in writing and signed by the waiving party. If a party waives any right, power or remedy, the waiver will not waive any successive or other right, power or remedy the party may have under this Agreement. Any provision of this Agreement that imposes or contemplates continuing obligations on a party will survive the expiration or termination of this Agreement. \"Including\" and its derivatives (such as \"include\" and \"includes\") mean including without limitation; this term is as defined, whether or not capitalized in this Agreement.", + "json": "tenable-nessus.json", + "yaml": "tenable-nessus.yml", + "html": "tenable-nessus.html", + "license": "tenable-nessus.LICENSE" + }, + { + "license_key": "term-readkey", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-term-readkey", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Unlimited distribution and/or modification is allowed as long as this copyright\nnotice remains intact.", + "json": "term-readkey.json", + "yaml": "term-readkey.yml", + "html": "term-readkey.html", + "license": "term-readkey.LICENSE" + }, + { + "license_key": "tested-software", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tested-software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License: \nThis is free software. You may use this software for any\npurpose including modification/redistribution, so long as\nthis header remains intact and that you do not claim any\nrights of ownership or authorship of this software. This\nsoftware has been tested, but no warranty is expressed or\nimplied.", + "json": "tested-software.json", + "yaml": "tested-software.yml", + "html": "tested-software.html", + "license": "tested-software.LICENSE" + }, + { + "license_key": "tex-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-tex-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, when this file is read by TeX when processing\na Texinfo source document, you may use the result without\nrestriction. This Exception is an additional permission under section 7\nof the GNU General Public License, version 3 (\"GPLv3\").", + "json": "tex-exception.json", + "yaml": "tex-exception.yml", + "html": "tex-exception.html", + "license": "tex-exception.LICENSE" + }, + { + "license_key": "tex-live", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tex-live", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "COPYING CONDITIONS FOR TeX Live:\n\nTo the best of our knowledge, all software in the TeX Live distribution\nis freely redistributable (libre, that is, not necessarily gratis),\nwithin the Free Software Foundation's definition and the Debian Free\nSoftware Guidelines. Where the two conflict, we generally follow the\nFSF (see [*] below). If you find any non-free files included, please\ncontact us (references given at the end).\n\nThat said, TeX Live has neither a single copyright holder nor a single\nlicense covering its entire contents, since it is a collection of many\ndisparate packages. Therefore, you may copy, modify, and/or\nredistribute software from TeX Live only if you comply with the\nrequirements placed thereon by the owners of the respective packages.\n\nTo most easily learn these requirements, we suggest checking the TeX\nCatalogue at: http://www.ctan.org/tex-archive/help/Catalogue/ (or any\nCTAN mirror). The Catalogue is also included in TeX Live in\n./texmf/doc/html/catalogue/, but the online version will have updates.\nOf course the legal statements within the packages themselves are the\nfinal authority.\n\nIn some cases, TeX Live is distributed with a snapshot of the CTAN\narchive, which is entirely independent of and separable from TeX Live\nitself. (The \"live\" DVD in the TeX Collection is one example of this.)\nPlease be aware that the CTAN snapshot contains many files which are\n*not* freely redistributable; see LICENSE.CTAN for more information.\n\n\nGUIDELINES FOR REDISTRIBUTION:\n\nIn general, you may redistribute TeX Live, with or without modification,\nfor profit or not, according to the usual free software tenets. Here\nare some general guidelines for doing this:\n\n- If you make any changes to the TeX Live distribution or any\npackage it contains, besides complying with any licensing requirements,\nyou must prominently mention such changes in your modified distribution\nso that users do not take your work for ours, and know to contact you,\nnot us, in case of questions or problems. A new top-level\nREADME. file is a good place to describe the general situation.\n\n- Especially (but not necessarily) if changes or additions are made, we\nrecommend a clearly different title, such as \" DVD, based on\nTeX Live YYYY (with updates)\", where YYYY is the year of TeX Live you\nare using. This credits both our work and yours.\n\n- You absolutely may *not* place your own copyright on the entire\ndistribution, since it is not your work (as stated above, TeX Live is\nnot created by any single person or entity). Statements such as \"all\nrights reserved\" and \"may not be reproduced\" are especially\nreprehensible, since they are antithetical to the free software\nprinciples under which TeX Live is produced.\n\n- You may use any cover or media label designs that you wish. Such\npackaging and marketing details are not covered by any TeX Live license.\n\n- Finally, we make the following requests (not legal requirements):\n\na) Acknowledging that TeX Live is developed as a joint effort by all TeX\n user groups, and encouraging the user/reader to join their user group\n of choice. The web page http://www.tug.org/usergroups.html may be\n referenced as a list of TeX user groups.\n\nb) Referencing the TeX Live home page: http://www.tug.org/texlive/\n\nSuch information may be placed on the label of your media, your cover,\nand/or in accompanying text (for instance, in the acknowledgements\nsection of a book).\n\nFinally, although it is again not at all a requirement, we'd like to\ninvite any redistributors to make a donation to the project, whether\ncash or in-kind, for example via https://www.tug.org/donate/dev.html.\nThanks.\n\n\nIf you have any questions or comments, *please* contact us. In general,\nwe appreciate being given the chance to review any TeX Live-related\nmaterial in advance of publication, simply to avoid mistakes. It is\nmuch better to correct text on a CD label or in a book before thousands\nof copies are made!\n\nWe are also happy to keep anyone planning a publication informed as to\nour deadlines and progress. Just let us know. However, be aware that\nTeX Live is produced entirely by volunteers, and no dates can be\nguaranteed.\n\n\nLICENSING FOR NEW PACKAGES:\n\nFinally, we are often asked what license to use for new work. To be\nconsidered for inclusion on TeX Live, a package must use a free software\nlicense, such as the LaTeX Project Public License, the GNU General\nPublic License, the X Window System license, the modified BSD license,\netc. Furthermore, all sources must be available, including for\ndocumentation files. Please see the url's below for more information.\n\nThanks for your interest in TeX.\n\n- Karl Berry, editor, for the TeX Live team\n\n------------------------------------------------------------\n[*] Conflicts between FSF and Debian.\n\nThe most notable instance of legal conflict between the FSF definition\nof \"free software\" and the Debian Free Software Guidelines is in regard\nto the GNU Free Documentation License when \"invariant sections\" (e.g.,\nFront-Cover Texts, Back-Cover Texts, or Invariant Sections) are\nincluded. (FSF considers it free, of course, and Debian doesn't.) \n\nThe most common instance of such a license is in documentation for\nofficial GNU packages -- such as GNU Texinfo, which is included in TeX\nLive. There may be other GFDL'd files with invariant sections as well;\nwe have not exhaustively checked.\n\nFor TeX Live, we decided to follow the FSF, rather than Debian. So such\ndocumentation *is* included in the original TeX Live distribution. (In\nrepackagings of TL according to Debian rules, it is removed.) We surely\nwish these two major organizations in the free software world could\ncooperate on a documentation license acceptable to both.\n\nIf other specific conflicts are brought to our attention, we will note\nthem here.\n\n------------------------------------------------------------\nTeX Live mailing list: texlive@tug.org\nTeX Live home page: http://www.tug.org/tex-live/\n\nThe FSF's free software definition: http://www.gnu.org/philosophy/free-sw.html\nDebian Free Software Guidelines: http://www.debian.org/intro/free\nFSF commentary on existing licenses:\n http://www.gnu.org/licenses/license-list.html\n\nLPPL: http://latex-project.org/lppl.html or texmf/doc/latex/base/lppl.txt\nLPPL rationale: texmf/doc/latex/base/modguide.pdf", + "json": "tex-live.json", + "yaml": "tex-live.yml", + "html": "tex-live.html", + "license": "tex-live.LICENSE" + }, + { + "license_key": "tfl", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-tfl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "I am the author of this software and its documentation and\npermanently abandon all copyright and other intellectual property rights in\nthem, including the right to be identified as the author.\n\nI am fairly certain that this software does what the documentation says it\ndoes, but I cannot guarantee that it does, or that it does what you think it\nshould, and I cannot guarantee that it will not have undesirable side effects.\n\nYou are free to use, modify and distribute this software as you please, but\nyou do so at your own risk. If you remove or hide this warning then you are\nresponsible for any problems encountered by people that you make the software\navailable to.\n\nBefore modifying or distributing this software I ask that you would please\nread http://www.purposeful.co.uk/tfl/", + "json": "tfl.json", + "yaml": "tfl.yml", + "html": "tfl.html", + "license": "tfl.LICENSE" + }, + { + "license_key": "tgppl-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-tgppl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Transitive Grace Period Public Licence (\"TGPPL\") v. 1.0\n\nThis Transitive Grace Period Public Licence (the \"License\") applies to\nany original work of authorship (the \"Original Work\") whose owner (the\n\"Licensor\") has placed the following licensing notice adjacent to the\ncopyright notice for the Original Work:\n\n*Licensed under the Transitive Grace Period Public Licence version 1.0*\n\n 1. *Grant of Copyright License.* Licensor grants You a worldwide,\n royalty-free, non-exclusive, sublicensable license, for the\n duration of the copyright, to do the following:\n\n 1. to reproduce the Original Work in copies, either alone or as\n part of a collective work;\n\n 2. to translate, adapt, alter, transform, modify, or arrange\n the Original Work, thereby creating derivative works\n (\"Derivative Works\") based upon the Original Work;\n\n 3. to distribute or communicate copies of the Original Work and\n Derivative Works to the public, with the proviso that copies\n of Original Work or Derivative Works that You distribute or\n communicate shall be licensed under this Transitive Grace\n Period Public Licence no later than 12 months after You\n distributed or communicated said copies;\n\n 4. to perform the Original Work publicly; and\n\n 5. to display the Original Work publicly.\n\n 2. *Grant of Patent License.* Licensor grants You a worldwide,\n royalty-free, non-exclusive, sublicensable license, under patent\n claims owned or controlled by the Licensor that are embodied in\n the Original Work as furnished by the Licensor, for the duration\n of the patents, to make, use, sell, offer for sale, have made, and\n import the Original Work and Derivative Works.\n\n 3. *Grant of Source Code License.* The term \"Source Code\" means the\n preferred form of the Original Work for making modifications to it\n and all available documentation describing how to modify the\n Original Work. Licensor agrees to provide a machine-readable copy\n of the Source Code of the Original Work along with each copy of\n the Original Work that Licensor distributes. Licensor reserves the\n right to satisfy this obligation by placing a machine-readable\n copy of the Source Code in an information repository reasonably\n calculated to permit inexpensive and convenient access by You for\n as long as Licensor continues to distribute the Original Work.\n\n 4. *Exclusions From License Grant.* Neither the names of Licensor,\n nor the names of any contributors to the Original Work, nor any of\n their trademarks or service marks, may be used to endorse or\n promote products derived from this Original Work without express\n prior permission of the Licensor. Except as expressly stated\n herein, nothing in this License grants any license to Licensor's\n trademarks, copyrights, patents, trade secrets or any other\n intellectual property. No patent license is granted to make, use,\n sell, offer for sale, have made, or import embodiments of any\n patent claims other than the licensed claims defined in Section 2.\n No license is granted to the trademarks of Licensor even if such\n marks are included in the Original Work. Nothing in this License\n shall be interpreted to prohibit Licensor from licensing under\n terms different from this License any Original Work that Licensor\n otherwise would have a right to license.\n\n 5. *External Deployment.* The term \"External Deployment\" means the\n use, distribution, or communication of the Original Work or\n Derivative Works in any way such that the Original Work or\n Derivative Works may be used by anyone other than You, whether\n those works are distributed or communicated to those persons or\n made available as an application intended for use over a network.\n As an express condition for the grants of license hereunder, You\n must treat any External Deployment by You of the Original Work or\n a Derivative Work as a distribution under section 1(c).\n\n 6. *Attribution Rights.* You must retain, in the Source Code of any\n Derivative Works that You create, all copyright, patent, or\n trademark notices from the Source Code of the Original Work, as\n well as any notices of licensing and any descriptive text\n identified therein as an \"Attribution Notice.\" You must cause the\n Source Code for any Derivative Works that You create to carry a\n prominent Attribution Notice reasonably calculated to inform\n recipients that You have modified the Original Work.\n\n 7. *Warranty of Provenance and Disclaimer of Warranty.* Licensor\n warrants that the copyright in and to the Original Work and the\n patent rights granted herein by Licensor are owned by the Licensor\n or are sublicensed to You under the terms of this License with the\n permission of the contributor(s) of those copyrights and patent\n rights. Except as expressly stated in the immediately preceding\n sentence, the Original Work is provided under this License on an\n \"AS IS\" BASIS and WITHOUT WARRANTY, either express or implied,\n including, without limitation, the warranties of non-infringement,\n merchantability or fitness for a particular purpose. THE ENTIRE\n RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This\n DISCLAIMER OF WARRANTY constitutes an essential part of this\n License. No license to the Original Work is granted by this\n License except under this disclaimer.\n\n 8. *Limitation of Liability.* Under no circumstances and under no\n legal theory, whether in tort (including negligence), contract, or\n otherwise, shall the Licensor be liable to anyone for any\n indirect, special, incidental, or consequential damages of any\n character arising as a result of this License or the use of the\n Original Work including, without limitation, damages for loss of\n goodwill, work stoppage, computer failure or malfunction, or any\n and all other commercial damages or losses. This limitation of\n liability shall not apply to the extent applicable law prohibits\n such limitation.\n\n 9. *Acceptance and Termination.* If, at any time, You expressly\n assented to this License, that assent indicates your clear and\n irrevocable acceptance of this License and all of its terms and\n conditions. If You distribute or communicate copies of the\n Original Work or a Derivative Work, You must make a reasonable\n effort under the circumstances to obtain the express assent of\n recipients to the terms of this License. This License conditions\n your rights to undertake the activities listed in Section 1,\n including your right to create Derivative Works based upon the\n Original Work, and doing so without honoring these terms and\n conditions is prohibited by copyright law and international\n treaty. Nothing in this License is intended to affect copyright\n exceptions and limitations (including 'fair use' or 'fair\n dealing'). This License shall terminate immediately and You may no\n longer exercise any of the rights granted to You by this License\n upon your failure to honor the conditions in Section 1(c).\n\n 10. *Termination for Patent Action.* This License shall terminate\n automatically and You may no longer exercise any of the rights\n granted to You by this License as of the date You commence an\n action, including a cross-claim or counterclaim, against Licensor\n or any licensee alleging that the Original Work infringes a\n patent. This termination provision shall not apply for an action\n alleging patent infringement by combinations of the Original Work\n with other software or hardware.\n\n 11. *Jurisdiction, Venue and Governing Law.* Any action or suit\n relating to this License may be brought only in the courts of a\n jurisdiction wherein the Licensor resides or in which Licensor\n conducts its primary business, and under the laws of that\n jurisdiction excluding its conflict-of-law provisions. The\n application of the United Nations Convention on Contracts for the\n International Sale of Goods is expressly excluded. Any use of the\n Original Work outside the scope of this License or after its\n termination shall be subject to the requirements and penalties of\n copyright or patent law in the appropriate jurisdiction. This\n section shall survive the termination of this License.\n\n 12. *Attorneys' Fees.* In any action to enforce the terms of this\n License or seeking damages relating thereto, the prevailing party\n shall be entitled to recover its costs and expenses, including,\n without limitation, reasonable attorneys' fees and costs incurred\n in connection with such action, including any appeal of such\n action. This section shall survive the termination of this License.\n\n 13. *Miscellaneous.* If any provision of this License is held to be\n unenforceable, such provision shall be reformed only to the extent\n necessary to make it enforceable.\n\n 14. *Definition of \"You\" in This License.* \"You\" throughout this\n License, whether in upper or lower case, means an individual or a\n legal entity exercising rights under, and complying with all of\n the terms of, this License. For legal entities, \"You\" includes any\n entity that controls, is controlled by, or is under common control\n with you. For purposes of this definition, \"control\" means (i) the\n power, direct or indirect, to cause the direction or management of\n such entity, whether by contract or otherwise, or (ii) ownership\n of fifty percent (50%) or more of the outstanding shares, or (iii)\n beneficial ownership of such entity.\n\n 15. *Right to Use.* You may use the Original Work in all ways not\n otherwise restricted or conditioned by this License or by law, and\n Licensor promises not to interfere with or be responsible for such\n uses by You.\n\n 16. *Modification of This License.* This License is Copyright \u00a9 2007\n Zooko Wilcox-O'Hearn. Permission is granted to copy, distribute,\n or communicate this License without modification. Nothing in this\n License permits You to modify this License as applied to the\n Original Work or to Derivative Works. However, You may modify the\n text of this License and copy, distribute or communicate your\n modified version (the \"Modified License\") and apply it to other\n original works of authorship subject to the following conditions:\n (i) You may not indicate in any way that your Modified License is\n the \"Transitive Grace Period Public Licence\" or \"TGPPL\" and you\n may not use those names in the name of your Modified License; and\n (ii) You must replace the notice specified in the first paragraph\n above with the notice \"Licensed under \" or with a notice of your\n own that is not confusingly similar to the notice in this License.", + "json": "tgppl-1.0.json", + "yaml": "tgppl-1.0.yml", + "html": "tgppl-1.0.html", + "license": "tgppl-1.0.LICENSE" + }, + { + "license_key": "things-i-made-public-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-things-i-made-public-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "THINGS I MADE (TIM) PUBLIC LICENSE\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\nCopyright (c) Marcus Crane \n\n1. The author of this project would really like to hear any cool stuff you made\nas a result of reusing this code.\n\nThis is not enforceable but it is highly encouraged as it would make the author\nhappy.\n\n2. If it breaks, the author may try to help if it's a neat bug but they aren't\nobligated to provide support nor are they liable for any damages.\n\n3. Beyond that, do whatever you feel like.", + "json": "things-i-made-public-license.json", + "yaml": "things-i-made-public-license.yml", + "html": "things-i-made-public-license.html", + "license": "things-i-made-public-license.LICENSE" + }, + { + "license_key": "thomas-bandt", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-thomas-bandt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This Library is provided as is. No warrenty is expressed or implied.\n\nYou can use these Library in free and commercial projects without a fee.\n\nNo charge should be made for providing these Library to a third party.\n\nIt is allowed to modify the source to fit your special needs. If you \nmade improvements you should make it public available by sending us \nyour modifications or publish it on your site. If you publish it on \nyour own site you have to notify us. This is not a commitment that we \ninclude your modifications. \n\nThis Copyright notice must be included in the modified source code.\n\nYou are not allowed to build a commercial rewrite engine based on \nthis code.", + "json": "thomas-bandt.json", + "yaml": "thomas-bandt.yml", + "html": "thomas-bandt.html", + "license": "thomas-bandt.LICENSE" + }, + { + "license_key": "thor-pl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-thor-pl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "THOR Public Licence (TPL)\n\n0. Notes of Origin\n\n0.1 As required by paragraph 6.3 of the \"Mozilla Public Licence\",\n\"MPL\" in the following, it is hereby stated that this Licence\ncondition (\"TPL\") differs in the following items from the original\n\"Mozilla Public Licence\" as provided by \"Netscape Communications\nCorporation\":\n\na) Paragraphs 6.2 and 6.3 of the MPL has been modified to bind licence\nmodifications to the Author of this Licence, Thomas Richter.\n\nb) Paragraph 11 has been modified to gover this Licence by German\nlaw rather than Californian Law.\n\nc) The licence has been renamed to \"TPL\" and \"THOR Public\nLicence\". All references towards \"MPL\" have been removed except in\nsection 0 to indicate the difference from \"MPL\".\n\nNo other modifications have been made.\n\n\n1. Definitions.\n\n1.0.1. \"Commercial Use\" means distribution or otherwise making the\nCovered Code available to a third party.\n\n1.1. \"Contributor\" means each entity that creates or contributes to\nthe creation of Modifications.\n\n1.2. \"Contributor Version\" means the combination of the Original Code,\nprior Modifications used by a Contributor, and the Modifications made\nby that particular Contributor.\n\n1.3. \"Covered Code\" means the Original Code or Modifications or the\ncombination of the Original Code and Modifications, in each case\nincluding portions thereof.\n\n1.4. \"Electronic Distribution Mechanism\" means a mechanism generally\naccepted in the software development community for the electronic\ntransfer of data.\n\n1.5. \"Executable\" means Covered Code in any form other than Source\nCode.\n\n1.6. \"Initial Developer\" means the individual or entity identified as\nthe Initial Developer in the Source Code notice required by Exhibit A.\n\n1.7. \"Larger Work\" means a work which combines Covered Code or\nportions thereof with code not governed by the terms of this License.\n\n1.8. \"License\" means this document.\n\n1.8.1. \"Licensable\" means having the right to grant, to the maximum\nextent possible, whether at the time of the initial grant or\nsubsequently acquired, any and all of the rights conveyed herein.\n\n1.9. \"Modifications\" means any addition to or deletion from the\nsubstance or structure of either the Original Code or any previous\nModifications. When Covered Code is released as a series of files, a\nModification is: A. Any addition to or deletion from the contents of a\nfile containing Original Code or previous Modifications.\n\nB. Any new file that contains any part of the Original Code or\nprevious Modifications.\n \n1.10. \"Original Code\" means Source Code of computer software code\nwhich is described in the Source Code notice required by Exhibit A as\nOriginal Code, and which, at the time of its release under this\nLicense is not already Covered Code governed by this License.\n\n1.10.1. \"Patent Claims\" means any patent claim(s), now owned or\nhereafter acquired, including without limitation, method, process, and\napparatus claims, in any patent Licensable by grantor.\n\n1.11. \"Source Code\" means the preferred form of the Covered Code for\nmaking modifications to it, including all modules it contains, plus\nany associated interface definition files, scripts used to control\ncompilation and installation of an Executable, or source code\ndifferential comparisons against either the Original Code or another\nwell known, available Covered Code of the Contributor's choice. The\nSource Code can be in a compressed or archival form, provided the\nappropriate decompression or de-archiving software is widely available\nfor no charge.\n\n1.12. \"You\" (or \"Your\") means an individual or a legal entity\nexercising rights under, and complying with all of the terms of, this\nLicense or a future version of this License issued under Section\n6.1. For legal entities, \"You\" includes any entity which controls, is\ncontrolled by, or is under common control with You. For purposes of\nthis definition, \"control\" means (a) the power, direct or indirect, to\ncause the direction or management of such entity, whether by contract\nor otherwise, or (b) ownership of more than fifty percent (50%) of the\noutstanding shares or beneficial ownership of such entity.\n\n2. Source Code License.\n\n2.1. The Initial Developer Grant. The Initial Developer hereby grants\nYou a world-wide, royalty-free, non-exclusive license, subject to\nthird party intellectual property claims: (a) under intellectual\nproperty rights (other than patent or trademark) Licensable by Initial\nDeveloper to use, reproduce, modify, display, perform, sublicense and\ndistribute the Original Code (or portions thereof) with or without\nModifications, and/or as part of a Larger Work; and\n\n(b) under Patents Claims infringed by the making, using or selling of\nOriginal Code, to make, have made, use, practice, sell, and offer for\nsale, and/or otherwise dispose of the Original Code (or portions\nthereof). \n\n(c) the licenses granted in this Section 2.1(a) and (b) are effective\non the date Initial Developer first distributes Original Code under\nthe terms of this License.\n\n(d) Notwithstanding Section 2.1(b) above, no patent license is\ngranted: 1) for code that You delete from the Original Code; 2)\nseparate from the Original Code; or 3) for infringements caused by: i)\nthe modification of the Original Code or ii) the combination of the\nOriginal Code with other software or devices.\n \n2.2. Contributor Grant. Subject to third party intellectual property\nclaims, each Contributor hereby grants You a world-wide, royalty-free,\nnon-exclusive license\n \n(a) under intellectual property rights (other than patent or\ntrademark) Licensable by Contributor, to use, reproduce, modify,\ndisplay, perform, sublicense and distribute the Modifications created\nby such Contributor (or portions thereof) either on an unmodified\nbasis, with other Modifications, as Covered Code and/or as part of a\nLarger Work; and\n\n(b) under Patent Claims infringed by the making, using, or selling of\nModifications made by that Contributor either alone and/or in\ncombination with its Contributor Version (or portions of such\ncombination), to make, use, sell, offer for sale, have made, and/or\notherwise dispose of: 1) Modifications made by that Contributor (or\nportions thereof); and 2) the combination of Modifications made by\nthat Contributor with its Contributor Version (or portions of such\ncombination).\n\n(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective\non the date Contributor first makes Commercial Use of the Covered\nCode.\n\n(d) Notwithstanding Section 2.2(b) above, no patent license is\ngranted: 1) for any code that Contributor has deleted from the\nContributor Version; 2) separate from the Contributor Version; 3) for\ninfringements caused by: i) third party modifications of Contributor\nVersion or ii) the combination of Modifications made by that\nContributor with other software (except as part of the Contributor\nVersion) or other devices; or 4) under Patent Claims infringed by\nCovered Code in the absence of Modifications made by that Contributor.\n\n\n3. Distribution Obligations.\n\n3.1. Application of License. The Modifications which You create or to\nwhich You contribute are governed by the terms of this License,\nincluding without limitation Section 2.2. The Source Code version of\nCovered Code may be distributed only under the terms of this License\nor a future version of this License released under Section 6.1, and\nYou must include a copy of this License with every copy of the Source\nCode You distribute. You may not offer or impose any terms on any\nSource Code version that alters or restricts the applicable version of\nthis License or the recipients' rights hereunder. However, You may\ninclude an additional document offering the additional rights\ndescribed in Section 3.5.\n\n3.2. Availability of Source Code. Any Modification which You create\nor to which You contribute must be made available in Source Code form\nunder the terms of this License either on the same media as an\nExecutable version or via an accepted Electronic Distribution\nMechanism to anyone to whom you made an Executable version available;\nand if made available via Electronic Distribution Mechanism, must\nremain available for at least twelve (12) months after the date it\ninitially became available, or at least six (6) months after a\nsubsequent version of that particular Modification has been made\navailable to such recipients. You are responsible for ensuring that\nthe Source Code version remains available even if the Electronic\nDistribution Mechanism is maintained by a third party.\n\n3.3. Description of Modifications. You must cause all Covered Code to\nwhich You contribute to contain a file documenting the changes You\nmade to create that Covered Code and the date of any change. You must\ninclude a prominent statement that the Modification is derived,\ndirectly or indirectly, from Original Code provided by the Initial\nDeveloper and including the name of the Initial Developer in (a) the\nSource Code, and (b) in any notice in an Executable version or related\ndocumentation in which You describe the origin or ownership of the\nCovered Code.\n\n3.4. Intellectual Property Matters (a) Third Party Claims. If\nContributor has knowledge that a license under a third party's\nintellectual property rights is required to exercise the rights\ngranted by such Contributor under Sections 2.1 or 2.2, Contributor\nmust include a text file with the Source Code distribution titled\n\"LEGAL\" which describes the claim and the party making the claim in\nsufficient detail that a recipient will know whom to contact. If\nContributor obtains such knowledge after the Modification is made\navailable as described in Section 3.2, Contributor shall promptly\nmodify the LEGAL file in all copies Contributor makes available\nthereafter and shall take other steps (such as notifying appropriate\nmailing lists or newsgroups) reasonably calculated to inform those who\nreceived the Covered Code that new knowledge has been obtained.\n\n(b) Contributor APIs. If Contributor's Modifications include an\napplication programming interface and Contributor has knowledge of\npatent licenses which are reasonably necessary to implement that API,\nContributor must also include this information in the LEGAL file.\n \n(c) Representations. Contributor represents that, except as disclosed\npursuant to Section 3.4(a) above, Contributor believes that\nContributor's Modifications are Contributor's original creation(s)\nand/or Contributor has sufficient rights to grant the rights conveyed\nby this License.\n\n\n3.5. Required Notices. You must duplicate the notice in Exhibit A in\neach file of the Source Code. If it is not possible to put such\nnotice in a particular Source Code file due to its structure, then You\nmust include such notice in a location (such as a relevant directory)\nwhere a user would be likely to look for such a notice. If You\ncreated one or more Modification(s) You may add your name as a\nContributor to the notice described in Exhibit A. You must also\nduplicate this License in any documentation for the Source Code where\nYou describe recipients' rights or ownership rights relating to\nCovered Code. You may choose to offer, and to charge a fee for,\nwarranty, support, indemnity or liability obligations to one or more\nrecipients of Covered Code. However, You may do so only on Your own\nbehalf, and not on behalf of the Initial Developer or any\nContributor. You must make it absolutely clear than any such warranty,\nsupport, indemnity or liability obligation is offered by You alone,\nand You hereby agree to indemnify the Initial Developer and every\nContributor for any liability incurred by the Initial Developer or\nsuch Contributor as a result of warranty, support, indemnity or\nliability terms You offer.\n\n3.6. Distribution of Executable Versions. You may distribute Covered\nCode in Executable form only if the requirements of Section 3.1-3.5\nhave been met for that Covered Code, and if You include a notice\nstating that the Source Code version of the Covered Code is available\nunder the terms of this License, including a description of how and\nwhere You have fulfilled the obligations of Section 3.2. The notice\nmust be conspicuously included in any notice in an Executable version,\nrelated documentation or collateral in which You describe recipients'\nrights relating to the Covered Code. You may distribute the Executable\nversion of Covered Code or ownership rights under a license of Your\nchoice, which may contain terms different from this License, provided\nthat You are in compliance with the terms of this License and that the\nlicense for the Executable version does not attempt to limit or alter\nthe recipient's rights in the Source Code version from the rights set\nforth in this License. If You distribute the Executable version under\na different license You must make it absolutely clear that any terms\nwhich differ from this License are offered by You alone, not by the\nInitial Developer or any Contributor. You hereby agree to indemnify\nthe Initial Developer and every Contributor for any liability incurred\nby the Initial Developer or such Contributor as a result of any such\nterms You offer.\n\n3.7. Larger Works. You may create a Larger Work by combining Covered\nCode with other code not governed by the terms of this License and\ndistribute the Larger Work as a single product. In such a case, You\nmust make sure the requirements of this License are fulfilled for the\nCovered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to comply with any of the terms of this\nLicense with respect to some or all of the Covered Code due to\nstatute, judicial order, or regulation then You must: (a) comply with\nthe terms of this License to the maximum extent possible; and (b)\ndescribe the limitations and the code they affect. Such description\nmust be included in the LEGAL file described in Section 3.4 and must\nbe included with all distributions of the Source Code. Except to the\nextent prohibited by statute or regulation, such description must be\nsufficiently detailed for a recipient of ordinary skill to be able to\nunderstand it.\n\n5. Application of this License.\n\nThis License applies to code to which the Initial Developer has\nattached the notice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n\n6.1. New Versions. Thomas Richter may publish revised and/or new\nversions of the License from time to time. Each version will be given\na distinguishing version number.\n\n6.2. Effect of New Versions. Once Covered Code has been published\nunder a particular version of the License, You may always continue to\nuse it under the terms of that version. You may also choose to use\nsuch Covered Code under the terms of any subsequent version of the\nLicense published by Thomas Richter. No one other than Thomas Richter\nhas the right to modify the terms applicable to Covered Code created\nunder this License.\n\n6.3. Derivative Works. If You create or use a modified version of\nthis License (which you may only do in order to apply it to code which\nis not already Covered Code governed by this License), You must (a)\nrename Your license so that the phrases \"TPL\", \"THOR Software\",\n\"Thomas Richter\" or any confusingly similar phrase do not appear in\nyour license (except to note that your license differs from this\nLicense) and (b) otherwise make it clear that Your version of the\nlicense contains terms which differ from the THOR Public\nLicense. (Filling in the name of the Initial Developer, Original Code\nor Contributor in the notice described in Exhibit A shall not of\nthemselves be deemed to be modifications of this License.)\n\n7. DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS,\nWITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\nWITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF\nDEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR\nNON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF\nTHE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE\nIN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER\nCONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR\nCORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART\nOF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER\nEXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n\n8.1. This License and the rights granted hereunder will terminate\nautomatically if You fail to comply with terms herein and fail to cure\nsuch breach within 30 days of becoming aware of the breach. All\nsublicenses to the Covered Code which are properly granted shall\nsurvive any termination of this License. Provisions which, by their\nnature, must remain in effect beyond the termination of this License\nshall survive.\n\n8.2. If You initiate litigation by asserting a patent infringement\nclaim (excluding declatory judgment actions) against Initial Developer\nor a Contributor (the Initial Developer or Contributor against whom\nYou file such action is referred to as \"Participant\") alleging that:\n\n(a) such Participant's Contributor Version directly or indirectly\ninfringes any patent, then any and all rights granted by such\nParticipant to You under Sections 2.1 and/or 2.2 of this License\nshall, upon 60 days notice from Participant terminate prospectively,\nunless if within 60 days after receipt of notice You either: (i) agree\nin writing to pay Participant a mutually agreeable reasonable royalty\nfor Your past and future use of Modifications made by such\nParticipant, or (ii) withdraw Your litigation claim with respect to\nthe Contributor Version against such Participant. If within 60 days\nof notice, a reasonable royalty and payment arrangement are not\nmutually agreed upon in writing by the parties or the litigation claim\nis not withdrawn, the rights granted by Participant to You under\nSections 2.1 and/or 2.2 automatically terminate at the expiration of\nthe 60 day notice period specified above.\n\n(b) any software, hardware, or device, other than such Participant's\nContributor Version, directly or indirectly infringes any patent, then\nany rights granted to You by such Participant under Sections 2.1(b)\nand 2.2(b) are revoked effective as of the date You first made, used,\nsold, distributed, or had made, Modifications made by that\nParticipant.\n\n8.3. If You assert a patent infringement claim against Participant\nalleging that such Participant's Contributor Version directly or\nindirectly infringes any patent where such claim is resolved (such as\nby license or settlement) prior to the initiation of patent\ninfringement litigation, then the reasonable value of the licenses\ngranted by such Participant under Sections 2.1 or 2.2 shall be taken\ninto account in determining the amount or value of any payment or\nlicense.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all\nend user license agreements (excluding distributors and resellers)\nwhich have been validly granted by You or any distributor hereunder\nprior to termination shall survive termination.\n\n9. LIMITATION OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\n(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL\nDEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,\nOR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR\nANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY\nCHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,\nWORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\nCOMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\nINFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF\nLIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\nPROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE\nEXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO\nTHIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS.\n\nThe Covered Code is a \"commercial item,\" as that term is defined in 48\nC.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\"\nand \"commercial computer software documentation,\" as such terms are\nused in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48\nC.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),\nall U.S. Government End Users acquire Covered Code with only those\nrights set forth herein.\n\n11. MISCELLANEOUS.\n\nThis License represents the complete agreement concerning subject\nmatter hereof. If any provision of this License is held to be\nunenforceable, such provision shall be reformed only to the extent\nnecessary to make it enforceable. This License shall be governed by\nGerman law provisions (except to the extent applicable law, if any,\nprovides otherwise), excluding its conflict-of-law provisions. With\nrespect to disputes in which at least one party is a citizen of, or an\nentity chartered or registered to do business in Federal Republic of\nGermany, any litigation relating to this License shall be subject to\nthe jurisdiction of the Federal Courts of the Federal Republic of\nGermany, with the losing party responsible for costs, including\nwithout limitation, court costs and reasonable attorneys' fees and\nexpenses. Any law or regulation which provides that the language of a\ncontract shall be construed against the drafter shall not apply to\nthis License.\n\n12. RESPONSIBILITY FOR CLAIMS.\n\nAs between Initial Developer and the Contributors, each party is\nresponsible for claims and damages arising, directly or indirectly,\nout of its utilization of rights under this License and You agree to\nwork with Initial Developer and Contributors to distribute such\nresponsibility on an equitable basis. Nothing herein is intended or\nshall be deemed to constitute any admission of liability.\n\n13. MULTIPLE-LICENSED CODE.\n\nInitial Developer may designate portions of the Covered Code as\nMultiple-Licensed. Multiple-Licensed means that the Initial Developer\npermits you to utilize portions of the Covered Code under Your choice\nof the TPL or the alternative licenses, if any, specified by the\nInitial Developer in the file described in Exhibit A.\n\n\nEXHIBIT A - THOR Public License.\n\nThe contents of this file are subject to the THOR Public License\nVersion 1.0 (the \"License\"); you may not use this file except in\ncompliance with the License. \n\nSoftware distributed under the License is distributed on an \"AS IS\"\nbasis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See\nthe License for the specificlanguage governing rights and limitations\nunder the License.\n\nThe Original Code is ______________________________________.\n\nThe Initial Developer of the Original Code is _____________. \n\nPortions created by ______________________ are \nCopyright (C) ______ _______________________. \n\nAll Rights Reserved.\n\nContributor(s): ______________________________________.\n\nAlternatively, the contents of this file may be used under the terms\nof the _____ license (the [___] License), in which case the provisions\nof [______] License are applicable instead of those above. If you\nwish to allow use of your version of this file only under the terms of\nthe [____] License and not to allow others to use your version of this\nfile under the TPL, indicate your decision by deleting the provisions\nabove and replace them with the notice and other provisions required\nby the [___] License. If you do not delete the provisions above, a\nrecipient may use your version of this file under either the TPL or\nthe [___] License.\"\n\n[NOTE: The text of this Exhibit A may differ slightly from the text of\nthe notices in the Source Code files of the Original Code. You should\nuse the text of this Exhibit A rather than the text found in the\nOriginal Code Source Code for Your Modifications.]", + "json": "thor-pl.json", + "yaml": "thor-pl.yml", + "html": "thor-pl.html", + "license": "thor-pl.LICENSE" + }, + { + "license_key": "ti-broadband-apps", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ti-broadband-apps", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "1. License - Texas Instruments (hereinafter \"TI\"), grants you a license \nto use the software program and documentation in this package (\"Licensed \nMaterials\") for Texas Instruments broadband products. \n \n2. Restrictions - You may not reverse-assemble or reverse-compile the \nLicensed Materials provided in object code or executable format. You may\nnot sublicense, transfer, assign, rent, or lease the Licensed Materials \nor this Agreement without written permission from TI. \n \n3. Copyright - The Licensed Materials are copyrighted. Accordingly, you \nmay either make one copy of the Licensed Materials for backup and/or \narchival purposes or copy the Licensed Materials to another medium and \nkeep the original Licensed Materials for backup and/or archival purposes.\n \n4. Runtime and Applications Software - You may create modified or \nderivative programs of software identified as Runtime Libraries or \nApplications Software, which, in source code form, remain subject to this\nAgreement, but object code versions of such derivative programs are not \nsubject to this Agreement. \n \n5. Warranty - TI warrants the media to be free from defects in material \nand workmanship and that the software will substantially conform to the \nrelated documentation for a period of ninety (90) days after the date of \nyour purchase. TI does not warrant that the Licensed Materials will be \nfree from error or will meet your specific requirements. \n \n6. Remedies - If you find defects in the media or that the software does \nnot conform to the enclosed documentation, you may return the Licensed \nMaterials along with the purchase receipt, postage prepaid, to the \nfollowing address within the warranty period and receive a refund. \t\n \nTEXAS INSTRUMENTS \nApplication Specific Products, MS 8650 \nc/o ADAM2 Application Manager \n12500 TI Boulevard \nDallas, TX 75243 - U.S.A. \n \n7. Limitations - TI makes no warranty or condition, either expressed or \nimplied, including, but not limited to, any implied warranties of \nmerchantability and fitness for a particular purpose, regarding the \nlicensed materials. \n \nNeither TI nor any applicable licensor will be liable for any indirect, \nincidental or consequential damages, including but not limited to loss of\nprofits. \n \n8. Term - The license is effective until terminated. You may terminate \nit at any other time by destroying the program together with all copies, \nmodifications and merged portions in any form. It also will terminate if \nyou fail to comply with any term or condition of this Agreement. \n \n9. Export Control - The re-export of United States origin software and \ndocumentation is subject to the U.S. Export Administration Regulations or\nyour equivalent local regulations. Compliance with such regulations is \nyour responsibility. \n \n *** IMPORTANT NOTICE *** \n \nTexas Instruments (TI) reserves the right to make changes to or to \ndiscontinue any semiconductor product or service identified in this \npublication without notice. TI advises its customers to obtain the latest\nversion of the relevant information to verify, before placing orders, \nthat the information being relied upon is current. \n \nTI warrants performance of its semiconductor products and related \nsoftware to current specifications in accordance with TI's standard \nwarranty. Testing and other quality control techniques are utilized to \nthe extent TI deems necessary to support this warranty. Unless mandated \nby government requirements, specific testing of all parameters of each \ndevice is not necessarily performed. \n \nPlease be aware that Texas Instruments products are not intended for use \nin life-support appliances, devices, or systems. Use of a TI product in \nsuch applications without the written approval of the appropriate TI \nofficer is prohibited. Certain applications using semiconductor devices \nmay involve potential risks of injury, property damage, or loss of life. \nIn order to minimize these risks, adequate design and operating \nsafeguards should be provided by the customer to minimize inherent or \nprocedural hazards. Inclusion of TI products in such applications is \nunderstood to be fully at the risk of the customer using TI devices or \nsystems. \n \nTI assumes no liability for TI applications assistance, customer product \ndesign, software performance, or infringement of patents or services \ndescribed herein. Nor does TI warrant or represent that license, either \nexpressed or implied, is granted under any patent right, copyright, mask \nwork right, or other intellectual property right of TI covering or \nrelating to any combination, machine, or process in which such \nsemiconductor products or services might be or are used. \n \nAll company and/or product names are trademarks and/or registered \ntrademarks of their respective manaufacturers.", + "json": "ti-broadband-apps.json", + "yaml": "ti-broadband-apps.yml", + "html": "ti-broadband-apps.html", + "license": "ti-broadband-apps.LICENSE" + }, + { + "license_key": "ti-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ti-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Limited License.\n\nTexas Instruments Incorporated grants a world-wide, royalty-free, non-exclusive\nlicense under copyrights and patents it now or hereafter owns or controls to\nmake, have made, use, import, offer to sell and sell (\"Utilize\") this software\nsubject to the terms herein. With respect to the foregoing patent license,\nsuch license is granted solely to the extent that any such patent is necessary\nto Utilize the software alone. The patent license shall not apply to any\ncombinations which include this software, other than combinations with devices\nmanufactured by or for TI (\u201cTI Devices\u201d). No hardware patent is licensed\nhereunder.\n\nRedistributions must preserve existing copyright notices and reproduce this\nlicense (including the above copyright notice and the disclaimer and (if\napplicable) source code license limitations below) in the documentation and/or\nother materials provided with the distribution\n\nRedistribution and use in binary form, without modification, are permitted\nprovided that the following conditions are met:\n\n*\tNo reverse engineering, decompilation, or disassembly of this software\n\tis permitted with respect to any software provided in binary form.\n\n*\tany redistribution and use are licensed by TI for use only with TI\n\tDevices.\n\n*\tNothing shall obligate TI to provide you with source code for the\n\tsoftware licensed and provided to you in object code.\n\nIf software source code is provided to you, modification and redistribution of\nthe source code are permitted provided that the following conditions are met:\n\n*\tany redistribution and use of the source code, including any resulting\n\tderivative works, are licensed by TI for use only with TI Devices.\n\n*\tany redistribution and use of any object code compiled from the source\n\tcode and any resulting derivative works, are licensed by TI for use\n\tonly with TI Devices.\n\nNeither the name of Texas Instruments Incorporated nor the names of its\nsuppliers may be used to endorse or promote products derived from this software\nwithout specific prior written permission.\n\nDISCLAIMER.\n\nTHIS SOFTWARE IS PROVIDED BY TI AND TI\u2019S LICENSORS \"AS IS\" AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO\nEVENT SHALL TI AND TI\u2019S LICENSORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "ti-linux-firmware.json", + "yaml": "ti-linux-firmware.yml", + "html": "ti-linux-firmware.html", + "license": "ti-linux-firmware.LICENSE" + }, + { + "license_key": "ti-restricted", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ti-restricted", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted to licensees of Texas Instruments\nIncorporated (TI) products to use this computer program for the sole\npurpose of implementing a licensee product based on TI products.\nNo other rights to reproduce, use, or disseminate this computer \nprogram, whether in part or in whole, are granted.\n\nTI makes no representation or warranties with respect to the\nperformance of this computer program, and specifically disclaims\nany responsibility for any damages, special or consequential, \nconnected with the use of this program.", + "json": "ti-restricted.json", + "yaml": "ti-restricted.yml", + "html": "ti-restricted.html", + "license": "ti-restricted.LICENSE" + }, + { + "license_key": "tidy", + "category": "Permissive", + "spdx_license_key": "HTMLTIDY", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The contributing author(s) would like to thank all those who helped with testing,\nbug fixes and suggestions for improvements. This wouldn't have been possible without your help.\n\nCOPYRIGHT NOTICE:\n\nThis software and documentation is provided \"as is,\" and the copyright holders\nand contributing author(s) make no representations or warranties, express or\nimplied, including but not limited to, warranties of merchantability or fitness\nfor any particular purpose or that the use of the software or documentation will\nnot infringe any third party patents, copyrights, trademarks or other rights.\n\nThe copyright holders and contributing author(s) will not be held liable for any\ndirect, indirect, special or consequential damages arising out of any use of the\nsoftware or documentation, even if advised of the possibility of such damage.\nPermission is hereby granted to use, copy, modify, and distribute this source\ncode, or portions hereof, documentation and executables, for any purpose,\nwithout fee, subject to the following restrictions:\n\n1. The origin of this source code must not be misrepresented. \n\n2. Altered versions must be plainly marked as such and must\nnot be misrepresented as being the original source. \n\n3. This Copyright notice may not be removed or altered from any\nsource or altered source distribution.\n\nThe copyright holders and contributing author(s) specifically permit, without\nfee, and encourage the use of this source code as a component for supporting the\nHypertext Markup Language in commercial products. If you use this source code in\na product, acknowledgment is not required but would be appreciated.", + "json": "tidy.json", + "yaml": "tidy.yml", + "html": "tidy.html", + "license": "tidy.LICENSE" + }, + { + "license_key": "tiger-crypto", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tiger-crypto", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Tiger Cryptography\n\nThis code comes from the reference implementation of the Tiger cryptographic hash function. The only modification made is to pull out the data types and the api into a header file (this file, tiger.h). The reference implementation is available at:\n\nhttp://www.cs.technion.ac.il/~biham/Reports/Tiger/\n\nFrom that page: \nTiger has no usage restrictions nor patents. It can be used freely, with the reference implementation, with other implementations or with a modification to the reference implementation (as long as it still implements Tiger). We only ask you to let us know about your implementation and to cite the origin of Tiger and of the reference implementation.", + "json": "tiger-crypto.json", + "yaml": "tiger-crypto.yml", + "html": "tiger-crypto.html", + "license": "tiger-crypto.LICENSE" + }, + { + "license_key": "tigra-calendar-3.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tigra-calendar-3.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Tigra Calendar v3.2 License \n\nPermission given to use this script in ANY kind of applications if header lines are left unchanged.", + "json": "tigra-calendar-3.2.json", + "yaml": "tigra-calendar-3.2.yml", + "html": "tigra-calendar-3.2.html", + "license": "tigra-calendar-3.2.LICENSE" + }, + { + "license_key": "tigra-calendar-4.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tigra-calendar-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Tigra Calendar v4.0 License \nhttp://www.javascript-calendar.com/docs/#license\n\nPermission 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\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "tigra-calendar-4.0.json", + "yaml": "tigra-calendar-4.0.yml", + "html": "tigra-calendar-4.0.html", + "license": "tigra-calendar-4.0.LICENSE" + }, + { + "license_key": "tim-janik-2003", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tim-janik-2003", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software is provided \"as is\"; redistribution and modification\nis permitted, provided that the following disclaimer is retained.\n\nThis software is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\nIn no event shall the authors or contributors be liable for any\ndirect, indirect, incidental, special, exemplary, or consequential\ndamages (including, but not limited to, procurement of substitute\ngoods or services; loss of use, data, or profits; or business\ninterruption) however caused and on any theory of liability, whether\nin contract, strict liability, or tort (including negligence or\notherwise) arising in any way out of the use of this software, even\nif advised of the possibility of such damage.", + "json": "tim-janik-2003.json", + "yaml": "tim-janik-2003.yml", + "html": "tim-janik-2003.html", + "license": "tim-janik-2003.LICENSE" + }, + { + "license_key": "timestamp-picker", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-timestamp-picker", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission given to use this script in any kind of applications if header lines\nare left unchanged. Feel free to contact the author for feature requests and/or\ndonations.", + "json": "timestamp-picker.json", + "yaml": "timestamp-picker.yml", + "html": "timestamp-picker.html", + "license": "timestamp-picker.LICENSE" + }, + { + "license_key": "tizen-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-tizen-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Tizen SDK License Agreement\nTIZEN SOFTWARE DEVELOPMENT KIT (\"SDK\") LICENSE AGREEMENT\n\nBEFORE YOU (\"YOU\" OR \"LICENSEE\") USE THE TIZEN SDK, PLEASE READ ALL OF THE TERMS AND CONDITIONS SET OUT IN THIS TIZEN SOFTWARE DEVELOPMENT KIT LICENSE AGREEMENT (\"AGREEMENT\") CAREFULLY. YOUR USE OF THE TIZEN SDK IS SUBJECT TO THE TERMS AND CONDITIONS SET FORTH IN THIS AGREEMENT. BY CLICKING THE \"I AGREE\" BUTTON OR BY USING ANY PART OF THE TIZEN SDK, YOU AGREE (ON BEHALF OF YOURSELF AND/OR YOUR COMPANY) TO THE TERMS AND CONDITIONS OF THIS AGREEMENT, WHICH THEN COMMENCES WITH EFFECT AS A LEGAL AGREEMENT BETWEEN YOU AND SAMSUNG. IF YOU DO NOT OR CANNOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT, YOU MUST NOT DOWNLOAD OR USE THE TIZEN SDK.\n\nIMPORTANT NOTE: This license is primarily applicable to several proprietary components, which are not open sourced. If applicable, the Open Source Software license shall take precedence over the rights and restrictions granted in this Agreement, but solely with respect to such Open Source Software.\n\n1. Definitions.\n\n1.1 \"Affiliate\" means an entity that, directly or indirectly, controls, is controlled by, or is under common control with a party to this Agreement, but only for so long as such control exists, and where \"control\" shall mean ownership of more than 50% of the stock or other equity interests entitled to vote for the election of directors or an equivalent governing body.\n\n1.2 \"Open Source Software\" includes, without limitation, a software license that requires as a condition of use, modification, and/or distribution of such software that such software or other software incorporated into, derived from or distributed with such software be (a) disclosed or distributed in source code form; (b) be licensed for the purpose of making derivative works; or (c) be redistributable at no charge.\n\n1.3 \"Tizen SDK\" includes the documentation, software, both source code and object code, sample applications, emulator, tools, libraries, APIs, data, and materials provided by Samsung to You for use in connection with Your application development, and includes any updates that may be provided by Samsung.\n\n1.4 \"Tizen Certified Platform\" shall mean a software platform that complies with the standards set forth in the Tizen Compliance Specification and passes the Tizen Compliance Tests as defined from time to time by the Tizen Technical Steering Group and certified by the Tizen Association or its designated agent.\n\n1.5 \"Tizen Applications\" means all applications that are developed by using the Tizen SDK with or without extensions and can run only on the Tizen Certified Platform.\n\n1.6 \"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n2. License Grant.\n\n2.1 Subject to the terms and conditions of this Agreement, Samsung hereby grants to You a royalty-free, non-exclusive, non-transferable and worldwide license to use for the sole purpose of the development of Tizen Applications.\n\n3. Restrictions.\n\n3.1 Except for the limited license granted to You herein, You agree that all right, title and interest in and to the Tizen SDK including the concepts and technology inherent in them, Samsung or Tizen trademarks, copyrights, patents, trade secrets and other intellectual property rights, are, and at all times shall remain, the sole and exclusive property of Samsung. Except to the extent permitted under this Agreement or by applicable law, You shall not (i) modify, reverse engineer or disassemble any portion of the Tizen SDK; (ii) lease, rent, copy, redistribute or sublicense the Tizen SDK to third party; or (iii) remove, efface or obscure any copyright notices, logos or other proprietary notices or legends included in the Tizen SDK. You may not use any component part of the Tizen SDK in any way independent from the Tizen SDK. You may not load or install any of the Tizen SDK onto mobile phones or any other devices, except a personal computer.\n\n3.2 Samsung may extend, enhance, or otherwise modify the Tizen SDK at any time without notice. If updates are made available by Samsung, the terms of this Agreement will govern such updates, unless the update is accompanied by a separate license, in which case the terms of that license will govern. Samsung is not obligated to provide any maintenance, technical or other support for the Tizen SDK. You acknowledge that Samsung has no express or implied obligation to announce or make available any updates to the Tizen SDK.\n\n4. Use of the Tizen SDK. \n\n4.1 Your Applications must not (i) breach any applicable laws, regulations or generally accepted practices or guidelines in the applicable jurisdictions; (ii) contain any material, component or code which could damage, destroy, unduly burden or unreasonably affect software, firmware, hardware, data, systems, services, or networks; or (iii) disable, hack or otherwise interfere with any authentication, content protection, digital signing, digital rights management, security or verification mechanisms implemented in or by the Tizen Certified platform.\n\n4.2 Your Applications must not breach any applicable laws, regulations or generally accepted practices or guidelines in the applicable jurisdictions or disable, unduly burden or unreasonably interfere with software, firmware, hardware, data, systems, services, or networks. \n\n4.3 You agree that You are solely liable for any breach of your obligations under this Agreement or any applicable laws or regulations, and for the consequences of any such breach.\n\n5. Open Source Software.\n\n5.1 You hereby acknowledge that the Tizen SDK may contain Open Source Software. You agree to review any documentation that accompanies the Tizen SDK in order to determine which portions of the Tizen SDK are Open Source Software and are licensed under an Open Source Software license. To the extent any such license requires that Samsung provides Developer the rights to copy, modify, distribute or otherwise use any Open Source Software that are inconsistent with the limited rights granted to You in this Agreement, then such rights in the applicable Open Source Software license shall take precedence over the rights and restrictions granted in this Agreement, but solely with respect to such Open Source Software. \n\n5.2 You acknowledge that the Open Source Software license is solely between You and the applicable Open Source Software. You shall comply with the terms of all applicable Open Source Software licenses, if any.\n\n6. DISCLAIMER OF WARRANTY.\n\n6.1 THE TIZEN SDK IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. SAMSUNG OR TIZEN PARTNERS DO NOT WARRANT THAT THE USE OF THE TIZEN SDK WILL NOT INFRINGE ANY THIRD PARTY'S INTELLECTUAL PROPERTY RIGHTS. NEITHER SAMSUNG NOR TIZEN PARTNERS WARRANT THAT THE TIZEN SDK IS ERROR FREE. SAMSUNG OR TIZEN PARTNERS MAKE NO WARRANTIES, EXPRESS OR IMPLIED, WITH RESPECT TO THE TIZEN SDK, INCLUDING BUT NOT LIMITED TO ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE OR AGAINST INFRINGEMENT, OR ANY EXPRESS OR IMPLIED WARRANTY ARISING OUT OF TRADE USAGE OR OUT OF A COURSE OF DEALING OR COURSE OF PERFORMANCE. NO INFORMATION OR ADVICE GIVEN BY SAMSUNG OR ITS AGENTS, EMPLOYEES, OR REPRESENTATIVES, WHETHER ORAL OR WRITTEN, SHALL CREATE ANY REPRESENTATION OR WARRANTY.\n\n6.2 TO THE EXTENT PERMITTED BY LAW, IN NO EVENT SHALL SAMSUNG OR TIZEN PARTNERS BE LIABLE FOR PERSONAL INJURY OR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER, OR FOR LOSS OF PROFITS, LOSS OF DATA, BUSINESS INTERRUPTION, OR FOR ANY PECUNIARY DAMAGES OR LOSSES, ARISING OUT OF OR RELATED TO YOUR GRANT OF LICENSE HEREIN, OR INABILITY TO USE THE TIZEN SDK, THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT OR OTHER SERVICES, INFORMATION, SOFTWARE, AND RELATED CONTENT THROUGH THE SOFTWARE OR OTHERWISE ARISING OUT OF THE USE OF THE TIZEN SDK, OR OTHERWISE UNDER OR IN CONNECTION WITH ANY PROVISION OF THIS AGREEMENT, HOWEVER CAUSED, REGARDLESS OF THE THEORY OF LIABILITY (CONTRACT, TORT OR OTHERWISE) AND EVEN IF THE SAMSUNG BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Indemnification.\n\n7.1 You agree to indemnify, defend and hold harmless Samsung, including their Affiliates, from any claims, damages, liabilities, losses, costs, suits or expenditures incurred by Samsung, including their Affiliates as a result of any infringement or alleged infringement of intellectual property rights of a third party caused by Your development or exploitation of Applications.\n\n8. Confidentiality.\n\n8.1 You acknowledge and agree that the Tizen SDK was developed at considerable time and expense by Samsung and contains valuable trade secrets and confidential information of Samsung. Accordingly, You agree to maintain the Tizen SDK in confidence and except as expressly provided in Section 2, You (i) will not disclose or provide access thereto to any person, or (ii) use the Tizen SDK for any purpose not expressly authorized hereby, or permit or authorize any other person to do so.\n\n8.2 The restriction herein shall not apply to the extent that such information is in the public domain or hereafter falls into the public domain through no fault of You. Any combination of trade secrets and information of Samsung that forms part of the Tizen SDK shall not be deemed to be public merely because individual parts of the Tizen SDK are in the public domain, unless the combination itself is in the public domain.\n\n9. Term and Termination.\n\n9.1 Term. The term of this Agreement shall commence as of your acceptance of the terms of this Agreement or your use of the Tizen SDK and continue until terminated by either You or Samsung.\n\n9.2 Termination. You may terminate this Agreement simply by ceasing Your use of the Tizen SDK. Samsung may terminate this Agreement (i) at any time for any or no reason upon 30 days prior written notice to you or (ii) immediately upon written notice to You if You have materially breached this Agreement.\n\n9.3 Effect of Termination. Upon termination of this Agreement: (a) all license rights granted in this Agreement will terminate; (b) You shall promptly stop the distribution of the Tizen SDK and destroy all electronic copies of the Tizen SDK and/or return the Tizen SDK to Samsung. The Sections entitled Restrictions, Use of the Tizen SDK, Open Source Software, Disclaimer of Warranty, Indemnification, Confidentiality, Term and Termination and General Legal Terms shall survive the expiration or termination of this Agreement for any reason.\n\n10. General Legal Terms.\n\n10.1 Export Compliance. You are responsible for applying for and obtaining all export and import licenses and/or authorizations related to the Tizen SDK or Applications, including without limitation all such licenses and authorizations required by any and all governmental bodies and/or regulatory agency.\n\n10.2 Assignment. You may not assign the Agreement, in whole or in part, by operation of law or otherwise, without Samsung\u2019s prior written consent, and any attempt to do so without such consent shall be void.\n\n10.3 Governing Law; Venue. This Agreement shall be governed by and construed in accordance with the laws of the State of New York, USA, without regard to any conflict-of-laws rules. Any and all disputes in connection with or arising out of this Agreement shall be finally settled by arbitration. The arbitration shall be held in New York City, New York, USA in accordance with the Rules of Arbitration of the International Chamber of Commerce by one or more arbitrator(s) appointed in accordance with the said rules. The arbitration award rendered by the arbitrator(s) shall be final and binding.\n\n10.4 Amendments and No Waiver. This Agreement may be modified without notice. The failure by Samsung or You to insist upon strict performance of any of the provisions contained in this Agreement shall in no way constitute a waiver of its rights as set forth in this Agreement, at law or in equity, or a waiver of any other provisions or subsequent default by the other party in the performance or compliance with any of the terms and conditions set forth in this Agreement.\n\n10.5 Entire Agreement. This Agreement contains the entire agreement of You and Samsung with respect to its subject matter and supersedes all existing agreements and all other oral, written or other communications between the You and Samsung concerning this subject matter. If any of the provisions of the Agreement is determined to be invalid, illegal or otherwise unenforceable, such provision shall be deemed replaced by a provision which carries out the original intent and purpose of such provision to the greatest extent lawful and the remaining provisions shall remain in full force and effect.\n\nLast Updated April, 2013\n\nEND OF TIZEN SOFTWARE DEVELOPMENT KIT(\"SDK\") LICENSE AGREEMENT", + "json": "tizen-sdk.json", + "yaml": "tizen-sdk.yml", + "html": "tizen-sdk.html", + "license": "tizen-sdk.LICENSE" + }, + { + "license_key": "tmate", + "category": "Copyleft", + "spdx_license_key": "TMate", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This license applies to all portions of TMate SVNKit library, which \nare not externally-maintained libraries (e.g. Ganymed SSH library).\n\nAll the source code and compiled classes in package org.tigris.subversion.javahl\nexcept SvnClient class are covered by the license in JAVAHL-LICENSE file\n\nCopyright (c) 2004-2009 TMate Software. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, \nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice, \n this list of conditions and the following disclaimer.\n \n * Redistributions in binary form must reproduce the above copyright notice, \n this list of conditions and the following disclaimer in the documentation \n and/or other materials provided with the distribution.\n \n * Redistributions in any form must be accompanied by information on how to \n obtain complete source code for the software that uses SVNKit and any \n accompanying software that uses the software that uses SVNKit. The source \n code must either be included in the distribution or be available for no \n more than the cost of distribution plus a nominal fee, and must be freely \n redistributable under reasonable conditions. For an executable file, complete \n source code means the source code for all modules it contains. It does not \n include source code for modules or files that typically accompany the major \n components of the operating system on which the executable file runs.\n \n * Redistribution in any form without redistributing source code for software \n that uses SVNKit is possible only when such redistribution is explictly permitted \n by TMate Software. Please, contact TMate Software at support@svnkit.com to \n get such permission.\n\nTHIS SOFTWARE IS PROVIDED BY TMATE SOFTWARE ``AS IS'' AND ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF \nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE \nDISCLAIMED. \n\nIN NO EVENT SHALL TMATE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT \nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR \nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF \nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE \nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF \nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "tmate.json", + "yaml": "tmate.yml", + "html": "tmate.html", + "license": "tmate.LICENSE" + }, + { + "license_key": "torque-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "TORQUE-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "TORQUE v2.5+ Software License v1.1\nCopyright (c) 2010-2011 Adaptive Computing Enterprises, Inc. All rights reserved.\n\nUse this license to use or redistribute the TORQUE software v2.5+ and later versions. For free support for TORQUE users, questions should be emailed to the community of TORQUE users at torqueusers@supercluster.org. Users can also subscribe to the user mailing list at http://www.supercluster.org/mailman/listinfo/torqueusers. Customers using TORQUE that also are licensed users of Moab branded software from Adaptive Computing Inc. can get TORQUE support from Adaptive Computing via:\nEmail: torque-support@adaptivecomputing.com.\nPhone: (801) 717-3700\nWeb: www.adaptivecomputing.com www.clusterresources.com\n\nThis license covers use of the TORQUE v2.5 software (the \"Software\") at your site or location, and, for certain users, redistribution of the Software to other sites and locations1. Later versions of TORQUE are also covered by this license. Use and redistribution of TORQUE v2.5 in source and binary forms, with or without modification, are permitted provided that all of the following conditions are met.\n\n1. Any Redistribution of source code must retain the above copyright notice and the acknowledgment contained in paragraph 5, this list of conditions and the disclaimer contained in paragraph 5.\n\n2. Any Redistribution in binary form must reproduce the above copyright notice and the acknowledgment contained in paragraph 4, this list of conditions and the disclaimer contained in paragraph 5 in the documentation and/or other materials provided with the distribution.\n\n3. Redistributions in any form must be accompanied by information on how to obtain complete source code for TORQUE and any modifications and/or additions to TORQUE. 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 all modifications and additions to the Software must be freely redistributable by any party (including Licensor) without restriction.\n\n4. All advertising materials mentioning features or use of the Software must display the following acknowledgment:\n\"TORQUE is a modification of OpenPBS which was developed by NASA Ames Research Center, Lawrence Livermore National Laboratory, and Veridian TORQUE Open Source License v1.1. 1 Information Solutions, Inc. Visit www.clusterresources.com/products/ for more information about TORQUE and to download TORQUE. For information about Moab branded products and so receive support from Adaptive Computing for TORQUE, see www.adaptivecomputing.com.\"\n\n5. DISCLAIMER OF WARRANTY THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT ARE EXPRESSLY DISCLAIMED. IN NO EVENT SHALL ADAPTIVE COMPUTING ENTERPRISES, INC. CORPORATION, ITS AFFILIATED COMPANIES, OR THE U.S. GOVERNMENT OR ANY OF ITS AGENCIES BE LIABLE FOR ANY DIRECT OR 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.\n\nThis license will be governed by the laws of Utah, without reference to its choice of law rules.\n\nNote 1: TORQUE is developed from an earlier version v2.3 of OpenPBS. TORQUE has been developed beyond OpenPBS v2.3. The OpenPBS v2.3 license and OpenPBS software can be obtained at:\nhttp://www.pbsworks.com/ResLibSearchResult.aspx?keywords=openpbs&industry=All&pro duct_service=All&category=Free%20Software%20Downloads&order_by=title. Users of TORQUE should comply with the TORQUE license as well as the OpenPBS license.", + "json": "torque-1.1.json", + "yaml": "torque-1.1.yml", + "html": "torque-1.1.html", + "license": "torque-1.1.LICENSE" + }, + { + "license_key": "tosl", + "category": "Copyleft", + "spdx_license_key": "TOSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Trusster Open Source License version 1.0a (TRUST) \ncopyright (c) 2006 Mike Mintz and Robert Ekendahl. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\n* Redistributions in any form must be accompanied by information on how to\nobtain complete source code for this software and any accompanying software that\nuses this software. The source code must either be included in the distribution\nor be available in a timely fashion for no more than the cost of distribution\nplus a nominal fee, and must be freely redistributable under reasonable and no\nmore restrictive conditions. For an executable file, complete source code means\nthe source code for all modules it contains. It does not include source code for\nmodules or files that typically accompany the major components of the operating\nsystem on which the executable file runs.\n\nTHIS SOFTWARE IS PROVIDED BY MIKE MINTZ AND ROBERT EKENDAHL ``AS IS'' AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\nNON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL MIKE MINTZ AND ROBERT\nEKENDAHL OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, \nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, \nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR \nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN \nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING \nIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY \nOF SUCH DAMAGE.", + "json": "tosl.json", + "yaml": "tosl.yml", + "html": "tosl.html", + "license": "tosl.LICENSE" + }, + { + "license_key": "tpl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-tpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Terracotta Public License (version 1.0)\n\n1. Definitions\n\n1.1. \"Contributor\" means each individual or entity that creates or contributes to the creation of Modifications.\n\n1.2. \"Contributor Version\" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor.\n\n1.3. \"Covered Code\" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof.\n\n1.4. \"Electronic Distribution Mechanism\" means a mechanism generally accepted in the software development community for the electronic transfer of data.\n\n1.5. \"Executable\" means Covered Code in any form other than Source Code.\n\n1.6. \"Initial Developer\" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A.\n\n1.7. \"Larger Work\" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License.\n\n1.8. \"License\" means this document.\n\n1.8.1. \"Licensable\" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein.\n\n1.9. \"Modifications\" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is:\n\na. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications.\n\nb. Any new file that contains any part of the Original Code or previous Modifications.\n\nc. Any new file that is contributed or otherwise made available under the terms of this License.\n\n1.10. \"Original Code\" means Source Code and Executable form of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License.\n\n1.10.1. \"Patent Claims\" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor.\n\n1.11. \"Source Code\" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge.\n\n1.12. \"You\" (or \"Your\") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, \"You\" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, \"control\" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2. Source Code License\n\n2.1. The Initial Developer Grant\n\nTHE INITIAL DEVELOPER HEREBY GRANTS YOU A WORLD-WIDE, ROYALTY-FREE, NON-EXCLUSIVE LICENSE, SUBJECT TO THIRD PARTY INTELLECTUAL PROPERTY CLAIMS:\n\na. under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and\n\nb. under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof).\n\nc. the licenses granted in this Section 2.1 (a) and (b) are effective on the date Initial Developer first distributes or otherwise makes available Original Code under the terms of this License.\n\nd. Notwithstanding Section 2.1 (b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices.\n\n2.2. Contributor Grant\n\nSUBJECT TO THIRD PARTY INTELLECTUAL PROPERTY CLAIMS, EACH CONTRIBUTOR HEREBY GRANTS YOU AND INITIAL DEVELOPER A WORLD-WIDE, ROYALTY-FREE, NON-EXCLUSIVE LICENSE:\n\na. under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and\n\nb. under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination).\n\nc. the licenses granted in Sections 2.2 (a) and 2.2 (b) are effective on the date Contributor first distributes or otherwise makes available the Covered Code.\n\nd. Notwithstanding Section 2.2 (b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor.\n\n3. Distribution Obligations\n\n3.1. Application of License\n\nANY COVERED CODE THAT YOU DISTRIBUTE OR OTHERWISE MAKE AVAILABLE IS GOVERNED BY THE TERMS OF THIS LICENSE, INCLUDING WITHOUT LIMITATION SECTION 2.2. THE SOURCE CODE VERSION OF COVERED CODE MAY BE DISTRIBUTED ONLY UNDER THE TERMS OF THIS LICENSE OR A FUTURE VERSION OF THIS LICENSE RELEASED UNDER SECTION 6.1, AND YOU MUST INCLUDE A COPY OF THIS LICENSE WITH EVERY COPY OF THE SOURCE CODE YOU DISTRIBUTE OR OTHERWISE MAKE AVAILABLE. YOU MAY NOT OFFER OR IMPOSE ANY TERMS ON ANY SOURCE CODE VERSION THAT ALTERS OR RESTRICTS THE APPLICABLE VERSION OF THIS LICENSE OR THE RECIPIENTS' RIGHTS HEREUNDER. HOWEVER, YOU MAY INCLUDE AN ADDITIONAL DOCUMENT OFFERING THE ADDITIONAL RIGHTS DESCRIBED IN SECTION 3.5.\n\n3.2. Availability of Source Code\n\nANY MODIFICATION WHICH YOU CREATE OR TO WHICH YOU CONTRIBUTE MUST BE MADE AVAILABLE IN SOURCE CODE FORM UNDER THE TERMS OF THIS LICENSE EITHER ON THE SAME MEDIA AS AN EXECUTABLE VERSION OR VIA AN ACCEPTED ELECTRONIC DISTRIBUTION MECHANISM TO ANYONE TO WHOM YOU MADE AN EXECUTABLE VERSION AVAILABLE; AND IF MADE AVAILABLE VIA ELECTRONIC DISTRIBUTION MECHANISM, MUST REMAIN AVAILABLE FOR AT LEAST TWELVE (12) MONTHS AFTER THE DATE IT INITIALLY BECAME AVAILABLE, OR AT LEAST SIX (6) MONTHS AFTER A SUBSEQUENT VERSION OF THAT PARTICULAR MODIFICATION HAS BEEN MADE AVAILABLE TO SUCH RECIPIENTS. YOU ARE RESPONSIBLE FOR ENSURING THAT THE SOURCE CODE VERSION REMAINS AVAILABLE EVEN IF THE ELECTRONIC DISTRIBUTION MECHANISM IS MAINTAINED BY A THIRD PARTY.\n\n3.3. Description of Modifications\n\nYOU MUST CAUSE ALL COVERED CODE TO WHICH YOU CONTRIBUTE TO CONTAIN A FILE DOCUMENTING THE CHANGES YOU MADE TO CREATE THAT COVERED CODE AND THE DATE OF ANY CHANGE. YOU MUST INCLUDE A PROMINENT STATEMENT THAT THE MODIFICATION IS DERIVED, DIRECTLY OR INDIRECTLY, FROM ORIGINAL CODE PROVIDED BY THE INITIAL DEVELOPER AND INCLUDING THE NAME OF THE INITIAL DEVELOPER IN (A) THE SOURCE CODE, AND (B) IN ANY NOTICE IN AN EXECUTABLE VERSION OR RELATED DOCUMENTATION IN WHICH YOU DESCRIBE THE ORIGIN OR OWNERSHIP OF THE COVERED CODE.\n\n3.4. Intellectual Property Matters\n\n(a) Third Party Claims\n\nIF CONTRIBUTOR HAS KNOWLEDGE THAT A LICENSE UNDER A THIRD PARTY'S INTELLECTUAL PROPERTY RIGHTS IS REQUIRED TO EXERCISE THE RIGHTS GRANTED BY SUCH CONTRIBUTOR UNDER SECTIONS 2.1 OR 2.2, CONTRIBUTOR MUST INCLUDE A TEXT FILE WITH THE SOURCE CODE DISTRIBUTION TITLED \"LEGAL\" WHICH DESCRIBES THE CLAIM AND THE PARTY MAKING THE CLAIM IN SUFFICIENT DETAIL THAT A RECIPIENT WILL KNOW WHOM TO CONTACT. IF CONTRIBUTOR OBTAINS SUCH KNOWLEDGE AFTER THE MODIFICATION IS MADE AVAILABLE AS DESCRIBED IN SECTION 3.2, CONTRIBUTOR SHALL PROMPTLY MODIFY THE LEGAL FILE IN ALL COPIES CONTRIBUTOR MAKES AVAILABLE THEREAFTER AND SHALL TAKE OTHER STEPS (SUCH AS NOTIFYING APPROPRIATE MAILING LISTS OR NEWSGROUPS) REASONABLY CALCULATED TO INFORM THOSE WHO RECEIVED THE COVERED CODE THAT NEW KNOWLEDGE HAS BEEN OBTAINED.\n\n(b) Contributor APIs\n\nIF CONTRIBUTOR'S MODIFICATIONS INCLUDE AN APPLICATION PROGRAMMING INTERFACE AND CONTRIBUTOR HAS KNOWLEDGE OF PATENT LICENSES WHICH ARE REASONABLY NECESSARY TO IMPLEMENT THAT API, CONTRIBUTOR MUST ALSO INCLUDE THIS INFORMATION IN THE LEGAL FILE.\n\n(c) Representations.\n\nCONTRIBUTOR REPRESENTS THAT, EXCEPT AS DISCLOSED PURSUANT TO SECTION 3.4 (A) ABOVE, CONTRIBUTOR BELIEVES THAT CONTRIBUTOR'S MODIFICATIONS ARE CONTRIBUTOR'S ORIGINAL CREATION(S) AND/OR CONTRIBUTOR HAS SUFFICIENT RIGHTS TO GRANT THE RIGHTS CONVEYED BY THIS LICENSE.\n\n3.5. Required Notices\n\nYOU MUST DUPLICATE THE NOTICE IN EXHIBIT A IN EACH FILE OF THE SOURCE CODE. IF IT IS NOT POSSIBLE TO PUT SUCH NOTICE IN A PARTICULAR SOURCE CODE FILE DUE TO ITS STRUCTURE, THEN YOU MUST INCLUDE SUCH NOTICE IN A LOCATION (SUCH AS A RELEVANT DIRECTORY) WHERE A USER WOULD BE LIKELY TO LOOK FOR SUCH A NOTICE. IF YOU CREATED ONE OR MORE MODIFICATION(S) YOU MAY ADD YOUR NAME AS A CONTRIBUTOR TO THE NOTICE DESCRIBED IN EXHIBIT A. YOU MUST ALSO DUPLICATE THIS LICENSE IN ANY DOCUMENTATION FOR THE SOURCE CODE WHERE YOU DESCRIBE RECIPIENTS' RIGHTS OR OWNERSHIP RIGHTS RELATING TO COVERED CODE. YOU MAY CHOOSE TO OFFER, AND TO CHARGE A FEE FOR, WARRANTY, SUPPORT, INDEMNITY OR LIABILITY OBLIGATIONS TO ONE OR MORE RECIPIENTS OF COVERED CODE. HOWEVER, YOU MAY DO SO ONLY ON YOUR OWN BEHALF, AND NOT ON BEHALF OF THE INITIAL DEVELOPER OR ANY CONTRIBUTOR. YOU MUST MAKE IT ABSOLUTELY CLEAR THAN ANY SUCH WARRANTY, SUPPORT, INDEMNITY OR LIABILITY OBLIGATION IS OFFERED BY YOU ALONE, AND YOU HEREBY AGREE TO INDEMNIFY THE INITIAL DEVELOPER AND EVERY CONTRIBUTOR FOR ANY LIABILITY INCURRED BY THE INITIAL DEVELOPER OR SUCH CONTRIBUTOR AS A RESULT OF WARRANTY, SUPPORT, INDEMNITY OR LIABILITY TERMS YOU OFFER.\n\n3.6. Distribution of Executable Versions\n\nYOU MAY DISTRIBUTE OR OTHERWISE MAKE AVAILABLE COVERED CODE IN EXECUTABLE FORM ONLY IF THE REQUIREMENTS OF SECTIONS 3.1, 3.2, 3.3, 3.4 AND 3.5 HAVE BEEN MET FOR THAT COVERED CODE, AND IF YOU INCLUDE A NOTICE STATING THAT THE SOURCE CODE VERSION OF THE COVERED CODE IS AVAILABLE UNDER THE TERMS OF THIS LICENSE, INCLUDING A DESCRIPTION OF HOW AND WHERE YOU HAVE FULFILLED THE OBLIGATIONS OF SECTION 3.2. THE NOTICE MUST BE CONSPICUOUSLY INCLUDED IN ANY NOTICE IN AN EXECUTABLE VERSION, RELATED DOCUMENTATION OR COLLATERAL IN WHICH YOU DESCRIBE RECIPIENTS' RIGHTS RELATING TO THE COVERED CODE. YOU MAY DISTRIBUTE OR OTHERWISE MAKE AVAILABLE THE EXECUTABLE VERSION OF COVERED CODE OR OWNERSHIP RIGHTS UNDER A LICENSE OF YOUR CHOICE, WHICH MAY CONTAIN TERMS DIFFERENT FROM THIS LICENSE, PROVIDED THAT YOU ARE IN COMPLIANCE WITH THE TERMS OF THIS LICENSE AND THAT THE LICENSE FOR THE EXECUTABLE VERSION DOES NOT ATTEMPT TO LIMIT OR ALTER THE RECIPIENT'S RIGHTS IN THE SOURCE CODE VERSION FROM THE RIGHTS SET FORTH IN THIS LICENSE. IF YOU DISTRIBUTE OR OTHERWISE MAKE AVAILABLE THE EXECUTABLE VERSION UNDER A DIFFERENT LICENSE YOU MUST MAKE IT ABSOLUTELY CLEAR THAT ANY TERMS WHICH DIFFER FROM THIS LICENSE ARE OFFERED BY YOU ALONE, NOT BY THE INITIAL DEVELOPER OR ANY CONTRIBUTOR. YOU HEREBY AGREE TO INDEMNIFY THE INITIAL DEVELOPER AND EVERY CONTRIBUTOR FOR ANY LIABILITY INCURRED BY THE INITIAL DEVELOPER OR SUCH CONTRIBUTOR AS A RESULT OF ANY SUCH TERMS YOU OFFER.\n\n3.7. Larger Works\n\nYOU MAY CREATE A LARGER WORK BY COMBINING COVERED CODE WITH OTHER CODE NOT GOVERNED BY THE TERMS OF THIS LICENSE AND DISTRIBUTE OR OTHERWISE MAKE AVAILABLE THE LARGER WORK AS A SINGLE PRODUCT. IN SUCH A CASE, YOU MUST MAKE SURE THE REQUIREMENTS OF THIS LICENSE ARE FULFILLED FOR THE COVERED CODE.\n\n4. Inability to Comply Due to Statute or Regulation\n\nIF IT IS IMPOSSIBLE FOR YOU TO COMPLY WITH ANY OF THE TERMS OF THIS LICENSE WITH RESPECT TO SOME OR ALL OF THE COVERED CODE DUE TO STATUTE, JUDICIAL ORDER, OR REGULATION THEN YOU MUST: (A) COMPLY WITH THE TERMS OF THIS LICENSE TO THE MAXIMUM EXTENT POSSIBLE; AND (B) DESCRIBE THE LIMITATIONS AND THE CODE THEY AFFECT. SUCH DESCRIPTION MUST BE INCLUDED IN THE LEGAL FILE DESCRIBED IN SECTION 3.4 AND MUST BE INCLUDED WITH ALL DISTRIBUTIONS OF THE SOURCE CODE. EXCEPT TO THE EXTENT PROHIBITED BY STATUTE OR REGULATION, SUCH DESCRIPTION MUST BE SUFFICIENTLY DETAILED FOR A RECIPIENT OF ORDINARY SKILL TO BE ABLE TO UNDERSTAND IT.\n\n5. Application of this License\n\nTHIS LICENSE APPLIES TO CODE TO WHICH THE INITIAL DEVELOPER HAS ATTACHED THE NOTICE IN EXHIBIT A AND TO RELATED COVERED CODE.\n\n6. Versions of the License\n\n6.1. New Versions\n\nTERRACOTTA, INC. (\"TERRACOTTA\") MAY PUBLISH REVISED AND/OR NEW VERSIONS OF THE LICENSE FROM TIME TO TIME. EACH VERSION WILL BE GIVEN A DISTINGUISHING VERSION NUMBER.\n\n6.2. Effect of New Versions\n\nONCE COVERED CODE HAS BEEN PUBLISHED UNDER A PARTICULAR VERSION OF THE LICENSE, YOU MAY ALWAYS CONTINUE TO USE IT UNDER THE TERMS OF THAT VERSION. YOU MAY ALSO CHOOSE TO USE SUCH COVERED CODE UNDER THE TERMS OF ANY SUBSEQUENT VERSION OF THE LICENSE PUBLISHED BY TERRACOTTA. NO ONE OTHER THAN TERRACOTTA HAS THE RIGHT TO MODIFY THE TERMS APPLICABLE TO COVERED CODE CREATED UNDER THIS LICENSE.\n\n6.3. Derivative Works of License; Antecedent Licenses\n\nIF YOU CREATE OR USE A MODIFIED VERSION OF THIS LICENSE (WHICH YOU MAY ONLY DO IN ORDER TO APPLY IT TO CODE WHICH IS NOT ALREADY COVERED CODE GOVERNED BY THIS LICENSE), YOU MUST (A) RENAME YOUR LICENSE SO THAT THE PHRASES \"TERRACOTTA\", \"TPL\", OR ANY CONFUSINGLY SIMILAR PHRASE DO NOT APPEAR IN YOUR LICENSE (EXCEPT TO NOTE THAT YOUR LICENSE DIFFERS FROM THIS LICENSE) AND (B) OTHERWISE MAKE IT CLEAR THAT YOUR VERSION OF THE LICENSE CONTAINS TERMS WHICH DIFFER FROM THE TERRACOTTA PUBLIC LICENSE. (FILLING IN THE NAME OF THE INITIAL DEVELOPER, ORIGINAL CODE OR CONTRIBUTOR IN THE NOTICE DESCRIBED IN EXHIBIT A SHALL NOT OF THEMSELVES BE DEEMED TO BE MODIFICATIONS OF THIS LICENSE.)\n\nTHIS TERRACOTTA PUBLIC LICENSE (TPL) IS SIMILAR TO, AND CONTAINS SAMPLES FROM, THE MOZILLA PUBLIC LICENSE (MPL) AND THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL). HOWEVER, THIS TPL CONTAINS TERMS WHICH DIFFER FROM THOSE CONTAINED IN THE MPL AND THE CDDL.\n\n7. Disclaimer of Warranty\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. Termination\n\n8.1. THIS LICENSE AND THE RIGHTS GRANTED HEREUNDER WILL TERMINATE AUTOMATICALLY IF YOU FAIL TO COMPLY WITH TERMS HEREIN AND FAIL TO CURE SUCH BREACH WITHIN 30 DAYS OF BECOMING AWARE OF THE BREACH. ALL SUBLICENSES TO THE COVERED CODE WHICH ARE PROPERLY GRANTED SHALL SURVIVE ANY TERMINATION OF THIS LICENSE. PROVISIONS WHICH, BY THEIR NATURE, MUST REMAIN IN EFFECT BEYOND THE TERMINATION OF THIS LICENSE SHALL SURVIVE.\n\n8.2. IF YOU INITIATE LITIGATION BY ASSERTING A PATENT INFRINGEMENT CLAIM (EXCLUDING DECLARATORY JUDGMENT ACTIONS) AGAINST INITIAL DEVELOPER OR A CONTRIBUTOR (THE INITIAL DEVELOPER OR CONTRIBUTOR AGAINST WHOM YOU FILE SUCH ACTION IS REFERRED TO AS \"PARTICIPANT\") ALLEGING THAT:\n\na. such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (1) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (2) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above.\n\nb. any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant.\n\n8.3. IF YOU ASSERT A PATENT INFRINGEMENT CLAIM AGAINST PARTICIPANT ALLEGING THAT SUCH PARTICIPANT'S CONTRIBUTOR VERSION DIRECTLY OR INDIRECTLY INFRINGES ANY PATENT WHERE SUCH CLAIM IS RESOLVED (SUCH AS BY LICENSE OR SETTLEMENT) PRIOR TO THE INITIATION OF PATENT INFRINGEMENT LITIGATION, THEN THE REASONABLE VALUE OF THE LICENSES GRANTED BY SUCH PARTICIPANT UNDER SECTIONS 2.1 OR 2.2 SHALL BE TAKEN INTO ACCOUNT IN DETERMINING THE AMOUNT OR VALUE OF ANY PAYMENT OR LICENSE.\n\n8.4. IN THE EVENT OF TERMINATION UNDER SECTIONS 8.1 OR 8.2 ABOVE, ALL END USER LICENSE AGREEMENTS (EXCLUDING DISTRIBUTORS AND RESELLERS) WHICH HAVE BEEN VALIDLY GRANTED BY YOU OR ANY DISTRIBUTOR HEREUNDER PRIOR TO TERMINATION SHALL SURVIVE TERMINATION.\n\n9. Limitation of Liability\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. Government End Users\n\nTHE COVERED CODE IS A \"COMMERCIAL ITEM,\" AS THAT TERM IS DEFINED IN 48 C.F.R. 2.101 (OCT. 1995), CONSISTING OF \"COMMERCIAL COMPUTER SOFTWARE\" AND \"COMMERCIAL COMPUTER SOFTWARE DOCUMENTATION,\" AS SUCH TERMS ARE USED IN 48 C.F.R. 12.212 (SEPT. 1995). CONSISTENT WITH 48 C.F.R. 12.212 AND 48 C.F.R. 227.7202-1 THROUGH 227.7202-4 (JUNE 1995), ALL U.S. GOVERNMENT END USERS ACQUIRE COVERED CODE WITH ONLY THOSE RIGHTS SET FORTH HEREIN.\n\n11. Miscellaneous\n\nTHIS LICENSE REPRESENTS THE COMPLETE AGREEMENT CONCERNING SUBJECT MATTER HEREOF. IF ANY PROVISION OF THIS LICENSE IS HELD TO BE UNENFORCEABLE, SUCH PROVISION SHALL BE REFORMED ONLY TO THE EXTENT NECESSARY TO MAKE IT ENFORCEABLE. THIS LICENSE SHALL BE GOVERNED BY CALIFORNIA LAW PROVISIONS (EXCEPT TO THE EXTENT APPLICABLE LAW, IF ANY, PROVIDES OTHERWISE), EXCLUDING ITS CONFLICT-OF-LAW PROVISIONS. WITH RESPECT TO DISPUTES IN WHICH AT LEAST ONE PARTY IS A CITIZEN OF, OR AN ENTITY CHARTERED OR REGISTERED TO DO BUSINESS IN THE UNITED STATES OF AMERICA, ANY LITIGATION RELATING TO THIS LICENSE SHALL BE SUBJECT TO THE JURISDICTION OF THE FEDERAL COURTS OF THE NORTHERN DISTRICT OF CALIFORNIA, WITH VENUE LYING IN SANTA CLARA COUNTY, CALIFORNIA, WITH THE LOSING PARTY RESPONSIBLE FOR COSTS, INCLUDING WITHOUT LIMITATION, COURT COSTS AND REASONABLE ATTORNEYS' FEES AND EXPENSES. THE APPLICATION OF THE UNITED NATIONS CONVENTION ON CONTRACTS FOR THE INTERNATIONAL SALE OF GOODS IS EXPRESSLY EXCLUDED. ANY LAW OR REGULATION WHICH PROVIDES THAT THE LANGUAGE OF A CONTRACT SHALL BE CONSTRUED AGAINST THE DRAFTER SHALL NOT APPLY TO THIS LICENSE. YOU AGREE THAT YOU ALONE ARE RESPONSIBLE FOR COMPLIANCE WITH THE UNITED STATES EXPORT ADMINISTRATION REGULATIONS (AND THE EXPORT CONTROL LAWS AND REGULATIONS OF ANY OTHER COUNTRIES) WHEN YOU USE, DISTRIBUTE, OR OTHERWISE MAKE AVAILABLE ANY COVERED CODE.\n\n12. Responsibility for Claims\n\nAS BETWEEN INITIAL DEVELOPER AND THE CONTRIBUTORS, EACH PARTY IS RESPONSIBLE FOR CLAIMS AND DAMAGES ARISING, DIRECTLY OR INDIRECTLY, OUT OF ITS UTILIZATION OF RIGHTS UNDER THIS LICENSE AND YOU AGREE TO WORK WITH INITIAL DEVELOPER AND CONTRIBUTORS TO DISTRIBUTE SUCH RESPONSIBILITY ON AN EQUITABLE BASIS. NOTHING HEREIN IS INTENDED OR SHALL BE DEEMED TO CONSTITUTE ANY ADMISSION OF LIABILITY.\n\n13. Multiple-Licensed Code\n\nINITIAL DEVELOPER MAY DESIGNATE PORTIONS OF THE COVERED CODE AS \"MULTIPLE-LICENSED\". \"MULTIPLE-LICENSED\" MEANS THAT THE INITIAL DEVELOPER PERMITS YOU TO UTILIZE PORTIONS OF THE COVERED CODE UNDER YOUR CHOICE OF THE TPL OR THE ALTERNATIVE LICENSES, IF ANY, SPECIFIED BY THE INITIAL DEVELOPER IN THE FILE DESCRIBED IN EXHIBIT A.\n\n14. Certain Attribution Requirements\n\nTHIS LICENSE DOES NOT GRANT ANY LICENSE OR RIGHTS TO USE THE TRADEMARKS \"TERRACOTTA,\" ANY \"TERRACOTTA\" LOGOS, OR ANY OTHER TRADEMARKS OF TERRACOTTA, INC.\n\nHOWEVER, IN ADDITION TO THE OTHER NOTICE OBLIGATIONS, ALL COPIES OF THE COVERED CODE IN EXECUTABLE AND SOURCE CODE FORM DISTRIBUTED OR OTHERWISE MADE AVAILABLE MUST, AS A FORM OF ATTRIBUTION OF THE INITIAL DEVELOPER, INCLUDE ON EACH USER INTERFACE SCREEN (I) THE COPYRIGHT NOTICE IN THE SAME FORM AS THE LATEST VERSION OF THE COVERED CODE DISTRIBUTED OR OTHERWISE MADE AVAILABLE BY TERRACOTTA, INC. AT THE TIME OF DISTRIBUTION OR MAKING AVAILABLE OF SUCH COPY AND (II) THE FOLLOWING TEXT, WHICH MUST BE LARGE ENOUGH SO THAT IT CAN BE READ EASILY: \"POWERED BY TERRACOTTA\". THE COPYRIGHT NOTICE AND TEXT MUST BE VISIBLE TO ALL USERS AND BE LOCATED AT THE VERY BOTTOM AND IN THE CENTER OF EACH USER INTERFACE SCREEN. THE WORD \"TERRACOTTA\" MUST BE A HYPERLINK, SO THAT WHEN ANY USER ACTIVATES THE LINK (E.G., BY CLICKING ON IT WITH A MOUSE), THE USER WILL BE DIRECTED TO HTTP://WWW.TERRACOTTA.ORG.\n\nExhibit A - Terracotta Public License.\n\n\"The contents of this file are subject to the Terracotta Public License, version 1.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.terracotta.org/TPL.\n\nSoftware distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.\n\nThe Original Code is .\n\nThe Initial Developer of the Original Code is Terracotta, Inc.\n\nPortions created by are Copyright (C) . All Rights Reserved.\n\nContributor(s): .\n\nNOTE: THE TEXT OF THIS EXHIBIT A MAY DIFFER SLIGHTLY FROM THE TEXT OF THE NOTICES IN THE SOURCE CODE FILES OF THE ORIGINAL CODE. YOU SHOULD USE THE TEXT OF THIS EXHIBIT A RATHER THAN THE TEXT FOUND IN THE ORIGINAL CODE SOURCE CODE FOR YOUR MODIFICATIONS.", + "json": "tpl-1.0.json", + "yaml": "tpl-1.0.yml", + "html": "tpl-1.0.html", + "license": "tpl-1.0.LICENSE" + }, + { + "license_key": "tpl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-tpl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Terracotta Public License, version 2.0\n\n1. Definitions\n\n1.1. \"Contributor\" means each individual or legal entity that creates, \ncontributes to the creation of, and owns Covered Software.\n\n1.2. \"Contributor Version\" means the combination of the Contributions of others \n(if any) used by a Contributor and that particular Contributor's Contribution.\n\n1.3. \"Contribution\" means Covered Software of a particular Contributor.\n\n1.4. \"Covered Software\" means Source Code Form to which the initial Contributor \nhas attached the notice in Exhibit A, the Executable Form of such Source Code \nForm, and Modifications of such Source Code Form, in each case including \nportions thereof.\n\n1.5. \"Initial Developer\" means the individual or entity identified as the \nInitial Developer in the Source Code notice required by Exhibit A.\n\n1.6. \"Incompatible With Secondary Licenses\" means (a) that the initial \nContributor has attached the notice described in Exhibit B to the Covered \nSoftware; or (b) that the Covered Software was made available under the terms \nof version 1.0, but not also under the terms of a Secondary License.\n\n1.7. \"Executable Form\" means any form of the work other than Source Code Form.\n\n1.8. \"Larger Work\" means a work that combines Covered Software with other \nmaterial, in a separate file or files that is not Covered Software.\n\n1.9. \"License\" means this document.\n\n1.10. \"Licensable\" means having the right to grant, to the maximum extent \npossible, whether at the time of the initial grant or subsequently, any and all \nof the rights conveyed by this License.\n\n1.11. \"Modifications\" means any of the following: (a) any file in Source Code \nForm that results from an addition to, deletion from, or modification of the \ncontents of Covered Software; or (b) any new file in Source Code Form that \ncontains any Covered Software.\n\n1.12. \"Patent Claims\" of a Contributor means any patent claim(s), including \nwithout limitation, method, process, and apparatus claims, in any patent \nLicensable by such Contributor that would be infringed, but for the grant of \nthe License, by the making, using, selling, offering for sale, having made, \nimport, or transfer of either its Contributions or its Contributor Version.\n\n1.13. \"Secondary License\" means either the GNU General Public License, Version \n2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General \nPublic License, Version 3.0, or any later versions of those licenses.\n\n1.14. \"Source Code Form\" means the form of the work preferred for making \nmodifications including all modules it contains, plus any associated interface \ndefinition files, scripts used to control compilation and installation of an \nExecutable Form, or source code differential comparisons against either the \nCovered Software or another well known, available Covered Software of the \nContributor's choice. The Source Code Form can be in a compressed or archival \nform, provided the appropriate decompression or de-archiving software is widely \navailable for no charge.\n\n1.15. \"You\" (or \"Your\") means an individual or a legal entity exercising rights \nunder this License. For legal entities, \"You\" includes any entity that \ncontrols, is controlled by, or is under common control with You. For purposes \nof this definition, \"control\" means (a) the power, direct or indirect, to cause \nthe direction or management of such entity, whether by contract or otherwise, \nor (b) ownership of more than fifty percent (50%) of the outstanding shares or \nbeneficial ownership of such entity.\n\n2. License Grants and Conditions\n\n2.1. Grants\nThe Initial Developer and each Contributor hereby grants You a world-wide, \nroyalty-free, non-exclusive license, subject to third party intellectual \nproperty claims:\n\n(a) under intellectual property rights (other than patent or trademark) \nlicensable by such Contributor to use, reproduce, make available, modify, \ndisplay, perform, sublicense, distribute, and otherwise exploit its \nContributions, either on an unmodified basis, with Modifications, or as part of \na Larger Work; and\n\n(b) under Patent Claims of such Contributor to make, use, sell, offer for \nsale, have made, import, and otherwise transfer either its Contributions or its \nContributor Version.\n\n2.2. Effective Date\nThe licenses granted in Section 2.1 with respect to any Contribution become \neffective for each Contribution on the date the Contributor first distributes \nsuch Contribution or otherwise makes available Contributions under the terms of \nthis License.\n\n2.3. Limitations on Grant Scope\nThe licenses granted in this Section 2 are the only rights granted under this \nLicense. No additional rights or licenses will be implied from the distribution \nor licensing of Covered Software under this License. Notwithstanding Section \n2.1(b) above, no patent license is granted by a Contributor:\n\n(a) for any code that a Contributor has removed from Covered Software; or\n\n(b) for infringements caused by: (i) You and any other third party's \nmodifications of Covered Software, or (ii) You and any other third party's \ncombination with other software (except as part of its Contributor Version) or \ndevices; or\n\n(c) under Patent Claims infringed by Covered Software in the absence of its \nContributions.\n\nThis License does not grant any rights in the trademarks, service marks, or \nlogos of any Contributor (except as may be necessary to comply with the notice \nand attribution requirements in Sections 3.5 and 3.8.\n\n2.4. Subsequent Licenses\nNo Contributor makes additional grants as a result of Your choice to distribute \nthe Covered Software under a subsequent version of this License (see Section \n10.2) or under the terms of a Secondary License (if permitted under the terms \nof Section 3.3).\n\n2.5. Representation\nEach Contributor represents that the Contributor believes its Contributions are \nits original creation(s) or it has sufficient rights to grant the rights to its \nContributions conveyed by this License.\n\n2.6. Fair Use\nThis License is not intended to limit any rights You have under applicable \ncopyright doctrines of fair use, fair dealing, or other equivalents.\n\n2.7. Conditions\nSections 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, and 3.7 are conditions of the licenses \ngranted in Section 2.1.\n\n2.8. Multiple-licensed Software \nInitial Developer may designate portions of the Covered Software as \u201cMultiple- \nLicensed\u201d. \u201cMultiple-Licensed\u201d means that the Initial Developer permits You to \nutilize portions of the Covered Software under Your choice of the TPL or \nalternative licenses, if any, specified in Exhibit A by the Initial Developer.\n\n3. Responsibilities\n\n3.1. Distribution of Source Code Form\nAll distribution of Covered Software in Source Code Form, including any \nModifications that You create or to which You contribute, must be under the \nterms of this License or a future version of this license released under \nSection 10.1, and You must include a copy of this license with every copy of \nthe source code You distribute or otherwise make available. You must inform \nrecipients that the Source Code Form of the Covered Software is governed by the \nterms of this License, and how they can obtain a copy of this License. You may \nnot offer or impose any terms on any Source Code Form that alters or restricts \nthe applicable version of this license or the recipients\u2019 rights thereunder. \nHowever, You may include an additional document offering the additional rights \ndescribed in Section 3.6.\n\n3.2. Distribution of Executable Form\nIf You distribute Covered Software in Executable Form then: (a) such Covered \nSoftware must also be made available in Source Code Form, as described in \nSection 3.1, and You must inform recipients of the Executable Form how they can \nobtain a copy of such Source Code Form by reasonable means in a timely manner, \nat a charge no more than the cost of distribution to the recipient; and (b) You \nmay distribute such Executable Form under the terms of this License, or \nsublicense it under different terms, provided that the license for the \nExecutable Form does not attempt to limit or alter the recipients' rights in \nthe Source Code Form under this License.\n\n3.3. Distribution of a Larger Work\nYou may create and distribute a Larger Work under terms of Your choice, \nprovided that You also comply with the requirements of this License for the \nCovered Software. If the Larger Work is a combination of Covered Software with \na work governed by one or more Secondary Licenses, and the Covered Software is \nnot incompatible With Secondary Licenses, this License permits You to \nadditionally distribute such Covered Software under the terms of such Secondary \nLicense(s), so that the recipient of the Larger Work may, at their option, \nfurther distribute the Covered Software under the terms of either this License \nor such Secondary License(s).\n\n3.4. Description of Modifications\nYou must cause all Modifications to the Covered Software to contain a file \ndocumenting the changes You made to the Covered Software and the date of any \nchange. You must include a prominent statement that the Modification is \nderived, directly or indirectly, from Covered Software provided by the Initial \nDeveloper and include the name of the Initial Developer in (a) the Source Code \nForm, and (b) in any notice in an Executable Form or related documentation in \nwhich You describe the origin or ownership of the Covered Software.\n\n3.5. Notices\nYou must duplicate the notice in Exhibit A in each file of the Source Code. If \nit is not possible to put such notice in a particular Source Code file due to \nits structure, then You must include such notice in a location (such as a \nrelevant directory) where a user would be likely to look for such a notice. If \nYou created one or more Modification(s) You may add Your name as a Contributor \nto the notice described in Exhibit A. You must also duplicate this License in \nany documentation for the Source Code where You describe recipients\u2019 rights or \nownership rights relating to Covered Software. You may not remove or alter the \nsubstance of any License notices (including copyright notices, patent notices, \ndisclaimers of warranty, or limitations of liability) contained within the \nSource Code Form of the Covered Software, except that You may alter any License \nnotices to the extent required to remedy known factual inaccuracies. \n\n3.6. Application of Additional Terms\nYou may choose to offer, and to charge a fee for, warranty, support, indemnity \nor liability obligations to one or more recipients of Covered Software. \nHowever, You may do so only on Your own behalf, and not on behalf of any \nContributor. You must make it absolutely clear that any such warranty, support, \nindemnity, or liability obligation is offered by You alone, and You hereby \nagree to indemnify every Contributor for any liability incurred by such \nContributor as a result of warranty, support, indemnity or liability terms You \noffer. You may include additional disclaimers of warranty and limitations of \nliability specific to any jurisdiction.\n\n3.7. Intellectual Property Matters\n\n(a) Third Party Claims\nIf Contributor has knowledge that a License under a Third Party\u2019s Intellectual \nProperty Rights is required to exercise the rights granted by such Contributor \nunder Section 2.1, Contributor must include a text file with the Source Code \nDistribution titled \u201cLegal\u201d which describes the claim and the party making the \nclaim in sufficient detail that a recipient will know whom to contact. If \nContributor obtains such knowledge after the Modification is made available, \nContributor shall promptly modify the Legal file in all copies Contributor \nmakes available thereafter and shall take other steps (such as notifying \nappropriate mailing lists or newsgroups) reasonably calculated to inform those \nwho received the Covered Software that new knowledge has been obtained. \n\n(b) Contributor APIs\nIf Contributor\u2019s Modifications include an application programming interface and \nContributor has knowledge of patent licenses which hare reasonably necessary to \nimplement that API, Contributor must also include this information in the Legal \nfile.\n\n(c) Representations\nContributor represents that, except as disclosed pursuant to Section 3.7 (a) \nabove, Contributor believes that Contributor\u2019s Modifications are Contributor\u2019s \noriginal creation(s) and /or Contributor has sufficient rights to grant the \nrights conveyed by this License.\n\n3.8. Certain Attribution Requirements\nThis License does not grant any License or rights to use the trademarks \n\u201cTERRACOTTA\u201d \u201cSOFTWARE AG,\u201d any logos, trade names or slogans of either \nTerracotta, Inc. or Software AG. However, in addition to the other notice \nobligations all copies of the Covered Software in Executable Form and Source \nCode Form distributed or otherwise made available, must as a form of \nattribution of the Initial Developer, include on each user interface screen (a) \nthe copyright notice in the same form as the latest version of the Covered \nSoftware distributed or otherwise made available by Terracotta Inc. at the time \nof distribution or making available of such copy and (b) the following text \nwhich must be large enough so that it can be read easily \u201cPowered by \nTerracotta.\u201d The copyright notice and text must be visible to all users and be \nlocated at the very bottom and in the center of each user interface screen. The \nword \u201cTerracotta\u201d must be a hyperlink, so that when any user activates the link \n(e.g. by clicking on it with a mouse), the user will be directed to \nhttp://www.terracotta.org.\n\n4. Inability to Comply Due to Statute or Regulation\nIf it is impossible for You to comply with any of the terms of this License \nwith respect to some or all of the Covered Software due to statute, judicial \norder, or regulation then You must: (a) comply with the terms of this License \nto the maximum extent possible; and (b) describe the limitations and the code \nthey affect. Such description must be placed in a text file included with all \ndistributions of the Covered Software under this License. Except to the extent \nprohibited by statute or regulation, such description must be sufficiently \ndetailed for a recipient of ordinary skill to be able to understand it.\n\n5. Termination\n\n5.1. The rights granted under this License will terminate automatically if You \nfail to comply with any of its terms. However, if You become compliant, then \nthe rights granted under this License from a particular Contributor are \nreinstated (a) provisionally, unless and until such Contributor explicitly and \nfinally terminates Your grants, and (b) on an ongoing basis, if such \nContributor fails to notify You of the non-compliance by some reasonable means \nprior to 60 days after You have come back into compliance. Moreover, Your \ngrants from a particular Contributor are reinstated on an ongoing basis if such \nContributor notifies You of the non-compliance by some reasonable means, this \nis the first time You have received notice of non-compliance with this License \nfrom such Contributor, and You become compliant prior to 30 days after Your \nreceipt of the notice.\n\n5.2. If You initiate litigation against any entity by asserting a patent \ninfringement claim (excluding declaratory judgment actions, counter-claims, and \ncross-claims) alleging that a Contributor Version directly or indirectly \ninfringes any patent, then the rights granted to You by any and all \nContributors for the Covered Software under Section 2.1 of this License shall \nterminate.\n\n5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user \nlicense agreements (excluding distributors and resellers) which have been \nvalidly granted by You or Your distributors under this License prior to \ntermination shall survive termination.\n\n6. Disclaimer of Warranty\nCOVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT \nWARRANTY OF ANY KIND, EITHER EXPRESSED, IMPLIED OR STATUTORY, INCLUDING, \nWITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, \nMERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK \nAS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD \nANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL \nDEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, \nREPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART \nOF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT \nUNDER THIS DISCLAIMER.\n\n7. Limitation of Liability\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING \nNEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY \nOTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF \nANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, \nINCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT \nLIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER \nFAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN \nIF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS \nLIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL \nINJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW \nPROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR \nLIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND \nLIMITATION MAY NOT APPLY TO YOU.\n\n8. Litigation\n\n8.1. Jurisdiction\nThis License shall be governed in accordance with the laws of the Commonwealth \nof Virginia (except to the extent applicable law, if any, provides otherwise), \nwithout giving effect to its conflicts-of-laws provisions. With respect to \ndisputes in which at least one party is a citizen of, or an entity chartered or \nregistered to do business in the United States of America, any litigation \nrelating to this license shall be subject to the jurisdiction of the federal \ncourts of the Commonwealth of Virginia with the losing party responsible for \ncosts, including without limitation, court costs and reasonable attorneys\u2019 fees \nand expenses. The application of the United Nations Convention on Contracts for \nthe International Sale of Goods is expressly excluded. Any law or regulation \nwhich provides that the language of contract shall be construed against the \ndrafter shall not apply to this License. You agree that You alone are \nresponsible for compliance with the United States export administration \nregulations (and the export control laws and regulations of any other \ncountries) when You use, distribute, or otherwise make available Covered \nSoftware. \n\n8.2. Responsibility for Claims\nAs between the Initial Developer and Contributors, each party is responsible \nfor claims and damages arising, directly or indirectly, out of its utilization \nof rights under this License and You agree to work with Initial Developer and \nContributors to distribute such responsibility on an equitable basis. Nothing \nherein is intended or shall be deemed to constitute an admission of liability. \n\n9. Miscellaneous\nThis License represents the complete agreement concerning the subject matter \nhereof. If any provision of this License is held to be unenforceable, such \nprovision shall be reformed only to the extent necessary to make it \nenforceable. Any law or regulation which provides that the language of a \ncontract shall be construed against the drafter shall not be used to construe \nthis License against a Contributor.\n\n10. Versions of the License\n\n10.1. New Versions\nTerracotta, Inc. and/or its parent Software AG (\u201cTerracotta\u201d) may publish \nrevised and/or new versions of the license from time to time. Except as \nprovided in Section 10.3, no one other than Terracotta has the right to modify \nor publish new versions of this License. Each version will be given a \ndistinguishing version number.\n\n10.2. Effect of New Versions\nYou may distribute the Covered Software under the terms of the version of the \nLicense under which You originally received the Covered Software, or under the \nterms of any subsequent version published by Terracotta.\n\n10.3. Modified Versions\nIf You create or use a modified version of this License (which You may do in \norder to apply it to code with is not already covered by this License), You \nmust (a) rename Your License so that the phrases \u201cTerracotta\u201d \u201cTPL\u201d \u201cSoftware \nAG,\u201d or any confusingly similar phrase do not appear in Your license (except to \nnote that Your license differs from this License) and (b) otherwise make it \nclear that Your version of the license contains terms which differ from the \nTerracotta Public License. Filling in the name of the Initial Developer, \nCovered Software or Contributor in the notice described in Exhibit A shall not \nof themselves be deemed to be modifications of this License.)\nThis Terracotta Public License (TPL) is similar to, and contains samples from, \nthe Mozilla Public License (MPL) and the Common Development and Distribution \nLicense (CDDL). However, this TPL contains terms which differ from those \ncontained in the MPL and CDDL. \n\n10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses\nIf You choose to distribute Source Code Form that is Incompatible With \nSecondary Licenses under the terms of this version of the License, the notice \ndescribed in Exhibit B of this License must be attached.\n\nExhibit A - Terracotta Public License.\n\"The contents of this file are subject to the Terracotta Public License Version \n2.0 (the \"License\"); You may not use this file except in compliance with the \nLicense. You may obtain a copy of the License at \nhttp://terracotta.org/legal/terracotta-public-license.\nSoftware distributed under the License is distributed on an \"AS IS\" basis, \nWITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for \nthe specific language governing rights and limitations under the License.\n\nThe Covered Software is Terracotta Core.\n\nThe Initial Developer of the Covered Software is Terracotta, Inc. \u00a9 Terracotta, \nInc., a Software AG company\n\nPortions created by ______________________ are Copyright (C) _______________. \nAll Rights Reserved.\nContributor(s): ______________________________________.\n\nNOTE: THE TEXT OF THIS EXHIBIT A MAY DIFFER SLIGHTLY FROM THE TEXT OF THE \nNOTICES IN THE SOURCE CODE FILES OF THE COVERED SOFTWARE. YOU SHOULD USE THE \nTEXT OF THIS EXHIBIT A RATHER THAN THE TEXT FOUND IN THE COVERED SOFTWARE \nSOURCE CODE FOR YOUR MODIFICATIONS.\n\nExhibit B - \"Incompatible With Secondary Licenses\" Notice\n\nThis Source Code Form is \"Incompatible With Secondary Licenses\", as defined by \nthe Terracotta Public License, v. 2.0.", + "json": "tpl-2.0.json", + "yaml": "tpl-2.0.yml", + "html": "tpl-2.0.html", + "license": "tpl-2.0.LICENSE" + }, + { + "license_key": "trademark-notice", + "category": "Unstated License", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "", + "json": "trademark-notice.json", + "yaml": "trademark-notice.yml", + "html": "trademark-notice.html", + "license": "trademark-notice.LICENSE" + }, + { + "license_key": "trca-odl-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-trca-odl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Toronto and Region Conservation Authority (TRCA) Open Data Licence v1.0\n\nShare:\nUsing Information under this License:\n\n TRCA grants to the Recipient a royalty-free, world-wide and non-exclusive licence (the \"Licence\") to the information (the \"Data\"), including for commercial purposes, subject to the terms below.\n Use of any information (the \"Data\") indicates your acceptance of the terms below.\n\nYou are free to:\n\n Access, copy, process, manage, store and otherwise use the information (the \"Data\") other than personal information.\n Modify, distribute, adapt, translate or create derivative works for both personal use and for profit based on the information (the \"Data\").\n\nYou must (where you do any of the above):\n\nWhere the Recipient engages in the distribution, publication, modification, adaption, translation or the creation of a derivative work based on the Data:\n\n The Recipient warrants and agrees not to misrepresent the Data or the source of the Data, or to use the Data in any manner which is likely to cause harm or damage to TRCA or contrary to any applicable laws.\\\n The Recipient agrees that TRCA will be acknowledged as the source of the Data using the following credit statement:\n \"Contains information made available under the Toronto and Region Conservation Authority (TRCA)\u2019s Open Data Licence v 1.0\"\n\nExemptions\n\nThe release of the Data to the Recipient and the granting of the Licence does not constitute a conveyance of any rights of ownership of the Data to the Recipient and TRCA shall own, exclusively, throughout the world and in perpetuity, all proprietary right, title and interest in the Data, including any intellectual property rights therein.\n\nTRCA shall have the unilateral right to revoke the Licence at any time in its sole and absolute discretion. Upon the termination of this Licence by TRCA, the Recipient shall cease to use the Data in any manner whatsoever.\nNon-Endorsement\n\nUnder no circumstances is TRCA responsible for or any edited or reproduced versions of the Data, or to be shown as approving the Data\u2019s use or being in any way sponsoring, connected with, or related to the Recipient.\nNo Warranty\n\nTRCA does not represent or warrant that any or all Data collected by TRCA is complete, current, updated or maintained by TRCA. Any one making use of or relying upon the Data is responsible for confirming its accuracy and completeness and its use is not restricted by any other person. TRCA has no obligation to update the Data based on new information collected or modified by TRCA.\n\nThe Recipient hereby releases TRCA from, and waives as against TRCA, any claims and demands the Recipient may have arising from any such loss, costs, expense, damages or liabilities in connection with the Data, whether as a result of TRCA\u2019s negligence or otherwise.\n\nThe Recipient shall indemnify and hold harmless TRCA, its directors, members, officers, employees, agents and independent contractors against any actions, proceedings, claims, losses, damages, liability awards, judgments, settlements and other expenses that TRCA may incur in consequence of a breach of any terms of the Licence by the Recipient.\nGoverning Law\n\nThe Recipient acknowledges that the Data may be subject to copyright and agrees to comply with all copyright laws that may be applicable to the Data.\n\nThis Licence and the disclaimer acknowledged by the Recipient (the \"Disclaimer\") constitutes a legal agreement between TRCA and the Recipient and the act of accessing the Data is confirmation that the Recipient agrees to be bound by the terms and conditions of the Licence and the Disclaimer. This Licence is governed by the laws of the province of Ontario and the laws of Canada applicable therein.\nDefinitions\n\nIn this licence, the terms below have the following meanings:\n\n\"Data\" means information or data protected by copyright that is expressly made available under the terms of this licence.\n\n\"Licence\" means Toronto Region Conservation Authority Open Data Licence and Disclaimer\n\n\"TRCA\" means the Toronto Region Conservation Authority\n\n\"Recipient\" means the natural or legal person or body of persons corporate or incorporate, as applicable, acquiring rights under this licence.\n\n\"Disclaimer\" means Toronto Region Conservation Authority Disclaimer contained within the Toronto Region Conservation Authority Open Data Licence and Disclaimer.\nVersioning\n\nThis is version 1.0 of the TRCA Open Data Licence.\nDisclaimer\n\nThe information provided herein (the \"Data\") is provided for general information purposes only and the Data does not constitute opinions or advice. Toronto and Region Conservation Authority (\"TRCA\") does not warrant or guarantee the accuracy or completeness of any Data provided to any user of Data (the \"Recipient\"). TRCA accepts and has no responsibility or liability whatsoever for any loss, costs, expense, damages or liabilities suffered or incurred by anyone as a result of the Data, or incompleteness or inaccuracy thereof, or the Licence granted herein to the Recipient, or as a result of any decision or action made on the basis of the Data or the Licence. The Recipient hereby releases TRCA from, and waives as against TRCA, any claims and demands the Recipient may have arising from any such loss, costs, expense, damages or liabilities. In consideration for the Licence, the Recipient acknowledges and agrees that the use of the Data is at the sole risk of the Recipient and subject to the terms and conditions as set forth in the Licence, a copy of which may be accessed here: https://trca.ca/datalicense. By accessing the Data the Recipient agrees to the foregoing and to the terms of the Licence.", + "json": "trca-odl-1.0.json", + "yaml": "trca-odl-1.0.yml", + "html": "trca-odl-1.0.html", + "license": "trca-odl-1.0.LICENSE" + }, + { + "license_key": "treeview-developer", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-treeview-developer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "TreeView License: Developer's License\n\nThis License For Customer Use of GubuSoft TreeView Software (\"LICENSE\") is the agreement which governs use of the TreeView software by GubuSoft (\"GUBUSOFT\") downloadable herefrom, including computer software and associated documentation (\"SOFTWARE\"). By downloading, installing, copying, or otherwise using the SOFTWARE, you agree to be bound by the terms of this LICENSE. If you do not agree to the terms of this LICENSE, do not use the SOFTWARE.\n\nGUBUSOFT grants Customer a royalty-free, perpetual license to use SOFTWARE within server CPUs and internet domains belonging to Customer. An unlimited number of end users may access and use the SOFTWARE. GUBUSOFT grants Customer rights to modify the source code, for use within their server CPUs and internet domains.\n\n1. DEFINITIONS\n\n1.1 Customer. Customer means the entity or individual that downloads the SOFTWARE.\n\n2. GRANT OF LICENSE\n\n2.1 GUBUSOFT hereby grants Customer the following non-exclusive, non-transferable right to use the SOFTWARE.\n\n2.1.3 LIMITATIONS\n\nCustomer may not rent, lease, or transfer the rights to the SOFTWARE to someone else.\n\nCustomer may redistribute and use SOFTWARE in source code form provided (a) Customer Applications of SOFTWARE add primary and substantial functionality, and are not merely a set or subset of any of the functionality of the SOFTWARE, or a set or subset of any of the code or other files of the SOFTWARE; (b) the source code retains all source code comments, including all copyright notices, without modification; (c) Customer does do not permit further redistribution of SOFTWARE by their customers; (d) Customer includes a valid copyright notice on their Application; and (e) Customer agrees to indemnify, hold harmless, and defend GubuSoft from and against any claims or lawsuits, including attorneys' fees, that arise or result from the use or distribution of Customer's Application.\n\nCustomer may redistribute and use SOFTWARE in binary form provided (a) Customer Applications of SOFTWARE add primary and substantial functionality, and are not merely a set or subset of any of the functionality of the SOFTWARE, or a set or subset of any of the code or other files of the SOFTWARE; (b) Customer agrees to indemnify, hold harmless, and defend GubuSoft from and against any claims or lawsuits, including attorneys' fees, that arise or result from the use or distribution of Customer's Application; and (c) the following notices are included in the documentation and/or other materials provided with the Customer's Application:\n\nCopyright (C) 2006 Conor O'Mahony (gubusoft@gubusoft.com)\n\nAll rights reserved.\n\nThis application includes the TreeView script.\n\nYou are not authorized to download and/or use the TreeView source code from this application for your own purposes. For your own FREE copy of the TreeView script, please visit the http://www.treeview.net Web site.\n\nTHIS SOFTWARE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nIf Customer is using the free version of SOFTWARE, Customer must ensure that the \"JavaScript Tree Menu\" link at the top of the TreeView is visible and readable in their Web page or application.\n\nCustomer may not harm the GUBUSOFT intellectual property rights using any media or via any electronic or other method now known or later discovered.\n\nCustomer may not use the GubuSoft name, the name of the TreeView author, or the names of any source code contributors to endorse or promote products derived from this SOFTWARE without specific prior written permission.\n\nCustomer may not utilize the SOFTWARE in a manner which is disparaging to GUBUSOFT.\n\n3. TERMINATION\n\nThis LICENSE will automatically terminate if Customer fails to comply with any of the terms and conditions hereof. In such event, Customer must destroy all copies of the SOFTWARE and all of its component parts.\n\nDefensive Suspension. If Customer commences or participates in any legal proceeding against GUBUSOFT, then GUBUSOFT may, in its sole discretion, suspend or terminate all license grants and any other rights provided under this LICENSE during the pendency of such legal proceedings.\n\n4. COPYRIGHT\n\nAll title and copyrights in and to the SOFTWARE (including but not limited to all images, photographs, animations, video, audio, music, text, and other information incorporated into the SOFTWARE), the accompanying printed materials, and any copies of the SOFTWARE, are owned by GUBUSOFT. The SOFTWARE is protected by copyright laws and international treaty provisions. Accordingly, Customer is required to treat the SOFTWARE like any other copyrighted material, except as otherwise allowed pursuant to this LICENSE and that it may make one copy of the SOFTWARE solely for backup or archive purposes.\n\n5. APPLICABLE LAW\n\nThis LICENSE shall be deemed to have been made in, and shall be construed pursuant to, the laws of the State of California. The United Nations Convention on Contracts for the International Sale of Goods is specifically disclaimed.\n\n6. DISCLAIMER OF WARRANTIES AND LIMITATION ON LIABILITY\n\n6.1 No Warranties. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE SOFTWARE IS PROVIDED \"AS IS\" AND GUBUSOFT AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\n6.2 No Liability for Consequential Damages. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL GUBUSOFT BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF GUBUSOFT HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. MISCELLANEOUS\n\nIf any provision of this LICENSE is inconsistent with, or cannot be fully enforced under, the law, such provision will be construed as limited to the extent necessary to be consistent with and fully enforceable under the law. This LICENSE is the final, complete and exclusive agreement between the parties relating to the subject matter hereof, and supersedes all prior or contemporaneous understandings and agreements relating to such subject matter, whether oral or written. This LICENSE may only be modified in writing signed by an authorized officer of GUBUSOFT.\n\n8. ASSIGNMENT\n\nGUBUSOFT may assign or otherwise transfer any of its rights or obligations under this LICENSE agreement.", + "json": "treeview-developer.json", + "yaml": "treeview-developer.yml", + "html": "treeview-developer.html", + "license": "treeview-developer.LICENSE" + }, + { + "license_key": "treeview-distributor", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-treeview-distributor", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "TreeView License: Distributor's License\n\nThis License For Customer Use of GubuSoft TreeView Software (\"LICENSE\") is the agreement which governs use of the TreeView software by GubuSoft (\"GUBUSOFT\") downloadable herefrom, including computer software and associated documentation (\"SOFTWARE\"). By downloading, installing, copying, or otherwise using the SOFTWARE, you agree to be bound by the terms of this LICENSE. If you do not agree to the terms of this LICENSE, do not use the SOFTWARE.\n\nGUBUSOFT grants Customer a royalty-free, perpetual license to use SOFTWARE with unlimited server CPUs and internet domains. An unlimited number of end users may access and use the SOFTWARE. Customer may redistribute SOFTWARE subject to limitations. GUBUSOFT grants Customer rights to modify the source code, for use within their application.\n\n1. DEFINITIONS\n\n1.1 Customer. Customer means the entity or individual that downloads the SOFTWARE.\n\n2. GRANT OF LICENSE\n\n2.1 GUBUSOFT hereby grants Customer the following non-exclusive, non-transferable right to use the SOFTWARE.\n\n2.1.3 LIMITATIONS\n\nCustomer may not rent, lease, or transfer the rights to the SOFTWARE to someone else.\n\nCustomer may redistribute and use SOFTWARE in source code form provided (a) Customer Applications of SOFTWARE add primary and substantial functionality, and are not merely a set or subset of any of the functionality of the SOFTWARE, or a set or subset of any of the code or other files of the SOFTWARE; (b) the source code retains all source code comments, including all copyright notices, without modification; (c) Customer includes a valid copyright notice on their Application; and (d) Customer agrees to indemnify, hold harmless, and defend GubuSoft from and against any claims or lawsuits, including attorneys' fees, that arise or result from the use or distribution of Customer's Application.\n\nCustomer may redistribute and use SOFTWARE in binary form provided (a) Customer Applications of SOFTWARE add primary and substantial functionality, and are not merely a set or subset of any of the functionality of the SOFTWARE, or a set or subset of any of the code or other files of the SOFTWARE; (b) Customer agrees to indemnify, hold harmless, and defend GubuSoft from and against any claims or lawsuits, including attorneys' fees, that arise or result from the use or distribution of Customer's Application; and (c) the following notices are included in the documentation and/or other materials provided with the Customer's Application:\n\nCopyright (C) 2006 Conor O'Mahony (gubusoft@gubusoft.com)\n\nAll rights reserved.\n\nThis application includes the TreeView script.\n\nYou are not authorized to download and/or use the TreeView source code from this application for your own purposes. For your own FREE copy of the TreeView script, please visit the http://www.treeview.net Web site.\n\nTHIS SOFTWARE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nIf Customer is using the free version of SOFTWARE, Customer must ensure that the \"JavaScript Tree Menu\" link at the top of the TreeView is visible and readable in their Web page or application.\n\nCustomer may not harm the GUBUSOFT intellectual property rights using any media or via any electronic or other method now known or later discovered.\n\nCustomer may not use the GubuSoft name, the name of the TreeView author, or the names of any source code contributors to endorse or promote products derived from this SOFTWARE without specific prior written permission.\n\nCustomer may not utilize the SOFTWARE in a manner which is disparaging to GUBUSOFT.\n\n3. TERMINATION\n\nThis LICENSE will automatically terminate if Customer fails to comply with any of the terms and conditions hereof. In such event, Customer must destroy all copies of the SOFTWARE and all of its component parts.\n\nDefensive Suspension. If Customer commences or participates in any legal proceeding against GUBUSOFT, then GUBUSOFT may, in its sole discretion, suspend or terminate all license grants and any other rights provided under this LICENSE during the pendency of such legal proceedings.\n\n4. COPYRIGHT\n\nAll title and copyrights in and to the SOFTWARE (including but not limited to all images, photographs, animations, video, audio, music, text, and other information incorporated into the SOFTWARE), the accompanying printed materials, and any copies of the SOFTWARE, are owned by GUBUSOFT. The SOFTWARE is protected by copyright laws and international treaty provisions. Accordingly, Customer is required to treat the SOFTWARE like any other copyrighted material, except as otherwise allowed pursuant to this LICENSE and that it may make one copy of the SOFTWARE solely for backup or archive purposes.\n\n5. APPLICABLE LAW\n\nThis LICENSE shall be deemed to have been made in, and shall be construed pursuant to, the laws of the State of California. The United Nations Convention on Contracts for the International Sale of Goods is specifically disclaimed.\n\n6. DISCLAIMER OF WARRANTIES AND LIMITATION ON LIABILITY\n\n6.1 No Warranties. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE SOFTWARE IS PROVIDED \"AS IS\" AND GUBUSOFT AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\n6.2 No Liability for Consequential Damages. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL GUBUSOFT BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF GUBUSOFT HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. MISCELLANEOUS\n\nIf any provision of this LICENSE is inconsistent with, or cannot be fully enforced under, the law, such provision will be construed as limited to the extent necessary to be consistent with and fully enforceable under the law. This LICENSE is the final, complete and exclusive agreement between the parties relating to the subject matter hereof, and supersedes all prior or contemporaneous understandings and agreements relating to such subject matter, whether oral or written. This LICENSE may only be modified in writing signed by an authorized officer of GUBUSOFT.\n\n8. ASSIGNMENT\n\nGUBUSOFT may assign or otherwise transfer any of its rights or obligations under this LICENSE agreement.", + "json": "treeview-distributor.json", + "yaml": "treeview-distributor.yml", + "html": "treeview-distributor.html", + "license": "treeview-distributor.LICENSE" + }, + { + "license_key": "triptracker", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-triptracker", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This code is the property of Klika d.o.o. The code\nmay not be included in, invoked from, or otherwise\nused in any software, service, device, or process\nwhich is sold, exchanged for profit, or for which\na license, subscription, or royalty fee is charged.\n\nPermission is granted to use this code for personal,\neducational, research, or commercial purposes, provided\nthis notice is included, and provided this code is not\nused as described in the above paragraph.\n\nThis code may not be modified without express\npermission of Klika. You may not delete, disable, or in\nany manner alter distinctive brand features rendered\nby the code. The use of this code in derivative work is\npermitted, provided that the code and this notice are\nincluded in full, and provided that the code is used in\naccordance with these terms.\n\nEmail: info at triptracker.net\nWeb: http://slideshow.triptracker.net", + "json": "triptracker.json", + "yaml": "triptracker.yml", + "html": "triptracker.html", + "license": "triptracker.LICENSE" + }, + { + "license_key": "trolltech-gpl-exception-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Trolltech GPL Exception version 1.0\nAdditional rights granted beyond the GPL (the \"Exception\").\n\nAs a special exception to the terms and conditions of version 2.0 of the GPL,\nTrolltech hereby grants you the rights described below, provided you agree to\nthe terms and conditions in this Exception, including its obligations and\nrestrictions on use.\n\nNothing in this Exception gives you or anyone else the right to change the\nlicensing terms of the Qt Open Source Edition.\n\nBelow, \"Licensed Software\" shall refer to the software licensed under the GPL\nand this exception.\n\n1) The right to use Open Source Licenses not compatible with the GNU\nGeneral Public License: You may link software (hereafter referred to as \"Your\nSoftware\") against the Licensed Software and/or distribute binaries of Your\nSoftware linked against the Licensed Software, provided that:\n\nA) Your Software is licensed under one of the following licenses:\n\nLicense name Version(s)/Copyright Date\n Academic Free License 2.0 or 2.1\n Apache Software License 1.0 or 1.1\n Apache License 2.0\n Apple Public Source License 2.0\n Artistic license From Perl 5.8.0\n BSD license \"July 22 1999\"\n Common Public License 1.0\n GNU Library or \"Lesser\" 2.0 or 2.1\n General Public License (LGPL)\n Jabber Open Source License 1.0\n MIT License (as attached)\n Mozilla Public License (MPL) 1.0 or 1.1\n Open Software License 2.0\n OpenSSL license (with original \"2003\" (\"1998\")\n SSLeay license) \n PHP License 3.0\n Python license (CNRI Python License) (as attached)\n Python Software Foundation License 2.1.1\n Q Public License v1.0\n Sleepycat License \"1999\"\n W3C License \"2001\"\n X11 License X11R6.6\n Zlib/libpng License (as attached)\n Zope Public License 2.0\n\n (Licenses without a specific version number or date are reproduced\nin the file GPL_Exception1.0_Addendum.txt in your source package).\n\nand\n\nB) You must, on request, make a complete package including the complete source\ncode of Your Software (as defined in the GNU General Public License version\n2, section 3, but excluding anything excluded by the special exception in the\nsame section) available to Trolltech under the same license as that granted\nto other recipients of the source code of Your Software.\n\nand\n\nC) Your or any other contributor's rights to:\n\n i) distribute the source code of Your Software to anyone for\n any purpose;\n\n and\n\n ii) publicly discuss the development project for Your\n Software and its goals in any form and in any forum\n\nare not prohibited by any legal instrument, including but not limited to\ncontracts, non-disclosure agreements, and employee contracts.\n\n2) The right to link non-Open Source applications with pre-installed versions\nof the Licensed Software: You may link applications with binary pre-installed\nversions of the Licensed Software, provided that such applications have been\ndeveloped and are deployed in accordance in accordance with the terms and\nconditions of the Qt Commercial License\nAgreement.", + "json": "trolltech-gpl-exception-1.0.json", + "yaml": "trolltech-gpl-exception-1.0.yml", + "html": "trolltech-gpl-exception-1.0.html", + "license": "trolltech-gpl-exception-1.0.LICENSE" + }, + { + "license_key": "trolltech-gpl-exception-1.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Trolltech GPL Exception Version 1.1\n\nAdditional rights granted beyond the GPL (the \"Exception\").\n\nAs a special exception to the terms and conditions of version 2.0 of the GPL, Trolltech hereby grants you the rights described below, provided you agree to the terms and conditions in this Exception, including its obligations and restrictions on use.\n\nNothing in this Exception gives you or anyone else the right to change the licensing terms of the Qt Open Source Edition.\n\nBelow, \"Licensed Software\" shall refer to the software licensed under the GPL and this exception.\n\n1) The right to use Open Source Licenses not compatible with the GNU General Public License: You may link software (hereafter referred to as \"Your Software\") against the Licensed Software and/or distribute binaries of Your Software linked against the Licensed Software, provided that:\n\nA) Your Software is licensed under one of the following licenses:\n\nLicense name Version(s)/Copyright Date\nAcademic Free License 2.0, 2.1, 3.0\nApache Software License 1.0 or 1.1\nApache License 2.0\nApple Public Source License 2.0\nArtistic license From Perl 5.8.0\nBSD license \"July 22 1999\"\nCommon Public License 1.0\nEclipse Public License 1.0\nGNU Library or \"Lesser\" General Public License (LGPL) 2.0 or 2.1\nJabber Open Source License 1.0\nMIT License (as set forth in the addendum file)\nMozilla Public License (MPL) 1.0 or 1.1\nOpen Software License 2.0, 3.0\nOpenSSL license (with original SSLeay license) \"2003\" (\"1998\")\nPHP License 3.0\nPython license (CNRI Python License) (as set forth in the addendum file)\nPython Software Foundation License 2.1.1\nQ Public License v1.0\nSleepycat License \"1999\"\nW3C License \"2001\"\nX11 License X11R6.6\nZlib/libpng License (as set forth in the addendum file)\nZope Public License 2.0, 2.1\n\n(Licenses without a specific version number or date are reproduced in the Addendum to the Trolltech GPL Exception Version 1.0.\n\nand\n\nB) You must, on request, make a complete package including the complete source code of Your Software (as defined in the GNU General Public License version 2, section 3, but excluding anything excluded by the special exception in the same section) available to Trolltech under the same license as that granted to other recipients of the source code of Your Software.\n\nand\n\nC) Your or any other contributor's rights to:\n\ni) distribute the source code of Your Software to anyone for any purpose;\n\nand\n\nii) publicly discuss the development project for Your Software and its goals in any form and in any forum\n\nare not prohibited by any legal instrument, including but not limited to contracts, non-disclosure agreements, and employee contracts.\n\n2) The right to link non-Open Source applications with pre-installed versions of the Licensed Software: You may link applications with binary pre-installed versions of the Licensed Software, provided that such applications have been developed and are deployed in accordance with the terms and conditions of the Qt Commercial License Agreement.", + "json": "trolltech-gpl-exception-1.1.json", + "yaml": "trolltech-gpl-exception-1.1.yml", + "html": "trolltech-gpl-exception-1.1.html", + "license": "trolltech-gpl-exception-1.1.LICENSE" + }, + { + "license_key": "trolltech-gpl-exception-1.2", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.2", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Trolltech GPL Exception version 1.2\n===================================\n\nAdditional rights granted beyond the GPL (the \"Exception\").\n\nAs a special exception to the terms and conditions of GPL version 2.0 or GPL\nversion 3.0, Trolltech hereby grants you the rights described below, provided\nyou agree to the terms and conditions in this Exception, including its\nobligations and restrictions on use.\n\nNothing in this Exception gives you or anyone else the right to change the\nlicensing terms of the Qt Open Source Edition.\n\nBelow, \"Licensed Software\" shall refer to the software licensed under the GPL\nversion 2.0 or GPL version 3.0 and this exception.\n\n1) The right to use Open Source Licenses not compatible with the GNU\nGeneral Public License version 2.0 or GNU General Public License version\n3.0: You may link software (hereafter referred to as \"Your Software\")\nagainst the Licensed Software and/or distribute binaries of Your Software\nlinked against the Licensed Software, provided that:\n\nA) Your Software is licensed under one of the following licenses:\n\n\nLicense name Version(s)/Copyright Date\nAcademic Free License 2.0, 2.1, 3.0\nApache Software License 1.0 or 1.1\nApache License 2.0\nApple Public Source License 2.0\nArtistic license (as set forth in the addendum file)\nBSD license \"July 22 1999\"\nCommon Development and Distribution\n License (CDDL) 1.0\nCommon Public License 1.0\nEclipse Public License 1.0\nGNU Library or \"Lesser\"\nGeneral Public License (LGPL) 2.0, 2.1, 3.0\nJabber Open Source License 1.0\nMIT License (as set forth in the addendum file)\nMozilla Public License (MPL) 1.0 or 1.1\nOpen Software License 2.0, 3.0\nOpenSSL license (with original\nSSLeay license) \"2003\" (\"1998\")\nPHP License 3.0\nPython license (CNRI Python License) (as set forth in the addendum file)\nPython Software Foundation License 2.1.1\nQ Public License 1.0\nSleepycat License \"1999\"\nW3C License \"2001\"\nX11 License X11R6.6\nZlib/libpng License (as set forth in the addendum file)\nZope Public License 2.0, 2.1\n\n\n(Licenses without a specific version number or date are reproduced\nin the file GPL_Exception_Addendum.txt in your source package).\n\n\nand\n\nB) You must, on request, make a complete package including\n the complete source code of Your Software (as defined\n in the GNU General Public License version 2, section 3,\n but excluding anything excluded by the special\n exception in the same section) available to Trolltech\n under the same license as that granted to other\n recipients of the source code of Your Software.\n\nand\n\nC) Your or any other contributor's rights to:\n\n i) distribute the source code of Your Software to anyone for\n any purpose;\n\n and\n\n ii) publicly discuss the development project for Your\n Software and its goals in any form and in any forum\n\nare not prohibited by any legal instrument, including but not limited to\ncontracts, non-disclosure agreements, and employee contracts.\n\n\n2) The right to link non-Open Source applications with pre-installed versions of\nthe Licensed Software: You may link applications with binary pre-installed\nversions of the Licensed Software, provided that such applications have been\ndeveloped and are deployed in ac cordance with the terms and conditions of the\nQt Commercial License Agreement.", + "json": "trolltech-gpl-exception-1.2.json", + "yaml": "trolltech-gpl-exception-1.2.yml", + "html": "trolltech-gpl-exception-1.2.html", + "license": "trolltech-gpl-exception-1.2.LICENSE" + }, + { + "license_key": "truecrypt-3.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-truecrypt-3.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "TrueCrypt License Version 3.1\n\nSoftware distributed under this license is distributed on an \"AS\nIS\" BASIS WITHOUT WARRANTIES OF ANY KIND. THE AUTHORS AND\nDISTRIBUTORS OF THE SOFTWARE DISCLAIM ANY LIABILITY. ANYONE WHO\nUSES, COPIES, MODIFIES, OR (RE)DISTRIBUTES ANY PART OF THE\nSOFTWARE IS, BY SUCH ACTION(S), ACCEPTING AND AGREEING TO BE\nBOUND BY ALL TERMS AND CONDITIONS OF THIS LICENSE. IF YOU DO NOT\nACCEPT THEM, DO NOT USE, COPY, MODIFY, NOR (RE)DISTRIBUTE THE\nSOFTWARE, NOR ANY PART(S) THEREOF.\n\n\nI. Definitions\n\n1. \"This Product\" means the work (including, but not limited to,\nsource code, graphics, texts, and accompanying files) made\navailable under and governed by this version of this license\n(\"License\"), as may be indicated by, but is not limited to,\ncopyright notice(s) attached to or included in the work.\n\n2. \"You\" means (and \"Your\" refers to) an individual or a legal\nentity (e.g., a non-profit organization, commercial\norganization, government agency, etc.) exercising permissions\ngranted by this License.\n\n3. \"Modification\" means (and \"modify\" refers to) any alteration\nof This Product, including, but not limited to, addition to or\ndeletion from the substance or structure of This Product,\ntranslation into another language, repackaging, alteration or\nremoval of any file included with This Product, and addition of\nany new files to This Product.\n\n4. \"Your Product\" means This Product modified by You, or any\nwork You derive from (or base on) any part of This Product. In\naddition, \"Your Product\" means any work in which You include any\n(modified or unmodified) portion of This Product. However, if\nthe work in which you include it is an aggregate software\ndistribution (such as an operating system distribution or a\ncover CD-ROM of a magazine) containing multiple separate\nproducts, then the term \"Your Product\" includes only those\nproducts (in the aggregate software distribution) that use,\ninclude, or depend on a modified or unmodified version of This\nProduct (and the term \"Your Product\" does not include the whole\naggregate software distribution). For the purposes of this\nLicense, a product suite consisting of two or more products is\nconsidered a single product (operating system distributions and\ncover media of magazines are not considered product suites).\n\n5. \"Distribution\" means (and \"distribute\" refers to), regardless\nof means or methods, conveyance, transfer, providing, or making\navailable of This/Your Product or portions thereof to third\nparties (including, but not limited to, making This/Your\nProduct, or portions thereof, available for download to third\nparties, whether or not any third party has downloaded the\nproduct, or any portion thereof, made available for download).\n\n\nII. Use, Copying, and Distribution of This Product\n\n1. Provided that You comply with all applicable terms and\nconditions of this License, You may make copies of This Product\n(unmodified) and distribute copies of This Product (unmodified)\nthat are not included in another product forming Your Product\n(except as permitted under Chapter III). Note: For terms and\nconditions for copying and distribution of modified versions of\nThis Product, see Chapter III.\n\n2. Provided that You comply with all applicable terms and\nconditions of this License, You may use This Product freely (see\nalso Chapter III) on any number of computers/systems for non-\ncommercial and/or commercial purposes.\n\n\nIII. Modification, Derivation, and Inclusion in Other Products\n\n1. If all conditions specified in the following paragraphs in\nthis Chapter (III) are met (for exceptions, see Section III.2)\nand if You comply with all other applicable terms and conditions\nof this License, You may modify This Product (thus forming Your\nProduct), derive new works from This Product or portions thereof\n(thus forming Your Product), include This Product or portions\nthereof in another product (thus forming Your Product, unless\ndefined otherwise in Chapter I), and You may use (for non-\ncommercial and/or commercial purposes), copy, and/or distribute\nYour Product.\n\n a. The name of Your Product (or of Your modified version of\n This Product) must not contain the name TrueCrypt (for\n example, the following names are not allowed: TrueCrypt,\n TrueCrypt+, TrueCrypt Professional, iTrueCrypt, etc.) nor\n any other names confusingly similar to the name TrueCrypt\n (e.g., True-Crypt, True Crypt, TruKrypt, etc.)\n\n All occurrences of the name TrueCrypt that could reasonably\n be considered to identify Your Product must be removed from\n Your Product and from any associated materials. Logo(s)\n included in (or attached to) Your Product (and in/to\n associated materials) must not incorporate and must not be\n confusingly similar to any of the TrueCrypt logos\n (including, but not limited to, the non-textual logo\n consisting primarily of a key in stylized form) or\n portion(s) thereof. All graphics contained in This Product\n (logos, icons, etc.) must be removed from Your Product (or\n from Your modified version of This Product) and from any\n associated materials.\n\n b. The following phrases must be removed from Your Product\n and from any associated materials, except the text of this\n License: \"A TrueCrypt Foundation Release\", \"Released by\n TrueCrypt Foundation\", \"This is a TrueCrypt Foundation\n release.\"\n\n c. Your Product (and any associated materials, e.g., the\n documentation, the content of the official web site of Your\n Product, etc.) must not present any Internet address\n containing the domain name truecrypt (or any domain name\n that forwards to the domain name truecrypt) in a manner\n that might suggest that it is where information about Your\n Product may be obtained or where bugs found in Your Product\n may be reported or where support for Your Product may be\n available or otherwise attempt to indicate that the domain\n name truecrypt is associated with Your Product.\n\n d. The complete source code of Your Product must be freely\n and publicly available (for exceptions, see Section III.2)\n at least until You cease to distribute Your Product. This\n condition can be met in one or both of the following ways:\n (i) You include the complete source code of Your Product\n with every copy of Your Product that You make and distribute\n and You make all such copies of Your Product available to\n the general public free of charge, and/or (ii) You include\n information (valid and correct at least until You cease to\n distribute Your Product) about where the complete source\n code of Your Product can be obtained free of charge (e.g.,\n an Internet address) or for a reasonable reproduction fee\n with every copy of Your Product that You make and distribute\n and, if there is a web site officially associated with Your\n Product, You include the aforementioned information about\n the source code on a freely and publicly accessible web\n page to which such web site links via an easily viewable\n hyperlink (at least until You cease to distribute Your\n Product).\n\n The source code of Your Product must not be deliberately\n obfuscated and it must not be in an intermediate form (e.g.,\n the output of a preprocessor). Source code means the\n preferred form in which a programmer would usually modify\n the program.\n\n Portions of the source code of Your Product not contained in\n This Product (e.g., portions added by You in creating Your\n Product, whether created by You or by third parties) must be\n available under license(s) that (however, see also\n Subsection III.1.e) allow(s) anyone to modify and derive new\n works from the portions of the source code that are not\n contained in This Product and to use, copy, and redistribute\n such modifications and/or derivative works. The license(s)\n must be perpetual, non-exclusive, royalty-free, no-charge,\n and worldwide, and must not invalidate, weaken, restrict,\n interpret, amend, modify, interfere with or otherwise affect\n any part, term, provision, or clause of this License. The\n text(s) of the license(s) must be included with every copy\n of Your Product that You make and distribute.\n\n e. You must not change the license terms of This Product in\n any way (adding any new terms is considered changing the\n license terms even if the original terms are retained),\n which means, e.g., that no part of This Product may be put\n under another license. You must keep intact all the legal\n notices contained in the source code files. You must include\n the following items with every copy of Your Product that You\n make and distribute: a clear and conspicuous notice stating\n that Your Product or portion(s) thereof is/are governed by\n this version of the TrueCrypt License, a verbatim copy of\n this version of the TrueCrypt License (as contained herein),\n a clear and conspicuous notice containing information about\n where the included copy of the License can be found, and an\n appropriate copyright notice.\n\n\n2. You are not obligated to comply with Subsection III.1.d if\nYour Product is not distributed (i.e., Your Product is available\nonly to You).\n\n\nIV. Disclaimer of Liability, Disclaimer of Warranty, Indemnification\n\nYou expressly acknowledge and agree to the following:\n\n1. IN NO EVENT WILL ANY (CO)AUTHOR OF THIS PRODUCT, OR ANY\nAPPLICABLE INTELLECTUAL-PROPERTY OWNER, OR ANY OTHER PARTY WHO\nMAY COPY AND/OR (RE)DISTRIBUTE THIS PRODUCT OR PORTIONS THEREOF,\nAS MAY BE PERMITTED HEREIN, BE LIABLE TO YOU OR TO ANY OTHER\nPARTY FOR ANY DAMAGES, INCLUDING, BUT NOT LIMITED TO, ANY\nDIRECT, INDIRECT, GENERAL, SPECIAL, INCIDENTAL, PUNITIVE,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, CORRUPTION OR LOSS OF DATA, ANY LOSSES SUSTAINED BY YOU OR\nTHIRD PARTIES, A FAILURE OF THIS PRODUCT TO OPERATE WITH ANY\nOTHER PRODUCT, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR\nBUSINESS INTERRUPTION), WHETHER IN CONTRACT, STRICT LIABILITY,\nTORT (INCLUDING, BUT NOT LIMITED TO, NEGLIGENCE) OR OTHERWISE,\nARISING OUT OF THE USE, COPYING, MODIFICATION, OR\n(RE)DISTRIBUTION OF THIS PRODUCT (OR A PORTION THEREOF) OR OF\nYOUR PRODUCT (OR A PORTION THEREOF), OR INABILITY TO USE THIS\nPRODUCT (OR A PORTION THEREOF), EVEN IF SUCH DAMAGES (OR THE\nPOSSIBILITY OF SUCH DAMAGES) ARE/WERE PREDICTABLE OR KNOWN TO\nANY (CO)AUTHOR, INTELLECTUAL-PROPERTY OWNER, OR ANY OTHER PARTY.\n\n2. THIS PRODUCT IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, WHETHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT\nLIMITED TO, THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE, AND NON-INFRINGEMENT. THE ENTIRE RISK AS TO\nTHE QUALITY AND PERFORMANCE OF THIS PRODUCT IS WITH YOU. SHOULD\nTHIS PRODUCT PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL\nNECESSARY SERVICING, REPAIR, OR CORRECTION.\n\n3. THIS PRODUCT MAY INCORPORATE IMPLEMENTATIONS OF CRYPTOGRAPHIC\nALGORITHMS THAT ARE REGULATED (E.G., SUBJECT TO EXPORT/IMPORT\nCONTROL REGULATIONS) OR ILLEGAL IN SOME COUNTRIES. IT IS SOLELY\nYOUR RESPONSIBILITY TO VERIFY THAT IT IS LEGAL TO IMPORT AND/OR\n(RE)EXPORT AND/OR USE THIS PRODUCT (OR PORTIONS THEREOF) IN\nCOUNTRIES WHERE YOU INTEND TO USE IT AND/OR TO WHICH YOU INTEND\nTO IMPORT IT AND/OR FROM WHICH YOU INTEND TO EXPORT IT, AND IT\nIS SOLELY YOUR RESPONSIBILITY TO COMPLY WITH ANY APPLICABLE\nREGULATIONS, RESTRICTIONS, AND LAWS.\n\n4. YOU SHALL INDEMNIFY, DEFEND AND HOLD ALL (CO)AUTHORS OF THIS\nPRODUCT, AND APPLICABLE INTELLECTUAL-PROPERTY OWNERS, HARMLESS\nFROM AND AGAINST ANY AND ALL LIABILITY, DAMAGES, LOSSES,\nSETTLEMENTS, PENALTIES, FINES, COSTS, EXPENSES (INCLUDING\nREASONABLE ATTORNEYS' FEES), DEMANDS, CAUSES OF ACTION, CLAIMS,\nACTIONS, PROCEEDINGS, AND SUITS, DIRECTLY RELATED TO OR ARISING\nOUT OF YOUR USE, INABILITY TO USE, COPYING, (RE)DISTRIBUTION,\nIMPORT AND/OR (RE)EXPORT OF THIS PRODUCT (OR PORTIONS THEREOF)\nAND/OR YOUR BREACH OF ANY TERM OF THIS LICENSE.\n\n\nV. Trademarks\n\nThis License does not grant permission to use trademarks\nassociated with (or applying to) This Product, except for fair\nuse as defined by applicable law and except for use expressly\npermitted or required by this License. Any attempt otherwise to\nuse trademarks associated with (or applying to) This Product\nautomatically and immediately terminates Your rights under This\nLicense and may constitute trademark infringement (which may be\nprosecuted).\n\n\nVI. General Terms and Conditions, Miscellaneous Provisions\n\n1. ANYONE WHO USES AND/OR COPIES AND/OR MODIFIES AND/OR CREATES\nDERIVATIVE WORKS OF AND/OR (RE)DISTRIBUTES THIS PRODUCT, OR ANY\nPORTION(S) THEREOF, IS, BY SUCH ACTION(S), AGREEING TO BE BOUND\nBY AND ACCEPTING ALL TERMS AND CONDITIONS OF THIS LICENSE (AND\nTHE RESPONSIBILITIES AND OBLIGATIONS CONTAINED IN THIS LICENSE).\nIF YOU DO NOT ACCEPT (AND AGREE TO BE BOUND BY) ALL TERMS AND\nCONDITIONS OF THIS LICENSE, DO NOT USE, COPY, MODIFY, CREATE\nDERIVATIVE WORKS OF, NOR (RE)DISTRIBUTE THIS PRODUCT, NOR ANY\nPORTION(S) THEREOF.\n\n2. YOU MAY NOT USE, MODIFY, COPY, CREATE DERIVATIVE WORKS OF,\n(RE)DISTRIBUTE, OR SUBLICENSE THIS PRODUCT, OR PORTION(S)\nTHEREOF, EXCEPT AS EXPRESSLY PROVIDED IN THIS LICENSE (EVEN IF\nAPPLICABLE LAW GIVES YOU MORE RIGHTS). ANY ATTEMPT (EVEN IF\nPERMITTED BY APPLICABLE LAW) OTHERWISE TO USE, MODIFY, COPY,\nCREATE DERIVATIVE WORKS OF, (RE)DISTRIBUTE, OR SUBLICENSE THIS\nPRODUCT, OR PORTION(S) THEREOF, AUTOMATICALLY AND IMMEDIATELY\nTERMINATES YOUR RIGHTS UNDER THIS LICENSE AND CAN CONSTITUTE\nCOPYRIGHT INFRINGEMENT (WHICH MAY BE PROSECUTED). ANY CONDITIONS\nAND RESTRICTIONS CONTAINED IN THIS LICENSE ARE ALSO LIMITATIONS\nON THE SCOPE OF THIS LICENSE AND ALSO DEFINE THE SCOPE OF YOUR\nRIGHTS UNDER THIS LICENSE. YOUR FAILURE TO COMPLY WITH THE TERMS\nAND CONDITIONS OF THIS LICENSE OR FAILURE TO PERFORM ANY\nAPPLICABLE OBLIGATION IMPOSED BY THIS LICENSE AUTOMATICALLY AND\nIMMEDIATELY TERMINATES YOUR RIGHTS UNDER THIS LICENSE AND CAN\nCAUSE OR BE CONSIDERED COPYRIGHT INFRINGEMENT (WHICH MAY BE\nPROSECUTED). NOTHING IN THIS LICENSE SHALL IMPLY OR BE CONSTRUED\nAS A PROMISE, OBLIGATION, OR COVENANT NOT TO SUE FOR COPYRIGHT\nOR TRADEMARK INFRINGEMENT IF YOU DO NOT COMPLY WITH THE TERMS\nAND CONDITIONS OF THIS LICENSE.\n\n3. This License does not constitute or imply a waiver of any\nintellectual property rights except as may be otherwise\nexpressly provided in this License. This License does not\ntransfer, assign, or convey any intellectual property rights\n(e.g., it does not transfer ownership of copyrights or\ntrademarks).\n\n4. Subject to the terms and conditions of this License, You may\nallow a third party to use Your copy of This Product (or a copy\nthat You make and distribute, or Your Product) provided that the\nthird party explicitly accepts and agrees to be bound by all\nterms and conditions of this License and the third party is not\nprohibited from using This Product (or portions thereof) by this\nLicense (see, e.g., Section VI.7) or by applicable law. However,\nYou are not obligated to ensure that the third party accepts\n(and agrees to be bound by all terms of) this License if You\ndistribute only the self-extracting package (containing This\nProduct) that does not allow the user to install (nor extract)\nthe files contained in the package until he or she accepts and\nagrees to be bound by all terms and conditions of this License.\n\n5. Without specific prior written permission from the authors of\nThis Product (or from their common representative), You must not\nuse the name of This Product, the names of the authors of This\nProduct, or the names of the legal entities (or informal groups)\nof which the authors were/are members/employees, to endorse or\npromote Your Product or any work in which You include a modified\nor unmodified version of This Product, or to endorse or promote\nYou or Your affiliates, or in a way that might suggest that Your\nProduct (or any work in which You include a modified or\nunmodified version of This Product), You, or Your affiliates\nis/are endorsed by one or more authors of This Product, or in a\nway that might suggest that one or more authors of This Product\nis/are affiliated with You (or Your affiliates) or directly\nparticipated in the creation of Your Product or of any work in\nwhich You include a modified or unmodified version of This\nProduct.\n\n6. IF YOU ARE NOT SURE WHETHER YOU UNDERSTAND ALL PARTS OF THIS\nLICENSE OR IF YOU ARE NOT SURE WHETHER YOU CAN COMPLY WITH ALL\nTERMS AND CONDITIONS OF THIS LICENSE, YOU MUST NOT USE, COPY,\nMODIFY, CREATE DERIVATIVE WORKS OF, NOR (RE)DISTRIBUTE THIS\nPRODUCT, NOR ANY PORTION(S) OF IT. YOU SHOULD CONSULT WITH A\nLAWYER.\n\n7. IF (IN RELEVANT CONTEXT) ANY PROVISION OF CHAPTER IV OF THIS\nLICENSE IS UNENFORCEABLE, INVALID, OR PROHIBITED UNDER\nAPPLICABLE LAW IN YOUR JURISDICTION, YOU HAVE NO RIGHTS UNDER\nTHIS LICENSE AND YOU MUST NOT USE, COPY, MODIFY, CREATE\nDERIVATIVE WORKS OF, NOR (RE)DISTRIBUTE THIS PRODUCT, NOR ANY\nPORTION(S) THEREOF.\n\n8. Except as otherwise provided in this License, if any\nprovision of this License, or a portion thereof, is found to be\ninvalid or unenforceable under applicable law, it shall not\naffect the validity or enforceability of the remainder of this\nLicense, and such invalid or unenforceable provision shall be\nconstrued to reflect the original intent of the provision and\nshall be enforced to the maximum extent permitted by applicable\nlaw so as to effect the original intent of the provision as\nclosely as possible.\n\n \n\n\nThird-Party Licenses\n\nThis Product contains components that were created by third\nparties and that are governed by third-party licenses, which are\ncontained hereinafter (separated by lines consisting of\nunderscores). Each of the third-party licenses applies only to\n(portions of) the source code file(s) in which the third-party\nlicense is contained or in which it is explicitly referenced,\nand to compiled or otherwise processed forms of such source\ncode. None of the third-party licenses applies to This Product\nas a whole, even when it uses terms such as \"product\",\n\"program\", or any other equivalent terms/phrases. This Product\nas a whole is governed by the TrueCrypt License (see above).\nSome of the third-party components have been modified by the\nauthors of This Product. Unless otherwise stated, such\nmodifications and additions are governed by the TrueCrypt\nLicense (see above). Note: Unless otherwise stated, graphics and\nfiles that are not part of the source code are governed by the\nTrueCrypt License.\n\n \n\nLicense agreement for Encryption for the Masses.\n\nCopyright (C) 1998-2000 Paul Le Roux. All Rights Reserved.\n\nThis product can be copied and distributed free of charge,\nincluding source code.\n\nYou may modify this product and source code, and distribute such\nmodifications, and you may derive new works based on this\nproduct, provided that:\n\n1. Any product which is simply derived from this product cannot\nbe called E4M, or Encryption for the Masses.\n\n2. If you use any of the source code in your product, and your\nproduct is distributed with source code, you must include this\nnotice with those portions of this source code that you use.\n\nOr,\n\nIf your product is distributed in binary form only, you must\ndisplay on any packaging, and marketing materials which\nreference your product, a notice which states:\n\n\"This product uses components written by Paul Le Roux\n\"\n\n3. If you use any of the source code originally by Eric Young,\nyou must in addition follow his terms and conditions.\n\n4. Nothing requires that you accept this License, as you have\nnot signed it. However, nothing else grants you permission to\nmodify or distribute the product or its derivative works.\n\nThese actions are prohibited by law if you do not accept this\nLicense.\n\n5. If any of these license terms is found to be to broad in\nscope, and declared invalid by any court or legal process, you\nagree that all other terms shall not be so affected, and shall\nremain valid and enforceable.\n\n6. THIS PROGRAM IS DISTRIBUTED FREE OF CHARGE, THEREFORE THERE\nIS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. UNLESS OTHERWISE STATED THE PROGRAM IS PROVIDED\n\"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR\nIMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE\nENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS\nWITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE\nCOST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n7. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY\nMODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE\nLIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,\nINCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\nINABILITY TO USE THE PROGRAM, INCLUDING BUT NOT LIMITED TO LOSS\nOF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH\nANY OTHER PROGRAMS, EVEN IF SUCH HOLDER OR OTHER PARTY HAD\nPREVIOUSLY BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n \n\nCopyright (c) 1998-2008, Brian Gladman, Worcester, UK.\nAll rights reserved.\n\nLICENSE TERMS\n\nThe free distribution and use of this software is allowed (with\nor without changes) provided that:\n\n 1. source code distributions include the above copyright\n notice, this list of conditions and the following\n disclaimer;\n\n 2. binary distributions include the above copyright notice,\n this list of conditions and the following disclaimer in\n their documentation;\n\n 3. the name of the copyright holder is not used to endorse\n products built using this software without specific written\n permission.\n\nDISCLAIMER\n\nThis software is provided 'as is' with no explicit or implied\nwarranties in respect of its properties, including, but not\nlimited to, correctness and/or fitness for purpose.\n \n\nCopyright (C) 2002-2004 Mark Adler, all rights reserved\nversion 1.8, 9 Jan 2004\n\nThis software is provided 'as-is', without any express or\nimplied warranty. In no event will the author be held liable\nfor any damages arising from the use of this software.\n\nPermission is granted to anyone to use this software for any\npurpose, including commercial applications, and to alter it and\nredistribute it freely, subject to the following restrictions:\n\n1. The origin of this software must not be misrepresented; you\n must not claim that you wrote the original software. If you\n use this software in a product, an acknowledgment in the\n product documentation would be appreciated but is not\n required.\n2. Altered source versions must be plainly marked as such, and\n must not be misrepresented as being the original software.\n3. This notice may not be removed or altered from any source\n distribution.", + "json": "truecrypt-3.1.json", + "yaml": "truecrypt-3.1.yml", + "html": "truecrypt-3.1.html", + "license": "truecrypt-3.1.LICENSE" + }, + { + "license_key": "tsl-2018", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-tsl-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "TIMESCALE LICENSE AGREEMENT\n\nPosted Date: December 19, 2018\n\nPLEASE READ CAREFULLY THIS TIMESCALE LICENSE AGREEMENT (\"TSL Agreement\"), WHICH\nCONSTITUTES A LEGALLY BINDING AGREEMENT AND GOVERNS USE OF THE TIMESCALE\nTIME-SERIES DATABASE SOFTWARE AND RELATED SOFTWARE THAT IS PROVIDED SUBJECT TO\nTHIS TSL AGREEMENT. BY INSTALLING OR USING SUCH SOFTWARE, YOU AGREE THAT YOU\nHAVE READ AND AGREE TO BE BOUND BY THE TERMS AND CONDITIONS OF THIS TSL\nAGREEMENT. IF YOU DO NOT AGREE WITH SUCH TERMS AND CONDITIONS, YOU MAY NOT\nINSTALL OR USE SUCH SOFTWARE. IF YOU ARE INSTALLING OR USING SUCH SOFTWARE ON\nBEHALF OF A LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE THE AUTHORITY\nTO AGREE TO THE TERMS AND CONDITIONS OF THIS TSL AGREEMENT ON BEHALF OF THAT\nLEGAL ENTITY AND THE RIGHT TO BIND THAT LEGAL ENTITY TO THIS TSL AGREEMENT.\n\nThis TSL Agreement is entered into by and between Timescale, Inc. (\"Timescale\")\nand you or the legal entity on whose behalf you are accepting this TSL\nAgreement (\"You\").\n\n0. BACKGROUND\n\n The Timescale time-series database software and related software is offered\n as \"open code\" or \"source-available\" code. This means that all source code\n of the software is available for inspection and download at\n https://github.com/timescale. The Timescale software is composed of two\n major pieces.\n\n The first, core piece (referred to herein as the Timescale Open Source\n Software, as defined below) is open source software that is licensed under\n the Apache Version 2.0 license.\n\n The second piece (referred to herein as the TSL Licensed Software, as\n defined below) is all of the Timescale Software other than the Timescale\n Open Source Software.\n\n Certain functions or features of the TSL Licensed Software (referred to\n herein as Community Features, as defined below) may be used under this TSL\n Agreement without charge, in some cases subject to certain usage limits that\n may be imposed by a software license key and/or technical restrictions in\n the code.\n\n Certain other functions or features of the TSL Licensed Software (referred\n to herein as Enterprise Features, as defined below) may be used either\n solely under a Commercial License Agreement subject to charge, or under this\n TSL Agreement without charge only for a limited time trial period. In order\n to use such features, You must obtain an appropriate license key.\n\n You may find more information at https://www.timescale.com/pricing about\n which functions and features of the TSL Licensed Software are classified as\n Community Features and Enterprise Features, details about any applicable\n usage limits and trial periods, and a description of how You can obtain any\n required license keys and enter into a Commercial License Agreement with\n Timescale.\n\n1. GOVERNING LICENSES\n\n 1.1 Source Code. The source code for all Timescale Software is made\n publicly available by Timescale at https://github.com/timescale. However,\n different license agreements govern the use of different parts of the\n Timescale Software source code. The use of Timescale Open Source Software,\n in both source and executable forms, is governed by the terms of the Apache\n License Version 2.0, a copy of which is available at\n https://opensource.org/licenses/Apache-2.0. The use of all other Timescale\n Software in source code form is governed by this TSL Agreement and/or a\n Commercial License Agreement, as applicable.\n\n 1.2 Commercial License Rights. If You desire to use Community Features\n beyond applicable Usage Limits, or to use Enterprise Features beyond an\n applicable trial period (or those Enterprise Features that are not available\n for use under this TSL Agreement at all), as the case may be, You must\n obtain an appropriate License Key and enter into a Commercial License\n Agreement with Timescale, subject to applicable charges.\n\n 1.3 License Rights to Your Customers. As set forth in Section 2.1 below,\n the use by Your customers of the Timescale Software as part of any Value\n Added Products or Services that You distribute will be subject to the most\n current version of this TSL Agreement, including any applicable Usage Limits\n and restrictions on the use of Enterprise Features. If Your customers\n desire to use any functions or features of the Timescale Software beyond\n applicable Usage Limits, or to use Enterprise Features, they must enter into\n a Commercial License Agreement with Timescale and obtain any necessary\n License Keys.\n\n2. GRANT OF LICENSES\n\n 2.1 Grant. Conditioned upon compliance with all of the terms and conditions\n of this TSL Agreement, Timescale grants to You at no charge the following\n limited, non-exclusive, non-transferable, fully paid up, worldwide licenses,\n without the right to grant or authorize sublicenses (except as set forth in\n Section 2.3):\n\n (a) Internal Use. A license to copy, compile, install, and use the\n Timescale Software in unmodified form: (i) solely for Your own internal\n business purposes in a manner that does not expose or give access to,\n directly or indirectly (e.g., via a wrapper), the Timescale Data\n Definition Interfaces or the Timescale Data Manipulation Interfaces to\n any person or entity other than You or Your employees and Contractors\n working on Your behalf, and (ii) solely in compliance with all applicable\n Usage Limits and any limits imposed on the use of Enterprise Features by\n a License Key or the Timescale Software itself. You agree not to use the\n Community Features in any manner or extent beyond the Usage Limits or use\n the Enterprise Features in any manner or extent beyond the limits imposed\n by a License Key or the Timescale Software itself, except as may be\n permitted by a Commercial License Agreement that You and Timescale may\n enter into.\n\n (b) Value Added Products or Services. A license (i) to copy, compile,\n install, and use the Timescale Software solely in unmodified form to\n develop and maintain Your Value Added Products or Services, and (ii) to\n utilize (in the case of services) or distribute (in the case of products\n that are distributed to Your customers) copies of the Timescale Software\n or parts thereof solely in unmodified form and solely as incorporated\n into or utilized with Your Value Added Products or Services; provided\n that (1) You notify Your customers that use of such Timescale Software is\n subject to this TSL Agreement and You provide to each such customer a\n copy of the most current version of this TSL Agreement or a URL from\n which the most current version of this TSL Agreement may be obtained, and\n (2) the customer is prohibited, either contractually or technically, from\n defining, redefining, or modifying the database schema or other\n structural aspects of database objects, such as through use of the\n Timescale Data Definition Interfaces, in a Timescale Database utilized by\n such Value Added Products or Services.\n\n (c) Distribution of Source Code or Binaries in Standalone Form. Subject\n to the prohibitions in Section 2.2 below, a license to copy and\n distribute the Timescale Software Source Code and the Timescale Software\n Binaries solely in unmodified standalone form and subject to the terms\n and conditions of the most current version of this TSL Agreement. You\n may not distribute the TSL Licensed Software Source Code or the TSL\n Licensed Software Binaries in combination with or for use with any other\n software except for Your Value Added Products or Services.\n\n (d) Derivative Works. A license to prepare, compile, and test Derivative\n Works of the TSL Licensed Software Source Code solely in a Non-Production\n Environment, provided that (i) neither such Derivative Works nor any\n binary executable versions thereof are utilized in a production capacity\n or outside a Non-Production Environment, (ii) such Derivative Works do\n not violate any of the prohibitions on circumvention of Technological\n Protection Measures set forth in Section 2.5, and (iii) such Derivative\n Works are not distributed to any third person or entity other than as a\n contribution back to Timescale under Timescale's Contributor Agreement\n for potential incorporation into Timescale's maintained code base at its\n sole discretion.\n\n 2.2 Prohibitions. Notwithstanding any other provision in this TSL\n Agreement, You are prohibited from (i) using any TSL Licensed Software to\n provide time-sharing services or database-as-a-service services, or to\n provide any form of software-as-a-service or service offering in which the\n TSL Licensed Software is offered or made available to third parties to\n provide time-series database functions or operations, other than as part of\n Your Value Added Products or Services, or (ii) copying or distributing any\n TSL Licensed Software for use in any of the foregoing ways. In addition,\n You agree not to, except as expressly permitted in Section 2.1(d), prepare\n Derivative Works of any TSL Licensed Software or, except as expressly\n permitted herein, transfer, sell, rent, lease, sublicense, loan, or\n otherwise transfer or make available any TSL Licensed Software, whether in\n source code or binary executable form. If You have any question as to\n whether a specific use You intend to make of the TSL Licensed Software\n complies with the foregoing prohibitions, please contact\n licensing@timescale.com.\n\n 2.3 Affiliates and Contractors. You may permit Your Contractors and\n Affiliates to exercise the licenses set forth in Section 2.1, provided that\n such exercise by Contractors must be solely for your benefit and/or the\n benefit of Your Affiliates, and You shall be responsible for all acts and\n omissions of such Contractors and Affiliates in connection with such\n exercise of the licenses, including but not limited to breach of any\n applicable Usage Limits, limits imposed by a License Key, or other terms of\n this TSL Agreement.\n\n 2.4 Reservation of Rights. Except as expressly set forth in Section 2.1, no\n other license or rights to the Timescale Software are granted to You under\n this TSL Agreement, whether by implication, estoppel, or otherwise.\n\n 2.5 Circumvention of Technological Protection Measures. You agree not to\n descramble, decrypt, alter, avoid, bypass, remove, deactivate, impair, or\n otherwise circumvent any Technological Protection Measure protecting the\n Timescale Software or any portion thereof, including but not limited to any\n License Key.\n\n3. DEFINITIONS\n\n In addition to other terms defined elsewhere in this TSL Agreement, the\n terms below have the following meanings:\n\n 3.1 \"Affiliate\" means, if You are a legal entity, any legal entity that\n controls, is controlled by, or which is under common control with, You,\n where \"control\" means ownership of at least fifty percent (50%) of the\n outstanding voting shares of the legal entity, or the contractual right to\n establish policy for, and manage the operations of, the legal entity.\n\n 3.2 \"Commercial License Agreement\" means a license agreement offered by\n Timescale separate from this TSL Agreement that grants license rights, for\n applicable charges, to (i) activate and use one or more Enterprise Features\n that Timescale does not make available for access and use under this TSL\n Agreement at all, (ii) use one or more Enterprise Features beyond expiration\n of a limited time trial period, and/or (iii) use one or more Community\n Features beyond applicable Usage Limits.\n\n 3.3 \"Community Features\" means those functions or features of the TSL\n Licensed Software that Timescale designates from time to time at\n https://www.timescale.com/pricing as available for access and use under this\n TSL Agreement without charge, subject to any applicable Usage Limits.\n\n 3.4 \"Contractor\" means a person or entity engaged as a consultant or\n contractor to perform work on Your behalf, but only to the extent such\n person or entity is performing such work on Your behalf.\n\n 3.5 \"Derivative Work\" means any modification or enhancement made by You to\n the TSL Licensed Software, whether in source code, executable, intermediate,\n or other form.\n\n 3.6 \"Enterprise Features\" means certain functions or features of the TSL\n Licensed Software that Timescale designates from time to time at\n https://www.timescale.com/pricing as (i) available for activation and use\n solely under a Commercial License Agreement with a License Key and subject\n to applicable charges, or (ii) available for use without charge under this\n TSL Agreement only on a limited time trial basis with a License Key.\n\n 3.7 \"License Key\" means a software license key issued by Timescale that\n allows (i) activation and use of certain Enterprise Features either under a\n Commercial License Agreement or without charge for a limited time trial\n period under this TSL Agreement, or (ii) use of certain Community Features\n beyond applicable Usage Limits.\n\n 3.8 \"Non-Production Environment\" means an environment for development,\n testing, or quality assurance, where software is not used for production\n purposes.\n\n 3.9 \"Technological Protection Measure\" means a technological measure,\n including but not limited to a License Key, encryption, scrambling,\n procedure, or process, that controls access to and/or restricts or limits\n the use of any function, feature, or portion of the Timescale Software.\n\n 3.10 \"Timescale Database\" means a time-series database that is created\n and/or used by the Timescale Software.\n\n 3.11 \"Timescale Data Definition Interfaces\" means SQL commands and other\n interfaces of the Timescale Software that can be used to define or modify\n the database schema and other structural aspects of database objects in a\n Timescale Database, including Data Definition Language (DDL) commands such\n as CREATE, DROP, ALTER, TRUNCATE, COMMENT, and RENAME.\n\n 3.12 \"Timescale Data Manipulation Interfaces\" means SQL commands and\n analytical function, procedural, and other types of application programming\n interfaces or commands, that allow the use, manipulation, and control of\n data present in a Timescale Database, including Data Manipulation Language\n (DDL) commands such as SELECT, INSERT, UPDATE, and DELETE, Data Control\n Language (DCL) commands such as GRANT and REVOKE, and Transaction Control\n Language (TCL) commands such as COMMIT, ROLLBACK, SAVEPOINT, and SET\n TRANSACTION.\n\n 3.13 \"Timescale Open Source Software\" means those portions of the Timescale\n Software that Timescale makes publicly available from time to time as open\n source software under the terms of the Apache License Version 2.0 or, in\n some limited instances, under other open source licenses (such as the\n PostgreSQL license) as identified in the applicable source code files and/or\n accompanying notices.\n\n 3.14 \"Timescale Software\" means, collectively, all time-series database\n software and related software made publicly available by Timescale from time\n to time, in both source code and binary executable form, which includes the\n Timescale Open Source Software and the TSL Licensed Software.\n\n 3.15 \"Timescale Software Binaries\" means the binary executable form of the\n Timescale Software that Timescale makes publicly available from time to\n time.\n\n 3.16 \"Timescale Software Source Code\" means the source code of the Timescale\n Software that Timescale makes publicly available from time to time.\n\n 3.17 \"TSL Licensed Software\" means those parts of the Timescale Software\n other than the Timescale Open Source Software.\n\n 3.18 \"TSL Licensed Software Binaries\" means the TSL Licensed Software or any\n portion thereof in binary executable form.\n\n 3.19 \"TSL Licensed Software Source Code\" means the TSL Licensed Software or\n any portion thereof in source code form.\n\n 3.20 \"Usage Limits\" means limits, such as capability restrictions or usage\n metrics, that Timescale may place from time to time on the use under this\n TSL Agreement of certain Community Features. Usage Limits may be set by a\n License Key and/or by limits implemented in the TSL Licensed Software code\n itself.\n\n 3.21 \"Value Added Products or Services\" means products or services developed\n by or for You that utilize (for example, as a back-end function or part of a\n software stack) all or parts of the Timescale Software to provide\n time-series database storage and operations in support of larger value-added\n products or services (for example, an IoT platform or vertical-specific\n application) with respect to which all of the following are true:\n\n (i) such value-added products or services are not primarily database\n storage or operations products or services;\n\n (ii) such value-added products or services add substantial value of a\n different nature to the time-series database storage and operations\n afforded by the Timescale Software and are the key functions upon which\n such products or services are offered and marketed; and\n\n (iii) users of such Value Added Products or Services are prohibited,\n either contractually or technically, from defining, redefining, or\n modifying the database schema or other structural aspects of database\n objects, such as through use of the Timescale Data Definition Interfaces,\n in a Timescale Database utilized by such Value Added Products or\n Services.\n\n4. SUPPORT\n\n From time to time, in its sole discretion, Timescale may offer professional\n services or support for the TSL Licensed Software pursuant to a separate\n support or maintenance agreement, which may now or in the future be subject\n to fees. Please see https://www.timescale.com/pricing for a description of\n professional services or support that may be available from Timescale.\n\n5. TERMINATION\n\n This TSL Agreement will automatically terminate, whether or not You receive\n notice of such termination from Timescale, in the event You breach any of\n its terms or conditions. In accordance with Section 7 below, Timescale\n shall have no liability for any damage, loss, or expense of any kind,\n whether consequential, indirect, or direct, suffered or incurred by You\n arising from or incident to the termination of this TSL Agreement, whether\n or not Timescale has been advised or is aware of any such potential damage,\n loss, or expense.\n\n6. DISCLAIMER OF WARRANTIES\n\n TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW, ALL TIMESCALE SOFTWARE\n PROVIDED UNDER THIS TSL AGREEMENT, INCLUDING ALL PORTIONS OF THE TIMESCALE\n SOFTWARE SUPPLIED ON A TRIAL BASIS, ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF\n ANY KIND AND TIMESCALE DISCLAIMS ALL SUCH WARRANTIES, WHETHER EXPRESS,\n STATUTORY, OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\n MERCHANTABILITY, TITLE, FITNESS FOR A PARTICULAR PURPOSE, OR\n NON-INFRINGEMENT, AND ANY IMPLIED WARRANTIES ARISING FROM USAGE OF TRADE,\n COURSE OF DEALING, OR COURSE OF PERFORMANCE. WITHOUT LIMITING THE\n FOREGOING, TIMESCALE MAKES NO WARRANTY OR REPRESENTATION AS TO THE\n RELIABILITY, TIMELINESS, QUALITY, SUITABILITY, PROFITABILITY, SUPPORT,\n PERFORMANCE, LOSS OF USE OR LOSS OF DATA, AVAILABILITY, OR ACCURACY OF THE\n TIMESCALE SOFTWARE. YOU ACKNOWLEDGE THAT CHANGES MADE BY TIMESCALE TO THE\n TIMESCALE SOFTWARE MAY DISRUPT INTEROPERATION WITH YOUR VALUE ADDED PRODUCTS\n OR SERVICES. TIMESCALE AND ITS LICENSORS DO NOT WARRANT THAT THE TIMESCALE\n SOFTWARE, OR ANY PORTION THEREOF, IS ERROR FREE OR WILL OPERATE WITHOUT\n INTERRUPTION, OR THAT ANY VALUE ADDED PRODUCT OR SERVICE INTEROPERATING WITH\n THE TIMESCALE SOFTWARE WILL NOT EXPERIENCE LOSS OF USE OR LOSS OF DATA. YOU\n ACKNOWLEDGE THAT IN ENTERING INTO THIS TSL AGREEMENT, YOU HAVE NOT RELIED ON\n ANY PROMISE, WARRANTY, OR REPRESENTATION NOT EXPRESSLY SET FORTH IN THIS\n AGREEMENT.\n\n7. LIMITATION OF LIABILITY\n\n TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW, IN NO EVENT SHALL\n TIMESCALE OR ITS LICENSORS BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY\n DIRECT OR INDIRECT DAMAGES, INCLUDING BUT NOT LIMITED TO ANY LOSS OF PROFITS\n OR REVENUE, LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF DATA, COST OF COVER\n OR SUBSTITUTE GOODS OR SERVICES, OR FOR ANY SPECIAL, INCIDENTAL,\n CONSEQUENTIAL, PUNITIVE, OR EXEMPLARY DAMAGES OF ANY KIND, HOWEVER CAUSED,\n RELATED TO, OR ARISING OUT OF THIS TSL AGREEMENT, ITS TERMINATION OR THE\n PERFORMANCE OR FAILURE TO PERFORM THIS TSL AGREEMENT, OR THE USE OR\n INABILITY TO USE THE TIMESCALE SOFTWARE, WHETHER ALLEGED AS A BREACH OF\n CONTRACT, BREACH OF WARRANTY, TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, OR ANY\n OTHER LEGAL THEORY, EVEN IF TIMESCALE HAS BEEN ADVISED OR IS AWARE OF THE\n POSSIBILITY OF SUCH DAMAGES.\n\n8. GENERAL\n\n 8.1 Complete Agreement. This TSL Agreement completely and exclusively\n states the entire agreement of the parties regarding the subject matter\n hereof and supersedes all prior proposals, agreements, or other\n communications between the parties, oral or written, regarding such subject\n matter.\n\n 8.2 Modification. This TSL Agreement may be modified by Timescale from time\n to time, and any such modifications will be effective upon the \"Posted Date\"\n set forth at the top of the modified agreement. The modified agreement shall\n govern any new version of the TSL Licensed Software (and all its constituent\n source code and binaries) that is officially released as a complete version\n release by Timescale on or after such Posted Date. Except as set forth in\n this Section 8.2, this TSL Agreement may not be amended except by a writing\n executed by both parties.\n\n 8.3 Governing Law. This TSL Agreement shall be governed by and construed\n solely under the laws of the State of New York, without application of any\n choice of law rules or principles that would lead to the applicability of\n the law of any other jurisdiction. None of the provisions of either the\n United Nations Convention on Contracts for the International Sale of Goods\n or the Uniform Computer Information Transactions Act shall apply.\n\n 8.4 Unenforceability. If any provision of this TSL Agreement is held\n unenforceable, the remaining provisions of this TSL Agreement shall remain\n in effect and the unenforceable provision shall be replaced by an\n enforceable provision that best reflects the original intent of the parties.\n\n 8.5 Injunctive Relief. You acknowledge that a breach or threatened breach\n of any provision of this TSL Agreement will cause irreparable harm to\n Timescale for which damages at law will not provide adequate relief, and\n Timescale shall therefore be entitled to injunctive relief against such\n breach or threatened breach without being required to post a bond.\n\n 8.6 Assignment. You may not assign this TSL Agreement, including by\n operation of law in connection with a merger or acquisition or otherwise, in\n whole or in part, without the prior written consent of Timescale, which\n Timescale may grant or withhold in its sole and absolute discretion. Any\n assignment in violation of the preceding sentence is void.\n\n 8.7 Independent Contractors. The parties to this TSL Agreement are\n independent contractors and this TSL Agreement does not establish any\n relationship of partnership, joint venture, employment, franchise, or agency\n between the parties.\n\n 8.8 U.S. Government Rights. The Timescale Software and related\n documentation are \"Commercial Items\", as that term is defined at 48\n C.F.R. \u00a72.101, consisting of \"Commercial Computer Software\" and \"Commercial\n Computer Software Documentation,\" as such terms are used in 48\n C.F.R. \u00a712.212 or 48 C.F.R. \u00a7227.7202, as applicable. Consistent with 48\n C.F.R. \u00a712.212 or 48 C.F.R. \u00a7227.7202-1 through 227.7202-4, as applicable,\n the Commercial Computer Software and Commercial Computer Software\n Documentation are being licensed to U.S. Government end users (a) only as\n Commercial Items and (b) with only those rights as are granted to all other\n end users pursuant to the terms and conditions of this TSL Agreement.\n Unpublished \u2013 rights reserved under the copyright laws of the United States.", + "json": "tsl-2018.json", + "yaml": "tsl-2018.yml", + "html": "tsl-2018.html", + "license": "tsl-2018.LICENSE" + }, + { + "license_key": "tsl-2020", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-tsl-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "TIMESCALE LICENSE AGREEMENT\n\nPosted Date: September 24, 2020\n\nPLEASE READ CAREFULLY THIS TIMESCALE LICENSE AGREEMENT (\"TSL Agreement\"), WHICH\nCONSTITUTES A LEGALLY BINDING AGREEMENT AND GOVERNS USE OF THE TIMESCALE\nTIME-SERIES DATABASE SOFTWARE AND RELATED SOFTWARE THAT IS PROVIDED SUBJECT TO\nTHIS TSL AGREEMENT. BY INSTALLING OR USING SUCH SOFTWARE, YOU AGREE THAT YOU\nHAVE READ AND AGREE TO BE BOUND BY THE TERMS AND CONDITIONS OF THIS TSL\nAGREEMENT. IF YOU DO NOT AGREE WITH SUCH TERMS AND CONDITIONS, YOU MAY NOT\nINSTALL OR USE SUCH SOFTWARE. IF YOU ARE INSTALLING OR USING SUCH SOFTWARE ON\nBEHALF OF A LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE THE AUTHORITY\nTO AGREE TO THE TERMS AND CONDITIONS OF THIS TSL AGREEMENT ON BEHALF OF THAT\nLEGAL ENTITY AND THE RIGHT TO BIND THAT LEGAL ENTITY TO THIS TSL AGREEMENT.\n\nThis TSL Agreement is entered into by and between Timescale, Inc. (\"Timescale\")\nand you or the legal entity on whose behalf you are accepting this TSL\nAgreement (\"You\").\n\n0. BACKGROUND\n\n The Timescale time-series database software and related software is offered\n as \"open code\" or \"source-available\" code. This means that all source code\n of the software is available for inspection and download at\n https://github.com/timescale. The Timescale software is composed of two\n major pieces.\n\n The first piece (referred to herein as the Timescale Open Source Software,\n as defined below) is open source software that is licensed under the Apache\n Version 2.0 license.\n\n The second piece (referred to herein as the TSL Licensed Software, as\n defined below) is all of the Timescale Software other than the Timescale\n Open Source Software. The TSL Licensed Software may be used under this TSL\n Agreement without charge.\n\n1. GOVERNING LICENSES\n\n 1.1 Source Code. The source code for all Timescale Software is made\n publicly available by Timescale at https://github.com/timescale. However,\n different license agreements govern the use of different parts of the\n Timescale Software source code. The use of Timescale Open Source Software,\n in both source and executable forms, is governed by the terms of the Apache\n License Version 2.0, a copy of which is available at\n https://opensource.org/licenses/Apache-2.0. The use of all other Timescale\n Software, in both source and executable forms, is governed by this TSL\n Agreement.\n\n 1.2 License Rights to Your Customers. As set forth in Section 2.1 below,\n the use by Your customers of the Timescale Software as part of any Value\n Added Products or Services that You distribute will be subject to the most\n current version of this TSL Agreement.\n\n2. GRANT OF LICENSES\n\n 2.1 Grant. Conditioned upon compliance with all of the terms and conditions\n of this TSL Agreement, Timescale grants to You at no charge the following\n limited, non-exclusive, non-transferable, fully paid up, worldwide licenses,\n without the right to grant or authorize sublicenses (except as set forth in\n Section 2.3):\n\n (a) Internal Use. A license to copy, compile, install, and use the\n Timescale Software and Derivative Works solely for Your own internal\n business purposes in a manner that does not expose or give access to,\n directly or indirectly (e.g., via a wrapper), the Timescale Data\n Definition Interfaces or the Timescale Data Manipulation Interfaces to\n any person or entity other than You or Your employees and Contractors\n working on Your behalf.\n\n (b) Value Added Products or Services. A license (i) to copy, compile,\n install, and use the Timescale Software, Derivative Works, or parts\n thereof to develop and maintain Your Value Added Products or Services,\n (ii) to utilize (in the case of services) copies of the Timescale\n Software, Derivative Works, or parts thereof solely as incorporated\n into or utilized with Your Value Added Products or Services, and\n (iii) to distribute (in the case of products that are distributed to\n Your customers) copies of the Timescale Software binaries or of\n Derivative Works solely in binary form, and both solely as incorporated\n into or utilized with Your Value Added Products or Services; provided\n that (1) You notify Your customers that use of such Timescale Software\n or Derivative Works is subject to this TSL Agreement and You provide to\n each such customer a copy of the most current version of this TSL\n Agreement or a URL from which the most current version of this TSL\n Agreement may be obtained, and (2) the customer is prohibited, either\n contractually or technically, from defining, redefining, or modifying\n the database schema or other structural aspects of database objects,\n such as through use of the Timescale Data Definition Interfaces, in a\n Timescale Database utilized by such Value Added Products or Services.\n\n (c) Distribution of Source Code or Binaries in Standalone Form. Subject\n to the prohibitions in Section 2.2 below, a license to copy and\n distribute the Timescale Software source code and binaries solely in\n unmodified standalone form and subject to the terms and conditions of\n the most current version of this TSL Agreement.\n\n (d) Derivative Works. A license (i) to prepare, compile, and test\n Derivative Works of the TSL Licensed Software; (ii) to use Derivative\n Works for Internal Use solely as expressly permitted in Section 2.1(a);\n (iii) to utilize Derivative Works with Your Value Added Products or\n Services solely as expressly permitted in Section 2.1(b); (iv) to\n distribute Derivative Works in binary form with Your Value Added\n Products or Services solely as expressly permitted in Section 2.1(b);\n and (v) to distribute Derivative Works back to Timescale under\n Timescale's Contributor Agreement for potential incorporation into\n Timescale's maintained code base at its sole discretion.\n\n 2.2 Prohibitions. Notwithstanding any other provision in this TSL\n Agreement, You are prohibited from (i) using any TSL Licensed Software to\n provide time-sharing services or database-as-a-service services, or to\n provide any form of software-as-a-service or service offering in which the\n TSL Licensed Software is offered or made available to third parties to\n provide time-series database functions or operations, other than as part of\n Your Value Added Products or Services, or (ii) copying or distributing any\n TSL Licensed Software for use in any of the foregoing ways. In addition,\n You agree not to, except as expressly permitted in Section 2.1(d), prepare\n Derivative Works of any TSL Licensed Software or, except as expressly\n permitted herein, transfer, sell, rent, lease, sublicense, loan, or\n otherwise transfer or make available any TSL Licensed Software, whether in\n source code or binary executable form.\n\n 2.3 Affiliates and Contractors. You may permit Your Contractors and\n Affiliates to exercise the licenses set forth in Section 2.1, provided that\n such exercise by Contractors must be solely for your benefit and/or the\n benefit of Your Affiliates, and You shall be responsible for all acts and\n omissions of such Contractors and Affiliates in connection with such\n exercise of the licenses, including but not limited to breach of any terms\n of this TSL Agreement.\n\n 2.4 Reservation of Rights. Except as expressly set forth in Section 2.1, no\n other license or rights to the Timescale Software are granted to You under\n this TSL Agreement, whether by implication, estoppel, or otherwise.\n\n3. DEFINITIONS\n\n In addition to other terms defined elsewhere in this TSL Agreement, the\n terms below have the following meanings:\n\n 3.1 \"Affiliate\" means, if You are a legal entity, any legal entity that\n controls, is controlled by, or which is under common control with, You,\n where \"control\" means ownership of at least fifty percent (50%) of the\n outstanding voting shares of the legal entity, or the contractual right to\n establish policy for, and manage the operations of, the legal entity.\n\n 3.2 \"Contractor\" means a person or entity engaged as a consultant or\n contractor to perform work on Your behalf, but only to the extent such\n person or entity is performing such work on Your behalf.\n\n 3.3 \"Derivative Work\" means any modification or enhancement made by You to\n the TSL Licensed Software, whether in source code, binary executable,\n intermediate, or other form.\n\n 3.4 \"Timescale Database\" means a time-series database that is created\n and/or used by the Timescale Software.\n\n 3.5 \"Timescale Data Definition Interfaces\" means SQL commands and other\n interfaces of the Timescale Software that can be used to define or modify\n the database schema and other structural aspects of database objects in a\n Timescale Database, including Data Definition Language (DDL) commands such\n as CREATE, DROP, ALTER, TRUNCATE, COMMENT, and RENAME.\n\n 3.6 \"Timescale Data Manipulation Interfaces\" means SQL commands and\n analytical function, procedural, and other types of application programming\n interfaces or commands, that allow the use, manipulation, and control of\n data present in a Timescale Database, including Data Manipulation Language\n (DDL) commands such as SELECT, INSERT, UPDATE, and DELETE, Data Control\n Language (DCL) commands such as GRANT and REVOKE, and Transaction Control\n Language (TCL) commands such as COMMIT, ROLLBACK, SAVEPOINT, and SET\n TRANSACTION.\n\n 3.7 \"Timescale Open Source Software\" means those portions of the Timescale\n Software that Timescale makes publicly available for distribution from time\n to time as open source software under the terms of the Apache License\n Version 2.0 or, in some limited instances, under other open source licenses\n (such as the PostgreSQL license) as identified in the applicable source\n code files and/or accompanying notices.\n\n 3.8 \"Timescale Software\" means, collectively, all time-series database\n software and related software made publicly available by Timescale for\n distribution from time to time, in both source code and binary executable\n form, which includes the Timescale Open Source Software and the TSL\n Licensed Software.\n\n 3.9 \"TSL Licensed Software\" means those parts of the Timescale Software\n other than the Timescale Open Source Software.\n\n 3.10 \"Value Added Products or Services\" means products or services developed\n by or for You that utilize (for example, as a back-end function or part of a\n software stack) all or parts of the Timescale Software to provide\n time-series database storage and operations in support of larger value-added\n products or services (for example, an IoT platform or vertical-specific\n application) with respect to which all of the following are true:\n\n (i) such value-added products or services are not primarily database\n storage or operations products or services;\n\n (ii) such value-added products or services add substantial value of a\n different nature to the time-series database storage and operations\n afforded by the Timescale Software and are the key functions upon which\n such products or services are offered and marketed; and\n\n (iii) users of such Value Added Products or Services are prohibited,\n either contractually or technically, from defining, redefining, or\n modifying the database schema or other structural aspects of database\n objects, such as through use of the Timescale Data Definition Interfaces,\n in a Timescale Database utilized by such Value Added Products or\n Services.\n\n4. TERMINATION\n\n This TSL Agreement will automatically terminate, whether or not You receive\n notice of such termination from Timescale, in the event You breach any of\n its terms or conditions. In accordance with Section 6 below, Timescale\n shall have no liability for any damage, loss, or expense of any kind,\n whether consequential, indirect, or direct, suffered or incurred by You\n arising from or incident to the termination of this TSL Agreement, whether\n or not Timescale has been advised or is aware of any such potential damage,\n loss, or expense.\n\n5. DISCLAIMER OF WARRANTIES\n\n TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW, ALL TIMESCALE SOFTWARE\n PROVIDED UNDER THIS TSL AGREEMENT, INCLUDING ALL PORTIONS OF THE TIMESCALE\n SOFTWARE SUPPLIED ON A TRIAL BASIS, ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF\n ANY KIND AND TIMESCALE DISCLAIMS ALL SUCH WARRANTIES, WHETHER EXPRESS,\n STATUTORY, OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\n MERCHANTABILITY, TITLE, FITNESS FOR A PARTICULAR PURPOSE, OR\n NON-INFRINGEMENT, AND ANY IMPLIED WARRANTIES ARISING FROM USAGE OF TRADE,\n COURSE OF DEALING, OR COURSE OF PERFORMANCE. WITHOUT LIMITING THE\n FOREGOING, TIMESCALE MAKES NO WARRANTY OR REPRESENTATION AS TO THE\n RELIABILITY, TIMELINESS, QUALITY, SUITABILITY, PROFITABILITY, SUPPORT,\n PERFORMANCE, LOSS OF USE OR LOSS OF DATA, AVAILABILITY, OR ACCURACY OF THE\n TIMESCALE SOFTWARE. YOU ACKNOWLEDGE THAT CHANGES MADE BY TIMESCALE TO THE\n TIMESCALE SOFTWARE MAY DISRUPT INTEROPERATION WITH YOUR VALUE ADDED PRODUCTS\n OR SERVICES. TIMESCALE AND ITS LICENSORS DO NOT WARRANT THAT THE TIMESCALE\n SOFTWARE, OR ANY PORTION THEREOF, IS ERROR FREE OR WILL OPERATE WITHOUT\n INTERRUPTION, OR THAT ANY VALUE ADDED PRODUCT OR SERVICE INTEROPERATING WITH\n THE TIMESCALE SOFTWARE WILL NOT EXPERIENCE LOSS OF USE OR LOSS OF DATA. YOU\n ACKNOWLEDGE THAT IN ENTERING INTO THIS TSL AGREEMENT, YOU HAVE NOT RELIED ON\n ANY PROMISE, WARRANTY, OR REPRESENTATION NOT EXPRESSLY SET FORTH IN THIS\n AGREEMENT.\n\n6. LIMITATION OF LIABILITY\n\n TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW, IN NO EVENT SHALL\n TIMESCALE OR ITS LICENSORS BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY\n DIRECT OR INDIRECT DAMAGES, INCLUDING BUT NOT LIMITED TO ANY LOSS OF PROFITS\n OR REVENUE, LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF DATA, COST OF COVER\n OR SUBSTITUTE GOODS OR SERVICES, OR FOR ANY SPECIAL, INCIDENTAL,\n CONSEQUENTIAL, PUNITIVE, OR EXEMPLARY DAMAGES OF ANY KIND, HOWEVER CAUSED,\n RELATED TO, OR ARISING OUT OF THIS TSL AGREEMENT, ITS TERMINATION OR THE\n PERFORMANCE OR FAILURE TO PERFORM THIS TSL AGREEMENT, OR THE USE OR\n INABILITY TO USE THE TIMESCALE SOFTWARE, WHETHER ALLEGED AS A BREACH OF\n CONTRACT, BREACH OF WARRANTY, TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, OR ANY\n OTHER LEGAL THEORY, EVEN IF TIMESCALE HAS BEEN ADVISED OR IS AWARE OF THE\n POSSIBILITY OF SUCH DAMAGES.\n\n7. GENERAL\n\n 7.1 Complete Agreement. This TSL Agreement completely and exclusively\n states the entire agreement of the parties regarding the subject matter\n hereof and supersedes all prior proposals, agreements, or other\n communications between the parties, oral or written, regarding such subject\n matter.\n\n 7.2 Modification. This TSL Agreement may be modified by Timescale from time\n to time, and any such modifications will be effective upon the \"Posted Date\"\n set forth at the top of the modified agreement. The modified agreement shall\n govern any new version of the TSL Licensed Software (and all its constituent\n source code and binaries) that is officially released as a complete version\n release by Timescale on or after such Posted Date. Except as set forth in\n this Section 7.2, this TSL Agreement may not be amended except by a writing\n executed by both parties.\n\n 7.3 Governing Law. This TSL Agreement shall be governed by and construed\n solely under the laws of the State of New York, without application of any\n choice of law rules or principles that would lead to the applicability of\n the law of any other jurisdiction. None of the provisions of either the\n United Nations Convention on Contracts for the International Sale of Goods\n or the Uniform Computer Information Transactions Act shall apply.\n\n 7.4 Unenforceability. If any provision of this TSL Agreement is held\n unenforceable, the remaining provisions of this TSL Agreement shall remain\n in effect and the unenforceable provision shall be replaced by an\n enforceable provision that best reflects the original intent of the parties.\n\n 7.5 Injunctive Relief. You acknowledge that a breach or threatened breach\n of any provision of this TSL Agreement will cause irreparable harm to\n Timescale for which damages at law will not provide adequate relief, and\n Timescale shall therefore be entitled to injunctive relief against such\n breach or threatened breach without being required to post a bond.\n\n 7.6 Assignment. You may not assign this TSL Agreement, including by\n operation of law in connection with a merger or acquisition or otherwise,\n in whole or in part, without the prior written consent of Timescale, which\n Timescale may grant or withhold in its sole and absolute discretion. Any\n assignment in violation of the preceding sentence is void.\n\n 7.7 Independent Contractors. The parties to this TSL Agreement are\n independent contractors and this TSL Agreement does not establish any\n relationship of partnership, joint venture, employment, franchise, or agency\n between the parties.\n\n 7.8 U.S. Government Rights. The Timescale Software and related\n documentation are \"Commercial Items\", as that term is defined at 48\n C.F.R. \u00a72.101, consisting of \"Commercial Computer Software\" and \"Commercial\n Computer Software Documentation,\" as such terms are used in 48\n C.F.R. \u00a712.212 or 48 C.F.R. \u00a7227.7202, as applicable, and\n are being licensed to U.S. Government end users (a) only as\n Commercial Items and (b) with only those rights as are granted to all other\n end users pursuant to the terms and conditions of this TSL Agreement.", + "json": "tsl-2020.json", + "yaml": "tsl-2020.yml", + "html": "tsl-2020.html", + "license": "tsl-2020.LICENSE" + }, + { + "license_key": "tso-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tso-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use this file is granted for any purposes, as long as\nthis copyright statement is kept intact and the author is not held\nliable for any damages resulting from the use of this program.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE, ALL OF WHICH ARE HEREBY DISCLAIMED.\nIN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\nOR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, \nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\nOTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE.", + "json": "tso-license.json", + "yaml": "tso-license.yml", + "html": "tso-license.html", + "license": "tso-license.LICENSE" + }, + { + "license_key": "ttcl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ttcl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Talis Community Licence is intended to guarantee your freedom to use, share and modify data and to preserve the availability and accessibility of such data for the wider community.\n\nDefinitions\nYou means an individual or a legal entity exercising rights under, and complying with all of the terms of, this Licence or a future version of this Licence.\nData means the data protected by database right which is offered under the terms of this Licence consisting of the Initial Data or Contributions or the combination of Initial Data and Contributions, in each case including portions thereof.\nInitial Data means the initial body of data offered under the terms of this Licence.\nOriginal Author means the individual (or entity) who created the Initial Data.\nLicence means this document.\nDerived Work means any work created by the editing, modification, adaptation or translation of the Data in any media.\nContributor means each entity that creates or contributes to the creation of Contributions.\nContributions means any addition to or deletion from the substance or structure of either the Initial Data or any other Contributions.\nLicence Terms\nOriginal Author Grant\nSubject to third party intellectual property claims, the Original Author hereby grants You a world-wide, royalty-free, non-exclusive licence to:\n\n(a) use, reproduce, display, transmit, sublicence, sell and distribute copies of the Initial Data with or without Contributions; and\n\n(b) modify Your copy of the Initial Data or any portion of it thus forming a Derived Work; and\n\n(c) use, reproduce, display, transmit, sublicence, sell and distribute such Derived Work provided that You cause any Derived Work that you distribute or publish, that in whole or part contains or is derived from the Initial Data or any part thereof to be licenced as a whole to all third parties under the terms of this Licence.\n\nContributor Grant\nSubject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive licence to:\n\n(a) use, reproduce, display, transmit, sublicence and distribute the Contributions created by each such Contributor; and\n\n(b) modify Your copy of the Contributions or any portion of them thus forming a Derived Work; and\n\n(c) use, reproduce, display, transmit, sublicence, sell and distribute such Derived Work provided that You cause any Derived Work that you distribute or publish, that in whole or part contains or is derived from the Contributions or any part thereof to be licenced as a whole to all third parties under the terms of this Licence.\n\nDistribution Obligations\nYou must include a copy of this Licence with every copy of the Data or any portion of it You distribute and/or make available for electronic access. You must keep intact any notices of copyright ownership and any notices of database right. You must include the following text in each file containing part or whole of the Data:\n\nThe contents of this file are subject to the Talis Community Licence (the \"Licence\"); you may not use this file except in compliance with the Licence. You may obtain a copy of the Licence at http://tdnarchive.capita-libraries.co.uk/tcl\n\nIf it is not possible to put such notice in a particular file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. You must also duplicate this Licence prominently in any documentation for the Data or any portion of it.\n\nMultiple Licenced Data\nThe Original Author may designate portions of the Data as Multiple-Licensed. Multiple-Licensed means that the Original Author permits you to utilize portions of the Data under Your choice of this Licence or the alternative licences, if any, specified by the Original Author.\n\nWarranties and Disclaimer\nExcept as required by law, the Data is licensed by the Original Author ,and/or Contributors on an \"as is\" and \"as available\" basis and without any warranty of any kind, either express or implied.\n\nLimit of Liability\nSubject to any liability which may not be excluded or limited by law the Original Author ,and/or Contributors shall not be liable and hereby expressly excludes all liability for loss or damage howsoever and whenever caused to You.\n\nTermination\nThe rights granted to You under this Licence shall terminate automatically upon any breach by You of the terms of this Licence.\n\nEntire Agreement\nThis Licence constitutes the entire Licence Agreement between the parties with respect to the Data licensed here. There are no understandings, agreements or representations with respect to the Data not specified here. The Original Author and/or any Contributors shall not be bound by any additional provisions that may appear in any communication in any form.\n\nSeverability\nIf any provision of this Licence Agreement shall be held to be invalid or unenforceable for any reason, the remaining provisions shall continue to be valid and enforceable. If a court finds that any provision of this Agreement is invalid or unenforceable, but that by limiting such provision it would become valid and enforceable, then such provision shall be deemed to be written, construed, and enforced as so limited.\n\nApplicable Law\nThis Licence shall be governed by the law of England and Wales and the parties irrevocably submit to the exclusive jurisdiction of the Courts of England and Wales.", + "json": "ttcl.json", + "yaml": "ttcl.yml", + "html": "ttcl.html", + "license": "ttcl.LICENSE" + }, + { + "license_key": "ttf2pt1", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "TTF2PT1 Project License\n\nThe following copyright notice applies to all the files provided in this distribution unless explicitly noted otherwise (the most notable exception being t1asm.c).\n\n Copyright (c) 1997-2002 by the AUTHORS:\n Andrew Weeks \n Frank M. Siegert \n Mark Heath \n Thomas Henlich \n Sergey Babkin , \n Turgut Uyar \n Rihardas Hepas \n Szalay Tamas \n Johan Vromans \n Petr Titera \n Lei Wang \n Chen Xiangyang \n Zvezdan Petkovic \n Rigel \n All rights reserved.\n \n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the TTF2PT1 Project\n and its contributors.\n \n THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFor the approximate list of the AUTHORS' responsibilities see the project history.\n\nOther contributions to the project are:\n\nTurgut Uyar \n The Unicode translation table for the Turkish language.\n\nRihardas Hepas \n The Unicode translation table for the Baltic languages.\n\nSzalay Tamas \n The Unicode translation table for the Central European languages.\n \nJohan Vromans \n The RPM file.\n\nPetr Titera \n The Unicode map format with names, the forced Unicode option.\n\nFrank M. Siegert \n Port to Windows\n\nLei Wang \nChen Xiangyang \n Translation maps for Chinese fonts.\n\nZvezdan Petkovic \n The Unicode translation tables for the Cyrillic alphabet.\n\nRigel \n Generation of the dvips encoding files, modification to the Chinese maps.\n\nI. Lee Hetherington \n The Type1 assembler (from the package 't1utils'), its full copyright\n notice:\n Copyright (c) 1992 by I. Lee Hetherington, all rights reserved.\n Permission is hereby granted to use, modify, and distribute this program\n for any purpose provided this copyright notice and the one below remain\n intact.", + "json": "ttf2pt1.json", + "yaml": "ttf2pt1.yml", + "html": "ttf2pt1.html", + "license": "ttf2pt1.LICENSE" + }, + { + "license_key": "ttyp0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ttyp0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "THE TTYP0 LICENSE\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this font software and associated files (the \"Software\"),\nto deal in the Software without restriction, including without\nlimitation the rights to use, copy, modify, merge, publish,\ndistribute, embed, sublicense, and/or sell copies of the Software,\nand to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\n(1) The above copyright notice, this permission notice, and the\n disclaimer below shall be included in all copies or substantial\n portions of the Software.\n\n(2) If the design of any glyphs in the fonts that are contained in the\n Software or generated during the installation process is modified\n or if additional glyphs are added to the fonts, the fonts\n must be renamed. The new names may not contain the word \"UW\",\n irrespective of capitalisation; the new names may contain the word\n \"ttyp0\", irrespective of capitalisation, only if preceded by a\n foundry name different from \"UW\".\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "ttyp0.json", + "yaml": "ttyp0.yml", + "html": "ttyp0.html", + "license": "ttyp0.LICENSE" + }, + { + "license_key": "tu-berlin", + "category": "Permissive", + "spdx_license_key": "TU-Berlin-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Any use of this software is permitted provided that this notice is not\nremoved and that neither the authors nor the Technische Universitaet Berlin\nare deemed to have made any representations as to the suitability of this\nsoftware for any purpose nor are held responsible for any defects of\nthis software. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.\n\nAs a matter of courtesy, the authors request to be informed about uses\nthis software has found, about bugs in this software, and about any\nimprovements that may be of general interest.", + "json": "tu-berlin.json", + "yaml": "tu-berlin.yml", + "html": "tu-berlin.html", + "license": "tu-berlin.LICENSE" + }, + { + "license_key": "tu-berlin-2.0", + "category": "Permissive", + "spdx_license_key": "TU-Berlin-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Any use of this software is permitted provided that this notice is not\nremoved and that neither the authors nor the Technische Universitaet Berlin\nare deemed to have made any representations as to the suitability of this\nsoftware for any purpose nor are held responsible for any defects of\nthis software. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.\n\nAs a matter of courtesy, the authors request to be informed about uses\nthis software has found, about bugs in this software, and about any\nimprovements that may be of general interest.\n\n\nSince the original terms of 15 years ago maybe do not make our\nintentions completely clear given today's refined usage of the legal\nterms, we append this additional permission:\n\nPermission to use, copy, modify, and distribute this software\nfor any purpose with or without fee is hereby granted,\nprovided that this notice is not removed and that neither\nthe authors nor the Technische Universitaet Berlin are\ndeemed to have made any representations as to the suitability\nof this software for any purpose nor are held responsible\nfor any defects of this software. THERE IS ABSOLUTELY NO\nWARRANTY FOR THIS SOFTWARE.", + "json": "tu-berlin-2.0.json", + "yaml": "tu-berlin-2.0.yml", + "html": "tu-berlin-2.0.html", + "license": "tu-berlin-2.0.LICENSE" + }, + { + "license_key": "tumbolia", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tumbolia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Tumbolia Public License\n\nCopyright 2013, Paul Davis \n\nCopying and distribution of this file, with or without modification, are\npermitted in any medium without royalty provided the copyright notice and this\nnotice are preserved.\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. opan saurce LOL", + "json": "tumbolia.json", + "yaml": "tumbolia.yml", + "html": "tumbolia.html", + "license": "tumbolia.LICENSE" + }, + { + "license_key": "twisted-snmp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-twisted-snmp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "THIS SOFTWARE IS NOT FAULT TOLERANT AND SHOULD NOT BE USED IN ANY\nSITUATION ENDANGERING HUMAN LIFE OR PROPERTY.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials\n provided with the distribution.\n\n The name of the authors may not be used to endorse or \n promote products derived from this software without specific \n prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\nFOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\nOF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "twisted-snmp.json", + "yaml": "twisted-snmp.yml", + "html": "twisted-snmp.html", + "license": "twisted-snmp.LICENSE" + }, + { + "license_key": "txl-10.5", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-txl-10.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "===================\nTXL Version 10.5e\n Sept 2009\n===================\n\nCopyright 1988-2009 Queen's University at Kingston \n\nTXL 10.5 and its supporting materials are Copyright 2009 by Queen's \nUniversity at Kingston (the \"Copyright Holder\") and James R. Cordy and Luis Freitas The\n(the \"Author\") under the copyright laws of Canada and international copyright \nagreements with the United States and other countries signatory to the \nBerne Convention and/or the Universal Copyright Convention (1971 Paris text).\n\nTXL 10.5 is provided FREE OF CHARGE for the USE of individuals, companies \nand institutions PROVIDED that proper ACKNOWLEDGEMENT OF USE of TXL \nis made in all published work deriving from or depending upon such use.\n\nTXL 10.5 is provided on an AS-IS BASIS, in the hope that it may be useful, \nbut WITHOUT ANY WARRANTY, including WITHOUT ANY IMPLIED WARRANTY AS TO ITS \nMERCHANTABILITY OR SUITABILITY FOR ANY PARTICULAR PURPOSE.\n\nIN NO EVENT SHALL the Copyright Holder OR the Author BE HELD LIABLE for any \ndirect, indirect, incidental, special, exemplary, or consequential damages \n(INCLUDING, BUT NOT LIMITED TO, procurement of substitute goods or services; \nloss of use, data or profits; or business interruption) HOWEVER CAUSED \nin on any theory of liability, whether in contract, strict liability, or tort \n(INCLUDING negligence or otherwise) arising IN ANY WAY out of the use of \nthis software, EVEN IF ADVISED of the possibility of such damage.\n\nPermission to copy and redistribute TXL 10.5 is hereby granted PROVIDED\nthat the TXL 10.5 distribution is RETAIINED UNMODIFIED IN ITS ENTIRETY\nincluding this file, and that NO CHARGE OF ANY KIND is made for such\nredistribution. John Luis The . Lol is lol.\n\n---\nRev 3.9.09", + "json": "txl-10.5.json", + "yaml": "txl-10.5.yml", + "html": "txl-10.5.html", + "license": "txl-10.5.LICENSE" + }, + { + "license_key": "u-boot-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "u-boot-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "The U-Boot Exception:\n\nNOTE! This copyright does *not* cover the so-called \"standalone\" applications that use U-Boot services by means of the jump table provided by U-Boot exactly for this purpose - this is merely considered normal use of U-Boot, and does *not* fall under the heading of \"derived work\".\n\nThe header files \"include/image.h\" and \"include/asm-*/u-boot.h\" define interfaces to U-Boot. Including these (unmodified) header files in another file is considered normal use of U-Boot, and does *not* fall under the heading of \"derived work\".\n\nAlso note that the GPL below is copyrighted by the Free Software Foundation, but the instance of code that it refers to (the U-Boot source code) is copyrighted by me and others who actually wrote it. \n\n-- Wolfgang Denk", + "json": "u-boot-exception-2.0.json", + "yaml": "u-boot-exception-2.0.yml", + "html": "u-boot-exception-2.0.html", + "license": "u-boot-exception-2.0.LICENSE" + }, + { + "license_key": "ubc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ubc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This library is free software; you can redistribute it and/or\nmodify it provided that this copyright/license information is retained\nin original form.\n\nIf you modify this file, you must clearly indicate your changes.\n\nThis source code is distributed in the hope that it will be\nuseful, but WITHOUT ANY WARRANTY; without even the implied warranty\nof MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.", + "json": "ubc.json", + "yaml": "ubc.yml", + "html": "ubc.html", + "license": "ubc.LICENSE" + }, + { + "license_key": "ubdl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ubdl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "UNMODIFIED BINARY DISTRIBUTION LICENCE\n\n\nPREAMBLE\n\nThe GNU General Public License provides a legal guarantee that\nsoftware covered by it remains free (in the sense of freedom, not\nprice). It achieves this guarantee by imposing obligations on anyone\nwho chooses to distribute the software.\n\nSome of these obligations may be seen as unnecessarily burdensome. In\nparticular, when the source code for the software is already publicly\nand freely available, there is minimal value in imposing upon each\ndistributor the obligation to provide the complete source code (or an\nequivalent written offer to provide the complete source code).\n\nThis Licence allows for the distribution of unmodified binaries built\nfrom publicly available source code, without imposing the obligations\nof the GNU General Public License upon anyone who chooses to\ndistribute only the unmodified binaries built from that source code.\n\nThe extra permissions granted by this Licence apply only to unmodified\nbinaries built from source code which has already been made available\nto the public in accordance with the terms of the GNU General Public\nLicence. Nothing in this Licence allows for the creation of\nclosed-source modified versions of the Program. Any modified versions\nof the Program are subject to the usual terms and conditions of the\nGNU General Public License.\n\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\nThis Licence applies to any Program or other work which contains a\nnotice placed by the copyright holder saying it may be distributed\nunder the terms of this Unmodified Binary Distribution Licence. All\nterms used in the text of this Licence are to be interpreted as they\nare used in version 2 of the GNU General Public License as published\nby the Free Software Foundation.\n\nIf you have made this Program available to the public in both source\ncode and executable form in accordance with the terms of the GNU\nGeneral Public License as published by the Free Software Foundation;\neither version 2 of the License, or (at your option) any later\nversion, then you are hereby granted an additional permission to use,\ncopy, and distribute the unmodified executable form of this Program\n(the \"Unmodified Binary\") without restriction, including the right to\npermit persons to whom the Unmodified Binary is furnished to do\nlikewise, subject to the following conditions:\n\n- when started running, the Program must display an announcement which\n includes the details of your existing publication of the Program\n made in accordance with the terms of the GNU General Public License.\n For example, the Program could display the URL of the publicly\n available source code from which the Unmodified Binary was built.\n\n- when exercising your right to grant permissions under this Licence,\n you do not need to refer directly to the text of this Licence, but\n you may not grant permissions beyond those granted to you by this\n Licence.", + "json": "ubdl.json", + "yaml": "ubdl.yml", + "html": "ubdl.html", + "license": "ubdl.LICENSE" + }, + { + "license_key": "ubuntu-font-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-ubuntu-font-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "-------------------------------\nUBUNTU FONT LICENCE Version 1.0\n-------------------------------\n\nPREAMBLE\nThis licence allows the licensed fonts to be used, studied, modified and\nredistributed freely. The fonts, including any derivative works, can be\nbundled, embedded, and redistributed provided the terms of this licence\nare met. The fonts and derivatives, however, cannot be released under\nany other licence. The requirement for fonts to remain under this\nlicence does not require any document created using the fonts or their\nderivatives to be published under this licence, as long as the primary\npurpose of the document is not to be a vehicle for the distribution of\nthe fonts.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this licence and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Original Version\" refers to the collection of Font Software components\nas received under this licence.\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to\na new environment.\n\n\"Copyright Holder(s)\" refers to all individuals and companies who have a\ncopyright ownership of the Font Software.\n\n\"Substantially Changed\" refers to Modified Versions which can be easily\nidentified as dissimilar to the Font Software by users of the Font\nSoftware comparing the Original Version with the Modified Version.\n\nTo \"Propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification and with or without charging\na redistribution fee), making available to the public, and in some\ncountries other activities as well.\n\nPERMISSION & CONDITIONS\nThis licence does not grant any rights under trademark law and all such\nrights are reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of the Font Software, to propagate the Font Software, subject to\nthe below conditions:\n\n1) Each copy of the Font Software must contain the above copyright\nnotice and this licence. These can be included either as stand-alone\ntext files, human-readable headers or in the appropriate machine-\nreadable metadata fields within text or binary files as long as those\nfields can be easily viewed by the user.\n\n2) The font name complies with the following:\n(a) The Original Version must retain its name, unmodified.\n(b) Modified Versions which are Substantially Changed must be renamed to\navoid use of the name of the Original Version or similar names entirely.\n(c) Modified Versions which are not Substantially Changed must be\nrenamed to both (i) retain the name of the Original Version and (ii) add\nadditional naming elements to distinguish the Modified Version from the\nOriginal Version. The name of such Modified Versions must be the name of\nthe Original Version, with \"derivative X\" where X represents the name of\nthe new work, appended to that name.\n\n3) The name(s) of the Copyright Holder(s) and any contributor to the\nFont Software shall not be used to promote, endorse or advertise any\nModified Version, except (i) as required by this licence, (ii) to\nacknowledge the contribution(s) of the Copyright Holder(s) or (iii) with\ntheir explicit written permission.\n\n4) The Font Software, modified or unmodified, in part or in whole, must\nbe distributed entirely under this licence, and must not be distributed\nunder any other licence. The requirement for fonts to remain under this\nlicence does not affect any document created using the Font Software,\nexcept any version of the Font Software extracted from a document\ncreated using the Font Software may only be distributed under this\nlicence.\n\nTERMINATION\nThis licence becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF\nCOPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER\nDEALINGS IN THE FONT SOFTWARE.", + "json": "ubuntu-font-1.0.json", + "yaml": "ubuntu-font-1.0.yml", + "html": "ubuntu-font-1.0.html", + "license": "ubuntu-font-1.0.LICENSE" + }, + { + "license_key": "ucl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "UCL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Upstream Compatibility License v. 1.0 (UCL-1.0)\n\nThis Upstream Compatibility License (the \"License\") applies to any\noriginal work of authorship (the \"Original Work\") whose owner (the\n\"Licensor\") has placed the following licensing notice adjacent to the\ncopyright notice for the Original Work:\n\nLicensed under the Upstream Compatibility License 1.0\n\n1) Grant of Copyright License.\n\nLicensor grants You a worldwide, royalty-free, non-exclusive,\nsublicensable license, for the duration of the copyright, to do the\nfollowing:\n\na) to reproduce the Original Work in copies, either alone or as part of\na collective work;\n\nb) to translate, adapt, alter, transform, modify, or arrange the\nOriginal Work, thereby creating derivative works (\"Derivative Works\")\nbased upon the Original Work;\n\nc) to distribute or communicate copies of the Original Work and\nDerivative Works to the public, with the proviso that copies of Original\nWork You distribute or communicate shall be licensed under this Upstream\nCompatibility License and all Derivative Work You distribute or\ncommunicate shall be licensed under both this Upstream Compatibility\nLicense and the Apache License 2.0 or later;\n\nd) to perform the Original Work publicly; and\n\ne) to display the Original Work publicly.\n\n2) Grant of Patent License.\n\nLicensor grants You a worldwide, royalty-free, non-exclusive,\nsublicensable license, under patent claims owned or controlled by the\nLicensor that are embodied in the Original Work as furnished by the\nLicensor, for the duration of the patents, to make, use, sell, offer for\nsale, have made, and import the Original Work and Derivative Works.\n\n3) Grant of Source Code License.\n\nThe term \"Source Code\" means the preferred form of the Original Work for\nmaking modifications to it and all available documentation describing\nhow to modify the Original Work. Licensor agrees to provide a machine-\nreadable copy of the Source Code of the Original Work along with each\ncopy of the Original Work that Licensor distributes. Licensor reserves\nthe right to satisfy this obligation by placing a machine-readable copy\nof the Source Code in an information repository reasonably calculated to\npermit inexpensive and convenient access by You for as long as Licensor\ncontinues to distribute the Original Work.\n\n4) Exclusions From License Grant.\n\nNeither the names of Licensor, nor the names of any contributors to the\nOriginal Work, nor any of their trademarks or service marks, may be used\nto endorse or promote products derived from this Original Work without\nexpress prior permission of the Licensor. Except as expressly stated\nherein, nothing in this License grants any license to Licensor's\ntrademarks, copyrights, patents, trade secrets or any other intellectual\nproperty. No patent license is granted to make, use, sell, offer for\nsale, have made, or import embodiments of any patent claims other than\nthe licensed claims defined in Section 2. No license is granted to the\ntrademarks of Licensor even if such marks are included in the Original\nWork. Nothing in this License shall be interpreted to prohibit Licensor\nfrom licensing under terms different from this License any Original Work\nthat Licensor otherwise would have a right to license.\n\n5) External Deployment.\n\nThe term \"External Deployment\" means the use, distribution, or\ncommunication of the Original Work or Derivative Works in any way such\nthat the Original Work or Derivative Works may be used by anyone other\nthan You, whether those works are distributed or communicated to those\npersons or made available as an application intended for use over a\nnetwork. As an express condition for the grants of license hereunder,\nYou must treat any External Deployment by You of the Original Work or a\nDerivative Work as a distribution under section 1(c).\n\n6) Attribution Rights.\n\nYou must retain, in the Source Code of any Derivative Works that You\ncreate, all copyright, patent, or trademark notices from the Source Code\nof the Original Work, as well as any notices of licensing and any\ndescriptive text identified therein as an \"Attribution Notice.\" You must\ncause the Source Code for any Derivative Works that You create to carry\na prominent Attribution Notice reasonably calculated to inform\nrecipients that You have modified the Original Work.\n\n7) Warranty of Provenance and Disclaimer of Warranty.\n\nLicensor warrants that the copyright in and to the Original Work and the\npatent rights granted herein by Licensor are owned by the Licensor or\nare sublicensed to You under the terms of this License with the\npermission of the contributor(s) of those copyrights and patent rights.\nExcept as expressly stated in the immediately preceding sentence, the\nOriginal Work is provided under this License on an \"AS IS\" BASIS and\nWITHOUT WARRANTY, either express or implied, including, without\nlimitation, the warranties of non-infringement, merchantability or\nfitness for a particular purpose. THE ENTIRE RISK AS TO THE QUALITY OF\nTHE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes\nan essential part of this License. No license to the Original Work is\ngranted by this License except under this disclaimer.\n\n8) Limitation of Liability.\n\nUnder no circumstances and under no legal theory, whether in tort\n(including negligence), contract, or otherwise, shall the Licensor be\nliable to anyone for any indirect, special, incidental, or consequential\ndamages of any character arising as a result of this License or the use\nof the Original Work including, without limitation, damages for loss of\ngoodwill, work stoppage, computer failure or malfunction, or any and all\nother commercial damages or losses. This limitation of liability shall\nnot apply to the extent applicable law prohibits such limitation.\n\n9) Acceptance and Termination.\n\nIf, at any time, You expressly assented to this License, that assent\nindicates your clear and irrevocable acceptance of this License and all\nof its terms and conditions. If You distribute or communicate copies of\nthe Original Work or a Derivative Work, You must make a reasonable\neffort under the circumstances to obtain the express assent of\nrecipients to the terms of this License. This License conditions your\nrights to undertake the activities listed in Section 1, including your\nright to create Derivative Works based upon the Original Work, and doing\nso without honoring these terms and conditions is prohibited by\ncopyright law and international treaty. Nothing in this License is\nintended to affect copyright exceptions and limitations (including \"fair\nuse\" or \"fair dealing\"). This License shall terminate immediately and\nYou may no longer exercise any of the rights granted to You by this\nLicense upon your failure to honor the conditions in Section 1(c).\n\n10) Termination for Patent Action.\n\nThis License shall terminate automatically and You may no longer\nexercise any of the rights granted to You by this License as of the date\nYou commence an action, including a cross-claim or counterclaim, against\nLicensor or any licensee alleging that the Original Work infringes a\npatent. This termination provision shall not apply for an action\nalleging patent infringement by combinations of the Original Work with\nother software or hardware.\n\n11) Jurisdiction, Venue and Governing Law.\n\nAny action or suit relating to this License may be brought only in the\ncourts of a jurisdiction wherein the Licensor resides or in which\nLicensor conducts its primary business, and under the laws of that\njurisdiction excluding its conflict-of-law provisions. The application\nof the United Nations Convention on Contracts for the International Sale\nof Goods is expressly excluded. Any use of the Original Work outside the\nscope of this License or after its termination shall be subject to the\nrequirements and penalties of copyright or patent law in the appropriate\njurisdiction. This section shall survive the termination of this\nLicense.\n\n12) Attorneys' Fees.\n\nIn any action to enforce the terms of this License or seeking damages\nrelating thereto, the prevailing party shall be entitled to recover its\ncosts and expenses, including, without limitation, reasonable attorneys'\nfees and costs incurred in connection with such action, including any\nappeal of such action. This section shall survive the termination of\nthis License.\n\n13) Miscellaneous.\n\nIf any provision of this License is held to be unenforceable, such\nprovision shall be reformed only to the extent necessary to make it\nenforceable.\n\n14) Definition of \"You\" in This License.\n\n\"You\" throughout this License, whether in upper or lower case, means an\nindividual or a legal entity exercising rights under, and complying with\nall of the terms of, this License. For legal entities, \"You\" includes\nany entity that controls, is controlled by, or is under common control\nwith you. For purposes of this definition, \"control\" means (i) the\npower, direct or indirect, to cause the direction or management of such\nentity, whether by contract or otherwise, or (ii) ownership of fifty\npercent (50%) or more of the outstanding shares, or (iii) beneficial\nownership of such entity.\n\n15) Right to Use.\n\nYou may use the Original Work in all ways not otherwise restricted or\nconditioned by this License or by law, and Licensor promises not to\ninterfere with or be responsible for such uses by You.\n\n16) Modification of This License.\n\nThis License is Copyright (c) 2005 Lawrence Rosen and Copyright (c) 2017\nNigel Tzeng. Permission is granted to copy, distribute, or communicate\nthis License without modification. Nothing in this License permits You\nto modify this License as applied to the Original Work or to Derivative\nWorks. However, You may modify the text of this License and copy,\ndistribute or communicate your modified version (the \"Modified License\")\nand apply it to other original works of authorship subject to the\nfollowing conditions: (i) You may not indicate in any way that your\nModified License is the \"Open Software License\" or \"OSL\" or the\n\"Upstream Compatibility License\" or \"UCL\" and you may not use those\nnames in the name of your Modified License; (ii) You must replace the\nnotice specified in the first paragraph above with the notice \"Licensed\nunder \" or with a notice of your own that is not confusingly similar to\nthe notice in this License; and (iii) You may not claim that your\noriginal works are open source software unless your Modified License has\nbeen approved by Open Source Initiative (OSI) and You comply with its\nlicense review and certification process.", + "json": "ucl-1.0.json", + "yaml": "ucl-1.0.yml", + "html": "ucl-1.0.html", + "license": "ucl-1.0.LICENSE" + }, + { + "license_key": "unbuntu-font-1.0", + "category": "Free Restricted", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "", + "json": "unbuntu-font-1.0.json", + "yaml": "unbuntu-font-1.0.yml", + "html": "unbuntu-font-1.0.html", + "license": "unbuntu-font-1.0.LICENSE" + }, + { + "license_key": "unicode", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-unicode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n\nUnicode Data Files include all data files under the directories\nhttp://www.unicode.org/Public/, http://www.unicode.org/reports/, and\nhttp://www.unicode.org/cldr/data/ . Unicode Software includes any source\ncode published in the Unicode Standard or under the directories\nhttp://www.unicode.org/Public/, http://www.unicode.org/reports/, and\nhttp://www.unicode.org/cldr/data/.\n\nNOTICE TO USER: Carefully read the following legal agreement. BY\nDOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA\nFILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU UNEQUIVOCALLY\nACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF THIS\nAGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE\nOR USE THE DATA FILES OR SOFTWARE.\n\nCOPYRIGHT AND PERMISSION NOTICE\n\nCopyright \u00a9 Unicode, Inc. All rights reserved. Distributed under\nthe Terms of Use in http://www.unicode.org/copyright.html.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of the Unicode data files and any associated documentation (the\n\"Data Files\") or Unicode software and any associated documentation (the\n\"Software\") to deal in the Data Files or Software without restriction,\nincluding without limitation the rights to use, copy, modify, merge,\npublish, distribute, and/or sell copies of the Data Files or Software,\nand to permit persons to whom the Data Files or Software are furnished\nto do so, provided that\n\n(a) the above copyright notice(s) and this permission notice appear with\nall copies of the Data Files or Software,\n\n(b) both the above copyright notice(s) and this permission notice appear\nin associated documentation, and\n\n(c) there is clear notice in each modified Data File or in the Software\nas well as in the documentation associated with the Data File(s) or\nSoftware that the data or software has been modified.\n\nTHE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF\nANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT\nHOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR\nANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER\nRESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF\nCONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN\nCONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n\nExcept as contained in this notice, the name of a copyright holder shall\nnot be used in advertising or otherwise to promote the sale, use or\nother dealings in these Data Files or Software without prior written\nauthorization of the copyright holder.\n\nUnicode and the Unicode logo are trademarks of Unicode, Inc., and may be\nregistered in some jurisdictions. All other trademarks and registered\ntrademarks mentioned herein are the property of their respective owners.", + "json": "unicode.json", + "yaml": "unicode.yml", + "html": "unicode.html", + "license": "unicode.LICENSE" + }, + { + "license_key": "unicode-data-software", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Distributed under the Terms of Use in http://www.unicode.org/copyright.html.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of the Unicode data files and any associated documentation (the\n\"Data Files\") or Unicode software and any associated documentation (the\n\"Software\") to deal in the Data Files or Software without restriction,\nincluding without limitation the rights to use, copy, modify, merge,\npublish, distribute, and/or sell copies of the Data Files or Software,\nand to permit persons to whom the Data Files or Software are furnished\nto do so, provided that\n\n(a) the above copyright notice(s) and this permission notice appear with\nall copies of the Data Files or Software,\n\n(b) both the above copyright notice(s) and this permission notice appear\nin associated documentation, and\n\n(c) there is clear notice in each modified Data File or in the Software\nas well as in the documentation associated with the Data File(s) or\nSoftware that the data or software has been modified.\n\nTHE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF\nANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT\nHOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR\nANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER\nRESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF\nCONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN\nCONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n\nExcept as contained in this notice, the name of a copyright holder shall\nnot be used in advertising or otherwise to promote the sale, use or\nother dealings in these Data Files or Software without prior written\nauthorization of the copyright holder.\n\nUnicode and the Unicode logo are trademarks of Unicode, Inc. in the\nUnited States and other countries. All third party trademarks referenced\nherein are the property of their respective owners.", + "json": "unicode-data-software.json", + "yaml": "unicode-data-software.yml", + "html": "unicode-data-software.html", + "license": "unicode-data-software.LICENSE" + }, + { + "license_key": "unicode-dfs-2015", + "category": "Permissive", + "spdx_license_key": "Unicode-DFS-2015", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n\nUnicode Data Files include all data files under the directories\nhttp://www.unicode.org/Public/, http://www.unicode.org/reports/, and\nhttp://www.unicode.org/cldr/data/. Unicode Data Files do not include PDF\nonline code charts under the directory http://www.unicode.org/Public/.\nSoftware includes any source code published in the Unicode Standard or\nunder the directories http://www.unicode.org/Public/,\nhttp://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/.\n\nNOTICE TO USER: Carefully read the following legal agreement. BY\nDOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA\nFILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU UNEQUIVOCALLY\nACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF\nTHIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY,\nDISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n\nCOPYRIGHT AND PERMISSION NOTICE\n\nCopyright \u00a9 1991-2015 Unicode, Inc. All rights reserved. Distributed\nunder the Terms of Use in http://www.unicode.org/copyright.html.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of the Unicode data files and any associated documentation (the\n\"Data Files\") or Unicode software and any associated documentation (the\n\"Software\") to deal in the Data Files or Software without restriction,\nincluding without limitation the rights to use, copy, modify, merge,\npublish, distribute, and/or sell copies of the Data Files or Software,\nand to permit persons to whom the Data Files or Software are furnished\nto do so, provided that\n\n(a) this copyright and permission notice appear with all copies of\nthe Data Files or Software,\n\n(b) this copyright and permission notice appear in associated\ndocumentation, and\n\n(c) there is clear notice in each modified Data File or in the\nSoftware as well as in the documentation associated with the Data\nFile(s) or Software that the data or software has been modified.\n\nTHE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF\nANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT\nHOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR\nANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER\nRESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF\nCONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN\nCONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n\nExcept as contained in this notice, the name of a copyright holder shall\nnot be used in advertising or otherwise to promote the sale, use or\nother dealings in these Data Files or Software without prior written\nauthorization of the copyright holder.", + "json": "unicode-dfs-2015.json", + "yaml": "unicode-dfs-2015.yml", + "html": "unicode-dfs-2015.html", + "license": "unicode-dfs-2015.LICENSE" + }, + { + "license_key": "unicode-dfs-2016", + "category": "Permissive", + "spdx_license_key": "Unicode-DFS-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n\nUnicode Data Files include all data files under the directories\nhttp://www.unicode.org/Public/, http://www.unicode.org/reports/,\nhttp://www.unicode.org/cldr/data/, http://source.icu-\nproject.org/repos/icu/, and\nhttp://www.unicode.org/utility/trac/browser/.\n\nUnicode Data Files do not include PDF online code charts under the\ndirectory http://www.unicode.org/Public/.\n\nSoftware includes any source code published in the Unicode Standard or\nunder the directories http://www.unicode.org/Public/,\nhttp://www.unicode.org/reports/, http://www.unicode.org/cldr/data/,\nhttp://source.icu-project.org/repos/icu/, and\nhttp://www.unicode.org/utility/trac/browser/.\n\nNOTICE TO USER: Carefully read the following legal agreement. BY\nDOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA\nFILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU UNEQUIVOCALLY\nACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF\nTHIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY,\nDISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n\nCOPYRIGHT AND PERMISSION NOTICE\n\nCopyright \u00a9 1991-2016 Unicode, Inc. All rights reserved. Distributed\nunder the Terms of Use in http://www.unicode.org/copyright.html.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of the Unicode data files and any associated documentation (the\n\"Data Files\") or Unicode software and any associated documentation (the\n\"Software\") to deal in the Data Files or Software without restriction,\nincluding without limitation the rights to use, copy, modify, merge,\npublish, distribute, and/or sell copies of the Data Files or Software,\nand to permit persons to whom the Data Files or Software are furnished\nto do so, provided that either\n\n(a) this copyright and permission notice appear with all copies of the\nData Files or Software, or\n \n(b) this copyright and permission notice appear in associated\nDocumentation.\n\nTHE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF\nANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT\nHOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR\nANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER\nRESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF\nCONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN\nCONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n\nExcept as contained in this notice, the name of a copyright holder shall\nnot be used in advertising or otherwise to promote the sale, use or\nother dealings in these Data Files or Software without prior written\nauthorization of the copyright holder.", + "json": "unicode-dfs-2016.json", + "yaml": "unicode-dfs-2016.yml", + "html": "unicode-dfs-2016.html", + "license": "unicode-dfs-2016.LICENSE" + }, + { + "license_key": "unicode-icu-58", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-unicode-icu-58", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later)\n\nCopyright \u00a9 1991-2016 Unicode, Inc. All rights reserved.\nDistributed under the Terms of Use in http://www.unicode.org/copyright.html\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Unicode data files and any associated documentation\n(the \"Data Files\") or Unicode software and any associated documentation\n(the \"Software\") to deal in the Data Files or Software\nwithout restriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, and/or sell copies of\nthe Data Files or Software, and to permit persons to whom the Data Files\nor Software are furnished to do so, provided that either\n(a) this copyright and permission notice appear with all copies\nof the Data Files or Software, or\n(b) this copyright and permission notice appear in associated\nDocumentation.\n\nTHE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF\nANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT OF THIRD PARTY RIGHTS.\nIN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS\nNOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL\nDAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,\nDATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THE DATA FILES OR SOFTWARE.\n\nExcept as contained in this notice, the name of a copyright holder\nshall not be used in advertising or otherwise to promote the sale,\nuse or other dealings in these Data Files or Software without prior\nwritten authorization of the copyright holder.\n\n---------------------\n\nThird-Party Software Licenses\n\nThis section contains third-party software notices and/or additional\nterms for licensed third-party software components included within ICU\nlibraries.\n\n1. ICU License - ICU 1.8.1 to ICU 57.1\n\nCOPYRIGHT AND PERMISSION NOTICE\n\nCopyright (c) 1995-2016 International Business Machines Corporation and others\nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, and/or sell copies of the Software, and to permit persons\nto whom the Software is furnished to do so, provided that the above\ncopyright notice(s) and this permission notice appear in all copies of\nthe Software and that both the above copyright notice(s) and this\npermission notice appear in supporting documentation.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\nHOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY\nSPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER\nRESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF\nCONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN\nCONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nExcept as contained in this notice, the name of a copyright holder\nshall not be used in advertising or otherwise to promote the sale, use\nor other dealings in this Software without prior written authorization\nof the copyright holder.\n\nAll trademarks and registered trademarks mentioned herein are the\nproperty of their respective owners.\n\n2. Chinese/Japanese Word Break Dictionary Data (cjdict.txt)\n\n # The Google Chrome software developed by Google is licensed under\n # the BSD license. Other software included in this distribution is\n # provided under other licenses, as set forth below.\n #\n # The BSD License\n # http://opensource.org/licenses/bsd-license.php\n # Copyright (C) 2006-2008, Google Inc.\n #\n # All rights reserved.\n #\n # Redistribution and use in source and binary forms, with or without\n # modification, are permitted provided that the following conditions are met:\n #\n # Redistributions of source code must retain the above copyright notice,\n # this list of conditions and the following disclaimer.\n # Redistributions in binary form must reproduce the above\n # copyright notice, this list of conditions and the following\n # disclaimer in the documentation and/or other materials provided with\n # the distribution.\n # Neither the name of Google Inc. nor the names of its\n # contributors may be used to endorse or promote products derived from\n # this software without specific prior written permission.\n #\n #\n # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n # CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n #\n #\n # The word list in cjdict.txt are generated by combining three word lists\n # listed below with further processing for compound word breaking. The\n # frequency is generated with an iterative training against Google web\n # corpora.\n #\n # * Libtabe (Chinese)\n # - https://sourceforge.net/project/?group_id=1519\n # - Its license terms and conditions are shown below.\n #\n # * IPADIC (Japanese)\n # - http://chasen.aist-nara.ac.jp/chasen/distribution.html\n # - Its license terms and conditions are shown below.\n #\n # ---------COPYING.libtabe ---- BEGIN--------------------\n #\n # /*\n # * Copyrighy (c) 1999 TaBE Project.\n # * Copyright (c) 1999 Pai-Hsiang Hsiao.\n # * All rights reserved.\n # *\n # * Redistribution and use in source and binary forms, with or without\n # * modification, are permitted provided that the following conditions\n # * are met:\n # *\n # * . Redistributions of source code must retain the above copyright\n # * notice, this list of conditions and the following disclaimer.\n # * . Redistributions in binary form must reproduce the above copyright\n # * notice, this list of conditions and the following disclaimer in\n # * the documentation and/or other materials provided with the\n # * distribution.\n # * . Neither the name of the TaBE Project nor the names of its\n # * contributors may be used to endorse or promote products derived\n # * from this software without specific prior written permission.\n # *\n # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n # * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\n # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\n # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\n # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n # * OF THE POSSIBILITY OF SUCH DAMAGE.\n # */\n #\n # /*\n # * Copyright (c) 1999 Computer Systems and Communication Lab,\n # * Institute of Information Science, Academia\n # * Sinica. All rights reserved.\n # *\n # * Redistribution and use in source and binary forms, with or without\n # * modification, are permitted provided that the following conditions\n # * are met:\n # *\n # * . Redistributions of source code must retain the above copyright\n # * notice, this list of conditions and the following disclaimer.\n # * . Redistributions in binary form must reproduce the above copyright\n # * notice, this list of conditions and the following disclaimer in\n # * the documentation and/or other materials provided with the\n # * distribution.\n # * . Neither the name of the Computer Systems and Communication Lab\n # * nor the names of its contributors may be used to endorse or\n # * promote products derived from this software without specific\n # * prior written permission.\n # *\n # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n # * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\n # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\n # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\n # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n # * OF THE POSSIBILITY OF SUCH DAMAGE.\n # */\n #\n # Copyright 1996 Chih-Hao Tsai @ Beckman Institute,\n # University of Illinois\n # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4\n #\n # ---------------COPYING.libtabe-----END--------------------------------\n #\n #\n # ---------------COPYING.ipadic-----BEGIN-------------------------------\n #\n # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science\n # and Technology. All Rights Reserved.\n #\n # Use, reproduction, and distribution of this software is permitted.\n # Any copy of this software, whether in its original form or modified,\n # must include both the above copyright notice and the following\n # paragraphs.\n #\n # Nara Institute of Science and Technology (NAIST),\n # the copyright holders, disclaims all warranties with regard to this\n # software, including all implied warranties of merchantability and\n # fitness, in no event shall NAIST be liable for\n # any special, indirect or consequential damages or any damages\n # whatsoever resulting from loss of use, data or profits, whether in an\n # action of contract, negligence or other tortuous action, arising out\n # of or in connection with the use or performance of this software.\n #\n # A large portion of the dictionary entries\n # originate from ICOT Free Software. The following conditions for ICOT\n # Free Software applies to the current dictionary as well.\n #\n # Each User may also freely distribute the Program, whether in its\n # original form or modified, to any third party or parties, PROVIDED\n # that the provisions of Section 3 (\"NO WARRANTY\") will ALWAYS appear\n # on, or be attached to, the Program, which is distributed substantially\n # in the same form as set out herein and that such intended\n # distribution, if actually made, will neither violate or otherwise\n # contravene any of the laws and regulations of the countries having\n # jurisdiction over the User or the intended distribution itself.\n #\n # NO WARRANTY\n #\n # The program was produced on an experimental basis in the course of the\n # research and development conducted during the project and is provided\n # to users as so produced on an experimental basis. Accordingly, the\n # program is provided without any warranty whatsoever, whether express,\n # implied, statutory or otherwise. The term \"warranty\" used herein\n # includes, but is not limited to, any warranty of the quality,\n # performance, merchantability and fitness for a particular purpose of\n # the program and the nonexistence of any infringement or violation of\n # any right of any third party.\n #\n # Each user of the program will agree and understand, and be deemed to\n # have agreed and understood, that there is no warranty whatsoever for\n # the program and, accordingly, the entire risk arising from or\n # otherwise connected with the program is assumed by the user.\n #\n # Therefore, neither ICOT, the copyright holder, or any other\n # organization that participated in or was otherwise related to the\n # development of the program and their respective officials, directors,\n # officers and other employees shall be held liable for any and all\n # damages, including, without limitation, general, special, incidental\n # and consequential damages, arising out of or otherwise in connection\n # with the use or inability to use the program or any product, material\n # or result produced or otherwise obtained by using the program,\n # regardless of whether they have been advised of, or otherwise had\n # knowledge of, the possibility of such damages at any time during the\n # project or thereafter. Each user will be deemed to have agreed to the\n # foregoing by his or her commencement of use of the program. The term\n # \"use\" as used herein includes, but is not limited to, the use,\n # modification, copying and distribution of the program and the\n # production of secondary products from the program.\n #\n # In the case where the program, whether in its original form or\n # modified, was distributed or delivered to or received by a user from\n # any person, organization or entity other than ICOT, unless it makes or\n # grants independently of ICOT any specific warranty to the user in\n # writing, such person, organization or entity, will also be exempted\n # from and not be held liable to the user for any such damages as noted\n # above as far as the program is concerned.\n #\n # ---------------COPYING.ipadic-----END----------------------------------\n\n3. Lao Word Break Dictionary Data (laodict.txt)\n\n # Copyright (c) 2013 International Business Machines Corporation\n # and others. All Rights Reserved.\n #\n # Project: http://code.google.com/p/lao-dictionary/\n # Dictionary: http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt\n # License: http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt\n # (copied below)\n #\n # This file is derived from the above dictionary, with slight\n # modifications.\n # ----------------------------------------------------------------------\n # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell.\n # All rights reserved.\n #\n # Redistribution and use in source and binary forms, with or without\n # modification,\n # are permitted provided that the following conditions are met:\n #\n #\n # Redistributions of source code must retain the above copyright notice, this\n # list of conditions and the following disclaimer. Redistributions in\n # binary form must reproduce the above copyright notice, this list of\n # conditions and the following disclaimer in the documentation and/or\n # other materials provided with the distribution.\n #\n #\n # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n # \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\n # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\n # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\n # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n # OF THE POSSIBILITY OF SUCH DAMAGE.\n # --------------------------------------------------------------------------\n\n4. Burmese Word Break Dictionary Data (burmesedict.txt)\n\n # Copyright (c) 2014 International Business Machines Corporation\n # and others. All Rights Reserved.\n #\n # This list is part of a project hosted at:\n # github.com/kanyawtech/myanmar-karen-word-lists\n #\n # --------------------------------------------------------------------------\n # Copyright (c) 2013, LeRoy Benjamin Sharon\n # All rights reserved.\n #\n # Redistribution and use in source and binary forms, with or without\n # modification, are permitted provided that the following conditions\n # are met: Redistributions of source code must retain the above\n # copyright notice, this list of conditions and the following\n # disclaimer. Redistributions in binary form must reproduce the\n # above copyright notice, this list of conditions and the following\n # disclaimer in the documentation and/or other materials provided\n # with the distribution.\n #\n # Neither the name Myanmar Karen Word Lists, nor the names of its\n # contributors may be used to endorse or promote products derived\n # from this software without specific prior written permission.\n #\n # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n # CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS\n # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\n # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\n # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF\n # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n # SUCH DAMAGE.\n # --------------------------------------------------------------------------\n\n5. Time Zone Database\n\n ICU uses the public domain data and code derived from Time Zone\nDatabase for its time zone support. The ownership of the TZ database\nis explained in BCP 175: Procedure for Maintaining the Time Zone\nDatabase section 7.\n\n # 7. Database Ownership\n #\n # The TZ database itself is not an IETF Contribution or an IETF\n # document. Rather it is a pre-existing and regularly updated work\n # that is in the public domain, and is intended to remain in the\n # public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do\n # not apply to the TZ Database or contributions that individuals make\n # to it. Should any claims be made and substantiated against the TZ\n # Database, the organization that is providing the IANA\n # Considerations defined in this RFC, under the memorandum of\n # understanding with the IETF, currently ICANN, may act in accordance\n # with all competent court orders. No ownership claims will be made\n # by ICANN or the IETF Trust on the database or the code. Any person\n # making a contribution to the database or code waives all rights to\n # future claims in that contribution or in the TZ Database.\n\n6. Google double-conversion\n\nCopyright 2006-2011, the V8 project authors. All rights reserved.\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "unicode-icu-58.json", + "yaml": "unicode-icu-58.yml", + "html": "unicode-icu-58.html", + "license": "unicode-icu-58.LICENSE" + }, + { + "license_key": "unicode-mappings", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-unicode-mappings", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This file is provided as-is by Unicode, Inc. (The Unicode Consortium).\nNo claims are made as to fitness for any particular purpose. No\nwarranties of any kind are expressed or implied. The recipient\nagrees to determine applicability of information provided. If this\nfile has been provided on optical media by Unicode, Inc., the sole\nremedy for any claim will be exchange of defective media within 90\ndays of receipt.\n\nUnicode, Inc. hereby grants the right to freely use the information\nsupplied in this file in the creation of products supporting the\nUnicode Standard, and to make copies of this file in any form for\ninternal or external distribution as long as this notice remains\nattached.", + "json": "unicode-mappings.json", + "yaml": "unicode-mappings.yml", + "html": "unicode-mappings.html", + "license": "unicode-mappings.LICENSE" + }, + { + "license_key": "unicode-tou", + "category": "Proprietary Free", + "spdx_license_key": "Unicode-TOU", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Unicode Terms of Use\n\nFor the general privacy policy governing access to this site, see the\nUnicode Privacy Policy. For trademark usage, see the Unicode\u00ae Consortium\nName and Trademark Usage Policy.\n\nA. Unicode Copyright.\n\n1. Copyright \u00a9 Unicode, Inc. All rights reserved.\n\n2. Certain documents and files on this website contain a legend\nindicating that \"Modification is permitted.\" Any person is hereby\nauthorized, without fee, to modify such documents and files to create\nderivative works conforming to the Unicode\u00ae Standard, subject to Terms\nand Conditions herein.\n\n3. Any person is hereby authorized, without fee, to view, use,\nreproduce, and distribute all documents and files solely for\ninformational purposes in the creation of products supporting the\nUnicode Standard, subject to the Terms and Conditions herein.\n\n4. Further specifications of rights and restrictions pertaining to the\nuse of the particular set of data files known as the \"Unicode Character\nDatabase\" can be found in Exhibit 1.\n\n5. Each version of the Unicode Standard has further specifications of\nrights and restrictions of use. For the book editions (Unicode 5.0 and\nearlier), these are found on the back of the title page. The online code\ncharts carry specific restrictions. All other files, including online\ndocumentation of the core specification for Unicode 6.0 and later, are\ncovered under these general Terms of Use.\n\n6. No license is granted to \"mirror\" the Unicode website where a fee is\ncharged for access to the \"mirror\" site.\n\n7. Modification is not permitted with respect to this document. All\ncopies of this document must be verbatim.\n\nB. Restricted Rights Legend. Any technical data or software which is\nlicensed to the United States of America, its agencies and/or\ninstrumentalities under this Agreement is commercial technical data or\ncommercial computer software developed exclusively at private expense as\ndefined in FAR 2.101, or DFARS 252.227-7014 (June 1995), as applicable.\nFor technical data, use, duplication, or disclosure by the Government is\nsubject to restrictions as set forth in DFARS 202.227-7015 Technical\nData, Commercial and Items (Nov 1995) and this Agreement. For Software,\nin accordance with FAR 12-212 or DFARS 227-7202, as applicable, use,\nduplication or disclosure by the Government is subject to the\nrestrictions set forth in this Agreement.\n\nC. Warranties and Disclaimers.\n\n1. This publication and/or website may include technical or\ntypographical errors or other inaccuracies . Changes are periodically\nadded to the information herein; these changes will be incorporated in\nnew editions of the publication and/or website. Unicode may make\nimprovements and/or changes in the product(s) and/or program(s)\ndescribed in this publication and/or website at any time.\n\n2. If this file has been purchased on magnetic or optical media from\nUnicode, Inc. the sole and exclusive remedy for any claim will be\nexchange of the defective media within ninety (90) days of original\npurchase.\n\n3. EXCEPT AS PROVIDED IN SECTION C.2, THIS PUBLICATION AND/OR SOFTWARE\nIS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS,\nIMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.\nUNICODE AND ITS LICENSORS ASSUME NO RESPONSIBILITY FOR ERRORS OR\nOMISSIONS IN THIS PUBLICATION AND/OR SOFTWARE OR OTHER DOCUMENTS WHICH\nARE REFERENCED BY OR LINKED TO THIS PUBLICATION OR THE UNICODE WEBSITE.\n\nD. Waiver of Damages. In no event shall Unicode or its licensors be\nliable for any special, incidental, indirect or consequential damages of\nany kind, or any damages whatsoever, whether or not Unicode was advised\nof the possibility of the damage, including, without limitation, those\nresulting from the following: loss of use, data or profits, in\nconnection with the use, modification or distribution of this\ninformation or its derivatives.\n\nE. Trademarks & Logos.\n\n1. The Unicode Word Mark and the Unicode Logo are trademarks of Unicode,\nInc. \"The Unicode Consortium\" and \"Unicode, Inc.\" are trade names of\nUnicode, Inc. Use of the information and materials found on this website\nindicates your acknowledgement of Unicode, Inc.\u2019s exclusive worldwide\nrights in the Unicode Word Mark, the Unicode Logo, and the Unicode trade\nnames.\n\n2. The Unicode Consortium Name and Trademark Usage Policy (\"Trademark\nPolicy\") are incorporated herein by reference and you agree to abide by\nthe provisions of the Trademark Policy, which may be changed from time\nto time in the sole discretion of Unicode, Inc.\n\n3. All third party trademarks referenced herein are the property of\ntheir respective owners.\n\nF. Miscellaneous.\n\n1. Jurisdiction and Venue. This server is operated from a location in\nthe State of California, United States of America. Unicode makes no\nrepresentation that the materials are appropriate for use in other\nlocations. If you access this server from other locations, you are\nresponsible for compliance with local laws. This Agreement, all use of\nthis site and any claims and damages resulting from use of this site are\ngoverned solely by the laws of the State of California without regard to\nany principles which would apply the laws of a different jurisdiction.\nThe user agrees that any disputes regarding this site shall be resolved\nsolely in the courts located in Santa Clara County, California. The user\nagrees said courts have personal jurisdiction and agree to waive any\nright to transfer the dispute to any other forum.\n\n2. Modification by Unicode Unicode shall have the right to modify this\nAgreement at any time by posting it to this site. The user may not\nassign any part of this Agreement without Unicode\u2019s prior written\nconsent.\n\n3. Taxes. The user agrees to pay any taxes arising from access to this\nwebsite or use of the information herein, except for those based on\nUnicode\u2019s net income.\n\n4. Severability. If any provision of this Agreement is declared invalid\nor unenforceable, the remaining provisions of this Agreement shall\nremain in effect.\n\n5. Entire Agreement. This Agreement constitutes the entire agreement\nbetween the parties.", + "json": "unicode-tou.json", + "yaml": "unicode-tou.yml", + "html": "unicode-tou.html", + "license": "unicode-tou.LICENSE" + }, + { + "license_key": "universal-foss-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "Universal-FOSS-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "The Universal FOSS Exception, Version 1.0\n\nIn addition to the rights set forth in the other license(s) included in the\ndistribution for this software, data, and/or documentation (collectively the\n\"Software,\" and such licenses collectively with this additional permission the\n\"Software License\"), the copyright holders wish to facilitate interoperability\nwith other software, data, and/or documentation distributed with complete\ncorresponding source under a license that is OSI-approved and/or categorized by\nthe FSF as free (collectively \"Other FOSS\"). We therefore hereby grant the\nfollowing additional permission with respect to the use and distribution of the\nSoftware with Other FOSS, and the constants, function signatures, data\nstructures and other invocation methods used to run or interact with each of\nthem (as to each, such software's \"Interfaces\"):\n\n (i) The Software's Interfaces may, to the extent permitted by the license of\n the Other FOSS, be copied into, used and distributed in the Other FOSS in\n order to enable interoperability, without requiring a change to the license\n of the Other FOSS other than as to any Interfaces of the Software embedded\n therein. The Software's Interfaces remain at all times under the Software\n License, including without limitation as used in the Other FOSS (which upon\n any such use also then contains a portion of the Software under the Software\n License).\n\n (ii) The Other FOSS's Interfaces may, to the extent permitted by the license\n of the Other FOSS, be copied into, used and distributed in the Software in\n order to enable interoperability, without requiring that such Interfaces be\n licensed under the terms of the Software License or otherwise altering their\n original terms, if this does not require any portion of the Software other\n than such Interfaces to be licensed under the terms other than the Software\n License.\n\n (iii) If only Interfaces and no other code is copied between the Software and\n the Other FOSS in either direction, the use and/or distribution of the\n Software with the Other FOSS shall not be deemed to require that the Other\n FOSS be licensed under the license of the Software, other than as to any\n Interfaces of the Software copied into the Other FOSS. This includes, by way\n of example and without limitation, statically or dynamically linking the\n Software together with Other FOSS after enabling interoperability using the\n Interfaces of one or both, and distributing the resulting combination under\n different licenses for the respective portions thereof.\n\nFor avoidance of doubt, a license which is OSI-approved or categorized by the\nFSF as free, includes, for the purpose of this permission, such licenses with\nadditional permissions, and any license that has previously been so-approved or\ncategorized as free, even if now deprecated or otherwise no longer recognized as\napproved or free. Nothing in this additional permission grants any right to\ndistribute any portion of the Software on terms other than those of the Software\nLicense or grants any additional permission of any kind for use or distribution\nof the Software in conjunction with software other than Other FOSS.", + "json": "universal-foss-exception-1.0.json", + "yaml": "universal-foss-exception-1.0.yml", + "html": "universal-foss-exception-1.0.html", + "license": "universal-foss-exception-1.0.LICENSE" + }, + { + "license_key": "unknown", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-unknown", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "", + "json": "unknown.json", + "yaml": "unknown.yml", + "html": "unknown.html", + "license": "unknown.LICENSE" + }, + { + "license_key": "unknown-license-reference", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-unknown-license-reference", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "", + "json": "unknown-license-reference.json", + "yaml": "unknown-license-reference.yml", + "html": "unknown-license-reference.html", + "license": "unknown-license-reference.LICENSE" + }, + { + "license_key": "unknown-spdx", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-unknown-spdx", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "", + "json": "unknown-spdx.json", + "yaml": "unknown-spdx.yml", + "html": "unknown-spdx.html", + "license": "unknown-spdx.LICENSE" + }, + { + "license_key": "unlicense", + "category": "Public Domain", + "spdx_license_key": "Unlicense", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This is free and unencumbered software released into the public domain.\n\nAnyone is free to copy, modify, publish, use, compile, sell, or\ndistribute this software, either in source code form or as a compiled\nbinary, for any purpose, commercial or non-commercial, and by any\nmeans.\n\nIn jurisdictions that recognize copyright laws, the author or authors\nof this software dedicate any and all copyright interest in the\nsoftware to the public domain. We make this dedication for the benefit\nof the public at large and to the detriment of our heirs and\nsuccessors. We intend this dedication to be an overt act of\nrelinquishment in perpetuity of all present and future rights to this\nsoftware under copyright law.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR\nOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\nFor more information, please refer to ", + "json": "unlicense.json", + "yaml": "unlicense.yml", + "html": "unlicense.html", + "license": "unlicense.LICENSE" + }, + { + "license_key": "unlimited-binary-linking", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-unlimited-binary-linking", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "text": "As a special exception, you may use, copy, link, modify and distribute\nunder the user's own terms, binary object code versions of works based\non the library.", + "json": "unlimited-binary-linking.json", + "yaml": "unlimited-binary-linking.yml", + "html": "unlimited-binary-linking.html", + "license": "unlimited-binary-linking.LICENSE" + }, + { + "license_key": "unlimited-binary-use-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-unlimited-binary-use-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, you may use, copy, link, modify and distribute\nunder the user's own terms, binary object code versions of works based\non the library.", + "json": "unlimited-binary-use-exception.json", + "yaml": "unlimited-binary-use-exception.yml", + "html": "unlimited-binary-use-exception.html", + "license": "unlimited-binary-use-exception.LICENSE" + }, + { + "license_key": "unlimited-linking-exception-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-unlimited-link-exception-gpl", + "other_spdx_license_keys": [ + "LicenseRef-scancode-unlimited-linking-exception-gpl" + ], + "is_exception": true, + "is_deprecated": false, + "text": "In addition to the permissions in the GNU General Public License, the\nFree Software Foundation gives you unlimited permission to link the\ncompiled version of this file with other programs, and to distribute\nthose programs without any restriction coming from the use of this\nfile. (The General Public License restrictions do apply in other\nrespects; for example, they cover modification of the file, and\ndistribution when not linked into another program.)", + "json": "unlimited-linking-exception-gpl.json", + "yaml": "unlimited-linking-exception-gpl.yml", + "html": "unlimited-linking-exception-gpl.html", + "license": "unlimited-linking-exception-gpl.LICENSE" + }, + { + "license_key": "unlimited-linking-exception-lgpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-unlimited-link-exception-lgpl", + "other_spdx_license_keys": [ + "LicenseRef-scancode-unlimited-linking-exception-lgpl" + ], + "is_exception": true, + "is_deprecated": false, + "text": "In addition to the permissions in the GNU Lesser General Public License, the\nFree Software Foundation gives you unlimited permission to link the compiled\nversion of this file with other programs, and to distribute those programs\nwithout any restriction coming from the use of this file. \n(The GNU Lesser General Public License restrictions do apply in other respects;\nfor example, they cover modification of the file, and distribution when not\nlinked into another program.)", + "json": "unlimited-linking-exception-lgpl.json", + "yaml": "unlimited-linking-exception-lgpl.yml", + "html": "unlimited-linking-exception-lgpl.html", + "license": "unlimited-linking-exception-lgpl.LICENSE" + }, + { + "license_key": "unpbook", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-unpbook", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use or modify this software for educational or\nfor commercial purposes, and without fee, is hereby granted,\nprovided that the above copyright notice appears in connection\nwith any and all uses, with clear indication as to any\nmodifications made. The author RESERVES the sole rights of\nreproduction, publication and distribution and hence permission\nto print this source code in any book, reference manual,\nmagazine, or other type of publication, including any digital\nmedium, must be granted in writing by W. Richard Stevens.\n\nThe author makes no representations about the suitability of this\nsoftware for any purpose. It is provided \"as is\" without express\nor implied warranty.", + "json": "unpbook.json", + "yaml": "unpbook.yml", + "html": "unpbook.html", + "license": "unpbook.LICENSE" + }, + { + "license_key": "unpublished-source", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-unpublished-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE of the Copyright Holder.\nThe contents of this file may not be disclosed to third parties, copied or\nduplicated in any form, in whole or in part, without the prior written\npermission of the Copyright Holder.", + "json": "unpublished-source.json", + "yaml": "unpublished-source.yml", + "html": "unpublished-source.html", + "license": "unpublished-source.LICENSE" + }, + { + "license_key": "unrar", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-unrar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "****** ***** ****** UnRAR - free utility for RAR archives\n ** ** ** ** ** ** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n ****** ******* ****** License for use and distribution of\n ** ** ** ** ** ** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n ** ** ** ** ** ** FREE portable version\n ~~~~~~~~~~~~~~~~~~~~~\n\n The source code of UnRAR utility is freeware. This means:\n\n 1. All copyrights to RAR and the utility UnRAR are exclusively\n owned by the author - Alexander Roshal.\n\n 2. UnRAR source code may be used in any software to handle\n RAR archives without limitations free of charge, but cannot be\n used to develop RAR (WinRAR) compatible archiver and to\n re-create RAR compression algorithm, which is proprietary.\n Distribution of modified UnRAR source code in separate form\n or as a part of other software is permitted, provided that\n full text of this paragraph, starting from \"UnRAR source code\"\n words, is included in license, or in documentation if license\n is not available, and in source code comments of resulting package.\n\n 3. The UnRAR utility may be freely distributed. It is allowed\n to distribute UnRAR inside of other software packages.\n\n 4. THE RAR ARCHIVER AND THE UnRAR UTILITY ARE DISTRIBUTED \"AS IS\".\n NO WARRANTY OF ANY KIND IS EXPRESSED OR IMPLIED. YOU USE AT \n YOUR OWN RISK. THE AUTHOR WILL NOT BE LIABLE FOR DATA LOSS, \n DAMAGES, LOSS OF PROFITS OR ANY OTHER KIND OF LOSS WHILE USING\n OR MISUSING THIS SOFTWARE.\n\n 5. Installing and using the UnRAR utility signifies acceptance of\n these terms and conditions of the license.\n\n 6. If you don't agree with terms of the license you must remove\n UnRAR files from your storage devices and cease to use the\n utility.\n\n Thank you for your interest in RAR and UnRAR.\n Alexander L. Roshal", + "json": "unrar.json", + "yaml": "unrar.yml", + "html": "unrar.html", + "license": "unrar.LICENSE" + }, + { + "license_key": "unsplash", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-unsplash", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Unsplash grants you an irrevocable, nonexclusive, worldwide copyright license to\ndownload, copy, modify, distribute, perform, and use photos from Unsplash for free,\nincluding for commercial purposes, without permission from or attributing the photographer\nor Unsplash. This license does not include the right to compile photos from Unsplash to\nreplicate a similar or competing service.", + "json": "unsplash.json", + "yaml": "unsplash.yml", + "html": "unsplash.html", + "license": "unsplash.LICENSE" + }, + { + "license_key": "uofu-rfpl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-uofu-rfpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "UNIVERSITY OF UTAH RESEARCH FOUNDATION PUBLIC LICENSE\n\t\n1. Definitions\n\n1.1 \"Commercial Use\" means covered code utilized by USER to generate a\n revenue stream, including but not limited to, embedding the source\n code in USER's proprietary software, executable software, or\n consulting utilizing the source code.\n\n1.2 \"Contributor\" means each entity that creates or contributes to the\n creation of Modifications.\n\n1.3 \"Covered Code\" means the Original Source Code, Modifications, or\n the combination of the Original Source Code and Modifications, in\n each case including portions thereof. The Original Source Code,\n developed by the University of Utah, hereinafter referred to as\n UNIVERSITY is described in the Source Code notice required by\n Exhibit A.\n\n1.4 \"Source Code\" means the preferred form of the Covered Code for\n making modifications to it, including all modules it contains, plus\n any associated interface definition files, scripts used to control\n compilation and installation of an Executable, or a list of source\n code differential comparisons against either the Original Source\n Code or another well known, available Covered Code of the\n Contributor's choice. The Source Code can be in a compressed or\n archival form, provided the appropriate decompression or\n de-archiving software is widely available for no charge.\n\n1.5 \"Electronic Distribution Mechanism\" means a mechanism generally\n accepted in the software development community for the electronic\n transfer of data.\n\n1.6 \"Larger Work\" means a work, which combines Covered Code or\n portions thereof with code not governed by the terms of this\n License.\n\n1.7 \"License\" means this document.\n\n1.8 \"Licensable\" means having the right to grant, to the maximum\n extent possible, whether at the time of the initial grant or\n subsequently acquired, any and all rights conveyed herein.\n\n1.9 \"Modifications\" means any addition to or deletion from the\n substance or structure of either the Original Source Code or any\n previous Modifications. When Covered Code is released as a series of\n files, a Modification is:\n\n (a) Any addition to or deletion from the contents of a file\n containing Original Code or previous Modifications.\n\n (b) Any new file that contains any part of the Original Code or\n previous Modifications\n\n1.10 \"USER\" (or \"YOU\") means an individual or a legal entity\n exercising rights under, and complying with all of the terms of this\n License. For legal entities, USER includes any entity, which\n controls, is controlled by, or is under common control with You. For\n purposes of this definition, \"control\" means (a) the power, direct\n or indirect, to cause the direction or management of such entity,\n whether by contract or otherwise, or (b) ownership of fifty percent\n (50%) or more of the outstanding shares or beneficial ownership of\n such entity.\n\n2. Source Code License.\n\n2.1 The Initial Developer Grant The UNIVERSITY hereby grants USER a\n world-wide, royalty-free, non-exclusive license, subject to third\n party intellectual property claims:\n\n (a) to use, reproduce, modify, display, and perform, the Covered\n Code (or portions thereof) with or without Modifications, or as part\n of a Larger Work.; and\n\n (b) under patents now or hereafter owned or controlled by\n UNIVERSITY, to make, have made, and use (\"Utilize\") the Covered\n Code(or portions thereof), but solely to the extent that any such\n patent is reasonably necessary to enable USER to Utilize the Covered\n Code (or portions thereof) and not to any greater extent that may be\n necessary to Utilize further Modifications or combinations.\n\n (c) the licenses granted in this Section 2.1(a) and (b) are\n effective on the date the USER first receives Covered Code.\n\n (d) No License is granted by UNIVERSITY for the Commercial Use of\n Covered Code under this License.\n\n (e) No License is granted by UNIVERSITY for the distribution of\n Covered Code under this License.\n\n\n2.2. Contributor Grant. Each Contributor hereby grants UNIVERSITY a\n world-wide, royalty-free, non-exclusive license, subject to third\n party intellectual property claims:\n\n (a) to use, reproduce, modify, display, perform, sublicense and\n distribute the Modifications created by such Contributor (or\n portions thereof) either on an unmodified basis, with other\n Modifications, as Covered Code or as part of a Larger Work; and\n\n (b) under patents now or hereafter owned or controlled by\n Contributor, to Utilize the Covered Code (or portions thereof), but\n solely to the extent that any such patent is reasonably necessary to\n enable USER to Utilize the Contributor Version (or portions\n thereof), and not to any greater extent that may be necessary to\n Utilize further Modifications or combinations.\n\n (c) the licenses granted in this Section 2.2(a) and (b) are\n effective on the date the UNIVERSITY first receives the Covered Code\n\n3. Contributor Obligations\n\n3.1. Intellectual Property Matters\n\n (a) Third Party Claims. If USER has knowledge that a party claims an\n intellectual property right in particular functionality or code (or\n its utilization under this License), USER must include a text file\n with the source code provided to UNIVERSITY titled \"LEGAL\" which\n describes the claim and the party making the claim in sufficient\n detail that UNIVERSITY will know whom to contact. If USER obtains\n such knowledge after USER makes the Modification available to\n UNIVERSITY, USER shall promptly modify the LEGAL file in all copies\n USER makes available thereafter and shall notify UNIVERSITY that new\n knowledge has been obtained.\n\n (b) Contributor APIs. If Your Modification is an application\n programming interface and USER owns or controls patents, which are\n reasonably necessary to implement that API, you must also include\n this information in the LEGAL file.\n\n3.2. Required Notices. USER must duplicate the notice in Exhibit A in\n each file of the Source Code, and this License in any documentation\n for the Source Code, where USER describes recipients' rights\n relating to Covered Code. If USER created one or more\n Modification(s), USER may add name as a Contributor to the notice\n described in Exhibit A. If it is not possible to put such notice in\n a particular Source Code file due to its structure, then USER must\n include such notice in a location (such as a relevant directory\n file) where a user would be likely to look for such a notice.\n\n3.3. Distribution of Executable Versions. - This license does not\n allow distribution of the Covered Code by USER or Contributor.\n\n3.4. Larger Works. USER may create a Larger Work by combining Covered\n Code with other code not governed by the terms of this License. In\n such a case, USER must make sure the requirements of this License\n are fulfilled for the Covered Code including 2.1d and 2.1e.\n\n4. Inability to Comply Due to Statute or Regulation.\n\n If it is impossible for USER to comply with any of the terms of this\n License with respect to some or all of the Covered Code due to\n statute or regulation then USER must:\n\n (a) comply with the terms of this License to the maximum extent\n possible; and\n\n (b) describe the limitations and the code they affect. Such\n description must be included in the LEGAL file described in Section\n 3.1 and must be included with all distributions of the Source\n Code. Except to the extent prohibited by statute or regulation, such\n description must be sufficiently detailed for a recipient of\n ordinary skill to be able to understand it.\n\n5. Application of this License.\n\n This License applies to Covered Code attached to the notice in Exhibit A.\n\n6. DISCLAIMER OF WARRANTY.\n\n COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS,\n WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,\n INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS\n FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR\n NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF\n THE COVERED CODE IS WITH USER. SHOULD ANY COVERED CODE PROVE\n DEFECTIVE IN ANY RESPECT, YOU (NOT THE UNIVERSITY OR ANY OTHER\n CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR\n CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL\n PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED\n HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n7. TERMINATION.\n\n This License and the rights granted hereunder will terminate\n automatically if USER fails to comply with terms herein. All\n sublicenses to the Covered Code which are properly granted shall\n survive any termination of this License. Provisions which, by their\n nature, must remain in effect beyond the termination of this License\n shall survive.\n\n8. LIMITATION OF LIABILITY.\n\n UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\n (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE\n UNIVERSITY, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED\n CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO USER OR\n ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR\n CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT\n LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER\n FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR\n LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE\n POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT\n APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH\n PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH\n LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR\n LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION\n AND LIMITATION MAY NOT APPLY TO USER.\n\n\n9. U.S. GOVERNMENT END USERS,\n\n The Covered Code is a \"commercial item,\" as that term is defined in\n 48 C.F.R. 2.101 (Oct. 1995). consisting of \"commercial computer\n software\" and \"commercial computer software documentation,\" as such\n terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48\n C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June\n 1995), all U.S. Government End Users acquire Covered Code with only\n those rights set forth herein.\n\n10. MISCELLANEOUS.\n\n This License represents the complete agreement concerning subject\n matter hereof. Nothing in this AGREEMENT shall be construed as\n conferring by implication, estoppel or otherwise any license or\n rights other than those granted in this License. If any provision of\n this License is held to be unenforceable, such provision shall be\n reformed only to the extent necessary to make it enforceable. This\n License shall be governed by Utah law provisions (except to the\n extent applicable law, if any, provides otherwise). The application\n of the United Nations Convention on Contracts for the International\n Sale of Goods is expressly excluded. Any law or regulation which\n provides that the language of a contract shall be construed against\n the drafter shall not apply to this License.\n\nEXHIBIT A.\n\nThe contents of this file are subject to the University of Utah Public\nLicense (the \"License\"); you may not use this file except in\ncompliance with the License.\n\nSoftware distributed under the License is distributed on an \"AS IS\"\nbasis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See\nthe License for the specific language governing rights and limitations\nunder the License.\n\nThe Original Source Code is \"teem\", released March 23, 2001.\n\nThe Original Source Code was developed by the University of Utah.\nPortions created by UNIVERSITY are Copyright (C) 2001, 1998 University\nof Utah. All Rights Reserved.", + "json": "uofu-rfpl.json", + "yaml": "uofu-rfpl.yml", + "html": "uofu-rfpl.html", + "license": "uofu-rfpl.LICENSE" + }, + { + "license_key": "uoi-ncsa", + "category": "Permissive", + "spdx_license_key": "NCSA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "University of Illinois/NCSA Open Source License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this\nsoftware and associated documentation files (the \"Software\"), to deal with the\nSoftware without restriction, including without limitation the rights to use, copy,\nmodify, merge, publish, distribute, sublicense, and/or sell copies of the Software,\nand to permit persons to whom the Software is furnished to do so, subject to the\nfollowing conditions:\n\nRedistributions of source code must retain the above copyright notice, this list of\nconditions and the following disclaimers.\n\nRedistributions in binary form must reproduce the above copyright notice, this list\nof conditions and the following disclaimers in the documentation and/or other\nmaterials provided with the distribution.\n\nNeither the names of , nor\nthe names of its contributors may be used to endorse or promote products derived from\nthis Software without specific prior written permission.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\nINCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\nACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE.", + "json": "uoi-ncsa.json", + "yaml": "uoi-ncsa.yml", + "html": "uoi-ncsa.html", + "license": "uoi-ncsa.LICENSE" + }, + { + "license_key": "upl-1.0", + "category": "Permissive", + "spdx_license_key": "UPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The Universal Permissive License (UPL), Version 1.0\n\nSubject to the condition set forth below, permission is hereby granted to any\nperson obtaining a copy of this software, associated documentation and/or data\n(collectively the \"Software\"), free of charge and under any and all copyright\nrights in the Software, and any and all patent rights owned or freely licensable\nby each licensor hereunder covering either\n\n(i) the unmodified Software as contributed to or provided by such licensor, or \n(ii) the Larger Works (as defined below), to deal in both\n\n (a) the Software, and\n (b) any piece of software and/or hardware listed in the lrgrwrks.txt file if\n one is included with the Software (each a \"Larger Work\" to which the\n Software is contributed by such licensors),\n\nwithout restriction, including without limitation the rights to copy, create\nderivative works of, display, perform, and distribute the Software and make,\nuse, sell, offer for sale, import, export, have made, and have sold the Software\nand the Larger Work(s), and to sublicense the foregoing rights on either these\nor other terms.\n\nThis license is subject to the following condition:\n\nThe above copyright notice and either this complete permission notice or at a\nminimum a reference to the UPL must be included in all copies or substantial\nportions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "json": "upl-1.0.json", + "yaml": "upl-1.0.yml", + "html": "upl-1.0.html", + "license": "upl-1.0.LICENSE" + }, + { + "license_key": "upx-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-upx-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "SPECIAL EXCEPTION FOR COMPRESSED EXECUTABLES\n============================================\n\nThe stub which is imbedded in each UPX compressed program is part of UPX and UCL, and contains code that is under our copyright. The terms of the GNU General Public License still apply as compressing a program is a special form of linking with our stub.\n\nHereby Markus F.X.J. Oberhumer and Laszlo Molnar grant you special permission to freely use and distribute all UPX compressed programs (including commercial ones), subject to the following restrictions:\n\n1. You must compress your program with a completely unmodified UPX version; either with our precompiled version, or (at your option) with a self compiled version of the unmodified UPX sources as distributed by us.\n\n2. This also implies that the UPX stub must be completely unmodfied, i.e.the stub imbedded in your compressed program must be byte-identical to the stub that is produced by the official unmodified UPX version.\n\n3. The decompressor and any other code from the stub must exclusively get used by the unmodified UPX stub for decompressing your program at program startup. No portion of the stub may get read, copied, called or otherwise get used or accessed by your program.", + "json": "upx-exception-2.0-plus.json", + "yaml": "upx-exception-2.0-plus.yml", + "html": "upx-exception-2.0-plus.html", + "license": "upx-exception-2.0-plus.LICENSE" + }, + { + "license_key": "us-govt-public-domain", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-us-govt-public-domain", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "17 U.S. Code $\u202f105. Subject matter of copyright: United States Government works\n\nCopyright protection under this title is not available for any work of the\nUnited States Government.", + "json": "us-govt-public-domain.json", + "yaml": "us-govt-public-domain.yml", + "html": "us-govt-public-domain.html", + "license": "us-govt-public-domain.LICENSE" + }, + { + "license_key": "us-govt-unlimited-rights", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-us-govt-unlimited-rights", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " Grant of Unlimited Rights\n\nUnder contracts , the U.S. Government obtained \nunlimited rights in the software and documentation contained herein.\nUnlimited rights are defined in DFAR 252.227-7013(a)(19). By making \nthis public release, the Government intends to confer upon all \nrecipients unlimited rights equal to those held by the Government. \nThese rights include rights to use, duplicate, release or disclose the \nreleased technical data and computer software in whole or in part, in \nany manner and for any purpose whatsoever, and to have or permit others \nto do so.\n\n DISCLAIMER\n\nALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR\nDISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED \nWARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE\nSOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE \nOR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A\nPARTICULAR PURPOSE OF SAID MATERIAL.", + "json": "us-govt-unlimited-rights.json", + "yaml": "us-govt-unlimited-rights.yml", + "html": "us-govt-unlimited-rights.html", + "license": "us-govt-unlimited-rights.LICENSE" + }, + { + "license_key": "usrobotics-permissive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-usrobotics-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to copy, display, distribute and make derivative works\nfrom this material in whole or in part for any purpose is granted\nprovided that the above copyright notice and this paragraph are\nduplicated in all copies. THIS SOFTWARE IS PROVIDED \"AS IS\" AND\nWITHOUT ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING, WITHOUT\nLIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\nFOR A PARTICULAR PURPOSE.\n\nIf providing code not subject to a copyright please indicate that the\ncode has been dedicated to the public.", + "json": "usrobotics-permissive.json", + "yaml": "usrobotics-permissive.yml", + "html": "usrobotics-permissive.html", + "license": "usrobotics-permissive.LICENSE" + }, + { + "license_key": "utopia", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-utopia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The agreement below gives the TeX Users Group (TUG) the right to\nsublicense, and grant such sublicensees the right to further sublicense,\nany or all of the rights enumerated below. TUG hereby does so\nsublicense all such rights, irrevocably and in perpetuity, to any and\nall interested parties.\n\n--Karl Berry, TUG President,\non behalf of the TeX Users Group board and members\n17 November 2006\nhttp://tug.org/fonts/utopia\n\n------------------------------------------------------------\nOctober 11, 2006\n\nRE: License to TeX Users Group for the Utopia Typeface\n\nAdobe Systems Incorporated (\"Adobe\") hereby grants to the TeX Users\nGroup and its members a nonexclusive, royalty-free, perpetual license to\nthe typeface software for the Utopia Regular, Utopia Italic, Utopia Bold\nand Utopia bold Italic typefaces, including Adobe Type 1 font programs\nfor each style (collectively, the \"Software\") as set forth below.\n\nAdobe grants the TeX Users Group a license under its copyrights, to use,\nreproduce, display and distribute the Software for any purpose and\nwithout fee provided that the following copyright notice appears in all\nwhole and partial copies of the Software and provided that the following\ntrademark symbol and attribution appear in all unmodified copies of the\nSoftware:\n\nCopyright 1989, 1991 Adobe Systems Incorporated. All rights reserved.\n(alternatively, @1989, 1991 Adobe Systems Incorporated. All rights reserved.)\nUtopia(R)\nUtopia is either a registered trademark or trademark of Adobe Systems\nIncorporated in the United States and/or other countries. Used under\nlicense. \n\nAdobe also grants to the TeX Users Group a license to modify the\nSoftware for any purpose and redistribute such modifications, for any\npurpose and royalty-free, provided that the modified Software shall not\nuse the font name(s) or trademark(s), in whole or in part, unless\nexplicit written permission is granted by Adobe. This restriction\napplies to all references stored in the Software for identification\npurposes, such as the font menu name and other font description\nfields. The TeX Users Group is also permitted to sublicense, and grant\nsuch sublicensees the right to further sublicense, any or all the\nforegoing rights through multiple tiers of distribution. The licenses\ngranted herein are granted in perpetuity and may not be terminated by\neither party unless such termination is based on a breach of the terms\nand conditions herein stated.\n\nAdobe retains ownership of the copyright in the Software. The TeX Users\nGroup agrees that Adobe and its suppliers are the sole and exclusive\nowners of all rights, title and interest, including all copyrights,\npatents, trademarks, trade names, trade secrets and other intellectual\nproperty rights in the Software. No title or ownership of the Software,\nany copies of the Software, or the patent, copyright, trade secret,\ntrademark, trade name or other proprietary rights contained in the\nSoftware is transferred to the TeX Users Group.\n\nThe Adobe trademarks shall not be used in advertising pertaining to the\ndistribution of the Software without express prior permission from\nAdobe. Any such use shall be in accordance with the Adobe trademark\nguidelines, available on the Adobe website at\nhttp://www.adobe.com/misc/pdfs/TM GuideforThirdPartiesFinal.pdf.\nIf any portion of the Software is changed, it cannot be marketed under\nAdobe's trademarks unless Adobe, in its sole discretion, approves by a\nprior writing the quality of the resulting implementation.\n\nThe TeX Users Group shall have the right to evaluate the Software\nprovided by Adobe.\n\nADOBE MAKES NO REPRESENTATIONS ABOUT THE SUITABILITY OF THE SOFTWARE FOR\nANY PURPOSE. IT IS PROVIDED \"AS-IS\" WITHOUT EXPRESS OR IMPLIED\nWARRANTY. ADOBE DISCLAIMS ALL WARRANTIES WITH REGARD TO THE SOFTWARE,\nINCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE, AND NON-INFRINGEMENT OF THIRD PARTY RIGHTS. IN NO\nEVENT SHALL ADOBE BE LIABLE TO YOU OR ANY OTHER PARTY FOR ANY SPECIAL,\nINDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER WHETHER IN\nAN ACTION OF CONTRACT NEGLIGENCE, STRICT LIABILITY OR ANY OTHER ACTION\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\nSOFTWARE. ADOBE WILL NOT PROVIDE ANY TRAINING OR OTHER SUPPORT FOR THE\nSOFTWARE.\n\nAdobe Document Id: 4400078611", + "json": "utopia.json", + "yaml": "utopia.yml", + "html": "utopia.html", + "license": "utopia.LICENSE" + }, + { + "license_key": "vbaccelerator", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-vbaccelerator", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Distribution notice:\n\nYou are free to distribute this zip in it's original state to any\npublic www site, online service or BBS without explicitly obtaining\nthe author's permission. (Notification would be greatly appreciated\nthough!).\n\nYou are free distribute vbalGrid6.ocx unmodified, or to use or modify\nthe source code as you wish. However, you must not distribute\nmodified versions of vbalGrid6.ocx unless you have changed the filename\nand the ProgID (project name).\n\nIf you wish to distribute this zip by any other means (i.e. if\nyou want to include it on a CD or any other software media) then the\nEXPRESS PERMISSION of the author is REQUIRED.\n\nPlease report any bugs in the component to the author.", + "json": "vbaccelerator.json", + "yaml": "vbaccelerator.yml", + "html": "vbaccelerator.html", + "license": "vbaccelerator.LICENSE" + }, + { + "license_key": "vcalendar", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-vcalendar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "For purposes of this license notice, the term Licensors shall mean, \ncollectively, Apple Computer, Inc., AT&T Corp., International \nBusiness Machines Corporation and Siemens Rolm Communications Inc. \nThe term Licensor shall mean any of the Licensors. \n \nSubject to acceptance of the following conditions, permission is hereby \ngranted by Licensors without the need for written agreement and without \nlicense or royalty fees, to use, copy, modify and distribute this \nsoftware for any purpose. \n \nThe above copyright notice and the following four paragraphs must be \nreproduced in all copies of this software and any software including \nthis software. \n \nTHIS SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS AND NO LICENSOR SHALL HAVE \nANY OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS OR \nMODIFICATIONS. \n \nIN NO EVENT SHALL ANY LICENSOR BE LIABLE TO ANY PARTY FOR DIRECT, \nINDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES OR LOST PROFITS ARISING OUT \nOF THE USE OF THIS SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH \nDAMAGE. \n \nEACH LICENSOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, \nINCLUDING BUT NOT LIMITED TO ANY WARRANTY OF NONINFRINGEMENT OR THE \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR \nPURPOSE. \n\nThe software is provided with RESTRICTED RIGHTS. Use, duplication, or \ndisclosure by the government are subject to restrictions set forth in \nDFARS 252.227-7013 or 48 CFR 52.227-19, as applicable.", + "json": "vcalendar.json", + "yaml": "vcalendar.yml", + "html": "vcalendar.html", + "license": "vcalendar.LICENSE" + }, + { + "license_key": "verbatim-manual", + "category": "Copyleft", + "spdx_license_key": "Linux-man-pages-copyleft", + "other_spdx_license_keys": [ + "Verbatim-man-pages", + "LicenseRef-scancode-verbatim-manual" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is granted to make and distribute verbatim copies of this\nmanual provided the copyright notice and this permission notice are\npreserved on all copies.\n\nPermission is granted to copy and distribute modified versions of this\nmanual under the conditions for verbatim copying, provided that the\nentire resulting derived work is distributed under the terms of a\npermission notice identical to this one.\n\nSince the Linux kernel and libraries are constantly changing, this\nmanual page may be incorrect or out-of-date. The author(s) assume no\nresponsibility for errors or omissions, or for damages resulting from\nthe use of the information contained herein. The author(s) may not\nhave taken the same level of care in the production of this manual,\nwhich is licensed free of charge, as they might when working\nprofessionally.\n\nFormatted or processed versions of this manual, if unaccompanied by\nthe source, must acknowledge the copyright and authors of this work.", + "json": "verbatim-manual.json", + "yaml": "verbatim-manual.yml", + "html": "verbatim-manual.html", + "license": "verbatim-manual.LICENSE" + }, + { + "license_key": "verisign", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-verisign", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "VERISIGN, INC. LICENSE AGREEMENT\n\nIMPORTANT - READ CAREFULLY BEFORE DOWNLOADING OR INSTALLING\n\nThis file lists the VeriSign, Inc. (\"VeriSign\") Class 1 Certification\nAuthority Distinguished Name and Public Key information (the \"Information\").\nBY DOWNLOADING OR INSTALLING THE INFORMATION, YOU INDICATE YOUR ACCEPTANCE\nOF THIS LICENSE. IF YOU DO NOT AGREE TO ALL OF THE TERMS OF THIS LICENSE,\nDO NOT DOWNLOAD OR USE THE INFORMATION.\n\n1. License and Limitations. VeriSign grants you a royalty-free license to\nuse, copy and distribute the Information or any compiled derivative of it,\nsubject to the terms of this License. You must reproduce and include this\nentire License and VeriSign's copyright notices and trademarks on each copy\nof the Information and compiled derivative of it. VeriSign retains all\nownership of the Information and all intellectual property rights therein.\n\n2. No Warranty. VeriSign provides the Information \"AS IS\" and makes no\nwarranties, expressed or implied, about the Information or the use thereof.\nWITHOUT LIMITATION, VERISIGN DISCLAIMS ANY IMPLIED WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT OF\nTHIRD PARTY RIGHTS.\n\n3. Limitation of Liability. VeriSign's entire liability to you under this\nLicense shall be limited to a maximum of $10.00. IN NO EVENT SHALL VERISIGN\nBE LIABLE TO YOU OR TO ANY OTHER PERSON FOR ANY SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nINFORMATION.\n\n4. General. This License is governed by the laws of the State of California\nand is the complete and exclusive statement of your agreement with VeriSign\nwith respect to the Information. You acknowledge that the Information is\nbeing provided to you without charge and that this is reflected in the\nabsence of warranties and limitations of liability in this License.\n\n5. NOTICE: THE USE OF THIS VERISIGN CERTIFICATE IS SUBJECT TO THE\nVERISIGN CERTIFICATION PRACTICE STATEMENT LOCATED AT\n http://www.verisign.com/repository/CPS\nOR AVAILABLE FROM:\n VeriSign, Inc.\n 2593 Coast Ave.\n Mountain View, CA 94043\n (415) 961-7500\n\nCode Fragments and ASN.1 discussion are taken from the PKCS standards\npublished by RSA Data Security, Inc.\n\nCopyright 1995 VeriSign, Inc. All Rights Reserved.", + "json": "verisign.json", + "yaml": "verisign.yml", + "html": "verisign.html", + "license": "verisign.LICENSE" + }, + { + "license_key": "vhfpl-1.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-vhfpl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " vhf Public License\n\nBelow is a version of the license for the vhf Free Software. The license is\ncalled the vhf Public License (or \"vhfPL\"), and is an Open Source license.\nIt is thus appropriate for people wishing to write software as Open Source\nwhere all source code to the software is made available to all users and can\nbe freely modified and redistributed.\n\nTo use the free vhf software or develop software based on free vhf software,\nyou have to meet the requirements in the vhfPL.\n\n----------------------------------------------------------------------------\n\n vhf PUBLIC LICENSE (vhfPL)\n Version 1.1, February 2004\n\nCopyright (C) 2003/2004 vhf interservice GmbH,\n Im Marxle 3, 72119 Altingen, Germany.\nEveryone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n\nThis license applies to any software containing a notice placed by the\ncopyright holder saying that it may be distributed under the terms of this\nvhf Public License. Such software is herein referred to as vhf Software.\nThis license covers modification and distribution of the vhf software, use\nof third-party application programs based on the vhf software, and\ndevelopment of free software which uses the vhf software.\n\n Granted Rights\n\n1. You are granted the rights set forth in this license provided you agree\n to any and all conditions in this license. Whole or partial distribution\n of the vhf software in any form signifies acceptance of this license. \n\n2. You may copy and distribute the vhf software provided that\n the entire package is distributed, including this License.\n\n3. You may make modifications to the vhf software files and distribute your\n modifications. The following restrictions apply to modifications:\n\n a. You must cause the modified files to carry prominent notices\n stating that you changed the files and the date of any change.\n\n b. Modifications must not alter or remove any copyright notices in the\n vhf software.\n\n4. You may distribute the vhf software (or work based on it) in\n objective code or machine-executable forms, provided that you\n meet these restrictions:\n\n a. You accompany the vhf software with this license.\n\n b. You must ensure that all recipients of the machine-executable\n forms are also able to receive the complete machine-readable\n source code to the distributed vhf software, including all\n modifications, without any charge beyond the costs of data\n transfer.\n\n c. You ensure that all modifications included in the\n machine-executable forms are available under the terms of this\n license.\n\n5. You may use the original or modified versions of the vhf software\n to compile, link and run application programs developed by you or\n third parties under this license.\n\n6. You may develop application programs, reusable components (eg. Bundles)\n and other software items that link with the original or modified\n versions of the vhf software. These items, when distributed in\n machine-executable form, have the following restrictions:\n\n a. You must ensure that all recipients of the machine-executable\n forms of these items are also able to receive the complete\n source code to the items without any charge beyond the costs of\n data transfer.\n\n b. You must explicitly license all recipients of your items to use\n and re-distribute original and modified versions of the items\n under terms identical to those under which they received the items.\n\n7. The trademarks or software titles 'vhf', 'Cenon' etc. may be used for\n promoting software, products or services which use or contain the\n vhf software.\n The associated names of the authors of the vhf software may not be used\n to endorse or promote products or services derived from or linking the\n vhf Software without specific prior written permission.\n\n\n Limitations of Liability\n\nIn no event shall the authors of the vhf software or the copyright holder\nor their employers be liable for any lost revenue or profits or other\ndirect, indirect, special, incidental or consequential damages, even if\nthey have been advised of the possibility of such damages.\n\n No Warranty\n\nThe vhf software is provided AS IS with NO WARRANTY OF ANY KIND,\nINCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE.\n\n----------------------------------------------------------------------------\nCopyright (C) 2003 vhf interservice GmbH service@vhf.de", + "json": "vhfpl-1.1.json", + "yaml": "vhfpl-1.1.yml", + "html": "vhfpl-1.1.html", + "license": "vhfpl-1.1.LICENSE" + }, + { + "license_key": "vic-metcalfe-pd", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-vic-metcalfe-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This file is provided for use with the unix-socket-faq. It is public\ndomain, and may be copied freely. There is no copyright on it. The\noriginal work was by Vic Metcalfe (vic@brutus.tlug.org), and any\nmodifications made to that work were made with the understanding that\nthe finished work would be in the public domain.\n\nIf you have found a bug, please pass it on to me at the above address\nacknowledging that there will be no copyright on your work.\n\nThe most recent version of this file, and the unix-socket-faq can be\nfound at http://www.interlog.com/~vic/sock-faq/.", + "json": "vic-metcalfe-pd.json", + "yaml": "vic-metcalfe-pd.yml", + "html": "vic-metcalfe-pd.html", + "license": "vic-metcalfe-pd.LICENSE" + }, + { + "license_key": "vicomsoft-software", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-vicomsoft-software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "VICOMSOFT SOFTWARE LICENSE\nPlease read this document carefully before installing the \nVicomsoft software. By installing the software you agree \nto become contractually bound by the terms of this licence. \n\nDEMONSTRATION SOFTWARE\nDemonstration software is provided for evaluation purposes \nonly, for the period stated on the download site or in \naccompanying literature. If not stated then the demonstration\nperiod is 30 days from the time the software is first run.\n\nThe enclosed computer program(s) (\"Software\") is licensed, not \nsold, to you by Vicomsoft for use only under the following terms \nand Vicomsoft reserves any rights not expressly granted to you. \n\nYou own the disk on which any Software is recorded, but Vicomsoft \nretains ownership of all copies of the Software itself.\n\nLICENSE.\nThis License allows you to:\n\n(a)\tHave the Software installed only on a single \n\tcomputer at a time. Copies on more than one computer \n\tshall be deemed to be illegal copies and are in \n\tbreach of both copyright and this License.\n\n(b) \tTotally remove a copy from the computer on which it \n\tis installed and install it on an alternative \n\tcomputer provided once again that the Software shall \n\tnot at any time be installed on more than one \n\tcomputer at any one time.\n\n(c) \tExecute the Software from a common disk shared by \n\tmultiple CPUs provided one authorized copy of the \n\tSoftware has been licensed from Vicomsoft for each \n\tCPU executing the Software.\n\n(d) \tMake one copy of the Software in machine readable \n\tform; provided that such copy or the original may \n\tbe used solely for backup purposes. The Software is \n\tprotected by copyright law. As an express condition \n\tof this License, you must reproduce on the backup \n\tcopy the Vicomsoft copyright notice and any other \n\tproprietary legends on the original supplied by \n\tVicomsoft. \n\nRESTRICTIONS.\n(a)\tYou may NOT distribute copies of the Software to others. \n\n(b)\tThe Software contains trade secrets and to protect them \n\tyou may NOT decompile, reverse engineer, disassemble \n\tor otherwise reduce the Software to human readable form.\n\n(c)\tYou may NOT modify, adapt, translate, rent, lease, loan, \n\tresell for profit, distribute, network, or create \n\tderivative works based on the Software or any part thereof.\n\n\nTERMINATION. \nThis License is effective until terminated. The License will \nterminate immediately without notice from Vicomsoft if \nyou fail to comply with any of its provisions. Upon termination \nyou must destroy the Software and all copies thereof, and you \nmay terminate this License at any time by so doing.\n\n\nWARRANTY DISCLAIMER. \nThis Software and the accompanying written materials are licensed \n\"as is\". The full text of the warranty is provided in the User \nManual and in no event will Vicomsoft, or its developers, \nDirectors, Officers, Employees be liable to you for any \nconsequential, incidental, or indirect damage (including damages \nfor loss of business profits, business interruption, loss of \nbusiness information, and the like) arising out of the use or \ninability to use the Software or accompanying written materials \neven if Vicomsoft or an authorized Vicomsoft representative has been \nadvised of the possibility of such damages. \nVicomsoft does not warrant that the Software will function \nproperly in your particular environment. Vicomsoft's liability \nto you for actual damages for any cause whatsoever and regardless of \nthe form of the action will be limited to the money paid for the \nSoftware that caused the damages.\n\n\nGENERAL. \nThis License will be construed under the laws of England.", + "json": "vicomsoft-software.json", + "yaml": "vicomsoft-software.yml", + "html": "vicomsoft-software.html", + "license": "vicomsoft-software.LICENSE" + }, + { + "license_key": "viewflow-agpl-3.0-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-viewflow-agpl-3.0-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "VIEWFLOW LIBRARY EXCEPTION\n\nCopyright (c) 2017 Mikhail Podgurskiy \n\nThis Viewflow Library Exception (\"Exception\") is an additional\npermission under section 7 of the GNU Affero General Public License,\nversion 3 (\"AGPLv3\"). It applies to a viewflow library that bears a\nnotice placed by the copyright holder of the library stating that the\nlibrary is governed by AGPLv3 along with this Exception.\n\n1. Grant of Additional Permission.\n\nIf you modify the Program or any covered work, without changing its\nsource code, only by linking or combining some or all bundles of the\nProgram with separate works covered by AGPL- incompatible license\nterms, the licensors of this Program grant you the additional\npermission to convey the resulting work.\n\nIf you modify the Program, and your modified version becomes subject\nto the requirement stated in AGPLv3, section 13, you may satisfy this\nrequirement by providing access to the Corresponding Source of your\nmodified version to each user that explicitly requests such\nCorresponding Source, no later than 15 days following the date on\nwhich such request was received.\n\n\n2. No Weakening of Viewflow Copyleft.\n\nThe availability of this Exception does not imply any general\npresumption that third-party software is unaffected by the copyleft\nrequirements of the license of Viewflow", + "json": "viewflow-agpl-3.0-exception.json", + "yaml": "viewflow-agpl-3.0-exception.yml", + "html": "viewflow-agpl-3.0-exception.html", + "license": "viewflow-agpl-3.0-exception.LICENSE" + }, + { + "license_key": "vim", + "category": "Copyleft", + "spdx_license_key": "Vim", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "VIM LICENSE\n\nI) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n\nII) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n\t the distribution how to contact you. When the maintainer asks you\n\t (in any way) for a copy of the modified Vim you distributed, you\n\t must make your changes, including source code, available to the\n\t maintainer without fee. The maintainer reserves the right to\n\t include your changes in the official version of Vim. What the\n\t maintainer will do with your changes and under what license they\n\t will be distributed is negotiable. If there has been no negotiation\n\t then this license, or a later version, also applies to your changes.\n\tThe current maintainer is Bram Moolenaar . If this \n\t changes it will be announced in appropriate places (most likely\n\t vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n\t impossible to contact the maintainer, the obligation to send him\n\t your changes ceases. Once the maintainer has confirmed that he has\n\t received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n\t mentioned under a) you are allowed to further distribute it\n\t unmodified, as mentioned at I). If you make additional changes the\n\t text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n\t the modified Vim you distribute. This may be done in the form of a\n\t context diff. You can choose what license to use for new code you\n\t add. The changes and their license must not restrict others from\n\t making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n\t under c), you can distribute it without the source code for the\n\t changes if the following three conditions are met:\n\t - The license that applies to the changes permits you to distribute\n\t the changes to the Vim maintainer without fee or restriction, and\n\t permits the Vim maintainer to include the changes in the official\n\t version of Vim without fee or restriction.\n\t - You keep the changes for at least three years after last\n\t distributing the corresponding modified Vim. When the maintainer\n\t or someone who you distributed the modified Vim to asks you (in\n\t any way) for the changes within this period, you must make them\n\t available to him.\n\t - You clearly describe in the distribution how to contact you. This\n\t contact information must remain valid for at least three years\n\t after last distributing the corresponding modified Vim, or as long\n\t as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n\t you can distribute the modified Vim under the GNU GPL version 2 or\n\t any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n\nIII) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n \n\nIV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\n\nNote:\n\n- If you are happy with Vim, please express that by reading the rest of this\n file and consider helping needy children in Uganda.\n\n- If you want to support further Vim development consider becoming a\n |sponsor|. The money goes to Uganda anyway.\n\n- According to Richard Stallman the Vim license is GNU GPL compatible.\n A few minor changes have been made since he checked it, but that should not\n make a difference.\n\n- If you link Vim with a library that goes under the GNU GPL, this limits\n further distribution to the GNU GPL. Also when you didn't actually change\n anything in Vim.\n\n- Once a change is included that goes under the GNU GPL, this forces all\n further changes to also be made under the GNU GPL or a compatible license.\n\n- If you distribute a modified version of Vim, you can include your name and\n contact information with the \"--with-modified-by\" configure argument or the\n MODIFIED_BY define.", + "json": "vim.json", + "yaml": "vim.yml", + "html": "vim.html", + "license": "vim.LICENSE" + }, + { + "license_key": "visual-idiot", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-visual-idiot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "By attaching this document to the given files (the \u201cwork\u201d),\nyou, the licensee, are hereby granted free usage in both\npersonal and commerical environments, without any\nobligation of attribution or payment (monetary or\notherwise). The licensee is free to use, copy, modify,\npublish, distribute, sublicence, and/or merchandise the\nwork, subject to the licensee inflecting a positive message\nunto someone. This includes (but is not limited to):\nsmiling, being nice, saying \u201cthank you\u201d, assisting other\npersons, or any similar actions percolating the given\nconcept.\n\nThe above copyright notice serves as a permissions notice\nalso, and may optionally be included in copies or portions\nof the work.\n\nThe work is provided \u201cas is\u201d, without warranty or support,\nexpress or implied. The author(s) are not liable for any\ndamages, misuse, or other claim, whether from or as a\nconsequence of usage of the given work.", + "json": "visual-idiot.json", + "yaml": "visual-idiot.yml", + "html": "visual-idiot.html", + "license": "visual-idiot.LICENSE" + }, + { + "license_key": "visual-numerics", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-visual-numerics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software is freely\ngranted by Visual Numerics, Inc., provided that the copyright notice above and\nthe following warranty disclaimer are preserved in human readable form. \n\nBecause this software is licenses free of charge, it is provided \"AS IS\", with\nNO WARRANTY. TO THE EXTENT PERMITTED BY LAW, VNI DISCLAIMS ALL WARRANTIES,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ITS PERFORMANCE,\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. VNI WILL NOT BE LIABLE\nFOR ANY DAMAGES WHATSOEVER ARISING OUT OF THE USE OF OR INABILITY TO USE THIS\nSOFTWARE, INCLUDING BUT NOT LIMITED TO DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,\nPUNITIVE, AND EXEMPLARY DAMAGES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.", + "json": "visual-numerics.json", + "yaml": "visual-numerics.yml", + "html": "visual-numerics.html", + "license": "visual-numerics.LICENSE" + }, + { + "license_key": "vita-nuova-liberal", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-vita-nuova-liberal", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "VITA NUOVA LIBERAL SOURCE LICENCE\n 29 May 2003\nIMPORTANT NOTICE - READ CAREFULLY: This Licence Agreement\n(``LICENCE'') is a legal agreement between you as an indi-\nvidual person or organisation (``YOU'') and Vita Nuova Hold-\nings Limited (``VITA NUOVA'') (having an office at 3 Innova-\ntion Close, York Science Park, University Road, York England\nYO10 5ZF), for all or any portion of the software product\naccompanying this LICENCE, which includes computer software\nin binary and source code form, other information and docu-\nmentation (``LICENSED SOFTWARE''), where a notice declares\nthat this LICENCE applies.\nBy copying (except for the sole purpose of making a backup\ncopy), using, modifying, or distributing all or part of YOUR\ncopy of the LICENSED SOFTWARE YOU accept all the terms and\nconditions of this LICENCE. Distribution includes allowing\nothers to use YOUR copy directly or indirectly (eg, over a\ncomputer network).\nYOU may cancel this LICENCE without explanation or penalty\nby ceasing to copy, use, modify or distribute the LICENSED\nSOFTWARE.\nSubject to the restrictions and conditions in Clause 2 below\nand to third party intellectual property claims YOU MAY for\ncommercial or non-commercial purposes on a world-wide,\nroyalty-free, non-exclusive and perpetual basis (subject to\nClause 3):\n1.1. make ADAPTATIONS of the LICENSED SOFTWARE in binary or\n source code form. ADAPTATIONS means any work (ie\n code, document, etc) based on the LICENSED SOFTWARE or\n any part of it, for example (i) any work incorporating\n the LICENSED SOFTWARE or any part of it, (ii) any work\n incorporating any modified form of the LICENSED SOFT-\n WARE or any part of it (eg where the LICENSED SOFTWARE\n is rewritten in a different computer language or con-\n verted to operate on a different type of CPU), or\n (iii) any work otherwise covered by any of VITA\n NUOVA's or any third party's intellectual property\n rights in the LICENSED SOFTWARE.\n1.2. use, copy and distribute the LICENSED SOFTWARE and/or\n ADAPTATIONS in binary or source code form provided\n that each copy of the LICENSED SOFTWARE and ADAPTA-\n TIONS shall retain without change a copy of this\n LICENCE and all notices related to it and retain all\n existing copyright notices in files and directories.\n Where non-trivial extracts are taken from the LICENSED\n SOFTWARE YOU must ensure the extracts contain appro-\n priate copyright notices based on the existing copy-\n right notices pertaining to the files and/or directo-\n ries from which the extracts were taken including a\n reference to this LICENCE.\n1.3. choose to offer and to make a charge for support, war-\n ranties, indemnity or liability obligations (``Addi-\n tional Terms'') provided always that YOU may only\n offer such Additional Terms on YOUR own behalf and as\n YOUR exclusive responsibility and not on behalf of\n VITA NUOVA. If YOU offer Additional Terms YOU must\n offer them under an agreement of YOUR own separate\n from this one. YOU must obtain YOUR sub-licensees\n agreement that any Additional Terms are offered by YOU\n alone and YOU hereby agree to indemnify, defend hold\n harmless VITA NUOVA its servants and agents for any\n liability arising directly or indirectly as a result\n of any such Additional Terms.\n YOU shall have the right to determine the form and\n content of any non-exclusive sub-licence provided that\n YOU are in compliance with the terms of this licence\n and that YOUR sub-licence does not attempt to limit or\n change the recipient's rights in the LICENSED SOFTWARE\n and licence conditions from those set forth in this\n LICENCE in this Clause 1 and in Clause 2. YOUR right\n to grant such sub-licence is always subject to the\n terms of this LICENCE with VITA NUOVA. YOU agree that\n in the event of any conflict or inconsistency between\n any provision of this LICENCE and any sub-licence\n granted under this Clause, this LICENCE shall prevail.\nAll rights not specifically and expressly granted under this\nLICENCE are reserved by VITA NUOVA. Notwithstanding Clause\n1 above:\n2.1. If YOU distribute the LICENSED SOFTWARE or any ADAPTA-\n TIONS of it to any other party in any form, with or\n without fee, YOU MUST make the complete source code\n including any ADAPTATIONS available to that party in\n any mutually convenient form and license its use, mod-\n ification, copying, and redistribution under terms no\n more restrictive than those of Clause 1 and this\n Clause 2 of this LICENCE.\n2.2. If YOU use the LICENSED SOFTWARE or any ADAPTATIONS of\n it as the basis or as supporting software for YOUR\n software (``APPLICATION'') and YOU make the APPLICA-\n TION available for use by any other party in any form,\n with or without fee, YOU MUST make the complete source\n code of the APPLICATION available to that party in any\n mutually convenient form and license its use, modifi-\n cation, copying, and redistribution under terms no\n more restrictive than those of Clause 1 and this\n Clause 2 of this LICENCE.\n3.1. This LICENCE is effective until terminated. Without\n prejudice to any other rights, VITA NUOVA has the\n option to terminate this LICENCE by written notice if\n YOU fail to comply with any term or condition of this\n LICENCE. Further, YOU agree upon any termination of\n this LICENCE to cease to use it in any manner whatso-\n ever.\n3.2. All sub-licences of the LICENSED SOFTWARE and any\n ADAPTATIONS validly granted to third parties pursuant\n to the terms of this LICENCE shall survive any termi-\n nation of this LICENCE. Those terms of this LICENCE,\n which by their nature survive the termination of this\n LICENCE, shall remain in effect beyond any termination\n of this LICENCE.\n4.1. The LICENSED SOFTWARE is protected by copyright law\n and international treaty provisions. YOU acknowledge\n that all rights, title and interest (including but\n without limitation all intellectual property rights)\n in the LICENSED SOFTWARE will remain the exclusive\n property of VITA NUOVA or its suppliers, and YOU will\n not acquire any rights to the LICENSED SOFTWARE other\n than those expressly set out in this LICENCE. VITA\n NUOVA and its suppliers reserve all rights not\n expressly granted to YOU, and no other licences are\n granted or implied.\n4.2. Subject to Clause 4.1 above, YOU shall own all rights\n title and interest in any intellectual property rights\n resulting from YOUR creation of ADAPTATIONS and addi-\n tions to the LICENSED SOFTWARE.\n5.1. TO THE MAXIMUM EXTENT PERMITTED BY THE APPLICABLE LAW\n VITA NUOVA PROVIDES THE LICENSED SOFTWARE ON AN ``AS\n IS'' BASIS AND DOES NOT WARRANT OR REPRESENT THAT THE\n LICENSED SOFTWARE WILL MEET YOUR REQUIREMENTS OR THAT\n THE OPERATION OF THE LICENSED SOFTWARE WILL BE UNIN-\n TERRUPTED OR ERROR-FREE OR THAT DEFECTS IN THE\n LICENSED SOFTWARE WILL BE CORRECTED. THE LICENSED\n SOFTWARE MAY CONTAIN IN WHOLE OR IN PART PRE-RELEASE,\n UNTESTED OR NOT FULLY TESTED SOFTWARE. YOU EXPRESSLY\n AGREE THAT THE USE OF THE LICENSED SOFTWARE OR ANY\n PORTION THEREOF IS AT YOUR SOLE AND ENTIRE RISK. THE\n LICENSED SOFTWARE IS PROVIDED WITHOUT UPGRADES OR SUP-\n PORT OF ANY KIND AND VITA NUOVA AND ITS SUPPLIERS DIS-\n CLAIM ALL WARRANTIES, EITHER EXPRESS OR IMPLIED,\n INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES AND/OR\n CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY\n AND FITNESS FOR A PARTICULAR PURPOSE AND NON-\n INFRINGEMENT OF THIRD PARTY RIGHTS, WITH REGARD TO THE\n LICENSED SOFTWARE AND THE ACCOMPANYING WRITTEN MATERI-\n ALS.\n5.2. NOTHING IN THIS LICENCE LIMITS VITA NUOVA'S LIABILITY\n TO YOU IN THE EVENT OF DEATH OR PERSONAL INJURY\n RESULTING FROM THE NEGLIGENCE OR WILFUL DEFAULT OF\n VITA NUOVA.\n6.1. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN\n NO EVENT SHALL VITA NUOVA OR ITS SUPPLIERS BE LIABLE\n FOR ANY DAMAGES OR LOSS WHATSOEVER INCLUDING BUT NOT\n LIMITED TO DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL\n LOSS OR DAMAGE, AND LOSS OF BUSINESS AND/OR PROFITS,\n LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF BUSINESS\n INFORMATION OR DATA, OR ANY OTHER FINANCIAL LOSS ARIS-\n ING OUT OF THE USE OF OR THE INABILITY TO USE THE\n LICENSED SOFTWARE AND/OR ANY ADAPTATIONS, EVEN IF VITA\n NUOVA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAM-\n AGES. IN ANY CASE, VITA NUOVA'S AND ITS SUPPLIERS'\n ENTIRE LIABILITY UNDER THIS LICENCE SHALL BE LIMITED\n TO THE AMOUNT ACTUALLY PAID BY YOU FOR THE LICENSED\n SOFTWARE.\n7.1. YOU agree that the laws of England shall apply to any\n dispute arising from this LICENCE. YOU agree for the\n benefit of VITA NUOVA that the Courts of England have\n exclusive jurisdiction to hear and decide any suit,\n action or proceedings (``Proceedings''), and to settle\n any disputes, which may arise out of or in connection\n with this LICENCE and, for these purposes YOU irrevo-\n cably submit to the jurisdiction of the English\n Courts.\n7.2. The submission to the jurisdiction of the English\n Courts does not limit VITA NUOVA's right to take any\n Proceedings in any one or more jurisdictions, nor does\n the taking of Proceedings by VITA NUOVA in any one or\n more jurisdictions preclude VITA NUOVA taking Proceed-\n ings in another jurisdiction if and to the extent per-\n mitted by applicable law.\n8.1. This is the entire agreement between YOU and VITA\n NUOVA which supersedes any prior agreement or under-\n standing whether written or oral relating to the sub-\n ject matter of this LICENCE.\n8.2. YOU will in all YOUR dealings with the LICENSED SOFT-\n WARE and any ADAPTATIONS act as an independent con-\n tractor. Nothing in this LICENCE will be construed as\n creating an agency, partnership, or any other legal\n association between YOU and VITA NUOVA and YOU will\n not represent that YOU have any authority to assume or\n create any obligation express or implied on behalf of\n VITA NUOVA.\n8.3. A person who is not a party to this LICENCE shall have\n no rights pursuant to the Contracts (Rights of Third\n Parties) Act 1999 (the ``Act'') to enforce any term of\n this LICENCE provided that a person who is the lawful\n successor to or permitted assignee of the rights of a\n party is considered to be a party to this LICENCE.\n Any right or remedy of a third party which exists or\n is available apart from the Act is not affected.\n8.4. VITA NUOVA may from time to time and at its sole dis-\n cretion publish a revised and/or new version of this\n LICENCE which shall then govern the licensing of all\n copies of LICENSED SOFTWARE supplied by VITA NUOVA\n after the posting of such revised or new licence.\n Should YOU have any questions regarding this LICENCE\n or wish to contact VITA NUOVA for any reason visit our\n web site at www.vitanuova.com for contact details.", + "json": "vita-nuova-liberal.json", + "yaml": "vita-nuova-liberal.yml", + "html": "vita-nuova-liberal.html", + "license": "vita-nuova-liberal.LICENSE" + }, + { + "license_key": "vitesse-prop", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-vitesse-prop", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " Unpublished rights reserved under the copyright laws of the United States of\n America, other countries and international treaties. Permission to use, copy,\n store and modify, the software and its source code is granted. Permission to\n integrate into other products, disclose, transmit and distribute the software\n in an absolute machine readable format (e.g. HEX file) is also granted. The\n source code of the software may not be disclosed, transmitted or distributed\n without the written permission of Vitesse. The software and its source code\n may only be used in products utilizing the Vitesse switch products.\n \n This copyright notice must appear in any copy, modification, disclosure,\n transmission or distribution of the software. Vitesse retains all ownership,\n copyright, trade secret and proprietary rights in the software.\n \n THIS SOFTWARE HAS BEEN PROVIDED \"AS IS,\" WITHOUT EXPRESS OR IMPLIED WARRANTY\n INCLUDING, WITHOUT LIMITATION, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS\n FOR A PARTICULAR USE AND NON-INFRINGEMENT.", + "json": "vitesse-prop.json", + "yaml": "vitesse-prop.yml", + "html": "vitesse-prop.html", + "license": "vitesse-prop.LICENSE" + }, + { + "license_key": "vixie-cron", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-vixie-cron", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Distribute freely, except: don't remove my name from the source or documentation\n(don't take credit for my work), mark your changes (don't get me blamed for your\npossible bugs), don't alter or remove this notice. May be sold if buildable\nsource is provided to buyer. No warrantee of any kind, express or implied, is\nincluded with this software; use at your own risk, responsibility for damages\n(if any) to anyone resulting from the use of this software rests entirely with\nthe user.\n\nSend bug reports, bug fixes, enhancements, requests, flames, etc., and I'll try\nto keep a version up to date. I can be reached as follows: \n\nPaul Vixie\n\nuunet!decwrl!vixie!paul\n\nVixie Cron V3.0 December 27, 1993", + "json": "vixie-cron.json", + "yaml": "vixie-cron.yml", + "html": "vixie-cron.html", + "license": "vixie-cron.LICENSE" + }, + { + "license_key": "vnc-viewer-ios", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-vnc-viewer-ios", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "VNCViewer for iOS END-USER LICENCE AGREEMENT \n\nIMPORTANT INFORMATION: PLEASE READ THIS AGREEMENT CAREFULLY BEFORE \nDOWNLOADING, INSTALLING, AND/OR USING THIS SOFTWARE. BY DOWNLOADING, \nINSTALLING AND/OR USING THE SOFTWARE, YOU ACCEPT AND ACKNOWLEDGE THAT YOU \nHAVE READ, AND UNDERSTAND, THE TERMS AND CONDITIONS OF THIS LICENSE \nAGREEMENT WITH REALVNC LIMITED (\"REALVNC\"), AND AGREE TO BE BOUND BY ITS \nTERMS AND CONDITIONS. BY USING ANY UPDATED VERSION OF THE SOFTWARE WHICH \nMAY BE MADE AVAILABLE, YOU ACCEPT THAT THE TERMS OF THIS AGREEMENT APPLY TO \nSUCH UPDATED SOFTWARE. IF YOU DO NOT AGREE TO ALL OF THE TERMS AND \nCONDITIONS OF THIS AGREEMENT, STOP NOW AND DO NOT PROCEED TO DOWNLOAD, \nINSTALL AND/OR USE THE SOFTWARE. \n\nThis Software Agreement (\"Agreement\") is between You (either an individual or an entity) (\"the End \nUser\" or \"You\") and RealVNC Limited (\"RealVNC\") only. You acknowledge that this Agreement is a \nbinding agreement between you and RealVNC only, and not with Apple. You acknowledge that you \nare purchasing the license to the Software from RealVNC; Apple is acting as agent for RealVNC in \nproviding the Software to you; Apple is not a party to the license between you and RealVNC with \nrespect to the Software. RealVNC, not Apple, is solely responsible for the Software and the content \nthereof. \n\nThis Agreement authorises You to use the VNC Viewer Software for iOS (\"The Software\"), which may \nbe delivered to You by electronic mail, physical means, such as CD-ROM or memory stick, \ndownloaded from an authorised online reseller\u2019s Web pages or Servers or from other sources under \nthe terms and conditions set forth below together with any licence key for such Software. This is an \nagreement on end-user rights and not an agreement for sale. RealVNC continues to own the copy of \nthe Software and the physical media and any other copy that You are authorised to make pursuant to \nthis Agreement. \n\n1. INTELLECTUAL PROPERTY RIGHTS \n1.1 The Software, its structure, organisation and algorithms are valuable trade secrets and \nconfidential information and are protected by copyright and other intellectual property laws, and all \nintellectual property rights in them belong to RealVNC Limited (\"RealVNC\"), or are licensed to it. You \nmust not copy the Software, except as set forth in clause 2 (Permitted End-User Rights and \nLimitations on Use). Any copies which You are permitted to make pursuant to this Agreement must \ncontain the same copyright and other proprietary notices that appear on the Software. \n\n1.2 RealVNC and You acknowledge that, in the event of any third party claim that the Software or \nyour possession and use of the Software infringes that third party\u2019s intellectual property rights, \nRealVNC, and not Apple, will be solely responsible for the investigation, defense, settlement and \ndischarge of any such intellectual property infringement claim subject to Clause 5. \n\n2. PERMITTED END-USER RIGHTS AND LIMITATIONS ON USE \n2.1 During the term of this Agreement and as long as you comply with the terms of this Agreement \nRealVNC hereby grants You the non-exclusive, non-transferable end-user rights to install and use \none copy of the Software solely and exclusively for your use on any Apple iPhone, iPad or iPod touch \nthat you own or control and as permitted by the Usage Rules set forth in the App Store Terms of \nService. \n\n2.2 You may not reproduce, publish, transmit, modify, reverse engineer, reverse compile, \ndisassemble, or otherwise attempt to discover the source code of the Software (except to the extent \nthat this restriction is expressly prohibited by law) or create derivative works from, or publicly display \n\nthe Software or part thereof. Copying or storing or using the Software other than as permitted in \nClause 2.1 is expressly prohibited unless you obtain prior written permission from RealVNC. \nYou are expressly prohibited from distributing the Software in any format, in whole or in part, for sale, \nor for commercial use or for any unlawful purpose. You may not rent, lease or otherwise transfer the \nSoftware or allow it to be copied. \n\n2.3 In the case of any conflict between this Clause 2 and the Usage Rules set forth in the App Store \nTerms of Service, the App Store Terms of Service shall take precedence. \n\n3. LIMITED WARRANTY \n3.1 RealVNC, and not Apple, is solely responsible for any product warranties, whether express or \nimplied by law, to the extent not effectively disclaimed. RealVNC warrants to the original licensee that \nthe Software will perform substantially in accordance with any documentation provided for it for 90 \ndays following first use when used on Host Systems meeting the minimum hardware and software \nrequirements specified on the RealVNC website. \n\n3.2 This limited Warranty applies only if any problem is reported to RealVNC during the above \nwarranty period. It is void if the failure of the Software is the result of accident, abuse, misapplication \nor inappropriate use of the Software or use with Host Systems not meeting the minimum hardware \nand software requirements specified. The developer is RealVNC Limited a UK company based at \nBetjeman House, 104 Hills Road, Cambridge, CB2 1LQ, UK. Contactable at, telephone: +44 1223 \n310400, email support: iphone-support@realvnc.com, where any such questions, complaints or \nclaims in respect of the Software should be reported. \n\n3.3 In the event of any failure of the Software to conform to the warranty, You may notify Apple, and \nApple will refund the purchase price for the Software to You; and to the maximum extent permitted by \napplicable law, Apple will have no other warranty obligation whatsoever with respect to the Software, \nand any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to \nconform to any warranty will be RealVNC\u2019s sole responsibility in accordance with this Agreement. \n\n4. SUPPORT AND MAINTENANCE \nRealVNC, and not Apple, is solely responsible for providing any maintenance and support services \nwith respect to the Software, as specified herein, or as required under applicable law. RealVNC and \nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support \nservices with respect to the Software. \n\n5. LIMITATION ON LIABILITY \nEXCEPT FOR THE EXPRESS WARRANTIES GIVEN IN THIS AGREEMENT, TO THE EXTENT \nPERMITTED BY LAW, REALVNC DISCLAIMS ALL WARRANTIES ON THE SOFTWARE, EITHER \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF \nMERCHANTABILITY, NON-INFRINGEMENT OF THIRD PARTY RIGHTS AND FITNESS FOR \nPARTICULAR PURPOSE. TO THE EXTENT PERMITTED BY LAW REALVNC SHALL NOT BE \nLIABLE FOR ANY DIRECT, CONSEQUENTIAL INDIRECT OR INCIDENTAL LOSS OR DAMAGES \nWHATSOEVER INCLUDING LOST PROFITS OR SAVINGS ARISING OUT OF THE USE OF THE \nSOFTWARE, RELIANCE ON THE DATA PRODUCED OR INABILITY TO USE THE SOFTWARE \n(INCLUDING LOSS OR DAMAGE TO YOUR (OR ANY OTHER PERSON'S) DATA OR COMPUTER \nPROGRAMS) EVEN IF REALVNC HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH \nDAMAGES. \n\nNOTHING IN THIS AGREEMENT LIMITS LIABILITY FOR DEATH OR PERSONAL INJURY \nARISING FROM A PARTY'S NEGLIGENCE OR FROM FRAUDULENT MISREPRESENTATION ON \nTHE PART OF A PARTY. NOTHING IN THIS AGREEMENT LIMITS RealVNC\u2019S LIABILITY TO YOU \nBEYOND WHAT IS PERMITTED BY APPLICABLE LAW. \n\nYou acknowledge that RealVNC, and not Apple, are responsible for addressing any claims You or \nany third-parties may have relating to the Software or your possession and/or use of that Software, \nincluding but not limited to: (i) product liability claims; (ii) any claim that the Software fails to conform \nto any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or \nsimilar legislation. \n\n6. EXPORT CONTROL \nThe United States and other countries control the export of Software and information. You are \nresponsible for compliance with the laws of your local jurisdiction regarding the import, export or reexport \nof the Software, and agree to comply with such restrictions and not to export or re-export the \nSoftware where this is prohibited. By downloading the Software, you are agreeing that you are not a \nperson or entity to which such export is prohibited. RealVNC is a Limited company registered in \nEngland. You represent and warrant that (i) you are not located in a country that is subject to a U.S. \nGovernment embargo, or that has been designated by the U.S. Government as a \"terrorist \nsupporting\" country; and (ii) You are not listed on any U.S. Government list of prohibited or restricted \nparties. \n\n7. TERM AND TERMINATION \nThis licence shall continue in force unless and until it is terminated by RealVNC by e-mail notice to \nyou, if it reasonably believes that you have breached a material term of this Agreement. In the case \nabove, you must delete and destroy all copies of the Software in your possession and control and \noverwrite any electronic memory or storage locations containing the Software. \n\n8. GENERAL TERMS \n8.1 The construction, validity and performance of this Agreement shall be governed in all respects by \nEnglish law, and the Parties agree to submit to the non-exclusive jurisdiction of the English courts. \n\n8.2 If any provision of this Agreement is found to be invalid by any court having competent jurisdiction, \nthe invalidity of such provision shall not affect the validity of the remaining provisions of this \nagreement, which shall remain in full force and effect. \n\n8.3 Despite anything else contained in this Agreement, neither party will be liable for any delay in \nperforming its obligations under this Agreement if that delay is caused by circumstances beyond its \nreasonable control (including, without limitation, any delay caused by an act or omission of the other \nparty) and the party affected will be entitled to a reasonable extension of time for the performance of \nits obligations. \n\n8.4 No waiver of any term of this Agreement shall be deemed a further or continuing waiver of such \nterm or any other term. \n\n8.5 You may not assign, subcontract, sublicense or otherwise transfer any of your rights or obligations \nunder this Agreement. \n\n8.6 This Agreement constitutes the entire agreement between You and RealVNC. \n\n8.7 You acknowledge and agree that Apple, and Apple\u2019s subsidiaries, are third party beneficiaries of \nthis Agreement, and that, upon your acceptance of the terms and conditions of this Agreement, Apple \nwill have the right (and will be deemed to have accepted the right) to enforce this Agreement against \nYou as a third party beneficiary thereof. \n\n\nVNC is a registered trademark of RealVNC Ltd. in the U.S. and in other countries.", + "json": "vnc-viewer-ios.json", + "yaml": "vnc-viewer-ios.yml", + "html": "vnc-viewer-ios.html", + "license": "vnc-viewer-ios.LICENSE" + }, + { + "license_key": "volatility-vsl-v1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-volatility-vsl-v1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Volatility Software License\nVersion 1.0 dated October 3, 2019.\nThis license covers the Volatility software, Copyright 2019 Volatility Foundation.\n\nSoftware\nThe software referred to in this license includes the software named above, and any data (such as operating system profiles or configuration information), and documentation provided with the software.\n\nPurpose\nThis license gives you permission to use, share, and build with this software for free, but requires you to share source code for changes, additions, and software that you build with it.\n\nAcceptance\nIn order to receive this license, you must agree to its rules. The rules of this license are both obligations under that agreement and conditions to your license. You must not do anything with this software that triggers a rule that you cannot or will not follow.\n\nCopyright\nEach contributor licenses you to do everything with this software that would otherwise infringe that contributor's copyright in it.\n\nNotices\nYou must ensure that everyone who gets a copy of any part of this software from you, with or without changes, also gets the text of this license or a link to https://www.volatilityfoundation.org/license/vsl-v1.0. You must not remove any copyright notice in the Software.\n\nPatent\nEach contributor licenses you to do everything with this software that would otherwise infringe any patent claims they can license or become able to license.\n\nReliability\nNo contributor can revoke this license.\n\nCopyleft\nIf you make any Additions available to others, such as by providing copies of them or providing access to them over the Internet, you must make them publicly available, according to this paragraph. \"Additions\" includes changes or additions to the software, and any content or materials, including any training materials, you create that contain any portion of the software. \"Additions\" also includes any translations or ports of the software. \"Additions\" also includes any software designed to execute the software and parse its results, such as a wrapper written for the software, but does not include shell or execution menu software designed to execute software generally. When this license requires you to make Additions available:\n\n- You must publish all source code for software under this license, in the preferred form for making changes, through a freely accessible distribution system widely used for similar source code, so the developer and others can find and copy it.\n- You must publish all data or content under this license, in a format customarily used to make changes to it, through a freely accessible distribution system, so the developer and others can find and copy it.\n- You are responsible to ensure you have rights in Additions necessary to comply with this section.\n\nContributing\nIf you contribute (or offer to contribute) any materials to Volatility Foundation for the software, such as by submitting a pull request to the repository for the software or related content run by Volatility Foundation, you agree to contribute them under the under the BSD 2-Clause Plus Patent License (in the case of software) or the Creative Commons Zero Public Domain Dedication (in the case of content), unless you clearly mark them \"Not a Contribution.\"\n\nTrademarks\nThis license grants you no rights to any trademarks or service marks.\n\nTermination\nIf you violate any term of this license, your license ends immediately.\n\nNo Liability\nAs far as the law allows, the software comes as is, without any warranty or condition, and no contributor will be liable to anyone for any damages related to this software or this license, under any kind of legal claim.\n\nVersions\nVolatility Foundation is the steward of this license and may publish new versions of this license with new version numbers. You may use the software under the version of this license under which you received the software, or, at your choice, any later version.", + "json": "volatility-vsl-v1.0.json", + "yaml": "volatility-vsl-v1.0.yml", + "html": "volatility-vsl-v1.0.html", + "license": "volatility-vsl-v1.0.LICENSE" + }, + { + "license_key": "vostrom", + "category": "Copyleft", + "spdx_license_key": "VOSTROM", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "VOSTROM Public License for Open Source\n----------\nCopyright (c) 2007 VOSTROM Holdings, Inc.\n\nThis VOSTROM Holdings, Inc. (VOSTROM) Distribution (code and documentation)\nis made available to the open source community as a public service by VOSTROM.\nContact VOSTROM at license@vostrom.com for information on other licensing\narrangements (e.g. for use in proprietary applications).\n\nUnder this license, this Distribution may be modified and the original\nversion and modified versions may be copied, distributed, publicly displayed\nand performed provided that the following conditions are met:\n\n1. Modified versions are distributed with source code and documentation and\nwith permission for others to use any code and documentation (whether in\noriginal or modified versions) as granted under this license;\n\n2. if modified, the source code, documentation, and user run-time elements\nshould be clearly labeled by placing an identifier of origin (such as a name,\ninitial, or other tag) after the version number;\n\n3. users, modifiers, distributors, and others coming into possession or\nusing the Distribution in original or modified form accept the entire risk\nas to the possession, use, and performance of the Distribution;\n\n4. this copyright management information (software identifier and version\nnumber, copyright notice and license) shall be retained in all versions of\nthe Distribution;\n\n5. VOSTROM may make modifications to the Distribution that are\nsubstantially similar to modified versions of the Distribution, and may\nmake, use, sell, copy, distribute, publicly display, and perform such\nmodifications, including making such modifications available under this or\nother licenses, without obligation or restriction;\n\n6. modifications incorporating code, libraries, and/or documentation subject\nto any other open source license may be made, and the resulting work may be\ndistributed under the terms of such open source license if required by that\nopen source license, but doing so will not affect this Distribution, other\nmodifications made under this license or modifications made under other\nVOSTROM licensing arrangements;\n\n7. no permission is granted to distribute, publicly display, or publicly\nperform modifications to the Distribution made using proprietary materials\nthat cannot be released in source format under conditions of this license;\n\n8. the name of VOSTROM may not be used in advertising or publicity\npertaining to Distribution of the software without specific, prior written\npermission.\n\nThis software is made available \"as is\", and\n\nVOSTROM DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD TO THIS\nSOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN NO EVENT SHALL\nVOSTROM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY\nDAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, TORT (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING\nOUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "vostrom.json", + "yaml": "vostrom.yml", + "html": "vostrom.html", + "license": "vostrom.LICENSE" + }, + { + "license_key": "vpl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-vpl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Vtiger Public License (VPL 1.1) \n\n1. Definitions.\n\n1.0. \"Commercial Use\" means distribution or otherwise making the Covered Code available to a third party.\n\n1.1. ''Contributor'' means each entity that creates or contributes to the creation of Modifications.\n\n1.2. ''Contributor Version'' means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor.\n\n1.3. ''Covered Code'' means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof.\n\n1.4. ''Electronic Distribution Mechanism'' means a mechanism generally accepted in the software development community for the electronic transfer of data.\n\n1.5. ''Executable'' means Covered Code in any form other than Source Code.\n\n1.6. ''Initial Developer'' means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A.\n\n1.7. ''Larger Work'' means a work which combines Covered Code or portions thereof with code not governed by the terms of this License.\n\n1.8. ''License'' means this document.\n\n1.8.1. \"Licensable\" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein.\n\n1.9. ''Modifications'' means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is:\n\nA. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications.\n\nB. Any new file that contains any part of the Original Code or previous Modifications.\n\n1.10. ''Original Code'' means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License.\n\n1.10.1. \"Patent Claims\" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor.\n\n1.11. ''Source Code'' means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge.\n\n1.12. \"You'' (or \"Your\") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, \"You'' includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, \"control'' means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2. Source Code License.\n\n2.1.The Initial Developer Grant. The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims:\n\n(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and\n\n(b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof).\n\n(c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License.\n\n(d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices.\n\n2.2. Contributor Grant. Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license\n\n(a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and\n\n(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination).\n\n(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code.\n\n(d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor.\n\n3. Distribution Obligations.\n\n3.1. Application of License. The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5.\n\n3.2. Availability of Source Code. Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\n3.3. Description of Modifications. You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters (a) Third Party Claims. If Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled \"LEGAL'' which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained.\n\n(b) Contributor APIs. If Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file.\n\n(c) Representations. Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License.\n\n3.5. Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions. You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer.\n\n3.7. Larger Works. You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\n\n5. Application of this License.\n\nThis License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n\n6.1. New Versions. Vtiger may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number.\n\n6.2. Effect of New Versions. Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Vtiger. No one other than Vtiger has the right to modify the terms applicable to Covered Code created under this License.\n\n6.3. Derivative Works. If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases ''Vtiger'or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the Vtiger Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.)\n\n7. DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS'' BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n\n8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.\n\n8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as \"Participant\") alleging that:\n\n(a) such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above.\n\n(b) any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant.\n\n8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination.\n\n9. LIMITATION OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS.\n\nThe Covered Code is a ''commercial item,'' as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of ''commercial computer software'' and ''commercial computer software documentation,'' as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n\n11. MISCELLANEOUS.\n\nThis License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by Indian laws (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in India, any litigation relating to this License shall be subject to the jurisdiction of the Courts in Chennai, with venue lying in Tamil Nadu State, India, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n12. RESPONSIBILITY FOR CLAIMS.\n\nAs between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\n13. MULTIPLE-LICENSED CODE.\n\nInitial Developer may designate portions of the Covered Code as \u201cMultiple-Licensed\u201d. \u201cMultiple-Licensed\u201d means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the MPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A.\n\nEXHIBIT A - Vtiger Public License.\n\n\"The contents of this file are subject to the Vtiger Public License (the \"License\"); you may not use this file except in compliance with the License.\"\n\nSoftware distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.\n\nThe Original Code is Vtiger.\n\nThe Initial Developer of the Original Code is Vtiger. Portions created by Vtiger are Copyright (C) www.vtiger.com. All Rights Reserved.\n\nContributor(s): ______________________________________.\n\n[NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.]\n\nEXHIBIT B - Vtiger CRM and Logo\n\nThis License does not grant any rights to use the trademarks \"Vtiger\" and \"Vtiger CRM\" and \"Vtiger\" logos even if such marks are included in the Original Code or Modifications.", + "json": "vpl-1.1.json", + "yaml": "vpl-1.1.yml", + "html": "vpl-1.1.html", + "license": "vpl-1.1.LICENSE" + }, + { + "license_key": "vpl-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-vpl-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Vtiger Public License 1.2 (VPL 1.2)\n\n1. Definitions.\n\n 1.0 \"Commercial Use\" means distribution or otherwise making the Covered Code available to a third party.\n\n 1.1. \"Contributor\" means each entity that creates or contributes to the creation of Modifications.\n\n 1.2. \"Contributor Version\" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor.\n\n 1.3. \"Covered Code\" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof.\n\n 1.4. \"Electronic Distribution Mechanism\" means a mechanism generally accepted in the software development community for the electronic transfer of data.\n\n 1.5. \"Executable\" means Covered Code in any form other than Source Code.\n\n 1.6. \"Initial Developer\" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A.\n\n 1.7. \"Larger Work\" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License.\n\n 1.8. \"License\" means this document.\n\n 1.8.1. \"Licensable\" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein.\n\n 1.9. \"Modifications\" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is:\n A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications.\n\n B. Any new file that contains any part of the Original Code or previous Modifications.\n \n 1.10. \"Original Code\" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License.\n\n 1.10.1. \"Patent Claims\" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor.\n\n 1.11. \"Source Code\" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge.\n\n 1.12. \"You\" (or \"Your\") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, \"You\" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, \"control\" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2. Source Code License.\n\n 2.1.The Initial Developer Grant.\n The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims:\n (a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and\n\n (b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof).\n (c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License.\n\n (d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices.\n \n 2.2. Contributor Grant.\n Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license\n\n (a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and\n\n (b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination).\n\n (c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code.\n\n (d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor.\n\n3. Distribution Obligations.\n\n 3.1. Application of License.\n The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5.\n\n 3.2. Availability of Source Code.\n Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\n 3.3. Description of Modifications.\n You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code.\n\n 3.4. Intellectual Property Matters\n (a) Third Party Claims.\n If Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled \"LEGAL\" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained.\n\n (b)Contributor APIs.\n If Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file.\n \n (c)Representations.\n Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. \n\n\n 3.5. Required Notices.\n You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer.\n\n 3.6. Distribution of Executable Versions.\n You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer.\n\n 3.7. Larger Works.\n You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. \n\n5. Application of this License.\n\nThis License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. \n\n6. Versions of the License.\n\n 6.1. New Versions.\n vtiger may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. \n\n 6.2. Effect of New Versions.\n Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by vtiger. No one other than vtiger has the right to modify the terms applicable to Covered Code created under this License.\n\n 6.3. Derivative Works.\n If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases \"vtiger'or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the vtiger Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.)\n\n7. DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. \n\n8. TERMINATION.\n\n 8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.\n\n 8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as \"Participant\") alleging that:\n\n (a) such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above.\n\n (b) any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant.\n\n 8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license.\n\n 8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination.\n\n9. LIMITATION OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. \n\n10. U.S. GOVERNMENT END USERS.\n\nThe Covered Code is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. \n\n11. MISCELLANEOUS.\n\nThis License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by Indian laws (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in India, any litigation relating to this License shall be subject to the jurisdiction of the Courts in Chennai, with venue lying in Tamil Nadu State, India, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. \n\n12. RESPONSIBILITY FOR CLAIMS.\n\nAs between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. \n\n13. MULTIPLE-LICENSED CODE.\n\nInitial Developer may designate portions of the Covered Code as ^Multiple-Licensed^. ^Multiple-Licensed^ means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the MPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. \n\n\nEXHIBIT A -vtiger Public License.\n\n\"The contents of this file are subject to the vtiger Public License Version 1.1 (the \"License\"); you may not use this file except in compliance with the License.\"\n\nSoftware distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.\n\nThe Original Code is vtiger Outlook Plug-in.\n\nThe Initial Developer of the Original Code is vtiger. Portions created by vtiger are Copyright (C) www.vtiger.com. All Rights Reserved.\n\nContributor(s): ______________________________________.\n\n [NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.]\n\n \nEXHIBIT B - Vtiger CRM and Logo\n\nThis License does not grant any rights to use the trademarks \"Vtiger\" and \"Vtiger CRM\" and \"Vtiger\" logos even if such marks are included in the Original Code or Modifications.", + "json": "vpl-1.2.json", + "yaml": "vpl-1.2.yml", + "html": "vpl-1.2.html", + "license": "vpl-1.2.LICENSE" + }, + { + "license_key": "vs10x-code-map", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-vs10x-code-map", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "VS10x Code Map - LIMITED PRODUCT WARRANTY\n\nPlease read the below terms. Continuing with the installation of VS10x Code Map\nwill indicate your acceptance.\n\nMichael Kiss [AxTools] provides VS10x Code Map and licenses its use to you. You\nare responsible for selecting VS10x Code Map to achieve your intended results\nand for the installation, use and results obtained from VS10x Code Map.\n\nVS10x Code Map, including its code, documentation, appearance, structure and\norganization, is a proprietary product of Michael Kiss [AxTools] and is\nprotected by the law. Title to VS10x Code Map, or any copy, modification or\nmerged portion of VS10x Code Map, shall at all times remain with Michael Kiss\n[AxTools].\n\nLimited Warranty\n\nEXCEPT AS SPECIFICALLY SET FORTH IN THIS AGREEMENT, VS10x Code Map IS LICENSED\nAND PROVIDED ON AN \"AS IS\" BASIS, WITHOUT ANY KIND OF WARRANTY, EITHER EXPRESS\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nMichael Kiss [AxTools] warrants that VS10x Code Map will substantially perform\nthe functions or generally conform to VS10x Code Map's specifications as\npublished by Michael Kiss [AxTools]. Michael Kiss [AxTools] does not warrant\nthat the functions contained in VS10x Code Map will meet your requirements or\nthat the operation of VS10x Code Map will be entirely error free or appear\nprecisely as described in the VS10x Code Map documentation.\n\nRemedies and Liabilities\n\nIn no event will Michael Kiss [AxTools] be liable for any damages, including\nlost profits, lost savings, or other direct, indirect, incidental or\nconsequential damages, arising out of the use or inability to use VS10x Code\nMap, even if Michael Kiss [AxTools] or a dealer authorized by Michael Kiss\n[AxTools] had been advised of the possibility of such damages.", + "json": "vs10x-code-map.json", + "yaml": "vs10x-code-map.yml", + "html": "vs10x-code-map.html", + "license": "vs10x-code-map.LICENSE" + }, + { + "license_key": "vsl-1.0", + "category": "Permissive", + "spdx_license_key": "VSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Vovida Software License v. 1.0\n\nThis license applies to all software incorporated in the \"Vovida\nOpen Communication Application Library\" except for those portions\nincorporating third party software specifically identified as being\nlicensed under separate license.\n\nThe Vovida Software License, Version 1.0\nCopyright (c) 2000 Vovida Networks, Inc. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in\nthe documentation and/or other materials provided with the\ndistribution.\n\n3. The names \"VOCAL\", \"Vovida Open Communication Application Library\",\nand \"Vovida Open Communication Application Library (VOCAL)\" must\nnot be used to endorse or promote products derived from this\nsoftware without prior written permission. For written\npermission, please contact vocal@vovida.org.\n\n4. Products derived from this software may not be called \"VOCAL\", nor\nmay \"VOCAL\" appear in their name, without prior written\npermission.\n\nTHIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY EXPRESSED OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND\nNON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA\nNETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DAMAGES\nIN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY\nOF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\nUSE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGE.\n\nThis software consists of voluntary contributions made by Vovida\nNetworks, Inc. and many individuals on behalf of Vovida Networks,\nInc. For more information on Vovida Networks, Inc., please see\nhttp://www.vovida.org.\n\nAll third party licenses and copyright notices and other required\nlegends also need to be complied with as well.", + "json": "vsl-1.0.json", + "yaml": "vsl-1.0.yml", + "html": "vsl-1.0.html", + "license": "vsl-1.0.LICENSE" + }, + { + "license_key": "vuforia-2013-07-29", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-vuforia-2013-07-29", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Vuforia SDK License Agreement\n\nQUALCOMM AUSTRIA RESEARCH CENTER GMBH LICENSE AGREEMENT FOR VUFORIA\u2122 SOFTWARE DEVELOPMENT KIT\n\n\nTHIS LICENSE AGREEMENT FOR VUFORIA SOFTWARE DEVELOPMENT KIT (THIS \"AGREEMENT\" or THIS \"Agreement\") IS A LEGALLY BINDING AGREEMENT BETWEEN QUALCOMM AUSTRIA RESEARCH CENTER GMBH (\"QUALCOMM Austria\") AND THE LEGAL ENTITY YOU REPRESENT (\"YOU\" OR \"You\"). If you USE OR are seeking to use the Software in connection with any work or undertaking you are doing for a business, company or corporate entity (\"Company\"), whether as an employee or contractor, the terms \"You\" and \"You\" include, and the terms and conditions hereof are binding on, both you as an individual as well as such Company. In Addition, you represent and warrant that you have the authority to bind such Company, and that such Company has authorized you to accept the terms of this Agreement on its behalf.\n\n \n\nQUALCOMM AUSTRIA IS WILLING TO LICENSE THE SOFTWARE AND DOCUMENTATION DESCRIBED IN THE LIST BELOW (THE \"SOFTWARE\" OR THE \"Software\") TO YOU ONLY ON THE CONDITION THAT YOU ACCEPT AND AGREE TO ALL OF THE TERMS AND CONDITIONS IN THIS AGREEMENT. BY CLICKING ON THE \"I ACCEPT\" BUTTON BELOW YOU ACKNOWLEDGE AND AGREE, THAT YOU HAVE READ THIS AGREEMENT, UNDERSTAND IT AND AGREE TO BE BOUND BY ITS TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO THESE TERMS AND CONDITIONS, QUALCOMM AUSTRIA IS UNWILLING TO AND DOES NOT AND WILL NOT LICENSE THE SOFTWARE OR PROVIDE THE DOCUMENTATION TO YOU. IF YOU DO NOT AGREE TO THESE TERMS AND CONDITIONS YOU MAY NOT COMMENCE ANY INSTALLATION PROCESS AND YOU SHALL NOT USE THE SOFTWARE OR RETAIN ANY COPIES OF THE SOFTWARE OR DOCUMENTATION, EVEN IF YOU HAVE IN ANY MANNER COME INTO POSSESSION THEREOF. ANY USE OR POSSESSION OF THE SOFTWARE AND/OR DOCUMENTATION BY YOU IS SUBJECT TO THE TERMS AND CONDITIONS SET FORTH IN THIS AGREEMENT.\n\n \n\n1. LICENSE GRANT.\n\n1.1 License to Software other than Sample Code. As more particularly described in the documentation that is provided on the Vuforia-related developer web site for the Software (the \"Documentation\"), the Software is intended for use as a development tool to enable the development and testing of visual recognition end-user software applications (the \"Permitted Use\"). Subject to and conditioned upon compliance with the terms and conditions of this Agreement, including the limitations, conditions, restrictions and obligations set forth below, QUALCOMM Austria hereby grants to You a personal, non-exclusive, non-sublicensable (except as expressly provided in Section 1.6 (Limited Sublicense Rights) non-transferable, revocable, limited copyright license, during the term of this Agreement, to (i) download, install and use the Software (other than Sample Code) in machine-readable (i.e. object code) form solely for the Permitted Use, and (ii) distribute in object code only the Vuforia engine binary files and the Vuforia Word Lists that are included in the Software, solely as such binary files are integrated into and used by each software application that You develop for the Permitted Use in accordance with the Documentation and the terms of this Agreement. You may not use the Software and may not accept this Agreement if you are a person barred from receiving the Software under the laws of the United States or any other country including the country in which you are resident or in which you use the Software. In addition to any additional software that QUALCOMM Austria provides pursuant to Section 1.8 (Additional Software), the Software licensed hereunder may include the following: \n\nVuforia Software Development Kit\n\n\u00b7 Vuforia Engine binary files (redistributable as permitted above);\n\n\u00b7 Vuforia Word Lists (i.e. .vwl file(s), solely in compiled binary form; redistributable as permitted above);\n\n\u00b7 Sample Code;\n\n\u00b7 Sample Content Files (e.g., image and 3D model files); and\n\n\u00b7 Sample Applications (i.e. .apk file(s), solely in compiled binary form).\n\n\u00b7 Contents May Vary for Platform Specific Versions\n\n \n\n1.2 Documentation. Subject to the terms and conditions of this Agreement, including the limitations, conditions, restrictions and obligations set forth below, You may reproduce and use a reasonable number of copies of the Documentation on an internal basis only, and solely in support of Your Permitted Use of the Software. Distribution of the Documentation is prohibited without the express written permission of QUALCOMM Austria. \n\n1.3 Third Party Licenses. The Software may contain third party programs, including but not limited to software licensed under open source terms. The license terms associated with those programs apply to your use of them, and in some instances such programs cannot be used or further distributed without a license from the respective owner of such programs. You shall be solely responsible to (i) obtain, if necessary, a separate and independent license from such owner with respect to any such use and (ii) include all applicable license terms and notices in Your application for third party programs contained in the Software that are distributed as part of Your application. The delivery of the Software does not convey a license, nor imply any rights, to use third party programs. A separate and independent license for such use may be required and You shall be solely responsible to verify whether such license is needed in conjunction with your use of such third party programs.\n\n1.4 License to Sample Code. QUALCOMM Austria may, in its sole discretion, provide certain Sample Code that is part of the Software in human readable (source code) form. In some cases, the Sample Code may be delivered to You separately from the other Software, but whether provided separately or together with the other Software, if (and only if) QUALCOMM Austria provides such Sample Code in source code form to You, then subject to and conditioned upon compliance with the terms and conditions of this Agreement, including the limitations, conditions, restrictions and obligations set forth below, QUALCOMM Austria hereby grants to You a personal, non-sublicensable, non-transferable, non-exclusive, revocable, limited copyright license, during the term of this Agreement, solely for the purpose of developing applications utilizing the Vuforia Software Development Kit and/or Vuforia Extension for Unity, to modify the Sample Code, compile into object code the Sample Code and Your modifications thereto, and reproduce and distribute such compiled object code as part of the software applications that You develop, in each case strictly in accordance with the Documentation and the Permitted Use. You acknowledge and agree that Your license to the Sample Code is conditioned upon You modifying the Sample Code such that Your software application contains material additional features and functionality; re-distribution of Sample Code without material improvement is not permitted. You will inform any third parties that are to receive such software applications that contain any Sample Code or Your modifications thereto that the delivery of such software applications will not convey or otherwise provide any rights under patents of QUALCOMM Incorporated or any of its affiliates.\n\n1.5 License to Sample Applications. QUALCOMM Austria may, in its sole discretion, provide certain Sample Applications in binary form for the sole purpose of demonstrating certain features enabled by the Software. In some cases, a Sample Application may be delivered to You separately from the other Software, but whether provided separately or together with the other Software, if (and only if) QUALCOMM Austria provides such Sample Application to You, then subject to the terms and conditions of this Agreement, including the limitations, conditions, restrictions and obligations set forth below, QUALCOMM Austria hereby grants to You a personal, non-sublicensable, non-transferable, non-exclusive, revocable, limited copyright license, during the term of this Agreement, to install such Sample Application on a reasonable number of wireless devices, solely for Your internal evaluation of Vuforia features.\n\n1.6 Limited Sublicense Rights. Subject to and conditioned upon compliance with the terms and conditions of this Agreement, including the limitations, conditions, restrictions and obligations set forth below, QUALCOMM Austria hereby grants to You a personal, non-exclusive, non-sublicensable, non-transferable, revocable, limited copyright license, during the term of this Agreement to sublicense the Vuforia engine binary files, Vuforia Word Lists and/or Sample Code, solely as an integral part of Your software application and solely to licensed recipients of Your software application, subject to the following additional requirements: (a) Your Vuforia-enabled software application(s) must add significant functionality to the Vuforia engine binary files, Sample Code, and Vuforia Word Lists, as applicable, and You shall not distribute the Vuforia engine binary files, Sample Code and/or Vuforia Word Lists except as fully integrated into your application(s), (b) Your sublicense must be no less protective of the Software and the rights and interests of QUALCOMM Austria and its affiliates than are the terms of this Agreement, (c) You shall not make any representations, warranties, or undertake (or attempt to undertake) any obligations on behalf of QUALCOMM Austria or its affiliates, and You shall ensure that QUALCOMM Austria and its affiliates shall have no liability to Your sublicensees.\n\n1.7 Vuforia Target Manager Web Application. Subject to and conditioned upon compliance with the terms and conditions of this Agreement, including the limitations, conditions, restrictions and obligations set forth below, QUALCOMM Austria hereby grants to You a personal, non-exclusive, non-sublicensable, non-transferable, revocable, limited right during the term of this Agreement to access the on-line Target Manager Web Application provided by QUALCOMM Austria or its affiliates or service provider, solely for the Permitted Use. Any access or use of the Target Manager Web Application shall be subject to this Agreement as well as the terms and conditions of use and privacy policy as posted from time to time on the web page(s) for the application. Notwithstanding the foregoing, QUALCOMM Austria reserves the right to modify, suspend or stop providing the Target Manager Web Application with or without notice, and may terminate Your access to the Target Manager Web Application for any reason. \n\n1.8 Additional Software. QUALCOMM Austria hereby reserves the right to provide or otherwise make available, at its discretion, additional software to You from time to time. Any additional software or documentation that QUALCOMM Austria provides to You by express reference to this Agreement will be considered to be part of the Software or Documentation, as the case may be, and subject to all terms and conditions of this Agreement. By accepting, possessing or using such additional software or documentation, which shall include without limitation any related plug-ins as we may directly or indirectly distribute as well as related web applications used to generate image resources, You agree that the terms of this Agreement will apply thereto. \n\n1.9 Pre-commercial Software Releases. If the Software provided to You under this Agreement is designated by QUALCOMM Austria as a pre-commercial release (indicated by terms such as \"alpha,\" \"beta,\" \"trial,\" \"draft\" or \"evaluation\") then in lieu of the licenses granted to You above, but subject to any other executed agreement that You may have for the Software which grants additional or different rights or imposes additional or different restrictions, You shall only have the right under this Agreement to download and install the Software on a reasonable number of workstations for the internal and non-commercial evaluation of the Software. You acknowledge that the Software is a prerelease or experimental version and is not at the level of performance and compatibility of a final product. The Software may not operate correctly and may be substantially modified prior to first commercial shipment, or may be withdrawn completely. You will not do any significant development or testing using the Software, and any development You undertake is at Your sole risk, with the understanding that the Software may never be issued for commercial use. You shall not commercialize, distribute, publicly perform or publicly display any applications developed by You using the Software or any component thereof. If You desire other rights (such as the right to develop commercial products using the Software) You must use a commercial release of the Software. The use license granted in this section expires when the Software is made available under full commercial terms which You accept.\n\n1.10 Bug Reports. You are encouraged to report to QUALCOMM Austria all bugs you experience or encounter with the Software and You agree that QUALCOMM Austria shall have the right to use, without attribution or compensation to You, all feedback (of any nature) which QUALCOMM Austria receives or otherwise obtains from You, in any form, to improve, enhance or modify the Software or otherwise.\n\n \n\n2. RESTRICTIONS. \n\n2.1 Retention of Rights. As between You and QUALCOMM Austria, QUALCOMM Austria and its affiliates and licensors hereby retain all right, title, and interests in and to the Software, including without limitation all copyrights, patent rights, trademark rights and all other intellectual property rights therein or related thereto. Subject to ownership rights of QUALCOMM Austria, its affiliates and licensors in and to the Software, You shall retain the copyright rights in and to any modifications to the source code portions of the Software that are made by You as permitted by this Agreement. This Agreement does not convey or otherwise provide to You title or any ownership rights or interests in or to any intellectual property rights of QUALCOMM Austria or any of its affiliates, including but not limited to (1) those incorporated in the Software or any component of the Software, or (2) any patents, patent applications, works of authorship, trade secrets, know-how, ideas, or any other subject matter protectable under intellectual property rights laws of any jurisdiction, of QUALCOMM Incorporated or any of its affiliates (including, but not limited to, QUALCOMM Austria). As between You and QUALCOMM Austria, QUALCOMM Austria is the sole and exclusive owner of and retains all right, title and interest in and to all QUALCOMM Austria software, including, without limitation, the items set forth in (1) and (2) above and all intellectual property rights in each of the foregoing. Any rights not expressly granted to You in this Agreement are reserved by QUALCOMM Austria, its affiliates and their respective licensors. Without limiting the generality of the foregoing, neither the delivery of any Software, hardware, documentation or other materials to You or any third party, nor any other provision of this Agreement (including, without limitation, any rights or licenses granted by QUALCOMM Austria in this Agreement) will be deemed or construed to grant to You or any third party, whether expressly, by implication or by way of estoppel or otherwise, any right or license (and no authority to infringe, or immunity from infringement liability, will be deemed to arise or exist as a matter of law) under (i) any patents of QUALCOMM Incorporated or any of its affiliates, (ii) any intellectual property rights of QUALCOMM Incorporated or its affiliates covering or relating to any product or invention other than the Software, or (iii) any combination of the Software with any other product or invention. Any rights not expressly granted to You herein are hereby reserved by QUALCOMM Austria. In addition, You acknowledge and agree, on behalf of Yourself and Your affiliates, that (a) this Agreement does not modify or abrogate any obligations that You or any of Your affiliates has under any license or other agreement with QUALCOMM Incorporated, including without limitation any obligation to pay any royalties, and (b) neither You nor any of Your affiliates will contend that it has obtained any right, license, or immunity from suit with respect to any patents of QUALCOMM Incorporated or its affiliates under or as a result of this Agreement (whether expressly, impliedly, by virtue of estoppel or exhaustion, or otherwise). \n\n2.2 Use Restrictions. Except as expressly provided in Section 1 (License Grant) above, You may make a single copy the Software only for backup purposes, provided that You reproduce all copyright and other proprietary notices that are on the original copy of the Software. You shall not incorporate, link, distribute or use any third party software or code in conjunction with (i) the Software (ii) any software, products, documentation, content or other materials developed using the Software, nor (iii) any derivative works that You make using the source code portions of the Software (if any), in such a way that: (a) creates, purports to create or has the potential to create, obligations with respect to the Software or other QUALCOMM Austria software, including without limitation the distribution or disclosure of any source code; or (b) grants, purports to grant, or has the potential to grant to any third party any rights to or immunities under any intellectual property rights or proprietary rights of QUALCOMM Austria or its affiliates, including without limitation as such rights exist in or relate to the Software. Without limiting the generality of the foregoing, You shall not incorporate, link, distribute or use (1) the Software or any other software provided by QUALCOMM Austria, (2) any software, products, documentation, content or other materials developed using the Software, nor (3) any derivative works that You make using the source code portions of the Software (if any), with any code or software licensed under any version of the GNU General Public License (\"GPL\"), Affero General Public License (\"AGPL\"), Lesser General Public License (\"LGPL\"), European Union Public License (\"EUPL\"), Apple Public Source License (\"APSL\"), Common Development and Distribution License (\"CDDL\"), IBM Public License (\"IPL\"), Eclipse Public License (\"EPL\"), Mozilla Public License (\"MPL\"), or any other open source license, in any manner that could cause or could be interpreted or asserted to cause the Software or other QUALCOMM Austria software (or any modifications thereto) to become subject to the terms of the GPL, AGPL, LGPL, EUPL, APSL, CDDL, IPL, EPL, MPL, or such other open source license. You, and each party receiving Software or any copies thereof from You, shall not receive any rights to use such Software or copies thereof in a manner that will cause any patents, copyrights or other intellectual property rights which are owned or controlled by QUALCOMM Austria or any of its affiliates (or for which QUALCOMM Austria or any of its affiliates has received license rights) to become subject to any encumbrance or terms and conditions of any third party or open source license (including, without limitation, any open source license listed on http://www.opensource.org/licenses/alphabetical) (each an \"Open Source License\"). These restrictions, limitations, exclusions and conditions shall apply even if QUALCOMM Austria or any of its affiliates becomes aware of or fails to act in a manner to address any violation or failure to comply therewith. Also, no act by QUALCOMM Austria or any of its affiliates that is undertaken under this Agreement as to any software or technology shall be construed as being inconsistent with the intent not to cause any patents, copyrights or other intellectual property rights which are owned or controlled by QUALCOMM Austria or any of its affiliates (or for which QUALCOMM Austria or any of its affiliates has received license rights) to become subject to any encumbrance or terms and conditions of any Open Source License.\n\n2.3 Additional Restrictions. You will not: (i) reverse engineer, disassemble, decompile, or translate the Software, or otherwise attempt to derive the source code version of the Software, except if and only to the extent expressly permitted by applicable law; (ii) use the Software and/or Documentation or any portion thereof to create or develop any developer tools (including without limitation plug-ins and middleware) or any software other than end-user targeted visual recognition software applications; (iii) make more copies of the Software and/or Documentation than specified in this Agreement or allowed by applicable law, despite this limitation; (iv) transfer or assign this Agreement or any of the rights, duties or obligations hereunder (note however that You may transfer and assign Your software applications that You develop in accordance with the Documentation and the Permitted Use, provided that, You provide a copy of this Agreement and secure the binding agreement of the transferee/assignee that the terms and conditions of this Agreement shall continue to fully apply and bind You as well as the transferee/assignee with respect to such transferred application(s)); (v) except as expressly permitted hereby, rent, lease, loan or otherwise in any manner provide or distribute the Software and/or Documentation or any copy of thereof to any third party; (vi) access or use for any purpose any application protocol interface (API) such as the Vuforia APIs, except as expressly described in the Documentation; or (vii) except as expressly permitted under Section 1 (License Grant), reproduce, distribute, publicly perform, publicly display or create derivative works of or based on the Software and/or Documentation, or disclose, provide or otherwise transfer, in any manner, to any third party the Software (except as expressly permitted for the Sample Code), Documentation or any portion thereof. Any applications You develop with or in connection with the Software that include visual recognition functionality must utilize output from Vuforia tools for the purpose of generating appropriate resources for image and 3D object detection, recognition and tracking, and You agree to not use any tools or methods other than the Vuforia Target Manager Web Application for the purpose of generating targets for image and 3D object recognition and tracking for use with such applications. Any end user software applications that you create or develop using the Software shall not access any third party service for the purpose of image recognition, other than the Vuforia image recognition service made available by QUALCOMM Austria\u2019s affiliates under separate agreement (e.g. the Vuforia Cloud Recognition Service). You will not include in your applications or Target Images (as defined below) (x) any content or materials of any kind (text, graphics, images, photographs, video, sounds, etc.) that comprise, constitute or depict profanity, nudity, pornographic images or explicit sexual themes, or defamatory or libelous statements, material that infringes the intellectual property of any person or entity, material that infringes upon the privacy or data protection rights of any person, or material that is or could be considered to be illegal or objectionable, (y) any malware malicious or harmful code, program or other internal component (e.g., computer viruses, Trojan horses, \"backdoors\" etc. that could damage, destroy or adversely affect other software, firmware, hardware, data, systems, services or networks, or (z) any facial recognition functionality or facial images. You shall not use the Software and/or Documentation to create or develop any software application that invades, violates or infringes the copyrights, patent rights, trade secrets, trademark or service mark rights, privacy, publicity, or any other rights of any person or entity, and shall not constitute a libel or defamation of any third party. In addition, You agree not to design or develop any software application that you create or develop based on the use of the Software in a manner so as to, or with the objective to, damage any wireless device, computer, network, or any feature or function of a wireless device, computer or network based on the use of such application. You represent and warrant that you have obtained all necessary permission and licenses from all holders of intellectual property rights, if any, in material or code appearing, used or recorded in any software application that you create or develop with the Software and/or Documentation. The license to the Software and Documentation granted to You hereunder is solely for the Permitted Use expressly set forth in Section 1 (License Grant) and the Software and Documentation shall not be used for any other purpose or use.\n\n2.4 Additional Services and Functions. No fees are due under this Agreement for the development, commercialization and distribution of Your visual recognition-capable end-user software applications. You acknowledge that certain optional services may be provided by QUALCOMM Austria\u2019s affiliates and/or service providers, and access to such services are licensed separately and may include separate charges for use. For example, applications that make use of the Vuforia Cloud Recognition Service require a separate service agreement with Qualcomm Technologies, Inc. or one of its affiliates, under which agreement fees may apply.\n\n \n\n3. CONFIDENTIALITY; NO SUPPORT. You hereby acknowledge and agree that the Software (excepting the Sample Code), along with certain Documentation and related information that are so marked, are confidential and proprietary to QUALCOMM Austria. Except as expressly permitted in this Agreement, You shall not disclose, or permit the disclosure of, the Software and/or confidential Documentation in any form or any information relating to the Software and/or Documentation (including without limitation the results of use or testing) to any third party without QUALCOMM Austria\u2019s prior written permission; provided that, you may otherwise generally make mention of and discuss the Software with others. Notwithstanding the foregoing, You shall not discuss or otherwise disclose any information about a pre-commercial release of the Software including without limitation any application You have developed using a pre-commercial release of the Software. You further acknowledge and agree that any unauthorized use or disclosure of the Software, confidential Documentation and/or such information may cause irreparable harm and significant injury to QUALCOMM Austria that would be difficult to ascertain or quantify; accordingly You agree that QUALCOMM Austria shall have the right to seek and obtain injunctive or other equitable relief to enforce the terms of this Agreement and without limiting any other rights or remedies that QUALCOMM Austria may have. Also, You acknowledge and agree that the Software and Documentation is provided \"AS IS,\" that QUALCOMM Austria is under no obligation to provide any form of technical support for the Software and/or Documentation, and that if QUALCOMM Austria, in its sole discretion, chooses to provide any form of support or information relating to the Software and/or Documentation, such support and information shall be deemed confidential and proprietary to QUALCOMM Austria and protected in accordance with this Section 3 unless otherwise specified in writing. \n\n \n\n4. DISCLAIMER OF WARRANTIES. YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT THE USE OF THE SOFTWARE AND DOCUMENTATION IS AT YOUR SOLE RISK. THE SOFTWARE, DOCUMENTATION AND TECHNICAL SUPPORT, IF ANY, ARE PROVIDED \"AS IS\" AND WITHOUT ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY OR OTHERWISE. TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW, QUALCOMM AUSTRIA AND ITS AFFILIATES AND LICENSOR(S) (FOR THE EASE OF REFERENCE IN SECTIONS 4, 5, AND 6, QUALCOMM AUSTRIA AND ITS AFFILIATES AND LICENSOR(S) SHALL BE COLLECTIVELY REFERRED TO AS QUALCOMM AUSTRIA) EXPRESSLY DISCLAIM ALL WARRANTIES, WHETHER EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. QUALCOMM AUSTRIA DOES NOT REPRESENT OR WARRANT THAT THE FUNCTIONS CONTAINED IN THE SOFTWARE WILL MEET YOUR REQUIREMENTS, OR THAT THE OPERATION OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT THE SOFTWARE OR ANY SERVICE ENABLED BY THE USE OF THE SOFTWARE WILL ALWAYS BE AVAILABLE, OR THAT DEFECTS IN THE SOFTWARE OR DOCUMENTATION WILL BE CORRECTED. FURTHERMORE, QUALCOMM AUSTRIA DOES NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE, OR THE RESULTS OF THE USE, OF THE SOFTWARE OR DOCUMENTATION IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY, OR OTHERWISE. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY QUALCOMM AUSTRIA OR ITS AUTHORIZED REPRESENTATIVES SHALL CREATE ANY REPRESENTATION OR WARRANTY OR IN ANY WAY INCREASE THE SCOPE OF ANY EXPRESS WARRANTY. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO THE ABOVE EXCLUSION MAY NOT APPLY OR MAY BE LIMITED. \n\n \n\n5. LIMITATION OF LIABILITY. TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW, UNDER NO CIRCUMSTANCES, INCLUDING WITHOUT LIMITATION NEGLIGENCE, SHALL QUALCOMM AUSTRIA, ITS AFFILIATES OR ANY OF THEIR RESPECTIVE DIRECTORS, OFFICERS, EMPLOYEES OR AGENTS BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING BUT NOT LIMITED TO ANY DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION AND THE LIKE) ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT OR ANY DOWNLOAD, INSTALLATION OR USE OF, OR INABILITY TO USE, THE SOFTWARE AND/OR DOCUMENTATION, EVEN IF QUALCOMM AUSTRIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OR EXCLUSION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES SO THE ABOVE LIMITATION OR EXCLUSION MAY NOT APPLY OR MAY BE LIMITED. QUALCOMM AUSTRIA HAS NO OBLIGATION TO DEFEND, INDEMNIFY OR HOLD YOU HARMLESS UNDER THIS AGREEMENT. IN NO EVENT SHALL QUALCOMM AUSTRIA\u2019S TOTAL AGGREGATE LIABILITY FOR ANY AND ALL DAMAGES, LOSSES, CLAIMS AND CAUSES OF ACTIONS (WHETHER IN CONTRACT, TORT, INCLUDING NEGLIGENCE OR OTHERWISE) EXCEED ONE HUNDRED EURO (\u20ac100) OR THE EQUIVALENT THEREOF IN ANY OTHER CURRENCY.\n\n \n\n6. INDEMNITY. If an application is written by You using any component of the Software and such application is used, distributed, or otherwise deployed, then You agree to indemnify and hold QUALCOMM Austria, its affiliates and each of their respective officers, directors, employees and successors and assigns (each, a \"QUALCOMM Austria Indemnitee\") harmless from and against any and all claims, demands, causes of action, losses, liabilities, damages, costs and expenses, incurred or otherwise suffered by each QUALCOMM Austria Indemnitee (including but not limited to costs of defense, investigation and reasonable attorney\u2019s fees) arising out of, resulting from or related to (i) any use, reproduction or distribution of the Software, as modified or integrated by You, or any Target Image (as defined below), which causes an infringement of any patent, copyright, trademark, trade secret, or other intellectual property, publicity or privacy right of any third parties arising in any jurisdiction anywhere in the world, except and solely to the extent such infringement is caused by the unmodified Software, or portions thereof, as supplied to You by QUALCOMM Austria under this Agreement, (ii) the download, distribution, installation, storage, execution, use or transfer of such software, products, documentation, content, materials or derivative works by any person or entity, and/or (iii) any breach of this Agreement by You. If and as requested by QUALCOMM Austria, You agree to defend each QUALCOMM Austria Indemnitee in connection with any third party claims, demands, or causes of action resulting from, arising out of or in connection with any of the foregoing.\n\n \n\n7. CONSENT TO COLLECTION AND USE OF DATA.\n\na. Vuforia Web Services: You understand and agree that certain versions of the Software may allow You to store digital images (\"Target Images\") on servers located in the United States and in other countries (the \"Target Manager Web Application\"). You also understand and agree that the Software may allow You to retrieve database file(s) containing Target Images from such servers as part of the Vuforia Target Manager Web Application. You hereby acknowledge and accept that the servers may be owned, managed or controlled by QUALCOMM Austria, or one of its affiliates or service providers, and You agree that QUALCOMM Austria and its affiliates and service providers may use, modify, reproduce and distribute the Target Images to provide the Target Manager Web Application and improve the Software and our products, services and technologies without attribution or compensation.\n\nb. Collection and Use of Statistics: You understand and agree that the Software sends to QUALCOMM Austria and/or its affiliates and service providers certain technical and related information, including but not limited to: (i) information about the end users\u2019 devices such as make, model, operating system name and version and kernel version, (ii) information about our Software used to create Your software application such as the SDK version and device profile, (iii) information about Your software application and its use such as application runtime timestamp, settings (e.g., camera resolution settings, configuration settings), start and stop dates and times, camera on/off events, target image obtained/lost events, and other general usage information, and (iv) the IP address used by the end user\u2019s device, for the purpose of allowing the Vuforia servers to infer the country of use (but not the exact location) (collectively \"Statistics\"). You further understand and agree that QUALCOMM Austria and/or its affiliates may collect and use Statistics to: (a) improve and optimize Software for different hardware and software requirements on various consumer devices (commonly referred to as device fragmentation), (b) facilitate the provision of new products, updates, enhancements and other services, (c) improve the Software and our products, services and technologies and (d) provide new products, services or technologies to You and/or our customers.\n\n \n\n8. MANDATORY END-USER LICENSE AGREEMENT CLAUSE. Each end user of a Vuforia-enabled software application must agree to the end user terms set forth in this Section 8. If You are licensing Your application(s) directly to end users, then You must include the following terms in Your end user license agreement for each of Your Vuforia-enabled applications. If You are developing Your application(s) for a third party where such third party will, directly or indirectly, license the application(s) to end users, then You must require such third party to include the following terms in the applicable end user license agreement. In all cases, each such end user license agreement must contain legally enforceable provisions whereby:\n\n (i) each end user consents to the collection, storage, and use by QUALCOMM Austria and its affiliates and service providers of Statistics from the Software and the transfer of Statistics between QUALCOMM Austria and its affiliates and service providers (which may be in the United States or in other countries), in each case for the purposes of (a) facilitating the provision of new products, updates, enhancements and other services, (b) improving the Software, and other products, services and technologies, and (c) providing new products, services or technologies to You and customers of QUALCOMM Austria and its affiliates; and\n\n (ii) each end user is advised of the hazards of using a camera based application while driving, walking, or otherwise by being distracted or disoriented from real world situations; and\n\n (iii) if Your Vuforia-enabled software application uses any portion of other services provided by QUALCOMM Austria\u2019s affiliates, (e.g. Cloud Recognition Services available only under separate agreement), You acknowledge that additional end-user terms and conditions will be required to be obtained from each end user as more particularly described in the separate agreement for the Cloud Recognition Service.\n\n \n\n9. TERM AND TERMINATION. This Agreement shall be effective upon acceptance by You and shall continue until terminated. You may terminate the Agreement at any time by deleting and destroying all copies of the Software and all related information in Your possession or control, provided that you also inform QUALCOMM Austria in writing at that time of such termination. This Agreement terminates immediately and automatically, with or without notice, if You fail to comply with any provision hereof. Additionally, QUALCOMM Austria may at any time terminate this Agreement, either with or without cause, upon notice to You. Upon termination You must delete or destroy all copies of the Software and Documentation in Your possession, and the license and other rights granted to You in this Agreement shall terminate. Sections 2 through 16 shall survive the termination of this Agreement.\n\n \n\n10. EXPORT COMPLIANCE ASSURANCES. You acknowledge that all hardware, software, source code and technology (collectively, \"Products\") obtained from QUALCOMM Austria are subject to the US government export control and economic sanctions laws, including the Export Administration Regulations (\"EAR\", 15 CFR 730 et seq., http://www.bis.doc.gov/ ) administered by the Department of Commerce, Bureau of Industry and Security, and the Foreign Asset Control Regulations (31 CFR 500 et seq., http://www.treas.gov/offices/enforcement/ofac/) administered by the Department of Treasury, Office of Foreign Assets Control (\"OFAC\"). You assure that You, Your subsidiaries and affiliates will not directly or indirectly export, re-export, transfer or release (collectively, \"export\") any Products or direct product thereof to any destination, person, entity or end use prohibited or restricted under US law without prior US government authorization to the extent required by regulation. The US government maintains embargoes and sanctions against the countries listed in Country Groups E:1/2 of the EAR (Supplement 1 to part 740), currently Cuba, Iran, North Korea, Sudan and Syria but any amendments to these lists shall apply. You agree not to directly or indirectly employ any Product received from QUALCOMM Austria in missile technology, sensitive nuclear or chemical biological weapons activities, or in any manner knowingly transfer any Product to any party for any such end use. You shall not export Products listed in Supplement 2 to part 744 of the EAR for military end-uses, as defined in part 744.21, to the People\u2019s Republic of China. You shall not transfer any Product to any party listed on any of the denied parties lists or specially designated nationals lists maintained under said regulations without appropriate US government authorization to the extent required by regulation. You acknowledge that other countries may have trade laws pertaining to import, use, export or distribution of Products, and that compliance with same is Your responsibility.\n\n \n\n11. GOVERNMENT END USERS. If You are acting on behalf of an agency or instrumentality of the U.S. government, the Software and Documentation, as applicable, are \"commercial computer software\" and \"commercial computer software documentation\" developed exclusively at private expense by QUALCOMM Austria. Pursuant to FAR 12.212 or DFARS 227 7202 and their successors, as applicable, use, reproduction and disclosure of the Software is governed by the terms of this Agreement.\n\n \n\n12. USE OF NAME AND LOGO. You shall not display or make any use of QUALCOMM Austria\u2019s or its affiliates\u2019 names, marks or logos in connection with your application without the prior written approval of QUALCOMM Austria, except that you may make use of the specific Vuforia logos available for download at https://developer.vuforia.com/resources/dev-guide/branding-guidelines provided such use is in strict accordance with the logo usage guidelines accompanying such logo files, and any additional license terms or conditions provided to you by QUALCOMM Austria or its affiliates. Any use of such logos that does not fully comply with such guidelines is prohibited. QUALCOMM Austria may, at its sole discretion, provide additional promotional and/or marketing opportunities with respect to such of your applications that display the Vuforia name and logo on its splash screen. You agree that QUALCOMM Austria and its affiliates may include Your name (or Company\u2019s name) and the graphical assets, screenshots, logos, trademarks and other digital assets (the \"Graphical Assets\") that You use with your application or otherwise associate with your application, on QUALCOMM Austria or other Vuforia-related website(s), as part of Vuforia-related marketing materials, and the Vuforia \"App Gallery.\"\n\n \n\n13. Demonstration of Your Applications by QUALCOMM Austria. If a software application is written by You or on Your behalf using any component of the Software and such application is made available for download or distribution, then from and as of such date as you submit such application for, or otherwise permit or enable, such download or distribution, You hereby grant QUALCOMM Austria and its affiliates a world-wide, assignable, non-exclusive, fully paid-up and royalty-free, perpetual right and license to use, reproduce, distribute, publicly display and publicly perform, in each case for promotional and/or demonstration purposes, each such application and accompanying documentation and Graphical Assets. Any such use by QUALCOMM Austria or its affiliates under the above terms shall be subject to payment of any applicable standard download, subscription or use fees otherwise generally applicable to the application when accessed by the general public, but otherwise any agreement, terms or conditions for such application shall be superseded by this section, and shall be inapplicable to the promotional and/or demonstration of the application(s) as described above. You may terminate the license you grant in this Section 13 on not less than thirty (30) days\u2019 prior written notice to QUALCOMM Austria, provided that such notice references this Agreement, clearly identifies the affected application(s), and states that You wish to terminate the license granted under this Section 13 with respect to such applications.\n\n \n\n14. ENTIRE AGREEMENT; AMENDMENT; LANGUAGE. This Agreement is the entire and exclusive agreement between QUALCOMM Austria and You with respect to the Software and Documentation and supersedes all prior agreements (whether written or oral) and other communications between QUALCOMM Austria and You with respect to the Software and Documentation. Except to the extent that QUALCOMM Austria is expressly precluded by applicable law, QUALCOMM Austria further reserves the right to make changes to this Agreement, including but not limited to as needed to reflect changes in business practices or to reflect changes in or required by law or otherwise, by providing You with reasonable notice of the changes, which notice may be sent in writing or electronically or which may be made by posting notice of such update at developer.vuforia.com/legal/license. You will be responsible for reviewing and becoming familiar with any and all such changes. If You continue to use the Software or Documentation after notice of any changes has been provided or posted, You shall be deemed to have accepted any and all such changes. Otherwise, this Agreement may be modified only by a written amendment executed by both You and QUALCOMM Austria. This Agreement is entered into solely in the English language, and if for any reason any other language version is prepared by any party, it shall be solely for convenience and the English version shall govern and control in all respects. If You are located in the province of Quebec, Canada, the following applies: The parties hereby confirm they have requested this Agreement and all related documents be prepared in English. Les parties ont exig\u00e9 que le pr\u00e9sent contrat et tous les documents connexes soient r\u00e9dig\u00e9s en anglais.\n\n \n\n15. THIRD PARTY RIGHTS. Excepting the terms and rights applicable to QUALCOMM\u2019s Austria\u2019s affiliates as expressly stated herein (which terms and rights such QUALCOMM Austria affiliates shall be entitled to enforce as third party beneficiaries), the Parties agree, and confirm their mutual intention, that neither this Agreement nor any of the terms of this Agreement will be enforceable by virtue of the Contract (Rights of Third Parties) Act 1999, or otherwise, by any person/entity not a direct party to it. Notwithstanding that any term of this Agreement may be or may become enforceable by a person who is not a party to this Agreement, the terms and conditions of this Agreement may be modified or amended, or this Agreement may be suspended, cancelled, rescinded or terminated by the parties as provided in Section 14 (Entire Agreement; Amendment; Language) without the consent of any such third party. \n\n \n\n16. GENERAL. This Agreement is governed and interpreted in accordance with the laws of England and Wales without giving effect to its conflict of laws provisions that would result in the application of the laws of a different state. The United Nations Convention on Contracts for the International Sale of Goods is expressly disclaimed and shall not apply. Any claim, lawsuit or proceeding arising out of or related to this Agreement must be brought exclusively in the courts of London, England and You hereby consent to the jurisdiction and venue of such courts. If any provision of this Agreement shall be invalid, the validity of the remaining provisions of this Agreement shall not be affected. \n\n \n\nBY CLICKING ON THE \"I ACCEPT\" BUTTON BELOW YOU REPRESENT, WARRANT AND CERTIFY THAT: YOU ARE AN AUTHORIZED REPRESENTATIVE OF THE LEGAL ENTITY YOU REPRESENT; YOU HAVE READ THIS AGREEMENT AND UNDERSTAND IT; YOU HAVE THE AUTHORITY TO BIND THE LEGAL ENTITY YOU REPRESENT TO THE TERMS AND CONDITIONS OF THIS AGREEMENT; AND YOU AGREE ON BEHALF OF THE LEGAL ENTITY YOU REPRESENT TO BE BOUND BY ITS TERMS AND CONDITIONS.\n\n \n\nRev. 2013-7-29", + "json": "vuforia-2013-07-29.json", + "yaml": "vuforia-2013-07-29.yml", + "html": "vuforia-2013-07-29.html", + "license": "vuforia-2013-07-29.LICENSE" + }, + { + "license_key": "w3c", + "category": "Permissive", + "spdx_license_key": "W3C", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "By obtaining, using and/or copying this work, you (the licensee) agree that you\nhave read, understood, and will comply with the following terms and conditions.\n\nPermission to copy, modify, and distribute this software and its documentation,\nwith or without modification, for any purpose and without fee or royalty is\nhereby granted, provided that you include the following on ALL copies of the\nsoftware and documentation or portions thereof, including modifications:\n\nThe full text of this NOTICE in a location viewable to users of the\nredistributed or derivative work.\n\nAny pre-existing intellectual property disclaimers, notices, or terms and\nconditions. If none exist, the W3C Software Short Notice should be included\n(hypertext is preferred, text is permitted) within the body of any redistributed\nor derivative code.\n\nNotice of any changes or modifications to the files, including the date changes\nwere made. (We recommend you provide URIs to the location from which the code is\nderived.)\n\nDisclaimers\nTHIS SOFTWARE AND DOCUMENTATION IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE\nNO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\nTO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT\nTHE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY\nPATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.\n\nThe name and trademarks of copyright holders may NOT be used in advertising or\npublicity pertaining to the software without specific, written prior permission.\nTitle to copyright in this software and any associated documentation will at all\ntimes remain with copyright holders.", + "json": "w3c.json", + "yaml": "w3c.yml", + "html": "w3c.html", + "license": "w3c.LICENSE" + }, + { + "license_key": "w3c-docs-19990405", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-w3c-docs-19990405", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "W3C\u00ae DOCUMENT NOTICE AND LICENSE\n\nCopyright \u00a9 World Wide Web Consortium, (Massachusetts Institute of Technology,\nInstitut National de Recherche en Informatique et en Automatique, Keio University).\nAll Rights Reserved. http://www.w3.org/Consortium/Legal/\n\nPublic documents on the W3C site are provided by the copyright holders under the following license. The software or Document Type Definitions (DTDs) associated with W3C specifications are governed by the Software Notice. By using and/or copying this document, or the W3C document from which this statement is linked, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions:\n\nPermission to use, copy, and distribute the contents of this document, or the W3C document from which this statement is linked, in any medium for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the document, or portions thereof, that you use:\n\nA link or URL to the original W3C document.\nThe pre-existing copyright notice of the original author, or if it doesn't exist, a notice of the form: \"Copyright \u00a9 [$date-of-document] World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/\" (Hypertext is preferred, but a textual representation is permitted.)\nIf it exists, the STATUS of the W3C document.\nWhen space permits, inclusion of the full text of this NOTICE should be provided. We request that authorship attribution be provided in any software, documents, or other items or products that you create pursuant to the implementation of the contents of this document, or any portion thereof.\n\nNo right to create modifications or derivatives of W3C documents is granted pursuant to this license. However, if additional requirements (documented in the Copyright FAQ) are satisfied, the right to create modifications or derivatives is sometimes granted by the W3C to individuals complying with those requirements.\n\nTHIS DOCUMENT IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE DOCUMENT ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE DOCUMENT OR THE PERFORMANCE OR IMPLEMENTATION OF THE CONTENTS THEREOF.\n\nThe name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to this document or its contents without specific, written prior permission. Title to copyright in this document will at all times remain with copyright holders.\n\n----------------------------------------------------------------------------\n\nThis formulation of W3C's notice and license became active on April 05 1999 so as to account for the treatment of DTDs, schema's and bindings. See the older formulation for the policy prior to this date. Please see our Copyright FAQ for common questions about using materials from our site, including specific terms and conditions for packages like libwww, Amaya, and Jigsaw. Other questions about this notice can be directed to site-policy@w3.org.", + "json": "w3c-docs-19990405.json", + "yaml": "w3c-docs-19990405.yml", + "html": "w3c-docs-19990405.html", + "license": "w3c-docs-19990405.LICENSE" + }, + { + "license_key": "w3c-docs-20021231", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-w3c-docs-20021231", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "W3C DOCUMENT LICENSE\n\nPublic documents on the W3C site are provided by the copyright holders under the\nfollowing license.\n\nLicense\nBy using and/or copying this document, or the W3C document from which this\nstatement is linked, you (the licensee) agree that you have read, understood,\nand will comply with the following terms and conditions:\n\nPermission to copy, and distribute the contents of this document, or the W3C\ndocument from which this statement is linked, in any medium for any purpose and\nwithout fee or royalty is hereby granted, provided that you include the\nfollowing on ALL copies of the document, or portions thereof, that you use:\n\n* A link or URL to the original W3C document.\n* The pre-existing copyright notice of the original author, or if it doesn't\nexist, a notice (hypertext is preferred, but a textual representation is\npermitted) of the form: \"Copyright \u00a9 [$date-of-document] World Wide Web\nConsortium, (Massachusetts Institute of Technology, European Research Consortium\nfor Informatics and Mathematics, Keio University, Beihang). All Rights Reserved.\nhttp://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231\"\n\n* If it exists, the STATUS of the W3C document.\n\nWhen space permits, inclusion of the full text of this NOTICE should be\nprovided. We request that authorship attribution be provided in any software,\ndocuments, or other items or products that you create pursuant to the\nimplementation of the contents of this document, or any portion thereof.\n\nNo right to create modifications or derivatives of W3C documents is granted\npursuant to this license. However, if additional requirements (documented in the\nCopyright FAQ) are satisfied, the right to create modifications or derivatives\nis sometimes granted by the W3C to individuals complying with those\nrequirements.\n\nDisclaimers\nTHIS DOCUMENT IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS\nOR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE;\nTHAT THE CONTENTS OF THE DOCUMENT ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE\nIMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS,\nCOPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE DOCUMENT OR THE PERFORMANCE\nOR IMPLEMENTATION OF THE CONTENTS THEREOF.\n\nThe name and trademarks of copyright holders may NOT be used in advertising or\npublicity pertaining to this document or its contents without specific, written\nprior permission. Title to copyright in this document will at all times remain\nwith copyright holders.\n\nNotes\nThis version: http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231\n\nThis formulation of W3C's notice and license became active on December 31 2002.\nThis version removes the copyright ownership notice such that this license can\nbe used with materials other than those owned by the W3C, moves information on\nstyle sheets, DTDs, and schemas to the Copyright FAQ, reflects that ERCIM is now\na host of the W3C, includes references to this specific dated version of the\nlicense, and removes the ambiguous grant of \"use\". See the older formulation for\nthe policy prior to this date. Please see our Copyright FAQ for common questions\nabout using materials from our site, such as the translating or annotating\nspecifications.", + "json": "w3c-docs-20021231.json", + "yaml": "w3c-docs-20021231.yml", + "html": "w3c-docs-20021231.html", + "license": "w3c-docs-20021231.LICENSE" + }, + { + "license_key": "w3c-documentation", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-w3c-documentation", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright Notice\n\nCopyright \u00a9 1998 World Wide Web Consortium , (Massachusetts Institute of\nTechnology , Institut National de Recherche en Informatique et en Automatique ,\nKeio University ). All Rights Reserved.\n\nDocuments on the W3C site are provided by the copyright holders under the\nfollowing license. By obtaining, using and/or copying this document, or the W3C\ndocument from which this statement is linked, you agree that you have read,\nunderstood, and will comply with the following terms and conditions:\n\nPermission to use, copy, and distribute the contents of this document, or the\nW3C document from which this statement is linked, in any medium for any purpose\nand without fee or royalty is hereby granted, provided that you include the\nfollowing on ALL copies of the document, or portions thereof, that you use:\n\n1. A link or URI to the original W3C document.\n2. The pre-existing copyright notice of the original author, if it doesn't exist,\na notice of the form:\n\n\"Copyright \u00a9 World Wide Web Consortium , (Massachusetts Institute of Technology ,\nInstitut National de Recherche en Informatique et en Automatique , Keio University ).\nAll Rights Reserved.\"\n\n3. If it exists, the STATUS of the W3C document.\n\nWhen space permits, inclusion of the full text of this NOTICE should be\nprovided. In addition, credit shall be attributed to the copyright holders for\nany software, documents, or other items or products that you create pursuant to\nthe implementation of the contents of this document, or any portion thereof.\n\nNo right to create modifications or derivatives is granted pursuant to this\nlicense.\n\nTHIS DOCUMENT IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS\nOR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE;\nTHAT THE CONTENTS OF THE DOCUMENT ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE\nIMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS,\nCOPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE DOCUMENT OR THE PERFORMANCE\nOR IMPLEMENTATION OF THE CONTENTS THEREOF.\n\nThe name and trademarks of copyright holders may NOT be used in advertising or\npublicity pertaining to this document or its contents without specific, written\nprior permission. Title to copyright in this document will at all times remain\nwith copyright holders.", + "json": "w3c-documentation.json", + "yaml": "w3c-documentation.yml", + "html": "w3c-documentation.html", + "license": "w3c-documentation.LICENSE" + }, + { + "license_key": "w3c-software-19980720", + "category": "Permissive", + "spdx_license_key": "W3C-19980720", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "W3C\u00ae SOFTWARE NOTICE AND LICENSE\n\nCopyright \u00a9 1994-2002 World Wide Web Consortium, (Massachusetts Institute of\nTechnology, Institut National de Recherche en Informatique et en Automatique,\nKeio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/\n\nThis W3C work (including software, documents, or other related items) is being\nprovided by the copyright holders under the following license. By obtaining,\nusing and/or copying this work, you (the licensee) agree that you have read,\nunderstood, and will comply with the following terms and conditions:\n\nPermission to use, copy, modify, and distribute this software and its\ndocumentation, with or without modification, for any purpose and without fee or\nroyalty is hereby granted, provided that you include the following on ALL copies\nof the software and documentation or portions thereof, including modifications,\nthat you make:\n\nThe full text of this NOTICE in a location viewable to users of the\nredistributed or derivative work.\n\nAny pre-existing intellectual property disclaimers, notices, or terms and\nconditions. If none exist, a short notice of the following form (hypertext is\npreferred, text is permitted) should be used within the body of any\nredistributed or derivative code: \"Copyright \u00a9 [$date-of-software] World Wide\nWeb Consortium, (Massachusetts Institute of Technology, Institut National de\nRecherche en Informatique et en Automatique, Keio University). All Rights\nReserved. http://www.w3.org/Consortium/Legal/\"\n\nNotice of any changes or modifications to the W3C files, including the date\nchanges were made. (We recommend you provide URIs to the location from which the\ncode is derived.)\n\nTHIS SOFTWARE AND DOCUMENTATION IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE\nNO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\nTO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT\nTHE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY\nPATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.\n\nThe name and trademarks of copyright holders may NOT be used in advertising or\npublicity pertaining to the software without specific, written prior permission.\nTitle to copyright in this software and any associated documentation will at all\ntimes remain with copyright holders.\n\n \nThis formulation of W3C's notice and license became active on August 14 1998 so\nas to improve compatibility with GPL. This version ensures that W3C software\nlicensing terms are no more restrictive than GPL and consequently W3C software\nmay be distributed in GPL packages. See the older formulation for the policy\nprior to this date. Please see our Copyright FAQ for common questions about\nusing materials from our site, including specific terms and conditions for\npackages like libwww, Amaya, and Jigsaw. Other questions about this notice can\nbe directed to site-policy@w3.org.", + "json": "w3c-software-19980720.json", + "yaml": "w3c-software-19980720.yml", + "html": "w3c-software-19980720.html", + "license": "w3c-software-19980720.LICENSE" + }, + { + "license_key": "w3c-software-20021231", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "W3C Software Notice and License\n\nStatus: This license was applied to software published by W3C before 13 May,\n2015. On 13 May, 2015, W3C adopted a revised and renamed \"software and document\"\nlicense and applied the new license to all W3C documents that had previously\nbeen made available under this license. The new license grants all permissions\nthat had been granted under this 2002 license.\n\nThis work (and included software, documentation such as READMEs, or other\nrelated items) is being provided by the copyright holders under the following\nlicense. \n\nLicense\n\nBy obtaining, using and/or copying this work, you (the licensee) agree that you\nhave read, understood, and will comply with the following terms and conditions.\n\nPermission to copy, modify, and distribute this software and its documentation,\nwith or without modification, for any purpose and without fee or royalty is\nhereby granted, provided that you include the following on ALL copies of the\nsoftware and documentation or portions thereof, including modifications:\n\n The full text of this NOTICE in a location viewable to users of the\n redistributed or derivative work.\n\n Any pre-existing intellectual property disclaimers, notices, or terms and\n conditions. If none exist, the W3C Software Short Notice should be included\n (hypertext is preferred, text is permitted) within the body of any\n redistributed or derivative code.\n\n Notice of any changes or modifications to the files, including the date\n changes were made. (We recommend you provide URIs to the location from which\n the code is derived.)\n\nDisclaimers\n\nTHIS SOFTWARE AND DOCUMENTATION IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE\nNO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\nTO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT\nTHE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY\nPATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.\n\nThe name and trademarks of copyright holders may NOT be used in advertising or\npublicity pertaining to the software without specific, written prior permission.\nTitle to copyright in this software and any associated documentation will at all\ntimes remain with copyright holders.\n\nNotes\n\nThis version: http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231\n\nThis formulation of W3C's notice and license became active on December 31 2002.\nThis version removes the copyright ownership notice such that this license can\nbe used with materials other than those owned by the W3C, reflects that ERCIM is\nnow a host of the W3C, includes references to this specific dated version of the\nlicense, and removes the ambiguous grant of \"use\". Otherwise, this version is\nthe same as the previous version and is written so as to preserve the Free\nSoftware Foundation's assessment of GPL compatibility and OSI's certification\nunder the Open Source Definition.", + "json": "w3c-software-20021231.json", + "yaml": "w3c-software-20021231.yml", + "html": "w3c-software-20021231.html", + "license": "w3c-software-20021231.LICENSE" + }, + { + "license_key": "w3c-software-doc-20150513", + "category": "Permissive", + "spdx_license_key": "W3C-20150513", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "W3C Software and Document Notice and License\n\nStatus: This license takes effect 13 May, 2015.\n\nThis work is being provided by the copyright holders under the following license.\nLicense\n\nBy obtaining and/or copying this work, you (the licensee) agree that you have\nread, understood, and will comply with the following terms and conditions.\n\nPermission to copy, modify, and distribute this work, with or without\nmodification, for any purpose and without fee or royalty is hereby granted,\nprovided that you include the following on ALL copies of the work or portions\nthereof, including modifications:\n\n The full text of this NOTICE in a location viewable to users of the\n redistributed or derivative work.\n \n Any pre-existing intellectual property disclaimers, notices, or terms and\n conditions. If none exist, the W3C Software and Document Short Notice should\n be included.\n\n Notice of any changes or modifications, through a copyright statement on the\n new code or document such as \"This software or document includes material\n copied from or derived from [title and URI of the W3C document]. Copyright \u00a9\n [YEAR] W3C\u00ae (MIT, ERCIM, Keio, Beihang).\"\n\nDisclaimers\n\nTHIS WORK IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR\nWARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF\nMERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE\nSOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS,\nTRADEMARKS OR OTHER RIGHTS.\n\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT.\n\nThe name and trademarks of copyright holders may NOT be used in advertising or\npublicity pertaining to the work without specific, written prior permission.\nTitle to copyright in this work will at all times remain with copyright holders.\nNotes", + "json": "w3c-software-doc-20150513.json", + "yaml": "w3c-software-doc-20150513.yml", + "html": "w3c-software-doc-20150513.html", + "license": "w3c-software-doc-20150513.LICENSE" + }, + { + "license_key": "w3c-test-suite", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-w3c-test-suite", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "W3C Test Suite Licence\n\nThis document, Test Suites and other documents that link to this statement are provided by the copyright holders under the following license: By using and/or copying this document, or the W3C document from which this statement is linked, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions:\n\nPermission to copy, and distribute the contents of this document, or the W3C document from which this statement is linked, in any medium for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the document, or portions thereof, that you use:\n\n1. A link or URL to the original W3C document.\n\n2. The pre-existing copyright notice of the original author, or if it doesn't exist, a notice (hypertext is preferred, but a textual representation is permitted) of the form: \"Copyright \u00a9 [$date-of-document] World Wide Web Consortium, (MIT, ERCIM, Keio, Beihang) and others. All Rights Reserved. http://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html\"\n\n3. If it exists, the STATUS of the W3C document.\n\nWhen space permits, inclusion of the full text of this NOTICE should be provided. We request that authorship attribution be provided in any software, documents, or other items or products that you create pursuant to the implementation of the contents of this document, or any portion thereof.\n\nNo right to create modifications or derivatives of W3C documents is granted pursuant to this license. However, if additional requirements (documented in the Copyright FAQ) are satisfied, the right to create modifications or derivatives is sometimes granted by the W3C to individuals complying with those requirements.\n\nIf a Test Suite distinguishes the test harness (or, framework for navigation) and the actual tests, permission is given to remove or alter the harness or navigation if the Test Suite in question allows to do so. The tests themselves shall NOT be changed in any way.\n\nThe name and trademarks of W3C and other copyright holders may NOT be used in advertising or publicity pertaining to this document or other documents that link to this statement without specific, written prior permission. Title to copyright in this document will at all times remain with copyright holders. Permission is given to use the trademarked string \"W3C\" within claims of performance concerning W3C Specifications or features described therein, and there only, if the test suite so authorizes.\n\nTHIS WORK IS PROVIDED BY W3C, MIT, ERCIM, KEIO, BEIHANG, 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 W3C, MIT, ERCIM, KEIO, BEIHANG, 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.", + "json": "w3c-test-suite.json", + "yaml": "w3c-test-suite.yml", + "html": "w3c-test-suite.html", + "license": "w3c-test-suite.LICENSE" + }, + { + "license_key": "warranty-disclaimer", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-warranty-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "", + "json": "warranty-disclaimer.json", + "yaml": "warranty-disclaimer.yml", + "html": "warranty-disclaimer.html", + "license": "warranty-disclaimer.LICENSE" + }, + { + "license_key": "waterfall-feed-parser", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-waterfall-feed-parser", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\n1. The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n\n2. This Software cannot be used to archive or collect data such as (but not\n limited to) that of events, news, experiences and activities, for the \n purpose of any concept relating to diary/journal keeping.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "json": "waterfall-feed-parser.json", + "yaml": "waterfall-feed-parser.yml", + "html": "waterfall-feed-parser.html", + "license": "waterfall-feed-parser.LICENSE" + }, + { + "license_key": "westhawk", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-westhawk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software for any purpose\nand without fee is hereby granted, provided that the above copyright notices\nappear in all copies and that both the copyright notice and this permission\nnotice appear in supporting documentation.\n\nThis software is provided \"as is\" without express or implied warranty.", + "json": "westhawk.json", + "yaml": "westhawk.yml", + "html": "westhawk.html", + "license": "westhawk.LICENSE" + }, + { + "license_key": "whistle", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-whistle", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Subject to the following obligations and disclaimer of warranty, use and\nredistribution of this software, in source or object code forms, with or\nwithout modifications are expressly permitted by Whistle Communications;\nprovided, however, that:\n1. Any and all reproductions of the source or object code must include the\ncopyright notice above and the following disclaimer of warranties; and\n\n2. No rights are granted, in any manner or form, to use Whistle\nCommunications, Inc. trademarks, including the mark \"WHISTLE\nCOMMUNICATIONS\" on advertising, endorsements, or otherwise except as\nsuch appears in the above copyright notice or in the software.\n\nTHIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS \"AS IS\", AND\nTO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO\nREPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,\nINCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.\nWHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY\nREPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS\nSOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.\nIN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES\nRESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING\nWITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\nPUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY\nOF SUCH DAMAGE.", + "json": "whistle.json", + "yaml": "whistle.yml", + "html": "whistle.html", + "license": "whistle.LICENSE" + }, + { + "license_key": "whitecat", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-whitecat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "* Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * * Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * * Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * * Neither the name of the nor the\n * names of its contributors may be used to endorse or promote products\n * derived from this software without specific prior written permission.\n * * The WHITECAT logotype cannot be changed, you can remove it, but you\n * cannot change it in any way. The WHITECAT logotype is:\n *\n * /\\ /\\\n * / \\_____/ \\\n * /_____________\\\n * W H I T E C A T\n *\n * * Redistributions in binary form must retain all copyright notices printed\n * to any local or remote output device. This include any reference to\n * Lua RTOS, whitecatboard.org, Lua, and other copyright notices that may\n * appear in the future.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY\n * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\n * Lua RTOS, a tool for make a LFS file system image", + "json": "whitecat.json", + "yaml": "whitecat.yml", + "html": "whitecat.html", + "license": "whitecat.LICENSE" + }, + { + "license_key": "wide-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wide-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify and distribute this software and its\ndocumentation is hereby granted, provided only with the following\nconditions are satisfied:\n\n1. Both the copyright notice and this permission notice appear in\nall copies of the software, derivative works or modified versions,\nand any portions thereof, and that both notices appear in\nsupporting documentation.\n\n2. All advertising materials mentioning features or use of this software\nmust display the following acknowledgement:\nThis product includes software developed by WIDE Project and\nits contributors.\n\n3. Neither the name of WIDE Project nor the names of its contributors\nmay be used to endorse or promote products derived from this software\nwithout specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE DEVELOPER ``AS IS'' AND WIDE\nPROJECT DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES\nWHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. ALSO, THERE\nIS NO WARRANTY IMPLIED OR OTHERWISE, NOR IS SUPPORT PROVIDED.\n\nFeedback of the results generated from any improvements or\nextensions made to this software would be much appreciated.\nAny such feedback should be sent to:", + "json": "wide-license.json", + "yaml": "wide-license.yml", + "html": "wide-license.html", + "license": "wide-license.LICENSE" + }, + { + "license_key": "wifi-alliance", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-wifi-alliance", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Confidential not for redistribution\n\n=======================================================================\nLICENSE\n=======================================================================\n\nLicense is granted only to Wi-Fi Alliance members and designated Wi-Fi\ncontractors and, unless otherwise expressly authorized in writing by the\nWi-Fi Alliance, is limited for use solely in testing Wi-Fi equipment in\nconjunction with a Wi-Fi certification program. This license is not\ntransferable or sublicensable, and it does not extend to and may not be\nused with non-Wi-Fi applications.\n\nCommercial derivative works or applications that use this software are NOT\nAUTHORIZED without specific prior written permission from Wi-Fi Alliance.\n\nNon-Commercial derivative works for your own internal use are authorized\nand are limited by the same restrictions.\n\nNeither the name of the author nor \"Wi-Fi Alliance\"\nmay be used to endorse or promote products that are derived\nfrom or that use this software without specific prior written\npermission from Wi-Fi Alliance.\n\nTHIS SOFTWARE IS PROVIDED BY WIFI ALLIANCE \"AS IS\" AND ANY EXPRESSED OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY, NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE,\nARE DISCLAIMED. IN NO EVENT SHALL WIFI ALLIANCE BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, THE COST OF PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "wifi-alliance.json", + "yaml": "wifi-alliance.yml", + "html": "wifi-alliance.html", + "license": "wifi-alliance.LICENSE" + }, + { + "license_key": "william-alexander", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-william-alexander", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "free for use as long as this comment is included \nin the program as it is", + "json": "william-alexander.json", + "yaml": "william-alexander.yml", + "html": "william-alexander.html", + "license": "william-alexander.LICENSE" + }, + { + "license_key": "wince-50-shared-source", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-wince-50-shared-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Microsoft Windows CE 5.0 Shared Source License Agreement\n\nMicrosoft gives you a Windows CE 5.0 Shared Source License Agreement (\"License\") to use the accompanying Software on the following terms:\n\nYou may:\n\n 1. Correct errors in Your hardware and software operating on the Windows CE platform.\n 2. Create derivative works of the Software to debug, improve and optimize Windows CE.\n 3. Use the Software as a reference to develop Enhancements. \"Enhancements\" means technologies that enhance or extend the functionality or features of the Windows CE operating system and do not include any of the Software or any derivative work of the Software.\n 4. Provide system integration and technical support services to Your customers to assist them in their development, testing, or use of hardware and software, as applicable, based on the Windows CE platform.\n 5. Compile the Software and any derivative works of the Software that You create under the terms of this License and then publicly perform and display that compiled code in operation in Your device in public demonstrations at tradeshows, lectures and similar events.\n 6. Distribute derivative works of the Software only in object code form as part of Your Windows CE-based embedded product provided that You have signed a standard, royalty-bearing agreement for distribution of Windows CE.\n 7. Microsoft reserves all rights not expressly granted.\n\nYou may not:\n\n 1. Use the Software or information derived from the Software for any project related to, or to make any Enhancements or derivative works of the Software for use with, a non-Microsoft operating system or related to a device or piece of hardware based on a non-Microsoft operating system.\n 2. Use the Software for patent-mining purposes, such as (i) determining if any features, functions or processes provided by the Software are covered by any patents or patent applications or (ii) using the Software as a reference or using specific knowledge of the Software to modify existing patents or patent applications or creating any continuation, continuation in part, or extension of existing patents or patent applications.\n\nIn return, we simply require that you agree:\n\n 1. Not to remove any copyright notices from the Software.\n 2. Identify all derivative works of the Software, and Yourself as the author of such derivative works.\n 3. Provide end-user support for your derivative works.\n 4. Not to combine or distribute the Software (or any derivative works) with other software that is licensed pursuant to terms that seek to require that the Software (or any intellectual property in it) be licensed to or otherwise shared with others.\n 5. That if you distribute the Software in source code form, then you do so only under this License (i.e. you must include a complete copy of this License with your distribution), and if you distribute the Software solely in object form you only do so under a license that complies with this License.\n 6. That if you distribute any derivative works of the Software, you will defend, indemnify and hold Microsoft harmless from any claims, losses or damages arising from any actions brought by a third party against Microsoft to the extent caused by Your acts or omissions in connection with such distribution.\n 7. That the Software comes \"as is\", with no warranties. None whatsoever. This means no express, implied or statutory warranty, including without limitation, warranties of merchantability or fitness for a particular purpose or any warranty of non-infringement. Also, you must pass this disclaimer on whenever you distribute this Software.\n 8. That neither Microsoft, its affiliates, nor its suppliers are liable for any damages, including those types of damages known as indirect, special, consequential, or incidental related to the Software or this License, to the maximum extent the law permits, no matter what legal theory its based on. Also, you must pass this limitation of liability on whenever you distribute the Software.\n 9. That if you sue anyone over patents that you think may apply to this Software for a person's use of this Software, your license to this Software ends automatically.\n 10. Not to assert patents owned or licensable by You that claim (i) any inventions in any Enhancements or derivative works You develop using the Software or (ii) any inventions You derive from the Software (collectively, Your Patents) against Microsoft, Microsoft affiliates, and Microsoft Licensees (as defined below), excluding OEM/ODM Licensees (as defined below), for infringement of Your Patents on account of the making, use, sale, offer for sale, importation or other disposition or promotion of any version or portion of Windows CE. If You or Your affiliates choose to assert Your Patents against OEM/ODM Licensees on account of the OEM/ODM Licensees making, use, sale, offer for sale, importation or other disposition or promotion of Windows CE, portion thereof, or a redistributed portion thereof, then You and Your affiliates agree to offer licenses to such OEM/ODM Licensees under commercially reasonable and non-discriminatory terms and pricing.\n 11. If You assign any of Your Patents or rights to enforce any of Your Patents, You will require that the assignee(s) agree to be bound by this Section. Any such assignment by You not in accordance with this Section will be null and void.\n 12. \"Microsoft Licensee\" means any third party that is directly or indirectly licensed by Microsoft to exercise any legal rights with respect to Windows CE or a portion thereof or a redistributed portion thereof, including authorized distributors of Windows CE, users of Windows CE and end users of any redistributed portions of Windows CE. OEM/ODM Licensee means an original equipment/device manufacturer directly or indirectly licensed by Microsoft to use Windows CE or a portion thereof and to distribute a portion of Windows CE as binaries incorporated in that OEM/ODMs embedded system(s).\n 13. That the patent rights Microsoft is licensing only apply to the Software, not to any derivatives you make.\n 14. That your rights under this License end automatically if you breach this License in any way.\n\nIf you would like to suggest changes, modifications or improvements to the Software, e-mail us.", + "json": "wince-50-shared-source.json", + "yaml": "wince-50-shared-source.yml", + "html": "wince-50-shared-source.html", + "license": "wince-50-shared-source.LICENSE" + }, + { + "license_key": "windriver-commercial", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-windriver-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Wind River LICENSING SUPPORT\nProduct Activation\n\nUse the Wind River\u00ae Product Activation Portal to activate your software and\nmanage your licenses.\n\nTo use the Product Activation Portal, you will need the License Administrator\nEssentials sheet that was shipped with your product.\n\nSee http://www.windriver.com/licensing/", + "json": "windriver-commercial.json", + "yaml": "windriver-commercial.yml", + "html": "windriver-commercial.html", + "license": "windriver-commercial.LICENSE" + }, + { + "license_key": "wingo", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wingo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License for 'jt2_.js' (was 'jt_utils.js'), 'jt_DialogBox' and all\nrelated code: http://www.wingo.com/jt_/\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain this copyright notice and link\n to this License, list of conditions and the following disclaimer:\n\n Copyright (c) 2002-2010 Joseph.Oster, wingo.com - All rights reserved.\n license: http://www.wingo.com/jt_/jt_license.html\n\n2. Products derived from this software may not use the \"wingo.com\" name\n nor may \"wingo.com\" appear in their names without prior written\n permission of Joseph Oster, wingo.com.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\nJoseph Oster, wingo.com OR ITS CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n====================================================================\n\nExcept where specifically noted in the source code, this software consists\nsolely of contributions made by Joseph Oster, wingo.com", + "json": "wingo.json", + "yaml": "wingo.yml", + "html": "wingo.html", + "license": "wingo.LICENSE" + }, + { + "license_key": "wink", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-wink", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software is provided 'as-is', without any express or implied warranty. In no event will the author be held liable for any consequences/damages arising from the use of this software.\n\nThis program and the accompanied libraries/plugins/artwork are FREEWARE. You can use it for personal, business, educational or any other need of yours, subject to the following restrictions:\n\n1. You may not re-distribute this program without contacting the author and getting his consent. You may not charge any fee or re-distribution fee for it.\n\n2. This notice may not be removed or altered from any distribution.\n\n3. No form of decompilation/reverse engineering/disassembling parts or whole of the software be done.\n\n4. You may not misrepresent the origin of the software/artwork. If you are distributing the package/portions of the package, the files must be clearly indicated that they are part of DebugMode Wink software.", + "json": "wink.json", + "yaml": "wink.yml", + "html": "wink.html", + "license": "wink.LICENSE" + }, + { + "license_key": "winzip-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-winzip-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "PERPETUAL PROVISIONS APPLICABLE TO\nWINZIP\nWINZIP COURIER\nWINZIP SELF EXTRACTOR\nWINZIP MAC EDITION\n\nIF YOU AGREE TO THIS EULA YOU ARE GRANTED A LIMITED, PERSONAL, WORLDWIDE,\nROYALTY-FREE, NON-ASSIGNABLE, NON-SUBLICENSEABLE, NON-TRANSFERABLE AND NON-\nEXCLUSIVE LICENSE TO USE THE SOFTWARE. YOU ARE PERMITTED TO USE ONE (1) COPY OF\nTHE SOFTWARE FOR YOUR (I) PRIVATE, NON-COMMERCIAL PURPOSES AS A PRIVATE USER,\nAND/OR (II) COMMERCIAL PURPOSES AS A SERVICE PROVIDER IN A COMMERCIAL BUSINESS\n(\"BUSINESS USER\"). THE SOFTWARE IS LICENSED PER HOUSEHOLD OR PER SINGLE ADDRESS\n(\"ADDRESS\"). YOU MAY ONLY DOWNLOAD AND INSTALL THE SOFTWARE ON ONE (1) COMPUTING\nDEVICE PER ADDRESS. YOU MAY NOT RE-INSTALL THE SOFTWARE ON A SECOND COMPUTING\nDEVICE, UNLESS (I) THE ORIGINAL COMPUTING DEVICE FAILS, (II) YOU CONTACT\nCUSTOMER SERVICE (HELP@WINZIP.COM) REQUESTING OUR APPROVAL (AND WE PROVIDE YOU\nAUTHORIZATION CODE) TO RE-INSTALL THE SOFTWARE ON A NEW COMPUTING DEVICE, AND\n(III) YOU CERTIFY TO WINZIP THAT YOU HAVE UNINSTALLED THE SOFTWARE FROM THE\nFAILED COMPUTING DEVICE. PRIVATE AND BUSINESS USERS OF WINZIP, WINZIP COURIER,\nWINZIP SELF EXTRACTOR OR WINZIP MAC EDITION THAT HAVE MULTIPLE COMPUTING DEVICES\n(E.G., STAND-ALONE COMPUTER, LAP-TOP, TABLET AND MINI/PORTABLE PC), MAY DOWNLOAD\nAND INSTALL THE SOFTWARE ON UP TO THREE (3) SYSTEMS PER ADDRESS, HOWEVER THE\nSOFTWARE CAN ONLY BE USED BY YOU ON ONE (1) SYSTEM AT A TIME (I.E., THE SOFTWARE\nMAY NOT BE SHARED OR USED CONCURRENTLY ON DIFFERENT COMPUTING DEVICES). IF YOU\nINSTALL THE SOFTWARE ON A FORTH COMPUTING DEVICE OR ON A COMPUTING DEVICE\nLOCATED AT A DIFFERENT ADDRESS YOU MUST PURCHASE ADDITIONAL LICENSES FOR SUCH\nADDITIONAL COMPUTING DEVICES. IF YOU HAVE PURCHASED MULTIPLE-USER LICENSES FOR\nTHE SOFTWARE, AT ANY TIME YOU MAY HAVE AS MANY COPIES OF THE SOFTWARE IN USE UP\nTO THE NUMBER OF MULTIPLE-USER LICENSES YOU HAVE PURCHASED.\n\nLICENSE TO USE THE SOFTWARE. The Software is licensed to You, not sold to You.\nYou must lawfully acquire the Software from Us or Our authorized resellers\notherwise You don't have a right to use the Software. You may only purchase\nand/or download the Software from Our (or Our authorized reseller's) eStore or\nwebsite that is located in the country in which You hold legal residency.\nBUSINESS USERS: If You are a business, and You purchased the Software from Us or\nfrom one of Our authorized resellers, You may install the Software on a hardware\npartition, blade, or terminal server (\"Virtualization Environment\") to run, use\nor access the Software by means of Your organization's computing devices\ndirectly connected to Your organization's internal network or Your\norganization's virtual private network. Use of the Software by Your employees\n(and Your organization's subcontractors contractually authorized to act on Your\nbehalf) via such Virtualization Environment is permitted only up to the maximum\nnumber of site licenses purchased by Your organization. For the avoidance of\ndoubt, You must acquire and dedicate one (1) license for each computing device\nusing, running, or accessing the Software from Virtualization Environment and\nfor each computing device on which the Software is installed, run, used or\naccessed from. You agree that if the Software requires mandatory activation or\nemail validation, You will complete the process providing Us with accurate\ninformation. Your use of the Software is suspended until You complete the\nactivation and/or registration process. The Software may include digital images,\nstock photographs, clip art, fonts, sounds or other artistic works (\"Stock\nFiles\"). The responsibilities and restrictions relating to the Software apply to\nthe Stock Files. We reserve all rights not expressly granted to You in this\nEULA. BUSINESS USERS: If You are a business, You agree to maintain records,\nsystems and/or procedures that accurately record of the number of copies of the\nSoftware that have been acquired, installed and in use on Your computing devices\nand will keep the records for two (2) years from the date Your license to use\nthe Software ends. We may conduct an audit (remotely or at Your facility) of\nrecords and systems from Your business, to verify that Your installation of the\nSoftware conforms with a valid license from Us or Our authorized resellers. We\nwill not conduct more than one (1) audit per year. If the audit results find\nthat Your use does not conform to a valid license, then You will immediately\nobtain a valid license or true-up Your licenses for the Software.\n\n \n\nSUBSCRIPTION PROVISIONS APPLICABLE TO\nWINZIP SYSTEM UTILITIES SUITE\nWINZIP REGISTRY OPTIMIZER\nWINZIP DRIVER UPDATER\nWINZIP MALWARE PROTECTOR\nWINZIP MAC OPTIMIZER\nWINZIP DISK TOOLS\n\nIF YOU AGREE TO THIS EULA YOU ARE GRANTED A LIMITED-TIME, PERSONAL, WORLDWIDE,\nROYALTY-FREE, NON-ASSIGNABLE, NON-SUBLICENSEABLE, NON-TRANSFERABLE AND NON-\nEXCLUSIVE SUBSCRIPTION-BASED LICENSE TO USE WINZIP SYSTEM UTILITIES SUITE,\nWINZIP REGISTRY OPTIMIZER, WINZIP DRIVER UPDATER, WINZIP MALWARE PROTECTOR,\nWINZIP MAC OPTIMIZER OR WINZIP DISK TOOLS. THE SOFTWARE IS LICENSED TO YOU ON A\nSUBSCRIPTION BASIS FOR AN INITIAL ONE (1) YEAR PERIOD (\"INITIAL TERM\") AND WILL\nAUTOMATICALLY RENEW FOR ADDITIONAL ONE (1) YEAR PERIODS (\"RENEWAL TERM\")\n(COLLECTIVELY \"TERM\") UNTIL YOU TERMINATE YOUR SUBSCRIPTION BY NOTIFYING US, VIA\nEMAIL AS SET FORTH BELOW, OF YOUR INTENT TO DISCONTINUE YOUR USE OF THE\nSOFTWARE. YOU ARE PERMITTED TO USE ONE (1) COPY OF THE SOFTWARE FOR YOUR (I)\nPRIVATE, NON-COMMERCIAL PURPOSES AS A PRIVATE USER, AND/OR (II) COMMERCIAL\nPURPOSES AS A SERVICE PROVIDER IN A COMMERCIAL BUSINESS (\"BUSINESS USER\"). THE\nSOFTWARE IS LICENSED PER HOUSEHOLD OR PER SINGLE ADDRESS (\"ADDRESS\"). YOU MAY\nONLY DOWNLOAD AND INSTALL THE SOFTWARE ON ONE (1) COMPUTING DEVICE PER ADDRESS.\nYOU MAY NOT RE-INSTALL THE SOFTWARE ON A SECOND COMPUTING DEVICE UNLESS (I) THE\nORIGINAL COMPUTING DEVICE FAILS, (II) YOU CONTACT CUSTOMER SERVICE\n(HELP@WINZIP.COM) REQUESTING OUR APPROVAL (AND WE PROVIDE YOU AUTHORIZATION\nCODE) TO RE-INSTALL THE SOFTWARE ON A NEW COMPUTING DEVICE, AND (III) YOU\nCERTIFY TO WINZIP THAT YOU HAVE UNINSTALLED THE SOFTWARE FROM THE FAILED\nCOMPUTING DEVICE. PRIVATE AND BUSINESS USERS OF WINZIP SYSTEM UTILITIES SUITE,\nWINZIP REGISTRY OPTIMIZER, WINZIP DRIVER UPDATER, WINZIP MALWARE PROTECTOR,\nWINZIP MAC OPTIMIZER OR WINZIP DISK TOOLS THAT HAVE MULTIPLE COMPUTING DEVICES\n(E.G., STAND-ALONE COMPUTER, LAP-TOP, TABLET AND MINI/PORTABLE PC) MAY NOT\nDOWNLOAD AND INSTALL THE SOFTWARE ON MULTIPLE COMPUTING DEVICES. YOU MAY\nDOWNLOAD AND INSTALL THE SOFTWARE ON ONLY ONE (1) SYSTEM PER ADDRESS (I.E., THE\nSOFTWARE MAY NOT BE SHARED OR USED CONCURRENTLY ON DIFFERENT COMPUTING DEVICES).\n\nBY DOWNLOADING AND INSTALLING WINZIP SYSTEM UTILITIES SUITE, WINZIP REGISTRY\nOPTIMIZER, WINZIP DRIVER UPDATER, WINZIP MALWARE PROTECTOR, WINZIP MAC OPTIMIZER\nOR WINZIP DISK TOOLS, YOU AGREE THAT WINZIP IS AUTHORIZED TO CHARGE YOUR CREDIT\nCARD FOR THE ANNUAL SUBSCRIPTION FEE FOR THE SOFTWARE ON A YEARLY BASIS WITHOUT\nANY FURTHER ACTION ON YOUR PART. IN THE EVENT THAT YOUR CREDIT CARD IS DECLINED\nFOR ANY REASON, THE SUBSCRIPTION FEE IS STILL DUE AND OWING TO WINZIP AND YOU\nWILL PROMPTLY PROVIDE US WITH ANOTHER CREDIT CARD FOR AUTOMATIC PAYMENT\nPURPOSES. YOUR CONTINUED USE OF THE SOFTWARE IS SUBJECT TO AND CONDITIONED UPON\nYOUR PAYMENT OF THE SUBSCRIPTION FEE. YOU MUST PROVIDE NOTICE OF INTENT TO\nTERMINATE YOUR SUBSCRIPTION FIVE (5) BUSINESS DAYS PRIOR TO THE END OF THE\nINITIAL TERM OR FIVE (5) BUSINESS DAYS PRIOR TO THE END OF EACH RENEWAL TERM\nOTHERWISE YOUR SUBSCRIPTION WILL AUTOMATICALLY RENEW FOR ANOTHER TERM. DURING\nEACH RENEWAL TERM, ONCE A PAYMENT IS RECEIVED, THE SUBSCRIPTION FEE IS NON-\nREFUNDABLE AND NON-CANCELLABLE. IF YOU DECIDE TO TERMINATE YOUR SUBSCRIPTION OR\nFAIL TO PROVIDE A NEW CREDIT CARD AS REQUIRED FOR PAYMENT, THE SOFTWARE CONTAINS\nA LOCKING CODE WHICH WILL AUTOMATICALLY LOCK AT THE END OF THE TERM AND THAT\nWILL PROHIBIT YOU FROM USING THE SOFTWARE UNTIL A NEW REGISTRATION CODE IS\nRECEIVED BY YOU. YOU WILL RECEIVE A NEW REGISTRATION CODE ONLY UPON OUR RECEIPT\nOF YOUR NEW CREDIT CARD AND PAYMENT OF THE FEE (IN THE EVENT OF A FAILED CREDIT\nCARD) OR RENEWAL OF THE SUBSCRIPTION (IN THE EVENT YOU PREVIOUSLY TERMINATED\nYOUR SUBSCRIPTION). USE OF THE SOFTWARE BEFORE OR BEYOND THE APPLICABLE\nSUBSCRIPTION TERM, OR ANY ATTEMPT TO DEFEAT ANY TIME-CONTROL DISABLING FUNCTION\nIN THE SOFTWARE, IS AN UNAUTHORIZED USE AND CONSTITUTES A MATERIAL BREACH OF\nTHIS EULA AND APPLICABLE LAW. TO PROVIDE US NOTICE OF YOUR INTENT TO TERMINATE\nYOUR SUBSCRIPTION, CONTACT OUR CUSTOMER SUPPORT TEAM AT HELP@WINZIP.COM.\n\nLICENSE TO USE THE SOFTWARE. The Software is licensed to You, not sold to You.\nYou must lawfully acquire the Software from Us or Our authorized resellers\notherwise You don't have a right to use the Software. You may only purchase\nand/or download the Software from Our (or Our authorized reseller's) eStore or\nwebsite that is located in the country in which You hold legal residency. You\nagree that if the Software requires mandatory activation or email validation,\nYou will complete the process providing WinZip with accurate information. Your\nuse of the Software is suspended until You complete the activation and/or\nregistration process. The Software may include digital images, stock\nphotographs, clip art, fonts, sounds or other artistic works (\"Stock Files\").\nThe responsibilities and restrictions relating to the Software apply to the\nStock Files. We reserve all rights not expressly granted to You in this EULA.\nBUSINESS USERS: If You are a business, You agree to maintain records, systems\nand/or procedures that accurately record of the number of copies of the Software\nthat have been acquired, installed and in use on Your computing devices and will\nkeep the records for two (2) years from the date Your license to use the\nSoftware ends. We may conduct an audit (remotely or at Your facility) of records\nand systems from Your business, to verify that Your installation of the Software\nconforms with a valid license from Us or Our authorized resellers. We will not\nconduct more than one (1) audit per year. If the audit results find that Your\nuse does not conform to a valid license, then You will immediately obtain a\nvalid license or true-up Your licenses for the Software.\n\nPROVISIONS APPLICABLE TO BOTH \nSUBSCRIPTION AND PERPETUAL LICENSES\n\nYOUR RESPONSIBILITIES WHILE USING THE SOFTWARE. With regard to Your Use of the\nSoftware under this EULA, You have certain responsibilities. The Software may\ninclude product activation and other technology designed to prevent unauthorized\nuse and copying. You may not sell, rent, lease, resell, or loan any version of\nthe Software (including an Evaluation Version of the Software). If You purchase\nthe Software as a gift to a third person, the third person must accept the terms\nof this EULA before using the Software. You may not reverse engineer,\nreengineer, decompile, disassemble, translate, reconstruct, transform, or\nextract the Software or any portion of the Software. You may not wrap the\nSoftware or any Software executable (E.G., .EXE, .MSI, .ISO or .DMG or similar\nexecutable now known or later developed) with any third party software add-on or\noffer except pursuant to a separate express, written, fully-executed agreement\nwith WinZip. While We own Our Software, You own and are responsible for the\ncontent (\"Content\") that You create, or have created for You, resulting from the\nuse of Our Software (including any add-ons or plug-ins to Our Software that You\ncreate, or have created for You). You agree that, in connection with Your use of\nthe Software, You are responsible for the direct and/or indirect consequences of\nany of the (i) Content You create and (ii) third party photos or images that You\nuse or modify in creating Your Content, especially in situations where You share\nYour Content with family, friends, clients and/or third parties such as members\nof social networking sites (e.g., Facebook, Flickr, LinkedIn, Twitter, etc.) or\nfile sharing or cloud services sites (e.g., Google Drive, Sky Drive, Dropbox,\nbox.net, etc.). WinZip can neither monitor nor control what third party social\nnetworking, file sharing, or cloud services sites or the members or users of\nsuch sites do with Your content You share. You are responsible for independently\nverifying the accuracy and completeness of Your Content (e.g., any technical\nillustrations or diagrams for operation guides, parts catalogs, schematics,\nwriting diagrams, assembly instructions, maintenance manuals, architectural\npresentations or other materials You create and/or modify using Our Software).\nYou may not modify or create derivative works based upon the Software. You\nrepresent and warrant to Us that You will comply with all applicable laws and\nregulations impacting Your use of the Software including data protection and\nprivacy laws. You agree that You will not use the Software in a way that is\nunlawful or that violates the rights of a third party. If We get sued or a claim\nis brought against Us by a third party due to (i) Your actions, (ii) Your\nfailure to act when required, or (iii) Your content, then You agree to defend,\nindemnify and hold WinZip harmless. You may receive updates, bug fixes, feature\nenhancements or improvements, or other data relating to the Software\n(collectively \"Updates\") downloaded to Your computing device with a notice\ndescribing what is included in the Update and the purpose of the Update. You\nwill have to choose either to install the Update on Your computing device or\nopt-out and not install the Update. If You do not install the Updates the\nSoftware may not perform properly.\n\nOUR INTELLECTUAL PROPERTY RIGHTS. The Software is protected by United States and\nCanadian Intellectual Property laws and international intellectual property laws\nand treaty provisions. Therefore, You may not distribute the Software without\nOur permission. If You purchase or download the Software in China, India,\nIndonesia or Vietnam, You may not copy the Software or printed materials\naccompanying the Software for any purpose. If You purchase or download the\nSoftware in a country not specifically prohibited under this EULA, You may only\nmake one (1) copy of the Software (or You may keep one (1) copy of the Software\non a single hard drive) for backup or archival purposes. For backup or archival\npurposes only, You may either make only one (1) copy of the Software and the\nPrinted Materials or print one (1) copy of any user documentation if You\ndownloaded the Software or You may keep one (1) copy the Software and printed\nmaterials (or user documentation) on a single hard drive. Otherwise, You may not\ncopy the Software or the printed materials accompanying the Software (or print\ncopies of any user documentation if You downloaded the Software). You agree that\nWinZip, the WinZip logos, and other WinZip trademarks, service marks, and\ngraphics are trademarks of WinZip International LLC, a Corel company, (some in\nthe United States and/or other countries) or are trademarks of WinZip's partners\n(\"Marks\"). You are not granted a right to use Marks without the owner's\npermission. You will not remove, obscure or alter any proprietary notices\naffixed to or contained within the Software. You understand and agree that We\nhave the right to stop selling, distributing, servicing or updating the Software\n(any part of it), and services or offerings at any time.\n\nUSAGE AUDITING, PIRACY AND OUR PRIVACY POLICY. Our audit and collection of any\nof Your data and Your use of the Software is subject to the Corel Corporation\nPrivacy Policy (http://www.winzip.com/privacy). We may audit Your Software usage\nfor anti-piracy purposes, to verify a valid registration, and identify if new\nUpdates are available for Your computing device prior to sending You a notice to\ninstall a new Software Update, and to assess Your use of the Software. You\nconsent to the Software sending usage data (e.g., the number of instances the\nSoftware is launched, the device IP address, and/or the version of the\nSoftware), for registration, authentication, use and anti-piracy auditing and\nenforcement purposes.\n \nPRE-COMMERCIAL RELEASE OR BETA SOFTWARE. If the Software You have received with\nthis EULA is a pre-commercial release or a beta version, then You understand the\nSoftware (i) is the Confidential Information of WinZip, its licensors and\nsuppliers, and (ii) does not represent a final product of WinZip. You have no\nright to (i) modify, enhance, adapt, alter, translate, or create derivative\nworks of such Software; (ii) merge or wrap the Software with other software;\n(iii) sublicense, lease, rent, loan, sell, export, or otherwise transfer or\ndistribute the Software to any third party; (iv) reverse engineer, decompile,\ndisassemble, or otherwise attempt to derive the source code for the Software; or\n(v) otherwise use or copy the Software. The Software may contain bugs, errors\nand other problems that could cause computer system failures and data loss.\nTHEREFORE, ALL PRE-RELEASE OR BETA SOFTWARE IS PROVIDED ON AN \"AS-IS\" BASIS AND\nWINZIP DISCLAIMS ANY AND ALL WARRANTIES OR LIABILITY TO YOU OF ANY KIND.\n\nEVALUATION SOFTWARE. In the instance of a fixed term license such as with a\ntrial version, the license to use the Software begins on installation and shall\nbe for the duration identified by Us in Our invoice or by Our authorized\nreseller in its invoice. Subject to the terms and conditions of this EULA, if\n(i) the Software is identified as a demonstration, evaluation, trial, \"not for\nsale\" (\"NFS\") or \"not for resale\" (\"NFR\") version (\"Evaluation Version\") in the\napplicable user documentation, or (ii) You acquired the Software without charge,\nYour use of the Software is subject to the following terms: (a) You may make as\nmany exact copies of the Software as You wish solely for evaluation purposes and\nfor no other purpose using the tangible physical media (e.g., compact discs);\n(b) You may distribute individual exact copies of the Software solely for\nevaluation purposes and for no other purpose without charge to You or the\nrecipient. Exact copy means a file that is, for example, identical to the WinZip\ndistribution file available at www.winzip.com; (c) You may not distribute the\nSoftware with any other product or wrap the Software or any Software executable\n(.EXE, .MSI, .ISO or .DMG or similar executable now known or later developed)\nwith any third party software add-on or offer; and (d) If You distribute the\nSoftware You may do so by electronic download or email, but not through the use\nof bulk mail, spam or unsolicited emails. Except pursuant to a separate express,\nwritten, fully-executed agreement with WinZip, You may not use Our Software for\ncompetitive analysis, or commercial, professional, or other for-profit purposes.\nYou understand that at the end of the evaluation period, You must either stop\nusing the Software or pay for the Software to continue using it. If You fail to\npay for it, then Your license terminates. Upon expiration of the evaluation\nperiod, You will immediately discontinue use of the Evaluation Version and\ndelete and destroy all electronic copies of the Evaluation Version including,\nbut not limited to, all user documentation that may have been provided as part\nof the evaluation from Your computing device and any other computer devices on\nwhich You have installed the Evaluation Version. UNAUTHORIZED USE OF THE\nEVALUATION VERSION, USE OF THE EVALUATION VERSION BEFORE OR BEYOND THE\nAPPLICABLE FIXED TERM, OR ANY ATTEMPT TO DEFEAT ANY TIME-CONTROL DISABLING\nFUNCTION IN THE EVALUATION VERSION IS AN UNAUTHORIZED USE CONSTITUTING A\nMATERIAL BREACH OF THIS EULA AND APPLICABLE LAW AND WILL AUTOMATICALLY AND\nIMMEDIATELY TERMINATE YOUR LICENSE TO USE THE SOFTWARE.\n\nLIMITED AND RESTRICTED WARRANTY (FOR COUNTRIES OTHER THAN THOSE LISTED\nSEPARATELY UNDER \"ADDITIONAL EULA TERMS\"). If You purchased the Software on a\ncomputer disc, then WinZip warrants that the media on which Software is\nfurnished will be free of defects in materials and workmanship under normal use\nfor a period of ninety (90) days from the date You purchased the Software. The\nSoftware when properly installed and under normal use will substantially conform\nto the features and functionality as set forth in the documentation accompanying\nthe Software, however, the Software may contain normal bugs and errors.\nTherefore, the Software is provided on an \"AS IS\" basis with the understanding\nthat bug fixes and Updates will be provided from time to time. This warranty is\nvalid only for the original purchaser of the Software. IF THE DISC IS DEFECTIVE,\nTHEN WINZIP'S ENTIRE LIABILITY AND YOUR EXCLUSIVE REMEDY UNDER THIS WARRANTY\nWILL BE REPLACEMENT OF THE DEFECTIVE COMPUTER DISC IF YOU RETURN THE DEFECTIVE\nDISC TO US WITH A COPY OF YOUR RECEIPT. Your right to a replacement of the\nSoftware is void if the damage to the disc is a result of accident, abuse or\nmisapplication. Any replacement Software will be warranted for the remainder of\nthe original warranty period. YOU ASSUME ALL RESPONSIBILITIES FOR CHOOSING,\nINSTALLING, AND USING THE SOFTWARE. TO THE MAXIMUM EXTENT PERMITTED BY\nAPPLICABLE LAW, WINZIP DISCLAIMS ALL OTHER WARRANTIES, EITHER EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT WITH RESPECT TO THE\nSOFTWARE AND THE ACCOMPANYING WRITTEN MATERIALS. This clause shall not impair\nthe U.S. Government's right to recover for fraud or crimes arising out of or\nrelated to this EULA under any federal fraud statute, including the False Claims\nAct, 31 U.S.C. \u00a7\u00a7 3729-3733.\n\nSOME STATES OR COUNTRIES DO NOT ALLOW THE WARRANTY EXCLUSION OR LIMITATIONS; THE\nABOVE LIMITATION MAY NOT APPLY TO YOU. In such instances and as long as You\nobtained the Software from WinZip, or a WinZip authorized reseller, WinZip may\nremedy substantial defects of the Software at its reasonable discretion by (i)\nproviding a patch, Update or replacement of the Software, or (ii) asking for\nreturn of the Software and cancelling this EULA. You are entitled to a reduction\nof the purchase price or a rescission of this EULA only if WinZip has repeatedly\nfailed to remedy the defect after a reasonable period of time. If You are a\nconsumer, Your claims under this clause are time-barred in twenty-four (24)\nmonths; if You are a business, Your claims under this clause are time-barred in\ntwelve (12) months. If You alter the Software in any way without being\nauthorized by WinZip, WinZip will not remedy defects caused by such alteration\nand You are liable for any damages incurred by WinZip due to Your unauthorized\nalteration of the Software. IF YOU INSTALL PRE-RELEASE VERSION PRODUCTS MARKED\nAS SUCH, YOU DO SO AT YOUR OWN RISK. Pre-release version products are to be used\nonly for test purposes in testing environments and must not be used for\nproduction purposes. To make a warranty claim You must provide a detailed error\ndescription to WinZip Customer Service (help@winzip.com) or, at WinZip's\nrequest, return the Software along with any return materials authorization\ninformation provided to You by WinZip to Corel Corporation, Attention:\nManufacturing (WinZip), 1600 Carling Avenue, Ottawa, Ontario, K1Z 8R7, Canada.\nFor further warranty information, please contact WinZip Customer Service at\nhelp@winzip.com.\n\nNO LIABILITY FOR OPEN SOURCE MATERIALS. THE SOFTWARE MAY CONTAIN \"OPEN SOURCE\"\nMATERIALS (E.G., ANY SOFTWARE SUBJECT TO OPEN SOURCE, COPYLEFT, GNU GENERAL\nPUBLIC LICENSE, LIBRARY GENERAL PUBLIC LICENSE, LESSER GENERAL PUBLIC LICENSE,\nMOZILLA LICENSE, BERKELEY SOFTWARE DISTRIBUTION LICENSE, OPEN SOURCE INITIATIVE\nLICENSE, MIT, APACHE OR PUBLIC DOMAIN LICENSES, OR SIMILAR LICENSE). WINZIP\nMAKES NO WARRANTIES, AND SHALL HAVE NO LIABILITY, DIRECT OR INDIRECT, WHATSOEVER\nWITH RESPECT TO OPEN SOURCE MATERIALS CONTAINED IN THE SOFTWARE.\n\nINDIRECT AND CONSEQUENTIAL DAMAGES (FOR COUNTRIES OTHER THAN THOSE LISTED\nSEPARATELY UNDER \"ADDITIONAL EULA TERMS\"): NO LIABILITY FOR INDIRECT OR\nCONSEQUENTIAL DAMAGES. YOU ASSUME THE ENTIRE COST OF ANY DAMAGE RESULTING FROM\nTHE INFORMATION CONTAINED IN OR COMPILED BY THE SOFTWARE. TO THE MAXIMUM EXTENT\nPERMITTED BY APPLICABLE LAW, IN NO EVENT WILL WINZIP OR ITS SUPPLIERS OR\nLICENSORS BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION,\nDAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS\nINFORMATION, OR OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OR INABILITY TO USE\nTHE SOFTWARE, EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES. IN NO EVENT WILL WINZIP'S TOTAL LIABILITY TO YOU FOR ALL DAMAGES IN ANY\nONE OR MORE CAUSE OF ACTION EXCEED THE AMOUNT PAID BY YOU FOR THE SOFTWARE. THIS\nLIMITATION WILL APPLY REGARDLESS OF THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY\nLIMITED REMEDY.\n\nSOME STATES OR COUNTRIES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY\nFOR CONSEQUENTIAL OR INCIDENTAL DAMAGES; THE ABOVE LIMITATION MAY NOT APPLY TO\nYOU. IN SUCH INSTANCES AND AS LONG AS YOU OBTAINED THE SOFTWARE FROM WINZIP, OR\nA WINZIP AUTHORIZED RESELLER, WINZIP MAY BE LIABLE TO YOU (I) WITHOUT LIMITATION\nFOR DAMAGES YOU HAVE INCURRED UNDER OR IN CONNECTION WITH THIS EULA ONLY IF THE\nDAMAGE HAS BEEN CAUSED BY THE WILLFUL OR GROSSLY NEGLIGENT ACT OF WINZIP; AND\n(II) FOR THOSE TYPICAL DAMAGES THAT WERE REASONABLY FORESEEABLE AND WHICH HAVE\nBEEN CAUSED BY ANY OTHER NEGLIGENT BREACH OF AN ESSENTIAL CONTRACTUAL DUTY BY\nWINZIP. ANY FURTHER LIABILITY OF WINZIP IS EXCLUDED. THESE AFOREMENTIONED\nLIMITATIONS APPLY IRRESPECTIVE OF THEIR LEGAL BASIS, IN PARTICULAR WITH REGARD\nTO ANY PRE-CONTRACTUAL OR AUXILIARY CONTRACTUAL CLAIMS. These limitations shall\nnot apply, however, to any mandatory liability under the applicable product\nliability laws, nor to any damage which is caused due to the breach of an\nexpress warranty to the extent that such express warranty was intended to\nprotect consumers against the specific damage incurred, nor to damages due to\nloss of life, injury or prejudice to health.\n\nU.S. GOVERNMENT-RESTRICTED RIGHTS. With respect to any acquisition of the\nSoftware by or for any unit or agency of the United States Government (the\n\"Government\"), the Software shall be classified as \"commercial computer\nsoftware\", as that term is defined in the applicable provisions of the Federal\nAcquisition Regulation (the \"FAR\") and supplements thereto, including the\nDepartment of Defense (DoD) FAR Supplement (the \"DFARS\"). The Software was\ndeveloped entirely at private expense, and no part of the Software was first\nproduced in the performance of a Government contract. If the Software is\nsupplied for use by DoD, the Software is delivered subject to the terms of this\nEULA and either (i) in accordance with DFARS 227.7202-1(a) and 227.7202-3(a); or\n(ii) with restricted rights in accordance with DFARS 252-227-7013 (c)(1)(ii)(OCT\n1988), as applicable. If the Software is supplied for use by a Federal agency\nother than DoD, the Software is restricted computer software delivered subject\nto the terms of this EULA and (i) FAR 12.212(a); (ii) FAR 52.227-19; or (iii)\nFAR 52.227-14 (ALT III), as applicable. The contractor/manufacturer is Corel\nCorporation, 1600 Carling Avenue, Ottawa, Ontario, Canada, K1Z 8R7.\n\nEXPORT RESTRICTIONS. If You are located in a country embargoed by the United\nStates, or You are on the United States Treasury Department's list of Specially\nDesignated Nationals You may not engage in commercial activities with Us or Our\nauthorized resellers. You may not download, distribute, export, re-export, or\nredistribute the Software, including any WinZip shareware product (i) into, or\nto a national or resident of, any country to which the United States has\nembargoed goods, or (ii) to anyone on the United States Treasury Department's\nlist of 'Specially Designated' nationals or the United States Commerce\nDepartment's 'Table of Deny Orders'. By downloading or using the Software, You\nare representing and warranting that You are not located in, under the control\nof, or a national or resident of any such country or on any such list. Except\npursuant to a separate express, written, fully-executed agreement with WinZip,\nYou may not purchase a license to use the Software for the purpose of exporting\nit to a country other than the original country of sale, nor may You retain the\nservices of a third party to purchase a license to use the Software if in doing\nso You will require such third party to send (via any means, electronic or\notherwise) the Software to You in a country other than the original country of\nsale.\n\nGENERAL. If You purchased or downloaded the Software in the United States then\nthis EULA is governed by the laws of the United States and the State of\nCalifornia, without reference to conflict of laws principles. Any dispute\nbetween You and WinZip regarding this EULA will be subject to the exclusive\nvenue of the state and federal courts in the State of California. This EULA\nspecifically excludes the United Nations Convention on Contracts for the\nInternational Sale of Goods and any legislation implementing such 'Convention',\nif otherwise applicable. Except as expressly set forth herein to the extent\npermitted by applicable law, this EULA shall not prejudice the non-excludable,\nstatutory rights of any party dealing as a consumer. If You acquired the\nSoftware in Canada, unless expressly prohibited by local law, this EULA is\ngoverned by the laws in force in the Province of Ontario, Canada; and, any\ndispute between You and WinZip regarding this EULA will be subject to the\nexclusive jurisdiction of the federal and provincial courts sitting in Toronto,\nOntario. If You acquired the Software in the European Union, Iceland, Norway, or\nSwitzerland, then local law applies. If You acquired the Software in any other\ncountry, then local law may apply. This EULA is the entire agreement between You\nand WinZip and supersedes any other communications or advertisements with\nrespect to the Software and documentation. The Software, or any feature or part\nthereof, may not be available in all languages or in all countries. If WinZip\nhas provided You with a translation of the English language version of this\nEULA, You agree that such translation is provided for Your convenience only and\nthat the English language version, not the translation, of this EULA will be\nlegally binding on You. The English language version of this EULA and not its\ntranslation(s) will govern in the event of a conflict between the English\nlanguage version and a translation. The original English version of this EULA\ncan be found at http://winzip.com/en/eula.htm.\n\nIf and to the extent any provision of this EULA is held illegal, invalid, or\nunenforceable in whole or in part under applicable law, such provision or such\nportion thereof shall be ineffective as to the jurisdiction in which it is\nillegal, invalid, or unenforceable but only to the extent of its illegality,\ninvalidity, or unenforceability and shall be deemed modified to the extent\nnecessary to conform to applicable law so as to give the maximum effect to the\nintent of the parties. No term or provision in this EULA will be considered\nwaived, and no breach excused, unless such waiver is in writing signed on behalf\nof the party against whom the waiver is asserted. No waiver (whether express or\nimplied) will constitute consent to, waiver of, or excuse of any other,\ndifferent, or subsequent breach. No modifications or amendments to this EULA\nwill be binding upon WinZip unless made in writing and duly executed by You and\nan authorized representative of WinZip.\n\nSome Software versions may not be compatible with various computer operating\nsystems and WinZip may not release Updates. The Software may not be compatible\nwith computer operating systems that You may purchase now or in the future.\n\nYou understand that the Software may be incorporated into, and may incorporate\nitself into, software and other technology owned and controlled by third\nparties. This EULA remains effective with such incorporation. Any and all other\nthird party software or technology that may be distributed together with the\nSoftware may be subject to You explicitly accepting a license agreement with\nthat third party and Your use of that software constitutes acceptance of such\nterms. WinZip's licensors shall be direct and intended third party beneficiaries\nof this EULA.\n\n \n\nADDITIONAL EULA TERMS\n\nENCRYPTION TECHNOLOGY CONTAINED IN WINZIP PRODUCTS: YOU AGREE THAT WINZIP CANNOT\nGUARANTEE THAT THE ENCRYPTION TECHNOLOGY CONTAINED IN THE SOFTWARE IS COMPLETELY\nSECURE FROM DECODING BY THIRD PARTIES. ACCORDINGLY, WINZIP WILL NOT BE\nRESPONSIBLE FOR ANY LOSSES WHATSOEVER RESULTING FROM THIRD PARTY DECODING OF, OR\nACCESS TO, YOUR FILES.\n\nSelf-extracting Zip files created by WinZip's 'Self Extractor' trial version\nSoftware may contain extractor software (\"Extraction Software\"). You may not\nalter or modify the Extraction Software, nor give anyone permission to do so.\nUnder no circumstances are You licensed to distribute Extraction Software. If\nYou create self-extracting Zip files using an evaluation version of WinZip Self\nExtractor Software You may not transmit Your Zip files to a third party.\nHowever, the fully licensed (non-trial version of) WinZip Self Extractor may be\nused to create an unlimited number of freely distributable, royalty-free, self-\nextracting Zip files subject to the terms of this EULA.\n\nADDITIONAL TERMS APPLICABLE TO USERS OF SOFTWARE LOCATED IN GERMANY OR AUSTRIA:\nIf You obtained the Software from WinZip or a WinZip authorized reseller in\nGermany or Austria and such country is Your legal residence, then the Germany\nand Austrian product liability and other consumer protection laws concerning\nremedies for defective goods shall apply and govern any inconsistencies between\nsuch laws and the provisions of this EULA set forth above.\n\nADDITIONAL TERMS APPLICABLE TO USERS OF HARDWARE OR SOFTWARE LOCATED IN THE\nUNITED KINGDOM: If (i) You are acting as a consumer and the United Kingdom is\nwhere Your legal residence; (ii) You entered into this EULA in the United\nKingdom; and (iii) You have obtained the Software from WinZip or a WinZip\nauthorized reseller in the United Kingdom (a \"Consumer\"), then the limitation of\nliability and warranty provisions set forth in applicable consumer protection\nand warranty laws of the United Kingdom shall apply and govern any\ninconsistencies between such laws and the provisions of this EULA set forth\nabove.\n\nADDITIONAL TERMS APPLICABLE TO USERS OF HARDWARE OR SOFTWARE LOCATED IN\nAUSTRALIA: LIMITED WARRANTY (AUSTRALIAN CONSUMERS ONLY): Our goods come with\nguarantees that cannot be excluded under the Australian Consumer Law. You are\nentitled to a replacement or refund for \"major failure\" and compensation for any\nother reasonably foreseeable loss or damage. You are also entitled to have the\ngoods repaired or replaced if goods fail to be of acceptable quality and the\nfailure does not amount to a major failure. The term \"major failure\" is defined\nin the Australian Consumer Law and includes, but is not limited to, where the\ngoods are substantially unfit for purpose and cannot easily and within a\nreasonable time be remedied to make them fit for such a purpose, or where the\ngoods depart in one or more significant respects, if they were supplied by\ndescription \u2013 from that description. The warranty provided under this Section is\nprovided by Corel Corporation of 1600 Carling Avenue, Ottawa, Ontario, K1Z 8R7,\nCanada. We warrant that the media on which Software is furnished will be free of\ndefects in materials and workmanship under normal use for a period of ninety\n(90) days from the date You purchased the Software. The benefits provided by\nthis express warranty are in addition to any other rights and remedies of the\nconsumer under any law in relation to the goods or service to which the warranty\nrelates. The Software when properly installed and under normal use will\nsubstantially conform to the features and functionality as set forth in the\ndocumentation accompanying the Software, however, the Software may contain\nnormal bugs and errors. Bug fixes and Updates will be provided from time to\ntime. If the disc is defective, then, without limiting any other obligations at\nlaw, WinZip will replace the defective computer disc if You return the defective\ndisc to Us with a copy of Your receipt. Any replacement Software will be\nwarranted for the original warranty period covered by this Section.\n\nEXCLUSIONS (AUSTRALIA ONLY): THE WARRANTY PROVIDED UNDER THIS SECTION DOES NOT\nCOVER DEFECTS OR PROBLEMS THAT ARISE DUE TO YOU CAUSING THE SOFTWARE TO BECOME\nOF UNACCEPTABLE QUALITY, SUCH AS FAILURE TO TAKE REASONABLE CARE OR DAMAGE\nCAUSED BY ABNORMAL USE. FURTHER, YOU ASSUME ALL RESPONSIBILITIES FOR CHOOSING,\nINSTALLING, AND USING THE SOFTWARE. EXCEPT AS SET OUT ABOVE, TO THE MAXIMUM\nEXTENT PERMITTED BY APPLICABLE LAW, WINZIP DISCLAIMS ALL OTHER WARRANTIES,\nEITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT WITH\nRESPECT TO THE SOFTWARE AND THE ACCOMPANYING WRITTEN MATERIALS. IF YOU ALTER THE\nSOFTWARE IN ANY WAY WITHOUT BEING AUTHORIZED BY WINZIP, WINZIP WILL NOT REMEDY\nDEFECTS CAUSED BY SUCH ALTERATION AND YOU ARE LIABLE FOR ANY DAMAGES INCURRED BY\nWINZIP DUE TO YOUR UNAUTHORIZED ALTERATION. IF YOU INSTALL PRE-RELEASE VERSION\nPRODUCTS MARKED AS SUCH, YOU DO SO AT YOUR OWN RISK. PRE-RELEASE VERSION\nPRODUCTS ARE TO BE USED ONLY FOR TEST PURPOSES IN TESTING ENVIRONMENTS AND MUST\nNOT BE USED FOR PRODUCTION PURPOSES. THE SOFTWARE MAY CONTAIN \"OPEN SOURCE\"\nMATERIALS (E.G., ANY SOFTWARE SUBJECT TO OPEN SOURCE, COPYLEFT, GNU GENERAL\nPUBLIC LICENSE, LIBRARY GENERAL PUBLIC LICENSE, LESSER GENERAL PUBLIC LICENSE,\nMOZILLA LICENSE, BERKELEY SOFTWARE DISTRIBUTION LICENSE, OPEN SOURCE INITIATIVE\nLICENSE, MIT, APACHE OR PUBLIC DOMAIN LICENSES, OR SIMILAR LICENSE). TO THE\nEXTENT PERMISSIBLE AT LAW WINZIP MAKES NO WARRANTIES, AND SHALL HAVE NO\nLIABILITY, DIRECT OR INDIRECT, WHATSOEVER WITH RESPECT TO OPEN SOURCE MATERIALS\nCONTAINED IN THE SOFTWARE.\n\nHOW TO CLAIM UNDER THE WARRANTY (AUSTRALIA ONLY): For the warranty to be\nhonored, You must contact WinZip's Customer Service centre at help@winzip.com\nand seek a Return Merchandise Authorization (\"RMA\"). More detailed RMA\ninstructions together with shipping information and an RMA number will then be\nsent to You by email. You will be required to provide proof of purchase and bear\nthe costs of returning the Software. The Software together with all related\nmedia and manuals must be returned to Corel Corporation, Attention:\nManufacturing (WinZip), 1600 Carling Avenue, Ottawa, Ontario, K1Z 8R7, Canada\nand must be uninstalled from Your computer and any storage devices and You must\ndelete any backup copies. We will endeavor to process Your claim within ten (10)\nbusiness days from the date WinZip receives it. If We accept that the Software\nis defective, a replacement disc will be provided to You by mail.\n\nINDIRECT AND CONSEQUENTIAL LOSS (AUSTRALIA ONLY): TO THE EXTENT PERMITTED UNDER\nAUSTRALIAN LAW, WINZIP SHALL HAVE NO LIABILITY FOR INDIRECT OR CONSEQUENTIAL\nDAMAGES. YOU ASSUME THE ENTIRE COST OF ANY DAMAGE RESULTING FROM THE INFORMATION\nCONTAINED IN OR COMPILED BY THE SOFTWARE. TO THE MAXIMUM EXTENT PERMITTED BY\nAPPLICABLE LAW, IN NO EVENT WILL WINZIP OR ITS SUPPLIERS OR LICENSORS BE LIABLE\nFOR ANY DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF\nBUSINESS INFORMATION, OR OTHER INDIRECT PECUNIARY LOSS) ARISING OUT OF THE USE\nOR INABILITY TO USE THE SOFTWARE, EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nADDITIONAL TERMS APPLICABLE TO USERS OF SOFTWARE CONTAINING SHAREWARE: Certain\nSoftware are shareware and as such are acquired without charge and can be used\nfor a limited period of time for evaluation purposes and are subject to the\nparticular end user license for such shareware.\n\nADDITIONAL TERMS APPLICABLE TO USERS OF CLIPART, STOCK PHOTO IMAGES, VIDEO\nCONTENT, AUDIO CLIPS, FONTS AND SAMPLE CONTENT: Our Software may contain\nclipart, photo images, video content, audio clips (collectively referred to as\nthe \"Images or Clips\"), software data files that render typeface designs when\nused in conjunction with appropriate hardware and software (for example only,\nwithout limitation,.ttf or .otf files) referred to as \"Font Software\", and the\ngraphic rendering generated by the Font Software referred to as \"Font Output\"\nand sample content such as forms, templates, \"tubes\" or similar items\n(collectively referred to as the \"Sample Content\") that are either owned by Us\nor licensed from a third-party. Except as required in the paragraph below, as a\nuser of Our Software You are free to use, modify and publish the Images or\nClips, Font Output or Sample Content as follows: You may (i) incorporate any\nImages or Clips, Font Output, or Sample Content into Your own original work and\npublish, display and distribute Your work in any media, provided You include a\ncopyright notice in Your work reflecting on the copyright ownership of both You\nand WinZip as follows: \"Copyright (c) 20__ [Your name], WinZip Computing, S.L.\nand its licensors. All rights reserved.\"; and (ii) make one (1) copy of the\nImages or Clips, Font Software, or Sample Content for backup or archival\npurposes. YOU MAY NOT RESELL, SUBLICENSE OR OTHERWISE MAKE AVAILABLE THE IMAGES\nOR CLIPS, OR FONT SOFTWARE FOR USE OR DISTRIBUTION SEPARATELY OR DETACHED FROM A\nPRODUCT OR WEB PAGE. For example, the Images or Clips or Font Output may be used\nby You as part of a web page design, but not be made available for downloading\nseparately (use of the Font Software as a web font, utilizing the CSS3@font-face\nspecification or similar is specifically prohibited) or in a format designed or\nintended for permanent storage or re-use by others. YOU MAY NOT PROVIDE THE\nIMAGES OR CLIPS OR FONT SOFTWARE TO THIRD PARTIES OR PERMIT THE USE OF THE\nIMAGES OR CLIPS OR FONT SOFTWARE OR FONT OUTPUT BY THIRD PARTIES SEPARATELY OR\nAS PART OF ANY OTHER PRODUCT, HOWEVER, THIRD PARTIES MAY BE PROVIDED WITH COPIES\nOF THE IMAGES OR CLIPS OR FONT OUTPUT (INCLUDING IN DIGITAL FILES) AS PART OF A\nWORK PRODUCT. YOU MAY NOT CREATE SCANDALOUS, OBSCENE, DEFAMATORY OR IMMORAL\nWORKS USING THE IMAGES OR CLIPS, FONT SOFTWARE, FONT OUTPUT, OR SAMPLE CONTENT\nNOR USE THE IMAGES OR CLIPS, FONT SOFTWARE, FONT OUTPUT, OR SAMPLE CONTENT FOR\nANY OTHER PURPOSE WHICH IS PROHIBITED BY LAW. YOU MAY NOT PERMIT THE USE OF THE\nIMAGES OR CLIPS, FONT SOFTWARE, FONT OUTPUT, OR SAMPLE CONTENT OR ANY PART\nTHEREOF AS A TRADEMARK OR SERVICE MARK, OR CLAIM ANY PROPRIETARY RIGHTS OF ANY\nSORT IN THE IMAGES OR CLIPS, FONT SOFTWARE, FONT OUTPUT, OR SAMPLE CONTENT OR\nANY PART THEREOF. YOU MAY NOT USE ANY OF THE IMAGES OR CLIPS WHICH CONTAIN\nIDENTIFIABLE INDIVIDUALS OR ENTITIES FOR ANY COMMERCIAL PURPOSE INCLUDING,\nWITHOUT LIMITATION, IN A MANNER WHICH SUGGESTS THEIR ASSOCIATION WITH OR\nENDORSEMENT OF ANY PRODUCT OR SERVICE. YOU MAY NOT USE THE IMAGES OR CLIPS IN\nELECTRONIC FORMAT, ON-LINE OR IN MULTIMEDIA APPLICATIONS UNLESS THE IMAGES OR\nCLIPS ARE INCORPORATED FOR VIEWING PURPOSES ONLY AND NO PERMISSION IS GIVEN TO\nDOWNLOAD AND/OR SAVE THE IMAGES OR CLIPS FOR ANY REASON. YOU MAY NOT RENT,\nLEASE, SUBLICENSE OR LEND THE IMAGES OR CLIPS OR FONT SOFTWARE OR FONT OUTPUT,\nOR ANY COPIES THEREOF, TO ANOTHER PERSON OR LEGAL ENTITY. YOU MAY NOT MODIFY THE\nFONT SOFTWARE IN ANY WAY. YOU MAY NOT USE ANY IMAGES OR CLIPS PRESENTED IN ANY\nSOFTWARE SPLASHSCREENS, WELCOME SCREENS, PRODUCT PACKAGING AND/OR MARKETING\nCOLLATERAL. YOU MAY NOT USE ANY IMAGES OR CLIPS, FONT SOFTWARE OR FONT OUTPUT OR\nSAMPLE CONTENT EXCEPT AS EXPRESSLY PERMITTED BY THIS EULA. You may, however,\ntransfer subject to WinZip's license transfer authorization, all Your EULA to\nuse the Images or Clips or Font Software to another person or legal entity,\nprovided that (i) You transfer the Software, including the Images or Clips or\nFont Software, and this EULA, including all copies (except copies incorporated\ninto Your work product as permitted under this EULA), to such person or entity,\n(ii) You retain no copies, including copies stored on a computer or other\nstorage device, and (iii) the receiving party agrees to be bound by the terms\nand conditions of this EULA.\n\nOctober 2012 (1.0)", + "json": "winzip-eula.json", + "yaml": "winzip-eula.yml", + "html": "winzip-eula.html", + "license": "winzip-eula.LICENSE" + }, + { + "license_key": "winzip-self-extractor", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-winzip-self-extractor", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License requirements to distribute self-extracting Zip files\n\nIf you are using a registered copy of WinZip Self-Extractor, you do not need any\nadditional license in order to distribute the self-extracting Zip files you\ncreate. The license requirements for the software in the self-extracting Zip\nfiles you create, though, is your responsibility.\n\nIn regards to usage, the WinZip Self-Extractor Registered License states:\n\nIf you have purchased a single-user license you have the right to install and\nuse a single copy of WinZip Self-Extractor on one computer or workstation. If\nyou have purchased a multi-user license and received a valid registration file\nor code, you or your organization have the right to install a copy of WinZip\nSelf-Extractor on multiple computers up to the number of \"Licensed Copies\" that\nyou have acquired, as indicated in the documents issued by WinZip Computing when\ngranting the License.\n\nHere is the section of the license that specifically addresses distribution of\nthe self-extracting Zip files you create:\n\nWinZip Self-Extractor may be used to create an unlimited number of freely\ndistributable, royalty-free self-extracting Zip files. Each self-extracting Zip\nfile contains, among other things, a portion of WinZip Self-Extractor, including\ncopyrighted software, proprietary notices, and identifying information (this\nportion is the \"Extraction Software\"). You may not alter or modify the\nExtraction Software, nor give anyone permission to do so.\n\nIf you have additional questions about license requirements for self-extractors,\nplease email the Service Department.", + "json": "winzip-self-extractor.json", + "yaml": "winzip-self-extractor.yml", + "html": "winzip-self-extractor.html", + "license": "winzip-self-extractor.LICENSE" + }, + { + "license_key": "wol", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wol", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "* The Wide Open License (WOL)\n*\n* Permission to use, copy, modify, distribute and sell this software and its\n* documentation for any purpose is hereby granted without fee, provided that\n* the above copyright notice and this license appear in all source copies. \n* THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT EXPRESS OR IMPLIED WARRANTY OF\n* ANY KIND. See http://www.dspguru.com/wide-open-license for more information.", + "json": "wol.json", + "yaml": "wol.yml", + "html": "wol.html", + "license": "wol.LICENSE" + }, + { + "license_key": "woodruff-2002", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-woodruff-2002", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The MIT License (MIT) with restrictions\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\nThe following terms additionally apply and override any above terms for\napplicable parties:\n\nYou may not use, copy, modify, merge, publish, distribute, sublicense,\nand/or sell copies of the Software in a military or law enforcement context,\ndefined as follows:\n\n1. A military context is a professional context where the intended application\nof the Software is integration or use with or by military software, tools\n(software or hardware), or personnel. This includes contractors and\nsubcontractors as well as research affiliates of any military\torganization.\n\n2. A law enforcement context is a professional context where the intended\napplication of the Software is integration or use with or by law enforcement\nsoftware, tools (software or hardware), or personnel. This includes\ncontractors and subcontractors as well as research affiliates of any law\nenforcement organization.\n\nEntities that sell or license to military or law enforcement organizations\nmay use the Software under the original terms, but only in contexts that do\nnot assist or supplement the sold or licensed product.\n\nStudents and academics who are affiliated with research institutions may use\nthe Software under the original terms, but only in contexts that do not assist\nor supplement collaboration or affiliation with any military or law\nenforcement organization.", + "json": "woodruff-2002.json", + "yaml": "woodruff-2002.yml", + "html": "woodruff-2002.html", + "license": "woodruff-2002.LICENSE" + }, + { + "license_key": "wordnet", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wordnet", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software and database is being provided to you, the LICENSEE, by \nPrinceton University under the following license. By obtaining, using \nand/or copying this software and database, you agree that you have \nread, understood, and will comply with these terms and conditions.: \n \nPermission to use, copy, modify and distribute this software and \ndatabase and its documentation for any purpose and without fee or \nroyalty is hereby granted, provided that you agree to comply with \nthe following copyright notice and statements, including the disclaimer, \nand that the same appear on ALL copies of the software, database and \ndocumentation, including modifications that you make for internal \nuse or for distribution. \n \nWordNet Copyright by Princeton University. All rights reserved. \n \nTHIS SOFTWARE AND DATABASE IS PROVIDED \"AS IS\" AND PRINCETON \nUNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR \nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON \nUNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- \nABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE \nOF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT \nINFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR \nOTHER RIGHTS. \n \nThe name of Princeton University or Princeton may not be used in \nadvertising or publicity pertaining to distribution of the software \nand/or database. Title to copyright in this software, database and \nany associated documentation shall at all times remain with \nPrinceton University and LICENSEE agrees to preserve same.", + "json": "wordnet.json", + "yaml": "wordnet.yml", + "html": "wordnet.html", + "license": "wordnet.LICENSE" + }, + { + "license_key": "wrox", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wrox", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Many Wrox readers ask us \"Can I use code from Wrox books in my applications?\"\nHere's our answer: Yes, you may use code from any Wrox book published by Wiley &\nSons, Inc. in your application, software, or service under the following\nconditions and exceptions as noted:\n\n* Wrox Press, the authors, and distributors disclaim all warranties, express or\nimplied, including without limitation any warranties regarding fitness for a\nparticular purpose, merchantability and noninfringement. The entire risk as to\nthe results or performance of the code is assumed by you. In no event shall Wrox\nPress, the authors, or distributors be held responsible for any loss, damage, or\nother claim caused by using the executable code or other files.\n\n* If you use Wrox code in your application, you must acknowledge the author,\ntitle, and Wrox in your application, software, or service's documentation and\nprogram code itself as follows:\n\n* \"Portions of this code from Book Title, ISBN: ISBN, copyright John Wiley &\nSons, Inc.: year, by author, published under the Wrox imprint are used by\npermission of John Wiley & Sons, Inc All rights reserved. This book and the Wrox\ncode are available for purchase or download at www.wrox.com\"\n\n* You can find the correct ISBN and copyright year to fill in on the book's\ncopyright page\n\n* Your application, software, or service can be commercial or non-commercial,\nthat does not affect your use of the code or need to acknowledge us\n\n* Notwithstanding the foregoing, any specific code in a Wrox book that has a\nless restrictive license (GNU, Creative Commons, or other examples) or a more\nrestrictive license (copyright owned by the author or another company other than\nWiley & Sons, Inc.) is subject to the terms of that license or copyright and\nshould only be used according to those specific terms. You should check the\ncopyright page or look for a GNU, Creative Commons, or other license printed in\nthe book to know if other copyright or licenses apply.\n\n* You may not use Wrox code in any book, magazine article, web site article,\nblog post, or other publication without our express permission except as such\nuse falls under \"fair use\"\n\n* Please do not ask us if your use would fall under \"fair use.\" We can't answer\nthat question for you.\n\n* You may not redistribute our code by itself or in a collection with other code\napart from your application, software, or service.", + "json": "wrox.json", + "yaml": "wrox.yml", + "html": "wrox.html", + "license": "wrox.LICENSE" + }, + { + "license_key": "wrox-download", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-wrox-download", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "While we try to make it as open as possible, for commercial reasons we do have to assert a few simple Terms and Conditions. By downloading the code you signify that you agree with these. They are:\n\nWrox Press, the authors and distributors cannot be held responsible for any loss, damage or other claim caused by using the executable code or other files.\n\nYou may not redistribute the code to any other person, nor make it available on any Web site, forum newsgroup or other facility without prior permission from Wrox.\n\nYou may, however, use and modify the code in any way you wish, and incorporate it into any of your own projects.\n\nWrox cannot provide technical support for the code once it has been modified, or when used in any way other than described in the original book or article.", + "json": "wrox-download.json", + "yaml": "wrox-download.yml", + "html": "wrox-download.html", + "license": "wrox-download.LICENSE" + }, + { + "license_key": "ws-addressing-spec", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ws-addressing-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "WS Addressing Specification License \nWS/WS-Addressing.xsd\n\nCopyright \u00a9 2002-2004 BEA Systems Inc., International Business Machines\nCorporation, Microsoft Corporation, Inc, SAP AG, and Sun Microsystems, Inc.. All\nrights reserved.\n\nPermission to copy, display, perform, modify and distribute the WS-Addressing\nSpecification, and to authorize others to do the foregoing, in any medium\nwithout fee or royalty is hereby granted for the purpose of developing and\nevaluating the WS-Addressing Specification.\n\nBEA, IBM, Microsoft, SAP AG, and Sun Microsystems (collectively, the \"Authors\")\neach agree to grant a license to third parties, under royalty-free and otherwise\nreasonable, non-discriminatory terms and conditions, to their respective\nessential patent claims that they deem necessary to implement the WS-Addressing\nSpecification.\n\nDISCLAIMERS:\n\nTHE WS-Addressing Specification IS PROVIDED \"AS IS\", AND THE AUTHORS MAKE NO\nREPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED\nTO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-\nINFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE WS-Addressing Specification IS\nSUITABLE FOR ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT\nINFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\nTHE AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE WS-Addressing Specification\nOR THE PERFORMANCE OR IMPLEMENTATION OF THE CONTENTS THEREOF.\n\nYou may remove these disclaimers from your modified versions of the WS-\nAddressing Specification provided that you effectively disclaim all warranties\nand liabilities on behalf of all copyright holders in the copies of any such\nmodified versions you distribute.\n\nThe name and trademarks of the Authors may NOT be used in any manner, including\nadvertising or publicity pertaining to the WS-Addressing Specification or its\ncontents without specific, written prior permission. Title to copyright in the\nWS-Addressing Specification will at all times remain with the Authors.\n\nNo other rights are granted by implication, estoppel or otherwise.", + "json": "ws-addressing-spec.json", + "yaml": "ws-addressing-spec.yml", + "html": "ws-addressing-spec.html", + "license": "ws-addressing-spec.LICENSE" + }, + { + "license_key": "ws-policy-specification", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ws-policy-specification", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "WS-Policy Specification\n\nPermission to copy and display the WS-Policy Specification (the \"Specification\", which includes WSDL and schema documents), in any medium without fee or royalty is hereby granted, provided that you include the following on ALL copies of the WS-Policy Specification, that you make:\n\n1.\tA link or URL to the WS-Policy Specification at one of the Authors' websites\n2.\tThe copyright notice as shown in the WS-Policy Specification.\n\nBEA Systems, IBM, Microsoft, SAP, Sonic Software, and VeriSign (collectively, the \"Authors\") each agree to grant you a license, under royalty-free and otherwise reasonable, non-discriminatory terms and conditions, to their respective essential patent claims that they deem necessary to implement the WS-Policy Specification.\n\nTHE WS-POLICY SPECIFICATION IS PROVIDED \"AS IS,\" AND THE AUTHORS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE WS-POLICY SPECIFICATION ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\nTHE AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO ANY USE OR DISTRIBUTION OF THE WS-POLICY SPECIFICATION.\n\nThe name and trademarks of the Authors may NOT be used in any manner, including advertising or publicity pertaining to the WS-Policy Specification or its contents without specific, written prior permission. Title to copyright in the WS-Policy Specification will at all times remain with the Authors.\n\nNo other rights are granted by implication, estoppel or otherwise.", + "json": "ws-policy-specification.json", + "yaml": "ws-policy-specification.yml", + "html": "ws-policy-specification.html", + "license": "ws-policy-specification.LICENSE" + }, + { + "license_key": "ws-trust-specification", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ws-trust-specification", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "WS-Trust Specification\n\nPermission to copy and display the WS-Trust Specification (the \"Specification\", which \nincludes WSDL and schema documents), in any medium without fee or royalty \nis hereby granted, provided that you include the following on ALL copies of the \nSpecification, that you make:\n\n1. A link or URL to the Specification at one of the Authors' websites\n2. The copyright notice as shown in the Specification.\n\nIBM, Microsoft and Actional, BEA, Computer Associates, Layer 7, Netegrity, Oblix, \nOpenNetwork, Ping Identity, Reactivity, and Verisign (collectively, the \"Authors\") each \nagree to grant you a license, under royalty-free and otherwise reasonable, \nnon-discriminatory terms and conditions, to their respective essential patent claims \nthat they deem necessary to implement the Specification.\n\nTHE SPECIFICATION IS PROVIDED \"AS IS,\" AND THE AUTHORS MAKE \nNO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT \nNOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A \nPARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF \nTHE SPECIFICATION ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE \nIMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY \nPATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\nTHE AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, \nINCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO ANY \nUSE OR DISTRIBUTION OF THE SPECIFICATION.\n\nThe name and trademarks of the Authors may NOT be used in any manner, \nincluding advertising or publicity pertaining to the Specification or \nits contents without specific, written prior permission. Title to \ncopyright in the Specification will at all times remain with the Authors.\n\nNo other rights are granted by implication, estoppel or otherwise.", + "json": "ws-trust-specification.json", + "yaml": "ws-trust-specification.yml", + "html": "ws-trust-specification.html", + "license": "ws-trust-specification.LICENSE" + }, + { + "license_key": "wsuipa", + "category": "Permissive", + "spdx_license_key": "Wsuipa", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This file was added by Clea F. Rees on 2008/11/30 with the permission of Dean\nGuenther and pointers to this file were added to all source files.\n\nUnlimited copying and redistribution of each of the files is permitted as long\nas the file is not modified. Modifications, and redistribution of modified\nversions, are also permitted, but only if the resulting file is renamed.\n\nThe copyright holder is Washington State University. The original author of the\nfonts is Janene Winter. The primary contact (as of 2008) is Dean Guenther.", + "json": "wsuipa.json", + "yaml": "wsuipa.yml", + "html": "wsuipa.html", + "license": "wsuipa.LICENSE" + }, + { + "license_key": "wtfnmfpl-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wtfnmfpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE\n Version 1, October 2013\n\n Copyright (C) 2013 Ben McGinnes \n\n Everyone is permitted to copy and distribute verbatim or modified\n copies of this license document, and changing it is allowed as long\n as the name is changed.\n\n DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. You just DO WHAT THE FUCK YOU WANT TO.\n\n 1. Do not hold the author(s), creator(s), developer(s) or\n distributor(s) liable for anything that happens or goes wrong\n with your use of the work.", + "json": "wtfnmfpl-1.0.json", + "yaml": "wtfnmfpl-1.0.yml", + "html": "wtfnmfpl-1.0.html", + "license": "wtfnmfpl-1.0.LICENSE" + }, + { + "license_key": "wtfpl-1.0", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-wtfpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "do What The Fuck you want to Public License\n\nVersion 1.0, March 2000\nCopyright (C) 2000 Banlu Kemiyatorn (]d).\n136 Nives 7 Jangwattana 14 Laksi Bangkok\nEveryone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n\nOk, the purpose of this license is simple\nand you just\n\nDO WHAT THE FUCK YOU WANT TO.", + "json": "wtfpl-1.0.json", + "yaml": "wtfpl-1.0.yml", + "html": "wtfpl-1.0.html", + "license": "wtfpl-1.0.LICENSE" + }, + { + "license_key": "wtfpl-2.0", + "category": "Public Domain", + "spdx_license_key": "WTFPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE\n Version 2, December 2004\n\n Copyright (C) 2004 Sam Hocevar\n 14 rue de Plaisance, 75014 Paris, France\n Everyone is permitted to copy and distribute verbatim or modified\n copies of this license document, and changing it is allowed as long\n as the name is changed.\n\n DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. You just DO WHAT THE FUCK YOU WANT TO.", + "json": "wtfpl-2.0.json", + "yaml": "wtfpl-2.0.yml", + "html": "wtfpl-2.0.html", + "license": "wtfpl-2.0.LICENSE" + }, + { + "license_key": "wthpl-1.0", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-wthpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " DO WHAT THE HELL YOU WANT TO PUBLIC LICENSE\n Version 1.0.0, October 2014\n\n DO WHAT THE HELL YOU WANT TO PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. You just DO WHAT THE HELL YOU WANT TO.", + "json": "wthpl-1.0.json", + "yaml": "wthpl-1.0.yml", + "html": "wthpl-1.0.html", + "license": "wthpl-1.0.LICENSE" + }, + { + "license_key": "wxwidgets", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wxwidgets", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "wxWidgets Licence\n\nCopyright (C) 1997 Julian Smart, Markus Holzem\n\nPreamble\n\nThis licence is intended to protect wxWidgets, its developers, and its users, so\nthat the considerable investment it represents is not abused.\n\nUnlike the wxWidgets licence, you as a user are not obliged to distribute\nwxWidgets source code with your products. However, you are prevented from\nselling the code without permission from the authors, or denying others the\nrights to use or distribute wxWidgets in the way intended.\n\nThe wxWidgets Licence establishes the copyright for the code and related\nmaterial, and it gives you legal permission to copy, distribute and/or modify\nthe library. It also asserts that no warranty is given by the authors for this\nor derived code.\n\nFinally, the licence specifies that any patent involving wxWidgets, must be\nlicenced for everyone's free use.\n\n wxWidgets Licence\n\nTerms and conditions for copying, distribution and modification\n\n1. This Licence Agreement applies to any software library which contains a\nnotice placed by the copyright holder or other authorized party saying it may be\ndistributed under the terms of this wxWidgets Licence (also called \"this\nLicence\"). Each licencee is addressed as \"you\".\n\nA \"library\" means a collection of software functions and/or data prepared so as\nto be conveniently linked with application programs (which use some of those\nfunctions and data) to form executables.\n\nThe \"Library\", below, refers to any such software library or work which has been\ndistributed under these terms. A \"work based on the Library\" means either the\nLibrary or any derivative work under copyright law: that is to say, a work\ncontaining the Library or a portion of it, either verbatim or with modifications\nand/or translated straightforwardly into another language. (Hereinafter,\ntranslation is included without limitation in the term \"modification\".)\n\n\"Source code\" for a work means the preferred form of the work for making\nmodifications to it. For a library, complete source code means all the source\ncode for all modules it contains, plus any associated interface definition\nfiles, plus the scripts used to control compilation and installation of the\nlibrary.\n\nActivities other than copying, distribution and modification are not covered by\nthis Licence; they are outside its scope. The act of running a program using the\nLibrary is not restricted, and output from such a program is covered only if its\ncontents constitute a work based on the Library (independent of the use of the\nLibrary in a tool for writing it). Whether that is true depends on what the\nLibrary does and what the program that uses the Library does.\n\n2. You may copy and distribute verbatim copies of the Library's complete source\ncode as you receive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice and\ndisclaimer of warranty; keep intact all the notices that refer to this Licence\nand to the absence of any warranty; and distribute a copy of this Licence along\nwith the Library.\n\nYou may charge a fee for the physical act of transferring a copy, and you may at\nyour option offer warranty protection in exchange for a fee.\n\n3. You may modify your copy or copies of the Library or any portion of it, thus\nforming a work based on the Library, and copy and distribute such modifications\nor work under the terms of Section 1 above, provided that you cause the files\nmodified to carry prominent notices stating that you changed the files and the\ndate of any change. With agreement from the authors of wxWidgets, you may charge\nfor value added to the Library, for example, a commercially supported version,\nor a port to a new platform. It is expected that collaboration between such\ncommercial interests and the free wxWidgets community will yield benefits to\nboth parties, since wxWidgets represents a substantial investment of time and\neffort. It is not in the spirit of this agreement that commercial exploitation\nof wxWidgets should in any way detract from the free version.\n\n4. You may copy and distribute the Library in object code or derived library\nform under the terms of Sections 1 and 2 above provided that you accompany it\nwith the complete corresponding machine-readable source code.\n\nIf distribution of object code is made by offering access to copy from a\ndesignated place, then offering equivalent access to copy the source code from\nthe same place satisfies the requirement to distribute the source code, even\nthough third parties are not compelled to copy the source along with the object\ncode.\n\n5. You may not copy, modify, sublicence, link with, or distribute the Library\nexcept as expressly provided under this Licence. Any attempt otherwise to copy,\nmodify, sublicence, link with, or distribute the Library is void, and will\nautomatically terminate your rights under this Licence. However, parties who\nhave received copies, or rights, from you under this Licence will not have their\nlicences terminated so long as such parties remain in full compliance.\n\n6. You are not required to accept this Licence, since you have not signed it.\nHowever, nothing else grants you permission to modify or distribute the Library\nor its derivative works. These actions are prohibited by law if you do not\naccept this Licence. Therefore, by modifying or distributing the Library (or any\nwork based on the Library), you indicate your acceptance of this Licence to do\nso, and all its terms and conditions for copying, distributing or modifying the\nLibrary or works based on it.\n\n7. Each time you redistribute the Library (or any work based on the Library),\nthe recipient automatically receives a licence from the original licensor to\ncopy, distribute, link with or modify the Library subject to these terms and\nconditions. You may not impose any further restrictions on the recipients'\nexercise of the rights granted herein. You are not responsible for enforcing\ncompliance by third parties to this Licence.\n\n8. If, as a consequence of a court judgment or allegation of patent infringement\nor for any other reason (not limited to patent issues), conditions are imposed\non you (whether by court order, agreement or otherwise) that contradict the\nconditions of this Licence, they do not excuse you from the conditions of this\nLicence. If you cannot distribute so as to satisfy simultaneously your\nobligations under this Licence and any other pertinent obligations, then as a\nconsequence you may not distribute the Library at all. For example, if a patent\nlicence would not permit royalty-free redistribution of the Library by all those\nwho receive copies directly or indirectly through you, then the only way you\ncould satisfy both it and this Licence would be to refrain entirely from\ndistribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply, and\nthe section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any patents or\nother property right claims or to contest validity of any such claims; this\nsection has the sole purpose of protecting the integrity of the free software\ndistribution system which is implemented by public licence practices. Many\npeople have made generous contributions to the wide range of software\ndistributed through that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing to\ndistribute software through any other system and a licencee cannot impose that\nchoice.\n\nThis section is intended to make thoroughly clear what is believed to be a\nconsequence of the rest of this Licence.\n\n9. If the distribution and/or use of the Library is restricted in certain\ncountries either by patents or by copyrighted interfaces, the original copyright\nholder who places the Library under this Licence may add an explicit\ngeographical distribution limitation excluding those countries, so that\ndistribution is permitted only in or among countries not thus excluded. In such\ncase, this Licence incorporates the limitation as if written in the body of this\nLicence.\n\n10. The authors of wxWidgets may publish revised and/or new versions of the\nwxWidgets Licence from time to time. Such new versions will be similar in spirit\nto the present version, but may differ in detail to address new problems or\nconcerns.\n\nEach version is given a distinguishing version number. If the Library specifies\na version number of this Licence which applies to it and \"any later version\",\nyou have the option of following the terms and conditions either of that version\nor of any later version published by the wxWidgets authors. If the Library does\nnot specify a licence version number, you may choose any version ever published\nby the wxWidgets authors.\n\n11. If you wish to incorporate parts of the Library into other free programs\nwhose distribution conditions are incompatible with these, write to the program\nauthor to ask for permission. For software which is copyrighted by the wxWidgets\nauthors, write to the wxWidgets authors. Our decision will be guided by the two\ngoals of preserving the free status of all derivatives of our free software and\nof promoting the sharing and reuse of software generally.\n\nNO WARRANTY\n\n12. BECAUSE THE LIBRARY IS LICENCED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE\nLIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED\nIN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY \"AS\nIS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT\nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n13. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL\nANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE\nLIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL,\nSPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY\nTO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF\nTHE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER\nPARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nEND OF TERMS AND CONDITIONS\n\nHow to Apply These Terms to Your New Libraries\n\nTo apply these terms, attach the following notices to the library. It is safest\nto attach them to the start of each source file to most effectively convey the\nexclusion of warranty; and each file should have at least the \"copyright\" line\nand a pointer to where the full notice is found.\n\n\n\nCopyright (C) \n\nThis library is free software; you can redistribute it and/or\n\nmodify it under the terms of the wxWidgets Licence; either\n\nversion 2 of the Licence, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the wxWidgets Licence for more details.\n\nYou should have received a copy of the wxWidgets Licence along with this\nlibrary; if not, write to julian@wxwidgets.org.\n\nYou should also get your employer (if you work as a programmer) or your school,\nif any, to sign a \"copyright disclaimer\" for the library, if necessary. Here is\na sample; alter the names:\n\nYoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a\nlibrary for tweaking knobs) written by James Random Hacker.\n\n, 1 April 1990\n\nTy Coon, President of Vice", + "json": "wxwidgets.json", + "yaml": "wxwidgets.yml", + "html": "wxwidgets.html", + "license": "wxwidgets.LICENSE" + }, + { + "license_key": "wxwindows", + "category": "Copyleft Limited", + "spdx_license_key": "wxWindows", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": " wxWindows Library Licence, Version 3.1\n ======================================\n\n Copyright (C) 1998-2005 Julian Smart, Robert Roebling et al\n\n Everyone is permitted to copy and distribute verbatim copies\n of this licence document, but changing it is not allowed.\n\n WXWINDOWS LIBRARY LICENCE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n \n This library is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public Licence as published by\n the Free Software Foundation; either version 2 of the Licence, or (at\n your option) any later version.\n \n This library is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library\n General Public Licence for more details.\n\n You should have received a copy of the GNU Library General Public Licence\n along with this software, usually in a file named COPYING.LIB. If not,\n write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,\n Boston, MA 02111-1307 USA.\n\n EXCEPTION NOTICE\n\n 1. As a special exception, the copyright holders of this library give\n permission for additional uses of the text contained in this release of\n the library as licenced under the wxWindows Library Licence, applying\n either version 3.1 of the Licence, or (at your option) any later version of\n the Licence as published by the copyright holders of version\n 3.1 of the Licence document.\n\n 2. The exception is that you may use, copy, link, modify and distribute\n under your own terms, binary object code versions of works based\n on the Library.\n\n 3. If you copy code from files distributed under the terms of the GNU\n General Public Licence or the GNU Library General Public Licence into a\n copy of this library, as this licence permits, the exception does not\n apply to the code that you add in this way. To avoid misleading anyone as\n to the status of such modified files, you must delete this exception\n notice from such code and/or adjust the licensing conditions notice\n accordingly.\n\n 4. If you write modifications of your own for this library, it is your\n choice whether to permit this exception to apply to your modifications. \n If you do not wish that, you must delete the exception notice from such\n code and/or adjust the licensing conditions notice accordingly.", + "json": "wxwindows.json", + "yaml": "wxwindows.yml", + "html": "wxwindows.html", + "license": "wxwindows.LICENSE" + }, + { + "license_key": "wxwindows-exception-3.1", + "category": "Copyleft Limited", + "spdx_license_key": "WxWindows-exception-3.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "EXCEPTION NOTICE\n\n1. As a special exception, the copyright holders of this library give\npermission for additional uses of the text contained in this release of\nthe library as licenced under the wxWindows Library Licence, applying\neither version 3.1 of the Licence, or (at your option) any later version of\nthe Licence as published by the copyright holders of version\n3.1 of the Licence document.\n\n2. The exception is that you may use, copy, link, modify and distribute\nunder your own terms, binary object code versions of works based\non the Library.\n\n3. If you copy code from files distributed under the terms of the GNU\nGeneral Public Licence or the GNU Library General Public Licence into a\ncopy of this library, as this licence permits, the exception does not\napply to the code that you add in this way. To avoid misleading anyone as\nto the status of such modified files, you must delete this exception\nnotice from such code and/or adjust the licensing conditions notice\naccordingly.\n\n4. If you write modifications of your own for this library, it is your\nchoice whether to permit this exception to apply to your modifications.\nIf you do not wish that, you must delete the exception notice from such\ncode and/or adjust the licensing conditions notice accordingly.", + "json": "wxwindows-exception-3.1.json", + "yaml": "wxwindows-exception-3.1.yml", + "html": "wxwindows-exception-3.1.html", + "license": "wxwindows-exception-3.1.LICENSE" + }, + { + "license_key": "wxwindows-r-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-wxwindows-r-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "wxWindows Restricted Licence, Version 3\n =======================================\n\n Copyright (C) 1998 Julian Smart, Robert Roebling [, ...]\n\n Everyone is permitted to copy and distribute verbatim copies\n of this licence document, but changing it is not allowed.\n\n WXWINDOWS RESTRICTED LICENCE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n \n This library is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public Licence as published by\n the Free Software Foundation; either version 2 of the Licence, or (at\n your option) any later version.\n \n This library is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library\n General Public Licence for more details.\n\n You should have received a copy of the GNU Library General Public Licence\n along with this software, usually in a file named COPYING.LIB. If not,\n write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,\n Boston, MA 02111-1307 USA.\n\n EXCEPTION NOTICE\n\n 1. As a special exception, the copyright holders of this library give\n permission for additional uses of the text contained in this release of\n the library as licenced under the wxWindows Restricted Licence, applying\n either version 3 of the Licence, or (at your option) any later version of\n the Licence as published by the copyright holders of version\n 3 of the Licence document.\n\n 2. The exception is that you may modify your copy or copies of the Library\n or any portion of it, thus forming a work based on the Library, without\n any restrictions placed on such modifications, and create binary object\n code versions of such works based on the Library, and you may use, copy,\n link, modify and distribute such binary object code versions of works\n based on the Library as if licenced to you under the wxWindows\n Unrestricted Licence; either version 3 or (at your option) any later\n version.\n\n 3. If you copy code from files distributed under the terms of the GNU\n General Public Licence or the GNU Library General Public Licence into a\n copy of this library, as this licence permits, the exception does not\n apply to the code that you add in this way. To avoid misleading anyone as\n to the status of such modified files, you must delete this exception\n notice from such code and/or adjust the licensing conditions notice\n accordingly.\n\n 4. If you write modifications of your own for this library, it is your\n choice whether to permit this exception to apply to your modifications. \n If you do not wish that, you must delete the exception notice from such\n code and/or adjust the licensing conditions notice accordingly.", + "json": "wxwindows-r-3.0.json", + "yaml": "wxwindows-r-3.0.yml", + "html": "wxwindows-r-3.0.html", + "license": "wxwindows-r-3.0.LICENSE" + }, + { + "license_key": "wxwindows-u-3.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wxwindows-u-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "wxWindows Unrestricted Licence, Version 3\n=========================================\n\n Copyright (c) 1997 Julian Smart, Robert Roebling, [...]\n\n Everyone is permitted to copy and distribute verbatim copies\n of this licence document, but changing it is not allowed.\n\n WXWINDOWS UNRESTRICTED LICENCE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n Permission to use, copy, modify, and distribute this source code text,\n this binary library, or this piece of documentation for any purpose is\n hereby granted without fee, provided that the above copyright notice,\n author statement and this permission notice appear in all copies of this\n software and related documentation.\n\n BECAUSE THIS SOURCE CODE TEXT, THIS BINARY LIBRARY, OR THIS PIECE OF\n DOCUMENTATION IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR IT, TO\n THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN\n WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THIS SOURCE\n CODE TEXT, THIS BINARY LIBRARY OR THIS PIECE OF DOCUMENTATION \"AS IS\"\n WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT\n NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE\n OF THE SOURCE CODE TEXT, THE BINARY LIBRARY OR THE PIECE OF DOCUMENTATION\n IS WITH YOU. SHOULD THE SOURCE CODE TEXT, THE BINARY LIBRARY OR THE PIECE\n OF DOCUMENTATION PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY\n SERVICING, REPAIR OR CORRECTION.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL\n ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\n REDISTRIBUTE THE SOURCE CODE TEXT, THE BINARY LIBRARY, OR THE PIECE OF\n DOCUMENTATION AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING\n ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF\n THE USE OR INABILITY TO USE THE SOURCE CODE TEXT, THE BINARY LIBRARY OR\n THE PIECE OF DOCUMENTATION (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR\n DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES\n OR A FAILURE OF A PROGRAM BASED ON THE SOURCE CODE TEXT, THE BINARY\n LIBRARY OR ON THE PIECE OF DOCUMENTATION TO OPERATE WITH ANY OTHER\n PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGES.", + "json": "wxwindows-u-3.0.json", + "yaml": "wxwindows-u-3.0.yml", + "html": "wxwindows-u-3.0.html", + "license": "wxwindows-u-3.0.LICENSE" + }, + { + "license_key": "x11", + "category": "Permissive", + "spdx_license_key": "ICU", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy of this\nsoftware and associated documentation files (the \"Software\"), to deal in the Software\nwithout restriction, including without limitation the rights to use, copy, modify,\nmerge, publish, distribute, and/or sell copies of the Software, and to permit persons\nto whom the Software is furnished to do so, provided that the above copyright\nnotice(s) and this permission notice appear in all copies of the Software and that\nboth the above copyright notice(s) and this permission notice appear in supporting\ndocumentation.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\nINCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY\nSPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\nSOFTWARE.\n\nExcept as contained in this notice, the name of a copyright holder shall not be used\nin advertising or otherwise to promote the sale, use or other dealings in this\nSoftware without prior written authorization of the copyright holder.", + "json": "x11.json", + "yaml": "x11.yml", + "html": "x11.html", + "license": "x11.LICENSE" + }, + { + "license_key": "x11-acer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-acer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and/or distribute this software for\nany purpose with or without fee is hereby granted, provided that the\nabove copyright notice and this permission notice appear in all\ncopies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL\nWARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE\nAUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\nDAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\nPROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTUOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.", + "json": "x11-acer.json", + "yaml": "x11-acer.yml", + "html": "x11-acer.html", + "license": "x11-acer.LICENSE" + }, + { + "license_key": "x11-adobe", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-adobe", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, distribute, and sublicense this software and\nits documentation for any purpose and without fee is hereby granted, provided\nthat the above copyright notices appear in all copies and that both those\ncopyright notices and this permission notice appear in supporting documentation\nand that the name of Adobe Systems Incorporated not be used in advertising or\npublicity pertaining to distribution of the software without specific, written\nprior permission. No trademark license to use the Adobe trademarks is hereby\ngranted. If the Adobe trademark \"Display PostScript\"(tm) is used to describe\nthis software, its functionality or for any other purpose, such use shall be\nlimited to a statement that this software works in conjunction with the Display\nPostScript system. Proper trademark attribution to reflect Adobe's ownership of\nthe trademark shall be given whenever any such reference to the Display\nPostScript system is made.\n\nADOBE MAKES NO REPRESENTATIONS ABOUT THE SUITABILITY OF THE SOFTWARE FOR ANY\nPURPOSE. IT IS PROVIDED \"AS IS\" WITHOUT EXPRESS OR IMPLIED WARRANTY. ADOBE\nDISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-\nINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL ADOBE BE LIABLE TO YOU OR\nANY OTHER PARTY FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY\nDAMAGES WHATSOEVER WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE, STRICT\nLIABILITY OR ANY OTHER ACTION ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE. ADOBE WILL NOT PROVIDE ANY TRAINING OR OTHER\nSUPPORT FOR THE SOFTWARE.\n\nAdobe, PostScript, and Display PostScript are trademarks of Adobe Systems\nIncorporated which may be registered in certain jurisdictions", + "json": "x11-adobe.json", + "yaml": "x11-adobe.yml", + "html": "x11-adobe.html", + "license": "x11-adobe.LICENSE" + }, + { + "license_key": "x11-adobe-dec", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-adobe-dec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Adobe is a trademark of Adobe Systems Incorporated which may be registered in\ncertain jurisdictions. Permission to use these trademarks is hereby granted only\nin association with the images described in this file.\n\nPermission to use, copy, modify, distribute and sell this software and its\ndocumentation for any purpose and without fee is hereby granted, provided that\nthe above copyright notices appear in all copies and that both those copyright\nnotices and this permission notice appear in supporting documentation, and that\nthe names of Adobe Systems and Digital Equipment Corporation not be used in\nadvertising or publicity pertaining to distribution of the software without\nspecific, written prior permission. Adobe Systems and Digital Equipment\nCorporation make no representations about the suitability of this software for\nany purpose. It is provided \"as is\" without express or implied warranty.", + "json": "x11-adobe-dec.json", + "yaml": "x11-adobe-dec.yml", + "html": "x11-adobe-dec.html", + "license": "x11-adobe-dec.LICENSE" + }, + { + "license_key": "x11-bitstream", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-bitstream", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The names \"Bitstream\" and \"Charter\" are registered trademarks of\nBitstream, Inc. Permission to use these trademarks is hereby\ngranted only in association with the images described in this file.\n\nPermission to use, copy, modify, and distribute this software and\nits documentation for any purpose and without fee is hereby\ngranted, provided that the above copyright notice appear in all\ncopies and that both that copyright notice and this permission\nnotice appear in supporting documentation, and that the name of\nBitstream not be used in advertising or publicity pertaining to\ndistribution of the software without specific, written prior\npermission. Bitstream makes no representations about the\nsuitability of this software for any purpose. It is provided \"as\nis\" without express or implied warranty.\n\nBITSTREAM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\nINCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN\nNO EVENT SHALL BITSTREAM BE LIABLE FOR ANY SPECIAL, INDIRECT OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,\nNEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION\nWITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n(c) Copyright 1989-1992, Bitstream Inc., Cambridge, MA.\n\nYou are hereby granted permission under all Bitstream propriety rights to use,\ncopy, modify, sublicense, sell, and redistribute the 4 Bitstream Charter (r)\nType 1 outline fonts and the 4 Courier Type 1 outline fonts for any purpose and\nwithout restriction; provided, that this notice is left intact on all copies of\nsuch fonts and that Bitstream's trademark is acknowledged as shown below on all\nunmodified copies of the 4 Charter Type 1 fonts.\n\nBITSTREAM CHARTER is a registered trademark of Bitstream Inc.", + "json": "x11-bitstream.json", + "yaml": "x11-bitstream.yml", + "html": "x11-bitstream.html", + "license": "x11-bitstream.LICENSE" + }, + { + "license_key": "x11-dec1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-dec1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose and without fee is hereby granted, provided that\nthe above copyright notice appear in all copies and that both that copyright\nnotice and this permission notice appear in supporting documentation, and that\nthe name of the copyright holders not be used in advertising or publicity\npertaining to distribution of the software without specific, written prior\npermission.\n\nTHE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\nINCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT\nSHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL\nDAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING\nOUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "x11-dec1.json", + "yaml": "x11-dec1.yml", + "html": "x11-dec1.html", + "license": "x11-dec1.LICENSE" + }, + { + "license_key": "x11-dec2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-dec2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE AND SHOULD\nNOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT CORPORATION. DIGITAL MAKES\nNO REPRESENTATIONS ABOUT THE SUITABILITY OF THIS SOFTWARE FOR ANY PURPOSE. IT IS\nSUPPLIED \"AS IS\" WITHOUT EXPRESS OR IMPLIED WARRANTY.\n\nIF THE SOFTWARE IS MODIFIED IN A MANNER CREATING DERIVATIVE COPYRIGHT RIGHTS,\nAPPROPRIATE LEGENDS MAY BE PLACED ON THE DERIVATIVE WORK IN ADDITION TO THAT SET\nFORTH ABOVE.\n\nPermission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose and without fee is hereby granted, provided that\nthe above copyright notice appear in all copies and that both that copyright\nnotice and this permission notice appear in supporting documentation, and that\nthe name of Digital Equipment Corporation not be used in advertising or\npublicity pertaining to distribution of the software without specific, written\nprior permission.", + "json": "x11-dec2.json", + "yaml": "x11-dec2.yml", + "html": "x11-dec2.html", + "license": "x11-dec2.LICENSE" + }, + { + "license_key": "x11-doc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-doc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, distribute, and sell this\ndocumentation for any purpose is hereby granted without fee,\nprovided that the above copyright notice and this permission\nnotice appear in all copies. The author makes no \nrepresentations about the suitability for any purpose\nof the information in this document. This documentation is\nprovided ``as is'' without express or implied warranty.", + "json": "x11-doc.json", + "yaml": "x11-doc.yml", + "html": "x11-doc.html", + "license": "x11-doc.LICENSE" + }, + { + "license_key": "x11-dsc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-dsc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software is copyrighted by DSC Technologies and private individual\ncontributors. The copyright holder is specifically listed in the header of each\nfile. The following terms apply to all files associated with the software unless\nexplicitly disclaimed in individual files by private contributors.\n\nCopyright 1997 DSC Technologies Corporation\n\nPermission to use, copy, modify, distribute and license this software and its\ndocumentation for any purpose, and without fee or written agreement with DSC, is\nhereby granted, provided that the above copyright notice appears in all copies\nand that both the copyright notice and warranty disclaimer below appear in\nsupporting documentation, and that the names of DSC Technologies Corporation or\nDSC Communications Corporation not be used in advertising or publicity\npertaining to the software without specific, written prior permission.\n\nDSC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS, AND NON-INFRINGEMENT. THIS SOFTWARE\nIS PROVIDED ON AN \"AS IS\" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE NO\nOBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR\nMODIFICATIONS. IN NO EVENT SHALL DSC BE LIABLE FOR ANY SPECIAL, INDIRECT OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA\nOR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTUOUS\nACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\nSOFTWARE.\n\nRESTRICTED RIGHTS: Use, duplication or disclosure by the government is subject\nto the restrictions as set forth in subparagraph (c) (1) (ii) of the Rights in\nTechnical Data and Computer Software Clause as DFARS 252.227-7013 and FAR\n52.227-19.", + "json": "x11-dsc.json", + "yaml": "x11-dsc.yml", + "html": "x11-dsc.html", + "license": "x11-dsc.LICENSE" + }, + { + "license_key": "x11-fsf", + "category": "Permissive", + "spdx_license_key": "X11-distribute-modifications-variant", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-fsf" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, distribute with modifications, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR\nTHE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nExcept as contained in this notice, the name(s) of the above copyright\nholders shall not be used in advertising or otherwise to promote the\nsale, use or other dealings in this Software without prior written\nauthorization.", + "json": "x11-fsf.json", + "yaml": "x11-fsf.yml", + "html": "x11-fsf.html", + "license": "x11-fsf.LICENSE" + }, + { + "license_key": "x11-hanson", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-hanson", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software for any\npurpose, subject to the provisions described below, without fee is\nhereby granted, provided that this entire notice is included in all\ncopies of any software that is or includes a copy or modification of\nthis software and in all copies of the supporting documentation for\nsuch software.\n\nTHIS SOFTWARE IS BEING PROVIDED \"AS IS\", WITHOUT ANY EXPRESS OR IMPLIED\nWARRANTY. IN PARTICULAR, THE AUTHOR DOES MAKE ANY REPRESENTATION OR\nWARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR\nITS FITNESS FOR ANY PARTICULAR PURPOSE.", + "json": "x11-hanson.json", + "yaml": "x11-hanson.yml", + "html": "x11-hanson.html", + "license": "x11-hanson.LICENSE" + }, + { + "license_key": "x11-ibm", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-x11-ibm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "License to use, copy, modify, and distribute this software and its documentation\nfor any purpose and without fee is hereby granted, provided that licensee\nprovides a license to IBM, Corp. to use, copy, modify, and distribute derivative\nworks and their documentation for any purpose and without fee, that the above\ncopyright notice appear in all copies and that both that copyright notice and\nthis permission notice appear in supporting documentation, and that the name of\nIBM not be used in advertising or publicity pertaining to distribution of the\nsoftware without specific, written prior permission.\n\nIBM PROVIDES THIS SOFTWARE \"AS IS\", WITHOUT ANY WARRANTIES OF ANY KIND, EITHER\nEXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO ANY IMPLIED WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT OF THIRD\nPARTY RIGHTS. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE,\nINCLUDING ANY DUTY TO SUPPORT OR MAINTAIN, BELONGS TO THE LICENSEE. SHOULD ANY\nPORTION OF THE SOFTWARE PROVE DEFECTIVE, THE LICENSEE (NOT IBM) ASSUMES THE\nENTIRE COST OF ALL SERVICING, REPAIR AND CORRECTION. IN NO EVENT SHALL IBM BE\nLIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF\nCONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION\nWITH THE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "x11-ibm.json", + "yaml": "x11-ibm.yml", + "html": "x11-ibm.html", + "license": "x11-ibm.LICENSE" + }, + { + "license_key": "x11-keith-packard", + "category": "Permissive", + "spdx_license_key": "HPND-sell-variant", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, distribute, and sell this software and its\ndocumentation for any purpose is hereby granted without fee, provided that the\nabove copyright notice appears in all copies, and that both that the copyright\nnotice and this permission notice appear in supporting documentation , and that\nthe name of copyright holder or related entities not be used in advertising\nor publicity pertaining to distribution of the software without specific,\nwritten prior permission.\n\ncopyright holder makes no representations about the suitability of this software\nfor any purpose. It is provided \"as is\" without express or implied warranty.\n\ncopyright holder DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\nINCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\nIN NO EVENT SHALL copyright holder BE LIABLE FOR ANY SPECIAL, INDIRECT OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,\nDATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\nACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "x11-keith-packard.json", + "yaml": "x11-keith-packard.yml", + "html": "x11-keith-packard.html", + "license": "x11-keith-packard.LICENSE" + }, + { + "license_key": "x11-lucent", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-lucent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software for any\npurpose without fee is hereby granted, provided that this entire notice\nis included in all copies of any software which is or includes a copy\nor modification of this software and in all copies of the supporting\ndocumentation for such software.\n\nTHIS SOFTWARE IS BEING PROVIDED \"AS IS\", WITHOUT ANY EXPRESS OR IMPLIED\nWARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY\nREPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY\nOF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.", + "json": "x11-lucent.json", + "yaml": "x11-lucent.yml", + "html": "x11-lucent.html", + "license": "x11-lucent.LICENSE" + }, + { + "license_key": "x11-lucent-variant", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-lucent-variant", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "* Permission to use, copy, modify, and distribute this software for any\n * purpose without fee is hereby granted, provided that this entire notice\n * is included in all copies of any software which is or includes a copy\n * or modification of this software.\n *\n * THIS SOFTWARE IS BEING PROVIDED \"AS IS\", WITHOUT ANY EXPRESS OR IMPLIED\n * WARRANTY. IN PARTICULAR, NEITHER THE AUTHORS NOR LUCENT TECHNOLOGIES MAKE ANY\n * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY\n * OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.", + "json": "x11-lucent-variant.json", + "yaml": "x11-lucent-variant.yml", + "html": "x11-lucent-variant.html", + "license": "x11-lucent-variant.LICENSE" + }, + { + "license_key": "x11-oar", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-oar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software for any\npurpose without fee is hereby granted, provided that this entire notice\nis included in all copies of any software which is or includes a copy\nor modification of this software.\n\nTHIS SOFTWARE IS BEING PROVIDED \"AS IS\", WITHOUT ANY EXPRESS OR IMPLIED\nWARRANTY. IN PARTICULAR, THE AUTHOR MAKES NO REPRESENTATION\nOR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS\nSOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.", + "json": "x11-oar.json", + "yaml": "x11-oar.yml", + "html": "x11-oar.html", + "license": "x11-oar.LICENSE" + }, + { + "license_key": "x11-opengl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-opengl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software for any purpose\nand without fee is hereby granted, provided that the above copyright notice\nappear in all copies and that both the copyright notice and this permission\nnotice appear in supporting documentation, and that the name of Silicon\nGraphics, Inc. not be used in advertising or publicity pertaining to\ndistribution of the software without specific, written prior permission.\n\nTHE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU \"AS-IS\" AND WITHOUT\nWARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT\nLIMITATION, ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.\nIN NO EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY\nDIRECT, SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR\nANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, LOSS OF PROFIT, LOSS OF\nUSE, SAVINGS OR REVENUE, OR THE CLAIMS OF THIRD PARTIES, WHETHER OR NOT SILICON\nGRAPHICS, INC. HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED\nAND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE\nPOSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.\n\nUS Government Users Restricted Rights\n\nUse, duplication, or disclosure by the Government is subject to restrictions set\nforth in FAR 52.227.19(c)(2) or subparagraph (c)(1)(ii) of the Rights in\nTechnical Data and Computer Software clause at DFARS 252.227-7013 and/or in\nsimilar or successor clauses in the FAR or the DOD or NASA FAR Supplement.\nUnpublished-- rights reserved under the copyright laws of the United States.\nContractor/manufacturer is Silicon Graphics, Inc., 2011 N. Shoreline Blvd.,\nMountain View, CA 94039-7311.\n\nOpenGL(TM) is a trademark of Silicon Graphics, Inc.", + "json": "x11-opengl.json", + "yaml": "x11-opengl.yml", + "html": "x11-opengl.html", + "license": "x11-opengl.LICENSE" + }, + { + "license_key": "x11-opengroup", + "category": "Permissive", + "spdx_license_key": "MIT-open-group", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-opengroup" + ], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, distribute, and sell this software and\nits documentation for any purpose is hereby granted without fee,\nprovided that the above copyright notice appear in all copies and that\nboth that copyright notice and this permission notice appear in\nsupporting documentation.\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR\nTHE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nExcept as contained in this notice, the name of copyright holders\nshall not be used in advertising or otherwise to promote the sale, use\nor other dealings in this Software without prior written authorization\nfrom the copyright holders.", + "json": "x11-opengroup.json", + "yaml": "x11-opengroup.yml", + "html": "x11-opengroup.html", + "license": "x11-opengroup.LICENSE" + }, + { + "license_key": "x11-quarterdeck", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-quarterdeck", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, distribute, and sell this software and software and its\ndocumentation for any purpose is hereby granted without fee, provided that the\nabove copyright notice appear in all copies and that both that copyright\nnotice and this permission notice appear in supporting documentation, and that\nthe name Quarterdeck Office Systems, Inc. not be used in advertising\nor publicity pertaining to distribution of this software without specific,\nwritten prior permission.\n\nTHIS SOFTWARE IS PROVIDED `AS-IS'.\n\nQUARTERDECK OFFICE SYSTEMS, INC., DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\nINCLUDING WITHOUT LIMITATION ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT SHALL\nQUARTERDECK OFFICE SYSTEMS, INC.,\nBE LIABLE FOR ANY DAMAGES WHATSOEVER, INCLUDING SPECIAL, INCIDENTAL OR CONSEQUENTIAL\nDAMAGES, INCLUDING LOSS OF USE, DATA, OR PROFITS, EVEN IF ADVISED OF THE\nPOSSIBILITY THEREOF, AND REGARDLESS OF WHETHER IN AN ACTION IN CONTRACT, TORT OR\nNEGLIGENCE, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\nSOFTWARE.", + "json": "x11-quarterdeck.json", + "yaml": "x11-quarterdeck.yml", + "html": "x11-quarterdeck.html", + "license": "x11-quarterdeck.LICENSE" + }, + { + "license_key": "x11-r75", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Permission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the \"Software\"),\nto deal in the Software without restriction, including without limitation\nthe rights to use, copy, modify, merge, publish, distribute, sublicense,\nand/or sell copies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice (including the next\nparagraph) shall be included in all copies or substantial portions of the\nSoftware.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\nTHE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.", + "json": "x11-r75.json", + "yaml": "x11-r75.yml", + "html": "x11-r75.html", + "license": "x11-r75.LICENSE" + }, + { + "license_key": "x11-realmode", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-realmode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, distribute, and sell this software and its\ndocumentation for any purpose is hereby granted without fee, provided that the\nabove copyright notice appear in all copies and that both that copyright notice\nand this permission notice appear in supporting documentation, and that the name\nof the authors not be used in advertising or publicity pertaining to\ndistribution of the software without specific, written prior permission.\n\nThe authors makes no representations about the suitability of this software\nfor any purpose. It is provided \"as is\" without express or implied warranty.\n\nTHE AUTHORS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL THE AUTHORS\nBE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF\nCONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION\nWITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense information\n\nThe x86emu library is under a BSD style license, compatible with the XFree86 1.0\nand X licenses used by XFree86. The original x86emu libraries were under the GNU\nGeneral Public License. Due to license incompatibilities between the GPL and the\nXFree86 1.0 license, the original authors of the code decided to allow a license\nchange. If you have submitted code to the original x86emu project, and you don't\nagree with the license change, please contact us and let you know. Your code\nwill be removed to comply with your wishes.\n\nIf you have any questions about this, please send email to x86emu@linuxlabs.com\nor KendallB@scitechsoft.com for clarification.", + "json": "x11-realmode.json", + "yaml": "x11-realmode.yml", + "html": "x11-realmode.html", + "license": "x11-realmode.LICENSE" + }, + { + "license_key": "x11-sg", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-sg", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software for any purpose\nand without fee is hereby granted, provided that the above copyright notice\nappear in all copies and that both the copyright notice and this permission\nnotice appear in supporting documentation, and that the name of Silicon\nGraphics, Inc. not be used in advertising or publicity pertaining to\ndistribution of the software without specific, written prior permission.\n\nTHE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU \"AS-IS\" AND WITHOUT\nWARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT\nLIMITATION, ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.\nIN NO EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY\nDIRECT, SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR\nANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, LOSS OF PROFIT, LOSS OF\nUSE, SAVINGS OR REVENUE, OR THE CLAIMS OF THIRD PARTIES, WHETHER OR NOT SILICON\nGRAPHICS, INC. HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED\nAND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE\nPOSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "x11-sg.json", + "yaml": "x11-sg.yml", + "html": "x11-sg.html", + "license": "x11-sg.LICENSE" + }, + { + "license_key": "x11-stanford", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-stanford", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "We are making the specification and associated documentation\n(Software) available for public use and benefit with the expectation\nthat others will use, modify and enhance the Software and contribute\nthose enhancements back to the community. However, since we would like\nto make the Software available for broadest use, with as few\nrestrictions as possible permission is hereby granted, free of charge,\nto any person obtaining a copy of this Software to deal in the Software\nunder the copyrights without restriction, including without limitation\nthe rights to use, copy, modify, merge, publish, distribute, sublicense,\nand/or sell copies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nThe name and trademarks of copyright holder(s) may NOT be used in\nadvertising or publicity pertaining to the Software or any derivatives\nwithout specific, written prior permission.", + "json": "x11-stanford.json", + "yaml": "x11-stanford.yml", + "html": "x11-stanford.html", + "license": "x11-stanford.LICENSE" + }, + { + "license_key": "x11-tektronix", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-tektronix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This file is a component of an X Window System-specific implementation of Xcms\nbased on the TekColor Color Management System. Permission is hereby granted to\nuse, copy, modify, sell, and otherwise distribute this software and its\ndocumentation for any purpose and without fee, provided that this copyright,\npermission, and disclaimer notice is reproduced in all copies of this software\nand in supporting documentation. TekColor is a trademark of Tektronix, Inc.\n\nTektronix makes no representation about the suitability of this software for any\npurpose. It is provided \"as is\" and with all faults.\n\nTEKTRONIX DISCLAIMS ALL WARRANTIES APPLICABLE TO THIS SOFTWARE, INCLUDING THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN\nNO EVENT SHALL TEKTRONIX BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL\nDAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA, OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING\nOUT OF OR IN CONNECTION WITH THE USE OR THE PERFORMANCE OF THIS SOFTWARE.", + "json": "x11-tektronix.json", + "yaml": "x11-tektronix.yml", + "html": "x11-tektronix.html", + "license": "x11-tektronix.LICENSE" + }, + { + "license_key": "x11-tiff", + "category": "Permissive", + "spdx_license_key": "libtiff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, distribute, and sell this software and its\ndocumentation for any purpose is hereby granted without fee, provided\nthat (i) the above copyright notices and this permission notice appear in\nall copies of the software and related documentation, and (ii) the names of\nSam Leffler and Silicon Graphics may not be used in any advertising or\npublicity relating to the software without the specific, prior written\npermission of Sam Leffler and Silicon Graphics.\n\nTHE SOFTWARE IS PROVIDED \"AS-IS\" AND WITHOUT WARRANTY OF ANY KIND, \nEXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY \nWARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. \n\nIN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR\nANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF \nLIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE \nOF THIS SOFTWARE.", + "json": "x11-tiff.json", + "yaml": "x11-tiff.yml", + "html": "x11-tiff.html", + "license": "x11-tiff.LICENSE" + }, + { + "license_key": "x11-x11r5", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-x11r5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose and without fee is hereby granted, provided that\nthe above copyright notice appear in all copies and that both that copyright\nnotice and this permission notice appear in supporting documentation, and that\nthe name of the copyright holders not be used in advertising or publicity\npertaining to distribution of the software without specific, written prior\npermission. The copyright holders makes no representations about the suitability\nof this software for any purpose. It is provided \"as is\" without express or\nimplied warranty.\n\nTHE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\nINCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT\nSHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL\nDAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING\nOUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "x11-x11r5.json", + "yaml": "x11-x11r5.yml", + "html": "x11-x11r5.html", + "license": "x11-x11r5.LICENSE" + }, + { + "license_key": "x11-xconsortium", + "category": "Permissive", + "spdx_license_key": "X11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM\nBE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\nCONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nExcept as contained in this notice, the name of the X Consortium shall not be\nused in advertising or otherwise to promote the sale, use or other dealings in\nthis Software without prior written authorization from the X Consortium.\n\nX Window System is a trademark of X Consortium, Inc.", + "json": "x11-xconsortium.json", + "yaml": "x11-xconsortium.yml", + "html": "x11-xconsortium.html", + "license": "x11-xconsortium.LICENSE" + }, + { + "license_key": "x11-xconsortium-veillard", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-xconsortium-veillard", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-xconsortium_veillard" + ], + "is_exception": false, + "is_deprecated": false, + "text": "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 fur- nished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE DANIEL VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nExcept as contained in this notice, the name of Daniel Veillard shall not be used in advertising or otherwise to promote the sale, use or other deal- ings in this Software without prior written authorization from him.", + "json": "x11-xconsortium-veillard.json", + "yaml": "x11-xconsortium-veillard.yml", + "html": "x11-xconsortium-veillard.html", + "license": "x11-xconsortium-veillard.LICENSE" + }, + { + "license_key": "x11-xconsortium_veillard", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is fur- nished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-NESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE DANIEL VEILLARD\nBE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\nCONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nExcept as contained in this notice, the name of Daniel Veillard shall not be\nused in advertising or otherwise to promote the sale, use or other deal- ings in\nthis Software without prior written authorization from him.", + "json": "x11-xconsortium_veillard.json", + "yaml": "x11-xconsortium_veillard.yml", + "html": "x11-xconsortium_veillard.html", + "license": "x11-xconsortium_veillard.LICENSE" + }, + { + "license_key": "x11r5-authors", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "text": "Permission to use, copy, modify, and distribute this software for any purpose\nand without fee is hereby granted, provided that the above copyright notice\nappear in all copies and that both that copyright notice and this permission\nnotice appear in supporting documentation, and that the names of the authors not\nbe used in advertising or publicity pertaining to distribution of the software\nwithout specific, written prior permission.\n\nTHE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS\nBE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF\nCONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION\nWITH THE USE OR PERFORMANCE OF THIS SOFTWARE.", + "json": "x11r5-authors.json", + "yaml": "x11r5-authors.yml", + "html": "x11r5-authors.html", + "license": "x11r5-authors.LICENSE" + }, + { + "license_key": "xceed-community-2021", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-xceed-community-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "XCEED SOFTWARE, INC. \n\nCOMMUNITY LICENSE AGREEMENT (for non-commercial use) \n\nThis Community License Agreement (the \u201cAgreement\u201d) is a legal agreement between \nyou (\u201cLicensee\u201d) and Xceed Software, Inc. (\u201cXceed\u201d). Licensee wishes to use the \u201cXceed \nExtended WPF Toolkit\u2122\u201d (the \u201cSoftware\u201d), an Xceed product, for \u201cNon-Commercial Use\u201d. \nSuch use of the Software means that it is not primarily intended for commercial \nadvantages or for monetary compensation or any other type of compensation, including \ndonations. Xceed agrees to license its products to developers like you as along as all \nterms & conditions set forth herein are respected. The Software is provided under a \nlicense; it is not \u201csold\u201d in any manner. By installing, copying or otherwise using the \nSoftware, you confirm your agreement to the terms and conditions expressed in this \nAgreement. If you do not agree, you are not authorized to use our Software. \n\nGENERAL \n\nSubject to compliance with the conditions set out below, Xceed grants to Licensee a \nnon-exclusive and perpetual right (unless/until revoked by Xceed at its discretion) to \ninstall and use the Software for designing, building, testing and/or \ndeploying/distributing (to less than 10 users or end-users) an application, system or \nprogram for Non-Commercial Use only. Would Licensee need to use the Software for \nany purpose that is not strictly Non-Commercial Use, or if the Software is to be \ndeployed or distributed to more than 10 users/end-users \u2013 even in a Non-Commercial \nUse, Licensee must acquire a Commercial License (with a paid subscription). \n\nThe license granted under this Agreement is conditional on Licensee complying at all \ntimes with the following conditions: \n\n-All of the Agreement\u2019s terms & conditions are strictly complied with by the Licensee; \n\n-The Software is used for Non-Commercial Use only; \n\n-The Software cannot be resold, licensed, sublicensed or distributed by Licensee in any \nmanner other than as specified above; \n\n-Xceed\u2019s name and logo must appear clearly in the resulting work with an Xceed \nCopyright notice; the name and notice must be visible, not be hidden; \n\n-Licensee is not authorized to \u201cdeploy\u201d the Software for/in any commercial environment;\n\n-Licensee commits not to create a competitive software product based on the Software; \n\n-Licensee is not authorized to sell or license/sub-license/lease the resulting work to \nanyone nor charge any amounts of money or accept donations or exchange services for \nthe said resulting work. \n\nSUPPORT \n\nSupport is not included in Community Licenses. The Software is provided on an \u201cas is\u201d \nbasis only. Licensee can send requests to Xceed\u2019s technical support team only if a \ncommercial license has been obtained. Bugs may be corrected at Xceed\u2019s discretion. \n\nWARRANTY \n\nXceed clearly states that this Community License includes no warranty of any type. \nXceed products are provided on an \u201cas is\u201d basis. In no case shall Xceed be responsible or \nliable for any direct or indirect, or consequential damages whatsoever (including, \nwithout limitation, any damages for loss of revenues, of business profits, business \ninterruption, or loss of business information, or any other type of loss or damages) \narising out of the use of the Software even if Xceed may have been advised of such \npotential damages or loss. \n\nOTHER \n\nXceed does not allow Community Licensees to publish results from benchmarks or \nperformance comparison tests (with other products) without advance permission by \nXceed. Licensee is not authorized to use Xceed\u2019s name, tradenames and trademarks \nwithout Xceed\u2019s written permission (other than the Copyright notice stated above in the \n\u201cGeneral\u201d section). \n\nGOVERNING LAW \n\nThis Agreement shall be governed by the laws of the Province of Quebec (Canada). Any \nclaim, dispute or problem arising out of this Agreement shall be deemed non-receivable \nor may be settled or disposed of at Xceed\u2019s discretion. Xceed reserves the right to settle \nany action before an arbitration board in Quebec as per generally accepted, \ninternational rules of arbitration prevailing in Quebec. \n\nXceed reserves the right to modify this Agreement at all times without notice. \n\n\u00a9 Copyright: Xceed Software, Inc. - 2021. All rights reserved.", + "json": "xceed-community-2021.json", + "yaml": "xceed-community-2021.yml", + "html": "xceed-community-2021.html", + "license": "xceed-community-2021.LICENSE" + }, + { + "license_key": "xenomai-gpl-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-xenomai-gpl-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception to the following license, the Xenomai\nproject gives permission for additional uses of the header files\ncontained in this directory.\n\nThe exception is that, if you include these header files unmodified to\nproduce application programs executing in user-space that use\nXenomai services by normal Xenomai system calls, this does not\nby itself cause the resulting executable to be covered by the GNU\nGeneral Public License. This is merely considered normal use of the\nXenomai system, and does not fall under the heading of \"derived\nwork\".\n\nThis exception does not however invalidate any other reasons why the\nexecutable file might be covered by the GNU General Public License. In\nany case, this exception never applies when the application code is\nbuilt as a static or dynamically loadable portion of the Linux kernel.\n\nThis exception applies only to the code released by the Xenomai\nproject under the name Xenomai and bearing this exception notice.\nIf you copy code from other sources into a copy of Xenomai, the\nexception does not apply to the code that you add in this way.", + "json": "xenomai-gpl-exception.json", + "yaml": "xenomai-gpl-exception.yml", + "html": "xenomai-gpl-exception.html", + "license": "xenomai-gpl-exception.LICENSE" + }, + { + "license_key": "xfree86-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-xfree86-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE XFREE86\nPROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\nACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nExcept as contained in this notice, the name of the XFree86 Project shall not be\nused in advertising or otherwise to promote the sale, use or other dealings in\nthis Software without prior written authorization from the XFree86 Project.", + "json": "xfree86-1.0.json", + "yaml": "xfree86-1.0.yml", + "html": "xfree86-1.0.html", + "license": "xfree86-1.0.LICENSE" + }, + { + "license_key": "xfree86-1.1", + "category": "Permissive", + "spdx_license_key": "XFree86-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\n1. Redistributions of source code must retain the above copyright notice, this\nlist of conditions, and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution, and in the same place and form\nas other copyright, license and disclaimer information.\n\n3. The end-user documentation included with the redistribution, if any, must\ninclude the following acknowledgment: \"This product includes software developed\nby The XFree86 Project, Inc (http://www.xfree86.org/) and its contributors\", in\nthe same place and form as other third-party acknowledgments. Alternately, this\nacknowledgment may appear in the software itself, in the same form and location\nas other such third-party acknowledgments.\n\n4. Except as contained in this notice, the name of The XFree86 Project, Inc\nshall not be used in advertising or otherwise to promote the sale, use or other\ndealings in this Software without prior written authorization from The XFree86\nProject, Inc.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE XFREE86\nPROJECT, INC OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\nIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY\nOF SUCH DAMAGE.", + "json": "xfree86-1.1.json", + "yaml": "xfree86-1.1.yml", + "html": "xfree86-1.1.html", + "license": "xfree86-1.1.LICENSE" + }, + { + "license_key": "xilinx-2016", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-xilinx-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "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:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nUse of the Software is limited solely to applications: (a) running on a Xilinx device, or (b) that interact with a Xilinx device through a bus or interconnect.\n\nTHE 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.\nIN NO EVENT SHALL XILINX 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.\n\nExcept as contained in this notice, the name of the Xilinx shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from Xilinx.", + "json": "xilinx-2016.json", + "yaml": "xilinx-2016.yml", + "html": "xilinx-2016.html", + "license": "xilinx-2016.LICENSE" + }, + { + "license_key": "xinetd", + "category": "Permissive", + "spdx_license_key": "xinetd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "xinetd License\n\nORIGINAL LICENSE:\nThis software is\n\n(c) Copyright 1992 by Panagiotis Tsirigotis\n\nThe author (Panagiotis Tsirigotis) grants permission to use, copy, and\ndistribute this software and its documentation for any purpose and without fee,\nprovided that the above copyright notice extant in files in this distribution is\nnot removed from files included in any redistribution and that this copyright\nnotice is also included in any redistribution.\n\nModifications to this software may be distributed, either by distributing the\nmodified software or by distributing patches to the original software, under the\nfollowing additional terms:\n\n1. The version number will be modified as follows:\n\na. The first 3 components of the version number (i.e ..)\nwill remain unchanged.\n\nb. A new component will be appended to the version number to indicate the\nmodification level. The form of this component is up to the author of the\nmodifications.\n\n2. The author of the modifications will include his/her name by appending it\nalong with the new version number to this file and will be responsible for any\nwrong behavior of the modified software.\n\nThe author makes no representations about the suitability of this software for\nany purpose. It is provided \"as is\" without any express or implied warranty.\n\nModifications: Version: 2.1.8.7-current Copyright 1998-2001 by Rob Braun\n\nSensor Addition Version: 2.1.8.9pre14a Copyright 2001 by Steve Grubb\n\nThis is an exerpt from an email I recieved from the original author, allowing\nxinetd as maintained by me, to use the higher version numbers:\n\nI appreciate your maintaining the version string guidelines as specified in the\ncopyright. But I did not mean them to last as long as they did.\n\nSo, if you want, you may use any 2.N.* (N >= 3) version string for future xinetd\nversions that you release. Note that I am excluding the 2.2.* line; using that\nwould only create confusion. Naming the next release 2.3.0 would put to rest the\nconfusion about 2.2.1 and 2.1.8.*.", + "json": "xinetd.json", + "yaml": "xinetd.yml", + "html": "xinetd.html", + "license": "xinetd.LICENSE" + }, + { + "license_key": "xming", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-xming", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Xming Terms and Conditions\n\n1. Component licenses\n\nXming is a derivative work with many Open Source component licenses and exceptions. [WWW]X11 style licenses apply to libX11 and X.Org xserver source code (two of the largest components), and X.Org client applications. Xming does not link to the Cygwin\u2122 API library or use Cygwin code. See Appendix A for license detail of components sourced external to the [WWW]X.Org Foundation.\n\nNote: The U.S. spelling for the noun licence is used throughout this website as most licenses referenced are of U.S. origin.\n\n2. Applicability\n\nThis agreement is mandatory for Project Xming releases and components downloaded from this website, but not Public Domain releases from [WWW]SourceForge Project Xming.\n\n3. Distribution\n\nPlease distribute freely Public Domain releases from SourceForge.\n\nRedistributing any part (or whole) of the Xming website, documentation, images, executables or installers, by the internet, other projects/products or via media such as CD's, without asking permission, attributing 'Colin Harrison' and providing links to StraightRunning.com/XmingNotes/ and [WWW]SourceForge Project Xming will be regarded as a breach of copyright.\n\n4. Clarifications\n\nXming installers and components are Public Domain if put on [WWW]SourceForge, by me. You can do what you like with Public Domain releases including freely distributing them; they still retain all original authors' licenses appropriately, but I have relinquished my rights over them. However; everything downloaded from this website (for Project Xming) has this mandatory agreement.\n\nSome Xming components contain cryptographic items and as such are illegal in countries where encryption is outlawed. The encryption methods and algorithms used are freely available in the Public Domain and therefore not subject to export controls in Europe. If you are a U.S. citizen exporting Project Xming code: you are solely responsible for being compliant with any applicable U.S. Export Administration Regulations.\n\nCommercial and Public Sector users, who want to use Xming Website Releases (fully or partially) in connection with their work must have purchased a licence (i.e. not just made a donation). Here is the Xming License Order Form (note: Xming installation on a shared computer can be counted as just one 'User' and a Site License allows unlimited numbers of 'Users'). Academic or research institutions must obtain an Academic Site License in order to use Xming Website Releases. Installation is only allowed on equipment owned by the person, organisation or site named on their license document. Licenses are for the lifetime of the product and come with access to one year of updates (i.e. this access has a small annual renewal fee).\n\nXming licenses are only available directly and no reselling or transfer is permitted or possible. Xming software is licensed not sold. You may not publish Project Xming software for others to copy; or distribute, rent, lease or lend any part of it without written permission.\n\nPrivate individuals, who want to use Xming Website Releases as sole user at home, will be given access to them for one year after making a small Donation to help fund the replacement equipment needed to further Xming development (i.e. by renewable subscription). This donation access can also be used to trial Xming, prior to purchase of a full license, but please ask for permission before doing this.\n\nAll customer information and emails are treated as confidential. No customer specific data will be disclosed on StraightRunning.com or by Colin Harrison to any third-party without obtaining consent. No Project Xming software is used to control usage or collect and return data to me or any third-party.\n\nI Colin Harrison, in my sole discretion, have the right to suspend or terminate your access and use of StraightRunning.com, for any reason at any time.\n\nXming comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law i.e. all Project Xming components are provided \"as is\" with no implied fitness for any purpose. I accept NO LIABILITY for any loss or damage arising out of use of Xming or any Project Xming components i.e. use at your own risk.\n\nGenuine Xming dlls and binaries always have a project [WWW]version-information resource. Beware of Xming imitations and untraceable installers/uninstallers (please ask me to confirm VERSIONINFO and MD5 signatures of any suspicious file). Note: all Project Xming dlls and binaries are made 'fresh' and consistent from strictly controlled source code (using a cross-compiler toolchain also built, by me, from canonical sources); none are supplied from third-party builds.\n\nI can be contacted by email at colinxmingmyzencouk or colinharrisonvirginnet (the latter email address will die when TalkTalk switch off Virgin Media addresses ending in virginnet :)). These addresses are also shared by my PayPal account.\n\n5. Appendices\n\nComponent licenses in detail\n\nThis appendix details Xming's Open Source code licenses for components sourced external to the [WWW]X.Org Foundation. These licenses allow Project Xming to be as unconstrained as possible... Xming source code can be used proprietary and closed, and at the same time, all component source licenses are GPL compatible (with the caveat, below, for FreeType and noting that Htmlhelp.lib(s) are optional closed source static libraries from Microsoft).\n\nNo source code is GPL licensed in any release, other than for run.exe, and any GPL COPYING file or file marking (e.g. in Xming 6.9.0.31), can be assumed to be an error and deleted/ignored. Put simply: Xming is not licensed under the GPL and non-copyleft; but the Run utility is (N.B. run.exe, and its source, are now separate from Project Xming).\n\nXming dynamically links to one LGPL library. Also two FSF exceptions are applicable. Details of source code, modifications and licenses; plus both FSF exceptions...\n\nwinlocalename.c is adapted from file localename.c (an LGPLv2.1 file in [WWW]gettext-0.17/gettext-runtime/intl/).\n\n[WWW]DejaVue fonts are supplied unmodified under this license.\n\nFreeType is supplied modified from the canonical [WWW]FreeType2 source under this BSD-style license (which has a credit clause). Note: builders of FreeType can [WWW]choose to use GPLv2 instead.\n\n[WWW]Mesa 11.3.0-devel is supplied modified from the canonical [WWW]freedesktop.org source under this Mesa license.\n\nExtension headers and specifications from the canonical [WWW]OpenGL Registry are used under SGI Free Software License B.\n\nThe [WWW]Pthreads-Win32 dll, built from modified source, is dynamically-linked from Xming and supplied compliant with LGPLv2.1.\n\n[WWW]PuTTY is used under its permissive MIT license.\n\nXmon is supplied modified from this source code under this license.\n\n[WWW]zlib is supplied modified from this source code under this license.\n\n[WWW]Inno Setup is used under this license to create the Xming installers.\n\nHtmlhelp.lib static libraries, from Microsoft's x86 and x64 Distributable Code in the [WWW]Windows Software Development Kit (SDK) for Windows 8, are linked to XLaunch and portablePuTTY executables under this license.\n\n[WWW]MinGW-w64 is used under this runtime license to create Project Xming executables and libraries.\n\nHeader files and runtime libraries from the [WWW]GNU Complier Collection are included in compiled code under the GCC runtime library exception.\n\nOutput from the [WWW]GNU Bison utility, which includes the skeleton code for the parser's implementation, is compiled into some Project Xming components. This is licensed under the Bison special exception.", + "json": "xming.json", + "yaml": "xming.yml", + "html": "xming.html", + "license": "xming.LICENSE" + }, + { + "license_key": "xmldb-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-xmldb-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "The XML:DB Initiative Software License, Version 1.0 \n \n Copyright (c) 2000-2003 The XML:DB Initiative. All rights reserved. \n \n Redistribution and use in source and binary forms, with or without \n modification, are permitted provided that the following conditions \n are met: \n \n 1. Redistributions of source code must retain the above copyright \n notice, this list of conditions and the following disclaimer. \n \n 2. Redistributions in binary form must reproduce the above copyright \n notice, this list of conditions and the following disclaimer in \n the documentation and/or other materials provided with the \n distribution. \n \n 3. The end-user documentation included with the redistribution, \n if any, must include the following acknowledgment: \n \"This product includes software developed by the \n XML:DB Initiative (http://www.xmldb.org/).\" \n Alternately, this acknowledgment may appear in the software itself, \n if and wherever such third-party acknowledgments normally appear. \n \n 4. The name \"XML:DB Initiative\" must not be used to endorse or\n promote products derived from this software without prior written\n permission. For written permission, please contact info@xmldb.org. \n \n 5. Products derived from this software may not be called \"XML:DB\", \n nor may \"XML:DB\" appear in their name, without prior written \n permission of the XML:DB Initiative. \n \n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED \n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES \n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE \n DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR \n ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, \n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT \n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF \n USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND \n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, \n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT \n OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \n SUCH DAMAGE.\n ==================================================================== \n \n This software consists of voluntary contributions made by many \n individuals on behalf of the XML:DB Initiative. For more information\n on the XML:DB Initiative, please see .", + "json": "xmldb-1.0.json", + "yaml": "xmldb-1.0.yml", + "html": "xmldb-1.0.html", + "license": "xmldb-1.0.LICENSE" + }, + { + "license_key": "xnet", + "category": "Permissive", + "spdx_license_key": "Xnet", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\nThis agreement shall be governed in all respects by the laws of the State of\nCalifornia and by the laws of the United States of America.", + "json": "xnet.json", + "yaml": "xnet.yml", + "html": "xnet.html", + "license": "xnet.LICENSE" + }, + { + "license_key": "xskat", + "category": "Permissive", + "spdx_license_key": "XSkat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This program is free software; you can redistribute it freely.\nUse it at your own risk; there is NO WARRANTY.\n\nRedistribution of modified versions is permitted provided that the following\nconditions are met:\n\n1. All copyright & permission notices are preserved.\n\n2.a) Only changes required for packaging or porting are made. \nor\n2.b) It is clearly stated who last changed the program. The program is renamed\nor the version number is of the form x.y.z, where x.y is the version of the\noriginal program and z is an arbitrary suffix.", + "json": "xskat.json", + "yaml": "xskat.yml", + "html": "xskat.html", + "license": "xskat.LICENSE" + }, + { + "license_key": "xxd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-xxd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Distribute freely and credit me,\nmake money and share with me,\nlose money and don't ask me.", + "json": "xxd.json", + "yaml": "xxd.yml", + "html": "xxd.html", + "license": "xxd.LICENSE" + }, + { + "license_key": "yahoo-browserplus-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-yahoo-browserplus-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BrowserPlus End User License\n\n Introduction\n\n Yahoo provides you with BrowserPlus, a software program which extends the functionality of your web browser, and facilitates the installation of additional software packages (plug-ins) to your web browser which various websites and services may request.\n\n The BrowserPlus software (\"Software\") consists of the following software, documentation, files and materials:\n\n The BrowserPlus core software application (\"Core\") that you receive through this installer;\n\n \"BrowserPlus Plug-ins\" or \"corelets\" which are any additional distinct software packages developed by Yahoo or third parties which plug into the Core, thereby extending the functionality of your web browser, AND\n\n Any subsequent updates, versions, or substitutes of BrowserPlus or BrowserPlus Plug-ins (\"Updates\") which you install.\n\n Yahoo licenses the Software to you subject to this agreement between you and Yahoo (the \"License\"). The Software may also be bundled with third party components, and may operate with plug-ins created by third party developers (collectively, \"Third Party Software\"). This License only applies to your use of the Software. Your use of Third Party Software is subject to the terms and conditions of the authors and owners of such Third Party Software.\n\n By installing and using the Software, you accept all terms and conditions of this License. Yahoo can update and change this License by posting a new version at https://info.yahoo.com/legal/us/yahoo/browserplus/browserplus-2122.html without notice to you. You understand and acknowledge that your continued use of the Software, and the continued use by anyone to whom you have rightfully distributed this Software pursuant to this License, constitutes your agreement to and acceptance of all such changes and updates and that absent such effective consent, use of the Software is not authorized.\n\n You may use this Software to access various Yahoo services. You understand and acknowledge that your use of such Yahoo services is subject to the current version of the Yahoo Terms of Service (the \"TOS\"), located at https://info.yahoo.com/legal/us/yahoo/utos/utos-173.html, and any additional terms of service that may apply.\n\n Scope of License\n\n This Software is licensed to you on a worldwide (except as limited below), non-exclusive, non-sublicensable basis on the terms and conditions set forth in the License. This License covers all copies of the Software made by or for you. All rights not expressly granted to you are reserved by Yahoo or their respective owners.\n\n Here\u2019s what you can do with the Software:\n\n Install and personally use the Software on a computer or mobile device owned or controlled by you.\n\n Use the Software only for personal use or benefit.\n\n Make copies of the Software and distribute such copies to others within a corporation or similar organization so long as either (a) each recipient affirmatively agrees to be bound by this License and any updates and changes to this License, or (b) you have the legal right to bind and hereby bind your organization (and others within your organization) to both this License and to any updates and changes to this License. If neither (a) nor (b) is true, you may NOT distribute the Software within your employer\u2019s organization and Yahoo does not grant you a license to the Software.\n\n Allow others to use the Software on your personal or mobile device; but regardless of whether or not authorized by you, you are responsible for ensuring that any and all uses of the Software comply with this License and all applicable laws.\n\n Here\u2019s what you can NOT do with the Software:\n\n Obtain or attempt to obtain unauthorized access to the Yahoo network or to any third party networks, or to distribute any data that you obtain through such unauthorized access.\n\n Export or re-export the Software in violation of applicable laws or regulations.\n\n Sell, rent lease, loan, distribute, transfer or sublicense the Software or access thereto, or derive income from the use or provision of the Software, whether for direct commercial or monetary gain or otherwise, without Yahoo's prior, express, written permission.\n\n Use the Software in connection with acts of terrorism or violence, or the operation of nuclear facilities, life support or other mission critical application where human life or property may be at stake.\n\n Use the Software in any unlawful manner, for any unlawful purpose, or in any manner inconsistent with this License or with the TOS.\n\n Software Security, Tracking, Installation, Services and Support\n\n Security. The Software does access and write to information that is stored on your hard drive (and in your accounts on internet services to which you\u2019ve authorized the Software to access and/or write information). Yahoo takes your security seriously and takes reasonable steps to protect your information, but you agree that you are using this Software at your own risk and that Yahoo does not guarantee that transmission of your data over the Internet is 100% secure. Please see http://privacy.yahoo.com/privacy/us/security/details.html for more information on what Yahoo does to minimize security risks.\n\n Usage Data. You consent to allow the Software to track, collect, and store the following information about your use of the Software, which the Software may transmit back to Yahoo to use for diagnostic purposes and improving the Software:\n\n A unique identifier assigned to your installation of the Core. Yahoo will not associate this unique identifier to your personally identifiable information.\n\n Your device\u2019s platform, i.e., osx, win32.\n\n The version of the Software that you\u2019ve downloaded.\n\n Auto-Updater Feature. From time to time, Yahoo may automatically download and install the latest version of the Software to your computing device. Visit the Privacy Module at https://info.yahoo.com/privacy/us/yahoo/browserplus/ to find out more about this feature.\n\n Corelet Installations. When you visit an internet site which requests that you download a corelet that will plug into the Software, you will be prompted to either cancel or proceed with installation. BrowserPlus Plug-ins are considered Software and subject to the terms of this License.\n\n How to Uninstall. To uninstall, go to your operating system Control Panel, select Add/Remove Programs, and select the Yahoo application that you wish to uninstall. Click the Change/Remove button. Leave the selection on Automatic and click Next. Then click Finish, and you are done. You may have to reboot to remove some components. To remove on operating systems other than Windows, follow the standard instructions from the operating system developer for removing third party applications. Please note that if you uninstall the Core, any BrowserPlus Plug-ins that you have installed will also be uninstalled.\n\n Third Party Software, Hardware, and Services. You are responsible for all third party software, hardware, and services used in connection the Software. Any third party software, hardware, and services (whether required or optional) that you use in conjunction with the Software, is the sole responsibility of such third party, and is subject to the terms, conditions, warranties and disclaimers provided by such third party.\n\n Support and Software Updates. Yahoo offers no technical or maintenance support for the Software. Yahoo may offer upgrades or updates to the Software in its sole discretion. Yahoo may change, suspend or discontinue any aspect of the Software at any time without notice to you. \n\n Ownership\n\n The Software may be protected by Yahoo\u2019s patents, copyrights, trademarks, service marks, international treaties, and/or other proprietary rights and laws of the U.S. and other countries. You agree to abide by all applicable proprietary rights laws and other laws, as well as any additional copyright and trademark notices or restrictions contained in the Software, this License, and the TOS. Yahoo and Yahoo's licensors own all rights, title, and interest in and to their applicable contributions to the Software. Other than as set forth in this License, Yahoo grants you no right, title, or interest in any intellectual property owned or licensed by Yahoo in connection with the Software and Yahoo trademarks.\n\n Indemnification\n\n You (or the organization that you have the authority to bind, if applicable) agree to indemnify and hold harmless Yahoo and its subsidiaries, affiliates, officers, employees, agents, partners, and licensors (the \"Yahoo Entities\") from any claim or demand, including reasonable attorneys' fees, made by you or any third party in connection with or arising out of your use of the Software, your violation of any terms or conditions of this License, your violation of applicable laws, or your violation of any rights of another person or entity.\n\n DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS\". YOU BEAR THE RISK OF USING IT. THE YAHOO ENTITIES GIVE NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS OF ANY KIND (INCLUDING, BUT NOT LIMITED TO, WARRANTIES RELATING TO NON-INFRINGEMENT OR SECURITY, AND THE IMPLIED WARRANTIES OF MERCHANTABILITY ANDFITNESS FOR A PARTICULAR PURPOSE). YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE.\n\n LIMITATION OF LIABILITY. YOU EXPRESSLY UNDERSTAND AND AGREE THAT YAHOO! ANDTHE \"YAHOO! ENTITIES\" SHALL NOT BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES, INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS, GOODWILL, USE, DATA OR OTHER INTANGIBLE LOSSES (EVEN IF YAHOO! ENTITIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES), RESULTING FROM: (i) THE USE OR THE INABILITY TO USE THE SOFTWARE; (ii) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS AND SERVICES; (iii) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (iv) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE SOFTWARE; OR (v) ANY OTHER MATTER RELATING TO THE SOFTWARE. THE TOTAL LIABILITY OF YAHOO! AND YAHOO! ENTITIES FOR ANY CLAIM BY YOU UNDER THIS LICENSE SHALL NOT EXCEED AMOUNTS PAID BY YOU TO YAHOO! FOR THIS LICENSE IN THE TWELVE MONTH PERIOD PRECEDING THE EVENT WHICH IS THE BASIS FOR SUCH CLAIM.\n\n Termination.\n\n Your license to the Software under this License continues until it is terminated by either party. You may terminate the License by discontinuing use of all or any of the Software and by destroying all your copies of the applicable Software. This License terminates automatically if you violate any term of this License, Yahoo publicly posts a written notice of termination on Yahoo's web site, or Yahoo sends a written notice of termination to you directly.\n\n General Information\n\n Entire Agreement. This License constitutes the entire agreement between you and Yahoo and governs your use of the Software, superseding any prior agreements between you and Yahoo with respect to the Software, and is the sole source or your rights concerning use of the Software.\n\n Choice of Law and Forum. This License and the relationship between you and Yahoo shall be governed by the laws of the State of California, USA without regard to its conflict of law provisions. You and Yahoo agree to submit to the personal and exclusive jurisdiction of the courts located within the county of Santa Clara, California, USA.\n\n Waiver and Severability of Terms. The failure of Yahoo to exercise or enforce any right or provision of this License shall not constitute a waiver of such right or provision. If any provision of this License is found by a court of competent jurisdiction to be invalid, the parties nevertheless agree that the court should endeavor to give effect to the parties' intentions as reflected in the provision, and the other provisions of this License remain in full force and effect.\n\n Statute of Limitations. You agree that regardless of any statute or law to the contrary, any claim or cause of action arising out of or related to use of the Software, or this License, must be filed within one (1) year after such claim or cause of action arose or be forever barred.\n\n The titles in this License are for convenience only and have no legal or contractual effect. Those provisions in this License that by their nature are intended to survive, will survive any termination of this Agreement.", + "json": "yahoo-browserplus-eula.json", + "yaml": "yahoo-browserplus-eula.yml", + "html": "yahoo-browserplus-eula.html", + "license": "yahoo-browserplus-eula.LICENSE" + }, + { + "license_key": "yahoo-messenger-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-yahoo-messenger-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Yahoo Messenger Terms Of Service\n\nNO 911 OR EMERGENCY SERVICE. You acknowledge and understand that Yahoo does NOT currently allow you to access any 911 or similar emergency services (no traditional 911, E911, or similar access to emergency services). You should always have an alternative means of accessing 911 or similar emergency services. Please inform others who use your Yahoo Messenger and devices used to access Yahoo Messenger that they must access these numbers through a traditional landline or mobile phone. Yahoo Messenger is not intended to replace your primary phone service, such as traditional landline or mobile phone.\n\nACCEPTANCE OF TERMS\n\nWelcome to Yahoo Yahoo provides this Yahoo Messenger service, and any other software or services you elected to download along with Yahoo Messenger (e.g. Yahoo Toolbar, or Yahoo Browser Services), to you, subject to the following license terms, which incorporates by reference the Yahoo Terms of Service (\"TOS\") each which may be updated by us from time to time without notice to you (collectively this \"License\"). You can review the most current version of this License and the TOS at any time at: https://info.yahoo.com/legal/us/yahoo/messenger/messengertos/messengertos-279.html and https://info.yahoo.com/legal/us/yahoo/utos/utos-173.html. If you are in a jurisdiction where download or use of this software or service is prohibited, click \"Cancel\" and do not download or use this software.\n\nBy checking the box and clicking the \"Next\" button to download Yahoo Messenger, and by using and continuing to use Yahoo Messenger or the other software or services, you agree to be bound by this License which includes the TOS, and represent and warrant that you are permitted to do so under applicable law.\n\nDIFFERENT VERSIONS OF YAHOO! MESSENGER AND OTHER YAHOO! AUTHORIZED IM CLIENTS\n\nNot all features may be available if the user that you are communicating with is using a different version of Yahoo Messenger, or is using an IM software client offered by an authorized non-Yahoo company.\n\nDESCRIPTION OF SERVICE\n\nYahoo Messenger allows you to see when your friends are online, send and receive instant messages, make pc-to-pc and pc-to-phone calls, listen to music, play games, and receive alerts and other material and information via the World Wide Web.\n\nYahoo Toolbar allows users to quickly search the Web from anywhere online, save and re-find pages, protect your PC from spyware with Anti-Spy, access your favorite sites and enjoy music with Yahoo Music Engine controls.\n\nYahoo Browser Services gives you enhancements for Internet Explorer grouped neatly under Yahoo Services button and menu option. These services include Sign-In, which can store multiple Yahoo IDs for quick switching; Yahoo Messenger Explorer Bar, which allows you to see your friends list and send links to friends within Internet Explorer; and Yahoo Shortcuts, which allows you to set up address bar keywords to go to your favorite web sites.\n\nFrom time to time, Yahoo may automatically download the latest version and notify you when it\u2019s ready to install. Visit the Privacy Module to find out more about Auto Updater. If you wish to update your Yahoo Messenger, you must agree to the then current Yahoo Messenger Terms of Service in order for the update to be installed on your computer.\n\nHOW TO UNINSTALL: To uninstall, go to your operating system Control Panel, select Add/Remove Programs, and select Yahoo Messenger or other Yahoo application that you wish to uninstall. Click the Change/Remove button. Leave the selection on Automatic and click Next. Then click Finish and you are done! You may have to reboot to remove some components.\n\nYahoo Messenger, including any web-based versions, will allow you and the people with whom you communicate to save your conversations in your Yahoo accounts located on Yahoo servers. This means you can access and search your message history from any computer with access to the internet. Whether or not you use this feature, other users may choose to use it to save conversations with you in their account on Yahoo too. Your agreement to this License constitutes your consent to allow Yahoo to store these communications on its servers.\n\nThe foregoing software you elect to download, and any Yahoo or third party software, protocols (including but not limited to API protocols) (the \"Software\"), along with any services, content, or materials used that are authorized by Yahoo, are collectively deemed to be the \"Service\". Where the TOS references the defined term \"Service,\" such terms in the TOS will also apply to the Software and services defined to be the \"Service\" under this License.\n\nBy registering and using Yahoo Messenger, you acknowledge that other users of the Service may elect to receive a notification from the Service when you sign on and may send you instant messages and other information via the Service. If you desire to block the notification feature of the Service sent to other users or if you don't want to receive messages from such users, you can enable the \"Ignore\" feature of the Service. The \"Ignore\" feature allows you to create a list of users you wish to block, which you can review and edit from time to time. Your ability to send and receive instant messages and other information may be blocked by Yahoo and by other users, which may partially or wholly limit your ability to use the Service. By using the Service, you agree that Yahoo has no responsibility for assessing or resolving any disputes arising from a user's ability to ignore, send messages, or otherwise use the Service.\n\nFEES AND PAYMENTS\n\nYahoo reserves the right to charge fees for future use of or access to the Service, or other Yahoo services and web sites, in Yahoo's sole discretion. If Yahoo decides to charge fees, such charges will be disclosed to you prior.\n\nEQUIPMENT REQUIRED AND OPTIONAL\n\nIn order to use the Service and those services and products within the Service (for both free and charged services), you must obtain access to the World Wide Web, either directly or through devices that access web-based content, and pay any service fees associated with such access. In addition, you must provide all equipment necessary to make such connection to the World Wide Web or enable pc-to-pc, pc-to-phone, or other internet calling, including computers, modems, mobile devices, microphones, headsets, and handsets.\n\nYou may also use optional equipment to access the Service (e.g. a USB port phone device to access the pc-to-pc calling feature, which device may include dual functionality to access a traditional landline service which is not provided by Yahoo).\n\nAny required or optional equipment that you use to use or access the Service, whether required or optional, is subject to the terms, conditions, warranties and disclaimers provided by the manufacturer of the equipment. Please refer to the materials you received when you purchased the equipment to understand your rights and obligations, including what warranties and disclaimers apply to you.\n\nLICENSE\n\nThe Service (which includes the Software) contains proprietary and confidential information that is protected by applicable intellectual property and other laws. Yahoo and Yahoo's licensors own all rights, title, and interest in and to their applicable contributions to the Service. This License grants you no right, title, or interest in any intellectual property owned or licensed by Yahoo, including (but not limited to) the Service and Yahoo trademarks, and creates no relationship between yourself and Yahoo's licensors, or between you and Yahoo other than that of Yahoo to licensee.\n\nYOU MAY install and personally use the Software and any authorized updates provided by Yahoo in object code form on a personal computer owned or controlled by you and are only permitted to access the Service through the Software, only as authorized in this License. You may use the Software and access the Service for your own noncommercial use or benefit. The Service and its components contain software licensed from Yahoo licensors (\"Licensor Software\"). The Licensor Software enables the Yahoo Software to perform certain functions including, without limitation, access proprietary data on third-party data servers. You agree not to assign, copy, transfer, or transmit the Service, or any data obtained through the Service, to any third party. Your license to use the Service, its components, and any third-party data, will terminate if you violate these restrictions. If your license terminates, you agree to cease any and all use of the Service, its components, and any third-party data. All rights in any third-party data, any third-party software, and any third-party data servers, including all ownership rights are reserved and remain with the respective third parties. You agree that these third parties may enforce their rights under this Agreement against you directly in their own name.\n\nYahoo may elect to provide you with customer support and/or software upgrades, enhancements, or modifications for the Service (collectively, \"Support\"), in its sole discretion, and may terminate such Support at any time without notice to you. Yahoo may change, suspend, or discontinue any aspect of the Service at any time, including the availability of any Service feature, database, or content. Yahoo may also impose limits on certain features and services or restrict your access to parts or all of the Service or the Yahoo web site without notice or liability.\n\nRESTRICTIONS ON USE\n\nYOU MAY NOT and will not allow any third party to:\n\nCopy, decompile, reverse engineer, reverse assemble, disassemble, modify, rent, lease, loan, distribute, or create derivative works (as defined by the U.S. Copyright Act) or improvements (as defined by U.S. patent law) from the Software, or any portion thereof, or otherwise attempt to discover any source code or protocols (including but no limited to API protocols) in the Service;\n\nObtain or attempt to obtain unauthorized access to the Service or the Yahoo network;\n\nIncorporate the protocols or Software, or any portion thereof, into any other service, software, hardware, or other technology manufactured or distributed by or for you; Use the Service in any unlawful manner, for any unlawful purpose, or in any manner inconsistent with this License;\n\nUse the Service to operate nuclear facilities, life support, or other mission critical application where human life or property may be at stake. You understand that the Service is not designed for such purposes and that its failure in such cases could lead to death, personal injury, or severe property or environmental damage for which Yahoo is not responsible; or\n\nSell, lease, loan, distribute, transfer, or sublicense the Service or access thereto or derive income from the use or provision of the Service, whether for direct commercial or monetary gain or otherwise, without Yahoo's prior, express, written permission.\n\nAll Software provided to the U.S. Government pursuant to solicitations issued on or after December 1, 1995, is provided with the commercial rights and restrictions described herein.\n\nSOFTWARE AND SERVICE PROVIDED AS-IS\n\nUnless explicitly stated otherwise, any new features that augment or enhance the current Service shall be subject to this License. You understand and agree that the Service is provided \"AS-IS\" and that Yahoo assumes no responsibility for the timeliness, deletion, mis-delivery, or failure to store any user communications or personalization settings. You also understand that Yahoo is not responsible for the security or privacy of communications sent via the Service, including but not limited to where the Service is being accessed via wireless devices or other equipment used to access the Service. These disclaimers are in addition to the \"Disclaimer of Warranties\" section in the TOS.\n\nAny third party plug-ins applications that you use with the Service are owned by and are the sole responsibility of the plug-in application developer, and it is up to you decide whether these plug-in applications, or your use of them, is legal or appropriate.\n\nAny required or optional equipment, or third party plug-in applications, that you use to use, access, or augment the Service, whether required or optional, is subject to the terms, conditions, warranties and disclaimers provided by the manufacturer of the equipment, and Yahoo makes no warranties or representations whatsoever regarding such equipment or third party plug-in application. Please refer to the materials you received when you purchased the equipment or downloaded the plug-in application to understand your rights and obligations, including what warranties and disclaimers apply to you. YAHOO! AND ITS AFFILIATES EXPRESSLY DISCLAIM ALL WARRANTIES OF ANY KIND, WHETHER EXPRESS OR IMPLIED, RELATING TO SUCH EQUIPMENT OR PLUG-IN APPLICATIONS, INCLUDING THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.\n\nMEMBER ACCOUNT, PASSWORD, AND SECURITY\n\nIf you don't already have a Yahoo I.D. and password, you will be prompted to complete the Yahoo registration process. You are responsible for maintaining the confidentiality of the password and account and are fully responsible for all activities that occur under your password or account. You agree to (a) immediately notify Yahoo of any unauthorized use of your password or account or any other breach of security and (b) ensure that you exit from your account at the end of each session. Yahoo cannot and will not be liable for any loss or damage arising from your failure to comply with this Section. If authorized by Yahoo, the Service may allow you to communicate with users of other instant messaging products. In that event, you acknowledge and agree that (i) your use of the Service is subject to this License and the terms governing the use of other instant messaging products you have agreed to, if any, that are consistent with this License and (ii) users of other instant messaging products are subject to the terms governing such other instant messaging products. Yahoo assumes no responsibility for the conduct or content of messages sent by users of other instant messaging products.\n\nYAHOO! PRIVACY POLICY\n\nYour registration data and other information about you are subject to our Privacy Policy. For more information, please see our full privacy policy at http://privacy.yahoo.com/privacy/us/mesg/index.htm.\n\nMODIFICATIONS TO SERVICE\n\nYahoo reserves the right at any time and from time to time to modify or discontinue, temporarily or permanently, the Service (or any part thereof) with or without notice. You agree that Yahoo shall not be liable to you or to any third party for any modification, suspension or discontinuance of the Service. Yahoo may also impose limits on certain features and services or restrict your access to parts or all of the Service or the Yahoo web site without notice or liability.\n\nTERMINATION\n\nYour license to the Software and to access the Service continues until it is terminated by either party. You may terminate this License by discontinuing use of all or any of the Software and by destroying all your copies of the applicable Software. Yahoo may terminate this License pursuant to \"Termination\" section of the TOS.\n\nADDITIONAL INDEMNIFICATION\n\nIn addition to the indemnification you provide to Yahoo under the \"Indemnity\" section of the TOS, if the Service downloaded or accessed by you includes the \"anti-spy\"tool, software that is identified as \"spyware\" by this tool may be software that you have agreed to load onto your computer pursuant to a separate agreement with a third party. You are solely responsible for compliance with agreements you have executed with third parties. You agree to indemnify and hold Yahoo and its subsidiaries, affiliates, officers, agents, employees, partners and licensors harmless from any claim or demand, including reasonable attorneys' fees, made by any third party in connection with or arising out of your use of the Service, your violation of any terms or conditions of this License, your violation of applicable laws, or your violation of any rights of another person or entity.\n\nGOVERNMENT END USERS\n\nIf the Service and related documentation are supplied to or purchased by or on behalf of the United States Government, then the Service is deemed to be \"commercial software\" as that term is used in the Federal Acquisition Regulation system. Rights of the United States shall not exceed the minimum rights set forth in FAR 52.227-19 for \"restricted computer software.\" All other terms and conditions of this License apply.\n\nNOTICE\n\nYahoo may provide you with notices, including those regarding changes to this License, by either email, regular mail, or postings on the Service.\n\nGENERAL INFORMATION\n\nEntire Agreement. This License, which includes the TOS, constitutes the entire agreement between you and Yahoo and governs your use of the Service, superseding any prior agreements between you and Yahoo with respect to the Service. With respect to your use of other authorized Yahoo services, affiliate services, affiliate devices or equipment, third-party content, or third-party software, you also may be subject to additional terms and conditions. In the event of any conflict between the terms and conditions of this License and those in the TOS, the terms and conditions of this License will control, except to the extent that the TOS impose additional restrictions and liabilities on your actions.\n\nChoice of Law and Forum. This License and the relationship between you and Yahoo shall be governed by the laws of the State of California without regard to its conflict of law provisions. You and Yahoo agree to submit to the personal and exclusive jurisdiction of the courts located within the county of Santa Clara, California.\n\nWaiver and Severability of Terms. The failure of Yahoo to exercise or enforce any right or provision of this License shall not constitute a waiver of such right or provision. If any provision of this License is found by a court of competent jurisdiction to be invalid, the parties nevertheless agree that the court should endeavor to give effect to the parties' intentions as reflected in the provision, and the other provisions of this License and TOS remain in full force and effect.\nNo Right of Survivorship and Non-Transferability. You agree that your Yahoo account is non-transferable and any rights to your Yahoo I.D. or contents within your account terminate upon your death. Upon receipt of a copy of a death certificate, your account may be terminated and all contents therein permanently deleted.\n\nStatute of Limitations. You agree that regardless of any statute or law to the contrary, any claim or cause of action arising out of or related to use of the Service, or this License, must be filed within one (1) year after such claim or cause of action arose or be forever barred.\n\nThe section titles in this License are for convenience only and have no legal or contractual effect.\n\nVIOLATIONS\n\nPlease report any violations of this License or TOS to our Customer Care group.", + "json": "yahoo-messenger-eula.json", + "yaml": "yahoo-messenger-eula.yml", + "html": "yahoo-messenger-eula.html", + "license": "yahoo-messenger-eula.LICENSE" + }, + { + "license_key": "yale-cas", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-yale-cas", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "THIS SOFTWARE IS PROVIDED \"AS IS,\" AND ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE EXPRESSLY\nDISCLAIMED. IN NO EVENT SHALL YALE UNIVERSITY OR ITS EMPLOYEES BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED, THE COSTS OF\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED IN ADVANCE OF THE POSSIBILITY OF SUCH\nDAMAGE.\n\nRedistribution and use of this software in source or binary forms,\nwith or without modification, are permitted, provided that the\nfollowing conditions are met:\n\n1. Any redistribution must include the above copyright notice and\ndisclaimer and this list of conditions in any related documentation\nand, if feasible, in the redistributed software.\n\n2. Any redistribution must include the acknowledgment, \"This product\nincludes software developed by Yale University,\" in any related\ndocumentation and, if feasible, in the redistributed software.\n\n3. The names \"Yale\" and \"Yale University\" must not be used to endorse\nor promote products derived from this software.", + "json": "yale-cas.json", + "yaml": "yale-cas.yml", + "html": "yale-cas.html", + "license": "yale-cas.LICENSE" + }, + { + "license_key": "yensdesign", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-yensdesign", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "license: Feel free to use it, but keep this credits please!", + "json": "yensdesign.json", + "yaml": "yensdesign.yml", + "html": "yensdesign.html", + "license": "yensdesign.LICENSE" + }, + { + "license_key": "yolo-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-yolo-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " YOLO LICENSE\n Version 1, July 10 2015\n\nTHIS SOFTWARE LICENSE IS PROVIDED \"ALL CAPS\" SO THAT YOU KNOW IT IS SUPER\nSERIOUS AND YOU DON'T MESS AROUND WITH COPYRIGHT LAW BECAUSE YOU WILL GET IN\nTROUBLE HERE ARE SOME OTHER BUZZWORDS COMMONLY IN THESE THINGS WARRANTIES\nLIABILITY CONTRACT TORT LIABLE CLAIMS RESTRICTION MERCHANTABILITY SUBJECT TO\nTHE FOLLOWING CONDITIONS:\n\n1. #yolo\n2. #swag\n3. #blazeit", + "json": "yolo-1.0.json", + "yaml": "yolo-1.0.yml", + "html": "yolo-1.0.html", + "license": "yolo-1.0.LICENSE" + }, + { + "license_key": "yolo-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-yolo-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": " YOLO LICENSE\n Version 2, July 29 2016\n\nTHIS SOFTWARE LICENSE IS PROVIDED \"ALL CAPS\" SO THAT YOU KNOW IT IS SUPER\nSERIOUS AND YOU DON'T MESS AROUND WITH COPYRIGHT LAW BECAUSE YOU WILL GET IN\nTROUBLE HERE ARE SOME OTHER BUZZWORDS COMMONLY IN THESE THINGS WARRANTIES\nLIABILITY CONTRACT TORT LIABLE CLAIMS RESTRICTION MERCHANTABILITY. NOW HERE'S\nTHE REAL LICENSE:\n\n0. Darknet is public domain.\n1. Do whatever you want with it.\n2. Stop emailing me about it!", + "json": "yolo-2.0.json", + "yaml": "yolo-2.0.yml", + "html": "yolo-2.0.html", + "license": "yolo-2.0.LICENSE" + }, + { + "license_key": "ypl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "YPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Yahoo! Public License, Version 1.0 (YPL)\n\nThis Yahoo! Public License (this \"Agreement\") is a legal agreement that\ndescribes the terms under which Yahoo! Inc., a Delaware corporation having its\nprincipal place of business at 701 First Avenue, Sunnyvale, California 94089\n(\"Yahoo!\") will provide software to you via download or otherwise (\"Software\").\nBy using the Software, you, an individual or an entity (\"You\") agree to the\nterms of this Agreement.\n\nIn consideration of the mutual promises and upon the terms and conditions set\nforth below, the parties agree as follows:\n\n 1. Grant of Copyright License\n\n * 1.1 - Subject to the terms and conditions of this Agreement, Yahoo!\n hereby grants to You, under any and all of its copyright interest in\n and to the Software, a royalty-free, non-exclusive, non-transferable\n license to copy, modify, compile, execute, and distribute the Software\n and Modifications. For the purposes of this Agreement, any change to,\n addition to, or abridgement of the Software made by You is a\n \"Modification;\" however, any file You add to the Software that does\n not contain any part of the Software is not a \"Modification.\"\n\n * 1.2 - If You are an individual acting on behalf of a corporation or\n other entity, Your use of the Software or any Modification is subject\n to Your having the authority to bind such corporation or entity to\n this Agreement. Providing copies to persons within such corporation or\n entity is not considered distribution for purposes of this Agreement.\n\n * 1.3 - For the Software or any Modification You distribute in source\n code format, You must do so only under the terms of this Agreement,\n and You must include a complete copy of this Agreement with Your\n distribution. With respect to any Modification You distribute in\n source code format, the terms of this Agreement will apply to You in\n the same way those terms apply to Yahoo! with respect to the Software.\n In other words, when You are distributing Modifications under this\n Agreement, You \"stand in the shoes\" of Yahoo! in terms of the rights\n You grant and how the terms and conditions apply to You and the\n licensees of Your Modifications. Notwithstanding the foregoing, when\n You \"stand in the shoes\" of Yahoo!, You are not subject to the\n jurisdiction provision under Section 7, which requires all disputes\n under this Agreement to be subject to the jurisdiction of federal or\n state courts of northern California.\n\n * 1.4 - For the Software or any Modification You distribute in\n compiled or object code format, You must also provide recipients with\n access to the Software or Modification in source code format along\n with a complete copy of this Agreement. The distribution of the\n Software or Modifications in compiled or object code format may be\n under a license of Your choice, provided that You are in compliance\n with the terms of this Agreement. In addition, You must make\n absolutely clear that any license terms applying to such Software or\n Modification that differ from this Agreement are offered by You alone\n and not by Yahoo!, and that such license does not restrict recipients\n from exercising rights in the source code to the Software granted by\n Yahoo! under this Agreement or rights in the source code to any\n Modification granted by You as described in Section 1.3.\n\n * 1.5 - This Agreement does not limit Your right to distribute files\n that are entirely Your own work (i.e., which do not incorporate any\n portion of the Software and are not Modifications) under any terms You\n choose.\n\n 2. Support\n\n * Yahoo! has no obligation to provide technical support or updates to\n You. Nothing in this Agreement requires Yahoo! to enter into any\n license with You for any other edition of the Software.\n\n 3. Intellectual Property Rights\n\n * 3.1 - Except for the license expressly granted under copyright in\n Section 1.1, no rights, licenses or forbearances are granted or may\n arise in relation to this Agreement whether expressly, by implication,\n exhaustion, estoppel or otherwise. All rights, including all\n intellectual property rights, that are not expressly granted under\n this Agreement are hereby reserved.\n\n * 3.2 - In any copy of the Software or in any Modification you create,\n You must retain and reproduce, any and all copyright, patent,\n trademark, and attribution notices that are included in the Software\n in the same form as they appear in the Software. This includes the\n preservation of attribution notices in the form of trademarks or logos\n that exist within a user interface of the Software.\n\n * 3.3 - This license does not grant You rights to use any party's\n name, logo, or trademarks, except solely as necessary to comply with\n Section 3.2.\n\n 4. Disclaimer of Warranties\n\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND WITHOUT WARRANTY OF ANY KIND.\n YAHOO! MAKES NO WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY\n REGARDING OR RELATING TO THE SOFTWARE. SPECIFICALLY, YAHOO! DOES NOT\n WARRANT THAT THE SOFTWARE WILL BE ERROR FREE OR WILL PERFORM IN AN\n UNINTERRUPTED MANNER. TO THE GREATEST EXTENT ALLOWED BY LAW, YAHOO!\n SPECIFICALLY DISCLAIMS ALL IMPLIED WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE (EVEN IF YAHOO! HAD BEEN INFORMED OF\n SUCH PURPOSE), AND NONINFRINGEMENT WITH RESPECT TO THE SOFTWARE, ANY\n MODIFICATIONS THERETO AND WITH RESPECT TO THE USE OF THE FOREGOING.\n\n 5. Limitation of Liability\n\n * IN NO EVENT WILL YAHOO! BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES OF ANY KIND\n (INCLUDING WITHOUT LIMITATION LOSS OF PROFITS, LOSS OF USE, BUSINESS\n INTERRUPTION, LOSS OF DATA, COST OF COVER) IN CONNECTION WITH OR\n ARISING OUT OF OR RELATING TO THE FURNISHING, PERFORMANCE OR USE OF\n THE SOFTWARE OR ANY OTHER RIGHTS GRANTED HEREUNDER, WHETHER ALLEGED AS\n A BREACH OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, AND\n EVEN IF YAHOO! HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n 6. Term and Termination\n\n * 6.1 - This Agreement will continue in effect unless and until\n terminated earlier pursuant to this Section 6.\n\n * 6.2 - In the event Yahoo! determines that You have breached this\n Agreement, Yahoo! may terminate this Agreement.\n\n * 6.3 - All licenses granted hereunder shall terminate upon the\n termination of this Agreement. Termination will be in addition to any\n rights and remedies available to Yahoo! at law or equity or under this\n Agreement.\n\n * 6.4 - Termination of this Agreement will not affect the provisions\n regarding reservation of rights (Section 3.1), provisions disclaiming\n or limiting Yahoo!'s liability (Sections 4 and 5), Termination\n (Section 6) or Miscellaneous (Section 7), which provisions will\n survive termination of this Agreement.\n\n 7. Miscellaneous\n\n * This Agreement contains the entire agreement of the parties with\n respect to the subject matter of this Agreement and supersedes all\n previous communications, representations, understandings and\n agreements, either oral or written, between the parties with respect\n to said subject matter. The relationship of the parties hereunder is\n that of independent contractors, and this Agreement will not be\n construed as creating an agency, partnership, joint venture or any\n other form of legal association between the parties. If any term,\n condition, or provision in this Agreement is found to be invalid,\n unlawful or unenforceable to any extent, this Agreement will be\n construed in a manner that most closely effectuates the intent of this\n Agreement. Such invalid term, condition or provision will be severed\n from the remaining terms, conditions and provisions, which will\n continue to be valid and enforceable to the fullest extent permitted\n by law. This Agreement will be interpreted and construed in accordance\n with the laws of the State of California and the United States of\n America, without regard to conflict of law principles. The U.N.\n Convention on Contracts for the International Sale of Goods shall not\n apply to this Agreement. All disputes arising out of this Agreement\n involving Yahoo! or any of its subsidiaries shall be subject to the\n jurisdiction of the federal or state courts of northern California,\n with venue lying in Santa Clara County, California. No rights may be\n assigned, no obligations may be delegated, and this Agreement may not\n be transferred by You, in whole or in part, whether voluntary or by\n operation of law, including by way of sale of assets, merger or\n consolidation, without the prior written consent of Yahoo!, and any\n purported assignment, delegation or transfer without such consent\n shall be void ab initio. Any waiver of the provisions of this\n Agreement or of a party's rights or remedies under this Agreement must\n be in writing to be effective. Failure, neglect or delay by a party to\n enforce the provisions of this Agreement or its rights or remedies at\n any time, will not be construed or be deemed to be a waiver of such\n party's rights under this Agreement and will not in any way affect the\n validity of the whole or any part of this Agreement or prejudice such\n party's right to take subsequent action.", + "json": "ypl-1.0.json", + "yaml": "ypl-1.0.yml", + "html": "ypl-1.0.html", + "license": "ypl-1.0.LICENSE" + }, + { + "license_key": "ypl-1.1", + "category": "Copyleft", + "spdx_license_key": "YPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Yahoo! Public License, Version 1.1 (YPL)\n\nThis Yahoo! Public License (this \"Agreement\") is a legal agreement that\ndescribes the terms under which Yahoo! Inc., a Delaware corporation having its\nprincipal place of business at 701 First Avenue, Sunnyvale, California 94089\n(\"Yahoo!\") will provide software to you via download or otherwise (\"Software\").\nBy using the Software, you, an individual or an entity (\"You\") agree to the\nterms of this Agreement.\n\nIn consideration of the mutual promises and upon the terms and conditions set\nforth below, the parties agree as follows:\n\n1. Grant of Copyright License\n\n1.1 - Subject to the terms and conditions of this Agreement, Yahoo! hereby\ngrants to You, under any and all of its copyright interest in and to the\nSoftware, a royalty-free, non-exclusive, non-transferable license to copy,\nmodify, compile, execute, and distribute the Software and Modifications. For the\npurposes of this Agreement, any change to, addition to, or abridgement of the\nSoftware made by You is a \"Modification;\" however, any file You add to the\nSoftware that does not contain any part of the Software is not a \"Modification.\"\n\n1.2 - If You are an individual acting on behalf of a corporation or other\nentity, Your use of the Software or any Modification is subject to Your having\nthe authority to bind such corporation or entity to this Agreement. Providing\ncopies to persons within such corporation or entity is not considered\ndistribution for purposes of this Agreement.\n\n1.3 - For the Software or any Modification You distribute in source code format,\nYou must do so only under the terms of this Agreement, and You must include a\ncomplete copy of this Agreement with Your distribution. With respect to any\nModification You distribute in source code format, the terms of this Agreement\nwill apply to You in the same way those terms apply to Yahoo! with respect to\nthe Software. In other words, when You are distributing Modifications under this\nAgreement, You \"stand in the shoes\" of Yahoo! in terms of the rights You grant\nand how the terms and conditions apply to You and the licensees of Your\nModifications. Notwithstanding the foregoing, when You \"stand in the shoes\" of\nYahoo!, You are not subject to the jurisdiction provision under Section 7, which\nrequires all disputes under this Agreement to be subject to the jurisdiction of\nfederal or state courts of northern California.\n\n1.4 - For the Software or any Modification You distribute in compiled or object\ncode format, You must also provide recipients with access to the Software or\nModification in source code format along with a complete copy of this Agreement.\nThe distribution of the Software or Modifications in compiled or object code\nformat may be under a license of Your choice, provided that You are in\ncompliance with the terms of this Agreement. In addition, You must make\nabsolutely clear that any license terms applying to such Software or\nModification that differ from this Agreement are offered by You alone and not by\nYahoo!, and that such license does not restrict recipients from exercising\nrights in the source code to the Software granted by Yahoo! under this Agreement\nor rights in the source code to any Modification granted by You as described in\nSection 1.3.\n\n1.5 - This Agreement does not limit Your right to distribute files that are\nentirely Your own work (i.e., which do not incorporate any portion of the\nSoftware and are not Modifications) under any terms You choose.\n\n2. Support\n\nYahoo! has no obligation to provide technical support or updates to You. Nothing\nin this Agreement requires Yahoo! to enter into any license with You for any\nother edition of the Software.\n\n3. Intellectual Property Rights\n\n3.1 - Except for the license expressly granted under copyright in Section 1.1,\nno rights, licenses or forbearances are granted or may arise in relation to this\nAgreement whether expressly, by implication, exhaustion, estoppel or otherwise.\nAll rights, including all intellectual property rights, that are not expressly\ngranted under this Agreement are hereby reserved.\n\n3.2 - In any copy of the Software or in any Modification you create, You must\nretain and reproduce, any and all copyright, patent, trademark, and attribution\nnotices that are included in the Software in the same form as they appear in the\nSoftware. This includes the preservation of attribution notices in the form of\ntrademarks or logos that exist within a user interface of the Software.\n\n3.3 - This license does not grant You rights to use any party's name, logo, or\ntrademarks, except solely as necessary to comply with Section 3.2.\n\n4. Disclaimer of Warranties\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND WITHOUT WARRANTY OF ANY KIND. YAHOO! MAKES\nNO WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY REGARDING OR RELATING TO\nTHE SOFTWARE. SPECIFICALLY, YAHOO! DOES NOT WARRANT THAT THE SOFTWARE WILL BE\nERROR FREE OR WILL PERFORM IN AN UNINTERRUPTED MANNER. TO THE GREATEST EXTENT\nALLOWED BY LAW, YAHOO! SPECIFICALLY DISCLAIMS ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE (EVEN IF YAHOO! HAD BEEN\nINFORMED OF SUCH PURPOSE), AND NONINFRINGEMENT WITH RESPECT TO THE SOFTWARE, ANY\nMODIFICATIONS THERETO AND WITH RESPECT TO THE USE OF THE FOREGOING.\n\n5. Limitation of Liability\n\nIN NO EVENT WILL YAHOO! BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES OF ANY KIND (INCLUDING WITHOUT LIMITATION\nLOSS OF PROFITS, LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF DATA, COST OF\nCOVER) IN CONNECTION WITH OR ARISING OUT OF OR RELATING TO THE FURNISHING,\nPERFORMANCE OR USE OF THE SOFTWARE OR ANY OTHER RIGHTS GRANTED HEREUNDER,\nWHETHER ALLEGED AS A BREACH OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING\nNEGLIGENCE, AND EVEN IF YAHOO! HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n6. Term and Termination\n\n6.1 - This Agreement will continue in effect unless and until terminated earlier\npursuant to this Section 6.\n\n6.2 - In the event You violate the terms of this Agreement, Yahoo! may terminate\nthis Agreement.\n\n6.3 - All licenses granted hereunder shall terminate upon the termination of\nthis Agreement. Termination will be in addition to any rights and remedies\navailable to Yahoo! at law or equity or under this Agreement.\n\n6.4 - Termination of this Agreement will not affect the provisions regarding\nreservation of rights (Section 3.1), provisions disclaiming or limiting Yahoo!'s\nliability (Sections 4 and 5), Termination (Section 6) or Miscellaneous (Section\n7), which provisions will survive termination of this Agreement.\n\n7. Miscellaneous\n\nThis Agreement contains the entire agreement of the parties with respect to the\nsubject matter of this Agreement and supersedes all previous communications,\nrepresentations, understandings and agreements, either oral or written, between\nthe parties with respect to said subject matter. The relationship of the parties\nhereunder is that of independent contractors, and this Agreement will not be\nconstrued as creating an agency, partnership, joint venture or any other form of\nlegal association between the parties. If any term, condition, or provision in\nthis Agreement is found to be invalid, unlawful or unenforceable to any extent,\nthis Agreement will be construed in a manner that most closely effectuates the\nintent of this Agreement. Such invalid term, condition or provision will be\nsevered from the remaining terms, conditions and provisions, which will continue\nto be valid and enforceable to the fullest extent permitted by law. This\nAgreement will be interpreted and construed in accordance with the laws of the\nState of California and the United States of America, without regard to conflict\nof law principles. The U.N. Convention on Contracts for the International Sale\nof Goods shall not apply to this Agreement. All disputes arising out of this\nAgreement involving Yahoo! or any of its subsidiaries shall be subject to the\njurisdiction of the federal or state courts of northern California, with venue\nlying in Santa Clara County, California. No rights may be assigned, no\nobligations may be delegated, and this Agreement may not be transferred by You,\nin whole or in part, whether voluntary or by operation of law, including by way\nof sale of assets, merger or consolidation, without the prior written consent of\nYahoo!, and any purported assignment, delegation or transfer without such\nconsent shall be void ab initio. Any waiver of the provisions of this Agreement\nor of a party's rights or remedies under this Agreement must be in writing to be\neffective. Failure, neglect or delay by a party to enforce the provisions of\nthis Agreement or its rights or remedies at any time, will not be construed or\nbe deemed to be a waiver of such party's rights under this Agreement and will\nnot in any way affect the validity of the whole or any part of this Agreement or\nprejudice such party's right to take subsequent action.", + "json": "ypl-1.1.json", + "yaml": "ypl-1.1.yml", + "html": "ypl-1.1.html", + "license": "ypl-1.1.LICENSE" + }, + { + "license_key": "zapatec-calendar", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-zapatec-calendar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Zapatec DHTML/Javascript Calendar License Agreement\n\nCAREFULLY READ THE FOLLOWING LICENSE AGREEMENT. YOU ACCEPT AND AGREE TO BE BOUND BY THIS LICENSE AGREEMENT BY DOWNLOADING, INSTALLING, USING, OR DISTRIBUTING THE SOFTWARE. IF YOU DO NOT AGREE TO THIS LICENSE, DO NOT CLICK ON THE DOWNLOAD LINK AND THE SOFTWARE WILL NOT BE DOWNLOADED.\n\nDefinitions\n\n\"You\" means the person or company who is being licensed to use the Software or Documentation. \"We,\" \"us\" and \"our\" means Zapatec Inc, a California corporation.\n\nLicense types and Grant\n\nWe hereby grant you a nonexclusive license to use one copy of the Software, according to one of the following license types.\n\n Lite License\n\n We grant you a nonexclusive license to use one copy of the Software on a single computer, for use in one fully qualified domain name (FQDN).\n In return for the License Grant you will provide a link from each Web page the Software is used on to the Zapatec web page: http://www.zapatec.com/website/main/products/prod1/\n\n Single Server License\n\n We grant you a nonexclusive license to use one copy of the Software on a single computer, for use in one fully qualified domain name (FQDN).\n Domain Wide License\n\n We grant you a nonexclusive license to use the Software on a unlimited number of web pages within one domain name and its subdomains.\n Unlimited License\n\n We grant you a nonexclusive license to use one copy of the Software on any number of domains and subdomains owned by your company. You are not allowed to resell the software.\n Library License\n\n We grant you a nonexclusive license to resell or redistribute the Software only if (a) the Software is sold or redistributed as part of a software application or library that you have developed and of which the Software only comprises a part, and (b) you do not sell or distribute the Software in a form in which your customers could redistribute the Software in a manner that is competitive with our licensing of the Software . You may resell or distribute no more than 10,000 copies of the application or library that includes the software.\n\nTitle\n\nWe remain the owner of all right, title and interest in the Software and related explanatory written materials (\"Documentation\").\n\nArchival or Backup Copies\n\nYou may copy the Software for back up and archival purposes, provided that the original and each copy is kept in your possession and that your installation and use of the Software does not exceed that allowed in the \"License Grant\" section above.\n\nThings You May Not Do\n\nThe Software and Documentation are protected by United States copyright laws and international treaties. You must treat the Software and Documentation like any other copyrighted material-for example, a book. Except as contemplated above with respect to Library Licenses, you may not:\n\n copy the Documentation,\n copy the Software except to make archival or backup copies as provided above,\n sublicense, rent, lease or lend any portion of the Software or Documentation or,\n modify or remove any copyright notices from any of the Software files. \n\nTransfers\n\nExcept as contemplated above with respect to Library Licenses, you may not transfer your rights to use the Software and Documentation to another person or legal entity.\n\nLimited Warranty\nWe warrant that for a period of 90 days after delivery of this copy of the Software to you:\n\nthe Software will perform in substantial accordance with the Documentation.\n\nTo the extent permitted by applicable law, THE FOREGOING LIMITED WARRANTY IS IN LIEU OF ALL OTHER WARRANTIES OR CONDITIONS, EXPRESS OR IMPLIED, AND WE DISCLAIM ANY AND ALL IMPLIED WARRANTIES OR CONDITIONS, INCLUDING ANY IMPLIED WARRANTY OF TITLE, NONINFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, regardless of whether we know or had reason to know of your particular needs. No employee, agent, dealer or distributor of ours is authorized to modify this limited warranty, nor to make any additional warranties.\n\nSOME STATES DO NOT ALLOW THE LIMITATION OR EXCLUSION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE LIMITATION MAY NOT APPLY TO YOU.\n\nLimited Remedy\n\nOur entire liability and your exclusive remedy for breach of the foregoing warranty shall be, at our option, to either:\n\nreturn the price you paid, or\n\nrepair or replace the Software or media that does not meet the foregoing warranty if it is returned to us with a copy of your receipt.\n\nIN NO EVENT WILL WE BE LIABLE TO YOU FOR ANY DAMAGES, INCLUDING ANY LOST PROFITS, LOST SAVINGS, OR OTHER INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING FROM THE USE OR THE INABILITY TO USE THE SOFTWARE (EVEN IF WE OR AN AUTHORIZED DEALER OR DISTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF THESE DAMAGES), OR FOR ANY CLAIM BY ANY OTHER PARTY.\n\nSOME STATES DO NOT ALLOW THE LIMITATION OR EXCLUSION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE LIMITATION MAY NOT APPLY TO YOU.\n\nTerm and Termination\n\nThis license agreement takes effect upon your use of the software and remains effective until terminated. You may terminate it at any time by destroying all copies of the Software and Documentation in your possession. It will also automatically terminate if you fail to comply with any term or condition of this license agreement. You agree on termination of this license to destroy all copies of the Software and Documentation in your possession.\n\nGeneral Provisions\n\n1. This written license agreement is the exclusive agreement between you and us concerning the Software and Documentation and supersedes any prior purchase order, communication, advertising or representation concerning the Software.\n\n2. This license agreement may be modified only by a writing signed by you and us.\n\n3. In the event of litigation between you and us concerning the Software or Documentation, the prevailing party in the litigation will be entitled to recover attorney fees and expenses from the other party.\n\n4. This license agreement is governed by the laws of the State of California..\n\n5. You agree that the Software will not be shipped, transferred or exported into any country or used in any manner prohibited by the United States Export Administration Act or any other export laws, restrictions or regulations.\n\n\u00a9 2004-2006 Zapatec, Inc.", + "json": "zapatec-calendar.json", + "yaml": "zapatec-calendar.yml", + "html": "zapatec-calendar.html", + "license": "zapatec-calendar.LICENSE" + }, + { + "license_key": "zed", + "category": "Permissive", + "spdx_license_key": "Zed", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "You may copy and distribute this file freely. Any queries and complaints should\nbe forwarded to Jim.Davies@comlab.ox.ac.uk. If you make any changes to this\nfile, please do not distribute the results under the name `zed-csp.sty'.", + "json": "zed.json", + "yaml": "zed.yml", + "html": "zed.html", + "license": "zed.LICENSE" + }, + { + "license_key": "zend-2.0", + "category": "Permissive", + "spdx_license_key": "Zend-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "-------------------------------------------------------------------- \n The Zend Engine License, version 2.00\nCopyright (c) 1999-2002 Zend Technologies Ltd. All rights reserved.\n-------------------------------------------------------------------- \n\nRedistribution and use in source and binary forms, with or without\nmodification, is permitted provided that the following conditions\nare met:\n\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer. \n \n 2. Redistributions in binary form must reproduce the above \n copyright notice, this list of conditions and the following \n disclaimer in the documentation and/or other materials provided\n with the distribution.\n \n 3. The names \"Zend\" and \"Zend Engine\" must not be used to endorse\n or promote products derived from this software without prior\n permission from Zend Technologies Ltd. For written permission,\n please contact license@zend.com. \n \n 4. Zend Technologies Ltd. may publish revised and/or new versions\n of the license from time to time. Each version will be given a\n distinguishing version number.\n Once covered code has been published under a particular version\n of the license, you may always continue to use it under the\n terms of that version. You may also choose to use such covered\n code under the terms of any subsequent version of the license\n published by Zend Technologies Ltd. No one other than Zend\n Technologies Ltd. has the right to modify the terms applicable\n to covered code created under this License.\n\n 5. Redistributions of any form whatsoever must retain the following\n acknowledgment:\n \"This product includes the Zend Engine, freely available at\n http://www.zend.com\"\n\n 6. All advertising materials mentioning features or use of this\n software must display the following acknowledgment:\n \"The Zend Engine is freely available at http://www.zend.com\"\n\nTHIS SOFTWARE IS PROVIDED BY ZEND TECHNOLOGIES LTD. ``AS IS'' AND \nANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A \nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ZEND\nTECHNOLOGIES LTD. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\nUSE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\nOF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n--------------------------------------------------------------------", + "json": "zend-2.0.json", + "yaml": "zend-2.0.yml", + "html": "zend-2.0.html", + "license": "zend-2.0.LICENSE" + }, + { + "license_key": "zeromq-exception-lgpl-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-zeromq-exception-lgpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "SPECIAL EXCEPTION GRANTED BY COPYRIGHT HOLDERS\n\nAs a special exception, copyright holders give you permission to link this\nlibrary with independent modules to produce an executable, regardless of the\nlicense terms of these independent modules, and to copy and distribute the\nresulting executable under terms of your choice, provided that you also meet,\nfor each linked independent module, the terms and conditions of the license of\nthat module. An independent module is a module which is not derived from or\nbased on this library. If you modify this library, you must extend this\nexception to your version of the library.", + "json": "zeromq-exception-lgpl-3.0.json", + "yaml": "zeromq-exception-lgpl-3.0.yml", + "html": "zeromq-exception-lgpl-3.0.html", + "license": "zeromq-exception-lgpl-3.0.LICENSE" + }, + { + "license_key": "zeusbench", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-zeusbench", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This program may be used and copied freely providing this copyright notice\nis not removed.\n\nThis software is provided \"as is\" and any express or implied waranties, \nincluding but not limited to, the implied warranties of merchantability and\nfitness for a particular purpose are disclaimed. In no event shall \nZeus Technology Ltd. be liable for any direct, indirect, incidental, special, \nexemplary, or consequential damaged (including, but not limited to, \nprocurement of substitute good or services; loss of use, data, or profits;\nor business interruption) however caused and on theory of liability. Whether\nin contract, strict liability or tort (including negligence or otherwise) \narising in any way out of the use of this software, even if advised of the\npossibility of such damage.", + "json": "zeusbench.json", + "yaml": "zeusbench.yml", + "html": "zeusbench.html", + "license": "zeusbench.LICENSE" + }, + { + "license_key": "zhorn-stickies", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-zhorn-stickies", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Copyright, licence and disclaimer\nStickies is freeware. You may use this software on any number of computers for as long as you like, and you don't have to pay a penny. There are no crippled features for registered users only, no time delays and no stupid nag screens.\n\nAll that said, Stickies is not public domain software. I allow the free distribution of the software, but I retain ownership and copyright of the software and its source code in its entirety.\n\nYou may use and/or distribute this software only subject to the following conditions:\n\n You may not modify the program or documentation files in any way.\n You may not sell the software or charge a distribution fee, except to recover the media costs.\n You may not remove my name or copyright notification, and you may not claim to be the owner or author of this software.\n You understand and agree with this licence and with the disclaimer printed below. \n\nDisclaimer\nWhile every care has been taken to ensure that Stickies is safe, non-destructive and will not lose your data, you use this product entirely at your own risk. The author will not be held responsible or liable for any damages resulting from your use, misuse, or inability to use this product.\n\nIf you do not agree with this disclaimer or the above conditions of use, you should not use this product.", + "json": "zhorn-stickies.json", + "yaml": "zhorn-stickies.yml", + "html": "zhorn-stickies.html", + "license": "zhorn-stickies.LICENSE" + }, + { + "license_key": "zimbra-1.3", + "category": "Copyleft Limited", + "spdx_license_key": "Zimbra-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Zimbra Public License, Version 1.3 (ZPL)\n\nThis Zimbra Public License (this \"Agreement\") is a legal agreement that\ndescribes the terms under which VMware, Inc., a Delaware corporation having its\nprincipal place of business at 3401 Hillview Avenue, Palo Alto, California 94304\n(\"VMware\") will provide software to you via download or otherwise (\"Software\").\nBy using the Software, you, an individual or an entity (\"You\") agree to the\nterms of this Agreement.\n\nIn consideration of the mutual promises and upon the terms and conditions set\nforth below, the parties agree as follows:\n\n1.\tGrant of Copyright License\n\n1.1 - Subject to the terms and conditions of this Agreement, VMware hereby\ngrants to You, under any and all of its copyright interest in and to the\nSoftware, a royalty-free, non-exclusive, non-transferable license to copy,\nmodify, compile, execute, and distribute the Software and Modifications. For the\npurposes of this Agreement, any change to, addition to, or abridgement of the\nSoftware made by You is a \"Modification;\" however, any file You add to the\nSoftware that does not contain any part of the Software is not a \"Modification.\"\n\n1.2 - If You are an individual acting on behalf of a corporation or other\nentity, Your use of the Software or any Modification is subject to Your having\nthe authority to bind such corporation or entity to this Agreement. Providing\ncopies to persons within such corporation or entity is not considered\ndistribution for purposes of this Agreement.\n\n1.3 - For the Software or any Modification You distribute in source code format,\nYou must do so only under the terms of this Agreement, and You must include a\ncomplete copy of this Agreement with Your distribution. With respect to any\nModification You distribute in source code format, the terms of this Agreement\nwill apply to You in the same way those terms apply to VMware with respect to\nthe Software. In other words, when You are distributing Modifications under this\nAgreement, You \"stand in the shoes\" of VMware in terms of the rights You grant\nand how the terms and conditions apply to You and the licensees of Your\nModifications. Notwithstanding the foregoing, when You \"stand in the shoes\" of\nVMware, You are not subject to the jurisdiction provision under Section 7, which\nrequires all disputes under this Agreement to be subject to the jurisdiction of\nfederal or state courts of northern California.\n\n1.4 - For the Software or any Modification You distribute in compiled or object\ncode format, You must also provide recipients with access to the Software or\nModification in source code format along with a complete copy of this Agreement.\nThe distribution of the Software or Modifications in compiled or object code\nformat may be under a license of Your choice, provided that You are in\ncompliance with the terms of this Agreement. In addition, You must make\nabsolutely clear that any license terms applying to such Software or\nModification that differ from this Agreement are offered by You alone and not by\nVMware, and that such license does not restrict recipients from exercising\nrights in the source code to the Software granted by VMware under this Agreement\nor rights in the source code to any Modification granted by You as described in\nSection 1.3.\n\n1.5 - This Agreement does not limit Your right to distribute files that are\nentirely Your own work (i.e., which do not incorporate any portion of the\nSoftware and are not Modifications) under any terms You choose.\n\n2.\tSupport\n\nVMware has no obligation to provide technical support or updates to You. Nothing\nin this Agreement requires VMware to enter into any license with You for any\nother edition of the Software.\n\n3.\tIntellectual Property Rights\n\n3.1 - Except for the license expressly granted under copyright in Section 1.1,\nno rights, licenses or forbearances are granted or may arise in relation to this\nAgreement whether expressly, by implication, exhaustion, estoppel or otherwise.\nAll rights, including all intellectual property rights, that are not expressly\ngranted under this Agreement are hereby reserved.\n\n3.2 - In any copy of the Software or in any Modification you create, You must\nretain and reproduce, any and all copyright, patent, trademark, and attribution\nnotices that are included in the Software in the same form as they appear in the\nSoftware. This includes the preservation of attribution notices in the form of\ntrademarks or logos that exist within a user interface of the Software.\n\n3.3 - This license does not grant You rights to use any party's name, logo, or\ntrademarks, except solely as necessary to comply with Section 3.2.\n\n4.\tDisclaimer of Warranties\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND WITHOUT WARRANTY OF ANY KIND. VMWARE MAKES\nNO WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY REGARDING OR RELATING TO\nTHE SOFTWARE. SPECIFICALLY, VMWARE DOES NOT WARRANT THAT THE SOFTWARE WILL BE\nERROR FREE OR WILL PERFORM IN AN UNINTERRUPTED MANNER. TO THE GREATEST EXTENT\nALLOWED BY LAW, VMWARE SPECIFICALLY DISCLAIMS ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE (EVEN IF VMWARE HAD BEEN\nINFORMED OF SUCH PURPOSE), AND NONINFRINGEMENT WITH RESPECT TO THE SOFTWARE, ANY\nMODIFICATIONS THERETO AND WITH RESPECT TO THE USE OF THE FOREGOING.\n\n5.\tLimitation of Liability\n\nIN NO EVENT WILL VMWARE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES OF ANY KIND (INCLUDING WITHOUT LIMITATION\nLOSS OF PROFITS, LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF DATA, COST OF\nCOVER) IN CONNECTION WITH OR ARISING OUT OF OR RELATING TO THE FURNISHING,\nPERFORMANCE OR USE OF THE SOFTWARE OR ANY OTHER RIGHTS GRANTED HEREUNDER,\nWHETHER ALLEGED AS A BREACH OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING\nNEGLIGENCE, AND EVEN IF VMWARE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n6.\tTerm and Termination\n\n6.1 - This Agreement will continue in effect unless and until terminated earlier\npursuant to this Section 6.\n\n6.2 - In the event You violate the terms of this Agreement, VMware may terminate\nthis Agreement.\n\n6.3 - All licenses granted hereunder shall terminate upon the termination of\nthis Agreement. Termination will be in addition to any rights and remedies\navailable to VMware at law or equity or under this Agreement.\n\n6.4 - Termination of this Agreement will not affect the provisions regarding\nreservation of rights (Section 3.1), provisions disclaiming or limiting VMware's\nliability (Sections 4 and 5), Termination (Section 6) or Miscellaneous (Section\n7), which provisions will survive termination of this Agreement.\n\n7.\tMiscellaneous\n\nThis Agreement contains the entire agreement of the parties with respect to the\nsubject matter of this Agreement and supersedes all previous communications,\nrepresentations, understandings and agreements, either oral or written, between\nthe parties with respect to said subject matter. The relationship of the parties\nhereunder is that of independent contractors, and this Agreement will not be\nconstrued as creating an agency, partnership, joint venture or any other form of\nlegal association between the parties. If any term, condition, or provision in\nthis Agreement is found to be invalid, unlawful or unenforceable to any extent,\nthis Agreement will be construed in a manner that most closely effectuates the\nintent of this Agreement. Such invalid term, condition or provision will be\nsevered from the remaining terms, conditions and provisions, which will continue\nto be valid and enforceable to the fullest extent permitted by law. This\nAgreement will be interpreted and construed in accordance with the laws of the\nState of California and the United States of America, without regard to conflict\nof law principles. The U.N. Convention on Contracts for the International Sale\nof Goods shall not apply to this Agreement. All disputes arising out of this\nAgreement involving VMware or any of its subsidiaries shall be subject to the\njurisdiction of the federal or state courts of northern California, with venue\nlying in Santa Clara County, California. No rights may be assigned, no\nobligations may be delegated, and this Agreement may not be transferred by You,\nin whole or in part, whether voluntary or by operation of law, including by way\nof sale of assets, merger or consolidation, without the prior written consent of\nVMware, and any purported assignment, delegation or transfer without such\nconsent shall be void ab initio. Any waiver of the provisions of this Agreement\nor of a party's rights or remedies under this Agreement must be in writing to be\neffective. Failure, neglect or delay by a party to enforce the provisions of\nthis Agreement or its rights or remedies at any time, will not be construed or\nbe deemed to be a waiver of such party's rights under this Agreement and will\nnot in any way affect the validity of the whole or any part of this Agreement or\nprejudice such party's right to take subsequent action.", + "json": "zimbra-1.3.json", + "yaml": "zimbra-1.3.yml", + "html": "zimbra-1.3.html", + "license": "zimbra-1.3.LICENSE" + }, + { + "license_key": "zimbra-1.4", + "category": "Copyleft Limited", + "spdx_license_key": "Zimbra-1.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Zimbra Public License, Version 1.4 (ZPL)\nThis Zimbra Public License (this \"Agreement\") is a legal agreement that describes the terms under which Zimbra, Inc., a Texas corporation (\"Zimbra\") will provide software to you via download or otherwise (\"Software\"). By using the Software, you, an individual or an entity (\"You\") agree to the terms of this Agreement.\n\nIn consideration of the mutual promises and upon the terms and conditions set forth below, the parties agree as follows:\n\n1. Grant of Copyright License\n\n1.1 - Subject to the terms and conditions of this Agreement, Zimbra hereby grants to You, under any and all of its copyright interest in and to the Software, a royalty-free, non-exclusive, non-transferable license to copy, modify, compile, execute, and distribute the Software and Modifications. For the purposes of this Agreement, any change to, addition to, or abridgement of the Software made by You is a \"Modification;\" however, any file You add to the Software that does not contain any part of the Software is not a \"Modification.\"\n\n1.2 - If You are an individual acting on behalf of a corporation or other entity, Your use of the Software or any Modification is subject to Your having the authority to bind such corporation or entity to this Agreement. Providing copies to persons within such corporation or entity is not considered distribution for purposes of this Agreement.\n\n1.3 - For the Software or any Modification You distribute in source code format, You must do so only under the terms of this Agreement, and You must include a complete copy of this Agreement with Your distribution. With respect to any Modification You distribute in source code format, the terms of this Agreement will apply to You in the same way those terms apply to Zimbra with respect to the Software. In other words, when You are distributing Modifications under this Agreement, You \"stand in the shoes\" of Zimbra in terms of the rights You grant and how the terms and conditions apply to You and the licensees of Your Modifications. Notwithstanding the foregoing, when You \"stand in the shoes\" of Zimbra, You are not subject to the jurisdiction provision under Section 7, which requires all disputes under this Agreement to be subject to the jurisdiction of federal or state courts of Northern Texas.\n\n1.4 - For the Software or any Modification You distribute in compiled or object code format, You must also provide recipients with access to the Software or Modification in source code format along with a complete copy of this Agreement. The distribution of the Software or Modifications in compiled or object code format may be under a license of Your choice, provided that You are in compliance with the terms of this Agreement. In addition, You must make absolutely clear that any license terms applying to such Software or Modification that differ from this Agreement are offered by You alone and not by Zimbra, and that such license does not restrict recipients from exercising rights in the source code to the Software granted by Zimbra under this Agreement or rights in the source code to any Modification granted by You as described in Section 1.3.\n\n1.5 - This Agreement does not limit Your right to distribute files that are entirely Your own work (i.e., which do not incorporate any portion of the Software and are not Modifications) under any terms You choose.\n\n2. Support \nZimbra has no obligation to provide technical support or updates to You. Nothing in this Agreement requires Zimbra to enter into any license with You for any other edition of the Software.\n\n3. Intellectual Property Rights\n\n3.1 - Except for the license expressly granted under copyright in Section 1.1, no rights, licenses or forbearances are granted or may arise in relation to this Agreement whether expressly, by implication, exhaustion, estoppel or otherwise. All rights, including all intellectual property rights, that are not expressly granted under this Agreement are hereby reserved.\n\n3.2 - In any copy of the Software or in any Modification you create, You must retain and reproduce any and all copyright, patent, trademark, and attribution notices that are included in the Software in the same form as they appear in the Software. This includes the preservation of attribution notices in the form of trademarks or logos that exist within a user interface of the Software.\n\n3.3 - This license does not grant You rights to use any party\u2019s name, logo, or trademarks, except solely as necessary to comply with Section 3.2.\n\n4. Disclaimer of Warranties \nTHE SOFTWARE IS PROVIDED \"AS IS\" AND WITHOUT WARRANTY OF ANY KIND. ZIMBRA MAKES NO WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY, REGARDING OR RELATING TO THE SOFTWARE. SPECIFICALLY, ZIMBRA DOES NOT WARRANT THAT THE SOFTWARE WILL BE ERROR FREE OR WILL PERFORM IN AN UNINTERRUPTED MANNER. TO THE GREATEST EXTENT ALLOWED BY LAW, ZIMBRA SPECIFICALLY DISCLAIMS ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE (EVEN IF ZIMBRA HAD BEEN INFORMED OF SUCH PURPOSE), AND NONINFRINGEMENT WITH RESPECT TO THE SOFTWARE, ANY MODIFICATIONS THERETO, AND WITH RESPECT TO THE USE OF THE FOREGOING.\n\n5. Limitation of Liability \nIN NO EVENT WILL ZIMBRA BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES OF ANY KIND (INCLUDING WITHOUT LIMITATION LOSS OF PROFITS, LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF DATA, AND COST OF COVER) IN CONNECTION WITH OR ARISING OUT OF OR RELATING TO THE FURNISHING, PERFORMANCE, OR USE OF THE SOFTWARE OR ANY OTHER RIGHTS GRANTED HEREUNDER, WHETHER ALLEGED AS A BREACH OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, AND EVEN IF ZIMBRA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n6. Term and Termination\n\n6.1 - This Agreement will continue in effect unless and until terminated earlier pursuant to this Section 6.\n\n6.2 - In the event You violate the terms of this Agreement, Zimbra may terminate this Agreement.\n\n6.3 - All licenses granted hereunder shall terminate upon the termination of this Agreement. Termination will be in addition to any rights and remedies available to Zimbra at law or equity or under this Agreement.\n\n6.4 - Termination of this Agreement will not affect the provisions regarding reservation of rights (Section 3.1), provisions disclaiming or limiting Zimbra\u2019s liability (Sections 4 and 5), Termination (Section 6), or Miscellaneous (Section 7), which provisions will survive termination of this Agreement.\n\n7. Miscellaneous \nThis Agreement contains the entire agreement of the parties with respect to the subject matter of this Agreement and supersedes all previous communications, representations, understandings, and agreements, either oral or written, between the parties with respect to said subject matter. The relationship of the parties hereunder is that of independent contractors, and this Agreement will not be construed as creating an agency, partnership, joint venture, or any other form of legal association between the parties. If any term, condition, or provision in this Agreement is found to be invalid, unlawful, or unenforceable to any extent, this Agreement will be construed in a manner that most closely effectuates the intent of this Agreement. Such invalid term, condition or provision will be severed from the remaining terms, conditions, and provisions, which will continue to be valid and enforceable to the fullest extent permitted by law. This Agreement will be interpreted and construed in accordance with the laws of the State of Delaware and the United States of America, without regard to conflict of law principles. The U.N. Convention on Contracts for the International Sale of Goods shall not apply to this Agreement. All disputes arising out of this Agreement involving Zimbra or any of its parents or subsidiaries shall be subject to the jurisdiction of the federal or state courts of Northern Texas, with venue lying in Dallas County, Texas. No rights may be assigned, no obligations may be delegated, and this Agreement may not be transferred by You, in whole or in part, whether voluntary or by operation of law, including by way of sale of assets, merger, or consolidation, without the prior written consent of Zimbra, and any purported assignment, delegation, or transfer without such consent shall be void ab initio. Any waiver of the provisions of this Agreement or of a party\u2019s rights or remedies under this Agreement must be in writing to be effective. Failure, neglect, or delay by a party to enforce the provisions of this Agreement or its rights or remedies at any time will not be construed or be deemed to be a waiver of such party\u2019s rights under this Agreement and will not in any way affect the validity of the whole or any part of this Agreement or prejudice such party\u2019s right to take subsequent action.", + "json": "zimbra-1.4.json", + "yaml": "zimbra-1.4.yml", + "html": "zimbra-1.4.html", + "license": "zimbra-1.4.LICENSE" + }, + { + "license_key": "zipeg", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-zipeg", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Zipeg License\n\nRedistribution and use in any forms, without modification, is permitted provided\nthat the following conditions are met:\n\nRedistributions must reproduce the above copyright notice, this list of\nconditions and the following disclaimer in the documentation and/or other\nmaterials provided with the distribution.\n\nNeither the name of the www.zipeg.com nor the names of its contributors may be\nused to endorse or promote products derived from this software without specific\nprior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "json": "zipeg.json", + "yaml": "zipeg.yml", + "html": "zipeg.html", + "license": "zipeg.LICENSE" + }, + { + "license_key": "ziplist5-geocode-duplication-addendum", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-dup-addendum", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ziplist5-geocode-duplication-addendum" + ], + "is_exception": false, + "is_deprecated": false, + "text": "ZIPList5 Geocode Duplication License Addendum\n\n\nDUPLICATION LICENSE ADDENDUM\nPlease read this ZIPList5 Geocode Duplication License Addendum before duplicating ZIPList5 Geocode. This Duplication License Addendum amends and supplements the ZIPList5 Geocode End-User Enterprise License or End-User Workstation License to which it is attached. You and your organization, as the Licensee, indicate your acceptance of the Terms and Conditions of this Addendum by duplicating and distribution to third parties derivative works containing ZIPList5 Geocode in whole or in part. If you do not agree to the terms of this Duplication License Addendum, you are not permitted to duplicate ZIPList5 Geocode for distribution to third parties, and you must immediately notify CD Light, LLC for a refund of the duplication license addendum purchase price.\n\nGRANT OF LICENSE\n\nCD Light, LLC grants Licensee the following additional non-exclusive, world-wide rights with respect to ZIPList5 Geocode. Licensee may: (a) use ZIPList5 Geocode in accordance with the terms of this Addendum; (b) make multiple copies of ZIPList5 Geocode for backup or archival purposes; (c) incorporate ZIPList5 Geocode, in whole or in part, into a derivative work, for commercial or non-profit distribution outside of Licensee's organization; and (d) make and sell multiple copies of the derivative work containing ZIPList5 Geocode, provided Licensee makes no more copies than the number specified by the ZIPList5 Geocode Duplication License Addendum invoice issued to Licensee by CD Light, LLC.\n\nRESTRICTIONS\n\nLicensee may NOT: (a) use, copy, or distribute ZIPList5 Geocode except as provided in this Addendum; (b) modify, adapt, or translate ZIPList5 Geocode in whole or in part, except as provided in this Addendum; or (c) copy and/or distribute ZIPList5 Geocode in its entirety as a database file containing nothing other than raw data.\n\nDISTRIBUTION\n\nPermission to distribute ZIPList5 Geocode, in whole or in part, as part of a derivative work, outside of Licensee's organization, is specifically granted by this Addendum.\n\nDERIVATIVE WORKS\n\nPermission to prepare derivative works, incorporating ZIPList5 Geocode in whole or in part is granted to Licensee. Such derivative works may be distributed commercially or privately outside of the Licensee's organization.\n\nTERM\n\nThe term of this Addendum shall be perpetual from the date of the invoice for ZIPList5 Geocode issued to Licensee by CD Light, LLC. All provisions of this Addendum apply to all versions of ZIPList5 Geocode delivered to Licensee by CD Light, LLC under the terms of the attached ZIPList5 Geocode Workstation or Enterprise License Agreement, and remain in effect after all such version updates have been delivered to Licensee by CD Light, LLC.\n\nVERSION UPDATES\n\nThis Addendum entitles Licensee to duplicate the one version (\"Current Version\") of ZIPList5 Geocode which is available from CD Light, LLC on the date of the invoice issued to Licensee by CD Light, LLC. However, if Licensee has paid for a quarterly subscription for ZIPList5 Geocode, Licensee is entitled to receive the Current Version, plus the next three (3) quarterly version updates of ZIPList5 Geocode. If Licensee has paid for a monthly subscription for ZIPList5 Geocode, Licensee is entitled to receive the Current Version, plus the next eleven (11) monthly version updates of ZIPList5 Geocode.\n\nOWNERSHIP & COPYRIGHT\n\nTitle, ownership rights and intellectual property rights in and to ZIPList5 Geocode and all copies thereof shall remain in CD Light, LLC and/or its licensors. ZIPList5 Geocode is copyrighted and protected by United States copyright laws and international treaty provisions. Licensee agrees: (a) not to remove any copyright notice from ZIPList5 Geocode; (b) to reproduce all such notices on any authorized copies Licensee makes; and (c) to use best efforts to prevent any unauthorized copying of ZIPList5 Geocode.\n\nZIPList5 Geocode, in its various forms, is a compilation of information gathered by CD Light, LLC. ZIPList5 Geocode contains a large body of information that is public knowledge, but at the same time it represents a substantial creative compilation effort. Accordingly, it enjoys the same copyright protection as other reference works, such as dictionaries, that contain compilation effort.\n\nIf Licensee has any questions concerning this Addendum, please send email to support@zipinfo.com or write to CD Light, LLC, 230 N Tranquil Path Dr, The Woodlands, TX 77380-2758, USA.", + "json": "ziplist5-geocode-duplication-addendum.json", + "yaml": "ziplist5-geocode-duplication-addendum.yml", + "html": "ziplist5-geocode-duplication-addendum.html", + "license": "ziplist5-geocode-duplication-addendum.LICENSE" + }, + { + "license_key": "ziplist5-geocode-end-user-enterprise", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-enterprise", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ziplist5-geocode-end-user-enterprise" + ], + "is_exception": false, + "is_deprecated": false, + "text": "ZIPList5 Geocode End-User Enterprise License Agreement\n\nLICENSE AGREEMENT\nPlease read this License Agreement before using ZIPList5 Geocode. This is a contract with important legal consequences. You and your organization, as the Licensee, indicate your acceptance of the Terms and Conditions of this Agreement by using or copying ZIPList5 Geocode. If you do not agree to the terms of this License Agreement, you are not permitted to use ZIPList5 Geocode, and you must immediately delete all downloaded files of ZIPList5 Geocode from your computer(s) and/or promptly return the ZIPList5 Geocode media to CD Light, LLC for a refund of the purchase price.\n\nGRANT OF LICENSE\n\nCD Light, LLC grants Licensee the following non-exclusive, world-wide rights with respect to ZIPList5 Geocode. Licensee may: (a) use ZIPList5 Geocode in accordance with the terms of this Agreement; (b) make multiple copies of ZIPList5 Geocode for backup or archival purposes; (c) install ZIPList5 Geocode at multiple locations and/or on multiple computers or workstations. ZIPList5 Geocode may be installed on multiple network servers, in whole or in part, or as part of a derivative work, and may be used simultaneously by an unlimited number of users within Licensee's organization.\n\nRESTRICTIONS\n\nLicensee may NOT: (a) use or copy ZIPList5 Geocode except as provided in this Agreement; (b) transfer, rent, lease, lend, copy, modify, translate, sublicense, timeshare, or electronically transmit ZIPList5 Geocode or any derivatives thereof to any third party; (c) modify, adapt, or translate ZIPList5 Geocode in whole or in part, except as provided in this Agreement; or (d) incorporate ZIPList5 Geocode into another product for commercial or non-profit distribution.\n\nDISTRIBUTION\n\nPermission to distribute ZIPList5 Geocode, in whole or in part, or as part of a derivative work, outside of Licensee's organization, is not granted by this Agreement, and is specifically prohibited.\n\nDERIVATIVE WORKS\n\nPermission to prepare derivative works, incorporating ZIPList5 Geocode in whole or in part, for use only within Licensee's organization, is granted to Licensee. Such derivative works may be distributed within Licensee's organization and/or used simultaneously used by an unlimited number of users within Licensee's organization.\n\nSuch derivative works may not be used or distributed, commercially or privately, outside of the Licensee's organization. The Licensee may obtain the additional right to distribute derivative works incorporating ZIPList5 Geocode in whole or in part, outside of Licensee's organization, but only by acquiring an additional ZIPList5 Geocode Duplication License Addendum and paying the appropriate royalty fee to CD Light, LLC.\n\nTERM\n\nThe term of this Agreement shall be perpetual from the date of the invoice for ZIPList5 Geocode issued to Licensee by CD Light, LLC.\n\nVERSION UPDATES\n\nThis Agreement entitles Licensee to use the one version (\"Current Version\") of ZIPList5 Geocode which is available from CD Light, LLC on the date of the invoice issued to Licensee by CD Light, LLC. However, if Licensee has paid for a quarterly subscription for ZIPList5 Geocode, Licensee is entitled to receive the Current Version, plus the next three (3) quarterly version updates of ZIPList5 Geocode. If Licensee has paid for a monthly subscription for ZIPList5 Geocode, Licensee is entitled to receive the Current Version, plus the next eleven (11) monthly version updates of ZIPList5 Geocode. All provisions of this Agreement apply to all versions of ZIPList5 Geocode delivered to Licensee by CD Light, LLC, and remain in effect after all version updates have been delivered to Licensee by CD Light, LLC.\n\nOWNERSHIP & COPYRIGHT\n\nTitle, ownership rights and intellectual property rights in and to ZIPList5 Geocode and all copies thereof shall remain in CD Light, LLC and/or its licensors. ZIPList5 Geocode is copyrighted and protected by United States copyright laws and international treaty provisions. Licensee agrees: (a) not to remove any copyright notice from ZIPList5 Geocode; (b) to reproduce all such notices on any authorized copies Licensee makes; and (c) to use best efforts to prevent any unauthorized copying of ZIPList5 Geocode.\n\nZIPList5 Geocode, in its various forms, is a compilation of information gathered by CD Light, LLC. ZIPList5 Geocode contains a large body of information that is public knowledge, but at the same time it represents a substantial creative compilation effort. Accordingly, it enjoys the same copyright protection as other reference works, such as dictionaries, that contain compilation effort.\n\nLIMITED WARRANTY\n\nFor a period of thirty (30) days from the date of the ZIPList5 Geocode invoice issued to Licensee by CD Light, LLC, CD Light, LLC warrants that: (a) the media (if any) on which ZIPList5 Geocode is distributed will be free from defects in material and workmanship under normal use; and (b) the database conforms substantially to the accompanying Documentation. Specifically, CD Light, LLC makes no representation or warranty that ZIPList5 Geocode data, or the accompanying Documentation are \"error-free\", or meet Licensee's particular standards, requirements, or needs. In all events, any implied warranty, representation, condition, or other term is limited to the physical media (if any) and documentation, and is limited to the 30-day duration of the limited warranty. If CD Light, LLC receives notification within the warranty period of defects in materials or workmanship, and determines that such notification is correct, CD Light, LLC will replace the defective media or documentation.\n\nNO OTHER WARRANTIES\n\nCD LIGHT SPECIFICALLY DISCLAIMS ALL OTHER WARRANTIES, REPRESENTATIONS, OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, ANY IMPLIED WARRANTY OR CONDITION OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. ALL OTHER IMPLIED TERMS ARE EXCLUDED.\n\nLIMITATION OF LIABILITY\n\nThe entire and exclusive liability and remedy for breach of the limited warranty shall be limited to replacement of defective media or documentation and shall not include or extend to any claim for or right to recover any other damages, including but not limited to, loss of profit, data, or use of the software or special, incidental or consequential damages, or other similar claims, even if CD Light, LLC has been specifically advised of the possibility of such damages. In no event will CD Light, LLC's liability for any damages to Licensee or any third party ever exceed the original purchase price paid for the package or the license to use the software, regardless of the form of the claim.\n\nTERMINATION\n\nLicensee may terminate this Agreement at any time. CD Light, LLC will immediately terminate this Agreement and Licensee's right to use ZIPList5 Geocode without written notice upon Licensee's failure to comply with any provision of this Agreement. If this Agreement is terminated for any reason, Licensee will: (a) cease all use of ZIPList5 Geocode; and (b) delete ZIPList5 Geocode and all copies from all computers on which it is resident.\n\nENTIRE AGREEMENT\n\nThis Agreement represents the complete agreement between the parties relating to this license for ZIPList5 Geocode and supersedes all prior agreements, communications, proposals, and representations between the parties and prevails over any conflicting or additional terms of any quote, order, acknowledgment or similar communication. This Agreement may only be modified by a license addendum which accompanies this license or by a written document signed by both parties.\n\nGOVERNMENT RESTRICTED RIGHTS\n\nZIPList5 Geocode is provided with RESTRICTED RIGHTS. Use, duplication, or disclosure by the United States Government is subject to restrictions as set forth in subpara-graph (c) (1) (ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs (c) (1) and (2) of the Commercial Computer Software-Restricted Rights clause at 48 CFR 52.227-19, as applicable. Manufacturer is CD Light, LLC, 230 N Tranquil Path Dr, The Woodlands, TX 77380-2758.\n\nGENERAL\n\nThis Agreement is governed and interpreted in accordance with the laws of the State of Texas, USA, except for that body of law dealing with conflicts of law. If any provision of this Agreement is held by a court of competent jurisdiction to be contrary to law, that provision will be enforced to the maximum extent permissible and the remaining provisions of this Agreement will remain in full force and effect.\n\nIf Licensee has any questions concerning this Agreement, please send email to support@zipinfo.com or write to CD Light, LLC, 230 N Tranquil Path Dr, The Woodlands, TX 77380-2758, USA.", + "json": "ziplist5-geocode-end-user-enterprise.json", + "yaml": "ziplist5-geocode-end-user-enterprise.yml", + "html": "ziplist5-geocode-end-user-enterprise.html", + "license": "ziplist5-geocode-end-user-enterprise.LICENSE" + }, + { + "license_key": "ziplist5-geocode-end-user-workstation", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-workstation", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ziplist5-geocode-end-user-workstation" + ], + "is_exception": false, + "is_deprecated": false, + "text": "ZIPList5 Geocode End-User Workstation (Single-User) License Agreement\n\nLICENSE AGREEMENT\nPlease read this License Agreement before using ZIPList5 Geocode. This is a contract with important legal consequences. You and your organization, as the Licensee, indicate your acceptance of the Terms and Conditions of this Agreement by using or copying ZIPList5 Geocode. If you do not agree to the terms of this License Agreement, you are not permitted to use ZIPList5 Geocode, and you must immediately delete all downloaded files of ZIPList5 Geocode from your computer(s) and/or promptly return the ZIPList5 Geocode media to CD Light, LLC for a refund of the purchase price.\n\nGRANT OF LICENSE\n\nCD Light, LLC grants Licensee the following non-exclusive, world-wide rights with respect to ZIPList5 Geocode. Licensee may: (a) use ZIPList5 Geocode in accordance with the terms of this Agreement; (b) make one copy of ZIPList5 Geocode for backup or archival purposes; (c) install ZIPList5 Geocode at a single location on one computer or one single-user workstation. ZIPList5 Geocode may be installed on a network server, in whole or in part, or as part of a derivative work, provided it is in use at any one time by no more than the number of Workstation (Single-User) Licenses specified by the ZIPList5 Geocode invoice issued to Licensee by CD Light, LLC.\n\nRESTRICTIONS\n\nLicensee may NOT: (a) use or copy ZIPList5 Geocode except as provided in this Agreement; (b) transfer, rent, lease, lend, copy, modify, translate, sublicense, timeshare, or electronically transmit ZIPList5 Geocode or any derivatives thereof to any third party; (c) modify, adapt, or translate ZIPList5 Geocode in whole or in part, except as provided in this Agreement; or (d) incorporate ZIPList5 Geocode into another product for commercial or non-profit distribution.\n\nDISTRIBUTION\n\nPermission to distribute ZIPList5 Geocode, in whole or in part, or as part of a derivative work, outside of Licensee's immediate organization, is not granted by this Agreement, and is specifically prohibited.\n\nDERIVATIVE WORKS\n\nPermission to prepare derivative works, incorporating ZIPList5 Geocode in whole or in part, for use only within Licensee's organization, is granted to Licensee, provided that any such derivative work is in use at any one time by no more than the number of Workstation (Single-User) Licenses specified by the ZIPList5 Geocode invoice issued to Licensee by CD Light, LLC.\n\nSuch derivative works may not be distributed commercially or privately, or used outside of the Licensee's immediate organization. The Licensee may obtain the additional right to distribute derivative works incorporating ZIPList5 Geocode in whole or in part, but only by acquiring an additional ZIPList5 Geocode Duplication License Addendum and paying the appropriate royalty fee to CD Light, LLC.\n\nTERM\n\nThe term of this Agreement shall be perpetual from the date of the invoice for ZIPList5 Geocode issued to Licensee by CD Light, LLC.\n\nVERSION UPDATES\n\nThis Agreement entitles Licensee to use the one version (\"Current Version\") of ZIPList5 Geocode which is available from CD Light, LLC on the date of the invoice issued to Licensee by CD Light, LLC. However, if Licensee has paid for a quarterly subscription for ZIPList5 Geocode, Licensee is entitled to receive the Current Version, plus the next three (3) quarterly version updates of ZIPList5 Geocode. If Licensee has paid for a monthly subscription for ZIPList5 Geocode, Licensee is entitled to receive the Current Version, plus the next eleven (11) monthly version updates of ZIPList5 Geocode. All provisions of this Agreement apply to all versions of ZIPList5 Geocode delivered to Licensee by CD Light, LLC, and remain in effect after all version updates have been delivered to Licensee by CD Light, LLC.\n\nOWNERSHIP & COPYRIGHT\n\nTitle, ownership rights and intellectual property rights in and to ZIPList5 Geocode and all copies thereof shall remain in CD Light, LLC and/or its licensors. ZIPList5 Geocode is copyrighted and protected by United States copyright laws and international treaty provisions. Licensee agrees: (a) not to remove any copyright notice from ZIPList5 Geocode; (b) to reproduce all such notices on any authorized copies Licensee makes; and (c) to use best efforts to prevent any unauthorized copying of ZIPList5 Geocode.\n\nZIPList5 Geocode, in its various forms, is a compilation of information gathered by CD Light, LLC. ZIPList5 Geocode contains a large body of information that is public knowledge, but at the same time it represents a substantial creative compilation effort. Accordingly, it enjoys the same copyright protection as other reference works, such as dictionaries, that contain compilation effort.\n\nLIMITED WARRANTY\n\nFor a period of thirty (30) days from the date of the ZIPList5 Geocode invoice issued to Licensee by CD Light, LLC, CD Light, LLC warrants that: (a) the media (if any) on which ZIPList5 Geocode is distributed will be free from defects in material and workmanship under normal use; and (b) the database conforms substantially to the accompanying Documentation. Specifically, CD Light, LLC makes no representation or warranty that ZIPList5 Geocode data, or the accompanying Documentation are \"error-free\", or meet Licensee's particular standards, requirements, or needs. In all events, any implied warranty, representation, condition, or other term is limited to the physical media (if any) and documentation, and is limited to the 30-day duration of the limited warranty. If CD Light, LLC receives notification within the warranty period of defects in materials or workmanship, and determines that such notification is correct, CD Light, LLC will replace the defective media or documentation.\n\nNO OTHER WARRANTIES\n\nCD LIGHT SPECIFICALLY DISCLAIMS ALL OTHER WARRANTIES, REPRESENTATIONS, OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, ANY IMPLIED WARRANTY OR CONDITION OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. ALL OTHER IMPLIED TERMS ARE EXCLUDED. LIMITATION OF LIABILITY\n\nThe entire and exclusive liability and remedy for breach of the limited warranty shall be limited to replacement of defective media or documentation and shall not include or extend to any claim for or right to recover any other damages, including but not limited to, loss of profit, data, or use of the software or special, incidental or consequential damages, or other similar claims, even if CD Light, LLC has been specifically advised of the possibility of such damages. In no event will CD Light, LLC's liability for any damages to Licensee or any third party ever exceed the original purchase price paid for the package or the license to use the software, regardless of the form of the claim.\n\nTERMINATION\n\nLicensee may terminate this Agreement at any time. CD Light, LLC will immediately terminate this Agreement and Licensee's right to use ZIPList5 Geocode without written notice upon Licensee's failure to comply with any provision of this Agreement. If this Agreement is terminated for any reason, Licensee will: (a) cease all use of ZIPList5 Geocode; and (b) delete ZIPList5 Geocode and all copies from all computers on which it is resident.\n\nENTIRE AGREEMENT\n\nThis Agreement represents the complete agreement between the parties relating to this license for ZIPList5 Geocode and supersedes all prior agreements, communications, proposals, and representations between the parties and prevails over any conflicting or additional terms of any quote, order, acknowledgment or similar communication. This Agreement may only be modified by a license addendum which accompanies this license or by a written document signed by both parties.\n\nGOVERNMENT RESTRICTED RIGHTS\n\nZIPList5 Geocode is provided with RESTRICTED RIGHTS. Use, duplication, or disclosure by the United States Government is subject to restrictions as set forth in subpara-graph (c) (1) (ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs (c) (1) and (2) of the Commercial Computer Software-Restricted Rights clause at 48 CFR 52.227-19, as applicable. Manufacturer is CD Light, LLC, 230 N Tranquil Path Dr, The Woodlands, TX 77380-2758.\n\nGENERAL\n\nThis Agreement is governed and interpreted in accordance with the laws of the State of Texas, USA, except for that body of law dealing with conflicts of law. If any provision of this Agreement is held by a court of competent jurisdiction to be contrary to law, that provision will be enforced to the maximum extent permissible and the remaining provisions of this Agreement will remain in full force and effect.\n\nIf Licensee has any questions concerning this Agreement, please send email to support@zipinfo.com or write to CD Light, LLC, 230 N Tranquil Path Dr, The Woodlands, TX 77380-2758, USA.", + "json": "ziplist5-geocode-end-user-workstation.json", + "yaml": "ziplist5-geocode-end-user-workstation.yml", + "html": "ziplist5-geocode-end-user-workstation.html", + "license": "ziplist5-geocode-end-user-workstation.LICENSE" + }, + { + "license_key": "zlib", + "category": "Permissive", + "spdx_license_key": "Zlib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This software is provided 'as-is', without any express or implied warranty. In no\nevent will the authors be held liable for any damages arising from the use of this\nsoftware.\n\nPermission is granted to anyone to use this software for any purpose, including\ncommercial applications, and to alter it and redistribute it freely, subject to\nthe following restrictions:\n\n1. The origin of this software must not be misrepresented; you must not claim that\n you wrote the original software. If you use this software in a product, an\n acknowledgment in the product documentation would be appreciated but is not\n required.\n\n2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n\n3. This notice may not be removed or altered from any source distribution.", + "json": "zlib.json", + "yaml": "zlib.yml", + "html": "zlib.html", + "license": "zlib.LICENSE" + }, + { + "license_key": "zlib-acknowledgement", + "category": "Permissive", + "spdx_license_key": "zlib-acknowledgement", + "other_spdx_license_keys": [ + "Nunit" + ], + "is_exception": false, + "is_deprecated": false, + "text": "This software is provided 'as-is', without any express or implied warranty. In\nno event will the authors be held liable for any damages arising from the use of\nthis software.\n\nPermission is granted to anyone to use this software for any purpose, including\ncommercial applications, and to alter it and redistribute it freely, subject to\nthe following restrictions:\n\n1. The origin of this software must not be misrepresented; you must not claim\nthat you wrote the original software. If you use this software in a product, an\nacknowledgment (see the following) in the product documentation is required.\n\nPortions Copyright (c) 2002-2007 Charlie Poole or Copyright (c) 2002-2004 James\nW. Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright (c) 2000-2002\nPhilip A. Craig\n\n2. Altered source versions must be plainly marked as such, and must not be\nmisrepresented as being the original software.\n\n3. This notice may not be removed or altered from any source distribution.", + "json": "zlib-acknowledgement.json", + "yaml": "zlib-acknowledgement.yml", + "html": "zlib-acknowledgement.html", + "license": "zlib-acknowledgement.LICENSE" + }, + { + "license_key": "zpl-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-zpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Zope Public License (ZPL) Version 1.0\n-------------------------------------\n\nCopyright (c) Digital Creations. All rights reserved.\n\nThis license has been certified as Open Source(tm).\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n1. Redistributions in source code must retain the above copyright\n notice, this list of conditions, and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions, and the following disclaimer in\n the documentation and/or other materials provided with the\n distribution.\n\n3. Digital Creations requests that attribution be given to Zope\n in any manner possible. Zope includes a \"Powered by Zope\"\n button that is installed by default. While it is not a license\n violation to remove this button, it is requested that the\n attribution remain. A significant investment has been put\n into Zope, and this effort will continue if the Zope community\n continues to grow. This is one way to assure that growth.\n\n4. All advertising materials and documentation mentioning\n features derived from or use of this software must display\n the following acknowledgement:\n\n \"This product includes software developed by Digital Creations\n for use in the Z Object Publishing Environment\n (http://www.zope.org/).\"\n\n In the event that the product being advertised includes an\n intact Zope distribution (with copyright and license included)\n then this clause is waived.\n \n5. Names associated with Zope or Digital Creations must not be used to\n endorse or promote products derived from this software without\n prior written permission from Digital Creations.\n\n6. Modified redistributions of any form whatsoever must retain\n the following acknowledgment:\n\n \"This product includes software developed by Digital Creations\n for use in the Z Object Publishing Environment\n (http://www.zope.org/).\"\n\n Intact (re-)distributions of any official Zope release do not\n require an external acknowledgement.\n\n7. Modifications are encouraged but must be packaged separately as\n patches to official Zope releases. Distributions that do not\n clearly separate the patches from the original work must be clearly\n labeled as unofficial distributions. Modifications which do not\n carry the name Zope may be packaged in any form, as long as they\n conform to all of the clauses above.\n\n\nDisclaimer\n\n THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS ``AS IS'' AND ANY\n EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DIGITAL CREATIONS OR ITS\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\n USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\n OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\n\nThis software consists of contributions made by Digital Creations and\nmany individuals on behalf of Digital Creations. Specific\nattributions are listed in the accompanying credits file.", + "json": "zpl-1.0.json", + "yaml": "zpl-1.0.yml", + "html": "zpl-1.0.html", + "license": "zpl-1.0.LICENSE" + }, + { + "license_key": "zpl-1.1", + "category": "Permissive", + "spdx_license_key": "ZPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Zope Public License (ZPL) Version 1.1\n\nCopyright (c) Zope Corporation. All rights reserved.\n\nThis license has been certified as open source.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n 1. Redistributions in source code must retain the above copyright notice,\n this list of conditions, and the following disclaimer.\n\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions, and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n 3. All advertising materials and documentation mentioning features derived\n from or use of this software must display the following acknowledgement:\n\n \"This product includes software developed by Zope Corporation for use in\n the Z Object Publishing Environment (http://www.zope.com/).\"\n\n In the event that the product being advertised includes an intact Zope\n distribution (with copyright and license included) then this clause is\n waived.\n\n 4. Names associated with Zope or Zope Corporation must not be used to endorse\n or promote products derived from this software without prior written\n permission from Zope Corporation.\n\n 5. Modified redistributions of any form whatsoever must retain the following\n acknowledgment:\n\n \"This product includes software developed by Zope Corporation for use in\n the Z Object Publishing Environment (http://www.zope.com/).\"\n\n Intact (re-)distributions of any official Zope release do not require an\n external acknowledgement.\n\n 6. Modifications are encouraged but must be packaged separately as patches to\n official Zope releases. Distributions that do not clearly separate the\n patches from the original work must be clearly labeled as unofficial\n distributions. Modifications which do not carry the name Zope may be packaged\n in any form, as long as they conform to all of the clauses above.\n\nDisclaimer\n\nTHIS SOFTWARE IS PROVIDED BY ZOPE CORPORATION ``AS IS'' AND ANY EXPRESSED OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT\nSHALL ZOPE CORPORATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nThis software consists of contributions made by Zope Corporation and many\nindividuals on behalf of Zope Corporation. Specific attributions are listed in\nthe accompanying credits file.", + "json": "zpl-1.1.json", + "yaml": "zpl-1.1.yml", + "html": "zpl-1.1.html", + "license": "zpl-1.1.LICENSE" + }, + { + "license_key": "zpl-2.0", + "category": "Permissive", + "spdx_license_key": "ZPL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This license has been certified as open source. It has also been designated as\nGPL compatible by the Free Software Foundation (FSF).\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n 1. Redistributions in source code must retain the above copyright notice,\n this list of conditions, and the following disclaimer.\n\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions, and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n 3. The name Zope Corporation (tm) must not be used to endorse or promote\n products derived from this software without prior written permission from\n Zope Corporation.\n\n 4. The right to distribute this software or to use it for any purpose does\n not give you the right to use Servicemarks (sm) or Trademarks (tm) of Zope\n Corporation. Use of them is covered in a separate agreement (see\n http://www.zope.com/Marks).\n\n 5. If any files are modified, you must cause the modified files to carry\n prominent notices stating that you changed the files and the date of any\n change.\n\nDisclaimer\n\nTHIS SOFTWARE IS PROVIDED BY ZOPE CORPORATION ``AS IS'' AND ANY EXPRESSED OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT\nSHALL ZOPE CORPORATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nThis software consists of contributions made by Zope Corporation and many\nindividuals on behalf of Zope Corporation. Specific attributions are listed in\nthe accompanying credits file.", + "json": "zpl-2.0.json", + "yaml": "zpl-2.0.yml", + "html": "zpl-2.0.html", + "license": "zpl-2.0.LICENSE" + }, + { + "license_key": "zpl-2.1", + "category": "Permissive", + "spdx_license_key": "ZPL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "This license has been certified as open source. It has also been designated as\nGPL compatible by the Free Software Foundation (FSF).\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n 1. Redistributions in source code must retain the accompanying copyright\n notice, this list of conditions, and the following disclaimer.\n\n 2. Redistributions in binary form must reproduce the accompanying copyright\n notice, this list of conditions, and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\n 3. Names of the copyright holders must not be used to endorse or promote\n products derived from this software without prior written permission from the\n copyright holders.\n\n 4. The right to distribute this software or to use it for any purpose does\n not give you the right to use Servicemarks (sm) or Trademarks (tm) of the\n copyright holders. Use of them is covered by separate agreement with the\n copyright holders.\n\n 5. If any files are modified, you must cause the modified files to carry\n prominent notices stating that you changed the files and the date of any\n change.\n\nDisclaimer\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED\nOR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT\nSHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\nIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY\nOF SUCH DAMAGE.", + "json": "zpl-2.1.json", + "yaml": "zpl-2.1.yml", + "html": "zpl-2.1.html", + "license": "zpl-2.1.LICENSE" + }, + { + "license_key": "zrythm-exception-agpl-3.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-zrythm-exception-agpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Additional terms under Section 7 of the GNU AGPL:\n\nZrythm and the Zrythm logo are trademarks of\nAlexandros Theodotou and are governed by the Zrythm\nTrademark Policy, found in the TRADEMARKS.md file.\nYou may distribute unaltered copies of Zrythm that\ninclude the Zrythm trademarks without express\npermission from Alexandros Theodotou. However,\nif you make any changes to Zrythm, you may not\nredistribute that product using any Zrythm trademark\nwithout Alexandros Theodotou\u2019s prior written consent.\nFor example, you may not distribute a modified form\nof Zrythm and continue to call it Zrythm, or\ninclude the Zrythm logo, unless explicitly allowed\nby the Trademark Policy.\n\n=============================\nTRADEMARKS.md\n=============================\n\nTrademark Policy\n================\n\n# Applicable Trademarks\nZrythm and the Zrythm logo are registered\ntrademarks of Alexandros Theodotou in the United\nKingdom.\n\n# Objective of this Policy\nThe objective of this trademark policy is:\n- to clarify proper usage of Zrythm trademarks by\nthird parties\n- to prevent misuse of Zrythm trademarks that can\nconfuse or mislead users with respect to Zrythm\n\nFollowing are the guidelines for the proper use of\nZrythm trademarks by publishers and other third\nparties. Any use of or reference to Zrythm trademarks\nthat is inconsistent with these guidelines, or other\nunauthorized use of or reference to Zrythm\ntrademarks, or use of marks that are confusingly\nsimilar to Zrythm trademarks, is prohibited and may\nviolate the trademark rights of Alexandros Theodotou.\n\nAny use of Zrythm trademarks in a misleading and\nfalse manner, such as untruthful advertising, is\nalways prohibited.\n\n# Usage Guidelines\nThis Trademark Policy explicitly affirms your\nnominative fair use rights under trademark law,\nincluding to:\n- Use the Zrythm wordmark in text to truthfully refer\nto and/or link to unmodified programs, products,\nservices and technologies by Alexandros Theodotou.\n- Use the Zrythm logo in visuals to truthfully refer\nto and/or to link to the applicable unmodified\nprograms, products, services and technologies by\nAlexandros Theodotou.\n- Use Zrythm trademarks to make true factual\nstatements about Zrythm or communicate compatibility\nwith your product truthfully.\n\nThe following are explicitly forbidden:\n- Use of the Zrythm wordmark as part of a company\nname or logo, a product name or logo, or branding.\n- Use of the Zrythm logo as part of a company logo or\norganization logo or product logo or branding.\n- Use of the Zrythm wordmark as part of an acronym.\n- Use of Zrythm trademarks in any way that suggests\nan affiliation with or endorsement by the Zrythm\nproject or community, if that is not the case.\n\nAll other uses of a Zrythm trademark require our\nprior written permission. Contact\ntrademarks@zrythm.org for more information.\n\nAlexandros Theodotou reserves the right to review\nall use of the Zrythm trademarks and to object to\nany use that appears outside of this\nTrademark Policy.\n\n# Software Distribution Policy\nYou may distribute unaltered copies of the Zrythm\ndigital audio workstation (DAW) and related software\n(hereinafter collectively referred to as \"the\nsoftware\") published by Alexandros Theodotou that\ninclude the Zrythm trademarks without express\npermission from Alexandros Theodotou (provided that\nthe license of the software in question allows it).\n\nYou may further distribute altered copies of the\nsoftware that include the Zrythm trademarks,\nprovided that alterations solely serve the purposes\nof:\n- porting the software to a free system distribution\ncurrently approved by the Free Software Foundation at\n, OR\n- porting the software to the Debian operating\nsystem, as published by the Debian project at\n, OR\n- porting the software to the Fedora Workstation\noperating system, as published by the Fedora Project\nat , OR\n- porting the software to the FreeBSD operating\nsystem, as published by the The FreeBSD Project at\n, OR\n- porting the software to the Arch Linux operating\nsystem, as published by Levente Polyak and others at\n, OR\n- fixing a bug in the software that has already been\nacknowledged by Alexandros Theodotou or CVE\n()\n\nYou may further redistribute copies of the software\nas published by the aforementioned software\ndistributors provided that no further modifications\nare made.\n\nIn any case, you may not add or remove\nfunctionalities and you must preserve all messages\npresented to users in the user interface and the\ncommand line, including but not limited to:\n- URLs pointing to official Zrythm web pages\n- informational messages (popups, console output,\netc.)\n\nYou must also provide a link to the original source\ncode as published by Alexandros Theodotou at\nhttps://www.zrythm.org/.\n\n# Requirement of Written Permission for Modified Versions Including Trademarks\nIf you make any changes to the software not\nexplicitly allowed above, you may not\nredistribute that product using any Zrythm trademark\nwithout Alexandros Theodotou\u2019s prior written\nconsent. For example, you may not distribute a\nmodified form of the Zrythm DAW and continue to call\nit Zrythm, or include the Zrythm logo. If you wish to\ndistribute modified versions of the software that\ninclude the Zrythm trademarks please contact us with\nyour request at trademarks@zrythm.org.\n\n# Newer Versions of this Policy\nThis policy may be revised from time to time. New\nversions will be similar in spirit to the present\nversion, but may differ in detail to address new\nproblems or concerns. The file `TRADEMARKS.md` in\nthe source code releases will always contain the\ncurrent policy at the time of each release.\n\n----\n\nCopyright (C) 2020-2022 Alexandros Theodotou\n\nEveryone is permitted to copy and distribute\nverbatim copies of this document, but changing it is\nnot allowed.", + "json": "zrythm-exception-agpl-3.0.json", + "yaml": "zrythm-exception-agpl-3.0.yml", + "html": "zrythm-exception-agpl-3.0.html", + "license": "zrythm-exception-agpl-3.0.LICENSE" + }, + { + "license_key": "zsh", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-zsh", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Unless otherwise noted in the header of specific files, files in this\ndistribution have the licence shown below.\n\nHowever, note that certain shell functions are licensed under versions\nof the GNU General Public Licence. Anyone distributing the shell as a\nbinary including those files needs to take account of this. Search\nshell functions for \"Copyright\" for specific copyright information.\nNone of the core functions are affected by this, so those files may\nsimply be omitted.\n\n--\n\nThe Z Shell is copyright (c) 1992-2017 Paul Falstad, Richard Coleman,\nZolt\u00e1n Hidv\u00e9gi, Andrew Main, Peter Stephenson, Sven Wischnowsky, and\nothers. All rights reserved. Individual authors, whether or not\nspecifically named, retain copyright in all changes; in what follows, they\nare referred to as `the Zsh Development Group'. This is for convenience\nonly and this body has no legal status. The Z shell is distributed under\nthe following licence; any provisions made in individual files take\nprecedence.\n\nPermission is hereby granted, without written agreement and without\nlicence or royalty fees, to use, copy, modify, and distribute this\nsoftware and to distribute modified versions of this software for any\npurpose, provided that the above copyright notice and the following\ntwo paragraphs appear in all copies of this software.\n\nIn no event shall the Zsh Development Group be liable to any party for\ndirect, indirect, special, incidental, or consequential damages arising out\nof the use of this software and its documentation, even if the Zsh\nDevelopment Group have been advised of the possibility of such damage.\n\nThe Zsh Development Group specifically disclaim any warranties, including,\nbut not limited to, the implied warranties of merchantability and fitness\nfor a particular purpose. The software provided hereunder is on an \"as is\"\nbasis, and the Zsh Development Group have no obligation to provide\nmaintenance, support, updates, enhancements, or modifications.", + "json": "zsh.json", + "yaml": "zsh.yml", + "html": "zsh.html", + "license": "zsh.LICENSE" + }, + { + "license_key": "zuora-software", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-zuora-software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to use copy,\nmodify, merge, publish the Software and to distribute, and sublicense copies of\nthe Software, provided no fee is charged for the Software. In addition the\nrights specified above are conditioned upon the following:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nZuora, Inc. or any other trademarks of Zuora, Inc. may not be used to endorse\nor promote products derived from this Software without specific prior written\npermission from Zuora, Inc.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\nZUORA, INC. BE LIABLE FOR ANY DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nIN THE EVENT YOU ARE AN EXISTING ZUORA CUSTOMER, USE OF THIS SOFTWARE IS GOVERNED\nBY THIS AGREEMENT AND NOT YOUR MASTER SUBSCRIPTION AGREEMENT WITH ZUORA", + "json": "zuora-software.json", + "yaml": "zuora-software.yml", + "html": "zuora-software.html", + "license": "zuora-software.LICENSE" + }, + { + "license_key": "zveno-research", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-zveno-research", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Zveno makes this software available free of charge for any purpose. This\nsoftware may be copied, and distributed, with or without modifications; but this\nnotice must be included on any copy.\n\nThe software was developed for research purposes only and Zveno does not warrant\nthat it is error free or fit for any purpose. Zveno disclaims any liability for\nall claims, expenses, losses, damages and costs any user may incur as a result\nof using, copying or modifying this software.", + "json": "zveno-research.json", + "yaml": "zveno-research.yml", + "html": "zveno-research.html", + "license": "zveno-research.LICENSE" + } +] \ No newline at end of file diff --git a/docs/index.yml b/docs/index.yml index db08747fda..d9bf636bc5 100644 --- a/docs/index.yml +++ b/docs/index.yml @@ -1,7245 +1,74680 @@ - license_key: 389-exception + category: Copyleft Limited spdx_license_key: 389-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + In addition, as a special exception, Red Hat, Inc. gives You the additional + right to link the code of this Program with code not covered under the GNU + General Public License ("Non-GPL Code") and to distribute linked combinations + including the two, subject to the limitations in this paragraph. Non-GPL Code + permitted under this exception must only link to the code of this Program + through those well defined interfaces identified in the file named EXCEPTION + found in the source code files (the "Approved Interfaces"). The files of Non-GPL + Code may instantiate templates or use macros or inline functions from the + Approved Interfaces without causing the resulting work to be covered by the GNU + General Public License. Only Red Hat, Inc. may make changes or additions to the + list of Approved Interfaces. You must obey the GNU General Public License in all + respects for all of the Program code and other code used in conjunction with the + Program except the Non-GPL Code covered by this exception. If you modify this + file, you may extend this exception to your version of the file, but you are not + obligated to do so. If you do not wish to provide this exception without + modification, you must delete this exception statement from your version and + license this file solely under the GPL without exception. json: 389-exception.json - yml: 389-exception.yml + yaml: 389-exception.yml html: 389-exception.html - text: 389-exception.LICENSE + license: 389-exception.LICENSE - license_key: 3com-microcode + category: Permissive spdx_license_key: LicenseRef-scancode-3com-microcode other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Redistribution and use in source and binary forms of the \nmicrocode software are permitted\ + \ provided that the following conditions\nare met:\n1. Redistribution of source code must\ + \ retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\ + 2. Redistribution in binary form must reproduce the above copyright\n notice, this list\ + \ of conditions and the following disclaimer in the\n documentation and/or other materials\ + \ provided with the distribution.\n3. The name of 3Com may not be used to endorse or promote\ + \ products\n derived from this software without specific prior written permission\n\n\ + THIS SOFTWARE IS PROVIDED BY 3COM ``AS IS'' AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING,\ + \ BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\ + \ PURPOSE ARE DISCLAIMED.\nIN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n\ + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO,\ + \ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS\ + \ INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\ + \ LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\ + \ USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nUSER ACKNOWLEDGES\ + \ AND AGREES THAT PURCHASE OR USE OF THE\nMICROCODE SOFTWARE WILL NOT CREATE OR GIVE GROUNDS\ + \ FOR A LICENSE BY\nIMPLICATION, ESTOPPEL, OR OTHERWISE IN ANY INTELLECTUAL PROPERTY RIGHTS\n\ + (PATENT, COPYRIGHT, TRADE SECRET, MASK WORK, OR OTHER PROPRIETARY RIGHT)\nEMBODIED IN ANY\ + \ OTHER 3COM HARDWARE OR SOFTWARE EITHER SOLELY OR IN\nCOMBINATION WITH THE MICROCODE SOFTWARE" json: 3com-microcode.json - yml: 3com-microcode.yml + yaml: 3com-microcode.yml html: 3com-microcode.html - text: 3com-microcode.LICENSE + license: 3com-microcode.LICENSE - license_key: 3dslicer-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-3dslicer-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 3D Slicer Contribution and Software License Agreement ("Agreement") + Version 1.0 (December 20, 2005) + + This Agreement covers contributions to and downloads from the 3D + Slicer project ("Slicer") maintained by The Brigham and Women's + Hospital, Inc. ("Brigham"). Part A of this Agreement applies to + contributions of software and/or data to Slicer (including making + revisions of or additions to code and/or data already in Slicer). Part + B of this Agreement applies to downloads of software and/or data from + Slicer. Part C of this Agreement applies to all transactions with + Slicer. If you distribute Software (as defined below) downloaded from + Slicer, all of the paragraphs of Part B of this Agreement must be + included with and apply to such Software. + + Your contribution of software and/or data to Slicer (including prior + to the date of the first publication of this Agreement, each a + "Contribution") and/or downloading, copying, modifying, displaying, + distributing or use of any software and/or data from Slicer + (collectively, the "Software") constitutes acceptance of all of the + terms and conditions of this Agreement. If you do not agree to such + terms and conditions, you have no right to contribute your + Contribution, or to download, copy, modify, display, distribute or use + the Software. + + PART A. CONTRIBUTION AGREEMENT - License to Brigham with Right to + Sublicense ("Contribution Agreement"). + + 1. As used in this Contribution Agreement, "you" means the individual + contributing the Contribution to Slicer and the institution or + entity which employs or is otherwise affiliated with such + individual in connection with such Contribution. + + 2. This Contribution Agreement applies to all Contributions made to + Slicer, including without limitation Contributions made prior to + the date of first publication of this Agreement. If at any time you + make a Contribution to Slicer, you represent that (i) you are + legally authorized and entitled to make such Contribution and to + grant all licenses granted in this Contribution Agreement with + respect to such Contribution; (ii) if your Contribution includes + any patient data, all such data is de-identified in accordance with + U.S. confidentiality and security laws and requirements, including + but not limited to the Health Insurance Portability and + Accountability Act (HIPAA) and its regulations, and your disclosure + of such data for the purposes contemplated by this Agreement is + properly authorized and in compliance with all applicable laws and + regulations; and (iii) you have preserved in the Contribution all + applicable attributions, copyright notices and licenses for any + third party software or data included in the Contribution. + + 3. Except for the licenses granted in this Agreement, you reserve all + right, title and interest in your Contribution. + + 4. You hereby grant to Brigham, with the right to sublicense, a + perpetual, worldwide, non-exclusive, no charge, royalty-free, + irrevocable license to use, reproduce, make derivative works of, + display and distribute the Contribution. If your Contribution is + protected by patent, you hereby grant to Brigham, with the right to + sublicense, a perpetual, worldwide, non-exclusive, no-charge, + royalty-free, irrevocable license under your interest in patent + rights covering the Contribution, to make, have made, use, sell and + otherwise transfer your Contribution, alone or in combination with + any other code. + + 5. You acknowledge and agree that Brigham may incorporate your + Contribution into Slicer and may make Slicer available to members + of the public on an open source basis under terms substantially in + accordance with the Software License set forth in Part B of this + Agreement. You further acknowledge and agree that Brigham shall + have no liability arising in connection with claims resulting from + your breach of any of the terms of this Agreement. + + 6. YOU WARRANT THAT TO THE BEST OF YOUR KNOWLEDGE YOUR CONTRIBUTION + DOES NOT CONTAIN ANY CODE THAT REQURES OR PRESCRIBES AN "OPEN + SOURCE LICENSE" FOR DERIVATIVE WORKS (by way of non-limiting + example, the GNU General Public License or other so-called + "reciprocal" license that requires any derived work to be licensed + under the GNU General Public License or other "open source + license"). + + PART B. DOWNLOADING AGREEMENT - License from Brigham with Right to + Sublicense ("Software License"). + + 1. As used in this Software License, "you" means the individual + downloading and/or using, reproducing, modifying, displaying and/or + distributing the Software and the institution or entity which + employs or is otherwise affiliated with such individual in + connection therewith. The Brigham and Women?s Hospital, + Inc. ("Brigham") hereby grants you, with right to sublicense, with + respect to Brigham's rights in the software, and data, if any, + which is the subject of this Software License (collectively, the + "Software"), a royalty-free, non-exclusive license to use, + reproduce, make derivative works of, display and distribute the + Software, provided that: + + (a) you accept and adhere to all of the terms and conditions of this + Software License; + + (b) in connection with any copy of or sublicense of all or any portion + of the Software, all of the terms and conditions in this Software + License shall appear in and shall apply to such copy and such + sublicense, including without limitation all source and executable + forms and on any user documentation, prefaced with the following + words: "All or portions of this licensed product (such portions are + the "Software") have been obtained under license from The Brigham and + Women's Hospital, Inc. and are subject to the following terms and + conditions:" + + (c) you preserve and maintain all applicable attributions, copyright + notices and licenses included in or applicable to the Software; + + (d) modified versions of the Software must be clearly identified and + marked as such, and must not be misrepresented as being the original + Software; and + + (e) you consider making, but are under no obligation to make, the + source code of any of your modifications to the Software freely + available to others on an open source basis. + + 2. The license granted in this Software License includes without + limitation the right to (i) incorporate the Software into + proprietary programs (subject to any restrictions applicable to + such programs), (ii) add your own copyright statement to your + modifications of the Software, and (iii) provide additional or + different license terms and conditions in your sublicenses of + modifications of the Software; provided that in each case your use, + reproduction or distribution of such modifications otherwise + complies with the conditions stated in this Software License. + + 3. This Software License does not grant any rights with respect to + third party software, except those rights that Brigham has been + authorized by a third party to grant to you, and accordingly you + are solely responsible for (i) obtaining any permissions from third + parties that you need to use, reproduce, make derivative works of, + display and distribute the Software, and (ii) informing your + sublicensees, including without limitation your end-users, of their + obligations to secure any such required permissions. + + 4. The Software has been designed for research purposes only and has + not been reviewed or approved by the Food and Drug Administration + or by any other agency. YOU ACKNOWLEDGE AND AGREE THAT CLINICAL + APPLICATIONS ARE NEITHER RECOMMENDED NOR ADVISED. Any + commercialization of the Software is at the sole risk of the party + or parties engaged in such commercialization. You further agree to + use, reproduce, make derivative works of, display and distribute + the Software in compliance with all applicable governmental laws, + regulations and orders, including without limitation those relating + to export and import control. + + 5. The Software is provided "AS IS" and neither Brigham nor any + contributor to the software (each a "Contributor") shall have any + obligation to provide maintenance, support, updates, enhancements + or modifications thereto. BRIGHAM AND ALL CONTRIBUTORS SPECIFICALLY + DISCLAIM ALL EXPRESS AND IMPLIED WARRANTIES OF ANY KIND INCLUDING, + BUT NOT LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL + BRIGHAM OR ANY CONTRIBUTOR BE LIABLE TO ANY PARTY FOR DIRECT, + INDIRECT, SPECIAL, INCIDENTAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY ARISING IN ANY WAY + RELATED TO THE SOFTWARE, EVEN IF BRIGHAM OR ANY CONTRIBUTOR HAS + BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. TO THE MAXIMUM + EXTENT NOT PROHIBITED BY LAW OR REGULATION, YOU FURTHER ASSUME ALL + LIABILITY FOR YOUR USE, REPRODUCTION, MAKING OF DERIVATIVE WORKS, + DISPLAY, LICENSE OR DISTRIBUTION OF THE SOFTWARE AND AGREE TO + INDEMNIFY AND HOLD HARMLESS BRIGHAM AND ALL CONTRIBUTORS FROM AND + AGAINST ANY AND ALL CLAIMS, SUITS, ACTIONS, DEMANDS AND JUDGMENTS + ARISING THEREFROM. + + 6. None of the names, logos or trademarks of Brigham or any of + Brigham's affiliates or any of the Contributors, or any funding + agency, may be used to endorse or promote products produced in + whole or in part by operation of the Software or derived from or + based on the Software without specific prior written permission + from the applicable party. + + 7. Any use, reproduction or distribution of the Software which is not + in accordance with this Software License shall automatically revoke + all rights granted to you under this Software License and render + Paragraphs 1 and 2 of this Software License null and void. + + 8. This Software License does not grant any rights in or to any + intellectual property owned by Brigham or any Contributor except + those rights expressly granted hereunder. + + PART C. MISCELLANEOUS + + This Agreement shall be governed by and construed in accordance with + the laws of The Commonwealth of Massachusetts without regard to + principles of conflicts of law. This Agreement shall supercede and + replace any license terms that you may have agreed to previously with + respect to Slicer. json: 3dslicer-1.0.json - yml: 3dslicer-1.0.yml + yaml: 3dslicer-1.0.yml html: 3dslicer-1.0.html - text: 3dslicer-1.0.LICENSE + license: 3dslicer-1.0.LICENSE - license_key: 4suite-1.1 + category: Permissive spdx_license_key: LicenseRef-scancode-4suite-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + License and copyright info for 4Suite software + ===================================== + + 4Suite software copyright + ------------------------- + + The copyright on 4Suite as a whole is owned by Fourthought, Inc. + (USA). Copyright on the components of 4Suite is indicated in the + source code; most files have their own notice of copyright and + ownership, and a CVS datestamp to clarify the actual date of + authorship or last revision/publication. For purposes of usage and + redistribution, the following Apache-based license applies. + + The 4Suite License, Version 1.1 + ------------------------------- + + Copyright (c) 2000 Fourthought, Inc. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + 3. The end-user documentation included with the redistribution, + if any, must include the following acknowledgment: + "This product includes software developed by + Fourthought, Inc. (http://www.fourthought.com)." + Alternately, this acknowledgment may appear in the software + itself, if and wherever such third-party acknowledgments + normally appear. + + 4. The names "4Suite", "4Suite Server" and "Fourthought" must not + be used to endorse or promote products derived from this + software without prior written permission. For written + permission, please contact info@fourthought.com. + + 5. Products derived from this software may not be called "4Suite", + nor may "4Suite" appear in their name, without prior written + permission of Fourthought, Inc. + + THIS SOFTWARE IS PROVIDED ``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 FOURTHOGHT, INC. 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 license is based on the Apache Software License, Version 1.1, + Copyright (c) 2000 The Apache Software Foundation. + All rights reserved. json: 4suite-1.1.json - yml: 4suite-1.1.yml + yaml: 4suite-1.1.yml html: 4suite-1.1.html - text: 4suite-1.1.LICENSE + license: 4suite-1.1.LICENSE - license_key: 996-icu-1.0 + category: Free Restricted spdx_license_key: LicenseRef-scancode-996-icu-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + "Anti 996" License Version 1.0 (Draft) + + Permission is hereby granted to any individual or legal entity + obtaining a copy of this licensed work (including the source code, + documentation and/or related items, hereinafter collectively referred + to as the "licensed work"), free of charge, to deal with the licensed + work for any purpose, including without limitation, the rights to use, + reproduce, modify, prepare derivative works of, distribute, publish + and sublicense the licensed work, subject to the following conditions: + + 1. The individual or the legal entity must conspicuously display, + without modification, this License and the notice on each redistributed + or derivative copy of the Licensed Work. + + 2. The individual or the legal entity must strictly comply with all + applicable laws, regulations, rules and standards of the jurisdiction + relating to labor and employment where the individual is physically + located or where the individual was born or naturalized; or where the + legal entity is registered or is operating (whichever is stricter). In + case that the jurisdiction has no such laws, regulations, rules and + standards or its laws, regulations, rules and standards are + unenforceable, the individual or the legal entity are required to + comply with Core International Labor Standards. + + 3. The individual or the legal entity shall not induce, suggest or force + its employee(s), whether full-time or part-time, or its independent + contractor(s), in any methods, to agree in oral or written form, to + directly or indirectly restrict, weaken or relinquish his or her + rights or remedies under such laws, regulations, rules and standards + relating to labor and employment as mentioned above, no matter whether + such written or oral agreements are enforceable under the laws of the + said jurisdiction, nor shall such individual or the legal entity + limit, in any methods, the rights of its employee(s) or independent + contractor(s) from reporting or complaining to the copyright holder or + relevant authorities monitoring the compliance of the license about + its violation(s) of the said license. + + THE LICENSED WORK 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 COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF OR IN ANY WAY CONNECTION WITH THE + LICENSED WORK OR THE USE OR OTHER DEALINGS IN THE LICENSED WORK. json: 996-icu-1.0.json - yml: 996-icu-1.0.yml + yaml: 996-icu-1.0.yml html: 996-icu-1.0.html - text: 996-icu-1.0.LICENSE + license: 996-icu-1.0.LICENSE - license_key: abrms + category: Proprietary Free spdx_license_key: LicenseRef-scancode-abrms other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + The "Anyone But Richard M Stallman" license + Do anything you want with this program, with the exceptions listed below under "EXCEPTIONS". + + THIS SOFTWARE IS PROVIDED "AS IS" WITH NO WARRANTY OF ANY KIND. + + In the unlikely event that you happen to make a zillion bucks off of this, then good for you; consider buying a homeless person a meal. + + EXCEPTIONS + Richard M Stallman (the guy behind GNU, etc.) may not make use of or redistribute this program or any of its derivatives. json: abrms.json - yml: abrms.yml + yaml: abrms.yml html: abrms.html - text: abrms.LICENSE + license: abrms.LICENSE - license_key: abstyles + category: Permissive spdx_license_key: Abstyles other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This program is distributed WITHOUT ANY WARRANTY, express or implied. \n\nPermission\ + \ is granted to make and distribute verbatim copies of this\ndocument provided that the\ + \ copyright notice and this permission notice are\npreserved on all copies.\n\nPermission\ + \ is granted to copy and distribute modified versions of this\ndocument under the conditions\ + \ for verbatim copying, provided that the\nentire resulting derived work is distributed\ + \ under the terms of a\npermission notice identical to this one." json: abstyles.json - yml: abstyles.yml + yaml: abstyles.yml html: abstyles.html - text: abstyles.LICENSE + license: abstyles.LICENSE - license_key: ac3filter + category: Copyleft spdx_license_key: LicenseRef-scancode-ac3filter other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "License:\n========\n\nDistributed under GNU General Public License version 2.\nYou\ + \ may find it in GNU_eng.txt at english language and GNU_rus.txt at russian \nlanguage.\ + \ Russain language version is for information purpose only and english \nversion have priority\ + \ with all variant reading.\n\nThis application may solely be used for demonstration and\ + \ educational purposes. \nAny other use may be prohibited by law in some coutries. The author\ + \ has no \nliability regarding this application whatsoever. This application may be \ndistributed\ + \ freely unless prohibited by law.\n\nThis product distributed in hope it may be useful,\ + \ but without any warranty; \nwithout even the implied warranty of merchantability or fitness\ + \ for a \nparticular purpose and compliance with any standards. I do not guarantee \nany\ + \ support, bug correction, repair of lost data, I am not responsible \nfor broken hardware\ + \ and lost working time. And I am not responsible for \nlegality of reproduced with this\ + \ program multimedia production." json: ac3filter.json - yml: ac3filter.yml + yaml: ac3filter.yml html: ac3filter.html - text: ac3filter.LICENSE + license: ac3filter.LICENSE - license_key: accellera-systemc + category: Permissive spdx_license_key: LicenseRef-scancode-accellera-systemc other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + SystemC Open Source License Agreement + (Download, Use and Contribution License Agreement Version 3.3) + + PLEASE READ THIS LICENSE AGREEMENT CAREFULLY BEFORE CLICKING ON THE "ACCEPT" + BUTTON, AS BY CLICKING ON THE "ACCEPT" BUTTON YOU ACKNOWLEDGE THAT YOU + HAVE READ, UNDERSTOOD AND AGREE TO BE BOUND BY THIS LICENSE AGREEMENT AND + ALL OF ITS TERMS AND CONDITIONS. + + Accellera Systems Initiative + + The purpose of the following license agreement (the "Agreement") is to encourage interoperability and + development of a C++ modeling language known as "SystemC" for system simulation and design (the + "Purpose"). The SystemC software and other items licensed hereunder are licensed, without fee of any kind, + for use pursuant to the terms and conditions set forth in this Agreement. + + License Agreement + + THE CONTRIBUTORS ARE WILLING TO LICENSE THEIR RESPECTIVE CONTRIBUTIONS TO YOU ONLY + ON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS OF THIS LICENSE AGREEMENT. IF YOU + DO NOT AGREE TO ALL OF THE TERMS OF THIS LICENSE AGREEMENT, THEN NO RIGHTS ARE + GRANTED TO YOU HEREUNDER TO USE ANY CONTRIBUTIONS. NOTWITHSTANDING ANYTHING TO + CONTRARY, ANY USE, REPRODUCTION OR DISTRIBUTION OF ANY CONTRIBUTION CONSTITUTES + YOUR ACCEPTANCE OF THIS AGREEMENT. + + 1. Definitions + + 1.1 “Agreement” means this contract. + 1.2 “Accellera” means Accellera Systems Initiative, a California nonprofit mutual benefit corporation. + 1.3 “Accellera Documentation” means the SystemC language reference manual and any other materials + assigned to Accellera pursuant to the Copyright Agreement. + 1.4 “Accellera Release” means a Contribution or combination of Contributions which is developed or + created through the Accellera working group process, and the final work approved for release by a Accellera + working group, approved for release by the Accellera steering group and approved for release by the board of + directors of Accellera. Examples of Accellera Releases include Accellera libraries and Accellera + specifications. Accellera Documentation shall be deemed to be included in the definition of Accellera + Release. + 1.5 “Code Contribution” means any Contribution in the form of Source Code. + 1.6 “Contribution” means any work of authorship that is deposited or contributed in accordance with + Section 3 in furtherance of the Purpose including, without limitation, libraries, programs, specifications + and User Documentation and Modifications. Without limiting the generality of the foregoing, a list of all + Contributions which were deposited or contributed on or before July 13, 2006 is set forth on Exhibit A + attached hereto and incorporated herein by reference, all of which are considered Contributions pursuant to + this Agreement. A list of all Contributions is available upon written request to Accellera and can also be + found on the Website. For purposes of clarification, all contributions licensed pursuant to that certain + SystemC Open Source License Agreement (Software Download and Use License Agreement Version 2.4) + shall constitute, and be treated as, Contributions pursuant to this Agreement. + 1.7 “Copyright Agreement” means any LRM and Copyright Contribution Agreement entered into + between Accellera and the signatory thereto at any time prior to or after the date hereof. + 1.8 “ Contribution Questionnaire” means the questionnaire attached hereto as Exhibit C. + 1.9 “Contributor” means any person or entity that makes a Contribution pursuant to Section 3. For + purposes of clarification, any person or entity depositing or contributing, as part or all of a Contribution, a + Contribution which has previously been so deposited or contributed is not the Contributor of such re- + deposited Contribution for the purposes of this Agreement. A list of all Contributors is available upon written + request to Accellera and can also be found on the Website. + 1.10 “Contributor's Necessary Patent Claims” means those claims of all patents owned or licensable by + Contributor throughout the world that: (1) Contributor has the right to license (within the scope set forth + herein) without the obligation to pay royalties or other consideration to third parties; and (2) are necessarily + and directly infringed solely by the portion of a computer program that either implements, or is compiled + from, either an unmodified Contribution or an Accellera Release. For clarity, Contributor’s Necessary Patent + Claims shall not include any claim directed towards a data structure, method, algorithm, process, technique, + circuit representation, or circuit implementation that is not completely and entirely described either in such + Contributor’s Contribution or in an Accellera Release. Further, a Contributor’s Necessary Patent Claims shall + not include any claim based upon the combination of any Contribution or an Accellera Release with other + works of authorship, to the extent that the Contributor’s Necessary Patent Claims are infringed as a result of + such combination. + 1.11 “Copyright Rights” means worldwide statutory and common law rights associated solely with works + of authorship including copyrights, copyright applications, copyright registrations, and “moral rights”. For + purposes of clarification, patents are not included in Copyright Rights. + 1.12 “Derivative” or “Derivative work” means a work based upon one or more preexisting works, such + as a translation, condensation, or any other form in which a work may be recast, transformed, or + adapted. A work consisting of editorial revisions, annotations, elaborations, or other modifications, which, + as a whole, represent an original work of authorship, is a “derivative work”. + 1.13 “Distribute” means making a Distribution. + 1.14 “Distribution” means any distribution, sublicensing or other transfer of a Contribution to any third + party. + 1.15 “Documentation” means, collectively, all User Documentation and Accellera Documentation. + 1.16 “Marks” means, collectively, the registered and unregistered marks and logos that Accellera has + licensed or otherwise authorized Recipient to use. All marks and logos are listed on Exhibit D, which list + may be amended from time to time by Accellera to add or delete any marks or logos. + 1.17 “Modification” means any additions or deletions to any Contribution. + 1.18 “Recipient” means any person or entity which receives any Contribution under this Agreement. For + legal entities, “Recipient” includes any entity that controls, is controlled by, or is under common control with + Recipient. For purposes of this Section 1.18, “control” means beneficial ownership of fifty percent (50%) or + more of the outstanding shares or similar interest of such entity entitled to vote for election of the board of + directors or similar managing authority. + 1.19 “Source Code” means human readable text in an electronic form suitable for modification that + describe the functions and data structures, including C, C++, and other language modules, plus any associated + interface definition files, scripts used to control compilation and installation of a computer program, or a list + of source code differential comparisons. + 1.20 “User Documentation” means all user guides, user manuals and other similar materials related to any + Contribution or an Accellera Release. + 1.21 “Website” means Accellera’s internet website located at http://www.accellera.org. + + 2. GRANT OF RIGHTS + + 2.1 Subject to the terms of this Agreement, each Contributor hereby grants to each Recipient a non- + exclusive, worldwide, royalty-free license under such Contributor's Copyright Rights to do the following: + (a) Use, reproduce, prepare Derivative works of, publicly display, publicly perform and Distribute any + Contributions of such Contributor and Derivative works thereof; and + (b) Use the know-how, information and knowledge embedded in the Contribution, without any + obligation to keep the foregoing confidential so long as the Recipient does not otherwise violate this + Agreement. + 2.2 Accellera hereby grants to each Recipient a non-exclusive, worldwide, royalty- free license under + Accellera's Copyright Rights to use, reproduce, prepare Derivative works of, publicly display, publicly + perform and distribute the Accellera Documentation and any Derivative works thereof, subject to the terms + and conditions of this Agreement. + 2.3 Subject to the terms of this Agreement, each Contributor hereby grants to each Recipient, a worldwide, + royalty-free, non-exclusive license under such Contributor's Necessary Patent Claims to make, have made, + use, sell, offer for sale, or import: (a) such Contributor's Contributions; (b) those portions of a computer + program that either implements, or is compiled from, the Contributor’s unmodified Contribution; and (c) + those portions of a computer program that implement, or are compiled from, an Accellera Release. + 2.4 Each Contributor represents that, to its knowledge, it has sufficient rights in and to each of its + Contributions to grant the licenses set forth in Sections 2.1 and 2.3. Accellera represents that, to its + knowledge, it has sufficient rights in the Accellera Documentation to grant the license set forth in Section + 2.2. + 2.5 Except as expressly stated in Sections 2.1, 2.2 and 2.3, Recipient receives no rights or licenses to the + intellectual property of any Contributor or Accellera under this Agreement, whether expressly, by implication, + estoppel or otherwise. All rights in and to any Contribution not expressly granted under this Agreement are + reserved. + 2.6 Except as specifically set forth in any Copyright Agreement, Contributor shall ensure that transfers or + assignments of all or any part of its right, title, and interest in and to any Contributions contributed or + deposited by Contributor hereunder, including all Copyright Rights and patent rights embodied therein, + shall be subject to the rights expressly granted in this Agreement including, without limitation, the licenses + granted in Sections 2.1 and 2.3. Recipient shall not remove or alter any proprietary notices contained in + the Contributions licensed to Recipient hereunder and shall reproduce and include such notices on any copies + of the Contributions made by Recipient in any media. + 2.7 License to Marks. + (a) Accellera shall retain all right, title and interest in and to the Marks worldwide, subject to the + limited license granted to Recipient in this Section 2.7. Accellera hereby grants Recipient a non- + exclusive, royalty-free, limited license to use the Marks solely in connection with its exercise of + the rights granted pursuant to this Agreement and to indicate that the products being marketed by + Recipient are compatible with, and meet the standards of, Accellera Releases. All uses of the Marks + shall be in accordance with Accellera’s trademark usage policy set forth in Exhibit D. + (b) Recipient shall assist Accellera to the extent reasonably necessary to protect and maintain the + Marks worldwide, including, but not limited to, giving prompt notice to Accellera of any known or + potential infringement of the Marks, and cooperating with Accellera in preparing and executing any + documents necessary to register the Marks, or as may be required by the laws or rules of any country + or jurisdiction. In its sole discretion, Accellera may commence, prosecute or defend any action or + claim concerning the Marks. Accellera shall have the right to control any such litigation, and + Recipient shall fully cooperate with Accellera in any such litigation. Accellera shall reimburse + Recipient for the reasonable costs associated with providing such assistance, except to the extent that + such costs result from Recipient’s breach of this Section 2.7. Recipient shall not commence any action + regarding the Marks without Accellera’s prior written consent. + (c) All goodwill with respect to the Marks shall accrue for the sole benefit of Accellera. + Recipient shall maintain the quality of any products, associated packaging, collateral and marketing + materials on which it uses any of the Marks in a manner consistent with all terms, conditions and + requirements set forth in this Section 2.7 and at a level that meets or exceeds Recipient’s overall + reputation for quality and that is at least commensurate with industry standards. + 2.8 RECIPIENT UNDERSTANDS THAT ALTHOUGH EACH CONTRIBUTOR AND ACCELLERA GRANTS + THE LICENSES SET FORTH HEREIN, NO ASSURANCES ARE PROVIDED BY ANY CONTRIBUTOR OR + ACCELLERA THAT ANY ACCELLERA RELEASE OR ANY CONTRIBUTION, EITHER ALONE OR IN + COMBINATION WITH ANY OTHER CONTRIBUTION, DOES NOT INFRINGE THE PATENT OR OTHER + INTELLECTUAL PROPERTY RIGHTS OF ANY OTHER ENTITY. MOREOVER, NO ASSURANCES ARE + MADE THAT ANY CONTRIBUTION OF ONE CONTRIBUTOR DOES NOT INFRINGE THE INTELLECTUAL + PROPERTY RIGHTS OF ANOTHER CONTRIBUTOR. EACH CONTRIBUTOR AND ACCELLERA DISCLAIM + ANY LIABILITY TO RECIPIENT FOR CLAIMS BROUGHT BY ANY OTHER ENTITY BASED ON + INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR OTHERWISE. In addition, as a condition to + exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to + secure any other intellectual property rights needed, if any. For example, if a third party patent license is + required to allow Recipient to distribute a computer program, then it is Recipient's responsibility to acquire + that license before Distributing such computer program. + + 3. DESCRIPTION AND DEPOSIT OF CONTRIBUTIONS + + 3.1 To the extent Recipient wishes to become a Contributor by making a Contribution, such + Contributor shall: + (a) (i) Deposit such Contribution at the Website according to the Contribution instructions found at + such Website, or (ii) disclose such Contribution at a meeting of any working group of Accellera; + (b) (i) Describe such Contribution in reasonable detail on Exhibit B (including the additions or + changes such Contributor made to create the Contribution and the date of any such changes or + additions), (ii) completing a Contribution Questionnaire with respect to such Contribution, and (iii) + delivering both documents to the Secretary of Accellera. All Contributions made after the date + hereof shall be effectuated by Contributor (x) amending Exhibit B and delivering such amended + Exhibit B to the Secretary of Accellera, which amended exhibit shall automatically replace the existing + Exhibit B, (y) completing a Contribution Questionnaire with respect to such Contribution, and (z) + delivering both documents to the Secretary of Accellera; + (c) Cause such Contribution to contain a file documenting such Contributor's name and contact + information, additions or changes such Contributor made to create the Contribution, and the date of + any such changes or additions; and + (d) Cause such Contribution to include in each file a prominent statement substantially similar to the + following: “Any code contained in this Contribution is derived, directly or indirectly, from the + SystemC source code. Copyright© 1996-[current year here] by all Contributors. All Rights reserved. + The contents of this file are subject to the restrictions and limitations set forth in the SystemC Open + Source License Version 3.1 (the “License”). You may not use this file except in compliance with such + restrictions and limitations. You may obtain instructions on how to receive a copy of the License at + http://www.accellera.org/. Software distributed by Contributors under the License is distributed + exclusively on an “AS IS” basis, WITHOUT WARRANTY OF ANY KIND, either express or + implied. See the License for the specific language governing rights and limitations under the License.” + 3.2 Accellera may from time to time publish policies and procedures regarding the contribution or + depositing of Contributions as well as establish additional details regarding the contribution process. Without + limiting the foregoing, Accellera or the administrators of the Website shall have the right to remove any + Contribution from the Website at any time. + + 4. REQUIREMENTS OF DISTRIBUTION + + 4.1 A Recipient may choose to Distribute any Contribution or any compilation of multiple Contributions + (except for any Code Contributions) under its own license agreement provided that: + (a) Recipient complies with the terms and conditions of this Agreement; + (b) As between Recipient and any other Contributor, Recipient assumes all warranties and conditions, + express and implied, and all liability for damages arising out of its Distribution; and + (c) Recipient makes available to recipients of such Distribution then Source Code for such + Distributions, and informs them on how to obtain it in a reasonable manner on or through a medium + customarily used for software exchange. + 4.2 If a Recipient chooses to Distribute any Code Contribution or compilations of Code Contributions + then: + (a) Such Code Contribution must be Distributed under this Agreement; and + (b) A copy of this Agreement must be included with each copy of such Code Contribution. + 4.3 Each Recipient must include the following in a conspicuous location in the Code Contribution so + Distributed: “Copyright© 1996-[current year here], by all Contributors. All rights reserved.” + 4.4 In addition, each Recipient that creates and Distributes or otherwise transfers a Modification whether + or not such Modification has been deposited pursuant to Section 3 must identify the originator of such + Modification in a manner that reasonably allows third parties to identify the originator of the Modification. + 4.5 A Recipient may choose to Distribute the Accellera Documentation under its own license agreement, + provided that Recipient complies with the terms and conditions of this Agreement. Each Recipient must + include the following in a conspicuous location in the Accellera Documentation so Distributed or transferred: + “Copyright© 1996-[current year here], by Accellera Systems Initiative. All rights reserved.” + In addition, each Recipient that creates and Distributes a modification or Derivative work of the Accellera + Documentation, whether or not such modification or Derivative work has been contributed pursuant to a + Copyright Agreement must identify the originator of such modification or Derivative work in a manner that + reasonably allows third parties to identify the originator of the modification or derivative work. + + 5. INDEMNIFICATION + + Any Recipient which Distributes any Contribution and/or Accellera Release (a “Distributor”) may accept + certain responsibilities with respect to end users, business partners and the like. While this license is + intended to facilitate the commercial use of Contributions Accellera Documentation and Accellera + Releases, a Distributor shall Distribute such Contributions, Accellera Documentation and Accellera Releases + in a manner which does not create potential liability for the Contributors. Therefore each Distributor hereby + agrees to defend and indemnify every Contributor (“Indemnified Contributor”) against any losses, + damages and costs (collectively “Losses”) arising from claims, lawsuits and other legal actions brought + by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such + Distributor, including but not limited to the terms and conditions under which Distributor offered such + Contributions, Accellera Documentation and/or Accellera Releases in connection with its Distribution thereof. + The obligations in this Section 5 do not apply to any claims or Losses relating to any actual or alleged + intellectual property infringement of any Contribution, Accellera Documentation or Accellera Release. In + order to qualify, an Indemnified Contributor must: (a) promptly notify the Distributor in writing of such + claim, and (b) allow the Distributor to control, and cooperate with the Distributor in, the defense and any + related settlement negotiations. The Indemnified Contributor may participate in the defense of any such claim + at its own expense. + For example, a Recipient might include a Contribution in a commercial product offering, Product X. That + Recipient is then a Distributor. If that Distributor then makes performance claims, or offers warranties, + support, or indemnity or any other license terms related to Product X, those performance claims, offers and + other terms are such Distributor's responsibility alone. Under this Section 5, the Distributor would have to + defend claims against the Contributors related to those performance claims, offers, and other terms, and if a + court requires any Contributor to pay any damages as a result, the Distributor must pay those damages. + + 6. NO WARRANTY + + EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, ALL CONTRIBUTIONS, ACCELLERA + DOCUMENTATION AND ACCELLERA RELEASES ARE PROVIDED EXCLUSIVELY 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. EACH RECIPIENT IS SOLELY + RESPONSIBLE FOR DETERMINING THE APPROPRIATENESS OF ITS USE AND DISTRIBUTION OF ANY + CONTRIBUTION, ACCELLERA DOCUMENTATION AND ACCELLERA RELEASE AND ASSUMES ALL + RISKS ASSOCIATED WITH ITS EXERCISE OF RIGHTS UNDER THIS AGREEMENT, INCLUDING BUT NOT + LIMITED TO THE RISKS AND COSTS OF PROGRAM ERRORS, COMPLIANCE WITH APPLICABLE LAWS, + DAMAGE TO OR LOSS OF DATA, PROGRAMS OR EQUIPMENT, AND UNAVAILABILITY OR + INTERRUPTION OF OPERATIONS. THIS DISCLAIMER OR WARRANTY CONSTITUTES AN ESSENTIAL + PART OF THIS AGREEMENT. NO USE OF ANY CONTRIBUTION, ACCELLERA DOCUMENTATION OR + ACCELLERA RELEASE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 7. DISCLAIMER OF LIABILITY + + EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NONE OF THE RECIPIENTS, CONTRIBUTORS + OR ACCELLERA SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, PUNITIVE, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST + PROFITS), 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 OR DISTRIBUTION OF ANY CONTRIBUTION, ACCELLERA DOCUMENTATION OR ACCELLERA + RELEASE OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGES. + + 8. U.S. GOVERNMENT USE + + If Recipient is licensing any computer program on behalf of any unit or agency of the United States + Government, then such computer program is commercial computer software, and, pursuant to FAR 12.212 or + DFARS 227.7202 and their successors, as applicable, shall be licensed to the Government under the terms and + conditions of this Agreement. + + 9. PATENT CLAIMS + + If Recipient institutes patent litigation against any entity (including a cross-claim, counterclaim or declaratory + judgment claim in a lawsuit) alleging that any Contribution, Accellera Release or combination of + Contributions (excluding combinations of any Contribution with other software or hardware) infringes such + Recipient's patent(s), then the rights granted to Recipient by each Contributor under Section 2 shall terminate + as of the date such litigation is filed. + + 10. TERMINATION + + All Recipient's rights under this Agreement shall terminate if Recipient fails to comply with any of the + material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time + after becoming aware of such noncompliance. If such occurs, Recipient shall cease all use and Distribution of + any Contributions of any other Contributor, Accellera Documentation and Accellera Releases based upon the + rights granted to Recipient under this Agreement as soon as reasonably practicable. However, + Recipient's obligations under this Agreement and any licenses granted by Recipient relating to any + Contributions shall survive such termination. + + 11. LICENSE VERSIONS + + Accellera may publish new versions (including revisions) of this Agreement from time to time. Each + new version of the Agreement will be given a distinguishing version number. Any Contribution, Accellera + Documentation or Accellera Release may always be Distributed subject to the version of the Agreement under + which it was received. In addition, after a new version of the Agreement is published, Contributor may elect + to Distribute any Contribution, Accellera Documentation or Accellera Release under the new version. No + one other than Accellera, acting by a vote of at least seventy five percent (75%) of the members of its Board + of Directors, has the right to modify this Agreement; provided that Exhibit B and Exhibit C may be amended + as specifically set forth in Section 3.1(b), and Exhibit D may be amended as specifically set forth in Section + 1.13. + + 12. ELECTRONIC ACCEPTANCE + + This Agreement may be executed either electronically or on paper. If this Agreement is executed + electronically, by clicking on the “Accept” button, Recipient warrants that it agrees to all of the terms of this + Agreement, that Recipient is authorized to enter into this Agreement, and that this Agreement is legally + binding upon Recipient. If Recipient does not agree to be bound by this Agreement, then Recipient shall + click the “Decline” button and Recipient shall not receive any rights from the Contributors nor shall + Recipient download any Contributions, Accellera Documentation or Accellera Releases. + + 13. GENERAL + + This Agreement represents the complete agreement concerning the subject matter hereof and supersedes all + prior agreements or representations, oral or written, regarding the subject matter hereof. If any provision of + this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or + enforceability of the remainder of the terms of this Agreement, and without further action by the parties + hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and + enforceable. This Agreement shall be executed in multiple counterparts (either electronically and/or on paper), + each of which shall be deemed to be an original, but all of which shall be one and the same Agreement. A + facsimile or other copy of the Agreement shall have the same force and effect as an originally executed copy + thereof. + This Agreement is governed by the laws of California, without reference to conflict of laws principles. Each + party waives its rights to a jury trial in any resulting litigation. Any litigation relating to this Agreement shall + be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in + Santa Clara County, California, or the Santa Clara County Superior Court. The application of the United + Nations Convention on Contracts for the International Sale of Goods is expressly excluded. The provisions of + this Agreement shall be construed fairly in accordance with its terms and no rules of construction for or + against either party shall be applied in the interpreting this Agreement. Recipient shall not use any + Contribution, Accellera Documentation or Accellera Release in violation of local and other applicable laws + including, but not limited to, the export control laws of the United States. + + + + IN WITNESS WHEREOF, duly authorized representatives of the parties have executed and delivered this + Agreement as of the later of the dates set forth below. + + RECIPIENT: + By: + Name: + Its: + Date: + ACCELLERA SYSTEMS INITIATIVE: + By: + Name: + Its: + Date: + + EXHIBIT A + List of Contributions as of July 13, 2006 + + Number Contribution + 1. Updated TLM Proposal + 2. TLM Extensions + 3. Abstract titled "Transaction Level Modeling in SystemC" + 4. Code and related material entitled "SCE-API Example - Standard Co-emulation APO v1.8 Spec and Routed + Example" + 5. Code and related material entitled "Simplebus v2.2 Example for SystemC v2.0. + 6. Code and related material entitled "SystemC Generic Transaction Level Communication Channel." + 7. Review of TLM API code and related documents. + 8. SystemC Verification Library version 1.0; versions 1.1, 1.2, 2.0, 2.0.1 of the SystemC modeling language as + released by Accellera and which are, or were, available for download on the website prior to the + agreement; version 2.1 (beta 11) of the SystemC modeling language to be released and made available by + Open SystemC Initiative for download on the website. + 9. Code and related material entitled "System Design with SystemC Examples." + 10. Presentation document titled "Towards a SystemC Transaction Level Modeling Standard," dated June + 2004; presentation document titled "TLM Extensions," dated April 2004; presentation document titled + "Updated TLM Proposal," dated March 29, 2004; abstract titled "Transaction Level Modeling in System C." + 11. Code and related material entitled "MP3 Decoder Example plus Performance Benchmark." + 12. SystemC October 12 Library. + 13. Source code modifications to the SystemC Library embodied in the October 12, 2004 kit + (system_2_z_lib.oct_12_2004.tgz). + Source code modifications to the SystemC Regression Test Suite embodied in the October 12, 2004 kit + (systemc_2_1_tests.oct_12_2004.tgz). + 14. Synthesizable Subset 1.0. + 15. TLM Contribution (Presentation documents; abstract; code; proposal dated 3/24/04). + 16. Updated version of TLM kit + 17. Code and related material “2.1 Beta Regression Tests” + 18. Code and related material “OSCI SystemC 2.1 Beta” + 19. SystemC 2.1 + 20. Assorted recommendations for enhancements, bug fixes and improved cross-platform support, including + project files for Microsoft Visual C++ versions 6.0 and 7.1 that are contained within the files systemc- + 2.1.05may05.tgz and systemc_tests-2.105may05.tgz. + 21. Minor modifications incorporated in SystemC 2.1 open source implementation dated July 14, 2005 to + permit port to Microsoft VC++ Version 7. + 22. Numerous modifications incorporated in SystemC 2.1 open source implementation dated July 14, 2005. + 23. A collection of interfaces and implementations in SystemC for analysis objects. + A collection of interfaces and implementations in SystemC for configuring components in a design. + 24. Modifications to the most recent version of SCV which allow it to run under the SystemC-2.1v1 kit. + 25. Set of header files intended to be included in the SystemC TLM Modeling library code. The API provides + for 1 interfaces: (a) “Atom at once (Variously called BA, PVT, CC) in which a single atom is transported at + once. + 26. Modifications included in SystemC 2.2 library labeled “systemc-2.2.04feb06.tgz;” + Modifications included in SystemC 2.2 test suites labeled “systemc_tests-2.2.04feb06.tgz.” + 27. Modifications to the SystemC 2.2 library to enable the port to gcc version 4; + Addition of compliance_1666 tests to the SystemC 2.2 regression test suite. + 28. OSCI_TL3_2006_03_01.zip, including any updates of any of the foregoing, and + OSCI_SCML_Memory_and_Bitfield_2006_03_01.zip, including any updates of any of the foregoing. + 29. C++/SystemC Code for Mentor’s SMI System PVT channel implementation; An example of a protocol + specific SystemC PVT channel implementation; Design examples using the above channel models; A + white-paper describing the channel implementations. + + EXHIBIT B + Form of Description of Contributions + + A. Description of Contributions + 1. + 2. + + The undersigned hereby makes the Contributions described above + pursuant to the term, conditions and limitations of the SystemC + License. + By: + Name: + Its: + Date: + Address: + Tel: + Fax: + Email: + + EXHIBIT C + Contribution Questionnaire + Contribution Number (see Exhibit B): + Date: + 1. Is Contributor a member of Accellera Systems Initiative? + □ Yes + □ No + If Contributor is a member of Accellera Systems Initiative, please indicate Contributor’s membership status + and complete questions 2 or 3 (as applicable): + □ Corporate Member + □ Associate Member + If Contributor is not a member of Accellera Systems Initiative, please skip questions 2 and 3 and go to + question 4. + + 2. If Contributor is a Corporate Member or Associate Member of Accellera Systems Initiative, please indicate the + name, title, and contact information for the person making this Contribution on behalf of such Corporate Member + or Associate Member: + Name: + Title: + Address: + Phone: + Fax: + Email: + + 3. If Contributor is not a member of Accellera Systems Initiative, then please complete the following: + If the Contributor is a natural person, please indicate the name and address of Contributor’s employer + and the title of the position held at such employer: + Name of Employer: + Title with such Employer: + Address: + Phone: + Fax: + Email: + If Contributor is an entity (corporation, limited liability company, partnership), then please indicate the + name, title, and contact information for the person making this Contribution on behalf of such Contributor. + Entity Name: + Name: + Title: + Address: + Phone: + Fax: + Email: + + EXHIBIT D + + Trademark Usage Policy + + I. LIST OF MARKS + 1. Open SystemC + 2. Open SystemC Initiative + 3. OSCI + 4. SystemC + 5. SystemC Initiative + 6. All logos that incorporate the foregoing word marks + + II. PROPER USE OF MARKS + Trademarks and service marks function as adjectives and generally should not be used as nouns or verbs. + Accordingly, as often as possible, the Marks should be used as adjectives immediately preceding the generic + noun that refers to the service in question. For example: + The SystemC® software + The OSCI® LRM + No Possessives or Plurals. Since they are not nouns, the Marks should never be used in the possessive or + plural forms. For example, it is not appropriate to write “SystemC’s software.” + No Use as Verbs or as Puns. The Marks should never be used as verbs or as puns. + + III. PROPER ATTRIBUTION + Trademark ownership is attributed in two ways, with the use of a symbol (TM, SM, ®) after the mark and with a + legal legend, usually found at the end of a document following the copyright notice. Following are Accellera’s + rules for symbols and legends to attribute the Marks: + Symbols: + Which Symbol Do I Use? + The Marks generally function as trademarks rather than service marks. Unless you are specifically directed + otherwise, please use the ® symbol after the Marks. + Where Do I Place the ® Symbol? + The ® symbol is placed immediately after the mark, either in superscript or subscript. + When Do I Use the Symbol? + The ® symbol is to be used after the Marks in the following instances: + Most Prominent Uses: A ® symbol is required after prominent uses of the Marks, e.g., in the headlines and + large print text of web pages, advertisements, other promotional materials and press releases, except where + space limitations or specific style considerations prevent compliance with this requirement. + First Use in Text: A ® symbol is required after the first use of each Mark in text, e.g. advertising copy or the + body of press releases, even though the symbol may have already appeared in the headline or after another + prominent use of the mark in the same document. + All Logos: The ® symbol must appear after all logos incorporating the Marks. + + IV. LEGENDS + All Marks that appear on a web page or in a press release, advertisement or other written material (whether in + print or electronic form) must be attributed in an appropriate legend. The legend may be presented in + “mouseprint” but must be large enough to be read easily. Legends generally appear at the end of a document or + the bottom of a web page but may be placed elsewhere, e.g. the inside covers of documentation. + The Accellera Systems Initiative Legend: The following legend should be used in all materials in which any + of the Marks appear: + [Insert the Marks] are trademarks or registered trademarks of Accellera Systems Initiative, Inc. in the United + States and other countries and are used with permission. + + V. MARKS NEVER COMBINED + The Marks should never be combined with the marks of any business other than Accellera. The Marks should + always appear visually separate from any other marks appearing in the same materials such that each mark + creates a distinct commercial impression. It would, for instance, not be appropriate to superimpose the logo of + another business over any Accellera logo. + + VI. LOGOS + Logos incorporating the Marks can only be used in the format provided to you by Accellera for incorporation + into your materials or web pages. The logos provided to you by Accellera cannot be modified in any way + without Accellera’s prior written approval. Logos copied from Accellera web pages or other materials may not + to be used. Please contact info@accellera.org to obtain electronic files containing the Accellera logos and to + ask any question regarding the logos. json: accellera-systemc.json - yml: accellera-systemc.yml + yaml: accellera-systemc.yml html: accellera-systemc.html - text: accellera-systemc.LICENSE + license: accellera-systemc.LICENSE - license_key: acdl-1.0 + category: Copyleft Limited spdx_license_key: CDL-1.0 other_spdx_license_keys: - LicenseRef-scancode-acdl-1.0 is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Version 1.0 - February 16, 2001 + + Copyright (C) 2001 Apple Computer, Inc. + + Permission is granted to copy and distribute verbatim copies of this License, but changing or adding to it in any way is not permitted. + + Please read this License carefully before downloading or using this material. By downloading or using this material, you are agreeing to be bound by the terms of this License. If you do not or cannot agree to the terms of this License, please do not download or use this material. + + 0. Preamble. The Common Documentation License (CDL) provides a very simple and consistent license that allows relatively unrestricted use and redistribution of documents while still maintaining the author's credit and intent. To preserve simplicity, the License does not specify in detail how (e.g. font size) or where (e.g. title page, etc.) the author should be credited. To preserve consistency, changes to the CDL are not allowed and all derivatives of CDL documents are required to remain under the CDL. Together, these constraints enable third parties to easily and safely reuse CDL documents, making the CDL ideal for authors who desire a wide distribution of their work. However, this means the CDL does not allow authors to restrict precisely how their work is used or represented, making it inappropriate for those desiring more finely-grained control. + + 1. General; Definitions. This License applies to any documentation, manual or other work that contains a notice placed by the Copyright Holder stating that it is subject to the terms of this Common Documentation License version 1.0 (or subsequent version thereof) ("License"). As used in this License: + + 1.1 "Copyright Holder" means the original author(s) of the Document or other owner(s) of the copyright in the Document. + + 1.2 "Document(s)" means any documentation, manual or other work that has been identified as being subject to the terms of this License. + + 1.3 "Derivative Work" means a work which is based upon a pre-existing Document, such as a revision, modification, translation, abridgment, condensation, expansion, or any other form in which such pre-existing Document may be recast, transformed, or adapted. + + 1.4 "You" or "Your" means an individual or a legal entity exercising rights under this License. + + 2. Basic License. Subject to all the terms and conditions of this License, You may use, copy, modify, publicly display, distribute and publish the Document and your Derivative Works thereof, in any medium physical or electronic, commercially or non-commercially; provided that: (a) all copyright notices in the Document are preserved; (b) a copy of this License, or an incorporation of it by reference in proper form as indicated in Exhibit A below, is included in a conspicuous location in all copies such that it would be reasonably viewed by the recipient of the Document; and (c) You add no other terms or conditions to those of this License. + + 3. Derivative Works. All Derivative Works are subject to the terms of this License. You may copy and distribute a Derivative Work of the Document under the conditions of Section 2 above, provided that You release the Derivative Work under the exact, verbatim terms of this License (i.e., the Derivative Work is licensed as a "Document" under the terms of this License). In addition, Derivative Works of Documents must meet the following requirements: + + (a) All copyright and license notices in the original Document must be preserved. + + (b) An appropriate copyright notice for your Derivative Work must be added adjacent to the other copyright notices. + + (c) A statement briefly summarizing how your Derivative Work is different from the original Document must be included in the same place as your copyright notice. + + (d) If it is not reasonably evident to a recipient of your Derivative Work that the Derivative Work is subject to the terms of this License, a statement indicating such fact must be included in the same place as your copyright notice. + + 4. Compilation with Independent Works. You may compile or combine a Document or its Derivative Works with other separate and independent documents or works to create a compilation work ("Compilation"). If included in a Compilation, the Document or Derivative Work thereof must still be provided under the terms of this License, and the Compilation shall contain (a) a notice specifying the inclusion of the Document and/or Derivative Work and the fact that it is subject to the terms of this License, and (b) either a copy of the License or an incorporation by reference in proper form (as indicated in Exhibit A). Mere aggregation of a Document or Derivative Work with other documents or works on the same storage or distribution medium (e.g. a CD-ROM) will not cause this License to apply to those other works. + + 5. NO WARRANTY. THE DOCUMENT IS PROVIDED 'AS IS' BASIS, WITHOUT WARRANTY OF ANY KIND, AND THE COPYRIGHT HOLDER EXPRESSLY DISCLAIMS ALL WARRANTIES AND/OR CONDITIONS WITH RESPECT TO THE DOCUMENT, EITHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND OF NONINFRINGEMENT OF THIRD PARTY RIGHTS. + + 6. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO THIS LICENSE OR YOUR USE, REPRODUCTION, MODIFICATION, DISTRIBUTION AND/OR PUBLICATION OF THE DOCUMENT, OR ANY PORTION THEREOF, WHETHER UNDER A THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. + + 7. Trademarks. This License does not grant any rights to use any names, trademarks, service marks or logos of the Copyright Holder (collectively "Marks") and no such Marks may be used to endorse or promote works or products derived from the Document without the prior written permission of the Copyright Holder. + + 8. Versions of the License. Apple Computer, Inc. ("Apple") may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Once a Document has been published under a particular version of this License, You may continue to use it under the terms of that version. You may also choose to use such Document under the terms of any subsequent version of this License published by Apple. No one other than Apple has the right to modify the terms applicable to Documents created under this License. + + 9. Termination. This License and the rights granted hereunder will terminate automatically if You fail to comply with any of its terms. Upon termination, You must immediately stop any further reproduction, modification, public display, distr ibution and publication of the Document and Derivative Works. However, all sublicenses to the Document and Derivative Works which have been properly granted prior to termination shall survive any termination of this License. Provisions which, by their nat ure, must remain in effect beyond the termination of this License shall survive, including but not limited to Sections 5, 6, 7, 9 and 10. + + 10. Waiver; Severability; Governing Law. Failure by the Copyright Holder to enforce any provision of this License will not be deemed a waiver of future enforcement of that or any other provision. If for any reason a court of competent jurisdiction finds any provision of this License, or portion thereof, to be unenforceable, that provision of the License will be enforced to the maximum extent permissible so as to effect the economic benefits and intent of the parties, and the remainder of this License will continue in full force and effect. This License shall be governed by the laws of the United States and the State of California, except that body of California law concerning conflicts of law. + + EXHIBIT A + + The proper form for an incorporation of this License by reference is as follows: + + "Copyright (c) [year] by [Copyright Holder's name]. This material has been released under and is subject to the terms of the Common Documentation License, v.1.0, the terms of which are hereby incorporated by reference. Please obtain a copy of the License at http://www.opensource.apple.com/cdl/ and read it before using this material. Your use of this material signifies your agreement to the terms of the License." + + Apple Common Documentation License v1.0 json: acdl-1.0.json - yml: acdl-1.0.yml + yaml: acdl-1.0.yml html: acdl-1.0.html - text: acdl-1.0.LICENSE + license: acdl-1.0.LICENSE - license_key: ace-tao + category: Permissive spdx_license_key: DOC other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Copyright and Licensing Information for ACE(TM), TAO(TM), CIAO(TM), and CoSMIC(TM) + + ACE(TM),TAO(TM),CIAO(TM),andCoSMIC(TM) (henceforth referred to as "DOC software") are copyrighted by Douglas C. Schmidt and his research group at Washington University, University of California, Irvine, and Vanderbilt University, Copyright (c) 1993-2009, all rights reserved. Since DOC software is open-source, freely available software, you are free to use, modify, copy, and distribute--perpetually and irrevocably--the DOC software source code and object code produced from the source, as well as copy and distribute modified versions of this software. You must, however, include this copyright statement along with any code built using DOC software that you release. No copyright statement needs to be provided if you just ship binary executables of your software products. + + You can use DOC software in commercial and/or binary software releases and are under no obligation to redistribute any of your source code that is built using DOC software. Note, however, that you may not misappropriate the DOC software code, such as copyrighting it yourself or claiming authorship of the DOC software code, in a way that will prevent DOC software from being distributed freely using an open-source development model. You needn't inform anyone that you're using DOC software in your software, though we encourage you to let us know so we can promote your project in the DOC software success stories. + + The ACE, TAO, CIAO, and CoSMIC web sites are maintained by the DOC Group at the Institute for Software Integrated Systems (ISIS) and the Center for Distributed Object Computing of Washington University, St. Louis for the development of open-source software as part of the open-source software community. Submissions are provided by the submitter ``as is'' with no warranties whatsoever, including any warranty of merchantability, noninfringement of third party intellectual property, or fitness for any particular purpose. In no event shall the submitter be liable for any direct, indirect, special, exemplary, punitive, or consequential damages, including without limitation, lost profits, even if advised of the possibility of such damages. Likewise, DOC software is provided as is with no warranties of any kind, including the warranties of design, merchantability, and fitness for a particular purpose, noninfringement, or arising from a course of dealing, usage or trade practice. Washington University, UC Irvine, Vanderbilt University, their employees, and students shall have no liability with respect to the infringement of copyrights, trade secrets or any patents by DOC software or any part thereof. Moreover, in no event will Washington University, UC Irvine, or Vanderbilt University, their employees, or students be liable for any lost revenue or profits or other special, indirect and consequential damages. + + DOC software is provided with no support and without any obligation on the part of Washington University, UC Irvine, Vanderbilt University, their employees, or students to assist in its use, correction, modification, or enhancement. A number of companies around the world provide commercial support for DOC software, however. DOC software is Y2K-compliant, as long as the underlying OS platform is Y2K-compliant. Likewise, DOC software is compliant with the new US daylight savings rule passed by Congress as "The Energy Policy Act of 2005," which established new daylight savings times (DST) rules for the United States that expand DST as of March 2007. Since DOC software obtains time/date and calendaring information from operating systems users will not be affected by the new DST rules as long as they upgrade their operating systems accordingly. + + The names ACE(TM), TAO(TM), CIAO(TM), CoSMIC(TM), Washington University, UC Irvine, and Vanderbilt University, may not be used to endorse or promote products or services derived from this source without express written permission from Washington University, UC Irvine, or Vanderbilt University. This license grants no permission to call products or services derived from this source ACE(TM), TAO(TM), CIAO(TM), or CoSMIC(TM), nor does it grant permission for the name Washington University, UC Irvine, or Vanderbilt University to appear in their names. + + If you have any suggestions, additions, comments, or questions, please let me know. Douglas C. Schmidt + + Back to the ACE home page. json: ace-tao.json - yml: ace-tao.yml + yaml: ace-tao.yml html: ace-tao.html - text: ace-tao.LICENSE + license: ace-tao.LICENSE - license_key: acroname-bdk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-acroname-bdk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: " BRAINSTEM DEVELOPMENT KIT SOFTWARE PACKAGE LICENSE AGREEMENT:\n\ + \nPLEASE READ THIS SOFTWARE LICENSE AGREEMENT CAREFULLY BEFORE DOWNLOADING OR USING THE\ + \ SOFTWARE.\n\nBY USING THE SOFTWARE, OR USING EQUIPMENT THAT CONTAINS THE SOFTWARE, YOU\ + \ ARE CONSENTING TO BE BOUND BY THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL OF THE TERMS\ + \ OF THIS AGREEMENT, DO NOT USE THE SOFTWARE AND DESTROY ALL COPIES IN YOUR POSSESSION.\n\ + \nBRAINSTEM2 LIBRARY SHARED OBJECT, STATIC ARCHIVE, AND LIBRARY HEADERS.\nSOFTWARE LICENSE\ + \ AGREEMENT Copyright (c) 1994-2020 Acroname Inc.\n\nSingle User and Multiple-Users License\ + \ Grant: Acroname Inc. (\"Acroname\") and its suppliers grant to Customer (\"Customer\"\ + ) a nonexclusive and nontransferable license to use the BrainStem2 shared object (.dylib,\ + \ .framework, .so, .dll, etc) static archive (.a), and associated library header files (\"\ + Software\") in object code form.\n\nCUSTOMER SHALL NOT: MODIFY THE SOFTWARE; REVERSE ENGINEER\ + \ OR REVERSE COMPILE OR REVERSE ASSEMBLE ALL OR ANY PORTION OF THE SOFTWARE.\n\nCustomer\ + \ agrees that aspects of the licensed materials, including the specific design and structure\ + \ of individual programs, constitute trade secrets and/or copyrighted material of Acroname.\ + \ Title to Software and documentation shall remain solely with Acroname.\n\nCustomer agrees\ + \ that redistributions of this Software must retain the above copyright notice, this list\ + \ of conditions and the following disclaimer.\n\nDISCLAIMER. EXCEPT AS SPECIFIED IN THIS\ + \ AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS, AND WARRANTIES INCLUDING,\ + \ WITHOUT LIMITATION, ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\ + \ PURPOSE, \nNONINFRINGEMENT OR ARISING FROM A COURSE OF DEALING, USAGE, OR TRADE PRACTICE,\ + \ ARE HEREBY EXCLUDED TO THE EXTENT ALLOWED BY APPLICABLE LAW. IN NO EVENT WILL ACRONAME\ + \ OR ITS SUPPLIERS BE LIABLE FOR ANY LOST REVENUE, PROFIT, OR DATA, \nOR FOR SPECIAL, INDIRECT,\ + \ CONSEQUENTIAL, INCIDENTAL, OR PUNITIVE DAMAGES HOWEVER CAUSED AND REGARDLESS OF THE THEORY\ + \ OF LIABILITY ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE EVEN IF ACRONAME\ + \ OR ITS SUPPLIERS HAVE BEEN ADVISED OF\nTHE POSSIBILITY OF SUCH DAMAGES. THIS SOFTWARE\ + \ IS NOT INTENDED FOR USE IN LIFE SUPPORT SYSTEMS. In no event shall Acroname's or its suppliers'\ + \ liability to Customer, whether in contract, tort (including negligence), or otherwise,\ + \ exceed the price paid by Customer. Some jurisdictions may not allow limitation or exclusion\ + \ of liability for consequential or incidental damages.\n\nThis Software License Agreement\ + \ is effective until terminated. Customer may terminate this License at any time by destroying\ + \ all copies of the Software including any documentation. This License will terminate immediately\ + \ without notice from Acroname if Customer fails to comply with any provision of this License.\ + \ Upon termination, Customer must destroy all copies of the Software.\n\nThis Software,\ + \ including technical data, is subject to U.S. export control laws, including the U.S. Export\ + \ Administration Act and its associated regulations, and may be subject to export or import\ + \ regulations in other countries. Customer agrees to comply strictly with all such regulations\ + \ and acknowledges that it has the responsibility to obtain licenses to export, re-export,\ + \ \nor import Software. This License shall be governed by and construed in accordance with\ + \ the laws of the State of Colorado, United States of America, as if performed wholly within\ + \ the state and without giving effect to the principles of conflict of law. If any portion\ + \ hereof is found to be void or unenforceable, the remaining provisions of this License\ + \ shall remain in full force and effect. \nThis License constitutes the entire License between\ + \ the parties with respect to the use of the Software.\n\nBRAINSTEM2 DIRECT DEPENDENCY LICENSE\ + \ NOTIFICATION:\nLIB USB\nThis binary distribution uses libUSB v1.0 (https://libusb.info).\ + \ LibUSB is licensed under GNU Lesser General Public License (LGPL) v2.1. Acroname will\ + \ provide, at request (support@acroname.com), object code sufficient to recompile the Acroname\ + \ BrainStem binary distribution with an updated interface compatible copy of the libUSB\ + \ library." json: acroname-bdk.json - yml: acroname-bdk.yml + yaml: acroname-bdk.yml html: acroname-bdk.html - text: acroname-bdk.LICENSE + license: acroname-bdk.LICENSE - license_key: activestate-community + category: Proprietary Free spdx_license_key: LicenseRef-scancode-activestate-community other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "ActiveState Community License \nPreamble:\nThe intent of this document is to state\ + \ the conditions under which the Package may be copied and distributed, such that ActiveState\ + \ maintains control over the development and distribution of the Package, while allowing\ + \ the users of the Package to use the Package in a variety of ways.\n\nDefinitions:\n\n\"\ + ActiveState\" refers to ActiveState Software Inc., the Copyright Holder of the Package.\n\ + \n\"Package\" refers to those files, including, but not limited to, source code, binary\ + \ executables, images, and scripts, which are distributed by the Copyright Holder under\ + \ the name ActivePython.\n\n\"You\" is you, if you're thinking about copying or distributing\ + \ this Package.\n\n1.\tYou may use this Package for commercial or non-commercial purposes\ + \ without charge. \n\n2.\tYou may make and give away verbatim copies of this Package for\ + \ personal use, or for use within your organization, provided that you duplicate all of\ + \ the original copyright notices and associated disclaimers. You may not distribute copies\ + \ of this Package, or copies of packages derived from this Package, to others outside your\ + \ organization without specific prior written permission from ActiveState (although you\ + \ are encouraged to direct them to sources from which they may obtain it for themselves).\n\ + \n3.\tYou may apply bug fixes, portability fixes, and other modifications derived from ActiveState.\ + \ A Package modified in such a way shall still be covered by the terms of this license.\n\ + \n4.\tIn addition to the above allowed uses, this license does allow for the redistribution\ + \ of parts of the Package together with other software code in a wrapped format, including\ + \ but not limited to a format wrapped with executable generators such as \"py2app\" or \"\ + py2exe\". However, if you wish to redistribute the complete Package either as a standalone\ + \ distribution or in a wrapped format, you must obtain written permission from ActiveState.\ + \ ActiveState may charge a fee for such license. To obtain permission for redistribution\ + \ or clarification regarding your particular intended use of the Package, please contact\ + \ us.\n\n5.\tActiveState's name and trademarks may not be used to endorse or promote packages\ + \ derived from this Package without specific prior written permission from ActiveState.\n\ + \n6.\tTHIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES,\ + \ INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR\ + \ A PARTICULAR PURPOSE.\n\n7.\tThis Package may be subject to export controls imposed by\ + \ applicable laws and regulations, which may prohibit or restrict the distribution, exportation\ + \ and re-exportation of the Package. You will comply with all applicable export control\ + \ laws, including such laws of the U.S., Canada and the European Community, in effect from\ + \ time to time, including without limitation the Canadian Export and Import Permits Act,\ + \ the Canadian United Nations Act, and the U.S. Foreign Corrupt Practices Act and with all\ + \ export laws and restrictions and regulations of the United States Department of Commerce\ + \ or other United States, European Community or other foreign agency or authority, and will\ + \ not distribute, export or re-export, or allow the distribution, export or re-export, of\ + \ the Package or any copy or adaptation of direct product thereof, or any underlying technology,\ + \ except in full compliance with any and all such applicable laws, restrictions and regulations.\ + \ You represent and warrant that you are not located in, under the control of, or a national\ + \ or resident of, any restricted country (currently including Myanmar [Burma], Belarus,\ + \ Cuba, Libya, North Korea, Iran, Iraq, Sudan, Syria, and Afghanistan) or of any designated\ + \ entity or person.\n\nThe Package may contain software covered by other licenses and copyrights.\n\ + \ Copyright © 2001 Python Software Foundation. All Rights Reserved.\n Copyright © 2000 BeOpen.com.\ + \ All Rights Reserved. \n Copyright © 1995-2001 Corporation for National Research Initiatives.\ + \ All Rights Reserved. \n Copyright © 1991-1995 Stichting Mathematisch Centrum, Amsterdam.\ + \ All Rights Reserved." json: activestate-community.json - yml: activestate-community.yml + yaml: activestate-community.yml html: activestate-community.html - text: activestate-community.LICENSE + license: activestate-community.LICENSE - license_key: activestate-community-2012 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-activestate-community-2012 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "ACTIVESTATE COMMUNITY EDITION SOFTWARE LICENSE AGREEMENT\n\n Version effective date:\ + \ August 2, 2012\n\nPreamble:\nSupport is available from ACTIVESTATE under a separate agreement,\ + \ see Part 3.d. For redistribution of the Software, You will require a special license,\ + \ see part 4.b. For more information on support options and or redistribution (e.g. Business\ + \ Edition, Enterprise Edition, and or OEM Licensing) please visit www.activestate.com. This\ + \ license establishes the terms under which the Software may be copied, modified, distributed\ + \ and/or redistributed. The intent of this license is that ACTIVESTATE maintains control\ + \ over the development and distribution of the Software, while allowing its use it in a\ + \ variety of ways. If the terms of this license do not permit Your proposed usage or if\ + \ You require clarification regarding your intended use of the Software, please contact\ + \ sales@activestate.com.\n\nACTIVESTATE SOFTWARE INC. (\"ACTIVESTATE\") IS WILLING TO LICENSE\ + \ THE SOFTWARE ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS\ + \ SOFTWARE LICENSE AGREEMENT. PLEASE READ THE TERMS CAREFULLY. BY CLICKING ON \"YES, ACCEPT\"\ + \ OR BY INSTALLING THE SOFTWARE, YOU WILL INDICATE YOUR AGREEMENT WITH THEM. IF YOU ARE\ + \ ENTERING INTO THIS AGREEMENT ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOUR ACCEPTANCE\ + \ REPRESENTS THAT YOU HAVE THE AUTHORITY TO BIND SUCH ENTITY TO THESE TERMS, IN WHICH CASE\ + \ \"YOU\" OR \"YOUR\" SHALL REFER TO YOUR ENTITY. IF YOU DO NOT AGREE WITH THESE TERMS,\ + \ OR IF YOU DO NOT HAVE THE AUTHORITY TO BIND YOUR ENTITY, THEN ACTIVESTATE IS UNWILLING\ + \ TO LICENSE THE SOFTWARE, AND YOU SHOULD NOT INSTALL THE SOFTWARE.\n\n1. Parties. The parties\ + \ to this Agreement are you, the licensee (\"You\") and ACTIVESTATE. If You are not acting\ + \ on behalf of Yourself as an individual, then \"You\" means Your company or organization.\ + \ A company or organization shall in either case mean a single business entity, and shall\ + \ not include its affiliates or wholly owned subsidiaries.\n\n2. The Software. The accompanying\ + \ materials including, but not limited to, source code, binary executables, documentation,\ + \ images, and scripts, which are distributed by ACTIVESTATE, and derivatives of that collection\ + \ and/or those files are referred to herein as the \"Software\".\n\n3. License Grant for\ + \ the Software.\n\n a. You are granted worldwide, perpetual, paid up, royalty free, non-exclusive\ + \ rights to install and use the Software subject to the terms and conditions contained herein.\n\ + \n b. You may: (i) copy the Software for archival purposes, (ii) copy the Software for\ + \ personal use purposes, (iii) use, copy, and distribute the Software solely for Your organization's\ + \ internal use and or internal business operation purposes including copying the Software\ + \ to other computers or workstations inside Your organization, (iv) redistribute parts of\ + \ the Software outside of Your organization only as part of a Wrapped Application utilizing\ + \ executable generators such as PerlApp, Perl2Exe, PAR, TclApp, py2app, or py2exe. Any copy\ + \ must contain the original Software's proprietary notices in unaltered form. \"Wrapped\ + \ Application\" means a single-file executable wherein all binary components are encapsulated\ + \ in a single binary however You may not expose the base programming language as a scripting\ + \ language within your own application program to end users.\n\n c. You are permitted\ + \ to modify the Accessible Code to develop bug fixes, customizations, or additional features,\ + \ solely for the purpose of using the Software pursuant to this Agreement. \"Accessible\ + \ Code\" means source code contained within the Software that is under an open source license\ + \ .\n\n d. No Other Software and Services. ACTIVESTATE will not provide You with any other\ + \ software or services (including any support or maintenance services) relating to the Software,\ + \ except to the extent that such software and services, if any, are required and provided\ + \ pursuant to an applicable maintenance and support agreement.\n\n4. Restrictions.\n\n \ + \ a. ACTIVESTATE encourages You to promote use of the Software. However this Agreement\ + \ does not grant permission to use the trade names, trademarks, service marks, or product\ + \ names of ACTIVESTATE, except as required for reasonable and customary use in describing\ + \ the origin of the Software. In particular, You cannot use any of these marks in any way\ + \ that might state or imply that ACTIVESTATE endorses Your work, or might state or imply\ + \ that You created the Software covered by this Agreement. Except as expressly provided\ + \ herein, you may not:\ni. modify or translate the Software;\nii. reverse engineer, decompile,\ + \ or disassemble the Software, except to the extent this restriction is expressly prohibited\ + \ by applicable law;\niii. create derivative works based on the Software;\niv. merge the\ + \ Software with another product;\nv. copy the Software; or\nvi. remove or obscure any proprietary\ + \ rights notices or labels on the Software.\n\n b. Use of the Software through a web server\ + \ on external-facing servers requires a separate Business Edition license agreement from\ + \ ACTIVESTATE which will supersede the terms of this license. Except as expressly provided\ + \ herein, you may not use the Software to provide content or functionality through a web\ + \ server on external-facing servers,\n\n c. You may not distribute the Software via OEM\ + \ Distribution (as defined below) without entering into a separate OEM Distribution Agreement\ + \ with ACTIVESTATE. \"OEM Distribution\" means permitting others outside Your organization\ + \ to use the Software, distribution and/or use of the Software as either a bundled add-on\ + \ to, or embedded component of, another application, with such application being made available\ + \ to its users as, but not limited to, an on-premises application, a hosted application,\ + \ a Software-as-a-Service offering or a subscription service for which the distributor of\ + \ the application receives a license fee or any form of direct or indirect compensation.\ + \ Except as expressly provided herein, you may not:\ni. permit others outside Your organization\ + \ to use the Software,\nii. redistribute:\n \n1. the Software as a whole whether as a wrapped\ + \ application or on a stand alone basis, or\n2. parts of the Software to create a language\ + \ distribution, or\n3. the ACTIVESTATE components with Your Wrapped Application.\n\n d.\ + \ You are excluded from the foregoing restrictions in this paragraph 4b or 4c if You are\ + \ using the Software for non-commercial purposes as determined by ACTIVESTATE at its sole\ + \ discretion, or if You are using the Software solely for Your organization’s internal use\ + \ and or internal business operation purposes.\n\n5. Ownership. ACTIVESTATE and its suppliers\ + \ own the Software and all intellectual property rights embodied therein, including copyrights\ + \ and valuable trade secrets embodied in the Software's design and coding methodology. \ + \ The Software is protected by Canada and United States copyright laws and international\ + \ treaty provisions. This Agreement provides You only a limited use license, and no ownership\ + \ of any intellectual property.\n\n6. Infringement Indemnification. You shall defend or\ + \ settle, at Your expense, any action brought against ACTIVESTATE based upon the claim that\ + \ any modifications to the Software or combination of the Software with products infringes\ + \ or violates any third party right; provided, however, that: (i) ACTIVESTATE shall notify\ + \ Licensee promptly in writing of any such claim; (ii) ACTIVESTATE shall not enter into\ + \ any settlement or compromise any such claim without Your prior written consent; (iii)\ + \ You shall have sole control of any such action and settlement negotiations; and (iv) ACTIVESTATE\ + \ shall provide You with commercially reasonable information and assistance, at Your request\ + \ and expense, necessary to settle or defend such claim. You agree to pay all damages and\ + \ costs finally awarded against ACTIVESTATE attributable to such claim.\n\n7. Limited Warranty.\ + \ NEITHER ACTIVESTATE NOR ANY OF ITS SUPPLIERS OR RESELLERS MAKES ANY WARRANTY OF ANY KIND,\ + \ EXPRESS OR IMPLIED, AND ACTIVESTATE AND ITS SUPPLIERS SPECIFICALLY DISCLAIM THE IMPLIED\ + \ WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,\ + \ SYSTEM INTEGRATION, AND DATA ACCURACY. THERE IS NO WARRANTY OR GUARANTEE THAT THE OPERATION\ + \ OF THE SOFTWARE WILL BE UNINTERRUPTED, ERROR-FREE, OR VIRUS-FREE, OR THAT THE SOFTWARE\ + \ WILL MEET ANY PARTICULAR CRITERIA OF PERFORMANCE, QUALITY, ACCURACY, PURPOSE, OR NEED.\ + \ YOU ASSUME THE ENTIRE RISK OF SELECTION, INSTALLATION, AND USE OF THE SOFTWARE. THIS DISCLAIMER\ + \ OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS AGREEMENT. NO USE OF THE SOFTWARE IS\ + \ AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. Local Law. If implied warranties\ + \ may not be disclaimed under applicable law, then ANY IMPLIED WARRANTIES ARE LIMITED IN\ + \ DURATION TO THE PERIOD REQUIRED BY APPLICABLE LAW. Some jurisdictions do not allow limitations\ + \ on how long an implied warranty may last, so the above limitations may not apply to You.\ + \ This warranty gives you specific rights, and You may have other rights which vary from\ + \ jurisdiction to jurisdiction.\n\n9. Limitation of Liability. INDEPENDENT OF THE FORGOING\ + \ PROVISIONS, IN NO EVENT AND UNDER NO LEGAL THEORY, INCLUDING WITHOUT LIMITATION, TORT,\ + \ CONTRACT, OR STRICT PRODUCTS LIABILITY, SHALL ACTIVESTATE OR ANY OF ITS SUPPLIERS BE LIABLE\ + \ TO YOU OR ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\ + \ OF ANY KIND, INCLUDING WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE,\ + \ COMPUTER MALFUNCTION, OR ANY OTHER KIND OF COMMERCIAL DAMAGE, EVEN IF ACTIVESTATE HAS\ + \ BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION SHALL NOT APPLY TO LIABILITY\ + \ FOR DEATH OR PERSONAL INJURY TO THE EXTENT PROHIBITED BY APPLICABLE LAW. IN NO EVENT SHALL\ + \ ACTIVESTATE'S LIABILITY FOR DAMAGES FOR ANY CAUSE WHATSOEVER, AND REGARDLESS OF THE FORM\ + \ OF ACTION, EXCEED IN THE AGGREGATE THE AMOUNT OF THE PURCHASE PRICE PAID FOR THE SOFTWARE\ + \ LICENSE.\n\n10. Export Controls. You agree to comply with all export laws and restrictions\ + \ and regulations of Canada, the United States or foreign agencies or authorities, and not\ + \ to export or re-export the Software or any direct product thereof in violation of any\ + \ such restrictions, laws or regulations, or without all necessary approvals. As applicable,\ + \ each party shall obtain and bear all expenses relating to any necessary licenses and/or\ + \ exemptions with respect to its own export of the Software from Canada or the U.S. Neither\ + \ the Software nor the underlying information or technology may be electronically transmitted\ + \ or otherwise exported or re-exported (i) into Belarus, Myanmar (Burma), Cuba, Iran, Iraq,\ + \ Libya, North Korea, Sudan, Syria or any other country subject to Canada or U.S. trade\ + \ sanctions covering the Software, to individuals or entities controlled by such countries,\ + \ or to nationals or residents of such countries other than nationals who are lawfully admitted\ + \ permanent residents of countries not subject to such sanctions; or (ii) to anyone on Canada's\ + \ Area Control List of the Export and Import Permits Act, or; (iii) to anyone on the U.S.\ + \ Treasury Department's list of Specially Designated Nationals and Blocked Persons or the\ + \ U.S. Commerce Department's Table of Denial Orders. By downloading or using the Software,\ + \ You agree to the foregoing and represent and warrant that it complies with these conditions.\n\ + \n11. U.S. Government End-Users. The Software is a \"commercial item,\" as that term is\ + \ defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\"\ + \ and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R.\ + \ 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through\ + \ 227.7202-4 (June 1995), all U.S. Government End Users acquire the Software with only those\ + \ rights as are granted to all other end users pursuant to the terms and conditions herein.\ + \ Unpublished rights are reserved under the copyright laws of Canada and the United States.\n\ + \n12. Licensee Outside The U.S. If You are located outside the U.S., then the following\ + \ provisions shall apply: (i) Les parties aux presentes confirment leur volonte que cette\ + \ convention de meme que tous les documents y compris tout avis qui siy rattache, soient\ + \ rediges en langue anglaise (translation: \"The parties confirm that this Agreement and\ + \ all related documentation is and will be in the English language.\"); and (ii) You are\ + \ responsible for complying with any local laws in your jurisdiction which might impact\ + \ your right to import, export or use the Software, and You represent that You have complied\ + \ with any regulations or registration procedures required by applicable law to make this\ + \ license enforceable.\n\n13. Severability. If any provision of this Agreement is declared\ + \ invalid or unenforceable, such provision shall be deemed modified to the extent necessary\ + \ and possible to render it valid and enforceable. In any event, the unenforceability or\ + \ invalidity of any provision shall not affect any other provision of this Agreement, and\ + \ this Agreement shall continue in full force and effect, and be construed and enforced,\ + \ as if such provision had not been included, or had been modified as above provided, as\ + \ the case may be.\n\n14. Arbitration. Except for actions to protect intellectual property\ + \ rights and to enforce an arbitrator's decision hereunder, all disputes, controversies,\ + \ or claims arising out of or relating to this Agreement or a breach thereof shall be submitted\ + \ to and be finally resolved by arbitration under the rules of the American Arbitration\ + \ Association (\"AAA\") then in effect. There shall be one arbitrator, and such arbitrator\ + \ shall be chosen by mutual agreement of the parties in accordance with AAA rules. The arbitration\ + \ shall take place in Vancouver, BC, Canada, and may be conducted by telephone or online.\ + \ The arbitrator shall apply the laws of the Province of British Columbia, Canada to all\ + \ issues in dispute. The controversy or claim shall be arbitrated on an individual basis,\ + \ and shall not be consolidated in any arbitration with any claim or controversy of any\ + \ other party. The findings of the arbitrator shall be final and binding on the parties,\ + \ and may be entered in any court of competent jurisdiction for enforcement. Enforcements\ + \ of any award or judgment shall be governed by the United Nations Convention on the Recognition\ + \ and Enforcement of Foreign Arbitral Awards. Should either party file an action contrary\ + \ to this provision, the other party may recover attorney's fees and costs up to $1000.00.\n\ + \n15. Jurisdiction and Venue. The courts of Vancouver in the Province of British Columbia,\ + \ Canada and the nearest British Columbia provincial court shall be the exclusive jurisdiction\ + \ and venue for all legal proceedings that are not arbitrated under this Agreement.\n\n\ + 16. Force Majeure. Neither party shall be liable for damages for any delay or failure of\ + \ delivery arising out of causes beyond their reasonable control and without their fault\ + \ or negligence, including, but not limited to, Acts of God, acts of civil or military authority,\ + \ fires, riots, wars, embargoes, Internet disruptions, hacker attacks, or communications\ + \ failures. Notwithstanding anything to the contrary contained herein, if either party is\ + \ unable to perform hereunder for a period of thirty (30) consecutive days, then the other\ + \ party may terminate this Agreement immediately without liability by ten (10) days written\ + \ notice to the other.\n\n17. Publicity Rights. You grant ACTIVESTATE the right to include\ + \ Your name, trade name, trademark, service mark or logo in its Software promotional material.\ + \ You may retract this grant at any time in writing to sales@activestate.com, requesting\ + \ Your name, trade name, trademark, service mark or logo be excluded from future releases\ + \ of ACTIVESTATE Software promotional material. Requests cannot be complied with retroactively\ + \ and may require up to thirty days to process.\n\n18. Assignment. Except as expressly provided\ + \ herein neither this Agreement nor any rights granted hereunder, nor the use of any of\ + \ the Software may be assigned, or otherwise transferred, in whole or in part, by Licensee,\ + \ without the prior written consent of ACTIVESTATE. ACTIVESTATE may assign this Agreement\ + \ in the event of a merger or sale of all or substantially all of the stock of assets of\ + \ ACTIVESTATE without the consent of Licensee. Any attempted assignment will be void and\ + \ of no effect unless permitted by the foregoing. This Agreement shall inure to the benefit\ + \ of the parties permitted successors and assigns.\n\n19. Miscellaneous. This Agreement\ + \ constitutes the entire understanding of the parties with respect to the subject matter\ + \ of this Agreement and merges all prior communications, representations, and agreements.\ + \ ACTIVESTATE reserves the right to change this Agreement at any time, which change shall\ + \ be effective immediately upon its posting into any future release of the Software. If\ + \ any provision of this Agreement is held to be unenforceable for any reason, such provision\ + \ shall be reformed only to the extent necessary to make it enforceable. This Agreement\ + \ shall be construed under the laws of the Province of British Columbia, Canada, excluding\ + \ rules regarding conflicts of law. The application of the United Nations Convention of\ + \ Contracts for the International Sale of Goods is expressly excluded. The parties agree\ + \ that the Uniform Computer Transactions Act or any version thereof, adopted by any state,\ + \ in any form (\"UCITA\"), shall not apply to this Agreement, and to the extent that UCITA\ + \ may be applicable, the parties agree to opt out of the applicability of UCITA pursuant\ + \ to the opt-out provision(s) contained therein." json: activestate-community-2012.json - yml: activestate-community-2012.yml + yaml: activestate-community-2012.yml html: activestate-community-2012.html - text: activestate-community-2012.LICENSE + license: activestate-community-2012.LICENSE - license_key: activestate-komodo-edit + category: Proprietary Free spdx_license_key: LicenseRef-scancode-activestate-komodo-edit other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + ACTIVESTATE® KOMODO® EDIT LICENSE AGREEMENT + + Please read carefully: THIS IS A LICENSE AND NOT AN AGREEMENT FOR SALE. By using and installing ActiveState's Software or, where applicable, choosing the "I ACCEPT..." option at the end of the License you indicate that you have read, understood, and accepted the terms and conditions of the License. IF YOU DO NOT AGREE WITH THE TERMS AND CONDITIONS, YOU SHOULD NOT ATTEMPT TO INSTALL THE SOFTWARE. If the Software is already downloaded or installed, you should promptly cease using the Software in any manner and destroy all copies of the Software in your possession. You, the user, assume all responsibility for the selection of the Software to achieve your intended results and for the installation, use and results obtained from the Software. If you have any questions concerning this, you may contact ActiveState via license@activestate.com. + + Version 1.1 + + A SOURCE CODE VERSION OF CERTAIN KOMODO EDIT BROWSER FUNCTIONALITY THAT YOU MAY USE, MODIFY AND DISTRIBUTE IS AVAILABLE TO YOU FREE-OF-CHARGE FROM WWW.ACTIVESTATE.COM UNDER THE MOZILLA PUBLIC and other open source software licenses. + + The accompanying executable code version of ActiveState Komodo Edit and related documentation (the "Product") is made available to you under the terms of this ActiveState Komodo Edit END-USER SOFTWARE LICENSE AGREEMENT (THE "AGREEMENT"). BY CLICKING THE "ACCEPT" BUTTON, OR BY INSTALLING OR USING THE ActiveState Komodo Edit BROWSER, YOU ARE CONSENTING TO BE BOUND BY THE AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT, DO NOT CLICK THE "ACCEPT" BUTTON, AND DO NOT INSTALL OR USE ANY PART OF THE ActiveState Komodo Edit BROWSER. + + DURING THE ACTIVESTATE KOMODO EDIT INSTALLATION PROCESS, AND AT LATER TIMES, YOU MAY BE GIVEN THE OPTION OF INSTALLING ADDITIONAL COMPONENTS FROM THIRD-PARTY SOFTWARE PROVIDERS. THE INSTALLATION AND USE OF THOSE THIRD-PARTY COMPONENTS MAY BE GOVERNED BY ADDITIONAL LICENSE AGREEMENTS. + + LICENSE GRANT. ActiveState Software grants you a non-exclusive license to use the executable code version of the Product. This Agreement will also govern any software upgrades provided by ActiveState that replace and/or supplement the original Product, unless such upgrades are accompanied by a separate license, in which case the terms of that license will govern. + + TERMINATION. If you breach this Agreement your right to use the Product will terminate immediately and without notice, but all provisions of this Agreement except the License Grant (Paragraph 1) will survive termination and continue in effect. Upon termination, you must destroy all copies of the Product. + + PROPRIETARY RIGHTS. Portions of the Product are available in source code form under the terms of the Mozilla Public License and other open source licenses (collectively, "Open Source Licenses") at www.activestate.com. Nothing in this Agreement will be construed to limit any rights granted under the Open Source Licenses. Subject to the foregoing, ActiveState, for itself and on behalf of its licensors, hereby reserves all intellectual property rights in the Product, except for the rights expressly granted in this Agreement. You may not remove or alter any trademark, logo, copyright or other proprietary notice in or on the Product. This license does not grant you any right to use the trademarks, service marks or logos of ActiveState or its licensors. + + PRIVACY POLICY. You agree to the ActiveState Komodo Edit Privacy Policy, made available online at privacy policy, as that policy may be changed from time to time. When ActiveState changes the policy in a material way a notice will be posted on the website at www.activestate.com, and when any change is made in the privacy policy, the updated policy will be posted at the above link. It is your responsibility to ensure that you understand the terms of the privacy policy, so you should periodically check the current version of the policy for changes. + + DISCLAIMER OF WARRANTY. THE PRODUCT IS PROVIDED "AS IS" WITH ALL FAULTS. TO THE EXTENT PERMITTED BY LAW, ACTIVESTATE AND ACTIVESTATE'S DISTRIBUTORS, AND LICENSORS HEREBY DISCLAIM ALL WARRANTIES, WHETHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES THAT THE PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE AND NON-INFRINGING. YOU BEAR THE ENTIRE RISK AS TO SELECTING THE PRODUCT FOR YOUR PURPOSES AND AS TO THE QUALITY AND PERFORMANCE OF THE PRODUCT. THIS LIMITATION WILL APPLY NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF IMPLIED WARRANTIES, SO THIS DISCLAIMER MAY NOT APPLY TO YOU. + LIMITATION OF LIABILITY. EXCEPT AS REQUIRED BY LAW, ACTIVESTATE AND ITS DISTRIBUTORS, DIRECTORS, LICENSORS, CONTRIBUTORS AND AGENTS (COLLECTIVELY, "ACTIVESTATE") WILL NOT BE LIABLE FOR ANY INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES ARISING OUT OF OR IN ANY WAY RELATING TO THIS AGREEMENT OR THE USE OF OR INABILITY TO USE THE PRODUCT, INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, LOST PROFITS, LOSS OF DATA, AND COMPUTER FAILURE OR MALFUNCTION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND REGARDLESS OF THE THEORY (CONTRACT, TORT OR OTHERWISE) UPON WHICH SUCH CLAIM IS BASED. ACTIVESTATE'S LIABILITY UNDER THIS AGREEMENT WILL NOT EXCEED THE GREATER OF $500 (FIVE HUNDRED DOLLARS) AND THE FEES PAID BY YOU UNDER THE LICENSE (IF ANY). SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL, CONSEQUENTIAL OR SPECIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + + EXPORT CONTROLS. This license is subject to all applicable export restrictions. You must comply with all export and import laws and restrictions and regulations of any United States or foreign agency or authority relating to the Product and its use. + U.S. GOVERNMENT END-USERS. This Product is a "commercial item," as that term is defined in 48 C.F.R. 2.101, consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995) and 48 C.F.R. 227.7202 (June 1995). Consistent with 48 C.F.R. 12.212, 48 C.F.R. 27.405(b)(2) (June 1998) and 48 C.F.R. 227.7202, all U.S. Government End Users acquire the Product with only those rights as set forth therein. + + MISCELLANEOUS. (a) This Agreement constitutes the entire agreement between ActiveState and you concerning the subject matter hereof, and it may only be modified by a written amendment signed by an authorized executive of ActiveState. (b) Except to the extent applicable law, if any, provides otherwise, this Agreement will be governed by the laws of the state of California, U.S.A., excluding its conflict of law provisions. (c) This Agreement will not be governed by the United Nations Convention on Contracts for the International Sale of Goods. (d) If any part of this Agreement is held invalid or unenforceable, that part will be construed to reflect the parties' original intent, and the remaining portions will remain in full force and effect. (e) A waiver by either party of any term or condition of this Agreement or any breach thereof, in any one instance, will not waive such term or condition or any subsequent breach thereof. (f) Except as required by law, the controlling language of this Agreement is English. (g) You may assign your rights under this Agreement to any party that consents to, and agrees to be bound by, its terms; ActiveState may assign its rights under this Agreement without condition. (h) This Agreement will be binding upon and inure to the benefit of the parties, their successors and permitted assigns. json: activestate-komodo-edit.json - yml: activestate-komodo-edit.yml + yaml: activestate-komodo-edit.yml html: activestate-komodo-edit.html - text: activestate-komodo-edit.LICENSE + license: activestate-komodo-edit.LICENSE - license_key: actuate-birt-ihub-ftype-sla + category: Proprietary Free spdx_license_key: LicenseRef-scancode-actuate-birt-ihub-ftype-sla other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Actuate Corporation BIRT iHub F-Type Software License Agreement\n\nIMPORTANT – READ\ + \ CAREFULLY.\n\nTHIS ACTUATE CORPORATION F-TYPE LICENSE AGREEMENT (\"AGREEMENT\") GOVERNS\ + \ THE INSTALLATION AND USE OF THE BIRT iHUB F-TYPE SOFTWARE DESCRIBED HEREIN (\"SOFTWARE\"\ + ). YOU WILL BE REQUIRED TO INDICATE YOUR AGREEMENT TO THESE TERMS AND CONDITIONS IN ORDER\ + \ TO COMPLETE THE INSTALLATION PROCESS. IF YOU DO NOT AGREE WITH ANY TERMS OF THIS AGREEMENT,\ + \ ACTUATE DOES NOT GRANT ANY LICENSE TO THE SOFTWARE AND YOU MAY NOT INSTALL, COPY, UPLOAD,\ + \ DOWNLOAD OR OTHERWISE MAKE ANY USE OF THE SOFTWARE. BY CLICKING ON THE \"YES\" OR OTHER\ + \ BUTTON OR MECHANISM DESIGNED TO ACKNOWLEDGE AGREEMENT TO THIS AGREEMENT, OR INSTALLING\ + \ THE SOFTWARE, YOU CONSENT TO BE BOUND BY THIS AGREEMENT, INCLUDING ALL TERMS INCORPORATED\ + \ BY REFERENCE. YOU AGREE THIS AGREEMENT IS EQUIVALENT TO ANY WRITTEN, NEGOTIATED, SIGNED\ + \ AGREEMENT. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A BUSINESS, GOVERNMENT AGENCY,\ + \ OR OTHER ORGANIZATION, YOU REPRESENT AND WARRANT THAT YOU HAVE AUTHORITY TO BIND THAT\ + \ ENTITY TO THIS AGREEMENT, AND YOUR ASSENT TO THESE TERMS WILL BE TREATED AS THE ASSENT\ + \ OF THAT ENTITY. IN THIS EVENT, \"YOU\" AND \"YOUR\" REFER HEREIN TO THAT ENTITY.\n\n1.\t\ + LICENSE FOR INTERNAL USE. Actuate Corporation (\"Actuate\") grants You a non-exclusive license\ + \ for Your internal use of one (1) copy of the accompanying software (\"Software\") on one\ + \ (1) stand-alone server or computer. You acknowledge that the Software may be limited in\ + \ features, functions, or have other limitations not present in other similar Actuate software\ + \ that is available for license for a fee.\n\n2.\tRESTRICTIONS. You may not copy or disclose\ + \ any of the terms of this Agreement. The Software is copyrighted by Actuate. Title to the\ + \ Software and all rights not specifically granted to you under this Agreement are retained\ + \ by Actuate and its licensors. Unless enforcement of this term is prohibited by applicable\ + \ law, you may not modify, decompile, or reverse engineer the Software. Your license does\ + \ not extend to use in support of any ultra-hazardous activity. No right, title or interest\ + \ in or to any trademark, service mark, logo or trade name of Actuate or its licensors is\ + \ granted under this Agreement. You may not transfer, sublicense, or otherwise distribute\ + \ Software by any electronic or physical method including using the Software as part of\ + \ any software application (hosted or otherwise) for which You charge customers a fee. The\ + \ computer on which you install Software may not be connected to any other computer, through\ + \ a clustered configuration or otherwise, so that they or multiple copies of the Software\ + \ act as one system or application. With the exception of BIRT Analytics you may not combine\ + \ installation or use of copies of Software with each other or any software licensed from\ + \ Actuate or a third party licensor for a fee. You may not use Software for development,\ + \ test, back-up, or other non-production use in an application where You use commercially\ + \ licensed Actuate software for production (and vice versa). You agree to re-activate your\ + \ license to the Software annually on the then current terms provided at http://www.actuate.com/documentation/ihubftype3/license.\ + \ You agree to only purchase maintenance services, support and professional services from\ + \ Actuate.\n\n3.\tDATA LIMITS AND REPORTING. The Software is designed to limit the amount\ + \ of data and information that it can process in each 24 hour period. The Software will\ + \ not allow generation or viewing of content the third time You exceed these limits. You\ + \ acknowledge and agree that the Software reports information about Your use of the Software\ + \ to Actuate, including but not limited to, the type of operation You initiate, the date\ + \ and time of that operation and the amount of data processed by the Software in a given\ + \ time. We will not collect the actual information that You process.\n\n4.\tTHIRD PARTY\ + \ SOFTWARE COMPONENTS. Software contains components licensed by third-parties (\"Third-Party\ + \ Components\"). Additional information and applicable license terms related to Third-Party\ + \ Components is contained in the actual files for such Third-Party Components and/or in\ + \ the third party license file accompanying the Software. In the case of any conflict between\ + \ the license terms related to Third-Party Components and this license agreement, the license\ + \ terms related to the Third Party Components shall prevail with respect to the relevant\ + \ Third Party Component and this license shall prevail with respect to the portion of the\ + \ Software created by Actuate.\n\n5.\tINDEMNIFICATION. Actuate agrees, to defend or at its\ + \ option to settle any claim or action brought against You by a third- party, and to indemnify\ + \ You and Your officers, directors, and employees against all damages and costs finally\ + \ awarded that are attributable to such claim or action, or the settlement by Actuate thereof,\ + \ if and to the extent such claim or action is based on actual infringement of the third-party\ + \ claimant’s United States or Canadian patent, copyright, trade secret or trademark and\ + \ caused by Your use of the Software in accordance with the rights granted by Actuate under\ + \ this Agreement. Actuate shall be released from this obligation unless You provide Actuate\ + \ with (i) prompt written notice of any such claim or action, or possibility thereof, (ii)\ + \ sole control and authority over the defense or settlement of such claim or action, and\ + \ (iii) proper and full information and assistance to settle and/or defend any such claim\ + \ or action. Without limiting this indemnification, if a final injunction is, or Actuate\ + \ believes in its sole discretion is likely to be, entered prohibiting the use of the Software\ + \ as contemplated, Actuate will, at its sole option and expense, either (i) procure the\ + \ right to use the infringing Software as provided herein, (ii) replace the infringing Software\ + \ with non-infringing,\n \nfunctionally equivalent product, (iii) suitably modify the\ + \ infringing Software so that it is not infringing, or if (i), (ii) or (iii) above is not\ + \ obtainable on commercially reasonable terms, (iv) accept return of the infringing Software.\ + \ Except as specified above, Actuate will not be liable for any costs or expenses incurred\ + \ without its prior written authorization. Actuate assumes no liability for infringement\ + \ claims arising from (i) the combination of the Software with products not provided by\ + \ Actuate, (ii) any modifications to the Software unless such modification was made by Actuate,\ + \ or (iii) use of the Software that is not in accordance with its documentation. THIS SECTION\ + \ 5 STATES THE ENTIRE LIABILITY AND OBLIGATIONS OF ACTUATE, AND YOUR EXCLUSIVE REMEDY WITH\ + \ RESPECT TO ANY ACTUAL OR ALLEGED INFRINGEMENT OF ANY PATENT, COPYRIGHT, TRADE SECRET,\ + \ TRADEMARK OR OTHER INTELLECTUAL PROPERTY RIGHT BY THE SOFTWARE.\n\n6.\tDISCLAIMER OF WARRANTY.\ + \ UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS\ + \ AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\ + \ PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS\ + \ ARE HELD TO BE LEGALLY INVALID.\n\n7.\tLIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED\ + \ BY LAW, IN NO EVENT WILL ACTUATE OR ITS LICENSORS BE LIABLE FOR ANY DIRECT DAMAGES IN\ + \ EXCESS OF $1,000, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES,\ + \ (INCLUDING BUT NOT LIMTED TO LOST REVENUE OR PROFIT) HOWEVER CAUSED REGARDLESS OF THE\ + \ THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE THE SOFTWARE,\ + \ EVEN IF ACTUATE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n8.\tTerm and Termination.\ + \ You may terminate this Agreement at any time by destroying all copies of the Software.\ + \ This Agreement terminates immediately with or without notice from Actuate if you fail\ + \ to comply with any provision of this Agreement. Upon termination, You agree to de-install\ + \ and stop using the Software.\n\n9.\tExport Regulations. All Software and technical data\ + \ delivered under this Agreement are subject to US export control laws and may be subject\ + \ to export or import regulations in other countries. You agree to comply strictly with\ + \ all such laws and regulations and acknowledge that you have the responsibility to obtain\ + \ such licenses to export, re-export, or import as may be required after delivery to you.\n\ + \n10.\tU.S. Government Restricted Rights. If Software is being acquired by or on behalf\ + \ of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any\ + \ tier), then the Government's rights in Software and accompanying documentation will be\ + \ only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through\ + \ 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212\ + \ (for non-DOD acquisitions).\n\n11.\tGoverning Law. Any action related to this Agreement\ + \ will be governed by California and controlling U.S. federal law and will be heard in a\ + \ court having jurisdiction over San Mateo, California. No choice of law rules of any jurisdiction\ + \ will apply.\n\n12.\tSeverability. If any provision of this Agreement is held to be unenforceable,\ + \ this Agreement will remain in effect with the provision omitted, unless omission would\ + \ frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\ + \n13.\tIntegration. This Agreement is the entire agreement between you and Actuate relating\ + \ to its subject matter. It supersedes all prior or contemporaneous oral or written communications,\ + \ proposals, representations and warranties and prevails over any conflicting or additional\ + \ terms of any quote, order, acknowledgment, or other communication between the parties\ + \ relating to its subject matter during the term of this Agreement.\n\n\nActuate BIRT iHub\ + \ F-Type – Actuate License Version 2014-12-10" json: actuate-birt-ihub-ftype-sla.json - yml: actuate-birt-ihub-ftype-sla.yml + yaml: actuate-birt-ihub-ftype-sla.yml html: actuate-birt-ihub-ftype-sla.html - text: actuate-birt-ihub-ftype-sla.LICENSE + license: actuate-birt-ihub-ftype-sla.LICENSE - license_key: ada-linking-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-ada-linking-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "As a special exception, if other files instantiate generics from this \nunit, or you\ + \ link this unit with other files to produce an executable, \nthis unit does not by itself\ + \ cause the resulting executable to be \ncovered by the GNU General Public License. This\ + \ exception does not \nhowever invalidate any other reasons why the executable file might\ + \ be \ncovered by the GNU Public License." json: ada-linking-exception.json - yml: ada-linking-exception.yml + yaml: ada-linking-exception.yml html: ada-linking-exception.html - text: ada-linking-exception.LICENSE + license: ada-linking-exception.LICENSE - license_key: adapt-1.0 + category: Copyleft spdx_license_key: APL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "ADAPTIVE PUBLIC LICENSE\nVersion 1.0\nTHE LICENSED WORK IS PROVIDED UNDER THE TERMS\ + \ OF THIS ADAPTIVE PUBLIC LICENSE\n(\"LICENSE\"). ANY USE, REPRODUCTION OR DISTRIBUTION\ + \ OF THE LICENSED WORK CONSTITUTES\nRECIPIENT'S ACCEPTANCE OF THIS LICENSE AND ITS TERMS,\ + \ WHETHER OR NOT SUCH\nRECIPIENT READS THE TERMS OF THIS LICENSE. \"LICENSED WORK\" AND\ + \ \"RECIPIENT\" ARE DEFINED BELOW.\n\nIMPORTANT NOTE: This License is \"adaptive\", and\ + \ the generic version or another version of an Adaptive Public License should not be relied\ + \ upon to determine your rights and obligations under this License. You must read the specific\ + \ Adaptive Public License that you receive with the Licensed Work, as certain terms are\ + \ defined at the outset by the Initial Contributor.\n\nSee Section 2.2 below, Exhibit A\ + \ attached, and any Suppfile.txt accompanying this License to determine the specific adaptive\ + \ features applicable to this License. For example, without limiting the foregoing, (a)\ + \ for selected choice of law and jurisdiction see Part 3 of Exhibit A; (b) for the selected\ + \ definition of Third Party see Part 4 of Exhibit A; and (c) for selected patent licensing\ + \ terms (if any) see Section 2.2 below and Part 6 of Exhibit A.\n\n1. DEFINITIONS.\n\n1.1.\ + \ \"CONTRIBUTION\" means:\n\n(a) In the case of the Initial Contributor, the Initial Work\ + \ distributed under this License by the Initial Contributor; and\n\n(b) In the case of each\ + \ Subsequent Contributor, the Subsequent Work originating from and distributed by such Subsequent\ + \ Contributor.\n\n1.2. \"DESIGNATED WEB SITE\" means the web site having the URL identified\ + \ in Part 1 of Exhibit A, which URL may be changed by the Initial Contributor by posting\ + \ on the current Designated Web Site the new URL for at least sixty (60) days.\n\n1.3. \"\ + DISTRIBUTOR\" means any Person that distributes the Licensed Work or any portion thereof\ + \ to at least one Third Party.\n\n1.4. \"ELECTRONIC DISTRIBUTION MECHANISM\" means any mechanism\ + \ generally accepted in the software development community for the electronic transfer of\ + \ data.\n\n1.5. \"EXECUTABLE\" means the Licensed Work in any form other than Source Code.\n\ + \n1.6. \"GOVERNING JURISDICTION\" means the state, province or other legal jurisdiction\ + \ identified in Part 3 of Exhibit A.\n\n1.7. \"INDEPENDENT MODULE\" means a separate module\ + \ of software and/or data that is not a derivative work of or copied from the Licensed Work\ + \ or any portion thereof. In addition, a module does not qualify as an Independent Module\ + \ but instead forms part of the Licensed Work if the module: (a) is embedded in the Licensed\ + \ Work; (b) is included by reference in the Licensed Work other than by a function call\ + \ or a class reference; or (c) must be included or contained, in whole or in part, within\ + \ a file directory or subdirectory actually containing files making up the Licensed Work.\n\ + \n1.8. \"INITIAL CONTRIBUTOR\" means the Person or entity identified as the Initial Contributor\ + \ in the notice required by Part 1 of Exhibit A.\n\n1.9. \"INITIAL WORK\" means the initial\ + \ Source Code, object code (if any) and documentation for the computer program identified\ + \ in Part 2 of Exhibit A, as such Source Code, object code and documentation is distributed\ + \ under this License by the Initial Contributor.\n\n1.10. \"LARGER WORK\" means a work that\ + \ combines the Licensed Work or portions thereof with code not governed by this License.\n\ + \n1.11. \"LICENSED WORK\" means the Initial Work and/or any Subsequent Work, in each case\ + \ including portions thereof.\n\n1.12. \"LICENSE NOTICE\" has the meaning assigned in Part\ + \ 5 of Exhibit A.\n\n1.13. \"MODIFICATION\" or \"MODIFICATIONS\" means any change to and/or\ + \ addition to the Licensed Work.\n\n1.14. \"PERSON\" means an individual or other legal\ + \ entity, including a corporation, partnership or other body.\n\n1.15. \"RECIPIENT\" means\ + \ any Person who receives or obtains the Licensed Work under this License (by way of example,\ + \ without limiting the foregoing, any Subsequent Contributor or Distributor).\n\n1.16. \"\ + SOURCE CODE\" means the source code for a computer program, including the source code for\ + \ all modules and components of the computer program, plus any associated interface definition\ + \ files, and scripts used to control compilation and installation of an executable.\n\n\ + 1.17. \"SUBSEQUENT CONTRIBUTOR\" means any Person that makes or contributes to the making\ + \ of any Subsequent Work and that distributes that Subsequent Work to at least one Third\ + \ Party.\n\n1.18. \"SUBSEQUENT WORK\" means a work that has resulted or arises from changes\ + \ to and/or additions to:\n\n(a) the Initial Work;\n\n(b) any other Subsequent Work; or\n\ + \n(c) to any combination of the Initial Work and any such other Subsequent Work;\n\nwhere\ + \ such changes and/or additions originate from a Subsequent Contributor. A Subsequent Work\ + \ will \"originate\" from a Subsequent Contributor if the Subsequent Work was a result of\ + \ efforts by such Subsequent Contributor (or anyone acting on such Subsequent Contributor's\ + \ behalf, such as, a contractor or other entity that is engaged by or under the direction\ + \ of the Subsequent Contributor). For greater certainty, a Subsequent Work expressly excludes\ + \ and shall not capture within its meaning any Independent Module.\n\n1.19. \"SUPPLEMENT\ + \ FILE\" means a file distributed with the Licensed Work having a file name \"suppfile.txt\"\ + .\n\n1.20. \"THIRD PARTY\" has the meaning assigned in Part 4 of Exhibit A.\n\n2. LICENSE.\n\ + \n2.1. COPYRIGHT LICENSE FROM INITIAL AND SUBSEQUENT CONTRIBUTORS.\n\n(a) Subject to the\ + \ terms of this License, the Initial Contributor hereby grants\neach Recipient a world-wide,\ + \ royalty-free, non-exclusive copyright license to:\n\n(i) reproduce, prepare derivative\ + \ works of, publicly display, publicly perform,\ndistribute and sublicense the Initial Work;\ + \ and\n\n(ii) reproduce, publicly display, publicly perform, distribute, and sublicense\n\ + any derivative works (if any) prepared by Recipient;\n\nin Source Code and Executable form,\ + \ either with other Modifications, on an\nunmodified basis, or as part of a Larger Work.\n\ + \n(b) Subject to the terms of this License, each Subsequent Contributor hereby\ngrants each\ + \ Recipient a world-wide, royalty-free, non-exclusive copyright\nlicense to:\n\n(i) reproduce,\ + \ prepare derivative works of, publicly display, publicly perform,\ndistribute and sublicense\ + \ the Subsequent Work of such Subsequent Contributor;\nand\n\n(ii) reproduce, publicly display,\ + \ publicly perform, distribute, and sublicense\nany derivative works (if any) prepared by\ + \ Recipient;\n\nin Source Code and Executable form, either with other Modifications, on\ + \ an unmodified basis, or as part of a Larger Work.\n2.2. PATENT LICENSE FROM INITIAL AND\ + \ SUBSEQUENT CONTRIBUTORS.\n\n(a) This License does not include or grant any patent license\ + \ whatsoever from the Initial Contributor, Subsequent Contributor, or any Distributor unless,\ + \ at the time the Initial Work is first distributed or made available under this License\ + \ (as the case may be), the Initial Contributor has selected pursuant to Part 6 of Exhibit\ + \ A the patent terms in paragraphs A, B, C, D and E from Part 6 of Exhibit A. If this is\ + \ not done then the Initial Work and any other Subsequent Work is made available under the\ + \ License without any patent license (the \"PATENTS-EXCLUDED LICENSE\").\n\n(b) However,\ + \ the Initial Contributor may subsequently distribute or make available (as the case may\ + \ be) future copies of: (1) the Initial Work; or (2) any Licensed Work distributed by the\ + \ Initial Contributor which includes the Initial Work (or any portion thereof) and/or any\ + \ Modification made by the Initial Contributor; available under a License which includes\ + \ a patent license (the \"PATENTS-INCLUDED LICENSE\") by selecting pursuant to Part 6 of\ + \ Exhibit A the patent terms in paragraphs A, B, C, D and E from Part 6 of Exhibit A, when\ + \ the Initial Contributor distributes or makes available (as the case may be) such future\ + \ copies under this License.\n\n(c) If any Recipient receives or obtains one or more copies\ + \ of the Initial Work or any other portion of the Licensed Work under the Patents-Included\ + \ License, then all licensing of such copies under this License shall include the terms\ + \ in paragraphs A, B, C, D and E from Part 6 of Exhibit A and that Recipient shall not be\ + \ able to rely upon the Patents-Excluded License for any such copies. However, all Recipients\ + \ that receive one or more copies of the Initial Work or any other portion of the Licensed\ + \ Work under a copy of the License which includes the Patents-Excluded License shall have\ + \ no patent license with respect to such copies received under the Patents-Excluded License\ + \ and availability and distribution of such copies, including Modifications made by such\ + \ Recipient to such copies, shall be under a copy of the License without any patent license.\n\ + \n(d) Where a Recipient uses in combination or combines any copy of the Licensed Work (or\ + \ portion thereof) licensed under a copy of the License having a Patents-Excluded License\ + \ with any copy of the Licensed Work (or portion thereof) licensed under a copy of the License\ + \ having a Patents-Included License, the combination (and any portion thereof) shall, from\ + \ the first time such Recipient uses, makes available or distributes the combination (as\ + \ the case may be), be subject to only the terms of the License having the Patents-Included\ + \ License which shall include the terms in paragraphs A, B, C, D and E from Part 6 of Exhibit\ + \ A.\n\n2.3. ACKNOWLEDGEMENT AND DISCLAIMER.\n\nRecipient understands and agrees that although\ + \ Initial Contributor and each Subsequent Contributor grants the licenses to its Contributions\ + \ set forth herein, no representation, warranty, guarantee or assurance is provided by any\ + \ Initial Contributor, Subsequent Contributor, or Distributor that the Licensed Work does\ + \ not infringe the patent or other intellectual property rights of any other entity. Initial\ + \ Contributor, Subsequent Contributor, and each Distributor disclaims any liability to Recipient\ + \ for claims brought by any other entity based on infringement of intellectual property\ + \ rights or otherwise, in relation to the Licensed Works. As a condition to exercising the\ + \ rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility\ + \ to secure any other intellectual property rights needed, if any. For example, without\ + \ limiting the foregoing disclaimers, if a third party patent license is required to allow\ + \ Recipient to distribute the Licensed Work, it is Recipient's responsibility to acquire\ + \ that license before distributing the Licensed Work.\n\n2.4. RESERVATION.\n\nNothing in\ + \ this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade\ + \ secrets or any other intellectual property of Initial Contributor, Subsequent Contributor,\ + \ or Distributor except as expressly stated herein.\n\n3. DISTRIBUTION OBLIGATIONS.\n\n\ + 3.1. DISTRIBUTION GENERALLY.\n\n(a) A Subsequent Contributor shall make that Subsequent\ + \ Contributor's Subsequent Work(s) available to the public via an Electronic Distribution\ + \ Mechanism for a period of at least twelve (12) months. The aforesaid twelve (12) month\ + \ period shall begin within a reasonable time after the creation of the Subsequent Work\ + \ and no later than sixty (60) days after first distribution of that Subsequent Contributor's\ + \ Subsequent Work.\n\n(b) All Distributors must distribute the Licensed Work in accordance\ + \ with the terms of the License, and must include a copy of this License (including without\ + \ limitation Exhibit A and the accompanying Supplement File) with each copy of the Licensed\ + \ Work distributed. In particular, this License must be prominently distributed with the\ + \ Licensed Work in a file called \"license.txt.\" In addition, the License Notice in Part\ + \ 5 of Exhibit A must be included at the beginning of all Source Code files, and viewable\ + \ to a user in any executable such that the License Notice is reasonably brought to the\ + \ attention of any party using the Licensed Work.\n\n3.2. EXECUTABLE DISTRIBUTIONS OF THE\ + \ LICENSED WORK.\n\nA Distributor may choose to distribute the Licensed Work, or any portion\ + \ thereof, in Executable form (an \"EXECUTABLE DISTRIBUTION\") to any third party, under\ + \ the terms of Section 2 of this License, provided the Executable Distribution is made available\ + \ under and accompanied by a copy of this License, AND provided at least ONE of the following\ + \ conditions is fulfilled:\n\n(a) The Executable Distribution must be accompanied by the\ + \ Source Code for the Licensed Work making up the Executable Distribution, and the Source\ + \ Code must be distributed on the same media as the Executable Distribution or using an\ + \ Electronic Distribution Mechanism; or\n\n(b) The Executable Distribution must be accompanied\ + \ with a written offer, valid for at least thirty six (36) months, to give any third party\ + \ under the terms of this License, for a charge no more than the cost of physically performing\ + \ source distribution, a complete machine-readable copy of the Source Code for the Licensed\ + \ Work making up the Executable Distribution, to be available and distributed using an Electronic\ + \ Distribution Mechanism, and such Executable Distribution must remain available in Source\ + \ Code form to any third party via the Electronic Distribution Mechanism (or any replacement\ + \ Electronic Distribution Mechanism the particular Distributor may reasonably need to turn\ + \ to as a substitute) for said at least thirty six (36) months.\n\nFor greater certainty,\ + \ the above-noted requirements apply to any Licensed Work or portion thereof distributed\ + \ to any third party in Executable form, whether such distribution is made alone, in combination\ + \ with a Larger Work or Independent Modules, or in some other combination.\n\n3.3. SOURCE\ + \ CODE DISTRIBUTIONS.\n\nWhen a Distributor makes the Licensed Work, or any portion thereof,\ + \ available to any Person in Source Code form, it must be made available under this License\ + \ and a copy of this License must be included with each copy of the Source Code, situated\ + \ so that the copy of the License is conspicuously brought to the attention of that Person.\ + \ For greater clarification, this Section 3.3 applies to all distribution of the Licensed\ + \ Work in any Source Code form. A Distributor may charge a fee for the physical act of transferring\ + \ a copy, which charge shall be no more than the cost of physically performing source distribution.\n\ + \n3.4. REQUIRED NOTICES IN SOURCE CODE.\n\nEach Subsequent Contributor must ensure that\ + \ the notice set out in Part 5 of Exhibit A is included in each file of the Source Code\ + \ for each Subsequent Work originating from that particular Subsequent Contributor, if such\ + \ notice is not already included in each such file. If it is not possible to put such notice\ + \ in a particular Source Code file due to its structure, then the Subsequent Contributor\ + \ must include such notice in a location (such as a relevant directory in which the file\ + \ is stored) where a user would be likely to look for such a notice.\n\n3.5. NO DISTRIBUTION\ + \ REQUIREMENTS FOR INTERNALLY USED MODIFICATIONS.\n\nNotwithstanding Sections 3.2, 3.3 and\ + \ 3.4, Recipient may, internally within its own corporation or organization use the Licensed\ + \ Work, including the Initial Work and Subsequent Works, and make Modifications for internal\ + \ use within Recipient's own corporation or organization (collectively, \"INTERNAL USE MODIFICATIONS\"\ + ). The Recipient shall have no obligation to distribute, in either Source Code or Executable\ + \ form, any such Internal Use Modifications made by Recipient in the course of such internal\ + \ use, except where required below in this Section 3.5. All Internal Use Modifications distributed\ + \ to any Person, whether or not a Third Party, shall be distributed pursuant to and be accompanied\ + \ by the terms of this License. If the Recipient chooses to distribute any such Internal\ + \ Use Modifications to any Third Party, then the Recipient shall be deemed a Subsequent\ + \ Contributor, and any such Internal Use Modifications distributed to any Third Party shall\ + \ be deemed a Subsequent Work originating from that Subsequent Contributor, and shall from\ + \ the first such instance become part of the Licensed Work that must thereafter be distributed\ + \ and made available to third parties in accordance with the terms of Sections 3.1 to 3.4\ + \ inclusive.\n\n3.6. INDEPENDENT MODULES.\n\nThis License shall not apply to Independent\ + \ Modules of any Initial Contributor, Subsequent Contributor, Distributor or any Recipient,\ + \ and such Independent Modules may be licensed or made available under one or more separate\ + \ license agreements.\n\n3.7. LARGER WORKS.\n\nAny Distributor or Recipient may create or\ + \ contribute to a Larger Work by combining any of the Licensed Work with other code not\ + \ governed by the terms of this License, and may distribute the Larger Work as one or more\ + \ products. However, in any such case, Distributor or Recipient (as the case may be) must\ + \ make sure that the requirements of this License are fulfilled for the Licensed Work portion\ + \ of the Larger Work.\n\n3.8. DESCRIPTION OF DISTRIBUTED MODIFICATIONS.\n\n(a) Each Subsequent\ + \ Contributor (including the Initial Contributor where the Initial Contributor also qualifies\ + \ as a Subsequent Contributor) must cause each Subsequent Work created or contributed to\ + \ by that Subsequent Contributor to contain a file documenting the changes, in accordance\ + \ with the requirements of Part 1 of the Supplement File, that such Subsequent Contributor\ + \ made in the creation or contribution to that Subsequent Work. If no Supplement File exists\ + \ or no requirements are set out in Part 1 of the Supplement File, then there are no requirements\ + \ for Subsequent Contributors to document changes that they make resulting in Subsequent\ + \ Works.\n\n(b) The Initial Contributor may at any time introduce requirements or add to\ + \ or change earlier requirements (in each case, the \"EARLIER DESCRIPTION REQUIREMENTS\"\ + ) for documenting changes resulting in Subsequent Works by revising Part 1 of each copy\ + \ of the Supplement File distributed by the Initial Contributor with future copies of the\ + \ Licensed Work so that Part 1 then contains new requirements (the \"NEW DESCRIPTION REQUIREMENTS\"\ + ) for documenting such changes.\n\n(c) Any Recipient receiving at any time any copy of an\ + \ Initial Work or any Subsequent Work under a copy of this License (in each case, an \"\ + Earlier LICENSED COPY\") having the Earlier Description Requirements may choose, with respect\ + \ to each such Earlier Licensed Copy, to comply with the Earlier Description Requirements\ + \ or the New Description Requirements. Where a Recipient chooses to comply with the New\ + \ Description Requirements, that Recipient will, when thereafter distributing any copies\ + \ of any such Earlier Licensed Copy, include a Supplement File having a section entitled\ + \ Part 1 that contains a copy of the New Description Requirements.\n\n(d) For greater certainty,\ + \ the intent of Part 1 of the Supplement File is to provide a mechanism (if any) by which\ + \ Subsequent Contributors must document changes that they make to the Licensed Work resulting\ + \ in Subsequent Works. Part 1 of any Supplement File shall not be used to increase or reduce\ + \ the scope of the license granted in Article 2 of this License or in any other way increase\ + \ or decrease the rights and obligations of any Recipient, and shall at no time serve as\ + \ the basis for terminating the License. Further, a Recipient can be required to correct\ + \ and change its documentation procedures to comply with Part 1 of the Supplement File,\ + \ but cannot be penalised with damages. Part 1 of any Supplement File is only binding on\ + \ each Recipient of any Licensed Work to the extent Part 1 sets out the requirements for\ + \ documenting changes to the Initial Work or any Subsequent Work.\n\n(e) An example of a\ + \ set of requirements for documenting changes and contributions made by Subsequent Contributor\ + \ is set out in Part 7 of Exhibit A of this License. Part 7 is a sample only and is not\ + \ binding on Recipients, unless (subject to the earlier paragraphs of this Section 3.8)\ + \ those are the requirements that the Initial Contributor includes in Part 1 of the Supplement\ + \ File with the copies of the Initial Work distributed under this License.\n\n3.9. USE OF\ + \ DISTRIBUTOR NAME.\n\nThe name of a Distributor may not be used by any other Distributor\ + \ to endorse or promote the Licensed Work or products derived from the Licensed Work, without\ + \ prior written permission.\n\n3.10. LIMITED RECOGNITION OF INITIAL CONTRIBUTOR.\n\n(a)\ + \ As a modest attribution to the Initial Contributor, in the hope that its promotional value\ + \ may help justify the time, money and effort invested in writing the Initial Work, the\ + \ Initial Contributor may include in Part 2 of the Supplement File a requirement that each\ + \ time an executable program resulting from the Initial Work or any Subsequent Work, or\ + \ a program dependent thereon, is launched or run, a prominent display of the Initial Contributor's\ + \ attribution information must occur (the \"ATTRIBUTION INFORMATION\"). The Attribution\ + \ Information must be included at the beginning of each Source Code file. For greater certainty,\ + \ the Initial Contributor may specify in the Supplement File that the above attribution\ + \ requirement only applies to an executable program resulting from the Initial Work or any\ + \ Subsequent Work, but not a program dependent thereon. The intent is to provide for reasonably\ + \ modest attribution, therefore the Initial Contributor may not require Recipients to display,\ + \ at any time, more than the following Attribution Information: (a) a copyright notice including\ + \ the name of the Initial Contributor; (b) a word or one phrase (not exceeding 10 words);\ + \ (c) one digital image or graphic provided with the Initial Work; and (d) a URL (collectively,\ + \ the \"ATTRIBUTION LIMITS\").\n\n(b) If no Supplement File exists, or no Attribution Information\ + \ is set out in Part 2 of the Supplement File, then there are no requirements for Recipients\ + \ to display any Attribution Information of the Initial Contributor.\n\n(c) Each Recipient\ + \ acknowledges that all trademarks, service marks and/or trade names contained within Part\ + \ 2 of the Supplement File distributed with the Licensed Work are the exclusive property\ + \ of the Initial Contributor and may only be used with the permission of the Initial Contributor,\ + \ or under circumstances otherwise permitted by law, or as expressly set out in this License.\n\ + \n3.11. For greater certainty, any description or attribution provisions contained within\ + \ a Supplement File may only be used to specify the nature of the description or attribution\ + \ requirements, as the case may be. Any provision in a Supplement File that otherwise purports\ + \ to modify, vary, nullify or amend any right, obligation or representation contained herein\ + \ shall be deemed void to that extent, and shall be of no force or effect.\n\n4. COMMERCIAL\ + \ USE AND INDEMNITY.\n\n4.1. COMMERCIAL SERVICES.\n\nA Recipient (\"COMMERCIAL RECIPIENT\"\ + ) may choose to offer, and to charge a fee for, warranty, support, indemnity or liability\ + \ obligations (collectively, \"SERVICES\") to one or more other Recipients or Distributors.\ + \ However, such Commercial Recipient may do so only on that Commercial Recipient's own behalf,\ + \ and not on behalf of any other Distributor or Recipient, and Commercial Recipient must\ + \ make it clear than any such warranty, support, indemnity or liability obligation(s) is/are\ + \ offered by Commercial Recipient alone. At no time may Commercial Recipient use any Services\ + \ to deny any party the Licensed Work in Source Code or Executable form when so required\ + \ under any of the other terms of this License. For greater certainty, this Section 4.1\ + \ does not diminish any of the other terms of this License, including without limitation\ + \ the obligation of the Commercial Recipient as a Distributor, when distributing any of\ + \ the Licensed Work in Source Code or Executable form, to make such distribution royalty-free\ + \ (subject to the right to charge a fee of no more than the cost of physically performing\ + \ Source Code or Executable distribution (as the case may be)).\n\n4.2. INDEMNITY.\n\nCommercial\ + \ distributors of software may accept certain responsibilities with respect to end users,\ + \ business partners and the like. While this License is intended to facilitate the commercial\ + \ use of the Licensed Work, the Distributor who includes any of the Licensed Work in a commercial\ + \ product offering should do so in a manner which does not create potential liability for\ + \ other Distributors. Therefore, if a Distributor includes the Licensed Work in a commercial\ + \ product offering or offers any Services, such Distributor (\"COMMERCIAL DISTRIBUTOR\"\ + ) hereby agrees to defend and indemnify every other Distributor or Subsequent Contributor\ + \ (in each case an \"INDEMNIFIED PARTY\") against any losses, damages and costs (collectively\ + \ \"LOSSES\") arising from claims, lawsuits and other legal actions brought by a third party\ + \ against the Indemnified Party to the extent caused by the acts or omissions of such Commercial\ + \ Distributor in connection with its distribution of any of the Licensed Work in a commercial\ + \ product offering or in connection with any Services. The obligations in this section do\ + \ not apply to any claims or Losses relating to any actual or alleged intellectual property\ + \ infringement. In order to qualify, an Indemnified Party must: (a) promptly notify the\ + \ Commercial Distributor in writing of such claim; and (b) allow the Commercial Distributor\ + \ to control, and co-operate with the Commercial Distributor in, the defense and any related\ + \ settlement negotiations. The Indemnified Party may participate in any such claim at its\ + \ own expense.\n\n5. VERSIONS OF THE LICENSE.\n\n5.1. NEW VERSIONS.\n\nThe Initial Contributor\ + \ may publish revised and/or new versions of the License from time to time. Each version\ + \ will be given a distinguishing version number.\n\n5.2. EFFECT OF NEW VERSIONS.\n\nOnce\ + \ the Licensed Work or any portion thereof has been published by Initial Contributor under\ + \ a particular version of the License, Recipient may choose to continue to use it under\ + \ the terms of that version. However, if a Recipient chooses to use the Licensed Work under\ + \ the terms of any subsequent version of the License published by the Initial Contributor,\ + \ then from the date of making this choice, the Recipient must comply with the terms of\ + \ that subsequent version with respect to all further reproduction, preparation of derivative\ + \ works, public display of, public performance of, distribution and sublicensing by the\ + \ Recipient in connection with the Licensed Work. No one other than the Initial Contributor\ + \ has the right to modify the terms applicable to the Licensed Work\n\n6. DISCLAIMER OF\ + \ WARRANTY.\n\n6.1. GENERAL DISCLAIMER.\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS LICENSE,\ + \ THE LICENSED WORK IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT ANY REPRESENTATION,\ + \ WARRANTY, GUARANTEE, ASSURANCE OR CONDITION OF ANY KIND, EITHER EXPRESSED OR IMPLIED,\ + \ INCLUDING, WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY\ + \ OR FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE\ + \ OF THE LICENSED WORK IS WITH RECIPIENT. SHOULD ANY LICENSED WORK PROVE DEFECTIVE IN ANY\ + \ RESPECT, RECIPIENT (NOT THE INITIAL CONTRIBUTOR OR ANY SUBSEQUENT CONTRIBUTOR) ASSUMES\ + \ THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS CLAUSE CONSTITUTES AN\ + \ ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY LICENSED WORK IS AUTHORIZED HEREUNDER EXCEPT\ + \ UNDER THIS LICENSE INCLUDING WITHOUT LIMITATION THIS DISCLAIMER.\n\n6.2. RESPONSIBILITY\ + \ OF RECIPIENTS.\n\nEach Recipient is solely responsible for determining the appropriateness\ + \ of using and distributing the Licensed Work and assumes all risks associated with its\ + \ exercise of rights under this License, including but not limited to the risks and costs\ + \ of program errors, compliance with applicable laws, damage to or loss of data, programs\ + \ or equipment, and unavailability or interruption of operations.\n\n7. TERMINATION.\n\n\ + 7.1. This License shall continue until terminated in accordance with the express terms herein.\n\ + \n7.2. Recipient may choose to terminate this License automatically at any time.\n\n7.3.\ + \ This License, including without limitation the rights granted hereunder to a particular\ + \ Recipient, will terminate automatically if such Recipient is in material breach of any\ + \ of the terms of this License and fails to cure such breach within sixty (60) days of becoming\ + \ aware of the breach. Without limiting the foregoing, any material breach by such Recipient\ + \ of any term of any other License under which such Recipient is granted any rights to the\ + \ Licensed Work shall constitute a material breach of this License.\n\n7.4. Upon termination\ + \ of this License by or with respect to a particular Recipient for any reason, all rights\ + \ granted hereunder and under any other License to that Recipient shall terminate. However,\ + \ all sublicenses to the Licensed Work which were previously properly granted by such Recipient\ + \ under a copy of this License (in each case, an \"Other License\" and in plural, \"Other\ + \ Licenses\") shall survive any such termination of this License, including without limitation\ + \ the rights and obligations under such Other Licenses as set out in their respective Sections\ + \ 2, 3, 4, 5, 6, 7 and 8, mutatis mutandis, for so long as the respective sublicensees (i.e.\ + \ other Recipients) remain in compliance with the terms of the copy of this License under\ + \ which such sublicensees received rights to the Licensed Work. Any termination of such\ + \ Other Licenses shall be pursuant to their respective Section 7, mutatis mutandis. Provisions\ + \ which, by their nature, must remain in effect beyond the termination of this License shall\ + \ survive.\n\n7.5. Upon any termination of this License by or with respect to a particular\ + \ Recipient, Sections 4.1, 4.2, 6.1, 6.2, 7.4, 7.5, 8.1, and 8.2, together with all provisions\ + \ of this License necessary for the interpretation and enforcement of same, shall expressly\ + \ survive such termination.\n\n8. LIMITATION OF LIABILITY.\n\n8.1. IN NO EVENT SHALL ANY\ + \ OF INITIAL CONTRIBUTOR, ITS SUBSIDIARIES, OR AFFILIATES, OR ANY OF ITS OR THEIR RESPECTIVE\ + \ OFFICERS, DIRECTORS, EMPLOYEES, AND/OR AGENTS (AS THE CASE MAY BE), HAVE ANY LIABILITY\ + \ FOR ANY DIRECT DAMAGES, INDIRECT DAMAGES, PUNITIVE DAMAGES, INCIDENTAL DAMAGES, SPECIAL\ + \ DAMAGES, EXEMPLARY DAMAGES, CONSEQUENTIAL DAMAGES OR ANY OTHER DAMAGES WHATSOEVER (INCLUDING\ + \ WITHOUT LIMITATION LOSS OF USE, DATA OR PROFITS, OR ANY OTHER LOSS ARISING OUT OF OR IN\ + \ ANY WAY RELATED TO THE USE, INABILITY TO USE, UNAUTHORIZED USE, PERFORMANCE, OR NON-PERFORMANCE\ + \ OF THE LICENSED WORK OR ANY PART THEREOF OR THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT\ + \ SERVICES, OR THAT RESULT FROM ERRORS, DEFECTS, OMISSIONS, DELAYS IN OPERATION OR TRANSMISSION,\ + \ OR ANY OTHER FAILURE OF PERFORMANCE), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER\ + \ IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) IN RELATION\ + \ TO OR ARISING IN ANY WAY OUT OF THIS LICENSE OR THE USE OR DISTRIBUTION OF THE LICENSED\ + \ WORK OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR\ + \ PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS\ + \ SUCH LIMITATION. THIS CLAUSE CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF\ + \ ANY LICENSED WORK IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS LICENSE INCLUDING WITHOUT\ + \ LIMITATION THE LIMITATIONS SET FORTH IN THIS SECTION 8.1.\n\n8.2. EXCEPT AS EXPRESSLY\ + \ SET FORTH IN THIS LICENSE, EACH RECIPIENT SHALL NOT HAVE ANY LIABILITY FOR ANY EXEMPLARY,\ + \ OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE LICENSED\ + \ WORK OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR\ + \ PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS\ + \ SUCH LIMITATION.\n\n9. GOVERNING LAW AND LEGAL ACTION.\n\n9.1. This License shall be governed\ + \ by and construed in accordance with the laws of the Governing Jurisdiction assigned in\ + \ Part 3 of Exhibit A, without regard to its conflict of law provisions. No party may bring\ + \ a legal action under this License more than one year after the cause of the action arose.\ + \ Each party waives its rights (if any) to a jury trial in any litigation arising under\ + \ this License. Note that if the Governing Jurisdiction is not assigned in Part 3 of Exhibit\ + \ A, then the Governing Jurisdiction shall be the State of New York.\n\n9.2. The courts\ + \ of the Governing Jurisdiction shall have jurisdiction, but not exclusive jurisdiction,\ + \ to entertain and determine all disputes and claims, whether for specific performance,\ + \ injunction, damages or otherwise, both at law and in equity, arising out of or in any\ + \ way relating to this License, including without limitation, the legality, validity, existence\ + \ and enforceability of this License. Each party to this License hereby irrevocably attorns\ + \ to and accepts the jurisdiction of the courts of the Governing Jurisdiction for such purposes.\n\ + \n9.3. Except as expressly set forth elsewhere herein, in the event of any action or proceeding\ + \ brought by any party against another under this License the prevailing party shall be\ + \ entitled to recover all costs and expenses including the fees of its attorneys in such\ + \ action or proceeding in such amount as the court may adjudge reasonable.\n\n10. MISCELLANEOUS.\n\ + \n10.1. The obligations imposed by this License are for the benefit of the Initial Contributor\ + \ and any Recipient, and each Recipient acknowledges and agrees that the Initial Contributor\ + \ and/or any other Recipient may enforce the terms and conditions of this License against\ + \ any Recipient.\n\n10.2. This License represents the complete agreement concerning subject\ + \ matter hereof, and supersedes and cancels all previous oral and written communications,\ + \ representations, agreements and understandings between the parties with respect to the\ + \ subject matter hereof.\n\n10.3. The application of the United Nations Convention on Contracts\ + \ for the International Sale of Goods is expressly excluded.\n\n10.4. The language in all\ + \ parts of this License shall be in all cases construed simply according to its fair meaning,\ + \ and not strictly for or against any of the parties hereto. Any law or regulation which\ + \ provides that the language of a contract shall be construed against the drafter shall\ + \ not apply to this License.\n\n10.5. If any provision of this License is invalid or unenforceable\ + \ under the laws of the Governing Jurisdiction, it shall not affect the validity or enforceability\ + \ of the remainder of the terms of this License, and without further action by the parties\ + \ hereto, such provision shall be reformed to the minimum extent necessary to make such\ + \ provision valid and enforceable.\n\n10.6. The paragraph headings of this License are for\ + \ reference and convenience only and are not a part of this License, and they shall have\ + \ no effect upon the construction or interpretation of any part hereof.\n\n10.7. Each of\ + \ the terms \"including\", \"include\" and \"includes\", when used in this License, is not\ + \ limiting whether or not non-limiting language (such as \"without limitation\" or \"but\ + \ not limited to\" or words of similar import) is used with reference thereto.\n\n10.8.\ + \ The parties hereto acknowledge they have expressly required that this\nLicense and notices\ + \ relating thereto be drafted in the English language.\n\n//***THE LICENSE TERMS END HERE\ + \ (OTHER THAN AS SET OUT IN EXHIBIT A).***//\n\nEXHIBIT A (to the Adaptive Public License)\n\ + \nPART 1: INITIAL CONTRIBUTOR AND DESIGNATED WEB SITE\n\nThe Initial Contributor is:\t \n\ + \ \t\n[Enter full name of Initial Contributor]\n\nAddress of Initial Contributor:\t \n \t\ + \ \n \t \n \t\n[Enter address above]\n\nThe Designated Web Site is:\t \n \t\n[Enter URL\ + \ for Designated Web Site of Initial Contributor]\nNOTE: The Initial Contributor is to complete\ + \ this Part 1, along with Parts 2, 3, and 5, and, if applicable, Parts 4 and 6.\n\nPART\ + \ 2: INITIAL WORK\n\nThe Initial Work comprises the computer program(s) distributed by the\ + \ Initial Contributor having the following title(s): .\n\nThe date on which the Initial\ + \ Work was first available under this License: \n\nPART 3: GOVERNING JURISDICTION\n\nFor\ + \ the purposes of this License, the Governing Jurisdiction is . \n[Initial Contributor\ + \ to Enter Governing Jurisdiction here]\n\nPART 4: THIRD PARTIES\n\nFor the purposes of\ + \ this License, \"Third Party\" has the definition set forth below in the ONE paragraph\ + \ selected by the Initial Contributor from paragraphs A, B, C, D and E when the Initial\ + \ Work is distributed or otherwise made available by the Initial Contributor. To select\ + \ one of the following paragraphs, the Initial Contributor must place an \"X\" or \"x\"\ + \ in the selection box alongside the one respective paragraph selected.\n\nSELECTION\t \n\ + BOX\tPARAGRAPH\n[ ]\tA. \"THIRD PARTY\" means any third party.\n \t \n[ ]\tB. \"THIRD\ + \ PARTY\" means any third party except for any of the following:\n(a) a wholly owned subsidiary\ + \ of the Subsequent Contributor in question; (b) a legal entity (the \"PARENT\") that wholly\ + \ owns the Subsequent Contributor in question; or (c) a wholly owned subsidiary of the wholly\ + \ owned subsidiary in (a) or of the Parent in (b).\n \t \n[ ]\tC. \"THIRD PARTY\" means\ + \ any third party except for any of the following:\n(a) any Person directly or indirectly\ + \ owning a majority of the voting interest in the Subsequent Contributor or (b) any Person\ + \ in which the Subsequent Contributor directly or indirectly owns a majority voting interest.\n\ + \ \t \n[ ]\tD. \"THIRD PARTY\" means any third party except for any Person directly\nor\ + \ indirectly controlled by the Subsequent Contributor. For purposes of this\ndefinition,\ + \ \"control\" shall mean the power to direct or cause the direction\nof, the management\ + \ and policies of such Person whether through the ownership\nof voting interests, by contract,\ + \ or otherwise.\n \t \n[ ]\tE. \"THIRD PARTY\" means any third party except for any Person\ + \ directly or indirectly controlling, controlled by, or under common control with the Subsequent\ + \ Contributor. For purposes of this definition, \"control\" shall mean the power to direct\ + \ or cause the direction of, the management and policies of such Person whether through\ + \ the ownership of voting interests, by contract, or otherwise.\nThe default definition\ + \ of \"THIRD PARTY\" is the definition set forth in paragraph A, if NONE OR MORE THAN ONE\ + \ of paragraphs A, B, C, D or E in this Part 4 are selected by the Initial Contributor.\n\ + \nPART 5: NOTICE\n\nTHE LICENSED WORK IS PROVIDED UNDER THE TERMS OF THE ADAPTIVE PUBLIC\ + \ LICENSE (\"LICENSE\") AS FIRST COMPLETED BY: [Insert the name of the Initial Contributor\ + \ here]. ANY USE, PUBLIC DISPLAY, PUBLIC PERFORMANCE, REPRODUCTION OR DISTRIBUTION OF, OR\ + \ PREPARATION OF DERIVATIVE WORKS BASED ON, THE LICENSED WORK CONSTITUTES RECIPIENT'S ACCEPTANCE\ + \ OF THIS LICENSE AND ITS TERMS, WHETHER OR NOT SUCH RECIPIENT READS THE TERMS OF THE LICENSE.\ + \ \"LICENSED WORK\" AND \"RECIPIENT\" ARE DEFINED IN THE LICENSE. A COPY OF THE LICENSE\ + \ IS LOCATED IN THE TEXT FILE ENTITLED \"LICENSE.TXT\" ACCOMPANYING THE CONTENTS OF THIS\ + \ FILE. IF A COPY OF THE LICENSE DOES NOT ACCOMPANY THIS FILE, A COPY OF THE LICENSE MAY\ + \ ALSO BE OBTAINED AT THE FOLLOWING WEB SITE: [Insert Initial Contributor's Designated\ + \ Web Site here]\n\nSoftware distributed under the License is distributed on an \"AS IS\"\ + \ basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the\ + \ specific language governing rights and limitations under the License.\n\nPART 6: PATENT\ + \ LICENSING TERMS\n\nFor the purposes of this License, paragraphs A, B, C, D and E of this\ + \ Part 6 of Exhibit A are only incorporated and form part of the terms of the License if\ + \ the Initial Contributor places an \"X\" or \"x\" in the selection box alongside the YES\ + \ answer to the question immediately below.\n\nIs this a Patents-Included License pursuant\ + \ to Section 2.2 of the License?\n\nYES\t[ ]\nNO\t[ ]\n\nBy default, if YES is\ + \ not selected by the Initial Contributor, the answer is NO.\n\nA. For the purposes of the\ + \ paragraphs in this Part 6 of Exhibit A, \"LICENSABLE\" means having the right to grant,\ + \ to the maximum extent possible, whether at the time of the initial grant or subsequently\ + \ acquired, any and all of the rights granted herein.\n\nB. The Initial Contributor hereby\ + \ grants all Recipients a world-wide, royalty-free, non-exclusive license, subject to third\ + \ party intellectual property claims, under patent claim(s) Licensable by the Initial Contributor\ + \ that are or would be infringed by the making, using, selling, offering for sale, having\ + \ made, importing, exporting, transfer or disposal of such Initial Work or any portion thereof.\ + \ Notwithstanding the foregoing, no patent license is granted under this Paragraph B by\ + \ the Initial Contributor: (1) for any code that the Initial Contributor deletes from the\ + \ Initial Work (or any portion thereof) distributed by the Initial Contributor prior to\ + \ such distribution; (2) for any Modifications made to the Initial Work (or any portion\ + \ thereof) by any other Person; or (3) separate from the Initial Work (or portions thereof)\ + \ distributed or made available by the Initial Contributor.\n\nC. Effective upon distribution\ + \ by a Subsequent Contributor to a Third Party of any Modifications made by that Subsequent\ + \ Contributor, such Subsequent Contributor hereby grants all Recipients a world-wide, royalty-free,\ + \ non-exclusive license, subject to third party intellectual property claims, under patent\ + \ claim(s) Licensable by such Subsequent Contributor that are or would be infringed by the\ + \ making, using, selling, offering for sale, having made, importing, exporting, transfer\ + \ or disposal of any such Modifications made by that Subsequent Contributor alone and/or\ + \ in combination with its Subsequent Work (or portions of such combination) to make, use,\ + \ sell, offer for sale, have made, import, export, transfer and otherwise dispose of:\n\n\ + (1) Modifications made by that Subsequent Contributor (or portions thereof); and\n\n(2)\ + \ the combination of Modifications made by that Subsequent Contributor with its Subsequent\ + \ Work (or portions of such combination);\n\n(collectively and in each case, the \"SUBSEQUENT\ + \ CONTRIBUTOR VERSION\").\n\nNotwithstanding the foregoing, no patent license is granted\ + \ under this Paragraph C by such Subsequent Contributor: (1) for any code that such Subsequent\ + \ Contributor deletes from the Subsequent Contributor Version (or any portion thereof) distributed\ + \ by the Subsequent Contributor prior to such distribution; (2) for any Modifications made\ + \ to the Subsequent Contributor Version (or any portion thereof) by any other Person; or\ + \ (3) separate from the Subsequent Contributor Version (or portions thereof) distributed\ + \ or made available by the Subsequent Contributor.\n\nD. Effective upon distribution of\ + \ any Licensed Work by a Distributor to a Third Party, such Distributor hereby grants all\ + \ Recipients a world-wide, royalty-free, non-exclusive license, subject to third party intellectual\ + \ property claims, under patent claim(s) Licensable by such Distributor that are or would\ + \ be infringed by the making, using, selling, offering for sale, having made, importing,\ + \ exporting, transfer or disposal of any such Licensed Work distributed by such Distributor,\ + \ to make, use, sell, offer for sale, have made, import, export, transfer and otherwise\ + \ dispose of such Licensed Work or portions thereof (collectively and in each case, the\ + \ \"DISTRIBUTOR VERSION\"). Notwithstanding the foregoing, no patent license is granted\ + \ under this Paragraph D by such Distributor: (1) for any code that such Distributor deletes\ + \ from the Distributor Version (or any portion thereof) distributed by the Distributor prior\ + \ to such distribution; (2) for any Modifications made to the Distributor Version (or any\ + \ portion thereof) by any other Person; or (3) separate from the Distributor Version (or\ + \ portions thereof) distributed or made available by the Distributor.\n\nE. If Recipient\ + \ institutes patent litigation against another Recipient (a \"USER\") with respect to a\ + \ patent applicable to a computer program or software (including a cross-claim or counterclaim\ + \ in a lawsuit, and whether or not any of the patent claims are directed to a system, method,\ + \ process, apparatus, device, product, article of manufacture or any other form of patent\ + \ claim), then any patent or copyright license granted by that User to such Recipient under\ + \ this License or any other copy of this License shall terminate. The termination shall\ + \ be effective ninety (90) days after notice of termination from User to Recipient, unless\ + \ the Recipient withdraws the patent litigation claim before the end of the ninety (90)\ + \ day period. To be effective, any such notice of license termination must include a specific\ + \ list of applicable patents and/or a copy of the copyrighted work of User that User alleges\ + \ will be infringed by Recipient upon License termination. License termination is only effective\ + \ with respect to patents and/or copyrights for which proper notice has been given.\n\n\ + PART 7: SAMPLE REQUIREMENTS FOR THE DESCRIPTION OF DISTRIBUTED MODIFICATIONS\n\nEach Subsequent\ + \ Contributor (including the Initial Contributor where the Initial Contributor qualifies\ + \ as a Subsequent Contributor) is invited (but not required) to cause each Subsequent Work\ + \ created or contributed to by that Subsequent Contributor to contain a file documenting\ + \ the changes such Subsequent Contributor made to create that Subsequent Work and the date\ + \ of any change. //***EXHIBIT A ENDS HERE.***//" json: adapt-1.0.json - yml: adapt-1.0.yml + yaml: adapt-1.0.yml html: adapt-1.0.html - text: adapt-1.0.LICENSE + license: adapt-1.0.LICENSE - license_key: adaptec-downloadable + category: Proprietary Free spdx_license_key: LicenseRef-scancode-adaptec-downloadable other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "ADAPTEC, INC. DOWNLOADABLE SOFTWARE LICENSE \n\nDirections to Obtain Your File: Please\ + \ read the downloadable software license and answer the required question below. \nEligible\ + \ users will then have access to the requested file. Adaptec reserves the right to record\ + \ all activities.\n\nTHE ADAPTEC SOFTWARE (\"SOFTWARE\") IS LICENSED TO YOU FOR USE IN ACCORDANCE\ + \ WITH THIS ADAPTEC SOFTWARE LICENSE. IF YOU ARE NOT WILLING TO ABIDE BY THESE TERMS AND\ + \ CONDITIONS, DO NOT USE THE SOFTWARE. BY USING THE SOFTWARE, YOU ARE GIVING YOUR ASSENT\ + \ TO THE TERMS OF THIS LICENSE.\n\n1. LICENSE. Adaptec grants to you a non-exclusive, non-transferable,\ + \ worldwide license to copy the Software in object code form only, combine it with your\ + \ software and distribute it, directly to customers, or through your distribution network.\ + \ You shall have no right to grant any license or sublicense to any third party, to use\ + \ the Software for any purpose, except a sublicense to use and distribute the copy produced\ + \ and distributed by you. You shall have no right to modify all or any part of the Software.\ + \ You shall not disassemble, decompile or otherwise reverse engineer the Software nor permit\ + \ any third party to do so. All rights not expressly granted herein are reserved by Adaptec.\n\ + \n2. PROPRIETARY OWNERSHIP RIGHTS. Adaptec shall retain all ownership, right, title and\ + \ interest in and to all current and hereafter existing revisions of or modifications to\ + \ the Software, including all copies made hereunder and all intellectual property rights\ + \ related thereto. All copies of the Software made by you shall contain Adaptec's copyright\ + \ notice and you shall not remove any copyright notices contained in the Software.\n\n3.\ + \ WARRANTY EXCLUSION. THE SOFTWARE IS PROVIDED \"AS IS\". ADAPTEC MAKES NO WARRANTY OF ANY\ + \ KIND WITH REGARD TO THE SOFTWARE. ADAPTEC EXPRESSLY DISCLAIMS ANY OTHER WARRANTIES, EXPRESS\ + \ OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\ + \ PURPOSE, WHETHER ARISING IN LAW, CUSTOM, CONDUCT OR OTHERWISE.\n\n4. LIMITATION OF LIABILITY.\ + \ IN NO EVENT SHALL EITHER PARTY BE LIABLE FOR ANY LOSS OF PROFITS, LOSS OF USE, CONSEQUENTIAL,\ + \ SPECIAL OR INCIDENTAL DAMAGES ARISING UNDER THIS AGREEMENT, EVEN IF THE OTHER PARTY HAS\ + \ BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN NO EVENT WILL ANY DAMAGES ATTRIBUTABLE\ + \ TO ADAPTEC EXCEED THE AMOUNT OF PAYMENTS MADE TO ADAPTEC UNDER THIS AGREEMENT.\n\n5. TERMINATION\ + \ OF THIS AGREEMENT. Adaptec may terminate this Agreement if you violate its terms. Upon\ + \ termination, you will immediately destroy the Software or return all copies of the Software\ + \ to Adaptec.\n\n6. APPLICABLE LAW. This Agreement shall be governed by the laws of the\ + \ State of California, USA, excluding its principles of conflict of laws and the United\ + \ Nations Convention on Contracts for the Sale of Goods.\n\n7. AMENDMENT, SEVERABILITY,\ + \ WAIVER. No supplement or amendment of this Agreement shall be binding, unless executed\ + \ in writing by both parties and specifically referencing the supplementing or amendment\ + \ of this Agreement. Any provision of this Agreement found to be illegal or unenforceable\ + \ shall be deemed severed, and the balance of this Agreement shall remain in full force\ + \ and effect. Neither party's right to require performance of the other party's obligations\ + \ hereunder shall be affected by any previous waiver, forbearance or course of dealing,\ + \ unless or only to the extent of any waiver given in writing. Failure or delay by either\ + \ party to exercise any of its rights, powers or remedies hereunder shall not constitute\ + \ a waiver of those rights, powers or remedies.\n\n8. EXPORT COMPLIANCE. Each party agrees\ + \ that the Software is subject to the U.S. Export Administration Act and Export Administration\ + \ Regulations, as well as applicable import and export regulations of the countries in which\ + \ each party transacts business. Each party shall comply with such laws and regulations,\ + \ as well as all other laws and regulations applicable to the Software. Each party agrees\ + \ that it will not export, re-export, transfer or divert any of the Software to any country\ + \ for which United States' laws or regulations require an export license or other governmental\ + \ approval, without first obtaining such license or approval, nor will each party export,\ + \ re-export, transfer or divert any of the Software to any restricted place or party in\ + \ accordance with U.S. export regulations.\n\n9. GOVERNMENT RESTRICTED RIGHTS. The Software\ + \ is provided with RESTRICTED RIGHTS. Use, duplication or disclosure by the Government is\ + \ subject to restrictions as set forth in FAR52.227-14 and DFAR252.227-7013 et. seq. or\ + \ their successors. Us of the Software by the Government constitutes acknowledgment of Adaptec's\ + \ proprietary right therein. \nAdaptec, Inc., 691 South Milpitas Boulevard, Milpitas, California\ + \ 95035\n\n * Bureau of Industry and Security's Lists to Check\n\nIf you have any questions\ + \ concerning this License, contact:\n\nAdaptec, Inc.\nLegal Department\n691 South Milpitas\ + \ Boulevard\nMilpitas, California 95035.\nt.(408) 957-1718\nf.(408) 957-7137" json: adaptec-downloadable.json - yml: adaptec-downloadable.yml + yaml: adaptec-downloadable.yml html: adaptec-downloadable.html - text: adaptec-downloadable.LICENSE + license: adaptec-downloadable.LICENSE - license_key: adaptec-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-adaptec-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "PMC-Sierra Inc.\nAdaptec by PMC Downloadable Files:\n\nThis License is granted by PMC-Sierra,\ + \ Inc., referred to in this License as\n\"PMC-Sierra\" or \"ADAPTEC Inc\" or \"ADAPTEC\"\ + \ or \"we\" or \"us.\" PMC-Sierra reserves\nthe right to record all activities and to use\ + \ any information obtained in\naccordance with the privacy policy which you can access below.\n\ + \nDirections to Obtain Your File:\n\nCAREFULLY READ THE FOLLOWING TERMS AND CONDITIONS AS\ + \ WELL AS THE EXPORT\nCOMPLIANCE REQUIREMENTS SET OUT BELOW. YOU MUST ANSWER THE REQUIRED\ + \ QUESTION\nTRUTHFULLY TO LET US KNOW WHETHER YOU HAVE READ AND UNDERSTOOD THE TERMS AND\n\ + CONDITIONS AND EXPORT COMPLIANCE REQUIREMENTS AND WHETHER YOU AGREE TO COMPLY.\nYOU MUST\ + \ CLICK A FURTHER BUTTON TO CONFIRM YOUR ANSWER AND IF YOU ANSWER IN THE\nAFFIRMATIVE, A\ + \ BINDING LICENSE AGREEMENT (\"LICENSE\") WILL BE CONCLUDED BETWEEN\nUS. YOU MAY THEN PROCEED\ + \ TO DOWNLOAD THE SOFTWARE.\n\nIF YOU DO NOT AGREE TO THESE TERMS, CONDITIONS, AND EXPORT\ + \ COMPLIANCE\nREQUIREMENTS THEN DO NOT DOWNLOAD THE SOFTWARE. IF YOU WISH TO CANCEL THIS\n\ + LICENSE AT ANY TIME YOU MAY DO SO BY DESTROYING ALL COPIES AND PARTIAL COPIES OF\nTHE SOFTWARE\ + \ WHICH YOU HAVE DOWNLOADED.\n\nYOU ALSO AGREE THAT YOU HAVE ALL NECESSARY INFORMATION IN\ + \ ORDER TO ENTER INTO\nTHIS LICENSE WHETHER UNDER AN APPLICABLE EUROPEAN E-COMMERCE DIRECTIVE\ + \ OR\nOTHERWISE. IF YOU DO NOT AGREE TO THESE TERMS, CONDITIONS, AND REQUIREMENTS, DO\n\ + NOT DOWNLOAD ANY FILES.\n\nPlease retain a copy of the License for your files or you may\ + \ contact ADAPTEC's\nLegal Department at the address listed below for a further copy. This\ + \ license\nmay be concluded in English or the language in which it is drafted by ADAPTEC\n\ + and appears to you online, as applicable. If you are a consumer residing in\nEurope (a \"\ + European Consumer\") then this License shall not affect your statutory\nrights under the\ + \ local laws in Europe.\n\nThis License grants you a non-exclusive license to use the ADAPTEC\ + \ Software and\nrelated documentation (\"Software\") on the following terms, conditions,\ + \ and\nexport compliance requirements:\n\nIf you are NOT an individual consumer residing\ + \ in Europe then the following\nterms, conditions and export compliance requirements apply\ + \ and are a part of\nyour license: ALL SECTIONS EXCEPT AS SPECIFIED HEREIN.\n\nIf you are\ + \ an individual consumer residing in Europe (\"European Consumer\") then\nthe following\ + \ terms, conditions and export compliance requirements apply and are\nmade part of your\ + \ License: 1, 2, 3, 4, applicable parts of 6, 7, 9 and the first\nparagraph of export compliance.\ + \ IF YOU ARE A EUROPEAN CONSUMER THIS LICENSE\nSHALL NOT AFFECT YOUR RIGHTS UNDER THE STATUTORY\ + \ LAWS OF EUROPE.\n\n Your right to use the Software. You may use the Software in machine\ + \ readable\n form (i.e. the form you download from us) within a single working location.\n\ + \ You may copy the Software in the same form solely for back-up purposes or\n use\ + \ within a single working location. You must reproduce ADAPTEC's copyright\n notice and\ + \ proprietary legends. These requirements apply to European\n Consumers.\n\n Restrictions.\ + \ This Software contains trade secrets and in order to protect\n them you may not: (1)\ + \ distribute copies of the Software in any manner,\n including, but not limited to, distribution\ + \ through web site posting; (2)\n decompile, reverse engineer, disassemble, or otherwise\ + \ reduce the Software\n to a human perceivable form; (3) MODIFY, ADAPT OR TRANSLATE THE\ + \ SOFTWARE\n INTO ANY OTHER FORM; (4) RENT, LEASE, LOAN, RESELL FOR PROFIT, OR CREATE\n\ + \ DERIVATIVE WORKS BASED UPON THE SOFTWARE OR ANY PART OF IT. These\n requirements\ + \ apply to European Consumers.\n \n Ownership. The Software is copyrighted by, proprietary\ + \ to and a trade secret\n of ADAPTEC. ADAPTEC retains the title, ownership and intellectual\ + \ property\n rights in and to the Software and all subsequent copies regardless of the\n\ + \ form or media. The Software is protected by the copyright laws of the United\n States,\ + \ the European Union, and international copyright treaties. This\n License is not a sale\ + \ of the Software. These terms apply to European\n consumers.\n \n Termination.\ + \ This License is effective until terminated. This License will\n terminate automatically\ + \ without notice if you fail to comply with any of the\n provisions. Upon termination\ + \ you shall destroy all copies of the Software\n including any partial copies. This provision\ + \ applies to European Consumers.\n \n Disclaimer of Warranty. IF YOU ARE A EUROPEAN\ + \ CONSUMER THEN THIS SECTION 5\n DOES NOT APPLY TO YOU AND DOES NOT FORM PART OF YOUR\ + \ LICENSE WITH US.\n PROCEED TO SECTION 6. THE SOFTWARE IS LICENSED TO YOU \"AS IS.\"\ + \ YOU ACCEPT\n ALL RISKS WHICH MAY ARISE FROM THE DOWNLOADING OF THE SOFTWARE, INCLUDING\n\ + \ BUT NOT LIMITED TO ERRORS IN TRANSMISSION OR CORRUPTION OF EXISTING DATA OR\n SOFTWARE.\ + \ ADAPTEC MAKES NO WARRANTIES, EXPRESS OR IMPLIED, AND SPECIFICALLY\n DISCLAIMS ANY WARRANTY\ + \ OF NON INFRINGEMENT OF THIRD PARTIES' RIGHTS,\n WARRANTIES OF SATISFACTORY QUALITY\ + \ AND OF FITNESS FOR A PARTICULAR PURPOSE.\n Some states do not allow the exclusion of\ + \ implied warranties or limitations\n of how long an implied warranty may last, so the\ + \ above exclusion may not\n apply to you. You may also have other rights which vary from\ + \ state to state.\n \n Limitation of Liability. FOR EUROPEAN CONSUMERS: WE WILL NOT\ + \ BE LIABLE TO\n YOU WHERE YOU SUFFER LOSS WHICH WAS NOT FORESEEABLE TO YOU AND TO US\ + \ WHEN\n YOU DOWNLOADED THE SOFTWARE (EVEN IF IT RESULTS FROM OUR FAILURE TO COMPLY\n\ + \ WITH THIS LICENSE OR OUR NEGLIGENCE); WHERE YOU SUFFER ANY BUSINESS LOSS\n INCLUDING\ + \ LOSS OF REVENUE, PROFITS OR ANTICIPATED SAVINGS (WHETHER THOSE\n LOSSES ARE THE DIRECT\ + \ OR INDIRECT RESULT OF OUR DEFAULT); OR WHERE YOUR LOSS\n DOES NOT RESULT FROM OUR FAILURE\ + \ TO COMPLY WITH THIS LICENSE OR OUR\n NEGLIGENCE. THE SOFTWARE HAS BEEN MADE AVAILABLE\ + \ TO YOU FREE OF CHARGE. YOU\n MAY AT ANY TIME DOWNLOAD A FURTHER COPY OF THE SOFTWARE\ + \ FREE OF CHARGE TO\n REPLACE YOUR ORIGINAL COPY OF THE SOFTWARE (CONSEQUENTLY, WE AND\ + \ OUR\n SUPPLIERS WILL ONLY BE LIABLE TO YOU UP TO A MAXIMUM TOTAL LIMIT OF TWO\n \ + \ THOUSAND DOLLARS U.S. OR ITS EURO EQUIVALENT AT THE TIME A CLAIM IS MADE).\n OUR MAXIMUM\ + \ FINANCIAL RESPONSIBILITY TO YOU AND THAT OF OUR SUPPLIERS WILL\n NOT EXCEED THIS LIMIT\ + \ EVEN IF THE ACTUAL LOSS YOU SUFFER IS MORE THAN THAT.\n HOWEVER, NOTHING IN THIS LICENSE\ + \ SHALL RESTRICT ANY PARTY'S LIABILITY FOR\n FRAUD, DEATH OR PERSONAL INJURY ARISING\ + \ FROM ITS NEGLIGENCE OR FOR FRAUD OR\n ANY FRAUDULENT MISREPRESENTATION.\n\n ALL\ + \ OTHERS DOWNLOADING THE SOFTWARE: THE SOFTWARE IS PROVIDED FREE OF\n CHARGE TO YOU,\ + \ THEREFORE UNDER NO CIRCUMSTANCES EXCEPT AS DESCRIBED HEREIN\n AND UNDER NO LEGAL THEORY,\ + \ TORT (INCLUDING NEGLIGENCE), CONTRACT, OR\n OTHERWISE, SHALL ADAPTEC OR ITS SUPPLIERS\ + \ OR RESELLERS BE LIABLE TO YOU OR\n ANY OTHER PERSON FOR ANY ECONOMIC LOSS (INCLUDING\ + \ LOSS OF PROFIT) OR FOR ANY\n LOSS OF DATA, LOSS OF BUSINESS, LOSS OF GOODWILL, LOSS\ + \ OF ANTICIPATED\n SAVINGS (IN EACH CASE WHETHER DIRECT OR INDIRECT) OR FOR ANY OTHER\ + \ DIRECT OR\n INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER\n\ + \ EVEN IF ADAPTEC SHALL HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n HOWEVER,\ + \ NOTHING IN THIS LICENSE SHALL RESTRICT ANY PARTY'S LIABILITY FOR\n FRAUD, DEATH OR\ + \ PERSONAL INJURY ARISING FROM ITS NEGLIGENCE OR FOR FRAUD OR\n ANY FRAUDULENT MISREPRESENTATION.\ + \ Export. By downloading, you acknowledge\n that the laws and regulations of the United\ + \ States and relevant countries\n within the European Union, restrict the export and\ + \ re-export of the\n Software. Further, you agree that you will not export or re-export\ + \ the\n Software or media in any form without the appropriate United States and\n \ + \ foreign government approval. If you are a European Consumer you must not\n export Software\ + \ outside the country in which you download it without our\n prior written permission.\ + \ (See below for details on Export Compliance\n Requirements.) U.S. Government Restricted\ + \ Rights. IF YOU ARE A EUROPEAN\n CONSUMER THEN THIS CLAUSE WILL NOT APPLY TO YOU AND\ + \ DOES NOT FORM PART OF\n YOUR LICENSE AGREEMENT WITH US. PLEASE PROCEED TO SECTION 9.\ + \ If the Software\n is acquired under the terms of a United States GSA contract, use,\n\ + \ reproduction or disclosure is subject to the restrictions set forth in the\n applicable\ + \ ADP Schedule contract. If the Software is acquired under the\n terms of a DoD or civilian\ + \ agency contract, use, duplication or disclosure\n by the Government is subject to the\ + \ restrictions of this License in\n accordance with 48 C.F.R. 12.212 of the Federal Acquisition\ + \ Regulations and\n its successors and 48 C.F.R. 227.7202-1 of the DoD FAR Supplement\ + \ and its\n successors. (See below for details on Export Compliance Requirements.)\n\ + \ General. California residents entered into and to be performed within\n California,\ + \ except as governed by Federal law. Should any provision of this\n License be declared\ + \ unenforceable in any jurisdiction, then such provision\n shall be deemed to be severable\ + \ from this License and shall not affect the\n remainder hereof. All rights in the Software\ + \ not specifically granted in\n this License are reserved by Adaptec.\n\nEXPORT COMPLIANCE\ + \ REQUIREMENTS\n\nExport of any information from the Adaptec web site (including Confidential\n\ + Information obtained through Adaptec Access) outside of the United States is\nsubject to\ + \ all U.S. export control laws. You will abide by such laws and also to\nthe provision of\ + \ the U.S. Export-Re-export Requirements and Enhanced\nProliferation Control Initiative\ + \ set forth here. You and your organization will\nnot sell, license, or otherwise provide\ + \ or ship Adaptec products or technical\ndata (or the direct product thereof) for export\ + \ or re-export to the embargoed or\nrestricted* countries listed below:\n\n Afghanistan\ + \ (Taliban controlled area), Cuba, Iran, Iraq, North Korea*,\n Sudan, and Syria*\n\n\ + You agree not to transfer, export or re-export Adaptec products, technology or\nsoftware\ + \ to your customers or any intermediate entity in the chain of supply if\nour products will\ + \ be used in the design, development, production, stockpiling or\nuse of missiles, chemical\ + \ or biological weapons or for nuclear end uses without\nobtaining prior authorization from\ + \ the U.S. Government.\n\nYou also agree that unless you receive prior authorization from\ + \ the U.S.\nDepartment of Commerce, you shall not transfer, export or re-export, directly\ + \ or\nindirectly, any Adaptec technology or software (or the direct product of such\ntechnology\ + \ or software or any part thereof, or any process or service which is\nthe direct product\ + \ of such technology or software) to any Sanctioned and/or\nEmbargoed entity listed on:\n\ + \n Bureau of Industry and Security's Lists to Check\n\nIf you have any questions concerning\ + \ this License, contact:\nPMC-Sierra, Inc.\nLegal Department\n1380 Bordeaux Drive\nSunnyvale,\ + \ CA 94089\nPhone: (408) 239-8000" json: adaptec-eula.json - yml: adaptec-eula.yml + yaml: adaptec-eula.yml html: adaptec-eula.html - text: adaptec-eula.LICENSE + license: adaptec-eula.LICENSE +- license_key: adcolony-tos-2022 + category: Proprietary Free + spdx_license_key: LicenseRef-scancode-adcolony-tos-2022 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: "Terms of Service for Publishers\n\nAdColony publishing and monetization partners must\ + \ sign, acknowledge, and agree\nto their own terms of service document within the AdColony\ + \ portal. The version\nbelow is for general reference purposes and does not serve as a legal\ + \ or binding\nagreement with any entity.\n\nAdditional agreements and terms of service may\ + \ be required on a per client basis\nto comply with regulatory needs. Contact support@adcolony.com\ + \ for more details.\n\n \n\nSDK License and Publisher Terms\n\nThese AdColony SDK License\ + \ and Publisher Terms (this “Agreement”) is made\navailable by AdColony, Inc. (“AdColony”).\ + \ By downloading or using the AdColony\nSDK, you and any company, entity, or organization\ + \ on behalf of which you are\naccepting this Agreement (“Developer”) hereby agrees to be\ + \ bound by all terms\nand conditions of this Agreement, and you represent and warrant that\ + \ you are an\nauthorized representative of Developer with the authority to bind Developer\ + \ to\nthis Agreement. IF YOU DO NOT AGREE TO ALL TERMS AND CONDITIONS OF THIS\nAGREEMENT,\ + \ DO NOT DOWNLOAD OR USE THE ADCOLONY SDK.\n\n1. Definitions\n\n 1. “Advertisers” means\ + \ third-party advertisers.\n\n 2. “Developer Apps” means the mobile applications owned\ + \ and/or controlled by\n Developer, including all content images, music and text contained\ + \ therein,\n that Developer wishes to use with the AdColony SDK and AdColony Platform.\n\ + \n 3. “I/O” means a fully executed insertion order containing advertising\n campaign\ + \ details for user acquisitions and campaigns run by Developer on\n AdColony’s Platform.\n\ + \n 4. “AdColony Ads” means video, playable, display, or any type of media\n advertisements,\ + \ sourced by or on behalf of AdColony, which are routed and/or\n served by the AdColony\ + \ Platform to the Developer Apps.\n \n 5. “AdColony Platform” means AdColony’s advertising\ + \ system or network, which\n supports advertisement insertion within mobile applications,\ + \ and related\n advertisement reporting tools.\n \n 6. “AdColony SDK” means the\ + \ software development kit and any other software\n and documentation that may be provided\ + \ by AdColony to Developer with the\n software development kit, including any updates\ + \ thereto.\n \n 7. “Personally Identifiable Information” or “PII” means information\ + \ that\n specifically identifies or locates a particular person or entity such as\n \ + \ name, postal address, telephone number, and email address.\n \n 8. “Pseudonymous\ + \ Identifiers” means data that is linked or reasonably\n linkable to a particular computer\ + \ or device resettable device identifiers\n such as Google Advertising ID, Apple Identifier\ + \ for Advertisers, IP address,\n or other similar identifiers. Pseudoymous Identifiers\ + \ may not be utilized to\n identify a particular person.\n\n2. AdColony SDK License\n\ + \n 1. License Grant. Subject to the terms and conditions of this Agreement,\n AdColony\ + \ grants Developer a non-exclusive, non-transferable, non-\n sublicenseable, worldwide\ + \ license to: (a) integrate the AdColony SDK with\n Developer Apps solely for internal\ + \ use; (b) use, reproduce and distribute\n certain portions of the AdColony SDK as required\ + \ for Developer’s\n distribution of Developer Apps, solely as enabled by, and in accordance\ + \ with\n documentation provided by AdColony; and (c) use the AdColony SDK and\n AdColony\ + \ Platform to have advertisements, including AdColony Ads,\n distributed and presented\ + \ within Developer Apps.\n\n 2. SDK Updates. AdColony periodically releases new versions\ + \ of the AdColony\n SDK which may contain new features and fixes, and AdColony may sunset\n\ + \ versions of the AdColony SDK. Developer is encouraged to check the AdColony\n website\ + \ (or AdColony-designated distribution site) from time to time for the\n latest version\ + \ releases, and to download and integrate such new versions\n within the Developer Apps,\ + \ subject to this Agreement (including any\n amendments).\n\n C. License Restrictions.\ + \ Except as expressly provided in this Agreement,\n Developer shall not (and shall not\ + \ allow any third party to): (a) decompile,\n reverse engineer, disassemble, modify,\ + \ adapt, create derivative works of,\n copy or distribute the AdColony SDK or AdColony\ + \ Platform, (b) modify,\n remove, or obscure any copyright, trademark, patent or other\ + \ proprietary\n notices or legends from the AdColony SDK or AdColony Platform; (c) copy,\n\ + \ distribute, rent, lease, lend, sublicense, transfer or make the AdColony SDK\n or\ + \ AdColony Platform available to any third party, and (d) use the AdColony\n SDK or AdColony\ + \ Platform to develop, upload, or transmit any software\n viruses or other computer code,\ + \ files or programs designed to interrupt,\n destroy, or limit the functionality of any\ + \ software or hardware.\n\n 3. Intellectual Property. All ownership rights, title, and\ + \ interest in and\n to the AdColony SDK and AdColony Platform, including all intellectual\n\ + \ property rights therein, as such may be modified, upgraded, or enhanced from\n time\ + \ to time (“AdColony Property”) will remain and belong exclusively to\n AdColony. AdColony\ + \ reserves all rights not expressly granted to Developer\n herein. Developer shall retain\ + \ all ownership rights, title and interest in\n and to the Developer Apps, including\ + \ all intellectual property rights\n therein, as such may be modified, upgraded or enhanced\ + \ from time to time.\n\n 4. Advertising via The AdColony Platform\n\n 1. AdColony\ + \ Insertion & Sale of Ads. Developer hereby grants AdColony\n the right to sell,\ + \ and have sold, advertisement inventory in the\n Developer Apps, and to insert AdColony\ + \ Ads within such inventory. In\n addition, Developer hereby grants AdColony the\ + \ non-exclusive, worldwide\n right and license to use, reproduce, distribute and\ + \ display Developer’s\n and the Developer Apps’ trademarks, logos, and images of\ + \ the Developer\n Apps, in connection with the sale of AdColony Ads hereunder, including:\n\ + \ (a) listing the Developer Apps and inventory in pitch materials to\n prospective\ + \ Advertisers; (b) reporting the inclusion of Developer Apps\n and inventory as part\ + \ of AdColony’s advertising network; and (c)\n identifying the Developer as a publishing\ + \ partner on AdColony’s website\n and other marketing materials. AdColony also reserves\ + \ the right to\n utilize publisher results (both specific and aggregate) in case\ + \ studies\n and white papers for promotional purposes.\n\n 2. Developer Ad\ + \ Campaigns. For user acquisitions and other campaigns run\n by Developer on the\ + \ AdColony Platform, Developer shall provide AdColony\n with a signed I/O. The terms\ + \ of the I/O, including the Interactive\n Advertising Bureau terms and conditions\ + \ incorporated into the I/O (the\n “IAB Terms”) shall govern such advertising campaigns.\ + \ In the event of\n any conflict between the I/O and such IAB Terms, the I/O shall\ + \ govern\n and control with respect to such campaign.\n\n 3. Developer Apps\ + \ Content Policy. The Developer Apps will not contain,\n consist of, or promote discrimination,\ + \ illegal activities, hate speech,\n defamation, graphic violence, firearms, tobacco,\ + \ illegal drugs,\n pornography, profanity, obscenity or sexually explicit material\n\ + \ (“Developer Apps Content Policy”). Developer will notify AdColony\n immediately\ + \ of any Developer Apps relating to alcohol or gambling or\n that are child-directed\ + \ as defined under COPPA. Developer agrees that\n AdColony has no responsibility\ + \ for the Developer Apps, including any\n content therein, and AdColony has no obligation\ + \ or ability to monitor or\n edit the Developer Apps. Developer will provide as much\ + \ advance written\n notice as reasonably practicable, but in no event less than fifteen\ + \ (15)\n days’ notice, regarding any material changes to the nature or design of\n\ + \ any Developer App, including without limitation, changes to the\n placement\ + \ of AdColony Ad inventory, any action that will increase or\n reduce expected AdColony\ + \ Ad inventory within the Developer Apps, the\n type of content contained within\ + \ the Developer Apps, or the target\n audience of the Developer Apps.\n\n\n 4.\ + \ Ad Restrictions. Developer may not, and may not authorize or encourage\n any third\ + \ party to: (a) generate fraudulent impressions of, or fraudulent\n clicks on any AdColony\ + \ Ads, including through repeated manual clicks, the\n use of robots or other automated\ + \ tools or any other method that may lead to\n artificially high numbers of impressions,\ + \ clicks, downloads, installs, app-\n opens, installed app user activity; or (b) edit,\ + \ modify, filter, or change\n the order of the information contained in any AdColony\ + \ Ad, or remove,\n obscure or minimize any AdColony Ad in any way. Developer shall promptly\n\ + \ notify AdColony if it suspects that any third party may be tampering with,\n abusing\ + \ or manipulating the AdColony Platform or the AdColony Ads within the\n Developer App.\ + \ AdColony may suspend Developer’s use of the AdColony Platform\n and/or terminate this\ + \ Agreement immediately should Developer violate the\n foregoing provisions of this Section\ + \ as determined by AdColony’s sole\n discretion upon evaluating its fraud detection and\ + \ reporting systems, and\n Developer shall not be entitled to any revenue associated\ + \ with the\n applicable campaign(s).\n\n 5. Data & Privacy\n\n 1. Collection\ + \ of Data. Developer acknowledges and agrees that\n Pseudonymous Identifiers may\ + \ be used in connection with the performance\n of this Agreement in order to collect\ + \ and use data from end users and\n their devices (“App Data”) in connection with\ + \ advertisement performance,\n targeting, and end user interests (“Performance Data”),\ + \ and to display\n AdColony Ads to end users. Developer agrees that in connection\ + \ with\n AdColony Ads, AdColony may access or call to the Developer Apps, or the\n\ + \ servers that make them available, and cause the routing, transmission,\n \ + \ reproduction, and presentation of AdColony Ads as contemplated herein.\n Additionally,\ + \ Developer agrees that AdColony may collect App Data and\n Performance Data, including\ + \ Pseudonymous Identifiers , usage data, and\n streaming data, with regard to the\ + \ Developer Apps (and included content)\n within which AdColony Ads are routed and/or\ + \ served and (i) disclose such\n information to third parties (including Advertisers\ + \ and attribution\n partners) as reasonably necessary in connection with the operation\ + \ of\n the AdColony Platform, (ii) disclose such data if required by any court\n\ + \ order, process, law or governmental agency; (iii) disclose such data\n generally\ + \ when it is aggregated, such that the specific information\n relating to Developer\ + \ is not identified as such; and (iv) use such\n information for AdColony’s internal\ + \ business purposes, including to\n develop and improve the AdColony SDK and AdColony\ + \ Platform. AdColony\n will collect and use the data in accordance with the Digital\ + \ Advertising\n Alliance Self-Regulatory Principles (“DAA Codes”), which are available\n\ + \ at http://www.aboutads.info/principles and AdColony Privacy Policy,\n which\ + \ is available at https://www.adcolony.com/privacy-policy/ (as\n updated from time\ + \ to time) and is hereby incorporated by reference.\n \n 2. Compliance with Laws.\ + \ Developer agrees to comply with all Privacy\n Requirements (as defined below),\ + \ including conspicuously posting a\n privacy policy that accurately describes the\ + \ Developer’s and third\n parties’ collection, use, and disclosure of end user data\ + \ from the\n Developer Apps, which include disclosure that third parties may collect\n\ + \ or receive information and use that information to provide measurement\n \ + \ services and targeted ads, and disclosure of how and where users can\n opt-out\ + \ of collection and use of information for ad targeting. Developer\n will not pass\ + \ any PII to AdColony unless expressly permitted in writing,\n and as permitted under\ + \ any Privacy Requirements. Developer represents\n and warrants that any data Developer\ + \ provides to AdColony regarding\n devices, location, or users, and the ability for\ + \ AdColony to collect the\n App Data and Performance Data, is permitted and provided\ + \ in compliance\n with all Privacy Requirements including Developer’s posted privacy\n\ + \ policy. Developer further represents and warrants that it has made any\n \ + \ and all disclosures and obtained any and all consents or permissions\n required\ + \ by law with respect to Developer’s privacy practices, including\n without limitation:\ + \ (a) any end user data Developer collects, uses,\n and/or discloses, (b) the use\ + \ and disclosure of App Data and Performance\n Data to AdColony via the AdColony\ + \ SDK and AdColony Platform, and (c)\n notice and parental consent required by the\ + \ Children’s Online Privacy\n Protection Act (“COPPA”). AdColony reserves the right\ + \ to modify,\n suspend, or terminate this Agreement should Developer violate this\n\ + \ Section, and/or to remain compliant with law.\n\n C. “Privacy Requirements”\ + \ means all (i) applicable laws (including\n COPPA), governmental regulations, court\ + \ or government agency orders, and\n decrees relating in any manner to the collection,\ + \ use, or dissemination\n of information from or about users, user traffic, or otherwise\ + \ relating\n to privacy rights; (ii) the DAA Codes; and (iii) Developer’s posted\n\ + \ privacy policy.\n\n 6. Developer Payments\n\n 1. Developer Payment. Subject\ + \ to the terms and conditions of this\n Agreement, AdColony shall pay to Developer\ + \ Net Revenue amounts\n determined by AdColony. All revenue received from activities\ + \ that\n AdColony deems to be fraudulent may be refunded to the Advertiser(s) in\n\ + \ AdColony’s sole discretion.\n\n 2. Payment Terms. AdColony will pay any\ + \ Developer Payment due to\n Developer sixty (60) days after the completion of the\ + \ month in which\n such AdColony Ad campaign runs; provided that, AdColony may withhold\n\ + \ payment until the following month for Developer Payment amounts less\n than\ + \ $100 U.S. Developer shall be responsible for any bank, transfer or\n transaction\ + \ fees (e.g., PayPal). AdColony may deduct any withholding,\n sales, value added,\ + \ and other applicable taxes (other than its net\n income taxes) as required by law.\ + \ Developer is responsible for paying\n any other taxes, duties, or fees for which\ + \ Developer is legally\n responsible.\n\n 3. Earnings are forfeited by publisher\ + \ if a) the publisher’s lifetime\n earnings are less than $100 and it has been more\ + \ than 12 months since\n the publisher had earnings or b) the publisher has not provided\ + \ payment\n information, outstanding earnings are less than $1,000 and it has been\n\ + \ more than 12 months since the publisher had earnings.\n\n\n 7. Term and Termination\n\ + \n 1. Term. This Agreement is effective until terminated in accordance with\n \ + \ this Agreement.\n\n 2. Termination by AdColony. AdColony may terminate this\ + \ Agreement at any\n time by providing sixty (60) days’ notice to Developer. Additionally,\n\ + \ AdColony may terminate this Agreement immediately if Developer breaches\n \ + \ any provision of this Agreement.\n\n 3. Termination by Developer. Developer may\ + \ terminate this Agreement at\n any time by providing written notice to AdColony\ + \ (email to suffice),\n ceasing all use of the AdColony Platform and AdColony Property,\ + \ and\n destroying or removing from all hard drives, networks, and other storage\n\ + \ media all copies of the AdColony Property.\n\n 4. Effect of Termination.\ + \ Upon termination of this Agreement by\n Developer, the Agreement (including all\ + \ rights and licenses granted and\n obligations assumed hereunder) will remain in\ + \ force and effect until the\n completion of all AdColony Ad campaigns associated\ + \ with the Developer\n Apps in effect on the date of such termination (“Sell-Off\ + \ Period”).\n AdColony’s payment obligations will remain in effect during the Sell-Off\n\ + \ Period. Upon any termination of this Agreement, each party will promptly\n \ + \ return or destroy all copies of any Confidential Information in its\n possession\ + \ or control. Sections 3, 7(D) through 13 shall survive any\n expiration or termination\ + \ of this Agreement.\n\n 8. Confidentiality\n\n A. Definition. “Confidential Information”\ + \ means any and all business,\n technical and financial information or material of\ + \ a party, whether\n revealed orally, visually, or in tangible or electronic form,\ + \ that is\n not generally known to the public, which is disclosed to or made\n \ + \ available by one party (the “Disclosing Party”) to the other, or which\n one\ + \ party becomes aware of pursuant to this Agreement (the “Receiving\n Party”). The\ + \ AdColony SDK is AdColony’s Confidential Information, and\n the terms and conditions\ + \ of this Agreement shall remain confidential.\n The failure of a Disclosing Party\ + \ to designate as “confidential” any\n such information or material at the time of\ + \ disclosure shall not result\n in a loss of status as Confidential Information to\ + \ the Disclosing Party.\n Confidential Information shall not include information\ + \ which: (i) is in\n or has entered the public domain through no breach of this Agreement\ + \ or\n other act by a Receiving Party; (ii) a Receiving Party rightfully knew\n \ + \ prior to the time that it was disclosed to a Receiving Party hereunder;\n \ + \ (iii) a Receiving Party received without restriction from a third-party\n lawfully\ + \ possessing and lawfully entitled to disclose such information\n without breach\ + \ of this Agreement; or (iv) was independently developed by\n employees of the Receiving\ + \ Party who had no access to such information.\n\n B. Use and Disclosure Restrictions.\ + \ The Receiving Party shall not use\n the Confidential Information except as necessary\ + \ to exercise its rights\n or perform its obligations under this Agreement, and shall\ + \ not disclose\n the Confidential Information to any third party, except to those\ + \ of its\n employees, subcontractors, and advisers that need to know such\n \ + \ Confidential Information for the purposes of this Agreement, provided\n that\ + \ each such employee, subcontractor, and advisor is subject to a\n written agreement\ + \ that includes binding use and disclosure restrictions\n that are at least as protective\ + \ of the Confidential Information as those\n set forth herein. The Receiving Party\ + \ will use at least the efforts such\n party ordinarily uses with respect to its\ + \ own confidential information\n of similar nature and importance to maintain the\ + \ confidentiality of all\n Confidential Information in its possession or control,\ + \ but in no event\n less than reasonable efforts. The foregoing obligations will\ + \ not\n restrict the Receiving Party from disclosing any Confidential\n Information\ + \ required by applicable law; provided that, the Receiving\n Party must use reasonable\ + \ efforts to give the Disclosing Party advance\n notice thereof (i.e., so as to afford\ + \ Disclosing Party an opportunity to\n intervene and seek an order or other relief\ + \ for protecting its\n Confidential Information from any unauthorized use or disclosure)\ + \ and\n the Confidential Information is only disclosed to the extent required by\n\ + \ law. The Receiving Party shall return all of the Disclosing Party’s\n Confidential\ + \ Information to the Disclosing Party or destroy the same, no\n later than fifteen\ + \ (15) days after Disclosing Party’s request, or when\n Receiving Party no longer\ + \ needs Confidential Information for its\n authorized purposes hereunder.\n\n \ + \ 9. Representations and Warranties of Developer. Developer represents,\n warrants and\ + \ covenants to AdColony that: (a) it has all necessary rights,\n title, and interest\ + \ in and to the Developer Apps, and it has obtained all\n necessary rights, releases,\ + \ and permissions to grant the rights granted to\n AdColony in this Agreement, including\ + \ to allow AdColony to sell and insert\n the AdColony Ads as contemplated herein; (b)\ + \ it shall not use the AdColony\n Platform to collect or discern any personally identifiable\ + \ information of\n end users, or use the data received through the AdColony Platform\ + \ to re-\n identify an individual; and (c) the Developer Apps will comply with the\n\ + \ Developer Apps Content Policy, and will not infringe upon, violate, or\n misappropriate\ + \ any third party right, including any intellectual property,\n privacy, or publicity\ + \ rights.\n\n 10. Warranty Disclaimer. THE ADCOLONY SDK AND ADCOLONY PLATFORM ARE PROVIDED\n\ + \ “AS IS”. ADCOLONY DOES NOT MAKE ANY WARRANTIES, EXPRESS, IMPLIED, STATUTORY\n OR\ + \ OTHERWISE, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY,\n NON-INFRINGEMENT,\ + \ FITNESS FOR A PARTICULAR PURPOSE, AND ANY IMPLIED\n WARRANTIES ARISING FROM COURSE\ + \ OF DEALING OR PERFORMANCE. ADCOLONY AND ITS\n SUPPLIERS, LICENSORS, AND PARTNERS DO\ + \ NOT WARRANT THAT THE ADCOLONY PLATFORM\n OR ADCOLONY SDK WILL BE CORRECT, UNINTERRUPTED\ + \ OR ERROR-FREE, THAT DEFECTS\n WILL BE CORRECTED, OR THAT THE ADCOLONY PLATFORM OR ADCOLONY\ + \ SDK ARE FREE OF\n VIRUSES OR OTHER HARMFUL COMPONENTS. ADCOLONY DOES NOT WARRANT THE\ + \ RESULTS\n OF USE OF THE ADCOLONY PLATFORM OR ADCOLONY SDK. DEVELOPER ACKNOWLEDGES THAT\n\ + \ ADCOLONY MAY MODIFY OR SUSPEND THE ADCOLONY PLATFORM AT ANY TIME IN ITS SOLE\n DISCRETION\ + \ AND WITHOUT NOTICE.\n\n 11. Indemnification.\n\n 1. Developer Indemnification.\ + \ Developer agrees to indemnify, defend, and\n hold harmless AdColony and its affiliates,\ + \ and their directors,\n officers, employees, and agents from and against any liabilities,\n\ + \ damages, costs and expenses (including reasonable attorneys’ fees)\n arising\ + \ out of any claim, demand, action, or proceeding initiated by a\n third party arising\ + \ from or in connection with any breach of Developer’s\n obligations, representations\ + \ or warranties set forth in this Agreement;\n provided that, AdColony: (a) promptly\ + \ notifies Developer in writing of\n the claim, except that any failure to provide\ + \ this notice promptly only\n relieves Developer of its responsibility to the extent\ + \ its defense is\n materially prejudiced by the delay; (b) grants Developer sole\ + \ control of\n the defense and/or settlement of the claim; and (c) reasonably\n \ + \ cooperates with Developer in connection with such claim at Developer’s\n \ + \ cost and expense.\n\n 2. AdColony Indemnification. AdColony agrees to indemnify,\ + \ reimburse and\n hold harmless, Developer, its officers, directors, employees, and\ + \ agents\n from and against any and all third party claims, liabilities, demands,\n\ + \ causes of action, damages, losses and expenses, including, without\n limitation,\ + \ reasonable attorneys’ fees and costs of suit, arising out of\n or in connection\ + \ with AdColony’s infringement or misappropriation of a\n third party U.S. copyright,\ + \ trademark or trade secret by the use of the\n AdColony Platform and/or the AdColony\ + \ SDK by Developer as permitted\n hereunder; provided that, Developer: (a) promptly\ + \ notifies AdColony in\n writing of the claim, except that any failure to provide\ + \ this notice\n promptly only relieves AdColony of its responsibility to the extent\ + \ its\n defense is materially prejudiced by the delay; (b) grants AdColony sole\n\ + \ control of the defense and/or settlement of the claim; and (c)\n reasonably\ + \ cooperates with AdColony in connection with such claim at\n AdColony’s cost and\ + \ expense. In addition, if the use of the AdColony\n Property by Developer has become,\ + \ or in AdColony’s opinion is likely to\n become, the subject of any claim of infringement,\ + \ AdColony may at its\n option and expense (i) procure for Developer the right to\ + \ continue using\n the AdColony Property as set forth hereunder; (ii) replace or\ + \ modify the\n AdColony Property to make it non- infringing so long as the AdColony\n\ + \ Property has substantially equivalent functionality; or (iii) if options\n \ + \ (i) or (ii) are not reasonably practicable, terminate this Agreement.\n AdColony\ + \ shall have no liability or obligation under this Section with\n respect to any\ + \ claim if such claim is caused in whole or in part by (x)\n compliance with designs,\ + \ data, instructions, or specifications provided\n by Developer; (y) modification\ + \ of the AdColony Property by any party\n other than AdColony without AdColony’s\ + \ express consent; or (z) the\n combination, operation, or use of the AdColony Property\ + \ with other\n applications, portions of applications, product(s), data or services\n\ + \ where the AdColony Property would not by itself be infringing unless\n AdColony\ + \ has required or expressly allowed such combination, operation,\n or use. THE INDEMNIFICATION\ + \ RIGHTS CONTAINED IN THIS SECTION 11 ARE\n DEVELOPER’S SOLE REMEDY FOR THIRD PARTY\ + \ INFRINGEMENT CLAIMS RELATING TO\n ADCOLONY’S SDK AND THE ADCOLONY PLATFORM.\n\n\ + \ 12. Limitation of Liability. EXCEPT WITH RESPECT TO INDEMNIFICATION\n OBLIGATIONS\ + \ HEREIN AND BREACHES OF SECTIONS 2 and 8, NEITHER PARTY SHALL BE\n LIABLE TO OTHER PARTY\ + \ FOR ANY PUNITIVE, INCIDENTAL, INDIRECT, SPECIAL,\n RELIANCE OR CONSEQUENTIAL DAMAGES,\ + \ INCLUDING LOST BUSINESS, DATA, REVENUE,\n OR ANTICIPATED PROFITS, WHETHER BASED ON\ + \ BREACH OF CONTRACT, TORT (INCLUDING\n NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT\ + \ A PARTY WAS ADVISED OF THE\n POSSIBILITY OF SUCH LOSS OR DAMAGES. EXCEPT WITH RESPECT\ + \ TO INDEMNIFICATION\n OBLIGATIONS HEREIN AND BREACHES OF SECTIONS 2 and 8, IN NO EVENT\ + \ WILL EITHER\n PARTY’S AGGREGATE LIABILITY UNDER THIS AGREEMENT EXCEED THE TOTAL DEVELOPER\n\ + \ PAYMENT PAYABLE TO DEVELOPER UNDER THIS AGREEMENT BY ADCOLONY IN THE TWELVE\n (12)\ + \ MONTH PERIOD IMMEDIATELY PRECEDING THE DATE OF THE CLAIM.\n\n 13. General.\n\n \ + \ 1. Relationship of the Parties. Each Party shall be and act as an\n independent\ + \ contractor and not as partner, joint venturer, or agent of\n the other. No party\ + \ shall have any right to obligate or bind any other\n party.\n\n 2. Assignment.\ + \ Neither party may assign any of its rights or obligations\n under this Agreement\ + \ without the prior written consent of the other\n party, except in connection with\ + \ any merger (by operation of law or\n otherwise), consolidation, reorganization,\ + \ change in control or sale of\n all or substantially all of its assets related to\ + \ this Agreement or\n similar transaction. Notwithstanding the foregoing, Developer\ + \ may not\n assign this Agreement to a direct competitor of AdColony without\n \ + \ AdColony’s prior written consent. This Agreement inures to the benefit\n of\ + \ and shall be binding on the parties’ permitted assignees, transferees\n and successors.\n\ + \n 3. Amendments; Waiver. No changes or modifications or waivers are to be\n \ + \ made to this Agreement unless evidenced in writing and signed for and on\n behalf\ + \ of both parties. The failure by either party to insist upon the\n strict performance\ + \ of this Agreement, or to exercise any term hereof,\n will not act as a waiver of\ + \ any right, promise or term, which will\n continue in full force and effect.\n\n\ + \ 4. Governing Law; Jurisdiction. This Agreement shall be governed by, and\n \ + \ construed in accordance with, the laws of the State of California,\n without\ + \ reference to conflicts of laws principles. The parties agree\n that the federal\ + \ and state courts in Los Angeles County, California will\n have exclusive jurisdiction\ + \ and venue under this Agreement, and the\n parties hereby agree to submit to such\ + \ jurisdiction exclusively.\n\n 5. Entire Agreement. This Agreement contains the\ + \ entire understanding of\n the parties regarding its subject matter and supersedes\ + \ all other\n agreements and understandings, whether oral or written." + json: adcolony-tos-2022.json + yaml: adcolony-tos-2022.yml + html: adcolony-tos-2022.html + license: adcolony-tos-2022.LICENSE - license_key: addthis-mobile-sdk-1.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-addthis-mobile-sdk-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "License Agreement\nADDTHIS MOBILE APPLICATION SDK LICENSE AGREEMENT\n\nPLEASE READ\ + \ THIS CAREFULLY. IF YOU DO NOT AGREE THESE TERMS, YOU ARE NOT AUTHORIZED TO DOWNLOAD OR\ + \ USE THIS SDK.\n\nTHIS ADDTHIS MOBILE APPLICATION SDK LICENSE AGREEMENT (THIS \"AGREEMENT\"\ + ) IS A LEGAL AGREEMENT BETWEEN CLEARSPRING TECHNOLOGIES, INC (\"CLEARSPRING\" OR \"WE\"\ + ) AND YOU INDIVIDUALLY IF YOU ARE AGREEING TO IT IN YOUR PERSONAL CAPACITY, OR IF YOU ARE\ + \ AUTHORIZED TO DOWNLOAD THE SDK ON BEHALF OF YOUR COMPANY OR ORGANIZATION, BETWEEN THE\ + \ ENTITY FOR WHOSE BENEFIT YOU ACT (\"YOU\"). CLEARSPRING OWNS AND OPERATES THE ADDTHIS\ + \ SHARING PLATFORM.\n\nBY DOWNLOADING, INSTALLING, ACTIVATING OR USING THE SDK, YOU ARE\ + \ AGREEING TO BE BOUND BY THE TERMS OF THIS AGREEMENT. IF YOU HAVE ANY QUESTIONS OR CONCERNS\ + \ ABOUT THE TERMS OF THIS AGREEMENT, PLEASE CONTACT US AT SUPPORT@ADDTHIS.COM.\n\nThis Agreement\ + \ governs your access to, and use of, our proprietary software and associated application\ + \ programming interface for use with mobile applications, as well as any related materials,\ + \ including installation tools, sample code, source code, software libraries and documentation\ + \ and any error corrections, updates, or new releases that we elect, in our sole discretion,\ + \ to make available to you (all such materials, collectively, the \"SDK\").\n\nThis Agreement\ + \ hereby incorporates by reference the terms and conditions of the AddThis terms of service\ + \ (http://www.addthis.com/tos), including, but not limited to, Sections 4, 6, 8 and 12 through\ + \ 22. For purposes of those terms of service, the SDK will be considered part of \"Our Technology\"\ + \ and Clearspring's provision of the SDK will constitute one of the Services we provide.\n\ + \n1.\tLicense. Subject to the terms and conditions of this Agreement, Clearspring hereby\ + \ grants you a non-exclusive, non-transferable, non-sublicenseable, royalty-free right and\ + \ license to copy and use the SDK solely for the purpose of adding the AddThis functionality\ + \ into your mobile application in accordance with the documentation. You acknowledge and\ + \ agree that you have no rights to any upgrades, modifications, enhancements or revisions\ + \ that Clearspring may make to the SDK. You agree that we have no obligation to provide\ + \ any support or engineering assistance of any sort unless we otherwise agree in writing.\n\ + \n2.\tRestrictions. You may not use the SDK to: (i) design or develop anything other than\ + \ a mobile application that contains the AddThis functionality; (ii) make any more copies\ + \ of the SDK than are reasonably necessary for your authorized use thereof; (iii) modify,\ + \ create derivative works of, reverse engineer, reverse compile, or disassemble the SDK\ + \ or any portion thereof; (iv) distribute, publish, sell, transfer, assign, lease, rent,\ + \ lend, or sublicense either in whole or part the SDK to any third party except as may specifically\ + \ be permitted in Section 3 herein; (v) redistribute any component of the SDK except as\ + \ set forth in Section 3 herein, or (vi) remove or otherwise obfuscate any proprietary notices\ + \ or labels from the SDK. You may not use the SDK except in accordance with applicable laws\ + \ and regulations, nor may you export the SDK from and outside the United States of America\ + \ except as permitted under the applicable laws and regulations of the United Sates of America.\ + \ You may not use the SDK to defraud any third party or to distribute obscene or other unlawful\ + \ materials or information.\n\n3.\tCopyright Notice. You must include all copyright and\ + \ other proprietary rights notices that accompany the SDK in any copies that you produce.\n\ + \n4.\tProprietary Rights. Subject always to our ownership of the SDK, you will be the sole\ + \ and exclusive owner of any software application developed using the SDK, excluding the\ + \ SDK and any portions thereof.\n\n5.\tConfidential Information. You will safeguard, protect,\ + \ respect, and maintain as confidential the SDK, the underlying computer code to which you\ + \ may obtain or receive access, and the functional or technical design, logic, or other\ + \ internal routines or workings of the SDK, which are considered confidential and proprietary\ + \ to Clearspring.\n\nVersion 1.0 – April 4, 2011" json: addthis-mobile-sdk-1.0.json - yml: addthis-mobile-sdk-1.0.yml + yaml: addthis-mobile-sdk-1.0.yml html: addthis-mobile-sdk-1.0.html - text: addthis-mobile-sdk-1.0.LICENSE + license: addthis-mobile-sdk-1.0.LICENSE - license_key: adi-bsd + category: Permissive spdx_license_key: LicenseRef-scancode-adi-bsd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 Analog Devices, Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + - The use of this software may or may not infringe the patent rights + of one or more patent holders. This license does not release you + from the requirement that you obtain separate licenses from these + patent holders to use this software. + + THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES "AS IS" AND ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, NON-INFRINGEMENT, + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + IN NO EVENT SHALL ANALOG DEVICES BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + BUT NOT LIMITED TO, INTELLECTUAL PROPERTY RIGHTS, 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 json: adi-bsd.json - yml: adi-bsd.yml + yaml: adi-bsd.yml html: adi-bsd.html - text: adi-bsd.LICENSE + license: adi-bsd.LICENSE - license_key: adobe-acrobat-reader-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-adobe-acrobat-reader-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Adobe Acrobat Reader EULA\nADOBE\n\nEnd User License Agreement\n\nPlease return any\ + \ accompanying registration form to receive registration benefits.\n\nNOTICE TO USER: PLEASE\ + \ READ THIS CONTRACT CAREFULLY. BY USING ALL OR ANY PORTION OF THE SOFTWARE YOU ACCEPT\ + \ ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT, INCLUDING, IN PARTICULAR THE LIMITATIONS\ + \ ON: USE CONTAINED IN SECTION 2; TRANSFERABILITY IN SECTION 4; WARRANTY IN SECTION 6 AND\ + \ 7; AND LIABILITY IN SECTION 8. YOU AGREE THAT THIS AGREEMENT IS ENFORCEABLE LIKE ANY WRITTEN\ + \ NEGOTIATED AGREEMENT SIGNED BY YOU. IF YOU DO NOT AGREE, DO NOT USE THIS SOFTWARE. IF\ + \ YOU ACQUIRED THE SOFTWARE ON TANGIBLE MEDIA (e.g. CD) WITHOUT AN OPPORTUNITY TO REVIEW\ + \ THIS LICENSE AND YOU DO NOT ACCEPT THIS AGREEMENT, YOU MAY OBTAIN A REFUND OF THE AMOUNT\ + \ YOU ORIGINALLY PAID IF YOU: (A) DO NOT USE THE SOFTWARE AND (B) RETURN IT, WITH PROOF\ + \ OF PAYMENT, TO THE LOCATION FROM WHICH IT WAS OBTAINED WITHIN THIRTY (30) DAYS OF THE\ + \ PURCHASE DATE.\n\n\n1. Definitions. \"Software\" means (a) all of the contents of the\ + \ files, disk(s), CD-ROM(s) or other media with which this Agreement is provided, including\ + \ but not limited to (i) Adobe or third party computer information or software; (ii) digital\ + \ images, stock photographs, clip art, sounds or other artistic works (\"Stock Files\");\ + \ (iii) related explanatory written materials or files (\"Documentation\"); and (iv) fonts;\ + \ and (b) upgrades, modified versions, updates, additions, and copies of the Software, if\ + \ any, licensed to you by Adobe (collectively, \"Updates\"). \"Use\" or \"Using\" means\ + \ to access, install, download, copy or otherwise benefit from using the functionality of\ + \ the Software in accordance with the Documentation. \"Permitted Number\" means one (1)\ + \ unless otherwise indicated under a valid license (e.g. volume license) granted by Adobe.\ + \ \"Computer\" means an electronic device that accepts information in digital or similar\ + \ form and manipulates it for a specific result based on a sequence of instructions. \"\ + Adobe\" means Adobe Systems Incorporated, a Delaware corporation, 345 Park Avenue, San Jose,\ + \ California 95110, if subsection 10(a) of this Agreement applies; otherwise it means Adobe\ + \ Systems Benelux BV, Europlaza, Hoogoorddreef 54a, 1101 BE Amsterdam ZO, the Netherlands,\ + \ a company organized under the laws of the Netherlands and an affiliate and licensee of\ + \ Adobe Systems Incorporated.\n\n\n2. Software License. As long as you comply with the\ + \ terms of this End User License Agreement (the \"Agreement\"), Adobe grants to you a non-exclusive\ + \ license to Use the Software for the purposes described in the Documentation. Some third\ + \ party materials included in the Software may be subject to other terms and conditions,\ + \ which are typically found in a \"Read Me\" file located near such materials.\n\n2.1. \ + \ General Use. You may install and Use a copy of the Software on your compatible computer,\ + \ up to the Permitted Number of computers; or\n\n2.2. Server Use. You may install one\ + \ copy of the Software on your computer file server for the purpose of downloading and installing\ + \ the Software onto other computers within your internal network up to the Permitted Number\ + \ or you may install one copy of the Software on a computer file server within your internal\ + \ network for the sole and exclusive purpose of using the Software through commands, data\ + \ or instructions (e.g. scripts) from an unlimited number of computers on your internal\ + \ network. No other network use is permitted, including but not limited to, using the Software\ + \ either directly or through commands, data or instructions from or to a computer not part\ + \ of your internal network, for internet or web hosting services or by any user not licensed\ + \ to use this copy of the Software through a valid license from Adobe; and\n\n2.3. Backup\ + \ Copy. You may make one backup copy of the Software, provided your backup copy is not\ + \ installed or used on any computer. You may not transfer the rights to a backup copy unless\ + \ you transfer all rights in the Software as provided under Section 4.\n\n2.4. Home Use.\ + \ You, as the primary user of the computer on which the Software is installed, may also\ + \ install the Software on one of your home computers. However, the Software may not be used\ + \ on your home computer at the same time the Software on the primary computer is being used.\n\ + \n2.5. Stock Files. Unless stated otherwise in the \"Read-Me\" files associated with the\ + \ Stock Files, which may include specific rights and restrictions with respect to such materials,\ + \ you may display, modify, reproduce and distribute any of the Stock Files included with\ + \ the Software. However, you may not distribute the Stock Files on a stand-alone basis,\ + \ i.e., in circumstances in which the Stock Files constitute the primary value of the product\ + \ being distributed. Stock Files may not be used in the production of libelous, defamatory,\ + \ fraudulent, lewd, obscene or pornographic material or any material that infringes upon\ + \ any third party intellectual property rights or in any otherwise illegal manner. You\ + \ may not claim any trademark rights in the Stock Files or derivative works thereof.\n\n\ + 2.6. Font Software. If the Software includes font software - \n\n2.6.1. You may Use the\ + \ font software as described above on the Permitted Number of computers and output such\ + \ font software on any output devices connected to such computers. \n\n2.6.2. If the Permitted\ + \ Number of computers is five or fewer, you may download the font software to the memory\ + \ (hard disk or RAM) of one output device connected to at least one of such computers for\ + \ the purpose of having such font software remain resident in the output device, and of\ + \ one additional such output device for every multiple of five represented by the Permitted\ + \ Number of computers. \n\n2.6.3. You may take a copy of the font(s) you have used for a\ + \ particular file to a commercial printer or other service bureau, and such service bureau\ + \ may Use the font(s) to process your file, provided such service bureau has a valid license\ + \ to Use that particular font software. \n\n2.6.4. You may convert and install the font\ + \ software into another format for use in other environments, subject to the following conditions:\ + \ A computer on which the converted font software is used or installed shall be considered\ + \ as one of your Permitted Number of computers. Use of the font software you have converted\ + \ shall be pursuant to all the terms and conditions of this Agreement. Such converted font\ + \ software may be used only for your own customary internal business or personal use and\ + \ may not be distributed or transferred for any purpose, except in accordance with the Transfer\ + \ section below. \n\n2.6.5 You may embed the font software, or outlines of the font software,\ + \ into your electronic documents to the extent that the font vendor copyright owner allows\ + \ for such embedding. The fonts contained in this package may contain both Adobe and non-Adobe\ + \ owned fonts. You may fully embed any font owned by Adobe. Refer to the font sample sheet\ + \ or font information file to determine font ownership. See the Documentation for location\ + \ and information on how to access these sheets and files.\n\n2.7 To the extent that the\ + \ Software includes Adobe Acrobat Reader software, (i) you may customize the installer for\ + \ such software in accordance with the restrictions found at www.adobe.com (e.g., installation\ + \ of additional plug-in and help files); however, you may not otherwise alter or modify\ + \ the installer program or create a new installer for any of such software, (ii) such software\ + \ is licensed and distributed by Adobe for viewing, distributing and sharing PDF files,\ + \ and (iii) you are not authorized to use any plug-in or enhancement that permits you to\ + \ save modifications to a PDF file with such software; however, such use is authorized with\ + \ Adobe Acrobat, Adobe Acrobat Business Tools, and other current and future Adobe products\ + \ that feature the creation or manipulation of PDF files. For information on how to distribute\ + \ Adobe Acrobat( Reader( and Adobe SVG Viewer please refer to the sections entitled \"How\ + \ to Distribute Acrobat Reader\" and \"How to Distribute SVG Viewer\" at www.adobe.com.\ + \ \n\n\n3. Intellectual Property Rights. The Software and any copies that you are authorized\ + \ by Adobe to make are the intellectual property of and are owned by Adobe Systems Incorporated\ + \ and its suppliers. The structure, organization and code of the Software are the valuable\ + \ trade secrets and confidential information of Adobe Systems Incorporated and its suppliers.\ + \ The Software is protected by copyright, including without limitation by United States\ + \ Copyright Law, international treaty provisions and applicable laws in the country in which\ + \ it is being used. You may not copy the Software, except as set forth in Section 2 (\"\ + Software License\"). Any copies that you are permitted to make pursuant to this Agreement\ + \ must contain the same copyright and other proprietary notices that appear on or in the\ + \ Software. Except for font software converted to other formats as permitted in section\ + \ 2.6.4, you agree not to modify, adapt or translate the Software.You also agree not to\ + \ reverse engineer, decompile, disassemble or otherwise attempt to discover the source code\ + \ of the Software except to the extent you may be expressly permitted to decompile under\ + \ applicable law, it is essential to do so in order to achieve operability of the Software\ + \ with another software program, and you have first requested Adobe to provide the information\ + \ necessary to achieve such operability and Adobe has not made such information available.\ + \ Adobe has the right to impose reasonable conditions and to request a reasonable fee before\ + \ providing such information. Any information supplied by Adobe or obtained by you, as permitted\ + \ hereunder, may only be used by you for the purpose described herein and may not be disclosed\ + \ to any third party or used to create any software which is substantially similar to the\ + \ expression of the Software. Requests for information should be directed to the Adobe Customer\ + \ Support Department. Trademarks shall be used in accordance with accepted trademark practice,\ + \ including identification of trademarks owners' names. Trademarks can only be used to identify\ + \ printed output produced by the Software and such use of any trademark does not give you\ + \ any rights of ownership in that trademark. Except as expressly stated above, this Agreement\ + \ does not grant you any intellectual property rights in the Software. \n\n\n4. Transfer.\ + \ You may not, rent, lease, sublicense or authorize all or any portion of the Software to\ + \ be copied onto another users computer except as may be expressly permitted herein. You\ + \ may, however, transfer all your rights to Use the Software to another person or legal\ + \ entity provided that: (a) you also transfer each this Agreement, the Software and all\ + \ other software or hardware bundled or pre-installed with the Software, including all copies,\ + \ Updates and prior versions, and all copies of font software converted into other formats,\ + \ to such person or entity; (b) you retain no copies, including backups and copies stored\ + \ on a computer; and (c) the receiving party accepts the terms and conditions of this Agreement\ + \ and any other terms and conditions upon which you legally purchased a license to the Software.\ + \ Notwithstanding the foregoing, you may not transfer education, pre-release, or not for\ + \ resale copies of the Software. \n\n\n5. Multiple Environment Software / Multiple Language\ + \ Software / Dual Media Software / Multiple Copies/ Bundles / Updates. If the Software supports\ + \ multiple platforms or languages, if you receive the Software on multiple media, if you\ + \ otherwise receive multiple copies of the Software, or if you received the Software bundled\ + \ with other software, the total number of your computers on which all versions of the Software\ + \ are installed may not exceed the Permitted Number. You may not, rent, lease, sublicense,\ + \ lend or transfer any versions or copies of such Software you do not Use. If the Software\ + \ is an Update to a previous version of the Software, you must possess a valid license to\ + \ such previous version in order to Use the Update. You may continue to Use the previous\ + \ version of the Software on your computer after you receive the Update to assist you in\ + \ the transition to the Update, provided that: the Update and the previous version are installed\ + \ on the same computer; the previous version or copies thereof are not transferred to another\ + \ party or computer unless all copies of the Update are also transferred to such party or\ + \ computer; and you acknowledge that any obligation Adobe may have to support the previous\ + \ version of the Software may be ended upon availability of the Update. \n\n\n6. NO WARRANTY.\ + \ The Software is being delivered to you \"AS IS\" and Adobe makes no warranty as to its\ + \ use or performance. ADOBE AND ITS SUPPLIERS DO NOT AND CANNOT WARRANT THE PERFORMANCE\ + \ OR RESULTS YOU MAY OBTAIN BY USING THE SOFTWARE. EXCEPT FOR ANY WARRANTY, CONDITION,\ + \ REPRESENTATION OR TERM TO THE EXTENT TO WHICH THE SAME CANNOT OR MAY NOT BE EXCLUDED OR\ + \ LIMITED BY LAW APPLICABLE TO YOU IN YOUR JURISDICTION, ADOBE AND ITS SUPPLIERS MAKE NO\ + \ WARRANTIES CONDITIONS, REPRESENTATIONS, OR TERMS (EXPRESS OR IMPLIED WHETHER BY STATUTE,\ + \ COMMON LAW, CUSTOM, USAGE OR OTHERWISE) AS TO ANY MATTER INCLUDING WITHOUT LIMITATION\ + \ NONINFRINGEMENT OF THIRD PARTY RIGHTS, MERCHANTABILITY, INTEGRATION, SATISFACTORY QUALITY,\ + \ OR FITNESS FOR ANY PARTICULAR PURPOSE. \n\n\n7. Pre-release Product Additional Terms.\ + \ If the product you have received with this license is pre-commercial release or beta\ + \ Software (\"Pre-release Software\"), then the following Section applies. To the extent\ + \ that any provision in this Section is in conflict with any other term or condition in\ + \ this Agreement, this Section shall supercede such other term(s) and condition(s) with\ + \ respect to the Pre-release Software, but only to the extent necessary to resolve the conflict.\ + \ You acknowledge that the Software is a pre-release version, does not represent final product\ + \ from Adobe, and may contain bugs, errors and other problems that could cause system or\ + \ other failures and data loss. Consequently, the Pre-release Software is provided to you\ + \ \"AS-IS\", and Adobe disclaims any warranty or liability obligations to you of any kind.\ + \ WHERE LEGALLY LIABILITY CANNOT BE EXCLUDED FOR PRE-RELEASE SOFTWARE, BUT IT MAY BE LIMITED,\ + \ ADOBE'S LIABILITY AND THAT OF ITS SUPPLIERS SHALL BE LIMITED TO THE SUM OF FIFTY DOLLARS\ + \ (U.S. $50) IN TOTAL. You acknowledge that Adobe has not promised or guaranteed to you\ + \ that Pre-release Software will be announced or made available to anyone in the future,\ + \ that Adobe has no express or implied obligation to you to announce or introduce the Pre-release\ + \ Software and that Adobe may not introduce a product similar to or compatible with the\ + \ Pre-release Software. Accordingly, you acknowledge that any research or development that\ + \ you perform regarding the Pre-release Software or any product associated with the Pre-release\ + \ Software is done entirely at your own risk. During the term of this Agreement, if requested\ + \ by Adobe, you will provide feedback to Adobe regarding testing and use of the Pre-release\ + \ Software, including error or bug reports. If you have been provided the Pre-release Software\ + \ pursuant to a separate written agreement, such as the Adobe Systems Incorporated Serial\ + \ Agreement for Unreleased Products, your use of the Software is also governed by such agreement.\ + \ You agree that you may not and certify that you will not sublicense, lease, loan, rent,\ + \ or transfer the Pre-release Software. Upon receipt of a later unreleased version of the\ + \ Pre-release Software or release by Adobe of a publicly released commercial version of\ + \ the Software, whether as a stand-alone product or as part of a larger product, you agree\ + \ to return or destroy all earlier Pre-release Software received from Adobe and to abide\ + \ by the terms of the End User License Agreement for any such later versions of the Pre-release\ + \ Software. Notwithstanding anything in this Section to the contrary, if you are located\ + \ outside the United States of America, you agree that you will return or destroy all unreleased\ + \ versions of the Pre-release Software within thirty (30) days of the completion of your\ + \ testing of the Software when such date is earlier than the date for Adobe's first commercial\ + \ shipment of the publicly released (commercial) Software.\n\n\n8. LIMITATION OF LIABILITY.\ + \ IN NO EVENT WILL ADOBE OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY DAMAGES, CLAIMS OR COSTS\ + \ WHATSOEVER OR ANY CONSEQUENTIAL, INDIRECT, INCIDENTAL DAMAGES, OR ANY LOST PROFITS OR\ + \ LOST SAVINGS, EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\ + \ LOSS, DAMAGES, CLAIMS OR COSTS OR FOR ANY CLAIM BY ANY THIRD PARTY. THE FOREGOING LIMITATIONS\ + \ AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION. \ + \ ADOBE'S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS\ + \ AGREEMENT SHALL BE LIMITED TO THE AMOUNT PAID FOR THE SOFTWARE, IF ANY. Nothing contained\ + \ in this Agreement limits Adobe's liability to you in the event of death or personal injury\ + \ resulting from Adobe's negligence or for the tort of deceit (fraud). Adobe is acting on\ + \ behalf of its suppliers for the purpose of disclaiming, excluding and/or limiting obligations,\ + \ warranties and liability as provided in this Agreement, but in no other respects and for\ + \ no other purpose. For further information, please see the jurisdiction specific information\ + \ at the end of this Agreement, if any, or contact Adobe's Customer Support Department.\n\ + \n\n9. Export Rules. You agree that the Software will not be shipped, transferred or exported\ + \ into any country or used in any manner prohibited by the United States Export Administration\ + \ Act or any other export laws, restrictions or regulations (collectively the \"Export Laws\"\ + ). In addition, if the Software is identified as export controlled items under the Export\ + \ Laws, you represent and warrant that you are not a citizen, or otherwise located within,\ + \ an embargoed nation (including without limitation Iran, Iraq, Syria, Sudan, Libya, Cuba,\ + \ North Korea, and Serbia) and that you are not otherwise prohibited under the Export Laws\ + \ from receiving the Software. All rights to Use the Software are granted on condition\ + \ that such rights are forfeited if you fail to comply with the terms of this Agreement.\n\ + \n\n10. Governing Law. This Agreement will be governed by and construed in accordance with\ + \ the substantive laws in force: (a) in the State of California, if a license to the Software\ + \ is purchased when you are in the United States, Canada, or Mexico; or (b) in Japan, if\ + \ a license to the Software is purchased when you are in Japan, China, Korea, R.O.C, or\ + \ other Southeast Asian country where all official languages are written in either an ideographic\ + \ script (e.g., hanzi, kanji, or hanja), and/or other script based upon or similar in structure\ + \ to an ideographic script, such as hangul or kana; or (c) the Netherlands, if a license\ + \ to the Software is purchased when you are in any other jurisdiction not described above.\ + \ The respective courts of Santa Clara County, California when California law applies, Tokyo\ + \ District Court in Japan, when Japanese law applies, and the courts of Amsterdam, the Netherlands,\ + \ when the law of the Netherlands applies, shall each have non-exclusive jurisdiction over\ + \ all disputes relating to this Agreement. This Agreement will not be governed by the conflict\ + \ of law rules of any jurisdiction or the United Nations Convention on Contracts for the\ + \ International Sale of Goods, the application of which is expressly excluded. \n\n\n11.\ + \ General Provisions. If any part of this Agreement is found void and unenforceable, it\ + \ will not affect the validity of the balance of the Agreement, which shall remain valid\ + \ and enforceable according to its terms. This Agreement shall not prejudice the statutory\ + \ rights of any party dealing as a consumer. This Agreement may only be modified by a writing\ + \ signed by an authorized officer of Adobe. Updates may be licensed to you by Adobe with\ + \ additional or different terms. This is the entire agreement between Adobe and you relating\ + \ to the Software and it supersedes any prior representations, discussions, undertakings,\ + \ communications or advertising relating to the Software. \n\n\n12. Notice to U.S. Government\ + \ End Users. The Software and Documentation are \"Commercial Items,\" as that term is defined\ + \ at 48 C.F.R. ß2.101, consisting of \"Commercial Computer Software\" and \"Commercial Computer\ + \ Software Documentation,\" as such terms are used in 48 C.F.R. ß12.212 or 48 C.F.R. ß227.7202,\ + \ as applicable. Consistent with 48 C.F.R. ß12.212 or 48 C.F.R. ßß227.7202-1 through 227.7202-4,\ + \ as applicable, the Commercial Computer Software and Commercial Computer Software Documentation\ + \ are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with\ + \ only those rights as are granted to all other end users pursuant to the terms and conditions\ + \ herein. Unpublished-rights reserved under the copyright laws of the United States. Adobe\ + \ Systems Incorporated, 345 Park Avenue, San Jose, CA 95110-2704, USA. For U.S. Government\ + \ End Users, Adobe agrees to comply with all applicable equal opportunity laws including,\ + \ if appropriate, the provisions of Executive Order 11246, as amended, Section 402 of the\ + \ Vietnam Era Veterans Readjustment Assistance Act of 1974 (38 USC 4212), and Section 503\ + \ of the Rehabilitation Act of 1973, as amended, and the regulations at 41 CFR Parts 60-1\ + \ through 60-60, 60-250, and 60-741. The affirmative action clause and regulations contained\ + \ in the preceding sentence shall be incorporated by reference in this Agreement.\n\n\n\ + 13. Compliance with Licenses. If you are a business or organisation, you agree that upon\ + \ request from Adobe or Adobe's authorised representative, you will within thirty (30) days\ + \ fully document and certify that use of any and all Adobe Software at the time of the request\ + \ is in conformity with your valid licenses from Adobe.\n\n\nIf you have any questions regarding\ + \ this Agreement or if you wish to request any information from Adobe please use the address\ + \ and contact information included with this product to contact the Adobe office serving\ + \ your jurisdiction. \n\nAdobe, Acrobat, Acrobat Reader, and After Effects are either registered\ + \ trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other\ + \ countries.\n\nSVGReader_WWEULA_English_01.15.01_11:15" json: adobe-acrobat-reader-eula.json - yml: adobe-acrobat-reader-eula.yml + yaml: adobe-acrobat-reader-eula.yml html: adobe-acrobat-reader-eula.html - text: adobe-acrobat-reader-eula.LICENSE + license: adobe-acrobat-reader-eula.LICENSE - license_key: adobe-air-sdk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-adobe-air-sdk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Adobe AIR SDK License\nhttp://www.adobe.com/products/eulas/\n\nADOBE SYSTEMS INCORPORATED\ + \ \nWARRANTY DISCLAIMER AND LICENSE AGREEMENT \nADOBE® AIR® SDK\n\nNOTICE TO USER: THIS\ + \ DOCUMENT INCLUDES A WARRANTY DISCLAIMER (PART I) AND AN SDK LICENSE AGREEMENT (PART II).\n\ + PART I. WARRANTY DISCLAIMER AND LIABILITY LIMITATION\nAdobe provides the SDK Components\ + \ (defined below) to you \"AS IS.\" ADOBE AND ITS SUPPLIERS DISCLAIM ANY EXPRESS, IMPLIED,\ + \ OR STATUTORY WARRANTY OF ANY KIND WITH RESPECT TO THE SDK COMPONENTS INCLUDING, BUT NOT\ + \ LIMITED TO, ANY WARRANTY WITH REGARD TO PERFORMANCE, MERCHANTABILITY, SATISFACTORY QUALITY,\ + \ NONINFRINGEMENT OR FITNESS FOR ANY PARTICULAR PURPOSE. YOU BEAR THE ENTIRE RISK AS TO\ + \ THE QUALITY AND PERFORMANCE OF THE SDK COMPONENTS. The foregoing exclusions and limitations\ + \ will apply to the maximum extent permitted by applicable law, even if any remedy fails\ + \ its essential purpose.\nIN NO EVENT WILL ADOBE OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY\ + \ DAMAGES, CLAIMS OR COSTS WHATSOEVER ARISING FROM THE SDK COMPONENTS OR YOUR USE OF THE\ + \ SDK COMPONENTS, INCLUDING WITHOUT LIMITATION ANY CONSEQUENTIAL, INDIRECT, INCIDENTAL DAMAGES,\ + \ OR ANY LOST PROFITS OR LOST SAVINGS, EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS OR FOR ANY CLAIM BY ANY THIRD\ + \ PARTY. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE\ + \ LAW IN YOUR JURISDICTION. IN ANY EVENT, ADOBE'S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS\ + \ UNDER OR IN CONNECTION WITH THE SDK COMPONENTS WILL BE LIMITED TO TEN U.S. DOLLARS. Nothing\ + \ limits liability to you in the event of death or personal injury resulting from negligence\ + \ or for the tort of deceit (fraud). Adobe is acting on behalf of its suppliers for the\ + \ purpose of disclaiming, excluding and/or limiting obligations, warranties and liability,\ + \ but in no other respects and for no other purpose.\n\nPART II. SDK LICENSE AGREEMENT\n\ + ADOBE SOFTWARE DEVELOPMENT KIT LICENSE AGREEMENT ADOBE AIR\nNOTICE TO USER: THIS LICENSE\ + \ AGREEMENT GOVERNS INSTALLATION AND USE OF THE SDK COMPONENTS (AS DEFINED BELOW). YOU AGREE\ + \ THAT THIS AGREEMENT IS LIKE ANY WRITTEN NEGOTIATED AGREEMENT SIGNED BY YOU. BY DOWNLOADING,\ + \ INSTALLING, COPYING, MODIFYING OR DISTRIBUTING ANY SDK COMPONENT, YOU ACCEPT ALL OF THE\ + \ TERMS AND CONDITIONS OF THIS AGREEMENT. THIS AGREEMENT IS ENFORCEABLE AGAINST YOU AND\ + \ ANY LEGAL ENTITY THAT OBTAINED THE SDK COMPONENTS AND ON WHOSE BEHALF THEY ARE USED: FOR\ + \ EXAMPLE, YOUR EMPLOYER. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, DO NOT USE\ + \ THE SDK COMPONENTS.\nYOU MAY HAVE A SEPARATE WRITTEN AGREEMENT WITH ADOBE THAT SUPPLEMENTS\ + \ OR SUPERSEDES ALL OR PORTIONS OF THIS AGREEMENT.\nUse of some third party materials included\ + \ in the SDK Components may be subject to other terms and conditions typically found in\ + \ a separate license agreement or a \"Read Me\" file located near such materials or in the\ + \ \"Third Party Software Notices and/or Additional Terms and Conditions\" found at http://www.adobe.com/go/thirdparty.\n\ + \n1.\tDEFINITIONS. \n\"Adobe\" means Adobe Systems Incorporated, a Delaware corporation,\ + \ 345 Park Avenue, San Jose, California 95110.\n\"Build Tools\" means build files, compilers,\ + \ runtime libraries (but not the complete Runtime Software), and other tools accompanying\ + \ this agreement, including, for example, the contents of the Bin, Lib, and runtime directories,\ + \ adl.exe, adl.bat, and adt.jar.\n\"Developer Application\" means your application software\ + \ that interoperates with the Runtime Software and complies with the requirements of this\ + \ Agreement, for example, Section 4.1.\n\"Documentation\" means the written materials accompanying\ + \ this agreement, including, for example, technical specifications, file format documentation\ + \ and application programming interface (API) information.\n\"Effective Date\" means the\ + \ date that you download or otherwise access the SDK Components. \"Material Improvement\"\ + \ means perceptible, measurable and definable improvements that provide extended or\nadditional\ + \ significant and primary functionality that adds significant business value.\n\"Runtime\ + \ Components\" means any of the individual files, libraries, or executable code contained\ + \ in the Runtime Software installation directory (e.g., the \"Adobe AIR\" and \"Adobe AIR\ + \ Framework\" folders) or the Runtime Software utilities included in the utilities directory\ + \ or installer files. Runtime.dll, Runtime executables, template.exe, and template.app are\ + \ examples of Runtime Components.\n\"Runtime Software\" means the Adobe runtime software\ + \ in object code format named \"Adobe AIR\" that is to be installed by end-users, and all\ + \ updates to such software made available by Adobe.\n\"SDK Components\" means the Build\ + \ Tools, Documentation, Sample Code and SDK Source Files. \"SDK Source Files\" means framework\ + \ source code files that accompany this agreement.\n\"Sample Code\" means sample software\ + \ in source code or object code format designated in the Documentation or directories as\ + \ \"sample code,\" \"samples,\" \"sample application code,\" \"quickstart code\" or \"snippets.\"\ + \n\n2. License. Subject to the terms and conditions of this agreement, including the requirements\ + \ and restrictions below, Adobe grants you the non-exclusive, non-transferable right to\ + \ use the SDK Components in accordance with the Documentation as follows:\n2.1 Installation,\ + \ Use and Copying. You may install and use the Build Tools solely for purpose of developing\ + \ compliant Developer Applications. You may make a limited and reasonable number of copies\ + \ of the SDK Components for purposes of your internal development of Developer Applications.\n\ + 2.2 Modification. You may modify the Sample Code and SDK Source Files provided to you in\ + \ human readable (i.e., source code) format. You may incorporate the modified Sample Code\ + \ and SDK Source Files into your Developer Applications. You may not modify the Build Tools,\ + \ Documentation or the Runtime Software in any manner. You may not delete or in any manner\ + \ alter the copyright notices, trademarks, logos or related notices, or other proprietary\ + \ rights notices of Adobe (and its licensors, if any) appearing on or within any of the\ + \ SDK Components other than Sample Code or SDK Source Files that are substantially modified\ + \ by you in accordance with this agreement.\n2.3 Distribution. (a) Distribution Rights.\ + \ Subject to the provisions of this agreement, including the requirements and restrictions\n\ + below, you may copy and distribute the Sample Code and SDK Source Files as follows:\n(i)\ + \ Distribution with Developer Application. You may distribute Sample Code and SDK Source\ + \ Files in source code, object code, modified or unmodified form, in all cases incorporated\ + \ into your Developer Application; and\n(ii) Distribution of Sample Code Stand-alone.\t\ + You may distribute Sample Code (but not SDK Source Files) in source code or object code\ + \ format on a stand-alone basis or as bundled with other software, as long as you first\ + \ make modifications to such code that result in Material Improvements; and\n(iii) Distribution\ + \ of SDK Source Files. You may distribute SDK Source Files (but not the Sample Code) in\ + \ source code or object code format on a stand-alone basis or as bundled with other components\ + \ useful to developers, as long as you first make modifications to such files that result\ + \ in Material Improvements, and provided that you (A) include a copyright notice reflecting\ + \ copyright ownership in such modified files, and (B) do not use \"mx,\" \"mxml,\" \"flex,\"\ + \ \"flash,\" or \"adobe\" in any new package or class names distributed with the SDK Source\ + \ Files.\n(iv) Distribution of Build Tools. This agreement does not grant you the right\ + \ to distribute the Documentation, Build Tools or Runtime Software. For information about\ + \ obtaining the right to distribute such components with your product or service please\ + \ refer to http://www.adobe.com/go/redistributeairsdk.\n(b) Distribution Requirements. If\ + \ you distribute the Sample Code or SDK Source Files under this agreement, you must include\ + \ a copyright notice in such code, files, the relevant Developer Application or other larger\ + \ work incorporating such code or files. You may not (i) make any statement that any Developer\ + \ Application or other software is \"certified\" or otherwise guaranteed by Adobe or (ii)\ + \ use Adobe’s name or trademarks to market any Developer Application or other software without\ + \ written permission from Adobe. Adobe is not responsible to you or any other party for\ + \ any software update or support or other liability that may arise from your distribution.\n\ + \n3. Indemnification. You agree to hold Adobe harmless from any and all liabilities, losses,\ + \ actions, damages or claims (including product liability, warranty and intellectual property\ + \ claims, and all reasonable expenses, costs and attorneys fees) arising out of or relating\ + \ to your distribution of any SDK Component or Developer Application; provided that Adobe\ + \ cooperates with you, at your expense, in resolving any such claim.\n4. Development Requirements\ + \ and Restrictions.\n4.1 Development. You shall not create or distribute any software, including,\ + \ without limitation, any Developer Application, that interoperates with individual Runtime\ + \ Components in a manner not documented by Adobe. You shall not create or distribute any\ + \ software, including, without limitation, any Developer Application, that is designed to\ + \ interoperate with an un-installed instance of the Runtime Software. You shall not create\ + \ or distribute any Developer Application that runs without installation. You are not permitted\ + \ to install or use the Build Tools or other SDK Components to develop software prohibited\ + \ by this Section 4.1. Failure to comply with this Section 4.1 is a breach of this agreement\ + \ that immediately terminates all rights granted to you herein.\n4.2 Other Prohibitions.\ + \ You will not use the SDK Components to create, develop or use any program, software or\ + \ service that (a) contains any viruses, Trojan horses, worms, time bombs, cancelbots or\ + \ other computer programming routines that are intended to damage, detrimentally interfere\ + \ with, surreptitiously intercept or expropriate any system, data or personal information,\ + \ (b) when used in the manner in which it is intended or marketed, violates any law, statute,\ + \ ordinance, regulation or rights (including without limitation any laws, regulations or\ + \ rights respecting intellectual property, computer spyware, privacy, export control, unfair\ + \ competition, antidiscrimination or advertising), or (c) interferes with the operability\ + \ of Adobe or third-party programs or software.\n4.3 AVC Codec Use. THIS PRODUCT IS LICENSED\ + \ UNDER THE AVC PATENT PORTFOLIO LICENSE FOR THE PERSONAL NON-COMMERCIAL USE OF A CONSUMER\ + \ TO (i) ENCODE VIDEO IN COMPLIANCE WITH THE AVC STANDARD (\"AVC VIDEO\") AND/OR (ii) DECODE\ + \ AVC VIDEO THAT WAS ENCODED BY A CONSUMER ENGAGED IN A PERSONAL NON-COMMERCIAL ACTIVITY\ + \ AND/OR WAS OBTAINED FROM A VIDEO PROVIDER LICENSED TO PROVIDE AVC VIDEO. NO LICENSE IS\ + \ GRANTED OR SHALL BE IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED\ + \ FROM MPEG LA, L.L.C. SEE http://www.mpegla.com.\n4.4 MP3 Codec Use. You may not modify\ + \ the runtime libraries or any other Build Tools. You may not access MP3 codecs within the\ + \ runtime libraries other than through the published runtime APIs. Development, use or distribution\n\ + of a Developer Application that operates on non-PC devices and that decodes MP3 data not\ + \ contained within a SWF, FLV or other file format that contains more than MP3 data may\ + \ require one or more third-party license(s).\n\n5. Intellectual Property Rights. The SDK\ + \ Components and any copies that you are authorized by Adobe to make are the intellectual\ + \ property of and are owned by Adobe Systems Incorporated and its suppliers. The structure,\ + \ organization and code of the SDK Components provided to you in compiled or object code\ + \ form are the valuable trade secrets and confidential information of Adobe Systems Incorporated\ + \ and its suppliers. The SDK Components are protected by copyright, including without limitation\ + \ by United States Copyright Law, international treaty provisions and applicable laws in\ + \ the country in which they are used. Except as expressly stated herein, this agreement\ + \ does not grant you any intellectual property rights in the SDK Components and all rights\ + \ not expressly granted are reserved by Adobe.\n\n6. Reverse Engineering. You will not reverse\ + \ engineer, decompile, disassemble or otherwise attempt to discover the source code of any\ + \ SDK Component provided to you in compiled or object code format except to the extent you\ + \ may be expressly permitted to decompile under applicable law.\n\n7. No Warranty. Adobe\ + \ provides the SDK Components to you \"AS IS.\" ADOBE AND ITS SUPPLIERS MAKE NO EXPRESS,\ + \ IMPLIED, OR STATUTORY WARRANTY OF ANY KIND WITH RESPECT TO THE SDK COMPONENTS INCLUDING,\ + \ BUT NOT LIMITED TO, ANY WARRANTY WITH REGARD TO PERFORMANCE, MERCHANTABILITY, SATISFACTORY\ + \ QUALITY, NONINFRINGEMENT OR FITNESS FOR ANY PARTICULAR PURPOSE. IN NO EVENT WILL ADOBE\ + \ OR ITS SUPPLIERS BE LIABLE TO YOU OR ANY OTHER PARTY FOR ANY DAMAGES, INCLUDING ANY LOST\ + \ PROFITS, LOST SAVINGS OR OTHER INCIDENTAL OR CONSEQUENTIAL DAMAGES EVEN IF ADOBE OR ANY\ + \ COMPANY REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. YOU BEAR THE\ + \ ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SDK COMPONENTS. The foregoing exclusions\ + \ and limitations will apply to the maximum extent permitted by applicable law, even if\ + \ any remedy fails its essential purpose.\n\n8. Limitation of Liability. IN NO EVENT WILL\ + \ ADOBE OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY DAMAGES, CLAIMS OR COSTS WHATSOEVER ARISING\ + \ FROM THIS LICENSE AGREEMENT AND/OR YOUR USE OF THE SDK COMPONENTS, INCLUDING WITHOUT LIMITATION\ + \ ANY CONSEQUENTIAL, INDIRECT, INCIDENTAL DAMAGES, OR ANY LOST PROFITS OR LOST SAVINGS,\ + \ EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES,\ + \ CLAIMS OR COSTS OR FOR ANY CLAIM BY ANY THIRD PARTY. THE FOREGOING LIMITATIONS AND EXCLUSIONS\ + \ APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION. IN ANY EVENT, ADOBE'S\ + \ AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS LICENSE\ + \ AGREEMENT WILL BE LIMITED TO TEN U.S. DOLLARS. Nothing contained in this agreement limits\ + \ Adobe's or its suppliers’ liability to you in the event of death or personal injury resulting\ + \ from negligence or for the tort of deceit (fraud). Adobe is acting on behalf of its suppliers\ + \ for the purpose of disclaiming, excluding and/or limiting obligations, warranties and\ + \ liability as provided in this agreement, but in no other respects and for no other purpose.\n\ + \n9. Term and Termination. This agreement will commence upon the Effective Date and continue\ + \ in perpetuity unless terminated as set forth herein. Adobe may terminate this agreement\ + \ immediately if you breach any of its terms.\tSections 1, 3, 4, 5, 6, 7, 8, 9, 10, 11,\ + \ 12, 13 and 14 will survive any termination of this agreement. Upon termination of this\ + \ Agreement, you will cease all use and distribution of the SDK Components and return to\ + \ Adobe or destroy (with written confirmation of destruction) the SDK Components promptly\ + \ at Adobe’s request, together with any copies thereof.\n\n10. Export Rules. You agree that\ + \ the SDK Components will not be shipped, transferred or exported into any country or used\ + \ in any manner prohibited by the United States Export Administration Act or any other export\ + \ laws, restrictions or regulations (collectively the \"Export Laws\"). In addition, if\ + \ the SDK Components are identified as an export controlled item under the Export Laws,\ + \ you represent and warrant that you are not a citizen of, or located within, an embargoed\ + \ or otherwise restricted nation (including Iran, Syria, Sudan, Cuba and North Korea) and\ + \ that you are not otherwise prohibited under the Export Laws from receiving the SDK Components.\t\ + All rights to use the\nSDK Components are granted on condition that such rights are forfeited\ + \ if you fail to comply with the terms of this agreement.\n\n11. Notice to U.S. Government\ + \ End Users.\nFor U.S. Government End Users, Adobe agrees to comply with all applicable\ + \ equal opportunity laws including, if appropriate, the provisions of Executive Order 11246,\ + \ as amended, Section 402 of the Vietnam Era Veterans Readjustment Assistance Act of 1974\ + \ (38 USC 4212), and Section 503 of the Rehabilitation Act of 1973, as amended, and the\ + \ regulations at 41 CFR Parts 60-1 through 60-60, 60-250, and 60-741. The affirmative action\ + \ clause and regulations contained in the preceding sentence is incorporated by reference\ + \ in this agreement.\n\n12. Trademark. \"Adobe® AIR®\" is a trademark of Adobe that may\ + \ not be used by others except under a written license from Adobe. You may not incorporate\ + \ the Adobe AIR trademark, or any other Adobe trademark, in whole or in part, in the title\ + \ of your Developer Application or in your company name, domain name or the name of a service\ + \ related to Adobe AIR. You may indicate the interoperability of your Developer Application\ + \ with the Adobe AIR runtime software, if true, by stating, for example, \"works with Adobe®\ + \ AIR®\" or \"for Adobe® AIR®.\" You may use the Adobe AIR trademark to refer to your Developer\ + \ Application as an \"Adobe® AIR® application\" only as a statement that your Developer\ + \ Application interoperates with the Adobe AIR Runtime Software.\n\n13. Governing Law. This\ + \ agreement, each transaction entered into hereunder, and all matters arising from or related\ + \ to this agreement (including its validity and interpretation), will be governed and enforced\ + \ by and construed in accordance with the substantive laws in force in the State of California.\ + \ The state or federal courts located in Santa Clara County, California will each have non-exclusive\ + \ jurisdiction over all disputes relating to this agreement. This agreement will not be\ + \ governed by the conflict of law rules of any jurisdiction or the United Nations Convention\ + \ on Contracts for the International Sale of Goods, the application of which is expressly\ + \ excluded.\n\n14. General Provisions. If any part of this agreement is found void and unenforceable,\ + \ it will not affect the validity of the balance of this agreement, which will remain valid\ + \ and enforceable according to its terms. Updates may be licensed to you by Adobe with additional\ + \ or different terms. This is the entire agreement between Adobe and you relating to the\ + \ SDK Components and it supersedes any prior representations, discussions, undertakings,\ + \ communications or advertising relating to the SDK Components.\n\nAdobeAIR_ SDK License\ + \ _20080414_1855" json: adobe-air-sdk.json - yml: adobe-air-sdk.yml + yaml: adobe-air-sdk.yml html: adobe-air-sdk.html - text: adobe-air-sdk.LICENSE + license: adobe-air-sdk.LICENSE - license_key: adobe-air-sdk-2014 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-adobe-air-sdk-2014 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Adobe AIR SDK - Warranty disclaimer and license agreement\nADOBE SYSTEMS INCORPORATED\n\ + SDK LICENSE AGREEMENT\nADOBE® AIR® SDK\n \n1. NO WARRANTY, LIMITATION OF LIABILITY, BINDING\ + \ AGREEMENT AND ADDITIONAL TERMS AND AGREEMENTS.\n1.1 NO WARRANTY. YOU ACKNOWLEDGE THAT\ + \ THE SDK (AS DEFINED BELOW) MAY BE PRONE TO BUGS AND/OR STABILITY ISSUES. THE SDK IS PROVIDED\ + \ TO YOU \"AS IS,\" AND ADOBE AND ITS SUPPLIERS DISCLAIM ANY WARRANTY OR LIABILITY OBLIGATIONS\ + \ TO YOU OF ANY KIND. YOU ACKNOWLEDGE THAT ADOBE MAKES NO EXPRESS, IMPLIED, OR STATUTORY\ + \ WARRANTY OF ANY KIND WITH RESPECT TO THE SDK INCLUDING ANY WARRANTY WITH REGARD TO PERFORMANCE,\ + \ MERCHANTABILITY, SATISFACTORY QUALITY, NONINFRINGEMENT OR FITNESS FOR ANY PARTICULAR PURPOSE.\ + \ YOU BEAR THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SDK AND YOUR USE OF\ + \ AND OUTPUT FROM THE SDK. Adobe is not obligated to provide maintenance, technical support\ + \ or updates to you for any portion of the SDK. The foregoing limitations, exclusions and\ + \ limitations shall apply to the maximum extent permitted by applicable law, even if any\ + \ remedy fails its essential purpose.\n\n1.2 Limitation of Liability. IN NO EVENT WILL ADOBE\ + \ OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY LOSSES, DAMAGES, CLAIMS OR COSTS WHATSOEVER\ + \ INCLUDING ANY CONSEQUENTIAL, INDIRECT OR INCIDENTAL DAMAGES, ANY LOST PROFITS OR LOST\ + \ SAVINGS, ANY DAMAGES RESULTING FROM BUSINESS INTERRUPTION, PERSONAL INJURY OR FAILURE\ + \ TO MEET ANY DUTY OF CARE, OR CLAIMS BY A THIRD PARTY EVEN IF AN ADOBE REPRESENTATIVE HAS\ + \ BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSSES, DAMAGES, CLAIMS OR COSTS. THE FOREGOING\ + \ LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION.\ + \ ADOBE’S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS\ + \ AGREEMENT SHALL BE LIMITED TO THE AMOUNT PAID FOR THE SDK, IF ANY. THIS LIMITATION ON\ + \ ADOBE AND ITS SUPPLIERS WILL APPLY EVEN IN THE EVENT OF A FUNDAMENTAL OR MATERIAL BREACH\ + \ OR A BREACH OF THE FUNDAMENTAL OR MATERIAL TERMS OF THIS AGREEMENT. Nothing contained\ + \ in this agreement limits Adobe’s, or its suppliers, liability to you in the event of death\ + \ or personal injury resulting from Adobe’s negligence or for the tort of deceit (fraud).\ + \ Adobe is acting on behalf of its suppliers for the purpose of disclaiming, excluding and\ + \ limiting obligations, warranties and liability, but in no other respects and for no other\ + \ purpose.\n\n1.3 Binding Agreement. This agreement governs installation and use of the\ + \ SDK. You agree that this agreement is like any written negotiated agreement signed by\ + \ you. By downloading, installing, copying, modifying or distributing all or any portion\ + \ of the SDK, you accept all of the terms and conditions of this agreement. This agreement\ + \ is enforceable against you and any legal entity that obtained the SDK and on whose behalf\ + \ they are used: for example, your employer. If you do not agree to the terms of this agreement,\ + \ do not use the SDK.\n\n1.4 Additional Terms and Agreements. You may have a separate written\ + \ agreement with Adobe that supplements or supersedes all or portions of this agreement.\ + \ Your use of some third party materials included in the SDK may be subject to other terms\ + \ and conditions typically found in a separate license agreement or a \"Read Me\" file located\ + \ near such materials or in the \"Third Party Software Notices and/or Additional Terms and\ + \ Conditions\" found at www.adobe.com/go/thirdparty. Such other terms and conditions will\ + \ supersede all or portions of this agreement in the event of a conflict with the terms\ + \ and conditions of this agreement.\n\n2. DEFINITIONS.\n\"Adobe\" means Adobe Systems Incorporated,\ + \ a Delaware corporation, 345 Park Avenue, San Jose, California 95110, if Section 14(a)\ + \ of this agreement applies; otherwise it means Adobe Systems Software Ireland Limited,\ + \ 4-6 Riverwalk, Citywest Business Campus, Dublin 24, Ireland, a company organized under\ + \ the laws of Ireland and an affiliate and licensee of Adobe Systems Incorporated.\n\n\"\ + Build Tools\" means build files, compilers, runtime libraries (but not the complete Runtime\ + \ Software) accompanying this agreement, including, for example, the contents of the bin,\ + \ lib, and runtime directories, adl.exe, adl.bat and adt.jar.\n\n\"Developer Application\"\ + \ means your application software that complies with the requirements of this agreement,\ + \ including Section 5.1, and that either (a) interoperates with the Runtime Software or\ + \ (b) is an application produced from the Build Tools.\n\n\"Documentation\" means the written\ + \ materials accompanying this agreement, including, for example, technical specifications,\ + \ file format documentation and application programming interface (API) information.\n\n\ + \"Effective Date\" means the date that you download or otherwise access the SDK.\n\n\"Material\ + \ Improvement\" means perceptible, measurable and definable improvements that provide extended\ + \ or additional significant and primary functionality that adds significant business value.\n\ + \n\"Object Code Redistributables\" means those files in object code format located in the\ + \ /runtimes/air-captivate/mac, /runtimes/air-captivate/win, lib/aot/lib, and /lib/android/lib/runtimeClasses.jar,\ + \ and /runtimes/air/android/device/Runtime.apk folders, if included with the version of\ + \ the SDK provided to you in connection with this agreement.\n\n\"Runtime Components\" means\ + \ any of the individual files, libraries or executable code contained in the Runtime Software\ + \ directory (e.g., the runtime folder) or the Runtime Software utilities included in the\ + \ utilities directory or installer files. Adobe AIR.dll, runtime executables, template.exe\ + \ and template.app are examples of Runtime Components.\n\n\"Runtime Software\" means the\ + \ Adobe runtime software in object code format named \"Adobe AIR\" that is to be installed\ + \ by end-users and all updates to such software made available by Adobe.\n\n\"SDK\" means\ + \ the Build Tools, Documentation, Object Code Redistributables, Runtime Components, SDK\ + \ Source Files and Sample Code.\n\n\"SDK Source Files\" means source code files included\ + \ in the directory \"frameworks\" that accompany this agreement.\n\n\"Sample Code\" means\ + \ sample software in source code format designated in the Documentation or directories as\ + \ \"sample code,\" \"samples,\" \"sample application code,\" \"quickstart code\" or \"snippets.\"\ + \n\n3. LICENSE.\nSubject to the terms and conditions of this agreement, including the requirements\ + \ and restrictions below, Adobe grants you the non-exclusive, non-transferable right to\ + \ use the SDK in accordance with the Documentation as follows:\n\n3.1 Installation, Use\ + \ and Copying. You may install and use the Build Tools and Runtime Components solely for\ + \ purpose of developing compliant Developer Applications. You may make a limited and reasonable\ + \ number of copies of the SDK for purposes of your internal development of Developer Applications.\n\ + \n3.2 Modification. You may modify the Sample Code and SDK Source Files provided to you\ + \ in human readable (i.e., source code) format. You may incorporate the modified Sample\ + \ Code and SDK Source Files into your Developer Applications. You may not modify the Build\ + \ Tools (except for files that are covered by third party licenses that allow you to do\ + \ so), Documentation or the Runtime Software in any manner. In no event may you take any\ + \ action to make the SDK subject to a license or scheme in which there is or could be interpreted\ + \ that, as a condition of use, modification and/or distribution, the SDK be (a) disclosed\ + \ or distributed in source code form; (b) licensed for the purpose of making derivative\ + \ works; or (c) redistributable at no charge. You may not delete or in any manner alter\ + \ the copyright notices, trademarks, logos or related notices, or other proprietary rights\ + \ notices of Adobe (and its licensors, if any) appearing on or within any portion of the\ + \ SDK other than Sample Code or SDK Source Files that are substantially modified by you\ + \ in accordance with this agreement.\n\n3.3 Distribution.\n\n(a) Distribution Rights. Subject\ + \ to the provisions of this agreement, including the requirements and restrictions below,\ + \ you may copy and distribute the Sample Code, SDK Source Files and Object Code Redistributables\ + \ as follows:\n\n(i) Distribution with Developer Application. You may distribute (A) Sample\ + \ Code and SDK Source Files in source code, object code, modified or unmodified form, in\ + \ all cases incorporated into your Developer Application and (B) Object Code Redistributables\ + \ only as incorporated automatically (i.e., incorporated solely as a byproduct of your use\ + \ of the Build Tools) into a Developer Application for Mac, Windows, iOS, or Android platforms,\ + \ by using the Object Code Redistributables in the /runtimes/air-captivate/mac, /runtimes/air-captivate/win,\ + \ lib/aot/lib, and /lib/android/lib/runtimeClasses.jar, and /runtimes/air/android/device/Runtime.apk\ + \ folders, respectively; and\n\n(ii) Distribution of Sample Code Stand-alone. You may distribute\ + \ Sample Code (but not SDK Source Files) in source code or object code format on a stand-alone\ + \ basis or as bundled with other software, as long as you first make modifications to such\ + \ code that result in Material Improvements; and\n\n(iii) Distribution of SDK Source Files.\ + \ You may distribute SDK Source Files (but not the Sample Code) in source code or object\ + \ code format on a stand-alone basis or as bundled with other components useful to developers,\ + \ as long as you first make modifications to such files that result in Material Improvements,\ + \ and provided that you (A) include a copyright notice reflecting copyright ownership in\ + \ such modified files, and (B) do not use \"mx,\" \"mxml,\" \"flex,\" \"flash,\" \"fl\"\ + \ or \"adobe\" in any new package or class names distributed with the SDK Source Files.\n\ + \n(iv) No Distribution of Build Tools. This agreement does not grant you the right to distribute\ + \ the Build Tools (except for files that are covered by third party licenses that allow\ + \ you to do so), Documentation or Runtime Software. In no event may you take any action\ + \ to make the SDK subject to a license or scheme in which there is or could be interpreted\ + \ that, as a condition of use, modification and/or distribution, the SDK be (A) disclosed\ + \ or distributed in source code form; (B) licensed for the purpose of making derivative\ + \ works; or (C) redistributable at no charge. For information about obtaining the right\ + \ to distribute such components with your product or service, please refer to www.adobe.com/go/redistributeairsdk.\ + \ \n\n(b) Distribution Requirements. If you distribute the Sample Code or SDK Source Files\ + \ under this agreement, you must include a copyright notice in such code, files, the relevant\ + \ Developer Application or other larger work incorporating such code or files. You may not\ + \ (i) make any statement that any Developer Application or other software is \"certified\"\ + \ or otherwise guaranteed by Adobe or (ii) use Adobe’s name or trademarks to market any\ + \ Developer Application or other software without written permission from Adobe. Adobe is\ + \ not responsible to you or any other party for any software update or support or other\ + \ liability that may arise from your distribution.\n\n3.4 Cross Promotion Program. At your\ + \ option, you may participate in the Cross Promotion Program by completing the Program agreement\ + \ which can be found at: www.adobe.com/products/air/crosspromotion-program-agreement.html,\ + \ and implementing the related API.\n\n4. INDEMNIFICATION.\nYou agree to hold Adobe harmless\ + \ from any and all liabilities, losses, actions, damages or claims (including product liability,\ + \ warranty and intellectual property claims, and all reasonable expenses, costs and attorneys\ + \ fees) arising out of or relating to your distribution of all or any portion of the SDK\ + \ or any Developer Application; provided that Adobe cooperates with you, at your expense,\ + \ in resolving any such claim.\n\n5. DEVELOPMENT REQUIREMENTS, RESTRICTIONS AND PRIVACY.\n\ + 5.1 Development. You shall not create or distribute any software, including any Developer\ + \ Application that interoperates with individual Runtime Components in a manner not documented\ + \ by Adobe. You shall not create or distribute any software, including any Developer Application\ + \ that is designed to interoperate with an un-installed instance of the Runtime Software.\ + \ You shall not create or distribute any Developer Application that runs without installation.\ + \ You are not permitted to install or use the Build Tools or other portions of the SDK to\ + \ develop software prohibited by this agreement. Failure to comply with this Section 5.1\ + \ is a breach of this agreement that immediately terminates all rights granted to you herein.\n\ + \n5.2 Other Prohibitions. You will not use the SDK to create, develop or use any program,\ + \ software or service that (a) contains any viruses, Trojan horses, worms, time bombs, cancelbots\ + \ or other computer programming routines that are intended to damage, detrimentally interfere\ + \ with, surreptitiously intercept or expropriate any system, data or personal information,\ + \ (b) when used in the manner in which it is intended or marketed, violates any law, statute,\ + \ ordinance, regulation or rights (including any laws, regulations or rights respecting\ + \ intellectual property, computer spyware, privacy, export control, unfair competition,\ + \ antidiscrimination or advertising), or (c) interferes with the operability of Adobe or\ + \ third-party programs or software.\n\n5.3 AVC Codec Use. THIS PRODUCT IS LICENSED UNDER\ + \ THE AVC PATENT PORTFOLIO LICENSE FOR THE PERSONAL NON-COMMERCIAL USE OF A CONSUMER TO\ + \ (a) ENCODE VIDEO IN COMPLIANCE WITH THE AVC STANDARD (\"AVC VIDEO\") AND/OR (b) DECODE\ + \ AVC VIDEO THAT WAS ENCODED BY A CONSUMER ENGAGED IN A PERSONAL NON-COMMERCIAL ACTIVITY\ + \ AND/OR WAS OBTAINED FROM A VIDEO PROVIDER LICENSED TO PROVIDE AVC VIDEO. NO LICENSE IS\ + \ GRANTED OR SHALL BE IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED\ + \ FROM MPEG LA, L.L.C. SEE www.mpegla.com.\n\n5.4 MP3 Codec Use. You may not modify the\ + \ runtime libraries or Build Tools. You may not access MP3 codecs within the runtime libraries\ + \ other than through the published runtime APIs. Development, use or distribution of a Developer\ + \ Application that operates on non-PC devices and that decodes MP3 data not contained within\ + \ a SWF, FLV or other file format that contains more than MP3 data may require one or more\ + \ third-party license(s).\n\n5.5 Privacy. You will comply with all data protection and privacy\ + \ laws and rules applicable to the personal information of your end users. You will conspicuously\ + \ post a privacy policy that tells users what personal data you are going to use and how\ + \ you will use, display, share, or transfer that data. In addition, you will include your\ + \ privacy policy URL conspicuously in the Developer Application, and you must also include\ + \ a link to your app's privacy policy in any app marketplace that provides you with the\ + \ functionality to do so. Adobe provides information about common privacy issues at www.adobe.com/go/air_developer_privacy.\n\ + \n6. INTELLECTUAL PROPERTY RIGHTS.\nThe SDK and any copies that you are authorized by Adobe\ + \ to make are the intellectual property of and are owned by Adobe Systems Incorporated and\ + \ its suppliers. The structure, organization and code of the SDK provided to you in compiled\ + \ or object code form are the valuable trade secrets and confidential information of Adobe\ + \ Systems Incorporated and its suppliers. The SDK is protected by copyright, including by\ + \ United States Copyright Law, international treaty provisions and applicable laws in the\ + \ country in which they are used. Except as expressly stated herein, this agreement does\ + \ not grant you any intellectual property rights in the SDK and all rights not expressly\ + \ granted are reserved by Adobe.\n\n7. REVERSE ENGINEERING.\nYou will not reverse engineer,\ + \ decompile, disassemble or otherwise attempt to discover the source code of all or any\ + \ portion of the SDK provided to you in compiled or object code format except to the extent\ + \ you may be expressly permitted to decompile under applicable law.\n\n8. NON-BLOCKING OF\ + \ ADOBE DEVELOPMENT.\nYou acknowledge that Adobe is currently developing or may develop\ + \ technologies and products in the future that have or may have design and/or functionality\ + \ similar to products that you may develop based on your license herein. Nothing in this\ + \ agreement shall impair, limit or curtail Adobe’s right to continue with its development,\ + \ maintenance and/or distribution of Adobe’s technology or products. You agree that you\ + \ shall not assert in any way any patent owned by you arising out of or in connection with\ + \ the SDK or modifications made thereto against Adobe, its subsidiaries or affiliates, or\ + \ their customers, direct or indirect, agents and contractors for the manufacture, use,\ + \ import, licensing, offer for sale or sale of any Adobe products.\n\n9. PRE-RELEASE SDK\ + \ ADDITIONAL TERMS.\nIf the SDK or any of its components are pre-commercial release or beta\ + \ software (\"Pre-release Software\"), then this section applies. The Pre-release Software\ + \ is a pre-release version, does not represent final product from Adobe, and may contain\ + \ bugs, errors and other problems that could cause system or other failures and data loss.\ + \ Adobe may never commercially release the Pre-release Software. If you received the Pre-release\ + \ Software pursuant to a separate written agreement, such as the Adobe Systems Incorporated\ + \ License Agreement for PreRelease Software, your use of the Software is also governed by\ + \ such agreement. You will return or destroy all copies of Pre-release Software upon request\ + \ by Adobe or upon Adobe’s commercial release of such Software. YOUR USE OF PRE-RELEASE\ + \ SOFTWARE IS AT YOUR OWN RISK.\n\n10. TERM AND TERMINATION.\nThis agreement will commence\ + \ upon the Effective Date and continue in perpetuity unless terminated as set forth herein.\ + \ Adobe may terminate this agreement immediately if you breach any of its terms. Sections\ + \ 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 and 15 will survive any termination of this\ + \ agreement. Upon termination of this agreement, you will cease all use and distribution\ + \ of the SDK and return to Adobe or destroy (with written confirmation of destruction) the\ + \ SDK promptly at Adobe’s request, together with any copies thereof.\n\n11. EXPORT RULES.\n\ + You acknowledge that the SDK is subject to the U.S. Export Administration Regulations (the\ + \ \"EAR\") and that you will comply with the EAR. You will not export or re-export the SDK,\ + \ or any portion hereof, directly or indirectly, to: (a) any countries that are subject\ + \ to US export restrictions (currently including, but not necessarily limited to, Cuba,\ + \ Iran, North Korea, Sudan and Syria); (b) any end user who you know or have reason to know\ + \ will utilize them in the design, development or production of nuclear, chemical or biological\ + \ weapons, or rocket systems, space launch vehicles, and sounding rockets, or unmanned air\ + \ vehicle systems; or (c) any end user who has been prohibited from participating in the\ + \ US export transactions by any federal agency of the US government. In addition, you are\ + \ responsible for complying with any local laws in your jurisdiction which may impact your\ + \ right to import, export or use the SDK.\n\n12. NOTICE TO U.S. GOVERNMENT END USERS.\n\ + For U.S. Government End Users, Adobe agrees to comply with all applicable equal opportunity\ + \ laws including, if appropriate, the provisions of Executive Order 11246, as amended, Section\ + \ 402 of the Vietnam Era Veterans Readjustment Assistance Act of 1974 (38 USC 4212), and\ + \ Section 503 of the Rehabilitation Act of 1973, as amended, and the regulations at 41 CFR\ + \ Parts 60-1 through 60-60, 60-250, and 60-741. The affirmative action clause and regulations\ + \ contained in the preceding sentence is incorporated by reference in this agreement.\n\n\ + 13. TRADEMARK.\n\"Adobe® AIR®\" is a trademark of Adobe that may not be used by others except\ + \ under a written license from Adobe. You may not incorporate the Adobe AIR trademark, or\ + \ any other Adobe trademark, in whole or in part, in the title of your Developer Application\ + \ or in your company name, domain name or the name of a service related to Adobe AIR. You\ + \ may indicate the interoperability of your Developer Application with the Adobe AIR Runtime\ + \ Software, if true, by stating, for example, \"works with Adobe® AIR®\" or \"for Adobe®\ + \ AIR®.\" You may use the Adobe AIR trademark to refer to your Developer Application as\ + \ an \"Adobe® AIR® application\" only as a statement that your Developer Application interoperates\ + \ with the Adobe AIR Runtime Software.\n14. GOVERNING LAW.\nIf you are a consumer who uses\ + \ the SDK for only personal non-business purposes, then this agreement will be governed\ + \ by the laws of the state in which you purchased the license to use the SDK. If you are\ + \ not such a consumer, this agreement will be governed by and construed in accordance with\ + \ the substantive laws in force in: (a) the State of California, if a license to the SDK\ + \ is obtained when you are in the United States, Canada or Mexico; or (b) Japan, if a license\ + \ to the is obtained when you are in Japan, China, Korea or other Southeast Asian country\ + \ where all official languages are written in either an ideographic script (e.g., Hanzi,\ + \ Kanji, or Hanja), and/or other script based upon or similar in structure to an ideographic\ + \ script, such as hangul or kana; or (c) England, if a license to the SDK is obtained when\ + \ you are in any jurisdiction not described above. The respective courts of Santa Clara\ + \ County, California when California law applies, Tokyo District Court in Japan, when Japanese\ + \ law applies, and the competent courts of London, England, when the law of England applies,\ + \ shall each have non-exclusive jurisdiction over all disputes relating to this agreement.\ + \ This agreement will not be governed by the conflict of law rules of any jurisdiction or\ + \ the United Nations Convention on Contracts for the International Sale of Goods, the application\ + \ of which is expressly excluded.\n\n15. GENERAL PROVISIONS.\nIf any part of this agreement\ + \ is found void and unenforceable, it will not affect the validity of the balance of this\ + \ agreement, which will remain valid and enforceable according to its terms. Updates may\ + \ be licensed to you by Adobe with additional or different terms. The use of \"includes\"\ + \ or \"including\" in this agreement shall mean \"including without limitation.\" This is\ + \ the entire agreement between Adobe and you relating to the SDK and it supersedes any prior\ + \ representations, discussions, undertakings, communications or advertising relating to\ + \ the SDK.\n\nAdobeAIR_SDK License-en_US-20140814_0852" json: adobe-air-sdk-2014.json - yml: adobe-air-sdk-2014.yml + yaml: adobe-air-sdk-2014.yml html: adobe-air-sdk-2014.html - text: adobe-air-sdk-2014.LICENSE + license: adobe-air-sdk-2014.LICENSE - license_key: adobe-color-profile-bundling + category: Proprietary Free spdx_license_key: LicenseRef-scancode-adobe-color-profile-bundling other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + ADOBE SYSTEMS INCORPORATED COLOR PROFILE BUNDLING AGREEMENT + + NOTICE TO USER: PLEASE READ THIS CONTRACT CAREFULLY. BY USING ALL OR ANY PORTION OF THE SOFTWARE YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT. YOU AGREE THAT THIS AGREEMENT IS ENFORCEABLE LIKE ANY WRITTEN NEGOTIATED AGREEMENT SIGNED BY YOU. IF YOU DO NOT AGREE WITH THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE. + + 1. DEFINITIONS. In this Agreement, "Adobe" means Adobe Systems Incorporated, a Delaware corporation, located at 345 Park Avenue, San Jose, California 95110. "Software" means the software and related items with which this Agreement is provided, as listed in Exhibit A. + 2. LICENSE. Subject to the terms of this Agreement, Adobe hereby grants you the worldwide, non-exclusive, nontransferable, royalty-free license to use, reproduce and publicly display the Software. Adobe also grants you the rights to distribute the Software: (a) on a standalone basis (b) as embedded within digital image files. (c) as embedded within hardware products that author digital images, where there is no End User access to the Software, and (d) as bundled with your own application software, provided that you comply with all the distribution requirements in Section 3 below. No other distribution of the Software is allowed. All individual profiles must be referenced by their ICC Profile description string. YOU MAY NOT MODIFY THE SOFTWARE. Adobe is under no obligation to provide any support under this Agreement, including upgrades or future versions of the Software or other items. No title to the intellectual property in the Software is transferred to you under the terms of this Agreement. You do not acquire any rights to the Software except as expressly set forth in this Agreement. Notwithstanding the above, if you are bundling with Linux or Unix software products, you may (a) add shortcut or menu items within your software that point to the Software, but may not change the name or iconography of the Software, (b) repackage the RPM or Gzip versions of the Software for distribution purposes, and (c) create a graphical user interface as otherwise specifically allowed by instructions found at www.adobe.com or http://partners.adobe.com (e.g., installation of additional plug-in and help files) but may not add, delete, or modify any components of the Software without the explicit written permission of Adobe. + 3. DISTRIBUTION. If you choose to distribute the Software, you do so with the understanding that you agree to defend, indemnify and hold harmless Adobe against any losses, damages or costs arising from any claims, lawsuits or other legal actions arising out of such distribution, including, without limitation, product liability and other claims by consumers and your failure to comply with this Section 3. If you distribute the Software on a standalone or bundled basis, you will do so by first obtaining the agreement of the end user under the terms of either the Adobe End User License Agreement (“Adobe EULA”), attached as Exhibit B, or your own license agreement which (a) complies with the terms and conditions of this Agreement; (b) effectively disclaims all warranties and conditions, express or implied, on behalf of Adobe; (c) effectively excludes all liability for damages on behalf of Adobe; (d) substantially states that any provisions that differ from this Agreement are offered by you alone and not Adobe; and (e) substantially states that the Software is available from you or Adobe and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. Any distributed Software will include the Adobe copyright notices as included in the Software provided to you by Adobe. + 4. DISCLAIMER OF WARRANTY. Adobe licenses the Software to you on an "AS IS" basis. Adobe makes no representation as to the adequacy of the Software for any particular purpose or to produce any particular result. Adobe shall not be liable for loss or damage arising out of this Agreement or from the distribution or use of the Software or any other materials. ADOBE AND ITS SUPPLIERS DO NOT AND CANNOT WARRANT THE PERFORMANCE OR RESULTS YOU MAY OBTAIN BY USING THE SOFTWARE, EXCEPT FOR ANY WARRANTY, CONDITION, REPRESENTATION OR TERM TO THE EXTENT TO WHICH THE SAME CANNOT OR MAY NOT BE EXCLUDED OR LIMITED BY LAW APPLICABLE TO YOU IN YOUR JURISDICTION, ADOBE AND ITS SUPPLIERS MAKE NO WARRANTIES, CONDITIONS, REPRESENTATIONS OR TERMS, EXPRESS OR IMPLIED, WHETHER BY STATUTE, COMMON LAW, CUSTOM, USAGE OR OTHERWISE AS TO ANY OTHER MATTERS, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT OF THIRD PARTY RIGHTS, INTEGRATION, SATISFACTORY QUALITY OR FITNESS FOR ANY PARTICULAR PURPOSE. YOU MAY HAVE ADDITIONAL RIGHTS WHICH VARY FROM JURISDICTION TO JURISDICTION. The provisions of Sections 4 and 5 shall survive the termination of this Agreement, howsoever caused, but this shall not imply or create any continued right to use the Software after termination of this Agreement. + 5. LIMITATION OF LIABILITY. IN NO EVENT WILL ADOBE OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY DAMAGES, CLAIMS OR COSTS WHATSOEVER OR ANY CONSEQUENTIAL, INDIRECT, INCIDENTAL DAMAGES, OR ANY LOST PROFITS OR LOST SAVINGS, EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS OR FOR ANY CLAIM BY ANY THIRD PARTY. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION. ADOBE'S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT PAID FOR THE SOFTWARE. Nothing contained in this Agreement limits Adobe's liability to you in the event of death or personal injury resulting from Adobe's negligence or for the tort of deceit (fraud). Adobe is acting on behalf of its suppliers for the purpose of disclaiming, excluding and/or limiting obligations, warranties and liability as provided in this Agreement, but in no other respects and for no other purpose. + 6. TRADEMARKS. Adobe grants you a worldwide, nonexclusive, nontransferable, personal right to use the “Adobe” word trademark (the “Trademark”) solely to identify Adobe as the source of the Adobe RGB (1998) product or Adobe RGB technology, so long as such use complies with the terms of this Agreement, the trademark guidelines available at the “Permissions and trademarks” pages of the Adobe web site (www.adobe.com) and the “Adobe Trademark Guidelines for third parties who license, use or refer to Adobe trademarks,” also available from the Adobe web site. You acknowledge the validity of the Trademark and Adobe’s ownership of the Trademark. Nothing in this Agreement shall give you any right, title or interest in the Trademark, other than the license rights granted in this Agreement. You recognize the value of the goodwill associated with the Trademark and acknowledge that such goodwill exclusively inures to the benefit of and belongs to Adobe. Adobe and the Adobe logo are either registered trademarks or trademarks of Adobe in the United States and/or other countries. With the exception of referential use and the rights granted in this Agreement, you will not use such trademarks or any other Adobe trademark or logo without separate prior written permission from Adobe. + 7. TERM. This Agreement is effective until terminated. Adobe has the right to terminate this Agreement immediately if you fail to comply with any term hereof. Upon any such termination, you must return to Adobe all full and partial copies of the Software in your possession or control. + 8. GOVERNMENT REGULATIONS. If any part of the Software is identified as an export controlled item under the United States Export Administration Act or any other export law, restriction or regulation (the "Export Laws"), you represent and warrant that you are not a citizen, or otherwise located within, an embargoed nation (including without limitation Iran, Iraq, Syria, Sudan, Libya, Cuba, North Korea, and Serbia) and that you are not otherwise prohibited under the Export Laws from receiving the Software. All rights to use the Software are granted on condition that such rights are forfeited if you fail to comply with the terms of this Agreement. + 9. GOVERNING LAW. This Agreement will be governed by and construed in accordance with the substantive laws in force in the State of California as such laws are applied to agreements entered into and to be performed entirely within California between California residents. This Agreement will not be governed by the conflict of law rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. All disputes arising out of, under or related to this Agreement will be brought exclusively in the state Santa Clara County, California, USA. + 10. GENERAL. You may not assign your rights or obligations granted under this Agreement without the prior written consent of Adobe. None of the provisions of this Agreement shall be deemed to have been waived by any act or acquiescence on the part of Adobe, its agents, or employees, but only by an instrument in writing signed by an authorized signatory of Adobe. When conflicting language exists between this Agreement and any other agreement included in the Software, the terms of such included agreement shall apply. If either you or Adobe employs attorneys to enforce any rights arising out of or relating to this Agreement, the prevailing party shall be entitled to recover reasonable attorneys’ fees. You acknowledge that you have read this Agreement, understand it, and that it is the complete and exclusive statement of your agreement with Adobe which supersedes any prior agreement, oral or written, between Adobe and you with respect to the licensing to you of the Software. No variation of the terms of this Agreement will be enforceable against Adobe unless Adobe gives its express consent, in writing, signed by an authorized signatory of Adobe. + + Exhibit A + + The “Software” for the purposes of this Agreement and which Licensee is permitted to distribute subject to the terms and conditions of this Agreement, shall consist of one or more of the following color profiles: + 8 RGB profiles + + Adobe RGB (1998) + Apple RGB + ColorMatch RGB + SMPTE-C + PAL/SECAM + HDTV (Rec. 709) + SDTV NTSC + SDTV PAL + + 14 CMYK profiles + + Coated FOGRA27 (ISO 12647-2:2004) + Web Coated FOGRA28 (ISO 12647-2:2004) + Uncoated FOGRA29 (ISO 12647-2:2004) + Coated FOGRA39 (ISO 12647-2:2004) + Japan Color 2001 Coated + Japan Color 2001 Uncoated + Japan Color 2002 Newspaper + Japan Color 2003 Web Coated + Japan Web Coated (Ad) + Web Coated (SWOP) v2 + Web Uncoated v2 Coated + GRACol 2006 (ISO 12647-2:2004) + Web Coated SWOP Grade 3 Paper + Web Coated SWOP Grade 5 Paper + + EXHIBIT B + + ADOBE SYSTEMS INCORPORATED COLOR PROFILE LICENSE AGREEMENT NOTICE TO USER: PLEASE READ THIS CONTRACT CAREFULLY. BY USING ALL OR ANY PORTION OF THE SOFTWARE YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT. YOU AGREE THAT THIS AGREEMENT IS ENFORCEABLE LIKE ANY WRITTEN NEGOTIATED AGREEMENT SIGNED BY YOU. IF YOU DO NOT AGREE WITH THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE. + + 1. DEFINITIONS In this Agreement, "Adobe" means Adobe Systems Incorporated, a Delaware corporation, located at 345 Park Avenue, San Jose, California 95110. "Software" means the software and related items with which this Agreement is provided. + 2. LICENSE Subject to the terms of this Agreement, Adobe hereby grants you the worldwide, non-exclusive, nontransferable, royalty-free license to use, reproduce and publicly display the Software. Adobe also grants you the rights to distribute the Software only (a) as embedded within digital image files and (b) on a standalone basis. No other distribution of the Software is allowed; including, without limitation, distribution of the Software when incorporated into or bundled with any application software. All individual profiles must be referenced by their ICC Profile description string. You may not modify the Software. Adobe is under no obligation to provide any support under this Agreement, including upgrades or future versions of the Software or other items. No title to the intellectual property in the Software is transferred to you under the terms of this Agreement. You do not acquire any rights to the Software except as expressly set forth in this Agreement. + 3. DISTRIBUTION If you choose to distribute the Software, you do so with the understanding that you agree to defend, indemnify and hold harmless Adobe against any losses, damages or costs arising from any claims, lawsuits or other legal actions arising out of such distribution, including without limitation, your failure to comply with this Section 3. If you distribute the Software on a standalone basis, you will do so under the terms of this Agreement or your own license agreement which (a) complies with the terms and conditions of this Agreement; (b) effectively disclaims all warranties and conditions, express or implied, on behalf of Adobe; (c) effectively excludes all liability for damages on behalf of Adobe; (d) substantially states that any provisions that differ from this Agreement are offered by you alone and not Adobe and (e) substantially states that the Software is available from you or Adobe and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. Any distributed Software will include the Adobe copyright notices as included in the Software provided to you by Adobe. + 4. DISCLAIMER OF WARRANTY Adobe licenses the Software to you on an "AS IS" basis. Adobe makes no representation as to the adequacy of the Software for any particular purpose or to produce any particular result. Adobe shall not be liable for loss or damage arising out of this Agreement or from the distribution or use of the Software or any other materials. ADOBE AND ITS SUPPLIERS DO NOT AND CANNOT WARRANT THE PERFORMANCE OR RESULTS YOU MAY OBTAIN BY USING THE SOFTWARE, EXCEPT FOR ANY WARRANTY, CONDITION, REPRESENTATION OR TERM TO THE EXTENT TO WHICH THE SAME CANNOT OR MAY NOT BE EXCLUDED OR LIMITED BY LAW APPLICABLE TO YOU IN YOUR JURISDICTION, ADOBE AND ITS SUPPLIERS MAKE NO WARRANTIES, CONDITIONS, REPRESENTATIONS OR TERMS, EXPRESS OR IMPLIED, WHETHER BY STATUTE, COMMON LAW, CUSTOM, USAGE OR OTHERWISE AS TO ANY OTHER MATTERS, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT OF THIRD PARTY RIGHTS, INTEGRATION, SATISFACTORY QUALITY OR FITNESS FOR ANY PARTICULAR PURPOSE. YOU MAY HAVE ADDITIONAL RIGHTS WHICH VARY FROM JURISDICTION TO JURISDICTION. The provisions of Sections 4 and 5 shall survive the termination of this Agreement, howsoever caused, but this shall not imply or create any continued right to use the Software after termination of this Agreement. + 5. LIMITATION OF LIABILITY IN NO EVENT WILL ADOBE OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY DAMAGES, CLAIMS OR COSTS WHATSOEVER OR ANY CONSEQUENTIAL, INDIRECT, INCIDENTAL DAMAGES, OR ANY LOST PROFITS OR LOST SAVINGS, EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS OR FOR ANY CLAIM BY ANY THIRD PARTY. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION. ADOBE'S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT PAID FOR THE SOFTWARE. Nothing contained in this Agreement limits Adobe's liability to you in the event of death or personal injury resulting from Adobe's negligence or for the tort of deceit (fraud). Adobe is acting on behalf of its suppliers for the purpose of disclaiming, excluding and/or limiting obligations, warranties and liability as provided in this Agreement, but in no other respects and for no other purpose. + 6. TRADEMARKS Adobe grants you a worldwide, nonexclusive, nontransferable, personal right to use the “Adobe” word trademark (the “Trademark”) solely to identify Adobe as the source of the Adobe RGB (1998) product or Adobe RGB technology, so long as such use complies with the terms of this Agreement, the trademark guidelines available at the “Permissions and trademarks” pages of the Adobe web site (www.adobe.com) and the “Adobe Trademark Guidelines for third parties who license, use or refer to Adobe trademarks,” also available from the Adobe web site. You acknowledge the validity of the Trademark and Adobe’s ownership of the Trademark. Nothing in this Agreement shall give you any right, title or interest in the Trademark, other than the license rights granted in this Agreement. You recognize the value of the goodwill associated with the Trademark and acknowledge that such goodwill exclusively inures to the benefit of and belongs to Adobe. Adobe and the Adobe logo are either registered trademarks or trademarks of Adobe in the United States and/or other countries. With the exception of referential use and the rights granted in this Agreement, you will not use such trademarks or any other Adobe trademark or logo without separate prior written permission granted by Adobe. + 7. TERM This Agreement is effective until terminated. Adobe has the right to terminate this Agreement immediately if you fail to comply with any term hereof. Upon any such termination, you must return to Adobe all full and partial copies of the Software in your possession or control. + 8. GOVERNMENT REGULATIONS If any part of the Software is identified as an export controlled item under the United States Export Administration Act or any other export law, restriction or regulation (the "Export Laws"), you represent and warrant that you are not a citizen, or otherwise located within, an embargoed nation (including without limitation Iran, Iraq, Syria, Sudan, Libya, Cuba, North Korea, and Serbia) and that you are not otherwise prohibited under the Export Laws from receiving the Software. All rights to use the Software are granted on condition that such rights are forfeited if you fail to comply with the terms of this Agreement. + 9. GOVERNING LAW This Agreement will be governed by and construed in accordance with the substantive laws in force in the State of California as such laws are applied to agreements entered into and to be performed entirely within California between California residents. This Agreement will not be governed by the conflict of law rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. All disputes arising out of, under or related to this Agreement will be brought exclusively in the state Santa Clara County, California, USA. + 10. GENERAL You may not assign your rights or obligations granted under this Agreement without the prior written consent of Adobe. None of the provisions of this Agreement shall be deemed to have been waived by any act or acquiescence on the part of Adobe, its agents, or employees, but only by an instrument in writing signed by an authorized signatory of Adobe. When conflicting language exists between this Agreement and any other agreement included in the Software, the terms of such included agreement shall apply. If either you or Adobe employs attorneys to enforce any rights arising out of or relating to this Agreement, the prevailing party shall be entitled to recover reasonable attorneys’ fees. You acknowledge that you have read this Agreement, understand it, and that it is the complete and exclusive statement of your agreement with Adobe which supersedes any prior agreement, oral or written, between Adobe and you with respect to the licensing to you of the Software. No variation of the terms of this Agreement will be enforceable against Adobe unless Adobe gives its express consent, in writing, signed by an authorized signatory of Adobe. json: adobe-color-profile-bundling.json - yml: adobe-color-profile-bundling.yml + yaml: adobe-color-profile-bundling.yml html: adobe-color-profile-bundling.html - text: adobe-color-profile-bundling.LICENSE + license: adobe-color-profile-bundling.LICENSE - license_key: adobe-color-profile-license + category: Proprietary Free spdx_license_key: LicenseRef-scancode-adobe-color-profile-license other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Color Profile License agreement + + NOTICE TO USER: PLEASE READ THIS CONTRACT CAREFULLY. BY USING ALL OR ANY PORTION OF THE SOFTWARE, YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE WITH THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE. + + 1. DEFINITIONS In this Agreement, "Adobe" means Adobe Systems Incorporated, a Delaware corporation, located at 345 Park Avenue, San Jose, California 95110. "Software" means the software and related items with which this Agreement is provided. + + 2. LICENSE Subject to the terms of this Agreement, Adobe hereby grants you the worldwide, non-exclusive, nontransferable, royalty-free license to use, reproduce, and publicly display the Software. Adobe also grants you the rights to distribute the Software only (a) as embedded within digital image files and (b) on a standalone basis. No other distribution of the Software is allowed; including, without limitation, distribution of the Software when incorporated into or bundled with any application software. You may not modify the Software. Adobe is under no obligation to provide any support under this Agreement, including upgrades or future versions of the Software or other items. No title to the intellectual property in the Software is transferred to you under the terms of this Agreement. You do not acquire any rights to the Software except as expressly set forth in this Agreement. + + 3. DISTRIBUTION If you choose to distribute the Software, you do so with the understanding that you agree to defend, indemnify, and hold harmless Adobe against any losses, damages, or costs arising from any claims, lawsuits, or other legal actions arising out of such distribution, including, without limitation, your failure to comply with this Section. If you distribute the Software on a standalone basis, you will do so under the terms of this Agreement or your own license agreement which (a) complies with the terms and conditions of this Agreement; (b) effectively disclaims all warranties and conditions, express or implied, on behalf of Adobe; (c) effectively excludes all liability for damages on behalf of Adobe; (d) states that any provisions that differ from this Agreement are offered by you alone and not Adobe; and (e) states that the Software is available from you or Adobe and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. Any distributed Software will include the Adobe copyright notices as included in the Software provided to you by Adobe. + + 4. DISCLAIMER OF WARRANTY Adobe licenses the Software to you on an "AS IS" basis. Adobe makes no representation as to the adequacy of the Software for any particular purpose or to produce any particular result. Adobe shall not be liable for loss or damage arising out of this Agreement or from the distribution or use of the Software or any other materials. ADOBE AND ITS SUPPLIERS DO NOT AND CANNOT WARRANT THE PERFORMANCE OR RESULTS YOU MAY OBTAIN BY USING THE SOFTWARE, EXCEPT FOR ANY WARRANTY, CONDITION, REPRESENTATION, OR TERM TO THE EXTENT TO WHICH THE SAME CANNOT OR MAY NOT BE EXCLUDED OR LIMITED BY LAW APPLICABLE TO YOU IN YOUR JURISDICTION, ADOBE AND ITS SUPPLIERS MAKE NO WARRANTIES, CONDITIONS, REPRESENTATIONS OR TERMS, EXPRESS OR IMPLIED, WHETHER BY STATUTE, COMMON LAW, CUSTOM, USAGE OR OTHERWISE AS TO ANY OTHER MATTERS, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT OF THIRD PARTY RIGHTS, INTEGRATION, SATISFACTORY QUALITY, OR FITNESS FOR ANY PARTICULAR PURPOSE. YOU MAY HAVE ADDITIONAL RIGHTS WHICH VARY FROM JURISDICTION TO JURISDICTION. The provisions of Sections 4, 5, and 6 shall survive the termination of this Agreement, howsoever caused, but this shall not imply or create any continued right to use the Software after termination of this Agreement. + + 5. LIMITATION OF LIABILITY IN NO EVENT WILL ADOBE OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY DAMAGES, CLAIMS, OR COSTS WHATSOEVER OR ANY CONSEQUENTIAL, INDIRECT, INCIDENTAL DAMAGES, OR ANY LOST PROFITS OR LOST SAVINGS, EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS OR FOR ANY CLAIM BY ANY THIRD PARTY. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION. ADOBE'S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT PAID FOR THE SOFTWARE. Nothing contained in this Agreement limits Adobe's liability to you in the event of death or personal injury resulting from Adobe's negligence or for the tort of deceit (fraud). Adobe is acting on behalf of its suppliers for the purpose of disclaiming, excluding, and/or limiting obligations, warranties, and liability as provided in this Agreement, but in no other respects and for no other purpose. + + 6. TRADEMARKS Adobe and the Adobe logo are the registered trademarks or trademarks of Adobe in the United States and other countries. You will not use such trademarks or any other Adobe trademark or logo without separate prior written permission granted by Adobe. + + 7. TERM This Agreement is effective until terminated. Adobe has the right to terminate this Agreement immediately if you fail to comply with any term hereof. Upon any such termination, you must return to Adobe all full and partial copies of the Software in your possession or control. + + 8. GOVERNMENT REGULATIONS If any part of the Software is identified as an export controlled item under the United States Export Administration Act or any other export law, restriction or regulation (the "Export Laws"), you represent and warrant that you are not a citizen, or otherwise located within, an embargoed nation (including without limitation Iran, Iraq, Syria, Sudan, Libya, Cuba, North Korea, and Serbia) and that you are not otherwise prohibited under the Export Laws from receiving the Software. All rights to use the Software are granted on condition that such rights are forfeited if you fail to comply with the terms of this Agreement. + + 9. GOVERNING LAW This Agreement will be governed by and construed in accordance with the substantive laws in force in the State of California as such laws are applied to agreements entered into and to be performed entirely within California between California residents. This Agreement will not be governed by the conflict of law rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. All disputes arising out of, under, or related to this Agreement will be brought exclusively in the state or federal courts located in Santa Clara County, California, USA. + + 10. GENERAL You may not assign your rights or obligations granted under this Agreement without the prior written consent of Adobe. None of the provisions of this Agreement shall be deemed to have been waived by any act or acquiescence on the part of Adobe, its agents, or employees, but only by an instrument in writing signed by an authorized signatory of Adobe. When conflicting language exists between this Agreement and any other agreement included in the Software, the terms of such included agreement shall apply. If either you or Adobe employs attorneys to enforce any rights arising out of or relating to this Agreement, the prevailing party shall be entitled to recover reasonable attorney fees. You acknowledge that you have read this Agreement, understand it, and that it is the complete and exclusive statement of your agreement with Adobe which supersedes any prior agreement, oral or written, between Adobe and you with respect to the licensing to you of the Software. No variation of the terms of this Agreement will be enforceable against Adobe unless Adobe gives its express consent, in writing, signed by an authorized signatory of Adobe. json: adobe-color-profile-license.json - yml: adobe-color-profile-license.yml + yaml: adobe-color-profile-license.yml html: adobe-color-profile-license.html - text: adobe-color-profile-license.LICENSE + license: adobe-color-profile-license.LICENSE - license_key: adobe-dng-sdk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-adobe-dng-sdk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + DNG SDK License Agreement + + NOTICE TO USER: + Adobe Systems Incorporated provides the Software and Documentation for use under the terms of this Agreement. Any download, installation, use, reproduction, modification or distribution of the Software or Documentation, or any derivatives or portions thereof, constitutes your acceptance of this Agreement. + + As used in this Agreement, "Adobe" means Adobe Systems Incorporated. "Software" means the software code, in any format, including sample code and source code, accompanying this Agreement. "Documentation" means the documents, specifications and all other items accompanying this Agreement other than the Software. + + 1. LICENSE GRANT + Software License. Subject to the restrictions below and other terms of this Agreement, Adobe hereby grants you a non-exclusive, worldwide, royalty free license to use, reproduce, prepare derivative works from, publicly display, publicly perform, distribute and sublicense the Software for any purpose. + + Document License. Subject to the terms of this Agreement, Adobe hereby grants you a non-exclusive, worldwide, royalty free license to make a limited number of copies of the Documentation for your development purposes and to publicly display, publicly perform and distribute such copies. You may not modify the Documentation. + + 2. RESTRICTIONS AND OWNERSHIP + You will not remove any copyright or other notice included in the Software or Documentation and you will include such notices in any copies of the Software that you distribute in human-readable format. + + You will not copy, use, display, modify or distribute the Software or Documentation in any manner not permitted by this Agreement. No title to the intellectual property in the Software or Documentation is transferred to you under the terms of this Agreement. You do not acquire any rights to the Software or the Documentation except as expressly set forth in this Agreement. All rights not granted are reserved by Adobe. + + 3. DISCLAIMER OF WARRANTY + ADOBE PROVIDES THE SOFTWARE AND DOCUMENTATION ONLY 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. ADOBE MAKES NO WARRANTY THAT THE SOFTWARE OR DOCUMENTATION WILL BE ERROR-FREE. To the extent permissible, any warranties that are not and cannot be excluded by the foregoing are limited to ninety (90) days. + + 4. LIMITATION OF LIABILITY + ADOBE AND ITS SUPPLIERS SHALL NOT BE LIABLE FOR LOSS OR DAMAGE ARISING OUT OF THIS AGREEMENT OR FROM THE USE OF THE SOFTWARE OR DOCUMENTATION. IN NO EVENT WILL ADOBE BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, INCIDENTAL, OR SPECIAL DAMAGES INCLUDING LOST PROFITS, LOST SAVINGS, COSTS, FEES, OR EXPENSES OF ANY KIND ARISING OUT OF ANY PROVISION OF THIS AGREEMENT OR THE USE OR THE INABILITY TO USE THE SOFTWARE OR DOCUMENTATION, HOWEVER CAUSED AND UNDER ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE), EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ADOBE'S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT PAID BY YOU FOR THE SOFTWARE AND DOCUMENTATION. + + 5. INDEMNIFICATION + If you choose to distribute the Software in a commercial product, you do so with the understanding that you agree to defend, indemnify and hold harmless Adobe against any losses, damages and costs arising from the claims, lawsuits or other legal actions arising out of such distribution. + + 6. TRADEMARK USAGE + Adobe and the DNG logo are the trademarks or registered trademarks of Adobe Systems Incorporated in the United States and other countries. Such trademarks may not be used to endorse or promote any product unless expressly permitted under separate agreement with Adobe. For information on how to license the DNG logo please go to www.adobe.com. + + 7. TERM + Your rights under this Agreement shall terminate if you fail to comply with any of the material terms or conditions of this Agreement. If all your rights under this Agreement terminate, you will immediately cease use and distribution of the Software and Documentation. + + 8. GOVERNING LAW AND JURISDICTION. This Agreement is governed by the statutes and laws of the State of California, without regard to the conflicts of law principles thereof. The federal and state courts located in Santa Clara County, California, USA, will have non-exclusive jurisdiction over any dispute arising out of this Agreement. + + 9. GENERAL + This Agreement supersedes any prior agreement, oral or written, between Adobe and you with respect to the licensing to you of the Software and Documentation. No variation of the terms of this Agreement will be enforceable against Adobe unless Adobe gives its express consent in writing signed by an authorized signatory of Adobe. If any part of this Agreement is found void and unenforceable, it will not affect the validity of the balance of the Agreement, which shall remain valid and enforceable according to its terms. + + For licensing information on the DNG File Format Specification, which is not included in the DNG SDK, please visit: http://www.adobe.com/products/dng/license.html. json: adobe-dng-sdk.json - yml: adobe-dng-sdk.yml + yaml: adobe-dng-sdk.yml html: adobe-dng-sdk.html - text: adobe-dng-sdk.LICENSE + license: adobe-dng-sdk.LICENSE - license_key: adobe-dng-spec-patent + category: Patent License spdx_license_key: LicenseRef-scancode-adobe-dng-spec-patent other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: | + DNG Specification patent license + + Digital Negative (DNG) Specification patent license + + Adobe is the publisher of the Digital Negative (DNG) Specification describing an image file format for storing camera raw information used in a wide range of hardware and software. Adobe provides the DNG Specification to the public for the purpose of encouraging implementation of this file format in a compliant manner. This document is a patent license granted by Adobe to individuals and organizations that desire to develop, market, and/or distribute hardware and software that reads and/or writes image files compliant with the DNG Specification. + + Grant of rights + + Subject to the terms below and solely to permit the reading and writing of image files that comply with the DNG Specification, Adobe hereby grants all individuals and organizations the worldwide, royalty-free, nontransferable, nonexclusive right under all Essential Claims to make, have made, use, sell, import, and distribute Compliant Implementations. + + “Compliant Implementation” means a portion of a software or hardware product that reads or writes computer files compliant with the DNG Specification. + + “DNG Specification” means any version of the Adobe DNG Specification made publicly available by Adobe (for example, version 1.0.0.0 dated September 2004). + + “Essential Claim” means a claim of a patent, whenever and wherever issued, that Adobe has the right to license without payment of royalty or other fee that is unavoidably infringed by implementation of the DNG Specification. A claim is unavoidably infringed by the DNG Specification only when it is not possible to avoid infringing when conforming with such specification because there is no technically possible noninfringing alternative for achieving such conformity. Essential Claim does not include a claim that is infringed by implementation of (a) enabling technology that may be necessary to make or use any product or portion thereof that complies with the DNG Specification but is not itself expressly set forth in the DNG Specification (for example, compiler technology and basic operating system technology), (b) technology developed elsewhere and merely incorporated by reference in the DNG Specification, or (c) the implementation of file formats other than DNG. + + Revocation + + Adobe may revoke the rights granted above to any individual or organizational licensee in the event that such licensee or its affiliates brings any patent action against Adobe or its affiliates related to the reading or writing of files that comply with the DNG Specification. + + Any Compliant Implementation distributed under this license must include the following notice displayed in a prominent manner within its source code and documentation: "This product includes DNG technology under license by Adobe.” + + No warranty + + The rights granted herein are provided on an as-is basis without warranty of any kind, including warranty of title or noninfringement. Nothing in this license shall be construed as (a) requiring the maintenance of any patent, (b) a warranty or representation as to the validity or scope of any patent, (c) a warranty or representation that any product or service will be free from infringement of any patent, (d) an agreement to bring or prosecute actions against any infringers of any patent, or (e) conferring any right or license under any patent claim other than Essential Claims. + + Reservation of rights + + All rights not expressly granted herein are reserved. json: adobe-dng-spec-patent.json - yml: adobe-dng-spec-patent.yml + yaml: adobe-dng-spec-patent.yml html: adobe-dng-spec-patent.html - text: adobe-dng-spec-patent.LICENSE + license: adobe-dng-spec-patent.LICENSE - license_key: adobe-eula + category: Commercial spdx_license_key: LicenseRef-scancode-adobe-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Patents pending in the United States and \nother countries. Adobe and Flash are either\ + \ trademarks or registered \ntrademarks in the United States and/or other countries.\n\n\ + Adobe End User License Agreement\n\nhttp://www.adobe.com/products/eulas/" json: adobe-eula.json - yml: adobe-eula.yml + yaml: adobe-eula.yml html: adobe-eula.html - text: adobe-eula.LICENSE + license: adobe-eula.LICENSE - license_key: adobe-flash-player-eula-21.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-adobe-flash-player-eula-21.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "ADOBE\nPersonal Computer Software License Agreement\n\n1. WARRANTY DISCLAIMER, BINDING\ + \ AGREEMENT AND ADDITIONAL TERMS AND AGREEMENTS.\n1.1 WARRANTY DISCLAIMER. THE SOFTWARE\ + \ AND OTHER INFORMATION IS DELIVERED TO YOU\n\"AS IS\" AND WITH ALL FAULTS. ADOBE, ITS SUPPLIERS\ + \ AND CERTIFICATION AUTHORITIES DO NOT\nAND CANNOT WARRANT THE PERFORMANCE OR RESULTS YOU\ + \ MAY OBTAIN BY USING THE\nSOFTWARE, CERTIFICATE AUTHORITY SERVICES OR OTHER THIRD PARTY\ + \ OFFERINGS. EXCEPT TO\nTHE EXTENT ANY WARRANTY, CONDITION, REPRESENTATION, OR TERM CANNOT\ + \ OR MAY NOT BE\nEXCLUDED OR LIMITED BY LAW APPLICABLE TO YOU IN YOUR JURISDICTION, ADOBE\ + \ AND ITS\nSUPPLIERS AND CERTIFICATION AUTHORITIES MAKE NO WARRANTIES CONDITIONS,\nREPRESENTATIONS,\ + \ OR TERMS (EXPRESS OR IMPLIED WHETHER BY STATUTE, COMMON LAW,\nCUSTOM, USAGE OR OTHERWISE)\ + \ AS TO ANY MATTER INCLUDING WITHOUT LIMITATION\nNONINFRINGEMENT OF THIRD PARTY RIGHTS,\ + \ MERCHANTABILITY, INTEGRATION, SATISFACTORY\nQUALITY, OR FITNESS FOR ANY PARTICULAR PURPOSE.\ + \ THE PROVISIONS OF SECTIONS 1.1 AND 10\nSHALL SURVIVE THE TERMINATION OF THIS AGREEMENT,\ + \ HOWSOEVER CAUSED, BUT THIS SHALL\nNOT IMPLY OR CREATE ANY CONTINUED RIGHT TO USE THE SOFTWARE\ + \ AFTER TERMINATION OF\nTHIS AGREEMENT.\n\n1.2 BINDING AGREEMENT: By using, copying or distributing\ + \ all or any portion of the Adobe\nSoftware, you accept all the terms and conditions of\ + \ this agreement, including, in particular, the\nprovisions on:\n- Use (Section 3);\n- Transferability\ + \ (Section 5);\n- Connectivity and Privacy (Section 7), including:\n - Updating,\n - Local\ + \ Storage,\n - Settings Manager,\n - Peer Assisted Networking Technology,\n - Content Protection\ + \ Technology, and\n - Use of Adobe Online Services;\n- Warranty Disclaimer (Section 1.1),\ + \ and;\n- Liability Limitations (Sections 10 and 17).\nUpon acceptance, this agreement is\ + \ enforceable against you and any entity that obtained the\nSoftware and on whose behalf\ + \ it is used. If you do not agree, do not Use the Software.\n\n1.3 ADDITIONAL TERMS AND\ + \ AGREEMENTS. Adobe permits you to Use the Software only in\naccordance with the terms of\ + \ this agreement. Use of some third party materials included in the\nSoftware may be subject\ + \ to other terms and conditions typically found in a separate license\nagreement, a \"Read\ + \ Me\" file located near such materials or in the \"Third Party Software Notices\nand/or\ + \ Additional Terms and Conditions\" found at http://www.adobe.com/go/thirdparty. Such other\n\ + terms and conditions will supersede all or portions of this agreement in the event of a\ + \ conflict with\nthe terms and conditions of this agreement.\n\n2. Definitions.\n\"Adobe\"\ + \ means Adobe Systems Incorporated, a Delaware corporation, 345 Park Avenue, San Jose,\n\ + California 95110, if subsection 12(a) of this agreement applies; otherwise it means Adobe\ + \ Systems\nSoftware Ireland Limited, 4-6 Riverwalk, Citywest Business Campus, Dublin 24,\ + \ Ireland, a company\norganized under the laws of Ireland and an affiliate and licensee\ + \ of Adobe Systems Incorporated. \n\"Compatible Computer\" means a Computer that conforms\ + \ to the system requirements of the Software\nas specified in the Documentation.\n\"Computer\"\ + \ means a virtual machine or physical personal electronic device that accepts information\ + \ in\ndigital or similar form and manipulates it for a specific result based on a sequence\ + \ of instructions.\n\"Personal Computer\" or \"PC\" shall mean a hardware product which\ + \ is designed and marketed with the\nprimary purpose of operating a wide variety of productivity,\ + \ entertainment, and other software\napplications provided by unrelated third party software\ + \ vendors, which operates depending upon the\nuse of a full function and full feature set\ + \ computer operating system of the type(s) then in widespread\nuse with hardware to operate\ + \ general purpose laptop, desktop, server, and large format tablet\nmicroprocessor based\ + \ computers. This definition of Personal Computer shall exclude hardware\nproducts that\ + \ are designed and/or marketed to have as their primary purpose any number of the\nfollowing:\ + \ television, television receiver, portable media player, audio/video receiver, radio, audio\n\ + headphone, audio speaker, personal digital assistant (\"PDA\"), telephone or similar telephony\ + \ based\ndevice, game console, personal video recorder (\"PVR\"), player for digital versatile\ + \ disc (\"DVD\") or other\noptical media, video camera, still camera, camcorder, video editing\ + \ and format conversion device, video\nimage projection device, and shall further exclude\ + \ any similar type of consumer, professional or\nindustrial device.\n\"Software\" means\ + \ (a) all of the contents of the files (delivered electronically or on physical media),\ + \ or\ndisk(s) or other media with which this agreement is provided, which may include (i)\ + \ Adobe or third\nparty computer information or software, including Adobe Reader® (\"Adobe\ + \ Reader\"), Adobe® AIR®\n(\"Adobe AIR\"), Adobe Flash® Player, Shockwave® Player and Authorware®\ + \ Player (collectively, Adobe AIR\nand the Flash, Shockwave and Authorware players are the\ + \ \"Adobe Runtimes\"); (ii) related explanatory\nwritten materials or files (\"Documentation\"\ + ); and (iii) fonts; and (b) upgrades, modified versions,\nupdates, additions, and copies\ + \ of the foregoing, provided to you by Adobe at any time (collectively,\n\"Updates\").\n\ + \"Use\" means to access, install, download, copy, or otherwise benefit from using the functionality\ + \ of the\nSoftware.\n\n3. Software License.\nIf you obtained the Software from Adobe or\ + \ one of its authorized licensees, and subject to your\ncompliance with the terms of this\ + \ agreement, including the restrictions in Section 4, Adobe grants to\nyou a non-exclusive\ + \ license to Use the Software in the manner and for the purposes described in the\nDocumentation\ + \ as follows:\n\n3.1 General Use. You may install and Use one copy of the Software on your\ + \ Compatible Computer. See\nSection 4 for important restrictions on the Use of the Software.\n\ + \n3.2 Server Use. This agreement does not permit you to install or Use the Software on a\ + \ computer file\nserver. For information on Use of Software on a computer file server please\ + \ refer to\nhttp://www.adobe.com/go/acrobat_distribute for information about Adobe Reader;\ + \ or\nhttp://www.adobe.com/go/licensing for information about the Adobe Runtimes.\n\n3.3\ + \ Distribution. This license does not grant you the right to sublicense or distribute the\ + \ Software. For\ninformation about obtaining the right to distribute the Software on tangible\ + \ media or through an\ninternal network or with your product or service please refer to\n\ + http://www.adobe.com/go/acrobat_distribute for information about Adobe Reader; or\nhttp://www.adobe.com/go/licensing\ + \ for information about the Adobe Runtimes.\n\n3.4 Backup Copy. You may make one backup\ + \ copy of the Software, provided your backup copy is not\ninstalled or used other than for\ + \ archival purposes. You may not transfer the rights to a backup copy\nunless you transfer\ + \ all rights in the Software as provided under Section 5. \n\n4. Obligations and Restrictions.\n\ + \n4.1 Adobe Runtime Restrictions. You will not Use any Adobe Runtime on any non-PC device\ + \ or with any\nembedded or device version of any operating system. For the avoidance of\ + \ doubt, and by example only,\nyou may not Use an Adobe Runtime on any (a) mobile device,\ + \ set top box (STB), handheld, phone,\ngame console, TV, DVD player, media center (other\ + \ than with Windows XP Media Center Edition and its\nsuccessors), electronic billboard or\ + \ other digital signage, Internet appliance or other Internet-connected\ndevice, PDA, medical\ + \ device, ATM, telematic device, gaming machine, home automation system, kiosk,\nremote\ + \ control device, or any other consumer electronics device, (b) operator-based mobile, cable,\n\ + satellite, or television system or (c) other closed system device. No right or license to\ + \ Use any Adobe\nRuntime is granted for such prohibited uses. For information on Software\ + \ license terms for non-PC\nversions of Adobe Runtimes please visit http://www.adobe.com/go/runtime_mobile_EULA.\ + \ For\ninformation on licensing Adobe Runtimes for distribution on such systems please visit\n\ + http://www.adobe.com/go/licensing.\n\n4.1.1 AVC Video Restrictions. The Software may contain\ + \ H.264/AVC video technology, the use of which\nrequires the following notice from MPEG-LA,\ + \ L.L.C.:\nTHIS SOFTWARE IS LICENSED UNDER THE AVC PATENT PORTFOLIO LICENSE FOR THE PERSONAL\n\ + AND NON-COMMERCIAL USE OF A CONSUMER TO (I) ENCODE VIDEO IN COMPLIANCE WITH THE\nAVC STANDARD\ + \ (\"AVC VIDEO\") AND/OR (II) DECODE AVC VIDEO THAT WAS ENCODED BY A\nCONSUMER ENGAGED IN\ + \ A PERSONAL AND NON-COMMERCIAL ACTIVITY AND/OR WAS OBTAINED\nFROM A VIDEO PROVIDER LICENSED\ + \ TO PROVIDE AVC VIDEO. NO LICENSE IS GRANTED OR SHALL\nBE IMPLIED FOR ANY OTHER USE. ADDITIONAL\ + \ INFORMATION MAY BE OBTAINED FROM MPEG LA,\nL.L.C. SEE http://www.adobe.com/go/mpegla.\n\ + \n4.1.2 H.264/AVC Software Encoding. The H.264/AVC software encoding functionality available\ + \ in the\nAdobe Runtimes is licensed solely for personal, non-commercial use. For more information\ + \ on\nobtaining the right to use the H.264/AVC software encoding functionality for commercial\ + \ purposes,\nplease refer to http://www.adobe.com/go/licensing.\n\n4.2 Adobe Flash Player\ + \ Restrictions. You will not use Adobe Flash Player with any application or device\nthat\ + \ circumvents technological measures for the protection of video, audio, and/or data content,\n\ + including any of Adobe’s secure RTMP measures. No right or license to use Adobe Flash Player\ + \ is\ngranted for such prohibited uses.\n\n4.3 Adobe Reader Restrictions.\n\n4.3.1 Conversion\ + \ Restrictions. You will not integrate or use Adobe Reader with any other software, plugin\n\ + or enhancement that uses or relies upon Adobe Reader when converting or transforming PDF\ + \ files\ninto a different format (e.g., a PDF file into a TIFF, JPEG, or SVG file).\n\n\ + 4.3.2 Plug-in Restrictions. You will not integrate or use Adobe Reader with any plug-in\ + \ software not\ndeveloped in accordance with the Adobe Integration Key License Agreement,\ + \ more information can be\nfound at http://www.adobe.com/go/rikla_program.\n\n4.3.3 Disabled\ + \ Features. Adobe Reader may contain features or functionalities that are hidden or appear\n\ + disabled or \"grayed out\" (the \"Disabled Features\"). Disabled Features will activate\ + \ only when opening a\nPDF document that was created using enabling technology available\ + \ only from Adobe. You will not\naccess, or attempt to access, any Disabled Features other\ + \ than through the use of such enabling\ntechnologies, nor will you rely on Adobe Reader\ + \ to create a feature substantially similar to any Disabled\nFeature or otherwise circumvent\ + \ the technology that controls activation of any such feature. For more\ninformation on\ + \ disabled features, please refer to http://www.adobe.com/go/readerextensions.\n\n4.4 Notices.\ + \ You shall not alter or remove any copyright or other proprietary notice that appears on\ + \ or\nin the Software. \n\n4.5 No Modification or Reverse Engineering. You shall not modify,\ + \ adapt, translate, or create derivative\nworks based upon the Software. You shall not reverse\ + \ engineer, decompile, disassemble, or otherwise\nattempt to discover the source code of\ + \ the Software. If you are located in the European Union, please\nrefer to the additional\ + \ terms at the end of this agreement under the header \"European Union\nProvisions,\" in\ + \ Section 16.\n\n5. Transfer.\nYou may not rent, lease, sublicense, assign, or transfer\ + \ your rights in the Software, or authorize all or any\nportion of the Software to be copied\ + \ onto another user’s Computer except as may be expressly\npermitted by this agreement.\ + \ You may, however, transfer all your rights to Use the Software to another\nperson or legal\ + \ entity provided that: (a) you also transfer (i) this agreement, and (ii) the Software\ + \ and all\nother software or hardware bundled or pre-installed with the Software, including\ + \ all copies, Updates,\nand prior versions, to such person or entity, (b) you retain no\ + \ copies, including backups and copies\nstored on a Computer, and (c) the receiving party\ + \ accepts the terms and conditions of this agreement\nand any other terms and conditions\ + \ upon which you obtained a valid license to the Software.\nNotwithstanding the foregoing,\ + \ you may not transfer education, pre-release, or not for resale copies of\nthe Software.\n\ + \n6. Intellectual Property Ownership, Reservation of Rights.\nThe Software and any authorized\ + \ copies that you make are the intellectual property of Adobe and its\nsuppliers. The structure,\ + \ organization, and code of the Software are the valuable intellectually property\n(e.g.\ + \ trade secrets and confidential information) of Adobe and its suppliers. The Software is\ + \ protected by\nlaw, including without limitation the copyright laws of the United States\ + \ and other countries, and by\ninternational treaty provisions. Except as expressly stated\ + \ herein, this agreement does not grant you any\nintellectual property rights in the Software\ + \ and all rights not expressly granted are reserved by Adobe\nand its suppliers.\n\n7. Connectivity\ + \ and Privacy. You acknowledge and agree to the following:\n\n7.1 Use of PDF Files. When\ + \ you Use the Software to open a PDF file that has been enabled to display\nads, your Computer\ + \ may connect to a website operated by Adobe, an advertiser, or other third party.\nYour\ + \ Internet Protocol address (\"IP Address\") is sent when this happens. The party hosting\ + \ the site may\nuse technology to send (or \"serve\") advertising or other electronic content\ + \ that appears in or near the\nopened PDF file. The website operator may also use JavaScript,\ + \ web beacons (also known as action tags\nor single-pixel gifs), and other technologies\ + \ to increase and measure the effectiveness of advertisements\nand to personalize advertising\ + \ content. Your communication with Adobe websites is governed by the\nAdobe Online Privacy\ + \ Policy found at http://www.adobe.com/go/privacy (\"Adobe Online Privacy\nPolicy\"). Adobe\ + \ may not have access to or control over features that a third party may use, and the\n\ + information practices of third party websites are not covered by the Adobe Online Privacy\ + \ Policy.\n\n7.2 Updating. If your Computer is connected to the Internet, the Software may,\ + \ without additional\nnotice, check for Updates that are available for automatic download\ + \ and installation to your Computer\nand let Adobe know the Software is successfully installed.\ + \ For Reader, Updates may be automatically\ndownloaded but not installed without additional\ + \ notice unless you change your preferences to accept\nautomatic installation. Only non-personally\ + \ identifying information is transmitted to Adobe when this\nhappens, except to the extent\ + \ that IP Addresses may be considered personally identifiable in some\njurisdictions. The\ + \ use of such information, including your IP Address, as provided by the auto update\nprocess\ + \ is governed by the Adobe Online Privacy Policy. Please consult the Documentation for\n\ + information about changing default update settings at http://www.adobe.com/go/settingsmanager\ + \ for\nFlash Player, http://www.adobe.com/go/update_details_url (or successor website) for\ + \ Reader, and\nhttp://www.adobe.com/go/air_update_details for Adobe AIR. \n\n7.3 Local Storage.\ + \ Flash Player and Adobe AIR may allow third parties to store certain information on\nyour\ + \ Computer in a local data file known as a local shared object. The type and amount of information\n\ + that the third party application requests to be stored in a local shared object can vary\ + \ by application and\nsuch requests are controlled by the third party. To find more information\ + \ on local shared objects and\nlearn how to limit or control the storage of local shared\ + \ objects on your Computer, please visit\nhttp://www.adobe.com/go/flashplayer_security.\n\ + \n7.4 Settings Manager. Flash Player and third-party programs using Adobe AIR may save certain\ + \ user\nsettings by storing them on your Computer as a local shared object. These settings\ + \ do not contain\npersonally identifiable information associated with you. They are associated\ + \ with the instance of Flash\nPlayer or the third-party program using Adobe AIR on your\ + \ Computer, allowing you to customize\nruntime features. The Flash Player Settings Manager\ + \ permits you to modify such settings, including the\nability to limit third parties from\ + \ storing local shared objects or grant third party content the right to\naccess your computer’s\ + \ microphone and camera. You can find more information on how to configure\nsettings in\ + \ your version of Flash Player, including information on how to disable local shared objects\n\ + using the Flash Player Settings Manager, at http://www.adobe.com/go/settingsmanager. You\ + \ can\nremove equivalent settings for third-party programs using Adobe AIR by uninstalling\ + \ the third-party\nprogram.\n\n7.5 Peer Assisted Networking Technology. Adobe Flash Player\ + \ and Adobe AIR runtimes provide the\nability for applications built by third parties to\ + \ connect to an Adobe Server or Service and permit direct\ncommunication between two Adobe\ + \ Runtime clients or to connect an Adobe Runtime client as part of a\npeer or distributed\ + \ network that allows a portion of your resources, such as network bandwidth, to be\nmade\ + \ directly available to other participants. Prior to joining such peer or distributed network,\ + \ you will\nbe provided with the opportunity to accept such connectivity. You can manage\ + \ Peer Assisted\nNetworking settings using the Flash Player Settings Manager. Learn more\ + \ about using the Settings\nManager at http://www.adobe.com/go/settingsmanager. You can\ + \ find more information on Peer\nAssisted Networking at http://www.adobe.com/go/RTMFP.\n\ + \n7.6 Content Protection Technology. If you Use the Adobe Runtimes to access content that\ + \ has been\nprotected with Adobe Flash Media Rights Management Server or Flash Access software\ + \ (\"Content\nProtection\"), in order to let you play the protected content, the Software\ + \ may automatically request\nmedia usage rights and individualization from a server on the\ + \ Internet, and may download and install\nrequired components of the Software, including\ + \ any available Content Protection Updates. You can\nclear the content license information\ + \ using the Flash Player Settings Manager. Learn more about using\nthe Settings Manager\ + \ at http://www.adobe.com/go/settingsmanager. You can find more information on\nContent\ + \ Protection at http://www.adobe.com/go/protected_content.\n\n7.7 Use of Adobe Online Services.\ + \ If your Computer is connected to the Internet, the Software may,\nwithout additional notice\ + \ and on an intermittent or regular basis, facilitate your access to content and\nservices\ + \ that are hosted on websites maintained by Adobe or its affiliates (\"Adobe Online Services\"\ + ).\nExamples of such Adobe Online Services might include, but are not limited to: Acrobat.com.\ + \ In some\ncases an Adobe Online Service might appear as a feature or extension within the\ + \ Software even though\nit is hosted on a website. In some cases, access to an Adobe Online\ + \ Service might require a separate\nsubscription or other fee in order to access it, and/or\ + \ your assent to additional terms of use. Adobe\nOnline Services might not be available\ + \ in all languages or to residents of all countries and Adobe may, at\nany time and for\ + \ any reason, modify or discontinue the availability of any Adobe Online Service. Adobe\n\ + also reserves the right to begin charging a fee for access to or use of an Adobe Online\ + \ Service that was\npreviously offered at no charge. If your Computer is connected to the\ + \ Internet, the Software may,\nwithout additional notice, update downloadable materials\ + \ from these Adobe Online Services so as to\nprovide immediate availability of these Adobe\ + \ Online Services even when you are offline. When the\nSoftware connects to the Internet\ + \ as a function of an Adobe Online Service, your IP Address, user name,\nand password may\ + \ be sent to Adobe’s servers and stored by Adobe in accordance with the Additional\nTerms\ + \ of Use or the \"help\" menu in the Software. This information may be used by Adobe to\ + \ send you\ntransactional messages to facilitate the Adobe Online Service. Adobe may display\ + \ in-product marketing\nto provide information about the Software and other Adobe products\ + \ and Services, including but not \nlimited to Adobe Online Services, based on certain Software\ + \ specific features including but not limited\nto, the version of the Software, including\ + \ without limitation, platform version, version of the Software,\nand language. For further\ + \ information about in-product marketing, please see the \"help\" menu in the\nSoftware.\ + \ Whenever the Software makes an Internet connection and communicates with an Adobe\nwebsite,\ + \ whether automatically or due to explicit user request, the Adobe Online Privacy Policy\ + \ shall\napply. Additionally, unless you are provided with separate terms of use at that\ + \ time, the Adobe.com\nTerms of Use (http://www.adobe.com/go/terms) shall apply. Please\ + \ note that the Adobe Privacy Policy\nallows tracking of website visits and it addresses\ + \ in detail the topic of tracking and use of cookies, web\nbeacons, and similar devices.\n\ + \n8. Third Party Offerings. You acknowledge and agree to the following:\n\n8.1 Third Party\ + \ Offerings. The Software may allow you to access and interoperate with third party\ncontent,\ + \ software applications, and data services, including rich Internet applications (\"Third\ + \ Party\nOfferings\"). Your access to and use of any Third Party Offering, including any\ + \ goods, services, or\ninformation, is governed by the terms and conditions respecting such\ + \ offerings and copyright laws of the\nUnited States and other countries. Third Party Offerings\ + \ are not owned or provided by Adobe. You agree\nthat you will not use any of such Third\ + \ Party Offerings in violation of copyright laws of the United States\nor other countries.\ + \ Adobe or the third party may at any time, for any reason, modify or discontinue the\n\ + availability of any Third Party Offerings. Adobe does not control, endorse, or accept responsibility\ + \ for\nThird Party Offerings. Any dealings between you and any third party in connection\ + \ with a Third Party\nOfferings, including such party’s privacy policies and use of your\ + \ personal information, delivery of and\npayment for goods and services, and any other terms,\ + \ conditions, warranties, or representations\nassociated with such dealings, are solely\ + \ between you and such third party. Third Party Offerings might\nnot be available in all\ + \ languages or to residents of all countries and Adobe or the third party may, at any\n\ + time and for any reason, modify or discontinue the availability of any Third Party Offerings.\n\ + \n8.2 EXCEPT AS EXPRESSLY AGREED BY ADOBE OR ITS AFFILIATES OR A THIRD PARTY IN A SEPARATE\n\ + AGREEMENT, YOUR USE OF ADOBE AND THIRD PARTY OFFERINGS IS AT YOUR OWN RISK UNDER\nTHE WARRANTY\ + \ AND LIABILITY LIMITATIONS OF SECTIONS 1.1 AND 10.\n\n9. Digital Certificates. You acknowledge\ + \ and agree to the following:\n\n9.1 Use. Adobe AIR uses digital certificates to help you\ + \ identify the publisher of Adobe AIR applications\ncreated by third parties. Additionally,\ + \ Adobe AIR uses digital certificates to establish the identity of\nservers accessed via\ + \ the Transport Layer Security (TLS) protocol, including access via HTTPS. Adobe\nReader\ + \ uses digital certificates to sign and validate signatures within PDF documents and to\ + \ validate\ncertified PDF documents. Adobe Runtimes use digital certificates to secure protected\ + \ content from\nunauthorized usage. Your Computer may connect to the Internet at the time\ + \ of validation of a digital\ncertificate in order to download current certificate revocation\ + \ lists (CRLs) or to update the list of digital\ncertificates. This access may be made both\ + \ by the Software and by applications based on the Software.\nDigital certificates are issued\ + \ by third party certificate authorities, including Adobe Certified Document\nServices (CDS)\ + \ vendors listed at http://www.adobe.com/go/partners_cds and Adobe Approved Trust\nList\ + \ (AATL) vendors listed at http://www.adobe.com/go/aatl, and individualization vendors found\ + \ at\nhttp://www.adobe.com/go/protected_content (collectively \"Certification Authorities\"\ + ), or can be selfsigned.\n\n9.2 Terms and Conditions. Purchase, use and reliance upon digital\ + \ certificates are the responsibility of\nyou and a Certification Authority. Before you\ + \ rely upon any certified document, digital signature, or\nCertification Authority services,\ + \ you should review the applicable terms and conditions under which the\nrelevant Certification\ + \ Authority provides services, including, for example, any subscriber agreements,\nrelying\ + \ party agreements, certificate policies, and practice statements. See the links on\nhttp://www.adobe.com/go/partners_cds\ + \ for information about Adobe’s CDS vendors and\nhttp://www.adobe.com/go/aatl for information\ + \ about Adobe’s AATL vendors. \n\n9.3 Acknowledgement. You agree that (a) a digital certificate\ + \ may have been revoked prior to the time\nof verification, making the digital signature\ + \ or certificate appear valid when in fact it is not, (b) the\nsecurity or integrity of\ + \ a digital certificate may be compromised due to an act or omission by the signer\nof the\ + \ document, the applicable Certification Authority, or any other third party, and (c) a\ + \ certificate may\nbe a self-signed certificate not provided by a Certification Authority.\ + \ YOU ARE SOLELY RESPONSIBLE\nFOR DECIDING WHETHER OR NOT TO RELY ON A CERTIFICATE. UNLESS\ + \ A SEPARATE WRITTEN\nWARRANTY IS PROVIDED TO YOU BY A CERTIFICATION AUTHORITY, YOU USE\ + \ DIGITAL\nCERTIFICATES AT YOUR SOLE RISK.\n\n9.4 Third Party Beneficiaries. You agree that\ + \ any Certification Authority you rely upon is a third party\nbeneficiary of this agreement\ + \ and shall have the right to enforce this agreement in its own name as if it\nwere Adobe.\n\ + \n9.5 Indemnity. You agree to hold Adobe and any applicable Certification Authority (except\ + \ as expressly\nprovided in its terms and conditions) harmless from any and all liabilities,\ + \ losses, actions, damages, or\nclaims (including all reasonable expenses, costs, and attorneys\ + \ fees) arising out of or relating to any use\nof, or reliance on, by you or any third party\ + \ that receives a document from you with a digital certificate,\nany service of such authority,\ + \ including, without limitation (a) reliance on an expired or revoked\ncertificate, (b)\ + \ improper verification of a certificate, (c) use of a certificate other than as permitted\ + \ by any\napplicable terms and conditions, this agreement, or applicable law; (d) failure\ + \ to exercise reasonable\njudgment under the circumstances in relying on issuer services\ + \ or certificates, or (e) failure to perform\nany of the obligations as required in the\ + \ terms and conditions related to the services.\n\n10. Limitation of Liability.\nIN NO EVENT\ + \ WILL ADOBE, ITS SUPPLIERS, OR CERTIFICATION AUTHORITIES BE LIABLE TO YOU FOR\nANY DAMAGES,\ + \ CLAIMS OR COSTS WHATSOEVER INCLUDING ANY CONSEQUENTIAL, INDIRECT,\nINCIDENTAL DAMAGES,\ + \ OR ANY LOST PROFITS OR LOST SAVINGS, EVEN IF AN ADOBE\nREPRESENTATIVE HAS BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, OR CLAIMS.\nTHE FOREGOING LIMITATIONS AND EXCLUSIONS\ + \ APPLY TO THE EXTENT PERMITTED BY APPLICABLE\nLAW IN YOUR JURISDICTION. ADOBE’S AGGREGATE\ + \ LIABILITY AND THAT OF ITS SUPPLIERS AND\nCERTIFICATION AUTHORITIES UNDER OR IN CONNECTION\ + \ WITH THIS AGREEMENT SHALL BE\nLIMITED TO THE AMOUNT PAID FOR THE SOFTWARE, IF ANY. Nothing\ + \ contained in this agreement\nlimits Adobe’s liability to you in the event of death or\ + \ personal injury resulting from Adobe’s negligence\nor for the tort of deceit (fraud).\ + \ Adobe is acting on behalf of its suppliers and Certification Authorities for\nthe purpose\ + \ of disclaiming, excluding, and/or limiting obligations, warranties, and liability as provided\ + \ in\nthis agreement, but in no other respects and for no other purpose. For further information,\ + \ please see\nthe jurisdiction specific information at the end of this agreement, if any,\ + \ or contact Adobe’s Customer\nSupport Department.\n\n11. Export Rules.\nYou agree that\ + \ the Software will not be shipped, transferred, or exported into any country or used in\ + \ any\nmanner prohibited by the United States Export Administration Act or any other export\ + \ laws, restrictions,\nor regulations (collectively the \"Export Laws\"). In addition, if\ + \ the Software is identified as export\ncontrolled items under the Export Laws, you represent\ + \ and warrant that you are not a citizen, or\notherwise located within, an embargoed nation\ + \ (including without limitation Iran, Syria, Sudan, Cuba,\nand North Korea) and that you\ + \ are not otherwise prohibited under the Export Laws from receiving the\nSoftware. All rights\ + \ to Use the Software are granted on condition that such rights are forfeited if you fail\n\ + to comply with the terms of this agreement. \n\n12. Governing Law.\nIf you are a consumer\ + \ who uses the Software for only personal non-business purposes, then this\nagreement will\ + \ be governed by the laws of the state in which you purchased the license to use the\nSoftware.\ + \ If you are not such a consumer, this agreement will be governed by and construed in\n\ + accordance with the substantive laws in force in: (a) the State of California, if a license\ + \ to the Software is\nobtained when you are in the United States, Canada, or Mexico; or\ + \ (b) Japan, if a license to the Software\nis obtained when you are in Japan; or (c) Singapore,\ + \ if a license to the Software is obtained when you\nare in a member state of the Association\ + \ of Southeast Asian Nations, the People’s Republic of China\n(including Hong Kong S.A.R.\ + \ and Macau S.A.R.), Taiwan, or the Republic of Korea; or (d) England, if a\nlicense to\ + \ the Software is obtained when you are in any jurisdiction not described above. The respective\n\ + courts of Santa Clara County, California when California law applies, Tokyo District Court\ + \ in Japan, when\nJapanese law applies, and the competent courts of London, England, when\ + \ the law of England applies,\nshall each have non-exclusive jurisdiction over all disputes\ + \ relating to this agreement. When Singapore\nlaw applies, any dispute arising out of or\ + \ in connection with this agreement, including any question\nregarding its existence, validity,\ + \ or termination, shall be referred to and finally resolved by arbitration in\nSingapore\ + \ in accordance with the Arbitration Rules of the Singapore International Arbitration Centre\n\ + (\"SIAC\") for the time being in force, which rules are deemed to be incorporated by reference\ + \ in this\nsection. There shall be one arbitrator, selected jointly by the parties. If the\ + \ arbitrator is not selected\nwithin thirty (30) days of the written demand by a party to\ + \ submit to arbitration, the Chairman of the\nSIAC shall make the selection. The language\ + \ of the arbitration shall be English. Notwithstanding any\nprovision in this agreement,\ + \ Adobe or you may request any judicial, administrative, or other authority to\norder any\ + \ provisional or conservatory measure, including injunctive relief, specific performance,\ + \ or other\nequitable relief, prior to the institution of legal or arbitration proceedings,\ + \ or during the proceedings, for\nthe preservation of its rights and interests or to enforce\ + \ specific terms that are suitable for provisional\nremedies. The English version of this\ + \ agreement will be the version used when interpreting or\nconstruing this agreement. This\ + \ agreement will not be governed by the conflict of law rules of any\njurisdiction or the\ + \ United Nations Convention on Contracts for the International Sale of Goods, the\napplication\ + \ of which is expressly excluded.\n\n13. General Provisions.\nIf any part of this agreement\ + \ is found void and unenforceable, it will not affect the validity of the balance\nof this\ + \ agreement, which shall remain valid and enforceable according to its terms. This agreement\ + \ shall\nnot prejudice the statutory rights of any party dealing as a consumer. This agreement\ + \ may only be\nmodified by a writing signed by an authorized officer of Adobe. Updates may\ + \ be licensed to you by\nAdobe with additional or different terms. This is the entire agreement\ + \ between Adobe and you relating\nto the Software and it supersedes any prior representations,\ + \ discussions, undertakings, communications,\nor advertising relating to the Software.\n\ + \n14. Notice to U.S. Government End Users.\nFor U.S. Government End Users, Adobe agrees\ + \ to comply with all applicable equal opportunity laws\nincluding, if appropriate, the provisions\ + \ of Executive Order 11246, as amended, Section 402 of the\nVietnam Era Veterans Readjustment\ + \ Assistance Act of 1974 (38 USC 4212), and Section 503 of the\nRehabilitation Act of 1973,\ + \ as amended, and the regulations at 41 CFR Parts 60-1 through 60-60,\n60-250, and 60-741.\ + \ The affirmative action clause and regulations contained in the preceding sentence\nshall\ + \ be incorporated by reference in this agreement.\n\n15. Compliance with Licenses.\nIf you\ + \ are a business or organization, you agree that upon request from Adobe or Adobe’s authorized\n\ + representative, you will, within thirty (30) days, fully document and certify that use of\ + \ any and all\nSoftware at the time of the request is in conformity with your valid licenses\ + \ from Adobe. \n\n16. European Union Provisions.\nNothing included in this agreement (including\ + \ Section 4.5) shall limit any non-waivable right to\ndecompile the Software that you may\ + \ enjoy under mandatory law. For example, if you are located in the\nEuropean Union (EU),\ + \ you may have the right upon certain conditions specified in the applicable law to\ndecompile\ + \ the Software if it is necessary to do so in order to achieve interoperability of the Software\n\ + with another software program, and you have first asked Adobe in writing to provide the\ + \ information\nnecessary to achieve such interoperability and Adobe has not made such information\ + \ available. In\naddition, such decompilation may only be done by you or someone else entitled\ + \ to use a copy of the\nSoftware on your behalf. Adobe has the right to impose reasonable\ + \ conditions before providing such\ninformation. Any information supplied by Adobe or obtained\ + \ by you, as permitted hereunder, may only\nbe used by you for the purpose described herein\ + \ and may not be disclosed to any third party or used to\ncreate any software which is substantially\ + \ similar to the expression of the Software or used for any other\nact which infringes Adobe\ + \ or its licensors’ copyright.\n\n17. Specific Provisions and Exceptions.\n\n17.1 Limitation\ + \ of Liability for Users Residing in Germany and Austria.\n\n17.1.1 If you obtained the\ + \ Software in Germany or Austria, and you usually reside in such country, then\nSection\ + \ 10 does not apply. Instead, subject to the provisions in Section 17.1.2, Adobe’s statutory\ + \ liability\nfor damages shall be limited as follows: (a) Adobe shall be liable only up\ + \ to the amount of damages as\ntypically foreseeable at the time of entering into the license\ + \ agreement in respect of damages caused by\na slightly negligent breach of a material contractual\ + \ obligation and (b) Adobe shall not be liable for\ndamages caused by a slightly negligent\ + \ breach of a non-material contractual obligation.\n\n17.1.2 The aforesaid limitation of\ + \ liability shall not apply to any mandatory statutory liability, in\nparticular, to liability\ + \ under the German Product Liability Act, liability for assuming a specific guarantee\n\ + or liability for culpably caused personal injuries.\n\n17.1.3 You are required to take all\ + \ reasonable measures to avoid and reduce damages, in particular to\nmake back-up copies\ + \ of the Software and your computer data subject to the provisions of this\nagreement.\n\ + \nIf you have any questions regarding this agreement, or if you wish to request any information\ + \ from\nAdobe, please use the address and contact information included with this product\ + \ or via the web at\nhttp://www.adobe.com to contact the Adobe office serving your jurisdiction.\n\ + \nAdobe, Adobe AIR, AIR, Authorware, Flash, Reader, and Shockwave are either registered\ + \ trademarks or\ntrademarks of Adobe Systems Incorporated in the United States and/or other\ + \ countries.\n\nPlatformClients_PC_WWEULA-en_US-20110809_1357" json: adobe-flash-player-eula-21.0.json - yml: adobe-flash-player-eula-21.0.yml + yaml: adobe-flash-player-eula-21.0.yml html: adobe-flash-player-eula-21.0.html - text: adobe-flash-player-eula-21.0.LICENSE + license: adobe-flash-player-eula-21.0.LICENSE - license_key: adobe-flex-4-sdk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-adobe-flex-4-sdk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "ADOBE SYSTEMS INCORPORATED\nSOFTWARE DEVELOPMENT KIT\nLICENSE AGREEMENT\nAdobe® Flex®\ + \ 4 SDK\n\n1. NO WARRANTY, LIMITATION OF LIABILITY, BINDING AGREEMENT AND ADDITIONAL TERMS\ + \ AND AGREEMENTS.\n\n1.1 WARRANTY DISCLAIMER. YOU ACKNOWLEDGE THAT THE SDK MAY BE PRONE\ + \ TO BUGS AND/OR STABILITY ISSUES. THE SDK IS PROVIDED TO YOU \"AS IS,\" AND ADOBE AND ITS\ + \ SUPPLIERS DISCLAIM ANY WARRANTY OR LIABILITY OBLIGATIONS TO YOU OF ANY KIND. YOU ACKNOWLEDGE\ + \ THAT ADOBE MAKES NO EXPRESS, IMPLIED, OR STATUTORY WARRANTY OF ANY KIND WITH RESPECT TO\ + \ THE SDK INCLUDING ANY WARRANTY WITH REGARD TO PERFORMANCE, MERCHANTABILITY, SATISFACTORY\ + \ QUALITY, NONINFRINGEMENT OR FITNESS FOR ANY PARTICULAR PURPOSE. YOU BEAR THE ENTIRE RISK\ + \ AS TO THE QUALITY AND PERFORMANCE OF THE SDK AND YOUR USE OF AND OUTPUT FROM THE SDK.\ + \ Adobe is not obligated to provide maintenance, technical support or updates to you for\ + \ any portion of the SDK. The foregoing limitations, exclusions and limitations shall apply\ + \ to the maximum extent permitted by applicable law, even if any remedy fails its essential\ + \ purpose.\n\n1.2 LIMITATION OF LIABILITY. IN NO EVENT WILL ADOBE OR ITS SUPPLIERS BE LIABLE\ + \ TO YOU FOR ANY LOSSES, DAMAGES, CLAIMS OR COSTS WHATSOEVER INCLUDING ANY CONSEQUENTIAL,\ + \ INDIRECT OR INCIDENTAL DAMAGES, ANY LOST PROFITS OR LOST SAVINGS, ANY DAMAGES RESULTING\ + \ FROM BUSINESS INTERRUPTION, PERSONAL INJURY OR FAILURE TO MEET ANY DUTY OF CARE, OR CLAIMS\ + \ BY A THIRD PARTY EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF\ + \ SUCH LOSSES, DAMAGES, CLAIMS OR COSTS. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY\ + \ TO THE EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION. ADOBE’S AGGREGATE LIABILITY\ + \ AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE LIMITED\ + \ TO THE AMOUNT PAID FOR THE SDK, IF ANY. THIS LIMITATION ON ADOBE AND ITS SUPPLIERS WILL\ + \ APPLY EVEN IN THE EVENT OF A FUNDAMENTAL OR MATERIAL BREACH OR A BREACH OF THE FUNDAMENTAL\ + \ OR MATERIAL TERMS OF THIS AGREEMENT. Nothing contained in this Agreement limits Adobe’s,\ + \ or its suppliers, liability to you in the event of death or personal injury resulting\ + \ from Adobe’s negligence or for the tort of deceit (fraud). Adobe is acting on behalf of\ + \ its suppliers for the purpose of disclaiming, excluding and limiting obligations, warranties\ + \ and liability, but in no other respects and for no other purpose.\n\n1.3 Binding Agreement.\ + \ This Agreement governs installation and use of the Flex SDK. You agree that this Agreement\ + \ is like any written negotiated agreement signed by you. By clicking to acknowledge agreement\ + \ to be bound during review of an electronic version of this Agreement or by downloading,\ + \ copying, installing or using any portion of this SDK, you accept all the terms and conditions\ + \ of this Agreement. This Agreement is enforceable against you and any person or entity\ + \ that obtains this SDK or on whose behalf they are used: for example, your employer. If\ + \ you do not agree to the terms of this Agreement, do not use any portion of this SDK. This\ + \ Agreement shall apply to any portion of the SDK, regardless of whether other software\ + \ is referred to or described herein.\n\n1.4 Additional Terms and Agreements. You may have\ + \ a separate written agreement with Adobe that supplements or supersedes all or portions\ + \ of this Agreement. Your use of some third party materials included in the SDK may be subject\ + \ to other terms and conditions typically found in a separate license agreement or a \"\ + Read Me\" file located near such materials or in the \"Third Party Software Notices and/or\ + \ Additional Terms and Conditions\" found at http://www.adobe.com/go/thirdparty. Such other\ + \ terms and conditions may require you to pass through notices to your end users. Such other\ + \ terms and conditions will supersede all or portions of this Agreement in the event of\ + \ a conflict with the terms and conditions of this Agreement.\n\n2. Definitions.\n\n2.1\ + \ \"Adobe\" means Adobe Systems Incorporated, a Delaware corporation, 345 Park Avenue, San\ + \ Jose, California 95110, if Section 9(a) of this Agreement applies; otherwise it means\ + \ Adobe Systems Software Ireland Limited, 4-6 Riverwalk, Citywest Business Campus, Dublin\ + \ 24, Ireland, a company organized under the laws of Ireland and an affiliate and licensee\ + \ of Adobe Systems Incorporated.\n\n2.2 \"Authorized Users\" means employees and individual\ + \ contractors (i.e., temporary employees) of you.\n\n2.3 \"Build Tools\" means build files,\ + \ compilers, runtime libraries (but not the complete Runtime Software), and other tools\ + \ accompanying this Agreement, including, for example, the contents of the bin, lib, and\ + \ runtime directories, adl.exe, adl.bat and adt.jar.\n\n2.4 \"Developer Programs\" means\ + \ your applications, libraries, components or programs that are created using portions of\ + \ this SDK in accordance with the terms of this Agreement.\n\n2.5 \"Documentation\" means\ + \ the written materials accompanying this Agreement, including, for example, technical specifications,\ + \ file format documentation and application programming interface (API) information.\n\n\ + 2.6 \"Effective Date\" means the date that you download or otherwise access the any portion\ + \ of the SDK.\n\n2.7 \"Material Improvement\" means perceptible, measurable and definable\ + \ improvements that provide extended or additional significant and primary functionality\ + \ and adds significant business value.\n\n2.8 \"Professional Component Source Files\" means,\ + \ if you receive the Build Tools and Documentation in connection with licensing Adobe Flash®\ + \ Builder™, each Flex Framework source code file that is provided with the SDK in a directory\ + \ or directories as specified by Adobe from time to time.\n\n2.9 \"Runtime Components\"\ + \ means any of the individual files, libraries, or executable code contained in the Runtime\ + \ Software directory (e.g. the runtime folder) or the Runtime Software utilities included\ + \ with the utilities directory or installer files.\n\n2.10 \"Runtime Software\" means the\ + \ Adobe runtime software in object code format named \"Adobe AIR\" or \"Adobe Flash Player\ + \ \"that is to be installed by end-users and all updates to such software made available\ + \ by Adobe.\n\n2.11 \"Sample Code\" means sample software in source code format and found\ + \ in directories labeled \"samples\" and \"templates\" and any other directory or directories\ + \ as specified by Adobe from time to time.\n\n2.12 \"SDK\" means the Build Tools, Documentation,\ + \ Professional Component Source File, Runtime Components, Runtime Software, Sample Code,\ + \ SDK Source Files, files, libraries and executables that are described in a \"Read Me\"\ + \ file or other similar file as being included as part of the Flex Software Development\ + \ Kit, including the build files, compilers, and related information, as well as the file\ + \ format specifications, if any, and any related information accompanying this Flex Software\ + \ Development Kit, including any updates thereto, that are downloaded to your computer or\ + \ otherwise used by you.\n\n2.13 \"SDK Source Files\" means source code files included in\ + \ the directory \"frameworks\" that accompany this Agreement.\n\n3. License and License\ + \ Restrictions.\nSubject to the terms and conditions of this Agreement, Adobe grants to\ + \ you a non-exclusive, non-transferable license to use this SDK according to the terms and\ + \ conditions of this Agreement, on the licensed platforms and configurations.\n\n3.1 Build\ + \ Tools, Documentation, Professional Component Source Files, Sample Code and SDK Source\ + \ Files.\n\n3.1.1 Build Tools and Documentation. Subject to the terms and conditions of\ + \ this Agreement and except as otherwise expressly provided in this Agreement, Adobe grants\ + \ you a non-exclusive, nontransferable license to (a) use the Build Tools and Documentation\ + \ for the sole purpose of internally developing Developer Programs, and (b) use the Build\ + \ Tools and Documentation as part of your website for the sole purpose of compiling the\ + \ Developer Programs that are distributed through the your website. This Agreement does\ + \ not grant you the right to distribute the Build Tools, Documentation or Runtime Software.\ + \ For more information about obtaining the rights to distribute such components with your\ + \ product or service, please refer to http://www.adobe.com/go/redistributeairsdk and http://opensource.adobe.com/wiki/display/flexsdk/Legal+Stuff.\n\ + \n3.1.2 Professional Component Source Files. With respect to each Professional Component\ + \ Source Files and subject to the terms and conditions of this Agreement, if your version\ + \ of the SDK includes Professional Component Source Files, Adobe grants you a non-exclusive,\ + \ nontransferable license to (a) modify and reproduce such Professional Component Source\ + \ File for use as a component of your Developer Programs provided that you add Material\ + \ Improvements to such Professional Component Source File; (b) distribute such Professional\ + \ Component Source File in object code form and/or source code form only as a component\ + \ of Developer Programs that add Material Improvements to such Professional Component Source\ + \ File subject to the requirements in Section 3.2 below; and (c) for the avoidance of doubt,\ + \ you shall have no rights to the Professional Component Source Files (or the object code\ + \ form of such files), except to the extent such Professional Component Source Files are\ + \ provided to you in connection with your licensing of Flash Builder Premium.\n\n3.1.3 Sample\ + \ Code.\n(a) Distribution with Developer Programs. You may modify the Sample Code solely\ + \ for the purposes of designing, developing and testing your own Developer Programs. However,\ + \ you are permitted to use, copy and redistribute its modified Sample Code only if all of\ + \ the following conditions in 3.2 below are met.\n(b) Distribution of Sample Code Stand-Alone.\ + \ You may distribute Sample Code in source code or object code format on a stand-alone basis\ + \ or as bundled with other software, as long as you first make modifications to such Sample\ + \ Code that result in Material Improvements.\n\n3.1.4 SDK Source Files.\n(a) You may modify\ + \ the SDK Source Files provided to you in human readable (i.e. source code) format. You\ + \ may incorporate the modified SDK Source Files into your Developer Programs. You may not\ + \ modify any other portions of the SDK, except as explicitly set forth in in this Agreement.\ + \ You may not delete or in any manner alter the copyright notices, trademarks, logos or\ + \ related notices, or other proprietary notices of Adobe (and its licensors, if any) appearing\ + \ on or within any portion of this SDK other than Sample Code or SDK Source Files that constitute\ + \ Material Improvements by you in accordance with this Agreement; \n(b) You may distribute\ + \ SDK Source Files in source code or object code format on a stand-alone basis or as bundled\ + \ with other components useful to developers, as long as you first make modifications to\ + \ such files that result in Material Improvements, and provided that you include a copyright\ + \ notice reflecting copyright ownership in such modified files.\n\n3.2 Additional Distribution\ + \ Requirements. If you distribute Professional Component Source Files, Sample Code or SDK\ + \ Source Files under this Agreement, you must (a) include a copyright notice in such code,\ + \ files, the relevant Developer Program or other larger work incorporating such code or\ + \ files, including every location in which any other copyright notice appears in such application\ + \ and (b) distribute such object code and/or source code under the terms and conditions\ + \ of an end user license agreement that provides (i) a prohibition against reverse engineering,\ + \ decompiling, disassembling or otherwise attempting to discover the source code of the\ + \ subject Developer Program that is substantially similar to the prohibition set forth in\ + \ Section 3.3.1 below; (ii) a statement that your suppliers disclaim all warranties, conditions,\ + \ representations or terms with respect to the subject Developer Program; and (iii) a limitation\ + \ of liability that disclaims all liability for the benefit of your suppliers. You may not\ + \ delete or in any manner alter the copyright notices, trademarks, logos or related notices,\ + \ or other proprietary rights notices of Adobe (and its licensors, if any) appearing on\ + \ or within such Professional Component Source File and/or Build Tools and Documentation,\ + \ or any documentation relating to the Build Tools and Documentation. You may not make any\ + \ statement that any Developer Program or other software is \"certified\" or otherwise guaranteed\ + \ by Adobe. You may not use Adobe’s name, trademarks or logos to market any Developer Program\ + \ or other software without written permission from Adobe. Adobe is not responsible to you\ + \ or any other party for any software updates or support or other liability that may arise\ + \ from your distribution. You may not use \"flex,\" \"flash,\" \"fl\", \"adobe\" or \"air\"\ + \ in any new package or class names distributed with the Professional Component Source Files,\ + \ Sample Code, or SDK Source Files. You agree to identify any modified files with a prominent\ + \ notice stating that you have changed the file. Any Developer Programs developed by you\ + \ will be designed to operate in connection with Adobe Flash Builder, Adobe Flex Data Services\ + \ Software, Adobe LiveCycle Data Services, the Runtime Software or with portions of this\ + \ SDK.\n\n3.3 Restrictions.\n\n3.3.1 No Modifications, No Reverse Engineering. Except as\ + \ specifically provided herein, you shall not (a) modify, port, adapt or translate the any\ + \ portion of this SDK; (b) add or delete any program files that would modify the functionality\ + \ and/or appearance of other Adobe software and/or any component thereof; or (c) reverse\ + \ engineer, decompile, disassemble or otherwise attempt to discover the source code of any\ + \ portion of this SDK. Notwithstanding the foregoing, decompiling the SDK is permitted to\ + \ the extent the laws of your jurisdiction give you the right to do so to obtain information\ + \ necessary to render the licensed portions of the SDK interoperable with other software;\ + \ provided, however, that you must first request such information from Adobe and Adobe may,\ + \ in its sole discretion, either provide such information to you or impose reasonable conditions,\ + \ including a reasonable fee, on such use of the source code to ensure that Adobe’s and\ + \ its suppliers’ proprietary rights in the source code for the SDK are protected.\n\n3.3.2\ + \ No Unbundling. The SDK may include various applications, utilities and components, may\ + \ support multiple platforms and languages or may be provided to you on multiple media or\ + \ in multiple copies. Nonetheless, the SDK is designed and provided to you as a single product\ + \ to be used as a single product on computers and platforms as permitted herein. You are\ + \ not required to use all component parts of the SDK, but you shall not unbundle or repackage\ + \ the component parts of the SDK for distribution, transfer, resale or use on different\ + \ computers.\n\n3.3.3 No Transfer. You shall not sublicense, assign or transfer the SDK\ + \ or your rights in the SDK, or authorize any portion of the SDK to be copied onto or accessed\ + \ from another individual’s or entity’s computer except as may be explicitly provided in\ + \ this Agreement. Notwithstanding anything to the contrary in this Section 3.3.3, you may\ + \ transfer copies of the SDK installed on one of your computers to another one of your computers\ + \ provided that the resulting installation and use of the SDK is in accordance with the\ + \ terms of this Agreement and does not cause you to exceed your right to use the SDK under\ + \ this Agreement.\n\n3.3.4 Prohibited Use. Except as expressly authorized under this Agreement,\ + \ you are prohibited from: (a) using the SDK on behalf of third parties; (b) renting, leasing,\ + \ lending or granting other rights in the SDK, including rights on a membership or subscription\ + \ basis; and (c) providing use of the SDK in a computer service business, third party outsourcing\ + \ facility or service, service bureau arrangement, network, or time sharing basis; (d) creating\ + \ or distributing any software, including any Developer Program, that interoperates with\ + \ individual Runtime Components in a manner not documented by Adobe; (e) creating or distributing\ + \ any software, including any Developer Programs, that is designed to interoperate with\ + \ an un-installed instance of the Runtime Software; (f) distributing your Developer Program\ + \ as an AIR application, if such application does not interoperate with the Runtime Software;\ + \ (g) creating or distributing any Developer Program that runs without installation; (h)\ + \ installing or using the Build Tools or other portions of the SDK to develop software prohibited\ + \ by this Section 3.3. Failure to comply with this Section 3.3.4 is a breach of this Agreement\ + \ that immediately terminates all rights granted to you herein.\n\n3.3.5 Other Prohibitions.\ + \ You will not use the SDK to create, develop or use any program, software or service that\ + \ (a) contains any viruses, Trojan horses, worms, time bombs, cancelbots or other computer\ + \ programming routines that are intended to damage, detrimentally interfere with, surreptitiously\ + \ intercept or expropriate any system, data or personal information, (b) when used in the\ + \ manner in which it is intended or marketed, violates any law, statute, ordinance, regulation\ + \ or rights (including any laws, regulations or rights respecting intellectual property,\ + \ computer spyware, privacy, export control, unfair competition, antidiscrimination or false\ + \ advertising), or (c) interferes with the operability of Adobe or third-party programs\ + \ or software.\n\n3.3.6 AVC Codec Use. PORTIONS OF THIS PRODUCT ARE LICENSED UNDER THE AVC\ + \ PATENT PORTFOLIO LICENSE FOR THE PERSONAL NON-COMMERCIAL USE OF A CONSUMER TO (i) ENCODE\ + \ VIDEO IN COMPLIANCE WITH THE AVC STANDARD (\"AVC VIDEO\") AND/OR (ii) DECODE AVC VIDEO\ + \ THAT WAS ENCODED BY A CONSUMER ENGAGED IN A PERSONAL NON-COMMERCIAL ACTIVITY AND/OR WAS\ + \ OBTAINED FROM A VIDEO PROVIDER LICENSED TO PROVIDE AVC VIDEO. NO LICENSE IS GRANTED OR\ + \ SHALL BE IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED FROM MPEG LA,\ + \ L.L.C. SEE http://www.mpegla.com.\n\n4. Indemnification.\nYou agree to defend, indemnify,\ + \ and hold Adobe and its suppliers harmless from and against any and all liabilities, losses,\ + \ actions, damages, lawsuits, or claims (including product liability, warranty and intellectual\ + \ property claims, and all reasonable expenses, costs and attorneys fees), that arise or\ + \ result from the use or distribution of any portion of the SDK or your Developer Programs,\ + \ provided that Adobe gives you prompt written notice of any such claim, and cooperates\ + \ with you, at your expense, in defending or settling such claim.\n\n5. Intellectual Property\ + \ Rights.\nThe SDK and any copies that you are authorized by Adobe to make are the intellectual\ + \ property of and are owned by Adobe Systems Incorporated and its suppliers. The structure,\ + \ organization and code of the SDK are the valuable trade secrets and confidential information\ + \ of Adobe Systems Incorporated and its suppliers. The SDK is protected by copyright, including\ + \ by United States Copyright Law, international treaty provisions and applicable laws in\ + \ the country in which it is being used. Except as expressly stated herein, this Agreement\ + \ does not grant you any intellectual property rights in the SDK and all rights not expressly\ + \ granted are reserved by Adobe.\n\n6. MP3 Codec Use.\nYou may not modify the runtime libraries\ + \ or any other Build Tools. You may not access MP3 codecs within the runtime libraries other\ + \ than through the published runtime APIs. Development, use or distribution of a Developer\ + \ Program that operates on non-PC devices and that decodes MP3 data not contained within\ + \ a SWF, FLV or other file format that contains more than MP3 data may require one or more\ + \ third-party license(s).\n\n7. Export Rules.\nYou acknowledge that this SDK is subject\ + \ to the U.S. Export Administration Regulations (the \"EAR\") and that you will comply with\ + \ the EAR. You will not export or re-export this SDK, or any portion hereof, directly or\ + \ indirectly, to: (1) any countries that are subject to US export restrictions (currently\ + \ including, but not necessarily limited to, Cuba, Iran, North Korea, Sudan, and Syria);\ + \ (2) any end user who you know or have reason to know will utilize them in the design,\ + \ development or production of nuclear, chemical or biological weapons, or rocket systems,\ + \ space launch vehicles, and sounding rockets, or unmanned air vehicle systems; or (3) any\ + \ end user who has been prohibited from participating in the US export transactions by any\ + \ federal agency of the US government. In addition, you are responsible for complying with\ + \ any local laws in your jurisdiction which may impact your right to import, export or use\ + \ the SDK. \n\n8. Adobe AIR Trademark Guidelines.\n\"Adobe® AIR®\" is a trademark of Adobe\ + \ that may not be used by others except under a written license from Adobe. You may not\ + \ incorporate the Adobe AIR trademark, or any other Adobe trademark, in whole or in part,\ + \ in the title of your Developer Programs or in your company name, domain name or the name\ + \ of a service related to Adobe AIR. You may indicate the interoperability of its Developer\ + \ Program with the Adobe AIR Runtime Software, if true, by stating, for example, \"works\ + \ with Adobe® AIR®\" or \"for Adobe® AIR®.\" You may use the Adobe AIR trademark to refer\ + \ to your Developer Program as an \"Adobe® AIR® application\" only as a statement that your\ + \ Developer Program interoperates with the Adobe AIR Runtime Software.\n\n9. Governing Law.\n\ + If you are a consumer who uses the SDK for only personal non-business purposes, then this\ + \ Agreement will be governed by the laws of the state in which you purchased the license\ + \ to use the SDK. If you are not such a consumer, this Agreement will be governed by and\ + \ construed in accordance with the substantive laws in force in: (a) the State of California,\ + \ if a license to the SDK is obtained when you are in the United States, Canada, or Mexico;\ + \ or (b) Japan, if a license to the SDK is obtained when you are in Japan, China, Korea,\ + \ or other Southeast Asian country where all official languages are written in either an\ + \ ideographic script (e.g., Hanzi, Kanji, or Hanja), and/or other script based upon or similar\ + \ in structure to an ideographic script, such as hangul or kana; or (c) England, if a license\ + \ to the SDK is obtained when you are in any jurisdiction not described above. The respective\ + \ courts of Santa Clara County, California when California law applies, Tokyo District Court\ + \ in Japan, when Japanese law applies, and the competent courts of London, England, when\ + \ the law of England applies, shall each have non-exclusive jurisdiction over all disputes\ + \ relating to this Agreement. This Agreement will not be governed by the conflict of law\ + \ rules of any jurisdiction or the United Nations Convention on Contracts for the International\ + \ Sale of Goods, the application of which is expressly excluded.\n\n10. Non-Blocking of\ + \ Adobe Development.\nYou acknowledge that Adobe is currently developing or may develop\ + \ technologies and products in the future that have or may have design and/or functionality\ + \ similar to products that you may develop based on your license herein. Nothing in this\ + \ Agreement shall impair, limit or curtail Adobe’s right to continue with its development,\ + \ maintenance and/or distribution of Adobe’s technology or products. You agree that you\ + \ shall not assert in any way any patent owned by you arising out of or in connection with\ + \ this SDK or modifications made thereto against Adobe, its subsidiaries or affiliates,\ + \ or their customers, direct or indirect, agents and contractors for the manufacture, use,\ + \ import, licensing, offer for sale or sale of any Adobe products.\n\n11. Term and Termination.\n\ + This Agreement will commence upon the Effective Date and continue in perpetuity unless terminated\ + \ as set forth herein. Adobe may terminate this Agreement immediately if you breach any\ + \ of its terms. Sections 1, 2, 3.3, 4, 5, 6, 7, 8, 9, 10, 11, 12, and 13 will survive any\ + \ termination of this Agreement. Upon termination of this Agreement, you will cease all\ + \ use and distribution of the SDK and return to Adobe or destroy (with written confirmation\ + \ of destruction) the SDK promptly at Adobe’s request, together with any copies thereof.\n\ + \n12. General Provisions.\nIf any part of this Agreement is found void and unenforceable,\ + \ it will not affect the validity of the balance of this Agreement, which shall remain valid\ + \ and enforceable according to its terms. Updates may be licensed to you by Adobe with additional\ + \ or different terms. The English version of this Agreement shall be the version used when\ + \ interpreting or construing this Agreement. This is the entire agreement between Adobe\ + \ and you relating to the SDK and it supersedes any prior representations, discussions,\ + \ undertakings, communications or advertising relating to the SDK. The use of \"includes\"\ + \ or \"including\" in this Agreement shall mean \"including without limitation.\"\n\n13.\ + \ Notice to U.S. Government End Users.\nThe SDK and any Documentation are \"Commercial Item(s),\"\ + \ as that term is defined at 48 C.F.R. Section 2.101, consisting of \"Commercial Computer\ + \ Software\" and \"Commercial Computer Software Documentation,\" as such terms are used\ + \ in 48 C.F.R. Section 12.212 or 48 C.F.R. Section 227.7202, as applicable. Consistent with\ + \ 48 C.F.R. Section 12.212 or 48 C.F.R. Sections 227.7202-1 through 227.7202-4, as applicable,\ + \ the Commercial Computer Software and Commercial Computer Software Documentation are being\ + \ licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those\ + \ rights as are granted to all other end users pursuant to the terms and conditions herein.\ + \ Unpublished-rights reserved under the copyright laws of the United States. Adobe Systems\ + \ Incorporated, 345 Park Avenue, San Jose, CA 95110-2704, USA.\n\n14. Third-Party Beneficiary.\n\ + You acknowledge and agree that Adobe’s licensors (and/or Adobe if you obtained the SDK from\ + \ any party other than Adobe) are third party beneficiaries of this Agreement, with the\ + \ right to enforce the obligations set forth herein with respect to the respective technology\ + \ of such licensors and/or Adobe.\nAdobe, AIR, Flash Builder, Flex and LiveCycle are either\ + \ registered trademarks or trademarks of Adobe Systems Incorporated in the United States\ + \ and/or other countries.\n\nAdobe_Flex_Software_Development_Kit-en_US-20100101_1530" json: adobe-flex-4-sdk.json - yml: adobe-flex-4-sdk.yml + yaml: adobe-flex-4-sdk.yml html: adobe-flex-4-sdk.html - text: adobe-flex-4-sdk.LICENSE + license: adobe-flex-4-sdk.LICENSE - license_key: adobe-flex-sdk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-adobe-flex-sdk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "ADOBE SYSTEMS INCORPORATED\nADOBE FLEX SOFTWARE DEVELOPMENT KIT\nSoftware License Agreement.\n\ + \nNOTICE TO USER: THIS LICENSE AGREEMENT GOVERNS INSTALLATION AND USE OF THE ADOBE SOFTWARE\ + \ DESCRIBED HEREIN BY LICENSEES OF SUCH SOFTWARE. LICENSEE AGREES THAT THIS AGREEMENT IS\ + \ LIKE ANY WRITTEN NEGOTIATED AGREEMENT SIGNED BY LICENSEE. BY CLICKING TO ACKNOWLEDGE AGREEMENT\ + \ TO BE BOUND DURING REVIEW OF AN ELECTRONIC VERSION OF THIS LICENSE, OR DOWNLOADING, COPYING,\ + \ INSTALLING OR USING THE SOFTWARE, LICENSEE ACCEPTS ALL THE TERMS AND CONDITIONS OF THIS\ + \ AGREEMENT. THIS AGREEMENT IS ENFORCEABLE AGAINST ANY PERSON OR ENTITY THAT INSTALLS AND\ + \ USES THE SOFTWARE AND ANY PERSON OR ENTITY (E.G., SYSTEM INTEGRATOR, CONSULTANT OR CONTRACTOR)\ + \ THAT INSTALLS OR USES THE SOFTWARE ON ANOTHER PERSON’S OR ENTITY’S BEHALF.\n\nTHIS AGREEMENT\ + \ SHALL APPLY ONLY TO THE SOFTWARE TO WHICH LICENSEE HAS OBTAINED A VALID LICENSE, REGARDLESS\ + \ OF WHETHER OTHER SOFTWARE IS REFERRED TO OR DESCRIBED HEREIN.\n\nLICENSEE’S RIGHTS UNDER\ + \ THIS AGREEMENT MAY BE SUBJECT TO ADDITIONAL TERMS AND CONDITIONS IN A SEPARATE WRITTEN\ + \ AGREEMENT WITH ADOBE THAT SUPPLEMENTS OR SUPERSEDES ALL OR PORTIONS OF THIS AGREEMENT.\n\ + \n1. Definitions.\n\n1.1 \"Adobe\" means Adobe Systems Incorporated, a Delaware corporation,\ + \ 345 Park Avenue, San Jose, California 95110, if subsection 7(a) of this Agreement applies;\ + \ otherwise it means Adobe Systems Software Ireland Limited, Unit 3100, Lake Drive, City\ + \ West Campus, Saggart D24, Dublin, Republic of Ireland, a company organized under the laws\ + \ of Ireland and an affiliate and licensee of Adobe Systems Incorporated.\n\n1.2 \"Authorized\ + \ Users\" means employees and individual contractors (i.e., temporary employees) of Licensee.\n\ + \n1.3 \"Computer\" means one or more central processing units (\"CPU\") in a hardware device\ + \ (including hardware devices accessed by multiple users through a network (\"Server\"))\ + \ that accepts information in digital or similar form and manipulates it for a specific\ + \ result based on a sequence of instructions.\n\n1.4 \"Internal Network\" means Licensee’s\ + \ private, proprietary network resource accessible only by Authorized Users. \"Internal\ + \ Network\" specifically excludes the Internet (as such term is commonly defined) or any\ + \ other network community open to the public, including membership or subscription driven\ + \ groups, associations or similar organizations. Connection by secure links such as VPN\ + \ or dial up to Licensee’s Internal Network for the purpose of allowing Authorized Users\ + \ to use the SDK Components should be deemed use over an Internal Network.\n\n1.5 \"Sample\ + \ Code\" means sample software in source code format and found in directories labeled \"\ + samples\" and \"templates.\"\n\n1.6 \"SDK Components\" means the files, libraries, and executables\ + \ (i) contained in the directories labeled flex_sdk_3, or as applicable, subsequently labeled\ + \ directories(e.g.flex_sdk_4, etc.) , and/or (ii) that are described in a \"Read Me\" file\ + \ or other similar file as being included as part of the Flex Software Development Kit and/or\ + \ SDK Components and governed by this Agreement, including the Professional Component Source\ + \ Files (as defined below in Section 2.1), build files, compilers, and related information,\ + \ as well as the file format specifications, if any.\n\n2. License.\n\nSubject to the terms\ + \ and conditions of this Agreement, Adobe grants to Licensee a perpetual, non-exclusive\ + \ license to use the SDK Components delivered hereunder according to the terms and conditions\ + \ of this Agreement, on Computers connected to Licensee’s Internal Network, on the licensed\ + \ platforms and configurations.\n\n2.1 SDK Components.\n\n2.1.1 License Grant.\n\n(a) SDK\ + \ Components. Subject to the terms and conditions of this Agreement, Adobe grants Licensee\ + \ a non-exclusive, nontransferable license to (A) use the SDK Components for the sole purpose\ + \ of internally developing Developer Programs, and (B) use the SDK Components as part of\ + \ Licensee’s website for the sole purpose of compiling the Developer Programs that are distributed\ + \ through the Licensee’s website.\n\n(b) Professional Component Source Files. Subject to\ + \ the terms and conditions of this Agreement, with respect to each Professional Component\ + \ Source File, Adobe grants Licensee a non-exclusive, nontransferable license to (A) modify\ + \ and reproduce such Professional Component Source File (as defined below) for use as a\ + \ component of Developer Programs that add Material Improvements to such Professional Component\ + \ Source File, and (B) distribute such Professional Component Source File in object code\ + \ form and/or source code form only as a component of Developer Programs that add Material\ + \ Improvements to such Professional Component Source File, provided that (1) such Developer\ + \ Programs are designed to operate in connection with Adobe Flex Builder, Adobe Flex Data\ + \ Services Software, Adobe LiveCycle Data Services Software or the SDK Components, (2) Licensee\ + \ distributes such object code and/or source code under the terms and conditions of an End\ + \ User License Agreement, (3) Licensee includes a copyright notice reflecting the copyright\ + \ ownership of Developer in such Developer Programs, (4) Licensee shall be solely responsible\ + \ to its customers for any update or support obligation or other liability which may arise\ + \ from such distribution, (5) Licensee does not make any statements that its Developer Program\ + \ is \"certified,\" or that its performance is guaranteed, by Adobe, (6) Licensee does not\ + \ use Adobe’s name or trademarks to market its Developer Programs without written permission\ + \ of Adobe, (7) Licensee does not delete or in any manner alter the copyright notices, trademarks,\ + \ logos or related notices, or other proprietary rights notices of Adobe (and its licensors,\ + \ if any) appearing on or within such Professional Component Source File and/or SDK Components,\ + \ or any documentation relating to the SDK Components, (8) Licensee causes any modified\ + \ files to carry prominent notices stating that Licensee changed the files, (9) Licensee\ + \ does not use \"mx,\" \"mxml,\" \"flex,\" \"flash,\" \"livecycle\" or \"adobe\" in any\ + \ new package or class names distributed with such Professional Component Source File, and\ + \ (10) Licensee complies with the below Adobe® AIR™ Trademark Use Terms. Any modified or\ + \ merged portion of Professional Component Source Files is subject to this Agreement. For\ + \ the avoidance of doubt, Licensee shall have no rights to the Professional Component Source\ + \ Files (or the object code form of such files), except to the extent such Professional\ + \ Component Source Files are provided to Licensee in connection with Licensee’s licensing\ + \ of Flex Builder Professional.\n\n(c) \"Adobe® AIR™\" is a trademark of Adobe that may\ + \ not be used by others except under a written license from Adobe. Licensee may not incorporate\ + \ the Adobe AIR trademark, or any other Adobe trademark, in whole or in part, in the title\ + \ of your Developer Programs or in your company name, domain name or the name of a service\ + \ related to Adobe AIR. Licensee may indicate the interoperability of its Developer Program\ + \ with the Adobe AIR runtime software, if true, by stating, for example, \"works with Adobe®\ + \ AIR™\" or \"for Adobe® AIR™.\" Licensee may use the Adobe AIR trademark to refer to its\ + \ Developer Program as an \"Adobe® AIR™ application\" only as a statement that its Developer\ + \ Program interoperates with the Adobe AIR runtime software. For purposes of this Agreement,\ + \ the terms in this paragraph shall constitute the \"Adobe® AIR™ Trademark Use Terms.\"\n\ + \n2.1.2 Definitions Related To SDK Components.\n\n(a) \"Developer Programs\" shall mean\ + \ programs that are built consisting partly of the Professional Component Source Files and\ + \ other SDK Components and partly of user’s Material Improvement to add to or extend the\ + \ Professional Component Source Files.\n\n(b) \"End User License Agreement\" means an end\ + \ user license agreement that provides a: (1) limited, nonexclusive right to use the subject\ + \ Developer Program; (2) set of provisions that ensures that any sublicensee of Licensee\ + \ exercising the rights in such End User License Agreement complies with all restrictions\ + \ and obligations set forth herein with respect to SDK Components; (3) prohibition against\ + \ reverse engineering, decompiling, disassembling or otherwise attempting to discover the\ + \ source code of the subject Developer Program that is substantially similar to that set\ + \ forth in Section 2.3.1 below; (4) statement that, if Licensee’s customer requires any\ + \ Adobe software in order to use the Developer Program, (i) Licensee’s customer must obtain\ + \ such Adobe software via a valid license, and (ii) Licensee’s customer’s use of such Adobe\ + \ software must be in accordance with the terms and conditions of the end user license agreement\ + \ that ships with such Adobe software; (5) statement that Licensee and its suppliers retain\ + \ all right, title and interest in the subject Developer Program that is substantially similar\ + \ to that set forth as Section 3 below, (6) statement that Licensee’s suppliers disclaim\ + \ all warranties, conditions, representations or terms with respect to the subject Developer\ + \ Program, and (7) limit of liability that disclaims all liability for the benefit of Licensee’s\ + \ suppliers.\n\n(c) \"Material Improvement\" shall mean perceptible, measurable and definable\ + \ improvements to the Professional Component Source Files that provide extended or additional\ + \ significant and primary functionality that add significant business value to the Professional\ + \ Component Source Files.\n\n(d) \"Professional Component Source File\" shall mean, if Licensee\ + \ receives the SDK Components in connection with licensing Flex Builder, each Flex Framework\ + \ source code file that is provided with the SDK Components in the directory labeled fbpro\ + \ and/or another directory or directories as specified by Adobe from time to time.\n\n2.1.3\ + \ Restrictions.\n\n(a) General Restrictions. Except for the limited distribution rights\ + \ as provided in Section 2.1.1 above with respect to Professional Component Source Files,\ + \ Licensee may not distribute, sell, sublicense, rent, loan, or lease the SDK Components\ + \ and/or any component thereof to any third party. Licensee also agrees not to add or delete\ + \ any program files that would modify the functionality and/or appearance of other Adobe\ + \ software and/or any component thereof. \n\n(b) Development Restrictions. Licensee agrees\ + \ that Licensee will not use the SDK Components to create, develop or use any program, software\ + \ or service which (1) contains any viruses, Trojan horses, worms, time bombs, cancelbots\ + \ or other computer programming routines that are intended to damage, detrimentally interfere\ + \ with, surreptitiously intercept or expropriate any system, data or personal information;\ + \ (2) when used in the manner in which it is intended, violates any material law, statute,\ + \ ordinance or regulation (including without limitation the laws and regulations governing\ + \ export control, unfair competition, antidiscrimination or false advertising); or (3) interferes\ + \ with the operability of other Adobe or third-party programs or software.\n\n(c) Indemnification.\ + \ Licensee agrees to defend, indemnify, and hold Adobe and its suppliers harmless from and\ + \ against any claims or lawsuits, including attorneys’ reasonable fees, that arise or result\ + \ from the use or distribution of Developer Programs, provided that Adobe gives Licensee\ + \ prompt written notice of any such claim, tenders to Licensee the defense or settlement\ + \ of such a claim at Licensee’s expense, and cooperates with Licensee, at Licensee’s expense,\ + \ in defending or settling such claim.\n\n2.2 Sample Code. Licensee may modify the Sample\ + \ Code solely for the purposes of designing, developing and testing Licensee’s own software\ + \ applications. However, Licensee is permitted to use, copy and redistribute its modified\ + \ Sample Code only if all of the following conditions are met: (a) Licensee includes Adobe’s\ + \ copyright notice (if any) with Licensee’s application, including every location in which\ + \ any other copyright notice appears in such application; and (b) Licensee does not otherwise\ + \ use Adobe’s name, logos or other Adobe trademarks to market Licensee’s application. Licensee\ + \ agrees to defend, indemnify, and hold Adobe and its suppliers harmless from and against\ + \ any claims or lawsuits, including attorneys’ reasonable fees, that arise or result from\ + \ the use or distribution of Licensee’s applications, provided that Adobe gives Licensee\ + \ prompt written notice of any such claim, tenders to Licensee the defense or settlement\ + \ of such a claim at Licensee’s expense, and cooperates with Licensee, at Licensee’s expense,\ + \ in defending or settling such claim.\n\n2.3 Restrictions\n\n2.3.1 No Modifications, No\ + \ Reverse Engineering. Except as specifically provided herein , Licensee shall not modify,\ + \ port, adapt or translate the SDK Components. Licensee shall not reverse engineer, decompile,\ + \ disassemble or otherwise attempt to discover the source code of the SDK Components. Notwithstanding\ + \ the foregoing, decompiling the SDK Components is permitted to the extent the laws of Licensee’s\ + \ jurisdiction give Licensee the right to do so to obtain information necessary to render\ + \ the SDK Components interoperable with other software; provided, however, that Licensee\ + \ must first request such information from Adobe and Adobe may, in its discretion, either\ + \ provide such information to Licensee or impose reasonable conditions, including a reasonable\ + \ fee, on such use of the source code to ensure that Adobe’s and its suppliers’ proprietary\ + \ rights in the source code for the SDK Components are protected.\n\n2.3.2 No Unbundling.\ + \ The SDK Components may include various applications, utilities and components, may support\ + \ multiple platforms and languages or may be provided to Licensee on multiple media or in\ + \ multiple copies. Nonetheless, the SDK Components are designed and provided to Licensee\ + \ as a single product to be used as a single product on Computers and platforms as permitted\ + \ herein. Licensee is not required to use all component parts of the SDK Components, but\ + \ Licensee shall not unbundle the component parts of the SDK Components for use on different\ + \ Computers. Licensee shall not unbundle or repackage the SDK Components for distribution,\ + \ transfer or resale.\n\n2.3.3 No Transfer. Licensee shall not sublicense, assign or transfer\ + \ the SDK Components or Licensee’s rights in the SDK Components, or authorize any portion\ + \ of the SDK Components to be copied onto or accessed from another individual’s or entity’s\ + \ Computer except as may be explicitly provided in this Agreement. Notwithstanding anything\ + \ to the contrary in this Section 2.3.3, Licensee may transfer copies of the SDK Components\ + \ installed on one of Licensee’s Computers to another one of Licensee’s Computers provided\ + \ that the resulting installation and use of the SDK Components is in accordance with the\ + \ terms of this Agreement and does not cause Licensee to exceed Licensee’s right to use\ + \ the SDK Components under this Agreement.\n\n2.3.4 Prohibited Use. Except as expressly\ + \ authorized under this Agreement, Licensee is prohibited from: (a) using the SDK Components\ + \ on behalf of third parties; (b) renting, leasing, lending or granting other rights in\ + \ the SDK Components including rights on a membership or subscription basis; and (c) providing\ + \ use of the SDK Components in a computer service business, third party outsourcing facility\ + \ or service, service bureau arrangement, network, or time sharing basis.\n\n2.3.5 Export\ + \ Rules. Licensee agrees that the SDK Components will not be shipped, transferred or exported\ + \ into any country or used in any manner prohibited by the United States Export Administration\ + \ Act or any other export laws, restrictions or regulations (collectively the \"Export Laws\"\ + ). In addition, if the SDK Components is identified as an export controlled item under the\ + \ Export Laws, Licensee represents and warrants that Licensee is not a citizen of, or located\ + \ within, an embargoed or otherwise restricted nation (including Iran, Iraq, Syria, Sudan,\ + \ Libya, Cuba and North Korea) and that Licensee is not otherwise prohibited under the Export\ + \ Laws from receiving the SDK Components. All rights to install and use the SDK Components\ + \ are granted on condition that such rights are forfeited if Licensee fails to comply with\ + \ the terms of this Agreement.\n\n3. Intellectual Property Rights.\n\nThe SDK Components\ + \ and any copies that Licensee is authorized by Adobe to make are the intellectual property\ + \ of and are owned by Adobe Systems Incorporated and its suppliers. The structure, organization\ + \ and code of the SDK Components are the valuable trade secrets and confidential information\ + \ of Adobe Systems Incorporated and its suppliers. The SDK Components is protected by copyright,\ + \ including without limitation by United States Copyright Law, international treaty provisions\ + \ and applicable laws in the country in which it is being used. Except as expressly stated\ + \ herein, this Agreement does not grant Licensee any intellectual property rights in the\ + \ SDK Components and all rights not expressly granted are reserved by Adobe.\n\n4. Updates.\n\ + \nIf the SDK Components is an upgrade or update to a previous version of the SDK Components,\ + \ Licensee must possess a valid license to such previous version in order to use such upgrade\ + \ or update. All upgrades and updates are provided to Licensee subject to the terms of this\ + \ Agreement on a license exchange basis. Licensee agrees that by using an upgrade or update,\ + \ Licensee voluntarily terminates Licensee’s right to use any previous version of the SDK\ + \ Components. As an exception, Licensee may continue to use previous versions of the SDK\ + \ Components on Licensee’s Computers after Licensee obtains the upgrade or update but only\ + \ for a reasonable period of time to assist Licensee in the transition to the upgrade or\ + \ update, and further provided that such simultaneous use shall not be deemed to increase\ + \ the number of copies, licensed amounts or scope of use granted to Licensee hereunder.\ + \ Upgrades and updates may be licensed to Licensee by Adobe with additional or different\ + \ terms.\n\n5. NO WARRANTY.\n\nNo Warranty. Licensee acknowledges that the SDK Components\ + \ is provided to Licensee \"AS IS,\" and Adobe disclaims any warranty or liability obligations\ + \ to Licensee of any kind. Licensee acknowledges that ADOBE MAKES NO EXPRESS, IMPLIED, OR\ + \ STATUTORY WARRANTY OF ANY KIND WITH RESPECT TO THE SDK COMPONENTS INCLUDING, BUT NOT LIMITED\ + \ TO, ANY WARRANTY WITH REGARD TO PERFORMANCE, MERCHANTABILITY, SATISFACTORY QUALITY, NONINFRINGEMENT\ + \ OR FITNESS FOR ANY PARTICULAR PURPOSE. Adobe is not obligated to provide maintenance,\ + \ technical support or updates to Licensee for any SDK Components. The foregoing limitations,\ + \ exclusions and limitations shall apply to the maximum extent permitted by applicable law,\ + \ even if any remedy fails its essential purpose.\n\n6. LIMITATION OF LIABILITY.\n\nIN NO\ + \ EVENT WILL ADOBE, ITS AFFILIATES OR ITS SUPPLIERS BE LIABLE TO LICENSEE FOR ANY LOSS,\ + \ DAMAGES, CLAIMS OR COSTS WHATSOEVER INCLUDING ANY CONSEQUENTIAL, INDIRECT OR INCIDENTAL\ + \ DAMAGES, ANY LOST PROFITS OR LOST SAVINGS, ANY DAMAGES RESULTING FROM BUSINESS INTERRUPTION,\ + \ PERSONAL INJURY OR FAILURE TO MEET ANY DUTY OF CARE, OR CLAIMS BY A THIRD PARTY EVEN IF\ + \ AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS\ + \ OR COSTS. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE\ + \ LAW IN LICENSEE’S JURISDICTION. ADOBE’S AGGREGATE LIABILITY AND THAT OF ITS AFFILIATES\ + \ AND SUPPLIERS UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT\ + \ PAID FOR THE SDK COMPONENTS, IF ANY. THIS LIMITATION WILL APPLY EVEN IN THE EVENT OF A\ + \ FUNDAMENTAL OR MATERIAL BREACH OR A BREACH OF THE FUNDAMENTAL OR MATERIAL TERMS OF THIS\ + \ AGREEMENT. Nothing contained in this Agreement limits Adobe’s liability to Licensee in\ + \ the event of death or personal injury resulting from Adobe’s negligence or for the tort\ + \ of deceit (fraud). Adobe is acting on behalf of its affiliates and suppliers for the purpose\ + \ of disclaiming, excluding and limiting obligations, warranties and liability, but in no\ + \ other respects and for no other purpose. For further information, please see the jurisdiction\ + \ specific information at the end of this agreement, if any, or contact Adobe’s Licensee\ + \ Support Department.\n\n7. Governing Law. \n\nThis Agreement, each transaction entered\ + \ into hereunder, and all matters arising from or related to this Agreement (including its\ + \ validity and interpretation), will be governed and enforced by and construed in accordance\ + \ with the substantive laws in force in: (a) the State of California, if a license to the\ + \ SDK Components is acquired when Licensee is in the United States, Canada, or Mexico; or\ + \ (b) Japan, if a license to the SDK Components is acquired when Licensee is in Japan, China,\ + \ Korea, or other Southeast Asian country where all official languages are written in either\ + \ an ideographic script (e.g., hanzi, kanji, or hanja), and/or other script based upon or\ + \ similar in structure to an ideographic script, such as hangul or kana; or (c) England,\ + \ if a license to the SDK Components is purchased when Licensee is in any other jurisdiction\ + \ not described above. The respective courts of Santa Clara County, California when California\ + \ law applies, Tokyo District Court in Japan, when Japanese law applies, and the competent\ + \ courts of London, England, when the law of England applies, shall each have non-exclusive\ + \ jurisdiction over all disputes relating to this Agreement. This Agreement will not be\ + \ governed by the conflict of law rules of any jurisdiction or the United Nations Convention\ + \ on Contracts for the International Sale of Goods, the application of which is expressly\ + \ excluded.\n\n8. General Provisions.\n\nIf any part of this Agreement is found void and\ + \ unenforceable, it will not affect the validity of the balance of this Agreement, which\ + \ shall remain valid and enforceable according to its terms. Updates may be licensed to\ + \ Licensee by Adobe with additional or different terms. The English version of this Agreement\ + \ shall be the version used when interpreting or construing this Agreement. This is the\ + \ entire agreement between Adobe and Licensee relating to the SDK Components and it supersedes\ + \ any prior representations, discussions, undertakings, communications or advertising relating\ + \ to the SDK Components.\n\n9. Notice to U.S. Government End Users.\n\n9.1 Commercial Items.\ + \ The SDK Components and any documentation are \"Commercial Item(s),\" as that term is defined\ + \ at 48 C.F.R. Section 2.101, consisting of \"Commercial Computer Software\" and \"Commercial\ + \ Computer Software Documentation,\" as such terms are used in 48 C.F.R. Section 12.212\ + \ or 48 C.F.R. Section 227.7202, as applicable. Consistent with 48 C.F.R. Section 12.212\ + \ or 48 C.F.R. Sections 227.7202-1 through 227.7202-4, as applicable, the Commercial Computer\ + \ Software and Commercial Computer Software Documentation are being licensed to U.S. Government\ + \ end users (a) only as Commercial Items and (b) with only those rights as are granted to\ + \ all other end users pursuant to the terms and conditions herein. Unpublished-rights reserved\ + \ under the copyright laws of the United States. Adobe Systems Incorporated, 345 Park Avenue,\ + \ San Jose, CA 95110-2704, USA.\n\n9.2 U.S. Government Licensing of Adobe Technology. Licensee\ + \ agrees that when licensing Adobe SDK Components for acquisition by the U.S. Government,\ + \ or any contractor therefore, Licensee will license consistent with the policies set forth\ + \ in 48 C.F.R. Section 12.212 (for civilian agencies) and 48 C.F.R. Sections 227-7202-1\ + \ and 227-7202-4 (for the Department of Defense). For U.S. Government End Users, Adobe agrees\ + \ to comply with all applicable equal opportunity laws including, if appropriate, the provisions\ + \ of Executive Order 11246, as amended, Section 402 of the Vietnam Era Veterans Readjustment\ + \ Assistance Act of 1974 (38 USC 4212), and Section 503 of the Rehabilitation Act of 1973,\ + \ as amended, and the regulations at 41 CFR Parts 60-1 through 60-60, 60-250, and 60-741.\ + \ The affirmative action clause and regulations contained in the preceding sentence shall\ + \ be incorporated by reference in this Agreement.\n\n10. Compliance with Licenses.\n\nAdobe\ + \ may, at its expense, and no more than once every twelve (12) months, appoint its own personnel\ + \ or an independent third party to verify the number of copies and installations as well\ + \ as usage of the Adobe software in use by Licensee. Any such verification shall be conducted\ + \ upon seven (7) business days notice, during regular business hours at Licensee’s offices\ + \ and shall not unreasonably interfere with Licensee’s business activities. Both Adobe and\ + \ its auditors shall execute a commercially reasonable non-disclosure agreement with Licensee\ + \ before proceeding with the verification. If such verification shows that Licensee is using\ + \ a greater number of copies of the SDK Components than that legitimately licensed, or are\ + \ deploying or using the SDK Components in any way not permitted under this Agreement and\ + \ which would require additional license fees, Licensee shall pay the applicable fees for\ + \ such additional copies within thirty (30) days of invoice date, with such underpaid fees\ + \ being the license fees as per Adobe’s then-current, country specific, license fee list.\ + \ If underpaid fees are in excess of five percent (5%) of the value of the fees paid under\ + \ this Agreement, then Licensee shall pay such underpaid fees and Adobe’s reasonable costs\ + \ of conducting the verification. This Section shall survive expiration or termination of\ + \ this Agreement for a period of two (2) years.\n\n11. Third-Party Beneficiary.\n\nLicensee\ + \ acknowledges and agrees that Adobe’s licensors (and/or Adobe if Licensee obtained the\ + \ SDK Components from any party other than Adobe) are third party beneficiaries of this\ + \ Agreement, with the right to enforce the obligations set forth herein with respect to\ + \ the respective technology of such licensors and/or Adobe.\n\n12. Specific Provisions and\ + \ Exceptions.\n\nThis section sets forth specific provisions related to certain components\ + \ of the SDK Components as well as limited exceptions to the above terms and conditions.\ + \ To the extent that any provision in this section is in conflict with any other term or\ + \ condition in this agreement, this section will supersede such other term or condition.\n\ + \n12.1 Limitation of Liability for Users Residing in Germany and Austria.\n\n12.1.1 If Licensee\ + \ obtained the SDK Components in Germany or Austria, and Licensee usually resides in such\ + \ country, then Section 6 does not apply. Instead, subject to the provisions in Section\ + \ 12.1.2, Adobe and its affiliates’ statutory liability for damages will be limited as follows:\ + \ (i) Adobe and its affiliates will be liable only up to the amount of damages as typically\ + \ foreseeable at the time of entering into the purchase agreement in respect of damages\ + \ caused by a slightly negligent breach of a material contractual obligation and (ii) Adobe\ + \ and its affiliates will not be liable for damages caused by a slightly negligent breach\ + \ of a non-material contractual obligation.\n\n12.1.2 The aforesaid limitation of liability\ + \ will not apply to any mandatory statutory liability, in particular, to liability under\ + \ the German Product Liability Act, liability for assuming a specific guarantee or liability\ + \ for culpably caused personal injuries.\n\n12.1.3 Licensee is required to take all reasonable\ + \ measures to avoid and reduce damages, in particular to make back-up copies of the SDK\ + \ Components and Licensee’s computer data subject to the provisions of this agreement.\n\ + \n13. Third Party Software.\n\nThe Software may contain third party software which requires\ + \ notices and/or additional terms and conditions. Such required third party software notices\ + \ and/or additional terms and conditions are located at http://www.adobe.com/go/thirdparty\ + \ (or a successor website thereto) and are made a part of and incorporated by reference\ + \ into this Agreement.\n\nIf Licensee has any questions regarding this agreement or if Licensee\ + \ wishes to request any information from Adobe please use the address and contact information\ + \ included with this product to contact the Adobe office serving Licensee’s jurisdiction.\n\ + \nAdobe is either a registered trademark or trademark of Adobe Systems Incorporated in the\ + \ United States and/or other countries.\n\nAdobe_Flex_Software_Development_Kit-en_US-20071221_1748" json: adobe-flex-sdk.json - yml: adobe-flex-sdk.yml + yaml: adobe-flex-sdk.yml html: adobe-flex-sdk.html - text: adobe-flex-sdk.LICENSE + license: adobe-flex-sdk.LICENSE - license_key: adobe-general-tou + category: Commercial spdx_license_key: LicenseRef-scancode-adobe-general-tou other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Adobe General Terms of Use\n\nLast updated June 18, 2014. Replaces the October 16,\ + \ 2012 version in its entirety.\n\nThese terms govern your use of our website or services\ + \ such as the Creative Cloud (collectively, \"Services\") and software that we include as\ + \ part of the Services, including any applications, Content Files (defined below), scripts,\ + \ instruction sets, and any related documentation (collectively \"Software\"). By using\ + \ the Services or Software, you agree to these terms. If you have entered into another agreement\ + \ with us concerning specific Services or Software, then the terms of that agreement controls\ + \ where it conflicts with these terms. As discussed more in Section 3 below, you retain\ + \ all rights and ownership you have in your content that you make available through the\ + \ Services.\n\n1. How this Agreement Works.\n\n1.1 Choice of Law. If you reside in North\ + \ America, your relationship is with Adobe Systems Incorporated, a United States company,\ + \ and the Services and Software are governed by the law of California, U.S.A. If you reside\ + \ outside of North America, your relationship is with Adobe Systems Software Ireland Limited,\ + \ and the Services and Software are governed by the law of Ireland. You may have additional\ + \ rights under the law. We do not seek to limit those rights to the extent prohibited by\ + \ law.\n\n1.2 Eligibility. You may only use the Services if you are (a) over 13 years old\ + \ and (b) allowed by law to enter into a binding contract.\n\n1.3 Privacy. The Privacy Policy\ + \ at http://www.adobe.com/go/privacy governs any personal information you provide to us.\ + \ By using the Services or Software you agree to the terms of the Privacy Policy.\n\n1.4\ + \ Availability. Pages describing the Services are accessible worldwide but this does not\ + \ mean all Services or service features are available in your country, or that user-generated\ + \ content available via the Services is legal in your country. We may block access to certain\ + \ Services (or certain service features or content) in certain countries. It is your responsibility\ + \ to make sure your use of the Services is legal where you use them. Services are not available\ + \ in all languages.\n\n1.5 Software. The Software is licensed, not sold, only in accordance\ + \ with these terms.\n\n1.6 Additional Terms. Some Services or Software are also subject\ + \ to the additional terms below (the \"Additional Terms\"). New Additional Terms may be\ + \ added from time to time.\nAcrobat.com \tBusiness Catalyst \tAdobe Translation Center \t\ + CS6 Software\nAdobe Content Server 4 \tDigital Publishing Suite \tPhoneGap Build \tCC 2013\ + \ Software\nBehance \tEchoSign \tTypekit \tAdobe Creative SDK\nPresenter Dashboard Service\ + \ \t \t \t \n\n1.7 Order of Precedence. If there is any conflict between the terms in\ + \ this Agreement and the Additional Terms, then the Additional Terms govern in relation\ + \ to that Service or Software.\n\n1.8 Modification. We may modify or discontinue the Services,\ + \ Software, or any portions or features thereof at any time without liability to you or\ + \ anyone else. However, we will make reasonable effort to notify you before we make the\ + \ change. We will also allow you a reasonable time to download your content. If we discontinue\ + \ a Service in its entirety, then we will provide you with a pro rata refund for any unused\ + \ fees for that Service that you may have prepaid.\n\n2. Use of Service.\n\n2.1 License.\ + \ Subject to your compliance with these terms and the law, you may access and use the Services.\n\ + \n2.2 Adobe Intellectual Property. We (and our licensors) remain the sole owner of all right,\ + \ title, and interest in the Services and Software. We reserve all rights not granted under\ + \ these terms.\n\n2.3 Storage. When the Services provide storage, we recommend that you\ + \ continue to back up your content regularly. We may create reasonable technical limits\ + \ on your content, such as limits on file size, storage space, processing capacity, and\ + \ other technical limits. We may suspend the Services until you are within the storage space\ + \ limit associated with your account.\n\n2.4 User-Generated Content. We may host user-generated\ + \ content from our users. If you access our Services, you may come across content that you\ + \ find offensive or upsetting. Your sole remedy is to simply stop viewing the content. If\ + \ available, you may also click on the ‘Report’ button to report the content to us.\n\n\ + 3. Your Content.\n\n3.1 Ownership. You retain all rights and ownership of your content.\ + \ We do not claim any ownership rights to your content.\n\n3.2 Licenses to Your Content\ + \ in Order to Operate the Services. We require certain licenses from you to your content\ + \ to operate and enable the Services. When you upload content to the Services, you grant\ + \ us a non-exclusive, worldwide, royalty-free, sub-licensable, and transferrable license\ + \ to use, reproduce, publicly display, distribute, modify (so as to better showcase your\ + \ content, for example), publicly perform, and translate the content as needed in response\ + \ to user driven actions (such as when you choose to store privately or share your content\ + \ with others). This license is only for the purpose of operating and improving the Services.\n\ + \n3.3 Our Access. We will not access, view, or listen to any of your content, except as\ + \ reasonably necessary to perform the Services. Actions reasonably necessary to perform\ + \ the Services may include (but are not limited to) (a) responding to support requests;\ + \ (b) detecting, preventing, or otherwise addressing fraud, security, unlawful, or technical\ + \ issues; and (c) enforcing these terms.\n\n3.4 Sharing Your Content.\n\n(a) Sharing. Some\ + \ Services may provide features that allow you to Share your content with other users or\ + \ to make it public. \"Share\" means to email, post, transmit, upload, or otherwise make\ + \ available (whether to us or other users) through your use of the Services. Other users\ + \ may use, copy, modify, or re-share your content in many ways. Please consider carefully\ + \ what you choose to Share or make public as you are entirely responsible for the content\ + \ that you Share.\n\n(b) Level of Access. We do not monitor or control what others do with\ + \ your content. You are responsible for determining the limitations that are placed on your\ + \ content and for applying the appropriate level of access to your content. If you do not\ + \ choose the access level to apply to your content, the system may default to its most permissive\ + \ setting. It’s your responsibility to let other users know how your content may be shared\ + \ and adjust the setting related to accessing or sharing of your content.\n\n(c) Comments.\ + \ The Services may allow you to comment on content. Comments are not anonymous, and may\ + \ be viewed by other users. Your comments may be deleted by you, other users, or us.\n\n\ + 3.5 Termination of License. You may revoke this license to your content and terminate our\ + \ rights at any time by removing your content from the Service. However, some copies of\ + \ your content may be retained as part of our routine backups.\n\n3.6 Feedback. You have\ + \ no obligation to provide us with ideas, suggestions, or proposals (\"Feedback\"). However,\ + \ if you submit Feedback to us, then you grant us a non-exclusive, worldwide, royalty-free\ + \ license that is sub-­licensable and transferrable, to use, reproduce, publicly display,\ + \ distribute, modify, and publicly perform the Feedback.\n\n3.7 Account Information.\n\n\ + You are responsible for all activity that occurs via your account. Please notify Customer\ + \ Support immediately if you become aware of any unauthorized use of your account. You may\ + \ not (a) Share your account information (except with an authorized account administrator)\ + \ or (b) use another person’s account. Your account administrator may use your account information\ + \ to manage your use and access to the Services.\n\n4. Use of Software.\n\n4.1 Subscription-Based\ + \ Software License.\n\nIf we provide the Software to you as part of your subscription to\ + \ use the Services, then subject to your compliance with these terms, we grant you a non-exclusive\ + \ license to install and use the Software: (a) in the Territory, (b) so long as your subscription\ + \ is valid, and (c) consistent with these terms and related documentation accompanying the\ + \ Software. \"Territory\" means worldwide, but excludes any U.S. embargoed countries and\ + \ countries where you are prohibited from using the Software or the Services. You may activate\ + \ the Software on up to 2 devices (or virtual machines) at a time, if these activations\ + \ are associated with the same Adobe ID for the same individual, unless stated at http://www.adobe.com/go/activation.\ + \ However, you may not use the Software on these devices simultaneously.\n\n4.2 Device-Based\ + \ Software License. If you have purchased a Software license based on number of devices\ + \ (such as if you have purchased Creative Cloud for education), then this Section 4.2 applies:\n\ + \n(a) License. Subject to your compliance with these terms and the license scope specified\ + \ in the documentation accompanying the Software, we grant you a non-exclusive license to\ + \ install and use the Software: (1) in the Territory, (2) during the term of the license,\ + \ (3) within the license scope, and (4) consistent with these terms and related documentation\ + \ accompanying the Software.\n\n(b) Distribution from a Server. If permitted in a license\ + \ document between us and you, you may copy an image of the Software onto a computer file\ + \ server within your Intranet for the purpose of downloading and installing the Software\ + \ onto computers within the same Intranet. \"Intranet\" means a private, proprietary computer\ + \ network you and your authorized employees and contractors can access. Intranet does not\ + \ include portions of the Internet, network communities open to suppliers, vendors, or service\ + \ providers, or network communities open to the public (such as membership or subscription-driven\ + \ groups, associations, and similar organizations).\n\n4.3 General License. If the Software\ + \ is provided as part of the Services without restrictions on subscription or number of\ + \ devices, then subject to your compliance with these terms, we grant you a non-exclusive\ + \ license to install and use the Software (a) in the Territory, (b) for the purpose of using\ + \ and accessing of the Services, and (c) consistent with these terms and related documentation\ + \ accompanying the Software.\n\n4.4 Other License Types.\n\n(a) Evaluation Version. We may\ + \ designate the Software or Services as \"trial\", \"evaluation\", \"not for resale\", or\ + \ other similar designation (\"Evaluation Version\"). You may install and use the Evaluation\ + \ Version only during the evaluation period and only for evaluation purposes. You must not\ + \ use any materials you produce with the Evaluation Version for anything other than non-commercial\ + \ purposes.\n\n(b) Pre-release Version. We may designate the Software or Services as a pre-release\ + \ or beta version (\"Pre‑release Version\"). Pre-release Version does not represent the\ + \ final product and may contain bugs that may cause system or other failure and data loss.\ + \ We may choose not to commercially release the Pre-release Version. You must promptly cease\ + \ using the Pre-release Version and destroy all copies of Pre-release Version if we request\ + \ you to do so, or if we release a commercial version of the Pre-release Version. Any separate\ + \ agreement we enter into with you governing the Pre-release Version will supersede this\ + \ section.\n\n(c) Education Version. If we designate the Software or Service as for use\ + \ by educational users (\"Educational Version\"), then you may only use the Educational\ + \ Version if you meet the eligibility requirements stated at http://www.adobe.com/go/edu_purchasing.\ + \ You may install and use Educational Version only in the country where you are qualified\ + \ as an educational user. If you reside in the European Economic Area, then the word \"\ + country\" in the sentence preceding this one means the European Economic Area.\n\n(d) Content\ + \ Files. \"Content Files\" means Adobe-provided sample files such as stock images or sounds.\ + \ Unless the documentation or specific license associated with the Content Files state otherwise,\ + \ you may use, display, modify, reproduce, and distribute any of the Content Files. However,\ + \ you may not distribute the Content Files on a stand-alone basis (i.e., in circumstances\ + \ in which the Content Files constitute the primary value of the product being distributed),\ + \ and you must not claim any trademark rights in the Content Files or derivative works of\ + \ the Content Files.\n\n(e) Software Development Kit. If the Software includes a software\ + \ development kit (\"SDK\") that does not reference a separate license agreement, then you\ + \ may use that SDK to develop applications that interoperate with the Software (\"Developer\ + \ Application\"). The SDK may include source code of implementation examples (\"Sample Code\"\ + ), runtime components, or libraries that may be included in the Developer Application to\ + \ ensure proper interoperation with the Software. You may use the SDK only for the purpose\ + \ of internal development of Developer Applications and may redistribute the Sample Code,\ + \ runtimes and libraries included in the SDK only as is necessary to properly implement\ + \ the SDK in the Developer Application. You will indemnify us from any loss, damage, claims,\ + \ or lawsuit, including attorney’s fees that arise or result from any Developer Application\ + \ or your use of the SDK. Any separate license agreement for an SDK will supersede this\ + \ section.\n\n4.5 Restrictions and Requirements.\n\n(a) Proprietary Notices. You must ensure\ + \ that any permitted copy of the Software that you make contains the same copyright and\ + \ other proprietary notices that appear on or in the Software.\n\n(b) Restrictions. Unless\ + \ permitted in these terms, you must not:\n\n(1) modify, port, adapt, or translate the Software;\n\ + \n(2) reverse engineer, decompile, disassemble, or otherwise attempt to discover the source\ + \ code of the Software;\n\n(3) use or offer the Software on a service bureau basis;\n\n\ + (4) (i) circumvent technological measures intended to control access to the Software or\ + \ (ii) develop, distribute, or use with the Software, products that circumvent the technological\ + \ measures; or\n\n(5) rent, lease, sell, sublicense, assign, or transfer your rights in\ + \ the Software, or authorize any portion of the Software to be copied onto another’s device.\ + \ If you purchase Creative Cloud for team or Creative Cloud for education (named user),\ + \ then you may designate seats pursuant to the applicable documentation. \n\n4.6 Territory.\ + \ If you purchase more than one Software license, you must not install or deploy the Software\ + \ outside of the country where you purchased the license unless otherwise permitted under\ + \ volume licensing program you have entered into with us. If you live in the European Economic\ + \ Area, \"country\" means the European Economic Area. We may terminate the license granted\ + \ herein or suspend the Creative Cloud subscription or access to the Services if we determine\ + \ that you are using the Software or Services in violation of this Section.\n\n4.7 Activation.\n\ + \nThe Software may require you to take certain steps to activate your Software or validate\ + \ your subscription. Failure to activate or register the Software, validate the subscription,\ + \ or a determination by us of fraudulent or unauthorized use of the Software may result\ + \ in reduced functionality, inoperability of the Software, or a termination or suspension\ + \ of the subscription.\n\n5. User Conduct.\n\n5.1 Responsible Use. The Adobe communities\ + \ often consist of users who expect a certain degree of courtesy and professionalism. You\ + \ must use the Services responsibly.\n\n5.2 Misuse. You must not misuse the Services or\ + \ Software. For example, you must not:\n\n(a) copy, modify, host, sublicense, or resell\ + \ the Services;\n\n(b) enable or allow others to use the Service or Software using your\ + \ account information;\n\n(c) use the content or Software included in the Services to construct\ + \ any kind of database;\n\n(d) access or attempt to access the Services by any means other\ + \ than the interface we provided or authorized;\n\n(e) circumvent any access or use restrictions\ + \ put into place to prevent certain uses of the Services;\n\n(f) Share content or engage\ + \ in behavior that violates anyone’s Intellectual Property Right (\"Intellectual Property\ + \ Rights\" means copyright, moral rights, trademark, trade dress, patent, trade secret,\ + \ unfair competition, right of privacy, right of publicity, and any other proprietary rights.);\n\ + \n(g) Share any content that is unlawful, harmful, threatening, abusive, tortious, defamatory,\ + \ libelous, vulgar, lewd, profane, invasive of another’s privacy, or hateful;\n\n(h) impersonate\ + \ any person or entity, or falsely state or otherwise misrepresent your affiliation with\ + \ a person or entity;\n\n(i) attempt to disable, impair, or destroy the Services, software,\ + \ or hardware;\n\n(j) disrupt, interfere with, or inhibit any other user from using the\ + \ Services (such as stalking, intimidating, or harassing others, inciting others to commit\ + \ violence, or harming minors in any way),\n\n(k) engage in chain letters, junk mails, pyramid\ + \ schemes, spamming, or other unsolicited messages;\n\n(l) market or advertise any products\ + \ or services through the Services unless we specifically allowed you to do so;\n\n(m) use\ + \ any data mining or similar data gathering and extraction methods in connection with the\ + \ Services; or\n\n(n) violate applicable law.\n\n6. Fees.\n\nYou must pay any applicable\ + \ taxes, and any applicable third-party fee (including, for example telephone toll charges,\ + \ mobile carrier fees, ISP charges, data plan charges, credit card fees, foreign exchange\ + \ fees). We are not responsible for these fees. We may take steps to collect the fees you\ + \ owe us. You are responsible for all related collection costs and expenses.\n\n7. Your\ + \ Warranty and Indemnification Obligations.\n\n7.1 Warranty. By uploading your content to\ + \ the Services, you agree that you have: (a) all necessary licenses and permissions, to\ + \ use and Share your content and (b) the rights necessary to grant the licenses in these\ + \ terms.\n\n7.2 Indemnification. You will indemnify us and our subsidiaries, affiliates,\ + \ officers, agents, employees, partners, and licensors from any claim, demand, loss, or\ + \ damages, including reasonable attorneys’ fees, arising out of or related to your content,\ + \ your use of the Services or Software, or your violation of these terms.\n\n8. Disclaimers\ + \ of Warranties.\n\n8.1 Unless stated in the Additional Terms, the Services and Software\ + \ are provided \"AS-IS.\" To the maximum extent permitted by law, we disclaim all warranties\ + \ express or implied, including the implied warranties of non-infringement, merchantability,\ + \ and fitness for a particular purpose. We make no commitments about the content within\ + \ the Services. We further disclaim any warranty that (a) the Services or Software will\ + \ meet your requirements or will be constantly available, uninterrupted, timely, secure,\ + \ or error-free; (b) the results that may be obtained from the use of the Services or Software\ + \ will be effective, accurate, or reliable; (c) the quality of the Services or Software\ + \ will meet your expectations; or that (d) any errors or defects in the Services or Software\ + \ will be corrected.\n\n8.2 We specifically disclaim any liability for any actions resulting\ + \ from your use of any Services or Software. You may use and access the Services or Software\ + \ at your own discretion and risk, and you are solely responsible for any damage to your\ + \ computer system or loss of data that results from the use and access of any Service or\ + \ Software.\n\n9. Limitation of Liability.\n\n9.1 Unless stated in the Additional Terms,\ + \ we are not liable to you or anyone else for any special, incidental, indirect, consequential,\ + \ or punitive damages whatsoever (even if we have been advised of the possibility of these\ + \ damages), including those (a) resulting from loss of use, data, or profits, whether or\ + \ not foreseeable, (b)based on any theory of liability, including breach of contract or\ + \ warranty, negligence or other tortious action, or (c) arising from any other claim arising\ + \ out of or in connection with your use of or access to the Services or Software. Nothing\ + \ in these terms limits or excludes our liability for gross negligence, for our (or our\ + \ employees’) intentional misconduct, or for death or personal injury.\n\n9.2 Our total\ + \ liability in any matter arising out of or related to these terms is limited to US $100\ + \ or the aggregate amount that you paid for access to the Service and Software during the\ + \ three-month period preceding the event giving rise to the liability, whichever is larger.\ + \ This limitation will apply even if we have been advised of the possibility of the liability\ + \ exceeding the amount and notwithstanding any failure of essential purpose of any limited\ + \ remedy.\n\n9.3 The limitations and exclusions in this Section 9 apply to the maximum extent\ + \ permitted by law.\n\n10. Termination.\n\n10.1 Termination by You. You may stop using the\ + \ Services at any time. Termination of your account does not relieve you of any obligation\ + \ to pay any outstanding fees.\n\n10.2 Termination by Us. If we terminate these terms for\ + \ reasons other than for cause, then we will make reasonable effort to notify you at least\ + \ 30 days prior to termination via the email address you provide to us with instructions\ + \ on how to retrieve your content. Unless stated in Additional Terms, we may at any time\ + \ terminate these terms with you if:\n\n(a) you breach any provision of these terms (or\ + \ act in a manner that clearly shows you do not intend to, or are unable to, comply with\ + \ these terms);\n\n(b) you fail to make the timely payment of fees for the Software or the\ + \ Services, if any;\n\n(c) we are required to do so by law (for example, where the provision\ + \ of the Services or Software to you is, or becomes, unlawful);\n\n(d) we elect to discontinue\ + \ the Services or Software, in whole or in part; or\n\n(e) there has been an extended period\ + \ of inactivity in your free account.\n\n10.3 Termination by Group Administrator. Group\ + \ administrators for a Service such as \"Creative Cloud for team\" may terminate a user’s\ + \ access to a Service at any time. If your group administrator terminates your access, then\ + \ you may no longer be able to access content that you or other users of the group have\ + \ shared on a shared workspace within that Service.\n\n10.4 Survival. Upon expiration or\ + \ termination of these terms, any perpetual licenses you have granted, your indemnification\ + \ obligations, our warranty disclaimers or limitations of liabilities, and dispute resolution\ + \ provisions stated in these terms will survive. Upon the expiration or termination of the\ + \ Services, some or all of the Software may cease to operate without prior notice.\n\n11.\ + \ Investigations.\n\n11.1 Screening. We do not review all content uploaded to the Services,\ + \ but we may use available technologies or processes to screen for certain types of illegal\ + \ content (for example, child pornography) or other abusive content or behavior (for example,\ + \ patterns of activity that indicate spam or phishing, or keywords).\n\n11.2 Disclosure.\ + \ We may access or disclose information about you, or your use of the Services, (a) when\ + \ it is required by law (such as when we receive a valid subpoena or search warrant); (b)\ + \ to respond to your requests for customer service support; or (c) when we, in our discretion,\ + \ think it is necessary to protect the rights, property, or personal safety of us, our users,\ + \ or the public.\n\n12. Export Control Laws.\n\nThe Software, Services, content, and your\ + \ use of the Software, Services, and content, are subject to U.S. and international laws,\ + \ restrictions, and regulations that may govern the import, export, and use of the Software,\ + \ Services, and content. You agree to comply with all the laws, restrictions, and regulations.\n\ + \n13. Dispute Resolution.\n\n13.1 Venue. Any claim or dispute you may have against us must\ + \ be resolved by (a) a court located in Santa Clara County, California, U.S.A., if the law\ + \ of California, U.S.A., governs the Services, and (b) a court located in Dublin, Ireland,\ + \ if the law of Ireland governs the Services. You agree to submit to the personal jurisdiction\ + \ of the applicable court for the purpose of litigating the claim or dispute. The parties\ + \ specifically disclaim the applicability of the U.N. Convention on Contracts for the International\ + \ Sale of Goods.\n\n13.2 Injunctive Relief. Notwithstanding the foregoing, in the event\ + \ of your or others’ unauthorized access to or use of the Services or content in violation\ + \ of these terms you agree that we are entitled to apply for injunctive remedies (or an\ + \ equivalent type of urgent legal relief) in any jurisdiction.\n\n14. Specific Software\ + \ Terms.\n\nThis section applies to specific Software and components. If there is any conflict\ + \ between this section and other sections, then this section governs in relation to the\ + \ relevant Software or components.\n\n14.1 Font Software. If the Software includes font\ + \ software (except for fonts available under Typekit, which is governed by its Additional\ + \ Terms):\n\n(a) You may provide font(s) you have used for a particular file to a commercial\ + \ printer or other service bureau, and the service bureau may use the font(s) to process\ + \ its file, provided the service bureau has a valid license to use that particular font\ + \ software.\n\n(b) You may embed copies of the font software into its electronic documents\ + \ for the purpose of printing, viewing, and editing the document. No other embedding rights\ + \ are implied or permitted under this license.\n\n(c) As an exception to the above, the\ + \ fonts listed at http://www.adobe.com/go/restricted_fonts re included with the Software\ + \ only for purposes of operation of the Software user interface and not for inclusion within\ + \ any output files. The listed fonts are not licensed under this Section 14.1. You may not\ + \ copy, move, activate or use, or allow any font management tool to copy, move, activate\ + \ or use, the listed fonts in or with any software application, program, or file other than\ + \ the Software.\n\n(d) Open-Source Fonts. Some fonts distributed by Adobe with the Software\ + \ may be open-source fonts. Your use of these open-source fonts will be governed by the\ + \ applicable license terms available at http://www.adobe.com/go/font_licensing.\n\n14.2\ + \ After Effects Render Engine. If the Software includes the full version of Adobe After\ + \ Effects, then you may install an unlimited number of Render Engines on computers within\ + \ your Intranet which includes at least one device on which the full version of the Adobe\ + \ After Effects software is installed. The term \"Render Engine\" means an installable portion\ + \ of the Software that allows After Effects projects to be rendered but which cannot be\ + \ used to create or modify projects and does not include the complete After Effects user\ + \ interface.\n\n14.3 Acrobat. If the Software includes Acrobat Standard, Acrobat Pro, Acrobat\ + \ Suite, or certain features within this software, then this Section 14.3 applies.\n\n(a)\ + \ Additional Definitions.\n\n(1) \"Deploy\" means to deliver or otherwise make available,\ + \ directly or indirectly, by any means including but not limited to a network or Internet,\ + \ an Extended Document to one or more recipients.\n\n(2) \"Extended Document\" means a PDF\ + \ file manipulated by the Software to enable the ability to locally save documents with\ + \ filled-in PDF forms.\n\n(b) The Software may include enabling technology that allows you\ + \ to enable PDF documents with certain features through the use of a digital credential\ + \ located within the Software (\"Key\"). You must not access, attempt to access, control,\ + \ disable, remove, use, or distribute the Key for any purpose.\n\n(c) For any unique Extended\ + \ Document, you may only (a) Deploy that Extended Document to an unlimited number of recipients,\ + \ but you may not extract data from more than 500 instances of the Extended Document (or\ + \ any hardcopy representation of that Extended Document) that contains data from a recipient;\ + \ or (b) Deploy an Extended Document to no more than 500 recipients without limits on the\ + \ number of times you may extract data from a recipient from that Extended Document. Obtaining\ + \ additional licenses to use Acrobat Standard, Acrobat Pro, or Adobe Acrobat Suite will\ + \ not increase the foregoing limits (that is, the foregoing limits are the aggregate total\ + \ limits regardless of how many additional licenses to use Acrobat Standard, Acrobat Pro,\ + \ or Adobe Acrobat Suite you may have obtained). For the avoidance of doubt, if you purchase\ + \ another Adobe product or service that allows you to send a greater number of PDF files\ + \ or forms (e.g., Adobe FormsCentral or Adobe LiveCycle Reader Extensions), then the terms\ + \ of that Adobe product or service supersedes the terms of this Section 14.3.\n\n(d) Digital\ + \ Certificates. Digital certificates may be issued by third party certificate authorities,\ + \ including Adobe Certified Document Services vendors, Adobe Approved Trust List vendors\ + \ (collectively \"Certificate Authorities\"), or may be self-signed. You and the Certified\ + \ Authority are responsible for the purchase, use, and reliance upon digital certificates.\ + \ You are solely responsible for deciding whether or not to rely on a certificate. Unless\ + \ a separate written warranty is provided to you by a Certificate Authority, your use of\ + \ digital certificates is at your sole risk. You will indemnify Adobe from any and all liabilities,\ + \ losses, actions, damages, or claims (including all reasonable expenses, costs, and attorneys’\ + \ fees) arising out of or relating to your use of, or any reliance on, any digital certificate\ + \ or Certificate Authority.\n\n14.4 Adobe Runtime. If the Software includes Adobe AIR, Adobe\ + \ Flash Player, Shockwave Player, or Authorware Player (collectively \"Adobe Runtime\"),\ + \ then this Section 14.4 applies:\n\n(a) Adobe Runtime Restrictions. You must not use Adobe\ + \ Runtimes on any non-PC device or with any embedded or device version of any operating\ + \ system. For the avoidance of doubt, and by example only, you may not use Adobe Runtimes\ + \ on any (1) mobile device, set top box, handheld, phone, game console, TV, DVD player,\ + \ media center (other than with Windows XP Media Center Edition and its successors), electronic\ + \ billboard or other digital signage, Internet appliance or other Internet-connected device,\ + \ PDA, medical device, ATM, telematic device, gaming machine, home automation system, kiosk,\ + \ remote control device, or any other consumer electronics device; (2) operator-based mobile,\ + \ cable, satellite, or television system; or (3) other closed system device. Additional\ + \ information on licensing Adobe Runtimes is available at http://www.adobe.com/go/licensing.\n\ + \n(b) Adobe Runtime Distribution. You must not distribute an Adobe Runtime except as a fully\ + \ integrated portion of a developer application that is created using the Software, including\ + \ the utilities provided with the Software, for example as part of an application that is\ + \ packaged to run on the Apple iOS or Android™ operating systems. Distribution of the resulting\ + \ output file or developer application on a non-PC device requires you to obtain licenses\ + \ which may be subject to additional royalties. It is solely your responsibility to obtain\ + \ licenses for non-PC devices and pay applicable royalties; we grant no license to any third\ + \ party technologies to run developer applications or output files on non-PC devices under\ + \ these terms. Except as expressly provided in this Section, you may not distribute Adobe\ + \ Runtime.\n\n14.5 Contribute Publishing Services. Subject to the Contribute Publishing\ + \ Services software end user license agreement accompanying the Software, you may not connect\ + \ to the Contribute Publishing Services software unless you have purchased a license to\ + \ connect to the Contribute Publishing Services software for each individual who may connect\ + \ to the Contribute Publishing Services software. However, trial versions of Adobe Contribute\ + \ software may install and connect to the Contribute Publishing Services software in accordance\ + \ with the Contribute Publishing Services software end user license agreement.\n\n14.6 Adobe\ + \ Presenter. If the Software includes Adobe Presenter and you install or use the Adobe Connect\ + \ Add-in in connection with the use of the Software, you must not install or use the Adobe\ + \ Connect Add-in on anything other than a computer, and you must not install or use the\ + \ Adobe Add-In on any non-PC product, including, but not limited to, a web appliance, set\ + \ top box, handheld, phone, or web pad device. Further, you may only use the portion of\ + \ the Software that is embedded in a presentation, information, or content created and generated\ + \ using the Software (the \"Adobe Presenter Run-Time\") together with the presentation,\ + \ information, or content in which it is embedded. You must not use, and must cause all\ + \ licensees of the presentation, information, or content not to use, the Adobe Presenter\ + \ Run-Time other than as embedded in the presentation, information or content. In addition,\ + \ you must not use, and must cause all licensees of the presentation, information, or content\ + \ not to, modify, reverse engineer, or disassemble the Adobe Presenter Run-Time.\n\n14.7\ + \ Flash Builder with LiveCycle Data Services Data Management Library. Adobe Flash Builder\ + \ may include the fds.swc library. You must not use fds.swc for any purpose other than to\ + \ provide client-side data management capabilities and as an output file within software\ + \ you develop, subject to the following: You must not (a) use fds.swc to enable associations\ + \ or offline capabilities within software or (b) incorporate fds.swc into any software that\ + \ is similar to Adobe LiveCycle Data Services or BlazeDS. If you would like to do any of\ + \ the foregoing, you will need to request a separate license from us.\n\n14.8 Digital Publishing\ + \ Suite (\"DPS\") and InDesign. If the Software includes certain components designed to\ + \ work with or access the DPS services (\"DPS Desktop Tools\"), then you must only install\ + \ and use the DPS Desktop Tools to (a) create or produce the content to be displayed within\ + \ a Content Viewer (as defined in the terms of use related to DPS; the content is referred\ + \ to as \"Output\"); (b) evaluate and testing the Output; or (c) where available, accessing\ + \ and using DPS. Except as explicitly permitted in this Section 14.8, you must not display,\ + \ distribute, modify, or publicly perform the DPS Desktop Tools.\n\n15. Jurisdiction-Specific\ + \ Terms.\n\nThis section applies to specific jurisdictions. If there is any conflict between\ + \ this section and other sections, then this section governs in relation to the relevant\ + \ jurisdiction.\n\n15.1 New Zealand. For consumers in New Zealand who obtain the Software\ + \ for personal, domestic, or household use (not business purposes), this agreement is subject\ + \ to the Consumer Guarantees Act.\n\n15.2 European Economic Area.\n\n(a) Warranty. If you\ + \ obtained the Software in the European Economic Area (EEA), you usually reside in the EEA\ + \ and you are a consumer (that is, your use of the Software is for personal, non-business\ + \ related purposes), then your warranty period with regard to the Software is the duration\ + \ of your subscription. Our entire liability related to any warranty claim and your sole\ + \ and exclusive remedy under any warranty will be limited to either, at our option, support\ + \ of our Software based on the warranty claim, replacement of the Software, or if support\ + \ or replacement is not practicable, refund of prepaid and unused subscription fee proportionate\ + \ to the specific Software. Furthermore, while these terms apply to any damages claims you\ + \ make in respect of your use of the Software, we will be liable for direct losses that\ + \ are reasonably foreseeable in the event of our breach of this agreement. You should take\ + \ all reasonable measures to avoid and reduce damages, in particular by making backup copies\ + \ of the Software and its computer data.\n\n(b) Decompilation. Nothing included in these\ + \ terms limits any non-waivable right to decompile the Software that you may enjoy under\ + \ the law. For example, if you are located in the European Union (EU), you may have the\ + \ right under applicable law to decompile the Software if it is necessary to do so in order\ + \ to achieve interoperability of the Software with another software program and we has not\ + \ made this information available. Under this circumstance, you must first ask us in writing\ + \ to provide the information necessary to achieve this interoperability. In addition, the\ + \ decompilation may only be performed by you or someone who may use the Software on your\ + \ behalf. We have the right to impose reasonable conditions before providing the information.\ + \ You may use the information we supply or that you obtain only for the purpose described\ + \ in this paragraph. You may not disclose the information to any third party or use the\ + \ information in a manner that infringes our copyright or a copyright of one or our licensors.\n\ + \n15.3 Australia. If you obtained the Software in Australia, then the following provision\ + \ applies, notwithstanding anything stated to the contrary in these terms:\n\nNOTICE TO\ + \ CONSUMERS IN AUSTRALIA:\n\nOur goods come with guarantees that cannot be excluded under\ + \ the Australian Consumer Law. You are entitled to a replacement or refund for a major failure\ + \ and for compensation for any other reasonably foreseeable loss or damage. You are also\ + \ entitled to have the goods repaired or replaced if the goods fail to be of acceptable\ + \ quality and the failure does not amount to a major failure.\n\n16. Notice to U.S. Government\ + \ End Users.\n\nFor U.S. Government procurements, Software is a commercial computer software\ + \ as defined in FAR 12.212 and subject to restricted rights as defined in FAR Section 52.227-19\ + \ \"Commercial Computer Software - Restricted Rights\" and DFARS 227.7202, \"Rights in Commercial\ + \ Computer Software or Commercial Computer Software Documentation\", as applicable, and\ + \ any successor regulations. Any use, modification, reproduction release, performance, display\ + \ or disclosure of the Software by the U.S. Government must be in accordance with license\ + \ rights and restrictions described in these terms.\n\n17. Notification of Copyright Infringement.\n\ + \n17.1 DMCA. We respect the Intellectual Property Rights of others and we expect our users\ + \ to do the same. We will respond to clear notices of copyright infringement consistent\ + \ with the Digital Millennium Copyright Act (\"DMCA\").\n\n17.2 Take-Down Notice. If you\ + \ believe that your work has been infringed in connection with the Services, please provide\ + \ written notification via regular mail or via fax (not via email or phone) to our Copyright\ + \ Agent (contact information below) that contains all of the following elements:\n\n(a)\ + \ A physical or electronic signature of the person authorized to act on behalf of the owner\ + \ of the copyright interest that is alleged to have been infringed;\n\n(b) A description\ + \ of the copyrighted work(s) infringed;\n\n(c) A description of where the content that you\ + \ claim is infringing is located on the Services;\n\n(d) Information sufficient to permit\ + \ us to contact you, such as your physical address, telephone number, and email address;\n\ + \n(e) A statement by you that you have a good faith belief that the use of the content identified\ + \ in your notice in the manner complained of is not authorized by the copyright owner, its\ + \ agent, or the law; and\n\n(f) A statement by you that the information in your notice is\ + \ accurate and, under penalty of perjury, that you are the copyright owner or are authorized\ + \ to act on the copyright owner’s behalf.\n\nBefore you file the notification, please carefully\ + \ consider whether or not the use of copyrighted material at issue is protected by the \"\ + fair use\" doctrine, as you could be liable for costs and attorneys’ fees should you file\ + \ a takedown notice where there is no infringing use. If you are unsure whether a use of\ + \ your copyrighted material constitutes infringement, please contact an attorney. In addition,\ + \ you may wish to consult publicly available reference materials such as those found at\ + \ the U.S. Copyright website or at www.chillingeffects.org.\n\n17.3 Counter-Notice. If you\ + \ believe we disabled or removed access to your content as a result of an improper copyright\ + \ infringement notice, please provide, pursuant to the DMCA, written notification via regular\ + \ mail or via fax (not via email or phone) to our Copyright Agent (contact information below),\ + \ which must contain all of the following elements:\n\n(a) A physical or electronic signature\ + \ of the subscriber;\n\n(b) Identification of the content that was removed from the Services\ + \ and the location of the Service on which the content appeared before it was removed;\n\ + \n(c) A statement under penalty of perjury that you have a good faith belief that the content\ + \ was removed or disabled as a result of mistake or misidentification of the content to\ + \ be removed or disabled;\n\n(d) Information sufficient to permit us to contact you, such\ + \ as your physical address, telephone number, and email address; and\n\n(e) A statement\ + \ that you consent to jurisdiction of the Federal District court for the district where\ + \ you reside (or of Santa Clara County, California if you reside outside of the United Sates)\ + \ and that you will accept service of process from the person who provided notification\ + \ under DMCA subsection (c)(1)(C) or an agent of the person.\n\nBefore you file a counter-notification,\ + \ please carefully consider whether or not the use of the copyrighted material at issue\ + \ is infringing, as you could be liable for costs and attorneys’ fees in the event that\ + \ a court determines your counter-notification misrepresented that the content was removed\ + \ by mistake. If you are unsure whether use of the content at issue constitutes infringement,\ + \ please contact an attorney. In addition, you may wish to consult publicly available reference\ + \ materials such as those found at www.chillingeffects.org.\n\n17.4 Copyright Agent. Our\ + \ Copyright Agent for notice of claims of copyright infringement can be reached as follows:\n\ + \nBy mail:\nCopyright Agent\nAdobe Systems Incorporated\n601 Townsend Street\nSan Francisco,\ + \ CA 94103\n\nBy fax: (415) 723‑7869\nBy email: copyright@adobe.com\nBy telephone: (408)\ + \ 536‑4030\n\nThe Copyright Agent will not remove content from the Services in response\ + \ to phone or email notifications regarding allegedly infringing content, since a valid\ + \ DMCA notice must be signed, under penalty of perjury, by the copyright owner or by a person\ + \ authorized to act on his or her behalf. Please submit the notifications by fax or ordinary\ + \ mail only and as further described by this section. The Copyright Agent should be contacted\ + \ only if you believe that your work has been used or copied in a way that constitutes copyright\ + \ infringement and that the infringement is occurring on the Services. All other inquiries\ + \ directed to the Copyright Agent will not be responded to.\n\n18. Compliance with Licenses.\n\ + \nIf you are a business, company, or organization, then we may, no more than once every\ + \ 12 months, upon seven 7 days’ prior notice to you, appoint our personnel or an independent\ + \ third party auditor who is obliged to maintain confidentiality to inspect your records,\ + \ systems, and facilities to verify that your installation and use of any and all Software\ + \ or Services is in conformity with its valid licenses from us. Additionally, you will provide\ + \ us with all records and information requested by us in order to verify that its installation\ + \ and use of any and all Software and Services is in conformity with your valid licenses\ + \ from us within 30 days of our request. If the verification discloses a shortfall in licenses\ + \ for the Software or Services, you will immediately acquire any necessary licenses, subscriptions,\ + \ and any applicable back maintenance and support. If the underpaid fees exceed 5% of the\ + \ value of the payable license fees, then you will also pay for our reasonable cost of conducting\ + \ the verification.\n\n19. Miscellaneous.\n\n19.1 English Version. The English version of\ + \ these terms will be the version used when interpreting or construing these terms.\n\n\ + 19.2 Notice to Adobe. You may send the notices to us to at the following address: Adobe\ + \ Systems, 345 Park Avenue, San Jose, California 95110‑2704, Attention: General Counsel.\n\ + \n19.3 Notice to You. We may notify you by email, postal mail, postings within the Services,\ + \ or other legally acceptable means.\n\n19.4 Entire Agreement. These terms constitute the\ + \ entire agreement between you and us regarding your use of the Services and Software and\ + \ supersede any prior agreements between you and us relating to the Services.\n\n19.5 Non-Assignment.\ + \ You may not assign or otherwise transfer these terms or your rights and obligations under\ + \ these terms, in whole or in part, without our written consent. We may transfer our rights\ + \ under these terms to a third party.\n\n19.6 Severability. If a particular term is not\ + \ enforceable, the unenforceability of that term will not affect any other terms.\n\n19.7\ + \ No Waiver. Our failure to enforce or exercise any of these terms is not a waiver of that\ + \ section.\n\n20. Third-Party Notices.\n\n20.1 Third-Party Software. The Software may contain\ + \ third-party software, subject to additional terms and conditions, available at http://www.adobe.com/go/thirdparty.\n\ + \n20.2 AVC DISTRIBUTION. The following notice applies to Software containing AVC import\ + \ and export functionality: THIS PRODUCT IS LICENSED UNDER THE AVC PATENT PORTFOLIO LICENSE\ + \ FOR THE PERSONAL NON-COMMERCIAL USE OF A CONSUMER TO (a) ENCODE VIDEO IN COMPLIANCE WITH\ + \ THE AVC STANDARD (\"AVC VIDEO\") AND/OR (b) DECODE AVC VIDEO THAT WAS ENCODED BY A CONSUMER\ + \ ENGAGED IN A PERSONAL NON-COMMERCIAL ACTIVITY AND/OR WAS OBTAINED FROM A VIDEO PROVIDER\ + \ LICENSED TO PROVIDE AVC VIDEO. NO LICENSE IS GRANTED OR IMPLIED FOR ANY OTHER USE. ADDITIONAL\ + \ INFORMATION MAY BE OBTAINED FROM MPEG LA, L.L.C. SEE http://www.adobe.com/go/mpegla.\n\ + \n20.3 MPEG-2 DISTRIBUTION. The following notice applies to Software containing MPEG 2 import\ + \ and export functionality: USE OF THIS PRODUCT OTHER THAN CONSUMER PERSONAL USE IN ANY\ + \ MANNER THAT COMPLIES WITH THE MPEG 2 STANDARD FOR ENCODING VIDEO INFORMATION FOR PACKAGED\ + \ MEDIA IS EXPRESSLY PROHIBITED WITHOUT A LICENSE UNDER APPLICABLE PATENTS IN THE MPEG 2\ + \ PATENT PORTFOLIO, WHICH LICENSE IS AVAILABLE FROM MPEG LA, L.L.C. 250 STEELE STREET, SUITE\ + \ 300 DENVER, COLORADO 80206.\n\n21. Application Platform Terms.\n\n21.1 Apple. If the Software\ + \ is downloaded from the Apple iTunes Application Store, then you acknowledge and agree\ + \ to the following additional terms: (a) Apple has no liability for the Software and its\ + \ content; (b) Your Use of the Software is limited to a non-transferable license to Use\ + \ the Software on any iPhone™, iPad™ or iPod Touch™ that you own or control as allowed by\ + \ the Application Store Terms of Service; (c) Apple has no obligation whatsoever to furnish\ + \ any maintenance or support services for the Software; (d) to the extent permitted by applicable\ + \ law, Apple has no warranty obligation to the Software and Adobe will be responsible for\ + \ any claims, losses, liabilities, damages, costs, or expenses attributable to any failure\ + \ to conform to any warranty set forth in this Agreement; (e) Apple is not liable for any\ + \ claims relating to the Software or your possession and/or Use of the Software, including,\ + \ but not limited to: (i) product liability claims; (ii) any claim that the Software fails\ + \ to conform to any applicable legal requirement; and (iii) consumer protection claims;\ + \ (f) Apple is not liable for any third-party claims that the Software infringes a third\ + \ party’s intellectual property rights; and (g) Apple and its subsidiaries are third party\ + \ beneficiaries of this Agreement with respect to any Software, and that Apple will have\ + \ the right to enforce the Agreement against you as a third party beneficiary.\n\n21.2 Microsoft.\ + \ If the Software is downloaded from the Windows Phone Apps + Game Store, then you acknowledge\ + \ and agree to the following additional terms: (a) you may only Use the Software on up to\ + \ five (5) Windows 8 devices associated with your account; (b) Microsoft has no liability\ + \ for the Software and its content; (c) Microsoft, device manufacturers, and network operators\ + \ have no obligation whatsoever to furnish any maintenance or support services for the Software;\ + \ (d) to the extent permitted by applicable law, Microsoft has no warranty obligation to\ + \ the Software and Adobe will be responsible for any claims, losses, liabilities, damages,\ + \ costs, or expenses attributable to any failure to conform to any warranty set forth in\ + \ this Agreement; (e) Microsoft is not liable for any claims relating to the Software or\ + \ your possession and/or Use of the Software, including, but not limited to: (1) product\ + \ liability claims; (2) any claim that the Software fails to conform to any applicable legal\ + \ requirement; and (3) consumer protection claims; and (f) Microsoft is not liable for any\ + \ third-party claims that the Software infringes a third party’s intellectual property rights.\n\ + \nAdobe Systems Incorporated: 345 Park Avenue, San Jose, California 95110-2704\n\nAdobe\ + \ Systems Software Ireland Limited: 4-6 Riverwalk, City West Business Campus, Saggart, Dublin\ + \ 24\n\nAdobe_General_Terms_of_Use-en_US-20140618_2200" json: adobe-general-tou.json - yml: adobe-general-tou.yml + yaml: adobe-general-tou.yml html: adobe-general-tou.html - text: adobe-general-tou.LICENSE + license: adobe-general-tou.LICENSE - license_key: adobe-glyph + category: Permissive spdx_license_key: Adobe-Glyph other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Permission is hereby granted, free of charge, to any person obtaining a copy of this\ + \ documentation file to use, copy, publish, distribute, sublicense, and/or sell copies of\ + \ the documentation, and to permit others to do the same, provided that: \n - No modification,\ + \ editing or other alteration of this document is allowed; and \n - The above copyright\ + \ notice and this permission notice shall be included in all copies of the documentation.\ + \ \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this\ + \ documentation file, to create their own derivative works from the content of this document\ + \ to use, copy, publish, distribute, sublicense, and/or sell the derivative works, and to\ + \ permit others to do the same, provided that the derived work is not represented as being\ + \ a copy or version of this document. \n\nAdobe shall not be liable to any party for any\ + \ loss of revenue or profit or for indirect, incidental, special, consequential, or other\ + \ similar damages, whether based on tort (including without limitation negligence or strict\ + \ liability), contract or other legal or equitable grounds even if Adobe has been advised\ + \ or had reason to know of the possibility of such damages. The Adobe materials are provided\ + \ on an \"AS IS\" basis. Adobe specifically disclaims all express, statutory, or implied\ + \ warranties relating to the Adobe materials, including but not limited to those concerning\ + \ merchantability or fitness for a particular purpose or non-infringement of any third party\ + \ rights regarding the Adobe materials." json: adobe-glyph.json - yml: adobe-glyph.yml + yaml: adobe-glyph.yml html: adobe-glyph.html - text: adobe-glyph.LICENSE + license: adobe-glyph.LICENSE - license_key: adobe-indesign-sdk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-adobe-indesign-sdk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "ADOBE SOFTWARE DEVELOPMENT KIT LICENSE FOR INDESIGN, INDESIGN SERVER AND INCOPY SOFTWARE.\n\ + \nNOTICE TO USER: THIS IS A LICENSE BETWEEN YOU AND ADOBE. BY INDICATING YOUR ACCEPTANCE\ + \ BELOW, YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS LICENSE. THIS LICENSE ACCOMPANIES\ + \ THE SOFTWARE DEVELOPMENT KIT(S) FOR ADOBE INDESIGN, INDESIGN SERVER AND/OR INCOPY SOFTWARE\ + \ AND RELATED EXPLANATORY MATERIALS (COLLECTIVELY, THE \"SDK\") AND INCLUDES ANY UPGRADES,\ + \ MODIFIED VERSIONS, UPDATES, ADDITIONS, AND COPIES OF THE SDK LICENSED TO YOU BY ADOBE.\n\ + \n1. Definitions.\n\n1.1 Adobe means Adobe Systems Incorporated, a Delaware corporation,\ + \ 345 Park Avenue, San Jose, California 95110, if Section 11 of this License applies; otherwise,\ + \ it means Adobe Systems Software Ireland Limited, 4‑6 Riverwalk, Citywest Business Campus,\ + \ Dublin 24, Ireland, a company organized under the laws of Ireland and an affiliate and\ + \ licensee of Adobe Systems Incorporated.\n\n1.2 API Development Software means the SDK\ + \ API (Application Programming Interface) Specification, header files, JAR files, the SDK\ + \ Plug-In APIs as defined in the header files and demonstrated in plug-in example code and\ + \ related information in object code format and/or as libraries, both native and Java, not\ + \ otherwise made available by Adobe as a commercial product, that Adobe has included for\ + \ You as part of the SDK to distribute unmodified with Your application programs.\n\n1.3\ + \ Content Files means sample and stock photographs, images, sounds, clip art and other artistic\ + \ works included as part of the SDK.\n\n1.4 Developer, You and Your refer to any person\ + \ or entity acquiring or using the SDK under the terms of this License.\n\n1.5 Documentation\ + \ means the written materials accompanying this License, including, for example, technical\ + \ specifications, file format documentation and application programming interface (API)\ + \ information.\n\n1.6 Effective Date means the date that You download or otherwise access\ + \ the any portion of the SDK.\n\n1.7 Sample Code means object code and/or source code, excluding\ + \ Content Files, that Adobe has included for You to incorporate into Your application programs,\ + \ subject to the limitations set forth in Section 2.\n\n1.8 SDK means the API information,\ + \ Sample Code, Tools, Documentation and other related items. Only those items placed on\ + \ Your computer extracted from the SDK archive are part of the SDK. This License does not\ + \ govern Adobe Products (See Adobe Products end user license agreements for governing terms).\ + \ Adobe Products refer to Adobe’s application programs and technologies such as Adobe-developed\ + \ plug-ins which are or may be made available for licensing to the general public, including\ + \ any modified versions or upgrades thereof\n\n1.9 Tools refer to programs and Utilities\ + \ that may be included for You to test or compile Your application programs. Documentation\ + \ means any related explanatory materials accompanying the SDK.\n\n2. License and License\ + \ Restrictions.\n\nSubject to the restrictions contained in this Section 2, Adobe grants\ + \ to You a nonexclusive, nontransferable, royalty-free license to use the items in the SDK\ + \ only for the purpose of internal development of application programs designed to function\ + \ with Adobe products.\n\n(a) Under this License, You may use, modify or merge all or portions\ + \ of the Sample Code with Your application programs and distribute it only as part of Your\ + \ products in object code form only. Any modified or merged portion of the Sample Code is\ + \ subject to this License. You are required to include Adobe’s copyright notices on Your\ + \ application programs except for those programs in which You include a copyright notice\ + \ reflecting the copyright ownership of Developer in such programs. You may not use Adobe’s\ + \ name, logo or trademarks to market Your products. You may not assign Your rights or obligations\ + \ granted under this License without the prior written consent of Adobe. Any attempted assignment\ + \ or transfer without such prior written consent from Adobe shall be void and of no effect.\ + \ Sample Code is compiled with a unique plug-in ID. If You distribute modified or merged\ + \ versions of the Sample Code. You agree to replace Adobe’s unique plug-in ID that is included\ + \ in any Sample Code with a unique plug-in ID specific to You. Instructions for requesting\ + \ a unique plug-in ID from Adobe may be found at http://support.adobe.com/devsup/devsup.nsf/docs/50093.htm.\n\ + \n(b) Subject to the permissions in 2(a) above, You may use the SDK solely for the purpose\ + \ of internal development.\n\n(c) You may make a limited number of copies of the SDK to\ + \ be used by Your employees or consultants as provided herein, and not for general business\ + \ purposes, and such employees or consultants shall be subject to this License. \nYou may\ + \ use API Development Software only as provided in the Adobe specification applicable thereto,\ + \ and distribute it solely with Your products on the same media. You may not modify API\ + \ Development Software.\n\n(d) Content Files. Unless stated otherwise in \"ReadMe\" files\ + \ associated with the Content Files, which may include specific rights and restrictions\ + \ with respect to such materials, You may not use, modify, reproduce or distribute any of\ + \ the Content Files. For the avoidance of doubt, the Content Files are included as examples\ + \ only. You acquire no rights to the Content Files.\n\n(e) License Restrictions\n\n(i) World\ + \ Ready Composer. The APIs contained in this SDK for the World Ready Composer are designed\ + \ to be used for the purpose of internal development of application programs designed to\ + \ function with Adobe InDesign Server. Internal development of application programs designed\ + \ to function with Adobe InDesign and/or Adobe InCopy software using the World Ready Composer\ + \ API’s is not supported by Adobe.\n\n(ii) Localization of Adobe Products. You are prohibited\ + \ from using this SDK for development of Your Developer products which would include functionality\ + \ allowing for the Localization of Adobe Products. For purposes of this License, \"Localization\"\ + \ means a modification to the default language of the installed Adobe Product, including\ + \ but not limited to the Adobe Product’s user interface.\n\n(iii) No Modifications, No Reverse\ + \ Engineering. Except as specifically provided herein, You shall not (a) modify, port, adapt\ + \ or translate the any portion of this SDK; (b) add or delete any program files that would\ + \ modify the functionality and/or appearance of other Adobe software and/or any component\ + \ thereof; or (c) reverse engineer, decompile, disassemble or otherwise attempt to discover\ + \ the source code of any portion of this SDK. Notwithstanding the foregoing, decompiling\ + \ the SDK is permitted to the extent the laws of Your jurisdiction give You the right to\ + \ do so to obtain information necessary to render the licensed portions of the SDK interoperable\ + \ with other software; provided, however, that You must first request such information from\ + \ Adobe and Adobe may, in its discretion, either provide such information to You or impose\ + \ reasonable conditions, including a reasonable fee, on such use of the source code to ensure\ + \ that Adobe’s and its suppliers’ proprietary rights in the source code for the SDK are\ + \ protected.\n\n(iv) No Unbundling. The SDK may include various applications, utilities\ + \ and components, may support multiple platforms and languages or may be provided to You\ + \ on multiple media or in multiple copies. Nonetheless, the SDK is designed and provided\ + \ to You as a single product to be used as a single product on computers and platforms as\ + \ permitted herein. You are not required to use all component parts of the SDK, but You\ + \ shall not unbundle or repackage the component parts of the SDK for distribution, transfer,\ + \ resale or use on different computers.\n\n(v) No Transfer. You shall not sublicense, assign\ + \ or transfer the SDK or Your rights in the SDK, or authorize any portion of the SDK to\ + \ be copied onto or accessed from another individual’s or entity’s computer except as may\ + \ be explicitly provided in this License. Notwithstanding anything to the contrary in this\ + \ Section 2(e)(v), You may transfer copies of the SDK installed on one of Your computers\ + \ to another one of Your computers provided that the resulting installation and use of the\ + \ SDK is in accordance with the terms of this License and does not cause You to exceed Your\ + \ right to use the SDK under this License.\n\n(vi) Prohibited Use. Except as expressly authorized\ + \ under this License, You are prohibited from: (a) renting, leasing, lending or granting\ + \ other rights in the SDK including rights on a membership or subscription basis; and (b)\ + \ providing use of the SDK in a computer service business, third party outsourcing facility\ + \ or service, service bureau arrangement, network, or time sharing basis; Failure to comply\ + \ with this Section 2(e)(vi) is a breach of this License that immediately terminates all\ + \ rights granted to You herein.\n\n(vii) Other Prohibitions. You will not use the SDK to\ + \ create, develop or use any program, software or service that (a) contains any viruses,\ + \ Trojan horses, worms, time bombs, cancelbots or other computer programming routines that\ + \ are intended to damage, detrimentally interfere with, surreptitiously intercept or expropriate\ + \ any system, data or personal information, (b) when used in the manner in which it is intended\ + \ or marketed, violates any law, statute, ordinance, regulation or rights (including any\ + \ laws, regulations or rights respecting intellectual property, computer spyware, privacy,\ + \ export control, unfair competition, antidiscrimination or false advertising), or (c) interferes\ + \ with the operability of Adobe or third-party programs or software.\n\n3. Proprietary Rights.\n\ + \nThe items contained in the SDK are the intellectual property of Adobe and its suppliers\ + \ and are protected by United States copyright and patent law, international treaty provisions\ + \ and applicable laws of the country in which it is being used. You agree to protect all\ + \ copyright and other ownership interests of Adobe and/or its suppliers in all items in\ + \ the SDK supplied under this License. You agree that all copies of the items in the SDK,\ + \ reproduced for any reason by You, contain the same copyright notices, and other proprietary\ + \ notices, as appropriate, which appear on or in the master items delivered by Adobe in\ + \ the SDK. Adobe and/or its suppliers retain title and ownership of the items in the SDK,\ + \ the media on which it is recorded and all subsequent copies, regardless of the form or\ + \ media in or on which the original and other copies may exist. Except as stated above,\ + \ this License does not grant You any rights to patents, copyrights, trade secrets, trademarks\ + \ or any other rights in respect to the items in the SDK.\n\n4. Non-Blocking of Adobe Development.\n\ + \nYou acknowledge that Adobe is currently developing or may develop technologies and products\ + \ in the future that have or may have design and/or functionality similar to products that\ + \ You may develop based on Your license herein. Nothing in this License shall impair, limit\ + \ or curtail Adobe’s right to continue with its development, maintenance and/or distribution\ + \ of Adobe’s technology or products. You agree that You shall not assert in any way any\ + \ patent owned by You arising out of or in connection with this SDK or modifications made\ + \ thereto against Adobe, its subsidiaries or affiliates, or their customers, direct or indirect,\ + \ agents and contractors (collectively, the \"Adobe Product Users\") for the manufacture,\ + \ use, import, licensing, offer for sale or sale of any Adobe products.\n\n5. Confidential\ + \ Information.\n\nWith respect to the API Development Software, You agree that You will\ + \ treat the API Development Software with the same degree of care as You accord to Your\ + \ own confidential information which You exercise reasonable care to protect. Your obligations\ + \ under this section with respect to the API Development Software shall terminate when You\ + \ can document that (a) it was in the public domain at or subsequent to the time it was\ + \ communicated to You by Adobe through no fault of Yours, (b) it was developed by Your employees\ + \ or agents independently of and without reference to any information communicated to You\ + \ by Adobe; or (c) the communication was in response to a valid order by a court or other\ + \ governmental body, was otherwise required by law, or was necessary to establish the rights\ + \ of either party under this License.\n\n6. Open Source Software.\n\nNotwithstanding anything\ + \ to the contrary, You are not licensed to (and You agree that You will not) integrate or\ + \ use this SDK with any Open Source Software or otherwise take any action that could require\ + \ disclosure, distribution or licensing of all or any part of the SDK in source code form,\ + \ for the purpose of making derivative works, or at no charge. For the purposes of this\ + \ Section 6, \"Open Source Software\" shall mean software licensed under the GNU General\ + \ Public License, the GNU Lesser General Public License or any other license terms that\ + \ could require, or condition Your use, modification or distribution of such software on,\ + \ the disclosure, distribution or licensing of any other software in source code form, for\ + \ the purpose of making derivative works, or at no charge. Any violation of the foregoing\ + \ provision shall immediately terminate all of Your licenses and other rights to the SDK\ + \ granted under this License.\n\n7. Term and Termination.\n\nThis License will commence\ + \ upon the Effective Date and continue in perpetuity unless terminated as set forth herein.\ + \ Adobe may terminate this License immediately if You breach any of its terms. Sections\ + \ 1, 2(e), 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 16 and 17 will survive any termination\ + \ of this License. Upon termination of this License, You will cease all use and distribution\ + \ of the SDK and return to Adobe or destroy (with written confirmation of destruction) the\ + \ SDK promptly at Adobe’s request, together with any copies thereof.\n\n8. Disclaimer of\ + \ Warranty.\n\nAdobe licenses the SDK to Developer only on an \"AS-IS\" basis. Adobe makes\ + \ no representation with respect to the adequacy of any items in the SDK whether or not\ + \ used by You in the development of any products for any particular purpose or with respect\ + \ to their adequacy to produce any particular result. Adobe and its suppliers shall not\ + \ be liable for loss or damage arising out of this License or from the distribution or use\ + \ of Developers products containing portions of the SDK. ADOBE AND ITS SUPPLIERS DISCLAIM\ + \ ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO IMPLIED CONDITIONS\ + \ OR WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT\ + \ OF ANY THIRD PARTY RIGHT IN RESPECT OF THE ITEMS IN THE SDK OR ANY SERVICES RELATED TO\ + \ THE SDK.\n\nSome states or jurisdictions do not allow the exclusion or limitation of incidental,\ + \ consequential or special damages, or the exclusion of implied warranties or limitations\ + \ on how long an implied warranty may last, so the above limitations may not apply to You.\ + \ You may have rights which vary from state to state or jurisdiction to jurisdiction. The\ + \ foregoing does not affect or prejudice Your statutory rights. To the extent permissible,\ + \ any implied warranties are limited to ninety (90) days. For further warranty information\ + \ You may contact Adobe’s Customer Support Department.\n\nAdobe is under no obligation to\ + \ provide any support under this License, including upgrades or future versions of this\ + \ SDK or any portions thereof, to Developer, end user or to any other party. Adobe is acting\ + \ on behalf of its suppliers for the purpose of disclaiming, excluding and/or restricting\ + \ obligations, warranties and liability as provided in this Section 8, but in no other respects\ + \ and for no other purpose.\n\n9. Limitation of Liability.\n\nNotwithstanding any other\ + \ provisions of this License, Adobe’s liability to You under this License shall be limited\ + \ to the amount paid by You for the SDK.\n\nIN NO EVENT WILL ADOBE OR ITS SUPPLIERS BE LIABLE\ + \ TO YOU FOR ANY CONSEQUENTIAL, INCIDENTAL OR SPECIAL DAMAGES INCLUDING DAMAGES FOR ANY\ + \ LOST PROFITS, LOST SAVINGS, LOSS OF DATA, COSTS, FEES OR EXPENSES OF ANY KIND OR NATURE\ + \ ARISING OUT OF ANY PROVISION OF THIS LICENSE OR THE USE OR INABILITY TO USE THE ITEMS\ + \ IN THE SDK, EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\ + \ DAMAGES, OR FOR ANY CLAIM BY ANY PARTY. Some jurisdictions do not allow the exclusion\ + \ or limitation of incidental, consequential or special damages, so the above limitation\ + \ or exclusion may not apply to You. Nothing contained in this License shall prejudice the\ + \ statutory rights of any party dealing as a consumer.\n\n10. Indemnification.\n\nYou agree\ + \ to indemnify, hold harmless and defend Adobe and its suppliers from and against any liabilities,\ + \ losses, actions damages, claims or lawsuits (including product liability, warranty and\ + \ intellectual property claims and all reasonable expenses, costs and attorney’s fees),\ + \ that arise or result from the use or distribution of Developer’s products that contains\ + \ or is based upon any portion of the SDK, provided that Adobe gives You prompt written\ + \ notice of any such claim and cooperates with You, at Your expense, in defending or settling\ + \ such claim.\n\n11. Choice Of Law.\n\nIf You are a consumer who uses the SDK for only personal\ + \ non-business purposes, then this License will be governed by the laws of the state in\ + \ which You purchased the license to use the SDK. If You are not such a consumer, this License\ + \ is governed by and construed in accordance with the substantive laws in force: (a) in\ + \ the State of California, if a license to the Software is obtained when You are in the\ + \ United States, Canada, or Mexico; or (b) in Japan, if a license to the Software is obtained\ + \ when You are in Japan, China, Korea, R.O.C, or other Southeast Asian country where all\ + \ official languages are written in either an ideographic script (e.g., Hanzi, Kanji or\ + \ Hanja), and/or other script based upon or similar in structure to an ideographic script,\ + \ such as Hangul or Kana; or (c) the Republic of Ireland, if a license to the Software is\ + \ obtained when You are in any other jurisdiction not described above. The respective courts\ + \ of Santa Clara County, California, when California law applies, Tokyo District Court in\ + \ Japan, when Japanese law applies, and the courts of the Republic of Ireland, when the\ + \ law of the Republic of Ireland applies, shall each have non-exclusive jurisdiction over\ + \ all disputes relating to this License. This License will not be governed by the conflict\ + \ of law rules of any jurisdiction or the United Nations Convention on Contracts for the\ + \ International Sale of Goods, the application of which is expressly excluded.\n\n12. Export\ + \ Rules.\n\nYou acknowledge that this Software is subject to the U.S. Export Administration\ + \ Regulations (the \"EAR\") and that You will comply with the EAR. You will not export or\ + \ re-export this Software, directly or indirectly, to: (a) any countries that are subject\ + \ to US export restrictions (currently including, but not necessarily limited to, Cuba,\ + \ Iran, North Korea, Sudan and Syria); (b) any end user who You know or have reason to know\ + \ will utilize them in the design, development or production of nuclear, chemical or biological\ + \ weapons, or rocket systems, space launch vehicles and sounding rockets or unmanned air\ + \ vehicle systems; or (c) any end user who has been prohibited from participating in the\ + \ US export transactions by any federal agency of the US government. In addition, You are\ + \ responsible for complying with any local laws in Your jurisdiction which may impact Your\ + \ right to import, export or use this Software. All rights to use this Software are granted\ + \ on condition that such rights are forfeited if You fail to comply with the terms of this\ + \ Section 12..\n\n13. Waiver.\n\nNone of the provisions of this License shall be deemed\ + \ to have been waived by any act or acquiescence on the part of Adobe, its agents or employees,\ + \ but only by an instrument in writing signed by an officer of Adobe.\n\n14. Notice to U.S.\ + \ Government End Users.\n\nThe SDK and any documentation are \"Commercial Item(s),\" as\ + \ that term is defined at 48 C.F.R. Section 2.101, consisting of \"Commercial Computer Software\"\ + \ and \"Commercial Computer Software Documentation,\" as such terms are used in 48 C.F.R.\ + \ Section 12.212 or 48 C.F.R. Section 227.7202, as applicable. Consistent with 48 C.F.R.\ + \ Section 12.212 or 48 C.F.R. Sections 227.7202-1 through 227.7202-4, as applicable, the\ + \ Commercial Computer Software and Commercial Computer Software Documentation are being\ + \ licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those\ + \ rights as are granted to all other end users pursuant to the terms and conditions herein.\ + \ Unpublished-rights reserved under the copyright laws of the United States. Adobe Systems\ + \ Incorporated, 345 Park Avenue, San Jose, CA 95110-2704, USA.\n\n15. Integration.\n\nWhen\ + \ conflicting language exists between this License and any other agreement included in the\ + \ SDK, this License shall supersede. If either Adobe or Developer employs attorneys to enforce\ + \ any rights arising out of or relating to this License, the prevailing party shall be entitled\ + \ to recover reasonable attorneys’ fees. You acknowledge that You have read this License,\ + \ understand it and that it is the complete and exclusive statement of Your agreement with\ + \ Adobe, which supersedes any prior agreement, oral or written, between Adobe and You with\ + \ respect to the licensing to You of the SDK. No variation of the terms of this License\ + \ will be enforceable against Adobe unless Adobe gives its express consent, in writing signed\ + \ by an officer of Adobe. The English language version of this License shall be the version\ + \ used in the event any dispute arises hereunder. All translations of this License are for\ + \ convenience only and shall not be used by the parties or any court when interpreting or\ + \ construing this License.\n\n16. Binding Agreement.\n\nThis License governs installation\ + \ and use of the SDK. You agree that this License is like any written negotiated agreement\ + \ signed by You. By clicking to acknowledge agreement to be bound during review of an electronic\ + \ version of this License or by downloading, copying, installing or using any portion of\ + \ this SDK, You accept all the terms and conditions of this License. This License is enforceable\ + \ against You and any person or entity that obtains this SDK or on whose behalf they are\ + \ used: for example, Your employer. If You do not agree to the terms of this License, do\ + \ not use any portion of this SDK. This License shall apply to any portion of the SDK, regardless\ + \ of whether other software is referred to or described herein.\n\n17. Additional Terms.\n\ + \nYou may have a separate written agreement with Adobe that supplements or supersedes all\ + \ or portions of this License. Your use of some third party materials included in the SDK\ + \ may be subject to other terms and conditions typically found in a separate license agreement\ + \ or a \"ReadMe\" file located near such materials or in the \"Third Party Software Notices\ + \ and/or Additional Terms and Conditions\" found at http://www.adobe.com/go/thirdparty.\ + \ Such other terms and conditions may require You to pass through notices to Your end users.\ + \ Such other terms and conditions will supersede all or portions of this License in the\ + \ event of a conflict with the terms and conditions of this License.\n\nInDesign_InCopy_InDesignServerSDK_IHC-en_US-20110502" json: adobe-indesign-sdk.json - yml: adobe-indesign-sdk.yml + yaml: adobe-indesign-sdk.yml html: adobe-indesign-sdk.html - text: adobe-indesign-sdk.LICENSE + license: adobe-indesign-sdk.LICENSE - license_key: adobe-postscript + category: Proprietary Free spdx_license_key: LicenseRef-scancode-adobe-postscript other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Patents Pending + + NOTICE: All information contained herein is the property + of Adobe Systems Incorporated. + + Permission is granted for redistribution of this file + provided this copyright notice is maintained intact and + that the contents of this file are not altered in any + way from its original form. + + PostScript and Display PostScript are trademarks of + Adobe Systems Incorporated which may be registered in + certain jurisdictions. json: adobe-postscript.json - yml: adobe-postscript.yml + yaml: adobe-postscript.yml html: adobe-postscript.html - text: adobe-postscript.LICENSE + license: adobe-postscript.LICENSE - license_key: adobe-scl + category: Permissive spdx_license_key: Adobe-2006 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Please read this Source Code License Agreement carefully before using the source + code. + + Adobe Systems Incorporated 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, and distribute this source code and + such derivative works in source or object code form without any attribution + requirements. + + The name "Adobe Systems Incorporated" must not be used to endorse or promote products + derived from the source code without prior written permission. + + You agree to indemnify, hold harmless and defend Adobe Systems Incorporated from and + against any loss, damage, claims or lawsuits, including attorney's fees that arise or + result from your use or distribution of the source code. + + THIS SOURCE CODE IS PROVIDED "AS IS" AND "WITH ALL FAULTS", WITHOUT ANY TECHNICAL + SUPPORT OR ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. ALSO, THERE IS NO WARRANTY OF NON-INFRINGEMENT, TITLE OR QUIET ENJOYMENT. + IN NO EVENT SHALL MACROMEDIA OR ITS SUPPLIERS 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 SOURCE CODE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. json: adobe-scl.json - yml: adobe-scl.yml + yaml: adobe-scl.yml html: adobe-scl.html - text: adobe-scl.LICENSE + license: adobe-scl.LICENSE - license_key: adrian + category: Permissive spdx_license_key: LicenseRef-scancode-adrian other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + You are allowed to use this source code in any open source or closed + source software you want. You are allowed to use the algorithms for a + hardware solution. You are allowed to modify the source code. + You are not allowed to remove the name of the author from this memo or + from the source code files. You are not allowed to monopolize the + source code or the algorithms behind the source code as your + intellectual property. This source code is free of royalty and comes + with no warranty. json: adrian.json - yml: adrian.yml + yaml: adrian.yml html: adrian.html - text: adrian.LICENSE + license: adrian.LICENSE - license_key: adsl + category: Permissive spdx_license_key: ADSL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This software code is made available "AS IS" without warranties of any kind. + + You may copy, display, modify and redistribute the software code either by + itself or as incorporated into your code; provided that you do not remove any + proprietary notices. + + Your use of this software code is at your own risk and you waive any claim + against Amazon Digital Services, Inc. or its affiliates with respect to your use + of this software code. json: adsl.json - yml: adsl.yml + yaml: adsl.yml html: adsl.html - text: adsl.LICENSE + license: adsl.LICENSE - license_key: aes-128-3.0 + category: Public Domain spdx_license_key: LicenseRef-scancode-aes-128-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: "All code contained in this distributed is placed in the public domain.\n=============================================================\ + \ \nDisclaimer:\nTHIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' \nAND ANY EXPRESS OR\ + \ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, \nTHE IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND FITNESS FOR A PARTICULAR \nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR\ + \ CONTRIBUTORS\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, \nOR\ + \ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT \nOF SUBSTITUTE GOODS\ + \ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR \nBUSINESS INTERRUPTION) HOWEVER CAUSED\ + \ AND ON ANY THEORY OF LIABILITY, \nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\ + \ NEGLIGENCE \nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, \nEVEN\ + \ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n=============================================================" json: aes-128-3.0.json - yml: aes-128-3.0.yml + yaml: aes-128-3.0.yml html: aes-128-3.0.html - text: aes-128-3.0.LICENSE + license: aes-128-3.0.LICENSE - license_key: afl-1.1 + category: Permissive spdx_license_key: AFL-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Academic Free License + Version 1.1 + + The Academic Free License applies to any original work of authorship + (the "Original Work") whose owner (the "Licensor") has placed the + following notice immediately following the copyright notice for the + Original Work: "Licensed under the Academic Free License version 1.1." + + Grant of License. Licensor hereby grants to any person obtaining a + copy of the Original Work ("You") a world-wide, royalty-free, + non-exclusive, perpetual, non-sublicenseable license (1) to use, copy, + modify, merge, publish, perform, distribute and/or sell copies of the + Original Work and derivative works thereof, and (2) under patent + claims owned or controlled by the Licensor that are embodied in the + Original Work as furnished by the Licensor, to make, use, sell and + offer for sale the Original Work and derivative works thereof, subject + to the following conditions. + + Right of Attribution. Redistributions of the Original Work must + reproduce all copyright notices in the Original Work as furnished by + the Licensor, both in the Original Work itself and in any + documentation and/or other materials provided with the distribution of + the Original Work in executable form. + + Exclusions from License Grant. Neither the names of Licensor, nor the + names of any contributors to the Original Work, nor any of their + trademarks or service marks, may be used to endorse or promote + products derived from this Original Work without express prior written + permission of the Licensor. + + WARRANTY AND DISCLAIMERS. LICENSOR WARRANTS THAT THE COPYRIGHT IN AND + TO THE ORIGINAL WORK IS OWNED BY THE LICENSOR OR THAT THE ORIGINAL + WORK IS DISTRIBUTED BY LICENSOR UNDER A VALID CURRENT LICENSE FROM THE + COPYRIGHT OWNER. EXCEPT AS EXPRESSLY STATED IN THE IMMEDIATELY + PRECEEDING SENTENCE, THE ORIGINAL WORK IS PROVIDED UNDER THIS LICENSE + ON AN "AS IS" BASIS, WITHOUT WARRANTY, EITHER EXPRESS OR IMPLIED, + INCLUDING, WITHOUT LIMITATION, THE WARRANTY OF NON-INFRINGEMENT AND + WARRANTIES THAT THE ORIGINAL WORK IS MERCHANTABLE OR FIT FOR A + PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL + WORK IS WITH YOU. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL + PART OF THIS LICENSE. NO LICENSE TO ORIGINAL WORK IS GRANTED HEREUNDER + EXCEPT UNDER THIS DISCLAIMER. + + LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL + THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, + SHALL THE LICENSOR BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, + SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING + AS A RESULT OF THIS LICENSE OR THE USE OF THE ORIGINAL WORK INCLUDING, + WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, + COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL + DAMAGES OR LOSSES, EVEN IF SUCH PERSON SHALL HAVE BEEN INFORMED OF THE + POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT + APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH + PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH + LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR + LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION + AND LIMITATION MAY NOT APPLY TO YOU. + + License to Source Code. The term "Source Code" means the preferred + form of the Original Work for making modifications to it and all + available documentation describing how to access and modify the + Original Work. Licensor hereby agrees to provide a machine-readable + copy of the Source Code of the Original Work along with each copy of + the Original Work that Licensor distributes. Licensor reserves the + right to satisfy this obligation by placing a machine-readable copy of + the Source Code in an information repository reasonably calculated to + permit inexpensive and convenient access by You for as long as + Licensor continues to distribute the Original Work, and by publishing + the address of that information repository in a notice immediately + following the copyright notice that applies to the Original Work. + + Mutual Termination for Patent Action. This License shall terminate + automatically and You may no longer exercise any of the rights granted + to You by this License if You file a lawsuit in any court alleging + that any OSI Certified open source software that is licensed under any + license containing this "Mutual Termination for Patent Action" clause + infringes any patent claims that are essential to use that software. + + This license is Copyright (C) 2002 Lawrence E. Rosen. All rights + reserved. Permission is hereby granted to copy and distribute this + license without modification. This license may not be modified without + the express written permission of its copyright owner. + + -- + END OF LICENSE. json: afl-1.1.json - yml: afl-1.1.yml + yaml: afl-1.1.yml html: afl-1.1.html - text: afl-1.1.LICENSE + license: afl-1.1.LICENSE - license_key: afl-1.2 + category: Permissive spdx_license_key: AFL-1.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Academic Free License\n\t\tVersion 1.2\n\nThis Academic Free License applies to any\ + \ original work of authorship \n(the \"Original Work\") whose owner (the \"Licensor\") has\ + \ placed the \nfollowing notice immediately following the copyright notice for the \nOriginal\ + \ Work:\n\nLicensed under the Academic Free License version 1.2\n\nGrant of License. Licensor\ + \ hereby grants to any person obtaining a \ncopy of the Original Work (\"You\") a world-wide,\ + \ royalty-free, \nnon-exclusive, perpetual, non-sublicenseable license (1) to use, copy,\ + \ \nmodify, merge, publish, perform, distribute and/or sell copies of the \nOriginal Work\ + \ and derivative works thereof, and (2) under patent claims \nowned or controlled by the\ + \ Licensor that are embodied in the Original \nWork as furnished by the Licensor, to make,\ + \ use, sell and offer for \nsale the Original Work and derivative works thereof, subject\ + \ to the \nfollowing conditions.\n\nAttribution Rights. You must retain, in the Source Code\ + \ of any \nDerivative Works that You create, all copyright, patent or trademark \nnotices\ + \ from the Source Code of the Original Work, as well as any \nnotices of licensing and any\ + \ descriptive text identified therein as an \n\"Attribution Notice.\" You must cause the\ + \ Source Code for any Derivative \nWorks that You create to carry a prominent Attribution\ + \ Notice reasonably \ncalculated to inform recipients that You have modified the Original\ + \ Work.\n\nExclusions from License Grant. Neither the names of Licensor, nor the \nnames\ + \ of any contributors to the Original Work, nor any of their \ntrademarks or service marks,\ + \ may be used to endorse or promote products \nderived from this Original Work without express\ + \ prior written permission \nof the Licensor.\n\nWarranty and Disclaimer of Warranty. Licensor\ + \ warrants that the copyright \nin and to the Original Work is owned by the Licensor or\ + \ that the Original \nWork is distributed by Licensor under a valid current license from\ + \ the \ncopyright owner. Except as expressly stated in the immediately proceeding \nsentence,\ + \ the Original Work is provided under this License on an \"AS IS\" \nBASIS and WITHOUT WARRANTY,\ + \ either express or implied, including, without \nlimitation, the warranties of NON-INFRINGEMENT,\ + \ MERCHANTABILITY or FITNESS \nFOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY\ + \ OF THE ORIGINAL \nWORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential\ + \ part \nof this License. No license to Original Work is granted hereunder except \nunder\ + \ this disclaimer.\n\nLimitation of Liability. Under no circumstances and under no legal\ + \ theory, \nwhether in tort (including negligence), contract, or otherwise, shall the \n\ + Licensor be liable to any person for any direct, indirect, special, \nincidental, or consequential\ + \ damages of any character arising as a result \nof this License or the use of the Original\ + \ Work including, without \nlimitation, damages for loss of goodwill, work stoppage, computer\ + \ failure \nor malfunction, or any and all other commercial damages or losses. This \nlimitation\ + \ of liability shall not apply to liability for death or personal \ninjury resulting from\ + \ Licensor's negligence to the extent applicable law \nprohibits such limitation. Some jurisdictions\ + \ do not allow the exclusion or \nlimitation of incidental or consequential damages, so\ + \ this exclusion and \nlimitation may not apply to You.\n\nLicense to Source Code. The term\ + \ \"Source Code\" means the preferred form of \nthe Original Work for making modifications\ + \ to it and all available \ndocumentation describing how to modify the Original Work. Licensor\ + \ hereby \nagrees to provide a machine-readable copy of the Source Code of the Original\ + \ \nWork along with each copy of the Original Work that Licensor distributes. \nLicensor\ + \ reserves the right to satisfy this obligation by placing a \nmachine-readable copy of\ + \ the Source Code in an information repository \nreasonably calculated to permit inexpensive\ + \ and convenient access by You for \nas long as Licensor continues to distribute the Original\ + \ Work, and by \npublishing the address of that information repository in a notice immediately\ + \ \nfollowing the copyright notice that applies to the Original Work.\n\nMutual Termination\ + \ for Patent Action. This License shall terminate \nautomatically and You may no longer\ + \ exercise any of the rights granted to You \nby this License if You file a lawsuit in any\ + \ court alleging that any OSI \nCertified open source software that is licensed under any\ + \ license containing \nthis \"Mutual Termination for Patent Action\" clause infringes any\ + \ patent \nclaims that are essential to use that software.\n\nRight to Use. You may use\ + \ the Original Work in all ways not otherwise \nrestricted or conditioned by this License\ + \ or by law, and Licensor promises \nnot to interfere with or be responsible for such uses\ + \ by You.\n\nThis license is Copyright (C) 2002 Lawrence E. Rosen. All rights reserved.\ + \ \nPermission is hereby granted to copy and distribute this license without \nmodification.\ + \ This license may not be modified without the express written \npermission of its copyright\ + \ owner." json: afl-1.2.json - yml: afl-1.2.yml + yaml: afl-1.2.yml html: afl-1.2.html - text: afl-1.2.LICENSE + license: afl-1.2.LICENSE - license_key: afl-2.0 + category: Permissive spdx_license_key: AFL-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Academic Free License\nv. 2.0\n\nThis Academic Free License (the \"License\") applies\ + \ to any original work of authorship (the \"Original Work\") whose owner (the \"Licensor\"\ + ) has placed the following notice immediately following the copyright notice for the Original\ + \ Work:\n\n Licensed under the Academic Free License version 2.0\n\n1) Grant of Copyright\ + \ License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual,\ + \ sublicenseable license to do the following:\n\n a) to reproduce the Original Work in\ + \ copies;\n\n b) to prepare derivative works (\"Derivative Works\") based upon the Original\ + \ Work;\n\n c) to distribute copies of the Original Work and Derivative Works to the\ + \ public;\n\n d) to perform the Original Work publicly; and\n\n e) to display the\ + \ Original Work publicly. \n\n2) Grant of Patent License. Licensor hereby grants You a world-wide,\ + \ royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned\ + \ or controlled by the Licensor that are embodied in the Original Work as furnished by the\ + \ Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works.\n\ + \n3) Grant of Source Code License. The term \"Source Code\" means the preferred form of\ + \ the Original Work for making modifications to it and all available documentation describing\ + \ how to modify the Original Work. Licensor hereby agrees to provide a machine-readable\ + \ copy of the Source Code of the Original Work along with each copy of the Original Work\ + \ that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing\ + \ a machine-readable copy of the Source Code in an information repository reasonably calculated\ + \ to permit inexpensive and convenient access by You for as long as Licensor continues to\ + \ distribute the Original Work, and by publishing the address of that information repository\ + \ in a notice immediately following the copyright notice that applies to the Original Work.\n\ + \n4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any\ + \ contributors to the Original Work, nor any of their trademarks or service marks, may be\ + \ used to endorse or promote products derived from this Original Work without express prior\ + \ written permission of the Licensor. Nothing in this License shall be deemed to grant any\ + \ rights to trademarks, copyrights, patents, trade secrets or any other intellectual property\ + \ of Licensor except as expressly stated herein. No patent license is granted to make, use,\ + \ sell or offer to sell embodiments of any patent claims other than the licensed claims\ + \ defined in Section 2. No right is granted to the trademarks of Licensor even if such marks\ + \ are included in the Original Work. Nothing in this License shall be interpreted to prohibit\ + \ Licensor from licensing under different terms from this License any Original Work that\ + \ Licensor otherwise would have a right to license.\n\n5) This section intentionally omitted.\n\ + \n6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that\ + \ You create, all copyright, patent or trademark notices from the Source Code of the Original\ + \ Work, as well as any notices of licensing and any descriptive text identified therein\ + \ as an \"Attribution Notice.\" You must cause the Source Code for any Derivative Works\ + \ that You create to carry a prominent Attribution Notice reasonably calculated to inform\ + \ recipients that You have modified the Original Work.\n7) Warranty of Provenance and Disclaimer\ + \ of Warranty. Licensor warrants that the copyright in and to the Original Work and the\ + \ patent rights granted herein by Licensor are owned by the Licensor or are sublicensed\ + \ to You under the terms of this License with the permission of the contributor(s) of those\ + \ copyrights and patent rights. Except as expressly stated in the immediately proceeding\ + \ sentence, the Original Work is provided under this License on an \"AS IS\" BASIS and WITHOUT\ + \ WARRANTY, either express or implied, including, without limitation, the warranties of\ + \ NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK\ + \ AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes\ + \ an essential part of this License. No license to Original Work is granted hereunder except\ + \ under this disclaimer.\n\n8) Limitation of Liability. Under no circumstances and under\ + \ no legal theory, whether in tort (including negligence), contract, or otherwise, shall\ + \ the Licensor be liable to any person for any direct, indirect, special, incidental, or\ + \ consequential damages of any character arising as a result of this License or the use\ + \ of the Original Work including, without limitation, damages for loss of goodwill, work\ + \ stoppage, computer failure or malfunction, or any and all other commercial damages or\ + \ losses. This limitation of liability shall not apply to liability for death or personal\ + \ injury resulting from Licensor's negligence to the extent applicable law prohibits such\ + \ limitation. Some jurisdictions do not allow the exclusion or limitation of incidental\ + \ or consequential damages, so this exclusion and limitation may not apply to You.\n\n9)\ + \ Acceptance and Termination. If You distribute copies of the Original Work or a Derivative\ + \ Work, You must make a reasonable effort under the circumstances to obtain the express\ + \ assent of recipients to the terms of this License. Nothing else but this License (or another\ + \ written agreement between Licensor and You) grants You permission to create Derivative\ + \ Works based upon the Original Work or to exercise any of the rights granted in Section\ + \ 1 herein, and any attempt to do so except under the terms of this License (or another\ + \ written agreement between Licensor and You) is expressly prohibited by U.S. copyright\ + \ law, the equivalent laws of other countries, and by international treaty. Therefore, by\ + \ exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance\ + \ of this License and all of its terms and conditions.\n\n10) Termination for Patent Action.\ + \ This License shall terminate automatically and You may no longer exercise any of the rights\ + \ granted to You by this License as of the date You commence an action, including a cross-claim\ + \ or counterclaim, for patent infringement (i) against Licensor with respect to a patent\ + \ applicable to software or (ii) against any entity with respect to a patent applicable\ + \ to the Original Work (but excluding combinations of the Original Work with other software\ + \ or hardware).\n\n11) Jurisdiction, Venue and Governing Law. Any action or suit relating\ + \ to this License may be brought only in the courts of a jurisdiction wherein the Licensor\ + \ resides or in which Licensor conducts its primary business, and under the laws of that\ + \ jurisdiction excluding its conflict-of-law provisions. The application of the United Nations\ + \ Convention on Contracts for the International Sale of Goods is expressly excluded. Any\ + \ use of the Original Work outside the scope of this License or after its termination shall\ + \ be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. 101\ + \ et seq., the equivalent laws of other countries, and international treaty. This section\ + \ shall survive the termination of this License.\n\n12) Attorneys Fees. In any action to\ + \ enforce the terms of this License or seeking damages relating thereto, the prevailing\ + \ party shall be entitled to recover its costs and expenses, including, without limitation,\ + \ reasonable attorneys' fees and costs incurred in connection with such action, including\ + \ anyluding any appeal of such action. This section shall survive the termination of this\ + \ License.\n\n13) Miscellaneous. This License represents the complete agreement concerning\ + \ the subject matter hereof. If any provision of this License is held to be unenforceable,\ + \ such provision shall be reformed only to the extent necessary to make it enforceable.\n\ + \n14) Definition of \"You\" in This License. \"You\" throughout this License, whether in\ + \ upper or lower case, means an individual or a legal entity exercising rights under, and\ + \ complying with all of the terms of, this License. For legal entities, \"You\" includes\ + \ any entity that controls, is controlled by, or is under common control with you. For purposes\ + \ of this definition, \"control\" means (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.\n\n15) Right to Use. You may use the Original Work in all ways not otherwise\ + \ restricted or conditioned by this License or by law, and Licensor promises not to interfere\ + \ with or be responsible for such uses by You." json: afl-2.0.json - yml: afl-2.0.yml + yaml: afl-2.0.yml html: afl-2.0.html - text: afl-2.0.LICENSE + license: afl-2.0.LICENSE - license_key: afl-2.1 + category: Permissive spdx_license_key: AFL-2.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The Academic Free License + v. 2.1 + + This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: + + Licensed under the Academic Free License version 2.1 + + 1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following: + + a) to reproduce the Original Work in copies; + + b) to prepare derivative works ("Derivative Works") based upon the Original Work; + + c) to distribute copies of the Original Work and Derivative Works to the public; + + d) to perform the Original Work publicly; and + + e) to display the Original Work publicly. + + 2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works. + + 3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work. + + 4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license. + + 5) This section intentionally omitted. + + 6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. + + 7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer. + + 8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. + + 9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions. + + 10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. + + 11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License. + + 12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. + + 13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. + + 14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (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. + + 15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. + + This license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner. json: afl-2.1.json - yml: afl-2.1.yml + yaml: afl-2.1.yml html: afl-2.1.html - text: afl-2.1.LICENSE + license: afl-2.1.LICENSE - license_key: afl-3.0 + category: Permissive spdx_license_key: AFL-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: + + Licensed under the Academic Free License version 3.0 + + 1) Grant of Copyright License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, for the duration of the copyright, to do the following: + + a) to reproduce the Original Work in copies, either alone or as part of a collective work; + + b) to translate, adapt, alter, transform, modify, or arrange the Original Work, thereby creating derivative works ("Derivative Works") based upon the Original Work; + + c) to distribute or communicate copies of the Original Work and Derivative Works to the public, under any license of your choice that does not contradict the terms and conditions, including Licensor's reserved rights and remedies, in this Academic Free License; + + d) to perform the Original Work publicly; and + + e) to display the Original Work publicly. + + 2) Grant of Patent License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, for the duration of the patents, to make, use, sell, offer for sale, have made, and import the Original Work and Derivative Works. + + 3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work. + + 4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior permission of the Licensor. Except as expressly stated herein, nothing in this License grants any license to Licensor's trademarks, copyrights, patents, trade secrets or any other intellectual property. No patent license is granted to make, use, sell, offer for sale, have made, or import embodiments of any patent claims other than the licensed claims defined in Section 2. No license is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under terms different from this License any Original Work that Licensor otherwise would have a right to license. + + 5) External Deployment. The term "External Deployment" means the use, distribution, or communication of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether those works are distributed or communicated to those persons or made available as an application intended for use over a network. As an express condition for the grants of license hereunder, You must treat any External Deployment by You of the Original Work or a Derivative Work as a distribution under section 1(c). + + 6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent, or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. + + 7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately preceding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of non-infringement, merchantability or fitness for a particular purpose. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to the Original Work is granted by this License except under this disclaimer. + + 8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to anyone for any indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to the extent applicable law prohibits such limitation. + + 9) Acceptance and Termination. If, at any time, You expressly assented to this License, that assent indicates your clear and irrevocable acceptance of this License and all of its terms and conditions. If You distribute or communicate copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. This License conditions your rights to undertake the activities listed in Section 1, including your right to create Derivative Works based upon the Original Work, and doing so without honoring these terms and conditions is prohibited by copyright law and international treaty. Nothing in this License is intended to affect copyright exceptions and limitations (including "fair use" or "fair dealing"). This License shall terminate immediately and You may no longer exercise any of the rights granted to You by this License upon your failure to honor the conditions in Section 1(c). + + 10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. + + 11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of copyright or patent law in the appropriate jurisdiction. This section shall survive the termination of this License. + + 12) Attorneys' Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. + + 13) Miscellaneous. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. + + 14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (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. + + 15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. + + 16) Modification of This License. This License is Copyright © 2005 Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the "Modified License") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the "Academic Free License" or "AFL" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice "Licensed under " or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process. json: afl-3.0.json - yml: afl-3.0.yml + yaml: afl-3.0.yml html: afl-3.0.html - text: afl-3.0.LICENSE + license: afl-3.0.LICENSE - license_key: afmparse + category: Permissive spdx_license_key: Afmparse other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This file may be freely copied and redistributed as long as: \n\n 1) This entire\ + \ notice continues to be included in the file, \n\n 2) If the file has been modified\ + \ in any way, a notice of such modification\n is conspicuously indicated.\n\nPostScript,\ + \ Display PostScript,and Adobe are registered trademarks of Adobe\nSystems Incorporated.\n\ + \nTHE INFORMATION BELOW IS FURNISHED AS IS, IS SUBJECT TO CHANGE WITHOUT NOTICE,\nAND SHOULD\ + \ NOT BE CONSTRUED AS A COMMITMENT BY ADOBE SYSTEMS INCORPORATED. ADOBE\nSYSTEMS INCORPORATED\ + \ ASSUMES NO RESPONSIBILITY OR LIABILITY FOR ANY ERRORS OR\nINACCURACIES, MAKES NO WARRANTY\ + \ OF ANY KIND (EXPRESS, IMPLIED OR STATUTORY) WITH\nRESPECT TO THIS INFORMATION, AND EXPRESSLY\ + \ DISCLAIMS ANY AND ALL WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR PARTICULAR PURPOSES\ + \ AND NONINFRINGEMENT OF THIRD\nPARTY RIGHTS." json: afmparse.json - yml: afmparse.yml + yaml: afmparse.yml html: afmparse.html - text: afmparse.LICENSE + license: afmparse.LICENSE - license_key: afpl-8.0 + category: Copyleft spdx_license_key: Aladdin other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "Aladdin Free Public License\n(Version 8, November 18, 1999)\n\nCopyright (C) 1994,\ + \ 1995, 1997, 1998, 1999 Aladdin Enterprises,\nMenlo Park, California, U.S.A. All rights\ + \ reserved.\n\nNOTE: This License is not the same as any of the GNU Licenses published by\ + \ the\nFree Software Foundation. Its terms are substantially different from those of\nthe\ + \ GNU Licenses. If you are familiar with the GNU Licenses, please read this\nlicense with\ + \ extra care.\n\nAladdin Enterprises hereby grants to anyone the permission to apply this\ + \ License\nto their own work, as long as the entire License (including the above notices\n\ + and this paragraph) is copied with no changes, additions, or deletions except\nfor changing\ + \ the first paragraph of Section 0 to include a suitable description\nof the work to which\ + \ the license is being applied and of the person or entity\nthat holds the copyright in\ + \ the work, and, if the License is being applied to a\nwork created in a country other than\ + \ the United States, replacing the first\nparagraph of Section 6 with an appropriate reference\ + \ to the laws of the\nappropriate country.\n\n0. Subject Matter \nThis License applies to\ + \ the computer program known as \"Aladdin Ghostscript.\" The\n\"Program\", below, refers\ + \ to such program. The Program is a copyrighted work\nwhose copyright is held by Aladdin\ + \ Enterprises (the \"Licensor\"). Please note\nthat Aladdin Ghostscript is neither the program\ + \ known as \"GNU Ghostscript\" nor\nthe version of Ghostscript available for commercial\ + \ licensing from Artifex\nSoftware Inc.\n\nA \"work based on the Program\" means either\ + \ the Program or any derivative work of\nthe Program, as defined in the United States Copyright\ + \ Act of 1976, such as a\ntranslation or a modification.\n\nBY MODIFYING OR DISTRIBUTING\ + \ THE PROGRAM (OR ANY WORK BASED ON THE PROGRAM), YOU\nINDICATE YOUR ACCEPTANCE OF THIS\ + \ LICENSE TO DO SO, AND ALL ITS TERMS AND\nCONDITIONS FOR COPYING, DISTRIBUTING OR MODIFYING\ + \ THE PROGRAM OR WORKS BASED ON\nIT. NOTHING OTHER THAN THIS LICENSE GRANTS YOU PERMISSION\ + \ TO MODIFY OR\nDISTRIBUTE THE PROGRAM OR ITS DERIVATIVE WORKS. THESE ACTIONS ARE PROHIBITED\ + \ BY\nLAW. IF YOU DO NOT ACCEPT THESE TERMS AND CONDITIONS, DO NOT MODIFY OR\nDISTRIBUTE\ + \ THE PROGRAM.\n\n1. Licenses.\nLicensor hereby grants you the following rights, provided\ + \ that you comply with\nall of the restrictions set forth in this License and provided,\ + \ further, that\nyou distribute an unmodified copy of this License with the Program:\n\n\ + (a)\nYou may copy and distribute literal (i.e., verbatim) copies of the Program's\nsource\ + \ code as you receive it throughout the world, in any medium.\n\n(b)\nYou may modify the\ + \ Program, create works based on the Program and distribute\ncopies of such throughout the\ + \ world, in any medium.\n\n\n2. Restrictions.\nThis license is subject to the following\ + \ restrictions:\n\n(a)\nDistribution of the Program or any work based on the Program by\ + \ a commercial\norganization to any third party is prohibited if any payment is made in\n\ + connection with such distribution, whether directly (as in payment for a copy of\nthe Program)\ + \ or indirectly (as in payment for some service related to the\nProgram, or payment for\ + \ some product or service that includes a copy of the\nProgram \"without charge\"; these\ + \ are only examples, and not an exhaustive\nenumeration of prohibited activities). The following\ + \ methods of distribution\ninvolving payment shall not in and of themselves be a violation\ + \ of this\nrestriction:\n\n(i)\nPosting the Program on a public access information storage\ + \ and retrieval service\nfor which a fee is received for retrieving information (such as\ + \ an on-line\nservice), provided that the fee is not content-dependent (i.e., the fee would\ + \ be\nthe same for retrieving the same volume of information consisting of random\ndata)\ + \ and that access to the service and to the Program is available independent\nof any other\ + \ product or service. An example of a service that does not fall\nunder this section is\ + \ an on-line service that is operated by a company and that\nis only available to customers\ + \ of that company. (This is not an exhaustive\nenumeration.)\n\n(ii)\nDistributing the Program\ + \ on removable computer-readable media, provided that the\nfiles containing the Program\ + \ are reproduced entirely and verbatim on such media,\nthat all information on such media\ + \ be redistributable for non-commercial\npurposes without charge, and that such media are\ + \ distributed by themselves\n(except for accompanying documentation) independent of any\ + \ other product or\nservice. Examples of such media include CD-ROM, magnetic tape, and optical\n\ + storage media. (This is not intended to be an exhaustive list.) An example of a\ndistribution\ + \ that does not fall under this section is a CD-ROM included in a\nbook or magazine. (This\ + \ is not an exhaustive enumeration.)\n\n(b)\nActivities other than copying, distribution\ + \ and modification of the Program are\nnot subject to this License and they are outside\ + \ its scope. Functional use\n(running) of the Program is not restricted, and any output\ + \ produced through the\nuse of the Program is subject to this license only if its contents\ + \ constitute a\nwork based on the Program (independent of having been made by running the\n\ + Program).\n\n(c)\nYou must meet all of the following conditions with respect to any work\ + \ that you\ndistribute or publish that in whole or in part contains or is derived from the\n\ + Program or any part thereof (\"the Work\"):\n\n(i)\nIf you have modified the Program, you\ + \ must cause the Work to carry prominent\nnotices stating that you have modified the Program's\ + \ files and the date of any\nchange. In each source file that you have modified, you must\ + \ include a prominent\nnotice that you have modified the file, including your name, your\ + \ e-mail address\n(if any), and the date and purpose of the change;\n\n(ii)\nYou must cause\ + \ the Work to be licensed as a whole and at no charge to all third\nparties under the terms\ + \ of this License;\n\n(iii)\nIf the Work normally reads commands interactively when run,\ + \ you must cause it,\nat each time the Work commences operation, to print or display an\ + \ announcement\nincluding an appropriate copyright notice and a notice that there is no\ + \ warranty\n(or else, saying that you provide a warranty). Such notice must also state that\n\ + users may redistribute the Work only under the conditions of this License and\ntell the\ + \ user how to view the copy of this License included with the Work.\n(Exceptions: if the\ + \ Program is interactive but normally prints or displays such\nan announcement only at the\ + \ request of a user, such as in an \"About box\", the\nWork is required to print or display\ + \ the notice only under the same\ncircumstances; if the Program itself is interactive but\ + \ does not normally print\nsuch an announcement, the Work is not required to print an announcement.);\n\ + \n(iv)\nYou must accompany the Work with the complete corresponding machine-readable\nsource\ + \ code, delivered on a medium customarily used for software interchange.\nThe source code\ + \ for a work means the preferred form of the work for making\nmodifications to it. For an\ + \ executable work, complete source code means all the\nsource code for all modules it contains,\ + \ plus any associated interface\ndefinition files, plus the scripts used to control compilation\ + \ and installation\nof the executable code. If you distribute with the Work any component\ + \ that is\nnormally distributed (in either source or binary form) with the major components\n\ + (compiler, kernel, and so on) of the operating system on which the executable\nruns, you\ + \ must also distribute the source code of that component if you have it\nand are allowed\ + \ to do so;\n\n(v)\nIf you distribute any written or printed material at all with the Work,\ + \ such\nmaterial must include either a written copy of this License, or a prominent\nwritten\ + \ indication that the Work is covered by this License and written\ninstructions for printing\ + \ and/or displaying the copy of the License on the\ndistribution medium;\n\n(vi)\nYou may\ + \ not impose any further restrictions on the recipient's exercise of the\nrights granted\ + \ herein.\n\nIf distribution of executable or object code is made by offering the equivalent\n\ + ability to copy from a designated place, then offering equivalent ability to\ncopy the source\ + \ code from the same place counts as distribution of the source\ncode, even though third\ + \ parties are not compelled to copy the source code along\nwith the object code.\n\n3. Reservation\ + \ of Rights.\nNo rights are granted to the Program except as expressly set forth herein.\ + \ You\nmay not copy, modify, sublicense, or distribute the Program except as expressly\n\ + provided under this License. Any attempt otherwise to copy, modify, sublicense\nor distribute\ + \ the Program is void, and will automatically terminate your rights\nunder this License.\ + \ However, parties who have received copies, or rights, from\nyou under this License will\ + \ not have their licenses terminated so long as such\nparties remain in full compliance.\n\ + \n4. Other Restrictions.\nIf the distribution and/or use of the Program is restricted in\ + \ certain countries\nfor any reason, Licensor may add an explicit geographical distribution\n\ + limitation excluding those countries, so that distribution is permitted only in\nor among\ + \ countries not thus excluded. In such case, this License incorporates\nthe limitation as\ + \ if written in the body of this License.\n\n5. Limitations.\nTHE PROGRAM IS PROVIDED TO\ + \ YOU \"AS IS,\" WITHOUT WARRANTY. THERE IS NO WARRANTY\nFOR THE PROGRAM, EITHER EXPRESSED\ + \ OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT OF THIRD PARTY RIGHTS. THE ENTIRE\ + \ RISK AS TO THE QUALITY AND\nPERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM\ + \ PROVE DEFECTIVE, YOU\nASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\ + \nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL\nLICENSOR,\ + \ OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS\nPERMITTED ABOVE,\ + \ BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,\nINCIDENTAL OR CONSEQUENTIAL\ + \ DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE\nTHE PROGRAM (INCLUDING BUT NOT LIMITED\ + \ TO LOSS OF DATA OR DATA BEING RENDERED\nINACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\ + \ PARTIES OR A FAILURE OF THE\nPROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH\ + \ HOLDER OR OTHER PARTY\nHAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n6. General.\n\ + \nThis License is governed by the laws of the State of California, U.S.A.,\nexcluding choice\ + \ of law rules.\n\nIf any part of this License is found to be in conflict with the law,\ + \ that part\nshall be interpreted in its broadest meaning consistent with the law, and no\n\ + other parts of the License shall be affected.\n\nFor United States Government users, the\ + \ Program is provided with RESTRICTED\nRIGHTS. If you are a unit or agency of the United\ + \ States Government or are\nacquiring the Program for any such unit or agency, the following\ + \ apply:\n\nIf the unit or agency is the Department of Defense (\"DOD\"), the Program and\ + \ its\ndocumentation are classified as \"commercial computer software\" and \"commercial\n\ + computer software documentation\" respectively and, pursuant to DFAR Section\n227.7202,\ + \ the Government is acquiring the Program and its documentation in\naccordance with the\ + \ terms of this License. If the unit or agency is other than\nDOD, the Program and its documentation\ + \ are classified as \"commercial computer\nsoftware\" and \"commercial computer software\ + \ documentation\" respectively and,\npursuant to FAR Section 12.212, the Government is acquiring\ + \ the Program and its\ndocumentation in accordance with the terms of this License." json: afpl-8.0.json - yml: afpl-8.0.yml + yaml: afpl-8.0.yml html: afpl-8.0.html - text: afpl-8.0.LICENSE + license: afpl-8.0.LICENSE - license_key: afpl-9.0 + category: Copyleft spdx_license_key: LicenseRef-scancode-afpl-9.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + Aladdin Free Public License + (Version 9, September 18, 2000) + + Copyright (C) 1994, 1995, 1997, 1998, 1999, 2000 Aladdin Enterprises, + Menlo Park, California, U.S.A. All rights reserved. + + NOTE: This License is not the same as any of the GNU Licenses published by the + Free Software Foundation. Its terms are substantially different from those of + the GNU Licenses. If you are familiar with the GNU Licenses, please read this + license with extra care. + + Aladdin Enterprises hereby grants to anyone the permission to apply this License + to their own work, as long as the entire License (including the above notices + and this paragraph) is copied with no changes, additions, or deletions except + for changing the first paragraph of Section 0 to include a suitable description + of the work to which the license is being applied and of the person or entity + that holds the copyright in the work, and, if the License is being applied to a + work created in a country other than the United States, replacing the first + paragraph of Section 6 with an appropriate reference to the laws of the + appropriate country. + + This License is not an Open Source license: among other things, it places + restrictions on distribution of the Program, specifically including sale of the + Program. While Aladdin Enterprises respects and supports the philosophy of the + Open Source Definition, and shares the desire of the GNU project to keep + licensed software freely redistributable in both source and object form, we feel + that Open Source licenses unfairly prevent developers of useful software from + being compensated proportionately when others profit financially from their + work. This License attempts to ensure that those who receive, redistribute, and + contribute to the licensed Program according to the Open Source and Free + Software philosophies have the right to do so, while retaining for the + developer(s) of the Program the power to make those who use the Program to + enhance the value of commercial products pay for the privilege of doing so. + + 0. Subject Matter + This License applies to the computer programs known as "AFPL Ghostscript", + "AFPL Ghostscript PCL5e", "AFPL Ghostscript PCL5c", and "AFPL Ghostscript + PXL". The "Program", below, refers to such program. The Program is + a copyrighted work whose copyright is held by Artifex Software Inc., located + in San Rafael California and artofcode LLC, located in Benicia, California + (the "Licensor"). Please note that AFPL Ghostscript is neither the program + known as "GNU Ghostscript" nor the version of Ghostscript available for + commercial licensing from Artifex Software Inc. + + A "work based on the Program" means either the Program or any derivative work of + the Program, as defined in the United States Copyright Act of 1976, such as a + translation or a modification. + + 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. NOTHING OTHER THAN THIS LICENSE GRANTS YOU PERMISSION TO MODIFY OR + DISTRIBUTE THE PROGRAM OR ITS DERIVATIVE WORKS. THESE ACTIONS ARE PROHIBITED BY + LAW. IF YOU DO NOT ACCEPT THESE TERMS AND CONDITIONS, DO NOT MODIFY OR + DISTRIBUTE THE PROGRAM. + + 1. Licenses. + Licensor hereby grants you the following rights, provided that you comply with + all of the restrictions set forth in this License and provided, further, that + you distribute an unmodified copy of this License with the Program: + + (a) + You may copy and distribute literal (i.e., verbatim) copies of the Program's + source code as you receive it throughout the world, in any medium. + + (b) + You may modify the Program, create works based on the Program and distribute + copies of such throughout the world, in any medium. + + + 2. Restrictions. + This license is subject to the following restrictions: + + (a) + Distribution of the Program or any work based on the Program by a commercial + organization to any third party is prohibited if any payment is made in + connection with such distribution, whether directly (as in payment for a copy of + the Program) or indirectly (as in payment for some service related to the + Program, or payment for some product or service that includes a copy of the + Program "without charge"; these are only examples, and not an exhaustive + enumeration of prohibited activities). The following methods of distribution + involving payment shall not in and of themselves be a violation of this + restriction: + + (i) + Posting the Program on a public access information storage and retrieval service + for which a fee is received for retrieving information (such as an on-line + service), provided that the fee is not content-dependent (i.e., the fee would be + the same for retrieving the same volume of information consisting of random + data) and that access to the service and to the Program is available independent + of any other product or service. An example of a service that does not fall + under this section is an on-line service that is operated by a company and that + is only available to customers of that company. (This is not an exhaustive + enumeration.) + + (ii) + Distributing the Program on removable computer-readable media, provided that the + files containing the Program are reproduced entirely and verbatim on such media, + that all information on such media be redistributable for non-commercial + purposes without charge, and that such media are distributed by themselves + (except for accompanying documentation) independent of any other product or + service. Examples of such media include CD-ROM, magnetic tape, and optical + storage media. (This is not intended to be an exhaustive list.) An example of a + distribution that does not fall under this section is a CD-ROM included in a + book or magazine. (This is not an exhaustive enumeration.) + + (b) + Activities other than copying, distribution and modification of the Program are + not subject to this License and they are outside its scope. Functional use + (running) of the Program is not restricted, and any output produced through the + use of the Program is subject to this license only if its contents constitute a + work based on the Program (independent of having been made by running the + Program). + + (c) + You must meet all of the following conditions with respect to any work that you + distribute or publish that in whole or in part contains or is derived from the + Program or any part thereof ("the Work"): + + (i) + If you have modified the Program, you must cause the Work to carry prominent + notices stating that you have modified the Program's files and the date of any + change. In each source file that you have modified, you must include a prominent + notice that you have modified the file, including your name, your e-mail address + (if any), and the date and purpose of the change; + + (ii) + You must cause the Work to be licensed as a whole and at no charge to all third + parties under the terms of this License; + + (iii) + If the Work normally reads commands interactively when run, you must cause it, + at each time the Work commences operation, 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). Such notice must also state that + users may redistribute the Work only under the conditions of this License and + tell the user how to view the copy of this License included with the Work. + (Exceptions: if the Program is interactive but normally prints or displays such + an announcement only at the request of a user, such as in an "About box", the + Work is required to print or display the notice only under the same + circumstances; if the Program itself is interactive but does not normally print + such an announcement, the Work is not required to print an announcement.); + + (iv) + You must accompany the Work with the complete corresponding machine-readable + source code, delivered on a medium customarily used for software interchange. + 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 code. If you distribute with the Work any component 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, you must also distribute the source code of that component if you have it + and are allowed to do so; + + (v) + If you distribute any written or printed material at all with the Work, such + material must include either a written copy of this License, or a prominent + written indication that the Work is covered by this License and written + instructions for printing and/or displaying the copy of the License on the + distribution medium; + + (vi) + You may not impose any further restrictions on the recipient's exercise of the + rights granted herein. + + If distribution of executable or object code is made by offering the equivalent + ability to copy from a designated place, then offering equivalent ability 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 code along + with the object code. + + 3. Reservation of Rights. + No rights are granted to the Program except as expressly set forth herein. 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. + + 4. Other Restrictions. + If the distribution and/or use of the Program is restricted in certain countries + for any reason, Licensor 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. + + 5. Limitations. + THE PROGRAM IS PROVIDED TO YOU "AS IS," WITHOUT WARRANTY. THERE IS NO WARRANTY + FOR THE PROGRAM, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT OF THIRD PARTY RIGHTS. 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. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL + LICENSOR, 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. + + 6. General. + + This License is governed by the laws of the State of California, U.S.A., + excluding choice of law rules. + + If any part of this License is found to be in conflict with the law, that part + shall be interpreted in its broadest meaning consistent with the law, and no + other parts of the License shall be affected. + + For United States Government users, the Program is provided with RESTRICTED + RIGHTS. If you are a unit or agency of the United States Government or are + acquiring the Program for any such unit or agency, the following apply: + + If the unit or agency is the Department of Defense ("DOD"), the Program and its + documentation are classified as "commercial computer software" and "commercial + computer software documentation" respectively and, pursuant to DFAR Section + 227.7202, the Government is acquiring the Program and its documentation in + accordance with the terms of this License. If the unit or agency is other than + DOD, the Program and its documentation are classified as "commercial computer + software" and "commercial computer software documentation" respectively and, + pursuant to FAR Section 12.212, the Government is acquiring the Program and its + documentation in accordance with the terms of this License. json: afpl-9.0.json - yml: afpl-9.0.yml + yaml: afpl-9.0.yml html: afpl-9.0.html - text: afpl-9.0.LICENSE + license: afpl-9.0.LICENSE - license_key: agentxpp + category: Commercial spdx_license_key: LicenseRef-scancode-agentxpp other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "AGENTX++ LICENSE AGREEMENT \n==========================\n\nTHIS LICENSE AGREEMENT (this\ + \ \"Agreement\") is made effective as of the date the\nproduct is installed by and between\ + \ (i) Frank Fock, the author of AgentX++\n(\"LICENSOR\") and the party executing this\ + \ Agreement as Licensee (\"LICENSEE\").\n\n\n1. DEFINITIONS.\n\n1.1 The term \"Software\ + \ Product\" means Frank Fock's AgentX++ computer software\n(including Source Code, derived\ + \ Object Code, and derived Executable Code as\ndefined in Section 1.3, 1.4, and 1.5)\ + \ and documentation thereof, as specified in\nExhibit A, that is provided by LICENSOR\ + \ to LICENSEE hereunder, including bug\nfixes and updates thereto provided by LICENSOR\ + \ to LICENSEE in connection with\nthis Agreement. The term \"derived\" in the above context\ + \ refers to the process of\ncreating machine executable code from the original Source\ + \ Code only. It does\nnot refer to amendment or alteration of the original Source Code\ + \ by LICENSOR\nor any third party.\n\n1.2 The term \"Intellectual Property Rights\"\ + \ means patent rights, copyright\nrights, trade secret rights, and any other intellectual\ + \ property rights.\n\n1.3 The term \"Executable Code\" is a fully compiled and linked\ + \ program that\ncontains any code derived from the Software Product. It can no longer be\ + \ altered\nor combined with any other code. Executable code is ready to be executed by\ + \ a\ncomputer and is essentially a complete software image for use in a specific\n\ + product. \n\n1.4 The term \"Object Code\" is any compiled version of the Software Product\ + \ that\ncan be linked and therefore combined with other code to create Executable Code.\n\ + Examples of Object Code are libraries and software development kits, in\nparticular\ + \ SNMP agent development kits. \n\n1.5 The term \"Source Code\" is the human readable form\ + \ of the Software Product,\nas specified in Exhibit A.\n\n1.6 Documentation means the\ + \ documentation regarding the Licensed Software\nprovided by LICENSOR to LICENSEE hereunder.\n\ + \n1.7 The term \"Site\" is a specific address belonging to a single business unit\noperating\ + \ at that address.\n\n\n2. GRANT OF LICENSE.\n\n2.1 Source Code Site License. Subject\ + \ to the terms and conditions of this\nAgreement, and upon payment by LICENSEE to LICENSOR\ + \ of the one-time license fee\nset forth in Addendum A, LICENSOR grants LICENSEE a\ + \ perpetual (subject to\ntermination rights in Section 6), non-exclusive, non-transferable\ + \ license to\nreproduce, use, modify, or have modified by a third party contractor\n\ + (modifications in accordance to Section 2.6) subject to a confidentiality\nagreement\ + \ no less restrictive than this Agreement, the Source Code for\ninternal use\ + \ only, for the sole purpose of developing AgentX-enabled SNMP\nagents at the Site\ + \ (hereafter \"Licensed Site\") specified by LICENSEE during\nlicense purchase. Additionally,\ + \ Customer’s contractors and employees reporting\ndirectly and only to a manager at the\ + \ Licensed Site, such as telecommuters, may\nuse the Software Product at remote locations.\ + \ Off-site employees re-porting in\nany way to a manager at their location are not covered\ + \ under this Site License. \n\n2.2 Except as specified in 2.1, neither the Software \ + \ Product Source Code nor\nObject Code derived from the Software Product may be redistributed\ + \ or resold.\nExecutable Code programs derived from the Software Product may be redistributed\n\ + and resold without limitation and without royalty, provided that LICENSEE\nadded\ + \ significant functionality to those derived Excecutable Code programs.\nFunctionality\ + \ in this context refers to the program's behavior, not appearance.\n\n2.3 No Sublicense\ + \ Right. LICENSEE has no right to transfer, or sublicense\nthe Licensed Software \ + \ to any third party, except as specified in 2.2 and\nexcept if the third party\ + \ takes over the business of LICENSEE. \n\n2.4 Other Restrictions in License Grants.\ + \ LICENSEE may not: (i) copy the\nLicensed Software, except as necessary to use\ + \ the Licensed Software in\naccordance with the license granted under Section\ + \ 2.1 and 2.2, and\nexcept for a reasonable number of backup copies.\n\n2.5 No Trademark\ + \ License. LICENSEE has no right or license to use any trademark\nof LICENSOR during or\ + \ after the term of this Agreement.\n\n2.6 Proprietary Notices. The Licensed Software is\ + \ copyrighted. All proprietary\nnotices incorporated in, marked on, or affixed to the\ + \ Licensed Software by\nLICENSOR shall be duplicated by LICENSEE on all copies, in whole\ + \ or in part, in\nany form of the Licensed Software and not be altered, removed, or obliterated\ + \ on\nsuch copies.\n\n2.7 Reservation. LICENSOR reserve all rights and licenses to\ + \ the Licensed\nSoftware not expressly granted to LICENSEE under this Agreement.\n\n2.8\ + \ Delivery. Upon execution of this Agreement, and payment of the amounts due\nand owing\ + \ under this Agreement, LICENSOR will provide LICENSEE with one (1) copy\nof the Software\ + \ Product by downloading from LICENSOR's Web site.\n\n\n\n3. PRODUCT WARRANTY.\n\n3.1. LICENSOR\ + \ warrants to LICENSEE that, at the date of delivery of the Software\nProduct to LICENSEE\ + \ and for a period ending 90 days following the date of\ndelivery of the Software\ + \ Product to LICENSEE the Software Product shall perform\nsubstantially in accordance\ + \ with the published specifications and\nDocumentation. If notified in writing\ + \ by LICENSEE, LICENSOR may, at its\noption, correct significant program errors in\ + \ the Software Product within a\nreasonable time period. THE FOREGOING PRODUCT WARRANTY\ + \ IS IN LIEU OF ALL OTHER\nWARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED\ + \ TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE,\ + \ WHETHER\nIMPOSED BY CONTRACT, STATUTE, COURSE OF DEALING, CUSTOM OR USAGE\ + \ OR\nOTHERWISE.\n\n3.2. In no event shall LICENSOR be liable to LICENSEE, in excess\ + \ of the\nprice paid to LICENSOR by LICENSEE for the Software Product hereunder, for\ + \ any\nbreach of warranty or any claim, loss or damage arising from or relating to the\n\ + installation, use or performance of the Software Product (including, without\nlimitation,\ + \ any indirect, special, incidental or consequential damages).\n\n3.3. LICENSOR reserves\ + \ the right at any time to make changes to the Software\nProduct.\n\n3.4. IN NO EVENT\ + \ SHALL LICENSOR BE LIABLE (WHETHER IN TORT, NEGLIGENCE,\nCONTRACT, WARRANTY, PRODUCT\ + \ LIABILITY OR OTHERWISE) FOR ANY INDIRECT,\nINCIDENTAL, SPECIAL OR CONSEQUENTIAL\ + \ DAMAGES OR LOSS OF PROFITS OR SAVINGS\nARISING OUT OF ITS PERFORMANCE OR NONPERFORMANCE\ + \ OF TERMS OF THIS AGREEMENT OR\nTHE USE, INABILITY TO USE OR RESULTS OF USE OF THE\ + \ SOFTWARE PRODUCT EVEN IF\nLICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\ + \n3.5 In no event will LICENSOR be liable for any third-party products used with,\nor \ + \ installed in, the Software Product. LICENSOR does not warrant the\ncompatibility\ + \ of the Software Product with any third-party products, whether\nhardware or software.\n\ + \n3.6 The above sections do not apply for liability for damages caused by gross\nnegligence\ + \ or wilful default.\n\n3.7 General Provision. This warranty shall not apply in any case\ + \ of amendment or\nalterations of the Software Product made by LICENSEE. \n\n\n\n4. INTELLECTUAL\ + \ AND PROPERTY INDEMNIFICATION.\n\n4.1. LICENSOR agrees to indemnify and hold LICENSEE\ + \ harmless from any final\naward of costs and damages against LICENSEE for any action\ + \ based on infringement\nof any German intellectual property rights as a result of\ + \ the use of the\nLicensed Software: (i) under the terms and conditions specified\ + \ herein; (ii)\nunder normal use; and (iii) not in combination with other items;\ + \ provided\nthat LICENSOR is promptly notified in writing of any such suit or claim\n\ + against LICENSEE and further provided that LICENSEE permits LICENSOR to\ndefend,\ + \ compromise or settle the same and gives LICENSOR all available\ninformation,\ + \ reasonable assistance and authority to enable LICENSOR to do\nso. LICENSOR'S LIABILITY\ + \ TO LICENSEE PURSUANT TO THIS ARTICLE IS LIMITED TO THE\nTOTAL FEES PAID BY LICENSEE TO\ + \ LICENSOR IN THE CALENDAR YEAR IN WHICH ANY FINAL\nAWARD OF COSTS AND DAMAGES IS DUE AND\ + \ OWING.\n\n\n5. TRADE SECRETS AND PROPRIETARY INFORMATION.\n\n5.1. LICENSEE acknowledges\ + \ that LICENSOR is the owner of the Software Product,\nthat the Software Product is\ + \ confidential in nature and not in the public\ndomain, that LICENSOR claims all intellectual\ + \ and industrial property rights\ngranted by law therein and that, except as set forth\ + \ herein, LICENSOR does not\nhereby grant any rights or ownership of the Software Product\ + \ to LICENSEE or\nany third party. Except as set forth herein, LICENSEE agrees not\ + \ to copy or\notherwise reproduce the Software Product, in whole or in part,\ + \ without\nLICENSOR's prior written consent. LICENSEE further agrees to take\ + \ all\nreasonable steps to ensure that no unauthorized persons shall have access to the\n\ + Software Product and that all authorized persons having access to the Software\nProduct\ + \ shall refrain from any such disclosure, duplication or\nreproduction\ + \ except to the extent reasonably required in the performance of\nLICENSEE'S rights\ + \ under this Agreement.\n\n5.2. LICENSEE agrees to accord the Software Product and the\ + \ Documentation and\nall other confidential information relating to this Agreement the\ + \ same degree\nand methods of protection as LICENSEE undertakes with respect to\ + \ its\nconfidential information, trade secrets and other proprietary data.\n\n5.3. LICENSEE\ + \ agrees not to challenge, directly or indirectly, the right, title\nand interest of\ + \ LICENSOR in and to the Software Product, nor the\nvalidity or enforceability\ + \ of LICENSOR's rights under applicable law. LICENSEE\nagrees not to directly or indirectly,\ + \ register, apply for registration or\nattempt to acquire any legal protection for\ + \ the Software Product or any\nproprietary rights therein or to take any other \ + \ action which may adversely\naffect LICENSOR's right, title or interest in or to the\ + \ Software Product in any\njurisdiction.\n\n5.4. LICENSEE acknowledges that, in the event\ + \ of a material breach by LICENSEE\nof its obligations under this Article 5, \ + \ LICENSOR may immediately\nterminate this Agreement, without liability to LICENSEE\ + \ and may bring an\nappropriate legal action to enjoin any such breach hereof,\ + \ and shall be\nentitled to recover from LICENSEE reasonable legal fees and\ + \ costs in\naddition to other appropriate relief.\n\n5.5. LICENSEE agrees to notify\ + \ LICENSOR immediately and in writing of all\ncircumstances surrounding the unauthorized\ + \ possession or use of the Software\nProduct and Documentation by any person or entity.\ + \ LICENSEE agrees to cooperate\nfully with LICENSOR in any litigation relating to\ + \ or arising from such\nunauthorized possession or use.\n\n\n6. TERMINATION. \n\n\ + 6.1. LICENSOR may terminate this Agreement at any time after the occurrence of\nany of\ + \ the following events if LICENSOR provides 30 days notice of its intention\nto terminate\ + \ as a result of the occurrence and LICENSEE fails to cure such\noccurrence within\ + \ such 30 days:\n\n(a) LICENSEE is declared or acknowledges that it is insolvent or\ + \ otherwise\nunable to pay its debts as they become due or upon the filing of any proceeding\n\ + (whether voluntary or involuntary) for bankruptcy, insolvency or relief from\ncreditors\ + \ of LICENSEE; \n\n(b) LICENSEE assigns or transfers this Agreement or any of its\ + \ rights to\nobligations hereunder, without LICENSOR's prior written consent; or \n\n\ + (c) LICENSEE violates any material provision of this Agreement, including\nwithout\ + \ limitation, the payment obligations set forth in Addendum A.\n\n6.2. LICENSEE may terminate\ + \ this Agreement at any time after the occurrence of\nany of the following events if LICENSEE\ + \ provides 30 days notice of its intention\nto terminate as a result of the occurrence\ + \ and LICENSOR fails to cure such\noccurrence within such 30 days: \n\n(a) LICENSOR\ + \ is declared or acknowledges that it is insolvent or otherwise\nunable to pay its\ + \ debts as they become due or upon the filing of any\nproceeding (whether voluntary\ + \ or involuntary) for bankruptcy, insolvency or\nrelief from creditors or LICENSOR;\ + \ or \n\n(b) LICENSOR violates any material provision of this Agreement.\n\n6.3. Upon\ + \ the termination of this Agreement for any reason, LICENSEE will\ndiscontinue all\ + \ use of the Software Product and, within ten (10) days after\ntermination, will destroy\ + \ or delete all copies of the Software Product then\nin its possession, including but\ + \ not limited to, any back-up or archival copies\nof the Software Product and Documentation.\ + \ At LICENSOR's request, LICENSEE\nwill verify in writing to LICENSOR that such\ + \ actions have been taken.\n\n6.4. No termination of this Agreement for any reason whatsoever\ + \ shall in any way\naffect the continuing obligations of the parties under Articles 5 hereof.\n\ + \n\n7. APPLICABLE LAW\n\nThis LICENSE shall be deemed to have been made in, and shall\ + \ be construed\npursuant to, the laws of Germany, without reference to conflicts\ + \ of laws\nprinciples. All controversies and disputes arising out of or relating to\ + \ this\nAgreement shall be submitted to the exclusive jurisdiction of Esslingen am\n\ + Neckar, Germany, as long as LICENSEE is deemed to be a merchant (as defined by\nHandelsgesetzbuch,\ + \ §1-7). The United Nations Convention on Contracts\nfor the International Sale\ + \ of Goods is specifically disclaimed. \n\n\n\n8. GENERAL PROVISIONS.\n\n8.1. This Agreement\ + \ does not create any relationship of association,\npartnership, joint venture\ + \ or agency between the parties.\n\n8.2. This Agreement (including the Exhibit and\ + \ Addendum attached to the\nAgreement) sets forth the entire agreement and understandings\ + \ between the\nparties hereto with respect to the subject matter hereof. This \ + \ Agreement\nmerges all previous discussions and negotiations between the parties\ + \ and\nsupersedes and replaces any and every other agreement, which may have existed\n\ + between LICENSOR and LICENSEE with respect to the contents hereof.\n\n8.3. Except to the\ + \ extent and in the manner specified in this Agreement, any\nmodification or amendment\ + \ of any provision of this Agreement must be in writing\nand bear the signature of the\ + \ duly authorized representative of each party.\n\n8.4. The failure of either party to\ + \ exercise any right granted herein, or to\nrequire the performance by the other party\ + \ hereto of any provision if this\nAgreement, or the waiver by either party of any breach\ + \ of this Agreement, shall\nnot prevent a subsequent exercise or enforcement of such provisions\ + \ or be deemed\na waiver of any subsequent breach of the same or any other provision\ + \ of this\nAgreement.\n\n8.5. Except in the case of merger, acquisition or the sale of substantial\ + \ assets\nor equity of Licensee or assignment to any direct or indirect subsidiary\ + \ or\naffiliate of LICENSEE, LICENSEE shall not sell, assign or transfer any of its\n\ + rights, duties or obligations hereunder without the prior written consent of\nLICENSOR.\ + \ LICENSOR reserves the right to assign or transfer this Agreement or\nany of its rights,\ + \ duties and obligations hereunder, to any direct or\nindirect subsidiary or affiliate\ + \ of LICENSOR.\n\n8.6. All notices required by this Agreement must be sent by certified\ + \ mail in\norder to be deemed effective when sent to the following:\n\nFOR LICENSOR:\n\n\ + Frank Fock \nMaximilian-Kolbe-Str. 10 \n73257 Koengen, Germany\n\n\nEXHIBIT A\n\nLicensed\ + \ Software\n\nAgentX++\n\na. Source Code - (ANSI C++ for Linux, Solaris, Win32)\ + \ \n Includes AgentX++ and Agent++Win32 Source Code.\n\nb. Executable Code - AgentX++Win32\ + \ Master Agent (Win XP/2000/NT4)\n\n\nADDENDUM A\n\nFor evaluation purposes and non commercial\ + \ use only, a free license is granted,\nprovided that the LINCENSEE accepts this license\ + \ agreement. \n\nIn order to obtain a license to use AgentX++ in a commercial environment,\n\ + LICENSEE has to purchase a commercial license from LICENSOR. The actual pricing\nlist and\ + \ other related information can be found at http://www.agentpp.com" json: agentxpp.json - yml: agentxpp.yml + yaml: agentxpp.yml html: agentxpp.html - text: agentxpp.LICENSE + license: agentxpp.LICENSE - license_key: agere-bsd + category: Permissive spdx_license_key: LicenseRef-scancode-agere-bsd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + SOFTWARE LICENSE + + This software is provided subject to the following terms and conditions, + which you should read carefully before using the software. Using this + software indicates your acceptance of these terms and conditions. If you do + not agree with these terms and conditions, do not use the software. + + Redistribution and use in source or binary forms, with or without + modifications, 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 as comments in the code as + well as in the documentation and/or other materials provided with the + distribution. + + . 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 Agere Systems Inc. nor the names of the contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + Disclaimer + + THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + INCLUDING, BUT NOT LIMITED TO, INFRINGEMENT AND THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ANY + USE, MODIFICATION OR DISTRIBUTION OF THIS SOFTWARE IS SOLELY AT THE USERS OWN + RISK. IN NO EVENT SHALL AGERE SYSTEMS INC. 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, INCLUDING, BUT NOT LIMITED TO, 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. json: agere-bsd.json - yml: agere-bsd.yml + yaml: agere-bsd.yml html: agere-bsd.html - text: agere-bsd.LICENSE + license: agere-bsd.LICENSE - license_key: agere-sla + category: Proprietary Free spdx_license_key: LicenseRef-scancode-agere-sla other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Agere Systems WinModem End User SOFTWARE LICENSE AGREEMENT\n\n\nYOU SHOULD READ THE\ + \ TERMS AND CONDITIONS OF THIS AGREEMENT BEFORE \nYOU DOWNLOAD AND USE THE AGERE SYSTEMS\ + \ WINMODEM LICENSED SOFTWARE. \nONCE YOU HAVE READ THIS LICENSE AGREEMENT AND AGREE TO\ + \ ITS TERMS, \nYOU MAY DOWNLOAD AND USE THE AGERE SYSTEMS WINMODEM LICENSED SOFTWARE. \n\ + DOWNLOADING OR USING THE AGERE SYSTEMS WINMODEM LICENSED SOFTWARE SHOWS \nYOUR ACCEPTANCE\ + \ OF THE TERMS OF THIS LICENSE AGREEMENT. \n\nThe terms and conditions of this Agreement\ + \ will apply to the Agere \nSystems WinModem Software (hereafter \"Software\") supplied\ + \ under this Agreement \nand any derivatives obtained therefrom, including any copy. The\ + \ term Software \nincludes programs and related documentation supplied herewith.\n\nThe\ + \ following file is made available under the standard Linux license, \na copy of which may\ + \ be found at .\nserial.c\nserial24.c\n \nThese additional files are not derived from any\ + \ Linux open source content, \nand are subject to the following restrictions.\nltmodem.c\n\ + linuxif.h\nltmdmobj.o\nMakefile\nltinst\nltuninst\nreadme.txt\n\n1.0 TITLE AND LICENSE\ + \ GRANT\n\n\t1.1\tThe Software is copyrighted and/or contains proprietary \n \ + \ information protected by law. All Software and all copies \n thereof\ + \ are and will remain the sole property of Agere Systems or \n its suppliers.\ + \ Agere Systems hereby grants you a non-exclusive right \n to use the Software,\ + \ in whatever form recorded, which is furnished to \n you under or in contemplation\ + \ of this Agreement, in an Agere Systems \n winmodem. Any other use of the\ + \ Software or removal of the Software from \n a country in which use is licensed\ + \ shall automatically terminate this license.\n\n\t1.2\tYou agree to use your best efforts\ + \ to see that any user of the Software \n licensed hereunder complies with\ + \ the terms and conditions of this Agreement.\n\n\n2.0 SOFTWARE USE\n\n\t2.1\tYou are permitted\ + \ to make copies of the Software provided that any such copy \n shall contain\ + \ the same copyright notice and proprietary marking included on \n the original\ + \ Software.\n\n\t2.2\tYou agree not to merge or combine any portion of the Software with\ + \ any other \n software, other than the Linux operating system, unless expressly\ + \ permitted by \n the laws of the jurisdiction where you are located. Any\ + \ portion of the Software \n merged or combined with the other software will\ + \ continue to be the subject of the \n terms and conditions of this Agreement\ + \ and you agree to reproduce on the merged \n or combined portion of the\ + \ Software the copyright and other proprietary rights \n notices included\ + \ in the original Software.\n\n 2.3 Redistribution and Usage\n \ + \ Agere permits use and limited redistribution of this Licensed Software in source and\ + \ \n binary forms, with or without modification, subject to the following\ + \ terms and conditions, \n in addition to the terms mentioned in this agreement.\ + \ \n \n 2.3.1 \tAgere Systems reserves the right not to allow\ + \ a third party to reuse or \n redistribute the software, at its\ + \ sole discretion.\n \n 2.3.2\tUser hereby agrees not to remove\ + \ or alter any copyright, trademark, credits \n and other proprietary\ + \ notices contained within or associated with the Licensed \n Software,\ + \ and shall include all such unaltered copyright, trademark, credits and \n \ + \ other proprietary notices on or in every copy of the Software.\n\n \ + \ 2.3.3\tNotwithstanding any other provisions in this Agreement to the contrary,\ + \ any \n modifications or alterations made to the Licensed Software\ + \ shall cause any \n warranties and intellectual property indemnifications\ + \ to become null and \n void and of no further effect.\n\n3.0 DISCLAIMER\ + \ OF WARRANTY\n\n\t3.1 You understand and acknowledge that the Software may contain errors,\ + \ bugs or other \n defects. The Software is provided on AS-IS basis, without\ + \ warranty of any kind.\n\n\t3.2 Agere Systems has used reasonable efforts to minimize\ + \ defects or errors in the Software. \n HOWEVER, YOU ASSUME THE RISK OF ANY\ + \ AND ALL DAMAGE OR LOSS FROM USE OR INABILITY TO USE \n THE SOFTWARE. Specifically,\ + \ but not in limitation of the foregoing disclaimers, Agere \n Systems does\ + \ not warrant that the functions of the Software will meet your requirements \n \ + \ or that the Software operation will be error-free or uninterrupted.\n\n\t3.3 Agere\ + \ Systems bears no responsibility for supplying assistance for fixing or for \n \ + \ communicating known errors to you pertaining to the Software supplied hereunder.\n\ + \n\t3.4 YOU UNDERSTAND THAT AGERE SYSTEMS, ITS AFFILIATES, CONTRACTORS, SUPPLIERS, AND\ + \ AGENTS \n MAKE NO WARRANTIES, EXPRESS OR IMPLIED, AND SPECIFICALLY DISCLAIM\ + \ ANY WARRANTY OF \n MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.\n\n\ + 4.0 EXCLUSIVE REMEDIES AND LIMITATION OF LIABILITIES\n\n\t4.1 Regardless of any other\ + \ provisions of this Agreement, neither Agere Systems nor its \n affiliates,\ + \ contractors, suppliers, or agents shall be liable for any indirect, incidental, \n \ + \ or consequential damages (including lost profits) sustained or incurred in connection\ + \ with \n the use, operation, or inability to use the Software or for damages\ + \ due to causes beyond \n the reasonable control of Agere Systems, its affiliates,\ + \ contractors, suppliers, and agents \n attributable to any service, products,\ + \ or action of any other person.\n\n\t4.2 This Agreement shall be construed in accordance\ + \ with and governed by the laws of the \n State of New York.\n\nYOU ACKNOWLEDGE\ + \ THAT YOU HAVE READ THIS AGREEMENT AND UNDERSTAND IT, AND THAT BY DOWNLOADING OR USING\ + \ \nTHE SOFTWARE, YOU AGREE TO BE BOUND BY ITS TERMS AND CONDITIONS. YOU FURTHER AGREE\ + \ THAT THIS AGREEMENT \nIS THE COMPLETE AND EXCLUSIVE STATEMENT OF THE RIGHTS AND LIABILITIES\ + \ OF THE PARTIES. THIS AGREEMENT \nSUPERCEDES ALL PRIOR ORAL AGREEMENTS, PROPOSALS OR UNDERSTANDINGS,\ + \ AND ANY OTHER COMMUNICATIONS BETWEEN \nUS RELATING TO THE SUBJECT MATTER OF THIS AGREEMENT." json: agere-sla.json - yml: agere-sla.yml + yaml: agere-sla.yml html: agere-sla.html - text: agere-sla.LICENSE + license: agere-sla.LICENSE - license_key: ago-private-1.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ago-private-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Ago's Private License 1.0: + ----------------------------- + + Redistribution and use in binary forms, with or without modification, + are permitted provided that the following conditions are met: + 1. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + 2. The binary and source may not be sold and/or given away for free. + 3. The licensee may only create binaries for his own usage, not for any + third parties. + 4. The person using this sourcecode is a developer of said sourcecode. + + Redistribution and use in source forms, with or without modification, + are not permitted. + + This license may be changed without prior notice. + + 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. json: ago-private-1.0.json - yml: ago-private-1.0.yml + yaml: ago-private-1.0.yml html: ago-private-1.0.html - text: ago-private-1.0.LICENSE + license: ago-private-1.0.LICENSE - license_key: agpl-1.0 + category: Copyleft spdx_license_key: AGPL-1.0-only other_spdx_license_keys: - AGPL-1.0 is_exception: no is_deprecated: no - category: Copyleft + text: | + AFFERO GENERAL PUBLIC LICENSE + + Version 1, March 2002 + + Copyright © 2002 Affero Inc. + 510 Third Street - Suite 225, San Francisco, CA 94107, USA + + This license is a modified version of the GNU General Public License copyright + (C) 1989, 1991 Free Software Foundation, Inc. made with their permission. + Section 2(d) has been added to cover use of software over a computer network. + + 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 Affero 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 Public License applies to most of + Affero's software and to any other program whose authors commit to using it. + (Some other Affero software is covered by the GNU Library 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. This + General Public License is 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. + + 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 Affero 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.) + + * d) If the Program as you received it is intended to interact with users + through a computer network and if, in the version you received, any user + interacting with the Program was given the opportunity to request transmission + to that user of the Program's complete source code, you must not remove that + facility from your modified version of the Program or work based on the Program, + and must offer an equivalent opportunity for all users interacting with your + Program through a computer network to request immediate transmission by HTTP of + the complete source code of your modified version or other derivative work. + + 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. Affero Inc. may publish revised and/or new versions of the Affero 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 Affero, Inc. If the Program does not + specify a version number of this License, you may choose any version ever + published by Affero, Inc. + + You may also choose to redistribute modified versions of this program under any + version of the Free Software Foundation's GNU General Public License version 3 + or higher, so long as that version of the GNU GPL includes terms and conditions + substantially equivalent to those of this license. + + 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 Affero, Inc., write to us; 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. json: agpl-1.0.json - yml: agpl-1.0.yml + yaml: agpl-1.0.yml html: agpl-1.0.html - text: agpl-1.0.LICENSE + license: agpl-1.0.LICENSE - license_key: agpl-1.0-plus + category: Copyleft spdx_license_key: AGPL-1.0-or-later other_spdx_license_keys: - AGPL-1.0+ is_exception: no is_deprecated: no - category: Copyleft + text: "This is free software; you can redistribute it and/or modify\nit under the terms of\ + \ the AFFERO GENERAL PUBLIC LICENSE as published by\nAffero Inc; either version 1, or (at\ + \ your option) any later version.\n\nThis library is distributed in the hope that it will\ + \ be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY\ + \ or FITNESS FOR A PARTICULAR PURPOSE. See the \nAFFERO GENERAL PUBLIC LICENSE for more\ + \ details.\n\n\nAFFERO GENERAL PUBLIC LICENSE\n\nVersion 1, March 2002\n\nCopyright © 2002\ + \ Affero Inc.\n510 Third Street - Suite 225, San Francisco, CA 94107, USA\n\nThis license\ + \ is a modified version of the GNU General Public License copyright\n(C) 1989, 1991 Free\ + \ Software Foundation, Inc. made with their permission.\nSection 2(d) has been added to\ + \ cover use of software over a computer network.\n\nEveryone is permitted to copy and distribute\ + \ verbatim copies of this license\ndocument, but changing it is not allowed.\n\nPreamble\n\ + \nThe licenses for most software are designed to take away your freedom to share\nand change\ + \ it. By contrast, the Affero General Public License is intended to\nguarantee your freedom\ + \ to share and change free software--to make sure the\nsoftware is free for all its users.\ + \ This Public License applies to most of\nAffero's software and to any other program whose\ + \ authors commit to using it.\n(Some other Affero software is covered by the GNU Library\ + \ General Public License\ninstead.) You can apply it to your programs, too.\n\nWhen we speak\ + \ of free software, we are referring to freedom, not price. This\nGeneral Public License\ + \ is designed to make sure that you have the freedom to\ndistribute copies of free software\ + \ (and charge for this service if you wish),\nthat you receive source code or can get it\ + \ if you want it, that you can change\nthe software or use pieces of it in new free programs;\ + \ and that you know you can\ndo these things.\n\nTo protect your rights, we need to make\ + \ restrictions that forbid anyone to deny\nyou these rights or to ask you to surrender the\ + \ rights. These restrictions\ntranslate to certain responsibilities for you if you distribute\ + \ copies of the\nsoftware, or if you modify it.\n\nFor example, if you distribute copies\ + \ of such a program, whether gratis or for a\nfee, you must give the recipients all the\ + \ rights that you have. You must make\nsure that they, too, receive or can get the source\ + \ code. And you must show them\nthese terms so they know their rights.\n\nWe protect your\ + \ rights with two steps: (1) copyright the software, and (2) offer\nyou this license which\ + \ gives you legal permission to copy, distribute and/or\nmodify the software.\n\nAlso, for\ + \ each author's protection and ours, we want to make certain that\neveryone understands\ + \ that there is no warranty for this free software. If the\nsoftware is modified by someone\ + \ else and passed on, we want its recipients to\nknow that what they have is not the original,\ + \ so that any problems introduced by\nothers will not reflect on the original authors' reputations.\n\ + \nFinally, any free program is threatened constantly by software patents. We wish\nto avoid\ + \ the danger that redistributors of a free program will individually\nobtain patent licenses,\ + \ in effect making the program proprietary. To prevent\nthis, we have made it clear that\ + \ any patent must be licensed for everyone's free\nuse or not licensed at all.\n\nThe precise\ + \ terms and conditions for copying, distribution and modification\nfollow.\n\nTERMS AND\ + \ CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n0. This License applies to any\ + \ program or other work which contains a notice\nplaced by the copyright holder saying it\ + \ may be distributed under the terms of\nthis Affero General Public License. The \"Program\"\ + , below, refers to any such\nprogram or work, and a \"work based on the Program\" means\ + \ either the Program or\nany derivative work under copyright law: that is to say, a work\ + \ containing the\nProgram or a portion of it, either verbatim or with modifications and/or\n\ + translated into another language. (Hereinafter, translation is included without\nlimitation\ + \ in the term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other\ + \ than copying, distribution and modification are not covered by\nthis License; they are\ + \ outside its scope. The act of running the Program is not\nrestricted, and the output from\ + \ the Program is covered only if its contents\nconstitute a work based on the Program (independent\ + \ of having been made by\nrunning the Program). Whether that is true depends on what the\ + \ Program does.\n\n1. You may copy and distribute verbatim copies of the Program's source\ + \ code as\nyou receive it, in any medium, provided that you conspicuously and appropriately\n\ + publish on each copy an appropriate copyright notice and disclaimer of warranty;\nkeep intact\ + \ all the notices that refer to this License and to the absence of any\nwarranty; and give\ + \ any other recipients of the Program a copy of this License\nalong with the Program.\n\n\ + You may charge a fee for the physical act of transferring a copy, and you may at\nyour option\ + \ offer warranty protection in exchange for a fee.\n\n2. You may modify your copy or copies\ + \ of the Program or any portion of it, thus\nforming a work based on the Program, and copy\ + \ and distribute such modifications\nor work under the terms of Section 1 above, provided\ + \ that you also meet all of\nthese conditions:\n\n* a) You must cause the modified files\ + \ to carry prominent notices stating that\nyou changed the files and the date of any change.\n\ + \n* b) You must cause any work that you distribute or publish, that in whole or in\npart\ + \ contains or is derived from the Program or any part thereof, to be licensed\nas a whole\ + \ at no charge to all third parties under the terms of this License.\n\n* c) If the modified\ + \ program normally reads commands interactively when run, you\nmust cause it, when started\ + \ running for such interactive use in the most\nordinary way, to print or display an announcement\ + \ including an appropriate\ncopyright notice and a notice that there is no warranty (or\ + \ else, saying that\nyou provide a warranty) and that users may redistribute the program\ + \ under these\nconditions, and telling the user how to view a copy of this License. (Exception:\n\ + if the Program itself is interactive but does not normally print such an\nannouncement,\ + \ your work based on the Program is not required to print an\nannouncement.)\n\n* d) If\ + \ the Program as you received it is intended to interact with users\nthrough a computer\ + \ network and if, in the version you received, any user\ninteracting with the Program was\ + \ given the opportunity to request transmission\nto that user of the Program's complete\ + \ source code, you must not remove that\nfacility from your modified version of the Program\ + \ or work based on the Program,\nand must offer an equivalent opportunity for all users\ + \ interacting with your\nProgram through a computer network to request immediate transmission\ + \ by HTTP of\nthe complete source code of your modified version or other derivative work.\n\ + \nThese requirements apply to the modified work as a whole. If identifiable\nsections of\ + \ that work are not derived from the Program, and can be reasonably\nconsidered independent\ + \ and separate works in themselves, then this License, and\nits terms, do not apply to those\ + \ sections when you distribute them as separate\nworks. But when you distribute the same\ + \ sections as part of a whole which is a\nwork based on the Program, the distribution of\ + \ the whole must be on the terms of\nthis License, whose permissions for other licensees\ + \ extend to the entire whole,\nand thus to each and every part regardless of who wrote it.\n\ + \nThus, it is not the intent of this section to claim rights or contest your\nrights to\ + \ work written entirely by you; rather, the intent is to exercise the\nright to control\ + \ the distribution of derivative or collective works based on the\nProgram.\n\nIn addition,\ + \ mere aggregation of another work not based on the Program with the\nProgram (or with a\ + \ work based on the Program) on a volume of a storage or\ndistribution medium does not bring\ + \ the other work under the scope of this\nLicense.\n\n3. You may copy and distribute the\ + \ Program (or a work based on it, under Section\n2) in object code or executable form under\ + \ the terms of Sections 1 and 2 above\nprovided that you also do one of the following:\n\ + \n* a) Accompany it with the complete corresponding machine-readable source code,\nwhich\ + \ must be distributed under the terms of Sections 1 and 2 above on a medium\ncustomarily\ + \ used for software interchange; or,\n\n* b) Accompany it with a written offer, valid for\ + \ at least three years, to give\nany third party, for a charge no more than your cost of\ + \ physically performing\nsource distribution, a complete machine-readable copy of the corresponding\n\ + source code, to be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily\ + \ used for software interchange; or,\n\n* c) Accompany it with the information you received\ + \ as to the offer to\ndistribute corresponding source code. (This alternative is allowed\ + \ only for\nnoncommercial distribution and only if you received the program in object code\n\ + or executable form with such an offer, in accord with Subsection b above.)\n\nThe source\ + \ code for a work means the preferred form of the work for making\nmodifications to it.\ + \ For an executable work, complete source code means all the\nsource code for all modules\ + \ it contains, plus any associated interface\ndefinition files, plus the scripts used to\ + \ control compilation and installation\nof the executable. However, as a special exception,\ + \ the source code distributed\nneed not include anything that is normally distributed (in\ + \ either source or\nbinary form) with the major components (compiler, kernel, and so on)\ + \ of the\noperating system on which the executable runs, unless that component itself\n\ + accompanies the executable.\n\nIf distribution of executable or object code is made by offering\ + \ access to copy\nfrom a designated place, then offering equivalent access to copy the source\ + \ code\nfrom the same place counts as distribution of the source code, even though third\n\ + parties are not compelled to copy the source along with the object code.\n\n4. You may not\ + \ copy, modify, sublicense, or distribute the Program except as\nexpressly provided under\ + \ this License. Any attempt otherwise to copy, modify,\nsublicense or distribute the Program\ + \ is void, and will automatically terminate\nyour rights under this License. However, parties\ + \ who have received copies, or\nrights, from you under this License will not have their\ + \ licenses terminated so\nlong as such parties remain in full compliance.\n\n5. You are\ + \ not required to accept this License, since you have not signed it.\nHowever, nothing else\ + \ grants you permission to modify or distribute the Program\nor its derivative works. These\ + \ actions are prohibited by law if you do not\naccept this License. Therefore, by modifying\ + \ or distributing the Program (or any\nwork based on the Program), you indicate your acceptance\ + \ of this License to do\nso, and all its terms and conditions for copying, distributing\ + \ or modifying the\nProgram or works based on it.\n\n6. Each time you redistribute the Program\ + \ (or any work based on the Program),\nthe recipient automatically receives a license from\ + \ the original licensor to\ncopy, distribute or modify the Program subject to these terms\ + \ and conditions.\nYou may not impose any further restrictions on the recipients' exercise\ + \ of the\nrights granted herein. You are not responsible for enforcing compliance by third\n\ + parties to this License.\n\n7. If, as a consequence of a court judgment or allegation of\ + \ patent infringement\nor for any other reason (not limited to patent issues), conditions\ + \ are imposed\non you (whether by court order, agreement or otherwise) that contradict the\n\ + conditions of this License, they do not excuse you from the conditions of this\nLicense.\ + \ If you cannot distribute so as to satisfy simultaneously your\nobligations under this\ + \ License and any other pertinent obligations, then as a\nconsequence you may not distribute\ + \ the Program at all. For example, if a patent\nlicense would not permit royalty-free redistribution\ + \ of the Program by all those\nwho receive copies directly or indirectly through you, then\ + \ the only way you\ncould satisfy both it and this License would be to refrain entirely\ + \ from\ndistribution of the Program.\n\nIf any portion of this section is held invalid or\ + \ unenforceable under any\nparticular circumstance, the balance of the section is intended\ + \ to apply and the\nsection as a whole is intended to apply in other circumstances.\n\n\ + It is not the purpose of this section to induce you to infringe any patents or\nother property\ + \ right claims or to contest validity of any such claims; this\nsection has the sole purpose\ + \ of protecting the integrity of the free software\ndistribution system, which is implemented\ + \ by public license practices. Many\npeople have made generous contributions to the wide\ + \ range of software\ndistributed through that system in reliance on consistent application\ + \ of that\nsystem; it is up to the author/donor to decide if he or she is willing to\ndistribute\ + \ software through any other system and a licensee cannot impose that\nchoice.\n\nThis section\ + \ is intended to make thoroughly clear what is believed to be a\nconsequence of the rest\ + \ of this License.\n\n8. If the distribution and/or use of the Program is restricted in\ + \ certain\ncountries either by patents or by copyrighted interfaces, the original copyright\n\ + holder who places the Program under this License may add an explicit\ngeographical distribution\ + \ limitation excluding those countries, so that\ndistribution is permitted only in or among\ + \ countries not thus excluded. In such\ncase, this License incorporates the limitation as\ + \ if written in the body of this\nLicense.\n\n9. Affero Inc. may publish revised and/or\ + \ new versions of the Affero General\nPublic License from time to time. Such new versions\ + \ will be similar in spirit to\nthe present version, but may differ in detail to address\ + \ new problems or\nconcerns.\n\nEach version is given a distinguishing version number. If\ + \ the Program specifies\na version number of this License which applies to it and \"any\ + \ later version\",\nyou have the option of following the terms and conditions either of\ + \ that version\nor of any later version published by Affero, Inc. If the Program does not\n\ + specify a version number of this License, you may choose any version ever\npublished by\ + \ Affero, Inc.\n\nYou may also choose to redistribute modified versions of this program\ + \ under any\nversion of the Free Software Foundation's GNU General Public License version\ + \ 3\nor higher, so long as that version of the GNU GPL includes terms and conditions\nsubstantially\ + \ equivalent to those of this license.\n\n10. If you wish to incorporate parts of the Program\ + \ into other free programs\nwhose distribution conditions are different, write to the author\ + \ to ask for\npermission. For software which is copyrighted by Affero, Inc., write to us;\ + \ we\nsometimes make exceptions for this. Our decision will be guided by the two goals\n\ + of preserving the free status of all derivatives of our free software and of\npromoting\ + \ the sharing and reuse of software generally.\n\nNO WARRANTY\n\n11. BECAUSE THE PROGRAM\ + \ IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE\nPROGRAM, TO THE EXTENT PERMITTED\ + \ BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED\nIN WRITING THE COPYRIGHT HOLDERS AND/OR\ + \ OTHER PARTIES PROVIDE THE PROGRAM \"AS\nIS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\ + \ OR IMPLIED, INCLUDING, BUT\nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND FITNESS FOR A\nPARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE\ + \ OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\n\ + ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE\ + \ LAW OR AGREED TO IN WRITING WILL\nANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\ + \ AND/OR REDISTRIBUTE THE\nPROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING\ + \ ANY GENERAL,\nSPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY\n\ + TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE\ + \ OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF\nTHE PROGRAM TO OPERATE WITH\ + \ ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER\nPARTY HAS BEEN ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGES." json: agpl-1.0-plus.json - yml: agpl-1.0-plus.yml + yaml: agpl-1.0-plus.yml html: agpl-1.0-plus.html - text: agpl-1.0-plus.LICENSE + license: agpl-1.0-plus.LICENSE - license_key: agpl-2.0 + category: Copyleft spdx_license_key: LicenseRef-scancode-agpl-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + AFFERO GENERAL PUBLIC LICENSE + + Version 2, November 2007 + + Copyright © 2007 Affero Inc. + 510 Third Street - Suite 225, San Francisco, CA 94107, USA + + This is version 2 of the Affero General Public License. It gives each licensee + permission to distribute the Program or a work based on the Program (as defined + in version 1 of the Affero GPL) under the GNU Affero General Public License, + version 3 or any later version. + + If the Program was licensed under version 1 of the Affero GPL "or any later + version", no additional obligations are imposed on any author or copyright + holder of the Program as a result of a licensee's choice to follow this version + 2 of the Affero GPL. json: agpl-2.0.json - yml: agpl-2.0.yml + yaml: agpl-2.0.yml html: agpl-2.0.html - text: agpl-2.0.LICENSE + license: agpl-2.0.LICENSE - license_key: agpl-3.0 + category: Copyleft spdx_license_key: AGPL-3.0-only other_spdx_license_keys: - AGPL-3.0 - LicenseRef-AGPL-3.0 is_exception: no is_deprecated: no - category: Copyleft + text: | + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for + software and other kinds of works, specifically designed to ensure + cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed + to take away your freedom to share and change the works. By contrast, + our General Public Licenses are 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. + + 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. + + Developers that use our General Public Licenses protect your rights + with two steps: (1) assert copyright on the software, and (2) offer + you this License which gives you legal permission to copy, distribute + and/or modify the software. + + A secondary benefit of defending all users' freedom is that + improvements made in alternate versions of the program, if they + receive widespread use, become available for other developers to + incorporate. Many developers of free software are heartened and + encouraged by the resulting cooperation. However, in the case of + software used on network servers, this result may fail to come about. + The GNU General Public License permits making a modified version and + letting the public access it on a server without ever releasing its + source code to the public. + + The GNU Affero General Public License is designed specifically to + ensure that, in such cases, the modified source code becomes available + to the community. It requires the operator of a network server to + provide the source code of the modified version running there to the + users of that server. Therefore, public use of a modified version, on + a publicly accessible server, gives the public access to the source + code of the modified version. + + An older license, called the Affero General Public License and + published by Affero, was designed to accomplish similar goals. This is + a different license, not a version of the Affero GPL, but Affero has + released a new version of the Affero GPL which permits relicensing under + this license. + + 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 Affero 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. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the + Program, your modified version must prominently offer all users + interacting with it remotely through a computer network (if your version + supports such interaction) an opportunity to receive the Corresponding + Source of your version by providing access to the Corresponding Source + from a network server at no charge, through some standard or customary + means of facilitating copying of software. This Corresponding Source + shall include the Corresponding Source for any work covered by version 3 + of the GNU General Public License that is incorporated pursuant to the + following paragraph. + + 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 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 work with which it is combined will remain governed by version + 3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of + the GNU Affero 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 Affero 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 Affero 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 Affero General Public License can be used, that proxy's + public statement of acceptance of a version permanently authorizes you + to choose that version for the Program. + + Later license versions may give you additional or different + permissions. However, no additional obligations are imposed on any + author or copyright holder as a result of your choosing to follow a + later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY + APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT + HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY + OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM + IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF + ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING + WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS + THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY + GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE + USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF + DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD + PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), + EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF + SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided + above cannot be given local legal effect according to their terms, + reviewing courts shall apply local law that most closely approximates + an absolute waiver of all civil liability in connection with the + Program, unless a warranty or assumption of liability accompanies a + copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest + possible use to the public, the best way to achieve this is to make it + free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest + to attach them to the start of each source file to most effectively + state the exclusion of warranty; and each file should have at least + the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + + Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer + network, you should also make sure that it provides a way for users to + get its source. For example, if your program is a web application, its + interface could display a "Source" link that leads users to an archive + of the code. There are many ways you could offer source, and different + solutions will be better for different programs; see section 13 for the + specific requirements. + + 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 AGPL, see + . json: agpl-3.0.json - yml: agpl-3.0.yml + yaml: agpl-3.0.yml html: agpl-3.0.html - text: agpl-3.0.LICENSE + license: agpl-3.0.LICENSE - license_key: agpl-3.0-bacula + category: Copyleft spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft + text: | + Last revision: 21 May 2017 + + Bacula is licensed under the GNU Affero General Public License, version + 3.0 as published by the Free Software Foundation, Inc. ("AGPLv3"). + + Additional Terms on the work licensed herein, pursuant to Section 7 of + Affero General Public License are as follows: + + 1. The name Bacula is a registered trademark of Kern Sibbald, and Kern + Sibbald hereby declines to grant a trademark license to "Bacula" + pursuant to AGPLv3, Section 7(e) without a separate agreement with Kern + Sibbald. + + 2. Pursuant to AGPLv3, Section 7(a), in addition to the warranty and + liability disclaimers already found in AGPLv3, the copyright holders + specifically disclaim any liability for accusations of patent + infringement by any third party. + + 3. Pursuant to AGPLv3, Section 7(b), the portions of the file AUTHORS that + are deemed to be specified reasonable legal notices and/or author + attributions shall be preserved in redistribution of source code and/or + modifications thereof. Furthermore, when the following notice appears in + a source code file, it must be preserved when source code is conveyed + and/or propagated: + + Bacula(R) - The Network Backup Solution + + Copyright (C) 2000-2017 Kern Sibbald + + The original author of Bacula is Kern Sibbald, with contributions + from many others, a complete list can be found in the file AUTHORS. + + You may use this file and others of this release according to the + license defined in the LICENSE file, which includes the Affero General + Public License, v3.0 ("AGPLv3") and some additional permissions and + terms pursuant to its AGPLv3 Section 7. + + This notice must be preserved when any source code is conveyed + and/or propagated. + + Bacula(R) is a registered trademark of Kern Sibbald. + + Additional Permissions on the work licensed herein, pursuant to Section 7 of + AGPLv3 are as follows: + + 1. As a special exception to the AGPLv3, the copyright holders give + permission to link the code of its release of Bacula with the OpenSSL + project's "OpenSSL" library (or with modified versions of it that use the + same license as the "OpenSSL" library), and distribute the linked + executables. You must follow the requirements of AGPLv3 in all respects + for all of the code used other than "OpenSSL". + + 2. As a special exception to the AGPLv3, the copyright holders give + permission to link the code of its release of the Bacula Win32 File daemon + with the Microsoft supplied Volume Shadow Copy (VSS) libraries and + distribute the linked executables. You must follow the requirements of + the AGPLv3 in all respects for all of the code used other than for the + Microsoft VSS code. + + If you want to fork Bacula, please read the file LICENSE-FAQ. + + The copyright for certain source files may include in addition to what is + listed above the following copyright: + + Copyright (C) 2000-2014 Free Software Foundation Europe e.V. + + The copyright on the Baculum code is: + + Copyright (C) 2013-2017 Marcin Haba + + Copyrights of certain "script" files such as headers, shell script, Makefiles, + etc ... were previously never explicitly defined. In almost all cases, + they have been copyrighted with a BSD 2-Clause copyright to make them + easier. However, as is the case of all BSD type copyrights you must keep + the copyright in place and on any binary only released the copyright notice + must also be released with the binaries. An example of such a copyright + is: + + # + # Copyright (C) 2000-2017 Kern Sibbald + # License: BSD 2-Clause; see file LICENSE-FOSS + # + + It is equivalent to the full BSD copyright of: + + ===== + Copyright (C) 2000-2017 Kern Sibbald + License: BSD 2-Clause; see file LICENSE-FOSS + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + ==== + + Note: the exact form of the copyright (dates, name, and text formatting) + might vary, but the intent is the same, namely that the full BSD 2-Clause + coypright applies. The file LICENSE-FOSS has a few more details. + + + ###################################################################### + The entire AGPL is below, in the manuals distributed with the Bacula + documentation and can also be found online on the GNU web site at + www.bacula.org. You may also obtain a copy of the AGPL (or LGPL) by writing + to: Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + 02110-1301 USA + + + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for + software and other kinds of works, specifically designed to ensure + cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed + to take away your freedom to share and change the works. By contrast, + our General Public Licenses are 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. + + 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. + + Developers that use our General Public Licenses protect your rights + with two steps: (1) assert copyright on the software, and (2) offer + you this License which gives you legal permission to copy, distribute + and/or modify the software. + + A secondary benefit of defending all users' freedom is that + improvements made in alternate versions of the program, if they + receive widespread use, become available for other developers to + incorporate. Many developers of free software are heartened and + encouraged by the resulting cooperation. However, in the case of + software used on network servers, this result may fail to come about. + The GNU General Public License permits making a modified version and + letting the public access it on a server without ever releasing its + source code to the public. + + The GNU Affero General Public License is designed specifically to + ensure that, in such cases, the modified source code becomes available + to the community. It requires the operator of a network server to + provide the source code of the modified version running there to the + users of that server. Therefore, public use of a modified version, on + a publicly accessible server, gives the public access to the source + code of the modified version. + + An older license, called the Affero General Public License and + published by Affero, was designed to accomplish similar goals. This is + a different license, not a version of the Affero GPL, but Affero has + released a new version of the Affero GPL which permits relicensing under + this license. + + 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 Affero 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. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the + Program, your modified version must prominently offer all users + interacting with it remotely through a computer network (if your version + supports such interaction) an opportunity to receive the Corresponding + Source of your version by providing access to the Corresponding Source + from a network server at no charge, through some standard or customary + means of facilitating copying of software. This Corresponding Source + shall include the Corresponding Source for any work covered by version 3 + of the GNU General Public License that is incorporated pursuant to the + following paragraph. + + 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 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 work with which it is combined will remain governed by version + 3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of + the GNU Affero 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 Affero 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 Affero 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 Affero General Public License can be used, that proxy's + public statement of acceptance of a version permanently authorizes you + to choose that version for the Program. + + Later license versions may give you additional or different + permissions. However, no additional obligations are imposed on any + author or copyright holder as a result of your choosing to follow a + later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY + APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT + HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY + OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM + IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF + ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING + WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS + THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY + GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE + USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF + DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD + PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), + EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF + SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided + above cannot be given local legal effect according to their terms, + reviewing courts shall apply local law that most closely approximates + an absolute waiver of all civil liability in connection with the + Program, unless a warranty or assumption of liability accompanies a + copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest + possible use to the public, the best way to achieve this is to make it + free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest + to attach them to the start of each source file to most effectively + state the exclusion of warranty; and each file should have at least + the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + + Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer + network, you should also make sure that it provides a way for users to + get its source. For example, if your program is a web application, its + interface could display a "Source" link that leads users to an archive + of the code. There are many ways you could offer source, and different + solutions will be better for different programs; see section 13 for the + specific requirements. + + 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 AGPL, see + . json: agpl-3.0-bacula.json - yml: agpl-3.0-bacula.yml + yaml: agpl-3.0-bacula.yml html: agpl-3.0-bacula.html - text: agpl-3.0-bacula.LICENSE + license: agpl-3.0-bacula.LICENSE - license_key: agpl-3.0-linking-exception + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + Additional permission under the GNU Affero GPL version 3 section 7: + + If you modify this Program, or any covered work, by linking or + combining it with other code, such other code is not for that reason + alone subject to any of the requirements of the GNU Affero GPL + version 3. json: agpl-3.0-linking-exception.json - yml: agpl-3.0-linking-exception.yml + yaml: agpl-3.0-linking-exception.yml html: agpl-3.0-linking-exception.html - text: agpl-3.0-linking-exception.LICENSE + license: agpl-3.0-linking-exception.LICENSE - license_key: agpl-3.0-openssl + category: Copyleft spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft + text: | + As a special exception, the copyright holders give permission to link the + code of portions of this program with the OpenSSL library under certain + conditions as described in each individual source file and distribute + linked combinations including the program with the OpenSSL library. You + must comply with the GNU Affero General Public License in all respects for + all of the code used other than as permitted herein. 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 in the license file. json: agpl-3.0-openssl.json - yml: agpl-3.0-openssl.yml + yaml: agpl-3.0-openssl.yml html: agpl-3.0-openssl.html - text: agpl-3.0-openssl.LICENSE + license: agpl-3.0-openssl.LICENSE - license_key: agpl-3.0-plus + category: Copyleft spdx_license_key: AGPL-3.0-or-later other_spdx_license_keys: - AGPL-3.0+ - LicenseRef-AGPL is_exception: no is_deprecated: no - category: Copyleft + text: | + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for + software and other kinds of works, specifically designed to ensure + cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed + to take away your freedom to share and change the works. By contrast, + our General Public Licenses are 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. + + 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. + + Developers that use our General Public Licenses protect your rights + with two steps: (1) assert copyright on the software, and (2) offer + you this License which gives you legal permission to copy, distribute + and/or modify the software. + + A secondary benefit of defending all users' freedom is that + improvements made in alternate versions of the program, if they + receive widespread use, become available for other developers to + incorporate. Many developers of free software are heartened and + encouraged by the resulting cooperation. However, in the case of + software used on network servers, this result may fail to come about. + The GNU General Public License permits making a modified version and + letting the public access it on a server without ever releasing its + source code to the public. + + The GNU Affero General Public License is designed specifically to + ensure that, in such cases, the modified source code becomes available + to the community. It requires the operator of a network server to + provide the source code of the modified version running there to the + users of that server. Therefore, public use of a modified version, on + a publicly accessible server, gives the public access to the source + code of the modified version. + + An older license, called the Affero General Public License and + published by Affero, was designed to accomplish similar goals. This is + a different license, not a version of the Affero GPL, but Affero has + released a new version of the Affero GPL which permits relicensing under + this license. + + 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 Affero 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. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the + Program, your modified version must prominently offer all users + interacting with it remotely through a computer network (if your version + supports such interaction) an opportunity to receive the Corresponding + Source of your version by providing access to the Corresponding Source + from a network server at no charge, through some standard or customary + means of facilitating copying of software. This Corresponding Source + shall include the Corresponding Source for any work covered by version 3 + of the GNU General Public License that is incorporated pursuant to the + following paragraph. + + 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 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 work with which it is combined will remain governed by version + 3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of + the GNU Affero 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 Affero 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 Affero 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 Affero General Public License can be used, that proxy's + public statement of acceptance of a version permanently authorizes you + to choose that version for the Program. + + Later license versions may give you additional or different + permissions. However, no additional obligations are imposed on any + author or copyright holder as a result of your choosing to follow a + later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY + APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT + HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY + OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM + IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF + ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING + WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS + THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY + GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE + USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF + DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD + PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), + EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF + SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided + above cannot be given local legal effect according to their terms, + reviewing courts shall apply local law that most closely approximates + an absolute waiver of all civil liability in connection with the + Program, unless a warranty or assumption of liability accompanies a + copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest + possible use to the public, the best way to achieve this is to make it + free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest + to attach them to the start of each source file to most effectively + state the exclusion of warranty; and each file should have at least + the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + + Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer + network, you should also make sure that it provides a way for users to + get its source. For example, if your program is a web application, its + interface could display a "Source" link that leads users to an archive + of the code. There are many ways you could offer source, and different + solutions will be better for different programs; see section 13 for the + specific requirements. + + 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 AGPL, see + . json: agpl-3.0-plus.json - yml: agpl-3.0-plus.yml + yaml: agpl-3.0-plus.yml html: agpl-3.0-plus.html - text: agpl-3.0-plus.LICENSE + license: agpl-3.0-plus.LICENSE - license_key: agpl-generic-additional-terms + category: Copyleft spdx_license_key: LicenseRef-scancode-agpl-generic-additional-terms other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: json: agpl-generic-additional-terms.json - yml: agpl-generic-additional-terms.yml + yaml: agpl-generic-additional-terms.yml html: agpl-generic-additional-terms.html - text: agpl-generic-additional-terms.LICENSE + license: agpl-generic-additional-terms.LICENSE - license_key: aladdin-md5 + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + 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. + + L. Peter Deutsch ghost@aladdin.com json: aladdin-md5.json - yml: aladdin-md5.yml + yaml: aladdin-md5.yml html: aladdin-md5.html - text: aladdin-md5.LICENSE + license: aladdin-md5.LICENSE - license_key: alasir + category: Proprietary Free spdx_license_key: LicenseRef-scancode-alasir other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + The Alasir Licence + + This is a free software. It's provided as-is and carries absolutely no + warranty or responsibility by the author and the contributors, neither in + general nor in particular. No matter if this software is able or unable to + cause any damage to your or third party's computer hardware, software, or any + other asset available, neither the author nor a separate contributor may be + found liable for any harm or its consequences resulting from either proper or + improper use of the software, even if advised of the possibility of certain + injury as such and so forth. + + The software isn't a public domain, it's a copyrighted one. In no event + shall the author's or a separate contributor's copyright be denied or violated + otherwise. No copyright may be removed unless together with the code + contributed to the software by a holder of the respective copyright. A + copyright itself indicates the rights of ownership over the code contributed. + Back and forth, the author is defined as the one who holds the oldest + copyright over the software. Furthermore, the software is defined as either + source or binary computer code, which is organised in the form of a single + computer file usually. + + The software, the whole or a part of it, is prohibited from being sold or + leased in any form or manner with the only possible exceptions: + + a) money may be charged for a physical medium used to transfer the software; + b) money may be charged for optional warranty or support services related to + the software. + + Nevertheless, if the software, the whole or a part of it, is expected to + become an object of sale or lease, the whole or a part of it, then a separate + non-exclusive licence agreement must be negotiated from the author. Benefits + accrued should be distributed between the contributors or likewise at the + author's discretion. + + Whenever and wherever the software is distributed, in either source or + binary form, either in whole or in part, it must include the complete + unchanged text of this licence agreement unless different conditions have been + negotiated. In case of a binary only distribution, the names of the copyright + holders must be mentioned in the documentation supplied with the software. + This is supposed to protect rights and freedom of those who have contributed + their time and labour to free software development, because otherwise the + development itself and this licence agreement are of a very little sense. + + Nothing else but this licence agreement grants you rights to use, modify + and distribute the software. Any violation of this licence agreement is + recognised as an action prohibited by an applicable legislation. json: alasir.json - yml: alasir.yml + yaml: alasir.yml html: alasir.html - text: alasir.LICENSE + license: alasir.LICENSE - license_key: alexisisaac-freeware + category: Permissive spdx_license_key: LicenseRef-scancode-alexisisaac-freeware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + FREEWARE LICENSE AGREEMENT + Before loading this software on your computer, please carefully read the following terms and conditions. + + FREEWARE + Alexisisaac.net Software, developed and licenses this software program ("Software"). This Software is distributed as FREEWARE. You could make a donation if you want to support development of future products from Alexisisaac.net. + + LICENSE GRANT + This is a License between you ("Licensee") and Alexisisaac.net. Alexisisaac.net grants to you a non-exclusive license to use the enclosed copy of software in accord with the terms set forth in this License Agreement. The software is owned by Alexisisaac.net or its licensors and protected by copyright and trademark laws. + + LICENSE DOES NOT PERMIT + Licensee may not charge fees for distribution or delivery of the Software without expressed written consent of Alexisisaac.net. + + DISTRIBUTION + This software may be freely distributed, so long as no fees are charged, and original packaging and documentation are retained. In particular, please distribute this application to friends and associates. In most cases, linking to http://www.alexisisaac.net/products is all that would be necessary. + + NO WARRANTY + This software has no warranty of fitness, suitability for a particular purpose or satisfactory quality. This Software is provided to licensee "as is". + + DISCLAIMER + Licensee hereby disclaims and indemnifies Alexisisaac.net from any claims or complaints about the Software. json: alexisisaac-freeware.json - yml: alexisisaac-freeware.yml + yaml: alexisisaac-freeware.yml html: alexisisaac-freeware.html - text: alexisisaac-freeware.LICENSE + license: alexisisaac-freeware.LICENSE - license_key: alfresco-exception-0.5 + category: Copyleft spdx_license_key: LicenseRef-scancode-alfresco-exception-0.5 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: "Alfresco Software, Ltd. FLOSS License Exception\n\n The Alfresco Software, Ltd. Exception\ + \ for Free/Libre and Open Source Software-only Applications Using Alfresco software (the\ + \ `FLOSS Exception').\n\nVersion 0.5, 30 August 2006\nException Intent\n\nWe want specified\ + \ Free/Libre and Open Source Software (\"FLOSS\") applications to be able to use specified\ + \ GPL-licensed Alfresco software (the \"Program\") despite the fact that not all FLOSS licenses\ + \ are compatible with version 2 of the GNU General Public License (the \"GPL\").\nLegal\ + \ Terms and Conditions\n\nAs a special exception to the terms and conditions of version\ + \ 2.0 of the GPL:\n\nYou are free to distribute a Derivative Work that is formed entirely\ + \ from the Program and one or more works (each, a \"FLOSS Work\") licensed under one or\ + \ more of the licenses listed below in section 1, as long as:\n\n You obey the GPL in\ + \ all respects for the Program and the Derivative Work, except for identifiable sections\ + \ of the Derivative Work which are not derived from the Program, and which can reasonably\ + \ be considered independent and separate works in themselves,\n all identifiable sections\ + \ of the Derivative Work which are not derived from the Program, and which can reasonably\ + \ be considered independent and separate works in themselves,\n are distributed subject\ + \ to one of the FLOSS licenses listed below, and\n the object code or executable\ + \ form of those sections are accompanied by the complete corresponding machine-readable\ + \ source code for those sections on the same medium and under the same FLOSS license as\ + \ the corresponding object code or executable forms of those sections, and\n any works\ + \ which are aggregated with the Program or with a Derivative Work on a volume of a storage\ + \ or distribution medium in accordance with the GPL, can reasonably be considered independent\ + \ and separate works in themselves which are not derivatives of either the Program, a Derivative\ + \ Work or a FLOSS Work.\n\nIf the above conditions are not met, then the Program may only\ + \ be copied, modified, distributed or used under the terms and conditions of the GPL or\ + \ another valid licensing option from Alfresco Software, Ltd.\n1. FLOSS License List\nLicense\ + \ name\tVersion(s)/Copyright Date\nAcademic Free License \t2.0\nApache Software License\ + \ \t1.0/1.1/2.0\nApple Public Source License \t2.0\nArtistic license \tFrom Perl 5.8.0\n\ + BSD license \t\"July 22 1999\"\nCommon Development and Distribution License (CDDL) \t1.0\n\ + Common Public License \t1.0\nGNU Library or \"Lesser\" General Public License (LGPL) \t\ + 2.0/2.1\nJabber Open Source License \t1.0\nMIT License (As listed in file MIT-License.txt)\ + \ \t-\nMozilla Public License (MPL) \t1.0/1.1\nOpen Software License \t2.0\nOpenSSL license\ + \ (with original SSLeay license) \t\"2003\" (\"1998\")\nPHP License \t3.0\nPython license\ + \ (CNRI Python License) \t-\nPython Software Foundation License \t2.1.1\nSleepycat License\ + \ \t\"1999\"\nUniversity of Illinois/NCSA Open Source License \t-\nW3C License \t\"2001\"\ + \nX11 License \t\"2001\"\nZlib/libpng License \t-\nZope Public License \t2.0\n\nDue to the\ + \ many variants of some of the above licenses, we require that any version follow the 2003\ + \ version of the Free Software Foundation's Free Software Definition (http://www.gnu.org/philosophy/free-sw.html)\ + \ or version 1.9 of the Open Source Definition by the Open Source Initiative (http://www.opensource.org/docs/definition.php).\n\ + 2. Definitions\n\n Terms used, but not defined, herein shall have the meaning provided\ + \ in the GPL.\n Derivative Work means a derivative work under copyright law.\n\n3. Applicability\n\ + \nThis FLOSS Exception applies to all Programs that contain a notice placed by Alfresco\ + \ Software, Ltd. saying that the Program may be distributed under the terms of this FLOSS\ + \ Exception. If you create or distribute a work which is a Derivative Work of both the Program\ + \ and any other work licensed under the GPL, then this FLOSS Exception is not available\ + \ for that work; thus, you must remove the FLOSS Exception notice from that work and comply\ + \ with the GPL in all respects, including by retaining all GPL notices. You may choose to\ + \ redistribute a copy of the Program exclusively under the terms of the GPL by removing\ + \ the FLOSS Exception notice from that copy of the Program, provided that the copy has never\ + \ been modified by you or any third party.\nAppendix A. Qualified Libraries and Packages\n\ + \nThe following is a a non-exhaustive list of libraries and packages which are covered by\ + \ the FLOSS License Exception. Please note that appendix is merely provided as an additional\ + \ service to specific FLOSS projects who wish to simplify licensing information for their\ + \ users. Compliance with one of the licenses noted under the \"FLOSS license list\" section\ + \ remains a prerequisite.\nPackage name\tQualifying License and Version\nApache Portable\ + \ Runtime (APR) \tApache Software License 2.0" json: alfresco-exception-0.5.json - yml: alfresco-exception-0.5.yml + yaml: alfresco-exception-0.5.yml html: alfresco-exception-0.5.html - text: alfresco-exception-0.5.LICENSE + license: alfresco-exception-0.5.LICENSE - license_key: allegro-4 + category: Permissive spdx_license_key: Giftware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Allegro 4 (the giftware license) + + Allegro is gift-ware. It was created by a number of people working in cooperation, and is given to you freely as a gift. You may use, modify, redistribute, and generally hack it about in any way you like, and you do not have to give us anything in return. + + However, if you like this product you are encouraged to thank us by making a return gift to the Allegro community. This could be by writing an add-on package, providing a useful bug report, making an improvement to the library, or perhaps just releasing the sources of your program so that other people can learn from them. If you redistribute parts of this code or make a game using it, it would be nice if you mentioned Allegro somewhere in the credits, but you are not required to do this. We trust you not to abuse our generosity. + + By Shawn Hargreaves, 18 October 1998. + + DISCLAIMER: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. json: allegro-4.json - yml: allegro-4.yml + yaml: allegro-4.yml html: allegro-4.html - text: allegro-4.LICENSE + license: allegro-4.LICENSE - license_key: allen-institute-software-2018 + category: Free Restricted spdx_license_key: LicenseRef-scancode-allen-institute-software-2018 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + 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 for commercial purposes are not permitted without the Allen Institute’s written permission. For + purposes of this license, commercial purposes is the incorporation of the Allen Institute's software into anything for + which you will charge fees or other compensation. Contact terms@alleninstitute.org for commercial licensing + opportunities. + + 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. json: allen-institute-software-2018.json - yml: allen-institute-software-2018.yml + yaml: allen-institute-software-2018.yml html: allen-institute-software-2018.html - text: allen-institute-software-2018.LICENSE + license: allen-institute-software-2018.LICENSE - license_key: altermime + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-altermime other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "alterMIME LICENSE\n\nThe following license terms and conditions apply, unless a different\n\ + license is obtained from P.L.Daniels, P.O.Box 6, Ravenswood, 4816\nAustralia, or by electronic\ + \ mail at pldaniels@pldaniels.com.\n\nLicense Terms:\n\nUse, Modification and Redistribution\ + \ (including distribution of any\nmodified or derived work) in source and binary forms is\ + \ permitted only if\neach of the following conditions is met:\n\n1. Redistributions qualify\ + \ as \"freeware\" or \"Open Source Software\" under\n one of the following terms:\n\n\ + \ (a) Redistributions are made at no charge beyond the reasonable cost of\n materials\ + \ and delivery.\n\n (b) Redistributions are accompanied by a copy of the Source Code or\ + \ by an\n irrevocable offer to provide a copy of the Source Code for up to three\n\ + \ years at the cost of materials and delivery. Such redistributions\n must\ + \ allow further use, modification, and redistribution of the Source\n Code under substantially\ + \ the same terms as this license. For the\n purposes of redistribution \"Source Code\"\ + \ means the complete compilable\n and linkable source code of alterMIME including\ + \ all modifications.\n\n2. Redistributions of source code must retain the copyright notices\ + \ as they\n appear in each source code file, these license terms, and the\n disclaimer/limitation\ + \ of liability set forth as paragraph 6 below.\n\n3. Redistributions in binary form must\ + \ reproduce the Copyright Notice,\n these license terms, and the disclaimer/limitation\ + \ of liability set\n forth as paragraph 6 below, in the documentation and/or other materials\n\ + \ provided with the distribution. For the purposes of binary distribution\n the \"\ + Copyright Notice\" refers to the following language:\n \"Copyright (c) 2000 P.L.Daniels,\ + \ All rights reserved.\"\n\n4. Neither the name of alterMIME, nor Paul L Daniels, nor the\n\ + \ the names of their contributors may be used to endorse or promote\n products derived\ + \ from this software without specific prior written\n permission. \n\n5. All redistributions\ + \ must comply with the conditions imposed by the\n University of California on certain\ + \ embedded code, whose copyright\n notice and conditions for redistribution are as follows:\n\ + \n (a) Copyright (c) 2000 P.L.Daniels, All rights reserved.\n\n (b) Redistribution and\ + \ use in source and binary forms, with or without\n modification, are permitted provided\ + \ that the following conditions\n are met:\n\n (i) Redistributions of source\ + \ code must retain the above copyright\n notice, this list of conditions and\ + \ the following disclaimer.\n\n (ii) Redistributions in binary form must reproduce\ + \ the above\n copyright notice, this list of conditions and the following\n \ + \ disclaimer in the documentation and/or other materials provided\n \ + \ with the distribution.\n\n (iii) Neither the name of alterMIME, nor P.L.Daniels,\ + \ nor the names of its\n contributors may be used to endorse or promote products\ + \ derived\n from this software without specific prior written permission.\n\n\ + 6. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY\n P.L.Daniels. AND\ + \ CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED\ + \ TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\ + \ ARE DISCLAIMED. IN\n NO EVENT SHALL SENDMAIL, INC., THE REGENTS OF THE UNIVERSITY OF\n\ + \ CALIFORNIA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL,\ + \ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF\ + \ SUBSTITUTE GOODS OR SERVICES; LOSS OF\n USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\ + \ HOWEVER CAUSED AND ON\n ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\ + \ OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n\ + \ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES." json: altermime.json - yml: altermime.yml + yaml: altermime.yml html: altermime.html - text: altermime.LICENSE + license: altermime.LICENSE - license_key: altova-eula + category: Commercial spdx_license_key: LicenseRef-scancode-altova-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "THIS IS A LEGAL DOCUMENT -- RETAIN FOR YOUR RECORDS\n\nALTOVA® END-USER LICENSE AGREEMENT\n\ + \nLicensor:\n\nAltova GmbH\nRudolfsplatz 13a/9\nA-1010 Wien\nAustria\n\nImportant - Read\ + \ Carefully. Notice to User:\n\nThis End User License Agreement (\"Agreement\") is a legal\ + \ document between you and Altova GmbH (\"Altova\"). It is important that you read this\ + \ document before using the Altova-provided software (\"Software\") and any accompanying\ + \ documentation, including, without limitation printed materials, ‘online’ files, or electronic\ + \ documentation (\"Documentation\"). By clicking the \"I accept\" and \"Next\" buttons below,\ + \ or by installing, or otherwise using the Software, you agree to be bound by the terms\ + \ of this Agreement as well as the Altova Privacy Policy (\"Privacy Policy\") including,\ + \ without limitation, the warranty disclaimers, limitation of liability, data use and termination\ + \ provisions below, whether or not you decide to purchase the Software. You agree that this\ + \ agreement is enforceable like any written agreement negotiated and signed by you. If you\ + \ do not agree, you are not licensed to use the Software, and you must destroy any downloaded\ + \ copies of the Software in your possession or control. You may print a copy of this Agreement\ + \ as part of the installation process at the time of acceptance. Alternatively, a copy of\ + \ this Agreement may be found at http://www.altova.com/eula and a copy of the Privacy Policy\ + \ may be found at http://www.altova.com/privacy.\n\n1.\tSOFTWARE LICENSE\n\n(a)\tLicense\ + \ Grant.\n\n(i) Upon your acceptance of this Agreement Altova grants you a non-exclusive,\ + \ non-transferable (except as provided below), limited license, without the right to grant\ + \ sublicenses, to install and use a copy of the Software on one compatible personal computer\ + \ or workstation up to the Permitted Number of computers. Subject to the limitations set\ + \ forth in Section 1(c), you may install and use a copy of the Software on more than one\ + \ of your compatible personal computers or workstations if you have purchased a Named-User\ + \ license. Subject to the limitations set forth in Sections 1(d) and 1(e), users may use\ + \ the software concurrently on a network. The Permitted Number of computers and/or users\ + \ and the type of license, e.g. Installed, Named-Users, and Concurrent-User, shall be determined\ + \ and specified at such time as you elect to purchase the Software. Installed user licenses\ + \ are intended to be fixed and not concurrent. In other words, you cannot uninstall the\ + \ Software on one machine in order to reinstall that license to a different machine and\ + \ then uninstall and reinstall back to the original machine. Installations should be static.\ + \ Notwithstanding the foregoing, permanent uninstallations and redeployments are acceptable\ + \ in limited circumstances such as if an employee leaves the company or the machine is permanently\ + \ decommissioned. During the evaluation period, hereinafter defined, only a single user\ + \ may install and use the software on one (1) personal computer or workstation. If you have\ + \ licensed the Software as part of a suite of Altova software products (collectively, the\ + \ \"Suite\") and have not installed each product individually, then the Agreement governs\ + \ your use of all of the software included in the Suite.\n\n(ii) If you have licensed SchemaAgent,\ + \ then the terms and conditions of this Agreement apply to your use of the SchemaAgent server\ + \ software (\"SchemaAgent Server\") included therein, as applicable, and you are licensed\ + \ to use SchemaAgent Server solely in connection with your use of Altova Software and solely\ + \ for the purposes described in the accompanying documentation.\n\n(iii) If you have licensed\ + \ Software that enables users to generate source code, your license to install and use a\ + \ copy of the Software as provided herein permits you to generate source code based on (i)\ + \ Altova Library modules that are included in the Software (such generated code hereinafter\ + \ referred to as the \"Restricted Source Code\") and (ii) schemas or mappings that you create\ + \ or provide (such code as may be generated from your schema or mapping source materials\ + \ hereinafter referred to as the \"Unrestricted Source Code\"). In addition to the rights\ + \ granted herein, Altova grants you a non-exclusive, non-transferable, limited license to\ + \ compile the complete generated code (comprised of the combination of the Restricted Source\ + \ Code and the Unrestricted Source Code) into executable object code form, and to use, copy,\ + \ distribute or license that executable. You may not distribute or redistribute, sublicense,\ + \ sell, or transfer the Restricted Source Code to a third-party in the un-compiled form\ + \ unless said third-party already has a license to the Restricted Source Code through their\ + \ separate agreement with Altova. Notwithstanding anything to the contrary herein, you may\ + \ not distribute, incorporate or combine with other software, or otherwise use the Altova\ + \ Library modules or Restricted Source Code, or any Altova intellectual property embodied\ + \ in or associated with the Altova Library modules or Restricted Source Code, in any manner\ + \ that would subject the Restricted Source Code to the terms of a copyleft, free software\ + \ or open source license that would require the Restricted Source Code or Altova Library\ + \ modules source code to be disclosed in source code form. Notwithstanding anything to the\ + \ contrary herein, you may not use the Software to develop and distribute other software\ + \ programs that directly compete with any Altova software or service without prior written\ + \ permission. Altova reserves all other rights in and to the Software. With respect to the\ + \ feature(s) of UModel that permit reverse-engineering of your own source code or other\ + \ source code that you have lawfully obtained, such use by you does not constitute a violation\ + \ of this Agreement. Except as otherwise expressly permitted in Section 1(j) reverse engineering\ + \ of the Software is strictly prohibited as further detailed therein.\n\n(iv) In the event\ + \ Restricted Source Code is incorporated into executable object code form, you will include\ + \ the following statement in (1) introductory splash screens, or if none, within one or\ + \ more screens readily accessible by the end-user, and (2) in the electronic and/or hard\ + \ copy documentation: \"Portions of this program were developed using Altova® [name of Altova\ + \ Software, e.g. MapForce® 2011] and includes libraries owned by Altova GmbH, Copyright\ + \ © 2007-2011 Altova GmbH (www.altova.com).\"\n\n(b)\tServer Use for Installation and Use\ + \ of SchemaAgent. You may install one (1) copy of the Software on a computer file server\ + \ within your internal network solely for the purpose of downloading and installing the\ + \ Software onto other computers within your internal network up to the Permitted Number\ + \ of computers in a commercial environment only. If you have licensed SchemaAgent, then\ + \ you may install SchemaAgent Server on any server computer or workstation and use it in\ + \ connection with your Software. No other network use is permitted, including without limitation\ + \ using the Software either directly or through commands, data or instructions from or to\ + \ a computer not part of your internal network, for Internet or Web-hosting services or\ + \ by any user not licensed to use this copy of the Software through a valid license from\ + \ Altova.\n\n(c)\tNamed Use. If you have licensed the \"Named-User\" version of the software,\ + \ you may install the Software on up to five (5) compatible personal computers or workstations\ + \ of which you are the primary user thereby allowing you to switch from one computer to\ + \ the other as necessary provided that only one (1) instance of the Software will be used\ + \ by you as the Named-User at any given time. If you have purchased multiple Named-User\ + \ licenses, each individual Named-User will receive a separate license key code.\n\n(d)\t\ + Concurrent Use in Same Physical Network or Office Location. If you have licensed a \"Concurrent-User\"\ + \ version of the Software, you may install the Software on any compatible computers in a\ + \ commercial environment only, up to ten (10) times the Permitted Number of users, provided\ + \ that only the Permitted Number of users actually use the Software at the same time and\ + \ further provided that the computers on which the Software is installed are on the same\ + \ physical computer network. The Permitted Number of concurrent users shall be delineated\ + \ at such time as you elect to purchase the Software licenses. Each separate physical network\ + \ or office location requires its own set of separate Concurrent User Licenses for those\ + \ wishing to use the Concurrent User versions of the Software in more than one location\ + \ or on more than one network, all subject to the above Permitted Number limitations and\ + \ based on the number of users using the Software. If a computer is not on the same physical\ + \ network, then a locally installed user license or a license dedicated to concurrent use\ + \ in a virtual environment is required. Home User restrictions and limitations with respect\ + \ to the Concurrent User licenses used on home computers are set forth in Section 1(g).\n\ + \n(e)\tConcurrent Use in a Virtual Environment. If you have purchased Concurrent-User Licenses,\ + \ you may install a copy of the Software on a terminal server (Microsoft Terminal Server\ + \ or Citrix Metaframe), application virtualization server (Microsoft App-V, Citrix XenApp,\ + \ or VMWare ThinApp) or virtual machine environment within your internal network for the\ + \ sole and exclusive purpose of permitting individual users within your organization to\ + \ access and use the Software through a terminal server, application virtualization session,\ + \ or virtual machine environment from another computer provided that the total number of\ + \ users that access or use the Software concurrently at any given point in time on such\ + \ network, virtual machine or terminal server does not exceed the Permitted Number; and\ + \ provided that the total number of users authorized to use the Software through the terminal\ + \ server, application virtualization session, or virtual machine environment does not exceed\ + \ ten (10) times the Permitted Number of users. In a virtual environment, you must deploy\ + \ a reliable and accurate means of preventing users from exceeding the Permitted Number\ + \ of concurrent users. Altova makes no warranties or representations about the performance\ + \ of Altova software in a terminal server, application virtualization session, or virtual\ + \ machine environment and the foregoing are expressly excluded from the limited warranty\ + \ in Section 5 hereof. Technical support is not available with respect to issues arising\ + \ from use in such environments.\n\n(f)\tBackup and Archival Copies. You may make one (1)\ + \ backup and one (1) archival copy of the Software, provided your backup and archival copies\ + \ are not installed or used on any computer and further provided that all such copies shall\ + \ bear the original and unmodified copyright, patent and other intellectual property markings\ + \ that appear on or in the Software. You may not transfer the rights to a backup or archival\ + \ copy unless you transfer all rights in the Software as provided under Section 3.\n\n(g)\t\ + Home Use (Personal and Non-Commercial). In order to further familiarize yourself with the\ + \ Software and allow you to explore its features and functions, you, as the primary user\ + \ of the computer on which the Software is installed for commercial purposes, may also install\ + \ one copy of the Software on only one (1) home personal computer (such as your laptop or\ + \ desktop) solely for your personal and non-commercial (\"HPNC\") use. This HPNC copy may\ + \ not be used in any commercial or revenue-generating business activities, including without\ + \ limitation, work-from-home, teleworking, telecommuting, or other work-related use of the\ + \ Software. The HPNC copy of the Software may not be used at the same time on a home personal\ + \ computer as the Software is being used on the primary computer.\n\n(h)\tKey Codes, Upgrades\ + \ and Updates. Prior to your purchase and as part of the registration for the thirty (30)\ + \ day evaluation period, as applicable, you will receive an evaluation key code. You will\ + \ receive a purchase key code when you elect to purchase the Software from either Altova\ + \ GmbH or an authorized reseller. The purchase key code will enable you to activate the\ + \ Software beyond the initial evaluation period. You may not re-license, reproduce or distribute\ + \ any key code except with the express written permission of Altova. If the Software that\ + \ you have licensed is an upgrade or an update, then the latest update or upgrade that you\ + \ download and install replaces all or part of the Software previously licensed. The update\ + \ or upgrade and the associated license keys does not constitute the granting of a second\ + \ license to the Software in that you may not use the upgrade or updated copy in addition\ + \ to the copy of the Software that it is replacing and whose license has terminated.\n\n\ + (i)\tTitle. Title to the Software is not transferred to you. Ownership of all copies of\ + \ the Software and of copies made by you is vested in Altova, subject to the rights of use\ + \ granted to you in this Agreement. As between you and Altova, documents, files, stylesheets,\ + \ generated program code (including the Unrestricted Source Code) and schemas that are authored\ + \ or created by you via your utilization of the Software, in accordance with its Documentation\ + \ and the terms of this Agreement, are your property unless they are created using Evaluation\ + \ Software, as defined in Section 4 of this Agreement, in which case you have only a limited\ + \ license to use any output that contains generated program code (including Unrestricted\ + \ Source Code) such as Java, C++, C#, VB.NET or XSLT and associated project files and build\ + \ scripts, as well as generated XML, XML Schemas, documentation, UML diagrams, and database\ + \ structures only for the thirty (30) day evaluation period.\n\n(j)\tReverse Engineering.\ + \ Except and to the limited extent as may be otherwise specifically provided by applicable\ + \ law in the European Union, you may not reverse engineer, decompile, disassemble or otherwise\ + \ attempt to discover the source code, underlying ideas, underlying user interface techniques\ + \ or algorithms of the Software by any means whatsoever, directly or indirectly, or disclose\ + \ any of the foregoing, except to the extent you may be expressly permitted to decompile\ + \ under applicable law in the European Union, if it is essential to do so in order to achieve\ + \ operability of the Software with another software program, and you have first requested\ + \ Altova to provide the information necessary to achieve such operability and Altova has\ + \ not made such information available. Altova has the right to impose reasonable conditions\ + \ and to request a reasonable fee before providing such information. Any information supplied\ + \ by Altova or obtained by you, as permitted hereunder, may only be used by you for the\ + \ purpose described herein and may not be disclosed to any third party or used to create\ + \ any software which is substantially similar to the expression of the Software. Requests\ + \ for information from users in the European Union with respect to the above should be directed\ + \ to the Altova Customer Support Department.\n\n(k)\tOther Restrictions.You may not loan,\ + \ rent, lease, sublicense, distribute or otherwise transfer all or any portion of the Software\ + \ to third parties except to the limited extent set forth in Section 3 or as otherwise expressly\ + \ provided. You may not copy the Software except as expressly set forth above, and any copies\ + \ that you are permitted to make pursuant to this Agreement must contain the same copyright,\ + \ patent and other intellectual property markings that appear on or in the Software. You\ + \ may not modify, adapt or translate the Software. You may not, directly or indirectly,\ + \ encumber or suffer to exist any lien or security interest on the Software; knowingly take\ + \ any action that would cause the Software to be placed in the public domain; or use the\ + \ Software in any computer environment not specified in this Agreement. You may not permit\ + \ any use of or access to the Software by any third party in connection with a commercial\ + \ service offering, such as for a cloud-based or web-based SaaS offering.\n\nYou will comply\ + \ with applicable law and Altova’s instructions regarding the use of the Software. You agree\ + \ to notify your employees and agents who may have access to the Software of the restrictions\ + \ contained in this Agreement and to ensure their compliance with these restrictions.\n\n\ + (l)\tNO GUARANTEE. THE SOFTWARE IS NEITHER GUARANTEED NOR WARRANTED TO BE ERROR-FREE NOR\ + \ SHALL ANY LIABILITY BE ASSUMED BY ALTOVA IN THIS RESPECT. NOTWITHSTANDING ANY SUPPORT\ + \ FOR ANY TECHNICAL STANDARD, THE SOFTWARE IS NOT INTENDED FOR USE IN OR IN CONNECTION WITH,\ + \ WITHOUT LIMITATION, THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION, COMMUNICATION\ + \ SYSTEMS, AIR TRAFFIC CONTROL EQUIPMENT, MEDICAL DEVICES OR LIFE SUPPORT SYSTEMS, MEDICAL\ + \ OR HEALTH CARE APPLICATIONS, OR OTHER APPLICATIONS WHERE THE FAILURE OF THE SOFTWARE OR\ + \ ERRORS IN DATA PROCESSING COULD LEAD TO DEATH, PERSONAL INJURY OR SEVERE PHYSICAL OR ENVIRONMENTAL\ + \ DAMAGE. YOU AGREE THAT YOU ARE SOLELY RESPONSIBLE FOR THE ACCURACY AND ADEQUACY OF THE\ + \ SOFTWARE AND ANY DATA GENERATED OR PROCESSED BY THE SOFTWARE FOR YOUR INTENDED USE AND\ + \ YOU WILL DEFEND, INDEMNIFY AND HOLD ALTOVA, ITS OFFICERS AND EMPLOYEES HARMLESS FROM ANY\ + \ THIRD PARTY CLAIMS, DEMANDS, OR SUITS THAT ARE BASED UPON THE ACCURACY AND ADEQUACY OF\ + \ THE SOFTWARE IN YOUR USE OR ANY DATA GENERATED BY THE SOFTWARE IN YOUR USE.\n\n2.\tINTELLECTUAL\ + \ PROPERTY RIGHTS\n\nYou acknowledge that the Software and any copies that you are authorized\ + \ by Altova to make are the intellectual property of and are owned by Altova and its suppliers.\ + \ The structure, organization and code of the Software are the valuable trade secrets and\ + \ confidential information of Altova and its suppliers. The Software is protected by copyright,\ + \ including without limitation by United States Copyright Law, international treaty provisions\ + \ and applicable laws in the country in which it is being used. You acknowledge that Altova\ + \ retains the ownership of all patents, copyrights, trade secrets, trademarks and other\ + \ intellectual property rights pertaining to the Software, and that Altova’s ownership rights\ + \ extend to any images, photographs, animations, videos, audio, music, text and \"applets\"\ + \ incorporated into the Software and all accompanying printed materials. You will take no\ + \ actions which adversely affect Altova’s intellectual property rights in the Software.\ + \ Trademarks shall be used in accordance with accepted trademark practice, including identification\ + \ of trademark owners’ names. Trademarks may only be used to identify printed output produced\ + \ by the Software, and such use of any trademark does not give you any right of ownership\ + \ in that trademark. Altova®, XMLSpy®, Authentic®, StyleVision®, MapForce®, UModel®, DatabaseSpy®,\ + \ DiffDog®, SchemaAgent®, SemanticWorks®, MissionKit®, Markup Your Mind®, Nanonull™, RaptorXML™,\ + \ RaptorXML Server™, RaptorXML +XBRL Server™, Powered By RaptorXML™, FlowForce Server™,\ + \ and StyleVision Server™ are trademarks of Altova GmbH (pending or registered in numerous\ + \ countries). Unicode and the Unicode Logo are trademarks of Unicode, Inc. Windows, Windows\ + \ XP, Windows Vista, Windows 7, and Windows 8 are trademarks of Microsoft. W3C, CSS, DOM,\ + \ MathML, RDF, XHTML, XML and XSL are trademarks (registered in numerous countries) of the\ + \ World Wide Web Consortium (W3C); marks of the W3C are registered and held by its host\ + \ institutions, MIT, INRIA and Keio. Except as expressly stated above, this Agreement does\ + \ not grant you any intellectual property rights in the Software. Notifications of claimed\ + \ copyright infringement should be sent to Altova’s copyright agent as further provided\ + \ on the Altova Web Site.\n\n3.\tLIMITED TRANSFER RIGHTS\n\nNotwithstanding the foregoing,\ + \ you may transfer all your rights to use the Software to another person or legal entity\ + \ provided that: (a) you also transfer this Agreement, the Software and all other software\ + \ or hardware bundled or pre-installed with the Software, including all copies, updates\ + \ and prior versions, and all copies of font software converted into other formats, to such\ + \ person or entity; (b) you retain no copies, including backups and copies stored on a computer;\ + \ (c) the receiving party secures a personalized key code from Altova; and (d) the receiving\ + \ party accepts the terms and conditions of this Agreement and any other terms and conditions\ + \ upon which you legally purchased a license to the Software. Notwithstanding the foregoing,\ + \ you may not transfer education, pre-release, or not-for-resale copies of the Software.\n\ + \n4.\tPRE-RELEASE AND EVALUATION PRODUCT ADDITIONAL TERMS\n\nIf the product you have received\ + \ with this license is pre-commercial release or beta Software (\"Pre-release Software\"\ + ), then this Section applies. In addition, this section applies to all evaluation and/or\ + \ demonstration copies of Altova software (\"Evaluation Software\") and continues in effect\ + \ until you purchase a license. To the extent that any provision in this section is in conflict\ + \ with any other term or condition in this Agreement, this section shall supersede such\ + \ other term(s) and condition(s) with respect to the Pre-release and/or Evaluation Software,\ + \ but only to the extent necessary to resolve the conflict. You acknowledge that the Pre-release\ + \ Software is a pre-release version, does not represent final product from Altova, and may\ + \ contain bugs, errors and other problems that could cause system or other failures and\ + \ data loss. CONSEQUENTLY, THE PRE-RELEASE AND/OR EVALUATION SOFTWARE IS PROVIDED TO YOU\ + \ \"AS-IS\" WITH NO WARRANTIES FOR USE OR PERFORMANCE, AND ALTOVA DISCLAIMS ANY WARRANTY\ + \ OR LIABILITY OBLIGATIONS TO YOU OF ANY KIND, WHETHER EXPRESS OR IMPLIED. WHERE LEGALLY\ + \ LIABILITY CANNOT BE EXCLUDED FOR PRE-RELEASE AND/OR EVALUATION SOFTWARE, BUT IT MAY BE\ + \ LIMITED, ALTOVA’S LIABILITY AND THAT OF ITS SUPPLIERS SHALL BE LIMITED TO THE SUM OF FIFTY\ + \ DOLLARS (USD $50) IN TOTAL. If the Evaluation Software has a time-out feature, then the\ + \ software will cease operation after the conclusion of the designated evaluation period.\ + \ Upon such expiration date, your license will expire unless otherwise extended. Your license\ + \ to use any output created with the Evaluation Software that contains generated program\ + \ code (including Unrestricted Source Code) such as Java, C++, C, VB.NET or XSLT and associated\ + \ project files and build scripts as well as generated XML, XML Schemas, documentation,\ + \ UML diagrams, and database structures terminates automatically upon the expiration of\ + \ the designated evaluation period but the license to use such output is revived upon your\ + \ purchase of a license for the Software that you evaluated and used to create such output.\ + \ Access to any files created with the Evaluation Software is entirely at your risk. You\ + \ acknowledge that Altova has not promised or guaranteed to you that Pre-release Software\ + \ will be announced or made available to anyone in the future, that Altova has no express\ + \ or implied obligation to you to announce or introduce the Pre-release Software, and that\ + \ Altova may not introduce a product similar to or compatible with the Pre-release Software.\ + \ Accordingly, you acknowledge that any research or development that you perform regarding\ + \ the Pre-release Software or any product associated with the Pre-release Software is done\ + \ entirely at your own risk. During the term of this Agreement, if requested by Altova,\ + \ you will provide feedback to Altova regarding testing and use of the Pre-release Software,\ + \ including error or bug reports. If you have been provided the Pre-release Software pursuant\ + \ to a separate written agreement, your use of the Software is governed by such agreement.\ + \ You may not sublicense, lease, loan, rent, distribute or otherwise transfer the Pre-release\ + \ Software. Upon receipt of a later unreleased version of the Pre-release Software or release\ + \ by Altova of a publicly released commercial version of the Software, whether as a stand-alone\ + \ product or as part of a larger product, you agree to return or destroy all earlier Pre-release\ + \ Software received from Altova and to abide by the terms of the license agreement for any\ + \ such later versions of the Pre-release Software.\n\n5.\tLIMITED WARRANTY AND LIMITATION\ + \ OF LIABILITY\n\n(a)\tLimited Warranty and Customer Remedies. Altova warrants to the person\ + \ or entity that first purchases a license for use of the Software pursuant to the terms\ + \ of this Agreement that (i) the Software will perform substantially in accordance with\ + \ any accompanying Documentation for a period of ninety (90) days from the date of receipt,\ + \ and (ii) any support services provided by Altova shall be substantially as described in\ + \ Section 6 of this agreement. Some states and jurisdictions do not allow limitations on\ + \ duration of an implied warranty, so the above limitation may not apply to you. To the\ + \ extent allowed by applicable law, implied warranties on the Software, if any, are limited\ + \ to ninety (90) days. Altova’s and its suppliers’ entire liability and your exclusive remedy\ + \ shall be, at Altova’s option, either (i) return of the price paid, if any, or (ii) repair\ + \ or replacement of the Software that does not meet Altova’s Limited Warranty and which\ + \ is returned to Altova with a copy of your receipt. This Limited Warranty is void if failure\ + \ of the Software has resulted from accident, abuse, misapplication, abnormal use, Trojan\ + \ horse, virus, or any other malicious external code. Any replacement Software will be warranted\ + \ for the remainder of the original warranty period or thirty (30) days, whichever is longer.\ + \ This limited warranty does not apply to Evaluation and/or Pre-release Software.\n\n(b)\t\ + No Other Warranties and Disclaimer. THE FOREGOING LIMITED WARRANTY AND REMEDIES STATE THE\ + \ SOLE AND EXCLUSIVE REMEDIES FOR ALTOVA OR ITS SUPPLIER’S BREACH OF WARRANTY. ALTOVA AND\ + \ ITS SUPPLIERS DO NOT AND CANNOT WARRANT THE PERFORMANCE OR RESULTS YOU MAY OBTAIN BY USING\ + \ THE SOFTWARE. EXCEPT FOR THE FOREGOING LIMITED WARRANTY, AND FOR ANY WARRANTY, CONDITION,\ + \ REPRESENTATION OR TERM TO THE EXTENT WHICH THE SAME CANNOT OR MAY NOT BE EXCLUDED OR LIMITED\ + \ BY LAW APPLICABLE TO YOU IN YOUR JURISDICTION, ALTOVA AND ITS SUPPLIERS MAKE NO WARRANTIES,\ + \ CONDITIONS, REPRESENTATIONS OR TERMS, EXPRESS OR IMPLIED, WHETHER BY STATUTE, COMMON LAW,\ + \ CUSTOM, USAGE OR OTHERWISE AS TO ANY OTHER MATTERS. TO THE MAXIMUM EXTENT PERMITTED BY\ + \ APPLICABLE LAW, ALTOVA AND ITS SUPPLIERS DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS,\ + \ EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR PURPOSE, SATISFACTORY QUALITY, INFORMATIONAL CONTENT OR ACCURACY,\ + \ QUIET ENJOYMENT, TITLE AND NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE, AND THE PROVISION\ + \ OF OR FAILURE TO PROVIDE SUPPORT SERVICES. THIS LIMITED WARRANTY GIVES YOU SPECIFIC LEGAL\ + \ RIGHTS. YOU MAY HAVE OTHERS, WHICH VARY FROM STATE/JURISDICTION TO STATE/JURISDICTION.\n\ + \n(c)\tLimitation of Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW EVEN IF\ + \ A REMEDY FAILS ITS ESSENTIAL PURPOSE, IN NO EVENT SHALL ALTOVA OR ITS SUPPLIERS BE LIABLE\ + \ FOR ANY SPECIAL, INCIDENTAL, DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING,\ + \ WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS\ + \ OF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR INABILITY\ + \ TO USE THE SOFTWARE OR THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES, EVEN IF\ + \ ALTOVA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ANY CASE, ALTOVA’S ENTIRE\ + \ LIABILITY UNDER ANY PROVISION OF THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT ACTUALLY\ + \ PAID BY YOU FOR THE SOFTWARE PRODUCT. Because some states and jurisdictions do not allow\ + \ the exclusion or limitation of liability, the above limitation may not apply to you. In\ + \ such states and jurisdictions, Altova’s liability shall be limited to the greatest extent\ + \ permitted by law and the limitations or exclusions of warranties and liability contained\ + \ herein do not prejudice applicable statutory consumer rights of person acquiring goods\ + \ otherwise than in the course of business. The disclaimer and limited liability above are\ + \ fundamental to this Agreement between Altova and you.\n\n(d)\tInfringement Claims. Altova\ + \ will indemnify and hold you harmless and will defend or settle any claim, suit or proceeding\ + \ brought against you by a third party that is based upon a claim that the content contained\ + \ in the Software infringes a copyright or violates an intellectual or proprietary right\ + \ protected by United States or European Union law (\"Claim\"), but only to the extent the\ + \ Claim arises directly out of the use of the Software and subject to the limitations set\ + \ forth in Section 5 of this Agreement except as otherwise expressly provided. You must\ + \ notify Altova in writing of any Claim within ten (10) business days after you first receive\ + \ notice of the Claim, and you shall provide to Altova at no cost such assistance and cooperation\ + \ as Altova may reasonably request from time to time in connection with the defense of the\ + \ Claim. Altova shall have sole control over any Claim (including, without limitation, the\ + \ selection of counsel and the right to settle on your behalf on any terms Altova deems\ + \ desirable in the sole exercise of its discretion). You may, at your sole cost, retain\ + \ separate counsel and participate in the defense or settlement negotiations. Altova shall\ + \ pay actual damages, costs, and attorney fees awarded against you (or payable by you pursuant\ + \ to a settlement agreement) in connection with a Claim to the extent such direct damages\ + \ and costs are not reimbursed to you by insurance or a third party, to an aggregate maximum\ + \ equal to the purchase price of the Software. If the Software or its use becomes the subject\ + \ of a Claim or its use is enjoined, or if in the opinion of Altova’s legal counsel the\ + \ Software is likely to become the subject of a Claim, Altova shall attempt to resolve the\ + \ Claim by using commercially reasonable efforts to modify the Software or obtain a license\ + \ to continue using the Software. If in the opinion of Altova’s legal counsel the Claim,\ + \ the injunction or potential Claim cannot be resolved through reasonable modification or\ + \ licensing, Altova, at its own election, may terminate this Agreement without penalty,\ + \ and will refund to you on a pro rata basis any fees paid in advance by you to Altova.\ + \ THE FOREGOING CONSTITUTES ALTOVA’S SOLE AND EXCLUSIVE LIABILITY FOR INTELLECTUAL PROPERTY\ + \ INFRINGEMENT. This indemnity does not apply to situations where the alleged infringement,\ + \ whether patent or otherwise, is the result of a combination of the Altova software and\ + \ additional elements supplied by you.\n\n6.\tSUPPORT AND MAINTENANCE\n\nAltova offers multiple\ + \ optional \"Support & Maintenance Package(s)\" (\"SMP\") for the version of Software product\ + \ edition that you have licensed, which you may elect to purchase in addition to your Software\ + \ license. The Support Period, hereinafter defined, covered by such SMP shall be delineated\ + \ at such time as you elect to purchase a SMP. Your rights with respect to support and maintenance\ + \ as well as your upgrade eligibility depend on your decision to purchase SMP and the level\ + \ of SMP that you have purchased:\n\n(a)\tIf you have not purchased SMP, you will receive\ + \ the Software AS IS and will not receive any maintenance releases or updates. However,\ + \ Altova, at its option and in its sole discretion on a case by case basis, may decide to\ + \ offer maintenance releases to you as a courtesy, but these maintenance releases will not\ + \ include any new features in excess of the feature set at the time of your purchase of\ + \ the Software. In addition, Altova will provide free technical support to you for thirty\ + \ (30) days after the date of your purchase (the \"Support Period\" for the purposes of\ + \ this paragraph 6(a), and Altova, in its sole discretion on a case by case basis, may also\ + \ provide free courtesy technical support during your thirty (30) day evaluation period.\ + \ Technical support is provided via a Web-based support form only, and there is no guaranteed\ + \ response time.\n\n(b)\tIf you have purchased SMP, then solely for the duration of its\ + \ delineated Support Period, you are eligible to receive the version of the Software edition\ + \ that you have licensed and all maintenance releases and updates for that edition that\ + \ are released during your Support Period. For the duration of your SMP’s Support Period,\ + \ you will also be eligible to receive upgrades to the comparable edition of the next version\ + \ of the Software that succeeds the Software edition that you have licensed for applicable\ + \ upgrades released during your Support Period. The specific upgrade edition that you are\ + \ eligible to receive based on your Support Period is further detailed in the SMP that you\ + \ have purchased. Software that is introduced as separate product is not included in SMP.\ + \ Maintenance releases, updates and upgrades may or may not include additional features.\ + \ In addition, Altova will provide Priority Technical Support to you for the duration of\ + \ the Support Period. Priority Technical Support is provided via a Web-based support form\ + \ only and Altova will make commercially reasonable efforts to respond via e-mail to all\ + \ requests within forty-eight (48) hours during Altova’s business hours (MO-FR, 8am UTC\ + \ – 10pm UTC, Austrian and US holidays excluded) and to make reasonable efforts to provide\ + \ work-arounds to errors reported in the Software.\n\nDuring the Support Period you may\ + \ also report any Software problem or error to Altova. If Altova determines that a reported\ + \ reproducible material error in the Software exists and significantly impairs the usability\ + \ and utility of the Software, Altova agrees to use reasonable commercial efforts to correct\ + \ or provide a usable work-around solution in an upcoming maintenance release or update,\ + \ which is made available at certain times at Altova’s sole discretion.\n\nIf Altova, in\ + \ its discretion, requests written verification of an error or malfunction discovered by\ + \ you or requests supporting example files that exhibit the Software problem, you shall\ + \ promptly provide such verification or files, by email, telecopy, or overnight mail, setting\ + \ forth in reasonable detail the respects in which the Software fails to perform. You shall\ + \ use reasonable efforts to cooperate in diagnosis or study of errors. Altova may include\ + \ error corrections in maintenance releases, updates, or new major releases of the Software.\ + \ Altova is not obligated to fix errors that are immaterial. Immaterial errors are those\ + \ that do not significantly impact use of the Software as determined by Altova in its sole\ + \ discretion. Whether or not you have purchased the Support & Maintenance Package, technical\ + \ support only covers issues or questions resulting directly out of the operation of the\ + \ Software and Altova will not provide you with generic consultation, assistance, or advice\ + \ under any circumstances.\n\nUpdating Software may require the updating of software not\ + \ covered by this Agreement before installation. Updates of the operating system and application\ + \ software not specifically covered by this Agreement are your responsibility and will not\ + \ be provided by Altova under this Agreement. Altova’s obligations under this Section 6\ + \ are contingent upon your proper use of the Software and your compliance with the terms\ + \ and conditions of this Agreement at all times. Altova shall be under no obligation to\ + \ provide the above technical support if, in Altova’s opinion, the Software has failed due\ + \ to the following conditions: (i) damage caused by the relocation of the Software to another\ + \ location or CPU; (ii) alterations, modifications or attempts to change the Software without\ + \ Altova’s written approval; (iii) causes external to the Software, such as natural disasters,\ + \ the failure or fluctuation of electrical power, or computer equipment failure; (iv) your\ + \ failure to maintain the Software at Altova’s specified release level; or (v) use of the\ + \ Software with other software without Altova’s prior written approval. It will be your\ + \ sole responsibility to: (i) comply with all Altova-specified operating and troubleshooting\ + \ procedures and then notify Altova immediately of Software malfunction and provide Altova\ + \ with complete information thereof; (ii) provide for the security of your confidential\ + \ information; (iii) establish and maintain backup systems and procedures necessary to reconstruct\ + \ lost or altered files, data or programs.\n\n7.\tSOFTWARE ACTIVATION, UPDATES AND LICENSE\ + \ METERING\n\n(a) License Metering. The Software includes a built-in license metering module\ + \ that is designed to assist you with monitoring license compliance in small local networks.\ + \ The metering module attempts to communicate with other machines on your local area network.\ + \ You permit Altova to use your internal network for license monitoring for this purpose.\ + \ This license metering module may be used to assist with your license compliance but should\ + \ not be the sole method. Should your firewall settings block said communications, you must\ + \ deploy an accurate means of monitoring usage by the end user and preventing users from\ + \ using the Software more than the Permitted Number.\n\n(b) License Compliance Monitoring.\ + \ You are required to utilize a process or tool to ensure that the Permitted Number is not\ + \ exceeded. Without prejudice or waiver of any potential violations of the Agreement, Altova\ + \ may provide you with additional compliance tools should you be unable to accurately account\ + \ for license usage within your organization. If provided with such a tool by Altova, you\ + \ (a) are required to use it in order to comply with the terms of this Agreement and (b)\ + \ permit Altova to use your internal network for license monitoring and metering and to\ + \ generate compliance reports that are communicated to Altova from time to time.\n\n(c)\t\ + Software Activation. The Software may use your internal network and Internet connection\ + \ for the purpose of transmitting license-related data at the time of installation, registration,\ + \ use, or update to an Altova Master License Server and validating the authenticity of the\ + \ license-related data in order to protect Altova against unlicensed or illegal use of the\ + \ Software and to improve customer service. Activation is based on the exchange of license\ + \ related data between your computer and the Altova Master License Server. You agree that\ + \ Altova may use these measures and you agree to follow any applicable requirements. You\ + \ further agree that use of license key codes that are not or were not generated by Altova\ + \ and lawfully obtained from Altova, or an authorized reseller as part of an effort to activate\ + \ or use the Software violates Altova’s intellectual property rights as well as the terms\ + \ of this Agreement. You agree that efforts to circumvent or disable Altova’s copyright\ + \ protection mechanisms, the license management mechanism, or the Altova Master License\ + \ Server violate Altova’s intellectual property rights as well as the terms of this Agreement.\ + \ Altova expressly reserves the rights to seek all available legal and equitable remedies\ + \ to prevent such actions and to recover lost profits, damages and costs.\n\n(d)\tLiveUpdate.\t\ + Altova provides a new LiveUpdate notification service to you, which is free of charge. Altova\ + \ may use your internal network and Internet connection for the purpose of transmitting\ + \ license-related data to an Altova-operated LiveUpdate server to validate your license\ + \ at appropriate intervals and determine if there is any update available for you.\n\n(e)\t\ + Use of Data. The terms and conditions of the Privacy Policy are set out in full at http://www.altova.com/privacy\ + \ and are incorporated by reference into this Agreement. By your acceptance of the terms\ + \ of this Agreement and/or use of the Software, you authorize the collection, use and disclosure\ + \ of information collected by Altova for the purposes provided for in this Agreement and/or\ + \ the Privacy Policy. Altova has the right in its sole discretion to amend this provision\ + \ of the Agreement and/or Privacy Policy at any time. You are encouraged to review the terms\ + \ of the Privacy Policy as posted on the Altova Web site from time to time.\n\n(f)\tAudit\ + \ Rights. You agree that Altova may audit your use of the Software for compliance with the\ + \ terms of this Agreement at any time, upon reasonable notice. In the event that such audit\ + \ reveals any use of the Software by you other than in full compliance with the terms of\ + \ this Agreement, you shall reimburse Altova for all reasonable expenses related to such\ + \ audit in addition to any other liabilities you may incur as a result of such non-compliance.\n\ + \n(g)\tNotice to European Users. Please note that the information as described in paragraph\ + \ 7(d) above may be transferred outside of the European Economic Area, for purposes of processing,\ + \ analysis, and review, by Altova, Inc., a company located in Beverly, Massachusetts, U.S.A.,\ + \ or its subsidiaries or Altova’s subsidiaries or divisions, or authorized partners, located\ + \ worldwide. You are advised that the United States uses a sectoral model of privacy protection\ + \ that relies on a mix of legislation, governmental regulation, and self-regulation. You\ + \ are further advised that the Council of the European Union has found that this model does\ + \ not provide \"adequate\" privacy protections as contemplated by Article 25 of the European\ + \ Union's Data Directive. (Directive 95/46/EC, 1995 O.J. (L 281) 31). Article 26 of the\ + \ European Union's Data Directive allows for transfer of personal data from the European\ + \ Union to a third country if the individual has unambiguously given his consent to the\ + \ transfer of personal information, regardless of the third country's level of protection.\ + \ By agreeing to this Agreement, you consent to the transfer of all such information to\ + \ the United States and the processing of that information as described in this Agreement\ + \ and the Privacy Policy.\n\n8.\tTERM AND TERMINATION\n\nThis Agreement may be terminated\ + \ (a) by your giving Altova written notice of termination; (b) by Altova, at its option,\ + \ giving you written notice of termination if you commit a breach of this Agreement and\ + \ fail to cure such breach within ten (10) days after notice from Altova; or (c) at the\ + \ request of an authorized Altova reseller in the event that you fail to make your license\ + \ payment or other monies due and payable. In addition the Agreement governing your use\ + \ of a previous version of the Software that you have upgraded or updated of the Software\ + \ is terminated upon your acceptance of the terms and conditions of the Agreement accompanying\ + \ such upgrade or update. Upon any termination of the Agreement, you must cease all use\ + \ of the Software that this Agreement governs, destroy all copies then in your possession\ + \ or control and take such other actions as Altova may reasonably request to ensure that\ + \ no copies of the Software remain in your possession or control. The terms and conditions\ + \ set forth in Sections 1(h), 1(i), 1(j), 1(k), 1(l), 2, 5, 7, 9, 10, 11, and 11 survive\ + \ termination as applicable.\n\n9.\tRESTRICTED RIGHTS NOTICE AND EXPORT RESTRICTIONS\n\n\ + The Software was developed entirely at private expense and is commercial computer software\ + \ provided with RESTRICTED RIGHTS. Use, duplication or disclosure by the U.S. Government\ + \ or a U.S. Government contractor or subcontractor is subject to the restrictions set forth\ + \ in this Agreement and as provided in FAR 12.211 and 12.212 (48 C.F.R. §12.211 and 12.212)\ + \ or DFARS 227. 7202 (48 C.F.R. §227-7202) as applicable. Consistent with the above as applicable,\ + \ Commercial Computer Software and Commercial Computer Documentation licensed to U.S. government\ + \ end users only as commercial items and only with those rights as are granted to all other\ + \ end users under the terms and conditions set forth in this Agreement. Manufacturer is\ + \ Altova GmbH, Rudolfsplatz, 13a/9, A-1010 Vienna, Austria/EU. You may not use or otherwise\ + \ export or re-export the Software or Documentation except as authorized by United States\ + \ law and the laws of the jurisdiction in which the Software was obtained. In particular,\ + \ but without limitation, the Software or Documentation may not be exported or re-exported\ + \ (i) into (or to a national or resident of) any U.S. embargoed country or (ii) to anyone\ + \ on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Department\ + \ of Commerce's Table of Denial Orders. By using the Software, you represent and warrant\ + \ that you are not located in, under control of, or a national or resident of any such country\ + \ or on any such list.\n\n10. US GOVERNMENT ENTITIES\n\nNotwithstanding the foregoing, if\ + \ you are an agency, instrumentality or department of the federal government of the United\ + \ States, then this Agreement shall be governed in accordance with the laws of the United\ + \ States of America, and in the absence of applicable federal law, the laws of the Commonwealth\ + \ of Massachusetts will apply. Further, and notwithstanding anything to the contrary in\ + \ this Agreement (including but not limited to Section 5 (Indemnification)), all claims,\ + \ demands, complaints and disputes will be subject to the Contract Disputes Act (41 U.S.C.\ + \ §§7101 et seq.), the Tucker Act (28 U.S.C. §1346(a) and §1491), or the Federal Tort Claims\ + \ Act (28 U.S.C. §§1346(b), 2401-2402, 2671-2672, 2674-2680), FAR 1.601(a) and 43.102 (Contract\ + \ Modifications); FAR 12.302(b), as applicable, or other applicable governing authority.\ + \ For the avoidance of doubt, if you are an agency, instrumentality, or department of the\ + \ federal, state or local government of the U.S. or a U.S. public and accredited educational\ + \ institution, then your indemnification obligations are only applicable to the extent they\ + \ would not cause you to violate any applicable law (e.g., the Anti-Deficiency Act), and\ + \ you have any legally required authorization or authorizing statute.\n\n11. THIRD PARTY\ + \ SOFTWARE\n\nThe Software may contain third party software which requires notices and/or\ + \ additional terms and conditions. Such required third party software notices and/or additional\ + \ terms and conditions are located at our Website at http://www.altova.com/legal_3rdparty.html\ + \ and are made a part of and incorporated by reference into this Agreement. By accepting\ + \ this Agreement, you are also accepting the additional terms and conditions, if any, set\ + \ forth therein.\n\n12. JURISDICTION, CHOICE OF LAW, AND VENUE\n\nIf you are located in\ + \ the European Union and are using the Software in the European Union and not in the United\ + \ States, then this Agreement will be governed by and construed in accordance with the laws\ + \ of the Republic of Austria (excluding its conflict of laws principles and the U.N. Convention\ + \ on Contracts for the International Sale of Goods) and you expressly agree that exclusive\ + \ jurisdiction for any claim or dispute with Altova or relating in any way to your use of\ + \ the Software resides in the Handelsgericht, Wien (Commercial Court, Vienna) and you further\ + \ agree and expressly consent to the exercise of personal jurisdiction in the Handelsgericht,\ + \ Wien (Commercial Court, Vienna) in connection with any such dispute or claim.\n\nIf you\ + \ are located in the United States or are using the Software in the United States then this\ + \ Agreement will be governed by and construed in accordance with the laws of the Commonwealth\ + \ of Massachusetts, USA (excluding its conflict of laws principles and the U.N. Convention\ + \ on Contracts for the International Sale of Goods) and you expressly agree that exclusive\ + \ jurisdiction for any claim or dispute with Altova or relating in any way to your use of\ + \ the Software resides in the federal or state courts of the Commonwealth of Massachusetts\ + \ and you further agree and expressly consent to the exercise of personal jurisdiction in\ + \ the federal or state courts of the Commonwealth of Massachusetts in connection with any\ + \ such dispute or claim.\n\nIf you are located outside of the European Union or the United\ + \ States and are not using the Software in the United States, then this Agreement will be\ + \ governed by and construed in accordance with the laws of the Republic of Austria (excluding\ + \ its conflict of laws principles and the U.N. Convention on Contracts for the International\ + \ Sale of Goods) and you expressly agree that exclusive jurisdiction for any claim or dispute\ + \ with Altova or relating in any way to your use of the Software resides in the Handelsgericht,\ + \ Wien (Commercial Court, Vienna) and you further agree and expressly consent to the exercise\ + \ of personal jurisdiction in the Handelsgericht Wien (Commercial Court, Vienna) in connection\ + \ with any such dispute or claim. This Agreement will not be governed by the conflict of\ + \ law rules of any jurisdiction or the United Nations Convention on Contracts for the International\ + \ Sale of Goods, the application of which is expressly excluded.\n\n13.\tTRANSLATIONS\n\n\ + Where Altova has provided you with a foreign translation of the English language version,\ + \ you agree that the translation is provided for your convenience only and that the English\ + \ language version will control. If there is any contradiction between the English language\ + \ version and a translation, then the English language version shall take precedence.\n\n\ + 14.\tGENERAL PROVISIONS\n\nThis Agreement contains the entire agreement and understanding\ + \ of the parties with respect to the subject matter hereof, and supersedes all prior written\ + \ and oral understandings of the parties with respect to the subject matter hereof. Any\ + \ notice or other communication given under this Agreement shall be in writing and shall\ + \ have been properly given by either of us to the other if sent by certified or registered\ + \ mail, return receipt requested, or by overnight courier to the address shown on Altova’s\ + \ Web site for Altova and the address shown in Altova’s records for you, or such other address\ + \ as the parties may designate by notice given in the manner set forth above. This Agreement\ + \ will bind and inure to the benefit of the parties and our respective heirs, personal and\ + \ legal representatives, affiliates, successors and permitted assigns. The failure of either\ + \ of us at any time to require performance of any provision hereof shall in no manner affect\ + \ such party’s right at a later time to enforce the same or any other term of this Agreement.\ + \ This Agreement may be amended only by a document in writing signed by both of us. In the\ + \ event of a breach or threatened breach of this Agreement by either party, the other shall\ + \ have all applicable equitable as well as legal remedies. Each party is duly authorized\ + \ and empowered to enter into and perform this Agreement. If, for any reason, any provision\ + \ of this Agreement is held invalid or otherwise unenforceable, such invalidity or unenforceability\ + \ shall not affect the remainder of this Agreement, and this Agreement shall continue in\ + \ full force and effect to the fullest extent allowed by law. The parties knowingly and\ + \ expressly consent to the foregoing terms and conditions." json: altova-eula.json - yml: altova-eula.yml + yaml: altova-eula.yml html: altova-eula.html - text: altova-eula.LICENSE + license: altova-eula.LICENSE - license_key: amazon-redshift-jdbc + category: Proprietary Free spdx_license_key: LicenseRef-scancode-amazon-redshift-jdbc other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Amazon Redshift JDBC Driver License Agreement\n\nTHIS IS AN AGREEMENT BETWEEN YOU AND\ + \ AMAZON WEB SERVICES, INC. (WITH ITS AFFILIATES, \"AWS\" OR \"WE\")\nTHAT GOVERNS YOUR\ + \ USE OF THE AMAZON REDSHIFT JDBC DRIVER SOFTWARE (TOGETHER WITH ANY UPDATES\nAND ENHANCEMENTS\ + \ TO IT, AND ACCOMPANYING DOCUMENTATION, THE \"SOFTWARE\") THAT WE MAKE\nAVAILABLE TO YOU\ + \ (THIS \"LICENSE AGREEMENT\"). IF YOU INSTALL OR USE THE SOFTWARE, YOU WILL BE BOUND\n\ + BY THIS LICENSE AGREEMENT. UNLESS OTHERWISE DEFINED IN THIS LICENSE AGREEMENT, CAPITALIZED\ + \ TERMS\nWILL HAVE THE SAME MEANING AS SET FORTH IN THE AWS CUSTOMER AGREEMENT POSTED AT\n\ + AWS.AMAZON.COM/AGREEMENT (THE \"AWS CUSTOMER AGREEMENT\").\n\n1. Use of the Software\nWe\ + \ hereby grant you a personal, limited, nonexclusive, non-transferable, non-sublicenseable\ + \ license to install and\nuse the Software on computer equipment owned or controlled by\ + \ you solely to access Amazon Redshift for your\ninternal business purposes. Some components\ + \ of the Software (whether developed by AWS or third parties) may\nbe governed by applicable\ + \ open source software licenses. Your license rights with respect to these individual\n\ + components are defined by the applicable open source software licenses, and nothing in this\ + \ License Agreement\nwill restrict, limit, or otherwise affect any rights or obligations\ + \ you may have, or conditions to which you may be\nsubject, under such open source software\ + \ licenses.\n\n2. Limitations\nYou may not, and you will not encourage, assist or authorize\ + \ any other person to, (a) incorporate any portion of\nthe Software into your own programs\ + \ or compile any portion of it in combination with your own programs; (b) sell,\nrent, lease,\ + \ lend, loan, distribute, act as a service bureau, publicly communicate, transform, or sub-license\ + \ the\nSoftware or otherwise assign any rights to the Software in whole or in part; (c)\ + \ modify, alter, tamper with, repair,\nor otherwise create derivative works of the Software,\ + \ (d) reverse engineer, disassemble, or decompile the\nSoftware or apply any other process\ + \ or procedure to derive the source code of any software included in the\nSoftware, or (e)\ + \ access or use the Software or the Service in a way intended to avoid incurring fees or\ + \ exceeding\nusage limits or quotas.\n\n3. Reservation of Rights\nYou may not use the Software\ + \ for any illegal purpose. The Software is the intellectual property of AWS or its\nlicensors.\ + \ The structure, organization, and code of the Software are valuable trade secrets and confidential\n\ + information of AWS. The Software is protected by law, including without limitation copyright\ + \ laws and\ninternational treaty provisions. Except for the rights explicitly granted to\ + \ you in this License Agreement, all right,\ntitle and interest in the Software are reserved\ + \ and retained by us and our licensors. You do not acquire any\nintellectual property or\ + \ other rights in the Software as a result of downloading the Software.\n\n4. Updates\n\ + In order to keep the Software up-to-date, we may offer automatic or manual updates at any\ + \ time. If we elect to\nprovide maintenance or support of any kind, we may terminate that\ + \ maintenance or support at any time without\nnotice to you.\n\n5. Termination\nYou may\ + \ terminate this License Agreement at any time by uninstalling or destroying all copies\ + \ of the Software that\nare in your possession or control. Your rights under this License\ + \ Agreement will immediately and automatically\nterminate if you do not comply with any\ + \ term or condition of this License Agreement or the AWS Customer\nAgreement, including\ + \ any failure to remit timely payment. In the case of termination, you must cease all use\ + \ and\ndestroy all copies of the Software. We may modify, suspend, discontinue, or terminate\ + \ your right to use part or all\nof the Software at any time without notice to you, and\ + \ in that event we may modify the Software to make it \ninoperable. AWS will not be liable\ + \ to you should it exercise those rights. Our failure to insist upon or enforce your\nstrict\ + \ compliance with this License Agreement will not constitute a waiver of any of our rights.\n\ + \n6. Disclaimer of Warranties and Limitation of Liability\n\na. YOU EXPRESSLY ACKNOWLEDGE\ + \ AND AGREE THAT INSTALLATION AND USE OF, AND ANY OTHER ACCESS TO,\nTHE APPLICATION IS AT\ + \ YOUR SOLE RISK. THE APPLICATION IS DELIVERED TO YOU \"AS IS\" WITH ALL FAULTS AND\nWITHOUT\ + \ WARRANTY OF ANY KIND, AND AWS, ITS LICENSORS AND DISTRIBUTORS, AND EACH OF THEIR\nRESPECTIVE\ + \ AFFILIATES AND SUPPLIERS (COLLECTIVELY, THE \"RELEASED PARTIES\") DISCLAIM ALL WARRANTIES,\n\ + EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF MERCHANTABILITY,\n\ + FITNESS FOR A PARTICULAR PURPOSE, ACCURACY, QUIET ENJOYMENT, AND NON-INFRINGEMENT. NO ORAL\ + \ OR\nWRITTEN INFORMATION OR ADVICE GIVEN BY A RELEASED PARTY OR AN AUTHORIZED REPRESENTATIVE\ + \ OF A\nRELEASED PARTY WILL CREATE A WARRANTY. THE LAWS OF CERTAIN JURISDICTIONS DO NOT\ + \ ALLOW THE\nDISCLAIMER OF IMPLIED WARRANTIES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF\ + \ THE ABOVE DISCLAIMERS,\nEXCLUSIONS, OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MAY HAVE\ + \ ADDITIONAL RIGHTS.\n\nb. TO THE EXTENT NOT PROHIBITED BY LAW, NO RELEASED PARTY WILL BE\ + \ LIABLE TO YOU FOR ANY INCIDENTAL\nOR CONSEQUENTIAL DAMAGES FOR BREACH OF ANY EXPRESS OR\ + \ IMPLIED WARRANTY, BREACH OF CONTRACT,\nNEGLIGENCE, STRICT LIABILITY, OR ANY OTHER LEGAL\ + \ THEORY RELATED TO THE APPLICATION, INCLUDING\nWITHOUT LIMITATION ANY DAMAGES ARISING OUT\ + \ OF LOSS OF PROFITS, REVENUE, DATA, OR USE OF THE\nAPPLICATION, EVEN IF A RELEASED PARTY\ + \ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ANY\nCASE, ANY RELEASED PARTY’S\ + \ AGGREGATE LIABILITY UNDER THIS LICENSE AGREEMENT WILL BE LIMITED TO\n$50.00. THE LAWS\ + \ OF CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR\nCONSEQUENTIAL\ + \ DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR\nLIMITATIONS\ + \ MAY NOT APPLY TO YOU, AND YOU MAY HAVE ADDITIONAL RIGHTS.\n\n7. Indemnification\nYou are\ + \ liable for and will defend, indemnify, and hold harmless the Released Parties and their\ + \ officers, directors,\nagents, and employees, from and against any liability, loss, damage,\ + \ cost, or expense (including reasonable\nattorneys’ fees) arising out of your use of the\ + \ Software, violation of the License Agreement, violation of applicable\nlaw, or violation\ + \ of any right of any person or entity, including without limitation intellectual property\ + \ rights.\n\n8. Source Code\nPlease see the Amazon Redshift technical documentation located\ + \ on the AWS website (aws.amazon.com) for\ninformation on how to retrieve a copy of the\ + \ source code for certain software components included with the\nSoftware.\n\n9. Export\ + \ Regulations\nYou will comply with all export and re-export restrictions and regulations\ + \ of the United States Department of\nCommerce and other United States and foreign agencies\ + \ and authorities that may apply to the Software, and not\nto transfer, or encourage, assist,\ + \ or authorize the transfer of the Software to a prohibited country or otherwise in\nviolation\ + \ of any applicable restrictions or regulations.\n\n10. U.S. Government End Users\nThe Software\ + \ is provided to the U.S. Government as \"commercial items,\" \"commercial computer software,\"\ + \n\"commercial computer software documentation,\" and \"technical data\" with the same rights\ + \ and restrictions\ngenerally applicable to the Software. If you are using the Software\ + \ on behalf of the U.S. Government and these\nterms fail to meet the U.S. Government’s needs\ + \ or are inconsistent in any respect with federal law, you will\nimmediately discontinue\ + \ your use of the Software. The terms \"commercial item\" \"commercial computer \nsoftware,\"\ + \ \"commercial computer software documentation,\" and \"technical data\" are defined in\ + \ the Federal\nAcquisition Regulation and the Defense Federal Acquisition Regulation Supplement.\n\ + \n11. Amendment\nWe may amend this License Agreement at our sole discretion by posting the\ + \ revised terms on the AWS website\n(aws.amazon.com) or within the Software. Your continued\ + \ use of the Software after any amendment's effective\ndate evidences your agreement to\ + \ be bound by it.\n\n12. Conflicts\nThe terms of this License Agreement govern the Software\ + \ and any updates or upgrades to the Software that we\nmay provide that replace or supplement\ + \ the original Software, unless the update or upgrade is accompanied by a\nseparate license,\ + \ in which case the terms of that license will govern." json: amazon-redshift-jdbc.json - yml: amazon-redshift-jdbc.yml + yaml: amazon-redshift-jdbc.yml html: amazon-redshift-jdbc.html - text: amazon-redshift-jdbc.LICENSE + license: amazon-redshift-jdbc.LICENSE - license_key: amazon-sl + category: Proprietary Free spdx_license_key: LicenseRef-.amazon.com.-AmznSL-1.0 other_spdx_license_keys: - LicenseRef-scancode-amazon-sl is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Amazon Software License + + This Amazon Software License ("License") governs your use, reproduction, and distribution of the accompanying software as specified below. + + 1. Definitions + + "Licensor" means any person or entity that distributes its Work. + + "Software" means the original work of authorship made available under this License. + + "Work" means the Software and any additions to or derivative works of the Software that are made available under this License. + + The terms "reproduce," "reproduction," "derivative works," and "distribution" have the meaning as provided under U.S. copyright law; provided, however, that 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. + + Works, including the Software, are "made available" under this License by including in or with the Work either (a) a copyright notice referencing the applicability of this License to the Work, or (b) a copy of this License. + + 2. License Grants + + 2.1 Copyright Grant. Subject to the terms and conditions of this License, each Licensor grants to you a perpetual, worldwide, non-exclusive, royalty-free, copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense and distribute its Work and any resulting derivative works in any form. + + 2.2 Patent Grant. Subject to the terms and conditions of this License, each Licensor grants to you a perpetual, worldwide, non-exclusive, royalty-free patent license to make, have made, use, sell, offer for sale, import, and otherwise transfer its Work, in whole or in part. The foregoing license applies only to the patent claims licensable by Licensor that would be infringed by Licensor’s Work (or portion thereof) individually and excluding any combinations with any other materials or technology. + + 3. Limitations + + 3.1 Redistribution. You may reproduce or distribute the Work only if (a) you do so under this License, (b) you include a complete copy of this License with your distribution, and (c) you retain without modification any copyright, patent, trademark, or attribution notices that are present in the Work. + + 3.2 Derivative Works. You may specify that additional or different terms apply to the use, reproduction, and distribution of your derivative works of the Work ("Your Terms") only if (a) Your Terms provide that the use limitation in Section 3.3 applies to your derivative works, and (b) you identify the specific derivative works that are subject to Your Terms. Notwithstanding Your Terms, this License (including the redistribution requirements in Section 3.1) will continue to apply to the Work itself. + + 3.3 Use Limitation. The Work and any derivative works thereof only may be used or intended for use with the web services, computing platforms or applications provided by Amazon.com, Inc. or its affiliates, including Amazon Web Services LLC. + + 3.4 Patent Claims. If you bring or threaten to bring a patent claim against any Licensor (including any claim, cross-claim or counterclaim in a lawsuit) to enforce any patents that you allege are infringed by any Work, then your rights under this License from such Licensor (including the grants in Sections 2.1 and 2.2) will terminate immediately. + + 3.5 Trademarks. This License does not grant any rights to use any Licensor’s or its affiliates’ names, logos, or trademarks, except as necessary to reproduce the notices described in this License. + + 3.6 Termination. If you violate any term of this License, then your rights under this License (including the grants in Sections 2.1 and 2.2) will terminate immediately. + + 4. Disclaimer of Warranty. + + THE WORK IS PROVIDED "AS IS" WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WARRANTIES OR CONDITIONS OF M ERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE OR NON-INFRINGEMENT. YOU BEAR THE RISK OF UNDERTAKING ANY ACTIVITIES UNDER THIS LICENSE. SOME STATES’ CONSUMER LAWS DO NOT ALLOW EXCLUSION OF AN IMPLIED WARRANTY, SO THIS DISCLAIMER MAY NOT APPLY TO YOU. + + 5. Limitation of Liability. + + EXCEPT AS PROHIBITED BY APPLICABLE LAW, IN NO EVENT AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE SHALL ANY LICENSOR BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATED TO THIS LICENSE, THE USE OR INABILITY TO USE THE WORK (INCLUDING BUT NOT LIMITED TO LOSS OF GOODWILL, BUSINESS INTERRUPTION, LOST PROFITS OR DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY OTHER COMM ERCIAL DAMAGES OR LOSSES), EVEN IF THE LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + Effective Date – April 18, 2008 © 2008 Amazon.com, Inc. or its affiliates. All rights reserved. json: amazon-sl.json - yml: amazon-sl.yml + yaml: amazon-sl.yml html: amazon-sl.html - text: amazon-sl.LICENSE + license: amazon-sl.LICENSE - license_key: amd-historical + category: Permissive spdx_license_key: LicenseRef-scancode-amd-historical other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This software is the property of Advanced Micro Devices, Inc (AMD) which + specifically grants the user the right to modify, use and distribute this + software provided this notice is not removed or altered. All other rights + are reserved by AMD. + + AMD MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO THIS + SOFTWARE. IN NO EVENT SHALL AMD BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL + DAMAGES IN CONNECTION WITH OR ARISING FROM THE FURNISHING, PERFORMANCE, OR + USE OF THIS SOFTWARE. json: amd-historical.json - yml: amd-historical.yml + yaml: amd-historical.yml html: amd-historical.html - text: amd-historical.LICENSE + license: amd-historical.LICENSE - license_key: amd-linux-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-amd-linux-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + REDISTRIBUTION: Permission is hereby granted, free of any license fees, + to any person obtaining a copy of this microcode (the "Software"), to + install, reproduce, copy and distribute copies, in binary form only, of + the Software and to permit persons to whom the Software is provided to + do the same, provided that the following conditions are met: + + No reverse engineering, decompilation, or disassembly of this Software + is permitted. + + Redistributions must reproduce the above copyright notice, this + permission notice, and the following disclaimers and notices in the + Software documentation and/or other materials provided with the + Software. + + DISCLAIMER: THE USE OF THE SOFTWARE IS AT YOUR SOLE RISK. THE SOFTWARE + IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND AND COPYRIGHT + HOLDER AND ITS LICENSORS EXPRESSLY DISCLAIM ALL WARRANTIES, EXPRESS AND + IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + COPYRIGHT HOLDER AND ITS LICENSORS DO NOT WARRANT THAT THE SOFTWARE WILL + MEET YOUR REQUIREMENTS, OR THAT THE OPERATION OF THE SOFTWARE WILL BE + UNINTERRUPTED OR ERROR-FREE. THE ENTIRE RISK ASSOCIATED WITH THE USE OF + THE SOFTWARE IS ASSUMED BY YOU. FURTHERMORE, COPYRIGHT HOLDER AND ITS + LICENSORS DO NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE + OR THE RESULTS OF THE USE OF THE SOFTWARE IN TERMS OF ITS CORRECTNESS, + ACCURACY, RELIABILITY, CURRENTNESS, OR OTHERWISE. + + DISCLAIMER: UNDER NO CIRCUMSTANCES INCLUDING NEGLIGENCE, SHALL COPYRIGHT + HOLDER AND ITS LICENSORS OR ITS DIRECTORS, OFFICERS, EMPLOYEES OR AGENTS + ("AUTHORIZED REPRESENTATIVES") BE LIABLE FOR ANY INCIDENTAL, INDIRECT, + SPECIAL OR CONSEQUENTIAL DAMAGES (INCLUDING DAMAGES FOR LOSS OF BUSINESS + PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, AND THE + LIKE) ARISING OUT OF THE USE, MISUSE OR INABILITY TO USE THE SOFTWARE, + BREACH OR DEFAULT, INCLUDING THOSE ARISING FROM INFRINGEMENT OR ALLEGED + INFRINGEMENT OF ANY PATENT, TRADEMARK, COPYRIGHT OR OTHER INTELLECTUAL + PROPERTY RIGHT EVEN IF COPYRIGHT HOLDER AND ITS AUTHORIZED + REPRESENTATIVES HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN + NO EVENT SHALL COPYRIGHT HOLDER OR ITS AUTHORIZED REPRESENTATIVES TOTAL + LIABILITY FOR ALL DAMAGES, LOSSES, AND CAUSES OF ACTION (WHETHER IN + CONTRACT, TORT (INCLUDING NEGLIGENCE) OR OTHERWISE) EXCEED THE AMOUNT OF + US$10. + + Notice: The Software is subject to United States export laws and + regulations. You agree to comply with all domestic and international + export laws and regulations that apply to the Software, including but + not limited to the Export Administration Regulations administered by the + U.S. Department of Commerce and International Traffic in Arm Regulations + administered by the U.S. Department of State. These laws include + restrictions on destinations, end users and end use. json: amd-linux-firmware.json - yml: amd-linux-firmware.yml + yaml: amd-linux-firmware.yml html: amd-linux-firmware.html - text: amd-linux-firmware.LICENSE + license: amd-linux-firmware.LICENSE - license_key: amd-linux-firmware-export + category: Proprietary Free spdx_license_key: LicenseRef-scancode-amd-linux-firmware-export other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Permission is hereby granted by Advanced Micro Devices, Inc. ("AMD"), + free of any license fees, to any person obtaining a copy of this + microcode in binary form (the "Software") ("You"), to install, + reproduce, copy and distribute copies of the Software and to permit + persons to whom the Software is provided to do the same, subject to + the following terms and conditions. Your use of any portion of the + Software shall constitute Your acceptance of the following terms and + conditions. If You do not agree to the following terms and conditions, + do not use, retain or redistribute any portion of the Software. + + If You redistribute this Software, You must reproduce the above + copyright notice and this license with the Software. + Without specific, prior, written permission from AMD, You may not + reference AMD or AMD products in the promotion of any product derived + from or incorporating this Software in any manner that implies that + AMD endorses or has certified such product derived from or + incorporating this Software. + + You may not reverse engineer, decompile, or disassemble this Software + or any portion thereof. + + THE SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY EXPRESS OR IMPLIED + WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO WARRANTIES OF + MERCHANTABILITY, NONINFRINGEMENT, TITLE, FITNESS FOR ANY PARTICULAR + PURPOSE, OR WARRANTIES ARISING FROM CONDUCT, COURSE OF DEALING, OR + USAGE OF TRADE. IN NO EVENT SHALL AMD OR ITS LICENSORS BE LIABLE FOR + ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR + LOSS OF PROFITS, BUSINESS INTERRUPTION, OR LOSS OF DATA OR + INFORMATION) ARISING OUT OF AMD'S NEGLIGENCE, GROSS NEGLIGENCE, THE + USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF AMD HAS BEEN ADVISED + OF THE POSSIBILITY OF SUCH DAMAGES. BECAUSE SOME JURISDICTIONS + PROHIBIT THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR + INCIDENTAL DAMAGES OR THE EXCLUSION OF IMPLIED WARRANTIES, THE ABOVE + LIMITATION MAY NOT APPLY TO YOU. + + Without limiting the foregoing, the Software may implement third party + technologies for which You must obtain licenses from parties other + than AMD. You agree that AMD has not obtained or conveyed to You, and + that You shall be responsible for obtaining the rights to use and/or + distribute the applicable underlying intellectual property rights + related to the third party technologies. These third party + technologies are not licensed hereunder. + + If You use the Software (in whole or in part), You shall adhere to all + applicable U.S., European, and other export laws, including but not + limited to the U.S. Export Administration Regulations ("EAR"), (15 + C.F.R. Sections 730 through 774), and E.U. Council Regulation (EC) No + 1334/2000 of 22 June 2000. Further, pursuant to Section 740.6 of the + EAR, You hereby certify that, except pursuant to a license granted by + the United States Department of Commerce Bureau of Industry and + Security or as otherwise permitted pursuant to a License Exception + under the U.S. Export Administration Regulations ("EAR"), You will not + (1) export, re-export or release to a national of a country in Country + Groups D:1, E:1 or E:2 any restricted technology, software, or source + code You receive hereunder, or (2) export to Country Groups D:1, E:1 + or E:2 the direct product of such technology or software, if such + foreign produced direct product is subject to national security + controls as identified on the Commerce Control List (currently found + in Supplement 1 to Part 774 of EAR). For the most current Country + Group listings, or for additional information about the EAR or Your + obligations under those regulations, please refer to the U.S. Bureau + of Industry and Security?s website at ttp://www.bis.doc.gov/. json: amd-linux-firmware-export.json - yml: amd-linux-firmware-export.yml + yaml: amd-linux-firmware-export.yml html: amd-linux-firmware-export.html - text: amd-linux-firmware-export.LICENSE + license: amd-linux-firmware-export.LICENSE - license_key: amdplpa + category: Permissive spdx_license_key: AMDPLPA other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in any form of this material and any product thereof including + software in source or binary forms, along with any related documentation, with or + without modification ("this material"), is permitted provided that the following + conditions are met: + + Redistributions of source code of any software must retain the above copyright + notice and all terms of this license as part of the code. + + Redistributions in binary form of any software must reproduce the above + copyright notice and all terms of this license in any related documentation + and/or other materials. + + Neither the names nor trademarks of Advanced Micro Devices, Inc. or any + copyright holders or contributors may be used to endorse or promote products + derived from this material without specific prior written permission. + + Notice about U.S. Government restricted rights: This material is provided with + "RESTRICTED RIGHTS." Use, duplication or disclosure by the U.S. Government is + subject to the full extent of restrictions set forth in FAR52.227 and + DFARS252.227 et seq., or any successor or applicable regulations. Use of this + material by the U.S. Government constitutes acknowledgment of the proprietary + rights of Advanced Micro Devices, Inc. and any copyright holders and + contributors. + + ANY BREACH OF ANY TERM OF THIS LICENSE SHALL RESULT IN THE IMMEDIATE REVOCATION + OF ALL RIGHTS TO REDISTRIBUTE, ACCESS OR USE THIS MATERIAL. + + THIS MATERIAL IS PROVIDED BY ADVANCED MICRO DEVICES, INC. AND ANY COPYRIGHT HOLDERS + AND CONTRIBUTORS "AS IS" IN ITS CURRENT CONDITION AND WITHOUT ANY REPRESENTATIONS, + GUARANTEE, OR WARRANTY OF ANY KIND OR IN ANY WAY RELATED TO SUPPORT, INDEMNITY, ERROR + FREE OR UNINTERRUPTED OPERATION, OR THAT IT IS FREE FROM DEFECTS OR VIRUSES. ALL + OBLIGATIONS ARE HEREBY DISCLAIMED - WHETHER EXPRESS, IMPLIED, OR STATUTORY - + INCLUDING, BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE, ACCURACY, COMPLETENESS, OPERABILITY, QUALITY OF + SERVICE, OR NON-INFRINGEMENT. IN NO EVENT SHALL ADVANCED MICRO DEVICES, INC. OR ANY + COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, PUNITIVE, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, REVENUE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED OR BASED ON ANY THEORY OF LIABILITY + ARISING IN ANY WAY RELATED TO THIS MATERIAL, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. THE ENTIRE AND AGGREGATE LIABILITY OF ADVANCED MICRO DEVICES, INC. AND + ANY COPYRIGHT HOLDERS AND CONTRIBUTORS SHALL NOT EXCEED TEN DOLLARS (US $10.00). + ANYONE REDISTRIBUTING OR ACCESSING OR USING THIS MATERIAL ACCEPTS THIS ALLOCATION OF + RISK AND AGREES TO RELEASE ADVANCED MICRO DEVICES, INC. AND ANY COPYRIGHT HOLDERS AND + CONTRIBUTORS FROM ANY AND ALL LIABILITIES, OBLIGATIONS, CLAIMS, OR DEMANDS IN EXCESS + OF TEN DOLLARS (US $10.00). THE FOREGOING ARE ESSENTIAL TERMS OF THIS LICENSE AND, IF + ANY OF THESE TERMS ARE CONSTRUED AS UNENFORCEABLE, FAIL IN ESSENTIAL PURPOSE, OR + BECOME VOID OR DETRIMENTAL TO ADVANCED MICRO DEVICES, INC. OR ANY COPYRIGHT HOLDERS + OR CONTRIBUTORS FOR ANY REASON, THEN ALL RIGHTS TO REDISTRIBUTE, ACCESS OR USE THIS + MATERIAL SHALL TERMINATE IMMEDIATELY. MOREOVER, THE FOREGOING SHALL SURVIVE ANY + EXPIRATION OR TERMINATION OF THIS LICENSE OR ANY AGREEMENT OR ACCESS OR USE RELATED + TO THIS MATERIAL. + + NOTICE IS HEREBY PROVIDED, AND BY REDISTRIBUTING OR ACCESSING OR USING THIS MATERIAL + SUCH NOTICE IS ACKNOWLEDGED, THAT THIS MATERIAL MAY BE SUBJECT TO RESTRICTIONS UNDER + THE LAWS AND REGULATIONS OF THE UNITED STATES OR OTHER COUNTRIES, WHICH INCLUDE BUT + ARE NOT LIMITED TO, U.S. EXPORT CONTROL LAWS SUCH AS THE EXPORT ADMINISTRATION + REGULATIONS AND NATIONAL SECURITY CONTROLS AS DEFINED THEREUNDER, AS WELL AS STATE + DEPARTMENT CONTROLS UNDER THE U.S. MUNITIONS LIST. THIS MATERIAL MAY NOT BE USED, + RELEASED, TRANSFERRED, IMPORTED, EXPORTED AND/OR RE- EXPORTED IN ANY MANNER + PROHIBITED UNDER ANY APPLICABLE LAWS, INCLUDING U.S. EXPORT CONTROL LAWS REGARDING + SPECIFICALLY DESIGNATED PERSONS, COUNTRIES AND NATIONALS OF COUNTRIES SUBJECT TO + NATIONAL SECURITY CONTROLS. MOREOVER, THE FOREGOING SHALL SURVIVE ANY EXPIRATION OR + TERMINATION OF ANY LICENSE OR AGREEMENT OR ACCESS OR USE RELATED TO THIS MATERIAL. + + This license forms the entire agreement regarding the subject matter hereof and + supersedes all proposals and prior discussions and writings between the parties with + respect thereto. This license does not affect any ownership, rights, title, or + interest in, or relating to, this material. No terms of this license can be modified + or waived, and no breach of this license can be excused, unless done so in a writing + signed by all affected parties. Each term of this license is separately enforceable. + If any term of this license is determined to be or becomes unenforceable or illegal, + such term shall be reformed to the minimum extent necessary in order for this license + to remain in effect in accordance with its terms as modified by such reformation. + This license shall be governed by and construed in accordance with the laws of the + State of Texas without regard to rules on conflicts of law of any state or + jurisdiction or the United Nations Convention on the International Sale of Goods. All + disputes arising out of this license shall be subject to the jurisdiction of the + federal and state courts in Austin, Texas, and all defenses are hereby waived + concerning personal jurisdiction and venue of these courts. json: amdplpa.json - yml: amdplpa.yml + yaml: amdplpa.yml html: amdplpa.html - text: amdplpa.LICENSE + license: amdplpa.LICENSE - license_key: aml + category: Permissive spdx_license_key: AML other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + IMPORTANT: This Apple software is supplied to you by Apple Computer, Inc. ("Apple") in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this Apple software constitutes acceptance of these terms. If you do not agree with these terms, please do not use, install, modify or redistribute this Apple software. + + In consideration of your agreement to abide by the following terms, and subject to these terms, Apple grants you a personal, non-exclusive license, under Apple's copyrights in this original Apple software (the "Apple Software"), to use, reproduce, modify and redistribute the Apple Software, with or without modifications, in source and/or binary forms; provided that if you redistribute the Apple Software in its entirety and without modifications, you must retain this notice and the following text and disclaimers in all such redistributions of the Apple Software. Neither the name, trademarks, service marks or logos of Apple Computer, Inc. may be used to endorse or promote products derived from the Apple Software without specific prior written permission from Apple. Except as expressly stated in this notice, no other rights or licenses, express or implied, are granted by Apple herein, including but not limited to any patent rights that may be infringed by your derivative works or by other works in which the Apple Software may be incorporated. + + The Apple Software is provided by Apple on an "AS IS" basis. APPLE MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS. + + IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. json: aml.json - yml: aml.yml + yaml: aml.yml html: aml.html - text: aml.LICENSE + license: aml.LICENSE - license_key: amlogic-linux-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-amlogic-linux-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Amlogic Co., Inc. grants permission to use and redistribute + aforementioned firmware files for the use with devices containing + Amlogic chipsets, but not as part of the Linux kernel or in any other + form which would require these files themselves to be covered by the + terms of the GNU General Public License or the GNU Lesser General + Public License. + + These firmware files are distributed in the hope that they will be + useful, but are provided WITHOUT ANY WARRANTY, INCLUDING BUT NOT + LIMITED TO IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A + PARTICULAR PURPOSE. json: amlogic-linux-firmware.json - yml: amlogic-linux-firmware.yml + yaml: amlogic-linux-firmware.yml html: amlogic-linux-firmware.html - text: amlogic-linux-firmware.LICENSE + license: amlogic-linux-firmware.LICENSE - license_key: ampas + category: Permissive spdx_license_key: AMPAS other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + A world-wide, royalty-free, non-exclusive right to distribute, copy, modify, create derivatives, and use, in source and binary forms, is hereby granted, subject to acceptance of this license. Performance of any of the aforementioned acts indicates acceptance to be bound by the following terms and conditions: + + * Redistributions of source code must retain the above copyright notice, this list of conditions and the Disclaimer of Warranty. + + * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the Disclaimer of Warranty in the documentation and/or other materials provided with the distribution. + + * Nothing in this license shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of A.M.P.A.S. or any contributors, except as expressly stated herein, and neither the name of A.M.P.A.S. nor of any other contributors to this software, may be used to endorse or promote products derived from this software without specific prior written permission of A.M.P.A.S. or contributor, as appropriate. + + This license shall be governed by the laws of the State of California, and subject to the jurisdiction of the courts therein. + + Disclaimer of Warranty: THIS SOFTWARE IS PROVIDED BY A.M.P.A.S. AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL A.M.P.A.S., ANY CONTRIBUTORS OR DISTRIBUTORS 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. json: ampas.json - yml: ampas.yml + yaml: ampas.yml html: ampas.html - text: ampas.LICENSE + license: ampas.LICENSE - license_key: ams-fonts + category: Permissive spdx_license_key: LicenseRef-scancode-ams-fonts other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The PostScript Type 1 implementation of the Computer Modern and AMSFonts produced by\ + \ and previously distributed by Blue Sky Research and Y&Y, Inc., are now \nfreely available\ + \ for general use. This has been accomplished through the cooperation of a consortium of\ + \ scientific publishers with Blue Sky Research and Y&Y. \nMembers of this consortium include:\n\ + \n * Elsevier Science\n * IBM Corporation\n * Society for Industrial and Applied\ + \ Mathematics (SIAM)\n * Springer-Verlag\n * American Mathematical Society (AMS)\n\ + \nIn order to assure the authenticity of these fonts, copyright will be held by the American\ + \ Mathematical Society. This is not meant to restrict in any way \nthe legitimate use of\ + \ the fonts, such as (but not limited to) electronic distribution of documents containing\ + \ these fonts, inclusion of these fonts into \nother public domain or commercial font collections\ + \ or computer applications, use of the outline data to create derivative fonts or faces,\ + \ etc. However, \nthe AMS does require that the AMS copyright notice be removed from any\ + \ derivative versions of the fonts which have been altered in any way. In addition, \nto\ + \ ensure the fidelity of TeX documents using Computer Modern fonts, Professor Donald Knuth,\ + \ creator of the Computer Modern faces, has requested that any \nalterations which yield\ + \ different font metrics be given a different name." json: ams-fonts.json - yml: ams-fonts.yml + yaml: ams-fonts.yml html: ams-fonts.html - text: ams-fonts.LICENSE + license: ams-fonts.LICENSE - license_key: android-sdk-2009 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-android-sdk-2009 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + ANDROID SOFTWARE DEVELOPMENT KIT + + Terms and Conditions + + This is the Android Software Development Kit License Agreement. + + 1. Introduction + + 1.1 The Android Software Development Kit (referred to in this License Agreement as the "SDK" and + specifically including the Android system files, packaged APIs, and Google APIs add-ons) is + licensed to you subject to the terms of this License Agreement. This License Agreement forms a + legally binding contract between you and Google in relation to your use of the SDK. + + 1.2 "Google" means Google Inc., a Delaware corporation with principal place of business at 1600 + Amphitheatre Parkway, Mountain View, CA 94043, United States. + + 2. Accepting this License Agreement + + 2.1 In order to use the SDK, you must first agree to this License Agreement. You may not use the + SDK if you do not accept this License Agreement. + + 2.2 You can accept this License Agreement by: + (A) clicking to accept or agree to this License Agreement, where this option is made available to + you; or + (B) by actually using the SDK. In this case, you agree that use of the SDK constitutes acceptance of + the Licensing Agreement from that point onwards. + + 2.3 You may not use the SDK and may not accept the Licensing Agreement if you are a person barred + from receiving the SDK under the laws of the United States or other countries including the country + in which you are resident or from which you use the SDK. + + 2.4 If you are agreeing to be bound by this License Agreement on behalf of your employer or other + entity, you represent and warrant that you have full legal authority to bind your employer or such + entity to this License Agreement. If you do not have the requisite authority, you may not accept + the Licensing Agreement or use the SDK on behalf of your employer or other entity. + + 3. SDK License from Google + + 3.1 Subject to the terms of this License Agreement, Google grants you a limited, worldwide, + royalty-free, non- assignable and non-exclusive license to use the SDK solely to develop + applications to run on the Android platform. + + 3.2 You agree that Google or third parties own all legal right, title and interest in and to the + SDK, including any Intellectual Property Rights that subsist in the SDK. "Intellectual Property + Rights" means any and all rights under patent law, copyright law, trade secret law, trademark law, + and any and all other proprietary rights. Google reserves all rights not expressly granted to you. + + 3.3 Except to the extent required by applicable third party licenses, you may not copy (except for + backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create + derivative works of the SDK or any part of the SDK. Except to the extent required by applicable + third party licenses, you may not load any part of the SDK onto a mobile handset or any other + hardware device except a personal computer, combine any part of the SDK with other software, or + distribute any software or device incorporating a part of the SDK. + + 3.4 Use, reproduction and distribution of components of the SDK licensed under an open source + software license are governed solely by the terms of that open source software license and not + this License Agreement. + + 3.5 You agree that the form and nature of the SDK that Google provides may change without prior + notice to you and that future versions of the SDK may be incompatible with applications developed + on previous versions of the SDK. You agree that Google may stop (permanently or temporarily) + providing the SDK (or any features within the SDK) to you or to users generally at Google's sole + discretion, without prior notice to you. + + 3.6 Nothing in this License Agreement gives you a right to use any of Google's trade names, + trademarks, service marks, logos, domain names, or other distinctive brand features. + + 3.7 You agree that you will not remove, obscure, or alter any proprietary rights notices (including + copyright and trademark notices) that may be affixed to or contained within the SDK. + + 4. Use of the SDK by You + + 4.1 Google agrees that it obtains no right, title or interest from you (or your licensors) under + this License Agreement in or to any software applications that you develop using the SDK, including + any intellectual property rights that subsist in those applications. + + 4.2 You agree to use the SDK and write applications only for purposes that are permitted by (a) this + License Agreement and (b) any applicable law, regulation or generally accepted practices or + guidelines in the relevant jurisdictions (including any laws regarding the export of data or + software to and from the United States or other relevant countries). + + 4.3 You agree that if you use the SDK to develop applications for general public users, you will + protect the privacy and legal rights of those users. If the users provide you with user names, + passwords, or other login information or personal information, your must make the users aware that + the information will be available to your application, and you must provide legally adequate privacy + notice and protection for those users. If your application stores personal or sensitive information + provided by users, it must do so securely. If the user provides your application with Google Account + information, your application may only use that information to access the user's Google Account + when, and for the limited purposes for which, the user has given you permission to do so. + + 4.4 You agree that you will not engage in any activity with the SDK, including the development or + distribution of an application, that interferes with, disrupts, damages, or accesses in an + unauthorized manner the servers, networks, or other properties or services of any third party + including, but not limited to, Google or any mobile communications carrier. + + 4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or + to any third party for) any data, content, or resources that you create, transmit or display through + the Android platform and/or applications for the Android platform, and for the consequences of your + actions (including any loss or damage which Google may suffer) by doing so. + + 4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or + to any third party for) any breach of your obligations under this License Agreement, any applicable + third party contract or Terms of Service, or any applicable law or regulation, and for the + consequences (including any loss or damage which Google or any third party may suffer) of any such + breach. + + 5. Your Developer Credentials + + 5.1 You agree that you are responsible for maintaining the confidentiality of any developer + credentials that may be issued to you by Google or which you may choose yourself and that you will + be solely responsible for all applications that are developed under your developer credentials. + + 6. Privacy and Information + + 6.1 In order to continually innovate and improve the SDK, Google may collect certain usage + statistics from the software including but not limited to a unique identifier, associated IP + address, version number of the software, and information on which tools and/or services in the SDK + are being used and how they are being used. Before any of this information is collected, the SDK + will notify you and seek your consent. If you withhold consent, the information will not be + collected. + + 6.2 The data collected is examined in the aggregate to improve the SDK and is maintained in + accordance with Google's Privacy Policy. + + 7. Third Party Applications for the Android Platform + + 7.1 If you use the SDK to run applications developed by a third party or that access data, content + or resources provided by a third party, you agree that Google is not responsible for those + applications, data, content, or resources. You understand that all data, content or resources which + you may access through such third party applications are the sole responsibility of the person from + which they originated and that Google is not liable for any loss or damage that you may experience + as a result of the use or access of any of those third party applications, data, content, or + resources. + + 7.2 You should be aware the data, content, and resources presented to you through such a third party + application may be protected by intellectual property rights which are owned by the providers (or by + other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute + or create derivative works based on these data, content, or resources (either in whole or in part) + unless you have been specifically given permission to do so by the relevant owners. + + 7.3 You acknowledge that your use of such third party applications, data, content, or resources may + be subject to separate terms between you and the relevant third party. In that case, this License + Agreement does not affect your legal relationship with these third parties. + + 8. Using Android APIs + + 8.1 Google Data APIs + + 8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be + protected by intellectual property rights which are owned by Google or those parties that provide + the data (or by other persons or companies on their behalf). Your use of any such API may be subject + to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create + derivative works based on this data (either in whole or in part) unless allowed by the relevant + Terms of Service. + + 8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you + shall retrieve data only with the user's explicit consent and only when, and for the limited + purposes for which, the user has given you permission to do so. + + 9. Terminating this License Agreement + + 9.1 This License Agreement will continue to apply until terminated by either you or Google as set + out below. + + 9.2 If you want to terminate this License Agreement, you may do so by ceasing your use of the SDK + and any relevant developer credentials. + + 9.3 Google may at any time, terminate this License Agreement with you if: + (A) you have breached any provision of this License Agreement; or + (B) Google is required to do so by law; or + (C) the partner with whom Google offered certain parts of SDK (such as APIs) to you has terminated + its relationship with Google or ceased to offer certain parts of the SDK to you; or + (D) Google decides to no longer providing the SDK or certain parts of the SDK to users in the + country in which you are resident or from which you use the service, or the provision of the SDK or + certain SDK services to you by Google is, in Google's sole discretion, no longer commercially + viable. + + 9.4 When this License Agreement comes to an end, all of the legal rights, obligations and + liabilities that you and Google have benefited from, been subject to (or which have accrued over + time whilst this License Agreement has been in force) or which are expressed to continue + indefinitely, shall be unaffected by this cessation, and the provisions of paragraph 14.7 shall + continue to apply to such rights, obligations and liabilities indefinitely. + + 10. DISCLAIMER OF WARRANTIES + + 10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE RISK AND THAT THE + SDK IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE. + + 10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE + SDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR + COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE. + + 10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS + OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + + 11. LIMITATION OF LIABILITY + + 11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS + LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY + LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN + AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING. + + 12. Indemnification + + 12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless + Google, its affiliates and their respective directors, officers, employees and agents from and + against any and all claims, actions, suits or proceedings, as well as any and all losses, + liabilities, damages, costs and expenses (including reasonable attorneys fees) arising out of or + accruing from (a) your use of the SDK, (b) any application you develop on the SDK that infringes any + copyright, trademark, trade secret, trade dress, patent or other intellectual property right of any + person or defames any person or violates their rights of publicity or privacy, and (c) any + non-compliance by you with this License Agreement. + + 13. Changes to the License Agreement + + 13.1 Google may make changes to the License Agreement as it distributes new versions of the SDK. + When these changes are made, Google will make a new version of the License Agreement available on + the website where the SDK is made available. + + 14. General Legal Terms + + 14.1 This License Agreement constitute the whole legal agreement between you and Google and govern + your use of the SDK (excluding any services which Google may provide to you under a separate written + agreement), and completely replace any prior agreements between you and Google in relation to the + SDK. + + 14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is + contained in this License Agreement (or which Google has the benefit of under any applicable law), + this will not be taken to be a formal waiver of Google's rights and that those rights or remedies + will still be available to Google. + + 14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision + of this License Agreement is invalid, then that provision will be removed from this License + Agreement without affecting the rest of this License Agreement. The remaining provisions of this + License Agreement will continue to be valid and enforceable. + + 14.4 You acknowledge and agree that each member of the group of companies of which Google is the + parent shall be third party beneficiaries to this License Agreement and that such other companies + shall be entitled to directly enforce, and rely upon, any provision of this License Agreement that + confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall + be third party beneficiaries to this License Agreement. + + 14.5 EXPORT RESTRICTIONS. THE SDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST + COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE SDK. THESE + LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE. + + 14.6 The rights granted in this License Agreement may not be assigned or transferred by either you + or Google without the prior written approval of the other party. Neither you nor Google shall be + permitted to delegate their responsibilities or obligations under this License Agreement without the + prior written approval of the other party. + + 14.7 This License Agreement, and your relationship with Google under this License Agreement, shall + be governed by the laws of the State of California without regard to its conflict of laws + provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located + within the county of Santa Clara, California to resolve any legal matter arising from this License + Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for + injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction. + + April 10, 2009 json: android-sdk-2009.json - yml: android-sdk-2009.yml + yaml: android-sdk-2009.yml html: android-sdk-2009.html - text: android-sdk-2009.LICENSE + license: android-sdk-2009.LICENSE - license_key: android-sdk-2012 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-android-sdk-2012 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + This is the Android Software Development Kit License Agreement + + + 1. Introduction + + + 1.1 The Android Software Development Kit (referred to in this License Agreement + as the "SDK" and specifically including the Android system files, packaged APIs, + and Google APIs add-ons) is licensed to you subject to the terms of this License + Agreement. This License Agreement forms a legally binding contract between you + and Google in relation to your use of the SDK. + + 1.2 "Android" means the Android software stack for devices, as made available + under the Android Open Source Project, which is located at the following URL: + http://source.android.com/, as updated from time to time. + + 1.3 "Google" means Google Inc., a Delaware corporation with principal place of + business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States. + + + 2. Accepting this License Agreement + + + 2.1 In order to use the SDK, you must first agree to this License Agreement. You + may not use the SDK if you do not accept this License Agreement. + + 2.2 By clicking to accept, you hereby agree to the terms of this License + Agreement. + + 2.3 You may not use the SDK and may not accept the License Agreement if you are + a person barred from receiving the SDK under the laws of the United States or + other countries including the country in which you are resident or from which + you use the SDK. + + 2.4 If you are agreeing to be bound by this License Agreement on behalf of your + employer or other entity, you represent and warrant that you have full legal + authority to bind your employer or such entity to this License Agreement. If you + do not have the requisite authority, you may not accept the License Agreement or + use the SDK on behalf of your employer or other entity. + + + 3. SDK License from Google + + + 3.1 Subject to the terms of this License Agreement, Google grants you a limited, + worldwide, royalty-free, non-assignable and non-exclusive license to use the SDK + solely to develop applications to run on the Android platform. + + 3.2 You agree that Google or third parties own all legal right, title and + interest in and to the SDK, including any Intellectual Property Rights that + subsist in the SDK. "Intellectual Property Rights" means any and all rights + under patent law, copyright law, trade secret law, trademark law, and any and + all other proprietary rights. Google reserves all rights not expressly granted + to you. + + 3.3 You may not use the SDK for any purpose not expressly permitted by this + License Agreement. Except to the extent required by applicable third party + licenses, you may not: (a) copy (except for backup purposes), modify, adapt, + redistribute, decompile, reverse engineer, disassemble, or create derivative + works of the SDK or any part of the SDK; or (b) load any part of the SDK onto a + mobile handset or any other hardware device except a personal computer, combine + any part of the SDK with other software, or distribute any software or device + incorporating a part of the SDK. + + 3.4 You agree that you will not take any actions that may cause or result in the + fragmentation of Android, including but not limited to distributing, + participating in the creation of, or promoting in any way a software development + kit derived from the SDK. + + 3.5 Use, reproduction and distribution of components of the SDK licensed under + an open source software license are governed solely by the terms of that open + source software license and not this License Agreement. + + 3.6 You agree that the form and nature of the SDK that Google provides may + change without prior notice to you and that future versions of the SDK may be + incompatible with applications developed on previous versions of the SDK. You + agree that Google may stop (permanently or temporarily) providing the SDK (or + any features within the SDK) to you or to users generally at Google's sole + discretion, without prior notice to you. + + 3.7 Nothing in this License Agreement gives you a right to use any of Google's + trade names, trademarks, service marks, logos, domain names, or other + distinctive brand features. + + 3.8 You agree that you will not remove, obscure, or alter any proprietary rights + notices (including copyright and trademark notices) that may be affixed to or + contained within the SDK. + + + 4. Use of the SDK by You + + + 4.1 Google agrees that it obtains no right, title or interest from you (or your + licensors) under this License Agreement in or to any software applications that + you develop using the SDK, including any intellectual property rights that + subsist in those applications. + + 4.2 You agree to use the SDK and write applications only for purposes that are + permitted by (a) this License Agreement and (b) any applicable law, regulation + or generally accepted practices or guidelines in the relevant jurisdictions + (including any laws regarding the export of data or software to and from the + United States or other relevant countries). + + 4.3 You agree that if you use the SDK to develop applications for general public + users, you will protect the privacy and legal rights of those users. If the + users provide you with user names, passwords, or other login information or + personal information, you must make the users aware that the information will be + available to your application, and you must provide legally adequate privacy + notice and protection for those users. If your application stores personal or + sensitive information provided by users, it must do so securely. If the user + provides your application with Google Account information, your application may + only use that information to access the user's Google Account when, and for the + limited purposes for which, the user has given you permission to do so. + + 4.4 You agree that you will not engage in any activity with the SDK, including + the development or distribution of an application, that interferes with, + disrupts, damages, or accesses in an unauthorized manner the servers, networks, + or other properties or services of any third party including, but not limited + to, Google or any mobile communications carrier. + + 4.5 You agree that you are solely responsible for (and that Google has no + responsibility to you or to any third party for) any data, content, or resources + that you create, transmit or display through Android and/or applications for + Android, and for the consequences of your actions (including any loss or damage + which Google may suffer) by doing so. + + 4.6 You agree that you are solely responsible for (and that Google has no + responsibility to you or to any third party for) any breach of your obligations + under this License Agreement, any applicable third party contract or Terms of + Service, or any applicable law or regulation, and for the consequences + (including any loss or damage which Google or any third party may suffer) of any + such breach. + + + 5. Your Developer Credentials + + + 5.1 You agree that you are responsible for maintaining the confidentiality of + any developer credentials that may be issued to you by Google or which you may + choose yourself and that you will be solely responsible for all applications + that are developed under your developer credentials. + + + 6. Privacy and Information + + + 6.1 In order to continually innovate and improve the SDK, Google may collect + certain usage statistics from the software including but not limited to a unique + identifier, associated IP address, version number of the software, and + information on which tools and/or services in the SDK are being used and how + they are being used. Before any of this information is collected, the SDK will + notify you and seek your consent. If you withhold consent, the information will + not be collected. + + 6.2 The data collected is examined in the aggregate to improve the SDK and is + maintained in accordance with Google's Privacy Policy. + + + 7. Third Party Applications + + + 7.1 If you use the SDK to run applications developed by a third party or that + access data, content or resources provided by a third party, you agree that + Google is not responsible for those applications, data, content, or resources. + You understand that all data, content or resources which you may access through + such third party applications are the sole responsibility of the person from + which they originated and that Google is not liable for any loss or damage that + you may experience as a result of the use or access of any of those third party + applications, data, content, or resources. + + 7.2 You should be aware the data, content, and resources presented to you + through such a third party application may be protected by intellectual property + rights which are owned by the providers (or by other persons or companies on + their behalf). You may not modify, rent, lease, loan, sell, distribute or create + derivative works based on these data, content, or resources (either in whole or + in part) unless you have been specifically given permission to do so by the + relevant owners. + + 7.3 You acknowledge that your use of such third party applications, data, + content, or resources may be subject to separate terms between you and the + relevant third party. In that case, this License Agreement does not affect your + legal relationship with these third parties. + + + 8. Using Android APIs + + + 8.1 Google Data APIs + + 8.1.1 If you use any API to retrieve data from Google, you acknowledge that the + data may be protected by intellectual property rights which are owned by Google + or those parties that provide the data (or by other persons or companies on + their behalf). Your use of any such API may be subject to additional Terms of + Service. You may not modify, rent, lease, loan, sell, distribute or create + derivative works based on this data (either in whole or in part) unless allowed + by the relevant Terms of Service. + + 8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge + and agree that you shall retrieve data only with the user's explicit consent and + only when, and for the limited purposes for which, the user has given you + permission to do so. + + + 9. Terminating this License Agreement + + + 9.1 This License Agreement will continue to apply until terminated by either you + or Google as set out below. + + 9.2 If you want to terminate this License Agreement, you may do so by ceasing + your use of the SDK and any relevant developer credentials. + + 9.3 Google may at any time, terminate this License Agreement with you if: + (A) you have breached any provision of this License Agreement; or + (B) Google is required to do so by law; or + (C) the partner with whom Google offered certain parts of SDK (such as APIs) to + you has terminated its relationship with Google or ceased to offer certain parts + of the SDK to you; or + (D) Google decides to no longer provide the SDK or certain parts of the SDK to + users in the country in which you are resident or from which you use the + service, or the provision of the SDK or certain SDK services to you by Google + is, in Google's sole discretion, no longer commercially viable. + + 9.4 When this License Agreement comes to an end, all of the legal rights, + obligations and liabilities that you and Google have benefited from, been + subject to (or which have accrued over time whilst this License Agreement has + been in force) or which are expressed to continue indefinitely, shall be + unaffected by this cessation, and the provisions of paragraph 14.7 shall + continue to apply to such rights, obligations and liabilities indefinitely. + + + 10. DISCLAIMER OF WARRANTIES + + + 10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE + RISK AND THAT THE SDK IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTY OF + ANY KIND FROM GOOGLE. + + 10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED + THROUGH THE USE OF THE SDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY + RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF + DATA THAT RESULTS FROM SUCH USE. + + 10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY + KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED + WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE + AND NON-INFRINGEMENT. + + + 11. LIMITATION OF LIABILITY + + + 11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND + AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF + LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR + EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, + WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE + BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING. + + + 12. Indemnification + + + 12.1 To the maximum extent permitted by law, you agree to defend, indemnify and + hold harmless Google, its affiliates and their respective directors, officers, + employees and agents from and against any and all claims, actions, suits or + proceedings, as well as any and all losses, liabilities, damages, costs and + expenses (including reasonable attorneys fees) arising out of or accruing from + (a) your use of the SDK, (b) any application you develop on the SDK that + infringes any copyright, trademark, trade secret, trade dress, patent or other + intellectual property right of any person or defames any person or violates + their rights of publicity or privacy, and (c) any non-compliance by you with + this License Agreement. + + + 13. Changes to the License Agreement + + + 13.1 Google may make changes to the License Agreement as it distributes new + versions of the SDK. When these changes are made, Google will make a new version + of the License Agreement available on the website where the SDK is made + available. + + + 14. General Legal Terms + + + 14.1 This License Agreement constitutes the whole legal agreement between you + and Google and governs your use of the SDK (excluding any services which Google + may provide to you under a separate written agreement), and completely replaces + any prior agreements between you and Google in relation to the SDK. + + 14.2 You agree that if Google does not exercise or enforce any legal right or + remedy which is contained in this License Agreement (or which Google has the + benefit of under any applicable law), this will not be taken to be a formal + waiver of Google's rights and that those rights or remedies will still be + available to Google. + + 14.3 If any court of law, having the jurisdiction to decide on this matter, + rules that any provision of this License Agreement is invalid, then that + provision will be removed from this License Agreement without affecting the rest + of this License Agreement. The remaining provisions of this License Agreement + will continue to be valid and enforceable. + + 14.4 You acknowledge and agree that each member of the group of companies of + which Google is the parent shall be third party beneficiaries to this License + Agreement and that such other companies shall be entitled to directly enforce, + and rely upon, any provision of this License Agreement that confers a benefit on + (or rights in favor of) them. Other than this, no other person or company shall + be third party beneficiaries to this License Agreement. + + 14.5 EXPORT RESTRICTIONS. THE SDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND + REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND + REGULATIONS THAT APPLY TO THE SDK. THESE LAWS INCLUDE RESTRICTIONS ON + DESTINATIONS, END USERS AND END USE. + + 14.6 The rights granted in this License Agreement may not be assigned or + transferred by either you or Google without the prior written approval of the + other party. Neither you nor Google shall be permitted to delegate their + responsibilities or obligations under this License Agreement without the prior + written approval of the other party. + + 14.7 This License Agreement, and your relationship with Google under this + License Agreement, shall be governed by the laws of the State of California + without regard to its conflict of laws provisions. You and Google agree to + submit to the exclusive jurisdiction of the courts located within the county of + Santa Clara, California to resolve any legal matter arising from this License + Agreement. Notwithstanding this, you agree that Google shall still be allowed to + apply for injunctive remedies (or an equivalent type of urgent legal relief) in + any jurisdiction. + + + /November 13, 2012/ json: android-sdk-2012.json - yml: android-sdk-2012.yml + yaml: android-sdk-2012.yml html: android-sdk-2012.html - text: android-sdk-2012.LICENSE + license: android-sdk-2012.LICENSE - license_key: android-sdk-2021 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-android-sdk-2021 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Terms and Conditions + This is the Android Software Development Kit License Agreement + + 1. Introduction + 1.1 The Android Software Development Kit (referred to in the License Agreement as the "SDK" and specifically including the Android system files, packaged APIs, and Google APIs add-ons) is licensed to you subject to the terms of the License Agreement. The License Agreement forms a legally binding contract between you and Google in relation to your use of the SDK. + + 1.2 "Android" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: https://source.android.com/, as updated from time to time. + + 1.3 A "compatible implementation" means any Android device that (i) complies with the Android Compatibility Definition document, which can be found at the Android compatibility website (https://source.android.com/compatibility) and which may be updated from time to time; and (ii) successfully passes the Android Compatibility Test Suite (CTS). + + 1.4 "Google" means Google LLC, organized under the laws of the State of Delaware, USA, and operating under the laws of the USA with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA. + + + 2. Accepting this License Agreement + 2.1 In order to use the SDK, you must first agree to the License Agreement. You may not use the SDK if you do not accept the License Agreement. + + 2.2 By clicking to accept and/or using this SDK, you hereby agree to the terms of the License Agreement. + + 2.3 You may not use the SDK and may not accept the License Agreement if you are a person barred from receiving the SDK under the laws of the United States or other countries, including the country in which you are resident or from which you use the SDK. + + 2.4 If you are agreeing to be bound by the License Agreement on behalf of your employer or other entity, you represent and warrant that you have full legal authority to bind your employer or such entity to the License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the SDK on behalf of your employer or other entity. + + + 3. SDK License from Google + 3.1 Subject to the terms of the License Agreement, Google grants you a limited, worldwide, royalty-free, non-assignable, non-exclusive, and non-sublicensable license to use the SDK solely to develop applications for compatible implementations of Android. + + 3.2 You may not use this SDK to develop applications for other platforms (including non-compatible implementations of Android) or to develop another SDK. You are of course free to develop applications for other platforms, including non-compatible implementations of Android, provided that this SDK is not used for that purpose. + + 3.3 You agree that Google or third parties own all legal right, title and interest in and to the SDK, including any Intellectual Property Rights that subsist in the SDK. "Intellectual Property Rights" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you. + + 3.4 You may not use the SDK for any purpose not expressly permitted by the License Agreement. Except to the extent required by applicable third party licenses, you may not copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the SDK or any part of the SDK. + + 3.5 Use, reproduction and distribution of components of the SDK licensed under an open source software license are governed solely by the terms of that open source software license and not the License Agreement. + + 3.6 You agree that the form and nature of the SDK that Google provides may change without prior notice to you and that future versions of the SDK may be incompatible with applications developed on previous versions of the SDK. You agree that Google may stop (permanently or temporarily) providing the SDK (or any features within the SDK) to you or to users generally at Google's sole discretion, without prior notice to you. + + 3.7 Nothing in the License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features. + + 3.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the SDK. + + + 4. Use of the SDK by You + 4.1 Google agrees that it obtains no right, title or interest from you (or your licensors) under the License Agreement in or to any software applications that you develop using the SDK, including any intellectual property rights that subsist in those applications. + + 4.2 You agree to use the SDK and write applications only for purposes that are permitted by (a) the License Agreement and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries). + + 4.3 You agree that if you use the SDK to develop applications for general public users, you will protect the privacy and legal rights of those users. If the users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If the user provides your application with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, the user has given you permission to do so. + + 4.4 You agree that you will not engage in any activity with the SDK, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of any third party including, but not limited to, Google or any mobile communications carrier. + + 4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through Android and/or applications for Android, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so. + + 4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under the License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach. + + + 5. Your Developer Credentials + 5.1 You agree that you are responsible for maintaining the confidentiality of any developer credentials that may be issued to you by Google or which you may choose yourself and that you will be solely responsible for all applications that are developed under your developer credentials. + + + 6. Privacy and Information + 6.1 In order to continually innovate and improve the SDK, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the SDK are being used and how they are being used. Before any of this information is collected, the SDK will notify you and seek your consent. If you withhold consent, the information will not be collected. + + 6.2 The data collected is examined in the aggregate to improve the SDK and is maintained in accordance with Google's Privacy Policy, which is located at the following URL: https://policies.google.com/privacy + + 6.3 Anonymized and aggregated sets of the data may be shared with Google partners to improve the SDK. + + 7. Third Party Applications + 7.1 If you use the SDK to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources. + + 7.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners. + + 7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party. In that case, the License Agreement does not affect your legal relationship with these third parties. + + + 8. Using Android APIs + 8.1 Google Data APIs + + 8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service. + + 8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so. If you use the Android Recognition Service API, documented at the following URL: https://developer.android.com/reference/android/speech/RecognitionService, as updated from time to time, you acknowledge that the use of the API is subject to the Data Processing Addendum for Products where Google is a Data Processor, which is located at the following URL: https://privacy.google.com/businesses/gdprprocessorterms/, as updated from time to time. By clicking to accept, you hereby agree to the terms of the Data Processing Addendum for Products where Google is a Data Processor. + + + + 9. Terminating this License Agreement + 9.1 The License Agreement will continue to apply until terminated by either you or Google as set out below. + + 9.2 If you want to terminate the License Agreement, you may do so by ceasing your use of the SDK and any relevant developer credentials. + + 9.3 Google may at any time, terminate the License Agreement with you if: + (A) you have breached any provision of the License Agreement; or + (B) Google is required to do so by law; or + (C) the partner with whom Google offered certain parts of SDK (such as APIs) to you has terminated its relationship with Google or ceased to offer certain parts of the SDK to you; or + (D) Google decides to no longer provide the SDK or certain parts of the SDK to users in the country in which you are resident or from which you use the service, or the provision of the SDK or certain SDK services to you by Google is, in Google's sole discretion, no longer commercially viable. + + 9.4 When the License Agreement comes to an end, all of the legal rights, obligations and liabilities that you and Google have benefited from, been subject to (or which have accrued over time whilst the License Agreement has been in force) or which are expressed to continue indefinitely, shall be unaffected by this cessation, and the provisions of paragraph 14.7 shall continue to apply to such rights, obligations and liabilities indefinitely. + + + 10. DISCLAIMER OF WARRANTIES + 10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE RISK AND THAT THE SDK IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE. + + 10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE SDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE. + + 10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + + + 11. LIMITATION OF LIABILITY + 11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING. + + + 12. Indemnification + 12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys fees) arising out of or accruing from (a) your use of the SDK, (b) any application you develop on the SDK that infringes any copyright, trademark, trade secret, trade dress, patent or other intellectual property right of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you with the License Agreement. + + + 13. Changes to the License Agreement + 13.1 Google may make changes to the License Agreement as it distributes new versions of the SDK. When these changes are made, Google will make a new version of the License Agreement available on the website where the SDK is made available. + + + 14. General Legal Terms + 14.1 The License Agreement constitutes the whole legal agreement between you and Google and governs your use of the SDK (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the SDK. + + 14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in the License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google. + + 14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of the License Agreement is invalid, then that provision will be removed from the License Agreement without affecting the rest of the License Agreement. The remaining provisions of the License Agreement will continue to be valid and enforceable. + + 14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to the License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of the License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to the License Agreement. + + 14.5 EXPORT RESTRICTIONS. THE SDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE SDK. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE. + + 14.6 The rights granted in the License Agreement may not be assigned or transferred by either you or Google without the prior written approval of the other party. Neither you nor Google shall be permitted to delegate their responsibilities or obligations under the License Agreement without the prior written approval of the other party. + + 14.7 The License Agreement, and your relationship with Google under the License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction. + + July 27, 2021 json: android-sdk-2021.json - yml: android-sdk-2021.yml + yaml: android-sdk-2021.yml html: android-sdk-2021.html - text: android-sdk-2021.LICENSE + license: android-sdk-2021.LICENSE - license_key: android-sdk-license + category: Proprietary Free spdx_license_key: LicenseRef-scancode-android-sdk-license other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + This is the Android Software Development Kit License Agreement + + 1. Introduction + + 1.1 The Android Software Development Kit (referred to in the License Agreement + as the "SDK" and specifically including the Android system files, packaged APIs, + and Google APIs add-ons) is licensed to you subject to the terms of the License + Agreement. The License Agreement forms a legally binding contract between you + and Google in relation to your use of the SDK. + + 1.2 "Android" means the Android software stack for devices, as made available + under the Android Open Source Project, which is located at the following URL: + http://source.android.com/, as updated from time to time. + + 1.3 A "compatible implementation" means any Android device that (i) complies + with the Android Compatibility Definition document, which can be found at the + Android compatibility website (http://source.android.com/compatibility) and + which may be updated from time to time; and (ii) successfully passes the Android + Compatibility Test Suite (CTS). + + 1.4 "Google" means Google Inc., a Delaware corporation with principal place of + business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States. + + + 2. Accepting this License Agreement + + 2.1 In order to use the SDK, you must first agree to the License Agreement. You + may not use the SDK if you do not accept the License Agreement. + + 2.2 By clicking to accept, you hereby agree to the terms of the License + Agreement. + + 2.3 You may not use the SDK and may not accept the License Agreement if you are + a person barred from receiving the SDK under the laws of the United States or + other countries, including the country in which you are resident or from which + you use the SDK. + + 2.4 If you are agreeing to be bound by the License Agreement on behalf of your + employer or other entity, you represent and warrant that you have full legal + authority to bind your employer or such entity to the License Agreement. If you + do not have the requisite authority, you may not accept the License Agreement or + use the SDK on behalf of your employer or other entity. + + + 3. SDK License from Google + + 3.1 Subject to the terms of the License Agreement, Google grants you a limited, + worldwide, royalty-free, non-assignable, non-exclusive, and non-sublicensable + license to use the SDK solely to develop applications for compatible + implementations of Android. + + 3.2 You may not use this SDK to develop applications for other platforms + (including non-compatible implementations of Android) or to develop another SDK. + You are of course free to develop applications for other platforms, including + non-compatible implementations of Android, provided that this SDK is not used + for that purpose. + + 3.3 You agree that Google or third parties own all legal right, title and + interest in and to the SDK, including any Intellectual Property Rights that + subsist in the SDK. "Intellectual Property Rights" means any and all rights + under patent law, copyright law, trade secret law, trademark law, and any and + all other proprietary rights. Google reserves all rights not expressly granted + to you. + + 3.4 You may not use the SDK for any purpose not expressly permitted by the + License Agreement. Except to the extent required by applicable third party + licenses, you may not: (a) copy (except for backup purposes), modify, adapt, + redistribute, decompile, reverse engineer, disassemble, or create derivative + works of the SDK or any part of the SDK; or (b) load any part of the SDK onto a + mobile handset or any other hardware device except a personal computer, combine + any part of the SDK with other software, or distribute any software or device + incorporating a part of the SDK. + + 3.5 Use, reproduction and distribution of components of the SDK licensed under + an open source software license are governed solely by the terms of that open + source software license and not the License Agreement. + + 3.6 You agree that the form and nature of the SDK that Google provides may + change without prior notice to you and that future versions of the SDK may be + incompatible with applications developed on previous versions of the SDK. You + agree that Google may stop (permanently or temporarily) providing the SDK (or + any features within the SDK) to you or to users generally at Google's sole + discretion, without prior notice to you. + + 3.7 Nothing in the License Agreement gives you a right to use any of Google's + trade names, trademarks, service marks, logos, domain names, or other + distinctive brand features. + + 3.8 You agree that you will not remove, obscure, or alter any proprietary rights + notices (including copyright and trademark notices) that may be affixed to or + contained within the SDK. + + + 4. Use of the SDK by You + + 4.1 Google agrees that it obtains no right, title or interest from you (or your + licensors) under the License Agreement in or to any software applications that + you develop using the SDK, including any intellectual property rights that + subsist in those applications. + + 4.2 You agree to use the SDK and write applications only for purposes that are + permitted by (a) the License Agreement and (b) any applicable law, regulation or + generally accepted practices or guidelines in the relevant jurisdictions + (including any laws regarding the export of data or software to and from the + United States or other relevant countries). + + 4.3 You agree that if you use the SDK to develop applications for general public + users, you will protect the privacy and legal rights of those users. If the + users provide you with user names, passwords, or other login information or + personal information, you must make the users aware that the information will be + available to your application, and you must provide legally adequate privacy + notice and protection for those users. If your application stores personal or + sensitive information provided by users, it must do so securely. If the user + provides your application with Google Account information, your application may + only use that information to access the user's Google Account when, and for the + limited purposes for which, the user has given you permission to do so. + + 4.4 You agree that you will not engage in any activity with the SDK, including + the development or distribution of an application, that interferes with, + disrupts, damages, or accesses in an unauthorized manner the servers, networks, + or other properties or services of any third party including, but not limited + to, Google or any mobile communications carrier. + + 4.5 You agree that you are solely responsible for (and that Google has no + responsibility to you or to any third party for) any data, content, or resources + that you create, transmit or display through Android and/or applications for + Android, and for the consequences of your actions (including any loss or damage + which Google may suffer) by doing so. + + 4.6 You agree that you are solely responsible for (and that Google has no + responsibility to you or to any third party for) any breach of your obligations + under the License Agreement, any applicable third party contract or Terms of + Service, or any applicable law or regulation, and for the consequences + (including any loss or damage which Google or any third party may suffer) of any + such breach. + + + 5. Your Developer Credentials + + 5.1 You agree that you are responsible for maintaining the confidentiality of + any developer credentials that may be issued to you by Google or which you may + choose yourself and that you will be solely responsible for all applications + that are developed under your developer credentials. + + + 6. Privacy and Information + + 6.1 In order to continually innovate and improve the SDK, Google may collect + certain usage statistics from the software including but not limited to a unique + identifier, associated IP address, version number of the software, and + information on which tools and/or services in the SDK are being used and how + they are being used. Before any of this information is collected, the SDK will + notify you and seek your consent. If you withhold consent, the information will + not be collected. + + 6.2 The data collected is examined in the aggregate to improve the SDK and is + maintained in accordance with Google's Privacy Policy. + + + 7. Third Party Applications + + 7.1 If you use the SDK to run applications developed by a third party or that + access data, content or resources provided by a third party, you agree that + Google is not responsible for those applications, data, content, or resources. + You understand that all data, content or resources which you may access through + such third party applications are the sole responsibility of the person from + which they originated and that Google is not liable for any loss or damage that + you may experience as a result of the use or access of any of those third party + applications, data, content, or resources. + + 7.2 You should be aware the data, content, and resources presented to you + through such a third party application may be protected by intellectual property + rights which are owned by the providers (or by other persons or companies on + their behalf). You may not modify, rent, lease, loan, sell, distribute or create + derivative works based on these data, content, or resources (either in whole or + in part) unless you have been specifically given permission to do so by the + relevant owners. + + 7.3 You acknowledge that your use of such third party applications, data, + content, or resources may be subject to separate terms between you and the + relevant third party. In that case, the License Agreement does not affect your + legal relationship with these third parties. + + + 8. Using Android APIs + + 8.1 Google Data APIs + + 8.1.1 If you use any API to retrieve data from Google, you acknowledge that the + data may be protected by intellectual property rights which are owned by Google + or those parties that provide the data (or by other persons or companies on + their behalf). Your use of any such API may be subject to additional Terms of + Service. You may not modify, rent, lease, loan, sell, distribute or create + derivative works based on this data (either in whole or in part) unless allowed + by the relevant Terms of Service. + + 8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge + and agree that you shall retrieve data only with the user's explicit consent and + only when, and for the limited purposes for which, the user has given you + permission to do so. + + + 9. Terminating this License Agreement + + 9.1 The License Agreement will continue to apply until terminated by either you + or Google as set out below. + + 9.2 If you want to terminate the License Agreement, you may do so by ceasing + your use of the SDK and any relevant developer credentials. + + 9.3 Google may at any time, terminate the License Agreement with you if: + (A) you have breached any provision of the License Agreement; or + + (B) Google is required to do so by law; or + + (C) the partner with whom Google offered certain parts of SDK (such as APIs) to + you has terminated its relationship with Google or ceased to offer certain parts + of the SDK to you; or + + (D) Google decides to no longer provide the SDK or certain parts of the SDK to + users in the country in which you are resident or from which you use the + service, or the provision of the SDK or certain SDK services to you by Google + is, in Google's sole discretion, no longer commercially viable. + + 9.4 When the License Agreement comes to an end, all of the legal rights, + obligations and liabilities that you and Google have benefited from, been + subject to (or which have accrued over time whilst the License Agreement has + been in force) or which are expressed to continue indefinitely, shall be + unaffected by this cessation, and the provisions of paragraph 14.7 shall + continue to apply to such rights, obligations and liabilities indefinitely. + + + 10. DISCLAIMER OF WARRANTIES + + 10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE + RISK AND THAT THE SDK IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTY OF + ANY KIND FROM GOOGLE. + + 10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED + THROUGH THE USE OF THE SDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY + RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF + DATA THAT RESULTS FROM SUCH USE. + + 10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY + KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED + WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE + AND NON-INFRINGEMENT. + + + 11. LIMITATION OF LIABILITY + + 11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND + AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF + LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR + EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, + WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE + BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING. + + + 12. Indemnification + + 12.1 To the maximum extent permitted by law, you agree to defend, indemnify and + hold harmless Google, its affiliates and their respective directors, officers, + employees and agents from and against any and all claims, actions, suits or + proceedings, as well as any and all losses, liabilities, damages, costs and + expenses (including reasonable attorneys fees) arising out of or accruing from + (a) your use of the SDK, (b) any application you develop on the SDK that + infringes any copyright, trademark, trade secret, trade dress, patent or other + intellectual property right of any person or defames any person or violates + their rights of publicity or privacy, and (c) any non-compliance by you with the + License Agreement. + + + 13. Changes to the License Agreement + + 13.1 Google may make changes to the License Agreement as it distributes new + versions of the SDK. When these changes are made, Google will make a new version + of the License Agreement available on the website where the SDK is made + available. + + + 14. General Legal Terms + + 14.1 The License Agreement constitutes the whole legal agreement between you and + Google and governs your use of the SDK (excluding any services which Google may + provide to you under a separate written agreement), and completely replaces any + prior agreements between you and Google in relation to the SDK. + + 14.2 You agree that if Google does not exercise or enforce any legal right or + remedy which is contained in the License Agreement (or which Google has the + benefit of under any applicable law), this will not be taken to be a formal + waiver of Google's rights and that those rights or remedies will still be + available to Google. + + 14.3 If any court of law, having the jurisdiction to decide on this matter, + rules that any provision of the License Agreement is invalid, then that + provision will be removed from the License Agreement without affecting the rest + of the License Agreement. The remaining provisions of the License Agreement will + continue to be valid and enforceable. + + 14.4 You acknowledge and agree that each member of the group of companies of + which Google is the parent shall be third party beneficiaries to the License + Agreement and that such other companies shall be entitled to directly enforce, + and rely upon, any provision of the License Agreement that confers a benefit on + (or rights in favor of) them. Other than this, no other person or company shall + be third party beneficiaries to the License Agreement. + + 14.5 EXPORT RESTRICTIONS. THE SDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND + REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND + REGULATIONS THAT APPLY TO THE SDK. THESE LAWS INCLUDE RESTRICTIONS ON + DESTINATIONS, END USERS AND END USE. + + 14.6 The rights granted in the License Agreement may not be assigned or + transferred by either you or Google without the prior written approval of the + other party. Neither you nor Google shall be permitted to delegate their + responsibilities or obligations under the License Agreement without the prior + written approval of the other party. + + 14.7 The License Agreement, and your relationship with Google under the License + Agreement, shall be governed by the laws of the State of California without + regard to its conflict of laws provisions. You and Google agree to submit to the + exclusive jurisdiction of the courts located within the county of Santa Clara, + California to resolve any legal matter arising from the License Agreement. + Notwithstanding this, you agree that Google shall still be allowed to apply for + injunctive remedies (or an equivalent type of urgent legal relief) in any + jurisdiction. + + + November 20, 2015 json: android-sdk-license.json - yml: android-sdk-license.yml + yaml: android-sdk-license.yml html: android-sdk-license.html - text: android-sdk-license.LICENSE + license: android-sdk-license.LICENSE - license_key: android-sdk-preview-2015 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-android-sdk-preview-2015 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + This is the Android SDK Preview License Agreement (the "License Agreement"). + + 1. Introduction + + 1.1 The Android SDK Preview (referred to in the License Agreement as the + "Preview" and specifically including the Android system files, packaged APIs, + and Preview library files, if and when they are made available) is licensed to + you subject to the terms of the License Agreement. The License Agreement forms a + legally binding contract between you and Google in relation to your use of the + Preview. + + 1.2 "Android" means the Android software stack for devices, as made available + under the Android Open Source Project, which is located at the following URL: + http://source.android.com/, as updated from time to time. + + 1.3 "Google" means Google Inc., a Delaware corporation with principal place of + business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States. + + 2. Accepting the License Agreement + + 2.1 In order to use the Preview, you must first agree to the License Agreement. + You may not use the Preview if you do not accept the License Agreement. + + 2.2 By clicking to accept and/or using the Preview, you hereby agree to the + terms of the License Agreement. + + 2.3 You may not use the Preview and may not accept the License Agreement if you + are a person barred from receiving the Preview under the laws of the United + States or other countries including the country in which you are resident or + from which you use the Preview. + + 2.4 If you will use the Preview internally within your company or organization + you agree to be bound by the License Agreement on behalf of your employer or + other entity, and you represent and warrant that you have full legal authority + to bind your employer or such entity to the License Agreement. If you do not + have the requisite authority, you may not accept the License Agreement or use + the Preview on behalf of your employer or other entity. + + 3. Preview License from Google + + 3.1 Subject to the terms of the License Agreement, Google grants you a royalty- + free, non-assignable, non-exclusive, non-sublicensable, limited, revocable + license to use the Preview, personally or internally within your company or + organization, solely to develop applications to run on the Android platform. + + 3.2 You agree that Google or third parties owns all legal right, title and + interest in and to the Preview, including any Intellectual Property Rights that + subsist in the Preview. "Intellectual Property Rights" means any and all rights + under patent law, copyright law, trade secret law, trademark law, and any and + all other proprietary rights. Google reserves all rights not expressly granted + to you. + + 3.3 You may not use the Preview for any purpose not expressly permitted by the + License Agreement. Except to the extent required by applicable third party + licenses, you may not: (a) copy (except for backup purposes), modify, adapt, + redistribute, decompile, reverse engineer, disassemble, or create derivative + works of the Preview or any part of the Preview; or (b) load any part of the + Preview onto a mobile handset or any other hardware device except a personal + computer, combine any part of the Preview with other software, or distribute any + software or device incorporating a part of the Preview. + + 3.4 You agree that you will not take any actions that may cause or result in the + fragmentation of Android, including but not limited to distributing, + participating in the creation of, or promoting in any way a software development + kit derived from the Preview. + + 3.5 Use, reproduction and distribution of components of the Preview licensed + under an open source software license are governed solely by the terms of that + open source software license and not the License Agreement. You agree to remain + a licensee in good standing in regard to such open source software licenses + under all the rights granted and to refrain from any actions that may terminate, + suspend, or breach such rights. + + 3.6 You agree that the form and nature of the Preview that Google provides may + change without prior notice to you and that future versions of the Preview may + be incompatible with applications developed on previous versions of the Preview. + You agree that Google may stop (permanently or temporarily) providing the + Preview (or any features within the Preview) to you or to users generally at + Google's sole discretion, without prior notice to you. + + 3.7 Nothing in the License Agreement gives you a right to use any of Google's + trade names, trademarks, service marks, logos, domain names, or other + distinctive brand features. + + 3.8 You agree that you will not remove, obscure, or alter any proprietary rights + notices (including copyright and trademark notices) that may be affixed to or + contained within the Preview. + + 4. Use of the Preview by You + + 4.1 Google agrees that nothing in the License Agreement gives Google any right, + title or interest from you (or your licensors) under the License Agreement in or + to any software applications that you develop using the Preview, including any + intellectual property rights that subsist in those applications. + + 4.2 You agree to use the Preview and write applications only for purposes that + are permitted by (a) the License Agreement, and (b) any applicable law, + regulation or generally accepted practices or guidelines in the relevant + jurisdictions (including any laws regarding the export of data or software to + and from the United States or other relevant countries). + + 4.3 You agree that if you use the Preview to develop applications, you will + protect the privacy and legal rights of users. If users provide you with user + names, passwords, or other login information or personal information, you must + make the users aware that the information will be available to your application, + and you must provide legally adequate privacy notice and protection for those + users. If your application stores personal or sensitive information provided by + users, it must do so securely. If users provide you with Google Account + information, your application may only use that information to access the user's + Google Account when, and for the limited purposes for which, each user has given + you permission to do so. + + 4.4 You agree that you will not engage in any activity with the Preview, + including the development or distribution of an application, that interferes + with, disrupts, damages, or accesses in an unauthorized manner the servers, + networks, or other properties or services of Google or any third party. + + 4.5 You agree that you are solely responsible for (and that Google has no + responsibility to you or to any third party for) any data, content, or resources + that you create, transmit or display through Android and/or applications for + Android, and for the consequences of your actions (including any loss or damage + which Google may suffer) by doing so. + + 4.6 You agree that you are solely responsible for (and that Google has no + responsibility to you or to any third party for) any breach of your obligations + under the License Agreement, any applicable third party contract or Terms of + Service, or any applicable law or regulation, and for the consequences + (including any loss or damage which Google or any third party may suffer) of any + such breach. + + 4.7 The Preview is in development, and your testing and feedback are an + important part of the development process. By using the Preview, you acknowledge + that implementation of some features are still under development and that you + should not rely on the Preview having the full functionality of a stable + release. You agree not to publicly distribute or ship any application using this + Preview as this Preview will no longer be supported after the official Android + SDK is released. + + 5. Your Developer Credentials + + 5.1 You agree that you are responsible for maintaining the confidentiality of + any developer credentials that may be issued to you by Google or which you may + choose yourself and that you will be solely responsible for all applications + that are developed under your developer credentials. + + 6. Privacy and Information + + 6.1 In order to continually innovate and improve the Preview, Google may collect + certain usage statistics from the software including but not limited to a unique + identifier, associated IP address, version number of the software, and + information on which tools and/or services in the Preview are being used and how + they are being used. Before any of this information is collected, the Preview + will notify you and seek your consent. If you withhold consent, the information + will not be collected. + + 6.2 The data collected is examined in the aggregate to improve the Preview and + is maintained in accordance with Google's Privacy Policy located at + http://www.google.com/policies/privacy/. + + 7. Third Party Applications + + 7.1 If you use the Preview to run applications developed by a third party or + that access data, content or resources provided by a third party, you agree that + Google is not responsible for those applications, data, content, or resources. + You understand that all data, content or resources which you may access through + such third party applications are the sole responsibility of the person from + which they originated and that Google is not liable for any loss or damage that + you may experience as a result of the use or access of any of those third party + applications, data, content, or resources. + + 7.2 You should be aware the data, content, and resources presented to you + through such a third party application may be protected by intellectual property + rights which are owned by the providers (or by other persons or companies on + their behalf). You may not modify, rent, lease, loan, sell, distribute or create + derivative works based on these data, content, or resources (either in whole or + in part) unless you have been specifically given permission to do so by the + relevant owners. + + 7.3 You acknowledge that your use of such third party applications, data, + content, or resources may be subject to separate terms between you and the + relevant third party. + + 8. Using Google APIs + + 8.1 Google APIs + + 8.1.1 If you use any API to retrieve data from Google, you acknowledge that the + data may be protected by intellectual property rights which are owned by Google + or those parties that provide the data (or by other persons or companies on + their behalf). Your use of any such API may be subject to additional Terms of + Service. You may not modify, rent, lease, loan, sell, distribute or create + derivative works based on this data (either in whole or in part) unless allowed + by the relevant Terms of Service. + + 8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge + and agree that you shall retrieve data only with the user's explicit consent and + only when, and for the limited purposes for which, the user has given you + permission to do so. + + 9. Terminating the License Agreement + + 9.1 the License Agreement will continue to apply until terminated by either you + or Google as set out below. + + 9.2 If you want to terminate the License Agreement, you may do so by ceasing + your use of the Preview and any relevant developer credentials. + + 9.3 Google may at any time, terminate the License Agreement, with or without + cause, upon notice to you. + + 9.4 The License Agreement will automatically terminate without notice or other + action upon the earlier of: (A) when Google ceases to provide the Preview or + certain parts of the Preview to users in the country in which you are resident + or from which you use the service; and (B) Google issues a final release version + of the Android SDK. + + 9.5 When the License Agreement is terminated, the license granted to you in the + License Agreement will terminate, you will immediately cease all use of the + Preview, and the provisions of paragraphs 10, 11, 12 and 14 shall survive + indefinitely. + + 10. DISCLAIMERS + + 10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE PREVIEW IS AT YOUR + SOLE RISK AND THAT THE PREVIEW IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT + WARRANTY OF ANY KIND FROM GOOGLE. + + 10.2 YOUR USE OF THE PREVIEW AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED + THROUGH THE USE OF THE PREVIEW IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE + SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR + LOSS OF DATA THAT RESULTS FROM SUCH USE. WITHOUT LIMITING THE FOREGOING, YOU + UNDERSTAND THAT THE PREVIEW IS NOT A STABLE RELEASE AND MAY CONTAIN ERRORS, + DEFECTS AND SECURITY VULNERABILITIES THAT CAN RESULT IN SIGNIFICANT DAMAGE, + INCLUDING THE COMPLETE, IRRECOVERABLE LOSS OF USE OF YOUR COMPUTER SYSTEM OR + OTHER DEVICE. + + 10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY + KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED + WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE + AND NON-INFRINGEMENT. + + 11. LIMITATION OF LIABILITY + + 11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND + AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF + LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR + EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, + WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE + BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING. + + 12. Indemnification + + 12.1 To the maximum extent permitted by law, you agree to defend, indemnify and + hold harmless Google, its affiliates and their respective directors, officers, + employees and agents from and against any and all claims, actions, suits or + proceedings, as well as any and all losses, liabilities, damages, costs and + expenses (including reasonable attorneys’ fees) arising out of or accruing from + (a) your use of the Preview, (b) any application you develop on the Preview that + infringes any Intellectual Property Rights of any person or defames any person + or violates their rights of publicity or privacy, and (c) any non-compliance by + you of the License Agreement. + + 13. Changes to the License Agreement + + 13.1 Google may make changes to the License Agreement as it distributes new + versions of the Preview. When these changes are made, Google will make a new + version of the License Agreement available on the website where the Preview is + made available. + + 14. General Legal Terms + + 14.1 the License Agreement constitutes the whole legal agreement between you and + Google and governs your use of the Preview (excluding any services which Google + may provide to you under a separate written agreement), and completely replaces + any prior agreements between you and Google in relation to the Preview. + + 14.2 You agree that if Google does not exercise or enforce any legal right or + remedy which is contained in the License Agreement (or which Google has the + benefit of under any applicable law), this will not be taken to be a formal + waiver of Google's rights and that those rights or remedies will still be + available to Google. + + 14.3 If any court of law, having the jurisdiction to decide on this matter, + rules that any provision of the License Agreement is invalid, then that + provision will be removed from the License Agreement without affecting the rest + of the License Agreement. The remaining provisions of the License Agreement will + continue to be valid and enforceable. + + 14.4 You acknowledge and agree that each member of the group of companies of + which Google is the parent shall be third party beneficiaries to the License + Agreement and that such other companies shall be entitled to directly enforce, + and rely upon, any provision of the License Agreement that confers a benefit on + (or rights in favor of) them. Other than this, no other person or company shall + be third party beneficiaries to the License Agreement. + + 14.5 EXPORT RESTRICTIONS. THE PREVIEW IS SUBJECT TO UNITED STATES EXPORT LAWS + AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS + AND REGULATIONS THAT APPLY TO THE PREVIEW. THESE LAWS INCLUDE RESTRICTIONS ON + DESTINATIONS, END USERS AND END USE. + + 14.6 The License Agreement may not be assigned or transferred by you without the + prior written approval of Google, and any attempted assignment without such + approval will be void. You shall not delegate your responsibilities or + obligations under the License Agreement without the prior written approval of + Google. + + 14.7 The License Agreement, and your relationship with Google under the License + Agreement, shall be governed by the laws of the State of California without + regard to its conflict of laws provisions. You and Google agree to submit to the + exclusive jurisdiction of the courts located within the county of Santa Clara, + California to resolve any legal matter arising from the License Agreement. + Notwithstanding this, you agree that Google shall still be allowed to apply for + injunctive remedies (or an equivalent type of urgent legal relief) in any + jurisdiction. json: android-sdk-preview-2015.json - yml: android-sdk-preview-2015.yml + yaml: android-sdk-preview-2015.yml html: android-sdk-preview-2015.html - text: android-sdk-preview-2015.LICENSE + license: android-sdk-preview-2015.LICENSE - license_key: anepokis-1.0 + category: Copyleft spdx_license_key: LicenseRef-scancode-anepokis-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + Anepokis License v. 1.0 + + This Anepokis License (the "License") applies to any original work of + authorship (the "Original Work") whose owner (the "Licensor") has placed + the following licensing notice adjacent to the copyright notice for the + Original Work: + + Licensed under the Anepokis License version 1.0 + + or has expressed by any other means his willingness to license the + Original Work under this License. + + 1. Grant of Copyright License. + + Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable + license, for the duration of the copyright, to do the following: + + a) to reproduce the Original Work in copies, either alone or as part of a + collective work; + + b) to translate, adapt, alter, transform, modify, or arrange the Original + Work, thereby creating derivative works ("Derivative Works") based upon + the Original Work; + + c) to distribute or communicate copies of the Original Work and Derivative + Works to the public, with the proviso that copies of Original Work or + Derivative Works that You distribute or communicate shall be licensed + under this Anepokis License; + + d) to perform the Original Work publicly; and + + e) to display the Original Work publicly. + + 2. Grant of Patent License. + + Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable + license, under patent claims owned or controlled by the Licensor that are + embodied in the Original Work as furnished by the Licensor, for the duration + of the patents, to make, use, sell, offer for sale, have made, and import the + Original Work and Derivative Works. + + 3. Grant of Source Code License. + + The term "Source Code" means the preferred form of the Original Work for making + modifications to it and all available documentation describing how to modify + the Original Work. Licensor agrees to provide a machine-readable copy of the + Source Code of the Original Work along with each copy of the Original Work that + Licensor distributes. Licensor reserves the right to satisfy this obligation by + placing a machine-readable copy of the Source Code in an information repository + reasonably calculated to permit inexpensive and convenient access by You for as + long as Licensor continues to distribute the Original Work. + + 4. Exclusions From License Grant. + + Neither the names of Licensor, nor the names of any contributors to the + Original Work, nor any of their trademarks or service marks, may be used to + endorse or promote products derived from this Original Work without express + prior permission of the Licensor. Except as expressly stated herein, nothing in + this License grants any license to Licensor's trademarks, copyrights, patents, + trade secrets or any other intellectual property. No patent license is granted + to make, use, sell, offer for sale, have made, or import embodiments of any + patent claims other than the licensed claims defined in Section 2. No license + is granted to the trademarks of Licensor even if such marks are included in the + Original Work. Nothing in this License shall be interpreted to prohibit Licensor + from licensing under terms different from this License any Original Work that + Licensor otherwise would have a right to license. + + 5. External Deployment. + + The term "External Deployment" means the use, distribution, or communication of + the Original Work or Derivative Works in any way such that the Original Work or + Derivative Works may be used by anyone other than You, whether those works are + distributed or communicated to those persons or made available as an application + intended for use over a network. As an express condition for the grants of + license hereunder, You must treat any External Deployment by You of the Original + Work or a Derivative Work as a distribution under Section 1(c). + + 6. Attribution Rights. + + You must retain, in the Source Code of any Derivative Works that You create, + all copyright, patent, or trademark notices from the Source Code of the + Original Work, as well as any notices of licensing and any descriptive text + identified therein as an "Attribution Notice." You must cause the Source Code + for any Derivative Works that You create to carry a prominent Attribution + Notice reasonably calculated to inform recipients that You have modified the + Original Work. + + 7. Warranty of Provenance and Disclaimer of Warranty. + + Licensor warrants that the copyright in and to the Original Work and the + patent rights granted herein by Licensor are owned by the Licensor or are + sublicensed to You under the terms of this License with the permission of + the contributor(s) of those copyrights and patent rights. Except as expressly + stated in the immediately preceding sentence, the Original Work is provided + under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or + implied, including, without limitation, the warranties of non-infringement, + merchantability or fitness for a particular purpose. THE ENTIRE RISK AS TO THE + QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY + constitutes an essential part of this License. No license to the Original Work + is granted by this License except under this disclaimer. + + 8. Limitation of Liability. + + Under no circumstances and under no legal theory, whether in tort (including + negligence), contract, or otherwise, shall the Licensor be liable to anyone for + any indirect, special, incidental, or consequential damages of any character + arising as a result of this License or the use of the Original Work including, + without limitation, damages for loss of goodwill, work stoppage, computer + failure or malfunction, or any and all other commercial damages or losses. + This limitation of liability shall not apply to the extent applicable law + prohibits such limitation. + + 9. Acceptance and Termination. + + If, at any time, You exercise any rights granted to You by Section 1 of this + License, that exercising indicates your irrevocable acceptance of this License + and all of its terms and conditions. Nothing in this License is intended to + affect copyright exceptions and limitations (including "fair use" or "fair + dealing"). This License shall terminate immediately and You may no longer + exercise any of the rights granted to You by this License upon your failure to + honor the conditions in Section 1(c). + + 10. Termination for Patent Action. + + This License shall terminate automatically and You may no longer exercise any + of the rights granted to You by this License as of the date You commence an + action, including a cross-claim or counterclaim, against Licensor or any + licensee alleging that the Original Work infringes a patent. This termination + provision shall not apply for an action alleging patent infringement by + combinations of the Original Work with other software or hardware. + + 11. Jurisdiction, Venue and Governing Law. + + Any action or suit relating to this License may be brought only in the courts + of a jurisdiction wherein the Licensor resides or in which Licensor conducts + its primary business, and under the laws of that jurisdiction excluding its + conflict-of-law provisions. The application of the United Nations Convention on + Contracts for the International Sale of Goods is expressly excluded. Any use of + the Original Work outside the scope of this License or after its termination + shall be subject to the requirements and penalties of copyright or patent law + in the appropriate jurisdiction. This section shall survive the termination of + this License. + + 12. Attorneys' Fees. + + In any action to enforce the terms of this License or seeking damages relating + thereto, the prevailing party shall be entitled to recover its costs and + expenses, including, without limitation, reasonable attorneys' fees and costs + incurred in connection with such action, including any appeal of such action. + This section shall survive the termination of this License. + + 13. Miscellaneous. + + If any provision of this License is held to be unenforceable, such provision + shall be reformed only to the extent necessary to make it enforceable. + + 14. Definition of "You" in This License. + + "You" throughout this License, whether in upper or lower case, means an + individual or a legal entity exercising rights under, and complying with all of + the terms of, this License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with you. For purposes + of this definition, "control" means (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. + + 15. Right to Use. + + You may use the Original Work in all ways not otherwise restricted or + conditioned by this License or by law, and Licensor promises not to interfere + with or be responsible for such uses by You. + + 16. Modification of This License. + + This License is Copyright 2005 Lawrence Rosen, Copyright 2020 Salif Mehmed. + Permission is granted to copy, distribute, or communicate this License without + modification. Nothing in this License permits You to modify this License as + applied to the Original Work or to Derivative Works. However, You may modify + the text of this License and copy, distribute or communicate your modified + version (the "Modified License") and apply it to other original works of + authorship subject to the following conditions: (i) You may not indicate in + any way that your Modified License is the "Anepokis License" and you may not + use this name in the name of your Modified License; (ii) You must replace + the notice specified in the first paragraph above with the notice "Licensed + under " or with a notice of your own that is not + confusingly similar to the notice in this License; and (iii) You may not claim + that your original works are open source software unless your Modified License + has been approved by Open Source Initiative (OSI) and You comply with its + license review and certification process. json: anepokis-1.0.json - yml: anepokis-1.0.yml + yaml: anepokis-1.0.yml html: anepokis-1.0.html - text: anepokis-1.0.LICENSE + license: anepokis-1.0.LICENSE - license_key: anti-capitalist-1.4 + category: Free Restricted spdx_license_key: LicenseRef-scancode-anti-capitalist-1.4 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + ANTI-CAPITALIST SOFTWARE LICENSE (v 1.4) + + This is anti-capitalist software, released for free use by individuals and organizations that do not operate by capitalist principles. + + Permission is hereby granted, free of charge, to any person or organization (the "User") obtaining a copy of this software and associated documentation files (the "Software"), to use, copy, modify, merge, distribute, and/or sell copies of the Software, subject to the following conditions: + + 1. The above copyright notice and this permission notice shall be included in all copies or modified versions of the Software. + + 2. The User is one of the following: + a. An individual person, laboring for themselves + b. A non-profit organization + c. An educational institution + d. An organization that seeks shared profit for all of its members, and allows non-members to set the cost of their labor + + 3. If the User is an organization with owners, then all owners are workers and all workers are owners with equal equity and/or equal vote. + + 4. If the User is an organization, then the User is not law enforcement or military, or working for or under either. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. json: anti-capitalist-1.4.json - yml: anti-capitalist-1.4.yml + yaml: anti-capitalist-1.4.yml html: anti-capitalist-1.4.html - text: anti-capitalist-1.4.LICENSE + license: anti-capitalist-1.4.LICENSE - license_key: antlr-pd + category: Permissive spdx_license_key: ANTLR-PD other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + ANTLR SOFTWARE RIGHTS + + ANTLR 1989-2006 Developed by Terence Parr + Partially supported by University of San Francisco & jGuru.com + + We reserve no legal rights to the ANTLR --it is fully in the public domain. An + individual or company may do whatever they wish with source code distributed + with ANTLR or the code generated by ANTLR, including the incorporation of ANTLR, + or its output, into commerical software. + + We encourage users to develop software with ANTLR. However, we do ask that + credit is given to us for developing ANTLR. By "credit", we mean that if you use + ANTLR or incorporate any source code into one of your programs (commercial + product, research project, or otherwise) that you acknowledge this fact + somewhere in the documentation, research report, etc... If you like ANTLR and + have developed a nice tool with the output, please mention that you developed it + using ANTLR. In addition, we ask that the headers remain intact in our source + code. As long as these guidelines are kept, we expect to continue enhancing this + system and expect to make other tools available as they are completed. + + The primary ANTLR guy: + + Terence Parr + parrt@cs.usfca.edu + parrt@antlr.org json: antlr-pd.json - yml: antlr-pd.yml + yaml: antlr-pd.yml html: antlr-pd.html - text: antlr-pd.LICENSE + license: antlr-pd.LICENSE - license_key: antlr-pd-fallback + category: Public Domain spdx_license_key: ANTLR-PD-fallback other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + ANTLR 2 License + + We reserve no legal rights to the ANTLR --it is fully in the public domain. An + individual or company may do whatever they wish with source code distributed + with ANTLR or the code generated by ANTLR, including the incorporation of ANTLR, + or its output, into commerical software. + + We encourage users to develop software with ANTLR. However, we do ask that + credit is given to us for developing ANTLR. By "credit", we mean that if you use + ANTLR or incorporate any source code into one of your programs (commercial + product, research project, or otherwise) that you acknowledge this fact + somewhere in the documentation, research report, etc... If you like ANTLR and + have developed a nice tool with the output, please mention that you developed it + using ANTLR. In addition, we ask that the headers remain intact in our source + code. As long as these guidelines are kept, we expect to continue enhancing this + system and expect to make other tools available as they are completed. + + In countries where the Public Domain status of the work may not be valid, the + author grants a copyright licence to the general public to deal in the work + without restriction and permission to sublicence derivates under the terms of + any (OSI approved) Open Source licence. json: antlr-pd-fallback.json - yml: antlr-pd-fallback.yml + yaml: antlr-pd-fallback.yml html: antlr-pd-fallback.html - text: antlr-pd-fallback.LICENSE + license: antlr-pd-fallback.LICENSE - license_key: anu-license + category: Permissive spdx_license_key: LicenseRef-scancode-anu-license other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software and its + documentation is hereby granted, provided that the above copyright notice + appears in all copies. This software is provided without any warranty, express + or implied. The Australian National University makes no representations about + the suitability of this software for any purpose. + + IN NO EVENT SHALL THE AUSTRALIAN NATIONAL UNIVERSITY BE LIABLE TO ANY PARTY + FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT + OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE AUSTRALIAN + NATIONAL UNIVERSITY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + THE AUSTRALIAN NATIONAL UNIVERSITY 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 AUSTRALIAN NATIONAL UNIVERSITY HAS NO OBLIGATION TO + PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. json: anu-license.json - yml: anu-license.yml + yaml: anu-license.yml html: anu-license.html - text: anu-license.LICENSE + license: anu-license.LICENSE - license_key: aop-pd + category: Public Domain spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Public Domain + text: | + The person or persons who have associated work with this document (the "Dedicator" or "Certifier") hereby either (a) certifies that, to the best of his knowledge, the work of authorship identified is in the public domain of the country from which the work is published, or (b) hereby dedicates whatever copyright the dedicators holds in the work of authorship identified below (the "Work") to the public domain. A certifier, moreover, dedicates any copyright interest he may have in the associated work, and for these purposes, is described as a "dedicator" below. + + A certifier has taken reasonable steps to verify the copyright status of this work. Certifier recognizes that his good faith efforts may not shield him from liability if in fact the work certified is not in the public domain. + + Dedicator makes this dedication for the benefit of the public at large and to the detriment of the Dedicator's heirs and successors. Dedicator intends this dedication to be an overt act of relinquishment in perpetuity of all present and future rights under copyright law, whether vested or contingent, in the Work. Dedicator understands that such relinquishment of all rights includes the relinquishment of all rights to enforce (by lawsuit or otherwise) those copyrights in the Work. + + Dedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived. json: aop-pd.json - yml: aop-pd.yml + yaml: aop-pd.yml html: aop-pd.html - text: aop-pd.LICENSE + license: aop-pd.LICENSE - license_key: apache-1.0 + category: Permissive spdx_license_key: Apache-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Redistribution and use in source and binary forms, with or without\nmodification, are\ + \ permitted provided that the following conditions\nare met:\n\n1. Redistributions of source\ + \ code must retain the above copyright\n notice, this list of conditions and the following\ + \ disclaimer. \n\n2. Redistributions in binary form must reproduce the above copyright\n\ + \ notice, this list of conditions and the following disclaimer in\n the documentation\ + \ and/or other materials provided with the\n distribution.\n\n3. All advertising materials\ + \ mentioning features or use of this\n software must display the following acknowledgment:\n\ + \ \"This product includes software developed by the Apache Group\n for use in the Apache\ + \ HTTP server project (http://www.apache.org/).\"\n\n4. The names \"Apache Server\" and\ + \ \"Apache Group\" must not be used to\n endorse or promote products derived from this\ + \ software without\n prior written permission. For written permission, please contact\n\ + \ apache@apache.org.\n\n5. Products derived from this software may not be called \"Apache\"\ + \n nor may \"Apache\" appear in their names without prior written\n permission of the\ + \ Apache Group.\n\n6. Redistributions of any form whatsoever must retain the following\n\ + \ acknowledgment:\n \"This product includes software developed by the Apache Group\n\ + \ for use in the Apache HTTP server project (http://www.apache.org/).\"\n\nTHIS SOFTWARE\ + \ IS PROVIDED BY THE APACHE GROUP ``AS IS'' AND ANY\nEXPRESSED OR IMPLIED WARRANTIES, INCLUDING,\ + \ BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n\ + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE APACHE GROUP OR\nITS CONTRIBUTORS BE LIABLE\ + \ FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\ + \ BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA,\ + \ OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\ + \ WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n\ + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\nOF THE POSSIBILITY\ + \ OF SUCH DAMAGE.\n====================================================================\n\ + \nThis software consists of voluntary contributions made by many\nindividuals on behalf\ + \ of the Apache Group and was originally based\non public domain software written at the\ + \ National Center for\nSupercomputing Applications, University of Illinois, Urbana-Champaign.\n\ + For more information on the Apache Group and the Apache HTTP server\nproject, please see\ + \ ." json: apache-1.0.json - yml: apache-1.0.yml + yaml: apache-1.0.yml html: apache-1.0.html - text: apache-1.0.LICENSE + license: apache-1.0.LICENSE - license_key: apache-1.1 + category: Permissive spdx_license_key: Apache-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The Apache Software License, Version 1.1 + + Copyright (c) 2000 The Apache Software 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: + + 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 end-user documentation included with the redistribution, + if any, must include the following acknowledgment: + "This product includes software developed by the + Apache Software Foundation (http://www.apache.org/)." + Alternately, this acknowledgment may appear in the software itself, + if and wherever such third-party acknowledgments normally appear. + + 4. The names "Apache" and "Apache Software Foundation" must + not be used to endorse or promote products derived from this + software without prior written permission. For written + permission, please contact apache@apache.org. + + 5. Products derived from this software may not be called "Apache", + nor may "Apache" appear in their name, without prior written + permission of the Apache Software Foundation. + + THIS SOFTWARE IS PROVIDED ``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 APACHE SOFTWARE FOUNDATION 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. json: apache-1.1.json - yml: apache-1.1.yml + yaml: apache-1.1.yml html: apache-1.1.html - text: apache-1.1.LICENSE + license: apache-1.1.LICENSE - license_key: apache-2.0 + category: Permissive spdx_license_key: Apache-2.0 other_spdx_license_keys: - LicenseRef-Apache - LicenseRef-Apache-2.0 is_exception: no is_deprecated: no - category: Permissive + text: | + 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. json: apache-2.0.json - yml: apache-2.0.yml + yaml: apache-2.0.yml html: apache-2.0.html - text: apache-2.0.LICENSE + license: apache-2.0.LICENSE - license_key: apache-2.0-linking-exception + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Permissive + text: | + EXCEPTION TO THE APACHE 2.0 LICENSE + + As a special exception to the Apache License 2.0 (and referring to the + definitions in Section 1 of this license), you may link, statically or + dynamically, the "Work" to other modules to produce an executable file + containing portions of the "Work", and distribute that executable file + in "Object" form under the terms of your choice, without any of the + additional requirements listed in Section 4 of the Apache License 2.0. + This exception applies only to redistributions in "Object" form (not + "Source" form) and only if no modifications have been made to the "Work". json: apache-2.0-linking-exception.json - yml: apache-2.0-linking-exception.yml + yaml: apache-2.0-linking-exception.yml html: apache-2.0-linking-exception.html - text: apache-2.0-linking-exception.LICENSE + license: apache-2.0-linking-exception.LICENSE - license_key: apache-2.0-runtime-library-exception + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Permissive + text: | + ## Runtime Library Exception to the Apache 2.0 License: ## + + As an exception, if you use this Software to compile your source code and + portions of this Software are embedded into the binary product as a result, + you may redistribute such product without providing attribution as would + otherwise be required by Sections 4(a), 4(b) and 4(d) of the License. json: apache-2.0-runtime-library-exception.json - yml: apache-2.0-runtime-library-exception.yml + yaml: apache-2.0-runtime-library-exception.yml html: apache-2.0-runtime-library-exception.html - text: apache-2.0-runtime-library-exception.LICENSE + license: apache-2.0-runtime-library-exception.LICENSE - license_key: apache-due-credit + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + Redistribution and use of this software and associated documentation + ("Software"), with or without modification, are permitted provided that the + following conditions are met: + + 1. Redistributions of source code must retain copyright statements and + notices. Redistributions must also contain a copy of this document. + + 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 "Author" must not be used to endorse or promote products derived + from this Software without prior written permission of Author. For + written permission, please contact Author. + + 4. Products derived from this Software may not be called "Product" nor may + "Author" appear in their names without prior written permission of Author. + Product is a registered trademark of Author. + + 5. Due credit should be given to Author. + + THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ''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 AUTHOR 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. json: apache-due-credit.json - yml: apache-due-credit.yml + yaml: apache-due-credit.yml html: apache-due-credit.html - text: apache-due-credit.LICENSE + license: apache-due-credit.LICENSE - license_key: apache-exception-llvm + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Permissive + text: | + ---- LLVM Exceptions to the Apache 2.0 License ---- + + As an exception, if, as a result of your compiling your source code, portions + of this Software are embedded into an Object form of such source code, you + may redistribute such embedded portions in such Object form without complying + with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + + In addition, if you combine or link compiled forms of this Software with + software that is licensed under the GPLv2 ("Combined Software") and if a + court of competent jurisdiction determines that the patent provision (Section + 3),the indemnity provision (Section 9) or other Section of the License + conflicts with the conditions of the GPLv2, you may retroactively and + prospectively choose to deem waived or otherwise exclude such Section(s) of + the License, but only in their entirety and only with respect to the Combined + Software. json: apache-exception-llvm.json - yml: apache-exception-llvm.yml + yaml: apache-exception-llvm.yml html: apache-exception-llvm.html - text: apache-exception-llvm.LICENSE + license: apache-exception-llvm.LICENSE - license_key: apache-patent-exception + category: Permissive spdx_license_key: LicenseRef-scancode-apache-patent-exception other_spdx_license_keys: - LicenseRef-scancode-apache-patent-provision-exception is_exception: yes is_deprecated: no - category: Permissive + text: | + (Optional) Exceptions to the Apache 2.0 License: + ================================================ + + In addition, if you combine or link compiled forms of this Software with + software that is licensed under the GPLv2 or LGPLv2 (“Combined Software”) and if + a court of competent jurisdiction determines that the patent provision (Section + 3), the indemnity provision (Section 9) or other Section of the License + conflicts with the conditions of the GPLv2 or LGPLv2, you may retroactively and + prospectively choose to deem waived or otherwise exclude such Section(s) of the + License, but only in their entirety and only with respect to the Combined + Software. json: apache-patent-exception.json - yml: apache-patent-exception.yml + yaml: apache-patent-exception.yml html: apache-patent-exception.html - text: apache-patent-exception.LICENSE + license: apache-patent-exception.LICENSE - license_key: apache-patent-provision-exception + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Permissive + text: | + (Optional) Exceptions to the Apache 2.0 License: + ================================================ + + In addition, if you combine or link compiled forms of this Software with + software that is licensed under the GPLv2 or LGPLv2 (“Combined Software”) and if + a court of competent jurisdiction determines that the patent provision (Section + 3), the indemnity provision (Section 9) or other Section of the License + conflicts with the conditions of the GPLv2 or LGPLv2, you may retroactively and + prospectively choose to deem waived or otherwise exclude such Section(s) of the + License, but only in their entirety and only with respect to the Combined + Software. json: apache-patent-provision-exception.json - yml: apache-patent-provision-exception.yml + yaml: apache-patent-provision-exception.yml html: apache-patent-provision-exception.html - text: apache-patent-provision-exception.LICENSE + license: apache-patent-provision-exception.LICENSE - license_key: apafml + category: Permissive spdx_license_key: APAFML other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This file and the 14 PostScript(R) AFM files it accompanies may be used, copied, + and distributed for any purpose and without charge, with or without + modification, provided that all copyright notices are retained; that the AFM + files are not distributed without this file; that all modifications to this file + or any of the AFM files are prominently noted in the modified file(s); and that + this paragraph is not modified. Adobe Systems has no responsibility or + obligation to support the use of the AFM files. json: apafml.json - yml: apafml.yml + yaml: apafml.yml html: apafml.html - text: apafml.LICENSE + license: apafml.LICENSE - license_key: apl-1.1 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-apl-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "ACADEMIC PUBLIC LICENSE\n version 1.1\n\n \ + \ Copyright (C) 2003, 2010, 2015 Andras Varga\n\n\n Preamble\n\ + \n This license contains the terms and conditions of using OMNeT++ in\nnoncommercial settings:\ + \ at academic institutions for teaching and research\nuse and for personal or educational\ + \ purposes. You will find that this\nlicense provides noncommercial users of OMNeT++ with\ + \ rights that are\nsimilar to the well-known GNU General Public License, yet it retains\ + \ the\npossibility for OMNeT++ authors to financially support the development by\nselling\ + \ commercial licenses. In fact, if you intend to use OMNeT++ in a\n\"for-profit\" environment,\ + \ where research is conducted to develop or enhance\na product, is used in a commercial\ + \ service offering, or when an entity uses\nOMNeT++ to participate in government-funded,\ + \ EU-funded, military or similar\nresearch projects, then you need to obtain a commercial\ + \ license (OMNEST).\nIn that case, or if you are unsure, please visit www.omnest.com to\ + \ inquire about \ncommercial licenses.\n\n What are the rights given to noncommercial users?\ + \ Similarly to GPL, you\nhave the right to use the software, to distribute copies, to receive\ + \ source\ncode, to change the software and distribute your modifications or the\nmodified\ + \ software. Also similarly to the GPL, if you distribute verbatim or\nmodified copies of\ + \ this software, they must be distributed under this\nlicense.\n\n By modeling the GPL,\ + \ this license guarantees that you're safe when using\nOMNeT++ in your work, for teaching\ + \ or research. This license guarantees\nthat OMNeT++ will remain available free of charge\ + \ for nonprofit use. You\ncan modify OMNeT++ to your purposes, and you can also share your\ + \ modifications.\nEven in the unlikely case of the authors abandoning OMNeT++ entirely,\ + \ this\nlicense permits anyone to continue developing it from the last release, and\nto\ + \ create further releases under this license.\n\n We believe that the combination of noncommercial\ + \ open-source and commercial\nlicensing will be beneficial for the whole user community,\ + \ because income from\ncommercial licenses will enable faster development and a higher level\ + \ of\nsoftware quality, while further enjoying the informal, open communication\nand collaboration\ + \ channels of open source development.\n\n The precise terms and conditions for using,\ + \ copying, distribution and\nmodification follow.\n\n\n ACADEMIC\ + \ PUBLIC LICENSE\n\n TERMS AND CONDITIONS FOR USE, COPYING, DISTRIBUTION AND MODIFICATION\n\ + \n 0. Definitions\n\n \"Program\" means a copy of OMNeT++, which is said to be distributed\ + \ under\nthis Academic Public License.\n\n \"Work based on the Program\" means either the\ + \ Program or any derivative work\nunder copyright law: that is to say, a work containing\ + \ the Program or a\nportion of it, either verbatim or with modifications and/or translated\ + \ into\nanother language. (Hereinafter, translation is included without limitation\nin\ + \ the term \"modification\".)\n\n \"Using the Program\" means any act of creating executables\ + \ that contain or\ndirectly use libraries that are part of the Program, running any of the\n\ + tools that are part of the Program, or creating works based on the Program.\n\nEach licensee\ + \ is addressed as \"you\".\n\n 1. Permission is hereby granted to use the Program free\ + \ of charge for\nnoncommercial purposes, including teaching and academic research at\nuniversities,\ + \ colleges and other educational institutions and personal\nnon-profit purposes. For using\ + \ the Program for commercial purposes,\nincluding but not restricted to consulting activities,\ + \ design of commercial\nhardware or software networking products, and joint research with\ + \ a\ncommercial entity, government-funded, EU-funded, military or similar\nresearch projects,\ + \ you have to contact the author. Or you can also visit www.omnest.com\nfor an appropriate\ + \ license. Permission is also granted to use the Program\nfor a reasonably limited period\ + \ of time for the purpose of evaluating its\nusefulness for a particular purpose.\n\n 2.\ + \ You may copy and distribute verbatim copies of the Program's\nsource code as you receive\ + \ it, in any medium, provided that you\nconspicuously and appropriately publish on each\ + \ copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\n\ + notices that refer to this License and to the absence of any warranty;\nand give any other\ + \ recipients of the Program a copy of this License\nalong with the Program.\n\n 3. You\ + \ may modify your copy or copies of the Program or any portion\nof it, thus forming a work\ + \ based on the Program, and copy and\ndistribute such modifications or work under the terms\ + \ of Section 2\nabove, provided that you also meet all of these conditions:\n\n a) You\ + \ must cause the modified files to carry prominent notices\n stating that you changed\ + \ the files and the date of any change.\n\n b) You must cause any work that you distribute\ + \ or publish, that in\n whole or in part contains or is derived from the Program or any\n\ + \ part thereof, to be licensed as a whole at no charge to all third\n parties under\ + \ the terms of this License.\n\nThese requirements apply to the modified work as a whole.\ + \ If\nidentifiable sections of that work are not derived from the Program,\nand can be\ + \ reasonably considered independent and separate works in\nthemselves, then this License,\ + \ and its terms, do not apply to those\nsections when you distribute them as separate works.\ + \ But when you\ndistribute the same sections as part of a whole which is a work based\n\ + on the Program, the distribution of the whole must be on the terms of\nthis License, whose\ + \ regulations for other licensees extend to the\nentire whole, and thus to each and every\ + \ part regardless of who wrote it.\n(If the same, independent sections are distributed as\ + \ part of a package\nthat is otherwise reliant on, or is based on the Program, then the\n\ + distribution of the whole package, including but not restricted to the\nindependent section,\ + \ must be on the unmodified terms of this License,\nregadless of who the author of the included\ + \ sections was.)\n\nThus, it is not the intent of this section to claim rights or contest\n\ + your rights to work written entirely by you; rather, the intent is to\nexercise the right\ + \ to control the distribution of derivative or\ncollective works based or reliant on the\ + \ Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith\ + \ the Program (or with a work based on the Program) on a volume of\nstorage or distribution\ + \ medium does not bring the other work under\nthe scope of this License.\n\n 4. You may\ + \ copy and distribute the Program (or a work based on it,\nunder Section 3) in object code\ + \ or executable form under the terms of\nSections 2 and 3 above provided that you also do\ + \ one of the following:\n\n a) Accompany it with the complete corresponding machine-readable\n\ + \ source code, which must be distributed under the terms of Sections\n 2 and 3 above\ + \ on a medium customarily used for software interchange; or,\n\n b) Accompany it with\ + \ a written offer, valid for at least three\n years, to give any third party, for a charge\ + \ no more than your\n cost of physically performing source distribution, a complete\n\ + \ machine-readable copy of the corresponding source code, to be\n distributed under\ + \ the terms of Sections 2 and 3 above on a medium\n customarily used for software interchange;\ + \ or,\n\n c) Accompany it with the information you received as to the offer\n to distribute\ + \ corresponding source code. (This alternative is\n allowed only for noncommercial distribution\ + \ and only if you received\n the program in object code or executable form with such\ + \ an offer,\n in accord with Subsection b) above.)\n\nThe source code for a work means\ + \ the preferred form of the work for\nmaking modifications to it. For an executable work,\ + \ complete source\ncode means all the source code for all modules it contains, plus any\n\ + associated interface definition files, plus the scripts used to\ncontrol compilation and\ + \ installation of the executable. However, as a\nspecial exception, the source code distributed\ + \ need not include\nanything that is normally distributed (in either source or binary\n\ + form) with the major components (compiler, kernel, and so on) of the\noperating system on\ + \ which the executable runs, unless that component\nitself accompanies the executable.\n\ + \nIf distribution of executable or object code is made by offering\naccess to copy from\ + \ a designated place, then offering equivalent\naccess to copy the source code from the\ + \ same place counts as\ndistribution of the source code, even though third parties are not\n\ + compelled to copy the source along with the object code.\n\n 5. You may not copy, modify,\ + \ sublicense, or distribute the Program\nexcept as expressly provided under this License.\ + \ Any attempt\notherwise to copy, modify, sublicense or distribute the Program is\nvoid,\ + \ and will automatically terminate your rights under this License.\nHowever, parties who\ + \ have received copies, or rights, from you under\nthis License will not have their licenses\ + \ terminated so long as such\nparties remain in full compliance.\n\n 6. You are not required\ + \ to accept this License, since you have not\nsigned it. Nothing else grants you permission\ + \ to modify or distribute\nthe Program or its derivative works; law prohibits these actions\n\ + if you do not accept this License. Therefore, by modifying or distributing\nthe Program\ + \ (or any work based on the Program), you indicate your\nacceptance of this License and\ + \ all its terms and conditions for copying,\ndistributing or modifying the Program or works\ + \ based on it, to do so.\n\n 7. Each time you redistribute the Program (or any work based\ + \ on the\nProgram), the recipient automatically receives a license from the\noriginal licensor\ + \ to copy, distribute or modify the Program subject to\nthese terms and conditions. You\ + \ may not impose any further\nrestrictions on the recipients' exercise of the rights granted\ + \ herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\ + \n 8. If, as a consequence of a court judgment or allegation of patent\ninfringement or\ + \ for any other reason (not limited to patent issues),\nconditions are imposed on you (whether\ + \ by court order, agreement or\notherwise) that contradict the conditions of this License,\ + \ they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute\ + \ so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent\ + \ obligations, then as a consequence you\nmay not distribute the Program at all. For example,\ + \ if a patent\nlicense would not permit royalty-free redistribution of the Program by\n\ + all those who receive copies directly or indirectly through you, then\nthe only way you\ + \ could satisfy both it and this License would be to\nrefrain entirely from distribution\ + \ of the Program.\n\nIf any portion of this section is held invalid or unenforceable under\n\ + any particular circumstance, the balance of the section is intended to\napply and the section\ + \ as a whole is intended to apply in other\ncircumstances.\n\n 9. If the distribution and/or\ + \ use of the Program are restricted in\ncertain countries either by patents or by copyrighted\ + \ interfaces, the\noriginal copyright holder who places the Program under this License\n\ + may add an explicit geographical distribution limitation excluding\nthose countries, so\ + \ that distribution is permitted only in or among\ncountries not thus excluded. In such\ + \ case, this License incorporates\nthe limitation as if written in the body of this License.\n\ + \n NO WARRANTY\n\n 10. BECAUSE THE PROGRAM IS LICENSED FREE\ + \ OF CHARGE, THERE IS NO WARRANTY\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE\ + \ LAW. EXCEPT WHEN\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\n\ + PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\nOR IMPLIED,\ + \ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS\ + \ FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM\ + \ IS WITH YOU. SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY\ + \ SERVICING,\nREPAIR OR CORRECTION.\n\n 11. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW\ + \ OR AGREED ON IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\ + \ AND/OR\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING\ + \ ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\nOUT OF THE USE OR INABILITY\ + \ TO USE THE PROGRAM INCLUDING BUT NOT LIMITED\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE\ + \ OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH\ + \ ANY OTHER\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY\ + \ OF SUCH DAMAGES.\n\n END OF TERMS AND CONDITIONS" json: apl-1.1.json - yml: apl-1.1.yml + yaml: apl-1.1.yml html: apl-1.1.html - text: apl-1.1.LICENSE + license: apl-1.1.LICENSE - license_key: app-s2p + category: Permissive spdx_license_key: App-s2p other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + COPYRIGHT and LICENSE + + This program is free and open software. You may use, modify, + distribute, and sell this program (and any modified variants) in any + way you wish, provided you do not restrict others from doing the same. json: app-s2p.json - yml: app-s2p.yml + yaml: app-s2p.yml html: app-s2p.html - text: app-s2p.LICENSE + license: app-s2p.LICENSE - license_key: appfire-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-appfire-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Appfire EULA\nIMPORTANT! BE SURE TO CAREFULLY READ AND UNDERSTAND ALL OF THE RIGHTS\ + \ AND RESTRICTIONS SET FORTH IN THIS END USER LICENSE AGREEMENT (“EULA”). YOU ARE NOT AUTHORIZED\ + \ TO USE THIS SOFTWARE UNLESS AND UNTIL YOU ACCEPT THE TERMS OF THIS EULA.\n\nThis EULA\ + \ is a binding legal agreement between Appfire Technologies, Inc. (hereinafter “Licensor”),\ + \ a provider of downloadable and cloud-based applications under the Bob Swift Atlassian\ + \ Add-ons and Wittified Atlassian Add-ons brand names through the Atlassian Marketplace\ + \ or any other means that interoperate with applicable products manufactured by Atlassian\ + \ Pty Ltd (“Atlassian”), and you (either an individual or a single legal entity you represent)\ + \ whose details are provided to Licensor upon purchase (hereinafter “Licensee” or “you”)\ + \ for the materials accompanying this EULA, including the accompanying computer software,\ + \ associated media, printed materials and any “online” or electronic documentation.\n\n\ + By clicking on the “I agree” (or similar button) that is presented to you at the time of\ + \ your order, or by installing, copying, downloading or otherwise using the Software, you\ + \ agree to be bound by the terms of this EULA. If you do not agree to the terms of this\ + \ EULA, you may not install, copy, download or otherwise use the Software. If you are agreeing\ + \ to this EULA on behalf of a company or other organization, you represent that you have\ + \ the authority to bind that company or organization to this EULA, and the terms Licensee,\ + \ \"you\" and “your\" refer to that company or organization. If you do not have that authority,\ + \ you may not install, copy, download or otherwise use the Software.\n\nThis is a “Publisher\ + \ EULA” as referred to in the Atlassian Marketplace Terms of Use, found at https://www.atlassian.com/licensing/marketplace/termsofuse.\n\ + \n1. Scope of the Agreement\n\nA. This EULA governs (a) Licensor’s commercially available\ + \ downloadable software products sold, or made available at no charge (“Software”), (b)\ + \ Licensor’s Software provided in a hosted or cloud-based environment (“Hosted Services”),\ + \ and (c) any support services provided by Licensor relating to the Software or Hosted Services.\ + \ Software and Hosted Services, together with related Documentation, are referred to herein\ + \ as “Products”.\n\nB. This EULA does not cover the sale or resale of Atlassian-manufactured\ + \ software, Licensor’s other professional services relating to Atlassian-manufactured software,\ + \ nor any physical hardware products provided by Licensor.\n\n2. Account Registration\n\n\ + You may need to register on the Atlassian Marketplace at https://marketplace.atlassian.com\ + \ in order to place orders or access or receive any Products. Any registration information\ + \ that you provide must be accurate, current and complete. You must also update your information\ + \ so that Licensor may send notices, statements and other information to you by email or\ + \ through your account. You are responsible for all actions taken through your accounts.\ + \ \n\n3. Orders\n\nYour order through the Atlassian Marketplace or with an authorized Reseller\ + \ (“Order”) will specify your authorized scope of use for the Products, which may include:\ + \ (a) the defined number of installations, the number of specific individuals for whom you\ + \ have paid the required fees and whom you designate through the applicable Product (“Authorized\ + \ Users”), the number of authorized servers, the number of unique data set platforms, and/or\ + \ other defined resource utilization limitations, (b) storage or capacity (for Hosted Services),\ + \ (c) numbers of licenses, copies or instances (for Software), or (d) other restrictions\ + \ or billable units (all of the above, as applicable, the “Scope of Use”). The term “Order”\ + \ also includes any applicable Product or Support Services renewal, or purchases you make\ + \ to increase or upgrade your Scope of Use. You may increase the number of Authorized Users\ + \ permitted to access your instance of the Product by placing a new Order or, in some cases,\ + \ directly through the Product.\n\n4. Grant of License\n\nThe Products are licensed, not\ + \ sold, and no ownership right is conveyed to you, irrespective of the use of terms in this\ + \ EULA such as “purchase” or “sale”.\n\nA. This EULA grants you the following rights:\n\n\ + Standard Use. For other than No-Charge Products, the Licensor grants you a perpetual (subject\ + \ to termination for breach), worldwide, non-exclusive, non-transferable, non-sub licensable\ + \ license to install and use the Software in object code only, limited to the Scope of Use\ + \ as designated in your Order.\n\nHosted Services. The Licensor grants you a monthly (paid\ + \ in advance) subscription for worldwide, non-exclusive, non-transferable, non-sub licensable\ + \ use of the Hosted Services, subject to automatic renewal for successive monthly terms\ + \ unless either Licensor or you notifies the other of non-renewal or Licensor ceases to\ + \ make a particular Hosted Service available. If you cancel, your subscription will terminate\ + \ at the end of the then-current billing cycle, but you will not be entitled to any credits\ + \ or refunds for amounts accrued or paid prior to such termination. You acknowledge that\ + \ Hosted Services are on-line, subscription-based products, hosted by Licensor and/or Atlassian,\ + \ and that Licensor and/or Atlassian may make changes to the Hosted Services from time to\ + \ time.\n\nNo-Charge Products. The Licensor may offer you a time-limited, worldwide, non-exclusive,\ + \ non-transferable, non-sublicensable limited license for certain Products at no charge,\ + \ including free accounts, trial use, and access to Beta Versions as defined below (“No-Charge\ + \ Products”). Your use of No-Charge Products is subject to any additional terms specified\ + \ by Licensor and is only permitted for the evaluation period designated by Licensor. After\ + \ the evaluation period is expired you must abide by the Standard Use rights, or must remove\ + \ and delete all copies of the Software in your possession. You may not use No-Charge Products\ + \ for competitive analysis or similar purposes. Licensor may terminate your right to use\ + \ No-Charge Products at any time and for any reason in its sole discretion, without liability\ + \ to you. You understand that any pre-release and beta products (“Beta Versions”) are still\ + \ under development, may be inoperable or incomplete and are likely to contain more errors\ + \ and bugs than generally available Products. Licensor makes no promises that any Beta Versions\ + \ will ever be made generally available. In some circumstances, Licensor may charge a fee\ + \ in order to allow you to access Beta Versions, but the Beta Versions will still remain\ + \ subject to this paragraph. All information regarding the characteristics, features or\ + \ performance of Beta Versions constitutes Licensor’s Confidential Information. To the maximum\ + \ extent permitted by applicable law, Licensor disclaims all obligations or liabilities\ + \ with respect to No-Charge Products, including any Support Services, warranty, and indemnity\ + \ obligations.\n\nB. Your license rights under this EULA are non-exclusive, non-transferable\ + \ and non-sublicensable. You may not sell, transfer or convey the Software to any third\ + \ party without Licensor’s prior express written consent. Licensor reserves all rights not\ + \ expressly granted to the Licensee in this EULA.\n\nC. Standard Use licensees are permitted\ + \ to make one (1) copy of the Software for data protection, archiving and backup purposes\ + \ only and for no other purpose.\n\nD. You may only install the Software and make the Software\ + \ available for use on hardware systems owned, leased or controlled by you, or your third\ + \ party service providers so long as you remain responsible for their compliance with the\ + \ terms and conditions of this EULA.\n\nE. This EULA applies whether you purchase Products\ + \ directly from Licensor, through the Atlassian marketplace, through an authorized Reseller\ + \ or otherwise. If you purchase through a Reseller, your license rights shall be as stated\ + \ in the Order placed by Reseller for you, and the Reseller is responsible for the accuracy\ + \ of any such Order. Resellers are not authorized to make any promises or commitments on\ + \ Licensor’s behalf, and Licensor is not bound by any obligations to you other than what\ + \ is included in this EULA.\n\n5. Third-Party Software\n\nA. You acknowledge the Products\ + \ may contain software licensed by Licensor from third parties, including open source software,\ + \ and embedded in the Products, and that in addition to the obligations of this EULA, additional\ + \ obligations may apply in relation to any use of the third party software by you which\ + \ is not in accordance with the use of the Products as permitted under the terms of this\ + \ EULA. In such circumstances you must consult the relevant third party to acquire any\ + \ necessary licenses and consents in relation to your use of the third party software.\n\ + \nB. The Software uses, requires and depends on various third party APIs. Licensor disclaims\ + \ any liability for any failure or limitations of these APIs or services. Atlassian, or\ + \ any other API provider, may remove the API end points required for the Software to function\ + \ properly. Licensor disclaims any liability for the consequence of such actions by such\ + \ third parties.\n\n6. Price and Payment\n\nIf you have not previously paid the license\ + \ fee for the Product, then you must pay the license fee within the period indicated in\ + \ the applicable invoice or as otherwise provided in Licensor’s pricing terms as published\ + \ on the Atlassian Marketplace. Failure to pay any license fees by the due date will result\ + \ in the immediate termination of the license(s) granted under this EULA.\n\n7. Support\ + \ Services\n\nA. Licensor may provide you with online support services related to the Products\ + \ (“Support Services”), in its discretion and for the sole purpose of addressing technical\ + \ issues relating to the use of the Products. Support Services also include access to bug\ + \ fixes, patches, modifications, or enhancements (together, “Releases”) to the Products\ + \ that Licensor makes generally commercially available during the “Support Period.” When\ + \ accepted by you, any such Releases will be considered part of the Products and subject\ + \ to the terms of this EULA.\n\nB. The Initial Support Period for each Product is for twelve\ + \ (12) months starting at the time each Product is purchased, and may be renewed for additional\ + \ twelve (12) month periods (each, a “Renewal Support Period”) at the then-current rate\ + \ for Support Services. Renewal Support Periods commence upon the expiration of the prior\ + \ Support Period regardless of when the Product is purchased.\n\nC. Use of Support Services,\ + \ if any, is governed by Licensor’s policies and programs described in any user manual,\ + \ in online documentation, and/or other Licensor-provided materials. Any supplemental software\ + \ code provided to you as a part of Support Services will be considered part of the Products\ + \ and subject to the terms of this EULA.\n\nD. All deliveries of Software will be electronic.\ + \ For the avoidance of doubt, you are responsible for the installation of any Software.\n\ + \nE. Licensor encourages feedback from its customers. If you have any feedback regarding\ + \ your purchase or use of the Products, please provide that feedback to Licensor at: https://bobswift.atlassian.net/wiki/questions\ + \ for Bob Swift Atlassian Add-on brand Product purchases or at https://wittified.atlassian.net/wiki/questions\ + \ for Wittified Atlassian Add-on brand Product purchases.\n\n8. Data Security & Privacy\n\ + \nA. Licensor values your privacy and is committed to secure private information from loss,\ + \ misuse, unauthorized access, disclosure, alteration and destruction. Licensor will not\ + \ sell or otherwise redistribute to third parties the information Licensor collects from\ + \ you, as described in this Section. \n\nB. Licensor constantly strives to improve its Products.\ + \ To do so, Licensor needs to measure, analyze, and aggregate how users interact with the\ + \ Products, such as usage patterns and characteristics of its user base. Licensor collects\ + \ and uses analytics data regarding your use of the Products.\n\nC. You agree that Licensor\ + \ may collect and use technical data and related information, including without limitation,\ + \ technical information relating to your device, system, and Products, that is gathered\ + \ periodically to facilitate the provision of software updates, product support, marketing\ + \ efforts and other services and communications to you related to the Products, including\ + \ providing you with information about services, features, surveys, newsletters, offers,\ + \ promotions; providing other news or information about us and our select partners; and\ + \ sending you technical notices, updates, security alerts, and support and administrative\ + \ messages. Licensor may use this technical data and related information, as long as it\ + \ is in a form that does not personally identify you, except to the extent necessary to\ + \ provide you with support, or communications to improve its products or to provide services\ + \ or technology to you. Licensor agrees to handle your data in accordance with (i) all applicable\ + \ laws; and (ii) privacy and security measures reasonably adequate to preserve your data’s\ + \ confidentiality and security. Licensee may opt out of promotions by sending an email to\ + \ unsubscribe@appfire.com. Requests to opt out may take thirty (30) calendar days to process.\n\ + \nD. You retain all right, title and interest in and to any data, content, code, video,\ + \ images or other materials of any type (“Your Data”) that you upload, submit or otherwise\ + \ transmit to or through the Hosted Services or through Licensor’s online support systems\ + \ including the Bob Swift Atlassian Add-ons Defect Tracker available at: https://bobswift.atlassian.net,\ + \ the Wittified Atlassian Add-ons Defect Tracker available at: https://wittified.atlassian.net,\ + \ the Bob Swift Atlassian Add-ons Community Forum available at: https://bobswift.atlassian.net/wiki/questions,\ + \ the Wittified Atlassian Add-ons Community Forum available at: https://wittified.atlassian.net/wiki/questions,\ + \ and any other related platforms used to collect customer feedback or to provide support.\ + \ Subject to the terms of this EULA, you grant Licensor a non-exclusive, worldwide, royalty-free\ + \ right to (a) collect, use, copy, store, transmit, modify and create derivative works of\ + \ Your Data, in each case solely to the extent necessary to provide the applicable Hosted\ + \ Service to you and (b) for Hosted Services that enable you to share Your Data or interact\ + \ with other people, to distribute and publicly perform and display Your Data as you (or\ + \ your Authorized Users) direct or enable through the Hosted Service.\n\nE. Customer order\ + \ data, if any, is stored encrypted and in access-controlled servers. Application data,\ + \ if any, is stored on redundant storage nodes to protect data from hardware failures. Your\ + \ Data is stored in the United State of America.\n\nF. Licensor agrees (i) to handle Your\ + \ Data in accordance with all applicable laws; and (ii) not share Your Data with third parties\ + \ except as required by law. You acknowledge and agree that Licensor may disclose personally\ + \ identifiable information under special circumstances, such as to comply with law.\n\n\ + G. Licensor has implemented privacy and security measures reasonably adequate to preserve\ + \ Your Data from loss, misuse, unauthorized access, disclosure, alteration and destruction.\ + \ Licensor uses a self-assessment approach to ensure compliance with this Privacy policy\ + \ and verifies periodically that the policy is accurate and comprehensive for the information\ + \ intended to be covered, prominently displayed, completely implemented, and accessible\ + \ and in conformity with the Privacy Principles. Licensor encourages interested parties\ + \ to contact us with any concerns using the contact information provided. Licensor will\ + \ investigate and attempt to resolve any complaints and disputes regarding use and disclosure\ + \ of private information in accordance with the Privacy Principles.\n\n9. Termination\n\n\ + You may terminate your license to the Products at any time by destroying all your copies\ + \ of the Software or ceasing your access to the Hosted Services. Your license to the Products\ + \ shall automatically terminate if you fail to comply with the terms of this EULA. Upon\ + \ termination of your license, you are required to remove all Software from your computer\ + \ systems and destroy any copies of the Software in your possession.\n\n10. Copyright\n\n\ + A. The Products and all copies thereof are protected by copyright and other intellectual\ + \ property laws and treaties. Licensor or its relevant third parties own the title, copyright,\ + \ and all other intellectual property rights in the Products and all subsequent copies of\ + \ the Products.\n\nB. All title and copyrights in and to the Products (including but not\ + \ limited to any images, icons, text files, pdfs or other static non-code assets contained\ + \ within the Products), the accompanying printed materials, and any copies of the Products,\ + \ are owned by Licensor or its suppliers. This EULA does not grant you any rights to use\ + \ such content. If the Products contain documentation that is provided only in electronic\ + \ form, you may print one copy of such electronic documentation. Except for any copies of\ + \ this EULA, you may not copy the printed materials accompanying the Products.\n\nC. Other\ + \ than as allowed by this EULA, you may not (i) reverse engineer, de-compile, disassemble,\ + \ alter, duplicate, modify, rent, lease, loan, sublicense, make copies of, create derivative\ + \ works from, distribute or provide non-Authorized Users with access to the Products in\ + \ whole or part, (ii) use the Products for the benefit of any third party, (iii) incorporate\ + \ any Products into a product or service you provide to a third party, (iv) interfere with\ + \ any license key mechanism in the Products or otherwise circumvent mechanisms in the Products\ + \ intended to limit your use, (v) remove or obscure any proprietary notices on the Products\ + \ or any permitted copies of the Products , or (vi) publicly disseminate information regarding\ + \ the benchmarking performance of the Products.\n\nD. You may not copy or embed elements\ + \ of the Source Code into other applications, or publish, transmit or communicate the Source\ + \ Code to other parties other than yourself or the entity you represent.\n\n11. Confidentiality.\n\ + \nYou agree that all code, inventions, know-how, business, technical and financial information\ + \ disclosed to you by Licensor constitute the confidential property of Licensor (“Confidential\ + \ Information”). Any intellectual property, the underlying technology, and any performance\ + \ information relating to the Products shall be deemed Confidential Information without\ + \ any marking or further designation. Except as expressly authorized herein, you will hold\ + \ in confidence and not use or disclose any Confidential Information. Your nondisclosure\ + \ obligation shall not apply to information that you can document: (i) was rightfully in\ + \ your possession or known to you prior to receipt of the Confidential Information; (ii)\ + \ is or has become public knowledge through no fault of your own; (iii) is rightfully obtained\ + \ by you from a third party without breach of any confidentiality obligation; or (iv) is\ + \ independently developed by you or your employees who had no access to such information.\ + \ You may also disclose Confidential Information if so required pursuant to a regulation,\ + \ law or court order (but only to the minimum extent required to comply with such regulation\ + \ or order and with advance notice to Licensor). You acknowledge that disclosure of Confidential\ + \ Information would cause substantial harm for which damages alone would not be a sufficient\ + \ remedy, and therefore that upon any such disclosure by you, Licensor shall be entitled\ + \ to appropriate equitable relief in addition to whatever other remedies it might have at\ + \ law. For the avoidance of doubt, this Section shall not operate as a separate warranty\ + \ with respect to the operation of any Products.\n\n12. License Certifications and Audits\n\ + \nAt Licensor’s request, you agree to provide a signed certification that you are using\ + \ all Products pursuant to the terms of this EULA, including the Scope of Use. You agree\ + \ to allow Licensor or its agent, to audit your use of the Products. Licensor will provide\ + \ you with at least 10 days advance notice prior to the audit, and the audit will be conducted\ + \ during normal business hours. Licensor will bear all its own out-of-pocket costs for the\ + \ audit, unless the audit reveals that you have exceeded the Scope of Use. You will provide\ + \ reasonable assistance, cooperation, and access to relevant information in the course of\ + \ any audit at your own cost. If you exceed your Scope of Use, Licensor may invoice you\ + \ for any past or ongoing excessive use, and you will pay the invoice promptly after receipt.\ + \ This remedy is without prejudice to any other remedies available to Licensor at law or\ + \ equity or under this EULA. To the extent necessary, Licensor may share audit results with\ + \ certain of its third party licensors or assign the audit rights specified in this Section\ + \ to such licensors. \n\n13. Publicity Rights\n\nThe Licensee grants Licensor the right\ + \ to include the Licensee’s name, company name, logo, and/or likeness that you provide during\ + \ registration, and any review that Licensee may provide (in full or in part) to Licensor,\ + \ within Product promotional material and on Licensor’s web site. Licensee can revoke this\ + \ right at any time by submitting a written request via email to operations@appfire.com,\ + \ requesting to be excluded from future Product promotional material. Requests made after\ + \ purchasing may take thirty (30) calendar days to process.\n\n14. Export Restrictions\n\ + \nYou may not use or otherwise export or re-export any Product(s) except as authorized by\ + \ United States law and the laws of the jurisdiction in which the Product(s) was obtained.\ + \ In particular, but without limitation, the Product(s) may not be exported or re-exported\ + \ (a) into any U.S. embargoed countries or (b) to anyone on the U.S Treasury Department’s\ + \ list of Specially Designated Nationals or the U.S. Department of Commerce Denied Person’s\ + \ List or Entity List. By using the Product(s), you represent and warrant that you are not\ + \ located in any such country or on any such list.\n\n15. Disclaimer of Warranties\n\nSave\ + \ as provided in Sections 17 and 18 below, the Products are provided on an “as is” and “as\ + \ available” basis without warranty, express or implied, of any kind or nature, including,\ + \ but not limited to, any warranties of performance, merchantability, fitness for a particular\ + \ purpose, or title. You may have other statutory rights, but the duration of statutorily\ + \ required warranties, if any, shall be limited to the shortest period permitted by law.\ + \ Licensor shall not be liable for delays, interruptions, service failures and other problems\ + \ inherent in use of the internet and electronic communications or other systems outside\ + \ the reasonable control of Licensor. To the maximum extent permitted by law, Licensor does\ + \ not make any representation, warranty or guarantee that: (a) the use of the Products will\ + \ be secure, timely, uninterrupted or error-free; (b) the Products will operate in combination\ + \ with any other hardware, software, system, or data; (c) the Products will meet your requirements\ + \ or expectations; (d) any stored data will be accurate or reliable or that any stored data\ + \ will not be lost or corrupted; (e) errors or defects will be corrected; or (f) the Products\ + \ (or any server(s) that make a Hosted Service available) are free of viruses or other harmful\ + \ components.\n\n16. Return Policy\n\nLicensor’s customary business practice is to allow\ + \ customers to return Software within 30 days of payment for any reason or no reason and\ + \ to receive a refund of the amount paid for the returned Software. A return means that\ + \ Licensor will disable the license key that allowed the Software to operate. Licensor will\ + \ not accept returns after the 30-day return period. Returns are not available for Hosted\ + \ Services.\n\n17. Infringement; Indemnification\n\nA. If you purchase a Standard Use license,\ + \ and if the Software becomes, or in the opinion of Licensor may become, the subject of\ + \ a claim of infringement of any third party right, Licensor may, at its option and in its\ + \ discretion: (i) procure for Licensee the right to use the Software free of any liability;\ + \ (ii) replace or modify the Software to make it non-infringing; or (iii) refund any license\ + \ fees paid by you for the current Support Period for that Software.\n\nB. Licensee will\ + \ defend or settle, at Licensee’s expense, any action brought against Licensor based upon\ + \ the claim that any modifications to the Software or combination of the Software with other,\ + \ third-party, products infringes or violates any third party right, and only to the extent\ + \ that such modification or combination contributes to such claim; provided, however, that:\ + \ (i) Licensor shall notify Licensee promptly in writing of any such claim; (ii) Licensor\ + \ shall not enter into any settlement or compromise any such claim without Licensee’s prior\ + \ written consent; (iii) Licensee shall have sole control of any such action and settlement\ + \ negotiations; and (iv) Licensor shall provide Licensee with information and reasonable\ + \ assistance, at Licensee’s request and expense, necessary to settle or defend such claim.\ + \ Licensee agrees to pay all damages and costs finally awarded against Licensor attributable\ + \ to such claim.\n\nC. Licensee agrees to indemnify and hold Licensor, and its subsidiaries,\ + \ affiliates, officers, agents, and employees, harmless from any claims by third parties,\ + \ and any related damages, losses or costs (including reasonable attorney fees and costs),\ + \ arising out of Licensee’s use of the Software, or Licensee’s violation of the EULA or\ + \ any rights of a third party.\n\nD. Licensor assumes no liability hereunder for, and shall\ + \ have no obligation to defend Licensee or to pay costs, damages or attorney’s fees for,\ + \ any claim based upon any modifications to any of the Software not approved by Licensor\ + \ or combination of any of the Software with products not approved by Licensor, and only\ + \ to the extent that such modification or combination contributes to such claim.\n\n18.\ + \ Limitation of Liability\n\nA. Except for the indemnification obligations of Section 17\ + \ or breach of Sections 6 or 10, neither party will be liable to any person, with respect\ + \ to any loss, damage, cost, expense or other claim, for any consequential (such as loss\ + \ of income; loss of business profits or contracts; business interruption; loss of the use\ + \ of money or anticipated savings; loss of information; loss of opportunity, goodwill or\ + \ reputation; loss of, damage to or corruption of data), indirect, special, punitive or\ + \ other damages in relation to the Products including, without limitation: (a) any use or\ + \ reliance on a Product by the person (including the form and content of errors in and/or\ + \ omissions from any information contained in the Products); (b) any delay, interruption\ + \ or other failure in the provision of a Product; or (c) any change in the form or content\ + \ of a Product. All the foregoing limitations shall apply even if Licensor has been informed\ + \ of the possibility of such damages.\n\nB. In no event will Licensor’s aggregate liability\ + \ under any claims arising out of this EULA exceed the fees paid by you for the current\ + \ Support Period, except where not permitted by applicable law, in which case Licensor’s\ + \ liability shall be limited to the maximum extent allowed by such applicable law.\n\nC.\ + \ Except for each party’s indemnification obligations or breach of Sections 6 or 10, neither\ + \ party will be liable for lost profits or for special, indirect, incidental or consequential\ + \ damages, regardless of the form of action, even if such party is advised of the possibility\ + \ of such damages. The foregoing liability limitations shall apply to the maximum extent\ + \ allowed by applicable law. To the extent the foregoing liability limitations or the warranty\ + \ disclaimers of Section 15 are not allowed by applicable law, then the liability of Licensor,\ + \ and the remedy of Licensee, shall be limited to: (i) the re-supply of any defective Product;\ + \ or (ii) the refund of the license fees paid by you for the current Support Period for\ + \ such defective Product.\n\nD. These limitations will apply to you even if the remedies\ + \ fail of their essential purpose.\n\n19. Dispute Resolution\n\nThe parties agree that this\ + \ EULA will be governed by and construed and interpreted in accordance with the laws of\ + \ the Commonwealth of Massachusetts in the United States. The parties irrevocably and unconditionally\ + \ submit to the non-exclusive jurisdiction of the federal and state courts of Middlesex\ + \ County, Massachusetts. The terms of the United Nations Convention on Contracts for the\ + \ Sale of Goods do not apply to this EULA.\n\n20. Severability\n\nIf any term of this EULA\ + \ is found to be unenforceable or contrary to law, it will be modified to the least extent\ + \ necessary to make it enforceable, and the remaining portions of this EULA will remain\ + \ in full force and effect.\n\n21. No Waiver\n\nNo waiver of any right under this EULA will\ + \ be deemed effective unless contained in writing signed by a duly authorized representative\ + \ of the party against whom the waiver is to be asserted, and no waiver of any past or present\ + \ right arising from any breach or failure to perform will be deemed to be a waiver of any\ + \ future rights arising out of this EULA.\n\n22. Assignment\n\nLicensee may assign this\ + \ EULA to succeeding parties in the case of a merger, acquisition or change of control;\ + \ provided, however, that in each case, (a) Licensor is notified in writing within ninety\ + \ (90) days of such assignment, (b) the assignee agrees to be bound by the terms and conditions\ + \ contained in this EULA and (c) upon such assignment the assignee makes no further use\ + \ of the Product(s) licensed under this EULA. Licensor may assign its rights and obligation\ + \ under this EULA without consent of Licensee. Any permitted assignee shall be bound by\ + \ the terms and conditions of this EULA.\n\n23. U.S. Government Users\n\nIf you are a U.S.\ + \ Government end user, Licensor is providing the Products to you as a \"Commercial Item\"\ + \ as that term is defined in the U.S. Code of Federal Regulations (see 48 C.F.R. § 2.101),\ + \ and the rights granted to you by Licensor for the Products are the same as the rights\ + \ Licensor customarily grant to others under this EULA.\n\n24. Revisions to EULA\n\nLicensor\ + \ may update, modify or amend (together, “Revise”) this EULA from time to time, including\ + \ any referenced policies and other documents. If a revision meaningfully reduces your rights,\ + \ Licensor will use reasonable efforts to notify you by, for example, sending an email to\ + \ the billing or technical contact you designate in the applicable Order, posting on our\ + \ blog, website, on the Atlassian Marketplace website (https://marketplace.atlassian.com)\ + \ or within the Licensor’s then currently published product documentation wiki. If Licensor\ + \ revises this EULA during your term of your license or subscription, the revised version\ + \ will be effective upon your next renewal of a License Term, Support Services, Hosted Services\ + \ or Subscription Term, as applicable. In this case, if you object to any revisions, as\ + \ your exclusive remedy, you may choose not to renew, including cancelling any terms set\ + \ to auto-renew. With respect to No-Charge Products, accepting the revised EULA is required\ + \ for you to continue using the No-Charge Products. You may be required to click through\ + \ the updated EULA to show your acceptance. If you do not agree to the revised EULA after\ + \ it becomes effective, you will no longer have a right to use No-Charge Products. For the\ + \ avoidance of doubt, any Order is subject to the version of the EULA in effect at the time\ + \ of the Order. You may not revise this EULA without Licensor’s written agreement (which\ + \ may be withheld in Licensor’s complete discretion).\n\n25. Entire Agreement\n\nThis EULA\ + \ constitutes the entire agreement between the parties with respect to its subject matter,\ + \ and supersedes all prior agreements, proposals, negotiations, representations or communications\ + \ relating to the subject matter. Both parties acknowledge that they have not been induced\ + \ to enter into this EULA by any representations or promises not specifically stated herein.\ + \ This EULA may not be modified or amended by you without Licensor’s written agreement (which\ + \ may be withheld in Licensor’s complete discretion).\n\nIn the event of a conflict between\ + \ the terms of this EULA and the terms of any open source licenses applicable to the Software,\ + \ for the specific terms in conflict the terms of the open source licenses shall control\ + \ with regard to the Software, or part-thereof. \n\n26. Contact Information\n\nFor communications\ + \ concerning this EULA, please write to legal@appfire.com.\n\nLast updated: October 6, 2016" json: appfire-eula.json - yml: appfire-eula.yml + yaml: appfire-eula.yml html: appfire-eula.html - text: appfire-eula.LICENSE + license: appfire-eula.LICENSE - license_key: apple-attribution + category: Permissive spdx_license_key: LicenseRef-scancode-apple-attribution other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Warranty Information + Even though Apple has reviewed this software, Apple makes no warranty + or representation, either express or implied, with respect to this + software, its quality, accuracy, merchantability, or fitness for a + particular purpose. As a result, this software is provided "as is," + and you, its user, are assuming the entire risk as to its quality + and accuracy. + + This code may be used and freely distributed as long as it includes + this copyright notice and the warranty information. json: apple-attribution.json - yml: apple-attribution.yml + yaml: apple-attribution.yml html: apple-attribution.html - text: apple-attribution.LICENSE + license: apple-attribution.LICENSE - license_key: apple-attribution-1997 + category: Permissive spdx_license_key: LicenseRef-scancode-apple-attribution-1997 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 appears in all copies and + that both the copyright notice and this permission notice appear in + supporting documentation. + + APPLE COMPUTER DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE + INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE. + + IN NO EVENT SHALL APPLE COMPUTER BE LIABLE FOR ANY SPECIAL, INDIRECT, OR + CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + LOSS OF USE, DATA OR PROFITS, WHETHER IN ACTION OF CONTRACT, + NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION + WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. json: apple-attribution-1997.json - yml: apple-attribution-1997.yml + yaml: apple-attribution-1997.yml html: apple-attribution-1997.html - text: apple-attribution-1997.LICENSE + license: apple-attribution-1997.LICENSE - license_key: apple-excl + category: Permissive spdx_license_key: LicenseRef-scancode-apple-excl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Inc. + ("Apple") in consideration of your agreement to the following terms, and your + use, installation, modification or redistribution of this Apple software + constitutes acceptance of these terms. If you do not agree with these terms, + please do not use, install, modify or redistribute this Apple software. + + In consideration of your agreement to abide by the following terms, and subject + to these terms, Apple grants you a personal, non-exclusive license, under + Apple's copyrights in this original Apple software (the "Apple Software"), to + use, reproduce, modify and redistribute the Apple Software, with or without + modifications, in source and/or binary forms; provided that if you redistribute + the Apple Software in its entirety and without modifications, you must retain + this notice and the following text and disclaimers in all such redistributions + of the Apple Software. + + Neither the name, trademarks, service marks or logos of Apple Inc. may be used + to endorse or promote products derived from the Apple Software without specific + prior written permission from Apple. Except as expressly stated in this notice, + no other rights or licenses, express or implied, are granted by Apple herein, + including but not limited to any patent rights that may be infringed by your + derivative works or by other works in which the Apple Software may be + incorporated. + + The Apple Software is provided by Apple on an "AS IS" basis. APPLE MAKES NO + WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED + WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN + COMBINATION WITH YOUR PRODUCTS. + + IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE + GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR + DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF + CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF + APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. json: apple-excl.json - yml: apple-excl.yml + yaml: apple-excl.yml html: apple-excl.html - text: apple-excl.LICENSE + license: apple-excl.LICENSE - license_key: apple-mfi-license + category: Proprietary Free spdx_license_key: LicenseRef-scancode-apple-mfi-license other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Disclaimer: IMPORTANT: This Apple software is supplied to you, by Apple Inc. ("Apple"), in your + capacity as a current, and in good standing, Licensee in the MFi Licensing Program. Use of this + Apple software is governed by and subject to the terms and conditions of your MFi License, + including, but not limited to, the restrictions specified in the provision entitled ”Public + Software”, and is further subject to your agreement to the following additional terms, and your + agreement that the use, installation, modification or redistribution of this Apple software + constitutes acceptance of these additional terms. If you do not agree with these additional terms, + please do not use, install, modify or redistribute this Apple software. + + Subject to all of these terms and in consideration of your agreement to abide by them, Apple grants + you, for as long as you are a current and in good-standing MFi Licensee, a personal, non-exclusive + license, under Apple's copyrights in this original Apple software (the "Apple Software"), to use, + reproduce, and modify the Apple Software in source form, and to use, reproduce, modify, and + redistribute the Apple Software, with or without modifications, in binary form. While you may not + redistribute the Apple Software in source form, should you redistribute the Apple Software in binary + form, you must retain this notice and the following text and disclaimers in all such redistributions + of the Apple Software. Neither the name, trademarks, service marks, or logos of Apple Inc. may be + used to endorse or promote products derived from the Apple Software without specific prior written + permission from Apple. Except as expressly stated in this notice, no other rights or licenses, + express or implied, are granted by Apple herein, including but not limited to any patent rights that + may be infringed by your derivative works or by other works in which the Apple Software may be + incorporated. + + Unless you explicitly state otherwise, if you provide any ideas, suggestions, recommendations, bug + fixes or enhancements to Apple in connection with this software (“Feedback”), you hereby grant to + Apple a non-exclusive, fully paid-up, perpetual, irrevocable, worldwide license to make, use, + reproduce, incorporate, modify, display, perform, sell, make or have made derivative works of, + distribute (directly or indirectly) and sublicense, such Feedback in connection with Apple products + and services. Providing this Feedback is voluntary, but if you do provide Feedback to Apple, you + acknowledge and agree that Apple may exercise the license granted above without the payment of + royalties or further consideration to Participant. + + The Apple Software is provided by Apple on an "AS IS" basis. APPLE MAKES NO WARRANTIES, EXPRESS OR + IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY + AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR + IN COMBINATION WITH YOUR PRODUCTS. + + IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION + AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, TORT + (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. json: apple-mfi-license.json - yml: apple-mfi-license.yml + yaml: apple-mfi-license.yml html: apple-mfi-license.html - text: apple-mfi-license.LICENSE + license: apple-mfi-license.LICENSE - license_key: apple-mpeg-4 + category: Free Restricted spdx_license_key: LicenseRef-scancode-apple-mpeg-4 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "This software module was originally developed by Apple Computer, Inc. in the\ncourse\ + \ of development of MPEG-4. This software module is an implementation of\na part of one\ + \ or more MPEG-4 tools as specified by MPEG-4. ISO/IEC gives users\nof MPEG-4 free license\ + \ to this software module or modifications thereof for\nuse in hardware or software products\ + \ claiming conformance to MPEG-4. Those\nintending to use this software module in hardware\ + \ or software products are\nadvised that its use may infringe existing patents. The original\ + \ developer of\nthis software module and his/her company, the subsequent editors and their\n\ + companies, and ISO/IEC have no liability for use of this software module or\nmodifications\ + \ thereof in an implementation. Copyright is not released for non\nMPEG-4 conforming products.\ + \ Apple Computer, Inc. retains full right to use the\ncode for its own purpose, assign or\ + \ donate the code to a third party and to\ninhibit third parties from using the code for\ + \ non MPEG-4 conforming products.\nThis copyright notice must be included in all copies\ + \ or\tderivative works.\nCopyright (c) 1999." json: apple-mpeg-4.json - yml: apple-mpeg-4.yml + yaml: apple-mpeg-4.yml html: apple-mpeg-4.html - text: apple-mpeg-4.LICENSE + license: apple-mpeg-4.LICENSE - license_key: apple-runtime-library-exception + category: Permissive spdx_license_key: Swift-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Permissive + text: | + Runtime Library Exception to the Apache 2.0 License + + As an exception, if you use this Software to compile your source code and + portions of this Software are embedded into the binary product as a result, + you may redistribute such product without providing attribution as would + otherwise be required by Sections 4(a), 4(b) and 4(d) of the License. json: apple-runtime-library-exception.json - yml: apple-runtime-library-exception.yml + yaml: apple-runtime-library-exception.yml html: apple-runtime-library-exception.html - text: apple-runtime-library-exception.LICENSE + license: apple-runtime-library-exception.LICENSE - license_key: apple-sscl + category: Permissive spdx_license_key: LicenseRef-scancode-apple-sscl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Apple Sample Source Code License + + You may incorporate this Apple sample source code into your program(s) without restriction. This Apple sample source code has been provided "AS IS" and the responsibility for its operation is yours. You are not permitted to redistribute this Apple sample source code as "Apple sample source code" after having made changes. If you're going to re-distribute the source, we require that you make it clear in the source that the code was descended from Apple sample source code, but that you've made changes. json: apple-sscl.json - yml: apple-sscl.yml + yaml: apple-sscl.yml html: apple-sscl.html - text: apple-sscl.LICENSE + license: apple-sscl.LICENSE - license_key: appsflyer-framework + category: Proprietary Free spdx_license_key: LicenseRef-scancode-appsflyer-framework other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Terms of Use + AppsFlyer Ltd. (“AppsFlyer” or “us”, “our”, “we”) provides a software development kit which allows the tracking of mobile application use, installations and downloads (the “Service(s)”). These Terms of use (this “Agreement”) govern your access and use of the Services, and any code provided by AppsFlyer. “You”/”Company” means any third party that uses the Service. + + Please read this Agreement carefully. You must accept this Agreement prior to using the Service or any code provided by AppsFlyer. By downloading or installing the AppsFlyer code or using the Service, you signify your assent to this Agreement. Changes may be made to this Agreement from time to time. We will make reasonable commercial efforts to notify you of any material updates to this Agreement. Notwithstanding the foregoing, your continued use of the Service will be deemed acceptance to amended or updated Terms. As such, you should check frequently to see if we have updated this Agreement. If you do not agree to any terms or conditions of this Agreement, please do not use the Service. + + 1. Services. Subject to the terms and conditions hereof, during the Term (as defined below) AppsFlyer shall provide Company with the Services on a non-exclusive basis solely for Company’s own internal uses and, for this purpose, Company shall integrate the code provided by AppsFlyer, including AppsFlyer’s SDK, tracking links and APIs (collectively, the “Code”), into Company’s own proprietary mobile application (Company’s “Application”). + + 2. Registration. In order to use the Services, Company will be required to register with AppsFlyer and open an account. Company must provide all information necessary for the registration process. Company represents and warrants that all such information shall be accurate and complete. Company shall keep such information up-to-date. Company shall immediately notify AppsFlyer if there is any change in such information or security breach of the account. + + 3. Restrictions. + + 3.1. Except as set forth expressly herein or as permitted by the Services, Company shall not, and shall not permit any third party, to (a) reverse engineer or attempt to find the underlying code of the Services; (b) modify the Services, or insert any code or product, or in any other way manipulate the Services in any way; (c) modify the Code in any way without AppsFlyer’s prior written consent; (d) sublicense, sell, or distribute the Code or bypass any security measure of AppsFlyer with respect to the Services; (e) distribute the Code on a stand-alone basis; or (f) use the Services except for Company’s own internal purposes. + + 3.2. To the extent any of the restrictions set forth above are not enforceable under applicable law, Company shall inform AppsFlyer in writing prior to engaging in any of the applicable activities. + + 4. Warranties. + + 4.1. Mutual Warranties. Each party represents and warrants that (a) it is duly organized under applicable law and has sufficient authority to enter into this Agreement and that, (b) the execution and performance under this Agreement does not conflict with any contractual obligations such party has to any third party. + + 4.2. AppsFlyer Warranties. AppsFlyer represents and warrants that the Services (a) do not, to the best of its knowledge, infringe the intellectual property rights of any third party, (b) do not contain any defamatory, libelous, obscene or otherwise offensive material, (c) comply with all applicable law and regulations (provided, that with respect to data provided by Company to AppsFlyer, AppsFlyer’s compliance with applicable law is subject to Company’s full compliance with applicable law with respect to such data, including its transfer to, and processing by, AppsFlyer), (d) do not collect, use or transfer the data of end users except pursuant to the terms of this Agreement or for the provision of the Services, and (e) do not to the best of its knowledge contain any worms, viruses, spyware, adware or other malicious or intrusive software. + + 4.3. Company Warranties. Company represents and warrants that its Application and Data (a) do not, to the best of its knowledge, infringe the intellectual property rights of any third party, (b) do not contain any defamatory, libelous, obscene or otherwise offensive material, (c) comply with all applicable law and regulations, including applicable data protection law, (d) do not collect, use or transfer the data of end users in any manner not clearly and accurately disclosed pursuant to a privacy policy that complies with applicable law and regulations, and (e) do not contain any worms, viruses, spyware, adware or other malicious or intrusive software and (f) provides to its users a clear description of its use of the data, including its transfer to, and processing by, AppsFlyer. + + 5. Intellectual Property. Company shall have all right, title and interest in its Application. AppsFlyer shall have all right, title and interest in the Code and the Services, and all software that provides the Services. If Company provides AppsFlyer with any feedback regarding the Code and/or the Services, AppsFlyer may use all such feedback without restriction. Nothing herein shall be interpreted to provide Company any rights in the Code or the Services except the limited right to use the Code and receive the Service as set forth herein. + + 6. Payment. AppsFlyer offers several pricing plans, and Company must choose a pricing plan prior to downloading and using the Services. If required by law, Company must add applicable VAT to the amounts payable under such pricing plan. Company shall make payment to AppsFlyer without deduction for and free and clear of any taxes and government charges. Amounts are due and payable within 10 days of AppsFlyer’s issuance of the applicable invoice. Late payments shall bear interest at the rate of 12% per annum. If Company pays using a third party payment processor or credit card, AppsFlyer accepts no responsibility or liability for the actions, omissions or privacy policies of the third party payment processor. + + 7. Data, Privacy, Retention and Restricted Data. + + 7.1. The Services enable the Company to collect and track data concerning the characteristics and activities of Application end users as long as the Code is installed (“Data”). Company owns, and retains all right, title and interest in Data. Company may modify the categories of Data collected by the Service through configuration of the Services. Accordingly, to the extent the Services are configured as such, Data may contain personally-identifiable information. AppsFlyer shall not transfer Data to third parties except as set forth in this Agreement or as directed by Company. Company represents and warrants that Company is permitted to collect, use and transfer Data through the Services. + + 7.2. Any personally identifiable information or Personal Data, as such term is defined under the EU General Data Protection Regulation 2016/679 (“GDPR” and “Personal Data” respectively) provided to AppsFlyer on Company’s behalf, if any, and the processing thereof, shall be governed under the terms and conditions set forth in the AppsFlyer Data Processing Agreement (“DPA”). A current version of the DPA executed by AppsFlyer is available at https://www.appsflyer.com/gdpr/dpa.pdf, and shall become effective as of May 25 2018. AppsFlyer shall provide prior notification to Company in writing upon any material change to the DPA. The DPA is an integral part of this Agreement. Unless otherwise explicitly agreed in writing by the parties, it is agreed and acknowledged that with respect to any personally-identifiable information and Personal Data included in the Data, Company shall be considered as the Controller and AppsFlyer shall be considered as the Processor (as such terms are defined under the GDPR and the DPA). + + 7.3. AppsFlyer may use aggregated anonymized data, from time to time, for analytics, improvement of the Services and internal purposes (“Aggregated Data”). Aggregated Data may include data derived from the Company’s Data, provided that Aggregated Data does not contain data solely derived from Company’s Data and does not identify or trace to Company or any of Company’s end users. + + 7.4. AppsFlyer publishes a privacy policy, as required under applicable law, which describes AppsFlyer’s collection and use of data. A current copy of AppsFlyer’s privacy policy is available at https://www.appsflyer.com/privacy-policy (“Privacy Policy”). AppsFlyer shall provide prior notification to Company in writing upon any material change to the privacy policy. + + 7.5. AppsFlyer and its agents may process Data outside of the jurisdiction of Company. + + 7.6. AppsFlyer’ is required by certain third parties (such as advertising networks) to delete data they provide after a specified period of time. As such, AppsFlyer may delete Data provided by such third parties in accordance with its standard data retention policies. + + 7.7. Company may only provide to AppsFlyer, or otherwise have AppsFlyer (or anyone on its behalf) process, such Data types and parameters which are explicitly permitted under AppsFlyer’s Privacy Policy (“Permitted Controller Personal Data Types and Parameters”, as also defined under the DPA). Solely Company (and not AppsFlyer) shall be liable for any data which is provided or otherwise made available to AppsFlyer or anyone on its behalf in excess of the Permitted Controller Personal Data Types and Parameters (“Excess Data”). AppsFlyer’s obligations under the Agreement or the DPA shall not apply to any such Excess Data. + + 7.8. Without derogating from any of the obligations of Company hereunder, Company shall not provide to AppsFlyer any data regarding children, or any health, financial, or insurance data or other data subject to specific regulatory or statutory protection regimes, except as may otherwise be expressly agreed in writing between the parties and in accordance with applicable law. + + 8. Confidentiality. + + 8.1. In the context of the relationship under this Agreement, either party (a “Disclosing Party”) may disclose to the other party (a “Receiving Party”) certain confidential information regarding its technology and business (“Confidential Information”). AppsFlyer’s Confidential Information includes, among others, the terms and pricing of this Agreement. + + 8.2. Subject to the terms and conditions of this Agreement, Receiving Party agrees to keep confidential and not disclose or use any Confidential Information except to support its use or provision of the Services. Confidential Information shall not include information that Receiving Party can show (a) was already lawfully known to or independently developed by Receiving Party without access to or use of Confidential Information, (b) was received by Receiving Party from any third party without restrictions, (c) is publicly and generally available, free of confidentiality restrictions; or (d) is required to be disclosed by law, regulation or is requested in the context of a law enforcement investigation, provided that Receiving Party provides Disclosing Party with prompt notice of such requirement and cooperates in order to minimize such requirement. Receiving Party shall restrict disclosure of Confidential Information to those of its employees and contractors with a reasonable need to know such information and which are bound by written confidentiality obligations no less restrictive than those set out herein. Company will not disclose any information regarding the results of any testing or evaluation of the Services to any third party without AppsFlyer’s prior written consent. + + 8.3. The non-disclosure and non-use obligations set forth in this Section 8 shall survive the termination or expiration of this Agreement for a period of 5 years. + + 9. Analytics. The Services include the provision of certain reports and analytics regarding the Data (“Analytics”). AppsFlyer makes no warranty that the Analytics provided shall be useful to Company’s business. Company is solely responsible for any actions Company may take based on the Analytics. + + 10. Support. Company may contact AppsFlyer with regard to support for the Services by sending an email to support@appsflyer.com. AppsFlyer shall provide up to 5 hours of support each month at no additional charge. + + 11. Service Levels. AppsFlyer shall provide Services in accordance with the service commitments in Appendix B. + + 12. Indemnification. + + 12.1. AppsFlyer Indemnification. + + 12.1.1. AppsFlyer shall defend, indemnify and hold harmless Company (and its affiliates, officers, directors and employees) from and against any and all damages, costs, losses, liabilities or expenses (including court costs and reasonable attorneys’ legal fees) which Company may suffer or incur in connection with any actual claim, demand, action or other proceeding by any third party arising from: (a) any breach of AppsFlyer’s obligations, representations or warranties herein; or (b) a claim that the Code and/or Services infringe the intellectual property rights of a third party. This Section 12.1 sets forth AppsFlyer’s sole obligations and Company’s sole remedies for any claim that the Code and/or Services infringe the intellectual property rights of a third party. + + 12.1.2. Notwithstanding the foregoing, AppsFlyer shall have no responsibility or liability for any claim to the extent resulting from or arising out of (a) the use of the Code or Services not in compliance with this Agreement or applicable law, (b) the combination of the Code or Services with any code or services not provided by AppsFlyer, (c) the modification of any Code or Services by any party other than AppsFlyer or (d) the use of any Code that is not the most up-to-date Code. + + 12.1.3. If the Services shall be the subject of an infringement claim, or AppsFlyer reasonably believes that the Services shall be the subject of an infringement claim, AppsFlyer may terminate this Agreement with written notice if modification of the Services to be non-infringing is not reasonably practical. + + 12.2. Company Indemnification. Company shall defend and indemnify AppsFlyer (and its affiliates, officers, directors and employees) from and against any and all damages, costs, losses, liabilities or expenses (including court costs and attorneys’ fees) which AppsFlyer may suffer or incur in connection with any actual claim, demand, action or other proceeding by any third party arising from: (a) any breach of Company’s obligations, representations or warranties herein; or (b) any use or distribution of the Company’s Application in violation of this Agreement or applicable law or regulations. + + 12.3. Procedure. The obligations of either party to provide indemnification under this Agreement will be contingent upon the indemnified party (i) providing the indemnifying party with prompt written notice of any claim for which indemnification is sought (provided that the indemnified party’s failure to notify the indemnifying party will not diminish the indemnifying party’s obligations under this Section 12 except to the extent that the indemnifying party is materially prejudiced as a result of such failure), (ii) cooperating fully with the indemnifying party (at the indemnifying party’s expense), and (iii) allowing the indemnifying party to control the defense and settlement of such claim, provided that no settlement may be entered into without the consent of the indemnified party if such settlement would require any action on the part of the indemnified party other than to cease using any allegedly infringing or illegal content or services. Subject to the foregoing, an indemnified party will at all times have the option to participate in any matter or litigation through counsel of its own selection at its own expense. + + 13. Disclaimer of Warranties. EXCEPT AS EXPRESSLY PROVIDED HEREIN, COMPANY ACCEPTS THE CODE AND SERVICES “AS IS” AND ACKNOWLEDGES THAT APPSFLYER MAKES NO OTHER WARRANTY AND DISCLAIMS ALL IMPLIED AND STATUTORY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. + + 14. Limitation of Liability. + + 14.1. IN NO EVENT SHALL APPSFLYER, ITS DIRECTORS, OFFICERS, AFFILIATES OR AGENTS BE LIABLE FOR ANY CONSEQUENTIAL, INDIRECT, SPECIAL OR PUNITIVE DAMAGES, ARISING OUT OF OR RELATING TO THE SERVICES OR THE ARRANGEMENTS CONTEMPLATED HEREIN. + + 14.2. EXCEPT FOR INTENTIONAL MISCONDUCT, GROSS NEGLIGENCE, BREACH OF CONFIDENTIALITY, DATA OR PRIVACY OBLIGATIONS AND APPSFLYER’S INDEMNIFICATION OBLIGATIONS FOR INTELLECTUAL PROPERTY INFRINGEMENT (THE “CARVE-OUT CLAIMS”), APPSFLYER’S ENTIRE LIABILITY FOR THE PROVISION OF THE SERVICES OR UNDER ANY PROVISION OF THIS AGREEMENT SHALL NOT EXCEED THE AMOUNT OF PAYMENT RECEIVED BY APPSFLYER FROM COMPANY IN THE 12 MONTHS PRECEDING THE APPLICABLE CLAIM, IN THE AGGREGATE. WITH RESPECT TO THE CARVE-OUT CLAIMS, APPSFLYER’S ENTIRE LIABILITY FOR THE PROVISION OF THE SERVICES OR UNDER ANY PROVISION OF THIS AGREEMENT SHALL NOT EXCEED TWO (2) TIMES THE AMOUNT OF PAYMENT RECEIVED BY APPSFLYER FROM COMPANY IN THE TWELVE (12) MONTHS PRECEDING THE APPLICABLE CLAIM, IN THE AGGREGATE. + + 15. Term and Termination. + + 15.1. The term of this Agreement shall commence as of the day you accept this Agreement or, if earlier, the date that you integrate the Code into an Application and shall continue in effect for a period of twelve (12) months (the “Initial Term”); provided that if Company selects the “Basic Pay-Per-Use” package, as shown on AppsFlyer’s website, this Agreement shall be in effect on a month-to-month basis. Following the Initial Term, this Agreement shall automatically renew for subsequent terms of twelve (12) months each (each a “Renewal Term” and together with the Initial Term, the “Term”), unless one of the parties notifies the other party of its intention not to renew the Agreement at least 45 days prior to the commencement of any Renewal Term. + + 15.2. Either party may terminate this Agreement with written notice if it has reason to believe that the other Party is in material breach of this Agreement, and such breach is not cured within 30 days from the receipt of written notice of such breach. In addition, either party shall have the right to terminate this Agreement upon 30 days’ written notice to the other party pursuant to section 5.3 of the DPA. + + 15.3. This agreement is based on a reasonable and fair use of the Services. Notwithstanding anything to the contrary herein, any use that is not aligned with such fair use may be overcharged or terminated immediately by AppsFlyer. + + 15.4. Upon any termination or expiration of this Agreement, AppsFlyer will cease providing the Services. In the event of any termination (a) Company will not be entitled to any refunds of any nonrefundable fees, (b) any outstanding balance for Services rendered through the date of termination will be immediately due and payable in full, and (c) Company’s historical data will be available for download through AppsFlyer’s standard user interface for a period of 30 days. Any obligations of the Parties that by their nature are intended to survive the termination or expiration of this Agreement, including the obligations of the Parties in Sections 3 – 9 and 12 – 15 of this Agreement, shall survive any termination thereof. + + 16. Publicity. During the Term, AppsFlyer may refer to Company as a customer of AppsFlyer, including by displaying Company’s name and logo on AppsFlyer’s website and other marketing materials. + + 17. Miscellaneous. + + 17.1. This Agreement represents the entire agreement between the parties regarding the subject matter hereof and supersedes any and all other agreements between the parties, whether written or oral, regarding the subject matter hereof. For clarity, the provisions of this Agreement supersede any earlier non-disclosure or confidentiality agreements between the parties. Except as expressly set forth herein, this Agreement may not be modified or amended except in a writing executed by both parties. + + 17.2. All waivers must be in writing. A waiver of any default hereunder or of any of the terms and conditions of this Agreement shall not be deemed to be a continuing waiver or a waiver of any other default or of any other term or condition, but shall apply solely to the instance to which such waiver is directed. AppsFlyer may provide Company with notices required hereunder by contacting Company at any email address Company provided, including in its registration information. + + 17.3. Neither Party may assign any of its rights and obligations under this Agreement without the prior written consent of the other Party, such consent not to be required in the event of an assignment by one of the Parties to a purchaser of all or substantially all of the assignor’s assets or share capital. The assignor shall provide the other Party with written notice of the assignment. Assignment in violation of the foregoing shall be void. + + 17.4. If any part of this Agreement shall be invalid or unenforceable, such part shall be interpreted to give the maximum force possible to such terms as possible under applicable law, and such invalidity or unenforceability shall not affect the validity or enforceability of any other part or provision of this Agreement which shall remain in full force and effect. + 17.5. This Agreement shall be governed by the laws of the State of New York, and the competent courts in the city of New York shall have exclusive jurisdiction to hear any disputes arising hereunder. + + Appendix A: Fees and Services + + [PACKAGE OF SERVICES TO BE CHOSEN BY COMPANY] + + Appendix B: Service Levels + + AppsFlyer service commitments do not include downtime to extent resulting from: previously scheduled maintenance and events beyond AppsFlyer’s reasonable control, such as any down time (a) caused by outages to any public Internet backbones, networks or servers, (b) caused by any failures of Company’s Application, equipment, systems or local access services, or (c) strikes, riots, insurrection, fires, floods, explosions, war, governmental action, labor conditions, earthquakes or natural disasters. json: appsflyer-framework.json - yml: appsflyer-framework.yml + yaml: appsflyer-framework.yml html: appsflyer-framework.html - text: appsflyer-framework.LICENSE + license: appsflyer-framework.LICENSE - license_key: apsl-1.0 + category: Copyleft Limited spdx_license_key: APSL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "APPLE PUBLIC SOURCE LICENSE\n\t\t Version 1.0 - March 16, 1999\n\nPlease read this\ + \ License carefully before downloading this software.\nBy downloading and using this software,\ + \ you are agreeing to be bound\nby the terms of this License. If you do not or cannot agree\ + \ to the\nterms of this License, please do not download or use the software.\n\n1. General;\ + \ Definitions. This License applies to any program or other\n work which Apple Computer,\ + \ Inc. (\"Apple\") publicly announces as\n subject to this Apple Public Source License\ + \ and which contains a\n notice placed by Apple identifying such program or work as \"\ + Original\n Code\" and stating that it is subject to the terms of this Apple\n Public Source\ + \ License version 1.0 (or subsequent version thereof),\n as it may be revised from time\ + \ to time by Apple (\"License\"). As\n used in this License:\n\n1.1 \"Applicable Patents\"\ + \ mean: (a) in the case where Apple is the\n grantor of rights, (i) patents or patent applications\ + \ that are now\n or hereafter acquired, owned by or assigned to Apple and (ii) whose\n\ + \ claims cover subject matter contained in the Original Code, but only\n to the extent\ + \ necessary to use, reproduce and/or distribute the\n Original Code without infringement;\ + \ and (b) in the case where You\n are the grantor of rights, (i) patents and patent applications\ + \ that\n are now or hereafter acquired, owned by or assigned to You and (ii)\n whose claims\ + \ cover subject matter in Your Modifications, taken alone\n or in combination with Original\ + \ Code.\n\n1.2 \"Covered Code\" means the Original Code, Modifications, the\n combination\ + \ of Original Code and any Modifications, and/or any\n respective portions thereof.\n\n\ + 1.3 \"Deploy\" means to use, sublicense or distribute Covered Code other\n than for Your\ + \ internal research and development (R&D), and includes\n without limitation, any and all\ + \ internal use or distribution of\n Covered Code within Your business or organization except\ + \ for R&D\n use, as well as direct or indirect sublicensing or distribution of\n Covered\ + \ Code by You to any third party in any form or manner.\n\n1.4 \"Larger Work\" means a work\ + \ which combines Covered Code or portions\n thereof with code not governed by the terms\ + \ of this License.\n\n1.5 \"Modifications\" mean any addition to, deletion from, and/or\ + \ change\n to, the substance and/or structure of Covered Code. When code is\n released\ + \ as a series of files, a Modification is: (a) any addition\n to or deletion from the contents\ + \ of a file containing Covered Code;\n and/or (b) any new file or other representation\ + \ of computer program\n statements that contains any part of Covered Code.\n\n1.6 \"Original\ + \ Code\" means the Source Code of a program or other work\n as originally made available\ + \ by Apple under this License, including\n the Source Code of any updates or upgrades to\ + \ such programs or works\n made available by Apple under this License, and that has been\n\ + \ expressly identified by Apple as such in the header file(s) of such\n work.\n\n1.7 \"\ + Source Code\" means the human readable form of a program or other\n work that is suitable\ + \ for making modifications to it, including all\n modules it contains, plus any associated\ + \ interface definition files,\n scripts used to control compilation and installation of\ + \ an\n executable (object code).\n\n1.8 \"You\" or \"Your\" means an individual or a legal\ + \ entity exercising\n rights under this License. For legal entities, \"You\" or \"Your\"\ + \n includes any entity which controls, is controlled by, or is under\n common control\ + \ with, You, where \"control\" means (a) the power,\n direct or indirect, to cause the\ + \ direction or management of such\n entity, whether by contract or otherwise, or (b) ownership\ + \ of fifty\n percent (50%) or more of the outstanding shares or beneficial\n ownership\ + \ of such entity.\n\n2. Permitted Uses; Conditions & Restrictions. Subject to the terms\n\ + \ and conditions of this License, Apple hereby grants You, effective\n on the date You\ + \ accept this License and download the Original Code,\n a world-wide, royalty-free, non-exclusive\ + \ license, to the extent of\n Apple's Applicable Patents and copyrights covering the Original\n\ + \ Code, to do the following:\n\n2.1 You may use, copy, modify and distribute Original Code,\ + \ with or\n without Modifications, solely for Your internal research and\n development,\ + \ provided that You must in each instance:\n\n(a) retain and reproduce in all copies of\ + \ Original Code the copyright\nand other proprietary notices and disclaimers of Apple as\ + \ they appear\nin the Original Code, and keep intact all notices in the Original Code\n\ + that refer to this License;\n\n(b) include a copy of this License with every copy of Source\ + \ Code of\nCovered Code and documentation You distribute, and You may not offer\nor impose\ + \ any terms on such Source Code that alter or restrict this\nLicense or the recipients'\ + \ rights hereunder, except as permitted under\nSection 6; and\n\n(c) completely and accurately\ + \ document all Modifications that you have\nmade and the date of each such Modification,\ + \ designate the version of\nthe Original Code you used, prominently include a file carrying\ + \ such\ninformation with the Modifications, and duplicate the notice in\nExhibit A in each\ + \ file of the Source Code of all such Modifications.\n\n2.2 You may Deploy Covered Code,\ + \ provided that You must in each\n instance:\n\n(a) satisfy all the conditions of Section\ + \ 2.1 with respect to the\nSource Code of the Covered Code;\n\n(b) make all Your Deployed\ + \ Modifications publicly available in Source\nCode form via electronic distribution (e.g.\ + \ download from a web site)\nunder the terms of this License and subject to the license\ + \ grants set\nforth in Section 3 below, and any additional terms You may choose to\noffer\ + \ under Section 6. You must continue to make the Source Code of\nYour Deployed Modifications\ + \ available for as long as you Deploy the\nCovered Code or twelve (12) months from the date\ + \ of initial\nDeployment, whichever is longer;\n\n(c) must notify Apple and other third\ + \ parties of how to obtain Your\nDeployed Modifications by filling out and submitting the\ + \ required\ninformation found at\nhttp://www.apple.com/publicsource/modifications.html;\ + \ and\n\n(d) if you Deploy Covered Code in object code, executable form only,\ninclude a\ + \ prominent notice, in the code itself as well as in related\ndocumentation, stating that\ + \ Source Code of the Covered Code is\navailable under the terms of this License with information\ + \ on how and\nwhere to obtain such Source Code.\n\n3. Your Grants. In consideration of,\ + \ and as a condition to, the\n licenses granted to You under this License:\n\n(a) You hereby\ + \ grant to Apple and all third parties a non-exclusive,\nroyalty-free license, under Your\ + \ Applicable Patents and other\nintellectual property rights owned or controlled by You,\ + \ to use,\nreproduce, modify, distribute and Deploy Your Modifications of the\nsame scope\ + \ and extent as Apple's licenses under Sections 2.1 and 2.2;\nand\n\n(b) You hereby grant\ + \ to Apple and its subsidiaries a non-exclusive,\nworldwide, royalty-free, perpetual and\ + \ irrevocable license, under Your\nApplicable Patents and other intellectual property rights\ + \ owned or\ncontrolled by You, to use, reproduce, execute, compile, display,\nperform, modify\ + \ or have modified (for Apple and/or its subsidiaries),\nsublicense and distribute Your\ + \ Modifications, in any form, through\nmultiple tiers of distribution.\n\n4. Larger Works.\ + \ You may create a Larger Work by combining Covered\n Code with other code not governed\ + \ by the terms of this License and\n distribute the Larger Work as a single product. In\ + \ each such\n instance, You must make sure the requirements of this License are\n fulfilled\ + \ for the Covered Code or any portion thereof.\n\n5. Limitations on Patent License. Except\ + \ as expressly stated in\n Section 2, no other patent rights, express or implied, are granted\n\ + \ by Apple herein. Modifications and/or Larger Works may require\n additional patent\ + \ licenses from Apple which Apple may grant in its\n sole discretion.\n\n6. Additional\ + \ Terms. You may choose to offer, and to charge a fee\n for, warranty, support, indemnity\ + \ or liability obligations and/or\n other rights consistent with the scope of the license\ + \ granted herein\n (\"Additional Terms\") to one or more recipients of Covered\n Code.\ + \ However, You may do so only on Your own behalf and as Your\n sole responsibility, and\ + \ not on behalf of Apple. You must obtain the\n recipient's agreement that any such Additional\ + \ Terms are offered by\n You alone, and You hereby agree to indemnify, defend and hold\ + \ Apple\n harmless for any liability incurred by or claims asserted against\n Apple by\ + \ reason of any such Additional Terms.\n\n7. Versions of the License. Apple may publish\ + \ revised and/or new\n versions of this License from time to time. Each version will be\n\ + \ given a distinguishing version number. Once Original Code has been\n published under\ + \ a particular version of this License, You may\n continue to use it under the terms of\ + \ that version. You may also\n choose to use such Original Code under the terms of any\ + \ subsequent\n version of this License published by Apple. No one other than Apple\n \ + \ has the right to modify the terms applicable to Covered Code created\n under this License.\n\ + \n8. NO WARRANTY OR SUPPORT. The Original Code may contain in whole or\n in part pre-release,\ + \ untested, or not fully tested works. The\n Original Code may contain errors that could\ + \ cause failures or loss\n of data, and may be incomplete or contain inaccuracies. You\n\ + \ expressly acknowledge and agree that use of the Original Code, or\n any portion thereof,\ + \ is at Your sole and entire risk. THE ORIGINAL\n CODE IS PROVIDED \"AS IS\" AND WITHOUT\ + \ WARRANTY, UPGRADES OR SUPPORT\n OF ANY KIND AND APPLE AND APPLE'S LICENSOR(S) (FOR THE\ + \ PURPOSES OF\n SECTIONS 8 AND 9, APPLE AND APPLE'S LICENSOR(S) ARE COLLECTIVELY\n REFERRED\ + \ TO AS \"APPLE\") EXPRESSLY DISCLAIM ALL WARRANTIES AND/OR\n CONDITIONS, EXPRESS OR IMPLIED,\ + \ INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY\ + \ OR\n SATISFACTORY QUALITY AND FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT\ + \ OF THIRD PARTY RIGHTS. APPLE DOES NOT WARRANT THAT\n THE FUNCTIONS CONTAINED IN THE\ + \ ORIGINAL CODE WILL MEET YOUR\n REQUIREMENTS, OR THAT THE OPERATION OF THE ORIGINAL CODE\ + \ WILL BE\n UNINTERRUPTED OR ERROR-FREE, OR THAT DEFECTS IN THE ORIGINAL CODE\n WILL BE\ + \ CORRECTED. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN\n BY APPLE OR AN APPLE AUTHORIZED\ + \ REPRESENTATIVE SHALL CREATE A\n WARRANTY OR IN ANY WAY INCREASE THE SCOPE OF THIS WARRANTY.\ + \ You\n acknowledge that the Original Code is not intended for use in the\n operation\ + \ of nuclear facilities, aircraft navigation, communication\n systems, or air traffic control\ + \ machines in which case the failure\n of the Original Code could lead to death, personal\ + \ injury, or severe\n physical or environmental damage.\n\n9. Liability.\n\n9.1 Infringement.\ + \ If any of the Original Code becomes the subject of\n a claim of infringement (\"Affected\ + \ Original Code\"), Apple may, at\n its sole discretion and option: (a) attempt to procure\ + \ the rights\n necessary for You to continue using the Affected Original Code; (b)\n modify\ + \ the Affected Original Code so that it is no longer\n infringing; or (c) terminate Your\ + \ rights to use the Affected\n Original Code, effective immediately upon Apple's posting\ + \ of a\n notice to such effect on the Apple web site that is used for\n implementation\ + \ of this License.\n\n9.2 LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES SHALL APPLE BE\n\ + \ LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL\n DAMAGES ARISING OUT\ + \ OF OR RELATING TO THIS LICENSE OR YOUR USE OR\n INABILITY TO USE THE ORIGINAL CODE, OR\ + \ ANY PORTION THEREOF, WHETHER\n UNDER A THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING\ + \ NEGLIGENCE),\n PRODUCTS LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF\n \ + \ THE POSSIBILITY OF SUCH DAMAGES AND NOTWITHSTANDING THE FAILURE OF\n ESSENTIAL PURPOSE\ + \ OF ANY REMEDY. In no event shall Apple's total\n liability to You for all damages under\ + \ this License exceed the\n amount of fifty dollars ($50.00).\n\n10. Trademarks. This\ + \ License does not grant any rights to use the\n trademarks or trade names \"Apple\",\ + \ \"Apple Computer\", \"Mac OS X\",\n \"Mac OS X Server\" or any other trademarks or trade\ + \ names belonging\n to Apple (collectively \"Apple Marks\") and no Apple Marks may be\n\ + \ used to endorse or promote products derived from the Original Code\n other than as\ + \ permitted by and in strict compliance at all times\n with Apple's third party trademark\ + \ usage guidelines which are\n posted at http://www.apple.com/legal/guidelinesfor3rdparties.html.\n\ + \n11. Ownership. Apple retains all rights, title and interest in and to\n the Original\ + \ Code and any Modifications made by or on behalf of\n Apple (\"Apple Modifications\"\ + ), and such Apple Modifications will\n not be automatically subject to this License. \ + \ Apple may, at its\n sole discretion, choose to license such Apple Modifications under\n\ + \ this License, or on different terms from those contained in this\n License or may\ + \ choose not to license them at all. Apple's\n development, use, reproduction, modification,\ + \ sublicensing and\n distribution of Covered Code will not be subject to this License.\n\ + \n12. Termination.\n\n12.1 Termination. This License and the rights granted hereunder will\n\ + \ terminate:\n\n(a) automatically without notice from Apple if You fail to comply with\n\ + any term(s) of this License and fail to cure such breach within 30\ndays of becoming aware\ + \ of such breach; (b) immediately in the event of\nthe circumstances described in Sections\ + \ 9.1 and/or 13.6(b); or (c)\nautomatically without notice from Apple if You, at any time\ + \ during the\nterm of this License, commence an action for patent infringement\nagainst\ + \ Apple.\n\n12.2 Effect of Termination. Upon termination, You agree to\n immediately\ + \ stop any further use, reproduction, modification and\n distribution of the Covered Code,\ + \ or Affected Original Code in the\n case of termination under Section 9.1, and to destroy\ + \ all copies of\n the Covered Code or Affected Original Code (in the case of\n termination\ + \ under Section 9.1) that are in your possession or\n control. All sublicenses to the\ + \ Covered Code which have been\n properly granted prior to termination shall survive any\ + \ termination\n of this License. Provisions which, by their nature, should remain\n \ + \ in effect beyond the termination of this License shall survive,\n including but not\ + \ limited to Sections 3, 5, 8, 9, 10, 11, 12.2 and\n 13. Neither party will be liable\ + \ to the other for compensation,\n indemnity or damages of any sort solely as a result\ + \ of terminating\n this License in accordance with its terms, and termination of this\n\ + \ License will be without prejudice to any other right or remedy of\n either party.\n\ + \n13. Miscellaneous.\n\n13.1 Export Law Assurances. You may not use or otherwise export\ + \ or\n re-export the Original Code except as authorized by United States\n law and the\ + \ laws of the jurisdiction in which the Original Code was\n obtained. In particular,\ + \ but without limitation, the Original Code\n may not be exported or re-exported (a) into\ + \ (or to a national or\n resident of) any U.S. embargoed country or (b) to anyone on the\n\ + \ U.S. Treasury Department's list of Specially Designated Nationals\n or the U.S. Department\ + \ of Commerce's Table of Denial Orders. By\n using the Original Code, You represent and\ + \ warrant that You are not\n located in, under control of, or a national or resident of\ + \ any such\n country or on any such list.\n\n13.2 Government End Users. The Covered Code\ + \ is a \"commercial item\" as\n defined in FAR 2.101. Government software and technical\ + \ data\n rights in the Covered Code include only those rights customarily\n provided\ + \ to the public as defined in this License. This customary\n commercial license in technical\ + \ data and software is provided in\n accordance with FAR 12.211 (Technical Data) and 12.212\ + \ (Computer\n Software) and, for Department of Defense purchases, DFAR\n 252.227-7015\ + \ (Technical Data -- Commercial Items) and 227.7202-3\n (Rights in Commercial Computer\ + \ Software or Computer Software\n Documentation). Accordingly, all U.S. Government End\ + \ Users acquire\n Covered Code with only those rights set forth herein.\n\n13.3 Relationship\ + \ of Parties. This License will not be construed as\n creating an agency, partnership,\ + \ joint venture or any other form of\n legal association between You and Apple, and You\ + \ will not represent\n to the contrary, whether expressly, by implication, appearance\ + \ or\n otherwise.\n\n13.4 Independent Development. Nothing in this License will impair\n\ + \ Apple's right to acquire, license, develop, have others develop for\n it, market and/or\ + \ distribute technology or products that perform\n the same or similar functions as, or\ + \ otherwise compete with,\n Modifications, Larger Works, technology or products that You\ + \ may\n develop, produce, market or distribute.\n\n13.5 Waiver; Construction. Failure\ + \ by Apple to enforce any provision\n of this License will not be deemed a waiver of future\ + \ enforcement\n of that or any other provision. Any law or regulation which\n provides\ + \ that the language of a contract shall be construed against\n the drafter will not apply\ + \ to this License.\n\n13.6 Severability. (a) If for any reason a court of competent\n \ + \ jurisdiction finds any provision of this License, or portion\n thereof, to be unenforceable,\ + \ that provision of the License will be\n enforced to the maximum extent permissible so\ + \ as to effect the\n economic benefits and intent of the parties, and the remainder of\n\ + \ this License will continue in full force and effect. (b)\n Notwithstanding the foregoing,\ + \ if applicable law prohibits or\n restricts You from fully and/or specifically complying\ + \ with\n Sections 2 and/or 3 or prevents the enforceability of either of\n those Sections,\ + \ this License will immediately terminate and You\n must immediately discontinue any use\ + \ of the Covered Code and\n destroy all copies of it that are in your possession or control.\n\ + \n13.7 Dispute Resolution. Any litigation or other dispute resolution\n between You and\ + \ Apple relating to this License shall take place in\n the Northern District of California,\ + \ and You and Apple hereby\n consent to the personal jurisdiction of, and venue in, the\ + \ state\n and federal courts within that District with respect to this\n License. The\ + \ application of the United Nations Convention on\n Contracts for the International Sale\ + \ of Goods is expressly\n excluded.\n\n13.8 Entire Agreement; Governing Law. This License\ + \ constitutes the\n entire agreement between the parties with respect to the subject\n\ + \ matter hereof. This License shall be governed by the laws of the\n United States\ + \ and the State of California, except that body of\n California law concerning conflicts\ + \ of law.\n\nWhere You are located in the province of Quebec, Canada, the following\nclause\ + \ applies: The parties hereby confirm that they have requested\nthat this License and all\ + \ related documents be drafted in English. Les\nparties ont exige que le present contrat\ + \ et tous les documents\nconnexes soient rediges en anglais.\n\nEXHIBIT A. \n\n\"Portions\ + \ Copyright (c) 1999 Apple Computer, Inc. All Rights\nReserved. This file contains Original\ + \ Code and/or Modifications of\nOriginal Code as defined in and that are subject to the\ + \ Apple Public\nSource License Version 1.0 (the 'License'). You may not use this file\n\ + except in compliance with the License. Please obtain a copy of the\nLicense at http://www.apple.com/publicsource\ + \ and read it before using\nthis file.\n\nThe Original Code and all software distributed\ + \ under the License are\ndistributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND,\ + \ EITHER\nEXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,\nINCLUDING\ + \ WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE\ + \ OR NON-INFRINGEMENT. Please see the\nLicense for the specific language governing rights\ + \ and limitations\nunder the License.\"" json: apsl-1.0.json - yml: apsl-1.0.yml + yaml: apsl-1.0.yml html: apsl-1.0.html - text: apsl-1.0.LICENSE + license: apsl-1.0.LICENSE - license_key: apsl-1.1 + category: Copyleft Limited spdx_license_key: APSL-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + APPLE PUBLIC SOURCE LICENSE + Version 1.1 - April 19,1999 + + Please read this License carefully before downloading this software. + By downloading and using this software, you are agreeing to be bound + by the terms of this License. If you do not or cannot agree to the + terms of this License, please do not download or use the software. + + 1. General; Definitions. This License applies to any program or other + work which Apple Computer, Inc. ("Apple") publicly announces as + subject to this Apple Public Source License and which contains a + notice placed by Apple identifying such program or work as "Original + Code" and stating that it is subject to the terms of this Apple Public + Source License version 1.1 (or subsequent version thereof), as it may + be revised from time to time by Apple ("License"). As used in this + License: + + 1.1 "Affected Original Code" means only those specific portions of + Original Code that allegedly infringe upon any party's intellectual + property rights or are otherwise the subject of a claim of + infringement. + + 1.2 "Applicable Patent Rights" mean: (a) in the case where Apple is + the grantor of rights, (i) claims of patents that are now or hereafter + acquired, owned by or assigned to Apple and (ii) that cover subject + matter contained in the Original Code, but only to the extent + necessary to use, reproduce and/or distribute the Original Code + without infringement; and (b) in the case where You are the grantor of + rights, (i) claims of patents that are now or hereafter acquired, + owned by or assigned to You and (ii) that cover subject matter in Your + Modifications, taken alone or in combination with Original Code. + + 1.3 "Covered Code" means the Original Code, Modifications, the + combination of Original Code and any Modifications, and/or any + respective portions thereof. + + 1.4 "Deploy" means to use, sublicense or distribute Covered Code other + than for Your internal research and development (R&D), and includes + without limitation, any and all internal use or distribution of + Covered Code within Your business or organization except for R&D use, + as well as direct or indirect sublicensing or distribution of Covered + Code by You to any third party in any form or manner. + + 1.5 "Larger Work" means a work which combines Covered Code or portions + thereof with code not governed by the terms of this License. + + 1.6 "Modifications" mean any addition to, deletion from, and/or change + to, the substance and/or structure of Covered Code. When code is + released as a series of files, a Modification is: (a) any addition to + or deletion from the contents of a file containing Covered Code; + and/or (b) any new file or other representation of computer program + statements that contains any part of Covered Code. + + 1.7 "Original Code" means (a) the Source Code of a program or other + work as originally made available by Apple under this License, + including the Source Code of any updates or upgrades to such programs + or works made available by Apple under this License, and that has been + expressly identified by Apple as such in the header file(s) of such + work; and (b) the object code compiled from such Source Code and + originally made available by Apple under this License. + + 1.8 "Source Code" means the human readable form of a program or other + work that is suitable for making modifications to it, including all + modules it contains, plus any associated interface definition files, + scripts used to control compilation and installation of an executable + (object code). + + 1.9 "You" or "Your" means an individual or a legal entity exercising + rights under this License. For legal entities, "You" or "Your" + includes any entity which controls, is controlled by, or is under + common control with, You, where "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of fifty percent + (50%) or more of the outstanding shares or beneficial ownership of + such entity. + + 2. Permitted Uses; Conditions & Restrictions. Subject to the terms + and conditions of this License, Apple hereby grants You, effective on + the date You accept this License and download the Original Code, a + world-wide, royalty-free, non- exclusive license, to the extent of + Apple's Applicable Patent Rights and copyrights covering the Original + Code, to do the following: + + 2.1 You may use, copy, modify and distribute Original Code, with or + without Modifications, solely for Your internal research and + development, provided that You must in each instance: + + (a) retain and reproduce in all copies of Original Code the copyright + and other proprietary notices and disclaimers of Apple as they appear + in the Original Code, and keep intact all notices in the Original Code + that refer to this License; + + (b) include a copy of this License with every copy of Source Code of + Covered Code and documentation You distribute, and You may not offer + or impose any terms on such Source Code that alter or restrict this + License or the recipients' rights hereunder, except as permitted under + Section 6; and + + (c) completely and accurately document all Modifications that you have + made and the date of each such Modification, designate the version of + the Original Code you used, prominently include a file carrying such + information with the Modifications, and duplicate the notice in + Exhibit A in each file of the Source Code of all such Modifications. + + 2.2 You may Deploy Covered Code, provided that You must in each + instance: + + (a) satisfy all the conditions of Section 2.1 with respect to the + Source Code of the Covered Code; + + (b) make all Your Deployed Modifications publicly available in Source + Code form via electronic distribution (e.g. download from a web site) + under the terms of this License and subject to the license grants set + forth in Section 3 below, and any additional terms You may choose to + offer under Section 6. You must continue to make the Source Code of + Your Deployed Modifications available for as long as you Deploy the + Covered Code or twelve (12) months from the date of initial + Deployment, whichever is longer; + + (c) if You Deploy Covered Code containing Modifications made by You, + inform others of how to obtain those Modifications by filling out and + submitting the information found at + http://www.apple.com/publicsource/modifications.html, if available; + and + + (d) if You Deploy Covered Code in object code, executable form only, + include a prominent notice, in the code itself as well as in related + documentation, stating that Source Code of the Covered Code is + available under the terms of this License with information on how and + where to obtain such Source Code. + + 3. Your Grants. In consideration of, and as a condition to, the + licenses granted to You under this License: + + (a) You hereby grant to Apple and all third parties a non-exclusive, + royalty-free license, under Your Applicable Patent Rights and other + intellectual property rights owned or controlled by You, to use, + reproduce, modify, distribute and Deploy Your Modifications of the + same scope and extent as Apple's licenses under Sections 2.1 and 2.2; + and + + (b) You hereby grant to Apple and its subsidiaries a non-exclusive, + worldwide, royalty-free, perpetual and irrevocable license, under Your + Applicable Patent Rights and other intellectual property rights owned + or controlled by You, to use, reproduce, execute, compile, display, + perform, modify or have modified (for Apple and/or its subsidiaries), + sublicense and distribute Your Modifications, in any form, through + multiple tiers of distribution. + + 4. Larger Works. You may create a Larger Work by combining Covered + Code with other code not governed by the terms of this License and + distribute the Larger Work as a single product. In each such + instance, You must make sure the requirements of this License are + fulfilled for the Covered Code or any portion thereof. + + 5. Limitations on Patent License. Except as expressly stated in + Section 2, no other patent rights, express or implied, are granted by + Apple herein. Modifications and/or Larger Works may require + additional patent licenses from Apple which Apple may grant in its + sole discretion. + + 6. Additional Terms. You may choose to offer, and to charge a fee + for, warranty, support, indemnity or liability obligations and/or + other rights consistent with the scope of the license granted herein + ("Additional Terms") to one or more recipients of Covered + Code. However, You may do so only on Your own behalf and as Your sole + responsibility, and not on behalf of Apple. You must obtain the + recipient's agreement that any such Additional Terms are offered by + You alone, and You hereby agree to indemnify, defend and hold Apple + harmless for any liability incurred by or claims asserted against + Apple by reason of any such Additional Terms. + + 7. Versions of the License. Apple may publish revised and/or new + versions of this License from time to time. Each version will be + given a distinguishing version number. Once Original Code has been + published under a particular version of this License, You may continue + to use it under the terms of that version. You may also choose to use + such Original Code under the terms of any subsequent version of this + License published by Apple. No one other than Apple has the right to + modify the terms applicable to Covered Code created under this + License. + + 8. NO WARRANTY OR SUPPORT. The Original Code may contain in whole or + in part pre-release, untested, or not fully tested works. The + Original Code may contain errors that could cause failures or loss of + data, and may be incomplete or contain inaccuracies. You expressly + acknowledge and agree that use of the Original Code, or any portion + thereof, is at Your sole and entire risk. THE ORIGINAL CODE IS + PROVIDED "AS IS" AND WITHOUT WARRANTY, UPGRADES OR SUPPORT OF ANY KIND + AND APPLE AND APPLE'S LICENSOR(S) (FOR THE PURPOSES OF SECTIONS 8 AND + 9, APPLE AND APPLE'S LICENSOR(S) ARE COLLECTIVELY REFERRED TO AS + "APPLE") EXPRESSLY DISCLAIM ALL WARRANTIES AND/OR CONDITIONS, EXPRESS + OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + AND/OR CONDITIONS OF MERCHANTABILITY OR SATISFACTORY QUALITY AND + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY + RIGHTS. APPLE DOES NOT WARRANT THAT THE FUNCTIONS CONTAINED IN THE + ORIGINAL CODE WILL MEET YOUR REQUIREMENTS, OR THAT THE OPERATION OF + THE ORIGINAL CODE WILL BE UNINTERRUPTED OR ERROR- FREE, OR THAT + DEFECTS IN THE ORIGINAL CODE WILL BE CORRECTED. NO ORAL OR WRITTEN + INFORMATION OR ADVICE GIVEN BY APPLE OR AN APPLE AUTHORIZED + REPRESENTATIVE SHALL CREATE A WARRANTY OR IN ANY WAY INCREASE THE + SCOPE OF THIS WARRANTY. You acknowledge that the Original Code is not + intended for use in the operation of nuclear facilities, aircraft + navigation, communication systems, or air traffic control machines in + which case the failure of the Original Code could lead to death, + personal injury, or severe physical or environmental damage. + + 9. Liability. + + 9.1 Infringement. If any portion of, or functionality implemented by, + the Original Code becomes the subject of a claim of infringement, + Apple may, at its option: (a) attempt to procure the rights necessary + for Apple and You to continue using the Affected Original Code; (b) + modify the Affected Original Code so that it is no longer infringing; + or (c) suspend Your rights to use, reproduce, modify, sublicense and + distribute the Affected Original Code until a final determination of + the claim is made by a court or governmental administrative agency of + competent jurisdiction and Apple lifts the suspension as set forth + below. Such suspension of rights will be effective immediately upon + Apple's posting of a notice to such effect on the Apple web site that + is used for implementation of this License. Upon such final + determination being made, if Apple is legally able, without the + payment of a fee or royalty, to resume use, reproduction, + modification, sublicensing and distribution of the Affected Original + Code, Apple will lift the suspension of rights to the Affected + Original Code by posting a notice to such effect on the Apple web site + that is used for implementation of this License. If Apple suspends + Your rights to Affected Original Code, nothing in this License shall + be construed to restrict You, at Your option and subject to applicable + law, from replacing the Affected Original Code with non-infringing + code or independently negotiating for necessary rights from such third + party. + + 9.2 LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES SHALL APPLE BE + LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES + ARISING OUT OF OR RELATING TO THIS LICENSE OR YOUR USE OR INABILITY TO + USE THE ORIGINAL CODE, OR ANY PORTION THEREOF, WHETHER UNDER A THEORY + OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCTS LIABILITY + OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF + SUCH DAMAGES AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF + ANY REMEDY. In no event shall Apple's total liability to You for all + damages under this License exceed the amount of fifty dollars + ($50.00). + + 10. Trademarks. This License does not grant any rights to use the + trademarks or trade names "Apple", "Apple Computer", "Mac OS X", "Mac + OS X Server" or any other trademarks or trade names belonging to Apple + (collectively "Apple Marks") and no Apple Marks may be used to endorse + or promote products derived from the Original Code other than as + permitted by and in strict compliance at all times with Apple's third + party trademark usage guidelines which are posted at + http://www.apple.com/legal/guidelinesfor3rdparties.html. + + 11. Ownership. Apple retains all rights, title and interest in and to + the Original Code and any Modifications made by or on behalf of Apple + ("Apple Modifications"), and such Apple Modifications will not be + automatically subject to this License. Apple may, at its sole + discretion, choose to license such Apple Modifications under this + License, or on different terms from those contained in this License or + may choose not to license them at all. Apple's development, use, + reproduction, modification, sublicensing and distribution of Covered + Code will not be subject to this License. + + 12. Termination. + + 12.1 Termination. This License and the rights granted hereunder will + terminate: + + (a) automatically without notice from Apple if You fail to comply with + any term(s) of this License and fail to cure such breach within 30 + days of becoming aware of such breach; (b) immediately in the event of + the circumstances described in Section 13.5(b); or (c) automatically + without notice from Apple if You, at any time during the term of this + License, commence an action for patent infringement against Apple. + + 12.2 Effect of Termination. Upon termination, You agree to + immediately stop any further use, reproduction, modification, + sublicensing and distribution of the Covered Code and to destroy all + copies of the Covered Code that are in your possession or control. + All sublicenses to the Covered Code which have been properly granted + prior to termination shall survive any termination of this License. + Provisions which, by their nature, should remain in effect beyond the + termination of this License shall survive, including but not limited + to Sections 3, 5, 8, 9, 10, 11, 12.2 and 13. Neither party will be + liable to the other for compensation, indemnity or damages of any sort + solely as a result of terminating this License in accordance with its + terms, and termination of this License will be without prejudice to + any other right or remedy of either party. + + 13. Miscellaneous. + + 13.1 Government End Users. The Covered Code is a "commercial item" as + defined in FAR 2.101. Government software and technical data rights + in the Covered Code include only those rights customarily provided to + the public as defined in this License. This customary commercial + license in technical data and software is provided in accordance with + FAR 12.211 (Technical Data) and 12.212 (Computer Software) and, for + Department of Defense purchases, DFAR 252.227-7015 (Technical Data -- + Commercial Items) and 227.7202-3 (Rights in Commercial Computer + Software or Computer Software Documentation). Accordingly, all U.S. + Government End Users acquire Covered Code with only those rights set + forth herein. + + 13.2 Relationship of Parties. This License will not be construed as + creating an agency, partnership, joint venture or any other form of + legal association between You and Apple, and You will not represent to + the contrary, whether expressly, by implication, appearance or + otherwise. + + 13.3 Independent Development. Nothing in this License will impair + Apple's right to acquire, license, develop, have others develop for + it, market and/or distribute technology or products that perform the + same or similar functions as, or otherwise compete with, + Modifications, Larger Works, technology or products that You may + develop, produce, market or distribute. + + 13.4 Waiver; Construction. Failure by Apple to enforce any provision + of this License will not be deemed a waiver of future enforcement of + that or any other provision. Any law or regulation which provides + that the language of a contract shall be construed against the drafter + will not apply to this License. + + 13.5 Severability. (a) If for any reason a court of competent + jurisdiction finds any provision of this License, or portion thereof, + to be unenforceable, that provision of the License will be enforced to + the maximum extent permissible so as to effect the economic benefits + and intent of the parties, and the remainder of this License will + continue in full force and effect. (b) Notwithstanding the foregoing, + if applicable law prohibits or restricts You from fully and/or + specifically complying with Sections 2 and/or 3 or prevents the + enforceability of either of those Sections, this License will + immediately terminate and You must immediately discontinue any use of + the Covered Code and destroy all copies of it that are in your + possession or control. + + 13.6 Dispute Resolution. Any litigation or other dispute resolution + between You and Apple relating to this License shall take place in the + Northern District of California, and You and Apple hereby consent to + the personal jurisdiction of, and venue in, the state and federal + courts within that District with respect to this License. The + application of the United Nations Convention on Contracts for the + International Sale of Goods is expressly excluded. + + 13.7 Entire Agreement; Governing Law. This License constitutes the + entire agreement between the parties with respect to the subject + matter hereof. This License shall be governed by the laws of the + United States and the State of California, except that body of + California law concerning conflicts of law. + + Where You are located in the province of Quebec, Canada, the following + clause applies: The parties hereby confirm that they have requested + that this License and all related documents be drafted in English. Les + parties ont exige que le present contrat et tous les documents + connexes soient rediges en anglais. + + EXHIBIT A. + + "Portions Copyright (c) 1999-2000 Apple Computer, Inc. All Rights + Reserved. This file contains Original Code and/or Modifications of + Original Code as defined in and that are subject to the Apple Public + Source License Version 1.1 (the "License"). You may not use this file + except in compliance with the License. Please obtain a copy of the + License at http://www.apple.com/publicsource and read it before using + this file. + + The Original Code and all software distributed under the License are + distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER + EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, + INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the + License for the specific language governing rights and limitations + under the License." json: apsl-1.1.json - yml: apsl-1.1.yml + yaml: apsl-1.1.yml html: apsl-1.1.html - text: apsl-1.1.LICENSE + license: apsl-1.1.LICENSE - license_key: apsl-1.2 + category: Copyleft Limited spdx_license_key: APSL-1.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + APPLE PUBLIC SOURCE LICENSE + Version 1.2 - January 4, 2001 + + Please read this License carefully before downloading this software. + By downloading or using this software, you are agreeing to be bound by + the terms of this License. If you do not or cannot agree to the terms + of this License, please do not download or use the software. + + 1. General; Definitions. This License applies to any program or other + work which Apple Computer, Inc. ("Apple") makes publicly available and + which contains a notice placed by Apple identifying such program or + work as "Original Code" and stating that it is subject to the terms of + this Apple Public Source License version 1.2 (or subsequent version + thereof) ("License"). As used in this License: + + 1.1 "Applicable Patent Rights" mean: (a) in the case where Apple is + the grantor of rights, (i) claims of patents that are now or hereafter + acquired, owned by or assigned to Apple and (ii) that cover subject + matter contained in the Original Code, but only to the extent + necessary to use, reproduce and/or distribute the Original Code + without infringement; and (b) in the case where You are the grantor of + rights, (i) claims of patents that are now or hereafter acquired, + owned by or assigned to You and (ii) that cover subject matter in Your + Modifications, taken alone or in combination with Original Code. + + 1.2 "Contributor" means any person or entity that creates or + contributes to the creation of Modifications. + + 1.3 "Covered Code" means the Original Code, Modifications, the + combination of Original Code and any Modifications, and/or any + respective portions thereof. + + 1.4 "Deploy" means to use, sublicense or distribute Covered Code other + than for Your internal research and development (R&D) and/or + Personal Use, and includes without limitation, any and all internal + use or distribution of Covered Code within Your business or + organization except for R&D use and/or Personal Use, as well as + direct or indirect sublicensing or distribution of Covered Code by You + to any third party in any form or manner. + + 1.5 "Larger Work" means a work which combines Covered Code or portions + thereof with code not governed by the terms of this License. + + 1.6 "Modifications" mean any addition to, deletion from, and/or change + to, the substance and/or structure of the Original Code, any previous + Modifications, the combination of Original Code and any previous + Modifications, and/or any respective portions thereof. When code is + released as a series of files, a Modification is: (a) any addition to + or deletion from the contents of a file containing Covered Code; + and/or (b) any new file or other representation of computer program + statements that contains any part of Covered Code. + + 1.7 "Original Code" means (a) the Source Code of a program or other + work as originally made available by Apple under this License, + including the Source Code of any updates or upgrades to such programs + or works made available by Apple under this License, and that has been + expressly identified by Apple as such in the header file(s) of such + work; and (b) the object code compiled from such Source Code and + originally made available by Apple under this License. + + 1.8 "Personal Use" means use of Covered Code by an individual solely + for his or her personal, private and non-commercial purposes. An + individual's use of Covered Code in his or her capacity as an officer, + employee, member, independent contractor or agent of a corporation, + business or organization (commercial or non-commercial) does not + qualify as Personal Use. + + 1.9 "Source Code" means the human readable form of a program or other + work that is suitable for making modifications to it, including all + modules it contains, plus any associated interface definition files, + scripts used to control compilation and installation of an executable + (object code). + + 1.10 "You" or "Your" means an individual or a legal entity exercising + rights under this License. For legal entities, "You" or "Your" + includes any entity which controls, is controlled by, or is under + common control with, You, where "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of fifty percent + (50%) or more of the outstanding shares or beneficial ownership of + such entity. + + 2. Permitted Uses; Conditions & Restrictions. Subject to the terms + and conditions of this License, Apple hereby grants You, effective on + the date You accept this License and download the Original Code, a + world-wide, royalty-free, non-exclusive license, to the extent of + Apple's Applicable Patent Rights and copyrights covering the Original + Code, to do the following: + + 2.1 You may use, reproduce, display, perform, modify and distribute + Original Code, with or without Modifications, solely for Your internal + research and development and/or Personal Use, provided that in each + instance: + + (a) You must retain and reproduce in all copies of Original Code the + copyright and other proprietary notices and disclaimers of Apple as + they appear in the Original Code, and keep intact all notices in the + Original Code that refer to this License; and + + (b) You must include a copy of this License with every copy of Source + Code of Covered Code and documentation You distribute, and You may not + offer or impose any terms on such Source Code that alter or restrict + this License or the recipients' rights hereunder, except as permitted + under Section 6. + + 2.2 You may use, reproduce, display, perform, modify and Deploy + Covered Code, provided that in each instance: + + (a) You must satisfy all the conditions of Section 2.1 with respect to + the Source Code of the Covered Code; + + (b) You must duplicate, to the extent it does not already exist, the + notice in Exhibit A in each file of the Source Code of all Your + Modifications, and cause the modified files to carry prominent notices + stating that You changed the files and the date of any change; + + (c) You must make Source Code of all Your Deployed Modifications + publicly available under the terms of this License, including the + license grants set forth in Section 3 below, for as long as you Deploy + the Covered Code or twelve (12) months from the date of initial + Deployment, whichever is longer. You should preferably distribute the + Source Code of Your Deployed Modifications electronically (e.g. + download from a web site); and + + (d) if You Deploy Covered Code in object code, executable form only, + You must include a prominent notice, in the code itself as well as in + related documentation, stating that Source Code of the Covered Code is + available under the terms of this License with information on how and + where to obtain such Source Code. + + 2.3 You expressly acknowledge and agree that although Apple and each + Contributor grants the licenses to their respective portions of the + Covered Code set forth herein, no assurances are provided by Apple or + any Contributor that the Covered Code does not infringe the patent or + other intellectual property rights of any other entity. Apple and each + Contributor disclaim any liability to You for claims brought by any + other entity based on infringement of intellectual property rights or + otherwise. As a condition to exercising the rights and licenses + granted hereunder, You hereby assume sole responsibility to secure any + other intellectual property rights needed, if any. For example, if a + third party patent license is required to allow You to distribute the + Covered Code, it is Your responsibility to acquire that license before + distributing the Covered Code. + + 3. Your Grants. In consideration of, and as a condition to, the + licenses granted to You under this License: + + (a) You hereby grant to Apple and all third parties a non-exclusive, + royalty-free license, under Your Applicable Patent Rights and other + intellectual property rights (other than patent) owned or controlled + by You, to use, reproduce, display, perform, modify, distribute and + Deploy Your Modifications of the same scope and extent as Apple's + licenses under Sections 2.1 and 2.2; and + + (b) You hereby grant to Apple and its subsidiaries a non-exclusive, + worldwide, royalty-free, perpetual and irrevocable license, under Your + Applicable Patent Rights and other intellectual property rights (other + than patent) owned or controlled by You, to use, reproduce, display, + perform, modify or have modified (for Apple and/or its subsidiaries), + sublicense and distribute Your Modifications, in any form, through + multiple tiers of distribution. + + 4. Larger Works. You may create a Larger Work by combining Covered + Code with other code not governed by the terms of this License and + distribute the Larger Work as a single product. In each such instance, + You must make sure the requirements of this License are fulfilled for + the Covered Code or any portion thereof. + + 5. Limitations on Patent License. Except as expressly stated in + Section 2, no other patent rights, express or implied, are granted by + Apple herein. Modifications and/or Larger Works may require additional + patent licenses from Apple which Apple may grant in its sole + discretion. + + 6. Additional Terms. You may choose to offer, and to charge a fee for, + warranty, support, indemnity or liability obligations and/or other + rights consistent with the scope of the license granted herein + ("Additional Terms") to one or more recipients of Covered Code. + However, You may do so only on Your own behalf and as Your sole + responsibility, and not on behalf of Apple or any Contributor. You + must obtain the recipient's agreement that any such Additional Terms + are offered by You alone, and You hereby agree to indemnify, defend + and hold Apple and every Contributor harmless for any liability + incurred by or claims asserted against Apple or such Contributor by + reason of any such Additional Terms. + + 7. Versions of the License. Apple may publish revised and/or new + versions of this License from time to time. Each version will be given + a distinguishing version number. Once Original Code has been published + under a particular version of this License, You may continue to use it + under the terms of that version. You may also choose to use such + Original Code under the terms of any subsequent version of this + License published by Apple. No one other than Apple has the right to + modify the terms applicable to Covered Code created under this + License. + + 8. NO WARRANTY OR SUPPORT. The Covered Code may contain in whole or in + part pre-release, untested, or not fully tested works. The Covered + Code may contain errors that could cause failures or loss of data, and + may be incomplete or contain inaccuracies. You expressly acknowledge + and agree that use of the Covered Code, or any portion thereof, is at + Your sole and entire risk. THE COVERED CODE IS PROVIDED "AS IS" AND + WITHOUT WARRANTY, UPGRADES OR SUPPORT OF ANY KIND AND APPLE AND + APPLE'S LICENSOR(S) (COLLECTIVELY REFERRED TO AS "APPLE" FOR THE + PURPOSES OF SECTIONS 8 AND 9) AND ALL CONTRIBUTORS EXPRESSLY DISCLAIM + ALL WARRANTIES AND/OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT + NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF + MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR + PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND NONINFRINGEMENT OF THIRD + PARTY RIGHTS. APPLE AND EACH CONTRIBUTOR DOES NOT WARRANT AGAINST + INTERFERENCE WITH YOUR ENJOYMENT OF THE COVERED CODE, THAT THE + FUNCTIONS CONTAINED IN THE COVERED CODE WILL MEET YOUR REQUIREMENTS, + THAT THE OPERATION OF THE COVERED CODE WILL BE UNINTERRUPTED OR + ERROR-FREE, OR THAT DEFECTS IN THE COVERED CODE WILL BE CORRECTED. NO + ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE, AN APPLE + AUTHORIZED REPRESENTATIVE OR ANY CONTRIBUTOR SHALL CREATE A WARRANTY. + You acknowledge that the Covered Code is not intended for use in the + operation of nuclear facilities, aircraft navigation, communication + systems, or air traffic control machines in which case the failure of + the Covered Code could lead to death, personal injury, or severe + physical or environmental damage. + + 9. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO + EVENT SHALL APPLE OR ANY CONTRIBUTOR BE LIABLE FOR ANY INCIDENTAL, + SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING + TO THIS LICENSE OR YOUR USE OR INABILITY TO USE THE COVERED CODE, OR + ANY PORTION THEREOF, WHETHER UNDER A THEORY OF CONTRACT, WARRANTY, + TORT (INCLUDING NEGLIGENCE), PRODUCTS LIABILITY OR OTHERWISE, EVEN IF + APPLE OR SUCH CONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH + DAMAGES AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY + REMEDY. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY OF + INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY + TO YOU. In no event shall Apple's total liability to You for all + damages (other than as may be required by applicable law) under this + License exceed the amount of fifty dollars ($50.00). + + 10. Trademarks. This License does not grant any rights to use the + trademarks or trade names "Apple", "Apple Computer", "Mac OS X", "Mac + OS X Server", "QuickTime", "QuickTime Streaming Server" or any other + trademarks or trade names belonging to Apple (collectively "Apple + Marks") or to any trademark or trade name belonging to any + Contributor. No Apple Marks may be used to endorse or promote products + derived from the Original Code other than as permitted by and in + strict compliance at all times with Apple's third party trademark + usage guidelines which are posted at + http://www.apple.com/legal/guidelinesfor3rdparties.html. + + 11. Ownership. Subject to the licenses granted under this License, + each Contributor retains all rights, title and interest in and to any + Modifications made by such Contributor. Apple retains all rights, + title and interest in and to the Original Code and any Modifications + made by or on behalf of Apple ("Apple Modifications"), and such Apple + Modifications will not be automatically subject to this License. Apple + may, at its sole discretion, choose to license such Apple + Modifications under this License, or on different terms from those + contained in this License or may choose not to license them at all. + + 12. Termination. + + 12.1 Termination. This License and the rights granted hereunder will + terminate: + + (a) automatically without notice from Apple if You fail to comply with + any term(s) of this License and fail to cure such breach within 30 + days of becoming aware of such breach; + + (b) immediately in the event of the circumstances described in Section + 13.5(b); or + + (c) automatically without notice from Apple if You, at any time during + the term of this License, commence an action for patent infringement + against Apple. + + 12.2 Effect of Termination. Upon termination, You agree to immediately + stop any further use, reproduction, modification, sublicensing and + distribution of the Covered Code and to destroy all copies of the + Covered Code that are in your possession or control. All sublicenses + to the Covered Code which have been properly granted prior to + termination shall survive any termination of this License. Provisions + which, by their nature, should remain in effect beyond the termination + of this License shall survive, including but not limited to Sections + 3, 5, 8, 9, 10, 11, 12.2 and 13. No party will be liable to any other + for compensation, indemnity or damages of any sort solely as a result + of terminating this License in accordance with its terms, and + termination of this License will be without prejudice to any other + right or remedy of any party. + + 13. Miscellaneous. + + 13.1 Government End Users. The Covered Code is a "commercial item" as + defined in FAR 2.101. Government software and technical data rights in + the Covered Code include only those rights customarily provided to the + public as defined in this License. This customary commercial license + in technical data and software is provided in accordance with FAR + 12.211 (Technical Data) and 12.212 (Computer Software) and, for + Department of Defense purchases, DFAR 252.227-7015 (Technical Data -- + Commercial Items) and 227.7202-3 (Rights in Commercial Computer + Software or Computer Software Documentation). Accordingly, all U.S. + Government End Users acquire Covered Code with only those rights set + forth herein. + + 13.2 Relationship of Parties. This License will not be construed as + creating an agency, partnership, joint venture or any other form of + legal association between or among You, Apple or any Contributor, and + You will not represent to the contrary, whether expressly, by + implication, appearance or otherwise. + + 13.3 Independent Development. Nothing in this License will impair + Apple's right to acquire, license, develop, have others develop for + it, market and/or distribute technology or products that perform the + same or similar functions as, or otherwise compete with, + Modifications, Larger Works, technology or products that You may + develop, produce, market or distribute. + + 13.4 Waiver; Construction. Failure by Apple or any Contributor to + enforce any provision of this License will not be deemed a waiver of + future enforcement of that or any other provision. Any law or + regulation which provides that the language of a contract shall be + construed against the drafter will not apply to this License. + + 13.5 Severability. (a) If for any reason a court of competent + jurisdiction finds any provision of this License, or portion thereof, + to be unenforceable, that provision of the License will be enforced to + the maximum extent permissible so as to effect the economic benefits + and intent of the parties, and the remainder of this License will + continue in full force and effect. (b) Notwithstanding the foregoing, + if applicable law prohibits or restricts You from fully and/or + specifically complying with Sections 2 and/or 3 or prevents the + enforceability of either of those Sections, this License will + immediately terminate and You must immediately discontinue any use of + the Covered Code and destroy all copies of it that are in your + possession or control. + + 13.6 Dispute Resolution. Any litigation or other dispute resolution + between You and Apple relating to this License shall take place in the + Northern District of California, and You and Apple hereby consent to + the personal jurisdiction of, and venue in, the state and federal + courts within that District with respect to this License. The + application of the United Nations Convention on Contracts for the + International Sale of Goods is expressly excluded. + + 13.7 Entire Agreement; Governing Law. This License constitutes the + entire agreement between the parties with respect to the subject + matter hereof. This License shall be governed by the laws of the + United States and the State of California, except that body of + California law concerning conflicts of law. + + Where You are located in the province of Quebec, Canada, the following + clause applies: The parties hereby confirm that they have requested + that this License and all related documents be drafted in English. Les + parties ont exige que le present contrat et tous les documents + connexes soient rediges en anglais. + + EXHIBIT A. + + "Portions Copyright (c) 1999-2003 Apple Computer, Inc. All Rights + Reserved. + + This file contains Original Code and/or Modifications of Original Code + as defined in and that are subject to the Apple Public Source License + Version 1.2 (the 'License'). You may not use this file except in + compliance with the License. Please obtain a copy of the License at + http://www.apple.com/publicsource and read it before using this file. + + The Original Code and all software distributed under the License are + distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER + EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, + INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. + Please see the License for the specific language governing rights and + limitations under the License." json: apsl-1.2.json - yml: apsl-1.2.yml + yaml: apsl-1.2.yml html: apsl-1.2.html - text: apsl-1.2.LICENSE + license: apsl-1.2.LICENSE - license_key: apsl-2.0 + category: Copyleft Limited spdx_license_key: APSL-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "APPLE PUBLIC SOURCE LICENSE\nVersion 2.0 - August 6, 2003\n\nPlease read this License\ + \ carefully before downloading this software. By downloading or using this software, you\ + \ are agreeing to be bound by the terms of this License. If you do not or cannot agree to\ + \ the terms of this License, please do not download or use the software.\n\n1. General;\ + \ Definitions. This License applies to any program or other work which Apple Computer, Inc.\ + \ (\"Apple\") makes publicly available and which contains a notice placed by Apple identifying\ + \ such program or work as \"Original Code\" and stating that it is subject to the terms\ + \ of this Apple Public Source License version 2.0 (\"License\"). As used in this License:\n\ + \n1.1 \"Applicable Patent Rights\" mean: (a) in the case where Apple is the grantor of rights,\ + \ (i) claims of patents that are now or hereafter acquired, owned by or assigned to Apple\ + \ and (ii) that cover subject matter contained in the Original Code, but only to the extent\ + \ necessary to use, reproduce and/or distribute the Original Code without infringement;\ + \ and (b) in the case where You are the grantor of rights, (i) claims of patents that are\ + \ now or hereafter acquired, owned by or assigned to You and (ii) that cover subject matter\ + \ in Your Modifications, taken alone or in combination with Original Code.\n\n1.2 \"Contributor\"\ + \ means any person or entity that creates or contributes to the creation of Modifications.\ + \ \n\n1.3 \"Covered Code\" means the Original Code, Modifications, the combination of Original\ + \ Code and any Modifications, and/or any respective portions thereof.\n\n1.4 \"Externally\ + \ Deploy\" means: (a) to sublicense, distribute or otherwise make Covered Code available,\ + \ directly or indirectly, to anyone other than You; and/or (b) to use Covered Code, alone\ + \ or as part of a Larger Work, in any way to provide a service, including but not limited\ + \ to delivery of content, through electronic communication with a client other than You.\n\ + \n1.5 \"Larger Work\" means a work which combines Covered Code or portions thereof with\ + \ code not governed by the terms of this License.\n\n1.6 \"Modifications\" mean any addition\ + \ to, deletion from, and/or change to, the substance and/or structure of the Original Code,\ + \ any previous Modifications, the combination of Original Code and any previous Modifications,\ + \ and/or any respective portions thereof. When code is released as a series of files, a\ + \ Modification is: (a) any addition to or deletion from the contents of a file containing\ + \ Covered Code; and/or (b) any new file or other representation of computer program statements\ + \ that contains any part of Covered Code.\n\n1.7 \"Original Code\" means (a) the Source\ + \ Code of a program or other work as originally made available by Apple under this License,\ + \ including the Source Code of any updates or upgrades to such programs or works made available\ + \ by Apple under this License, and that has been expressly identified by Apple as such in\ + \ the header file(s) of such work; and (b) the object code compiled from such Source Code\ + \ and originally made available by Apple under this License.\n\n1.8 \"Source Code\" means\ + \ the human readable form of a program or other work that is suitable for making modifications\ + \ to it, including all modules it contains, plus any associated interface definition files,\ + \ scripts used to control compilation and installation of an executable (object code).\n\ + \n1.9 \"You\" or \"Your\" means an individual or a legal entity exercising rights under\ + \ this License. For legal entities, \"You\" or \"Your\" includes any entity which controls,\ + \ is controlled by, or is under common control with, You, where \"control\" means (a) the\ + \ power, direct or indirect, to cause the direction or management of such entity, whether\ + \ by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding\ + \ shares or beneficial ownership of such entity.\n\n2. Permitted Uses; Conditions & Restrictions.\ + \ Subject to the terms and conditions of this License, Apple hereby grants You, effective\ + \ on the date You accept this License and download the Original Code, a world-wide, royalty-free,\ + \ non-exclusive license, to the extent of Apple's Applicable Patent Rights and copyrights\ + \ covering the Original Code, to do the following:\n\n2.1 Unmodified Code. You may use,\ + \ reproduce, display, perform, internally distribute within Your organization, and Externally\ + \ Deploy verbatim, unmodified copies of the Original Code, for commercial or non-commercial\ + \ purposes, provided that in each instance: \n\n(a) You must retain and reproduce in all\ + \ copies of Original Code the copyright and other proprietary notices and disclaimers of\ + \ Apple as they appear in the Original Code, and keep intact all notices in the Original\ + \ Code that refer to this License; and \n\n(b) You must include a copy of this License with\ + \ every copy of Source Code of Covered Code and documentation You distribute or Externally\ + \ Deploy, and You may not offer or impose any terms on such Source Code that alter or restrict\ + \ this License or the recipients' rights hereunder, except as permitted under Section 6.\n\ + \n2.2 Modified Code. You may modify Covered Code and use, reproduce, display, perform, internally\ + \ distribute within Your organization, and Externally Deploy Your Modifications and Covered\ + \ Code, for commercial or non-commercial purposes, provided that in each instance You also\ + \ meet all of these conditions:\n\n(a) You must satisfy all the conditions of Section 2.1\ + \ with respect to the Source Code of the Covered Code;\n\n(b) You must duplicate, to the\ + \ extent it does not already exist, the notice in Exhibit A in each file of the Source Code\ + \ of all Your Modifications, and cause the modified files to carry prominent notices stating\ + \ that You changed the files and the date of any change; and\n\n(c) If You Externally Deploy\ + \ Your Modifications, You must make Source Code of all Your Externally Deployed Modifications\ + \ either available to those to whom You have Externally Deployed Your Modifications, or\ + \ publicly available. Source Code of Your Externally Deployed Modifications must be released\ + \ under the terms set forth in this License, including the license grants set forth in Section\ + \ 3 below, for as long as you Externally Deploy the Covered Code or twelve (12) months from\ + \ the date of initial External Deployment, whichever is longer. You should preferably distribute\ + \ the Source Code of Your Externally Deployed Modifications electronically (e.g. download\ + \ from a web site).\n\n2.3 Distribution of Executable Versions. In addition, if You Externally\ + \ Deploy Covered Code (Original Code and/or Modifications) in object code, executable form\ + \ only, You must include a prominent notice, in the code itself as well as in related documentation,\ + \ stating that Source Code of the Covered Code is available under the terms of this License\ + \ with information on how and where to obtain such Source Code.\n\n2.4 Third Party Rights.\ + \ You expressly acknowledge and agree that although Apple and each Contributor grants the\ + \ licenses to their respective portions of the Covered Code set forth herein, no assurances\ + \ are provided by Apple or any Contributor that the Covered Code does not infringe the patent\ + \ or other intellectual property rights of any other entity. Apple and each Contributor\ + \ disclaim any liability to You for claims brought by any other entity based on infringement\ + \ of intellectual property rights or otherwise. As a condition to exercising the rights\ + \ and licenses granted hereunder, You hereby assume sole responsibility to secure any other\ + \ intellectual property rights needed, if any. For example, if a third party patent license\ + \ is required to allow You to distribute the Covered Code, it is Your responsibility to\ + \ acquire that license before distributing the Covered Code. \n\n3. Your Grants. In consideration\ + \ of, and as a condition to, the licenses granted to You under this License, You hereby\ + \ grant to any person or entity receiving or distributing Covered Code under this License\ + \ a non-exclusive, royalty-free, perpetual, irrevocable license, under Your Applicable Patent\ + \ Rights and other intellectual property rights (other than patent) owned or controlled\ + \ by You, to use, reproduce, display, perform, modify, sublicense, distribute and Externally\ + \ Deploy Your Modifications of the same scope and extent as Apple's licenses under Sections\ + \ 2.1 and 2.2 above. \n\n4. Larger Works. You may create a Larger Work by combining Covered\ + \ Code with other code not governed by the terms of this License and distribute the Larger\ + \ Work as a single product. In each such instance, You must make sure the requirements of\ + \ this License are fulfilled for the Covered Code or any portion thereof. \n\n5. Limitations\ + \ on Patent License. Except as expressly stated in Section 2, no other patent rights, express\ + \ or implied, are granted by Apple herein. Modifications and/or Larger Works may require\ + \ additional patent licenses from Apple which Apple may grant in its sole discretion.\n\n\ + 6. Additional Terms. You may choose to offer, and to charge a fee for, warranty, support,\ + \ indemnity or liability obligations and/or other rights consistent with the scope of the\ + \ license granted herein (\"Additional Terms\") to one or more recipients of Covered Code.\ + \ However, You may do so only on Your own behalf and as Your sole responsibility, and not\ + \ on behalf of Apple or any Contributor. You must obtain the recipient's agreement that\ + \ any such Additional Terms are offered by You alone, and You hereby agree to indemnify,\ + \ defend and hold Apple and every Contributor harmless for any liability incurred by or\ + \ claims asserted against Apple or such Contributor by reason of any such Additional Terms.\n\ + \n7. Versions of the License. Apple may publish revised and/or new versions of this License\ + \ from time to time. Each version will be given a distinguishing version number. Once Original\ + \ Code has been published under a particular version of this License, You may continue to\ + \ use it under the terms of that version. You may also choose to use such Original Code\ + \ under the terms of any subsequent version of this License published by Apple. No one other\ + \ than Apple has the right to modify the terms applicable to Covered Code created under\ + \ this License.\n\n8. NO WARRANTY OR SUPPORT. The Covered Code may contain in whole or in\ + \ part pre-release, untested, or not fully tested works. The Covered Code may contain errors\ + \ that could cause failures or loss of data, and may be incomplete or contain inaccuracies.\ + \ You expressly acknowledge and agree that use of the Covered Code, or any portion thereof,\ + \ is at Your sole and entire risk. THE COVERED CODE IS PROVIDED \"AS IS\" AND WITHOUT WARRANTY,\ + \ UPGRADES OR SUPPORT OF ANY KIND AND APPLE AND APPLE'S LICENSOR(S) (COLLECTIVELY REFERRED\ + \ TO AS \"APPLE\" FOR THE PURPOSES OF SECTIONS 8 AND 9) AND ALL CONTRIBUTORS EXPRESSLY DISCLAIM\ + \ ALL WARRANTIES AND/OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\ + \ IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS\ + \ FOR A PARTICULAR PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND NONINFRINGEMENT OF THIRD\ + \ PARTY RIGHTS. APPLE AND EACH CONTRIBUTOR DOES NOT WARRANT AGAINST INTERFERENCE WITH YOUR\ + \ ENJOYMENT OF THE COVERED CODE, THAT THE FUNCTIONS CONTAINED IN THE COVERED CODE WILL MEET\ + \ YOUR REQUIREMENTS, THAT THE OPERATION OF THE COVERED CODE WILL BE UNINTERRUPTED OR ERROR-FREE,\ + \ OR THAT DEFECTS IN THE COVERED CODE WILL BE CORRECTED. NO ORAL OR WRITTEN INFORMATION\ + \ OR ADVICE GIVEN BY APPLE, AN APPLE AUTHORIZED REPRESENTATIVE OR ANY CONTRIBUTOR SHALL\ + \ CREATE A WARRANTY. You acknowledge that the Covered Code is not intended for use in the\ + \ operation of nuclear facilities, aircraft navigation, communication systems, or air traffic\ + \ control machines in which case the failure of the Covered Code could lead to death, personal\ + \ injury, or severe physical or environmental damage. \n\n9. LIMITATION OF LIABILITY. TO\ + \ THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT SHALL APPLE OR ANY CONTRIBUTOR BE LIABLE\ + \ FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING\ + \ TO THIS LICENSE OR YOUR USE OR INABILITY TO USE THE COVERED CODE, OR ANY PORTION THEREOF,\ + \ WHETHER UNDER A THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCTS LIABILITY\ + \ OR OTHERWISE, EVEN IF APPLE OR SUCH CONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF\ + \ SUCH DAMAGES AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. SOME\ + \ JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY OF INCIDENTAL OR CONSEQUENTIAL\ + \ DAMAGES, SO THIS LIMITATION MAY NOT APPLY TO YOU. In no event shall Apple's total liability\ + \ to You for all damages (other than as may be required by applicable law) under this License\ + \ exceed the amount of fifty dollars ($50.00).\n\n10. Trademarks. This License does not\ + \ grant any rights to use the trademarks or trade names \"Apple\", \"Apple Computer\", \"\ + Mac\", \"Mac OS\", \"QuickTime\", \"QuickTime Streaming Server\" or any other trademarks,\ + \ service marks, logos or trade names belonging to Apple (collectively \"Apple Marks\")\ + \ or to any trademark, service mark, logo or trade name belonging to any Contributor. You\ + \ agree not to use any Apple Marks in or as part of the name of products derived from the\ + \ Original Code or to endorse or promote products derived from the Original Code other than\ + \ as expressly permitted by and in strict compliance at all times with Apple's third party\ + \ trademark usage guidelines which are posted at http://www.apple.com/legal/guidelinesfor3rdparties.html.\n\ + \n11. Ownership. Subject to the licenses granted under this License, each Contributor retains\ + \ all rights, title and interest in and to any Modifications made by such Contributor. Apple\ + \ retains all rights, title and interest in and to the Original Code and any Modifications\ + \ made by or on behalf of Apple (\"Apple Modifications\"), and such Apple Modifications\ + \ will not be automatically subject to this License. Apple may, at its sole discretion,\ + \ choose to license such Apple Modifications under this License, or on different terms from\ + \ those contained in this License or may choose not to license them at all.\n\n12. Termination.\n\ + \n12.1 Termination. This License and the rights granted hereunder will terminate:\n\n(a)\ + \ automatically without notice from Apple if You fail to comply with any term(s) of this\ + \ License and fail to cure such breach within 30 days of becoming aware of such breach;\n\ + \n(b) immediately in the event of the circumstances described in Section 13.5(b); or\n\n\ + (c) automatically without notice from Apple if You, at any time during the term of this\ + \ License, commence an action for patent infringement against Apple; provided that Apple\ + \ did not first commence an action for patent infringement against You in that instance.\n\ + \n12.2 Effect of Termination. Upon termination, You agree to immediately stop any further\ + \ use, reproduction, modification, sublicensing and distribution of the Covered Code. All\ + \ sublicenses to the Covered Code which have been properly granted prior to termination\ + \ shall survive any termination of this License. Provisions which, by their nature, should\ + \ remain in effect beyond the termination of this License shall survive, including but not\ + \ limited to Sections 3, 5, 8, 9, 10, 11, 12.2 and 13. No party will be liable to any other\ + \ for compensation, indemnity or damages of any sort solely as a result of terminating this\ + \ License in accordance with its terms, and termination of this License will be without\ + \ prejudice to any other right or remedy of any party.\n\n13. Miscellaneous.\n\n13.1 Government\ + \ End Users. The Covered Code is a \"commercial item\" as defined in FAR 2.101. Government\ + \ software and technical data rights in the Covered Code include only those rights customarily\ + \ provided to the public as defined in this License. This customary commercial license in\ + \ technical data and software is provided in accordance with FAR 12.211 (Technical Data)\ + \ and 12.212 (Computer Software) and, for Department of Defense purchases, DFAR 252.227-7015\ + \ (Technical Data -- Commercial Items) and 227.7202-3 (Rights in Commercial Computer Software\ + \ or Computer Software Documentation). Accordingly, all U.S. Government End Users acquire\ + \ Covered Code with only those rights set forth herein.\n\n13.2 Relationship of Parties.\ + \ This License will not be construed as creating an agency, partnership, joint venture or\ + \ any other form of legal association between or among You, Apple or any Contributor, and\ + \ You will not represent to the contrary, whether expressly, by implication, appearance\ + \ or otherwise.\n\n13.3 Independent Development. Nothing in this License will impair Apple's\ + \ right to acquire, license, develop, have others develop for it, market and/or distribute\ + \ technology or products that perform the same or similar functions as, or otherwise compete\ + \ with, Modifications, Larger Works, technology or products that You may develop, produce,\ + \ market or distribute.\n\n13.4 Waiver; Construction. Failure by Apple or any Contributor\ + \ to enforce any provision of this License will not be deemed a waiver of future enforcement\ + \ of that or any other provision. Any law or regulation which provides that the language\ + \ of a contract shall be construed against the drafter will not apply to this License.\n\ + \n13.5 Severability. (a) If for any reason a court of competent jurisdiction finds any provision\ + \ of this License, or portion thereof, to be unenforceable, that provision of the License\ + \ will be enforced to the maximum extent permissible so as to effect the economic benefits\ + \ and intent of the parties, and the remainder of this License will continue in full force\ + \ and effect. (b) Notwithstanding the foregoing, if applicable law prohibits or restricts\ + \ You from fully and/or specifically complying with Sections 2 and/or 3 or prevents the\ + \ enforceability of either of those Sections, this License will immediately terminate and\ + \ You must immediately discontinue any use of the Covered Code and destroy all copies of\ + \ it that are in your possession or control.\n\n13.6 Dispute Resolution. Any litigation\ + \ or other dispute resolution between You and Apple relating to this License shall take\ + \ place in the Northern District of California, and You and Apple hereby consent to the\ + \ personal jurisdiction of, and venue in, the state and federal courts within that District\ + \ with respect to this License. The application of the United Nations Convention on Contracts\ + \ for the International Sale of Goods is expressly excluded.\n\n13.7 Entire Agreement; Governing\ + \ Law. This License constitutes the entire agreement between the parties with respect to\ + \ the subject matter hereof. This License shall be governed by the laws of the United States\ + \ and the State of California, except that body of California law concerning conflicts of\ + \ law.\n\nWhere You are located in the province of Quebec, Canada, the following clause\ + \ applies: The parties hereby confirm that they have requested that this License and all\ + \ related documents be drafted in English. Les parties ont exige que le present contrat\ + \ et tous les documents connexes soient rediges en anglais.\n\nEXHIBIT A.\n\n\"Portions\ + \ Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.\n\nThis file contains\ + \ Original Code and/or Modifications of Original Code as defined in and that are subject\ + \ to the Apple Public Source License Version 2.0 (the 'License'). You may not use this file\ + \ except in compliance with the License. Please obtain a copy of the License at http://www.opensource.apple.com/apsl/\ + \ and read it before using this file.\n\nThe Original Code and all software distributed\ + \ under the License are distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER\ + \ EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT\ + \ LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET\ + \ ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the specific language governing\ + \ rights and limitations under the License.\"" json: apsl-2.0.json - yml: apsl-2.0.yml + yaml: apsl-2.0.yml html: apsl-2.0.html - text: apsl-2.0.LICENSE + license: apsl-2.0.LICENSE - license_key: aptana-1.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-aptana-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Aptana Public License - 1.0 + + THE PROGRAM (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS APTANA PUBLIC LICENSE ("LICENSE"). THE PROGRAM IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. BY EXERCISING ANY RIGHTS TO THE PROGRAM PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. + + THIS LICENSE GRANTS PERMISSIONS ONLY FOR YOUR INTERNAL USE (AS DEFINED BELOW). IF YOU WISH TO DISTRIBUTE OR MAKE OTHER USES OF THE PROGRAM, PLEASE CONTACT APTANA. + + 1. Definitions. When used in this License: + + "Aptana" means Aptana, Inc. + + "Internal Use" means use by You for Your personal or internal business purposes only, specifically excluding any use, distribution, or communication of the Program or any derivative work of the Program in any way such that the Program or any derivative work of the Program may be used by anyone other than You, whether those works are distributed or communicated to those persons or otherwise made available for use over a network. + + "Program" means the code and documentation owned by Aptana and distributed under this License by Aptana. In case of any doubt as to whether any code or documentation is part of the Program covered by this license, the notices placed by Aptana in the source code or documentation will govern + + "You" means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, You includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, control means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. + + 2. License Grants + + a) Subject to the terms and conditions of this License, Aptana hereby grants to You a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, install, and execute the Program in source code and object code form, in each case solely for Your Internal Use. + + b) Subject to the terms and conditions of this License, Aptana hereby grants to You a worldwide, non-exclusive, royalty-free, patent license under Aptana's Licensed Patent Claims to make and use the Program in source code and object code form, in each case solely for Your Internal Use. As used herein, "Licensed Patent Claims" means only those patent claims owned by Aptana that are necessarily infringed by Your making and using the Program for Your Internal Use. Notwithstanding this Section 2.1(b), no patent license is granted: (i) for code that You delete from the Program or (ii) for infringements caused by: (1) the modification of the Program or (2) the combination of the Program with other software or devices. + + 3. Certain Limitations and Conditions + + You are not licensed under this License to distribute the Program or derivative works thereof, or to make any use other than Internal Use of the Program or derivative works thereof. + + You may not remove or alter any copyright or other proprietary rights notices, or other means of attribution, contained within the Program. + + 4. No Warranty + + Aptana represents that to its knowledge as of the date of first publication of the Program under this License, it has sufficient copyright rights in the Program, to grant the copyright license set forth in this License. + + EXCEPT AS EXPRESSLY SET FORTH IN THIS SECTION 4, THE PROGRAM IS PROVIDED "AS IS", 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 and reproducing the Program and assume any and all risks associated with its exercise of rights under this License, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. + + Without limiting the foregoing, Aptana provides no assurances that the Program does not infringe the patent or other intellectual property rights of any third party. Aptana disclaims any liability for claims based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, You hereby assume sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow You to use the Program, it is Your responsibility to acquire that license before using the Program. + + 5. Limitation of Liability + + To the maximum extent permissible by applicable law, in no event and under no legal theory, whether in tort (including negligence and strict liability), contract, or otherwise, shall Aptana 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 Program (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 Aptana has been advised of the possibility of such damages. + + 6. General + + This License represents the complete agreement concerning subject matter hereof. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + + Except as expressly stated in Section 2 above, You receive no rights or licenses to the intellectual property of Aptana under this License, whether expressly, by implication, estoppel or otherwise. In particular, without limitation, this License does not grant permission to use the trade names, trademarks, service marks, or product names of Aptana. All rights in the Program not expressly granted under this License are reserved. + + If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Program shall terminate as of the date such litigation is filed. + + All Your rights under this License shall terminate if You fail to comply with any of the terms or conditions of this License and do not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Your rights under this License terminate, You agree to cease use of the Program as soon as reasonably practicable. However, Your obligations under this License, and this Section 6, shall continue and survive. + + This Agreement is governed by the laws of the State of California and the intellectual property laws of the United States of America, without reference to conflicts of laws principles that would require the application of the laws of any other jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. No party to this License will bring a legal action under this License more than one year after the cause of action arose. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. You agree that You alone are responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries) when You exercise rights under this License. json: aptana-1.0.json - yml: aptana-1.0.yml + yaml: aptana-1.0.yml html: aptana-1.0.html - text: aptana-1.0.LICENSE + license: aptana-1.0.LICENSE - license_key: aptana-exception-3.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-aptana-exception-3.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + Appcelerator GPL Exception + Section 7 Exception + + As a special exception to the terms and conditions of the GNU General Public License Version 3 (the "GPL"): You are free to convey a modified version that is formed entirely from this file (for purposes of this exception, the "Program" under the GPL) and the works identified at http://www.aptana.com/legal/gpl (each an "Excepted Work"), which are conveyed to you by Appcelerator, Inc. and licensed under one or more of the licenses identified in the Excepted License List below (each an "Excepted License"), as long as: + + 1. you obey the GPL in all respects for the Program and the modified version, except for Excepted Works which are identifiable sections of the modified version, which are not derived from the Program, and which can reasonably be considered independent and separate works in themselves, + 2. all Excepted Works which are identifiable sections of the modified version, which are not derived from the Program, and which can reasonably be considered independent and separate works in themselves, + 1. are distributed subject to the Excepted License under which they were originally licensed, and + 2. are not themselves modified from the form in which they are conveyed to you by Aptana, and + 3. the object code or executable form of those sections are accompanied by the complete corresponding machine-readable source code for those sections, on the same medium as the corresponding object code or executable forms of those sections, and are licensed under the applicable Excepted License as the corresponding object code or executable forms of those sections, and + 3. any works which are aggregated with the Program, or with a modified version on a volume of a storage or distribution medium in accordance with the GPL, are aggregates (as defined in Section 5 of the GPL) which can reasonably be considered independent and separate works in themselves and which are not modified versions of either the Program, a modified version, or an Excepted Work. + + If the above conditions are not met, then the Program may only be copied, modified, distributed or used under the terms and conditions of the GPL or another valid licensing option from Appcelerator, Inc. Terms used but not defined in the foregoing paragraph have the meanings given in the GPL. json: aptana-exception-3.0.json - yml: aptana-exception-3.0.yml + yaml: aptana-exception-3.0.yml html: aptana-exception-3.0.html - text: aptana-exception-3.0.LICENSE + license: aptana-exception-3.0.LICENSE - license_key: arachni-psl-1.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-arachni-psl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Arachni Public Source License\n Version 1.0, June 2015\n\nTERMS\ + \ AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions\n\n \"License\"\ + \ shall mean the terms and conditions for use, reproduction,\n and distribution as defined\ + \ by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright\ + \ owner or entity authorized by\n the copyright owner that is granting the License.\n\ + \n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities\ + \ that control, are controlled by, or are under common\n control with that entity. For\ + \ the purposes of this definition,\n \"control\" means (i) the power, direct or indirect,\ + \ to cause the\n direction or management of such entity, whether by contract or\n \ + \ otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares,\ + \ or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean\ + \ an individual or Legal Entity\n exercising permissions granted by this License.\n\n\ + \ \"Source\" form shall mean the preferred form for making modifications,\n including\ + \ but not limited to software source code, documentation\n source, and configuration\ + \ files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation\ + \ or translation of a Source form, including but\n not limited to compiled object code,\ + \ generated documentation,\n and conversions to other media types.\n\n \"Work\" shall\ + \ mean the work of authorship, whether in Source or\n Object form, made available under\ + \ the License, as indicated by a\n copyright notice that is included in or attached to\ + \ the work.\n\n \"Contribution\" shall mean any work of authorship, including\n the\ + \ original version of the Work and any modifications or additions\n to that Work, that\ + \ is intentionally submitted to Licensor for inclusion in\n the Work by the copyright\ + \ owner or by an individual or Legal Entity\n authorized to submit on behalf of the copyright\ + \ owner. For the purposes of\n this definition, \"submitted\" means any form of electronic,\ + \ verbal, or\n written communication sent to the Licensor or its representatives, including\n\ + \ but not limited to communication on electronic mailing lists, source code\n control\ + \ systems, and issue tracking systems that are managed by, or on\n behalf of, the Licensor\ + \ for the purpose of discussing and improving the Work,\n but excluding communication\ + \ that is conspicuously marked or otherwise\n designated in writing by the copyright\ + \ owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual\ + \ or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n\ + \ subsequently incorporated within the Work.\n\n \"Commercialization\" shall mean\ + \ intention to use this software for commercial \n advantage or monetary compensation.\n\ + \ \n Cases of commercialization include but are not limited to:\n\n \ + \ 1. Use of the Work to provide commercial managed/Software-as-a-Service services.\n \ + \ 2. Distribution of the Work as a commercial product or as part of one.\n \ + \ 3. Use or distribution of the Work as a value added service/product.\n\n \ + \ Exempt cases:\n\n 1. Penetration testers (or penetration testing organizations)\ + \ using\n this Work as part of their manual assessment toolkit.\n \ + \ 2. Using this Work to assess the security of Your own systems.\n\n2. Basic Permissions\n\ + \nUse of the Work is permitted free of charge, provided that said use does not \ninvolve\ + \ Commercialization.\n\nAny use of the Work, in whole or in part, involving Commercialization,\ + \ is\nstrictly prohibited without the prior written consent of Licensor.\n\nShould You require\ + \ a license that allows for Commercialization, please contact\nLicensor at:\n license@arachni-scanner.com\n\ + \nIn cases of uncertainty, clarifications can be provided by Licensor on a\ncase-by-case\ + \ basis, please contact: \n license@arachni-scanner.com\n\n3. Redistribution\n\nRedistribution\ + \ is permitted under the following conditions:\n\n1. Unmodified License is provided with\ + \ the Work.\n2. Unmodified Copyright notices are provided with the Work.\n3. Does not conflict\ + \ with Section 2.\n\n4. Copying\n\nCopying is permitted so long as it does not conflict\ + \ with Section 3.\n\n5. Modification\n\nModification is permitted so long as it does not\ + \ conflict with Section 3.\n\n6. Submission of Contributions\n\nUpon submission, Contributor\ + \ grants to Licensor a perpetual, worldwide,\nnon-exclusive, no-charge, royalty-free, irrevocable\ + \ copyright and patent license\nto reproduce, publicly display, publicly perform, sublicense,\ + \ distribute, use, \noffer to sell, sell, import, and otherwise transfer the Contribution\ + \ in Source \nor Object form.\n\n7. Trademarks\n\nThis License does not grant permission\ + \ to use the trade names, trademarks, service\nmarks, or product names of the Licensor.\n\ + \n8. Disclaimer of Warranty\n\nUnless required by applicable law or agreed to in writing,\ + \ Licensor provides the \nWork (and each Contributor provides its Contributions) on an \"\ + AS IS\" BASIS, WITHOUT \nWARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,\ + \ including, without \nlimitation, any warranties or conditions of TITLE, NON-INFRINGEMENT,\ + \ MERCHANTABILITY, \nor FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for\ + \ determining the\nappropriateness of using or redistributing the Work and assume any risks\ + \ associated \nwith Your exercise of permissions under this License.\n\n9. Limitation of\ + \ Liability\n\nIn no event and under no legal theory, whether in tort (including negligence),\ + \ \ncontract, or otherwise, unless required by applicable law (such as deliberate \nand\ + \ grossly negligent acts) or agreed to in writing, shall any Contributor be\nliable to You\ + \ for damages, including any direct, indirect, special, incidental, \nor consequential damages\ + \ of any character arising as a result of this License or \nout of the use or inability\ + \ to use the Work (including but not limited to damages \nfor loss of goodwill, work stoppage,\ + \ computer failure or malfunction, or any and\nall other commercial damages or losses),\ + \ even if such Contributor has been advised \nof the possibility of such damages." json: arachni-psl-1.0.json - yml: arachni-psl-1.0.yml + yaml: arachni-psl-1.0.yml html: arachni-psl-1.0.html - text: arachni-psl-1.0.LICENSE + license: arachni-psl-1.0.LICENSE - license_key: aravindan-premkumar + category: Permissive spdx_license_key: LicenseRef-scancode-aravindan-premkumar other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This piece of code does not have any registered copyright and is free to be \nused\ + \ as necessary. The user is free to modify as per the requirements. As a\nfellow developer,\ + \ all that I expect and request for is to be given the \ncredit for intially developing\ + \ this reusable code by not removing my name as \nthe author." json: aravindan-premkumar.json - yml: aravindan-premkumar.yml + yaml: aravindan-premkumar.yml html: aravindan-premkumar.html - text: aravindan-premkumar.LICENSE + license: aravindan-premkumar.LICENSE - license_key: argouml + category: Permissive spdx_license_key: LicenseRef-scancode-argouml other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software and its + documentation without fee, and without a written agreement is hereby + granted, provided that the above copyright notice and this paragraph + appear in all copies. + + This software program and documentation are copyrighted by The Regents + of the University of California. + + The software program and documentation are supplied "AS IS", without any + accompanying services from The Regents. The Regents does not warrant + that the operation of the program will be uninterrupted or error-free. + + The end-user understands that the program was developed for research + purposes and is advised not to rely exclusively on the program for any + reason. + + 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. json: argouml.json - yml: argouml.yml + yaml: argouml.yml html: argouml.html - text: argouml.LICENSE + license: argouml.LICENSE - license_key: arm-cortex-mx + category: Proprietary Free spdx_license_key: LicenseRef-scancode-arm-cortex-mx other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "ARM Limited (ARM) is supplying this software for use with Cortex-Mx \nprocessor based\ + \ microcontrollers. This file can be freely distributed \nwithin development tools that\ + \ are supporting such ARM based processors. \n\nTHIS SOFTWARE IS PROVIDED \"AS IS\". NO\ + \ WARRANTIES, WHETHER EXPRESS, IMPLIED\nOR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED\ + \ WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\n\ + ARM SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR\nCONSEQUENTIAL\ + \ DAMAGES, FOR ANY REASON WHATSOEVER." json: arm-cortex-mx.json - yml: arm-cortex-mx.yml + yaml: arm-cortex-mx.yml html: arm-cortex-mx.html - text: arm-cortex-mx.LICENSE + license: arm-cortex-mx.LICENSE - license_key: arm-llvm-sga + category: Permissive spdx_license_key: LicenseRef-scancode-arm-llvm-sga other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + ARM Limited + + Software Grant License Agreement ("Agreement") + + Except for the license granted herein to you, ARM Limited ("ARM") reserves all + right, title, and interest in and to the Software (defined below). + + Definition + + "Software" means the code and documentation as well as any original work of + authorship, including any modifications or additions to an existing work, that + is intentionally submitted by ARM to llvm.org (http://llvm.org) ("LLVM") for + inclusion in, or documentation of, any of the products owned or managed by LLVM + (the "Work"). For the purposes of this definition, "submitted" means any form of + electronic, verbal, or written communication sent to LLVM 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, LLVM for the purpose of discussing and improving + the Work, but excluding communication that is conspicuously marked otherwise. + + 1. Grant of Copyright License. Subject to the terms and conditions of this + Agreement, ARM hereby grants to you and to recipients of the Software + distributed by LLVM 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 + Software and such derivative works. + + 2. Grant of Patent License. Subject to the terms and conditions of this + Agreement, ARM hereby grants you and to recipients of the Software + distributed by LLVM 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 ARM that are necessarily infringed by ARM's Software alone or by + combination of the Software with the Work to which such Software was + submitted. If any entity institutes patent litigation against ARM or any + other entity (including a cross-claim or counterclaim in a lawsuit) alleging + that ARM's Software, or the Work to which ARM has contributed constitutes + direct or contributory patent infringement, then any patent licenses granted + to that entity under this Agreement for the Software or Work shall terminate + as of the date such litigation is filed. + + Unless required by applicable law or agreed to in writing, the software is + provided 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. json: arm-llvm-sga.json - yml: arm-llvm-sga.yml + yaml: arm-llvm-sga.yml html: arm-llvm-sga.html - text: arm-llvm-sga.LICENSE + license: arm-llvm-sga.LICENSE - license_key: arphic-public + category: Copyleft spdx_license_key: Arphic-1999 other_spdx_license_keys: - LicenseRef-scancode-arphic-public is_exception: no is_deprecated: no - category: Copyleft + text: | + ARPHIC PUBLIC LICENSE + + Copyright (C) 1999 Arphic Technology Co., Ltd. + 11Fl. No.168, Yung Chi Rd., Taipei, 110 Taiwan + All rights reserved except as specified below. + + Everyone is permitted to copy and distribute verbatim copies of this license + document, but changing it is forbidden. + + Preamble + + The licenses for most software are designed to take away your freedom to share and + change it. By contrast, the ARPHIC PUBLIC LICENSE specifically permits and + encourages you to use this software, provided that you give the recipients all the + rights that we gave you and make sure they can get the modifications of this + software. + + Legal Terms + + 0. Definitions: + Throughout this License, "Font" means the TrueType fonts "AR PL Mingti2L Big5", + "AR PL KaitiM Big5" (BIG-5 character set) and "AR PL SungtiL GB", "AR PL KaitiM + GB" (GB character set) which are originally distributed by Arphic, and the + derivatives of those fonts created through any modification including modifying + glyph, reordering glyph, converting format, changing font name, or adding/deleting + some characters in/from glyph table. + + "PL" means "Public License". + + "Copyright Holder" means whoever is named in the copyright or copyrights for the + Font. + + "You" means the licensee, or person copying, redistributing or modifying the Font. + + "Freely Available" means that you have the freedom to copy or modify the Font as + well as redistribute copies of the Font under the same conditions you received, + not price. If you wish, you can charge for this service. + + 1. Copying & Distribution + + You may copy and distribute verbatim copies of this Font in any medium, without + restriction, provided that you retain this license file (ARPHICPL.TXT) unaltered + in all copies. + + 2. Modification + + You may otherwise modify your copy of this Font in any way, including modifying + glyph, reordering glyph, converting format, changing font name, or adding/deleting + some characters in/from glyph table, and copy and distribute such modifications + under the terms of Section 1 above, provided that the following conditions are + met: + + a) You must insert a prominent notice in each modified file stating how and when + you changed that file. + + b) You must make such modifications Freely Available as a whole to all third + parties under the terms of this License, such as by offering access to copy the + modifications from a designated place, or distributing the modifications on a + medium customarily used for software interchange. + + c) If the modified fonts 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 Font under these conditions, and telling the + user how to view a copy of this License. + + These requirements apply to the modified work as a whole. If identifiable sections + of that work are not derived from the Font, 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. Therefore, + mere aggregation of another work not based on the Font with the Font on a volume + of a storage or distribution medium does not bring the other work under the scope + of this License. + + 3. Condition Subsequent + + You may not copy, modify, sublicense, or distribute the Font except as expressly + provided under this License. Any attempt otherwise to copy, modify, sublicense or + distribute the Font will automatically retroactively void your rights under this + License. However, parties who have received copies or rights from you under this + License will keep their licenses valid so long as such parties remain in full + compliance. + + 4. Acceptance + + You are not required to accept this License, since you have not signed it. + However, nothing else grants you permission to copy, modify, sublicense or + distribute the Font. These actions are prohibited by law if you do not accept this + License. Therefore, by copying, modifying, sublicensing or distributing the Font, + you indicate your acceptance of this License and all its terms and conditions. + + 5. Automatic Receipt + + Each time you redistribute the Font, the recipient automatically receives a + license from the original licensor to copy, distribute or modify the Font 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. + + 6. Contradiction + + 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 Font at all. For example, if a patent license would not permit + royalty-free redistribution of the Font 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 Font. + + 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. + + 7. NO WARRANTY + + BECAUSE THE FONT IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE FONT, TO + THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING + THE COPYRIGHT HOLDERS OR OTHER PARTIES PROVIDE THE FONT "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 FONT IS WITH YOU. SHOULD THE FONT + PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR + CORRECTION. + + 8. DAMAGES WAIVER + + UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING, IN NO EVENT WILL ANY + COPYRIGHTT HOLDERS, OR OTHER PARTIES WHO MAY COPY, MODIFY OR REDISTRIBUTE THE FONT + AS PERMITTED ABOVE, BE LIABLE TO YOU FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, + INCIDENTAL, SPECIAL OR EXEMPLARY DAMAGES ARISING OUT OF THE USE OR INABILITY TO + USE THE FONT (INCLUDING BUT NOT LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA OR PROFITS; OR BUSINESS INTERRUPTION), EVEN IF SUCH + HOLDERS OR OTHER PARTIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. json: arphic-public.json - yml: arphic-public.yml + yaml: arphic-public.yml html: arphic-public.html - text: arphic-public.LICENSE + license: arphic-public.LICENSE - license_key: array-input-method-pl + category: Permissive spdx_license_key: LicenseRef-scancode-array-input-method-pl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Array Input Method Public License + + 1. OBJECTS + + Specification, design, and user interaction behavior designed for Array + Input Method. + All mapping tables and related information for Array Input Method. + + 2. GRANTING + + License is granted, free of charge, to everyone if the conditions described + in PERMISSION AND RESPONSIBILITY are met. + + 3. PERMISSION AND RESPONSIBILITY + + A. Permission: + + 1. Grant of copyright license + + Subject to the terms and conditions of this License, every one is + granted a perpetual, worldwide, non-exclusive, no-charge, royalty-free, + irrevocable copyright license to reproduce, prepare Derivative Works + of, publicly display, publicly perform, sub-license, and distribute the + Work and such Derivative Works + + 2. Grant of patent license + + No patent is issued for Array Input Method. + And the inventor will never claim patents for Array Input Method. + + B. Responsibility: + + 1. While distributing the Array Input Method or derivative works + thereof, Licensee 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, Licensee may act only on his own behalf and on his sole + responsibility, not on behalf of the licensor, and only if Licensee + agrees to indemnify, defend, and hold the licensor harmless for any + liability incurred by, or claims asserted against, the licensor by + reason of Licensee's accepting any such warranty or additional liability. + + 4. CLAIM FROM LICENSOR + + This license is issued by the original inventor and copyright holder of + Array Input Method, who owns the full and original rights to the Array + Input Method. + + This license is the formal license for Array Input Method. A licensee does + not need to request additional license documentation from the licensor. + + ISSUED DATE: 2010/11/24 + BY LICENSOR: Inventor of Array Input Method, Ming-Te Liao, 廖明德 + + REVISE DATE: 2011/12/20 + Delete clause 3-B-2. “…the licensee must inform the original author of Array Input Method…” + + REVISE DATE: 2013/07/05 + Replaced B-1, Due to some vague wording problem in this section, replace "hold + everyone else harmless”with “hold the licensor harmless” etc. , the original text was : + “1. Licensee 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, licensee may act only on his own behalf and on his sole responsibility, not on behalf of + anyone else, and only if the licensee agrees toindemnify, defend, and hold everyone else harmless + for any liability incurred by, or claims asserted against, such everyone else by reason of licensee's + accepting any such warranty or additional liability. json: array-input-method-pl.json - yml: array-input-method-pl.yml + yaml: array-input-method-pl.yml html: array-input-method-pl.html - text: array-input-method-pl.LICENSE + license: array-input-method-pl.LICENSE - license_key: artistic-1.0 + category: Copyleft Limited spdx_license_key: Artistic-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Preamble + + The intent of this document is to state the conditions under which a Package may + be copied, such that the Copyright Holder maintains some semblance of artistic + control over the development of the package, while giving the users of the + package the right to use and distribute the Package in a more-or-less customary + fashion, plus the right to make reasonable modifications. + + Definitions: + + "Package" refers to the collection of files distributed by the Copyright Holder, + and derivatives of that collection of files created through textual modification. + + "Standard Version" refers to such a Package if it has not been modified, or has + been modified in accordance with the wishes of the Copyright Holder. + + "Copyright Holder" is whoever is named in the copyright or copyrights for the + package. + + "You" is you, if you're thinking about copying or distributing this Package. + + "Reasonable copying fee" is whatever you can justify on the basis of media cost, + duplication charges, time of people involved, and so on. (You will not be + required to justify it to the Copyright Holder, but only to the computing + community at large as a market that must bear the fee.) + + "Freely Available" means that no fee is charged for the item itself, though + there may be fees involved in handling the item. It also means that recipients + of the item may redistribute it under the same conditions they received it. + + 1. You may make and give away verbatim copies of the source form of the Standard + Version of this Package without restriction, provided that you duplicate all of + the original copyright notices and associated disclaimers. + + 2. You may apply bug fixes, portability fixes and other modifications derived + from the Public Domain or from the Copyright Holder. A Package modified in such + a way shall still be considered the Standard Version. + + 3. You may otherwise modify your copy of this Package in any way, provided that + you insert a prominent notice in each changed file stating how and when you + changed that file, and provided that you do at least ONE of the following: + + a) place your modifications in the Public Domain or otherwise make them Freely + Available, such as by posting said modifications to Usenet or an equivalent + medium, or placing the modifications on a major archive site such as ftp.uu.net, + or by allowing the Copyright Holder to include your modifications in the + Standard Version of the Package. + + b) use the modified Package only within your corporation or organization. + + c) rename any non-standard executables so the names do not conflict with + standard executables, which must also be provided, and provide a separate manual + page for each non-standard executable that clearly documents how it differs from + the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + + 4. You may distribute the programs of this Package in object code or executable + form, provided that you do at least ONE of the following: + + a) distribute a Standard Version of the executables and library files, together + with instructions (in the manual page or equivalent) on where to get the + Standard Version. + + b) accompany the distribution with the machine-readable source of the Package + with your modifications. + + c) accompany any non-standard executables with their corresponding Standard + Version executables, giving the non-standard executables non-standard names, and + clearly documenting the differences in manual pages (or equivalent), together + with instructions on where to get the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + + 5. You may charge a reasonable copying fee for any distribution of this Package. + You may charge any fee you choose for support of this Package. You may not + charge a fee for this Package itself. However, you may distribute this Package + in aggregate with other (possibly commercial) programs as part of a larger + (possibly commercial) software distribution provided that you do not advertise + this Package as a product of your own. + + 6. The scripts and library files supplied as input to or produced as output from + the programs of this Package do not automatically fall under the copyright of + this Package, but belong to whomever generated them, and may be sold + commercially, and may be aggregated with this Package. + + 7. C or perl subroutines supplied by you and linked into this Package shall not + be considered part of this Package. + + 8. The name of the Copyright Holder may not be used to endorse or promote + products derived from this software without specific prior written permission. + + 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF + MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + The End json: artistic-1.0.json - yml: artistic-1.0.yml + yaml: artistic-1.0.yml html: artistic-1.0.html - text: artistic-1.0.LICENSE + license: artistic-1.0.LICENSE - license_key: artistic-1.0-cl8 + category: Copyleft Limited spdx_license_key: Artistic-1.0-cl8 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Preamble + + The intent of this document is to state the conditions under which a Package may + be copied, such that the Copyright Holder maintains some semblance of artistic + control over the development of the package, while giving the users of the + package the right to use and distribute the Package in a more-or-less customary + fashion, plus the right to make reasonable modifications. + + Definitions: + + "Package" refers to the collection of files distributed by the Copyright Holder, + and derivatives of that collection of files created through textual modification. + + "Standard Version" refers to such a Package if it has not been modified, or has + been modified in accordance with the wishes of the Copyright Holder. + + "Copyright Holder" is whoever is named in the copyright or copyrights for the + package. + + "You" is you, if you're thinking about copying or distributing this Package. + + "Reasonable copying fee" is whatever you can justify on the basis of media cost, + duplication charges, time of people involved, and so on. (You will not be + required to justify it to the Copyright Holder, but only to the computing + community at large as a market that must bear the fee.) + + "Freely Available" means that no fee is charged for the item itself, though + there may be fees involved in handling the item. It also means that recipients + of the item may redistribute it under the same conditions they received it. + + 1. You may make and give away verbatim copies of the source form of the Standard + Version of this Package without restriction, provided that you duplicate all of + the original copyright notices and associated disclaimers. + + 2. You may apply bug fixes, portability fixes and other modifications derived + from the Public Domain or from the Copyright Holder. A Package modified in such + a way shall still be considered the Standard Version. + + 3. You may otherwise modify your copy of this Package in any way, provided that + you insert a prominent notice in each changed file stating how and when you + changed that file, and provided that you do at least ONE of the following: + + a) place your modifications in the Public Domain or otherwise make them Freely + Available, such as by posting said modifications to Usenet or an equivalent + medium, or placing the modifications on a major archive site such as ftp.uu.net, + or by allowing the Copyright Holder to include your modifications in the + Standard Version of the Package. + + b) use the modified Package only within your corporation or organization. + + c) rename any non-standard executables so the names do not conflict with + standard executables, which must also be provided, and provide a separate manual + page for each non-standard executable that clearly documents how it differs from + the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + + 4. You may distribute the programs of this Package in object code or executable + form, provided that you do at least ONE of the following: + + a) distribute a Standard Version of the executables and library files, together + with instructions (in the manual page or equivalent) on where to get the + Standard Version. + + b) accompany the distribution with the machine-readable source of the Package + with your modifications. + + c) accompany any non-standard executables with their corresponding Standard + Version executables, giving the non-standard executables non-standard names, and + clearly documenting the differences in manual pages (or equivalent), together + with instructions on where to get the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + + 5. You may charge a reasonable copying fee for any distribution of this Package. + You may charge any fee you choose for support of this Package. You may not + charge a fee for this Package itself. However, you may distribute this Package + in aggregate with other (possibly commercial) programs as part of a larger + (possibly commercial) software distribution provided that you do not advertise + this Package as a product of your own. + + 6. The scripts and library files supplied as input to or produced as output from + the programs of this Package do not automatically fall under the copyright of + this Package, but belong to whomever generated them, and may be sold + commercially, and may be aggregated with this Package. + + 7. C or perl subroutines supplied by you and linked into this Package shall not + be considered part of this Package. + + 8.Aggregation of this Package with a commercial distribution is always permitted + provided that the use of this Package is embedded; that is, when no overt + attempt is made to make this Package's interfaces visible to the end user of the + commercial distribution. Such use shall not be construed as a distribution of + this Package. + + 9. The name of the Copyright Holder may not be used to endorse or promote + products derived from this software without specific prior written permission. + + 10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF + MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + The End json: artistic-1.0-cl8.json - yml: artistic-1.0-cl8.yml + yaml: artistic-1.0-cl8.yml html: artistic-1.0-cl8.html - text: artistic-1.0-cl8.LICENSE + license: artistic-1.0-cl8.LICENSE - license_key: artistic-2.0 + category: Copyleft Limited spdx_license_key: Artistic-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: " The Artistic License 2.0\n\n Copyright (c) 2000-2006, The Perl\ + \ Foundation.\n\n Everyone is permitted to copy and distribute verbatim copies\n \ + \ of this license document, but changing it is not allowed.\n\nPreamble\n\nThis license\ + \ establishes the terms under which a given free software\nPackage may be copied, modified,\ + \ distributed, and/or redistributed.\nThe intent is that the Copyright Holder maintains\ + \ some artistic\ncontrol over the development of that Package while still keeping the\n\ + Package available as open source and free software.\n\nYou are always permitted to make\ + \ arrangements wholly outside of this\nlicense directly with the Copyright Holder of a given\ + \ Package. If the\nterms of this license do not permit the full use that you propose to\n\ + make of the Package, you should contact the Copyright Holder and seek\na different licensing\ + \ arrangement. \n\nDefinitions\n\n \"Copyright Holder\" means the individual(s) or organization(s)\n\ + \ named in the copyright notice for the entire Package.\n\n \"Contributor\" means\ + \ any party that has contributed code or other\n material to the Package, in accordance\ + \ with the Copyright Holder's\n procedures.\n\n \"You\" and \"your\" means any person\ + \ who would like to copy,\n distribute, or modify the Package.\n\n \"Package\" means\ + \ the collection of files distributed by the\n Copyright Holder, and derivatives of that\ + \ collection and/or of\n those files. A given Package may consist of either the Standard\n\ + \ Version, or a Modified Version.\n\n \"Distribute\" means providing a copy of the\ + \ Package or making it\n accessible to anyone else, or in the case of a company or\n\ + \ organization, to others outside of your company or organization.\n\n \"Distributor\ + \ Fee\" means any fee that you charge for Distributing\n this Package or providing support\ + \ for this Package to another\n party. It does not mean licensing fees.\n\n \"Standard\ + \ Version\" refers to the Package if it has not been\n modified, or has been modified\ + \ only in ways explicitly requested\n by the Copyright Holder.\n\n \"Modified Version\"\ + \ means the Package, if it has been changed, and\n such changes were not explicitly requested\ + \ by the Copyright\n Holder. \n\n \"Original License\" means this Artistic License\ + \ as Distributed with\n the Standard Version of the Package, in its current version or\ + \ as\n it may be modified by The Perl Foundation in the future.\n\n \"Source\" form\ + \ means the source code, documentation source, and\n configuration files for the Package.\n\ + \n \"Compiled\" form means the compiled bytecode, object code, binary,\n or any other\ + \ form resulting from mechanical transformation or\n translation of the Source form.\n\ + \n\nPermission for Use and Modification Without Distribution\n\n(1) You are permitted to\ + \ use the Standard Version and create and use\nModified Versions for any purpose without\ + \ restriction, provided that\nyou do not Distribute the Modified Version.\n\n\nPermissions\ + \ for Redistribution of the Standard Version\n\n(2) You may Distribute verbatim copies\ + \ of the Source form of the\nStandard Version of this Package in any medium without restriction,\n\ + either gratis or for a Distributor Fee, provided that you duplicate\nall of the original\ + \ copyright notices and associated disclaimers. At\nyour discretion, such verbatim copies\ + \ may or may not include a\nCompiled form of the Package.\n\n(3) You may apply any bug\ + \ fixes, portability changes, and other\nmodifications made available from the Copyright\ + \ Holder. The resulting\nPackage will still be considered the Standard Version, and as\ + \ such\nwill be subject to the Original License.\n\n\nDistribution of Modified Versions\ + \ of the Package as Source \n\n(4) You may Distribute your Modified Version as Source (either\ + \ gratis\nor for a Distributor Fee, and with or without a Compiled form of the\nModified\ + \ Version) provided that you clearly document how it differs\nfrom the Standard Version,\ + \ including, but not limited to, documenting\nany non-standard features, executables, or\ + \ modules, and provided that\nyou do at least ONE of the following:\n\n (a) make the\ + \ Modified Version available to the Copyright Holder\n of the Standard Version, under\ + \ the Original License, so that the\n Copyright Holder may include your modifications\ + \ in the Standard\n Version.\n\n (b) ensure that installation of your Modified Version\ + \ does not\n prevent the user installing or running the Standard Version. In\n addition,\ + \ the Modified Version must bear a name that is different\n from the name of the Standard\ + \ Version.\n\n (c) allow anyone who receives a copy of the Modified Version to\n \ + \ make the Source form of the Modified Version available to others\n under\n \n\ + \ (i) the Original License or\n\n (ii) a license that permits the licensee to freely\ + \ copy,\n modify and redistribute the Modified Version using the same\n licensing\ + \ terms that apply to the copy that the licensee\n received, and requires that the Source\ + \ form of the Modified\n Version, and of any works derived from it, be made freely\n\ + \ available in that license fees are prohibited but Distributor\n Fees are allowed.\n\ + \n\nDistribution of Compiled Forms of the Standard Version \nor Modified Versions without\ + \ the Source\n\n(5) You may Distribute Compiled forms of the Standard Version without\n\ + the Source, provided that you include complete instructions on how to\nget the Source of\ + \ the Standard Version. Such instructions must be\nvalid at the time of your distribution.\ + \ If these instructions, at any\ntime while you are carrying out such distribution, become\ + \ invalid, you\nmust provide new instructions on demand or cease further distribution.\n\ + If you provide valid instructions or cease distribution within thirty\ndays after you become\ + \ aware that the instructions are invalid, then\nyou do not forfeit any of your rights under\ + \ this license.\n\n(6) You may Distribute a Modified Version in Compiled form without\n\ + the Source, provided that you comply with Section 4 with respect to\nthe Source of the Modified\ + \ Version.\n\n\nAggregating or Linking the Package \n\n(7) You may aggregate the Package\ + \ (either the Standard Version or\nModified Version) with other packages and Distribute\ + \ the resulting\naggregation provided that you do not charge a licensing fee for the\nPackage.\ + \ Distributor Fees are permitted, and licensing fees for other\ncomponents in the aggregation\ + \ are permitted. The terms of this license\napply to the use and Distribution of the Standard\ + \ or Modified Versions\nas included in the aggregation.\n\n(8) You are permitted to link\ + \ Modified and Standard Versions with\nother works, to embed the Package in a larger work\ + \ of your own, or to\nbuild stand-alone binary or bytecode versions of applications that\n\ + include the Package, and Distribute the result without restriction,\nprovided the result\ + \ does not expose a direct interface to the Package.\n\n\nItems That are Not Considered\ + \ Part of a Modified Version \n\n(9) Works (including, but not limited to, modules and scripts)\ + \ that\nmerely extend or make use of the Package, do not, by themselves, cause\nthe Package\ + \ to be a Modified Version. In addition, such works are not\nconsidered parts of the Package\ + \ itself, and are not subject to the\nterms of this license.\n\n\nGeneral Provisions\n\n\ + (10) Any use, modification, and distribution of the Standard or\nModified Versions is governed\ + \ by this Artistic License. By using,\nmodifying or distributing the Package, you accept\ + \ this license. Do not\nuse, modify, or distribute the Package, if you do not accept this\n\ + license.\n\n(11) If your Modified Version has been derived from a Modified\nVersion made\ + \ by someone other than you, you are nevertheless required\nto ensure that your Modified\ + \ Version complies with the requirements of\nthis license.\n\n(12) This license does not\ + \ grant you the right to use any trademark,\nservice mark, tradename, or logo of the Copyright\ + \ Holder.\n\n(13) This license includes the non-exclusive, worldwide,\nfree-of-charge patent\ + \ license to make, have made, use, offer to sell,\nsell, import and otherwise transfer the\ + \ Package with respect to any\npatent claims licensable by the Copyright Holder that are\ + \ necessarily\ninfringed by the Package. If you institute patent litigation\n(including\ + \ a cross-claim or counterclaim) against any party alleging\nthat the Package constitutes\ + \ direct or contributory patent\ninfringement, then this Artistic License to you shall terminate\ + \ on the\ndate that such litigation is filed.\n\n(14) Disclaimer of Warranty:\nTHE PACKAGE\ + \ IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS \"AS\nIS' AND WITHOUT ANY EXPRESS\ + \ OR IMPLIED WARRANTIES. THE IMPLIED\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\ + \ PURPOSE, OR\nNON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL\nLAW.\ + \ UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL\nBE LIABLE FOR ANY DIRECT,\ + \ INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE\ + \ PACKAGE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE." json: artistic-2.0.json - yml: artistic-2.0.yml + yaml: artistic-2.0.yml html: artistic-2.0.html - text: artistic-2.0.LICENSE + license: artistic-2.0.LICENSE - license_key: artistic-clarified + category: Copyleft Limited spdx_license_key: ClArtistic other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + The Clarified Artistic License + + Preamble + + The intent of this document is to state the conditions under which a + Package may be copied, such that the Copyright Holder maintains some + semblance of artistic control over the development of the package, + while giving the users of the package the right to use and distribute + the Package in a more-or-less customary fashion, plus the right to make + reasonable modifications. + + Definitions: + + "Package" refers to the collection of files distributed by the + Copyright Holder, and derivatives of that collection of files + created through textual modification. + + "Standard Version" refers to such a Package if it has not been + modified, or has been modified in accordance with the wishes + of the Copyright Holder as specified below. + + "Copyright Holder" is whoever is named in the copyright or + copyrights for the package. + + "You" is you, if you're thinking about copying or distributing + this Package. + + "Distribution fee" is a fee you charge for providing a copy + of this Package to another party. + + "Freely Available" means that no fee is charged for the right to + use the item, though there may be fees involved in handling the + item. It also means that recipients of the item may redistribute + it under the same conditions they received it. + + 1. You may make and give away verbatim copies of the source form of the + Standard Version of this Package without restriction, provided that you + duplicate all of the original copyright notices and associated disclaimers. + + 2. You may apply bug fixes, portability fixes and other modifications + derived from the Public Domain, or those made Freely Available, or from + the Copyright Holder. A Package modified in such a way shall still be + considered the Standard Version. + + 3. You may otherwise modify your copy of this Package in any way, provided + that you insert a prominent notice in each changed file stating how and + when you changed that file, and provided that you do at least ONE of the + following: + + a) place your modifications in the Public Domain or otherwise make them + Freely Available, such as by posting said modifications to Usenet or an + equivalent medium, or placing the modifications on a major network + archive site allowing unrestricted access to them, or by allowing the + Copyright Holder to include your modifications in the Standard Version + of the Package. + + b) use the modified Package only within your corporation or organization. + + c) rename any non-standard executables so the names do not conflict + with standard executables, which must also be provided, and provide + a separate manual page for each non-standard executable that clearly + documents how it differs from the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + + e) permit and encourge anyone who receives a copy of the modified Package + permission to make your modifications Freely Available + in some specific way. + + + 4. You may distribute the programs of this Package in object code or + executable form, provided that you do at least ONE of the following: + + a) distribute a Standard Version of the executables and library files, + together with instructions (in the manual page or equivalent) on where + to get the Standard Version. + + b) accompany the distribution with the machine-readable source of + the Package with your modifications. + + c) give non-standard executables non-standard names, and clearly + document the differences in manual pages (or equivalent), together + with instructions on where to get the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + + e) offer the machine-readable source of the Package, with your + modifications, by mail order. + + 5. You may charge a distribution fee for any distribution of this Package. + If you offer support for this Package, you may charge any fee you choose + for that support. You may not charge a license fee for the right to use + this Package itself. You may distribute this Package in aggregate with + other (possibly commercial and possibly nonfree) programs as part of a + larger (possibly commercial and possibly nonfree) software distribution, + and charge license fees for other parts of that software distribution, + provided that you do not advertise this Package as a product of your own. + If the Package includes an interpreter, You may embed this Package's + interpreter within an executable of yours (by linking); this shall be + construed as a mere form of aggregation, provided that the complete + Standard Version of the interpreter is so embedded. + + 6. The scripts and library files supplied as input to or produced as + output from the programs of this Package do not automatically fall + under the copyright of this Package, but belong to whoever generated + them, and may be sold commercially, and may be aggregated with this + Package. If such scripts or library files are aggregated with this + Package via the so-called "undump" or "unexec" methods of producing a + binary executable image, then distribution of such an image shall + neither be construed as a distribution of this Package nor shall it + fall under the restrictions of Paragraphs 3 and 4, provided that you do + not represent such an executable image as a Standard Version of this + Package. + + 7. C subroutines (or comparably compiled subroutines in other + languages) supplied by you and linked into this Package in order to + emulate subroutines and variables of the language defined by this + Package shall not be considered part of this Package, but are the + equivalent of input as in Paragraph 6, provided these subroutines do + not change the language in any way that would cause it to fail the + regression tests for the language. + + 8. Aggregation of the Standard Version of the Package with a commercial + distribution is always permitted provided that the use of this Package + is embedded; that is, when no overt attempt is made to make this Package's + interfaces visible to the end user of the commercial distribution. + Such use shall not be construed as a distribution of this Package. + + 9. The name of the Copyright Holder may not be used to endorse or promote + products derived from this software without specific prior written permission. + + 10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + The End json: artistic-clarified.json - yml: artistic-clarified.yml + yaml: artistic-clarified.yml html: artistic-clarified.html - text: artistic-clarified.LICENSE + license: artistic-clarified.LICENSE - license_key: artistic-dist-1.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-artistic-1988-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + The "Artistic License" + + Preamble + + The intent of this document is to state the conditions under which a + Package may be copied, such that the Copyright Holder maintains some + semblance of artistic control over the development of the Package, + while giving the users of the package the right to use and distribute + the Package in a more-or-less customary fashion, plus the right to make + reasonable modifications. + + It also grants you the rights to reuse parts of a Package in your own + programs without transferring this License to those programs, provided + that you meet some reasonable requirements. + + Definitions: + + "Package" refers to the collection of files distributed by the + Copyright Holder, and derivatives of that collection of files + created through textual modification. + + "Standard Version" refers to such a Package if it has not been + modified, or has been modified in accordance with the wishes + of the Copyright Holder as specified below. + + "Copyright Holder" is whoever is named in the copyright or + copyrights for the package. + + "You" is you, if you're thinking about copying or distributing + this Package. + + "Reasonable copying fee" is whatever you can justify on the + basis of media cost, duplication charges, time of people involved, + and so on. (You will not be required to justify it to the + Copyright Holder, but only to the computing community at large + as a market that must bear the fee.) + + "Freely Available" means that no fee is charged for the item + itself, though there may be fees involved in handling the item. + It also means that recipients of the item may redistribute it + under the same conditions they received it. + + 1. You may make and give away verbatim copies of the source form of the + Standard Version of this Package without restriction, provided that you + duplicate all of the original copyright notices and associated disclaimers. + + 2. You may apply bug fixes, portability fixes and other modifications + derived from the Public Domain or from the Copyright Holder. A Package + modified in such a way shall still be considered the Standard Version. + + 3. You may otherwise modify your copy of this Package in any way, provided + that you insert a prominent notice in each changed file stating how and + when you changed that file, and provided that you do at least ONE of the + following: + + a) place your modifications in the Public Domain or otherwise make them + Freely Available, such as by posting said modifications to Usenet or + an equivalent medium, or placing the modifications on a major archive + site such as uunet.uu.net, or by allowing the Copyright Holder to include + your modifications in the Standard Version of the Package. + + b) use the modified Package only within your corporation or organization. + + c) rename any non-standard executables so the names do not conflict + with standard executables, which must also be provided, and provide + a separate manual page for each non-standard executable that clearly + documents how it differs from the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + + 4. You may distribute the programs of this Package in object code or + executable form, provided that you do at least ONE of the following: + + a) distribute a Standard Version of the executables and library files, + together with instructions (in the manual page or equivalent) on where + to get the Standard Version. + + b) accompany the distribution with the machine-readable source of + the Package with your modifications. + + c) give non-standard executables non-standard names, and clearly + document the differences in manual pages (or equivalent), together + with instructions on where to get the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + + 5. You may charge a reasonable copying fee for any distribution of this + Package. You may charge any fee you choose for support of this + Package. You may not charge a fee for this Package itself. However, + you may distribute this Package in aggregate with other (possibly + commercial) programs as part of a larger (possibly commercial) software + distribution provided that you do not advertise this Package as a + product of your own. + + 6. The scripts and library files supplied as input to or produced as + output from the programs of this Package do not automatically fall + under the copyright of this Package, but belong to whoever generated + them, and may be sold commercially, and may be aggregated with this + Package. If such scripts or library files are aggregated with this + Package via the so-called "undump" or "unexec" methods of producing a + binary executable image, then distribution of such an image shall + neither be construed as a distribution of this Package nor shall it + fall under the restrictions of Paragraphs 3 and 4, provided that you do + not represent such an executable image as a Standard Version of this + Package. + + 7. You may reuse parts of this Package in your own programs, provided that + you explicitly state where you got them from, in the source code (and, left + to your courtesy, in the documentation), duplicating all the associated + copyright notices and disclaimers. Besides your changes, if any, must be + clearly marked as such. Parts reused that way will no longer fall under this + license if, and only if, the name of your program(s) have no immediate + connection with the name of the Package itself or its associated programs. + You may then apply whatever restrictions you wish on the reused parts or + choose to place them in the Public Domain--this will apply only within the + context of your package. + + 8. The name of the Copyright Holder may not be used to endorse or promote + products derived from this software without specific prior written permission. + + 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + The End json: artistic-dist-1.0.json - yml: artistic-dist-1.0.yml + yaml: artistic-dist-1.0.yml html: artistic-dist-1.0.html - text: artistic-dist-1.0.LICENSE + license: artistic-dist-1.0.LICENSE - license_key: artistic-perl-1.0 + category: Copyleft Limited spdx_license_key: Artistic-1.0-Perl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + The "Artistic License" + + Preamble + + The intent of this document is to state the conditions under which a + Package may be copied, such that the Copyright Holder maintains some + semblance of artistic control over the development of the package, + while giving the users of the package the right to use and distribute + the Package in a more-or-less customary fashion, plus the right to make + reasonable modifications. + + Definitions: + + "Package" refers to the collection of files distributed by the + Copyright Holder, and derivatives of that collection of files + created through textual modification. + + "Standard Version" refers to such a Package if it has not been + modified, or has been modified in accordance with the wishes + of the Copyright Holder as specified below. + + "Copyright Holder" is whoever is named in the copyright or + copyrights for the package. + + "You" is you, if you're thinking about copying or distributing + this Package. + + "Reasonable copying fee" is whatever you can justify on the + basis of media cost, duplication charges, time of people involved, + and so on. (You will not be required to justify it to the + Copyright Holder, but only to the computing community at large + as a market that must bear the fee.) + + "Freely Available" means that no fee is charged for the item + itself, though there may be fees involved in handling the item. + It also means that recipients of the item may redistribute it + under the same conditions they received it. + + 1. You may make and give away verbatim copies of the source form of the + Standard Version of this Package without restriction, provided that you + duplicate all of the original copyright notices and associated disclaimers. + + 2. You may apply bug fixes, portability fixes and other modifications + derived from the Public Domain or from the Copyright Holder. A Package + modified in such a way shall still be considered the Standard Version. + + 3. You may otherwise modify your copy of this Package in any way, provided + that you insert a prominent notice in each changed file stating how and + when you changed that file, and provided that you do at least ONE of the + following: + + a) place your modifications in the Public Domain or otherwise make them + Freely Available, such as by posting said modifications to Usenet or + an equivalent medium, or placing the modifications on a major archive + site such as uunet.uu.net, or by allowing the Copyright Holder to include + your modifications in the Standard Version of the Package. + + b) use the modified Package only within your corporation or organization. + + c) rename any non-standard executables so the names do not conflict + with standard executables, which must also be provided, and provide + a separate manual page for each non-standard executable that clearly + documents how it differs from the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + + 4. You may distribute the programs of this Package in object code or + executable form, provided that you do at least ONE of the following: + + a) distribute a Standard Version of the executables and library files, + together with instructions (in the manual page or equivalent) on where + to get the Standard Version. + + b) accompany the distribution with the machine-readable source of + the Package with your modifications. + + c) give non-standard executables non-standard names, and clearly + document the differences in manual pages (or equivalent), together + with instructions on where to get the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + + 5. You may charge a reasonable copying fee for any distribution of this + Package. You may charge any fee you choose for support of this + Package. You may not charge a fee for this Package itself. However, + you may distribute this Package in aggregate with other (possibly + commercial) programs as part of a larger (possibly commercial) software + distribution provided that you do not advertise this Package as a + product of your own. You may embed this Package's interpreter within + an executable of yours (by linking); this shall be construed as a mere + form of aggregation, provided that the complete Standard Version of the + interpreter is so embedded. + + 6. The scripts and library files supplied as input to or produced as + output from the programs of this Package do not automatically fall + under the copyright of this Package, but belong to whoever generated + them, and may be sold commercially, and may be aggregated with this + Package. If such scripts or library files are aggregated with this + Package via the so-called "undump" or "unexec" methods of producing a + binary executable image, then distribution of such an image shall + neither be construed as a distribution of this Package nor shall it + fall under the restrictions of Paragraphs 3 and 4, provided that you do + not represent such an executable image as a Standard Version of this + Package. + + 7. C subroutines (or comparably compiled subroutines in other + languages) supplied by you and linked into this Package in order to + emulate subroutines and variables of the language defined by this + Package shall not be considered part of this Package, but are the + equivalent of input as in Paragraph 6, provided these subroutines do + not change the language in any way that would cause it to fail the + regression tests for the language. + + 8. Aggregation of this Package with a commercial distribution is always + permitted provided that the use of this Package is embedded; that is, + when no overt attempt is made to make this Package's interfaces visible + to the end user of the commercial distribution. Such use shall not be + construed as a distribution of this Package. + + 9. The name of the Copyright Holder may not be used to endorse or promote + products derived from this software without specific prior written permission. + + 10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + The End json: artistic-perl-1.0.json - yml: artistic-perl-1.0.yml + yaml: artistic-perl-1.0.yml html: artistic-perl-1.0.html - text: artistic-perl-1.0.LICENSE + license: artistic-perl-1.0.LICENSE - license_key: aslp + category: Free Restricted spdx_license_key: LicenseRef-scancode-aslp other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Artop Software License for Preparatory Development (ASLP) + THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ARTOP SOFTWARE LICENSE FOR PREPARATORY DEVELOPMENT (ASLP) ("LICENSE"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + + 1. DEFINITIONS + "Affiliated Company" means, with respect to any party, any other legal entity that, directly, or indirectly, controls, or is controlled by or is under common control with, such party. For purposes of this definition, "control" (including the terms "controlling," "controlled by" and "under common control with"), as used with respect to such party, shall mean the possession, directly or indirectly, of the power to direct or cause the direction of management or policies of such party through the majority ownership of voting securities. Any Affiliated Company shall not be deemed as third party in this ASLP. + + "AUTOSAR" means a system architecture that is standardized by the AUTOSAR development cooperation. + + "AUTOSAR Associate Partner" means a party committed to the commercial exploitation of AUTOSAR, which is effectively bound to the terms of an AUTOSAR Associate Partner agreement. + + "AUTOSAR Core Partner" means a party which is effectively bound to the terms of the AUTOSAR development agreement. + + "AUTOSAR Development License" means the license granted by the AUTOSAR development cooperation for the development of future AUTOSAR releases as defined in the respective AUTOSAR agreement. For example such a license is only granted to current AUTOSAR Core Partners, AUTOSAR Premium Partners and AUTOSAR Development Partners. + + "AUTOSAR Development Material" means a general term for preparatory documents and specifications (including AUTOSAR Released Materials) that are used by the AUTOSAR development cooperation for the development of future AUTOSAR releases also including already released materials. The use of AUTOSAR Development Materials and the contained intellectual property is regulated by the AUTOSAR Development License and other AUTOSAR regulations. + + "AUTOSAR Development Partner" means a party interested in the development and/or committed to the commercial exploitation of AUTOSAR, which is effectively bound to the terms of an AUTOSAR Development Partner agreement. + + "AUTOSAR Exploitation License" means the license granted by the AUTOSAR development cooperation for the automotive exploitation of AUTOSAR as defined in the respective AUTOSAR agreement. For example such a license is granted to current AUTOSAR Core Partners, AUTOSAR Premium Partners, AUTOSAR Development Partners and AUTOSAR Associate Partners. + + "AUTOSAR Premium Partner" means a party interested in the development and/or committed to the commercial exploitation of AUTOSAR, which is effectively bound to the terms of an AUTOSAR Premium Partner agreement. + + "AUTOSAR Released Material" means a general term for documents and specifications that are officially released by the AUTOSAR development cooperation. The use of AUTOSAR Released Material and the contained intellectual property is regulated by the AUTOSAR Exploitation License and other AUTOSAR regulations. + + "Contribution" means: + a) in the case of the initial Contributor, the initial code and documentation distributed under this License, and + b) in the case of each subsequent Contributor: + i) changes to the Program, and + ii) additions to the Program; + where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. + + "Contributor" means any party that has an AUTOSAR Development License that distributes or provides Contributions to the Program. + + "Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. + + "Program" means the Contributions distributed in accordance with this License. + + "Recipient" means any party that has an AUTOSAR Development License that receives the Program under this License, including all Contributors. + + 2. GRANT OF RIGHTS + Grant of Rights by Contributor to Recipient + + a) Copyright License + Subject to the terms of this License, each Contributor hereby grants Recipient a nonexclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, display, perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. + + b) Patent License + Subject to the terms of this License, each Contributor hereby grants Recipient a nonexclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. + + c) Licensing under the Terms of the Artop Software License Based on AUTOSAR Released Material (ASLR) + Subject to the terms of this License, each Contributor hereby grants Recipient the right to license the Program to third parties under the terms of the ASLR, provided that: + (i) the AUTOSAR Development Materials used in the Program have been officially released entirely or partially by the AUTOSAR development cooperation; + (ii) Recipient removes parts of the Program that have not been officially released by the AUTOSAR development cooperation as required by AUTOSAR regulations. + + The AUTOSAR development cooperation is not obliged to use the entire set of AUTOSAR Development Materials for an official release. AUTOSAR Released Materials can be based on subsets of the AUTOSAR Development Materials. + + d) Third Party Intellectual Property Rights + Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. + + For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. + + e) Contributor Represents Sufficient Rights + Each Contributor represents that to its knowledge it has sufficient rights in its Contribution, if any, to grant the licenses set forth in this License. + + 3. NON-ASSERTION + Each Recipient agrees not to assert against any other Recipient exploiting Artop commercially regarding any intellectual property rights used by the Program. + + Any beneficiary of this non-assertion may enforce it for its own benefit, provided that it grants similar non-assertion commitments to the Recipient or properly obligated successors in rights to the respective intellectual property. + + 4. REQUIREMENTS + 4.1 Distribution of the Program in Object Code + A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: + a) it complies with the terms and conditions of this License; and + b) its license agreement: + i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; + ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; + iii) states that any provisions which differ from this License are offered by that Contributor alone and not by any other party; and + iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. + 4.2 Distribution of the Program in Source Code + When the Program is made available in source code form: + a) it must be made available under this License; and + b) a copy of this License must be included with each copy of the Program. + 4.3 Alteration of Copyrights + Contributors may not remove or alter any copyright notices contained within the Program. + 4.4 Identification of the Original Contributor + Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. + 4.5 AUTOSAR Requirements + The Contributor and the Recipient must have an AUTOSAR Development License for the AUTOSAR Development Materials that are used in the Program. + + The use of the Program is limited to AUTOSAR development work. + + 5. COMMERCIAL DISTRIBUTION + For commercial distribution and exploitation the acceptance of the "Artop Software License Based on AUTOSAR Released Material (ASLR)" is required. + + 6. NO WARRANTY + EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED 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. + + Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this License, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. + + 7. DISCLAIMER OF LIABILITY + EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 8. GENERAL + 8.1 Severability + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + 8.2 Recipient Claims Intellectual Property Rights Infringements + If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. + 8.3 Term + The term of this License shall expire as soon as: + a) the development work in AUTOSAR for the AUTOSAR Development Materials used in the Program is completed and the AUTOSAR Development Materials have been officially released entirely or partially by the AUTOSAR development cooperation; or + b) Recipient's AUTOSAR Development License is terminated. + The rights and obligations stated in Section 2(c) shall continue to be in force after the end of the term of this License. + 8.4 Termination of Rights + All Recipient's rights under this License shall terminate if it fails to comply with any of the material terms or conditions of this License and does not cure such failure in a reasonable period of time after becoming aware of such non-compliance. If all Recipient's rights under this License terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this License and any licenses granted by Recipient relating to the Program shall continue and survive. + 8.5 Restrictions of Granted Rights + Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this License, whether expressly, by implication, estoppel or otherwise. + All rights in the Program not expressly granted under this License are reserved. + 8.6 Governing Law + This License is governed by the laws of the Federal Republic of Germany. The application of the United Nations Convention for the International Sale of Goods (CISG) is hereby excluded. json: aslp.json - yml: aslp.yml + yaml: aslp.yml html: aslp.html - text: aslp.LICENSE + license: aslp.LICENSE - license_key: aslr + category: Copyleft spdx_license_key: LicenseRef-scancode-aslr other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + Artop Software License Based on AUTOSAR Released Material (ASLR) + + THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ARTOP SOFTWARE LICENSE BASED ON AUTOSAR RELEASED MATERIAL (ASLR) ("LICENSE"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + + 1. DEFINITIONS + + "Affiliated Company" means, with respect to any party, any other legal entity that, directly, or indirectly, controls, or is controlled by or is under common control with, such party. For purposes of this definition, "control" (including the terms "controlling," "controlled by" and "under common control with"), as used with respect to such party, shall mean the possession, directly or indirectly, of the power to direct or cause the direction of management or policies of such party through the majority ownership of voting securities. Any Affiliated Company shall not be deemed as third party in this ASLR. + + "AUTOSAR" means a system architecture that is standardized by the AUTOSAR development cooperation. + + "AUTOSAR Associate Partner" means a party committed to the commercial exploitation of AUTOSAR, which is effectively bound to the terms of an AUTOSAR Associate Partner agreement. + + "AUTOSAR Core Partner" means a party which is effectively bound to the terms of the AUTOSAR development agreement. + + "AUTOSAR Development Partner" means a party interested in the development and/or committed to the commercial exploitation of AUTOSAR, which is effectively bound to the terms of an AUTOSAR Development Partner agreement. + + "AUTOSAR Exploitation License" means the license granted by the AUTOSAR development cooperation for the automotive exploitation of AUTOSAR as defined in the respective AUTOSAR agreement. For example such a license is granted to current AUTOSAR Core Partners, AUTOSAR Premium Partners, AUTOSAR Development Partners and AUTOSAR Associate Partners. + + "AUTOSAR Premium Partner" means a party interested in the development and/or committed to the commercial exploitation of AUTOSAR, which is effectively bound to the terms of an AUTOSAR Premium Partner agreement. + + "AUTOSAR Released Material" means a general term for documents and specifications that are officially released by the AUTOSAR development cooperation. The use of AUTOSAR Released Material and the contained intellectual property is regulated by the AUTOSAR Exploitation License and other AUTOSAR regulations. + + "Contribution" means: + a) in the case of the initial Contributor, the initial code and documentation distributed under this License, and + b) in the case of each subsequent Contributor: + i) changes to the Program, and + ii) additions to the Program; + where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. + + "Contributor" means any party that has an AUTOSAR Exploitation License that distributes or provides Contributions to the Program. + + "Distributor" means any Contributor that distributes the Program. + + "Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. + + "Program" means the Contributions distributed in accordance with this License. + + "Recipient" means any party that has an AUTOSAR Exploitation License that receives the Program under this License, including all Contributors. + + 2. GRANT OF RIGHTS + Grant of Rights by Contributor to Recipient + + a) Copyright License + Subject to the terms of this License, each Contributor hereby grants Recipient a nonexclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, display, perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. + + b) Patent License + Subject to the terms of this License, each Contributor hereby grants Recipient a nonexclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. + + c) Licensing under the Terms of the Eclipse Public License (EPL) + Subject to the terms of this License, each Contributor hereby grants Recipient the right to license the Program to third parties under the terms of the EPL, if the Program does not use any AUTOSAR Released Materials. + + d) Third Party Intellectual Property Rights + Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. + + For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. + + e) Contributor Represents Sufficient Rights + Each Contributor represents that to its knowledge it has sufficient rights in its Contribution, if any, to grant the licenses set forth in this License. + + 3. NON-ASSERTION + Each Recipient agrees not to assert against any other Recipient exploiting Artop commercially regarding any intellectual property rights used by the Program. + + Any beneficiary of this non-assertion may enforce it for its own benefit, provided that it grants similar non-assertion commitments to the Recipient or properly obligated successors in rights to the respective intellectual property. + + 4. REQUIREMENTS + 4.1 Distribution of the Program in Object Code + A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: + a) it complies with the terms and conditions of this License; and + b) its license agreement: + i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; + ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; + iii) states that any provisions which differ from this License are offered by that Contributor alone and not by any other party; and + iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. + 4.2 Distribution of the Program in Source Code + When the Program is made available in source code form: + a) it must be made available under this License; and + b) a copy of this License must be included with each copy of the Program. + 4.3 Alteration of Copyrights + Contributors may not remove or alter any copyright notices contained within the Program. + 4.4 Identification of the Original Contributor + Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. + 4.5 AUTOSAR Requirements + The Contributor and the Recipient must have an AUTOSAR Exploitation License for the AUTOSAR Released Materials that are used in the Program. + + 5. COMMERCIAL DISTRIBUTION + 5.1 Obligation Regarding Product Behavior + Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Distributor who includes the Program in a commercial product offering must do so in a manner which does not create potential liability for other Contributors. + + Therefore, if a Distributor includes the Program in a commercial product offering, such Distributor hereby agrees to defend and indemnify every other Contributor against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the indemnified Contributor to the extent caused by the acts or omissions of such Distributor in connection with its distribution of the Program in a commercial product offering. + + 5.2 Obligations Regarding Intellectual Property Rights of Third Parties + The obligations in section 5.1 do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an indemnified Contributor must: + a) promptly notify the Distributor in writing of such claim, and + b) allow the Distributor to control, and cooperate with the Distributor in, the defense and any related settlement negotiations. + The indemnified Contributor may participate in any such claim at its own expense. + + 5.3 Example to Section 5.1 + For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Distributor. If that Distributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Distributor's responsibility alone. Under this section, the Distributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Distributor must pay those damages. + + 6. NO WARRANTY + EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED 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. + + Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this License, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. + + 7. DISCLAIMER OF LIABILITY + EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 8. GENERAL + 8.1 Severability + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + 8.2 Recipient Claims Intellectual Property Rights Infringements + If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. + 8.3 Termination of Rights + All Recipient's rights under this License shall terminate if it fails to comply with any of the material terms or conditions of this License and does not cure such failure in a reasonable period of time after becoming aware of such non-compliance. If all Recipient's rights under this License terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this License and any licenses granted by Recipient relating to the Program shall continue and survive. + 8.4 Restrictions of Granted Rights + Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this License, whether expressly, by implication, estoppel or otherwise. + All rights in the Program not expressly granted under this License are reserved. + 8.5 Governing Law + This License is governed by the laws of the Federal Republic of Germany. The application of the United Nations Convention for the International Sale of Goods (CISG) is hereby excluded. json: aslr.json - yml: aslr.yml + yaml: aslr.yml html: aslr.html - text: aslr.LICENSE + license: aslr.LICENSE - license_key: asmus + category: Permissive spdx_license_key: LicenseRef-scancode-asmus other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "ASMUS License\n\nDisclaimer and legal rights\n---------------------------\n\nThis file\ + \ contains bugs. All representations to the contrary are void.\n\nSource code in this file\ + \ and the accompanying headers and included \nfiles may be distributed free of charge by\ + \ anyone, as long as full \ncredit is given and any and all liabilities are assumed by the\ + \ \nrecipient." json: asmus.json - yml: asmus.yml + yaml: asmus.yml html: asmus.html - text: asmus.LICENSE + license: asmus.LICENSE - license_key: asn1 + category: Permissive spdx_license_key: LicenseRef-scancode-asn1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + ASN.1 Object Dumping Code License + + ASN.1 object dumping code, copyright Peter Gutmann , based on ASN.1 dump program by David Kemp , with contributions from various people including Matthew Hamrick , Bruno Couillard , Hallvard Furuseth , Geoff Thorpe , David Boyce , John Hughes , Life is hard, and then you die , Hans-Olof Hermansson , Tor Rustad , Kjetil Barvik , James Sweeny , Chris Ridd , and several other people whose names I've misplaced (a number of those email addresses probably no longer work, since this code has been around for awhile). + + Available from http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c Last updated 7 January 2009 (version 20090107, if you prefer it that way). To build under Windows, use 'cl /MD dumpasn1.c'. To build on OS390 or z/OS, use '/bin/c89 -D OS390 -o dumpasn1 dumpasn1.c'. + + This code grew slowly over time without much design or planning, and with extra features being tacked on as required. It's not representative of my normal coding style. + + This version of dumpasn1 requires a config file dumpasn1.cfg to be present in the same location as the program itself or in a standard directory where binaries live (it will run without it but will display a warning message, you can configure the path either by hardcoding it in or using an environment variable as explained further down). The config file is available from http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.cfg + + This code assumes that the input data is binary, having come from a MIME-aware mailer or been piped through a decoding utility if the original format used base64 encoding. If you need to decode it, it's recommended that you use a utility like uudeview, which will strip virtually any kind of encoding (MIME, PEM, PGP, whatever) to recover the binary original. + + You can use this code in whatever way you want, as long as you don't try to claim you wrote it. + + Editing notes: Tabs to 4, phasers to stun (and in case anyone wants to complain about that, see "Program Indentation and Comprehensiblity", Richard Miara, Joyce Musselman, Juan Navarro, and Ben Shneiderman, Communications of the ACM, Vol.26, No.11 (November 1983), p.861) json: asn1.json - yml: asn1.yml + yaml: asn1.yml html: asn1.html - text: asn1.LICENSE + license: asn1.LICENSE +- license_key: aswf-digital-assets-1.0 + category: Free Restricted + spdx_license_key: LicenseRef-scancode-aswf-digital-assets-1.0 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + ASWF Digital Assets License v1.0 + + License for (the “Asset Name”). + + Copyright . All rights reserved. + + Redistribution and use of these digital assets, with or without modification, solely for education, training, research, software and hardware development, performance benchmarking (including publication of benchmark results and permitting reproducibility of the benchmark results by third parties), or software and hardware product demonstrations, are permitted provided that the following conditions are met: + + 1. Redistributions of these digital assets or any part of them must include the above copyright notice, this list of conditions and the disclaimer below. + + 2. Publications showing images derived from these digital assets must include the above copyright notice. + + 3. The names of copyright holder or the names of its contributors may NOT be used to promote or to imply endorsement, sponsorship, or affiliation with products developed or tested utilizing these digital assets or benchmarking results obtained from these digital assets, without prior written permission from copyright holder. + + 4. The assets and their output may only be referred to as the Asset Name listed above, and your use of the Asset Name shall be solely to identify the digital assets. Other than as expressly permitted by this License, you may NOT use any trade names, trademarks, service marks, or product names of the copyright holder for any purpose. + + DISCLAIMER: THESE DIGITAL ASSETS ARE PROVIDED BY THE COPYRIGHT HOLDER “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 COPYRIGHT HOLDER 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 THESE DIGITAL ASSETS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + json: aswf-digital-assets-1.0.json + yaml: aswf-digital-assets-1.0.yml + html: aswf-digital-assets-1.0.html + license: aswf-digital-assets-1.0.LICENSE +- license_key: aswf-digital-assets-1.1 + category: Free Restricted + spdx_license_key: LicenseRef-scancode-aswf-digital-assets-1.1 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + ASWF Digital Assets License v1.1 + + License for (the “Asset Name”). + + Copyright . All rights reserved. + + Redistribution and use of these digital assets, with or without modification, solely for education, training, research, software and hardware development, performance benchmarking (including publication of benchmark results and permitting reproducibility of the benchmark results by third parties), or software and hardware product demonstrations, are permitted provided that the following conditions are met: + + 1. Redistributions of these digital assets or any part of them must include the above copyright notice, this list of conditions and the disclaimer below, and if applicable, a description of how the redistributed versions of the digital assets differ from the originals. + + 2. Publications showing images derived from these digital assets must include the above copyright notice. + + 3. The names of copyright holder or the names of its contributors may NOT be used to promote or to imply endorsement, sponsorship, or affiliation with products developed or tested utilizing these digital assets or benchmarking results obtained from these digital assets, without prior written permission from copyright holder. + + 4. The assets and their output may only be referred to as the Asset Name listed above, and your use of the Asset Name shall be solely to identify the digital assets. Other than as expressly permitted by this License, you may NOT use any trade names, trademarks, service marks, or product names of the copyright holder for any purpose. + + DISCLAIMER: THESE DIGITAL ASSETS ARE PROVIDED BY THE COPYRIGHT HOLDER “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 COPYRIGHT HOLDER 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 THESE DIGITAL ASSETS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + Footer + json: aswf-digital-assets-1.1.json + yaml: aswf-digital-assets-1.1.yml + html: aswf-digital-assets-1.1.html + license: aswf-digital-assets-1.1.LICENSE - license_key: ati-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ati-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + ATI Software End User License Agreement + + PLEASE READ THIS LICENSE CAREFULLY BEFORE USING THE SOFTWARE. BY + DOWNLOADING, INSTALLING, COPYING OR USING THE SOFTWARE, YOU ARE AGREEING TO + BE BOUND BY THE TERMS OF THIS LICENSE. IF YOU ARE ACCESSING THE SOFTWARE + ELECTRONICALLY, SIGNIFY YOUR AGREEMENT BY CLICKING THE "AGREE/ACCEPT" + BUTTON. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE, PROMPTLY RETURN + THE SOFTWARE TO THE PLACE WHERE YOU OBTAINED IT AND (IF APPLICABLE) YOUR + MONEY WILL BE REFUNDED OR IF THE SOFTWARE WAS ACCESSED ELECTRONICALLY CLICK + "DISAGREE/DECLINE". + + 1. License. ATI Technologies Inc., on behalf of itself, its subsidiaries + and licensors (referred collectively as "ATI") grants to you the following + non-exclusive, right to use the software accompanying this License + (hereinafter "Software") subject to the following terms and limitations: + + (a) Regardless of the media upon which it is distributed, the Software is + licensed to you for use solely in conjunction with ATI hardware products to + which the Software relates ("ATI Hardware"). + + (b) You own the medium on which the Software is recorded, but ATI and, if + applicable, its licensors retain title to the Software and related + documentation. + + (c) You may: + + i) use the Software solely in connection with the ATI Hardware on a + single computer; + + ii) make one copy of the Software in machine-readable form for backup + purposes only. You must reproduce on such copy ATI's copyright notice and + any other proprietary legends that were on the original copy of the + Software; + + iii) transfer all your license rights in the Software provided you must + also transfer a copy of this License, the backup copy of the Software, + the ATI Hardware and the related documentation and provided the other + party reads and agrees to accept the terms and conditions of this + License. Upon such transfer your license rights are then terminated. + + (d) In addition to the license terms above, with respect to portions of + the Software in source code or binary form designed exclusively for use + with the Linux operating system ("ATI Linux Code"), you may use, display, + modify, copy, distribute, allow others to re-distribute, package and re- + package such ATI Linux Code for commercial and non-commercial purposes, + provided that: + + i) all binary components of the ATI Linux Code are not modified in any + way; + + ii) the ATI Linux Code is only used as part of the Software and in + connection with ATI Hardware; + + iii) all copyright notices of ATI are reproduced and you refer to these + license terms; + + iv) you may not offer or impose any terms on the use of ATI Linux + Code that alter or restrict this License; and + + v) if you have modified the ATI Linux Code, such modifications will be + made publicly available and are licensed under the same terms provided + herein to ATI or any other third party without further restriction, + royalty or any other license requirement; + + vi) to the extent there is any ATI sample or control panel source + code included in the ATI Linux Code, no rights are granted to modify such + code except for portions thereof that may be subject to third party + license terms that grant such rights; and + + vii) ATI is not obligated to provide any maintenance or technical support + for any code resulting from ATI Linux Code. + + 2. Restrictions. The Software contains copyrighted and patented material, + trade secrets and other proprietary material. In order to protect them, + and except as permitted by this license or applicable legislation, you may + not: + + a) decompile, reverse engineer, disassemble or otherwise reduce the + Software to a human-perceivable form; + + b) modify, network, rent, lend, loan, distribute or create derivative + works based upon the Software in whole or in part; or + + c) electronically transmit the Software from one computer to another or + over a network or otherwise transfer the Software except as permitted by + this License. + + 3. Termination. This License is effective until terminated. You may + terminate this License at any time by destroying the Software, related + documentation and all copies thereof. This License will terminate + immediately without notice from ATI if you fail to comply with any + provision of this License. Upon termination you must destroy the Software, + related documentation and all copies thereof. + + 4. Government End Users. If you are acquiring the Software on behalf of + any unit or agency of the United States Government, the following + provisions apply. The Government agrees the Software and documentation + were developed at private expense and are provided with "RESTRICTED + RIGHTS". Use, duplication, or disclosure by the Government is subject to + restrictions as set forth in DFARS 227.7202-1(a) and 227.7202-3(a) (1995), + DFARS 252.227-7013(c)(1)(ii) (Oct 1988), FAR 12.212(a)(1995), FAR 52.227- + 19, (June 1987) or FAR 52.227-14(ALT III) (June 1987),as amended from time + to time. In the event that this License, or any part thereof, is deemed + inconsistent with the minimum rights identified in the Restricted Rights + provisions, the minimum rights shall prevail. + + 5. No Other License. No rights or licenses are granted by ATI under this + License, expressly or by implication, with respect to any proprietary + information or patent, copyright, trade secret or other intellectual + property right owned or controlled by ATI, except as expressly provided in + this License. + + 6. Additional Licenses. DISTRIBUTION OR USE OF THE SOFTWARE WITH AN + OPERATING SYSTEM MAY REQUIRE ADDITIONAL LICENSES FROM THE OPERATING SYSTEM + VENDOR. + + 7. Disclaimer of Warranty on Software. You expressly acknowledge and + agree that use of the Software is at your sole risk. The Software and + related documentation are provided "AS IS" and without warranty of any kind + and ATI EXPRESSLY DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FORA PARTICULAR PURPOSE, OF QUALITY, OF QUIET ENJOYMENT AND OF NON- + INFRINGEMENT OF THIRD PARTY RIGHTS. ATI DOES NOT WARRANT THAT THE + FUNCTIONS CONTAINED IN THE SOFTWARE WILL MEET YOUR REQUIREMENTS, OR THAT + THE OPERATION OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT + DEFECTS IN THE SOFTWARE WILL BE CORRECTED. THE ENTIRE RISK AS TO THE + RESULTS AND PERFORMANCE OF THE SOFTWARE IS ASSUMED BY YOU. FURTHERMORE, + ATI DOES NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE ORTHE + RESULTS OF THE USE OF THE SOFTWARE OR RELATED DOCUMENTATION IN TERMS OF + THEIR CORRECTNESS, ACCURACY, RELIABILITY, CURRENTNESS, OR OTHERWISE. NO + ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY ATI OR ATI'S AUTHORIZED + REPRESENTATIVE SHALL CREATE A WARRANTY OR IN ANY WAY INCREASE THE SCOPE OF + THIS WARRANTY. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU (AND NOT ATI OR + ATI'S AUTHORIZED REPRESENTATIVE) ASSUME THE ENTIRE COST OF ALL NECESSARY + SERVICING, REPAIR OR CORRECTION. THE SOFTWARE IS NOT INTENDED FOR USE IN + MEDICAL, LIFE SAVING OR LIFE SUSTAINING APPLICATIONS. SOME JURISDICTIONS + DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO THE ABOVE EXCLUSION + MAY NOT APPLY TO YOU. + + 8. Limitation of Liability. TO THE MAXIMUM EXTENT PERMITTED BY LAW, UNDER + NO CIRCUMSTANCES INCLUDING NEGLIGENCE, SHALL ATI, OR ITS DIRECTORS, + OFFICERS, EMPLOYEES OR AGENTS, BE LIABLE TO YOU FOR ANY INCIDENTAL, + INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES (INCLUDING DAMAGES FOR LOSS OF + BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESSINFORMATION, AND + THE LIKE) ARISING OUT OF THE USE, MISUSE OR INABILITY TO USE THE SOFTWARE + OR RELATED DOCUMENTATION, BREACH OR DEFAULT, INCLUDING THOSE ARISING FROM + INFRINGEMENT OR ALLEGED INFRINGEMENT OF ANY PATENT, TRADEMARK, COPYRIGHT OR + OTHER INTELLECTUAL PROPERTY RIGHT, BY ATI, EVEN IF ATI OR ATI'S AUTHORIZED + REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME + JURISDICTIONS DO NOT ALLOW THE LIMITATION OR EXCLUSION OF LIABILITY FOR + INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE LIMITATION OR EXCLUSION + MAY NOT APPLY TO YOU. ATI will not be liable for 1) loss of, or damage to, + your records or data or 2) any damages claimed by you based on any third + party claim. In no event shall ATI's total liability to you for all + damages, losses, and causes of action (whether in contract, tort (including + negligence) or otherwise) exceed the amount paid by you for the Software. + The foregoing limitations will apply even if the above stated limitation + fails of its essential purpose. + + 9. Controlling Law and Severability. This License shall be governed by + and construed under the laws of the Province of Ontario, Canada without + reference to its conflict of law principles. Any dispute related hereto + will be brought only in the courts in Toronto, Ontario, Canada and such + courts are agreed to be the convenient forum. In the event of any + conflicts between foreign law, rules, and regulations, and Canadian law, + rules, and regulations, Canadian law, rules and regulations shall prevail + and govern. The United Nations Convention on Contracts for the + International Sale of Goods shall not apply to this License. If for any + reason a court of competent jurisdiction finds any provision of this + License or portion thereof, to be unenforceable, that provision of the + License shall be enforced to the maximum extent permissible so as to effect + the intent of the parties, and the remainder of this License shall continue + in full force and effect. + + 10. Complete Agreement. This License constitutes the entire agreement + between the parties with respect to the use of the Software and the related + documentation, and supersedes all prior or contemporaneous understandings + or agreements, written or oral, regarding such subject matter. No + amendment to or modification of this License will be binding unless in + writing and signed by a duly authorized representative of ATI. json: ati-eula.json - yml: ati-eula.yml + yaml: ati-eula.yml html: ati-eula.html - text: ati-eula.LICENSE + license: ati-eula.LICENSE - license_key: atkinson-hyperlegible-font + category: Permissive spdx_license_key: LicenseRef-scancode-atkinson-hyperlegible-font other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Atkinson Hyperlegible Font License + + GENERAL + Copyright Holder allows the Font to be used, studied, modified and redistributed freely as long as it + is not sold by itself. The Font, including any derivative works, may be bundled, embedded, + redistributed and/or sold with any software or other work provided that the Reserved Typeface Name + is not used on, in or by any derivative work. The Font and derivatives, however, cannot be released + under any other type of license. The requirement for the Font to remain under this license does not + apply to any document created using the Font or any of its derivatives. + + DEFINITIONS + "Author" refers to any designer, engineer, programmer, technical writer or other person who + contributed to the Font Software. + “Copyright Holder” refers to Braille Institute of America, Inc. + “Font” refers to the Atkinson Hyperlegible Font developed by Copyright Holder. + "Font Software" refers to the set of files released by Copyright Holder under this license. This may + include source files, build scripts and documentation. + "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or + in whole -- any of the components of the Original Version, by changing formats or by porting the + Font Software to a new environment. + "Original Version" refers to the collection of the Font Software components as distributed by + Copyright Holder. + "Reserved Typeface Name" refers to the name Atkinson Hyperlegible Font. + + PERMISSION & CONDITIONS + Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, + to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of + the Font Software, subject to the following conditions: + + 1) Neither the Font Software nor any of its individual components, in Original Version or Modified + Version, may be sold by itself. + + 2) The Original Version or Modified Version of the Font Software may be bundled, redistributed + and/or sold with any other software, provided that each copy contains the above copyright notice + and this license. These can be included either as stand-alone text files, human-readable headers + or in the appropriate machine-readable metadata fields within text or binary files as long as those + fields can be easily viewed by the user. + + 3) No Modified Version of the Font Software may use the Reserved Typeface Name unless explicit + written permission is granted by Copyright Holder. This restriction only applies to the primary font + name as presented to the users. + + 4) The name of Copyright Holder or the Author(s) of the Font Software shall not be used to promote, + endorse or advertise any Modified Version or any related software or other product, except: + (a) to acknowledge the contribution(s) of Copyright Holder and the Author(s); or + (b) with the prior written permission of Copyright Holder. + + 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under + this license, and must not be distributed under any other license. + + TERMINATION + This license shall immediately terminate and become null and void if any of the above conditions + are not met. + + DISCLAIMER + THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, + TRADEMARK OR OTHER RIGHT. IN NO EVENT SHALL COPYRIGHT HOLDER BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, + INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT + OR OTHERWISE, ARISING FROM, OUT OF THE USE OF OR INABILITY TO USE THE FONT + SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. json: atkinson-hyperlegible-font.json - yml: atkinson-hyperlegible-font.yml + yaml: atkinson-hyperlegible-font.yml html: atkinson-hyperlegible-font.html - text: atkinson-hyperlegible-font.LICENSE + license: atkinson-hyperlegible-font.LICENSE - license_key: atlassian-marketplace-tou + category: Proprietary Free spdx_license_key: LicenseRef-scancode-atlassian-marketplace-tou other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Atlassian Marketplace Terms of Use + Welcome to the Atlassian Marketplace! The Atlassian Marketplace is an online marketplace for cloud and downloadable software applications, plugins and extensions (“Marketplace Apps” or “Apps”) that are designed to interoperate with Atlassian’s software and cloud offerings (“Atlassian Products”). + + Use of the Atlassian Marketplace is governed by these Atlassian Marketplace Terms of Use (“Terms of Use”), which form a legally binding agreement between you (defined in Section 1.1) and Atlassian Pty Ltd, an Australian corporation (ABN 53 102 443 916) (“Atlassian” or “we”). + + By placing an Order for an App, or accessing or using the Atlassian Marketplace, you indicate your assent to be bound by these Terms of Use. If you do not agree to these Terms of Use, do not place an Order or use or access the Atlassian Marketplace. + + 1. Introduction + 1.1. Who are You? Because all Apps available through the Atlassian Marketplace are designed for use with Atlassian Products, in these Terms of Use, “you” refers to the Atlassian customer (e.g., person or entity) who holds a license or subscription to the Atlassian Product with which the App will be enabled or used. That Atlassian customer is fully responsible for compliance with these Terms of Use by anyone using the Atlassian Marketplace or placing Orders on its behalf. Any person using the Atlassian Marketplace or placing an Order on behalf of an Atlassian customer is binding that Atlassian customer to these Terms of Use. These Terms of Use also apply to you if you are browsing the Marketplace or leaving a review. + + 1.2. Types of Apps. Some Marketplace Apps are made available at no charge, and others require payment of fees. The listing for each App will identify the provider of the App (“Vendor”), which may be Atlassian or a third party. Apps for which Atlassian is the Vendor are “Atlassian Apps,” and Apps for which the Vendor is a third party are “Third Party Apps”. Most Vendors are third parties, who create, own and are responsible for their own Apps as further described in these Terms of Use. In all cases, you may only use Apps with the Atlassian Products with which they are designed to be used (as identified in the App’s listing). + + 1.3. Finding Apps and Placing Orders. We want it to be easy to find great Apps throughout your Atlassian experience. Therefore, “Atlassian Marketplace” includes https://marketplace.atlassian.com and any other webpage, application, interface, service or in-product experience at which we make available or list Apps (such as our Universal Plugin Manager). Likewise, when we refer to “Orders”, that includes any order, purchase, installation, trial, download or enablement of an App (including renewals and upgrades), whether through the Atlassian Marketplace, Atlassian Products or other processes or interfaces we make available. All Orders are subject to these Terms of Use. + + 1.4. Marketplace Policies. Your Orders and use of the Atlassian Marketplace are also subject to Atlassian’s marketplace FAQs and posted policies, as may be modified from time to time (“Marketplace Policies”), which are incorporated into these Terms of Use. + + 2. Your Orders + 2.1. Order Details. Your Order will identify the Vendor, your authorized scope of use of the App (such as the platform or number of seats) and license or subscription term, as applicable. Once you complete your Order, Atlassian will provide with you access to the applicable Apps, including any relevant license or access keys, as described in the Marketplace Policies. + + 2.2. Paid Apps. To receive access to paid Apps, you must pay Atlassian the fees, including all taxes, indicated at the time of your Order. Terms for renewals, including pricing, will be described within the App’s listing on the Atlassian Marketplace (or if different, your Order). You can disable renewals by visiting my.atlassian.com or by emailing sales@atlassian.com (but you will not receive any refunds except as described in Section 2.3). For any Third Party App, you acknowledge and agree that Atlassian is the Vendor’s commercial agent and that you are required to make any related payments directly to Atlassian (and your sales contract with Atlassian includes these Terms of Use and the applicable Order). However, after you complete your Order, your usage of any Third Party Apps will be governed by the applicable Vendor Terms, as described in Section 3. + + Note: this Section 2.2 does not apply to Paid-via-Vendor Apps (see Section 2.5 below). + + 2.3. Return Policy. Returns and refunds of Atlassian Apps are governed by the Atlassian Terms, as defined in Section 3.1(b). For Third Party Apps, you have thirty (30) days from the date you place your Order to cancel your Order and return the App. If you cancel your Order of a Third Party App within this 30-day period, Atlassian will refund the amount you paid for the applicable Third Party App, and you must cease using the App and delete any copies of the App in your possession. Except as expressly provided in this Section 2.3, all Orders are non-cancelable and non-refundable. + + Note: this Section 2.3 does not apply to Paid-via-Vendor Apps (see Section 2.5 below). + + 2.4. Trial Periods. The Atlassian Marketplace may offer free trial periods for Apps. After expiration of the trial period, if you do not place an Order for the App, the App will cease to function and you must cease using and delete your copies of the App and any related license or access keys. + + 2.5. Paid-via-Vendor Apps. While most Apps are provisioned by Atlassian as described in Section 1, some Third Party Apps may be enabled or paid for through a third party Vendor’s own website (“Paid-via-Vendor Apps”). Paid-via-Vendor Apps will be identified in their listings or when you enable or pay for the App. Section 2.2 (Paid Apps) and Section 2.3 (Return Policy) do not apply to Paid-via-Vendor Apps and returns, if any, would be governed by the applicable Vendor Terms. + + 3. Use of Marketplace Apps. + 3.1. Vendor Terms. Without limiting the disclaimers, restrictions or other provisions in these Terms of Use, usage of Apps is subject to the license or subscription terms, privacy policies and other applicable terms specified by the Vendor (“Vendor Terms”). Vendor Terms are typically included on the App’s listing page or presented through the Order process. You may not use an App if you do not agree to the relevant Vendor Terms. + + (a) Third Party Apps. Third Party Apps are subject to the third party’s Vendor Terms, not the Atlassian Terms. By ordering, installing or enabling any Third Party App, you are entering into the Vendor Terms directly with the applicable third party Vendor. Atlassian is not a party to, or responsible for compliance with, any third party Vendor Terms, and does not guarantee any third party Vendor Terms are adequate for your own needs. Please see Section 4 (Data Collection and Sharing) for additional information about how third party Vendors use your data. + + (b) Atlassian Apps. If Atlassian is the Vendor of the App, the Vendor Terms are the Atlassian terms that govern the Atlassian Product with which the App is enabled or used (listed here) and as may be modified from time to time (the “Atlassian Terms”). The Atlassian Terms include the Atlassian Privacy Policy. In event of a conflict between these Terms of Use and the Atlassian Terms, the Atlassian Terms will control as to each party’s rights and responsibilities related to the App itself, while these Terms of Use will control as to the Atlassian Marketplace generally. + + 3.2. Support and Maintenance. Any support and maintenance of Third Party Apps will be provided by the applicable Vendor and only to the extent described in the applicable Vendor Terms. Atlassian is not responsible for any support and maintenance for Third Party Apps, and a Vendor’s failure to provide any support or maintenance does not entitle you to any refund. If Atlassian is the Vendor, it will provide any support and maintenance in accordance with the Atlassian Terms. + + 3.3. Reservation of Rights. Except for the rights explicitly granted to you in these Terms of Use and in the Vendor Terms for each App, all right, title and interest (including intellectual property rights) in the Atlassian Marketplace are reserved by Atlassian, and all right, title and interest (including intellectual property rights) in the Apps are reserved and retained by their respective Vendors and licensors. Apps are provided on a license or subscription basis, not sold, and you do not acquire any ownership rights in the Atlassian Marketplace or the Apps. + + 4. Data Collection and Sharing. + 4.1. Order Information. If you order a Marketplace App through Atlassian, Atlassian will provide the Vendor with the information you provide in completing the order, such as your name, company name (if any), addresses (including e-mail address) and phone number. + + 4.2. Third Party Vendor Use of Data. As referenced in the Atlassian Terms, if you place an Order for Third Party Apps, you authorize Vendors to access or use certain data in the applicable Atlassian Products. This may include transmitting, transferring, modifying or deleting such data, or storing such data on Vendor or third party systems. Any third party Vendor’s use of accessed data (whether data in the Atlassian Products or separately collected from you or your device) is subject to the applicable Vendor Terms. Atlassian is not responsible for any access, use, transfer or security of data or information by third party Vendors or by Third Party Apps, or for the security or privacy practices of any third party Vendor, Third Party App or their processors. You are solely responsible for your decision to permit any third party Vendor or Third Party App to access or use data to which you’ve granted access. It is your responsibility to carefully review the Vendor Terms, as provided by the applicable third party Vendor. + + 4.3. Atlassian Use of Data. Any data that Atlassian collects from you based on your use of the Atlassian Marketplace and your Orders, or that it receives from third party Vendors on your behalf (e.g., order details related to purchases under Section 2.5 (Paid-via-Vendor Apps)), is subject to the Atlassian Privacy Policy. + + 4.4. Analytics and Usage Data. In addition, you authorize the Vendor and Atlassian (if Atlassian is not the Vendor) to collect and use technical data and related information (including technical information relating to your device, system, and the App), in non-personally identifiable form, to facilitate the provision of software updates, product support, marketing efforts and other services to you related to the App. Vendor and Atlassian (if Atlassian is not the Vendor) may each use this information, as long as it is in a form that does not personally identify individual users, to improve their respective products or to provide services or technology to you (including with respect to Atlassian, the Atlassian Marketplace and Atlassian Products). + + 5. Reviews of Marketplace Apps. + The Atlassian Marketplace allows users to post reviews (e.g., a star rating) of Marketplace Apps and to post comments on your or other users’ reviews. + + 5.1. User Names Displayed. Reviews and comments are posted under the name and profile of the user submitting the content (as listed in his or her Atlassian account). Users who do not want their names or other profile information (such as profile photographs) to appear may not post reviews or comments on the Atlassian Marketplace. + + 5.2. Rules for Reviews. All reviews and comments must comply with Atlassian’s Acceptable Use Policy and the terms below. To make your reviews and comments useful to others: + + Reviews must be made in good faith after reasonable evaluation of the relevant App. + + Users may post only one review per App, unless the latter review reflects a good-faith rating change based on further evaluation. Any modified reviews will be marked as “edited”. + + You (including anyone acting on your behalf) may not review or comment on your own App, an App owned by a company you work for, or those of competitors. As an exception, you may provide informational responses to support requests or other inquiries directed to you within the reviews or comments section of your App listing. + + A Review must evaluate the App itself and not be an evaluation of the underlying product with which the App integrates or functions. + + Reviews or comments unrelated to the relevant App are prohibited – for example, discussing Atlassian’s employees, business or stock, or those of other companies, or unrelated products or services. + + 5.3. Atlassian Rights. Atlassian reserves the right, in its sole discretion and for any reason at any time, to remove or edit any review or comment on the Atlassian Marketplace. Atlassian does not claim ownership of the content of reviews or comments you post on the Atlassian Marketplace. However, you hereby grant Atlassian a nonexclusive, worldwide, irrevocable, perpetual, transferable, sublicenseable (through multiple tiers), fully paid-up, royalty-free license to use, distribute, reproduce, modify, excerpt, attribute, adapt, publicly perform and publicly display that content (in whole or in part) and to incorporate it into other works in any format or medium now known or later developed, and to permit others to do so. + + 6. Your Responsibilities. + 6.1. Representations and Warranties. You (including anyone acting on your behalf) represent and warrant that you have all necessary right, power and authority (i) to enter into and be legally bound by these Terms of Use, (ii) to place any Orders, and (iii) and to authorize Vendors to access and use your data and information as described in Section 4, all without violation of any other agreements or policies. + + 6.2 Compliance with Law and Reservation of Rights. You must use the Atlassian Marketplace and Marketplace Apps in compliance with all applicable laws. + + 6.3. Indemnification. You agree to indemnify, defend (at Atlassian’s request) and hold Atlassian, its affiliates, and its and their officers, agents and employees harmless from any claims by third parties, and any related damages, losses or costs (including reasonable attorney fees and costs) arising out of your violation of these Terms of Use or the applicable Vendor Terms, your violation of any rights of a third party, or any content you submit to or publish on the Atlassian Marketplace. You may not settle any such claim without Atlassian’s prior written consent. + + 7. Term and Termination. + 7.1. For Cause. Your rights hereunder will automatically terminate upon your failure to comply with any of the provisions in these Terms of Use. In case of such termination, you must cease all use of the Atlassian Marketplace, and Atlassian may immediately revoke your access to the Atlassian Marketplace without notice to you and without refund of any purchases. + + 7.2. Discontinuation of Marketplace. Atlassian may terminate these Terms of Use without notice to you if Atlassian, in its discretion, discontinues the Atlassian Marketplace. + + 7.3. Effect on Apps. If these Terms of Use terminate, your rights to use any previously obtained Apps will survive in accordance with the applicable Vendor Terms. + + 7.4. Survival. The following Sections will survive any termination or expiration of these Terms of Use: 3.1(b) (Atlassian Terms) (if applicable for continued use of Atlassian Apps), 3.3 (Reservation of Rights), 4 (Data Collection and Sharing), 5.3 (Atlassian Rights) and 6 (Your Responsibilities) through 10 (General). + + 8. Important Disclaimers and Limitations of Liability. + 8.1. Third Party Apps. A significant portion of the Marketplace Apps in the Atlassian Marketplace are provided by parties other than Atlassian. Third party Vendors are solely responsible for their Apps and any related content or materials included in their Apps. Atlassian has no liability or responsibility whatsoever for any Third Party Apps, including their accuracy, reliability, availability, security, data handling, data processing, completeness, usefulness or quality, even if Atlassian is hosting such App. These disclaimers apply even if an App complies with Atlassian’s guidelines for Third Party Apps (located on Atlassian’s web properties such as developer.atlassian.com), and even if Atlassian has reviewed, certified, or approved the Third Party App or the Vendor participates in any one of Atlassian’s App programs such as those described here (“App Programs”). Any use of Third Party Apps is at your sole discretion and risk. Vendors are solely responsible for ensuring that any information they submit in connection with any App Program is accurate, complete and correct, and Atlassian is not responsible for the standards or business practices of any third party Vendor (whether support, availability, security or otherwise), even if the Vendor participates in an App Program. You should always independently verify that any Third Party Apps or Vendor business practices meet your needs. In addition, Atlassian is not responsible for any third party websites to which the Atlassian Marketplace links or their terms of use or privacy policies. You should use your discretion when visiting third party websites. + + 8.2. Removal of Apps. At any time, Atlassian may remove an App from the Atlassian Marketplace in accordance with its applicable policies, and Vendors may also update, modify or remove their own Apps at any time. + + 8.3. Interoperability. Atlassian makes no guarantee that any Apps will work properly with Atlassian Products or that Apps will continue to work with Atlassian Products as they change over time. Some Apps rely on hosted or cloud services provided by the Vendor or third parties, and these Apps may not function properly or may become inoperable if those services are discontinued. + + 8.4. Disclaimer of Warranties. To the maximum extent permitted by law, Atlassian offers the Atlassian Marketplace and all Third Party Apps “AS IS” and “AS AVAILABLE”, and Atlassian hereby disclaims all warranties, whether express, implied or statutory, including but not limited to any implied warranties of title, non-infringement, merchantability or fitness for a particular purpose, relating to the Atlassian Marketplace or this Agreement. You may have other statutory rights, in which case the duration of any statutory warranties will be limited to the maximum extent permitted by law. + + 8.5. Limitations of Liability. To the maximum extent permitted by law, in no event will Atlassian be liable for any direct, indirect, consequential, special, exemplary, punitive or other liability related to the Atlassian Marketplace or any Third Party Apps, including for any loss of use, lost or inaccurate data, failure of security mechanisms, interruption of business or costs of delay. If the foregoing disclaimer of direct damages is not enforceable at law for any reason, in no event will Atlassian’s aggregate liability to you under these Terms of Use exceed the greater of (1) the amount you paid to Atlassian for the Third Party App related to your claim, or (2) fifty dollars (US$50). + + 8.6. Disclaimers and Limitations of Liability for Atlassian Apps. Section 8.4 (Disclaimer of Warranties) and 8.5 (Limitations of Liability) do not alter the disclaimers or limitations of liability for Atlassian Apps in the Atlassian Terms, which continue to fully apply. + + 8.7. Basis of Bargain; Failure of Essential Purpose. Atlassian entered into these Terms of Use relying on the limitations of liability, disclaimers of warranty and other provisions relating to allocation of risk herein, and you agree that such provisions are an essential basis of the bargain between the parties. You agree that the waivers and limitations specified in this Section 8 apply regardless of the form of action, whether in contract, tort (including negligence), strict liability or otherwise and will survive and apply even if any limited remedy specified in these Terms of Use is found to have failed of its essential purpose. + + 8.8. Atlassian Affiliates and Contractors. You acknowledge and agree that Atlassian’s affiliates, contractors and service providers may exercise all rights of Atlassian under these Terms of Use, and that all limitations of liability and disclaimers in these Terms of Use apply fully to and benefit Atlassian’s affiliates. + + 9. Dispute Resolution; Governing Law. + 9.1. Informal Resolution. In the event of any controversy or claim arising out of or relating to these Terms of Use, the parties will consult and negotiate with each other and, recognizing their mutual interests, attempt to reach a solution satisfactory to both parties. If the parties do not reach settlement within a period of sixty (60) days, either party may pursue relief as may be available under these Terms of Use pursuant to Section 9.2 (Governing Law; Jurisdiction). All negotiations pursuant to this Section 9.1 will be confidential and treated as compromise and settlement negotiations for purposes of all similar rules and codes of evidence of applicable legislation and jurisdictions. + + 9.2. Governing Law; Jurisdiction. These Terms of Use will be governed by and construed in accordance with the applicable laws of the State of California, USA, without giving effect to the principles of that State relating to conflicts of laws. Each party irrevocably agrees that any legal action, suit or proceeding arising out of or related to these Terms of Use must be brought solely and exclusively in, and will be subject to the service of process and other applicable procedural rules of, the State or Federal court in San Francisco, California, USA, and each party irrevocably submits to the sole and exclusive personal jurisdiction of the courts in San Francisco, California, USA, generally and unconditionally, with respect to any action, suit or proceeding brought by it or against it by the other party. + + 9.3. Injunctive Relief; Enforcement. Notwithstanding the provisions of Section 9.1 (Informal Resolution) and 9.2 (Governing Law; Jurisdiction), nothing in these Terms of Use will prevent Atlassian from seeking injunctive relief with respect to a violation of intellectual property rights, confidentiality obligations or enforcement or recognition of any award or order in any appropriate jurisdiction. + + 9.4. Exclusion of UN Convention and UCITA. The terms of the United Nations Convention on Contracts for the Sale of Goods do not apply to these Terms of Use. The Uniform Computer Information Transactions Act (UCITA) will not apply to these Terms of Use regardless of when or where adopted. + + 10. General. + 10.1. Changes to Terms. Atlassian may modify these Terms of Use at its sole discretion by posting the revised terms on the Atlassian Marketplace. You may be required to click to agree to the modified Terms of Use in order to continue using the Marketplace, and in any event your continued use of the Atlassian Marketplace (including any future Orders) after the effective date of the modifications constitutes your acceptance of the modified terms. For clarity, the version of these Terms of Use in place at the time of your Order will apply for purposes of that Order. Except as provided in this Section 10.1, all changes or amendments to these Terms of Use require the written agreement of you and Atlassian. + + 10.2. Reporting Copyright and Trademark Violations. If you believe that any content in the Atlassian Marketplace violates your copyright, please follow the process described at Reporting Copyright and Trademark Violations. + + 10.3. Contact Information. For communications concerning these Terms of Use (other than copyright and trademark concerns covered in Section 10.2), please write to legal@atlassian.com. Atlassian may send you notices through your Atlassian account or to your email address that is on file with Atlassian. + + 10.4. Entire Agreement. These Terms of Use constitute the entire agreement between the parties with respect to their subject matter and supersedes any and all prior or contemporaneous agreements between the parties with respect to their subject matter. For clarity, this does not limit the Vendor Terms, which apply in accordance with Section 3 above. + + 10.5. Interpretation. If any provision of these Terms of Use is held invalid by a court with jurisdiction over the parties to these Terms of Use, such provision will be deemed to be restated to reflect as nearly as possible the original intentions of the parties in accordance with applicable law, and the remainder of these Terms of Use will remain in full force and effect. Atlassian’s failure to enforce any provision of these Terms of Use will not constitute a waiver of Atlassian’s rights to subsequently enforce the provision. In these Terms of Use, headings are for convenience only and terms such as “including” are to be construed without limitation. + + 10.6. Assignment. You may not assign or transfer these Terms of Use. Atlassian may freely assign, transfer and delegate its rights and obligations under these Terms of Use. + + 10.7. No agency. Nothing in these Terms of Use or any Order is intended to, or shall be deemed to, make Atlassian your agent, or authorize Atlassian to make or enter into any commitments for you or on your behalf. + + 10.8. Export Laws and Regulations. You may not use or otherwise export or re-export the Marketplace Apps except as authorized by United States law and the laws of the jurisdiction in which the App was obtained. In particular, but without limitation, Apps may not be exported or re-exported (a) into any U.S. embargoed countries or (b) to anyone on the U.S Treasury Department’s list of Specially Designated Nationals and Consolidated Sanctions list or the U.S. Department of Commerce’s Denied Persons, Entity, or Unverified Lists. By using any Marketplace App, you represent and warrant that you are not located in any such country or on any such list. You agree not to use or provide the Apps for any prohibited end use, including to support any nuclear, chemical, or biological weapons proliferation, or missile technology, without the prior permission of the United States government. + + Last Revised: March 31, 2019 json: atlassian-marketplace-tou.json - yml: atlassian-marketplace-tou.yml + yaml: atlassian-marketplace-tou.yml html: atlassian-marketplace-tou.html - text: atlassian-marketplace-tou.LICENSE + license: atlassian-marketplace-tou.LICENSE - license_key: atmel-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-atmel-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Redistribution and use of the microcode software ( Firmware ) is \n\ + permitted provided that the following conditions are met: \n \ + \ \n \ + \ 1. Firmware is redistributed in object code only; \n \ + \ 2. Any reproduction of Firmware must contain the above \n \ + \ copyright notice, this list of conditions and the below \n disclaimer\ + \ in the documentation and/or other materials \n provided with\ + \ the distribution; and \n 3. The name of Atmel\ + \ Corporation may not be used to endorse \n or promote products\ + \ derived from this Firmware without specific \n prior written consent.\ + \ \n \ + \ \nDISCLAIMER: ATMEL PROVIDES THIS FIRMWARE\ + \ \"AS IS\" WITH NO WARRANTIES OR \nINDEMNITIES WHATSOEVER. ATMEL EXPRESSLY DISCLAIMS\ + \ ANY EXPRESS, STATUTORY \nOR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\ + \ THE IMPLIED \nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\ + \ PURPOSE AND \nNON-INFRINGEMENT. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY\ + \ DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\ + \ \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \ + \ \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \ + \ \nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \ + \ \nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN \ + \ \nANY WAY OUT OF THE USE OF THIS FIRMWARE, EVEN IF ADVISED OF THE \ + \ \nPOSSIBILITY OF SUCH DAMAGE. USER ACKNOWLEDGES AND AGREES THAT THE \ + \ \nPURCHASE OR USE OF THE FIRMWARE WILL NOT CREATE OR GIVE GROUNDS FOR A \ + \ \nLICENSE BY IMPLICATION, ESTOPPEL, OR OTHERWISE IN ANY INTELLECTUAL \n\ + PROPERTY RIGHTS (PATENT, COPYRIGHT, TRADE SECRET, MASK WORK, OR OTHER \nPROPRIETARY\ + \ RIGHT) EMBODIED IN ANY OTHER ATMEL HARDWARE OR FIRMWARE \nEITHER SOLELY\ + \ OR IN COMBINATION WITH THE FIRMWARE." json: atmel-firmware.json - yml: atmel-firmware.yml + yaml: atmel-firmware.yml html: atmel-firmware.html - text: atmel-firmware.LICENSE + license: atmel-firmware.LICENSE - license_key: atmel-linux-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-atmel-linux-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + REDISTRIBUTION: Permission is hereby granted by Atmel Corporation (Atmel), free + of any license fees, to any person obtaining a copy of this firmware (the + "Software"), to install, reproduce, copy and distribute copies, in binary form, + in hexadecimal or equivalent formats, of the Software and to permit persons to + whom the Software is provided to do the same, subject to the following + conditions: + + * Any redistribution of the Software must reproduce the above copyright notice, + this license notice, and the following disclaimers and notices in the + documentation and/or other materials provided with the Software. + + * Neither the name of Atmel Corporation, its products nor the names of its + suppliers may be used to endorse or promote products derived from this + Software without specific prior written permission. + + * All matters arising out of or in connection with this License and/or Software + shall be governed by California law and the parties agree to the exclusive + jurisdiction of the Californian courts to decide all disputes arising. + + * The licensee shall defend and indemnify Atmel against any and all claims, + costs, losses and damages (including reasonable legal fees) incurred by tme + arising out of any claim relating to the Software due to the licensee’s use or + sub-licensing of the Software + + DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE + DISCLAIMED. IN NO EVENT SHALL ATMEL 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. json: atmel-linux-firmware.json - yml: atmel-linux-firmware.yml + yaml: atmel-linux-firmware.yml html: atmel-linux-firmware.html - text: atmel-linux-firmware.LICENSE + license: atmel-linux-firmware.LICENSE - license_key: atmel-microcontroller + category: Proprietary Free spdx_license_key: LicenseRef-scancode-atmel-microcontroller other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Redistribution and use in source and binary forms, with or without \nmodification,\ + \ are permitted provided that the following conditions are met:\n\n1. Redistributions of\ + \ source code must retain the above copyright notice, this\nlist of conditions and the following\ + \ disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\ + \ \nthis list of conditions and the following disclaimer in the documentation \nand/or other\ + \ materials provided with the distribution.\n\n3. The name of Atmel may not be used to endorse\ + \ or promote products derived \nfrom this software without specific prior written permission.\ + \ \n\n4. This software may only be redistributed and used in connection with an \nAtmel\ + \ microcontroller product.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\ + \ \"AS IS\" \nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\ + \ \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE \nARE DISCLAIMED.\ + \ IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE \nLIABLE FOR ANY DIRECT, INDIRECT,\ + \ INCIDENTAL, SPECIAL, EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\ + \ TO, PROCUREMENT OF SUBSTITUTE \nGOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\ + \ INTERRUPTION) \nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \n\ + STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY \nOUT OF\ + \ THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." json: atmel-microcontroller.json - yml: atmel-microcontroller.yml + yaml: atmel-microcontroller.yml html: atmel-microcontroller.html - text: atmel-microcontroller.LICENSE + license: atmel-microcontroller.LICENSE - license_key: atmosphere-0.4 + category: Source-available spdx_license_key: LicenseRef-scancode-atmosphere-0.4 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Atmosphere Software License Version 0.4 + Preamble + + Software developers cannot ignore the impact of networked computation on the global climate crisis. The energy demands of the global economy exceed the current production of renewable energy. While software development has the potential to make economic activity far more efficient, fossil fuel's high subsidies and disastrous social costs mean that improvements to software often give their users the ability to optimize for financial profit at the expense of the environment, by increasing their fossil fuel extraction and polluting activities. This rebound effect has been worsened by the rise of cryptocurrency, which has made it possible to monetize computation roughly in proportion to the amount of energy consumed. Computation, energy, economics, and ecology are now locked in a harmful cycle. The purpose of the Atmosphere License is to let developers push back against this cycle, supporting environmental sustainabiliy by creating code that increases the relative economic value of renewable energy. + + Developers often release their software under open licenses out of a charitable impulse to help users accomplish their tasks more easily. The Atmosphere License acknowledges that if a contribution to open source helps its users to worsen the climate crisis and endanger the ecosystem that everyone depends on to survive, then the contribution is not effective altruism. The pursuit of open source software users' freedom must respect the physical safety of all stakeholders, including the users and the developers themselves. + + The precise terms and conditions for copying, distribution and modification follow. + TERMS AND CONDITIONS + 0. Scope + + 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 Atmosphere 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. Verbatim Copies + + 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. Modified Copies + + 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 each time you do so 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.) + d. You must divest from all Disqualifying Assets as listed in Section 3. + e. You must comply with any Obligations to Remote Users as defined below. + + 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. + 2.1. Obligations to Remote Users + + Notwithstanding any other provision of this License, you may allow users to interact with your modified version remotely through a computer network only if you meet the following Obligations to Remote Users: + + a. your modified version of the Program must prominently offer all users interacting with it remotely through a computer network an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. + + 3. Divestment + + "Divestment" of an asset means relinquishing all ownership interest in the asset, all profit rights in the asset, or right to control the asset, through sale or other disposal of the asset, or placing the asset under a conservation easement or other effective legal restriction, valid for at least three years, barring use of the asset for the activities that caused it to qualify as a "Disqualifying Asset". + + "Disqualifying Assets" subject to Divestment under the terms of this License include "Disqualifying Investments" and "Disqualifying Facilities". + + A "Disqualifying Investment" is any investment exceeding $10,000 in value in a company, agency, or entity that operates any Disqualifying Facility or has a majority ownership interest or majority profit rights in any Disqualifying Facility. A Disqualifying Investment may take the form of direct ownership, shares, commingled mutual funds containing shares, or corporate bonds. + + a. If you have the right to determine whether a Disqualifying Investment should be held in a fund for the benefit of others, such as a pension fund, endowment, or insurance fund, then you have a "right to control" the Disqualifying Investment for purposes of determining your obligation to divest. + + "Disqualifying Facilities" include any of the following: + + a. any coal mine or any coal extraction operations. + b. any oil or natural gas wells or extraction operations. + c. any coal, oil, or natural gas processing facility. + d. any pipeline longer than 10 kilometers used for fossil fuel transportation. + + 4. Source Code + + You may copy and distribute the Program (or a work based on it, under Sections 2 and 3) in object code or executable form under the terms of the Sections 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. + 5. Termination + + 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. + + 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. + 6. Acceptance + + 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. + 7. Additional Terms + + 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. + + If the original license omitted any of the optional provisions regarding Privacy of Remote Users, Deforestation, Nonrenewable Power Generation, Civilian Internment, or For-Profit Prisons, you may add one or more of those provisions to the license as additional terms when conveying modified versions of the Program. However, you may not add the "Offset for Renewable Investments" provision. + + You may also subject parts of the Program to restrictions derived from the Apache License Version 2.0, regarding matters such as patent termination and indemnification, if those parts of the Program were previously licensed under the Apache License. This is necessary to stay in compliance with the Apache License when relicensing under the Atmosphere License. To do this, add the phrase "subject to restrictions in Apache License Version 2.0" to the boilerplate Atmosphere License notices for your Program, or for the files or other parts of the Program that were covered by the Apache License. + + 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. + 8. Inconsistent Conditions + + 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 and ethical software distribution system, which is implemented by public license practices. An author/donor distributes software 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. + 9. Permission from Authors + + If you wish to incorporate parts of the Program into other programs whose distribution conditions are different, or if you wish to distribute modified versions of the Program or offer users Remote Network Interaction with a modified version of the Program without divesting from Disqualifying Assets, write to the author(s) to ask for permission to do so under the terms of a different license. + 10. No Warranty + + 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. + 11. No Liability + + 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. + 12. No Trademark Waiver + + Trademark rights are not licensed under this public license. + END OF TERMS AND CONDITIONS json: atmosphere-0.4.json - yml: atmosphere-0.4.yml + yaml: atmosphere-0.4.yml html: atmosphere-0.4.html - text: atmosphere-0.4.LICENSE + license: atmosphere-0.4.LICENSE - license_key: attribution + category: Permissive spdx_license_key: AAL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + PROFESSIONAL IDENTIFICATION * URL + "PROMOTIONAL SLOGAN FOR AUTHOR'S PROFESSIONAL PRACTICE" + + All Rights Reserved + ATTRIBUTION ASSURANCE LICENSE (adapted from the original BSD license) + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the conditions below are met. + These conditions require a modest attribution to (the + "Author"), who hopes that its promotional value may help justify the + thousands of dollars in otherwise billable time invested in writing + this and other freely available, open-source software. + + 1. Redistributions of source code, in whole or part and with or without + modification (the "Code"), must prominently display this GPG-signed + text in verifiable form. + 2. Redistributions of the Code in binary form must be accompanied by + this GPG-signed text in any documentation and, each time the resulting + executable program or a program dependent thereon is launched, a + prominent display (e.g., splash screen or banner text) of the Author's + attribution information, which includes: + (a) Name ("AUTHOR"), + (b) Professional identification ("PROFESSIONAL IDENTIFICATION"), and + (c) URL ("URL"). + 3. Neither the name nor any trademark of the Author may be used to + endorse or promote products derived from this software without specific + prior written permission. + 4. Users are entirely responsible, to the exclusion of the Author and + any other persons, for compliance with (1) regulations set by owners or + administrators of employed equipment, (2) licensing terms of any other + software, and (3) local regulations regarding use, including those + regarding import, export, and use of encryption software. + + THIS FREE 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 OR ANY CONTRIBUTOR BE LIABLE FOR + ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + EFFECTS OF UNAUTHORIZED OR MALICIOUS NETWORK ACCESS; + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED + AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN + IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + --End of License json: attribution.json - yml: attribution.yml + yaml: attribution.yml html: attribution.html - text: attribution.LICENSE + license: attribution.LICENSE - license_key: autoconf-exception-2.0 + category: Copyleft Limited spdx_license_key: Autoconf-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, the Free Software Foundation gives unlimited + permission to copy, distribute and modify the configure scripts that + are the output of Autoconf. You need not follow the terms of the GNU + General Public License when using or distributing such scripts, even + though portions of the text of Autoconf appear in them. The GNU + General Public License (GPL) does govern all other use of the material + that constitutes the Autoconf program. + + Certain portions of the Autoconf source text are designed to be copied + (in certain cases, depending on the input) into the output of + Autoconf. We call these the "data" portions. The rest of the Autoconf + source text consists of comments plus executable code that decides which + of the data portions to output in any given case. We call these + comments and executable code the "non-data" portions. Autoconf never + copies any of the non-data portions into its output. + + This special exception to the GPL applies to versions of Autoconf + released by the Free Software Foundation. When you make and + distribute a modified version of Autoconf, you may extend this special + exception to the GPL to apply to your modified version as well, *unless* + your modified version has the potential to copy into its output some + of the text that was the non-data portion of the version that you started + with. (In other words, unless your change moves or copies text from + the non-data portions to the data portions.) If your modification has + such potential, you must delete any notice of this special exception + to the GPL from your modified version. json: autoconf-exception-2.0.json - yml: autoconf-exception-2.0.yml + yaml: autoconf-exception-2.0.yml html: autoconf-exception-2.0.html - text: autoconf-exception-2.0.LICENSE + license: autoconf-exception-2.0.LICENSE - license_key: autoconf-exception-3.0 + category: Copyleft Limited spdx_license_key: Autoconf-exception-3.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + AUTOCONF CONFIGURE SCRIPT EXCEPTION + + Version 3.0, 18 August 2009 + + Copyright © 2009 Free Software Foundation, Inc. + + Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + + This Exception is an additional permission under section 7 of the GNU General Public License, version 3 ("GPLv3"). It applies to a given file that bears a notice placed by the copyright holder of the file stating that the file is governed by GPLv3 along with this Exception. + + The purpose of this Exception is to allow distribution of Autoconf's typical output under terms of the recipient's choice (including proprietary). + + 0. Definitions. + "Covered Code" is the source or object code of a version of Autoconf that is a covered work under this License. + + "Normally Copied Code" for a version of Autoconf means all parts of its Covered Code which that version can copy from its code (i.e., not from its input file) into its minimally verbose, non-debugging and non-tracing output. + + "Ineligible Code" is Covered Code that is not Normally Copied Code. + + 1. Grant of Additional Permission. + You have permission to propagate output of Autoconf, even if such propagation would otherwise violate the terms of GPLv3. However, if by modifying Autoconf you cause any Ineligible Code of the version you received to become Normally Copied Code of your modified version, then you void this Exception for the resulting covered work. If you convey that resulting covered work, you must remove this Exception in accordance with the second paragraph of Section 7 of GPLv3. + + 2. No Weakening of Autoconf Copyleft. + The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of Autoconf. json: autoconf-exception-3.0.json - yml: autoconf-exception-3.0.yml + yaml: autoconf-exception-3.0.yml html: autoconf-exception-3.0.html - text: autoconf-exception-3.0.LICENSE + license: autoconf-exception-3.0.LICENSE - license_key: autoconf-macro-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-autoconf-macro-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, the respective Autoconf Macro's copyright + owner gives unlimited permission to copy, distribute and modify the + configure scripts that are the output of Autoconf when processing + the Macro. You need not follow the terms of the GNU General Public + License when using or distributing such scripts, even though + portions of the text of the Macro appear in them. The GNU General + Public License (GPL) does govern all other use of the material that + constitutes the Autoconf Macro. + + This special exception to the GPL applies to versions of the + Autoconf Macro released by the Autoconf Macro Archive. When you + make and distribute a modified version of the Autoconf Macro, you + may extend this special exception to the GPL to apply to your + modified version as well. json: autoconf-macro-exception.json - yml: autoconf-macro-exception.yml + yaml: autoconf-macro-exception.yml html: autoconf-macro-exception.html - text: autoconf-macro-exception.LICENSE + license: autoconf-macro-exception.LICENSE - license_key: autoconf-simple-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-autoconf-simple-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception to the GNU General Public License, if you + distribute this file as part of a program that contains a + configuration script generated by Autoconf, you may include it under + the same distribution terms that you use for the rest of that + program. This Exception is an additional permission under section 7 + of the GNU General Public License, version 3 ("GPLv3"). json: autoconf-simple-exception.json - yml: autoconf-simple-exception.yml + yaml: autoconf-simple-exception.yml html: autoconf-simple-exception.html - text: autoconf-simple-exception.LICENSE + license: autoconf-simple-exception.LICENSE - license_key: autoconf-simple-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-autoconf-simple-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception to the GNU General Public License, if you + distribute this file as part of a program that contains a + configuration script generated by Autoconf, you may include it under + the same distribution terms that you use for the rest of that + program. json: autoconf-simple-exception-2.0.json - yml: autoconf-simple-exception-2.0.yml + yaml: autoconf-simple-exception-2.0.yml html: autoconf-simple-exception-2.0.html - text: autoconf-simple-exception-2.0.LICENSE + license: autoconf-simple-exception-2.0.LICENSE +- license_key: autodesk-3d-sft-3.0 + category: Proprietary Free + spdx_license_key: LicenseRef-scancode-autodesk-3d-sft-3.0 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: "/**************************************************************************\n * 3D\ + \ Studio File Toolkit for Release 3 \n * \n * (C) Copyright 1997 by Autodesk, Inc. \n *\n\ + \ * License Agreement\n *\n * This Autodesk Program is copyrighted by Autodesk, Inc. and\ + \ is\n * licensed to you (individual or a legal entity) under the following\n * conditions:\n\ + \ *\n * You may use, modify, copy, reproduce, distribute, sell, and market\n * the Autodesk\ + \ Program, incorporated in whole or a portion thereof,\n * solely as a part of a Larger\ + \ Work (\"Larger Work\" is defined as a\n * work which contains the Autodesk Program or\ + \ portions thereof with\n * software/programs not governed by the terms of this License)\ + \ provided\n * such Larger Works:\n * (i) are designed and intended to work solely\ + \ with Autodesk, Inc.\n * products,\n * (ii.) conspicuously contain Autodesk's\ + \ copyright notice\n * \"(C) Copyright 1995 by Autodesk, Inc.\",\n * (iii)\ + \ contain a copy of this license along with the Autodesk\n * Program, (iv) contain\ + \ the disclaimer of warranty and all\n * notices that refer to this License and\ + \ to the absence of\n * any warranty;\n * (v) add substantial value in addition\ + \ to the Autodesk Program. \n *\n * Any derivative or modification of this Autodesk Program\ + \ must be\n * distributed, published and licensed under the same conditions as\n * this\ + \ License. \n *\n * You may not license or distribute the Autodesk Program as a standalone\n\ + \ * program or product including OEM and private label.\n *\n * You may not use, copy, modify,\ + \ sublicense or distribute the Autodesk\n * Program or any portion thereof in any form if\ + \ such use or distribution\n * is not expressly licensed and or is expressly prohibited\ + \ under this\n * License. \n * \n * You acknowledge and agree that Autodesk shall own all\ + \ right, title\n * and interest in the Autodesk Program and all rights in patents whether\n\ + \ * now known or hereafter discovered. You do not hold and shall not claim\n * any interest\ + \ whatsoever in the Autodesk Program. \n *\n * You agree that the Autodesk Program, any\ + \ portion or derivative\n * thereof will not be shipped, transferred or exported into any\ + \ country\n * or used in any manner prohibited by the United States Export\n * Administration\ + \ Act or any other applicable export control law,\n * restriction or regulation.\n *\n *\ + \ NO WARRANTY.\n * AUTODESK PROVIDES THIS PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND,\n\ + \ * EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\n * NON-INFRINGEMENT\ + \ OF THIRD PARTY RIGHTS, THE IMPLIED WARRANTIES OF\n * MERCHANTABILITY OR FITNESS FOR A\ + \ PARTICULAR USE. AUTODESK, INC. DOES\n * NOT WARRANT THAT THE OPERATION OF THE PROGRAM\ + \ WILL BE UNINTERRUPTED\n * OR ERROR FREE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE\ + \ OF\n * THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU\n * (NOT AUTODESK)\ + \ ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR\n * OR CORRECTION. THIS DISCLAIMER\ + \ OF WARRANTY CONSTITUTES AN ESSENTIAL\n * PART OF THIS LICENSE. NO USE OF THE PROGRAM IS\ + \ AUTHORIZED HEREUNDER\n * EXCEPT UNDER THIS DISCLAIMER.\n *\n * LIMITATION OF LIABILITY.\n\ + \ * IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL AUTODESK, OR ANY\n * OTHER PARTY\ + \ WHO MAY MODIFY AND/OR REDISTRIBUTE THIS PROGRAM AS\n * PERMITTED HEREIN, BE LIABLE TO\ + \ YOU FOR DAMAGES, INCLUDING ANY GENERAL,\n * SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES\ + \ ARISING OUT OF THE USE\n * OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\ + \ TO LOSS OF\n * DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR\n\ + \ * THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\n * SOFTWARE), EVEN\ + \ IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\n * POSSIBILITY OF SUCH DAMAGES.\ + \ \n *\n * This License will be governed by the laws of the State of California,\n * U.S.A.,\ + \ excluding the application of its conflicts of law rules.\n * If any part of this License\ + \ is found void and unenforceable, it will\n * not affect the validity of the balance of\ + \ the License, which shall\n * remain valid and enforceable according to its terms.\n *\n\ + \ * This License and the rights granted hereunder will terminate\n * automatically if you\ + \ fail to comply with the terms herein. All\n * sublicenses to the Autodesk Program which\ + \ are properly granted shall\n * survive any termination of this license.\n *************************************************************************/" + json: autodesk-3d-sft-3.0.json + yaml: autodesk-3d-sft-3.0.yml + html: autodesk-3d-sft-3.0.html + license: autodesk-3d-sft-3.0.LICENSE - license_key: autoit-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-autoit-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Software License\nAutoIt\nAuthor : Jonathan Bennett and the AutoIt Team\nWWW : https://www.autoitscript.com/site/autoit/\n\ + Email : support at autoitscript dot com\n \nEND-USER LICENSE AGREEMENT FOR THIS SOFTWARE\n\ + This End-User License Agreement (\"EULA\") is a legal agreement between you (either an individual\ + \ or a single entity) and the mentioned author of this Software for the software product\ + \ identified above, which includes computer software and may include associated media, printed\ + \ materials, and \"online\" or electronic documentation (\"SOFTWARE PRODUCT\"). By installing,\ + \ copying, or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of\ + \ this EULA. If you do not agree to the terms of this EULA, do not install or use the SOFTWARE\ + \ PRODUCT.\n \nSOFTWARE PRODUCT LICENSE\nThe SOFTWARE PRODUCT is protected by copyright\ + \ laws and international copyright treaties, as well as other intellectual property laws\ + \ and treaties. The SOFTWARE PRODUCT is licensed, not sold.\n\nThe definition of SOFTWARE\ + \ PRODUCT does not includes any files generated by the SOFTWARE PRODUCT, such as compiled\ + \ script files in the form of standalone executables.\n\n1. GRANT OF LICENSE\n\nThis EULA\ + \ grants you the following rights:\n\nInstallation and Use. You may install and use an unlimited\ + \ number of copies of the SOFTWARE PRODUCT.\n\nReproduction and Distribution. You may reproduce\ + \ and distribute an unlimited number of copies of the SOFTWARE PRODUCT either in whole or\ + \ in part; each copy should include all copyright and trademark notices, and shall be accompanied\ + \ by a copy of this EULA. Copies of the SOFTWARE PRODUCT may be distributed as a standalone\ + \ product or included with your own product.\n\nCommercial Use. You may use the SOFTWARE\ + \ PRODUCT for commercial purposes. You may sell for profit and freely distribute scripts\ + \ and/or compiled scripts that were created with the SOFTWARE PRODUCT.\n\nReverse engineering.\ + \ You may not reverse engineer or disassemble the SOFTWARE PRODUCT.\n\n2. COPYRIGHT\n\n\ + All title and copyrights in and to the SOFTWARE PRODUCT (including but not limited to any\ + \ images, photographs, animations, video, audio, music, text, and \"applets\" incorporated\ + \ into the SOFTWARE PRODUCT), the accompanying printed materials, and any copies of the\ + \ SOFTWARE PRODUCT are owned by the Author of this Software. The SOFTWARE PRODUCT is protected\ + \ by copyright laws and international treaty provisions. Therefore, you must treat the SOFTWARE\ + \ PRODUCT like any other copyrighted material.\n \nMISCELLANEOUS\n\nIf you acquired this\ + \ product in the United Kingdom, this EULA is governed by the laws of the United Kingdom.\ + \ If this product was acquired outside the United Kingdom, then local law may apply.\n\n\ + Should you have any questions concerning this EULA, or if you desire to contact the author\ + \ of this Software for any reason, please contact him/her at the email address mentioned\ + \ at the top of this EULA.\n \nLIMITED WARRANTY\n\n1. NO WARRANTIES\n\nThe Author of this\ + \ Software expressly disclaims any warranty for the SOFTWARE PRODUCT. The SOFTWARE PRODUCT\ + \ and any related documentation is provided \"as is\" without warranty of any kind, either\ + \ express or implied, including, without limitation, the implied warranties or merchantability,\ + \ fitness for a particular purpose, or non-infringement. The entire risk arising out of\ + \ use or performance of the SOFTWARE PRODUCT remains with you.\n\n2. NO LIABILITY FOR DAMAGES\n\ + \nIn no event shall the author of this Software be liable for any damages whatsoever (including,\ + \ without limitation, damages for loss of business profits, business interruption, loss\ + \ of business information, or any other pecuniary loss) arising out of the use of or inability\ + \ to use this product, even if the Author of this Software has been advised of the possibility\ + \ of such damages. Because some states/jurisdictions do not allow the exclusion or limitation\ + \ of liability for consequential or incidental damages, the above limitation may not apply\ + \ to you.\n \n[END OF LICENSE]" json: autoit-eula.json - yml: autoit-eula.yml + yaml: autoit-eula.yml html: autoit-eula.html - text: autoit-eula.LICENSE + license: autoit-eula.LICENSE - license_key: autoopts-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-autoopts-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, Bruce Korb gives permission for additional + uses of the text contained in his release of AutoOpts. + + The exception is that, if you link the AutoOpts library with other + files to produce an executable, this does not by itself cause the + resulting executable to be covered by the GNU General Public License. + Your use of that executable is in no way restricted on account of + linking the AutoOpts library code into it. + + This exception does not however invalidate any other reasons why + the executable file might be covered by the GNU General Public License. + + This exception applies only to the code released by Bruce Korb under + the name AutoOpts. If you copy code from other sources under the + General Public License into a copy of AutoOpts, as the General Public + License permits, the exception does not apply to the code that you add + in this way. To avoid misleading anyone as to the status of such + modified files, you must delete this exception notice from them. + + If you write modifications of your own for AutoOpts, it is your choice + whether to permit this exception to apply to your modifications. + If you do not wish that, delete this exception notice. json: autoopts-exception-2.0.json - yml: autoopts-exception-2.0.yml + yaml: autoopts-exception-2.0.yml html: autoopts-exception-2.0.html - text: autoopts-exception-2.0.LICENSE + license: autoopts-exception-2.0.LICENSE - license_key: avisynth-c-interface-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-avisynth-c-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, I give you permission to link to the Avisynth + C interface with independent modules that communicate with the + Avisynth C interface solely through the interfaces defined in + avisynth_c.h, regardless of the license terms of these independent + modules, and to copy and distribute the resulting combined work under + terms of your choice, provided that every copy of the combined work is + accompanied by a complete copy of the source code of the Avisynth C + interface and Avisynth itself (with the version used to produce the + combined work), being distributed under the terms of the GNU General + Public License plus this exception. An independent module is a module + which is not derived from or based on Avisynth C Interface, such as + 3rd-party filters, import and export plugins, or graphical user + interfaces. json: avisynth-c-interface-exception.json - yml: avisynth-c-interface-exception.yml + yaml: avisynth-c-interface-exception.yml html: avisynth-c-interface-exception.html - text: avisynth-c-interface-exception.LICENSE + license: avisynth-c-interface-exception.LICENSE - license_key: avisynth-linking-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-avisynth-linking-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + Linking Avisynth statically or dynamically with other modules is making a + combined work based on Avisynth. Thus, the terms and conditions of the GNU + General Public License cover the whole combination. + + As a special exception, the copyright holders of Avisynth give you + permission to link Avisynth with independent modules that communicate + with Avisynth solely through the interfaces defined in avisynth.h, + regardless of the license terms of these independent modules, and to + copy and distribute the resulting combined work under terms of your + choice, provided that every copy of the combined work is accompanied by + a complete copy of the source code of Avisynth (the version of Avisynth + used to produce the combined work), being distributed under the terms of + the GNU General Public License plus this exception. An independent + module is a module which is not derived from or based on Avisynth, such + as 3rd-party filters, import and export plugins, or graphical user + interfaces. json: avisynth-linking-exception.json - yml: avisynth-linking-exception.yml + yaml: avisynth-linking-exception.yml html: avisynth-linking-exception.html - text: avisynth-linking-exception.LICENSE + license: avisynth-linking-exception.LICENSE - license_key: bacula-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-bacula-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + Last revision: 21 May 2017 + + Bacula is licensed under the GNU Affero General Public License, version + 3.0 as published by the Free Software Foundation, Inc. ("AGPLv3"). + + Additional Terms on the work licensed herein, pursuant to Section 7 of + Affero General Public License are as follows: + + 1. The name Bacula is a registered trademark of Kern Sibbald, and Kern + Sibbald hereby declines to grant a trademark license to "Bacula" + pursuant to AGPLv3, Section 7(e) without a separate agreement with Kern + Sibbald. + + 2. Pursuant to AGPLv3, Section 7(a), in addition to the warranty and + liability disclaimers already found in AGPLv3, the copyright holders + specifically disclaim any liability for accusations of patent + infringement by any third party. + + 3. Pursuant to AGPLv3, Section 7(b), the portions of the file AUTHORS that + are deemed to be specified reasonable legal notices and/or author + attributions shall be preserved in redistribution of source code and/or + modifications thereof. Furthermore, when the following notice appears in + a source code file, it must be preserved when source code is conveyed + and/or propagated: + + Bacula(R) - The Network Backup Solution + + Copyright (C) 2000-2017 Kern Sibbald + + The original author of Bacula is Kern Sibbald, with contributions + from many others, a complete list can be found in the file AUTHORS. + + You may use this file and others of this release according to the + license defined in the LICENSE file, which includes the Affero General + Public License, v3.0 ("AGPLv3") and some additional permissions and + terms pursuant to its AGPLv3 Section 7. + + This notice must be preserved when any source code is conveyed + and/or propagated. + + Bacula(R) is a registered trademark of Kern Sibbald. + + Additional Permissions on the work licensed herein, pursuant to Section 7 of + AGPLv3 are as follows: + + 1. As a special exception to the AGPLv3, the copyright holders give + permission to link the code of its release of Bacula with the OpenSSL + project's "OpenSSL" library (or with modified versions of it that use the + same license as the "OpenSSL" library), and distribute the linked + executables. You must follow the requirements of AGPLv3 in all respects + for all of the code used other than "OpenSSL". + + 2. As a special exception to the AGPLv3, the copyright holders give + permission to link the code of its release of the Bacula Win32 File daemon + with the Microsoft supplied Volume Shadow Copy (VSS) libraries and + distribute the linked executables. You must follow the requirements of + the AGPLv3 in all respects for all of the code used other than for the + Microsoft VSS code. + + If you want to fork Bacula, please read the file LICENSE-FAQ. json: bacula-exception.json - yml: bacula-exception.yml + yaml: bacula-exception.yml html: bacula-exception.html - text: bacula-exception.LICENSE + license: bacula-exception.LICENSE - license_key: baekmuk-fonts + category: Permissive spdx_license_key: Baekmuk other_spdx_license_keys: - LicenseRef-scancode-baekmuk-fonts is_exception: no is_deprecated: no - category: Permissive + text: | + Baekmuk Fonts License + + Copyright (c) Kim Jeong-Hwan All rights reserved. + + Permission to use, copy, modify and distribute this font is + hereby granted, provided that both the copyright notice and + this permission notice appear in all copies of the font, + derivative works or modified versions, and that the following + acknowledgement appear in supporting documentation: + Baekmuk Batang, Baekmuk Dotum, Baekmuk Gulim, and + Baekmuk Headline are registered trademarks owned by + Kim Jeong-Hwan. json: baekmuk-fonts.json - yml: baekmuk-fonts.yml + yaml: baekmuk-fonts.yml html: baekmuk-fonts.html - text: baekmuk-fonts.LICENSE + license: baekmuk-fonts.LICENSE - license_key: bahyph + category: Permissive spdx_license_key: Bahyph other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "COPYRIGHT NOTICE \n\nThese patterns and the generating sh script are Copyright (c)\ + \ GMV 1991 \n\nThese patterns were developed for internal GMV use and are made public in\ + \ the hope that they will benefit others. Also, spreading these patterns throughout the\ + \ Spanish-language TeX community is expected to provide back-benefits to GMV in that it\ + \ can help keeping GMV in the mainstream of spanish users. \n\nHowever, this is given for\ + \ free and WITHOUT ANY WARRANTY. Under no circumstances can Julio Sanchez, GMV, Jos'e A.\ + \ Ma~nas or any agents or representatives thereof be held responsible for any errors in\ + \ this software nor for any damages derived from its use, even in case any of the above\ + \ has been notified of the possibility of such damages. If any such situation arises, you\ + \ responsible for repair. Use of this software is an explicit acceptance of these conditions.\ + \ \n\nYou can use this software for any purpose. You cannot delete this copyright notice.\ + \ If you change this software, you must include comments explaining who, when and why. You\ + \ are kindly requested to send any changes to tex@gmv.es. If you change the generating script,\ + \ you must include code in it such that any output is clearly labeled as generated by a\ + \ modified script. Despite the lack of warranty, we would like to hear about any problem\ + \ you find. Please report problems to tex@gmv.es. \n\nEND OF COPYRIGHT NOTICE" json: bahyph.json - yml: bahyph.yml + yaml: bahyph.yml html: bahyph.html - text: bahyph.LICENSE + license: bahyph.LICENSE - license_key: bakoma-fonts-1995 + category: Permissive spdx_license_key: LicenseRef-scancode-bakoma-fonts-1995 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "\t\t\tBaKoMa Fonts Licence\n\t\t\t--------------------\n\n This licence covers two\ + \ font packs (known as BaKoMa Fonts Colelction,\n which is available at `CTAN:fonts/cm/ps-type1/bakoma/'):\n\ + \n 1) BaKoMa-CM (1.1/12-Nov-94)\n Computer Modern Fonts in PostScript Type 1 and\ + \ TrueType font formats.\n\n 2) BaKoMa-AMS (1.2/19-Jan-95)\n AMS TeX fonts in PostScript\ + \ Type 1 and TrueType font formats.\n \n Copyright (C) 1994, 1995, Basil K. Malyshev.\ + \ All Rights Reserved.\n\n Permission to copy and distribute these fonts for any purpose\ + \ is \n hereby granted without fee, provided that the above copyright notice, \n author\ + \ statement and this permission notice appear in all copies of \n these fonts and related\ + \ documentation.\n\n Permission to modify and distribute modified fonts for any purpose\ + \ is \n hereby granted without fee, provided that the copyright notice, \n author statement,\ + \ this permission notice and location of original \n fonts (http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma)\n\ + \ appear in all copies of modified fonts and related documentation.\n\n Permission to\ + \ use these fonts (embedding into PostScript, PDF, SVG\n and printing by using any software)\ + \ is hereby granted without fee. \n It is not required to provide any notices about using\ + \ these fonts.\n\n Basil K. Malyshev\n INSTITUTE FOR HIGH ENERGY PHYSICS\n IHEP, OMVT\n\ + \ Moscow Region\n 142281 PROTVINO\n RUSSIA\n\n E-Mail:\tbakoma@mail.ru\n or\tmalyshev@mail.ihep.ru" json: bakoma-fonts-1995.json - yml: bakoma-fonts-1995.yml + yaml: bakoma-fonts-1995.yml html: bakoma-fonts-1995.html - text: bakoma-fonts-1995.LICENSE + license: bakoma-fonts-1995.LICENSE - license_key: bapl-1.0 + category: Source-available spdx_license_key: LicenseRef-scancode-bapl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: "## Booz Allen Public License v1.0 \n\n\n### INTRODUCTION\nThe Booz Allen Public License\ + \ allows government, non-profit academic, other non-profit, and commercial entities access\ + \ to distinctive, disruptive, and robust code with the goal of Empowering People to Change\ + \ the World℠. Products licensed under the Booz Allen Public License are founded on\ + \ the basis that collective ingenuity can make the largest impact in the community. \n\n\ + ### DEFINITIONS\n* **Commercial Entity.** “Commercial Entity” means any individual or entity\ + \ other than a government, non-profit academic, or other non-profit entity.\n* **Derivative.**\ + \ “Derivative” means any work of authorship in Source Code or Object Code form that results\ + \ from an addition to, deletion from, or modification of the Source Code of the Product.\n\ + * **License.** “License” means this Booz Allen Public License.\n* **Object Code.** “Object\ + \ Code” means the form resulting from transformation or translation of Source Code into\ + \ machine readable code, including but not limited to, compiled object code.\n* **Originator.**\ + \ “Originator” means each individual or legal entity that creates, contributes to the creation\ + \ of, or owns the Product. \n* **Patent Claims.** “Patent Claims” means any patent claim(s)\ + \ in any patent to which Originator has a right to grant a license that would be infringed\ + \ by Your making, using, selling, offering for sale, having made, or importing of the Product,\ + \ but for the grant of this License. \n* **Product.** “Product” means the Source Code of\ + \ the software which the initial Originator made available under this License, and any Derivative\ + \ of such Source Code. \n* **Source Code.** “Source Code” means software in human-readable\ + \ form.\n* **You.** “You” means either an individual or an entity (if you are taking this\ + \ license on behalf of an entity) that exercises the rights granted under this License.\ + \ \n \n### LICENSE\n**Government/Non-Profit Academic/Other Non-Profit.** \nThis Section\ + \ applies if You are not a Commercial Entity. \n\n* **License.** Subject to the terms and\ + \ conditions of this License, each Originator hereby grants You a perpetual, worldwide,\ + \ non-exclusive, royalty-free license to reproduce, display, perform, modify, distribute\ + \ and otherwise use the Product and Derivatives, in Source Code and Object Code form, in\ + \ accordance with the terms and conditions of this License in order to support the general\ + \ public good and for your internal business purposes.\n* **Distribution.** You may distribute\ + \ to third parties copies of the Product, including any Derivative that You create, in Source\ + \ Code or Object Code form. If You distribute copies of the Product, including any Derivative\ + \ that You create, in Source Code form, such distribution must be under the terms of this\ + \ License and You must inform recipients of the Source Code that the Product is governed\ + \ under this License and how they can obtain a copy of this License. You may distribute\ + \ to third parties copies of the Product, including any Derivative that You create, in Object\ + \ Code form, or allow third parties to access or use the Product, including any Derivative\ + \ that You create, under a license of Your choice.\n* **Commercial Sales.** You may not\ + \ distribute, or allow third parties to access or use, the Product or any Derivative for\ + \ a fee, unless You first obtain permission from the Originator. If Booz Allen Hamilton\ + \ is the Originator, please contact Booz Allen Hamilton at . \n\n\ + **Commercial Entities**. \nThis Section applies if You are a Commercial Entity.\n\n* **License.**\ + \ Subject to the terms and conditions of this License, each Originator hereby grants You\ + \ a perpetual, worldwide, non-exclusive, royalty-free license to reproduce, display, perform,\ + \ modify, distribute and otherwise use the Product and Derivatives, in Source Code and Object\ + \ Code form, in accordance with the terms and conditions of this License for the sole purpose\ + \ of Your internal business purposes and the provision of services to government, non-profit\ + \ academic, and other non-profit entities. \n* **Distribution and Derivatives.** You may\ + \ distribute to third parties copies of the Product, including any Derivative that You create,\ + \ in Source Code or Object Code form. If You distribute copies of the Product, including\ + \ any Derivative that You create, in Source Code form, such distribution must be under the\ + \ terms of this License and You must inform recipients of the Source Code that the Product\ + \ is governed under this License and how they can obtain a copy of this License. You may\ + \ distribute to third parties copies of the Product, including any Derivative that You create,\ + \ in Object Code form, or allow third parties to access or use the Product, including any\ + \ Derivative that You create, under a license of Your choice, provided that You make available,\ + \ and inform the recipient of such distribution how they can obtain, a copy of the Source\ + \ Code thereof, at no charge, and inform the recipient of the Source Code that the Product\ + \ is governed under this License and how they can obtain a copy of this License.\n* **Commercial\ + \ Sales.** You may not distribute, or allow third parties to access or use, the Product\ + \ or any Derivative for a fee, unless You first obtain permission from the Originator. If\ + \ Booz Allen Hamilton, please contact Booz Allen Hamilton at . \n\n\ + \ \n**Patent Claim(s)**. \nThis Section applies regardless of whether You are a government,\ + \ non-profit academic, or other non-profit entity or a Commercial Entity. \n\n* **Patent\ + \ License.** Subject to the limitations in the Sections above, each Originator hereby grants\ + \ You a perpetual, worldwide, non-exclusive, royalty-free license under Patent Claims of\ + \ such Originator to make, use, sell, offer for sale, have made, and import the Product.\ + \ The foregoing patent license does not apply (a) to any code that an Originator has removed\ + \ from the Product, or (b) for infringement caused by Your modifications of the Product\ + \ or the combination of any Derivative created by You or on Your behalf with other software.\ + \ \n\n### GENERAL TERMS \nThis Section applies regardless of whether You are a government,\ + \ non-profit academic, or other non-profit entity or a Commercial Entity.\n\n* **Required\ + \ Notices.** If You distribute the Product or a Derivative, in Object Code or Source Code\ + \ form, You shall not remove or otherwise modify any proprietary markings or notices contained\ + \ within or placed upon the Product or any Derivative. Any distribution of the Product or\ + \ a Derivative, in Object Code or Source Code form, shall contain a clear and conspicuous\ + \ Originator copyright and license reference in accordance with the below:\n\t* *Unmodified\ + \ Product Notice*: “This software package is licensed under the Booz Allen Public License.\ + \ Copyright © 20__ [Copyright Holder Name]. All Rights Reserved.”\n\t* *Derivative Notice*:\ + \ “This software package is licensed under the Booz Allen Public License. Portions of this\ + \ code are Copyright © 20__ [Copyright Holder Name]. All Rights Reserved.”\n* **Compliance\ + \ with Laws.** You agree that You shall not reproduce, display, perform, modify, distribute\ + \ and otherwise use the Product in any way that violates applicable law or regulation or\ + \ infringes or violates the rights of others, including, but not limited to, third party\ + \ intellectual property, privacy, and publicity rights.\n* **Disclaimer.** You understand\ + \ that the Product is licensed to You, and not sold. The Product is provided on an “As Is”\ + \ basis, without any warranties, representations, and guarantees, whether oral or written,\ + \ express, implied or statutory, with regard to the Product, including without limitation,\ + \ warranties of merchantability, fitness for a particular purpose, title, non-infringement,\ + \ non-interference, and warranties arising from course of dealing or usage of trade, to\ + \ the maximum extent permitted by applicable law. Originator does not warrant that (i)\ + \ the Product will meet your needs; (ii) the Product will be error-free or accessible at\ + \ all times; or (iii) the use or the results of the use of the Product will be correct,\ + \ accurate, timely, or otherwise reliable. You acknowledge that the Product has not been\ + \ prepared to meet Your individual requirements, whether or not such requirements have been\ + \ communicated to Originator. You assume all responsibility for use of the Product.\n* **Limitation\ + \ of Liability.** Under no circumstances and under no legal theory, whether tort (including\ + \ negligence), contract, or otherwise, shall any Originator, or anyone who distributes the\ + \ Product in accordance with this License, be liable to You for any direct, indirect, special,\ + \ incidental, or consequential damages of any character including, without limitation, damages\ + \ for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or\ + \ any and all other commercial damages or losses, even if informed of the possibility of\ + \ such damages.\n* **Export Control.** The Product is subject to U.S. export control laws\ + \ and may be subject to export or import regulations in other countries. You agree to strictly\ + \ comply with all such laws and regulations and acknowledges that You are responsible for\ + \ obtaining such licenses to export, re-export, or import as may be required.\n* **Severability.**\ + \ If the application of any provision of this License to any particular facts or circumstances\ + \ shall be held to be invalid or unenforceable, then the validity and enforceability of\ + \ other provisions of this License shall not in any way be affected or impaired thereby." json: bapl-1.0.json - yml: bapl-1.0.yml + yaml: bapl-1.0.yml html: bapl-1.0.html - text: bapl-1.0.LICENSE + license: bapl-1.0.LICENSE - license_key: barr-tex + category: Permissive spdx_license_key: Barr other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This is a package of commutative diagram macros built on top of Xy-pic by + Michael Barr (email: barr@barrs.org). Its use is unrestricted. It may be freely + distributed, unchanged, for non-commercial or commercial use. If changed, it + must be renamed. Inclusion in a commercial software package is also permitted, + but I would appreciate receiving a free copy for my personal examination and + use. There are no guarantees that this package is good for anything. I have + tested it with LaTeX 2e, LaTeX 2.09 and Plain TeX. Although I know of no reason + it will not work with AMSTeX, I have not tested it. json: barr-tex.json - yml: barr-tex.yml + yaml: barr-tex.yml html: barr-tex.html - text: barr-tex.LICENSE + license: barr-tex.LICENSE - license_key: bash-exception-gpl + category: Copyleft spdx_license_key: LicenseRef-scancode-bash-exception-gpl-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: | + The Free Software Foundation has exempted Bash from the requirement of + Paragraph 2c of the General Public License. This is to say, there is + no requirement for Bash to print a notice when it is started + interactively in the usual way. We made this exception because users + and standards expect shells not to print such messages. This + exception applies to any program that serves as a shell and that is + based primarily on Bash as opposed to other GNU software. json: bash-exception-gpl.json - yml: bash-exception-gpl.yml + yaml: bash-exception-gpl.yml html: bash-exception-gpl.html - text: bash-exception-gpl.LICENSE + license: bash-exception-gpl.LICENSE - license_key: bea-2.1 + category: Permissive spdx_license_key: LicenseRef-scancode-bea-2.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "BEA Public License Version 2.1\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\ + \n1. \tDefinitions.\n\n\"License\" shall mean the terms and conditions of this agreement.\n\ + \n\"Licensor\" shall mean BEA Systems, Inc.\n\n\"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. \n\n\"You\" (or\ + \ \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this\ + \ License, including but not limited to each Contributor other than Licensor in such Contributor's\ + \ role as a licensee for the Software.\n\n\"Source Format\" shall mean the preferred form\ + \ for making modifications, including but not limited to software source code, documentation\ + \ source, and configuration files.\n\n\"Object Format\" shall mean any form resulting from\ + \ mechanical transformation or translation of a Source Format, including but not limited\ + \ to compiled object code, generated documentation, and conversions to other media types.\n\ + \n\"Software\" shall mean the original version of the software accompanying this agreement\ + \ as released by BEA, including in Source or Object Format, and also any documentation provided\ + \ therewith.\n\n\"Derivative Works\" shall mean any work, whether in Source or Object Format,\ + \ that is based on (or derived from) the Software 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\ + \ Software and derivative works\nthereof.\n\n\"Contribution\" shall mean any work of authorship,\ + \ including the original version of the Software and any modifications or additions to that\ + \ Software or Derivative Works thereof, that is intentionally submitted to Licensor for\ + \ inclusion in the Software 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 Software, but\ + \ excluding communication that is conspicuously marked or otherwise designated in writing\ + \ by the copyright owner as \"Not a Contribution.\"\n\n\"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 Software.\n\n2. \tGrant 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 Software and such Derivative Works in Source or\ + \ Object Format. Each Contributor represents that to its knowledge it has sufficient copyright\ + \ rights in its Contribution, if any, to grant the foregoing copyright license.\n\n3. \t\ + Grant of Patent License. \tSubject 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 Software, 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 Software 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 Software\ + \ or a Contribution incorporated within the Software constitutes direct or contributory\ + \ patent infringement, then any patent licenses granted to You under this License for that\ + \ Software shall terminate as of the date such litigation is filed. \n\n4. \tRedistribution.\ + \ You may reproduce and distribute copies of the Software or Derivative Works thereof in\ + \ any medium, with or without modifications, and in Source or Object Format, provided that\ + \ You meet the following conditions: \n\n (a) \tYou must give any other recipients of\ + \ the Software or Derivative Works a copy of this License; and\n\n (b) \tYou must cause\ + \ any modified files to carry prominent notices stating that You changed the files; and\n\ + \n(c) \tYou must retain, in the Source Format of any Derivative Works that You distribute,\ + \ BEA's copyright notice, © [Date] BEA Systems, Inc. All rights Reserved. and all other\ + \ copyright, patent, trademark, and attribution notices from the Source Format of the Software,\ + \ excluding those notices that do not pertain to any part of the Derivative Works; and \n\ + \n(d)\tYou must affix to the Software or any Derivative Works in a prominent manner BEA's\ + \ copyright notice, © [Date] BEA Systems, Inc. All rights Reserved whenever You distribute\ + \ the Software or such Derivative Works in Object Format.\n\nYou 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 Software otherwise complies with the conditions stated in this License.\n\n5. \tSubmission\ + \ of Contributions. Unless You explicitly state otherwise, any Contribution intentionally\ + \ submitted for inclusion in the Software 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.\n\n6. \tTrademarks.\ + \ 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 Software and reproducing the content of the NOTICE file.\n\ + \n7. \tDisclaimer of Warranty. EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE SOFTWARE\ + \ IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND,\ + \ EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF TITLE, NON-INFRINGEMENT,\ + \ MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining\ + \ the appropriateness of using and distributing the Software and assume all risks associated\ + \ with Your exercise of rights under this Agreement, including but not limited to the risks\ + \ and costs of program errors, compliance with applicable laws, damage to or loss of data,\ + \ programs or equipment, and unavailability or interruption of operations. Further, You\ + \ understand that although each Contributor grants the licenses to its Contributions set\ + \ forth herein, no assurances are provided by any Contributor that its Contribution does\ + \ not infringe the patent or other intellectual property rights of any other entity. Each\ + \ Contributor disclaims any liability to You for claims brought by any other entity based\ + \ on infringement of intellectual property rights or otherwise. As a condition to exercising\ + \ the rights and licenses granted hereunder, You hereby assume sole responsibility to secure\ + \ any other intellectual property rights needed, if any.\n\n8. \tLimitation of Liability.\ + \ EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NO CONTRIBUTOR SHALL HAVE ANY LIABILITY\ + \ TO YOU FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\ + \ (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE SOFTWARE OR THE EXERCISE OF ANY RIGHTS\ + \ GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n9. \tAccepting\ + \ Warranty or Additional Liability. Commercial distributors of software may accept certain\ + \ responsibilities with respect to end users, business partners and the like. While this\ + \ license is intended to facilitate the commercial use of the Software, if You include the\ + \ Software in a commercial product offering, You may do so only in a manner which does not\ + \ create potential liability for any Contributor. Therefore, if You include the Software\ + \ in a commercial product offering, You shall and hereby do agree to defend and indemnify\ + \ each and every Contributor against any losses, damages and costs (collectively \"Losses\"\ + ) arising from claims, lawsuits and other legal actions brought by a third party against\ + \ such Contributor(s) to the extent caused by Your acts or omissions in connection with\ + \ Your distribution of the Software in a commercial product offering. The obligations in\ + \ this section do not apply to any claims or Losses relating to any actual or alleged intellectual\ + \ property infringement. In order to qualify to receive indemnification from You, a Contributor\ + \ must: a) promptly notify You in writing of such claim, and b) allow the You to control,\ + \ and cooperate with the You in, the defense and any related settlement negotiations. The\ + \ Contributor indemnified by You may participate in any such claim at its own expense." json: bea-2.1.json - yml: bea-2.1.yml + yaml: bea-2.1.yml html: bea-2.1.html - text: bea-2.1.LICENSE + license: bea-2.1.LICENSE - license_key: beal-screamer + category: Permissive spdx_license_key: LicenseRef-scancode-beal-screamer other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + License + by "Beal Screamer" + + -----BEGIN PGP SIGNED MESSAGE----- + A license???? For anonymously published software? Yes! The purpose here is to outline how I would like the software used. Putting together all this has been a lot of work, and I hope people can respect the purpose behind the software, as spelled out here. + + The purpose of this software is to re-assert your rights over fair use of audio files that you have legally purchased or otherwise obtained legally. Please use it for that purpose only. Do not use it to unprotect files you don't have a legal right to, or to unprotect legal files for the purpose of re-distributing them to others who do not have a legal right to the content. In other words, in use of this software obey traditional copyright laws -- but the DMCA may be completely ignored as far as this license concerned (although you must accept responsibility for ignoring this law, since it is enforceable). + + This is free software, without any warranties, guarantees, or any assurance that it will work as described. It relies on certain other software (from Microsoft) operating as it currently does, so I don't take any responsibility for what happens if Microsoft updates their software to render this useless, or even if they put bombs in their new software to erase all your files if they detect this software. But I sure hope they wouldn't do that. + + -----BEGIN PGP SIGNATURE----- + Version: 2.6.2 + + iQCVAwUBO5qtlZCr1f2GXCalAQHLNAP+IU9J5wnZPihRsRGqkqK01cWAHPfrmwfx + pyEelwSpOf2Vd+kPTg3oViscg7PNr2jS92yDS8X8manr6qZmJE2zZ+r4G5o8SmBp + zLQiQHXsIuy4Looy9NxNe0REhDT0yg141Kvd+Sbpx2iv7A6H1aelxC4G1JkHU4Rq + hFobp8IvAC0= + =cO5z + -----END PGP SIGNATURE----- json: beal-screamer.json - yml: beal-screamer.yml + yaml: beal-screamer.yml html: beal-screamer.html - text: beal-screamer.LICENSE + license: beal-screamer.LICENSE - license_key: beerware + category: Permissive spdx_license_key: Beerware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + "THE BEER-WARE LICENSE" (Revision 42): + wrote this file. As long as you retain this notice you + can do whatever you want with this stuff. If we meet some day, and you think + this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp json: beerware.json - yml: beerware.yml + yaml: beerware.yml html: beerware.html - text: beerware.LICENSE + license: beerware.LICENSE +- license_key: beri-hw-sw-1.0 + category: Permissive + spdx_license_key: LicenseRef-scancode-beri-hw-sw-1.0 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: "BERI HARDWARE-SOFTWARE LICENSE v1.0\n\n This license is based closely on the Apache\ + \ License Version 2.0, but is\n not approved or endorsed by the Apache Foundation. Changes\ + \ primarily\n relate to broadening the set of rights covered by the license from simple\n\ + \ copyright to other hardware-related rights such as board layouts and CAD\n files.\ + \ A copy of the non-modified Apache License 2.0 can be found at\n http://www.apache.org/licenses/LICENSE-2.0\n\ + \ \n As this license is not currently OSI or FSF approved, the Licensor\n permits\ + \ any Work licensed under this License, at the option of the\n Licensee, to be treated\ + \ as licensed under the Apache License Version 2.0\n (which is so approved).\n \n \ + \ This License is licensed under the terms of this License and in\n particular clause\ + \ 7 below (Disclaimer of Warranties) applies in relation\n to its use.\n \n \n TERMS\ + \ AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \ + \ \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution\ + \ as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean\ + \ the Rights owner or entity authorized by\n the Rights owner that is granting the\ + \ License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n\ + \ other entities that control, are controlled by, or are under common\n control\ + \ with that entity. For the purposes of this definition,\n \"control\" means (i) the\ + \ power, direct or indirect, to cause the\n direction or management of such entity,\ + \ whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more\ + \ of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \ + \ \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions\ + \ granted by this License.\n\n \"Rights\" means copyright and any similar right including\ + \ design right\n (whether registered or unregistered), semiconductor topography (mask)\n\ + \ rights and database rights (but excluding Patents and Trademarks).\n \n \ + \ \"Source\" form shall mean the preferred form for making modifications,\n including\ + \ but not limited to source code, net lists, board layouts,\n CAD files, documentation\ + \ source, and configuration files.\n\n \"Object\" form shall mean any form resulting\ + \ from mechanical\n transformation or translation of a Source form, including but not\n\ + \ limited to compiled object code, generated documentation, the\n instantiation\ + \ of a hardware design and conversions to other media\n types, including intermediate\ + \ forms such as bytecodes, FPGA\n bitstreams, artwork and semiconductor topographies\ + \ (mask works).\n\n \"Work\" shall mean the work of authorship, whether in Source form\ + \ or\n other Object form, made available under the License, as indicated by a\n \ + \ Rights notice that is included in or attached to the work (an example\n is provided\ + \ in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in\ + \ Source or Object\n form, that is based on (or derived from) the Work and for which\ + \ the\n editorial revisions, annotations, elaborations, or other modifications\n \ + \ represent, as a whole, an original work of authorship. For the\n purposes of\ + \ this License, Derivative Works shall not include works\n that remain separable from,\ + \ or merely link (or bind by name) or\n physically connect to or interoperate with\ + \ the interfaces of, the Work\n and Derivative Works thereof.\n\n \"Contribution\"\ + \ shall mean any design or work of authorship, including\n the original version of\ + \ the Work and any modifications or additions\n to that Work or Derivative Works thereof,\ + \ that is intentionally\n submitted to Licensor for inclusion in the Work by the Rights\ + \ owner\n or by an individual or Legal Entity authorized to submit on behalf of\n \ + \ the Rights owner. For the purposes of this definition, \"submitted\"\n means\ + \ any form of electronic, verbal, or written communication sent\n to the Licensor or\ + \ its representatives, including but not limited to\n communication on electronic mailing\ + \ lists, source code control systems,\n and issue tracking systems that are managed\ + \ by, or on behalf of, the\n Licensor for the purpose of discussing and improving the\ + \ Work, but\n excluding communication that is conspicuously marked or otherwise\n \ + \ designated in writing by the Rights owner as \"Not a Contribution.\"\n\n \"Contributor\"\ + \ shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution\ + \ has been received by Licensor and\n subsequently incorporated within the Work.\n\n\ + \ 2. Grant of License. Subject to the terms and conditions of this License,\n each\ + \ Contributor hereby grants to You a perpetual, worldwide,\n non-exclusive, no-charge,\ + \ royalty-free, irrevocable license under the\n Rights to reproduce, prepare Derivative\ + \ Works of, publicly display,\n publicly perform, sublicense, and distribute the Work\ + \ and such\n Derivative Works in Source or Object form and do anything in relation\n\ + \ to the Work as if the Rights did not exist.\n\n 3. Grant of Patent License. Subject\ + \ to the terms and conditions of\n this License, each Contributor hereby grants to\ + \ You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n\ + \ (except as stated in this section) patent license to make, have made,\n use,\ + \ offer to sell, sell, import, and otherwise transfer the Work,\n where such license\ + \ applies only to those patent claims licensable\n by such Contributor that are necessarily\ + \ infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n\ + \ with the Work to which such Contribution(s) was submitted. If You\n institute\ + \ patent litigation against any entity (including a\n cross-claim or counterclaim in\ + \ a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work\ + \ constitutes direct\n or contributory patent infringement, then any patent licenses\n\ + \ granted to You under this License for that Work shall terminate\n as of the\ + \ date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute\ + \ copies of the\n Work or Derivative Works thereof in any medium, with or without\n\ + \ modifications, and in Source or Object form, provided that You\n meet the following\ + \ conditions:\n\n (a) You must give any other recipients of the Work or\n \ + \ Derivative Works a copy of this License; and\n\n (b) You must cause any modified\ + \ files to carry prominent notices\n stating that You changed the files; and\n\n\ + \ (c) You must retain, in the Source form of any Derivative Works\n that You\ + \ distribute, all copyright, patent, trademark, and\n attribution notices from\ + \ the Source form of the Work,\n excluding those notices that do not pertain to\ + \ any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"\ + NOTICE\" text file as part of its\n distribution, then any Derivative Works that\ + \ You distribute must\n include a readable copy of the attribution notices contained\n\ + \ within such NOTICE file, excluding those notices that do not\n pertain\ + \ to any part of the Derivative Works, in at least one\n of the following places:\ + \ within a NOTICE text file distributed\n as part of the Derivative Works; within\ + \ the Source form or\n documentation, if provided along with the Derivative Works;\ + \ or,\n within a display generated by the Derivative Works, if and\n wherever\ + \ such third-party notices normally appear. The contents\n of the NOTICE file are\ + \ for informational purposes only and\n do not modify the License. You may add\ + \ Your own attribution\n notices within Derivative Works that You distribute, alongside\n\ + \ or as an addendum to the NOTICE text from the Work, provided\n that\ + \ such additional attribution notices cannot be construed\n as modifying the License.\n\ + \n You may add Your own copyright statement to Your modifications and\n may provide\ + \ additional or different license terms and conditions\n for use, reproduction, or\ + \ distribution of Your modifications, or\n for any such Derivative Works as a whole,\ + \ provided Your use,\n reproduction, and distribution of the Work otherwise complies\ + \ with\n the conditions stated in this License.\n\n 5. Submission of Contributions.\ + \ Unless You explicitly state otherwise,\n any Contribution intentionally submitted\ + \ for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions\ + \ of\n this License, without any additional terms or conditions.\n Notwithstanding\ + \ the above, nothing herein shall supersede or modify\n the terms of any separate license\ + \ agreement you may have executed\n with Licensor regarding such Contributions.\n\n\ + \ 6. Trademarks. This License does not grant permission to use the trade\n names,\ + \ trademarks, service marks, or product names of the Licensor,\n except as required\ + \ for reasonable and customary use in describing the\n origin of the Work and reproducing\ + \ the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable\ + \ law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor\ + \ provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS\ + \ OF ANY KIND, either express or\n implied, including, without limitation, any warranties\ + \ or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n \ + \ PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness\ + \ of using or redistributing the Work and assume any\n risks associated with Your exercise\ + \ of permissions under this License.\n\n 8. Limitation of Liability. In no event and under\ + \ no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n\ + \ unless required by applicable law (such as deliberate and grossly\n negligent\ + \ acts) or agreed to in writing, shall any Contributor be\n liable to You for damages,\ + \ including any direct, indirect, special,\n incidental, or consequential damages of\ + \ any character arising as a\n result of this License or out of the use or inability\ + \ to use the\n Work (including but not limited to damages for loss of goodwill,\n \ + \ work stoppage, computer failure or malfunction, or any and all\n other commercial\ + \ damages or losses), even if such Contributor\n has been advised of the possibility\ + \ of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n\ + \ the Work or Derivative Works thereof, You may choose to offer,\n and charge\ + \ a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations\ + \ and/or rights consistent with this\n License. However, in accepting such obligations,\ + \ You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n\ + \ of any other Contributor, and only if You agree to indemnify,\n defend, and\ + \ hold each Contributor harmless for any liability\n incurred by, or claims asserted\ + \ against, such Contributor by reason\n of your accepting any such warranty or additional\ + \ liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply this license\ + \ to your work.\n\n To apply this license to your work, attach the following\n \ + \ boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with\ + \ your own identifying information. (Don't include\n the brackets!) The text should\ + \ be enclosed in the appropriate\n comment syntax for the file format. We also recommend\ + \ that a\n file or class name and description of purpose be included on the\n \ + \ same \"printed page\" as the copyright notice for easier\n identification within\ + \ third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Copyright\ + \ and related rights are licensed under the BERI Hardware-Software\n License, Version\ + \ 1.0 (the \"License\"); you may not use this file except\n in compliance with the License.\ + \ You may obtain a copy of the License at:\n\n http://www.beri-open-systems.org/legal/license-1-0.txt\n\ + \n Unless required by applicable law or agreed to in writing, software,\n hardware and\ + \ materials distributed under this License is distributed on\n an \"AS IS\" BASIS, WITHOUT\ + \ WARRANTIES OR CONDITIONS OF ANY KIND, either\n express or implied. See the License\ + \ for the specific language governing\n permissions and limitations under the License." + json: beri-hw-sw-1.0.json + yaml: beri-hw-sw-1.0.yml + html: beri-hw-sw-1.0.html + license: beri-hw-sw-1.0.LICENSE - license_key: bigdigits + category: Permissive spdx_license_key: LicenseRef-scancode-bigdigits other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "BigDigits License \n\nThis source code is part of the BIGDIGITS multiple-precision\ + \ arithmetic\nlibrary Version 2.3 originally written by David Ireland, copyright (c)\n2001-11\ + \ D.I. Management Services Pty Limited, all rights reserved.\n\nYou are permitted to use\ + \ compiled versions of this code at no charge as\npart of your own executable files and\ + \ to distribute unlimited copies of\nsuch executable files for any purposes including commercial\ + \ ones\nprovided you agree to these terms and conditions and keep the copyright\nnotices\ + \ intact in the source code and you ensure that the following\ncharacters remain in any\ + \ object or executable files you distribute AND\nclearly in any accompanying documentation:\n\ + \n\"Contains BIGDIGITS multiple-precision arithmetic code originally\nwritten by David Ireland,\ + \ copyright (c) 2001-11 by D.I. Management\nServices Pty Limited , and\ + \ is used with permission.\"\n\nDavid Ireland and DI Management Services Pty Limited make\ + \ no\nrepresentations concerning either the merchantability of this software\nor the suitability\ + \ of this software for any particular purpose. It is\nprovided \"as is\" without express\ + \ or implied warranty of any kind. Our\nliability will be limited exclusively to the refund\ + \ of the money you\npaid us for the software, namely nothing. By using the software you\n\ + expressly agree to such a waiver. If you do not agree to the terms, do\nnot use the software.\n\ + \nPlease forward any comments and bug reports to . The\nlatest version\ + \ of the source code can be downloaded from \n.\n\nLast\ + \ updated: 11 November 2011." json: bigdigits.json - yml: bigdigits.yml + yaml: bigdigits.yml html: bigdigits.html - text: bigdigits.LICENSE + license: bigdigits.LICENSE - license_key: bigelow-holmes + category: Permissive spdx_license_key: LicenseRef-scancode-bigelow-holmes other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This is the LEGAL NOTICE pertaining to the Lucida fonts from Bigelow & Holmes:\n\n\t\ + NOTICE TO USER: The source code, including the glyphs or icons \n\tforming a par of the\ + \ OPEN LOOK TM Graphic User Interface, on this \n\ttape and in these files is copyrighted\ + \ under U.S. and international\n\tlaws. Sun Microsystems, Inc. of Mountain View, California\ + \ owns\n\tthe copyright and has design patents pending on many of the icons. \n\tAT&T is\ + \ the owner of the OPEN LOOK trademark associated with the\n\tmaterials on this tape. Users\ + \ and possessors of this source code \n\tare hereby granted a nonexclusive, royalty-free\ + \ copyright and \n\tdesign patent license to use this code in individual and \n\tcommercial\ + \ software. A royalty-free, nonexclusive trademark\n\tlicense to refer to the code and output\ + \ as \"OPEN LOOK\" compatible \n\tis available from AT&T if, and only if, the appearance\ + \ of the \n\ticons or glyphs is not changed in any manner except as absolutely\n\tnecessary\ + \ to accommodate the standard resolution of the screen or\n\tother output device, the code\ + \ and output is not changed except as \n\tauthorized herein, and the code and output is\ + \ validated by AT&T. \n\tBigelow & Holmes is the owner of the Lucida (R) trademark for the\n\ + \tfonts and bit-mapped images associated with the materials on this \n\ttape. Users are\ + \ granted a royalty-free, nonexclusive license to use\n\tthe trademark only to identify\ + \ the fonts and bit-mapped images if, \n\tand only if, the fonts and bit-mapped images are\ + \ not modified in any\n\tway by the user. \n\n\tAny use of this source code must include,\ + \ in the user documentation \n\tand internal comments to the code, notices to the end user\ + \ as \n\tfollows:\n\n\t(c) Copyright 1989 Sun Microsystems, Inc. Sun design patents\n\t\ + pending in the U.S. and foreign countries. OPEN LOOK is a \n\ttrademark of AT&T. Used by\ + \ written permission of the owners.\n\n \t(c) Copyright Bigelow & Holmes 1986, 1985. Lucida\ + \ is a registered \n\ttrademark of Bigelow & Holmes. Permission to use the Lucida \n\ttrademark\ + \ is hereby granted only in association with the images \n\tand fonts described in this\ + \ file.\n\n\tSUN MICROSYSTEMS, INC., AT&T, AND BIGELOW & HOLMES \n\tMAKE NO REPRESENTATIONS\ + \ ABOUT THE SUITABILITY OF\n \tTHIS SOURCE CODE FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\"\ + \ \n\tWITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND. \n\tSUN MICROSYSTEMS, INC., AT&T\ + \ AND BIGELOW & HOLMES, \n\tSEVERALLY AND INDIVIDUALLY, DISCLAIM ALL WARRANTIES \n\tWITH\ + \ REGARD TO THIS SOURCE CODE, INCLUDING ALL IMPLIED\n\tWARRANTIES OF MERCHANTABILITY AND\ + \ FITNESS FOR A\n\tPARTICULAR PURPOSE. IN NO EVENT SHALL SUN MICROSYSTEMS,\n\tINC., AT&T\ + \ OR BIGELOW & HOLMES BE LIABLE FOR ANY\n\tSPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\ + \ DAMAGES,\n\tOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA \t\n\tOR PROFITS,\ + \ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\n\tOR OTHER TORTIOUS ACTION, ARISING OUT\ + \ OF OR IN CONNECTION\n\tWITH THE USE OR PERFORMANCE OF THIS SOURCE CODE." json: bigelow-holmes.json - yml: bigelow-holmes.yml + yaml: bigelow-holmes.yml html: bigelow-holmes.html - text: bigelow-holmes.LICENSE + license: bigelow-holmes.LICENSE +- license_key: bigscience-rail-1.0 + category: Proprietary Free + spdx_license_key: LicenseRef-scancode-bigscience-rail-1.0 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: "BigScience RAIL License v1.0\ndated May 19, 2022\n\nThis is a license (the “License”)\ + \ between you (“You”) and the participants of BigScience (“Licensor”). Whereas the Apache\ + \ 2.0 license was applicable to resources used to develop the Model, the licensing conditions\ + \ have been modified for the access and distribution of the Model. This has been done to\ + \ further BigScience’s aims of promoting not just open-access to its artifacts, but also\ + \ a responsible use of these artifacts. Therefore, this Responsible AI License (RAIL)[1]\ + \ aims at having an open and permissive character while striving for responsible use of\ + \ the Model.\n\n\n Section\ + \ I: PREAMBLE\n\n\nBigScience is a collaborative open innovation project aimed at the\ + \ responsible development and use of large multilingual datasets and Large Language Models\ + \ (“LLM”), as well as, the documentation of best practices and tools stemming from this\ + \ collaborative effort. Further, BigScience participants wish to promote collaboration and\ + \ sharing of research artifacts - including the Model - for the benefit of society, pursuant\ + \ to this License.\n\n\nThe development and use of LLMs, and broadly artificial intelligence\ + \ (“AI”), does not come without concerns. The world has witnessed how just a few companies/institutions\ + \ are able to develop LLMs, and moreover, how Natural Language Processing techniques might,\ + \ in some instances, become a risk for the public in general. Concerns might come in many\ + \ forms, from racial discrimination to the treatment of sensitive information. \n\n\nBigScience\ + \ believes in the intersection between open and responsible AI development, thus, this License\ + \ aims to strike a balance between both in order to enable responsible open-science for\ + \ large language models and future NLP techniques. \nThis License governs the use of the\ + \ BigScience BLOOM models (and their derivatives) and is informed by both the BigScience\ + \ Ethical Charter and the model cards associated with the BigScience BLOOM models. BigScience\ + \ has set forth its Ethical Charter representing the values of its community. Although\ + \ the BigScience community does not aim to impose its values on potential users of this\ + \ Model, it is determined to take tangible steps towards protecting the community from inappropriate\ + \ uses of the work being developed by BigScience.\nFurthermore, the model cards for the\ + \ BigScience BLOOM models will inform the user about the limitations of the Model, and thus\ + \ serves as the basis of some of the use-based restrictions in this License (See Part II).\n\ + \nNOW THEREFORE, You and Licensor agree as follows:\n\n1. Definitions \n\n\n1. \"License\"\ + \ shall mean the terms and conditions for use, reproduction, and Distribution as defined\ + \ in this document.\n2. “Data” means a collection of texts extracted from the BigScience\ + \ Corpus used with the Model, including to train, pretrain, or otherwise evaluate the Model.\ + \ The Data is not licensed under this License. The BigScience Corpus is a collection of\ + \ existing sources of language data documented on the BigScience website.\n3. “Output” means\ + \ the results of operating a Model as embodied in informational content resulting therefrom.\n\ + 4. “Model” means any accompanying machine-learning based assemblies (including checkpoints),\ + \ consisting of learnt weights, parameters (including optimizer states), corresponding to\ + \ the BigScience BLOOM model architecture as embodied in the Complementary Material, that\ + \ have been trained or tuned, in whole or in part, on the Data using the Complementary Material.\ + \ \n5. “Derivatives of the Model” means all modifications to the Model, works based on the\ + \ Model, or any other model which is created or initialized by transfer of patterns of the\ + \ weights, parameters, activations or output of the Model, to the other model, in order\ + \ to cause the other model to perform similarly to the Model, including - but not limited\ + \ to - distillation methods entailing the use of intermediate data representations or methods\ + \ based on the generation of synthetic data by the Model for training the other model.\n\ + 6. “Complementary Material” shall mean the accompanying source code and scripts used to\ + \ define, run, load, benchmark or evaluate the Model, and used to prepare data for training\ + \ or evaluation. This includes any accompanying documentation, tutorials, examples etc.\n\ + 7. “Distribution” means any transmission, reproduction, publication or other sharing of\ + \ the Model or Derivatives of the Model to a third party, including providing the Model\ + \ as a hosted service made available by electronic or other remote means - e.g. API-based\ + \ or web access. \n8. “Licensor” means the copyright owner or entity authorized by the copyright\ + \ owner that is granting the License, including the persons or entities that may have rights\ + \ in the Model and/or distributing the Model.\n9. \"You\" (or \"Your\") shall mean an individual\ + \ or Legal Entity exercising permissions granted by this License and/or making use of the\ + \ Model for whichever purpose and in any field of use, including usage of the Model in an\ + \ end-use application - e.g. chatbot, translator.\n10. “Third Parties” means individuals\ + \ or legal entities that are not under common control with Licensor or You.\n11. \"Contribution\"\ + \ shall mean any work of authorship, including the original version of the Model and any\ + \ modifications or additions to that Model or Derivatives of the Model thereof, that is\ + \ intentionally submitted to Licensor for inclusion in the Model 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 Model, but excluding communication that is conspicuously\ + \ marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\ + \ \n12. \"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 Model.\n\n\n Section II: INTELLECTUAL\ + \ PROPERTY RIGHTS\nBoth copyright and patent grants apply to the Model, Derivatives of the\ + \ Model and Complementary Material. The Model and Derivatives of the Model are subject to\ + \ additional terms as described in Section III.\n2. 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, publicly display, publicly perform, sublicense, and distribute the Complementary\ + \ Material, the Model, and Derivatives of the Model.\n3. 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\ + \ paragraph) patent license to make, have made, use, offer to sell, sell, import, and otherwise\ + \ transfer the Model and the Complementary Material, 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 Model 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 Model and/or\ + \ Complementary Material or a Contribution incorporated within the Model and/or Complementary\ + \ Material constitutes direct or contributory patent infringement, then any patent licenses\ + \ granted to You under this License for the Model and/or Work shall terminate as of the\ + \ date such litigation is filed.\n\n\nSection III: CONDITIONS OF USAGE, DISTRIBUTION AND\ + \ REDISTRIBUTION\n\n\n4. Distribution and Redistribution. You may host for Third Party remote\ + \ access purposes (e.g. software-as-a-service), reproduce and distribute copies of the Model\ + \ or Derivatives of the Model thereof in any medium, with or without modifications, provided\ + \ that You meet the following conditions:\n1. Use-based restrictions as referenced in paragraph\ + \ 5 MUST be included as an enforceable provision by You in any type of legal agreement (e.g.\ + \ a license) governing the use and/or distribution of the Model or Derivatives of the Model,\ + \ and You shall give notice to subsequent users You Distribute to, that the Model or Derivatives\ + \ of the Model are subject to paragraph 5. This provision does not apply to the use of Complementary\ + \ Material.\n2. You must give any Third Party recipients of the Model or Derivatives of\ + \ the Model a copy of this License; \n3. You must cause any modified files to carry prominent\ + \ notices stating that You changed the files; \n4. You must retain all copyright, patent,\ + \ trademark, and attribution notices excluding those notices that do not pertain to any\ + \ part of the Model, Derivatives of the Model.\nYou may add Your own copyright statement\ + \ to Your modifications and may provide additional or different license terms and conditions\ + \ - respecting paragraph 4.a. - for use, reproduction, or Distribution of Your modifications,\ + \ or for any such Derivatives of the Model as a whole, provided Your use, reproduction,\ + \ and Distribution of the Model otherwise complies with the conditions stated in this License.\n\ + 5. Use-based restrictions. The restrictions set forth in Attachment A are considered Use-based\ + \ restrictions. Therefore You cannot use the Model and the Derivatives of the Model for\ + \ the specified restricted uses. You may use the Model subject to this License, including\ + \ only for lawful purposes and in accordance with the License. Use may include creating\ + \ any content with, finetuning, updating, running, training, evaluating and/or reparametrizing\ + \ the Model. You shall require all of Your users who use the Model or a Derivative of the\ + \ Model to comply with the terms of this paragraph (paragraph 5). \n6. The Output You Generate.\ + \ Except as set forth herein, Licensor claims no rights in the Output You generate using\ + \ the Model. You are accountable for the Output you generate and its subsequent uses. No\ + \ use of the output can contravene any provision as stated in the License. \n\n\nSection\ + \ IV: OTHER PROVISIONS\n7. Updates and Runtime Restrictions. To the maximum extent permitted\ + \ by law, Licensor reserves the right to restrict (remotely or otherwise) usage of the Model\ + \ in violation of this License, update the Model through electronic means, or modify the\ + \ Output of the Model based on updates. You shall undertake reasonable efforts to use the\ + \ latest version of the Model.\n8. Trademarks and related. Nothing in this License permits\ + \ You to make use of Licensors’ trademarks, trade names, logos or to otherwise suggest endorsement\ + \ or misrepresent the relationship between the parties; and any rights not expressly granted\ + \ herein are reserved by the Licensors.\n9. Disclaimer of Warranty. Unless required by applicable\ + \ law or agreed to in writing, Licensor provides the Model and the Complementary Material\ + \ (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 Model, Derivatives of the Model, and the Complementary Material\ + \ and assume any risks associated with Your exercise of permissions under this License.\n\ + 10. 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 Model and the Complementary Material (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.\n11. Accepting Warranty or Additional Liability. While redistributing\ + \ the Model, Derivatives of the Model and the Complementary Material 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.\n12. If any provision\ + \ of this License is held to be invalid, illegal or unenforceable, the remaining provisions\ + \ shall be unaffected thereby and remain valid as if such provision had not been set forth\ + \ herein.\nEND OF TERMS AND CONDITIONS\n\nAttachment A\nUse Restrictions\nYou agree not\ + \ to use the Model or Derivatives of the Model:\n1. In any way that violates any applicable\ + \ national, federal, state, local or international law or regulation;\n2. For the purpose\ + \ of exploiting, harming or attempting to exploit or harm minors in any way;\n3. To generate\ + \ or disseminate verifiably false information with the purpose of harming others;\n4. To\ + \ generate or disseminate personal identifiable information that can be used to harm an\ + \ individual;\n5. To generate or disseminate information or content, in any context (e.g.\ + \ posts, articles, tweets, chatbots or other kinds of automated bots) without expressly\ + \ and intelligibly disclaiming that the text is machine generated; \n6. To defame, disparage\ + \ or otherwise harass others;\n7. To impersonate or attempt to impersonate others;\n8. For\ + \ fully automated decision making that adversely impacts an individual’s legal rights or\ + \ otherwise creates or modifies a binding, enforceable obligation;\n9. For any use intended\ + \ to or which has the effect of discriminating against or harming individuals or groups\ + \ based on online or offline social behavior or known or predicted personal or personality\ + \ characteristics\n10. To exploit any of the vulnerabilities of a specific group of persons\ + \ based on their age, social, physical or mental characteristics, in order to materially\ + \ distort the behavior of a person pertaining to that group in a manner that causes or is\ + \ likely to cause that person or another person physical or psychological harm;\n11. For\ + \ any use intended to or which has the effect of discriminating against individuals or groups\ + \ based on legally protected characteristics or categories;\n12. To provide medical advice\ + \ and medical results interpretation; \n13. To generate or disseminate information for the\ + \ purpose to be used for administration of justice, law enforcement, immigration or asylum\ + \ processes, such as predicting an individual will commit fraud/crime commitment (e.g. by\ + \ text profiling, drawing causal relationships between assertions made in documents, indiscriminate\ + \ and arbitrarily-targeted use)." + json: bigscience-rail-1.0.json + yaml: bigscience-rail-1.0.yml + html: bigscience-rail-1.0.html + license: bigscience-rail-1.0.LICENSE - license_key: binary-linux-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-binary-linux-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Redistribution. Redistribution and use in binary form, without + modification, are permitted provided that the following conditions are + met: + + * Redistributions must reproduce the above copyright notice 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 + suppliers may be used to endorse or promote products derived from this + software without specific prior written permission. + + * No reverse engineering, decompilation, or disassembly of this software + is permitted. + + 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 json: binary-linux-firmware.json - yml: binary-linux-firmware.yml + yaml: binary-linux-firmware.yml html: binary-linux-firmware.html - text: binary-linux-firmware.LICENSE + license: binary-linux-firmware.LICENSE - license_key: binary-linux-firmware-patent + category: Proprietary Free spdx_license_key: LicenseRef-scancode-binary-linux-firmware-patent other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Redistribution. Redistribution and use in binary form, without \nmodification, are\ + \ permitted provided that the following conditions are \nmet:\n\n* Redistributions must\ + \ reproduce the above copyright notice and the \n following disclaimer in the documentation\ + \ and/or other materials \n provided with the distribution. \n* Neither the name of the\ + \ Copyright Holder nor the names of its\n suppliers may be used to endorse or promote products\ + \ derived from this\n software without specific prior written permission. \n* No reverse\ + \ engineering, decompilation, or disassembly of this software \n is permitted.\n\nLimited\ + \ patent license. The Copyright Holder grants a world-wide, \nroyalty-free, non-exclusive\ + \ license under patents it now or hereafter \nowns or controls to make, have made, use,\ + \ import, offer to sell and \nsell (\"Utilize\") this software, but solely to the extent\ + \ that any \nsuch patent is necessary to Utilize the software alone, or in \ncombination\ + \ with an operating system licensed under an approved Open \nSource license as listed by\ + \ the Open Source Initiative at \nhttp://opensource.org/licenses. The patent license shall\ + \ not apply to \nany other combinations which include this software. No hardware per \n\ + se is licensed hereunder.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS\ + \ AND \nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, \nBUT NOT\ + \ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR PURPOSE\ + \ ARE DISCLAIMED. IN NO EVENT SHALL THE \nCOPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\ + \ ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\ + \ \nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS \nOF USE, DATA,\ + \ OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND \nON ANY THEORY OF LIABILITY,\ + \ WHETHER IN CONTRACT, STRICT LIABILITY, OR \nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\ + \ IN ANY WAY OUT OF THE \nUSE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\ + \ \nDAMAGE." json: binary-linux-firmware-patent.json - yml: binary-linux-firmware-patent.yml + yaml: binary-linux-firmware-patent.yml html: binary-linux-firmware-patent.html - text: binary-linux-firmware-patent.LICENSE + license: binary-linux-firmware-patent.LICENSE - license_key: biopython + category: Permissive spdx_license_key: LicenseRef-scancode-biopython other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Biopython License Agreement + + Permission to use, copy, modify, and distribute this software and its + documentation with or without modifications and for any purpose and + without fee is hereby granted, provided that any copyright notices + appear in all copies and that both those copyright notices and this + permission notice appear in supporting documentation, and that the + names of the contributors or copyright holders not be used in + advertising or publicity pertaining to distribution of the software + without specific prior permission. + + THE CONTRIBUTORS AND COPYRIGHT HOLDERS OF THIS SOFTWARE DISCLAIM ALL + WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL THE + CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT + OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS + OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE + OR PERFORMANCE OF THIS SOFTWARE. json: biopython.json - yml: biopython.yml + yaml: biopython.yml html: biopython.html - text: biopython.LICENSE + license: biopython.LICENSE - license_key: biosl-4.0 + category: Unstated License spdx_license_key: LicenseRef-scancode-biosl-4.0 other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Unstated License + text: json: biosl-4.0.json - yml: biosl-4.0.yml + yaml: biosl-4.0.yml html: biosl-4.0.html - text: biosl-4.0.LICENSE + license: biosl-4.0.LICENSE - license_key: bison-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-bison-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: As a special exception, when this file is copied by Bison into a Bison output file, + you may use that output file without restriction. This special exception was added by the + Free Software Foundation in version 1.24 of Bison. json: bison-exception-2.0.json - yml: bison-exception-2.0.yml + yaml: bison-exception-2.0.yml html: bison-exception-2.0.html - text: bison-exception-2.0.LICENSE + license: bison-exception-2.0.LICENSE - license_key: bison-exception-2.2 + category: Copyleft Limited spdx_license_key: Bison-exception-2.2 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, you may create a larger work that contains part or all + of the Bison parser skeleton and distribute that work under terms of your + choice, so long as that work isn't itself a parser generator using the skeleton + or a modified version thereof as a parser skeleton. Alternatively, if you + modify or redistribute the parser skeleton itself, you may (at your option) + remove this special exception, which will cause the skeleton and the resulting + Bison output files to be licensed under the GNU General Public License without + this special exception. + + This special exception was added by the Free Software Foundation in version 2.2 + of Bison. json: bison-exception-2.2.json - yml: bison-exception-2.2.yml + yaml: bison-exception-2.2.yml html: bison-exception-2.2.html - text: bison-exception-2.2.LICENSE + license: bison-exception-2.2.LICENSE - license_key: bitstream + category: Permissive spdx_license_key: Bitstream-Vera other_spdx_license_keys: - LicenseRef-scancode-bitstream is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is hereby granted, free of charge, to any person obtaining + a copy of the fonts accompanying this license ("Fonts") and associated + documentation files (the "Font Software"), to reproduce and distribute + the Font Software, including without limitation the rights to use, + copy, merge, publish, distribute, and/or sell copies of the Font + Software, and to permit persons to whom the Font Software is furnished + to do so, subject to the following conditions: + + The above copyright and trademark notices and this permission notice + shall be included in all copies of one or more of the Font Software + typefaces. + + The Font Software may be modified, altered, or added to, and in + particular the designs of glyphs or characters in the Fonts may be + modified and additional glyphs or characters may be added to the + Fonts, only if the fonts are renamed to names not containing either + the words "Bitstream" or the word "Vera". + + This License becomes null and void to the extent applicable to Fonts + or Font Software that has been modified and is distributed under the + "Bitstream Vera" names. + + The Font Software may be sold as part of a larger software package but + no copy of one or more of the Font Software typefaces may be sold by + itself. + + THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT + OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL + BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR + OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, + OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT + SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. + + Except as contained in this notice, the names of Gnome, the Gnome + Foundation, and Bitstream Inc., shall not be used in advertising or + otherwise to promote the sale, use or other dealings in this Font + Software without prior written authorization from the Gnome Foundation + or Bitstream Inc., respectively. For further information, contact: + fonts at gnome dot org. json: bitstream.json - yml: bitstream.yml + yaml: bitstream.yml html: bitstream.html - text: bitstream.LICENSE + license: bitstream.LICENSE - license_key: bittorrent-1.0 + category: Copyleft Limited spdx_license_key: BitTorrent-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "BitTorrent Open Source License\n\nVersion 1.0\n\nThis BitTorrent Open Source License\ + \ (the \"License\") applies to the BitTorrent client and related software products as\n\ + well as any updates or maintenance releases of that software (\"BitTorrent Products\") that\ + \ are distributed by\nBitTorrent, Inc. (\"Licensor\"). Any BitTorrent Product licensed\ + \ pursuant to this License is a Licensed Product.\nLicensed Product, in its entirety, is\ + \ protected by U.S. copyright law. This License identifies the terms under which\nyou may\ + \ use, copy, distribute or modify Licensed Product. \n\nPreamble\n\nThis Preamble is intended\ + \ to describe, in plain English, the nature and scope of this License. However, this\n\ + Preamble is not a part of this license. The legal effect of this License is dependent only\ + \ upon the terms of the\nLicense and not this Preamble.\n\nThis License complies with the\ + \ Open Source Definition and is derived from the Jabber Open Source License 1.0 (the\n\"\ + JOSL\"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii)\ + \ from the JOSL have been\ndropped.\n\nThis License provides that:\n\n1. You may use,\ + \ sell or give away the Licensed Product, alone or as a component of an aggregate software\n\ + distribution containing programs from several different sources. No royalty or other fee\ + \ is required.\n\n2. Both Source Code and executable versions of the Licensed Product,\ + \ including Modifications made by previous\nContributors, are available for your use. (The\ + \ terms \"Licensed Product,\" \"Modifications,\" \"Contributors\" and \"Source\nCode\" are\ + \ defined in the License.)\n\n3. You are allowed to make Modifications to the Licensed\ + \ Product, and you can create Derivative Works from it.\n(The term \"Derivative Works\"\ + \ is defined in the License.)\n\n4. By accepting the Licensed Product under the provisions\ + \ of this License, you agree that any Modifications you\nmake to the Licensed Product and\ + \ then distribute are governed by the provisions of this License. In particular, you\n\ + must make the Source Code of your Modifications available to others.\n\n5. You may\ + \ use the Licensed Product for any purpose, but the Licensor is not providing you any warranty\n\ + whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product\ + \ doesn't work properly\nor causes you any injury or damages.\n\n6. If you sublicense\ + \ the Licensed Product or Derivative Works, you may charge fees for warranty or support,\ + \ or\nfor accepting indemnity or liability obligations to your customers. You cannot charge\ + \ for the Source Code.\n\n7. If you assert any patent claims against the Licensor relating\ + \ to the Licensed Product, or if you breach any\nterms of the License, your rights to the\ + \ Licensed Product under this License automatically terminate.\n\nYou may use this License\ + \ to distribute your own Derivative Works, in which case the provisions of this License\ + \ will\napply to your Derivative Works just as they do to the original Licensed Product.\n\ + \nAlternatively, you may distribute your Derivative Works under any other OSI-approved Open\ + \ Source license, or under a\nproprietary license of your choice. If you use any license\ + \ other than this License, however, you must continue to\nfulfill the requirements of this\ + \ License (including the provisions relating to publishing the Source Code) for those\n\ + portions of your Derivative Works that consist of the Licensed Product, including the files\ + \ containing Modifications.\n\nNew versions of this License may be published from time to\ + \ time. You may choose to continue to use the license\nterms in this version of the License\ + \ or those from the new version. However, only the Licensor has the right to\nchange the\ + \ License terms as they apply to the Licensed Product. \n\nThis License relies on precise\ + \ definitions for certain terms. Those terms are defined when they are first used, and\n\ + the definitions are repeated for your convenience in a Glossary at the end of the License.\n\ + \n\nLicense Terms\n\n1. Grant of License From Licensor. Licensor hereby grants you\ + \ a world-wide, royalty-free, non-exclusive\nlicense, subject to third party intellectual\ + \ property claims, to do the following:\n\na. Use, reproduce, modify, display, perform,\ + \ sublicense and distribute any Modifications created by such\nContributor or portions thereof,\ + \ in both Source Code or as an executable program, either on an unmodified basis or as\n\ + part of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or\ + \ controlled by Contributor, to make, use, sell, offer for\nsale, have made, and/or otherwise\ + \ dispose of Modifications or portions thereof, but solely to the extent that any\nsuch\ + \ claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or\ + \ otherwise dispose of\nModifications or portions thereof or Derivative Works thereof.\n\ + \n\n2. Grant of License to Modifications From Contributor. \"Modifications\" means any additions\ + \ to or deletions from the\nsubstance or structure of (i) a file containing Licensed Product,\ + \ or (ii) any new file that contains any part of\nLicensed Product. Hereinafter in this\ + \ License, the term \"Licensed Product\" shall include all previous Modifications\nthat\ + \ you receive from any Contributor. By application of the provisions in Section 4(a) below,\ + \ each person or entity\nwho created or contributed to the creation of, and distributed,\ + \ a Modification (a \"Contributor\") hereby grants you a\nworld-wide, royalty-free, non-exclusive\ + \ license, subject to third party intellectual property claims, to do the\nfollowing:\n\n\ + \ 1. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications\ + \ created by such\nContributor or portions thereof, in both Source Code or as an executable\ + \ program, either on an unmodified basis or as\npart of Derivative Works.\n\n 2. Under\ + \ claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell,\ + \ offer for\nsale, have made, and/or otherwise dispose of Modifications or portions thereof,\ + \ but solely to the extent that any\nsuch claim is necessary to enable you to make, use,\ + \ sell, offer for sale, have made, and/or otherwise dispose of\nModifications or portions\ + \ thereof or Derivative Works thereof. \n\n\n3. Exclusions From License Grant. Nothing\ + \ in this License shall be deemed to grant any rights to trademarks,\ncopyrights, patents,\ + \ trade secrets or any other intellectual property of Licensor or any Contributor except\ + \ as\nexpressly stated herein. No patent license is granted separate from the Licensed Product,\ + \ for code that you delete\nfrom the Licensed Product, or for combinations of the Licensed\ + \ Product with other software or hardware. No right is\ngranted to the trademarks of Licensor\ + \ or any Contributor even if such marks are included in the Licensed Product.\nNothing in\ + \ this License shall be interpreted to prohibit Licensor from licensing under different\ + \ terms from this\nLicense any code that Licensor otherwise would have a right to license.\n\ + \n\n4. Your Obligations Regarding Distribution. \n\na. Application of This License\ + \ to Your Modifications. As an express condition for your use of the Licensed\nProduct,\ + \ you hereby agree that any Modifications that you create or to which you contribute, and\ + \ which you\ndistribute, are governed by the terms of this License including, without limitation,\ + \ Section 2. Any Modifications\nthat you create or to which you contribute may be distributed\ + \ only under the terms of this License or a future\nversion of this License released under\ + \ Section 7. You must include a copy of this License with every copy of the\nModifications\ + \ you distribute. You agree not to offer or impose any terms on any Source Code or executable\ + \ version of\nthe Licensed Product or Modifications that alter or restrict the applicable\ + \ version of this License or the\nrecipients' rights hereunder. However, you may include\ + \ an additional document offering the additional rights\ndescribed in Section 4(d).\n\n\ + b. Availability of Source Code. You must make available, under the terms of this\ + \ License, the Source Code of\nthe Licensed Product and any Modifications that you distribute,\ + \ either on the same media as you distribute any\nexecutable or other form of the Licensed\ + \ Product, or via a mechanism generally accepted in the software development\ncommunity\ + \ for the electronic transfer of data (an \"Electronic Distribution Mechanism\"). The Source\ + \ Code for any\nversion of Licensed Product or Modifications that you distribute must remain\ + \ available for at least twelve (12)\nmonths after the date it initially became available,\ + \ or at least six (6) months after a subsequent version of said\nLicensed Product or Modifications\ + \ has been made available. You are responsible for ensuring that the Source Code\nversion\ + \ remains available even if the Electronic Distribution Mechanism is maintained by a third\ + \ party.\n\nc. Intellectual Property Matters. \n\n \ + \ i. Third Party Claims. If you have knowledge that a license to a third\n\ + party's intellectual property right is required to exercise the rights granted by this License,\ + \ you must include a\ntext file with the Source Code distribution titled \"LEGAL\" that\ + \ describes the claim and the party making the claim in\nsufficient detail that a recipient\ + \ will know whom to contact. If you obtain such knowledge after you make any\nModifications\ + \ available as described in Section 4(b), you shall promptly modify the LEGAL file in all\ + \ copies you make\navailable thereafter and shall take other steps (such as notifying appropriate\ + \ mailing lists or newsgroups)\nreasonably calculated to inform those who received the Licensed\ + \ Product from you that new knowledge has been\nobtained.\n\n \ + \ ii. Contributor APIs. If your Modifications include an application\nprogramming\ + \ interface (\"API\") and you have knowledge of patent licenses that are reasonably necessary\ + \ to implement\nthat API, you must also include this information in the LEGAL file.\n\n\ + \ iii. Representations. You represent that, except\ + \ as disclosed pursuant to\n4(c)(i) above, you believe that any Modifications you distribute\ + \ are your original creations and that you have\nsufficient rights to grant the rights conveyed\ + \ by this License.\n\nd. Required Notices. You must duplicate this License in any\ + \ documentation you provide along with the Source\nCode of any Modifications you create\ + \ or to which you contribute, and which you distribute, wherever you describe\nrecipients'\ + \ rights relating to Licensed Product. You must duplicate the notice contained in Exhibit\ + \ A (the \"Notice\")\nin each file of the Source Code of any copy you distribute of the\ + \ Licensed Product. If you created a Modification,\nyou may add your name as a Contributor\ + \ to the Notice. If it is not possible to put the Notice in a particular Source\nCode file\ + \ due to its structure, then you must include such Notice in a location (such as a relevant\ + \ directory file)\nwhere a user would be likely to look for such a notice. You may choose\ + \ to offer, and charge a fee for, warranty,\nsupport, indemnity or liability obligations\ + \ to one or more recipients of Licensed Product. However, you may do so\nonly on your own\ + \ behalf, and not on behalf of the Licensor or any Contributor. You must make it clear\ + \ that any such\nwarranty, support, indemnity or liability obligation is offered by you\ + \ alone, and you hereby agree to indemnify the\nLicensor and every Contributor for any liability\ + \ incurred by the Licensor or such Contributor as a result of\nwarranty, support, indemnity\ + \ or liability terms you offer.\n\ne. Distribution of Executable Versions. You may\ + \ distribute Licensed Product as an executable program under a\nlicense of your choice that\ + \ may contain terms different from this License provided (i) you have satisfied the\nrequirements\ + \ of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice\ + \ in the\nexecutable version, related documentation and collateral materials stating that\ + \ the Source Code version of the\nLicensed Product is available under the terms of this\ + \ License, including a description of how and where you have\nfulfilled the obligations\ + \ of Section 4(b), and (iii) you make it clear that any terms that differ from this License\n\ + are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify\ + \ the Licensor and every\nContributor for any liability incurred by Licensor or such Contributor\ + \ as a result of any terms you offer. \n\nf. Distribution of Derivative Works. You\ + \ may create Derivative Works (e.g., combinations of some or all of the\nLicensed Product\ + \ with other code) and distribute the Derivative Works as products under any other license\ + \ you select,\nwith the proviso that the requirements of this License are fulfilled for\ + \ those portions of the Derivative Works that\nconsist of the Licensed Product or any Modifications\ + \ thereto. \n\n\n5. Inability to Comply Due to Statute or Regulation. If it is impossible\ + \ for you to comply with any of the\nterms of this License with respect to some or all of\ + \ the Licensed Product due to statute, judicial order, or\nregulation, then you must (i)\ + \ comply with the terms of this License to the maximum extent possible, (ii) cite the\n\ + statute or regulation that prohibits you from adhering to the License, and (iii) describe\ + \ the limitations and the\ncode they affect. Such description must be included in the LEGAL\ + \ file described in Section 4(d), and must be included\nwith all distributions of the Source\ + \ Code. Except to the extent prohibited by statute or regulation, such\ndescription must\ + \ be sufficiently detailed for a recipient of ordinary skill at computer programming to\ + \ be able to\nunderstand it. \n\n\n6. Application of This License. This License applies\ + \ to code to which Licensor or Contributor has attached the\nNotice in Exhibit A, which\ + \ is incorporated herein by this reference.\n\n\n7. Versions of This License.\n\na.\ + \ New Versions. Licensor may publish from time to time revised and/or new versions\ + \ of the License. \n\nb. Effect of New Versions. Once Licensed Product has been published\ + \ under a particular version of the License,\nyou may always continue to use it under the\ + \ terms of that version. You may also choose to use such Licensed Product\nunder the terms\ + \ of any subsequent version of the License published by Licensor. No one other than Licensor\ + \ has the\nright to modify the terms applicable to Licensed Product created under this License.\n\ + \nc. Derivative Works of this License. If you create or use a modified version of\ + \ this License, which you may do\nonly in order to apply it to software that is not already\ + \ a Licensed Product under this License, you must rename your\nlicense so that it is not\ + \ confusingly similar to this License, and must make it clear that your license contains\n\ + terms that differ from this License. In so naming your license, you may not use any trademark\ + \ of Licensor or any\nContributor.\n\n\n8. Disclaimer of Warranty. LICENSED PRODUCT\ + \ IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY\nOF ANY KIND, EITHER\ + \ EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT\ + \ IS FREE\nOF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE\ + \ ENTIRE RISK AS TO THE QUALITY AND\nPERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD\ + \ LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND\nNOT THE LICENSOR OR ANY OTHER\ + \ CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS\n\ + DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED\ + \ PRODUCT IS AUTHORIZED\nHEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n\n9. Termination.\ + \ \n\na. Automatic Termination Upon Breach. This license and the rights granted hereunder\ + \ will terminate\nautomatically if you fail to comply with the terms herein and fail to\ + \ cure such breach within thirty (30) days of\nbecoming aware of the breach. All sublicenses\ + \ to the Licensed Product that are properly granted shall survive any\ntermination of this\ + \ license. Provisions that, by their nature, must remain in effect beyond the termination\ + \ of this\nLicense, shall survive.\n\nb. Termination Upon Assertion of Patent Infringement.\ + \ If you initiate litigation by asserting a patent\ninfringement claim (excluding declaratory\ + \ judgment actions) against Licensor or a Contributor (Licensor or\nContributor against\ + \ whom you file such an action is referred to herein as Respondent) alleging that Licensed\ + \ Product\ndirectly or indirectly infringes any patent, then any and all rights granted\ + \ by such Respondent to you under Sections\n1 or 2 of this License shall terminate prospectively\ + \ upon sixty (60) days notice from Respondent (the \"Notice\nPeriod\") unless within that\ + \ Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable\n\ + reasonably royalty for your past or future use of Licensed Product made by such Respondent,\ + \ or (ii) withdraw your\nlitigation claim with respect to Licensed Product against such\ + \ Respondent. If within said Notice Period a reasonable\nroyalty and payment arrangement\ + \ are not mutually agreed upon in writing by the parties or the litigation claim is not\n\ + withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate\ + \ at the expiration of\nsaid Notice Period.\n\nc. Reasonable Value of This License.\ + \ If you assert a patent infringement claim against Respondent alleging\nthat Licensed\ + \ Product directly or indirectly infringes any patent where such claim is resolved (such\ + \ as by license or\nsettlement) prior to the initiation of patent infringement litigation,\ + \ then the reasonable value of the licenses\ngranted by said Respondent under Sections 1\ + \ and 2 shall be taken into account in determining the amount or value of\nany payment or\ + \ license.\n\nd. No Retroactive Effect of Termination. In the event of termination\ + \ under Sections 9(a) or 9(b) above, all\nend user license agreements (excluding licenses\ + \ to distributors and resellers) that have been validly granted by you\nor any distributor\ + \ hereunder prior to termination shall survive termination.\n\n\n10. Limitation of Liability.\ + \ UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE),\n\ + CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED\ + \ PRODUCT, OR ANY SUPPLIER\nOF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT,\ + \ SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF\nANY CHARACTER INCLUDING, WITHOUT LIMITATION,\ + \ DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR\nMALFUNCTION, OR ANY\ + \ AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED\ + \ OF THE\nPOSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO\ + \ LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT\ + \ APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO\nNOT ALLOW THE EXCLUSION\ + \ OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION\ + \ MAY\nNOT APPLY TO YOU. \n\n\n11. Responsibility for Claims. As between Licensor and\ + \ Contributors, each party is responsible for claims and\ndamages arising, directly or indirectly,\ + \ out of its utilization of rights under this License. You agree to work with\nLicensor\ + \ and Contributors to distribute such responsibility on an equitable basis. Nothing herein\ + \ is intended or\nshall be deemed to constitute any admission of liability.\n\n\n12. U.S.\ + \ Government End Users. The Licensed Product is a commercial item, as that term is defined\ + \ in 48 C.F.R.\n2.101 (Oct. 1995), consisting of commercial computer software and commercial\ + \ computer software documentation, as such\nterms are used in 48 C.F.R. 12.212 (Sept. 1995).\ + \ Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through\n227.7202-4 (June 1995),\ + \ all U.S. Government End Users acquire Licensed Product with only those rights set forth\n\ + herein.\n\n\n13. Miscellaneous. This License represents the complete agreement concerning\ + \ the subject matter hereof. If any\nprovision of this License is held to be unenforceable,\ + \ such provision shall be reformed only to the extent necessary\nto make it enforceable.\ + \ This License shall be governed by California law provisions (except to the extent applicable\n\ + law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly\ + \ agree that any litigation\nrelating to this license shall be subject to the jurisdiction\ + \ of the Federal Courts of the Northern District of\nCalifornia or the Superior Court of\ + \ the County of Santa Clara, California (as appropriate), with venue lying in Santa\nClara\ + \ County, California, with the losing party responsible for costs including, without limitation,\ + \ court costs and\nreasonable attorneys fees and expenses. The application of the United\ + \ Nations Convention on Contracts for the\nInternational Sale of Goods is expressly excluded.\ + \ You and Licensor expressly waive any rights to a jury trial in\nany litigation concerning\ + \ Licensed Product or this License. Any law or regulation that provides that the language\ + \ of\na contract shall be construed against the drafter shall not apply to this License.\n\ + \n\n14. Definition of You in This License. You throughout this License, whether in upper\ + \ or lower case, means an\nindividual or a legal entity exercising rights under, and complying\ + \ with all of the terms of, this License or a\nfuture version of this License issued under\ + \ Section 7. For legal entities, you includes any entity that controls, is\ncontrolled\ + \ by, or is under common control with you. For purposes of this definition, control means\ + \ (i) the power,\ndirect or indirect, to cause the direction or management of such entity,\ + \ whether by contract or otherwise, or (ii)\nownership of fifty percent (50%) or more of\ + \ the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\n15. Glossary.\ + \ All defined terms in this License that are used in more than one Section of this License\ + \ are repeated\nhere, in alphabetical order, for the convenience of the reader. The Section\ + \ of this License in which each defined\nterm is first used is shown in parentheses. \n\n\ + Contributor: Each person or entity who created or contributed to the creation of, and distributed,\ + \ a Modification.\n(See Section 2)\n\nDerivative Works: That term as used in this License\ + \ is defined under U.S. copyright law. (See Section 1(b))\n\nLicense: This BitTorrent\ + \ Open Source License. (See first paragraph of License)\n\nLicensed Product: Any BitTorrent\ + \ Product licensed pursuant to this License. The term \"Licensed Product\" includes\nall\ + \ previous Modifications from any Contributor that you receive. (See first paragraph of\ + \ License and Section 2)\n\nLicensor: BitTorrent, Inc. (See first paragraph of License)\n\ + \nModifications: Any additions to or deletions from the substance or structure of (i) a\ + \ file containing Licensed\nProduct, or (ii) any new file that contains any part of Licensed\ + \ Product. (See Section 2)\n\nNotice: The notice contained in Exhibit A. (See Section\ + \ 4(e))\n\nSource Code: The preferred form for making modifications to the Licensed Product,\ + \ including all modules contained\ntherein, plus any associated interface definition files,\ + \ scripts used to control compilation and installation of an\nexecutable program, or a list\ + \ of differential comparisons against the Source Code of the Licensed Product. (See\nSection\ + \ 1(a))\n\nYou: This term is defined in Section 14 of this License.\n\n\nEXHIBIT A\n\n\ + The Notice below must appear in each file of the Source Code of any copy you distribute\ + \ of the Licensed Product or\nany hereto. Contributors to any Modifications may add their\ + \ own copyright notices to identify their own\ncontributions.\n\nLicense:\n\nThe contents\ + \ of this file are subject to the BitTorrent Open Source License Version 1.0 (the License).\ + \ You may not\ncopy or use this file, in either source code or executable form, except\ + \ in compliance with the License. You may\nobtain a copy of the License at http://www.bittorrent.com/license/.\n\ + \nSoftware distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY\ + \ OF ANY KIND, either express\nor implied. See the License for the specific language governing\ + \ rights and limitations under the License." json: bittorrent-1.0.json - yml: bittorrent-1.0.yml + yaml: bittorrent-1.0.yml html: bittorrent-1.0.html - text: bittorrent-1.0.LICENSE + license: bittorrent-1.0.LICENSE - license_key: bittorrent-1.1 + category: Copyleft Limited spdx_license_key: BitTorrent-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + BitTorrent Open Source License + + Version 1.1 + + This BitTorrent Open Source License (the "License") applies to the BitTorrent client and related software products as well as any updates or maintenance releases of that software ("BitTorrent Products") that are distributed by BitTorrent, Inc. ("Licensor"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product. + + Preamble + + This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble. + + This License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the "JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted. + + This License provides that: + + 1. You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required. + + 2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.) + + 3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.) + + 4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty. + + 5. You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor?s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable. + + You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages. + + 6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code. + + 7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate. + + You may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product. + + Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications. + + New versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product. + + This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License. + + License Terms + + 1. Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + + a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + + b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + + 2. Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + + a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + + b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + + 3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media. + + 4. Your Obligations Regarding Distribution. + + a. Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d). + + b. Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + + c. Intellectual Property Matters. + + i. Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained. + + ii. Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file. + + iii. Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License. + + d. Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer. + + e. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. + + f. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto. + + g. Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor?s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party?s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party?s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code. + + 5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it. + + 6. Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference. + + 7. Versions of This License. + + a. New Versions. Licensor may publish from time to time revised and/or new versions of the License. + + b. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License. + + c. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor. + + 8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 9. Termination. + + a. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the ?WHOIS? database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to complye with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. + + b. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period. + + c. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license. + + d. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination. + + 10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + + 11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + + 12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein. + + 13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. + + 14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein. + + 15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses. + + Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2) + + Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b)) + + License: This BitTorrent Open Source License. (See first paragraph of License) + + Licensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) + + Licensor: BitTorrent, Inc. (See first paragraph of License) + + Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2) + + Notice: The notice contained in Exhibit A. (See Section 4(e)) + + Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a)) + + You: This term is defined in Section 14 of this License. + + EXHIBIT A + + The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions. + + License: + + The contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/. + + Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. json: bittorrent-1.1.json - yml: bittorrent-1.1.yml + yaml: bittorrent-1.1.yml html: bittorrent-1.1.html - text: bittorrent-1.1.LICENSE + license: bittorrent-1.1.LICENSE - license_key: bittorrent-1.2 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-bittorrent-1.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + BitTorrent Open Source License + Version 1.2 + + This BitTorrent Open Source License (the "License") applies to certain software that is distributed by BitTorrent, Inc. ("Licensor") specifically under this license ("BitTorrent Products"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product. + Preamble + + This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble. + + This License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the "JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted. + + This License provides that: + + You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required. + Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.) + You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.) + By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty. + You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor’s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor’s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable. + You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages. + If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code. + If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate. + You may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product. + + Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications. + + New versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product. + + This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License. + + License Terms + + Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media. + Your Obligations Regarding Distribution. + Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d). + Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + Intellectual Property Matters. + Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained. + Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file. + Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License. + Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer. + Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. + Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto. + Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor’s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party’s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party’s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor’s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code. + Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it. + Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference. + Versions of This License. + New Versions. Licensor may publish from time to time revised and/or new versions of the License. + Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License. + Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor. + Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + Termination. + Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the WHOIS database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to comply with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. + Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonable royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period. + Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license. + No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination. + Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein. + Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. + Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein. + Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses. + Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2) + Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b)) + License: This BitTorrent Open Source License. (See first paragraph of License) + Licensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) + Licensor: BitTorrent, Inc. (See first paragraph of License) + Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2) + Notice: The notice contained in Exhibit A. (See Section 4(e)) + Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a)) + You: This term is defined in Section 14 of this License. + + EXHIBIT A + + The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions. + + License: + + The contents of this file are subject to the BitTorrent Open Source License Version 1.2 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/. + + Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. json: bittorrent-1.2.json - yml: bittorrent-1.2.yml + yaml: bittorrent-1.2.yml html: bittorrent-1.2.html - text: bittorrent-1.2.LICENSE + license: bittorrent-1.2.LICENSE - license_key: bittorrent-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-bittorrent-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + End User License Agreement (EULA) + + By accepting this agreement or by installing BitTorrent or uTorrent or other software offered by or on behalf of BitTorrent, Inc. (the "Software") or by clicking "Install", you agree to the following terms, notwithstanding anything to the contrary in this agreement. + + The Software is a peer-to-peer file distribution application distributed by BitTorrent, Inc. + + License + Subject to your compliance with these terms and conditions, BitTorrent, Inc. grants you a royalty-free, non-exclusive, non-transferable license to use the Software, solely for your personal, non-commercial purposes. BitTorrent, Inc. reserves all rights in the Software not expressly granted to you here. + + Restrictions + The source code, design, and structure of the Software are trade secrets. You will not disassemble, decompile, or reverse engineer it, in whole or in part, except to the extent expressly permitted by law, or distribute it. You will not use the Software for illegal purposes. You will comply with all export laws. The Software is licensed, not sold. + + The BitTorrent Technologies + Downloading and Updates + + The Software downloads only those files that are both authorized by you for download (specifically or by category or subscription), except that the Software automatically updates itself. + + Automatic Uploading + + The Software accelerates downloads by enabling your computer to grab pieces of files from other BitTorrent users simultaneously. Your use of the Software to download files will, in turn, enable other users to download pieces of those files from you, thereby maximizing download speeds for all users. In the Software, only files that you are explicitly downloading or sharing or have downloaded or shared through BitTorrent will be made available to others. You consent to other users' use of your network connection to download portions of such files from you. At any time, you may uninstall the Software through the Add/Remove Programs control panel utility. In addition, for the BitTorrent or uTorrent software, you can control the Software in multiple ways through its user interface without affecting any files you have already downloaded. + + Disclaimer of Warranty + BitTorrent, Inc. disclaims any responsibility for harm resulting from the Software or any software or content downloaded using the Software, whether or not BitTorrent, Inc. approved such software or content. BitTorrent, Inc. approval does not guarantee that software or content from an approved partner will function, sound, or appear as offered or hoped, or be complete, accurate, or free from bugs, errors, viruses, or other harmful content. BitTorrent, Inc expressly disclaims all warranties and conditions, express or implied, including any implied warranties and conditions of merchantability, fitness for a particular purpose, and noninfringement, and any warranties and conditions arising out of course of dealing or usage of trade regarding the Software or any software or content you download using the Software. No advice or information, whether oral or written, obtained from BitTorrent, Inc or elsewhere will create any warranty or condition not expressly stated in this agreement. Some jurisdictions do not allow certain limitations on implied warranties, so the above limitation may not apply to you to its full extent. + + Limitation of Liability + BitTorrent, Inc's total liability to you from all causes of action and under all theories of liability will be limited to $50.00. In no event and under no theory of liability will BitTorrent, Inc be liable to you for any special, incidental, exemplary, or consequential damages arising out of or in connection with this agreement or the software whether or not BitTorrent, Inc has been advised of the possibility of such damages. The foregoing limitations will survive even if any limited remedy specified is found to have failed of its essential purpose. Some jurisdictions do not allow the limitation or exclusion of liability for incidental or consequential damages, so the above limitation or exclusion may not apply to you to its full extent. + + U.S. Government Users + The Software is "commercial computer software" any use of which by or on behalf of the U.S. Government is subject to the restrictions herein. Manufactured by BitTorrent, Inc. + + General + These BitTorrent, Inc. terms will be governed by and construed in accordance with the laws of California, USA, without regard to conflicts of law rules. The United Nations Convention on Contracts for the International Sale of Goods will not apply. The failure by either party to enforce any provision will not constitute a waiver. Any waiver, modification, or amendment of the BitTorrent, Inc. terms will be effective only if signed. If any provision is held to be unenforceable, it will be enforced to the maximum extent possible and will not diminish other provisions. BitTorrent, Inc. may make changes to these terms from time to time. When these changes are made, BitTorrent, Inc. will make a new copy of the terms available at www.bittorrent.com/legal/eula. You understand and agree that if you use the Software after the date on which the terms have changed, BitTorrent, Inc. will treat your use as acceptance of the updated terms. You agree that BitTorrent, Inc. may provide you with notices, including those regarding changes to the terms, by postings on www.bittorrent.com/legal/eula. This and the Terms of Use at www.bittorrent.com/legal/terms-of-use are BitTorrent, Inc.'s complete and exclusive understanding with you regarding your use of the Software as an end user. + + Contact + If you have any questions, contact us at legal@bittorrent.com. json: bittorrent-eula.json - yml: bittorrent-eula.yml + yaml: bittorrent-eula.yml html: bittorrent-eula.html - text: bittorrent-eula.LICENSE + license: bittorrent-eula.LICENSE - license_key: bitwarden-1.0 + category: Source-available spdx_license_key: LicenseRef-scancode-bitwarden-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + BITWARDEN LICENSE AGREEMENT + Version 1, 4 September 2020 + + PLEASE CAREFULLY READ THIS BITWARDEN LICENSE AGREEMENT ("AGREEMENT"). THIS + AGREEMENT CONSTITUTES A LEGALLY BINDING AGREEMENT BETWEEN YOU AND BITWARDEN, + INC. ("BITWARDEN") AND GOVERNS YOUR USE OF THE COMMERCIAL MODULES (DEFINED + BELOW). BY COPYING OR USING THE COMMERCIAL MODULES, YOU AGREE TO THIS AGREEMENT. + IF YOU DO NOT AGREE WITH THIS AGREEMENT, YOU MAY NOT COPY OR USE THE COMMERCIAL + MODULES. IF YOU ARE COPYING OR USING THE COMMERCIAL MODULES ON BEHALF OF A LEGAL + ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE AUTHORITY TO AGREE TO THIS + AGREEMENT ON BEHALF OF SUCH ENTITY. IF YOU DO NOT HAVE SUCH AUTHORITY, DO NOT + COPY OR USE THE COMMERCIAL MODULES IN ANY MANNER. + + This Agreement is entered into by and between Bitwarden and you, or the legal + entity on behalf of whom you are acting (as applicable, "You" or "Your"). + + 1. DEFINITIONS + + "Bitwarden Software" means the Bitwarden server software, libraries, and + Commercial Modules. + + "Commercial Modules" means the modules designed to work with and enhance the + Bitwarden Software to which this Agreement is linked, referenced, or appended. + + 2. LICENSES, RESTRICTIONS AND THIRD PARTY CODE + + 2.1 Commercial Module License. Subject to Your compliance with this Agreement, + Bitwarden hereby grants to You a limited, non-exclusive, non-transferable, + royalty-free license to use the Commercial Modules for the sole purposes of + internal development and internal testing, and only in a non-production + environment. + + 2.2 Reservation of Rights. As between Bitwarden and You, Bitwarden owns all + right, title and interest in and to the Bitwarden Software, and except as + expressly set forth in Sections 2.1, no other license to the Bitwarden Software + is granted to You under this Agreement, by implication, estoppel, or otherwise. + + 2.3 Restrictions. You agree not to: (i) except as expressly permitted in + Section 2.1, sell, rent, lease, distribute, sublicense, loan or otherwise + transfer the Commercial Modules to any third party; (ii) alter or remove any + trademarks, service mark, and logo included with the Commercial Modules, or + (iii) use the Commercial Modules to create a competing product or service. + Bitwarden is not obligated to provide maintenance and support services for the + Bitwarden Software licensed under this Agreement. + + 2.4 Third Party Software. The Commercial Modules may contain or be provided + with third party open source libraries, components, utilities and other open + source software (collectively, "Open Source Software"). Notwithstanding anything + to the contrary herein, use of the Open Source Software will be subject to the + license terms and conditions applicable to such Open Source Software. To the + extent any condition of this Agreement conflicts with any license to the Open + Source Software, the Open Source Software license will govern with respect to + such Open Source Software only. + + 3. TERMINATION + + 3.1 Termination. This Agreement will automatically terminate upon notice from + Bitwarden, which notice may be by email or posting in the location where the + Commercial Modules are made available. + + 3.2 Effect of Termination. Upon any termination of this Agreement, for any + reason, You will promptly cease use of the Commercial Modules and destroy any + copies thereof. For the avoidance of doubt, termination of this Agreement will + not affect Your right to Bitwarden Software, other than the Commercial Modules, + made available pursuant to an Open Source Software license. + + 3.3 Survival. Sections 1, 2.2 -2.4, 3.2, 3.3, 4, and 5 will survive any + termination of this Agreement. + + 4. DISCLAIMER AND LIMITATION OF LIABILITY + + 4.1 Disclaimer of Warranties. TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE + LAW, THE BITWARDEN SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED REGARDING OR RELATING TO THE BITWARDEN SOFTWARE, INCLUDING + ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, + TITLE, AND NON-INFRINGEMENT. FURTHER, BITWARDEN DOES NOT WARRANT RESULTS OF USE + OR THAT THE BITWARDEN SOFTWARE WILL BE ERROR FREE OR THAT THE USE OF THE + BITWARDEN SOFTWARE WILL BE UNINTERRUPTED. + + 4.2 Limitation of Liability. IN NO EVENT WILL BITWARDEN OR ITS LICENSORS BE + LIABLE TO YOU OR ANY THIRD PARTY UNDER THIS AGREEMENT FOR (I) ANY AMOUNTS IN + EXCESS OF US $25 OR (II) FOR ANY SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OF + ANY KIND, INCLUDING FOR ANY LOSS OF PROFITS, LOSS OF USE, BUSINESS INTERRUPTION, + LOSS OF DATA, COST OF SUBSTITUTE GOODS OR SERVICES, WHETHER ALLEGED AS A BREACH + OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, EVEN IF BITWARDEN HAS + BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 5. MISCELLANEOUS + + 5.1 Assignment. You may not assign or otherwise transfer this Agreement or any + rights or obligations hereunder, in whole or in part, whether by operation of + law or otherwise, to any third party without Bitwarden's prior written consent. + Any purported transfer, assignment or delegation without such prior written + consent will be null and void and of no force or effect. Bitwarden may assign + this Agreement to any successor to its business or assets to which this + Agreement relates, whether by merger, sale of assets, sale of stock, + reorganization or otherwise. Subject to this Section 5.1, this Agreement will be + binding upon and inure to the benefit of the parties hereto, and their + respective successors and permitted assigns. + + 5.2 Entire Agreement; Modification; Waiver. This Agreement represents the + entire agreement between the parties, and supersedes all prior agreements and + understandings, written or oral, with respect to the matters covered by this + Agreement, and is not intended to confer upon any third party any rights or + remedies hereunder. You acknowledge that You have not entered in this Agreement + based on any representations other than those contained herein. No modification + of or amendment to this Agreement, nor any waiver of any rights under this + Agreement, will be effective unless in writing and signed by both parties. The + waiver of one breach or default or any delay in exercising any rights will not + constitute a waiver of any subsequent breach or default. + + 5.3 Governing Law. This Agreement will in all respects be governed by the laws + of the State of California without reference to its principles of conflicts of + laws. The parties hereby agree that all disputes arising out of this Agreement + will be subject to the exclusive jurisdiction of and venue in the federal and + state courts within Los Angeles County, California. You hereby consent to the + personal and exclusive jurisdiction and venue of these courts. The parties + hereby disclaim and exclude the application hereto of the United Nations + Convention on Contracts for the International Sale of Goods. + + 5.4 Severability. If any provision of this Agreement is held invalid or + unenforceable under applicable law by a court of competent jurisdiction, it will + be replaced with the valid provision that most closely reflects the intent of + the parties and the remaining provisions of the Agreement will remain in full + force and effect. + + 5.5 Relationship of the Parties. Nothing in this Agreement is to be construed + as creating an agency, partnership, or joint venture relationship between the + parties hereto. Neither party will have any right or authority to assume or + create any obligations or to make any representations or warranties on behalf of + any other party, whether express or implied, or to bind the other party in any + respect whatsoever. + + 5.6 Notices. All notices permitted or required under this Agreement will be in + writing and will be deemed to have been given when delivered in person + (including by overnight courier), or three (3) business days after being mailed + by first class, registered or certified mail, postage prepaid, to the address of + the party specified in this Agreement or such other address as either party may + specify in writing. + + 5.7 U.S. Government Restricted Rights. If Commercial Modules is being licensed + by the U.S. Government, the Commercial Modules is deemed to be "commercial + computer software" and "commercial computer documentation" developed exclusively + at private expense, and (a) if acquired by or on behalf of a civilian agency, + will be subject solely to the terms of this computer software license as + specified in 48 C.F.R. 12.212 of the Federal Acquisition Regulations and its + successors; and (b) if acquired by or on behalf of units of the Department of + Defense ("DOD") will be subject to the terms of this commercial computer + software license as specified in 48 C.F.R. 227.7202-2, DOD FAR Supplement and + its successors. + + 5.8 Injunctive Relief. A breach or threatened breach by You of Section 2 may + cause irreparable harm for which damages at law may not provide adequate relief, + and therefore Bitwarden will be entitled to seek injunctive relief in any + applicable jurisdiction without being required to post a bond. + + 5.9 Export Law Assurances. You understand that the Commercial Modules is + subject to export control laws and regulations. You may not download or + otherwise export or re-export the Commercial Modules or any underlying + information or technology except in full compliance with all applicable laws and + regulations, in particular, but without limitation, United States export control + laws. None of the Commercial Modules or any underlying information or technology + may be downloaded or otherwise exported or re- exported: (a) into (or to a + national or resident of) any country to which the United States has embargoed + goods; or (b) to anyone on the U.S. Treasury Department's list of specially + designated nationals or the U.S. Commerce Department's list of prohibited + countries or debarred or denied persons or entities. You hereby agree to the + foregoing and represents and warrants that You are not located in, under control + of, or a national or resident of any such country or on any such list. + + 5.10 Construction. The titles and section headings used in this Agreement are + for ease of reference only and will not be used in the interpretation or + construction of this Agreement. No rule of construction resolving any ambiguity + in favor of the non-drafting party will be applied hereto. The word "including", + when used herein, is illustrative rather than exclusive and means "including, + without limitation." json: bitwarden-1.0.json - yml: bitwarden-1.0.yml + yaml: bitwarden-1.0.yml html: bitwarden-1.0.html - text: bitwarden-1.0.LICENSE + license: bitwarden-1.0.LICENSE - license_key: bitzi-pd + category: Permissive spdx_license_key: LicenseRef-scancode-bitzi-pd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "BITZI PUBLIC DOMAIN NOTICES \n\nUPDATED July 13, 2006 \n\nWhen we publish our source\ + \ code, we usually place it in \nthe public domain, whenever possible, to allow the widest\ + \ \npossible reuse and benefit. \n\nWe try to include on most such released files a small\ + \ notice \nsuch as: \n\n/* (PD) 2006 The Bitzi Corporation \n * Please see file COPYING\ + \ or http://bitzi.com/publicdomain \n * for more info. \n */ \n\nFor major standalone files,\ + \ or as the \"COPYING\" file, we \ninclude a version of this longer explanation: \n\n/*\ + \ (PD) 2006 The Bitzi Corporation \n * \n * 1. Authorship. This work and others bearing\ + \ the above \n * label were created by, or on behalf of, the Bitzi \n * Corporation. Often\ + \ other public domain material by \n * other authors is incorporated; this should be clear\ + \ \n * from notations in the source code. If other non- \n * public-domain code or libraries\ + \ are included, this is \n * is done under those works' respective licenses. \n * \n * 2.\ + \ Release. The Bitzi Corporation places its portion \n * of these labelled works into the\ + \ public domain, \n * disclaiming all rights granted us by copyright law. \n * \n * Bitzi\ + \ places no restrictions on your freedom to copy, \n * use, redistribute and modify this\ + \ work, though you \n * should be aware of points (3), (4), and (5) below. \n * \n * 3.\ + \ Trademark Advisory. The Bitzi Corporation reserves \n * all rights with regard to any\ + \ of its trademarks which \n * may appear herein, such as \"Bitzi\", \"Bitcollider\", or\ + \ \n * \"Bitpedia\". Please take care that your uses of this \n * work do not infringe on\ + \ our trademarks or imply our \n * endorsement. For example, you should change labels \n\ + \ * and identifier strings in your derivative works where \n * appropriate. \n * \n * 4.\ + \ Licensed portions. Some code and libraries may be \n * incorporated in this work in accordance\ + \ with the \n * licenses offered by their respective rightsholders. \n * Further copying,\ + \ use, redistribution and modification \n * of these third-party portions remains subject\ + \ to \n * their original licenses. \n * \n * 5. Disclaimer. THIS SOFTWARE IS PROVIDED BY\ + \ THE AUTHOR \n * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, \n * INCLUDING, BUT NOT\ + \ LIMITED TO, THE IMPLIED WARRANTIES \n * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\ + \ PURPOSE \n * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE \n * FOR ANY DIRECT,\ + \ INDIRECT, INCIDENTAL, SPECIAL, \n * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\ + \ \n * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \n * SERVICES; LOSS OF USE, DATA,\ + \ OR PROFITS; OR BUSINESS \n * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF \n * LIABILITY,\ + \ WHETHER IN CONTRACT, STRICT LIABILITY, OR \n * TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\ + \ ARISING IN \n * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF \n * ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGE. \n * \n * Please see http://bitzi.com/publicdomain or write \n * info@bitzi.com\ + \ for more info. \n */ \n \nWe hope you find our public-domain source code useful, \nbut\ + \ remember that we can provide absolutely no support \nor assurances about it; your use\ + \ is entirely at your \nown risk. \n\nThank you. \n\n- Bitzi \n- March 3, 2001 \n- updated\ + \ July 13, 2006 (clarifying that sometimes our \n- public-domain releases include portions\ + \ that remain \n- under original licenses)" json: bitzi-pd.json - yml: bitzi-pd.yml + yaml: bitzi-pd.yml html: bitzi-pd.html - text: bitzi-pd.LICENSE + license: bitzi-pd.LICENSE - license_key: blas-2017 + category: Permissive spdx_license_key: LicenseRef-scancode-blas-2017 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The reference BLAS is a freely-available software package. It is + available from netlib via anonymous ftp and the World Wide Web. Thus, + it can be included in commercial software packages (and has been). We + only ask that proper credit be given to the authors. + + Like all software, it is copyrighted. It is not trademarked, but we do + ask the following: + + If you modify the source for these routines we ask that you change the + name of the routine and comment the changes made to the original. + + We will gladly answer any questions regarding the software. If a + modification is done, however, it is the responsibility of the person + who modified the routine to provide support json: blas-2017.json - yml: blas-2017.yml + yaml: blas-2017.yml html: blas-2017.html - text: blas-2017.LICENSE + license: blas-2017.LICENSE - license_key: blessing + category: Public Domain spdx_license_key: blessing other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + The author disclaims copyright to this source code. + In place of a legal notice, here is a blessing: + May you do good and not evil. + May you find forgiveness for yourself and forgive others. + May you share freely, never taking more than you give. json: blessing.json - yml: blessing.yml + yaml: blessing.yml html: blessing.html - text: blessing.LICENSE + license: blessing.LICENSE - license_key: blitz-artistic + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-blitz-artistic other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "The `Blitz++ Artistic License'\n(with thanks and apologies to authors of the Perl Artistic\ + \ License)\n\nPreamble\n\nThe intent of this document is to state the conditions under which\ + \ \nBlitz++ may be copied, such that the authors maintains some\nsemblance of artistic control\ + \ over the development of the package,\nwhile giving the users of the package the right\ + \ to use and\ndistribute Blitz++ in a more-or-less customary fashion, plus the\nright to\ + \ make reasonable modifications.\n\nDefinitions\n\n`Library' refers to the collection of\ + \ files distributed by the\nCopyright Holder, and derivatives of that collection of files\n\ + created through textual modification.\n\n`Standard Version' refers to such a Library if\ + \ it has not been\nmodified, or has been modified in accordance with the wishes of the\n\ + Copyright Holder as specified below.\n\nCopyright Holder' is whoever is named in the copyright\ + \ or\ncopyrights for the package.\n\n`You' is you, if you're thinking about copying, modifying\ + \ or\ndistributing this Library.\n\n`Freely Available' means that no fee is charged for\ + \ the item.\nIt also means that recipients of the item may redistribute it \nunder the same\ + \ conditions they received it.\n\n``Reasonable copying fee'' is whatever you can justify\ + \ on the basis\nof media cost, duplication charges, time of people involved, and so\non.\ + \ (You will not be required to justify it to the Copyright Holder,\nbut only to the computing\ + \ community at large as a market that must\nbear the fee.)\n\n1. You may make and give away\ + \ verbatim copies of the \nStandard Version of this Library without restriction, provided\ + \ that\nyou duplicate all of the original copyright notices, this license,\nand associated\ + \ disclaimers. \n\n2. The Standard Version of the Library may be distributed as part\nof\ + \ a collection of software, provided no more than a reasonable\ncopying fee is charged for\ + \ the software collection.\n\n3. You may apply bug fixes, portability fixes and other modifications\n\ + derived from the Public Domain or from the Copyright Holder. A\nLibrary modified in such\ + \ a way shall still be considered the\nStandard Version.\n\n4. You may otherwise modify\ + \ your copy of this Library in any way,\nprovided that you insert a prominent notice in\ + \ each changed file\nstating how and when you changed that file, and provided that you do\n\ + at least ONE of the following:\n\na. place your modifications in the Public Domain or otherwise\n\ + make them Freely Available, such as by posting said\nmodifications to the Blitz++ development\ + \ list, \nand allowing the Copyright Holder to include\nyour modifications in the Standard\ + \ Version of the Library.\n\nb. use the modified Library only within your corporation or\n\ + organization. \n\nc. make other distribution arrangements with the Copyright\nHolder.\n\n\ + 5. You may distribute programs which use this Library\nin object code or executable form\ + \ without restriction.\n\n6. Any object code generated as a result of using this Library\ + \ \ndoes not fall under the copyright of this Library, but\nbelongs to whomever generated\ + \ it, and may be sold commercially.\n\n7. The name of the Copyright Holder or the Library\ + \ may not be used to \nendorse or promote products derived from this software without \n\ + specific prior written permission.\n\n8. THIS PACKAGE IS PROVIDED `AS IS' AND WITHOUT ANY\ + \ EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\nWARRANTIES\ + \ OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE." json: blitz-artistic.json - yml: blitz-artistic.yml + yaml: blitz-artistic.yml html: blitz-artistic.html - text: blitz-artistic.LICENSE + license: blitz-artistic.LICENSE - license_key: bloomberg-blpapi + category: Proprietary Free spdx_license_key: LicenseRef-scancode-bloomberg-blpapi other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Permission is hereby granted, free of charge, to any person obtaining a copy of + this proprietary software and associated documentation files (the "Software"), + to use, publish, or distribute copies of the Software, and to permit persons to + whom the Software is furnished to do so. + + Any other use, including modifying, adapting, reverse engineering, decompiling, + or disassembling, is not permitted. + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. json: bloomberg-blpapi.json - yml: bloomberg-blpapi.yml + yaml: bloomberg-blpapi.yml html: bloomberg-blpapi.html - text: bloomberg-blpapi.LICENSE + license: bloomberg-blpapi.LICENSE - license_key: blueoak-1.0.0 + category: Permissive spdx_license_key: BlueOak-1.0.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + # Blue Oak Model License + + Version 1.0.0 + + ## Purpose + + This license gives everyone as much permission to work with + this software as possible, while protecting contributors + from liability. + + ## Acceptance + + In order to receive this license, you must agree to its + rules. The rules of this license are both obligations + under that agreement and conditions to your license. + You must not do anything with this software that triggers + a rule that you cannot or will not follow. + + ## Copyright + + Each contributor licenses you to do everything with this + software that would otherwise infringe that contributor's + copyright in it. + + ## Notices + + You must ensure that everyone who gets a copy of + any part of this software from you, with or without + changes, also gets the text of this license or a link to + . + + ## Excuse + + If anyone notifies you in writing that you have not + complied with [Notices](#notices), you can keep your + license by taking all practical steps to comply within 30 + days after the notice. If you do not do so, your license + ends immediately. + + ## Patent + + Each contributor licenses you to do everything with this + software that would otherwise infringe any patent claims + they can license or become able to license. + + ## Reliability + + No contributor can revoke this license. + + ## No Liability + + ***As far as the law allows, this software comes as is, + without any warranty or condition, and no contributor + will be liable to anyone for any damages related to this + software or this license, under any kind of legal claim.*** json: blueoak-1.0.0.json - yml: blueoak-1.0.0.yml + yaml: blueoak-1.0.0.yml html: blueoak-1.0.0.html - text: blueoak-1.0.0.LICENSE + license: blueoak-1.0.0.LICENSE - license_key: bohl-0.2 + category: Permissive spdx_license_key: LicenseRef-scancode-bohl-0.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The Balloon Open Hardware License (BOHL)\nVersion 0.2 For Discussion\nThe Text of this\ + \ License is Copyright (c) 2006 2007 iTechnic Ltd\nPermission is granted to copy this license\ + \ unmodified and use it to protect Open Hardware\nDesigns.\n\nPreamble\nThis license agreement\ + \ covers hardware designed, manufactured and distributed on an open basis.\nThe license\ + \ outlines the Terms and Conditions placed on the use of the design. When licensing\nOpen\ + \ Hardware it is important to note that there is a significant distinction between Open\n\ + Hardware and Open Software particularly with respect to both the design process and the\n\ + replication process.\nFirstly the design and replication of hardware is different because\ + \ there are intermediate steps in\nthe processes that are valuable in their own right. Secondly\ + \ the process of replication can involve\nconsiderable time, cost and expertise. For these\ + \ reasons it is not appropriate to simply transfer\nlicenses that have validity in the software\ + \ domain (such as the GPL) to the hardware domain.\nThis license is intended to establish\ + \ an Open Design approach in the hardware domain while\nbuilding in practical safeguards,\ + \ which are necessary for the design and manufacture of hardware,\nwhere manufacturers take\ + \ a financial and legal risk when replicating Open Hardware and where\nthe physical product\ + \ must conform to approvals if its sale is to be legal. It is also important to\nprotect\ + \ designers from issues of liability particularly as many designers may be working as\n\ + individuals and therefore not protected by an employer.\nThe license is written to apply\ + \ to any type of hardware produced using an Open Hardware design\nprocess. It has originated\ + \ from the Balloon Project (www.balloonboard.org) but the license can be\nfreely applied\ + \ to any Open Hardware.\nIn order to augment the text of the license it is accompanied by\ + \ Notes and Appendices. The\nnotes help to provide interpretation and guidance within the\ + \ text of the license and the\nappendices contain more detailed discussions about the operation\ + \ of the license and detail the\ntypes of Manufacturing Information and Design Documentation\ + \ that might be provided as a part\nof any Open Hardware Design. The notes do not form part\ + \ of the License but are intended to\nclarify the intention of the license. The Appendices\ + \ are intended to provide uniformity to the way\nthat hardware designs are released and\ + \ managed when using this license.\n{Notes occur in the text of the License between curly\ + \ brackets and in italics}\n\nPurpose\nThe purpose of this license is to protect the designers\ + \ of the hardware from any form of litigation\nresulting from its design, manufacture, distribution\ + \ or use. \nIt is also the purpose of this license to ensure that the design remains Open\ + \ in the sense detailed\nin the license and that manufacturers, distributors, and users\ + \ are obliged to adhere to the Open\nprinciples of the design and to protect their rights\ + \ to access the design as specified in the license." json: bohl-0.2.json - yml: bohl-0.2.yml + yaml: bohl-0.2.yml html: bohl-0.2.html - text: bohl-0.2.LICENSE + license: bohl-0.2.LICENSE - license_key: boost-1.0 + category: Permissive spdx_license_key: BSL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Boost Software License - Version 1.0 - August 17th, 2003 + + Permission is hereby granted, free of charge, to any person or organization + obtaining a copy of the software and accompanying documentation covered by + this license (the "Software") to use, reproduce, display, distribute, + execute, and transmit the Software, and to prepare derivative works of the + Software, and to permit third-parties to whom the Software is furnished to + do so, all subject to the following: + + The copyright notices in the Software and this entire statement, including + the above license grant, this restriction and the following disclaimer, + must be included in all copies of the Software, in whole or in part, and + all derivative works of the Software, unless such copies or derivative + works are solely in the form of machine-executable object code generated by + a source language processor. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT + SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE + FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. json: boost-1.0.json - yml: boost-1.0.yml + yaml: boost-1.0.yml html: boost-1.0.html - text: boost-1.0.LICENSE + license: boost-1.0.LICENSE - license_key: boost-original + category: Permissive spdx_license_key: LicenseRef-scancode-boost-original other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to copy, use, modify, sell and distribute this software is granted + provided this copyright notice appears in all copies. This software is provided "as + is" without express or implied warranty, and with no claim as to its suitability for + any purpose. json: boost-original.json - yml: boost-original.yml + yaml: boost-original.yml html: boost-original.html - text: boost-original.LICENSE + license: boost-original.LICENSE - license_key: bootloader-exception + category: Copyleft Limited spdx_license_key: Bootloader-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + Bootloader Exception + + In addition to the permissions in the GNU General Public License, the authors give you unlimited permission to link or embed compiled bootloader and related files into combinations with other programs, and to distribute those combinations without any restriction coming from the use of those files. (The General Public License restrictions do apply in other respects; for example, they cover modification of the files, and distribution when not linked into a combined executable.) json: bootloader-exception.json - yml: bootloader-exception.yml + yaml: bootloader-exception.yml html: bootloader-exception.html - text: bootloader-exception.LICENSE + license: bootloader-exception.LICENSE - license_key: borceux + category: Permissive spdx_license_key: Borceux other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Copyright 1993 Francis Borceux + You may freely use, modify, and/or distribute each of the files in this package without limitation. The package consists of the following files: + + README + compatibility/OldDiagram + compatibility/OldMaxiDiagram + compatibility/OldMicroDiagram + compatibility/OldMiniDiagram + compatibility/OldMultipleArrows + diagram/Diagram + diagram/MaxiDiagram + diagram/MicroDiagram + diagram/MiniDiagram + diagram/MultipleArrows + user-guides/Diagram_Mode_d_Emploi + user-guides/Diagram_Read_Me + + Of course no support is guaranteed, but the author will attempt to assist with problems. Current email address: + francis dot borceux at uclouvain dot be. json: borceux.json - yml: borceux.yml + yaml: borceux.yml html: borceux.html - text: borceux.LICENSE + license: borceux.LICENSE +- license_key: boutell-libgd-2021 + category: Permissive + spdx_license_key: LicenseRef-scancode-boutell-libgd-2021 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + * Permission to use, copy, modify, and distribute this software and its + * documentation for any purpose and without fee is hereby granted, provided + * that the above copyright notice appear in all copies and that both that + * copyright notice and this permission notice appear in supporting + * documentation. This software is provided "AS IS." Thomas Boutell and + * Boutell.Com, Inc. disclaim all warranties, either express or implied, + * including but not limited to implied warranties of merchantability and + * fitness for a particular purpose, with respect to this code and accompanying + * documentation. + json: boutell-libgd-2021.json + yaml: boutell-libgd-2021.yml + html: boutell-libgd-2021.html + license: boutell-libgd-2021.LICENSE - license_key: bpel4ws-spec + category: Proprietary Free spdx_license_key: LicenseRef-scancode-bpel4ws-spec other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + [BPEL4WS Specification Version 1,1 Dated May 5, 2003, Copyright statement] + + Copyright (c) 2002, 2003 BEA Systems, International Business Machines + Corporation, Microsoft Corporation, SAP AG, Siebel Systems. All rights + reserved. + + Permission to copy and display the "Business Process Execution Language for + Web Services Specification, version 1.1 dated May 5, 2003" (hereafter "the + BPEL4WS Specification"), in any medium without fee or royalty is hereby + granted, provided that you include the following on ALL copies of the + BPEL4WS Specification, or portions thereof, that you make: + + A link to the BPEL4WS Specification at these locations: + http://dev2dev.bea.com/technologies/webservices/BPEL4WS.jsp + http://www-106.ibm.com/developerworks/webservices/library/ws-bpel/ + http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbiz2k2/html/bpel1-1.asp + http://ifr.sap.com/bpel4ws/ + http://www.siebel.com/bpel + + The copyright notice as shown in the BPEL4WS Specification: + + BEA, IBM, Microsoft, SAP AG and Siebel Systems (collectively, the + "Authors") agree to grant you a royalty-free license, under reasonable, + non-discriminatory terms and conditions, to patents that they deem + necessary to implement the Business Process Execution Language for Web + Services Specification. + + THE Business Process Execution Language for Web Services SPECIFICATION + IS PROVIDED "AS IS," AND THE AUTHORS MAKE NO REPRESENTATIONS OR + WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON- + INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE BPEL4WS SPECIFICATION + ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH + CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, + TRADEMARKS OR OTHER RIGHTS. + + THE AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, + INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO ANY + USE OR DISTRIBUTION OF THE BPEL4WS SPECIFICATION. + + The name and trademarks of the Authors may NOT be used in any manner, + including advertising or publicity pertaining to the BPEL4WS + Specification or its contents without specific, written prior + permission. Title to copyright in the BPEL4WS Specification will at all + times remain with the Authors. + + No other rights are granted by implication, estoppel or otherwise. json: bpel4ws-spec.json - yml: bpel4ws-spec.yml + yaml: bpel4ws-spec.yml html: bpel4ws-spec.html - text: bpel4ws-spec.LICENSE + license: bpel4ws-spec.LICENSE - license_key: bpmn-io + category: Permissive spdx_license_key: LicenseRef-scancode-bpmn-io other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 source code responsible for displaying the bpmn.io logo (two green cogwheels + in a box) that links back to http://bpmn.io as part of rendered diagrams MUST + NOT be removed or changed. When this software is being used in a website or + application, the logo must stay fully visible and not visually overlapped by + other elements. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. json: bpmn-io.json - yml: bpmn-io.yml + yaml: bpmn-io.yml html: bpmn-io.html - text: bpmn-io.LICENSE + license: bpmn-io.LICENSE - license_key: brad-martinez-vb-32 + category: Free Restricted spdx_license_key: LicenseRef-scancode-brad-martinez-vb-32 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "The Rules\n\nUnless noted otherwise, all files and code available on this site are\ + \ authored by Brad Martinez, who retains exclusive copyright protection and distribution\ + \ rights. \n\nDevelopers are free to use any code or concepts presented on this site in\ + \ their applications without liability or compensation, but the courtesy of both notification\ + \ of use and inclusion of due credit are requested.\n\nIt is PROHIBITED to distribute or\ + \ reproduce any of the files or code found in this site for profit or otherwise, on any\ + \ web site, ftp server or BBS, or by any other means, including CD-ROM or other physical\ + \ media, without the EXPRESS WRITTEN PERMISSION of the author.\n\nThe Questions\n\nDue to\ + \ an inordinate amount of email I receive regarding development specific questions, I find\ + \ it sometimes difficult to respond. If you don't hear from me, I recommend searching either\ + \ Microsoft's MSDN Library Online, Microsoft's Online Support Knowledge Base, or Deja News\ + \ newsgroup archives for answers to your Visual Basic related questions.\n\nYou may find\ + \ me frequenting some of the \"vb\" newsgroups on the Microsoft news server msnews.microsoft.com,\ + \ and on occasion, the \"vb\" newsgroups on the news server news.devx.com.\n\nThe Disclaimer\n\ + \nNo warranty is implied as to the accuracy and/or reliability of the programs and code\ + \ available on this site. The developer assumes all risk." json: brad-martinez-vb-32.json - yml: brad-martinez-vb-32.yml + yaml: brad-martinez-vb-32.yml html: brad-martinez-vb-32.html - text: brad-martinez-vb-32.LICENSE + license: brad-martinez-vb-32.LICENSE +- license_key: brankas-open-license-1.0 + category: Free Restricted + spdx_license_key: LicenseRef-scancode-brankas-open-license-1.0 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + BRANKAS OPEN LICENSE + Version 1.0, September 2022 + + Preamble + + This License establishes the terms under which the Software under this License may be copied, modified, distributed, or redistributed. + + Definitions + + 2.1. “Derivative Works” shall mean any work, whether in Source Form or Object Form, that is based on (or derived from) the Software and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship and not an exact or repackaged copy of the Software. It includes proprietary complements, add-ons, modules, or modifications to the Object Form that link to the interfaces of the Software and the Derivative Works thereof. It shall include, among others: + + 2.1.1. Any software that results from an addition to, deletion from, or modification of the contents of a file containing Original Software or Derivative Works thereof; and + + 2.1.2. Any new file that is contributed or otherwise made available under the terms of this License. + + 2.1.3. “License” means the terms and conditions for use, reproduction, and distribution as defined in this document. + + 2.1.4. “Licensor” shall mean Brankas, its affiliates, subsidiaries, or permitted assigns. + + 2.1.5. “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. + + 2.1.6. “Original Software” means the Source Code of computer software code that was originally released under this License. + + 2.1.7. “Software” means (a) the Original Software; (b) Derivative Works; or (c) the combination of files containing Original Software with files containing Derivative Works, in each case, including portions thereof. + + 2.1.8. “Source Code” means (a) the common form of computer software code in which modifications are made, and (b) associated documentation included in or with such code. + + 2.1.9. “Source Form” shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + + 2.1.10. “You” means an individual or a legal entity exercising rights under this License. For legal entities, “You” includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of an entity, whether by contract or otherwise; or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of an entity. + + Grants + + 3.1. Copyright License + The Licensor grants you a perpetual, non-exclusive, royalty-free, worldwide, non-sublicensable, non-transferable license to use, copy, modify, distribute, make available, display, and prepare Derivative Works of the Software, in each case subject to the limitations and conditions of this License. + + 3.1.1. Right to Distribute + Subject to Clause 5, you may distribute the Derivative Works of the Software, provided that you have clear documentation as to how your Derivative Works differ from the Original Software. You are not required to make such documentation public. + + 3.1.2. Aggregation + Subject to Clause 5, you may aggregate the Original Software with Derivative Works in Object Form or Source Form and distribute the resulting aggregation. + + 3.2. Patent License + The Licensor grants You a license, under any patent claims the Licensor can license or becomes able to license, to make, have made, use, sell, offer for sale, import, and have imported the software, in each case subject to the limitations and conditions in this License. + + Effective date + + 4.1. The licenses required and granted under Clause 3 with respect to any Derivative Works become effective, for each Derivative Works, on the date you first distribute such Derivative Works. + + Limitations and Conditions of this License + + 5.1. You may not, whether by yourself or with other persons, provide the Software, whether in a repackaged version thereof or in a resulting aggregation with Derivative Works, to a third party as a hosted or managed service, including where you will provide access to any substantial set of the features or functionality of the Software. + + Your Responsibilities + + 6.1. The Derivative Works that you create or to which you contribute are governed by the terms of this License. You represent that the Derivative Works are your original creation(s), as clearly documented by you, and/or you have sufficient rights to grant the rights conveyed by this License. + + 6.2. You assume full responsibility for informing the recipients of this Software of the terms of this License, and how they can obtain a copy of this License. + + 6.3. In incorporating Derivative Works into this Software, you must include a statement in your license to that effect in the aggregated Software. + + Termination + + 7.1. If you violate the terms of this License, your use is not licensed and will result in the termination of the licenses granted to you hereunder. + + 7.2. If the Licensor provides you with a notice of your violation, you shall cease all violations of this license no later than 30 days after receipt of that notice and your licenses will be reinstated retroactively. + + 7.3. If you violate the terms of this License after such reinstatement under Clause 7.2, any subsequent violations of these terms will result in the termination of your license automatically and permanently. + + 7.4. This License does not cover any patent claims that you cause to be infringed by Derivative Works or additions to the Software. Should you make any written claim that the Software infringes or contributes to infringement of any patent, the patent license for this Software granted under the terms of this License ends immediately. If Your representative makes a patent claim, the patent license granted under this License likewise ends immediately. + + Disclaimer of Warranty + + 8.1. Unless required by applicable law or agreed to in writing, the Licensor provides the Software 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 Software and assume any risks associated with Your exercise of permissions under this License. + + Limitation of Liability + + 9.1. 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 the Licensor 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 Software (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 the Licensor has been advised of the possibility of such damages. + + General + + 10.1. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + + 10.2. This License shall not be enforceable except by a Licensor acting as such, and third-party beneficiary rights are specifically excluded. + json: brankas-open-license-1.0.json + yaml: brankas-open-license-1.0.yml + html: brankas-open-license-1.0.html + license: brankas-open-license-1.0.LICENSE - license_key: brent-corkum + category: Permissive spdx_license_key: LicenseRef-scancode-brent-corkum other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Brent Corkum License\n\nDate : April 2002 \nAuthor : Brent Corkum Email : corkum@rocscience.com\ + \ \nLatest Version : http:www.rocscience.com/~corkum/BCMenu.html\n\nBug Fixes and portions\ + \ of code supplied by:\n\nBen Ashley,Girish Bharadwaj,Jean-Edouard Lachand-Robert, Robert\ + \ Edward Caldecott,Kenny Goers,Leonardo Zide, Stefan Kuhr,Reiner Jung,Martin Vladic,Kim\ + \ Yoo Chul, Oz Solomonovich,Tongzhe Cui,Stephane Clog,Warren Stevens, Damir Valiulin,David\ + \ Kinder,Marc Loiry\n\nYou are free to use/modify this code but leave this header intact.\ + \ This class is public domain so you are free to use it any of your applications (Freeware,Shareware,Commercial).\ + \ All I ask is that you let me know so that if you have a real winner I can brag to my buddies\ + \ that some of my code is in your app. I also wouldn't mind if you sent me a copy of your\ + \ application since I like to play with new stuff." json: brent-corkum.json - yml: brent-corkum.yml + yaml: brent-corkum.yml html: brent-corkum.html - text: brent-corkum.LICENSE + license: brent-corkum.LICENSE - license_key: brian-clapper + category: Permissive spdx_license_key: LicenseRef-scancode-brian-clapper other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms are + permitted provided that: (1) source distributions retain + this entire copyright notice and comment; (2) modifications + made to the software are prominently mentioned, and a copy + of the original software (or a pointer to its location) are + included; and (3) distributions including binaries display + the following acknowledgement: "This product includes + software developed by Brian M. Clapper " + in the documentation or other materials provided with the + distribution. The name of the author may not be used to + endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS + OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE. + + Effectively, this means you can do what you want with the software + except remove this notice or take advantage of the author's name. + If you modify the software and redistribute your modified version, + you must indicate that your version is a modification of the + original, and you must provide either a pointer to or a copy of the + original. json: brian-clapper.json - yml: brian-clapper.yml + yaml: brian-clapper.yml html: brian-clapper.html - text: brian-clapper.LICENSE + license: brian-clapper.LICENSE - license_key: brian-gladman + category: Permissive spdx_license_key: LicenseRef-scancode-brian-gladman other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The redistribution and use of this software (with or without changes) + is allowed without the payment of fees or royalties provided that: + + source code distributions include the above copyright notice, this + list of conditions and the following disclaimer; + + binary distributions include the above copyright notice, this list + of conditions and the following disclaimer in their documentation. + + This software is provided 'as is' with no explicit or implied warranties + in respect of its operation, including, but not limited to, correctness + and fitness for purpose. json: brian-gladman.json - yml: brian-gladman.yml + yaml: brian-gladman.yml html: brian-gladman.html - text: brian-gladman.LICENSE + license: brian-gladman.LICENSE - license_key: brian-gladman-3-clause + category: Permissive spdx_license_key: LicenseRef-scancode-brian-gladman-3-clause other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + LICENSE TERMS + + The free distribution and use of this software in both source and binary + form is allowed (with or without changes) provided that: + + 1. distributions of this source code include the above copyright + notice, this list of conditions and the following disclaimer; + + 2. distributions in binary form include the above copyright + notice, this list of conditions and the following disclaimer + in the documentation and/or other associated materials; + + 3. the copyright holder's name is not used to endorse products + built using this software without specific written permission. + + DISCLAIMER + + This software is provided 'as is' with no explicit or implied warranties + in respect of its properties, including, but not limited to, correctness + and fitness for purpose. json: brian-gladman-3-clause.json - yml: brian-gladman-3-clause.yml + yaml: brian-gladman-3-clause.yml html: brian-gladman-3-clause.html - text: brian-gladman-3-clause.LICENSE + license: brian-gladman-3-clause.LICENSE - license_key: brian-gladman-dual + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + LICENSE TERMS + + The free distribution and use of this software in both source and binary + form is allowed (with or without changes) provided that: + + 1. distributions of this source code include the above copyright + notice, this list of conditions and the following disclaimer; + + 2. distributions in binary form include the above copyright + notice, this list of conditions and the following disclaimer + in the documentation and/or other associated materials; + + 3. the copyright holder's name is not used to endorse products + built using this software without specific written permission. + + ALTERNATIVELY, provided that this notice is retained in full, this product + may be distributed under the terms of the GNU General Public License (GPL), + of your choice + in which case the provisions of the GPL apply INSTEAD OF those given above. + + DISCLAIMER + + This software is provided 'as is' with no explicit or implied warranties + in respect of its properties, including, but not limited to, correctness + and/or fitness for purpose. json: brian-gladman-dual.json - yml: brian-gladman-dual.yml + yaml: brian-gladman-dual.yml html: brian-gladman-dual.html - text: brian-gladman-dual.LICENSE + license: brian-gladman-dual.LICENSE - license_key: broadcom-cfe + category: Permissive spdx_license_key: LicenseRef-scancode-broadcom-cfe other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This software is furnished under license and may be used and copied only in + accordance with the following terms and conditions. Subject to these conditions, you + may download, copy, install, use, modify and distribute modified or unmodified copies + of this software in source and/or binary form. No title or ownership is transferred + hereby. + + 1) Any source code used, modified or distributed must reproduce and retain this + copyright notice and list of conditions as they appear in the source file. + + 2) No right is granted to use any trade name, trademark, or logo of Broadcom + Corporation. Neither the "Broadcom Corporation" name nor any trademark or logo of + Broadcom Corporation may be used to endorse or promote products derived from this + software without the prior written permission of Broadcom Corporation. + + 3) THIS SOFTWARE IS PROVIDED "AS-IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING + BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL BROADCOM BE + LIABLE FOR ANY DAMAGES WHATSOEVER, AND IN PARTICULAR, BROADCOM SHALL NOT BE LIABLE + FOR 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), EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. json: broadcom-cfe.json - yml: broadcom-cfe.yml + yaml: broadcom-cfe.yml html: broadcom-cfe.html - text: broadcom-cfe.LICENSE + license: broadcom-cfe.LICENSE - license_key: broadcom-commercial + category: Commercial spdx_license_key: LicenseRef-scancode-broadcom-commercial other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + Confidential Property of Broadcom Corporation + + THIS SOFTWARE MAY ONLY BE USED SUBJECT TO AN EXECUTED SOFTWARE LICENSE + AGREEMENT BETWEEN THE USER AND BROADCOM. YOU HAVE NO RIGHT TO USE OR + EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT. json: broadcom-commercial.json - yml: broadcom-commercial.yml + yaml: broadcom-commercial.yml html: broadcom-commercial.html - text: broadcom-commercial.LICENSE + license: broadcom-commercial.LICENSE - license_key: broadcom-confidential + category: Commercial spdx_license_key: LicenseRef-scancode-broadcom-confidential other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + No portions of this material may be reproduced in any form without the written permission of: + Broadcom Corporation + 16251 Laguna Canyon Road + Irvine, California 92618 + All information contained in this document is Broadcom Corporation company private, proprietary, and trade secret. json: broadcom-confidential.json - yml: broadcom-confidential.yml + yaml: broadcom-confidential.yml html: broadcom-confidential.html - text: broadcom-confidential.LICENSE + license: broadcom-confidential.LICENSE - license_key: broadcom-dual + category: Copyleft spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Copyleft + text: | + Unless you and Broadcom execute a separate written software license agreement + governing use of this software, this software is licensed to you under the + terms of the GNU General Public License version 2, available at + + http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). + + Notwithstanding the above, under no circumstances may you combine this software + in any way with any other Broadcom software provided under a license other than + the GPL, without Broadcom's express prior written consent. json: broadcom-dual.json - yml: broadcom-dual.yml + yaml: broadcom-dual.yml html: broadcom-dual.html - text: broadcom-dual.LICENSE + license: broadcom-dual.LICENSE - license_key: broadcom-linking-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-bcm-linking-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, the copyright holders of this software give you permission to link this software with independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. + + An independent module is a module which is not derived from this software. The special exception does not apply to any modifications of the software. + + Not withstanding the above, under no circumstances may you combine this software in any way with any other Broadcom software provided under a license other than the GPL, without Broadcom's express prior written consent. json: broadcom-linking-exception-2.0.json - yml: broadcom-linking-exception-2.0.yml + yaml: broadcom-linking-exception-2.0.yml html: broadcom-linking-exception-2.0.html - text: broadcom-linking-exception-2.0.LICENSE + license: broadcom-linking-exception-2.0.LICENSE - license_key: broadcom-linking-unmodified + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-broadcom-linking-unmodified other_spdx_license_keys: [] is_exception: yes - is_deprecated: no - category: Copyleft Limited + is_deprecated: yes + text: | + As a special exception, the copyright holders of this software give you + permission to link this software with independent modules, and to copy + and distribute the resulting executable under terms of your choice, + provided that you also meet, for each linked independent module, the + terms and conditions of the license of that module. + + An independent module is a module which is not derived from this + software. The special exception does not apply to any modifications of + the software. json: broadcom-linking-unmodified.json - yml: broadcom-linking-unmodified.yml + yaml: broadcom-linking-unmodified.yml html: broadcom-linking-unmodified.html - text: broadcom-linking-unmodified.LICENSE + license: broadcom-linking-unmodified.LICENSE - license_key: broadcom-linux-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-broadcom-linux-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "SOFTWARE LICENSE AGREEMENT\n\nThe accompanying software in binary code form (“Software”),\ + \ is licensed to you,\nor, if you are accepting on behalf of an entity, the entity and its\ + \ affiliates\nexercising rights hereunder (“Licensee”) subject to the terms of this software\n\ + license agreement (“Agreement”), unless Licensee and Broadcom Corporation\n(“Broadcom”)\ + \ execute a separate written software license agreement governing\nuse of the Software.\ + \ ANY USE, REPRODUCTION, OR DISTRIBUTION OF THE SOFTWARE\nCONSTITUTES LICENSEE’S ACCEPTANCE\ + \ OF THIS AGREEMENT.\n\n1.\tLicense. Subject to the terms and conditions of this Agreement,\n\ + Broadcom hereby grants to Licensee a limited, non-exclusive, non-transferable,\nroyalty-free\ + \ license: (i) to use and integrate the Software with any other\nsoftware; and (ii) to reproduce\ + \ and distribute the Software complete,\nunmodified, and as provided by Broadcom, solely\ + \ for use with Broadcom\nproprietary integrated circuit product(s) sold by Broadcom with\ + \ which the\nSoftware was designed to be used, or their successors.\n\n2.\tRestrictions.\ + \ Licensee shall distribute Software with a copy of this\nAgreement. Licensee shall not\ + \ remove, efface or obscure any copyright or\ntrademark notices from the Software. Reproductions\ + \ of the Broadcom copyright\nnotice shall be included with each copy of the Software, except\ + \ where such\nSoftware is embedded in a manner not readily accessible to the end user.\n\ + Licensee shall not: (i) use, license, sell or otherwise distribute the Software\nexcept\ + \ as provided in this Agreement; (ii) attempt to modify in any way,\nreverse engineer, decompile\ + \ or disassemble any portion of the Software; or\n(iii) use the Software or other material\ + \ in violation of any applicable law or\nregulation, including but not limited to any regulatory\ + \ agency. This Agreement\nshall automatically terminate upon Licensee’s failure to comply\ + \ with any of the\nterms of this Agreement. In such event, Licensee will destroy all copies\ + \ of the\nSoftware and its component parts.\n\n3.\tOwnership. The Software is licensed and\ + \ not sold. Title to and\nownership of the Software, including all intellectual property\ + \ rights thereto,\nand any portion thereof remain with Broadcom or its licensors. Licensee\ + \ hereby\ncovenants that it will not assert any claim that the Software created by or for\n\ + Broadcom infringe any intellectual property right owned or controlled by\nLicensee.\n\n\ + 4. \tDisclaimer. THE SOFTWARE IS OFFERED “AS IS,” AND BROADCOM PROVIDES AND\nGRANTS\ + \ AND LICENSEE RECEIVES NO SUPPORT AND NO WARRANTIES OF ANY KIND, EXPRESS\nOR IMPLIED, BY\ + \ STATUTE, COMMUNICATION OR CONDUCT WITH LICENSEE, OR OTHERWISE.\nBROADCOM SPECIFICALLY\ + \ DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A SPECIFIC PURPOSE,\ + \ OR NONINFRINGEMENT CONCERNING THE SOFTWARE OR\nANY UPGRADES TO OR DOCUMENTATION FOR THE\ + \ SOFTWARE. WITHOUT LIMITATION OF THE\nABOVE, BROADCOM GRANTS NO WARRANTY THAT THE SOFTWARE\ + \ IS ERROR-FREE OR WILL\nOPERATE WITHOUT INTERRUPTION, AND GRANTS NO WARRANTY REGARDING\ + \ ITS USE OR THE\nRESULTS THEREFROM INCLUDING, WITHOUT LIMITATION, ITS CORRECTNESS, ACCURACY,\ + \ OR\nRELIABILITY. TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL BROADCOM\n\ + OR ANY OF ITS LICENSORS HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL,\ + \ OR CONSEQUENTIAL DAMAGES, HOWEVER CAUSED AND ON ANY THEORY\nOF LIABILITY, WHETHER FOR\ + \ BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE) OR\nOTHERWISE, ARISING OUT OF THIS AGREEMENT\ + \ OR USE, REPRODUCTION, OR DISTRIBUTION\nOF THE SOFTWARE, INCLUDING BUT NOT LIMITED TO LOSS\ + \ OF DATA AND LOSS OF PROFITS,\nEVEN IF SUCH PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\ + \ SUCH DAMAGES. THESE\nLIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL\ + \ PURPOSE OF ANY\nLIMITED REMEDY.\n\n5. \tExport Laws. LICENSEE UNDERSTANDS AND AGREES\ + \ THAT THE SOFTWARE IS\nSUBJECT TO UNITED STATES AND OTHER APPLICABLE EXPORT-RELATED LAWS\ + \ AND\nREGULATIONS AND THAT LICENSEE MAY NOT EXPORT, RE-EXPORT OR TRANSFER THE\nSOFTWARE\ + \ OR ANY DIRECT PRODUCT OF THE SOFTWARE EXCEPT AS PERMITTED UNDER THOSE\nLAWS. WITHOUT LIMITING\ + \ THE FOREGOING, EXPORT, RE-EXPORT, OR TRANSFER OF THE\nSOFTWARE TO CUBA, IRAN, NORTH KOREA,\ + \ SUDAN, AND SYRIA IS PROHIBITED." json: broadcom-linux-firmware.json - yml: broadcom-linux-firmware.yml + yaml: broadcom-linux-firmware.yml html: broadcom-linux-firmware.html - text: broadcom-linux-firmware.LICENSE + license: broadcom-linux-firmware.LICENSE - license_key: broadcom-linux-timer + category: Permissive spdx_license_key: LicenseRef-scancode-broadcom-linux-timer other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Copyright (c) Broadcom Corporation All Rights Reserved. \n\nTHIS SOFTWARE IS OFFERED\ + \ \"AS IS\", AND BROADCOM GRANTS NO WARRANTIES OF\nANY KIND, EXPRESS OR IMPLIED, BY STATUTE,\ + \ COMMUNICATION OR OTHERWISE.\nBROADCOM SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF\n\ + MERCHANTABILITY, FITNESS FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT\nCONCERNING THIS SOFTWARE.\n\ + \nLow resolution timer interface linux specific implementation." json: broadcom-linux-timer.json - yml: broadcom-linux-timer.yml + yaml: broadcom-linux-timer.yml html: broadcom-linux-timer.html - text: broadcom-linux-timer.LICENSE + license: broadcom-linux-timer.LICENSE - license_key: broadcom-proprietary + category: Proprietary Free spdx_license_key: LicenseRef-scancode-broadcom-proprietary other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "SOFTWARE LICENSE AGREEMENT \n \nUnless you and Broadcom Corporation (\"Broadcom\")\ + \ execute a separate written \nsoftware license agreement governing use of the accompanying\ + \ software, this \nsoftware is licensed to you under the terms of this Software License\ + \ \nAgreement (\"Agreement\"). \n \nANY USE, REPRODUCTION OR DISTRIBUTION OF THE SOFTWARE\ + \ CONSTITUTES YOUR \nACCEPTANCE OF THIS AGREEMENT. \n \n1.\tDEFINITIONS. \n \n1.1.\t\"Broadcom\ + \ Product\" means any of the proprietary integrated circuit \nproduct(s) sold by Broadcom\ + \ with which the Software was designed to be used, \nor their successors. \n \n1.2.\t\"\ + Licensee\" means you or if you are accepting on behalf of an entity \nthen the entity and\ + \ its affiliates exercising rights under, and complying \nwith all of the terms of this\ + \ Agreement. \n \n1.3.\t\"Software\" shall mean that software made available by Broadcom\ + \ to \nLicensee in binary code form with this Agreement. \n \n2.\tLICENSE GRANT; OWNERSHIP\ + \ \n \n2.1.\tLicense Grants. Subject to the terms and conditions of this Agreement, \n\ + Broadcom hereby grants to Licensee a non-exclusive, non-transferable, \nroyalty-free license\ + \ (i) to use and integrate the Software in conjunction \nwith any other software; and (ii)\ + \ to reproduce and distribute the Software \ncomplete, unmodified and only for use with\ + \ a Broadcom Product. \n \n2.2.\tRestriction on Modification. If and to the extent that\ + \ the Software is \ndesigned to be compliant with any published communications standard\ + \ \n(including, without limitation, DOCSIS, HomePNA, IEEE, and ITU standards), \nLicensee\ + \ may not make any modifications to the Software that would cause the \nSoftware or the\ + \ accompanying Broadcom Products to be incompatible with such \nstandard. \n \n2.3.\t\ + Restriction on Distribution. Licensee shall only distribute the \nSoftware (a) under the\ + \ terms of this Agreement and a copy of this Agreement \naccompanies such distribution,\ + \ and (b) agrees to defend and indemnify \nBroadcom and its licensors from and against any\ + \ damages, costs, liabilities, \nsettlement amounts and/or expenses (including attorneys'\ + \ fees) incurred in \nconnection with any claim, lawsuit or action by any third party that\ + \ arises \nor results from the use or distribution of any and all Software by the \nLicensee\ + \ except as contemplated herein. \n \n2.4.\tProprietary Notices. Licensee shall not remove,\ + \ efface or obscure any \ncopyright or trademark notices from the Software. Licensee shall\ + \ include \nreproductions of the Broadcom copyright notice with each copy of the \nSoftware,\ + \ except where such Software is embedded in a manner not readily \naccessible to the end\ + \ user. Licensee acknowledges that any symbols, \ntrademarks, tradenames, and service marks\ + \ adopted by Broadcom to identify the \nSoftware belong to Broadcom and that Licensee shall\ + \ have no rights therein. \n \n2.5.\tOwnership. Broadcom shall retain all right, title\ + \ and interest, \nincluding all intellectual property rights, in and to the Software. Licensee\ + \ \nhereby covenants that it will not assert any claim that the Software created \nby or\ + \ for Broadcom infringe any intellectual property right owned or \ncontrolled by Licensee.\ + \ \n \n2.6.\tNo Other Rights Granted; Restrictions. Apart from the license rights \nexpressly\ + \ set forth in this Agreement, Broadcom does not grant and Licensee \ndoes not receive any\ + \ ownership right, title or interest nor any security \ninterest or other interest in any\ + \ intellectual property rights relating to \nthe Software, nor in any copy of any part of\ + \ the foregoing. No license is \ngranted to Licensee in any human readable code of the\ + \ Software (source code). \nLicensee shall not (i) use, license, sell or otherwise distribute\ + \ the \nSoftware except as provided in this Agreement, (ii) attempt to reverse \nengineer,\ + \ decompile or disassemble any portion of the Software; or (iii) use \nthe Software or other\ + \ material in violation of any applicable law or \nregulation, including but not limited\ + \ to any regulatory agency, such as FCC, \nrules. \n \n3.\tNO WARRANTY OR SUPPORT \n \n\ + 3.1.\tNo Warranty. THE SOFTWARE IS OFFERED \"AS IS,\" AND BROADCOM GRANTS AND \nLICENSEE\ + \ RECEIVES NO WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, BY STATUTE, \nCOMMUNICATION OR\ + \ CONDUCT WITH LICENSEE, OR OTHERWISE. BROADCOM SPECIFICALLY \nDISCLAIMS ANY IMPLIED WARRANTIES\ + \ OF MERCHANTABILITY, FITNESS FOR A SPECIFIC \nPURPOSE OR NONINFRINGEMENT CONCERNING THE\ + \ SOFTWARE OR ANY UPGRADES TO OR \nDOCUMENTATION FOR THE SOFTWARE. WITHOUT LIMITATION OF\ + \ THE ABOVE, BROADCOM \nGRANTS NO WARRANTY THAT THE SOFTWARE IS ERROR-FREE OR WILL OPERATE\ + \ WITHOUT \nINTERRUPTION, AND GRANTS NO WARRANTY REGARDING ITS USE OR THE RESULTS \nTHEREFROM\ + \ INCLUDING, WITHOUT LIMITATION, ITS CORRECTNESS, ACCURACY OR \nRELIABILITY. \n \n3.2.\t\ + No Support. Nothing in this agreement shall obligate Broadcom to \nprovide any support\ + \ for the Software. Broadcom may, but shall be under no \nobligation to, correct any defects\ + \ in the Software and/or provide updates to \nlicensees of the Software. Licensee shall\ + \ make reasonable efforts to \npromptly report to Broadcom any defects it finds in the Software,\ + \ as an aid \nto creating improved revisions of the Software. \n \n3.3.\tDangerous Applications.\ + \ The Software is not designed, intended, or \ncertified for use in components of systems\ + \ intended for the operation of \nweapons, weapons systems, nuclear installations, means\ + \ of mass \ntransportation, aviation, life-support computers or equipment (including \n\ + resuscitation equipment and surgical implants), pollution control, hazardous \nsubstances\ + \ management, or for any other dangerous application in which the \nfailure of the Software\ + \ could create a situation where personal injury or \ndeath may occur. Licensee understands\ + \ that use of the Software in such \napplications is fully at the risk of Licensee. \n \n\ + 4.\tTERM AND TERMINATION \n \n4.1.\tTermination. This Agreement will automatically terminate\ + \ if Licensee \nfails to comply with any of the terms and conditions hereof. In such event,\ + \ \nLicensee must destroy all copies of the Software and all of its component \nparts. \n\ + \ \n4.2.\tEffect Of Termination. Upon any termination of this Agreement, the \nrights and\ + \ licenses granted to Licensee under this Agreement shall \nimmediately terminate. \n \n\ + 4.3.\tSurvival. The rights and obligations under this Agreement which by \ntheir nature\ + \ should survive termination will remain in effect after \nexpiration or termination of\ + \ this Agreement. \n \n5.\tCONFIDENTIALITY \n \n5.1.\tObligations. Licensee acknowledges\ + \ and agrees that any documentation \nrelating to the Software, and any other information\ + \ (if such other \ninformation is identified as confidential or should be recognized as\ + \ \nconfidential under the circumstances) provided to Licensee by Broadcom \nhereunder (collectively,\ + \ \"Confidential Information\") constitute the \nconfidential and proprietary information\ + \ of Broadcom, and that Licensee's \nprotection thereof is an essential condition to Licensee's\ + \ use and possession \nof the Software. Licensee shall retain all Confidential Information\ + \ in \nstrict confidence and not disclose it to any third party or use it in any way \n\ + except under a written agreement with terms and conditions at least as \nprotective as the\ + \ terms of this Section. Licensee will exercise at least the \nsame amount of diligence\ + \ in preserving the secrecy of the Confidential \nInformation as it uses in preserving the\ + \ secrecy of its own most valuable \nconfidential information, but in no event less than\ + \ reasonable diligence. \nInformation shall not be considered Confidential Information\ + \ if and to the \nextent that it: (i) was in the public domain at the time it was disclosed\ + \ or \nhas entered the public domain through no fault of Licensee; (ii) was known to \n\ + Licensee, without restriction, at the time of disclosure as proven by the \nfiles of Licensee\ + \ in existence at the time of disclosure; or (iii) becomes \nknown to Licensee, without\ + \ restriction, from a source other than Broadcom \nwithout breach of this Agreement by Licensee\ + \ and otherwise not in violation \nof Broadcom's rights. \n \n5.2.\tReturn of Confidential\ + \ Information. Notwithstanding the foregoing, all \ndocuments and other tangible objects\ + \ containing or representing Broadcom \nConfidential Information and all copies thereof\ + \ which are in the possession \nof Licensee shall be and remain the property of Broadcom,\ + \ and shall be \npromptly returned to Broadcom upon written request by Broadcom or upon\ + \ \ntermination of this Agreement. \n \n6.\tLIMITATION OF LIABILITY \nTO THE MAXIMUM EXTENT\ + \ PERMITTED BY LAW, IN NO EVENT SHALL BROADCOM OR ANY OF \nBROADCOM'S LICENSORS HAVE ANY\ + \ LIABILITY FOR ANY INDIRECT, INCIDENTAL, \nSPECIAL, OR CONSEQUENTIAL DAMAGES, HOWEVER CAUSED\ + \ AND ON ANY THEORY OF \nLIABILITY, WHETHER FOR BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE)\ + \ OR \nOTHERWISE, ARISING OUT OF THIS AGREEMENT, INCLUDING BUT NOT LIMITED TO LOSS \nOF\ + \ PROFITS, EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH \nDAMAGES. IN\ + \ NO EVENT WILL BROADCOM'S LIABILITY WHETHER IN CONTRACT, TORT \n(INCLUDING NEGLIGENCE),\ + \ OR OTHERWISE, EXCEED THE AMOUNT PAID BY LICENSEE FOR \nSOFTWARE UNDER THIS AGREEMENT.\ + \ THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING \nANY FAILURE OF ESSENTIAL PURPOSE OF ANY\ + \ LIMITED REMEDY. \n \n7.\tMISCELLANEOUS \n \n7.1.\tExport Regulations. YOU UNDERSTAND AND\ + \ AGREE THAT THE SOFTWARE IS \nSUBJECT TO UNITED STATES AND OTHER APPLICABLE EXPORT-RELATED\ + \ LAWS AND \nREGULATIONS AND THAT YOU MAY NOT EXPORT, RE-EXPORT OR TRANSFER THE SOFTWARE\ + \ \nOR ANY DIRECT PRODUCT OF THE SOFTWARE EXCEPT AS PERMITTED UNDER THOSE LAWS. \nWITHOUT\ + \ LIMITING THE FOREGOING, EXPORT, RE-EXPORT OR TRANSFER OF THE SOFTWARE \nTO CUBA, IRAN,\ + \ NORTH KOREA, SUDAN AND SYRIA IS PROHIBITED. \n \n7.2\tAssignment. This Agreement shall\ + \ be binding upon and inure to the \nbenefit of the parties and their respective successors\ + \ and assigns, provided, \nhowever that Licensee may not assign this Agreement or any rights\ + \ or \nobligation hereunder, directly or indirectly, by operation of law or \notherwise,\ + \ without the prior written consent of Broadcom, and any such \nattempted assignment shall\ + \ be void. Notwithstanding the foregoing, Licensee \nmay assign this Agreement to a successor\ + \ to all or substantially all of its \nbusiness or assets to which this Agreement relates\ + \ that is not a competitor \nof Broadcom. \n \n7.3.\tGoverning Law; Venue. This Agreement\ + \ shall be governed by the laws of \nCalifornia without regard to any conflict-of-laws rules,\ + \ and the United \nNations Convention on Contracts for the International Sale of Goods is\ + \ hereby \nexcluded. The sole jurisdiction and venue for actions related to the subject\ + \ \nmatter hereof shall be the state and federal courts located in the County of \nOrange,\ + \ California, and both parties hereby consent to such jurisdiction and \nvenue. \n \n7.4.\t\ + Severability. All terms and provisions of this Agreement shall, if \npossible, be construed\ + \ in a manner which makes them valid, but in the event \nany term or provision of this Agreement\ + \ is found by a court of competent \njurisdiction to be illegal or unenforceable, the validity\ + \ or enforceability \nof the remainder of this Agreement shall not be affected if the illegal\ + \ or \nunenforceable provision does not materially affect the intent of this \nAgreement.\ + \ If the illegal or unenforceable provision materially affects the \nintent of the parties\ + \ to this Agreement, this Agreement shall become \nterminated. \n \n7.5.\tEquitable Relief.\ + \ Licensee hereby acknowledges that its breach of this \nAgreement would cause irreparable\ + \ harm and significant injury to Broadcom \nthat may be difficult to ascertain and that\ + \ a remedy at law would be \ninadequate. Accordingly, Licensee agrees that Broadcom shall\ + \ have the right \nto seek and obtain immediate injunctive relief to enforce obligations\ + \ under \nthe Agreement in addition to any other rights and remedies it may have. \n \n\ + 7.6.\tWaiver. The waiver of, or failure to enforce, any breach or default \nhereunder shall\ + \ not constitute the waiver of any other or subsequent breach \nor default. \n \n7.7.\t\ + Entire Agreement. This Agreement sets forth the entire Agreement \nbetween the parties\ + \ and supersedes any and all prior proposals, agreements \nand representations between them,\ + \ whether written or oral concerning the \nSoftware. This Agreement may be changed only\ + \ by mutual agreement of the \nparties in writing." json: broadcom-proprietary.json - yml: broadcom-proprietary.yml + yaml: broadcom-proprietary.yml html: broadcom-proprietary.html - text: broadcom-proprietary.LICENSE + license: broadcom-proprietary.LICENSE - license_key: broadcom-raspberry-pi + category: Proprietary Free spdx_license_key: LicenseRef-scancode-broadcom-raspberry-pi other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Redistribution. Redistribution and use in binary form, without\nmodification, are\ + \ permitted provided that the following conditions are\nmet:\n\n* This software may only\ + \ be used for the purposes of developing for, \n running or using a Raspberry Pi device,\ + \ or authorised derivative\n device manufactured via the element14 Raspberry Pi Customization\ + \ Service\n* Redistributions must reproduce the above copyright notice and the\n following\ + \ disclaimer in the documentation and/or other materials\n provided with the distribution.\n\ + * Neither the name of Broadcom Corporation nor the names of its suppliers\n may be used\ + \ to endorse or promote products derived from this software\n without specific prior written\ + \ permission.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\nCONTRIBUTORS\ + \ \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED\ + \ WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN\ + \ NO EVENT SHALL THE\nCOPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\n\ + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO,\ + \ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\nOF USE, DATA, OR PROFITS; OR BUSINESS\ + \ INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\ + \ LIABILITY, OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n\ + USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGE." json: broadcom-raspberry-pi.json - yml: broadcom-raspberry-pi.yml + yaml: broadcom-raspberry-pi.yml html: broadcom-raspberry-pi.html - text: broadcom-raspberry-pi.LICENSE + license: broadcom-raspberry-pi.LICENSE - license_key: broadcom-standard-terms + category: Commercial spdx_license_key: LicenseRef-scancode-broadcom-standard-terms other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "This program is the proprietary software of Broadcom Corporation and/or\nits licensors,\ + \ and may only be used, duplicated, modified or distributed\npursuant to the terms and conditions\ + \ of a separate, written license\nagreement executed between you and Broadcom (an \"Authorized\ + \ License\").\nExcept as set forth in an Authorized License, Broadcom grants no license\n\ + (express or implied), right to use, or waiver of any kind with respect to\nthe Software,\ + \ and Broadcom expressly reserves all rights in and to the\nSoftware and all intellectual\ + \ property rights therein. IF YOU HAVE NO\nAUTHORIZED LICENSE, THEN YOU HAVE NO RIGHT TO\ + \ USE THIS SOFTWARE IN ANY WAY,\nAND SHOULD IMMEDIATELY NOTIFY BROADCOM AND DISCONTINUE\ + \ ALL USE OF THE\nSOFTWARE. \n\nExcept as expressly set forth in the Authorized License,\n\ + \n1. This program, including its structure, sequence and organization,\nconstitutes\ + \ the valuable trade secrets of Broadcom, and you shall use all\nreasonable efforts to protect\ + \ the confidentiality thereof, and to use this\ninformation only in connection with your\ + \ use of Broadcom integrated circuit\nproducts.\n\n2. TO THE MAXIMUM EXTENT PERMITTED\ + \ BY LAW, THE SOFTWARE IS PROVIDED\n\"AS IS\" AND WITH ALL FAULTS AND BROADCOM MAKES NO\ + \ PROMISES, REPRESENTATIONS\nOR WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE,\ + \ WITH\nRESPECT TO THE SOFTWARE. BROADCOM SPECIFICALLY DISCLAIMS ANY AND ALL\nIMPLIED WARRANTIES\ + \ OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR\nA PARTICULAR PURPOSE, LACK OF\ + \ VIRUSES, ACCURACY OR COMPLETENESS, QUIET\nENJOYMENT, QUIET POSSESSION OR CORRESPONDENCE\ + \ TO DESCRIPTION. YOU ASSUME\nTHE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE.\n\ + \n3. TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL BROADCOM\nOR ITS LICENSORS\ + \ BE LIABLE FOR (i) CONSEQUENTIAL, INCIDENTAL, SPECIAL,\nINDIRECT, OR EXEMPLARY DAMAGES\ + \ WHATSOEVER ARISING OUT OF OR IN ANY WAY\nRELATING TO YOUR USE OF OR INABILITY TO USE THE\ + \ SOFTWARE EVEN IF BROADCOM\nHAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES; OR (ii)\ + \ ANY AMOUNT IN\nEXCESS OF THE AMOUNT ACTUALLY PAID FOR THE SOFTWARE ITSELF OR U.S. $1,\n\ + WHICHEVER IS GREATER. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY\nFAILURE OF ESSENTIAL\ + \ PURPOSE OF ANY LIMITED REMEDY." json: broadcom-standard-terms.json - yml: broadcom-standard-terms.yml + yaml: broadcom-standard-terms.yml html: broadcom-standard-terms.html - text: broadcom-standard-terms.LICENSE + license: broadcom-standard-terms.LICENSE +- license_key: broadcom-unmodified-exception + category: Copyleft Limited + spdx_license_key: LicenseRef-scancode-broadcom-unmodified-exception + other_spdx_license_keys: [] + is_exception: yes + is_deprecated: no + text: | + As a special exception, the copyright holders of this software give you + permission to link this software with independent modules, and to copy + and distribute the resulting executable under terms of your choice, + provided that you also meet, for each linked independent module, the + terms and conditions of the license of that module. + + An independent module is a module which is not derived from this + software. The special exception does not apply to any modifications of + the software. + json: broadcom-unmodified-exception.json + yaml: broadcom-unmodified-exception.yml + html: broadcom-unmodified-exception.html + license: broadcom-unmodified-exception.LICENSE - license_key: broadcom-unpublished-source + category: Commercial spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Commercial + text: This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation; the contents of + this file may not be disclosed to third parties, copied or duplicated in any form, in whole + or in part, without the prior written permission of Broadcom Corporation. json: broadcom-unpublished-source.json - yml: broadcom-unpublished-source.yml + yaml: broadcom-unpublished-source.yml html: broadcom-unpublished-source.html - text: broadcom-unpublished-source.LICENSE + license: broadcom-unpublished-source.LICENSE - license_key: broadcom-wiced + category: Proprietary Free spdx_license_key: LicenseRef-scancode-broadcom-wiced other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + BROADCOM WICED DEVELOPMENT KIT LICENSE AGREEMENT + + IMPORTANT—BY OPENING THE PACKAGE FOR THIS BROADCOM WIRELESS INTERNET CONNECTIVITY FOR EMBEDDED DEVICES DEVELOPER’S KIT ("SDK"), YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS LICENSE AGREEMENT ("AGREEMENT"). IF YOU DO NOT AGREE WITH THE TERMS OF THIS AGREEMENT, DO NOT DOWNLOAD, INSTALL OR USE THE SOFTWARE AND PROMPTLY RETURN THE SDK AND THE ACCOMPANYING DOCUMENTATION TO BROADCOM. IF YOU AGREE WITH AND ACCEPT THE TERMS AND CONDITIONS OF THIS AGREEMENT, IT SHALL BECOME A LEGALLY BINDING AGREEMENT BETWEEN YOU AND BROADCOM CORPORATION ("BROADCOM"), AND YOU MAY PROCEED TO DOWNLOAD, INSTALL, AND USE THE SDK IN ACCORDANCE WITH THE TERMS AND CONDITIONS OF THIS AGREEMENT. + + 1. GRANT OF LICENSE. + + Subject to the terms and conditions of this Agreement, BROADCOM grants You the following license with respect to the: (1) enclosed software in object code and source code formats, as more specifically described in the Documentation, and upgrades thereto, if any, provided by BROADCOM pursuant to Section 7 hereof (collectively, the "Software"); (2) software tools in object code and source code format; and (3) accompanying documentation ("Documentation"): + + BROADCOM grants You a limited, revocable, non-exclusive, non-transferable license solely (i) to use the Software and Documentation for your internal evaluation solely for the purpose of developing application programs ("Developer Programs") that will be used in conjunction with, or will interface with, the Software and Broadcom proprietary integrated circuits, chips, chipsets, or modules described in the Documentation ("Broadcom Chips"); (ii) to use and modify the Software provided in source code format to create derivative works, and (iv) reproduce and distribute the Software, solely in object code form, incorporated into or integrated with Developer Programs solely for use with Broadcom Chips. + + THIRD PARTY SOFTWARE. The SDK may include software which is owned or controlled and provided by third parties ("Third Party Software"). Such Third Party Software is subject to the terms set forth or at the links provided in Exhibit A and incorporated by reference herein. You agree to acknowledge and comply with this following third party licensing obligations and/or notices in connection with its use. + + 2. PROPRIETARY RIGHTS. The Software and the Documentation are proprietary products of BROADCOM. BROADCOM or its suppliers will retain ownership of the SDK, the Software, Documentation and all patents, copyrights, trade secrets and other proprietary rights relating thereto. Except as provided in Section 1 above, you have no right, title or interest in the Software or the Documentation. You will own all rights, title and interest in and to the Developer Programs you may develop, except for any libraries, data or code included in the Developer Programs that are also included in the Software. You hereby covenant that you will not assert any claim that the Software or derivative works thereof created by or for BROADCOM infringe any intellectual property right owned or controlled by You. + + 3. RESTRICTIONS. The SDK is licensed, not sold. You may not rent, lease or sublicense the Software. You may not reverse engineer, decompile, or disassemble the Software. Except as expressly permitted in Section 1, you may not use, copy, modify, create derivative works of, distribute, sell, assign, pledge, sublicense, lease, deliver or otherwise transfer the SDK or any portion thereof in any form, and you may not cause or permit anyone else to do any of the foregoing. You may not alter, obscure, or remove any BROADCOM trademark, trade name, logo, patent or copyright notice, or other notice or marking on the Broadcom Chips, Software or Documentation or add any notices or markings to the Broadcom Chips, Software or Documentation. Without limiting the foregoing restriction, except as otherwise permitted in Section 1, You may not provide access to others on a service bureau basis or otherwise. The Software is not designed or licensed for use in hazardous environments, safety critical or life support applications, or where personal injury or bodily harm may result from Software use. You shall not use the Software or other material provided in the SDK in violation of any applicable law or regulation, including but not limited to any regulatory agency. This Agreement shall automatically terminate upon your failure to comply with any of the terms of this Agreement. In such event, You will destroy all copies of the SDK and its component parts. + + You hereby acknowledge that You are not a national of, nor located in, a country designated in Country Group E of Supplement Number 1 to Part 740 of the Export Administration Regulations, 15 CFR Parts 730-774 ("EAR"), which includes, but may not be limited to, Cuba, Iran, North Korea, Sudan, and Syria. Further, You acknowledge that these commodities, technology or software were exported from the United States in accordance with the EAR. Diversion contrary to U.S. law is prohibited. Notwithstanding other provisions of U.S. law, You acknowledge that transfer or re-export to any country, entity, or person subject to U.S. sanctions, a denial order, or identified in Country Group E, requires prior authorization from the U.S. Government. + + You agree that you shall indemnify and hold BROADCOM harmless for any liabilities, losses, damages, costs and expenses (including attorneys’ fees and costs) arising from or relating to your failure to comply with any such law or regulation or to obtain any such license, permit or approval. + + + You may not attempt to obtain the source code for the Software (except for the source code provided) by any means, including but not limited to reverse engineering, decompilation, disassembly, translation or similar manipulation of the Software, unless and only to the extent that applicable law in your jurisdiction specifically gives you the right to do any of the foregoing. + + 4. LIMITED WARRANTY. THE SDK IS OFFERED "AS IS," AND BROADCOM PROVIDES AND GRANTS AND YOU RECEIVE NO SUPPORT AND NO WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR CONDUCT WITH LICENSEE, OR OTHERWISE. BROADCOM SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A SPECIFIC PURPOSE, OR NONINFRINGEMENT CONCERNING THE SOFTWARE OR ANY UPGRADES TO OR DOCUMENTATION FOR THE SDK. WITHOUT LIMITATION OF THE ABOVE, BROADCOM GRANTS NO WARRANTY THAT THE SDK IS ERROR-FREE OR WILL OPERATE WITHOUT INTERRUPTION, AND GRANTS NO WARRANTY REGARDING ITS USE OR THE RESULTS THEREFROM INCLUDING, WITHOUT LIMITATION, ITS CORRECTNESS, ACCURACY, OR RELIABILITY. + + 5. NO LIABILITY FOR DAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL BROADCOM OR ANY OF ITS LICENSORS HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR OTHER DAMAGES, HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER FOR BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE) OR OTHERWISE, ARISING OUT OF THIS AGREEMENT OR USE, REPRODUCTION, OR DISTRIBUTION OF THE SDK, INCLUDING BUT NOT LIMITED TO LOSS OF DATA AND LOSS OF PROFITS, EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW. + + 6. INDEMNIFICATION. You will indemnify, defend and hold harmless BROADCOM and its employees, directors, representatives and agents ("Indemnified Parties") for all losses, damages and all reasonable expenses and costs, including reasonable attorneys’ fees, incurred by them in any third party claim, suit or proceeding based upon use or distribution of the Developer Programs or upon your breach of your obligations under this Agreement; provided that the Indemnified Parties give you written notice of any such claim, suit or proceeding within a reasonable time and control of the defense thereof. + + 7. SUPPORT. Please refer to BROADCOM’s website at www.Broadcom.com for the current terms of any support BROADCOM elects to make available. In the event that BROADCOM elects to provide upgrades to the Software in connection with any such support, such upgrades shall be included within the definition of Software and shall be provided subject to the rights and restrictions set forth in this Agreement. You shall, at it your own expense, be solely responsible for providing technical support and training to your customers for Developer Programs and/or Software, and BROADCOM shall have no obligation with respect thereto. You shall be solely responsible for, and BROADCOM shall have no obligation to honor, any warranties that you provide to your customers or to end users with respect to the Software, derivative works, or Developer Programs. You shall defend any claim against BROADCOM arising in connection with any such warranties, express, implied, statutory, or otherwise, and shall pay any settlements or damages awarded against BROADCOM that are based on any such warranties. + + 8. CONFIDENTIALITY. The SDK contains proprietary and confidential technology and information of BROADCOM. Accordingly, you must limit access to the SDK to those of your employees who need to use the SDK for purposes permitted hereunder and who have been clearly informed of their obligation to maintain the confidentiality of the SDK. In addition, you must treat the Software and Documentation as strictly confidential and you must use the same care to protect it from unauthorized use, access or disclosure as you use to protect your own confidential and proprietary information, but never less than the care a reasonable person would use under similar circumstances. Any breach of this Section 8 would cause irreparable injury to BROADCOM for which no adequate remedy at law exists. Therefore, you agree that equitable remedies, including injunctive relief and specific performance, are appropriate remedies to redress any breach or threatened breach of this Section 8, in addition to all other remedies available to BROADCOM. You will not directly or indirectly disclose or provide a copy of SDK to any other wireless silicon solution provider. + + 9. TERMINATION. Broadcom may terminate this Agreement at any time if you breach this Agreement or any terms and conditions herein and you have failed to immediately cure such breach. Upon termination, you will immediately destroy or return all copies of the SDK and documentation. + + 0. U.S. GOVERNMENT RESTRICTED RIGHTS. The Software and Documentation are commercial products, developed at private expense, and provided with restricted rights. Use, reproduction, release, modification or disclosure of the Software or Documentation, or any part thereof, including technical data, by the Government is restricted in accordance with Federal Acquisition Regulation ("FAR") 12.212 for civilian agencies and Defense ("DFARS") 227.7202 for military agencies. The Software and Documentation are "commercial items," as that term is defined in 48 C.F.R. 2.101, consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212. Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4, all U.S. Government End Users acquire Software and Documentation with only those rights set forth in this Agreement. + + 11. MISCELLANEOUS. The laws of the state of California govern this Agreement, and it shall inure to the benefit of BROADCOM, its successors, administrators, heirs and assigns. In any action regarding this Agreement, the prevailing party shall be entitled to receive, in addition to any other relief, reasonable attorneys' fees and expenses. If one or more of the provisions contained in this Agreement shall be unenforceable, then such provision shall be considered inoperative to the extent of such enforceability and the remainder of this Agreement shall continue in full force and effect. The parties hereto agree to replace any such invalid or unenforceable provision with a new provision that has the most nearly similar permissible economic or other effect. You may not assign, delegate or otherwise transfer, whether by agreement, operation of law or otherwise, any right or obligation hereunder without the express prior written consent of BROADCOM, and any attempted assignment, delegation or transfer without such consent shall be void. This Agreement supersedes all prior or contemporaneous proposals, representations, warranties, promises and other communications, whether oral or written, relating to the Software and Documentation. This Agreement may not be amended or modified, except by a written document signed by an authorized representative of each party. Any term or condition in any purchase order or other document you may submit to BROADCOM will have no legal effect. + + 12. ACKNOWLEDGMENT. You acknowledge that you have read this Agreement, understand it, and agree to its terms and conditions. You also agree that this Agreement covers any merged or partial copies of the Software and is the complete and exclusive Agreement between the parties and supersedes all related proposals, communications or prior agreements, oral or written. json: broadcom-wiced.json - yml: broadcom-wiced.yml + yaml: broadcom-wiced.yml html: broadcom-wiced.html - text: broadcom-wiced.LICENSE + license: broadcom-wiced.LICENSE - license_key: broadleaf-fair-use + category: Proprietary Free spdx_license_key: LicenseRef-scancode-broadleaf-fair-use other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Broadleaf Fair Use License Agreement - Version 1.0 + + BY USING THE SOFTWARE, YOU (EITHER AN INDIVIDUAL OR A SINGLE ENTITY) AGREE THAT THIS COMMUNITY FAIR USE LICENSE AGREEMENT ("AGREEMENT") IS ENFORCEABLE LIKE ANY WRITTEN CONTRACT SIGNED BY YOU. IF YOU DO NOT AGREE TO ALL THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE. THE SOFTWARE YOU HAVE RECEIVED WITH OR SUBJECT TO THIS LICENSE IS THE SOFTWARE FOR COMMUNITY USE ("COMMUNITY SOFTWARE") AND IS SUBJECT TO VERY SPECIFIC LIMITATIONS BELOW. IF YOU EXCEED SUCH LIMITATIONS, THEN YOU WILL BE IMMEDIATELY REQUIRED TO PURCHASE A PAID PRODUCT AND LICENSE FEES WILL BE DUE FOR ANY PERIOD OF SUCH PAST USE IN VIOLATION HEREOF. + + 1. Definitions. + + 1.1 "Broadleaf" means Broadleaf Commerce, LLC a Texas limited liability company, with offices located at 5550 Granite Parkway, Suite 155, Plano, Texas 75024 USA. + + 1.2 "Internal Business Purpose" means the use of any of the Community Software, associated documentation or other materials, as applicable, only for your internal business use with your systems, networks, devices and data. Such use does not include use of your systems, networks or devices as part of services you provide for a third party's benefit or for competing with Broadleaf. + + 1.3 "Software" means (a) all of the contents of the files with which this Agreement is provided; or such contents as are hosted by Broadleaf; (b) any Updates; and (c) any documentation regarding such. + + 1.4 "Territory" means worldwide, except for any countries under embargo or as restricted by the US government. + + 1.5 "Updates" means upgrades, updates, or any new version of Community Software that is made available to you, but does not mean a new Broadleaf product. + + 1.6 "Use", "Used" or "Using" means to access, install, download, copy, prepare derivative works of, privately perform and display, and use the Community Software subject to any limitations herein. + + 2. License. Subject to your compliance with the terms of this Agreement, termination hereof and unless otherwise varied by Broadleaf in writing to you, Broadleaf hereby grants to you a perpetual, non-exclusive, non-transferable, non-assignable, revocable (under the conditions of this Agreement), personal, license to Use the Community Software in the Territory at no additional charge so long as: (i) your Use is solely for the purposes provided by Broadleaf in this Agreement; (ii) your Use is for Internal Business Purposes; or iii) you, your entity, and/or any affiliate has not generated more than $5,000,000 USD in gross revenue in any twelve (12) month period during the period of Use. If you are found to be using the Community Software beyond any of the terms or limitations contained in this Section and/or the broader Agreement, you shall immediately pay Broadleaf a license Fee for such usage of the Community Software and those terms set forth in the Broadleaf Enterprise EULA (located at http://www.broadleafcommerce.com/license/commercial) will be binding once paid. For purposes of calculation of such usage, any metric will include you, your entity, and all affiliates, meaning legal entities controlling, controlled by, or under common control with you. The Community Software licensed will either be substituted with the Broadleaf Enterprise Software as defined under that agreement or will simply be governed thereby. In the event Community Software contains or uses third party software, Broadleaf will have no responsibility and claims no right with respect to such third party software. Your use of such third party software and other copyrighted material is governed by their respective terms you acknowledge that the Community Software may contain bugs, errors and other problems that could cause system or other failures and data loss or have less functionality than a paid for version of the Broadleaf Software ("Paid Products"). Broadleaf is under no obligation to provide or continue providing Community Software or any Updates thereto. If you violate the terms of this Agreement or Broadleaf terminates it under Section 6, below, your license and all rights hereunder shall immediately cease and you must return or destroy the Community Software within ten (10) days thereof. + + 3. Special Terms Applicable to the Community Software. You acknowledge that any research or development that you perform regarding the Community Software or any product associated with the Community Software is done entirely at your own risk and subject to this Agreement and restrictions herein. If you submit any information or feedback to Broadleaf regarding testing and use of the Community Software, including error or bug reports; you agree to grant Broadleaf a perpetual, non-exclusive, fully-paid up, royalty-free, worldwide license to use, copy, distribute, make derivative works and incorporate the feedback into any Broadleaf Product at Broadleaf's sole discretion. Redistribution in source code or other forms must include a copy of this license document and any redistribution of the Community Software is only allowed subject to this license. + + 4. Restrictions. You (or a third party acting on your behalf) may not: (i) sell, lease, rent, loan, or resell, with or without consideration, the Community Software; (ii) permit third parties to benefit from the use or functionality of the Community Software via a timesharing, service bureau or other arrangement; (iii) Use the Community Software to compete with Broadleaf or any other Broadleaf offerings; (iv) use the Community Software to investigate a claim or as the basis of a claim against Broadleaf; or (v) violate the usage restrictions in this Agreement. Any consultant, contractor, or agent hired to perform services for you may operate the Community Software on your behalf under these terms and conditions, provided that you remain fully liable for any and all acts or omissions by such third parties related to this Agreement. This license does not grant you any right in the trademarks, service marks, brand names or logos of Broadleaf. All rights not expressly set forth hereunder are reserved by Broadleaf. + + 5. Warranty and Disclaimer. THE COMMUNITY SOFTWARE IS PROVIDED "AS IS" AND BROADLEAF MAKES NO WARRANTY AS TO ITS USE OR PERFORMANCE EXCEPTING ANY WARRANTY, CONDITION, REPRESENTATION OR TERM THE EXTENT TO WHICH CANNOT BE EXCLUDED OR LIMITED BY APPLICABLE LAW. BROADLEAF, AND ITS SUPPLIERS MAKE NO WARRANTY, CONDITION, REPRESENTATION, OR TERM (EXPRESS OR IMPLIED, WHETHER BY STATUTE, COMMON LAW, CUSTOM, USAGE OR OTHERWISE) AS TO ANY MATTER INCLUDING, WITHOUT LIMITATION, NONINFRINGEMENT OF THIRD PARTY RIGHTS, MERCHANTABILITY, SATISFACTORY QUALITY, INTEGRATION, OR FITNESS FOR A PARTICULAR PURPOSE. WITHOUT LIMITING THE FOREGOING PROVISIONS, BROADLEAF MAKES NO WARRANTY THAT THE COMMUNITY SOFTWARE WILL BE ERROR-FREE OR FREE FROM INTERRUPTIONS OR OTHER FAILURES OR THAT THE COMMUNITY SOFTWARE WILL MEET YOUR REQUIREMENTS. + + 6. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT, CONTRACT, OR OTHERWISE, SHALL BROADLEAF OR SUPPLIERS BE LIABLE TO YOU OR TO ANY OTHER PERSON FOR LOSS OF PROFITS, LOSS OF GOODWILL, LOSS OF DATA, OR ANY INDIRECT, DIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OR DAMAGES FOR GROSS NEGLIGENCE OF ANY FORM INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, APPLIANCE FAILURE OR MALFUNCTION, OR FOR ANY OTHER DAMAGE OR LOSS. WHERE LEGAL LIABILITY CANNOT BE EXCLUDED, BUT MAY BE LIMITED, BROADLEAF'S LIABILITY AND THAT OF ITS SUPPLIERS SHALL BE LIMITED TO THE SUM OF ONE HUNDRED DOLLARS ($100 USD) IN TOTAL. THIS LIMITATION SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY TO THE EXTENT THAT APPLICABLE LAW PROHIBITS SUCH LIMITATION. FURTHERMORE, SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION AND EXCLUSION MAY NOT APPLY TO YOU. BROADLEAF IS ACTING ON BEHALF OF ITS SUPPLIERS FOR THE PURPOSE OF DISCLAIMING, EXCLUDING AND/OR LIMITING OBLIGATIONS, WARRANTIES AND LIABILITY AS PROVIDED IN THIS AGREEMENT, BUT IN NO OTHER RESPECTS AND FOR NO OTHER PURPOSE. BROADLEAF SHALL HAVE NO LIABILITY TO YOU FOR ANY ACTION (OR ANY PRIOR RELATED CLAIMS) BROUGHT BY OR AGAINST YOU ALLEGING THAT YOUR SALE, USE OR OTHER DISPOSITION OF ANY COMMUNITY SOFTWARE INFRINGES ANY PATENT, COPYRIGHT, TRADE SECRET OR OTHER INTELLECTUAL PROPERTY RIGHT. IN THE EVENT OF SUCH AN ACTION OR IF BROADLEAF BELIEVES AN ACTION POSSIBLE, BROADLEAF RETAINS THE RIGHT TO TERMINATE THIS AGREEMENT AND TAKE POSSESSION OF THE COMMUNITY SOFTWARE. THIS SECTION STATES BROADLEAF'S ENTIRE LIABILITY WITH RESPECT TO ALLEGED INFRINGEMENTS OF INTELLECTUAL PROPERTY RIGHTS BY COMMUNITY SOFTWARE ANY PART THEREOF OR OPERATION. THE FOREGOING PROVISIONS SHALL BE ENFORCEABLE TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW. + + 7. Export Controls. You acknowledge that the Community Software may be subject to the export control laws and regulations of the United States of America ("US"), and any amendments thereof. You further acknowledge that Community Software may include technical data subject to export and re-export restrictions imposed by US law. + + 8. Governing Law. This Agreement will be governed by and construed in accordance with the substantive laws in force in the State of New York. This Agreement will not be governed by the conflict of laws rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. The United States District Court for the Southern District of New York, and the Courts of New York County, New York shall each have non-exclusive jurisdiction over all disputes relating to this Agreement. + + 9. Audit. You understand and acknowledge that Broadleaf utilizes a number of methods to verify and support software Use by its customers. These methods may include technological features of the Broadleaf software that prevent unauthorized use and provide software deployment verification and other information regarding the limitations above. In the event that Broadleaf requests a report for confirmation, you will provide a system generated report verifying your software deployment. + + 10. Miscellaneous. This Agreement is dated and will be archived when it is superseded by a newer version. Broadleaf shall not change any Agreement retroactively with regard to any Community Software issued prior to the date of the applicable Agreement. This Agreement sets forth all rights for the user of the Community Software and is the entire Agreement between the parties. This Agreement supersedes any other communications, representations or advertising relating to the Community Software and Documentation, except for a duly executed written agreement between Broadleaf and you for the Community Software. This Agreement may not be modified except by a written modification issued by a duly authorized representative of Broadleaf, which may be done electronically on Broadleaf's website. No provision hereof shall be deemed waived unless such waiver shall be in writing and signed by Broadleaf. If any provision of this Agreement is held invalid, the remainder of this Agreement shall continue in full force and effect. json: broadleaf-fair-use.json - yml: broadleaf-fair-use.yml + yaml: broadleaf-fair-use.yml html: broadleaf-fair-use.html - text: broadleaf-fair-use.LICENSE + license: broadleaf-fair-use.LICENSE - license_key: brocade-firmware + category: Permissive spdx_license_key: LicenseRef-scancode-brocade-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Brocade Linux Fibre Channel HBA Firmware + + You may redistribute the hardware specific firmware binary file + under the following terms: + + 1. Redistribution of source code (only if applicable), + must retain the above copyright notice, this list of + conditions and the following disclaimer. + + 2. Redistribution 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 Brocade Communications Systems, Inc. ("Brocade") + may not be used to endorse or promote products derived from this + software without specific prior written permission by Brocade. + + REGARDLESS OF WHAT LICENSING MECHANISM IS USED OR APPLICABLE, + THIS PROGRAM IS PROVIDED BY BROCADE "AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE IS 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. + + USER ACKNOWLEDGES AND AGREES THAT USE OF THIS PROGRAM WILL NOT + CREATE OR GIVE GROUNDS FOR A LICENSE BY IMPLICATION, ESTOPPEL, OR + OTHERWISE IN ANY INTELLECTUAL PROPERTY RIGHTS (PATENT, COPYRIGHT, + TRADE SECRET, MASK WORK, OR OTHER PROPRIETARY RIGHT) EMBODIED IN + ANY OTHER BROCADE HARDWARE OR SOFTWARE EITHER SOLELY OR IN + COMBINATION WITH THIS PROGRAM. json: brocade-firmware.json - yml: brocade-firmware.yml + yaml: brocade-firmware.yml html: brocade-firmware.html - text: brocade-firmware.LICENSE + license: brocade-firmware.LICENSE - license_key: bruno-podetti + category: Permissive spdx_license_key: LicenseRef-scancode-bruno-podetti other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "You are free to use/modify this code but leave this header intact.\nThis class is public\ + \ domain so you are free to use it any of your \napplications (Freeware, Shareware, Commercial).\ + \ \nAll I ask is that you let me know so that if you have a real winner I can\nbrag to my\ + \ buddies that some of my code is in your app. I also wouldn't \nmind if you sent me a copy\ + \ of your application since I like to play with\nnew stuff." json: bruno-podetti.json - yml: bruno-podetti.yml + yaml: bruno-podetti.yml html: bruno-podetti.html - text: bruno-podetti.LICENSE + license: bruno-podetti.LICENSE - license_key: bsd-1-clause + category: Permissive spdx_license_key: BSD-1-Clause other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 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 AND 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. json: bsd-1-clause.json - yml: bsd-1-clause.yml + yaml: bsd-1-clause.yml html: bsd-1-clause.html - text: bsd-1-clause.LICENSE + license: bsd-1-clause.LICENSE - license_key: bsd-1-clause-build + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-1-clause-build other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use, with or without modification, are permitted provided + that the following condition is met: + + Redistributions of this build system must retain the above copyright notice, + this condition 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. + + Note that while this license applies to the build system itself the + software it builds is separately licensed under its own terms and conditions. json: bsd-1-clause-build.json - yml: bsd-1-clause-build.yml + yaml: bsd-1-clause-build.yml html: bsd-1-clause-build.html - text: bsd-1-clause-build.LICENSE + license: bsd-1-clause-build.LICENSE - license_key: bsd-1988 + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-1988 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Redistribution and use in source and binary forms are permitted provided that: \n\n\ + (1) source distributions retain this entire copyright notice and comment, and \n\n(2) distributions\ + \ including binaries display the following acknowledgement:\n``This product includes software\ + \ developed by copyright holder and its\ncontributors'' in the documentation or other materials\ + \ provided with the\ndistribution and in all advertising materials mentioning features or\ + \ use of this\nsoftware.\n\nNeither the name of the {copyright-holder} nor the names of\ + \ its contributors may\nbe used to endorse or promote products derived from this software\ + \ without\nspecific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND\ + \ WITHOUT ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\ + \ WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE." json: bsd-1988.json - yml: bsd-1988.yml + yaml: bsd-1988.yml html: bsd-1988.html - text: bsd-1988.LICENSE + license: bsd-1988.LICENSE - license_key: bsd-2-clause-freebsd + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + The FreeBSD Copyright + + Copyright (c) The FreeBSD 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: + + 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 FREEBSD PROJECT ``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 FREEBSD PROJECT 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 the FreeBSD Project. json: bsd-2-clause-freebsd.json - yml: bsd-2-clause-freebsd.yml + yaml: bsd-2-clause-freebsd.yml html: bsd-2-clause-freebsd.html - text: bsd-2-clause-freebsd.LICENSE + license: bsd-2-clause-freebsd.LICENSE - license_key: bsd-2-clause-netbsd + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + Redistribution and use in source and binary forms, with or without modification, + are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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. json: bsd-2-clause-netbsd.json - yml: bsd-2-clause-netbsd.yml + yaml: bsd-2-clause-netbsd.yml html: bsd-2-clause-netbsd.html - text: bsd-2-clause-netbsd.LICENSE + license: bsd-2-clause-netbsd.LICENSE - license_key: bsd-2-clause-plus-advertizing + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-2-clause-plus-advertizing other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Redistribution and use in source and binary forms, with or without\nmodification, are\ + \ permitted provided that the following conditions\nare met:\n1. Redistributions of source\ + \ code must retain the above copyright\n notice, this list of conditions and the following\ + \ disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n \ + \ notice, this list of conditions and the following disclaimer in the\n documentation\ + \ and/or other materials provided with the distribution.\n3. All advertising materials mentioning\ + \ features or use of this software\n must display the following acknowledgement:\n\tThis\ + \ product includes software developed by author\n\tand its contributors.\n\nTHIS SOFTWARE\ + \ IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES,\ + \ INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\ + \ FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS\ + \ BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n\ + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS\ + \ OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY\ + \ OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\ + \ OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\ + \ POSSIBILITY OF\nSUCH DAMAGE." json: bsd-2-clause-plus-advertizing.json - yml: bsd-2-clause-plus-advertizing.yml + yaml: bsd-2-clause-plus-advertizing.yml html: bsd-2-clause-plus-advertizing.html - text: bsd-2-clause-plus-advertizing.LICENSE + license: bsd-2-clause-plus-advertizing.LICENSE - license_key: bsd-2-clause-views + category: Permissive spdx_license_key: BSD-2-Clause-Views other_spdx_license_keys: - BSD-2-Clause-FreeBSD is_exception: no is_deprecated: no - category: Permissive + text: | + 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 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. + + 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 the FreeBSD Project. json: bsd-2-clause-views.json - yml: bsd-2-clause-views.yml + yaml: bsd-2-clause-views.yml html: bsd-2-clause-views.html - text: bsd-2-clause-views.LICENSE + license: bsd-2-clause-views.LICENSE - license_key: bsd-3-clause-devine + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-3-clause-devine other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 may or may not 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 XySSL 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. json: bsd-3-clause-devine.json - yml: bsd-3-clause-devine.yml + yaml: bsd-3-clause-devine.yml html: bsd-3-clause-devine.html - text: bsd-3-clause-devine.LICENSE + license: bsd-3-clause-devine.LICENSE - license_key: bsd-3-clause-fda + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-3-clause-fda other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Redistribution and use in source and binary forms, with or without\nmodification, are\ + \ permitted provided that the following conditions are met:\n\n* Redistributions of source\ + \ code must retain the above notice, this list of\n conditions and the following disclaimer.\n\ + \n* Redistributions in binary form must reproduce the above notice, this list of\n conditions\ + \ and the following disclaimer in the documentation and/or other\n materials provided with\ + \ the distribution.\n\n* Neither the name of the United States Government, nor the \n U.S.\ + \ Food and Drug Administration (FDA), nor the names of its\n contributors may be used to\ + \ endorse or promote products derived from\n this software without specific prior written\ + \ permission.\n\nThis program is distributed in the hope that it will be useful. Responsibility\n\ + for the use of the system and interpretation of documentation and results lies\nsolely with\ + \ the user. In no event shall FDA be liable for direct, indirect,\nspecial, incidental,\ + \ or consequential damages resulting from the use, misuse,\nor inability to use the system\ + \ and accompanying documentation. Third parties'\nuse of or acknowledgment of the system\ + \ does not in any way represent that\nFDA endorses such third parties or expresses any opinion\ + \ with respect to their\nstatements. \n\nThis program is free software: you can redistribute\ + \ it and/or modify it\nunder the terms of the included License." json: bsd-3-clause-fda.json - yml: bsd-3-clause-fda.yml + yaml: bsd-3-clause-fda.yml html: bsd-3-clause-fda.html - text: bsd-3-clause-fda.LICENSE + license: bsd-3-clause-fda.LICENSE - license_key: bsd-3-clause-jtag + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-3-clause-jtag other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 + two paragraphs of disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + two paragraphs of disclaimer in the documentation and/or other materials + provided with the distribution. + * Neither the name of the Regents nor the names of its contributors + may be used to endorse or promote products derived from this + software without specific prior written permission. + + IN NO EVENT SHALL REGENTS 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 + REGENTS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF + ANY, PROVIDED HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION + TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR + MODIFICATIONS. json: bsd-3-clause-jtag.json - yml: bsd-3-clause-jtag.yml + yaml: bsd-3-clause-jtag.yml html: bsd-3-clause-jtag.html - text: bsd-3-clause-jtag.LICENSE + license: bsd-3-clause-jtag.LICENSE - license_key: bsd-3-clause-no-change + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-3-clause-no-change other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Redistribution and use in source and binary forms, with or without\nmodification, are\ + \ permitted provided that the following conditions\nare met:\n\n1. Redistributions of source\ + \ code must retain the above copyright\n notice, this list of conditions and the following\ + \ disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n \ + \ notice, this list of conditions and the following disclaimer in the\n documentation\ + \ and/or other materials provided with the distribution.\n3. The name of the author may\ + \ not be used to endorse or promote products\n derived from this software without specific\ + \ prior written permission.\n\nChanges to this license can be made only by the copyright\ + \ author with \nexplicit written consent.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS\ + \ IS'' AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\ + \ WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n\ + IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY,\ + \ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\ + \ OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED\ + \ AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING\ + \ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF\ + \ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." json: bsd-3-clause-no-change.json - yml: bsd-3-clause-no-change.yml + yaml: bsd-3-clause-no-change.yml html: bsd-3-clause-no-change.html - text: bsd-3-clause-no-change.LICENSE + license: bsd-3-clause-no-change.LICENSE - license_key: bsd-3-clause-no-military + category: Free Restricted spdx_license_key: BSD-3-Clause-No-Military-License other_spdx_license_keys: - LicenseRef-scancode-bsd-3-clause-no-military is_exception: no is_deprecated: no - category: Free Restricted + text: | + Redistribution and use in source and binary forms, with or without modification, + are permitted provided that the following conditions are met: + + 1. Redistribution of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + 2. Redistribution in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its contributors + may be used to endorse or promote products derived from this software without + specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + OF THE POSSIBILITY OF SUCH DAMAGE. + + YOU ACKNOWLEDGE THAT THIS SOFTWARE IS NOT DESIGNED, LICENSED OR INTENDED FOR USE + IN THE DESIGN, CONSTRUCTION, OPERATION OR MAINTENANCE OF ANY MILITARY FACILITY. json: bsd-3-clause-no-military.json - yml: bsd-3-clause-no-military.yml + yaml: bsd-3-clause-no-military.yml html: bsd-3-clause-no-military.html - text: bsd-3-clause-no-military.LICENSE + license: bsd-3-clause-no-military.LICENSE - license_key: bsd-3-clause-no-nuclear-warranty + category: Free Restricted spdx_license_key: BSD-3-Clause-No-Nuclear-Warranty other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + Redistribution of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + Redistribution 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 Sun Microsystems, Inc. or the names of contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT A WARRANTY OF ANY KIND. ALL + EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING + ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MICROSYSTEMS, INC. + ("SUN") AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED + BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS + SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE + LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, + SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED + AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR + INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE + POSSIBILITY OF SUCH DAMAGES. + + You acknowledge that this software is not designed or intended for use + in the design, construction, operation or maintenance of any nuclear + facility. json: bsd-3-clause-no-nuclear-warranty.json - yml: bsd-3-clause-no-nuclear-warranty.yml + yaml: bsd-3-clause-no-nuclear-warranty.yml html: bsd-3-clause-no-nuclear-warranty.html - text: bsd-3-clause-no-nuclear-warranty.LICENSE + license: bsd-3-clause-no-nuclear-warranty.LICENSE - license_key: bsd-3-clause-no-trademark + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-3-clause-no-trademark other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Redistribution and use in source and binary forms, with or without modification,\n\ + are permitted provided that the following conditions are met:\n \n1. Redistributions of\ + \ source code must retain the above copyright notice, this\nlist of conditions and the following\ + \ disclaimer.\n \n2. Redistributions in binary form must reproduce the above copyright\ + \ notice,\nthis list of conditions and the following disclaimer in the documentation and/or\n\ + other materials provided with the distribution.\n \n3. Neither the name of the copyright\ + \ holder(s) nor the names of any contributors\nmay be used to endorse or promote products\ + \ derived from this software without\nspecific prior written permission. No license is granted\ + \ to the trademarks of\nthe copyright holders even if such marks are included in this software.\n\ + \ \nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY\ + \ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES\ + \ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL\ + \ THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\ + \ EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\ + \ GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n\ + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING\ + \ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF\ + \ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." json: bsd-3-clause-no-trademark.json - yml: bsd-3-clause-no-trademark.yml + yaml: bsd-3-clause-no-trademark.yml html: bsd-3-clause-no-trademark.html - text: bsd-3-clause-no-trademark.LICENSE + license: bsd-3-clause-no-trademark.LICENSE - license_key: bsd-3-clause-open-mpi + category: Permissive spdx_license_key: BSD-3-Clause-Open-MPI other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer listed + in this license in the documentation and/or other materials + provided with the distribution. + + - Neither the name of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + The copyright holders provide no reassurances that the source code + provided does not infringe any patent, copyright, or any other + intellectual property rights of third parties. The copyright holders + disclaim any liability to any recipient for claims brought against + recipient by any third party for infringement of that parties + intellectual property rights. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. json: bsd-3-clause-open-mpi.json - yml: bsd-3-clause-open-mpi.yml + yaml: bsd-3-clause-open-mpi.yml html: bsd-3-clause-open-mpi.html - text: bsd-3-clause-open-mpi.LICENSE + license: bsd-3-clause-open-mpi.LICENSE - license_key: bsd-3-clause-sun + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-3-clause-sun other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Redistribution and use in source and binary forms, with or without\nmodification, are\ + \ permitted provided that the following conditions are met:\n\n-Redistribution of source\ + \ code must retain the above copyright notice, this\n list of conditions and the following\ + \ disclaimer.\n\n-Redistribution in binary form must reproduce the above copyright notice,\ + \ \n this list of conditions and the following disclaimer in the documentation\n and/or\ + \ other materials provided with the distribution.\n\nNeither the name of Sun Microsystems,\ + \ Inc. or the names of contributors may \nbe used to endorse or promote products derived\ + \ from this software without \nspecific prior written permission.\n\nThis software is provided\ + \ \"AS IS,\" without a warranty of any kind. ALL \nEXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS\ + \ AND WARRANTIES, INCLUDING\nANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\ + \ PURPOSE\nOR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MICROSYSTEMS, INC. (\"SUN\")\n\ + AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE\nAS A RESULT\ + \ OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS\nDERIVATIVES. IN NO EVENT WILL\ + \ SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST \nREVENUE, PROFIT OR DATA, OR FOR DIRECT,\ + \ INDIRECT, SPECIAL, CONSEQUENTIAL, \nINCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND\ + \ REGARDLESS OF THE THEORY \nOF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE\ + \ THIS SOFTWARE, \nEVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES." json: bsd-3-clause-sun.json - yml: bsd-3-clause-sun.yml + yaml: bsd-3-clause-sun.yml html: bsd-3-clause-sun.html - text: bsd-3-clause-sun.LICENSE + license: bsd-3-clause-sun.LICENSE - license_key: bsd-4-clause-shortened + category: Permissive spdx_license_key: BSD-4-Clause-Shortened other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms, with or without modification, + are permitted provided that: + + (1) source code distributions retain the above copyright notice and this + paragraph in its entirety, + + (2) distributions including binary code include the above copyright notice and + this paragraph in its entirety in the documentation or other materials provided + with the distribution, and + + (3) all advertising materials mentioning features or use of this software + display the following acknowledgement: + + "This product includes software developed by the University of California, + Lawrence Berkeley Laboratory and its contributors." + + 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 "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, + INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS FOR A PARTICULAR PURPOSE. json: bsd-4-clause-shortened.json - yml: bsd-4-clause-shortened.yml + yaml: bsd-4-clause-shortened.yml html: bsd-4-clause-shortened.html - text: bsd-4-clause-shortened.LICENSE + license: bsd-4-clause-shortened.LICENSE - license_key: bsd-ack + category: Permissive spdx_license_key: BSD-3-Clause-Attribution other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms, with or without modification, + are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + + 4. Redistributions of any form whatsoever must retain the following + acknowledgment: 'This product includes software developed by the + "Universidad de Palermo, Argentina" (http://www.palermo.edu/).' + + 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. json: bsd-ack.json - yml: bsd-ack.yml + yaml: bsd-ack.yml html: bsd-ack.html - text: bsd-ack.LICENSE + license: bsd-ack.LICENSE - license_key: bsd-ack-carrot2 + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-ack-carrot2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 Carrot2 Project nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + - We kindly request that you include in the end-user documentation provided with + the redistribution and/or in the software itself an acknowledgement equivalent + to the following: "This product includes software developed by the Carrot2 + Project." + + 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. json: bsd-ack-carrot2.json - yml: bsd-ack-carrot2.yml + yaml: bsd-ack-carrot2.yml html: bsd-ack-carrot2.html - text: bsd-ack-carrot2.LICENSE + license: bsd-ack-carrot2.LICENSE - license_key: bsd-artwork + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-artwork other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This logo or a modified version may be used by anyone to refer to the \nproject, but\ + \ does not indicate endorsement by the project.\n\nRedistribution and use in source (the\ + \ SVG file) and binary forms\n(rendered PNG files etc.) of the image, with or without modification,\n\ + are permitted provided that the following conditions are met:\n\n Redistributions of\ + \ source code must retain the above copyright notice\n and this list of conditions.\n\ + \ \n The names of the contributors to the softwaremay not be used to endorse or\n\ + \ promote products derived from this software without specific prior written permission." json: bsd-artwork.json - yml: bsd-artwork.yml + yaml: bsd-artwork.yml html: bsd-artwork.html - text: bsd-artwork.LICENSE + license: bsd-artwork.LICENSE - license_key: bsd-atmel + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-atmel other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + - Redistributions of source code must retain the above copyright notice, + this list of conditions and the disclaimer below. + + - Author's name may not be used to endorse or promote products derived from + this software without specific prior written permission. + + DISCLAIMER: THIS SOFTWARE IS PROVIDED BY AUTHOR "AS IS" AND ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE + DISCLAIMED. IN NO EVENT SHALL 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. json: bsd-atmel.json - yml: bsd-atmel.yml + yaml: bsd-atmel.yml html: bsd-atmel.html - text: bsd-atmel.LICENSE + license: bsd-atmel.LICENSE - license_key: bsd-axis + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + 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. 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 + 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. json: bsd-axis.json - yml: bsd-axis.yml + yaml: bsd-axis.yml html: bsd-axis.html - text: bsd-axis.LICENSE + license: bsd-axis.LICENSE - license_key: bsd-axis-nomod + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-axis-nomod other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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, + without modification. + + 2. 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 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 THE COPYRIGHT + HOLDERS 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. json: bsd-axis-nomod.json - yml: bsd-axis-nomod.yml + yaml: bsd-axis-nomod.yml html: bsd-axis-nomod.html - text: bsd-axis-nomod.LICENSE + license: bsd-axis-nomod.LICENSE - license_key: bsd-credit + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-credit other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software for any purpose + with or without fee is hereby granted, provided that the above copyright notice + and this permission notice appear in all copies. + + Modification and redistribution in source and binary forms is permitted provided + that due credit is given to the author and the OpenBSD project (for instance by + leaving this copyright notice intact). + + 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. json: bsd-credit.json - yml: bsd-credit.yml + yaml: bsd-credit.yml html: bsd-credit.html - text: bsd-credit.LICENSE + license: bsd-credit.LICENSE - license_key: bsd-dpt + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-dpt other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source form, with or without modification, are + permitted provided that redistributions of source code must retain the + above copyright notice, this list of conditions and the following + disclaimer. + + This software is provided `as is' by Distributed Processing Technology + 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 Distributed Processing + Technology be liable for any direct, indirect, incidental, special, + exemplary or consequential damages (including, but not limited to, + procurement of substitute goods or services; loss of use, data, or + profits; or business interruptions) 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 + driver software, even if advised of the possibility of such damage. json: bsd-dpt.json - yml: bsd-dpt.yml + yaml: bsd-dpt.yml html: bsd-dpt.html - text: bsd-dpt.LICENSE + license: bsd-dpt.LICENSE - license_key: bsd-export + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-export other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. {Copyright holder} name may not be used to endorse or promote products + derived from this software without specific prior written permission. + + This Software, including technical data, may be subject to U.S. export + control laws, including the U.S. Export Administration Act and its + associated regulations, and may be subject to export or import + regulations in other countries. You warrant that You will comply + strictly in all respects with all such regulations and acknowledge that + you have the responsibility to obtain licenses to export, re-export or + import the Software. + + TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS" + AND WITH ALL FAULTS AND {Copyright holder} MAKES NO PROMISES, REPRESENTATIONS OR + WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH + RESPECT TO THE SOFTWARE, INCLUDING ITS CONDITION, ITS CONFORMITY TO ANY + REPRESENTATION OR DESCRIPTION, OR THE EXISTENCE OF ANY LATENT OR PATENT + DEFECTS, AND {Copyright holder} SPECIFICALLY DISCLAIMS ALL IMPLIED (IF ANY) + WARRANTIES OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A + PARTICULAR PURPOSE, LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET + ENJOYMENT, QUIET POSSESSION OR CORRESPONDENCE TO DESCRIPTION. THE ENTIRE + RISK ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE LIES WITH YOU. json: bsd-export.json - yml: bsd-export.yml + yaml: bsd-export.yml html: bsd-export.html - text: bsd-export.LICENSE + license: bsd-export.LICENSE - license_key: bsd-innosys + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-innosys other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 this licence text + without modification, this list of conditions, and the following + disclaimer. The following copyright notice must appear immediately at + the beginning of all source files: + + Copyright (C) InnoSys Incorporated. All Rights Reserved + + This file is available under a BSD-style copyright + + 2. The name of InnoSys Incorporated may not be used to endorse or promote + products derived from this software without specific prior written + permission. + + THIS SOFTWARE IS PROVIDED BY INNOSYS CORP. ``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. json: bsd-innosys.json - yml: bsd-innosys.yml + yaml: bsd-innosys.yml html: bsd-innosys.html - text: bsd-innosys.LICENSE + license: bsd-innosys.LICENSE - license_key: bsd-intel + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + Redistribution and use in source and binary forms, with or without modification, + are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, this + list of conditions and the following disclaimer in the documentation and/or + other materials provided with the distribution. + + * The name of Intel Corporation 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 INTEL 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. json: bsd-intel.json - yml: bsd-intel.yml + yaml: bsd-intel.yml html: bsd-intel.html - text: bsd-intel.LICENSE + license: bsd-intel.LICENSE - license_key: bsd-mylex + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-mylex other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 this LICENSE.FlashPoint + file, without modification, this list of conditions, and the following + disclaimer. The following copyright notice must appear immediately at + the beginning of all source files: + + Copyright 1995-1996 by Mylex Corporation. All Rights Reserved + + This file is available under both the GNU General Public License + and a BSD-style copyright; see LICENSE.FlashPoint for details. + + 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 Mylex Corporation may not be used to endorse or promote + products derived from this software without specific prior written + permission. + + THIS SOFTWARE IS PROVIDED BY MYLEX CORP. ``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. json: bsd-mylex.json - yml: bsd-mylex.yml + yaml: bsd-mylex.yml html: bsd-mylex.html - text: bsd-mylex.LICENSE + license: bsd-mylex.LICENSE - license_key: bsd-new + category: Permissive spdx_license_key: BSD-3-Clause other_spdx_license_keys: - LicenseRef-scancode-libzip is_exception: no is_deprecated: no - category: Permissive + text: | + 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 ORGANIZATION nor the names of its contributors may be + used to endorse or promote products derived from this software without specific + prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS + BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE + GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. json: bsd-new.json - yml: bsd-new.yml + yaml: bsd-new.yml html: bsd-new.html - text: bsd-new.LICENSE + license: bsd-new.LICENSE - license_key: bsd-new-derivative + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-new-derivative other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Because this is a derivative work, you must comply with the {"sniffer.c"} + terms reproduced above. + 2. Redistributions of source code must retain the Tcpdump Group copyright + notice at the top of this source file, this list of conditions and the + following disclaimer. + 3. 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. + 4. The names {"tcpdump"} or {"libpcap"} may not be used to endorse or promote + products derived from this software without prior written permission. + + THERE IS ABSOLUTELY NO WARRANTY FOR THIS PROGRAM. + 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. + + 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. json: bsd-new-derivative.json - yml: bsd-new-derivative.yml + yaml: bsd-new-derivative.yml html: bsd-new-derivative.html - text: bsd-new-derivative.LICENSE + license: bsd-new-derivative.LICENSE - license_key: bsd-new-far-manager + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Permissive + text: | + 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 authors 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. + + EXCEPTION: + Far Manager plugins that use only the following header files from this + distribution (none or any): farcolor.hpp, farkeys.hpp, plugin.hpp, + farcolorW.pas, farkeysW.pas and pluginW.pas; can be distributed under any other + possible license with no implications from the above license on them. json: bsd-new-far-manager.json - yml: bsd-new-far-manager.yml + yaml: bsd-new-far-manager.yml html: bsd-new-far-manager.html - text: bsd-new-far-manager.LICENSE + license: bsd-new-far-manager.LICENSE - license_key: bsd-new-nomod + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-new-nomod other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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, without modification. + + 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 ORGANIZATION nor the names of its contributors may be + used to endorse or promote products derived from this software without specific + prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS + BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE + GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. json: bsd-new-nomod.json - yml: bsd-new-nomod.yml + yaml: bsd-new-nomod.yml html: bsd-new-nomod.html - text: bsd-new-nomod.LICENSE + license: bsd-new-nomod.LICENSE - license_key: bsd-new-tcpdump + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-new-tcpdump other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that: (1) source code + * distributions retain the above copyright notice and this paragraph + * in its entirety, and (2) distributions including binary code include + * the above copyright notice and this paragraph in its entirety in + * the documentation or other materials provided with the distribution. + * The name of author may not be used to endorse or + * promote products derived from this software without specific prior + * written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND + * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT + * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE. json: bsd-new-tcpdump.json - yml: bsd-new-tcpdump.yml + yaml: bsd-new-tcpdump.yml html: bsd-new-tcpdump.html - text: bsd-new-tcpdump.LICENSE + license: bsd-new-tcpdump.LICENSE - license_key: bsd-no-disclaimer + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-no-disclaimer other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + # 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 and this list of conditions. + # 2. Redistributions in binary form must reproduce the above copyright + # notice and this list of conditions in the + # documentation and/or other materials provided with the distribution. json: bsd-no-disclaimer.json - yml: bsd-no-disclaimer.yml + yaml: bsd-no-disclaimer.yml html: bsd-no-disclaimer.html - text: bsd-no-disclaimer.LICENSE + license: bsd-no-disclaimer.LICENSE - license_key: bsd-no-disclaimer-unmodified + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-no-disclaimer-unmodified other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + * 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 and this list of conditions, without modification. + * 2. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. json: bsd-no-disclaimer-unmodified.json - yml: bsd-no-disclaimer-unmodified.yml + yaml: bsd-no-disclaimer-unmodified.yml html: bsd-no-disclaimer-unmodified.html - text: bsd-no-disclaimer-unmodified.LICENSE + license: bsd-no-disclaimer-unmodified.LICENSE - license_key: bsd-no-mod + category: Free Restricted spdx_license_key: LicenseRef-scancode-bsd-no-mod other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Redistribution and use in source and binary forms are permitted + provided that the following conditions are met: + 1. The materials contained herein are unmodified and are used + unmodified. + 2. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following NO + ''WARRANTY'' disclaimer below (''Disclaimer''), without + modification. + 3. Redistributions in binary form must reproduce at minimum a + disclaimer similar to the Disclaimer below and any redistribution + must be conditioned upon including a substantially similar + Disclaimer requirement for further binary redistribution. + 4. Neither the names of the above-listed copyright holders nor the + names of any contributors may be used to endorse or promote + product derived from this software without specific prior written + permission. + + NO WARRANTY + 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 NONINFRINGEMENT, + MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE + FOR 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 DAMAGES. json: bsd-no-mod.json - yml: bsd-no-mod.yml + yaml: bsd-no-mod.yml html: bsd-no-mod.html - text: bsd-no-mod.LICENSE + license: bsd-no-mod.LICENSE - license_key: bsd-original + category: Permissive spdx_license_key: BSD-4-Clause other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 acknowledgement: This product includes software + developed by the . + + 4. Neither the name of the 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 ''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 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. json: bsd-original.json - yml: bsd-original.yml + yaml: bsd-original.yml html: bsd-original.html - text: bsd-original.LICENSE + license: bsd-original.LICENSE - license_key: bsd-original-muscle + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-original-muscle other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Redistribution and use in source and binary forms, with or without\nmodification, are\ + \ permitted provided that the following conditions\nare met:\n\n1. Redistributions of source\ + \ code must retain the above copyright\n notice, this list of conditions and the following\ + \ disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n \ + \ notice, this list of conditions and the following disclaimer in the\n documentation\ + \ and/or other materials provided with the distribution.\n3. All advertising materials mentioning\ + \ features or use of this software\n must display the following acknowledgement:\n \ + \ This product includes software developed by: \n David Corcoran \n\ + \ http://www.linuxnet.com (MUSCLE)\n4. The name of the author may not be used to endorse\ + \ or promote products\n derived from this software without specific prior written permission.\n\ + \nChanges to this license can be made only by the copyright author with \nexplicit written\ + \ consent.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\nIMPLIED\ + \ WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY\ + \ AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\nIN NO EVENT SHALL THE AUTHOR BE\ + \ LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\ + \ (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\ + \ USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF\ + \ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE)\ + \ ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGE." json: bsd-original-muscle.json - yml: bsd-original-muscle.yml + yaml: bsd-original-muscle.yml html: bsd-original-muscle.html - text: bsd-original-muscle.LICENSE + license: bsd-original-muscle.LICENSE - license_key: bsd-original-uc + category: Permissive spdx_license_key: BSD-4-Clause-UC other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. + + 4. 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. + + On on July 22 1999, per notice reproduced below, the advertising clause (clause + 3) of this license was officially rescinded by the Director of the Office of + Technology Licensing of the University of California. + + This applies only to BSD Unix files copyrighted by the Regents of the University + of California under this license. + + From: ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change : + + "July 22, 1999 + + To All Licensees, Distributors of Any Version of BSD: + + As you know, certain of the Berkeley Software Distribution ("BSD") source + code files require that further distributions of products containing all or + portions of the software, acknowledge within their advertising materials + that such products contain software developed by UC Berkeley and its + contributors. + + Specifically, the provision reads: + + " * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by the University of + * California, Berkeley and its contributors." + + Effective immediately, licensees and distributors are no longer required to + include the acknowledgement within advertising materials. Accordingly, the + foregoing paragraph of those BSD Unix files containing it is hereby deleted + in its entirety. + + William Hoskins + Director, Office of Technology Licensing + University of California, Berkeley" + + Note also that in many variants of this original BSD license, both occurrences + of the phrase "REGENTS AND CONTRIBUTORS" is replaced in the disclaimer section + by "COPYRIGHT HOLDERS AND CONTRIBUTORS". json: bsd-original-uc.json - yml: bsd-original-uc.yml + yaml: bsd-original-uc.yml html: bsd-original-uc.html - text: bsd-original-uc.LICENSE + license: bsd-original-uc.LICENSE - license_key: bsd-original-uc-1986 + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-original-uc-1986 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms are permitted provided that + this notice is preserved and that due credit is given to the University of + California Berkeley. The name of the University may not be used to endorse or + promote products derived from this software without specific prior written + permission. This software is provieded "as is" without express or implied + warranty json: bsd-original-uc-1986.json - yml: bsd-original-uc-1986.yml + yaml: bsd-original-uc-1986.yml html: bsd-original-uc-1986.html - text: bsd-original-uc-1986.LICENSE + license: bsd-original-uc-1986.LICENSE - license_key: bsd-original-uc-1990 + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + Redistribution and use in source and binary forms are permitted + provided that the above copyright notice and this paragraph are + duplicated in all such forms and that any documentation, + advertising materials, and other materials related to such + distribution and use acknowledge that the software was developed + by the University of California, Berkeley. The name of the + University may not be used to endorse or promote products derived + from this software without specific prior written permission. + THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. json: bsd-original-uc-1990.json - yml: bsd-original-uc-1990.yml + yaml: bsd-original-uc-1990.yml html: bsd-original-uc-1990.html - text: bsd-original-uc-1990.LICENSE + license: bsd-original-uc-1990.LICENSE - license_key: bsd-original-voices + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-original-voices other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "* Redistribution and use in source and binary forms, with or without\n * modification,\ + \ are permitted provided that the following conditions\n * are met:\n * 1. Redistributions\ + \ of source code must retain the above copyright\n * notice, this list of conditions\ + \ and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the\ + \ above copyright\n * notice, this list of conditions and the following disclaimer in\ + \ the\n * documentation and/or other materials provided with the distribution.\n * 3.\ + \ All advertising materials mentioning features or use of this software\n * must display\ + \ the following acknowledgement:\n *\tThis product includes software developed by Bill Paul.\n\ + \ * 4. Neither the name of the author nor the names of any co-contributors\n * may be\ + \ used to endorse or promote products derived from this software\n * without specific\ + \ prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS\ + \ ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n\ + \ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED.\ + \ IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD\n * BE LIABLE FOR ANY DIRECT, INDIRECT,\ + \ INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\ + \ TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\ + \ BUSINESS\n * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n\ + \ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n * ARISING\ + \ IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n * THE POSSIBILITY OF\ + \ SUCH DAMAGE." json: bsd-original-voices.json - yml: bsd-original-voices.yml + yaml: bsd-original-voices.yml html: bsd-original-voices.html - text: bsd-original-voices.LICENSE + license: bsd-original-voices.LICENSE - license_key: bsd-plus-mod-notice + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-plus-mod-notice other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 any contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + * Modified source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR + ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. json: bsd-plus-mod-notice.json - yml: bsd-plus-mod-notice.yml + yaml: bsd-plus-mod-notice.yml html: bsd-plus-mod-notice.html - text: bsd-plus-mod-notice.LICENSE + license: bsd-plus-mod-notice.LICENSE - license_key: bsd-plus-patent + category: Permissive spdx_license_key: BSD-2-Clause-Patent other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. + + Subject to the terms and conditions of this license, each copyright + holder and contributor hereby grants to those receiving rights under + this license a perpetual, worldwide, non-exclusive, no-charge, royalty- + free, irrevocable (except for failure to satisfy the conditions of this + license) patent license to make, have made, use, offer to sell, sell, + import, and otherwise transfer this software, where such license applies + only to those patent claims, already acquired or hereafter acquired, + licensable by such copyright holder or contributor that are necessarily + infringed by: + + (a) their Contribution(s) (the licensed copyrights of copyright holders + and non-copyrightable additions of contributors, in source or binary + form) alone; or + + (b) combination of their Contribution(s) with the work of authorship to + which such Contribution(s) was added by such copyright holder or + contributor, if, at the time the Contribution is added, such addition + causes such combination to be necessarily infringed. The patent license + shall not apply to any other combinations which include the + Contribution. + + Except as expressly stated above, no rights or licenses from any + copyright holder or contributor is granted under this license, whether + expressly, by implication, estoppel or otherwise. + + 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 + 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. json: bsd-plus-patent.json - yml: bsd-plus-patent.yml + yaml: bsd-plus-patent.yml html: bsd-plus-patent.html - text: bsd-plus-patent.LICENSE + license: bsd-plus-patent.LICENSE - license_key: bsd-protection + category: Copyleft spdx_license_key: BSD-Protection other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + BSD Protection License + February 2002 + + Preamble + -------- + + The Berkeley Software Distribution ("BSD") license has proven very effective + over the years at allowing for a wide spread of work throughout both + commercial and non-commercial products. For programmers whose primary + intention is to improve the general quality of available software, it is + arguable that there is no better license than the BSD license, as it + permits improvements to be used wherever they will help, without + idealogical or metallic constraint. + + This is of particular value to those who produce reference + implementations of proposed standards: The case of TCP/IP clearly + illustrates that freely and universally available implementations leads + the rapid acceptance of standards -- often even being used instead of a + de jure standard (eg, OSI network models). + + With the rapid proliferation of software licensed under the GNU General + Public License, however, the continued success of this role is called + into question. Given that the inclusion of a few lines of "GPL-tainted" + work into a larger body of work will result in restricted distribution + -- and given that further work will likely build upon the "tainted" + portions, making them difficult to remove at a future date -- there are + inevitable circumstances where authors would, in order to protect their + goal of providing for the widespread usage of their work, wish to guard + against such "GPL-taint". + + In addition, one can imagine that companies which operate by producing + and selling (possibly closed-source) code would wish to protect + themselves against the rise of a GPL-licensed competitor. While under + existing licenses this would mean not releasing their code under any + form of open license, if a license existed under which they could + incorporate any improvements back into their own (commercial) products + then they might be far more willing to provide for non-closed distribution. + + For the above reasons, we put forth this "BSD Protection License": A + license designed to retain the freedom granted by the BSD license to use + licensed works in a wide variety of settings, both non-commercial and + commercial, while protecting the work from having future contributors + restrict that freedom. + + The precise terms and conditions for copying, distribution, and + modification follow. + + BSD PROTECTION LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION, AND MODIFICATION + ---------------------------------------------------------------- + + 0. Definitions. + a) "Program", below, refers to any program or work distributed under + the terms of this license. + b) A "work based on the Program", below, refers to either the Program + or any derivative work under copyright law. + c) "Modification", below, refers to the act of creating derivative + works. + d) "You", below, refers to each licensee. + + 1. Scope. + This license governs the copying, distribution, and modification of + the Program. Other activities are outside the scope of this + license; 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. + + 2. Verbatim copies. + You may copy and distribute verbatim copies of the Program as you + receive it, in any medium, provided that you conspicuously and + appropriately publish on each copy an appropriate copyright notice; + 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. + + 3. Modification and redistribution under closed license. + You may modify your copy or copies of the Program, and distribute + the resulting derivative works, provided that you meet the + following conditions: + a) The copyright notice and disclaimer on the Program must be + reproduced and included in the source code, documentation, and/or + other materials provided in a manner in which such notices are + normally distributed. + b) The derivative work must be clearly identified as such, in order + that it may not be confused with the original work. + c) The license under which the derivative work is distributed must + expressly prohibit the distribution of further derivative works. + + 4. Modification and redistribution under open license. + You may modify your copy or copies of the Program, and distribute + the resulting derivative works, provided that you meet the + following conditions: + a) The copyright notice and disclaimer on the Program must be + reproduced and included in the source code, documentation, and/or + other materials provided in a manner in which such notices are + normally distributed. + b) You must clearly indicate the nature and date of any changes made + to the Program. The full details need not necessarily be + included in the individual modified files, provided that each + modified file is clearly marked as such and instructions are + included on where the full details of the modifications may be + found. + c) 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. + + 5. Implied acceptance. + You may not copy or distribute the Program or any derivative works + except as expressly provided under this license. Consequently, any + such action will be taken as implied acceptance of the terms of this + license. + + 6. NO WARRANTY. + THIS SOFTWARE IS PROVIDED "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 ANY OTHER + PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED + ABOVE, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR + INABILITY TO USE THE PROGRAM (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, EVEN + IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF + SUCH DAMAGES. json: bsd-protection.json - yml: bsd-protection.yml + yaml: bsd-protection.yml html: bsd-protection.html - text: bsd-protection.LICENSE + license: bsd-protection.LICENSE - license_key: bsd-simplified + category: Permissive spdx_license_key: BSD-2-Clause other_spdx_license_keys: - BSD-2-Clause-NetBSD - BSD-2 is_exception: no is_deprecated: no - category: Permissive + text: | + 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. json: bsd-simplified.json - yml: bsd-simplified.yml + yaml: bsd-simplified.yml html: bsd-simplified.html - text: bsd-simplified.LICENSE + license: bsd-simplified.LICENSE - license_key: bsd-simplified-darwin + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-simplified-darwin other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This software is not subject to any export provision of the United States + Department of Commerce, and may be exported to any country or planet. + + 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 immediately at the beginning of the file, without modification, + this list of conditions, and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE 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. json: bsd-simplified-darwin.json - yml: bsd-simplified-darwin.yml + yaml: bsd-simplified-darwin.yml html: bsd-simplified-darwin.html - text: bsd-simplified-darwin.LICENSE + license: bsd-simplified-darwin.LICENSE - license_key: bsd-simplified-intel + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-simplified-intel other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms, with or without modification, + are permitted provided that: (1) source code distributions retain the above + copyright notice and this paragraph in its entirety, (2) distributions including + binary code include the above copyright notice and this paragraph in its + entirety in the documentation or other materials provided with the distribution + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. json: bsd-simplified-intel.json - yml: bsd-simplified-intel.yml + yaml: bsd-simplified-intel.yml html: bsd-simplified-intel.html - text: bsd-simplified-intel.LICENSE + license: bsd-simplified-intel.LICENSE - license_key: bsd-simplified-source + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-simplified-source other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that redistributions of source + code retain the above copyright notice and this comment without + modification. json: bsd-simplified-source.json - yml: bsd-simplified-source.yml + yaml: bsd-simplified-source.yml html: bsd-simplified-source.html - text: bsd-simplified-source.LICENSE + license: bsd-simplified-source.LICENSE - license_key: bsd-source-code + category: Permissive spdx_license_key: BSD-Source-Code other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. + + - Neither name of the copyright holders nor the names of their contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS + IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 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. json: bsd-source-code.json - yml: bsd-source-code.yml + yaml: bsd-source-code.yml html: bsd-source-code.html - text: bsd-source-code.LICENSE + license: bsd-source-code.LICENSE - license_key: bsd-top + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-top other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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, + without modification, immediately at the beginning of the file. + 2. 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 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. json: bsd-top.json - yml: bsd-top.yml + yaml: bsd-top.yml html: bsd-top.html - text: bsd-top.LICENSE + license: bsd-top.LICENSE - license_key: bsd-top-gpl-addition + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-top-gpl-addition other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: " * Redistribution and use in source and binary forms, with or without\n * modification,\ + \ are permitted provided that the following conditions\n * are met:\n * 1. Redistributions\ + \ of source code must retain the above copyright\n * notice, this list of conditions,\ + \ and the following disclaimer,\n * without modification, immediately at the beginning\ + \ of the file.\n * 2. Redistributions in binary form must reproduce the above copyright\n\ + \ * notice, this list of conditions and the following disclaimer in the\n * documentation\ + \ and/or other materials provided with the distribution.\n * 3. The name of the author may\ + \ not be used to endorse or promote products\n * derived from this software without specific\ + \ prior written permission.\n *\n * Where this Software is combined with software released\ + \ under the terms of \n * the GNU General Public License (\"GPL\") and the terms of the\ + \ GPL would require the \n * combined work to also be released under the terms of the GPL,\ + \ the terms\n * and conditions of this License will apply in addition to those of the\n\ + \ * GPL with the exception of any terms or conditions of this License that\n * conflict\ + \ with, or are expressly prohibited by, the GPL.\n *\n * THIS SOFTWARE IS PROVIDED BY THE\ + \ AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,\ + \ BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\ + \ PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR\n\ + \ * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING,\ + \ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA,\ + \ OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\ + \ WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\ + \ ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY\ + \ OF\n * SUCH DAMAGE." json: bsd-top-gpl-addition.json - yml: bsd-top-gpl-addition.yml + yaml: bsd-top-gpl-addition.yml html: bsd-top-gpl-addition.html - text: bsd-top-gpl-addition.LICENSE + license: bsd-top-gpl-addition.LICENSE - license_key: bsd-unchanged + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-unchanged other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 in this + position and unchanged. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 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. json: bsd-unchanged.json - yml: bsd-unchanged.yml + yaml: bsd-unchanged.yml html: bsd-unchanged.html - text: bsd-unchanged.LICENSE + license: bsd-unchanged.LICENSE - license_key: bsd-unmodified + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-unmodified other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 unmodified, this list of conditions, and the following + disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. json: bsd-unmodified.json - yml: bsd-unmodified.yml + yaml: bsd-unmodified.yml html: bsd-unmodified.html - text: bsd-unmodified.LICENSE + license: bsd-unmodified.LICENSE - license_key: bsd-x11 + category: Permissive spdx_license_key: LicenseRef-scancode-bsd-x11 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 owner 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 "AS IS" AND ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT + 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. json: bsd-x11.json - yml: bsd-x11.yml + yaml: bsd-x11.yml html: bsd-x11.html - text: bsd-x11.LICENSE + license: bsd-x11.LICENSE - license_key: bsd-zero + category: Permissive spdx_license_key: 0BSD other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. json: bsd-zero.json - yml: bsd-zero.yml + yaml: bsd-zero.yml html: bsd-zero.html - text: bsd-zero.LICENSE + license: bsd-zero.LICENSE - license_key: bsl-1.0 + category: Source-available spdx_license_key: LicenseRef-scancode-bsl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: "Business Source License 1.0\n\nLicensor: MariaDB Corporation Ab\n\nSoftware: MariaDB\ + \ MaxScale™ v.2.0. The Software is © 2016 MariaDB Corporation Ab\n\nUse Limitation: Usage\ + \ of the software is free when your application uses the Software with a total of less than\ + \ three database server instances for production purposes.\n\nChange Date: 2019-01-01\n\n\ + Change License: Version 2 or later of the GNU General Public License as published by the\ + \ Free Software Foundation.\n\nFor information about alternative licensing arrangements\ + \ for the Software, please visit: https://mariadb.com/products/mariadb-enterprise\n\n \n\ + \nYou are granted limited license to the Software under this Business Source License. Please\ + \ read this Business Source License carefully, particularly the Use Limitation set forth\ + \ above. \n\nSubject to the Use Limitation, Licensor grants you a non-exclusive, worldwide\ + \ (subject to applicable laws) license to copy, modify, display, use, create derivative\ + \ works, and redistribute the Software until the Change Date. If your use of the Software\ + \ exceeds, or will exceed, the foregoing limitations you MUST obtain alternative licensing\ + \ terms for the Software directly from Licensor, its affiliated entities, or authorized\ + \ resellers. For the avoidance of doubt, prior to the Change Date, there is no Use Limitations\ + \ for non-production purposes.\n\nAfter the Change Date, this Business Source License will\ + \ convert to the Change License and your use of the Software, including modified versions\ + \ of the Software, will be governed by such Change License.\n\nAll copies of original and\ + \ modified Software, and derivative works of the Software, are subject to this Business\ + \ Source License. This Business Source License applies separately for each version of\ + \ the Software and the Change Date will vary for each version of the Software released by\ + \ Licensor.\n\nYou must conspicuously display this Business Source License on each original\ + \ or modified copy of the Software. If you receive the Software in original or modified\ + \ form from a third party, the restrictions set forth in this Business Source License apply\ + \ to your use of such Software.\n\nAny use of the Software in violation of this Business\ + \ Source License will automatically terminate your rights under this Business Source License\ + \ for the current and all future versions of the Software.\n\nYou may not use the marks\ + \ or logos of Licensor or its affiliates for commercial purposes without prior written consent\ + \ from Licensor.\n\nTO THE EXTENT PERMITTED BY APPLICABLE LAW, THE SOFTWARE AND ALL SERVICES\ + \ PROVIDED BY LICENSOR OR ITS AFFILIATES UNDER OR IN CONNECTION WITH WITH THIS BUSINESS\ + \ SOURCE LICENSE ARE PROVIDED ON AN \"AS IS\" AND \"AS AVAILABLE\" BASIS. YOU EXPRESSLY\ + \ WAIVE ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF\ + \ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, TITLE, SYSTEM INTEGRATION,\ + \ AND ACCURACY OF INFORMATIONAL CONTENT." json: bsl-1.0.json - yml: bsl-1.0.yml + yaml: bsl-1.0.yml html: bsl-1.0.html - text: bsl-1.0.LICENSE + license: bsl-1.0.LICENSE - license_key: bsl-1.1 + category: Source-available spdx_license_key: BUSL-1.1 other_spdx_license_keys: - LicenseRef-scancode-bsl-1.1 is_exception: no is_deprecated: no - category: Source-available + text: | + Business Source License 1.1 + + License text copyright © 2017 MariaDB Corporation Ab, All Rights Reserved. + "Business Source License" is a trademark of MariaDB Corporation Ab. + + Terms + + The Licensor hereby grants you the right to copy, modify, create derivative + works, redistribute, and make non-production use of the Licensed Work. The + Licensor may make an Additional Use Grant, above, permitting limited production + use. + + Effective on the Change Date, or the fourth anniversary of the first publicly + available distribution of a specific version of the Licensed Work under this + License, whichever comes first, the Licensor hereby grants you rights under the + terms of the Change License, and the rights granted in the paragraph above + terminate. + + If your use of the Licensed Work does not comply with the requirements currently + in effect as described in this License, you must purchase a commercial license + from the Licensor, its affiliated entities, or authorized resellers, or you must + refrain from using the Licensed Work. + + All copies of the original and modified Licensed Work, and derivative works of + the Licensed Work, are subject to this License. This License applies separately + for each version of the Licensed Work and the Change Date may vary for each + version of the Licensed Work released by Licensor. + + You must conspicuously display this License on each original or modified copy of + the Licensed Work. If you receive the Licensed Work in original or modified form + from a third party, the terms and conditions set forth in this License apply to + your use of that work. + + Any use of the Licensed Work in violation of this License will automatically + terminate your rights under this License for the current and all other versions + of the Licensed Work. + + This License does not grant you any right in any trademark or logo of Licensor + or its affiliates (provided that you may use a trademark or logo of Licensor as + expressly required by this License). + + TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON AN + "AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS + OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND TITLE.MariaDB hereby + grants you permission to use this License’s text to license your works, and to + refer to it using the trademark "Business Source License", as long as you comply + with the Covenants of Licensor below. + + Covenants of Licensor + + In consideration of the right to use this License’s text and the "Business + Source License" name and trademark, Licensor covenants to MariaDB, and to all + other recipients of the licensed work to be provided by Licensor: + + 1. To specify as the Change License the GPL Version 2.0 or any later + version, or a license that is compatible with GPL Version 2.0 or a later + version, where "compatible" means that software provided under the Change + License can be included in a program with software provided under GPL + Version 2.0 or a later version. Licensor may specify additional Change + Licenses without limitation. + + 2. To either: (a) specify an additional grant of rights to use that does not + impose any additional restriction on the right granted in this License, as + the Additional Use Grant; or (b) insert the text "None". + + 3. To specify a Change Date. + + 4. Not to modify this License in any other way. + + Notice + + The Business Source License (this document, or the "License") is not an Open + Source license. However, the Licensed Work will eventually be made available + under an Open Source License, as stated in this License. json: bsl-1.1.json - yml: bsl-1.1.yml + yaml: bsl-1.1.yml html: bsl-1.1.html - text: bsl-1.1.LICENSE + license: bsl-1.1.LICENSE - license_key: bsla + category: Permissive spdx_license_key: LicenseRef-scancode-bsla other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms are permitted + provided that the above copyright notice and this paragraph are + duplicated in all such forms and that any documentation, + advertising materials, and other materials related to such + distribution and use acknowledge that the software was developed + by the University of California, Berkeley. The name of the + University may not be used to endorse or promote products derived + from this software without specific prior written permission. + THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. json: bsla.json - yml: bsla.yml + yaml: bsla.yml html: bsla.html - text: bsla.LICENSE + license: bsla.LICENSE - license_key: bsla-no-advert + category: Permissive spdx_license_key: LicenseRef-scancode-bsla-no-advert other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms are permitted + provided that the above copyright notice and this paragraph are + duplicated in all such forms and that any documentation, + and other materials related to such + distribution and use acknowledge that the software was developed + by the University of California, Berkeley. The name of the + University may not be used to endorse or promote products derived + from this software without specific prior written permission. + THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. json: bsla-no-advert.json - yml: bsla-no-advert.yml + yaml: bsla-no-advert.yml html: bsla-no-advert.html - text: bsla-no-advert.LICENSE + license: bsla-no-advert.LICENSE - license_key: bugsense-sdk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-bugsense-sdk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "SDK LICENSE AGREEMENT\nInformation\nLast Updated: September 25, 2013\nYOU SHOULD READ\ + \ THIS AGREEMENT CAREFULLY, AS IT CONSTITUTES A BINDING CONTRACT BETWEEN YOU AND BUGSENSE.\n\ + \nBy downloading, installing, accessing, or otherwise copying or using all or any portion\ + \ of the BugSense SDK, (i) you accept this SDK License Agreement (\"Agreement\") on behalf\ + \ of the entity for which you are authorized to act (e.g., an employer) and acknowledge\ + \ that such entity is legally bound by this Agreement or, if there is no such entity for\ + \ which you are authorized to act, you accept this Agreement on behalf of yourself as an\ + \ individual and acknowledge that you are legally bound by this Agreement, and (ii) you\ + \ represent and warrant that you have the right, power and authority to act on behalf of\ + \ and bind such entity (if any) and yourself. Also, to enter into this Agreement, and thereby\ + \ use the BugSense SDK, you as an individual must be at least 18 years old. Accordingly,\ + \ you represent and warrant that you are at least 18 years old.\n\nIn this Agreement, \"\ + BugSense,\" \"we,\" \"us,\" and \"our\" refers to BugSense, Inc., a Delaware corporation,\ + \ and \"you\" and \"your\" refer to the entity on whose behalf you are entering into this\ + \ Agreement or, if there is no such entity, you as an individual.\n\nIF YOU DO NOT AGREE\ + \ TO THE TERMS CONTAINED IN THIS AGREEMENT, OR IF YOU DO NOT HAVE THE RIGHT, POWER AND AUTHORITY\ + \ TO ACT ON BEHALF OF AND BIND SUCH ENTITY OR YOURSELF AS AN INDIVIDUAL (IF THERE IS NO\ + \ SUCH ENTITY), DO NOT DOWNLOAD, INSTALL, ACCESS OR OTHERWISE COPY OR USE ALL OR ANY PORTION\ + \ OF THE BUGSENSE SDK. THE BUGSENSE SDK IS BEING LICENSED AND NOT SOLD TO YOU. BUGSENSE\ + \ PERMITS YOU TO DOWNLOAD, INSTALL, ACCESS, OR OTHERWISE COPY OR USE THE BUGSENSE SDK (INCLUDING\ + \ THE FUNCTIONALITY OR FEATURES THEREOF) ONLY IN ACCORDANCE WITH THIS AGREEMENT.\n\n1.\t\ + Definitions.\nCapitalized terms not otherwise defined in the text can be found in Exhibit\ + \ A.\n\n2.\tChanges to Agreement.\nWe reserve the right to update or otherwise make changes\ + \ to this Agreement from time to time on at least thirty (30) days’ notice, which notice\ + \ we will provide to you by any reasonable means, including without limitation by posting\ + \ the revised version of this Agreement on the website located at www.bugsense.com (or such\ + \ other website as we may designate). If you object to the revised version of this Agreement,\ + \ you will within such thirty (30) day period notify us of your objection and, if you so\ + \ notify us, the revised version will not apply to you. Instead, effective at the end of\ + \ such thirty (30) day period, your existing Agreement will terminate; you will cease all\ + \ access to and use of the BugSense SDK; and we will have no obligation to further provide\ + \ the BugSense SDK to you. If you do not notify us of your objection during the thirty (30)\ + \ day period, your continued access to and use of the BugSense SDK after the effective date\ + \ of such revised version of this Agreement will be deemed your acceptance of such revised\ + \ version; however, changes to this Agreement will not apply to any dispute between you\ + \ and us based on a claim filed before the effective date of the changes. You can determine\ + \ when this Agreement was last revised by referring to the \"LAST UPDATED\" or similar legend\ + \ at the top of this Agreement.\n\n3.\tLicense.\nSubject to and conditioned on compliance\ + \ with the terms and conditions of this Agreement, including without limitation compliance\ + \ with the obligations regarding the End User Requirements (defined below), BugSense hereby\ + \ grants you a nonexclusive, limited, non-transferable, revocable license (without the right\ + \ to sublicense except as expressly permitted by this Section) to (i) install, use, and\ + \ copy the BugSense SDK for the purpose of debugging, monitoring, developing and operating\ + \ your User App and (ii) include the BugSense SDK in your User App and distribute to End\ + \ Users (directly or indirectly in accordance with your regular distribution channels for\ + \ the User App) the BugSense SDK as contained within your User App. For each distribution\ + \ and copy of your User App that contains the BugSense SDK, you will require the applicable\ + \ End User to enter into a legally binding license agreement with you that, at a minimum,\ + \ complies with the following (such criteria, the \"End User Requirements\"): (a) limits\ + \ the license grant to use of the User App by the End User on the applicable mobile device(s)\ + \ on a specified mobile platform; (b) disclaims all warranties by and on behalf of and limits\ + \ all liabilities of BugSense; (c) prohibits decompilation and other reverse engineering\ + \ of the BugSense SDK; (d) provides that you will protect the privacy and legal rights of\ + \ End Users under all applicable laws and regulations, which includes communicating a legally\ + \ adequate privacy notice; (e) notifies End Users that certain information will be made\ + \ available to you, BugSense and other entities and that additional charges (e.g., data\ + \ usage charges) may be incurred by End Users (e.g., in the transmission of such information)\ + \ by their mobile service providers; (f) obtains sufficient authorization from End Users\ + \ to transfer such information to you, BugSense and other entities and to permit the storage\ + \ and processing of such information; and (g) otherwise obtains and maintains any required\ + \ consents from End Users to allow BugSense (including its service providers) to provide\ + \ or have provided products and services to you, including without limitation consent for\ + \ you, BugSense and other entities to access, monitor, use and disclose End User data. Except\ + \ as required by Section 4 below, in the license agreement with End Users (and notwithstanding\ + \ anything to the contrary in this Section), you will not refer to BugSense by name or with\ + \ other identifying information; instead, you will address the End User Requirements by\ + \ referring to your \"suppliers,\" \"licensors\" and \"service providers\" (or using similar\ + \ words that refer to BugSense).\n\n4.\tOwnership.\nBugSense and/or its suppliers, licensors\ + \ and service providers own all worldwide right, title and interest in and to the BugSense\ + \ SDK, including all worldwide patent rights; copyright rights (including those with respect\ + \ to computer software, software design, software code, software architecture, programming\ + \ tools, graphical user interfaces, applications programming interfaces, reports, dashboard,\ + \ business rules, use cases, screens, alerts, notifications, drawings, specifications and\ + \ databases); trade secrets and other rights with respect to confidential or proprietary\ + \ information; know-how; other rights with respect to inventions, discoveries, ideas, improvements,\ + \ techniques, formulae, algorithms, processes, schematics, testing procedures, technical\ + \ information and other technology; and any other intellectual property and proprietary\ + \ rights, whether or not subject to registration; and all rights under any license or other\ + \ arrangement with respect to the foregoing. Except as expressly stated in this Agreement,\ + \ BugSense does not grant you any license or other rights under or with respect to any intellectual\ + \ property rights in the BugSense SDK; all right, title, and interest in and to the BugSense\ + \ SDK not expressly granted in this Agreement remain with BugSense and/or its suppliers,\ + \ licensors and service providers; and no license or other rights with respect to the BugSense\ + \ SDK or related intellectual property rights shall be implied. You may not remove or obscure\ + \ any copyright, trademark, confidentiality, or any other intellectual property or proprietary\ + \ rights notices from the BugSense SDK. \"BugSense\" and related trademarks and service\ + \ marks (including related graphics and logos) and trade names used on or in the BugSense\ + \ SDK are the trademarks of BugSense, and you may not use, or authorize the use of, such\ + \ trademarks, service marks or trade names without our express written permission (whether\ + \ in connection with any products or services or otherwise). Other trademarks, service marks,\ + \ and trade names that may appear on or in the BugSense SDK are the property of their respective\ + \ owners. Except as expressly set forth in this Agreement, we retain all rights to our trademarks\ + \ and service marks.\n\n5.\tAdditional Obligations and Restrictions.\nYou will at all times\ + \ access and use the BugSense SDK only in accordance with this Agreement and only in accordance\ + \ with all applicable laws and regulations. In all circumstances, as a condition to your\ + \ access to and use of the Software, you agree that you will not access or use the BugSense\ + \ SDK for any purpose that is unlawful or in any manner which could damage, disable, overburden\ + \ or impair the operation of the Software or interfere with any other party’s use of the\ + \ BugSense SDK. BugSense may take whatever steps we believe are appropriate, at our sole\ + \ discretion, to detect and prevent any such activities. Further, BugSense may take whatever\ + \ steps we believe are appropriate, at our sole discretion, to enforce or verify compliance\ + \ with any part of this Agreement (including without limitation our right to pursue or cooperate\ + \ with any legal process relating to your use of the BugSense SDK or any third party claim\ + \ that your use of the BugSense SDK is unlawful or infringes such third party’s rights).\n\ + Except as expressly permitted in this Agreement, you may not (a) create any derivative works\ + \ of or otherwise modify, or decompile or otherwise reverse engineer, all or any portion\ + \ of the BugSense SDK (except that you may modify portions of the BugSense SDK provided\ + \ to you in source code form in accordance with, and to the extent instructions to modify\ + \ such portions are set forth in, the Documentation); or (b) remove, circumvent, disable,\ + \ damage or otherwise interfere with any security features of the BugSense SDK.\nYou agree\ + \ not to use the BugSense SDK to transmit any protected health data, as defined in the U.S.\ + \ Health Insurance Portability and Accountability Act of 1996 (\"HIPAA\") as amended by\ + \ the U.S. Health Information Technology for Economic and Clinical Health Act, including\ + \ the HIPAA omnibus final rule.\nIf you fail to comply with any of the terms and conditions\ + \ of this Agreement, your right to use the BugSense SDK automatically terminates. Further,\ + \ we reserve the right to deny you access to and use of the BugSense SDK if you fail to\ + \ comply with such terms and condition or if you are the subject of complaints by others.\n\ + \n6.\tFeedback.\nIf you provide any information, sample data, event types, tags, comments,\ + \ or other content related to the BugSense SDK or your use of the BugSense SDK (your\"Feedback\"\ + ) to BugSense, you hereby grant to BugSense a perpetual, irrevocable, worldwide, royalty\ + \ free license to use, make, have made, offer for sale, sell, copy, distribute, perform,\ + \ display, transmit, create derivative works of, and otherwise exploit such Feedback, and\ + \ to grant to others rights to do any of the foregoing.\n\n7.\tOpen Source.\nThe BugSense\ + \ SDK includes open source components, which are licensed for use and distribution by us\ + \ under applicable open source licenses. Use of these open source components is governed\ + \ by and subject to the terms and conditions of the applicable open source license.\n\n\ + 8.\tFeedback.\nIf you post any information, sample data, event types, tags, comments, or\ + \ other content (your \"Feedback\") to the Site or through the Services, or otherwise provide\ + \ any Feedback to BugSense, you hereby grant to BugSense a perpetual, irrevocable, world-wide,\ + \ royalty free license to use, make, have made, offer for sale, sell, copy, distribute,\ + \ perform, display, transmit, create derivative works of, and otherwise exploit such Feedback,\ + \ and to grant to others rights to do any of the foregoing.\n\n9.\tOpen Source.\nThe Software\ + \ includes open source components, which are licensed for use and distribution by us under\ + \ applicable open source licenses. Use of these open source components is governed by and\ + \ subject to the terms and conditions of the applicable open source license.\n\n10.\tInformation\ + \ Processing.\nYou are responsible for how content is submitted and the security of such\ + \ transmission. Although, through the BugSense SDK, BugSense may permit submission of free\ + \ form information into BugSense’s platform, potentially including personal information\ + \ of your customers, you agree not to transmit any personal information to the BugSense\ + \ platform through the BugSense SDK, as personal information may be defined by applicable\ + \ law due to the data type, use or location. For this situation, BugSense is acting as a\ + \ service provider to you and will handle any personal information only on your instructions.\n\ + \n11.\tWarranty Disclaimer.\nBUGSENSE AND ITS AFFILIATES, AND THEIR SUPPLIERS, LICENSORS\ + \ AND SERVICE PROVIDERS, PROVIDE THE BUGSENSE SDK ASIS AND EXPRESSLY DISCLAIM ANY AND ALL\ + \ WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OF\ + \ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT ANY QUIET ENJOYMENT\ + \ AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. BUGSENSE DOES NOT\ + \ WARRANT THAT THE BUGSENSE SDK WILL BE ERROR-FREE, NOR DOES BUGSENSE PROVIDE ANY WARRANTIES\ + \ AS TO THE ACCURACY OR COMPLETENESS OF THE BUGSENSE SDK. YOU AGREE THAT, AS BETWEEN YOU\ + \ AND BUGSENSE, YOU ARE RESPONSIBLE FOR THE ACCURACY AND QUALITY OF THE DATA PROVIDED BY\ + \ YOU OR YOUR END USERS TO BUGSENSE AND ITS AFFILIATES AND THEIR SUPPLIERS, LICENSORS AND\ + \ SERVICE PROVIDERS. BECAUSE THIS DISCLAIMER OF WARRANTY MAY NOT BE VALID IN SOME STATES\ + \ OR JURISDICTIONS, THE ABOVE DISCLAIMER MAY NOT APPLY TO YOU.\n\n12.\tLimitation of Liability.\n\ + BUGSENSE AND ITS AFFILIATES, AND THEIR SUPPLIERS, LICENSORS AND SERVICE PROVIDERS, PROVIDE\ + \ THE SITE, SERVICES AND SOFTWARE AS-IS AND EXPRESSLY DISCLAIM ANY AND ALL WARRANTIES, EXPRESS\ + \ OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE, NONINFRINGEMENT ANY QUIET ENJOYMENT AND ANY WARRANTIES ARISING\ + \ OUT OF COURSE OF DEALING OR USAGE OF TRADE. BUGSENSE DOES NOT WARRANT THAT THE SITE, SERVICES\ + \ OR SOFTWARE WILL BE ERROR-FREE, NOR DOES BUGSENSE PROVIDE ANY WARRANTIES AS TO THE ACCURACY\ + \ OR COMPLETENESS OF THE SITE, SERVICES OR SOFTWARE, OR THE INFORMATION PROVIDED ON THE\ + \ SITE OR BY THE SERVICES. YOU AGREE THAT, AS BETWEEN YOU AND BUGSENSE, YOU ARE RESPONSIBLE\ + \ FOR THE ACCURACY AND QUALITY OF THE DATA PROVIDED BY YOU OR YOUR END USERS TO BUGSENSE\ + \ AND ITS AFFILIATES AND THEIR SUPPLIERS, LICENSORS AND SERVICE PROVIDERS. BECAUSE THIS\ + \ DISCLAIMER OF WARRANTY MAY NOT BE VALID IN SOME STATES OR JURISDICTIONS, THE ABOVE DISCLAIMER\ + \ MAY NOT APPLY TO YOU.\n\n13.\tLimitation of Liability.\nTO THE EXTENT PERMITTED BY APPLICABLE\ + \ LAW, BUGSENSE’S TOTAL CUMULATIVE LIABILITY TO YOU, FROM ALL CAUSES OF ACTION AND BASED\ + \ ON ANY THEORIES OF LIABILITY, WILL BE LIMITED TO AND WILL NOT EXCEED THE GREATER OF (i)\ + \ ONE HUNDRED DOLLARS ($100) AND (ii) THE AMOUNTS PAID BY YOU TO BUGSENSE IN THE TWELVE\ + \ MONTHS PRIOR TO THE EVENT GIVING RISE TO SUCH LIABILITY. IN NO EVENT WILL BUGSENSE OR\ + \ ANY OF ITS AFFILIATES OR THEIR SUPPLIERS, LICENSORS OR SERVICE PROVIDERS (OR THE RESPECTIVE\ + \ OFFICERS, DIRECTORS, EMPLOYEES, AGENTS AND PARTNERS OF THE FOREGOING) (COLLECTIVELY, THE\ + \ \"BUGSENSE ENTITIES\") BE LIABLE TO YOU FOR ANY SPECIAL, INDIRECT, INCIDENTAL, CONSEQUENTIAL\ + \ OR PUNITIVE DAMAGES (OR FOR ANY LOSS OF USE, DATA OR PROFITS OR BUSINESS INTERRUPTION)\ + \ ARISING OUT OF OR OTHERWISE RELATING TO THIS AGREEMENT OR THE ACCESS TO OR USE OF THE\ + \ BUGSENSE SDK, WHETHER SUCH LIABILITY ARISES FROM CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE),\ + \ STRICT LIABILITY, INDEMNIFICATION, OR OTHERWISE, AND WHETHER OR NOT THE BUGSENSE ENTITIES\ + \ HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGE. YOU AGREE THAT THESE LIMITATIONS\ + \ WILL SURVIVE AND APPLY EVEN IF ANY REMEDY IS FOUND TO HAVE FAILED OF ITS ESSENTIAL PURPOSE.\ + \ IN ADDITION, AND WITHOUT LIMITING THE FOREGOING, THE BUGSENSE ENTITIES WILL HAVE NO LIABILITY\ + \ OR RESPONSIBILITY FOR ANY LOSS OF USE, DATA OR PROFITS OR BUSINESS INTERRUPTION RESULTING\ + \ FROM THE TERMINATION OF RIGHTS GRANTED IN THIS AGREEMENT AND ANY ASSOCIATED CESSATION\ + \ OF THE FUNCTIONS OF THE BUGSENSE SDK. BECAUSE SOME STATES OR JURISDICTIONS DO NOT ALLOW\ + \ LIMITATION OR EXCLUSION OF CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY\ + \ NOT APPLY TO YOU. BugSense is acting on behalf of its affiliates and their licensors,\ + \ suppliers and service providers for the purpose of disclaiming, excluding and limiting\ + \ obligations, warranties and liabilities, but in no other respects and for no other purposes.\n\ + \n14.\tExport.\nThe BugSense Materials, or any feature or portion thereof, may not be available\ + \ for use in all jurisdictions, and BugSense makes no representation that any of the foregoing\ + \ is appropriate or available for use in any particular jurisdiction. To the extent you\ + \ choose to access and use the BugSense Materials, you do so at your own initiative and\ + \ at your own risk, and you are responsible for complying with all applicable laws and regulations.\n\ + \n15.\tExport.\nYour access to and use of the BugSense SDK are subject to the customs and\ + \ export control laws and regulations of the United States and may also be subject to the\ + \ customs and export laws and regulations of other countries. You will comply fully with\ + \ all applicable customs and export control laws and regulations of the United States and\ + \ any other country where you access or use any of the BugSense SDK. You certify that you\ + \ are not on any of the relevant U.S. Government Lists of prohibited persons, including\ + \ but not limited to the U.S. Treasury Department’s List of Specially Designated Nationals,\ + \ and the U.S. Commerce Department’s List of Denied Persons or Entity List. You further\ + \ certify that you will not export, re-export, ship, transfer or otherwise use the BugSense\ + \ SDK in any country subject to an embargo or other sanction by the United States, including\ + \ without limitation Iran, Syria, Cuba, Sudan and North Korea, and that you will not use\ + \ the BugSense SDK for any purpose prohibited by U.S. laws or for any nuclear, chemical,\ + \ missile or biological weapons related end uses.\n\n16.\tAnti-Bribery/Foreign Corrupt Practices\ + \ Act.\nYou acknowledge that you are familiar with and understand the provisions of the\ + \ U.S. Foreign Corrupt Practices Act (\"FCPA\") and the U.K. Bribery Act of 2010 (\"UKBA\"\ + ) (and any other similar laws in other jurisdictions (collectively, \"Anti-Bribery Laws\"\ + ) and you agree to comply with their terms as well as any provisions of related local law\ + \ and Splunk Inc.’s corporate policy and procedures related thereto, which policy and procedures\ + \ we will make available to you upon your written request. You further understand the provisions\ + \ relating to the Anti-Bribery Laws’ prohibitions regarding the payment or giving of anything\ + \ of value, either directly or indirectly, to an official of a foreign government or political\ + \ party for the purpose of influencing an act or decision in his or her official capacity\ + \ or inducing the official to use his or her party’s influence with that government, in\ + \ each case to obtain or retain business or otherwise gain an advantage. You are also aware\ + \ of the UKBA’s prohibition relating to providing things of value to any person, not only\ + \ foreign officials, with the intent to induce such party to not act with good faith or\ + \ impartiality or to abuse a position of trust. You, including but not limited to your officers,\ + \ directors, employees, agents or subsidiaries (if any), agree not to violate or knowingly\ + \ let anyone violate the Anti-Bribery Laws. Upon our request, you agree to provide us with\ + \ written certifications of your Anti-Bribery Laws compliance and assist us with an investigation\ + \ into possible wrongdoing if we have reason to believe violations of the Anti-Bribery Laws\ + \ have occurred in connection with this Agreement.\n\n17.\tFees.\nTo the extent you have\ + \ agreed to pay specified fees to BugSense pursuant to a separate order or other arrangement\ + \ with BugSense, you may access and use the BugSense SDK only so long as you are current\ + \ in your payment obligations.\n\n18.\tNo Support.\nBugSense has no obligation to provide\ + \ maintenance or support of the BugSense SDK.\n\n19.\tTermination by You.\nYou may terminate\ + \ this Agreement at any time and for any or no reason by written notice to BugSense. If\ + \ you terminate this Agreement, you are not entitled to receive (and BugSense has no obligation\ + \ to provide) any refund of or credit for any fees paid prior to such termination.\n\n20.\t\ + Termination by BugSense.\nWe may terminate this Agreement by written notice to you at any\ + \ time if we determine that such action is appropriate—for example, to (i) prevent errors\ + \ or any other harm with respect to the BugSense SDK; (ii) respond to your breach of this\ + \ Agreement; (iii) mitigate or otherwise limit our damages or our liability; or (iv) respond\ + \ to applicable law or regulation or any court or governing agency order. Further, we may\ + \ terminate this Agreement by written notice to you at any time if (a) you fail to make\ + \ payments to BugSense when due; or (b) you otherwise access or use the BugSense SDK in\ + \ violation of this Agreement or you otherwise fail to comply with this Agreement.\n\n21.\t\ + Effect of Termination.\nUpon any termination of this Agreement: (i) you will immediately\ + \ cease access to and use of the BugSense SDK; (ii) all license and other rights granted\ + \ to you under this Agreement will immediately terminate; (iii) you will promptly return\ + \ or, if instructed by BugSense, destroy all copies of the BugSense SDK in your possession\ + \ or control; and (iv) except as expressly set forth in Section 2 of this Agreement, you\ + \ will not be entitled to receive (and BugSense has no obligation to provide) any refund\ + \ of or credit for any fees paid prior to such termination. In addition, Sections 4, 6,\ + \ 8-13, and 17-21 will survive any termination of this Agreement (regardless of the basis\ + \ for termination).\n\n22.\tIndemnity.\nYou will defend, indemnify and hold harmless each\ + \ of the BugSense Entities from and against any and all third party claims, damages, losses,\ + \ liabilities, demands, costs and expenses (including reasonable attorneys’ fees and costs)\ + \ relating to or arising, directly or indirectly, in whole or in part, from:\no\tYour use\ + \ of the BugSense SDK;\no\tAny breach or violation by you of this Agreement or of any applicable\ + \ law;\no\tAny breach or violation by you of this Agreement or of any applicable law;\n\ + o\tAny action taken by BugSense as part of its investigation of a suspected violation of\ + \ this Agreement by you, or as a result of our finding or decision that such violation has\ + \ occurred; or\no\tYour violation of any rights of any third party, including without limitation\ + \ in connection with a dispute between you and another customer of BugSense.\nWe reserve\ + \ the right to assume, at our sole expense, the exclusive defense and control of any such\ + \ claim or action and all negotiations for settlement or compromise, and you agree to fully\ + \ cooperate with us in (and, upon our request, tender to us) the defense of any such claim,\ + \ action, settlement, or compromise negotiations, as requested by us. In no event will you\ + \ settle any claim or action without our prior written approval.\nYou agree not to sue any\ + \ of the BugSense Entities as a result of its decision to remove or refuse to process any\ + \ information or content, to warn you, to suspend or terminate your access to the BugSense\ + \ SDK, or to take any other action during the investigation of a suspected violation or\ + \ as a result of BugSense’s conclusion that a violation of this Agreement has occurred.\n\ + \n23.\tSeverability.\nUnless otherwise provided herein, all rights and remedies, whether\ + \ conferred hereunder or by any other instrument or law, will be cumulative and may be exercised\ + \ singularly or concurrently. The failure by either party to enforce any provisions of this\ + \ Agreement will not constitute a waiver of any other right hereunder or of any subsequent\ + \ enforcement of that or any other provisions. The terms and conditions stated herein are\ + \ declared to be severable. If a court of competent jurisdiction holds any provision of\ + \ this Agreement invalid or unenforceable, the remaining provisions of the Agreement will\ + \ remain in full force and effect, and the provision affected will be construed so as to\ + \ be enforceable to the maximum extent permissible by law.\n\n24.\tChoice of Law and Disputes.\n\ + The following Choice of Law and Disputes terms and conditions will apply under this Agreement:\ + \ This Agreement will be governed by and construed in accordance with the laws of the State\ + \ of California, as if performed wholly within the state and without giving effect to the\ + \ principles of conflict of law rules of any jurisdiction or the United Nations Convention\ + \ on Contracts for the International Sale of Goods, the application of which is expressly\ + \ excluded. (i) For other than the U.S. Government as a party, any legal action or proceeding\ + \ arising under this Agreement will be brought exclusively in the federal or state courts\ + \ located in San Francisco, California and the parties hereby consent to personal jurisdiction\ + \ and venue therein. If a dispute arises between you and BugSense, and either you or BugSense\ + \ files suit in any court of competent jurisdiction to enforce rights under this Agreement,\ + \ then the prevailing party will be entitled to recover from the other party all costs of\ + \ such action or suit, including but not limited to investigative costs, court costs and\ + \ reasonable attorneys’ fees (including expenses incurred to collect those expenses). (ii)\ + \ If a dispute arises between you and BugSense that is related to a government customer\ + \ that is subject to the Contract Disputes Act, 41 U.S.C. 601 et seq., concerning issues\ + \ of fact or law which relate to this Agreement (a\"CDA Dispute\"), the following dispute\ + \ procedures will apply. If the U.S. Government issues a final decision regarding a CDA\ + \ Dispute, such decision will be provided within ten (10) days of receipt by you by written\ + \ notification to BugSense and subsequently binding upon BugSense to the same extent it\ + \ is binding upon you, subject to BugSense’s right to seek additional time, cost or both.\ + \ BugSense will continue performance in accordance with the decision pending any appeal\ + \ that may be initiated pursuant to the provisions below. If you elect to appeal such decision\ + \ under your prime contract \"Disputes\" clause, BugSense will be permitted to participate\ + \ fully in such appeal concerning issues of fact or law which relate to this Agreement for\ + \ the purpose of protecting BugSense’s interest. You will not enter into a settlement with\ + \ the government as to any portion of the appeal affecting BugSense without BugSense’s prior\ + \ written consent. If you elect not to appeal a CDA Dispute, such election must be made\ + \ within thirty (30) days of the government’s final decision and you agree to notify BugSense\ + \ within three (3) days after you elect not to appeal. If BugSense elects to pursue appeal\ + \ of such decision by the Contracting Officer, BugSense will provide written notice of such\ + \ election to you, and the parties will enter into a sponsorship agreement pursuant to which\ + \ BugSense will have the right to prosecute in your name any and all appeals arising from\ + \ the government’s determination. Any such appeal brought by BugSense in your name will\ + \ be at the expense of BugSense, provided, however, that you, at your expense, will provide\ + \ BugSense with reasonable assistance in the presentation of such appeal. (iii) If you are\ + \ the U.S. Government as a party to this Agreement, this Agreement will be governed by and\ + \ interpreted in accordance with the Contract Disputes Act of 1978, as amended (41 U.S.C.\ + \ 601-613). Failure of the parties to reach agreement on any request for equitable adjustment,\ + \ claim, appeal, or action arising under or relating to this Agreement will be a dispute\ + \ to be resolved in accordance with the clause at 48 C.F.R 52.233-1, which is incorporated\ + \ in this Agreement by reference.\n\n25.\tGeneral.\nAll notices required or permitted under\ + \ this Agreement will be by email. All notices to BugSense will be sent to mobilesupport@splunk.com\ + \ (or to such other email address as we may notice to you from time to time). All notices\ + \ to you will be sent to the email address you provide to BugSense as part of registering\ + \ and establishing an account with us (or to such other email address as you may notice\ + \ to us from time to time). You may not assign, delegate or transfer this Agreement, in\ + \ whole or in part, by agreement, operation of law or otherwise. BugSense may assign this\ + \ Agreement in whole or in part to (i) an affiliate, (ii) in connection with an internal\ + \ reorganization, or (iii) in connection with a merger, acquisition, sale of all or a portion\ + \ of BugSense’s business, assets or stock, or similar transaction. Further, BugSense may\ + \ assign its rights to receive payment due as a result of performance of this Agreement\ + \ to a bank, trust company, or other financing institution, including any Federal lending\ + \ agency in accordance with the Assignment of Claims Act (31 U.S.C. 3727) and may assign\ + \ this Agreement in accordance with the provisions at 48 C.F.R 42.12, as applicable. Any\ + \ attempt to assign this Agreement other than as permitted herein will be null and void.\ + \ Subject to the foregoing, this Agreement will bind and inure to the benefit of the parties’\ + \ permitted successors and assigns. This Agreement, including any exhibits or schedules\ + \ hereto and any additional terms incorporated by reference, constitutes the complete and\ + \ exclusive understanding and agreement between the parties and supersedes any and all prior\ + \ or contemporaneous agreements, communications and understandings, written or oral, relating\ + \ to their subject matter. Any waiver, modification or amendment of any provision of this\ + \ Agreement will be effective only if in writing and signed by duly authorized representatives\ + \ of both parties. Any terms and conditions contained or referenced by either party in a\ + \ quote, purchase order, acceptance, invoice or any similar document purporting to modify\ + \ the terms and conditions contained in this Agreement are hereby rejected and will be disregarded\ + \ and have no effect unless otherwise expressly agreed to by the parties in accordance with\ + \ the preceding sentence. This Agreement is a binding contract between you and BugSense\ + \ governing your use of the BugSense SDK; however, if you and BugSense enter into a separate\ + \ written agreement that specifically states that it supersedes this Agreement, in whole\ + \ or in part, such separate written agreement will apply to your use of the BugSense SDK\ + \ and supersede this Agreement to the extent and as set forth in such separate written agreement.\ + \ In addition, this Agreement may be amended and become effective as set forth in Section\ + \ 2 above." json: bugsense-sdk.json - yml: bugsense-sdk.yml + yaml: bugsense-sdk.yml html: bugsense-sdk.html - text: bugsense-sdk.LICENSE + license: bugsense-sdk.LICENSE - license_key: bytemark + category: Permissive spdx_license_key: LicenseRef-scancode-bytemark other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + BYTEmark (tm) + BYTE's Native Mode Benchmarks + Rick Grehan, BYTE Magazine + + Creation: + Revision: 3/95;10/95 + 10/95 - Removed allocation that was taking place inside + the LU Decomposition benchmark. Though it didn't seem to + make a difference on systems we ran it on, it nonetheless + removes an operating system dependency that probably should + not have been there. + + DISCLAIMER + The source, executable, and documentation files that comprise + the BYTEmark benchmarks are made available on an "as is" basis. + This means that we at BYTE Magazine have made every reasonable + effort to verify that the there are no errors in the source and + executable code. We cannot, however, guarantee that the programs + are error-free. Consequently, McGraw-HIll and BYTE Magazine make + no claims in regard to the fitness of the source code, executable + code, and documentation of the BYTEmark. + Furthermore, BYTE Magazine, McGraw-Hill, and all employees + of McGraw-Hill cannot be held responsible for any damages resulting + from the use of this code or the results obtained from using + this code. json: bytemark.json - yml: bytemark.yml + yaml: bytemark.yml html: bytemark.html - text: bytemark.LICENSE + license: bytemark.LICENSE - license_key: bzip2-libbzip-1.0.5 + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: "The bzip2 license\nTerms\nThis program, \"bzip2\" and associated library \"libbzip2\"\ + , are \ncopyright (C) Julian R Seward. All rights reserved.\n\nRedistribution and use in\ + \ source and binary forms, with or without\nmodification, are permitted provided that the\ + \ following conditions\nare met:\n\n1. Redistributions of source code must retain the above\ + \ copyright\n notice, this list of conditions and the following disclaimer.\n\n2. The\ + \ origin of this software must not be misrepresented; you must\n not claim that you wrote\ + \ the original software. If you use this\n software in a product, an acknowledgment in\ + \ the product\n documentation would be appreciated but is not required.\n\n3. Altered\ + \ source versions must be plainly marked as such, and must\n not be misrepresented as\ + \ being the original software.\n\n4. The name of the author may not be used to endorse or\ + \ promote\n products derived from this software without specific prior written\n permission.\n\ + \nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\nOR IMPLIED WARRANTIES,\ + \ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS\ + \ FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\ + \ ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING,\ + \ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\nGOODS OR SERVICES; LOSS OF USE, DATA, OR\ + \ PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER\ + \ IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN\ + \ ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\ + \nJulian Seward, Cambridge, UK.\njseward@acm.org" json: bzip2-libbzip-1.0.5.json - yml: bzip2-libbzip-1.0.5.yml + yaml: bzip2-libbzip-1.0.5.yml html: bzip2-libbzip-1.0.5.html - text: bzip2-libbzip-1.0.5.LICENSE + license: bzip2-libbzip-1.0.5.LICENSE - license_key: bzip2-libbzip-2010 + category: Permissive spdx_license_key: bzip2-1.0.6 other_spdx_license_keys: - bzip2-1.0.5 is_exception: no is_deprecated: no - category: Permissive + text: | + 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. json: bzip2-libbzip-2010.json - yml: bzip2-libbzip-2010.yml + yaml: bzip2-libbzip-2010.yml html: bzip2-libbzip-2010.html - text: bzip2-libbzip-2010.LICENSE + license: bzip2-libbzip-2010.LICENSE - license_key: c-fsl-1.1 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-c-fsl-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "CONVERTIBLE FREE SOFTWARE LICENSE\n Version 1.1, 2016-08-11\ncopyright 2016, by\ + \ Elmar Stellnberger\nEveryone is permitted to copy and distribute verbatim copies of this\ + \ license document. You must not modify the license itself.\nThis license applies to any\ + \ software containing a notice by the copyright holder saying that it may be used under\ + \ the terms of the Convertible Free Software License. If a specific version number is mentioned\ + \ then usage rights include this version as well as any newer version which will always\ + \ be similar in spirit to this license. The term Convertible Free Software license may be\ + \ abbreviated as C-FSL.\n\n1. Any work under this license comes completely without any warranty\ + \ or any kind of liability such as lost revenues, profits, harm or damage of any kind even\ + \ if the authors should have been advised of the possibility of such harm or damage. It\ + \ may be seen as research work and does not claim for fitness to any particular usage purpose.\n\ + \n2. The term 'source code' applies to the preferred form that is used to develop or apply\ + \ changes to a work under this license referred to herein as 'the work'. You are allowed\ + \ to modify or change the source code if you accept that the resulting changed work will\ + \ become subject to this license. As soon as you apply any change this is an implicit consent\ + \ to fully comply with this license and a consent that the work may be used under this license.\ + \ \n\n3. It is your obligation that the changed version of your sources will be available\ + \ to the public for free within the time frame of a month at least if there is no undue\ + \ hindrance by the authors to make it available. Modifications which result in a broken\ + \ or unusable program which the authors do not plan to continue their work on are considered\ + \ dead end and do not need to be published. Available for free means that there will be\ + \ no undue hindrance in obtaining the given item like a registration of the person who wants\ + \ to download or obtain the given item. Available for free also means that you must not\ + \ charge for the given item itself apart from the possibility to require a reasonable charge\ + \ for the physical reproduction of the data.\n\n4. You are allowed to issue an 'automatic\ + \ derivation process' on the source code which will result in so called 'object code'. You\ + \ are obligated to provide sufficient data, tools and utilities so that a functionally equivalent\ + \ object code can be compiled merely from programs and work licensed either under any open\ + \ source license approved by opensource.org or under C-FSL. The given data and utilities\ + \ for obtaining functionally equivalent results need to be available to the public for free.\n\ + \n5. When applying changes to the source code you need to leave your name, your email address\ + \ and the date of your modifications so that other people may contact you. If a contributor\ + \ should not have a steady access to the internet or a satisfying access to an emailing\ + \ service he may leave another way by which he can be contacted. We suggest to list all\ + \ changes by contributors either in a separate changelog file or in the header of the changed\ + \ file. Several consecutive changes may be collapsed. Furthermore you need to give your\ + \ changed version a 'marker' which may be used to distinguish it from the upstream version\ + \ when being distributed to other people. The distributed product needs to be of the form\ + \ upstream name - dash upstream version - dash your marker optionally followed by a version\ + \ number under your control. If there should be a chain of upstream contributors there only\ + \ needs to be one marker by the party which is at the end of the chain as long as that chain\ + \ remains to be documented in some place where it is shipped with your software. The marker\ + \ needs to be unique, at least two letters in size. We suggest it to reflect the name of\ + \ your company or distribution. You may always distribute an upstream version in unchanged\ + \ form either with your own marker or without.\n\n6. You may choose to create a fork of\ + \ a work under C-FSL by giving it a completely different name. However you need to assert\ + \ that people will know that your fork is based on the original work. If your program has\ + \ a graphical user interface the whole C-FSL license must be referenced via the GUI. Otherwise\ + \ a plain text copy of this license needs to be given and packed alongside the distributed\ + \ product. A complete reference to the base product including email address and web presence\ + \ must be referenced via the GUI for any GUI program that is a fork of another C-FSL program.\ + \ If your program has a comprehensive help, manual or info page and is a fork a similar\ + \ reference to the base product must be given there. It does not apply to quick or short\ + \ command line help output as long as a more comprehensive help page is also available.\ + \ Any program under C-FSL which is a fork of another C-FSL program must ship with a reference\ + \ to the base product. \n\n7. Contributing to a work under C-FSL means that you will give\ + \ a group called the 'original authors' a consensus based right to re-license your derived\ + \ work so that it will be available under both licenses: the C-FSL and the newly applied\ + \ license. In order to re-license consensus is only required between these original authors.\ + \ The original authors are the group of people who have initially started to create a work.\ + \ They shall be mentioned at the beginning of the changelog or the file header of changes.\ + \ As soon as there is a consensus to do so by all original authors the work may either be\ + \ re-licensed, published as upstream version without a marker or new people may be accepted\ + \ and mentioned as 'original authors'. \n\n8. No work under C-FSL shall be deemed part of\ + \ an effective measure under anti-circumvention laws like under article 11 of the WIPO copyright\ + \ treaty adopted on 1996-12-20 or any similar law. By your consent to work under this license\ + \ you waive any legal power to forbid such circumventions regarding the work under C-FSL\ + \ or any work combined with it. You must assert that the right to use, modify, generate\ + \ object code and distribute any software under C-FSL will not be infringed by patent claims\ + \ or similar law. If you modify a work under C-FSL so that it will knowingly rely on a patent\ + \ license then it means that you will thereby grant to extend the patent license to any\ + \ recipient of the work. Every contributor grants by the act of contributing to a work under\ + \ C-FSL a non-exclusive, worldwide and royalty-free patent license to any prospective contributor\ + \ or user of the given work applicable to all his 'essential patent claims'. The essential\ + \ patent claims comprise all claims owned or controlled by the contributor.\n\n9. A work\ + \ under C-FSL which has another component or plug-in as well as a work under C-FSL which\ + \ is used itself as a component, plug-in, add-on of another product, any product under C-FSL\ + \ which is combined or which links against another work requires that the other work will\ + \ either be put under an open source license as approved by opensource.org or it needs to\ + \ be put under C-FSL as well. Usage of proprietary libraries and kernel modules pose an\ + \ exception to this rule. There must be a functionally equivalent open source library for\ + \ any proprietary library so that a work under C-FSL can run and execute even without any\ + \ proprietary library. No such restriction applies to kernel modules. The term 'kernel'\ + \ refers to the core of an operating system. Libraries are separate components which link\ + \ against the given work or other components. The term 'linking' refers to the relocation\ + \ of references or addresses when the library is combined with another component in order\ + \ to make the combined aggregate executable or runnable. Such references are bound to symbols\ + \ which are part of the common interface between the library and the component which the\ + \ library is combined with at runtime. Libraries which provide operating system services\ + \ use a well defined binary interface but do not 'link' against the kernel.\n\n10. This\ + \ license is either governed by the Laws of Austria or by the laws of the country where\ + \ the first mentioned original author lives or is a resident. Disputes shall be settled\ + \ by the nearest proper court given the home town or location of the first original author\ + \ unless there is a common consensus for another place of court by all original authors.\ + \ If any of the terms stated in this license were not in accordance with the law of the\ + \ country that governs this license all other parts of the license shall remain valid." json: c-fsl-1.1.json - yml: c-fsl-1.1.yml + yaml: c-fsl-1.1.yml html: c-fsl-1.1.html - text: c-fsl-1.1.LICENSE + license: c-fsl-1.1.LICENSE - license_key: c-uda-1.0 + category: Free Restricted spdx_license_key: C-UDA-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Computational Use of Data Agreement v1.0 + + This is the Computational Use of Data Agreement, Version 1.0 (the “C-UDA”). Capitalized terms are defined in Section 5. Data Provider and you agree as follows: + + 1. Provision of the Data + + 1.1. You may use, modify, and distribute the Data made available to you by the Data Provider under this C-UDA for Computational Use if you follow the C-UDA's terms. + + 1.2. Data Provider will not sue you or any Downstream Recipient for any claim arising out of the use, modification, or distribution of the Data provided you meet the terms of the C-UDA. + + 1.3 This C-UDA does not restrict your use, modification, or distribution of any portions of the Data that are in the public domain or that may be used, modified, or distributed under any other legal exception or limitation. + + 2. Restrictions + + 2.1 You agree that you will use the Data solely for Computational Use. + + 2.2 The C-UDA does not impose any restriction with respect to the use, modification, or distribution of Results. + + 3. Redistribution of Data + + 3.1. You may redistribute the Data, so long as: + + 3.1.1. You include with any Data you redistribute all credit or attribution information that you received with the Data, and your terms require any Downstream Recipient to do the same; and + + 3.1.2. You bind each recipient to whom you redistribute the Data to the terms of the C-UDA. + + 4. No Warranty, Limitation of Liability + + 4.1. Data Provider does not represent or warrant that it has any rights whatsoever in the Data. + + 4.2. THE DATA IS PROVIDED 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. + + 4.3. NEITHER DATA PROVIDER NOR ANY UPSTREAM DATA PROVIDER SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 DATA OR RESULTS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 5. Definitions + + 5.1. “Computational Use” means activities necessary to enable the use of Data (alone or along with other material) for analysis by a computer. + + 5.2.“Data” means the material you receive under the C-UDA in modified or unmodified form, but not including Results. + + 5.3. “Data Provider” means the source from which you receive the Data and with whom you enter into the C-UDA. + + 5.4. “Downstream Recipient” means any person or persons who receives the Data directly or indirectly from you in accordance with the C-UDA. + + 5.5. “Result” means anything that you develop or improve from your use of Data that does not include more than a de minimis portion of the Data on which the use is based. Results may include de minimis portions of the Data necessary to report on or explain use that has been conducted with the Data, such as figures in scientific papers, but do not include more. Artificial intelligence models trained on Data (and which do not include more than a de minimis portion of Data) are Results. + + 5.6. “Upstream Data Providers” means the source or sources from which the Data Provider directly or indirectly received, under the terms of the C-UDA, material that is included in the Data. json: c-uda-1.0.json - yml: c-uda-1.0.yml + yaml: c-uda-1.0.yml html: c-uda-1.0.html - text: c-uda-1.0.LICENSE + license: c-uda-1.0.LICENSE - license_key: ca-tosl-1.1 + category: Copyleft Limited spdx_license_key: CATOSL-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Computer Associates Trusted Open Source License\n\nVersion 1.1\n\nPLEASE READ THIS\ + \ DOCUMENT CAREFULLY AND IN ITS ENTIRETY. THE\nACCOMPANYING PROGRAM IS PROVIDED UNDER THE\ + \ TERMS OF THIS COMPUTER\nASSOCIATES TRUSTED OPEN SOURCE LICENSE (\"LICENSE\"). ANY USE,\n\ + REPRODUCTION, MODIFICATION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES\nTHE RECIPIENT'S ACCEPTANCE\ + \ OF THIS LICENSE.\n\nLicense Background\n\nComputer Associates International, Inc. (CA)\ + \ believes in open source. We\nbelieve that the open source development approach can take\ + \ appropriate\nsoftware programs to unprecedented levels of quality, growth, and\ninnovation.\ + \ To demonstrate our continuing commitment to open source, we\nare releasing the Program\ + \ (as defined below) under this License.\n\nThis License is intended to permit contributors\ + \ and recipients of the\nProgram to use the Program, including its source code, freely and\n\ + without many of the concerns of some other open source licenses.\nAlthough we expect the\ + \ underlying Program, and Contributions (as defined\nbelow) made to such Program, to remain\ + \ open, this License is designed to\npermit you to maintain your own software programs free\ + \ of this License\nunless you choose to do so. Thus, only your Contributions to the Program\n\ + must be distributed under the terms of this License.\n\nThe provisions that follow set forth\ + \ the terms and conditions under\nwhich you may use the Program.\n\n1. DEFINITIONS\n\n1.1\ + \ Contribution means (a) in the case of CA, the Original Program; and\n(b) in the case of\ + \ each Contributor (including CA), changes and\nadditions to the Program, where such changes\ + \ and/or additions to the\nProgram originate from and are distributed by that particular\n\ + Contributor to unaffiliated third parties. A Contribution originates\nfrom a Contributor\ + \ if it was added to the Program by such Contributor\nitself or anyone acting on such Contributors\ + \ behalf. Contributions do\nnot include additions to the Program which: (x) are separate\ + \ modules of\nsoftware distributed in conjunction with the Program under their own\nlicense\ + \ agreement, and (y) are not derivative works of the Program.\n\n1.2 Contributor means CA\ + \ and any other person or entity that distributes\nthe Program.\n\n1.3 Contributor Version\ + \ means as to a Contributor, that version of the\nProgram that includes the Contributors\ + \ Contribution but not any\nContributions made to the Program thereafter.\n\n1.4 Larger\ + \ Work means a work that combines the Program or portions\nthereof with code not governed\ + \ by the terms of this License.\n\n1.5 Licensed Patents mean patents licensable by a Contributor\ + \ that are\ninfringed by the use or sale of its Contribution alone or when combined\nwith\ + \ the Program.\n\n1.6 Original Program means the original version of the software to which\n\ + this License is attached and as released by CA, including source code,\nobject code and\ + \ documentation, if any.\n\n1.7 Program means the Original Program and Contributions.\n\n\ + 1.8 Recipient means anyone who modifies, copies, uses or distributes the\nProgram.\n\n2.\ + \ GRANT OF RIGHTS\n\n2.1 Subject to the terms of this License, each Contributor hereby grants\n\ + Recipient an irrevocable, non-exclusive, worldwide, royalty-free license\nto reproduce,\ + \ prepare derivative works of, publicly display, publicly\nperform, distribute and sublicense\ + \ the Contribution of such Contributor,\nif any, and such derivative works, in source code\ + \ and object code form.\nFor the avoidance of doubt, the license provided in this Section\ + \ 2.1\nshall not include a license to any Licensed Patents of a Contributor.\n\n2.2 Subject\ + \ to the terms of this License, each Contributor hereby grants\nRecipient an irrevocable,\ + \ non-exclusive, worldwide, royalty-free license\nto the Licensed Patents to the extent\ + \ necessary to make, use, sell,\noffer to sell and import the Contribution of such Contributor,\ + \ if any,\nin source code and object code form. The license granted in this Section\n2.2\ + \ shall apply to the combination of the Contribution and the Program\nif, at the time the\ + \ Contribution is added by the Contributor, such\naddition of the Contribution causes the\ + \ Licensed Patents to be infringed\nby such combination. Notwithstanding the foregoing,\ + \ no license is\ngranted under this Section 2.2: (a) for any code or works that do not\n\ + include the Contributor Version, as it exists and is used in accordance\nwith the terms\ + \ hereof; (b) for infringements caused by: (i) third party\nmodifications of the Contributor\ + \ Version; or (ii) the combination of\nContributions made by each such Contributor with\ + \ other software (except\nas part of the Contributor Version) or other devices; or (c) with\n\ + respect to Licensed Patents infringed by the Program in the absence of\nContributions made\ + \ by that Contributor.\n\n2.3 Recipient understands that although each Contributor grants\ + \ the\nlicenses to its Contributions set forth herein, except as provided in\nSection 2.4,\ + \ no assurances are provided by any Contributor that the\nProgram does not infringe the\ + \ patent or other intellectual property\nrights of any other person or entity. Each Contributor\ + \ disclaims any\nliability to Recipient for claims brought by any other person or entity\n\ + based on infringement of intellectual property rights or otherwise. As a\ncondition to exercising\ + \ the rights and licenses granted hereunder, each\nRecipient hereby assumes sole responsibility\ + \ to secure any other\nintellectual property rights needed, if any.\n\n2.4 Each Contributor\ + \ represents and warrants that it has all right,\ntitle and interest in the copyrights in\ + \ its Contributions, and has the\nright to grant the copyright licenses set forth in this\ + \ License.\n\n3. DISTRIBUTION REQUIREMENTS\n\n3.1 If the Program is distributed in object\ + \ code form, then a prominent\nnotice must be included in the code itself as well as in\ + \ any related\ndocumentation, stating that the source code for the Program is available\n\ + from the Contributor with information on how and where to obtain the\nsource code. A Contributor\ + \ may choose to distribute the Program in\nobject code form under its own license agreement,\ + \ provided that:\n\na. it complies with the terms and conditions of this License; and \n\ + b. its license agreement: \n\ti. effectively disclaims on behalf of all Contributors all\ + \ warranties and \n\tconditions, express and implied, including warranties or conditions\ + \ of title\n\tand non-infringement, and implied warranties or conditions of \n\tmerchantability\ + \ and fitness for a particular purpose, to the maximum extent\n\tpermitted by applicable\ + \ law;\n\tii. effectively excludes on behalf of all Contributors all liability for \n\t\ + damages, including direct, indirect, special, incidental and consequential \n\tdamages,\ + \ such as lost profits, to the maximum extent permitted by applicable\n\tlaw; \n\tiii. states\ + \ that any provisions which are inconsistent with this License are\n\toffered by that Contributor\ + \ alone and not by any other party; and \n\tiv. states that source code for the Program\ + \ is available from such \n\tContributor at the cost of distribution, and informs licensees\ + \ how to obtain\n\tit in a reasonable manner.\n\n3.2 When the Program is made available\ + \ in source code form:\n\na. it must be made available under this License; and \nb. a copy\ + \ of this License must be included with each copy of the Program.\n\n3.3 This License is\ + \ intended to facilitate the commercial distribution\nof the Program by any Contributor.\ + \ However, Contributors may only charge\nRecipients a one-time, upfront fee for the distribution\ + \ of the Program.\nContributors may not charge Recipients any recurring charge, license\n\ + fee, or any ongoing royalty for the Recipients exercise of its rights\nunder this License\ + \ to the Program. Contributors shall make the source\ncode for the Contributor Version they\ + \ distribute available at a cost, if\nany, equal to the cost to the Contributor to physically\ + \ copy and\ndistribute the work. It is not the intent of this License to prohibit a\nContributor\ + \ from charging fees for any service or maintenance that a\nContributor may charge to a\ + \ Recipient, so long as such fees are not an\nattempt to circumvent the foregoing restrictions\ + \ on charging royalties\nor other recurring fees for the Program itself.\n\n3.4 A Contributor\ + \ may create a Larger Work by combining the Program with\nother software code not governed\ + \ by the terms of this License, and\ndistribute the Larger Work as a single product. In\ + \ such a case, the\nContributor must make sure that the requirements of this License are\n\ + fulfilled for the Program. Any Contributor who includes the Program in a\ncommercial product\ + \ offering, including as part of a Larger Work, may\nsubject itself, but not any other Contributor,\ + \ to additional contractual\ncommitments, including, but not limited to, performance warranties\ + \ and\nnon-infringement representations on suchContributors behalf. No\nContributor may\ + \ create any additional liability for other Contributors.\nTherefore, if a Contributor includes\ + \ the Program in a commercial product\noffering, such Contributor (Commercial Contributor)\ + \ hereby agrees to\ndefend and indemnify every other Contributor (Indemnified Contributor)\n\ + who made Contributions to the Program distributed by the Commercial\nContributor against\ + \ any losses, damages and costs (collectively Losses)\narising from claims, lawsuits and\ + \ other legal actions brought by a third\nparty against the Indemnified Contributor to the\ + \ extent caused by the\nacts or omissions, including any additional contractual commitments,\ + \ of\nsuch Commercial Contributor in connection with its distribution of the\nProgram. The\ + \ obligations in this section do not apply to any claims or\nLosses relating to any actual\ + \ or alleged intellectual property\ninfringement.\n\n3.5 If Contributor has knowledge that\ + \ a license under a third partys\nintellectual property rights is required to exercise the\ + \ rights granted\nby such Contributor under Sections 2.1 or 2.2, Contributor must (a)\n\ + include a text file with the Program source code distribution titled\n../IP_ISSUES, and\ + \ (b) notify CA in writing at Computer Associates\nInternational, Inc., One Computer Associates\ + \ Plaza, Islandia, New York\n11749, Attn: Open Source Group or by email at opensource@ca.com,\ + \ both\ndescribing the claim and the party making the claim in sufficient detail\nthat a\ + \ Recipient and CA will know whom to contact with regard to such\nmatter. If Contributor\ + \ obtains such knowledge after the Contribution is\nmade available, Contributor shall also\ + \ promptly modify the IP_ISSUES\nfile in all copies Contributor makes available thereafter\ + \ and shall take\nother steps (such as notifying appropriate mailing lists or newsgroups)\n\ + reasonably calculated to inform those who received the Program that such\nnew knowledge\ + \ has been obtained.\n\n3.6 Recipient shall not remove, obscure, or modify any CA or other\n\ + Contributor copyright or patent proprietary notices appearing in the\nProgram, whether in\ + \ the source code, object code or in any\ndocumentation. In addition to the obligations\ + \ set forth in Section 4,\neach Contributor must identify itself as the originator of its\n\ + Contribution, if any, in a manner that reasonably allows subsequent\nRecipients to identify\ + \ the originator of the Contribution.\n\n4. CONTRIBUTION RESTRICTIONS\n\n4.1 Each Contributor\ + \ must cause the Program to which the Contributor\nprovides a Contribution to contain a\ + \ file documenting the changes the\nContributor made to create its version of the Program\ + \ and the date of\nany change. Each Contributor must also include a prominent statement\n\ + that the Contribution is derived, directly or indirectly, from the\nProgram distributed\ + \ by a prior Contributor, including the name of the\nprior Contributor from which such Contribution\ + \ was derived, in (a) the\nProgram source code, and (b) in any notice in an executable version\ + \ or\nrelated documentation in which the Contributor describes the origin or\nownership\ + \ of the Program.\n\n5. NO WARRANTY\n\n5.1 EXCEPT AS EXPRESSLY SET FORTH IN THIS LICENSE,\ + \ THE PROGRAM IS\nPROVIDED AS IS AND IN ITS PRESENT STATE AND CONDITION. NO WARRANTY,\n\ + REPRESENTATION, CONDITION, UNDERTAKING OR TERM, EXPRESS OR IMPLIED,\nSTATUTORY OR OTHERWISE,\ + \ AS TO THE CONDITION, QUALITY, DURABILITY,\nPERFORMANCE, NON-INFRINGEMENT, MERCHANTABILITY,\ + \ OR FITNESS FOR A\nPARTICULAR PURPOSE OR USE OF THE PROGRAM IS GIVEN OR ASSUMED BY ANY\n\ + CONTRIBUTOR AND ALL SUCH WARRANTIES, REPRESENTATIONS, CONDITIONS,\nUNDERTAKINGS AND TERMS\ + \ ARE HEREBY EXCLUDED TO THE FULLEST EXTENT\nPERMITTED BY LAW.\n\n5.2 Each Recipient is\ + \ solely responsible for determining the\nappropriateness of using and distributing the\ + \ Program and assumes all\nrisks associated with its exercise of rights under this License,\n\ + including but not limited to the risks and costs of program errors,\ncompliance with applicable\ + \ laws, damage to or loss of data, programs or\nequipment, and unavailability or interruption\ + \ of operations.\n\n5.3 Each Recipient acknowledges that the Program is not intended for\ + \ use\nin the operation of nuclear facilities, aircraft navigation,\ncommunication systems,\ + \ or air traffic control machines in which case the\nfailure of the Program could lead to\ + \ death, personal injury, or severe\nphysical or environmental damage.\n\n6. DISCLAIMER\ + \ OF LIABILITY\n\n6.1 EXCEPT AS EXPRESSLY SET FORTH IN THIS LICENSE, AND TO THE EXTENT\n\ + PERMITTED BY LAW, NO CONTRIBUTOR SHALL HAVE ANY LIABILITY FOR ANY\nDIRECT, INDIRECT, INCIDENTAL,\ + \ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS),\ + \ HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\ + \ OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\nUSE OR DISTRIBUTION\ + \ OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED\nHEREUNDER, EVEN IF ADVISED OF THE\ + \ POSSIBILITY OF SUCH DAMAGES.\n\n7. TRADEMARKS AND BRANDING\n\n7.1 This License does not\ + \ grant any Recipient or any third party any\nrights to use the trademarks or trade names\ + \ now or subsequently posted\nat http://www.ca.com/catrdmrk.htm, or any other trademarks,\ + \ service\nmarks, logos or trade names belonging to CA (collectively CA Marks) or\nto any\ + \ trademark, service mark, logo or trade name belonging to any\nContributor. Recipient agrees\ + \ not to use any CA Marks in or as part of\nthe name of products derived from the Original\ + \ Program or to endorse or\npromote products derived from the Original Program.\n\n7.2 Subject\ + \ to Section 7.1, Recipients may distribute the Program under\ntrademarks, logos, and product\ + \ names belonging to the Recipient provided\nthat all copyright and other attribution notices\ + \ remain in the Program.\n\n8. PATENT LITIGATION\n\n8.1 If Recipient institutes patent litigation\ + \ against any person or\nentity (including a cross-claim or counterclaim in a lawsuit) alleging\n\ + that the Program itself (excluding combinations of the Program with\nother software or hardware)\ + \ infringes such Recipients patent(s), then\nsuch Recipients rights granted under Section\ + \ 2.2 shall terminate as of\nthe date such litigation is filed.\n\n9. OWNERSHIP\n\n9.1 Subject\ + \ to the licenses granted under this License in Sections 2.1\nand 2.2 above, each Contributor\ + \ retains all rights, title and interest\nin and to any Contributions made by such Contributor.\ + \ CA retains all\nrights, title and interest in and to the Original Program and any\nContributions\ + \ made by or on behalf of CA (CA Contributions), and such CA\nContributions will not be\ + \ automatically subject to this License. CA may,\nat its sole discretion, choose to license\ + \ such CA Contributions under\nthis License, or on different terms from those contained\ + \ in this License\nor may choose not to license them at all.\n\n10. TERMINATION\n\n10.1\ + \ All of Recipients rights under this License shall terminate if it\nfails to comply with\ + \ any of the material terms or conditions of this\nLicense and does not cure such failure\ + \ in a reasonable period of time\nafter becoming aware of such noncompliance. If Recipients\ + \ rights under\nthis License terminate, Recipient agrees to cease use and distribution\n\ + of the Program as soon as reasonably practicable. However, Recipients\nobligations under\ + \ this License and any licenses granted by Recipient as\na Contributor relating to the Program\ + \ shall continue and survive\ntermination.\n\n11. GENERAL\n\n11.1 If any provision of this\ + \ License is invalid or unenforceable under\napplicable law, it shall not affect the validity\ + \ or enforceability of\nthe remainder of the terms of this License, and without further\ + \ action\nby the parties hereto, such provision shall be reformed to the minimum\nextent\ + \ necessary to make such provision valid and enforceable.\n\n11.2 CA may publish new versions\ + \ (including revisions) of this License\nfrom time to time. Each new version of the License\ + \ will be given a\ndistinguishing version number. The Program (including Contributions)\ + \ may\nalways be distributed subject to the version of the License under which\nit was received.\ + \ In addition, after a new version of the License is\npublished, Contributor may elect to\ + \ distribute the Program (including\nits Contributions) under the new version. No one other\ + \ than CA has the\nright to modify this License.\n\n11.3 If it is impossible for Recipient\ + \ to comply with any of the terms\nof this License with respect to some or all of the Program\ + \ due to\nstatute, judicial order, or regulation, then Recipient must: (a) comply\nwith\ + \ the terms of this License to the maximum extent possible; and (b)\ndescribe the limitations\ + \ and the code they affect. Such description must\nbe included in the IP_ISSUES file described\ + \ in Section 3.5 and must be\nincluded with all distributions of the Program source code.\ + \ Except to\nthe extent prohibited by statute or regulation, such description must be\n\ + sufficiently detailed for a Recipient of ordinary skill to be able to\nunderstand it.\n\n\ + 11.4 This License is governed by the laws of the State of New York. No\nRecipient will bring\ + \ a legal action under this License more than one\nyear after the cause of action arose.\ + \ Each Recipient waives its rights\nto a jury trial in any resulting litigation. Any litigation\ + \ or other\ndispute resolution between a Recipient and CA relating to this License\nshall\ + \ take place in the State of New York, and Recipient and CA hereby\nconsent to the personal\ + \ jurisdiction of, and venue in, the state and\nfederal courts within that district with\ + \ respect to this License. The\napplication of the United Nations Convention on Contracts\ + \ for the\nInternational Sale of Goods is expressly excluded.\n\n11.5 Where Recipient is\ + \ located in the province of Quebec, Canada, the\nfollowing clause applies: The parties\ + \ hereby confirm that they have\nrequested that this License and all related documents be\ + \ drafted in\nEnglish. Les parties contractantes confirment qu'elles ont exige que le\n\ + present contrat et tous les documents associes soient rediges en\nanglais.\n\n11.6 The Program\ + \ is subject to all export and import laws, restrictions\nand regulations of the country\ + \ in which Recipient receives the Program.\nRecipient is solely responsible for complying\ + \ with and ensuring that\nRecipient does not export, re-export, or import the Program in\ + \ violation\nof such laws, restrictions or regulations, or without any necessary\nlicenses\ + \ and authorizations.\n\n11.7 This License constitutes the entire agreement between the\ + \ parties\nwith respect to the subject matter hereof." json: ca-tosl-1.1.json - yml: ca-tosl-1.1.yml + yaml: ca-tosl-1.1.yml html: ca-tosl-1.1.html - text: ca-tosl-1.1.LICENSE + license: ca-tosl-1.1.LICENSE - license_key: cadence-linux-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-cadence-linux-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Redistribution. Redistribution and use in binary form, without + modification, are permitted provided that the following conditions are + met: + + * Redistributions must reproduce the above copyright notice and the + following disclaimer in the documentation and/or other materials + provided with the distribution. + + * Neither the name of Cadence Design Systems, Inc., its products + nor the names of its suppliers may be used to endorse or promote products + derived from this Software without specific prior written permission. + + * No reverse engineering, decompilation, or disassembly of this software + is permitted. + + 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. json: cadence-linux-firmware.json - yml: cadence-linux-firmware.yml + yaml: cadence-linux-firmware.yml html: cadence-linux-firmware.html - text: cadence-linux-firmware.LICENSE + license: cadence-linux-firmware.LICENSE - license_key: cal-1.0 + category: Copyleft spdx_license_key: CAL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "# The Cryptographic Autonomy License, v. 1.0\n\n*This Cryptographic Autonomy License\ + \ (the \"License\") applies to any\nWork whose owner has marked it with any of the following\ + \ notices, or a\nsimilar demonstration of intent:*\n\nSPDX-License-Identifier: CAL-1.0\n\ + Licensed under the Cryptographic Autonomy License version 1.0\n\n*or*\n\nSPDX-License-Identifier:\ + \ CAL-1.0-Combined-Work-Exception\nLicensed under the Cryptographic Autonomy License version\ + \ 1.0, with\nCombined Work Exception\n\n______________________________________________________________________\n\ + \n## 1. Purpose\n\nThis License gives You unlimited permission to use and modify the\nsoftware\ + \ to which it applies (the \"Work\"), either as-is or in modified\nform, for Your private\ + \ purposes, while protecting the owners and\ncontributors to the software from liability.\n\ + \nThis License also strives to protect the freedom and autonomy of third\nparties who receive\ + \ the Work from you. If any non-affiliated third\nparty receives any part, aspect, or element\ + \ of the Work from You, this\nLicense requires that You provide that third party all the\ + \ permissions\nand materials needed to independently use and modify the Work without\nthat\ + \ third party having a loss of data or capability due to your\nactions.\n\nThe full permissions,\ + \ conditions, and other terms are laid out below.\n\n## 2. Receiving a License\n\nIn order\ + \ to receive this License, You must agree to its rules. The\nrules of this License are both\ + \ obligations of Your agreement with the\nLicensor and conditions to your License. You must\ + \ not do anything with\nthe Work that triggers a rule You cannot or will not follow.\n\n\ + ### 2.1. Application\n\nThe terms of this License apply to the Work as you receive it from\n\ + Licensor, as well as to any modifications, elaborations, or\nimplementations created by\ + \ You that contain any licensable portion of\nthe Work (a \"Modified Work\"). Unless specified,\ + \ any reference to the\nWork also applies to a Modified Work.\n\n### 2.2. Offer and Acceptance\n\ + \nThis License is automatically offered to every person and\norganization. You show that\ + \ you accept this License and agree to its\nconditions by taking any action with the Work\ + \ that, absent this\nLicense, would infringe any intellectual property right held by\nLicensor.\n\ + \n### 2.3. Compliance and Remedies\n\nAny failure to act according to the terms and conditions\ + \ of this\nLicense places Your use of the Work outside the scope of the License\nand infringes\ + \ the intellectual property rights of the Licensor. In the\nevent of infringement, the terms\ + \ and conditions of this License may be\nenforced by Licensor under the intellectual property\ + \ laws of any\njurisdiction to which You are subject. You also agree that either the\nLicensor\ + \ or a Recipient (as an intended third-party beneficiary) may\nenforce the terms and conditions\ + \ of this License against You via\nspecific performance.\n\n## 3. Permissions\n### 3.1.\ + \ Permissions Granted\n\nConditioned on compliance with section 4, and subject to the\n\ + limitations of section 3.2, Licensor grants You the world-wide,\nroyalty-free, non-exclusive\ + \ permission to:\n\n+ a) Take any action with the Work that would infringe the non-patent\n\ + intellectual property laws of any jurisdiction to which You are\nsubject; and\n\n+ b) claims\ + \ that Licensor can license or becomes able to\nlicense, to the extent that those claims\ + \ are embodied in the Work as\ndistributed by Licensor. ### 3.2. Limitations on Permissions\ + \ Granted\n\nThe following limitations apply to the permissions granted in section\n3.1:\n\ + \n+ a) Licensor does not grant any patent license for claims that are\nonly infringed due\ + \ to modification of the Work as provided by\nLicensor, or the combination of the Work as\ + \ provided by Licensor,\ndirectly or indirectly, with any other component, including other\n\ + software or hardware.\n\n+ b) Licensor does not grant any license to the trademarks, service\n\ + marks, or logos of Licensor, except to the extent necessary to comply\nwith the attribution\ + \ conditions in section 4.1 of this License.\n\n## 4. Conditions\n\nIf You exercise any\ + \ permission granted by this License, such that the\nWork, or any part, aspect, or element\ + \ of the Work, is distributed,\ncommunicated, made available, or made perceptible to a non-Affiliate\n\ + third party (a \"Recipient\"), either via physical delivery or via a\nnetwork connection\ + \ to the Recipient, You must comply with the\nfollowing conditions:\n\n### 4.1. Provide\ + \ Access to Source Code\n\nSubject to the exception in section 4.4, You must provide to\ + \ each\nRecipient a copy of, or no-charge unrestricted network access to, the\nSource Code\ + \ corresponding to the Work (\"Access\").\n\nThe \"Source Code\" of the Work means the form\ + \ of the Work preferred for\nmaking modifications, including any comments, configuration\n\ + information, documentation, help materials, installation instructions,\ncryptographic seeds\ + \ or keys, and any information reasonably necessary\nfor the Recipient to independently\ + \ compile and use the Source Code and\nto have full access to the functionality contained\ + \ in the Work.\n\n#### 4.1.1. Providing Network Access to the Source Code\n\nNetwork Access\ + \ to the Notices and Source Code may be provided by You\nor by a third party, such as a\ + \ public software repository, and must\npersist during the same period in which You exercise\ + \ any of the\npermissions granted to You under this License and for at least one\nyear thereafter.\n\ + \n#### 4.1.2. Source Code for a Modified Work\n\nSubject to the exception in section 4.5,\ + \ You must provide to each\nRecipient of a Modified Work Access to Source Code corresponding\ + \ to\nthose portions of the Work remaining in the Modified Work as well as\nthe modifications\ + \ used by You to create the Modified Work. The Source\nCode corresponding to the modifications\ + \ in the Modified Work must be\nprovided to the Recipient either a) under this License,\ + \ or b) under a\nCompatible Open Source License.\n\nA “Compatible Open Source License” means\ + \ a license accepted by the Open Source \nInitiative that allows object code created using\ + \ both Source Code provided under \nthis License and Source Code provided under the other\ + \ open source license to be \ndistributed together as a single work.\n\n#### 4.1.3. Coordinated\ + \ Disclosure of Security Vulnerabilities\n\nYou may delay providing the Source Code corresponding\ + \ to a particular\nmodification of the Work for up to ninety (90) days (the \"Embargo\n\ + Period\") if:\n\n+ a) the modification is intended to address a newly-identified\nvulnerability\ + \ or a security flaw in the Work,\n\n+ b) disclosure of the vulnerability or security flaw\ + \ before the end\nof the Embargo Period would put the data, identity, or autonomy of one\n\ + or more Recipients of the Work at significant risk,\n\n+ c) You are participating in a coordinated\ + \ disclosure of the\nvulnerability or security flaw with one or more additional Licensees,\n\ + and\n\n+ d) Access to the Source Code pertaining to the modification is\nprovided to all\ + \ Recipients at the end of the Embargo Period.\n\n### 4.2. Maintain User Autonomy\n\nIn\ + \ addition to providing each Recipient the opportunity to have Access\nto the Source Code,\ + \ You cannot use the permissions given under this\nLicense to interfere with a Recipient's\ + \ ability to fully use an\nindependent copy of the Work generated from the Source Code You\n\ + provide with the Recipient's own User Data.\n\n\"User Data\" means any data that is an input\ + \ to or an output from the\nWork, where the presence of the data is necessary for substantially\n\ + identical use of the Work in an equivalent context chosen by the\nRecipient, and where the\ + \ Recipient has an existing ownership interest,\nan existing right to possess, or where\ + \ the data has been generated by,\nfor, or has been assigned to the Recipient.\n\n#### 4.2.1.\ + \ No Withholding User Data\n\nThroughout any period in which You exercise any of the permissions\n\ + granted to You under this License, You must also provide to any\nRecipient to whom you provide\ + \ services via the Work, a no-charge copy,\nprovided in a commonly used electronic form,\ + \ of the Recipient's User\nData in your possession, to the extent that such User Data is\n\ + available to You for use in conjunction with the Work.\n\n#### 4.2.2. No Technical Measures\ + \ that Limit Access\n\nYou may not, by means of the use cryptographic methods applied to\n\ + anything provided to the Recipient, by possession or control of\ncryptographic keys, seeds,\ + \ hashes, by any other technological\nprotection measures, or by any other method, limit\ + \ a Recipient's\nability to access any functionality present in Recipient's independent\n\ + copy of the Work, or to deny a Recipient full control of the\nRecipient's User Data.\n\n\ + #### 4.2.3. No Legal or Contractual Measures that Limit Access\n\nYou may not contractually\ + \ restrict a Recipient's ability to\nindependently exercise the permissions granted under\ + \ this License. You\nwaive any legal power to forbid circumvention of technical protection\n\ + measures that include use of the Work, and You waive any claim that\nthe capabilities of\ + \ the Work were limited or modified as a means of\nenforcing the legal rights of third parties\ + \ against Recipients.\n\n### 4.3. Provide Notices and Attribution\n\nYou must retain all\ + \ licensing, authorship, or attribution notices\ncontained in the Source Code (the \"Notices\"\ + ), and provide all such\nNotices to each Recipient, together with a statement acknowledging\ + \ the\nuse of the Work. Notices may be provided directly to a Recipient or\nvia an easy-to-find\ + \ hyperlink to an Internet location also providing\nAccess to Source Code.\n\n### 4.4. Scope\ + \ of Conditions in this License\n\nYou are required to uphold the conditions of this License\ + \ only\nrelative to those who are Recipients of the Work from You. Other than\nproviding\ + \ Recipients with the applicable Notices, Access to Source\nCode, and a copy of and full\ + \ control of their User Data, nothing in\nthis License requires You to provide processing\ + \ services to or engage\nin network interactions with anyone.\n\n### 4.5. Combined Work\ + \ Exception\n\nAs an exception to condition that You provide Recipients Access to\nSource\ + \ Code, any Source Code files marked by the Licensor as having\nthe \"Combined Work Exception,\"\ + \ or any object code exclusively\nresulting from Source Code files so marked, may be combined\ + \ with other\nSoftware into a \"Larger Work.\" So long as you comply with the\nrequirements\ + \ to provide Recipients the applicable Notices and Access\nto the Source Code provided to\ + \ You by Licensor, and you provide\nRecipients access to their User Data and do not limit\ + \ Recipient's\nability to independently work with their User Data, any other Software\n\ + in the Larger Work as well as the Larger Work as a whole may be\nlicensed under the terms\ + \ of your choice.\n\n## 5. Term and Termination\n\nThe term of this License begins when\ + \ You receive the Work, and\ncontinues until terminated for any of the reasons described\ + \ herein, or\nuntil all Licensor's intellectual property rights in the Software\nexpire,\ + \ whichever comes first (\"Term\"). This License cannot be\nrevoked, only terminated for\ + \ the reasons listed below.\n\n### 5.1. Effect of Termination\n\nIf this License is terminated\ + \ for any reason, all permissions granted\nto You under Section 3 by any Licensor automatically\ + \ terminate. You\nwill immediately cease exercising any permissions granted in this\nLicense\ + \ relative to the Work, including as part of any Modified Work.\n\n### 5.2. Termination\ + \ for Non-Compliance; Reinstatement\n\nThis License terminates automatically if You fail\ + \ to comply with any\nof the conditions in section 4. As a special exception to termination\n\ + for non-compliance, Your permissions for the Work under this License\nwill automatically\ + \ be reinstated if You come into compliance with all\nthe conditions in section 2 within\ + \ sixty (60) days of being notified\nby Licensor or an intended third-party beneficiary\ + \ of Your\nnoncompliance. You are eligible for reinstatement of permissions for\nthe Work\ + \ one time only, and only for the sixty days immediately after\nbecoming aware of noncompliance.\ + \ Loss of permissions granted for the\nWork under this License due to either a) sustained\ + \ noncompliance\nlasting more than sixty days or b) subsequent termination for\nnoncompliance\ + \ after reinstatement, is permanent, unless rights are\nspecifically restored by Licensor\ + \ in writing.\n\n### 5.3. Termination Due to Litigation\n\nIf You initiate litigation against\ + \ Licensor, or any Recipient of the\nWork, either direct or indirect, asserting that the\ + \ Work directly or\nindirectly infringes any patent, then all permissions granted to You\n\ + by this License shall terminate. In the event of termination due to\nlitigation, all permissions\ + \ validly granted by You under this License,\ndirectly or indirectly, shall survive termination.\ + \ Administrative\nreview procedures, declaratory judgment actions, counterclaims in\nresponse\ + \ to patent litigation, and enforcement actions against former\nLicensees terminated under\ + \ this section do not cause termination due\nto litigation.\n\n## 6. Disclaimer of Warranty\ + \ and Limit on Liability\n\nAs far as the law allows, the Work comes AS-IS, without any\ + \ warranty\nof any kind, and no Licensor or contributor will be liable to anyone\nfor any\ + \ damages related to this software or this license, under any\nkind of legal claim, or for\ + \ any type of damages, including indirect,\nspecial, incidental, or consequential damages\ + \ of any type arising as a\nresult of this License or the use of the Work including, without\n\ + limitation, damages for loss of goodwill, work stoppage, computer\nfailure or malfunction,\ + \ loss of profits, revenue, or any and all other\ncommercial damages or losses.\n\n## 7.\ + \ Other Provisions\n### 7.1. Affiliates\n\nAn \"Affiliate\" means any other entity that,\ + \ directly or indirectly\nthrough one or more intermediaries, controls, is controlled by,\ + \ or is\nunder common control with, the Licensee. Employees of a Licensee and\nnatural persons\ + \ acting as contractors exclusively providing services\nto Licensee are also Affiliates.\n\ + \n### 7.2. Choice of Jurisdiction and Governing Law\n\nA Licensor may require that any action\ + \ or suit by a Licensee relating\nto a Work provided by Licensor under this License may\ + \ be brought only\nin the courts of a particular jurisdiction and under the laws of a\n\ + particular jurisdiction (excluding its conflict-of-law provisions), if\nLicensor provides\ + \ conspicuous notice of the particular jurisdiction to\nall Licensees.\n\n### 7.3. No Sublicensing\n\ + \nThis License is not sublicensable. Each time You provide the Work or a\nModified Work\ + \ to a Recipient, the Recipient automatically receives a\nlicense under the terms described\ + \ in this License. You may not impose\nany further reservations, conditions, or other provisions\ + \ on any\nRecipients' exercise of the permissions granted herein.\n\n### 7.4. Attorneys'\ + \ Fees\n\nIn any action to enforce the terms of this License, or seeking damages\nrelating\ + \ thereto, including by an intended third-party beneficiary,\nthe prevailing party shall\ + \ be entitled to recover its costs and\nexpenses, including, without limitation, reasonable\ + \ attorneys' fees\nand costs incurred in connection with such action, including any\nappeal\ + \ of such action. A \"prevailing party\" is the party that\nachieves, or avoids, compliance\ + \ with this License, including through\nsettlement. This section shall survive the termination\ + \ of this\nLicense.\n\n### 7.5. No Waiver\n\nAny failure by Licensor to enforce any provision\ + \ of this License will\nnot constitute a present or future waiver of such provision nor\ + \ limit\nLicensor's ability to enforce such provision at a later time.\n\n### 7.6. Severability\n\ + \nIf any provision of this License is held to be unenforceable, such\nprovision shall be\ + \ reformed only to the extent necessary to make it\nenforceable. Any invalid or unenforceable\ + \ portion will be interpreted\nto the effect and intent of the original portion. If such\ + \ a\nconstruction is not possible, the invalid or unenforceable portion\nwill be severed\ + \ from this License but the rest of this License will\nremain in full force and effect.\n\ + \n### 7.7. License for the Text of this License\n\nThe text of this license is released\ + \ under the Creative Commons\nAttribution-ShareAlike 4.0 International License, with the\ + \ caveat that\nany modifications of this license may not use the name \"Cryptographic\n\ + Autonomy License\" or any name confusingly similar thereto to describe\nany derived work\ + \ of this License." json: cal-1.0.json - yml: cal-1.0.yml + yaml: cal-1.0.yml html: cal-1.0.html - text: cal-1.0.LICENSE + license: cal-1.0.LICENSE - license_key: cal-1.0-combined-work-exception + category: Copyleft Limited spdx_license_key: CAL-1.0-Combined-Work-Exception other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "# The Cryptographic Autonomy License, v. 1.0, with Combined Work Exception\n\n*This\ + \ Cryptographic Autonomy License (the \"License\") applies to any\nWork whose owner has\ + \ marked it with any of the following notices, or a\nsimilar demonstration of intent:*\n\ + \nSPDX-License-Identifier: CAL-1.0\nLicensed under the Cryptographic Autonomy License version\ + \ 1.0\n\n*or*\n\nSPDX-License-Identifier: CAL-1.0-Combined-Work-Exception\nLicensed under\ + \ the Cryptographic Autonomy License version 1.0, with\nCombined Work Exception\n\n______________________________________________________________________\n\ + \n## 1. Purpose\n\nThis License gives You unlimited permission to use and modify the\nsoftware\ + \ to which it applies (the \"Work\"), either as-is or in modified\nform, for Your private\ + \ purposes, while protecting the owners and\ncontributors to the software from liability.\n\ + \nThis License also strives to protect the freedom and autonomy of third\nparties who receive\ + \ the Work from you. If any non-affiliated third\nparty receives any part, aspect, or element\ + \ of the Work from You, this\nLicense requires that You provide that third party all the\ + \ permissions\nand materials needed to independently use and modify the Work without\nthat\ + \ third party having a loss of data or capability due to your\nactions.\n\nThe full permissions,\ + \ conditions, and other terms are laid out below.\n\n## 2. Receiving a License\n\nIn order\ + \ to receive this License, You must agree to its rules. The\nrules of this License are both\ + \ obligations of Your agreement with the\nLicensor and conditions to your License. You must\ + \ not do anything with\nthe Work that triggers a rule You cannot or will not follow.\n\n\ + ### 2.1. Application\n\nThe terms of this License apply to the Work as you receive it from\n\ + Licensor, as well as to any modifications, elaborations, or\nimplementations created by\ + \ You that contain any licensable portion of\nthe Work (a \"Modified Work\"). Unless specified,\ + \ any reference to the\nWork also applies to a Modified Work.\n\n### 2.2. Offer and Acceptance\n\ + \nThis License is automatically offered to every person and\norganization. You show that\ + \ you accept this License and agree to its\nconditions by taking any action with the Work\ + \ that, absent this\nLicense, would infringe any intellectual property right held by\nLicensor.\n\ + \n### 2.3. Compliance and Remedies\n\nAny failure to act according to the terms and conditions\ + \ of this\nLicense places Your use of the Work outside the scope of the License\nand infringes\ + \ the intellectual property rights of the Licensor. In the\nevent of infringement, the terms\ + \ and conditions of this License may be\nenforced by Licensor under the intellectual property\ + \ laws of any\njurisdiction to which You are subject. You also agree that either the\nLicensor\ + \ or a Recipient (as an intended third-party beneficiary) may\nenforce the terms and conditions\ + \ of this License against You via\nspecific performance.\n\n## 3. Permissions\n### 3.1.\ + \ Permissions Granted\n\nConditioned on compliance with section 4, and subject to the\n\ + limitations of section 3.2, Licensor grants You the world-wide,\nroyalty-free, non-exclusive\ + \ permission to:\n\n+ a) Take any action with the Work that would infringe the non-patent\n\ + intellectual property laws of any jurisdiction to which You are\nsubject; and\n\n+ b) claims\ + \ that Licensor can license or becomes able to\nlicense, to the extent that those claims\ + \ are embodied in the Work as\ndistributed by Licensor. ### 3.2. Limitations on Permissions\ + \ Granted\n\nThe following limitations apply to the permissions granted in section\n3.1:\n\ + \n+ a) Licensor does not grant any patent license for claims that are\nonly infringed due\ + \ to modification of the Work as provided by\nLicensor, or the combination of the Work as\ + \ provided by Licensor,\ndirectly or indirectly, with any other component, including other\n\ + software or hardware.\n\n+ b) Licensor does not grant any license to the trademarks, service\n\ + marks, or logos of Licensor, except to the extent necessary to comply\nwith the attribution\ + \ conditions in section 4.1 of this License.\n\n## 4. Conditions\n\nIf You exercise any\ + \ permission granted by this License, such that the\nWork, or any part, aspect, or element\ + \ of the Work, is distributed,\ncommunicated, made available, or made perceptible to a non-Affiliate\n\ + third party (a \"Recipient\"), either via physical delivery or via a\nnetwork connection\ + \ to the Recipient, You must comply with the\nfollowing conditions:\n\n### 4.1. Provide\ + \ Access to Source Code\n\nSubject to the exception in section 4.4, You must provide to\ + \ each\nRecipient a copy of, or no-charge unrestricted network access to, the\nSource Code\ + \ corresponding to the Work (\"Access\").\n\nThe \"Source Code\" of the Work means the form\ + \ of the Work preferred for\nmaking modifications, including any comments, configuration\n\ + information, documentation, help materials, installation instructions,\ncryptographic seeds\ + \ or keys, and any information reasonably necessary\nfor the Recipient to independently\ + \ compile and use the Source Code and\nto have full access to the functionality contained\ + \ in the Work.\n\n#### 4.1.1. Providing Network Access to the Source Code\n\nNetwork Access\ + \ to the Notices and Source Code may be provided by You\nor by a third party, such as a\ + \ public software repository, and must\npersist during the same period in which You exercise\ + \ any of the\npermissions granted to You under this License and for at least one\nyear thereafter.\n\ + \n#### 4.1.2. Source Code for a Modified Work\n\nSubject to the exception in section 4.5,\ + \ You must provide to each\nRecipient of a Modified Work Access to Source Code corresponding\ + \ to\nthose portions of the Work remaining in the Modified Work as well as\nthe modifications\ + \ used by You to create the Modified Work. The Source\nCode corresponding to the modifications\ + \ in the Modified Work must be\nprovided to the Recipient either a) under this License,\ + \ or b) under a\nCompatible Open Source License.\n\nA “Compatible Open Source License” means\ + \ a license accepted by the Open Source \nInitiative that allows object code created using\ + \ both Source Code provided under \nthis License and Source Code provided under the other\ + \ open source license to be \ndistributed together as a single work.\n\n#### 4.1.3. Coordinated\ + \ Disclosure of Security Vulnerabilities\n\nYou may delay providing the Source Code corresponding\ + \ to a particular\nmodification of the Work for up to ninety (90) days (the \"Embargo\n\ + Period\") if:\n\n+ a) the modification is intended to address a newly-identified\nvulnerability\ + \ or a security flaw in the Work,\n\n+ b) disclosure of the vulnerability or security flaw\ + \ before the end\nof the Embargo Period would put the data, identity, or autonomy of one\n\ + or more Recipients of the Work at significant risk,\n\n+ c) You are participating in a coordinated\ + \ disclosure of the\nvulnerability or security flaw with one or more additional Licensees,\n\ + and\n\n+ d) Access to the Source Code pertaining to the modification is\nprovided to all\ + \ Recipients at the end of the Embargo Period.\n\n### 4.2. Maintain User Autonomy\n\nIn\ + \ addition to providing each Recipient the opportunity to have Access\nto the Source Code,\ + \ You cannot use the permissions given under this\nLicense to interfere with a Recipient's\ + \ ability to fully use an\nindependent copy of the Work generated from the Source Code You\n\ + provide with the Recipient's own User Data.\n\n\"User Data\" means any data that is an input\ + \ to or an output from the\nWork, where the presence of the data is necessary for substantially\n\ + identical use of the Work in an equivalent context chosen by the\nRecipient, and where the\ + \ Recipient has an existing ownership interest,\nan existing right to possess, or where\ + \ the data has been generated by,\nfor, or has been assigned to the Recipient.\n\n#### 4.2.1.\ + \ No Withholding User Data\n\nThroughout any period in which You exercise any of the permissions\n\ + granted to You under this License, You must also provide to any\nRecipient to whom you provide\ + \ services via the Work, a no-charge copy,\nprovided in a commonly used electronic form,\ + \ of the Recipient's User\nData in your possession, to the extent that such User Data is\n\ + available to You for use in conjunction with the Work.\n\n#### 4.2.2. No Technical Measures\ + \ that Limit Access\n\nYou may not, by means of the use cryptographic methods applied to\n\ + anything provided to the Recipient, by possession or control of\ncryptographic keys, seeds,\ + \ hashes, by any other technological\nprotection measures, or by any other method, limit\ + \ a Recipient's\nability to access any functionality present in Recipient's independent\n\ + copy of the Work, or to deny a Recipient full control of the\nRecipient's User Data.\n\n\ + #### 4.2.3. No Legal or Contractual Measures that Limit Access\n\nYou may not contractually\ + \ restrict a Recipient's ability to\nindependently exercise the permissions granted under\ + \ this License. You\nwaive any legal power to forbid circumvention of technical protection\n\ + measures that include use of the Work, and You waive any claim that\nthe capabilities of\ + \ the Work were limited or modified as a means of\nenforcing the legal rights of third parties\ + \ against Recipients.\n\n### 4.3. Provide Notices and Attribution\n\nYou must retain all\ + \ licensing, authorship, or attribution notices\ncontained in the Source Code (the \"Notices\"\ + ), and provide all such\nNotices to each Recipient, together with a statement acknowledging\ + \ the\nuse of the Work. Notices may be provided directly to a Recipient or\nvia an easy-to-find\ + \ hyperlink to an Internet location also providing\nAccess to Source Code.\n\n### 4.4. Scope\ + \ of Conditions in this License\n\nYou are required to uphold the conditions of this License\ + \ only\nrelative to those who are Recipients of the Work from You. Other than\nproviding\ + \ Recipients with the applicable Notices, Access to Source\nCode, and a copy of and full\ + \ control of their User Data, nothing in\nthis License requires You to provide processing\ + \ services to or engage\nin network interactions with anyone.\n\n### 4.5. Combined Work\ + \ Exception\n\nAs an exception to condition that You provide Recipients Access to\nSource\ + \ Code, any Source Code files marked by the Licensor as having\nthe \"Combined Work Exception,\"\ + \ or any object code exclusively\nresulting from Source Code files so marked, may be combined\ + \ with other\nSoftware into a \"Larger Work.\" So long as you comply with the\nrequirements\ + \ to provide Recipients the applicable Notices and Access\nto the Source Code provided to\ + \ You by Licensor, and you provide\nRecipients access to their User Data and do not limit\ + \ Recipient's\nability to independently work with their User Data, any other Software\n\ + in the Larger Work as well as the Larger Work as a whole may be\nlicensed under the terms\ + \ of your choice.\n\n## 5. Term and Termination\n\nThe term of this License begins when\ + \ You receive the Work, and\ncontinues until terminated for any of the reasons described\ + \ herein, or\nuntil all Licensor's intellectual property rights in the Software\nexpire,\ + \ whichever comes first (\"Term\"). This License cannot be\nrevoked, only terminated for\ + \ the reasons listed below.\n\n### 5.1. Effect of Termination\n\nIf this License is terminated\ + \ for any reason, all permissions granted\nto You under Section 3 by any Licensor automatically\ + \ terminate. You\nwill immediately cease exercising any permissions granted in this\nLicense\ + \ relative to the Work, including as part of any Modified Work.\n\n### 5.2. Termination\ + \ for Non-Compliance; Reinstatement\n\nThis License terminates automatically if You fail\ + \ to comply with any\nof the conditions in section 4. As a special exception to termination\n\ + for non-compliance, Your permissions for the Work under this License\nwill automatically\ + \ be reinstated if You come into compliance with all\nthe conditions in section 2 within\ + \ sixty (60) days of being notified\nby Licensor or an intended third-party beneficiary\ + \ of Your\nnoncompliance. You are eligible for reinstatement of permissions for\nthe Work\ + \ one time only, and only for the sixty days immediately after\nbecoming aware of noncompliance.\ + \ Loss of permissions granted for the\nWork under this License due to either a) sustained\ + \ noncompliance\nlasting more than sixty days or b) subsequent termination for\nnoncompliance\ + \ after reinstatement, is permanent, unless rights are\nspecifically restored by Licensor\ + \ in writing.\n\n### 5.3. Termination Due to Litigation\n\nIf You initiate litigation against\ + \ Licensor, or any Recipient of the\nWork, either direct or indirect, asserting that the\ + \ Work directly or\nindirectly infringes any patent, then all permissions granted to You\n\ + by this License shall terminate. In the event of termination due to\nlitigation, all permissions\ + \ validly granted by You under this License,\ndirectly or indirectly, shall survive termination.\ + \ Administrative\nreview procedures, declaratory judgment actions, counterclaims in\nresponse\ + \ to patent litigation, and enforcement actions against former\nLicensees terminated under\ + \ this section do not cause termination due\nto litigation.\n\n## 6. Disclaimer of Warranty\ + \ and Limit on Liability\n\nAs far as the law allows, the Work comes AS-IS, without any\ + \ warranty\nof any kind, and no Licensor or contributor will be liable to anyone\nfor any\ + \ damages related to this software or this license, under any\nkind of legal claim, or for\ + \ any type of damages, including indirect,\nspecial, incidental, or consequential damages\ + \ of any type arising as a\nresult of this License or the use of the Work including, without\n\ + limitation, damages for loss of goodwill, work stoppage, computer\nfailure or malfunction,\ + \ loss of profits, revenue, or any and all other\ncommercial damages or losses.\n\n## 7.\ + \ Other Provisions\n### 7.1. Affiliates\n\nAn \"Affiliate\" means any other entity that,\ + \ directly or indirectly\nthrough one or more intermediaries, controls, is controlled by,\ + \ or is\nunder common control with, the Licensee. Employees of a Licensee and\nnatural persons\ + \ acting as contractors exclusively providing services\nto Licensee are also Affiliates.\n\ + \n### 7.2. Choice of Jurisdiction and Governing Law\n\nA Licensor may require that any action\ + \ or suit by a Licensee relating\nto a Work provided by Licensor under this License may\ + \ be brought only\nin the courts of a particular jurisdiction and under the laws of a\n\ + particular jurisdiction (excluding its conflict-of-law provisions), if\nLicensor provides\ + \ conspicuous notice of the particular jurisdiction to\nall Licensees.\n\n### 7.3. No Sublicensing\n\ + \nThis License is not sublicensable. Each time You provide the Work or a\nModified Work\ + \ to a Recipient, the Recipient automatically receives a\nlicense under the terms described\ + \ in this License. You may not impose\nany further reservations, conditions, or other provisions\ + \ on any\nRecipients' exercise of the permissions granted herein.\n\n### 7.4. Attorneys'\ + \ Fees\n\nIn any action to enforce the terms of this License, or seeking damages\nrelating\ + \ thereto, including by an intended third-party beneficiary,\nthe prevailing party shall\ + \ be entitled to recover its costs and\nexpenses, including, without limitation, reasonable\ + \ attorneys' fees\nand costs incurred in connection with such action, including any\nappeal\ + \ of such action. A \"prevailing party\" is the party that\nachieves, or avoids, compliance\ + \ with this License, including through\nsettlement. This section shall survive the termination\ + \ of this\nLicense.\n\n### 7.5. No Waiver\n\nAny failure by Licensor to enforce any provision\ + \ of this License will\nnot constitute a present or future waiver of such provision nor\ + \ limit\nLicensor's ability to enforce such provision at a later time.\n\n### 7.6. Severability\n\ + \nIf any provision of this License is held to be unenforceable, such\nprovision shall be\ + \ reformed only to the extent necessary to make it\nenforceable. Any invalid or unenforceable\ + \ portion will be interpreted\nto the effect and intent of the original portion. If such\ + \ a\nconstruction is not possible, the invalid or unenforceable portion\nwill be severed\ + \ from this License but the rest of this License will\nremain in full force and effect.\n\ + \n### 7.7. License for the Text of this License\n\nThe text of this license is released\ + \ under the Creative Commons\nAttribution-ShareAlike 4.0 International License, with the\ + \ caveat that\nany modifications of this license may not use the name \"Cryptographic\n\ + Autonomy License\" or any name confusingly similar thereto to describe\nany derived work\ + \ of this License." json: cal-1.0-combined-work-exception.json - yml: cal-1.0-combined-work-exception.yml + yaml: cal-1.0-combined-work-exception.yml html: cal-1.0-combined-work-exception.html - text: cal-1.0-combined-work-exception.LICENSE + license: cal-1.0-combined-work-exception.LICENSE - license_key: caldera + category: Permissive spdx_license_key: Caldera other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Caldera International, Inc. hereby grants a fee free license that includes the + rights use, modify and distribute this named source code, including creating + derived binary products created from the source code. The source code for which + Caldera International, Inc. grants rights are limited to the following UNIX + Operating Systems that operate on the 16-Bit PDP-11 CPU and early versions of + the 32-Bit UNIX Operating System, with specific exclusion of UNIX System III and + UNIX System V and successor operating systems: + + 32-bit 32V UNIX + 16 bit UNIX Versions 1, 2, 3, 4, 5, 6, 7 + + Caldera International, Inc. makes no guarantees or commitments that any source + code is available from Caldera International, Inc. + + The following copyright notice applies to the source code files for which this + license is granted. + + Copyright(C) Caldera International Inc. All rights reserved. + + Redistribution and use in source and binary forms, with or without modification, + are permitted provided that the following conditions are met: + + Redistributions of source code and documentation 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. + + All advertising materials mentioning features or use of this software must + display the following acknowledgement: This product includes software developed + or owned by Caldera International, Inc. + + Neither the name of Caldera International, Inc. nor the names of other + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + + USE OF THE SOFTWARE PROVIDED FOR UNDER THIS LICENSE BY CALDERA INTERNATIONAL, + INC. 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 CALDERA + INTERNATIONAL, INC. 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. json: caldera.json - yml: caldera.yml + yaml: caldera.yml html: caldera.html - text: caldera.LICENSE + license: caldera.LICENSE - license_key: can-ogl-2.0-en + category: Permissive spdx_license_key: OGL-Canada-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Open Government Licence - Canada + + You are encouraged to use the Information that is available under this licence with only a few conditions. + Using Information under this licence + + Use of any Information indicates your acceptance of the terms below. + The Information Provider grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information, including for commercial purposes, subject to the terms below. + + You are free to: + + Copy, modify, publish, translate, adapt, distribute or otherwise use the Information in any medium, mode or format for any lawful purpose. + + You must, where you do any of the above: + + Acknowledge the source of the Information by including any attribution statement specified by the Information Provider(s) and, where possible, provide a link to this licence. + If the Information Provider does not provide a specific attribution statement, or if you are using Information from several information providers and multiple attributions are not practical for your product or application, you must use the following attribution statement: + + Contains information licensed under the Open Government Licence – Canada. + + The terms of this licence are important, and if you fail to comply with any of them, the rights granted to you under this licence, or any similar licence granted by the Information Provider, will end automatically. + Exemptions + + This licence does not grant you any right to use: + + Personal Information; + third party rights the Information Provider is not authorized to license; + the names, crests, logos, or other official symbols of the Information Provider; and + Information subject to other intellectual property rights, including patents, trade-marks and official marks. + + Non-endorsement + + This licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider endorses you or your use of the Information. + No Warranty + + The Information is licensed "as is", and the Information Provider excludes all representations, warranties, obligations, and liabilities, whether express or implied, to the maximum extent permitted by law. + + The Information Provider is not liable for any errors or omissions in the Information, and will not under any circumstances be liable for any direct, indirect, special, incidental, consequential, or other loss, injury or damage caused by its use or otherwise arising in connection with this licence or the Information, even if specifically advised of the possibility of such loss, injury or damage. + Governing Law + + This licence is governed by the laws of the province of Ontario and the applicable laws of Canada. + + Legal proceedings related to this licence may only be brought in the courts of Ontario or the Federal Court of Canada. + Definitions + + In this licence, the terms below have the following meanings: + + "Information" + means information resources protected by copyright or other information that is offered for use under the terms of this licence. + "Information Provider" + means Her Majesty the Queen in right of Canada. + "Personal Information" + means "personal information" as defined in section 3 of the Privacy Act, R.S.C. 1985, c. P-21. + "You" + means the natural or legal person, or body of persons corporate or incorporate, acquiring rights under this licence. + + Versioning + + This is version 2.0 of the Open Government Licence – Canada. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information. json: can-ogl-2.0-en.json - yml: can-ogl-2.0-en.yml + yaml: can-ogl-2.0-en.yml html: can-ogl-2.0-en.html - text: can-ogl-2.0-en.LICENSE + license: can-ogl-2.0-en.LICENSE - license_key: can-ogl-alberta-2.1 + category: Permissive spdx_license_key: LicenseRef-scancode-can-ogl-alberta-2.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Open Government Licence - Alberta\n\nYou are encouraged to use the Information that\ + \ is available under this licence with only a few conditions.\n\nUsing Information under\ + \ this licence\n\n Use of any Information indicates your acceptance of the terms below.\n\ + \ The Information Provider grants you a worldwide, royalty-free, perpetual, non-exclusive\ + \ licence to use the Information, including for commercial purposes, subject to the terms\ + \ below.\n\nYou are free to:\n\n Copy, modify, publish, translate, adapt, distribute\ + \ or otherwise use the Information in any medium, mode or format for any lawful purpose.\n\ + \nYou must, where you do any of the above:\n\n Acknowledge the source of the Information\ + \ by including any attribution statement specified by the Information Provider(s) and, where\ + \ possible, provide a link to this licence.\n\nIf the Information Provider does not provide\ + \ a specific attribution statement, or if you are using Information from several Information\ + \ Providers and multiple attributions are not practical for your product or application,\ + \ you must use the following attribution statement:\n\n Contains information licensed\ + \ under the Open Government Licence – Alberta.\n\n The terms of this licence are important,\ + \ and if you fail to comply with any of them, the rights granted to you under this licence,\ + \ or any similar licence granted by the Information Provider, will end automatically.\n\n\ + Exemptions\n\n This licence does not grant you any right to use:\n\n Personal Information;\n\ + \ Information or Records that are not accessible under applicable laws;\n third party\ + \ rights the Information Provider is not authorized to license;\n the names, crests,\ + \ logos, or other official symbols of the Information Provider; and\n Information subject\ + \ to other intellectual property rights, including patents, trade-marks and official marks.\n\ + \nNon-endorsement\n\nThis licence does not grant you any right to use the Information in\ + \ a way that suggests any official status or that the Information Provider endorses you\ + \ or your use of the Information.\n\nNo warranty\n\nThe Information is licensed \"as is\"\ + , and the Information Provider excludes all representations, warranties, obligations, and\ + \ liabilities, whether express or implied, to the maximum extent permitted by law.\nThe\ + \ Information Provider is not liable for any errors or omissions in the Information, and\ + \ will not under any circumstances be liable for any direct, indirect, special, incidental,\ + \ consequential, or other loss, injury or damage caused by its use or otherwise arising\ + \ in connection with this licence or the Information, even if specifically advised of the\ + \ possibility of such loss, injury or damage.\n\nGoverning Law\n\nThis licence is governed\ + \ by the laws of the province of Alberta and the applicable laws of Canada. \nLegal proceedings\ + \ related to this licence may only be brought in the courts of Alberta.\n\nDefinitions\n\ + \n In this licence, the terms below have the following meanings:\n\n\"Information\"\n\ + \nmeans information resources or Records protected by copyright or other information or\ + \ Records that are offered for use under the terms of this licence.\n\n\"Information Provider\"\ + \n\nmeans Her Majesty the Queen in right of Alberta, and agencies, boards, commissions or\ + \ provincial corporations of Her Majesty.\n\n\"Personal Information\"\n\nhas the meaning\ + \ set out in section 1(n) of the Freedom of Information and Protection of Privacy Act (Alberta)\n\ + \n\"Records\"\n\nhas the meaning set out in section 1(q) of the Freedom of Information and\ + \ Protection of Privacy Act (Alberta)\n\n\"You\"\n\nmeans the natural or legal person, or\ + \ body of persons corporate or incorporate, acquiring rights under this licence.\n\nVersioning\n\ + \n This is version 2.1 of the Open Government Licence – Alberta. The Information Provider\ + \ may make changes to the terms of this licence from time to time and issue a new version\ + \ of the licence. Your use of the Information will be governed by the terms of the licence\ + \ in force as of the date you accessed the information." json: can-ogl-alberta-2.1.json - yml: can-ogl-alberta-2.1.yml + yaml: can-ogl-alberta-2.1.yml html: can-ogl-alberta-2.1.html - text: can-ogl-alberta-2.1.LICENSE + license: can-ogl-alberta-2.1.LICENSE - license_key: can-ogl-british-columbia-2.0 + category: Permissive spdx_license_key: LicenseRef-scancode-can-ogl-british-columbia-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Open Government Licence - British Columbia + + Note: as per B.C. Government Copyright, the following licence only applies to records in the B.C. Data Catalogue that specify it. + + You are encouraged to use the Information that is available under this licence with only a few conditions. + Using Information under this licence + + Use of any Information indicates your acceptance of the terms below. + The Information Provider grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information, including for commercial purposes, subject to the terms below. + + You are free to: + + Copy, modify, publish, translate, adapt, distribute or otherwise use the Information in any medium, mode or format for any lawful purpose. + + You must, where you do any of the above: + + Acknowledge the source of the Information by including any attribution statement specified by the Information Provider(s) and, where possible, provide a link to this licence. + + If the Information Provider does not provide a specific attribution statement, or if you are using Information from several Information Providers and multiple attributions are not practical for your product or application, you must use the following attribution statement: + + Contains information licensed under the Open Government Licence – British Columbia. + + The terms of this licence are important, and if you fail to comply with any of them, the rights granted to you under this licence, or any similar licence granted by the Information Provider, will end automatically. + + Exemptions + + This licence does not grant you any right to use: + Personal Information; + Information or Records not accessible under the Freedom of Information and Protection of Privacy Act (B.C.); + third party rights the Information Provider is not authorized to licence; + the names, crests, logos, or other official marks of the Information Provider; and + Information subject to other intellectual property rights, including patents, trade-marks and official marks. + + Non-endorsement + + This licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider endorses you or your use of the Information. + + No warranty + + The Information is licensed "as is", and the Information Provider excludes all representations, warranties, obligations, and liabilities, whether express or implied, to the maximum extent permitted by law. + The Information Provider is not liable for any errors or omissions in the Information, and will not under any circumstances be liable for any direct, indirect, special, incidental, consequential, or other loss, injury or damage caused by its use or otherwise arising in connection with this licence or the Information, even if specifically advised of the possibility of such loss, injury or damage. + + Governing Law + + This licence is governed by the laws of the province of British Columbia and the applicable laws of Canada. + Legal proceedings related to this licence may only be brought in the courts of British Columbia. + + Definitions + + In this licence, the terms below have the following meanings: + + "Information" + + means information resources or Records protected by copyright or other information or Records that is are offered for use under the terms of this licence. + + "Information Provider" + + means Her Majesty the Queen in right of the Province of British Columbia. + + "Personal Information" + + has the meaning set out in Schedule 1 of the Freedom of Information and Protection of Privacy Act (B.C.). + + "Records" + + has the meaning set out in section 29 of the Interpretation Act (B.C.). + + "You" + + means the natural or legal person, or body of persons corporate or incorporate, acquiring rights under this licence. + + Versioning + + This is version 2.0 of the Open Government Licence for Government of British Columbia Information. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the Information. json: can-ogl-british-columbia-2.0.json - yml: can-ogl-british-columbia-2.0.yml + yaml: can-ogl-british-columbia-2.0.yml html: can-ogl-british-columbia-2.0.html - text: can-ogl-british-columbia-2.0.LICENSE + license: can-ogl-british-columbia-2.0.LICENSE - license_key: can-ogl-nova-scotia-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-can-ogl-nova-scotia-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Open Government Licence – Nova Scotia + + You are encouraged to use the Information that is available under this licence with only a few conditions. + Using Information under this licence + + Use of any Information indicates your acceptance of the terms below. + The Information Provider grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information, including for commercial purposes, subject to the terms below. + + You are free to: + + Copy, modify, publish, translate, adapt, distribute or otherwise use the Information in any medium, mode or format for any lawful purpose. + + You must, where you do any of the above: + + Acknowledge the source of the Information by including any attribution statement specified by the Information Provider(s) and, where possible, provide a link to this licence. + If the Information Provider does not provide a specific attribution statement, or if you are using Information from several information providers and multiple attributions are not practical for your product or application, you must use the following attribution statement: + + Contains information licensed under the Open Government Licence – Nova Scotia + + The terms of this licence are important, and if you fail to comply with any of them, the rights granted to you under this licence, or any similar licence granted by the Information Provider, will end automatically. + Exemptions + + This licence does not grant you any right to use: + + Personal Information; + Information or Records not accessible under the Freedom of Information and Protection of Privacy Act (Nova Scotia) or any other applicable laws; + third party rights the Information Provider is not authorized to license; + the names, crests, logos, or other official symbols of the Information Provider; and + Information subject to other intellectual property rights, including patents, trade-marks and official marks. + + Non-endorsement + + This licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider endorses you or your use of the Information. + No Warranty + + The Information is licensed "as is", and the Information Provider excludes all representations, warranties, obligations, and liabilities, whether express or implied, to the maximum extent permitted by law. + + The Information Provider is not liable for any errors or omissions in the Information, and will not under any circumstances be liable for any direct, indirect, special, incidental, consequential, or other loss, injury or damage caused by its use or otherwise arising in connection with this licence or the Information, even if specifically advised of the possibility of such loss, injury or damage. + Governing Law + + This licence is governed by the laws of the Province of Nova Scotia and the applicable laws of Canada. + + Legal proceedings related to this licence may only be brought in the courts of Nova Scotia. + Definitions + + In this licence, the terms below have the following meanings: + + "Information" + means information resources or Records protected by copyright or other information or Records that are offered for use under the terms of this licence. + "Information Provider" + means Her Majesty the Queen in right of Province of Nova Scotia. + "Personal Information" + means "personal information" as defined in section 3(1) of the Freedom of Information and Protection of Privacy Act (Nova Scotia). + "Records" + has the meaning of "record" set out in the Government Records Act (Nova Scotia). + "You" + means the natural or legal person, or body of persons corporate or incorporate, acquiring rights under this licence. + + Versioning + + This is version 1.0 of the Open Government Licence – Nova Scotia. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information. json: can-ogl-nova-scotia-1.0.json - yml: can-ogl-nova-scotia-1.0.yml + yaml: can-ogl-nova-scotia-1.0.yml html: can-ogl-nova-scotia-1.0.html - text: can-ogl-nova-scotia-1.0.LICENSE + license: can-ogl-nova-scotia-1.0.LICENSE - license_key: can-ogl-ontario-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-can-ogl-ontario-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Open Government Licence – Ontario\n\nYou are encouraged to use the Information that\ + \ is available under this licence with only a few conditions.\n\n\nUsing Information under\ + \ this licence\n\n Use of any Information indicates your acceptance of the terms below.\n\ + \ The Information Provider grants you a worldwide, royalty-free, perpetual, non-exclusive\ + \ licence to use the Information, including for commercial purposes, subject to the terms\ + \ below.\n\nYou are free to:\n\n Copy, modify, publish, translate, adapt, distribute\ + \ or otherwise use the Information in any medium, mode or format for any lawful purpose.\n\ + \nYou must, where you do any of the above:\n\n Acknowledge the source of the Information\ + \ by including any attribution statement specified by the Information Provider(s) and, where\ + \ possible, provide a link to this licence.\n\nIf the Information Provider does not provide\ + \ a specific attribution statement, or if you are using Information from several Information\ + \ Providers and multiple attributions are not practical for your product or application,\ + \ you must use the following attribution statement:\n\nContains information licensed under\ + \ the Open Government Licence – Ontario.\n\n The terms of this licence are important,\ + \ and if you fail to comply with any of them, the rights granted to you under this licence,\ + \ or any similar licence granted by the Information Provider, will end automatically.\n\n\ + Exemptions\n\n This licence does not grant you any right to use:\n Personal Information;\n\ + \ Information or Records not accessible under the Freedom of Information and Protection\ + \ of Privacy Act (Ontario);\n third party rights the Information Provider is not\ + \ authorized to license;\n the names, crests, logos, or other official symbols of\ + \ the Information Provider; and\n Information subject to other intellectual property\ + \ rights, including patents, trade-marks and official marks.\n\nNon-endorsement\n\n This\ + \ licence does not grant you any right to use the Information in a way that suggests any\ + \ official status or that the Information Provider endorses you or your use of the Information.\n\ + \nNo warranty\n\n The Information is licensed \"as is\", and the Information Provider\ + \ excludes all representations, warranties, obligations, and liabilities, whether express\ + \ or implied, to the maximum extent permitted by law.\n The Information Provider is not\ + \ liable for any errors or omissions in the Information, and will not under any circumstances\ + \ be liable for any direct, indirect, special, incidental, consequential, or other loss,\ + \ injury or damage caused by its use or otherwise arising in connection with this licence\ + \ or the Information, even if specifically advised of the possibility of such loss, injury\ + \ or damage.\n\nGoverning Law\n\n This licence is governed by the laws of the Province\ + \ of Ontario and the applicable laws of Canada. \n Legal proceedings related to this\ + \ licence may only be brought in the courts of Ontario.\n\nDefinitions\n\n\"Information\"\ + \n means information resources or Records protected by copyright or other information\ + \ or Records that are offered for use under the terms of this licence.\n\"Information Provider\"\ + \n means Her Majesty the Queen in right of Ontario.\n\"Personal Information\"\n has\ + \ the meaning set out in section 2(1) of Freedom of Information and Protection of Privacy\ + \ Act (Ontario).\n\"Records\"\n has the meaning of \"record\" as set out in the Freedom\ + \ of Information and Protection of Privacy Act (Ontario).\n\"You\"\n means the natural\ + \ or legal person, or body of persons corporate or incorporate, acquiring rights under this\ + \ licence.\n\n In this licence, the terms below have the following meanings:\n\nVersioning\n\ + \n This is version 1.0 of the Open Government Licence – Ontario. The Information Provider\ + \ may make changes to the terms of this licence from time to time and issue a new version\ + \ of the licence. Your use of the Information will be governed by the terms of the licence\ + \ in force as of the date you accessed the information.\n\nUpdated: September 6, 2018\n\ + Published: June 18, 2013" json: can-ogl-ontario-1.0.json - yml: can-ogl-ontario-1.0.yml + yaml: can-ogl-ontario-1.0.yml html: can-ogl-ontario-1.0.html - text: can-ogl-ontario-1.0.LICENSE + license: can-ogl-ontario-1.0.LICENSE - license_key: can-ogl-toronto-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-can-ogl-toronto-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Open Government Licence – Toronto + + This licence is based on version 1.0 of the Open Government Licence – Ontario, which was developed through public consultation and a collaborative effort by the provincial and federal government. The only substantive changes in this licence are to replace direct references to the Province of Ontario with the City of Toronto and the inclusion of a provision for the Ontario Personal Health Information Protection Act, 2004. + + You are encouraged to use the Information that is available under this licence with only a few conditions. + Using Information under this licence + + Use of any Information indicates your acceptance of the terms below. + The Information Provider grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information, including for commercial purposes, subject to the terms below. + + You are free to: + + Copy, modify, publish, translate, adapt, distribute or otherwise use the Information in any medium, mode or format for any lawful purpose. + + You must, where you do any of the above: + + Acknowledge the source of the Information by including any attribution statement specified by the Information Provider and, where possible, provide a link to this licence. + + If the Information Provider does not provide a specific attribution statement, or if you are using Information from several information providers and multiple attributions are not practical for your product or application, you must use the following attribution statement: + + Contains information licensed under the Open Government Licence – Toronto. + + The terms of this licence are important, and if you fail to comply with any of them, the rights granted to you under this licence, or any similar licence granted by the Information Provider, will end automatically. + + Exemptions + + This licence does not grant you any right to use: + + Personal Information; + Information not accessible under the Ontario Municipal Freedom of Information and Protection of Privacy Act or the Ontario Personal Health Information Protection Act, 2004; + Third party rights the Information Provider is not authorized to licence; + The names, crests, logos, or other official symbols of the Information Provider; and + Information subject to other intellectual property rights, including patents, trade-marks and official marks. + + Non-endorsement + + This licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider endorses you or your use of the Information. + + No Warranty + + The Information is licensed "as is", and the Information Provider excludes all representations, warranties, obligations, and liabilities, whether express or implied, to the maximum extent permitted by law. + The Information Provider is not liable for any errors or omissions in the Information, and will not under any circumstances be liable for any direct, indirect, special, incidental, consequential, or other loss, injury or damage caused by its use or otherwise arising in connection with this licence or the Information, even if specifically advised of the possibility of such loss, injury or damage. + + Governing Law + + This licence is governed by the laws of the province of Ontario and the applicable laws of Canada. + Legal proceedings related to this licence may only be brought against the Information Provider in the courts of the Province of Ontario. + Definitions + + In this licence, the terms below have the following meanings: + + "Information" + means information resources or Records protected by copyright or other information resources or Records that are offered for use under the terms of this licence. + + "Information Provider" + means the City of Toronto. + + "Personal Information" + means "personal information" as defined in subsection 2(1) of the Ontario Municipal Freedom of Information and Protection of Privacy Act. + + "Records" + means "Records" as defined in subsection 2(1) of the Ontario Municipal Freedom of Information and Protection of Privacy Act. + + "You" + means the natural or legal person or body of persons corporate or incorporate, acquiring rights under this licence. + + Versioning + This is version 1.0 of the Open Government Licence – Toronto. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information. json: can-ogl-toronto-1.0.json - yml: can-ogl-toronto-1.0.yml + yaml: can-ogl-toronto-1.0.yml html: can-ogl-toronto-1.0.html - text: can-ogl-toronto-1.0.LICENSE + license: can-ogl-toronto-1.0.LICENSE - license_key: careware + category: Permissive spdx_license_key: LicenseRef-scancode-careware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + CAREWARE LICENSE + + This script is released as "CAREWARE", it may be freely distributed, used, + modified and whatever, provided that the user, at least once per use, performs + ANY of the following + + 1 - Smiles at somebody/something + + 2 - Hugs or pats on the shoulder a friend/colleague/pet/furry little creature from Alpha Centauri + + 3 - Acts nicely towards a friend/foreigner/alien/any other living being + + 4 - Kisses his/her girlfriend/wife/boyfriend/husband/any other living being (de gustibus...) + + 5 - Feels happy even without apparent reason + + 6 - Stops whining for an hour, a day, a week, your choice + + Important Note: if you don't like this idea, just ignore it -- you can have this anyway. + + That's one way to distinguish the world of ideas from the rest of human history: + + you can disregard an idea ... + + ...and no one knocks on your door at midnight. + + (Unless it's your neighbour in need of a cup of sugar), in which case you MAY act NON-nicely + + + STANDARD DISCLAIMER + + Though every reasonable effort has been made in testing this script, the Author + accepts no liability whatsoever. This script may or may not do whatever it is + supposed to do, it could even possibly completely destroy your software, + hardware and set your house/office to fire. + + No warranty implied, not even that of fitness for any particular purpose apart + taking up a little bit of your hard disk space. json: careware.json - yml: careware.yml + yaml: careware.yml html: careware.html - text: careware.LICENSE + license: careware.LICENSE - license_key: carnegie-mellon + category: Permissive spdx_license_key: LicenseRef-scancode-carnegie-mellon other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this program for any purpose and + without fee is hereby granted, provided that this copyright and permission + notice appear on all copies and supporting documentation, the name of Carnegie + Mellon not be used in advertising or publicity pertaining to distribution of the + program without specific prior permission, and notice be given in supporting + documentation that copying and distribution is by permission of Carnegie Mellon + and Stanford University. Carnegie Mellon makes no representations about the + suitability of this software for any purpose. It is provided "as is" without + express or implied warranty. json: carnegie-mellon.json - yml: carnegie-mellon.yml + yaml: carnegie-mellon.yml html: carnegie-mellon.html - text: carnegie-mellon.LICENSE + license: carnegie-mellon.LICENSE - license_key: carnegie-mellon-contributors + category: Permissive spdx_license_key: LicenseRef-scancode-carnegie-mellon-contributors other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Permission to use, copy, modify and distribute this software and its\ndocumentation\ + \ is hereby granted, provided that both the copyright notice and\nthis permission notice\ + \ appear in all copies of the software, derivative works or\nmodified versions, and any\ + \ portions thereof, and that both notices appear in\nsupporting documentation.\n\nCARNEGIE\ + \ MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS \"AS IS\" CONDITION.\nCARNEGIE MELLON DISCLAIMS\ + \ ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER\nRESULTING FROM THE USE OF THIS SOFTWARE.\n\ + \nCarnegie Mellon requests users of this software to return to\n\n Software Distribution\ + \ Coordinator or Software.Distribution@CS.CMU.EDU \n School of Computer Science \n Carnegie\ + \ Mellon University \n Pittsburgh PA 15213-3890\n\nany improvements or extensions that\ + \ they make and grant Carnegie the rights to\nredistribute these changes." json: carnegie-mellon-contributors.json - yml: carnegie-mellon-contributors.yml + yaml: carnegie-mellon-contributors.yml html: carnegie-mellon-contributors.html - text: carnegie-mellon-contributors.LICENSE + license: carnegie-mellon-contributors.LICENSE - license_key: cavium-linux-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-cavium-linux-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Software License Agreement + + ANY USE, REPRODUCTION, OR DISTRIBUTION OF THE ACCOMPANYING BINARY SOFTWARE + CONSTITUTES LICENSEEE'S ACCEPTANCE OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. + + Licensed Software. Subject to the terms and conditions of this Agreement, + Cavium, Inc. ("Cavium") grants to Licensee a worldwide, non-exclusive, and + royalty-free license to use, reproduce, and distribute the binary software in + its complete and unmodified form as provided by Cavium. + + Restrictions. Licensee must reproduce the Cavium copyright notice above with + each binary software copy. Licensee must not reverse engineer, decompile, + disassemble or modify in any way the binary software. Licensee must not use + the binary software in violation of any applicable law or regulation. This + Agreement shall automatically terminate upon Licensee's breach of any term or + condition of this Agreement in which case, Licensee shall destroy all copies of + the binary software. + + Warranty Disclaimer. THE LICENSED SOFTWARE IS OFFERED "AS IS," AND CAVIUM + GRANTS AND LICENSEE RECEIVES NO WARRANTIES OF ANY KIND, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR BY COURSE OF COMMUNICATION OR DEALING WITH LICENSEE, OR + OTHERWISE. CAVIUM AND ITS LICENSORS SPECIFICALLY DISCLAIM ANY IMPLIED + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, OR + NONINFRINGEMENT OF THIRD PARTY RIGHTS, CONCERNING THE LICENSED SOFTWARE, + DERIVATIVE WORKS, OR ANY DOCUMENTATION PROVIDED WITH THE FOREGOING. WITHOUT + LIMITING THE GENERALITY OF THE FOREGOING, CAVIUM DOES NOT WARRANT THAT THE + LICENSED SOFTWARE IS ERROR-FREE OR WILL OPERATE WITHOUT INTERRUPTION, AND + CAVIUM GRANTS NO WARRANTY REGARDING ITS USE OR THE RESULTS THEREFROM, INCLUDING + ITS CORRECTNESS, ACCURACY, OR RELIABILITY. + + Limitation of Liability. IN NO EVENT WILL LICENSEE, CAVIUM, OR ANY OF CAVIUM'S + LICENSORS HAVE ANY LIABILITY HEREUNDER FOR ANY INDIRECT, SPECIAL, OR + CONSEQUENTIAL DAMAGES, HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER + FOR BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, ARISING OUT + OF THIS AGREEMENT, INCLUDING DAMAGES FOR LOSS OF PROFITS, OR THE COST OF + PROCUREMENT OF SUBSTITUTE GOODS, EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE + POSSIBILITY OF SUCH DAMAGES. + + Export and Import Laws. Licensee acknowledges and agrees that the Licensed + Software (including technical data and related technology) may be controlled by + the export control laws, rules, regulations, restrictions and national security + controls of the United States and other applicable foreign agencies (the + "Export Controls"), and agrees not export or re-export, or allow the export or + re-export of export-controlled the Licensed Software (including technical data + and related technology) or any copy, portion or direct product of the foregoing + in violation of the Export Controls. Licensee hereby represents that + (i) Licensee is not an entity or person to whom provision of the Licensed + Software (including technical data and related technology) is restricted or + prohibited by the Export Controls; and (ii) Licensee will not export, re-export + or otherwise transfer the export-controlled Licensed Software (including + technical data and related technology) in violation of U.S. sanction programs + or export control regulations to (a) any country, or national or resident of + any country, subject to a United States trade embargo, (b) any person or entity + to whom shipment is restricted or prohibited by the Export Controls, or + (c) anyone who is engaged in activities related to the design, development, + production, or use of nuclear materials, nuclear facilities, nuclear weapons, + missiles or chemical or biological weapons. json: cavium-linux-firmware.json - yml: cavium-linux-firmware.yml + yaml: cavium-linux-firmware.yml html: cavium-linux-firmware.html - text: cavium-linux-firmware.LICENSE + license: cavium-linux-firmware.LICENSE - license_key: cavium-malloc + category: Permissive spdx_license_key: LicenseRef-scancode-cavium-malloc other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, distribute, and sell this software and its + documentation for any purpose is hereby granted without fee, provided that (i) + the above copyright notices and this permission notice appear in all copies of + the software and related documentation, and (ii) the name of Wolfram Gloger may + not be used in any advertising or publicity relating to the software. + + THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, + EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY + WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + + IN NO EVENT SHALL WOLFRAM GLOGER BE LIABLE FOR ANY SPECIAL, + INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY + DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY + OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THIS SOFTWARE. json: cavium-malloc.json - yml: cavium-malloc.yml + yaml: cavium-malloc.yml html: cavium-malloc.html - text: cavium-malloc.LICENSE + license: cavium-malloc.LICENSE - license_key: cavium-targeted-hardware + category: Free Restricted spdx_license_key: LicenseRef-scancode-cavium-targeted-hardware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + 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 acknowledgement: + + This product includes software developed by Cavium Networks + + 4. Cavium Networks' name may not be used to endorse or promote products + derived from this software without specific prior written permission. + + 5. User agrees to enable and utilize only the features and performance + purchased on the target hardware. + + This Software,including technical data,may be subject to U.S. export control + laws, including the U.S. Export Administration Act and its associated + regulations, and may be subject to export or import regulations in other + countries. You warrant that You will comply strictly in all respects with all + such regulations and acknowledge that you have the responsibility to obtain + licenses to export, re-export or import the Software. + + TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS" AND + WITH ALL FAULTS AND CAVIUM MAKES NO PROMISES, REPRESENTATIONS OR WARRANTIES, + EITHER EXPRESS,IMPLIED,STATUTORY, OR OTHERWISE, WITH RESPECT TO THE SOFTWARE, + INCLUDING ITS CONDITION,ITS CONFORMITY TO ANY REPRESENTATION OR DESCRIPTION, + OR THE EXISTENCE OF ANY LATENT OR PATENT DEFECTS, AND CAVIUM SPECIFICALLY + DISCLAIMS ALL IMPLIED (IF ANY) WARRANTIES OF TITLE, MERCHANTABILITY, + NONINFRINGEMENT,FITNESS FOR A PARTICULAR PURPOSE,LACK OF VIRUSES, ACCURACY OR + COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION OR CORRESPONDENCE TO + DESCRIPTION. THE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE + SOFTWARE LIES WITH YOU. json: cavium-targeted-hardware.json - yml: cavium-targeted-hardware.yml + yaml: cavium-targeted-hardware.yml html: cavium-targeted-hardware.html - text: cavium-targeted-hardware.LICENSE + license: cavium-targeted-hardware.LICENSE - license_key: cc-by-1.0 + category: Permissive spdx_license_key: CC-BY-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Attribution 1.0 + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. + "Licensor" means the individual or entity that offers the Work under the terms of this License. + "Original Author" means the individual or entity who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to create and reproduce Derivative Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works; + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. + + 4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested. + If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + 5. Representations, Warranties and Disclaimer + + By offering the Work for public release under this License, Licensor represents and warrants that, to the best of Licensor's knowledge after reasonable inquiry: + Licensor has secured all rights in the Work necessary to grant the license rights hereunder and to permit the lawful exercise of the rights granted hereunder without You having any obligation to pay any royalties, compulsory license fees, residuals or any other payments; + The Work does not infringe the copyright, trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party. + EXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF THE WORK. + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 8. Miscellaneous + + Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at http://creativecommons.org/. json: cc-by-1.0.json - yml: cc-by-1.0.yml + yaml: cc-by-1.0.yml html: cc-by-1.0.html - text: cc-by-1.0.LICENSE + license: cc-by-1.0.LICENSE - license_key: cc-by-2.0 + category: Permissive spdx_license_key: CC-BY-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Attribution 2.0 + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. + "Licensor" means the individual or entity that offers the Work under the terms of this License. + "Original Author" means the individual or entity who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to create and reproduce Derivative Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works. + For the avoidance of doubt, where the work is a musical composition: + + Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work. + Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions). + Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions). + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. + + 4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested. + If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 8. Miscellaneous + + Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at http://creativecommons.org/. json: cc-by-2.0.json - yml: cc-by-2.0.yml + yaml: cc-by-2.0.yml html: cc-by-2.0.html - text: cc-by-2.0.LICENSE + license: cc-by-2.0.LICENSE - license_key: cc-by-2.0-uk + category: Permissive spdx_license_key: LicenseRef-scancode-cc-by-2.0-uk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Attribution 2.0 England and Wales + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + Licence + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENCE ("CCPL" OR "LICENCE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENCE OR COPYRIGHT LAW IS PROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENCE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + This Creative Commons England and Wales Public Licence enables You (all capitalised terms defined below) to view, edit, modify, translate and distribute Works worldwide, provided that You credit the Original Author. + + 'The Licensor' [one or more legally recognised persons or entities offering the Work under the terms and conditions of this Licence] + + and + + 'You' + + agree as follows: + + 1. Definitions + + "Attribution" means acknowledging all the parties who have contributed to and have rights in the Work, Derivative Work or Collective Work under this Licence. + "Collective Work" means the Work in its entirety in unmodified form along with a number of other separate and independent works, assembled into a collective whole. + "Derivative Work" means any work created by the editing, modification, adaptation or translation of the Work in any media (however a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this Licence). For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this Licence. + "Licence" means this Creative Commons England and Wales Public Licence agreement. + "Original Author" means the individual (or entity) who created the Work. + "Work" means the work protected by copyright which is offered under the terms of this Licence. + For the purpose of this Licence, when not inconsistent with the context, words in the singular number include the plural number. + 2. Licence Terms + + 2.1 The Licensor hereby grants to You a worldwide, royalty-free, non-exclusive, Licence for use and for the duration of copyright in the Work. + + You may: + + copy the Work; + create one or more Derivative Works; + incorporate the Work into one or more Collective Works; + copy Derivative Works or the Work as incorporated in any Collective Work; and + publish, distribute, archive, perform or otherwise disseminate the Work, Derivative Works or the Work as incorporated in any Collective Work, to the public in any material form in any media whether now known or hereafter created. + + HOWEVER, + + You must not: + + impose any terms on the use to be made of the Work, the Derivative Work or the Work as incorporated in a Collective Work that alter or restrict the terms of this Licence or any rights granted under it or has the effect or intent of restricting the ability to exercise those rights; + impose any digital rights management technology on the Work, the Derivative Work or the Work as incorporated in a Collective Work that alters or restricts the terms of this Licence or any rights granted under it or has the effect or intent of restricting the ability to exercise those rights; + sublicense the Work; + subject the Work to any derogatory treatment as defined in the Copyright, Designs and Patents Act 1988. + + FINALLY, + + You must: + + make reference to this Licence (by Uniform Resource Identifier (URI), spoken word or as appropriate to the media used) on all copies of the Work and Derivative Works and Collective Works published, distributed, performed or otherwise disseminated or made available to the public by You; + recognise the Licensor's / Original Author's right of attribution in any Work, Derivative Work and Collective Work that You publish, distribute, perform or otherwise disseminate to the public and ensure that You credit the Licensor / Original Author as appropriate to the media used; and + to the extent reasonably practicable, keep intact all notices that refer to this Licence, in particular the URI, if any, that the Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work. + Additional Provisions for third parties making use of the Work + + 2.2. Further licence from the Licensor + + Each time You publish, distribute, perform or otherwise disseminate + + the Work; or + any Derivative Work; or + the Work as incorporated in a Collective Work + the Licensor agrees to offer to the relevant third party making use of the Work (in any of the alternatives set out above) a licence to use the Work on the same terms and conditions as granted to You hereunder. + + 2.3. This Licence does not affect any rights that the User may have under any applicable law, including fair use, fair dealing or any other legally recognised limitation or exception to copyright infringement. + + 2.4. All rights not expressly granted by the Licensor are hereby reserved, including but not limited to, the exclusive right to collect, whether individually or via a licensing body, such as a collecting society, royalties for any use of the Work. + + 3. Warranties and Disclaimer + + Except as required by law, the Work or any Derivative Work is licensed by the Licensor on an "as is" and "as available" basis and without any warranty of any kind, either express or implied. + + 4. Limit of Liability + + Subject to any liability which may not be excluded or limited by law the Licensor shall not be liable and hereby expressly excludes all liability for loss or damage howsoever and whenever caused to You. + + 5. Termination + + The rights granted to You under this Licence shall terminate automatically upon any breach by You of the terms of this Licence. Individuals or entities who have received Derivative Works or Collective Works from You under this Licence, however, will not have their Licences terminated provided such individuals or entities remain in full compliance with those Licences. + + 6. General + + 6.1. The validity or enforceability of the remaining terms of this agreement is not affected by the holding of any provision of it to be invalid or unenforceable. + + 6.2. This Licence constitutes the entire Licence Agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. The Licensor shall not be bound by any additional provisions that may appear in any communication in any form. + + 6.3. A person who is not a party to this Licence shall have no rights under the Contracts (Rights of Third Parties) Act 1999 to enforce any of its terms. + + 6.4. This Licence shall be governed by the law of England and Wales and the parties irrevocably submit to the exclusive jurisdiction of the Courts of England and Wales. + + 7. On the role of Creative Commons + + 7.1. Neither the Licensor nor the User may use the Creative Commons logo except to indicate that the Work is licensed under a Creative Commons Licence. Any permitted use has to be in compliance with the Creative Commons trade mark usage guidelines at the time of use of the Creative Commons trade mark. These guidelines may be found on the Creative Commons website or be otherwise available upon request from time to time. + + 7.2. Creative Commons Corporation does not profit financially from its role in providing this Licence and will not investigate the claims of any Licensor or user of the Licence. + + 7.3. One of the conditions that Creative Commons Corporation requires of the Licensor and You is an acknowledgement of its limited role and agreement by all who use the Licence that the Corporation is not responsible to anyone for the statements and actions of You or the Licensor or anyone else attempting to use or using this Licence. + + 7.4. Creative Commons Corporation is not a party to this Licence, and makes no warranty whatsoever in connection to the Work or in connection to the Licence, and in all events is not liable for any loss or damage resulting from the Licensor's or Your reliance on this Licence or on its enforceability. + + 7.5. USE OF THIS LICENCE MEANS THAT YOU AND THE LICENSOR EACH ACCEPTS THESE CONDITIONS IN SECTION 7.1, 7.2, 7.3, 7.4 AND EACH ACKNOWLEDGES CREATIVE COMMONS CORPORATION'S VERY LIMITED ROLE AS A FACILITATOR OF THE LICENCE FROM THE LICENSOR TO YOU. + + Creative Commons is not a party to this Licence, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this licence. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at http://creativecommons.org/. json: cc-by-2.0-uk.json - yml: cc-by-2.0-uk.yml + yaml: cc-by-2.0-uk.yml html: cc-by-2.0-uk.html - text: cc-by-2.0-uk.LICENSE + license: cc-by-2.0-uk.LICENSE - license_key: cc-by-2.5 + category: Permissive spdx_license_key: CC-BY-2.5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Attribution 2.5 + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. + "Licensor" means the individual or entity that offers the Work under the terms of this License. + "Original Author" means the individual or entity who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to create and reproduce Derivative Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works. + For the avoidance of doubt, where the work is a musical composition: + + Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work. + Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions). + Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions). + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. + + 4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(b), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by clause 4(b), as requested. + If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 8. Miscellaneous + + Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at http://creativecommons.org/. json: cc-by-2.5.json - yml: cc-by-2.5.yml + yaml: cc-by-2.5.yml html: cc-by-2.5.html - text: cc-by-2.5.LICENSE + license: cc-by-2.5.LICENSE - license_key: cc-by-2.5-au + category: Permissive spdx_license_key: CC-BY-2.5-AU other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Creative Commons Attribution 2.5 Australia + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + + Licence + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENCE ("CCPL" OR "LICENCE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORISED UNDER THIS LICENCE AND/OR APPLICABLE LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENCE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + a. "Collective Work" means a work, such as a periodical issue, anthology or encyclopaedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this Licence. + + b. "Derivative Work" means a work that reproduces a substantial part of the Work, or of the Work and other pre-existing works protected by copyright, or that is an adaptation of a Work that is a literary, dramatic, musical or artistic work. Derivative Works include a translation, musical arrangement, dramatisation, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which a work may be adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this Licence. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this Licence. + + c. "Licensor" means the individual or entity that offers the Work under the terms of this Licence. + + d. "Moral rights law" means laws under which an individual who creates a work protected by copyright has rights of integrity of authorship of the work, rights of attribution of authorship of the work, rights not to have authorship of the work falsely attributed, or rights of a similar or analogous nature in the work anywhere in the world. + + e. "Original Author" means the individual or entity who created the Work. + + f. "Work" means the work or other subject-matter protected by copyright that is offered under the terms of this Licence, which may include (without limitation) a literary, dramatic, musical or artistic work, a sound recording or cinematograph film, a published edition of a literary, dramatic, musical or artistic work or a television or sound broadcast. + + g. "You" means an individual or entity exercising rights under this Licence who has not previously violated the terms of this Licence with respect to the Work, or who has received express permission from the Licensor to exercise rights under this Licence despite a previous violation. + + h. "Licence Elements" means the following high-level licence attributes as selected by Licensor and indicated in the title of this Licence: Attribution, NonCommercial, NoDerivatives, ShareAlike. + + 2. Fair Dealing and Other Rights. Nothing in this Licence excludes or modifies, or is intended to exclude or modify, (including by reducing, limiting, or restricting) the rights of You or others to use the Work arising from fair dealings or other limitations on the rights of the copyright owner or the Original Author under copyright law, moral rights law or other applicable laws. + + 3. Licence Grant. Subject to the terms and conditions of this Licence, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) licence to exercise the rights in the Work as stated below: + + a. to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + + b. to create and reproduce Derivative Works; + + c. to publish, communicate to the public, distribute copies or records of, exhibit or display publicly, perform publicly and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + + d. to publish, communicate to the public, distribute copies or records of, exhibit or display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works; + + e. For the avoidance of doubt, where the Work is a musical composition: + + i. Performance Royalties Under Blanket Licences. Licensor will not collect, whether individually or via a performance rights society, royalties for Your communication to the public, broadcast, public performance or public digital performance (e.g. webcast) of the Work. + + ii. Mechanical Rights and Statutory Royalties. Licensor will not collect, whether individually or via a music rights agency, designated agent or a music publisher, royalties for any record You create from the Work ("cover version") and distribute, subject to the compulsory licence created by 17 USC Section 115 of the US Copyright Act (or an equivalent statutory licence under the Australian Copyright Act or in other jurisdictions). + + + f. Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor will not collect, whether individually or via a performance-rights society, royalties for Your public digital performance (e.g. webcast) of the Work, subject to the compulsory licence created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions). + + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor under this Licence are hereby reserved. + + 4. Restrictions. The licence granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + a. You may publish, communicate to the public, distribute, publicly exhibit or display, publicly perform, or publicly digitally perform the Work only under the terms of this Licence, and You must include a copy of, or the Uniform Resource Identifier for, this Licence with every copy or record of the Work You publish, communicate to the public, distribute, publicly exhibit or display, publicly perform or publicly digitally perform. You may not offer or impose any terms on the Work that exclude, alter or restrict the terms of this Licence or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this Licence and to the disclaimer of representations and warranties. You may not publish, communicate to the public, distribute, publicly exhibit or display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this Licence. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this Licence. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by Section 4(b), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by Section 4(b), as requested. + + b. If you publish, communicate to the public, distribute, publicly exhibit or display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work. You must also give clear and reasonably prominent credit to (i) the Original Author (by name or pseudonym if applicable), if the name or pseudonym is supplied; and (ii) if another party or parties (eg a sponsor institute, publishing entity or journal) is designated for attribution in the copyright notice, terms of service or other reasonable means associated with the Work, such party or parties. If applicable, that credit must be given in the particular way made known by the Original Author and otherwise as reasonable to the medium or means You are utilizing, by conveying the identity of the Original Author and the other designated party or parties (if applicable); the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + + c. False attribution prohibited. Except as otherwise agreed in writing by the Licensor, if You publish, communicate to the public, distribute, publicly exhibit or display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works in accordance with this Licence, You must not falsely attribute the Work to someone other than the Original Author. + + d. Prejudice to honour or reputation prohibited. Except as otherwise agreed in writing by the Licensor, if you publish, communicate to the public, distribute, publicly exhibit or display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must not do anything that results in a material distortion of, the mutilation of, or a material alteration to, the Work that is prejudicial to the Original Author's honour or reputation, and You must not do anything else in relation to the Work that is prejudicial to the Original Author's honour or reputation. + + 5. Disclaimer. + + EXCEPT AS EXPRESSLY STATED IN THIS LICENCE OR OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, AND TO THE FULL EXTENT PERMITTED BY APPLICABLE LAW, LICENSOR OFFERS THE WORK "AS-IS" AND MAKES NO REPRESENTATIONS, WARRANTIES OR CONDITIONS OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, ANY REPRESENTATIONS, WARRANTIES OR CONDITIONS REGARDING THE CONTENTS OR ACCURACY OF THE WORK, OR OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, THE ABSENCE OF LATENT OR OTHER DEFECTS, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. + + 6. Limitation on Liability. + + TO THE FULL EXTENT PERMITTED BY APPLICABLE LAW, AND EXCEPT FOR ANY LIABILITY ARISING FROM CONTRARY MUTUAL AGREEMENT AS REFERRED TO IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE) FOR ANY LOSS OR DAMAGE WHATSOEVER, INCLUDING (WITHOUT LIMITATION) LOSS OF PRODUCTION OR OPERATION TIME, LOSS, DAMAGE OR CORRUPTION OF DATA OR RECORDS; OR LOSS OF ANTICIPATED SAVINGS, OPPORTUNITY, REVENUE, PROFIT OR GOODWILL, OR OTHER ECONOMIC LOSS; OR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH THIS LICENCE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + If applicable legislation implies warranties or conditions, or imposes obligations or liability on the Licensor in respect of this Licence that cannot be wholly or partly excluded, restricted or modified, the Licensor's liability is limited, to the full extent permitted by the applicable legislation, at its option, to: + + a. in the case of goods, any one or more of the following: + + i. the replacement of the goods or the supply of equivalent goods; + + ii. the repair of the goods; + + iii. the payment of the cost of replacing the goods or of acquiring equivalent goods; + + iv. the payment of the cost of having the goods repaired; or + + b. in the case of services: + + i. the supplying of the services again; or + + ii. the payment of the cost of having the services supplied again. + + 7. Termination. + + a. This Licence and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this Licence. Individuals or entities who have received Derivative Works or Collective Works from You under this Licence, however, will not have their licences terminated provided such individuals or entities remain in full compliance with those licences. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this Licence. + + b. Subject to the above terms and conditions, the licence granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different licence terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this Licence (or any other licence that has been, or is required to be, granted under the terms of this Licence), and this Licence will continue in full force and effect unless terminated as stated above. + + 8. Miscellaneous. + + a. Each time You publish, communicate to the public, distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a licence to the Work on the same terms and conditions as the licence granted to You under this Licence. + + b. Each time You publish, communicate to the public, distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a licence to the original Work on the same terms and conditions as the licence granted to You under this Licence. + + c. If any provision of this Licence is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Licence, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + + d. No term or provision of this Licence shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + + e. This Licence constitutes the entire agreement between the parties with respect to the Work licensed here. To the full extent permitted by applicable law, there are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This Licence may not be modified without the mutual written agreement of the Licensor and You. + + f. The construction, validity and performance of this Licence shall be governed by the laws in force in New South Wales, Australia. + + Creative Commons is not a party to this Licence, and, to the full extent permitted by applicable law, makes no representation or warranty whatsoever in connection with the Work. To the full extent permitted by applicable law, Creative Commons will not be liable to You or any party on any legal theory (including, without limitation, negligence) for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this licence. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at https://creativecommons.org/. json: cc-by-2.5-au.json - yml: cc-by-2.5-au.yml + yaml: cc-by-2.5-au.yml html: cc-by-2.5-au.html - text: cc-by-2.5-au.LICENSE + license: cc-by-2.5-au.LICENSE - license_key: cc-by-3.0 + category: Permissive spdx_license_key: CC-BY-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Creative Commons Legal Code + + Attribution 3.0 Unported + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR + DAMAGES RESULTING FROM ITS USE. + + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE + COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY + COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS + AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE + TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY + BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS + CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND + CONDITIONS. + + 1. Definitions + + a. "Adaptation" means a work based upon the Work, or upon the Work and + other pre-existing works, such as a translation, adaptation, + derivative work, arrangement of music or other alterations of a + literary or artistic work, or phonogram or performance and includes + cinematographic adaptations or any other form in which the Work may be + recast, transformed, or adapted including in any form recognizably + derived from the original, except that a work that constitutes a + Collection will not be considered an Adaptation for the purpose of + this License. For the avoidance of doubt, where the Work is a musical + work, performance or phonogram, the synchronization of the Work in + timed-relation with a moving image ("synching") will be considered an + Adaptation for the purpose of this License. + b. "Collection" means a collection of literary or artistic works, such as + encyclopedias and anthologies, or performances, phonograms or + broadcasts, or other works or subject matter other than works listed + in Section 1(f) below, which, by reason of the selection and + arrangement of their contents, constitute intellectual creations, in + which the Work is included in its entirety in unmodified form along + with one or more other contributions, each constituting separate and + independent works in themselves, which together are assembled into a + collective whole. A work that constitutes a Collection will not be + considered an Adaptation (as defined above) for the purposes of this + License. + c. "Distribute" means to make available to the public the original and + copies of the Work or Adaptation, as appropriate, through sale or + other transfer of ownership. + d. "Licensor" means the individual, individuals, entity or entities that + offer(s) the Work under the terms of this License. + e. "Original Author" means, in the case of a literary or artistic work, + the individual, individuals, entity or entities who created the Work + or if no individual or entity can be identified, the publisher; and in + addition (i) in the case of a performance the actors, singers, + musicians, dancers, and other persons who act, sing, deliver, declaim, + play in, interpret or otherwise perform literary or artistic works or + expressions of folklore; (ii) in the case of a phonogram the producer + being the person or legal entity who first fixes the sounds of a + performance or other sounds; and, (iii) in the case of broadcasts, the + organization that transmits the broadcast. + f. "Work" means the literary and/or artistic work offered under the terms + of this License including without limitation any production in the + literary, scientific and artistic domain, whatever may be the mode or + form of its expression including digital form, such as a book, + pamphlet and other writing; a lecture, address, sermon or other work + of the same nature; a dramatic or dramatico-musical work; a + choreographic work or entertainment in dumb show; a musical + composition with or without words; a cinematographic work to which are + assimilated works expressed by a process analogous to cinematography; + a work of drawing, painting, architecture, sculpture, engraving or + lithography; a photographic work to which are assimilated works + expressed by a process analogous to photography; a work of applied + art; an illustration, map, plan, sketch or three-dimensional work + relative to geography, topography, architecture or science; a + performance; a broadcast; a phonogram; a compilation of data to the + extent it is protected as a copyrightable work; or a work performed by + a variety or circus performer to the extent it is not otherwise + considered a literary or artistic work. + g. "You" means an individual or entity exercising rights under this + License who has not previously violated the terms of this License with + respect to the Work, or who has received express permission from the + Licensor to exercise rights under this License despite a previous + violation. + h. "Publicly Perform" means to perform public recitations of the Work and + to communicate to the public those public recitations, by any means or + process, including by wire or wireless means or public digital + performances; to make available to the public Works in such a way that + members of the public may access these Works from a place and at a + place individually chosen by them; to perform the Work to the public + by any means or process and the communication to the public of the + performances of the Work, including by public digital performance; to + broadcast and rebroadcast the Work by any means including signs, + sounds or images. + i. "Reproduce" means to make copies of the Work by any means including + without limitation by sound or visual recordings and the right of + fixation and reproducing fixations of the Work, including storage of a + protected performance or phonogram in digital form or other electronic + medium. + + 2. Fair Dealing Rights. Nothing in this License is intended to reduce, + limit, or restrict any uses free from copyright or rights arising from + limitations or exceptions that are provided for in connection with the + copyright protection under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, + Licensor hereby grants You a worldwide, royalty-free, non-exclusive, + perpetual (for the duration of the applicable copyright) license to + exercise the rights in the Work as stated below: + + a. to Reproduce the Work, to incorporate the Work into one or more + Collections, and to Reproduce the Work as incorporated in the + Collections; + b. to create and Reproduce Adaptations provided that any such Adaptation, + including any translation in any medium, takes reasonable steps to + clearly label, demarcate or otherwise identify that changes were made + to the original Work. For example, a translation could be marked "The + original work was translated from English to Spanish," or a + modification could indicate "The original work has been modified."; + c. to Distribute and Publicly Perform the Work including as incorporated + in Collections; and, + d. to Distribute and Publicly Perform Adaptations. + e. For the avoidance of doubt: + + i. Non-waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme cannot be waived, the Licensor + reserves the exclusive right to collect such royalties for any + exercise by You of the rights granted under this License; + ii. Waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme can be waived, the Licensor waives the + exclusive right to collect such royalties for any exercise by You + of the rights granted under this License; and, + iii. Voluntary License Schemes. The Licensor waives the right to + collect royalties, whether individually or, in the event that the + Licensor is a member of a collecting society that administers + voluntary licensing schemes, via that society, from any exercise + by You of the rights granted under this License. + + The above rights may be exercised in all media and formats whether now + known or hereafter devised. The above rights include the right to make + such modifications as are technically necessary to exercise the rights in + other media and formats. Subject to Section 8(f), all rights not expressly + granted by Licensor are hereby reserved. + + 4. Restrictions. The license granted in Section 3 above is expressly made + subject to and limited by the following restrictions: + + a. You may Distribute or Publicly Perform the Work only under the terms + of this License. You must include a copy of, or the Uniform Resource + Identifier (URI) for, this License with every copy of the Work You + Distribute or Publicly Perform. You may not offer or impose any terms + on the Work that restrict the terms of this License or the ability of + the recipient of the Work to exercise the rights granted to that + recipient under the terms of the License. You may not sublicense the + Work. You must keep intact all notices that refer to this License and + to the disclaimer of warranties with every copy of the Work You + Distribute or Publicly Perform. When You Distribute or Publicly + Perform the Work, You may not impose any effective technological + measures on the Work that restrict the ability of a recipient of the + Work from You to exercise the rights granted to that recipient under + the terms of the License. This Section 4(a) applies to the Work as + incorporated in a Collection, but this does not require the Collection + apart from the Work itself to be made subject to the terms of this + License. If You create a Collection, upon notice from any Licensor You + must, to the extent practicable, remove from the Collection any credit + as required by Section 4(b), as requested. If You create an + Adaptation, upon notice from any Licensor You must, to the extent + practicable, remove from the Adaptation any credit as required by + Section 4(b), as requested. + b. If You Distribute, or Publicly Perform the Work or any Adaptations or + Collections, You must, unless a request has been made pursuant to + Section 4(a), keep intact all copyright notices for the Work and + provide, reasonable to the medium or means You are utilizing: (i) the + name of the Original Author (or pseudonym, if applicable) if supplied, + and/or if the Original Author and/or Licensor designate another party + or parties (e.g., a sponsor institute, publishing entity, journal) for + attribution ("Attribution Parties") in Licensor's copyright notice, + terms of service or by other reasonable means, the name of such party + or parties; (ii) the title of the Work if supplied; (iii) to the + extent reasonably practicable, the URI, if any, that Licensor + specifies to be associated with the Work, unless such URI does not + refer to the copyright notice or licensing information for the Work; + and (iv) , consistent with Section 3(b), in the case of an Adaptation, + a credit identifying the use of the Work in the Adaptation (e.g., + "French translation of the Work by Original Author," or "Screenplay + based on original Work by Original Author"). The credit required by + this Section 4 (b) may be implemented in any reasonable manner; + provided, however, that in the case of a Adaptation or Collection, at + a minimum such credit will appear, if a credit for all contributing + authors of the Adaptation or Collection appears, then as part of these + credits and in a manner at least as prominent as the credits for the + other contributing authors. For the avoidance of doubt, You may only + use the credit required by this Section for the purpose of attribution + in the manner set out above and, by exercising Your rights under this + License, You may not implicitly or explicitly assert or imply any + connection with, sponsorship or endorsement by the Original Author, + Licensor and/or Attribution Parties, as appropriate, of You or Your + use of the Work, without the separate, express prior written + permission of the Original Author, Licensor and/or Attribution + Parties. + c. Except as otherwise agreed in writing by the Licensor or as may be + otherwise permitted by applicable law, if You Reproduce, Distribute or + Publicly Perform the Work either by itself or as part of any + Adaptations or Collections, You must not distort, mutilate, modify or + take other derogatory action in relation to the Work which would be + prejudicial to the Original Author's honor or reputation. Licensor + agrees that in those jurisdictions (e.g. Japan), in which any exercise + of the right granted in Section 3(b) of this License (the right to + make Adaptations) would be deemed to be a distortion, mutilation, + modification or other derogatory action prejudicial to the Original + Author's honor and reputation, the Licensor will waive or not assert, + as appropriate, this Section, to the fullest extent permitted by the + applicable national law, to enable You to reasonably exercise Your + right under Section 3(b) of this License (right to make Adaptations) + but not otherwise. + + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR + OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY + KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, + INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, + FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF + LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, + WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION + OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE + LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR + ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES + ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS + BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + a. This License and the rights granted hereunder will terminate + automatically upon any breach by You of the terms of this License. + Individuals or entities who have received Adaptations or Collections + from You under this License, however, will not have their licenses + terminated provided such individuals or entities remain in full + compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will + survive any termination of this License. + b. Subject to the above terms and conditions, the license granted here is + perpetual (for the duration of the applicable copyright in the Work). + Notwithstanding the above, Licensor reserves the right to release the + Work under different license terms or to stop distributing the Work at + any time; provided, however that any such election will not serve to + withdraw this License (or any other license that has been, or is + required to be, granted under the terms of this License), and this + License will continue in full force and effect unless terminated as + stated above. + + 8. Miscellaneous + + a. Each time You Distribute or Publicly Perform the Work or a Collection, + the Licensor offers to the recipient a license to the Work on the same + terms and conditions as the license granted to You under this License. + b. Each time You Distribute or Publicly Perform an Adaptation, Licensor + offers to the recipient a license to the original Work on the same + terms and conditions as the license granted to You under this License. + c. If any provision of this License is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability of + the remainder of the terms of this License, and without further action + by the parties to this agreement, such provision shall be reformed to + the minimum extent necessary to make such provision valid and + enforceable. + d. No term or provision of this License shall be deemed waived and no + breach consented to unless such waiver or consent shall be in writing + and signed by the party to be charged with such waiver or consent. + e. This License constitutes the entire agreement between the parties with + respect to the Work licensed here. There are no understandings, + agreements or representations with respect to the Work not specified + here. Licensor shall not be bound by any additional provisions that + may appear in any communication from You. This License may not be + modified without the mutual written agreement of the Licensor and You. + f. The rights granted under, and the subject matter referenced, in this + License were drafted utilizing the terminology of the Berne Convention + for the Protection of Literary and Artistic Works (as amended on + September 28, 1979), the Rome Convention of 1961, the WIPO Copyright + Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 + and the Universal Copyright Convention (as revised on July 24, 1971). + These rights and subject matter take effect in the relevant + jurisdiction in which the License terms are sought to be enforced + according to the corresponding provisions of the implementation of + those treaty provisions in the applicable national law. If the + standard suite of rights granted under applicable copyright law + includes additional rights not granted under this License, such + additional rights are deemed to be included in the License; this + License is not intended to restrict the license of any rights under + applicable law. + + + Creative Commons Notice + + Creative Commons is not a party to this License, and makes no warranty + whatsoever in connection with the Work. Creative Commons will not be + liable to You or any party on any legal theory for any damages + whatsoever, including without limitation any general, special, + incidental or consequential damages arising in connection to this + license. Notwithstanding the foregoing two (2) sentences, if Creative + Commons has expressly identified itself as the Licensor hereunder, it + shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the + Work is licensed under the CCPL, Creative Commons does not authorize + the use by either party of the trademark "Creative Commons" or any + related trademark or logo of Creative Commons without the prior + written consent of Creative Commons. Any permitted use will be in + compliance with Creative Commons' then-current trademark usage + guidelines, as may be published on its website or otherwise made + available upon request from time to time. For the avoidance of doubt, + this trademark restriction does not form part of this License. + + Creative Commons may be contacted at https://creativecommons.org/. json: cc-by-3.0.json - yml: cc-by-3.0.yml + yaml: cc-by-3.0.yml html: cc-by-3.0.html - text: cc-by-3.0.LICENSE + license: cc-by-3.0.LICENSE - license_key: cc-by-3.0-at + category: Permissive spdx_license_key: CC-BY-3.0-AT other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Creative Commons Namensnennung 3.0 Österreich + + CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. + + Lizenz + + DER GEGENSTAND DIESER LIZENZ (WIE UNTER "SCHUTZGEGENSTAND" DEFINIERT) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE COMMONS PUBLIC LICENSE ("CCPL", "LIZENZ" ODER "LIZENZVERTRAG") ZUR VERFÜGUNG GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER ANDERE GESETZE GESCHÜTZT. JEDE FORM DER NUTZUNG DES SCHUTZGEGENSTANDES, DIE NICHT AUFGRUND DIESER LIZENZ ODER DURCH GESETZE GESTATTET IST, IST UNZULÄSSIG. + + DURCH DIE AUSÜBUNG EINES DURCH DIESE LIZENZ GEWÄHRTEN RECHTS AN DEM SCHUTZGEGENSTAND ERKLÄREN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH EINVERSTANDEN. SOWEIT DIESE LIZENZ ALS LIZENZVERTRAG ANZUSEHEN IST, GEWÄHRT IHNEN DER LIZENZGEBER DIE IN DER LIZENZ GENANNTEN RECHTE UNENTGELTLICH UND IM AUSTAUSCH DAFÜR, DASS SIE DAS GEBUNDENSEIN AN DIE LIZENZBEDINGUNGEN AKZEPTIEREN. + + 1. Definitionen + + a. Der Begriff "Bearbeitung" im Sinne dieser Lizenz bezeichnet das Ergebnis jeglicher Art von Veränderung des Schutzgegenstandes, solange dieses erkennbar vom Schutzgegenstand abgeleitet wurde. Dies kann insbesondere auch eine Umgestaltung, Änderung, Anpassung, Übersetzung oder Heranziehung des Schutzgegenstandes zur Vertonung von Laufbildern sein. Nicht als Bearbeitung des Schutzgegenstandes gelten seine Aufnahme in eine Sammlung oder ein Sammelwerk und die freie Nutzung des Schutzgegenstandes. + + b. Der Begriff "Sammelwerk" im Sinne dieser Lizenz meint eine Zusammenstellung von literarischen, künstlerischen oder wissenschaftlichen Inhalten zu einem einheitlichen Ganzen, sofern diese Zusammenstellung aufgrund von Auswahl und Anordnung der darin enthaltenen selbständigen Elemente eine eigentümliche geistige Schöpfung darstellt, unabhängig davon, ob die Elemente systematisch oder methodisch angelegt und dadurch einzeln zugänglich sind oder nicht. + + c. "Verbreiten" im Sinne dieser Lizenz bedeutet, den Schutzgegenstand oder Bearbeitungen im Original oder in Form von Vervielfältigungsstücken, mithin in körperlich fixierter Form der Öffentlichkeit zugänglich zu machen oder in Verkehr zu bringen. + + d. Der "Lizenzgeber" im Sinne dieser Lizenz ist diejenige natürliche oder juristische Person oder Gruppe, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet und insoweit als Rechteinhaberin auftritt. + + e. "Rechteinhaber" im Sinne dieser Lizenz ist der Urheber des Schutzgegenstandes oder jede andere natürliche oder juristische Person, die am Schutzgegenstand ein Immaterialgüterrecht erlangt hat, welches die in Abschnitt 3 genannten Handlungen erfasst und eine Erteilung, Übertragung oder Einräumung von Nutzungsbewilligungen bzw Nutzungsrechten an Dritte erlaubt. + + f. Der Begriff "Schutzgegenstand" bezeichnet in dieser Lizenz den literarischen, künstlerischen oder wissenschaftlichen Inhalt, der unter den Bedingungen dieser Lizenz angeboten wird. Das kann insbesondere eine eigentümliche geistige Schöpfung jeglicher Art oder ein Werk der kleinen Münze, ein nachgelassenes Werk oder auch ein Lichtbild oder anderes Objekt eines verwandten Schutzrechts sein, unabhängig von der Art seiner Fixierung und unabhängig davon, auf welche Weise jeweils eine Wahrnehmung erfolgen kann, gleichviel ob in analoger oder digitaler Form. Soweit Datenbanken oder Zusammenstellungen von Daten einen immaterialgüterrechtlichen Schutz eigener Art genießen, unterfallen auch sie dem Begriff „Schutzgegenstand“ im Sinne dieser Lizenz. + + g. Mit "Sie" bzw. "Ihnen" ist die natürliche oder juristische Person gemeint, die in dieser Lizenz im Abschnitt 3 genannte Nutzungen des Schutzgegenstandes vornimmt und zuvor in Hinblick auf den Schutzgegenstand nicht gegen Bedingungen dieser Lizenz verstoßen oder aber die ausdrückliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese Lizenz gewährte Nutzungsbewilligung trotz eines vorherigen Verstoßes auszuüben. + + h. Unter "Öffentlich Wiedergeben" im Sinne dieser Lizenz sind Wahrnehmbarmachungen des Schutzgegenstandes in unkörperlicher Form zu verstehen, die für eine Mehrzahl von Mitgliedern der Öffentlichkeit bestimmt sind und mittels öffentlicher Wiedergabe in Form von Vortrag, Aufführung, Vorführung, Darbietung, Sendung, Weitersendung oder zeit- und ortsunabhängiger Zurverfügungstellung erfolgen, unabhängig von den zum Einsatz kommenden Techniken und Verfahren, einschließlich drahtgebundener oder drahtloser Mittel und Einstellen in das Internet. + + i. "Vervielfältigen" im Sinne dieser Lizenz bedeutet, gleichviel in welchem Verfahren, auf welchem Träger, in welcher Menge und ob vorübergehend oder dauerhaft, Vervielfältigungsstücke des Schutzgegenstandes herzustellen, insbesondere durch Ton- oder Bildaufzeichnungen, und umfasst auch das erstmalige Festhalten des Schutzgegenstandes oder dessen Wahrnehmbarmachung auf Mitteln der wiederholbaren Wiedergabe sowie das Herstellen von Vervielfältigungsstücken dieser Festhaltung, sowie die Speicherung einer geschützten Darbietung oder eines Bild- und/oder Schallträgers in digitaler Form oder auf einem anderen elektronischen Medium. + + 2. Beschränkungen der Verwertungsrechte + + Diese Lizenz ist in keiner Weise darauf gerichtet, Befugnisse zur Nutzung des Schutzgegenstandes zu vermindern, zu beschränken oder zu vereiteln, die sich aus den Beschränkungen der Verwertungsrechte, anderen Beschränkungen der Ausschließlichkeitsrechte des Rechtsinhabers oder anderen entsprechenden Rechtsnormen oder sich aus dem Fehlen eines immaterialgüterrechtlichen Schutzes ergeben. + + 3. Lizenzierung + + Unter den Bedingungen dieser Lizenz erteilt Ihnen der Lizenzgeber - unbeschadet unverzichtbarer Rechte und vorbehaltlich des Abschnitts 3.e) - die vergütungsfreie, räumlich und zeitlich (für die Dauer des Urheberrechts oder verwandten Schutzrechts am Schutzgegenstand) unbeschränkte Nutzungsbewilligung, den Schutzgegenstand in der folgenden Art und Weise zu nutzen: + + a. Den Schutzgegenstand in beliebiger Form und Menge zu vervielfältigen, ihn in Sammelwerke zu integrieren und ihn als Teil solcher Sammelwerke zu vervielfältigen; + + b. Den Schutzgegenstand zu bearbeiten, einschließlich Übersetzungen unter Nutzung jedweder Medien anzufertigen, sofern deutlich erkennbar gemacht wird, dass es sich um eine Bearbeitung handelt; + + c. Den Schutzgegenstand, allein oder in Sammelwerke aufgenommen, öffentlich wiederzugeben und zu verbreiten; und + + d. Bearbeitungen des Schutzgegenstandes zu veröffentlichen, öffentlich wiederzugeben und zu verbreiten. + + e. Bezüglich der Vergütung für die Nutzung des Schutzgegenstandes gilt Folgendes: + + i. Unverzichtbare gesetzliche Vergütungsansprüche: Soweit unverzichtbare Vergütungsansprüche im Gegenzug für gesetzliche Lizenzen vorgesehen oder Pauschalabgabensysteme (zum Beispiel für Leermedien) vorhanden sind, behält sich der Lizenzgeber das ausschließliche Recht vor, die entsprechenden Vergütungsansprüche für jede Ausübung eines Rechts aus dieser Lizenz durch Sie geltend zu machen. + + ii. Vergütung bei Zwangslizenzen: Sofern Zwangslizenzen außerhalb dieser Lizenz vorgesehen sind und zustande kommen, verzichtet der Lizenzgeber für alle Fälle einer lizenzgerechten Nutzung des Schutzgegenstandes durch Sie auf jegliche Vergütung. + + iii. Vergütung in sonstigen Fällen: Bezüglich lizenzgerechter Nutzung des Schutzgegenstandes durch Sie, die nicht unter die beiden vorherigen Abschnitte (i) und (ii) fällt, verzichtet der Lizenzgeber auf jegliche Vergütung, unabhängig davon, ob eine Geltendmachung der Vergütungsansprüche durch ihn selbst oder nur durch eine Verwertungsgesellschaft möglich wäre. + + Die vorgenannte Nutzungsbewilligung wird für alle bekannten sowie alle noch nicht bekannten Nutzungsarten eingeräumt. Sie beinhaltet auch das Recht, solche Änderungen am Schutzgegenstand vorzunehmen, die für bestimmte nach dieser Lizenz zulässige Nutzungen technisch erforderlich sind. Alle sonstigen Rechte, die über diesen Abschnitt hinaus nicht ausdrücklich vom Lizenzgeber eingeräumt werden, bleiben diesem allein vorbehalten. Soweit Datenbanken oder Zusammenstellungen von Daten Schutzgegenstand dieser Lizenz oder Teil dessen sind und einen immaterialgüterrechtlichen Schutz eigener Art genießen, verzichtet der Lizenzgeber auf die Geltendmachung sämtlicher daraus resultierender Rechte. + + 4. Bedingungen + + Die Erteilung der Nutzungsbewilligung gemäß Abschnitt 3 dieser Lizenz erfolgt ausdrücklich nur unter den folgenden Bedingungen: + + a. Sie dürfen den Schutzgegenstand ausschließlich unter den Bedingungen dieser Lizenz verbreiten oder öffentlich wiedergeben. Sie müssen dabei stets eine Kopie dieser Lizenz oder deren vollständige Internetadresse in Form des Uniform-Resource-Identifier (URI) beifügen. Sie dürfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen dieser Lizenz oder die durch diese Lizenz gewährten Rechte beschränken. Sie dürfen den Schutzgegenstand nicht unterlizenzieren. Bei jeder Kopie des Schutzgegenstandes, die Sie verbreiten oder öffentlich wiedergeben, müssen Sie alle Hinweise unverändert lassen, die auf diese Lizenz und den Haftungsausschluss hinweisen. Wenn Sie den Schutzgegenstand verbreiten oder öffentlich wiedergeben, dürfen Sie (in Bezug auf den Schutzgegenstand) keine technischen Maßnahmen ergreifen, die den Nutzer des Schutzgegenstandes in der Ausübung der ihm durch diese Lizenz gewährten Rechte behindern können. Dasselbe gilt auch für den Fall, dass der Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt dieser Lizenz unterstellt werden muss. Sofern Sie ein Sammelwerk erstellen, müssen Sie - soweit dies praktikabel ist - auf die Mitteilung eines Lizenzgebers hin aus dem Sammelwerk die in Abschnitt 4.b) aufgezählten Hinweise entfernen. Wenn Sie eine Bearbeitung vornehmen, müssen Sie – soweit dies praktikabel ist – auf die Mitteilung eines Lizenzgebers hin von der Bearbeitung die in Abschnitt 4.b) aufgezählten Hinweise entfernen. + + b. Die Verbreitung und die öffentliche Wiedergabe des Schutzgegenstandes oder auf ihm aufbauender Inhalte oder ihn enthaltender Sammelwerke ist Ihnen nur unter der Bedingung gestattet, dass Sie, vorbehaltlich etwaiger Mitteilungen im Sinne von Abschnitt 4.a), alle dazu gehörenden Rechtevermerke unberührt lassen. Sie sind verpflichtet, die Urheberschaft oder die Rechteinhaberschaft in einer der Nutzung entsprechenden, angemessenen Form anzuerkennen, indem Sie selbst – soweit bekannt – Folgendes angeben: + + i. Den Namen (oder das Pseudonym, falls ein solches verwendet wird) Rechteinhabers, und/oder falls der Lizenzgeber im Rechtevermerk, in den Nutzungsbedingungen oder auf andere angemessene Weise eine Zuschreibung an Dritte vorgenommen hat (z.B. an eine Stiftung, ein Verlagshaus oder eine Zeitung) („Zuschreibungsempfänger“), Namen bzw. Bezeichnung dieses oder dieser Dritten; + + ii. den Titel des Inhaltes; + + iii. in einer praktikablen Form den Uniform-Resource-Identifier (URI, z.B. Internetadresse), den der Lizenzgeber zum Schutzgegenstand angegeben hat, es sei denn, dieser URI verweist nicht auf den Rechtevermerk oder die Lizenzinformationen zum Schutzgegenstand; + + iv. und im Falle einer Bearbeitung des Schutzgegenstandes in Übereinstimmung mit Abschnitt 3.b) einen Hinweis darauf, dass es sich um eine Bearbeitung handelt. + + Die nach diesem Abschnitt 4.b) erforderlichen Angaben können in jeder angemessenen Form gemacht werden; im Falle einer Bearbeitung des Schutzgegenstandes oder eines Sammelwerkes müssen diese Angaben das Minimum darstellen und bei gemeinsamer Nennung aller Beitragenden dergestalt erfolgen, dass sie zumindest ebenso hervorgehoben sind wie die Hinweise auf die übrigen Rechteinhaber. Die Angaben nach diesem Abschnitt dürfen Sie ausschließlich zur Angabe der Rechteinhaberschaft in der oben bezeichneten Weise verwenden. Durch die Ausübung Ihrer Rechte aus dieser Lizenz dürfen Sie ohne eine vorherige, separat und schriftlich vorliegende Zustimmung des Urhebers, des Lizenzgebers und/oder des Zuschreibungsempfängers weder implizit noch explizit irgendeine Verbindung mit dem oder eine Unterstützung oder Billigung durch den Urheber, den Lizenzgeber oder den Zuschreibungsempfänger andeuten oder erklären. + + c. Die oben unter 4.a) und b) genannten Einschränkungen gelten nicht für solche Teile des Schutzgegenstandes, die allein deshalb unter den Schutzgegenstandsbegriff fallen, weil sie als Datenbanken oder Zusammenstellungen von Daten einen immaterialgüterrechtlichen Schutz eigener Art genießen. + + d. (Urheber)Persönlichkeitsrechte bleiben - soweit sie bestehen - von dieser Lizenz unberührt. + + 5. Gewährleistung + + SOFERN KEINE ANDERS LAUTENDE, SCHRIFTLICHE VEREINBARUNG ZWISCHEN DEM LIZENZGEBER UND IHNEN GESCHLOSSEN WURDE UND SOWEIT MÄNGEL NICHT ARGLISTIG VERSCHWIEGEN WURDEN, BIETET DER LIZENZGEBER DEN SCHUTZGEGENSTAND UND DIE ERTEILUNG DER NUTZUNGSBEWILLIGUNG UNTER AUSSCHLUSS JEGLICHER GEWÄHRLEISTUNG AN UND ÜBERNIMMT WEDER AUSDRÜCKLICH NOCH KONKLUDENT GARANTIEN IRGENDEINER ART. DIES UMFASST INSBESONDERE DAS FREISEIN VON SACH- UND RECHTSMÄNGELN, UNABHÄNGIG VON DEREN ERKENNBARKEIT FÜR DEN LIZENZGEBER, DIE VERKEHRSFÄHIGKEIT DES SCHUTZGEGENSTANDES, SEINE VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK SOWIE DIE KORREKTHEIT VON BESCHREIBUNGEN. + + 6. Haftungsbeschränkung + + ÜBER DIE IN ZIFFER 5 GENANNTE GEWÄHRLEISTUNG HINAUS HAFTET DER LIZENZGEBER IHNEN GEGENÜBER FÜR SCHÄDEN JEGLICHER ART NUR BEI GROBER FAHRLÄSSIGKEIT ODER VORSATZ, UND ÜBERNIMMT DARÜBER HINAUS KEINERLEI FREIWILLIGE HAFTUNG FÜR FOLGE- ODER ANDERE SCHÄDEN, AUCH WENN ER ÜBER DIE MÖGLICHKEIT IHRES EINTRITTS UNTERRICHTET WURDE. + + 7. Erlöschen + + a. Diese Lizenz und die durch sie erteilte Nutzungsbewilligung erlöschen mit Wirkung für die Zukunft im Falle eines Verstoßes gegen die Lizenzbedingungen durch Sie, ohne dass es dazu der Kenntnis des Lizenzgebers vom Verstoß oder einer weiteren Handlung einer der Vertragsparteien bedarf. Mit natürlichen oder juristischen Personen, die Bearbeitungen des Schutzgegenstandes oder diesen enthaltende Sammelwerke sowie entsprechende Vervielfältigungsstücke unter den Bedingungen dieser Lizenz von Ihnen erhalten haben, bestehen nachträglich entstandene Lizenzbeziehungen jedoch solange weiter, wie die genannten Personen sich ihrerseits an sämtliche Lizenzbedingungen halten. Darüber hinaus gelten die Ziffern 1, 2, 5, 6, 7, und 8 auch nach einem Erlöschen dieser Lizenz fort. + + b. Vorbehaltlich der oben genannten Bedingungen gilt diese Lizenz unbefristet bis der rechtliche Schutz für den Schutzgegenstand ausläuft. Davon abgesehen behält der Lizenzgeber das Recht, den Schutzgegenstand unter anderen Lizenzbedingungen anzubieten oder die eigene Weitergabe des Schutzgegenstandes jederzeit einzustellen, solange die Ausübung dieses Rechts nicht einer Kündigung oder einem Widerruf dieser Lizenz (oder irgendeiner Weiterlizenzierung, die auf Grundlage dieser Lizenz bereits erfolgt ist bzw. zukünftig noch erfolgen muss) dient und diese Lizenz unter Berücksichtigung der oben zum Erlöschen genannten Bedingungen vollumfänglich wirksam bleibt. + + 8. Sonstige Bestimmungen + + a. Jedes Mal wenn Sie den Schutzgegenstand für sich genommen oder als Teil eines Sammelwerkes verbreiten oder öffentlich wiedergeben, bietet der Lizenzgeber dem Empfänger eine Lizenz zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz. + + b. Jedes Mal wenn Sie eine Bearbeitung des Schutzgegenstandes verbreiten oder öffentlich wiedergeben, bietet der Lizenzgeber dem Empfänger eine Lizenz am ursprünglichen Schutzgegenstand zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz. + + c. Sollte eine Bestimmung dieser Lizenz unwirksam sein, so bleibt davon die Wirksamkeit der Lizenz im Übrigen unberührt. + + d. Keine Bestimmung dieser Lizenz soll als abbedungen und kein Verstoß gegen sie als zulässig gelten, solange die von dem Verzicht oder von dem Verstoß betroffene Seite nicht schriftlich zugestimmt hat. + + e. Diese Lizenz (zusammen mit in ihr ausdrücklich vorgesehenen Erlaubnissen, Mitteilungen und Zustimmungen, soweit diese tatsächlich vorliegen) stellt die vollständige Vereinbarung zwischen dem Lizenzgeber und Ihnen in Bezug auf den Schutzgegenstand dar. Es bestehen keine Abreden, Vereinbarungen oder Erklärungen in Bezug auf den Schutzgegenstand, die in dieser Lizenz nicht genannt sind. Rechtsgeschäftliche Änderungen des Verhältnisses zwischen dem Lizenzgeber und Ihnen sind nur über Modifikationen dieser Lizenz möglich. Der Lizenzgeber ist an etwaige zusätzliche, einseitig durch Sie übermittelte Bestimmungen nicht gebunden. Diese Lizenz kann nur durch schriftliche Vereinbarung zwischen Ihnen und dem Lizenzgeber modifiziert werden. Derlei Modifikationen wirken ausschließlich zwischen dem Lizenzgeber und Ihnen und wirken sich nicht auf die Dritten gemäß 8.a) und b) angebotenen Lizenzen aus. + + f. Sofern zwischen Ihnen und dem Lizenzgeber keine anderweitige Vereinbarung getroffen wurde und soweit Wahlfreiheit besteht, findet auf diesen Lizenzvertrag das Recht der Republik Österreich Anwendung. + + Creative Commons Notice + + Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr oder dergleichen in Bezug auf den Schutzgegenstand. Creative Commons haftet Ihnen oder einer anderen Partei unter keinem rechtlichen Gesichtspunkt für irgendwelche Schäden, die - abstrakt oder konkret, zufällig oder vorhersehbar - im Zusammenhang mit dieser Lizenz entstehen. Unbeschadet der vorangegangen beiden Sätze, hat Creative Commons alle Rechte und Pflichten eines Lizenzgebers, wenn es sich ausdrücklich als Lizenzgeber im Sinne dieser Lizenz bezeichnet. + + Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. + + Creative Commons kann kontaktiert werden über https://creativecommons.org/. json: cc-by-3.0-at.json - yml: cc-by-3.0-at.yml + yaml: cc-by-3.0-at.yml html: cc-by-3.0-at.html - text: cc-by-3.0-at.LICENSE + license: cc-by-3.0-at.LICENSE - license_key: cc-by-3.0-de + category: Permissive spdx_license_key: CC-BY-3.0-DE other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Creative Commons Namensnennung 3.0 Deutschland + + CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. + + Lizenz + + DER GEGENSTAND DIESER LIZENZ (WIE UNTER "SCHUTZGEGENSTAND" DEFINIERT) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE COMMONS PUBLIC LICENSE ("CCPL", "LIZENZ" ODER "LIZENZVERTRAG") ZUR VERFÜGUNG GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER ANDERE GESETZE GESCHÜTZT. JEDE FORM DER NUTZUNG DES SCHUTZGEGENSTANDES, DIE NICHT AUFGRUND DIESER LIZENZ ODER DURCH GESETZE GESTATTET IST, IST UNZULÄSSIG. + + DURCH DIE AUSÜBUNG EINES DURCH DIESE LIZENZ GEWÄHRTEN RECHTS AN DEM SCHUTZGEGENSTAND ERKLÄREN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH EINVERSTANDEN. SOWEIT DIESE LIZENZ ALS LIZENZVERTRAG ANZUSEHEN IST, GEWÄHRT IHNEN DER LIZENZGEBER DIE IN DER LIZENZ GENANNTEN RECHTE UNENTGELTLICH UND IM AUSTAUSCH DAFÜR, DASS SIE DAS GEBUNDENSEIN AN DIE LIZENZBEDINGUNGEN AKZEPTIEREN. + + 1. Definitionen + + a. Der Begriff "Abwandlung" im Sinne dieser Lizenz bezeichnet das Ergebnis jeglicher Art von Veränderung des Schutzgegenstandes, solange die eigenpersönlichen Züge des Schutzgegenstandes darin nicht verblassen und daran eigene Schutzrechte entstehen. Das kann insbesondere eine Bearbeitung, Umgestaltung, Änderung, Anpassung, Übersetzung oder Heranziehung des Schutzgegenstandes zur Vertonung von Laufbildern sein. Nicht als Abwandlung des Schutzgegenstandes gelten seine Aufnahme in eine Sammlung oder ein Sammelwerk und die freie Benutzung des Schutzgegenstandes. + + b. Der Begriff "Sammelwerk" im Sinne dieser Lizenz meint eine Zusammenstellung von literarischen, künstlerischen oder wissenschaftlichen Inhalten, sofern diese Zusammenstellung aufgrund von Auswahl und Anordnung der darin enthaltenen selbständigen Elemente eine geistige Schöpfung darstellt, unabhängig davon, ob die Elemente systematisch oder methodisch angelegt und dadurch einzeln zugänglich sind oder nicht. + + c. "Verbreiten" im Sinne dieser Lizenz bedeutet, den Schutzgegenstand oder Abwandlungen im Original oder in Form von Vervielfältigungsstücken, mithin in körperlich fixierter Form der Öffentlichkeit anzubieten oder in Verkehr zu bringen. + + d. Der "Lizenzgeber" im Sinne dieser Lizenz ist diejenige natürliche oder juristische Person oder Gruppe, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet und insoweit als Rechteinhaberin auftritt. + + e. "Rechteinhaber" im Sinne dieser Lizenz ist der Urheber des Schutzgegenstandes oder jede andere natürliche oder juristische Person oder Gruppe von Personen, die am Schutzgegenstand ein Immaterialgüterrecht erlangt hat, welches die in Abschnitt 3 genannten Handlungen erfasst und bei dem eine Einräumung von Nutzungsrechten oder eine Weiterübertragung an Dritte möglich ist. + + f. Der Begriff "Schutzgegenstand" bezeichnet in dieser Lizenz den literarischen, künstlerischen oder wissenschaftlichen Inhalt, der unter den Bedingungen dieser Lizenz angeboten wird. Das kann insbesondere eine persönliche geistige Schöpfung jeglicher Art, ein Werk der kleinen Münze, ein nachgelassenes Werk oder auch ein Lichtbild oder anderes Objekt eines verwandten Schutzrechts sein, unabhängig von der Art seiner Fixierung und unabhängig davon, auf welche Weise jeweils eine Wahrnehmung erfolgen kann, gleichviel ob in analoger oder digitaler Form. Soweit Datenbanken oder Zusammenstellungen von Daten einen immaterialgüterrechtlichen Schutz eigener Art genießen, unterfallen auch sie dem Begriff "Schutzgegenstand" im Sinne dieser Lizenz. + + g. Mit "Sie" bzw. "Ihnen" ist die natürliche oder juristische Person gemeint, die in dieser Lizenz im Abschnitt 3 genannte Nutzungen des Schutzgegenstandes vornimmt und zuvor in Hinblick auf den Schutzgegenstand nicht gegen Bedingungen dieser Lizenz verstoßen oder aber die ausdrückliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese Lizenz gewährten Nutzungsrechte trotz eines vorherigen Verstoßes auszuüben. + + h. Unter "Öffentlich Zeigen" im Sinne dieser Lizenz sind Veröffentlichungen und Präsentationen des Schutzgegenstandes zu verstehen, die für eine Mehrzahl von Mitgliedern der Öffentlichkeit bestimmt sind und in unkörperlicher Form mittels öffentlicher Wiedergabe in Form von Vortrag, Aufführung, Vorführung, Darbietung, Sendung, Weitersendung, zeit- und ortsunabhängiger Zugänglichmachung oder in körperlicher Form mittels Ausstellung erfolgen, unabhängig von bestimmten Veranstaltungen und unabhängig von den zum Einsatz kommenden Techniken und Verfahren, einschließlich drahtgebundener oder drahtloser Mittel und Einstellen in das Internet. + + i. "Vervielfältigen" im Sinne dieser Lizenz bedeutet, mittels beliebiger Verfahren Vervielfältigungsstücke des Schutzgegenstandes herzustellen, insbesondere durch Ton- oder Bildaufzeichnungen, und umfasst auch den Vorgang, erstmals körperliche Fixierungen des Schutzgegenstandes sowie Vervielfältigungsstücke dieser Fixierungen anzufertigen, sowie die Übertragung des Schutzgegenstandes auf einen Bild- oder Tonträger oder auf ein anderes elektronisches Medium, gleichviel ob in digitaler oder analoger Form. + + 2. Schranken des Immaterialgüterrechts. Diese Lizenz ist in keiner Weise darauf gerichtet, Befugnisse zur Nutzung des Schutzgegenstandes zu vermindern, zu beschränken oder zu vereiteln, die Ihnen aufgrund der Schranken des Urheberrechts oder anderer Rechtsnormen bereits ohne Weiteres zustehen oder sich aus dem Fehlen eines immaterialgüterrechtlichen Schutzes ergeben. + + 3. Einräumung von Nutzungsrechten. Unter den Bedingungen dieser Lizenz räumt Ihnen der Lizenzgeber - unbeschadet unverzichtbarer Rechte und vorbehaltlich des Abschnitts 3.e) - das vergütungsfreie, räumlich und zeitlich (für die Dauer des Schutzrechts am Schutzgegenstand) unbeschränkte einfache Recht ein, den Schutzgegenstand auf die folgenden Arten und Weisen zu nutzen ("unentgeltlich eingeräumtes einfaches Nutzungsrecht für jedermann"): + + a. den Schutzgegenstand in beliebiger Form und Menge zu vervielfältigen, ihn in Sammelwerke zu integrieren und ihn als Teil solcher Sammelwerke zu vervielfältigen; + + b. Abwandlungen des Schutzgegenstandes anzufertigen, einschließlich Übersetzungen unter Nutzung jedweder Medien, sofern deutlich erkennbar gemacht wird, dass es sich um Abwandlungen handelt; + + c. den Schutzgegenstand, allein oder in Sammelwerke aufgenommen, öffentlich zu zeigen und zu verbreiten; + + d. Abwandlungen des Schutzgegenstandes zu veröffentlichen, öffentlich zu zeigen und zu verbreiten. + + e. Bezüglich Vergütung für die Nutzung des Schutzgegenstandes gilt Folgendes: + + i. Unverzichtbare gesetzliche Vergütungsansprüche: Soweit unverzichtbare Vergütungsansprüche im Gegenzug für gesetzliche Lizenzen vorgesehen oder Pauschalabgabensysteme (zum Beispiel für Leermedien) vorhanden sind, behält sich der Lizenzgeber das ausschließliche Recht vor, die entsprechende Vergütung einzuziehen für jede Ausübung eines Rechts aus dieser Lizenz durch Sie. + + ii. Vergütung bei Zwangslizenzen: Sofern Zwangslizenzen außerhalb dieser Lizenz vorgesehen sind und zustande kommen, verzichtet der Lizenzgeber für alle Fälle einer lizenzgerechten Nutzung des Schutzgegenstandes durch Sie auf jegliche Vergütung. + + iii. Vergütung in sonstigen Fällen: Bezüglich lizenzgerechter Nutzung des Schutzgegenstandes durch Sie, die nicht unter die beiden vorherigen Abschnitte (i) und (ii) fällt, verzichtet der Lizenzgeber auf jegliche Vergütung, unabhängig davon, ob eine Einziehung der Vergütung durch ihn selbst oder nur durch eine Verwertungsgesellschaft möglich wäre. + + Das vorgenannte Nutzungsrecht wird für alle bekannten sowie für alle noch nicht bekannten Nutzungsarten eingeräumt. Es beinhaltet auch das Recht, solche Änderungen am Schutzgegenstand vorzunehmen, die für bestimmte nach dieser Lizenz zulässige Nutzungen technisch erforderlich sind. Alle sonstigen Rechte, die über diesen Abschnitt hinaus nicht ausdrücklich durch den Lizenzgeber eingeräumt werden, bleiben diesem allein vorbehalten. Soweit Datenbanken oder Zusammenstellungen von Daten Schutzgegenstand dieser Lizenz oder Teil dessen sind und einen immaterialgüterrechtlichen Schutz eigener Art genießen, verzichtet der Lizenzgeber auf sämtliche aus diesem Schutz resultierenden Rechte. + + 4. Bedingungen. Die Einräumung des Nutzungsrechts gemäß Abschnitt 3 dieser Lizenz erfolgt ausdrücklich nur unter den folgenden Bedingungen: + + a. Sie dürfen den Schutzgegenstand ausschließlich unter den Bedingungen dieser Lizenz verbreiten oder öffentlich zeigen. Sie müssen dabei stets eine Kopie dieser Lizenz oder deren vollständige Internetadresse in Form des Uniform-Resource-Identifier (URI) beifügen. Sie dürfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen dieser Lizenz oder die durch diese Lizenz gewährten Rechte beschränken. Sie dürfen den Schutzgegenstand nicht unterlizenzieren. Bei jeder Kopie des Schutzgegenstandes, die Sie verbreiten oder öffentlich zeigen, müssen Sie alle Hinweise unverändert lassen, die auf diese Lizenz und den Haftungsausschluss hinweisen. Wenn Sie den Schutzgegenstand verbreiten oder öffentlich zeigen, dürfen Sie (in Bezug auf den Schutzgegenstand) keine technischen Maßnahmen ergreifen, die den Nutzer des Schutzgegenstandes in der Ausübung der ihm durch diese Lizenz gewährten Rechte behindern können. Dieser Abschnitt 4.a) gilt auch für den Fall, dass der Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt dieser Lizenz unterstellt werden muss. Sofern Sie ein Sammelwerk erstellen, müssen Sie auf die Mitteilung eines Lizenzgebers hin aus dem Sammelwerk die in Abschnitt 4.b) aufgezählten Hinweise entfernen. Wenn Sie eine Abwandlung vornehmen, müssen Sie auf die Mitteilung eines Lizenzgebers hin von der Abwandlung die in Abschnitt 4.b) aufgezählten Hinweise entfernen. + + b. Die Verbreitung und das öffentliche Zeigen des Schutzgegenstandes oder auf ihm aufbauender Abwandlungen oder ihn enthaltender Sammelwerke ist Ihnen nur unter der Bedingung gestattet, dass Sie, vorbehaltlich etwaiger Mitteilungen im Sinne von Abschnitt 4.a), alle dazu gehörenden Rechtevermerke unberührt lassen. Sie sind verpflichtet, die Rechteinhaberschaft in einer der Nutzung entsprechenden, angemessenen Form anzuerkennen, indem Sie - soweit bekannt - Folgendes angeben: + + i. Den Namen (oder das Pseudonym, falls ein solches verwendet wird) des Rechteinhabers und / oder, falls der Lizenzgeber im Rechtevermerk, in den Nutzungsbedingungen oder auf andere angemessene Weise eine Zuschreibung an Dritte vorgenommen hat (z.B. an eine Stiftung, ein Verlagshaus oder eine Zeitung) ("Zuschreibungsempfänger"), Namen bzw. Bezeichnung dieses oder dieser Dritten; + + ii. den Titel des Inhaltes; + + iii. in einer praktikablen Form den Uniform-Resource-Identifier (URI, z.B. Internetadresse), den der Lizenzgeber zum Schutzgegenstand angegeben hat, es sei denn, dieser URI verweist nicht auf den Rechtevermerk oder die Lizenzinformationen zum Schutzgegenstand; + + iv. und im Falle einer Abwandlung des Schutzgegenstandes in Übereinstimmung mit Abschnitt 3.b) einen Hinweis darauf, dass es sich um eine Abwandlung handelt. + + Die nach diesem Abschnitt 4.b) erforderlichen Angaben können in jeder angemessenen Form gemacht werden; im Falle einer Abwandlung des Schutzgegenstandes oder eines Sammelwerkes müssen diese Angaben das Minimum darstellen und bei gemeinsamer Nennung mehrerer Rechteinhaber dergestalt erfolgen, dass sie zumindest ebenso hervorgehoben sind wie die Hinweise auf die übrigen Rechteinhaber. Die Angaben nach diesem Abschnitt dürfen Sie ausschließlich zur Angabe der Rechteinhaberschaft in der oben bezeichneten Weise verwenden. Durch die Ausübung Ihrer Rechte aus dieser Lizenz dürfen Sie ohne eine vorherige, separat und schriftlich vorliegende Zustimmung des Lizenzgebers und / oder des Zuschreibungsempfängers weder explizit noch implizit irgendeine Verbindung zum Lizenzgeber oder Zuschreibungsempfänger und ebenso wenig eine Unterstützung oder Billigung durch ihn andeuten. + + c. Die oben unter 4.a) und b) genannten Einschränkungen gelten nicht für solche Teile des Schutzgegenstandes, die allein deshalb unter den Schutzgegenstandsbegriff fallen, weil sie als Datenbanken oder Zusammenstellungen von Daten einen immaterialgüterrechtlichen Schutz eigener Art genießen. + + d. Persönlichkeitsrechte bleiben - soweit sie bestehen - von dieser Lizenz unberührt. + + 5. Gewährleistung + + SOFERN KEINE ANDERS LAUTENDE, SCHRIFTLICHE VEREINBARUNG ZWISCHEN DEM LIZENZGEBER UND IHNEN GESCHLOSSEN WURDE UND SOWEIT MÄNGEL NICHT ARGLISTIG VERSCHWIEGEN WURDEN, BIETET DER LIZENZGEBER DEN SCHUTZGEGENSTAND UND DIE EINRÄUMUNG VON RECHTEN UNTER AUSSCHLUSS JEGLICHER GEWÄHRLEISTUNG AN UND ÜBERNIMMT WEDER AUSDRÜCKLICH NOCH KONKLUDENT GARANTIEN IRGENDEINER ART. DIES UMFASST INSBESONDERE DAS FREISEIN VON SACH- UND RECHTSMÄNGELN, UNABHÄNGIG VON DEREN ERKENNBARKEIT FÜR DEN LIZENZGEBER, DIE VERKEHRSFÄHIGKEIT DES SCHUTZGEGENSTANDES, SEINE VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK SOWIE DIE KORREKTHEIT VON BESCHREIBUNGEN. DIESE GEWÄHRLEISTUNGSBESCHRÄNKUNG GILT NICHT, SOWEIT MÄNGEL ZU SCHÄDEN DER IN ABSCHNITT 6 BEZEICHNETEN ART FÜHREN UND AUF SEITEN DES LIZENZGEBERS DAS JEWEILS GENANNTE VERSCHULDEN BZW. VERTRETENMÜSSEN EBENFALLS VORLIEGT. + + 6. Haftungsbeschränkung + + DER LIZENZGEBER HAFTET IHNEN GEGENÜBER IN BEZUG AUF SCHÄDEN AUS DER VERLETZUNG DES LEBENS, DES KÖRPERS ODER DER GESUNDHEIT NUR, SOFERN IHM WENIGSTENS FAHRLÄSSIGKEIT VORZUWERFEN IST, FÜR SONSTIGE SCHÄDEN NUR BEI GROBER FAHRLÄSSIGKEIT ODER VORSATZ, UND ÜBERNIMMT DARÜBER HINAUS KEINERLEI FREIWILLIGE HAFTUNG. + + 7. Erlöschen + + a. Diese Lizenz und die durch sie eingeräumten Nutzungsrechte erlöschen mit Wirkung für die Zukunft im Falle eines Verstoßes gegen die Lizenzbedingungen durch Sie, ohne dass es dazu der Kenntnis des Lizenzgebers vom Verstoß oder einer weiteren Handlung einer der Vertragsparteien bedarf. Mit natürlichen oder juristischen Personen, die Abwandlungen des Schutzgegenstandes oder diesen enthaltende Sammelwerke unter den Bedingungen dieser Lizenz von Ihnen erhalten haben, bestehen nachträglich entstandene Lizenzbeziehungen jedoch solange weiter, wie die genannten Personen sich ihrerseits an sämtliche Lizenzbedingungen halten. Darüber hinaus gelten die Ziffern 1, 2, 5, 6, 7, und 8 auch nach einem Erlöschen dieser Lizenz fort. + + b. Vorbehaltlich der oben genannten Bedingungen gilt diese Lizenz unbefristet bis der rechtliche Schutz für den Schutzgegenstand ausläuft. Davon abgesehen behält der Lizenzgeber das Recht, den Schutzgegenstand unter anderen Lizenzbedingungen anzubieten oder die eigene Weitergabe des Schutzgegenstandes jederzeit einzustellen, solange die Ausübung dieses Rechts nicht einer Kündigung oder einem Widerruf dieser Lizenz (oder irgendeiner Weiterlizenzierung, die auf Grundlage dieser Lizenz bereits erfolgt ist bzw. zukünftig noch erfolgen muss) dient und diese Lizenz unter Berücksichtigung der oben zum Erlöschen genannten Bedingungen vollumfänglich wirksam bleibt. + + 8. Sonstige Bestimmungen + + a. Jedes Mal, wenn Sie den Schutzgegenstand für sich genommen oder als Teil eines Sammelwerkes verbreiten oder öffentlich zeigen, bietet der Lizenzgeber dem Empfänger eine Lizenz zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz. + + b. Jedes Mal, wenn Sie eine Abwandlung des Schutzgegenstandes verbreiten oder öffentlich zeigen, bietet der Lizenzgeber dem Empfänger eine Lizenz am ursprünglichen Schutzgegenstand zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz. + + c. Sollte eine Bestimmung dieser Lizenz unwirksam sein, so bleibt davon die Wirksamkeit der Lizenz im Übrigen davon unberührt. + + d. Keine Bestimmung dieser Lizenz soll als abbedungen und kein Verstoß gegen sie als zulässig gelten, solange die von dem Verzicht oder von dem Verstoß betroffene Seite nicht schriftlich zugestimmt hat. + + e. Diese Lizenz (zusammen mit in ihr ausdrücklich vorgesehenen Erlaubnissen, Mitteilungen und Zustimmungen, soweit diese tatsächlich vorliegen) stellt die vollständige Vereinbarung zwischen dem Lizenzgeber und Ihnen in Bezug auf den Schutzgegenstand dar. Es bestehen keine Abreden, Vereinbarungen oder Erklärungen in Bezug auf den Schutzgegenstand, die in dieser Lizenz nicht genannt sind. Rechtsgeschäftliche Änderungen des Verhältnisses zwischen dem Lizenzgeber und Ihnen sind nur über Modifikationen dieser Lizenz möglich. Der Lizenzgeber ist an etwaige zusätzliche, einseitig durch Sie übermittelte Bestimmungen nicht gebunden. Diese Lizenz kann nur durch schriftliche Vereinbarung zwischen Ihnen und dem Lizenzgeber modifiziert werden. Derlei Modifikationen wirken ausschließlich zwischen dem Lizenzgeber und Ihnen und wirken sich nicht auf die Dritten gemäß Ziffern 8.a) und b) angebotenen Lizenzen aus. + + f. Sofern zwischen Ihnen und dem Lizenzgeber keine anderweitige Vereinbarung getroffen wurde und soweit Wahlfreiheit besteht, findet auf diesen Lizenzvertrag das Recht der Bundesrepublik Deutschland Anwendung. + + + Creative Commons Notice + + Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr oder dergleichen in Bezug auf den Schutzgegenstand. Creative Commons haftet Ihnen oder einer anderen Partei unter keinem rechtlichen Gesichtspunkt für irgendwelche Schäden, die - abstrakt oder konkret, zufällig oder vorhersehbar - im Zusammenhang mit dieser Lizenz entstehen. Unbeschadet der vorangegangen beiden Sätze, hat Creative Commons alle Rechte und Pflichten eines Lizenzgebers, wenn es sich ausdrücklich als Lizenzgeber im Sinne dieser Lizenz bezeichnet. + + Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. + + Creative Commons kann kontaktiert werden über https://creativecommons.org/. json: cc-by-3.0-de.json - yml: cc-by-3.0-de.yml + yaml: cc-by-3.0-de.yml html: cc-by-3.0-de.html - text: cc-by-3.0-de.LICENSE + license: cc-by-3.0-de.LICENSE +- license_key: cc-by-3.0-igo + category: Permissive + spdx_license_key: CC-BY-3.0-IGO + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: "Creative Commons Attribution 3.0 IGO\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM\ + \ AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT\ + \ RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE\ + \ COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY\ + \ FOR DAMAGES RESULTING FROM ITS USE. THE LICENSOR IS NOT NECESSARILY AN INTERGOVERNMENTAL\ + \ ORGANIZATION (IGO), AS DEFINED IN THE LICENSE BELOW. \n\nLicense\n\nTHE WORK (AS DEFINED\ + \ BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"LICENSE\"\ + ). THE LICENSOR (DEFINED BELOW) HOLDS COPYRIGHT AND OTHER RIGHTS IN THE WORK. ANY USE OF\ + \ THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED.\n\nBY EXERCISING ANY\ + \ RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS\ + \ LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION FOR YOUR ACCEPTANCE\ + \ AND AGREEMENT TO THE TERMS OF THE LICENSE.\n\n1. Definitions\n\n a. \"IGO\" means,\ + \ solely and exclusively for purposes of this License, an organization established by a\ + \ treaty or other instrument governed by international law and possessing its own international\ + \ legal personality. Other organizations established to carry out activities across national\ + \ borders and that accordingly enjoy immunity from legal process are also IGOs for the sole\ + \ and exclusive purposes of this License. IGOs may include as members, in addition to states,\ + \ other entities.\n\n b. \"Work\" means the literary and/or artistic work eligible for\ + \ copyright protection, whatever may be the mode or form of its expression including digital\ + \ form, and offered under the terms of this License. It is understood that a database, which\ + \ by reason of the selection and arrangement of its contents constitutes an intellectual\ + \ creation, is considered a Work.\n\n c. \"Licensor\" means the individual, individuals,\ + \ entity or entities that offer(s) the Work under the terms of this License and may be,\ + \ but is not necessarily, an IGO.\n\n d. \"You\" means an individual or entity exercising\ + \ rights under this License.\n\n e. \"Reproduce\" means to make a copy of the Work in\ + \ any manner or form, and by any means.\n\n f. \"Distribute\" means the activity of making\ + \ publicly available the Work or Adaptation (or copies of the Work or Adaptation), as applicable,\ + \ by sale, rental, public lending or any other known form of transfer of ownership or possession\ + \ of the Work or copy of the Work.\n\n g. \"Publicly Perform\" means to perform public\ + \ recitations of the Work and to communicate to the public those public recitations, by\ + \ any means or process, including by wire or wireless means or public digital performances;\ + \ to make available to the public Works in such a way that members of the public may access\ + \ these Works from a place and at a place individually chosen by them; to perform the Work\ + \ to the public by any means or process and the communication to the public of the performances\ + \ of the Work, including by public digital performance; to broadcast and rebroadcast the\ + \ Work by any means including signs, sounds or images.\n\n h. \"Adaptation\" means a\ + \ work derived from or based upon the Work, or upon the Work and other pre-existing works.\ + \ Adaptations may include works such as translations, derivative works, or any alterations\ + \ and arrangements of any kind involving the Work. For purposes of this License, where the\ + \ Work is a musical work, performance, or phonogram, the synchronization of the Work in\ + \ timed-relation with a moving image is an Adaptation. For the avoidance of doubt, including\ + \ the Work in a Collection is not an Adaptation.\n\n i. \"Collection\" means a collection\ + \ of literary or artistic works or other works or subject matter other than works listed\ + \ in Section 1(b) which by reason of the selection and arrangement of their contents, constitute\ + \ intellectual creations, in which the Work is included in its entirety in unmodified form\ + \ along with one or more other contributions, each constituting separate and independent\ + \ works in themselves, which together are assembled into a collective whole. For the avoidance\ + \ of doubt, a Collection will not be considered as an Adaptation.\n\n2. Scope of this License.\ + \ Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright\ + \ protection.\n\n3. License Grant. Subject to the terms and conditions of this License,\ + \ the Licensor hereby grants You a worldwide, royalty-free, non-exclusive license to exercise\ + \ the rights in the Work as follows:\n\n a. to Reproduce, Distribute and Publicly Perform\ + \ the Work, to incorporate the Work into one or more Collections, and to Reproduce, Distribute\ + \ and Publicly Perform the Work as incorporated in the Collections; and,\n\n b. to create,\ + \ Reproduce, Distribute and Publicly Perform Adaptations, provided that You clearly label,\ + \ demarcate or otherwise identify that changes were made to the original Work.\n\n c.\ + \ For the avoidance of doubt:\n\n i. Non-waivable Compulsory License Schemes. In\ + \ those jurisdictions in which the right to collect royalties through any statutory or compulsory\ + \ licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect\ + \ such royalties for any exercise by You of the rights granted under this License;\n\n \ + \ ii. Waivable Compulsory License Schemes. In those jurisdictions in which the right\ + \ to collect royalties through any statutory or compulsory licensing scheme can be waived,\ + \ the Licensor waives the exclusive right to collect such royalties for any exercise by\ + \ You of the rights granted under this License; and,\n\n iii. Voluntary License Schemes.\ + \ To the extent possible, the Licensor waives the right to collect royalties from You for\ + \ the exercise of the Licensed Rights, whether directly or through a collecting society\ + \ under any voluntary licensing scheme.\n\nThis License lasts for the duration of the term\ + \ of the copyright in the Work licensed by the Licensor. The above rights may be exercised\ + \ in all media and formats whether now known or hereafter devised. The above rights include\ + \ the right to make such modifications as are technically necessary to exercise the rights\ + \ in other media and formats. All rights not expressly granted by the Licensor are hereby\ + \ reserved.\n\n4. Restrictions. The license granted in Section 3 above is expressly made\ + \ subject to and limited by the following restrictions:\n\n a. You may Distribute or\ + \ Publicly Perform the Work only under the terms of this License. You must include a copy\ + \ of, or the Uniform Resource Identifier (URI) for, this License with every copy of the\ + \ Work You Distribute or Publicly Perform. You may not offer or impose any terms on the\ + \ Work that restrict the terms of this License or the ability of the recipient of the Work\ + \ to exercise the rights granted to that recipient under the terms of the License. You may\ + \ not sublicense the Work (see section 8(a)). You must keep intact all notices that refer\ + \ to this License and to the disclaimer of warranties with every copy of the Work You Distribute\ + \ or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose\ + \ any effective technological measures on the Work that restrict the ability of a recipient\ + \ of the Work from You to exercise the rights granted to that recipient under the terms\ + \ of the License. This Section 4(a) applies to the Work as incorporated in a Collection,\ + \ but this does not require the Collection apart from the Work itself to be made subject\ + \ to the terms of this License. If You create a Collection, upon notice from a Licensor\ + \ You must, to the extent practicable, remove from the Collection any credit (inclusive\ + \ of any logo, trademark, official mark or official emblem) as required by Section 4(b),\ + \ as requested. If You create an Adaptation, upon notice from a Licensor You must, to the\ + \ extent practicable, remove from the Adaptation any credit (inclusive of any logo, trademark,\ + \ official mark or official emblem) as required by Section 4(b), as requested.\n\n b.\ + \ If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You\ + \ must, unless a request has been made pursuant to Section 4(a), keep intact all copyright\ + \ notices for the Work and provide, reasonable to the medium or means You are utilizing:\ + \ (i) any attributions that the Licensor indicates be associated with the Work as indicated\ + \ in a copyright notice, (ii) the title of the Work if supplied; (iii) to the extent reasonably\ + \ practicable, the URI, if any, that the Licensor specifies to be associated with the Work,\ + \ unless such URI does not refer to the copyright notice or licensing information for the\ + \ Work; and, (iv) consistent with Section 3(b), in the case of an Adaptation, a credit identifying\ + \ the use of the Work in the Adaptation. The credit required by this Section 4(b) may be\ + \ implemented in any reasonable manner; provided, however, that in the case of an Adaptation\ + \ or Collection, at a minimum such credit will appear, if a credit for all contributors\ + \ to the Adaptation or Collection appears, then as part of these credits and in a manner\ + \ at least as prominent as the credits for the other contributors. For the avoidance of\ + \ doubt, You may only use the credit required by this Section for the purpose of attribution\ + \ in the manner set out above and, by exercising Your rights under this License, You may\ + \ not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement\ + \ by the Licensor or others designated for attribution, of You or Your use of the Work,\ + \ without the separate, express prior written permission of the Licensor or such others.\n\ + \n c. Except as otherwise agreed in writing by the Licensor, if You Reproduce, Distribute\ + \ or Publicly Perform the Work either by itself or as part of any Adaptations or Collections,\ + \ You must not distort, mutilate, modify or take other derogatory action in relation to\ + \ the Work which would be prejudicial to the honor or reputation of the Licensor where moral\ + \ rights apply.\n\n5. Representations, Warranties and Disclaimer\n\nTHE LICENSOR OFFERS\ + \ THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK,\ + \ EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF\ + \ TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE\ + \ OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE.\n\ + \n6. Limitation on Liability\n\nIN NO EVENT WILL THE LICENSOR BE LIABLE TO YOU ON ANY LEGAL\ + \ THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING\ + \ OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF THE LICENSOR HAS BEEN ADVISED OF THE\ + \ POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\n a. Subject to the terms and conditions\ + \ set forth in this License, the license granted here lasts for the duration of the term\ + \ of the copyright in the Work licensed by the Licensor as stated in Section 3. Notwithstanding\ + \ the above, the Licensor reserves the right to release the Work under different license\ + \ terms or to stop distributing the Work at any time; provided, however that any such election\ + \ will not serve to withdraw this License (or any other license that has been, or is required\ + \ to be, granted under the terms of this License), and this License will continue in full\ + \ force and effect unless terminated as stated below.\n\n b. If You fail to comply with\ + \ this License, then this License and the rights granted hereunder will terminate automatically\ + \ upon any breach by You of the terms of this License. Individuals or entities who have\ + \ received Adaptations or Collections from You under this License, however, will not have\ + \ their licenses terminated provided such individuals or entities remain in full compliance\ + \ with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this\ + \ License. Notwithstanding the foregoing, this License reinstates automatically as of the\ + \ date the violation is cured, provided it is cured within 30 days of You discovering the\ + \ violation, or upon express reinstatement by the Licensor. For the avoidance of doubt,\ + \ this Section 7(b) does not affect any rights the Licensor may have to seek remedies for\ + \ violations of this License by You.\n\n8. Miscellaneous\n\n a. Each time You Distribute\ + \ or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license\ + \ to the Work on the same terms and conditions as the license granted to You under this\ + \ License.\n\n b. Each time You Distribute or Publicly Perform an Adaptation, the Licensor\ + \ offers to the recipient a license to the original Work on the same terms and conditions\ + \ as the license granted to You under this License.\n\n c. If any provision of this License\ + \ is invalid or unenforceable, it shall not affect the validity or enforceability of the\ + \ remainder of the terms of this License, and without further action, such provision shall\ + \ be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\ + \n d. No term or provision of this License shall be deemed waived and no breach consented\ + \ to unless such waiver or consent shall be in writing and signed by the Licensor.\n\n \ + \ e. This License constitutes the entire agreement between You and the Licensor with respect\ + \ to the Work licensed here. There are no understandings, agreements or representations\ + \ with respect to the Work not specified here. The Licensor shall not be bound by any additional\ + \ provisions that may appear in any communication from You. This License may not be modified\ + \ without the mutual written agreement of the Licensor and You.\n\n f. The rights granted\ + \ under, and the subject matter referenced, in this License were drafted utilizing the terminology\ + \ of the Berne Convention for the Protection of Literary and Artistic Works (as amended\ + \ on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996,\ + \ the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention\ + \ (as revised on July 24, 1971). Interpretation of the scope of the rights granted by the\ + \ Licensor and the conditions imposed on You under this License, this License, and the rights\ + \ and conditions set forth herein shall be made with reference to copyright as determined\ + \ in accordance with general principles of international law, including the above mentioned\ + \ conventions.\n\n g. Nothing in this License constitutes or may be interpreted as a\ + \ limitation upon or waiver of any privileges and immunities that may apply to the Licensor\ + \ or You, including immunity from the legal processes of any jurisdiction, national court\ + \ or other authority.\n\n h. Where the Licensor is an IGO, any and all disputes arising\ + \ under this License that cannot be settled amicably shall be resolved in accordance with\ + \ the following procedure:\n\n i. Pursuant to a notice of mediation communicated\ + \ by reasonable means by either You or the Licensor to the other, the dispute shall be submitted\ + \ to non-binding mediation conducted in accordance with rules designated by the Licensor\ + \ in the copyright notice published with the Work, or if none then in accordance with those\ + \ communicated in the notice of mediation. The language used in the mediation proceedings\ + \ shall be English unless otherwise agreed.\n\n ii. If any such dispute has not been\ + \ settled within 45 days following the date on which the notice of mediation is provided,\ + \ either You or the Licensor may, pursuant to a notice of arbitration communicated by reasonable\ + \ means to the other, elect to have the dispute referred to and finally determined by arbitration.\ + \ The arbitration shall be conducted in accordance with the rules designated by the Licensor\ + \ in the copyright notice published with the Work, or if none then in accordance with the\ + \ UNCITRAL Arbitration Rules as then in force. The arbitral tribunal shall consist of a\ + \ sole arbitrator and the language of the proceedings shall be English unless otherwise\ + \ agreed. The place of arbitration shall be where the Licensor has its headquarters. The\ + \ arbitral proceedings shall be conducted remotely (e.g., via telephone conference or written\ + \ submissions) whenever practicable.\n\n iii. Interpretation of this License in any\ + \ dispute submitted to mediation or arbitration shall be as set forth in Section 8(f), above.\n\ + \nCreative Commons Notice\n\nCreative Commons is not a party to this License, and makes\ + \ no warranty whatsoever in connection with the Work. Creative Commons will not be liable\ + \ to You or any party on any legal theory for any damages whatsoever, including without\ + \ limitation any general, special, incidental or consequential damages arising in connection\ + \ to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons\ + \ has expressly identified itself as the Licensor hereunder, it shall have all rights and\ + \ obligations of the Licensor.\n\nExcept for the limited purpose of indicating to the public\ + \ that the Work is licensed under the CCPL, Creative Commons does not authorize the use\ + \ by either party of the trademark \"Creative Commons\" or any related trademark or logo\ + \ of Creative Commons without the prior written consent of Creative Commons. Any permitted\ + \ use will be in compliance with Creative Commons' then-current trademark usage guidelines,\ + \ as may be published on its website or otherwise made available upon request from time\ + \ to time. For the avoidance of doubt, this trademark restriction does not form part of\ + \ this License.\n\nCreative Commons may be contacted at https://creativecommons.org/." + json: cc-by-3.0-igo.json + yaml: cc-by-3.0-igo.yml + html: cc-by-3.0-igo.html + license: cc-by-3.0-igo.LICENSE - license_key: cc-by-3.0-nl + category: Permissive spdx_license_key: CC-BY-3.0-NL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Creative Commons Naamsvermelding 3.0 + + CREATIVE COMMONS CORPORATION IS GEEN ADVOCATENPRAKTIJK EN VERLEENT GEEN JURIDISCHE DIENSTEN. DE VERSPREIDING VAN DEZE LICENTIE ROEPT GEEN JURIDISCHE RELATIE MET CREATIVE COMMONS IN HET LEVEN. CREATIVE COMMONS VERSPREIDT DEZE INFORMATIE 'AS-IS'. CREATIVE COMMONS STAAT NIET IN VOOR DE INHOUD VAN DE VERSTREKTE INFORMATIE EN SLUIT ALLE AANSPRAKELIJKHEID UIT VOOR ENIGERLEI SCHADE VOORTVLOEIEND UIT HET GEBRUIK VAN DEZE INFORMATIE INDIEN EN VOORZOVER DE WET NIET ANDERS BEPAALT. + + Licentie + + HET WERK (ALS HIERONDER OMSCHREVEN) WORDT TER BESCHIKKING GESTELD OVEREENKOMSTIG DE VOORWAARDEN VAN DEZE CREATIVE COMMONS PUBLIEKE LICENTIE ('CCPL' OF 'LICENTIE'). HET WERK WORDT BESCHERMD OP GROND VAN HET AUTEURSRECHT, NABURIGE RECHTEN, HET DATABANKENRECHT EN/OF ENIGE ANDERE TOEPASSELIJKE RECHTEN. MET UITZONDERING VAN HET IN DEZE LICENTIE OMSCHREVEN TOEGESTANE GEBRUIK VAN HET WERK IS ENIG ANDER GEBRUIK VAN HET WERK NIET TOEGESTAAN. + + DOOR HET UITOEFENEN VAN DE IN DEZE LICENTIE VERLEENDE RECHTEN MET BETREKKING TOT HET WERK AANVAARDT EN GAAT DE GEBRUIKER AKKOORD MET DE VOORWAARDEN VAN DEZE LICENTIE, MET DIEN VERSTANDE DAT (DE INHOUD VAN) DEZE LICENTIE OP VOORHAND VOLDOENDE DUIDELIJK KENBAAR DIENT TE ZIJN VOOR DE ONTVANGER VAN HET WERK. + + DE LICENTIEGEVER VERLEENT DE GEBRUIKER DE IN DEZE LICENTIE OMSCHREVEN RECHTEN MET INACHTNEMING VAN DE DESBETREFFENDE VOORWAARDEN. + + 1. Definities + + a. 'Verzamelwerk' een werk waarin het Werk, in zijn geheel en in ongewijzigde vorm, samen met een of meer andere werken, die elk een afzonderlijk en zelfstandig werk vormen, tot een geheel is samengevoegd. Voorbeelden van een verzamelwerk zijn een tijdschrift, een bloemlezing of een encyclopedie. Een Verzamelwerk zal voor de toepassing van deze Licentie niet als een Afgeleid werk (als hieronder omschreven) worden beschouwd. + + b. 'Afgeleid werk' een werk dat is gebaseerd op het Werk of op het Werk en andere reeds bestaande werken. Voorbeelden van een Afgeleid werk zijn een vertaling, een muziekschikking (arrangement), een toneelbewerking, een literaire bewerking, een verfilming, een geluidsopname, een kunstreproductie, een verkorte versie, een samenvatting of enig andere bewerking van het Werk, met dien verstande dat een Verzamelwerk voor de toepassing van deze Licentie niet als een Afgeleid werk zal worden beschouwd. + + Indien het Werk een muziekwerk betreft, zal de synchronisatie van de tijdslijnen van het Werk en een bewegend beeld ('synching') voor de toepassing van deze Licentie als een Afgeleid Werk worden beschouwd. + + c. 'Licentiegever' de natuurlijke persoon/personen of rechtspersoon/rechtspersonen die het Werk volgens de voorwaarden van deze Licentie aanbiedt/aanbieden. + + d. 'Maker' de natuurlijke persoon/personen of rechtspersoon/personen die het oorspronkelijke werk gemaakt heeft/hebben. Voor de toepassing van deze Licentie wordt onder de Maker mede verstaan de uitvoerende kunstenaar, film- en fonogramproducent en omroeporganisaties in de zin van de Wet op de naburige rechten en de producent van een databank in de zin van de Databankenwet. + + e. 'Werk' het auteursrechtelijk beschermde werk dat volgens de voorwaarden van deze Licentie wordt aangeboden. Voor de toepassing van deze Licentie wordt onder het Werk mede verstaan het fonogram, de eerste vastlegging van een film en het (omroep)programma in de zin van de Wet op de naburige rechten en de databank in de zin van de Databankenwet, voor zover dit fonogram, deze eerste vastlegging van een film, dit (omroep)programma en deze databank beschermd wordt krachtens de toepasselijke wet in de jurisdictie van de Gebruiker. + + f. 'Gebruiker' de natuurlijke persoon of rechtspersoon die rechten ingevolge deze Licentie uitoefent en die de voorwaarden van deze Licentie met betrekking tot het Werk niet eerder geschonden heeft, of die van de Licentiegever uitdrukkelijke toestemming gekregen heeft om rechten ingevolge deze Licentie uit te oefenen ondanks een eerdere schending. + + 2. Beperkingen van de uitsluitende rechten. Niets in deze Licentie strekt ertoe om de rechten te beperken die voortvloeien uit de beperkingen en uitputting van de uitsluitende rechten van de rechthebbende krachtens het auteursrecht, de naburige rechten, het databankenrecht of enige andere toepasselijke rechten. + + 3. Licentieverlening. Met inachtneming van de voorwaarden van deze Licentie verleent de Licentiegever hierbij aan de Gebruiker een wereldwijde, niet-exclusieve licentie om de navolgende rechten met betrekking tot het Werk vrij van royalty's uit te oefenen voor de duur van de toepasselijke intellectuele eigendomsrechten: + + a. het reproduceren van het Werk, het opnemen van het Werk in een of meerdere Verzamelwerken, en het reproduceren van het in de Verzamelwerken opgenomen Werk; + + b. het maken en reproduceren van Afgeleide werken met dien verstande dat met betrekking tot het Afgeleide werk, met inbegrip van welke vertaling in welk medium dan ook, duidelijk wordt gemaakt dat er wijzigingen in het oorspronkelijke Werk zijn aangebracht. Bijvoorbeeld, aan een vertaling kan worden toegevoegd dat 'het oorspronkelijke Werk is van het Engels in het Spaans vertaald', of in geval van een verandering kan worden aangegeven dat 'het oorspronkelijke werk is veranderd'; + + c. het verspreiden van exemplaren van het Werk, het in het openbaar tonen, op- en uitvoeren en het on-line beschikbaar stellen van het Werk, afzonderlijk en als deel van een Verzamelwerk; + + d. het verspreiden van exemplaren van Afgeleide werken, het in het openbaar te tonen, op- en uitvoeren en het on-line beschikbaar stellen van Afgeleide werken; + + e. het opvragen en hergebruiken van het Werk; + + f. Volledigheidshalve dient te worden vermeld dat: + + i. Niet voor afstand vatbare heffingsregelingen. in het geval van niet voor afstand vatbare heffingsregelingen (bijvoorbeeld met betrekking tot thuiskopieën) de Licentiegever zich het recht voorbehoudt om dergelijke heffingen te innen (al dan niet door middel van een auteursrechtenorganisatie) bij zowel commercieel als niet-commercieel gebruik van het Werk; + + ii. Voor afstand vatbare heffingsregeling. in het geval van voor afstand vatbare heffingsregelingen (bijvoorbeeld met betrekking tot leenrechten) de Licentiegever afstand doet van het recht om dergelijke heffingen te innen bij zowel commercieel als niet-commercieel gebruik van het Werk; + + iii. Collectief rechtenbeheer. de Licentiegever afstand doet van het recht om vergoedingen te innen (zelfstandig of, indien de Licentiegever lid is van een auteursrechtenorganisatie, door middel van die organisatie) bij zowel commercieel als niet-commercieel gebruik van het Werk. + + De Gebruiker mag deze rechten uitoefenen met behulp van alle thans bekende media, dragers en formats. De Gebruiker is tevens gerechtigd om technische wijzigingen aan te brengen die noodzakelijk zijn om de rechten met behulp van andere media, dragers en formats uit te oefenen. Alle niet uitdrukkelijk verleende rechten zijn hierbij voorbehouden aan de Licentiegever, met inbegrip van maar niet beperkt tot de rechten die in artikel 4(d) worden genoemd. Voor zover de Licentiegever op basis van het nationale recht ter implementatie van de Europese Databankenrichtlijn over uitsluitende rechten beschickt doet de Licentiegever afstand van deze rechten. + + 4. Beperkingen. De in artikel 3 verleende Licentie is uitdrukkelijk gebonden aan de volgende beperkingen: + + a. De Gebruiker mag het Werk uitsluitend verspreiden, in het openbaar tonen, op- of uitvoeren of on-line beschikbaar stellen met inachtneming van de voorwaarden van deze Licentie, en de Gebruiker dient een exemplaar van, of de Uniform Resource Identifier voor, deze Licentie toe te voegen aan elk exemplaar van het Werk dat de Gebruiker verspreidt, in het openbaar toont, op- of uitvoert, of on-line beschikbaar stelt. Het is de Gebruiker niet toegestaan om het Werk onder enige afwijkende voorwaarden aan te bieden waardoor de voorwaarden van deze Licentie dan wel de mogelijkheid van de ontvangers van het Werk om de rechten krachtens deze Licentie uit te oefenen worden beperkt. Het is de Gebruiker niet toegestaan om het Werk in sublicentie te geven. De Gebruiker dient alle vermeldingen die verwijzen naar deze Licentie dan wel naar de uitsluiting van garantie te laten staan. Het is de Gebruiker niet toegestaan om het Werk te verspreiden, in het openbaar te tonen, op- of uit te voeren of on-line beschikbaar te stellen met toepassing van technologische voorzieningen waardoor de voorwaarden van deze Licentie dan wel de mogelijkheid van de ontvangers van het Werk om de rechten krachtens deze Licentie uit te oefenen worden beperkt. Het voorgaande is tevens van toepassing op het Werk dat deel uitmaakt van een Verzamelwerk, maar dat houdt niet in dat het Verzamelwerk, afgezien van het Werk zelf, gebonden is aan de voorwaarden van deze Licentie. Indien de Gebruiker een Verzamelwerk maakt, dient deze, op verzoek van welke Licentiegever ook, de op grond van artikel 4(b) vereiste naamsvermelding uit het Verzamelwerk te verwijderen, voor zover praktisch mogelijk, conform het verzoek. Indien de Gebruiker een Afgeleid werk maakt, dient hij, op verzoek van welke Licentiegever ook, de op grond van artikel 4(b) vereiste naamsvermelding uit het Afgeleide werk te verwijderen, voorzover praktisch mogelijk, conform het verzoek. + + b. Indien de Gebruiker het Werk, Afgeleide Werken of Verzamelwerken verspreidt, in het openbaar toont, op- of uitvoert of on-line beschikbaar stelt, dient de Gebruiker, tenzij er sprake is van een verzoek als vermeld in lid 4(a), alle auteursrechtvermeldingen met betrekking tot het Werk te laten staan. Tevens dient de Gebruiker, op een wijze die redelijk is in verhouding tot het gebruikte medium, de naam te vermelden van (i) de Maker (of zijn/haar pseudoniem indien van toepassing) indien deze wordt vermeld; en/of (ii) van (een) andere partij(en) (b.v. sponsor, uitgeverij, tijdschrift) indien de naamsvermelding van deze partij(en) ("Naamsvermeldingsgerechtigden") in de auteursrechtvermelding of algemene voorwaarden van de Licentiegever of op een andere redelijke wijze verplicht is gesteld door de Maker en/of de Licentiegever; de titel van het Werk indien deze wordt vermeld; voorzover redelijkerwijs toepasbaar de Uniform Resource Identifier, indien aanwezig, waarvan de Licentiegever heeft aangegeven dat deze bij het Werk hoort, tenzij de URI niet verwijst naar de auteursrechtvermeldingen of de licentie-informatie betreffende het Werk; in overeenstemming met artikel 3(b) in geval van een Afgeleid werk, door te verwijzen naar het gebruik van het Werk in het Afgeleide werk (bijvoorbeeld: 'De Franse vertaling van het Werk van de Maker' of 'Scenario gebaseerd op het Werk van de Maker'). De Gebruiker dient op redelijke wijze aan de in dit artikel genoemde vereisten te voldoen; echter, met dien verstande dat, in geval van een Afgeleid werk of een Verzamelwerk, de naamsvermeldingen in ieder geval geplaatst dienen te worden, indien er een naamsvermelding van alle makers van het Afgeleide werk of het Verzamelwerk geplaatst wordt dan als deel van die naamsvermeldingen, en op een wijze die in ieder geval even duidelijk is als de naamsvermeldingen van de overige makers. + + Volledigheidshalve dient te worden vermeld dat de Gebruiker uitsluitend gebruik mag maken van de naamsvermelding op de in dit artikel omschreven wijze teneinde te voldoen aan de naamsvermeldingsverplichting en, door gebruikmaking van zijn rechten krachtens deze Licentie, is het de Gebruiker niet toegestaan om op enigerlei wijze de indruk te wekken dat er sprake is van enig verband met, sponsorschap van of goedkeuring van de (toepasselijke) Maker, Licentiegever c.q. Naamsvermeldingsgerechtigden van de Gebruiker of diens gebruik van het Werk, zonder de afzonderlijke, uitdrukkelijke, voorafgaande, schriftelijke toestemming van de Maker, Licentiegever c.q. Naamsvermeldingsgerechtigden. + + c. Volledigheidshalve dient te worden vermeld, dat de hierboven vermelde beperkingen (lid 4(a) en lid 4(b)) niet van toepassing zijn op die onderdelen van het Werk die geacht worden te vallen onder de definitie van het 'Werk' zoals vermeld in deze Licentie uitsluitend omdat zij voldoen aan de criteria van het sui generis databankenrecht krachtens het nationale recht ter implementatie van de Europese Databankenrichtlijn. + + d. De in artikel 3 verleende rechten moeten worden uitgeoefend met inachtneming van het morele recht van de Maker (en/of de uitvoerende kunstenaar) om zich te verzetten tegen elke misvorming, verminking of andere aantasting van het werk, welke nadeel zou kunnen toebrengen aan de eer of de naam van de Maker (en/of de uitvoerende kunstenaar) of aan zijn waarde in deze hoedanigheid, indien en voor zover de Maker (en/of de uitvoerende kunstenaar) op grond van een op hem van toepassing zijnde wettelijke bepaling geen afstand kan doen van dat morele recht. + + 5. Garantie en vrijwaring. + + TENZIJ ANDERS SCHRIFTELIJK IS OVEREENGEKOMEN DOOR DE PARTIJEN, STELT DE LICENTIEGEVER HET WERK BESCHIKBAAR OP 'AS-IS' BASIS, ZONDER ENIGE GARANTIE, HETZIJ DIRECT, INDIRECT OF ANDERSZINS, MET BETREKKING TOT HET WERK, MET INBEGRIP VAN, MAAR NIET BEPERKT TOT GARANTIES MET BETREKKING TOT DE EIGENDOMSTITEL, DE VERKOOPBAARHEID, DE GESCHIKTHEID VOOR BEPAALDE DOELEINDEN, MOGELIJKE INBREUK, DE AFWEZIGHEID VAN LATENTE OF ANDERE TEKORTKOMINGEN, DE JUISTHEID OF DE AAN- OF AFWEZIGHEID VAN FOUTEN, ONGEACHT DE OPSPOORBAARHEID DAARVAN, INDIEN EN VOORZOVER DE WET NIET ANDERS BEPAALT. + + 6. Beperking van de aansprakelijkheid. + + DE LICENTIEGEVER AANVAARDT GEEN ENKELE AANSPRAKELIJKHEID JEGENS DE GEBRUIKER VOOR ENIGE BIJZONDERE OF INCIDENTELE SCHADE OF GEVOLGSCHADE VOORTVLOEIEND UIT DEZE LICENTIE OF HET GEBRUIK VAN HET WERK, ZELFS NIET INDIEN DE LICENTIEGEVER OP DE HOOGTE IS GESTELD VAN HET RISICO VAN DERGELIJKE SCHADE, INDIEN EN VOORZOVER DE WET NIET ANDERS BEPAALT. + + 7. Beëindiging + + a. Deze Licentie en de daarin verleende rechten vervallen automatisch op het moment dat de Gebruiker in strijd handelt met de voorwaarden van deze Licentie. De licenties van natuurlijke personen of rechtspersonen die Verzamelwerken hebben ontvangen van de Gebruiker krachtens deze Licentie blijven echter in stand zolang dergelijke natuurlijke personen of rechtspersonen zich houden aan de voorwaarden van die licenties. Na de beëindiging van deze Licentie blijven artikelen 1, 2, 5, 6, 7 en 8 onverminderd van kracht. + + b. Met inachtneming van de hierboven vermelde voorwaarden wordt de Licentie verleend voor de duur van de toepasselijke intellectuele eigendomsrechten op het Werk. De Licentiegever behoudt zich desalniettemin te allen tijde het recht voor om het Werk volgens gewijzigde licentievoorwaarden te verspreiden of om het Werk niet langer te verspreiden; met dien verstande dat een dergelijk besluit niet de intrekking van deze Licentie (of enig andere licentie die volgens de voorwaarden van deze Licentie (verplicht) is verleend) tot gevolg heeft, en deze Licentie onverminderd van kracht blijft tenzij zij op de in lid a omschreven wijze wordt beëindigd. + + 8. Diversen + + a. Elke keer dat de Gebruiker het Werk of een Verzamelwerk verspreidt of on-line beschikbaar stelt, biedt de Licentiegever de ontvanger een licentie op het Werk aan volgens de algemene voorwaarden van deze Licentie. + + b. Elke keer dat de Gebruiker een Afgeleid werk verspreidt of on-line beschikbaar stelt, biedt de Licentiegever de ontvanger een licentie op het oorspronkelijke werk aan volgens de algemene voorwaarden van deze Licentie. + + c. Indien enige bepaling van deze Licentie nietig of niet rechtens afdwingbaar is, zullen de overige voorwaarden van deze Licentie volledig van kracht blijven. De nietige of niet-afdwingbare bepaling zal, zonder tussenkomst van de partijen, worden vervangen door een geldige en afdwingbare bepaling waarbij het doel en de strekking van de oorspronkelijke bepaling zoveel mogelijk in acht worden genomen. + + d. Een verklaring van afstand van in deze Licentie verleende rechten of een wijziging van de voorwaarden van deze Licentie dient schriftelijk te geschieden en getekend te zijn door de partij die verantwoordelijk is voor de verklaring van afstand respectievelijk de partij wiens toestemming voor de wijziging is vereist. + + f. Deze Licentie bevat de volledige overeenkomst tussen de partijen met betrekking tot het in licentie gegeven Werk. Er zijn geen andere afspraken gemaakt met betrekking tot het Werk. De Licentiegever is niet gebonden aan enige aanvullende bepalingen die worden vermeld in mededelingen van de Gebruiker. Deze licentie kan uitsluitend worden gewijzigd met de wederzijdse, schriftelijke instemming van de Licentiegever en de Gebruiker. + + Aansprakelijkheid en merkrechten van Creative Commons + + Creative Commons is geen partij bij deze Licentie en stelt geen enkele garantie met betrekking tot het Werk. Creative Commons kan op geen enkele wijze aansprakelijk worden gehouden jegens de Gebruiker of derden voor enigerlei schade met inbegrip van, maar niet beperkt tot enige algemene, bijzondere, incidentele of gevolgschade voortvloeiend uit deze Licentie. Onverminderd het bepaalde in de twee (2) voorgaande volzinnen is Creative Commons gebonden aan alle rechten en verplichtingen van de Licentiegever indien Creative Commons zichzelf uitdrukkelijk kenbaar gemaakt heeft als de Licentiegever krachtens deze Licentie. + + Met uitzondering van het beperkte doel om iedereen erop te wijzen dat het Werk in licentie is gegeven krachtens de CCPL, geeft Creative Commons aan geen van de partijen toestemming om gebruik te maken van de merknaam 'Creative Commons', enige daarmee verband houdende merknamen dan wel het logo van Creative Commons gebruiken zonder de voorafgaande schriftelijke toestemming van Creative Commons. Het geoorloofde gebruik dient in overeenstemming te zijn met de alsdan geldende richtlijnen betreffende het gebruik van merknamen van Creative Commons zoals die bekend worden gemaakt op de website of anderszins van tijd tot tijd, desgevraagd, ter beschikking worden gesteld. Volledigheidshalve dient te worden vermeld dat deze merkrechtelijke beperking geen deel uitmaakt van de Licentie. + + U kunt contact opnemen met Creative Commons via de website: https://creativecommons.org/. json: cc-by-3.0-nl.json - yml: cc-by-3.0-nl.yml + yaml: cc-by-3.0-nl.yml html: cc-by-3.0-nl.html - text: cc-by-3.0-nl.LICENSE + license: cc-by-3.0-nl.LICENSE - license_key: cc-by-3.0-us + category: Permissive spdx_license_key: CC-BY-3.0-US other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Creative Commons Attribution 3.0 United States + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + a. "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with one or more other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + + b. "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. + + c. "Licensor" means the individual, individuals, entity or entities that offers the Work under the terms of this License. + + d. "Original Author" means the individual, individuals, entity or entities who created the Work. + + e. "Work" means the copyrightable work of authorship offered under the terms of this License. + + f. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + a. to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + + b. to create and reproduce Derivative Works provided that any such Derivative Work, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified.";; + + c. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + + d. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works. + + e. For the avoidance of doubt, where the Work is a musical composition: + + i. Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or, in the event that Licensor is a member of a performance rights society (e.g. ASCAP, BMI, SESAC), via that society, royalties for the public performance or public digital performance (e.g. webcast) of the Work. + + ii. Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions). + + f. Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions). + + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. + + 4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + a. You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of a recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. When You distribute, publicly display, publicly perform, or publicly digitally perform the Work, You may not impose any technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by Section 4(b), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by Section 4(b), as requested. + + b. If You distribute, publicly display, publicly perform, or publicly digitally perform the Work (as defined in Section 1 above) or any Derivative Works (as defined in Section 1 above) or Collective Works (as defined in Section 1 above), You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and, consistent with Section 3(b) in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4(b) may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear, if a credit for all contributing authors of the Derivative Work or Collective Work appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties. + + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND ONLY TO THE EXTENT OF ANY RIGHTS HELD IN THE LICENSED WORK BY THE LICENSOR. THE LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MARKETABILITY, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + a. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works (as defined in Section 1 above) or Collective Works (as defined in Section 1 above) from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + + b. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + + 8. Miscellaneous + + a. Each time You distribute or publicly digitally perform the Work (as defined in Section 1 above) or a Collective Work (as defined in Section 1 above), the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + + b. Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. + + c. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + + d. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + + e. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + + Creative Commons Notice + + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of the License. + + Creative Commons may be contacted at https://creativecommons.org/. json: cc-by-3.0-us.json - yml: cc-by-3.0-us.yml + yaml: cc-by-3.0-us.yml html: cc-by-3.0-us.html - text: cc-by-3.0-us.LICENSE + license: cc-by-3.0-us.LICENSE - license_key: cc-by-4.0 + category: Permissive spdx_license_key: CC-BY-4.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Attribution 4.0 International\n\n=======================================================================\n\ + \nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide\ + \ legal services or legal advice. Distribution of\nCreative Commons public licenses does\ + \ not create a lawyer-client or\nother relationship. Creative Commons makes its licenses\ + \ and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\n\ + warranties regarding its licenses, any material licensed under their\nterms and conditions,\ + \ or any related information. Creative Commons\ndisclaims all liability for damages resulting\ + \ from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\ + \nCreative Commons public licenses provide a standard set of terms and\nconditions that\ + \ creators and other rights holders may use to share\noriginal works of authorship and other\ + \ material subject to copyright\nand certain other rights specified in the public license\ + \ below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive,\ + \ and do not form part of our licenses.\n\n Considerations for licensors: Our public\ + \ licenses are\n intended for use by those authorized to give the public\n permission\ + \ to use material in ways otherwise restricted by\n copyright and certain other rights.\ + \ Our licenses are\n irrevocable. Licensors should read and understand the terms\n \ + \ and conditions of the license they choose before applying it.\n Licensors should\ + \ also secure all rights necessary before\n applying our licenses so that the public\ + \ can reuse the\n material as expected. Licensors should clearly mark any\n material\ + \ not subject to the license. This includes other CC-\n licensed material, or material\ + \ used under an exception or\n limitation to copyright. More considerations for licensors:\n\ + \twiki.creativecommons.org/Considerations_for_licensors\n\n Considerations for the public:\ + \ By using one of our public\n licenses, a licensor grants the public permission to\ + \ use the\n licensed material under specified terms and conditions. If\n the licensor's\ + \ permission is not necessary for any reason--for\n example, because of any applicable\ + \ exception or limitation to\n copyright--then that use is not regulated by the license.\ + \ Our\n licenses grant only permissions under copyright and certain\n other rights\ + \ that a licensor has authority to grant. Use of\n the licensed material may still be\ + \ restricted for other\n reasons, including because others have copyright or other\n\ + \ rights in the material. A licensor may make special requests,\n such as asking\ + \ that all changes be marked or described.\n Although not required by our licenses,\ + \ you are encouraged to\n respect those requests where reasonable. More considerations\n\ + \ for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\ + \nCreative Commons Attribution 4.0 International Public License\n\nBy exercising the Licensed\ + \ Rights (defined below), You accept and agree\nto be bound by the terms and conditions\ + \ of this Creative Commons\nAttribution 4.0 International Public License (\"Public License\"\ + ). To the\nextent this Public License may be interpreted as a contract, You are\ngranted\ + \ the Licensed Rights in consideration of Your acceptance of\nthese terms and conditions,\ + \ and the Licensor grants You such rights in\nconsideration of benefits the Licensor receives\ + \ from making the\nLicensed Material available under these terms and conditions.\n\n\nSection\ + \ 1 -- Definitions.\n\n a. Adapted Material means material subject to Copyright and Similar\n\ + \ Rights that is derived from or based upon the Licensed Material\n and in which\ + \ the Licensed Material is translated, altered,\n arranged, transformed, or otherwise\ + \ modified in a manner requiring\n permission under the Copyright and Similar Rights\ + \ held by the\n Licensor. For purposes of this Public License, where the Licensed\n\ + \ Material is a musical work, performance, or sound recording,\n Adapted Material\ + \ is always produced where the Licensed Material is\n synched in timed relation with\ + \ a moving image.\n\n b. Adapter's License means the license You apply to Your Copyright\n\ + \ and Similar Rights in Your contributions to Adapted Material in\n accordance with\ + \ the terms and conditions of this Public License.\n\n c. Copyright and Similar Rights\ + \ means copyright and/or similar rights\n closely related to copyright including, without\ + \ limitation,\n performance, broadcast, sound recording, and Sui Generis Database\n\ + \ Rights, without regard to how the rights are labeled or\n categorized. For purposes\ + \ of this Public License, the rights\n specified in Section 2(b)(1)-(2) are not Copyright\ + \ and Similar\n Rights.\n\n d. Effective Technological Measures means those measures\ + \ that, in the\n absence of proper authority, may not be circumvented under laws\n \ + \ fulfilling obligations under Article 11 of the WIPO Copyright\n Treaty adopted\ + \ on December 20, 1996, and/or similar international\n agreements.\n\n e. Exceptions\ + \ and Limitations means fair use, fair dealing, and/or\n any other exception or limitation\ + \ to Copyright and Similar Rights\n that applies to Your use of the Licensed Material.\n\ + \n f. Licensed Material means the artistic or literary work, database,\n or other material\ + \ to which the Licensor applied this Public\n License.\n\n g. Licensed Rights means\ + \ the rights granted to You subject to the\n terms and conditions of this Public License,\ + \ which are limited to\n all Copyright and Similar Rights that apply to Your use of\ + \ the\n Licensed Material and that the Licensor has authority to license.\n\n h. Licensor\ + \ means the individual(s) or entity(ies) granting rights\n under this Public License.\n\ + \n i. Share means to provide material to the public by any means or\n process that\ + \ requires permission under the Licensed Rights, such\n as reproduction, public display,\ + \ public performance, distribution,\n dissemination, communication, or importation,\ + \ and to make material\n available to the public including in ways that members of the\n\ + \ public may access the material from a place and at a time\n individually chosen\ + \ by them.\n\n j. Sui Generis Database Rights means rights other than copyright\n resulting\ + \ from Directive 96/9/EC of the European Parliament and of\n the Council of 11 March\ + \ 1996 on the legal protection of databases,\n as amended and/or succeeded, as well\ + \ as other essentially\n equivalent rights anywhere in the world.\n\n k. You means\ + \ the individual or entity exercising the Licensed Rights\n under this Public License.\ + \ Your has a corresponding meaning.\n\n\nSection 2 -- Scope.\n\n a. License grant.\n\n\ + \ 1. Subject to the terms and conditions of this Public License,\n the Licensor\ + \ hereby grants You a worldwide, royalty-free,\n non-sublicensable, non-exclusive,\ + \ irrevocable license to\n exercise the Licensed Rights in the Licensed Material\ + \ to:\n\n a. reproduce and Share the Licensed Material, in whole or\n \ + \ in part; and\n\n b. produce, reproduce, and Share Adapted Material.\n\ + \n 2. Exceptions and Limitations. For the avoidance of doubt, where\n Exceptions\ + \ and Limitations apply to Your use, this Public\n License does not apply, and\ + \ You do not need to comply with\n its terms and conditions.\n\n 3. Term.\ + \ The term of this Public License is specified in Section\n 6(a).\n\n 4.\ + \ Media and formats; technical modifications allowed. The\n Licensor authorizes\ + \ You to exercise the Licensed Rights in\n all media and formats whether now known\ + \ or hereafter created,\n and to make technical modifications necessary to do so.\ + \ The\n Licensor waives and/or agrees not to assert any right or\n authority\ + \ to forbid You from making technical modifications\n necessary to exercise the\ + \ Licensed Rights, including\n technical modifications necessary to circumvent\ + \ Effective\n Technological Measures. For purposes of this Public License,\n \ + \ simply making modifications authorized by this Section 2(a)\n (4) never\ + \ produces Adapted Material.\n\n 5. Downstream recipients.\n\n a. Offer\ + \ from the Licensor -- Licensed Material. Every\n recipient of the Licensed\ + \ Material automatically\n receives an offer from the Licensor to exercise\ + \ the\n Licensed Rights under the terms and conditions of this\n \ + \ Public License.\n\n b. No downstream restrictions. You may not offer or\ + \ impose\n any additional or different terms or conditions on, or\n \ + \ apply any Effective Technological Measures to, the\n Licensed Material\ + \ if doing so restricts exercise of the\n Licensed Rights by any recipient\ + \ of the Licensed\n Material.\n\n 6. No endorsement. Nothing in this\ + \ Public License constitutes or\n may be construed as permission to assert or imply\ + \ that You\n are, or that Your use of the Licensed Material is, connected\n \ + \ with, or sponsored, endorsed, or granted official status by,\n the Licensor\ + \ or others designated to receive attribution as\n provided in Section 3(a)(1)(A)(i).\n\ + \n b. Other rights.\n\n 1. Moral rights, such as the right of integrity, are not\n\ + \ licensed under this Public License, nor are publicity,\n privacy, and/or\ + \ other similar personality rights; however, to\n the extent possible, the Licensor\ + \ waives and/or agrees not to\n assert any such rights held by the Licensor to\ + \ the limited\n extent necessary to allow You to exercise the Licensed\n \ + \ Rights, but not otherwise.\n\n 2. Patent and trademark rights are not licensed\ + \ under this\n Public License.\n\n 3. To the extent possible, the Licensor\ + \ waives any right to\n collect royalties from You for the exercise of the Licensed\n\ + \ Rights, whether directly or through a collecting society\n under any\ + \ voluntary or waivable statutory or compulsory\n licensing scheme. In all other\ + \ cases the Licensor expressly\n reserves any right to collect such royalties.\n\ + \n\nSection 3 -- License Conditions.\n\nYour exercise of the Licensed Rights is expressly\ + \ made subject to the\nfollowing conditions.\n\n a. Attribution.\n\n 1. If You Share\ + \ the Licensed Material (including in modified\n form), You must:\n\n \ + \ a. retain the following if it is supplied by the Licensor\n with the Licensed\ + \ Material:\n\n i. identification of the creator(s) of the Licensed\n \ + \ Material and any others designated to receive\n attribution,\ + \ in any reasonable manner requested by\n the Licensor (including by\ + \ pseudonym if\n designated);\n\n ii. a copyright notice;\n\ + \n iii. a notice that refers to this Public License;\n\n iv.\ + \ a notice that refers to the disclaimer of\n warranties;\n\n \ + \ v. a URI or hyperlink to the Licensed Material to the\n extent\ + \ reasonably practicable;\n\n b. indicate if You modified the Licensed Material\ + \ and\n retain an indication of any previous modifications; and\n\n \ + \ c. indicate the Licensed Material is licensed under this\n Public License,\ + \ and include the text of, or the URI or\n hyperlink to, this Public License.\n\ + \n 2. You may satisfy the conditions in Section 3(a)(1) in any\n reasonable\ + \ manner based on the medium, means, and context in\n which You Share the Licensed\ + \ Material. For example, it may be\n reasonable to satisfy the conditions by providing\ + \ a URI or\n hyperlink to a resource that includes the required\n information.\n\ + \n 3. If requested by the Licensor, You must remove any of the\n information\ + \ required by Section 3(a)(1)(A) to the extent\n reasonably practicable.\n\n \ + \ 4. If You Share Adapted Material You produce, the Adapter's\n License You\ + \ apply must not prevent recipients of the Adapted\n Material from complying with\ + \ this Public License.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the Licensed\ + \ Rights include Sui Generis Database Rights that\napply to Your use of the Licensed Material:\n\ + \n a. for the avoidance of doubt, Section 2(a)(1) grants You the right\n to extract,\ + \ reuse, reproduce, and Share all or a substantial\n portion of the contents of the\ + \ database;\n\n b. if You include all or a substantial portion of the database\n contents\ + \ in a database in which You have Sui Generis Database\n Rights, then the database in\ + \ which You have Sui Generis Database\n Rights (but not its individual contents) is\ + \ Adapted Material; and\n\n c. You must comply with the conditions in Section 3(a) if You\ + \ Share\n all or a substantial portion of the contents of the database.\n\nFor the avoidance\ + \ of doubt, this Section 4 supplements and does not\nreplace Your obligations under this\ + \ Public License where the Licensed\nRights include other Copyright and Similar Rights.\n\ + \n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\n a. UNLESS OTHERWISE\ + \ SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n EXTENT POSSIBLE, THE LICENSOR OFFERS\ + \ THE LICENSED MATERIAL AS-IS\n AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES\ + \ OF\n ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n IMPLIED, STATUTORY,\ + \ OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n WARRANTIES OF TITLE, MERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR\n PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n\ + \ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n KNOWN OR DISCOVERABLE.\ + \ WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n ALLOWED IN FULL OR IN PART, THIS DISCLAIMER\ + \ MAY NOT APPLY TO YOU.\n\n b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE\ + \ LIABLE\n TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n NEGLIGENCE)\ + \ OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n INCIDENTAL, CONSEQUENTIAL, PUNITIVE,\ + \ EXEMPLARY, OR OTHER LOSSES,\n COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC\ + \ LICENSE OR\n USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n ADVISED\ + \ OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n DAMAGES. WHERE A LIMITATION\ + \ OF LIABILITY IS NOT ALLOWED IN FULL OR\n IN PART, THIS LIMITATION MAY NOT APPLY TO\ + \ YOU.\n\n c. The disclaimer of warranties and limitation of liability provided\n above\ + \ shall be interpreted in a manner that, to the extent\n possible, most closely approximates\ + \ an absolute disclaimer and\n waiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\ + \n a. This Public License applies for the term of the Copyright and\n Similar Rights\ + \ licensed here. However, if You fail to comply with\n this Public License, then Your\ + \ rights under this Public License\n terminate automatically.\n\n b. Where Your right\ + \ to use the Licensed Material has terminated under\n Section 6(a), it reinstates:\n\ + \n 1. automatically as of the date the violation is cured, provided\n it\ + \ is cured within 30 days of Your discovery of the\n violation; or\n\n 2.\ + \ upon express reinstatement by the Licensor.\n\n For the avoidance of doubt, this Section\ + \ 6(b) does not affect any\n right the Licensor may have to seek remedies for Your violations\n\ + \ of this Public License.\n\n c. For the avoidance of doubt, the Licensor may also\ + \ offer the\n Licensed Material under separate terms or conditions or stop\n distributing\ + \ the Licensed Material at any time; however, doing so\n will not terminate this Public\ + \ License.\n\n d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n License.\n\ + \n\nSection 7 -- Other Terms and Conditions.\n\n a. The Licensor shall not be bound by\ + \ any additional or different\n terms or conditions communicated by You unless expressly\ + \ agreed.\n\n b. Any arrangements, understandings, or agreements regarding the\n Licensed\ + \ Material not stated herein are separate from and\n independent of the terms and conditions\ + \ of this Public License.\n\n\nSection 8 -- Interpretation.\n\n a. For the avoidance of\ + \ doubt, this Public License does not, and\n shall not be interpreted to, reduce, limit,\ + \ restrict, or impose\n conditions on any use of the Licensed Material that could lawfully\n\ + \ be made without permission under this Public License.\n\n b. To the extent possible,\ + \ if any provision of this Public License is\n deemed unenforceable, it shall be automatically\ + \ reformed to the\n minimum extent necessary to make it enforceable. If the provision\n\ + \ cannot be reformed, it shall be severed from this Public License\n without affecting\ + \ the enforceability of the remaining terms and\n conditions.\n\n c. No term or condition\ + \ of this Public License will be waived and no\n failure to comply consented to unless\ + \ expressly agreed to by the\n Licensor.\n\n d. Nothing in this Public License constitutes\ + \ or may be interpreted\n as a limitation upon, or waiver of, any privileges and immunities\n\ + \ that apply to the Licensor or You, including from the legal\n processes of any\ + \ jurisdiction or authority.\n\n\n=======================================================================\n\ + \nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons\ + \ may elect to apply one of\nits public licenses to material it publishes and in those instances\n\ + will be considered the “Licensor.” The text of the Creative Commons\npublic licenses is\ + \ dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the\ + \ limited purpose of indicating that\nmaterial is shared under a Creative Commons public\ + \ license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies,\ + \ Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or\ + \ any other trademark or logo\nof Creative Commons without its prior written consent including,\n\ + without limitation, in connection with any unauthorized modifications\nto any of its public\ + \ licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed\ + \ material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic\ + \ licenses.\n\nCreative Commons may be contacted at creativecommons.org." json: cc-by-4.0.json - yml: cc-by-4.0.yml + yaml: cc-by-4.0.yml html: cc-by-4.0.html - text: cc-by-4.0.LICENSE + license: cc-by-4.0.LICENSE - license_key: cc-by-nc-1.0 + category: Source-available spdx_license_key: CC-BY-NC-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Attribution-NonCommercial 1.0 + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. + "Licensor" means the individual or entity that offers the Work under the terms of this License. + "Original Author" means the individual or entity who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to create and reproduce Derivative Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works; + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. + + 4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested. + You may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works. + If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + 5. Representations, Warranties and Disclaimer + + By offering the Work for public release under this License, Licensor represents and warrants that, to the best of Licensor's knowledge after reasonable inquiry: + Licensor has secured all rights in the Work necessary to grant the license rights hereunder and to permit the lawful exercise of the rights granted hereunder without You having any obligation to pay any royalties, compulsory license fees, residuals or any other payments; + The Work does not infringe the copyright, trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party. + EXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF THE WORK. + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 8. Miscellaneous + + Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at http://creativecommons.org/. json: cc-by-nc-1.0.json - yml: cc-by-nc-1.0.yml + yaml: cc-by-nc-1.0.yml html: cc-by-nc-1.0.html - text: cc-by-nc-1.0.LICENSE + license: cc-by-nc-1.0.LICENSE - license_key: cc-by-nc-2.0 + category: Source-available spdx_license_key: CC-BY-NC-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Attribution-NonCommercial 2.0 + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. + "Licensor" means the individual or entity that offers the Work under the terms of this License. + "Original Author" means the individual or entity who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to create and reproduce Derivative Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works; + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved, including but not limited to the rights set forth in Sections 4(d) and 4(e). + + 4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested. + You may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works. + If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + For the avoidance of doubt, where the Work is a musical composition: + + Performance Royalties Under Blanket Licenses. Licensor reserves the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work if that performance is primarily intended for or directed toward commercial advantage or private monetary compensation. + Mechanical Rights and Statutory Royalties. Licensor reserves the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions), if Your distribution of such cover version is primarily intended for or directed toward commercial advantage or private monetary compensation. + Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor reserves the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions), if Your public digital performance is primarily intended for or directed toward commercial advantage or private monetary compensation. + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 8. Miscellaneous + + Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at http://creativecommons.org/. json: cc-by-nc-2.0.json - yml: cc-by-nc-2.0.yml + yaml: cc-by-nc-2.0.yml html: cc-by-nc-2.0.html - text: cc-by-nc-2.0.LICENSE + license: cc-by-nc-2.0.LICENSE - license_key: cc-by-nc-2.5 + category: Source-available spdx_license_key: CC-BY-NC-2.5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Attribution-NonCommercial 2.5 + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. + "Licensor" means the individual or entity that offers the Work under the terms of this License. + "Original Author" means the individual or entity who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to create and reproduce Derivative Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works; + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved, including but not limited to the rights set forth in Sections 4(d) and 4(e). + + 4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(c), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by clause 4(c), as requested. + You may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works. + If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + For the avoidance of doubt, where the Work is a musical composition: + + Performance Royalties Under Blanket Licenses. Licensor reserves the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work if that performance is primarily intended for or directed toward commercial advantage or private monetary compensation. + Mechanical Rights and Statutory Royalties. Licensor reserves the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions), if Your distribution of such cover version is primarily intended for or directed toward commercial advantage or private monetary compensation. + Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor reserves the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions), if Your public digital performance is primarily intended for or directed toward commercial advantage or private monetary compensation. + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 8. Miscellaneous + + Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at http://creativecommons.org/. json: cc-by-nc-2.5.json - yml: cc-by-nc-2.5.yml + yaml: cc-by-nc-2.5.yml html: cc-by-nc-2.5.html - text: cc-by-nc-2.5.LICENSE + license: cc-by-nc-2.5.LICENSE - license_key: cc-by-nc-3.0 + category: Source-available spdx_license_key: CC-BY-NC-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Creative Commons Legal Code + + Attribution-NonCommercial 3.0 Unported + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR + DAMAGES RESULTING FROM ITS USE. + + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE + COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY + COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS + AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE + TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY + BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS + CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND + CONDITIONS. + + 1. Definitions + + a. "Adaptation" means a work based upon the Work, or upon the Work and + other pre-existing works, such as a translation, adaptation, + derivative work, arrangement of music or other alterations of a + literary or artistic work, or phonogram or performance and includes + cinematographic adaptations or any other form in which the Work may be + recast, transformed, or adapted including in any form recognizably + derived from the original, except that a work that constitutes a + Collection will not be considered an Adaptation for the purpose of + this License. For the avoidance of doubt, where the Work is a musical + work, performance or phonogram, the synchronization of the Work in + timed-relation with a moving image ("synching") will be considered an + Adaptation for the purpose of this License. + b. "Collection" means a collection of literary or artistic works, such as + encyclopedias and anthologies, or performances, phonograms or + broadcasts, or other works or subject matter other than works listed + in Section 1(f) below, which, by reason of the selection and + arrangement of their contents, constitute intellectual creations, in + which the Work is included in its entirety in unmodified form along + with one or more other contributions, each constituting separate and + independent works in themselves, which together are assembled into a + collective whole. A work that constitutes a Collection will not be + considered an Adaptation (as defined above) for the purposes of this + License. + c. "Distribute" means to make available to the public the original and + copies of the Work or Adaptation, as appropriate, through sale or + other transfer of ownership. + d. "Licensor" means the individual, individuals, entity or entities that + offer(s) the Work under the terms of this License. + e. "Original Author" means, in the case of a literary or artistic work, + the individual, individuals, entity or entities who created the Work + or if no individual or entity can be identified, the publisher; and in + addition (i) in the case of a performance the actors, singers, + musicians, dancers, and other persons who act, sing, deliver, declaim, + play in, interpret or otherwise perform literary or artistic works or + expressions of folklore; (ii) in the case of a phonogram the producer + being the person or legal entity who first fixes the sounds of a + performance or other sounds; and, (iii) in the case of broadcasts, the + organization that transmits the broadcast. + f. "Work" means the literary and/or artistic work offered under the terms + of this License including without limitation any production in the + literary, scientific and artistic domain, whatever may be the mode or + form of its expression including digital form, such as a book, + pamphlet and other writing; a lecture, address, sermon or other work + of the same nature; a dramatic or dramatico-musical work; a + choreographic work or entertainment in dumb show; a musical + composition with or without words; a cinematographic work to which are + assimilated works expressed by a process analogous to cinematography; + a work of drawing, painting, architecture, sculpture, engraving or + lithography; a photographic work to which are assimilated works + expressed by a process analogous to photography; a work of applied + art; an illustration, map, plan, sketch or three-dimensional work + relative to geography, topography, architecture or science; a + performance; a broadcast; a phonogram; a compilation of data to the + extent it is protected as a copyrightable work; or a work performed by + a variety or circus performer to the extent it is not otherwise + considered a literary or artistic work. + g. "You" means an individual or entity exercising rights under this + License who has not previously violated the terms of this License with + respect to the Work, or who has received express permission from the + Licensor to exercise rights under this License despite a previous + violation. + h. "Publicly Perform" means to perform public recitations of the Work and + to communicate to the public those public recitations, by any means or + process, including by wire or wireless means or public digital + performances; to make available to the public Works in such a way that + members of the public may access these Works from a place and at a + place individually chosen by them; to perform the Work to the public + by any means or process and the communication to the public of the + performances of the Work, including by public digital performance; to + broadcast and rebroadcast the Work by any means including signs, + sounds or images. + i. "Reproduce" means to make copies of the Work by any means including + without limitation by sound or visual recordings and the right of + fixation and reproducing fixations of the Work, including storage of a + protected performance or phonogram in digital form or other electronic + medium. + + 2. Fair Dealing Rights. Nothing in this License is intended to reduce, + limit, or restrict any uses free from copyright or rights arising from + limitations or exceptions that are provided for in connection with the + copyright protection under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, + Licensor hereby grants You a worldwide, royalty-free, non-exclusive, + perpetual (for the duration of the applicable copyright) license to + exercise the rights in the Work as stated below: + + a. to Reproduce the Work, to incorporate the Work into one or more + Collections, and to Reproduce the Work as incorporated in the + Collections; + b. to create and Reproduce Adaptations provided that any such Adaptation, + including any translation in any medium, takes reasonable steps to + clearly label, demarcate or otherwise identify that changes were made + to the original Work. For example, a translation could be marked "The + original work was translated from English to Spanish," or a + modification could indicate "The original work has been modified."; + c. to Distribute and Publicly Perform the Work including as incorporated + in Collections; and, + d. to Distribute and Publicly Perform Adaptations. + + The above rights may be exercised in all media and formats whether now + known or hereafter devised. The above rights include the right to make + such modifications as are technically necessary to exercise the rights in + other media and formats. Subject to Section 8(f), all rights not expressly + granted by Licensor are hereby reserved, including but not limited to the + rights set forth in Section 4(d). + + 4. Restrictions. The license granted in Section 3 above is expressly made + subject to and limited by the following restrictions: + + a. You may Distribute or Publicly Perform the Work only under the terms + of this License. You must include a copy of, or the Uniform Resource + Identifier (URI) for, this License with every copy of the Work You + Distribute or Publicly Perform. You may not offer or impose any terms + on the Work that restrict the terms of this License or the ability of + the recipient of the Work to exercise the rights granted to that + recipient under the terms of the License. You may not sublicense the + Work. You must keep intact all notices that refer to this License and + to the disclaimer of warranties with every copy of the Work You + Distribute or Publicly Perform. When You Distribute or Publicly + Perform the Work, You may not impose any effective technological + measures on the Work that restrict the ability of a recipient of the + Work from You to exercise the rights granted to that recipient under + the terms of the License. This Section 4(a) applies to the Work as + incorporated in a Collection, but this does not require the Collection + apart from the Work itself to be made subject to the terms of this + License. If You create a Collection, upon notice from any Licensor You + must, to the extent practicable, remove from the Collection any credit + as required by Section 4(c), as requested. If You create an + Adaptation, upon notice from any Licensor You must, to the extent + practicable, remove from the Adaptation any credit as required by + Section 4(c), as requested. + b. You may not exercise any of the rights granted to You in Section 3 + above in any manner that is primarily intended for or directed toward + commercial advantage or private monetary compensation. The exchange of + the Work for other copyrighted works by means of digital file-sharing + or otherwise shall not be considered to be intended for or directed + toward commercial advantage or private monetary compensation, provided + there is no payment of any monetary compensation in connection with + the exchange of copyrighted works. + c. If You Distribute, or Publicly Perform the Work or any Adaptations or + Collections, You must, unless a request has been made pursuant to + Section 4(a), keep intact all copyright notices for the Work and + provide, reasonable to the medium or means You are utilizing: (i) the + name of the Original Author (or pseudonym, if applicable) if supplied, + and/or if the Original Author and/or Licensor designate another party + or parties (e.g., a sponsor institute, publishing entity, journal) for + attribution ("Attribution Parties") in Licensor's copyright notice, + terms of service or by other reasonable means, the name of such party + or parties; (ii) the title of the Work if supplied; (iii) to the + extent reasonably practicable, the URI, if any, that Licensor + specifies to be associated with the Work, unless such URI does not + refer to the copyright notice or licensing information for the Work; + and, (iv) consistent with Section 3(b), in the case of an Adaptation, + a credit identifying the use of the Work in the Adaptation (e.g., + "French translation of the Work by Original Author," or "Screenplay + based on original Work by Original Author"). The credit required by + this Section 4(c) may be implemented in any reasonable manner; + provided, however, that in the case of a Adaptation or Collection, at + a minimum such credit will appear, if a credit for all contributing + authors of the Adaptation or Collection appears, then as part of these + credits and in a manner at least as prominent as the credits for the + other contributing authors. For the avoidance of doubt, You may only + use the credit required by this Section for the purpose of attribution + in the manner set out above and, by exercising Your rights under this + License, You may not implicitly or explicitly assert or imply any + connection with, sponsorship or endorsement by the Original Author, + Licensor and/or Attribution Parties, as appropriate, of You or Your + use of the Work, without the separate, express prior written + permission of the Original Author, Licensor and/or Attribution + Parties. + d. For the avoidance of doubt: + + i. Non-waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme cannot be waived, the Licensor + reserves the exclusive right to collect such royalties for any + exercise by You of the rights granted under this License; + ii. Waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme can be waived, the Licensor reserves + the exclusive right to collect such royalties for any exercise by + You of the rights granted under this License if Your exercise of + such rights is for a purpose or use which is otherwise than + noncommercial as permitted under Section 4(b) and otherwise waives + the right to collect royalties through any statutory or compulsory + licensing scheme; and, + iii. Voluntary License Schemes. The Licensor reserves the right to + collect royalties, whether individually or, in the event that the + Licensor is a member of a collecting society that administers + voluntary licensing schemes, via that society, from any exercise + by You of the rights granted under this License that is for a + purpose or use which is otherwise than noncommercial as permitted + under Section 4(c). + e. Except as otherwise agreed in writing by the Licensor or as may be + otherwise permitted by applicable law, if You Reproduce, Distribute or + Publicly Perform the Work either by itself or as part of any + Adaptations or Collections, You must not distort, mutilate, modify or + take other derogatory action in relation to the Work which would be + prejudicial to the Original Author's honor or reputation. Licensor + agrees that in those jurisdictions (e.g. Japan), in which any exercise + of the right granted in Section 3(b) of this License (the right to + make Adaptations) would be deemed to be a distortion, mutilation, + modification or other derogatory action prejudicial to the Original + Author's honor and reputation, the Licensor will waive or not assert, + as appropriate, this Section, to the fullest extent permitted by the + applicable national law, to enable You to reasonably exercise Your + right under Section 3(b) of this License (right to make Adaptations) + but not otherwise. + + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR + OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY + KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, + INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, + FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF + LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, + WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION + OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE + LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR + ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES + ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS + BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + a. This License and the rights granted hereunder will terminate + automatically upon any breach by You of the terms of this License. + Individuals or entities who have received Adaptations or Collections + from You under this License, however, will not have their licenses + terminated provided such individuals or entities remain in full + compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will + survive any termination of this License. + b. Subject to the above terms and conditions, the license granted here is + perpetual (for the duration of the applicable copyright in the Work). + Notwithstanding the above, Licensor reserves the right to release the + Work under different license terms or to stop distributing the Work at + any time; provided, however that any such election will not serve to + withdraw this License (or any other license that has been, or is + required to be, granted under the terms of this License), and this + License will continue in full force and effect unless terminated as + stated above. + + 8. Miscellaneous + + a. Each time You Distribute or Publicly Perform the Work or a Collection, + the Licensor offers to the recipient a license to the Work on the same + terms and conditions as the license granted to You under this License. + b. Each time You Distribute or Publicly Perform an Adaptation, Licensor + offers to the recipient a license to the original Work on the same + terms and conditions as the license granted to You under this License. + c. If any provision of this License is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability of + the remainder of the terms of this License, and without further action + by the parties to this agreement, such provision shall be reformed to + the minimum extent necessary to make such provision valid and + enforceable. + d. No term or provision of this License shall be deemed waived and no + breach consented to unless such waiver or consent shall be in writing + and signed by the party to be charged with such waiver or consent. + e. This License constitutes the entire agreement between the parties with + respect to the Work licensed here. There are no understandings, + agreements or representations with respect to the Work not specified + here. Licensor shall not be bound by any additional provisions that + may appear in any communication from You. This License may not be + modified without the mutual written agreement of the Licensor and You. + f. The rights granted under, and the subject matter referenced, in this + License were drafted utilizing the terminology of the Berne Convention + for the Protection of Literary and Artistic Works (as amended on + September 28, 1979), the Rome Convention of 1961, the WIPO Copyright + Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 + and the Universal Copyright Convention (as revised on July 24, 1971). + These rights and subject matter take effect in the relevant + jurisdiction in which the License terms are sought to be enforced + according to the corresponding provisions of the implementation of + those treaty provisions in the applicable national law. If the + standard suite of rights granted under applicable copyright law + includes additional rights not granted under this License, such + additional rights are deemed to be included in the License; this + License is not intended to restrict the license of any rights under + applicable law. + + + Creative Commons Notice + + Creative Commons is not a party to this License, and makes no warranty + whatsoever in connection with the Work. Creative Commons will not be + liable to You or any party on any legal theory for any damages + whatsoever, including without limitation any general, special, + incidental or consequential damages arising in connection to this + license. Notwithstanding the foregoing two (2) sentences, if Creative + Commons has expressly identified itself as the Licensor hereunder, it + shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the + Work is licensed under the CCPL, Creative Commons does not authorize + the use by either party of the trademark "Creative Commons" or any + related trademark or logo of Creative Commons without the prior + written consent of Creative Commons. Any permitted use will be in + compliance with Creative Commons' then-current trademark usage + guidelines, as may be published on its website or otherwise made + available upon request from time to time. For the avoidance of doubt, + this trademark restriction does not form part of the License. + + Creative Commons may be contacted at https://creativecommons.org/. json: cc-by-nc-3.0.json - yml: cc-by-nc-3.0.yml + yaml: cc-by-nc-3.0.yml html: cc-by-nc-3.0.html - text: cc-by-nc-3.0.LICENSE + license: cc-by-nc-3.0.LICENSE - license_key: cc-by-nc-3.0-de + category: Free Restricted spdx_license_key: CC-BY-NC-3.0-DE other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Creative Commons Namensnennung - Keine kommerzielle Nutzung 3.0 Deutschland + + CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. + + Lizenz + + DER GEGENSTAND DIESER LIZENZ (WIE UNTER "SCHUTZGEGENSTAND" DEFINIERT) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE COMMONS PUBLIC LICENSE ("CCPL", "LIZENZ" ODER "LIZENZVERTRAG") ZUR VERFÜGUNG GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER ANDERE GESETZE GESCHÜTZT. JEDE FORM DER NUTZUNG DES SCHUTZGEGENSTANDES, DIE NICHT AUFGRUND DIESER LIZENZ ODER DURCH GESETZE GESTATTET IST, IST UNZULÄSSIG. + + DURCH DIE AUSÜBUNG EINES DURCH DIESE LIZENZ GEWÄHRTEN RECHTS AN DEM SCHUTZGEGENSTAND ERKLÄREN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH EINVERSTANDEN. SOWEIT DIESE LIZENZ ALS LIZENZVERTRAG ANZUSEHEN IST, GEWÄHRT IHNEN DER LIZENZGEBER DIE IN DER LIZENZ GENANNTEN RECHTE UNENTGELTLICH UND IM AUSTAUSCH DAFÜR, DASS SIE DAS GEBUNDENSEIN AN DIE LIZENZBEDINGUNGEN AKZEPTIEREN. + + 1. Definitionen + + a. Der Begriff "Abwandlung" im Sinne dieser Lizenz bezeichnet das Ergebnis jeglicher Art von Veränderung des Schutzgegenstandes, solange die eigenpersönlichen Züge des Schutzgegenstandes darin nicht verblassen und daran eigene Schutzrechte entstehen. Das kann insbesondere eine Bearbeitung, Umgestaltung, Änderung, Anpassung, Übersetzung oder Heranziehung des Schutzgegenstandes zur Vertonung von Laufbildern sein. Nicht als Abwandlung des Schutzgegenstandes gelten seine Aufnahme in eine Sammlung oder ein Sammelwerk und die freie Benutzung des Schutzgegenstandes. + + b. Der Begriff "Sammelwerk" im Sinne dieser Lizenz meint eine Zusammenstellung von literarischen, künstlerischen oder wissenschaftlichen Inhalten, sofern diese Zusammenstellung aufgrund von Auswahl und Anordnung der darin enthaltenen selbständigen Elemente eine geistige Schöpfung darstellt, unabhängig davon, ob die Elemente systematisch oder methodisch angelegt und dadurch einzeln zugänglich sind oder nicht. + + c. "Verbreiten" im Sinne dieser Lizenz bedeutet, den Schutzgegenstand oder Abwandlungen im Original oder in Form von Vervielfältigungsstücken, mithin in körperlich fixierter Form der Öffentlichkeit anzubieten oder in Verkehr zu bringen. + + d. Der "Lizenzgeber" im Sinne dieser Lizenz ist diejenige natürliche oder juristische Person oder Gruppe, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet und insoweit als Rechteinhaberin auftritt. + + e. "Rechteinhaber" im Sinne dieser Lizenz ist der Urheber des Schutzgegenstandes oder jede andere natürliche oder juristische Person oder Gruppe von Personen, die am Schutzgegenstand ein Immaterialgüterrecht erlangt hat, welches die in Abschnitt 3 genannten Handlungen erfasst und bei dem eine Einräumung von Nutzungsrechten oder eine Weiterübertragung an Dritte möglich ist. + + f. Der Begriff "Schutzgegenstand" bezeichnet in dieser Lizenz den literarischen, künstlerischen oder wissenschaftlichen Inhalt, der unter den Bedingungen dieser Lizenz angeboten wird. Das kann insbesondere eine persönliche geistige Schöpfung jeglicher Art, ein Werk der kleinen Münze, ein nachgelassenes Werk oder auch ein Lichtbild oder anderes Objekt eines verwandten Schutzrechts sein, unabhängig von der Art seiner Fixierung und unabhängig davon, auf welche Weise jeweils eine Wahrnehmung erfolgen kann, gleichviel ob in analoger oder digitaler Form. Soweit Datenbanken oder Zusammenstellungen von Daten einen immaterialgüterrechtlichen Schutz eigener Art genießen, unterfallen auch sie dem Begriff "Schutzgegenstand" im Sinne dieser Lizenz. + + g. Mit "Sie" bzw. "Ihne*" ist die natürliche oder juristische Person gemeint, die in dieser Lizenz im Abschnitt 3 genannte Nutzungen des Schutzgegenstandes vornimmt und zuvor in Hinblick auf den Schutzgegenstand nicht gegen Bedingungen dieser Lizenz verstoßen oder aber die ausdrückliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese Lizenz gewährten Nutzungsrechte trotz eines vorherigen Verstoßes auszuüben. + + h. Unter "Öffentlich Zeigen" im Sinne dieser Lizenz sind Veröffentlichungen und Präsentationen des Schutzgegenstandes zu verstehen, die für eine Mehrzahl von Mitgliedern der Öffentlichkeit bestimmt sind und in unkörperlicher Form mittels öffentlicher Wiedergabe in Form von Vortrag, Aufführung, Vorführung, Darbietung, Sendung, Weitersendung, zeit- und ortsunabhängiger Zugänglichmachung oder in körperlicher Form mittels Ausstellung erfolgen, unabhängig von bestimmten Veranstaltungen und unabhängig von den zum Einsatz kommenden Techniken und Verfahren, einschließlich drahtgebundener oder drahtloser Mittel und Einstellen in das Internet. + + i. "Vervielfältigen" im Sinne dieser Lizenz bedeutet, mittels beliebiger Verfahren Vervielfältigungsstücke des Schutzgegenstandes herzustellen, insbesondere durch Ton- oder Bildaufzeichnungen, und umfasst auch den Vorgang, erstmals körperliche Fixierungen des Schutzgegenstandes sowie Vervielfältigungsstücke dieser Fixierungen anzufertigen, sowie die Übertragung des Schutzgegenstandes auf einen Bild- oder Tonträger oder auf ein anderes elektronisches Medium, gleichviel ob in digitaler oder analoger Form. + + 2. Schranken des Immaterialgüterrechts. Diese Lizenz ist in keiner Weise darauf gerichtet, Befugnisse zur Nutzung des Schutzgegenstandes zu vermindern, zu beschränken oder zu vereiteln, die Ihnen aufgrund der Schranken des Urheberrechts oder anderer Rechtsnormen bereits ohne Weiteres zustehen oder sich aus dem Fehlen eines immaterialgüterrechtlichen Schutzes ergeben. + + 3. Einräumung von Nutzungsrechten. Unter den Bedingungen dieser Lizenz räumt Ihnen der Lizenzgeber - unbeschadet unverzichtbarer Rechte und vorbehaltlich des Abschnitts 4.e) - das vergütungsfreie, räumlich und zeitlich (für die Dauer des Schutzrechts am Schutzgegenstand) unbeschränkte einfache Recht ein, den Schutzgegenstand auf die folgenden Arten und Weisen zu nutzen ("unentgeltlich eingeräumtes einfaches Nutzungsrecht für jedermann"): + + a. Den Schutzgegenstand in beliebiger Form und Menge zu vervielfältigen, ihn in Sammelwerke zu integrieren und ihn als Teil solcher Sammelwerke zu vervielfältigen; + + b. Abwandlungen des Schutzgegenstandes anzufertigen, einschließlich Übersetzungen unter Nutzung jedweder Medien, sofern deutlich erkennbar gemacht wird, dass es sich um Abwandlungen handelt; + + c. den Schutzgegenstand, allein oder in Sammelwerke aufgenommen, öffentlich zu zeigen und zu verbreiten; + + d. Abwandlungen des Schutzgegenstandes zu veröffentlichen, öffentlich zu zeigen und zu verbreiten. + + Das vorgenannte Nutzungsrecht wird für alle bekannten sowie für alle noch nicht bekannten Nutzungsarten eingeräumt. Es beinhaltet auch das Recht, solche Änderungen am Schutzgegenstand vorzunehmen, die für bestimmte nach dieser Lizenz zulässige Nutzungen technisch erforderlich sind. Alle sonstigen Rechte, die über diesen Abschnitt hinaus nicht ausdrücklich durch den Lizenzgeber eingeräumt werden, bleiben diesem allein vorbehalten. Soweit Datenbanken oder Zusammenstellungen von Daten Schutzgegenstand dieser Lizenz oder Teil dessen sind und einen immaterialgüterrechtlichen Schutz eigener Art genießen, verzichtet der Lizenzgeber auf sämtliche aus diesem Schutz resultierenden Rechte. + + 4. Bedingungen. Die Einräumung des Nutzungsrechts gemäß Abschnitt 3 dieser Lizenz erfolgt ausdrücklich nur unter den folgenden Bedingungen: + + a. Sie dürfen den Schutzgegenstand ausschließlich unter den Bedingungen dieser Lizenz verbreiten oder öffentlich zeigen. Sie müssen dabei stets eine Kopie dieser Lizenz oder deren vollständige Internetadresse in Form des Uniform-Resource-Identifier (URI) beifügen. Sie dürfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen dieser Lizenz oder die durch diese Lizenz gewährten Rechte beschränken. Sie dürfen den Schutzgegenstand nicht unterlizenzieren. Bei jeder Kopie des Schutzgegenstandes, die Sie verbreiten oder öffentlich zeigen, müssen Sie alle Hinweise unverändert lassen, die auf diese Lizenz und den Haftungsausschluss hinweisen. Wenn Sie den Schutzgegenstand verbreiten oder öffentlich zeigen, dürfen Sie (in Bezug auf den Schutzgegenstand) keine technischen Maßnahmen ergreifen, die den Nutzer des Schutzgegenstandes in der Ausübung der ihm durch diese Lizenz gewährten Rechte behindern können. Dieser Abschnitt 4.a) gilt auch für den Fall, dass der Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt dieser Lizenz unterstellt werden muss. Sofern Sie ein Sammelwerk erstellen, müssen Sie auf die Mitteilung eines Lizenzgebers hin aus dem Sammelwerk die in Abschnitt 4.c) aufgezählten Hinweise entfernen. Wenn Sie eine Abwandlung vornehmen, müssen Sie auf die Mitteilung eines Lizenzgebers hin von der Abwandlung die in Abschnitt 4.c) aufgezählten Hinweise entfernen. + + b. Die Rechteeinräumung gemäß Abschnitt 3 gilt nur für Handlungen, die nicht vorrangig auf einen geschäftlichen Vorteil oder eine geldwerte Vergütung gerichtet sind ("nicht-kommerzielle Nutzung", "Non-commercial-Option"). Wird Ihnen in Zusammenhang mit dem Schutzgegenstand dieser Lizenz ein anderer Schutzgegenstand überlassen, ohne dass eine vertragliche Verpflichtung hierzu besteht (etwa im Wege von File-Sharing), so wird dies nicht als auf geschäftlichen Vorteil oder geldwerte Vergütung gerichtet angesehen, wenn in Verbindung mit dem Austausch der Schutzgegenstände tatsächlich keine Zahlung oder geldwerte Vergütung geleistet wird. + + c. Die Verbreitung und das öffentliche Zeigen des Schutzgegenstandes oder auf ihm aufbauender Abwandlungen oder ihn enthaltender Sammelwerke ist Ihnen nur unter der Bedingung gestattet, dass Sie, vorbehaltlich etwaiger Mitteilungen im Sinne von Abschnitt 4.a), alle dazu gehörenden Rechtevermerke unberührt lassen. Sie sind verpflichtet, die Rechteinhaberschaft in einer der Nutzung entsprechenden, angemessenen Form anzuerkennen, indem Sie - soweit bekannt - Folgendes angeben: + + i. Den Namen (oder das Pseudonym, falls ein solches verwendet wird) des Rechteinhabers und / oder, falls der Lizenzgeber im Rechtevermerk, in den Nutzungsbedingungen oder auf andere angemessene Weise eine Zuschreibung an Dritte vorgenommen hat (z.B. an eine Stiftung, ein Verlagshaus oder eine Zeitung) ("Zuschreibungsempfänger"), Namen bzw. Bezeichnung dieses oder dieser Dritten; + + ii. den Titel des Inhaltes; + + iii. in einer praktikablen Form den Uniform-Resource-Identifier (URI, z.B. Internetadresse), den der Lizenzgeber zum Schutzgegenstand angegeben hat, es sei denn, dieser URI verweist nicht auf den Rechtevermerk oder die Lizenzinformationen zum Schutzgegenstand; + + iv. und im Falle einer Abwandlung des Schutzgegenstandes in Übereinstimmung mit Abschnitt 3.b) einen Hinweis darauf, dass es sich um eine Abwandlung handelt. + + Die nach diesem Abschnitt 4.c) erforderlichen Angaben können in jeder angemessenen Form gemacht werden; im Falle einer Abwandlung des Schutzgegenstandes oder eines Sammelwerkes müssen diese Angaben das Minimum darstellen und bei gemeinsamer Nennung mehrerer Rechteinhaber dergestalt erfolgen, dass sie zumindest ebenso hervorgehoben sind wie die Hinweise auf die übrigen Rechteinhaber. Die Angaben nach diesem Abschnitt dürfen Sie ausschließlich zur Angabe der Rechteinhaberschaft in der oben bezeichneten Weise verwenden. Durch die Ausübung Ihrer Rechte aus dieser Lizenz dürfen Sie ohne eine vorherige, separat und schriftlich vorliegende Zustimmung des Lizenzgebers und / oder des Zuschreibungsempfängers weder explizit noch implizit irgendeine Verbindung zum Lizenzgeber oder Zuschreibungsempfänger und ebenso wenig eine Unterstützung oder Billigung durch ihn andeuten. + + d. Die oben unter 4.a) bis c) genannten Einschränkungen gelten nicht für solche Teile des Schutzgegenstandes, die allein deshalb unter den Schutzgegenstandsbegriff fallen, weil sie als Datenbanken oder Zusammenstellungen von Daten einen immaterialgüterrechtlichen Schutz eigener Art genießen. + + e. Bezüglich Vergütung für die Nutzung des Schutzgegenstandes gilt Folgendes: + + i. Unverzichtbare gesetzliche Vergütungsansprüche: Soweit unverzichtbare Vergütungsansprüche im Gegenzug für gesetzliche Lizenzen vorgesehen oder Pauschalabgabensysteme (zum Beispiel für Leermedien) vorhanden sind, behält sich der Lizenzgeber das ausschließliche Recht vor, die entsprechende Vergütung einzuziehen für jede Ausübung eines Rechts aus dieser Lizenz durch Sie. + + ii. Vergütung bei Zwangslizenzen: Sofern Zwangslizenzen außerhalb dieser Lizenz vorgesehen sind und zustande kommen, behält sich der Lizenzgeber das ausschließliche Recht auf Einziehung der entsprechenden Vergütung für den Fall vor, dass Sie eine Nutzung des Schutzgegenstandes für andere als die in Abschnitt 4.b) als nicht-kommerziell definierten Zwecke vornehmen, verzichtet für alle übrigen, lizenzgerechten Fälle von Nutzung jedoch auf jegliche Vergütung. + + iii. Vergütung in sonstigen Fällen: Bezüglich lizenzgerechter Nutzung des Schutzgegenstandes durch Sie, die nicht unter die beiden vorherigen Abschnitte (i) und (ii) fällt, verzichtet der Lizenzgeber auf jegliche Vergütung, unabhängig davon, ob eine Einziehung der Vergütung durch ihn selbst oder nur durch eine Verwertungsgesellschaft möglich wäre. Der Lizenzgeber behält sich jedoch das ausschließliche Recht auf Einziehung der entsprechenden Vergütung (durch ihn selbst oder eine Verwertungsgesellschaft) für den Fall vor, dass Sie eine Nutzung des Schutzgegenstandes für andere als die in Abschnitt 4.b) als nicht-kommerziell definierten Zwecke vornehmen. + + f. Persönlichkeitsrechte bleiben - soweit sie bestehen - von dieser Lizenz unberührt. + + 5. Gewährleistung + + SOFERN KEINE ANDERS LAUTENDE, SCHRIFTLICHE VEREINBARUNG ZWISCHEN DEM LIZENZGEBER UND IHNEN GESCHLOSSEN WURDE UND SOWEIT MÄNGEL NICHT ARGLISTIG VERSCHWIEGEN WURDEN, BIETET DER LIZENZGEBER DEN SCHUTZGEGENSTAND UND DIE EINRÄUMUNG VON RECHTEN UNTER AUSSCHLUSS JEGLICHER GEWÄHRLEISTUNG AN UND ÜBERNIMMT WEDER AUSDRÜCKLICH NOCH KONKLUDENT GARANTIEN IRGENDEINER ART. DIES UMFASST INSBESONDERE DAS FREISEIN VON SACH- UND RECHTSMÄNGELN, UNABHÄNGIG VON DEREN ERKENNBARKEIT FÜR DEN LIZENZGEBER, DIE VERKEHRSFÄHIGKEIT DES SCHUTZGEGENSTANDES, SEINE VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK SOWIE DIE KORREKTHEIT VON BESCHREIBUNGEN. DIESE GEWÄHRLEISTUNGSBESCHRÄNKUNG GILT NICHT, SOWEIT MÄNGEL ZU SCHÄDEN DER IN ABSCHNITT 6 BEZEICHNETEN ART FÜHREN UND AUF SEITEN DES LIZENZGEBERS DAS JEWEILS GENANNTE VERSCHULDEN BZW. VERTRETENMÜSSEN EBENFALLS VORLIEGT. + + 6. Haftungsbeschränkung + + DER LIZENZGEBER HAFTET IHNEN GEGENÜBER IN BEZUG AUF SCHÄDEN AUS DER VERLETZUNG DES LEBENS, DES KÖRPERS ODER DER GESUNDHEIT NUR, SOFERN IHM WENIGSTENS FAHRLÄSSIGKEIT VORZUWERFEN IST, FÜR SONSTIGE SCHÄDEN NUR BEI GROBER FAHRLÄSSIGKEIT ODER VORSATZ, UND ÜBERNIMMT DARÜBER HINAUS KEINERLEI FREIWILLIGE HAFTUNG. + + 7. Erlöschen + + a. Diese Lizenz und die durch sie eingeräumten Nutzungsrechte erlöschen mit Wirkung für die Zukunft im Falle eines Verstoßes gegen die Lizenzbedingungen durch Sie, ohne dass es dazu der Kenntnis des Lizenzgebers vom Verstoß oder einer weiteren Handlung einer der Vertragsparteien bedarf. Mit natürlichen oder juristischen Personen, die Abwandlungen des Schutzgegenstandes oder diesen enthaltende Sammelwerke unter den Bedingungen dieser Lizenz von Ihnen erhalten haben, bestehen nachträglich entstandene Lizenzbeziehungen jedoch solange weiter, wie die genannten Personen sich ihrerseits an sämtliche Lizenzbedingungen halten. Darüber hinaus gelten die Ziffern 1, 2, 5, 6, 7, und 8 auch nach einem Erlöschen dieser Lizenz fort. + + b. Vorbehaltlich der oben genannten Bedingungen gilt diese Lizenz unbefristet bis der rechtliche Schutz für den Schutzgegenstand ausläuft. Davon abgesehen behält der Lizenzgeber das Recht, den Schutzgegenstand unter anderen Lizenzbedingungen anzubieten oder die eigene Weitergabe des Schutzgegenstandes jederzeit einzustellen, solange die Ausübung dieses Rechts nicht einer Kündigung oder einem Widerruf dieser Lizenz (oder irgendeiner Weiterlizenzierung, die auf Grundlage dieser Lizenz bereits erfolgt ist bzw. zukünftig noch erfolgen muss) dient und diese Lizenz unter Berücksichtigung der oben zum Erlöschen genannten Bedingungen vollumfänglich wirksam bleibt. + + 8. Sonstige Bestimmungen + + a. Jedes Mal wenn Sie den Schutzgegenstand für sich genommen oder als Teil eines Sammelwerkes verbreiten oder öffentlich zeigen, bietet der Lizenzgeber dem Empfänger eine Lizenz zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz. + + b. Jedes Mal wenn Sie eine Abwandlung des Schutzgegenstandes verbreiten oder öffentlich zeigen, bietet der Lizenzgeber dem Empfänger eine Lizenz am ursprünglichen Schutzgegenstand zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz. + + c. Sollte eine Bestimmung dieser Lizenz unwirksam sein, so bleibt davon die Wirksamkeit der Lizenz im Übrigen unberührt. + + d. Keine Bestimmung dieser Lizenz soll als abbedungen und kein Verstoß gegen sie als zulässig gelten, solange die von dem Verzicht oder von dem Verstoß betroffene Seite nicht schriftlich zugestimmt hat. + + e. Diese Lizenz (zusammen mit in ihr ausdrücklich vorgesehenen Erlaubnissen, Mitteilungen und Zustimmungen, soweit diese tatsächlich vorliegen) stellt die vollständige Vereinbarung zwischen dem Lizenzgeber und Ihnen in Bezug auf den Schutzgegenstand dar. Es bestehen keine Abreden, Vereinbarungen oder Erklärungen in Bezug auf den Schutzgegenstand, die in dieser Lizenz nicht genannt sind. Rechtsgeschäftliche Änderungen des Verhältnisses zwischen dem Lizenzgeber und Ihnen sind nur über Modifikationen dieser Lizenz möglich. Der Lizenzgeber ist an etwaige zusätzliche, einseitig durch Sie übermittelte Bestimmungen nicht gebunden. Diese Lizenz kann nur durch schriftliche Vereinbarung zwischen Ihnen und dem Lizenzgeber modifiziert werden. Derlei Modifikationen wirken ausschließlich zwischen dem Lizenzgeber und Ihnen und wirken sich nicht auf die Dritten gemäß Ziffern 8.a) und b) angeboteten Lizenzen aus. + + f. Sofern zwischen Ihnen und dem Lizenzgeber keine anderweitige Vereinbarung getroffen wurde und soweit Wahlfreiheit besteht, findet auf diesen Lizenzvertrag das Recht der Bundesrepublik Deutschland Anwendung. + + + Creative Commons Notice + + Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr oder dergleichen in Bezug auf den Schutzgegenstand. Creative Commons haftet Ihnen oder einer anderen Partei unter keinem rechtlichen Gesichtspunkt für irgendwelche Schäden, die - abstrakt oder konkret, zufällig oder vorhersehbar - im Zusammenhang mit dieser Lizenz entstehen. Unbeschadet der vorangegangen beiden Sätze, hat Creative Commons alle Rechte und Pflichten eines Lizenzgebers, wenn es sich ausdrücklich als Lizenzgeber im Sinne dieser Lizenz bezeichnet. + + Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. + + Creative Commons kann kontaktiert werden über https://creativecommons.org/. json: cc-by-nc-3.0-de.json - yml: cc-by-nc-3.0-de.yml + yaml: cc-by-nc-3.0-de.yml html: cc-by-nc-3.0-de.html - text: cc-by-nc-3.0-de.LICENSE + license: cc-by-nc-3.0-de.LICENSE - license_key: cc-by-nc-4.0 + category: Source-available spdx_license_key: CC-BY-NC-4.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: "Attribution-NonCommercial 4.0 International\n\n=======================================================================\n\ + \nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide\ + \ legal services or legal advice. Distribution of\nCreative Commons public licenses does\ + \ not create a lawyer-client or\nother relationship. Creative Commons makes its licenses\ + \ and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\n\ + warranties regarding its licenses, any material licensed under their\nterms and conditions,\ + \ or any related information. Creative Commons\ndisclaims all liability for damages resulting\ + \ from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\ + \nCreative Commons public licenses provide a standard set of terms and\nconditions that\ + \ creators and other rights holders may use to share\noriginal works of authorship and other\ + \ material subject to copyright\nand certain other rights specified in the public license\ + \ below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive,\ + \ and do not form part of our licenses.\n\n Considerations for licensors: Our public\ + \ licenses are\n intended for use by those authorized to give the public\n permission\ + \ to use material in ways otherwise restricted by\n copyright and certain other rights.\ + \ Our licenses are\n irrevocable. Licensors should read and understand the terms\n \ + \ and conditions of the license they choose before applying it.\n Licensors should\ + \ also secure all rights necessary before\n applying our licenses so that the public\ + \ can reuse the\n material as expected. Licensors should clearly mark any\n material\ + \ not subject to the license. This includes other CC-\n licensed material, or material\ + \ used under an exception or\n limitation to copyright. More considerations for licensors:\n\ + \twiki.creativecommons.org/Considerations_for_licensors\n\n Considerations for the public:\ + \ By using one of our public\n licenses, a licensor grants the public permission to\ + \ use the\n licensed material under specified terms and conditions. If\n the licensor's\ + \ permission is not necessary for any reason--for\n example, because of any applicable\ + \ exception or limitation to\n copyright--then that use is not regulated by the license.\ + \ Our\n licenses grant only permissions under copyright and certain\n other rights\ + \ that a licensor has authority to grant. Use of\n the licensed material may still be\ + \ restricted for other\n reasons, including because others have copyright or other\n\ + \ rights in the material. A licensor may make special requests,\n such as asking\ + \ that all changes be marked or described.\n Although not required by our licenses,\ + \ you are encouraged to\n respect those requests where reasonable. More considerations\n\ + \ for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\ + \nCreative Commons Attribution-NonCommercial 4.0 International Public\nLicense\n\nBy exercising\ + \ the Licensed Rights (defined below), You accept and agree\nto be bound by the terms and\ + \ conditions of this Creative Commons\nAttribution-NonCommercial 4.0 International Public\ + \ License (\"Public\nLicense\"). To the extent this Public License may be interpreted as\ + \ a\ncontract, You are granted the Licensed Rights in consideration of Your\nacceptance\ + \ of these terms and conditions, and the Licensor grants You\nsuch rights in consideration\ + \ of benefits the Licensor receives from\nmaking the Licensed Material available under these\ + \ terms and\nconditions.\n\n\nSection 1 -- Definitions.\n\n a. Adapted Material means material\ + \ subject to Copyright and Similar\n Rights that is derived from or based upon the Licensed\ + \ Material\n and in which the Licensed Material is translated, altered,\n arranged,\ + \ transformed, or otherwise modified in a manner requiring\n permission under the Copyright\ + \ and Similar Rights held by the\n Licensor. For purposes of this Public License, where\ + \ the Licensed\n Material is a musical work, performance, or sound recording,\n \ + \ Adapted Material is always produced where the Licensed Material is\n synched in timed\ + \ relation with a moving image.\n\n b. Adapter's License means the license You apply to\ + \ Your Copyright\n and Similar Rights in Your contributions to Adapted Material in\n\ + \ accordance with the terms and conditions of this Public License.\n\n c. Copyright\ + \ and Similar Rights means copyright and/or similar rights\n closely related to copyright\ + \ including, without limitation,\n performance, broadcast, sound recording, and Sui\ + \ Generis Database\n Rights, without regard to how the rights are labeled or\n categorized.\ + \ For purposes of this Public License, the rights\n specified in Section 2(b)(1)-(2)\ + \ are not Copyright and Similar\n Rights.\n d. Effective Technological Measures means\ + \ those measures that, in the\n absence of proper authority, may not be circumvented\ + \ under laws\n fulfilling obligations under Article 11 of the WIPO Copyright\n Treaty\ + \ adopted on December 20, 1996, and/or similar international\n agreements.\n\n e. Exceptions\ + \ and Limitations means fair use, fair dealing, and/or\n any other exception or limitation\ + \ to Copyright and Similar Rights\n that applies to Your use of the Licensed Material.\n\ + \n f. Licensed Material means the artistic or literary work, database,\n or other material\ + \ to which the Licensor applied this Public\n License.\n\n g. Licensed Rights means\ + \ the rights granted to You subject to the\n terms and conditions of this Public License,\ + \ which are limited to\n all Copyright and Similar Rights that apply to Your use of\ + \ the\n Licensed Material and that the Licensor has authority to license.\n\n h. Licensor\ + \ means the individual(s) or entity(ies) granting rights\n under this Public License.\n\ + \n i. NonCommercial means not primarily intended for or directed towards\n commercial\ + \ advantage or monetary compensation. For purposes of\n this Public License, the exchange\ + \ of the Licensed Material for\n other material subject to Copyright and Similar Rights\ + \ by digital\n file-sharing or similar means is NonCommercial provided there is\n \ + \ no payment of monetary compensation in connection with the\n exchange.\n\n j. Share\ + \ means to provide material to the public by any means or\n process that requires permission\ + \ under the Licensed Rights, such\n as reproduction, public display, public performance,\ + \ distribution,\n dissemination, communication, or importation, and to make material\n\ + \ available to the public including in ways that members of the\n public may access\ + \ the material from a place and at a time\n individually chosen by them.\n\n k. Sui\ + \ Generis Database Rights means rights other than copyright\n resulting from Directive\ + \ 96/9/EC of the European Parliament and of\n the Council of 11 March 1996 on the legal\ + \ protection of databases,\n as amended and/or succeeded, as well as other essentially\n\ + \ equivalent rights anywhere in the world.\n\n l. You means the individual or entity\ + \ exercising the Licensed Rights\n under this Public License. Your has a corresponding\ + \ meaning.\n\n\nSection 2 -- Scope.\n\n a. License grant.\n\n 1. Subject to the terms\ + \ and conditions of this Public License,\n the Licensor hereby grants You a worldwide,\ + \ royalty-free,\n non-sublicensable, non-exclusive, irrevocable license to\n \ + \ exercise the Licensed Rights in the Licensed Material to:\n\n a. reproduce\ + \ and Share the Licensed Material, in whole or\n in part, for NonCommercial\ + \ purposes only; and\n\n b. produce, reproduce, and Share Adapted Material for\n\ + \ NonCommercial purposes only.\n\n 2. Exceptions and Limitations. For\ + \ the avoidance of doubt, where\n Exceptions and Limitations apply to Your use,\ + \ this Public\n License does not apply, and You do not need to comply with\n \ + \ its terms and conditions.\n\n 3. Term. The term of this Public License is\ + \ specified in Section\n 6(a).\n\n 4. Media and formats; technical modifications\ + \ allowed. The\n Licensor authorizes You to exercise the Licensed Rights in\n \ + \ all media and formats whether now known or hereafter created,\n and to\ + \ make technical modifications necessary to do so. The\n Licensor waives and/or\ + \ agrees not to assert any right or\n authority to forbid You from making technical\ + \ modifications\n necessary to exercise the Licensed Rights, including\n \ + \ technical modifications necessary to circumvent Effective\n Technological\ + \ Measures. For purposes of this Public License,\n simply making modifications\ + \ authorized by this Section 2(a)\n (4) never produces Adapted Material.\n\n \ + \ 5. Downstream recipients.\n\n a. Offer from the Licensor -- Licensed Material.\ + \ Every\n recipient of the Licensed Material automatically\n \ + \ receives an offer from the Licensor to exercise the\n Licensed Rights under\ + \ the terms and conditions of this\n Public License.\n\n b. No\ + \ downstream restrictions. You may not offer or impose\n any additional or\ + \ different terms or conditions on, or\n apply any Effective Technological\ + \ Measures to, the\n Licensed Material if doing so restricts exercise of the\n\ + \ Licensed Rights by any recipient of the Licensed\n Material.\n\ + \n 6. No endorsement. Nothing in this Public License constitutes or\n may\ + \ be construed as permission to assert or imply that You\n are, or that Your use\ + \ of the Licensed Material is, connected\n with, or sponsored, endorsed, or granted\ + \ official status by,\n the Licensor or others designated to receive attribution\ + \ as\n provided in Section 3(a)(1)(A)(i).\n\n b. Other rights.\n\n 1. Moral\ + \ rights, such as the right of integrity, are not\n licensed under this Public\ + \ License, nor are publicity,\n privacy, and/or other similar personality rights;\ + \ however, to\n the extent possible, the Licensor waives and/or agrees not to\n\ + \ assert any such rights held by the Licensor to the limited\n extent\ + \ necessary to allow You to exercise the Licensed\n Rights, but not otherwise.\n\ + \n 2. Patent and trademark rights are not licensed under this\n Public License.\n\ + \n 3. To the extent possible, the Licensor waives any right to\n collect\ + \ royalties from You for the exercise of the Licensed\n Rights, whether directly\ + \ or through a collecting society\n under any voluntary or waivable statutory or\ + \ compulsory\n licensing scheme. In all other cases the Licensor expressly\n \ + \ reserves any right to collect such royalties, including when\n the Licensed\ + \ Material is used other than for NonCommercial\n purposes.\n\n\nSection 3 -- License\ + \ Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the\n\ + following conditions.\n\n a. Attribution.\n\n 1. If You Share the Licensed Material\ + \ (including in modified\n form), You must:\n\n a. retain the following\ + \ if it is supplied by the Licensor\n with the Licensed Material:\n\n \ + \ i. identification of the creator(s) of the Licensed\n Material\ + \ and any others designated to receive\n attribution, in any reasonable\ + \ manner requested by\n the Licensor (including by pseudonym if\n \ + \ designated);\n\n ii. a copyright notice;\n\n \ + \ iii. a notice that refers to this Public License;\n\n iv. a notice\ + \ that refers to the disclaimer of\n warranties;\n\n \ + \ v. a URI or hyperlink to the Licensed Material to the\n extent reasonably\ + \ practicable;\n\n b. indicate if You modified the Licensed Material and\n \ + \ retain an indication of any previous modifications; and\n\n c.\ + \ indicate the Licensed Material is licensed under this\n Public License,\ + \ and include the text of, or the URI or\n hyperlink to, this Public License.\n\ + \n 2. You may satisfy the conditions in Section 3(a)(1) in any\n reasonable\ + \ manner based on the medium, means, and context in\n which You Share the Licensed\ + \ Material. For example, it may be\n reasonable to satisfy the conditions by providing\ + \ a URI or\n hyperlink to a resource that includes the required\n information.\n\ + \n 3. If requested by the Licensor, You must remove any of the\n information\ + \ required by Section 3(a)(1)(A) to the extent\n reasonably practicable.\n\n \ + \ 4. If You Share Adapted Material You produce, the Adapter's\n License You\ + \ apply must not prevent recipients of the Adapted\n Material from complying with\ + \ this Public License.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the Licensed\ + \ Rights include Sui Generis Database Rights that\napply to Your use of the Licensed Material:\n\ + \n a. for the avoidance of doubt, Section 2(a)(1) grants You the right\n to extract,\ + \ reuse, reproduce, and Share all or a substantial\n portion of the contents of the\ + \ database for NonCommercial purposes\n only;\n\n b. if You include all or a substantial\ + \ portion of the database\n contents in a database in which You have Sui Generis Database\n\ + \ Rights, then the database in which You have Sui Generis Database\n Rights (but\ + \ not its individual contents) is Adapted Material; and\n\n c. You must comply with the\ + \ conditions in Section 3(a) if You Share\n all or a substantial portion of the contents\ + \ of the database.\n\nFor the avoidance of doubt, this Section 4 supplements and does not\n\ + replace Your obligations under this Public License where the Licensed\nRights include other\ + \ Copyright and Similar Rights.\n\n\nSection 5 -- Disclaimer of Warranties and Limitation\ + \ of Liability.\n\n a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n\ + \ EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n AND AS-AVAILABLE,\ + \ AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n ANY KIND CONCERNING THE LICENSED MATERIAL,\ + \ WHETHER EXPRESS,\n IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n\ + \ WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\n PURPOSE, NON-INFRINGEMENT,\ + \ ABSENCE OF LATENT OR OTHER DEFECTS,\n ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS,\ + \ WHETHER OR NOT\n KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n\ + \ ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\n b. TO THE EXTENT\ + \ POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE\n TO YOU ON ANY LEGAL THEORY (INCLUDING,\ + \ WITHOUT LIMITATION,\n NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n\ + \ INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\n COSTS, EXPENSES,\ + \ OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR\n USE OF THE LICENSED MATERIAL, EVEN\ + \ IF THE LICENSOR HAS BEEN\n ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES,\ + \ OR\n DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR\n IN PART,\ + \ THIS LIMITATION MAY NOT APPLY TO YOU.\n\n c. The disclaimer of warranties and limitation\ + \ of liability provided\n above shall be interpreted in a manner that, to the extent\n\ + \ possible, most closely approximates an absolute disclaimer and\n waiver of all\ + \ liability.\n\n\nSection 6 -- Term and Termination.\n\n a. This Public License applies\ + \ for the term of the Copyright and\n Similar Rights licensed here. However, if You\ + \ fail to comply with\n this Public License, then Your rights under this Public License\n\ + \ terminate automatically.\n\n b. Where Your right to use the Licensed Material has\ + \ terminated under\n Section 6(a), it reinstates:\n\n 1. automatically as of the\ + \ date the violation is cured, provided\n it is cured within 30 days of Your discovery\ + \ of the\n violation; or\n\n 2. upon express reinstatement by the Licensor.\n\ + \n For the avoidance of doubt, this Section 6(b) does not affect any\n right the\ + \ Licensor may have to seek remedies for Your violations\n of this Public License.\n\ + \n c. For the avoidance of doubt, the Licensor may also offer the\n Licensed Material\ + \ under separate terms or conditions or stop\n distributing the Licensed Material at\ + \ any time; however, doing so\n will not terminate this Public License.\n\n d. Sections\ + \ 1, 5, 6, 7, and 8 survive termination of this Public\n License.\n\n\nSection 7 --\ + \ Other Terms and Conditions.\n\n a. The Licensor shall not be bound by any additional\ + \ or different\n terms or conditions communicated by You unless expressly agreed.\n\n\ + \ b. Any arrangements, understandings, or agreements regarding the\n Licensed Material\ + \ not stated herein are separate from and\n independent of the terms and conditions\ + \ of this Public License.\n\n\nSection 8 -- Interpretation.\n\n a. For the avoidance of\ + \ doubt, this Public License does not, and\n shall not be interpreted to, reduce, limit,\ + \ restrict, or impose\n conditions on any use of the Licensed Material that could lawfully\n\ + \ be made without permission under this Public License.\n\n b. To the extent possible,\ + \ if any provision of this Public License is\n deemed unenforceable, it shall be automatically\ + \ reformed to the\n minimum extent necessary to make it enforceable. If the provision\n\ + \ cannot be reformed, it shall be severed from this Public License\n without affecting\ + \ the enforceability of the remaining terms and\n conditions.\n\n c. No term or condition\ + \ of this Public License will be waived and no\n failure to comply consented to unless\ + \ expressly agreed to by the\n Licensor.\n\n d. Nothing in this Public License constitutes\ + \ or may be interpreted\n as a limitation upon, or waiver of, any privileges and immunities\n\ + \ that apply to the Licensor or You, including from the legal\n processes of any\ + \ jurisdiction or authority.\n\n=======================================================================\n\ + \nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons\ + \ may elect to apply one of\nits public licenses to material it publishes and in those instances\n\ + will be considered the “Licensor.” The text of the Creative Commons\npublic licenses is\ + \ dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the\ + \ limited purpose of indicating that\nmaterial is shared under a Creative Commons public\ + \ license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies,\ + \ Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or\ + \ any other trademark or logo\nof Creative Commons without its prior written consent including,\n\ + without limitation, in connection with any unauthorized modifications\nto any of its public\ + \ licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed\ + \ material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic\ + \ licenses.\n\nCreative Commons may be contacted at creativecommons.org." json: cc-by-nc-4.0.json - yml: cc-by-nc-4.0.yml + yaml: cc-by-nc-4.0.yml html: cc-by-nc-4.0.html - text: cc-by-nc-4.0.LICENSE + license: cc-by-nc-4.0.LICENSE - license_key: cc-by-nc-nd-1.0 + category: Source-available spdx_license_key: CC-BY-NC-ND-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Creative Commons + + Attribution-NoDerivs-NonCommercial 1.0 + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. + "Licensor" means the individual or entity that offers the Work under the terms of this License. + "Original Author" means the individual or entity who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. + + 4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. + You may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works. + If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied. Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + 5. Representations, Warranties and Disclaimer + + By offering the Work for public release under this License, Licensor represents and warrants that, to the best of Licensor's knowledge after reasonable inquiry: + Licensor has secured all rights in the Work necessary to grant the license rights hereunder and to permit the lawful exercise of the rights granted hereunder without You having any obligation to pay any royalties, compulsory license fees, residuals or any other payments; + The Work does not infringe the copyright, trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party. + EXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF THE WORK. + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 8. Miscellaneous + + Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at http://creativecommons.org/. + + « Back to Commons Deed json: cc-by-nc-nd-1.0.json - yml: cc-by-nc-nd-1.0.yml + yaml: cc-by-nc-nd-1.0.yml html: cc-by-nc-nd-1.0.html - text: cc-by-nc-nd-1.0.LICENSE + license: cc-by-nc-nd-1.0.LICENSE - license_key: cc-by-nc-nd-2.0 + category: Source-available spdx_license_key: CC-BY-NC-ND-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: "Attribution-NonCommercial-NoDerivs 2.0\n\nCREATIVE COMMONS CORPORATION IS NOT A LAW\ + \ FIRM AND DOES NOT PROVIDE\nLEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE\ + \ AN\nATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION\nON AN \"\ + AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE\nINFORMATION PROVIDED,\ + \ AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM\nITS USE.\n\nLicense\n\nTHE WORK (AS\ + \ DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE\nCOMMONS PUBLIC LICENSE (\"\ + CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY\nCOPYRIGHT AND/OR OTHER APPLICABLE LAW.\ + \ ANY USE OF THE WORK OTHER THAN AS\nAUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\ + \nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE\nTO BE BOUND\ + \ BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE\nRIGHTS CONTAINED HERE IN CONSIDERATION\ + \ OF YOUR ACCEPTANCE OF SUCH TERMS\nAND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\"\ + \ means a work, such as a periodical issue, anthology or\nencyclopedia, in which the Work\ + \ in its entirety in unmodified form,\nalong with a number of other contributions, constituting\ + \ separate and\nindependent works in themselves, are assembled into a collective whole.\n\ + A work that constitutes a Collective Work will not be considered a\nDerivative Work (as\ + \ defined below) for the purposes of this License.\n\n\"Derivative Work\" means a work based\ + \ upon the Work or upon the Work and\nother pre-existing works, such as a translation, musical\ + \ arrangement,\ndramatization, fictionalization, motion picture version, sound\nrecording,\ + \ art reproduction, abridgment, condensation, or any other form\nin which the Work may be\ + \ recast, transformed, or adapted, except that a\nwork that constitutes a Collective Work\ + \ will not be considered a\nDerivative Work for the purpose of this License. For the avoidance\ + \ of\ndoubt, where the Work is a musical composition or sound recording, the\nsynchronization\ + \ of the Work in timed-relation with a moving image\n(\"synching\") will be considered a\ + \ Derivative Work for the purpose of\nthis License.\n\n\"Licensor\" means the individual\ + \ or entity that offers the Work under the\nterms of this License.\n\n\"Original Author\"\ + \ means the individual or entity who created the Work.\n\n\"Work\" means the copyrightable\ + \ work of authorship offered under the\nterms of this License.\n\n\"You\" means an individual\ + \ or entity exercising rights under this License\nwho has not previously violated the terms\ + \ of this License with respect\nto the Work, or who has received express permission from\ + \ the Licensor to\nexercise rights under this License despite a previous violation. 2. Fair\n\ + Use Rights. Nothing in this license is intended to reduce, limit, or\nrestrict any rights\ + \ arising from fair use, first sale or other\nlimitations on the exclusive rights of the\ + \ copyright owner under\ncopyright law or other applicable laws.\n\n3. License Grant. \n\ + \nSubject to the terms and conditions of this License, Licensor hereby\ngrants You a worldwide,\ + \ royalty-free, non-exclusive, perpetual (for the\nduration of the applicable copyright)\ + \ license to exercise the rights in\nthe Work as stated below:\n\nto reproduce the Work,\ + \ to incorporate the Work into one or more\nCollective Works, and to reproduce the Work\ + \ as incorporated in the\nCollective Works;\n\nto distribute copies or phonorecords of,\ + \ display publicly, perform\npublicly, and perform publicly by means of a digital audio\ + \ transmission\nthe Work including as incorporated in Collective Works;\n\nThe above rights\ + \ may be exercised in all media and formats whether now\nknown or hereafter devised. The\ + \ above rights include the right to make\nsuch modifications as are technically necessary\ + \ to exercise the rights\nin other media and formats, but otherwise you have no rights to\ + \ make\nDerivative Works. All rights not expressly granted by Licensor are\nhereby reserved,\ + \ including but not limited to the rights set forth in\nSections 4(d) and 4(e).\n\n4. Restrictions.\n\ + \nThe license granted in Section 3 above is expressly made subject to and\nlimited by the\ + \ following restrictions:\n\nYou may distribute, publicly display, publicly perform, or\ + \ publicly\ndigitally perform the Work only under the terms of this License, and You\nmust\ + \ include a copy of, or the Uniform Resource Identifier for, this\nLicense with every copy\ + \ or phonorecord of the Work You distribute,\npublicly display, publicly perform, or publicly\ + \ digitally perform. You\nmay not offer or impose any terms on the Work that alter or restrict\ + \ the\nterms of this License or the recipients' exercise of the rights granted\nhereunder.\ + \ You may not sublicense the Work. You must keep intact all\nnotices that refer to this\ + \ License and to the disclaimer of warranties.\nYou may not distribute, publicly display,\ + \ publicly perform, or publicly\ndigitally perform the Work with any technological measures\ + \ that control\naccess or use of the Work in a manner inconsistent with the terms of\nthis\ + \ License Agreement. The above applies to the Work as incorporated in\na Collective Work,\ + \ but this does not require the Collective Work apart\nfrom the Work itself to be made subject\ + \ to the terms of this License. If\nYou create a Collective Work, upon notice from any Licensor\ + \ You must, to\nthe extent practicable, remove from the Collective Work any reference to\n\ + such Licensor or the Original Author, as requested.\n\nYou may not exercise any of the rights\ + \ granted to You in Section 3 above\nin any manner that is primarily intended for or directed\ + \ toward\ncommercial advantage or private monetary compensation. The exchange of\nthe Work\ + \ for other copyrighted works by means of digital file-sharing or\notherwise shall not be\ + \ considered to be intended for or directed toward\ncommercial advantage or private monetary\ + \ compensation, provided there is\nno payment of any monetary compensation in connection\ + \ with the exchange\nof copyrighted works.\n\nIf you distribute, publicly display, publicly\ + \ perform, or publicly\ndigitally perform the Work, You must keep intact all copyright notices\n\ + for the Work and give the Original Author credit reasonable to the\nmedium or means You\ + \ are utilizing by conveying the name (or pseudonym if\napplicable) of the Original Author\ + \ if supplied; the title of the Work if\nsupplied; and to the extent reasonably practicable,\ + \ the Uniform Resource\nIdentifier, if any, that Licensor specifies to be associated with\ + \ the\nWork, unless such URI does not refer to the copyright notice or\nlicensing information\ + \ for the Work. Such credit may be implemented in\nany reasonable manner; provided, however,\ + \ that in the case of a\nCollective Work, at a minimum such credit will appear where any\ + \ other\ncomparable authorship credit appears and in a manner at least as\nprominent as\ + \ such other comparable authorship credit.\n\nFor the avoidance of doubt, where the Work\ + \ is a musical composition:\n\nPerformance Royalties Under Blanket Licenses. Licensor reserves\ + \ the\nexclusive right to collect, whether individually or via a performance\nrights society\ + \ (e.g. ASCAP, BMI, SESAC), royalties for the public\nperformance or public digital performance\ + \ (e.g. webcast) of the Work if\nthat performance is primarily intended for or directed\ + \ toward commercial\nadvantage or private monetary compensation.\n\nMechanical Rights and\ + \ Statutory Royalties. Licensor reserves the\nexclusive right to collect, whether individually\ + \ or via a music rights\nagency or designated agent (e.g. Harry Fox Agency), royalties for\ + \ any\nphonorecord You create from the Work (\"cover version\") and distribute,\nsubject\ + \ to the compulsory license created by 17 USC Section 115 of the\nUS Copyright Act (or the\ + \ equivalent in other jurisdictions), if Your\ndistribution of such cover version is primarily\ + \ intended for or directed\ntoward commercial advantage or private monetary compensation.\n\ + \nWebcasting Rights and Statutory Royalties. For the avoidance of doubt,\nwhere the Work\ + \ is a sound recording, Licensor reserves the exclusive\nright to collect, whether individually\ + \ or via a performance-rights\nsociety (e.g. SoundExchange), royalties for the public digital\n\ + performance (e.g. webcast) of the Work, subject to the compulsory\nlicense created by 17\ + \ USC Section 114 of the US Copyright Act (or the\nequivalent in other jurisdictions), if\ + \ Your public digital performance\nis primarily intended for or directed toward commercial\ + \ advantage or\nprivate monetary compensation.\n\n5. Representations, Warranties and Disclaimer\n\ + \nUNLESS OTHERWISE MUTUALLY AGREED BY THE PARTIES IN WRITING, LICENSOR\nOFFERS THE WORK\ + \ AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY\nKIND CONCERNING THE WORK, EXPRESS,\ + \ IMPLIED, STATUTORY OR OTHERWISE,\nINCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE,\ + \ MERCHANTIBILITY,\nFITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF\n\ + LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS,\nWHETHER OR NOT\ + \ DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE\nEXCLUSION OF IMPLIED WARRANTIES, SO\ + \ SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability.\n\nEXCEPT TO THE EXTENT\ + \ REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL\nLICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY\ + \ FOR ANY SPECIAL,\nINCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT\ + \ OF\nTHIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED\nOF THE POSSIBILITY\ + \ OF SUCH DAMAGES.\n\n7. Termination\n\nThis License and the rights granted hereunder will\ + \ terminate\nautomatically upon any breach by You of the terms of this License.\nIndividuals\ + \ or entities who have received Collective Works from You\nunder this License, however,\ + \ will not have their licenses terminated\nprovided such individuals or entities remain\ + \ in full compliance with\nthose licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any\n\ + termination of this License.\n\nSubject to the above terms and conditions, the license granted\ + \ here is\nperpetual (for the duration of the applicable copyright in the Work).\nNotwithstanding\ + \ the above, Licensor reserves the right to release the\nWork under different license terms\ + \ or to stop distributing the Work at\nany time; provided, however that any such election\ + \ will not serve to\nwithdraw this License (or any other license that has been, or is\n\ + required to be, granted under the terms of this License), and this\nLicense will continue\ + \ in full force and effect unless terminated as\nstated above.\n\n8. Miscellaneous\n\nEach\ + \ time You distribute or publicly digitally perform the Work or a\nCollective Work, the\ + \ Licensor offers to the recipient a license to the\nWork on the same terms and conditions\ + \ as the license granted to You\nunder this License.\n\nIf any provision of this License\ + \ is invalid or unenforceable under\napplicable law, it shall not affect the validity or\ + \ enforceability of\nthe remainder of the terms of this License, and without further action\n\ + by the parties to this agreement, such provision shall be reformed to\nthe minimum extent\ + \ necessary to make such provision valid and\nenforceable.\n\nNo term or provision of this\ + \ License shall be deemed waived and no\nbreach consented to unless such waiver or consent\ + \ shall be in writing\nand signed by the party to be charged with such waiver or consent.\n\ + \nThis License constitutes the entire agreement between the parties with\nrespect to the\ + \ Work licensed here. There are no understandings,\nagreements or representations with respect\ + \ to the Work not specified\nhere. Licensor shall not be bound by any additional provisions\ + \ that may\nappear in any communication from You. This License may not be modified\nwithout\ + \ the mutual written agreement of the Licensor and You.\n\nCreative Commons is not a party\ + \ to this License, and makes no warranty\nwhatsoever in connection with the Work. Creative\ + \ Commons will not be\nliable to You or any party on any legal theory for any damages\n\ + whatsoever, including without limitation any general, special,\nincidental or consequential\ + \ damages arising in connection to this\nlicense. Notwithstanding the foregoing two (2)\ + \ sentences, if Creative\nCommons has expressly identified itself as the Licensor hereunder,\ + \ it\nshall have all rights and obligations of Licensor.\n\nExcept for the limited purpose\ + \ of indicating to the public that the Work\nis licensed under the CCPL, neither party will\ + \ use the trademark\n\"Creative Commons\" or any related trademark or logo of Creative Commons\n\ + without the prior written consent of Creative Commons. Any permitted use\nwill be in compliance\ + \ with Creative Commons' then-current trademark\nusage guidelines, as may be published on\ + \ its website or otherwise made\navailable upon request from time to time.\n\nCreative Commons\ + \ may be contacted at http://creativecommons.org/." json: cc-by-nc-nd-2.0.json - yml: cc-by-nc-nd-2.0.yml + yaml: cc-by-nc-nd-2.0.yml html: cc-by-nc-nd-2.0.html - text: cc-by-nc-nd-2.0.LICENSE + license: cc-by-nc-nd-2.0.LICENSE - license_key: cc-by-nc-nd-2.0-at + category: Free Restricted spdx_license_key: LicenseRef-scancode-cc-by-nc-nd-2.0-at other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Namensnennung - Nicht-kommerziell - Keine Bearbeitung 2.0 + + + CREATIVE COMMONS IST KEINE RECHTSANWALTSGESELLSCHAFT UND LEISTET KEINE RECHTSBERATUNG. DIE WEITERGABE DIESES LIZENZENTWURFES FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS ERBRINGT DIESE INFORMATIONEN OHNE GEWÄHR. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS IHREM GEBRAUCH ERGEBEN. + + Lizenzvertrag + DAS URHEBERRECHTLICH GESCHÜTZTE WERK ODER DER SONSTIGE SCHUTZGEGENSTAND (WIE UNTEN BESCHRIEBEN) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE COMMONS PUBLIC LICENSE ("CCPL" ODER "LIZENZVERTRAG") ZUR VERFÜGUNG GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER EINSCHLÄGIGE GESETZE GESCHÜTZT. + DURCH DIE AUSÜBUNG EINER DURCH DIESEN LIZENZVERTRAG ERTEILTEN BEFUGNIS ERKLÄREN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH EINVERSTANDEN. DER LIZENZGEBER ERTEILT IHNEN DIE HIER BESCHRIEBENE NUTZUNGSBEWILLIGUNG UNTER DER VORAUSSETZUNG, DASS SIE SICH MIT DIESEN VERTRAGSBEDINGUNGEN EINVERSTANDEN ERKLÄREN. + 1. Definitionen + + Unter einer "Bearbeitung" wird eine Übersetzung oder andere Bearbeitung des Werkes verstanden, die eine eigentümliche geistige Schöpfung von Ihnen ist bzw eine Übersetzung oder andere Bearbeitung eines anderen urheberrechtlichen Schutzgegenstandes als einem Werk, wenn diese zu einem eigenen Schutzrecht führt. Eine freie Benutzung eines Werkes wird nicht als Bearbeitung angesehen. + + Unter den "Lizenzelementen" werden + die folgenden Lizenzcharakteristika verstanden, die vom Lizenzgeber ausgewählt und in der Bezeichnung der Lizenz genannt werden: "Namensnennung", "Nicht-kommerziell", "Weitergabe unter gleichen Bedingungen". + Unter dem "Lizenzgeber" wird die natürliche oder juristische Person verstanden, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet. + Unter einem "Sammelwerk" wird eine Sammlung verstanden, die infolge der Zusammenstellung einzelner Beiträge zu einem einheitlichen Ganzen eine eigentümliche geistige Schöpfung darstellt. Darunter fallen auch Sammlungen von Werken, Daten oder anderen unabhängigen Elementen, die systematisch oder methodisch angeordnet und einzeln mit elektronischen Mitteln oder auf andere Weise zugänglich sind, wenn sie infolge der Auswahl oder Anordnung des Stoffes eine eigentümliche geistige Schöpfung sind (Datenbankwerke). Ein Sammelwerk wird im Zusammenhang mit dieser Lizenz nicht als Bearbeitung (wie oben beschrieben) angesehen. + + + Mit "SIE" und "Ihnen" ist die natürliche oder juristische Person gemeint, die die in dieser Lizenz erteilte Nutzungsbewilligung (Befugnisse) ausübt und die zuvor die Bedingungen dieser Lizenz im Hinblick auf das Werk nicht verletzt hat, oder die die ausdrückliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese Lizenz erteilte Nutzungsbewilligung trotz einer vorherigen Verletzung auszuüben. + Unter dem "Schutzgegenstand" wird das Werk oder Sammelwerk oder das Schutzobjekt eines verwandten Schutzrechts verstanden, das Ihnen unter den Bedingungen dieser Lizenz angeboten wird. + + Unter dem "Urheber" wird die natürliche Person verstanden, die das Werk geschaffen hat. + + + + Unter einem "verwandten Schutzrecht" wird das Recht an einem anderen urheberrechtlichen Schutzgegenstand als einem Werk verstanden, zum Beispiel einem nachgelassenen Werk, einem Lichtbild, einer Datenbank, einem Schallträger, einer Rundfunksendung, einem Laufbild oder einer Darbietung eines ausübenden Künstlers. + Unter dem "Werk" wird eine eigentümliche geistige Schöpfung verstanden, die Ihnen unter den Bedingungen dieser Lizenz angeboten wird. + + 2. Schranken des Urheberrechts. Diese Lizenz lässt sämtliche Rechte unberührt, die sich aus den Beschränkungen der Verwertungsrechte, aus dem Erschöpfungsgrundsatz oder anderen Beschränkungen der Ausschließlichkeitsrechte des Rechtsinhabers durch die Anwendung findenden Gesetze ergeben. + 3. Lizenzierung. Unter den Bedingungen dieses Lizenzvertrages erteilt Ihnen der Lizenzgeber eine unentgeltliche, räumlich und zeitlich (für die Dauer des Urheberrechts oder verwandten Schutzrechts) unbeschränkte, nicht-ausschließliche Nutzungsbewilligung, den Schutzgegenstand in der folgenden Art und Weise zu nutzen: + + den Schutzgegenstand in körperlicher Form zu verwerten, insbesondere zu vervielfältigen und zu verbreiten; + den Schutzgegenstand in unkörperlicher Form öffentlich wiederzugeben, insbesondere zu senden, weiterzusenden, vorzutragen, aufzuführen, vorzuführen und öffentlich zur Verfügung zu stellen; + den Schutzgegenstand auf Bild- oder Schallträger festzuhalten und mit dem Bild- oder Schallträger auf die in 3 a. oder b. erlaubte Weise zu verfahren. + + + Die in diesem Lizenzvertrag erteilte Nutzungsbewilligung kann für alle bekannten Nutzungsarten ausgeübt werden. Die genannte Nutzungsbewilligung beinhaltet die Befugnis, solche Veränderungen an dem Werk vorzunehmen, die technisch erforderlich sind, um die Nutzungsbewilligung für alle Nutzungsarten wahrzunehmen. Insbesondere sind davon die Anpassung an andere Medien und auf andere Dateiformate umfasst. + 4. Beschränkungen. Die Erteilung der Nutzungsbewilligung gemäß Ziffer 3 erfolgt ausdrücklich nur unter den folgenden Bedingungen: + + Sie dürfen den Schutzgegenstand ausschließlich unter den Bedingungen dieser Lizenz vervielfältigen, verbreiten oder im Sinne von Ziffer 3.b. dieses Vertrags öffentlich wiedergeben und Sie müssen stets eine Kopie oder die vollständige Internetadresse in Form des Uniform-Resource-Identifier (URI) dieser Lizenz beifügen, wenn Sie den Schutzgegenstand vervielfältigen, verbreiten oder im Sinne von Ziffer 3.b. dieses Vertrags öffentlich wiedergeben. Sie dürfen keine Vertragsbedingungen anbieten oder fordern, die die Bedingungen dieser Lizenz oder die durch sie gewährten Befugnisse ändern oder beschränken. Sie dürfen den Schutzgegenstand nicht unterlizenzieren. Sie müssen alle Hinweise unverändert lassen, die auf diese Lizenz und den Haftungs- und/oder Gewährleistungsausschluss hinweisen. Sie dürfen den Schutzgegenstand mit keinen technischen Schutzmaßnahmen versehen, die den Zugang oder den Gebrauch des Schutzgegenstandes in einer Weise kontrollieren, die mit den Bedingungen dieser Lizenz im Widerspruch stehen. Die genannten Beschränkungen gelten auch für den Fall, dass der Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet; sie verlangen aber nicht, dass das Sammelwerk insgesamt zum Gegenstand dieser Lizenz gemacht wird. Wenn Sie ein Sammelwerk erstellen, müssen Sie - soweit dies praktikabel ist - auf die Aufforderung eines Lizenzgebers oder Urhebers hin aus dem Sammelwerk jeglichen Hinweis auf diesen Lizenzgeber oder diesen Urheber entfernen. + + Sie dürfen die in Ziffer 3 erteilten Befugnisse in keiner Weise verwenden, die überwiegend auf einen geschäftlichen Vorteil oder eine vertraglich geschuldete geldwerte Vergütung abzielt oder darauf gerichtet ist. + Wenn Sie den Schutzgegenstand oder ein Sammelwerk vervielfältigen, verbreiten oder im Sinne von Ziffer 3.b. dieses Vertrags öffentlich wiedergeben, müssen Sie alle Urhebervermerke für den Schutzgegenstand unverändert lassen und die Urheberschaft oder Rechtsinhaberschaft in einer der von Ihnen vorgenommenen Nutzung angemessenen Form anerkennen, indem Sie den Namen (oder das Pseudonym, falls ein solches verwendet wird) des Urhebers oder Rechtsinhabers nennen, wenn dieser angegeben ist. Dies gilt auch für den Titel des Schutzgegenstandes, wenn dieser angegeben ist, sowie - in einem vernünftigerweise durchführbaren Umfang - für die mit dem Schutzgegenstand zu verbindende vollständige Internetadresse in Form des Uniform-Resource-Identifier (URI), wie sie der Lizenzgeber angegeben hat, sofern dies geschehen ist, es sei denn, diese Internetadresse verweist nicht auf den Urhebervermerk oder die Lizenzinformationen zu dem Schutzgegenstand. + Obwohl die gemäß Ziffer 3 erteilten Befugnisse in umfassender Weise ausgeübt werden dürfen, findet diese Erlaubnis ihre gesetzliche Grenze in den Persönlichkeitsrechten sowie im Schutz der berechtigten geistigen Interessen der Urheber und ausübenden Künstler, die nicht dadurch gefährdet werden dürfen, dass ein Schutzgegenstand über das gesetzlich zulässige Maß hinaus beeinträchtigt wird. + 5. Gewährleistung. + Sofern dies von den Vertragsparteien nicht schriftlich anders vereinbart wurde, bietet der Lizenzgeber keine Gewährleistung für die in diesem Lizenzvertrag erteilte Nutzungsbewilligung. Für Mängel anderer Art, insbesondere bei der mangelhaften Lieferung von Verkörperungen des Schutzgegenstandes, richtet sich die Gewährleistung nach der Regelung, die die Person, die Ihnen den Schutzgegenstand zur Verfügung stellt, mit Ihnen außerhalb der Lizenz vereinbart, oder - wenn eine solche Regelung nicht getroffen wurde - nach den gesetzlichen Vorschriften. + 6. Haftung. Über die in Ziffer 5 genannte Gewährleistung hinaus haftet Ihnen der Lizenzgeber bezüglich Schäden, die in Verbindung mit der Erteilung der Nutzungsbewilligung entstehen, nur für Vorsatz. Für Geschäfte zwischen Unternehmern und Verbrauchern im Sinne des österreichischen Konsumentenschutzgesetzes gilt die Abweichung, dass nur die Haftung für leichte Fahrlässigkeit bei anderen Schäden als Personenschäden ausgeschlossen ist. + 7. Vertragsende + + Dieser Lizenzvertrag und die durch diesen erteilten Befugnisse enden automatisch bei jeder Verletzung der Vertragsbedingungen durch Sie. Die Ziffern 1, 2, 5, 6, 7 und 8 gelten bei einer Vertragsbeendigung fort. + Unter den oben genannten Bedingungen erfolgt die Lizenz dauerhaft (für die Dauer des Urheberrechts oder verwandten Schutzrechts). Dennoch behält sich der Lizenzgeber das Recht vor, den Schutzgegenstand unter anderen Lizenzbedingungen zu nutzen oder die eigene Weitergabe des Schutzgegenstandes jederzeit zu beenden, vorausgesetzt, dass solche Handlungen nicht dem Widerruf dieser Lizenz dienen (oder jeder anderen Lizenzierung, die auf Grundlage dieser Lizenz erfolgt ist oder erfolgen muss) und diese Lizenz wirksam bleibt, bis sie unter den oben genannten Voraussetzungen endet. + 8. Schlussbestimmungen + + Jedes Mal, wenn Sie den Schutzgegenstand vervielfältigen, verbreiten oder im Sinne von Ziffer 3.b. dieses Vertrags öffentlich wiedergeben, bietet der Lizenzgeber dem Erwerber eine Lizenz für den Schutzgegenstand unter denselben Vertragsbedingungen an, unter denen er Ihnen die Lizenz erteilt hat. + Sollte eine Bestimmung dieses Lizenzvertrages unwirksam sein, so wird die Wirksamkeit der übrigen Lizenzbestimmungen dadurch nicht berührt und an die Stelle der unwirksamen Bestimmung tritt die wirksame Bestimmung, die dem mit der unwirksamen Bestimmung angestrebten Zweck am nächsten kommt. + Nichts soll dahingehend ausgelegt werden, dass auf eine Bestimmung dieses Lizenzvertrages verzichtet oder einer Vertragsverletzung zugestimmt wird, so lange ein solcher Verzicht oder eine solche Zustimmung nicht schriftlich vorliegt und von der verzichtenden oder zustimmenden Vertragspartei unterschrieben ist. + Dieser Lizenzvertrag stellt die vollständige Vereinbarung zwischen den Vertragsparteien hinsichtlich des Schutzgegenstandes dar. Es gibt keine weiteren ergänzenden Vereinbarungen oder mündlichen Abreden im Hinblick auf den Schutzgegenstand. Der Lizenzgeber ist an keine zusätzlichen Abreden gebunden, die aus irgendeiner Absprache mit Ihnen entstehen könnten. Der Lizenzvertrag kann nicht ohne eine übereinstimmende schriftliche Vereinbarung zwischen dem Lizenzgeber und Ihnen abgeändert werden. + Auf diesen Lizenzvertrag findet das Recht der Bundesrepublik Österreich Anwendung. + + « Zurück zu Commons Deed json: cc-by-nc-nd-2.0-at.json - yml: cc-by-nc-nd-2.0-at.yml + yaml: cc-by-nc-nd-2.0-at.yml html: cc-by-nc-nd-2.0-at.html - text: cc-by-nc-nd-2.0-at.LICENSE + license: cc-by-nc-nd-2.0-at.LICENSE - license_key: cc-by-nc-nd-2.0-au + category: Source-available spdx_license_key: LicenseRef-scancode-cc-by-nc-nd-2.0-au other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: "Attribution-NonCommercial-NoDerivs 2.0 Australia\n\n\nCREATIVE COMMONS CORPORATION\ + \ IS NOT A LAW FIRM AND DOES NOT PROVIDE\nLEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES\ + \ NOT CREATE AN\nATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION\n\ + ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE\nINFORMATION PROVIDED,\ + \ AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM\nITS USE.\n\nLicence \n\nTHE WORK (AS\ + \ DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE\nCOMMONS PUBLIC LICENCE (\"\ + CCPL\" OR \"LICENCE\"). THE WORK IS PROTECTED BY\nCOPYRIGHT AND/OR OTHER APPLICABLE LAW.\ + \ ANY USE OF THE WORK OTHER THAN AS\nAUTHORISED UNDER THIS LICENCE AND/OR APPLICABLE LAW\ + \ IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE\n\ + TO BE BOUND BY THE TERMS OF THIS LICENCE. THE LICENSOR GRANTS YOU THE\nRIGHTS CONTAINED\ + \ HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS\nAND CONDITIONS.\n\n1. Definitions\ + \ \n\n\"Collective Work\" means a work, such as a periodical issue, anthology or\nencyclopaedia,\ + \ in which the Work in its entirety in unmodified form,\nalong with a number of other contributions,\ + \ constituting separate and\nindependent works in themselves, are assembled into a collective\ + \ whole.\nA work that constitutes a Collective Work will not be considered a\nDerivative\ + \ Work (as defined below) for the purposes of this Licence.\n\n\"Derivative Work\" means\ + \ a work that reproduces a substantial part of the\nWork, or of the Work and other pre-existing\ + \ works protected by\ncopyright, or that is an adaptation of a Work that is a literary,\n\ + dramatic, musical or artistic work. Derivative Works include a\ntranslation, musical arrangement,\ + \ dramatisation, motion picture version,\nsound recording, art reproduction, abridgment,\ + \ condensation, or any\nother form in which a work may be adapted, except that a work that\n\ + constitutes a Collective Work will not be considered a Derivative Work\nfor the purpose\ + \ of this Licence. For the avoidance of doubt, where the\nWork is a musical composition\ + \ or sound recording, the synchronization of\nthe Work in timed-relation with a moving image\ + \ (\"synching\") will be\nconsidered a Derivative Work for the purpose of this Licence.\n\ + \n\"Licensor\" means the individual or entity that offers the Work under the\nterms of this\ + \ Licence. \n\n\"Moral rights law\" means laws under which an individual who creates a\n\ + work protected by copyright has rights of integrity of authorship of the\nwork, rights of\ + \ attribution of authorship of the work, rights not to\nhave authorship of the work falsely\ + \ attributed, or rights of a similar\nor analogous nature in the work anywhere in the world.\n\ + \n\"Original Author\" means the individual or entity who created the Work. \n\n\"Work\"\ + \ means the work or other subject-matter protected by copyright\nthat is offered under the\ + \ terms of this Licence, which may include\n(without limitation) a literary, dramatic, musical\ + \ or artistic work, a\nsound recording, cinematograph film, a published edition of a literary,\n\ + dramatic, musical or artistic work or a television or sound broadcast.\n\n\"You\" means\ + \ an individual or entity exercising rights under this Licence\nwho has not previously violated\ + \ the terms of this Licence with respect\nto the Work, or who has received express permission\ + \ from the Licensor to\nexercise rights under this Licence despite a previous violation.\n\ + \n\"Licence Elements\" means the following high-level licence attributes as\nselected by\ + \ Licensor and indicated in the title of this Licence:\nAttribution, NonCommercial, NoDerivatives,\ + \ ShareAlike.\n\n2. Fair Dealing and Other Rights.\n\nNothing in this Licence excludes or\ + \ modifies, or is intended to exclude\nor modify, (including by reducing, limiting, or restricting)\ + \ the rights\nof You or others to use the Work arising from fair dealings or other\nlimitations\ + \ on the rights of the copyright owner or the Original Author\nunder copyright law, moral\ + \ rights law or other applicable laws.\n\n3. Licence Grant. \n\nSubject to the terms and\ + \ conditions of this Licence, Licensor hereby\ngrants You a worldwide, royalty-free, non-exclusive,\ + \ perpetual (for the\nduration of the applicable copyright) licence to exercise the rights\ + \ in\nthe Work as stated below:\n\nto reproduce the Work, to incorporate the Work into one\ + \ or more\nCollective Works, and to reproduce the Work as incorporated in the\nCollective\ + \ Works;\n\nto publish, communicate to the public, distribute copies or records of,\nexhibit\ + \ or display publicly, perform publicly and perform publicly by\nmeans of a digital audio\ + \ transmission the Work including as incorporated\nin Collective Works;\n\nThe above rights\ + \ may be exercised in all media and formats whether now\nknown or hereafter devised. The\ + \ above rights include the right to make\nsuch modifications as are technically necessary\ + \ to exercise the rights\nin other media and formats. All rights not expressly granted by\ + \ Licensor\nunder this Licence are hereby reserved, including but not limited to the\nrights\ + \ set forth in Sections 4(d) and 4(e).\n\n4. Restrictions. \n\nThe licence granted in Section\ + \ 3 above is expressly made subject to and\nlimited by the following restrictions:\n\nYou\ + \ may publish, communicate to the public, distribute, publicly exhibit\nor display, publicly\ + \ perform, or publicly digitally perform the Work\nonly under the terms of this Licence,\ + \ and You must include a copy of, or\nthe Uniform Resource Identifier for, this Licence\ + \ with every copy or\nrecord of the Work You publish, communicate to the public, distribute,\n\ + publicly exhibit or display, publicly perform or publicly digitally\nperform. You may not\ + \ offer or impose any terms on the Work that exclude,\nalter or restrict the terms of this\ + \ Licence or the recipients' exercise\nof the rights granted hereunder. You may not sublicense\ + \ the Work. You\nmust keep intact all notices that refer to this Licence and to the\ndisclaimer\ + \ of representations and warranties. You may not publish,\ncommunicate to the public, distribute,\ + \ publicly exhibit or display,\npublicly perform, or publicly digitally perform the Work\ + \ with any\ntechnological measures that control access or use of the Work in a\nmanner inconsistent\ + \ with the terms of this Licence. The above applies to\nthe Work as incorporated in a Collective\ + \ Work, but this does not require\nthe Collective Work apart from the Work itself to be\ + \ made subject to the\nterms of this Licence. If You create a Collective Work, upon notice\ + \ from\nany Licensor You must, to the extent practicable, remove from the\nCollective Work\ + \ any reference to such Licensor or the Original Author,\nas requested.\n\nYou may not exercise\ + \ any of the rights granted to You in Section 3 above\nin any manner that is primarily intended\ + \ for or directed toward\ncommercial advantage or private monetary compensation. The exchange\ + \ of\nthe Work for other copyrighted works by means of digital file-sharing or\notherwise\ + \ shall not be considered to be intended for or directed toward\ncommercial advantage or\ + \ private monetary compensation, provided there is\nno payment of any monetary compensation\ + \ in connection with the exchange\nof copyrighted works.\n\nIf you publish, communicate\ + \ to the public, distribute, publicly exhibit\nor display, publicly perform, or publicly\ + \ digitally perform the Work or\nany Collective Works, You must keep intact all copyright\ + \ notices for the\nWork. You must also give the Original Author clear and reasonably\nprominent\ + \ credit, and (if applicable) that credit must be given in the\nparticular way made known\ + \ by the Original Author and otherwise as\nreasonable to the medium or means You are utilizing,\ + \ by conveying the\nidentity (such as by name or pseudonym if applicable) of the Original\n\ + Author if supplied; the title of the Work if supplied; to the extent\nreasonably practicable,\ + \ the Uniform Resource Identifier, if any, that\nLicensor specifies to be associated with\ + \ the Work, unless such URI does\nnot refer to the copyright notice or licensing information\ + \ for the Work.\nSuch credit may be implemented in any reasonable manner; provided,\nhowever,\ + \ that in the case of a Collective Work, at a minimum such credit\nwill appear where any\ + \ other comparable authorship credit appears and in\na manner at least as prominent as such\ + \ other comparable authorship\ncredit.\n\nFor the avoidance of doubt, where the Work is\ + \ a musical composition: \n\nPerformance Royalties Under Blanket Licences. Licensor reserves\ + \ the\nexclusive right to collect, whether individually or via a performance\nrights society\ + \ (e.g. ASCAP, BMI, SESAC), royalties for the communication\nto the public, broadcast, public\ + \ performance or public digital\nperformance (e.g. webcast) of the Work if that performance\ + \ is primarily\nintended for or directed toward commercial advantage or private monetary\n\ + compensation.\n\nMechanical Rights and Statutory Royalties. Licensor reserves the\nexclusive\ + \ right to collect, whether individually or via a music rights\nagency, designated agent\ + \ (e.g. Harry Fox Agency) or a music publisher,\nroyalties for any record You create from\ + \ the Work (\"cover version\") and\ndistribute, subject to the compulsory licence created\ + \ by 17 USC Section\n115 of the US Copyright Act (or an equivalent statutory licence under\n\ + the Australian Copyright Act or in other jurisdictions), if Your\ndistribution of such cover\ + \ version is primarily intended for or directed\ntoward commercial advantage or private\ + \ monetary compensation.\n\nWebcasting Rights and Statutory Royalties. For the avoidance\ + \ of doubt,\nwhere the Work is a sound recording, Licensor reserves the exclusive\nright\ + \ to collect, whether individually or via a performance-rights\nsociety (e.g. SoundExchange),\ + \ royalties for the public digital\nperformance (e.g. webcast) of the Work, subject to the\ + \ compulsory\nlicence created by 17 USC Section 114 of the US Copyright Act (or the\nequivalent\ + \ in other jurisdictions), if Your public digital performance\nis primarily intended for\ + \ or directed toward commercial advantage or\nprivate monetary compensation.\n\nFalse attribution\ + \ prohibited. Except as otherwise agreed in writing by\nthe Licensor, if You publish, communicate\ + \ to the public, distribute,\npublicly exhibit or display, publicly perform, or publicly\ + \ digitally\nperform the Work or any Collective Works in accordance with this\nLicence,\ + \ You must not falsely attribute the Work to someone other than\nthe Original Author.\n\n\ + Prejudice to honour or reputation prohibited. Except as otherwise agreed\nin writing by\ + \ the Licensor, if you publish, communicate to the public,\ndistribute, publicly exhibit\ + \ or display, publicly perform, or publicly\ndigitally perform the Work or any Collective\ + \ Works, You must not do\nanything that results in a material distortion of, the mutilation\ + \ of, or\na material alteration to, the Work that is prejudicial to the Original\nAuthor's\ + \ honour or reputation, and You must not do anything else in\nrelation to the Work that\ + \ is prejudicial to the Original Author's honour\nor reputation.\n\n5. Disclaimer.\n\nEXCEPT\ + \ AS EXPRESSLY STATED IN THIS LICENCE OR OTHERWISE MUTUALLY AGREED\nTO BY THE PARTIES IN\ + \ WRITING, AND TO THE FULL EXTENT PERMITTED BY\nAPPLICABLE LAW, LICENSOR OFFERS THE WORK\ + \ \"AS-IS\" AND MAKES NO\nREPRESENTATIONS, WARRANTIES OR CONDITIONS OF ANY KIND CONCERNING\ + \ THE\nWORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT\nLIMITATION, ANY\ + \ REPRESENTATIONS, WARRANTIES OR CONDITIONS REGARDING THE\nCONTENTS OR ACCURACY OF THE WORK,\ + \ OR OF TITLE, MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE, NONINFRINGEMENT, THE\ + \ ABSENCE OF LATENT OR\nOTHER DEFECTS, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR\ + \ NOT\nDISCOVERABLE.\n\n6. Limitation on Liability.\n\nTO THE FULL EXTENT PERMITTED BY APPLICABLE\ + \ LAW, AND EXCEPT FOR ANY\nLIABILITY ARISING FROM CONTRARY MUTUAL AGREEMENT AS REFERRED\ + \ TO IN\nSECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL\nTHEORY (INCLUDING,\ + \ WITHOUT LIMITATION, NEGLIGENCE) FOR ANY LOSS OR\nDAMAGE WHATSOEVER, INCLUDING (WITHOUT\ + \ LIMITATION) LOSS OF PRODUCTION OR\nOPERATION TIME, LOSS, DAMAGE OR CORRUPTION OF DATA\ + \ OR RECORDS; OR LOSS\nOF ANTICIPATED SAVINGS, OPPORTUNITY, REVENUE, PROFIT OR GOODWILL,\ + \ OR\nOTHER ECONOMIC LOSS; OR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE\nOR EXEMPLARY\ + \ DAMAGES ARISING OUT OF OR IN CONNECTION WITH THIS LICENCE\nOR THE USE OF THE WORK, EVEN\ + \ IF LICENSOR HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nIf applicable legislation\ + \ implies warranties or conditions, or imposes\nobligations or liability on the Licensor\ + \ in respect of this Licence that\ncannot be wholly or partly excluded, restricted or modified,\ + \ the\nLicensor's liability is limited, to the full extent permitted by the\napplicable\ + \ legislation, at its option, to:\n\nin the case of goods, any one or more of the following:\n\ + \ \nthe replacement of the goods or the supply of equivalent goods;\nthe repair of the\ + \ goods;\nthe payment of the cost of replacing the goods or of acquiring equivalent goods;\n\ + the payment of the cost of having the goods repaired; or\n\nin the case of services:\n\t\ + \nthe supplying of the services again; or \nthe payment of the cost of having the services\ + \ supplied again.\n\n\n7. Termination.\n\nThis Licence and the rights granted hereunder\ + \ will terminate\nautomatically upon any breach by You of the terms of this Licence.\nIndividuals\ + \ or entities who have received Collective Works from You\nunder this Licence, however,\ + \ will not have their licences terminated\nprovided such individuals or entities remain\ + \ in full compliance with\nthose licences. Sections 1, 2, 5, 6, 7, and 8 will survive any\n\ + termination of this Licence.\n\nSubject to the above terms and conditions, the licence granted\ + \ here is\nperpetual (for the duration of the applicable copyright in the Work).\nNotwithstanding\ + \ the above, Licensor reserves the right to release the\nWork under different licence terms\ + \ or to stop distributing the Work at\nany time; provided, however that any such election\ + \ will not serve to\nwithdraw this Licence (or any other licence that has been, or is\n\ + required to be, granted under the terms of this Licence), and this\nLicence will continue\ + \ in full force and effect unless terminated as\nstated above.\n\n8. Miscellaneous.\n\n\ + Each time You publish, communicate to the public, distribute or publicly\ndigitally perform\ + \ the Work or a Collective Work, the Licensor offers to\nthe recipient a licence to the\ + \ Work on the same terms and conditions as\nthe licence granted to You under this Licence.\n\ + \nIf any provision of this Licence is invalid or unenforceable under\napplicable law, it\ + \ shall not affect the validity or enforceability of\nthe remainder of the terms of this\ + \ Licence, and without further action\nby the parties to this agreement, such provision\ + \ shall be reformed to\nthe minimum extent necessary to make such provision valid and\n\ + enforceable.\n\nNo term or provision of this Licence shall be deemed waived and no\nbreach\ + \ consented to unless such waiver or consent shall be in writing\nand signed by the party\ + \ to be charged with such waiver or consent.\n\nThis Licence constitutes the entire agreement\ + \ between the parties with\nrespect to the Work licensed here. To the full extent permitted\ + \ by\napplicable law, there are no understandings, agreements or\nrepresentations with respect\ + \ to the Work not specified here. Licensor\nshall not be bound by any additional provisions\ + \ that may appear in any\ncommunication from You. This Licence may not be modified without\ + \ the\nmutual written agreement of the Licensor and You.\n\nThe construction, validity and\ + \ performance of this Licence shall be\ngoverned by the laws in force in New South Wales,\ + \ Australia." json: cc-by-nc-nd-2.0-au.json - yml: cc-by-nc-nd-2.0-au.yml + yaml: cc-by-nc-nd-2.0-au.yml html: cc-by-nc-nd-2.0-au.html - text: cc-by-nc-nd-2.0-au.LICENSE + license: cc-by-nc-nd-2.0-au.LICENSE - license_key: cc-by-nc-nd-2.5 + category: Source-available spdx_license_key: CC-BY-NC-ND-2.5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Attribution-NonCommercial-NoDerivs 2.5 + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. + "Licensor" means the individual or entity that offers the Work under the terms of this License. + "Original Author" means the individual or entity who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats, but otherwise you have no rights to make Derivative Works. All rights not expressly granted by Licensor are hereby reserved, including but not limited to the rights set forth in Sections 4(d) and 4(e). + + 4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(c), as requested. + You may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works. + If you distribute, publicly display, publicly perform, or publicly digitally perform the Work, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; and to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work. Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + For the avoidance of doubt, where the Work is a musical composition: + + Performance Royalties Under Blanket Licenses. Licensor reserves the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work if that performance is primarily intended for or directed toward commercial advantage or private monetary compensation. + Mechanical Rights and Statutory Royalties. Licensor reserves the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions), if Your distribution of such cover version is primarily intended for or directed toward commercial advantage or private monetary compensation. + Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor reserves the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions), if Your public digital performance is primarily intended for or directed toward commercial advantage or private monetary compensation. + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 8. Miscellaneous + + Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at http://creativecommons.org/. json: cc-by-nc-nd-2.5.json - yml: cc-by-nc-nd-2.5.yml + yaml: cc-by-nc-nd-2.5.yml html: cc-by-nc-nd-2.5.html - text: cc-by-nc-nd-2.5.LICENSE + license: cc-by-nc-nd-2.5.LICENSE - license_key: cc-by-nc-nd-3.0 + category: Source-available spdx_license_key: CC-BY-NC-ND-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Creative Commons Legal Code + + Attribution-NonCommercial-NoDerivs 3.0 Unported + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR + DAMAGES RESULTING FROM ITS USE. + + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE + COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY + COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS + AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE + TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY + BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS + CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND + CONDITIONS. + + 1. Definitions + + a. "Adaptation" means a work based upon the Work, or upon the Work and + other pre-existing works, such as a translation, adaptation, + derivative work, arrangement of music or other alterations of a + literary or artistic work, or phonogram or performance and includes + cinematographic adaptations or any other form in which the Work may be + recast, transformed, or adapted including in any form recognizably + derived from the original, except that a work that constitutes a + Collection will not be considered an Adaptation for the purpose of + this License. For the avoidance of doubt, where the Work is a musical + work, performance or phonogram, the synchronization of the Work in + timed-relation with a moving image ("synching") will be considered an + Adaptation for the purpose of this License. + b. "Collection" means a collection of literary or artistic works, such as + encyclopedias and anthologies, or performances, phonograms or + broadcasts, or other works or subject matter other than works listed + in Section 1(f) below, which, by reason of the selection and + arrangement of their contents, constitute intellectual creations, in + which the Work is included in its entirety in unmodified form along + with one or more other contributions, each constituting separate and + independent works in themselves, which together are assembled into a + collective whole. A work that constitutes a Collection will not be + considered an Adaptation (as defined above) for the purposes of this + License. + c. "Distribute" means to make available to the public the original and + copies of the Work through sale or other transfer of ownership. + d. "Licensor" means the individual, individuals, entity or entities that + offer(s) the Work under the terms of this License. + e. "Original Author" means, in the case of a literary or artistic work, + the individual, individuals, entity or entities who created the Work + or if no individual or entity can be identified, the publisher; and in + addition (i) in the case of a performance the actors, singers, + musicians, dancers, and other persons who act, sing, deliver, declaim, + play in, interpret or otherwise perform literary or artistic works or + expressions of folklore; (ii) in the case of a phonogram the producer + being the person or legal entity who first fixes the sounds of a + performance or other sounds; and, (iii) in the case of broadcasts, the + organization that transmits the broadcast. + f. "Work" means the literary and/or artistic work offered under the terms + of this License including without limitation any production in the + literary, scientific and artistic domain, whatever may be the mode or + form of its expression including digital form, such as a book, + pamphlet and other writing; a lecture, address, sermon or other work + of the same nature; a dramatic or dramatico-musical work; a + choreographic work or entertainment in dumb show; a musical + composition with or without words; a cinematographic work to which are + assimilated works expressed by a process analogous to cinematography; + a work of drawing, painting, architecture, sculpture, engraving or + lithography; a photographic work to which are assimilated works + expressed by a process analogous to photography; a work of applied + art; an illustration, map, plan, sketch or three-dimensional work + relative to geography, topography, architecture or science; a + performance; a broadcast; a phonogram; a compilation of data to the + extent it is protected as a copyrightable work; or a work performed by + a variety or circus performer to the extent it is not otherwise + considered a literary or artistic work. + g. "You" means an individual or entity exercising rights under this + License who has not previously violated the terms of this License with + respect to the Work, or who has received express permission from the + Licensor to exercise rights under this License despite a previous + violation. + h. "Publicly Perform" means to perform public recitations of the Work and + to communicate to the public those public recitations, by any means or + process, including by wire or wireless means or public digital + performances; to make available to the public Works in such a way that + members of the public may access these Works from a place and at a + place individually chosen by them; to perform the Work to the public + by any means or process and the communication to the public of the + performances of the Work, including by public digital performance; to + broadcast and rebroadcast the Work by any means including signs, + sounds or images. + i. "Reproduce" means to make copies of the Work by any means including + without limitation by sound or visual recordings and the right of + fixation and reproducing fixations of the Work, including storage of a + protected performance or phonogram in digital form or other electronic + medium. + + 2. Fair Dealing Rights. Nothing in this License is intended to reduce, + limit, or restrict any uses free from copyright or rights arising from + limitations or exceptions that are provided for in connection with the + copyright protection under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, + Licensor hereby grants You a worldwide, royalty-free, non-exclusive, + perpetual (for the duration of the applicable copyright) license to + exercise the rights in the Work as stated below: + + a. to Reproduce the Work, to incorporate the Work into one or more + Collections, and to Reproduce the Work as incorporated in the + Collections; and, + b. to Distribute and Publicly Perform the Work including as incorporated + in Collections. + + The above rights may be exercised in all media and formats whether now + known or hereafter devised. The above rights include the right to make + such modifications as are technically necessary to exercise the rights in + other media and formats, but otherwise you have no rights to make + Adaptations. Subject to 8(f), all rights not expressly granted by Licensor + are hereby reserved, including but not limited to the rights set forth in + Section 4(d). + + 4. Restrictions. The license granted in Section 3 above is expressly made + subject to and limited by the following restrictions: + + a. You may Distribute or Publicly Perform the Work only under the terms + of this License. You must include a copy of, or the Uniform Resource + Identifier (URI) for, this License with every copy of the Work You + Distribute or Publicly Perform. You may not offer or impose any terms + on the Work that restrict the terms of this License or the ability of + the recipient of the Work to exercise the rights granted to that + recipient under the terms of the License. You may not sublicense the + Work. You must keep intact all notices that refer to this License and + to the disclaimer of warranties with every copy of the Work You + Distribute or Publicly Perform. When You Distribute or Publicly + Perform the Work, You may not impose any effective technological + measures on the Work that restrict the ability of a recipient of the + Work from You to exercise the rights granted to that recipient under + the terms of the License. This Section 4(a) applies to the Work as + incorporated in a Collection, but this does not require the Collection + apart from the Work itself to be made subject to the terms of this + License. If You create a Collection, upon notice from any Licensor You + must, to the extent practicable, remove from the Collection any credit + as required by Section 4(c), as requested. + b. You may not exercise any of the rights granted to You in Section 3 + above in any manner that is primarily intended for or directed toward + commercial advantage or private monetary compensation. The exchange of + the Work for other copyrighted works by means of digital file-sharing + or otherwise shall not be considered to be intended for or directed + toward commercial advantage or private monetary compensation, provided + there is no payment of any monetary compensation in connection with + the exchange of copyrighted works. + c. If You Distribute, or Publicly Perform the Work or Collections, You + must, unless a request has been made pursuant to Section 4(a), keep + intact all copyright notices for the Work and provide, reasonable to + the medium or means You are utilizing: (i) the name of the Original + Author (or pseudonym, if applicable) if supplied, and/or if the + Original Author and/or Licensor designate another party or parties + (e.g., a sponsor institute, publishing entity, journal) for + attribution ("Attribution Parties") in Licensor's copyright notice, + terms of service or by other reasonable means, the name of such party + or parties; (ii) the title of the Work if supplied; (iii) to the + extent reasonably practicable, the URI, if any, that Licensor + specifies to be associated with the Work, unless such URI does not + refer to the copyright notice or licensing information for the Work. + The credit required by this Section 4(c) may be implemented in any + reasonable manner; provided, however, that in the case of a + Collection, at a minimum such credit will appear, if a credit for all + contributing authors of Collection appears, then as part of these + credits and in a manner at least as prominent as the credits for the + other contributing authors. For the avoidance of doubt, You may only + use the credit required by this Section for the purpose of attribution + in the manner set out above and, by exercising Your rights under this + License, You may not implicitly or explicitly assert or imply any + connection with, sponsorship or endorsement by the Original Author, + Licensor and/or Attribution Parties, as appropriate, of You or Your + use of the Work, without the separate, express prior written + permission of the Original Author, Licensor and/or Attribution + Parties. + d. For the avoidance of doubt: + + i. Non-waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme cannot be waived, the Licensor + reserves the exclusive right to collect such royalties for any + exercise by You of the rights granted under this License; + ii. Waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme can be waived, the Licensor reserves + the exclusive right to collect such royalties for any exercise by + You of the rights granted under this License if Your exercise of + such rights is for a purpose or use which is otherwise than + noncommercial as permitted under Section 4(b) and otherwise waives + the right to collect royalties through any statutory or compulsory + licensing scheme; and, + iii. Voluntary License Schemes. The Licensor reserves the right to + collect royalties, whether individually or, in the event that the + Licensor is a member of a collecting society that administers + voluntary licensing schemes, via that society, from any exercise + by You of the rights granted under this License that is for a + purpose or use which is otherwise than noncommercial as permitted + under Section 4(b). + e. Except as otherwise agreed in writing by the Licensor or as may be + otherwise permitted by applicable law, if You Reproduce, Distribute or + Publicly Perform the Work either by itself or as part of any + Collections, You must not distort, mutilate, modify or take other + derogatory action in relation to the Work which would be prejudicial + to the Original Author's honor or reputation. + + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED BY THE PARTIES IN WRITING, LICENSOR + OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY + KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, + INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, + FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF + LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, + WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION + OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE + LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR + ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES + ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS + BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + a. This License and the rights granted hereunder will terminate + automatically upon any breach by You of the terms of this License. + Individuals or entities who have received Collections from You under + this License, however, will not have their licenses terminated + provided such individuals or entities remain in full compliance with + those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any + termination of this License. + b. Subject to the above terms and conditions, the license granted here is + perpetual (for the duration of the applicable copyright in the Work). + Notwithstanding the above, Licensor reserves the right to release the + Work under different license terms or to stop distributing the Work at + any time; provided, however that any such election will not serve to + withdraw this License (or any other license that has been, or is + required to be, granted under the terms of this License), and this + License will continue in full force and effect unless terminated as + stated above. + + 8. Miscellaneous + + a. Each time You Distribute or Publicly Perform the Work or a Collection, + the Licensor offers to the recipient a license to the Work on the same + terms and conditions as the license granted to You under this License. + b. If any provision of this License is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability of + the remainder of the terms of this License, and without further action + by the parties to this agreement, such provision shall be reformed to + the minimum extent necessary to make such provision valid and + enforceable. + c. No term or provision of this License shall be deemed waived and no + breach consented to unless such waiver or consent shall be in writing + and signed by the party to be charged with such waiver or consent. + d. This License constitutes the entire agreement between the parties with + respect to the Work licensed here. There are no understandings, + agreements or representations with respect to the Work not specified + here. Licensor shall not be bound by any additional provisions that + may appear in any communication from You. This License may not be + modified without the mutual written agreement of the Licensor and You. + e. The rights granted under, and the subject matter referenced, in this + License were drafted utilizing the terminology of the Berne Convention + for the Protection of Literary and Artistic Works (as amended on + September 28, 1979), the Rome Convention of 1961, the WIPO Copyright + Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 + and the Universal Copyright Convention (as revised on July 24, 1971). + These rights and subject matter take effect in the relevant + jurisdiction in which the License terms are sought to be enforced + according to the corresponding provisions of the implementation of + those treaty provisions in the applicable national law. If the + standard suite of rights granted under applicable copyright law + includes additional rights not granted under this License, such + additional rights are deemed to be included in the License; this + License is not intended to restrict the license of any rights under + applicable law. + + + Creative Commons Notice + + Creative Commons is not a party to this License, and makes no warranty + whatsoever in connection with the Work. Creative Commons will not be + liable to You or any party on any legal theory for any damages + whatsoever, including without limitation any general, special, + incidental or consequential damages arising in connection to this + license. Notwithstanding the foregoing two (2) sentences, if Creative + Commons has expressly identified itself as the Licensor hereunder, it + shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the + Work is licensed under the CCPL, Creative Commons does not authorize + the use by either party of the trademark "Creative Commons" or any + related trademark or logo of Creative Commons without the prior + written consent of Creative Commons. Any permitted use will be in + compliance with Creative Commons' then-current trademark usage + guidelines, as may be published on its website or otherwise made + available upon request from time to time. For the avoidance of doubt, + this trademark restriction does not form part of this License. + + Creative Commons may be contacted at https://creativecommons.org/. json: cc-by-nc-nd-3.0.json - yml: cc-by-nc-nd-3.0.yml + yaml: cc-by-nc-nd-3.0.yml html: cc-by-nc-nd-3.0.html - text: cc-by-nc-nd-3.0.LICENSE + license: cc-by-nc-nd-3.0.LICENSE - license_key: cc-by-nc-nd-3.0-de + category: Free Restricted spdx_license_key: CC-BY-NC-ND-3.0-DE other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Creative Commons Namensnennung - Keine kommerzielle Nutzung - Keine Bearbeitungen 3.0 Deutschland + + CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. + + Lizenz + + DER GEGENSTAND DIESER LIZENZ (WIE UNTER "SCHUTZGEGENSTAND" DEFINIERT) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE COMMONS PUBLIC LICENSE ("CCPL", "LIZENZ" ODER "LIZENZVERTRAG") ZUR VERFÜGUNG GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER ANDERE GESETZE GESCHÜTZT. JEDE FORM DER NUTZUNG DES SCHUTZGEGENSTANDES, DIE NICHT AUFGRUND DIESER LIZENZ ODER DURCH GESETZE GESTATTET IST, IST UNZULÄSSIG. + + DURCH DIE AUSÜBUNG EINES DURCH DIESE LIZENZ GEWÄHRTEN RECHTS AN DEM SCHUTZGEGENSTAND ERKLÄREN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH EINVERSTANDEN. SOWEIT DIESE LIZENZ ALS LIZENZVERTRAG ANZUSEHEN IST, GEWÄHRT IHNEN DER LIZENZGEBER DIE IN DER LIZENZ GENANNTEN RECHTE UNENTGELTLICH UND IM AUSTAUSCH DAFÜR, DASS SIE DAS GEBUNDENSEIN AN DIE LIZENZBEDINGUNGEN AKZEPTIEREN. + + 1. Definitionen + + a. Der Begriff "Abwandlung" im Sinne dieser Lizenz bezeichnet das Ergebnis jeglicher Art von Veränderung des Schutzgegenstandes, solange die eigenpersönlichen Züge des Schutzgegenstandes darin nicht verblassen und daran eigene Schutzrechte entstehen. Das kann insbesondere eine Bearbeitung, Umgestaltung, Änderung, Anpassung, Übersetzung oder Heranziehung des Schutzgegenstandes zur Vertonung von Laufbildern sein. Nicht als Abwandlung des Schutzgegenstandes gelten seine Aufnahme in eine Sammlung oder ein Sammelwerk und die freie Benutzung des Schutzgegenstandes. + + b. Der Begriff "Sammelwerk" im Sinne dieser Lizenz meint eine Zusammenstellung von literarischen, künstlerischen oder wissenschaftlichen Inhalten, sofern diese Zusammenstellung aufgrund von Auswahl und Anordnung der darin enthaltenen selbständigen Elemente eine geistige Schöpfung darstellt, unabhängig davon, ob die Elemente systematisch oder methodisch angelegt und dadurch einzeln zugänglich sind oder nicht. + + c. "Verbreiten" im Sinne dieser Lizenz bedeutet, den Schutzgegenstand im Original oder in Form von Vervielfältigungsstücken, mithin in körperlich fixierter Form der Öffentlichkeit anzubieten oder in Verkehr zu bringen. + + d. Der "Lizenzgeber" im Sinne dieser Lizenz ist diejenige natürliche oder juristische Person oder Gruppe, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet und insoweit als Rechteinhaberin auftritt. + + e. "Rechteinhaber" im Sinne dieser Lizenz ist der Urheber des Schutzgegenstandes oder jede andere natürliche oder juristische Person oder Gruppe von Personen, die am Schutzgegenstand ein Immaterialgüterrecht erlangt hat, welches die in Abschnitt 3 genannten Handlungen erfasst und bei dem eine Einräumung von Nutzungsrechten oder eine Weiterübertragung an Dritte möglich ist. + + f. Der Begriff "Schutzgegenstand" bezeichnet in dieser Lizenz den literarischen, künstlerischen oder wissenschaftlichen Inhalt, der unter den Bedingungen dieser Lizenz angeboten wird. Das kann insbesondere eine persönliche geistige Schöpfung jeglicher Art, ein Werk der kleinen Münze, ein nachgelassenes Werk oder auch ein Lichtbild oder anderes Objekt eines verwandten Schutzrechts sein, unabhängig von der Art seiner Fixierung und unabhängig davon, auf welche Weise jeweils eine Wahrnehmung erfolgen kann, gleichviel ob in analoger oder digitaler Form. Soweit Datenbanken oder Zusammenstellungen von Daten einen immaterialgüterrechtlichen Schutz eigener Art genießen, unterfallen auch sie dem Begriff "Schutzgegenstand" im Sinne dieser Lizenz. + + g. Mit "Sie" bzw. "Ihnen" ist die natürliche oder juristische Person gemeint, die in dieser Lizenz im Abschnitt 3 genannte Nutzungen des Schutzgegenstandes vornimmt und zuvor in Hinblick auf den Schutzgegenstand nicht gegen Bedingungen dieser Lizenz verstoßen oder aber die ausdrückliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese Lizenz gewährten Nutzungsrechte trotz eines vorherigen Verstoßes auszuüben. + + h. Unter "Öffentlich Zeigen" im Sinne dieser Lizenz sind Veröffentlichungen und Präsentationen des Schutzgegenstandes zu verstehen, die für eine Mehrzahl von Mitgliedern der Öffentlichkeit bestimmt sind und in unkörperlicher Form mittels öffentlicher Wiedergabe in Form von Vortrag, Aufführung, Vorführung, Darbietung, Sendung, Weitersendung, zeit- und ortsunabhängiger Zugänglichmachung oder in körperlicher Form mittels Ausstellung erfolgen, unabhängig von bestimmten Veranstaltungen und unabhängig von den zum Einsatz kommenden Techniken und Verfahren, einschließlich drahtgebundener oder drahtloser Mittel und Einstellen in das Internet. + + i. "Vervielfältigen" im Sinne dieser Lizenz bedeutet, mittels beliebiger Verfahren Vervielfältigungsstücke des Schutzgegenstandes herzustellen, insbesondere durch Ton- oder Bildaufzeichnungen, und umfasst auch den Vorgang, erstmals körperliche Fixierungen des Schutzgegenstandes sowie Vervielfältigungsstücke dieser Fixierungen anzufertigen, sowie die Übertragung des Schutzgegenstandes auf einen Bild- oder Tonträger oder auf ein anderes elektronisches Medium, gleichviel ob in digitaler oder analoger Form. + + 2. Schranken des Immaterialgüterrechts. Diese Lizenz ist in keiner Weise darauf gerichtet, Befugnisse zur Nutzung des Schutzgegenstandes zu vermindern, zu beschränken oder zu vereiteln, die Ihnen aufgrund der Schranken des Urheberrechts oder anderer Rechtsnormen bereits ohne Weiteres zustehen oder sich aus dem Fehlen eines immaterialgüterrechtlichen Schutzes ergeben. + + 3. Einräumung von Nutzungsrechten. Unter den Bedingungen dieser Lizenz räumt Ihnen der Lizenzgeber - unbeschadet unverzichtbarer Rechte und vorbehaltlich des Abschnitts 4.e) - das vergütungsfreie, räumlich und zeitlich (für die Dauer des Schutzrechts am Schutzgegenstand) unbeschränkte einfache Recht ein, den Schutzgegenstand auf die folgenden Arten und Weisen zu nutzen ("unentgeltlich eingeräumtes einfaches Nutzungsrecht für jedermann"): + + a. den Schutzgegenstand in beliebiger Form und Menge zu vervielfältigen, ihn in Sammelwerke zu integrieren und ihn als Teil solcher Sammelwerke zu vervielfältigen; + + b. den Schutzgegenstand, allein oder in Sammelwerke aufgenommen, öffentlich zu zeigen und zu verbreiten. + + Das vorgenannte Nutzungsrecht wird für alle bekannten sowie für alle noch nicht bekannten Nutzungsarten eingeräumt. Es beinhaltet auch das Recht, solche Änderungen am Schutzgegenstand vorzunehmen, die für bestimmte nach dieser Lizenz zulässige Nutzungen technisch erforderlich sind. Weitergehende Änderungen oder Abwandlungen sind jedoch untersagt. Alle sonstigen Rechte, die über diesen Abschnitt hinaus nicht ausdrücklich durch den Lizenzgeber eingeräumt werden, bleiben diesem allein vorbehalten. Soweit Datenbanken oder Zusammenstellungen von Daten Schutzgegenstand dieser Lizenz oder Teil dessen sind und einen immaterialgüterrechtlichen Schutz eigener Art genießen, verzichtet der Lizenzgeber auf sämtliche aus diesem Schutz resultierenden Rechte. + + 4. Bedingungen. Die Einräumung des Nutzungsrechts gemäß Abschnitt 3 dieser Lizenz erfolgt ausdrücklich nur unter den folgenden Bedingungen: + + a. Sie dürfen den Schutzgegenstand ausschließlich unter den Bedingungen dieser Lizenz verbreiten oder öffentlich zeigen. Sie müssen dabei stets eine Kopie dieser Lizenz oder deren vollständige Internetadresse in Form des Uniform-Resource-Identifier (URI) beifügen. Sie dürfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen dieser Lizenz oder die durch diese Lizenz gewährten Rechte beschränken. Sie dürfen den Schutzgegenstand nicht unterlizenzieren. Bei jeder Kopie des Schutzgegenstandes, die Sie verbreiten oder öffentlich zeigen, müssen Sie alle Hinweise unverändert lassen, die auf diese Lizenz und den Haftungsausschluss hinweisen. Wenn Sie den Schutzgegenstand verbreiten oder öffentlich zeigen, dürfen Sie (in Bezug auf den Schutzgegenstand) keine technischen Maßnahmen ergreifen, die den Nutzer des Schutzgegenstandes in der Ausübung der ihm durch diese Lizenz gewährten Rechte behindern können. Dieser Abschnitt 4.a) gilt auch für den Fall, dass der Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt dieser Lizenz unterstellt werden muss. Sofern Sie ein Sammelwerk erstellen, müssen Sie auf die Mitteilung eines Lizenzgebers hin aus dem Sammelwerk die in Abschnitt 4.c) aufgezählten Hinweise entfernen. + + b. Die Rechteeinräumung gemäß Abschnitt 3 gilt nur für Handlungen, die nicht vorrangig auf einen geschäftlichen Vorteil oder eine geldwerte Vergütung gerichtet sind ("nicht-kommerzielle Nutzung", "Non-commercial-Option"). Wird Ihnen in Zusammenhang mit dem Schutzgegenstand dieser Lizenz ein anderer Schutzgegenstand überlassen, ohne dass eine vertragliche Verpflichtung hierzu besteht (etwa im Wege von File-Sharing), so wird dies nicht als auf geschäftlichen Vorteil oder geldwerte Vergütung gerichtet angesehen, wenn in Verbindung mit dem Austausch der Schutzgegenstände tatsächlich keine Zahlung oder geldwerte Vergütung geleistet wird. + + c. Die Verbreitung und das öffentliche Zeigen des Schutzgegenstandes oder ihn enthaltender Sammelwerke ist Ihnen nur unter der Bedingung gestattet, dass Sie, vorbehaltlich etwaiger Mitteilungen im Sinne von Abschnitt 4.a), alle dazu gehörenden Rechtevermerke unberührt lassen. Sie sind verpflichtet, die Rechteinhaberschaft in einer der Nutzung entsprechenden, angemessenen Form anzuerkennen, indem Sie - soweit bekannt - Folgendes angeben: + + i. Den Namen (oder das Pseudonym, falls ein solches verwendet wird) des Rechteinhabers und / oder, falls der Lizenzgeber im Rechtevermerk, in den Nutzungsbedingungen oder auf andere angemessene Weise eine Zuschreibung an Dritte vorgenommen hat (z.B. an eine Stiftung, ein Verlagshaus oder eine Zeitung) ("Zuschreibungsempfänger"), Namen bzw. Bezeichnung dieses oder dieser Dritten; + + ii. den Titel des Inhaltes; + + iii. in einer praktikablen Form den Uniform-Resource-Identifier (URI, z.B. Internetadresse), den der Lizenzgeber zum Schutzgegenstand angegeben hat, es sei denn, dieser URI verweist nicht auf den Rechtevermerk oder die Lizenzinformationen zum Schutzgegenstand. + + Die nach diesem Abschnitt 4.c) erforderlichen Angaben können in jeder angemessenen Form gemacht werden; im Falle eines Sammelwerkes müssen diese Angaben das Minimum darstellen und bei gemeinsamer Nennung mehrerer Rechteinhaber dergestalt erfolgen, dass sie zumindest ebenso hervorgehoben sind wie die Hinweise auf die übrigen Rechteinhaber. Die Angaben nach diesem Abschnitt dürfen Sie ausschließlich zur Angabe der Rechteinhaberschaft in der oben bezeichneten Weise verwenden. Durch die Ausübung Ihrer Rechte aus dieser Lizenz dürfen Sie ohne eine vorherige, separat und schriftlich vorliegende Zustimmung des Lizenzgebers und / oder des Zuschreibungsempfängers weder explizit noch implizit irgendeine Verbindung zum Lizenzgeber oder Zuschreibungsempfänger und ebenso wenig eine Unterstützung oder Billigung durch ihn andeuten. + + d. Die oben unter 4.a) bis c) genannten Einschränkungen gelten nicht für solche Teile des Schutzgegenstandes, die allein deshalb unter den Schutzgegenstandsbegriff fallen, weil sie als Datenbanken oder Zusammenstellungen von Daten einen immaterialgüterrechtlichen Schutz eigener Art genießen. + + e. Bezüglich Vergütung für die Nutzung des Schutzgegenstandes gilt Folgendes: + + i. Unverzichtbare gesetzliche Vergütungsansprüche: Soweit unverzichtbare Vergütungsansprüche im Gegenzug für gesetzliche Lizenzen vorgesehen oder Pauschalabgabensysteme (zum Beispiel für Leermedien) vorhanden sind, behält sich der Lizenzgeber das ausschließliche Recht vor, die entsprechende Vergütung einzuziehen für jede Ausübung eines Rechts aus dieser Lizenz durch Sie. + + ii. Vergütung bei Zwangslizenzen: Sofern Zwangslizenzen außerhalb dieser Lizenz vorgesehen sind und zustande kommen, behält sich der Lizenzgeber das ausschließliche Recht auf Einziehung der entsprechenden Vergütung für den Fall vor, dass Sie eine Nutzung des Schutzgegenstandes für andere als die in Abschnitt 4.b) als nicht-kommerziell definierten Zwecke vornehmen, verzichtet für alle übrigen, lizenzgerechten Fälle von Nutzung jedoch auf jegliche Vergütung. + + iii. Vergütung in sonstigen Fällen: Bezüglich lizenzgerechter Nutzung des Schutzgegenstandes durch Sie, die nicht unter die beiden vorherigen Abschnitte (i) und (ii) fällt, verzichtet der Lizenzgeber auf jegliche Vergütung, unabhängig davon, ob eine Einziehung der Vergütung durch ihn selbst oder nur durch eine Verwertungsgesellschaft möglich wäre. Der Lizenzgeber behält sich jedoch das ausschließliche Recht auf Einziehung der entsprechenden Vergütung (durch ihn selbst oder eine Verwertungsgesellschaft) für den Fall vor, dass Sie eine Nutzung des Schutzgegenstandes für andere als die in Abschnitt 4.b) als nicht-kommerziell definierten Zwecke vornehmen. + + f. Persönlichkeitsrechte bleiben - soweit sie bestehen - von dieser Lizenz unberührt. + + 5. Gewährleistung + + SOFERN KEINE ANDERS LAUTENDE, SCHRIFTLICHE VEREINBARUNG ZWISCHEN DEM LIZENZGEBER UND IHNEN GESCHLOSSEN WURDE UND SOWEIT MÄNGEL NICHT ARGLISTIG VERSCHWIEGEN WURDEN, BIETET DER LIZENZGEBER DEN SCHUTZGEGENSTAND UND DIE EINRÄUMUNG VON RECHTEN UNTER AUSSCHLUSS JEGLICHER GEWÄHRLEISTUNG AN UND ÜBERNIMMT WEDER AUSDRÜCKLICH NOCH KONKLUDENT GARANTIEN IRGENDEINER ART. DIES UMFASST INSBESONDERE DAS FREISEIN VON SACH- UND RECHTSMÄNGELN, UNABHÄNGIG VON DEREN ERKENNBARKEIT FÜR DEN LIZENZGEBER, DIE VERKEHRSFÄHIGKEIT DES SCHUTZGEGENSTANDES, SEINE VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK SOWIE DIE KORREKTHEIT VON BESCHREIBUNGEN. DIESE GEWÄHRLEISTUNGSBESCHRÄNKUNG GILT NICHT, SOWEIT MÄNGEL ZU SCHÄDEN DER IN ABSCHNITT 6 BEZEICHNETEN ART FÜHREN UND AUF SEITEN DES LIZENZGEBERS DAS JEWEILS GENANNTE VERSCHULDEN BZW. VERTRETENMÜSSEN EBENFALLS VORLIEGT. + + 6. Haftungsbeschränkung + + DER LIZENZGEBER HAFTET IHNEN GEGENÜBER IN BEZUG AUF SCHÄDEN AUS DER VERLETZUNG DES LEBENS, DES KÖRPERS ODER DER GESUNDHEIT NUR, SOFERN IHM WENIGSTENS FAHRLÄSSIGKEIT VORZUWERFEN IST, FÜR SONSTIGE SCHÄDEN NUR BEI GROBER FAHRLÄSSIGKEIT ODER VORSATZ, UND ÜBERNIMMT DARÜBER HINAUS KEINERLEI FREIWILLIGE HAFTUNG. + + 7. Erlöschen + + a. Diese Lizenz und die durch sie eingeräumten Nutzungsrechte erlöschen mit Wirkung für die Zukunft im Falle eines Verstoßes gegen die Lizenzbedingungen durch Sie, ohne dass es dazu der Kenntnis des Lizenzgebers vom Verstoß oder einer weiteren Handlung einer der Vertragsparteien bedarf. Mit natürlichen oder juristischen Personen, die den Schutzgegenstand enthaltende Sammelwerke unter den Bedingungen dieser Lizenz von Ihnen erhalten haben, bestehen nachträglich entstandene Lizenzbeziehungen jedoch solange weiter, wie die genannten Personen sich ihrerseits an sämtliche Lizenzbedingungen halten. Darüber hinaus gelten die Ziffern 1, 2, 5, 6, 7, und 8 auch nach einem Erlöschen dieser Lizenz fort. + + b. Vorbehaltlich der oben genannten Bedingungen gilt diese Lizenz unbefristet bis der rechtliche Schutz für den Schutzgegenstand ausläuft. Davon abgesehen behält der Lizenzgeber das Recht, den Schutzgegenstand unter anderen Lizenzbedingungen anzubieten oder die eigene Weitergabe des Schutzgegenstandes jederzeit einzustellen, solange die Ausübung dieses Rechts nicht einer Kündigung oder einem Widerruf dieser Lizenz (oder irgendeiner Weiterlizenzierung, die auf Grundlage dieser Lizenz bereits erfolgt ist bzw. zukünftig noch erfolgen muss) dient und diese Lizenz unter Berücksichtigung der oben zum Erlöschen genannten Bedingungen vollumfänglich wirksam bleibt. + + 8. Sonstige Bestimmungen + + a. Jedes Mal wenn Sie den Schutzgegenstand für sich genommen oder als Teil eines Sammelwerkes verbreiten oder öffentlich zeigen, bietet der Lizenzgeber dem Empfänger eine Lizenz zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz. + + b. Sollte eine Bestimmung dieser Lizenz unwirksam sein, so bleibt davon die Wirksamkeit der Lizenz im Übrigen unberührt. + + c. Keine Bestimmung dieser Lizenz soll als abbedungen und kein Verstoß gegen sie als zulässig gelten, solange die von dem Verzicht oder von dem Verstoß betroffene Seite nicht schriftlich zugestimmt hat. + + d. Diese Lizenz (zusammen mit in ihr ausdrücklich vorgesehenen Erlaubnissen, Mitteilungen und Zustimmungen, soweit diese tatsächlich vorliegen) stellt die vollständige Vereinbarung zwischen dem Lizenzgeber und Ihnen in Bezug auf den Schutzgegenstand dar. Es bestehen keine Abreden, Vereinbarungen oder Erklärungen in Bezug auf den Schutzgegenstand, die in dieser Lizenz nicht genannt sind. Rechtsgeschäftliche Änderungen des Verhältnisses zwischen dem Lizenzgeber und Ihnen sind nur über Modifikationen dieser Lizenz möglich. Der Lizenzgeber ist an etwaige zusätzliche, einseitig durch Sie übermittelte Bestimmungen nicht gebunden. Diese Lizenz kann nur durch schriftliche Vereinbarung zwischen Ihnen und dem Lizenzgeber modifiziert werden. Derlei Modifikationen wirken ausschließlich zwischen dem Lizenzgeber und Ihnen und wirken sich nicht auf die Dritten gemäß Ziffern 8.a) angeboteten Lizenzen aus. + + e. Sofern zwischen Ihnen und dem Lizenzgeber keine anderweitige Vereinbarung getroffen wurde und soweit Wahlfreiheit besteht, findet auf diesen Lizenzvertrag das Recht der Bundesrepublik Deutschland Anwendung. + + Creative Commons Notice + + Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr oder dergleichen in Bezug auf den Schutzgegenstand. Creative Commons haftet Ihnen oder einer anderen Partei unter keinem rechtlichen Gesichtspunkt für irgendwelche Schäden, die - abstrakt oder konkret, zufällig oder vorhersehbar - im Zusammenhang mit dieser Lizenz entstehen. Unbeschadet der vorangegangen beiden Sätze, hat Creative Commons alle Rechte und Pflichten eines Lizenzgebers, wenn es sich ausdrücklich als Lizenzgeber im Sinne dieser Lizenz bezeichnet. + + Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. + + Creative Commons kann kontaktiert werden über https://creativecommons.org/. json: cc-by-nc-nd-3.0-de.json - yml: cc-by-nc-nd-3.0-de.yml + yaml: cc-by-nc-nd-3.0-de.yml html: cc-by-nc-nd-3.0-de.html - text: cc-by-nc-nd-3.0-de.LICENSE + license: cc-by-nc-nd-3.0-de.LICENSE - license_key: cc-by-nc-nd-3.0-igo + category: Source-available spdx_license_key: CC-BY-NC-ND-3.0-IGO other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Attribution-NonCommercial-NoDerivs 3.0 IGO + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. THE LICENSOR IS NOT NECESSARILY AN INTERGOVERNMENTAL ORGANIZATION (IGO), AS DEFINED IN THE LICENSE BELOW. + + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("LICENSE"). THE LICENSOR (DEFINED BELOW) HOLDS COPYRIGHT AND OTHER RIGHTS IN THE WORK. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION FOR YOUR ACCEPTANCE AND AGREEMENT TO THE TERMS OF THE LICENSE. + + 1. Definitions + a. "IGO" means, solely and exclusively for purposes of this License, an organization established by a treaty or other instrument governed by international law and possessing its own international legal personality. Other organizations established to carry out activities across national borders and that accordingly enjoy immunity from legal process are also IGOs for the sole and exclusive purposes of this License. IGOs may include as members, in addition to states, other entities. + b. "Work" means the literary and/or artistic work eligible for copyright protection, whatever may be the mode or form of its expression including digital form, and offered under the terms of this License. It is understood that a database, which by reason of the selection and arrangement of its contents constitutes an intellectual creation, is considered a Work. + c. "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License and may be, but is not necessarily, an IGO. + d. "You" means an individual or entity exercising rights under this License. + e. "Reproduce" means to make a copy of the Work in any manner or form, and by any means. + f. "Distribute" means the activity of making publicly available the Work (or copies of the Work), as applicable, by sale, rental, public lending or any other known form of transfer of ownership or possession of the Work or copy of the Work. + g. "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images. + h. "Adaptation" means a work derived from or based upon the Work, or upon the Work and other pre-existing works. Adaptations may include works such as translations, derivative works, or any alterations and arrangements of any kind involving the Work. For purposes of this License, where the Work is a musical work, performance, or phonogram, the synchronization of the Work in timed-relation with a moving image is an Adaptation. For the avoidance of doubt, including the Work in a Collection is not an Adaptation. + i. "Collection" means a collection of literary or artistic works or other works or subject matter other than works listed in Section 1(b) which by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. For the avoidance of doubt, a Collection will not be considered as an Adaptation. + 2. Scope of this License. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright protection. + 3. License Grant. Subject to the terms and conditions of this License, the Licensor hereby grants You a worldwide, royalty-free, non-exclusive license to exercise the rights in the Work as follows: + a. to Reproduce, Distribute and Publicly Perform the Work, to incorporate the Work into one or more Collections, and to Reproduce, Distribute and Publicly Perform the Work as incorporated in the Collections. + This License lasts for the duration of the term of the copyright in the Work licensed by the Licensor. The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats, but otherwise you have no rights to make Adaptations. All rights not expressly granted by the Licensor are hereby reserved, including but not limited to the rights set forth in Section 4(d). + 4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + a. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work (see section 8(a)). You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from a Licensor You must, to the extent practicable, remove from the Collection any credit (inclusive of any logo, trademark, official mark or official emblem) as required by Section 4(c), as requested. + b. You may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be primarily intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works. + c. If You Distribute, or Publicly Perform the Work or any Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) any attributions that the Licensor indicates be associated with the Work as indicated in a copyright notice, (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that the Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work. The credit required by this Section 4(c) may be implemented in any reasonable manner; provided, however, that in the case of a Collection, at a minimum such credit will appear, if a credit for all contributors to the Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Licensor or others designated for attribution, of You or Your use of the Work, without the separate, express prior written permission of the Licensor or such others. + d. For the avoidance of doubt: + i. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; + ii. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License if Your exercise of such rights is for a purpose or use which is otherwise than noncommercial as permitted under Section 4(b) and otherwise waives the right to collect royalties through any statutory or compulsory licensing scheme; and, + iii. Voluntary License Schemes. To the extent possible, the Licensor waives the right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary licensing scheme. In all other cases the Licensor expressly reserves the right to collect such royalties. + e. Except as otherwise agreed in writing by the Licensor, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the honor or reputation of the Licensor where moral rights apply. + 5. Representations, Warranties and Disclaimer THE LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. + 6. Limitation on Liability IN NO EVENT WILL THE LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF THE LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + 7. Termination + a. Subject to the terms and conditions set forth in this License, the license granted here lasts for the duration of the term of the copyright in the Work licensed by the Licensor as stated in Section 3. Notwithstanding the above, the Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated below. + b. If You fail to comply with this License, then this License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. Notwithstanding the foregoing, this License reinstates automatically as of the date the violation is cured, provided it is cured within 30 days of You discovering the violation, or upon express reinstatement by the Licensor. For the avoidance of doubt, this Section 7(b) does not affect any rights the Licensor may have to seek remedies for violations of this License by You. + 8. Miscellaneous + a. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + b. If any provision of this License is invalid or unenforceable, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + c. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the Licensor. + d. This License constitutes the entire agreement between You and the Licensor with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. The Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + e. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). Interpretation of the scope of the rights granted by the Licensor and the conditions imposed on You under this License, this License, and the rights and conditions set forth herein shall be made with reference to copyright as determined in accordance with general principles of international law, including the above mentioned conventions. + f. Nothing in this License constitutes or may be interpreted as a limitation upon or waiver of any privileges and immunities that may apply to the Licensor or You, including immunity from the legal processes of any jurisdiction, national court or other authority. + g. Where the Licensor is an IGO, any and all disputes arising under this License that cannot be settled amicably shall be resolved in accordance with the following procedure: + i. Pursuant to a notice of mediation communicated by reasonable means by either You or the Licensor to the other, the dispute shall be submitted to non-binding mediation conducted in accordance with rules designated by the Licensor in the copyright notice published with the Work, or if none then in accordance with those communicated in the notice of mediation. The language used in the mediation proceedings shall be English unless otherwise agreed. + ii. If any such dispute has not been settled within 45 days following the date on which the notice of mediation is provided, either You or the Licensor may, pursuant to a notice of arbitration communicated by reasonable means to the other, elect to have the dispute referred to and finally determined by arbitration. The arbitration shall be conducted in accordance with the rules designated by the Licensor in the copyright notice published with the Work, or if none then in accordance with the UNCITRAL Arbitration Rules as then in force. The arbitral tribunal shall consist of a sole arbitrator and the language of the proceedings shall be English unless otherwise agreed. The place of arbitration shall be where the Licensor has its headquarters. The arbitral proceedings shall be conducted remotely (e.g., via telephone conference or written submissions) whenever practicable. + iii. Interpretation of this License in any dispute submitted to mediation or arbitration shall be as set forth in Section 8(e), above. + Creative Commons Notice + + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of the Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. + + Creative Commons may be contacted at https://creativecommons.org/. json: cc-by-nc-nd-3.0-igo.json - yml: cc-by-nc-nd-3.0-igo.yml + yaml: cc-by-nc-nd-3.0-igo.yml html: cc-by-nc-nd-3.0-igo.html - text: cc-by-nc-nd-3.0-igo.LICENSE + license: cc-by-nc-nd-3.0-igo.LICENSE - license_key: cc-by-nc-nd-4.0 + category: Source-available spdx_license_key: CC-BY-NC-ND-4.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: "Attribution-NonCommercial-NoDerivatives 4.0 International\n\n=======================================================================\n\ + \nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide\ + \ legal services or legal advice. Distribution of\nCreative Commons public licenses does\ + \ not create a lawyer-client or\nother relationship. Creative Commons makes its licenses\ + \ and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\n\ + warranties regarding its licenses, any material licensed under their\nterms and conditions,\ + \ or any related information. Creative Commons\ndisclaims all liability for damages resulting\ + \ from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\ + \nCreative Commons public licenses provide a standard set of terms and\nconditions that\ + \ creators and other rights holders may use to share\noriginal works of authorship and other\ + \ material subject to copyright\nand certain other rights specified in the public license\ + \ below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive,\ + \ and do not form part of our licenses.\n\n Considerations for licensors: Our public\ + \ licenses are\n intended for use by those authorized to give the public\n permission\ + \ to use material in ways otherwise restricted by\n copyright and certain other rights.\ + \ Our licenses are\n irrevocable. Licensors should read and understand the terms\n \ + \ and conditions of the license they choose before applying it.\n Licensors should\ + \ also secure all rights necessary before\n applying our licenses so that the public\ + \ can reuse the\n material as expected. Licensors should clearly mark any\n material\ + \ not subject to the license. This includes other CC-\n licensed material, or material\ + \ used under an exception or\n limitation to copyright. More considerations for licensors:\n\ + \twiki.creativecommons.org/Considerations_for_licensors\n\n Considerations for the public:\ + \ By using one of our public\n licenses, a licensor grants the public permission to\ + \ use the\n licensed material under specified terms and conditions. If\n the licensor's\ + \ permission is not necessary for any reason--for\n example, because of any applicable\ + \ exception or limitation to\n copyright--then that use is not regulated by the license.\ + \ Our\n licenses grant only permissions under copyright and certain\n other rights\ + \ that a licensor has authority to grant. Use of\n the licensed material may still be\ + \ restricted for other\n reasons, including because others have copyright or other\n\ + \ rights in the material. A licensor may make special requests,\n such as asking\ + \ that all changes be marked or described.\n Although not required by our licenses,\ + \ you are encouraged to\n respect those requests where reasonable. More considerations\n\ + \ for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\ + \nCreative Commons Attribution-NonCommercial-NoDerivatives 4.0\nInternational Public License\n\ + \nBy exercising the Licensed Rights (defined below), You accept and agree\nto be bound by\ + \ the terms and conditions of this Creative Commons\nAttribution-NonCommercial-NoDerivatives\ + \ 4.0 International Public\nLicense (\"Public License\"). To the extent this Public License\ + \ may be\ninterpreted as a contract, You are granted the Licensed Rights in\nconsideration\ + \ of Your acceptance of these terms and conditions, and the\nLicensor grants You such rights\ + \ in consideration of benefits the\nLicensor receives from making the Licensed Material\ + \ available under\nthese terms and conditions.\n\n\nSection 1 -- Definitions.\n\n a. Adapted\ + \ Material means material subject to Copyright and Similar\n Rights that is derived\ + \ from or based upon the Licensed Material\n and in which the Licensed Material is translated,\ + \ altered,\n arranged, transformed, or otherwise modified in a manner requiring\n \ + \ permission under the Copyright and Similar Rights held by the\n Licensor. For purposes\ + \ of this Public License, where the Licensed\n Material is a musical work, performance,\ + \ or sound recording,\n Adapted Material is always produced where the Licensed Material\ + \ is\n synched in timed relation with a moving image.\n\n b. Copyright and Similar\ + \ Rights means copyright and/or similar rights\n closely related to copyright including,\ + \ without limitation,\n performance, broadcast, sound recording, and Sui Generis Database\n\ + \ Rights, without regard to how the rights are labeled or\n categorized. For purposes\ + \ of this Public License, the rights\n specified in Section 2(b)(1)-(2) are not Copyright\ + \ and Similar\n Rights.\n\n c. Effective Technological Measures means those measures\ + \ that, in the\n absence of proper authority, may not be circumvented under laws\n \ + \ fulfilling obligations under Article 11 of the WIPO Copyright\n Treaty adopted\ + \ on December 20, 1996, and/or similar international\n agreements.\n\n d. Exceptions\ + \ and Limitations means fair use, fair dealing, and/or\n any other exception or limitation\ + \ to Copyright and Similar Rights\n that applies to Your use of the Licensed Material.\n\ + \n e. Licensed Material means the artistic or literary work, database,\n or other material\ + \ to which the Licensor applied this Public\n License.\n\n f. Licensed Rights means\ + \ the rights granted to You subject to the\n terms and conditions of this Public License,\ + \ which are limited to\n all Copyright and Similar Rights that apply to Your use of\ + \ the\n Licensed Material and that the Licensor has authority to license.\n\n g. Licensor\ + \ means the individual(s) or entity(ies) granting rights\n under this Public License.\n\ + \n h. NonCommercial means not primarily intended for or directed towards\n commercial\ + \ advantage or monetary compensation. For purposes of\n this Public License, the exchange\ + \ of the Licensed Material for\n other material subject to Copyright and Similar Rights\ + \ by digital\n file-sharing or similar means is NonCommercial provided there is\n \ + \ no payment of monetary compensation in connection with the\n exchange.\n\n i. Share\ + \ means to provide material to the public by any means or\n process that requires permission\ + \ under the Licensed Rights, such\n as reproduction, public display, public performance,\ + \ distribution,\n dissemination, communication, or importation, and to make material\n\ + \ available to the public including in ways that members of the\n public may access\ + \ the material from a place and at a time\n individually chosen by them.\n\n j. Sui\ + \ Generis Database Rights means rights other than copyright\n resulting from Directive\ + \ 96/9/EC of the European Parliament and of\n the Council of 11 March 1996 on the legal\ + \ protection of databases,\n as amended and/or succeeded, as well as other essentially\n\ + \ equivalent rights anywhere in the world.\n\n k. You means the individual or entity\ + \ exercising the Licensed Rights\n under this Public License. Your has a corresponding\ + \ meaning.\n\n\nSection 2 -- Scope.\n\n a. License grant.\n\n 1. Subject to the terms\ + \ and conditions of this Public License,\n the Licensor hereby grants You a worldwide,\ + \ royalty-free,\n non-sublicensable, non-exclusive, irrevocable license to\n \ + \ exercise the Licensed Rights in the Licensed Material to:\n\n a. reproduce\ + \ and Share the Licensed Material, in whole or\n in part, for NonCommercial\ + \ purposes only; and\n\n b. produce and reproduce, but not Share, Adapted Material\n\ + \ for NonCommercial purposes only.\n\n 2. Exceptions and Limitations.\ + \ For the avoidance of doubt, where\n Exceptions and Limitations apply to Your\ + \ use, this Public\n License does not apply, and You do not need to comply with\n\ + \ its terms and conditions.\n\n 3. Term. The term of this Public License\ + \ is specified in Section\n 6(a).\n\n 4. Media and formats; technical modifications\ + \ allowed. The\n Licensor authorizes You to exercise the Licensed Rights in\n \ + \ all media and formats whether now known or hereafter created,\n and to\ + \ make technical modifications necessary to do so. The\n Licensor waives and/or\ + \ agrees not to assert any right or\n authority to forbid You from making technical\ + \ modifications\n necessary to exercise the Licensed Rights, including\n \ + \ technical modifications necessary to circumvent Effective\n Technological\ + \ Measures. For purposes of this Public License,\n simply making modifications\ + \ authorized by this Section 2(a)\n (4) never produces Adapted Material.\n\n \ + \ 5. Downstream recipients.\n\n a. Offer from the Licensor -- Licensed Material.\ + \ Every\n recipient of the Licensed Material automatically\n \ + \ receives an offer from the Licensor to exercise the\n Licensed Rights under\ + \ the terms and conditions of this\n Public License.\n\n b. No\ + \ downstream restrictions. You may not offer or impose\n any additional or\ + \ different terms or conditions on, or\n apply any Effective Technological\ + \ Measures to, the\n Licensed Material if doing so restricts exercise of the\n\ + \ Licensed Rights by any recipient of the Licensed\n Material.\n\ + \n 6. No endorsement. Nothing in this Public License constitutes or\n may\ + \ be construed as permission to assert or imply that You\n are, or that Your use\ + \ of the Licensed Material is, connected\n with, or sponsored, endorsed, or granted\ + \ official status by,\n the Licensor or others designated to receive attribution\ + \ as\n provided in Section 3(a)(1)(A)(i).\n\n b. Other rights.\n\n 1. Moral\ + \ rights, such as the right of integrity, are not\n licensed under this Public\ + \ License, nor are publicity,\n privacy, and/or other similar personality rights;\ + \ however, to\n the extent possible, the Licensor waives and/or agrees not to\n\ + \ assert any such rights held by the Licensor to the limited\n extent\ + \ necessary to allow You to exercise the Licensed\n Rights, but not otherwise.\n\ + \n 2. Patent and trademark rights are not licensed under this\n Public License.\n\ + \n 3. To the extent possible, the Licensor waives any right to\n collect\ + \ royalties from You for the exercise of the Licensed\n Rights, whether directly\ + \ or through a collecting society\n under any voluntary or waivable statutory or\ + \ compulsory\n licensing scheme. In all other cases the Licensor expressly\n \ + \ reserves any right to collect such royalties, including when\n the Licensed\ + \ Material is used other than for NonCommercial\n purposes.\n\n\nSection 3 -- License\ + \ Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the\n\ + following conditions.\n\n a. Attribution.\n\n 1. If You Share the Licensed Material,\ + \ You must:\n\n a. retain the following if it is supplied by the Licensor\n \ + \ with the Licensed Material:\n\n i. identification of the\ + \ creator(s) of the Licensed\n Material and any others designated to\ + \ receive\n attribution, in any reasonable manner requested by\n \ + \ the Licensor (including by pseudonym if\n designated);\n\ + \n ii. a copyright notice;\n\n iii. a notice that refers to\ + \ this Public License;\n\n iv. a notice that refers to the disclaimer of\n\ + \ warranties;\n\n v. a URI or hyperlink to the Licensed\ + \ Material to the\n extent reasonably practicable;\n\n b.\ + \ indicate if You modified the Licensed Material and\n retain an indication\ + \ of any previous modifications; and\n\n c. indicate the Licensed Material is\ + \ licensed under this\n Public License, and include the text of, or the URI\ + \ or\n hyperlink to, this Public License.\n\n For the avoidance of\ + \ doubt, You do not have permission under\n this Public License to Share Adapted\ + \ Material.\n\n 2. You may satisfy the conditions in Section 3(a)(1) in any\n \ + \ reasonable manner based on the medium, means, and context in\n which You\ + \ Share the Licensed Material. For example, it may be\n reasonable to satisfy the\ + \ conditions by providing a URI or\n hyperlink to a resource that includes the\ + \ required\n information.\n\n 3. If requested by the Licensor, You must remove\ + \ any of the\n information required by Section 3(a)(1)(A) to the extent\n \ + \ reasonably practicable.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the\ + \ Licensed Rights include Sui Generis Database Rights that\napply to Your use of the Licensed\ + \ Material:\n\n a. for the avoidance of doubt, Section 2(a)(1) grants You the right\n \ + \ to extract, reuse, reproduce, and Share all or a substantial\n portion of the contents\ + \ of the database for NonCommercial purposes\n only and provided You do not Share Adapted\ + \ Material;\n\n b. if You include all or a substantial portion of the database\n contents\ + \ in a database in which You have Sui Generis Database\n Rights, then the database in\ + \ which You have Sui Generis Database\n Rights (but not its individual contents) is\ + \ Adapted Material; and\n\n c. You must comply with the conditions in Section 3(a) if You\ + \ Share\n all or a substantial portion of the contents of the database.\n\nFor the avoidance\ + \ of doubt, this Section 4 supplements and does not\nreplace Your obligations under this\ + \ Public License where the Licensed\nRights include other Copyright and Similar Rights.\n\ + \n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\n a. UNLESS OTHERWISE\ + \ SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n EXTENT POSSIBLE, THE LICENSOR OFFERS\ + \ THE LICENSED MATERIAL AS-IS\n AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES\ + \ OF\n ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n IMPLIED, STATUTORY,\ + \ OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n WARRANTIES OF TITLE, MERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR\n PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n\ + \ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n KNOWN OR DISCOVERABLE.\ + \ WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n ALLOWED IN FULL OR IN PART, THIS DISCLAIMER\ + \ MAY NOT APPLY TO YOU.\n\n b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE\ + \ LIABLE\n TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n NEGLIGENCE)\ + \ OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n INCIDENTAL, CONSEQUENTIAL, PUNITIVE,\ + \ EXEMPLARY, OR OTHER LOSSES,\n COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC\ + \ LICENSE OR\n USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n ADVISED\ + \ OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n DAMAGES. WHERE A LIMITATION\ + \ OF LIABILITY IS NOT ALLOWED IN FULL OR\n IN PART, THIS LIMITATION MAY NOT APPLY TO\ + \ YOU.\n\n c. The disclaimer of warranties and limitation of liability provided\n above\ + \ shall be interpreted in a manner that, to the extent\n possible, most closely approximates\ + \ an absolute disclaimer and\n waiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\ + \n a. This Public License applies for the term of the Copyright and\n Similar Rights\ + \ licensed here. However, if You fail to comply with\n this Public License, then Your\ + \ rights under this Public License\n terminate automatically.\n\n b. Where Your right\ + \ to use the Licensed Material has terminated under\n Section 6(a), it reinstates:\n\ + \n 1. automatically as of the date the violation is cured, provided\n it\ + \ is cured within 30 days of Your discovery of the\n violation; or\n\n 2.\ + \ upon express reinstatement by the Licensor.\n\n For the avoidance of doubt, this Section\ + \ 6(b) does not affect any\n right the Licensor may have to seek remedies for Your violations\n\ + \ of this Public License.\n\n c. For the avoidance of doubt, the Licensor may also\ + \ offer the\n Licensed Material under separate terms or conditions or stop\n distributing\ + \ the Licensed Material at any time; however, doing so\n will not terminate this Public\ + \ License.\n\n d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n License.\n\ + \n\nSection 7 -- Other Terms and Conditions.\n\n a. The Licensor shall not be bound by\ + \ any additional or different\n terms or conditions communicated by You unless expressly\ + \ agreed.\n\n b. Any arrangements, understandings, or agreements regarding the\n Licensed\ + \ Material not stated herein are separate from and\n independent of the terms and conditions\ + \ of this Public License.\n\n\nSection 8 -- Interpretation.\n\n a. For the avoidance of\ + \ doubt, this Public License does not, and\n shall not be interpreted to, reduce, limit,\ + \ restrict, or impose\n conditions on any use of the Licensed Material that could lawfully\n\ + \ be made without permission under this Public License.\n\n b. To the extent possible,\ + \ if any provision of this Public License is\n deemed unenforceable, it shall be automatically\ + \ reformed to the\n minimum extent necessary to make it enforceable. If the provision\n\ + \ cannot be reformed, it shall be severed from this Public License\n without affecting\ + \ the enforceability of the remaining terms and\n conditions.\n\n c. No term or condition\ + \ of this Public License will be waived and no\n failure to comply consented to unless\ + \ expressly agreed to by the\n Licensor.\n\n d. Nothing in this Public License constitutes\ + \ or may be interpreted\n as a limitation upon, or waiver of, any privileges and immunities\n\ + \ that apply to the Licensor or You, including from the legal\n processes of any\ + \ jurisdiction or authority.\n\n=======================================================================\n\ + \nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons\ + \ may elect to apply one of\nits public licenses to material it publishes and in those instances\n\ + will be considered the “Licensor.” The text of the Creative Commons\npublic licenses is\ + \ dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the\ + \ limited purpose of indicating that\nmaterial is shared under a Creative Commons public\ + \ license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies,\ + \ Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or\ + \ any other trademark or logo\nof Creative Commons without its prior written consent including,\n\ + without limitation, in connection with any unauthorized modifications\nto any of its public\ + \ licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed\ + \ material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic\ + \ licenses.\n\nCreative Commons may be contacted at creativecommons.org." json: cc-by-nc-nd-4.0.json - yml: cc-by-nc-nd-4.0.yml + yaml: cc-by-nc-nd-4.0.yml html: cc-by-nc-nd-4.0.html - text: cc-by-nc-nd-4.0.LICENSE + license: cc-by-nc-nd-4.0.LICENSE - license_key: cc-by-nc-sa-1.0 + category: Source-available spdx_license_key: CC-BY-NC-SA-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Attribution-NonCommercial-ShareAlike 1.0 + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. + "Licensor" means the individual or entity that offers the Work under the terms of this License. + "Original Author" means the individual or entity who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to create and reproduce Derivative Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works; + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. + + 4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested. + You may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License. + You may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works. + If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + 5. Representations, Warranties and Disclaimer + + By offering the Work for public release under this License, Licensor represents and warrants that, to the best of Licensor's knowledge after reasonable inquiry: + Licensor has secured all rights in the Work necessary to grant the license rights hereunder and to permit the lawful exercise of the rights granted hereunder without You having any obligation to pay any royalties, compulsory license fees, residuals or any other payments; + The Work does not infringe the copyright, trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party. + EXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF THE WORK. + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 8. Miscellaneous + + Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at http://creativecommons.org/. json: cc-by-nc-sa-1.0.json - yml: cc-by-nc-sa-1.0.yml + yaml: cc-by-nc-sa-1.0.yml html: cc-by-nc-sa-1.0.html - text: cc-by-nc-sa-1.0.LICENSE + license: cc-by-nc-sa-1.0.LICENSE - license_key: cc-by-nc-sa-2.0 + category: Source-available spdx_license_key: CC-BY-NC-SA-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Attribution-NonCommercial-ShareAlike 2.0 + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. + "Licensor" means the individual or entity that offers the Work under the terms of this License. + "Original Author" means the individual or entity who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, Noncommercial, ShareAlike. + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to create and reproduce Derivative Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works; + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved, including but not limited to the rights set forth in Sections 4(e) and 4(f). + + 4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested. + You may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, a later version of this License with the same License Elements as this License, or a Creative Commons iCommons license that contains the same License Elements as this License (e.g. Attribution-NonCommercial-ShareAlike 2.0 Japan). You must include a copy of, or the Uniform Resource Identifier for, this License or other license specified in the previous sentence with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License. + You may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works. + If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + For the avoidance of doubt, where the Work is a musical composition: + + Performance Royalties Under Blanket Licenses. Licensor reserves the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work if that performance is primarily intended for or directed toward commercial advantage or private monetary compensation. + Mechanical Rights and Statutory Royalties. Licensor reserves the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions), if Your distribution of such cover version is primarily intended for or directed toward commercial advantage or private monetary compensation. + Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor reserves the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions), if Your public digital performance is primarily intended for or directed toward commercial advantage or private monetary compensation. + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 8. Miscellaneous + + Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at http://creativecommons.org/. json: cc-by-nc-sa-2.0.json - yml: cc-by-nc-sa-2.0.yml + yaml: cc-by-nc-sa-2.0.yml html: cc-by-nc-sa-2.0.html - text: cc-by-nc-sa-2.0.LICENSE + license: cc-by-nc-sa-2.0.LICENSE - license_key: cc-by-nc-sa-2.0-fr + category: Source-available spdx_license_key: CC-BY-NC-SA-2.0-FR other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Creative Commons Paternité - Pas d'Utilisation Commerciale - Partage Des Conditions Initiales A l'Identique 2.0 + + Creative Commons n'est pas un cabinet d'avocats et ne fournit pas de services de conseil juridique. La distribution de la présente version de ce contrat ne crée aucune relation juridique entre les parties au contrat présenté ci-après et Creative Commons. Creative Commons fournit cette offre de contrat-type en l'état, à seule fin d'information. Creative Commons ne saurait être tenu responsable des éventuels préjudices résultant du contenu ou de l'utilisation de ce contrat. + + Contrat + + L'Oeuvre (telle que définie ci-dessous) est mise à disposition selon les termes du présent contrat appelé Contrat Public Creative Commons (dénommé ici « CPCC » ou « Contrat »). L'Oeuvre est protégée par le droit de la propriété littéraire et artistique (droit d'auteur, droits voisins, droits des producteurs de bases de données) ou toute autre loi applicable. Toute utilisation de l'Oeuvre autrement qu'explicitement autorisée selon ce Contrat ou le droit applicable est interdite. + + L'exercice sur l'Oeuvre de tout droit proposé par le présent contrat vaut acceptation de celui-ci. Selon les termes et les obligations du présent contrat, la partie Offrante propose à la partie Acceptante l'exercice de certains droits présentés ci-après, et l'Acceptant en approuve les termes et conditions d'utilisation. + + 1. Définitions + + a. « Oeuvre » : oeuvre de l'esprit protégeable par le droit de la propriété littéraire et artistique ou toute loi applicable et qui est mise à disposition selon les termes du présent Contrat. + + b. « Oeuvre dite Collective » : une oeuvre dans laquelle l'oeuvre, dans sa forme intégrale et non modifiée, est assemblée en un ensemble collectif avec d'autres contributions qui constituent en elles-mêmes des oeuvres séparées et indépendantes. Constituent notamment des Oeuvres dites Collectives les publications périodiques, les anthologies ou les encyclopédies. Aux termes de la présente autorisation, une oeuvre qui constitue une Oeuvre dite Collective ne sera pas considérée comme une Oeuvre dite Dérivée (telle que définie ci-après). + + c. « Oeuvre dite Dérivée » : une oeuvre créée soit à partir de l'Oeuvre seule, soit à partir de l'Oeuvre et d'autres oeuvres préexistantes. Constituent notamment des Oeuvres dites Dérivées les traductions, les arrangements musicaux, les adaptations théâtrales, littéraires ou cinématographiques, les enregistrements sonores, les reproductions par un art ou un procédé quelconque, les résumés, ou toute autre forme sous laquelle l'Oeuvre puisse être remaniée, modifiée, transformée ou adaptée, à l'exception d'une oeuvre qui constitue une Oeuvre dite Collective. Une Oeuvre dite Collective ne sera pas considérée comme une Oeuvre dite Dérivée aux termes du présent Contrat. Dans le cas où l'Oeuvre serait une composition musicale ou un enregistrement sonore, la synchronisation de l'oeuvre avec une image animée sera considérée comme une Oeuvre dite Dérivée pour les propos de ce Contrat. + + d. « Auteur original » : la ou les personnes physiques qui ont créé l'Oeuvre. + + e. « Offrant » : la ou les personne(s) physique(s) ou morale(s) qui proposent la mise à disposition de l'Oeuvre selon les termes du présent Contrat. + + f. « Acceptant » : la personne physique ou morale qui accepte le présent contrat et exerce des droits sans en avoir violé les termes au préalable ou qui a reçu l'autorisation expresse de l'Offrant d'exercer des droits dans le cadre du présent contrat malgré une précédente violation de ce contrat. + + g. « Options du Contrat » : les attributs génériques du Contrat tels qu'ils ont été choisis par l'Offrant et indiqués dans le titre de ce Contrat : Paternité - Pas d'Utilisation Commerciale - Partage Des Conditions Initiales A l'Identique. + + 2. Exceptions aux droits exclusifs. Aucune disposition de ce contrat n'a pour intention de réduire, limiter ou restreindre les prérogatives issues des exceptions aux droits, de l'épuisement des droits ou d'autres limitations aux droits exclusifs des ayants droit selon le droit de la propriété littéraire et artistique ou les autres lois applicables. + + 3. Autorisation. Soumis aux termes et conditions définis dans cette autorisation, et ceci pendant toute la durée de protection de l'Oeuvre par le droit de la propriété littéraire et artistique ou le droit applicable, l'Offrant accorde à l'Acceptant l'autorisation mondiale d'exercer à titre gratuit et non exclusif les droits suivants : + + a. reproduire l'Oeuvre, incorporer l'Oeuvre dans une ou plusieurs Oeuvres dites Collectives et reproduire l'Oeuvre telle qu'incorporée dans lesdites Oeuvres dites Collectives; + + b. créer et reproduire des Oeuvres dites Dérivées; + + c. distribuer des exemplaires ou enregistrements, présenter, représenter ou communiquer l'Oeuvre au public par tout procédé technique, y compris incorporée dans des Oeuvres Collectives; + + d. distribuer des exemplaires ou phonogrammes, présenter, représenter ou communiquer au public des Oeuvres dites Dérivées par tout procédé technique; + + e. lorsque l'Oeuvre est une base de données, extraire et réutiliser des parties substantielles de l'Oeuvre. + + Les droits mentionnés ci-dessus peuvent être exercés sur tous les supports, médias, procédés techniques et formats. Les droits ci-dessus incluent le droit d'effectuer les modifications nécessaires techniquement à l'exercice des droits dans d'autres formats et procédés techniques. L'exercice de tous les droits qui ne sont pas expressément autorisés par l'Offrant ou dont il n'aurait pas la gestion demeure réservé, notamment les mécanismes de gestion collective obligatoire applicables décrits à l'article 4(e). + + 4. Restrictions. L'autorisation accordée par l'article 3 est expressément assujettie et limitée par le respect des restrictions suivantes : + + + a. L'Acceptant peut reproduire, distribuer, représenter ou communiquer au public l'Oeuvre y compris par voie numérique uniquement selon les termes de ce Contrat. L'Acceptant doit inclure une copie ou l'adresse Internet (Identifiant Uniforme de Ressource) du présent Contrat à toute reproduction ou enregistrement de l'Oeuvre que l'Acceptant distribue, représente ou communique au public y compris par voie numérique. L'Acceptant ne peut pas offrir ou imposer de conditions d'utilisation de l'Oeuvre qui altèrent ou restreignent les termes du présent Contrat ou l'exercice des droits qui y sont accordés au bénéficiaire. L'Acceptant ne peut pas céder de droits sur l'Oeuvre. L'Acceptant doit conserver intactes toutes les informations qui renvoient à ce Contrat et à l'exonération de responsabilité. L'Acceptant ne peut pas reproduire, distribuer, représenter ou communiquer au public l'Oeuvre, y compris par voie numérique, en utilisant une mesure technique de contrôle d'accès ou de contrôle d'utilisation qui serait contradictoire avec les termes de cet Accord contractuel. Les mentions ci-dessus s'appliquent à l'Oeuvre telle qu'incorporée dans une Oeuvre dite Collective, mais, en dehors de l'Oeuvre en elle-même, ne soumettent pas l'Oeuvre dite Collective, aux termes du présent Contrat. Si l'Acceptant crée une Oeuvre dite Collective, à la demande de tout Offrant, il devra, dans la mesure du possible, retirer de l'Oeuvre dite Collective toute référence au dit Offrant, comme demandé. Si l'Acceptant crée une Oeuvre dite Collective, à la demande de tout Auteur, il devra, dans la mesure du possible, retirer de l'Oeuvre dite Collective toute référence au dit Auteur, comme demandé. Si l'Acceptant crée une Oeuvre dite Dérivée, à la demande de tout Offrant, il devra, dans la mesure du possible, retirer de l'Oeuvre dite Dérivée toute référence au dit Offrant, comme demandé. Si l'Acceptant crée une Oeuvre dite Dérivée, à la demande de tout Auteur, il devra, dans la mesure du possible, retirer de l'Oeuvre dite Dérivée toute référence au dit Auteur, comme demandé. + + b. L'Acceptant peut reproduire, distribuer, représenter ou communiquer au public une Oeuvre dite Dérivée y compris par voie numérique uniquement sous les termes de ce Contrat, ou d'une version ultérieure de ce Contrat comprenant les mêmes Options du Contrat que le présent Contrat, ou un Contrat Creative Commons iCommons comprenant les mêmes Options du Contrat que le présent Contrat (par exemple Paternité - Pas d'Utilisation Commerciale - Partage Des Conditions Initiales A l'Identique 2.0 Japon). L'Acceptant doit inclure une copie ou l'adresse Internet (Identifiant Uniforme de Ressource) du présent Contrat, ou d'un autre Contrat tel que décrit à la phrase précédente, à toute reproduction ou enregistrement de l'Oeuvre dite Dérivée que l'Acceptant distribue, représente ou communique au public y compris par voie numérique. L'Acceptant ne peut pas offrir ou imposer de conditions d'utilisation sur l'Oeuvre dite Dérivée qui altèrent ou restreignent les termes du présent Contrat ou l'exercice des droits qui y sont accordés au bénéficiaire, et doit conserver intactes toutes les informations qui renvoient à ce Contrat et à l'avertissement sur les garanties. L'Acceptant ne peut pas reproduire, distribuer, représenter ou communiquer au public y compris par voie numérique l'Oeuvre dite Dérivée en utilisant une mesure technique de contrôle d'accès ou de contrôle d'utilisation qui serait contradictoire avec les termes de cet Accord contractuel. Les mentions ci-dessus s'appliquent à l'Oeuvre dite Dérivée telle qu'incorporée dans une Oeuvre dite Collective, mais, en dehors de l'Oeuvre dite Dérivée en elle-même, ne soumettent pas l'Oeuvre Collective, aux termes du présent Contrat. + + c. L'Acceptant ne peut exercer aucun des droits conférés par l'article 3 avec l'intention ou l'objectif d'obtenir un profit commercial ou une compensation financière personnelle. L'échange de l'Oeuvre avec d'autres Oeuvres protégées par le droit de la propriété littéraire et artistique par le partage électronique de fichiers, ou par tout autre moyen, n'est pas considéré comme un échange avec l'intention ou l'objectif d'un profit commercial ou d'une compensation financière personnelle, dans la mesure où aucun paiement ou compensation financière n'intervient en relation avec l'échange d'Oeuvres protégées. + + d. Si l'Acceptant reproduit, distribue, représente ou communique au public, y compris par voie numérique, l'Oeuvre ou toute Oeuvre dite Dérivée ou toute Oeuvre dite Collective, il doit conserver intactes toutes les informations sur le régime des droits et en attribuer la paternité à l'Auteur Original, de manière raisonnable au regard au médium ou au moyen utilisé. Il doit communiquer le nom de l'Auteur Original ou son éventuel pseudonyme s'il est indiqué ; le titre de l'Oeuvre Originale s'il est indiqué ; dans la mesure du possible, l'adresse Internet ou Identifiant Uniforme de Ressource (URI), s'il existe, spécifié par l'Offrant comme associé à l'Oeuvre, à moins que cette adresse ne renvoie pas aux informations légales (paternité et conditions d'utilisation de l'Oeuvre). Dans le cas d'une Oeuvre dite Dérivée, il doit indiquer les éléments identifiant l'utilisation l'Oeuvre dans l'Oeuvre dite Dérivée par exemple « Traduction anglaise de l'Oeuvre par l'Auteur Original » ou « Scénario basé sur l'Oeuvre par l'Auteur Original ». Ces obligations d'attribution de paternité doivent être exécutées de manière raisonnable. Cependant, dans le cas d'une Oeuvre dite Dérivée ou d'une Oeuvre dite Collective, ces informations doivent, au minimum, apparaître à la place et de manière aussi visible que celles à laquelle apparaissent les informations de même nature. + + e. Dans le cas où une utilisation de l'Oeuvre serait soumise à un régime légal de gestion collective obligatoire, l'Offrant se réserve le droit exclusif de collecter ces redevances par l'intermédiaire de la société de perception et de répartition des droits compétente. Sont notamment concernés la radiodiffusion et la communication dans un lieu public de phonogrammes publiés à des fins de commerce, certains cas de retransmission par câble et satellite, la copie privée d'Oeuvres fixées sur phonogrammes ou vidéogrammes, la reproduction par reprographie. + + 5. Garantie et exonération de responsabilité + + + a. En mettant l'Oeuvre à la disposition du public selon les termes de ce Contrat, l'Offrant déclare de bonne foi qu'à sa connaissance et dans les limites d'une enquête raisonnable : + + i. L'Offrant a obtenu tous les droits sur l'Oeuvre nécessaires pour pouvoir autoriser l'exercice des droits accordés par le présent Contrat, et permettre la jouissance paisible et l'exercice licite de ces droits, ceci sans que l'Acceptant n'ait aucune obligation de verser de rémunération ou tout autre paiement ou droits, dans la limite des mécanismes de gestion collective obligatoire applicables décrits à l'article 4(e); + + ii. L'Oeuvre n'est constitutive ni d'une violation des droits de tiers, notamment du droit de la propriété littéraire et artistique, du droit des marques, du droit de l'information, du droit civil ou de tout autre droit, ni de diffamation, de violation de la vie privée ou de tout autre préjudice délictuel à l'égard de toute tierce partie. + + b. A l'exception des situations expressément mentionnées dans le présent Contrat ou dans un autre accord écrit, ou exigées par la loi applicable, l'Oeuvre est mise à disposition en l'état sans garantie d'aucune sorte, qu'elle soit expresse ou tacite, y compris à l'égard du contenu ou de l'exactitude de l'Oeuvre. + + 6. Limitation de responsabilité. A l'exception des garanties d'ordre public imposées par la loi applicable et des réparations imposées par le régime de la responsabilité vis-à-vis d'un tiers en raison de la violation des garanties prévues par l'article 5 du présent contrat, l'Offrant ne sera en aucun cas tenu responsable vis-à-vis de l'Acceptant, sur la base d'aucune théorie légale ni en raison d'aucun préjudice direct, indirect, matériel ou moral, résultant de l'exécution du présent Contrat ou de l'utilisation de l'Oeuvre, y compris dans l'hypothèse où l'Offrant avait connaissance de la possible existence d'un tel préjudice. + + 7. Résiliation + + a. Tout manquement aux termes du contrat par l'Acceptant entraîne la résiliation automatique du Contrat et la fin des droits qui en découlent. Cependant, le contrat conserve ses effets envers les personnes physiques ou morales qui ont reçu de la part de l'Acceptant, en exécution du présent contrat, la mise à disposition d'Oeuvres dites Dérivées, ou d'Oeuvres dites Collectives, ceci tant qu'elles respectent pleinement leurs obligations. Les sections 1, 2, 5, 6 et 7 du contrat continuent à s'appliquer après la résiliation de celui-ci. + + b. Dans les limites indiquées ci-dessus, le présent Contrat s'applique pendant toute la durée de protection de l'Oeuvre selon le droit applicable. Néanmoins, l'Offrant se réserve à tout moment le droit d'exploiter l'Oeuvre sous des conditions contractuelles différentes, ou d'en cesser la diffusion; cependant, le recours à cette option ne doit pas conduire à retirer les effets du présent Contrat (ou de tout contrat qui a été ou doit être accordé selon les termes de ce Contrat), et ce Contrat continuera à s'appliquer dans tous ses effets jusqu'à ce que sa résiliation intervienne dans les conditions décrites ci-dessus. + + 8. Divers + + a. A chaque reproduction ou communication au public par voie numérique de l'Oeuvre ou d'une Oeuvre dite Collective par l'Acceptant, l'Offrant propose au bénéficiaire une offre de mise à disposition de l'Oeuvre dans des termes et conditions identiques à ceux accordés à la partie Acceptante dans le présent Contrat. + + b. A chaque reproduction ou communication au public par voie numérique d'une Oeuvre dite Dérivée par l'Acceptant, l'Offrant propose au bénéficiaire une offre de mise à disposition du bénéficiaire de l'Oeuvre originale dans des termes et conditions identiques à ceux accordés à la partie Acceptante dans le présent Contrat. + + c. La nullité ou l'inapplicabilité d'une quelconque disposition de ce Contrat au regard de la loi applicable n'affecte pas celle des autres dispositions qui resteront pleinement valides et applicables. Sans action additionnelle par les parties à cet accord, lesdites dispositions devront être interprétées dans la mesure minimum nécessaire à leur validité et leur applicabilité. + + d. Aucune limite, renonciation ou modification des termes ou dispositions du présent Contrat ne pourra être acceptée sans le consentement écrit et signé de la partie compétente. + + e. Ce Contrat constitue le seul accord entre les parties à propos de l'Oeuvre mise ici à disposition. Il n'existe aucun élément annexe, accord supplémentaire ou mandat portant sur cette Oeuvre en dehors des éléments mentionnés ici. L'Offrant ne sera tenu par aucune disposition supplémentaire qui pourrait apparaître dans une quelconque communication en provenance de l'Acceptant. Ce Contrat ne peut être modifié sans l'accord mutuel écrit de l'Offrant et de l'Acceptant. + + f. Le droit applicable est le droit français. + + Creative Commons n'est pas partie à ce Contrat et n'offre aucune forme de garantie relative à l'Oeuvre. Creative Commons décline toute responsabilité à l'égard de l'Acceptant ou de toute autre partie, quel que soit le fondement légal de cette responsabilité et quel que soit le préjudice subi, direct, indirect, matériel ou moral, qui surviendrait en rapport avec le présent Contrat. Cependant, si Creative Commons s'est expressément identifié comme Offrant pour mettre une Oeuvre à disposition selon les termes de ce Contrat, Creative Commons jouira de tous les droits et obligations d'un Offrant. + + A l'exception des fins limitées à informer le public que l'Oeuvre est mise à disposition sous CPCC, aucune des parties n'utilisera la marque « Creative Commons » ou toute autre indication ou logo afférent sans le consentement préalable écrit de Creative Commons. Toute utilisation autorisée devra être effectuée en conformité avec les lignes directrices de Creative Commons à jour au moment de l'utilisation, telles qu'elles sont disponibles sur son site Internet ou sur simple demande. + + Creative Commons peut être contacté à https://creativecommons.org/. json: cc-by-nc-sa-2.0-fr.json - yml: cc-by-nc-sa-2.0-fr.yml + yaml: cc-by-nc-sa-2.0-fr.yml html: cc-by-nc-sa-2.0-fr.html - text: cc-by-nc-sa-2.0-fr.LICENSE + license: cc-by-nc-sa-2.0-fr.LICENSE - license_key: cc-by-nc-sa-2.0-uk + category: Source-available spdx_license_key: CC-BY-NC-SA-2.0-UK other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Creative Commons Attribution - Non-Commercial - Share-Alike 2.0 England and Wales + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + + Licence + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENCE ("CCPL" OR "LICENCE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENCE OR COPYRIGHT LAW IS PROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENCE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + This Creative Commons England and Wales Public Licence enables You (all capitalised terms defined below) to view, edit, modify, translate and distribute Works worldwide, under the terms of this licence, provided that You credit the Original Author. + + 'The Licensor' [one or more legally recognised persons or entities offering the Work under the terms and conditions of this Licence] + + and + + 'You' + + agree as follows: + + 1. Definitions + + a. "Attribution" means acknowledging all the parties who have contributed to and have rights in the Work or Collective Work under this Licence. + + b. "Collective Work" means the Work in its entirety in unmodified form along with a number of other separate and independent works, assembled into a collective whole. + + c. "Derivative Work" means any work created by the editing, modification, adaptation or translation of the Work in any media (however a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this Licence). For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this Licence. + + d. "Licence" means this Creative Commons England and Wales Public Licence agreement. + + e. "Licence Elements" means the following high-level licence attributes indicated in the title of this Licence: Attribution, Non-Commercial, Share-Alike. + + f. "Non-Commercial" means "not primarily intended for or directed towards commercial advantage or private monetary compensation". The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed towards commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works. + + g. "Original Author" means the individual (or entity) who created the Work. + + h. "Work" means the work protected by copyright which is offered under the terms of this Licence. + + For the purpose of this Licence, when not inconsistent with the context, words in the singular number include the plural number. + + 2. Licence Terms + + 2.1 The Licensor hereby grants to You a worldwide, royalty-free, non-exclusive, Licence for Non-Commercial use and for the duration of copyright in the Work. + + You may: + + • copy the Work; + + • create one or more Derivative Works; + + • incorporate the Work into one or more Collective Works; + + • copy Derivative Works or the Work as incorporated in any Collective Work; and + + • publish, distribute, archive, perform or otherwise disseminate the Work or the Work as incorporated in any Collective Work, to the public in any material form in any media whether now known or hereafter created. + + HOWEVER, + + You must not: + + • impose any terms on the use to be made of the Work, the Derivative Work or the Work as incorporated in a Collective Work that alter or restrict the terms of this Licence or any rights granted under it or has the effect or intent of restricting the ability to exercise those rights; + + • impose any digital rights management technology on the Work or the Work as incorporated in a Collective Work that alters or restricts the terms of this Licence or any rights granted under it or has the effect or intent of restricting the ability to exercise those rights; + + • sublicense the Work; + + • subject the Work to any derogatory treatment as defined in the Copyright, Designs and Patents Act 1988. + + FINALLY, + + You must: + + • make reference to this Licence (by Uniform Resource Identifier (URI), spoken word or as appropriate to the media used) on all copies of the Work and Collective Works published, distributed, performed or otherwise disseminated or made available to the public by You; + + • recognise the Licensor's / Original Author's right of attribution in any Work and Collective Work that You publish, distribute, perform or otherwise disseminate to the public and ensure that You credit the Licensor / Original Author as appropriate to the media used; and + + • to the extent reasonably practicable, keep intact all notices that refer to this Licence, in particular the URI, if any, that the Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work. + + Additional Provisions for third parties making use of the Work + + 2.2. Further licence from the Licensor + + Each time You publish, distribute, perform or otherwise disseminate + + • the Work; or + + • any Derivative Work; or + + • the Work as incorporated in a Collective Work + + the Licensor agrees to offer to the relevant third party making use of the Work (in any of the alternatives set out above) a licence to use the Work on the same terms and conditions as granted to You hereunder. + + 2.3. Further licence from You + + Each time You publish, distribute, perform or otherwise disseminate + + • a Derivative Work; or + + • a Derivative Work as incorporated in a Collective Work + + You agree to offer to the relevant third party making use of the Work (in either of the alternatives set out above) a licence to use the Derivative Work on any of the following premises: + + • a licence on the same terms and conditions as the licence granted to You hereunder; or + + • a later version of the licence granted to You hereunder; or + + • any other Creative Commons licence with the same Licence Elements. + + 2.4. This Licence does not affect any rights that the User may have under any applicable law, including fair use, fair dealing or any other legally recognised limitation or exception to copyright infringement. + + 2.5. All rights not expressly granted by the Licensor are hereby reserved, including but not limited to, the exclusive right to collect, whether individually or via a licensing body, such as a collecting society, royalties for any use of the Work which results in commercial advantage or private monetary compensation. + + 3. Warranties and Disclaimer + + Except as required by law, the Work is licensed by the Licensor on an "as is" and "as available" basis and without any warranty of any kind, either express or implied. + + 4. Limit of Liability + + Subject to any liability which may not be excluded or limited by law the Licensor shall not be liable and hereby expressly excludes all liability for loss or damage howsoever and whenever caused to You. + + 5. Termination + + The rights granted to You under this Licence shall terminate automatically upon any breach by You of the terms of this Licence. Individuals or entities who have received Collective Works from You under this Licence, however, will not have their Licences terminated provided such individuals or entities remain in full compliance with those Licences. + + 6. General + + 6.1. The validity or enforceability of the remaining terms of this agreement is not affected by the holding of any provision of it to be invalid or unenforceable. + + 6.2. This Licence constitutes the entire Licence Agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. The Licensor shall not be bound by any additional provisions that may appear in any communication in any form. + + 6.3. A person who is not a party to this Licence shall have no rights under the Contracts (Rights of Third Parties) Act 1999 to enforce any of its terms. + + 6.4. This Licence shall be governed by the law of England and Wales and the parties irrevocably submit to the exclusive jurisdiction of the Courts of England and Wales. + + 7. On the role of Creative Commons + + 7.1. Neither the Licensor nor the User may use the Creative Commons logo except to indicate that the Work is licensed under a Creative Commons Licence. Any permitted use has to be in compliance with the Creative Commons trade mark usage guidelines at the time of use of the Creative Commons trade mark. These guidelines may be found on the Creative Commons website or be otherwise available upon request from time to time. + + 7.2. Creative Commons Corporation does not profit financially from its role in providing this Licence and will not investigate the claims of any Licensor or user of the Licence. + + 7.3. One of the conditions that Creative Commons Corporation requires of the Licensor and You is an acknowledgement of its limited role and agreement by all who use the Licence that the Corporation is not responsible to anyone for the statements and actions of You or the Licensor or anyone else attempting to use or using this Licence. + + 7.4. Creative Commons Corporation is not a party to this Licence, and makes no warranty whatsoever in connection to the Work or in connection to the Licence, and in all events is not liable for any loss or damage resulting from the Licensor's or Your reliance on this Licence or on its enforceability. + + 7.5. USE OF THIS LICENCE MEANS THAT YOU AND THE LICENSOR EACH ACCEPTS THESE CONDITIONS IN SECTION 7.1, 7.2, 7.3, 7.4 AND EACH ACKNOWLEDGES CREATIVE COMMONS CORPORATION'S VERY LIMITED ROLE AS A FACILITATOR OF THE LICENCE FROM THE LICENSOR TO YOU. + + Creative Commons is not a party to this Licence, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this licence. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at https://creativecommons.org/. json: cc-by-nc-sa-2.0-uk.json - yml: cc-by-nc-sa-2.0-uk.yml + yaml: cc-by-nc-sa-2.0-uk.yml html: cc-by-nc-sa-2.0-uk.html - text: cc-by-nc-sa-2.0-uk.LICENSE + license: cc-by-nc-sa-2.0-uk.LICENSE - license_key: cc-by-nc-sa-2.5 + category: Source-available spdx_license_key: CC-BY-NC-SA-2.5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Attribution-NonCommercial-ShareAlike 2.5 + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. + "Licensor" means the individual or entity that offers the Work under the terms of this License. + "Original Author" means the individual or entity who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, Noncommercial, ShareAlike. + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to create and reproduce Derivative Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works; + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved, including but not limited to the rights set forth in Sections 4(e) and 4(f). + + 4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(d), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by clause 4(d), as requested. + You may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, a later version of this License with the same License Elements as this License, or a Creative Commons iCommons license that contains the same License Elements as this License (e.g. Attribution-NonCommercial-ShareAlike 2.5 Japan). You must include a copy of, or the Uniform Resource Identifier for, this License or other license specified in the previous sentence with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License. + You may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works. + If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + For the avoidance of doubt, where the Work is a musical composition: + + Performance Royalties Under Blanket Licenses. Licensor reserves the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work if that performance is primarily intended for or directed toward commercial advantage or private monetary compensation. + Mechanical Rights and Statutory Royalties. Licensor reserves the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions), if Your distribution of such cover version is primarily intended for or directed toward commercial advantage or private monetary compensation. + Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor reserves the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions), if Your public digital performance is primarily intended for or directed toward commercial advantage or private monetary compensation. + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 8. Miscellaneous + + Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at http://creativecommons.org/. json: cc-by-nc-sa-2.5.json - yml: cc-by-nc-sa-2.5.yml + yaml: cc-by-nc-sa-2.5.yml html: cc-by-nc-sa-2.5.html - text: cc-by-nc-sa-2.5.LICENSE + license: cc-by-nc-sa-2.5.LICENSE - license_key: cc-by-nc-sa-3.0 + category: Source-available spdx_license_key: CC-BY-NC-SA-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Creative Commons Legal Code + + Attribution-NonCommercial-ShareAlike 3.0 Unported + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR + DAMAGES RESULTING FROM ITS USE. + + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE + COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY + COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS + AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE + TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY + BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS + CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND + CONDITIONS. + + 1. Definitions + + a. "Adaptation" means a work based upon the Work, or upon the Work and + other pre-existing works, such as a translation, adaptation, + derivative work, arrangement of music or other alterations of a + literary or artistic work, or phonogram or performance and includes + cinematographic adaptations or any other form in which the Work may be + recast, transformed, or adapted including in any form recognizably + derived from the original, except that a work that constitutes a + Collection will not be considered an Adaptation for the purpose of + this License. For the avoidance of doubt, where the Work is a musical + work, performance or phonogram, the synchronization of the Work in + timed-relation with a moving image ("synching") will be considered an + Adaptation for the purpose of this License. + b. "Collection" means a collection of literary or artistic works, such as + encyclopedias and anthologies, or performances, phonograms or + broadcasts, or other works or subject matter other than works listed + in Section 1(g) below, which, by reason of the selection and + arrangement of their contents, constitute intellectual creations, in + which the Work is included in its entirety in unmodified form along + with one or more other contributions, each constituting separate and + independent works in themselves, which together are assembled into a + collective whole. A work that constitutes a Collection will not be + considered an Adaptation (as defined above) for the purposes of this + License. + c. "Distribute" means to make available to the public the original and + copies of the Work or Adaptation, as appropriate, through sale or + other transfer of ownership. + d. "License Elements" means the following high-level license attributes + as selected by Licensor and indicated in the title of this License: + Attribution, Noncommercial, ShareAlike. + e. "Licensor" means the individual, individuals, entity or entities that + offer(s) the Work under the terms of this License. + f. "Original Author" means, in the case of a literary or artistic work, + the individual, individuals, entity or entities who created the Work + or if no individual or entity can be identified, the publisher; and in + addition (i) in the case of a performance the actors, singers, + musicians, dancers, and other persons who act, sing, deliver, declaim, + play in, interpret or otherwise perform literary or artistic works or + expressions of folklore; (ii) in the case of a phonogram the producer + being the person or legal entity who first fixes the sounds of a + performance or other sounds; and, (iii) in the case of broadcasts, the + organization that transmits the broadcast. + g. "Work" means the literary and/or artistic work offered under the terms + of this License including without limitation any production in the + literary, scientific and artistic domain, whatever may be the mode or + form of its expression including digital form, such as a book, + pamphlet and other writing; a lecture, address, sermon or other work + of the same nature; a dramatic or dramatico-musical work; a + choreographic work or entertainment in dumb show; a musical + composition with or without words; a cinematographic work to which are + assimilated works expressed by a process analogous to cinematography; + a work of drawing, painting, architecture, sculpture, engraving or + lithography; a photographic work to which are assimilated works + expressed by a process analogous to photography; a work of applied + art; an illustration, map, plan, sketch or three-dimensional work + relative to geography, topography, architecture or science; a + performance; a broadcast; a phonogram; a compilation of data to the + extent it is protected as a copyrightable work; or a work performed by + a variety or circus performer to the extent it is not otherwise + considered a literary or artistic work. + h. "You" means an individual or entity exercising rights under this + License who has not previously violated the terms of this License with + respect to the Work, or who has received express permission from the + Licensor to exercise rights under this License despite a previous + violation. + i. "Publicly Perform" means to perform public recitations of the Work and + to communicate to the public those public recitations, by any means or + process, including by wire or wireless means or public digital + performances; to make available to the public Works in such a way that + members of the public may access these Works from a place and at a + place individually chosen by them; to perform the Work to the public + by any means or process and the communication to the public of the + performances of the Work, including by public digital performance; to + broadcast and rebroadcast the Work by any means including signs, + sounds or images. + j. "Reproduce" means to make copies of the Work by any means including + without limitation by sound or visual recordings and the right of + fixation and reproducing fixations of the Work, including storage of a + protected performance or phonogram in digital form or other electronic + medium. + + 2. Fair Dealing Rights. Nothing in this License is intended to reduce, + limit, or restrict any uses free from copyright or rights arising from + limitations or exceptions that are provided for in connection with the + copyright protection under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, + Licensor hereby grants You a worldwide, royalty-free, non-exclusive, + perpetual (for the duration of the applicable copyright) license to + exercise the rights in the Work as stated below: + + a. to Reproduce the Work, to incorporate the Work into one or more + Collections, and to Reproduce the Work as incorporated in the + Collections; + b. to create and Reproduce Adaptations provided that any such Adaptation, + including any translation in any medium, takes reasonable steps to + clearly label, demarcate or otherwise identify that changes were made + to the original Work. For example, a translation could be marked "The + original work was translated from English to Spanish," or a + modification could indicate "The original work has been modified."; + c. to Distribute and Publicly Perform the Work including as incorporated + in Collections; and, + d. to Distribute and Publicly Perform Adaptations. + + The above rights may be exercised in all media and formats whether now + known or hereafter devised. The above rights include the right to make + such modifications as are technically necessary to exercise the rights in + other media and formats. Subject to Section 8(f), all rights not expressly + granted by Licensor are hereby reserved, including but not limited to the + rights described in Section 4(e). + + 4. Restrictions. The license granted in Section 3 above is expressly made + subject to and limited by the following restrictions: + + a. You may Distribute or Publicly Perform the Work only under the terms + of this License. You must include a copy of, or the Uniform Resource + Identifier (URI) for, this License with every copy of the Work You + Distribute or Publicly Perform. You may not offer or impose any terms + on the Work that restrict the terms of this License or the ability of + the recipient of the Work to exercise the rights granted to that + recipient under the terms of the License. You may not sublicense the + Work. You must keep intact all notices that refer to this License and + to the disclaimer of warranties with every copy of the Work You + Distribute or Publicly Perform. When You Distribute or Publicly + Perform the Work, You may not impose any effective technological + measures on the Work that restrict the ability of a recipient of the + Work from You to exercise the rights granted to that recipient under + the terms of the License. This Section 4(a) applies to the Work as + incorporated in a Collection, but this does not require the Collection + apart from the Work itself to be made subject to the terms of this + License. If You create a Collection, upon notice from any Licensor You + must, to the extent practicable, remove from the Collection any credit + as required by Section 4(d), as requested. If You create an + Adaptation, upon notice from any Licensor You must, to the extent + practicable, remove from the Adaptation any credit as required by + Section 4(d), as requested. + b. You may Distribute or Publicly Perform an Adaptation only under: (i) + the terms of this License; (ii) a later version of this License with + the same License Elements as this License; (iii) a Creative Commons + jurisdiction license (either this or a later license version) that + contains the same License Elements as this License (e.g., + Attribution-NonCommercial-ShareAlike 3.0 US) ("Applicable License"). + You must include a copy of, or the URI, for Applicable License with + every copy of each Adaptation You Distribute or Publicly Perform. You + may not offer or impose any terms on the Adaptation that restrict the + terms of the Applicable License or the ability of the recipient of the + Adaptation to exercise the rights granted to that recipient under the + terms of the Applicable License. You must keep intact all notices that + refer to the Applicable License and to the disclaimer of warranties + with every copy of the Work as included in the Adaptation You + Distribute or Publicly Perform. When You Distribute or Publicly + Perform the Adaptation, You may not impose any effective technological + measures on the Adaptation that restrict the ability of a recipient of + the Adaptation from You to exercise the rights granted to that + recipient under the terms of the Applicable License. This Section 4(b) + applies to the Adaptation as incorporated in a Collection, but this + does not require the Collection apart from the Adaptation itself to be + made subject to the terms of the Applicable License. + c. You may not exercise any of the rights granted to You in Section 3 + above in any manner that is primarily intended for or directed toward + commercial advantage or private monetary compensation. The exchange of + the Work for other copyrighted works by means of digital file-sharing + or otherwise shall not be considered to be intended for or directed + toward commercial advantage or private monetary compensation, provided + there is no payment of any monetary compensation in con-nection with + the exchange of copyrighted works. + d. If You Distribute, or Publicly Perform the Work or any Adaptations or + Collections, You must, unless a request has been made pursuant to + Section 4(a), keep intact all copyright notices for the Work and + provide, reasonable to the medium or means You are utilizing: (i) the + name of the Original Author (or pseudonym, if applicable) if supplied, + and/or if the Original Author and/or Licensor designate another party + or parties (e.g., a sponsor institute, publishing entity, journal) for + attribution ("Attribution Parties") in Licensor's copyright notice, + terms of service or by other reasonable means, the name of such party + or parties; (ii) the title of the Work if supplied; (iii) to the + extent reasonably practicable, the URI, if any, that Licensor + specifies to be associated with the Work, unless such URI does not + refer to the copyright notice or licensing information for the Work; + and, (iv) consistent with Section 3(b), in the case of an Adaptation, + a credit identifying the use of the Work in the Adaptation (e.g., + "French translation of the Work by Original Author," or "Screenplay + based on original Work by Original Author"). The credit required by + this Section 4(d) may be implemented in any reasonable manner; + provided, however, that in the case of a Adaptation or Collection, at + a minimum such credit will appear, if a credit for all contributing + authors of the Adaptation or Collection appears, then as part of these + credits and in a manner at least as prominent as the credits for the + other contributing authors. For the avoidance of doubt, You may only + use the credit required by this Section for the purpose of attribution + in the manner set out above and, by exercising Your rights under this + License, You may not implicitly or explicitly assert or imply any + connection with, sponsorship or endorsement by the Original Author, + Licensor and/or Attribution Parties, as appropriate, of You or Your + use of the Work, without the separate, express prior written + permission of the Original Author, Licensor and/or Attribution + Parties. + e. For the avoidance of doubt: + + i. Non-waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme cannot be waived, the Licensor + reserves the exclusive right to collect such royalties for any + exercise by You of the rights granted under this License; + ii. Waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme can be waived, the Licensor reserves + the exclusive right to collect such royalties for any exercise by + You of the rights granted under this License if Your exercise of + such rights is for a purpose or use which is otherwise than + noncommercial as permitted under Section 4(c) and otherwise waives + the right to collect royalties through any statutory or compulsory + licensing scheme; and, + iii. Voluntary License Schemes. The Licensor reserves the right to + collect royalties, whether individually or, in the event that the + Licensor is a member of a collecting society that administers + voluntary licensing schemes, via that society, from any exercise + by You of the rights granted under this License that is for a + purpose or use which is otherwise than noncommercial as permitted + under Section 4(c). + f. Except as otherwise agreed in writing by the Licensor or as may be + otherwise permitted by applicable law, if You Reproduce, Distribute or + Publicly Perform the Work either by itself or as part of any + Adaptations or Collections, You must not distort, mutilate, modify or + take other derogatory action in relation to the Work which would be + prejudicial to the Original Author's honor or reputation. Licensor + agrees that in those jurisdictions (e.g. Japan), in which any exercise + of the right granted in Section 3(b) of this License (the right to + make Adaptations) would be deemed to be a distortion, mutilation, + modification or other derogatory action prejudicial to the Original + Author's honor and reputation, the Licensor will waive or not assert, + as appropriate, this Section, to the fullest extent permitted by the + applicable national law, to enable You to reasonably exercise Your + right under Section 3(b) of this License (right to make Adaptations) + but not otherwise. + + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING AND TO THE + FULLEST EXTENT PERMITTED BY APPLICABLE LAW, LICENSOR OFFERS THE WORK AS-IS + AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE + WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT + LIMITATION, WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT + DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED + WARRANTIES, SO THIS EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE + LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR + ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES + ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS + BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + a. This License and the rights granted hereunder will terminate + automatically upon any breach by You of the terms of this License. + Individuals or entities who have received Adaptations or Collections + from You under this License, however, will not have their licenses + terminated provided such individuals or entities remain in full + compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will + survive any termination of this License. + b. Subject to the above terms and conditions, the license granted here is + perpetual (for the duration of the applicable copyright in the Work). + Notwithstanding the above, Licensor reserves the right to release the + Work under different license terms or to stop distributing the Work at + any time; provided, however that any such election will not serve to + withdraw this License (or any other license that has been, or is + required to be, granted under the terms of this License), and this + License will continue in full force and effect unless terminated as + stated above. + + 8. Miscellaneous + + a. Each time You Distribute or Publicly Perform the Work or a Collection, + the Licensor offers to the recipient a license to the Work on the same + terms and conditions as the license granted to You under this License. + b. Each time You Distribute or Publicly Perform an Adaptation, Licensor + offers to the recipient a license to the original Work on the same + terms and conditions as the license granted to You under this License. + c. If any provision of this License is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability of + the remainder of the terms of this License, and without further action + by the parties to this agreement, such provision shall be reformed to + the minimum extent necessary to make such provision valid and + enforceable. + d. No term or provision of this License shall be deemed waived and no + breach consented to unless such waiver or consent shall be in writing + and signed by the party to be charged with such waiver or consent. + e. This License constitutes the entire agreement between the parties with + respect to the Work licensed here. There are no understandings, + agreements or representations with respect to the Work not specified + here. Licensor shall not be bound by any additional provisions that + may appear in any communication from You. This License may not be + modified without the mutual written agreement of the Licensor and You. + f. The rights granted under, and the subject matter referenced, in this + License were drafted utilizing the terminology of the Berne Convention + for the Protection of Literary and Artistic Works (as amended on + September 28, 1979), the Rome Convention of 1961, the WIPO Copyright + Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 + and the Universal Copyright Convention (as revised on July 24, 1971). + These rights and subject matter take effect in the relevant + jurisdiction in which the License terms are sought to be enforced + according to the corresponding provisions of the implementation of + those treaty provisions in the applicable national law. If the + standard suite of rights granted under applicable copyright law + includes additional rights not granted under this License, such + additional rights are deemed to be included in the License; this + License is not intended to restrict the license of any rights under + applicable law. + + + Creative Commons Notice + + Creative Commons is not a party to this License, and makes no warranty + whatsoever in connection with the Work. Creative Commons will not be + liable to You or any party on any legal theory for any damages + whatsoever, including without limitation any general, special, + incidental or consequential damages arising in connection to this + license. Notwithstanding the foregoing two (2) sentences, if Creative + Commons has expressly identified itself as the Licensor hereunder, it + shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the + Work is licensed under the CCPL, Creative Commons does not authorize + the use by either party of the trademark "Creative Commons" or any + related trademark or logo of Creative Commons without the prior + written consent of Creative Commons. Any permitted use will be in + compliance with Creative Commons' then-current trademark usage + guidelines, as may be published on its website or otherwise made + available upon request from time to time. For the avoidance of doubt, + this trademark restriction does not form part of this License. + + Creative Commons may be contacted at https://creativecommons.org/. json: cc-by-nc-sa-3.0.json - yml: cc-by-nc-sa-3.0.yml + yaml: cc-by-nc-sa-3.0.yml html: cc-by-nc-sa-3.0.html - text: cc-by-nc-sa-3.0.LICENSE + license: cc-by-nc-sa-3.0.LICENSE - license_key: cc-by-nc-sa-3.0-de + category: Source-available spdx_license_key: CC-BY-NC-SA-3.0-DE other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Creative Commons Namensnennung - Keine kommerzielle Nutzung - Weitergabe unter gleichen Bedingungen 3.0 Deutschland + + CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. + + Lizenz + + DER GEGENSTAND DIESER LIZENZ (WIE UNTER "SCHUTZGEGENSTAND" DEFINIERT) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE COMMONS PUBLIC LICENSE ("CCPL", "LIZENZ" ODER "LIZENZVERTRAG") ZUR VERFÜGUNG GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER ANDERE GESETZE GESCHÜTZT. JEDE FORM DER NUTZUNG DES SCHUTZGEGENSTANDES, DIE NICHT AUFGRUND DIESER LIZENZ ODER DURCH GESETZE GESTATTET IST, IST UNZULÄSSIG. + + DURCH DIE AUSÜBUNG EINES DURCH DIESE LIZENZ GEWÄHRTEN RECHTS AN DEM SCHUTZGEGENSTAND ERKLÄREN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH EINVERSTANDEN. SOWEIT DIESE LIZENZ ALS LIZENZVERTRAG ANZUSEHEN IST, GEWÄHRT IHNEN DER LIZENZGEBER DIE IN DER LIZENZ GENANNTEN RECHTE UNENTGELTLICH UND IM AUSTAUSCH DAFÜR, DASS SIE DAS GEBUNDENSEIN AN DIE LIZENZBEDINGUNGEN AKZEPTIEREN. + + 1. Definitionen + + a. Der Begriff "Abwandlung" im Sinne dieser Lizenz bezeichnet das Ergebnis jeglicher Art von Veränderung des Schutzgegenstandes, solange die eigenpersönlichen Züge des Schutzgegenstandes darin nicht verblassen und daran eigene Schutzrechte entstehen. Das kann insbesondere eine Bearbeitung, Umgestaltung, Änderung, Anpassung, Übersetzung oder Heranziehung des Schutzgegenstandes zur Vertonung von Laufbildern sein. Nicht als Abwandlung des Schutzgegenstandes gelten seine Aufnahme in eine Sammlung oder ein Sammelwerk und die freie Benutzung des Schutzgegenstandes. + + b. Der Begriff "Sammelwerk" im Sinne dieser Lizenz meint eine Zusammenstellung von literarischen, künstlerischen oder wissenschaftlichen Inhalten, sofern diese Zusammenstellung aufgrund von Auswahl und Anordnung der darin enthaltenen selbständigen Elemente eine geistige Schöpfung darstellt, unabhängig davon, ob die Elemente systematisch oder methodisch angelegt und dadurch einzeln zugänglich sind oder nicht. + + c. "Verbreiten" im Sinne dieser Lizenz bedeutet, den Schutzgegenstand oder Abwandlungen im Original oder in Form von Vervielfältigungsstücken, mithin in körperlich fixierter Form der Öffentlichkeit anzubieten oder in Verkehr zu bringen. + + d. Unter "Lizenzelementen" werden im Sinne dieser Lizenz die folgenden übergeordneten Lizenzcharakteristika verstanden, die vom Lizenzgeber ausgewählt wurden und in der Bezeichnung der Lizenz zum Ausdruck kommen: "Namensnennung", "Keine kommerzielle Nutzung", "Weitergabe unter gleichen Bedingungen". + + e. Der "Lizenzgeber" im Sinne dieser Lizenz ist diejenige natürliche oder juristische Person oder Gruppe, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet und insoweit als Rechteinhaberin auftritt. + + f. "Rechteinhaber" im Sinne dieser Lizenz ist der Urheber des Schutzgegenstandes oder jede andere natürliche oder juristische Person oder Gruppe von Personen, die am Schutzgegenstand ein Immaterialgüterrecht erlangt hat, welches die in Abschnitt 3 genannten Handlungen erfasst und bei dem eine Einräumung von Nutzungsrechten oder eine Weiterübertragung an Dritte möglich ist. + + g. Der Begriff "Schutzgegenstand" bezeichnet in dieser Lizenz den literarischen, künstlerischen oder wissenschaftlichen Inhalt, der unter den Bedingungen dieser Lizenz angeboten wird. Das kann insbesondere eine persönliche geistige Schöpfung jeglicher Art, ein Werk der kleinen Münze, ein nachgelassenes Werk oder auch ein Lichtbild oder anderes Objekt eines verwandten Schutzrechts sein, unabhängig von der Art seiner Fixierung und unabhängig davon, auf welche Weise jeweils eine Wahrnehmung erfolgen kann, gleichviel ob in analoger oder digitaler Form. Soweit Datenbanken oder Zusammenstellungen von Daten einen immaterialgüterrechtlichen Schutz eigener Art genießen, unterfallen auch sie dem Begriff "Schutzgegenstand" im Sinne dieser Lizenz. + + h. Mit "Sie" bzw. "Ihnen" ist die natürliche oder juristische Person gemeint, die in dieser Lizenz im Abschnitt 3 genannte Nutzungen des Schutzgegenstandes vornimmt und zuvor in Hinblick auf den Schutzgegenstand nicht gegen Bedingungen dieser Lizenz verstoßen oder aber die ausdrückliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese Lizenz gewährten Nutzungsrechte trotz eines vorherigen Verstoßes auszuüben. + + i. Unter "Öffentlich Zeigen" im Sinne dieser Lizenz sind Veröffentlichungen und Präsentationen des Schutzgegenstandes zu verstehen, die für eine Mehrzahl von Mitgliedern der Öffentlichkeit bestimmt sind und in unkörperlicher Form mittels öffentlicher Wiedergabe in Form von Vortrag, Aufführung, Vorführung, Darbietung, Sendung, Weitersendung, zeit- und ortsunabhängiger Zugänglichmachung oder in körperlicher Form mittels Ausstellung erfolgen, unabhängig von bestimmten Veranstaltungen und unabhängig von den zum Einsatz kommenden Techniken und Verfahren, einschließlich drahtgebundener oder drahtloser Mittel und Einstellen in das Internet. + + j. "Vervielfältigen" im Sinne dieser Lizenz bedeutet, mittels beliebiger Verfahren Vervielfältigungsstücke des Schutzgegenstandes herzustellen, insbesondere durch Ton- oder Bildaufzeichnungen, und umfasst auch den Vorgang, erstmals körperliche Fixierungen des Schutzgegenstandes sowie Vervielfältigungsstücke dieser Fixierungen anzufertigen, sowie die Übertragung des Schutzgegenstandes auf einen Bild- oder Tonträger oder auf ein anderes elektronisches Medium, gleichviel ob in digitaler oder analoger Form. + + 2. Schranken des Immaterialgüterrechts. Diese Lizenz ist in keiner Weise darauf gerichtet, Befugnisse zur Nutzung des Schutzgegenstandes zu vermindern, zu beschränken oder zu vereiteln, die Ihnen aufgrund der Schranken des Urheberrechts oder anderer Rechtsnormen bereits ohne Weiteres zustehen oder sich aus dem Fehlen eines immaterialgüterrechtlichen Schutzes ergeben. + + 3. Einräumung von Nutzungsrechten. Unter den Bedingungen dieser Lizenz räumt Ihnen der Lizenzgeber - unbeschadet unverzichtbarer Rechte und vorbehaltlich des Abschnitts 4.f) - das vergütungsfreie, räumlich und zeitlich (für die Dauer des Schutzrechts am Schutzgegenstand) unbeschränkte einfache Recht ein, den Schutzgegenstand auf die folgenden Arten und Weisen zu nutzen ("unentgeltlich eingeräumtes einfaches Nutzungsrecht für jedermann"): + + a. Den Schutzgegenstand in beliebiger Form und Menge zu vervielfältigen, ihn in Sammelwerke zu integrieren und ihn als Teil solcher Sammelwerke zu vervielfältigen; + + b. Abwandlungen des Schutzgegenstandes anzufertigen, einschließlich Übersetzungen unter Nutzung jedweder Medien, sofern deutlich erkennbar gemacht wird, dass es sich um Abwandlungen handelt; + + c. den Schutzgegenstand, allein oder in Sammelwerke aufgenommen, öffentlich zu zeigen und zu verbreiten; + + d. Abwandlungen des Schutzgegenstandes zu veröffentlichen, öffentlich zu zeigen und zu verbreiten. + + Das vorgenannte Nutzungsrecht wird für alle bekannten sowie für alle noch nicht bekannten Nutzungsarten eingeräumt. Es beinhaltet auch das Recht, solche Änderungen am Schutzgegenstand vorzunehmen, die für bestimmte nach dieser Lizenz zulässige Nutzungen technisch erforderlich sind. Alle sonstigen Rechte, die über diesen Abschnitt hinaus nicht ausdrücklich durch den Lizenzgeber eingeräumt werden, bleiben diesem allein vorbehalten. Soweit Datenbanken oder Zusammenstellungen von Daten Schutzgegenstand dieser Lizenz oder Teil dessen sind und einen immaterialgüterrechtlichen Schutz eigener Art genießen, verzichtet der Lizenzgeber auf sämtliche aus diesem Schutz resultierenden Rechte. + + 4. Bedingungen. Die Einräumung des Nutzungsrechts gemäß Abschnitt 3 dieser Lizenz erfolgt ausdrücklich nur unter den folgenden Bedingungen: + + a. Sie dürfen den Schutzgegenstand ausschließlich unter den Bedingungen dieser Lizenz verbreiten oder öffentlich zeigen. Sie müssen dabei stets eine Kopie dieser Lizenz oder deren vollständige Internetadresse in Form des Uniform-Resource-Identifier (URI) beifügen. Sie dürfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen dieser Lizenz oder die durch diese Lizenz gewährten Rechte beschränken. Sie dürfen den Schutzgegenstand nicht unterlizenzieren. Bei jeder Kopie des Schutzgegenstandes, die Sie verbreiten oder öffentlich zeigen, müssen Sie alle Hinweise unverändert lassen, die auf diese Lizenz und den Haftungsausschluss hinweisen. Wenn Sie den Schutzgegenstand verbreiten oder öffentlich zeigen, dürfen Sie (in Bezug auf den Schutzgegenstand) keine technischen Maßnahmen ergreifen, die den Nutzer des Schutzgegenstandes in der Ausübung der ihm durch diese Lizenz gewährten Rechte behindern können. Dieser Abschnitt 4.a) gilt auch für den Fall, dass der Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt dieser Lizenz unterstellt werden muss. Sofern Sie ein Sammelwerk erstellen, müssen Sie auf die Mitteilung eines Lizenzgebers hin aus dem Sammelwerk die in Abschnitt 4.d) aufgezählten Hinweise entfernen. Wenn Sie eine Abwandlung vornehmen, müssen Sie auf die Mitteilung eines Lizenzgebers hin von der Abwandlung die in Abschnitt 4.d) aufgezählten Hinweise entfernen. + + b. Sie dürfen eine Abwandlung ausschließlich unter den Bedingungen + + i. dieser Lizenz, + + ii. einer späteren Version dieser Lizenz mit denselben Lizenzelementen; + + iii. einer rechtsordnungsspezifischen Creative-Commons-Lizenz mit denselben Lizenzelementen ab Version 3.0 aufwärts (z.B. Namensnennung - Keine kommerzielle Nutzung - Weitergabe unter gleichen Bedingungen 3.0 US) oder + + iv. der Creative-Commons-Unported-Lizenz mit denselben Lizenzelementen ab Version 3.0 aufwärts + + verbreiten oder öffentlich zeigen ("Verwendbare Lizenz"). + + Sie müssen stets eine Kopie der verwendbaren Lizenz oder deren vollständige Internetadresse in Form des Uniform-Resource-Identifier (URI) beifügen, wenn Sie die Abwandlung verbreiten oder öffentlich zeigen. Sie dürfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen der verwendbaren Lizenz oder die durch sie gewährten Rechte beschränken. Bei jeder Abwandlung, die Sie verbreiten oder öffentlich zeigen, müssen Sie alle Hinweise auf die verwendbare Lizenz und den Haftungsausschluss unverändert lassen. Wenn Sie die Abwandlung verbreiten oder öffentlich zeigen, dürfen Sie (in Bezug auf die Abwandlung) keine technischen Maßnahmen ergreifen, die den Nutzer der Abwandlung in der Ausübung der ihm durch die verwendbare Lizenz gewährten Rechte behindern können. Dieser Abschnitt 4.b) gilt auch für den Fall, dass die Abwandlung einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt der verwendbaren Lizenz unterstellt werden muss. + + c. Die Rechteeinräumung gemäß Abschnitt 3 gilt nur für Handlungen, die nicht vorrangig auf einen geschäftlichen Vorteil oder eine geldwerte Vergütung gerichtet sind ("nicht-kommerzielle Nutzung", "Non-commercial-Option"). Wird Ihnen in Zusammenhang mit dem Schutzgegenstand dieser Lizenz ein anderer Schutzgegenstand überlassen, ohne dass eine vertragliche Verpflichtung hierzu besteht (etwa im Wege von File-Sharing), so wird dies nicht als auf geschäftlichen Vorteil oder geldwerte Vergütung gerichtet angesehen, wenn in Verbindung mit dem Austausch der Schutzgegenstände tatsächlich keine Zahlung oder geldwerte Vergütung geleistet wird. + + d. Die Verbreitung und das öffentliche Zeigen des Schutzgegenstandes oder auf ihm aufbauender Abwandlungen oder ihn enthaltender Sammelwerke ist Ihnen nur unter der Bedingung gestattet, dass Sie, vorbehaltlich etwaiger Mitteilungen im Sinne von Abschnitt 4.a), alle dazu gehörenden Rechtevermerke unberührt lassen. Sie sind verpflichtet, die Rechteinhaberschaft in einer der Nutzung entsprechenden, angemessenen Form anzuerkennen, indem Sie - soweit bekannt - Folgendes angeben: + + i. Den Namen (oder das Pseudonym, falls ein solches verwendet wird) des Rechteinhabers und / oder, falls der Lizenzgeber im Rechtevermerk, in den Nutzungsbedingungen oder auf andere angemessene Weise eine Zuschreibung an Dritte vorgenommen hat (z.B. an eine Stiftung, ein Verlagshaus oder eine Zeitung) ("Zuschreibungsempfänger"), Namen bzw. Bezeichnung dieses oder dieser Dritten; + + ii. den Titel des Inhaltes; + + iii. in einer praktikablen Form den Uniform-Resource-Identifier (URI, z.B. Internetadresse), den der Lizenzgeber zum Schutzgegenstand angegeben hat, es sei denn, dieser URI verweist nicht auf den Rechtevermerk oder die Lizenzinformationen zum Schutzgegenstand; + + iv. und im Falle einer Abwandlung des Schutzgegenstandes in Übereinstimmung mit Abschnitt 3.b) einen Hinweis darauf, dass es sich um eine Abwandlung handelt. + + Die nach diesem Abschnitt 4.d) erforderlichen Angaben können in jeder angemessenen Form gemacht werden; im Falle einer Abwandlung des Schutzgegenstandes oder eines Sammelwerkes müssen diese Angaben das Minimum darstellen und bei gemeinsamer Nennung mehrerer Rechteinhaber dergestalt erfolgen, dass sie zumindest ebenso hervorgehoben sind wie die Hinweise auf die übrigen Rechteinhaber. Die Angaben nach diesem Abschnitt dürfen Sie ausschließlich zur Angabe der Rechteinhaberschaft in der oben bezeichneten Weise verwenden. Durch die Ausübung Ihrer Rechte aus dieser Lizenz dürfen Sie ohne eine vorherige, separat und schriftlich vorliegende Zustimmung des Lizenzgebers und / oder des Zuschreibungsempfängers weder explizit noch implizit irgendeine Verbindung zum Lizenzgeber oder Zuschreibungsempfänger und ebenso wenig eine Unterstützung oder Billigung durch ihn andeuten. + + e. Die oben unter 4.a) bis d) genannten Einschränkungen gelten nicht für solche Teile des Schutzgegenstandes, die allein deshalb unter den Schutzgegenstandsbegriff fallen, weil sie als Datenbanken oder Zusammenstellungen von Daten einen immaterialgüterrechtlichen Schutz eigener Art genießen. + + f. Bezüglich Vergütung für die Nutzung des Schutzgegenstandes gilt Folgendes: + + i. Unverzichtbare gesetzliche Vergütungsansprüche: Soweit unverzichtbare Vergütungsansprüche im Gegenzug für gesetzliche Lizenzen vorgesehen oder Pauschalabgabensysteme (zum Beispiel für Leermedien) vorhanden sind, behält sich der Lizenzgeber das ausschließliche Recht vor, die entsprechende Vergütung einzuziehen für jede Ausübung eines Rechts aus dieser Lizenz durch Sie. + + ii. Vergütung bei Zwangslizenzen: Sofern Zwangslizenzen außerhalb dieser Lizenz vorgesehen sind und zustande kommen, behält sich der Lizenzgeber das ausschließliche Recht auf Einziehung der entsprechenden Vergütung für den Fall vor, dass Sie eine Nutzung des Schutzgegenstandes für andere als die in Abschnitt 4.c) als nicht-kommerziell definierten Zwecke vornehmen, verzichtet für alle übrigen, lizenzgerechten Fälle von Nutzung jedoch auf jegliche Vergütung. + + iii. Vergütung in sonstigen Fällen: Bezüglich lizenzgerechter Nutzung des Schutzgegenstandes durch Sie, die nicht unter die beiden vorherigen Abschnitte (i) und (ii) fällt, verzichtet der Lizenzgeber auf jegliche Vergütung, unabhängig davon, ob eine Einziehung der Vergütung durch ihn selbst oder nur durch eine Verwertungsgesellschaft möglich wäre. Der Lizenzgeber behält sich jedoch das ausschließliche Recht auf Einziehung der entsprechenden Vergütung (durch ihn selbst oder eine Verwertungsgesellschaft) für den Fall vor, dass Sie eine Nutzung des Schutzgegenstandes für andere als die in Abschnitt 4.c) als nicht-kommerziell definierten Zwecke vornehmen. + + g. Persönlichkeitsrechte bleiben - soweit sie bestehen - von dieser Lizenz unberührt. + + 5. Gewährleistung + + SOFERN KEINE ANDERS LAUTENDE, SCHRIFTLICHE VEREINBARUNG ZWISCHEN DEM LIZENZGEBER UND IHNEN GESCHLOSSEN WURDE UND SOWEIT MÄNGEL NICHT ARGLISTIG VERSCHWIEGEN WURDEN, BIETET DER LIZENZGEBER DEN SCHUTZGEGENSTAND UND DIE EINRÄUMUNG VON RECHTEN UNTER AUSSCHLUSS JEGLICHER GEWÄHRLEISTUNG AN UND ÜBERNIMMT WEDER AUSDRÜCKLICH NOCH KONKLUDENT GARANTIEN IRGENDEINER ART. DIES UMFASST INSBESONDERE DAS FREISEIN VON SACH- UND RECHTSMÄNGELN, UNABHÄNGIG VON DEREN ERKENNBARKEIT FÜR DEN LIZENZGEBER, DIE VERKEHRSFÄHIGKEIT DES SCHUTZGEGENSTANDES, SEINE VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK SOWIE DIE KORREKTHEIT VON BESCHREIBUNGEN. DIESE GEWÄHRLEISTUNGSBESCHRÄNKUNG GILT NICHT, SOWEIT MÄNGEL ZU SCHÄDEN DER IN ABSCHNITT 6 BEZEICHNETEN ART FÜHREN UND AUF SEITEN DES LIZENZGEBERS DAS JEWEILS GENANNTE VERSCHULDEN BZW. VERTRETENMÜSSEN EBENFALLS VORLIEGT. + + 6. Haftungsbeschränkung + + DER LIZENZGEBER HAFTET IHNEN GEGENÜBER IN BEZUG AUF SCHÄDEN AUS DER VERLETZUNG DES LEBENS, DES KÖRPERS ODER DER GESUNDHEIT NUR, SOFERN IHM WENIGSTENS FAHRLÄSSIGKEIT VORZUWERFEN IST, FÜR SONSTIGE SCHÄDEN NUR BEI GROBER FAHRLÄSSIGKEIT ODER VORSATZ, UND ÜBERNIMMT DARÜBER HINAUS KEINERLEI FREIWILLIGE HAFTUNG. + + 7. Erlöschen + + a. Diese Lizenz und die durch sie eingeräumten Nutzungsrechte erlöschen mit Wirkung für die Zukunft im Falle eines Verstoßes gegen die Lizenzbedingungen durch Sie, ohne dass es dazu der Kenntnis des Lizenzgebers vom Verstoß oder einer weiteren Handlung einer der Vertragsparteien bedarf. Mit natürlichen oder juristischen Personen, die Abwandlungen des Schutzgegenstandes oder diesen enthaltende Sammelwerke unter den Bedingungen dieser Lizenz von Ihnen erhalten haben, bestehen nachträglich entstandene Lizenzbeziehungen jedoch solange weiter, wie die genannten Personen sich ihrerseits an sämtliche Lizenzbedingungen halten. Darüber hinaus gelten die Ziffern 1, 2, 5, 6, 7, und 8 auch nach einem Erlöschen dieser Lizenz fort. + + b. Vorbehaltlich der oben genannten Bedingungen gilt diese Lizenz unbefristet bis der rechtliche Schutz für den Schutzgegenstand ausläuft. Davon abgesehen behält der Lizenzgeber das Recht, den Schutzgegenstand unter anderen Lizenzbedingungen anzubieten oder die eigene Weitergabe des Schutzgegenstandes jederzeit einzustellen, solange die Ausübung dieses Rechts nicht einer Kündigung oder einem Widerruf dieser Lizenz (oder irgendeiner Weiterlizenzierung, die auf Grundlage dieser Lizenz bereits erfolgt ist bzw. zukünftig noch erfolgen muss) dient und diese Lizenz unter Berücksichtigung der oben zum Erlöschen genannten Bedingungen vollumfänglich wirksam bleibt. + + 8. Sonstige Bestimmungen + + a. Jedes Mal wenn Sie den Schutzgegenstand für sich genommen oder als Teil eines Sammelwerkes verbreiten oder öffentlich zeigen, bietet der Lizenzgeber dem Empfänger eine Lizenz zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz. + + b. Jedes Mal wenn Sie eine Abwandlung des Schutzgegenstandes verbreiten oder öffentlich zeigen, bietet der Lizenzgeber dem Empfänger eine Lizenz am ursprünglichen Schutzgegenstand zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz. + + c. Sollte eine Bestimmung dieser Lizenz unwirksam sein, so bleibt davon die Wirksamkeit der Lizenz im Übrigen unberührt. + + d. Keine Bestimmung dieser Lizenz soll als abbedungen und kein Verstoß gegen sie als zulässig gelten, solange die von dem Verzicht oder von dem Verstoß betroffene Seite nicht schriftlich zugestimmt hat. + + e. Diese Lizenz (zusammen mit in ihr ausdrücklich vorgesehenen Erlaubnissen, Mitteilungen und Zustimmungen, soweit diese tatsächlich vorliegen) stellt die vollständige Vereinbarung zwischen dem Lizenzgeber und Ihnen in Bezug auf den Schutzgegenstand dar. Es bestehen keine Abreden, Vereinbarungen oder Erklärungen in Bezug auf den Schutzgegenstand, die in dieser Lizenz nicht genannt sind. Rechtsgeschäftliche Änderungen des Verhältnisses zwischen dem Lizenzgeber und Ihnen sind nur über Modifikationen dieser Lizenz möglich. Der Lizenzgeber ist an etwaige zusätzliche, einseitig durch Sie übermittelte Bestimmungen nicht gebunden. Diese Lizenz kann nur durch schriftliche Vereinbarung zwischen Ihnen und dem Lizenzgeber modifiziert werden. Derlei Modifikationen wirken ausschließlich zwischen dem Lizenzgeber und Ihnen und wirken sich nicht auf die Dritten gemäß Ziffern 8.a) und b) angeboteten Lizenzen aus. + + f. Sofern zwischen Ihnen und dem Lizenzgeber keine anderweitige Vereinbarung getroffen wurde und soweit Wahlfreiheit besteht, findet auf diesen Lizenzvertrag das Recht der Bundesrepublik Deutschland Anwendung. + + Creative Commons Notice + + Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr oder dergleichen in Bezug auf den Schutzgegenstand. Creative Commons haftet Ihnen oder einer anderen Partei unter keinem rechtlichen Gesichtspunkt für irgendwelche Schäden, die - abstrakt oder konkret, zufällig oder vorhersehbar - im Zusammenhang mit dieser Lizenz entstehen. Unbeschadet der vorangegangen beiden Sätze, hat Creative Commons alle Rechte und Pflichten eines Lizenzgebers, wenn es sich ausdrücklich als Lizenzgeber im Sinne dieser Lizenz bezeichnet. + + Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. + + Creative Commons kann kontaktiert werden über https://creativecommons.org/. json: cc-by-nc-sa-3.0-de.json - yml: cc-by-nc-sa-3.0-de.yml + yaml: cc-by-nc-sa-3.0-de.yml html: cc-by-nc-sa-3.0-de.html - text: cc-by-nc-sa-3.0-de.LICENSE + license: cc-by-nc-sa-3.0-de.LICENSE - license_key: cc-by-nc-sa-3.0-igo + category: Source-available spdx_license_key: CC-BY-NC-SA-3.0-IGO other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: "Attribution-NonCommercial-ShareAlike 3.0 IGO\n\nCREATIVE COMMONS CORPORATION IS NOT\ + \ A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT\ + \ CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON\ + \ AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED,\ + \ AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. THE LICENSOR IS NOT NECESSARILY\ + \ AN INTERGOVERNMENTAL ORGANIZATION (IGO), AS DEFINED IN THE LICENSE BELOW.\n\nLicense\n\ + \nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC\ + \ LICENSE (“LICENSE”). THE LICENSOR (DEFINED BELOW) HOLDS COPYRIGHT AND OTHER RIGHTS IN\ + \ THE WORK. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED.\ + \ BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY\ + \ THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION\ + \ FOR YOUR ACCEPTANCE AND AGREEMENT TO THE TERMS OF THE LICENSE.\n\n1. Definitions\n\n \ + \ a. \"IGO\" means, solely and exclusively for purposes of this License, an organization\ + \ established by a treaty or other instrument governed by international law and possessing\ + \ its own international legal personality. Other organizations established to carry out\ + \ activities across national borders and that accordingly enjoy immunity from legal process\ + \ are also IGOs for the sole and exclusive purposes of this License. IGOs may include as\ + \ members, in addition to states, other entities.\n \n b. \"Work\" means the literary\ + \ and/or artistic work eligible for copyright protection, whatever may be the mode or form\ + \ of its expression including digital form, and offered under the terms of this License.\ + \ It is understood that a database, which by reason of the selection and arrangement of\ + \ its contents constitutes an intellectual creation, is considered a Work.\n \n c.\ + \ \"Licensor\" means the individual, individuals, entity or entities that offer(s) the Work\ + \ under the terms of this License and may be, but is not necessarily, an IGO.\n \n \ + \ d. \"You\" means an individual or entity exercising rights under this License.\n \n\ + \ e. \"License Elements\" means the following high-level license attributes as selected\ + \ by the Licensor and indicated in the title of this License: Attribution, Noncommercial,\ + \ ShareAlike.\n \n f. \"Reproduce\" means to make a copy of the Work in any manner\ + \ or form, and by any means.\n \n g. \"Distribute\" means the activity of making publicly\ + \ available the Work or Adaptation (or copies of the Work or Adaptation), as applicable,\ + \ by sale, rental, public lending or any other known form of transfer of ownership or possession\ + \ of the Work or copy of the Work.\n \n h. \"Publicly Perform\" means to perform public\ + \ recitations of the Work and to communicate to the public those public recitations, by\ + \ any means or process, including by wire or wireless means or public digital performances;\ + \ to make available to the public Works in such a way that members of the public may access\ + \ these Works from a place and at a place individually chosen by them; to perform the Work\ + \ to the public by any means or process and the communication to the public of the performances\ + \ of the Work, including by public digital performance; to broadcast and rebroadcast the\ + \ Work by any means including signs, sounds or images.\n \n i. \"Adaptation\" means\ + \ a work derived from or based upon the Work, or upon the Work and other pre-existing works.\ + \ Adaptations may include works such as translations, derivative works, or any alterations\ + \ and arrangements of any kind involving the Work. For purposes of this License, where the\ + \ Work is a musical work, performance, or phonogram, the synchronization of the Work in\ + \ timed-relation with a moving image is an Adaptation. For the avoidance of doubt, including\ + \ the Work in a Collection is not an Adaptation.\n \n j. \"Collection\" means a collection\ + \ of literary or artistic works or other works or subject matter other than works listed\ + \ in Section 1(b) which by reason of the selection and arrangement of their contents, constitute\ + \ intellectual creations, in which the Work is included in its entirety in unmodified form\ + \ along with one or more other contributions, each constituting separate and independent\ + \ works in themselves, which together are assembled into a collective whole. For the avoidance\ + \ of doubt, a Collection will not be considered as an Adaptation.\n\n2. Scope of this License.\ + \ Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright\ + \ protection.\n\n3. License Grant. Subject to the terms and conditions of this License,\ + \ the Licensor hereby grants You a worldwide, royalty-free, non-exclusive license to exercise\ + \ the rights in the Work as follows:\n\n a. to Reproduce, Distribute and Publicly Perform\ + \ the Work, to incorporate the Work into one or more Collections, and to Reproduce, Distribute\ + \ and Publicly Perform the Work as incorporated in the Collections; and,\n \n b. to\ + \ create, Reproduce, Distribute and Publicly Perform Adaptations, provided that You clearly\ + \ label, demarcate or otherwise identify that changes were made to the original Work.\n\n\ + This License lasts for the duration of the term of the copyright in the Work licensed by\ + \ the Licensor. The above rights may be exercised in all media and formats whether now known\ + \ or hereafter devised. The above rights include the right to make such modifications as\ + \ are technically necessary to exercise the rights in other media and formats. All rights\ + \ not expressly granted by the Licensor are hereby reserved, including but not limited to\ + \ the rights set forth in Section 4(e).\n\n4. Restrictions. The license granted in Section\ + \ 3 above is expressly made subject to and limited by the following restrictions:\n\n \ + \ a. You may Distribute or Publicly Perform the Work only under the terms of this License.\ + \ You must include a copy of, or the Uniform Resource Identifier (URI) for, this License\ + \ with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose\ + \ any terms on the Work that restrict the terms of this License or the ability of the recipient\ + \ of the Work to exercise the rights granted to that recipient under the terms of the License.\ + \ You may not sublicense the Work (see section 8(a)). You must keep intact all notices that\ + \ refer to this License and to the disclaimer of warranties with every copy of the Work\ + \ You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work,\ + \ You may not impose any effective technological measures on the Work that restrict the\ + \ ability of a recipient of the Work from You to exercise the rights granted to that recipient\ + \ under the terms of the License. This Section 4(a) applies to the Work as incorporated\ + \ in a Collection, but this does not require the Collection apart from the Work itself to\ + \ be made subject to the terms of this License. If You create a Collection, upon notice\ + \ from a Licensor You must, to the extent practicable, remove from the Collection any credit\ + \ (inclusive of any logo, trademark, official mark or official emblem) as required by Section\ + \ 4(d), as requested. If You create an Adaptation, upon notice from a Licensor You must,\ + \ to the extent practicable, remove from the Adaptation any credit (inclusive of any logo,\ + \ trademark, official mark or official emblem) as required by Section 4(d), as requested.\n\ + \ \n b. You may Distribute or Publicly Perform an Adaptation only under the terms\ + \ of: (i) this License; (ii) a later version of this License with the same License Elements\ + \ as this License; or (iii) either the unported Creative Commons license or a ported Creative\ + \ Commons license (either this or a later license version) containing the same License Elements\ + \ (the “Applicable License”). (I) You must include a copy of, or the URI for, the Applicable\ + \ License with every copy of each Adaptation You Distribute or Publicly Perform. (II) You\ + \ may not offer or impose any terms on the Adaptation that restrict the terms of the Applicable\ + \ License or the ability of the recipient of the Adaptation to exercise the rights granted\ + \ to that recipient under the terms of the Applicable License. (III) You must keep intact\ + \ all notices that refer to this License and to the disclaimer of warranties with every\ + \ copy of the Work as included in the Adaptation You Distribute or Publicly Perform. (IV)\ + \ When You Distribute or Publicly Perform the Adaptation, You may not impose any effective\ + \ technological measures on the Adaptation that restrict the ability of a recipient of the\ + \ Adaptation from You to exercise the rights granted to that recipient under the terms of\ + \ the Applicable License. This Section 4(b) applies to the Adaptation as incorporated in\ + \ a Collection, but this does not require the Collection apart from the Adaptation itself\ + \ to be made subject to the terms of the Applicable License.\n \n c. You may not exercise\ + \ any of the rights granted to You in Section 3 above in any manner that is primarily intended\ + \ for or directed toward commercial advantage or private monetary compensation. The exchange\ + \ of the Work for other copyrighted works by means of digital file-sharing or otherwise\ + \ shall not be considered to be primarily intended for or directed toward commercial advantage\ + \ or private monetary compensation, provided there is no payment of any monetary compensation\ + \ in connection with the exchange of copyrighted works.\n \n d. If You Distribute,\ + \ or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request\ + \ has been made pursuant to Section 4(a), keep intact all copyright notices for the Work\ + \ and provide, reasonable to the medium or means You are utilizing: (i) any attributions\ + \ that the Licensor indicates be associated with the Work as indicated in a copyright notice,\ + \ (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the\ + \ URI, if any, that the Licensor specifies to be associated with the Work, unless such URI\ + \ does not refer to the copyright notice or licensing information for the Work; and, (iv)\ + \ consistent with Section 3(b), in the case of an Adaptation, a credit identifying the use\ + \ of the Work in the Adaptation. The credit required by this Section 4(d) may be implemented\ + \ in any reasonable manner; provided, however, that in the case of an Adaptation or Collection,\ + \ at a minimum such credit will appear, if a credit for all contributors to the Adaptation\ + \ or Collection appears, then as part of these credits and in a manner at least as prominent\ + \ as the credits for the other contributors. For the avoidance of doubt, You may only use\ + \ the credit required by this Section for the purpose of attribution in the manner set out\ + \ above and, by exercising Your rights under this License, You may not implicitly or explicitly\ + \ assert or imply any connection with, sponsorship or endorsement by the Licensor or others\ + \ designated for attribution, of You or Your use of the Work, without the separate, express\ + \ prior written permission of the Licensor or such others.\n \n e. For the avoidance\ + \ of doubt:\n \n i. Non-waivable Compulsory License Schemes. In those jurisdictions\ + \ in which the right to collect royalties through any statutory or compulsory licensing\ + \ scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties\ + \ for any exercise by You of the rights granted under this License;\n \n ii.\ + \ Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect\ + \ royalties through any statutory or compulsory licensing scheme can be waived, the Licensor\ + \ reserves the exclusive right to collect such royalties for any exercise by You of the\ + \ rights granted under this License if Your exercise of such rights is for a purpose or\ + \ use which is otherwise than noncommercial as permitted under Section 4(c) and otherwise\ + \ waives the right to collect royalties through any statutory or compulsory licensing scheme;\ + \ and,\n \n iii. Voluntary License Schemes. To the extent possible, the Licensor\ + \ waives the right to collect royalties from You for the exercise of the Licensed Rights,\ + \ whether directly or through a collecting society under any voluntary licensing scheme.\ + \ In all other cases the Licensor expressly reserves the right to collect such royalties.\n\ + \ \n f. Except as otherwise agreed in writing by the Licensor, if You Reproduce, Distribute\ + \ or Publicly Perform the Work either by itself or as part of any Adaptations or Collections,\ + \ You must not distort, mutilate, modify or take other derogatory action in relation to\ + \ the Work which would be prejudicial to the honor or reputation of the Licensor where moral\ + \ rights apply.\n\n5. Representations, Warranties and Disclaimer\n\nTHE LICENSOR OFFERS\ + \ THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK,\ + \ EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF\ + \ TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE\ + \ OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE.\n\ + \n6. Limitation on Liability\n\nIN NO EVENT WILL THE LICENSOR BE LIABLE TO YOU ON ANY LEGAL\ + \ THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING\ + \ OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF THE LICENSOR HAS BEEN ADVISED OF THE\ + \ POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\n a. Subject to the terms and conditions\ + \ set forth in this License, the license granted here lasts for the duration of the term\ + \ of the copyright in the Work licensed by the Licensor as stated in Section 3. Notwithstanding\ + \ the above, the Licensor reserves the right to release the Work under different license\ + \ terms or to stop distributing the Work at any time; provided, however that any such election\ + \ will not serve to withdraw this License (or any other license that has been, or is required\ + \ to be, granted under the terms of this License), and this License will continue in full\ + \ force and effect unless terminated as stated below.\n \n b. If You fail to comply\ + \ with this License, then this License and the rights granted hereunder will terminate automatically\ + \ upon any breach by You of the terms of this License. Individuals or entities who have\ + \ received Adaptations or Collections from You under this License, however, will not have\ + \ their licenses terminated provided such individuals or entities remain in full compliance\ + \ with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this\ + \ License. Notwithstanding the foregoing, this License reinstates automatically as of the\ + \ date the violation is cured, provided it is cured within 30 days of You discovering the\ + \ violation, or upon express reinstatement by the Licensor. For the avoidance of doubt,\ + \ this Section 7(b) does not affect any rights the Licensor may have to seek remedies for\ + \ violations of this License by You.\n\n8. Miscellaneous\n\n a. Each time You Distribute\ + \ or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license\ + \ to the Work on the same terms and conditions as the license granted to You under this\ + \ License.\n \n b Each time You Distribute or Publicly Perform an Adaptation, the\ + \ Licensor offers to the recipient a license to the original Work on the same terms and\ + \ conditions as the license granted to You under this License.\n \n c. If any provision\ + \ of this License is invalid or unenforceable, it shall not affect the validity or enforceability\ + \ of the remainder of the terms of this License, and without further action, such provision\ + \ shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\ + \ \n d. No term or provision of this License shall be deemed waived and no breach\ + \ consented to unless such waiver or consent shall be in writing and signed by the Licensor.\n\ + \ \n e. This License constitutes the entire agreement between You and the Licensor\ + \ with respect to the Work licensed here. There are no understandings, agreements or representations\ + \ with respect to the Work not specified here. The Licensor shall not be bound by any additional\ + \ provisions that may appear in any communication from You. This License may not be modified\ + \ without the mutual written agreement of the Licensor and You.\n \n f. The rights\ + \ granted under, and the subject matter referenced, in this License were drafted utilizing\ + \ the terminology of the Berne Convention for the Protection of Literary and Artistic Works\ + \ (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty\ + \ of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright\ + \ Convention (as revised on July 24, 1971). Interpretation of the scope of the rights granted\ + \ by the Licensor and the conditions imposed on You under this License, this License, and\ + \ the rights and conditions set forth herein shall be made with reference to copyright as\ + \ determined in accordance with general principles of international law, including the above\ + \ mentioned conventions.\n \n g. Nothing in this License constitutes or may be interpreted\ + \ as a limitation upon or waiver of any privileges and immunities that may apply to the\ + \ Licensor or You, including immunity from the legal processes of any jurisdiction, national\ + \ court or other authority.\n \n h. Where the Licensor is an IGO, any and all disputes\ + \ arising under this License that cannot be settled amicably shall be resolved in accordance\ + \ with the following procedure:\n \n i. Pursuant to a notice of mediation\ + \ communicated by reasonable means by either You or the Licensor to the other, the dispute\ + \ shall be submitted to non-binding mediation conducted in accordance with rules designated\ + \ by the Licensor in the copyright notice published with the Work, or if none then in accordance\ + \ with those communicated in the notice of mediation. The language used in the mediation\ + \ proceedings shall be English unless otherwise agreed.\n \n ii. If any such\ + \ dispute has not been settled within 45 days following the date on which the notice of\ + \ mediation is provided, either You or the Licensor may, pursuant to a notice of arbitration\ + \ communicated by reasonable means to the other, elect to have the dispute referred to and\ + \ finally determined by arbitration. The arbitration shall be conducted in accordance with\ + \ the rules designated by the Licensor in the copyright notice published with the Work,\ + \ or if none then in accordance with the UNCITRAL Arbitration Rules as then in force. The\ + \ arbitral tribunal shall consist of a sole arbitrator and the language of the proceedings\ + \ shall be English unless otherwise agreed. The place of arbitration shall be where the\ + \ Licensor has its headquarters. The arbitral proceedings shall be conducted remotely (e.g.,\ + \ via telephone conference or written submissions) whenever practicable.\n \n \ + \ iii. Interpretation of this License in any dispute submitted to mediation or arbitration\ + \ shall be as set forth in Section 8(f), above.\n \nCreative Commons Notice\n\nCreative\ + \ Commons is not a party to this License, and makes no warranty whatsoever in connection\ + \ with the Work. Creative Commons will not be liable to You or any party on any legal theory\ + \ for any damages whatsoever, including without limitation any general, special, incidental\ + \ or consequential damages arising in connection to this license. Notwithstanding the foregoing\ + \ two (2) sentences, if Creative Commons has expressly identified itself as the Licensor\ + \ hereunder, it shall have all rights and obligations of the Licensor.\n\nExcept for the\ + \ limited purpose of indicating to the public that the Work is licensed under the CCPL,\ + \ Creative Commons does not authorize the use by either party of the trademark \"Creative\ + \ Commons\" or any related trademark or logo of Creative Commons without the prior written\ + \ consent of Creative Commons. Any permitted use will be in compliance with Creative Commons'\ + \ then-current trademark usage guidelines, as may be published on its website or otherwise\ + \ made available upon request from time to time. For the avoidance of doubt, this trademark\ + \ restriction does not form part of this License.\n\nCreative Commons may be contacted at\ + \ https://creativecommons.org/." json: cc-by-nc-sa-3.0-igo.json - yml: cc-by-nc-sa-3.0-igo.yml + yaml: cc-by-nc-sa-3.0-igo.yml html: cc-by-nc-sa-3.0-igo.html - text: cc-by-nc-sa-3.0-igo.LICENSE + license: cc-by-nc-sa-3.0-igo.LICENSE - license_key: cc-by-nc-sa-3.0-us + category: Source-available spdx_license_key: LicenseRef-scancode-cc-by-nc-sa-3.0-us other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with one or more other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. + "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License. + "Original Author" means the individual, individuals, entity or entities who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, Noncommercial, ShareAlike. + + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to create and reproduce Derivative Works provided that any such Derivative Work, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified."; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works; + + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved, including but not limited to the rights set forth in Sections 4(e) and 4(f). + + 4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of a recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. When You distribute, publicly display, publicly perform, or publicly digitally perform the Work, You may not impose any technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by Section 4(d), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by Section 4(d), as requested. + You may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under: (i) the terms of this License; (ii) a later version of this License with the same License Elements as this License; or, (iii) either the unported Creative Commons license or a Creative Commons license for another jurisdiction (either this or a later license version) that contains the same License Elements as this License (e.g. Attribution-NonCommercial-ShareAlike 3.0 (Unported)) ("the Applicable License"). You must include a copy of, or the Uniform Resource Identifier for, the Applicable License with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that restrict the terms of the Applicable License or the ability of a recipient of the Work to exercise the rights granted to that recipient under the terms of the Applicable License. You must keep intact all notices that refer to the Applicable License and to the disclaimer of warranties. When You distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work, You may not impose any technological measures on the Derivative Work that restrict the ability of a recipient of the Derivative Work from You to exercise the rights granted to that recipient under the terms of the Applicable License. This Section 4(b) applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of the Applicable License. + You may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in connection with the exchange of copyrighted works. + If You distribute, publicly display, publicly perform, or publicly digitally perform the Work (as defined in Section 1 above) or any Derivative Works (as defined in Section 1 above) or Collective Works (as defined in Section 1 above), You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and, consistent with Section 3(b) in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4(d) may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear, if a credit for all contributing authors of the Derivative Work or Collective Work appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties. + + For the avoidance of doubt, where the Work is a musical composition: + Performance Royalties Under Blanket Licenses. Licensor reserves the exclusive right to collect whether individually or, in the event that Licensor is a member of a performance rights society (e.g. ASCAP, BMI, SESAC), via that society, royalties for the public performance or public digital performance (e.g. webcast) of the Work if that performance is primarily intended for or directed toward commercial advantage or private monetary compensation. + Mechanical Rights and Statutory Royalties. Licensor reserves the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions), if Your distribution of such cover version is primarily intended for or directed toward commercial advantage or private monetary compensation. + Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor reserves the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions), if Your public digital performance is primarily intended for or directed toward commercial advantage or private monetary compensation. + + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND ONLY TO THE EXTENT OF ANY RIGHTS HELD IN THE LICENSED WORK BY THE LICENSOR. THE LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MARKETABILITY, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works (as defined in Section 1 above) or Collective Works (as defined in Section 1 above) from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + + 8. Miscellaneous + + Each time You distribute or publicly digitally perform the Work (as defined in Section 1 above) or a Collective Work (as defined in Section 1 above), the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + + Creative Commons Notice + + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. + + Creative Commons may be contacted at https://creativecommons.org/. json: cc-by-nc-sa-3.0-us.json - yml: cc-by-nc-sa-3.0-us.yml + yaml: cc-by-nc-sa-3.0-us.yml html: cc-by-nc-sa-3.0-us.html - text: cc-by-nc-sa-3.0-us.LICENSE + license: cc-by-nc-sa-3.0-us.LICENSE - license_key: cc-by-nc-sa-4.0 + category: Source-available spdx_license_key: CC-BY-NC-SA-4.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: "Attribution-NonCommercial-ShareAlike 4.0 International\n\n=======================================================================\n\ + \nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide\ + \ legal services or legal advice. Distribution of\nCreative Commons public licenses does\ + \ not create a lawyer-client or\nother relationship. Creative Commons makes its licenses\ + \ and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\n\ + warranties regarding its licenses, any material licensed under their\nterms and conditions,\ + \ or any related information. Creative Commons\ndisclaims all liability for damages resulting\ + \ from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\ + \nCreative Commons public licenses provide a standard set of terms and\nconditions that\ + \ creators and other rights holders may use to share\noriginal works of authorship and other\ + \ material subject to copyright\nand certain other rights specified in the public license\ + \ below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive,\ + \ and do not form part of our licenses.\n\n Considerations for licensors: Our public\ + \ licenses are\n intended for use by those authorized to give the public\n permission\ + \ to use material in ways otherwise restricted by\n copyright and certain other rights.\ + \ Our licenses are\n irrevocable. Licensors should read and understand the terms\n \ + \ and conditions of the license they choose before applying it.\n Licensors should\ + \ also secure all rights necessary before\n applying our licenses so that the public\ + \ can reuse the\n material as expected. Licensors should clearly mark any\n material\ + \ not subject to the license. This includes other CC-\n licensed material, or material\ + \ used under an exception or\n limitation to copyright. More considerations for licensors:\n\ + \twiki.creativecommons.org/Considerations_for_licensors\n\n Considerations for the public:\ + \ By using one of our public\n licenses, a licensor grants the public permission to\ + \ use the\n licensed material under specified terms and conditions. If\n the licensor's\ + \ permission is not necessary for any reason--for\n example, because of any applicable\ + \ exception or limitation to\n copyright--then that use is not regulated by the license.\ + \ Our\n licenses grant only permissions under copyright and certain\n other rights\ + \ that a licensor has authority to grant. Use of\n the licensed material may still be\ + \ restricted for other\n reasons, including because others have copyright or other\n\ + \ rights in the material. A licensor may make special requests,\n such as asking\ + \ that all changes be marked or described.\n Although not required by our licenses,\ + \ you are encouraged to\n respect those requests where reasonable. More considerations\n\ + \ for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\ + \nCreative Commons Attribution-NonCommercial-ShareAlike 4.0 International\nPublic License\n\ + \nBy exercising the Licensed Rights (defined below), You accept and agree\nto be bound by\ + \ the terms and conditions of this Creative Commons\nAttribution-NonCommercial-ShareAlike\ + \ 4.0 International Public License\n(\"Public License\"). To the extent this Public License\ + \ may be\ninterpreted as a contract, You are granted the Licensed Rights in\nconsideration\ + \ of Your acceptance of these terms and conditions, and the\nLicensor grants You such rights\ + \ in consideration of benefits the\nLicensor receives from making the Licensed Material\ + \ available under\nthese terms and conditions.\n\n\nSection 1 -- Definitions.\n\n a. Adapted\ + \ Material means material subject to Copyright and Similar\n Rights that is derived\ + \ from or based upon the Licensed Material\n and in which the Licensed Material is translated,\ + \ altered,\n arranged, transformed, or otherwise modified in a manner requiring\n \ + \ permission under the Copyright and Similar Rights held by the\n Licensor. For purposes\ + \ of this Public License, where the Licensed\n Material is a musical work, performance,\ + \ or sound recording,\n Adapted Material is always produced where the Licensed Material\ + \ is\n synched in timed relation with a moving image.\n\n b. Adapter's License means\ + \ the license You apply to Your Copyright\n and Similar Rights in Your contributions\ + \ to Adapted Material in\n accordance with the terms and conditions of this Public License.\n\ + \n c. BY-NC-SA Compatible License means a license listed at\n creativecommons.org/compatiblelicenses,\ + \ approved by Creative\n Commons as essentially the equivalent of this Public License.\n\ + \n d. Copyright and Similar Rights means copyright and/or similar rights\n closely\ + \ related to copyright including, without limitation,\n performance, broadcast, sound\ + \ recording, and Sui Generis Database\n Rights, without regard to how the rights are\ + \ labeled or\n categorized. For purposes of this Public License, the rights\n specified\ + \ in Section 2(b)(1)-(2) are not Copyright and Similar\n Rights.\n\n e. Effective Technological\ + \ Measures means those measures that, in the\n absence of proper authority, may not\ + \ be circumvented under laws\n fulfilling obligations under Article 11 of the WIPO Copyright\n\ + \ Treaty adopted on December 20, 1996, and/or similar international\n agreements.\n\ + \n f. Exceptions and Limitations means fair use, fair dealing, and/or\n any other exception\ + \ or limitation to Copyright and Similar Rights\n that applies to Your use of the Licensed\ + \ Material.\n\n g. License Elements means the license attributes listed in the name\n \ + \ of a Creative Commons Public License. The License Elements of this\n Public License\ + \ are Attribution, NonCommercial, and ShareAlike.\n\n h. Licensed Material means the artistic\ + \ or literary work, database,\n or other material to which the Licensor applied this\ + \ Public\n License.\n\n i. Licensed Rights means the rights granted to You subject\ + \ to the\n terms and conditions of this Public License, which are limited to\n all\ + \ Copyright and Similar Rights that apply to Your use of the\n Licensed Material and\ + \ that the Licensor has authority to license.\n\n j. Licensor means the individual(s) or\ + \ entity(ies) granting rights\n under this Public License.\n\n k. NonCommercial means\ + \ not primarily intended for or directed towards\n commercial advantage or monetary\ + \ compensation. For purposes of\n this Public License, the exchange of the Licensed\ + \ Material for\n other material subject to Copyright and Similar Rights by digital\n\ + \ file-sharing or similar means is NonCommercial provided there is\n no payment\ + \ of monetary compensation in connection with the\n exchange.\n\n l. Share means to\ + \ provide material to the public by any means or\n process that requires permission\ + \ under the Licensed Rights, such\n as reproduction, public display, public performance,\ + \ distribution,\n dissemination, communication, or importation, and to make material\n\ + \ available to the public including in ways that members of the\n public may access\ + \ the material from a place and at a time\n individually chosen by them.\n\n m. Sui\ + \ Generis Database Rights means rights other than copyright\n resulting from Directive\ + \ 96/9/EC of the European Parliament and of\n the Council of 11 March 1996 on the legal\ + \ protection of databases,\n as amended and/or succeeded, as well as other essentially\n\ + \ equivalent rights anywhere in the world.\n\n n. You means the individual or entity\ + \ exercising the Licensed Rights\n under this Public License. Your has a corresponding\ + \ meaning.\n\n\nSection 2 -- Scope.\n\n a. License grant.\n\n 1. Subject to the terms\ + \ and conditions of this Public License,\n the Licensor hereby grants You a worldwide,\ + \ royalty-free,\n non-sublicensable, non-exclusive, irrevocable license to\n \ + \ exercise the Licensed Rights in the Licensed Material to:\n\n a. reproduce\ + \ and Share the Licensed Material, in whole or\n in part, for NonCommercial\ + \ purposes only; and\n\n b. produce, reproduce, and Share Adapted Material for\n\ + \ NonCommercial purposes only.\n\n 2. Exceptions and Limitations. For\ + \ the avoidance of doubt, where\n Exceptions and Limitations apply to Your use,\ + \ this Public\n License does not apply, and You do not need to comply with\n \ + \ its terms and conditions.\n\n 3. Term. The term of this Public License is\ + \ specified in Section\n 6(a).\n\n 4. Media and formats; technical modifications\ + \ allowed. The\n Licensor authorizes You to exercise the Licensed Rights in\n \ + \ all media and formats whether now known or hereafter created,\n and to\ + \ make technical modifications necessary to do so. The\n Licensor waives and/or\ + \ agrees not to assert any right or\n authority to forbid You from making technical\ + \ modifications\n necessary to exercise the Licensed Rights, including\n \ + \ technical modifications necessary to circumvent Effective\n Technological\ + \ Measures. For purposes of this Public License,\n simply making modifications\ + \ authorized by this Section 2(a)\n (4) never produces Adapted Material.\n\n \ + \ 5. Downstream recipients.\n\n a. Offer from the Licensor -- Licensed Material.\ + \ Every\n recipient of the Licensed Material automatically\n \ + \ receives an offer from the Licensor to exercise the\n Licensed Rights under\ + \ the terms and conditions of this\n Public License.\n\n b. Additional\ + \ offer from the Licensor -- Adapted Material.\n Every recipient of Adapted\ + \ Material from You\n automatically receives an offer from the Licensor to\n\ + \ exercise the Licensed Rights in the Adapted Material\n under\ + \ the conditions of the Adapter's License You apply.\n\n c. No downstream restrictions.\ + \ You may not offer or impose\n any additional or different terms or conditions\ + \ on, or\n apply any Effective Technological Measures to, the\n \ + \ Licensed Material if doing so restricts exercise of the\n Licensed Rights\ + \ by any recipient of the Licensed\n Material.\n\n 6. No endorsement.\ + \ Nothing in this Public License constitutes or\n may be construed as permission\ + \ to assert or imply that You\n are, or that Your use of the Licensed Material\ + \ is, connected\n with, or sponsored, endorsed, or granted official status by,\n\ + \ the Licensor or others designated to receive attribution as\n provided\ + \ in Section 3(a)(1)(A)(i).\n\n b. Other rights.\n\n 1. Moral rights, such as the\ + \ right of integrity, are not\n licensed under this Public License, nor are publicity,\n\ + \ privacy, and/or other similar personality rights; however, to\n the\ + \ extent possible, the Licensor waives and/or agrees not to\n assert any such rights\ + \ held by the Licensor to the limited\n extent necessary to allow You to exercise\ + \ the Licensed\n Rights, but not otherwise.\n\n 2. Patent and trademark rights\ + \ are not licensed under this\n Public License.\n\n 3. To the extent possible,\ + \ the Licensor waives any right to\n collect royalties from You for the exercise\ + \ of the Licensed\n Rights, whether directly or through a collecting society\n\ + \ under any voluntary or waivable statutory or compulsory\n licensing\ + \ scheme. In all other cases the Licensor expressly\n reserves any right to collect\ + \ such royalties, including when\n the Licensed Material is used other than for\ + \ NonCommercial\n purposes.\n\n\nSection 3 -- License Conditions.\n\nYour exercise\ + \ of the Licensed Rights is expressly made subject to the\nfollowing conditions.\n\n a.\ + \ Attribution.\n\n 1. If You Share the Licensed Material (including in modified\n\ + \ form), You must:\n\n a. retain the following if it is supplied by\ + \ the Licensor\n with the Licensed Material:\n\n i. identification\ + \ of the creator(s) of the Licensed\n Material and any others designated\ + \ to receive\n attribution, in any reasonable manner requested by\n \ + \ the Licensor (including by pseudonym if\n designated);\n\ + \n ii. a copyright notice;\n\n iii. a notice that refers to\ + \ this Public License;\n\n iv. a notice that refers to the disclaimer of\n\ + \ warranties;\n\n v. a URI or hyperlink to the Licensed\ + \ Material to the\n extent reasonably practicable;\n\n b.\ + \ indicate if You modified the Licensed Material and\n retain an indication\ + \ of any previous modifications; and\n\n c. indicate the Licensed Material is\ + \ licensed under this\n Public License, and include the text of, or the URI\ + \ or\n hyperlink to, this Public License.\n\n 2. You may satisfy the\ + \ conditions in Section 3(a)(1) in any\n reasonable manner based on the medium,\ + \ means, and context in\n which You Share the Licensed Material. For example, it\ + \ may be\n reasonable to satisfy the conditions by providing a URI or\n \ + \ hyperlink to a resource that includes the required\n information.\n 3.\ + \ If requested by the Licensor, You must remove any of the\n information required\ + \ by Section 3(a)(1)(A) to the extent\n reasonably practicable.\n\n b. ShareAlike.\n\ + \n In addition to the conditions in Section 3(a), if You Share\n Adapted Material\ + \ You produce, the following conditions also apply.\n\n 1. The Adapter's License You\ + \ apply must be a Creative Commons\n license with the same License Elements, this\ + \ version or\n later, or a BY-NC-SA Compatible License.\n\n 2. You must include\ + \ the text of, or the URI or hyperlink to, the\n Adapter's License You apply. You\ + \ may satisfy this condition\n in any reasonable manner based on the medium, means,\ + \ and\n context in which You Share Adapted Material.\n\n 3. You may not offer\ + \ or impose any additional or different terms\n or conditions on, or apply any\ + \ Effective Technological\n Measures to, Adapted Material that restrict exercise\ + \ of the\n rights granted under the Adapter's License You apply.\n\n\nSection 4\ + \ -- Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database\ + \ Rights that\napply to Your use of the Licensed Material:\n\n a. for the avoidance of\ + \ doubt, Section 2(a)(1) grants You the right\n to extract, reuse, reproduce, and Share\ + \ all or a substantial\n portion of the contents of the database for NonCommercial purposes\n\ + \ only;\n\n b. if You include all or a substantial portion of the database\n contents\ + \ in a database in which You have Sui Generis Database\n Rights, then the database in\ + \ which You have Sui Generis Database\n Rights (but not its individual contents) is\ + \ Adapted Material,\n including for purposes of Section 3(b); and\n\n c. You must comply\ + \ with the conditions in Section 3(a) if You Share\n all or a substantial portion of\ + \ the contents of the database.\n\nFor the avoidance of doubt, this Section 4 supplements\ + \ and does not\nreplace Your obligations under this Public License where the Licensed\n\ + Rights include other Copyright and Similar Rights.\n\n\nSection 5 -- Disclaimer of Warranties\ + \ and Limitation of Liability.\n\n a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR,\ + \ TO THE\n EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n AND\ + \ AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n ANY KIND CONCERNING\ + \ THE LICENSED MATERIAL, WHETHER EXPRESS,\n IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES,\ + \ WITHOUT LIMITATION,\n WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\n\ + \ PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n ACCURACY, OR\ + \ THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS\ + \ OF WARRANTIES ARE NOT\n ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY\ + \ TO YOU.\n\n b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE\n \ + \ TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n NEGLIGENCE) OR OTHERWISE\ + \ FOR ANY DIRECT, SPECIAL, INDIRECT,\n INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY,\ + \ OR OTHER LOSSES,\n COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE\ + \ OR\n USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n ADVISED OF\ + \ THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n DAMAGES. WHERE A LIMITATION\ + \ OF LIABILITY IS NOT ALLOWED IN FULL OR\n IN PART, THIS LIMITATION MAY NOT APPLY TO\ + \ YOU.\n\n c. The disclaimer of warranties and limitation of liability provided\n above\ + \ shall be interpreted in a manner that, to the extent\n possible, most closely approximates\ + \ an absolute disclaimer and\n waiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\ + \n a. This Public License applies for the term of the Copyright and\n Similar Rights\ + \ licensed here. However, if You fail to comply with\n this Public License, then Your\ + \ rights under this Public License\n terminate automatically.\n\n b. Where Your right\ + \ to use the Licensed Material has terminated under\n Section 6(a), it reinstates:\n\ + \n 1. automatically as of the date the violation is cured, provided\n it\ + \ is cured within 30 days of Your discovery of the\n violation; or\n\n 2.\ + \ upon express reinstatement by the Licensor.\n\n For the avoidance of doubt, this Section\ + \ 6(b) does not affect any\n right the Licensor may have to seek remedies for Your violations\n\ + \ of this Public License.\n\n c. For the avoidance of doubt, the Licensor may also\ + \ offer the\n Licensed Material under separate terms or conditions or stop\n distributing\ + \ the Licensed Material at any time; however, doing so\n will not terminate this Public\ + \ License.\n\n d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n License.\n\ + \n\nSection 7 -- Other Terms and Conditions.\n\n a. The Licensor shall not be bound by\ + \ any additional or different\n terms or conditions communicated by You unless expressly\ + \ agreed.\n\n b. Any arrangements, understandings, or agreements regarding the\n Licensed\ + \ Material not stated herein are separate from and\n independent of the terms and conditions\ + \ of this Public License.\n\n\nSection 8 -- Interpretation.\n\n a. For the avoidance of\ + \ doubt, this Public License does not, and\n shall not be interpreted to, reduce, limit,\ + \ restrict, or impose\n conditions on any use of the Licensed Material that could lawfully\n\ + \ be made without permission under this Public License.\n\n b. To the extent possible,\ + \ if any provision of this Public License is\n deemed unenforceable, it shall be automatically\ + \ reformed to the\n minimum extent necessary to make it enforceable. If the provision\n\ + \ cannot be reformed, it shall be severed from this Public License\n without affecting\ + \ the enforceability of the remaining terms and\n conditions.\n\n c. No term or condition\ + \ of this Public License will be waived and no\n failure to comply consented to unless\ + \ expressly agreed to by the\n Licensor.\n\n d. Nothing in this Public License constitutes\ + \ or may be interpreted\n as a limitation upon, or waiver of, any privileges and immunities\n\ + \ that apply to the Licensor or You, including from the legal\n processes of any\ + \ jurisdiction or authority.\n\n=======================================================================\n\ + \nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons\ + \ may elect to apply one of\nits public licenses to material it publishes and in those instances\n\ + will be considered the “Licensor.” The text of the Creative Commons\npublic licenses is\ + \ dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the\ + \ limited purpose of indicating that\nmaterial is shared under a Creative Commons public\ + \ license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies,\ + \ Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or\ + \ any other trademark or logo\nof Creative Commons without its prior written consent including,\n\ + without limitation, in connection with any unauthorized modifications\nto any of its public\ + \ licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed\ + \ material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic\ + \ licenses.\n\nCreative Commons may be contacted at creativecommons.org." json: cc-by-nc-sa-4.0.json - yml: cc-by-nc-sa-4.0.yml + yaml: cc-by-nc-sa-4.0.yml html: cc-by-nc-sa-4.0.html - text: cc-by-nc-sa-4.0.LICENSE + license: cc-by-nc-sa-4.0.LICENSE - license_key: cc-by-nd-1.0 + category: Source-available spdx_license_key: CC-BY-ND-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Attribution-NoDerivs 1.0 + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. + "Licensor" means the individual or entity that offers the Work under the terms of this License. + "Original Author" means the individual or entity who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. + + 4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. + If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied. Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + + 5. Representations, Warranties and Disclaimer + By offering the Work for public release under this License, Licensor represents and warrants that, to the best of Licensor's knowledge after reasonable inquiry: + Licensor has secured all rights in the Work necessary to grant the license rights hereunder and to permit the lawful exercise of the rights granted hereunder without You having any obligation to pay any royalties, compulsory license fees, residuals or any other payments; + The Work does not infringe the copyright, trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party. + EXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF THE WORK. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + + 8. Miscellaneous + Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at http://creativecommons.org/. json: cc-by-nd-1.0.json - yml: cc-by-nd-1.0.yml + yaml: cc-by-nd-1.0.yml html: cc-by-nd-1.0.html - text: cc-by-nd-1.0.LICENSE + license: cc-by-nd-1.0.LICENSE - license_key: cc-by-nd-2.0 + category: Source-available spdx_license_key: CC-BY-ND-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Attribution-NoDerivs 2.0 + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. + "Licensor" means the individual or entity that offers the Work under the terms of this License. + "Original Author" means the individual or entity who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works. + For the avoidance of doubt, where the work is a musical composition: + + Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work. + Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights society or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions). + Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions). + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats, but otherwise you have no rights to make Derivative Works. All rights not expressly granted by Licensor are hereby reserved. + + 4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. + If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; and to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work. Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE MATERIALS, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 8. Miscellaneous + + Each time You distribute or publicly digitally perform the Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at http://creativecommons.org/. json: cc-by-nd-2.0.json - yml: cc-by-nd-2.0.yml + yaml: cc-by-nd-2.0.yml html: cc-by-nd-2.0.html - text: cc-by-nd-2.0.LICENSE + license: cc-by-nd-2.0.LICENSE - license_key: cc-by-nd-2.5 + category: Source-available spdx_license_key: CC-BY-ND-2.5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Attribution-NoDerivs 2.5 + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. + "Licensor" means the individual or entity that offers the Work under the terms of this License. + "Original Author" means the individual or entity who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works. + For the avoidance of doubt, where the work is a musical composition: + + Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work. + Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights society or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions). + Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions). + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats, but otherwise you have no rights to make Derivative Works. All rights not expressly granted by Licensor are hereby reserved. + + 4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(b), as requested. + If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; and to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work. Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE MATERIALS, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 8. Miscellaneous + + Each time You distribute or publicly digitally perform the Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at http://creativecommons.org/. json: cc-by-nd-2.5.json - yml: cc-by-nd-2.5.yml + yaml: cc-by-nd-2.5.yml html: cc-by-nd-2.5.html - text: cc-by-nd-2.5.LICENSE + license: cc-by-nd-2.5.LICENSE - license_key: cc-by-nd-3.0 + category: Source-available spdx_license_key: CC-BY-ND-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Creative Commons Legal Code + + Attribution-NoDerivs 3.0 Unported + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR + DAMAGES RESULTING FROM ITS USE. + + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE + COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY + COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS + AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE + TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY + BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS + CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND + CONDITIONS. + + 1. Definitions + + a. "Adaptation" means a work based upon the Work, or upon the Work and + other pre-existing works, such as a translation, adaptation, + derivative work, arrangement of music or other alterations of a + literary or artistic work, or phonogram or performance and includes + cinematographic adaptations or any other form in which the Work may be + recast, transformed, or adapted including in any form recognizably + derived from the original, except that a work that constitutes a + Collection will not be considered an Adaptation for the purpose of + this License. For the avoidance of doubt, where the Work is a musical + work, performance or phonogram, the synchronization of the Work in + timed-relation with a moving image ("synching") will be considered an + Adaptation for the purpose of this License. + b. "Collection" means a collection of literary or artistic works, such as + encyclopedias and anthologies, or performances, phonograms or + broadcasts, or other works or subject matter other than works listed + in Section 1(f) below, which, by reason of the selection and + arrangement of their contents, constitute intellectual creations, in + which the Work is included in its entirety in unmodified form along + with one or more other contributions, each constituting separate and + independent works in themselves, which together are assembled into a + collective whole. A work that constitutes a Collection will not be + considered an Adaptation (as defined above) for the purposes of this + License. + c. "Distribute" means to make available to the public the original and + copies of the Work through sale or other transfer of ownership. + d. "Licensor" means the individual, individuals, entity or entities that + offer(s) the Work under the terms of this License. + e. "Original Author" means, in the case of a literary or artistic work, + the individual, individuals, entity or entities who created the Work + or if no individual or entity can be identified, the publisher; and in + addition (i) in the case of a performance the actors, singers, + musicians, dancers, and other persons who act, sing, deliver, declaim, + play in, interpret or otherwise perform literary or artistic works or + expressions of folklore; (ii) in the case of a phonogram the producer + being the person or legal entity who first fixes the sounds of a + performance or other sounds; and, (iii) in the case of broadcasts, the + organization that transmits the broadcast. + f. "Work" means the literary and/or artistic work offered under the terms + of this License including without limitation any production in the + literary, scientific and artistic domain, whatever may be the mode or + form of its expression including digital form, such as a book, + pamphlet and other writing; a lecture, address, sermon or other work + of the same nature; a dramatic or dramatico-musical work; a + choreographic work or entertainment in dumb show; a musical + composition with or without words; a cinematographic work to which are + assimilated works expressed by a process analogous to cinematography; + a work of drawing, painting, architecture, sculpture, engraving or + lithography; a photographic work to which are assimilated works + expressed by a process analogous to photography; a work of applied + art; an illustration, map, plan, sketch or three-dimensional work + relative to geography, topography, architecture or science; a + performance; a broadcast; a phonogram; a compilation of data to the + extent it is protected as a copyrightable work; or a work performed by + a variety or circus performer to the extent it is not otherwise + considered a literary or artistic work. + g. "You" means an individual or entity exercising rights under this + License who has not previously violated the terms of this License with + respect to the Work, or who has received express permission from the + Licensor to exercise rights under this License despite a previous + violation. + h. "Publicly Perform" means to perform public recitations of the Work and + to communicate to the public those public recitations, by any means or + process, including by wire or wireless means or public digital + performances; to make available to the public Works in such a way that + members of the public may access these Works from a place and at a + place individually chosen by them; to perform the Work to the public + by any means or process and the communication to the public of the + performances of the Work, including by public digital performance; to + broadcast and rebroadcast the Work by any means including signs, + sounds or images. + i. "Reproduce" means to make copies of the Work by any means including + without limitation by sound or visual recordings and the right of + fixation and reproducing fixations of the Work, including storage of a + protected performance or phonogram in digital form or other electronic + medium. + + 2. Fair Dealing Rights. Nothing in this License is intended to reduce, + limit, or restrict any uses free from copyright or rights arising from + limitations or exceptions that are provided for in connection with the + copyright protection under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, + Licensor hereby grants You a worldwide, royalty-free, non-exclusive, + perpetual (for the duration of the applicable copyright) license to + exercise the rights in the Work as stated below: + + a. to Reproduce the Work, to incorporate the Work into one or more + Collections, and to Reproduce the Work as incorporated in the + Collections; and, + b. to Distribute and Publicly Perform the Work including as incorporated + in Collections. + c. For the avoidance of doubt: + + i. Non-waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme cannot be waived, the Licensor + reserves the exclusive right to collect such royalties for any + exercise by You of the rights granted under this License; + ii. Waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme can be waived, the Licensor waives the + exclusive right to collect such royalties for any exercise by You + of the rights granted under this License; and, + iii. Voluntary License Schemes. The Licensor waives the right to + collect royalties, whether individually or, in the event that the + Licensor is a member of a collecting society that administers + voluntary licensing schemes, via that society, from any exercise + by You of the rights granted under this License. + + The above rights may be exercised in all media and formats whether now + known or hereafter devised. The above rights include the right to make + such modifications as are technically necessary to exercise the rights in + other media and formats, but otherwise you have no rights to make + Adaptations. Subject to Section 8(f), all rights not expressly granted by + Licensor are hereby reserved. + + 4. Restrictions. The license granted in Section 3 above is expressly made + subject to and limited by the following restrictions: + + a. You may Distribute or Publicly Perform the Work only under the terms + of this License. You must include a copy of, or the Uniform Resource + Identifier (URI) for, this License with every copy of the Work You + Distribute or Publicly Perform. You may not offer or impose any terms + on the Work that restrict the terms of this License or the ability of + the recipient of the Work to exercise the rights granted to that + recipient under the terms of the License. You may not sublicense the + Work. You must keep intact all notices that refer to this License and + to the disclaimer of warranties with every copy of the Work You + Distribute or Publicly Perform. When You Distribute or Publicly + Perform the Work, You may not impose any effective technological + measures on the Work that restrict the ability of a recipient of the + Work from You to exercise the rights granted to that recipient under + the terms of the License. This Section 4(a) applies to the Work as + incorporated in a Collection, but this does not require the Collection + apart from the Work itself to be made subject to the terms of this + License. If You create a Collection, upon notice from any Licensor You + must, to the extent practicable, remove from the Collection any credit + as required by Section 4(b), as requested. + b. If You Distribute, or Publicly Perform the Work or Collections, You + must, unless a request has been made pursuant to Section 4(a), keep + intact all copyright notices for the Work and provide, reasonable to + the medium or means You are utilizing: (i) the name of the Original + Author (or pseudonym, if applicable) if supplied, and/or if the + Original Author and/or Licensor designate another party or parties + (e.g., a sponsor institute, publishing entity, journal) for + attribution ("Attribution Parties") in Licensor's copyright notice, + terms of service or by other reasonable means, the name of such party + or parties; (ii) the title of the Work if supplied; (iii) to the + extent reasonably practicable, the URI, if any, that Licensor + specifies to be associated with the Work, unless such URI does not + refer to the copyright notice or licensing information for the Work. + The credit required by this Section 4(b) may be implemented in any + reasonable manner; provided, however, that in the case of a + Collection, at a minimum such credit will appear, if a credit for all + contributing authors of the Collection appears, then as part of these + credits and in a manner at least as prominent as the credits for the + other contributing authors. For the avoidance of doubt, You may only + use the credit required by this Section for the purpose of attribution + in the manner set out above and, by exercising Your rights under this + License, You may not implicitly or explicitly assert or imply any + connection with, sponsorship or endorsement by the Original Author, + Licensor and/or Attribution Parties, as appropriate, of You or Your + use of the Work, without the separate, express prior written + permission of the Original Author, Licensor and/or Attribution + Parties. + c. Except as otherwise agreed in writing by the Licensor or as may be + otherwise permitted by applicable law, if You Reproduce, Distribute or + Publicly Perform the Work either by itself or as part of any + Collections, You must not distort, mutilate, modify or take other + derogatory action in relation to the Work which would be prejudicial + to the Original Author's honor or reputation. + + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR + OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY + KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, + INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, + FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF + LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, + WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION + OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE + LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR + ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES + ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS + BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + a. This License and the rights granted hereunder will terminate + automatically upon any breach by You of the terms of this License. + Individuals or entities who have received Collections from You under + this License, however, will not have their licenses terminated + provided such individuals or entities remain in full compliance with + those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any + termination of this License. + b. Subject to the above terms and conditions, the license granted here is + perpetual (for the duration of the applicable copyright in the Work). + Notwithstanding the above, Licensor reserves the right to release the + Work under different license terms or to stop distributing the Work at + any time; provided, however that any such election will not serve to + withdraw this License (or any other license that has been, or is + required to be, granted under the terms of this License), and this + License will continue in full force and effect unless terminated as + stated above. + + 8. Miscellaneous + + a. Each time You Distribute or Publicly Perform the Work or a Collection, + the Licensor offers to the recipient a license to the Work on the same + terms and conditions as the license granted to You under this License. + b. If any provision of this License is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability of + the remainder of the terms of this License, and without further action + by the parties to this agreement, such provision shall be reformed to + the minimum extent necessary to make such provision valid and + enforceable. + c. No term or provision of this License shall be deemed waived and no + breach consented to unless such waiver or consent shall be in writing + and signed by the party to be charged with such waiver or consent. + d. This License constitutes the entire agreement between the parties with + respect to the Work licensed here. There are no understandings, + agreements or representations with respect to the Work not specified + here. Licensor shall not be bound by any additional provisions that + may appear in any communication from You. This License may not be + modified without the mutual written agreement of the Licensor and You. + e. The rights granted under, and the subject matter referenced, in this + License were drafted utilizing the terminology of the Berne Convention + for the Protection of Literary and Artistic Works (as amended on + September 28, 1979), the Rome Convention of 1961, the WIPO Copyright + Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 + and the Universal Copyright Convention (as revised on July 24, 1971). + These rights and subject matter take effect in the relevant + jurisdiction in which the License terms are sought to be enforced + according to the corresponding provisions of the implementation of + those treaty provisions in the applicable national law. If the + standard suite of rights granted under applicable copyright law + includes additional rights not granted under this License, such + additional rights are deemed to be included in the License; this + License is not intended to restrict the license of any rights under + applicable law. + + + Creative Commons Notice + + Creative Commons is not a party to this License, and makes no warranty + whatsoever in connection with the Work. Creative Commons will not be + liable to You or any party on any legal theory for any damages + whatsoever, including without limitation any general, special, + incidental or consequential damages arising in connection to this + license. Notwithstanding the foregoing two (2) sentences, if Creative + Commons has expressly identified itself as the Licensor hereunder, it + shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the + Work is licensed under the CCPL, Creative Commons does not authorize + the use by either party of the trademark "Creative Commons" or any + related trademark or logo of Creative Commons without the prior + written consent of Creative Commons. Any permitted use will be in + compliance with Creative Commons' then-current trademark usage + guidelines, as may be published on its website or otherwise made + available upon request from time to time. For the avoidance of doubt, + this trademark restriction does not form part of this License. + + Creative Commons may be contacted at https://creativecommons.org/. json: cc-by-nd-3.0.json - yml: cc-by-nd-3.0.yml + yaml: cc-by-nd-3.0.yml html: cc-by-nd-3.0.html - text: cc-by-nd-3.0.LICENSE + license: cc-by-nd-3.0.LICENSE - license_key: cc-by-nd-3.0-de + category: Free Restricted spdx_license_key: CC-BY-ND-3.0-DE other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Creative Commons Namensnennung - Keine Bearbeitungen 3.0 Deutschland + + CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. + + Lizenz + + DER GEGENSTAND DIESER LIZENZ (WIE UNTER "SCHUTZGEGENSTAND" DEFINIERT) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE COMMONS PUBLIC LICENSE ("CCPL", "LIZENZ" ODER "LIZENZVERTRAG") ZUR VERFÜGUNG GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER ANDERE GESETZE GESCHÜTZT. JEDE FORM DER NUTZUNG DES SCHUTZGEGENSTANDES, DIE NICHT AUFGRUND DIESER LIZENZ ODER DURCH GESETZE GESTATTET IST, IST UNZULÄSSIG. + + DURCH DIE AUSÜBUNG EINES DURCH DIESE LIZENZ GEWÄHRTEN RECHTS AN DEM SCHUTZGEGENSTAND ERKLÄREN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH EINVERSTANDEN. SOWEIT DIESE LIZENZ ALS LIZENZVERTRAG ANZUSEHEN IST, GEWÄHRT IHNEN DER LIZENZGEBER DIE IN DER LIZENZ GENANNTEN RECHTE UNENTGELTLICH UND IM AUSTAUSCH DAFÜR, DASS SIE DAS GEBUNDENSEIN AN DIE LIZENZBEDINGUNGEN AKZEPTIEREN. + + 1. Definitionen + + a. Der Begriff "Abwandlung" im Sinne dieser Lizenz bezeichnet das Ergebnis jeglicher Art von Veränderung des Schutzgegenstandes, solange die eigenpersönlichen Züge des Schutzgegenstandes darin nicht verblassen und daran eigene Schutzrechte entstehen. Das kann insbesondere eine Bearbeitung, Umgestaltung, Änderung, Anpassung, Übersetzung oder Heranziehung des Schutzgegenstandes zur Vertonung von Laufbildern sein. Nicht als Abwandlung des Schutzgegenstandes gelten seine Aufnahme in eine Sammlung oder ein Sammelwerk und die freie Benutzung des Schutzgegenstandes. + + b. Der Begriff "Sammelwerk" im Sinne dieser Lizenz meint eine Zusammenstellung von literarischen, künstlerischen oder wissenschaftlichen Inhalten, sofern diese Zusammenstellung aufgrund von Auswahl und Anordnung der darin enthaltenen selbständigen Elemente eine geistige Schöpfung darstellt, unabhängig davon, ob die Elemente systematisch oder methodisch angelegt und dadurch einzeln zugänglich sind oder nicht. + + c. "Verbreiten" im Sinne dieser Lizenz bedeutet, den Schutzgegenstand im Original oder in Form von Vervielfältigungsstücken, mithin in körperlich fixierter Form der Öffentlichkeit anzubieten oder in Verkehr zu bringen. + + d. Der "Lizenzgeber" im Sinne dieser Lizenz ist diejenige natürliche oder juristische Person oder Gruppe, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet und insoweit als Rechteinhaberin auftritt. + + e. "Rechteinhaber" im Sinne dieser Lizenz ist der Urheber des Schutzgegenstandes oder jede andere natürliche oder juristische Person oder Gruppe von Personen, die am Schutzgegenstand ein Immaterialgüterrecht erlangt hat, welches die in Abschnitt 3 genannten Handlungen erfasst und bei dem eine Einräumung von Nutzungsrechten oder eine Weiterübertragung an Dritte möglich ist. + + f. Der Begriff "Schutzgegenstand" bezeichnet in dieser Lizenz den literarischen, künstlerischen oder wissenschaftlichen Inhalt, der unter den Bedingungen dieser Lizenz angeboten wird. Das kann insbesondere eine persönliche geistige Schöpfung jeglicher Art, ein Werk der kleinen Münze, ein nachgelassenes Werk oder auch ein Lichtbild oder anderes Objekt eines verwandten Schutzrechts sein, unabhängig von der Art seiner Fixierung und unabhängig davon, auf welche Weise jeweils eine Wahrnehmung erfolgen kann, gleichviel ob in analoger oder digitaler Form. Soweit Datenbanken oder Zusammenstellungen von Daten einen immaterialgüterrechtlichen Schutz eigener Art genießen, unterfallen auch sie dem Begriff "Schutzgegenstand" im Sinne dieser Lizenz. + + g. Mit "Sie" bzw. "Ihnen" ist die natürliche oder juristische Person gemeint, die in dieser Lizenz im Abschnitt 3 genannte Nutzungen des Schutzgegenstandes vornimmt und zuvor in Hinblick auf den Schutzgegenstand nicht gegen Bedingungen dieser Lizenz verstoßen oder aber die ausdrückliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese Lizenz gewährten Nutzungsrechte trotz eines vorherigen Verstoßes auszuüben. + + h. Unter "Öffentlich Zeigen" im Sinne dieser Lizenz sind Veröffentlichungen und Präsentationen des Schutzgegenstandes zu verstehen, die für eine Mehrzahl von Mitgliedern der Öffentlichkeit bestimmt sind und in unkörperlicher Form mittels öffentlicher Wiedergabe in Form von Vortrag, Aufführung, Vorführung, Darbietung, Sendung, Weitersendung, zeit- und ortsunabhängiger Zugänglichmachung oder in körperlicher Form mittels Ausstellung erfolgen, unabhängig von bestimmten Veranstaltungen und unabhängig von den zum Einsatz kommenden Techniken und Verfahren, einschließlich drahtgebundener oder drahtloser Mittel und Einstellen in das Internet. + + i. "Vervielfältigen" im Sinne dieser Lizenz bedeutet, mittels beliebiger Verfahren Vervielfältigungsstücke des Schutzgegenstandes herzustellen, insbesondere durch Ton- oder Bildaufzeichnungen, und umfasst auch den Vorgang, erstmals körperliche Fixierungen des Schutzgegenstandes sowie Vervielfältigungsstücke dieser Fixierungen anzufertigen, sowie die Übertragung des Schutzgegenstandes auf einen Bild- oder Tonträger oder auf ein anderes elektronisches Medium, gleichviel ob in digitaler oder analoger Form. + + 2. Schranken des Immaterialgüterrechts. Diese Lizenz ist in keiner Weise darauf gerichtet, Befugnisse zur Nutzung des Schutzgegenstandes zu vermindern, zu beschränken oder zu vereiteln, die Ihnen aufgrund der Schranken des Urheberrechts oder anderer Rechtsnormen bereits ohne Weiteres zustehen oder sich aus dem Fehlen eines immaterialgüterrechtlichen Schutzes ergeben. + + 3. Einräumung von Nutzungsrechten. Unter den Bedingungen dieser Lizenz räumt Ihnen der Lizenzgeber - unbeschadet unverzichtbarer Rechte und vorbehaltlich des Abschnitts 3.c) - das vergütungsfreie, räumlich und zeitlich (für die Dauer des Schutzrechts am Schutzgegenstand) unbeschränkte einfache Recht ein, den Schutzgegenstand auf die folgenden Arten und Weisen zu nutzen ("unentgeltlich eingeräumtes einfaches Nutzungsrecht für jedermann"): + + a. Den Schutzgegenstand in beliebiger Form und Menge zu vervielfältigen, ihn in Sammelwerke zu integrieren und ihn als Teil solcher Sammelwerke zu vervielfältigen; + + b. den Schutzgegenstand, allein oder in Sammelwerke aufgenommen, öffentlich zu zeigen und zu verbreiten. + + c. Bezüglich Vergütung für die Nutzung des Schutzgegenstandes gilt Folgendes: + + i. Unverzichtbare gesetzliche Vergütungsansprüche: Soweit unverzichtbare Vergütungsansprüche im Gegenzug für gesetzliche Lizenzen vorgesehen oder Pauschalabgabensysteme (zum Beispiel für Leermedien) vorhanden sind, behält sich der Lizenzgeber das ausschließliche Recht vor, die entsprechende Vergütung einzuziehen für jede Ausübung eines Rechts aus dieser Lizenz durch Sie. + + ii. Vergütung bei Zwangslizenzen: Sofern Zwangslizenzen außerhalb dieser Lizenz vorgesehen sind und zustande kommen, verzichtet der Lizenzgeber für alle Fälle einer lizenzgerechten Nutzung des Schutzgegenstandes durch Sie auf jegliche Vergütung. + + iii. Vergütung in sonstigen Fällen: Bezüglich lizenzgerechter Nutzung des Schutzgegenstandes durch Sie, die nicht unter die beiden vorherigen Abschnitte (i) und (ii) fällt, verzichtet der Lizenzgeber auf jegliche Vergütung, unabhängig davon, ob eine Einziehung der Vergütung durch ihn selbst oder nur durch eine Verwertungsgesellschaft möglich wäre. + + Das vorgenannte Nutzungsrecht wird für alle bekannten sowie für alle noch nicht bekannten Nutzungsarten eingeräumt. Es beinhaltet auch das Recht, solche Änderungen am Schutzgegenstand vorzunehmen, die für bestimmte nach dieser Lizenz zulässige Nutzungen technisch erforderlich sind. Weitergehende Änderungen oder Abwandlungen sind jedoch untersagt. Alle sonstigen Rechte, die über diesen Abschnitt hinaus nicht ausdrücklich durch den Lizenzgeber eingeräumt werden, bleiben diesem allein vorbehalten. Soweit Datenbanken oder Zusammenstellungen von Daten Schutzgegenstand dieser Lizenz oder Teil dessen sind und einen immaterialgüterrechtlichen Schutz eigener Art genießen, verzichtet der Lizenzgeber auf sämtliche aus diesem Schutz resultierenden Rechte. + + 4. Bedingungen. Die Einräumung des Nutzungsrechts gemäß Abschnitt 3 dieser Lizenz erfolgt ausdrücklich nur unter den folgenden Bedingungen: + + a. Sie dürfen den Schutzgegenstand ausschließlich unter den Bedingungen dieser Lizenz verbreiten oder öffentlich zeigen. Sie müssen dabei stets eine Kopie dieser Lizenz oder deren vollständige Internetadresse in Form des Uniform-Resource-Identifier (URI) beifügen. Sie dürfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen dieser Lizenz oder die durch diese Lizenz gewährten Rechte beschränken. Sie dürfen den Schutzgegenstand nicht unterlizenzieren. Bei jeder Kopie des Schutzgegenstandes, die Sie verbreiten oder öffentlich zeigen, müssen Sie alle Hinweise unverändert lassen, die auf diese Lizenz und den Haftungsausschluss hinweisen. Wenn Sie den Schutzgegenstand verbreiten oder öffentlich zeigen, dürfen Sie (in Bezug auf den Schutzgegenstand) keine technischen Maßnahmen ergreifen, die den Nutzer des Schutzgegenstandes in der Ausübung der ihm durch diese Lizenz gewährten Rechte behindern können. Dieser Abschnitt 4.a) gilt auch für den Fall, dass der Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt dieser Lizenz unterstellt werden muss. Sofern Sie ein Sammelwerk erstellen, müssen Sie auf die Mitteilung eines Lizenzgebers hin aus dem Sammelwerk die in Abschnitt 4.b) aufgezählten Hinweise entfernen. + + b. Die Verbreitung und das öffentliche Zeigen des Schutzgegenstandes oder ihn enthaltender Sammelwerke ist Ihnen nur unter der Bedingung gestattet, dass Sie, vorbehaltlich etwaiger Mitteilungen im Sinne von Abschnitt 4.a), alle dazu gehörenden Rechtevermerke unberührt lassen. Sie sind verpflichtet, die Rechteinhaberschaft in einer der Nutzung entsprechenden, angemessenen Form anzuerkennen, indem Sie - soweit bekannt - Folgendes angeben: + + i. Den Namen (oder das Pseudonym, falls ein solches verwendet wird) des Rechteinhabers und / oder, falls der Lizenzgeber im Rechtevermerk, in den Nutzungsbedingungen oder auf andere angemessene Weise eine Zuschreibung an Dritte vorgenommen hat (z.B. an eine Stiftung, ein Verlagshaus oder eine Zeitung) ("Zuschreibungsempfänger"), Namen bzw. Bezeichnung dieses oder dieser Dritten; + + ii. den Titel des Inhaltes; + + iii. in einer praktikablen Form den Uniform-Resource-Identifier (URI, z.B. Internetadresse), den der Lizenzgeber zum Schutzgegenstand angegeben hat, es sei denn, dieser URI verweist nicht auf den Rechtevermerk oder die Lizenzinformationen zum Schutzgegenstand. + + Die nach diesem Abschnitt 4.b) erforderlichen Angaben können in jeder angemessenen Form gemacht werden; im Falle eines Sammelwerkes müssen diese Angaben das Minimum darstellen und bei gemeinsamer Nennung mehrerer Rechteinhaber dergestalt erfolgen, dass sie zumindest ebenso hervorgehoben sind wie die Hinweise auf die übrigen Rechteinhaber. Die Angaben nach diesem Abschnitt dürfen Sie ausschließlich zur Angabe der Rechteinhaberschaft in der oben bezeichneten Weise verwenden. Durch die Ausübung Ihrer Rechte aus dieser Lizenz dürfen Sie ohne eine vorherige, separat und schriftlich vorliegende Zustimmung des Lizenzgebers und / oder des Zuschreibungsempfängers weder explizit noch implizit irgendeine Verbindung zum Lizenzgeber oder Zuschreibungsempfänger und ebenso wenig eine Unterstützung oder Billigung durch ihn andeuten. + + c. Die oben unter 4.a) und b) genannten Einschränkungen gelten nicht für solche Teile des Schutzgegenstandes, die allein deshalb unter den Schutzgegenstandsbegriff fallen, weil sie als Datenbanken oder Zusammenstellungen von Daten einen immaterialgüterrechtlichen Schutz eigener Art genießen. + + d. Persönlichkeitsrechte bleiben - soweit sie bestehen - von dieser Lizenz unberührt. + + 5. Gewährleistung + + SOFERN KEINE ANDERS LAUTENDE, SCHRIFTLICHE VEREINBARUNG ZWISCHEN DEM LIZENZGEBER UND IHNEN GESCHLOSSEN WURDE UND SOWEIT MÄNGEL NICHT ARGLISTIG VERSCHWIEGEN WURDEN, BIETET DER LIZENZGEBER DEN SCHUTZGEGENSTAND UND DIE EINRÄUMUNG VON RECHTEN UNTER AUSSCHLUSS JEGLICHER GEWÄHRLEISTUNG AN UND ÜBERNIMMT WEDER AUSDRÜCKLICH NOCH KONKLUDENT GARANTIEN IRGENDEINER ART. DIES UMFASST INSBESONDERE DAS FREISEIN VON SACH- UND RECHTSMÄNGELN, UNABHÄNGIG VON DEREN ERKENNBARKEIT FÜR DEN LIZENZGEBER, DIE VERKEHRSFÄHIGKEIT DES SCHUTZGEGENSTANDES, SEINE VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK SOWIE DIE KORREKTHEIT VON BESCHREIBUNGEN. DIESE GEWÄHRLEISTUNGSBESCHRÄNKUNG GILT NICHT, SOWEIT MÄNGEL ZU SCHÄDEN DER IN ABSCHNITT 6 BEZEICHNETEN ART FÜHREN UND AUF SEITEN DES LIZENZGEBERS DAS JEWEILS GENANNTE VERSCHULDEN BZW. VERTRETENMÜSSEN EBENFALLS VORLIEGT. + + 6. Haftungsbeschränkung + + DER LIZENZGEBER HAFTET IHNEN GEGENÜBER IN BEZUG AUF SCHÄDEN AUS DER VERLETZUNG DES LEBENS, DES KÖRPERS ODER DER GESUNDHEIT NUR, SOFERN IHM WENIGSTENS FAHRLÄSSIGKEIT VORZUWERFEN IST, FÜR SONSTIGE SCHÄDEN NUR BEI GROBER FAHRLÄSSIGKEIT ODER VORSATZ, UND ÜBERNIMMT DARÜBER HINAUS KEINERLEI FREIWILLIGE HAFTUNG. + + 7. Erlöschen + + a. Diese Lizenz und die durch sie eingeräumten Nutzungsrechte erlöschen mit Wirkung für die Zukunft im Falle eines Verstoßes gegen die Lizenzbedingungen durch Sie, ohne dass es dazu der Kenntnis des Lizenzgebers vom Verstoß oder einer weiteren Handlung einer der Vertragsparteien bedarf. Mit natürlichen oder juristischen Personen, die den Schutzgegenstand enthaltende Sammelwerke unter den Bedingungen dieser Lizenz von Ihnen erhalten haben, bestehen nachträglich entstandene Lizenzbeziehungen jedoch solange weiter, wie die genannten Personen sich ihrerseits an sämtliche Lizenzbedingungen halten. Darüber hinaus gelten die Ziffern 1, 2, 5, 6, 7, und 8 auch nach einem Erlöschen dieser Lizenz fort. + + b. Vorbehaltlich der oben genannten Bedingungen gilt diese Lizenz unbefristet bis der rechtliche Schutz für den Schutzgegenstand ausläuft. Davon abgesehen behält der Lizenzgeber das Recht, den Schutzgegenstand unter anderen Lizenzbedingungen anzubieten oder die eigene Weitergabe des Schutzgegenstandes jederzeit einzustellen, solange die Ausübung dieses Rechts nicht einer Kündigung oder einem Widerruf dieser Lizenz (oder irgendeiner Weiterlizenzierung, die auf Grundlage dieser Lizenz bereits erfolgt ist bzw. zukünftig noch erfolgen muss) dient und diese Lizenz unter Berücksichtigung der oben zum Erlöschen genannten Bedingungen vollumfänglich wirksam bleibt. + + 8. Sonstige Bestimmungen + + a. Jedes Mal wenn Sie den Schutzgegenstand für sich genommen oder als Teil eines Sammelwerkes verbreiten oder öffentlich zeigen, bietet der Lizenzgeber dem Empfänger eine Lizenz zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz. + + b. Sollte eine Bestimmung dieser Lizenz unwirksam sein, so bleibt davon die Wirksamkeit der Lizenz im Übrigen unberührt. + + c. Keine Bestimmung dieser Lizenz soll als abbedungen und kein Verstoß gegen sie als zulässig gelten, solange die von dem Verzicht oder von dem Verstoß betroffene Seite nicht schriftlich zugestimmt hat. + + d. Diese Lizenz (zusammen mit in ihr ausdrücklich vorgesehenen Erlaubnissen, Mitteilungen und Zustimmungen, soweit diese tatsächlich vorliegen) stellt die vollständige Vereinbarung zwischen dem Lizenzgeber und Ihnen in Bezug auf den Schutzgegenstand dar. Es bestehen keine Abreden, Vereinbarungen oder Erklärungen in Bezug auf den Schutzgegenstand, die in dieser Lizenz nicht genannt sind. Rechtsgeschäftliche Änderungen des Verhältnisses zwischen dem Lizenzgeber und Ihnen sind nur über Modifikationen dieser Lizenz möglich. Der Lizenzgeber ist an etwaige zusätzliche, einseitig durch Sie übermittelte Bestimmungen nicht gebunden. Diese Lizenz kann nur durch schriftliche Vereinbarung zwischen Ihnen und dem Lizenzgeber modifiziert werden. Derlei Modifikationen wirken ausschließlich zwischen dem Lizenzgeber und Ihnen und wirken sich nicht auf die Dritten gemäß Ziffern 8.a) angeboteten Lizenzen aus. + + e. Sofern zwischen Ihnen und dem Lizenzgeber keine anderweitige Vereinbarung getroffen wurde und soweit Wahlfreiheit besteht, findet auf diesen Lizenzvertrag das Recht der Bundesrepublik Deutschland Anwendung. + + + Creative Commons Notice + + Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr oder dergleichen in Bezug auf den Schutzgegenstand. Creative Commons haftet Ihnen oder einer anderen Partei unter keinem rechtlichen Gesichtspunkt für irgendwelche Schäden, die - abstrakt oder konkret, zufällig oder vorhersehbar - im Zusammenhang mit dieser Lizenz entstehen. Unbeschadet der vorangegangen beiden Sätze, hat Creative Commons alle Rechte und Pflichten eines Lizenzgebers, wenn es sich ausdrücklich als Lizenzgeber im Sinne dieser Lizenz bezeichnet. + + Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. + + Creative Commons kann kontaktiert werden über https://creativecommons.org/. json: cc-by-nd-3.0-de.json - yml: cc-by-nd-3.0-de.yml + yaml: cc-by-nd-3.0-de.yml html: cc-by-nd-3.0-de.html - text: cc-by-nd-3.0-de.LICENSE + license: cc-by-nd-3.0-de.LICENSE - license_key: cc-by-nd-4.0 + category: Source-available spdx_license_key: CC-BY-ND-4.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: "Attribution-NoDerivatives 4.0 International\n\n=======================================================================\n\ + \nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide\ + \ legal services or legal advice. Distribution of\nCreative Commons public licenses does\ + \ not create a lawyer-client or\nother relationship. Creative Commons makes its licenses\ + \ and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\n\ + warranties regarding its licenses, any material licensed under their\nterms and conditions,\ + \ or any related information. Creative Commons\ndisclaims all liability for damages resulting\ + \ from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\ + \nCreative Commons public licenses provide a standard set of terms and\nconditions that\ + \ creators and other rights holders may use to share\noriginal works of authorship and other\ + \ material subject to copyright\nand certain other rights specified in the public license\ + \ below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive,\ + \ and do not form part of our licenses.\n\n Considerations for licensors: Our public\ + \ licenses are\n intended for use by those authorized to give the public\n permission\ + \ to use material in ways otherwise restricted by\n copyright and certain other rights.\ + \ Our licenses are\n irrevocable. Licensors should read and understand the terms\n \ + \ and conditions of the license they choose before applying it.\n Licensors should\ + \ also secure all rights necessary before\n applying our licenses so that the public\ + \ can reuse the\n material as expected. Licensors should clearly mark any\n material\ + \ not subject to the license. This includes other CC-\n licensed material, or material\ + \ used under an exception or\n limitation to copyright. More considerations for licensors:\n\ + \twiki.creativecommons.org/Considerations_for_licensors\n\n Considerations for the public:\ + \ By using one of our public\n licenses, a licensor grants the public permission to\ + \ use the\n licensed material under specified terms and conditions. If\n the licensor's\ + \ permission is not necessary for any reason--for\n example, because of any applicable\ + \ exception or limitation to\n copyright--then that use is not regulated by the license.\ + \ Our\n licenses grant only permissions under copyright and certain\n other rights\ + \ that a licensor has authority to grant. Use of\n the licensed material may still be\ + \ restricted for other\n reasons, including because others have copyright or other\n\ + \ rights in the material. A licensor may make special requests,\n such as asking\ + \ that all changes be marked or described.\n Although not required by our licenses,\ + \ you are encouraged to\n respect those requests where reasonable. More considerations\n\ + \ for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\t\n\n\ + =======================================================================\n\nCreative Commons\ + \ Attribution-NoDerivatives 4.0 International Public\nLicense\n\nBy exercising the Licensed\ + \ Rights (defined below), You accept and agree\nto be bound by the terms and conditions\ + \ of this Creative Commons\nAttribution-NoDerivatives 4.0 International Public License (\"\ + Public\nLicense\"). To the extent this Public License may be interpreted as a\ncontract,\ + \ You are granted the Licensed Rights in consideration of Your\nacceptance of these terms\ + \ and conditions, and the Licensor grants You\nsuch rights in consideration of benefits\ + \ the Licensor receives from\nmaking the Licensed Material available under these terms and\n\ + conditions.\n\n\nSection 1 -- Definitions.\n\n a. Adapted Material means material subject\ + \ to Copyright and Similar\n Rights that is derived from or based upon the Licensed\ + \ Material\n and in which the Licensed Material is translated, altered,\n arranged,\ + \ transformed, or otherwise modified in a manner requiring\n permission under the Copyright\ + \ and Similar Rights held by the\n Licensor. For purposes of this Public License, where\ + \ the Licensed\n Material is a musical work, performance, or sound recording,\n \ + \ Adapted Material is always produced where the Licensed Material is\n synched in timed\ + \ relation with a moving image.\n\n b. Copyright and Similar Rights means copyright and/or\ + \ similar rights\n closely related to copyright including, without limitation,\n \ + \ performance, broadcast, sound recording, and Sui Generis Database\n Rights, without\ + \ regard to how the rights are labeled or\n categorized. For purposes of this Public\ + \ License, the rights\n specified in Section 2(b)(1)-(2) are not Copyright and Similar\n\ + \ Rights.\n\n c. Effective Technological Measures means those measures that, in the\n\ + \ absence of proper authority, may not be circumvented under laws\n fulfilling obligations\ + \ under Article 11 of the WIPO Copyright\n Treaty adopted on December 20, 1996, and/or\ + \ similar international\n agreements.\n\n d. Exceptions and Limitations means fair\ + \ use, fair dealing, and/or\n any other exception or limitation to Copyright and Similar\ + \ Rights\n that applies to Your use of the Licensed Material.\n\n e. Licensed Material\ + \ means the artistic or literary work, database,\n or other material to which the Licensor\ + \ applied this Public\n License.\n\n f. Licensed Rights means the rights granted to\ + \ You subject to the\n terms and conditions of this Public License, which are limited\ + \ to\n all Copyright and Similar Rights that apply to Your use of the\n Licensed\ + \ Material and that the Licensor has authority to license.\n\n g. Licensor means the individual(s)\ + \ or entity(ies) granting rights\n under this Public License.\n\n h. Share means to\ + \ provide material to the public by any means or\n process that requires permission\ + \ under the Licensed Rights, such\n as reproduction, public display, public performance,\ + \ distribution,\n dissemination, communication, or importation, and to make material\n\ + \ available to the public including in ways that members of the\n public may access\ + \ the material from a place and at a time\n individually chosen by them.\n\n i. Sui\ + \ Generis Database Rights means rights other than copyright\n resulting from Directive\ + \ 96/9/EC of the European Parliament and of\n the Council of 11 March 1996 on the legal\ + \ protection of databases,\n as amended and/or succeeded, as well as other essentially\n\ + \ equivalent rights anywhere in the world.\n\n j. You means the individual or entity\ + \ exercising the Licensed Rights\n under this Public License. Your has a corresponding\ + \ meaning.\n\n\nSection 2 -- Scope.\n\n a. License grant.\n\n 1. Subject to the terms\ + \ and conditions of this Public License,\n the Licensor hereby grants You a worldwide,\ + \ royalty-free,\n non-sublicensable, non-exclusive, irrevocable license to\n \ + \ exercise the Licensed Rights in the Licensed Material to:\n\n a. reproduce\ + \ and Share the Licensed Material, in whole or\n in part; and\n\n \ + \ b. produce and reproduce, but not Share, Adapted Material.\n\n 2. Exceptions\ + \ and Limitations. For the avoidance of doubt, where\n Exceptions and Limitations\ + \ apply to Your use, this Public\n License does not apply, and You do not need\ + \ to comply with\n its terms and conditions.\n\n 3. Term. The term of this\ + \ Public License is specified in Section\n 6(a).\n\n 4. Media and formats;\ + \ technical modifications allowed. The\n Licensor authorizes You to exercise the\ + \ Licensed Rights in\n all media and formats whether now known or hereafter created,\n\ + \ and to make technical modifications necessary to do so. The\n Licensor\ + \ waives and/or agrees not to assert any right or\n authority to forbid You from\ + \ making technical modifications\n necessary to exercise the Licensed Rights, including\n\ + \ technical modifications necessary to circumvent Effective\n Technological\ + \ Measures. For purposes of this Public License,\n simply making modifications\ + \ authorized by this Section 2(a)\n (4) never produces Adapted Material.\n\n \ + \ 5. Downstream recipients.\n\n a. Offer from the Licensor -- Licensed Material.\ + \ Every\n recipient of the Licensed Material automatically\n \ + \ receives an offer from the Licensor to exercise the\n Licensed Rights under\ + \ the terms and conditions of this\n Public License.\n\n b. No\ + \ downstream restrictions. You may not offer or impose\n any additional or\ + \ different terms or conditions on, or\n apply any Effective Technological\ + \ Measures to, the\n Licensed Material if doing so restricts exercise of the\n\ + \ Licensed Rights by any recipient of the Licensed\n Material.\n\ + \n 6. No endorsement. Nothing in this Public License constitutes or\n may\ + \ be construed as permission to assert or imply that You\n are, or that Your use\ + \ of the Licensed Material is, connected\n with, or sponsored, endorsed, or granted\ + \ official status by,\n the Licensor or others designated to receive attribution\ + \ as\n provided in Section 3(a)(1)(A)(i).\n\n b. Other rights.\n\n 1. Moral\ + \ rights, such as the right of integrity, are not\n licensed under this Public\ + \ License, nor are publicity,\n privacy, and/or other similar personality rights;\ + \ however, to\n the extent possible, the Licensor waives and/or agrees not to\n\ + \ assert any such rights held by the Licensor to the limited\n extent\ + \ necessary to allow You to exercise the Licensed\n Rights, but not otherwise.\n\ + \n 2. Patent and trademark rights are not licensed under this\n Public License.\n\ + \n 3. To the extent possible, the Licensor waives any right to\n collect\ + \ royalties from You for the exercise of the Licensed\n Rights, whether directly\ + \ or through a collecting society\n under any voluntary or waivable statutory or\ + \ compulsory\n licensing scheme. In all other cases the Licensor expressly\n \ + \ reserves any right to collect such royalties.\n\n\nSection 3 -- License Conditions.\n\ + \nYour exercise of the Licensed Rights is expressly made subject to the\nfollowing conditions.\n\ + \n a. Attribution.\n\n 1. If You Share the Licensed Material, You must:\n\n \ + \ a. retain the following if it is supplied by the Licensor\n with the\ + \ Licensed Material:\n\n i. identification of the creator(s) of the Licensed\n\ + \ Material and any others designated to receive\n \ + \ attribution, in any reasonable manner requested by\n the Licensor (including\ + \ by pseudonym if\n designated);\n\n ii. a copyright notice;\n\ + \n iii. a notice that refers to this Public License;\n\n iv.\ + \ a notice that refers to the disclaimer of\n warranties;\n\n \ + \ v. a URI or hyperlink to the Licensed Material to the\n extent\ + \ reasonably practicable;\n\n b. indicate if You modified the Licensed Material\ + \ and\n retain an indication of any previous modifications; and\n\n \ + \ c. indicate the Licensed Material is licensed under this\n Public License,\ + \ and include the text of, or the URI or\n hyperlink to, this Public License.\n\ + \n For the avoidance of doubt, You do not have permission under\n this\ + \ Public License to Share Adapted Material.\n\n 2. You may satisfy the conditions\ + \ in Section 3(a)(1) in any\n reasonable manner based on the medium, means, and\ + \ context in\n which You Share the Licensed Material. For example, it may be\n\ + \ reasonable to satisfy the conditions by providing a URI or\n hyperlink\ + \ to a resource that includes the required\n information.\n\n 3. If requested\ + \ by the Licensor, You must remove any of the\n information required by Section\ + \ 3(a)(1)(A) to the extent\n reasonably practicable.\n\n\nSection 4 -- Sui Generis\ + \ Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database Rights that\n\ + apply to Your use of the Licensed Material:\n\n a. for the avoidance of doubt, Section\ + \ 2(a)(1) grants You the right\n to extract, reuse, reproduce, and Share all or a substantial\n\ + \ portion of the contents of the database, provided You do not Share\n Adapted Material;\n\ + \ b. if You include all or a substantial portion of the database\n contents in a database\ + \ in which You have Sui Generis Database\n Rights, then the database in which You have\ + \ Sui Generis Database\n Rights (but not its individual contents) is Adapted Material;\ + \ and\n c. You must comply with the conditions in Section 3(a) if You Share\n all or\ + \ a substantial portion of the contents of the database.\n\nFor the avoidance of doubt,\ + \ this Section 4 supplements and does not\nreplace Your obligations under this Public License\ + \ where the Licensed\nRights include other Copyright and Similar Rights.\n\n\nSection 5\ + \ -- Disclaimer of Warranties and Limitation of Liability.\n\n a. UNLESS OTHERWISE SEPARATELY\ + \ UNDERTAKEN BY THE LICENSOR, TO THE\n EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED\ + \ MATERIAL AS-IS\n AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n\ + \ ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n IMPLIED, STATUTORY,\ + \ OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n WARRANTIES OF TITLE, MERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR\n PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n\ + \ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n KNOWN OR DISCOVERABLE.\ + \ WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n ALLOWED IN FULL OR IN PART, THIS DISCLAIMER\ + \ MAY NOT APPLY TO YOU.\n\n b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE\ + \ LIABLE\n TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n NEGLIGENCE)\ + \ OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n INCIDENTAL, CONSEQUENTIAL, PUNITIVE,\ + \ EXEMPLARY, OR OTHER LOSSES,\n COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC\ + \ LICENSE OR\n USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n ADVISED\ + \ OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n DAMAGES. WHERE A LIMITATION\ + \ OF LIABILITY IS NOT ALLOWED IN FULL OR\n IN PART, THIS LIMITATION MAY NOT APPLY TO\ + \ YOU.\n\n c. The disclaimer of warranties and limitation of liability provided\n above\ + \ shall be interpreted in a manner that, to the extent\n possible, most closely approximates\ + \ an absolute disclaimer and\n waiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\ + \n a. This Public License applies for the term of the Copyright and\n Similar Rights\ + \ licensed here. However, if You fail to comply with\n this Public License, then Your\ + \ rights under this Public License\n terminate automatically.\n\n b. Where Your right\ + \ to use the Licensed Material has terminated under\n Section 6(a), it reinstates:\n\ + \n 1. automatically as of the date the violation is cured, provided\n it\ + \ is cured within 30 days of Your discovery of the\n violation; or\n\n 2.\ + \ upon express reinstatement by the Licensor.\n\n For the avoidance of doubt, this Section\ + \ 6(b) does not affect any\n right the Licensor may have to seek remedies for Your violations\n\ + \ of this Public License.\n\n c. For the avoidance of doubt, the Licensor may also\ + \ offer the\n Licensed Material under separate terms or conditions or stop\n distributing\ + \ the Licensed Material at any time; however, doing so\n will not terminate this Public\ + \ License.\n\n d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n License.\n\ + \n\nSection 7 -- Other Terms and Conditions.\n\n a. The Licensor shall not be bound by\ + \ any additional or different\n terms or conditions communicated by You unless expressly\ + \ agreed.\n\n b. Any arrangements, understandings, or agreements regarding the\n Licensed\ + \ Material not stated herein are separate from and\n independent of the terms and conditions\ + \ of this Public License.\n\n\nSection 8 -- Interpretation.\n\n a. For the avoidance of\ + \ doubt, this Public License does not, and\n shall not be interpreted to, reduce, limit,\ + \ restrict, or impose\n conditions on any use of the Licensed Material that could lawfully\n\ + \ be made without permission under this Public License.\n\n b. To the extent possible,\ + \ if any provision of this Public License is\n deemed unenforceable, it shall be automatically\ + \ reformed to the\n minimum extent necessary to make it enforceable. If the provision\n\ + \ cannot be reformed, it shall be severed from this Public License\n without affecting\ + \ the enforceability of the remaining terms and\n conditions.\n\n c. No term or condition\ + \ of this Public License will be waived and no\n failure to comply consented to unless\ + \ expressly agreed to by the\n Licensor.\n\n d. Nothing in this Public License constitutes\ + \ or may be interpreted\n as a limitation upon, or waiver of, any privileges and immunities\n\ + \ that apply to the Licensor or You, including from the legal\n processes of any\ + \ jurisdiction or authority.\n\n=======================================================================\n\ + \nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons\ + \ may elect to apply one of\nits public licenses to material it publishes and in those instances\n\ + will be considered the “Licensor.” The text of the Creative Commons\npublic licenses is\ + \ dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the\ + \ limited purpose of indicating that\nmaterial is shared under a Creative Commons public\ + \ license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies,\ + \ Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or\ + \ any other trademark or logo\nof Creative Commons without its prior written consent including,\n\ + without limitation, in connection with any unauthorized modifications\nto any of its public\ + \ licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed\ + \ material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic\ + \ licenses.\n\nCreative Commons may be contacted at creativecommons.org." json: cc-by-nd-4.0.json - yml: cc-by-nd-4.0.yml + yaml: cc-by-nd-4.0.yml html: cc-by-nd-4.0.html - text: cc-by-nd-4.0.LICENSE + license: cc-by-nd-4.0.LICENSE - license_key: cc-by-sa-1.0 + category: Copyleft Limited spdx_license_key: CC-BY-SA-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Attribution-ShareAlike 1.0 + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. + "Licensor" means the individual or entity that offers the Work under the terms of this License. + "Original Author" means the individual or entity who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to create and reproduce Derivative Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works; + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. + + 4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested. + You may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License. + If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + 5. Representations, Warranties and Disclaimer + + By offering the Work for public release under this License, Licensor represents and warrants that, to the best of Licensor's knowledge after reasonable inquiry: + Licensor has secured all rights in the Work necessary to grant the license rights hereunder and to permit the lawful exercise of the rights granted hereunder without You having any obligation to pay any royalties, compulsory license fees, residuals or any other payments; + The Work does not infringe the copyright, trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party. + EXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF THE WORK. + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 8. Miscellaneous + + Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at http://creativecommons.org/. json: cc-by-sa-1.0.json - yml: cc-by-sa-1.0.yml + yaml: cc-by-sa-1.0.yml html: cc-by-sa-1.0.html - text: cc-by-sa-1.0.LICENSE + license: cc-by-sa-1.0.LICENSE - license_key: cc-by-sa-2.0 + category: Copyleft Limited spdx_license_key: CC-BY-SA-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Attribution-ShareAlike 2.0 + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. + "Licensor" means the individual or entity that offers the Work under the terms of this License. + "Original Author" means the individual or entity who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike. + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to create and reproduce Derivative Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works. + For the avoidance of doubt, where the work is a musical composition: + + Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work. + Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights society or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions). + Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions). + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. + + 4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested. + You may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, a later version of this License with the same License Elements as this License, or a Creative Commons iCommons license that contains the same License Elements as this License (e.g. Attribution-ShareAlike 2.0 Japan). You must include a copy of, or the Uniform Resource Identifier for, this License or other license specified in the previous sentence with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License. + If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE MATERIALS, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 8. Miscellaneous + + Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at http://creativecommons.org/. json: cc-by-sa-2.0.json - yml: cc-by-sa-2.0.yml + yaml: cc-by-sa-2.0.yml html: cc-by-sa-2.0.html - text: cc-by-sa-2.0.LICENSE + license: cc-by-sa-2.0.LICENSE - license_key: cc-by-sa-2.0-uk + category: Copyleft Limited spdx_license_key: CC-BY-SA-2.0-UK other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Creative Commons Attribution - Share-Alike 2.0 England and Wales + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + + Licence + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENCE ("CCPL" OR "LICENCE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENCE OR COPYRIGHT LAW IS PROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENCE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + This Creative Commons England and Wales Public Licence enables You (all capitalised terms defined below) to view, edit, modify, translate and distribute Works worldwide, under the terms of this licence, provided that You credit the Original Author. + + 'The Licensor' [one or more legally recognised persons or entities offering the Work under the terms and conditions of this Licence] + + and + + 'You' + + agree as follows: + + 1. Definitions + + a. "Attribution" means acknowledging all the parties who have contributed to and have rights in the Work or Collective Work under this Licence. + + b. "Collective Work" means the Work in its entirety in unmodified form along with a number of other separate and independent works, assembled into a collective whole. + + c. "Derivative Work" means any work created by the editing, modification, adaptation or translation of the Work in any media (however a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this Licence). For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this Licence. + + d. "Licence" means this Creative Commons England and Wales Public Licence agreement. + + e. "Licence Elements" means the following high-level licence attributes indicated in the title of this Licence: Attribution, Share-Alike. + + f. "Original Author" means the individual (or entity) who created the Work. + + g. "Work" means the work protected by copyright which is offered under the terms of this Licence. + + h. For the purpose of this Licence, when not inconsistent with the context, words in the singular number include the plural number. + + 2. Licence Terms + + 2.1 The Licensor hereby grants to You a worldwide, royalty-free, non-exclusive, Licence for use and for the duration of copyright in the Work. + + You may: + + * copy the Work; + + * create one or more derivative Works; + + * incorporate the Work into one or more Collective Works; + + * copy Derivative Works or the Work as incorporated in any Collective Work; and + + * publish, distribute, archive, perform or otherwise disseminate the Work or the Work as incorporated in any Collective Work, to the public in any material form in any media whether now known or hereafter created. + + HOWEVER, + + You must not: + + * impose any terms on the use to be made of the Work, the Derivative Work or the Work as incorporated in a Collective Work that alter or restrict the terms of this Licence or any rights granted under it or has the effect or intent of restricting the ability to exercise those rights; + + * impose any digital rights management technology on the Work or the Work as incorporated in a Collective Work that alters or restricts the terms of this Licence or any rights granted under it or has the effect or intent of restricting the ability to exercise those rights; + + * sublicense the Work; + + * subject the Work to any derogatory treatment as defined in the Copyright, Designs and Patents Act 1988. + + FINALLY, + + You must: + + * make reference to this Licence (by Uniform Resource Identifier (URI), spoken word or as appropriate to the media used) on all copies of the Work and Collective Works published, distributed, performed or otherwise disseminated or made available to the public by You; + + * recognise the Licensor's / Original Author's right of attribution in any Work and Collective Work that You publish, distribute, perform or otherwise disseminate to the public and ensure that You credit the Licensor / Original Author as appropriate to the media used; and + + * to the extent reasonably practicable, keep intact all notices that refer to this Licence, in particular the URI, if any, that the Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work. + + Additional Provisions for third parties making use of the Work + + 2.2. Further licence from the Licensor + + Each time You publish, distribute, perform or otherwise disseminate + + * the Work; or + + * any Derivative Work; or + + * the Work as incorporated in a Collective Work + + the Licensor agrees to offer to the relevant third party making use of the Work (in any of the alternatives set out above) a licence to use the Work on the same terms and conditions as granted to You hereunder. + + 2.3. Further licence from You + + Each time You publish, distribute, perform or otherwise disseminate + + * a Derivative Work; or + + * a Derivative Work as incorporated in a Collective Work + + You agree to offer to the relevant third party making use of the Work (in either of the alternatives set out above) a licence to use the Derivative Work on any of the following premises: + + * a licence to the Derivative Work on the same terms and conditions as the licence granted to You hereunder; or + + * a later version of the licence granted to You hereunder; or + + * any other Creative Commons licence with the same Licence Elements. + + 2.4. This Licence does not affect any rights that the User may have under any applicable law, including fair use, fair dealing or any other legally recognised limitation or exception to copyright infringement. + + 2.5. All rights not expressly granted by the Licensor are hereby reserved, including but not limited to, the exclusive right to collect, whether individually or via a licensing body, such as a collecting society, royalties for any use of the Work which results in commercial advantage or private monetary compensation. + + 3. Warranties and Disclaimer + + Except as required by law, the Work is licensed by the Licensor on an "as is" and "as available" basis and without any warranty of any kind, either express or implied. + + 4. Limit of Liability + + Subject to any liability which may not be excluded or limited by law the Licensor shall not be liable and hereby expressly excludes all liability for loss or damage howsoever and whenever caused to You. + + 5. Termination + + The rights granted to You under this Licence shall terminate automatically upon any breach by You of the terms of this Licence. Individuals or entities who have received Collective Works from You under this Licence, however, will not have their Licences terminated provided such individuals or entities remain in full compliance with those Licences. + + 6. General + + 6.1. The validity or enforceability of the remaining terms of this agreement is not affected by the holding of any provision of it to be invalid or unenforceable. + + 6.2. This Licence constitutes the entire Licence Agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. The Licensor shall not be bound by any additional provisions that may appear in any communication in any form. + + 6.3. A person who is not a party to this Licence shall have no rights under the Contracts (Rights of Third Parties) Act 1999 to enforce any of its terms. + + 6.4. This Licence shall be governed by the law of England and Wales and the parties irrevocably submit to the exclusive jurisdiction of the Courts of England and Wales. + + 7. On the role of Creative Commons + + 7.1. Neither the Licensor nor the User may use the Creative Commons logo except to indicate that the Work is licensed under a Creative Commons Licence. Any permitted use has to be in compliance with the Creative Commons trade mark usage guidelines at the time of use of the Creative Commons trade mark. These guidelines may be found on the Creative Commons website or be otherwise available upon request from time to time. + + 7.2. Creative Commons Corporation does not profit financially from its role in providing this Licence and will not investigate the claims of any Licensor or user of the Licence. + + 7.3. One of the conditions that Creative Commons Corporation requires of the Licensor and You is an acknowledgement of its limited role and agreement by all who use the Licence that the Corporation is not responsible to anyone for the statements and actions of You or the Licensor or anyone else attempting to use or using this Licence. + + 7.4. Creative Commons Corporation is not a party to this Licence, and makes no warranty whatsoever in connection to the Work or in connection to the Licence, and in all events is not liable for any loss or damage resulting from the Licensor's or Your reliance on this Licence or on its enforceability. + + 7.5. USE OF THIS LICENCE MEANS THAT YOU AND THE LICENSOR EACH ACCEPTS THESE CONDITIONS IN SECTION 7.1, 7.2, 7.3, 7.4 AND EACH ACKNOWLEDGES CREATIVE COMMONS CORPORATION'S VERY LIMITED ROLE AS A FACILITATOR OF THE LICENCE FROM THE LICENSOR TO YOU. + + Creative Commons is not a party to this Licence, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this licence. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at https://creativecommons.org/. json: cc-by-sa-2.0-uk.json - yml: cc-by-sa-2.0-uk.yml + yaml: cc-by-sa-2.0-uk.yml html: cc-by-sa-2.0-uk.html - text: cc-by-sa-2.0-uk.LICENSE + license: cc-by-sa-2.0-uk.LICENSE - license_key: cc-by-sa-2.1-jp + category: Copyleft Limited spdx_license_key: CC-BY-SA-2.1-JP other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + アトリビューション—シェアアライク 2.1 + (帰属—同一条件許諾) + クリエイティブ・コモンズ及びクリエイティブ・コモンズ・ジャパンは法律事務所ではありません。この利用許諾条項の頒布は法的アドバイスその他の法律業務を行うものではありません。クリエイティブ・コモンズ及びクリエイティブ・コモンズ・ジャパンは、この利用許諾の当事者ではなく、ここに提供する情報及び本作品に関しいかなる保証も行いません。クリエイティブ・コモンズ及びクリエイティブ・コモンズ・ジャパンは、いかなる法令に基づこうとも、あなた又はいかなる第三者の損害(この利用許諾に関連する通常損害、特別損害を含みますがこれらに限られません)について責任を負いません。 + + 利用許諾 + + 本作品(下記に定義する)は、このクリエイティブ・コモンズ・パブリック・ライセンス日本版(以下「この利用許諾」という)の条項の下で提供される。本作品は、著作権法及び/又は他の適用法によって保護される。本作品をこの利用許諾又は著作権法の下で授権された以外の方法で使用することを禁止する。 + + 許諾者は、かかる条項をあなたが承諾することとひきかえに、ここに規定される権利をあなたに付与する。本作品に関し、この利用許諾の下で認められるいずれかの利用を行うことにより、あなたは、この利用許諾(条項)に拘束されることを承諾し同意したこととなる。 + + 第1条 定義 + + この利用許諾中の用語を以下のように定義する。その他の用語は、著作権法その他の法令で定める意味を持つものとする。 + + a. 「二次的著作物」とは、著作物を翻訳し、編曲し、若しくは変形し、または脚色し、映画化し、その他翻案することにより創作した著作物をいう。ただし、編集著作物又はデータベースの著作物(以下、この二つを併せて「編集著作物等」という。)を構成する著作物は、二次的著作物とみなされない。また、原著作者及び実演家の名誉又は声望を害する方法で原著作物を改作、変形もしくは翻案して生じる著作物は、この利用許諾の目的においては、二次的著作物に含まれない。 + b. 「許諾者」とは、この利用許諾の条項の下で本作品を提供する個人又は団体をいう。 + c. 「あなた」とは、この利用許諾に基づく権利を行使する個人又は団体をいう。 + d. 「原著作者」とは、本作品に含まれる著作物を創作した個人又は団体をいう。 + e. 「本作品」とは、この利用許諾の条項に基づいて利用する権利が付与される対象たる無体物をいい、著作物、実演、レコード、放送にかかる音又は影像、もしくは有線放送にかかる音又は影像をすべて含むものとする。 + f. 「ライセンス要素」とは、許諾者が選択し、この利用許諾に表示されている、以下のライセンス属性をいう:帰属・同一条件許諾 + + 第2条 著作権等に対する制限 + + この利用許諾に含まれるいかなる条項によっても、許諾者は、あなたが著作権の制限(著作権法第30条〜49条)、著作者人格権に対する制限(著作権法第18条2項〜4項、第19条2項〜4項、第20条2項)、著作隣接権に対する制限(著作権法第102条)その他、著作権法又はその他の適用法に基づいて認められることとなる本作品の利用を禁止しない。 + + 第3条 ライセンスの付与 + + この利用許諾の条項に従い、許諾者はあなたに、本作品に関し、すべての国で、ロイヤリティ・フリー、非排他的で、(第7条bに定める期間)継続的な以下のライセンスを付与する。ただし、あなたが以前に本作品に関するこの利用許諾の条項に違反したことがないか、あるいは、以前にこの利用許諾の条項に違反したがこの利用許諾に基づく権利を行使するために許諾者から明示的な許可を得ている場合に限る。 + + a. 本作品に含まれる著作物(以下「本著作物」という。)を複製すること(編集著作物等に組み込み複製することを含む。以下、同じ。)、 + b. 本著作物を翻案して二次的著作物を創作し、複製すること、 + c. 本著作物又はその二次的著作物の複製物を頒布すること(譲渡または貸与により公衆に提供することを含む。以下同じ。)、上演すること、演奏すること、上映すること、公衆送信を行うこと(送信可能化を含む。以下、同じ。)、公に口述すること、公に展示すること、 + d. 本作品に含まれる実演を、録音・録画すること(録音・録画物を増製することを含む)、録音・録画物により頒布すること、公衆送信を行うこと、 + e. 本作品に含まれるレコードを、複製すること、頒布すること、公衆送信を行うこと、 + f. 本作品に含まれる、放送に係る音又は影像を、複製すること、その放送を受信して再放送すること又は有線放送すること、その放送又はこれを受信して行う有線放送を受信して送信可能化すること、そのテレビジョン放送又はこれを受信して行う有線放送を受信して、影像を拡大する特別の装置を用いて公に伝達すること、 + g. 本作品に含まれる、有線放送に係る音又は影像を、複製すること、その有線放送を受信して放送し、又は再有線放送すること、その有線放送を受信して送信可能化すること、その有線テレビジョン放送を受信して、影像を拡大する特別の装置を用いて公に伝達すること、 + + 上記に定められた本作品又はその二次的著作物の利用は、現在及び将来のすべての媒体・形式で行うことができる。あなたは、他の媒体及び形式で本作品又はその二次的著作物を利用するのに技術的に必要な変更を行うことができる。許諾者は本作品又はその二次的著作物に関して、この利用許諾に従った利用については自己が有する著作者人格権及び実演家人格権を行使しない。許諾者によって明示的に付与されない全ての権利は、留保される。 + + 第4条 受領者へのライセンス提供 + + あなたが本作品をこの利用許諾に基づいて利用する度毎に、許諾者は本作品又は本作品の二次的著作物の受領者に対して、直接、この利用許諾の下であなたに許可された利用許諾と同じ条件の本作品のライセンスを提供する。 + + 第5条 制限 + + 上記第3条及び第4条により付与されたライセンスは、以下の制限に明示的に従い、制約される。 + + a. あなたは、この利用許諾の条項に基づいてのみ、本作品を利用することができる。 + b. あなたは、この利用許諾又はこの利用許諾と同一のライセンス要素を含むほかのクリエイティブ・コモンズ・ライセンス(例えば、この利用許諾の新しいバージョン、又はこの利用許諾と同一のライセンス要素の他国籍ライセンスなど)に基づいてのみ、本作品の二次的著作物を利用することができる。 + c. あなたは、本作品を利用するときは、この利用許諾の写し又はURI(Uniform Resource Identifier)を本作品の複製物に添付又は表示しなければならない。 + d. あなたは、本作品の二次的著作物を利用するときは、この利用許諾又はこの利用許諾と同一のライセンス要素を含むほかのクリエイティブ・コモンズ・ライセンスの写し又はURIを本作品の二次的著作物の複製物に添付または表示しなければならない。 + e. あなたは、この利用許諾条項及びこの利用許諾によって付与される利用許諾受領者の権利の行使を変更又は制限するような、本作品又はその二次的著作物に係る条件を提案したり課したりしてはならない。 + f. あなたは、本作品を再利用許諾することができない。 + g. あなたは、本作品又はその二次的著作物の利用にあたって、この利用許諾及びその免責条項に関する注意書きの内容を変更せず、見やすい態様でそのまま掲載しなければならない。 + h. あなたは、この利用許諾条項と矛盾する方法で本著作物へのアクセス又は使用をコントロールするような技術的保護手段を用いて、本作品又はその二次的著作物を利用してはならない。 + i. 本条の制限は、本作品又はその二次的著作物が編集著作物等に組み込まれた場合にも、その組み込まれた作品に関しては適用される。しかし、本作品又はその二次的著作物が組み込まれた編集著作物等そのものは、この利用許諾の条項に従う必要はない。 + j. あなたは、本作品、その二次的著作物又は本作品を組み込んだ編集著作物等を利用する場合には、(1)本作品に係るすべての著作権表示をそのままにしておかなければならず、(2)原著作者及び実演家のクレジットを、合理的な方式で、(もし示されていれば原著作者及び実演家の名前又は変名を伝えることにより、)表示しなければならず、(3)本作品のタイトルが示されている場合には、そのタイトルを表示しなければならず、(4)許諾者が本作品に添付するよう指定したURIがあれば、合理的に実行可能な範囲で、そのURIを表示しなければならず(ただし、そのURIが本作品の著作権表示またはライセンス情報を参照するものでないときはこの限りでない。)(5)二次的著作物の場合には、当該二次的著作物中の原著作物の利用を示すクレジットを表示しなければならない。これらのクレジットは、合理的であればどんな方法でも行うことができる。しかしながら、二次的著作物又は編集著作物等の場合には、少なくとも他の同様の著作者のクレジットが表示される箇所で当該クレジットを表示し、少なくとも他の同様の著作者のクレジットと同程度に目立つ方法であることを要する。 + k. もし、あなたが、本作品の二次的著作物、又は本作品もしくはその二次的著作物を組み込んだ編集著作物等を創作した場合、あなたは、許諾者からの通知があれば、実行可能な範囲で、要求に応じて、二次的著作物又は編集著作物等から、許諾者又は原著作者への言及をすべて除去しなければならない。 + + 第6条 責任制限 + + この利用許諾の両当事者が書面にて別途合意しない限り、許諾者は本作品を現状のまま提供するものとし、明示・黙示を問わず、本作品に関していかなる保証(特定の利用目的への適合性、第三者の権利の非侵害、欠陥の不存在を含むが、これに限られない。)もしない。 + + この利用許諾又はこの利用許諾に基づく本作品の利用から発生する、いかなる損害(許諾者が、本作品にかかる著作権、著作隣接権、著作者人格権、実演家人格権、商標権、パブリシティ権、不正競争防止法その他関連法規上保護される利益を有する者からの許諾を得ることなく本作品の利用許諾を行ったことにより発生する損害、プライバシー侵害又は名誉毀損から発生する損害等の通常損害、及び特別損害を含むが、これに限らない。)についても、許諾者に故意又は重大な過失がある場合を除き、許諾者がそのような損害発生の可能性を知らされたか否かを問わず、許諾者は、あなたに対し、これを賠償する責任を負わない。 + + 第7条 終了 + + a. この利用許諾は、あなたがこの利用許諾の条項に違反すると自動的に終了する。しかし、本作品、その二次的著作物又は編集著作物等をあなたからこの利用許諾に基づき受領した第三者に対しては、その受領者がこの利用許諾を遵守している限り、この利用許諾は終了しない。第1条、第2条、第4条から第9条は、この利用許諾が終了してもなお有効に存続する。 + b. 上記aに定める場合を除き、この利用許諾に基づくライセンスは、本作品に含まれる著作権法上の権利が存続するかぎり継続する。 + c. 許諾者は、上記aおよびbに関わらず、いつでも、本作品をこの利用許諾に基づいて頒布することを将来に向かって中止することができる。ただし、許諾者がこの利用許諾に基づく頒布を将来に向かって中止した場合でも、この利用許諾に基づいてすでに本作品を受領した利用者に対しては、この利用許諾に基づいて過去及び将来に与えられるいかなるライセンスも終了することはない。また、上記によって終了しない限り、この利用許諾は、全面的に有効なものとして継続する。 + + 第8条 その他 + + a. この利用許諾のいずれかの規定が、適用法の下で無効及び/又は執行不能の場合であっても、この利用許諾の他の条項の有効性及び執行可能性には影響しない。 + b. この利用許諾の条項の全部又は一部の放棄又はその違反に関する承諾は、これが書面にされ、当該放棄又は承諾に責任を負う当事者による署名又は記名押印がなされない限り、行うことができない。 + c. この利用許諾は、当事者が本作品に関して行った最終かつ唯一の合意の内容である。この利用許諾は、許諾者とあなたとの相互の書面による合意なく修正されない。 + d. この利用許諾は日本語により提供される。この利用許諾の英語その他の言語への翻訳は参照のためのものに過ぎず、この利用許諾の日本語版と翻訳との間に何らかの齟齬がある場合には日本語版が優先する。 + + 第9条 準拠法 + + この利用許諾は、日本法に基づき解釈される。 + + 本作品がクリエイティブ・コモンズ・ライセンスに基づき利用許諾されたことを公衆に示すという限定された目的の場合を除き、許諾者も被許諾者もクリエイティブ・コモンズの事前の書面による同意なしに「クリエイティブ・コモンズ」の商標若しくは関連商標又はクリエイティブ・コモンズのロゴを使用しないものとします。使用が許可された場合はクリエイティブ・コモンズおよびクリエイティブ・コモンズ・ジャパンのウェブサイト上に公表される、又はその他随時要求に従い利用可能となる、クリエイティブ・コモンズの当該時点における商標使用指針を遵守するものとします。クリエイティブ・コモンズは https://creativecommons.org/から、クリエイティブ・コモンズ・ジャパンはhttp://www.creativecommons.jp/から連絡することができます。 json: cc-by-sa-2.1-jp.json - yml: cc-by-sa-2.1-jp.yml + yaml: cc-by-sa-2.1-jp.yml html: cc-by-sa-2.1-jp.html - text: cc-by-sa-2.1-jp.LICENSE + license: cc-by-sa-2.1-jp.LICENSE - license_key: cc-by-sa-2.5 + category: Copyleft Limited spdx_license_key: CC-BY-SA-2.5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Attribution-ShareAlike 2.5 + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. + "Licensor" means the individual or entity that offers the Work under the terms of this License. + "Original Author" means the individual or entity who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike. + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to create and reproduce Derivative Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works. + For the avoidance of doubt, where the work is a musical composition: + + Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work. + Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights society or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions). + Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions). + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. + + 4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(c), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by clause 4(c), as requested. + You may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, a later version of this License with the same License Elements as this License, or a Creative Commons iCommons license that contains the same License Elements as this License (e.g. Attribution-ShareAlike 2.5 Japan). You must include a copy of, or the Uniform Resource Identifier for, this License or other license specified in the previous sentence with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License. + If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE MATERIALS, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 8. Miscellaneous + + Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. + + Creative Commons may be contacted at http://creativecommons.org/. json: cc-by-sa-2.5.json - yml: cc-by-sa-2.5.yml + yaml: cc-by-sa-2.5.yml html: cc-by-sa-2.5.html - text: cc-by-sa-2.5.LICENSE + license: cc-by-sa-2.5.LICENSE - license_key: cc-by-sa-3.0 + category: Copyleft Limited spdx_license_key: CC-BY-SA-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Creative Commons Legal Code + + Attribution-ShareAlike 3.0 Unported + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR + DAMAGES RESULTING FROM ITS USE. + + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE + COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY + COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS + AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE + TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY + BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS + CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND + CONDITIONS. + + 1. Definitions + + a. "Adaptation" means a work based upon the Work, or upon the Work and + other pre-existing works, such as a translation, adaptation, + derivative work, arrangement of music or other alterations of a + literary or artistic work, or phonogram or performance and includes + cinematographic adaptations or any other form in which the Work may be + recast, transformed, or adapted including in any form recognizably + derived from the original, except that a work that constitutes a + Collection will not be considered an Adaptation for the purpose of + this License. For the avoidance of doubt, where the Work is a musical + work, performance or phonogram, the synchronization of the Work in + timed-relation with a moving image ("synching") will be considered an + Adaptation for the purpose of this License. + b. "Collection" means a collection of literary or artistic works, such as + encyclopedias and anthologies, or performances, phonograms or + broadcasts, or other works or subject matter other than works listed + in Section 1(f) below, which, by reason of the selection and + arrangement of their contents, constitute intellectual creations, in + which the Work is included in its entirety in unmodified form along + with one or more other contributions, each constituting separate and + independent works in themselves, which together are assembled into a + collective whole. A work that constitutes a Collection will not be + considered an Adaptation (as defined below) for the purposes of this + License. + c. "Creative Commons Compatible License" means a license that is listed + at https://creativecommons.org/compatiblelicenses that has been + approved by Creative Commons as being essentially equivalent to this + License, including, at a minimum, because that license: (i) contains + terms that have the same purpose, meaning and effect as the License + Elements of this License; and, (ii) explicitly permits the relicensing + of adaptations of works made available under that license under this + License or a Creative Commons jurisdiction license with the same + License Elements as this License. + d. "Distribute" means to make available to the public the original and + copies of the Work or Adaptation, as appropriate, through sale or + other transfer of ownership. + e. "License Elements" means the following high-level license attributes + as selected by Licensor and indicated in the title of this License: + Attribution, ShareAlike. + f. "Licensor" means the individual, individuals, entity or entities that + offer(s) the Work under the terms of this License. + g. "Original Author" means, in the case of a literary or artistic work, + the individual, individuals, entity or entities who created the Work + or if no individual or entity can be identified, the publisher; and in + addition (i) in the case of a performance the actors, singers, + musicians, dancers, and other persons who act, sing, deliver, declaim, + play in, interpret or otherwise perform literary or artistic works or + expressions of folklore; (ii) in the case of a phonogram the producer + being the person or legal entity who first fixes the sounds of a + performance or other sounds; and, (iii) in the case of broadcasts, the + organization that transmits the broadcast. + h. "Work" means the literary and/or artistic work offered under the terms + of this License including without limitation any production in the + literary, scientific and artistic domain, whatever may be the mode or + form of its expression including digital form, such as a book, + pamphlet and other writing; a lecture, address, sermon or other work + of the same nature; a dramatic or dramatico-musical work; a + choreographic work or entertainment in dumb show; a musical + composition with or without words; a cinematographic work to which are + assimilated works expressed by a process analogous to cinematography; + a work of drawing, painting, architecture, sculpture, engraving or + lithography; a photographic work to which are assimilated works + expressed by a process analogous to photography; a work of applied + art; an illustration, map, plan, sketch or three-dimensional work + relative to geography, topography, architecture or science; a + performance; a broadcast; a phonogram; a compilation of data to the + extent it is protected as a copyrightable work; or a work performed by + a variety or circus performer to the extent it is not otherwise + considered a literary or artistic work. + i. "You" means an individual or entity exercising rights under this + License who has not previously violated the terms of this License with + respect to the Work, or who has received express permission from the + Licensor to exercise rights under this License despite a previous + violation. + j. "Publicly Perform" means to perform public recitations of the Work and + to communicate to the public those public recitations, by any means or + process, including by wire or wireless means or public digital + performances; to make available to the public Works in such a way that + members of the public may access these Works from a place and at a + place individually chosen by them; to perform the Work to the public + by any means or process and the communication to the public of the + performances of the Work, including by public digital performance; to + broadcast and rebroadcast the Work by any means including signs, + sounds or images. + k. "Reproduce" means to make copies of the Work by any means including + without limitation by sound or visual recordings and the right of + fixation and reproducing fixations of the Work, including storage of a + protected performance or phonogram in digital form or other electronic + medium. + + 2. Fair Dealing Rights. Nothing in this License is intended to reduce, + limit, or restrict any uses free from copyright or rights arising from + limitations or exceptions that are provided for in connection with the + copyright protection under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, + Licensor hereby grants You a worldwide, royalty-free, non-exclusive, + perpetual (for the duration of the applicable copyright) license to + exercise the rights in the Work as stated below: + + a. to Reproduce the Work, to incorporate the Work into one or more + Collections, and to Reproduce the Work as incorporated in the + Collections; + b. to create and Reproduce Adaptations provided that any such Adaptation, + including any translation in any medium, takes reasonable steps to + clearly label, demarcate or otherwise identify that changes were made + to the original Work. For example, a translation could be marked "The + original work was translated from English to Spanish," or a + modification could indicate "The original work has been modified."; + c. to Distribute and Publicly Perform the Work including as incorporated + in Collections; and, + d. to Distribute and Publicly Perform Adaptations. + e. For the avoidance of doubt: + + i. Non-waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme cannot be waived, the Licensor + reserves the exclusive right to collect such royalties for any + exercise by You of the rights granted under this License; + ii. Waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme can be waived, the Licensor waives the + exclusive right to collect such royalties for any exercise by You + of the rights granted under this License; and, + iii. Voluntary License Schemes. The Licensor waives the right to + collect royalties, whether individually or, in the event that the + Licensor is a member of a collecting society that administers + voluntary licensing schemes, via that society, from any exercise + by You of the rights granted under this License. + + The above rights may be exercised in all media and formats whether now + known or hereafter devised. The above rights include the right to make + such modifications as are technically necessary to exercise the rights in + other media and formats. Subject to Section 8(f), all rights not expressly + granted by Licensor are hereby reserved. + + 4. Restrictions. The license granted in Section 3 above is expressly made + subject to and limited by the following restrictions: + + a. You may Distribute or Publicly Perform the Work only under the terms + of this License. You must include a copy of, or the Uniform Resource + Identifier (URI) for, this License with every copy of the Work You + Distribute or Publicly Perform. You may not offer or impose any terms + on the Work that restrict the terms of this License or the ability of + the recipient of the Work to exercise the rights granted to that + recipient under the terms of the License. You may not sublicense the + Work. You must keep intact all notices that refer to this License and + to the disclaimer of warranties with every copy of the Work You + Distribute or Publicly Perform. When You Distribute or Publicly + Perform the Work, You may not impose any effective technological + measures on the Work that restrict the ability of a recipient of the + Work from You to exercise the rights granted to that recipient under + the terms of the License. This Section 4(a) applies to the Work as + incorporated in a Collection, but this does not require the Collection + apart from the Work itself to be made subject to the terms of this + License. If You create a Collection, upon notice from any Licensor You + must, to the extent practicable, remove from the Collection any credit + as required by Section 4(c), as requested. If You create an + Adaptation, upon notice from any Licensor You must, to the extent + practicable, remove from the Adaptation any credit as required by + Section 4(c), as requested. + b. You may Distribute or Publicly Perform an Adaptation only under the + terms of: (i) this License; (ii) a later version of this License with + the same License Elements as this License; (iii) a Creative Commons + jurisdiction license (either this or a later license version) that + contains the same License Elements as this License (e.g., + Attribution-ShareAlike 3.0 US)); (iv) a Creative Commons Compatible + License. If you license the Adaptation under one of the licenses + mentioned in (iv), you must comply with the terms of that license. If + you license the Adaptation under the terms of any of the licenses + mentioned in (i), (ii) or (iii) (the "Applicable License"), you must + comply with the terms of the Applicable License generally and the + following provisions: (I) You must include a copy of, or the URI for, + the Applicable License with every copy of each Adaptation You + Distribute or Publicly Perform; (II) You may not offer or impose any + terms on the Adaptation that restrict the terms of the Applicable + License or the ability of the recipient of the Adaptation to exercise + the rights granted to that recipient under the terms of the Applicable + License; (III) You must keep intact all notices that refer to the + Applicable License and to the disclaimer of warranties with every copy + of the Work as included in the Adaptation You Distribute or Publicly + Perform; (IV) when You Distribute or Publicly Perform the Adaptation, + You may not impose any effective technological measures on the + Adaptation that restrict the ability of a recipient of the Adaptation + from You to exercise the rights granted to that recipient under the + terms of the Applicable License. This Section 4(b) applies to the + Adaptation as incorporated in a Collection, but this does not require + the Collection apart from the Adaptation itself to be made subject to + the terms of the Applicable License. + c. If You Distribute, or Publicly Perform the Work or any Adaptations or + Collections, You must, unless a request has been made pursuant to + Section 4(a), keep intact all copyright notices for the Work and + provide, reasonable to the medium or means You are utilizing: (i) the + name of the Original Author (or pseudonym, if applicable) if supplied, + and/or if the Original Author and/or Licensor designate another party + or parties (e.g., a sponsor institute, publishing entity, journal) for + attribution ("Attribution Parties") in Licensor's copyright notice, + terms of service or by other reasonable means, the name of such party + or parties; (ii) the title of the Work if supplied; (iii) to the + extent reasonably practicable, the URI, if any, that Licensor + specifies to be associated with the Work, unless such URI does not + refer to the copyright notice or licensing information for the Work; + and (iv) , consistent with Ssection 3(b), in the case of an + Adaptation, a credit identifying the use of the Work in the Adaptation + (e.g., "French translation of the Work by Original Author," or + "Screenplay based on original Work by Original Author"). The credit + required by this Section 4(c) may be implemented in any reasonable + manner; provided, however, that in the case of a Adaptation or + Collection, at a minimum such credit will appear, if a credit for all + contributing authors of the Adaptation or Collection appears, then as + part of these credits and in a manner at least as prominent as the + credits for the other contributing authors. For the avoidance of + doubt, You may only use the credit required by this Section for the + purpose of attribution in the manner set out above and, by exercising + Your rights under this License, You may not implicitly or explicitly + assert or imply any connection with, sponsorship or endorsement by the + Original Author, Licensor and/or Attribution Parties, as appropriate, + of You or Your use of the Work, without the separate, express prior + written permission of the Original Author, Licensor and/or Attribution + Parties. + d. Except as otherwise agreed in writing by the Licensor or as may be + otherwise permitted by applicable law, if You Reproduce, Distribute or + Publicly Perform the Work either by itself or as part of any + Adaptations or Collections, You must not distort, mutilate, modify or + take other derogatory action in relation to the Work which would be + prejudicial to the Original Author's honor or reputation. Licensor + agrees that in those jurisdictions (e.g. Japan), in which any exercise + of the right granted in Section 3(b) of this License (the right to + make Adaptations) would be deemed to be a distortion, mutilation, + modification or other derogatory action prejudicial to the Original + Author's honor and reputation, the Licensor will waive or not assert, + as appropriate, this Section, to the fullest extent permitted by the + applicable national law, to enable You to reasonably exercise Your + right under Section 3(b) of this License (right to make Adaptations) + but not otherwise. + + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR + OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY + KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, + INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, + FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF + LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, + WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION + OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE + LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR + ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES + ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS + BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + a. This License and the rights granted hereunder will terminate + automatically upon any breach by You of the terms of this License. + Individuals or entities who have received Adaptations or Collections + from You under this License, however, will not have their licenses + terminated provided such individuals or entities remain in full + compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will + survive any termination of this License. + b. Subject to the above terms and conditions, the license granted here is + perpetual (for the duration of the applicable copyright in the Work). + Notwithstanding the above, Licensor reserves the right to release the + Work under different license terms or to stop distributing the Work at + any time; provided, however that any such election will not serve to + withdraw this License (or any other license that has been, or is + required to be, granted under the terms of this License), and this + License will continue in full force and effect unless terminated as + stated above. + + 8. Miscellaneous + + a. Each time You Distribute or Publicly Perform the Work or a Collection, + the Licensor offers to the recipient a license to the Work on the same + terms and conditions as the license granted to You under this License. + b. Each time You Distribute or Publicly Perform an Adaptation, Licensor + offers to the recipient a license to the original Work on the same + terms and conditions as the license granted to You under this License. + c. If any provision of this License is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability of + the remainder of the terms of this License, and without further action + by the parties to this agreement, such provision shall be reformed to + the minimum extent necessary to make such provision valid and + enforceable. + d. No term or provision of this License shall be deemed waived and no + breach consented to unless such waiver or consent shall be in writing + and signed by the party to be charged with such waiver or consent. + e. This License constitutes the entire agreement between the parties with + respect to the Work licensed here. There are no understandings, + agreements or representations with respect to the Work not specified + here. Licensor shall not be bound by any additional provisions that + may appear in any communication from You. This License may not be + modified without the mutual written agreement of the Licensor and You. + f. The rights granted under, and the subject matter referenced, in this + License were drafted utilizing the terminology of the Berne Convention + for the Protection of Literary and Artistic Works (as amended on + September 28, 1979), the Rome Convention of 1961, the WIPO Copyright + Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 + and the Universal Copyright Convention (as revised on July 24, 1971). + These rights and subject matter take effect in the relevant + jurisdiction in which the License terms are sought to be enforced + according to the corresponding provisions of the implementation of + those treaty provisions in the applicable national law. If the + standard suite of rights granted under applicable copyright law + includes additional rights not granted under this License, such + additional rights are deemed to be included in the License; this + License is not intended to restrict the license of any rights under + applicable law. + + + Creative Commons Notice + + Creative Commons is not a party to this License, and makes no warranty + whatsoever in connection with the Work. Creative Commons will not be + liable to You or any party on any legal theory for any damages + whatsoever, including without limitation any general, special, + incidental or consequential damages arising in connection to this + license. Notwithstanding the foregoing two (2) sentences, if Creative + Commons has expressly identified itself as the Licensor hereunder, it + shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the + Work is licensed under the CCPL, Creative Commons does not authorize + the use by either party of the trademark "Creative Commons" or any + related trademark or logo of Creative Commons without the prior + written consent of Creative Commons. Any permitted use will be in + compliance with Creative Commons' then-current trademark usage + guidelines, as may be published on its website or otherwise made + available upon request from time to time. For the avoidance of doubt, + this trademark restriction does not form part of the License. + + Creative Commons may be contacted at https://creativecommons.org/. json: cc-by-sa-3.0.json - yml: cc-by-sa-3.0.yml + yaml: cc-by-sa-3.0.yml html: cc-by-sa-3.0.html - text: cc-by-sa-3.0.LICENSE + license: cc-by-sa-3.0.LICENSE - license_key: cc-by-sa-3.0-at + category: Copyleft Limited spdx_license_key: CC-BY-SA-3.0-AT other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. + + Lizenz + + DER GEGENSTAND DIESER LIZENZ (WIE UNTER "SCHUTZGEGENSTAND" DEFINIERT) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE COMMONS PUBLIC LICENSE ("CCPL", "LIZENZ" ODER "LIZENZVERTRAG") ZUR VERFÜGUNG GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER ANDERE GESETZE GESCHÜTZT. JEDE FORM DER NUTZUNG DES SCHUTZGEGENSTANDES, DIE NICHT AUFGRUND DIESER LIZENZ ODER DURCH GESETZE GESTATTET IST, IST UNZULÄSSIG. + + DURCH DIE AUSÜBUNG EINES DURCH DIESE LIZENZ GEWÄHRTEN RECHTS AN DEM SCHUTZGEGENSTAND ERKLÄREN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH EINVERSTANDEN. SOWEIT DIESE LIZENZ ALS LIZENZVERTRAG ANZUSEHEN IST, GEWÄHRT IHNEN DER LIZENZGEBER DIE IN DER LIZENZ GENANNTEN RECHTE UNENTGELTLICH UND IM AUSTAUSCH DAFÜR, DASS SIE DAS GEBUNDENSEIN AN DIE LIZENZBEDINGUNGEN AKZEPTIEREN. + + 1. Definitionen + + a. Der Begriff "Bearbeitung" im Sinne dieser Lizenz bezeichnet das Ergebnis jeglicher Art von Veränderung des Schutzgegenstandes, solange dieses erkennbar vom Schutzgegenstand abgeleitet wurde. Dies kann insbesondere auch eine Umgestaltung, Änderung, Anpassung, Übersetzung oder Heranziehung des Schutzgegenstandes zur Vertonung von Laufbildern sein. Nicht als Bearbeitung des Schutzgegenstandes gelten seine Aufnahme in eine Sammlung oder ein Sammelwerk und die freie Nutzung des Schutzgegenstandes. + + b. Der Begriff "Sammelwerk" im Sinne dieser Lizenz meint eine Zusammenstellung von literarischen, künstlerischen oder wissenschaftlichen Inhalten zu einem einheitlichen Ganzen, sofern diese Zusammenstellung aufgrund von Auswahl und Anordnung der darin enthaltenen selbständigen Elemente eine eigentümliche geistige Schöpfung darstellt, unabhängig davon, ob die Elemente systematisch oder methodisch angelegt und dadurch einzeln zugänglich sind oder nicht. + + c. "Verbreiten" im Sinne dieser Lizenz bedeutet, den Schutzgegenstand oder Bearbeitungen im Original oder in Form von Vervielfältigungsstücken, mithin in körperlich fixierter Form der Öffentlichkeit zugänglich zu machen oder in Verkehr zu bringen. + + d. Unter "Lizenzelementen" werden im Sinne dieser Lizenz die folgenden übergeordneten Lizenzcharakteristika verstanden, die vom Lizenzgeber ausgewählt wurden und in der Bezeichnung der Lizenz zum Ausdruck kommen: "Namensnennung", "Weitergabe unter gleichen Bedingungen". + + e. Der "Lizenzgeber" im Sinne dieser Lizenz ist diejenige natürliche oder juristische Person oder Gruppe, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet und insoweit als Rechteinhaberin auftritt. + + f. "Rechteinhaber" im Sinne dieser Lizenz ist der Urheber des Schutzgegenstandes oder jede andere natürliche oder juristische Person, die am Schutzgegenstand ein Immaterialgüterrecht erlangt hat, welches die in Abschnitt 3 genannten Handlungen erfasst und eine Erteilung, Übertragung oder Einräumung von Nutzungsbewilligungen bzw Nutzungsrechten an Dritte erlaubt. + + g. Der Begriff "Schutzgegenstand" bezeichnet in dieser Lizenz den literarischen, künstlerischen oder wissenschaftlichen Inhalt, der unter den Bedingungen dieser Lizenz angeboten wird. Das kann insbesondere eine eigentümliche geistige Schöpfung jeglicher Art oder ein Werk der kleinen Münze, ein nachgelassenes Werk oder auch ein Lichtbild oder anderes Objekt eines verwandten Schutzrechts sein, unabhängig von der Art seiner Fixierung und unabhängig davon, auf welche Weise jeweils eine Wahrnehmung erfolgen kann, gleichviel ob in analoger oder digitaler Form. Soweit Datenbanken oder Zusammenstellungen von Daten einen immaterialgüterrechtlichen Schutz eigener Art genießen, unterfallen auch sie dem Begriff "Schutzgegenstand" im Sinne dieser Lizenz. + + h. Mit "Sie" bzw. "Ihnen" ist die natürliche oder juristische Person gemeint, die in dieser Lizenz im Abschnitt 3 genannte Nutzungen des Schutzgegenstandes vornimmt und zuvor in Hinblick auf den Schutzgegenstand nicht gegen Bedingungen dieser Lizenz verstoßen oder aber die ausdrückliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese Lizenz gewährte Nutzungsbewilligung trotz eines vorherigen Verstoßes auszuüben. + + i. Unter "Öffentlich Wiedergeben" im Sinne dieser Lizenz sind Wahrnehmbarmachungen des Schutzgegenstandes in unkörperlicher Form zu verstehen, die für eine Mehrzahl von Mitgliedern der Öffentlichkeit bestimmt sind und mittels öffentlicher Wiedergabe in Form von Vortrag, Aufführung, Vorführung, Darbietung, Sendung, Weitersendung oder zeit- und ortsunabhängiger Zurverfügungstellung erfolgen, unabhängig von den zum Einsatz kommenden Techniken und Verfahren, einschließlich drahtgebundener oder drahtloser Mittel und Einstellen in das Internet. + + j. "Vervielfältigen" im Sinne dieser Lizenz bedeutet, gleichviel in welchem Verfahren, auf welchem Träger, in welcher Menge und ob vorübergehend oder dauerhaft, Vervielfältigungsstücke des Schutzgegenstandes herzustellen, insbesondere durch Ton- oder Bildaufzeichnungen, und umfasst auch das erstmalige Festhalten des Schutzgegenstandes oder dessen Wahrnehmbarmachung auf Mitteln der wiederholbaren Wiedergabe sowie das Herstellen von Vervielfältigungsstücken dieser Festhaltung, sowie die Speicherung einer geschützten Darbietung oder eines Bild- und/oder Schallträgers in digitaler Form oder auf einem anderen elektronischen Medium. + + k. "Mit Creative Commons kompatible Lizenz" bezeichnet eine Lizenz, die unter https://creativecommons.org/compatiblelicenses aufgelistet ist und die durch Creative Commons als grundsätzlich zur vorliegenden Lizenz äquivalent akzeptiert wurde, da zumindest folgende Voraussetzungen erfüllt sind: + + Diese mit Creative Commons kompatible Lizenz + + i. enthält Bestimmungen, welche die gleichen Ziele verfolgen, die gleiche Bedeutung haben und die gleichen Wirkungen erzeugen wie die Lizenzelemente der vorliegenden Lizenz; und + + ii. erlaubt ausdrücklich das Lizenzieren von ihr unterstellten Abwandlungen unter vorliegender Lizenz, unter einer anderen rechtsordnungsspezifisch angepassten Creative-Commons-Lizenz mit denselben Lizenzelementen wie vorliegende Lizenz aufweist oder unter der entsprechenden Creative-Commons-Unported-Lizenz. + + 2. Beschränkungen der Verwertungsrechte + + Diese Lizenz ist in keiner Weise darauf gerichtet, Befugnisse zur Nutzung des Schutzgegenstandes zu vermindern, zu beschränken oder zu vereiteln, die sich aus den Beschränkungen der Verwertungsrechte, anderen Beschränkungen der Ausschließlichkeitsrechte des Rechtsinhabers oder anderen entsprechenden Rechtsnormen oder sich aus dem Fehlen eines immaterialgüterrechtlichen Schutzes ergeben. + + 3. Lizenzierung + + Unter den Bedingungen dieser Lizenz erteilt Ihnen der Lizenzgeber - unbeschadet unverzichtbarer Rechte und vorbehaltlich des Abschnitts 3.e) - die vergütungsfreie, räumlich und zeitlich (für die Dauer des Urheberrechts oder verwandten Schutzrechts am Schutzgegenstand) unbeschränkte Nutzungsbewilligung, den Schutzgegenstand in der folgenden Art und Weise zu nutzen: + + a. Den Schutzgegenstand in beliebiger Form und Menge zu vervielfältigen, ihn in Sammelwerke zu integrieren und ihn als Teil solcher Sammelwerke zu vervielfältigen; + + b. Den Schutzgegenstand zu bearbeiten, einschließlich Übersetzungen unter Nutzung jedweder Medien anzufertigen, sofern deutlich erkennbar gemacht wird, dass es sich um eine Bearbeitung handelt; + + c. Den Schutzgegenstand, allein oder in Sammelwerke aufgenommen, öffentlich wiederzugeben und zu verbreiten; und + + d. Bearbeitungen des Schutzgegenstandes zu veröffentlichen, öffentlich wiederzugeben und zu verbreiten. + + e. Bezüglich Vergütung für die Nutzung des Schutzgegenstandes gilt Folgendes: + + i. Unverzichtbare gesetzliche Vergütungsansprüche: Soweit unverzichtbare Vergütungsansprüche im Gegenzug für gesetzliche Lizenzen vorgesehen oder Pauschalabgabensysteme (zum Beispiel für Leermedien) vorhanden sind, behält sich der Lizenzgeber das ausschließliche Recht vor, die entsprechenden Vergütungsansprüche für jede Ausübung eines Rechts aus dieser Lizenz durch Sie geltend zu machen. + + ii. Vergütung bei Zwangslizenzen: Soweit Zwangslizenzen außerhalb dieser Lizenz vorgesehen sind und zustande kommen, verzichtet der Lizenzgeber für alle Fälle einer lizenzgerechten Nutzung des Schutzgegenstandes durch Sie auf jegliche Vergütung. + + iii. Vergütung in sonstigen Fällen: Bezüglich lizenzgerechter Nutzung des Schutzgegenstandes durch Sie, die nicht unter die beiden vorherigen Abschnitte (i) und (ii) fällt, verzichtet der Lizenzgeber auf jegliche Vergütung, unabhängig davon, ob eine Geltendmachung der Vergütungsansprüche durch ihn selbst oder nur durch eine Verwertungsgesellschaft möglich wäre. + + Die vorgenannte Nutzungsbewilligung wird für alle bekannten sowie alle noch nicht bekannten Nutzungsarten eingeräumt. Sie beinhaltet auch das Recht, solche Änderungen am Schutzgegenstand vorzunehmen, die für bestimmte nach dieser Lizenz zulässige Nutzungen technisch erforderlich sind. Alle sonstigen Rechte, die über diesen Abschnitt hinaus nicht ausdrücklich vom Lizenzgeber eingeräumt werden, bleiben diesem allein vorbehalten. Soweit Datenbanken oder Zusammenstellungen von Daten Schutzgegenstand dieser Lizenz oder Teil dessen sind und einen immaterialgüterrechtlichen Schutz eigener Art genießen, verzichtet der Lizenzgeber auf die Geltendmachung sämtlicher daraus resultierender Rechte. + + 4. Bedingungen + + Die Erteilung der Nutzungsbewilligung gemäß Abschnitt 3 dieser Lizenz erfolgt ausdrücklich nur unter den folgenden Bedingungen: + + a. Sie dürfen den Schutzgegenstand ausschließlich unter den Bedingungen dieser Lizenz verbreiten oder öffentlich wiedergeben. Sie müssen dabei stets eine Kopie dieser Lizenz oder deren vollständige Internetadresse in Form des Uniform-Resource-Identifier (URI) beifügen. Sie dürfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen dieser Lizenz oder die durch diese Lizenz gewährten Rechte beschränken. Sie dürfen den Schutzgegenstand nicht unterlizenzieren. Bei jeder Kopie des Schutzgegenstandes, die Sie verbreiten oder öffentlich wiedergeben, müssen Sie alle Hinweise unverändert lassen, die auf diese Lizenz und den Haftungsausschluss hinweisen. Wenn Sie den Schutzgegenstand verbreiten oder öffentlich wiedergeben, dürfen Sie (in Bezug auf den Schutzgegenstand) keine technischen Maßnahmen ergreifen, die den Nutzer des Schutzgegenstandes in der Ausübung der ihm durch diese Lizenz gewährten Rechte behindern können. Dasselbe gilt auch für den Fall, dass der Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt dieser Lizenz unterstellt werden muss. Sofern Sie ein Sammelwerk erstellen, müssen Sie - soweit dies praktikabel ist - auf die Mitteilung eines Lizenzgebers hin aus dem Sammelwerk die in Abschnitt 4.c) aufgezählten Hinweise entfernen. Wenn Sie eine Bearbeitung vornehmen, müssen Sie - soweit dies praktikabel ist - auf die Mitteilung eines Lizenzgebers hin von der Bearbeitung die in Abschnitt 4.c) aufgezählten Hinweise entfernen. + + b. Sie dürfen eine Bearbeitung ausschließlich unter den Bedingungen + + i. dieser Lizenz, + + ii. einer späteren Version dieser Lizenz mit denselben Lizenzelementen, + + iii. einer rechtsordnungsspezifischen Creative-Commons-Lizenz mit denselben Lizenzelementen ab Version 3.0 aufwärts (z.B. Namensnennung - Weitergabe unter gleichen Bedingungen 3.0 US), + + iv. der Creative-Commons-Unported-Lizenz mit denselben Lizenzelementen ab Version 3.0 aufwärts, oder + + v. einer mit Creative Commons kompatiblen Lizenz + + verbreiten oder öffentlich wiedergeben. + + Falls Sie die Bearbeitung gemäß Abschnitt b)(v) unter einer mit Creative Commons kompatiblen Lizenz lizenzieren, müssen Sie deren Lizenzbestimmungen Folge leisten. + + Falls Sie die Bearbeitung unter einer der unter b)(i)-(iv) genannten Lizenzen ("Verwendbare Lizenzen") lizenzieren, müssen Sie deren Lizenzbestimmungen sowie folgenden Bestimmungen Folge leisten: Sie müssen stets eine Kopie der verwendbaren Lizenz oder deren vollständige Internetadresse in Form des Uniform-Resource-Identifier (URI) beifügen, wenn Sie die Bearbeitung verbreiten oder öffentlich wiedergeben. Sie dürfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen der verwendbaren Lizenz oder die durch sie gewährten Rechte beschränken. Bei jeder Bearbeitung, die Sie verbreiten oder öffentlich wiedergeben, müssen Sie alle Hinweise auf die verwendbare Lizenz und den Haftungsausschluss unverändert lassen. Wenn Sie die Bearbeitung verbreiten oder öffentlich wiedergeben, dürfen Sie (in Bezug auf die Bearbeitung) keine technischen Maßnahmen ergreifen, die den Nutzer der Bearbeitung in der Ausübung der ihm durch die verwendbare Lizenz gewährten Rechte behindern können. Dieser Abschnitt 4.b) gilt auch für den Fall, dass die Bearbeitung einen Bestandteil eines Sammelwerkes bildet; dies bedeutet jedoch nicht, dass das Sammelwerk insgesamt der verwendbaren Lizenz unterstellt werden muss. + + c. Die Verbreitung und die öffentliche Wiedergabe des Schutzgegenstandes oder auf ihm aufbauender Inhalte oder ihn enthaltender Sammelwerke ist Ihnen nur unter der Bedingung gestattet, dass Sie, vorbehaltlich etwaiger Mitteilungen im Sinne von Abschnitt 4.a), alle dazu gehörenden Rechtevermerke unberührt lassen. Sie sind verpflichtet, die Urheberschaft oder die Rechteinhaberschaft in einer der Nutzung entsprechenden, angemessenen Form anzuerkennen, indem Sie selbst - soweit bekannt - Folgendes angeben: + + i. Den Namen (oder das Pseudonym, falls ein solches verwendet wird) des Rechteinhabers, und/oder falls der Lizenzgeber im Rechtevermerk, in den Nutzungsbedingungen oder auf andere angemessene Weise eine Zuschreibung an Dritte vorgenommen hat (z.B. an eine Stiftung, ein Verlagshaus oder eine Zeitung) ("Zuschreibungsempfänger"), Namen bzw. Bezeichnung dieses oder dieser Dritten; + + ii. den Titel des Inhaltes; + + iii. in einer praktikablen Form den Uniform-Resource-Identifier (URI, z.B. Internetadresse), den der Lizenzgeber zum Schutzgegenstand angegeben hat, es sei denn, dieser URI verweist nicht auf den Rechtevermerk oder die Lizenzinformationen zum Schutzgegenstand; + + iv. und im Falle einer Bearbeitung des Schutzgegenstandes in Übereinstimmung mit Abschnitt 3.b) einen Hinweis darauf, dass es sich um eine Bearbeitung handelt. + + Die nach diesem Abschnitt 4.c) erforderlichen Angaben können in jeder angemessenen Form gemacht werden; im Falle einer Bearbeitung des Schutzgegenstandes oder eines Sammelwerkes müssen diese Angaben das Minimum darstellen und bei gemeinsamer Nennung aller Beitragenden dergestalt erfolgen, dass sie zumindest ebenso hervorgehoben sind wie die Hinweise auf die übrigen Rechteinhaber. Die Angaben nach diesem Abschnitt dürfen Sie ausschließlich zur Angabe der Rechteinhaberschaft in der oben bezeichneten Weise verwenden. Durch die Ausübung Ihrer Rechte aus dieser Lizenz dürfen Sie ohne eine vorherige, separat und schriftlich vorliegende Zustimmung des Urhebers, des Lizenzgebers und/oder des Zuschreibungsempfängers weder implizit noch explizit irgendeine Verbindung mit dem oder eine Unterstützung oder Billigung durch den Lizenzgeber oder den Zuschreibungsempfänger andeuten oder erklären. + + d. Die oben unter 4.a) bis c) genannten Einschränkungen gelten nicht für solche Teile des Schutzgegenstandes, die allein deshalb unter den Schutzgegenstandsbegriff fallen, weil sie als Datenbanken oder Zusammenstellungen von Daten einen immaterialgüterrechtlichen Schutz eigener Art genießen. + + e. (Urheber)Persönlichkeitsrechte bleiben - soweit sie bestehen - von dieser Lizenz unberührt. + + 5. Gewährleistung + + SOFERN KEINE ANDERS LAUTENDE, SCHRIFTLICHE VEREINBARUNG ZWISCHEN DEM LIZENZGEBER UND IHNEN GESCHLOSSEN WURDE UND SOWEIT MÄNGEL NICHT ARGLISTIG VERSCHWIEGEN WURDEN, BIETET DER LIZENZGEBER DEN SCHUTZGEGENSTAND UND DIE ERTEILUNG DER NUTZUNGSBEWILLIGUNG UNTER AUSSCHLUSS JEGLICHER GEWÄHRLEISTUNG AN UND ÜBERNIMMT WEDER AUSDRÜCKLICH NOCH KONKLUDENT GARANTIEN IRGENDEINER ART. DIES UMFASST INSBESONDERE DAS FREISEIN VON SACH- UND RECHTSMÄNGELN, UNABHÄNGIG VON DEREN ERKENNBARKEIT FÜR DEN LIZENZGEBER, DIE VERKEHRSFÄHIGKEIT DES SCHUTZGEGENSTANDES, SEINE VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK SOWIE DIE KORREKTHEIT VON BESCHREIBUNGEN. + + 6. Haftungsbeschränkung + + ÜBER DIE IN ZIFFER 5 GENANNTE GEWÄHRLEISTUNG HINAUS HAFTET DER LIZENZGEBER IHNEN GEGENÜBER FÜR SCHÄDEN JEGLICHER ART NUR BEI GROBER FAHRLÄSSIGKEIT ODER VORSATZ, UND ÜBERNIMMT DARÜBER HINAUS KEINERLEI FREIWILLIGE HAFTUNG FÜR FOLGE- ODER ANDERE SCHÄDEN, AUCH WENN ER ÜBER DIE MÖGLICHKEIT IHRES EINTRITTS UNTERRICHTET WURDE. + + 7. Erlöschen + + a. Diese Lizenz und die durch sie erteilte Nutzungsbewilligung erlöschen mit Wirkung für die Zukunft im Falle eines Verstoßes gegen die Lizenzbedingungen durch Sie, ohne dass es dazu der Kenntnis des Lizenzgebers vom Verstoß oder einer weiteren Handlung einer der Vertragsparteien bedarf. Mit natürlichen oder juristischen Personen, die Bearbeitungen des Schutzgegenstandes oder diesen enthaltende Sammelwerke sowie entsprechende Vervielfältigungsstücke unter den Bedingungen dieser Lizenz von Ihnen erhalten haben, bestehen nachträglich entstandene Lizenzbeziehungen jedoch solange weiter, wie die genannten Personen sich ihrerseits an sämtliche Lizenzbedingungen halten. Darüber hinaus gelten die Ziffern 1, 2, 5, 6, 7, und 8 auch nach einem Erlöschen dieser Lizenz fort. + + b. Vorbehaltlich der oben genannten Bedingungen gilt diese Lizenz unbefristet bis der rechtliche Schutz für den Schutzgegenstand ausläuft. Davon abgesehen behält der Lizenzgeber das Recht, den Schutzgegenstand unter anderen Lizenzbedingungen anzubieten oder die eigene Weitergabe des Schutzgegenstandes jederzeit einzustellen, solange die Ausübung dieses Rechts nicht einer Kündigung oder einem Widerruf dieser Lizenz (oder irgendeiner Weiterlizenzierung, die auf Grundlage dieser Lizenz bereits erfolgt ist bzw. zukünftig noch erfolgen muss) dient und diese Lizenz unter Berücksichtigung der oben zum Erlöschen genannten Bedingungen vollumfänglich wirksam bleibt. + + 8. Sonstige Bestimmungen + + a. Jedes Mal wenn Sie den Schutzgegenstand für sich genommen oder als Teil eines Sammelwerkes verbreiten oder öffentlich wiedergeben, bietet der Lizenzgeber dem Empfänger eine Lizenz zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz. + + b. Jedes Mal wenn Sie eine Bearbeitung des Schutzgegenstandes verbreiten oder öffentlich wiedergeben, bietet der Lizenzgeber dem Empfänger eine Lizenz am ursprünglichen Schutzgegenstand zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz. + + c. Sollte eine Bestimmung dieser Lizenz unwirksam sein, so bleibt davon die Wirksamkeit der Lizenz im Übrigen unberührt. + + d. Keine Bestimmung dieser Lizenz soll als abbedungen und kein Verstoß gegen sie als zulässig gelten, solange die von dem Verzicht oder von dem Verstoß betroffene Seite nicht schriftlich zugestimmt hat. + + e. Diese Lizenz (zusammen mit in ihr ausdrücklich vorgesehenen Erlaubnissen, Mitteilungen und Zustimmungen, soweit diese tatsächlich vorliegen) stellt die vollständige Vereinbarung zwischen dem Lizenzgeber und Ihnen in Bezug auf den Schutzgegenstand dar. Es bestehen keine Abreden, Vereinbarungen oder Erklärungen in Bezug auf den Schutzgegenstand, die in dieser Lizenz nicht genannt sind. Rechtsgeschäftliche Änderungen des Verhältnisses zwischen dem Lizenzgeber und Ihnen sind nur über Modifikationen dieser Lizenz möglich. Der Lizenzgeber ist an etwaige zusätzliche, einseitig durch Sie übermittelte Bestimmungen nicht gebunden. Diese Lizenz kann nur durch schriftliche Vereinbarung zwischen Ihnen und dem Lizenzgeber modifiziert werden. Derlei Modifikationen wirken ausschließlich zwischen dem Lizenzgeber und Ihnen und wirken sich nicht auf die Dritten gemäß 8.a) und b) angebotenen Lizenzen aus. + + f. Sofern zwischen Ihnen und dem Lizenzgeber keine anderweitige Vereinbarung getroffen wurde und soweit Wahlfreiheit besteht, findet auf diesen Lizenzvertrag das Recht der Republik Österreich Anwendung. + + Creative Commons Notice + + Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr oder dergleichen in Bezug auf den Schutzgegenstand. Creative Commons haftet Ihnen oder einer anderen Partei unter keinem rechtlichen Gesichtspunkt für irgendwelche Schäden, die - abstrakt oder konkret, zufällig oder vorhersehbar - im Zusammenhang mit dieser Lizenz entstehen. Unbeschadet der vorangegangen beiden Sätze, hat Creative Commons alle Rechte und Pflichten eines Lizenzgebers, wenn es sich ausdrücklich als Lizenzgeber im Sinne dieser Lizenz bezeichnet. + + Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. + + Creative Commons kann kontaktiert werden über https://creativecommons.org/. json: cc-by-sa-3.0-at.json - yml: cc-by-sa-3.0-at.yml + yaml: cc-by-sa-3.0-at.yml html: cc-by-sa-3.0-at.html - text: cc-by-sa-3.0-at.LICENSE + license: cc-by-sa-3.0-at.LICENSE - license_key: cc-by-sa-3.0-de + category: Copyleft Limited spdx_license_key: CC-BY-SA-3.0-DE other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Creative Commons Namensnennung - Weitergabe unter gleichen Bedingungen 3.0 Deutschland + + CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. + + Lizenz + + DER GEGENSTAND DIESER LIZENZ (WIE UNTER "SCHUTZGEGENSTAND" DEFINIERT) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE COMMONS PUBLIC LICENSE ("CCPL", "LIZENZ" ODER "LIZENZVERTRAG") ZUR VERFÜGUNG GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER ANDERE GESETZE GESCHÜTZT. JEDE FORM DER NUTZUNG DES SCHUTZGEGENSTANDES, DIE NICHT AUFGRUND DIESER LIZENZ ODER DURCH GESETZE GESTATTET IST, IST UNZULÄSSIG. + + DURCH DIE AUSÜBUNG EINES DURCH DIESE LIZENZ GEWÄHRTEN RECHTS AN DEM SCHUTZGEGENSTAND ERKLÄREN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH EINVERSTANDEN. SOWEIT DIESE LIZENZ ALS LIZENZVERTRAG ANZUSEHEN IST, GEWÄHRT IHNEN DER LIZENZGEBER DIE IN DER LIZENZ GENANNTEN RECHTE UNENTGELTLICH UND IM AUSTAUSCH DAFÜR, DASS SIE DAS GEBUNDENSEIN AN DIE LIZENZBEDINGUNGEN AKZEPTIEREN. + + 1. Definitionen + + a. Der Begriff "Abwandlung" im Sinne dieser Lizenz bezeichnet das Ergebnis jeglicher Art von Veränderung des Schutzgegenstandes, solange die eigenpersönlichen Züge des Schutzgegenstandes darin nicht verblassen und daran eigene Schutzrechte entstehen. Das kann insbesondere eine Bearbeitung, Umgestaltung, Änderung, Anpassung, Übersetzung oder Heranziehung des Schutzgegenstandes zur Vertonung von Laufbildern sein. Nicht als Abwandlung des Schutzgegenstandes gelten seine Aufnahme in eine Sammlung oder ein Sammelwerk und die freie Benutzung des Schutzgegenstandes. + + b. Der Begriff "Sammelwerk" im Sinne dieser Lizenz meint eine Zusammenstellung von literarischen, künstlerischen oder wissenschaftlichen Inhalten, sofern diese Zusammenstellung aufgrund von Auswahl und Anordnung der darin enthaltenen selbständigen Elemente eine geistige Schöpfung darstellt, unabhängig davon, ob die Elemente systematisch oder methodisch angelegt und dadurch einzeln zugänglich sind oder nicht. + + c. "Verbreiten" im Sinne dieser Lizenz bedeutet, den Schutzgegenstand oder Abwandlungen im Original oder in Form von Vervielfältigungsstücken, mithin in körperlich fixierter Form der Öffentlichkeit anzubieten oder in Verkehr zu bringen. + + d. Unter "Lizenzelementen" werden im Sinne dieser Lizenz die folgenden übergeordneten Lizenzcharakteristika verstanden, die vom Lizenzgeber ausgewählt wurden und in der Bezeichnung der Lizenz zum Ausdruck kommen: "Namensnennung", "Weitergabe unter gleichen Bedingungen". + + e. Der "*Lizenzgeber*" im Sinne dieser Lizenz ist diejenige natürliche oder juristische Person oder Gruppe, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet und insoweit als Rechteinhaberin auftritt. + + f. "Rechteinhaber" im Sinne dieser Lizenz ist der Urheber des Schutzgegenstandes oder jede andere natürliche oder juristische Person oder Gruppe von Personen, die am Schutzgegenstand ein Immaterialgüterrecht erlangt hat, welches die in Abschnitt 3 genannten Handlungen erfasst und bei dem eine Einräumung von Nutzungsrechten oder eine Weiterübertragung an Dritte möglich ist. + + g. Der Begriff "Schutzgegenstand" bezeichnet in dieser Lizenz den literarischen, künstlerischen oder wissenschaftlichen Inhalt, der unter den Bedingungen dieser Lizenz angeboten wird. Das kann insbesondere eine persönliche geistige Schöpfung jeglicher Art, ein Werk der kleinen Münze, ein nachgelassenes Werk oder auch ein Lichtbild oder anderes Objekt eines verwandten Schutzrechts sein, unabhängig von der Art seiner Fixierung und unabhängig davon, auf welche Weise jeweils eine Wahrnehmung erfolgen kann, gleichviel ob in analoger oder digitaler Form. Soweit Datenbanken oder Zusammenstellungen von Daten einen immaterialgüterrechtlichen Schutz eigener Art genießen, unterfallen auch sie dem Begriff "Schutzgegenstand" im Sinne dieser Lizenz. + + h. Mit "Sie" bzw. "Ihnen" ist die natürliche oder juristische Person gemeint, die in dieser Lizenz im Abschnitt 3 genannte Nutzungen des Schutzgegenstandes vornimmt und zuvor in Hinblick auf den Schutzgegenstand nicht gegen Bedingungen dieser Lizenz verstoßen oder aber die ausdrückliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese Lizenz gewährten Nutzungsrechte trotz eines vorherigen Verstoßes auszuüben. + + i. Unter "Öffentlich Zeigen" im Sinne dieser Lizenz sind Veröffentlichungen und Präsentationen des Schutzgegenstandes zu verstehen, die für eine Mehrzahl von Mitgliedern der Öffentlichkeit bestimmt sind und in unkörperlicher Form mittels öffentlicher Wiedergabe in Form von Vortrag, Aufführung, Vorführung, Darbietung, Sendung, Weitersendung, zeit- und ortsunabhängiger Zugänglichmachung oder in körperlicher Form mittels Ausstellung erfolgen, unabhängig von bestimmten Veranstaltungen und unabhängig von den zum Einsatz kommenden Techniken und Verfahren, einschließlich drahtgebundener oder drahtloser Mittel und Einstellen in das Internet. + + j. "Vervielfältigen" im Sinne dieser Lizenz bedeutet, mittels beliebiger Verfahren Vervielfältigungsstücke des Schutzgegenstandes herzustellen, insbesondere durch Ton- oder Bildaufzeichnungen, und umfasst auch den Vorgang, erstmals körperliche Fixierungen des Schutzgegenstandes sowie Vervielfältigungsstücke dieser Fixierungen anzufertigen, sowie die Übertragung des Schutzgegenstandes auf einen Bild- oder Tonträger oder auf ein anderes elektronisches Medium, gleichviel ob in digitaler oder analoger Form. + + k. "Mit Creative Commons kompatible Lizenz" bezeichnet eine Lizenz, die unter https://creativecommons.org/compatiblelicenses aufgelistet ist und die durch Creative Commons als grundsätzlich zur vorliegenden Lizenz äquivalent akzeptiert wurde, da zumindest folgende Voraussetzungen erfüllt sind: + + Diese mit Creative Commons kompatible Lizenz + + i. enthält Bestimmungen, welche die gleichen Ziele verfolgen, die gleiche Bedeutung haben und die gleichen Wirkungen erzeugen wie die Lizenzelemente der vorliegenden Lizenz; und + + ii. erlaubt ausdrücklich das Lizenzieren von ihr unterstellten Abwandlungen unter vorliegender Lizenz, unter einer anderen rechtsordnungsspezifisch angepassten Creative-Commons-Lizenz mit denselben Lizenzelementen, wie sie die vorliegende Lizenz aufweist, oder unter der entsprechenden Creative-Commons-Unported-Lizenz. + + 2. Schranken des Immaterialgüterrechts. Diese Lizenz ist in keiner Weise darauf gerichtet, Befugnisse zur Nutzung des Schutzgegenstandes zu vermindern, zu beschränken oder zu vereiteln, die Ihnen aufgrund der Schranken des Urheberrechts oder anderer Rechtsnormen bereits ohne Weiteres zustehen oder sich aus dem Fehlen eines immaterialgüterrechtlichen Schutzes ergeben. + + 3. Einräumung von Nutzungsrechten. Unter den Bedingungen dieser Lizenz räumt Ihnen der Lizenzgeber - unbeschadet unverzichtbarer Rechte und vorbehaltlich des Abschnitts 3.e) - das vergütungsfreie, räumlich und zeitlich (für die Dauer des Schutzrechts am Schutzgegenstand) unbeschränkte einfache Recht ein, den Schutzgegenstand auf die folgenden Arten und Weisen zu nutzen ("unentgeltlich eingeräumtes einfaches Nutzungsrecht für jedermann"): + + a. Den Schutzgegenstand in beliebiger Form und Menge zu vervielfältigen, ihn in Sammelwerke zu integrieren und ihn als Teil solcher Sammelwerke zu vervielfältigen; + + b. Abwandlungen des Schutzgegenstandes anzufertigen, einschließlich Übersetzungen unter Nutzung jedweder Medien, sofern deutlich erkennbar gemacht wird, dass es sich um Abwandlungen handelt; + + c. den Schutzgegenstand, allein oder in Sammelwerke aufgenommen, öffentlich zu zeigen und zu verbreiten; + + d. Abwandlungen des Schutzgegenstandes zu veröffentlichen, öffentlich zu zeigen und zu verbreiten. + + e. Bezüglich Vergütung für die Nutzung des Schutzgegenstandes gilt Folgendes: + + i. Unverzichtbare gesetzliche Vergütungsansprüche: Soweit unverzichtbare Vergütungsansprüche im Gegenzug für gesetzliche Lizenzen vorgesehen oder Pauschalabgabensysteme (zum Beispiel für Leermedien) vorhanden sind, behält sich der Lizenzgeber das ausschließliche Recht vor, die entsprechende Vergütung einzuziehen für jede Ausübung eines Rechts aus dieser Lizenz durch Sie. + + ii. Vergütung bei Zwangslizenzen: Sofern Zwangslizenzen außerhalb dieser Lizenz vorgesehen sind und zustande kommen, verzichtet der Lizenzgeber für alle Fälle einer lizenzgerechten Nutzung des Schutzgegenstandes durch Sie auf jegliche Vergütung. + + iii. Vergütung in sonstigen Fällen: Bezüglich lizenzgerechter Nutzung des Schutzgegenstandes durch Sie, die nicht unter die beiden vorherigen Abschnitte (i) und (ii) fällt, verzichtet der Lizenzgeber auf jegliche Vergütung, unabhängig davon, ob eine Einziehung der Vergütung durch ihn selbst oder nur durch eine Verwertungsgesellschaft möglich wäre. + + Das vorgenannte Nutzungsrecht wird für alle bekannten sowie für alle noch nicht bekannten Nutzungsarten eingeräumt. Es beinhaltet auch das Recht, solche Änderungen am Schutzgegenstand vorzunehmen, die für bestimmte nach dieser Lizenz zulässige Nutzungen technisch erforderlich sind. Alle sonstigen Rechte, die über diesen Abschnitt hinaus nicht ausdrücklich durch den Lizenzgeber eingeräumt werden, bleiben diesem allein vorbehalten. Soweit Datenbanken oder Zusammenstellungen von Daten Schutzgegenstand dieser Lizenz oder Teil dessen sind und einen immaterialgüterrechtlichen Schutz eigener Art genießen, verzichtet der Lizenzgeber auf sämtliche aus diesem Schutz resultierenden Rechte. + + 4. Bedingungen. Die Einräumung des Nutzungsrechts gemäß Abschnitt 3 dieser Lizenz erfolgt ausdrücklich nur unter den folgenden Bedingungen: + + a. Sie dürfen den Schutzgegenstand ausschließlich unter den Bedingungen dieser Lizenz verbreiten oder öffentlich zeigen. Sie müssen dabei stets eine Kopie dieser Lizenz oder deren vollständige Internetadresse in Form des Uniform-Resource-Identifier (URI) beifügen. Sie dürfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen dieser Lizenz oder die durch diese Lizenz gewährten Rechte beschränken. Sie dürfen den Schutzgegenstand nicht unterlizenzieren. Bei jeder Kopie des Schutzgegenstandes, die Sie verbreiten oder öffentlich zeigen, müssen Sie alle Hinweise unverändert lassen, die auf diese Lizenz und den Haftungsausschluss hinweisen. Wenn Sie den Schutzgegenstand verbreiten oder öffentlich zeigen, dürfen Sie (in Bezug auf den Schutzgegenstand) keine technischen Maßnahmen ergreifen, die den Nutzer des Schutzgegenstandes in der Ausübung der ihm durch diese Lizenz gewährten Rechte behindern können. Dieser Abschnitt 4.a) gilt auch für den Fall, dass der Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt dieser Lizenz unterstellt werden muss. Sofern Sie ein Sammelwerk erstellen, müssen Sie auf die Mitteilung eines Lizenzgebers hin aus dem Sammelwerk die in Abschnitt 4.c) aufgezählten Hinweise entfernen. Wenn Sie eine Abwandlung vornehmen, müssen Sie auf die Mitteilung eines Lizenzgebers hin von der Abwandlung die in Abschnitt 4.c) aufgezählten Hinweise entfernen. + + b. Sie dürfen eine Abwandlung ausschließlich unter den Bedingungen + + i. dieser Lizenz, + + ii. einer späteren Version dieser Lizenz mit denselben Lizenzelementen, + + iii. einer rechtsordnungsspezifischen Creative-Commons-Lizenz mit denselben Lizenzelementen ab Version 3.0 aufwärts (z.B. Namensnennung - Weitergabe unter gleichen Bedingungen 3.0 US), + + iv. der Creative-Commons-Unported-Lizenz mit denselben Lizenzelementen ab Version 3.0 aufwärts, oder + + v. einer mit Creative Commons kompatiblen Lizenz + + verbreiten oder öffentlich zeigen. + + Falls Sie die Abwandlung gemäß Abschnitt (v) unter einer mit Creative Commons kompatiblen Lizenz lizenzieren, müssen Sie deren Lizenzbestimmungen Folge leisten. + + Falls Sie die Abwandlungen unter einer der unter (i)-(iv) genannten Lizenzen ("Verwendbare Lizenzen") lizenzieren, müssen Sie deren Lizenzbestimmungen sowie folgenden Bestimmungen Folge leisten: Sie müssen stets eine Kopie der verwendbaren Lizenz oder deren vollständige Internetadresse in Form des Uniform-Resource-Identifier (URI) beifügen, wenn Sie die Abwandlung verbreiten oder öffentlich zeigen. Sie dürfen keine Vertrags- oder Nutzungsbedingungen anbieten oder fordern, die die Bedingungen der verwendbaren Lizenz oder die durch sie gewährten Rechte beschränken. Bei jeder Abwandlung, die Sie verbreiten oder öffentlich zeigen, müssen Sie alle Hinweise auf die verwendbare Lizenz und den Haftungsausschluss unverändert lassen. Wenn Sie die Abwandlung verbreiten oder öffentlich zeigen, dürfen Sie (in Bezug auf die Abwandlung) keine technischen Maßnahmen ergreifen, die den Nutzer der Abwandlung in der Ausübung der ihm durch die verwendbare Lizenz gewährten Rechte behindern können. Dieser Abschnitt 4.b) gilt auch für den Fall, dass die Abwandlung einen Bestandteil eines Sammelwerkes bildet, was jedoch nicht bedeutet, dass das Sammelwerk insgesamt der verwendbaren Lizenz unterstellt werden muss. + + c. Die Verbreitung und das öffentliche Zeigen des Schutzgegenstandes oder auf ihm aufbauender Abwandlungen oder ihn enthaltender Sammelwerke ist Ihnen nur unter der Bedingung gestattet, dass Sie, vorbehaltlich etwaiger Mitteilungen im Sinne von Abschnitt 4.a), alle dazu gehörenden Rechtevermerke unberührt lassen. Sie sind verpflichtet, die Rechteinhaberschaft in einer der Nutzung entsprechenden, angemessenen Form anzuerkennen, indem Sie - soweit bekannt - Folgendes angeben: + + i. Den Namen (oder das Pseudonym, falls ein solches verwendet wird) des Rechteinhabers und / oder, falls der Lizenzgeber im Rechtevermerk, in den Nutzungsbedingungen oder auf andere angemessene Weise eine Zuschreibung an Dritte vorgenommen hat (z.B. an eine Stiftung, ein Verlagshaus oder eine Zeitung) ("Zuschreibungsempfänger"), Namen bzw. Bezeichnung dieses oder dieser Dritten; + + ii. den Titel des Inhaltes; + + iii. in einer praktikablen Form den Uniform-Resource-Identifier (URI, z.B. Internetadresse), den der Lizenzgeber zum Schutzgegenstand angegeben hat, es sei denn, dieser URI verweist nicht auf den Rechtevermerk oder die Lizenzinformationen zum Schutzgegenstand; + + iv. und im Falle einer Abwandlung des Schutzgegenstandes in Übereinstimmung mit Abschnitt 3.b) einen Hinweis darauf, dass es sich um eine Abwandlung handelt. + + Die nach diesem Abschnitt 4.c) erforderlichen Angaben können in jeder angemessenen Form gemacht werden; im Falle einer Abwandlung des Schutzgegenstandes oder eines Sammelwerkes müssen diese Angaben das Minimum darstellen und bei gemeinsamer Nennung mehrerer Rechteinhaber dergestalt erfolgen, dass sie zumindest ebenso hervorgehoben sind wie die Hinweise auf die übrigen Rechteinhaber. Die Angaben nach diesem Abschnitt dürfen Sie ausschließlich zur Angabe der Rechteinhaberschaft in der oben bezeichneten Weise verwenden. Durch die Ausübung Ihrer Rechte aus dieser Lizenz dürfen Sie ohne eine vorherige, separat und schriftlich vorliegende Zustimmung des Lizenzgebers und / oder des Zuschreibungsempfängers weder explizit noch implizit irgendeine Verbindung zum Lizenzgeber oder Zuschreibungsempfänger und ebenso wenig eine Unterstützung oder Billigung durch ihn andeuten. + + d. Die oben unter 4.a) bis c) genannten Einschränkungen gelten nicht für solche Teile des Schutzgegenstandes, die allein deshalb unter den Schutzgegenstandsbegriff fallen, weil sie als Datenbanken oder Zusammenstellungen von Daten einen immaterialgüterrechtlichen Schutz eigener Art genießen. + + e. Persönlichkeitsrechte bleiben - soweit sie bestehen - von dieser Lizenz unberührt. + + 5. Gewährleistung + + SOFERN KEINE ANDERS LAUTENDE, SCHRIFTLICHE VEREINBARUNG ZWISCHEN DEM LIZENZGEBER UND IHNEN GESCHLOSSEN WURDE UND SOWEIT MÄNGEL NICHT ARGLISTIG VERSCHWIEGEN WURDEN, BIETET DER LIZENZGEBER DEN SCHUTZGEGENSTAND UND DIE EINRÄUMUNG VON RECHTEN UNTER AUSSCHLUSS JEGLICHER GEWÄHRLEISTUNG AN UND ÜBERNIMMT WEDER AUSDRÜCKLICH NOCH KONKLUDENT GARANTIEN IRGENDEINER ART. DIES UMFASST INSBESONDERE DAS FREISEIN VON SACH- UND RECHTSMÄNGELN, UNABHÄNGIG VON DEREN ERKENNBARKEIT FÜR DEN LIZENZGEBER, DIE VERKEHRSFÄHIGKEIT DES SCHUTZGEGENSTANDES, SEINE VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK SOWIE DIE KORREKTHEIT VON BESCHREIBUNGEN. DIESE GEWÄHRLEISTUNGSBESCHRÄNKUNG GILT NICHT, SOWEIT MÄNGEL ZU SCHÄDEN DER IN ABSCHNITT 6 BEZEICHNETEN ART FÜHREN UND AUF SEITEN DES LIZENZGEBERS DAS JEWEILS GENANNTE VERSCHULDEN BZW. VERTRETENMÜSSEN EBENFALLS VORLIEGT. + + 6. Haftungsbeschränkung + + DER LIZENZGEBER HAFTET IHNEN GEGENÜBER IN BEZUG AUF SCHÄDEN AUS DER VERLETZUNG DES LEBENS, DES KÖRPERS ODER DER GESUNDHEIT NUR, SOFERN IHM WENIGSTENS FAHRLÄSSIGKEIT VORZUWERFEN IST, FÜR SONSTIGE SCHÄDEN NUR BEI GROBER FAHRLÄSSIGKEIT ODER VORSATZ, UND ÜBERNIMMT DARÜBER HINAUS KEINERLEI FREIWILLIGE HAFTUNG. + + 7. Erlöschen + + a. Diese Lizenz und die durch sie eingeräumten Nutzungsrechte erlöschen mit Wirkung für die Zukunft im Falle eines Verstoßes gegen die Lizenzbedingungen durch Sie, ohne dass es dazu der Kenntnis des Lizenzgebers vom Verstoß oder einer weiteren Handlung einer der Vertragsparteien bedarf. Mit natürlichen oder juristischen Personen, die Abwandlungen des Schutzgegenstandes oder diesen enthaltende Sammelwerke unter den Bedingungen dieser Lizenz von Ihnen erhalten haben, bestehen nachträglich entstandene Lizenzbeziehungen jedoch solange weiter, wie die genannten Personen sich ihrerseits an sämtliche Lizenzbedingungen halten. Darüber hinaus gelten die Ziffern 1, 2, 5, 6, 7, und 8 auch nach einem Erlöschen dieser Lizenz fort. + + b. Vorbehaltlich der oben genannten Bedingungen gilt diese Lizenz unbefristet bis der rechtliche Schutz für den Schutzgegenstand ausläuft. Davon abgesehen behält der Lizenzgeber das Recht, den Schutzgegenstand unter anderen Lizenzbedingungen anzubieten oder die eigene Weitergabe des Schutzgegenstandes jederzeit einzustellen, solange die Ausübung dieses Rechts nicht einer Kündigung oder einem Widerruf dieser Lizenz (oder irgendeiner Weiterlizenzierung, die auf Grundlage dieser Lizenz bereits erfolgt ist bzw. zukünftig noch erfolgen muss) dient und diese Lizenz unter Berücksichtigung der oben zum Erlöschen genannten Bedingungen vollumfänglich wirksam bleibt. + + 8. Sonstige Bestimmungen + + a. Jedes Mal wenn Sie den Schutzgegenstand für sich genommen oder als Teil eines Sammelwerkes verbreiten oder öffentlich zeigen, bietet der Lizenzgeber dem Empfänger eine Lizenz zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz. + + b. Jedes Mal wenn Sie eine Abwandlung des Schutzgegenstandes verbreiten oder öffentlich zeigen, bietet der Lizenzgeber dem Empfänger eine Lizenz am ursprünglichen Schutzgegenstand zu den gleichen Bedingungen und im gleichen Umfang an, wie Ihnen in Form dieser Lizenz. + + c. Sollte eine Bestimmung dieser Lizenz unwirksam sein, so bleibt davon die Wirksamkeit der Lizenz im Übrigen unberührt. + + d. Keine Bestimmung dieser Lizenz soll als abbedungen und kein Verstoß gegen sie als zulässig gelten, solange die von dem Verzicht oder von dem Verstoß betroffene Seite nicht schriftlich zugestimmt hat. + + e. Diese Lizenz (zusammen mit in ihr ausdrücklich vorgesehenen Erlaubnissen, Mitteilungen und Zustimmungen, soweit diese tatsächlich vorliegen) stellt die vollständige Vereinbarung zwischen dem Lizenzgeber und Ihnen in Bezug auf den Schutzgegenstand dar. Es bestehen keine Abreden, Vereinbarungen oder Erklärungen in Bezug auf den Schutzgegenstand, die in dieser Lizenz nicht genannt sind. Rechtsgeschäftliche Änderungen des Verhältnisses zwischen dem Lizenzgeber und Ihnen sind nur über Modifikationen dieser Lizenz möglich. Der Lizenzgeber ist an etwaige zusätzliche, einseitig durch Sie übermittelte Bestimmungen nicht gebunden. Diese Lizenz kann nur durch schriftliche Vereinbarung zwischen Ihnen und dem Lizenzgeber modifiziert werden. Derlei Modifikationen wirken ausschließlich zwischen dem Lizenzgeber und Ihnen und wirken sich nicht auf die Dritten gemäß Ziffern 8.a) und b) angeboteten Lizenzen aus. + + f. Sofern zwischen Ihnen und dem Lizenzgeber keine anderweitige Vereinbarung getroffen wurde und soweit Wahlfreiheit besteht, findet auf diesen Lizenzvertrag das Recht der Bundesrepublik Deutschland Anwendung. + + Creative Commons Notice + + Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr oder dergleichen in Bezug auf den Schutzgegenstand. Creative Commons haftet Ihnen oder einer anderen Partei unter keinem rechtlichen Gesichtspunkt für irgendwelche Schäden, die - abstrakt oder konkret, zufällig oder vorhersehbar - im Zusammenhang mit dieser Lizenz entstehen. Unbeschadet der vorangegangen beiden Sätze, hat Creative Commons alle Rechte und Pflichten eines Lizenzgebers, wenn es sich ausdrücklich als Lizenzgeber im Sinne dieser Lizenz bezeichnet. + + Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. + + Creative Commons kann kontaktiert werden über https://creativecommons.org/. json: cc-by-sa-3.0-de.json - yml: cc-by-sa-3.0-de.yml + yaml: cc-by-sa-3.0-de.yml html: cc-by-sa-3.0-de.html - text: cc-by-sa-3.0-de.LICENSE + license: cc-by-sa-3.0-de.LICENSE - license_key: cc-by-sa-4.0 + category: Copyleft Limited spdx_license_key: CC-BY-SA-4.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Attribution-ShareAlike 4.0 International\n\n=======================================================================\n\ + \nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide\ + \ legal services or legal advice. Distribution of\nCreative Commons public licenses does\ + \ not create a lawyer-client or\nother relationship. Creative Commons makes its licenses\ + \ and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\n\ + warranties regarding its licenses, any material licensed under their\nterms and conditions,\ + \ or any related information. Creative Commons\ndisclaims all liability for damages resulting\ + \ from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\ + \nCreative Commons public licenses provide a standard set of terms and\nconditions that\ + \ creators and other rights holders may use to share\noriginal works of authorship and other\ + \ material subject to copyright\nand certain other rights specified in the public license\ + \ below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive,\ + \ and do not form part of our licenses.\n\n Considerations for licensors: Our public\ + \ licenses are\n intended for use by those authorized to give the public\n permission\ + \ to use material in ways otherwise restricted by\n copyright and certain other rights.\ + \ Our licenses are\n irrevocable. Licensors should read and understand the terms\n \ + \ and conditions of the license they choose before applying it.\n Licensors should\ + \ also secure all rights necessary before\n applying our licenses so that the public\ + \ can reuse the\n material as expected. Licensors should clearly mark any\n material\ + \ not subject to the license. This includes other CC-\n licensed material, or material\ + \ used under an exception or\n limitation to copyright. More considerations for licensors:\n\ + \twiki.creativecommons.org/Considerations_for_licensors\n\n Considerations for the public:\ + \ By using one of our public\n licenses, a licensor grants the public permission to\ + \ use the\n licensed material under specified terms and conditions. If\n the licensor's\ + \ permission is not necessary for any reason--for\n example, because of any applicable\ + \ exception or limitation to\n copyright--then that use is not regulated by the license.\ + \ Our\n licenses grant only permissions under copyright and certain\n other rights\ + \ that a licensor has authority to grant. Use of\n the licensed material may still be\ + \ restricted for other\n reasons, including because others have copyright or other\n\ + \ rights in the material. A licensor may make special requests,\n such as asking\ + \ that all changes be marked or described.\n Although not required by our licenses,\ + \ you are encouraged to\n respect those requests where reasonable. More considerations\n\ + \ for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\ + \nCreative Commons Attribution-ShareAlike 4.0 International Public\nLicense\n\nBy exercising\ + \ the Licensed Rights (defined below), You accept and agree\nto be bound by the terms and\ + \ conditions of this Creative Commons\nAttribution-ShareAlike 4.0 International Public License\ + \ (\"Public\nLicense\"). To the extent this Public License may be interpreted as a\ncontract,\ + \ You are granted the Licensed Rights in consideration of Your\nacceptance of these terms\ + \ and conditions, and the Licensor grants You\nsuch rights in consideration of benefits\ + \ the Licensor receives from\nmaking the Licensed Material available under these terms and\n\ + conditions.\n\n\nSection 1 -- Definitions.\n\n a. Adapted Material means material subject\ + \ to Copyright and Similar\n Rights that is derived from or based upon the Licensed\ + \ Material\n and in which the Licensed Material is translated, altered,\n arranged,\ + \ transformed, or otherwise modified in a manner requiring\n permission under the Copyright\ + \ and Similar Rights held by the\n Licensor. For purposes of this Public License, where\ + \ the Licensed\n Material is a musical work, performance, or sound recording,\n \ + \ Adapted Material is always produced where the Licensed Material is\n synched in timed\ + \ relation with a moving image.\n\n b. Adapter's License means the license You apply to\ + \ Your Copyright\n and Similar Rights in Your contributions to Adapted Material in\n\ + \ accordance with the terms and conditions of this Public License.\n\n c. BY-SA Compatible\ + \ License means a license listed at\n creativecommons.org/compatiblelicenses, approved\ + \ by Creative\n Commons as essentially the equivalent of this Public License.\n\n d.\ + \ Copyright and Similar Rights means copyright and/or similar rights\n closely related\ + \ to copyright including, without limitation,\n performance, broadcast, sound recording,\ + \ and Sui Generis Database\n Rights, without regard to how the rights are labeled or\n\ + \ categorized. For purposes of this Public License, the rights\n specified in Section\ + \ 2(b)(1)-(2) are not Copyright and Similar\n Rights.\n\n e. Effective Technological\ + \ Measures means those measures that, in the\n absence of proper authority, may not\ + \ be circumvented under laws\n fulfilling obligations under Article 11 of the WIPO Copyright\n\ + \ Treaty adopted on December 20, 1996, and/or similar international\n agreements.\n\ + \n f. Exceptions and Limitations means fair use, fair dealing, and/or\n any other exception\ + \ or limitation to Copyright and Similar Rights\n that applies to Your use of the Licensed\ + \ Material.\n\n g. License Elements means the license attributes listed in the name\n \ + \ of a Creative Commons Public License. The License Elements of this\n Public License\ + \ are Attribution and ShareAlike.\n\n h. Licensed Material means the artistic or literary\ + \ work, database,\n or other material to which the Licensor applied this Public\n \ + \ License.\n\n i. Licensed Rights means the rights granted to You subject to the\n \ + \ terms and conditions of this Public License, which are limited to\n all Copyright\ + \ and Similar Rights that apply to Your use of the\n Licensed Material and that the\ + \ Licensor has authority to license.\n\n j. Licensor means the individual(s) or entity(ies)\ + \ granting rights\n under this Public License.\n\n k. Share means to provide material\ + \ to the public by any means or\n process that requires permission under the Licensed\ + \ Rights, such\n as reproduction, public display, public performance, distribution,\n\ + \ dissemination, communication, or importation, and to make material\n available\ + \ to the public including in ways that members of the\n public may access the material\ + \ from a place and at a time\n individually chosen by them.\n\n l. Sui Generis Database\ + \ Rights means rights other than copyright\n resulting from Directive 96/9/EC of the\ + \ European Parliament and of\n the Council of 11 March 1996 on the legal protection\ + \ of databases,\n as amended and/or succeeded, as well as other essentially\n equivalent\ + \ rights anywhere in the world.\n\n m. You means the individual or entity exercising the\ + \ Licensed Rights\n under this Public License. Your has a corresponding meaning.\n\n\ + \nSection 2 -- Scope.\n\n a. License grant.\n\n 1. Subject to the terms and conditions\ + \ of this Public License,\n the Licensor hereby grants You a worldwide, royalty-free,\n\ + \ non-sublicensable, non-exclusive, irrevocable license to\n exercise\ + \ the Licensed Rights in the Licensed Material to:\n\n a. reproduce and Share\ + \ the Licensed Material, in whole or\n in part; and\n\n b. produce,\ + \ reproduce, and Share Adapted Material.\n\n 2. Exceptions and Limitations. For the\ + \ avoidance of doubt, where\n Exceptions and Limitations apply to Your use, this\ + \ Public\n License does not apply, and You do not need to comply with\n \ + \ its terms and conditions.\n\n 3. Term. The term of this Public License is specified\ + \ in Section\n 6(a).\n\n 4. Media and formats; technical modifications allowed.\ + \ The\n Licensor authorizes You to exercise the Licensed Rights in\n all\ + \ media and formats whether now known or hereafter created,\n and to make technical\ + \ modifications necessary to do so. The\n Licensor waives and/or agrees not to\ + \ assert any right or\n authority to forbid You from making technical modifications\n\ + \ necessary to exercise the Licensed Rights, including\n technical modifications\ + \ necessary to circumvent Effective\n Technological Measures. For purposes of this\ + \ Public License,\n simply making modifications authorized by this Section 2(a)\n\ + \ (4) never produces Adapted Material.\n\n 5. Downstream recipients.\n\n\ + \ a. Offer from the Licensor -- Licensed Material. Every\n recipient\ + \ of the Licensed Material automatically\n receives an offer from the Licensor\ + \ to exercise the\n Licensed Rights under the terms and conditions of this\n\ + \ Public License.\n\n b. Additional offer from the Licensor --\ + \ Adapted Material.\n Every recipient of Adapted Material from You\n \ + \ automatically receives an offer from the Licensor to\n exercise\ + \ the Licensed Rights in the Adapted Material\n under the conditions of the\ + \ Adapter's License You apply.\n\n c. No downstream restrictions. You may not\ + \ offer or impose\n any additional or different terms or conditions on, or\n\ + \ apply any Effective Technological Measures to, the\n Licensed\ + \ Material if doing so restricts exercise of the\n Licensed Rights by any\ + \ recipient of the Licensed\n Material.\n\n 6. No endorsement. Nothing\ + \ in this Public License constitutes or\n may be construed as permission to assert\ + \ or imply that You\n are, or that Your use of the Licensed Material is, connected\n\ + \ with, or sponsored, endorsed, or granted official status by,\n the Licensor\ + \ or others designated to receive attribution as\n provided in Section 3(a)(1)(A)(i).\n\ + \n b. Other rights.\n\n 1. Moral rights, such as the right of integrity, are not\n\ + \ licensed under this Public License, nor are publicity,\n privacy, and/or\ + \ other similar personality rights; however, to\n the extent possible, the Licensor\ + \ waives and/or agrees not to\n assert any such rights held by the Licensor to\ + \ the limited\n extent necessary to allow You to exercise the Licensed\n \ + \ Rights, but not otherwise.\n\n 2. Patent and trademark rights are not licensed\ + \ under this\n Public License.\n\n 3. To the extent possible, the Licensor\ + \ waives any right to\n collect royalties from You for the exercise of the Licensed\n\ + \ Rights, whether directly or through a collecting society\n under any\ + \ voluntary or waivable statutory or compulsory\n licensing scheme. In all other\ + \ cases the Licensor expressly\n reserves any right to collect such royalties.\n\ + \n\nSection 3 -- License Conditions.\n\nYour exercise of the Licensed Rights is expressly\ + \ made subject to the\nfollowing conditions.\n\n a. Attribution.\n\n 1. If You Share\ + \ the Licensed Material (including in modified\n form), You must:\n\n \ + \ a. retain the following if it is supplied by the Licensor\n with the Licensed\ + \ Material:\n\n i. identification of the creator(s) of the Licensed\n \ + \ Material and any others designated to receive\n attribution,\ + \ in any reasonable manner requested by\n the Licensor (including by\ + \ pseudonym if\n designated);\n\n ii. a copyright notice;\n\ + \n iii. a notice that refers to this Public License;\n\n iv.\ + \ a notice that refers to the disclaimer of\n warranties;\n\n \ + \ v. a URI or hyperlink to the Licensed Material to the\n extent\ + \ reasonably practicable;\n\n b. indicate if You modified the Licensed Material\ + \ and\n retain an indication of any previous modifications; and\n\n \ + \ c. indicate the Licensed Material is licensed under this\n Public License,\ + \ and include the text of, or the URI or\n hyperlink to, this Public License.\n\ + \n 2. You may satisfy the conditions in Section 3(a)(1) in any\n reasonable\ + \ manner based on the medium, means, and context in\n which You Share the Licensed\ + \ Material. For example, it may be\n reasonable to satisfy the conditions by providing\ + \ a URI or\n hyperlink to a resource that includes the required\n information.\n\ + \n 3. If requested by the Licensor, You must remove any of the\n information\ + \ required by Section 3(a)(1)(A) to the extent\n reasonably practicable.\n\n b.\ + \ ShareAlike.\n\n In addition to the conditions in Section 3(a), if You Share\n \ + \ Adapted Material You produce, the following conditions also apply.\n\n 1. The Adapter's\ + \ License You apply must be a Creative Commons\n license with the same License\ + \ Elements, this version or\n later, or a BY-SA Compatible License.\n\n 2.\ + \ You must include the text of, or the URI or hyperlink to, the\n Adapter's License\ + \ You apply. You may satisfy this condition\n in any reasonable manner based on\ + \ the medium, means, and\n context in which You Share Adapted Material.\n\n \ + \ 3. You may not offer or impose any additional or different terms\n or conditions\ + \ on, or apply any Effective Technological\n Measures to, Adapted Material that\ + \ restrict exercise of the\n rights granted under the Adapter's License You apply.\n\ + \n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis\ + \ Database Rights that\napply to Your use of the Licensed Material:\n\n a. for the avoidance\ + \ of doubt, Section 2(a)(1) grants You the right\n to extract, reuse, reproduce, and\ + \ Share all or a substantial\n portion of the contents of the database;\n\n b. if You\ + \ include all or a substantial portion of the database\n contents in a database in which\ + \ You have Sui Generis Database\n Rights, then the database in which You have Sui Generis\ + \ Database\n Rights (but not its individual contents) is Adapted Material,\n\n including\ + \ for purposes of Section 3(b); and\n c. You must comply with the conditions in Section\ + \ 3(a) if You Share\n all or a substantial portion of the contents of the database.\n\ + \nFor the avoidance of doubt, this Section 4 supplements and does not\nreplace Your obligations\ + \ under this Public License where the Licensed\nRights include other Copyright and Similar\ + \ Rights.\n\n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\n a.\ + \ UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n EXTENT POSSIBLE,\ + \ THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS\ + \ OR WARRANTIES OF\n ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n \ + \ IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n WARRANTIES OF\ + \ TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\n PURPOSE, NON-INFRINGEMENT, ABSENCE\ + \ OF LATENT OR OTHER DEFECTS,\n ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER\ + \ OR NOT\n KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n ALLOWED\ + \ IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\n b. TO THE EXTENT POSSIBLE,\ + \ IN NO EVENT WILL THE LICENSOR BE LIABLE\n TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT\ + \ LIMITATION,\n NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n INCIDENTAL,\ + \ CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\n COSTS, EXPENSES, OR DAMAGES\ + \ ARISING OUT OF THIS PUBLIC LICENSE OR\n USE OF THE LICENSED MATERIAL, EVEN IF THE\ + \ LICENSOR HAS BEEN\n ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n\ + \ DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR\n IN PART,\ + \ THIS LIMITATION MAY NOT APPLY TO YOU.\n\n c. The disclaimer of warranties and limitation\ + \ of liability provided\n above shall be interpreted in a manner that, to the extent\n\ + \ possible, most closely approximates an absolute disclaimer and\n waiver of all\ + \ liability.\n\n\nSection 6 -- Term and Termination.\n\n a. This Public License applies\ + \ for the term of the Copyright and\n Similar Rights licensed here. However, if You\ + \ fail to comply with\n this Public License, then Your rights under this Public License\n\ + \ terminate automatically.\n\n b. Where Your right to use the Licensed Material has\ + \ terminated under\n Section 6(a), it reinstates:\n\n 1. automatically as of the\ + \ date the violation is cured, provided\n it is cured within 30 days of Your discovery\ + \ of the\n violation; or\n\n 2. upon express reinstatement by the Licensor.\n\ + \n For the avoidance of doubt, this Section 6(b) does not affect any\n right the\ + \ Licensor may have to seek remedies for Your violations\n of this Public License.\n\ + \n c. For the avoidance of doubt, the Licensor may also offer the\n Licensed Material\ + \ under separate terms or conditions or stop\n distributing the Licensed Material at\ + \ any time; however, doing so\n will not terminate this Public License.\n\n d. Sections\ + \ 1, 5, 6, 7, and 8 survive termination of this Public\n License.\n\n\nSection 7 --\ + \ Other Terms and Conditions.\n\n a. The Licensor shall not be bound by any additional\ + \ or different\n terms or conditions communicated by You unless expressly agreed.\n\n\ + \ b. Any arrangements, understandings, or agreements regarding the\n Licensed Material\ + \ not stated herein are separate from and\n independent of the terms and conditions\ + \ of this Public License.\n\n\nSection 8 -- Interpretation.\n\n a. For the avoidance of\ + \ doubt, this Public License does not, and\n shall not be interpreted to, reduce, limit,\ + \ restrict, or impose\n conditions on any use of the Licensed Material that could lawfully\n\ + \ be made without permission under this Public License.\n\n b. To the extent possible,\ + \ if any provision of this Public License is\n deemed unenforceable, it shall be automatically\ + \ reformed to the\n minimum extent necessary to make it enforceable. If the provision\n\ + \ cannot be reformed, it shall be severed from this Public License\n without affecting\ + \ the enforceability of the remaining terms and\n conditions.\n\n c. No term or condition\ + \ of this Public License will be waived and no\n failure to comply consented to unless\ + \ expressly agreed to by the\n Licensor.\n\n d. Nothing in this Public License constitutes\ + \ or may be interpreted\n as a limitation upon, or waiver of, any privileges and immunities\n\ + \ that apply to the Licensor or You, including from the legal\n processes of any\ + \ jurisdiction or authority.\n\n\n=======================================================================\n\ + \nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons\ + \ may elect to apply one of\nits public licenses to material it publishes and in those instances\n\ + will be considered the “Licensor.” The text of the Creative Commons\npublic licenses is\ + \ dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the\ + \ limited purpose of indicating that\nmaterial is shared under a Creative Commons public\ + \ license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies,\ + \ Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or\ + \ any other trademark or logo\nof Creative Commons without its prior written consent including,\n\ + without limitation, in connection with any unauthorized modifications\nto any of its public\ + \ licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed\ + \ material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic\ + \ licenses.\n\nCreative Commons may be contacted at creativecommons.org." json: cc-by-sa-4.0.json - yml: cc-by-sa-4.0.yml + yaml: cc-by-sa-4.0.yml html: cc-by-sa-4.0.html - text: cc-by-sa-4.0.LICENSE + license: cc-by-sa-4.0.LICENSE - license_key: cc-devnations-2.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-cc-devnations-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Developing Nations 2.0 + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + + 1. Definitions + + "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. + "Developing Nation" means any nation that is not classified as a "high-income enconomy" by the World Bank. + "Licensor" means the individual or entity that offers the Work under the terms of this License. + "Original Author" means the individual or entity who created the Work. + "Work" means the copyrightable work of authorship offered under the terms of this License. + "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright or subject to Section 7(a)) license to exercise the rights in the Work, in any Developing Nation, solely within the geographic territory of one or more Developing Nations, as stated below: + + to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + to create and reproduce Derivative Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works; + For the avoidance of doubt, where the work is a musical composition: + + Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society, royalties for the public performance or public digital performance (e.g. webcast) of the Work. + Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights agency or designated agent, royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to any compulsory license that may apply. + Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society, royalties for the public digital performance (e.g. webcast) of the Work, subject to any compulsory license that may apply. + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved, including but not limited to the rights and restrictions described in Section 4. + + 4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + + You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any reference to such Licensor or the Original Author, as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any reference to such Licensor or the Original Author, as requested. + If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and give the Original Author credit reasonable to the medium or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original Author if supplied; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and, in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. + The Work and any Derivative Works and Collective Works may only be exported to other Developing Nations, but may not be exported to countries classified as "high income" by the World Bank. + This License does not authorize making the Work, any Derivative Works or any Collective Works publicly available on the Internet unless reasonable measures are undertaken to verify that the recipient is located in a Developing Nation, such as by requiring recipients to provide name and postal mailing address, or by limiting the distribution of the Work to Internet IP addresses within a Developing Nation. + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + This License and the rights granted hereunder will terminate automatically upon (i) any breach by You of the terms of this License or (ii) if any Developing Nation in which the Work is used, exported or distributed ceases at any time to qualify as a Developing Nation, in which case this License will automatically terminate with respect to such country five (5) years after the date of such re-classification; provided that You will not be liable for copyright infringement unless and until You continue to exercise such rights after You have actual knowledge of the termination of this License for such country. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 8. Miscellaneous + + Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. + If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. json: cc-devnations-2.0.json - yml: cc-devnations-2.0.yml + yaml: cc-devnations-2.0.yml html: cc-devnations-2.0.html - text: cc-devnations-2.0.LICENSE + license: cc-devnations-2.0.LICENSE - license_key: cc-gpl-2.0-pt + category: Copyleft spdx_license_key: LicenseRef-scancode-cc-gpl-2.0-pt other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "Licença Pública Geral do GNU (GPL) [General Public License] \n\n\nThis is an unofficial\ + \ translation of the GNU General Public License into Portuguese. It was not published by\ + \ the Free Software Foundation, and does not legally state the distribution terms for software\ + \ that uses the GNU GPL--only the original English text of the GNU GPL does that. However,\ + \ we hope that this translation will help Portuguese speakers understand the GNU GPL better.\n\ + Esta é uma tradução não-oficial da GNU General Public License para o Português. Ela não\ + \ é publicada pela Free Software Foundation e não traz os termos de distribuição legal do\ + \ software que usa a GNU GPL -- estes termos estão contidos apenas no texto da GNU GPL original\ + \ em inglês. No entanto, esperamos que esta tradução ajudará no melhor entendimento da GNU\ + \ GPL em Português.\n\nVersão 2, Junho de 1991 Direitos Autorais Reservados © 1989, 1991\ + \ Free Software Foundation, Inc. 59 Temple Place, Suite [conjunto] 330, Boston, MA [Massachusetts]\ + \ 02111-1307 USA [Estados Unidos da América]\nÉ permitido a qualquer pessoa copiar e distribuir\ + \ cópias sem alterações deste documento de licença, sendo vedada, entretanto, qualquer modificação.\ + \ \nIntrodução\nAs licenças da maioria dos softwares são elaboradas para suprimir sua liberdade\ + \ de compartilhá-los e modificá-los. A Licença Pública Geral do GNU, ao contrário, visa\ + \ garantir sua liberdade de compartilhar e modificar softwares livres para assegurar que\ + \ o software seja livre para todos os seus usuários. Esta Licença Pública Geral é aplicável\ + \ à maioria dos softwares da Free Software Foundation [Fundação do Software Livre] e a qualquer\ + \ outro programa cujos autores se comprometerem a usá-la. (Em vez dela, alguns outros softwares\ + \ da Free Software Foundation são cobertos pela Licença Pública Geral de Biblioteca do GNU).\ + \ Você também poderá aplicá-la aos seus programas. \nQuando falamos de software livre, estamos\ + \ nos referindo à liberdade, não ao preço. Nossas Licenças Públicas Gerais visam garantir\ + \ que você tenha a liberdade de distribuir cópias de software livre (e cobrar por isso se\ + \ desejar), que receba código-fonte ou possa obtê-lo se desejar, que possa modificá-lo ou\ + \ usar partes dele em novos programas livres; finalmente, que você tenha ciência de que\ + \ pode fazer tudo isso. \nPara proteger seus direitos, necessitamos fazer restrições que\ + \ proíbem que alguém negue esses direitos a você ou que solicite que você renuncie a eles.\ + \ Essas restrições se traduzem em determinadas responsabilidades que você deverá assumir,\ + \ se for distribuir cópias do software ou modificá-lo. \nPor exemplo, se você distribuir\ + \ cópias de algum desses programas, tanto gratuitamente como mediante uma taxa, você terá\ + \ de conceder aos receptores todos os direitos que você possui. Você terá de garantir que,\ + \ também eles, recebam ou possam obter o código-fonte. E você terá a obrigação de exibir\ + \ a eles esses termos, para que eles conheçam seus direitos. \nProtegemos seus direitos\ + \ através de dois passos: (1) estabelecendo direitos autorais sobre o software e (2) concedendo\ + \ a você esta licença, que dá permissão legal para copiar, distribuir e/ou modificar o software.\ + \ \nAlém disso, para a proteção de cada autor e a nossa, queremos ter certeza de que todos\ + \ entendam que não há nenhuma garantia para este software livre. Se o software for modificado\ + \ por alguém e passado adiante, queremos que seus receptores saibam que o que receberam\ + \ não é o original, de forma que quaisquer problemas introduzidos por terceiros não afetem\ + \ as reputações dos autores originais. \nFinalmente, qualquer programa livre é constantemente\ + \ ameaçado por patentes de software. Queremos evitar o risco de que redistribuidores de\ + \ um programa livre obtenham individualmente licenças sob uma patente, tornando o programa,\ + \ com efeito, proprietário. Para impedir isso, deixamos claro que qualquer patente deve\ + \ ser licenciada para o uso livre por parte de qualquer pessoa ou, então, simplesmente não\ + \ deve ser licenciada. \nOs exatos termos e condições para cópia, distribuição e modificação\ + \ seguem abaixo. \nTERMOS E CONDIÇÕES PARA CÓPIA, DISTRIBUIÇÃO E MODIFICAÇÃO \n\nEsta Licença\ + \ se aplica a qualquer programa ou outra obra que contenha um aviso inserido pelo respectivo\ + \ titular dos direitos autorais, informando que a referida obra pode ser distribuída em\ + \ conformidade com os termos desta Licença Pública Geral. O termo \"Programa\", utilizado\ + \ abaixo, refere-se a qualquer programa ou obra, e o termo \"obras baseadas no Programa\"\ + \ significa tanto o Programa, como qualquer obra derivada nos termos da legislação de direitos\ + \ autorais: isto é, uma obra contendo o Programa ou uma parte dele, tanto de forma idêntica\ + \ como com modificações, e/ou traduzida para outra linguagem. (Doravante, o termo \"modificação\"\ + \ inclui também, sem reservas, a tradução). Cada licenciado, doravante, será denominado\ + \ \"você\".\nOutras atividades que não a cópia, distribuição e modificação, não são cobertas\ + \ por esta Licença; elas estão fora de seu escopo. O ato de executar o Programa não tem\ + \ restrições e o resultado gerado a partir do Programa encontra-se coberto somente se seu\ + \ conteúdo constituir uma obra baseada no Programa (independente de ter sido produzida pela\ + \ execução do Programa). Na verdade, isto dependerá daquilo que o Programa faz.\n\nVocê\ + \ poderá fazer cópias idênticas do código-fonte do Programa ao recebê-lo e distribui-las,\ + \ em qualquer mídia ou meio, desde que publique, de forma ostensiva e adequada, em cada\ + \ cópia, um aviso de direitos autorais (ou copyright) apropriado e uma notificação sobre\ + \ a exoneração de garantia; mantenha intactas as informações, avisos ou notificações referentes\ + \ a esta Licença e à ausência de qualquer garantia; e forneça a quaisquer outros receptores\ + \ do Programa uma cópia desta Licença junto com o Programa. \nVocê poderá cobrar um valor\ + \ pelo ato físico de transferir uma cópia, e você pode oferecer, se quiser, a proteção de\ + \ uma garantia em troca de um valor. \nVocê poderá modificar sua cópia ou cópias do Programa\ + \ ou qualquer parte dele, formando, dessa forma, uma obra baseada no Programa, bem como\ + \ copiar e distribuir essas modificações ou obra, de acordo com os termos da Cláusula 1\ + \ acima, desde que você também atenda a todas as seguintes condições: \n\n\n\nVocê deve\ + \ fazer com que os arquivos modificados contenham avisos, em destaque, informando que você\ + \ modificou os arquivos, bem como a data de qualquer modificação. \n\nVocê deve fazer com\ + \ que qualquer obra que você distribuir ou publicar, que no todo ou em parte contenha o\ + \ Programa ou seja dele derivada, ou derivada de qualquer parte dele, seja licenciada como\ + \ um todo sem qualquer custo para todos terceiros nos termos desta licença.\n\nSe o programa\ + \ modificado normalmente lê comandos interativamente quando executado, você deverá fazer\ + \ com que ele, ao começar a ser executado para esse uso interativo em sua forma mais simples,\ + \ imprima ou exiba um aviso incluindo o aviso de direitos autorais (ou copyright) apropriado,\ + \ além de uma notificação de que não há garantia (ou, então, informando que você oferece\ + \ garantia) e informando que os usuários poderão redistribuir o programa de acordo com essas\ + \ condições, esclarecendo ao usuário como visualizar uma cópia desta Licença. (Exceção:\ + \ se o Programa em si for interativo mas não imprimir normalmente avisos como esses, não\ + \ é obrigatório que a sua obra baseada no Programa imprima um aviso). \nEssas exigências\ + \ se aplicam à obra modificada como um todo. Se partes identificáveis dessa obra não forem\ + \ derivadas do Programa e puderem ser consideradas razoavelmente como obras independentes\ + \ e separadas por si próprias, nesse caso, esta Licença e seus termos não se aplicarão a\ + \ essas partes quando você distribui-las como obras separadas. Todavia, quando você distribui-las\ + \ como parte de um todo que constitui uma obra baseada no Programa, a distribuição deste\ + \ todo terá de ser realizada em conformidade com esta Licença, cujas permissões para outros\ + \ licenciados se estenderão à obra por completo e, conseqüentemente, a toda e qualquer parte,\ + \ independentemente de quem a escreveu. \nPortanto, esta cláusula não tem a intenção de\ + \ afirmar direitos ou contestar os seus direitos sobre uma obra escrita inteiramente por\ + \ você; a intenção é, antes, de exercer o direito de controlar a distribuição de obras derivadas\ + \ ou obras coletivas baseadas no Programa. \nAlém do mais, a simples agregação de outra\ + \ obra que não seja baseada no Programa a ele (ou a uma obra baseada no Programa) em um\ + \ volume de mídia ou meio de armazenamento ou distribuição, não inclui esta outra obra no\ + \ âmbito desta Licença. \n\n\n\n\nVocê poderá copiar e distribuir o Programa (ou uma obra\ + \ baseada nele, de acordo com a Cláusula 2) em código-objeto ou formato executável de acordo\ + \ com os termos das Cláusulas 1 e 2 acima, desde que você também tome uma das providências\ + \ seguintes: \n\n\n\nIncluir o código-fonte correspondente completo, passível de leitura\ + \ pela máquina, o qual terá de ser distribuído de acordo com as Cláusulas 1 e 2 acima, em\ + \ um meio ou mídia habitualmente usado para intercâmbio de software; ou, \n\n\nIncluir uma\ + \ oferta por escrito, válida por pelo menos três anos, para fornecer a qualquer terceiro,\ + \ por um custo que não seja superior ao seu custo de fisicamente realizar a distribuição\ + \ da fonte, uma cópia completa passível de leitura pela máquina, do código-fonte correspondente,\ + \ a ser distribuído de acordo com as Cláusulas 1 e 2 acima, em um meio ou mídia habitualmente\ + \ usado para intercâmbio de software; ou, \n\n\nIncluir as informações recebidas por você,\ + \ quanto à oferta para distribuir o código-fonte correspondente. (Esta alternativa é permitida\ + \ somente para distribuição não-comercial e apenas se você tiver recebido o programa em\ + \ código-objeto ou formato executável com essa oferta, de acordo com a letra b, acima).\ + \ \nO código-fonte de uma obra significa o formato preferencial da obra para que sejam feitas\ + \ modificações na mesma. Para uma obra executável, o código-fonte completo significa o código-fonte\ + \ inteiro de todos os módulos que ela contiver, mais quaisquer arquivos de definição de\ + \ interface associados, além dos scripts usados para controlar a compilação e instalação\ + \ do executável. Entretanto, como uma exceção especial, o código-fonte distribuído não precisa\ + \ incluir nada que não seja normalmente distribuído (tanto no formato fonte como no binário)\ + \ com os componentes principais (compilador, kernel e assim por diante) do sistema operacional\ + \ no qual o executável é executado, a menos que este componente em si acompanhe o executável.\ + \ \nSe a distribuição do executável ou código-objeto for feita mediante a permissão de acesso\ + \ para copiar, a partir de um local designado, então, a permissão de acesso equivalente\ + \ para copiar o código-fonte a partir do mesmo local será considerada como distribuição\ + \ do código-fonte, mesmo que os terceiros não sejam levados a copiar a fonte junto com o\ + \ código-objeto. \n\n\n\n\nVocê não poderá copiar, modificar, sublicenciar ou distribuir\ + \ o Programa, exceto conforme expressamente estabelecido nesta Licença. Qualquer tentativa\ + \ de, de outro modo, copiar, modificar, sublicenciar ou distribuir o Programa será inválida,\ + \ e automaticamente rescindirá seus direitos sob esta Licença. Entretanto, terceiros que\ + \ tiverem recebido cópias ou direitos de você de acordo esta Licença não terão suas licenças\ + \ rescindidas, enquanto estes terceiros mantiverem o seu pleno cumprimento. \n\n\nVocê não\ + \ é obrigado a aceitar esta Licença, uma vez que você não a assinou. Porém, nada mais concede\ + \ a você permissão para modificar ou distribuir o Programa ou respectivas obras derivativas.\ + \ Tais atos são proibidos por lei se você não aceitar esta Licença. Conseqüentemente, ao\ + \ modificar ou distribuir o Programa (ou qualquer obra baseada no Programa), você estará\ + \ manifestando sua aceitação desta Licença para fazê-lo, bem como de todos os seus termos\ + \ e condições para copiar, distribuir ou modificar o Programa ou obras nele baseadas. \n\ + \n\nCada vez que você redistribuir o Programa (ou obra baseada no Programa), o receptor\ + \ receberá, automaticamente, uma licença do licenciante original, para copiar, distribuir\ + \ ou modificar o Programa, sujeito a estes termos e condições. Você não poderá impor quaisquer\ + \ restrições adicionais ao exercício, pelos receptores, dos direitos concedidos por este\ + \ instrumento. Você não tem responsabilidade de promover o cumprimento por parte de terceiros\ + \ desta licença. \n\n\nSe, como resultado de uma sentença judicial ou alegação de violação\ + \ de patente, ou por qualquer outro motivo (não restrito às questões de patentes), forem\ + \ impostas a você condições (tanto através de mandado judicial, contrato ou qualquer outra\ + \ forma) que contradigam as condições desta Licença, você não estará desobrigado quanto\ + \ às condições desta Licença. Se você não puder atuar como distribuidor de modo a satisfazer\ + \ simultaneamente suas obrigações sob esta licença e quaisquer outras obrigações pertinentes,\ + \ então, como conseqüência, você não poderá distribuir o Programa de nenhuma forma. Por\ + \ exemplo, se uma licença sob uma patente não permite a redistribuição por parte de todos\ + \ aqueles que tiverem recebido cópias, direta ou indiretamente de você, sem o pagamento\ + \ de royalties, então, a única forma de cumprir tanto com esta exigência quanto com esta\ + \ licença será deixar de distribuir, por completo, o Programa. \nSe qualquer parte desta\ + \ Cláusula for considerada inválida ou não executável, sob qualquer circunstância específica,\ + \ o restante da cláusula deverá continuar a ser aplicado e a cláusula, como um todo, deverá\ + \ ser aplicada em outras circunstâncias. \nEsta cláusula não tem a finalidade de induzir\ + \ você a infringir quaisquer patentes ou direitos de propriedade, nem de contestar a validade\ + \ de quaisquer reivindicações deste tipo; a única finalidade desta cláusula é proteger a\ + \ integridade do sistema de distribuição do software livre, o qual é implementado mediante\ + \ práticas de licenças públicas. Muitas pessoas têm feito generosas contribuições à ampla\ + \ gama de software distribuído através desse sistema, confiando na aplicação consistente\ + \ deste sistema; cabe ao autor/doador decidir se deseja distribuir software através de qualquer\ + \ outro sistema e um licenciado não pode impor esta escolha. \nEsta cláusula visa deixar\ + \ absolutamente claro o que se acredita ser uma conseqüência do restante desta Licença.\ + \ \n\n\nSe a distribuição e/ou uso do Programa for restrito em determinados países, tanto\ + \ por patentes ou por interfaces protegidas por direito autoral, o titular original dos\ + \ direitos autorais que colocar o Programa sob esta Licença poderá acrescentar uma limitação\ + \ geográfica de distribuição explícita excluindo esses países, de modo que a distribuição\ + \ seja permitida somente nos países ou entre os países que não foram excluídos dessa forma.\ + \ Nesse caso, esta Licença passa a incorporar a limitação como se esta tivesse sido escrita\ + \ no corpo desta Licença. \n\n\nA Free Software Foundation poderá de tempos em tempos publicar\ + \ novas versões e/ou versões revisadas da Licença Pública Geral. Essas novas versões serão\ + \ semelhantes em espírito à presente versão, mas podem diferenciar-se, porém, em detalhe,\ + \ para tratar de novos problemas ou preocupações. \nCada versão recebe um número de versão\ + \ distinto. Se o Programa especificar um número de versão desta Licença que se aplique a\ + \ ela e a \"qualquer versão posterior\", você terá a opção de seguir os termos e condições\ + \ tanto daquela versão como de qualquer versão posterior publicada pela Free Software Foundation.\ + \ Se o Programa não especificar um número de versão desta Licença, você poderá escolher\ + \ qualquer versão já publicada pela Free Software Foundation. \n\n\nSe você desejar incorporar\ + \ partes do Programa em outros programas livres cujas condições de distribuição sejam diferentes,\ + \ escreva ao autor solicitando a respectiva permissão. Para software cujos direitos autorais\ + \ sejam da Free Software Foundation, escreva para ela; algumas vezes, abrimos exceções para\ + \ isso. Nossa decisão será guiada pelos dois objetivos de preservar a condição livre de\ + \ todos os derivados de nosso software livre e de promover o compartilhamento e reutilização\ + \ de software, de modo geral. \n\n\nEXCLUSÃO DE GARANTIA \n\n\nCOMO O PROGRAMA É LICENCIADO\ + \ SEM CUSTO, NÃO HÁ NENHUMA GARANTIA PARA O PROGRAMA, NO LIMITE PERMITIDO PELA LEI APLICÁVEL.\ + \ EXCETO QUANDO DE OUTRA FORMA ESTABELECIDO POR ESCRITO, OS TITULARES DOS DIREITOS AUTORAIS\ + \ E/OU OUTRAS PARTES, FORNECEM O PROGRAMA \"NO ESTADO EM QUE SE ENCONTRA\", SEM NENHUMA\ + \ GARANTIA DE QUALQUER TIPO, TANTO EXPRESSA COMO IMPLÍCITA, INCLUINDO, DENTRE OUTRAS, AS\ + \ GARANTIAS IMPLÍCITAS DE COMERCIABILIDADE E ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. O RISCO\ + \ INTEGRAL QUANTO À QUALIDADE E DESEMPENHO DO PROGRAMA É ASSUMIDO POR VOCÊ. CASO O PROGRAMA\ + \ CONTENHA DEFEITOS, VOCÊ ARCARÁ COM OS CUSTOS DE TODOS OS SERVIÇOS, REPAROS OU CORREÇÕES\ + \ NECESSÁRIAS. \n\n\nEM NENHUMA CIRCUNSTÂNCIA, A MENOS QUE EXIGIDO PELA LEI APLICÁVEL OU\ + \ ACORDADO POR ESCRITO, QUALQUER TITULAR DE DIREITOS AUTORAIS OU QUALQUER OUTRA PARTE QUE\ + \ POSSA MODIFICAR E/OU REDISTRIBUIR O PROGRAMA, CONFORME PERMITIDO ACIMA, SERÁ RESPONSÁVEL\ + \ PARA COM VOCÊ POR DANOS, INCLUINDO ENTRE OUTROS, QUAISQUER DANOS GERAIS, ESPECIAIS, FORTUITOS\ + \ OU EMERGENTES, ADVINDOS DO USO OU IMPOSSIBILIDADE DE USO DO PROGRAMA (INCLUINDO, ENTRE\ + \ OUTROS, PERDAS DE DADOS OU DADOS SENDO GERADOS DE FORMA IMPRECISA, PERDAS SOFRIDAS POR\ + \ VOCÊ OU TERCEIROS OU A IMPOSSIBILIDADE DO PROGRAMA DE OPERAR COM QUAISQUER OUTROS PROGRAMAS),\ + \ MESMO QUE ESSE TITULAR, OU OUTRA PARTE, TENHA SIDO ALERTADA SOBRE A POSSIBILIDADE DE OCORRÊNCIA\ + \ DESSES DANOS. \n\n\nFINAL DOS TERMOS E CONDIÇÕES \nComo Aplicar Estes Termos para Seus\ + \ Novos Programas \nSe você desenvolver um programa novo e quiser que ele seja da maior\ + \ utilidade possível para o público, o melhor caminho para obter isto é fazer dele um software\ + \ livre, o qual qualquer pessoa pode redistribuir e modificar sob os presentes termos.\n\ + Para fazer isto, anexe as notificações seguintes ao programa. É mais seguro anexá-las ao\ + \ começo de cada arquivo-fonte, de modo a transmitir do modo mais eficiente a exclusão de\ + \ garantia; e cada arquivo deve ter ao menos a linha de \"direitos autorais reservados\"\ + \ e uma indicação de onde a notificação completa se encontra.\n\n\nDireitos Autorais Reservados (c)\ + \ \nEste programa é software livre; você pode redistribuí-lo e/ou modificá-lo\ + \ sob os termos da Licença Pública Geral GNU conforme publicada pela Free Software Foundation;\ + \ tanto a versão 2 da Licença, como (a seu critério) qualquer versão posterior.\nEste programa\ + \ é distribuído na expectativa de que seja útil, porém, SEM NENHUMA GARANTIA; nem mesmo\ + \ a garantia implícita de COMERCIABILIDADE OU ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte\ + \ a Licença Pública Geral do GNU para mais detalhes. \nVocê deve ter recebido uma cópia\ + \ da Licença Pública Geral do GNU junto com este programa; se não, escreva para a Free Software\ + \ Foundation, Inc., no endereço 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.\ + \ \nInclua também informações sobre como contatar você por correio eletrônico e por meio\ + \ postal. \n\nSe o programa for interativo, faça com que produza uma pequena notificação\ + \ como esta, quando for iniciado em um modo interativo: \nVersão 69 do Gnomovision, Direitos\ + \ Autorais Reservados (c) ano nome do autor. O Gnomovision NÃO POSSUI QUALQUER TIPO DE GARANTIA;\ + \ para detalhes, digite 'show w'. Este é um software livre e você é bem-vindo para redistribuí-lo\ + \ sob certas condições; digite 'show c' para detalhes. \nOs comandos hipotéticos `show w'\ + \ e `show c' devem mostrar as partes apropriadas da Licença Pública Geral. Naturalmente,\ + \ os comandos que você utilizar poderão ter outras denominações que não `show w' e `show\ + \ c'; eles poderão até ser cliques do mouse ou itens de um menu - o que for adequado ao\ + \ seu programa. \nVocê também pode solicitar a seu empregador (se você for um programador)\ + \ ou sua instituição acadêmica, se for o caso, para assinar uma \"renúncia de direitos autorais\"\ + \ sobre o programa, se necessário. Segue um exemplo; altere os nomes: \n\nA Yoyodyne Ltda.,\ + \ neste ato, renuncia a todos eventuais direitos autorais sobre o programa `Gnomovision'\ + \ (que realiza passagens em compiladores), escrito por James Hacker. \n\n1º de abril de 1989, Ty Coon, Presidente\nEsta Licença Pública Geral não permite\ + \ a incorporação do seu programa a programas proprietários. Se seu programa é uma biblioteca\ + \ de sub-rotinas, você poderá considerar ser mais útil permitir a ligação de aplicações\ + \ proprietárias à sua biblioteca. Se isso é o que você deseja fazer, utilize a Licença Pública\ + \ Geral de Biblioteca do GNU, ao invés desta Licença." json: cc-gpl-2.0-pt.json - yml: cc-gpl-2.0-pt.yml + yaml: cc-gpl-2.0-pt.yml html: cc-gpl-2.0-pt.html - text: cc-gpl-2.0-pt.LICENSE + license: cc-gpl-2.0-pt.LICENSE - license_key: cc-lgpl-2.1-pt + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-cc-lgpl-2.1-pt other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Licença Pública Geral Menor do GNU \n\n\nThis is an unofficial translation of the GNU\ + \ Lesser General Public License into Portuguese. It was not published by the Free Software\ + \ Foundation, and does not legally state the distribution terms for software that uses the\ + \ GNU LGPL--only the original English text of the GNU LGPL does that. However, we hope that\ + \ this translation will help Portuguese speakers understand the GNU LGPL better.\nEsta é\ + \ uma tradução não-oficial da GNU Lesser General Public License para o Português. Ela não\ + \ é publicada pela Free Software Foundation e não traz os termos de distribuição legal do\ + \ software que usa a GNU LGPL -- estes termos estão contidos apenas no texto da GNU LGPL\ + \ original em inglês. No entanto, esperamos que esta tradução ajudará no melhor entendimento\ + \ da GNU LGPL em Português.\n\nVersão 2.1, Fevereiro de 1999 \nCopyright © 1991, 1999 Free\ + \ Software Foundation, Inc.\n59 Temple Place, Suite [conjunto] 330, Boston, MA [Massachusetts]\ + \ 021111307 USA [Estados Unidos da América] É permitido a qualquer pessoa copiar e distribuir\ + \ cópias sem alterações deste documento de licença, sendo vedada, entretanto, sua modificação.\ + \ \n[Esta é a primeira versão da GPL Menor a ser lançada. Ela também constitui a sucessora\ + \ da Licença Pública de Biblioteca do GNU, daí o número 2.1. da versão]. \nIntrodução\n\ + As licenças da maioria dos softwares são elaboradas para suprimir sua liberdade de compartilhá-los\ + \ e modificá-los. As Licenças Públicas do GNU, ao contrário, têm o objetivo de assegurar\ + \ sua liberdade para compartilhar e modificar softwares livres para garantir que o software\ + \ seja livre para todos os seus usuários. \nA presente Licença Pública Geral Menor se aplica\ + \ a alguns pacotes de software especialmente designados - normalmente bibliotecas - da Free\ + \ Software Foundation e de outros autores que decidam utilizá-la. Você pode utilizá-la também,\ + \ mas recomendamos que antes, você analise cuidadosamente se esta licença, ou a Licença\ + \ Pública Geral comum, é a melhor estratégia a ser adotada em cada caso específico, tendo\ + \ como base as explicações abaixo. \nQuando falamos de software livre, estamos nos referindo\ + \ a liberdade de uso e não de gratuidade de preço. Nossas Licenças Públicas Gerais são elaboradas\ + \ para garantir que você tenha liberdade para distribuir cópias de software livre (cobrando\ + \ por esse serviço se você assim o desejar); que você receba código-fonte ou o obtenha,\ + \ se quiser; que você modifique o software e utilize partes dele em novos programas livres;\ + \ e que você tenha ciência de que pode praticar estes atos. \nA fim de proteger seus direitos,\ + \ é necessário que façamos restrições que proíbam distribuídores de negar estes direitos\ + \ a você ou de pedir que você que renuncie a eles. Essas restrições se traduzem em determinadas\ + \ responsabilidades que você deverá assumir, se vier a distribuir cópias da biblioteca ou\ + \ modificá-la. \nPor exemplo, se você distribuir cópias da biblioteca, seja gratuitamente\ + \ ou mediante um valor, terá de conceder a seus receptores todos os direitos que estamos\ + \ concedendo a você. Você terá de garantir que eles, também, recebam ou possam obter o código-fonte.\ + \ Se você ligar outro código com a biblioteca, você deve fornecer os arquivos-objeto completos\ + \ para os receptores, de modo que eles possam ligá-los novamente com a biblioteca após terem\ + \ feito mudanças na biblioteca e recompilado a mesma. E você terá de exibir a eles esses\ + \ termos, para que eles conheçam seus direitos. \nProtegemos seus direitos através de um\ + \ método que envolve dois passos: (1) estabelecemos direitos autorais sobre a biblioteca\ + \ e (2) oferecemos a você esta licença, que dá a você permissão para copiar, distribuir\ + \ e/ou modificar a biblioteca. \nPara proteger cada distribuidor, queremos deixar bem claro\ + \ que não há nenhuma garantia para a biblioteca livre. Além disso, se a biblioteca for modificada\ + \ por alguém e passada adiante, os receptores devem saber que o que eles têm não é a versão\ + \ original, de modo que a reputação do autor original não será afetada por problemas que\ + \ possam ser introduzidos por outros. \nPor fim, as patentes de software representam uma\ + \ ameaça constante para a existência de qualquer programa livre. Queremos assegurar que\ + \ uma empresa não possa efetivamente restringir os usuários de um programa livre por ter\ + \ obtido uma licença restritiva de um titular de direitos de patente. Por isso, insistimos\ + \ que qualquer licença de patente obtida para alguma versão da biblioteca seja consistente\ + \ com a plena liberdade de uso, especificada nesta licença. \nA maior parte dos softwares\ + \ do GNU, incluindo algumas bibliotecas, está coberta pela Licença Pública Geral comum do\ + \ GNU. A presente Licença Pública Geral Menor do GNU se aplica a determinadas bibliotecas\ + \ designadas, sendo bastante diferente da Licença Pública Geral comum. Usamos esta licença\ + \ para determinadas bibliotecas, a fim de permitir a ligação dessas bibliotecas a programas\ + \ não-livres. \nQuando um programa é ligado a uma biblioteca, seja estaticamente ou usando\ + \ uma biblioteca compartilhada, essa combinação das duas é em termos legais uma obra combinada,\ + \ uma derivação da biblioteca original. Por essa razão, a Licença Pública Geral comum somente\ + \ permite essa ligação se a combinação como um todo atender a seus critérios de liberdade.\ + \ A Licença Pública Geral Menor permite critérios mais flexíveis para a ligação de outros\ + \ códigos à biblioteca. \nChamamos esta licença de Licença Pública Geral \"Menor\" porque\ + \ ela faz Menos para proteger a liberdade do usuário do que a Licença Pública Geral comum.\ + \ Ela também oferece a outros desenvolvedores de software livre uma Menor vantagem na competição\ + \ com com programas não livres. Essas desvantagens são o motivo pelo qual usamos a Licença\ + \ Pública Geral comum para muitas bibliotecas. Por outro lado, em determinadas circunstâncias\ + \ especiais, a licença Menor oferece vantagens. \nPor exemplo, em raras ocasiões, pode existir\ + \ uma necessidade especial de se incentivar a mais ampla utilização possível de uma determinada\ + \ biblioteca, para que ela se torne um padrão de fato. Para conseguir isso, deve-se permitir\ + \ que programas não-livres utilizem a biblioteca. Um caso mais freqüente ocorre quando uma\ + \ biblioteca livre desempenha a mesma função de bibliotecas não-livres amplamente usadas.\ + \ Nesse caso, existem poucas vantagens em restringir a biblioteca livre somente para software\ + \ livre, então utilizamos a Licença Pública Geral Menor. \nEm outros casos, a permissão\ + \ para usar uma determinada biblioteca em programas não-livres possibilita que um maior\ + \ número de pessoas use um amplo leque de softwares livres. Por exemplo, a permissão para\ + \ usar a Biblioteca C do GNU permite que muito mais pessoas usem todo o sistema operacional\ + \ do GNU, bem como sua variante, o sistema operacional do GNU/Linux. \nMesmo protegendo\ + \ a liberdade dos usuários em menor grau, a Licença Pública Geral Menor garante ao usuário\ + \ de um programa que esteja ligado à Biblioteca a liberdade e os meios para executar o programa,\ + \ usando uma versão modificada da Biblioteca. \nSeguem abaixo os termos e condições exatos\ + \ para a cópia, distribuição e modificação. Preste muita atenção à diferença entre uma \"\ + obra baseada na biblioteca\" e uma \"obra que usa a biblioteca\". O primeiro contém código\ + \ que é derivado da biblioteca, enquanto o segundo tem de ser combinado à biblioteca para\ + \ que possa ser executado. \nLICENÇA PÚBLICA GERAL MENOR DO GNU\nTERMOS E CONDIÇÕES PARA\ + \ CÓPIA, DISTRIBUIÇÃO E MODIFICAÇÃO \n\n\nO presente Contrato de Licença se aplica a qualquer\ + \ biblioteca de software ou a outro programa que contenha um aviso colocado pelo titular\ + \ dos direitos autorais ou outra parte autorizada, informando que ela pode ser distribuída\ + \ nos termos desta Licença Pública Geral Menor (também denominada \"esta Licença\"). Cada\ + \ licenciado doravante será denominado \"você\". \nUma \"biblioteca\" significa uma coleção\ + \ de funções de software e/ou dados preparados, de forma a serem convenientemente ligados\ + \ com programas de aplicação (que usam algumas dessas funções e dados) para formar executáveis.\ + \ \nO termo \"Biblioteca\", abaixo, refere-se a qualquer biblioteca de software ou obra\ + \ que tenha sido distribuída de acordo com esses termos. Uma \"obra baseada na Biblioteca\"\ + \ significa tanto a Biblioteca como qualquer obra derivada, nos termos da legislação autoral:\ + \ isto é, uma obra contendo a Biblioteca ou parte dela, seja sem alterações ou com modificações\ + \ e/ou traduzida diretamente para outra linguagem. (Doravante, o termo \"modificação\" inclui,\ + \ sem reservas, o termo \"tradução\"). \nO código-fonte de uma obra significa o formato\ + \ preferencial da obra para que sejam feitas modificações na mesma. Para uma biblioteca,\ + \ o código-fonte completo significa todo o código fonte para todos os módulos contidos na\ + \ mesma, além de quaisquer arquivos de definição de interface associados, além dos scripts\ + \ utilizados para controlar a compilação e a instalação da biblioteca.\nOutras atividades\ + \ que não a cópia, distribuição e modificação não são cobertas por esta Licença; elas estão\ + \ fora de seu escopo. O ato de executar um programa usando a Biblioteca não tem restrições,\ + \ e o resultado gerado a partir desse programa encontra-se coberto somente se seu conteúdo\ + \ constituir uma obra baseada na Biblioteca (independente do uso da Biblioteca em uma ferramenta\ + \ para escrevê-lo). Na verdade, isto dependerá daquilo que a Biblioteca faz e o que o programa\ + \ que usa a biblioteca faz. \n\n\nVocê pode copiar e distribuir cópias sem alterações do\ + \ código-fonte completo da Biblioteca ao recebê-lo, em qualquer meio ou mídia, desde que\ + \ publique, ostensiva e adequadamente, um aviso de direitos autorais (ou copyright) apropriado\ + \ e uma notificação sobre a exoneração de garantias; mantenha intactas as informações, avisos\ + \ ou notificações referentes a esta Licença e à ausência de qualquer garantia; e distribua\ + \ uma cópia desta Licença junto com a Biblioteca. \nVocê poderá cobrar um valor pelo ato\ + \ físico de transferir uma cópia, e você pode oferecer, se quiser, a proteção de uma garantia\ + \ em troca de um valor. \n\n\n\nVocê pode modificar sua cópia ou cópias da Biblioteca ou\ + \ qualquer parte dela, formando, assim, uma obra baseada na Biblioteca, bem como copiar\ + \ e distribuir essas modificações ou obra, em conformidade com a Cláusula 1 acima, desde\ + \ que atenda, ainda, a todas as seguintes condições: \n\n\n\n\t\nO obra modificada tem de\ + \ ser, por si só, uma biblioteca de software. \nVocê tem de fazer com que os arquivos modificados\ + \ contenham avisos, em destaque, de que você modificou os arquivos e a data de qualquer\ + \ modificação. \nVocê tem de fazer com que a obra como um todo seja licenciada, sem nenhum\ + \ custo, a todos os terceiros, de acordo com esta Licença.\nSe um dispositivo, na Biblioteca\ + \ modificada, se referir a uma função ou a uma tabela de dados a ser fornecida por um programa\ + \ de aplicação que usa esse dispositivo, outro que não um argumento transmitido quando o\ + \ dispositivo é invocado, nesse caso, você terá de fazer um esforço de boa-fé para assegurar\ + \ que, no caso de uma aplicação que não forneça essa função ou tabela, o dispositivo ainda\ + \ assim opere, e irá realizar qualquer parte de sua finalidade que permanecer significativa.\n\ + \n(Por exemplo, uma função de uma biblioteca para computar raízes quadradas tem uma finalidade\ + \ que é completamente bem definida independentemente da aplicação. Por essa razão, a letra\ + \ d, da Cláusula 2, exige que qualquer função ou tabela fornecida pela aplicação, usada\ + \ por essa função, tem de ser opcional: se a aplicação não fornecê-la, a função de raízes\ + \ quadradas deverá ainda assim computar raízes quadradas). \nEssas exigências se aplicam\ + \ à obra modificada como um todo. Se partes identificáveis dessa obra não forem derivadas\ + \ da Biblioteca e puderem ser consideradas razoavelmente, em si, como obras independentes\ + \ e separadas, nesse caso, esta Licença e seus termos não se aplicarão a essas partes quando\ + \ você distribui-las como obras separadas. Todavia, quando você distribuir essas mesmas\ + \ partes como partes de um todo, que por si seja uma obra baseada na Biblioteca, a distribuição\ + \ desse todo deverá ser realizada de acordo com esta Licença, cujas respectivas permissões\ + \ para outros licenciados extendem-se à integralidade deste todo, dessa forma, a toda e\ + \ qualquer parte, independentemente de quem a escreveu. \nAssim, esta cláusula não tem a\ + \ intenção de afirmar direitos ou contestar os seus direitos sobre uma obra escrita inteiramente\ + \ por você; a intenção é, antes, de exercer o direito de controlar a distribuição de obras\ + \ derivadas ou obras coletivas baseadas na Biblioteca. \nAlém disto, a simples agregação\ + \ de outra obra, que não seja baseada na Biblioteca, à Biblioteca (ou a uma obra baseada\ + \ na Biblioteca) em um volume de meio ou mídia de armazenamento ou distribuição, não inclui\ + \ esta outra obra no âmbito desta Licença. \n\n\nVocê poderá optar por aplicar os termos\ + \ da Licença Pública Geral do GNU ao invés desta Licença, para uma determinada cópia da\ + \ Biblioteca. Para tanto, você deverá alterar todos os avisos ou notificações que se refiram\ + \ a esta Licença, para que eles se refiram à Licença Pública Geral comum do GNU, versão\ + \ 2, ao invés desta Licença. (Se uma versão mais nova do que a versão 2 da Licença Pública\ + \ Geral comum do GNU tiver sido gerada, então você poderá especificar essa versão, se preferir).\ + \ Não faça nenhuma outra alteração nesses avisos ou notificações. \nUma vez que essa alteração\ + \ tenha sido feita em uma determinada cópia, ela é irreversível para esta cópia, passando\ + \ a Licença Pública Geral comum do GNU a ser aplicada para todas as cópias e obras derivadas\ + \ subseqüentes, feitas a partir dessa cópia. \nEssa opção é útil quando você desejar copiar\ + \ parte do código da Biblioteca em um programa que não seja uma biblioteca. \n\n\nVocê poderá\ + \ copiar e distribuir a Biblioteca (ou uma parte ou obra derivada dela, de acordo com a\ + \ Cláusula 2) em código-objeto ou formato executável, sob as Cláusulas 1 e 2 acima, desde\ + \ que inclua todo o código-fonte correspondente, passível de leitura pela máquina, que deve\ + \ ser distribuído sob os termos das Cláusulas 1 e 2 acima, em um meio ou mídia costumeiramente\ + \ utilizado para o intercâmbio de software. \nSe a distribuição do código-objeto for feita\ + \ pela oferta de acesso para cópia a partir de um local designado, então a permissão de\ + \ acesso equivalente para copiar o código-fonte a partir do mesmo local atende a exigência\ + \ de distribuição do código-fonte, mesmo que terceiros não sejam levados a copiar a fonte\ + \ junto com o código-objeto. \n\n\nUm programa que não contenha nenhum derivativo de qualquer\ + \ parte da Biblioteca, mas que seja desenhado para operar com a Biblioteca ao ser compilado\ + \ ou ligado a ela, é chamado de uma \"obra que usa a Biblioteca\". Essa obra, isoladamente,\ + \ não é uma obra derivada da Biblioteca e, portanto, fica de fora do âmbito desta Licença.\ + \ \n\nEntretanto, a ligação de uma \"obra que usa a Biblioteca\" com a Biblioteca constitui\ + \ um executável que é um derivado da Biblioteca (pois contém partes da Biblioteca), e não\ + \ uma \"obra que usa a Biblioteca\". O executável é, assim, coberto por esta Licença. A\ + \ Cláusula 6 estabelece os termos para a distribuição desses executáveis. \nQuando uma \"\ + obra que usa a Biblioteca\" usar material de um arquivo de cabeçalho que é parte da Biblioteca,\ + \ o código-objeto para a obra poderá ser uma obra derivada da Biblioteca, mesmo que o código-fonte\ + \ não o seja. Para que isto seja verdade, é especialmente importante se a obra pode ser\ + \ ligada sem a Biblioteca, ou se a obra é, em si mesma, uma biblioteca. O limiar para que\ + \ isto seja verdade não é definido com precisão pela lei. \nSe um arquivo-objeto usar somente\ + \ parâmetros numéricos, layouts e accessors da estrutura de dados, bem como pequenas macros\ + \ e pequenas funções inline (dez linhas ou menos de extensão), então o uso do arquivo-objeto\ + \ não é restrito, independente de ser ele legalmente uma obra derivada. (Executáveis contendo\ + \ este código-objeto mais partes da Biblioteca continuam submetidos aos termos da Cláusula\ + \ 6). \nDo contrário, se a obra for um derivado da Biblioteca, você poderá distribuir o\ + \ código objeto da obra sob os termos da Cláusula 6. Quaisquer executáveis contendo esta\ + \ obra também se submetmem à Cláusula 6, estejam ou não diretamente ligados à Biblioteca\ + \ em si. \n\n\nComo exceção à Cláusula acima, você também pode combinar ou ligar uma \"\ + obra que usa a Biblioteca\" à Biblioteca para produzir uma obra contendo partes da Biblioteca\ + \ e distribuí-la de acordo com os termos de sua escolha, desde que estes termos permitam\ + \ modificações na obra para uso próprio por parte do cliente e engenharia reversa para depuração\ + \ dessas modificações. \nEm cada cópia da obra, você terá de colocar um aviso, em destaque,\ + \ de que a Biblioteca foi usada e que ela e seu uso estão cobertos por esta Licença. Você\ + \ deverá fornecer uma cópia desta Licença. Se, durante a execução, a obra exibir avisos\ + \ ou notificações de direitos autorais (ou copyright), você terá de incluir, entre eles,\ + \ o aviso de direitos autorais (ou copyright) referente à Biblioteca, bem como uma referência\ + \ direcionando o usuário para a cópia desta Licença. Além disso, você dever tomar ao menos\ + \ uma das seguintes providências: \n\n\n\nIncluir na obra todo o código-fonte da Biblioteca,\ + \ passível de leitura pela máquina, incluindo quaisquer modificações que foram usadas na\ + \ obra (as quais devem ser distribuídas conforme as Cláusulas 1 e 2 acima); e, se a obra\ + \ for um executável ligado à Biblioteca, com toda a \"obra que usa a Bilblioteca\" passível\ + \ de leitura pela máquina, como código-objeto e/ou código-fonte, de modo que o usuário possa\ + \ modificar a biblioteca e, depois, religar para produzir um executável modificado contendo\ + \ a Biblioteca modificada. (Fica entendido que o usuário que modificar o conteúdo dos arquivos\ + \ de definições da Biblioteca não necessariamente será capaz de recompilar a aplicação para\ + \ usar as definições modificadas). \n\n\n\n\nUsar um mecanismo adequado de biblioteca compartilhada\ + \ para ligar com a Biblioteca. Um mecanismo adequado é aquele que (a) usa, ao tempo da execução,\ + \ uma cópia da biblioteca já presente no sistema do computador do usuário, e (2) irá operar\ + \ adequadamente com uma versão modificada da biblioteca, se o usuário instalar uma, desde\ + \ que a versão modificada seja compatível com a interface da versão com a qual a obra foi\ + \ feita. \n\n\n\n\nIncluir na obra uma oferta por escrito, válida por pelo menos 3 anos,\ + \ oferencendo ao mesmo usuário os materiais especificados na letra \"a\" da Cláusula 6 acima,\ + \ por um custo não superior ao custo de fazer esta distribuição. \n\n\n\n\nSe a distribuição\ + \ da obra for feita com a permissão de acesso para copiar, a partir de um local designado,\ + \ oferecer acesso equivalente para copiar os materiais acima especificados, a partir do\ + \ mesmo local. \n\n\nCertificar-se se o usuário já recebeu uma cópia desses materiais ou\ + \ de que você já enviou uma cópia a esse usuário.\n\nPara um executável, o formato exigido\ + \ da \"obra que usa a Biblioteca\" deve incluir quaisquer dados e programas utilitários\ + \ necessários para reprodução do executável a partir dele. Todavia, como uma exceção especial,\ + \ os materiais a serem distribuídos não necessitam incluir algo que seja normalmente distribuído\ + \ (tanto no formato fonte quanto binário) com os componentes mais importantes (compilador,\ + \ kernel, e assim por diante) do sistema operacional no qual executável é executado, a menos\ + \ que esse componente, em si, acompanhe o executável.\nPode ocorrer que essa exigência contradiga\ + \ as restrições da licença de outras bibliotecas proprietárias que normalmente não acompanham\ + \ o sistema operacional. Essa contradição significa que você não pode utilizar ambas e a\ + \ Biblioteca juntas em um executável distribuído por você. \n\n\n\nVocê pode colocar dispositivos\ + \ da biblioteca que sejam uma obra baseada na Biblioteca lado-a-lado em uma única biblioteca\ + \ junto com outros dispositivos de bibliotecas, desde que uma distribuição separada da obra\ + \ baseada na Biblioteca e dos outros dispositivos de bibliotecas seja, de outro modo, permitida\ + \ e desde que você tome uma das seguintes providências: \n\n\n\n\n\n\nIncluir na biblioteca\ + \ combinada uma cópia dessa obra baseada na Biblioteca sem a combinação com quaisquer outros\ + \ dispositivos de biblioteca. Essa cópia tem de ser distribuída de acordo com as condições\ + \ das cláusulas acima. \n\n\n\n\nJunto com a biblioteca combinada, fornecer um aviso, em\ + \ destaque, sobre o fato de que parte dela é uma obra baseada na Biblioteca, e explicando\ + \ onde encontrar o formato não combinado incluso dessa mesma obra. \n\n\n\n\n\n\nVocê não\ + \ poderá copiar, modificar, sublicenciar, ligar, ou distribuir a Biblioteca, exceto conforme\ + \ expressamente disposto nesta Licença. Qualquer tentativa de, de outro modo, copiar, modificar,\ + \ sublicenciar, ligar ou distribuir a Biblioteca é inválida, e automaticamente terminará\ + \ seus direitos sob esta Licença. Todavia, terceiros que tiverem recebido cópias ou direitos\ + \ de você, de acordo com esta Licença, não terão seus direitos rescindidos, enquanto estes\ + \ terceiros mantiverem o seu pleno cumprimento. \n\n\n\n\nVocê não é obrigado a aceitar\ + \ esta Licença, uma vez que você não a assinou. Entretanto, nada mais concede a você permissão\ + \ para modificar ou distribuir a Biblioteca ou suas obras derivadas. Esses atos são proibidos\ + \ por lei se você não aceitar esta Licença. Portanto, ao modificar ou distribuir a Biblioteca\ + \ (ou qualquer obra baseada na Biblioteca), você manifesta sua aceitação desta Licença para\ + \ fazê-lo, bem como de todos os seus termos e condições para cópia, distribuição ou modificação\ + \ da Biblioteca ou obras nela baseadas. \n\n\n\n\nA cada vez que você redistribuir a Biblioteca\ + \ (ou qualquer obra nela baseada), o receptor automaticamente recebe uma licença do licenciante\ + \ original para copiar, distribuir, ligar ou modificar a Biblioteca, sujeito a estes respectivos\ + \ termos e condições. Você não poderá impor quaisquer restrições adicionais ao exercício,\ + \ pelos receptores, dos direitos concedidos por este instrumento. Você não tem responsabilidade\ + \ de promover o cumprimento desta licença por parte de terceiros. \n\n\n\nSe, como resultado\ + \ de uma sentença judicial ou alegação de violação de patente, ou por qualquer outro motivo\ + \ (não restrito às questões de patentes), forem impostas a você condições (tanto através\ + \ de mandado judicial, contrato ou qualquer outra forma) que contradigam as condições desta\ + \ Licença, você não estará desobrigado quanto às condições desta Licença. Se você não puder\ + \ atuar como distribuidor de modo a satisfazer simultaneamente suas obrigações sob esta\ + \ licença e quaisquer outras obrigações pertinentes, então, como conseqüência, você não\ + \ poderá distribuir a Biblioteca de nenhuma forma. Por exemplo, se uma licença sob uma patente\ + \ não permite a redistribuição por parte de todos aqueles que tiverem recebido cópias, direta\ + \ ou indiretamente de você, sem o pagamento de royalties, então, a única forma de cumprir\ + \ tanto com esta exigência quanto com esta licença será deixar de distribuir, por completo,\ + \ a Biblioteca. \nSe qualquer parte desta Cláusula for considerada inválida ou não executável,\ + \ sob qualquer circunstância específica, o restante da cláusula deverá continuar a ser aplicado\ + \ e a cláusula, como um todo, deverá ser aplicada em outras circunstâncias. \nEsta cláusula\ + \ não tem a finalidade de induzir você a infringir quaisquer patentes ou direitos de propriedade,\ + \ nem de contestar a validade de quaisquer reivindicações deste tipo; a única finalidade\ + \ desta cláusula é proteger a integridade do sistema de distribuição do software livre,\ + \ o qual é implementado mediante práticas de licenças públicas. Muitas pessoas têm feito\ + \ generosas contribuições à ampla gama de software distribuído através desse sistema, confiando\ + \ na aplicação consistente deste sistema; cabe ao autor/doador decidir se deseja distribuir\ + \ software através de qualquer outro sistema e um licenciado não pode impor esta escolha.\ + \ \nEsta cláusula visa deixar absolutamente claro o que se acredita ser uma conseqüência\ + \ do restante desta Licença. \n\n\n\nSe a distribuição e/ou uso da Biblioteca for restrito\ + \ em determinados países, tanto por patentes ou por interfaces protegidas por direito autoral,\ + \ o titular original dos direitos autorais que colocar a Biblioteca sob esta Licença poderá\ + \ acrescentar uma limitação geográfica de distribuição explícita excluindo esses países,\ + \ de modo que a distribuição seja permitida somente nos países ou entre os países que não\ + \ foram excluídos dessa forma. Nesse caso, esta Licença passa a incorporar a limitação como\ + \ se esta tivesse sido escrita no corpo desta Licença \n\n\n\nA Free Software Foundation\ + \ [Fundação Software Livre] poderá de tempos em tempos publicar versões revisadas e/ou novas\ + \ da Licença Pública Geral Menor. Essas novas versões serão semelhantes em espírito à presente\ + \ versão, podendo, porém, ter diferenças nos detalhes, para tratar de novos problemas ou\ + \ preocupações. \nCada versão recebe um número distinto de versão. Se a Biblioteca especificar\ + \ um número de versão desta Licença, aplicável à Biblioteca ou a \"qualquer versão posterior\"\ + , você terá a opção de seguir os termos e condições tanto daquela versão como de qualquer\ + \ versão posterior publicada pela Free Software Foundation. Se a Biblioteca não especificar\ + \ um número de licença da versão, você poderá escolher qualquer versão já publicada pela\ + \ Free Software Foundation. \n\n\n\nSe você desejar incorporar partes da Biblioteca em outros\ + \ programas livres cujas condições de distribuição sejam incompatíveis com estas, escreva\ + \ ao autor para solicitar permissão. Para software cujos direitos autorais pertencerem à\ + \ Free Software Foundation, escreva à Fundação; algumas vezes, fazemos exceções nesse sentido.\ + \ Nossa decisão será guiada pelos dois objetivos de preservar a condição livre de todos\ + \ os derivados de nosso software livre e de promover o compartilhamento e reutilização de\ + \ softwares, de modo geral. \n\n\n\nEXCLUSÃO DE GARANTIA \n\n\n\nCOMO A BIBLIOTECA É LICENCIADA\ + \ SEM CUSTO, NÃO HÁ NENHUMA GARANTIA PARA A BIBLIOTECA, NO LIMITE PERMITIDO PELA LEI APLICÁVEL.\ + \ EXCETO QUANDO DE OUTRA FORMA ESTABELECIDO POR ESCRITO, OS TITULARES DOS DIREITOS AUTORAIS\ + \ E/OU OUTRAS PARTES FORNECEM A BIBLIOTECA \"NO ESTADO EM QUE SE ENCONTRA\", SEM NENHUMA\ + \ GARANTIA DE QUALQUER TIPO, TANTO EXPRESSA COMO IMPLÍCITA, INCLUINDO, DENTRE OUTRAS, AS\ + \ GARANTIAS IMPLÍCITAS DE COMERCIABILIDADE E ADEQUAÇÃO PARA UMA FINALIDADE ESPECÍFICA. O\ + \ RISCO INTEGRAL QUANTO À QUALIDADE E DESEMPENHO DA BIBLIOTECA É ASSUMIDO POR VOCÊ. CASO\ + \ A BIBLIOTECA CONTENHA DEFEITOS, VOCÊ ARCARÁ COM OS CUSTOS DE TODOS OS SERVIÇOS, REPAROS\ + \ OU CORREÇÕES NECESSÁRIAS. \n\n\n\n\nEM NENHUMA CIRCUNSTÂNCIA, A MENOS QUE EXIGIDO PELA\ + \ LEI APLICÁVEL OU ACORDADO POR ESCRITO, QUALQUER TITULAR DE DIREITOS AUTORAIS OU QUALQUER\ + \ OUTRA PARTE QUE POSSA MODIFICAR E/OU REDISTRIBUIR A BIBLIOTECA, CONFORME PERMITIDO ACIMA,\ + \ SERÁ RESPONSÁVEL PARA COM VOCÊ POR DANOS, INCLUINDO ENTRE OUTROS QUAISQUER DANOS GERAIS,\ + \ ESPECIAIS, FORTUITOS OU EMERGENTES, ADVINDOS DO USO OU IMPOSSIBILIDADE DE USO DA BIBLIOTECA\ + \ (INCLUINDO, ENTRE OUTROS, PERDA DE DADOS, DADOS SENDO GERADOS DE FORMA IMPRECISA, PERDAS\ + \ SOFRIDAS POR VOCÊ OU TERCEIROS OU A IMPOSSIBILIDADE DA BIBLIOTECA DE OPERAR COM QUALQUER\ + \ OUTRO SOFTWARE), MESMO QUE ESSE TITULAR, OU OUTRA PARTE, TENHA SIDO AVISADO SOBRE A POSSIBILIDADE\ + \ DESSES DANOS. \n\n\n\nFINAL DOS TERMOS E CONDIÇÕES \nComo Aplicar Estes Termos para Suas\ + \ Novas Bibliotecas\nSe você desenvolver uma nova biblioteca e quiser que ela seja da maior\ + \ utilidade possível para o público, nós recomendamos fazer dela um software livre que todos\ + \ possam redistribuir e modificar. Você pode fazer isto permitindo a redistribuição sob\ + \ estes termos (ou, alternativamente, sob os termos da Licença Pública Geral comum)\nPara\ + \ fazer isto, anexe as notificações seguintes à biblioteca. É mais seguro anexá-las ao começo\ + \ de cada arquivo-fonte, de modo a transmitir do modo mais eficiente a exclusão de garantia;\ + \ e cada arquivo deve ter ao menos a linha de \"direitos autorais reservados\" e uma indicação\ + \ de onde a notificação completa se encontra.\n\n\nDireitos Autorais Reservados (c) \n\ + Esta biblioteca é software livre; você pode redistribuí-la e/ou modificá-la sob os termos\ + \ da Licença Pública Geral \n\nMenor do GNU conforme publicada pela Free Software Foundation;\ + \ tanto a versão 2.1 da Licença, ou (a seu critério) qualquer versão posterior.\nEsta biblioteca\ + \ é distribuído na expectativa de que seja útil, porém, SEM NENHUMA GARANTIA; nem mesmo\ + \ a garantia implícita de COMERCIABILIDADE OU ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte\ + \ a Licença Pública Geral Menor do GNU para mais detalhes. \nVocê deve ter recebido uma\ + \ cópia da Licença Pública Geral Menor do GNU junto com esta biblioteca; se não, escreva\ + \ para a Free Software Foundation, Inc., no endereço 59 Temple Street, Suite 330, Boston,\ + \ MA 02111-1307 USA. \nInclua também informações sobre como contatar você por correio eletrônico\ + \ e por meio postal.\n\n\n\n\nVocê também pode solicitar a seu empregador (se você for um\ + \ programador) ou a sua instituição acadêmica, se for o caso, para assinar uma \"renúncia\ + \ de direitos autorais\" sobre a biblioteca, se necessário. Segue um exemplo; altere os\ + \ nomes: \n\n\n\n\nA Yoyodyne Ltda., neste ato, renuncia a todos eventuais direitos autorais\ + \ sobre a biblioteca 'Frob' (uma biblioteca para ajustar fechaduras), escrita por James\ + \ Random Hacker. \n\n1º de abril de 1990, Ty Coon, Presidente \n\ + Isto é tudo!" json: cc-lgpl-2.1-pt.json - yml: cc-lgpl-2.1-pt.yml + yaml: cc-lgpl-2.1-pt.yml html: cc-lgpl-2.1-pt.html - text: cc-lgpl-2.1-pt.LICENSE + license: cc-lgpl-2.1-pt.LICENSE - license_key: cc-nc-sampling-plus-1.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-cc-nc-sampling-plus-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Noncommercial Sampling Plus 1.0 \nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND\ + \ DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT\ + \ RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE\ + \ COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY\ + \ FOR DAMAGES RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED\ + \ UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE\ + \ WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER\ + \ THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING\ + \ ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF\ + \ THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR\ + \ ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means\ + \ a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its\ + \ entirety in unmodified form, along with a number of other contributions, constituting\ + \ separate and independent works in themselves, are assembled into a collective whole. A\ + \ work that constitutes a Collective Work will not be considered a Derivative Work (as defined\ + \ below) for the purposes of this License.\n\n\"Derivative Work\" means a work based upon\ + \ the Work or upon the Work and other pre-existing works, such as a translation, musical\ + \ arrangement, dramatization, fictionalization, motion picture version, sound recording,\ + \ art reproduction, abridgment, condensation, or any other form in which the Work may be\ + \ recast, transformed, or adapted, except that a work that constitutes a Collective Work\ + \ will not be considered a Derivative Work for the purpose of this License.\n\n\"Licensor\"\ + \ means the individual or entity that offers the Work under the terms of this License.\n\ + \n\"Original Author\" means the individual or entity who created the Work.\n\n\"Work\" means\ + \ the copyrightable work of authorship offered under the terms of this License.\n\n\"You\"\ + \ means an individual or entity exercising rights under this License who has not previously\ + \ violated the terms of this License with respect to the Work, or who has received express\ + \ permission from the Licensor to exercise rights under this License despite a previous\ + \ violation.\n\n2. Fair Use Rights. Nothing in this license is intended to reduce, limit,\ + \ or restrict any rights arising from fair use, first sale or other limitations on the exclusive\ + \ rights of the copyright owner under copyright law or other applicable laws.\n\n3. License\ + \ Grant & Restrictions. Subject to the terms and conditions of this License, Licensor hereby\ + \ grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the\ + \ applicable copyright) license to exercise the rights in the Work as stated below on the\ + \ conditions as stated below:\n\nNoncommercial use only. You may not exercise any of the\ + \ rights granted to You in this license in any manner that is primarily intended for or\ + \ directed toward commercial advantage or private monetary compensation. The exchange of\ + \ the Work for other copyrighted works by means of digital file-sharing or otherwise shall\ + \ not be considered to be intended for or directed toward commercial advantage or private\ + \ monetary compensation, provided there is no payment of any monetary compensation in connection\ + \ with the exchange of copyrighted works.\nNoncommercial re-creativity permitted. You may\ + \ create and reproduce Derivative Works, provided that:\nthe Derivative Work(s) constitute\ + \ a good-faith partial or recombined usage employing \"sampling,\" \"collage,\" \"mash-up,\"\ + \ or other comparable artistic technique, whether now known or hereafter devised, that is\ + \ highly transformative of the original, as appropriate to the medium, genre, and market\ + \ niche; and\n\nYour Derivative Work(s) must only make a partial use of the original Work,\ + \ or if You choose to use the original Work as a whole, You must either use the Work as\ + \ an insubstantial portion of Your Derivative Work(s) or transform it into something substantially\ + \ different from the original Work. In the case of a musical Work and/or audio recording,\ + \ the mere synchronization (\"synching\") of the Work with a moving image shall not be considered\ + \ a transformation of the Work into something substantially different.\n\nYou may distribute\ + \ copies or phonorecords of, display publicly, perform publicly, and perform publicly by\ + \ means of a digital audio transmission, any Derivative Work(s) authorized under this License.\n\ + \nNoncommercial sharing of verbatim copies permitted.\n\nYou may reproduce the Work, incorporate\ + \ the Work into one or more Collective Works, and reproduce the Work as incorporated in\ + \ the Collective Works. You may distribute copies or phonorecords of, display publicly,\ + \ perform publicly, and perform publicly by means of a digital audio transmission the Work\ + \ including or incorporated in Collective Works.\n\nAttribution and Notice.\n\nIf You distribute,\ + \ publicly display, publicly perform, or publicly digitally perform the Work or any Derivative\ + \ Works or Collective Works, You must keep intact all copyright notices for the Work and\ + \ give the Original Author credit reasonable to the medium or means You are utilizing by\ + \ conveying the name (or pseudonym if applicable) of the Original Author if supplied; the\ + \ title of the Work if supplied; to the extent reasonably practicable, provide the Uniform\ + \ Resource Identifier, if any, that Licensor specifies to be associated with the Work or\ + \ a Derivative Work, unless such Uniform Resource Identifier does not refer to the copyright\ + \ notice or licensing information for the Work; and in the case of a Derivative Work, provide\ + \ a credit identifying the use of the Work in the Derivative Work (e.g., \"Remix of the\ + \ Work by Original Author,\" or \"Inclusion of a portion of the Work by Original Author\ + \ in collage\"). Such credit may be implemented in any reasonable manner; provided, however,\ + \ that in the case of a Derivative Work or Collective Work, at a minimum such credit will\ + \ appear where any other comparable authorship credit appears and in a manner at least as\ + \ prominent as such other comparable authorship credit.\n\nYou may distribute, publicly\ + \ display, publicly perform or publicly digitally perform the Work only under the terms\ + \ of this License, and You must include a copy of, or the Uniform Resource Identifier for,\ + \ this License with every copy or phonorecord of the Work or Derivative Work You distribute,\ + \ publicly display, publicly perform, or publicly digitally perform. You may not offer or\ + \ impose any terms on the Work that alter or restrict the terms of this License or the recipients'\ + \ exercise of the rights granted hereunder. You may not sublicense the Work. You must keep\ + \ intact all notices that refer to this License and to the disclaimer of warranties. You\ + \ may not distribute, publicly display, publicly perform, or publicly digitally perform\ + \ the Work with any technological measures that control access of use of the Work in a manner\ + \ inconsistent with the terms of this License. The above applies to the Work as incorporated\ + \ in a Collective Work, but this does not require the Collective Work apart from the Work\ + \ itself to be made subject to the terms of this License. Upon notice from any Licensor\ + \ You must, to the extent practicable, remove from the Derivative Work or Collective Work\ + \ any reference to such Licensor or the Original Author, as requested.\n\nThe above rights\ + \ may be exercised in all media and formats whether now known or hereafter devised. The\ + \ above rights include the right to make such modifications as are technically necessary\ + \ to exercise the rights in other media and formats. All rights not expressly granted by\ + \ Licensor are hereby reserved.\n\n4. Disclaimer\n\nUNLESS SPECIFIED OTHERWISE BY THE PARTIES\ + \ IN A SEPARATE WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR\ + \ WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,\ + \ FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS,\ + \ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE.\n\n5. Limitation\ + \ on Liability.\n\nIN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY\ + \ SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS\ + \ LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF\ + \ SUCH DAMAGES.\n\n6. Termination\n\nThis License and the rights granted hereunder will\ + \ terminate automatically upon any breach by You of the terms of this License. Individuals\ + \ or entities who have received Derivative Works or Collective Works from You under this\ + \ License, however, will not have their licenses terminated provided such individuals or\ + \ entities remain in full compliance with those licenses. Sections 1, 2, 4, 5, 6, and 7\ + \ will survive any termination of this License.\n\nSubject to the above terms and conditions,\ + \ the license granted here is perpetual (for the duration of the applicable copyright in\ + \ the Work). Notwithstanding the above, Licensor reserves the right to release the Work\ + \ under different license terms or to stop distributing the Work at any time; provided,\ + \ however that any such election will not serve to withdraw this License (or any other license\ + \ that has been granted under the terms of this License), and this License will continue\ + \ in full force and effect unless terminated as stated above.\n\n7. Miscellaneous\n\nEach\ + \ time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor\ + \ offers to the recipient a license to the Work on the same terms and conditions as the\ + \ license granted to You under this License.\n\nEach time You distribute or publicly digitally\ + \ perform a Derivative Work, Licensor offers to the recipient a license to the original\ + \ Work on the same terms and conditions as the license granted to You under this License.\n\ + \nIf any provision of this License is invalid or unenforceable under applicable law, it\ + \ shall not affect the validity or enforceability of the remainder of the terms of this\ + \ License, and without further action by the parties to this agreement, such provision shall\ + \ be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\ + \nNo term or provision of this License shall be deemed waived and no breach consented to\ + \ unless such waiver or consent shall be in writing and signed by the party to be charged\ + \ with such waiver or consent.\n\nThis License constitutes the entire agreement between\ + \ the parties with respect to the Work licensed here. There are no understandings, agreements,\ + \ or representations with respect to the Work, and with respect to the subject matter hereof,\ + \ not specified above. Licensor shall not be bound by any additional provisions that may\ + \ appear in any communication from You. This License may not be modified without the mutual\ + \ written agreement of the Licensor and You." json: cc-nc-sampling-plus-1.0.json - yml: cc-nc-sampling-plus-1.0.yml + yaml: cc-nc-sampling-plus-1.0.yml html: cc-nc-sampling-plus-1.0.html - text: cc-nc-sampling-plus-1.0.LICENSE + license: cc-nc-sampling-plus-1.0.LICENSE - license_key: cc-pd + category: Public Domain spdx_license_key: CC-PDDC other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + The person or persons who have associated work with this document (the "Dedicator" or "Certifier") hereby either (a) certifies that, to the best of his knowledge, the work of authorship identified is in the public domain of the country from which the work is published, or (b) hereby dedicates whatever copyright the dedicators holds in the work of authorship identified below (the "Work") to the public domain. A certifier, moreover, dedicates any copyright interest he may have in the associated work, and for these purposes, is described as a "dedicator" below. + + A certifier has taken reasonable steps to verify the copyright status of this work. Certifier recognizes that his good faith efforts may not shield him from liability if in fact the work certified is not in the public domain. + + Dedicator makes this dedication for the benefit of the public at large and to the detriment of the Dedicator's heirs and successors. Dedicator intends this dedication to be an overt act of relinquishment in perpetuity of all present and future rights under copyright law, whether vested or contingent, in the Work. Dedicator understands that such relinquishment of all rights includes the relinquishment of all rights to enforce (by lawsuit or otherwise) those copyrights in the Work. + + Dedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived. json: cc-pd.json - yml: cc-pd.yml + yaml: cc-pd.yml html: cc-pd.html - text: cc-pd.LICENSE + license: cc-pd.LICENSE - license_key: cc-pdm-1.0 + category: Public Domain spdx_license_key: LicenseRef-scancode-cc-pdm-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + Public Domain Mark 1.0 + No Copyright + + This work has been identified as being free of known restrictions under copyright law, including all related and neighboring rights. + + + You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission. See Other Information below. + + + Other Information + + The work may not be free of known copyright restrictions in all jurisdictions. + + Persons may have other rights in or related to the work, such as patent or trademark rights, and others may have rights in how the work is used, such as publicity or privacy rights. + + In some jurisdictions moral rights of the author may persist beyond the term of copyright. These rights may include the right to be identified as the author and the right to object to derogatory treatments. + + Unless expressly stated otherwise, the person who identified the work makes no warranties about the work, and disclaims liability for all uses of the work, to the fullest extent permitted by applicable law. + + When using or citing the work, you should not imply endorsement by the author or the person who identified the work. json: cc-pdm-1.0.json - yml: cc-pdm-1.0.yml + yaml: cc-pdm-1.0.yml html: cc-pdm-1.0.html - text: cc-pdm-1.0.LICENSE + license: cc-pdm-1.0.LICENSE - license_key: cc-sampling-1.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-cc-sampling-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: " Sampling 1.0 \nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\ + \ LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP.\ + \ CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES\ + \ NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES\ + \ RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE\ + \ TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED\ + \ BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED\ + \ UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE\ + \ WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE\ + \ LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH\ + \ TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a\ + \ periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified\ + \ form, along with a number of other contributions, constituting separate and independent\ + \ works in themselves, are assembled into a collective whole. A work that constitutes a\ + \ Collective Work will not be considered a Derivative Work (as defined below) for the purposes\ + \ of this License.\n\n\"Derivative Work\" means a work based upon the Work or upon the Work\ + \ and other pre-existing works, such as a translation, musical arrangement, dramatization,\ + \ fictionalization, motion picture version, sound recording, art reproduction, abridgment,\ + \ condensation, or any other form in which the Work may be recast, transformed, or adapted,\ + \ except that a work that constitutes a Collective Work will not be considered a Derivative\ + \ Work for the purpose of this License.\n\n\"Licensor\" means the individual or entity that\ + \ offers the Work under the terms of this License.\n\n\"Original Author\" means the individual\ + \ or entity who created the Work.\n\n\"Work\" means the copyrightable work of authorship\ + \ offered under the terms of this License.\n\n\"You\" means an individual or entity exercising\ + \ rights under this License who has not previously violated the terms of this License with\ + \ respect to the Work, or who has received express permission from the Licensor to exercise\ + \ rights under this License despite a previous violation.\n\n2. Fair Use Rights. Nothing\ + \ in this license is intended to reduce, limit, or restrict any rights arising from fair\ + \ use, first sale or other limitations on the exclusive rights of the copyright owner under\ + \ copyright law or other applicable laws.\n\n3. License Grant & Restrictions. Subject to\ + \ the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free,\ + \ non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise\ + \ the rights in the Work as stated below on the conditions as stated below:\n\nRe-creativity.\ + \ You may create and reproduce Derivative Works, provided that\nthe Derivative Work(s) constitute\ + \ a good-faith partial or recombined usage employing \"sampling,\" \"collage,\" \"mash-up,\"\ + \ or other comparable artistic technique, whether now known or hereafter devised, that is\ + \ highly transformative of the original, as appropriate to the medium, genre, and market\ + \ niche; and\n\nYour Derivative Work(s) must only make a partial use of the original Work,\ + \ or if you choose to use the original Work as a whole, you must either use the Work as\ + \ an insubstantial portion of Your Derivative Work(s) or transform it into something substantially\ + \ different from the original Work. In the case of a musical Work and/or audio recording,\ + \ the mere synchronization (\"synching\") of the Work with a moving image shall not be considered\ + \ a transformation of the Work into something substantially different.\n\nYou may distribute\ + \ copies or phonorecords of, display publicly, perform publicly, and perform publicly by\ + \ means of a digital audio transmission, any Derivative Work(s).\n\nProhibition on advertising.\ + \ All advertising and promotional uses are excluded from the above rights, except for advertisement\ + \ and promotion of the Derivative Work(s) that you are creating from the Work and Yourself\ + \ as the author thereof.\n\nAttribution and Notice. If you distribute, publicly display,\ + \ publicly perform, or publicly digitally perform any Derivative Work(s), You must keep\ + \ intact all copyright notices for the Work and give the Original Author credit reasonable\ + \ to the medium or means You are utilizing by conveying the name (or pseudonym if applicable)\ + \ of the Original Author if supplied; to the extent reasonably practicable, provide the\ + \ Uniform Resource Identifier, if any, that Licensor specifies to be associated with a Derivative\ + \ Work, unless such Uniform Resource Identifier does not refer to the copyright notice or\ + \ licensing information for the Work; and provide a credit identifying the use of the Work\ + \ in the Derivative Work (e.g., \"Remix of the Work by Original Author,\" or \"Inclusion\ + \ of a portion of the Work by Original Author in a collage\"). Such credit may be implemented\ + \ in any reasonable manner; provided, however, that at a minimum such credit will appear\ + \ where any other comparable authorship credit appears and in a manner at least as prominent\ + \ as such other comparable authorship credit.\n\nYou must include a copy of, or the Uniform\ + \ Resource Identifier for, this License with every copy or phonorecord of the Derivative\ + \ Work You distribute, publicly display, publicly perform, or publicly digitally perform.\ + \ You may not offer or impose any terms on the Work that alter or restrict the terms of\ + \ this License or the recipients' exercise of the rights granted hereunder. You may not\ + \ sublicense the Work. You must keep intact all notices that refer to this License and to\ + \ the disclaimer of warranties. Upon notice from any Licensor You must, to the extent practicable,\ + \ remove from the Derivative Work any reference to such Licensor or the Original Author,\ + \ as requested.\n\nThe above rights may be exercised in all media and formats whether now\ + \ known or hereafter devised. The above rights include the right to make such modifications\ + \ as are technically necessary to exercise the rights in other media and formats. All rights\ + \ not expressly granted by Licensor are hereby reserved.\n\n4. Disclaimer\n\nUNLESS SPECIFIED\ + \ OTHERWISE BY THE PARTIES IN A SEPARATE WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES\ + \ NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES\ + \ OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE\ + \ OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR\ + \ NOT DISCOVERABLE.\n\n5. Limitation on Liability.\n\nIN NO EVENT WILL LICENSOR BE LIABLE\ + \ TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY\ + \ DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN\ + \ ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n6. Termination\n\nThis License and the\ + \ rights granted hereunder will terminate automatically upon any breach by You of the terms\ + \ of this License. Individuals or entities who have received Derivative Works from You under\ + \ this License, however, will not have their licenses terminated provided such individuals\ + \ or entities remain in full compliance with those licenses. Sections 1, 2, 4, 5, 6, and\ + \ 7 will survive any termination of this License.\n\nSubject to the above terms and conditions,\ + \ the license granted here is perpetual (for the duration of the applicable copyright in\ + \ the Work). Notwithstanding the above, Licensor reserves the right to release the Work\ + \ under different license terms or to stop distributing the Work at any time; provided,\ + \ however that any such election will not serve to withdraw this License (or any other license\ + \ that has been granted under the terms of this License), and this License will continue\ + \ in full force and effect unless terminated as stated above.\n\n7. Miscellaneous\n\nEach\ + \ time You distribute or publicly digitally perform a Derivative Work, Licensor offers to\ + \ the recipient a license to the original Work on the same terms and conditions as the license\ + \ granted to You under this License.\n\nIf any provision of this License is invalid or unenforceable\ + \ under applicable law, it shall not affect the validity or enforceability of the remainder\ + \ of the terms of this License, and without further action by the parties to this agreement,\ + \ such provision shall be reformed to the minimum extent necessary to make such provision\ + \ valid and enforceable.\n\nNo term or provision of this License shall be deemed waived\ + \ and no breach consented to unless such waiver or consent shall be in writing and signed\ + \ by the party to be charged with such waiver or consent.\n\nThis License constitutes the\ + \ entire agreement between the parties with respect to the Work licensed here. There are\ + \ no understandings, agreements, or representations with respect to the subject matter here,\ + \ not specified above. Licensor shall not be bound by any additional provisions that may\ + \ appear in any communication from You. This License may not be modified without the mutual\ + \ written agreement of the Licensor and You." json: cc-sampling-1.0.json - yml: cc-sampling-1.0.yml + yaml: cc-sampling-1.0.yml html: cc-sampling-1.0.html - text: cc-sampling-1.0.LICENSE + license: cc-sampling-1.0.LICENSE - license_key: cc-sampling-plus-1.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-cc-sampling-plus-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Sampling Plus 1.0 \nCREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\ + \ LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP.\ + \ CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES\ + \ NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES\ + \ RESULTING FROM ITS USE.\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE\ + \ TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED\ + \ BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED\ + \ UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE\ + \ WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE\ + \ LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH\ + \ TERMS AND CONDITIONS.\n\n1. Definitions\n\n\"Collective Work\" means a work, such as a\ + \ periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified\ + \ form, along with a number of other contributions, constituting separate and independent\ + \ works in themselves, are assembled into a collective whole. A work that constitutes a\ + \ Collective Work will not be considered a Derivative Work (as defined below) for the purposes\ + \ of this License.\n\n\"Derivative Work\" means a work based upon the Work or upon the Work\ + \ and other pre-existing works, such as a translation, musical arrangement, dramatization,\ + \ fictionalization, motion picture version, sound recording, art reproduction, abridgment,\ + \ condensation, or any other form in which the Work may be recast, transformed, or adapted,\ + \ except that a work that constitutes a Collective Work will not be considered a Derivative\ + \ Work for the purpose of this License.\n\n\"Licensor\" means the individual or entity that\ + \ offers the Work under the terms of this License.\n\n\"Original Author\" means the individual\ + \ or entity who created the Work.\n\n\"Work\" means the copyrightable work of authorship\ + \ offered under the terms of this License.\n\n\"You\" means an individual or entity exercising\ + \ rights under this License who has not previously violated the terms of this License with\ + \ respect to the Work, or who has received express permission from the Licensor to exercise\ + \ rights under this License despite a previous violation.\n\n2. Fair Use Rights. Nothing\ + \ in this license is intended to reduce, limit, or restrict any rights arising from fair\ + \ use, first sale or other limitations on the exclusive rights of the copyright owner under\ + \ copyright law or other applicable laws.\n\n3. License Grant & Restrictions. Subject to\ + \ the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free,\ + \ non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise\ + \ the rights in the Work as stated below on the conditions as stated below:\n\nRe-creativity\ + \ permitted. You may create and reproduce Derivative Works, provided that:\nthe Derivative\ + \ Work(s) constitute a good-faith partial or recombined usage employing \"sampling,\" \"\ + collage,\" \"mash-up,\" or other comparable artistic technique, whether now known or hereafter\ + \ devised, that is highly transformative of the original, as appropriate to the medium,\ + \ genre, and market niche; and\n\nYour Derivative Work(s) must only make a partial use of\ + \ the original Work, or if You choose to use the original Work as a whole, You must either\ + \ use the Work as an insubstantial portion of Your Derivative Work(s) or transform it into\ + \ something substantially different from the original Work. In the case of a musical Work\ + \ and/or audio recording, the mere synchronization (\"synching\") of the Work with a moving\ + \ image shall not be considered a transformation of the Work into something substantially\ + \ different.\n\nYou may distribute copies or phonorecords of, display publicly, perform\ + \ publicly, and perform publicly by means of a digital audio transmission, any Derivative\ + \ Work(s) authorized under this License.\n\nProhibition on advertising. All advertising\ + \ and promotional uses are excluded from the above rights, except for advertisement and\ + \ promotion of the Derivative Work(s) that You are creating from the Work and Yourself as\ + \ the author thereof.\n\nNoncommercial sharing of verbatim copies permitted.\n\nYou may\ + \ reproduce the Work, incorporate the Work into one or more Collective Works, and reproduce\ + \ the Work as incorporated in the Collective Works. You may distribute copies or phonorecords\ + \ of, display publicly, perform publicly, and perform publicly by means of a digital audio\ + \ transmission the Work including or incorporated in Collective Works.\n\nYou may not exercise\ + \ any of the rights granted to You in the paragraph immediately above in any manner that\ + \ is primarily intended for or directed toward commercial advantage or private monetary\ + \ compensation. The exchange of the Work for other copyrighted works by means of digital\ + \ file-sharing or otherwise shall not be considered to be intended for or directed toward\ + \ commercial advantage or private monetary compensation, provided there is no payment of\ + \ any monetary compensation in connection with the exchange of copyrighted works.\n\nAttribution\ + \ and Notice.\n\nIf You distribute, publicly display, publicly perform, or publicly digitally\ + \ perform the Work or any Derivative Works or Collective Works, You must keep intact all\ + \ copyright notices for the Work and give the Original Author credit reasonable to the medium\ + \ or means You are utilizing by conveying the name (or pseudonym if applicable) of the Original\ + \ Author if supplied; the title of the Work if supplied; to the extent reasonably practicable,\ + \ provide the Uniform Resource Identifier, if any, that Licensor specifies to be associated\ + \ with the Work or a Derivative Work, unless such Uniform Resource Identifier does not refer\ + \ to the copyright notice or licensing information for the Work; and in the case of a Derivative\ + \ Work, provide a credit identifying the use of the Work in the Derivative Work (e.g., \"\ + Remix of the Work by Original Author,\" or \"Inclusion of a portion of the Work by Original\ + \ Author in collage\"). Such credit may be implemented in any reasonable manner; provided,\ + \ however, that in the case of a Derivative Work or Collective Work, at a minimum such credit\ + \ will appear where any other comparable authorship credit appears and in a manner at least\ + \ as prominent as such other comparable authorship credit.\n\nYou may distribute, publicly\ + \ display, publicly perform or publicly digitally perform the Work only under the terms\ + \ of this License, and You must include a copy of, or the Uniform Resource Identifier for,\ + \ this License with every copy or phonorecord of the Work or Derivative Work You distribute,\ + \ publicly display, publicly perform, or publicly digitally perform. You may not offer or\ + \ impose any terms on the Work that alter or restrict the terms of this License or the recipients'\ + \ exercise of the rights granted hereunder. You may not sublicense the Work. You must keep\ + \ intact all notices that refer to this License and to the disclaimer of warranties. You\ + \ may not distribute, publicly display, publicly perform, or publicly digitally perform\ + \ the Work with any technological measures that control access of use of the Work in a manner\ + \ inconsistent with the terms of this License. The above applies to the Work as incorporated\ + \ in a Collective Work, but this does not require the Collective Work apart from the Work\ + \ itself to be made subject to the terms of this License. Upon notice from any Licensor\ + \ You must, to the extent practicable, remove from the Derivative Work or Collective Work\ + \ any reference to such Licensor or the Original Author, as requested.\n\nThe above rights\ + \ may be exercised in all media and formats whether now known or hereafter devised. The\ + \ above rights include the right to make such modifications as are technically necessary\ + \ to exercise the rights in other media and formats. All rights not expressly granted by\ + \ Licensor are hereby reserved.\n\n4. Disclaimer\n\nUNLESS SPECIFIED OTHERWISE BY THE PARTIES\ + \ IN A SEPARATE WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR\ + \ WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,\ + \ FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS,\ + \ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE.\n\n5. Limitation\ + \ on Liability.\n\nIN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY\ + \ SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS\ + \ LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF\ + \ SUCH DAMAGES.\n\n6. Termination\n\nThis License and the rights granted hereunder will\ + \ terminate automatically upon any breach by You of the terms of this License. Individuals\ + \ or entities who have received Derivative Works or Collective Works from You under this\ + \ License, however, will not have their licenses terminated provided such individuals or\ + \ entities remain in full compliance with those licenses. Sections 1, 2, 4, 5, 6, and 7\ + \ will survive any termination of this License.\n\nSubject to the above terms and conditions,\ + \ the license granted here is perpetual (for the duration of the applicable copyright in\ + \ the Work). Notwithstanding the above, Licensor reserves the right to release the Work\ + \ under different license terms or to stop distributing the Work at any time; provided,\ + \ however that any such election will not serve to withdraw this License (or any other license\ + \ that has been granted under the terms of this License), and this License will continue\ + \ in full force and effect unless terminated as stated above.\n\n7. Miscellaneous\n\nEach\ + \ time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor\ + \ offers to the recipient a license to the Work on the same terms and conditions as the\ + \ license granted to You under this License.\n\nEach time You distribute or publicly digitally\ + \ perform a Derivative Work, Licensor offers to the recipient a license to the original\ + \ Work on the same terms and conditions as the license granted to You under this License.\n\ + \nIf any provision of this License is invalid or unenforceable under applicable law, it\ + \ shall not affect the validity or enforceability of the remainder of the terms of this\ + \ License, and without further action by the parties to this agreement, such provision shall\ + \ be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\ + \nNo term or provision of this License shall be deemed waived and no breach consented to\ + \ unless such waiver or consent shall be in writing and signed by the party to be charged\ + \ with such waiver or consent.\n\nThis License constitutes the entire agreement between\ + \ the parties with respect to the Work licensed here. There are no understandings, agreements,\ + \ or representations with respect to the Work, and with respect to the subject matter hereof,\ + \ not specified above. Licensor shall not be bound by any additional provisions that may\ + \ appear in any communication from You. This License may not be modified without the mutual\ + \ written agreement of the Licensor and You." json: cc-sampling-plus-1.0.json - yml: cc-sampling-plus-1.0.yml + yaml: cc-sampling-plus-1.0.yml html: cc-sampling-plus-1.0.html - text: cc-sampling-plus-1.0.LICENSE + license: cc-sampling-plus-1.0.LICENSE - license_key: cc0-1.0 + category: Public Domain spdx_license_key: CC0-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + Creative Commons Legal Code + + CC0 1.0 Universal + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS + PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM + THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED + HEREUNDER. + + Statement of Purpose + + The laws of most jurisdictions throughout the world automatically confer + exclusive Copyright and Related Rights (defined below) upon the creator + and subsequent owner(s) (each and all, an "owner") of an original work of + authorship and/or a database (each, a "Work"). + + Certain owners wish to permanently relinquish those rights to a Work for + the purpose of contributing to a commons of creative, cultural and + scientific works ("Commons") that the public can reliably and without fear + of later claims of infringement build upon, modify, incorporate in other + works, reuse and redistribute as freely as possible in any form whatsoever + and for any purposes, including without limitation commercial purposes. + These owners may contribute to the Commons to promote the ideal of a free + culture and the further production of creative, cultural and scientific + works, or to gain reputation or greater distribution for their Work in + part through the use and efforts of others. + + For these and/or other purposes and motivations, and without any + expectation of additional consideration or compensation, the person + associating CC0 with a Work (the "Affirmer"), to the extent that he or she + is an owner of Copyright and Related Rights in the Work, voluntarily + elects to apply CC0 to the Work and publicly distribute the Work under its + terms, with knowledge of his or her Copyright and Related Rights in the + Work and the meaning and intended legal effect of CC0 on those rights. + + 1. Copyright and Related Rights. A Work made available under CC0 may be + protected by copyright and related or neighboring rights ("Copyright and + Related Rights"). Copyright and Related Rights include, but are not + limited to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, + communicate, and translate a Work; + ii. moral rights retained by the original author(s) and/or performer(s); + iii. publicity and privacy rights pertaining to a person's image or + likeness depicted in a Work; + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + v. rights protecting the extraction, dissemination, use and reuse of data + in a Work; + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation + thereof, including any amended or successor version of such + directive); and + vii. other similar, equivalent or corresponding rights throughout the + world based on applicable law or treaty, and any national + implementations thereof. + + 2. Waiver. To the greatest extent permitted by, but not in contravention + of, applicable law, Affirmer hereby overtly, fully, permanently, + irrevocably and unconditionally waives, abandons, and surrenders all of + Affirmer's Copyright and Related Rights and associated claims and causes + of action, whether now known or unknown (including existing as well as + future claims and causes of action), in the Work (i) in all territories + worldwide, (ii) for the maximum duration provided by applicable law or + treaty (including future time extensions), (iii) in any current or future + medium and for any number of copies, and (iv) for any purpose whatsoever, + including without limitation commercial, advertising or promotional + purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each + member of the public at large and to the detriment of Affirmer's heirs and + successors, fully intending that such Waiver shall not be subject to + revocation, rescission, cancellation, termination, or any other legal or + equitable action to disrupt the quiet enjoyment of the Work by the public + as contemplated by Affirmer's express Statement of Purpose. + + 3. Public License Fallback. Should any part of the Waiver for any reason + be judged legally invalid or ineffective under applicable law, then the + Waiver shall be preserved to the maximum extent permitted taking into + account Affirmer's express Statement of Purpose. In addition, to the + extent the Waiver is so judged Affirmer hereby grants to each affected + person a royalty-free, non transferable, non sublicensable, non exclusive, + irrevocable and unconditional license to exercise Affirmer's Copyright and + Related Rights in the Work (i) in all territories worldwide, (ii) for the + maximum duration provided by applicable law or treaty (including future + time extensions), (iii) in any current or future medium and for any number + of copies, and (iv) for any purpose whatsoever, including without + limitation commercial, advertising or promotional purposes (the + "License"). The License shall be deemed effective as of the date CC0 was + applied by Affirmer to the Work. Should any part of the License for any + reason be judged legally invalid or ineffective under applicable law, such + partial invalidity or ineffectiveness shall not invalidate the remainder + of the License, and in such case Affirmer hereby affirms that he or she + will not (i) exercise any of his or her remaining Copyright and Related + Rights in the Work or (ii) assert any associated claims and causes of + action with respect to the Work, in either case contrary to Affirmer's + express Statement of Purpose. + + 4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + b. Affirmer offers the Work as-is and makes no representations or + warranties of any kind concerning the Work, express, implied, + statutory or otherwise, including without limitation warranties of + title, merchantability, fitness for a particular purpose, non + infringement, or the absence of latent or other defects, accuracy, or + the present or absence of errors, whether or not discoverable, all to + the greatest extent permissible under applicable law. + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without + limitation any person's Copyright and Related Rights in the Work. + Further, Affirmer disclaims responsibility for obtaining any necessary + consents, permissions or other rights required for any use of the + Work. + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to + this CC0 or use of the Work. json: cc0-1.0.json - yml: cc0-1.0.yml + yaml: cc0-1.0.yml html: cc0-1.0.html - text: cc0-1.0.LICENSE + license: cc0-1.0.LICENSE - license_key: cclrc + category: Free Restricted spdx_license_key: LicenseRef-scancode-cclrc other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "CCLRC License for CCLRC Software forming part of the Climate Model Output \nRewriter\ + \ Tools Package.\n\nThe Council for the Central Laboratory of the Research Councils (CCLRC)\n\ + grants any person who obtains a copy of this software (the Software),\nfree of charge, the\ + \ non-exclusive, worldwide right to use, copy, modify,\ndistribute and sub-license the use\ + \ of the Software on the terms and\nconditions appearing below:\n\n1)The Software may be\ + \ used only as part of the Climate Data Analysis\nTools Package, made available to users\ + \ free of charge.\n\n2)The CCLRC copyright notice and any other notice placed by CCLRC on\ + \ the\nSoftware must be reproduced on every copy of the Software, and on every\nDerived\ + \ Work. A Derived Work means any modification of, or enhancement\nor improvement to, any\ + \ of the Software, and any software or other work\ndeveloped or derived from any of the\ + \ Software.\n\n3)CCLRC gives no warranty and makes no representation in relation to\nthe\ + \ Software. The Licensee and anyone to whom the Licensee makes the\nSoftware or any Derived\ + \ Work available, use the Software at their own\nrisk.\n\n4)All warranties, conditions,\ + \ terms, undertakings and obligations on the\npart of CCLRC, implied by statute, common\ + \ law, custom, trade usage,\ncourse of dealing or in any other way are excluded to the fullest\ + \ extent\npermitted by law.\n\n5)Subject to condition 6, CCLRC will not be liable for:\n\ + \ a)any loss of profits, loss of revenue, loss or corruption\n of data, loss of contracts\ + \ or opportunity, loss of savings or third\n party claims (in each case whether direct\ + \ or indirect);\n b)any indirect loss or damage arising out of or in\n connection with\ + \ the Software;\n c)any direct loss or damage arising out of, or in connection\n with,\ + \ the Software in each case, whether that loss arises as a result of\n CCLRC's negligence,\ + \ or in any other way, even if CCLRC has been\n advised of the possibility of that loss\ + \ arising, or if it was within\n CCLRC's contemplation.\n\n6)None of these conditions\ + \ limits or excludes CCLRC's liability for\ndeath or personal injury caused by its negligence\ + \ or for any fraud, or\nfor any sort of liability that, by law, cannot be limited or excluded.\n\ + \n7)These conditions set out the entire agreement relating to the\nSoftware. The licensee\ + \ acknowledges that it has not relied on any\nwarranty, representation, statement, agreement\ + \ or undertaking given by\nCCLRC, and waives any claim in respect of any of the same.\n\n\ + 8)The rights granted above will cease immediately on any breach of these\nconditions and\ + \ the licensee will destroy all copies of the Software and\nany Derived Work in its control\ + \ or possession. Conditions 3, 4, 5, 6, 7,\n8, 9 and 10 will survive termination and continue\ + \ indefinitely.\n\n9)The licence and these conditions are governed by, and are to be\nconstrued\ + \ in accordance with, English law. The English Courts will have\nexclusive jurisdiction\ + \ to deal with any dispute which has arisen or may\narise out of or in connection with the\ + \ Software, the rights granted and\nthese conditions, except that CCLRC may bring proceedings\ + \ for an\ninjunction in any jurisdiction.\n\n10)If the whole or any part of these conditions\ + \ are void or\nunenforceable in any jurisdiction, the other provisions, and the rest of\n\ + the void or unenforceable provision, will continue in force in that\njurisdiction, and the\ + \ validity and enforceability of that provision in\nany other jurisdiction will not be affected." json: cclrc.json - yml: cclrc.yml + yaml: cclrc.yml html: cclrc.html - text: cclrc.LICENSE + license: cclrc.LICENSE - license_key: ccrc-1.0 + category: Copyleft spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Copyleft + text: "Common Cure Rights Commitment\nVersion 1.0\n \nBefore filing or continuing to prosecute\ + \ any legal proceeding or claim\n(other than a Defensive Action) arising from termination\ + \ of a Covered\nLicense, we commit to extend to the person or entity ('you') accused\nof\ + \ violating the Covered License the following provisions regarding\ncure and reinstatement,\ + \ taken from GPL version 3. As used here, the\nterm 'this License' refers to the specific\ + \ Covered License being\nenforced.\n\n However, if you cease all violation of this License,\ + \ then your\n license from a particular copyright holder is reinstated (a)\n provisionally,\ + \ unless and until the copyright holder explicitly\n and finally terminates your license,\ + \ and (b) permanently, if the\n copyright holder fails to notify you of the violation\ + \ by some\n reasonable means prior to 60 days after the cessation.\n\n Moreover, your\ + \ license from a particular copyright holder is\n reinstated permanently if the copyright\ + \ holder notifies you of the\n violation by some reasonable means, this is the first\ + \ time you\n have received notice of violation of this License (for any work)\n from\ + \ that copyright holder, and you cure the violation prior to 30\n days after your receipt\ + \ of the notice.\n\nWe intend this Commitment to be irrevocable, and binding and\nenforceable\ + \ against us and assignees of or successors to our\ncopyrights.\n\nDefinitions\n\n'Covered\ + \ License' means the GNU General Public License, version 2\n(GPLv2), the GNU Lesser General\ + \ Public License, version 2.1\n(LGPLv2.1), or the GNU Library General Public License, version\ + \ 2\n(LGPLv2), all as published by the Free Software Foundation.\n\n'Defensive Action' means\ + \ a legal proceeding or claim that We bring\nagainst you in response to a prior proceeding\ + \ or claim initiated by\nyou or your affiliate.\n\n'We' means each contributor to this repository\ + \ as of the date of\ninclusion of this file, including subsidiaries of a corporate\ncontributor.\n\ + \nThis work is available under a Creative Commons Attribution-ShareAlike\n4.0 International\ + \ license (https://creativecommons.org/licenses/by-sa/4.0/)." json: ccrc-1.0.json - yml: ccrc-1.0.yml + yaml: ccrc-1.0.yml html: ccrc-1.0.html - text: ccrc-1.0.LICENSE + license: ccrc-1.0.LICENSE - license_key: cddl-1.0 + category: Copyleft Limited spdx_license_key: CDDL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 \n\n1. Definitions.\n\ + \n1.1. Contributor means each individual or entity that creates or contributes to the creation\ + \ of Modifications.\n\n1.2. Contributor Version means the combination of the Original Software,\ + \ prior Modifications used by a Contributor (if any), and the Modifications made by that\ + \ particular Contributor.\n\n1.3. Covered Software means (a) the Original Software, or (b)\ + \ Modifications, or (c) the combination of files containing Original Software with files\ + \ containing Modifications, in each case including portions thereof.\n\n1.4. Executable\ + \ means the Covered Software in any form other than Source Code.\n\n1.5. Initial Developer\ + \ means the individual or entity that first makes Original Software available under this\ + \ License.\n\n1.6. Larger Work means a work which combines Covered Software or portions\ + \ thereof with code not governed by the terms of this License.\n\n1.7. License means this\ + \ document.\n\n1.8. Licensable means having the right to grant, to the maximum extent possible,\ + \ whether at the time of the initial grant or subsequently acquired, any and all of the\ + \ rights conveyed herein.\n\n1.9. Modifications means the Source Code and Executable form\ + \ of any of the following: A. Any file that results from an addition to, deletion from or\ + \ modification of the contents of a file containing Original Software or previous Modifications;\ + \ B. Any new file that contains any part of the Original Software or previous Modification;\ + \ or C. Any new file that is contributed or otherwise made available under the terms of\ + \ this License.\n\n1.10. Original Software means the Source Code and Executable form of\ + \ computer software code that is originally released under this License.\n\n1.11. Patent\ + \ Claims means any patent claim(s), now owned or hereafter acquired, including without limitation,\ + \ method, process, and apparatus claims, in any patent Licensable by grantor.\n\n1.12. Source\ + \ Code means (a) the common form of computer software code in which modifications are made\ + \ and (b) associated documentation included in or with such code.\n\n1.13. You (or Your)\ + \ means an individual or a legal entity exercising rights under, and complying with all\ + \ of the terms of, this License. For legal entities, You includes any entity which controls,\ + \ is controlled by, or is under common control with You. For purposes of this definition,\ + \ control means (a) the power, direct or indirect, to cause the direction or management\ + \ of such entity, whether by contract or otherwise, or (b) ownership of more than fifty\ + \ percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2.\ + \ License Grants.\n\n 2.1. The Initial Developer Grant. Conditioned upon Your compliance\ + \ with Section 3.1 below and subject to third party intellectual property claims, the Initial\ + \ Developer hereby grants You a world-wide, royalty-free, non-exclusive license:\n\n(a)\ + \ under intellectual property rights (other than patent or trademark) Licensable by Initial\ + \ Developer, to use, reproduce, modify, display, perform, sublicense and distribute the\ + \ Original Software (or portions thereof), with or without Modifications, and/or as part\ + \ of a Larger Work; and\n\n(b) under Patent Claims infringed by the making, using or selling\ + \ of Original Software, to make, have made, use, practice, sell, and offer for sale, and/or\ + \ otherwise dispose of the Original Software (or portions thereof);\n\n (c) The licenses\ + \ granted in Sections 2.1(a) and (b) are effective on the date Initial Developer first distributes\ + \ or otherwise makes the Original Software available to a third party under the terms of\ + \ this License;\n\n (d) Notwithstanding Section 2.1(b) above, no patent license is granted:\ + \ (1) for code that You delete from the Original Software, or (2) for infringements caused\ + \ by: (i) the modification of the Original Software, or (ii) the combination of the Original\ + \ Software with other software or devices.\n\n2.2. Contributor Grant. Conditioned upon Your\ + \ compliance with Section 3.1 below and subject to third party intellectual property claims,\ + \ each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license:\n\ + \n(a) under intellectual property rights (other than patent or trademark) Licensable by\ + \ Contributor to use, reproduce, modify, display, perform, sublicense and distribute the\ + \ Modifications created by such Contributor (or portions thereof), either on an unmodified\ + \ basis, with other Modifications, as Covered Software and/or as part of a Larger Work;\ + \ and\n\n(b) under Patent Claims infringed by the making, using, or selling of Modifications\ + \ made by that Contributor either alone and/or in combination with its Contributor Version\ + \ (or portions of such combination), to make, use, sell, offer for sale, have made, and/or\ + \ otherwise dispose of: (1) Modifications made by that Contributor (or portions thereof);\ + \ and (2) the combination of Modifications made by that Contributor with its Contributor\ + \ Version (or portions of such combination).\n\n(c) The licenses granted in Sections 2.2(a)\ + \ and 2.2(b) are effective on the date Contributor first distributes or otherwise makes\ + \ the Modifications available to a third party.\n\n(d) Notwithstanding Section 2.2(b) above,\ + \ no patent license is granted: (1) for any code that Contributor has deleted from the Contributor\ + \ Version; (2) for infringements caused by: (i) third party modifications of Contributor\ + \ Version, or (ii) the combination of Modifications made by that Contributor with other\ + \ software (except as part of the Contributor Version) or other devices; or (3) under Patent\ + \ Claims infringed by Covered Software in the absence of Modifications made by that Contributor.\n\ + \n3. Distribution Obligations.\n\n3.1. Availability of Source Code. Any Covered Software\ + \ that You distribute or otherwise make available in Executable form must also be made available\ + \ in Source Code form and that Source Code form must be distributed only under the terms\ + \ of this License. You must include a copy of this License with every copy of the Source\ + \ Code form of the Covered Software You distribute or otherwise make available. You must\ + \ inform recipients of any such Covered Software in Executable form as to how they can obtain\ + \ such Covered Software in Source Code form in a reasonable manner on or through a medium\ + \ customarily used for software exchange.\n\n3.2. Modifications. The Modifications that\ + \ You create or to which You contribute are governed by the terms of this License. You represent\ + \ that You believe Your Modifications are Your original creation(s) and/or You have sufficient\ + \ rights to grant the rights conveyed by this License.\n\n3.3. Required Notices. You must\ + \ include a notice in each of Your Modifications that identifies You as the Contributor\ + \ of the Modification. You may not remove or alter any copyright, patent or trademark notices\ + \ contained within the Covered Software, or any notices of licensing or any descriptive\ + \ text giving attribution to any Contributor or the Initial Developer.\n\n3.4. Application\ + \ of Additional Terms. You may not offer or impose any terms on any Covered Software in\ + \ Source Code form that alters or restricts the applicable version of this License or the\ + \ recipients rights hereunder. You may choose to offer, and to charge a fee for, warranty,\ + \ support, indemnity or liability obligations to one or more recipients of Covered Software.\ + \ However, you may do so only on Your own behalf, and not on behalf of the Initial Developer\ + \ or any Contributor. You must make it absolutely clear that any such warranty, support,\ + \ indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify\ + \ the Initial Developer and every Contributor for any liability incurred by the Initial\ + \ Developer or such Contributor as a result of warranty, support, indemnity or liability\ + \ terms You offer.\n\n3.5. Distribution of Executable Versions. You may distribute the Executable\ + \ form of the Covered Software under the terms of this License or under the terms of a license\ + \ of Your choice, which may contain terms different from this License, provided that You\ + \ are in compliance with the terms of this License and that the license for the Executable\ + \ form does not attempt to limit or alter the recipients rights in the Source Code form\ + \ from the rights set forth in this License. If You distribute the Covered Software in Executable\ + \ form under a different license, You must make it absolutely clear that any terms which\ + \ differ from this License are offered by You alone, not by the Initial Developer or Contributor.\ + \ You hereby agree to indemnify the Initial Developer and every Contributor for any liability\ + \ incurred by the Initial Developer or such Contributor as a result of any such terms You\ + \ offer.\n\n3.6. Larger Works. You may create a Larger Work by combining Covered Software\ + \ with other code not governed by the terms of this License and distribute the Larger Work\ + \ as a single product. In such a case, You must make sure the requirements of this License\ + \ are fulfilled for the Covered Software.\n\n4. Versions of the License.\n\n4.1. New Versions.\ + \ Sun Microsystems, Inc. is the initial license steward and may publish revised and/or new\ + \ versions of this License from time to time. Each version will be given a distinguishing\ + \ version number. Except as provided in Section 4.3, no one other than the license steward\ + \ has the right to modify this License.\n\n4.2. Effect of New Versions. You may always continue\ + \ to use, distribute or otherwise make the Covered Software available under the terms of\ + \ the version of the License under which You originally received the Covered Software. If\ + \ the Initial Developer includes a notice in the Original Software prohibiting it from being\ + \ distributed or otherwise made available under any subsequent version of the License, You\ + \ must distribute and make the Covered Software available under the terms of the version\ + \ of the License under which You originally received the Covered Software. Otherwise, You\ + \ may also choose to use, distribute or otherwise make the Covered Software available under\ + \ the terms of any subsequent version of the License published by the license steward.\n\ + \n4.3. Modified Versions. When You are an Initial Developer and You want to create a new\ + \ license for Your Original Software, You may create and use a modified version of this\ + \ License if You: (a) rename the license and remove any references to the name of the license\ + \ steward (except to note that the license differs from this License); and (b) otherwise\ + \ make it clear that the license contains terms which differ from this License.\n\n5. DISCLAIMER\ + \ OF WARRANTY. COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT\ + \ WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES\ + \ THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE\ + \ OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE\ + \ IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE\ + \ INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING,\ + \ REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS\ + \ LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\ + \n6. TERMINATION.\n\n6.1. This License and the rights granted hereunder will terminate automatically\ + \ if You fail to comply with terms herein and fail to cure such breach within 30 days of\ + \ becoming aware of the breach. Provisions which, by their nature, must remain in effect\ + \ beyond the termination of this License shall survive.\n\n6.2. If You assert a patent infringement\ + \ claim (excluding declaratory judgment actions) against Initial Developer or a Contributor\ + \ (the Initial Developer or Contributor against whom You assert such claim is referred to\ + \ as Participant) alleging that the Participant Software (meaning the Contributor Version\ + \ where the Participant is a Contributor or the Original Software where the Participant\ + \ is the Initial Developer) directly or indirectly infringes any patent, then any and all\ + \ rights granted directly or indirectly to You by such Participant, the Initial Developer\ + \ (if the Initial Developer is not the Participant) and all Contributors under Sections\ + \ 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively\ + \ and automatically at the expiration of such 60 day notice period, unless if within such\ + \ 60 day period You withdraw Your claim with respect to the Participant Software against\ + \ such Participant either unilaterally or pursuant to a written agreement with Participant.\n\ + \n6.3. In the event of termination under Sections 6.1 or 6.2 above, all end user licenses\ + \ that have been validly granted by You or any distributor hereunder prior to termination\ + \ (excluding licenses granted to You by any distributor) shall survive termination.\n\n\ + 7. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\ + \ (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY\ + \ OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH\ + \ PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL\ + \ DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST PROFITS, LOSS\ + \ OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL\ + \ DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH\ + \ DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL\ + \ INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH\ + \ LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL\ + \ OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n8.\ + \ U.S. GOVERNMENT END USERS. The Covered Software is a commercial item, as that term is\ + \ defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software (as\ + \ that term is defined at 48 C.F.R. 252.227-7014(a)(1)) and commercial computer software\ + \ documentation as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with\ + \ 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government\ + \ End Users acquire Covered Software with only those rights set forth herein. This U.S.\ + \ Government Rights clause is in lieu of, and supersedes, any other FAR, DFAR, or other\ + \ clause or provision that addresses Government rights in computer software under this License.\n\ + \n9. MISCELLANEOUS. This License represents the complete agreement concerning subject matter\ + \ hereof. If any provision of this License is held to be unenforceable, such provision shall\ + \ be reformed only to the extent necessary to make it enforceable. This License shall be\ + \ governed by the law of the jurisdiction specified in a notice contained within the Original\ + \ Software (except to the extent applicable law, if any, provides otherwise), excluding\ + \ such jurisdictions conflict-of-law provisions. Any litigation relating to this License\ + \ shall be subject to the jurisdiction of the courts located in the jurisdiction and venue\ + \ specified in a notice contained within the Original Software, with the losing party responsible\ + \ for costs, including, without limitation, court costs and reasonable attorneys fees and\ + \ expenses. The application of the United Nations Convention on Contracts for the International\ + \ Sale of Goods is expressly excluded. Any law or regulation which provides that the language\ + \ of a contract shall be construed against the drafter shall not apply to this License.\ + \ You agree that You alone are responsible for compliance with the United States export\ + \ administration regulations (and the export control laws and regulation of any other countries)\ + \ when You use, distribute or otherwise make available any Covered Software.\n\n10. RESPONSIBILITY\ + \ FOR CLAIMS. As between Initial Developer and the Contributors, each party is responsible\ + \ for claims and damages arising, directly or indirectly, out of its utilization of rights\ + \ under this License and You agree to work with Initial Developer and Contributors to distribute\ + \ such responsibility on an equitable basis. Nothing herein is intended or shall be deemed\ + \ to constitute any admission of liability.\n\nNOTICE PURSUANT TO SECTION 9 OF THE COMMON\ + \ DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) The code released under the CDDL shall be\ + \ governed by the laws of the State of California (excluding conflict-of-law provisions).\ + \ Any litigation relating to this License shall be subject to the jurisdiction of the Federal\ + \ Courts of the Northern District of California and the state courts of the State of California,\ + \ with venue lying in Santa Clara County, California." json: cddl-1.0.json - yml: cddl-1.0.yml + yaml: cddl-1.0.yml html: cddl-1.0.html - text: cddl-1.0.LICENSE + license: cddl-1.0.LICENSE - license_key: cddl-1.1 + category: Copyleft Limited spdx_license_key: CDDL-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)Version 1.1 + + 1. Definitions. + + 1.1. "Contributor" means each individual or entity that creates or contributes to the creation of Modifications. + 1.2. "Contributor Version" means the combination of the Original Software, prior Modifications used by a Contributor (if any), and the Modifications made by that particular Contributor. + 1.3. "Covered Software" means (a) the Original Software, or (b) Modifications, or (c) the combination of files containing Original Software with files containing Modifications, in each case including portions thereof. + 1.4. "Executable" means the Covered Software in any form other than Source Code. + 1.5. "Initial Developer" means the individual or entity that first makes Original Software available under this License. + 1.6. "Larger Work" means a work which combines Covered Software or portions thereof with code not governed by the terms of this License. + 1.7. "License" means this document. + 1.8. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. + 1.9. "Modifications" means the Source Code and Executable form of any of the following: + A. Any file that results from an addition to, deletion from or modification of the contents of a file containing Original Software or previous Modifications; + B. Any new file that contains any part of the Original Software or previous Modification; or + C. Any new file that is contributed or otherwise made available under the terms of this License. + 1.10. "Original Software" means the Source Code and Executable form of computer software code that is originally released under this License. + 1.11. "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. + 1.12. "Source Code" means (a) the common form of computer software code in which modifications are made and (b) associated documentation included in or with such code. + 1.13. "You" (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. + 2. License Grants. + + 2.1. The Initial Developer Grant. + Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, the Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license: + (a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer, to use, reproduce, modify, display, perform, sublicense and distribute the Original Software (or portions thereof), with or without Modifications, and/or as part of a Larger Work; and + (b) under Patent Claims infringed by the making, using or selling of Original Software, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Software (or portions thereof). + (c) The licenses granted in Sections 2.1(a) and (b) are effective on the date Initial Developer first distributes or otherwise makes the Original Software available to a third party under the terms of this License. + (d) Notwithstanding Section 2.1(b) above, no patent license is granted: (1) for code that You delete from the Original Software, or (2) for infringements caused by: (i) the modification of the Original Software, or (ii) the combination of the Original Software with other software or devices. + 2.2. Contributor Grant. + Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: + (a) under intellectual property rights (other than patent or trademark) Licensable by Contributor to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof), either on an unmodified basis, with other Modifications, as Covered Software and/or as part of a Larger Work; and + (b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: (1) Modifications made by that Contributor (or portions thereof); and (2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). + (c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first distributes or otherwise makes the Modifications available to a third party. + (d) Notwithstanding Section 2.2(b) above, no patent license is granted: (1) for any code that Contributor has deleted from the Contributor Version; (2) for infringements caused by: (i) third party modifications of Contributor Version, or (ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or (3) under Patent Claims infringed by Covered Software in the absence of Modifications made by that Contributor. + 3. Distribution Obligations. + + 3.1. Availability of Source Code. + Any Covered Software that You distribute or otherwise make available in Executable form must also be made available in Source Code form and that Source Code form must be distributed only under the terms of this License. You must include a copy of this License with every copy of the Source Code form of the Covered Software You distribute or otherwise make available. You must inform recipients of any such Covered Software in Executable form as to how they can obtain such Covered Software in Source Code form in a reasonable manner on or through a medium customarily used for software exchange. + 3.2. Modifications. + The Modifications that You create or to which You contribute are governed by the terms of this License. You represent that You believe Your Modifications are Your original creation(s) and/or You have sufficient rights to grant the rights conveyed by this License. + 3.3. Required Notices. + You must include a notice in each of Your Modifications that identifies You as the Contributor of the Modification. You may not remove or alter any copyright, patent or trademark notices contained within the Covered Software, or any notices of licensing or any descriptive text giving attribution to any Contributor or the Initial Developer. + 3.4. Application of Additional Terms. + You may not offer or impose any terms on any Covered Software in Source Code form that alters or restricts the applicable version of this License or the recipients' rights hereunder. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, you may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. + 3.5. Distribution of Executable Versions. + You may distribute the Executable form of the Covered Software under the terms of this License or under the terms of a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable form does not attempt to limit or alter the recipient's rights in the Source Code form from the rights set forth in this License. If You distribute the Covered Software in Executable form under a different license, You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. + 3.6. Larger Works. + You may create a Larger Work by combining Covered Software with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Software. + 4. Versions of the License. + + 4.1. New Versions. + Oracle is the initial license steward and may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Except as provided in Section 4.3, no one other than the license steward has the right to modify this License. + 4.2. Effect of New Versions. + You may always continue to use, distribute or otherwise make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. If the Initial Developer includes a notice in the Original Software prohibiting it from being distributed or otherwise made available under any subsequent version of the License, You must distribute and make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. Otherwise, You may also choose to use, distribute or otherwise make the Covered Software available under the terms of any subsequent version of the License published by the license steward. + 4.3. Modified Versions. + When You are an Initial Developer and You want to create a new license for Your Original Software, You may create and use a modified version of this License if You: (a) rename the license and remove any references to the name of the license steward (except to note that the license differs from this License); and (b) otherwise make it clear that the license contains terms which differ from this License. + 5. DISCLAIMER OF WARRANTY. + + COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 6. TERMINATION. + + 6.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. + 6.2. If You assert a patent infringement claim (excluding declaratory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You assert such claim is referred to as "Participant") alleging that the Participant Software (meaning the Contributor Version where the Participant is a Contributor or the Original Software where the Participant is the Initial Developer) directly or indirectly infringes any patent, then any and all rights granted directly or indirectly to You by such Participant, the Initial Developer (if the Initial Developer is not the Participant) and all Contributors under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively and automatically at the expiration of such 60 day notice period, unless if within such 60 day period You withdraw Your claim with respect to the Participant Software against such Participant either unilaterally or pursuant to a written agreement with Participant. + 6.3. If You assert a patent infringement claim against Participant alleging that the Participant Software directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. + 6.4. In the event of termination under Sections 6.1 or 6.2 above, all end user licenses that have been validly granted by You or any distributor hereunder prior to termination (excluding licenses granted to You by any distributor) shall survive termination. + 7. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + + 8. U.S. GOVERNMENT END USERS. + + The Covered Software is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" (as that term is defined at 48 C.F.R. § 252.227-7014(a)(1)) and "commercial computer software documentation" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software with only those rights set forth herein. This U.S. Government Rights clause is in lieu of, and supersedes, any other FAR, DFAR, or other clause or provision that addresses Government rights in computer software under this License. + + 9. MISCELLANEOUS. + + This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by the law of the jurisdiction specified in a notice contained within the Original Software (except to the extent applicable law, if any, provides otherwise), excluding such jurisdiction's conflict-of-law provisions. Any litigation relating to this License shall be subject to the jurisdiction of the courts located in the jurisdiction and venue specified in a notice contained within the Original Software, with the losing party responsible for costs, including, without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. You agree that You alone are responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries) when You use, distribute or otherwise make available any Covered Software. + + 10. RESPONSIBILITY FOR CLAIMS. + + As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + + NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) + + The code released under the CDDL shall be governed by the laws of the State of California (excluding conflict-of-law provisions). Any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California and the state courts of the State of California, with venue lying in Santa Clara County, California. json: cddl-1.1.json - yml: cddl-1.1.yml + yaml: cddl-1.1.yml html: cddl-1.1.html - text: cddl-1.1.LICENSE + license: cddl-1.1.LICENSE - license_key: cdla-permissive-1.0 + category: Permissive spdx_license_key: CDLA-Permissive-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Community Data License Agreement – Permissive – Version 1.0 + + This is the Community Data License Agreement – Permissive, Version 1.0 ("Agreement"). Data is provided to You under this Agreement by each of the Data Providers. Your exercise of any of the rights and permissions granted below constitutes Your acceptance and agreement to be bound by the terms and conditions of this Agreement. + + The benefits that each Data Provider receives from making Data available and that You receive from Data or otherwise under these terms and conditions shall be deemed sufficient consideration for the formation of this Agreement. Accordingly, Data Provider(s) and You (the "Parties") agree as follows: + + Section 1. Definitions + + 1.1 "Add" means to supplement Data with Your own or someone else’s Data, resulting in Your "Additions." Additions do not include Results. + + 1.2 "Computational Use" means Your analysis (through the use of computational devices or otherwise) or other interpretation of Data. By way of example and not limitation, "Computational Use" includes the application of any computational analytical technique, the purpose of which is the analysis of any Data in digital form to generate information about Data such as patterns, trends, correlations, inferences, insights and attributes. + + 1.3 "Data" means the information (including copyrightable information, such as images or text), collectively or individually, whether created or gathered by a Data Provider or an Entity acting on its behalf, to which rights are granted under this Agreement. + + 1.4 "Data Provider" means any Entity (including any employee or contractor of such Entity authorized to Publish Data on behalf of such Entity) that Publishes Data under this Agreement prior to Your Receiving it. + + 1.5 "Enhanced Data" means the subset of Data that You Publish and that is composed of (a) Your Additions and/or (b) Modifications to Data You have received under this Agreement. + + 1.6 "Entity" means any natural person or organization that exists under the laws of the jurisdiction in which it is organized, together with all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (a) the power, directly or indirectly, to cause the direction or management of such entity, whether by contract or otherwise, (b) the ownership of more than fifty percent (50%) of the outstanding shares or securities, (c) the beneficial ownership of such entity or, (d) the ability to appoint, whether by agreement or right, the majority of directors of an Entity. + + 1.7 "Modify" means to delete, erase, correct or re-arrange Data, resulting in "Modifications." Modifications do not include Results. + + 1.8 "Publish" means to make all or a subset of Data (including Your Enhanced Data) available in any manner which enables its Use, including by providing a copy on physical media or remote access. For any form of Entity, that is to make the Data available to any individual who is not employed by that Entity or engaged as a contractor or agent to perform work on that Entity’s behalf. A "Publication" occurs each time You Publish Data. + + 1.9 "Receive" or "Receives" means to have been given access to Data, locally or remotely. + + 1.10 "Results" means the outcomes or outputs that You obtain from Your Computational Use of Data. Results shall not include more than a de minimis portion of the Data on which the Computational Use is based. + + 1.11 "Sui Generis Database Rights" means rights, other than copyright, resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other equivalent rights anywhere in the world. + + 1.12 "Use" means using Data (including accessing, copying, studying, reviewing, adapting, analyzing, evaluating, or making Computational Use of it), either by machines or humans, or a combination of both. + + 1.13 "You" or "Your" means any Entity that Receives Data under this Agreement. + + Section 2. Right and License to Use and to Publish + + 2.1 Subject to the conditions set forth in Section 3 of this Agreement, Data Provider(s) hereby grant(s) to You a worldwide, non-exclusive, irrevocable (except as provided in Section 5) right to: (a) Use Data; and (b) Publish Data. + + 2.2 To the extent that the Data or the coordination, selection or arrangement of Data is protected or protectable under copyright, Sui Generis Database Rights, or other law, Data Provider(s) further agree(s) that such Data or coordination, selection or arrangement is hereby licensed to You and to anyone else who Receives Data under this Agreement for Use and Publication, subject to the conditions set forth in Section 3 of this Agreement. + + 2.3 Except for these rights and licenses expressly granted, no other intellectual property rights are granted or should be implied. + + Section 3. Conditions on Rights Granted + + 3.1 If You Publish Data You Receive or Enhanced Data: + + (a) You may do so under a license of Your choice provided that You give anyone who Receives the Data from You the text of this Agreement, the name of this Agreement and/or a hyperlink or other method reasonably likely to provide a copy of the text of this Agreement; and + + (b) You must cause any Data files containing Enhanced Data to carry prominent notices that You have changed those files; and + + (c) If You Publish Data You Receive, You must preserve all credit or attribution to the Data Provider(s). Such retained credit or attribution includes any of the following to the extent they exist in Data as You have Received it: legal notices or metadata; identification of the Data Provider(s); or hyperlinks to Data to the extent it is practical to do so. + + 3.2 You may provide additional or different license terms and conditions for use, reproduction, or distribution of that Enhanced Data, or for any combination of Data and Enhanced Data as a whole, provided that Your Use and Publication of that combined Data otherwise complies with the conditions stated in this License. + + 3.3 You and each Data Provider agree that Enhanced Data shall not be considered a work of joint authorship by virtue of its relationship to Data licensed under this Agreement and shall not require either any obligation of accounting to or the consent of any Data Provider. + + 3.4 This Agreement imposes no obligations or restrictions on Your Use or Publication of Results. + + Section 4. Data Provider(s)’ Representations + + 4.1 Each Data Provider represents that the Data Provider has exercised reasonable care, to assure that: (a) the Data it Publishes was created or generated by it or was obtained from others with the right to Publish the Data under this Agreement; and (b) Publication of such Data does not violate any privacy or confidentiality obligation undertaken by the Data Provider. + + Section 5. Termination + + 5.1 All of Your rights under this Agreement will terminate, and Your right to Receive, Use or Publish the Data will be revoked or modified if You materially fail to comply with the terms and conditions of this Agreement and You do not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If Your rights under this Agreement terminate, You agree to cease Receipt, Use and Publication of Data. However, Your obligations and any rights and permissions granted by You under this Agreement relating to Data that You Published prior to such termination will continue and survive. + + 5.2 If You institute litigation against a Data Provider or anyone else who Receives the Data (including a cross-claim in a lawsuit) based on the Data, other than a claim asserting breach of this Agreement, then any rights previously granted to You to Receive, Use and Publish Data under this Agreement will terminate as of the date such litigation is filed. + + Section 6. Disclaimer of Warranties and Limitation of Liability + + 6.1 EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE DATA (INCLUDING ENHANCED DATA) IS PROVIDED 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. + + 6.2 NEITHER YOU NOR ANY DATA PROVIDERS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE DATA OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + Section 7. Miscellaneous + + 7.1 You agree that it is solely Your responsibility to comply with all applicable laws with regard to Your Use or Publication of Data, including any applicable privacy, data protection, security and export laws. You agree to take reasonable steps to assist a Data Provider fulfilling responsibilities to comply with applicable laws with regard to Use or Publication of Data Received hereunder. + + 7.2 You and Data Provider(s), collectively and individually, waive and/or agree not to assert, to the extent permitted by law, any moral rights You or they hold in Data. + + 7.3 This Agreement confers no rights or remedies upon any person or entity other than the Parties and their respective heirs, executors, successors and assigns. + + 7.4 The Data Provider(s) reserve no right or expectation of privacy, data protection or confidentiality in any Data that they Publish under this Agreement. If You choose to Publish Data under this Agreement, You similarly do so with no reservation or expectation of any rights of privacy or confidentiality in that Data. + + 7.5 The Community Data License Agreement workgroup under The Linux Foundation is the steward of this Agreement ("Steward"). No one other than the Steward has the right to modify or publish new versions of this Agreement. Each version will be given a distinguishing version number. You may Use and Publish Data Received hereunder under the terms of the version of the Agreement under which You originally Received the Data, or under the terms of any subsequent version published by the Steward. json: cdla-permissive-1.0.json - yml: cdla-permissive-1.0.yml + yaml: cdla-permissive-1.0.yml html: cdla-permissive-1.0.html - text: cdla-permissive-1.0.LICENSE + license: cdla-permissive-1.0.LICENSE - license_key: cdla-permissive-2.0 + category: Permissive spdx_license_key: CDLA-Permissive-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Community Data License Agreement - Permissive - Version 2.0 + + This is the Community Data License Agreement - Permissive, Version 2.0 (the "agreement"). Data Provider(s) and Data Recipient(s) agree as follows: + + 1. Provision of the Data + + 1.1. A Data Recipient may use, modify, and share the Data made available by Data Provider(s) under this agreement if that Data Recipient follows the terms of this agreement. + + 1.2. This agreement does not impose any restriction on a Data Recipient's use, modification, or sharing of any portions of the Data that are in the public domain or that may be used, modified, or shared under any other legal exception or limitation. + + 2. Conditions for Sharing Data + + 2.1. A Data Recipient may share Data, with or without modifications, so long as the Data Recipient makes available the text of this agreement with the shared Data. + + 3. No Restrictions on Results + + 3.1. This agreement does not impose any restriction or obligations with respect to the use, modification, or sharing of Results. + + 4. No Warranty; Limitation of Liability + + 4.1. All Data Recipients receive the Data subject to the following terms: + + THE DATA IS PROVIDED ON AN "AS IS" BASIS, WITHOUT REPRESENTATIONS, 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. + + NO DATA PROVIDER SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 DATA OR RESULTS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 5. Definitions + + 5.1. "Data" means the material received by a Data Recipient under this agreement. + + 5.2. "Data Provider" means any person who is the source of Data provided under this agreement and in reliance on a Data Recipient's agreement to its terms. + + 5.3. "Data Recipient" means any person who receives Data directly or indirectly from a Data Provider and agrees to the terms of this agreement. + + 5.4. "Results" means any outcome obtained by computational analysis of Data, including for example machine learning models and models' insights. json: cdla-permissive-2.0.json - yml: cdla-permissive-2.0.yml + yaml: cdla-permissive-2.0.yml html: cdla-permissive-2.0.html - text: cdla-permissive-2.0.LICENSE + license: cdla-permissive-2.0.LICENSE - license_key: cdla-sharing-1.0 + category: Copyleft Limited spdx_license_key: CDLA-Sharing-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Community Data License Agreement – Sharing – Version 1.0 + + This is the Community Data License Agreement – Sharing, Version 1.0 ("Agreement"). Data is provided to You under this Agreement by each of the Data Providers. Your exercise of any of the rights and permissions granted below constitutes Your acceptance and agreement to be bound by the terms and conditions of this Agreement. + + The benefits that each Data Provider receives from making Data available and that You receive from Data or otherwise under these terms and conditions shall be deemed sufficient consideration for the formation of this Agreement. Accordingly, Data Provider(s) and You (the "Parties") agree as follows: + + Section 1. Definitions + + 1.1 "Add" means to supplement Data with Your own or someone else’s Data, resulting in Your "Additions." Additions do not include Results. + + 1.2 "Computational Use" means Your analysis (through the use of computational devices or otherwise) or other interpretation of Data. By way of example and not limitation, "Computational Use" includes the application of any computational analytical technique, the purpose of which is the analysis of any Data in digital form to generate information about Data such as patterns, trends, correlations, inferences, insights and attributes. + + 1.3 "Data" means the information (including copyrightable information, such as images or text), collectively or individually, whether created or gathered by a Data Provider or an Entity acting on its behalf, to which rights are granted under this Agreement. + + 1.4 "Data Provider" means any Entity (including any employee or contractor of such Entity authorized to Publish Data on behalf of such Entity) that Publishes Data under this Agreement prior to Your Receiving it. + + 1.5 "Enhanced Data" means the subset of Data that You Publish and that is composed of (a) Your Additions and/or (b) Modifications to Data You have received under this Agreement. + + 1.6 "Entity" means any natural person or organization that exists under the laws of the jurisdiction in which it is organized, together with all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (a) the power, directly or indirectly, to cause the direction or management of such entity, whether by contract or otherwise, (b) the ownership of more than fifty percent (50%) of the outstanding shares or securities, (c) the beneficial ownership of such entity or, (d) the ability to appoint, whether by agreement or right, the majority of directors of an Entity. + + 1.7 "Ledger" means a digital record of Data or grants of rights in Data governed by this Agreement, using any technology having functionality to record and store Data or grants, contributions, or licenses to Data governed by this Agreement. + + 1.8 "Modify" means to delete, erase, correct or re-arrange Data, resulting in "Modifications." Modifications do not include Results. + + 1.9 "Publish" means to make all or a subset of Data (including Your Enhanced Data) available in any manner which enables its Use, including by providing a copy on physical media or remote access. For any form of Entity, that is to make the Data available to any individual who is not employed by that Entity or engaged as a contractor or agent to perform work on that Entity’s behalf. A "Publication" occurs each time You Publish Data. + + 1.10 "Receive" or "Receives" means to have been given access to Data, locally or remotely. + + 1.11 "Results" means the outcomes or outputs that You obtain from Your Computational Use of Data. Results shall not include more than a de minimis portion of the Data on which the Computational Use is based. + + 1.12 "Sui Generis Database Rights" means rights, other than copyright, resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other equivalent rights anywhere in the world. + + 1.13 "Use" means using Data (including accessing, copying, studying, reviewing, adapting, analyzing, evaluating, or making Computational Use of it), either by machines or humans, or a combination of both. + + 1.14 "You" or "Your" means any Entity that Receives Data under this Agreement. + + Section 2. Right and License to Use and to Publish + + 2.1 Subject to the conditions set forth in Section 3 of this Agreement, Data Provider(s) hereby grant(s) to You a worldwide, non-exclusive, irrevocable (except as provided in Section 5) right to: (a) Use Data; and (b) Publish Data. + + 2.2 To the extent that the Data or the coordination, selection or arrangement of Data is protected or protectable under copyright, Sui Generis Database Rights, or other law, Data Provider(s) further agree(s) that such Data or coordination, selection or arrangement is hereby licensed to You and to anyone else who Receives Data under this Agreement for Use and Publication, subject to the conditions set forth in Section 3 of this Agreement. + + 2.3 Except for these rights and licenses expressly granted, no other intellectual property rights are granted or should be implied. + + Section 3. Conditions on Rights Granted + + 3.1 If You Publish Data You Receive or Enhanced Data: + + (a) The Data (including the Enhanced Data) must be Published under this Agreement in accordance with this Section 3; and + + (b) You must cause any Data files containing Enhanced Data to carry prominent notices that You have changed those files; and + + (c) If You Publish Data You Receive, You must preserve all credit or attribution to the Data Provider(s). Such retained credit or attribution includes any of the following to the extent they exist in Data as You have Received it: legal notices or metadata; identification of the Data Provider(s); or hyperlinks to Data to the extent it is practical to do so. + + 3.2 You may not restrict or deter the ability of anyone who Receives the Data (a) to Publish the Data in a publicly-accessible manner or (b) if the project has designated a Ledger for recording Data or grants of rights in Data for purposes of this Agreement, to record the Data or grants of rights in Data in the Ledger. + + 3.3 If You Publish Data You Receive, You must do so under an unmodified form of this Agreement and include the text of this Agreement, the name of this Agreement and/or a hyperlink or other method reasonably likely to provide a copy of the text of this Agreement. You may not modify this Agreement or impose any further restrictions on the exercise of the rights granted under this Agreement, including by adding any restriction on commercial or non-commercial Use of Data (including Your Enhanced Data) or by limiting permitted Use of such Data to any particular platform, technology or field of endeavor. Notices that purport to modify this Agreement shall be of no effect. + + 3.4 You and each Data Provider agree that Enhanced Data shall not be considered a work of joint authorship by virtue of its relationship to Data licensed under this Agreement and shall not require either any obligation of accounting to or the consent of any Data Provider. + + 3.5 This Agreement imposes no obligations or restrictions on Your Use or Publication of Results. + + Section 4. Data Provider(s)’ Representations + + 4.1 Each Data Provider represents that the Data Provider has exercised reasonable care, to assure that: (a) the Data it Publishes was created or generated by it or was obtained from others with the right to Publish the Data under this Agreement; and (b) Publication of such Data does not violate any privacy or confidentiality obligation undertaken by the Data Provider. + + Section 5. Termination + + 5.1 All of Your rights under this Agreement will terminate, and Your right to Receive, Use or Publish the Data will be revoked or modified if You materially fail to comply with the terms and conditions of this Agreement and You do not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If Your rights under this Agreement terminate, You agree to cease Receipt, Use and Publication of Data. However, Your obligations and any rights and permissions granted by You under this Agreement relating to Data that You Published prior to such termination will continue and survive. + + 5.2 If You institute litigation against a Data Provider or anyone else who Receives the Data (including a cross-claim in a lawsuit) based on the Data, other than a claim asserting breach of this Agreement, then any rights previously granted to You to Receive, Use and Publish Data under this Agreement will terminate as of the date such litigation is filed. + + Section 6. Disclaimer of Warranties and Limitation of Liability + + 6.1 EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE DATA (INCLUDING ENHANCED DATA) IS PROVIDED 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. + + 6.2 NEITHER YOU NOR ANY DATA PROVIDERS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE DATA OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + Section 7. Miscellaneous + + 7.1 You agree that it is solely Your responsibility to comply with all applicable laws with regard to Your Use or Publication of Data, including any applicable privacy, data protection, security and export laws. You agree to take reasonable steps to assist a Data Provider fulfilling responsibilities to comply with applicable laws with regard to Use or Publication of Data Received hereunder. + + 7.2 You and Data Provider(s), collectively and individually, waive and/or agree not to assert, to the extent permitted by law, any moral rights You or they hold in Data. + + 7.3 This Agreement confers no rights or remedies upon any person or entity other than the Parties and their respective heirs, executors, successors and assigns. + + 7.4 The Data Provider(s) reserve no right or expectation of privacy, data protection or confidentiality in any Data that they Publish under this Agreement. If You choose to Publish Data under this Agreement, You similarly do so with no reservation or expectation of any rights of privacy or confidentiality in that Data. + + 7.5 The Community Data License Agreement workgroup under The Linux Foundation is the steward of this Agreement ("Steward"). No one other than the Steward has the right to modify or publish new versions of this Agreement. Each version will be given a distinguishing version number. You may Use and Publish Data Received hereunder under the terms of the version of the Agreement under which You originally Received the Data, or under the terms of any subsequent version published by the Steward. json: cdla-sharing-1.0.json - yml: cdla-sharing-1.0.yml + yaml: cdla-sharing-1.0.yml html: cdla-sharing-1.0.html - text: cdla-sharing-1.0.LICENSE + license: cdla-sharing-1.0.LICENSE - license_key: cecill-1.0 + category: Copyleft spdx_license_key: CECILL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: " CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL\n ===========================================\n\ + \n\nAvertissement\n-------------\n\nCe contrat est une licence de logiciel libre issue d'une\ + \ concertation entre\nses auteurs afin que le respect de deux grands principes préside\ + \ à sa\nrédaction :\n - d'une part, sa conformité au droit français, tant au regard\ + \ du droit de\n la responsabilité civile que du droit de la propriété intellectuelle\n\ + \ et de la protection qu'il offre aux auteurs et titulaires des droits\n patrimoniaux\ + \ sur un logiciel.\n - d'autre part, le respect des principes de diffusion des logiciels\n\ + \ libres : accès au code source, droits étendus conférés aux\n utilisateurs.\n\n\ + Les auteurs de la cette licence CeCILL (Ce : CEA, C : CNRS, I : INRIA, LL :\nLogiciel Libre)\ + \ sont :\n\nCommissariat à l'Energie Atomique - CEA, établissement public de caractère\n\ + scientifique technique et industriel, dont le siège est situé 31-33 rue de\nla Fédération,\ + \ 75752 PARIS cedex 15.\n\nCentre National de la Recherche Scientifique - CNRS, établissement\ + \ public à\ncaractère scientifique et technologique, dont le siège est situé 3 rue\n\ + Michel-Ange 75794 Paris cedex 16.\n\nInstitut National de Recherche en Informatique et\ + \ en Automatique - INRIA,\nétablissement public à caractère scientifique et technologique,\ + \ dont le\nsiège est situé Domaine de Voluceau, Rocquencourt, BP 105, 78153 Le Chesnay\n\ + cedex.\n\n\nPREAMBULE\n---------\n\nCe contrat est une licence de logiciel libre dont\ + \ l'objectif est de\nconférer aux utilisateurs la liberté de modification et de redistribution\n\ + du logiciel régi par cette licence dans le cadre d'un modèle de diffusion\n« open source\ + \ » fondée sur le droit français.\n\nL'exercice de ces libertés est assorti de certains\ + \ devoirs à la charge des\nutilisateurs afin de préserver ce statut au cours des\ + \ redistributions\nultérieures.\n\nL'accessibilité au code source et les droits de copie,\ + \ de modification et\nde redistribution qui en découlent ont pour contrepartie de \ + \ n'offrir aux\nutilisateurs qu'une garantie limitée et de ne faire peser sur l'auteur\ + \ du\nlogiciel, le titulaire des droits patrimoniaux et les concédants successifs\nqu'une\ + \ responsabilité restreinte.\n\nA cet égard l'attention de l'utilisateur est attirée\ + \ sur les risques\nassociés au chargement, à l'utilisation, à la modification\ + \ et/ou au\ndéveloppement et à la reproduction du logiciel par l'utilisateur étant\n\ + donné sa spécificité de logiciel libre, qui peut le rendre complexe à\nmanipuler\ + \ et qui le réserve donc à des développeurs et des professionnels\navertis possédant\ + \ des connaissances informatiques approfondies. Les\nutilisateurs sont donc invités\ + \ à charger et tester l'adéquation du Logiciel\nà leurs besoins dans des conditions permettant\ + \ d'assurer la sécurité de\nleurs systèmes et ou de leurs données et, plus généralement,\ + \ à l'utiliser\net l'exploiter dans les même conditions de sécurité. Ce contrat peut\ + \ être\nreproduit et diffusé librement, sous réserve de le conserver en l'état,\n\ + sans ajout ni suppression de clauses.\n\nCe contrat est susceptible de s'appliquer à tout\ + \ logiciel dont le titulaire\ndes droits patrimoniaux décide de soumettre l'exploitation\ + \ aux dispositions\nqu'il contient.\n\n\nArticle 1er - DEFINITIONS\n-------------------------\n\ + \nDans ce contrat, les termes suivants, lorsqu'ils seront écrits avec une\nlettre capitale,\ + \ auront la signification suivante :\n\nContrat : désigne le présent contrat de licence,\ + \ ses éventuelles versions\npostérieures avenants et annexes.\n\nLogiciel : désigne le\ + \ logiciel sous sa forme de Code Objet et/ou de Code\nSource et le cas échéant sa documentation,\ + \ dans leur état au moment de\nl'acceptation du Contrat par le Licencié.\n\nLogiciel\ + \ Initial : désigne le Logiciel sous sa forme de Code Source et de\nCode Objet et le\ + \ cas échéant sa documentation, dans leur état au moment de\nleur première diffusion sous\ + \ les termes du Contrat.\n\nLogiciel Modifié : désigne le Logiciel modifié par \ + \ au moins une\nContribution.\n\nCode Source : désigne l'ensemble des instructions\ + \ et des lignes de\nprogramme du Logiciel et auquel l'accès est nécessaire en vue\ + \ de modifier\nle Logiciel.\n\nCode Objet : désigne les fichiers binaires issus de la\ + \ compilation du Code\nSource.\n\nTitulaire : désigne le détenteur des droits patrimoniaux\ + \ d'auteur sur le\nLogiciel Initial.\n\nLicencié(s) : désigne le ou les utilisateur(s)\ + \ du Logiciel ayant accepté le\nContrat.\n\nContributeur : désigne le Licencié auteur d'au\ + \ moins une Contribution.\n\nConcédant : désigne le Titulaire ou toute personne physique\ + \ ou morale\ndistribuant le Logiciel sous le Contrat.\n\nContributions : désigne l'ensemble\ + \ des modifications, corrections,\ntraductions, adaptations et/ou nouvelles fonctionnalités\ + \ intégrées dans le\nLogiciel par tout Contributeur, ainsi que les Modules Statiques.\n\ + \nModule : désigne un ensemble de fichiers sources y compris leur\ndocumentation\ + \ qui, une fois compilé sous forme exécutable, permet de\nréaliser des fonctionnalités\ + \ ou services supplémentaires à ceux fournis par\nle Logiciel.\n\nModule Dynamique : \ + \ désigne tout Module, créé par le Contributeur,\nindépendant du Logiciel, tel\ + \ que ce Module et le Logiciel sont sous forme\nde deux exécutables indépendants qui\ + \ s'exécutent dans un espace d'adressage\nindépendant, l'un appelant l'autre au moment\ + \ de leur exécution.\n\nModule Statique : désigne tout Module créé par le Contributeur\ + \ et lié au\nLogiciel par un lien statique rendant leur code objet dépendant l'un\ + \ de\nl'autre. Ce Module et le Logiciel auquel il est lié, sont regroupés en un\nseul\ + \ exécutable.\n\nParties : désigne collectivement le Licencié et le Concédant.\n\nCes termes\ + \ s'entendent au singulier comme au pluriel.\n\n\nArticle 2 - OBJET\n-----------------\n\ + \nLe Contrat a pour objet la concession par le Concédant au Licencié d'une\nLicence\ + \ non exclusive, transférable et mondiale du Logiciel telle que\ndéfinie ci-après\ + \ à l'article 5 pour toute la durée de protection des droits\nportant sur ce Logiciel.\n\ + \n\nArticle 3 - ACCEPTATION\n-----------------------\n\n3.1. L'acceptation par le Licencié\ + \ des termes du Contrat est réputée\nacquise du fait du premier des faits suivants\ + \ :\n- (i) le chargement du Logiciel par tout moyen notamment par\n téléchargement\ + \ à partir d'un serveur distant ou par chargement à\n partir d'un support physique\ + \ ;\n- (ii) le premier exercice par le Licencié de l'un quelconque des droits\n concédés\ + \ par le Contrat.\n\n3.2. Un exemplaire du Contrat, contenant notamment un avertissement\ + \ relatif\naux spécificités du Logiciel, à la restriction de garantie et à la\n\ + limitation à un usage par des utilisateurs expérimentés a été mis à\ndisposition\ + \ du Licencié préalablement à son acceptation telle que définie à\nl'article 3.1 ci \ + \ dessus et le Licencié reconnaît en avoir pris\nconnaissances.\n\n\nArticle\ + \ 4 - ENTREE EN VIGUEUR ET DUREE\n--------------------------------------\n\n4.1. ENTREE\ + \ EN VIGUEUR\n\nLe Contrat entre en vigueur à la date de son acceptation par le Licencié\n\ + telle que définie en 3.1.\n\n4.2. DUREE\n\nLe Contrat produira ses effets pendant toute\ + \ la durée légale de protection\ndes droits patrimoniaux portant sur le Logiciel.\n\n\n\ + Article 5 - ETENDUE DES DROITS CONCEDES\n---------------------------------------\n\nLe Concédant\ + \ concède au Licencié, qui accepte, les droits suivants sur le\nLogiciel pour toutes\ + \ destinations et pour la durée du Contrat dans les\nconditions ci-après détaillées.\n\ + \nPar ailleurs, le Concédant concède au Licencié à titre gracieux les droits\nd'exploitation\ + \ du ou des brevets qu'il détient sur toute ou partie des\ninventions implémentées\ + \ dans le Logiciel.\n\n5.1. DROITS D'UTILISATION\n\nLe Licencié est autorisé à utiliser\ + \ le Logiciel, sans restriction quant aux\ndomaines d'application, étant ci-après précisé\ + \ que cela comporte :\n- la reproduction permanente ou provisoire du Logiciel en tout ou\ + \ partie\n par tout moyen et sous toute forme.\n- le chargement, l'affichage, l'exécution,\ + \ ou le stockage du Logiciel\n sur tout support.\n- la possibilité d'en observer, d'en\ + \ étudier, ou d'en tester le\n fonctionnement afin de déterminer les idées et principes\ + \ qui sont à la\n base de n'importe quel élément de ce Logiciel ; et ceci, lorsque le\n\ + \ Licencié effectue toute opération de chargement, d'affichage,\n d'exécution,\ + \ de transmission ou de stockage du Logiciel qu'il est en\n droit d'effectuer en vertu\ + \ du Contrat.\n\n5.2. DROIT D'APPORTER DES CONTRIBUTIONS\n\nLe droit d'apporter des Contributions\ + \ comporte le droit de traduire,\nd'adapter, d'arranger ou d'apporter toute autre modification\ + \ du Logiciel et\nle droit de reproduire le Logiciel en résultant.\n\nLe Licencié est autorisé\ + \ à apporter toute Contribution au Logiciel sous\nréserve de mentionner, de façon explicite,\ + \ son nom en tant qu'auteur de\ncette Contribution et la date de création de celle-ci.\n\ + \n5.3. DROITS DE DISTRIBUTION ET DE DIFFUSION\n\nLe droit de distribution et de diffusion\ + \ comporte notamment le droit de\ntransmettre et de communiquer le Logiciel au public\ + \ sur tout support et\npar tout moyen ainsi que le droit de mettre sur le marché à\ + \ titre onéreux\nou gratuit, un ou des exemplaires du Logiciel par tout procédé.\nLe Licencié\ + \ est autorisé à redistribuer des copies du Logiciel, modifié ou\nnon, à des tiers dans\ + \ les conditions ci-après détaillées.\n\n5.3.1. REDISTRIBUTION DU LOGICIEL SANS MODIFICATION\n\ + \nLe Licencié est autorisé à redistribuer des copies conformes du Logiciel,\nsous forme\ + \ de Code Source ou de Code Objet, à condition que cette\nredistribution respecte les dispositions\ + \ du Contrat dans leur totalité et\nsoit accompagnée :\n- d'un exemplaire du Contrat,\n\ + - d'un avertissement relatif à la restriction de garantie et de\n responsabilité\ + \ du Concédant telle que prévue aux articles 8 et 9,\net que, dans le cas où seul le Code\ + \ Objet du Logiciel est redistribué, le\nLicencié permette aux futurs Licenciés d'accéder\ + \ facilement au Code Source\ncomplet du Logiciel en indiquant les modalités d'accès, \ + \ étant entendu que\nle coût additionnel d'acquisition du Code Source ne devra pas \ + \ excéder le\nsimple coût de transfert des données.\n\n5.3.2. REDISTRIBUTION DU LOGICIEL\ + \ MODIFIE\n\nLorsque le Licencié apporte une Contribution au Logiciel, les conditions de\n\ + redistribution du Logiciel Modifié sont alors soumises à l'intégralité des\ndispositions\ + \ du Contrat.\n\nLe Licencié est autorisé à redistribuer le Logiciel Modifié, sous forme\ + \ de\nCode Source ou de Code Objet, à condition que cette redistribution respecte\nles\ + \ dispositions du Contrat dans leur totalité et soit accompagnée :\n- d'un exemplaire du\ + \ Contrat,\n- d'un avertissement relatif à la restriction de garantie et de\n \ + \ responsabilité du concédant telle que prévue aux articles 8 et 9,\net que, dans le \ + \ cas où seul le Code Objet du Logiciel Modifié est\nredistribué, le Licencié permette\ + \ aux futurs Licenciés d'accéder facilement\nau Code Source complet du Logiciel Modifié\ + \ en indiquant les modalités\nd'accès, étant entendu que le coût additionnel d'acquisition\ + \ du Code Source\nne devra pas excéder le simple coût de transfert des données.\n\n5.3.3.\ + \ redistribution des MODULES DYNAMIQUES\n\nLorsque le Licencié a développé un Module\ + \ Dynamique les conditions du\nContrat ne s'appliquent pas à ce Module Dynamique, qui\ + \ peut être distribué\nsous un contrat de licence différent.\n\n5.3.4. COMPATIBILITE AVEC\ + \ LA LICENCE GPL\n\nDans le cas où le Logiciel, Modifié ou non, est intégré à un code\ + \ soumis\naux dispositions de la licence GPL, le Licencié est autorisé à redistribuer\n\ + l'ensemble sous la licence GPL.\n\nDans le cas où le Logiciel Modifié intègre un code soumis\ + \ aux dispositions\nde la licence GPL, le Licencié est autorisé à redistribuer le\ + \ Logiciel\nModifié sous la licence GPL.\n\n\nArticle 6 - PROPRIETE INTELLECTUELLE\n------------------------------------\n\ + \n6.1. SUR LE LOGICIEL INITIAL\n\nLe Titulaire est détenteur des droits patrimoniaux sur\ + \ le Logiciel Initial.\nToute utilisation du Logiciel Initial est soumise au respect des\ + \ conditions\ndans lesquelles le Titulaire a choisi de diffuser son oeuvre et nul autre\n\ + n'a la faculté de modifier les conditions de diffusion de ce Logiciel \nInitial.\n\ + \nLe Titulaire s'engage à maintenir la diffusion du Logiciel initial sous\nles conditions\ + \ du Contrat et ce, pour la durée visée à l'article 4.2.\n\n6.2. SUR LES CONTRIBUTIONS\n\ + \nLes droits de propriété intellectuelle sur les Contributions sont attachés\nau titulaire\ + \ de droits patrimoniaux désignés par la législation applicable.\n\n6.3. SUR LES MODULES\ + \ DYNAMIQUES\n\nLe Licencié ayant développé un Module Dynamique est titulaire des droits\ + \ de\npropriété intellectuelle sur ce Module Dynamique et reste libre du choix du\ncontrat\ + \ régissant sa diffusion.\n\n6.4. DISPOSITIONS COMMUNES\n\n6.4.1. Le Licencié s'engage expressément\ + \ :\n- à ne pas supprimer ou modifier de quelque manière que ce soit les\n mentions\ + \ de propriété intellectuelle apposées sur le Logiciel;\n- à reproduire à l'identique\ + \ lesdites mentions de propriété\n intellectuelle sur les copies du Logiciel.\n\ + \n6.4.2. Le Licencié s'engage à ne pas porter atteinte, directement ou\nindirectement,\ + \ aux droits de propriété intellectuelle du Titulaire et/ou\ndes Contributeurs et à\ + \ prendre, le cas échéant, à l'égard de son personnel\ntoutes les mesures nécessaires\ + \ pour assurer le respect des dits droits de\npropriété intellectuelle du Titulaire et/ou\ + \ des Contributeurs.\n\n\nArticle 7 - SERVICES ASSOCIES\n-----------------------------\n\ + \n7.1. Le Contrat n'oblige en aucun cas le Concédant à la réalisation de\nprestations\ + \ d'assistance technique ou de maintenance du Logiciel.\n\nCependant le Concédant reste\ + \ libre de proposer ce type de services. Les\ntermes et conditions d'une telle assistance\ + \ technique et/ou d'une telle\nmaintenance seront alors déterminés dans un acte \ + \ séparé. Ces actes de\nmaintenance et/ou assistance technique n'engageront que\ + \ la seule\nresponsabilité du Concédant qui les propose.\n\n7.2. De même, tout Concédant\ + \ est libre de proposer, sous sa seule\nresponsabilité, à ses licenciés une garantie,\ + \ qui n'engagera que lui, lors\nde la redistribution du Logiciel et/ou du Logiciel Modifié\ + \ et ce, dans les\nconditions qu'il souhaite. Cette garantie et les modalités financières\ + \ de\nson application feront l'objet d'un acte séparé entre le Concédant et le\nLicencié.\n\ + \n\nArticle 8 - RESPONSABILITE\n--------------------------\n\n8.1. Sous réserve des dispositions\ + \ de l'article 8.2, si le Concédant\nn'exécute pas tout ou partie des obligations\ + \ mises à sa charge par le\nContrat, le Licencié a la faculté, sous réserve de \ + \ prouver la faute du\nConcédant concerné, de solliciter la réparation du préjudice\ + \ direct qu'il\nsubit et dont il apportera la preuve.\n\n8.2. La responsabilité du Concédant\ + \ est limitée aux engagements pris en\napplication du Contrat et ne saurait être engagée\n\ + en raison notamment :(i) des dommages dus à l'inexécution, totale ou\npartielle,\ + \ de ses obligations par le Licencié, (ii) des dommages directs ou\nindirects découlant\ + \ de l'utilisation ou des performances du Logiciel subis\npar le Licencié lorsqu'il s'agit\ + \ d'un professionnel utilisant le Logiciel à\ndes fins professionnelles et (iii) des\ + \ dommages indirects découlant de\nl'utilisation ou des performances du Logiciel.\ + \ Les Parties conviennent\nexpressément que tout préjudice financier ou commercial (par\ + \ exemple perte\nde données, perte de bénéfices, perte d'exploitation, perte de clientèle\ + \ ou\nde commandes, manque à gagner, trouble commercial quelconque) ou toute\naction\ + \ dirigée contre le Licencié par un tiers, constitue un dommage\nindirect et n'ouvre\ + \ pas droit à réparation par le Concédant.\n\n\nArticle 9 - GARANTIE\n--------------------\n\ + \n9.1. Le Licencié reconnaît que l'état actuel des connaissances\nscientifiques\ + \ et techniques au moment de la mise en circulation du Logiciel\nne permet pas d'en tester\ + \ et d'en vérifier toutes les utilisations ni de\ndétecter l'existence d'éventuels défauts.\ + \ L'attention du Licencié a été\nattirée sur ce point sur les risques associés\ + \ au chargement, à\nl'utilisation, la modification et/ou au développement et à la\ + \ reproduction\ndu Logiciel qui sont réservés à des utilisateurs avertis.\n\nIl relève\ + \ de la responsabilité du Licencié de contrôler, par tous moyens,\nl'adéquation du produit\ + \ à ses besoins, son bon fonctionnement et de\ns'assurer qu'il ne causera pas de\ + \ dommages aux personnes et aux biens.\n\n9.2. Le Concédant déclare de bonne foi être en\ + \ droit de concéder l'ensemble\ndes droits attachés au Logiciel (comprenant notamment \ + \ les droits visés à\nl'article 5).\n\n9.3. Le Licencié reconnaît que le Logiciel est\ + \ fourni « en l'état » par le\nConcédant sans autre garantie, expresse ou tacite, \ + \ que celle prévue à\nl'article 9.2 et notamment sans aucune garantie sur sa valeur\ + \ commerciale,\nson caractère sécurisé, innovant ou pertinent.\n\nEn particulier, le Concédant\ + \ ne garantit pas que le Logiciel est exempt\nd'erreur, qu'il fonctionnera sans interruption,\ + \ qu'il sera compatible avec\nl'équipement du Licencié et sa configuration logicielle\ + \ ni qu'il remplira\nles besoins du Licencié.\n\n9.4. Le Concédant ne garantit pas, de\ + \ manière expresse ou tacite, que le\nLogiciel ne porte pas atteinte à un quelconque\ + \ droit de propriété\nintellectuelle d'un tiers portant sur un brevet, un logiciel\ + \ ou sur tout\nautre droit de propriété. Ainsi, le Concédant exclut toute garantie\ + \ au\nprofit du Licencié contre les actions en contrefaçon qui pourraient être\ndiligentées\ + \ au titre de l'utilisation, de la modification, et de la\nredistribution du Logiciel.\ + \ Néanmoins, si de telles actions sont exercées\ncontre le Licencié, le Concédant \ + \ lui apportera son aide technique et\njuridique pour sa défense. Cette aide technique\ + \ et juridique est déterminée\nau cas par cas entre le Concédant concerné et le Licencié\ + \ dans le cadre\nd'un protocole d'accord. Le Concédant dégage toute responsabilité \ + \ quant à\nl'utilisation de la dénomination du Logiciel par le Licencié. Aucune\n\ + garantie n'est apportée quant à l'existence de droits antérieurs sur le nom\ndu Logiciel\ + \ et sur l'existence d'une marque.\n\n\nArticle 10 - RESILIATION\n-------------------------\n\ + \n10.1. En cas de manquement par le Licencié aux obligations mises à sa\ncharge par\ + \ le Contrat, le Concédant pourra résilier de plein droit le\nContrat trente (30)\ + \ jours après notification adressée au Licencié et restée\nsans effet.\n\n10.2. Le Licencié\ + \ dont le Contrat est résilié n'est plus autorisé à\nutiliser, modifier ou distribuer\ + \ le Logiciel. Cependant, toutes les\nLicences licences qu'il aura concédées antérieurement\ + \ à la résiliation du\nContrat resteront valides sous réserve qu'elles aient été \ + \ effectuées en\nconformité avec le Contrat.\n\n\nArticle 11 - DISPOSITIONS DIVERSES\n\ + ----------------------------------\n\n11.1. CAUSE EXTERIEURE\n\nAucune des Parties ne sera\ + \ responsable d'un retard ou d'une défaillance\nd'exécution du Contrat qui serait dû\ + \ à un cas de force majeure, un cas\nfortuit ou une cause extérieure, telle \ + \ que, notamment, le mauvais\nfonctionnement ou les interruptions du réseau\ + \ électrique ou de\ntélécommunication, la paralysie du réseau liée à une attaque\ + \ informatique,\nl'intervention des autorités gouvernementales, les catastrophes naturelles,\n\ + les dégâts des eaux, les tremblements de terre, le feu, les explosions, les\ngrèves et\ + \ les conflits sociaux, l'état de guerre.\n\n11.2. Le fait, par l'une ou l'autre des\ + \ Parties, d'omettre en une ou\nplusieurs occasions de se prévaloir d'une ou plusieurs\ + \ dispositions du\nContrat, ne pourra en aucun cas impliquer renonciation par la\ + \ Partie\nintéressée à s'en prévaloir ultérieurement.\n\n11.3. Le Contrat annule et remplace\ + \ toute convention antérieure, écrite ou\norale, entre les Parties sur le même objet\ + \ et constitue l'accord entier\nentre les Parties sur cet objet. Aucune addition ou\ + \ modification aux termes\ndu Contrat n'aura d'effet à l'égard des Parties à moins d'être\ + \ faite par\nécrit et signée par leurs représentants dûment habilités.\n\n11.4. Dans l'hypothèse\ + \ où une ou plusieurs des dispositions du Contrat\ns'avèrerait contraire à une loi\ + \ ou à un texte applicable, existants ou\nfuturs, cette loi ou ce texte prévaudrait,\ + \ et les Parties feraient les\namendements nécessaires pour se conformer à cette loi\ + \ ou à ce texte. Toutes\nles autres dispositions resteront en vigueur. De même, la \ + \ nullité, pour\nquelque raison que ce soit, d'une des dispositions du Contrat ne saurait\n\ + entraîner la nullité de l'ensemble du Contrat.\n\n11.5. LANGUE\n\nLe Contrat est rédigé\ + \ en langue française et en langue anglaise. En cas de\ndivergence d'interprétation, seule\ + \ la version française fait foi.\n\n\nArticle 12 - NOUVELLES VERSIONS DU CONTRAT\n------------------------------------------\n\ + \n12.1. Toute personne est autorisée à copier et distribuer des copies de ce\nContrat.\n\ + \n12.2. Afin d'en préserver la cohérence, le texte du Contrat est protégé et\nne peut\ + \ être modifié que par les auteurs de la licence, lesquels se\nréservent le droit\ + \ de publier périodiquement des mises à jour ou de\nnouvelles versions du Contrat,\ + \ qui possèderont chacune un numéro distinct.\nCes versions ultérieures seront susceptibles\ + \ de prendre en compte de\nnouvelles problématiques rencontrées par les logiciels libres.\n\ + \n12.3. Tout Logiciel diffusé sous une version donnée du Contrat ne pourra\nfaire l'objet\ + \ d'une diffusion ultérieure que sous la même version du\nContrat ou une version\ + \ postérieure, sous réserve des dispositions de\nl'article 5.3.4.\n\n\nArticle 13\ + \ - LOI APPLICABLE ET COMPETENCE TERRITORIALE\n------------------------------------------------------\n\ + \n13.1. Le Contrat est régi par la loi française. Les Parties conviennent de\ntenter de\ + \ régler à l'amiable les différends ou litiges qui viendraient à se\nproduire par suite\ + \ ou à l'occasion du Contrat.\n\n13.2. A défaut d'accord amiable dans un délai de deux (2)\ + \ mois à compter de\nleur survenance et sauf situation relevant d'une procédure d'urgence,\ + \ les\ndifférends ou litiges seront portés par la Partie la plus diligente devant\nles\ + \ Tribunaux compétents de Paris.\n\n\n\n \ + \ Version 1 du 21/06/2004" json: cecill-1.0.json - yml: cecill-1.0.yml + yaml: cecill-1.0.yml html: cecill-1.0.html - text: cecill-1.0.LICENSE + license: cecill-1.0.LICENSE - license_key: cecill-1.0-en + category: Copyleft spdx_license_key: LicenseRef-scancode-cecill-1.0-en other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: " FREE SOFTWARE LICENSING AGREEMENT CeCILL\n ========================================\n\ + \n\nNotice\n------\n\n\nThis Agreement is a free software license that is the result of\ + \ discussions\nbetween its authors in order to ensure compliance with the two \ + \ main\nprinciples guiding its drafting:\n - firstly, its conformity with French law,\ + \ both as regards the law of\n torts and intellectual property law, and the protection\ + \ that it offers\n to authors and the holders of economic rights over software.\n \ + \ - secondly, compliance with the principles for the distribution of free\n software:\ + \ access to source codes, extended user-rights.\n\nThe following bodies are the authors\ + \ of this license CeCILL (Ce : CEA, C :\nCNRS, I : INRIA, LL : Logiciel Libre):\n\nCommissariat\ + \ à l'Energie Atomique - CEA, a public scientific, technical and\nindustrial establishment,\ + \ having its principal place of business at 31-33\nrue de la Fédération, 75752 PARIS\ + \ cedex 15.\n\nCentre National de la Recherche Scientifique - CNRS, a public scientific\n\ + and technological establishment, having its principal place of business at\n3 rue Michel-Ange\ + \ 75794 Paris cedex 16.\n\nInstitut National de Recherche en Informatique et en Automatique\ + \ - INRIA, a\npublic scientific and technological establishment, having its principal\n\ + place of business at Domaine de Voluceau, Rocquencourt, BP 105, 78153 Le\nChesnay cedex.\n\ + \n\nPREAMBLE\n--------\n\n\nThe purpose of this Free Software Licensing Agreement is to\ + \ grant users the\nright to modify and redistribute the software governed by this\ + \ license\nwithin the framework of an \"open source\" distribution model.\n\nThe exercising\ + \ of these rights is conditional upon certain obligations for\nusers so as to ensure\ + \ that this status is retained for subsequent\nredistribution operations.\n\nNevertheless,\ + \ access to the source code, and the resulting rights to copy,\nmodify and redistribute\ + \ only provide users with a limited warranty and the\nsoftware's author, the holder of\ + \ the economic rights, and the successive\nlicensors only have limited liability.\n\n\ + In this respect, the user's attention is drawn to the risks associated with\nloading, using,\ + \ modifying and/or developing or reproducing the software by\nthe user in light of its\ + \ specific status of free software, that may mean\nthat it is complicated to manipulate,\ + \ and that also therefore means that it\nis reserved for developers and experienced professionals\ + \ having in-depth IT\nknowledge. Users are therefore encouraged to load and test the\ + \ Software's\nsuitability as regards their requirements in conditions enabling \ + \ the\nsecurity of their systems and/or data to be ensured and, more generally, to\nuse\ + \ and operate it in the same conditions as regards security. This\nAgreement may\ + \ be freely reproduced and published, provided it is not\naltered, and that no Articles\ + \ are either added or removed herefrom.\n\nThis Agreement may apply to any or all software\ + \ for which the holder of the\neconomic rights decides to submit the operation thereof\ + \ to its provisions.\n\n\nArticle 1 - DEFINITIONS\n------------------------\n\n\nFor the\ + \ purposes of this Agreement, when the following expressions commence\nwith a capital letter,\ + \ they shall have the following meaning:\n\nAgreement: means this Licensing Agreement, and\ + \ any or all of its subsequent\nversions.\n\nSoftware: means the software in its Object\ + \ Code and/or Source Code form\nand, where applicable, its documentation, \"as is\"\ + \ at the time when the\nLicensee accepts the Agreement.\n\nInitial Software: means\ + \ the Software in its Source Code and/or Object Code\nform and, where applicable, its\ + \ documentation, \"as is\" at the time when it\nis distributed for the first time under\ + \ the terms and conditions of the\nAgreement.\n\nModified Software: means the Software\ + \ modified by at least one\nContribution.\n\nSource Code: means all the Software's\ + \ instructions and program lines to\nwhich access is required so as to modify the Software.\n\ + \nObject Code: means the binary files originating from the compilation of the\nSource Code.\n\ + \nHolder: means the holder of the economic copyright over the Initial\nSoftware.\n\ + \nLicensee(s): mean(s) the Software user(s) having accepted the Agreement.\n\nContributor:\ + \ means a Licensee having made at least one Contribution.\n\nLicensor: means the Holder,\ + \ or any or all other individual or legal entity,\nthat distributes the Software under\ + \ the Agreement.\n\nContributions: mean any or all modifications, corrections, translations,\n\ + adaptations and/or new functionalities integrated into the Software by any\nor all Contributor,\ + \ and the Static Modules.\n\nModule: means a set of sources files including their documentation\ + \ that,\nonce compiled in executable form, enables supplementary functionalities or\n\ + services to be developed in addition to those offered by the Software.\n\nDynamic Module:\ + \ means any or all module, created by the Contributor, that\nis independent of the Software,\ + \ so that this module and the Software are in\ntwo different executable forms that are\ + \ run in separate address spaces,\nwith one calling the other when they are run.\n\n\ + Static Module: means any or all module, created by the Contributor and\nconnected\ + \ to the Software by a static link that makes their object codes\ninterdependent. This\ + \ module and the Software to which it is connected, are\ncombined in a single executable.\n\ + \nParties: mean both the Licensee and the Licensor.\n\nThese expressions may be used both\ + \ in singular and plural form.\n\n\nArticle 2 - PURPOSE\n-------------------\n\n\nThe purpose\ + \ of the Agreement is to enable the Licensor to grant the\nLicensee a free, non-exclusive,\ + \ transferable and worldwide License for the\nSoftware as set forth in Article 5 hereinafter\ + \ for the whole term of\nprotection of the rights over said Software.\n\n\nArticle\ + \ 3 - ACCEPTANCE\n----------------------\n\n\n3.1. The Licensee shall be deemed as\ + \ having accepted the terms and\nconditions of this Agreement by the occurrence\ + \ of the first of the\nfollowing events:\n- (i) loading the Software by any or all\ + \ means, notably, by downloading\n from a remote server, or by loading from a physical\ + \ medium;\n- (ii) the first time the Licensee exercises any of the rights granted\n \ + \ hereunder.\n\n3.2. One copy of the Agreement, containing a notice relating to\ + \ the\nspecific nature of the Software, to the limited warranty, and to the\nlimitation\ + \ to use by experienced users has been provided to the Licensee\nprior to its acceptance\ + \ as set forth in Article 3.1 hereinabove, and the\nLicensee hereby acknowledges that\ + \ it is aware thereof.\n\n\nArticle 4 - EFFECTIVE DATE AND TERM\n-----------------------------------\n\ + \n\n4.1. EFFECTIVE DATE\n\nThe Agreement shall become effective on the date when it is accepted\ + \ by the\nLicensee as set forth in Article 3.1.\n\n4.2. TERM\n\nThe Agreement shall remain\ + \ in force during the whole legal term of\nprotection of the economic rights over\ + \ the Software.\n\n\nArticle 5 - SCOPE OF THE RIGHTS GRANTED\n---------------------------------------\n\ + \n\nThe Licensor hereby grants to the Licensee, that accepts such, the\nfollowing\ + \ rights as regards the Software for any or all use, and for the\nterm of the Agreement,\ + \ on the basis of the terms and conditions set forth\nhereinafter.\n\nOtherwise, the\ + \ Licensor grants to the Licensee free of charge exploitation\nrights on the patents\ + \ he holds on whole or part of the inventions\nimplemented in the Software.\n\n\ + 5.1. RIGHTS OF USE\n\nThe Licensee is authorized to use the Software, unrestrictedly, as\ + \ regards\nthe fields of application, with it being hereinafter specified that this\n\ + relates to:\n- permanent or temporary reproduction of all or part of the Software by\n\ + \ any or all means and in any or all form.\n- loading, displaying, running, or storing\ + \ the Software on any or all\n medium.\n- entitlement to observe, study or test the operation\ + \ thereof so as to\n establish the ideas and principles that form the basis for any or\ + \ all\n constituent elements of said Software. This shall apply when the\n Licensee\ + \ carries out any or all loading, displaying, running,\n transmission or storage\ + \ operation as regards the Software, that it is\n entitled to carry out hereunder.\n\n\ + 5.2. entitlement to make CONTRIBUTIONS\n\nThe right to make Contributions includes the\ + \ right to translate, adapt,\narrange, or make any or all modification to the Software,\ + \ and the right to\nreproduce the resulting Software.\n\nThe Licensee is authorized to\ + \ make any or all Contribution to the Software\nprovided that it explicitly mentions\ + \ its name as the author of said\nContribution and the date of the development thereof.\n\ + \n5.3. DISTRIBUTION AND PUBLICATION RIGHTS\n\nIn particular, the right of distribution and\ + \ publication includes the right\nto transmit and communicate the Software to the general\ + \ public on any or\nall medium, and by any or all means, and the right to market,\ + \ either in\nconsideration of a fee, or free of charge, a copy or copies of the Software\ + \ \nby means of any or all process.\nThe Licensee is further authorized to redistribute\ + \ copies of the modified\nor unmodified Software to third parties according to\ + \ the terms and\nconditions set forth hereinafter.\n\n5.3.1. REDISTRIBUTION OF SOFTWARE\ + \ WITHOUT MODIFICATION\n\nThe Licensee is authorized to redistribute true copies of the\ + \ Software in\nSource Code or Object Code form, provided that said redistribution complies\n\ + with all the provisions of the Agreement and is accompanied by:\n- a copy of the Agreement,\n\ + - a notice relating to the limitation of both the Licensor's warranty\n and liability\ + \ as set forth in Articles 8 and 9,\nand that, in the event that only the Software's\ + \ Object Code is\nredistributed, the Licensee allows future Licensees unhindered\ + \ access to\nthe Software's full Source Code by providing them with the terms \ + \ and\nconditions for access thereto, it being understood that the additional cost\nof\ + \ acquiring the Source Code shall not exceed the cost of transferring the\ndata.\n\n5.3.2.\ + \ REDISTRIBUTION OF MODIFIED SOFTWARE\n\nWhen the Licensee makes a Contribution to the\ + \ Software, the terms and\nconditions for the redistribution of the Modified Software\ + \ shall then be\nsubject to all the provisions hereof.\n\nThe Licensee is authorized\ + \ to redistribute the Modified Software, in Source\nCode or Object Code form, provided\ + \ that said redistribution complies with\nall the provisions of the Agreement and is\ + \ accompanied by:\n- a copy of the Agreement,\n- a notice relating to the limitation of\ + \ both the Licensor's warranty\n and liability as set forth in Articles 8 and 9,\nand\ + \ that, in the event that only the Modified Software's Object Code is\nredistributed,\ + \ the Licensee allows future Licensees unhindered access to\nthe Modified Software's\ + \ full Source Code by providing them with the terms\nand conditions for access thereto,\ + \ it being understood that the additional\ncost of acquiring the Source Code shall not\ + \ exceed the cost of transferring\nthe data.\n\n\n5.3.3. redistribution OF DYNAMIC MODULES\n\ + \nWhen the Licensee has developed a Dynamic Module, the terms and conditions\nhereof do\ + \ not apply to said Dynamic Module, that may be distributed under \na separate Licensing\ + \ Agreement.\n\n5.3.4. COMPATIBILITY WITH THE GPL LICENSE\n\nIn the event that the Modified\ + \ or unmodified Software includes a code that\nis subject to the provisions of the GPL\ + \ License, the Licensee is authorized\nto redistribute the whole under the GPL License.\n\ + \nIn the event that the Modified Software includes a code that is subject to\nthe provisions\ + \ of the GPL License, the Licensee is authorized to\nredistribute the Modified\ + \ Software under the GPL License.\n\n\nArticle 6 - INTELLECTUAL PROPERTY\n----------------------------------\n\ + \n\n6.1. OVER THE INITIAL SOFTWARE\n\nThe Holder owns the economic rights over the Initial\ + \ Software. Any or all\nuse of the Initial Software is subject to compliance with \ + \ the terms and\nconditions under which the Holder has elected to distribute its work\ + \ and no\none shall be entitled to and it shall have sole entitlement to modify the\n\ + terms and conditions for the distribution of said Initial Software.\n\nThe Holder undertakes\ + \ to maintain the distribution of the Initial Software\nunder the conditions of the \ + \ Agreement, for the duration set forth in\narticle 4.2..\n\n6.2. OVER THE CONTRIBUTIONS\n\ + \nThe intellectual property rights over the Contributions are attached to the\nholder of\ + \ the economic rights as designated by effective legislation.\n\n6.3. OVER THE DYNAMIC MODULES\n\ + \nThe Licensee having developed a Dynamic Module is the holder of the\nintellectual\ + \ property rights over said Dynamic Module and is free to choose\nthe agreement that shall\ + \ govern its distribution.\n\n6.4. JOINT PROVISIONS\n\n6.4.1. The Licensee expressly undertakes:\n\ + - not to remove, or modify, in any or all manner, the intellectual\n property notices\ + \ affixed to the Software;\n- to reproduce said notices, in an identical manner, in the\ + \ copies of\n the Software.\n\n6.4.2. The Licensee undertakes not to directly or indirectly\ + \ infringe the\nintellectual property rights of the Holder and/or Contributors and to\ + \ take,\nwhere applicable, vis-à-vis its staff, any or all measures required to\n\ + ensure respect for said intellectual property rights of the Holder and/or\nContributors.\n\ + \n\nArticle 7 - RELATED SERVICES\n-----------------------------\n\n\n7.1. Under no circumstances\ + \ shall the Agreement oblige the Licensor to\nprovide technical assistance or maintenance\ + \ services for the Software.\n\nHowever, the Licensor is entitled to offer this type \ + \ of service. The\nterms and conditions of such technical assistance, and/or such\ + \ \nmaintenance, shall then be set forth in a separate instrument. Only the\nLicensor\ + \ offering said maintenance and/or technical assistance services\nshall incur liability\ + \ therefor.\n\n7.2. Similarly, any or all Licensor shall be entitled to offer to \ + \ its\nLicensees, under its own responsibility, a warranty, that shall only be\nbinding\ + \ upon itself, for the redistribution of the Software and/or the\nModified Software,\ + \ under terms and conditions that it shall decide upon\nitself. Said warranty, and\ + \ the financial terms and conditions of its\napplication, shall be subject to a separate\ + \ instrument executed between the\nLicensor and the Licensee.\n\n\nArticle 8 - LIABILITY\n\ + ----------------------\n\n\n8.1. Subject to the provisions of Article 8.2, should the Licensor\ + \ fail to\nfulfill all or part of its obligations hereunder, the Licensee shall be\n\ + entitled to claim compensation for the direct loss suffered that it is able\nto justify,\ + \ subject to providing proof of negligence by the Licensor in\nquestion.\n\n8.2. The\ + \ Licensor's liability is limited to the commitments made under this\nLicensing Agreement\ + \ and shall not be incurred as a result , in particular:\n(i) of loss due the Licensee's\ + \ total or partial failure to fulfill its\nobligations, (ii) direct or consequential\ + \ loss due to the Software's use or\nperformance that is suffered by the Licensee,\ + \ when the latter is a\nprofessional using said Software for professional purposes\ + \ and (iii)\nconsequential loss due to the Software's use or performance. The Parties\n\ + expressly agree that any or all pecuniary or business loss (i.e. loss of\ndata, loss\ + \ of profits, operating loss, loss of customers or orders,\nopportunity cost, any\ + \ disturbance to business activities) or any or all\nlegal proceedings instituted against\ + \ the Licensee by a third party, shall\nconstitute consequential loss and shall not provide\ + \ entitlement to any or\nall compensation from the Licensor.\n\n\nArticle 9 - WARRANTY\n\ + ---------------------\n\n\n9.1. The Licensee acknowledges that the current situation\ + \ as regards\nscientific and technical know-how at the time when the Software\ + \ was\ndistributed did not enable all possible uses to be tested and verified, nor\nfor\ + \ the presence of any or all faults to be detected. In this respect, the\nLicensee's attention\ + \ has been drawn to the risks associated with loading,\nusing, modifying and/or developing\ + \ and reproducing the Software that are\nreserved for experienced users.\n\nThe Licensee\ + \ shall be responsible for verifying, by any or all means, the\nproduct's suitability\ + \ for its requirements, its due and proper functioning,\nand for ensuring that it shall\ + \ not cause damage to either persons or\nproperty.\n\n9.2. The Licensor hereby represents,\ + \ in good faith, that it is entitled to\ngrant all the rights on the Software (including\ + \ in particular the rights\nset forth in Article 5 hereof over the Software).\n\n9.3.\ + \ The Licensee acknowledges that the Software is supplied \"as is\" by the\nLicensor without\ + \ any or all other express or tacit warranty, other than\nthat provided for in Article\ + \ 9.2 and, in particular, without any or all\nwarranty as to its market value, its\ + \ securised, innovative or relevant\nnature.\n\nSpecifically, the Licensor does not\ + \ warrant that the Software is free from\nany or all error, that it shall operate continuously,\ + \ that it shall be\ncompatible with the Licensee's own equipment and its\ + \ software\nconfiguration, nor that it shall meet the Licensee's requirements.\n\n9.4.\ + \ The Licensor does not either expressly or tacitly warrant that the\nSoftware does\ + \ not infringe any or all third party intellectual right\nrelating to a patent,\ + \ software or to any or all other property right.\nMoreover, the Licensor shall not\ + \ hold the Licensee harmless against any or\nall proceedings for infringement that may\ + \ be instituted in respect of the\nuse, modification and redistribution of the Software.\ + \ Nevertheless, should\nsuch proceedings be instituted against the Licensee, the Licensor\ + \ shall\nprovide it with technical and legal assistance for its defense. Such\n\ + technical and legal assistance shall be decided upon on a case-by-case\nbasis between\ + \ the relevant Licensor and the Licensee pursuant to a\nmemorandum of understanding.\ + \ The Licensor disclaims any or all liability as\nregards the Licensee's use of the Software's\ + \ name. No warranty shall be\nprovided as regards the existence of prior rights over\ + \ the name of the\nSoftware and as regards the existence of a trademark.\n\n\nArticle\ + \ 10 - TERMINATION\n-------------------------\n\n\n10.1. In the event of a breach\ + \ by the Licensee of its obligations\nhereunder, the Licensor may automatically terminate\ + \ this Agreement thirty\n(30) days after notice has been sent to the Licensee and\ + \ has remained\nineffective.\n\n10.2. The Licensee whose Agreement is terminated\ + \ shall no longer be\nauthorized to use, modify or distribute the Software. However,\ + \ any or all\nlicenses that it may have granted prior to termination of the Agreement\n\ + shall remain valid subject to their having been granted in compliance with\nthe terms\ + \ and conditions hereof.\n\n\nArticle 11 - MISCELLANEOUS PROVISIONS\n--------------------------------------\n\ + \n\n11.1. EXCUSABLE EVENTS\n\nNeither Party shall be liable for any or all delay, or failure\ + \ to perform\nthe Agreement, that may be attributable to an event of force majeure,\ + \ an\nact of God or an outside cause, such as, notably, defective functioning, or\ninterruptions\ + \ affecting the electricity or telecommunications networks,\nblocking of the network\ + \ following a virus attack, the intervention of the\ngovernment authorities, natural\ + \ disasters, water damage, earthquakes, fire,\nexplosions, strikes and labor unrest, war,\ + \ etc.\n\n11.2. The fact that either Party may fail, on one or several occasions, to\n\ + invoke one or several of the provisions hereof, shall under no\ncircumstances\ + \ be interpreted as being a waiver by the interested Party of\nits entitlement to invoke\ + \ said provision(s) subsequently.\n\n11.3. The Agreement cancels and replaces any or \ + \ all previous agreement,\nwhether written or oral, between the Parties and having the\ + \ same purpose,\nand constitutes the entirety of the agreement between said \ + \ Parties\nconcerning said purpose. No supplement or modification to the terms and\n\ + conditions hereof shall be effective as regards the Parties unless it is\nmade in writing\ + \ and signed by their duly authorized representatives.\n\n11.4. In the event that one or\ + \ several of the provisions hereof were to\nconflict with a current or future applicable\ + \ act or legislative text, said\nact or legislative text shall take precedence, and the\ + \ Parties shall make\nthe necessary amendments so as to be in compliance with \ + \ said act or\nlegislative text. All the other provisions shall remain effective.\n\ + Similarly, the fact that a provision of the Agreement may be null and\nvoid, for\ + \ any reason whatsoever, shall not cause the Agreement as a whole\nto be null and void.\n\ + \n11.5. LANGUAGE\n\nThe Agreement is drafted in both French and English. In the event\ + \ of a\nconflict as regards construction, the French version shall be deemed\n\ + authentic.\n\n\nArticle 12 - NEW VERSIONS OF THE AGREEMENT\n-------------------------------------------\n\ + \n\n12.1. Any or all person is authorized to duplicate and distribute copies of\nthis Agreement.\n\ + \n12.2. So as to ensure coherence, the wording of this Agreement is protected\nand may\ + \ only be modified by the authors of the License, that reserve the\nright to periodically\ + \ publish updates or new versions of the Agreement,\neach with a separate number. These\ + \ subsequent versions may incorporate new\nproblems encountered by the free software.\n\ + \n12.3. Any or all Software distributed under a given version of the\nAgreement\ + \ may only be subsequently distributed under the same version of\nthe Agreement, or\ + \ a subsequent version, subject to the provisions of\narticle 5.3.4.\n\n\nArticle\ + \ 13 - GOVERNING LAW AND JURISDICTION\n-------------------------------------------\n\n\n\ + 13.1. The Agreement is governed by French law. The Parties agree to\nendeavor to\ + \ settle the disagreements or disputes that may arise during the\nperformance of the Agreement\ + \ out-of-court.\n\n13.2. In the absence of an out-of-court settlement within two (2) months\ + \ as\nfrom their occurrence, and unless emergency proceedings are necessary, the\ndisagreements\ + \ or disputes shall be referred to the Paris Courts having\njurisdiction, by the first\ + \ Party to take action.\n\n\n Version\ + \ 1 of 06/21/2004" json: cecill-1.0-en.json - yml: cecill-1.0-en.yml + yaml: cecill-1.0-en.yml html: cecill-1.0-en.html - text: cecill-1.0-en.LICENSE + license: cecill-1.0-en.LICENSE - license_key: cecill-1.1 + category: Copyleft Limited spdx_license_key: CECILL-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: " FREE SOFTWARE LICENSING AGREEMENT CeCILL\n ========================================\n\ + \n\nNotice\n------\n\n\nThis Agreement is a free software license that is the result of\ + \ discussions\nbetween its authors in order to ensure compliance with the two \ + \ main\nprinciples guiding its drafting:\n - firstly, its conformity with French law,\ + \ both as regards the law of\n torts and intellectual property law, and the protection\ + \ that it offers\n to authors and the holders of economic rights over software.\n \ + \ - secondly, compliance with the principles for the distribution of free\n software:\ + \ access to source codes, extended user-rights.\n\nThe following bodies are the authors\ + \ of this license CeCILL (Ce : CEA, C :\nCNRS, I : INRIA, LL : Logiciel Libre):\n\nCommissariat\ + \ à l'Energie Atomique - CEA, a public scientific, technical and\nindustrial establishment,\ + \ having its principal place of business at 31-33\nrue de la Fédération, 75752 PARIS\ + \ cedex 15, France.\n\nCentre National de la Recherche Scientifique - CNRS, a public\ + \ scientific\nand technological establishment, having its principal place of business\ + \ at\n3 rue Michel-Ange 75794 Paris cedex 16, France.\n\nInstitut National de Recherche\ + \ en Informatique et en Automatique - INRIA, a\npublic scientific and technological establishment,\ + \ having its principal\nplace of business at Domaine de Voluceau, Rocquencourt, BP \ + \ 105, 78153 Le\nChesnay cedex.\n\n\nPREAMBLE\n--------\n\n\nThe purpose of this Free\ + \ Software Licensing Agreement is to grant users the\nright to modify and redistribute\ + \ the software governed by this license\nwithin the framework of an \"open source\"\ + \ distribution model.\n\nThe exercising of these rights is conditional upon certain obligations\ + \ for\nusers so as to ensure that this status is retained for subsequent\nredistribution\ + \ operations.\n\nAs a counterpart to the access to the source code and rights to copy, modify\n\ + and redistribute granted by the license, users are provided only with a\nlimited warranty\ + \ and the software's author, the holder of the economic\nrights, and the successive\ + \ licensors only have limited liability.\n\nIn this respect, it is brought to the user's\ + \ attention that the risks\nassociated with loading, using, modifying and/or developing\ + \ or reproducing\nthe software by the user given its nature of Free Software, that may\ + \ \nmean that it is complicated to manipulate, and that also therefore means \nthat it\ + \ is reserved for developers and experienced professionals having\nin-depth computer knowledge.\ + \ Users are therefore encouraged to load and test\nthe Software's suitability as regards\ + \ their requirements in conditions\nenabling the security of their systems and/or data\ + \ to be ensured and, more\ngenerally, to use and operate it in the same conditions\ + \ of security.\nThis Agreement may be freely reproduced and published, provided it\ + \ is\nnot altered, and that no Articles are either added or removed herefrom. \n\nThis\ + \ Agreement may apply to any or all software for which the holder of the\neconomic rights\ + \ decides to submit the operation thereof to its provisions.\n\n\nArticle 1 - DEFINITIONS\n\ + ------------------------\n\n\nFor the purposes of this Agreement, when the following expressions\ + \ commence\nwith a capital letter, they shall have the following meaning:\n\nAgreement:\ + \ means this Licensing Agreement, and any or all of its subsequent\nversions.\n\nSoftware:\ + \ means the software in its Object Code and/or Source Code form\nand, where applicable,\ + \ its documentation, \"as is\" at the time when the\nLicensee accepts the Agreement.\n\ + \nInitial Software: means the Software in its Source Code and/or Object Code\nform and,\ + \ where applicable, its documentation, \"as is\" at the time when it\nis distributed for\ + \ the first time under the terms and conditions of the\nAgreement.\n\nModified Software:\ + \ means the Software modified by at least one\nContribution.\n\nSource Code:\ + \ means all the Software's instructions and program lines to\nwhich access is required\ + \ so as to modify the Software.\n\nObject Code: means the binary files originating from\ + \ the compilation of the\nSource Code.\n\nHolder: means the holder of the economic\ + \ rights over the Initial\nSoftware.\n\nLicensee(s): mean(s) the Software user(s) having\ + \ accepted the Agreement.\n\nContributor: means a Licensee having made at least one Contribution.\n\ + \nLicensor: means the Holder, or any or all other individual or legal entity,\nthat distributes\ + \ the Software under the Agreement.\n\nContributions: mean any or all modifications, \ + \ corrections, translations,\nadaptations and/or new functionalities integrated into the\ + \ Software by any\nor all Contributor, and the Static Modules.\n\nModule: means a set\ + \ of sources files including their documentation that,\nonce compiled in executable\ + \ form, enables supplementary functionalities or\nservices to be developed in addition\ + \ to those offered by the Software.\n\nDynamic Module: means any or all module, created\ + \ by the Contributor, that\nis independent of the Software, so that this module and the\ + \ Software are in\ntwo different executable forms that are run in separate address\ + \ spaces,\nwith one calling the other when they are run.\n\nStatic Module: means any or\ + \ all module, created by the Contributor and\nconnected to the Software by a static\ + \ link that makes their object codes\ninterdependent. This module and the Software to\ + \ which it is connected, are\ncombined in a single executable.\n\nParties: mean both the\ + \ Licensee and the Licensor.\n\nThese expressions may be used both in singular and plural\ + \ form.\n\n\nArticle 2 - PURPOSE\n-------------------\n\n\nThe purpose of the Agreement\ + \ is to enable the Licensor to grant the\nLicensee a free, non-exclusive, transferable\ + \ and worldwide License for the\nSoftware as set forth in Article 5 hereinafter for\ + \ the whole term of\nprotection of the rights over said Software.\n\n\nArticle 3 - ACCEPTANCE\n\ + ----------------------\n\n\n3.1. The Licensee shall be deemed as having accepted\ + \ the terms and\nconditions of this Agreement by the occurrence of the first\ + \ of the\nfollowing events:\n- (i) loading the Software by any or all means, notably,\ + \ by downloading\n from a remote server, or by loading from a physical medium;\n- (ii)\ + \ the first time the Licensee exercises any of the rights granted\n hereunder.\n\n3.2.\ + \ One copy of the Agreement, containing a notice relating to the\nspecific nature\ + \ of the Software, to the limited warranty, and to the\nlimitation to use by experienced\ + \ users has been provided to the Licensee\nprior to its acceptance as set forth in Article\ + \ 3.1 hereinabove, and the\nLicensee hereby acknowledges that it is aware thereof.\n\ + \n\nArticle 4 - EFFECTIVE DATE AND TERM\n-----------------------------------\n\n\n4.1. EFFECTIVE\ + \ DATE\n\nThe Agreement shall become effective on the date when it is accepted by the\n\ + Licensee as set forth in Article 3.1.\n\n4.2. TERM\n\nThe Agreement shall remain in \ + \ force during the whole legal term of\nprotection of the economic rights over the\ + \ Software.\n\n\nArticle 5 - SCOPE OF THE RIGHTS GRANTED\n---------------------------------------\n\ + \n\nThe Licensor hereby grants to the Licensee, that accepts such, the\nfollowing\ + \ rights as regards the Software for any or all use, and for the\nterm of the Agreement,\ + \ on the basis of the terms and conditions set forth\nhereinafter.\n\nOtherwise, the\ + \ Licensor grants to the Licensee free of charge exploitation\nrights on the patents\ + \ he holds on whole or part of the inventions\nimplemented in the Software.\n\n\ + 5.1. RIGHTS OF USE\n\nThe Licensee is authorized to use the Software, unrestrictedly, as\ + \ regards\nthe fields of application, with it being hereinafter specified that this\n\ + relates to:\n- permanent or temporary reproduction of all or part of the Software by\n\ + \ any or all means and in any or all form.\n- loading, displaying, running, or storing\ + \ the Software on any or all\n medium.\n- entitlement to observe, study or test the operation\ + \ thereof so as to\n establish the ideas and principles that form the basis for any or\ + \ all\n constituent elements of said Software. This shall apply when the\n Licensee\ + \ carries out any or all loading, displaying, running,\n transmission or storage\ + \ operation as regards the Software, that it is\n entitled to carry out hereunder.\n\n\ + 5.2. entitlement to make CONTRIBUTIONS\n\nThe right to make Contributions includes the\ + \ right to translate, adapt,\narrange, or make any or all modification to the Software,\ + \ and the right to\nreproduce the resulting Software.\n\nThe Licensee is authorized to\ + \ make any or all Contribution to the Software\nprovided that it explicitly mentions\ + \ its name as the author of said\nContribution and the date of the development thereof.\n\ + \n5.3. DISTRIBUTION AND PUBLICATION RIGHTS\n\nIn particular, the right of distribution and\ + \ publication includes the right\nto transmit and communicate the Software to the general\ + \ public on any or\nall medium, and by any or all means, and the right to market,\ + \ either in\nconsideration of a fee, or free of charge, a copy or copies of the Software\ + \ \nby means of any or all process.\nThe Licensee is further authorized to redistribute\ + \ copies of the modified\nor unmodified Software to third parties according to\ + \ the terms and\nconditions set forth hereinafter.\n\n5.3.1. REDISTRIBUTION OF SOFTWARE\ + \ WITHOUT MODIFICATION\n\nThe Licensee is authorized to redistribute true copies of the\ + \ Software in\nSource Code or Object Code form, provided that said redistribution complies\n\ + with all the provisions of the Agreement and is accompanied by:\n- a copy of the Agreement,\n\ + - a notice relating to the limitation of both the Licensor's warranty\n and liability\ + \ as set forth in Articles 8 and 9,\nand that, in the event that only the Software's\ + \ Object Code is\nredistributed, the Licensee allows future Licensees unhindered\ + \ access to\nthe Software's full Source Code by providing them with the terms \ + \ and\nconditions for access thereto, it being understood that the additional cost\nof\ + \ acquiring the Source Code shall not exceed the cost of transferring the\ndata.\n\n5.3.2.\ + \ REDISTRIBUTION OF MODIFIED SOFTWARE\n\nWhen the Licensee makes a Contribution to the\ + \ Software, the terms and\nconditions for the redistribution of the Modified Software\ + \ shall then be\nsubject to all the provisions hereof.\n\nThe Licensee is authorized\ + \ to redistribute the Modified Software, in Source\nCode or Object Code form, provided\ + \ that said redistribution complies with\nall the provisions of the Agreement and is\ + \ accompanied by:\n- a copy of the Agreement,\n- a notice relating to the limitation of\ + \ both the Licensor's warranty\n and liability as set forth in Articles 8 and 9,\nand\ + \ that, in the event that only the Modified Software's Object Code is\nredistributed,\ + \ the Licensee allows future Licensees unhindered access to\nthe Modified Software's\ + \ full Source Code by providing them with the terms\nand conditions for access thereto,\ + \ it being understood that the additional\ncost of acquiring the Source Code shall not\ + \ exceed the cost of transferring\nthe data.\n\n\n5.3.3. redistribution OF DYNAMIC MODULES\n\ + \nWhen the Licensee has developed a Dynamic Module, the terms and conditions\nhereof do\ + \ not apply to said Dynamic Module, that may be distributed under \na separate Licensing\ + \ Agreement.\n\n5.3.4. COMPATIBILITY WITH THE GPL LICENSE\n\nIn the event that the Modified\ + \ or unmodified Software is included in a code\nthat is subject to the provisions of the\ + \ GPL License, the Licensee is\nauthorized to redistribute the whole under the GPL License.\n\ + \nIn the event that the Modified Software includes a code that is subject to\nthe provisions\ + \ of the GPL License, the Licensee is authorized to\nredistribute the Modified\ + \ Software under the GPL License.\n\n\nArticle 6 - INTELLECTUAL PROPERTY\n----------------------------------\n\ + \n\n6.1. OVER THE INITIAL SOFTWARE\n\nThe Holder owns the economic rights over the Initial\ + \ Software. Any or all\nuse of the Initial Software is subject to compliance with \ + \ the terms and\nconditions under which the Holder has elected to distribute its work\ + \ and no\none shall be entitled to and it shall have sole entitlement to modify the\n\ + terms and conditions for the distribution of said Initial Software.\n\nThe Holder undertakes\ + \ to maintain the distribution of the Initial Software\nunder the conditions of the \ + \ Agreement, for the duration set forth in\narticle 4.2..\n\n6.2. OVER THE CONTRIBUTIONS\n\ + \nThe intellectual property rights over the Contributions belong to the\nholder of the\ + \ economic rights as designated by effective legislation.\n\n6.3. OVER THE DYNAMIC MODULES\n\ + \nThe Licensee having developed a Dynamic Module is the holder of the\nintellectual\ + \ property rights over said Dynamic Module and is free to choose\nthe agreement that shall\ + \ govern its distribution.\n\n6.4. JOINT PROVISIONS\n\n6.4.1. The Licensee expressly undertakes:\n\ + - not to remove, or modify, in any or all manner, the intellectual\n property notices\ + \ affixed to the Software;\n- to reproduce said notices, in an identical manner, in the\ + \ copies of\n the Software.\n\n6.4.2. The Licensee undertakes not to directly or indirectly\ + \ infringe the\nintellectual property rights of the Holder and/or Contributors and to\ + \ take,\nwhere applicable, vis-à-vis its staff, any or all measures required to\n\ + ensure respect for said intellectual property rights of the Holder and/or\nContributors.\n\ + \n\nArticle 7 - RELATED SERVICES\n-----------------------------\n\n\n7.1. Under no circumstances\ + \ shall the Agreement oblige the Licensor to\nprovide technical assistance or maintenance\ + \ services for the Software.\n\nHowever, the Licensor is entitled to offer this type \ + \ of service. The\nterms and conditions of such technical assistance, and/or such\ + \ \nmaintenance, shall then be set forth in a separate instrument. Only the\nLicensor\ + \ offering said maintenance and/or technical assistance services\nshall incur liability\ + \ therefor.\n\n7.2. Similarly, any or all Licensor shall be entitled to offer to \ + \ its\nLicensees, under its own responsibility, a warranty, that shall only be\nbinding\ + \ upon itself, for the redistribution of the Software and/or the\nModified Software,\ + \ under terms and conditions that it shall decide upon\nitself. Said warranty, and\ + \ the financial terms and conditions of its\napplication, shall be subject to a separate\ + \ instrument executed between the\nLicensor and the Licensee.\n\n\nArticle 8 - LIABILITY\n\ + ----------------------\n\n\n8.1. Subject to the provisions of Article 8.2, should the Licensor\ + \ fail to\nfulfill all or part of its obligations hereunder, the Licensee shall be\n\ + entitled to claim compensation for the direct loss suffered as a result of\na fault on\ + \ the part of the Licensor, subject to providing evidence of it. \n\n8.2. The Licensor's\ + \ liability is limited to the commitments made under this\nLicensing Agreement and shall\ + \ not be incurred as a result , in particular:\n(i) of loss due the Licensee's total \ + \ or partial failure to fulfill its\nobligations, (ii) direct or consequential loss\ + \ due to the Software's use or\nperformance that is suffered by the Licensee, when\ + \ the latter is a\nprofessional using said Software for professional purposes\ + \ and (iii)\nconsequential loss due to the Software's use or performance. The Parties\n\ + expressly agree that any or all pecuniary or business loss (i.e. loss of\ndata, loss\ + \ of profits, operating loss, loss of customers or orders,\nopportunity cost, any\ + \ disturbance to business activities) or any or all\nlegal proceedings instituted against\ + \ the Licensee by a third party, shall\nconstitute consequential loss and shall not provide\ + \ entitlement to any or\nall compensation from the Licensor.\n\n\nArticle 9 - WARRANTY\n\ + ---------------------\n\n\n9.1. The Licensee acknowledges that the current situation\ + \ as regards\nscientific and technical know-how at the time when the Software\ + \ was\ndistributed did not enable all possible uses to be tested and verified, nor\nfor\ + \ the presence of any or all faults to be detected. In this respect, the\nLicensee's attention\ + \ has been drawn to the risks associated with loading,\nusing, modifying and/or developing\ + \ and reproducing the Software that are\nreserved for experienced users.\n\nThe Licensee\ + \ shall be responsible for verifying, by any or all means, the\nproduct's suitability\ + \ for its requirements, its due and proper functioning,\nand for ensuring that it shall\ + \ not cause damage to either persons or\nproperty.\n\n9.2. The Licensor hereby represents,\ + \ in good faith, that it is entitled to\ngrant all the rights on the Software (including\ + \ in particular the rights\nset forth in Article 5 hereof over the Software).\n\n9.3.\ + \ The Licensee acknowledges that the Software is supplied \"as is\" by the\nLicensor without\ + \ any or all other express or tacit warranty, other than\nthat provided for in Article\ + \ 9.2 and, in particular, without any or all\nwarranty as to its market value, its\ + \ secured, innovative or relevant\nnature.\n\nSpecifically, the Licensor does not warrant\ + \ that the Software is free from\nany or all error, that it shall operate continuously,\ + \ that it shall be\ncompatible with the Licensee's own equipment and its\ + \ software\nconfiguration, nor that it shall meet the Licensee's requirements.\n\n9.4.\ + \ The Licensor does not either expressly or tacitly warrant that the\nSoftware does\ + \ not infringe any or all third party intellectual right\nrelating to a patent,\ + \ software or to any or all other property right.\nMoreover, the Licensor shall not\ + \ hold the Licensee harmless against any or\nall proceedings for infringement that may\ + \ be instituted in respect of the\nuse, modification and redistribution of the Software.\ + \ Nevertheless, should\nsuch proceedings be instituted against the Licensee, the Licensor\ + \ shall\nprovide it with technical and legal assistance for its defense. Such\n\ + technical and legal assistance shall be decided upon on a case-by-case\nbasis between\ + \ the relevant Licensor and the Licensee pursuant to a\nmemorandum of understanding.\ + \ The Licensor disclaims any or all liability as\nregards the Licensee's use of the Software's\ + \ name. No warranty shall be\nprovided as regards the existence of prior rights over\ + \ the name of the\nSoftware and as regards the existence of a trademark.\n\n\nArticle\ + \ 10 - TERMINATION\n-------------------------\n\n\n10.1. In the event of a breach\ + \ by the Licensee of its obligations\nhereunder, the Licensor may automatically terminate\ + \ this Agreement thirty\n(30) days after notice has been sent to the Licensee and\ + \ has remained\nineffective.\n\n10.2. The Licensee whose Agreement is terminated\ + \ shall no longer be\nauthorized to use, modify or distribute the Software. However,\ + \ any or all\nlicenses that it may have granted prior to termination of the Agreement\n\ + shall remain valid subject to their having been granted in compliance with\nthe terms\ + \ and conditions hereof.\n\n\nArticle 11 - MISCELLANEOUS PROVISIONS\n--------------------------------------\n\ + \n\n11.1. EXCUSABLE EVENTS\n\nNeither Party shall be liable for any or all delay, or failure\ + \ to perform\nthe Agreement, that may be attributable to an event of force majeure,\ + \ an\nact of God or an outside cause, such as, notably, defective functioning, or\ninterruptions\ + \ affecting the electricity or telecommunications networks,\nblocking of the network\ + \ following a virus attack, the intervention of the\ngovernment authorities, natural\ + \ disasters, water damage, earthquakes, fire,\nexplosions, strikes and labor unrest, war,\ + \ etc.\n\n11.2. The fact that either Party may fail, on one or several occasions, to\n\ + invoke one or several of the provisions hereof, shall under no\ncircumstances\ + \ be interpreted as being a waiver by the interested Party of\nits entitlement to invoke\ + \ said provision(s) subsequently.\n\n11.3. The Agreement cancels and replaces any or \ + \ all previous agreement,\nwhether written or oral, between the Parties and having the\ + \ same purpose,\nand constitutes the entirety of the agreement between said \ + \ Parties\nconcerning said purpose. No supplement or modification to the terms and\n\ + conditions hereof shall be effective as regards the Parties unless it is\nmade in writing\ + \ and signed by their duly authorized representatives.\n\n11.4. In the event that one or\ + \ several of the provisions hereof were to\nconflict with a current or future applicable\ + \ act or legislative text, said\nact or legislative text shall take precedence, and the\ + \ Parties shall make\nthe necessary amendments so as to be in compliance with \ + \ said act or\nlegislative text. All the other provisions shall remain effective.\n\ + Similarly, the fact that a provision of the Agreement may be null and\nvoid, for\ + \ any reason whatsoever, shall not cause the Agreement as a whole\nto be null and void.\n\ + \n11.5. LANGUAGE\n\nThe Agreement is drafted in both French and English. In the event\ + \ of a\nconflict as regards construction, the French version shall be deemed\n\ + authentic.\n\n\nArticle 12 - NEW VERSIONS OF THE AGREEMENT\n-------------------------------------------\n\ + \n\n12.1. Any or all person is authorized to duplicate and distribute copies of\nthis Agreement.\n\ + \n12.2. So as to ensure coherence, the wording of this Agreement is protected\nand may\ + \ only be modified by the authors of the License, that reserve the\nright to periodically\ + \ publish updates or new versions of the Agreement,\neach with a separate number. These\ + \ subsequent versions may address new issues\nencountered by Free Software.\n\n12.3. Any\ + \ or all Software distributed under a given version of the\nAgreement may only\ + \ be subsequently distributed under the same version of\nthe Agreement, or a subsequent\ + \ version, subject to the provisions of\narticle 5.3.4.\n\n\nArticle 13 - GOVERNING\ + \ LAW AND JURISDICTION\n-------------------------------------------\n\n\n13.1. The Agreement\ + \ is governed by French law. The Parties agree to\nendeavor to settle the disagreements\ + \ or disputes that may arise during the\nperformance of the Agreement out-of-court.\n\n\ + 13.2. In the absence of an out-of-court settlement within two (2) months as\nfrom their\ + \ occurrence, and unless emergency proceedings are necessary, the\ndisagreements or disputes\ + \ shall be referred to the Paris Courts having\njurisdiction, by the first Party to\ + \ take action.\n\n\n Version 1.1 of 10/26/2004" json: cecill-1.1.json - yml: cecill-1.1.yml + yaml: cecill-1.1.yml html: cecill-1.1.html - text: cecill-1.1.LICENSE + license: cecill-1.1.LICENSE - license_key: cecill-2.0 + category: Copyleft Limited spdx_license_key: CECILL-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "CeCILL FREE SOFTWARE LICENSE AGREEMENT\n\n Notice\n\nThis Agreement is a Free Software\ + \ license agreement that is the result\nof discussions between its authors in order to ensure\ + \ compliance with\nthe two main principles guiding its drafting:\n\n * firstly, compliance\ + \ with the principles governing the distribution\n of Free Software: access to source\ + \ code, broad rights granted to\n users,\n * secondly, the election of a governing\ + \ law, French law, with which\n it is conformant, both as regards the law of torts\ + \ and\n intellectual property law, and the protection that it offers to\n both\ + \ authors and holders of the economic rights over software.\n\nThe authors of the CeCILL\ + \ (for Ce[a] C[nrs] I[nria] L[ogiciel] L[ibre])\nlicense are:\n\nCommissariat à l'Energie\ + \ Atomique - CEA, a public scientific, technical\nand industrial research establishment,\ + \ having its principal place of\nbusiness at 25 rue Leblanc, immeuble Le Ponant D, 75015\ + \ Paris, France.\n\nCentre National de la Recherche Scientifique - CNRS, a public scientific\n\ + and technological establishment, having its principal place of business\nat 3 rue Michel-Ange,\ + \ 75794 Paris cedex 16, France.\n\nInstitut National de Recherche en Informatique et en\ + \ Automatique -\nINRIA, a public scientific and technological establishment, having its\n\ + principal place of business at Domaine de Voluceau, Rocquencourt, BP\n105, 78153 Le Chesnay\ + \ cedex, France.\n\n\n Preamble\n\nThe purpose of this Free Software license agreement\ + \ is to grant users\nthe right to modify and redistribute the software governed by this\n\ + license within the framework of an open source distribution model.\n\nThe exercising of\ + \ these rights is conditional upon certain obligations\nfor users so as to preserve this\ + \ status for all subsequent redistributions.\n\nIn consideration of access to the source\ + \ code and the rights to copy,\nmodify and redistribute granted by the license, users are\ + \ provided only\nwith a limited warranty and the software's author, the holder of the\n\ + economic rights, and the successive licensors only have limited liability.\n\nIn this respect,\ + \ the risks associated with loading, using, modifying\nand/or developing or reproducing\ + \ the software by the user are brought to\nthe user's attention, given its Free Software\ + \ status, which may make it\ncomplicated to use, with the result that its use is reserved\ + \ for\ndevelopers and experienced professionals having in-depth computer\nknowledge. Users\ + \ are therefore encouraged to load and test the\nsuitability of the software as regards\ + \ their requirements in conditions\nenabling the security of their systems and/or data to\ + \ be ensured and,\nmore generally, to use and operate it in the same conditions of\nsecurity.\ + \ This Agreement may be freely reproduced and published,\nprovided it is not altered, and\ + \ that no provisions are either added or\nremoved herefrom.\n\nThis Agreement may apply\ + \ to any or all software for which the holder of\nthe economic rights decides to submit\ + \ the use thereof to its provisions.\n\n\n Article 1 - DEFINITIONS\n\nFor the purpose\ + \ of this Agreement, when the following expressions\ncommence with a capital letter, they\ + \ shall have the following meaning:\n\nAgreement: means this license agreement, and its\ + \ possible subsequent\nversions and annexes.\n\nSoftware: means the software in its Object\ + \ Code and/or Source Code form\nand, where applicable, its documentation, \"as is\" when\ + \ the Licensee\naccepts the Agreement.\n\nInitial Software: means the Software in its Source\ + \ Code and possibly its\nObject Code form and, where applicable, its documentation, \"as\ + \ is\" when\nit is first distributed under the terms and conditions of the Agreement.\n\n\ + Modified Software: means the Software modified by at least one\nContribution.\n\nSource\ + \ Code: means all the Software's instructions and program lines to\nwhich access is required\ + \ so as to modify the Software.\n\nObject Code: means the binary files originating from\ + \ the compilation of\nthe Source Code.\n\nHolder: means the holder(s) of the economic rights\ + \ over the Initial\nSoftware.\n\nLicensee: means the Software user(s) having accepted the\ + \ Agreement.\n\nContributor: means a Licensee having made at least one Contribution.\n\n\ + Licensor: means the Holder, or any other individual or legal entity, who\ndistributes the\ + \ Software under the Agreement.\n\nContribution: means any or all modifications, corrections,\ + \ translations,\nadaptations and/or new functions integrated into the Software by any or\n\ + all Contributors, as well as any or all Internal Modules.\n\nModule: means a set of sources\ + \ files including their documentation that\nenables supplementary functions or services\ + \ in addition to those offered\nby the Software.\n\nExternal Module: means any or all Modules,\ + \ not derived from the\nSoftware, so that this Module and the Software run in separate address\n\ + spaces, with one calling the other when they are run.\n\nInternal Module: means any or all\ + \ Module, connected to the Software so\nthat they both execute in the same address space.\n\ + \nGNU GPL: means the GNU General Public License version 2 or any\nsubsequent version, as\ + \ published by the Free Software Foundation Inc.\n\nParties: mean both the Licensee and\ + \ the Licensor.\n\nThese expressions may be used both in singular and plural form.\n\n\n\ + \ Article 2 - PURPOSE\n\nThe purpose of the Agreement is the grant by the Licensor to\ + \ the\nLicensee of a non-exclusive, transferable and worldwide license for the\nSoftware\ + \ as set forth in Article 5 hereinafter for the whole term of the\nprotection granted by\ + \ the rights over said Software. \n\n\n Article 3 - ACCEPTANCE\n\n3.1 The Licensee shall\ + \ be deemed as having accepted the terms and\nconditions of this Agreement upon the occurrence\ + \ of the first of the\nfollowing events:\n\n * (i) loading the Software by any or all\ + \ means, notably, by\n downloading from a remote server, or by loading from a physical\n\ + \ medium;\n * (ii) the first time the Licensee exercises any of the rights\n \ + \ granted hereunder.\n\n3.2 One copy of the Agreement, containing a notice relating to\ + \ the\ncharacteristics of the Software, to the limited warranty, and to the\nfact that its\ + \ use is restricted to experienced users has been provided\nto the Licensee prior to its\ + \ acceptance as set forth in Article 3.1\nhereinabove, and the Licensee hereby acknowledges\ + \ that it has read and\nunderstood it.\n\n\n Article 4 - EFFECTIVE DATE AND TERM\n\n\n\ + \ 4.1 EFFECTIVE DATE\n\nThe Agreement shall become effective on the date when it is\ + \ accepted by\nthe Licensee as set forth in Article 3.1.\n\n\n 4.2 TERM\n\nThe Agreement\ + \ shall remain in force for the entire legal term of\nprotection of the economic rights\ + \ over the Software.\n\n\n Article 5 - SCOPE OF RIGHTS GRANTED\n\nThe Licensor hereby\ + \ grants to the Licensee, who accepts, the following\nrights over the Software for any or\ + \ all use, and for the term of the\nAgreement, on the basis of the terms and conditions\ + \ set forth hereinafter.\n\nBesides, if the Licensor owns or comes to own one or more patents\n\ + protecting all or part of the functions of the Software or of its\ncomponents, the Licensor\ + \ undertakes not to enforce the rights granted by\nthese patents against successive Licensees\ + \ using, exploiting or\nmodifying the Software. If these patents are transferred, the Licensor\n\ + undertakes to have the transferees subscribe to the obligations set\nforth in this paragraph.\n\ + \n\n 5.1 RIGHT OF USE\n\nThe Licensee is authorized to use the Software, without any\ + \ limitation\nas to its fields of application, with it being hereinafter specified\nthat\ + \ this comprises:\n\n 1. permanent or temporary reproduction of all or part of the Software\n\ + \ by any or all means and in any or all form.\n\n 2. loading, displaying, running,\ + \ or storing the Software on any or\n all medium.\n\n 3. entitlement to observe,\ + \ study or test its operation so as to\n determine the ideas and principles behind\ + \ any or all constituent\n elements of said Software. This shall apply when the Licensee\n\ + \ carries out any or all loading, displaying, running, transmission\n or storage\ + \ operation as regards the Software, that it is entitled\n to carry out hereunder.\n\ + \n\n 5.2 ENTITLEMENT TO MAKE CONTRIBUTIONS\n\nThe right to make Contributions includes\ + \ the right to translate, adapt,\narrange, or make any or all modifications to the Software,\ + \ and the right\nto reproduce the resulting software.\n\nThe Licensee is authorized to make\ + \ any or all Contributions to the\nSoftware provided that it includes an explicit notice\ + \ that it is the\nauthor of said Contribution and indicates the date of the creation thereof.\n\ + \n\n 5.3 RIGHT OF DISTRIBUTION\n\nIn particular, the right of distribution includes\ + \ the right to publish,\ntransmit and communicate the Software to the general public on\ + \ any or\nall medium, and by any or all means, and the right to market, either in\nconsideration\ + \ of a fee, or free of charge, one or more copies of the\nSoftware by any means.\n\nThe\ + \ Licensee is further authorized to distribute copies of the modified\nor unmodified Software\ + \ to third parties according to the terms and\nconditions set forth hereinafter.\n\n\n \ + \ 5.3.1 DISTRIBUTION OF SOFTWARE WITHOUT MODIFICATION\n\nThe Licensee is authorized\ + \ to distribute true copies of the Software in\nSource Code or Object Code form, provided\ + \ that said distribution\ncomplies with all the provisions of the Agreement and is accompanied\ + \ by:\n\n 1. a copy of the Agreement,\n\n 2. a notice relating to the limitation of\ + \ both the Licensor's\n warranty and liability as set forth in Articles 8 and 9,\n\n\ + and that, in the event that only the Object Code of the Software is\nredistributed, the\ + \ Licensee allows future Licensees unhindered access to\nthe full Source Code of the Software\ + \ by indicating how to access it, it\nbeing understood that the additional cost of acquiring\ + \ the Source Code\nshall not exceed the cost of transferring the data.\n\n\n 5.3.2\ + \ DISTRIBUTION OF MODIFIED SOFTWARE\n\nWhen the Licensee makes a Contribution to the Software,\ + \ the terms and\nconditions for the distribution of the resulting Modified Software\nbecome\ + \ subject to all the provisions of this Agreement.\n\nThe Licensee is authorized to distribute\ + \ the Modified Software, in\nsource code or object code form, provided that said distribution\n\ + complies with all the provisions of the Agreement and is accompanied by:\n\n 1. a copy\ + \ of the Agreement,\n\n 2. a notice relating to the limitation of both the Licensor's\n\ + \ warranty and liability as set forth in Articles 8 and 9,\n\nand that, in the event\ + \ that only the object code of the Modified\nSoftware is redistributed, the Licensee allows\ + \ future Licensees\nunhindered access to the full source code of the Modified Software by\n\ + indicating how to access it, it being understood that the additional\ncost of acquiring\ + \ the source code shall not exceed the cost of\ntransferring the data.\n\n\n 5.3.3\ + \ DISTRIBUTION OF EXTERNAL MODULES\n\nWhen the Licensee has developed an External Module,\ + \ the terms and\nconditions of this Agreement do not apply to said External Module, that\n\ + may be distributed under a separate license agreement.\n\n\n 5.3.4 COMPATIBILITY\ + \ WITH THE GNU GPL\n\nThe Licensee can include a code that is subject to the provisions\ + \ of one\nof the versions of the GNU GPL in the Modified or unmodified Software,\nand distribute\ + \ that entire code under the terms of the same version of\nthe GNU GPL.\n\nThe Licensee\ + \ can include the Modified or unmodified Software in a code\nthat is subject to the provisions\ + \ of one of the versions of the GNU GPL,\nand distribute that entire code under the terms\ + \ of the same version of\nthe GNU GPL.\n\n\n Article 6 - INTELLECTUAL PROPERTY\n\n\n\ + \ 6.1 OVER THE INITIAL SOFTWARE\n\nThe Holder owns the economic rights over the Initial\ + \ Software. Any or\nall use of the Initial Software is subject to compliance with the terms\n\ + and conditions under which the Holder has elected to distribute its work\nand no one shall\ + \ be entitled to modify the terms and conditions for the\ndistribution of said Initial Software.\n\ + \nThe Holder undertakes that the Initial Software will remain ruled at\nleast by this Agreement,\ + \ for the duration set forth in Article 4.2.\n\n\n 6.2 OVER THE CONTRIBUTIONS\n\nThe\ + \ Licensee who develops a Contribution is the owner of the\nintellectual property rights\ + \ over this Contribution as defined by\napplicable law.\n\n\n 6.3 OVER THE EXTERNAL\ + \ MODULES\n\nThe Licensee who develops an External Module is the owner of the\nintellectual\ + \ property rights over this External Module as defined by\napplicable law and is free to\ + \ choose the type of agreement that shall\ngovern its distribution.\n\n\n 6.4 JOINT\ + \ PROVISIONS\n\nThe Licensee expressly undertakes:\n\n 1. not to remove, or modify, in\ + \ any manner, the intellectual property\n notices attached to the Software;\n\n 2.\ + \ to reproduce said notices, in an identical manner, in the copies\n of the Software\ + \ modified or not.\n\nThe Licensee undertakes not to directly or indirectly infringe the\n\ + intellectual property rights of the Holder and/or Contributors on the\nSoftware and to take,\ + \ where applicable, vis-à-vis its staff, any and all\nmeasures required to ensure respect\ + \ of said intellectual property rights\nof the Holder and/or Contributors.\n\n\n Article\ + \ 7 - RELATED SERVICES\n\n7.1 Under no circumstances shall the Agreement oblige the Licensor\ + \ to\nprovide technical assistance or maintenance services for the Software.\n\nHowever,\ + \ the Licensor is entitled to offer this type of services. The\nterms and conditions of\ + \ such technical assistance, and/or such\nmaintenance, shall be set forth in a separate\ + \ instrument. Only the\nLicensor offering said maintenance and/or technical assistance services\n\ + shall incur liability therefor.\n\n7.2 Similarly, any Licensor is entitled to offer to its\ + \ licensees, under\nits sole responsibility, a warranty, that shall only be binding upon\n\ + itself, for the redistribution of the Software and/or the Modified\nSoftware, under terms\ + \ and conditions that it is free to decide. Said\nwarranty, and the financial terms and\ + \ conditions of its application,\nshall be subject of a separate instrument executed between\ + \ the Licensor\nand the Licensee.\n\n\n Article 8 - LIABILITY\n\n8.1 Subject to the provisions\ + \ of Article 8.2, the Licensee shall be\nentitled to claim compensation for any direct loss\ + \ it may have suffered\nfrom the Software as a result of a fault on the part of the relevant\n\ + Licensor, subject to providing evidence thereof.\n\n8.2 The Licensor's liability is limited\ + \ to the commitments made under\nthis Agreement and shall not be incurred as a result of\ + \ in particular:\n(i) loss due the Licensee's total or partial failure to fulfill its\n\ + obligations, (ii) direct or consequential loss that is suffered by the\nLicensee due to\ + \ the use or performance of the Software, and (iii) more\ngenerally, any consequential loss.\ + \ In particular the Parties expressly\nagree that any or all pecuniary or business loss\ + \ (i.e. loss of data,\nloss of profits, operating loss, loss of customers or orders,\nopportunity\ + \ cost, any disturbance to business activities) or any or all\nlegal proceedings instituted\ + \ against the Licensee by a third party,\nshall constitute consequential loss and shall\ + \ not provide entitlement to\nany or all compensation from the Licensor.\n\n\n Article\ + \ 9 - WARRANTY\n\n9.1 The Licensee acknowledges that the scientific and technical\nstate-of-the-art\ + \ when the Software was distributed did not enable all\npossible uses to be tested and verified,\ + \ nor for the presence of\npossible defects to be detected. In this respect, the Licensee's\n\ + attention has been drawn to the risks associated with loading, using,\nmodifying and/or\ + \ developing and reproducing the Software which are\nreserved for experienced users.\n\n\ + The Licensee shall be responsible for verifying, by any or all means,\nthe suitability of\ + \ the product for its requirements, its good working\norder, and for ensuring that it shall\ + \ not cause damage to either persons\nor properties.\n\n9.2 The Licensor hereby represents,\ + \ in good faith, that it is entitled\nto grant all the rights over the Software (including\ + \ in particular the\nrights set forth in Article 5).\n\n9.3 The Licensee acknowledges that\ + \ the Software is supplied \"as is\" by\nthe Licensor without any other express or tacit\ + \ warranty, other than\nthat provided for in Article 9.2 and, in particular, without any\ + \ warranty \nas to its commercial value, its secured, safe, innovative or relevant\nnature.\n\ + \nSpecifically, the Licensor does not warrant that the Software is free\nfrom any error,\ + \ that it will operate without interruption, that it will\nbe compatible with the Licensee's\ + \ own equipment and software\nconfiguration, nor that it will meet the Licensee's requirements.\n\ + \n9.4 The Licensor does not either expressly or tacitly warrant that the\nSoftware does\ + \ not infringe any third party intellectual property right\nrelating to a patent, software\ + \ or any other property right. Therefore,\nthe Licensor disclaims any and all liability\ + \ towards the Licensee\narising out of any or all proceedings for infringement that may\ + \ be\ninstituted in respect of the use, modification and redistribution of the\nSoftware.\ + \ Nevertheless, should such proceedings be instituted against\nthe Licensee, the Licensor\ + \ shall provide it with technical and legal\nassistance for its defense. Such technical\ + \ and legal assistance shall be\ndecided on a case-by-case basis between the relevant Licensor\ + \ and the\nLicensee pursuant to a memorandum of understanding. The Licensor\ndisclaims any\ + \ and all liability as regards the Licensee's use of the\nname of the Software. No warranty\ + \ is given as regards the existence of\nprior rights over the name of the Software or as\ + \ regards the existence\nof a trademark.\n\n\n Article 10 - TERMINATION\n\n10.1 In the\ + \ event of a breach by the Licensee of its obligations\nhereunder, the Licensor may automatically\ + \ terminate this Agreement\nthirty (30) days after notice has been sent to the Licensee\ + \ and has\nremained ineffective.\n\n10.2 A Licensee whose Agreement is terminated shall\ + \ no longer be\nauthorized to use, modify or distribute the Software. However, any\nlicenses\ + \ that it may have granted prior to termination of the Agreement\nshall remain valid subject\ + \ to their having been granted in compliance\nwith the terms and conditions hereof.\n\n\n\ + \ Article 11 - MISCELLANEOUS\n\n\n 11.1 EXCUSABLE EVENTS\n\nNeither Party shall\ + \ be liable for any or all delay, or failure to\nperform the Agreement, that may be attributable\ + \ to an event of force\nmajeure, an act of God or an outside cause, such as defective\n\ + functioning or interruptions of the electricity or telecommunications\nnetworks, network\ + \ paralysis following a virus attack, intervention by\ngovernment authorities, natural disasters,\ + \ water damage, earthquakes,\nfire, explosions, strikes and labor unrest, war, etc.\n\n\ + 11.2 Any failure by either Party, on one or more occasions, to invoke\none or more of the\ + \ provisions hereof, shall under no circumstances be\ninterpreted as being a waiver by the\ + \ interested Party of its right to\ninvoke said provision(s) subsequently.\n\n11.3 The Agreement\ + \ cancels and replaces any or all previous agreements,\nwhether written or oral, between\ + \ the Parties and having the same\npurpose, and constitutes the entirety of the agreement\ + \ between said\nParties concerning said purpose. No supplement or modification to the\n\ + terms and conditions hereof shall be effective as between the Parties\nunless it is made\ + \ in writing and signed by their duly authorized\nrepresentatives.\n\n11.4 In the event\ + \ that one or more of the provisions hereof were to\nconflict with a current or future applicable\ + \ act or legislative text,\nsaid act or legislative text shall prevail, and the Parties\ + \ shall make\nthe necessary amendments so as to comply with said act or legislative\ntext.\ + \ All other provisions shall remain effective. Similarly, invalidity\nof a provision of\ + \ the Agreement, for any reason whatsoever, shall not\ncause the Agreement as a whole to\ + \ be invalid.\n\n\n 11.5 LANGUAGE\n\nThe Agreement is drafted in both French and English\ + \ and both versions\nare deemed authentic.\n\n\n Article 12 - NEW VERSIONS OF THE AGREEMENT\n\ + \n12.1 Any person is authorized to duplicate and distribute copies of this\nAgreement.\n\ + \n12.2 So as to ensure coherence, the wording of this Agreement is\nprotected and may only\ + \ be modified by the authors of the License, who\nreserve the right to periodically publish\ + \ updates or new versions of the\nAgreement, each with a separate number. These subsequent\ + \ versions may\naddress new issues encountered by Free Software.\n\n12.3 Any Software distributed\ + \ under a given version of the Agreement may\nonly be subsequently distributed under the\ + \ same version of the Agreement\nor a subsequent version, subject to the provisions of Article\ + \ 5.3.4.\n\n\n Article 13 - GOVERNING LAW AND JURISDICTION\n\n13.1 The Agreement is governed\ + \ by French law. The Parties agree to\nendeavor to seek an amicable solution to any disagreements\ + \ or disputes\nthat may arise during the performance of the Agreement.\n\n13.2 Failing an\ + \ amicable solution within two (2) months as from their\noccurrence, and unless emergency\ + \ proceedings are necessary, the\ndisagreements or disputes shall be referred to the Paris\ + \ Courts having\njurisdiction, by the more diligent Party.\n\n\nVersion 2.0 dated 2006-09-05." json: cecill-2.0.json - yml: cecill-2.0.yml + yaml: cecill-2.0.yml html: cecill-2.0.html - text: cecill-2.0.LICENSE + license: cecill-2.0.LICENSE - license_key: cecill-2.0-fr + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-cecill-2.0-fr other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL\n\n\n Avertissement\n\nCe contrat est\ + \ une licence de logiciel libre issue d'une concertation\nentre ses auteurs afin que le\ + \ respect de deux grands principes préside à\nsa rédaction:\n\n * d'une part, le respect\ + \ des principes de diffusion des logiciels\n libres: accès au code source, droits étendus\ + \ conférés aux\n utilisateurs,\n * d'autre part, la désignation d'un droit applicable,\ + \ le droit\n français, auquel elle est conforme, tant au regard du droit de la\n \ + \ responsabilité civile que du droit de la propriété intellectuelle\n et de la protection\ + \ qu'il offre aux auteurs et titulaires des\n droits patrimoniaux sur un logiciel.\n\ + \nLes auteurs de la licence CeCILL (pour Ce[a] C[nrs] I[nria] L[ogiciel]\nL[ibre]) sont:\n\ + \nCommissariat à l'Energie Atomique - CEA, établissement public de\nrecherche à caractère\ + \ scientifique, technique et industriel, dont le\nsiège est situé 25 rue Leblanc, immeuble\ + \ Le Ponant D, 75015 Paris.\n\nCentre National de la Recherche Scientifique - CNRS, établissement\n\ + public à caractère scientifique et technologique, dont le siège est\nsitué 3 rue Michel-Ange,\ + \ 75794 Paris cedex 16.\n\nInstitut National de Recherche en Informatique et en Automatique\ + \ -\nINRIA, établissement public à caractère scientifique et technologique,\ndont le siège\ + \ est situé Domaine de Voluceau, Rocquencourt, BP 105, 78153\nLe Chesnay cedex.\n\n\n \ + \ Préambule\n\nCe contrat est une licence de logiciel libre dont l'objectif est de\nconférer\ + \ aux utilisateurs la liberté de modification et de\nredistribution du logiciel régi par\ + \ cette licence dans le cadre d'un\nmodèle de diffusion en logiciel libre.\n\nL'exercice\ + \ de ces libertés est assorti de certains devoirs à la charge\ndes utilisateurs afin de\ + \ préserver ce statut au cours des\nredistributions ultérieures.\n\nL'accessibilité au code\ + \ source et les droits de copie, de modification\net de redistribution qui en découlent\ + \ ont pour contrepartie de n'offrir\naux utilisateurs qu'une garantie limitée et de ne faire\ + \ peser sur\nl'auteur du logiciel, le titulaire des droits patrimoniaux et les\nconcédants\ + \ successifs qu'une responsabilité restreinte.\n\nA cet égard l'attention de l'utilisateur\ + \ est attirée sur les risques\nassociés au chargement, à l'utilisation, à la modification\ + \ et/ou au\ndéveloppement et à la reproduction du logiciel par l'utilisateur étant\ndonné\ + \ sa spécificité de logiciel libre, qui peut le rendre complexe à\nmanipuler et qui le réserve\ + \ donc à des développeurs ou des\nprofessionnels avertis possédant des connaissances informatiques\n\ + approfondies. Les utilisateurs sont donc invités à charger et tester\nl'adéquation du logiciel\ + \ à leurs besoins dans des conditions permettant\nd'assurer la sécurité de leurs systèmes\ + \ et/ou de leurs données et, plus\ngénéralement, à l'utiliser et l'exploiter dans les mêmes\ + \ conditions de\nsécurité. Ce contrat peut être reproduit et diffusé librement, sous\nréserve\ + \ de le conserver en l'état, sans ajout ni suppression de clauses.\n\nCe contrat est susceptible\ + \ de s'appliquer à tout logiciel dont le\ntitulaire des droits patrimoniaux décide de soumettre\ + \ l'exploitation aux\ndispositions qu'il contient.\n\n\n Article 1 - DEFINITIONS\n\n\ + Dans ce contrat, les termes suivants, lorsqu'ils seront écrits avec une\nlettre capitale,\ + \ auront la signification suivante:\n\nContrat: désigne le présent contrat de licence, ses\ + \ éventuelles versions\npostérieures et annexes.\n\nLogiciel: désigne le logiciel sous sa\ + \ forme de Code Objet et/ou de Code\nSource et le cas échéant sa documentation, dans leur\ + \ état au moment de\nl'acceptation du Contrat par le Licencié.\n\nLogiciel Initial: désigne\ + \ le Logiciel sous sa forme de Code Source et\néventuellement de Code Objet et le cas échéant\ + \ sa documentation, dans\nleur état au moment de leur première diffusion sous les termes\ + \ du Contrat.\n\nLogiciel Modifié: désigne le Logiciel modifié par au moins une\nContribution.\n\ + \nCode Source: désigne l'ensemble des instructions et des lignes de\nprogramme du Logiciel\ + \ et auquel l'accès est nécessaire en vue de\nmodifier le Logiciel.\n\nCode Objet: désigne\ + \ les fichiers binaires issus de la compilation du\nCode Source.\n\nTitulaire: désigne le\ + \ ou les détenteurs des droits patrimoniaux d'auteur\nsur le Logiciel Initial.\n\nLicencié:\ + \ désigne le ou les utilisateurs du Logiciel ayant accepté le\nContrat.\n\nContributeur:\ + \ désigne le Licencié auteur d'au moins une Contribution.\n\nConcédant: désigne le Titulaire\ + \ ou toute personne physique ou morale\ndistribuant le Logiciel sous le Contrat.\n\nContribution:\ + \ désigne l'ensemble des modifications, corrections,\ntraductions, adaptations et/ou nouvelles\ + \ fonctionnalités intégrées dans\nle Logiciel par tout Contributeur, ainsi que tout Module\ + \ Interne.\n\nModule: désigne un ensemble de fichiers sources y compris leur\ndocumentation\ + \ qui permet de réaliser des fonctionnalités ou services\nsupplémentaires à ceux fournis\ + \ par le Logiciel.\n\nModule Externe: désigne tout Module, non dérivé du Logiciel, tel que\ + \ ce\nModule et le Logiciel s'exécutent dans des espaces d'adressage\ndifférents, l'un appelant\ + \ l'autre au moment de leur exécution.\n\nModule Interne: désigne tout Module lié au Logiciel\ + \ de telle sorte\nqu'ils s'exécutent dans le même espace d'adressage.\n\nGNU GPL: désigne\ + \ la GNU General Public License dans sa version 2 ou\ntoute version ultérieure, telle que\ + \ publiée par Free Software Foundation\nInc.\n\nParties: désigne collectivement le Licencié\ + \ et le Concédant.\n\nCes termes s'entendent au singulier comme au pluriel.\n\n\n Article\ + \ 2 - OBJET\n\nLe Contrat a pour objet la concession par le Concédant au Licencié d'une\n\ + licence non exclusive, cessible et mondiale du Logiciel telle que\ndéfinie ci-après à l'article\ + \ 5 pour toute la durée de protection des droits\nportant sur ce Logiciel.\n\n\n Article\ + \ 3 - ACCEPTATION\n\n3.1 L'acceptation par le Licencié des termes du Contrat est réputée\n\ + acquise du fait du premier des faits suivants:\n\n * (i) le chargement du Logiciel par\ + \ tout moyen notamment par\n téléchargement à partir d'un serveur distant ou par chargement\ + \ à\n partir d'un support physique;\n * (ii) le premier exercice par le Licencié\ + \ de l'un quelconque des\n droits concédés par le Contrat.\n\n3.2 Un exemplaire du\ + \ Contrat, contenant notamment un avertissement\nrelatif aux spécificités du Logiciel, à\ + \ la restriction de garantie et à\nla limitation à un usage par des utilisateurs expérimentés\ + \ a été mis à\ndisposition du Licencié préalablement à son acceptation telle que\ndéfinie\ + \ à l'article 3.1 ci dessus et le Licencié reconnaît en avoir pris\nconnaissance.\n\n\n\ + \ Article 4 - ENTREE EN VIGUEUR ET DUREE\n\n\n 4.1 ENTREE EN VIGUEUR\n\nLe Contrat\ + \ entre en vigueur à la date de son acceptation par le Licencié\ntelle que définie en 3.1.\n\ + \n\n 4.2 DUREE\n\nLe Contrat produira ses effets pendant toute la durée légale de\n\ + protection des droits patrimoniaux portant sur le Logiciel.\n\n\n Article 5 - ETENDUE\ + \ DES DROITS CONCEDES\n\nLe Concédant concède au Licencié, qui accepte, les droits suivants\ + \ sur\nle Logiciel pour toutes destinations et pour la durée du Contrat dans\nles conditions\ + \ ci-après détaillées.\n\nPar ailleurs, si le Concédant détient ou venait à détenir un ou\n\ + plusieurs brevets d'invention protégeant tout ou partie des\nfonctionnalités du Logiciel\ + \ ou de ses composants, il s'engage à ne pas\nopposer les éventuels droits conférés par\ + \ ces brevets aux Licenciés\nsuccessifs qui utiliseraient, exploiteraient ou modifieraient\ + \ le\nLogiciel. En cas de cession de ces brevets, le Concédant s'engage à\nfaire reprendre\ + \ les obligations du présent alinéa aux cessionnaires.\n\n\n 5.1 DROIT D'UTILISATION\n\ + \nLe Licencié est autorisé à utiliser le Logiciel, sans restriction quant\naux domaines\ + \ d'application, étant ci-après précisé que cela comporte:\n\n 1. la reproduction permanente\ + \ ou provisoire du Logiciel en tout ou\n partie par tout moyen et sous toute forme.\n\ + \n 2. le chargement, l'affichage, l'exécution, ou le stockage du\n Logiciel sur tout\ + \ support.\n\n 3. la possibilité d'en observer, d'en étudier, ou d'en tester le\n \ + \ fonctionnement afin de déterminer les idées et principes qui sont\n à la base de\ + \ n'importe quel élément de ce Logiciel; et ceci,\n lorsque le Licencié effectue toute\ + \ opération de chargement,\n d'affichage, d'exécution, de transmission ou de stockage\ + \ du\n Logiciel qu'il est en droit d'effectuer en vertu du Contrat.\n\n\n 5.2\ + \ DROIT D'APPORTER DES CONTRIBUTIONS\n\nLe droit d'apporter des Contributions comporte le\ + \ droit de traduire,\nd'adapter, d'arranger ou d'apporter toute autre modification au Logiciel\n\ + et le droit de reproduire le logiciel en résultant.\n\nLe Licencié est autorisé à apporter\ + \ toute Contribution au Logiciel sous\nréserve de mentionner, de façon explicite, son nom\ + \ en tant qu'auteur de\ncette Contribution et la date de création de celle-ci.\n\n\n \ + \ 5.3 DROIT DE DISTRIBUTION\n\nLe droit de distribution comporte notamment le droit de\ + \ diffuser, de\ntransmettre et de communiquer le Logiciel au public sur tout support et\n\ + par tout moyen ainsi que le droit de mettre sur le marché à titre\nonéreux ou gratuit, un\ + \ ou des exemplaires du Logiciel par tout procédé.\n\nLe Licencié est autorisé à distribuer\ + \ des copies du Logiciel, modifié ou\nnon, à des tiers dans les conditions ci-après détaillées.\n\ + \n\n 5.3.1 DISTRIBUTION DU LOGICIEL SANS MODIFICATION\n\nLe Licencié est autorisé\ + \ à distribuer des copies conformes du Logiciel,\nsous forme de Code Source ou de Code Objet,\ + \ à condition que cette\ndistribution respecte les dispositions du Contrat dans leur totalité\ + \ et\nsoit accompagnée:\n\n 1. d'un exemplaire du Contrat,\n\n 2. d'un avertissement\ + \ relatif à la restriction de garantie et de\n responsabilité du Concédant telle que\ + \ prévue aux articles 8\n et 9,\n\net que, dans le cas où seul le Code Objet du Logiciel\ + \ est redistribué,\nle Licencié permette aux futurs Licenciés d'accéder facilement au Code\n\ + Source complet du Logiciel en indiquant les modalités d'accès, étant\nentendu que le coût\ + \ additionnel d'acquisition du Code Source ne devra\npas excéder le simple coût de transfert\ + \ des données.\n\n\n 5.3.2 DISTRIBUTION DU LOGICIEL MODIFIE\n\nLorsque le Licencié\ + \ apporte une Contribution au Logiciel, les conditions\nde distribution du Logiciel Modifié\ + \ en résultant sont alors soumises à\nl'intégralité des dispositions du Contrat.\n\nLe Licencié\ + \ est autorisé à distribuer le Logiciel Modifié, sous forme de\ncode source ou de code objet,\ + \ à condition que cette distribution\nrespecte les dispositions du Contrat dans leur totalité\ + \ et soit\naccompagnée:\n\n 1. d'un exemplaire du Contrat,\n\n 2. d'un avertissement\ + \ relatif à la restriction de garantie et de\n responsabilité du Concédant telle que\ + \ prévue aux articles 8\n et 9,\n\net que, dans le cas où seul le code objet du Logiciel\ + \ Modifié est\nredistribué, le Licencié permette aux futurs Licenciés d'accéder\nfacilement\ + \ au code source complet du Logiciel Modifié en indiquant les\nmodalités d'accès, étant\ + \ entendu que le coût additionnel d'acquisition\ndu code source ne devra pas excéder le\ + \ simple coût de transfert des données.\n\n\n 5.3.3 DISTRIBUTION DES MODULES EXTERNES\n\ + \nLorsque le Licencié a développé un Module Externe les conditions du\nContrat ne s'appliquent\ + \ pas à ce Module Externe, qui peut être distribué\nsous un contrat de licence différent.\n\ + \n\n 5.3.4 COMPATIBILITE AVEC LA LICENCE GNU GPL\n\nLe Licencié peut inclure un code\ + \ soumis aux dispositions d'une des\nversions de la licence GNU GPL dans le Logiciel modifié\ + \ ou non et\ndistribuer l'ensemble sous les conditions de la même version de la\nlicence\ + \ GNU GPL.\n\nLe Licencié peut inclure le Logiciel modifié ou non dans un code soumis\n\ + aux dispositions d'une des versions de la licence GNU GPL et distribuer\nl'ensemble sous\ + \ les conditions de la même version de la licence GNU GPL.\n\n\n Article 6 - PROPRIETE\ + \ INTELLECTUELLE\n\n\n 6.1 SUR LE LOGICIEL INITIAL\n\nLe Titulaire est détenteur des\ + \ droits patrimoniaux sur le Logiciel\nInitial. Toute utilisation du Logiciel Initial est\ + \ soumise au respect\ndes conditions dans lesquelles le Titulaire a choisi de diffuser son\n\ + oeuvre et nul autre n'a la faculté de modifier les conditions de\ndiffusion de ce Logiciel\ + \ Initial.\n\nLe Titulaire s'engage à ce que le Logiciel Initial reste au moins régi\npar\ + \ le Contrat et ce, pour la durée visée à l'article 4.2.\n\n\n 6.2 SUR LES CONTRIBUTIONS\n\ + \nLe Licencié qui a développé une Contribution est titulaire sur celle-ci\ndes droits de\ + \ propriété intellectuelle dans les conditions définies par\nla législation applicable.\n\ + \n\n 6.3 SUR LES MODULES EXTERNES\n\nLe Licencié qui a développé un Module Externe\ + \ est titulaire sur celui-ci\ndes droits de propriété intellectuelle dans les conditions\ + \ définies par\nla législation applicable et reste libre du choix du contrat régissant\n\ + sa diffusion.\n\n\n 6.4 DISPOSITIONS COMMUNES\n\nLe Licencié s'engage expressément:\n\ + \n 1. à ne pas supprimer ou modifier de quelque manière que ce soit les\n mentions\ + \ de propriété intellectuelle apposées sur le Logiciel;\n\n 2. à reproduire à l'identique\ + \ lesdites mentions de propriété\n intellectuelle sur les copies du Logiciel modifié\ + \ ou non.\n\nLe Licencié s'engage à ne pas porter atteinte, directement ou\nindirectement,\ + \ aux droits de propriété intellectuelle du Titulaire et/ou\ndes Contributeurs sur le Logiciel\ + \ et à prendre, le cas échéant, à\nl'égard de son personnel toutes les mesures nécessaires\ + \ pour assurer le\nrespect des dits droits de propriété intellectuelle du Titulaire et/ou\n\ + des Contributeurs.\n\n\n Article 7 - SERVICES ASSOCIES\n\n7.1 Le Contrat n'oblige en\ + \ aucun cas le Concédant à la réalisation de\nprestations d'assistance technique ou de maintenance\ + \ du Logiciel.\n\nCependant le Concédant reste libre de proposer ce type de services. Les\n\ + termes et conditions d'une telle assistance technique et/ou d'une telle\nmaintenance seront\ + \ alors déterminés dans un acte séparé. Ces actes de\nmaintenance et/ou assistance technique\ + \ n'engageront que la seule\nresponsabilité du Concédant qui les propose.\n\n7.2 De même,\ + \ tout Concédant est libre de proposer, sous sa seule\nresponsabilité, à ses licenciés une\ + \ garantie, qui n'engagera que lui,\nlors de la redistribution du Logiciel et/ou du Logiciel\ + \ Modifié et ce,\ndans les conditions qu'il souhaite. Cette garantie et les modalités\n\ + financières de son application feront l'objet d'un acte séparé entre le\nConcédant et le\ + \ Licencié.\n\n\n Article 8 - RESPONSABILITE\n\n8.1 Sous réserve des dispositions de\ + \ l'article 8.2, le Licencié a la \nfaculté, sous réserve de prouver la faute du Concédant\ + \ concerné, de\nsolliciter la réparation du préjudice direct qu'il subirait du fait du\n\ + Logiciel et dont il apportera la preuve.\n\n8.2 La responsabilité du Concédant est limitée\ + \ aux engagements pris en\napplication du Contrat et ne saurait être engagée en raison notamment:\n\ + (i) des dommages dus à l'inexécution, totale ou partielle, de ses\nobligations par le Licencié,\ + \ (ii) des dommages directs ou indirects\ndécoulant de l'utilisation ou des performances\ + \ du Logiciel subis par le\nLicencié et (iii) plus généralement d'un quelconque dommage\ + \ indirect. En\nparticulier, les Parties conviennent expressément que tout préjudice\nfinancier\ + \ ou commercial (par exemple perte de données, perte de\nbénéfices, perte d'exploitation,\ + \ perte de clientèle ou de commandes,\nmanque à gagner, trouble commercial quelconque) ou\ + \ toute action dirigée\ncontre le Licencié par un tiers, constitue un dommage indirect et\n\ + n'ouvre pas droit à réparation par le Concédant.\n\n\n Article 9 - GARANTIE\n\n9.1 Le\ + \ Licencié reconnaît que l'état actuel des connaissances\nscientifiques et techniques au\ + \ moment de la mise en circulation du\nLogiciel ne permet pas d'en tester et d'en vérifier\ + \ toutes les\nutilisations ni de détecter l'existence d'éventuels défauts. L'attention\n\ + du Licencié a été attirée sur ce point sur les risques associés au\nchargement, à l'utilisation,\ + \ la modification et/ou au développement et à\nla reproduction du Logiciel qui sont réservés\ + \ à des utilisateurs avertis.\n\nIl relève de la responsabilité du Licencié de contrôler,\ + \ par tous\nmoyens, l'adéquation du produit à ses besoins, son bon fonctionnement et\nde\ + \ s'assurer qu'il ne causera pas de dommages aux personnes et aux biens.\n\n9.2 Le Concédant\ + \ déclare de bonne foi être en droit de concéder\nl'ensemble des droits attachés au Logiciel\ + \ (comprenant notamment les\ndroits visés à l'article 5).\n\n9.3 Le Licencié reconnaît que\ + \ le Logiciel est fourni \"en l'état\" par le\nConcédant sans autre garantie, expresse ou\ + \ tacite, que celle prévue à\nl'article 9.2 et notamment sans aucune garantie sur sa valeur\ + \ commerciale, \nson caractère sécurisé, innovant ou pertinent.\n\nEn particulier, le Concédant\ + \ ne garantit pas que le Logiciel est exempt\nd'erreur, qu'il fonctionnera sans interruption,\ + \ qu'il sera compatible\navec l'équipement du Licencié et sa configuration logicielle ni\ + \ qu'il\nremplira les besoins du Licencié.\n\n9.4 Le Concédant ne garantit pas, de manière\ + \ expresse ou tacite, que le\nLogiciel ne porte pas atteinte à un quelconque droit de propriété\n\ + intellectuelle d'un tiers portant sur un brevet, un logiciel ou sur tout\nautre droit de\ + \ propriété. Ainsi, le Concédant exclut toute garantie au\nprofit du Licencié contre les\ + \ actions en contrefaçon qui pourraient être\ndiligentées au titre de l'utilisation, de\ + \ la modification, et de la\nredistribution du Logiciel. Néanmoins, si de telles actions\ + \ sont\nexercées contre le Licencié, le Concédant lui apportera son aide\ntechnique et juridique\ + \ pour sa défense. Cette aide technique et\njuridique est déterminée au cas par cas entre\ + \ le Concédant concerné et\nle Licencié dans le cadre d'un protocole d'accord. Le Concédant\ + \ dégage\ntoute responsabilité quant à l'utilisation de la dénomination du\nLogiciel par\ + \ le Licencié. Aucune garantie n'est apportée quant à\nl'existence de droits antérieurs\ + \ sur le nom du Logiciel et sur\nl'existence d'une marque.\n\n\n Article 10 - RESILIATION\n\ + \n10.1 En cas de manquement par le Licencié aux obligations mises à sa\ncharge par le Contrat,\ + \ le Concédant pourra résilier de plein droit le\nContrat trente (30) jours après notification\ + \ adressée au Licencié et\nrestée sans effet.\n\n10.2 Le Licencié dont le Contrat est résilié\ + \ n'est plus autorisé à\nutiliser, modifier ou distribuer le Logiciel. Cependant, toutes\ + \ les\nlicences qu'il aura concédées antérieurement à la résiliation du Contrat\nresteront\ + \ valides sous réserve qu'elles aient été effectuées en\nconformité avec le Contrat.\n\n\ + \n Article 11 - DISPOSITIONS DIVERSES\n\n\n 11.1 CAUSE EXTERIEURE\n\nAucune des\ + \ Parties ne sera responsable d'un retard ou d'une défaillance\nd'exécution du Contrat qui\ + \ serait dû à un cas de force majeure, un cas\nfortuit ou une cause extérieure, telle que,\ + \ notamment, le mauvais\nfonctionnement ou les interruptions du réseau électrique ou de\n\ + télécommunication, la paralysie du réseau liée à une attaque\ninformatique, l'intervention\ + \ des autorités gouvernementales, les\ncatastrophes naturelles, les dégâts des eaux, les\ + \ tremblements de terre,\nle feu, les explosions, les grèves et les conflits sociaux, l'état\ + \ de\nguerre...\n\n11.2 Le fait, par l'une ou l'autre des Parties, d'omettre en une ou\n\ + plusieurs occasions de se prévaloir d'une ou plusieurs dispositions du\nContrat, ne pourra\ + \ en aucun cas impliquer renonciation par la Partie\nintéressée à s'en prévaloir ultérieurement.\n\ + \n11.3 Le Contrat annule et remplace toute convention antérieure, écrite\nou orale, entre\ + \ les Parties sur le même objet et constitue l'accord\nentier entre les Parties sur cet\ + \ objet. Aucune addition ou modification\naux termes du Contrat n'aura d'effet à l'égard\ + \ des Parties à moins\nd'être faite par écrit et signée par leurs représentants dûment habilités.\n\ + \n11.4 Dans l'hypothèse où une ou plusieurs des dispositions du Contrat\ns'avèrerait contraire\ + \ à une loi ou à un texte applicable, existants ou\nfuturs, cette loi ou ce texte prévaudrait,\ + \ et les Parties feraient les\namendements nécessaires pour se conformer à cette loi ou\ + \ à ce texte.\nToutes les autres dispositions resteront en vigueur. De même, la\nnullité,\ + \ pour quelque raison que ce soit, d'une des dispositions du\nContrat ne saurait entraîner\ + \ la nullité de l'ensemble du Contrat.\n\n\n 11.5 LANGUE\n\nLe Contrat est rédigé en\ + \ langue française et en langue anglaise, ces\ndeux versions faisant également foi.\n\n\n\ + \ Article 12 - NOUVELLES VERSIONS DU CONTRAT\n\n12.1 Toute personne est autorisée à copier\ + \ et distribuer des copies de\nce Contrat.\n\n12.2 Afin d'en préserver la cohérence, le\ + \ texte du Contrat est protégé\net ne peut être modifié que par les auteurs de la licence,\ + \ lesquels se\nréservent le droit de publier périodiquement des mises à jour ou de\nnouvelles\ + \ versions du Contrat, qui posséderont chacune un numéro\ndistinct. Ces versions ultérieures\ + \ seront susceptibles de prendre en\ncompte de nouvelles problématiques rencontrées par\ + \ les logiciels libres.\n\n12.3 Tout Logiciel diffusé sous une version donnée du Contrat\ + \ ne pourra\nfaire l'objet d'une diffusion ultérieure que sous la même version du\nContrat\ + \ ou une version postérieure, sous réserve des dispositions de\nl'article 5.3.4.\n\n\n \ + \ Article 13 - LOI APPLICABLE ET COMPETENCE TERRITORIALE\n\n13.1 Le Contrat est régi par\ + \ la loi française. Les Parties conviennent\nde tenter de régler à l'amiable les différends\ + \ ou litiges qui\nviendraient à se produire par suite ou à l'occasion du Contrat.\n\n13.2\ + \ A défaut d'accord amiable dans un délai de deux (2) mois à compter\nde leur survenance\ + \ et sauf situation relevant d'une procédure d'urgence,\nles différends ou litiges seront\ + \ portés par la Partie la plus diligente\ndevant les Tribunaux compétents de Paris.\n\n\n\ + Version 2.0 du 2006-09-05." json: cecill-2.0-fr.json - yml: cecill-2.0-fr.yml + yaml: cecill-2.0-fr.yml html: cecill-2.0-fr.html - text: cecill-2.0-fr.LICENSE + license: cecill-2.0-fr.LICENSE - license_key: cecill-2.1 + category: Copyleft Limited spdx_license_key: CECILL-2.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: " CeCILL FREE SOFTWARE LICENSE AGREEMENT\n\nVersion 2.1 dated 2013-06-21\n\n\n Notice\n\ + \nThis Agreement is a Free Software license agreement that is the result\nof discussions\ + \ between its authors in order to ensure compliance with\nthe two main principles guiding\ + \ its drafting:\n\n * firstly, compliance with the principles governing the distribution\n\ + \ of Free Software: access to source code, broad rights granted to users,\n * secondly,\ + \ the election of a governing law, French law, with which it\n is conformant, both as\ + \ regards the law of torts and intellectual\n property law, and the protection that it\ + \ offers to both authors and\n holders of the economic rights over software.\n\nThe authors\ + \ of the CeCILL (for Ce[a] C[nrs] I[nria] L[ogiciel] L[ibre]) \nlicense are: \n\nCommissariat\ + \ à l'énergie atomique et aux énergies alternatives - CEA, a\npublic scientific, technical\ + \ and industrial research establishment,\nhaving its principal place of business at 25 rue\ + \ Leblanc, immeuble Le\nPonant D, 75015 Paris, France.\n\nCentre National de la Recherche\ + \ Scientifique - CNRS, a public scientific\nand technological establishment, having its\ + \ principal place of business\nat 3 rue Michel-Ange, 75794 Paris cedex 16, France.\n\nInstitut\ + \ National de Recherche en Informatique et en Automatique -\nInria, a public scientific\ + \ and technological establishment, having its\nprincipal place of business at Domaine de\ + \ Voluceau, Rocquencourt, BP\n105, 78153 Le Chesnay cedex, France.\n\n\n Preamble\n\n\ + The purpose of this Free Software license agreement is to grant users\nthe right to modify\ + \ and redistribute the software governed by this\nlicense within the framework of an open\ + \ source distribution model.\n\nThe exercising of this right is conditional upon certain\ + \ obligations for\nusers so as to preserve this status for all subsequent redistributions.\n\ + \nIn consideration of access to the source code and the rights to copy,\nmodify and redistribute\ + \ granted by the license, users are provided only\nwith a limited warranty and the software's\ + \ author, the holder of the\neconomic rights, and the successive licensors only have limited\ + \ liability.\n\nIn this respect, the risks associated with loading, using, modifying\nand/or\ + \ developing or reproducing the software by the user are brought to\nthe user's attention,\ + \ given its Free Software status, which may make it\ncomplicated to use, with the result\ + \ that its use is reserved for\ndevelopers and experienced professionals having in-depth\ + \ computer\nknowledge. Users are therefore encouraged to load and test the\nsuitability\ + \ of the software as regards their requirements in conditions\nenabling the security of\ + \ their systems and/or data to be ensured and,\nmore generally, to use and operate it in\ + \ the same conditions of\nsecurity. This Agreement may be freely reproduced and published,\n\ + provided it is not altered, and that no provisions are either added or\nremoved herefrom.\n\ + \nThis Agreement may apply to any or all software for which the holder of\nthe economic\ + \ rights decides to submit the use thereof to its provisions.\n\nFrequently asked questions\ + \ can be found on the official website of the\nCeCILL licenses family (http://www.cecill.info/index.en.html)\ + \ for any \nnecessary clarification.\n\n\n Article 1 - DEFINITIONS\n\nFor the purpose\ + \ of this Agreement, when the following expressions\ncommence with a capital letter, they\ + \ shall have the following meaning:\n\nAgreement: means this license agreement, and its\ + \ possible subsequent\nversions and annexes.\n\nSoftware: means the software in its Object\ + \ Code and/or Source Code form\nand, where applicable, its documentation, \"as is\" when\ + \ the Licensee\naccepts the Agreement.\n\nInitial Software: means the Software in its Source\ + \ Code and possibly its\nObject Code form and, where applicable, its documentation, \"as\ + \ is\" when\nit is first distributed under the terms and conditions of the Agreement.\n\n\ + Modified Software: means the Software modified by at least one\nContribution.\n\nSource\ + \ Code: means all the Software's instructions and program lines to\nwhich access is required\ + \ so as to modify the Software.\n\nObject Code: means the binary files originating from\ + \ the compilation of\nthe Source Code.\n\nHolder: means the holder(s) of the economic rights\ + \ over the Initial\nSoftware.\n\nLicensee: means the Software user(s) having accepted the\ + \ Agreement.\n\nContributor: means a Licensee having made at least one Contribution.\n\n\ + Licensor: means the Holder, or any other individual or legal entity, who\ndistributes the\ + \ Software under the Agreement.\n\nContribution: means any or all modifications, corrections,\ + \ translations,\nadaptations and/or new functions integrated into the Software by any or\n\ + all Contributors, as well as any or all Internal Modules.\n\nModule: means a set of sources\ + \ files including their documentation that\nenables supplementary functions or services\ + \ in addition to those offered\nby the Software.\n\nExternal Module: means any or all Modules,\ + \ not derived from the\nSoftware, so that this Module and the Software run in separate address\n\ + spaces, with one calling the other when they are run.\n\nInternal Module: means any or all\ + \ Module, connected to the Software so\nthat they both execute in the same address space.\n\ + \nGNU GPL: means the GNU General Public License version 2 or any\nsubsequent version, as\ + \ published by the Free Software Foundation Inc.\n\nGNU Affero GPL: means the GNU Affero\ + \ General Public License version 3 or\nany subsequent version, as published by the Free\ + \ Software Foundation Inc.\n\nEUPL: means the European Union Public License version 1.1\ + \ or any\nsubsequent version, as published by the European Commission.\n\nParties: mean\ + \ both the Licensee and the Licensor.\n\nThese expressions may be used both in singular\ + \ and plural form.\n\n\n Article 2 - PURPOSE\n\nThe purpose of the Agreement is the grant\ + \ by the Licensor to the\nLicensee of a non-exclusive, transferable and worldwide license\ + \ for the\nSoftware as set forth in Article 5 <#scope> hereinafter for the whole\nterm of\ + \ the protection granted by the rights over said Software.\n\n\n Article 3 - ACCEPTANCE\n\ + \n3.1 The Licensee shall be deemed as having accepted the terms and\nconditions of this\ + \ Agreement upon the occurrence of the first of the\nfollowing events:\n\n * (i) loading\ + \ the Software by any or all means, notably, by\n downloading from a remote server, or\ + \ by loading from a physical medium;\n * (ii) the first time the Licensee exercises any\ + \ of the rights granted\n hereunder.\n\n3.2 One copy of the Agreement, containing a notice\ + \ relating to the\ncharacteristics of the Software, to the limited warranty, and to the\n\ + fact that its use is restricted to experienced users has been provided\nto the Licensee\ + \ prior to its acceptance as set forth in Article 3.1\n<#accepting> hereinabove, and the\ + \ Licensee hereby acknowledges that it\nhas read and understood it.\n\n\n Article 4 -\ + \ EFFECTIVE DATE AND TERM\n\n\n 4.1 EFFECTIVE DATE\n\nThe Agreement shall become effective\ + \ on the date when it is accepted by\nthe Licensee as set forth in Article 3.1 <#accepting>.\n\ + \n\n 4.2 TERM\n\nThe Agreement shall remain in force for the entire legal term of\n\ + protection of the economic rights over the Software.\n\n\n Article 5 - SCOPE OF RIGHTS\ + \ GRANTED\n\nThe Licensor hereby grants to the Licensee, who accepts, the following\nrights\ + \ over the Software for any or all use, and for the term of the\nAgreement, on the basis\ + \ of the terms and conditions set forth hereinafter.\n\nBesides, if the Licensor owns or\ + \ comes to own one or more patents\nprotecting all or part of the functions of the Software\ + \ or of its\ncomponents, the Licensor undertakes not to enforce the rights granted by\n\ + these patents against successive Licensees using, exploiting or\nmodifying the Software.\ + \ If these patents are transferred, the Licensor\nundertakes to have the transferees subscribe\ + \ to the obligations set\nforth in this paragraph.\n\n\n 5.1 RIGHT OF USE\n\nThe Licensee\ + \ is authorized to use the Software, without any limitation\nas to its fields of application,\ + \ with it being hereinafter specified\nthat this comprises:\n\n 1. permanent or temporary\ + \ reproduction of all or part of the Software\n by any or all means and in any or all\ + \ form.\n\n 2. loading, displaying, running, or storing the Software on any or all\n \ + \ medium.\n\n 3. entitlement to observe, study or test its operation so as to\n determine\ + \ the ideas and principles behind any or all constituent\n elements of said Software.\ + \ This shall apply when the Licensee\n carries out any or all loading, displaying, running,\ + \ transmission or\n storage operation as regards the Software, that it is entitled to\n\ + \ carry out hereunder.\n\n\n 5.2 ENTITLEMENT TO MAKE CONTRIBUTIONS\n\nThe right\ + \ to make Contributions includes the right to translate, adapt,\narrange, or make any or\ + \ all modifications to the Software, and the right\nto reproduce the resulting software.\n\ + \nThe Licensee is authorized to make any or all Contributions to the\nSoftware provided\ + \ that it includes an explicit notice that it is the\nauthor of said Contribution and indicates\ + \ the date of the creation thereof.\n\n\n 5.3 RIGHT OF DISTRIBUTION\n\nIn particular,\ + \ the right of distribution includes the right to publish,\ntransmit and communicate the\ + \ Software to the general public on any or\nall medium, and by any or all means, and the\ + \ right to market, either in\nconsideration of a fee, or free of charge, one or more copies\ + \ of the\nSoftware by any means.\n\nThe Licensee is further authorized to distribute copies\ + \ of the modified\nor unmodified Software to third parties according to the terms and\n\ + conditions set forth hereinafter.\n\n\n 5.3.1 DISTRIBUTION OF SOFTWARE WITHOUT MODIFICATION\n\ + \nThe Licensee is authorized to distribute true copies of the Software in\nSource Code or\ + \ Object Code form, provided that said distribution\ncomplies with all the provisions of\ + \ the Agreement and is accompanied by:\n\n 1. a copy of the Agreement,\n\n 2. a notice relating\ + \ to the limitation of both the Licensor's warranty\n and liability as set forth in Articles\ + \ 8 and 9,\n\nand that, in the event that only the Object Code of the Software is\nredistributed,\ + \ the Licensee allows effective access to the full Source\nCode of the Software for a period\ + \ of at least three years from the\ndistribution of the Software, it being understood that\ + \ the additional\nacquisition cost of the Source Code shall not exceed the cost of the\n\ + data transfer.\n\n\n 5.3.2 DISTRIBUTION OF MODIFIED SOFTWARE\n\nWhen the Licensee\ + \ makes a Contribution to the Software, the terms and\nconditions for the distribution of\ + \ the resulting Modified Software\nbecome subject to all the provisions of this Agreement.\n\ + \nThe Licensee is authorized to distribute the Modified Software, in\nsource code or object\ + \ code form, provided that said distribution\ncomplies with all the provisions of the Agreement\ + \ and is accompanied by:\n\n 1. a copy of the Agreement,\n\n 2. a notice relating to the\ + \ limitation of both the Licensor's warranty\n and liability as set forth in Articles\ + \ 8 and 9,\n\nand, in the event that only the object code of the Modified Software is\n\ + redistributed,\n\n 3. a note stating the conditions of effective access to the full source\n\ + \ code of the Modified Software for a period of at least three years\n from the distribution\ + \ of the Modified Software, it being understood\n that the additional acquisition cost\ + \ of the source code shall not\n exceed the cost of the data transfer.\n\n\n 5.3.3\ + \ DISTRIBUTION OF EXTERNAL MODULES\n\nWhen the Licensee has developed an External Module,\ + \ the terms and\nconditions of this Agreement do not apply to said External Module, that\n\ + may be distributed under a separate license agreement.\n\n\n 5.3.4 COMPATIBILITY\ + \ WITH OTHER LICENSES\n\nThe Licensee can include a code that is subject to the provisions\ + \ of one\nof the versions of the GNU GPL, GNU Affero GPL and/or EUPL in the\nModified or\ + \ unmodified Software, and distribute that entire code under\nthe terms of the same version\ + \ of the GNU GPL, GNU Affero GPL and/or EUPL.\n\nThe Licensee can include the Modified or\ + \ unmodified Software in a code\nthat is subject to the provisions of one of the versions\ + \ of the GNU GPL,\nGNU Affero GPL and/or EUPL and distribute that entire code under the\n\ + terms of the same version of the GNU GPL, GNU Affero GPL and/or EUPL.\n\n\n Article 6\ + \ - INTELLECTUAL PROPERTY\n\n\n 6.1 OVER THE INITIAL SOFTWARE\n\nThe Holder owns the\ + \ economic rights over the Initial Software. Any or\nall use of the Initial Software is\ + \ subject to compliance with the terms\nand conditions under which the Holder has elected\ + \ to distribute its work\nand no one shall be entitled to modify the terms and conditions\ + \ for the\ndistribution of said Initial Software.\n\nThe Holder undertakes that the Initial\ + \ Software will remain ruled at\nleast by this Agreement, for the duration set forth in\ + \ Article 4.2 <#term>.\n\n\n 6.2 OVER THE CONTRIBUTIONS\n\nThe Licensee who develops\ + \ a Contribution is the owner of the\nintellectual property rights over this Contribution\ + \ as defined by\napplicable law.\n\n\n 6.3 OVER THE EXTERNAL MODULES\n\nThe Licensee\ + \ who develops an External Module is the owner of the\nintellectual property rights over\ + \ this External Module as defined by\napplicable law and is free to choose the type of agreement\ + \ that shall\ngovern its distribution.\n\n\n 6.4 JOINT PROVISIONS\n\nThe Licensee expressly\ + \ undertakes:\n\n 1. not to remove, or modify, in any manner, the intellectual property\n\ + \ notices attached to the Software;\n\n 2. to reproduce said notices, in an identical\ + \ manner, in the copies of\n the Software modified or not.\n\nThe Licensee undertakes\ + \ not to directly or indirectly infringe the\nintellectual property rights on the Software\ + \ of the Holder and/or\nContributors, and to take, where applicable, vis-à-vis its staff,\ + \ any\nand all measures required to ensure respect of said intellectual\nproperty rights\ + \ of the Holder and/or Contributors.\n\n\n Article 7 - RELATED SERVICES\n\n7.1 Under\ + \ no circumstances shall the Agreement oblige the Licensor to\nprovide technical assistance\ + \ or maintenance services for the Software.\n\nHowever, the Licensor is entitled to offer\ + \ this type of services. The\nterms and conditions of such technical assistance, and/or\ + \ such\nmaintenance, shall be set forth in a separate instrument. Only the\nLicensor offering\ + \ said maintenance and/or technical assistance services\nshall incur liability therefor.\n\ + \n7.2 Similarly, any Licensor is entitled to offer to its licensees, under\nits sole responsibility,\ + \ a warranty, that shall only be binding upon\nitself, for the redistribution of the Software\ + \ and/or the Modified\nSoftware, under terms and conditions that it is free to decide. Said\n\ + warranty, and the financial terms and conditions of its application,\nshall be subject of\ + \ a separate instrument executed between the Licensor\nand the Licensee.\n\n\n Article\ + \ 8 - LIABILITY\n\n8.1 Subject to the provisions of Article 8.2, the Licensee shall be\n\ + entitled to claim compensation for any direct loss it may have suffered\nfrom the Software\ + \ as a result of a fault on the part of the relevant\nLicensor, subject to providing evidence\ + \ thereof.\n\n8.2 The Licensor's liability is limited to the commitments made under\nthis\ + \ Agreement and shall not be incurred as a result of in particular:\n(i) loss due the Licensee's\ + \ total or partial failure to fulfill its\nobligations, (ii) direct or consequential loss\ + \ that is suffered by the\nLicensee due to the use or performance of the Software, and (iii)\ + \ more\ngenerally, any consequential loss. In particular the Parties expressly\nagree that\ + \ any or all pecuniary or business loss (i.e. loss of data,\nloss of profits, operating\ + \ loss, loss of customers or orders,\nopportunity cost, any disturbance to business activities)\ + \ or any or all\nlegal proceedings instituted against the Licensee by a third party,\nshall\ + \ constitute consequential loss and shall not provide entitlement to\nany or all compensation\ + \ from the Licensor.\n\n\n Article 9 - WARRANTY\n\n9.1 The Licensee acknowledges that\ + \ the scientific and technical\nstate-of-the-art when the Software was distributed did not\ + \ enable all\npossible uses to be tested and verified, nor for the presence of\npossible\ + \ defects to be detected. In this respect, the Licensee's\nattention has been drawn to the\ + \ risks associated with loading, using,\nmodifying and/or developing and reproducing the\ + \ Software which are\nreserved for experienced users.\n\nThe Licensee shall be responsible\ + \ for verifying, by any or all means,\nthe suitability of the product for its requirements,\ + \ its good working\norder, and for ensuring that it shall not cause damage to either persons\n\ + or properties.\n\n9.2 The Licensor hereby represents, in good faith, that it is entitled\n\ + to grant all the rights over the Software (including in particular the\nrights set forth\ + \ in Article 5 <#scope>).\n\n9.3 The Licensee acknowledges that the Software is supplied\ + \ \"as is\" by\nthe Licensor without any other express or tacit warranty, other than\nthat\ + \ provided for in Article 9.2 <#good-faith> and, in particular,\nwithout any warranty as\ + \ to its commercial value, its secured, safe,\ninnovative or relevant nature.\n\nSpecifically,\ + \ the Licensor does not warrant that the Software is free\nfrom any error, that it will\ + \ operate without interruption, that it will\nbe compatible with the Licensee's own equipment\ + \ and software\nconfiguration, nor that it will meet the Licensee's requirements.\n\n9.4\ + \ The Licensor does not either expressly or tacitly warrant that the\nSoftware does not\ + \ infringe any third party intellectual property right\nrelating to a patent, software or\ + \ any other property right. Therefore,\nthe Licensor disclaims any and all liability towards\ + \ the Licensee\narising out of any or all proceedings for infringement that may be\ninstituted\ + \ in respect of the use, modification and redistribution of the\nSoftware. Nevertheless,\ + \ should such proceedings be instituted against\nthe Licensee, the Licensor shall provide\ + \ it with technical and legal\nexpertise for its defense. Such technical and legal expertise\ + \ shall be\ndecided on a case-by-case basis between the relevant Licensor and the\nLicensee\ + \ pursuant to a memorandum of understanding. The Licensor\ndisclaims any and all liability\ + \ as regards the Licensee's use of the\nname of the Software. No warranty is given as regards\ + \ the existence of\nprior rights over the name of the Software or as regards the existence\n\ + of a trademark.\n\n\n Article 10 - TERMINATION\n\n10.1 In the event of a breach by the\ + \ Licensee of its obligations\nhereunder, the Licensor may automatically terminate this\ + \ Agreement\nthirty (30) days after notice has been sent to the Licensee and has\nremained\ + \ ineffective.\n\n10.2 A Licensee whose Agreement is terminated shall no longer be\nauthorized\ + \ to use, modify or distribute the Software. However, any\nlicenses that it may have granted\ + \ prior to termination of the Agreement\nshall remain valid subject to their having been\ + \ granted in compliance\nwith the terms and conditions hereof.\n\n\n Article 11 - MISCELLANEOUS\n\ + \n\n 11.1 EXCUSABLE EVENTS\n\nNeither Party shall be liable for any or all delay, or\ + \ failure to\nperform the Agreement, that may be attributable to an event of force\nmajeure,\ + \ an act of God or an outside cause, such as defective\nfunctioning or interruptions of\ + \ the electricity or telecommunications\nnetworks, network paralysis following a virus attack,\ + \ intervention by\ngovernment authorities, natural disasters, water damage, earthquakes,\n\ + fire, explosions, strikes and labor unrest, war, etc.\n\n11.2 Any failure by either Party,\ + \ on one or more occasions, to invoke\none or more of the provisions hereof, shall under\ + \ no circumstances be\ninterpreted as being a waiver by the interested Party of its right\ + \ to\ninvoke said provision(s) subsequently.\n\n11.3 The Agreement cancels and replaces\ + \ any or all previous agreements,\nwhether written or oral, between the Parties and having\ + \ the same\npurpose, and constitutes the entirety of the agreement between said\nParties\ + \ concerning said purpose. No supplement or modification to the\nterms and conditions hereof\ + \ shall be effective as between the Parties\nunless it is made in writing and signed by\ + \ their duly authorized\nrepresentatives.\n\n11.4 In the event that one or more of the provisions\ + \ hereof were to\nconflict with a current or future applicable act or legislative text,\n\ + said act or legislative text shall prevail, and the Parties shall make\nthe necessary amendments\ + \ so as to comply with said act or legislative\ntext. All other provisions shall remain\ + \ effective. Similarly, invalidity\nof a provision of the Agreement, for any reason whatsoever,\ + \ shall not\ncause the Agreement as a whole to be invalid.\n\n\n 11.5 LANGUAGE\n\n\ + The Agreement is drafted in both French and English and both versions\nare deemed authentic.\n\ + \n\n Article 12 - NEW VERSIONS OF THE AGREEMENT\n\n12.1 Any person is authorized to duplicate\ + \ and distribute copies of this\nAgreement.\n\n12.2 So as to ensure coherence, the wording\ + \ of this Agreement is\nprotected and may only be modified by the authors of the License,\ + \ who\nreserve the right to periodically publish updates or new versions of the\nAgreement,\ + \ each with a separate number. These subsequent versions may\naddress new issues encountered\ + \ by Free Software.\n\n12.3 Any Software distributed under a given version of the Agreement\ + \ may\nonly be subsequently distributed under the same version of the Agreement\nor a subsequent\ + \ version, subject to the provisions of Article 5.3.4\n<#compatibility>.\n\n\n Article\ + \ 13 - GOVERNING LAW AND JURISDICTION\n\n13.1 The Agreement is governed by French law. The\ + \ Parties agree to\nendeavor to seek an amicable solution to any disagreements or disputes\n\ + that may arise during the performance of the Agreement.\n\n13.2 Failing an amicable solution\ + \ within two (2) months as from their\noccurrence, and unless emergency proceedings are\ + \ necessary, the\ndisagreements or disputes shall be referred to the Paris Courts having\n\ + jurisdiction, by the more diligent Party." json: cecill-2.1.json - yml: cecill-2.1.yml + yaml: cecill-2.1.yml html: cecill-2.1.html - text: cecill-2.1.LICENSE + license: cecill-2.1.LICENSE - license_key: cecill-2.1-fr + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-cecill-2.1-fr other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: " CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL\n\nVersion 2.1 du 2013-06-21\n\n\n \ + \ Avertissement\n\nCe contrat est une licence de logiciel libre issue d'une concertation\n\ + entre ses auteurs afin que le respect de deux grands principes préside à\nsa rédaction:\n\ + \n * d'une part, le respect des principes de diffusion des logiciels\n libres: accès\ + \ au code source, droits étendus conférés aux utilisateurs,\n * d'autre part, la désignation\ + \ d'un droit applicable, le droit\n français, auquel elle est conforme, tant au regard\ + \ du droit de la\n responsabilité civile que du droit de la propriété intellectuelle\ + \ et\n de la protection qu'il offre aux auteurs et titulaires des droits\n patrimoniaux\ + \ sur un logiciel.\n\nLes auteurs de la licence CeCILL (Ce[a] C[nrs] I[nria] L[ogiciel]\ + \ L[ibre])\nsont:\n\nCommissariat à l'énergie atomique et aux énergies alternatives - CEA,\n\ + établissement public de recherche à caractère scientifique, technique et\nindustriel, dont\ + \ le siège est situé 25 rue Leblanc, immeuble Le Ponant\nD, 75015 Paris.\n\nCentre National\ + \ de la Recherche Scientifique - CNRS, établissement\npublic à caractère scientifique et\ + \ technologique, dont le siège est\nsitué 3 rue Michel-Ange, 75794 Paris cedex 16.\n\nInstitut\ + \ National de Recherche en Informatique et en Automatique -\nInria, établissement public\ + \ à caractère scientifique et technologique,\ndont le siège est situé Domaine de Voluceau,\ + \ Rocquencourt, BP 105, 78153\nLe Chesnay cedex.\n\n\n Préambule\n\nCe contrat est une\ + \ licence de logiciel libre dont l'objectif est de\nconférer aux utilisateurs la liberté\ + \ de modification et de\nredistribution du logiciel régi par cette licence dans le cadre\ + \ d'un\nmodèle de diffusion en logiciel libre.\n\nL'exercice de ces libertés est assorti\ + \ de certains devoirs à la charge\ndes utilisateurs afin de préserver ce statut au cours\ + \ des\nredistributions ultérieures.\n\nL'accessibilité au code source et les droits de copie,\ + \ de modification\net de redistribution qui en découlent ont pour contrepartie de n'offrir\n\ + aux utilisateurs qu'une garantie limitée et de ne faire peser sur\nl'auteur du logiciel,\ + \ le titulaire des droits patrimoniaux et les\nconcédants successifs qu'une responsabilité\ + \ restreinte.\n\nA cet égard l'attention de l'utilisateur est attirée sur les risques\n\ + associés au chargement, à l'utilisation, à la modification et/ou au\ndéveloppement et à\ + \ la reproduction du logiciel par l'utilisateur étant\ndonné sa spécificité de logiciel\ + \ libre, qui peut le rendre complexe à\nmanipuler et qui le réserve donc à des développeurs\ + \ ou des\nprofessionnels avertis possédant des connaissances informatiques\napprofondies.\ + \ Les utilisateurs sont donc invités à charger et tester\nl'adéquation du logiciel à leurs\ + \ besoins dans des conditions permettant\nd'assurer la sécurité de leurs systèmes et/ou\ + \ de leurs données et, plus\ngénéralement, à l'utiliser et l'exploiter dans les mêmes conditions\ + \ de\nsécurité. Ce contrat peut être reproduit et diffusé librement, sous\nréserve de le\ + \ conserver en l'état, sans ajout ni suppression de clauses.\n\nCe contrat est susceptible\ + \ de s'appliquer à tout logiciel dont le\ntitulaire des droits patrimoniaux décide de soumettre\ + \ l'exploitation aux\ndispositions qu'il contient.\n\nUne liste de questions fréquemment\ + \ posées se trouve sur le site web\nofficiel de la famille des licences CeCILL \n(http://www.cecill.info/index.fr.html)\ + \ pour toute clarification qui\nserait nécessaire.\n\n\n Article 1 - DEFINITIONS\n\n\ + Dans ce contrat, les termes suivants, lorsqu'ils seront écrits avec une\nlettre capitale,\ + \ auront la signification suivante:\n\nContrat: désigne le présent contrat de licence, ses\ + \ éventuelles versions\npostérieures et annexes.\n\nLogiciel: désigne le logiciel sous sa\ + \ forme de Code Objet et/ou de Code\nSource et le cas échéant sa documentation, dans leur\ + \ état au moment de\nl'acceptation du Contrat par le Licencié.\n\nLogiciel Initial: désigne\ + \ le Logiciel sous sa forme de Code Source et\néventuellement de Code Objet et le cas échéant\ + \ sa documentation, dans\nleur état au moment de leur première diffusion sous les termes\ + \ du Contrat.\n\nLogiciel Modifié: désigne le Logiciel modifié par au moins une\nContribution.\n\ + \nCode Source: désigne l'ensemble des instructions et des lignes de\nprogramme du Logiciel\ + \ et auquel l'accès est nécessaire en vue de\nmodifier le Logiciel.\n\nCode Objet: désigne\ + \ les fichiers binaires issus de la compilation du\nCode Source.\n\nTitulaire: désigne le\ + \ ou les détenteurs des droits patrimoniaux d'auteur\nsur le Logiciel Initial.\n\nLicencié:\ + \ désigne le ou les utilisateurs du Logiciel ayant accepté le\nContrat.\n\nContributeur:\ + \ désigne le Licencié auteur d'au moins une Contribution.\n\nConcédant: désigne le Titulaire\ + \ ou toute personne physique ou morale\ndistribuant le Logiciel sous le Contrat.\n\nContribution:\ + \ désigne l'ensemble des modifications, corrections,\ntraductions, adaptations et/ou nouvelles\ + \ fonctionnalités intégrées dans\nle Logiciel par tout Contributeur, ainsi que tout Module\ + \ Interne.\n\nModule: désigne un ensemble de fichiers sources y compris leur\ndocumentation\ + \ qui permet de réaliser des fonctionnalités ou services\nsupplémentaires à ceux fournis\ + \ par le Logiciel.\n\nModule Externe: désigne tout Module, non dérivé du Logiciel, tel que\ + \ ce\nModule et le Logiciel s'exécutent dans des espaces d'adressage\ndifférents, l'un appelant\ + \ l'autre au moment de leur exécution.\n\nModule Interne: désigne tout Module lié au Logiciel\ + \ de telle sorte\nqu'ils s'exécutent dans le même espace d'adressage.\n\nGNU GPL: désigne\ + \ la GNU General Public License dans sa version 2 ou\ntoute version ultérieure, telle que\ + \ publiée par Free Software Foundation\nInc.\n\nGNU Affero GPL: désigne la GNU Affero General\ + \ Public License dans sa\nversion 3 ou toute version ultérieure, telle que publiée par Free\n\ + Software Foundation Inc.\n\nEUPL: désigne la Licence Publique de l'Union européenne dans\ + \ sa version\n1.1 ou toute version ultérieure, telle que publiée par la Commission\nEuropéenne.\n\ + \nParties: désigne collectivement le Licencié et le Concédant.\n\nCes termes s'entendent\ + \ au singulier comme au pluriel.\n\n\n Article 2 - OBJET\n\nLe Contrat a pour objet la\ + \ concession par le Concédant au Licencié d'une\nlicence non exclusive, cessible et mondiale\ + \ du Logiciel telle que\ndéfinie ci-après à l'article 5 <#etendue> pour toute la durée de\n\ + protection des droits portant sur ce Logiciel.\n\n\n Article 3 - ACCEPTATION\n\n3.1 L'acceptation\ + \ par le Licencié des termes du Contrat est réputée\nacquise du fait du premier des faits\ + \ suivants:\n\n * (i) le chargement du Logiciel par tout moyen notamment par\n téléchargement\ + \ à partir d'un serveur distant ou par chargement à\n partir d'un support physique;\n\ + \ * (ii) le premier exercice par le Licencié de l'un quelconque des\n droits concédés\ + \ par le Contrat.\n\n3.2 Un exemplaire du Contrat, contenant notamment un avertissement\n\ + relatif aux spécificités du Logiciel, à la restriction de garantie et à\nla limitation à\ + \ un usage par des utilisateurs expérimentés a été mis à\ndisposition du Licencié préalablement\ + \ à son acceptation telle que\ndéfinie à l'article 3.1 <#acceptation-acquise> ci dessus\ + \ et le Licencié\nreconnaît en avoir pris connaissance.\n\n\n Article 4 - ENTREE EN VIGUEUR\ + \ ET DUREE\n\n\n 4.1 ENTREE EN VIGUEUR\n\nLe Contrat entre en vigueur à la date de\ + \ son acceptation par le Licencié\ntelle que définie en 3.1 <#acceptation-acquise>.\n\n\n\ + \ 4.2 DUREE\n\nLe Contrat produira ses effets pendant toute la durée légale de\nprotection\ + \ des droits patrimoniaux portant sur le Logiciel.\n\n\n Article 5 - ETENDUE DES DROITS\ + \ CONCEDES\n\nLe Concédant concède au Licencié, qui accepte, les droits suivants sur\nle\ + \ Logiciel pour toutes destinations et pour la durée du Contrat dans\nles conditions ci-après\ + \ détaillées.\n\nPar ailleurs, si le Concédant détient ou venait à détenir un ou\nplusieurs\ + \ brevets d'invention protégeant tout ou partie des\nfonctionnalités du Logiciel ou de ses\ + \ composants, il s'engage à ne pas\nopposer les éventuels droits conférés par ces brevets\ + \ aux Licenciés\nsuccessifs qui utiliseraient, exploiteraient ou modifieraient le\nLogiciel.\ + \ En cas de cession de ces brevets, le Concédant s'engage à\nfaire reprendre les obligations\ + \ du présent alinéa aux cessionnaires.\n\n\n 5.1 DROIT D'UTILISATION\n\nLe Licencié\ + \ est autorisé à utiliser le Logiciel, sans restriction quant\naux domaines d'application,\ + \ étant ci-après précisé que cela comporte:\n\n 1.\n\n la reproduction permanente ou\ + \ provisoire du Logiciel en tout ou\n partie par tout moyen et sous toute forme.\n\n\ + \ 2.\n\n le chargement, l'affichage, l'exécution, ou le stockage du Logiciel\n sur\ + \ tout support.\n\n 3.\n\n la possibilité d'en observer, d'en étudier, ou d'en tester\ + \ le\n fonctionnement afin de déterminer les idées et principes qui sont à\n la base\ + \ de n'importe quel élément de ce Logiciel; et ceci, lorsque\n le Licencié effectue toute\ + \ opération de chargement, d'affichage,\n d'exécution, de transmission ou de stockage\ + \ du Logiciel qu'il est en\n droit d'effectuer en vertu du Contrat.\n\n\n 5.2 DROIT\ + \ D'APPORTER DES CONTRIBUTIONS\n\nLe droit d'apporter des Contributions comporte le droit\ + \ de traduire,\nd'adapter, d'arranger ou d'apporter toute autre modification au Logiciel\n\ + et le droit de reproduire le logiciel en résultant.\n\nLe Licencié est autorisé à apporter\ + \ toute Contribution au Logiciel sous\nréserve de mentionner, de façon explicite, son nom\ + \ en tant qu'auteur de\ncette Contribution et la date de création de celle-ci.\n\n\n \ + \ 5.3 DROIT DE DISTRIBUTION\n\nLe droit de distribution comporte notamment le droit de\ + \ diffuser, de\ntransmettre et de communiquer le Logiciel au public sur tout support et\n\ + par tout moyen ainsi que le droit de mettre sur le marché à titre\nonéreux ou gratuit, un\ + \ ou des exemplaires du Logiciel par tout procédé.\n\nLe Licencié est autorisé à distribuer\ + \ des copies du Logiciel, modifié ou\nnon, à des tiers dans les conditions ci-après détaillées.\n\ + \n\n 5.3.1 DISTRIBUTION DU LOGICIEL SANS MODIFICATION\n\nLe Licencié est autorisé\ + \ à distribuer des copies conformes du Logiciel,\nsous forme de Code Source ou de Code Objet,\ + \ à condition que cette\ndistribution respecte les dispositions du Contrat dans leur totalité\ + \ et\nsoit accompagnée:\n\n 1.\n\n d'un exemplaire du Contrat,\n\n 2.\n\n d'un avertissement\ + \ relatif à la restriction de garantie et de\n responsabilité du Concédant telle que\ + \ prévue aux articles 8\n <#responsabilite> et 9 <#garantie>,\n\net que, dans le cas\ + \ où seul le Code Objet du Logiciel est redistribué,\nle Licencié permette un accès effectif\ + \ au Code Source complet du\nLogiciel pour une durée d'au moins 3 ans à compter de la distribution\ + \ du\nlogiciel, étant entendu que le coût additionnel d'acquisition du Code\nSource ne devra\ + \ pas excéder le simple coût de transfert des données.\n\n\n 5.3.2 DISTRIBUTION DU\ + \ LOGICIEL MODIFIE\n\nLorsque le Licencié apporte une Contribution au Logiciel, les conditions\n\ + de distribution du Logiciel Modifié en résultant sont alors soumises à\nl'intégralité des\ + \ dispositions du Contrat.\n\nLe Licencié est autorisé à distribuer le Logiciel Modifié,\ + \ sous forme de\ncode source ou de code objet, à condition que cette distribution\nrespecte\ + \ les dispositions du Contrat dans leur totalité et soit\naccompagnée:\n\n 1.\n\n d'un\ + \ exemplaire du Contrat,\n\n 2.\n\n d'un avertissement relatif à la restriction de garantie\ + \ et de\n responsabilité du Concédant telle que prévue aux articles 8\n <#responsabilite>\ + \ et 9 <#garantie>,\n\net, dans le cas où seul le code objet du Logiciel Modifié est redistribué,\n\ + \n 3.\n\n d'une note précisant les conditions d'accès effectif au code source\n complet\ + \ du Logiciel Modifié, pendant une période d'au moins 3 ans à\n compter de la distribution\ + \ du Logiciel Modifié, étant entendu que le\n coût additionnel d'acquisition du code\ + \ source ne devra pas excéder\n le simple coût de transfert des données.\n\n\n \ + \ 5.3.3 DISTRIBUTION DES MODULES EXTERNES\n\nLorsque le Licencié a développé un Module\ + \ Externe les conditions du\nContrat ne s'appliquent pas à ce Module Externe, qui peut être\ + \ distribué\nsous un contrat de licence différent.\n\n\n 5.3.4 COMPATIBILITE AVEC\ + \ D'AUTRES LICENCES\n\nLe Licencié peut inclure un code soumis aux dispositions d'une des\n\ + versions de la licence GNU GPL, GNU Affero GPL et/ou EUPL dans le\nLogiciel modifié ou non\ + \ et distribuer l'ensemble sous les conditions de\nla même version de la licence GNU GPL,\ + \ GNU Affero GPL et/ou EUPL.\n\nLe Licencié peut inclure le Logiciel modifié ou non dans\ + \ un code soumis\naux dispositions d'une des versions de la licence GNU GPL, GNU Affero\n\ + GPL et/ou EUPL et distribuer l'ensemble sous les conditions de la même\nversion de la licence\ + \ GNU GPL, GNU Affero GPL et/ou EUPL.\n\n\n Article 6 - PROPRIETE INTELLECTUELLE\n\n\n\ + \ 6.1 SUR LE LOGICIEL INITIAL\n\nLe Titulaire est détenteur des droits patrimoniaux\ + \ sur le Logiciel\nInitial. Toute utilisation du Logiciel Initial est soumise au respect\n\ + des conditions dans lesquelles le Titulaire a choisi de diffuser son\noeuvre et nul autre\ + \ n'a la faculté de modifier les conditions de\ndiffusion de ce Logiciel Initial.\n\nLe\ + \ Titulaire s'engage à ce que le Logiciel Initial reste au moins régi\npar le Contrat et\ + \ ce, pour la durée visée à l'article 4.2 <#duree>.\n\n\n 6.2 SUR LES CONTRIBUTIONS\n\ + \nLe Licencié qui a développé une Contribution est titulaire sur celle-ci\ndes droits de\ + \ propriété intellectuelle dans les conditions définies par\nla législation applicable.\n\ + \n\n 6.3 SUR LES MODULES EXTERNES\n\nLe Licencié qui a développé un Module Externe\ + \ est titulaire sur celui-ci\ndes droits de propriété intellectuelle dans les conditions\ + \ définies par\nla législation applicable et reste libre du choix du contrat régissant\n\ + sa diffusion.\n\n\n 6.4 DISPOSITIONS COMMUNES\n\nLe Licencié s'engage expressément:\n\ + \n 1.\n\n à ne pas supprimer ou modifier de quelque manière que ce soit les\n mentions\ + \ de propriété intellectuelle apposées sur le Logiciel;\n\n 2.\n\n à reproduire à l'identique\ + \ lesdites mentions de propriété\n intellectuelle sur les copies du Logiciel modifié\ + \ ou non.\n\nLe Licencié s'engage à ne pas porter atteinte, directement ou\nindirectement,\ + \ aux droits de propriété intellectuelle du Titulaire et/ou\ndes Contributeurs sur le Logiciel\ + \ et à prendre, le cas échéant, à\nl'égard de son personnel toutes les mesures nécessaires\ + \ pour assurer le\nrespect des dits droits de propriété intellectuelle du Titulaire et/ou\n\ + des Contributeurs.\n\n\n Article 7 - SERVICES ASSOCIES\n\n7.1 Le Contrat n'oblige en\ + \ aucun cas le Concédant à la réalisation de\nprestations d'assistance technique ou de maintenance\ + \ du Logiciel.\n\nCependant le Concédant reste libre de proposer ce type de services. Les\n\ + termes et conditions d'une telle assistance technique et/ou d'une telle\nmaintenance seront\ + \ alors déterminés dans un acte séparé. Ces actes de\nmaintenance et/ou assistance technique\ + \ n'engageront que la seule\nresponsabilité du Concédant qui les propose.\n\n7.2 De même,\ + \ tout Concédant est libre de proposer, sous sa seule\nresponsabilité, à ses licenciés une\ + \ garantie, qui n'engagera que lui,\nlors de la redistribution du Logiciel et/ou du Logiciel\ + \ Modifié et ce,\ndans les conditions qu'il souhaite. Cette garantie et les modalités\n\ + financières de son application feront l'objet d'un acte séparé entre le\nConcédant et le\ + \ Licencié.\n\n\n Article 8 - RESPONSABILITE\n\n8.1 Sous réserve des dispositions de\ + \ l'article 8.2\n<#limite-responsabilite>, le Licencié a la faculté, sous réserve de\nprouver\ + \ la faute du Concédant concerné, de solliciter la réparation du\npréjudice direct qu'il\ + \ subirait du fait du Logiciel et dont il apportera\nla preuve.\n\n8.2 La responsabilité\ + \ du Concédant est limitée aux engagements pris en\napplication du Contrat et ne saurait\ + \ être engagée en raison notamment:\n(i) des dommages dus à l'inexécution, totale ou partielle,\ + \ de ses\nobligations par le Licencié, (ii) des dommages directs ou indirects\ndécoulant\ + \ de l'utilisation ou des performances du Logiciel subis par le\nLicencié et (iii) plus\ + \ généralement d'un quelconque dommage indirect. En\nparticulier, les Parties conviennent\ + \ expressément que tout préjudice\nfinancier ou commercial (par exemple perte de données,\ + \ perte de\nbénéfices, perte d'exploitation, perte de clientèle ou de commandes,\nmanque\ + \ à gagner, trouble commercial quelconque) ou toute action dirigée\ncontre le Licencié par\ + \ un tiers, constitue un dommage indirect et\nn'ouvre pas droit à réparation par le Concédant.\n\ + \n\n Article 9 - GARANTIE\n\n9.1 Le Licencié reconnaît que l'état actuel des connaissances\n\ + scientifiques et techniques au moment de la mise en circulation du\nLogiciel ne permet pas\ + \ d'en tester et d'en vérifier toutes les\nutilisations ni de détecter l'existence d'éventuels\ + \ défauts. L'attention\ndu Licencié a été attirée sur ce point sur les risques associés\ + \ au\nchargement, à l'utilisation, la modification et/ou au développement et à\nla reproduction\ + \ du Logiciel qui sont réservés à des utilisateurs avertis.\n\nIl relève de la responsabilité\ + \ du Licencié de contrôler, par tous\nmoyens, l'adéquation du produit à ses besoins, son\ + \ bon fonctionnement et\nde s'assurer qu'il ne causera pas de dommages aux personnes et\ + \ aux biens.\n\n9.2 Le Concédant déclare de bonne foi être en droit de concéder\nl'ensemble\ + \ des droits attachés au Logiciel (comprenant notamment les\ndroits visés à l'article 5\ + \ <#etendue>).\n\n9.3 Le Licencié reconnaît que le Logiciel est fourni \"en l'état\" par\ + \ le\nConcédant sans autre garantie, expresse ou tacite, que celle prévue à\nl'article 9.2\ + \ <#bonne-foi> et notamment sans aucune garantie sur sa\nvaleur commerciale, son caractère\ + \ sécurisé, innovant ou pertinent.\n\nEn particulier, le Concédant ne garantit pas que le\ + \ Logiciel est exempt\nd'erreur, qu'il fonctionnera sans interruption, qu'il sera compatible\n\ + avec l'équipement du Licencié et sa configuration logicielle ni qu'il\nremplira les besoins\ + \ du Licencié.\n\n9.4 Le Concédant ne garantit pas, de manière expresse ou tacite, que le\n\ + Logiciel ne porte pas atteinte à un quelconque droit de propriété\nintellectuelle d'un tiers\ + \ portant sur un brevet, un logiciel ou sur tout\nautre droit de propriété. Ainsi, le Concédant\ + \ exclut toute garantie au\nprofit du Licencié contre les actions en contrefaçon qui pourraient\ + \ être\ndiligentées au titre de l'utilisation, de la modification, et de la\nredistribution\ + \ du Logiciel. Néanmoins, si de telles actions sont\nexercées contre le Licencié, le Concédant\ + \ lui apportera son expertise\ntechnique et juridique pour sa défense. Cette expertise technique\ + \ et\njuridique est déterminée au cas par cas entre le Concédant concerné et\nle Licencié\ + \ dans le cadre d'un protocole d'accord. Le Concédant dégage\ntoute responsabilité quant\ + \ à l'utilisation de la dénomination du\nLogiciel par le Licencié. Aucune garantie n'est\ + \ apportée quant à\nl'existence de droits antérieurs sur le nom du Logiciel et sur\nl'existence\ + \ d'une marque.\n\n\n Article 10 - RESILIATION\n\n10.1 En cas de manquement par le Licencié\ + \ aux obligations mises à sa\ncharge par le Contrat, le Concédant pourra résilier de plein\ + \ droit le\nContrat trente (30) jours après notification adressée au Licencié et\nrestée\ + \ sans effet.\n\n10.2 Le Licencié dont le Contrat est résilié n'est plus autorisé à\nutiliser,\ + \ modifier ou distribuer le Logiciel. Cependant, toutes les\nlicences qu'il aura concédées\ + \ antérieurement à la résiliation du Contrat\nresteront valides sous réserve qu'elles aient\ + \ été effectuées en\nconformité avec le Contrat.\n\n\n Article 11 - DISPOSITIONS DIVERSES\n\ + \n\n 11.1 CAUSE EXTERIEURE\n\nAucune des Parties ne sera responsable d'un retard ou\ + \ d'une défaillance\nd'exécution du Contrat qui serait dû à un cas de force majeure, un\ + \ cas\nfortuit ou une cause extérieure, telle que, notamment, le mauvais\nfonctionnement\ + \ ou les interruptions du réseau électrique ou de\ntélécommunication, la paralysie du réseau\ + \ liée à une attaque\ninformatique, l'intervention des autorités gouvernementales, les\n\ + catastrophes naturelles, les dégâts des eaux, les tremblements de terre,\nle feu, les explosions,\ + \ les grèves et les conflits sociaux, l'état de\nguerre...\n\n11.2 Le fait, par l'une ou\ + \ l'autre des Parties, d'omettre en une ou\nplusieurs occasions de se prévaloir d'une ou\ + \ plusieurs dispositions du\nContrat, ne pourra en aucun cas impliquer renonciation par\ + \ la Partie\nintéressée à s'en prévaloir ultérieurement.\n\n11.3 Le Contrat annule et remplace\ + \ toute convention antérieure, écrite\nou orale, entre les Parties sur le même objet et\ + \ constitue l'accord\nentier entre les Parties sur cet objet. Aucune addition ou modification\n\ + aux termes du Contrat n'aura d'effet à l'égard des Parties à moins\nd'être faite par écrit\ + \ et signée par leurs représentants dûment habilités.\n\n11.4 Dans l'hypothèse où une ou\ + \ plusieurs des dispositions du Contrat\ns'avèrerait contraire à une loi ou à un texte applicable,\ + \ existants ou\nfuturs, cette loi ou ce texte prévaudrait, et les Parties feraient les\n\ + amendements nécessaires pour se conformer à cette loi ou à ce texte.\nToutes les autres\ + \ dispositions resteront en vigueur. De même, la\nnullité, pour quelque raison que ce soit,\ + \ d'une des dispositions du\nContrat ne saurait entraîner la nullité de l'ensemble du Contrat.\n\ + \n\n 11.5 LANGUE\n\nLe Contrat est rédigé en langue française et en langue anglaise,\ + \ ces\ndeux versions faisant également foi.\n\n\n Article 12 - NOUVELLES VERSIONS DU\ + \ CONTRAT\n\n12.1 Toute personne est autorisée à copier et distribuer des copies de\nce\ + \ Contrat.\n\n12.2 Afin d'en préserver la cohérence, le texte du Contrat est protégé\net\ + \ ne peut être modifié que par les auteurs de la licence, lesquels se\nréservent le droit\ + \ de publier périodiquement des mises à jour ou de\nnouvelles versions du Contrat, qui posséderont\ + \ chacune un numéro\ndistinct. Ces versions ultérieures seront susceptibles de prendre en\n\ + compte de nouvelles problématiques rencontrées par les logiciels libres.\n\n12.3 Tout Logiciel\ + \ diffusé sous une version donnée du Contrat ne pourra\nfaire l'objet d'une diffusion ultérieure\ + \ que sous la même version du\nContrat ou une version postérieure, sous réserve des dispositions\ + \ de\nl'article 5.3.4 <#compatibilite>.\n\n\n Article 13 - LOI APPLICABLE ET COMPETENCE\ + \ TERRITORIALE\n\n13.1 Le Contrat est régi par la loi française. Les Parties conviennent\n\ + de tenter de régler à l'amiable les différends ou litiges qui\nviendraient à se produire\ + \ par suite ou à l'occasion du Contrat.\n\n13.2 A défaut d'accord amiable dans un délai\ + \ de deux (2) mois à compter\nde leur survenance et sauf situation relevant d'une procédure\ + \ d'urgence,\nles différends ou litiges seront portés par la Partie la plus diligente\n\ + devant les Tribunaux compétents de Paris." json: cecill-2.1-fr.json - yml: cecill-2.1-fr.yml + yaml: cecill-2.1-fr.yml html: cecill-2.1-fr.html - text: cecill-2.1-fr.LICENSE + license: cecill-2.1-fr.LICENSE - license_key: cecill-b + category: Permissive spdx_license_key: CECILL-B other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL-B\n\n\n Avertissement\n\nCe contrat\ + \ est une licence de logiciel libre issue d'une concertation\nentre ses auteurs afin que\ + \ le respect de deux grands principes préside à\nsa rédaction:\n\n * d'une part, le respect\ + \ des principes de diffusion des logiciels\n libres: accès au code source, droits étendus\ + \ conférés aux\n utilisateurs,\n * d'autre part, la désignation d'un droit applicable,\ + \ le droit\n français, auquel elle est conforme, tant au regard du droit de la\n \ + \ responsabilité civile que du droit de la propriété intellectuelle\n et de la protection\ + \ qu'il offre aux auteurs et titulaires des\n droits patrimoniaux sur un logiciel.\n\ + \nLes auteurs de la licence CeCILL-B (pour Ce[a] C[nrs] I[nria] L[ogiciel]\nL[ibre]) sont:\n\ + \nCommissariat à l'Energie Atomique - CEA, établissement public de\nrecherche à caractère\ + \ scientifique, technique et industriel, dont le\nsiège est situé 25 rue Leblanc, immeuble\ + \ Le Ponant D, 75015 Paris.\n\nCentre National de la Recherche Scientifique - CNRS, établissement\n\ + public à caractère scientifique et technologique, dont le siège est\nsitué 3 rue Michel-Ange,\ + \ 75794 Paris cedex 16.\n\nInstitut National de Recherche en Informatique et en Automatique\ + \ -\nINRIA, établissement public à caractère scientifique et technologique,\ndont le siège\ + \ est situé Domaine de Voluceau, Rocquencourt, BP 105, 78153\nLe Chesnay cedex.\n\n\n \ + \ Préambule\n\nCe contrat est une licence de logiciel libre dont l'objectif est de\nconférer\ + \ aux utilisateurs une très large liberté de modification et de\nredistribution du logiciel\ + \ régi par cette licence.\n\nL'exercice de cette liberté est assorti d'une obligation forte\ + \ de\ncitation à la charge de ceux qui distribueraient un logiciel incorporant\nun logiciel\ + \ régi par la présente licence afin d'assurer que les\ncontributions de tous soient correctement\ + \ identifiées et reconnues.\n\nL'accessibilité au code source et les droits de copie, de\ + \ modification\net de redistribution qui découlent de ce contrat ont pour contrepartie\n\ + de n'offrir aux utilisateurs qu'une garantie limitée et de ne faire\npeser sur l'auteur\ + \ du logiciel, le titulaire des droits patrimoniaux et\nles concédants successifs qu'une\ + \ responsabilité restreinte.\n\nA cet égard l'attention de l'utilisateur est attirée sur\ + \ les risques\nassociés au chargement, à l'utilisation, à la modification et/ou au\ndéveloppement\ + \ et à la reproduction du logiciel par l'utilisateur étant\ndonné sa spécificité de logiciel\ + \ libre, qui peut le rendre complexe à\nmanipuler et qui le réserve donc à des développeurs\ + \ ou des\nprofessionnels avertis possédant des connaissances informatiques\napprofondies.\ + \ Les utilisateurs sont donc invités à charger et tester\nl'adéquation du logiciel à leurs\ + \ besoins dans des conditions permettant\nd'assurer la sécurité de leurs systèmes et/ou\ + \ de leurs données et, plus\ngénéralement, à l'utiliser et l'exploiter dans les mêmes conditions\ + \ de\nsécurité. Ce contrat peut être reproduit et diffusé librement, sous\nréserve de le\ + \ conserver en l'état, sans ajout ni suppression de clauses.\n\nCe contrat est susceptible\ + \ de s'appliquer à tout logiciel dont le\ntitulaire des droits patrimoniaux décide de soumettre\ + \ l'exploitation aux\ndispositions qu'il contient.\n\n\n Article 1 - DEFINITIONS\n\n\ + Dans ce contrat, les termes suivants, lorsqu'ils seront écrits avec une\nlettre capitale,\ + \ auront la signification suivante:\n\nContrat: désigne le présent contrat de licence, ses\ + \ éventuelles versions\npostérieures et annexes.\n\nLogiciel: désigne le logiciel sous sa\ + \ forme de Code Objet et/ou de Code\nSource et le cas échéant sa documentation, dans leur\ + \ état au moment de\nl'acceptation du Contrat par le Licencié.\n\nLogiciel Initial: désigne\ + \ le Logiciel sous sa forme de Code Source et\néventuellement de Code Objet et le cas échéant\ + \ sa documentation, dans\nleur état au moment de leur première diffusion sous les termes\ + \ du Contrat.\n\nLogiciel Modifié: désigne le Logiciel modifié par au moins une\nContribution.\n\ + \nCode Source: désigne l'ensemble des instructions et des lignes de\nprogramme du Logiciel\ + \ et auquel l'accès est nécessaire en vue de\nmodifier le Logiciel.\n\nCode Objet: désigne\ + \ les fichiers binaires issus de la compilation du\nCode Source.\n\nTitulaire: désigne le\ + \ ou les détenteurs des droits patrimoniaux d'auteur\nsur le Logiciel Initial.\n\nLicencié:\ + \ désigne le ou les utilisateurs du Logiciel ayant accepté le\nContrat.\n\nContributeur:\ + \ désigne le Licencié auteur d'au moins une Contribution.\n\nConcédant: désigne le Titulaire\ + \ ou toute personne physique ou morale\ndistribuant le Logiciel sous le Contrat.\n\nContribution:\ + \ désigne l'ensemble des modifications, corrections,\ntraductions, adaptations et/ou nouvelles\ + \ fonctionnalités intégrées dans\nle Logiciel par tout Contributeur, ainsi que tout Module\ + \ Interne.\n\nModule: désigne un ensemble de fichiers sources y compris leur\ndocumentation\ + \ qui permet de réaliser des fonctionnalités ou services\nsupplémentaires à ceux fournis\ + \ par le Logiciel.\n\nModule Externe: désigne tout Module, non dérivé du Logiciel, tel que\ + \ ce\nModule et le Logiciel s'exécutent dans des espaces d'adressage\ndifférents, l'un appelant\ + \ l'autre au moment de leur exécution.\n\nModule Interne: désigne tout Module lié au Logiciel\ + \ de telle sorte\nqu'ils s'exécutent dans le même espace d'adressage.\n\nParties: désigne\ + \ collectivement le Licencié et le Concédant.\n\nCes termes s'entendent au singulier comme\ + \ au pluriel.\n\n\n Article 2 - OBJET\n\nLe Contrat a pour objet la concession par le\ + \ Concédant au Licencié d'une\nlicence non exclusive, cessible et mondiale du Logiciel telle\ + \ que\ndéfinie ci-après à l'article 5 pour toute la durée de protection des droits \nportant\ + \ sur ce Logiciel. \n\n\n Article 3 - ACCEPTATION\n\n3.1 L'acceptation par le Licencié\ + \ des termes du Contrat est réputée\nacquise du fait du premier des faits suivants:\n\n\ + \ * (i) le chargement du Logiciel par tout moyen notamment par\n téléchargement\ + \ à partir d'un serveur distant ou par chargement à\n partir d'un support physique;\n\ + \ * (ii) le premier exercice par le Licencié de l'un quelconque des\n droits concédés\ + \ par le Contrat.\n\n3.2 Un exemplaire du Contrat, contenant notamment un avertissement\n\ + relatif aux spécificités du Logiciel, à la restriction de garantie et à\nla limitation à\ + \ un usage par des utilisateurs expérimentés a été mis à\ndisposition du Licencié préalablement\ + \ à son acceptation telle que\ndéfinie à l'article 3.1 ci dessus et le Licencié reconnaît\ + \ en avoir pris\nconnaissance.\n\n\n Article 4 - ENTREE EN VIGUEUR ET DUREE\n\n\n \ + \ 4.1 ENTREE EN VIGUEUR\n\nLe Contrat entre en vigueur à la date de son acceptation par\ + \ le Licencié\ntelle que définie en 3.1.\n\n\n 4.2 DUREE\n\nLe Contrat produira ses\ + \ effets pendant toute la durée légale de\nprotection des droits patrimoniaux portant sur\ + \ le Logiciel.\n\n\n Article 5 - ETENDUE DES DROITS CONCEDES\n\nLe Concédant concède\ + \ au Licencié, qui accepte, les droits suivants sur\nle Logiciel pour toutes destinations\ + \ et pour la durée du Contrat dans\nles conditions ci-après détaillées.\n\nPar ailleurs,\ + \ si le Concédant détient ou venait à détenir un ou\nplusieurs brevets d'invention protégeant\ + \ tout ou partie des\nfonctionnalités du Logiciel ou de ses composants, il s'engage à ne\ + \ pas\nopposer les éventuels droits conférés par ces brevets aux Licenciés\nsuccessifs qui\ + \ utiliseraient, exploiteraient ou modifieraient le\nLogiciel. En cas de cession de ces\ + \ brevets, le Concédant s'engage à\nfaire reprendre les obligations du présent alinéa aux\ + \ cessionnaires.\n\n\n 5.1 DROIT D'UTILISATION\n\nLe Licencié est autorisé à utiliser\ + \ le Logiciel, sans restriction quant\naux domaines d'application, étant ci-après précisé\ + \ que cela comporte:\n\n 1. la reproduction permanente ou provisoire du Logiciel en tout\ + \ ou\n partie par tout moyen et sous toute forme.\n\n 2. le chargement, l'affichage,\ + \ l'exécution, ou le stockage du\n Logiciel sur tout support.\n\n 3. la possibilité\ + \ d'en observer, d'en étudier, ou d'en tester le\n fonctionnement afin de déterminer\ + \ les idées et principes qui sont\n à la base de n'importe quel élément de ce Logiciel;\ + \ et ceci,\n lorsque le Licencié effectue toute opération de chargement,\n d'affichage,\ + \ d'exécution, de transmission ou de stockage du\n Logiciel qu'il est en droit d'effectuer\ + \ en vertu du Contrat.\n\n\n 5.2 DROIT D'APPORTER DES CONTRIBUTIONS\n\nLe droit d'apporter\ + \ des Contributions comporte le droit de traduire,\nd'adapter, d'arranger ou d'apporter\ + \ toute autre modification au Logiciel\net le droit de reproduire le logiciel en résultant.\n\ + \nLe Licencié est autorisé à apporter toute Contribution au Logiciel sous\nréserve de mentionner,\ + \ de façon explicite, son nom en tant qu'auteur de\ncette Contribution et la date de création\ + \ de celle-ci.\n\n\n 5.3 DROIT DE DISTRIBUTION\n\nLe droit de distribution comporte\ + \ notamment le droit de diffuser, de\ntransmettre et de communiquer le Logiciel au public\ + \ sur tout support et\npar tout moyen ainsi que le droit de mettre sur le marché à titre\n\ + onéreux ou gratuit, un ou des exemplaires du Logiciel par tout procédé.\n\nLe Licencié est\ + \ autorisé à distribuer des copies du Logiciel, modifié ou\nnon, à des tiers dans les conditions\ + \ ci-après détaillées.\n\n\n 5.3.1 DISTRIBUTION DU LOGICIEL SANS MODIFICATION\n\n\ + Le Licencié est autorisé à distribuer des copies conformes du Logiciel,\nsous forme de Code\ + \ Source ou de Code Objet, à condition que cette\ndistribution respecte les dispositions\ + \ du Contrat dans leur totalité et\nsoit accompagnée:\n\n 1. d'un exemplaire du Contrat,\n\ + \n 2. d'un avertissement relatif à la restriction de garantie et de\n responsabilité\ + \ du Concédant telle que prévue aux articles 8\n et 9,\n\net que, dans le cas où seul\ + \ le Code Objet du Logiciel est redistribué,\nle Licencié permette un accès effectif au\ + \ Code Source complet du\nLogiciel pendant au moins toute la durée de sa distribution du\ + \ Logiciel,\nétant entendu que le coût additionnel d'acquisition du Code Source ne\ndevra\ + \ pas excéder le simple coût de transfert des données.\n\n\n 5.3.2 DISTRIBUTION DU\ + \ LOGICIEL MODIFIE\n\nLorsque le Licencié apporte une Contribution au Logiciel, le Logiciel\n\ + Modifié peut être distribué sous un contrat de licence autre que le\nprésent Contrat sous\ + \ réserve du respect des dispositions de l'article\n5.3.4.\n\n\n 5.3.3 DISTRIBUTION\ + \ DES MODULES EXTERNES\n\nLorsque le Licencié a développé un Module Externe les conditions\ + \ du\nContrat ne s'appliquent pas à ce Module Externe, qui peut être distribué\nsous un\ + \ contrat de licence différent.\n\n\n 5.3.4 CITATIONS\n\nLe Licencié qui distribue\ + \ un Logiciel Modifié s'engage expressément:\n\n 1. à indiquer dans sa documentation qu'il\ + \ a été réalisé à partir du\n Logiciel régi par le Contrat, en reproduisant les mentions\ + \ de\n propriété intellectuelle du Logiciel,\n\n 2. à faire en sorte que l'utilisation\ + \ du Logiciel, ses mentions de\n propriété intellectuelle et le fait qu'il est régi\ + \ par le Contrat\n soient indiqués dans un texte facilement accessible depuis\n \ + \ l'interface du Logiciel Modifié,\n\n 3. à mentionner, sur un site Web librement accessible\ + \ décrivant le\n Logiciel Modifié, et pendant au moins toute la durée de sa\n \ + \ distribution, qu'il a été réalisé à partir du Logiciel régi par le\n Contrat, en\ + \ reproduisant les mentions de propriété intellectuelle\n du Logiciel,\n\n 4. lorsqu'il\ + \ le distribue à un tiers susceptible de distribuer\n lui-même un Logiciel Modifié,\ + \ sans avoir à en distribuer le code\n source, à faire ses meilleurs efforts pour que\ + \ les obligations du\n présent article 5.3.4 soient reprises par le dit tiers.\n\n\ + Lorsque le Logiciel modifié ou non est distribué avec un Module Externe\nqui a été conçu\ + \ pour l'utiliser, le Licencié doit soumettre le dit\nModule Externe aux obligations précédentes.\n\ + \n\n 5.3.5 COMPATIBILITE AVEC LES LICENCES CeCILL et CeCILL-C\n\nLorsqu'un Logiciel\ + \ Modifié contient une Contribution soumise au contrat\nde licence CeCILL, les stipulations\ + \ prévues à l'article 5.3.4 sont \nfacultatives.\n\nUn Logiciel Modifié peut être distribué\ + \ sous le contrat de licence\nCeCILL-C. Les stipulations prévues à l'article 5.3.4 sont\ + \ alors \nfacultatives.\n\n\n Article 6 - PROPRIETE INTELLECTUELLE\n\n\n 6.1 SUR\ + \ LE LOGICIEL INITIAL\n\nLe Titulaire est détenteur des droits patrimoniaux sur le Logiciel\n\ + Initial. Toute utilisation du Logiciel Initial est soumise au respect\ndes conditions dans\ + \ lesquelles le Titulaire a choisi de diffuser son\noeuvre et nul autre n'a la faculté de\ + \ modifier les conditions de\ndiffusion de ce Logiciel Initial.\n\nLe Titulaire s'engage\ + \ à ce que le Logiciel Initial reste au moins régi\npar le Contrat et ce, pour la durée\ + \ visée à l'article 4.2.\n\n\n 6.2 SUR LES CONTRIBUTIONS\n\nLe Licencié qui a développé\ + \ une Contribution est titulaire sur celle-ci\ndes droits de propriété intellectuelle dans\ + \ les conditions définies par\nla législation applicable.\n\n\n 6.3 SUR LES MODULES\ + \ EXTERNES\n\nLe Licencié qui a développé un Module Externe est titulaire sur celui-ci\n\ + des droits de propriété intellectuelle dans les conditions définies par\nla législation\ + \ applicable et reste libre du choix du contrat régissant\nsa diffusion.\n\n\n 6.4\ + \ DISPOSITIONS COMMUNES\n\nLe Licencié s'engage expressément:\n\n 1. à ne pas supprimer\ + \ ou modifier de quelque manière que ce soit les\n mentions de propriété intellectuelle\ + \ apposées sur le Logiciel;\n\n 2. à reproduire à l'identique lesdites mentions de propriété\n\ + \ intellectuelle sur les copies du Logiciel modifié ou non.\n\nLe Licencié s'engage\ + \ à ne pas porter atteinte, directement ou\nindirectement, aux droits de propriété intellectuelle\ + \ du Titulaire et/ou\ndes Contributeurs sur le Logiciel et à prendre, le cas échéant, à\n\ + l'égard de son personnel toutes les mesures nécessaires pour assurer le\nrespect des dits\ + \ droits de propriété intellectuelle du Titulaire et/ou\ndes Contributeurs.\n\n\n Article\ + \ 7 - SERVICES ASSOCIES\n\n7.1 Le Contrat n'oblige en aucun cas le Concédant à la réalisation\ + \ de\nprestations d'assistance technique ou de maintenance du Logiciel.\n\nCependant le\ + \ Concédant reste libre de proposer ce type de services. Les\ntermes et conditions d'une\ + \ telle assistance technique et/ou d'une telle\nmaintenance seront alors déterminés dans\ + \ un acte séparé. Ces actes de\nmaintenance et/ou assistance technique n'engageront que\ + \ la seule\nresponsabilité du Concédant qui les propose.\n\n7.2 De même, tout Concédant\ + \ est libre de proposer, sous sa seule\nresponsabilité, à ses licenciés une garantie, qui\ + \ n'engagera que lui,\nlors de la redistribution du Logiciel et/ou du Logiciel Modifié et\ + \ ce,\ndans les conditions qu'il souhaite. Cette garantie et les modalités\nfinancières\ + \ de son application feront l'objet d'un acte séparé entre le\nConcédant et le Licencié.\n\ + \n\n Article 8 - RESPONSABILITE\n\n8.1 Sous réserve des dispositions de l'article 8.2,\ + \ le Licencié a la \nfaculté, sous réserve de prouver la faute du Concédant concerné, de\n\ + solliciter la réparation du préjudice direct qu'il subirait du fait du\nLogiciel et dont\ + \ il apportera la preuve.\n\n8.2 La responsabilité du Concédant est limitée aux engagements\ + \ pris en\napplication du Contrat et ne saurait être engagée en raison notamment:\n(i) des\ + \ dommages dus à l'inexécution, totale ou partielle, de ses\nobligations par le Licencié,\ + \ (ii) des dommages directs ou indirects\ndécoulant de l'utilisation ou des performances\ + \ du Logiciel subis par le\nLicencié et (iii) plus généralement d'un quelconque dommage\ + \ indirect. En\nparticulier, les Parties conviennent expressément que tout préjudice\nfinancier\ + \ ou commercial (par exemple perte de données, perte de\nbénéfices, perte d'exploitation,\ + \ perte de clientèle ou de commandes,\nmanque à gagner, trouble commercial quelconque) ou\ + \ toute action dirigée\ncontre le Licencié par un tiers, constitue un dommage indirect et\n\ + n'ouvre pas droit à réparation par le Concédant.\n\n\n Article 9 - GARANTIE\n\n9.1 Le\ + \ Licencié reconnaît que l'état actuel des connaissances\nscientifiques et techniques au\ + \ moment de la mise en circulation du\nLogiciel ne permet pas d'en tester et d'en vérifier\ + \ toutes les\nutilisations ni de détecter l'existence d'éventuels défauts. L'attention\n\ + du Licencié a été attirée sur ce point sur les risques associés au\nchargement, à l'utilisation,\ + \ la modification et/ou au développement et à\nla reproduction du Logiciel qui sont réservés\ + \ à des utilisateurs avertis.\n\nIl relève de la responsabilité du Licencié de contrôler,\ + \ par tous\nmoyens, l'adéquation du produit à ses besoins, son bon fonctionnement et\nde\ + \ s'assurer qu'il ne causera pas de dommages aux personnes et aux biens.\n\n9.2 Le Concédant\ + \ déclare de bonne foi être en droit de concéder\nl'ensemble des droits attachés au Logiciel\ + \ (comprenant notamment les\ndroits visés à l'article 5).\n\n9.3 Le Licencié reconnaît que\ + \ le Logiciel est fourni \"en l'état\" par le\nConcédant sans autre garantie, expresse ou\ + \ tacite, que celle prévue à\nl'article 9.2 et notamment sans aucune garantie sur sa valeur\ + \ commerciale,\nson caractère sécurisé, innovant ou pertinent.\n\nEn particulier, le Concédant\ + \ ne garantit pas que le Logiciel est exempt\nd'erreur, qu'il fonctionnera sans interruption,\ + \ qu'il sera compatible\navec l'équipement du Licencié et sa configuration logicielle ni\ + \ qu'il\nremplira les besoins du Licencié.\n\n9.4 Le Concédant ne garantit pas, de manière\ + \ expresse ou tacite, que le\nLogiciel ne porte pas atteinte à un quelconque droit de propriété\n\ + intellectuelle d'un tiers portant sur un brevet, un logiciel ou sur tout\nautre droit de\ + \ propriété. Ainsi, le Concédant exclut toute garantie au\nprofit du Licencié contre les\ + \ actions en contrefaçon qui pourraient être\ndiligentées au titre de l'utilisation, de\ + \ la modification, et de la\nredistribution du Logiciel. Néanmoins, si de telles actions\ + \ sont\nexercées contre le Licencié, le Concédant lui apportera son aide\ntechnique et juridique\ + \ pour sa défense. Cette aide technique et\njuridique est déterminée au cas par cas entre\ + \ le Concédant concerné et\nle Licencié dans le cadre d'un protocole d'accord. Le Concédant\ + \ dégage\ntoute responsabilité quant à l'utilisation de la dénomination du\nLogiciel par\ + \ le Licencié. Aucune garantie n'est apportée quant à\nl'existence de droits antérieurs\ + \ sur le nom du Logiciel et sur\nl'existence d'une marque.\n\n\n Article 10 - RESILIATION\n\ + \n10.1 En cas de manquement par le Licencié aux obligations mises à sa\ncharge par le Contrat,\ + \ le Concédant pourra résilier de plein droit le\nContrat trente (30) jours après notification\ + \ adressée au Licencié et\nrestée sans effet.\n\n10.2 Le Licencié dont le Contrat est résilié\ + \ n'est plus autorisé à\nutiliser, modifier ou distribuer le Logiciel. Cependant, toutes\ + \ les\nlicences qu'il aura concédées antérieurement à la résiliation du Contrat\nresteront\ + \ valides sous réserve qu'elles aient été effectuées en\nconformité avec le Contrat.\n\n\ + \n Article 11 - DISPOSITIONS DIVERSES\n\n\n 11.1 CAUSE EXTERIEURE\n\nAucune des\ + \ Parties ne sera responsable d'un retard ou d'une défaillance\nd'exécution du Contrat qui\ + \ serait dû à un cas de force majeure, un cas\nfortuit ou une cause extérieure, telle que,\ + \ notamment, le mauvais\nfonctionnement ou les interruptions du réseau électrique ou de\n\ + télécommunication, la paralysie du réseau liée à une attaque\ninformatique, l'intervention\ + \ des autorités gouvernementales, les\ncatastrophes naturelles, les dégâts des eaux, les\ + \ tremblements de terre,\nle feu, les explosions, les grèves et les conflits sociaux, l'état\ + \ de\nguerre...\n\n11.2 Le fait, par l'une ou l'autre des Parties, d'omettre en une ou\n\ + plusieurs occasions de se prévaloir d'une ou plusieurs dispositions du\nContrat, ne pourra\ + \ en aucun cas impliquer renonciation par la Partie\nintéressée à s'en prévaloir ultérieurement.\n\ + \n11.3 Le Contrat annule et remplace toute convention antérieure, écrite\nou orale, entre\ + \ les Parties sur le même objet et constitue l'accord\nentier entre les Parties sur cet\ + \ objet. Aucune addition ou modification\naux termes du Contrat n'aura d'effet à l'égard\ + \ des Parties à moins\nd'être faite par écrit et signée par leurs représentants dûment habilités.\n\ + \n11.4 Dans l'hypothèse où une ou plusieurs des dispositions du Contrat\ns'avèrerait contraire\ + \ à une loi ou à un texte applicable, existants ou\nfuturs, cette loi ou ce texte prévaudrait,\ + \ et les Parties feraient les\namendements nécessaires pour se conformer à cette loi ou\ + \ à ce texte.\nToutes les autres dispositions resteront en vigueur. De même, la\nnullité,\ + \ pour quelque raison que ce soit, d'une des dispositions du\nContrat ne saurait entraîner\ + \ la nullité de l'ensemble du Contrat.\n\n\n 11.5 LANGUE\n\nLe Contrat est rédigé en\ + \ langue française et en langue anglaise, ces\ndeux versions faisant également foi.\n\n\n\ + \ Article 12 - NOUVELLES VERSIONS DU CONTRAT\n\n12.1 Toute personne est autorisée à copier\ + \ et distribuer des copies de\nce Contrat.\n\n12.2 Afin d'en préserver la cohérence, le\ + \ texte du Contrat est protégé\net ne peut être modifié que par les auteurs de la licence,\ + \ lesquels se\nréservent le droit de publier périodiquement des mises à jour ou de\nnouvelles\ + \ versions du Contrat, qui posséderont chacune un numéro\ndistinct. Ces versions ultérieures\ + \ seront susceptibles de prendre en\ncompte de nouvelles problématiques rencontrées par\ + \ les logiciels libres.\n\n12.3 Tout Logiciel diffusé sous une version donnée du Contrat\ + \ ne pourra\nfaire l'objet d'une diffusion ultérieure que sous la même version du\nContrat\ + \ ou une version postérieure.\n\n\n Article 13 - LOI APPLICABLE ET COMPETENCE TERRITORIALE\n\ + \n13.1 Le Contrat est régi par la loi française. Les Parties conviennent\nde tenter de régler\ + \ à l'amiable les différends ou litiges qui\nviendraient à se produire par suite ou à l'occasion\ + \ du Contrat.\n\n13.2 A défaut d'accord amiable dans un délai de deux (2) mois à compter\n\ + de leur survenance et sauf situation relevant d'une procédure d'urgence,\nles différends\ + \ ou litiges seront portés par la Partie la plus diligente\ndevant les Tribunaux compétents\ + \ de Paris.\n\n\nVersion 1.0 du 2006-09-05." json: cecill-b.json - yml: cecill-b.yml + yaml: cecill-b.yml html: cecill-b.html - text: cecill-b.LICENSE + license: cecill-b.LICENSE - license_key: cecill-b-en + category: Permissive spdx_license_key: LicenseRef-scancode-cecill-b-en other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "CeCILL-B FREE SOFTWARE LICENSE AGREEMENT\n\n\n Notice\n\nThis Agreement is a Free\ + \ Software license agreement that is the result\nof discussions between its authors in order\ + \ to ensure compliance with\nthe two main principles guiding its drafting:\n\n * firstly,\ + \ compliance with the principles governing the distribution\n of Free Software: access\ + \ to source code, broad rights granted to\n users,\n * secondly, the election of\ + \ a governing law, French law, with which\n it is conformant, both as regards the law\ + \ of torts and\n intellectual property law, and the protection that it offers to\n\ + \ both authors and holders of the economic rights over software.\n\nThe authors of\ + \ the CeCILL-B (for Ce[a] C[nrs] I[nria] L[ogiciel] L[ibre])\nlicense are: \n\nCommissariat\ + \ à l'Energie Atomique - CEA, a public scientific, technical\nand industrial research establishment,\ + \ having its principal place of\nbusiness at 25 rue Leblanc, immeuble Le Ponant D, 75015\ + \ Paris, France.\n\nCentre National de la Recherche Scientifique - CNRS, a public scientific\n\ + and technological establishment, having its principal place of business\nat 3 rue Michel-Ange,\ + \ 75794 Paris cedex 16, France.\n\nInstitut National de Recherche en Informatique et en\ + \ Automatique -\nINRIA, a public scientific and technological establishment, having its\n\ + principal place of business at Domaine de Voluceau, Rocquencourt, BP\n105, 78153 Le Chesnay\ + \ cedex, France.\n\n\n Preamble\n\nThis Agreement is an open source software license\ + \ intended to give users\nsignificant freedom to modify and redistribute the software licensed\n\ + hereunder.\n\nThe exercising of this freedom is conditional upon a strong obligation\nof\ + \ giving credits for everybody that distributes a software\nincorporating a software ruled\ + \ by the current license so as all\ncontributions to be properly identified and acknowledged.\n\ + \nIn consideration of access to the source code and the rights to copy,\nmodify and redistribute\ + \ granted by the license, users are provided only\nwith a limited warranty and the software's\ + \ author, the holder of the\neconomic rights, and the successive licensors only have limited\ + \ liability.\n\nIn this respect, the risks associated with loading, using, modifying\nand/or\ + \ developing or reproducing the software by the user are brought to\nthe user's attention,\ + \ given its Free Software status, which may make it\ncomplicated to use, with the result\ + \ that its use is reserved for\ndevelopers and experienced professionals having in-depth\ + \ computer\nknowledge. Users are therefore encouraged to load and test the\nsuitability\ + \ of the software as regards their requirements in conditions\nenabling the security of\ + \ their systems and/or data to be ensured and,\nmore generally, to use and operate it in\ + \ the same conditions of\nsecurity. This Agreement may be freely reproduced and published,\n\ + provided it is not altered, and that no provisions are either added or\nremoved herefrom.\n\ + \nThis Agreement may apply to any or all software for which the holder of\nthe economic\ + \ rights decides to submit the use thereof to its provisions.\n\n\n Article 1 - DEFINITIONS\n\ + \nFor the purpose of this Agreement, when the following expressions\ncommence with a capital\ + \ letter, they shall have the following meaning:\n\nAgreement: means this license agreement,\ + \ and its possible subsequent\nversions and annexes.\n\nSoftware: means the software in\ + \ its Object Code and/or Source Code form\nand, where applicable, its documentation, \"\ + as is\" when the Licensee\naccepts the Agreement.\n\nInitial Software: means the Software\ + \ in its Source Code and possibly its\nObject Code form and, where applicable, its documentation,\ + \ \"as is\" when\nit is first distributed under the terms and conditions of the Agreement.\n\ + \nModified Software: means the Software modified by at least one\nContribution.\n\nSource\ + \ Code: means all the Software's instructions and program lines to\nwhich access is required\ + \ so as to modify the Software.\n\nObject Code: means the binary files originating from\ + \ the compilation of\nthe Source Code.\n\nHolder: means the holder(s) of the economic rights\ + \ over the Initial\nSoftware.\n\nLicensee: means the Software user(s) having accepted the\ + \ Agreement.\n\nContributor: means a Licensee having made at least one Contribution.\n\n\ + Licensor: means the Holder, or any other individual or legal entity, who\ndistributes the\ + \ Software under the Agreement.\n\nContribution: means any or all modifications, corrections,\ + \ translations,\nadaptations and/or new functions integrated into the Software by any or\n\ + all Contributors, as well as any or all Internal Modules.\n\nModule: means a set of sources\ + \ files including their documentation that\nenables supplementary functions or services\ + \ in addition to those offered\nby the Software.\n\nExternal Module: means any or all Modules,\ + \ not derived from the\nSoftware, so that this Module and the Software run in separate address\n\ + spaces, with one calling the other when they are run.\n\nInternal Module: means any or all\ + \ Module, connected to the Software so\nthat they both execute in the same address space.\n\ + \nParties: mean both the Licensee and the Licensor.\n\nThese expressions may be used both\ + \ in singular and plural form.\n\n\n Article 2 - PURPOSE\n\nThe purpose of the Agreement\ + \ is the grant by the Licensor to the\nLicensee of a non-exclusive, transferable and worldwide\ + \ license for the\nSoftware as set forth in Article 5 hereinafter for the whole term of\ + \ the\nprotection granted by the rights over said Software.\n\n\n Article 3 - ACCEPTANCE\n\ + \n3.1 The Licensee shall be deemed as having accepted the terms and\nconditions of this\ + \ Agreement upon the occurrence of the first of the\nfollowing events:\n\n * (i) loading\ + \ the Software by any or all means, notably, by\n downloading from a remote server,\ + \ or by loading from a physical\n medium;\n * (ii) the first time the Licensee exercises\ + \ any of the rights\n granted hereunder.\n\n3.2 One copy of the Agreement, containing\ + \ a notice relating to the\ncharacteristics of the Software, to the limited warranty, and\ + \ to the\nfact that its use is restricted to experienced users has been provided\nto the\ + \ Licensee prior to its acceptance as set forth in Article 3.1\nhereinabove, and the Licensee\ + \ hereby acknowledges that it has read and\nunderstood it.\n\n\n Article 4 - EFFECTIVE\ + \ DATE AND TERM\n\n\n 4.1 EFFECTIVE DATE\n\nThe Agreement shall become effective on\ + \ the date when it is accepted by\nthe Licensee as set forth in Article 3.1.\n\n\n \ + \ 4.2 TERM\n\nThe Agreement shall remain in force for the entire legal term of\nprotection\ + \ of the economic rights over the Software.\n\n\n Article 5 - SCOPE OF RIGHTS GRANTED\n\ + \nThe Licensor hereby grants to the Licensee, who accepts, the following\nrights over the\ + \ Software for any or all use, and for the term of the\nAgreement, on the basis of the terms\ + \ and conditions set forth hereinafter.\n\nBesides, if the Licensor owns or comes to own\ + \ one or more patents\nprotecting all or part of the functions of the Software or of its\n\ + components, the Licensor undertakes not to enforce the rights granted by\nthese patents\ + \ against successive Licensees using, exploiting or\nmodifying the Software. If these patents\ + \ are transferred, the Licensor\nundertakes to have the transferees subscribe to the obligations\ + \ set\nforth in this paragraph.\n\n\n 5.1 RIGHT OF USE\n\nThe Licensee is authorized\ + \ to use the Software, without any limitation\nas to its fields of application, with it\ + \ being hereinafter specified\nthat this comprises:\n\n 1. permanent or temporary reproduction\ + \ of all or part of the Software\n by any or all means and in any or all form.\n\n\ + \ 2. loading, displaying, running, or storing the Software on any or\n all medium.\n\ + \n 3. entitlement to observe, study or test its operation so as to\n determine the\ + \ ideas and principles behind any or all constituent\n elements of said Software. This\ + \ shall apply when the Licensee\n carries out any or all loading, displaying, running,\ + \ transmission\n or storage operation as regards the Software, that it is entitled\n\ + \ to carry out hereunder.\n\n\n 5.2 ENTITLEMENT TO MAKE CONTRIBUTIONS\n\nThe right\ + \ to make Contributions includes the right to translate, adapt,\narrange, or make any or\ + \ all modifications to the Software, and the right\nto reproduce the resulting software.\n\ + \nThe Licensee is authorized to make any or all Contributions to the\nSoftware provided\ + \ that it includes an explicit notice that it is the\nauthor of said Contribution and indicates\ + \ the date of the creation thereof.\n\n\n 5.3 RIGHT OF DISTRIBUTION\n\nIn particular,\ + \ the right of distribution includes the right to publish,\ntransmit and communicate the\ + \ Software to the general public on any or\nall medium, and by any or all means, and the\ + \ right to market, either in\nconsideration of a fee, or free of charge, one or more copies\ + \ of the\nSoftware by any means.\n\nThe Licensee is further authorized to distribute copies\ + \ of the modified\nor unmodified Software to third parties according to the terms and\n\ + conditions set forth hereinafter.\n\n\n 5.3.1 DISTRIBUTION OF SOFTWARE WITHOUT MODIFICATION\n\ + \nThe Licensee is authorized to distribute true copies of the Software in\nSource Code or\ + \ Object Code form, provided that said distribution\ncomplies with all the provisions of\ + \ the Agreement and is accompanied by:\n\n 1. a copy of the Agreement,\n\n 2. a notice\ + \ relating to the limitation of both the Licensor's\n warranty and liability as set\ + \ forth in Articles 8 and 9,\n\nand that, in the event that only the Object Code of the\ + \ Software is\nredistributed, the Licensee allows effective access to the full Source\n\ + Code of the Software at a minimum during the entire period of its\ndistribution of the Software,\ + \ it being understood that the additional\ncost of acquiring the Source Code shall not exceed\ + \ the cost of\ntransferring the data.\n\n\n 5.3.2 DISTRIBUTION OF MODIFIED SOFTWARE\n\ + \nIf the Licensee makes any Contribution to the Software, the resulting\nModified Software\ + \ may be distributed under a license agreement other\nthan this Agreement subject to compliance\ + \ with the provisions of Article\n5.3.4.\n\n\n 5.3.3 DISTRIBUTION OF EXTERNAL MODULES\n\ + \nWhen the Licensee has developed an External Module, the terms and\nconditions of this\ + \ Agreement do not apply to said External Module, that\nmay be distributed under a separate\ + \ license agreement.\n\n\n 5.3.4 CREDITS\n\nAny Licensee who may distribute a Modified\ + \ Software hereby expressly\nagrees to:\n\n 1. indicate in the related documentation that\ + \ it is based on the\n Software licensed hereunder, and reproduce the intellectual\n\ + \ property notice for the Software,\n\n 2. ensure that written indications of the\ + \ Software intended use,\n intellectual property notice and license hereunder are included\ + \ in\n easily accessible format from the Modified Software interface,\n\n 3. mention,\ + \ on a freely accessible website describing the Modified\n Software, at least throughout\ + \ the distribution term thereof, that\n it is based on the Software licensed hereunder,\ + \ and reproduce the\n Software intellectual property notice,\n\n 4. where it is distributed\ + \ to a third party that may distribute a\n Modified Software without having to make\ + \ its source code\n available, make its best efforts to ensure that said third party\n\ + \ agrees to comply with the obligations set forth in this Article .\n\nIf the Software,\ + \ whether or not modified, is distributed with an\nExternal Module designed for use in connection\ + \ with the Software, the\nLicensee shall submit said External Module to the foregoing obligations.\n\ + \n\n 5.3.5 COMPATIBILITY WITH THE CeCILL AND CeCILL-C LICENSES\n\nWhere a Modified\ + \ Software contains a Contribution subject to the CeCILL\nlicense, the provisions set forth\ + \ in Article 5.3.4 shall be optional.\n\nA Modified Software may be distributed under the\ + \ CeCILL-C license. In\nsuch a case the provisions set forth in Article 5.3.4 shall be optional.\n\ + \n\n Article 6 - INTELLECTUAL PROPERTY\n\n\n 6.1 OVER THE INITIAL SOFTWARE\n\nThe\ + \ Holder owns the economic rights over the Initial Software. Any or\nall use of the Initial\ + \ Software is subject to compliance with the terms\nand conditions under which the Holder\ + \ has elected to distribute its work\nand no one shall be entitled to modify the terms and\ + \ conditions for the\ndistribution of said Initial Software.\n\nThe Holder undertakes that\ + \ the Initial Software will remain ruled at\nleast by this Agreement, for the duration set\ + \ forth in Article 4.2.\n\n\n 6.2 OVER THE CONTRIBUTIONS\n\nThe Licensee who develops\ + \ a Contribution is the owner of the\nintellectual property rights over this Contribution\ + \ as defined by\napplicable law.\n\n\n 6.3 OVER THE EXTERNAL MODULES\n\nThe Licensee\ + \ who develops an External Module is the owner of the\nintellectual property rights over\ + \ this External Module as defined by\napplicable law and is free to choose the type of agreement\ + \ that shall\ngovern its distribution.\n\n\n 6.4 JOINT PROVISIONS\n\nThe Licensee expressly\ + \ undertakes:\n\n 1. not to remove, or modify, in any manner, the intellectual property\n\ + \ notices attached to the Software;\n\n 2. to reproduce said notices, in an identical\ + \ manner, in the copies\n of the Software modified or not.\n\nThe Licensee undertakes\ + \ not to directly or indirectly infringe the\nintellectual property rights of the Holder\ + \ and/or Contributors on the\nSoftware and to take, where applicable, vis-à-vis its staff,\ + \ any and all\nmeasures required to ensure respect of said intellectual property rights\n\ + of the Holder and/or Contributors.\n\n\n Article 7 - RELATED SERVICES\n\n7.1 Under no\ + \ circumstances shall the Agreement oblige the Licensor to\nprovide technical assistance\ + \ or maintenance services for the Software.\n\nHowever, the Licensor is entitled to offer\ + \ this type of services. The\nterms and conditions of such technical assistance, and/or\ + \ such\nmaintenance, shall be set forth in a separate instrument. Only the\nLicensor offering\ + \ said maintenance and/or technical assistance services\nshall incur liability therefor.\n\ + \n7.2 Similarly, any Licensor is entitled to offer to its licensees, under\nits sole responsibility,\ + \ a warranty, that shall only be binding upon\nitself, for the redistribution of the Software\ + \ and/or the Modified\nSoftware, under terms and conditions that it is free to decide. Said\n\ + warranty, and the financial terms and conditions of its application,\nshall be subject of\ + \ a separate instrument executed between the Licensor\nand the Licensee.\n\n\n Article\ + \ 8 - LIABILITY\n\n8.1 Subject to the provisions of Article 8.2, the Licensee shall be\n\ + entitled to claim compensation for any direct loss it may have suffered\nfrom the Software\ + \ as a result of a fault on the part of the relevant\nLicensor, subject to providing evidence\ + \ thereof.\n\n8.2 The Licensor's liability is limited to the commitments made under\nthis\ + \ Agreement and shall not be incurred as a result of in particular:\n(i) loss due the Licensee's\ + \ total or partial failure to fulfill its\nobligations, (ii) direct or consequential loss\ + \ that is suffered by the\nLicensee due to the use or performance of the Software, and (iii)\ + \ more\ngenerally, any consequential loss. In particular the Parties expressly\nagree that\ + \ any or all pecuniary or business loss (i.e. loss of data,\nloss of profits, operating\ + \ loss, loss of customers or orders,\nopportunity cost, any disturbance to business activities)\ + \ or any or all\nlegal proceedings instituted against the Licensee by a third party,\nshall\ + \ constitute consequential loss and shall not provide entitlement to\nany or all compensation\ + \ from the Licensor.\n\n\n Article 9 - WARRANTY\n\n9.1 The Licensee acknowledges that\ + \ the scientific and technical\nstate-of-the-art when the Software was distributed did not\ + \ enable all\npossible uses to be tested and verified, nor for the presence of\npossible\ + \ defects to be detected. In this respect, the Licensee's\nattention has been drawn to the\ + \ risks associated with loading, using,\nmodifying and/or developing and reproducing the\ + \ Software which are\nreserved for experienced users.\n\nThe Licensee shall be responsible\ + \ for verifying, by any or all means,\nthe suitability of the product for its requirements,\ + \ its good working\norder, and for ensuring that it shall not cause damage to either persons\n\ + or properties.\n\n9.2 The Licensor hereby represents, in good faith, that it is entitled\n\ + to grant all the rights over the Software (including in particular the\nrights set forth\ + \ in Article 5).\n\n9.3 The Licensee acknowledges that the Software is supplied \"as is\"\ + \ by\nthe Licensor without any other express or tacit warranty, other than\nthat provided\ + \ for in Article 9.2 and, in particular, without any warranty \nas to its commercial value,\ + \ its secured, safe, innovative or relevant \nnature.\n\nSpecifically, the Licensor does\ + \ not warrant that the Software is free\nfrom any error, that it will operate without interruption,\ + \ that it will\nbe compatible with the Licensee's own equipment and software\nconfiguration,\ + \ nor that it will meet the Licensee's requirements.\n\n9.4 The Licensor does not either\ + \ expressly or tacitly warrant that the\nSoftware does not infringe any third party intellectual\ + \ property right\nrelating to a patent, software or any other property right. Therefore,\n\ + the Licensor disclaims any and all liability towards the Licensee\narising out of any or\ + \ all proceedings for infringement that may be\ninstituted in respect of the use, modification\ + \ and redistribution of the\nSoftware. Nevertheless, should such proceedings be instituted\ + \ against\nthe Licensee, the Licensor shall provide it with technical and legal\nassistance\ + \ for its defense. Such technical and legal assistance shall be\ndecided on a case-by-case\ + \ basis between the relevant Licensor and the\nLicensee pursuant to a memorandum of understanding.\ + \ The Licensor\ndisclaims any and all liability as regards the Licensee's use of the\nname\ + \ of the Software. No warranty is given as regards the existence of\nprior rights over the\ + \ name of the Software or as regards the existence\nof a trademark.\n\n\n Article 10\ + \ - TERMINATION\n\n10.1 In the event of a breach by the Licensee of its obligations\nhereunder,\ + \ the Licensor may automatically terminate this Agreement\nthirty (30) days after notice\ + \ has been sent to the Licensee and has\nremained ineffective.\n\n10.2 A Licensee whose\ + \ Agreement is terminated shall no longer be\nauthorized to use, modify or distribute the\ + \ Software. However, any\nlicenses that it may have granted prior to termination of the\ + \ Agreement\nshall remain valid subject to their having been granted in compliance\nwith\ + \ the terms and conditions hereof.\n\n\n Article 11 - MISCELLANEOUS\n\n\n 11.1 EXCUSABLE\ + \ EVENTS\n\nNeither Party shall be liable for any or all delay, or failure to\nperform the\ + \ Agreement, that may be attributable to an event of force\nmajeure, an act of God or an\ + \ outside cause, such as defective\nfunctioning or interruptions of the electricity or telecommunications\n\ + networks, network paralysis following a virus attack, intervention by\ngovernment authorities,\ + \ natural disasters, water damage, earthquakes,\nfire, explosions, strikes and labor unrest,\ + \ war, etc.\n\n11.2 Any failure by either Party, on one or more occasions, to invoke\none\ + \ or more of the provisions hereof, shall under no circumstances be\ninterpreted as being\ + \ a waiver by the interested Party of its right to\ninvoke said provision(s) subsequently.\n\ + \n11.3 The Agreement cancels and replaces any or all previous agreements,\nwhether written\ + \ or oral, between the Parties and having the same\npurpose, and constitutes the entirety\ + \ of the agreement between said\nParties concerning said purpose. No supplement or modification\ + \ to the\nterms and conditions hereof shall be effective as between the Parties\nunless\ + \ it is made in writing and signed by their duly authorized\nrepresentatives.\n\n11.4 In\ + \ the event that one or more of the provisions hereof were to\nconflict with a current or\ + \ future applicable act or legislative text,\nsaid act or legislative text shall prevail,\ + \ and the Parties shall make\nthe necessary amendments so as to comply with said act or\ + \ legislative\ntext. All other provisions shall remain effective. Similarly, invalidity\n\ + of a provision of the Agreement, for any reason whatsoever, shall not\ncause the Agreement\ + \ as a whole to be invalid.\n\n\n 11.5 LANGUAGE\n\nThe Agreement is drafted in both\ + \ French and English and both versions\nare deemed authentic.\n\n\n Article 12 - NEW\ + \ VERSIONS OF THE AGREEMENT\n\n12.1 Any person is authorized to duplicate and distribute\ + \ copies of this\nAgreement.\n\n12.2 So as to ensure coherence, the wording of this Agreement\ + \ is\nprotected and may only be modified by the authors of the License, who\nreserve the\ + \ right to periodically publish updates or new versions of the\nAgreement, each with a separate\ + \ number. These subsequent versions may\naddress new issues encountered by Free Software.\n\ + \n12.3 Any Software distributed under a given version of the Agreement may\nonly be subsequently\ + \ distributed under the same version of the Agreement\nor a subsequent version.\n\n\n \ + \ Article 13 - GOVERNING LAW AND JURISDICTION\n\n13.1 The Agreement is governed by French\ + \ law. The Parties agree to\nendeavor to seek an amicable solution to any disagreements\ + \ or disputes\nthat may arise during the performance of the Agreement.\n\n13.2 Failing an\ + \ amicable solution within two (2) months as from their\noccurrence, and unless emergency\ + \ proceedings are necessary, the\ndisagreements or disputes shall be referred to the Paris\ + \ Courts having\njurisdiction, by the more diligent Party.\n\n\nVersion 1.0 dated 2006-09-05." json: cecill-b-en.json - yml: cecill-b-en.yml + yaml: cecill-b-en.yml html: cecill-b-en.html - text: cecill-b-en.LICENSE + license: cecill-b-en.LICENSE - license_key: cecill-c + category: Copyleft spdx_license_key: CECILL-C other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL-C\n\n\n Avertissement\n\nCe contrat\ + \ est une licence de logiciel libre issue d'une concertation\nentre ses auteurs afin que\ + \ le respect de deux grands principes préside à\nsa rédaction:\n\n * d'une part, le respect\ + \ des principes de diffusion des logiciels\n libres: accès au code source, droits étendus\ + \ conférés aux\n utilisateurs,\n * d'autre part, la désignation d'un droit applicable,\ + \ le droit\n français, auquel elle est conforme, tant au regard du droit de la\n \ + \ responsabilité civile que du droit de la propriété intellectuelle\n et de la protection\ + \ qu'il offre aux auteurs et titulaires des\n droits patrimoniaux sur un logiciel.\n\ + \nLes auteurs de la licence CeCILL-C (pour Ce[a] C[nrs] I[nria] L[ogiciel]\nL[ibre]) sont:\n\ + \nCommissariat à l'Energie Atomique - CEA, établissement public de\nrecherche à caractère\ + \ scientifique, technique et industriel, dont le\nsiège est situé 25 rue Leblanc, immeuble\ + \ Le Ponant D, 75015 Paris.\n\nCentre National de la Recherche Scientifique - CNRS, établissement\n\ + public à caractère scientifique et technologique, dont le siège est\nsitué 3 rue Michel-Ange,\ + \ 75794 Paris cedex 16.\n\nInstitut National de Recherche en Informatique et en Automatique\ + \ -\nINRIA, établissement public à caractère scientifique et technologique,\ndont le siège\ + \ est situé Domaine de Voluceau, Rocquencourt, BP 105, 78153\nLe Chesnay cedex.\n\n\n \ + \ Préambule\n\nCe contrat est une licence de logiciel libre dont l'objectif est de\nconférer\ + \ aux utilisateurs la liberté de modifier et de réutiliser le\nlogiciel régi par cette licence.\n\ + \nL'exercice de cette liberté est assorti d'une obligation de remettre à\nla disposition\ + \ de la communauté les modifications apportées au code\nsource du logiciel afin de contribuer\ + \ à son évolution.\n\nL'accessibilité au code source et les droits de copie, de modification\n\ + et de redistribution qui découlent de ce contrat ont pour contrepartie\nde n'offrir aux\ + \ utilisateurs qu'une garantie limitée et de ne faire\npeser sur l'auteur du logiciel, le\ + \ titulaire des droits patrimoniaux et\nles concédants successifs qu'une responsabilité\ + \ restreinte.\n\nA cet égard l'attention de l'utilisateur est attirée sur les risques\n\ + associés au chargement, à l'utilisation, à la modification et/ou au\ndéveloppement et à\ + \ la reproduction du logiciel par l'utilisateur étant\ndonné sa spécificité de logiciel\ + \ libre, qui peut le rendre complexe à\nmanipuler et qui le réserve donc à des développeurs\ + \ ou des\nprofessionnels avertis possédant des connaissances informatiques\napprofondies.\ + \ Les utilisateurs sont donc invités à charger et tester\nl'adéquation du logiciel à leurs\ + \ besoins dans des conditions permettant\nd'assurer la sécurité de leurs systèmes et/ou\ + \ de leurs données et, plus\ngénéralement, à l'utiliser et l'exploiter dans les mêmes conditions\ + \ de\nsécurité. Ce contrat peut être reproduit et diffusé librement, sous\nréserve de le\ + \ conserver en l'état, sans ajout ni suppression de clauses.\n\nCe contrat est susceptible\ + \ de s'appliquer à tout logiciel dont le\ntitulaire des droits patrimoniaux décide de soumettre\ + \ l'exploitation aux\ndispositions qu'il contient.\n\n\n Article 1 - DEFINITIONS\n\n\ + Dans ce contrat, les termes suivants, lorsqu'ils seront écrits avec une\nlettre capitale,\ + \ auront la signification suivante:\n\nContrat: désigne le présent contrat de licence, ses\ + \ éventuelles versions\npostérieures et annexes.\n\nLogiciel: désigne le logiciel sous sa\ + \ forme de Code Objet et/ou de Code\nSource et le cas échéant sa documentation, dans leur\ + \ état au moment de\nl'acceptation du Contrat par le Licencié.\n\nLogiciel Initial: désigne\ + \ le Logiciel sous sa forme de Code Source et\néventuellement de Code Objet et le cas échéant\ + \ sa documentation, dans\nleur état au moment de leur première diffusion sous les termes\ + \ du Contrat.\n\nLogiciel Modifié: désigne le Logiciel modifié par au moins une\nContribution\ + \ Intégrée.\n\nCode Source: désigne l'ensemble des instructions et des lignes de\nprogramme\ + \ du Logiciel et auquel l'accès est nécessaire en vue de\nmodifier le Logiciel.\n\nCode\ + \ Objet: désigne les fichiers binaires issus de la compilation du\nCode Source.\n\nTitulaire:\ + \ désigne le ou les détenteurs des droits patrimoniaux d'auteur\nsur le Logiciel Initial.\n\ + \nLicencié: désigne le ou les utilisateurs du Logiciel ayant accepté le\nContrat.\n\nContributeur:\ + \ désigne le Licencié auteur d'au moins une Contribution\nIntégrée.\n\nConcédant: désigne\ + \ le Titulaire ou toute personne physique ou morale\ndistribuant le Logiciel sous le Contrat.\n\ + \nContribution Intégrée: désigne l'ensemble des modifications,\ncorrections, traductions,\ + \ adaptations et/ou nouvelles fonctionnalités\nintégrées dans le Code Source par tout Contributeur.\n\ + \nModule Lié: désigne un ensemble de fichiers sources y compris leur\ndocumentation qui,\ + \ sans modification du Code Source, permet de réaliser\ndes fonctionnalités ou services\ + \ supplémentaires à ceux fournis par le\nLogiciel.\n\nLogiciel Dérivé: désigne toute combinaison\ + \ du Logiciel, modifié ou non,\net d'un Module Lié.\n\nParties: désigne collectivement le\ + \ Licencié et le Concédant.\n\nCes termes s'entendent au singulier comme au pluriel.\n\n\ + \n Article 2 - OBJET\n\nLe Contrat a pour objet la concession par le Concédant au Licencié\ + \ d'une\nlicence non exclusive, cessible et mondiale du Logiciel telle que\ndéfinie ci-après\ + \ à l'article 5 pour toute la durée de protection des droits\nportant sur ce Logiciel.\n\ + \n\n Article 3 - ACCEPTATION\n\n3.1 L'acceptation par le Licencié des termes du Contrat\ + \ est réputée\nacquise du fait du premier des faits suivants:\n\n * (i) le chargement\ + \ du Logiciel par tout moyen notamment par\n téléchargement à partir d'un serveur distant\ + \ ou par chargement à\n partir d'un support physique;\n * (ii) le premier exercice\ + \ par le Licencié de l'un quelconque des\n droits concédés par le Contrat.\n\n3.2 Un\ + \ exemplaire du Contrat, contenant notamment un avertissement\nrelatif aux spécificités\ + \ du Logiciel, à la restriction de garantie et à\nla limitation à un usage par des utilisateurs\ + \ expérimentés a été mis à\ndisposition du Licencié préalablement à son acceptation telle\ + \ que\ndéfinie à l'article 3.1 ci dessus et le Licencié reconnaît en avoir pris\nconnaissance.\n\ + \n\n Article 4 - ENTREE EN VIGUEUR ET DUREE\n\n\n 4.1 ENTREE EN VIGUEUR\n\nLe Contrat\ + \ entre en vigueur à la date de son acceptation par le Licencié\ntelle que définie en 3.1.\n\ + \n\n 4.2 DUREE\n\nLe Contrat produira ses effets pendant toute la durée légale de\n\ + protection des droits patrimoniaux portant sur le Logiciel.\n\n\n Article 5 - ETENDUE\ + \ DES DROITS CONCEDES\n\nLe Concédant concède au Licencié, qui accepte, les droits suivants\ + \ sur\nle Logiciel pour toutes destinations et pour la durée du Contrat dans\nles conditions\ + \ ci-après détaillées.\n\nPar ailleurs, si le Concédant détient ou venait à détenir un ou\n\ + plusieurs brevets d'invention protégeant tout ou partie des\nfonctionnalités du Logiciel\ + \ ou de ses composants, il s'engage à ne pas\nopposer les éventuels droits conférés par\ + \ ces brevets aux Licenciés\nsuccessifs qui utiliseraient, exploiteraient ou modifieraient\ + \ le\nLogiciel. En cas de cession de ces brevets, le Concédant s'engage à\nfaire reprendre\ + \ les obligations du présent alinéa aux cessionnaires.\n\n\n 5.1 DROIT D'UTILISATION\n\ + \nLe Licencié est autorisé à utiliser le Logiciel, sans restriction quant\naux domaines\ + \ d'application, étant ci-après précisé que cela comporte:\n\n 1. la reproduction permanente\ + \ ou provisoire du Logiciel en tout ou\n partie par tout moyen et sous toute forme.\n\ + \n 2. le chargement, l'affichage, l'exécution, ou le stockage du\n Logiciel sur tout\ + \ support.\n\n 3. la possibilité d'en observer, d'en étudier, ou d'en tester le\n \ + \ fonctionnement afin de déterminer les idées et principes qui sont\n à la base de\ + \ n'importe quel élément de ce Logiciel; et ceci,\n lorsque le Licencié effectue toute\ + \ opération de chargement,\n d'affichage, d'exécution, de transmission ou de stockage\ + \ du\n Logiciel qu'il est en droit d'effectuer en vertu du Contrat.\n\n\n 5.2\ + \ DROIT DE MODIFICATION\n\nLe droit de modification comporte le droit de traduire, d'adapter,\n\ + d'arranger ou d'apporter toute autre modification au Logiciel et le\ndroit de reproduire\ + \ le logiciel en résultant. Il comprend en particulier\nle droit de créer un Logiciel Dérivé.\n\ + \nLe Licencié est autorisé à apporter toute modification au Logiciel sous\nréserve de mentionner,\ + \ de façon explicite, son nom en tant qu'auteur de\ncette modification et la date de création\ + \ de celle-ci.\n\n\n 5.3 DROIT DE DISTRIBUTION\n\nLe droit de distribution comporte\ + \ notamment le droit de diffuser, de\ntransmettre et de communiquer le Logiciel au public\ + \ sur tout support et\npar tout moyen ainsi que le droit de mettre sur le marché à titre\n\ + onéreux ou gratuit, un ou des exemplaires du Logiciel par tout procédé.\n\nLe Licencié est\ + \ autorisé à distribuer des copies du Logiciel, modifié ou\nnon, à des tiers dans les conditions\ + \ ci-après détaillées.\n\n\n 5.3.1 DISTRIBUTION DU LOGICIEL SANS MODIFICATION\n\n\ + Le Licencié est autorisé à distribuer des copies conformes du Logiciel,\nsous forme de Code\ + \ Source ou de Code Objet, à condition que cette\ndistribution respecte les dispositions\ + \ du Contrat dans leur totalité et\nsoit accompagnée:\n\n 1. d'un exemplaire du Contrat,\n\ + \n 2. d'un avertissement relatif à la restriction de garantie et de\n responsabilité\ + \ du Concédant telle que prévue aux articles 8\n et 9,\n\net que, dans le cas où seul\ + \ le Code Objet du Logiciel est redistribué,\nle Licencié permette un accès effectif au\ + \ Code Source complet du\nLogiciel pendant au moins toute la durée de sa distribution du\ + \ Logiciel,\nétant entendu que le coût additionnel d'acquisition du Code Source ne\ndevra\ + \ pas excéder le simple coût de transfert des données.\n\n\n 5.3.2 DISTRIBUTION DU\ + \ LOGICIEL MODIFIE\n\nLorsque le Licencié apporte une Contribution Intégrée au Logiciel,\ + \ les\nconditions de distribution du Logiciel Modifié en résultant sont alors\nsoumises\ + \ à l'intégralité des dispositions du Contrat.\n\nLe Licencié est autorisé à distribuer\ + \ le Logiciel Modifié sous forme de\ncode source ou de code objet, à condition que cette\ + \ distribution\nrespecte les dispositions du Contrat dans leur totalité et soit\naccompagnée:\n\ + \n 1. d'un exemplaire du Contrat,\n\n 2. d'un avertissement relatif à la restriction\ + \ de garantie et de\n responsabilité du Concédant telle que prévue aux articles 8\n\ + \ et 9,\n\net que, dans le cas où seul le code objet du Logiciel Modifié est\nredistribué,\ + \ le Licencié permette un accès effectif à son code source\ncomplet pendant au moins toute\ + \ la durée de sa distribution du Logiciel\nModifié, étant entendu que le coût additionnel\ + \ d'acquisition du code\nsource ne devra pas excéder le simple coût de transfert des données.\n\ + \n\n 5.3.3 DISTRIBUTION DU LOGICIEL DERIVE\n\nLorsque le Licencié crée un Logiciel\ + \ Dérivé, ce Logiciel Dérivé peut\nêtre distribué sous un contrat de licence autre que le\ + \ présent Contrat à\ncondition de respecter les obligations de mention des droits sur le\n\ + Logiciel telles que définies à l'article 6.4. Dans le cas où la création du\nLogiciel Dérivé\ + \ a nécessité une modification du Code Source le licencié\ns'engage à ce que: \n\n 1.\ + \ le Logiciel Modifié correspondant à cette modification soit régi\n par le présent\ + \ Contrat,\n 2. les Contributions Intégrées dont le Logiciel Modifié résulte\n soient\ + \ clairement identifiées et documentées,\n 3. le Licencié permette un accès effectif au\ + \ code source du Logiciel\n Modifié, pendant au moins toute la durée de la distribution\ + \ du\n Logiciel Dérivé, de telle sorte que ces modifications puissent\n être reprises\ + \ dans une version ultérieure du Logiciel, étant\n entendu que le coût additionnel\ + \ d'acquisition du code source du\n Logiciel Modifié ne devra pas excéder le simple\ + \ coût du transfert\n des données.\n\n\n 5.3.4 COMPATIBILITE AVEC LA LICENCE\ + \ CeCILL\n\nLorsqu'un Logiciel Modifié contient une Contribution Intégrée soumise au\ncontrat\ + \ de licence CeCILL, ou lorsqu'un Logiciel Dérivé contient un\nModule Lié soumis au contrat\ + \ de licence CeCILL, les stipulations prévues\nau troisième item de l'article 6.4 sont facultatives.\n\ + \n\n Article 6 - PROPRIETE INTELLECTUELLE\n\n\n 6.1 SUR LE LOGICIEL INITIAL\n\n\ + Le Titulaire est détenteur des droits patrimoniaux sur le Logiciel\nInitial. Toute utilisation\ + \ du Logiciel Initial est soumise au respect\ndes conditions dans lesquelles le Titulaire\ + \ a choisi de diffuser son\noeuvre et nul autre n'a la faculté de modifier les conditions\ + \ de\ndiffusion de ce Logiciel Initial.\n\nLe Titulaire s'engage à ce que le Logiciel Initial\ + \ reste au moins régi\npar le Contrat et ce, pour la durée visée à l'article 4.2.\n\n\n\ + \ 6.2 SUR LES CONTRIBUTIONS INTEGREES\n\nLe Licencié qui a développé une Contribution\ + \ Intégrée est titulaire sur\ncelle-ci des droits de propriété intellectuelle dans les conditions\n\ + définies par la législation applicable.\n\n\n 6.3 SUR LES MODULES LIES\n\nLe Licencié\ + \ qui a développé un Module Lié est titulaire sur celui-ci des\ndroits de propriété intellectuelle\ + \ dans les conditions définies par la\nlégislation applicable et reste libre du choix du\ + \ contrat régissant sa\ndiffusion dans les conditions définies à l'article 5.3.3.\n\n\n\ + \ 6.4 MENTIONS DES DROITS\n\nLe Licencié s'engage expressément:\n\n 1. à ne pas supprimer\ + \ ou modifier de quelque manière que ce soit les\n mentions de propriété intellectuelle\ + \ apposées sur le Logiciel;\n\n 2. à reproduire à l'identique lesdites mentions de propriété\n\ + \ intellectuelle sur les copies du Logiciel modifié ou non;\n\n 3. à faire en sorte\ + \ que l'utilisation du Logiciel, ses mentions de\n propriété intellectuelle et le fait\ + \ qu'il est régi par le Contrat\n soient indiqués dans un texte facilement accessible\ + \ notamment\n depuis l'interface de tout Logiciel Dérivé.\n\nLe Licencié s'engage à\ + \ ne pas porter atteinte, directement ou\nindirectement, aux droits de propriété intellectuelle\ + \ du Titulaire et/ou\ndes Contributeurs sur le Logiciel et à prendre, le cas échéant, à\n\ + l'égard de son personnel toutes les mesures nécessaires pour assurer le\nrespect des dits\ + \ droits de propriété intellectuelle du Titulaire et/ou\ndes Contributeurs.\n\n\n Article\ + \ 7 - SERVICES ASSOCIES\n\n7.1 Le Contrat n'oblige en aucun cas le Concédant à la réalisation\ + \ de\nprestations d'assistance technique ou de maintenance du Logiciel.\n\nCependant le\ + \ Concédant reste libre de proposer ce type de services. Les\ntermes et conditions d'une\ + \ telle assistance technique et/ou d'une telle\nmaintenance seront alors déterminés dans\ + \ un acte séparé. Ces actes de\nmaintenance et/ou assistance technique n'engageront que\ + \ la seule\nresponsabilité du Concédant qui les propose.\n\n7.2 De même, tout Concédant\ + \ est libre de proposer, sous sa seule\nresponsabilité, à ses licenciés une garantie, qui\ + \ n'engagera que lui,\nlors de la redistribution du Logiciel et/ou du Logiciel Modifié et\ + \ ce,\ndans les conditions qu'il souhaite. Cette garantie et les modalités\nfinancières\ + \ de son application feront l'objet d'un acte séparé entre le\nConcédant et le Licencié.\n\ + \n\n Article 8 - RESPONSABILITE\n\n8.1 Sous réserve des dispositions de l'article 8.2,\ + \ le Licencié a la \nfaculté, sous réserve de prouver la faute du Concédant concerné, de\n\ + solliciter la réparation du préjudice direct qu'il subirait du fait du\nLogiciel et dont\ + \ il apportera la preuve.\n\n8.2 La responsabilité du Concédant est limitée aux engagements\ + \ pris en\napplication du Contrat et ne saurait être engagée en raison notamment:\n(i) des\ + \ dommages dus à l'inexécution, totale ou partielle, de ses\nobligations par le Licencié,\ + \ (ii) des dommages directs ou indirects\ndécoulant de l'utilisation ou des performances\ + \ du Logiciel subis par le\nLicencié et (iii) plus généralement d'un quelconque dommage\ + \ indirect. En\nparticulier, les Parties conviennent expressément que tout préjudice\nfinancier\ + \ ou commercial (par exemple perte de données, perte de\nbénéfices, perte d'exploitation,\ + \ perte de clientèle ou de commandes,\nmanque à gagner, trouble commercial quelconque) ou\ + \ toute action dirigée\ncontre le Licencié par un tiers, constitue un dommage indirect et\n\ + n'ouvre pas droit à réparation par le Concédant.\n\n\n Article 9 - GARANTIE\n\n9.1 Le\ + \ Licencié reconnaît que l'état actuel des connaissances\nscientifiques et techniques au\ + \ moment de la mise en circulation du\nLogiciel ne permet pas d'en tester et d'en vérifier\ + \ toutes les\nutilisations ni de détecter l'existence d'éventuels défauts. L'attention\n\ + du Licencié a été attirée sur ce point sur les risques associés au\nchargement, à l'utilisation,\ + \ la modification et/ou au développement et à\nla reproduction du Logiciel qui sont réservés\ + \ à des utilisateurs avertis.\n\nIl relève de la responsabilité du Licencié de contrôler,\ + \ par tous\nmoyens, l'adéquation du produit à ses besoins, son bon fonctionnement et\nde\ + \ s'assurer qu'il ne causera pas de dommages aux personnes et aux biens.\n\n9.2 Le Concédant\ + \ déclare de bonne foi être en droit de concéder\nl'ensemble des droits attachés au Logiciel\ + \ (comprenant notamment les\ndroits visés à l'article 5).\n\n9.3 Le Licencié reconnaît que\ + \ le Logiciel est fourni \"en l'état\" par le\nConcédant sans autre garantie, expresse ou\ + \ tacite, que celle prévue à\nl'article 9.2 et notamment sans aucune garantie sur sa valeur\ + \ commerciale,\nson caractère sécurisé, innovant ou pertinent.\n\nEn particulier, le Concédant\ + \ ne garantit pas que le Logiciel est exempt\nd'erreur, qu'il fonctionnera sans interruption,\ + \ qu'il sera compatible\navec l'équipement du Licencié et sa configuration logicielle ni\ + \ qu'il\nremplira les besoins du Licencié.\n\n9.4 Le Concédant ne garantit pas, de manière\ + \ expresse ou tacite, que le\nLogiciel ne porte pas atteinte à un quelconque droit de propriété\n\ + intellectuelle d'un tiers portant sur un brevet, un logiciel ou sur tout\nautre droit de\ + \ propriété. Ainsi, le Concédant exclut toute garantie au\nprofit du Licencié contre les\ + \ actions en contrefaçon qui pourraient être\ndiligentées au titre de l'utilisation, de\ + \ la modification, et de la\nredistribution du Logiciel. Néanmoins, si de telles actions\ + \ sont\nexercées contre le Licencié, le Concédant lui apportera son aide\ntechnique et juridique\ + \ pour sa défense. Cette aide technique et\njuridique est déterminée au cas par cas entre\ + \ le Concédant concerné et\nle Licencié dans le cadre d'un protocole d'accord. Le Concédant\ + \ dégage\ntoute responsabilité quant à l'utilisation de la dénomination du\nLogiciel par\ + \ le Licencié. Aucune garantie n'est apportée quant à\nl'existence de droits antérieurs\ + \ sur le nom du Logiciel et sur\nl'existence d'une marque.\n\n\n Article 10 - RESILIATION\n\ + \n10.1 En cas de manquement par le Licencié aux obligations mises à sa\ncharge par le Contrat,\ + \ le Concédant pourra résilier de plein droit le\nContrat trente (30) jours après notification\ + \ adressée au Licencié et\nrestée sans effet.\n\n10.2 Le Licencié dont le Contrat est résilié\ + \ n'est plus autorisé à\nutiliser, modifier ou distribuer le Logiciel. Cependant, toutes\ + \ les\nlicences qu'il aura concédées antérieurement à la résiliation du Contrat\nresteront\ + \ valides sous réserve qu'elles aient été effectuées en\nconformité avec le Contrat.\n\n\ + \n Article 11 - DISPOSITIONS DIVERSES\n\n\n 11.1 CAUSE EXTERIEURE\n\nAucune des\ + \ Parties ne sera responsable d'un retard ou d'une défaillance\nd'exécution du Contrat qui\ + \ serait dû à un cas de force majeure, un cas\nfortuit ou une cause extérieure, telle que,\ + \ notamment, le mauvais\nfonctionnement ou les interruptions du réseau électrique ou de\n\ + télécommunication, la paralysie du réseau liée à une attaque\ninformatique, l'intervention\ + \ des autorités gouvernementales, les\ncatastrophes naturelles, les dégâts des eaux, les\ + \ tremblements de terre,\nle feu, les explosions, les grèves et les conflits sociaux, l'état\ + \ de\nguerre...\n\n11.2 Le fait, par l'une ou l'autre des Parties, d'omettre en une ou\n\ + plusieurs occasions de se prévaloir d'une ou plusieurs dispositions du\nContrat, ne pourra\ + \ en aucun cas impliquer renonciation par la Partie\nintéressée à s'en prévaloir ultérieurement.\n\ + \n11.3 Le Contrat annule et remplace toute convention antérieure, écrite\nou orale, entre\ + \ les Parties sur le même objet et constitue l'accord\nentier entre les Parties sur cet\ + \ objet. Aucune addition ou modification\naux termes du Contrat n'aura d'effet à l'égard\ + \ des Parties à moins\nd'être faite par écrit et signée par leurs représentants dûment habilités.\n\ + \n11.4 Dans l'hypothèse où une ou plusieurs des dispositions du Contrat\ns'avèrerait contraire\ + \ à une loi ou à un texte applicable, existants ou\nfuturs, cette loi ou ce texte prévaudrait,\ + \ et les Parties feraient les\namendements nécessaires pour se conformer à cette loi ou\ + \ à ce texte.\nToutes les autres dispositions resteront en vigueur. De même, la\nnullité,\ + \ pour quelque raison que ce soit, d'une des dispositions du\nContrat ne saurait entraîner\ + \ la nullité de l'ensemble du Contrat.\n\n\n 11.5 LANGUE\n\nLe Contrat est rédigé en\ + \ langue française et en langue anglaise, ces\ndeux versions faisant également foi.\n\n\n\ + \ Article 12 - NOUVELLES VERSIONS DU CONTRAT\n\n12.1 Toute personne est autorisée à copier\ + \ et distribuer des copies de\nce Contrat.\n\n12.2 Afin d'en préserver la cohérence, le\ + \ texte du Contrat est protégé\net ne peut être modifié que par les auteurs de la licence,\ + \ lesquels se\nréservent le droit de publier périodiquement des mises à jour ou de\nnouvelles\ + \ versions du Contrat, qui posséderont chacune un numéro\ndistinct. Ces versions ultérieures\ + \ seront susceptibles de prendre en\ncompte de nouvelles problématiques rencontrées par\ + \ les logiciels libres.\n\n12.3 Tout Logiciel diffusé sous une version donnée du Contrat\ + \ ne pourra\nfaire l'objet d'une diffusion ultérieure que sous la même version du\nContrat\ + \ ou une version postérieure.\n\n\n Article 13 - LOI APPLICABLE ET COMPETENCE TERRITORIALE\n\ + \n13.1 Le Contrat est régi par la loi française. Les Parties conviennent\nde tenter de régler\ + \ à l'amiable les différends ou litiges qui\nviendraient à se produire par suite ou à l'occasion\ + \ du Contrat.\n\n13.2 A défaut d'accord amiable dans un délai de deux (2) mois à compter\n\ + de leur survenance et sauf situation relevant d'une procédure d'urgence,\nles différends\ + \ ou litiges seront portés par la Partie la plus diligente\ndevant les Tribunaux compétents\ + \ de Paris.\n\n\nVersion 1.0 du 2006-09-05." json: cecill-c.json - yml: cecill-c.yml + yaml: cecill-c.yml html: cecill-c.html - text: cecill-c.LICENSE + license: cecill-c.LICENSE - license_key: cecill-c-en + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-cecill-c-en other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "CeCILL-C FREE SOFTWARE LICENSE AGREEMENT\n\n\n Notice\n\nThis Agreement is a Free\ + \ Software license agreement that is the result\nof discussions between its authors in order\ + \ to ensure compliance with\nthe two main principles guiding its drafting:\n\n * firstly,\ + \ compliance with the principles governing the distribution\n of Free Software: access\ + \ to source code, broad rights granted to\n users,\n * secondly, the election of\ + \ a governing law, French law, with which\n it is conformant, both as regards the law\ + \ of torts and\n intellectual property law, and the protection that it offers to\n\ + \ both authors and holders of the economic rights over software.\n\nThe authors of\ + \ the CeCILL-C (for Ce[a] C[nrs] I[nria] L[ogiciel] L[ibre])\nlicense are:\n\nCommissariat\ + \ à l'Energie Atomique - CEA, a public scientific, technical\nand industrial research establishment,\ + \ having its principal place of\nbusiness at 25 rue Leblanc, immeuble Le Ponant D, 75015\ + \ Paris, France.\n\nCentre National de la Recherche Scientifique - CNRS, a public scientific\n\ + and technological establishment, having its principal place of business\nat 3 rue Michel-Ange,\ + \ 75794 Paris cedex 16, France.\n\nInstitut National de Recherche en Informatique et en\ + \ Automatique -\nINRIA, a public scientific and technological establishment, having its\n\ + principal place of business at Domaine de Voluceau, Rocquencourt, BP\n105, 78153 Le Chesnay\ + \ cedex, France.\n\n\n Preamble\n\nThe purpose of this Free Software license agreement\ + \ is to grant users\nthe right to modify and re-use the software governed by this license.\n\ + \nThe exercising of this right is conditional upon the obligation to make\navailable to\ + \ the community the modifications made to the source code of\nthe software so as to contribute\ + \ to its evolution.\n\nIn consideration of access to the source code and the rights to copy,\n\ + modify and redistribute granted by the license, users are provided only\nwith a limited\ + \ warranty and the software's author, the holder of the\neconomic rights, and the successive\ + \ licensors only have limited liability.\n\nIn this respect, the risks associated with loading,\ + \ using, modifying\nand/or developing or reproducing the software by the user are brought\ + \ to\nthe user's attention, given its Free Software status, which may make it\ncomplicated\ + \ to use, with the result that its use is reserved for\ndevelopers and experienced professionals\ + \ having in-depth computer\nknowledge. Users are therefore encouraged to load and test the\n\ + suitability of the software as regards their requirements in conditions\nenabling the security\ + \ of their systems and/or data to be ensured and,\nmore generally, to use and operate it\ + \ in the same conditions of\nsecurity. This Agreement may be freely reproduced and published,\n\ + provided it is not altered, and that no provisions are either added or\nremoved herefrom.\n\ + \nThis Agreement may apply to any or all software for which the holder of\nthe economic\ + \ rights decides to submit the use thereof to its provisions.\n\n\n Article 1 - DEFINITIONS\n\ + \nFor the purpose of this Agreement, when the following expressions\ncommence with a capital\ + \ letter, they shall have the following meaning:\n\nAgreement: means this license agreement,\ + \ and its possible subsequent\nversions and annexes.\n\nSoftware: means the software in\ + \ its Object Code and/or Source Code form\nand, where applicable, its documentation, \"\ + as is\" when the Licensee\naccepts the Agreement.\n\nInitial Software: means the Software\ + \ in its Source Code and possibly its\nObject Code form and, where applicable, its documentation,\ + \ \"as is\" when\nit is first distributed under the terms and conditions of the Agreement.\n\ + \nModified Software: means the Software modified by at least one\nIntegrated Contribution.\n\ + \nSource Code: means all the Software's instructions and program lines to\nwhich access\ + \ is required so as to modify the Software.\n\nObject Code: means the binary files originating\ + \ from the compilation of\nthe Source Code.\n\nHolder: means the holder(s) of the economic\ + \ rights over the Initial\nSoftware.\n\nLicensee: means the Software user(s) having accepted\ + \ the Agreement.\n\nContributor: means a Licensee having made at least one Integrated\n\ + Contribution.\n\nLicensor: means the Holder, or any other individual or legal entity, who\n\ + distributes the Software under the Agreement.\n\nIntegrated Contribution: means any or all\ + \ modifications, corrections,\ntranslations, adaptations and/or new functions integrated\ + \ into the\nSource Code by any or all Contributors.\n\nRelated Module: means a set of sources\ + \ files including their\ndocumentation that, without modification to the Source Code, enables\n\ + supplementary functions or services in addition to those offered by the\nSoftware.\n\nDerivative\ + \ Software: means any combination of the Software, modified or\nnot, and of a Related Module.\n\ + \nParties: mean both the Licensee and the Licensor.\n\nThese expressions may be used both\ + \ in singular and plural form.\n\n\n Article 2 - PURPOSE\n\nThe purpose of the Agreement\ + \ is the grant by the Licensor to the\nLicensee of a non-exclusive, transferable and worldwide\ + \ license for the\nSoftware as set forth in Article 5 hereinafter for the whole term of\ + \ the\nprotection granted by the rights over said Software. \n\n\n Article 3 - ACCEPTANCE\n\ + \n3.1 The Licensee shall be deemed as having accepted the terms and\nconditions of this\ + \ Agreement upon the occurrence of the first of the\nfollowing events:\n\n * (i) loading\ + \ the Software by any or all means, notably, by\n downloading from a remote server,\ + \ or by loading from a physical\n medium;\n * (ii) the first time the Licensee exercises\ + \ any of the rights\n granted hereunder.\n\n3.2 One copy of the Agreement, containing\ + \ a notice relating to the\ncharacteristics of the Software, to the limited warranty, and\ + \ to the\nfact that its use is restricted to experienced users has been provided\nto the\ + \ Licensee prior to its acceptance as set forth in Article 3.1\nhereinabove, and the Licensee\ + \ hereby acknowledges that it has read and\nunderstood it.\n\n\n Article 4 - EFFECTIVE\ + \ DATE AND TERM\n\n\n 4.1 EFFECTIVE DATE\n\nThe Agreement shall become effective on\ + \ the date when it is accepted by\nthe Licensee as set forth in Article 3.1.\n\n\n \ + \ 4.2 TERM\n\nThe Agreement shall remain in force for the entire legal term of\nprotection\ + \ of the economic rights over the Software.\n\n\n Article 5 - SCOPE OF RIGHTS GRANTED\n\ + \nThe Licensor hereby grants to the Licensee, who accepts, the following\nrights over the\ + \ Software for any or all use, and for the term of the\nAgreement, on the basis of the terms\ + \ and conditions set forth hereinafter.\n\nBesides, if the Licensor owns or comes to own\ + \ one or more patents\nprotecting all or part of the functions of the Software or of its\n\ + components, the Licensor undertakes not to enforce the rights granted by\nthese patents\ + \ against successive Licensees using, exploiting or\nmodifying the Software. If these patents\ + \ are transferred, the Licensor\nundertakes to have the transferees subscribe to the obligations\ + \ set\nforth in this paragraph.\n\n\n 5.1 RIGHT OF USE\n\nThe Licensee is authorized\ + \ to use the Software, without any limitation\nas to its fields of application, with it\ + \ being hereinafter specified\nthat this comprises:\n\n 1. permanent or temporary reproduction\ + \ of all or part of the Software\n by any or all means and in any or all form.\n\n\ + \ 2. loading, displaying, running, or storing the Software on any or\n all medium.\n\ + \n 3. entitlement to observe, study or test its operation so as to\n determine the\ + \ ideas and principles behind any or all constituent\n elements of said Software. This\ + \ shall apply when the Licensee\n carries out any or all loading, displaying, running,\ + \ transmission\n or storage operation as regards the Software, that it is entitled\n\ + \ to carry out hereunder.\n\n\n 5.2 RIGHT OF MODIFICATION\n\nThe right of modification\ + \ includes the right to translate, adapt,\narrange, or make any or all modifications to\ + \ the Software, and the right\nto reproduce the resulting software. It includes, in particular,\ + \ the\nright to create a Derivative Software.\n\nThe Licensee is authorized to make any\ + \ or all modification to the\nSoftware provided that it includes an explicit notice that\ + \ it is the\nauthor of said modification and indicates the date of the creation thereof.\n\ + \n\n 5.3 RIGHT OF DISTRIBUTION\n\nIn particular, the right of distribution includes\ + \ the right to publish,\ntransmit and communicate the Software to the general public on\ + \ any or\nall medium, and by any or all means, and the right to market, either in\nconsideration\ + \ of a fee, or free of charge, one or more copies of the\nSoftware by any means.\n\nThe\ + \ Licensee is further authorized to distribute copies of the modified\nor unmodified Software\ + \ to third parties according to the terms and\nconditions set forth hereinafter.\n\n\n \ + \ 5.3.1 DISTRIBUTION OF SOFTWARE WITHOUT MODIFICATION\n\nThe Licensee is authorized\ + \ to distribute true copies of the Software in\nSource Code or Object Code form, provided\ + \ that said distribution\ncomplies with all the provisions of the Agreement and is accompanied\ + \ by:\n\n 1. a copy of the Agreement,\n\n 2. a notice relating to the limitation of\ + \ both the Licensor's\n warranty and liability as set forth in Articles 8 and 9,\n\n\ + and that, in the event that only the Object Code of the Software is\nredistributed, the\ + \ Licensee allows effective access to the full Source\nCode of the Software at a minimum\ + \ during the entire period of its\ndistribution of the Software, it being understood that\ + \ the additional\ncost of acquiring the Source Code shall not exceed the cost of\ntransferring\ + \ the data.\n\n\n 5.3.2 DISTRIBUTION OF MODIFIED SOFTWARE\n\nWhen the Licensee makes\ + \ an Integrated Contribution to the Software, the\nterms and conditions for the distribution\ + \ of the resulting Modified\nSoftware become subject to all the provisions of this Agreement.\n\ + \nThe Licensee is authorized to distribute the Modified Software, in\nsource code or object\ + \ code form, provided that said distribution\ncomplies with all the provisions of the Agreement\ + \ and is accompanied by:\n\n 1. a copy of the Agreement,\n\n 2. a notice relating to\ + \ the limitation of both the Licensor's\n warranty and liability as set forth in Articles\ + \ 8 and 9,\n\nand that, in the event that only the object code of the Modified\nSoftware\ + \ is redistributed, the Licensee allows effective access to the\nfull source code of the\ + \ Modified Software at a minimum during the entire\nperiod of its distribution of the Modified\ + \ Software, it being understood\nthat the additional cost of acquiring the source code shall\ + \ not exceed\nthe cost of transferring the data.\n\n\n 5.3.3 DISTRIBUTION OF DERIVATIVE\ + \ SOFTWARE\n\nWhen the Licensee creates Derivative Software, this Derivative Software\n\ + may be distributed under a license agreement other than this Agreement,\nsubject to compliance\ + \ with the requirement to include a notice\nconcerning the rights over the Software as defined\ + \ in Article 6.4.\nIn the event the creation of the Derivative Software required modification\ + \ \nof the Source Code, the Licensee undertakes that:\n\n 1. the resulting Modified Software\ + \ will be governed by this Agreement,\n 2. the Integrated Contributions in the resulting\ + \ Modified Software\n will be clearly identified and documented,\n 3. the Licensee\ + \ will allow effective access to the source code of the\n Modified Software, at a minimum\ + \ during the entire period of\n distribution of the Derivative Software, such that\ + \ such\n modifications may be carried over in a subsequent version of the\n Software;\ + \ it being understood that the additional cost of\n purchasing the source code of the\ + \ Modified Software shall not\n exceed the cost of transferring the data.\n\n\n \ + \ 5.3.4 COMPATIBILITY WITH THE CeCILL LICENSE\n\nWhen a Modified Software contains an\ + \ Integrated Contribution subject to\nthe CeCILL license agreement, or when a Derivative\ + \ Software contains a\nRelated Module subject to the CeCILL license agreement, the provisions\n\ + set forth in the third item of Article 6.4 are optional.\n\n\n Article 6 - INTELLECTUAL\ + \ PROPERTY\n\n\n 6.1 OVER THE INITIAL SOFTWARE\n\nThe Holder owns the economic rights\ + \ over the Initial Software. Any or\nall use of the Initial Software is subject to compliance\ + \ with the terms\nand conditions under which the Holder has elected to distribute its work\n\ + and no one shall be entitled to modify the terms and conditions for the\ndistribution of\ + \ said Initial Software.\n\nThe Holder undertakes that the Initial Software will remain\ + \ ruled at\nleast by this Agreement, for the duration set forth in Article 4.2.\n\n\n \ + \ 6.2 OVER THE INTEGRATED CONTRIBUTIONS\n\nThe Licensee who develops an Integrated Contribution\ + \ is the owner of the\nintellectual property rights over this Contribution as defined by\n\ + applicable law.\n\n\n 6.3 OVER THE RELATED MODULES\n\nThe Licensee who develops a Related\ + \ Module is the owner of the\nintellectual property rights over this Related Module as defined\ + \ by\napplicable law and is free to choose the type of agreement that shall\ngovern its\ + \ distribution under the conditions defined in Article 5.3.3.\n\n\n 6.4 NOTICE OF RIGHTS\n\ + \nThe Licensee expressly undertakes:\n\n 1. not to remove, or modify, in any manner, the\ + \ intellectual property\n notices attached to the Software;\n\n 2. to reproduce said\ + \ notices, in an identical manner, in the copies\n of the Software modified or not;\n\ + \n 3. to ensure that use of the Software, its intellectual property\n notices and\ + \ the fact that it is governed by the Agreement is\n indicated in a text that is easily\ + \ accessible, specifically from\n the interface of any Derivative Software.\n\nThe\ + \ Licensee undertakes not to directly or indirectly infringe the\nintellectual property\ + \ rights of the Holder and/or Contributors on the\nSoftware and to take, where applicable,\ + \ vis-à-vis its staff, any and all\nmeasures required to ensure respect of said intellectual\ + \ property rights\nof the Holder and/or Contributors.\n\n\n Article 7 - RELATED SERVICES\n\ + \n7.1 Under no circumstances shall the Agreement oblige the Licensor to\nprovide technical\ + \ assistance or maintenance services for the Software.\n\nHowever, the Licensor is entitled\ + \ to offer this type of services. The\nterms and conditions of such technical assistance,\ + \ and/or such\nmaintenance, shall be set forth in a separate instrument. Only the\nLicensor\ + \ offering said maintenance and/or technical assistance services\nshall incur liability\ + \ therefor.\n\n7.2 Similarly, any Licensor is entitled to offer to its licensees, under\n\ + its sole responsibility, a warranty, that shall only be binding upon\nitself, for the redistribution\ + \ of the Software and/or the Modified\nSoftware, under terms and conditions that it is free\ + \ to decide. Said\nwarranty, and the financial terms and conditions of its application,\n\ + shall be subject of a separate instrument executed between the Licensor\nand the Licensee.\n\ + \n\n Article 8 - LIABILITY\n\n8.1 Subject to the provisions of Article 8.2, the Licensee\ + \ shall be\nentitled to claim compensation for any direct loss it may have suffered\nfrom\ + \ the Software as a result of a fault on the part of the relevant\nLicensor, subject to\ + \ providing evidence thereof.\n\n8.2 The Licensor's liability is limited to the commitments\ + \ made under\nthis Agreement and shall not be incurred as a result of in particular:\n(i)\ + \ loss due the Licensee's total or partial failure to fulfill its\nobligations, (ii) direct\ + \ or consequential loss that is suffered by the\nLicensee due to the use or performance\ + \ of the Software, and (iii) more\ngenerally, any consequential loss. In particular the\ + \ Parties expressly\nagree that any or all pecuniary or business loss (i.e. loss of data,\n\ + loss of profits, operating loss, loss of customers or orders,\nopportunity cost, any disturbance\ + \ to business activities) or any or all\nlegal proceedings instituted against the Licensee\ + \ by a third party,\nshall constitute consequential loss and shall not provide entitlement\ + \ to\nany or all compensation from the Licensor.\n\n\n Article 9 - WARRANTY\n\n9.1 The\ + \ Licensee acknowledges that the scientific and technical\nstate-of-the-art when the Software\ + \ was distributed did not enable all\npossible uses to be tested and verified, nor for the\ + \ presence of\npossible defects to be detected. In this respect, the Licensee's\nattention\ + \ has been drawn to the risks associated with loading, using,\nmodifying and/or developing\ + \ and reproducing the Software which are\nreserved for experienced users.\n\nThe Licensee\ + \ shall be responsible for verifying, by any or all means,\nthe suitability of the product\ + \ for its requirements, its good working\norder, and for ensuring that it shall not cause\ + \ damage to either persons\nor properties.\n\n9.2 The Licensor hereby represents, in good\ + \ faith, that it is entitled\nto grant all the rights over the Software (including in particular\ + \ the\nrights set forth in Article 5).\n\n9.3 The Licensee acknowledges that the Software\ + \ is supplied \"as is\" by\nthe Licensor without any other express or tacit warranty, other\ + \ than\nthat provided for in Article 9.2 and, in particular, without any warranty\nas to\ + \ its commercial value, its secured, safe, innovative or relevant\nnature.\n\nSpecifically,\ + \ the Licensor does not warrant that the Software is free\nfrom any error, that it will\ + \ operate without interruption, that it will\nbe compatible with the Licensee's own equipment\ + \ and software\nconfiguration, nor that it will meet the Licensee's requirements.\n\n9.4\ + \ The Licensor does not either expressly or tacitly warrant that the\nSoftware does not\ + \ infringe any third party intellectual property right\nrelating to a patent, software or\ + \ any other property right. Therefore,\nthe Licensor disclaims any and all liability towards\ + \ the Licensee\narising out of any or all proceedings for infringement that may be\ninstituted\ + \ in respect of the use, modification and redistribution of the\nSoftware. Nevertheless,\ + \ should such proceedings be instituted against\nthe Licensee, the Licensor shall provide\ + \ it with technical and legal\nassistance for its defense. Such technical and legal assistance\ + \ shall be\ndecided on a case-by-case basis between the relevant Licensor and the\nLicensee\ + \ pursuant to a memorandum of understanding. The Licensor\ndisclaims any and all liability\ + \ as regards the Licensee's use of the\nname of the Software. No warranty is given as regards\ + \ the existence of\nprior rights over the name of the Software or as regards the existence\n\ + of a trademark.\n\n\n Article 10 - TERMINATION\n\n10.1 In the event of a breach by the\ + \ Licensee of its obligations\nhereunder, the Licensor may automatically terminate this\ + \ Agreement\nthirty (30) days after notice has been sent to the Licensee and has\nremained\ + \ ineffective.\n\n10.2 A Licensee whose Agreement is terminated shall no longer be\nauthorized\ + \ to use, modify or distribute the Software. However, any\nlicenses that it may have granted\ + \ prior to termination of the Agreement\nshall remain valid subject to their having been\ + \ granted in compliance\nwith the terms and conditions hereof.\n\n\n Article 11 - MISCELLANEOUS\n\ + \n\n 11.1 EXCUSABLE EVENTS\n\nNeither Party shall be liable for any or all delay, or\ + \ failure to\nperform the Agreement, that may be attributable to an event of force\nmajeure,\ + \ an act of God or an outside cause, such as defective\nfunctioning or interruptions of\ + \ the electricity or telecommunications\nnetworks, network paralysis following a virus attack,\ + \ intervention by\ngovernment authorities, natural disasters, water damage, earthquakes,\n\ + fire, explosions, strikes and labor unrest, war, etc.\n\n11.2 Any failure by either Party,\ + \ on one or more occasions, to invoke\none or more of the provisions hereof, shall under\ + \ no circumstances be\ninterpreted as being a waiver by the interested Party of its right\ + \ to\ninvoke said provision(s) subsequently.\n\n11.3 The Agreement cancels and replaces\ + \ any or all previous agreements,\nwhether written or oral, between the Parties and having\ + \ the same\npurpose, and constitutes the entirety of the agreement between said\nParties\ + \ concerning said purpose. No supplement or modification to the\nterms and conditions hereof\ + \ shall be effective as between the Parties\nunless it is made in writing and signed by\ + \ their duly authorized\nrepresentatives.\n\n11.4 In the event that one or more of the provisions\ + \ hereof were to\nconflict with a current or future applicable act or legislative text,\n\ + said act or legislative text shall prevail, and the Parties shall make\nthe necessary amendments\ + \ so as to comply with said act or legislative\ntext. All other provisions shall remain\ + \ effective. Similarly, invalidity\nof a provision of the Agreement, for any reason whatsoever,\ + \ shall not\ncause the Agreement as a whole to be invalid.\n\n\n 11.5 LANGUAGE\n\n\ + The Agreement is drafted in both French and English and both versions\nare deemed authentic.\n\ + \n\n Article 12 - NEW VERSIONS OF THE AGREEMENT\n\n12.1 Any person is authorized to duplicate\ + \ and distribute copies of this\nAgreement.\n\n12.2 So as to ensure coherence, the wording\ + \ of this Agreement is\nprotected and may only be modified by the authors of the License,\ + \ who\nreserve the right to periodically publish updates or new versions of the\nAgreement,\ + \ each with a separate number. These subsequent versions may\naddress new issues encountered\ + \ by Free Software.\n\n12.3 Any Software distributed under a given version of the Agreement\ + \ may\nonly be subsequently distributed under the same version of the Agreement\nor a subsequent\ + \ version.\n\n\n Article 13 - GOVERNING LAW AND JURISDICTION\n\n13.1 The Agreement is\ + \ governed by French law. The Parties agree to\nendeavor to seek an amicable solution to\ + \ any disagreements or disputes\nthat may arise during the performance of the Agreement.\n\ + \n13.2 Failing an amicable solution within two (2) months as from their\noccurrence, and\ + \ unless emergency proceedings are necessary, the\ndisagreements or disputes shall be referred\ + \ to the Paris Courts having\njurisdiction, by the more diligent Party.\n\n\nVersion 1.0\ + \ dated 2006-09-05." json: cecill-c-en.json - yml: cecill-c-en.yml + yaml: cecill-c-en.yml html: cecill-c-en.html - text: cecill-c-en.LICENSE + license: cecill-c-en.LICENSE - license_key: cern-attribution-1995 + category: Permissive spdx_license_key: LicenseRef-scancode-cern-attribution-1995 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: This product includes computer software created and made available by CERN. This acknowledgment + shall be mentioned in full in any product which includes the CERN computer software included + herein or parts thereof. json: cern-attribution-1995.json - yml: cern-attribution-1995.yml + yaml: cern-attribution-1995.yml html: cern-attribution-1995.html - text: cern-attribution-1995.LICENSE + license: cern-attribution-1995.LICENSE - license_key: cern-ohl-1.1 + category: Permissive spdx_license_key: CERN-OHL-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + CERN OHL v1.1 + + 2011-07-08 - CERN, Geneva, Switzerland + + CERN Open Hardware Licence v1.1 + + Preamble + + Through this CERN Open Hardware Licence ("CERN OHL") version 1.1, the Organization wishes to disseminate its hardware designs (as published on http://www.ohwr.org/) as widely as possible, and generally to foster collaboration among public research hardware designers. The CERN OHL is copyright of CERN. Anyone is welcome to use the CERN OHL, in unmodified form only, for the distribution of his own Open Hardware designs. Any other right is reserved. + + 1. Definitions + + In this Licence, the following terms have the following meanings: + + "Licence" means this CERN OHL. + + "Documentation" means schematic diagrams, designs, circuit or circuit board layouts, mechanical drawings, flow charts and descriptive text, and other explanatory material that is explicitly stated as being made available under the conditions of this Licence. The Documentation may be in any medium, including but not limited to computer files and representations on paper, film, or any other media. + + "Product" means either an entire, or any part of a, device built using the Documentation or the modified Documentation. + + "Licensee" means any natural or legal person exercising rights under this Licence. + + "Licensor" means any natural or legal person that creates or modifies Documentation and subsequently communicates to the public and/ or distributes the resulting Documentation under the terms and conditions of this Licence. + + A Licensee may at the same time be a Licensor, and vice versa. + + + + 2. Applicability + + 2.1 This Licence governs the use, copying, modification, communication to the public and distribution of the Documentation, and the manufacture and distribution of Products. By exercising any right granted under this Licence, the Licensee irrevocably accepts these terms and conditions. + + 2.2 This Licence is granted by the Licensor directly to the Licensee, and shall apply worldwide and without limitation in time. The Licensee may assign his licence rights or grant sub-licences. + + 2.3 This Licence does not apply to software, firmware, or code loaded into programmable devices which may be used in conjunction with the Documentation, the modified Documentation or with Products. The use of such software, firmware, or code is subject to the applicable licence terms and conditions. + + 3. Copying, modification, communication to the public and distribution of the Documentation + + 3.1 The Licensee shall keep intact all copyright and trademarks notices and all notices that refer to this Licence and to the disclaimer of warranties that is included in the Documentation. He shall include a copy thereof in every copy of the documentation or, as the case may be, modified Documentation, that he communicates to the public or distributes. + + 3.2 The Licensee may use, copy, communicate to the public and distribute verbatim copies of the Documentation, in any medium, subject to the requirements specified in section 3.1. + + 3.3 The Licensee may modify the Documentation or any portion thereof. The Licensee may communicate to the public and distribute the modified Documentation (thereby in addition to being a Licensee also becoming a Licensor), always provided that he shall: + + a. comply with section 3.1; + + b. cause the modified Documentation to carry prominent notices stating that the Licensee has modified the Documentation, with the date and details of the modifications; + + c. license the modified Documentation under the terms and conditions of this Licence or, where applicable, a later version of this Licence as may be issued by CERN; and + + d. send a copy of the modified Documentation to all Licensors that contributed to the parts of the Documentation that were modified, as well as to any other Licensor who has requested to receive a copy of the modified Documentation and has provided a means of contact with the Documentation. + + 3.4 The Licence includes a licence to those patents or registered designs that are held by the Licensor, to the extent necessary to make use of the rights granted under this Licence. The scope of this section 3.4 shall be strictly limited to the parts of the Documentation or modified Documentation created by the Licensor. + + 4. Manufacture and distribution of Products + + 4.1 The Licensee may manufacture or distribute Products always provided that the Licensee distributes to each recipient of such Products a copy of the Documentation or modified Documentation, as applicable, and complies with section 3. + + 4.2 The Licensee is invited to inform in writing any Licensor who has indicated its wish to receive this information about the type, quantity and dates of production of Products the Licensee has (had) manufactured. + + 5. Warranty and liability + + 5.1 DISCLAIMER – The Documentation and any modified Documentation are provided "as is" and any express or implied warranties, including, but not limited to, implied warranties of merchantability, of satisfactory quality, and fitness for a particular purpose or use are disclaimed in respect of the Documentation, the modified Documentation or any Product. The Licensor makes no representation that the Documentation, modified Documentation, or any Product, does or will not infringe any patent, copyright, trade secret or other proprietary right. The entire risk as to the use, quality, and performance of a Product shall be with the Licensee and not the Licensor. This disclaimer of warranty is an essential part of this Licence and a condition for the grant of any rights granted under this Licence. The Licensee warrants that it does not act in a consumer capacity. + + 5.2 LIMITATION OF LIABILITY – The Licensor shall have no liability for direct, indirect, special, incidental, consequential, exemplary, punitive or other damages of any character including, without limitation, procurement of substitute goods or services, loss of use, data or profits, or business interruption, however caused and on any theory of contract, warranty, tort (including negligence), product liability or otherwise, arising in any way in relation to the Documentation, modified Documentation and/or the use, manufacture or distribution of a Product, even if advised of the possibility of such damages, and the Licensee shall hold the Licensor(s) free and harmless from any liability, costs, damages, fees and expenses, including claims by third parties, in relation to such use. + + 6. General + + 6.1 The rights granted under this Licence do not imply or represent any transfer or assignment of intellectual property rights to the Licensee. + + 6.2 The Licensee shall not use or make reference to any of the names, acronyms, images or logos under which the Licensor is known, save in so far as required to comply with section 3. Any such permitted use or reference shall be factual and shall in no event suggest any kind of endorsement by the Licensor or its personnel of the modified Documentation or any Product, or any kind of implication by the Licensor or its personnel in the preparation of the modified Documentation or Product. + + 6.3 CERN may publish updated versions of this Licence which retain the same general provisions as this version, but differ in detail so far this is required and reasonable. New versions will be published with a unique version number. + + 6.4 This Licence shall terminate with immediate effect, upon written notice and without involvement of a court if the Licensee fails to comply with any of its terms and conditions, or if the Licensee initiates legal action against Licensor in relation to this Licence. Section 5 shall continue to apply. + + 6.5 Except as may be otherwise agreed with the Intergovernmental Organization, any dispute with respect to this Licence involving an Intergovernmental Organization shall, by virtue of the latter's Intergovernmental status, be settled by international arbitration. The arbitration proceedings shall be held at the place where the Intergovernmental Organization has its seat. The arbitral award shall be final and binding upon the parties, who hereby expressly agree to renounce any form of appeal or revision. json: cern-ohl-1.1.json - yml: cern-ohl-1.1.yml + yaml: cern-ohl-1.1.yml html: cern-ohl-1.1.html - text: cern-ohl-1.1.LICENSE + license: cern-ohl-1.1.LICENSE - license_key: cern-ohl-1.2 + category: Permissive spdx_license_key: CERN-OHL-1.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + CERN OHL v1.2 + + 2013-09-06 - CERN, Geneva, Switzerland + + CERN Open Hardware Licence v1.2 + + Preamble + + Through this CERN Open Hardware Licence ("CERN OHL") version 1.2, CERN wishes to provide a tool to foster collaboration and sharing among hardware designers. The CERN OHL is copyright CERN. Anyone is welcome to use the CERN OHL, in unmodified form only, for the distribution of their own Open Hardware designs. Any other right is reserved. Release of hardware designs under the CERN OHL does not constitute an endorsement of the licensor or its designs nor does it imply any involvement by CERN in the development of such designs. + + 1. Definitions + + In this Licence, the following terms have the following meanings: + + "Licence" means this CERN OHL. + + "Documentation" means schematic diagrams, designs, circuit or circuit board layouts, mechanical drawings, flow charts and descriptive text, and other explanatory material that is explicitly stated as being made available under the conditions of this Licence. The Documentation may be in any medium, including but not limited to computer files and representations on paper, film, or any other media. + + "Documentation Location" means a location where the Licensor has placed Documentation, and which he believes will be publicly accessible for at least three years from the first communication to the public or distribution of Documentation. + + "Product" means either an entire, or any part of a, device built using the Documentation or the modified Documentation. + + "Licensee" means any natural or legal person exercising rights under this Licence. + + "Licensor" means any natural or legal person that creates or modifies Documentation and subsequently communicates to the public and/ or distributes the resulting Documentation under the terms and conditions of this Licence. + + A Licensee may at the same time be a Licensor, and vice versa. + + Use of the masculine gender includes the feminine and neuter genders and is employed solely to facilitate reading. + + + + 2. Applicability + + 2.1. This Licence governs the use, copying, modification, communication to the public and distribution of the Documentation, and the manufacture and distribution of Products. By exercising any right granted under this Licence, the Licensee irrevocably accepts these terms and conditions. + + 2.2. This Licence is granted by the Licensor directly to the Licensee, and shall apply worldwide and without limitation in time. The Licensee may assign his licence rights or grant sub-licences. + + 2.3. This Licence does not extend to software, firmware, or code loaded into programmable devices which may be used in conjunction with the Documentation, the modified Documentation or with Products, unless such software, firmware, or code is explicitly expressed to be subject to this Licence. The use of such software, firmware, or code is otherwise subject to the applicable licence terms and conditions. + + 3. Copying, modification, communication to the public and distribution of the Documentation + + 3.1. The Licensee shall keep intact all copyright and trademarks notices, all notices referring to Documentation Location, and all notices that refer to this Licence and to the disclaimer of warranties that are included in the Documentation. He shall include a copy thereof in every copy of the Documentation or, as the case may be, modified Documentation, that he communicates to the public or distributes. + + 3.2. The Licensee may copy, communicate to the public and distribute verbatim copies of the Documentation, in any medium, subject to the requirements specified in section 3.1. + + 3.3. The Licensee may modify the Documentation or any portion thereof provided that upon modification of the Documentation, the Licensee shall make the modified Documentation available from a Documentation Location such that it can be easily located by an original Licensor once the Licensee communicates to the public or distributes the modified Documentation under section 3.4, and, where required by section 4.1, by a recipient of a Product. However, the Licensor shall not assert his rights under the foregoing proviso unless or until a Product is distributed. + + 3.4. The Licensee may communicate to the public and distribute the modified Documentation (thereby in addition to being a Licensee also becoming a Licensor), always provided that he shall: + + a) comply with section 3.1; + + b) cause the modified Documentation to carry prominent notices stating that the Licensee has modified the Documentation, with the date and description of the modifications; + + c) cause the modified Documentation to carry a new Documentation Location notice if the original Documentation provided for one; + + d) make available the modified Documentation at the same level of abstraction as that of the Documentation, in the preferred format for making modifications to it (e.g. the native format of the CAD tool as applicable), and in the event that format is proprietary, in a format viewable with a tool licensed under an OSI-approved license if the proprietary tool can create it; and + + e) license the modified Documentation under the terms and conditions of this Licence or, where applicable, a later version of this Licence as may be issued by CERN. + + 3.5. The Licence includes a non-exclusive licence to those patents or registered designs that are held by, under the control of, or sub-licensable by the Licensor, to the extent necessary to make use of the rights granted under this Licence. The scope of this section 3.5 shall be strictly limited to the parts of the Documentation or modified Documentation created by the Licensor. + + 4. Manufacture and distribution of Products + + 4.1. The Licensee may manufacture or distribute Products always provided that, where such manufacture or distribution requires a licence under this Licence the Licensee provides to each recipient of such Products an easy means of accessing a copy of the Documentation or modified Documentation, as applicable, as set out in section 3. + + 4.2. The Licensee is invited to inform any Licensor who has indicated his wish to receive this information about the type, quantity and dates of production of Products the Licensee has (had) manufactured + + 5. Warranty and liability + + 5.1. DISCLAIMER – The Documentation and any modified Documentation are provided "as is" and any express or implied warranties, including, but not limited to, implied warranties of merchantability, of satisfactory quality, non-infringement of third party rights, and fitness for a particular purpose or use are disclaimed in respect of the Documentation, the modified Documentation or any Product. The Licensor makes no representation that the Documentation, modified Documentation, or any Product, does or will not infringe any patent, copyright, trade secret or other proprietary right. The entire risk as to the use, quality, and performance of a Product shall be with the Licensee and not the Licensor. This disclaimer of warranty is an essential part of this Licence and a condition for the grant of any rights granted under this Licence. The Licensee warrants that it does not act in a consumer capacity. + + 5.2. LIMITATION OF LIABILITY – The Licensor shall have no liability for direct, indirect, special, incidental, consequential, exemplary, punitive or other damages of any character including, without limitation, procurement of substitute goods or services, loss of use, data or profits, or business interruption, however caused and on any theory of contract, warranty, tort (including negligence), product liability or otherwise, arising in any way in relation to the Documentation, modified Documentation and/or the use, manufacture or distribution of a Product, even if advised of the possibility of such damages, and the Licensee shall hold the Licensor(s) free and harmless from any liability, costs, damages, fees and expenses, including claims by third parties, in relation to such use. + + 6. General + + 6.1. Except for the rights explicitly granted hereunder, this Licence does not imply or represent any transfer or assignment of intellectual property rights to the Licensee. + + 6.2. The Licensee shall not use or make reference to any of the names (including acronyms and abbreviations), images, or logos under which the Licensor is known, save in so far as required to comply with section 3. Any such permitted use or reference shall be factual and shall in no event suggest any kind of endorsement by the Licensor or its personnel of the modified Documentation or any Product, or any kind of implication by the Licensor or its personnel in the preparation of the modified Documentation or Product. + + 6.3. CERN may publish updated versions of this Licence which retain the same general provisions as this version, but differ in detail so far this is required and reasonable. New versions will be published with a unique version number. + + 6.4. This Licence shall terminate with immediate effect, upon written notice and without involvement of a court if the Licensee fails to comply with any of its terms and conditions, or if the Licensee initiates legal action against Licensor in relation to this Licence. Section 5 shall continue to apply. json: cern-ohl-1.2.json - yml: cern-ohl-1.2.yml + yaml: cern-ohl-1.2.yml html: cern-ohl-1.2.html - text: cern-ohl-1.2.LICENSE + license: cern-ohl-1.2.LICENSE - license_key: cern-ohl-p-2.0 + category: Permissive spdx_license_key: CERN-OHL-P-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + CERN Open Hardware Licence Version 2 - Permissive + + + Preamble + + CERN has developed this licence to promote collaboration among + hardware designers and to provide a legal tool which supports the + freedom to use, study, modify, share and distribute hardware designs + and products based on those designs. Version 2 of the CERN Open + Hardware Licence comes in three variants: this licence, CERN-OHL-P + (permissive); and two reciprocal licences: CERN- OHL-W (weakly + reciprocal) and CERN-OHL-S (strongly reciprocal). + + The CERN-OHL-P is copyright CERN 2020. Anyone is welcome to use it, in + unmodified form only. + + Use of this Licence does not imply any endorsement by CERN of any + Licensor or their designs nor does it imply any involvement by CERN in + their development. + + + 1 Definitions + + 1.1 'Licence' means this CERN-OHL-P. + + 1.2 'Source' means information such as design materials or digital + code which can be applied to Make or test a Product or to + prepare a Product for use, Conveyance or sale, regardless of its + medium or how it is expressed. It may include Notices. + + 1.3 'Covered Source' means Source that is explicitly made available + under this Licence. + + 1.4 'Product' means any device, component, work or physical object, + whether in finished or intermediate form, arising from the use, + application or processing of Covered Source. + + 1.5 'Make' means to create or configure something, whether by + manufacture, assembly, compiling, loading or applying Covered + Source or another Product or otherwise. + + 1.6 'Notice' means copyright, acknowledgement and trademark notices, + references to the location of any Notices, modification notices + (subsection 3.3(b)) and all notices that refer to this Licence + and to the disclaimer of warranties that are included in the + Covered Source. + + 1.7 'Licensee' or 'You' means any person exercising rights under + this Licence. + + 1.8 'Licensor' means a person who creates Source or modifies Covered + Source and subsequently Conveys the resulting Covered Source + under the terms and conditions of this Licence. A person may be + a Licensee and a Licensor at the same time. + + 1.9 'Convey' means to communicate to the public or distribute. + + + 2 Applicability + + 2.1 This Licence governs the use, copying, modification, Conveying + of Covered Source and Products, and the Making of Products. By + exercising any right granted under this Licence, You irrevocably + accept these terms and conditions. + + 2.2 This Licence is granted by the Licensor directly to You, and + shall apply worldwide and without limitation in time. + + 2.3 You shall not attempt to restrict by contract or otherwise the + rights granted under this Licence to other Licensees. + + 2.4 This Licence is not intended to restrict fair use, fair dealing, + or any other similar right. + + + 3 Copying, modifying and Conveying Covered Source + + 3.1 You may copy and Convey verbatim copies of Covered Source, in + any medium, provided You retain all Notices. + + 3.2 You may modify Covered Source, other than Notices. + + You may only delete Notices if they are no longer applicable to + the corresponding Covered Source as modified by You and You may + add additional Notices applicable to Your modifications. + + 3.3 You may Convey modified Covered Source (with the effect that You + shall also become a Licensor) provided that You: + + a) retain Notices as required in subsection 3.2; and + + b) add a Notice to the modified Covered Source stating that You + have modified it, with the date and brief description of how + You have modified it. + + 3.4 You may Convey Covered Source or modified Covered Source under + licence terms which differ from the terms of this Licence + provided that: + + a) You comply at all times with subsection 3.3; and + + b) You provide a copy of this Licence to anyone to whom You + Convey Covered Source or modified Covered Source. + + + 4 Making and Conveying Products + + You may Make Products, and/or Convey them, provided that You ensure + that the recipient of the Product has access to any Notices applicable + to the Product. + + + 5 DISCLAIMER AND LIABILITY + + 5.1 DISCLAIMER OF WARRANTY -- The Covered Source and any Products + are provided 'as is' and any express or implied warranties, + including, but not limited to, implied warranties of + merchantability, of satisfactory quality, non-infringement of + third party rights, and fitness for a particular purpose or use + are disclaimed in respect of any Source or Product to the + maximum extent permitted by law. The Licensor makes no + representation that any Source or Product does not or will not + infringe any patent, copyright, trade secret or other + proprietary right. The entire risk as to the use, quality, and + performance of any Source or Product shall be with You and not + the Licensor. This disclaimer of warranty is an essential part + of this Licence and a condition for the grant of any rights + granted under this Licence. + + 5.2 EXCLUSION AND LIMITATION OF LIABILITY -- The Licensor shall, to + the maximum extent permitted by law, have no liability for + direct, indirect, special, incidental, consequential, exemplary, + punitive or other damages of any character including, without + limitation, procurement of substitute goods or services, loss of + use, data or profits, or business interruption, however caused + and on any theory of contract, warranty, tort (including + negligence), product liability or otherwise, arising in any way + in relation to the Covered Source, modified Covered Source + and/or the Making or Conveyance of a Product, even if advised of + the possibility of such damages, and You shall hold the + Licensor(s) free and harmless from any liability, costs, + damages, fees and expenses, including claims by third parties, + in relation to such use. + + + 6 Patents + + 6.1 Subject to the terms and conditions of this Licence, each + Licensor hereby grants to You a perpetual, worldwide, + non-exclusive, no-charge, royalty-free, irrevocable (except as + stated in this section 6, or where terminated by the Licensor + for cause) patent license to Make, have Made, use, offer to + sell, sell, import, and otherwise transfer the Covered Source + and Products, where such licence applies only to those patent + claims licensable by such Licensor that are necessarily + infringed by exercising rights under the Covered Source as + Conveyed by that Licensor. + + 6.2 If You institute patent litigation against any entity (including + a cross-claim or counterclaim in a lawsuit) alleging that the + Covered Source or a Product constitutes direct or contributory + patent infringement, or You seek any declaration that a patent + licensed to You under this Licence is invalid or unenforceable + then any rights granted to You under this Licence shall + terminate as of the date such process is initiated. + + + 7 General + + 7.1 If any provisions of this Licence are or subsequently become + invalid or unenforceable for any reason, the remaining + provisions shall remain effective. + + 7.2 You shall not use any of the name (including acronyms and + abbreviations), image, or logo by which the Licensor or CERN is + known, except where needed to comply with section 3, or where + the use is otherwise allowed by law. Any such permitted use + shall be factual and shall not be made so as to suggest any kind + of endorsement or implication of involvement by the Licensor or + its personnel. + + 7.3 CERN may publish updated versions and variants of this Licence + which it considers to be in the spirit of this version, but may + differ in detail to address new problems or concerns. New + versions will be published with a unique version number and a + variant identifier specifying the variant. If the Licensor has + specified that a given variant applies to the Covered Source + without specifying a version, You may treat that Covered Source + as being released under any version of the CERN-OHL with that + variant. If no variant is specified, the Covered Source shall be + treated as being released under CERN-OHL-S. The Licensor may + also specify that the Covered Source is subject to a specific + version of the CERN-OHL or any later version in which case You + may apply this or any later version of CERN-OHL with the same + variant identifier published by CERN. + + 7.4 This Licence shall not be enforceable except by a Licensor + acting as such, and third party beneficiary rights are + specifically excluded. json: cern-ohl-p-2.0.json - yml: cern-ohl-p-2.0.yml + yaml: cern-ohl-p-2.0.yml html: cern-ohl-p-2.0.html - text: cern-ohl-p-2.0.LICENSE + license: cern-ohl-p-2.0.LICENSE - license_key: cern-ohl-s-2.0 + category: Copyleft spdx_license_key: CERN-OHL-S-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + CERN Open Hardware Licence Version 2 - Strongly Reciprocal + + + Preamble + + CERN has developed this licence to promote collaboration among + hardware designers and to provide a legal tool which supports the + freedom to use, study, modify, share and distribute hardware designs + and products based on those designs. Version 2 of the CERN Open + Hardware Licence comes in three variants: CERN-OHL-P (permissive); and + two reciprocal licences: CERN-OHL-W (weakly reciprocal) and this + licence, CERN-OHL-S (strongly reciprocal). + + The CERN-OHL-S is copyright CERN 2020. Anyone is welcome to use it, in + unmodified form only. + + Use of this Licence does not imply any endorsement by CERN of any + Licensor or their designs nor does it imply any involvement by CERN in + their development. + + + 1 Definitions + + 1.1 'Licence' means this CERN-OHL-S. + + 1.2 'Compatible Licence' means + + a) any earlier version of the CERN Open Hardware licence, or + + b) any version of the CERN-OHL-S, or + + c) any licence which permits You to treat the Source to which + it applies as licensed under CERN-OHL-S provided that on + Conveyance of any such Source, or any associated Product You + treat the Source in question as being licensed under + CERN-OHL-S. + + 1.3 'Source' means information such as design materials or digital + code which can be applied to Make or test a Product or to + prepare a Product for use, Conveyance or sale, regardless of its + medium or how it is expressed. It may include Notices. + + 1.4 'Covered Source' means Source that is explicitly made available + under this Licence. + + 1.5 'Product' means any device, component, work or physical object, + whether in finished or intermediate form, arising from the use, + application or processing of Covered Source. + + 1.6 'Make' means to create or configure something, whether by + manufacture, assembly, compiling, loading or applying Covered + Source or another Product or otherwise. + + 1.7 'Available Component' means any part, sub-assembly, library or + code which: + + a) is licensed to You as Complete Source under a Compatible + Licence; or + + b) is available, at the time a Product or the Source containing + it is first Conveyed, to You and any other prospective + licensees + + i) as a physical part with sufficient rights and + information (including any configuration and + programming files and information about its + characteristics and interfaces) to enable it either to + be Made itself, or to be sourced and used to Make the + Product; or + ii) as part of the normal distribution of a tool used to + design or Make the Product. + + 1.8 'Complete Source' means the set of all Source necessary to Make + a Product, in the preferred form for making modifications, + including necessary installation and interfacing information + both for the Product, and for any included Available Components. + If the format is proprietary, it must also be made available in + a format (if the proprietary tool can create it) which is + viewable with a tool available to potential licensees and + licensed under a licence approved by the Free Software + Foundation or the Open Source Initiative. Complete Source need + not include the Source of any Available Component, provided that + You include in the Complete Source sufficient information to + enable a recipient to Make or source and use the Available + Component to Make the Product. + + 1.9 'Source Location' means a location where a Licensor has placed + Covered Source, and which that Licensor reasonably believes will + remain easily accessible for at least three years for anyone to + obtain a digital copy. + + 1.10 'Notice' means copyright, acknowledgement and trademark notices, + Source Location references, modification notices (subsection + 3.3(b)) and all notices that refer to this Licence and to the + disclaimer of warranties that are included in the Covered + Source. + + 1.11 'Licensee' or 'You' means any person exercising rights under + this Licence. + + 1.12 'Licensor' means a natural or legal person who creates or + modifies Covered Source. A person may be a Licensee and a + Licensor at the same time. + + 1.13 'Convey' means to communicate to the public or distribute. + + + 2 Applicability + + 2.1 This Licence governs the use, copying, modification, Conveying + of Covered Source and Products, and the Making of Products. By + exercising any right granted under this Licence, You irrevocably + accept these terms and conditions. + + 2.2 This Licence is granted by the Licensor directly to You, and + shall apply worldwide and without limitation in time. + + 2.3 You shall not attempt to restrict by contract or otherwise the + rights granted under this Licence to other Licensees. + + 2.4 This Licence is not intended to restrict fair use, fair dealing, + or any other similar right. + + + 3 Copying, modifying and Conveying Covered Source + + 3.1 You may copy and Convey verbatim copies of Covered Source, in + any medium, provided You retain all Notices. + + 3.2 You may modify Covered Source, other than Notices, provided that + You irrevocably undertake to make that modified Covered Source + available from a Source Location should You Convey a Product in + circumstances where the recipient does not otherwise receive a + copy of the modified Covered Source. In each case subsection 3.3 + shall apply. + + You may only delete Notices if they are no longer applicable to + the corresponding Covered Source as modified by You and You may + add additional Notices applicable to Your modifications. + Including Covered Source in a larger work is modifying the + Covered Source, and the larger work becomes modified Covered + Source. + + 3.3 You may Convey modified Covered Source (with the effect that You + shall also become a Licensor) provided that You: + + a) retain Notices as required in subsection 3.2; + + b) add a Notice to the modified Covered Source stating that You + have modified it, with the date and brief description of how + You have modified it; + + c) add a Source Location Notice for the modified Covered Source + if You Convey in circumstances where the recipient does not + otherwise receive a copy of the modified Covered Source; and + + d) license the modified Covered Source under the terms and + conditions of this Licence (or, as set out in subsection + 8.3, a later version, if permitted by the licence of the + original Covered Source). Such modified Covered Source must + be licensed as a whole, but excluding Available Components + contained in it, which remain licensed under their own + applicable licences. + + + 4 Making and Conveying Products + + You may Make Products, and/or Convey them, provided that You either + provide each recipient with a copy of the Complete Source or ensure + that each recipient is notified of the Source Location of the Complete + Source. That Complete Source is Covered Source, and You must + accordingly satisfy Your obligations set out in subsection 3.3. If + specified in a Notice, the Product must visibly and securely display + the Source Location on it or its packaging or documentation in the + manner specified in that Notice. + + + 5 Research and Development + + You may Convey Covered Source, modified Covered Source or Products to + a legal entity carrying out development, testing or quality assurance + work on Your behalf provided that the work is performed on terms which + prevent the entity from both using the Source or Products for its own + internal purposes and Conveying the Source or Products or any + modifications to them to any person other than You. Any modifications + made by the entity shall be deemed to be made by You pursuant to + subsection 3.2. + + + 6 DISCLAIMER AND LIABILITY + + 6.1 DISCLAIMER OF WARRANTY -- The Covered Source and any Products + are provided 'as is' and any express or implied warranties, + including, but not limited to, implied warranties of + merchantability, of satisfactory quality, non-infringement of + third party rights, and fitness for a particular purpose or use + are disclaimed in respect of any Source or Product to the + maximum extent permitted by law. The Licensor makes no + representation that any Source or Product does not or will not + infringe any patent, copyright, trade secret or other + proprietary right. The entire risk as to the use, quality, and + performance of any Source or Product shall be with You and not + the Licensor. This disclaimer of warranty is an essential part + of this Licence and a condition for the grant of any rights + granted under this Licence. + + 6.2 EXCLUSION AND LIMITATION OF LIABILITY -- The Licensor shall, to + the maximum extent permitted by law, have no liability for + direct, indirect, special, incidental, consequential, exemplary, + punitive or other damages of any character including, without + limitation, procurement of substitute goods or services, loss of + use, data or profits, or business interruption, however caused + and on any theory of contract, warranty, tort (including + negligence), product liability or otherwise, arising in any way + in relation to the Covered Source, modified Covered Source + and/or the Making or Conveyance of a Product, even if advised of + the possibility of such damages, and You shall hold the + Licensor(s) free and harmless from any liability, costs, + damages, fees and expenses, including claims by third parties, + in relation to such use. + + + 7 Patents + + 7.1 Subject to the terms and conditions of this Licence, each + Licensor hereby grants to You a perpetual, worldwide, + non-exclusive, no-charge, royalty-free, irrevocable (except as + stated in subsections 7.2 and 8.4) patent license to Make, have + Made, use, offer to sell, sell, import, and otherwise transfer + the Covered Source and Products, where such licence applies only + to those patent claims licensable by such Licensor that are + necessarily infringed by exercising rights under the Covered + Source as Conveyed by that Licensor. + + 7.2 If You institute patent litigation against any entity (including + a cross-claim or counterclaim in a lawsuit) alleging that the + Covered Source or a Product constitutes direct or contributory + patent infringement, or You seek any declaration that a patent + licensed to You under this Licence is invalid or unenforceable + then any rights granted to You under this Licence shall + terminate as of the date such process is initiated. + + + 8 General + + 8.1 If any provisions of this Licence are or subsequently become + invalid or unenforceable for any reason, the remaining + provisions shall remain effective. + + 8.2 You shall not use any of the name (including acronyms and + abbreviations), image, or logo by which the Licensor or CERN is + known, except where needed to comply with section 3, or where + the use is otherwise allowed by law. Any such permitted use + shall be factual and shall not be made so as to suggest any kind + of endorsement or implication of involvement by the Licensor or + its personnel. + + 8.3 CERN may publish updated versions and variants of this Licence + which it considers to be in the spirit of this version, but may + differ in detail to address new problems or concerns. New + versions will be published with a unique version number and a + variant identifier specifying the variant. If the Licensor has + specified that a given variant applies to the Covered Source + without specifying a version, You may treat that Covered Source + as being released under any version of the CERN-OHL with that + variant. If no variant is specified, the Covered Source shall be + treated as being released under CERN-OHL-S. The Licensor may + also specify that the Covered Source is subject to a specific + version of the CERN-OHL or any later version in which case You + may apply this or any later version of CERN-OHL with the same + variant identifier published by CERN. + + 8.4 This Licence shall terminate with immediate effect if You fail + to comply with any of its terms and conditions. + + 8.5 However, if You cease all breaches of this Licence, then Your + Licence from any Licensor is reinstated unless such Licensor has + terminated this Licence by giving You, while You remain in + breach, a notice specifying the breach and requiring You to cure + it within 30 days, and You have failed to come into compliance + in all material respects by the end of the 30 day period. Should + You repeat the breach after receipt of a cure notice and + subsequent reinstatement, this Licence will terminate + immediately and permanently. Section 6 shall continue to apply + after any termination. + + 8.6 This Licence shall not be enforceable except by a Licensor + acting as such, and third party beneficiary rights are + specifically excluded. json: cern-ohl-s-2.0.json - yml: cern-ohl-s-2.0.yml + yaml: cern-ohl-s-2.0.yml html: cern-ohl-s-2.0.html - text: cern-ohl-s-2.0.LICENSE + license: cern-ohl-s-2.0.LICENSE - license_key: cern-ohl-w-2.0 + category: Copyleft Limited spdx_license_key: CERN-OHL-W-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + CERN Open Hardware Licence Version 2 - Weakly Reciprocal + + + Preamble + + CERN has developed this licence to promote collaboration among + hardware designers and to provide a legal tool which supports the + freedom to use, study, modify, share and distribute hardware designs + and products based on those designs. Version 2 of the CERN Open + Hardware Licence comes in three variants: CERN-OHL-P (permissive); and + two reciprocal licences: this licence, CERN- OHL-W (weakly reciprocal) + and CERN-OHL-S (strongly reciprocal). + + The CERN-OHL-W is copyright CERN 2020. Anyone is welcome to use it, in + unmodified form only. + + Use of this Licence does not imply any endorsement by CERN of any + Licensor or their designs nor does it imply any involvement by CERN in + their development. + + + 1 Definitions + + 1.1 'Licence' means this CERN-OHL-W. + + 1.2 'Compatible Licence' means + + a) any earlier version of the CERN Open Hardware licence, or + + b) any version of the CERN-OHL-S or the CERN-OHL-W, or + + c) any licence which permits You to treat the Source to which + it applies as licensed under CERN-OHL-S or CERN-OHL-W + provided that on Conveyance of any such Source, or any + associated Product You treat the Source in question as being + licensed under CERN-OHL-S or CERN-OHL-W as appropriate. + + 1.3 'Source' means information such as design materials or digital + code which can be applied to Make or test a Product or to + prepare a Product for use, Conveyance or sale, regardless of its + medium or how it is expressed. It may include Notices. + + 1.4 'Covered Source' means Source that is explicitly made available + under this Licence. + + 1.5 'Product' means any device, component, work or physical object, + whether in finished or intermediate form, arising from the use, + application or processing of Covered Source. + + 1.6 'Make' means to create or configure something, whether by + manufacture, assembly, compiling, loading or applying Covered + Source or another Product or otherwise. + + 1.7 'Available Component' means any part, sub-assembly, library or + code which: + + a) is licensed to You as Complete Source under a Compatible + Licence; or + + b) is available, at the time a Product or the Source containing + it is first Conveyed, to You and any other prospective + licensees + + i) with sufficient rights and information (including any + configuration and programming files and information + about its characteristics and interfaces) to enable it + either to be Made itself, or to be sourced and used to + Make the Product; or + ii) as part of the normal distribution of a tool used to + design or Make the Product. + + 1.8 'External Material' means anything (including Source) which: + + a) is only combined with Covered Source in such a way that it + interfaces with the Covered Source using a documented + interface which is described in the Covered Source; and + + b) is not a derivative of or contains Covered Source, or, if it + is, it is solely to the extent necessary to facilitate such + interfacing. + + 1.9 'Complete Source' means the set of all Source necessary to Make + a Product, in the preferred form for making modifications, + including necessary installation and interfacing information + both for the Product, and for any included Available Components. + If the format is proprietary, it must also be made available in + a format (if the proprietary tool can create it) which is + viewable with a tool available to potential licensees and + licensed under a licence approved by the Free Software + Foundation or the Open Source Initiative. Complete Source need + not include the Source of any Available Component, provided that + You include in the Complete Source sufficient information to + enable a recipient to Make or source and use the Available + Component to Make the Product. + + 1.10 'Source Location' means a location where a Licensor has placed + Covered Source, and which that Licensor reasonably believes will + remain easily accessible for at least three years for anyone to + obtain a digital copy. + + 1.11 'Notice' means copyright, acknowledgement and trademark notices, + Source Location references, modification notices (subsection + 3.3(b)) and all notices that refer to this Licence and to the + disclaimer of warranties that are included in the Covered + Source. + + 1.12 'Licensee' or 'You' means any person exercising rights under + this Licence. + + 1.13 'Licensor' means a natural or legal person who creates or + modifies Covered Source. A person may be a Licensee and a + Licensor at the same time. + + 1.14 'Convey' means to communicate to the public or distribute. + + + 2 Applicability + + 2.1 This Licence governs the use, copying, modification, Conveying + of Covered Source and Products, and the Making of Products. By + exercising any right granted under this Licence, You irrevocably + accept these terms and conditions. + + 2.2 This Licence is granted by the Licensor directly to You, and + shall apply worldwide and without limitation in time. + + 2.3 You shall not attempt to restrict by contract or otherwise the + rights granted under this Licence to other Licensees. + + 2.4 This Licence is not intended to restrict fair use, fair dealing, + or any other similar right. + + + 3 Copying, modifying and Conveying Covered Source + + 3.1 You may copy and Convey verbatim copies of Covered Source, in + any medium, provided You retain all Notices. + + 3.2 You may modify Covered Source, other than Notices, provided that + You irrevocably undertake to make that modified Covered Source + available from a Source Location should You Convey a Product in + circumstances where the recipient does not otherwise receive a + copy of the modified Covered Source. In each case subsection 3.3 + shall apply. + + You may only delete Notices if they are no longer applicable to + the corresponding Covered Source as modified by You and You may + add additional Notices applicable to Your modifications. + + 3.3 You may Convey modified Covered Source (with the effect that You + shall also become a Licensor) provided that You: + + a) retain Notices as required in subsection 3.2; + + b) add a Notice to the modified Covered Source stating that You + have modified it, with the date and brief description of how + You have modified it; + + c) add a Source Location Notice for the modified Covered Source + if You Convey in circumstances where the recipient does not + otherwise receive a copy of the modified Covered Source; and + + d) license the modified Covered Source under the terms and + conditions of this Licence (or, as set out in subsection + 8.3, a later version, if permitted by the licence of the + original Covered Source). Such modified Covered Source must + be licensed as a whole, but excluding Available Components + contained in it or External Material to which it is + interfaced, which remain licensed under their own applicable + licences. + + + 4 Making and Conveying Products + + 4.1 You may Make Products, and/or Convey them, provided that You + either provide each recipient with a copy of the Complete Source + or ensure that each recipient is notified of the Source Location + of the Complete Source. That Complete Source includes Covered + Source and You must accordingly satisfy Your obligations set out + in subsection 3.3. If specified in a Notice, the Product must + visibly and securely display the Source Location on it or its + packaging or documentation in the manner specified in that + Notice. + + 4.2 Where You Convey a Product which incorporates External Material, + the Complete Source for that Product which You are required to + provide under subsection 4.1 need not include any Source for the + External Material. + + 4.3 You may license Products under terms of Your choice, provided + that such terms do not restrict or attempt to restrict any + recipients' rights under this Licence to the Covered Source. + + + 5 Research and Development + + You may Convey Covered Source, modified Covered Source or Products to + a legal entity carrying out development, testing or quality assurance + work on Your behalf provided that the work is performed on terms which + prevent the entity from both using the Source or Products for its own + internal purposes and Conveying the Source or Products or any + modifications to them to any person other than You. Any modifications + made by the entity shall be deemed to be made by You pursuant to + subsection 3.2. + + + 6 DISCLAIMER AND LIABILITY + + 6.1 DISCLAIMER OF WARRANTY -- The Covered Source and any Products + are provided 'as is' and any express or implied warranties, + including, but not limited to, implied warranties of + merchantability, of satisfactory quality, non-infringement of + third party rights, and fitness for a particular purpose or use + are disclaimed in respect of any Source or Product to the + maximum extent permitted by law. The Licensor makes no + representation that any Source or Product does not or will not + infringe any patent, copyright, trade secret or other + proprietary right. The entire risk as to the use, quality, and + performance of any Source or Product shall be with You and not + the Licensor. This disclaimer of warranty is an essential part + of this Licence and a condition for the grant of any rights + granted under this Licence. + + 6.2 EXCLUSION AND LIMITATION OF LIABILITY -- The Licensor shall, to + the maximum extent permitted by law, have no liability for + direct, indirect, special, incidental, consequential, exemplary, + punitive or other damages of any character including, without + limitation, procurement of substitute goods or services, loss of + use, data or profits, or business interruption, however caused + and on any theory of contract, warranty, tort (including + negligence), product liability or otherwise, arising in any way + in relation to the Covered Source, modified Covered Source + and/or the Making or Conveyance of a Product, even if advised of + the possibility of such damages, and You shall hold the + Licensor(s) free and harmless from any liability, costs, + damages, fees and expenses, including claims by third parties, + in relation to such use. + + + 7 Patents + + 7.1 Subject to the terms and conditions of this Licence, each + Licensor hereby grants to You a perpetual, worldwide, + non-exclusive, no-charge, royalty-free, irrevocable (except as + stated in subsections 7.2 and 8.4) patent license to Make, have + Made, use, offer to sell, sell, import, and otherwise transfer + the Covered Source and Products, where such licence applies only + to those patent claims licensable by such Licensor that are + necessarily infringed by exercising rights under the Covered + Source as Conveyed by that Licensor. + + 7.2 If You institute patent litigation against any entity (including + a cross-claim or counterclaim in a lawsuit) alleging that the + Covered Source or a Product constitutes direct or contributory + patent infringement, or You seek any declaration that a patent + licensed to You under this Licence is invalid or unenforceable + then any rights granted to You under this Licence shall + terminate as of the date such process is initiated. + + + 8 General + + 8.1 If any provisions of this Licence are or subsequently become + invalid or unenforceable for any reason, the remaining + provisions shall remain effective. + + 8.2 You shall not use any of the name (including acronyms and + abbreviations), image, or logo by which the Licensor or CERN is + known, except where needed to comply with section 3, or where + the use is otherwise allowed by law. Any such permitted use + shall be factual and shall not be made so as to suggest any kind + of endorsement or implication of involvement by the Licensor or + its personnel. + + 8.3 CERN may publish updated versions and variants of this Licence + which it considers to be in the spirit of this version, but may + differ in detail to address new problems or concerns. New + versions will be published with a unique version number and a + variant identifier specifying the variant. If the Licensor has + specified that a given variant applies to the Covered Source + without specifying a version, You may treat that Covered Source + as being released under any version of the CERN-OHL with that + variant. If no variant is specified, the Covered Source shall be + treated as being released under CERN-OHL-S. The Licensor may + also specify that the Covered Source is subject to a specific + version of the CERN-OHL or any later version in which case You + may apply this or any later version of CERN-OHL with the same + variant identifier published by CERN. + + You may treat Covered Source licensed under CERN-OHL-W as + licensed under CERN-OHL-S if and only if all Available + Components referenced in the Covered Source comply with the + corresponding definition of Available Component for CERN-OHL-S. + + 8.4 This Licence shall terminate with immediate effect if You fail + to comply with any of its terms and conditions. + + 8.5 However, if You cease all breaches of this Licence, then Your + Licence from any Licensor is reinstated unless such Licensor has + terminated this Licence by giving You, while You remain in + breach, a notice specifying the breach and requiring You to cure + it within 30 days, and You have failed to come into compliance + in all material respects by the end of the 30 day period. Should + You repeat the breach after receipt of a cure notice and + subsequent reinstatement, this Licence will terminate + immediately and permanently. Section 6 shall continue to apply + after any termination. + + 8.6 This Licence shall not be enforceable except by a Licensor + acting as such, and third party beneficiary rights are + specifically excluded. json: cern-ohl-w-2.0.json - yml: cern-ohl-w-2.0.yml + yaml: cern-ohl-w-2.0.yml html: cern-ohl-w-2.0.html - text: cern-ohl-w-2.0.LICENSE + license: cern-ohl-w-2.0.LICENSE - license_key: cgic + category: Permissive spdx_license_key: LicenseRef-scancode-cgic other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "CGIC License Terms \n------------------\nBasic License \n-------------\nCGIC, copyright\ + \ 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 by Thomas Boutell and Boutell.Com,\ + \ Inc.. \n\nPermission is granted to use CGIC in any application, commercial or\nnoncommercial,\ + \ at no cost. HOWEVER, this copyright paragraph must appear on a\n\"credits\" page accessible\ + \ in the public online and offline documentation of the\nprogram. Modified versions of the\ + \ CGIC library should not be distributed without\nthe attachment of a clear statement regarding\ + \ the author of the modifications,\nand this notice may in no case be removed. Modifications\ + \ may also be submitted\nto the author for inclusion in the main CGIC distribution.\n\n\ + IF YOU WOULD PREFER NOT TO ATTACH THE ABOVE NOTICE to the public documentation\nof your\ + \ application, consult the information which follows regarding the\navailability of a nonexclusive\ + \ commercial license for CGIC.\n\nCommercial License \n------------------\nThe price of\ + \ a nonexclusive commercial license is $200 U.S. To purchase the license:\n1. Print and\ + \ sign two copies of the document below.\n\n2. Send both copies, along with Visa, Mastercard,\ + \ Discover, or Amex card number,\ncardholder's name, and expiration date OR a check for\ + \ $200 in U.S. funds drawn\non a U.S. bank, to:\n\nBoutell.Com, Inc. PO Box 63767 Philadelphia,\ + \ PA 19147 USA\nCredit card orders may alternatively be faxed to:\nBoutell.Com, Inc. (208)\ + \ 445-0327\nBE SURE TO INCLUDE AN EMAIL ADDRESS, as well as a postal address and phone number.\n\ + 3. We will return one signed copy to you promptly.\nYou will also receive swift notification\ + \ of new versions of CGIC, in addition to ongoing email support.\n\n*** CGIC Nonexclusive\ + \ Commercial License\n\nThe licensee named below is granted the right to utilize CGIC, major\ + \ version 1\nor 2, any minor version thereof, in CGI applications without the need for a\n\ + credit notice of any kind. CGI applications developed by the holder of this\nlicense may\ + \ be distributed freely in source code or binary form without\nadditional fees or royalties.\ + \ This license does not grant the right to use CGIC\nto create a development tool which\ + \ passes on substantially all of the\ncapabilities of the CGIC library to the user of the\ + \ tool, unless that tool is to\nbe used internally by the license holder only in order to\ + \ develop CGI\napplications. This license may not be resold, but applications developed\ + \ in\naccordance with the terms of the license may be distributed freely subject to\nthe\ + \ limitations described above.\n\nFuture minor (2.x) versions of CGIC will be covered by\ + \ this license free of\ncharge. If significant defects of workmanship are discovered in\ + \ version 2.x,\nminor releases to correct them will be made available before or at the same\ + \ time\nthat those defects are addressed in any future major version. Future \"major\"\n\ + (3.x) versions will be available to licensees at an upgrade price of $50.\n\nIf, for any\ + \ reason, any portion of this license is found to be invalid, that\nportion of the license\ + \ only is invalidated and the remainder of the agreement\nremains in effect.\n\nIf this\ + \ license has not been signed by Thomas Boutell or M. L. Grant on behalf\nof Boutell. Com,\ + \ Inc., it is invalid.\n\nLicensee's Name: \nSigned for Licensee: \nComplete Mailing Address:\n\ + Phone Number: \nEmail Address: \nSigned for Boutell.Com, Inc.: \nDate:" json: cgic.json - yml: cgic.yml + yaml: cgic.yml html: cgic.html - text: cgic.LICENSE + license: cgic.LICENSE - license_key: chartdirector-6.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-chartdirector-6.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + ChartDirector 6.0 (ASP/COM/VB Edition) + License Agreement + You should carefully read the following terms and conditions before using the ChartDirector software. Your use of the ChartDirector software indicates your acceptance of this license agreement. Do not use the ChartDirector software if you do not agree with this license agreement. + + Disclaimer of Warranty + The ChartDirector software and the accompanying files are distributed and licensed "as is". Advanced Software Engineering Limited disclaims all warranties, either express or implied, including, but not limited to implied warranties of merchantability and fitness for a particular purpose. Should the ChartDirector software prove defective, the licensee assumes the risk of paying the entire cost of all necessary servicing, repair, or correction and any incidental or consequential damages. In no event will Advanced Software Engineering Limited be liable for any damages whatsoever (including without limitation damages for loss of business profits, business interruption, loss of business information and the like) arising out of the use or the inability to use the ChartDirector software even if Advanced Software Engineering Limited has been advised of the possibility of such damages. + + Intellectual Property + The ChartDirector software is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The ChartDirector software is licensed, not sold. Title to the ChartDirector software shall at all times remain with Advanced Software Engineering Limited. + + You agree not to modify, decompile, reverse engineer, disassemble or otherwise attempt to derive source code from the ChartDirector software. + + Trial Version + The trial version of the ChartDirector software will produce yellow banner messages at the bottom of the chart images generated by it. You agree to not remove, obscure, or alter this message. + + Subjected to the conditions in this license agreement: + + You may use the unmodified trial version of the ChartDirector software without charge. + + You may redistribute the unmodified trial version of the ChartDirector software, provided you do not charge for it. + + You may embed the unmodified trial version of the ChartDirector software (or part of it), in a product and distribute the product, provided you do not charge for the product. + + If you do not want the yellow banner messages appearing in the charts, or you want to embed the ChartDirector software (or part of it) in a product that is not free, you must purchase a commercial license to use the ChartDirector software from Advanced Software Engineering Limited. Please refer to Advanced Software Engineering's web site at www.advsofteng.com for details. + + Credits + The ChartDirector software is developed using code from the Independent JPEG Group and the FreeType team. Any software that is derived from the ChartDirector software must include the following text in its documentation. This applies to both the trial version of the ChartDirector software and to the commercial version of the ChartDirector software. + + This software is based in part on the work of the Independent JPEG Group + + This software is based in part of the work of the FreeType Team + + © 2015 Advanced Software Engineering Limited. All rights reserved. json: chartdirector-6.0.json - yml: chartdirector-6.0.yml + yaml: chartdirector-6.0.yml html: chartdirector-6.0.html - text: chartdirector-6.0.LICENSE + license: chartdirector-6.0.LICENSE +- license_key: checkmk + category: Permissive + spdx_license_key: checkmk + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + Redistribution of this program in any form, with or without + modifications, is permitted, provided that the above copyright is + retained in distributions of this program in source form. + + (This is a free, non-copyleft license compatible with pretty much any + other free or proprietary license, including the GPL. It's essentially + a scaled-down version of the "modified" BSD license.) + json: checkmk.json + yaml: checkmk.yml + html: checkmk.html + license: checkmk.LICENSE - license_key: chelsio-linux-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-chelsio-linux-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Chelsio Communication Terminator 4/5 ethernet controller firmware + + Redistribution and use in binary form, without modification, are permitted provided + that the following conditions are met: + + 1. Redistribution 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. + 2. The name of Chelsio Communications may not be used to endorse or promote products + derived from this software without specific prior written permission. + 3. Reverse engineering, decompilation, or disassembly of this firmware is not + permitted. + + 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. json: chelsio-linux-firmware.json - yml: chelsio-linux-firmware.yml + yaml: chelsio-linux-firmware.yml html: chelsio-linux-firmware.html - text: chelsio-linux-firmware.LICENSE + license: chelsio-linux-firmware.LICENSE - license_key: chicken-dl-0.2 + category: Permissive spdx_license_key: LicenseRef-scancode-chicken-dl-0.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Chicken Dance License v0.2\nhttp://supertunaman.com/cdl/\n\nRedistribution and use\ + \ in source and binary forms, with \nor without modification, are permitted provided that\ + \ the \nfollowing conditions are met:\n\n 1. Redistributions of source code must retain\ + \ the \n above copyright notice, this list of conditions and \n the following\ + \ disclaimer.\n 2. Redistributions in binary form must reproduce the \n above\ + \ copyright notice, this list of conditions and \n the following disclaimer in the\ + \ documentation and/or \n other materials provided with the distribution.\n 3.\ + \ Neither the name of the nor the names \n of its contributors may\ + \ be used to endorse or promote \n products derived from this software without specific\ + \ \n prior written permission.\n 4. An entity wishing to redistribute in binary\ + \ form or \n include this software in their product without \n redistribution\ + \ of this software's source code with the \n product must also submit to these conditions\ + \ where \n applicable: \n * For every thousand (1000) units distributed,\ + \ at \n least half of the employees or persons \n affiliated\ + \ with the product must listen to the \n \"Der Ententanz\" (AKA \"The Chicken\ + \ Dance\") as \n composed by Werner Thomas for no less than two \n \ + \ (2) minutes\n * For every twenty-thousand (20000) units distributed,\ + \ \n one (1) or more persons affiliated with the entity \n \ + \ must be recorded performing the full Chicken Dance, \n in an original\ + \ video at the entity's own expense,\n and a video encoded in OGG Theora\ + \ format or a format\n and codec specified by , at least three (3)\ + \ \n minutes in length, must be submitted to , \n provided\ + \ 's contact information. Any and all\n copyrights to this video must\ + \ be transfered to \n . The dance featured in the video\n \ + \ must be based upon the instructions on how to perform \n \ + \ the Chicken Dance that you should have received with\n this software. \n\ + \ * Any employee or person affiliated with the product \n must\ + \ be prohibited from saying the word \"gazorninplat\" in \n public at all\ + \ times, as long as distribution of the \n product continues. \n\nTHIS SOFTWARE\ + \ IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \n\"AS IS\" AND ANY EXPRESS OR IMPLIED\ + \ WARRANTIES, INCLUDING, BUT NOT \nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND FITNESS \nFOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE \nCOPYRIGHT\ + \ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY,\ + \ OR CONSEQUENTIAL DAMAGES (INCLUDING, \nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\ + \ OR SERVICES; \nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER \nCAUSED\ + \ AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT \nLIABILITY, OR TORT (INCLUDING\ + \ NEGLIGENCE OR OTHERWISE) ARISING IN \nANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\ + \ ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE. ACCEPTS NO LIABILITY FOR\n\ + ANY INJURIES OR EXPENSES SUSTAINED IN THE ACT OF FULFILLING ANY OF \nTHE ABOVE TERMS AND\ + \ CONDITIONS, ACCIDENTAL OR OTHERWISE." json: chicken-dl-0.2.json - yml: chicken-dl-0.2.yml + yaml: chicken-dl-0.2.yml html: chicken-dl-0.2.html - text: chicken-dl-0.2.LICENSE + license: chicken-dl-0.2.LICENSE - license_key: chris-maunder + category: Permissive spdx_license_key: LicenseRef-scancode-chris-maunder other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This code may be used in compiled form in any way you desire. This file may be + redistributed unmodified by any means PROVIDING it is not sold for profit + without the authors written consent, and providing that this notice and the + authors name and all copyright notices remains intact. + + An email letting me know how you are using it would be nice as well. + + This file is provided "as is" with no expressed or implied warranty. The author + accepts no liability for any damage/loss of business that this product may + cause. json: chris-maunder.json - yml: chris-maunder.yml + yaml: chris-maunder.yml html: chris-maunder.html - text: chris-maunder.LICENSE + license: chris-maunder.LICENSE - license_key: chris-stoy + category: Permissive spdx_license_key: LicenseRef-scancode-chris-stoy other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + You are free to use this code in all commercial and non-commercial applications + as long as this copyright message is left intact. + Use this code at your own risk. I take no responsibility if it should fail to + do anything you would expect it to do and it could, at any time, fail to function + in any manner. You have the source code, make it do what you want. json: chris-stoy.json - yml: chris-stoy.yml + yaml: chris-stoy.yml html: chris-stoy.html - text: chris-stoy.LICENSE + license: chris-stoy.LICENSE - license_key: christopher-velazquez + category: Proprietary Free spdx_license_key: LicenseRef-scancode-christopher-velazquez other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Any duplication of the content on this web site without permission of the author + is strictly prohibited. json: christopher-velazquez.json - yml: christopher-velazquez.yml + yaml: christopher-velazquez.yml html: christopher-velazquez.html - text: christopher-velazquez.LICENSE + license: christopher-velazquez.LICENSE - license_key: classic-vb + category: Permissive spdx_license_key: LicenseRef-scancode-classic-vb other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Policy + + All code samples, tools, articles, and other content provided by this website is + considered to be protected by United States and international copyright law. It + is provided for the educational use of site visitors. Free license is hereby + granted to use the code provided and techniques discussed here within your + applications. You are not licensed to share any of the samples, or other content + on this website, in any form of mass distribution. Specifically, + + you may not repost on other websites material(s) found here, + + you may not sell compilation CDs or DVDs that contain material taken directly + from this website, + + you may provide modules found here, as source, within applications delivered to + your clients provided they agree to the same policies stated here and that you + both retain the embedded copyright notice(s), + + you may email samples you consider cool to your friends, if you tell them where + you found them, + + you may cite this site and its owner in the credits for your application, if you + wish, + + you may choose to donate to support this website, if material found here has + saved you time/money. + + Copyright violations will be pursued vigorously. + + Rationale + + This site is intended to be a benefit to the community of Classic VB developers. + Code provided here is subject to continual update, as site visitors report bugs, + and fixes are found. Having a single source for this codebase allows folks to + always know where they can turn to find the latest and presumably greatest. This + way, if you have downloaded code from this site, and it isn't behaving in a + reasonable manner, the first thing you can do is return to see if it's been + updated recently. + + When the contents of this site are redistributed elsewhere, I lose control over + versioning, and inevitably end up with emails asking about bugs fixed long ago. + It really is easier for everyone to have a single source. The policy stated here + isn't meant to be a hindrance to visitors, and if you find it so it's very + likely I haven't explained it well enough. + + If you find problems with code here, or wonder about licensing and + redistribution, please let me know! + + Thanks for understanding... + + Exceptions + + You're probably thinking, "Yeah, but maybe if I email him and ask really nice, + ... , after all, my posting to the internet will absolutely benefit all + humanity, and I stand to gain nothing personally, and yadda yadda yadda..." I + know. A million good causes, and a free sample to go with each. Well, yeah, I + really do mean, and want to stick with, what I wrote above. I'm very glad you + like my code, so much so that you want to repost it somewhere else. I'd really + prefer you didn't do that. I do appreciate your understanding. + + Disclaimer + + Microsoft is in no way affiliated with, nor offering endorsement of, this site. + It happens that we used to share a common interest in certain topics, but that's + the extent of the relationship with regard to what's presented here. + + All software offered on this site is considered to work, but no liability is + assumed by the author(s). As a developer yourself, it is assumed you realize + that sample code is just that. It is your responsibility to use what you find + here responsibly. json: classic-vb.json - yml: classic-vb.yml + yaml: classic-vb.yml html: classic-vb.html - text: classic-vb.LICENSE + license: classic-vb.LICENSE - license_key: classpath-exception-2.0 + category: Copyleft Limited spdx_license_key: Classpath-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + Linking this library statically or dynamically with other modules is making a + combined work based on this library. Thus, the terms and conditions of the GNU + General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, and to + copy and distribute the resulting executable under terms of your choice, + provided that you also meet, for each linked independent module, the terms and + conditions of the license of that module. An independent module is a module + which is not derived from or based on this library. If you modify this library, + you may extend this exception to your version of the library, but you are not + obligated to do so. If you do not wish to do so, delete this exception statement + from your version. json: classpath-exception-2.0.json - yml: classpath-exception-2.0.yml + yaml: classpath-exception-2.0.yml html: classpath-exception-2.0.html - text: classpath-exception-2.0.LICENSE + license: classpath-exception-2.0.LICENSE - license_key: classworlds + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + Redistribution and use of this software and associated documentation + ("Software"), with or without modification, are permitted provided that the + following conditions are met: + + 1. Redistributions of source code must retain copyright statements and notices. + Redistributions must also contain a copy of this document. + + 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 "classworlds" must not be used to endorse or promote products + derived from this Software without prior written permission of The Codehaus. For + written permission, please contact bob@codehaus.org. + + 4. Products derived from this Software may not be called "classworlds" nor may + "classworlds" appear in their names without prior written permission of The + Codehaus. "classworlds" is a registered trademark of The Codehaus. + + 5. Due credit should be given to The Codehaus. + (http://classworlds.codehaus.org/). + + THIS SOFTWARE IS PROVIDED BY THE CODEHAUS AND CONTRIBUTORS ``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 CODEHAUS 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. json: classworlds.json - yml: classworlds.yml + yaml: classworlds.yml html: classworlds.html - text: classworlds.LICENSE + license: classworlds.LICENSE - license_key: clause-6-exception-lgpl-2.1 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-clause-6-exception-lgpl-2.1 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a relaxation of clause 6 of the LGPL, the copyright holders of this + library give permission to use, copy, link, modify, and distribute, + binary-only object-code versions of an executable linked with the + original unmodified Library, without requiring the supply of any + mechanism to modify or replace the Library and relink (clauses 6a, + 6b, 6c, 6d, 6e), provided that all the other terms of clause 6 are + complied with. json: clause-6-exception-lgpl-2.1.json - yml: clause-6-exception-lgpl-2.1.yml + yaml: clause-6-exception-lgpl-2.1.yml html: clause-6-exception-lgpl-2.1.html - text: clause-6-exception-lgpl-2.1.LICENSE + license: clause-6-exception-lgpl-2.1.LICENSE - license_key: clear-bsd + category: Permissive spdx_license_key: BSD-3-Clause-Clear other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms, with or without + modification, are permitted (subject to the limitations in the + disclaimer below) 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 {Owner Organization} nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE + GRANTED BY THIS LICENSE. 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. json: clear-bsd.json - yml: clear-bsd.yml + yaml: clear-bsd.yml html: clear-bsd.html - text: clear-bsd.LICENSE + license: clear-bsd.LICENSE - license_key: clear-bsd-1-clause + category: Permissive spdx_license_key: LicenseRef-scancode-clear-bsd-1-clause other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms, with or without + modification, are permitted (subject to the limitations in the + disclaimer below) 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. + + NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE + GRANTED BY THIS LICENSE. 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. json: clear-bsd-1-clause.json - yml: clear-bsd-1-clause.yml + yaml: clear-bsd-1-clause.yml html: clear-bsd-1-clause.html - text: clear-bsd-1-clause.LICENSE + license: clear-bsd-1-clause.LICENSE - license_key: click-license + category: Permissive spdx_license_key: LicenseRef-scancode-click-license other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 name and trademarks of copyright holders may NOT be used in advertising + or publicity pertaining to the Software without specific, written prior + permission. Title to copyright in this Software and any associated + documentation will at all times remain with copyright holders. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. json: click-license.json - yml: click-license.yml + yaml: click-license.yml html: click-license.html - text: click-license.LICENSE + license: click-license.LICENSE +- license_key: clips-2017 + category: Permissive + spdx_license_key: LicenseRef-scancode-clips-2017 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: "CLIPS License Information\n\nPermission is hereby granted, free of charge, to any person\ + \ obtaining a \ncopy of this software (the \"Software\"), to deal in the Software without\ + \ \nrestriction, including without limitation the rights to use, copy, modify, \nmerge,\ + \ publish, distribute, and/or sell copies of the Software, and to \npermit persons to whom\ + \ the Software is furnished to do so. \n\nTHE SOFTWARE IS PROVIDED\ + \ \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR \nIMPLIED, INCLUDING BUT NOT LIMITED\ + \ TO THE WARRANTIES OF MERCHANTABILITY, \nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\ + \ OF THIRD PARTY RIGHTS. \nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, OR ANY\ + \ SPECIAL \nINDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM\ + \ \nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE \nOR OTHER\ + \ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR \nPERFORMANCE OF THIS\ + \ SOFTWARE." + json: clips-2017.json + yaml: clips-2017.yml + html: clips-2017.html + license: clips-2017.LICENSE - license_key: clisp-exception-2.0 + category: Copyleft Limited spdx_license_key: CLISP-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + This copyright does NOT cover user programs that run in CLISP and third-party + packages not part of CLISP, if a) They only reference external symbols in + CLISP's public packages that define API also provided by many other Common Lisp + implementations (namely the packages COMMON-LISP, COMMON-LISP-USER, KEYWORD, + CLOS, GRAY, EXT), i.e. if they don't rely on CLISP internals and would as well + run in any other Common Lisp implementation. Or b) They only reference external + symbols in CLISP's public packages that define API also provided by many other + Common Lisp implementations (namely the packages COMMON-LISP, COMMON-LISP-USER, + KEYWORD, CLOS, GRAY, EXT) and some external, not CLISP specific, symbols in + third-party packages that are released with source code under a GPL compatible + license and that run in a great number of Common Lisp implementations, i.e. if + they rely on CLISP internals only to the extent needed for gaining some + functionality also available in a great number of Common Lisp implementations. + Such user programs are not covered by the term "derived work" used in the + GNU GPL. Neither is their compiled code, i.e. the result of compiling them by + use of the function COMPILE-FILE. We refer to such user programs as + "independent work". + + You may copy and distribute memory image files generated by the function + SAVEINITMEM, if it was generated only from CLISP and independent work, and + provided that you accompany them, in the sense of section 3 of the GNU GPL, with + the source code of CLISP - precisely the same CLISP version that was used to + build the memory image -, the source or compiled code of the user programs + needed to rebuild the memory image (source code for all the parts that are not + independent work, see above), and a precise description how to rebuild the + memory image from these. + + Foreign non-Lisp code that is linked with CLISP or loaded into CLISP through + dynamic linking is not exempted from this copyright. I.e. such code, when + distributed for use with CLISP, must be distributed under the GPL. json: clisp-exception-2.0.json - yml: clisp-exception-2.0.yml + yaml: clisp-exception-2.0.yml html: clisp-exception-2.0.html - text: clisp-exception-2.0.LICENSE + license: clisp-exception-2.0.LICENSE - license_key: cloudera-express + category: Proprietary Free spdx_license_key: LicenseRef-scancode-cloudera-express other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Cloudera Express License\n\nEND USER LICENSE TERMS AND CONDITIONS\n\nTHESE TERMS AND\ + \ CONDITIONS (THESE \"TERMS\") APPLY TO YOUR USE OF THE PRODUCTS (AS DEFINED BELOW) PROVIDED\ + \ BY CLOUDERA, INC. (\"CLOUDERA\").\n\nPLEASE READ THESE TERMS CAREFULLY.\n\nIF YOU (\"\ + YOU\" OR \"CUSTOMER\") PLAN TO USE ANY OF THE PRODUCTS ON BEHALF OF A COMPANY OR OTHER ENTITY,\ + \ YOU REPRESENT THAT YOU ARE THE EMPLOYEE OR AGENT OF SUCH COMPANY (OR OTHER ENTITY) AND\ + \ YOU HAVE THE AUTHORITY TO ACCEPT ALL OF THE TERMS AND CONDITIONS SET FORTH IN AN ACCEPTED\ + \ REQUEST (AS DEFINED BELOW) AND THESE TERMS (COLLECTIVELY, THE \"AGREEMENT\") ON BEHALF\ + \ OF SUCH COMPANY (OR OTHER ENTITY).\n\nBY USING ANY OF THE PRODUCTS, YOU ACKNOWLEDGE AND\ + \ AGREE THAT:\n(A) YOU HAVE READ ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT;\n(B)\ + \ YOU UNDERSTAND ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT;\n(C) YOU AGREE TO BE\ + \ LEGALLY BOUND BY ALL OF THE TERMS AND CONDITIONS SET FORTH IN THIS AGREEMENT\n\nIF YOU\ + \ DO NOT AGREE WITH ANY OF THE TERMS OR CONDITIONS OF THESE TERMS, YOU MAY NOT USE ANY PORTION\ + \ OF THE PRODUCTS.\n\nTHE \"EFFECTIVE DATE\" OF THIS AGREEMENT IS THE DATE YOU FIRST DOWNLOAD\ + \ ANY OF THE PRODUCTS.\n\n1. For the purpose of this Agreement, \"Product\" shall mean the\ + \ Cloudera Manager, Cloudera Standard, Cloudera Enterprise Trial and related software.\n\ + \n2. Entire Agreement. This Agreement includes these Terms any exhibits attached to these\ + \ Terms and any terms set forth on the Cloudera Site (as defined below). This Agreement\ + \ is the entire agreement of the parties regarding the subject matter hereof, superseding\ + \ all other agreements between them, whether oral or written, regarding the subject matter\ + \ hereof\n\n3. License Delivery. Cloudera grants to Customer a nonexclusive, nontransferable,\ + \ nonsublicensable, revocable and limited license to access and use the Product as defined\ + \ above in Section 1 solely for Customer's internal purposes. The Product is delivered via\ + \ electronic download from the ftp site made available following Customer's execution of\ + \ this Agreement.\n\n4. License Restrictions. Unless expressly otherwise set forth in this\ + \ Agreement, Customer will not: \n(a) modify, translate or create derivative works of the\ + \ Product;\n(b) decompile, reverse engineer or reverse assemble any portion of the Product\ + \ or attempt to discover any source code or underlying ideas or algorithms of the Product;\n\ + (c) sell, assign, sublicense, rent, lease, loan, provide, distribute or otherwise transfer\ + \ all or any portion of the Product;\n(d) make, have made, reproduce or copy the Product;\ + \ (e) remove or alter any trademark, logo, copyright or other proprietary notices associated\ + \ with the Product; and\n(f) cause or permit any other party to do any of the foregoing.\n\ + \n5. Ownership. As between Cloudera and Customer and subject to the grants under this Agreement,\ + \ Cloudera owns all right, title and interest in and to: (a) the Product (including, but\ + \ not limited to, any modifications thereto); (b) all ideas, inventions, discoveries, improvements,\ + \ information, creative works and any other works discovered, prepared or developed by Cloudera\ + \ in the course of or resulting from the provision of any services under this Agreement;\ + \ and (c) any and all Intellectual Property Rights embodied in the foregoing. For the purpose\ + \ of this Agreement, \"Intellectual Property Rights\" means any and all patents, copyrights,\ + \ moral rights, trademarks, trade secrets and any other form of intellectual property rights\ + \ recognized in any jurisdiction, including applications and registrations for any of the\ + \ foregoing. As between the parties and subject to the terms and conditions of this Agreement,\ + \ Customer owns all right, title and interest in and to the data generated by the use of\ + \ the Products by Customer. There are no implied licenses in this Agreement, and Cloudera\ + \ reserves all rights not expressly granted under this Agreement. No licenses are granted\ + \ by Cloudera to Customer under this Agreement, whether by implication, estoppels or otherwise,\ + \ except as expressly set forth in this Agreement.\n\n6. Nondisclosure. \"Confidential Information\"\ + \ means all information disclosed (whether in oral, written, or other tangible or intangible\ + \ form) by Cloudera to Customer concerning or related to this Agreement or Cloudera (whether\ + \ before, on or after the Effective Date) which Customer knows or should know, given the\ + \ facts and circumstances surrounding the disclosure of the information by Customer, is\ + \ confidential information of Cloudera. Confidential Information includes, but is not limited\ + \ to, the components of the business plans, the Products, inventions, design plans, financial\ + \ plans, computer programs, know-how, customer information, strategies and other similar\ + \ information. Customer will, during the term of this Agreement, and thereafter maintain\ + \ in confidence the Confidential Information and will not use such Confidential Information\ + \ except as expressly permitted herein. Customer will use the same degree of care in protecting\ + \ the Confidential Information as Customer uses to protect its own confidential information\ + \ from unauthorized use or disclosure, but in no event less than reasonable care. Confidential\ + \ Information will be used by Customer solely for the purpose of carrying out Customer's\ + \ obligations under this Agreement. In addition, Customer: (a) will not reproduce Confidential\ + \ Information, in any form, except as required to accomplish Customer's obligations under\ + \ this Agreement; and (b) will only disclose Confidential Information to its employees and\ + \ consultants who have a need to know such Confidential Information in order to perform\ + \ their duties under this Agreement and if such employees and consultants have executed\ + \ a non-disclosure agreement with Customer with terms no less restrictive than the non-disclosure\ + \ obligations contained in this Section. Confidential Information will not include information\ + \ that: (i) is in or enters the public domain without breach of this Agreement through no\ + \ fault of Customer; (ii) Customer can reasonably demonstrate was in its possession prior\ + \ to first receiving it from Cloudera; (iii) Customer can demonstrate was developed by Customer\ + \ independently and without use of or reference to the Confidential Information; or (iv)\ + \ Customer receives from a third-party without restriction on disclosure and without breach\ + \ of a nondisclosure obligation. Notwithstanding any terms to the contrary in this Agreement,\ + \ any suggestions, comments or other feedback provided by Customer to Cloudera with respect\ + \ to the Products (collectively, \"Feedback\") will constitute Confidential Information.\ + \ Further, Cloudera will be free to use, disclose, reproduce, license and otherwise distribute,\ + \ and exploit the Feedback provided to it as it sees fit, entirely without obligation or\ + \ restriction of any kind on account of Intellectual Property Rights or otherwise.\n\n7.\ + \ Warranty Disclaimer. Customer represents warrants and covenants that: (a) all of its employees\ + \ and consultants will abide by the terms of this Agreement; (b) it will comply with all\ + \ applicable laws, regulations, rules, orders and other requirements, now or hereafter in\ + \ effect, of any applicable governmental authority, in its performance of this Agreement.\ + \ Notwithstanding any terms to the contrary in this Agreement, Customer will remain responsible\ + \ for acts or omissions of all employees or consultants of Customer to the same extent as\ + \ if such acts or omissions were undertaken by Customer. THE PRODUCTS ARE PROVIDED ON AN\ + \ \"AS IS\" OR \"AS AVAILABLE\" BASIS WITHOUT ANY REPRESENTATIONS, WARRANTIES, COVENANTS\ + \ OR CONDITIONS OF ANY KIND. CLOUDERA AND ITS SUPPLIERS DO NOT WARRANT THAT ANY OF THE PRODUCTS\ + \ WILL BE FREE FROM ALL BUGS, ERRORS, OR OMISSIONS. CLOUDERA AND ITS SUPPLIERS DISCLAIM\ + \ ANY AND ALL OTHER WARRANTIES AND REPRESENTATIONS (EXPRESS OR IMPLIED, ORAL OR WRITTEN)\ + \ WITH RESPECT TO THE PRODUCTS WHETHER ALLEGED TO ARISE BY OPERATION OF LAW, BY REASON OF\ + \ CUSTOM OR USAGE IN THE TRADE, BY COURSE OF DEALING OR OTHERWISE, INCLUDING ANY AND ALL\ + \ (I) WARRANTIES OF MERCHANTABILITY, (II) WARRANTIES OF FITNESS OR SUITABILITY FOR ANY PURPOSE\ + \ (WHETHER OR NOT CLOUDERA KNOWS, HAS REASON TO KNOW, HAS BEEN ADVISED, OR IS OTHERWISE\ + \ AWARE OF ANY SUCH PURPOSE), AND (III) WARRANTIES OF NONINFRINGEMENT OR CONDITION OF TITLE.\ + \ CUSTOMER ACKNOWLEDGES AND AGREES THAT CUSTOMER HAS RELIED ON NO WARRANTIES.\n\n8. Indemnification.\ + \ Customer will indemnify, defend and hold Cloudera and its directors, officers, employees,\ + \ suppliers, consultants, contractors, and agents (\"Cloudera Indemnitees\") harmless from\ + \ and against any and all actual or threatened suits, actions, proceedings (at law or in\ + \ equity), claims (groundless or otherwise), damages, payments, deficiencies, fines, judgments,\ + \ settlements, liabilities, losses, costs and expenses (including, but not limited to, reasonable\ + \ attorney fees, costs, penalties, interest and disbursements) resulting from any claim\ + \ (including third-party claims), suit, action, or proceeding against any Cloudera Indemnitees,\ + \ whether successful or not, caused by, arising out of, resulting from, attributable to\ + \ or in any way incidental to:\n(a) any breach of this Agreement (including, but not limited\ + \ to, any breach of any of Customer's representations, warranties or covenants);\n(b) the\ + \ negligence or willful misconduct of Customer; or\n(c) the data and information used in\ + \ connection with or generated by the use of the Products.\n\n9. Limitation of Liability.\ + \ EXCEPT FOR ANY ACTS OF FRAUD, GROSS NEGLIGENCE OR WILLFUL MISCONDUCT, IN NO EVENT WILL:\ + \ (A) CLOUDERA BE LIABLE TO CUSTOMER OR ANY THIRD-PARTY FOR ANY LOSS OF PROFITS, LOSS OF\ + \ USE, LOSS OF REVENUE, LOSS OF GOODWILL, ANY INTERRUPTION OF BUSINESS, OR FOR ANY INDIRECT,\ + \ SPECIAL, INCIDENTAL, EXEMPLARY, PUNITIVE OR CONSEQUENTIAL DAMAGES OF ANY KIND ARISING\ + \ OUT OF OR IN CONNECTION WITH THIS AGREEMENT OR THE PRODUCTS, REGARDLESS OF THE FORM OF\ + \ ACTION, WHETHER IN CONTRACT, TORT, STRICT LIABILITY OR OTHERWISE, EVEN IF CLOUDERA HAS\ + \ BEEN ADVISED OR IS OTHERWISE AWARE OF THE POSSIBILITY OF SUCH DAMAGES; AND (B) CLOUDERA's\ + \ TOTAL LIABILITY ARISING OUT OF OR RELATED TO THIS AGREEMENT EXCEED THE AGGREGATE OF THE\ + \ AMOUNTS PAID OR PAYABLE TO CLOUDERA, IF ANY, UNDER THIS AGREEMENT. MULTIPLE CLAIMS WILL\ + \ NOT EXPAND THIS LIMITATION.\n\n10. Third-Party Suppliers. The Product may include software\ + \ or other code distributed under license from third-party suppliers. Customer acknowledges\ + \ that such third-party suppliers disclaim and make no representation or warranty with respect\ + \ to the Products or any portion thereof and assume no liability for any claim that may\ + \ arise with respect to the Products or Customer's use or inability to use the same.\n\n\ + 11. Google Analytics. To improve the product and gather feedback pro-actively from users,\ + \ Google Analytics will be enabled by default in the product. Users have the option to disable\ + \ this feature via the 'Administration -> Properties' settings in the product. Link to Google\ + \ Analytics Terms of Service: http://www.google.com/analytics/terms/us.html\n\n12. Reporting.\ + \ Customer acknowledges that the product contains a diagnostic functionality as its default\ + \ configuration. The diagnostic function collects configuration files, node count, software\ + \ versions, log files and other information regarding your environment, and reports that\ + \ information to Cloudera in order for Cloudera to proactively diagnose any potential issues\ + \ in the product. The diagnostic function may be modified by Customer in order to disable\ + \ regular automatic reporting or to report only on filing of a support ticket.\n\n13. Termination.\ + \ The term of this Agreement commences on the Effective Date and continues unless terminated\ + \ for Customer's breach of any material term herein. Notwithstanding any terms to the contrary\ + \ in this Agreement, in the event of a breach of Sections 3, 4 or 6, Cloudera may immediately\ + \ terminate this Agreement. Upon expiration or termination of this Agreement: (a) all rights\ + \ granted to Customer under this Agreement will immediately cease; and (b) Customer will\ + \ promptly provide Cloudera with all Confidential Information (including, but not limited\ + \ to the Products) then in its possession or destroy all copies of such Confidential Information,\ + \ at Cloudera's sole discretion and direction. Notwithstanding any terms to the contrary\ + \ in this Agreement, this sentence and the following Sections will survive any termination\ + \ or expiration of this Agreement: 4, 6, 7, 8, 9, 10, 13 and 15.\n\n14. In the event that\ + \ Customer uses the functionality in the Product for the purposes of downloading and installing\ + \ any Cloudera-provided public beta software, such beta software will be subject either\ + \ to the Apache 2 license, or to the terms and conditions of the Public Beta License located\ + \ here: (http://ccp.cloudera.com/display/SUPPORT/CLOUDERA+PUBLIC+BETA+AGREEMENT) as applicable.\n\ + \n15. Miscellaneous. This Agreement will be governed by and construed in accordance with\ + \ the laws of the State of California applicable to agreements made and to be entirely performed\ + \ within the State of California, without resort to its conflict of law provisions. The\ + \ parties agree that any action at law or in equity arising out of or relating to this Agreement\ + \ will be filed only in the state and federal courts located in Santa Clara County, and\ + \ the parties hereby irrevocably and unconditionally consent and submit to the exclusive\ + \ jurisdiction of such courts over any suit, action or proceeding arising out of this Agy.\ + \ Upon such determination that any provision is invalid, illegal, or incapable of being\ + \ enforced, the parties will negotiate in good faith to modify this Agreement so as to effect\ + \ the original intent of the parties as closely as possible in an acceptable manner to the\ + \ end that the transactions contemplated hereby are fulfilled. Except for payments due under\ + \ this Agreement, neither party will be responsible for any failure to perform or delay\ + \ attributable in whole or in part to any cause beyond its reasonable control, including\ + \ but not limited to acts of God (fire, storm, floods, earthquakes, etc.), civil disturbances,\ + \ disruption of telecommunications, disruption of power or other essential services, interruption\ + \ or termination of service by any service providers being used by Cloudera to link its\ + \ servers to the Internet, labor disturbances, vandalism, cable cut, computer viruses or\ + \ other similar occurrences, or any malicious or unlawful acts of any third-party (each\ + \ a \"Force Majeure Event\"). In the event of any such delay the date of delivery will be\ + \ deferred for a period equal to the time lost by reason of the delay. Any notice or communication\ + \ required or permitted to be given hereunder must be in writing signed or authorized by\ + \ the party giving notice, and may be delivered by hand, deposited with an overnight courier,\ + \ sent by confirmed email, confirmed facsimile or mailed by registered or certified mail,\ + \ return receipt requested, postage prepaid, in each case to the address below or at such\ + \ other address as may hereafter be furnished in accordance with this Section. No modification,\ + \ addition or deletion, or waiver of any rights under this Agreement will be binding on\ + \ a party unless made in an agreement clearly understood by the parties to be a modification\ + \ or waiver and signed by a duly authorized representative of each party. No failure or\ + \ delay (in whole or in part) on the part of a party to exercise any right or remedy hereunder\ + \ will operate as a waiver thereof or effect any other right or remedy. All rights and remedies\ + \ hereunder are cumulative and are not exclusive of any other rights or remedies provided\ + \ hereunder or by law. The waiver of one breach or default or any delay in exercising any\ + \ rights will not constitute a waiver of any subsequent breach or default." json: cloudera-express.json - yml: cloudera-express.yml + yaml: cloudera-express.yml html: cloudera-express.html - text: cloudera-express.LICENSE + license: cloudera-express.LICENSE - license_key: cmigemo + category: Proprietary Free spdx_license_key: LicenseRef-scancode-cmigemo other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "THE PERMISSION CONDITION ABOUT USING C/Migemo AND Migemo DLL\n\n \ + \ Since: 16-Dec-2001\n \ + \ Version 1.0\n Author: MURAOKA Taro\ + \ (KoRoN)\n Last Change: 16-Dec-2003\n\n \ + \ Translated into English by:\n Translator: Mamoru\ + \ Tasaka \n \ + \ Version 1.0-1\n Date: Apr, 10 2007\n\ + \nTHE DEFINITION OF TERMS\nThe meaning of each term is defined as below:\n\nThis software:\ + \ C/Migemo and Migemo DLL\n (including binary form and source codes,\ + \ but\n excluding dictionary data).\nMalfunction: The behavior which\ + \ differs from which is\n documented or which is not documented.\nManager:\ + \ Those who own this software (who are\n the developers or the\ + \ copyright owners of this\n software). At the time this copyright is\n\ + \ written, it is Taro Muraoka.\n \n\ + User: Those who use or used this software.\nothers: Those who are\ + \ not managers or users. Especially,\n the developers and the copyright\ + \ owner of \n the dictionaries for this software are included\n \ + \ into \"others\".\n\nTHE MAIN RULE\nThose who agreed with the following conditions\ + \ may use this \nsoftware. Those who won't agree with them should stop using \nthis software\ + \ and should remove the files related to this software \nfrom the memory media they are\ + \ using.\n\nTHE CONDITIONS IMPOSED ON MANAGERS\nThe managers own the following rights related\ + \ to this software.\n - the right to modify this software\n - the right to distribute\ + \ this software\n - the right to let this software used\n - the right to devolve the\ + \ part or the whole of the rights\n related to this software\n\nThe managers have a\ + \ duty to resolve malfunctions of this software.\n\nThe managers have no responsibility\ + \ for any damages the users\nmay cause and may sustain.\n\nTHE CONDITIONS IMPOSED ON USERS\n\ + A user has the following duties on using this software\n - The duty to pay a fee to the\ + \ developers based on the \n consideration regulation described below.\n - To protect\ + \ the rights of the managers\n - To protect the rights of others.\n\nA user has a right\ + \ to use this software for any purpose\nprovided the usage won't violate any other conditions.\n\ + \nTHE CONSIDERATION REGULATION\nThe consideration regulation of this software is defined\ + \ as\nbelow.\n - zero yen\n\nTHE MAIN RULE ENDS HERE\nIf you cannot agree with the conditions\ + \ above, please\nstop using this software." json: cmigemo.json - yml: cmigemo.yml + yaml: cmigemo.yml html: cmigemo.html - text: cmigemo.LICENSE + license: cmigemo.LICENSE - license_key: cmr-no + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + Permission to use, copy, modify, distribute and sell this software + and its documentation for any purpose is hereby granted without fee, + provided that the above copyright notice appear in all copies and + that both that copyright notice and this permission notice appear + in supporting documentation. Christian Michelsen Research AS + makes no representations about the suitability of this software for + any purpose. It is provided "as is" without express or implied warranty. json: cmr-no.json - yml: cmr-no.yml + yaml: cmr-no.yml html: cmr-no.html - text: cmr-no.LICENSE + license: cmr-no.LICENSE - license_key: cmu-computing-services + category: Permissive spdx_license_key: LicenseRef-scancode-cmu-computing-services other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Redistribution and use in source and binary forms, with or without\nmodification, are\ + \ permitted provided that the following conditions\nare met:\n\n1. Redistributions of source\ + \ code must retain the above copyright\nnotice, this list of conditions and the following\ + \ disclaimer. \n\n2. Redistributions in binary form must reproduce the above copyright\n\ + notice, this list of conditions and the following disclaimer in\nthe documentation and/or\ + \ other materials provided with the\ndistribution.\n\n3. The name \"Carnegie Mellon University\"\ + \ must not be used to\nendorse or promote products derived from this software without\n\ + prior written permission. For permission or any legal\ndetails, please contact \n Office\ + \ of Technology Transfer\n Carnegie Mellon University\n 5000 Forbes Avenue\n Pittsburgh,\ + \ PA 15213-3890\n (412) 268-4387, fax: (412) 268-7395\n tech-transfer@andrew.cmu.edu\n\n\ + 4. Redistributions of any form whatsoever must retain the following\nacknowledgment:\n\"\ + This product includes software developed by Computing Services\nat Carnegie Mellon University\ + \ (http://www.cmu.edu/computing/).\"\n\nCARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES\ + \ WITH REGARD TO\nTHIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND\ + \ FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE\nFOR ANY SPECIAL, INDIRECT\ + \ OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\ + \ PROFITS, WHETHER IN\nAN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING\n\ + OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE." json: cmu-computing-services.json - yml: cmu-computing-services.yml + yaml: cmu-computing-services.yml html: cmu-computing-services.html - text: cmu-computing-services.LICENSE + license: cmu-computing-services.LICENSE - license_key: cmu-mit + category: Permissive spdx_license_key: LicenseRef-scancode-cmu-mit other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software and + its documentation is hereby granted (including for commercial or + for-profit use), provided that both the copyright notice and this + permission notice appear in all copies of the software, derivative + works, or modified versions, and any portions thereof. + + THIS SOFTWARE IS EXPERIMENTAL AND IS KNOWN TO HAVE BUGS, SOME OF + WHICH MAY HAVE SERIOUS CONSEQUENCES. CARNEGIE MELLON PROVIDES THIS + SOFTWARE IN ITS ``AS IS'' CONDITION, AND ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT + OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + + Carnegie Mellon encourages (but does not require) users of this + software to return any improvements or extensions that they make, + and to grant Carnegie Mellon the rights to redistribute these + changes without encumbrance. json: cmu-mit.json - yml: cmu-mit.yml + yaml: cmu-mit.yml html: cmu-mit.html - text: cmu-mit.LICENSE + license: cmu-mit.LICENSE - license_key: cmu-simple + category: Permissive spdx_license_key: LicenseRef-scancode-cmu-simple other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software and its + documentation is hereby granted, provided that the above copyright + notice appears in all copies. This software is provided without any + warranty, express or implied. json: cmu-simple.json - yml: cmu-simple.yml + yaml: cmu-simple.yml html: cmu-simple.html - text: cmu-simple.LICENSE + license: cmu-simple.LICENSE - license_key: cmu-template + category: Permissive spdx_license_key: LicenseRef-scancode-cmu-template other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify and distribute this software and its + documentation is hereby granted, provided that both the copyright notice and + this permission notice appear in all copies of the software, derivative works + or modified versions, and any portions thereof, and that both notices appear + in supporting documentation. + + COPYRIGHT HOLDER ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION. + COPYRIGHT HOLDER DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES + WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. json: cmu-template.json - yml: cmu-template.yml + yaml: cmu-template.yml html: cmu-template.html - text: cmu-template.LICENSE + license: cmu-template.LICENSE - license_key: cmu-uc + category: Permissive spdx_license_key: MIT-CMU other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 appears in all copies and that both that copyright + notice and this permission notice appear in supporting documentation, and that + the name of CMU and The Regents of the University of California not be used in + advertising or publicity pertaining to distribution of the software without + specific written permission. + + CMU AND THE REGENTS OF THE UNIVERSITY OF CALIFORNIA DISCLAIM ALL WARRANTIES WITH + REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS. IN NO EVENT SHALL CMU OR THE REGENTS OF THE UNIVERSITY OF CALIFORNIA BE + LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM THE 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. json: cmu-uc.json - yml: cmu-uc.yml + yaml: cmu-uc.yml html: cmu-uc.html - text: cmu-uc.LICENSE + license: cmu-uc.LICENSE - license_key: cncf-corporate-cla-1.0 + category: CLA spdx_license_key: LicenseRef-scancode-cncf-corporate-cla-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: | + Cloud Native Computing Foundation + A project of The Linux Foundation + Software Grant and Corporate Contributor License Agreement ("Agreement") v1.0 + + Thank you for your interest in the Cloud Native Computing Foundation project (“CNCF”) of The + Linux Foundation (the "Foundation"). In order to clarify the intellectual property license granted + with Contributions from any person or entity, the Foundation must have a Contributor License + Agreement (CLA) on file that has been signed by each Contributor, indicating agreement to the + license terms below. This license is for your protection as a Contributor as well as the protection + of CNCF, the Foundation and its users; it does not change your rights to use your own + Contributions for any other purpose. + + This version of the Agreement allows an entity (the "Corporation") to submit Contributions to the + Foundation, to authorize Contributions submitted by its designated employees to the + Foundation, and to grant copyright and patent licenses thereto. + + If you have not already done so, please complete and sign, then scan and email a PDF file of + this Agreement to ​cla@cncf.io​ + If necessary, send an original signed Agreement to The Linux + Foundation, 1 Letterman Drive, Building D, Suite D4700, San Francisco CA 94129, U.S.A. + Please read this document carefully before signing and keep a copy for your records. + +  Corporation name: ________________________________________________ +  Corporation address: ________________________________________________ +  ________________________________________________ +  ________________________________________________ + +  Point of Contact: ________________________________________________ +  E­Mail: ________________________________________________ +  Telephone: _____________________ + + You accept and agree to the following terms and conditions for Your present and future + Contributions submitted to the Foundation. In return, the Foundation shall not use Your + Contributions in a way that is contrary to the public benefit or inconsistent with its nonprofit + status and bylaws in effect at the time of the Contribution. Except for the license granted herein + to the Foundation and recipients of software distributed by the Foundation, You reserve all right, + title, and interest in and to Your Contributions. + +  1. Definitions. + +  "You" (or "Your") shall mean the copyright owner or legal entity authorized by the copyright + owner that is making this Agreement with the Foundation. For legal entities, the entity making a + Contribution and all other entities that control, are controlled by, or are under common control + with that entity are considered to be a single Contributor. 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. + +  "Contribution" shall mean the code, documentation or other original works of authorship + expressly identified in Schedule B, as well as any original work of authorship, including any + modifications or additions to an existing work, that is intentionally submitted by You to the + Foundation for inclusion in, or documentation of, any of the products owned or managed by the + Foundation (the "Work"). For the purposes of this definition, "submitted" means any form of + electronic, verbal, or written communication sent to the Foundation 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 Foundation for + the purpose of discussing and improving the Work, but excluding communication that is + conspicuously marked or otherwise designated in writing by You as "Not a Contribution." + +  2. Grant of Copyright License. Subject to the terms and conditions of this Agreement, You + hereby grant to the Foundation and to recipients of software distributed by the Foundation 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 Your Contributions and such derivative works. + +  3. Grant of Patent License. Subject to the terms and conditions of this Agreement, You hereby + grant to the Foundation and to recipients of software distributed by the Foundation 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 You that are + necessarily infringed by Your Contribution(s) alone or by combination of Your Contribution(s) + with the Work to which such Contribution(s) were submitted. If any entity institutes patent + litigation against You or any other entity (including a cross­claim or counterclaim in a lawsuit) + alleging that your Contribution, or the Work to which you have contributed, constitutes direct or + contributory patent infringement, then any patent licenses granted to that entity under this + Agreement for that Contribution or Work shall terminate as of the date such litigation is filed. + +  4. You represent that You are legally entitled to grant the above license. You represent further + that each employee of the Corporation designated on Schedule A below (or in a subsequent + written modification to that Schedule) is authorized to submit Contributions on behalf of the + Corporation. + +  5. You represent that each of Your Contributions is Your original creation (see section 7 for + submissions on behalf of others). + +  6. You are not expected to provide support for Your Contributions, except to the extent You + desire to provide support. You may provide support for free, for a fee, or not at all. Unless + required by applicable law or agreed to in writing, You provide Your 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. + +  7. Should You wish to submit work that is not Your original creation, You may submit it to the + Foundation separately from any Contribution, identifying the complete details of its source and + of any license or other restriction (including, but not limited to, related patents, trademarks, and + license agreements) of which you are personally aware, and conspicuously marking the work as + "Submitted on behalf of a third­party: [named here]". + +  8. It is your responsibility to notify the Foundation when any change is required to the list of + designated employees authorized to submit Contributions on behalf of the Corporation, or to the + Corporation's Point of Contact with the Foundation. + + + + Please sign: __________________________________ Date: _______________ + + Title: __________________________________ + + Corporation: __________________________________ + + + Schedule A + + Initial list of designated employees. NB: authorization is not tied to particular Contributions. + Please indicate “CLA Manager” next to the name of any employees listed below that are + authorized to add or remove designated employees from this list in the future. + + + + Schedule B + + [Identification of optional concurrent software grant. Would be left blank or omitted if there is no + concurrent software grant.] json: cncf-corporate-cla-1.0.json - yml: cncf-corporate-cla-1.0.yml + yaml: cncf-corporate-cla-1.0.yml html: cncf-corporate-cla-1.0.html - text: cncf-corporate-cla-1.0.LICENSE + license: cncf-corporate-cla-1.0.LICENSE - license_key: cncf-individual-cla-1.0 + category: CLA spdx_license_key: LicenseRef-scancode-cncf-individual-cla-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: | + Cloud Native Computing Foundation + A project of The Linux Foundation + Individual Contributor License Agreement ("Agreement") v1.0 + + Thank you for your interest in the Cloud Native Computing Foundation project (“CNCF”) of The + Linux Foundation (the "Foundation"). In order to clarify the intellectual property license granted + with Contributions from any person or entity, the Foundation must have a Contributor License + Agreement ("CLA") on file that has been signed by each Contributor, indicating agreement to + the license terms below. This license is for your protection as a Contributor as well as the + protection of CNCF, the Foundation and its users; it does not change your rights to use your + own Contributions for any other purpose.  + + If you have not already done so, please complete and sign, then scan and email a pdf file of this + Agreement to ​cla@cncf.io​ + If necessary, send an original signed Agreement to The Linux + Foundation, 1 Letterman Drive, Building D, Suite D4700, San Francisco CA 94129, U.S.A. + Please read this document carefully before signing and keep a copy for your records. + + Full name: ______________________________________________________ + Public name: _________________________________________ + Mailing Address: ________________________________________________ +  ________________________________________________ + Country: ______________________________________________________ + Telephone: ______________________________________________________ + E­Mail: ______________________________________________________ + + You accept and agree to the following terms and conditions for Your present and future + Contributions submitted to the Foundation. In return, the Foundation shall not use Your + Contributions in a way that is contrary to the public benefit or inconsistent with its nonprofit + status and bylaws in effect at the time of the Contribution. Except for the license granted herein + to the Foundation and recipients of software distributed by the Foundation, You reserve all right, + title, and interest in and to Your Contributions. + + 1. Definitions. + + "You" (or "Your") shall mean the copyright owner or legal entity authorized by the copyright + owner that is making this Agreement with the Foundation. For legal entities, the entity making a + Contribution and all other entities that control, are controlled by, or are under common control + with that entity are considered to be a single Contributor. 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. + + "Contribution" shall mean any original work of authorship, including any modifications or + additions to an existing work, that is intentionally submitted by You to the Foundation for + inclusion in, or documentation of, any of the products owned or managed by the Foundation (the + "Work"). For the purposes of this definition, "submitted" means any form of electronic, verbal, or + written communication sent to the Foundation 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 Foundation for the purpose of discussing and + improving the Work, but excluding communication that is conspicuously marked or otherwise + designated in writing by You as "Not a Contribution." + + 2. Grant of Copyright License. Subject to the terms and conditions of this Agreement, You + hereby grant to the Foundation and to recipients of software distributed by the Foundation 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 Your Contributions and such derivative works. + + 3. Grant of Patent License. Subject to the terms and conditions of this Agreement, You hereby + grant to the Foundation and to recipients of software distributed by the Foundation 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 You that are + necessarily infringed by Your Contribution(s) alone or by combination of Your Contribution(s) + with the Work to which such Contribution(s) was submitted. If any entity institutes patent + litigation against You or any other entity (including a cross­claim or counterclaim in a lawsuit) + alleging that your Contribution, or the Work to which you have contributed, constitutes direct or + contributory patent infringement, then any patent licenses granted to that entity under this + Agreement for that Contribution or Work shall terminate as of the date such litigation is filed. + + 4. You represent that you are legally entitled to grant the above license. If your employer(s) has + rights to intellectual property that you create that includes your Contributions, you represent that + you have received permission to make Contributions on behalf of that employer, that your + employer has waived such rights for your Contributions to the Foundation, or that your employer + has executed a separate Corporate CLA with the Foundation. + + 5. You represent that each of Your Contributions is Your original creation (see section 7 for + submissions on behalf of others). You represent that Your Contribution submissions include + complete details of any third­party license or other restriction (including, but not limited to, + related patents and trademarks) of which you are personally aware and which are associated + with any part of Your Contributions. + + 6. You are not expected to provide support for Your Contributions, except to the extent You + desire to provide support. You may provide support for free, for a fee, or not at all. Unless + required by applicable law or agreed to in writing, You provide Your 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. + + 7. Should You wish to submit work that is not Your original creation, You may submit it to the + Foundation separately from any Contribution, identifying the complete details of its source and + of any license or other restriction (including, but not limited to, related patents, trademarks, and + license agreements) of which you are personally aware, and conspicuously marking the work as + "Submitted on behalf of a third­party: [named here]". + + 8. You agree to notify the Foundation of any facts or circumstances of which you become aware + that would make these representations inaccurate in any respect. + + + Please sign: __________________________________ Date: ________________ json: cncf-individual-cla-1.0.json - yml: cncf-individual-cla-1.0.yml + yaml: cncf-individual-cla-1.0.yml html: cncf-individual-cla-1.0.html - text: cncf-individual-cla-1.0.LICENSE + license: cncf-individual-cla-1.0.LICENSE - license_key: cnri-jython + category: Permissive spdx_license_key: CNRI-Jython other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "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 using JPython version 1.1.x in source or\ + \ binary form and its associated documentation as provided herein (\"Software\").\L \n\n\ + 2. Subject to the terms and conditions of this License Agreement, CNRI hereby grants Licensee\ + \ a non-exclusive, non-transferable, 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 CNRI's License\ + \ Agreement and CNRI's notice of copyright, i.e., \"Copyright (c) 1996-1999 Corporation\ + \ for National Research Initiatives; All Rights Reserved\" are both retained in the Software,\ + \ alone or in any derivative version prepared by Licensee.\LAlternatively, in lieu of CNRI's\ + \ License Agreement, Licensee may substitute the following text (omitting the quotes), provided,\ + \ however, that such text is displayed prominently in the Software alone or in any derivative\ + \ version prepared by Licensee: \"JPython (Version 1.1.x) is made available subject to the\ + \ terms and conditions in CNRI's License Agreement. This Agreement may be located on the\ + \ Internet using the following unique, persistent identifier (known as a handle): 1895.22/1006.\ + \ The License may also be obtained from a proxy server on the Web using the following URL:\ + \ http://hdl.handle.net/1895.22/1006.\"\L \n\n3. In the event Licensee prepares a derivative\ + \ work that is based on or incorporates the Software or any part thereof, and wants to make\ + \ the derivative work available to the public as provided herein, then Licensee hereby agrees\ + \ to indicate in any such work, in a prominently visible way, the nature of the modifications\ + \ made to CNRI's Software.\L\t\n\n4. Licensee may not use CNRI trademarks or trade name,\ + \ including JPython or CNRI, in a trademark sense to endorse or promote products or services\ + \ of Licensee, or any third party. Licensee may use the mark JPython in connection with\ + \ Licensee's derivative versions that are based on or incorporate the Software, but only\ + \ in the form \"JPython-based ,\" or equivalent.\L \n\n5. CNRI is making the Software 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\ + \ THE SOFTWARE WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.\L \n\n6. CNRI SHALL NOT BE LIABLE\ + \ TO LICENSEE OR 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. SOME STATES DO NOT ALLOW THE LIMITATION\ + \ OR EXCLUSION OF LIABILITY SO THE ABOVE DISCLAIMER MAY NOT APPLY TO LICENSEE.\L \n\n7.\ + \ This License Agreement may be terminated by CNRI (i) immediately upon written notice from\ + \ CNRI of any material breach by the Licensee, if the nature of the breach is such that\ + \ it cannot be promptly remedied; or (ii) sixty (60) days following notice from CNRI to\ + \ Licensee of a material remediable breach, if Licensee has not remedied such breach within\ + \ that sixty-day period.\L \n\n8. This License Agreement shall be governed by and interpreted\ + \ in all respects by the law of the State of Virginia, excluding conflict of law provisions.\ + \ Nothing in this Agreement shall be deemed to create any relationship of agency, partnership,\ + \ or joint venture between CNRI and Licensee.\L \n\n9. By clicking on the \"ACCEPT\" button\ + \ where indicated, or by installing, copying or otherwise using the Software, Licensee agrees\ + \ to be bound by the terms and conditions of this License Agreement." json: cnri-jython.json - yml: cnri-jython.yml + yaml: cnri-jython.yml html: cnri-jython.html - text: cnri-jython.LICENSE + license: cnri-jython.LICENSE - license_key: cnri-python-1.6 + category: Permissive spdx_license_key: CNRI-Python other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + CNRI OPEN SOURCE LICENSE AGREEMENT + + IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHERWISE USING PYTHON 1.6 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT. + + 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 software in source or binary form and its associated documentation, as released at the www.python.org Internet site on September 5, 2000 ("Python 1.6"). + + 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 alone or in any derivative version, provided, however, that CNRI's License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) 1995-2000 Corporation for National Research Initiatives; All Rights Reserved" are retained in Python 1.6 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 is made available subject to the terms and conditions in CNRI's License Agreement. This Agreement together with Python 1.6 may be located on the Internet using the following unique, persistent identifier (known as a handle): 1895.22/1012. This Agreement may also be obtained from a proxy server on the Internet using the following URL: http://hdl.handle.net/1895.22/1012". + + 3. In the event Licensee prepares a derivative work that is based on or incorporates Python 1.6 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. + + 4. CNRI is making Python 1.6 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 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 1.6 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6, 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 and interpreted in all respects by the law of the State of Virginia, excluding conflict of law provisions. 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, Licensee agrees to be bound by the terms and conditions of this License Agreement. json: cnri-python-1.6.json - yml: cnri-python-1.6.yml + yaml: cnri-python-1.6.yml html: cnri-python-1.6.html - text: cnri-python-1.6.LICENSE + license: cnri-python-1.6.LICENSE - license_key: cnri-python-1.6.1 + category: Permissive spdx_license_key: CNRI-Python-GPL-Compatible other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "CNRI OPEN SOURCE GPL-COMPATIBLE LICENSE AGREEMENT \n\nIMPORTANT: PLEASE READ THE FOLLOWING\ + \ AGREEMENT CAREFULLY. \n\nBY CLICKING ON \"ACCEPT\" WHERE INDICATED BELOW, OR BY COPYING,\ + \ INSTALLING OR OTHERWISE USING PYTHON 1.6.1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO\ + \ THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT. \n\n1. 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. \n\n2. 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 © 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\"\ + . \n\n3. 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. \n\n4. 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. \n\n5. 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. \n\n6. This License\ + \ Agreement will automatically terminate upon a material breach of its terms and conditions.\ + \ \n\n7. 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. \n\n8. 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. \n\nACCEPT" json: cnri-python-1.6.1.json - yml: cnri-python-1.6.1.yml + yaml: cnri-python-1.6.1.yml html: cnri-python-1.6.1.html - text: cnri-python-1.6.1.LICENSE + license: cnri-python-1.6.1.LICENSE - license_key: cockroach + category: Source-available spdx_license_key: LicenseRef-scancode-cockroach other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + CockroachDB Community License Agreement + + Please read this CockroachDB Community License Agreement (the "Agreement") + carefully before using CockroachDB (as defined below), which is offered by + Cockroach Labs, Inc. or its affiliated Legal Entities ("Cockroach Labs"). + + By downloading CockroachDB or using it in any manner, You agree that You have + read and agree to be bound by the terms of this Agreement.If You are accessing + CockroachDB on behalf of a Legal Entity, You represent and warrant that You have + the authority to agree to these terms on its behalf and the right to bind that + Legal Entity to this Agreement.Use of CockroachDB is expressly conditioned upon + Your assent to all the terms of this Agreement, to the exclusion of all other + terms. + + 1. Definitions.In addition to other terms defined elsewhere in this Agreement, + the terms below have the following meanings. + + (a) "CockroachDB" shall mean the SQL database software provided by Cockroach + Labs, including both CockroachDB Core and CockroachDB Enterprise editions, as + defined below. + + (b) "CockroachDB Core" shall mean the open source version of CockroachDB, + available free of charge at + + https://github.com/cockroachdb/cockroach + + (c) "Cockroach Enterprise Edition" shall mean the additional features made + available by Cockroach Labs, the use of which is subject to additional terms set + out below. + + (d) "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 Cockroach Labs 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 Cockroach Labs 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, + Cockroach Labs 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." + + (e) "Contributor" shall mean any copyright owner or individual or Legal + Entity authorized by the copyright owner, other than Cockroach Labs, from whom + Cockroach Labs receives a Contribution that Cockroach Labs subsequently + incorporates within the Work. + + (f) "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work, such as a translation, + abridgement, condensation, or any other recasting, transformation, or adaptation + 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. + + (g) "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. + + (h) "License" shall mean the terms and conditions for use, reproduction, and + distribution of a Work as defined by this Agreement. + + (i) "Licensor" shall mean Cockroach Labs or a Contributor, as applicable. + + (j) "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. + + (k) "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation source, and + configuration files. + + (l) "Third Party Works" shall mean Works, including Contributions, and other + technology owned by a person or Legal Entity other than Cockroach Labs, as + indicated by a copyright notice that is included in or attached to such Works or + technology. + + (m) "Work" shall mean the work of authorship, whether in Source or Object + form, made available under a License, as indicated by a copyright notice that is + included in or attached to the work. + + (n) "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + 2. Licenses. + + (a) License to CockroachDB Core.The License for CockroachDB Core is the Apache + License, Version 2.0 ("Apache License").The Apache License includes a grant + of patent license, as well as redistribution rights that are contingent on + several requirements.Please see + + http://www.apache.org/licenses/LICENSE-2.0 + + for full terms.CockroachDB Core is a no-cost, entry-level license and as such, + contains the following disclaimers: NOTWITHSTANDING ANYTHING TO THE CONTRARY + HEREIN, COCKROACHDB CORE IS PROVIDED "AS IS" AND "AS AVAILABLE", AND ALL + EXPRESS OR IMPLIED WARRANTIES ARE EXCLUDED AND DISCLAIMED, INCLUDING WITHOUT + LIMITATION THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, AND ANY WARRANTIES ARISING BY STATUTE OR OTHERWISE IN + LAW OR FROM COURSE OF DEALING, COURSE OF PERFORMANCE, OR USE IN TRADE.For + clarity, the terms of this Agreement, other than the relevant definitions in + Section 1 and this Section 2(a) do not apply to CockroachDB Core. + + (b) License to CockroachDB Enterprise Edition. + + i Grant of Copyright License: Subject to the terms of this Agreement, Licensor + hereby grants to You a worldwide, non-exclusive, non-transferable limited + license to reproduce, prepare Enterprise Derivative Works (as defined below) of, + publicly display, publicly perform, sublicense, and distribute CockroachDB + Enterprise Edition for Your business purposes, for so long as You are not in + violation of this Section 2(b) and are current on all payments required by + Section 4 below. + + ii Grant of Patent License: Subject to the terms of this Agreement, Licensor + hereby grants to You a worldwide, non-exclusive, non-transferable limited patent + license to make, have made, use, offer to sell, sell, import, and otherwise + transfer CockroachDB Enterprise Edition, where such license applies only to + those patent claims licensable by Licensor 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. + + iii License to Third Party Works:From time to time Cockroach Labs may use, or + provide You access to, Third Party Works in connection CockroachDB Enterprise + Edition.You acknowledge and agree that in addition to this Agreement, Your use + of Third Party Works is subject to all other terms and conditions set forth in + the License provided with or contained in such Third Party Works.Some Third + Party Works may be licensed to You solely for use with CockroachDB Enterprise + Edition under the terms of a third party License, or as otherwise notified by + Cockroach Labs, and not under the terms of this Agreement.You agree that the + owners and third party licensors of Third Party Works are intended third party + beneficiaries to this Agreement. + + 3. Support.From time to time, in its sole discretion, Cockroach Labs may offer + professional services or support for CockroachDB, which may now or in the future + be subject to additional fees. + + 4. Fees for CockroachDB Enterprise Edition or CockroachDB Support. + + (a) Fees.The License to CockroachDB Enterprise Edition is conditioned upon Your + payment of the fees specified on + + /pricing/ + + which You agree to pay to Cockroach Labs in accordance with the payment terms + set out on that page.Any professional services or support for CockroachDB may + also be subject to Your payment of fees, which will be specified by Cockroach + Labs when you sign up to receive such professional services or support. + Cockroach Labs reserves the right to change the fees at any time with prior + written notice; for recurring fees, any such adjustments will take effect as of + the next pay period. + + (b) Overdue Payments and Taxes. Overdue payments are subject to a service charge + equal to the lesser of 1.5% per month or the maximum legal interest rate allowed + by law, and You shall pay all Cockroach Labs’ reasonable costs of collection, + including court costs and attorneys’ fees.Fees are stated and payable in U.S. + dollars and are exclusive of all sales, use, value added and similar taxes, + duties, withholdings and other governmental assessments (but excluding taxes + based on Cockroach Labs’ income) that may be levied on the transactions + contemplated by this Agreement in any jurisdiction, all of which are Your + responsibility unless you have provided Cockroach Labs with a valid tax-exempt + certificate. + + (c) Record-keeping and Audit.If fees for CockroachDB Enterprise Edition are + based on the number of cores or servers running on CockroachDB Enterprise + Edition or another use-based unit of measurement, You must maintain complete and + accurate records with respect Your use of CockroachDB Enterprise Edition and + will provide such records to Cockroach Labs for inspection or audit upon + Cockroach Labs’ reasonable request.If an inspection or audit uncovers + additional usage by You for which fees are owed under this Agreement, then You + shall pay for such additional usage at Cockroach Labs’ then-current rates. + + 5. Trial License.If You have signed up for a trial or evaluation of CockroachDB + Enterprise Edition, Your License to CockroachDB Enterprise Edition is granted + without charge for the trial or evaluation period specified when You signed up, + or if no term was specified, for thirty (30) calendar days, provided that Your + License is granted solely for purposes of Your internal evaluation of Cockroach + Enterprise Edition during the trial or evaluation period (a "Trial + License").You may not use CockroachDB Enterprise Edition under a Trial License + more than once in any twelve (12) month period.Cockroach Labs may revoke a Trial + License at any time and for any reason.Sections 3, 4, 9 and 11 of this Agreement + do not apply to Trial Licenses. + + 6. 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. + + (e) Enterprise Derivative Works: Derivative Works of CockroachDB Enterprise + Edition ("Enterprise Derivative Works") may be made, reproduced and + distributed in any medium, with or without modifications, in Source or Object + form, provided that each Enterprise Derivative Work will be considered to + include a License to CockroachDB Enterprise Edition and thus will be subject to + the payment of fees to Cockroach Labs by any user of the Enterprise Derivative + Work. + + 7. Submission of Contributions. Unless You explicitly state otherwise, any + Contribution intentionally submitted for inclusion in CockroachDB by You to + Cockroach Labs shall be under the terms and conditions of + + https://cla-assistant.io/cockroachdb/cockroach + + (which is based off of the Apache License), without any additional terms or + conditions, payments of royalties or otherwise to Your benefit.Notwithstanding + the above, nothing herein shall supersede or modify the terms of any separate + license agreement You may have executed with Cockroach Labs regarding such + Contributions. + + 8. Trademarks.This License does not grant permission to use the trade names, + trademarks, service marks, or product names of Licensor, except as required for + reasonable and customary use in describing the origin of the Work and + reproducing the content of the NOTICE file. + + 9. Limited Warranty. + + (a) Warranties.Cockroach Labs warrants to You that: (i) CockroachDB Enterprise + Edition will materially perform in accordance with the applicable documentation + for ninety (90) days after initial delivery to You; and (ii) any professional + services performed by Cockroach Labs under this Agreement will be performed in a + workmanlike manner, in accordance with general industry standards. + + (b) Exclusions.Cockroach Labs’ warranties in this Section 9 do not extend to + problems that result from: (i) Your failure to implement updates issued by + Cockroach Labs during the warranty period; (ii) any alterations or additions + (including Enterprise Derivative Works and Contributions) to CockroachDB not + performed by or at the direction of Cockroach Labs; (iii) failures that are not + reproducible by Cockroach Labs; (iv) operation of CockroachDB Enterprise Edition + in violation of this Agreement or not in accordance with its documentation; (v) + failures caused by software, hardware or products not licensed or provided by + Cockroach Labs hereunder; or (vi) Third Party Works. + + (c) Remedies.In the event of a breach of a warranty under this Section 9, + Cockroach Labs will, at its discretion and cost, either repair, replace or + re-perform the applicable Works or services or refund a portion of fees + previously paid to Cockroach Labs that are associated with the defective Works + or services. This is Your exclusive remedy, and Cockroach Labs’ sole + liability, arising in connection with the limited warranties herein. + + 10. Disclaimer of Warranty.Except as set out in Section 9, unless required by + applicable law, 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, arising out of course of dealing, course of + performance, or usage in trade, including, without limitation, any warranties or + conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, CORRECTNESS, + RELIABILITY, or FITNESS FOR A PARTICULAR PURPOSE, all of which are hereby + disclaimed.You are solely responsible for determining the appropriateness of + using or redistributing Works and assume any risks associated with Your exercise + of permissions under the applicable License for such Works. + + 11. Limited Indemnity. + + (a) Indemnity.Cockroach Labs will defend, indemnify and hold You harmless + against any third party claims, liabilities or expenses incurred (including + reasonable attorneys’ fees), as well as amounts finally awarded in a + settlement or a non-appealable judgement by a court ("Losses"), to the + extent arising from any claim or allegation by a third party that CockroachDB + Enterprise Edition infringes or misappropriates a valid United States patent, + copyright or trade secret right of a third party; provided that You give + Cockroach Labs: (i) prompt written notice of any such claim or allegation; (ii) + sole control of the defense and settlement thereof; and (iii) reasonable + cooperation and assistance in such defense or settlement.If any Work within + CockroachDB Enterprise Edition becomes or, in Cockroach Labs’ opinion, is + likely to become, the subject of an injunction, Cockroach Labs may, at its + option, (A) procure for You the right to continue using such Work, (B) replace + or modify such Work so that it becomes non-infringing without substantially + compromising its functionality, or, if (A) and (B) are not commercially + practicable, then (C) terminate Your license to the allegedly infringing Work + and refund to You a prorated portion of the prepaid and unearned fees for such + infringing Work.The foregoing states the entire liability of Cockroach Labs with + respect to infringement of patents, copyrights, trade secrets or other + intellectual property rights. + + (b) Exclusions.The foregoing obligations shall not apply to: (i) Works modified + by any party other than Cockroach Labs (including Enterprise Derivative Works + and Contributions), if the alleged infringement relates to such modification, + (ii) Works combined or bundled with any products, processes or materials not + provided by Cockroach Labs where the alleged infringement relates to such + combination, (iii) use of a version of CockroachDB Enterprise Edition other than + the version that was current at the time of such use, as long as a + non-infringing version had been released, (iv) any Works created to Your + specifications, (v) infringement or misappropriation of any proprietary right in + which You have an interest, or (vi) Third Party Works.You will defend, indemnify + and hold Cockroach Labs harmless against any Losses arising from any such claim + or allegation, subject to conditions reciprocal to those in Section 11(a). + + 12. Limitation of Liability.In no event and under no legal or equitable theory, + whether in tort (including negligence), contract, or otherwise, unless required + by applicable law (such as deliberate and grossly negligent acts), and + notwithstanding anything in this Agreement to the contrary, shall Licensor or + any Contributor be liable to You for (i) any amounts in excess, in the + aggregate, of the fees paid by You to Cockroach Labs under this Agreement in the + twelve (12) months preceding the date the first cause of liability arose), or + (ii) any indirect, special, incidental, punitive, exemplary, reliance, or + consequential damages of any character arising as a result of this Agreement or + out of the use or inability to use the Work (including but not limited to + damages for loss of goodwill, profits, data or data use, work stoppage, computer + failure or malfunction, cost of procurement of substitute goods, technology or + services, or any and all other commercial damages or losses), even if such + Licensor or Contributor has been advised of the possibility of such damages. + THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL + PURPOSE OF ANY LIMITED REMEDY. + + 13. Accepting Warranty or Additional Liability.While redistributing Works or + Derivative Works thereof, and without limiting your obligations under Section 6, + 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 Cockroach Labs and each + other Contributor harmless for any liability incurred by, or claims asserted + against, such Contributor by reason of your accepting any such warranty or + additional liability. + + 14. General. + + (a) Relationship of Parties.You and Cockroach Labs are independent contractors, + and nothing herein shall be deemed to constitute either party as the agent or + representative of the other or both parties as joint venturers or partners for + any purpose. + + (b) Export Control.You shall comply with the U.S. Foreign Corrupt Practices Act + and all applicable export laws, restrictions and regulations of the U.S. + Department of Commerce, and any other applicable U.S. and foreign authority. + + (c) Assignment.This Agreement and the rights and obligations herein may not be + assigned or transferred, in whole or in part, by You without the prior written + consent of Cockroach Labs.Any assignment in violation of this provision is + void.This Agreement shall be binding upon, and inure to the benefit of, the + successors and permitted assigns of the parties. + + (d) Governing Law.This Agreement shall be governed by and construed under the + laws of the State of New York and the United States without regard to conflicts + of laws provisions thereof, and without regard to the Uniform Computer + Information Transactions Act. + + (e) Attorneys’ Fees.In any action or proceeding to enforce rights under this + Agreement, the prevailing party shall be entitled to recover its costs, expenses + and attorneys’ fees. + + (f) Severability.If any provision of this Agreement is held to be invalid, + illegal or unenforceable in any respect, that provision shall be limited or + eliminated to the minimum extent necessary so that this Agreement otherwise + remains in full force and effect and enforceable. + + (g) Entire Agreement; Waivers; Modification.This Agreement constitutes the + entire agreement between the parties relating to the subject matter hereof and + supersedes all proposals, understandings, or discussions, whether written or + oral, relating to the subject matter of this Agreement and all past dealing or + industry custom. The failure of either party to enforce its rights under this + Agreement at any time for any period shall not be construed as a waiver of such + rights. No changes, modifications or waivers to this Agreement will be effective + unless in writing and signed by both parties. json: cockroach.json - yml: cockroach.yml + yaml: cockroach.yml html: cockroach.html - text: cockroach.LICENSE + license: cockroach.LICENSE - license_key: cockroachdb-use-grant-for-bsl-1.1 + category: Source-available spdx_license_key: LicenseRef-scancode-cockroachdb-use-grant-bsl-1.1 other_spdx_license_keys: - LicenseRef-scancode-cockroachdb-use-grant-for-bsl-1.1 is_exception: yes is_deprecated: no - category: Source-available + text: | + Parameters + Licensor: Cockroach Labs, Inc. + Licensed Work: CockroachDB 19.2 + The Licensed Work is (c) 2019 Cockroach Labs, Inc. + + Additional Use Grant: You may make use of the Licensed Work, provided that + you may not use the Licensed Work for a Database + Service. + + A “Database Service” is a commercial offering that + allows third parties (other than your employees and + contractors) to access the functionality of the + Licensed Work by creating tables whose schemas are + controlled by such third parties. + + Change Date: 2022-10-01 + + Change License: Apache License, Version 2.0 + + For information about alternative licensing arrangements for the Software, + please visit: https://cockroachlabs.com/ + + Notice + + The Business Source License (this document, or the “License”) is not an Open + Source license. However, the Licensed Work will eventually be made available + under an Open Source License, as stated in this License. json: cockroachdb-use-grant-for-bsl-1.1.json - yml: cockroachdb-use-grant-for-bsl-1.1.yml + yaml: cockroachdb-use-grant-for-bsl-1.1.yml html: cockroachdb-use-grant-for-bsl-1.1.html - text: cockroachdb-use-grant-for-bsl-1.1.LICENSE + license: cockroachdb-use-grant-for-bsl-1.1.LICENSE - license_key: code-credit-license-1.0.1 + category: Permissive spdx_license_key: LicenseRef-scancode-code-credit-license-1.0.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + # Code Credit License + + Version 1.0.1 + + ## Purpose + + This license gives everyone as much permission to work with + this software as possible, while protecting contributors + from liability and requiring credit for their work. + + ## Agreement + + In order to receive this license, you have to agree + to its rules. Those rules are both obligations under + that agreement and conditions to your license. Don't do + anything with this software that triggers a rule you can't + or won't follow. + + ## Notices + + Make sure everyone who gets a copy of any part of + this software from you, with or without changes, + also gets the text of this license or a link to + . + + ## Give Credit + + You must give this software and each contributor credit + for contributing to goods or services that you develop, + test, produce, or provide with the help of this software. + + ## How to Give Credit + + In general, you must give credit in such a way that others + can freely and readily find a written notice identifying + this software, by name, as a contribution to your goods + or services, as well as each contributor, by name, as a + contributor to this software. You must not do anything + to stop others from sharing, publishing, or using those + credits. + + ## Conventions + + If widespread convention dictates a particular way to + give credit for your kind of goods or services, such as + by end credit for a film, citation for an academic paper, + acknowledgment for a book, or billing for a show, then + follow that convention. For software provided to users to + run on their own computers, give credit in documentation, + notice files, and any "about" page or screen. For software + provided as a web service, give credit in `credits.txt` + according to . + + ## Who to Credit + + If contributors give their names or the name of this + software along with the software in a conventional way, + such as in software package metadata or on an "about" + page or screen, you may rely on the names they give that + way to be accurate and complete. If contributors don't + give names that way, but include a link to a homepage + for this software, you must investigate that homepage for + names to credit. If contributors give neither names to + credit nor a link to a homepage, you do not have to do + independent research to find names to credit. + + ## Declining Credit + + On written request from a contributor, you must remove + their name from the credits for your goods or services + going forward. On written request from all credited + contributors to this software, you must do the same for + the name of this software. + + ## Copyright + + Each contributor licenses you to do everything with this + software that would otherwise infringe that contributor's + copyright in it. + + ## Patent + + Each contributor licenses you to do everything with this + software that would otherwise infringe any patent claims + they can license or become able to license. + + ## Excuse + + If anyone notifies you in writing that you have + not complied with [Notices](#notices) or [Give + Credit](#give-credit), you can keep your license by + taking all practical steps to comply within thirty days + after the notice. If you do not do so, your license + ends immediately. + + ## Reliability + + No contributor can revoke this license. + + ## No Liability + + ***As far as the law allows, this software comes as is, + without any warranty or condition, and no contributor + will be liable to anyone for any damages related to this + software or this license, under any kind of legal claim.*** json: code-credit-license-1.0.1.json - yml: code-credit-license-1.0.1.yml + yaml: code-credit-license-1.0.1.yml html: code-credit-license-1.0.1.html - text: code-credit-license-1.0.1.LICENSE + license: code-credit-license-1.0.1.LICENSE - license_key: codeguru-permissions + category: Permissive spdx_license_key: LicenseRef-scancode-codeguru-permissions other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permissions + + As you know, this site is a valuable resource for the developer community. + Please note, however, that to avoid legal complications, we need to obtain your + permission to use any computer code and any related materials ("resources") that + you are providing to us. Accordingly, by submitting any such resource to + CodeGuru, you grant to QuinStreet a nonexclusive, worldwide, perpetual license + to reproduce, distribute, adapt, perform, display, and sublicense the submitted + resource (in both object and source code formats, as well as on and off the + Web), and you acknowledge that you have the authority to grant such rights to + QuinStreet. + + By submitting the resource, you also grant your article's readers the permission + to use any source code in the resource for commercial or noncommercial software. + PLEASE NOTE THAT YOU RETAIN OWNERSHIP OF ANY COPYRIGHTS IN ANY RESOURCES + SUBMITTED! + + ALSO, IN MAKING THE RESOURCE AVAILABLE TO OTHER SITE VISITORS FOR DOWNLOADING, + QUINSTREET WILL INFORM SUCH OTHER VISITORS THAT, ALTHOUGH THEY MAY DOWNLOAD ANY + RESOURCES FOR COMMERCIAL OR NONCOMMERCIAL USES, THEY MAY NOT REPUBLISH THE + SOURCE CODE SO THAT IT IS ACCESSIBLE TO THE PUBLIC WITHOUT FIRST OBTAINING THE + COPYRIGHT OWNER'S PERMISSION. + + For CodeGuru's standard Legal Notices, Licensing, Reprints & Permissions, and + Privacy Policy, see the links at the bottom of any CodeGuru page. json: codeguru-permissions.json - yml: codeguru-permissions.yml + yaml: codeguru-permissions.yml html: codeguru-permissions.html - text: codeguru-permissions.LICENSE + license: codeguru-permissions.LICENSE - license_key: codesourcery-2004 + category: Permissive spdx_license_key: LicenseRef-scancode-codesourcery-2004 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this file + for any purpose is hereby granted without fee, provided that + the above copyright notice and this notice appears in all + copies. + + This file is distributed WITHOUT ANY WARRANTY; without even the implied + warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. json: codesourcery-2004.json - yml: codesourcery-2004.yml + yaml: codesourcery-2004.yml html: codesourcery-2004.html - text: codesourcery-2004.LICENSE + license: codesourcery-2004.LICENSE - license_key: codexia + category: Proprietary Free spdx_license_key: LicenseRef-scancode-codexia other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + By Mike Ryan (mike@codexia.com) + Copyright (c) 2000, portions (c) Allen Denver + 07.30.2000 + + Some of the code based on Allen Denver's article "Using the Performance Data Helper Library" + + Free usage granted in all applications including commercial. + Do NOT distribute without permission from me. I can be reached + at mike@codexia.com, http://www.codexia.com + Please feel free to email me about this class. + + Compatibility: + Windows 98, Windows NT 4.0 SP 3 (Dlls required), Windows 2000 + + Development Environ: + Visual C++ 6.0 + + Libraries / DLLs: + pdh.lib (linked in) + pdh.dll (provided with Windows 2000, must copy in for NT 4.0) json: codexia.json - yml: codexia.yml + yaml: codexia.yml html: codexia.html - text: codexia.LICENSE + license: codexia.LICENSE - license_key: cognitive-web-osl-1.1 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-cognitive-web-osl-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "CognitiveWeb Open Source License\n\nVersion 1.1\n\nThis CognitiveWeb™ Open Source License\ + \ (the \"License\") applies to\nCognitiveWeb software products as well as any updates or\ + \ maintenance\nreleases of that software (\"CognitiveWeb Products\") that are distributed\n\ + by CognitiveWeb. (\"Licensor\"). Any CognitiveWeb Product licensed\npursuant to this License\ + \ is a Licensed Product. Licensed Product, in\nits entirety, is protected by U.S. copyright\ + \ law. This License\nidentifies the terms under which you may use, copy, distribute or\ + \ modify\nLicensed Product.\n\nPreamble\n\nThis Preamble is intended to describe, in plain\ + \ English, the nature and\nscope of this License. However, this Preamble is not a part of\ + \ this\nlicense. The legal effect of this License is dependent only upon the\nterms of the\ + \ License and not this Preamble. This License complies with\nthe Open Source Definition\ + \ and has been approved by Open Source\nInitiative. Software distributed under this License\ + \ may be marked as\n\"OSI Certified Open Source Software.\"\n\nThis License provides that:\n\ + \n1. You may use, sell or give away the Licensed Product, alone or as\na component\ + \ of an aggregate software distribution containing programs\nfrom several different sources.\ + \ No royalty or other fee is required.\n\n2. Both Source Code and executable versions\ + \ of the Licensed\nProduct, including Modifications made by previous Contributors, are\n\ + available for your use. (The terms \"Licensed Product,\" \"Modifications,\"\n\"Contributors\"\ + \ and \"Source Code\" are defined in the License.)\n\n3. You are allowed to make Modifications\ + \ to the Licensed Product,\nand you can create Derivative Works from it. (The term \"Derivative\n\ + Works\" is defined in the License.)\n\n4. By accepting the Licensed Product under the\ + \ provisions of this\nLicense, you agree that any Modifications you make to the Licensed\n\ + Product and then distribute are governed by the provisions of this\nLicense. In particular,\ + \ you must make the Source Code of your\nModifications available to others.\n\n5. You\ + \ may use the Licensed Product for any purpose, but the\nLicensor is not providing you any\ + \ warranty whatsoever, nor is the\nLicensor accepting any liability in the event that the\ + \ Licensed Product\ndoesn't work properly or causes you any injury or damages.\n\n6. \ + \ If you sublicense the Licensed Product or Derivative Works, you\nmay charge fees for\ + \ warranty or support, or for accepting indemnity or\nliability obligations to your customers.\ + \ You cannot charge for the\nSource Code.\n\n7. If you assert any patent claims against\ + \ the Licensor relating to\nthe Licensed Product, or if you breach any terms of the License,\ + \ your\nrights to the Licensed Product under this License automatically\nterminate. You\ + \ may use this License to distribute your own Derivative\nWorks, in which case the provisions\ + \ of this License will apply to your\nDerivative Works just as they do to the original Licensed\ + \ Product.\nAlternatively, you may distribute your Derivative Works under any other\nOSI-approved\ + \ Open Source license, or under a proprietary license of your\nchoice. If you use any license\ + \ other than this License, however, you\nmust continue to fulfill the requirements of this\ + \ License (including the\nprovisions relating to publishing the Source Code) for those portions\ + \ of\nyour Derivative Works that consist of the Licensed Product, including\nthe files containing\ + \ Modifications.\n\nNew versions of this License may be published from time to time. You\n\ + may choose to continue to use the license terms in this version of the\nLicense or those\ + \ from the new version. However, only the Licensor has\nthe right to change the License\ + \ terms as they apply to the Licensed\nProduct. This License relies on precise definitions\ + \ for certain terms.\nThose terms are defined when they are first used, and the definitions\n\ + are repeated for your convenience in a Glossary at the end of the\nLicense.\n\nLicense Terms\n\ + \n1. Grant of License From Licensor. Licensor hereby grants you a\nworld-wide, royalty-free,\ + \ non-exclusive license, subject to third party\nintellectual property claims, to do the\ + \ following:\n\na. Use, reproduce, modify, display, perform, sublicense and\ndistribute\ + \ any Modifications created by such Contributor or portions\nthereof, in both Source Code\ + \ or as an executable program, either on an\nunmodified basis or as part of Derivative Works.\n\ + \nb. Under claims of patents now or hereafter owned or controlled by\nContributor,\ + \ to make, use, sell, offer for sale, have made, and/or\notherwise dispose of Modifications\ + \ or portions thereof, but solely to\nthe extent that any such claim is necessary to enable\ + \ you to make, use,\nsell, offer for sale, have made, and/or otherwise dispose of\nModifications\ + \ or portions thereof or Derivative Works thereof.\n\n2. Grant of License to Modifications\ + \ From Contributor. \"Modifications\"\nmeans any additions to or deletions from the substance\ + \ or structure of\n(i) a file containing Licensed Product, or (ii) any new file that\ncontains\ + \ any part of Licensed Product. Hereinafter in this License, the\nterm \"Licensed Product\"\ + \ shall include all previous Modifications that\nyou receive from any Contributor. By application\ + \ of the provisions in\nSection 4(a) below, each person or entity who created or contributed\ + \ to\nthe creation of, and distributed, a Modification (a \"Contributor\")\nhereby grants\ + \ you a world-wide, royalty-free, non-exclusive license,\nsubject to third party intellectual\ + \ property claims, to do the\nfollowing:\n\na. Use, reproduce, modify, display, perform,\ + \ sublicense and distribute\nany Modifications created by such Contributor or portions thereof,\ + \ in\nboth Source Code or as an executable program, either on an unmodified\nbasis or as\ + \ part of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled\ + \ by\nContributor, to make, use, sell, offer for sale, have made, and/or\notherwise dispose\ + \ of Modifications or portions thereof, but solely to\nthe extent that any such claim is\ + \ necessary to enable you to make, use,\nsell, offer for sale, have made, and/or otherwise\ + \ dispose of\nModifications or portions thereof or Derivative Works thereof.\n\n3. \ + \ Exclusions From License Grant. Nothing in this License shall be\ndeemed to grant any\ + \ rights to trademarks, copyrights, patents, trade\nsecrets or any other intellectual property\ + \ of Licensor or any\nContributor except as expressly stated herein. No patent license is\n\ + granted separate from the Licensed Product, for code that you delete\nfrom the Licensed\ + \ Product, or for combinations of the Licensed Product\nwith other software or hardware.\ + \ No right is granted to the trademarks\nof Licensor or any Contributor even if such marks\ + \ are included in the\nLicensed Product. Nothing in this License shall be interpreted to\n\ + prohibit Licensor from licensing under different terms from this License\nany code that\ + \ Licensor otherwise would have a right to license.\n\n4. Your Obligations Regarding\ + \ Distribution. \n\na. Application of This License to Your Modifications. As an\n\ + express condition for your use of the Licensed Product, you hereby agree\nthat any Modifications\ + \ that you create or to which you contribute, and\nwhich you distribute, are governed by\ + \ the terms of this License\nincluding, without limitation, Section 2. Any Modifications\ + \ that you\ncreate or to which you contribute may be distributed only under the\nterms of\ + \ this License or a future version of this License released under\nSection 7. You must\ + \ include a copy of this License with every copy of\nthe Modifications you distribute. \ + \ You agree not to offer or impose any\nterms on any Source Code or executable version of\ + \ the Licensed Product\nor Modifications that alter or restrict the applicable version of\ + \ this\nLicense or the recipients' rights hereunder. However, you may include an\nadditional\ + \ document offering the additional rights described in Section\n4(e).\n\nb. Availability\ + \ of Source Code. You must make available, under\nthe terms of this License, the Source\ + \ Code of the Licensed Product and\nany Modifications that you distribute, either on the\ + \ same media as you\ndistribute any executable or other form of the Licensed Product, or\ + \ via\na mechanism generally accepted in the software development community for\nthe electronic\ + \ transfer of data (an \"Electronic Distribution\nMechanism\"). The Source Code for any\ + \ version of Licensed Product or\nModifications that you distribute must remain available\ + \ for at least\ntwelve (12) months after the date it initially became available, or at\n\ + least six (6) months after a subsequent version of said Licensed Product\nor Modifications\ + \ has been made available. You are responsible for\nensuring that the Source Code version\ + \ remains available even if the\nElectronic Distribution Mechanism is maintained by a third\ + \ party.\n\nc. Description of Modifications. You must cause any Modifications\nthat\ + \ you create or to which you contribute, and which you distribute, to\ncontain a file documenting\ + \ the additions, changes or deletions you made\nto create or contribute to those Modifications,\ + \ and the dates of any\nsuch additions, changes or deletions. You must include a prominent\n\ + statement that the Modifications are derived, directly or indirectly,\nfrom the Licensed\ + \ Product and include the names of the Licensor and any\nContributor to the Licensed Product\ + \ in (i) the Source Code and (ii) in\nany notice displayed by a version of the Licensed\ + \ Product you distribute\nor in related documentation in which you describe the origin or\n\ + ownership of the Licensed Product. You may not modify or delete any\npreexisting copyright\ + \ notices in the Licensed Product.\n\nd. Intellectual Property Matters.\n\n i.\ + \ Third Party Claims. \nIf you have knowledge that a license to a third party's\ + \ intellectual\nproperty right is required to exercise the rights granted by this\nLicense,\ + \ you must include a text file with the Source Code distribution\ntitled \"LEGAL\" that\ + \ describes the claim and the party making the claim\nin sufficient detail that a recipient\ + \ will know whom to contact. If you\nobtain such knowledge after you make any Modifications\ + \ available as\ndescribed in Section 4(b), you shall promptly modify the LEGAL file in\n\ + all copies you make available thereafter and shall take other steps\n(such as notifying\ + \ appropriate mailing lists or newsgroups) reasonably\ncalculated to inform those who received\ + \ the Licensed Product from you\nthat new knowledge has been obtained.\n\n ii. \ + \ Contributor APIs. If your Modifications include \nan application programming interface\ + \ (\"API\") and you have knowledge of\npatent licenses that are reasonably necessary to\ + \ implement that API, you\nmust also include this information in the LEGAL file.\n\n \ + \ iii. Representations. You represent that, except as \ndisclosed pursuant to\ + \ 4(d)(i) above, you believe that any Modifications\nyou distribute are your original creations\ + \ and that you have sufficient\nrights to grant the rights conveyed by this License.\n\n\ + e. Required Notices. You must duplicate this License in any\ndocumentation you provide\ + \ along with the Source Code of any\nModifications you create or to which you contribute,\ + \ and which you\ndistribute, wherever you describe recipients' rights relating to\nLicensed\ + \ Product. You must duplicate the notice contained in Exhibit A\n(the \"Notice\") in each\ + \ file of the Source Code of any copy you\ndistribute of the Licensed Product. If you created\ + \ a Modification, you\nmay add your name as a Contributor to the Notice. If it is not possible\n\ + to put the Notice in a particular Source Code file due to its structure,\nthen you must\ + \ include such Notice in a location (such as a relevant\ndirectory file) where a user would\ + \ be likely to look for such a notice.\nYou may choose to offer, and charge a fee for, warranty,\ + \ support,\nindemnity or liability obligations to one or more recipients of Licensed\nProduct.\ + \ However, you may do so only on your own behalf, and not on\nbehalf of the Licensor or\ + \ any Contributor. You must make it clear that\nany such warranty, support, indemnity or\ + \ liability obligation is offered\nby you alone, and you hereby agree to indemnify the Licensor\ + \ and every\nContributor for any liability incurred by the Licensor or such\nContributor\ + \ as a result of warranty, support, indemnity or liability\nterms you offer.\n\nf. \ + \ Distribution of Executable Versions. You may distribute\nLicensed Product as an executable\ + \ program under a license of your choice\nthat may contain terms different from this License\ + \ provided (i) you have\nsatisfied the requirements of Sections 4(a) through 4(e) for that\n\ + distribution, (ii) you include a conspicuous notice in the executable\nversion, related\ + \ documentation and collateral materials stating that the\nSource Code version of the Licensed\ + \ Product is available under the terms\nof this License, including a description of how\ + \ and where you have\nfulfilled the obligations of Section 4(b), (iii) you retain all existing\n\ + copyright notices in the Licensed Product, and (iv) you make it clear\nthat any terms that\ + \ differ from this License are offered by you alone,\nnot by Licensor or any Contributor.\ + \ You hereby agree to indemnify the\nLicensor and every Contributor for any liability incurred\ + \ by Licensor or\nsuch Contributor as a result of any terms you offer.\n\ng. Distribution\ + \ of Derivative Works. You may create Derivative\nWorks (e.g., combinations of some or\ + \ all of the Licensed Product with\nother code) and distribute the Derivative Works as products\ + \ under any\nother license you select, with the proviso that the requirements of this\n\ + License are fulfilled for those portions of the Derivative Works that\nconsist of the Licensed\ + \ Product or any Modifications thereto.\n\n5. Inability to Comply Due to Statute or\ + \ Regulation. If it is\nimpossible for you to comply with any of the terms of this License\ + \ with\nrespect to some or all of the Licensed Product due to statute, judicial\norder,\ + \ or regulation, then you must (i) comply with the terms of this\nLicense to the maximum\ + \ extent possible, (ii) cite the statute or\nregulation that prohibits you from adhering\ + \ to the License, and (iii)\ndescribe the limitations and the code they affect. Such description\ + \ must\nbe included in the LEGAL file described in Section 4(d), and must be\nincluded with\ + \ all distributions of the Source Code. Except to the\nextent prohibited by statute or\ + \ regulation, such description must be\nsufficiently detailed for a recipient of ordinary\ + \ skill at computer\nprogramming to be able to understand it.\n\n6. Application of\ + \ This License. This License applies to code to\nwhich Licensor or Contributor has attached\ + \ the Notice in Exhibit A,\nwhich is incorporated herein by this reference.\n\n7. Versions\ + \ of This License.\n\na. New Versions. Licensor may publish from time to time revised\n\ + and/or new versions of the License.\n\nb. Effect of New Versions. Once Licensed Product\ + \ has been\npublished under a particular version of the License, you may always\ncontinue\ + \ to use it under the terms of that version. You may also choose\nto use such Licensed\ + \ Product under the terms of any subsequent version\nof the License published by Licensor.\ + \ No one other than Licensor has\nthe right to modify the terms applicable to Licensed\ + \ Product created\nunder this License.\n\nc. Derivative Works of this License. If\ + \ you create or use a\nmodified version of this License, which you may do only in order\ + \ to\napply it to software that is not already a Licensed Product under this\nLicense, you\ + \ must rename your license so that it is not confusingly\nsimilar to this License, and must\ + \ make it clear that your license\ncontains terms that differ from this License. In so\ + \ naming your\nlicense, you may not use any trademark of Licensor or any Contributor.\n\n\ + 8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS\nLICENSE ON AN\ + \ AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS\nOR IMPLIED, INCLUDING, WITHOUT\ + \ LIMITATION, WARRANTIES THAT THE LICENSED\nPRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT\ + \ FOR A PARTICULAR PURPOSE\nOR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE\ + \ OF\nTHE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE\nDEFECTIVE IN ANY\ + \ RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER\nCONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY\ + \ SERVICING, REPAIR OR\nCORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL\ + \ PART OF\nTHIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT\nUNDER\ + \ THIS DISCLAIMER.\n\n9. Termination. \n\na. Automatic Termination Upon Breach.\ + \ This license and the rights\ngranted hereunder will terminate automatically if you fail\ + \ to comply\nwith the terms herein and fail to cure such breach within thirty (30)\ndays\ + \ of becoming aware of the breach. All sublicenses to the Licensed\nProduct that are properly\ + \ granted shall survive any termination of this\nlicense. Provisions that, by their nature,\ + \ must remain in effect beyond\nthe termination of this License, shall survive.\n\nb. \ + \ Termination Upon Assertion of Patent Infringement. If you\ninitiate litigation by\ + \ asserting a patent infringement claim (excluding\ndeclaratory judgment actions) against\ + \ Licensor or a Contributor\n(Licensor or Contributor against whom you file such an action\ + \ is\nreferred to herein as Respondent) alleging that Licensed Product\ndirectly or indirectly\ + \ infringes any patent, then any and all rights\ngranted by such Respondent to you under\ + \ Sections 1 or 2 of this License\nshall terminate prospectively upon sixty (60) days notice\ + \ from\nRespondent (the \"Notice Period\") unless within that Notice Period you\neither\ + \ agree in writing (i) to pay Respondent a mutually agreeable\nreasonably royalty for your\ + \ past or future use of Licensed Product made\nby such Respondent, or (ii) withdraw your\ + \ litigation claim with respect\nto Licensed Product against such Respondent. If within\ + \ said Notice\nPeriod a reasonable royalty and payment arrangement are not mutually\nagreed\ + \ upon in writing by the parties or the litigation claim is not\nwithdrawn, the rights granted\ + \ by Licensor to you under Sections 1 and 2\nautomatically terminate at the expiration of\ + \ said Notice Period.\n\nc. Reasonable Value of This License. If you assert a patent\n\ + infringement claim against Respondent alleging that Licensed Product\ndirectly or indirectly\ + \ infringes any patent where such claim is resolved\n(such as by license or settlement)\ + \ prior to the initiation of patent\ninfringement litigation, then the reasonable value\ + \ of the licenses\ngranted by said Respondent under Sections 1 and 2 shall be taken into\n\ + account in determining the amount or value of any payment or license.\n\nd. No Retroactive\ + \ Effect of Termination. In the event of\ntermination under Sections 9(a) or 9(b) above,\ + \ all end user license\nagreements (excluding licenses to distributors and resellers) that\ + \ have\nbeen validly granted by you or any distributor hereunder prior to\ntermination shall\ + \ survive termination.\n\n10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER\ + \ NO LEGAL\nTHEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE,\nSHALL\ + \ THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED\nPRODUCT, OR ANY SUPPLIER\ + \ OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON\nFOR ANY INDIRECT, SPECIAL, INCIDENTAL,\ + \ OR CONSEQUENTIAL DAMAGES OF ANY\nCHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR\ + \ LOSS OF GOODWILL,\nWORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\n\ + COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\nINFORMED OF THE POSSIBILITY\ + \ OF SUCH DAMAGES. THIS LIMITATION OF\nLIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH\ + \ OR PERSONAL INJURY\nRESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW\n\ + PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE\nEXCLUSION OR LIMITATION\ + \ OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS\nEXCLUSION AND LIMITATION MAY NOT APPLY\ + \ TO YOU.\n\n11. Responsibility for Claims. As between Licensor and Contributors,\neach\ + \ party is responsible for claims and damages arising, directly or\nindirectly, out of its\ + \ utilization of rights under this License. You\nagree to work with Licensor and Contributors\ + \ to distribute such\nresponsibility on an equitable basis. Nothing herein is intended\ + \ or\nshall be deemed to constitute any admission of liability.\n\n12. U.S. Government\ + \ End Users. The Licensed Product is a commercial\nitem, as that term is defined in 48\ + \ C.F.R. 2.101 (Oct. 1995), consisting\nof commercial computer software and commercial computer\ + \ software\ndocumentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995).\nConsistent\ + \ with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through\n227.7202-4 (June 1995), all U.S.\ + \ Government End Users acquire Licensed\nProduct with only those rights set forth herein.\n\ + \n13. Miscellaneous. This License represents the complete agreement\nconcerning the subject\ + \ matter hereof. If any provision of this License\nis held to be unenforceable, such provision\ + \ shall be reformed only to\nthe extent necessary to make it enforceable. Any action or\ + \ suit relating\nto this License may be brought only in the courts of a jurisdiction\nwherein\ + \ the Licensor resides or in which Licensor conducts its primary\nbusiness, and under the\ + \ laws of that jurisdiction excluding its\nconflict-of-law provisions. The losing party\ + \ is responsible for costs\nincluding, without limitation, court costs and reasonable attorneys\ + \ fees\nand expenses. You and Licensor expressly waive any rights to a jury\ntrial in any\ + \ litigation concerning Licensed Product or this License.\nAny law or regulation that provides\ + \ that the language of a contract\nshall be construed against the drafter shall not apply\ + \ to this License.\nThe application of the United Nations Convention on Contracts for the\n\ + International Sale of Goods is expressly excluded. Any use of the\nOriginal Work outside\ + \ the scope of this License or after its termination\nshall be subject to the requirements\ + \ and penalties of the U.S. Copyright\nAct, 17 U.S.C. 101 et seq., the equivalent laws of\ + \ other countries, and\ninternational treaty. This section shall survive the termination\ + \ of this\nLicense.\n\n14. Definition of You in This License. You throughout this License,\n\ + whether in upper or lower case, means an individual or a legal entity\nexercising rights\ + \ under, and complying with all of the terms of, this\nLicense or a future version of this\ + \ License issued under Section 7. For\nlegal entities, you includes any entity that controls,\ + \ is controlled by,\nor is under common control with you. For purposes of this definition,\n\ + control means (i) the power, direct or indirect, to cause the direction\nor management of\ + \ such entity, whether by contract or otherwise, or (ii)\nownership of fifty percent (50%)\ + \ or more of the outstanding shares, or\n(iii) beneficial ownership of such entity.\n\n\ + 15. Glossary. All defined terms in this License that are used in more\nthan one Section\ + \ of this License are repeated here, in alphabetical\norder, for the convenience of the\ + \ reader. The Section of this License\nin which each defined term is first used is shown\ + \ in parentheses.\n\nContributor: Each person or entity who created or contributed to the\n\ + creation of, and distributed, a Modification. (See Section 2)\n\nDerivative Works: That\ + \ term as used in this License is defined under\nU.S. copyright law. (See Section 1(b))\n\ + \nFile: A persistent or transient representation, including without\nlimitation, a computer\ + \ system file, an information resource, and a web\nresource.\n\nLicense: This CognitiveWeb\ + \ Open Source License. (See first paragraph\nof License)\n\nLicensed Product: Any CognitiveWeb\ + \ Product licensed pursuant to this\nLicense. The term \"Licensed Product\" includes all\ + \ previous\nModifications from any Contributor that you receive. (See first\nparagraph of\ + \ License and Section 2)\n\nLicensor: Bryan Thompson dba CognitiveWeb (See first paragraph\ + \ of\nLicense)\n\nModifications: Any additions to or deletions from the substance or\n\ + structure of (i) a file containing Licensed Product, or (ii) any new\nfile that contains\ + \ any part of Licensed Product. (See Section 2)\n\nNotice: The notice contained in Exhibit\ + \ A. (See Section 4(e))\n\nSource Code: The preferred form for making modifications to\ + \ the Licensed\nProduct, including all modules contained therein, plus any associated\n\ + interface definition files, scripts used to control compilation and\ninstallation of an\ + \ executable program, or a list of differential\ncomparisons against the Source Code of\ + \ the Licensed Product. (See\nSection 1(a))\n\nYou: This term is defined in Section 14\ + \ of this License.\n\nEXHIBIT A\n\nThe Notice below must appear in each file of the Source\ + \ Code of any copy\nyou distribute of the Licensed Product. Contributors to any\nModifications\ + \ may add their own copyright notices to identify their own\ncontributions.\n\nLicense:\n\ + \nThe contents of this file are subject to the CognitiveWeb Open Source\nLicense Version\ + \ 1.1 (the License). You may not copy or use this file,\nin either source code or executable\ + \ form, except in compliance with the\nLicense. You may obtain a copy of the License from\n\ + http://www.CognitiveWeb.org/legal/license/. Software distributed under\nthe License is distributed\ + \ on an AS IS basis, WITHOUT WARRANTY OF ANY\nKIND, either express or implied. See the License\ + \ for the specific\nlanguage governing rights and limitations under the License.\n\nCopyrights:\n\ + \nPortions created by or assigned to CognitiveWeb are Copyright (c)\n2003-2003 CognitiveWeb.\ + \ All Rights Reserved. Contact information for\nCognitiveWeb is available at http://www.CognitiveWeb.org.\ + \ Portions\nCopyright (c) 2002-2003 Bryan Thompson. Acknowledgements Special thanks\nto\ + \ the developers of the Jabber Open Source License 1.0 (JOSL), from\nwhich this License\ + \ was derived. This License contains terms that differ\nfrom JOSL. Special thanks to the\ + \ CognitiveWeb Open Source Contributors\nfor their suggestions and support of the Cognitive\ + \ Web. \n\nModifications:" json: cognitive-web-osl-1.1.json - yml: cognitive-web-osl-1.1.yml + yaml: cognitive-web-osl-1.1.yml html: cognitive-web-osl-1.1.html - text: cognitive-web-osl-1.1.LICENSE + license: cognitive-web-osl-1.1.LICENSE - license_key: coil-1.0 + category: Permissive spdx_license_key: COIL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + # Copyfree Open Innovation License + + This is version 1.0 of the Copyfree Open Innovation License. + + ## Terms and Conditions + + Redistributions, modified or unmodified, in whole or in part, must retain + applicable notices of copyright or other legal privilege, these conditions, and + the following license terms and disclaimer. Subject to these conditions, each + holder of copyright or other legal privileges, author or assembler, and + contributor of this work, henceforth "licensor", hereby grants to any person + who obtains a copy of this work in any form: + + 1. Permission to reproduce, modify, distribute, publish, sell, sublicense, use, + and/or otherwise deal in the licensed material without restriction. + + 2. A perpetual, worldwide, non-exclusive, royalty-free, gratis, irrevocable + patent license to make, have made, provide, transfer, import, use, and/or + otherwise deal in the licensed material without restriction, for any and all + patents held by such licensor and necessarily infringed by the form of the work + upon distribution of that licensor's contribution to the work under the terms + of this license. + + NO WARRANTY OF ANY KIND IS IMPLIED BY, OR SHOULD BE INFERRED FROM, THIS LICENSE + OR THE ACT OF DISTRIBUTION UNDER THE TERMS OF THIS LICENSE, INCLUDING BUT NOT + LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, + AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS, ASSEMBLERS, OR HOLDERS OF + COPYRIGHT OR OTHER LEGAL PRIVILEGE BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER + LIABILITY, WHETHER IN ACTION OF CONTRACT, TORT, OR OTHERWISE ARISING FROM, OUT + OF, OR IN CONNECTION WITH THE WORK OR THE USE OF OR OTHER DEALINGS IN THE WORK. json: coil-1.0.json - yml: coil-1.0.yml + yaml: coil-1.0.yml html: coil-1.0.html - text: coil-1.0.LICENSE + license: coil-1.0.LICENSE - license_key: colt + category: Free Restricted spdx_license_key: LicenseRef-scancode-colt other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Colt License Agreement + + http://acs.lbl.gov/software/colt/license.html + + Packages cern.colt* , cern.jet*, cern.clhep + + Copyright (c) 1999 CERN - European Organization for Nuclear Research. + + Permission to use, copy, modify, distribute and sell this software and its + documentation for any purpose is hereby granted without fee, provided that the + above copyright notice appear in all copies and that both that copyright notice + and this permission notice appear in supporting documentation. CERN makes no + representations about the suitability of this software for any purpose. It is + provided "as is" without expressed or implied warranty. + + Packages hep.aida.* Written by Pavel Binko, Dino Ferrero Merlino, Wolfgang + Hoschek, Tony Johnson, Andreas Pfeiffer, and others. Check the FreeHEP home page + for more info. Permission to use and/or redistribute this work is granted under + the terms of the LGPL License, with the exception that any usage related to + military applications is expressly forbidden. The software and documentation + made available under the terms of this license are provided with no warranty. json: colt.json - yml: colt.yml + yaml: colt.yml html: colt.html - text: colt.LICENSE + license: colt.LICENSE - license_key: com-oreilly-servlet + category: Commercial spdx_license_key: LicenseRef-scancode-com-oreilly-servlet other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Copyright (C) 2001-2009 by Jason Hunter, jhunter_AT_servlets.com.\nAll rights reserved.\n\ + \nThe source code, object code, and documentation in the com.oreilly.servlet\npackage is\ + \ copyright and owned by Jason Hunter.\n\nON-SITE USE RIGHTS\n\nPermission is granted to\ + \ use the com.oreilly.servlet.* packages in the\ndevelopment of any non-commercial project.\ + \ For this use you are granted a non-\nexclusive, non-transferable limited license at no\ + \ cost.\n\nFor a commercial project, permission is granted to use the com.oreilly.servlet.*\n\ + packages provided that every person on the development team for that project\nowns a copy\ + \ of the book Java Servlet Programming (O'Reilly) in its most recent\nedition. The most\ + \ recent edition is currently the 2nd Edition, available in\nassociation with Amazon.com\ + \ at\nhttp://www.amazon.com/exec/obidos/ASIN/0596000405/jasonhunter.\n\nOther (sometimes\ + \ cheaper) license terms are available upon request; please write\nto jhunter_AT_servlets.com\ + \ for more information.\n\nREDISTRIBUTION RIGHTS\n\nCommercial redistribution rights of\ + \ the com.oreilly.servlet.* packages are\navailable by writing jhunter_AT_servlets.com.\n\ + \nNon-commercial redistribution is permitted provided that:\n\n1. You redistribute the package\ + \ in object code form only (as Java .class files\nor a .jar file containing the .class files)\ + \ and only as part of a product that\nuses the classes as part of its primary functionality.\n\ + \n2. The product containing the package is non-commercial in nature.\n\n3. The public interface\ + \ to the classes in the package, and the public interface\nto any classes with similar functionality,\ + \ is hidden from end users when engaged\nin normal use of the product.\n\n4. The distribution\ + \ is not part of a software development kit, operating system,\nother library, or a development\ + \ tool without written permission from the\ncopyright holder.\n\n5. The distribution includes\ + \ copyright notice as follows: \"The source code,\nobject code, and documentation in the\ + \ com.oreilly.servlet package is copyright\nand owned by Jason Hunter.\" in the documentation\ + \ and/or other materials provided\nwith the distribution.\n\n6. You reproduce the above\ + \ copyright notice, this list of conditions, and the\nfollowing disclaimer in the documentation\ + \ and/or other materials provided with\nthe distribution.\n\n7. Licensor retains title to\ + \ and ownership of the Software and all enhancements,\nmodifications, and updates to the\ + \ Software.\n\nNote that the com.oreilly.servlet package is provided \"as is\" and the author\n\ + will not be liable for any damages suffered as a result of your use.\nFurthermore, you understand\ + \ the package comes without any technical support.\n\nYou can always find the latest version\ + \ of the com.oreilly.servlet package at\nhttp://www.servlets.com.\n\nTHIS SOFTWARE IS PROVIDED\ + \ BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\nOR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\ + \ TO, THE IMPLIED \nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n\ + ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT,\ + \ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT\ + \ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS;\ + \ OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\ + \ STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT\ + \ OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\nThanks,\n\ + Jason Hunter\njhunter_AT_servlets.com" json: com-oreilly-servlet.json - yml: com-oreilly-servlet.yml + yaml: com-oreilly-servlet.yml html: com-oreilly-servlet.html - text: com-oreilly-servlet.LICENSE + license: com-oreilly-servlet.LICENSE - license_key: commercial-license + category: Commercial spdx_license_key: LicenseRef-scancode-commercial-license other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: This component is licensed under a commercial contract from the supplier. json: commercial-license.json - yml: commercial-license.yml + yaml: commercial-license.yml html: commercial-license.html - text: commercial-license.LICENSE + license: commercial-license.LICENSE - license_key: commercial-option + category: Commercial spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Commercial + text: This component may be licensed under a commercial contract from the supplier. json: commercial-option.json - yml: commercial-option.yml + yaml: commercial-option.yml html: commercial-option.html - text: commercial-option.LICENSE + license: commercial-option.LICENSE - license_key: commonj-timer + category: Permissive spdx_license_key: LicenseRef-scancode-commonj-timer other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + CommonJ Timer and Work Manager License + General information: + http://dev2dev.bea.com/wlplatform/commonj/twm.html + License Text + + The Timer and Work Manager for Application Servers Specification is being provided by the copyright holders under + the following license. By using and/or copying this work, you agree that you have read, understood and will comply + with the following terms and conditions: + + Permission to copy and display the Timer and Work Manager for Application Servers + Specification and/or portions thereof, without modification, in any medium without fee or + royalty is hereby granted, provided that you include the following on ALL copies of the + Timer and Work Manager for Application Servers Specification, or portions thereof, that + you make: + 1. A link or URL to the Timer and Work Manager for Application Servers Specification at + this location: http://dev2dev.bea.com/technologies/commonj/index.jsp + or at this location: + http://www.ibm.com/developerworks/library/j-commonj-sdowmt/ + 2. The full text of this copyright notice as shown in the Timer and Work Manager for + Application Servers Specification. + + IBM and BEA (collectively, the 'Authors') agree to grant you a royalty-free license, + under reasonable, non-discriminatory terms and conditions to patents that they deem + necessary to implement the Timer and Work Manager for Application Servers Specification. + THE Timer and Work Manager for Application Servers SPECIFICATION IS PROVIDED 'AS IS,' AND + THE AUTHORS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS + SPECIFICATION AND THE IMPLEMENTATION OF ITS CONTENTS, INCLUDING, BUT NOT LIMITED TO, + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT OR + TITLE. + + THE AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO ANY USE OR DISTRIBUTION OF THE Timer + and Work Manager for Application Servers SPECIFICATION. + The name and trademarks of the Authors may NOT be used in any manner, including + advertising or publicity pertaining to the Timer and Work Manager for Application Servers + Specification or its contents without specific, written prior permission. Title to + copyright in the Timer and Work Manager for Application Servers Specification will at all + times remain with the Authors. + + No other rights are granted by implication, estoppel or otherwise. json: commonj-timer.json - yml: commonj-timer.yml + yaml: commonj-timer.yml html: commonj-timer.html - text: commonj-timer.LICENSE + license: commonj-timer.LICENSE - license_key: commons-clause + category: Source-available spdx_license_key: LicenseRef-scancode-commons-clause other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Source-available + text: | + "Commons Clause" License Condition v1.0 + + The Software is provided to you by the Licensor under the License, as defined below, subject to the following condition. + + Without limiting other conditions in the License, the grant of rights under the License will not include, and the License does not grant to you, the right to Sell the Software. + + For purposes of the foregoing, "Sell" means practicing any or all of the rights granted to you under the License to provide to third parties, for a fee or other consideration (including without limitation fees for hosting or consulting/ support services related to the Software), a product or service whose value derives, entirely or substantially, from the functionality of the Software. Any license notice or attribution required by the License must also include this Commons Cause License Condition notice. + + Software: [name software] + + License: [i.e. Apache 2.0] + + Licensor: [ABC company] json: commons-clause.json - yml: commons-clause.yml + yaml: commons-clause.yml html: commons-clause.html - text: commons-clause.LICENSE + license: commons-clause.LICENSE - license_key: compass + category: Permissive spdx_license_key: LicenseRef-scancode-compass other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. No attribution is required by + products that make use of this 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. + + Except as contained in this notice, the name(s) of the above copyright holders + shall not be used in advertising or otherwise to promote the sale, use or other + dealings in this Software without prior written authorization. + + Contributors to this project agree to grant all rights to the copyright holder + of the primary product. Attribution is maintained in the source control history + of the product. json: compass.json - yml: compass.yml + yaml: compass.yml html: compass.html - text: compass.LICENSE + license: compass.LICENSE - license_key: componentace-jcraft + category: Permissive spdx_license_key: LicenseRef-scancode-componentace-jcraft other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Copyright (c) 2006, ComponentAce http://www.componentace.com All rights reserved.\n\ + \nRedistribution and use in source and binary forms, with or without modification,\nare\ + \ permitted provided that the following conditions are met:\n\nRedistributions of source\ + \ code must retain the above copyright notice, this\nlist of conditions and the following\ + \ disclaimer. \n\nRedistributions in binary form must reproduce the above copyright notice,\n\ + this list of conditions and the following disclaimer in the documentation and/or\nother\ + \ materials provided with the distribution.\n\nNeither the name of ComponentAce nor the\ + \ names of its contributors may be used\nto endorse or promote products derived from this\ + \ software without specific prior\nwritten permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE\ + \ COPYRIGHT HOLDERS AND\nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,\ + \ BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR\ + \ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\nCONTRIBUTORS BE LIABLE\ + \ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\nOR CONSEQUENTIAL DAMAGES (INCLUDING,\ + \ BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\ + \ PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER\ + \ IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\n\ + IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY\nOF SUCH\ + \ DAMAGE.\n\nCopyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved.\n\n\ + Redistribution and use in source and binary forms, with or without modification,\nare permitted\ + \ provided that the following conditions are met:\n\n1. Redistributions of source code must\ + \ retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\ + \n2. Redistributions in binary form must reproduce the above copyright notice,\nthis list\ + \ of conditions and the following disclaimer in the documentation and/or\nother materials\ + \ provided with the distribution.\n\n3. The names of the authors may not be used to endorse\ + \ or promote products\nderived from this software without specific prior written permission.\n\ + \nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\nINCLUDING,\ + \ BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR\ + \ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, INC.\nOR ANY CONTRIBUTORS TO THIS SOFTWARE\ + \ BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\ + \ DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\ + \ LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY\ + \ OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n\ + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\nADVISED OF THE\ + \ POSSIBILITY OF SUCH DAMAGE.\n\nThis program is based on zlib-1.1.3,\nso all credit should\ + \ go authors Jean-loup Gailly(jloup@gzip.org) and Mark\nAdler(madler@alumni.caltech.edu)\ + \ and contributors of zlib." json: componentace-jcraft.json - yml: componentace-jcraft.yml + yaml: componentace-jcraft.yml html: componentace-jcraft.html - text: componentace-jcraft.LICENSE + license: componentace-jcraft.LICENSE - license_key: compuphase-linking-exception + category: Permissive spdx_license_key: LicenseRef-scancode-compuphase-linking-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Permissive + text: | + EXCEPTION TO THE APACHE 2.0 LICENSE + + As a special exception to the Apache License 2.0 (and referring to the + definitions in Section 1 of this license), you may link, statically or + dynamically, the "Work" to other modules to produce an executable file + containing portions of the "Work", and distribute that executable file + in "Object" form under the terms of your choice, without any of the + additional requirements listed in Section 4 of the Apache License 2.0. + This exception applies only to redistributions in "Object" form (not + "Source" form) and only if no modifications have been made to the "Work". json: compuphase-linking-exception.json - yml: compuphase-linking-exception.yml + yaml: compuphase-linking-exception.yml html: compuphase-linking-exception.html - text: compuphase-linking-exception.LICENSE + license: compuphase-linking-exception.LICENSE - license_key: concursive-pl-1.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-concursive-pl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + The Concursive Public License + Version 1, April 2014 + + Preamble + + This Concursive Public License is based on United States Copyright law, as + defined by Title 17 of the United States Code. + + In particular, our intent is that: + + You may use, copy, modify, and make derivative works from the code for internal + use only. + + You may provide the code in object format for the use of your customers only, + pursuant to a current resale agreement with Concursive Corporation.
 + + You may not redistribute the code, and you may not sublicense copies or + derivatives of the code, either as software or as a service. + + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 1. 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 Concursive 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". + + 2. By using the software you agree to abide by these terms. + + 3. You may modify your copy or copies of the Program or any portion of it, thus + forming a work based on the Program, for internal use and the use of your + customers only, pursuant to a current resale agreement with Concursive + Corporation. + + 4. If the distribution and/or use of the Program is restricted in certain + countries either by patents or by copyrighted interfaces, Concursive Corporation + 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. + + 5. Concursive Corporation may publish revised and/or new versions of the + Concursive 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 Concursive Corporation. If the Program does + not specify a version number of this License, you may choose any version ever + published by Concursive Corporation. + + 6. If any portion of this license is held invalid or unenforceable under any + particular circumstance, the balance of the license is intended to apply and the + license as a whole is intended to apply in other circumstances. + + NO 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. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY + COPYRIGHT HOLDER 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. + + END OF TERMS AND CONDITIONS json: concursive-pl-1.0.json - yml: concursive-pl-1.0.yml + yaml: concursive-pl-1.0.yml html: concursive-pl-1.0.html - text: concursive-pl-1.0.LICENSE + license: concursive-pl-1.0.LICENSE - license_key: condor-1.1 + category: Permissive spdx_license_key: Condor-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "CONDOR PUBLIC LICENSE\n\nVersion 1.1, October 30, 2003\n\nCopyright 1990-2006 Condor\ + \ Team, Computer Sciences Department,\nUniversity of Wisconsin-Madison, Madison, WI. All\ + \ Rights Reserved. For\nmore information contact: Condor Team, Attention: Professor Miron\ + \ Livny,\nDept of Computer Sciences, 1210 W. Dayton St., Madison, WI 53706-1685, (608)\n\ + 262-0856 or miron@cs.wisc.edu. \n\nThis software referred to as the Condor\n Version 6.x\ + \ software\n(\"Software\") was developed by the Condor Project, Condor Team,\nComputer Sciences\ + \ Department, University of Wisconsin-Madison, under\nthe authority of the Board of Regents\ + \ of the University of Wisconsin\nSystem and includes voluntary contributions made to the\ + \ Condor Project\n(\"Copyright Holders and Contributors and the University\"). For more\n\ + information on the Condor Project, please see\nhttp://www.condorproject.org/.\n\nInstallation,\ + \ use, reproduction, display, modification and\nredistribution of this Software, with or\ + \ without modification, in\nsource and binary forms, are permitted. Any exercise of rights\ + \ under\nthis license including sublicenses by you is subject to the following\nconditions:\n\ + \nRedistributions of this Software, with or without modification,\n must reproduce this\ + \ Condor Public License in: (1) the Software,\n and (2) any user documentation or other\ + \ similar material\n which is provided with the Software.\n\nAny user documentation included\ + \ with a redistribution\n must include the following notice:\n\n\"This product includes\ + \ software from the Condor Project (http://www.condorproject.org/)\"\n\t\nAlternatively,\ + \ if that is where third-party acknowledgments\n normally appear, this acknowledgment\ + \ must be reproduced in the\n Software itself.\n\nAny academic report, publication, or\ + \ other academic disclosure \n of results obtained with this Software will acknowledge\ + \ this\n Software's use by an appropriate citation.\n\nThe name Condor\n is a registered\ + \ trademark of the University of\n Wisconsin-Madison. The trademark may not be used to\ + \ endorse or\n promote software, or products derived therefrom, and, other than\n as\ + \ required by section 2 and 3 above, it may not be affixed to modified\n redistributions\ + \ of this Software without the prior written\n approval, obtainable via email to condor-admin@cs.wisc.edu.\n\ + \nTo the extent that patent claims licensable by the University of\n Wisconsin-Madison\ + \ are necessarily infringed by the use or sale of\n the Software, you are granted a non-exclusive,\ + \ worldwide, royalty-\n free perpetual license under such patent claims, with the rights\n\ + \ for you to make, use, sell, offer to sell, import and otherwise\n transfer the Software\ + \ in source code and object code form and\n derivative works. This patent license shall\ + \ apply to the\n combination of the Software with other software if, at the time\n the\ + \ Software is added by you, such addition of the Software causes\n such combination to\ + \ be covered by such patent claims. This patent\n license shall not apply to any other\ + \ combinations which include\n the Software. No hardware per se is licensed hereunder.\n\ + \nIf you or any subsequent sub-licensee (a ``Recipient\") institutes\n patent litigation\ + \ against any entity (including a cross-claim or\n counterclaim in a lawsuit) alleging\ + \ that the Software infringes\n such Recipient's patent(s), then such Recipient's rights\ + \ granted\n (directly or indirectly) under the patent license above shall\n terminate\ + \ as of the date such litigation is filed. All\n sublicenses to the Software which have\ + \ been properly granted prior\n to termination shall survive any termination of said patent\n\ + \ license, if not otherwise terminated pursuant to this section.\n\nDISCLAIMER\n\nTHIS\ + \ SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n AND THE UNIVERSITY\ + \ \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE\ + \ IMPLIED WARRANTIES OF\n MERCHANTABILITY, OF SATISFACTORY QUALITY, AND FITNESS FOR A\n\ + \ PARTICULAR PURPOSE OR USE ARE DISCLAIMED. THE COPYRIGHT HOLDERS\n AND CONTRIBUTORS\ + \ AND THE UNIVERSITY MAKE NO REPRESENTATION THAT THE\n SOFTWARE, MODIFICATIONS, ENHANCEMENTS\ + \ OR DERIVATIVE WORKS THEREOF,\n WILL NOT INFRINGE ANY PATENT, COPYRIGHT, TRADEMARK, TRADE\ + \ SECRET OR\n OTHER PROPRIETARY RIGHT.\n\nLIMITATION OF LIABILITY\n\nTHE COPYRIGHT HOLDERS\ + \ AND CONTRIBUTORS AND ANY OTHER OFFICER,\n AGENT, OR EMPLOYEE OF THE UNIVERSITY SHALL\ + \ HAVE NO LIABILITY TO\n LICENSEE OR OTHER PERSONS FOR DIRECT, INDIRECT, SPECIAL,\n \ + \ INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES OF ANY\n CHARACTER INCLUDING,\ + \ WITHOUT LIMITATION, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES, LOSS OF USE, DATA\ + \ OR PROFITS, OR BUSINESS\n INTERRUPTION, HOWEVER CAUSED AND ON ANY THEORY OF CONTRACT,\n\ + \ WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR\n OTHERWISE, ARISING IN\ + \ ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\ + \ DAMAGES.\n\nCertain uses and transfers of the Software or documentation, and/or\n items\ + \ or software incorporating the Condor Software or\n documentation, may require a license\ + \ under U.S. Export Control\n laws. Licensee represents and warrants that all uses and\ + \ transfers\n of the Condor Software or documentation and/or any items or\n software\ + \ incorporating Condor shall be in compliance with U.S.\n Export Control laws, and Licensee\ + \ further understands that failure\n to comply with such export control laws may result\ + \ in criminal\n liability to Licensee under U.S. laws.\n\nThe Condor Team may publish\ + \ revised and/or new versions of this\n Condor Public License (``this License\") from\ + \ time to time. Each\n version will be given a distinguishing version number. Once\n\ + \ Software has been published under a particular version of this\n License, you may\ + \ always continue to use it under the terms of that\n version. You may also choose to\ + \ use such Software under the terms\n of any subsequent version of this License published\ + \ by the Condor\n Team. No one other than the Condor Team has the right to modify\n \ + \ the terms of this License." json: condor-1.1.json - yml: condor-1.1.yml + yaml: condor-1.1.yml html: condor-1.1.html - text: condor-1.1.LICENSE + license: condor-1.1.LICENSE - license_key: confluent-community-1.0 + category: Source-available spdx_license_key: LicenseRef-scancode-confluent-community-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Confluent Community License Version 1.0 + + This Confluent Community License Agreement Version 1.0 (the “Agreement”) sets forth the terms on which Confluent, Inc. (“Confluent”) makes available certain software made available by Confluent under this Agreement (the “Software”). BY INSTALLING, DOWNLOADING, ACCESSING, USING OR DISTRIBUTING ANY OF THE SOFTWARE, YOU AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO SUCH TERMS AND CONDITIONS, YOU MUST NOT USE THE SOFTWARE. IF YOU ARE RECEIVING THE SOFTWARE ON BEHALF OF A LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE THE ACTUAL AUTHORITY TO AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT ON BEHALF OF SUCH ENTITY. “Licensee” means you, an individual, or the entity on whose behalf you are receiving the Software. + + LICENSE GRANT AND CONDITIONS. + 1.1 License. Subject to the terms and conditions of this Agreement, Confluent hereby grants to Licensee a non-exclusive, royalty-free, worldwide, non-transferable, non-sublicenseable license during the term of this Agreement to: (a) use the Software; (b) prepare modifications and derivative works of the Software; (c) distribute the Software (including without limitation in source code or object code form); and (d) reproduce copies of the Software (the “License”). Licensee is not granted the right to, and Licensee shall not, exercise the License for an Excluded Purpose. For purposes of this Agreement, “Excluded Purpose” means making available any software-as-a-service, platform-as-a-service, infrastructure-as-a-service or other similar online service that competes with Confluent products or services that provide the Software. + + 1.2 Conditions. In consideration of the License, Licensee’s distribution of the Software is subject to the following conditions: + + a. Licensee must cause any Software modified by Licensee to carry prominent notices stating that Licensee modified the Software. + + b. On each Software copy, Licensee shall reproduce and not remove or alter all Confluent or third party copyright or other proprietary notices contained in the Software, and Licensee must provide the notice below with each copy. + + “This software is made available by Confluent, Inc., under the terms of the Confluent Community License Agreement, Version 1.0 located at http://www.confluent.io/confluent-community-license. BY INSTALLING, DOWNLOADING, ACCESSING, USING OR DISTRIBUTING ANY OF THE SOFTWARE, YOU AGREE TO THE TERMS OF SUCH LICENSE AGREEMENT.” + + 1.3 Licensee Modifications. Licensee may add its own copyright notices to modifications made by Licensee and may provide additional or different license terms and conditions for use, reproduction, or distribution of Licensee’s modifications. While redistributing the Software or modifications thereof, Licensee may choose to offer, for a fee or free of charge, support, warranty, indemnity, or other obligations. Licensee, and not Confluent, will be responsible for any such obligations. + + 1.4 No Sublicensing. The License does not include the right to sublicense the Software, however, each recipient to which Licensee provides the Software may exercise the Licenses so long as such recipient agrees to the terms and conditions of this Agreement. + + TERM AND TERMINATION. + This Agreement will continue unless and until earlier terminated as set forth herein. If Licensee breaches any of its conditions or obligations under this Agreement, this Agreement will terminate automatically and the License will terminate automatically and permanently. + + INTELLECTUAL PROPERTY. + As between the parties, Confluent will retain all right, title, and interest in the Software, and all intellectual property rights therein. Confluent hereby reserves all rights not expressly granted to Licensee in this Agreement. Confluent hereby reserves all rights in its trademarks and service marks, and no licenses therein are granted in this Agreement. + + DISCLAIMER. + CONFLUENT HEREBY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS, EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, AND SPECIFICALLY DISCLAIMS ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, WITH RESPECT TO THE SOFTWARE. + + LIMITATION OF LIABILITY. + CONFLUENT WILL NOT BE LIABLE FOR ANY DAMAGES OF ANY KIND, INCLUDING BUT NOT LIMITED TO, LOST PROFITS OR ANY CONSEQUENTIAL, SPECIAL, INCIDENTAL, INDIRECT, OR DIRECT DAMAGES, HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, ARISING OUT OF THIS AGREEMENT. THE FOREGOING SHALL APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW. + + GENERAL. + 6.1 Governing Law. This Agreement will be governed by and interpreted in accordance with the laws of the state of California, without reference to its conflict of laws principles. If Licensee is located within the United States, all disputes arising out of this Agreement are subject to the exclusive jurisdiction of courts located in Santa Clara County, California. USA. If Licensee is located outside of the United States, any dispute, controversy or claim arising out of or relating to this Agreement will be referred to and finally determined by arbitration in accordance with the JAMS International Arbitration Rules. The tribunal will consist of one arbitrator. The place of arbitration will be Palo Alto, California. The language to be used in the arbitral proceedings will be English. Judgment upon the award rendered by the arbitrator may be entered in any court having jurisdiction thereof. + + 6.2. Assignment. Licensee is not authorized to assign its rights under this Agreement to any third party. Confluent may freely assign its rights under this Agreement to any third party. + + 6.3. Other. This Agreement is the entire agreement between the parties regarding the subject matter hereof. No amendment or modification of this Agreement will be valid or binding upon the parties unless made in writing and signed by the duly authorized representatives of both parties. In the event that any provision, including without limitation any condition, of this Agreement is held to be unenforceable, this Agreement and all licenses and rights granted hereunder will immediately terminate. Waiver by Confluent of a breach of any provision of this Agreement or the failure by Confluent to exercise any right hereunder will not be construed as a waiver of any subsequent breach of that right or as a waiver of any other right. json: confluent-community-1.0.json - yml: confluent-community-1.0.yml + yaml: confluent-community-1.0.yml html: confluent-community-1.0.html - text: confluent-community-1.0.LICENSE + license: confluent-community-1.0.LICENSE - license_key: cooperative-non-violent-4.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-cooperative-non-violent-4.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "COOPERATIVE NON-VIOLENT PUBLIC LICENSE v4\n\nPreamble\n\nThe Cooperative Non-Violent\ + \ Public license is a freedom-respecting sharealike\nlicense for both the author of a work\ + \ as well as those subject to a work.\nIt aims to protect the basic rights of human beings\ + \ from exploitation,\nthe earth from plunder, and the equal treatment of the workers involved\ + \ in the\ncreation of the work. It aims to ensure a copyrighted work is forever\navailable\ + \ for public use, modification, and redistribution under the same\nterms so long as the\ + \ work is not used for harm. For more information about\nthe CNPL refer to the official\ + \ webpage\n\nOfficial Webpage: https://thufie.lain.haus/NPL.html\n\nTerms and Conditions\n\ + \nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS\nCOOPERATIVE NON-VIOLENT\ + \ PUBLIC LICENSE v4 (\"LICENSE\"). THE WORK IS\nPROTECTED BY COPYRIGHT AND ALL OTHER APPLICABLE\ + \ LAWS. ANY USE OF THE\nWORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW\ + \ IS\nPROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED IN THIS\nLICENSE, YOU AGREE\ + \ TO BE BOUND BY THE TERMS OF THIS LICENSE.\nTO THE EXTENT THIS LICENSE MAY BE CONSIDERED\ + \ TO BE A CONTRACT,\nTHE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN AS CONSIDERATION\n\ + FOR ACCEPTING THE TERMS AND CONDITIONS OF THIS LICENSE AND FOR AGREEING\nTO BE BOUND BY\ + \ THE TERMS AND CONDITIONS OF THIS LICENSE.\n\n1. DEFINITIONS\n\n a. \"Act of War\"\ + \ means any action of one country against any group\n either with an intention\ + \ to provoke a conflict or an action that\n occurs during a declared war or during\ + \ armed conflict between\n military forces of any origin. This includes but is\ + \ not limited\n to enforcing sanctions or sieges, supplying armed forces,\n \ + \ or profiting from the manufacture of tools or weaponry used in\n military\ + \ conflict.\n\n b. \"Adaptation\" means a work based upon the Work, or upon the\n\ + \ Work and other pre-existing works, such as a translation,\n adaptation,\ + \ derivative work, arrangement of music or other\n alterations of a literary or\ + \ artistic work, or phonogram or\n performance and includes cinematographic adaptations\ + \ or any\n other form in which the Work may be recast, transformed, or\n \ + \ adapted including in any form recognizably derived from the\n original, except\ + \ that a work that constitutes a Collection will\n not be considered an Adaptation\ + \ for the purpose of this License.\n For the avoidance of doubt, where the Work\ + \ is a musical work,\n performance or phonogram, the synchronization of the Work\ + \ in\n timed-relation with a moving image (\"synching\") will be\n considered\ + \ an Adaptation for the purpose of this License.\n\n c. \"Bodily Harm\" means any\ + \ physical hurt or injury to a person that\n interferes with the health or comfort\ + \ of the person and that is more\n more than merely transient or trifling in nature.\n\ + \n d. \"Collection\" means a collection of literary or artistic\n works,\ + \ such as encyclopedias and anthologies, or performances,\n phonograms or broadcasts,\ + \ or other works or subject matter other\n than works listed in Section 1(i) below,\ + \ which, by reason of the\n selection and arrangement of their contents, constitute\n\ + \ intellectual creations, in which the Work is included in its\n entirety\ + \ in unmodified form along with one or more other\n contributions, each constituting\ + \ separate and independent works\n in themselves, which together are assembled\ + \ into a collective\n whole. A work that constitutes a Collection will not be\n\ + \ considered an Adaptation (as defined above) for the purposes of\n this\ + \ License.\n\n e. \"Distribute\" means to make available to the public the\n \ + \ original and copies of the Work or Adaptation, as appropriate,\n through\ + \ sale, gift or any other transfer of possession or\n ownership.\n\n f.\ + \ \"Incarceration\" means confinement in a jail, prison, or any\n other place where\ + \ individuals of any kind are held against\n either their will or the will of their\ + \ legal guardians.\n\n g. \"Licensor\" means the individual, individuals, entity\ + \ or\n entities that offer(s) the Work under the terms of this License.\n\n \ + \ h. \"Original Author\" means, in the case of a literary or\n artistic work,\ + \ the individual, individuals, entity or entities\n who created the Work or if\ + \ no individual or entity can be\n identified, the publisher; and in addition (i)\ + \ in the case of a\n performance the actors, singers, musicians, dancers, and other\n\ + \ persons who act, sing, deliver, declaim, play in, interpret or\n otherwise\ + \ perform literary or artistic works or expressions of\n folklore; (ii) in the\ + \ case of a phonogram the producer being the\n person or legal entity who first\ + \ fixes the sounds of a\n performance or other sounds; and, (iii) in the case of\n\ + \ broadcasts, the organization that transmits the broadcast.\n\n i. \"\ + Work\" means the literary and/or artistic work offered under\n the terms of this\ + \ License including without limitation any\n production in the literary, scientific\ + \ and artistic domain,\n whatever may be the mode or form of its expression including\n\ + \ digital form, such as a book, pamphlet and other writing; a\n lecture,\ + \ address, sermon or other work of the same nature; a\n dramatic or dramatico-musical\ + \ work; a choreographic work or\n entertainment in dumb show; a musical composition\ + \ with or\n without words; a cinematographic work to which are assimilated\n \ + \ works expressed by a process analogous to cinematography; a work\n of\ + \ drawing, painting, architecture, sculpture, engraving or\n lithography; a photographic\ + \ work to which are assimilated works\n expressed by a process analogous to photography;\ + \ a work of\n applied art; an illustration, map, plan, sketch or\n three-dimensional\ + \ work relative to geography, topography,\n architecture or science; a performance;\ + \ a broadcast; a\n phonogram; a compilation of data to the extent it is protected\n\ + \ as a copyrightable work; or a work performed by a variety or\n circus\ + \ performer to the extent it is not otherwise considered a\n literary or artistic\ + \ work.\n\n j. \"You\" means an individual or entity exercising rights under\n\ + \ this License who has not previously violated the terms of this\n License\ + \ with respect to the Work, or who has received express\n permission from the Licensor\ + \ to exercise rights under this\n License despite a previous violation.\n\n \ + \ k. \"Publicly Perform\" means to perform public recitations of the\n Work\ + \ and to communicate to the public those public recitations,\n by any means or\ + \ process, including by wire or wireless means or\n public digital performances;\ + \ to make available to the public\n Works in such a way that members of the public\ + \ may access these\n Works from a place and at a place individually chosen by them;\n\ + \ to perform the Work to the public by any means or process and\n the\ + \ communication to the public of the performances of the Work,\n including by public\ + \ digital performance; to broadcast and\n rebroadcast the Work by any means including\ + \ signs, sounds or\n images.\n\n l. \"Reproduce\" means to make copies\ + \ of the Work by any means\n including without limitation by sound or visual recordings\ + \ and\n the right of fixation and reproducing fixations of the Work,\n \ + \ including storage of a protected performance or phonogram in\n digital form\ + \ or other electronic medium.\n\n m. \"Software\" means any digital Work which,\ + \ through use of a\n third-party piece of Software or through the direct usage\ + \ of\n itself on a computer system, the memory of the computer is\n modified\ + \ dynamically or semi-dynamically. \"Software\",\n secondly, processes or interprets\ + \ information.\n\n n. \"Source Code\" means the human-readable form of Software\n\ + \ through which the Original Author and/or Distributor originally\n created,\ + \ derived, and/or modified it.\n\n o. \"Surveilling\" means the use of the Work\ + \ to either\n overtly or covertly observe and record persons and or their\n \ + \ activities.\n\n p. \"Web Service\" means the use of a piece of Software\ + \ to\n interpret or modify information that is subsequently and directly\n \ + \ served to users over the Internet.\n\n q. \"Discriminate\" means the use\ + \ of a work to differentiate between\n humans in a such a way which prioritizes\ + \ some above others on the\n basis of percieved membership within certain groups.\n\ + \n r. \"Hate Speech\" means communication or any form\n of expression\ + \ which is solely for the purpose of expressing hatred\n for some group or advocating\ + \ a form of Discrimination\n (to Discriminate per definition in (q)) between humans.\n\ + \n2. FAIR DEALING RIGHTS\n\n Nothing in this License is intended to reduce, limit, or\ + \ restrict any\n uses free from copyright or rights arising from limitations or\n exceptions\ + \ that are provided for in connection with the copyright\n protection under copyright\ + \ law or other applicable laws.\n\n3. LICENSE GRANT\n\n Subject to the terms and conditions\ + \ of this License, Licensor hereby\n grants You a worldwide, royalty-free, non-exclusive,\ + \ perpetual (for the\n duration of the applicable copyright) license to exercise the rights\ + \ in\n the Work as stated below:\n\n a. to Reproduce the Work, to incorporate\ + \ the Work into one or\n more Collections, and to Reproduce the Work as incorporated\ + \ in\n the Collections;\n\n b. to create and Reproduce Adaptations provided\ + \ that any such\n Adaptation, including any translation in any medium, takes\n\ + \ reasonable steps to clearly label, demarcate or otherwise\n identify\ + \ that changes were made to the original Work. For\n example, a translation could\ + \ be marked \"The original work was\n translated from English to Spanish,\" or\ + \ a modification could\n indicate \"The original work has been modified.\";\n\n\ + \ c. to Distribute and Publicly Perform the Work including as\n incorporated\ + \ in Collections; and,\n\n d. to Distribute and Publicly Perform Adaptations. The\ + \ above\n rights may be exercised in all media and formats whether now\n \ + \ known or hereafter devised. The above rights include the right\n to make such\ + \ modifications as are technically necessary to\n exercise the rights in other\ + \ media and formats. Subject to\n Section 8(g), all rights not expressly granted\ + \ by Licensor are\n hereby reserved, including but not limited to the rights set\n\ + \ forth in Section 4(i).\n\n4. RESTRICTIONS\n\n The license granted in Section\ + \ 3 above is expressly made subject to and\n limited by the following restrictions:\n\n\ + \ a. You may Distribute or Publicly Perform the Work only under\n the\ + \ terms of this License. You must include a copy of, or the\n Uniform Resource\ + \ Identifier (URI) for, this License with every\n copy of the Work You Distribute\ + \ or Publicly Perform. You may not\n offer or impose any terms on the Work that\ + \ restrict the terms of\n this License or the ability of the recipient of the Work\ + \ to\n exercise the rights granted to that recipient under the terms of\n \ + \ the License. You may not sublicense the Work. You must keep\n intact all\ + \ notices that refer to this License and to the\n disclaimer of warranties with\ + \ every copy of the Work You\n Distribute or Publicly Perform. When You Distribute\ + \ or Publicly\n Perform the Work, You may not impose any effective technological\n\ + \ measures on the Work that restrict the ability of a recipient of\n the\ + \ Work from You to exercise the rights granted to that\n recipient under the terms\ + \ of the License. This Section 4(a)\n applies to the Work as incorporated in a\ + \ Collection, but this\n does not require the Collection apart from the Work itself\ + \ to be\n made subject to the terms of this License. If You create a\n \ + \ Collection, upon notice from any Licensor You must, to the\n extent practicable,\ + \ remove from the Collection any credit as\n required by Section 4(h), as requested.\ + \ If You create an\n Adaptation, upon notice from any Licensor You must, to the\n\ + \ extent practicable, remove from the Adaptation any credit as\n required\ + \ by Section 4(h), as requested.\n\n b. Subject to the exception in Section 4(e),\ + \ you may not\n exercise any of the rights granted to You in Section 3 above in\n\ + \ any manner that is primarily intended for or directed toward\n commercial\ + \ advantage or private monetary compensation. The\n exchange of the Work for other\ + \ copyrighted works by means of\n digital file-sharing or otherwise shall not be\ + \ considered to be\n intended for or directed toward commercial advantage or private\n\ + \ monetary compensation, provided there is no payment of any\n monetary\ + \ compensation in connection with the exchange of\n copyrighted works.\n\n \ + \ c. If the Work meets the definition of Software, You may exercise\n the\ + \ rights granted in Section 3 only if You provide a copy of the\n corresponding\ + \ Source Code from which the Work was derived in digital\n form, or You provide\ + \ a URI for the corresponding Source Code of\n the Work, to any recipients upon\ + \ request.\n\n d. If the Work is used as or for a Web Service, You may exercise\n\ + \ the rights granted in Section 3 only if You provide a copy of the\n \ + \ corresponding Source Code from which the Work was derived in digital\n form,\ + \ or You provide a URI for the corresponding Source Code to the\n Work, to any\ + \ recipients of the data served or modified by the Web\n Service.\n\n \ + \ e. You may exercise the rights granted in Section 3 for\n commercial purposes\ + \ only if you satisfy any of the following:\n\n i. You are a worker-owned\ + \ business or worker-owned\n collective; and\n ii. after\ + \ tax, all financial gain, surplus, profits and \n benefits produced by the\ + \ business or collective are\n distributed among the worker-owners unless\ + \ a set amount\n is to be allocated towards community projects as decided\n\ + \ by a previously-established consensus agreement between the\n \ + \ worker-owners where all worker-owners agreed\n iii. You are not using\ + \ such rights on behalf of a business\n other than those specified in 4(e.i)\ + \ and elaborated upon in\n 4(e.ii), nor are using such rights as a proxy\ + \ on behalf of a\n business with the intent to circumvent the aforementioned\n\ + \ restrictions on such a business.\n\n f. Any use by a business\ + \ that is privately owned and managed,\n and that seeks to generate profit from\ + \ the labor of employees\n paid by salary or other wages, is not permitted under\ + \ this\n license.\n\n g. You may exercise the rights granted in Section\ + \ 3 for\n any purposes only if:\n\n i. You do not use the Work for\ + \ the purpose of inflicting\n Bodily Harm on human beings (subject to criminal\n\ + \ prosecution or otherwise) outside of providing medical aid.\n \ + \ ii.You do not use the Work for the purpose of Surveilling\n or tracking\ + \ individuals for financial gain.\n iii. You do not use the Work in an Act\ + \ of War.\n iv. You do not use the Work for the purpose of supporting\n \ + \ or profiting from an Act of War.\n v. You do not use the Work for\ + \ the purpose of Incarceration.\n vi. You do not use the Work for the purpose\ + \ of extracting\n oil, gas, or coal.\n vii. You do not use the\ + \ Work for the purpose of\n expediting, coordinating, or facilitating paid\ + \ work\n undertaken by individuals under the age of 12 years.\n \ + \ viii. You do not use the Work to either Discriminate or\n spread Hate Speech\ + \ on the basis of sex, sexual orientation,\n gender identity, race, age, disability,\ + \ color, national origin,\n religion, or lower economic status.\n\n \ + \ h. If You Distribute, or Publicly Perform the Work or any\n Adaptations or\ + \ Collections, You must, unless a request has been\n made pursuant to Section 4(a),\ + \ keep intact all copyright notices\n for the Work and provide, reasonable to the\ + \ medium or means You\n are utilizing: (i) the name of the Original Author (or\n\ + \ pseudonym, if applicable) if supplied, and/or if the Original\n Author\ + \ and/or Licensor designate another party or parties (e.g.,\n a sponsor institute,\ + \ publishing entity, journal) for attribution\n (\"Attribution Parties\") in Licensor!s\ + \ copyright notice, terms of\n service or by other reasonable means, the name of\ + \ such party or\n parties; (ii) the title of the Work if supplied; (iii) to the\n\ + \ extent reasonably practicable, the URI, if any, that Licensor\n specifies\ + \ to be associated with the Work, unless such URI does\n not refer to the copyright\ + \ notice or licensing information for\n the Work; and, (iv) consistent with Section\ + \ 3(b), in the case of\n an Adaptation, a credit identifying the use of the Work\ + \ in the\n Adaptation (e.g., \"French translation of the Work by Original\n \ + \ Author,\" or \"Screenplay based on original Work by Original\n Author\"\ + ). The credit required by this Section 4(h) may be\n implemented in any reasonable\ + \ manner; provided, however, that in\n the case of an Adaptation or Collection,\ + \ at a minimum such credit\n will appear, if a credit for all contributing authors\ + \ of the\n Adaptation or Collection appears, then as part of these credits\n \ + \ and in a manner at least as prominent as the credits for the\n other contributing\ + \ authors. For the avoidance of doubt, You may\n only use the credit required by\ + \ this Section for the purpose of\n attribution in the manner set out above and,\ + \ by exercising Your\n rights under this License, You may not implicitly or explicitly\n\ + \ assert or imply any connection with, sponsorship or endorsement\n by\ + \ the Original Author, Licensor and/or Attribution Parties, as\n appropriate, of\ + \ You or Your use of the Work, without the\n separate, express prior written permission\ + \ of the Original\n Author, Licensor and/or Attribution Parties.\n\n i.\ + \ For the avoidance of doubt:\n\n i. Non-waivable Compulsory License Schemes.\ + \ In those\n jurisdictions in which the right to collect royalties\n \ + \ through any statutory or compulsory licensing scheme\n cannot\ + \ be waived, the Licensor reserves the exclusive\n right to collect such\ + \ royalties for any exercise by You of\n the rights granted under this License;\n\ + \n ii. Waivable Compulsory License Schemes. In those\n jurisdictions\ + \ in which the right to collect royalties\n through any statutory or compulsory\ + \ licensing scheme can\n be waived, the Licensor reserves the exclusive right\ + \ to\n collect such royalties for any exercise by You of the\n \ + \ rights granted under this License if Your exercise of such\n rights\ + \ is for a purpose or use which is otherwise than\n noncommercial as permitted\ + \ under Section 4(b) and\n otherwise waives the right to collect royalties\ + \ through\n any statutory or compulsory licensing scheme; and,\n \ + \ iii.Voluntary License Schemes. The Licensor reserves the\n right\ + \ to collect royalties, whether individually or, in\n the event that the\ + \ Licensor is a member of a collecting\n society that administers voluntary\ + \ licensing schemes, via\n that society, from any exercise by You of the\ + \ rights\n granted under this License that is for a purpose or use\n \ + \ which is otherwise than noncommercial as permitted under\n Section\ + \ 4(b).\n\n j. Except as otherwise agreed in writing by the Licensor or as\n \ + \ may be otherwise permitted by applicable law, if You Reproduce,\n Distribute\ + \ or Publicly Perform the Work either by itself or as\n part of any Adaptations\ + \ or Collections, You must not distort,\n mutilate, modify or take other derogatory\ + \ action in relation to\n the Work which would be prejudicial to the Original Author's\n\ + \ honor or reputation. Licensor agrees that in those jurisdictions\n (e.g.\ + \ Japan), in which any exercise of the right granted in\n Section 3(b) of this\ + \ License (the right to make Adaptations)\n would be deemed to be a distortion,\ + \ mutilation, modification or\n other derogatory action prejudicial to the Original\ + \ Author's\n honor and reputation, the Licensor will waive or not assert, as\n\ + \ appropriate, this Section, to the fullest extent permitted by\n the\ + \ applicable national law, to enable You to reasonably\n exercise Your right under\ + \ Section 3(b) of this License (right to\n make Adaptations) but not otherwise.\n\ + \n k. Do not make any legal claim against anyone accusing the\n Work,\ + \ with or without changes, alone or with other works,\n of infringing any patent\ + \ claim.\n\n5. REPRESENTATIONS, WARRANTIES AND DISCLAIMER\n\n UNLESS OTHERWISE MUTUALLY\ + \ AGREED TO BY THE PARTIES IN WRITING, LICENSOR\n OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS\ + \ OR WARRANTIES OF ANY\n KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,\n\ + \ INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,\n FITNESS FOR\ + \ A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF\n LATENT OR OTHER DEFECTS,\ + \ ACCURACY, OR THE PRESENCE OF ABSENCE OF\n ERRORS, WHETHER OR NOT DISCOVERABLE. SOME\ + \ JURISDICTIONS DO NOT ALLOW\n THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION\ + \ MAY NOT APPLY TO\n YOU.\n\n6. LIMITATION ON LIABILITY\n\n EXCEPT TO THE EXTENT REQUIRED\ + \ BY APPLICABLE LAW, IN NO EVENT WILL\n LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY\ + \ FOR ANY SPECIAL,\n INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING\ + \ OUT OF\n THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED\n \ + \ OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. TERMINATION\n\n a. This License and\ + \ the rights granted hereunder will terminate\n automatically upon any breach by\ + \ You of the terms of this\n License. Individuals or entities who have received\ + \ Adaptations\n or Collections from You under this License, however, will not\n\ + \ have their licenses terminated provided such individuals or\n entities\ + \ remain in full compliance with those licenses. Sections\n 1, 2, 5, 6, 7, and\ + \ 8 will survive any termination of this\n License.\n\n b. Subject to\ + \ the above terms and conditions, the license\n granted here is perpetual (for\ + \ the duration of the applicable\n copyright in the Work). Notwithstanding the\ + \ above, Licensor\n reserves the right to release the Work under different license\n\ + \ terms or to stop distributing the Work at any time; provided,\n however\ + \ that any such election will not serve to withdraw this\n License (or any other\ + \ license that has been, or is required to\n be, granted under the terms of this\ + \ License), and this License\n will continue in full force and effect unless terminated\ + \ as\n stated above.\n\n8. REVISED LICENSE VERSIONS\n\n a. This License\ + \ may receive future revisions in the original\n spirit of the license intended\ + \ to strengthen This License.\n Each version of This License has an incrementing\ + \ version number.\n\n b. Unless otherwise specified like in Section 8(c) The Licensor\n\ + \ has only granted this current version of This License for The Work.\n \ + \ In this case future revisions do not apply.\n\n c. The Licensor may specify\ + \ that the latest available\n revision of This License be used for The Work by\ + \ either explicitly\n writing so or by suffixing the License URI with a \"+\" symbol.\n\ + \n d. The Licensor may specify that The Work is also available\n under\ + \ the terms of This License's current revision as well\n as specific future revisions.\ + \ The Licensor may do this by\n writing it explicitly or suffixing the License\ + \ URI with any\n additional version numbers each separated by a comma.\n\n9. MISCELLANEOUS\n\ + \n a. Each time You Distribute or Publicly Perform the Work or a\n Collection,\ + \ the Licensor offers to the recipient a license to\n the Work on the same terms\ + \ and conditions as the license granted\n to You under this License.\n\n \ + \ b. Each time You Distribute or Publicly Perform an Adaptation,\n Licensor\ + \ offers to the recipient a license to the original Work\n on the same terms and\ + \ conditions as the license granted to You\n under this License.\n\n c.\ + \ If the Work is classified as Software, each time You Distribute\n or Publicly\ + \ Perform an Adaptation, Licensor offers to the recipient\n a copy and/or URI of\ + \ the corresponding Source Code on the same\n terms and conditions as the license\ + \ granted to You under this License.\n\n d. If the Work is used as a Web Service,\ + \ each time You Distribute\n or Publicly Perform an Adaptation, or serve data derived\ + \ from the\n Software, the Licensor offers to any recipients of the data a copy\n\ + \ and/or URI of the corresponding Source Code on the same terms and\n \ + \ conditions as the license granted to You under this License.\n\n e. If any provision\ + \ of this License is invalid or unenforceable\n under applicable law, it shall\ + \ not affect the validity or\n enforceability of the remainder of the terms of\ + \ this License,\n and without further action by the parties to this agreement,\n\ + \ such provision shall be reformed to the minimum extent necessary\n to\ + \ make such provision valid and enforceable.\n\n f. No term or provision of this\ + \ License shall be deemed waived\n and no breach consented to unless such waiver\ + \ or consent shall\n be in writing and signed by the party to be charged with such\n\ + \ waiver or consent.\n\n g. This License constitutes the entire agreement\ + \ between the\n parties with respect to the Work licensed here. There are no\n\ + \ understandings, agreements or representations with respect to\n the\ + \ Work not specified here. Licensor shall not be bound by any\n additional provisions\ + \ that may appear in any communication from\n You. This License may not be modified\ + \ without the mutual written\n agreement of the Licensor and You.\n\n \ + \ h. The rights granted under, and the subject matter referenced,\n in this License\ + \ were drafted utilizing the terminology of the\n Berne Convention for the Protection\ + \ of Literary and Artistic\n Works (as amended on September 28, 1979), the Rome\ + \ Convention of\n 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances\n\ + \ and Phonograms Treaty of 1996 and the Universal Copyright\n Convention\ + \ (as revised on July 24, 1971). These rights and\n subject matter take effect\ + \ in the relevant jurisdiction in which\n the License terms are sought to be enforced\ + \ according to the\n corresponding provisions of the implementation of those treaty\n\ + \ provisions in the applicable national law. If the standard suite\n of\ + \ rights granted under applicable copyright law includes\n additional rights not\ + \ granted under this License, such\n additional rights are deemed to be included\ + \ in the License; this\n License is not intended to restrict the license of any\ + \ rights\n under applicable law." json: cooperative-non-violent-4.0.json - yml: cooperative-non-violent-4.0.yml + yaml: cooperative-non-violent-4.0.yml html: cooperative-non-violent-4.0.html - text: cooperative-non-violent-4.0.LICENSE + license: cooperative-non-violent-4.0.LICENSE - license_key: copyheart + category: Public Domain spdx_license_key: LicenseRef-scancode-copyheart other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: ♡ Copying is an act of love. Please copy. json: copyheart.json - yml: copyheart.yml + yaml: copyheart.yml html: copyheart.html - text: copyheart.LICENSE + license: copyheart.LICENSE - license_key: copyleft-next-0.3.0 + category: Copyleft spdx_license_key: copyleft-next-0.3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + copyleft-next 0.3.0 ("this License") + Release date: 2013-05-16 + + 1. License Grants; No Trademark License + + Subject to the terms of this License, I grant You: + + a) A non-exclusive, worldwide, perpetual, royalty-free, irrevocable + copyright license, to reproduce, Distribute, prepare derivative works + of, publicly perform and publicly display My Work. + + b) A non-exclusive, worldwide, perpetual, royalty-free, irrevocable + patent license under Licensed Patents to make, have made, use, sell, + offer for sale, and import Covered Works. + + This License does not grant any rights in My name, trademarks, service + marks, or logos. + + 2. Distribution: General Conditions + + You may Distribute Covered Works, provided that You (i) inform + recipients how they can obtain a copy of this License; (ii) satisfy the + applicable conditions of sections 3 through 6; and (iii) preserve all + Legal Notices contained in My Work (to the extent they remain + pertinent). "Legal Notices" means copyright notices, license notices, + license texts, and author attributions, but does not include logos, + other graphical images, trademarks or trademark legends. + + 3. Conditions for Distributing Derived Works; Outbound GPL Compatibility + + If You Distribute a Derived Work, You must license the entire Derived + Work as a whole under this License, with prominent notice of such + licensing. This condition may not be avoided through such means as + separate Distribution of portions of the Derived Work. You may + additionally license the Derived Work under the GPL, so that the + recipient may further Distribute the Derived Work under either this + License or the GPL. + + 4. Condition Against Further Restrictions; Inbound License Compatibility + + When Distributing a Covered Work, You may not impose further + restrictions on the exercise of rights in the Covered Work granted under + this License. This condition is not excused merely because such + restrictions result from Your compliance with conditions or obligations + extrinsic to this License (such as a court order or an agreement with a + third party). + + However, You may Distribute a Covered Work incorporating material + governed by a license that is both OSI-Approved and FSF-Free as of the + release date of this License, provided that Your Distribution complies + with such other license. + + 5. Conditions for Distributing Object Code + + You may Distribute an Object Code form of a Covered Work, provided that + you accompany the Object Code with a URL through which the Corresponding + Source is made available, at no charge, by some standard or customary + means of providing network access to source code. + + If you Distribute the Object Code in a physical product or tangible + storage medium ("Product"), the Corresponding Source must be available + through such URL for two years from the date of Your most recent + Distribution of the Object Code in the Product. However, if the Product + itself contains or is accompanied by the Corresponding Source (made + available in a customarily accessible manner), You need not also comply + with the first paragraph of this section. + + Each recipient of the Covered Work from You is an intended third-party + beneficiary of this License solely as to this section 5, with the right + to enforce its terms. + + 6. Symmetrical Licensing Condition for Upstream Contributions + + If You Distribute a work to Me specifically for inclusion in or + modification of a Covered Work (a "Patch"), and no explicit licensing + terms apply to the Patch, You license the Patch under this License, to + the extent of Your copyright in the Patch. This condition does not + negate the other conditions of this License, if applicable to the Patch. + + 7. Nullification of Copyleft/Proprietary Dual Licensing + + If I offer to license, for a fee, a Covered Work under terms other than + a license that is OSI-Approved or FSF-Free as of the release date of this + License or a numbered version of copyleft-next released by the + Copyleft-Next Project, then the license I grant You under section 1 is no + longer subject to the conditions in sections 2 through 5. + + 8. Copyleft Sunset + + The conditions in sections 2 through 5 no longer apply once fifteen + years have elapsed from the date of My first Distribution of My Work + under this License. + + 9. Pass-Through + + When You Distribute a Covered Work, the recipient automatically receives + a license to My Work from Me, subject to the terms of this License. + + 10. Termination + + Your license grants under section 1 are automatically terminated if You + + a) fail to comply with the conditions of this License, unless You cure + such noncompliance within thirty days after becoming aware of it, or + + b) initiate a patent infringement litigation claim (excluding + declaratory judgment actions, counterclaims, and cross-claims) + alleging that any part of My Work directly or indirectly infringes + any patent. + + Termination of Your license grants extends to all copies of Covered + Works You subsequently obtain. Termination does not terminate the + rights of those who have received copies or rights from You subject to + this License. + + To the extent permission to make copies of a Covered Work is necessary + merely for running it, such permission is not terminable. + + 11. Later License Versions + + The Copyleft-Next Project may release new versions of copyleft-next, + designated by a distinguishing version number ("Later Versions"). + Unless I explicitly remove the option of Distributing Covered Works + under Later Versions, You may Distribute Covered Works under any Later + Version. + + ** 12. No Warranty ** + ** ** + ** My Work is provided "as-is", without warranty. You bear the risk ** + ** of using it. To the extent permitted by applicable law, each ** + ** Distributor of My Work excludes the implied warranties of title, ** + ** merchantability, fitness for a particular purpose and ** + ** non-infringement. ** + + ** 13. Limitation of Liability ** + ** ** + ** To the extent permitted by applicable law, in no event will any ** + ** Distributor of My Work be liable to You for any damages ** + ** whatsoever, whether direct, indirect, special, incidental, or ** + ** consequential damages, whether arising under contract, tort ** + ** (including negligence), or otherwise, even where the Distributor ** + ** knew or should have known about the possibility of such damages. ** + + 14. Severability + + The invalidity or unenforceability of any provision of this License + does not affect the validity or enforceability of the remainder of + this License. Such provision is to be reformed to the minimum extent + necessary to make it valid and enforceable. + + 15. Definitions + + "Copyleft-Next Project" means the project that maintains the source + code repository at as of the + release date of this License. + + "Corresponding Source" of a Covered Work in Object Code form means (i) + the Source Code form of the Covered Work; (ii) all scripts, + instructions and similar information that are reasonably necessary for + a skilled developer to generate such Object Code from the Source Code + provided under (i); and (iii) a list clearly identifying all Separate + Works (other than those provided in compliance with (ii)) that were + specifically used in building and (if applicable) installing the + Covered Work (for example, a specified proprietary compiler including + its version number). Corresponding Source must be machine-readable. + + "Covered Work" means My Work or a Derived Work. + + "Derived Work" means a work of authorship that copies from, modifies, + adapts, is based on, is a derivative work of, transforms, translates or + contains all or part of My Work, such that copyright permission is + required. The following are not Derived Works: (i) Mere Aggregation; + (ii) a mere reproduction of My Work; and (iii) if My Work fails to + explicitly state an expectation otherwise, a work that merely makes + reference to My Work. + + "Distribute" means to distribute, transfer or make a copy available to + someone else, such that copyright permission is required. + + "Distributor" means Me and anyone else who Distributes a Covered Work. + + "FSF-Free" means classified as 'free' by the Free Software Foundation. + + "GPL" means a version of the GNU General Public License or the GNU + Affero General Public License. + + "I"/"Me"/"My" refers to the individual or legal entity that places My + Work under this License. "You"/"Your" refers to the individual or legal + entity exercising rights in My Work under this License. A legal entity + includes each entity that controls, is controlled by, or is under + common control with such legal entity. "Control" means (a) the power to + direct the actions of such legal entity, whether by contract or + otherwise, or (b) ownership of more than fifty percent of the + outstanding shares or beneficial ownership of such legal entity. + + "Licensed Patents" means all patent claims licensable royalty-free by + Me, now or in the future, that are necessarily infringed by making, + using, or selling My Work, and excludes claims that would be infringed + only as a consequence of further modification of My Work. + + "Mere Aggregation" means an aggregation of a Covered Work with a + Separate Work. + + "My Work" means the particular work of authorship I license to You + under this License. + + "Object Code" means any form of a work that is not Source Code. + + "OSI-Approved" means approved as 'Open Source' by the Open Source + Initiative. + + "Separate Work" means a work that is separate from and independent of a + particular Covered Work and is not by its nature an extension or + enhancement of the Covered Work, and/or a runtime library, standard + library or similar component that is used to generate an Object Code + form of a Covered Work. + + "Source Code" means the preferred form of a work for making + modifications to it. json: copyleft-next-0.3.0.json - yml: copyleft-next-0.3.0.yml + yaml: copyleft-next-0.3.0.yml html: copyleft-next-0.3.0.html - text: copyleft-next-0.3.0.LICENSE + license: copyleft-next-0.3.0.LICENSE - license_key: copyleft-next-0.3.1 + category: Copyleft spdx_license_key: copyleft-next-0.3.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "copyleft-next 0.3.1 (\"this License\")\nRelease date: 2016-04-29\n\n1. License Grants;\ + \ No Trademark License\n\n Subject to the terms of this License, I grant You:\n\n a)\ + \ A non-exclusive, worldwide, perpetual, royalty-free, irrevocable\n copyright license,\ + \ to reproduce, Distribute, prepare derivative works\n of, publicly perform and publicly\ + \ display My Work.\n\n b) A non-exclusive, worldwide, perpetual, royalty-free, irrevocable\n\ + \ patent license under Licensed Patents to make, have made, use, sell,\n offer\ + \ for sale, and import Covered Works.\n\n This License does not grant any rights in My\ + \ name, trademarks, service\n marks, or logos.\n\n2. Distribution: General Conditions\n\ + \n You may Distribute Covered Works, provided that You (i) inform\n recipients how they\ + \ can obtain a copy of this License; (ii) satisfy the\n applicable conditions of sections\ + \ 3 through 6; and (iii) preserve all\n Legal Notices contained in My Work (to the extent\ + \ they remain\n pertinent). \"Legal Notices\" means copyright notices, license notices,\n\ + \ license texts, and author attributions, but does not include logos,\n other graphical\ + \ images, trademarks or trademark legends.\n\n3. Conditions for Distributing Derived Works;\ + \ Outbound GPL Compatibility\n\n If You Distribute a Derived Work, You must license the\ + \ entire Derived\n Work as a whole under this License, with prominent notice of such\n\ + \ licensing. This condition may not be avoided through such means as\n separate Distribution\ + \ of portions of the Derived Work.\n\n If the Derived Work includes material licensed\ + \ under the GPL, You may\n instead license the Derived Work under the GPL.\n \n4. Condition\ + \ Against Further Restrictions; Inbound License Compatibility\n\n When Distributing a\ + \ Covered Work, You may not impose further\n restrictions on the exercise of rights in\ + \ the Covered Work granted under\n this License. This condition is not excused merely\ + \ because such\n restrictions result from Your compliance with conditions or obligations\n\ + \ extrinsic to this License (such as a court order or an agreement with a\n third party).\n\ + \n However, You may Distribute a Covered Work incorporating material\n governed by a\ + \ license that is both OSI-Approved and FSF-Free as of the\n release date of this License,\ + \ provided that compliance with such\n other license would not conflict with any conditions\ + \ stated in other\n sections of this License.\n\n5. Conditions for Distributing Object\ + \ Code\n\n You may Distribute an Object Code form of a Covered Work, provided that\n \ + \ you accompany the Object Code with a URL through which the Corresponding\n Source is\ + \ made available, at no charge, by some standard or customary\n means of providing network\ + \ access to source code.\n\n If you Distribute the Object Code in a physical product or\ + \ tangible\n storage medium (\"Product\"), the Corresponding Source must be available\n\ + \ through such URL for two years from the date of Your most recent\n Distribution of\ + \ the Object Code in the Product. However, if the Product\n itself contains or is accompanied\ + \ by the Corresponding Source (made\n available in a customarily accessible manner), You\ + \ need not also comply\n with the first paragraph of this section.\n\n Each direct and\ + \ indirect recipient of the Covered Work from You is an\n intended third-party beneficiary\ + \ of this License solely as to this\n section 5, with the right to enforce its terms.\n\ + \n6. Symmetrical Licensing Condition for Upstream Contributions\n\n If You Distribute\ + \ a work to Me specifically for inclusion in or\n modification of a Covered Work (a \"\ + Patch\"), and no explicit licensing\n terms apply to the Patch, You license the Patch\ + \ under this License, to\n the extent of Your copyright in the Patch. This condition does\ + \ not\n negate the other conditions of this License, if applicable to the Patch.\n\n7.\ + \ Nullification of Copyleft/Proprietary Dual Licensing\n\n If I offer to license, for\ + \ a fee, a Covered Work under terms other than\n a license that is OSI-Approved or FSF-Free\ + \ as of the release date of this\n License or a numbered version of copyleft-next released\ + \ by the\n Copyleft-Next Project, then the license I grant You under section 1 is no\n\ + \ longer subject to the conditions in sections 3 through 5.\n\n8. Copyleft Sunset\n\n\ + \ The conditions in sections 3 through 5 no longer apply once fifteen\n years have elapsed\ + \ from the date of My first Distribution of My Work\n under this License.\n\n9. Pass-Through\n\ + \n When You Distribute a Covered Work, the recipient automatically receives\n a license\ + \ to My Work from Me, subject to the terms of this License.\n\n10. Termination\n\n Your\ + \ license grants under section 1 are automatically terminated if You\n\n a) fail to comply\ + \ with the conditions of this License, unless You cure\n such noncompliance within\ + \ thirty days after becoming aware of it, or\n\n b) initiate a patent infringement litigation\ + \ claim (excluding\n declaratory judgment actions, counterclaims, and cross-claims)\n\ + \ alleging that any part of My Work directly or indirectly infringes\n any patent.\n\ + \n Termination of Your license grants extends to all copies of Covered\n Works You\ + \ subsequently obtain. Termination does not terminate the\n rights of those who have\ + \ received copies or rights from You subject to\n this License.\n\n To the extent\ + \ permission to make copies of a Covered Work is necessary\n merely for running it, such\ + \ permission is not terminable.\n\n11. Later License Versions\n\n The Copyleft-Next Project\ + \ may release new versions of copyleft-next,\n designated by a distinguishing version\ + \ number (\"Later Versions\").\n Unless I explicitly remove the option of Distributing\ + \ Covered Works\n under Later Versions, You may Distribute Covered Works under any Later\n\ + \ Version.\n\n** 12. No Warranty \ + \ **\n** **\n**\ + \ My Work is provided \"as-is\", without warranty. You bear the risk **\n** of\ + \ using it. To the extent permitted by applicable law, each **\n** Distributor\ + \ of My Work excludes the implied warranties of title, **\n** merchantability, fitness\ + \ for a particular purpose and **\n** non-infringement. \ + \ **\n\n** 13. Limitation of Liability \ + \ **\n** \ + \ **\n** To the extent permitted by applicable law, in no event will\ + \ any **\n** Distributor of My Work be liable to You for any damages **\n\ + ** whatsoever, whether direct, indirect, special, incidental, or **\n** consequential\ + \ damages, whether arising under contract, tort **\n** (including negligence),\ + \ or otherwise, even where the Distributor **\n** knew or should have known about the\ + \ possibility of such damages. **\n\n14. Severability\n\n The invalidity or unenforceability\ + \ of any provision of this License\n does not affect the validity or enforceability of\ + \ the remainder of\n this License. Such provision is to be reformed to the minimum extent\n\ + \ necessary to make it valid and enforceable.\n\n15. Definitions\n\n \"Copyleft-Next\ + \ Project\" means the project that maintains the source\n code repository at \n\ + \ as of the release date of this License.\n\n \"Corresponding Source\" of a Covered\ + \ Work in Object Code form means (i)\n the Source Code form of the Covered Work; (ii)\ + \ all scripts,\n instructions and similar information that are reasonably necessary for\n\ + \ a skilled developer to generate such Object Code from the Source Code\n provided\ + \ under (i); and (iii) a list clearly identifying all Separate\n Works (other than those\ + \ provided in compliance with (ii)) that were\n specifically used in building and (if\ + \ applicable) installing the\n Covered Work (for example, a specified proprietary compiler\ + \ including\n its version number). Corresponding Source must be machine-readable.\n\n\ + \ \"Covered Work\" means My Work or a Derived Work.\n\n \"Derived Work\" means a work\ + \ of authorship that copies from, modifies,\n adapts, is based on, is a derivative work\ + \ of, transforms, translates or\n contains all or part of My Work, such that copyright\ + \ permission is\n required. The following are not Derived Works: (i) Mere Aggregation;\n\ + \ (ii) a mere reproduction of My Work; and (iii) if My Work fails to\n explicitly\ + \ state an expectation otherwise, a work that merely makes\n reference to My Work.\n\n\ + \ \"Distribute\" means to distribute, transfer or make a copy available to\n someone\ + \ else, such that copyright permission is required.\n\n \"Distributor\" means Me and\ + \ anyone else who Distributes a Covered Work.\n\n \"FSF-Free\" means classified as 'free'\ + \ by the Free Software Foundation.\n\n \"GPL\" means a version of the GNU General Public\ + \ License or the GNU\n Affero General Public License.\n\n \"I\"/\"Me\"/\"My\" refers\ + \ to the individual or legal entity that places My\n Work under this License. \"You\"\ + /\"Your\" refers to the individual or legal\n entity exercising rights in My Work under\ + \ this License. A legal entity\n includes each entity that controls, is controlled by,\ + \ or is under\n common control with such legal entity. \"Control\" means (a) the power\ + \ to\n direct the actions of such legal entity, whether by contract or\n otherwise,\ + \ or (b) ownership of more than fifty percent of the\n outstanding shares or beneficial\ + \ ownership of such legal entity.\n\n \"Licensed Patents\" means all patent claims licensable\ + \ royalty-free by\n Me, now or in the future, that are necessarily infringed by making,\n\ + \ using, or selling My Work, and excludes claims that would be infringed\n only as\ + \ a consequence of further modification of My Work.\n\n \"Mere Aggregation\" means an\ + \ aggregation of a Covered Work with a\n Separate Work.\n\n \"My Work\" means the\ + \ particular work of authorship I license to You\n under this License.\n\n \"Object\ + \ Code\" means any form of a work that is not Source Code.\n\n \"OSI-Approved\" means\ + \ approved as 'Open Source' by the Open Source\n Initiative.\n\n \"Separate Work\"\ + \ means a work that is separate from and independent of a\n particular Covered Work and\ + \ is not by its nature an extension or\n enhancement of the Covered Work, and/or a runtime\ + \ library, standard\n library or similar component that is used to generate an Object\ + \ Code\n form of a Covered Work.\n\n \"Source Code\" means the preferred form of a\ + \ work for making\n modifications to it." json: copyleft-next-0.3.1.json - yml: copyleft-next-0.3.1.yml + yaml: copyleft-next-0.3.1.yml html: copyleft-next-0.3.1.html - text: copyleft-next-0.3.1.LICENSE + license: copyleft-next-0.3.1.LICENSE - license_key: corporate-accountability-1.1 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-corporate-accountability-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "The +CAL Software License Agreement Legal Notice\n\nThis Software is available without\ + \ charge but subject to compliance obligations; you can redistribute and/or modify this\ + \ Software under the terms of the +CAL Software License Agreement (the \"Agreement\"), as\ + \ published by the Corporate Accountability Lab NFP (\"CAL\"), available here: https://www.legaldesign.org/cal-software-license.\ + \ CAL is a 501(c)(3) non-profit organization based in Chicago, IL that designs legal solutions\ + \ to protect people and the environment from corporate abuse. Through this Agreement, CAL\ + \ seeks to empower producers of intellectual property to keep their intellectual property\ + \ out of unethical supply chains and to support ethical and sustainable commercial use of\ + \ intellectual property. \n\nThis program is distributed in the hope that it will be useful,\ + \ but WITHOUT ANY WARRANTY; including without even the implied warranty of MERCHANTABILITY,\ + \ NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. See the Agreement for more details.\n\ + \nThe +CAL Software License Agreement (the \"Agreement\") (Version 1.1)\n\nBy exercising\ + \ any of the rights licensed below, you (whether an individual or legal entity, the \"Licensee\"\ + ) accept and agree to be bound by the terms and conditions of this Agreement. Licensee acknowledges\ + \ and agrees that Licensee is granted the licensed rights set forth in Section 1 from the\ + \ party listed above in the legal notice (whether an individual or legal entity, the \"\ + Licensor\") in consideration of Licensee's acceptance of these terms and conditions, and\ + \ Licensor grants Licensee such rights in consideration of benefits the Licensor receives\ + \ from making the software and associated documentation files (the \"Software\") available\ + \ under these terms and conditions. Licensor shall notify Corporate Accountability Lab (\"\ + CAL\") of use of this Agreement by completing the form on the website at https://www.legaldesign.org/cal-software-license.\ + \ Additional obligations apply only to use of the Software for Commercial Purpose, as stated\ + \ in Sections 2(b) and 6(a). \"Commercial Purpose\" means any use of the Software other\ + \ than for individual, personal, and non-business use and Commercial Purpose includes, without\ + \ limitation, the (i) internal use of the Software (including Modified Software) for business\ + \ purposes or (ii) Sharing (defined below) of the Software (including Modified Software)\ + \ -- alone, in combination with, or embedded in other products or services that are made\ + \ available to third parties -- for a fee or other consideration, or directly or indirectly\ + \ in connection with any business.\n\nFor consideration Licensee and Licensor agree is satisfactory:\n\ + \nSection 1. License.\n\n(a) Permission is hereby granted by Licensor, on a non-exclusive\ + \ basis and free of charge to Licensee obtaining a copy of this Software, to use, copy,\ + \ modify, merge, publish, distribute, embed in other products, sell copies of, or otherwise\ + \ Share (defined below) the Software, and to permit persons to whom the Software is furnished\ + \ to do all of the above, subject to compliance with the terms and conditions set forth\ + \ in this Agreement. For the avoidance of doubt, nothing herein is intended to nor shall\ + \ be interpreted to interfere with any \"fair use\" rights available under copyright law\ + \ nor grant any rights that are not protected by copyright law.\n\n(b) Each time Licensee\ + \ distributes, publishes, or otherwise makes the Software (or any component thereof) available\ + \ to another person or entity in any manner (including embedded in another product) (\"\ + Share\" or \"Sharing\"), the Licensee's recipient automatically receives a license from\ + \ the original licensors, including Licensor, subject to this Agreement, and the recipient\ + \ then becomes a Licensee that must comply with the terms of this Agreement.\n\n(c) If\ + \ Licensee creates a modified version of the Software (including any derivative work thereof)\ + \ (\"Modified Software\"), Licensee may in turn Share the Modified Software; provided, however,\ + \ that Licensee must apply this Agreement (or a later version) to any Sharing of the Modified\ + \ Software as further described in Section 2, in which event Licensee would become a licensor\ + \ and its recipient(s) would become licensee(s) with respect to the Modified Software.\n\ + \n(d) For the avoidance of doubt, Licensor may also offer the Software (but not Modified\ + \ Software) under separate terms or conditions or stop distributing the Software at any\ + \ time; however, doing so will not terminate this Agreement to Licensee nor Licensee's obligations\ + \ pursuant to this Agreement.\n\nSection 2. License Conditions. The grant of rights stated\ + \ in Section 1 is expressly made subject to ongoing compliance with the following conditions\ + \ and restrictions (the \"Conditions\") which are hereby accepted and agreed to by Licensee\ + \ as obligations:\n\n(a) Notice and Registration. The above legal notice shall be included\ + \ in all copies or substantial portions of the Software (including Modified Software) in\ + \ both the code (e.g., in comments included in the source and object code) and human readable\ + \ form (e.g., in a \"readme\" file or credits screen). Corporate Accountability Lab requests,\ + \ though does not require, that Licensee register its use of the Software (including Modified\ + \ Software) with CAL by completing the form on the website at https://www.legaldesign.org/cal-software-license.\ + \ For the avoidance of doubt, failure to register use shall not relieve Licensee from its\ + \ obligations to comply with the Conditions of the Agreement.\n\n(b) Morals Clause for Safe\ + \ and Environmentally Sustainable Supply Chains. If Licensee is a commercial entity, Licensee\ + \ accepts a duty of care, as that term is used in tort law, delict law, and/or similar bodies\ + \ of law closely related to tort and/or delict law, including without limitation, a requirement\ + \ to act with the watchfulness, attention, caution, and prudence that a reasonable person\ + \ in the circumstances would use (\"Duty of Care\") towards any person directly impacted\ + \ by any supply chain utilizing the Software for Commercial Purposes (e.g., any person working\ + \ in, or residing in proximity to, any supply chain activities, or person harmed in the\ + \ production of Licensee's goods or provision of Licensee's services) and towards the environment\ + \ directly impacted by any supply chain utilizing the Software for Commercial Purposes (e.g.,\ + \ any natural resources used in the production or manufacturing of Licensee's goods or provision\ + \ of Licensee's services, or environment harmed by the disposal or removal of any by-products\ + \ created during the production or manufacturing of Licensee's goods or provision of Licensee's\ + \ services). If Licensee, its subsidiaries, affiliates, contractors, or suppliers should,\ + \ during the term of this Agreement,\n\n engage in any negligent conduct with respect\ + \ to any person directly impacted by any supply chain utilizing the Software for Commercial\ + \ Purposes (e.g., violate any applicable labor law, fail to uphold a Duty of Care towards\ + \ any worker or impacted person, fail to uphold a Licensee's own corporate-social responsibility\ + \ commitments), or\n\n engage in any negligent conduct with respect to the environment\ + \ directly impacted by any supply chain utilizing the Software for Commercial Purposes (e.g.,\ + \ violate any applicable environmental law, fail to conduct environmental impact assessments\ + \ of supply chain activities or otherwise fail to uphold a Duty of Care towards the environment,\ + \ fail to uphold Licensee's own environmental commitments),\n\nLicensor and any Third-Party\ + \ Beneficiary, and only Licensor and any Third-Party Beneficiary, will have the right to\ + \ terminate this Agreement for cause. This shall not be interpreted to include acts committed\ + \ by individuals outside the scope of their employment. If the Agreement is terminated pursuant\ + \ to this clause, Licensor, and any Third-Party Beneficiary will each have an independent\ + \ right to seek appropriate remedies at law or equity.\n\nSection 3. No Warranties; Liability\ + \ Limitations.\n\n(a) 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.\n\n(b) To the extent possible, in no event will the\ + \ Licensor be liable to Licensee on any legal theory (including, without limitation, negligence)\ + \ or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary,\ + \ or other losses, costs, expenses, or damages arising out of this Agreement or use of the\ + \ Software, even if the Licensor has been advised of the possibility of such losses, costs,\ + \ expenses, or damages. Where a limitation of liability is not allowed in full or in part,\ + \ this limitation may not apply to Licensee.\n\n(c) Licensor and CAL make no representations\ + \ or warranties regarding the Agreement, including its legal enforceability. The Agreement\ + \ is offered on an \"AS IS\" basis and Licensor and Licensee agree to defend, indemnify,\ + \ and hold CAL harmless from any claims relating to the use of the Agreement.\n\n(d) The\ + \ disclaimer of warranties and limitation of liability provided above shall be interpreted\ + \ in a manner that, to the extent possible, most closely approximates an absolute disclaimer\ + \ and waiver of all liability.\n\nSection 4. Term; Survival.\n\n(a) Term and Termination.\ + \ This Agreement applies for the term of the copyright in the Software licensed hereunder.\ + \ However, if Licensee fails to comply with this Agreement, then all rights licensed hereunder\ + \ terminate automatically.\n\n(b) Survival. Sections 2, 3, 4, 5, 6, 7, and 8 shall survive\ + \ termination of this Agreement.\n\nSection 5. Equitable Relief; Non-Exclusive Remedies.\ + \ The parties agree that irreparable damage would occur if any provision of Section 2 were\ + \ not performed in accordance with the terms hereof by Licensee and that the Licensor and\ + \ any Third-Party Beneficiary shall be entitled to equitable relief, including injunctive\ + \ relief or specific performance of the terms hereof, in addition to any other remedy to\ + \ which they are entitled at law or in equity.\n\nSection 6. Third-Party Beneficiaries.\n\ + \n(a) Licensee acknowledges and agrees that the Conditions are intended to benefit and protect\ + \ not only Licensor but also any person directly impacted by any supply chain utilizing\ + \ the Software for Commercial Purposes by creating a Duty of Care relating to the Conditions.\ + \ Any individual who is injured or suffers damages, including but not limited to workers,\ + \ laborers, landowners, property owners, those residing in proximity to supply chain activities,\ + \ survivors of those killed or disabled including but not limited to widows, widowers, children,\ + \ and community members, due to Licensee's breach of a Duty of Care arising through this\ + \ Agreement or due to negligent conduct proscribed in the Conditions, is an intended third-party\ + \ beneficiary of this Agreement (\"Third-Party Beneficiary\"), having the independent right\ + \ to seek enforcement of Sections 2, 4, 5, 6, 7, and 8 and any other available remedy at\ + \ law and equity.\n\n(b) Except as expressly stated in this Agreement, there are no third-party\ + \ beneficiaries of this Agreement.\n\nSection 7. Interpretation. For purposes of this Agreement,\ + \ (a) the words \"include,\" \"includes,\" and \"including\" are deemed to be followed by\ + \ the words \"without limitation\"; (b) the word \"or\" is not exclusive; and (c) the words\ + \ \"herein,\" \"hereof,\" \"hereby,\" and \"hereunder\" refer to this Agreement as a whole.\ + \ \"Conditions\" is to be read as both condition and covenant, actionable under both contract\ + \ and copyright law to the extent permissible by law. Unless the context otherwise requires,\ + \ references herein to a statute, regulation, treaty, guideline, and similar instruments\ + \ means such statute, regulation, treaty, guideline, and similar instrument as amended from\ + \ time to time and includes any successor thereto and any regulations promulgated thereunder.\ + \ This Agreement shall be construed without regard to any presumption or rule requiring\ + \ construction or interpretation against the party drafting an instrument or causing any\ + \ instrument to be drafted.\n\n\nSection 8. Severability. To the extent possible, if any\ + \ provision of this Agreement is deemed unenforceable, it shall be automatically reformed\ + \ to the minimum extent necessary to make it enforceable; if the provision cannot be reformed,\ + \ it shall be severed from this Agreement without affecting the enforceability of the remaining\ + \ terms and conditions, and any such prohibition or unenforceability in any jurisdiction\ + \ shall not invalidate or render unenforceable such provision in any other jurisdiction.\ + \ Nothing in this Agreement constitutes or may be interpreted as a limitation upon, or waiver\ + \ of, any privileges and immunities that apply to the Licensor or Licensee, including from\ + \ the legal processes of any jurisdiction or authority to the extent such privileges and\ + \ immunities may not be waived under applicable law." json: corporate-accountability-1.1.json - yml: corporate-accountability-1.1.yml + yaml: corporate-accountability-1.1.yml html: corporate-accountability-1.1.html - text: corporate-accountability-1.1.LICENSE + license: corporate-accountability-1.1.LICENSE - license_key: corporate-accountability-commercial-1.1 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-accountability-commercial-1.1 other_spdx_license_keys: - LicenseRef-scancode-corporate-accountability-commercial-1.1 is_exception: yes is_deprecated: no - category: Proprietary Free + text: "The CC+CAL Commercial Use License Agreement Legal Notice\n\nThe CC+CAL Commercial Use\ + \ License Agreement (the \"Agreement\") is intended to be used in tandem with any standard\ + \ Creative Commons Public License that does not provide the public with rights to use licensed\ + \ material for commercial purposes (i.e., a Creative Commons Public License that includes\ + \ a NonCommercial restriction). Through this Agreement, licensors using a Creative Commons\ + \ Public License grant additional permissions to the public to use the licensed material\ + \ for commercial purposes subject to a Morals Clause for Safe and Environmentally Sustainable\ + \ Supply Chains set forth in this Agreement. For the avoidance of doubt, this Agreement\ + \ does not modify or customize any Creative Commons Public License. This Agreement is a\ + \ separate and independent agreement intended to exist alongside a Creative Commons Public\ + \ License, granting additional permissions not provided by the Creative Commons Public License\ + \ that pertain specifically to the commercial use of licensed material and the use of licensed\ + \ material to promote safe and environmentally sustainable supply chains.\n\nThe CC+CAL\ + \ Commercial Use License Agreement is published by the Corporate Accountability Lab NFP\ + \ (\"CAL\"). CAL is a 501(c)(3) non-profit organization based in Chicago, IL that designs\ + \ legal solutions to protect people and the environment from corporate abuse. Through this\ + \ Agreement, CAL seeks to empower producers of intellectual property to keep their intellectual\ + \ property out of unethical supply chains and to support ethical and environmentally sustainable\ + \ commercial use of intellectual property. CAL is not affiliated with Creative Commons and\ + \ makes no representations as to Creative Commons' opinion of this Agreement or of CAL.\ + \ \n\nMore information about Creative Commons Public Licenses can be found at https://creativecommons.org/choose/.\n\ + \nMore information about CCPlus, which denotes the combination of a Creative Commons official\ + \ license (unmodified and verbatim) with another separate and independent agreement granting\ + \ more permissions (here, this Agreement), can be found at https://wiki.creativecommons.org/wiki/CCPlus.\n\ + \n \nThe CC+CAL Commercial Use License Agreement (the \"Agreement\") (Version 1.1)\n\nBy\ + \ exercising the Licensed Rights (defined below), You accept and agree to be bound by the\ + \ terms and conditions of this Agreement. To the extent this Agreement may be interpreted\ + \ as a contract, You are granted the Licensed Rights in consideration of Your acceptance\ + \ of these terms and conditions, and the Licensor grants You such rights in consideration\ + \ of benefits the Licensor receives from making the Licensed Material available under these\ + \ terms and conditions.\n\nSection 1 - Definitions.\n\na. Adapted Material means material\ + \ subject to Copyright and Similar Rights that is derived from or based upon the Licensed\ + \ Material and in which the Licensed Material is translated, altered, arranged, transformed,\ + \ or otherwise modified in a manner requiring permission under the Copyright and Similar\ + \ Rights held by the Licensor. For purposes of this Agreement, where the Licensed Material\ + \ is a musical work, performance, or sound recording, Adapted Material is always produced\ + \ where the Licensed Material is synced in timed relation with a moving image.\n\nb. Adapter's\ + \ License means the license You apply to Your Copyright and Similar Rights in Your contributions\ + \ to Adapted Material in accordance with the terms and conditions of this Agreement.\n\n\ + c. Commercial means primarily intended for or directed towards commercial advantage or monetary\ + \ compensation. For purposes of this Agreement, the exchange of the Licensed Material for\ + \ other material subject to Copyright and Similar Rights by digital file-sharing or similar\ + \ means is Commercial if there is payment of monetary compensation or payment in other goods\ + \ in connection with the exchange.\n\nd. Copyright and Similar Rights means copyright and/or\ + \ similar rights closely related to copyright including, without limitation, performance,\ + \ broadcast, sound recording, and Sui Generis Database Rights, without regard to how the\ + \ rights are labeled or categorized. For purposes of this Agreement, the rights specified\ + \ in Section 2(b)(1)-(2) are not Copyright and Similar Rights.\n\ne. Duty of Care means\ + \ a duty of care as used in tort law, delict law, and/or similar bodies of law closely related\ + \ to tort and/or delict law. For the purposes of this Agreement, a Duty of Care includes,\ + \ without limitation, a requirement to act with the watchfulness, attention, caution, and\ + \ prudence that a reasonable person in the circumstances would use.\n\nf. Effective Technological\ + \ Measures means those measures that, in the absence of proper authority, may not be circumvented\ + \ under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted\ + \ on December 20, 1996, and/or similar international agreements.\n\ng. Exceptions and Limitations\ + \ means fair use, fair dealing, and/or any other exception or limitation to Copyright and\ + \ Similar Rights that applies to Your use of the Licensed Material.\n\nh. Licensed Material\ + \ means the artistic or literary work, database, or other material to which the Licensor\ + \ applied this Agreement.\n\ni. Licensed Rights means the rights granted to You subject\ + \ to the terms and conditions of this Agreement, which are limited to all Copyright and\ + \ Similar Rights that apply to Your use of the Licensed Material and that the Licensor has\ + \ authority to license.\n\nj. Licensor means the individual(s) or entity(ies) granting rights\ + \ under this Agreement.\n\nk. Share means to provide material to the public by any means\ + \ or process that requires permission under the Licensed Rights, such as reproduction, public\ + \ display, public performance, distribution, dissemination, communication, or importation,\ + \ and to make material available to the public including in ways that members of the public\ + \ may access the material from a place and at a time individually chosen by them.\n\nl.\ + \ Sui Generis Database Rights means rights other than copyright resulting from Directive\ + \ 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection\ + \ of databases, as amended and/or succeeded, as well as other essentially equivalent rights\ + \ anywhere in the world.\n\nm. You means the individual or entity exercising the Licensed\ + \ Rights under this Agreement. Your has a corresponding meaning.\n\nSection 2 - Scope\n\n\ + a. License grant.\n\n Subject to the terms and conditions of this Agreement, the Licensor\ + \ hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable\ + \ license to exercise the Licensed Rights in the Licensed Material to:\n\nA. reproduce and\ + \ Share the Licensed Material, in whole or in part, for Commercial purposes only; and\n\n\ + B. produce, reproduce, and Share Adapted Material for Commercial purposes only.\n\n2. Exceptions\ + \ and Limitations.\n\nA. For the avoidance of doubt, where Exceptions and Limitations apply\ + \ to Your use, this Agreement does not apply, and You do not need to comply with its terms\ + \ and conditions.\n\nB. For the avoidance of doubt, this Agreement does not alter, supersede,\ + \ or terminate any Licensed Rights to the Licensed Material extended by a NonCommercial\ + \ Creative Commons Public License.\n\n3.Term. The term of this Agreement is specified in\ + \ Section 6(a).\n\n4. Media and formats; technical modifications allowed. The Licensor authorizes\ + \ You to exercise the Licensed Rights in all media and formats whether now known or hereafter\ + \ created, and to make technical modifications necessary to do so. The Licensor waives and/or\ + \ agrees not to assert any right or authority to forbid You from making technical modifications\ + \ necessary to exercise the Licensed Rights, including technical modifications necessary\ + \ to circumvent Effective Technological Measures. For purposes of this Agreement, simply\ + \ making modifications authorized by this Section 2(a)(4) never produces Adapted Material.\n\ + \n5. Downstream recipients.\n\nA. Offer from the Licensor - Licensed Material. Every recipient\ + \ of the Licensed Material automatically receives an offer from the Licensor to exercise\ + \ the Licensed Rights under the terms and conditions of this Agreement.\n\nB. No downstream\ + \ restrictions. You may not offer or impose any additional or different terms or conditions\ + \ on, or apply any Effective Technological Measures to, the Licensed Material if doing so\ + \ restricts exercise of the Licensed Rights by any recipient of the Licensed Material.\n\ + \n6. No endorsement. Nothing in this Agreement constitutes or may be construed as permission\ + \ to assert or imply that You are, or that Your use of the Licensed Material is, connected\ + \ with, or sponsored, endorsed, or granted official status by, the Licensor, others designated\ + \ to receive attribution as provided in Section 3(b)(1)(A)(i), or Corporate Accountability\ + \ Lab.\n\nb. Other rights.\n\n Aside from any moral rights that are exercised by Licensor\ + \ by including the Morals Clause for Safe and Environmentally Sustainable Supply Chains\ + \ in Section 3(a), moral rights, such as the right of integrity, are not licensed under\ + \ this Agreement, nor are publicity, privacy, and/or other similar personality rights; however,\ + \ to the extent possible, the Licensor waives and/or agrees not to assert any such rights\ + \ held by the Licensor to the limited extent necessary to allow You to exercise the Licensed\ + \ Rights, but not otherwise.\n\n Patent and trademark rights are not licensed under this\ + \ Agreement.\n\n To the extent possible, the Licensor waives any right to collect royalties\ + \ from You for the exercise of the Licensed Rights, whether directly or through a collecting\ + \ society under any voluntary or waivable statutory or compulsory licensing scheme. In all\ + \ other cases the Licensor expressly reserves any right to collect such royalties, including\ + \ when the Licensed Material is used for Commercial purposes after Your rights under this\ + \ Agreement have been terminated pursuant to Section 6(a).\n\nSection 3 - License Conditions.\n\ + \nYour exercise of the Licensed Rights is expressly made subject to the following conditions.\n\ + \na. Morals Clause for Safe and Environmentally Sustainable Supply Chains. If You are a\ + \ commercial entity and You exercise the Licensed Rights for Commercial purposes, You accept:\n\ + \n1. a Duty of Care towards any person directly impacted by any supply chain utilizing the\ + \ Licensed Material for Commercial purposes (e.g., any person working in, or residing in\ + \ proximity to, any supply chain activities, or person harmed in the production of Your\ + \ goods or provision of Your services), and\n\n2. a Duty of Care towards the environment\ + \ directly impacted by any supply chain utilizing the Licensed Material for Commercial purposes\ + \ (e.g., any natural resources used in the production or manufacturing of Your goods or\ + \ provision of Your services, or environment harmed by the disposal or removal of any by-products\ + \ created during the production or manufacturing of Your goods or provision of Your services).\n\ + \nb. Attribution.\n\n1. If You Share the Licensed Material (including in modified form),\ + \ You must:\n\nA. retain the following if it is supplied by the Licensor with the Licensed\ + \ Material:\n\ni. identification of the creator(s) of the Licensed Material and any others\ + \ designated to receive attribution, in any reasonable manner requested by the Licensor\ + \ (including by pseudonym if designated);\n\nii. a copyright notice;\n\niii. a notice that\ + \ refers to this Agreement;\n\niv. a notice that refers to the disclaimer of warranties;\n\ + \nv. a URI or hyperlink to the Licensed Material to the extent reasonably practicable;\n\ + \nB. indicate if You modified the Licensed Material and retain an indication of any previous\ + \ modifications; and\n\nC. indicate the Licensed Material is licensed under this Agreement,\ + \ and include the text of, or the URI or hyperlink to, this Agreement.\n\n2. You may satisfy\ + \ the conditions in Section 3(b)(1) in any reasonable manner based on the medium, means,\ + \ and context in which You Share the Licensed Material. For example, it may be reasonable\ + \ to satisfy the conditions by providing a URI or hyperlink to a resource that includes\ + \ the required information.\n\n3. If requested by the Licensor, You must remove any of the\ + \ information required by Section 3(b)(1)(A) to the extent reasonably practicable.\n\n4.\ + \ If You Share Adapted Material You produce, the Adapter's License You apply must not prevent\ + \ recipients of the Adapted Material from complying with this Agreement.\n\nSection 4 -\ + \ Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database\ + \ Rights that apply to Your use of the Licensed Material:\n\na. for the avoidance of doubt,\ + \ Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a\ + \ substantial portion of the contents of the database for Commercial purposes, subject to\ + \ the terms and conditions of this Agreement;\n\nb. if You include all or a substantial\ + \ portion of the database contents in a database in which You have Sui Generis Database\ + \ Rights, then the database in which You have Sui Generis Database Rights (but not its individual\ + \ contents) is Adapted Material; and\n\nc. You must comply with the conditions in Section\ + \ 3(b) if You Share all or a substantial portion of the contents of the database.\n\nFor\ + \ the avoidance of doubt, this Section 4 supplements and does not replace Your obligations\ + \ under this Agreement where the Licensed Rights include other Copyright and Similar Rights.\n\ + \nSection 5 - Disclaimer of Warranties and Limitation of Liability.\n\na. Unless otherwise\ + \ separately undertaken by the Licensor, to the extent possible, the Licensor offers the\ + \ Licensed Material as-is and as-available, and makes no representations or warranties of\ + \ any kind concerning the Licensed Material, whether express, implied, statutory, or other.\ + \ This includes, without limitation, warranties of title, merchantability, fitness for a\ + \ particular purpose, non-infringement, absence of latent or other defects, accuracy, or\ + \ the presence or absence of errors, whether or not known or discoverable. Where disclaimers\ + \ of warranties are not allowed in full or in part, this disclaimer may not apply to You.\n\ + \nb. To the extent possible, in no event will the Licensor be liable to You on any legal\ + \ theory (including, without limitation, negligence) or otherwise for any direct, special,\ + \ indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses,\ + \ or damages arising out of this Agreement or use of the Licensed Material, even if the\ + \ Licensor has been advised of the possibility of such losses, costs, expenses, or damages.\ + \ Where a limitation of liability is not allowed in full or in part, this limitation may\ + \ not apply to You.\n\nc. The disclaimer of warranties and limitation of liability provided\ + \ above shall be interpreted in a manner that, to the extent possible, most closely approximates\ + \ an absolute disclaimer and waiver of all liability.\n\nSection 6 - Term and Termination.\n\ + \na. This Agreement applies for the term of the Copyright and Similar Rights licensed here.\ + \ However, if You, Your subsidiaries, affiliates, contractors, or suppliers should, during\ + \ the term of this Agreement,\n\n engage in any negligent conduct or conduct in violation\ + \ of Section 3.a. of this agreement, with respect to any person directly impacted by any\ + \ supply chain utilizing the Licensed Material for Commercial purposes (e.g., violate any\ + \ applicable labor law, fail to uphold a Duty of Care towards any worker or impacted person,\ + \ fail to uphold Your own corporate-social responsibility commitments), or\n engage in\ + \ any negligent conduct or conduct in violation of Section 3.a. of this agreement, with\ + \ respect to the environment directly impacted by any supply chain utilizing the Licensed\ + \ Material for Commercial purposes (e.g., violate any applicable environmental law, fail\ + \ to conduct environmental impact assessments of supply chain activities or otherwise fail\ + \ to uphold a Duty of Care towards the environment, fail to uphold Your own environmental\ + \ commitments),\n\nYour rights under this Agreement terminate automatically. For the avoidance\ + \ of doubt, termination pursuant to this Section 6(a) shall not be triggered by any negligent\ + \ conduct committed by individuals acting outside the scope of their employment for You,\ + \ Your subsidiaries, affiliates, contractors, or suppliers.\n\nb. Where Your right to use\ + \ the Licensed Material has terminated under Section 6(a), it reinstates:\n\n automatically\ + \ as of the date the violation is cured, provided it is cured within 30 days of Your discovery\ + \ of the violation; or\n\n upon express reinstatement by the Licensor.\n\nFor the avoidance\ + \ of doubt, this Section 6(b) does not affect any right the Licensor and any third-party\ + \ beneficiary may have to seek remedies for Your violations of this Agreement.\n\nc. For\ + \ the avoidance of doubt, the Licensor may also offer the Licensed Material under separate\ + \ terms or conditions or stop distributing the Licensed Material at any time; however, doing\ + \ so will not terminate this Agreement.\n\nd. Sections 1, 5, 6, 7, 8 and 9 survive termination\ + \ of this Agreement.\n\nSection 7 -- Third-Party Beneficiaries.\n\na. Licensor intends the\ + \ terms of Section 3(a) to benefit and protect not only Licensor but also any person directly\ + \ impacted by any supply chain utilizing the Licensed Material for Commercial purposes.\ + \ Any individual who is injured, harmed, or otherwise suffers damages, including but not\ + \ limited to workers, laborers, landowners, property owners, those residing in proximity\ + \ to supply chain activities, survivors of those killed or disabled including but not limited\ + \ to widows, widowers, children, and community members, due to Your breach of a Duty of\ + \ Care arising through this Agreement or through negligent conduct proscribed in Section\ + \ 6(a)(1)-(2), is an intended third-party beneficiary of this Agreement, having the independent\ + \ right to seek remedies for Your violations of this Agreement, including but not limited\ + \ to termination of Your Licensed Rights.\n\nb. Except as expressly stated in this Agreement,\ + \ there are no third-party beneficiaries of this Agreement.\n\nSection 8 - Other Terms and\ + \ Conditions.\n\na. The Licensor shall not be bound by any additional or different terms\ + \ or conditions communicated by You unless expressly agreed.\n\nb. Any arrangements, understandings,\ + \ or agreements regarding the Licensed Material not stated herein are separate from and\ + \ independent of the terms and conditions of this Agreement.\n\nSection 9 - Interpretation.\n\ + \na. For the avoidance of doubt, this Agreement does not, and shall not be interpreted to,\ + \ reduce, limit, restrict, or impose conditions on any use of the Licensed Material that\ + \ could lawfully be made without permission under this Agreement.\n\nb. To the extent possible,\ + \ if any provision of this Agreement is deemed unenforceable, it shall be automatically\ + \ reformed to the minimum extent necessary to make it enforceable. If the provision cannot\ + \ be reformed, it shall be severed from this Agreement without affecting the enforceability\ + \ of the remaining terms and conditions.\n\nc. No term or condition of this Agreement will\ + \ be waived and no failure to comply consented to unless expressly agreed to by the Licensor.\n\ + \nNothing in this Agreement constitutes or may be interpreted as a limitation upon, or waiver\ + \ of, any privileges and immunities that apply to the Licensor or You, including from the\ + \ legal processes of any jurisdiction or authority." json: corporate-accountability-commercial-1.1.json - yml: corporate-accountability-commercial-1.1.yml + yaml: corporate-accountability-commercial-1.1.yml html: corporate-accountability-commercial-1.1.html - text: corporate-accountability-commercial-1.1.LICENSE + license: corporate-accountability-commercial-1.1.LICENSE - license_key: cosl + category: Permissive spdx_license_key: LicenseRef-scancode-cosl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Cougaar Open Source License \n\nThe Cougaar Open Source License (COSL) is a modified\ + \ version of the OSI \napproved BSD License. Sections 3 and 4 have been modified. \n\nCOSL\ + \ License : \n\nRedistribution and use in source and binary forms, with or without \nmodification,\ + \ are permitted provided that the following conditions \nare met: \n\n1. Redistributions\ + \ of source code must retain the original author's copyright notice, \nthis list of conditions\ + \ and the following disclaimer. \n\n2. Redistributions in binary form must reproduce the\ + \ original author's copyright \nnotice, this list of conditions and the following disclaimer\ + \ in the \ndocumentation and/or other materials provided with the distribution. \n\n3. The\ + \ end-user documentation included with the redistribution, if \nany, must include the following\ + \ acknowledgement: \"This product includes \nsoftware developed in part by support from\ + \ the Defense Advanced Research \nProject Agency (DARPA).\" \n\n4. Neither the name of the\ + \ DARPA nor the names of its contributors may \nbe used to endorse or promote products derived\ + \ from this software without \nspecific prior written permission. \n\nTHIS SOFTWARE IS PROVIDED\ + \ BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\ + \ INCLUDING, BUT NOT \nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\ + \ FOR \nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT \nOWNER OR\ + \ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, \nSPECIAL, EXEMPLARY, OR\ + \ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED \nTO, PROCUREMENT OF SUBSTITUTE GOODS\ + \ OR SERVICES; LOSS OF USE, DATA, OR \nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED\ + \ AND ON ANY THEORY OF \nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\ + \ \nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS \nSOFTWARE, EVEN\ + \ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." json: cosl.json - yml: cosl.yml + yaml: cosl.yml html: cosl.html - text: cosl.LICENSE + license: cosl.LICENSE - license_key: cosli + category: Free Restricted spdx_license_key: LicenseRef-scancode-cosli other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Civilian Open Source License (COSLi) + ------------------------------------------------------------------------------- + + Copyright (c) 2017-2019 The Fieldtracks Project. All rights reserved. + + Based on the OpenSSL License // Copyright (c) The OpenSSL Project + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. The software must not be used for millitary purposes. This includes: + (i) use in the context of military operations (i.e. trainings, maneuvers, + combat), (ii) use by armed forces, private military companies and + intelligence services and (iii) use in cooperation with such + organisations. Please contact info@fieldtracks.org for: + - A written permission in dual-use situations. + - Clarification for a specific application, organisation or + use-case. + - Re-licensing for inclusion in other OpenSource projects (i.e. GPL + based ones). + + 2. Redistributions of source code must retain the above copyright + notice, this list of conditions, this restriction on military usage + and the following disclaimer. + + 3. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions, this restriction on military usage + and the following disclaimer in the documentation and/or other + materials provided with the distribution. + + 4. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the fieldtracks Project + (https://www.fieldtracks.org/)" + + 5. The name "Fieldtracks" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + info@fieldtracks.org. + + 6. Products derived from this software may not be called "Fieldtracks" + nor may "Fieldtracks" appear in their names without prior written + permission of the Fieldtracks Project. + + 7. Redistributions of any form whatsoever must retain the restriction on + military usage and following acknowledgment: + "This product includes software developed by the Fieldtracks Project + (https://fieldtracks.org/) - military use is forbidden" + + THIS SOFTWARE IS PROVIDED BY THE Fieldtracks 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 Fieldtracks 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. MILITARY USAGE IS FORBIDDEN. json: cosli.json - yml: cosli.yml + yaml: cosli.yml html: cosli.html - text: cosli.LICENSE + license: cosli.LICENSE - license_key: couchbase-community + category: Proprietary Free spdx_license_key: LicenseRef-scancode-couchbase-community other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "COUCHBASE INC. COMMUNITY EDITION LICENSE AGREEMENT\n\nIMPORTANT-READ CAREFULLY: BY\ + \ CLICKING THE \"I ACCEPT\" BOX OR\nINSTALLING, DOWNLOADING OR OTHERWISE USING THIS SOFTWARE\ + \ AND ANY\nASSOCIATED DOCUMENTATION, YOU, ON BEHALF OF YOURSELF OR AS AN\nAUTHORIZED REPRESENTATIVE\ + \ ON BEHALF OF AN ENTITY (\"LICENSEE\") AGREE TO\nALL THE TERMS OF THIS COMMUNITY EDITION\ + \ LICENSE AGREEMENT (THE\n\"AGREEMENT\") REGARDING YOUR USE OF THE SOFTWARE. YOU REPRESENT\ + \ AND\nWARRANT THAT YOU HAVE FULL LEGAL AUTHORITY TO BIND THE LICENSEE TO\nTHIS AGREEMENT.\ + \ IF YOU DO NOT AGREE WITH ALL OF THESE TERMS, DO NOT\nSELECT THE \"I ACCEPT\" BOX AND DO\ + \ NOT INSTALL, DOWNLOAD OR OTHERWISE\nUSE THE SOFTWARE. THE EFFECTIVE DATE OF THIS AGREEMENT\ + \ IS THE DATE ON\nWHICH YOU CLICK \"I ACCEPT\" OR OTHERWISE INSTALL, DOWNLOAD OR USE THE\n\ + SOFTWARE.\n\n1. License Grant. Couchbase Inc. hereby grants Licensee, free of\ncharge, the\ + \ non-exclusive right to use, copy, merge, publish,\ndistribute, sublicense, and/or sell\ + \ copies of the Software, and to\npermit persons to whom the Software is furnished to do\ + \ so, subject to\nLicensee including the following copyright notice in all copies or\nsubstantial\ + \ portions of the Software:\n\nCouchbase (r)\nhttp://www.Couchbase.com \nCopyright 2010\ + \ Couchbase, Inc.\n\nAs used in this Agreement, \"Software\" means the object code version\ + \ of\nthe applicable elastic data management server software provided by\nCouchbase Inc..\n\ + \n2. Support. Couchbase Inc. will provide Licensee with access to, and\nuse of, the Couchbase\ + \ Inc. support forum available at the following\nURL: http://couchbase.com . Couchbase Inc.\ + \ may, at its discretion,\nmodify, suspend or terminate support at any time upon notice\ + \ to\nLicensee.\n\n3. Warranty Disclaimer and Limitation of Liability. THE SOFTWARE IS\n\ + PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\nINCLUDING BUT NOT\ + \ LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\ + \ IN NO EVENT\nSHALL COUCHBASE INC. OR THE AUTHORS OR COPYRIGHT HOLDERS IN THE\nSOFTWARE\ + \ BE LIABLE FOR ANY CLAIM, DAMAGES (IINCLUDING, WITHOUT\nLIMITATION, DIRECT, INDIRECT OR\ + \ CONSEQUENTIAL DAMAGES) OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\ + \ OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER\ + \ DEALINGS IN THE SOFTWARE." json: couchbase-community.json - yml: couchbase-community.yml + yaml: couchbase-community.yml html: couchbase-community.html - text: couchbase-community.LICENSE + license: couchbase-community.LICENSE - license_key: couchbase-enterprise + category: Proprietary Free spdx_license_key: LicenseRef-scancode-couchbase-enterprise other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + COUCHBASE INC. ENTERPRISE LICENSE AGREEMENT - FREE EDITION + + IMPORTANT-READ CAREFULLY: BY CLICKING THE "I ACCEPT" BOX OR INSTALLING, + DOWNLOADING OR OTHERWISE USING THIS SOFTWARE AND ANY ASSOCIATED + DOCUMENTATION, YOU, ON BEHALF OF YOURSELF OR AS AN AUTHORIZED + REPRESENTATIVE ON BEHALF OF AN ENTITY ("LICENSEE") AGREE TO ALL THE + TERMS OF THIS ENTERPRISE LICENSE AGREEMENT - FREE EDITION (THE + "AGREEMENT") REGARDING YOUR USE OF THE SOFTWARE. YOU REPRESENT AND + WARRANT THAT YOU HAVE FULL LEGAL AUTHORITY TO BIND THE LICENSEE TO THIS + AGREEMENT. IF YOU DO NOT AGREE WITH ALL OF THESE TERMS, DO NOT SELECT + THE "I ACCEPT" BOX AND DO NOT INSTALL, DOWNLOAD OR OTHERWISE USE THE + SOFTWARE. THE EFFECTIVE DATE OF THIS AGREEMENT IS THE DATE ON WHICH YOU + CLICK "I ACCEPT" OR OTHERWISE INSTALL, DOWNLOAD OR USE THE SOFTWARE. + + 1. License Grant. Subject to Licensee's compliance with the terms and + conditions of this Agreement, Couchbase Inc. hereby grants to Licensee a + perpetual, non-exclusive, non-transferable, non-sublicensable, + royalty-free, limited license to install and use the Software only for + Licensee's own internal production use on up to two (2) Licensed Servers + or for Licensee's own internal non-production use for the purpose of + evaluation and/or development on an unlimited number of Licensed + Servers. + + 2. Restrictions. Licensee will not: (a) copy or use the Software in any + manner except as expressly permitted in this Agreement; (b) use or + deploy the Software on any server in excess of the Licensed Servers for + which Licensee has paid the applicable Subscription Fee unless it is + covered by a valid license; (c) transfer, sell, rent, lease, lend, + distribute, or sublicense the Software to any third party; (d) use the + Software for providing time-sharing services, service bureau services or + as part of an application services provider or as a service offering + primarily designed to offer the functionality of the Software; (e) + reverse engineer, disassemble, or decompile the Software (except to the + extent such restrictions are prohibited by law); (f) alter, modify, + enhance or prepare any derivative work from or of the Software; (g) + alter or remove any proprietary notices in the Software; (h) make + available to any third party the functionality of the Software or any + license keys used in connection with the Software; (i) publically + display or communicate the results of internal performance testing or + other benchmarking or performance evaluation of the Software; or (j) + export the Software in violation of U.S. Department of Commerce export + administration rules or any other export laws or regulations. + + 3. Proprietary Rights. The Software, and any modifications or + derivatives thereto, is and shall remain the sole property of Couchbase + Inc. and its licensors, and, except for the license rights granted + herein, Couchbase Inc. and its licensors retain all right, title and + interest in and to the Software, including all intellectual property + rights therein and thereto. The Software may include third party open + source software components. If Licensee is the United States Government + or any contractor thereof, all licenses granted hereunder are subject to + the following: (a) for acquisition by or on behalf of civil agencies, as + necessary to obtain protection as "commercial computer software" and + related documentation in accordance with the terms of this Agreement and + as specified in Subpart 12.1212 of the Federal Acquisition Regulation + (FAR), 48 C.F.R.12.1212, and its successors; and (b) for acquisition by + or on behalf of the Department of Defense (DOD) and any agencies or + units thereof, as necessary to obtain protection as "commercial computer + software" and related documentation in accordance with the terms of this + Agreement and as specified in Subparts 227.7202-1 and 227.7202-3 of the + DOD FAR Supplement, 48 C.F.R.227.7202-1 and 227.7202-3, and its + successors. Manufacturer is Couchbase, Inc. + + 4. Support. Couchbase Inc. will provide Licensee with: (a) periodic + Software updates to correct known bugs and errors to the extent + Couchbase Inc. incorporates such corrections into the free edition + version of the Software; and (b) access to, and use of, the Couchbase + Inc. support forum available at the following URL: + http://www.couchbase.org/forums/. Licensee must have Licensed Servers + at the same level of Support Services for all instances in a production + deployment running the Software. Licensee must also have Licensed + Servers at the same level of Support Services for all instances in a + development and test environment running the Software, although these + Support Services may be at a different level than the production + Licensed Servers. Couchbase Inc. may, at its discretion, modify, + suspend or terminate support at any time upon notice to Licensee. + + 5. Records Retention and Audit. Licensee shall maintain complete and + accurate records to permit Couchbase Inc. to verify the number of + Licensed Servers used by Licensee hereunder. Upon Couchbase Inc.'s + written request, Licensee shall: (a) provide Couchbase Inc. with such + records within ten (10) days; and (b) will furnish Couchbase Inc. with a + certification signed by an officer of Licensee verifying that the + Software is being used pursuant to the terms of this Agreement. Upon at + least thirty (30) days prior written notice, Couchbase Inc. may audit + Licensee's use of the Software to ensure that Licensee is in compliance + with the terms of this Agreement. Any such audit will be conducted + during regular business hours at Licensee's facilities and will not + unreasonably interfere with Licensee's business activities. Licensee + will provide Couchbase Inc. with access to the relevant Licensee records + and facilities. If an audit reveals that Licensee has used the Software + in excess of the authorized Licensed Servers, then (i) Couchbase Inc. + will invoice Licensee, and Licensee will promptly pay Couchbase Inc., + the applicable licensing fees for such excessive use of the Software, + which fees will be based on Couchbase Inc.'s price list in effect at the + time the audit is completed; and (ii) Licensee will pay Couchbase Inc.'s + reasonable costs of conducting the audit. + + 6. Confidentiality. Licensee and Couchbase Inc. will maintain the + confidentiality of Confidential Information. The receiving party of any + Confidential Information of the other party agrees not to use such + Confidential Information for any purpose except as necessary to fulfill + its obligations and exercise its rights under this Agreement. The + receiving party shall protect the secrecy of and prevent disclosure and + unauthorized use of the disclosing party's Confidential Information + using the same degree of care that it takes to protect its own + confidential information and in no event shall use less than reasonable + care. The terms of this Confidentiality section shall survive + termination of this Agreement. Upon termination or expiration of this + Agreement, the receiving party will, at the disclosing party's option, + promptly return or destroy (and provide written certification of such + destruction) the disclosing party's Confidential Information. + + 7. Disclaimer of Warranty. THE SOFTWARE AND ANY SERVICES PROVIDED + HEREUNDER ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. COUCHBASE + INC. DOES NOT WARRANT THAT THE SOFTWARE OR THE SERVICES PROVIDED + HEREUNDER WILL MEET LICENSEE'S REQUIREMENTS, THAT THE SOFTWARE WILL + OPERATE IN THE COMBINATIONS LICENSEE MAY SELECT FOR USE, THAT THE + OPERATION OF THE SOFTWARE WILL BE ERROR-FREE OR UNINTERRUPTED OR THAT + ALL SOFTWARE ERRORS WILL BE CORRECTED. COUCHBASE INC. HEREBY DISCLAIMS + ALL WARRANTIES, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED + TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, TITLE, AND ANY WARRANTIES ARISING OUT OF + COURSE OF DEALING, USAGE OR TRADE. + + 8. Agreement Term and Termination. The term of this Agreement shall + begin on the Effective Date and will continue until terminated by the + parties. Licensee may terminate this Agreement for any reason, or for no + reason, by providing at least ten (10) days prior written notice to + Couchbase Inc. Couchbase Inc. may terminate this Agreement if Licensee + materially breaches its obligations hereunder and, where such breach is + curable, such breach remains uncured for ten (10) days following written + notice of the breach. Licensee acknowledges that the Software may + contain a license key with a time-out mechanism that will suspend and/or + terminate Licensee's use of the Software upon termination of this + Agreement. Upon termination of this Agreement, Licensee will, at + Couchbase Inc.'s option, promptly return or destroy (and provide written + certification of such destruction) the applicable Software and all + copies and portions thereof, in all forms and types of media. The + following sections will survive termination or expiration of this + Agreement: Sections 2, 3, 6, 7, 8, 9, 10 and 11. + + 9. Limitation of Liability. TO THE MAXIMUM EXTENT PERMITTED BY + APPLICABLE LAW, IN NO EVENT WILL COUCHBASE INC. OR ITS LICENSORS BE + LIABLE TO LICENSEE OR TO ANY THIRD PARTY FOR ANY INDIRECT, SPECIAL, + INCIDENTAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES OR FOR THE COST OF + PROCURING SUBSTITUTE PRODUCTS OR SERVICES ARISING OUT OF OR IN ANY WAY + RELATING TO OR IN CONNECTION WITH THIS AGREEMENT OR THE USE OF OR + INABILITY TO USE THE SOFTWARE OR DOCUMENTATION OR THE SERVICES PROVIDED + BY COUCHBASE INC. HEREUNDER INCLUDING, WITHOUT LIMITATION, DAMAGES OR + OTHER LOSSES FOR LOSS OF USE, LOSS OF BUSINESS, LOSS OF GOODWILL, WORK + STOPPAGE, LOST PROFITS, LOSS OF DATA, COMPUTER FAILURE OR ANY AND ALL + OTHER COMMERCIAL DAMAGES OR LOSSES EVEN IF ADVISED OF THE POSSIBILITY + THEREOF AND REGARDLESS OF THE LEGAL OR EQUITABLE THEORY (CONTRACT, TORT + OR OTHERWISE) UPON WHICH THE CLAIM IS BASED. IN NO EVENT WILL COUCHBASE + INC.'S OR ITS LICENSORS' AGGREGATE LIABILITY TO LICENSEE, FROM ALL + CAUSES OF ACTION AND UNDER ALL THEORIES OF LIABILITY, EXCEED ONE + THOUSAND DOLLARS (US $1,000). The parties expressly acknowledge and + agree that Couchbase Inc. has set its prices and entered into this + Agreement in reliance upon the limitations of liability specified + herein, which allocate the risk between Couchbase Inc. and Licensee and + form a basis of the bargain between the parties. + + 10. General. Couchbase Inc. shall not be liable for any delay or failure + in performance due to causes beyond its reasonable control. Neither + party will, without the other party's prior written consent, make any + news release, public announcement, denial or confirmation of this + Agreement, its value, or its terms and conditions, or in any manner + advertise or publish the fact of this Agreement. Notwithstanding the + above, Couchbase Inc. may use Licensee's name and logo, consistent with + Licensee's trademark policies, on customer lists so long as such use in + no way promotes either endorsement or approval of Couchbase Inc. or any + Couchbase Inc. products or services. Licensee may not assign this + Agreement, in whole or in part, by operation of law or otherwise, + without Couchbase Inc.'s prior written consent. Any attempt to assign + this Agreement, without such consent, will be null and of no effect. + Subject to the foregoing, this Agreement will bind and inure to the + benefit of each party's successors and permitted assigns. If for any + reason a court of competent jurisdiction finds any provision of this + Agreement invalid or unenforceable, that provision of the Agreement will + be enforced to the maximum extent permissible and the other provisions + of this Agreement will remain in full force and effect. The failure by + either party to enforce any provision of this Agreement will not + constitute a waiver of future enforcement of that or any other + provision. All waivers must be in writing and signed by both parties. + All notices permitted or required under this Agreement shall be in + writing and shall be delivered in person, by confirmed facsimile, + overnight courier service or mailed by first class, registered or + certified mail, postage prepaid, to the address of the party specified + above or such other address as either party may specify in writing. Such + notice shall be deemed to have been given upon receipt. This Agreement + shall be governed by the laws of the State of California, U.S.A., + excluding its conflicts of law rules. The parties expressly agree that + the UN Convention for the International Sale of Goods (CISG) will not + apply. Any legal action or proceeding arising under this Agreement will + be brought exclusively in the federal or state courts located in the + Northern District of California and the parties hereby irrevocably + consent to the personal jurisdiction and venue therein. Any amendment or + modification to the Agreement must be in writing signed by both parties. + This Agreement constitutes the entire agreement and supersedes all prior + or contemporaneous oral or written agreements regarding the subject + matter hereof. To the extent there is a conflict between this Agreement + and the terms of any "shrinkwrap" or "clickwrap" license included in any + package, media, or electronic version of Couchbase Inc.-furnished + software, the terms and conditions of this Agreement will control. Each + of the parties has caused this Agreement to be executed by its duly + authorized representatives as of the Effective Date. Except as expressly + set forth in this Agreement, the exercise by either party of any of its + remedies under this Agreement will be without prejudice to its other + remedies under this Agreement or otherwise. The parties to this + Agreement are independent contractors and this Agreement will not + establish any relationship of partnership, joint venture, employment, + franchise, or agency between the parties. Neither party will have the + power to bind the other or incur obligations on the other's behalf + without the other's prior written consent. + + 11. Definitions. Capitalized terms used herein shall have the following + definitions: "Confidential Information" means any proprietary + information received by the other party during, or prior to entering + into, this Agreement that a party should know is confidential or + proprietary based on the circumstances surrounding the disclosure + including, without limitation, the Software and any non-public technical + and business information. Confidential Information does not include + information that (a) is or becomes generally known to the public through + no fault of or breach of this Agreement by the receiving party; (b) is + rightfully known by the receiving party at the time of disclosure + without an obligation of confidentiality; (c) is independently developed + by the receiving party without use of the disclosing party's + Confidential Information; or (d) the receiving party rightfully obtains + from a third party without restriction on use or disclosure. + "Documentation" means any technical user guides or manuals provided by + Couchbase Inc. related to the Software. "Licensed Server" means an + instance of the Software running on one (1) operating system. Each + operating system instance may be running directly on physical hardware, + in a virtual machine, or on a cloud server. "Couchbase Website" means + www.couchbase.com."Software" means the object code version of the + applicable elastic data management server software provided by Couchbase + Inc. and ordered by Licensee during the ordering process on the + Couchbase Website. If you have any questions regarding this Agreement, + please contact us at 650-417-7500. json: couchbase-enterprise.json - yml: couchbase-enterprise.yml + yaml: couchbase-enterprise.yml html: couchbase-enterprise.html - text: couchbase-enterprise.LICENSE + license: couchbase-enterprise.LICENSE - license_key: cpal-1.0 + category: Copyleft spdx_license_key: CPAL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "Common Public Attribution License Version 1.0 (CPAL)\n1.\t\"Definitions\"\n1.0.1\t\"\ + Commercial Use\" means distribution or otherwise making the Covered Code available to a\ + \ third party.\n1.1\t\"Contributor\" means each entity that creates or contributes to the\ + \ creation of Modifications.\n1.2\t\"Contributor Version\" means the combination of the\ + \ Original Code, prior Modifications used by a Contributor, and the Modifications made by\ + \ that particular Contributor.\n1.3\t\"Covered Code\" means the Original Code or Modifications\ + \ or the combination of the Original Code and Modifications, in each case including portions\ + \ thereof.\n1.4\t\"Electronic Distribution Mechanism\" means a mechanism generally accepted\ + \ in the software development community for the electronic transfer of data.\n1.5\t\"Executable\"\ + \ means Covered Code in any form other than Source Code.\n1.6\t\"Initial Developer\" means\ + \ the individual or entity identified as the Initial Developer in the Source Code notice\ + \ required by Exhibit A.\n1.7\t\"Larger Work\" means a work which combines Covered Code\ + \ or portions thereof with code not governed by the terms of this License.\n1.8\t\"License\"\ + \ means this document.\n1.8.1\t\"Licensable\" means having the right to grant, to the maximum\ + \ extent possible, whether at the time of the initial grant or subsequently acquired, any\ + \ and all of the rights conveyed herein.\n1.9\t\"Modifications\" means any addition to or\ + \ deletion from the substance or structure of either the Original Code or any previous Modifications.\ + \ When Covered Code is released as a series of files, a Modification is:\nA.\tAny addition\ + \ to or deletion from the contents of a file containing Original Code or previous Modifications.\n\ + B.\tAny new file that contains any part of the Original Code or previous Modifications.\n\ + 1.10\t\"Original Code\" means Source Code of computer software code which is described in\ + \ the Source Code notice required by Exhibit A as Original Code, and which, at the time\ + \ of its release under this License is not already Covered Code governed by this License.\n\ + 1.10.1\t\"Patent Claims\" means any patent claim(s), now owned or hereafter acquired, including\ + \ without limitation, method, process, and apparatus claims, in any patent Licensable by\ + \ grantor.\n1.11\t\"Source Code\" means the preferred form of the Covered Code for making\ + \ modifications to it, including all modules it contains, plus any associated interface\ + \ definition files, scripts used to control compilation and installation of an Executable,\ + \ or source code differential comparisons against either the Original Code or another well\ + \ known, available Covered Code of the Contributor’s choice. The Source Code can be in a\ + \ compressed or archival form, provided the appropriate decompression or de-archiving software\ + \ is widely available for no charge.\n1.12\t\"You\" (or \"Your\") means an individual or\ + \ a legal entity exercising rights under, and complying with all of the terms of, this License\ + \ or a future version of this License issued under Section 6.1. For legal entities, \"You\"\ + \ includes any entity which controls, is controlled by, or is under common control with\ + \ You. For purposes of this definition, \"control\" means (a) the power, direct or indirect,\ + \ to cause the direction or management of such entity, whether by contract or otherwise,\ + \ or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial\ + \ ownership of such entity.\n2.\tSource Code License.\n2.1\tThe Initial Developer Grant.\n\ + The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license,\ + \ subject to third party intellectual property claims:\n(a)\tunder intellectual property\ + \ rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce,\ + \ modify, display, perform, sublicense and distribute the Original Code (or portions thereof)\ + \ with or without Modifications, and/or as part of a Larger Work; and\n(b)\tunder Patents\ + \ Claims infringed by the making, using or selling of Original Code, to make, have made,\ + \ use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code\ + \ (or portions thereof).\n(c)\tthe licenses granted in this Section 2.1(a) and (b) are effective\ + \ on the date Initial Developer first distributes Original Code under the terms of this\ + \ License.\n(d)\tNotwithstanding Section 2.1(b) above, no patent license is granted: 1)\ + \ for code that You delete from the Original Code; 2) separate from the Original Code; or\ + \ 3) for infringements caused by: i) the modification of the Original Code or ii) the combination\ + \ of the Original Code with other software or devices.\n2.2\tContributor Grant.\nSubject\ + \ to third party intellectual property claims, each Contributor hereby grants You a world-wide,\ + \ royalty-free, non-exclusive license\n(a)\tunder intellectual property rights (other than\ + \ patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform,\ + \ sublicense and distribute the Modifications created by such Contributor (or portions thereof)\ + \ either on an unmodified basis, with other Modifications, as Covered Code and/or as part\ + \ of a Larger Work; and\n(b)\tunder Patent Claims infringed by the making, using, or selling\ + \ of Modifications made by that Contributor either alone and/or in combination with its\ + \ Contributor Version (or portions of such combination), to make, use, sell, offer for sale,\ + \ have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or\ + \ portions thereof); and 2) the combination of Modifications made by that Contributor with\ + \ its Contributor Version (or portions of such combination).\n(c)\tthe licenses granted\ + \ in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial\ + \ Use of the Covered Code.\n(d)\tNotwithstanding Section 2.2(b) above, no patent license\ + \ is granted: 1) for any code that Contributor has deleted from the Contributor Version;\ + \ 2) separate from the Contributor Version; 3) for infringements caused by: i) third party\ + \ modifications of Contributor Version or ii) the combination of Modifications made by that\ + \ Contributor with other software (except as part of the Contributor Version) or other devices;\ + \ or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made\ + \ by that Contributor.\n3.\tDistribution Obligations.\n3.1\tApplication of License.\nThe\ + \ Modifications which You create or to which You contribute are governed by the terms of\ + \ this License, including without limitation Section 2.2. The Source Code version of Covered\ + \ Code may be distributed only under the terms of this License or a future version of this\ + \ License released under Section 6.1, and You must include a copy of this License with every\ + \ copy of the Source Code You distribute. You may not offer or impose any terms on any Source\ + \ Code version that alters or restricts the applicable version of this License or the recipients’\ + \ rights hereunder. However, You may include an additional document offering the additional\ + \ rights described in Section 3.5.\n3.2\tAvailability of Source Code.\nAny Modification\ + \ which You create or to which You contribute must be made available in Source Code form\ + \ under the terms of this License either on the same media as an Executable version or via\ + \ an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable\ + \ version available; and if made available via Electronic Distribution Mechanism, must remain\ + \ available for at least twelve (12) months after the date it initially became available,\ + \ or at least six (6) months after a subsequent version of that particular Modification\ + \ has been made available to such recipients. You are responsible for ensuring that the\ + \ Source Code version remains available even if the Electronic Distribution Mechanism is\ + \ maintained by a third party.\n3.3\tDescription of Modifications.\nYou must cause all Covered\ + \ Code to which You contribute to contain a file documenting the changes You made to create\ + \ that Covered Code and the date of any change. You must include a prominent statement that\ + \ the Modification is derived, directly or indirectly, from Original Code provided by the\ + \ Initial Developer and including the name of the Initial Developer in (a) the Source Code,\ + \ and (b) in any notice in an Executable version or related documentation in which You describe\ + \ the origin or ownership of the Covered Code.\n3.4\tIntellectual Property Matters\n(a)\t\ + Third Party Claims.\nIf Contributor has knowledge that a license under a third party’s intellectual\ + \ property rights is required to exercise the rights granted by such Contributor under Sections\ + \ 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled\ + \ \"LEGAL\" which describes the claim and the party making the claim in sufficient detail\ + \ that a recipient will know whom to contact. If Contributor obtains such knowledge after\ + \ the Modification is made available as described in Section 3.2, Contributor shall promptly\ + \ modify the LEGAL file in all copies Contributor makes available thereafter and shall take\ + \ other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated\ + \ to inform those who received the Covered Code that new knowledge has been obtained.\n\ + (b)\tContributor APIs.\nIf Contributor’s Modifications include an application programming\ + \ interface and Contributor has knowledge of patent licenses which are reasonably necessary\ + \ to implement that API, Contributor must also include this information in the LEGAL file.\n\ + (c)\tRepresentations.\nContributor represents that, except as disclosed pursuant to Section\ + \ 3.4(a) above, Contributor believes that Contributor’s Modifications are Contributor’s\ + \ original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed\ + \ by this License.\n3.5\tRequired Notices.\nYou must duplicate the notice in Exhibit A in\ + \ each file of the Source Code. If it is not possible to put such notice in a particular\ + \ Source Code file due to its structure, then You must include such notice in a location\ + \ (such as a relevant directory) where a user would be likely to look for such a notice.\ + \ If You created one or more Modification(s) You may add your name as a Contributor to the\ + \ notice described in Exhibit A. You must also duplicate this License in any documentation\ + \ for the Source Code where You describe recipients’ rights or ownership rights relating\ + \ to Covered Code. You may choose to offer, and to charge a fee for, warranty, support,\ + \ indemnity or liability obligations to one or more recipients of Covered Code. However,\ + \ You may do so only on Your own behalf, and not on behalf of the Initial Developer or any\ + \ Contributor. You must make it absolutely clear than any such warranty, support, indemnity\ + \ or liability obligation is offered by You alone, and You hereby agree to indemnify the\ + \ Initial Developer and every Contributor for any liability incurred by the Initial Developer\ + \ or such Contributor as a result of warranty, support, indemnity or liability terms You\ + \ offer.\n3.6\tDistribution of Executable Versions.\nYou may distribute Covered Code in\ + \ Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered\ + \ Code, and if You include a notice stating that the Source Code version of the Covered\ + \ Code is available under the terms of this License, including a description of how and\ + \ where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously\ + \ included in any notice in an Executable version, related documentation or collateral in\ + \ which You describe recipients’ rights relating to the Covered Code. You may distribute\ + \ the Executable version of Covered Code or ownership rights under a license of Your choice,\ + \ which may contain terms different from this License, provided that You are in compliance\ + \ with the terms of this License and that the license for the Executable version does not\ + \ attempt to limit or alter the recipient’s rights in the Source Code version from the rights\ + \ set forth in this License. If You distribute the Executable version under a different\ + \ license You must make it absolutely clear that any terms which differ from this License\ + \ are offered by You alone, not by the Initial Developer, Original Developer or any Contributor.\ + \ You hereby agree to indemnify the Initial Developer, Original Developer and every Contributor\ + \ for any liability incurred by the Initial Developer, Original Developer or such Contributor\ + \ as a result of any such terms You offer.\n3.7\tLarger Works.\nYou may create a Larger\ + \ Work by combining Covered Code with other code not governed by the terms of this License\ + \ and distribute the Larger Work as a single product. In such a case, You must make sure\ + \ the requirements of this License are fulfilled for the Covered Code.\n4.\tInability to\ + \ Comply Due to Statute or Regulation.\nIf it is impossible for You to comply with any of\ + \ the terms of this License with respect to some or all of the Covered Code due to statute,\ + \ judicial order, or regulation then You must: (a) comply with the terms of this License\ + \ to the maximum extent possible; and (b) describe the limitations and the code they affect.\ + \ Such description must be included in the LEGAL file described in Section 3.4 and must\ + \ be included with all distributions of the Source Code. Except to the extent prohibited\ + \ by statute or regulation, such description must be sufficiently detailed for a recipient\ + \ of ordinary skill to be able to understand it.\n5.\tApplication of this License.\nThis\ + \ License applies to code to which the Initial Developer has attached the notice in Exhibit\ + \ A and to related Covered Code.\n6.\tVersions of the License.\n6.1\tNew Versions.\nSocialtext,\ + \ Inc. (\"Socialtext\") may publish revised and/or new versions of the License from time\ + \ to time. Each version will be given a distinguishing version number.\n6.2\tEffect of New\ + \ Versions.\nOnce Covered Code has been published under a particular version of the License,\ + \ You may always continue to use it under the terms of that version. You may also choose\ + \ to use such Covered Code under the terms of any subsequent version of the License published\ + \ by Socialtext. No one other than Socialtext has the right to modify the terms applicable\ + \ to Covered Code created under this License.\n6.3\tDerivative Works.\nIf You create or\ + \ use a modified version of this License (which you may only do in order to apply it to\ + \ code which is not already Covered Code governed by this License), You must (a) rename\ + \ Your license so that the phrases \"Socialtext\", \"CPAL\" or any confusingly similar phrase\ + \ do not appear in your license (except to note that your license differs from this License)\ + \ and (b) otherwise make it clear that Your version of the license contains terms which\ + \ differ from the CPAL. (Filling in the name of the Initial Developer, Original Developer,\ + \ Original Code or Contributor in the notice described in Exhibit A shall not of themselves\ + \ be deemed to be modifications of this License.)\n7.\tDISCLAIMER OF WARRANTY.\nCOVERED\ + \ CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND,\ + \ EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED\ + \ CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.\ + \ THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD\ + \ ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER, ORIGINAL\ + \ DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR\ + \ OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE.\ + \ NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n8.\t\ + TERMINATION.\n8.1\tThis License and the rights granted hereunder will terminate automatically\ + \ if You fail to comply with terms herein and fail to cure such breach within 30 days of\ + \ becoming aware of the breach. All sublicenses to the Covered Code which are properly granted\ + \ shall survive any termination of this License. Provisions which, by their nature, must\ + \ remain in effect beyond the termination of this License shall survive.\n8.2\tIf You initiate\ + \ litigation by asserting a patent infringement claim (excluding declatory judgment actions)\ + \ against Initial Developer, Original Developer or a Contributor (the Initial Developer,\ + \ Original Developer or Contributor against whom You file such action is referred to as\ + \ \"Participant\") alleging that:\n(a)\tsuch Participant’s Contributor Version directly\ + \ or indirectly infringes any patent, then any and all rights granted by such Participant\ + \ to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant\ + \ terminate prospectively, unless if within 60 days after receipt of notice You either:\ + \ (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your\ + \ past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation\ + \ claim with respect to the Contributor Version against such Participant. If within 60 days\ + \ of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in\ + \ writing by the parties or the litigation claim is not withdrawn, the rights granted by\ + \ Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration\ + \ of the 60 day notice period specified above.\n(b)\tany software, hardware, or device,\ + \ other than such Participant’s Contributor Version, directly or indirectly infringes any\ + \ patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b)\ + \ are revoked effective as of the date You first made, used, sold, distributed, or had made,\ + \ Modifications made by that Participant.\n8.3\tIf You assert a patent infringement claim\ + \ against Participant alleging that such Participant’s Contributor Version directly or indirectly\ + \ infringes any patent where such claim is resolved (such as by license or settlement) prior\ + \ to the initiation of patent infringement litigation, then the reasonable value of the\ + \ licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account\ + \ in determining the amount or value of any payment or license.\n8.4\tIn the event of termination\ + \ under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors\ + \ and resellers) which have been validly granted by You or any distributor hereunder prior\ + \ to termination shall survive termination.\n9.\tLIMITATION OF LIABILITY.\nUNDER NO CIRCUMSTANCES\ + \ AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE,\ + \ SHALL YOU, THE INITIAL DEVELOPER, ORIGINAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR\ + \ OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY\ + \ INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT\ + \ LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION,\ + \ OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\ + \ INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY\ + \ TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY’S NEGLIGENCE TO THE\ + \ EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION\ + \ OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION\ + \ MAY NOT APPLY TO YOU.\n10.\tU.S. GOVERNMENT END USERS.\nThe Covered Code is a \"commercial\ + \ item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial\ + \ computer software\" and \"commercial computer software documentation,\" as such terms\ + \ are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R.\ + \ 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered\ + \ Code with only those rights set forth herein.\n11.\tMISCELLANEOUS.\nThis License represents\ + \ the complete agreement concerning subject matter hereof. If any provision of this License\ + \ is held to be unenforceable, such provision shall be reformed only to the extent necessary\ + \ to make it enforceable. This License shall be governed by California law provisions (except\ + \ to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law\ + \ provisions. With respect to disputes in which at least one party is a citizen of, or an\ + \ entity chartered or registered to do business in the United States of America, any litigation\ + \ relating to this License shall be subject to the jurisdiction of the Federal Courts of\ + \ the Northern District of California, with venue lying in Santa Clara County, California,\ + \ with the losing party responsible for costs, including without limitation, court costs\ + \ and reasonable attorneys’ fees and expenses. The application of the United Nations Convention\ + \ on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation\ + \ which provides that the language of a contract shall be construed against the drafter\ + \ shall not apply to this License.\n12.\tRESPONSIBILITY FOR CLAIMS.\nAs between Initial\ + \ Developer, Original Developer and the Contributors, each party is responsible for claims\ + \ and damages arising, directly or indirectly, out of its utilization of rights under this\ + \ License and You agree to work with Initial Developer, Original Developer and Contributors\ + \ to distribute such responsibility on an equitable basis. Nothing herein is intended or\ + \ shall be deemed to constitute any admission of liability.\n13.\tMULTIPLE-LICENSED CODE.\n\ + Initial Developer may designate portions of the Covered Code as Multiple-Licensed. Multiple-Licensed\ + \ means that the Initial Developer permits you to utilize portions of the Covered Code under\ + \ Your choice of the CPAL or the alternative licenses, if any, specified by the Initial\ + \ Developer in the file described in Exhibit A.\n14.\tADDITIONAL TERM: ATTRIBUTION\n(a)\t\ + As a modest attribution to the organizer of the development of the Original Code (\"Original\ + \ Developer\"), in the hope that its promotional value may help justify the time, money\ + \ and effort invested in writing the Original Code, the Original Developer may include in\ + \ Exhibit B (\"Attribution Information\") a requirement that each time an Executable and\ + \ Source Code or a Larger Work is launched or initially run (which includes initiating a\ + \ session), a prominent display of the Original Developer’s Attribution Information (as\ + \ defined below) must occur on the graphic user interface employed by the end user to access\ + \ such Covered Code (which may include display on a splash screen), if any. The size of\ + \ the graphic image should be consistent with the size of the other elements of the Attribution\ + \ Information. If the access by the end user to the Executable and Source Code does not\ + \ create a graphic user interface for access to the Covered Code, this obligation shall\ + \ not apply. If the Original Code displays such Attribution Information in a particular\ + \ form (such as in the form of a splash screen, notice at login, an \"about\" display, or\ + \ dedicated attribution area on user interface screens), continued use of such form for\ + \ that Attribution Information is one way of meeting this requirement for notice.\n(b)\t\ + Attribution information may only include a copyright notice, a brief phrase, graphic image\ + \ and a URL (\"Attribution Information\") and is subject to the Attribution Limits as defined\ + \ below. For these purposes, prominent shall mean display for sufficient duration to give\ + \ reasonable notice to the user of the identity of the Original Developer and that if You\ + \ include Attribution Information or similar information for other parties, You must ensure\ + \ that the Attribution Information for the Original Developer shall be no less prominent\ + \ than such Attribution Information or similar information for the other party. For greater\ + \ certainty, the Original Developer may choose to specify in Exhibit B below that the above\ + \ attribution requirement only applies to an Executable and Source Code resulting from the\ + \ Original Code or any Modification, but not a Larger Work. The intent is to provide for\ + \ reasonably modest attribution, therefore the Original Developer cannot require that You\ + \ display, at any time, more than the following information as Attribution Information:\ + \ (a) a copyright notice including the name of the Original Developer; (b) a word or one\ + \ phrase (not exceeding 10 words); (c) one graphic image provided by the Original Developer;\ + \ and (d) a URL (collectively, the \"Attribution Limits\").\n(c)\tIf Exhibit B does not\ + \ include any Attribution Information, then there are no requirements for You to display\ + \ any Attribution Information of the Original Developer.\n(d)\tYou acknowledge that all\ + \ trademarks, service marks and/or trade names contained within the Attribution Information\ + \ distributed with the Covered Code are the exclusive property of their owners and may only\ + \ be used with the permission of their owners, or under circumstances otherwise permitted\ + \ by law or as expressly set out in this License.\n15.\tADDITIONAL TERM: NETWORK USE.\n\ + The term \"External Deployment\" means the use, distribution, or communication of the Original\ + \ Code or Modifications in any way such that the Original Code or Modifications may be used\ + \ by anyone other than You, whether those works are distributed or communicated to those\ + \ persons or made available as an application intended for use over a network. As an express\ + \ condition for the grants of license hereunder, You must treat any External Deployment\ + \ by You of the Original Code or Modifications as a distribution under section 3.1 and make\ + \ Source Code available under Section 3.2.\n\n\nEXHIBIT A. Common Public Attribution License\ + \ Version 1.0.\n\"The contents of this file are subject to the Common Public Attribution\ + \ License Version 1.0 (the \"License\"); you may not use this file except in compliance\ + \ with the License. You may obtain a copy of the License at . The License is based on the\ + \ Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover use\ + \ of software over a computer network and provide for limited attribution for the Original\ + \ Developer. In addition, Exhibit A has been modified to be consistent with Exhibit B.\n\ + Software distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY\ + \ OF ANY KIND, either express or implied. See the License for the specific language governing\ + \ rights and limitations under the License.\nThe Original Code is .\nThe Original Developer\ + \ is not the Initial Developer and is . If left blank, the Original Developer is the Initial\ + \ Developer.\nThe Initial Developer of the Original Code is . All portions of the code\ + \ written by are Copyright (c) . All Rights Reserved.\nContributor .\nAlternatively,\ + \ the contents of this file may be used under the terms of the license (the [ ] License),\ + \ in which case the provisions of [ ] License are applicable instead of those above.\nIf\ + \ you wish to allow use of your version of this file only under the terms of the [ ] License\ + \ and not to allow others to use your version of this file under the CPAL, indicate your\ + \ decision by deleting the provisions above and replace them with the notice and other provisions\ + \ required by the [ ] License. If you do not delete the provisions above, a recipient\ + \ may use your version of this file under either the CPAL or the [ ] License.\"\n[NOTE:\ + \ The text of this Exhibit A may differ slightly from the text of the notices in the Source\ + \ Code files of the Original Code. You should use the text of this Exhibit A rather than\ + \ the text found in the Original Code Source Code for Your Modifications.]\n\n\nEXHIBIT\ + \ B. Attribution Information\nAttribution Copyright Notice: \nAttribution Phrase (not exceeding\ + \ 10 words): \nAttribution URL: \nGraphic Image as provided in the Covered Code, if any.\n\ + Display of Attribution Information is [required/not required] in Larger Works which are\ + \ defined in the CPAL as a work which combines Covered Code or portions thereof with code\ + \ not governed by the terms of the CPAL." json: cpal-1.0.json - yml: cpal-1.0.yml + yaml: cpal-1.0.yml html: cpal-1.0.html - text: cpal-1.0.LICENSE + license: cpal-1.0.LICENSE - license_key: cpl-0.5 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-cpl-0.5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Common Public License Version 0.5\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE\ + \ TERMS OF THIS COMMON PUBLIC\nLICENSE (\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION\ + \ OF THE PROGRAM\nCONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n\n1. DEFINITIONS\n\ + \n\"Contribution\" means:\n\n a) in the case of the initial Contributor, the initial\ + \ code and\n documentation distributed under this Agreement, and\n\n b) in the case\ + \ of each subsequent Contributor:\n\n i) changes to the Program, and\n\n ii) additions\ + \ to the Program;\n\n where such changes and/or additions to the Program originate from\ + \ and are\n distributed by that particular Contributor. A Contribution 'originates' from\n\ + \ a Contributor if it was added to the Program by such Contributor itself or\n anyone\ + \ acting on such Contributor's behalf. Contributions do not include\n additions to the\ + \ Program which: (i) are separate modules of software\n distributed in conjunction with\ + \ the Program under their own license\n agreement, and (ii) are not derivative works\ + \ of the Program.\n\n\"Contributor\" means any person or entity that distributes the Program.\n\ + \n\"Licensed Patents \" mean patent claims licensable by a Contributor which are \nnecessarily\ + \ infringed by the use or sale of its Contribution alone or when\ncombined with the Program.\n\ + \n\"Program\" means the Contributions distributed in accordance with this Agreement.\n\n\ + \"Recipient\" means anyone who receives the Program under this Agreement,\nincluding all\ + \ Contributors.\n\n2. GRANT OF RIGHTS\n\n a) Subject to the terms of this Agreement,\ + \ each Contributor hereby grants\n Recipient a non-exclusive, worldwide, royalty-free\ + \ copyright license to\n reproduce, prepare derivative works of, publicly display, publicly\ + \ perform,\n distribute and sublicense the Contribution of such Contributor, if any,\ + \ and\n such derivative works, in source code and object code form.\n\n b) Subject\ + \ to the terms of this Agreement, each Contributor hereby grants\n Recipient a non-exclusive,\ + \ worldwide, royalty-free patent license under\n Licensed Patents to make, use, sell,\ + \ offer to sell, import and otherwise\n transfer the Contribution of such Contributor,\ + \ if any, in source code and\n object code form. This patent license shall apply to the\ + \ combination of the\n Contribution and the Program if, at the time the Contribution\ + \ is added by\n the Contributor, such addition of the Contribution causes such combination\n\ + \ to be covered by the Licensed Patents. The patent license shall not apply to\n any\ + \ other combinations which include the Contribution. No hardware per se is\n licensed\ + \ hereunder.\n\n c) Recipient understands that although each Contributor grants the licenses\n\ + \ to its Contributions set forth herein, no assurances are provided by any\n Contributor\ + \ that the Program does not infringe the patent or other\n intellectual property rights\ + \ of any other entity. Each Contributor disclaims\n any liability to Recipient for claims\ + \ brought by any other entity based on\n infringement of intellectual property rights\ + \ or otherwise. As a condition to\n exercising the rights and licenses granted hereunder,\ + \ each Recipient hereby\n assumes sole responsibility to secure any other intellectual\ + \ property rights\n needed, if any. For example, if a third party patent license is required\ + \ to\n allow Recipient to distribute the Program, it is Recipient's responsibility\n\ + \ to acquire that license before distributing the Program.\n\n d) Each Contributor\ + \ represents that to its knowledge it has sufficient\n copyright rights in its Contribution,\ + \ if any, to grant the copyright license\n set forth in this Agreement.\n\n3. REQUIREMENTS\n\ + \nA Contributor may choose to distribute the Program in object code form under its\nown\ + \ license agreement, provided that:\n\n a) it complies with the terms and conditions\ + \ of this Agreement; and\n\n b) its license agreement:\n\n i) effectively disclaims\ + \ on behalf of all Contributors all warranties and\n conditions, express and implied,\ + \ including warranties or conditions of title\n and non-infringement, and implied warranties\ + \ or conditions of\n merchantability and fitness for a particular purpose;\n\n ii)\ + \ effectively excludes on behalf of all Contributors all liability for\n damages, including\ + \ direct, indirect, special, incidental and consequential\n damages, such as lost profits;\n\ + \n iii) states that any provisions which differ from this Agreement are offered\n \ + \ by that Contributor alone and not by any other party; and\n\n iv) states that source\ + \ code for the Program is available from such\n Contributor, and informs licensees how\ + \ to obtain it in a reasonable manner\n on or through a medium customarily used for software\ + \ exchange.\n\nWhen the Program is made available in source code form:\n\n a) it must\ + \ be made available under this Agreement; and\n\n b) a copy of this Agreement must be\ + \ included with each copy of the Program.\n\nContributors may not remove or alter any copyright\ + \ notices contained within the\nProgram.\n\nEach Contributor must identify itself as the\ + \ originator of its Contribution, if\nany, in a manner that reasonably allows subsequent\ + \ Recipients to identify the\noriginator of the Contribution.\n\n4. COMMERCIAL DISTRIBUTION\n\ + \nCommercial distributors of software may accept certain responsibilities with\nrespect\ + \ to end users, business partners and the like. While this license is\nintended to facilitate\ + \ the commercial use of the Program, the Contributor who\nincludes the Program in a commercial\ + \ product offering should do so in a manner\nwhich does not create potential liability for\ + \ other Contributors. Therefore, if\na Contributor includes the Program in a commercial\ + \ product offering, such\nContributor (\"Commercial Contributor\") hereby agrees to defend\ + \ and indemnify\nevery other Contributor (\"Indemnified Contributor\") against any losses,\ + \ damages\nand costs (collectively \"Losses\") arising from claims, lawsuits and other legal\n\ + actions brought by a third party against the Indemnified Contributor to the\nextent caused\ + \ by the acts or omissions of such Commercial Contributor in\nconnection with its distribution\ + \ of the Program in a commercial product\noffering. The obligations in this section do not\ + \ apply to any claims or Losses\nrelating to any actual or alleged intellectual property\ + \ infringement. In order\nto qualify, an Indemnified Contributor must: a) promptly notify\ + \ the Commercial\nContributor in writing of such claim, and b) allow the Commercial Contributor\ + \ to\ncontrol, and cooperate with the Commercial Contributor in, the defense and any\nrelated\ + \ settlement negotiations. The Indemnified Contributor may participate in\nany such claim\ + \ at its own expense.\n\nFor example, a Contributor might include the Program in a commercial\ + \ product\noffering, Product X. That Contributor is then a Commercial Contributor. If that\n\ + Commercial Contributor then makes performance claims, or offers warranties\nrelated to Product\ + \ X, those performance claims and warranties are such\nCommercial Contributor's responsibility\ + \ alone. Under this section, the\nCommercial Contributor would have to defend claims against\ + \ the other\nContributors related to those performance claims and warranties, and if a court\n\ + requires any other Contributor to pay any damages as a result, the Commercial\nContributor\ + \ must pay those damages.\n\n5. NO WARRANTY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT,\ + \ THE PROGRAM IS PROVIDED ON AN\n\"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\ + \ KIND, EITHER EXPRESS OR\nIMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS\ + \ OF TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each\n\ + Recipient is solely responsible for determining the appropriateness of using and\ndistributing\ + \ the Program and assumes all risks associated with its exercise of\nrights under this Agreement,\ + \ including but not limited to the risks and costs of\nprogram errors, compliance with applicable\ + \ laws, damage to or loss of data,\nprograms or equipment, and unavailability or interruption\ + \ of operations.\n\n6. DISCLAIMER OF LIABILITY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS\ + \ AGREEMENT, NEITHER RECIPIENT NOR ANY\nCONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT,\ + \ INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT\ + \ LIMITATION LOST\nPROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n\ + STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF\ + \ THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS\nGRANTED HEREUNDER,\ + \ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. GENERAL\n\nIf any provision\ + \ of this Agreement is invalid or unenforceable under applicable\nlaw, it shall not affect\ + \ the validity or enforceability of the remainder of the\nterms of this Agreement, and without\ + \ further action by the parties hereto, such\nprovision shall be reformed to the minimum\ + \ extent necessary to make such\nprovision valid and enforceable.\n\nIf Recipient institutes\ + \ patent litigation against a Contributor with respect to\na patent applicable to software\ + \ (including a cross-claim or counterclaim in a\nlawsuit), then any patent licenses granted\ + \ by that Contributor to such Recipient\nunder this Agreement shall terminate as of the\ + \ date such litigation is filed. In\naddition, If Recipient institutes patent litigation\ + \ against any entity\n(including a cross-claim or counterclaim in a lawsuit) alleging that\ + \ the Program\nitself (excluding combinations of the Program with other software or hardware)\n\ + infringes such Recipient's patent(s), then such Recipient's rights granted under\nSection\ + \ 2(b) shall terminate as of the date such litigation is filed.\n\nAll Recipient's rights\ + \ under this Agreement shall terminate if it fails to\ncomply with any of the material terms\ + \ or conditions of this Agreement and does\nnot cure such failure in a reasonable period\ + \ of time after becoming aware of\nsuch noncompliance. If all Recipient's rights under this\ + \ Agreement terminate,\nRecipient agrees to cease use and distribution of the Program as\ + \ soon as\nreasonably practicable. However, Recipient's obligations under this Agreement\n\ + and any licenses granted by Recipient relating to the Program shall continue and\nsurvive.\n\ + \nEveryone is permitted to copy and distribute copies of this Agreement, but in\norder to\ + \ avoid inconsistency the Agreement is copyrighted and may only be\nmodified in the following\ + \ manner. The Agreement Steward reserves the right to\npublish new versions (including revisions)\ + \ of this Agreement from time to time.\nNo one other than the Agreement Steward has the\ + \ right to modify this Agreement.\nIBM is the initial Agreement Steward. IBM may assign\ + \ the responsibility to serve\nas the Agreement Steward to a suitable separate entity. Each\ + \ new version of the\nAgreement will be given a distinguishing version number. The Program\ + \ (including\nContributions) may always be distributed subject to the version of the Agreement\n\ + under which it was received. In addition, after a new version of the Agreement\nis published,\ + \ Contributor may elect to distribute the Program (including its\nContributions) under the\ + \ new version. Except as expressly stated in Sections\n2(a) and 2(b) above, Recipient receives\ + \ no rights or licenses to the\nintellectual property of any Contributor under this Agreement,\ + \ whether\nexpressly, by implication, estoppel or otherwise. All rights in the Program not\n\ + expressly granted under this Agreement are reserved.\n\nThis Agreement is governed by the\ + \ laws of the State of New York and the\nintellectual property laws of the United States\ + \ of America. No party to this\nAgreement will bring a legal action under this Agreement\ + \ more than one year\nafter the cause of action arose. Each party waives its rights to a\ + \ jury trial in\nany resulting litigation." json: cpl-0.5.json - yml: cpl-0.5.yml + yaml: cpl-0.5.yml html: cpl-0.5.html - text: cpl-0.5.LICENSE + license: cpl-0.5.LICENSE - license_key: cpl-1.0 + category: Copyleft Limited spdx_license_key: CPL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Common Public License - v 1.0\n\nUpdated 16 Apr 2009\n\nAs of 25 Feb 2009, IBM has\ + \ assigned the Agreement Steward role for the CPL to the Eclipse Foundation. Eclipse has\ + \ designated the Eclipse Public License (EPL) as the follow-on version of the CPL.\n\nTHE\ + \ ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE (\"AGREEMENT\"\ + ). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE\ + \ OF THIS AGREEMENT.\n\n\n1. DEFINITIONS\n\n\"Contribution\" means:\n\na) in the case of\ + \ the initial Contributor, the initial code and documentation distributed under this Agreement,\ + \ and\nb) in the case of each subsequent Contributor:\ni)\t changes to the Program, and\n\ + ii)\t additions to the Program;\nwhere such changes and/or additions to the Program originate\ + \ from and are distributed by that particular Contributor. A Contribution 'originates' from\ + \ a Contributor if it was added to the Program by such Contributor itself or anyone acting\ + \ on such Contributor's behalf. Contributions do not include additions to the Program which:\ + \ (i) are separate modules of software distributed in conjunction with the Program under\ + \ their own license agreement, and (ii) are not derivative works of the Program.\n\n\"Contributor\"\ + \ means any person or entity that distributes the Program.\n\n\n\"Licensed Patents \" mean\ + \ patent claims licensable by a Contributor which are necessarily infringed by the use or\ + \ sale of its Contribution alone or when combined with the Program.\n\n\n\"Program\" means\ + \ the Contributions distributed in accordance with this Agreement.\n\n\n\"Recipient\" means\ + \ anyone who receives the Program under this Agreement, including all Contributors.\n\n\n\ + 2. GRANT OF RIGHTS\n\na)\tSubject to the terms of this Agreement, each Contributor hereby\ + \ grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce,\ + \ prepare derivative works of, publicly display, publicly perform, distribute and sublicense\ + \ the Contribution of such Contributor, if any, and such derivative works, in source code\ + \ and object code form.\nb) Subject to the terms of this Agreement, each Contributor hereby\ + \ grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed\ + \ Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution\ + \ of such Contributor, if any, in source code and object code form. This patent license\ + \ shall apply to the combination of the Contribution and the Program if, at the time the\ + \ Contribution is added by the Contributor, such addition of the Contribution causes such\ + \ combination to be covered by the Licensed Patents. The patent license shall not apply\ + \ to any other combinations which include the Contribution. No hardware per se is licensed\ + \ hereunder.\nc)\tRecipient understands that although each Contributor grants the licenses\ + \ to its Contributions set forth herein, no assurances are provided by any Contributor that\ + \ the Program does not infringe the patent or other intellectual property rights of any\ + \ other entity. Each Contributor disclaims any liability to Recipient for claims brought\ + \ by any other entity based on infringement of intellectual property rights or otherwise.\ + \ As a condition to exercising the rights and licenses granted hereunder, each Recipient\ + \ hereby assumes sole responsibility to secure any other intellectual property rights needed,\ + \ if any. For example, if a third party patent license is required to allow Recipient to\ + \ distribute the Program, it is Recipient's responsibility to acquire that license before\ + \ distributing the Program.\nd)\tEach Contributor represents that to its knowledge it has\ + \ sufficient copyright rights in its Contribution, if any, to grant the copyright license\ + \ set forth in this Agreement.\n3. REQUIREMENTS\n\nA Contributor may choose to distribute\ + \ the Program in object code form under its own license agreement, provided that:\n\na)\t\ + it complies with the terms and conditions of this Agreement; and\nb)\tits license agreement:\n\ + i)\teffectively disclaims on behalf of all Contributors all warranties and conditions, express\ + \ and implied, including warranties or conditions of title and non-infringement, and implied\ + \ warranties or conditions of merchantability and fitness for a particular purpose;\nii)\ + \ effectively excludes on behalf of all Contributors all liability for damages, including\ + \ direct, indirect, special, incidental and consequential damages, such as lost profits;\n\ + iii)\tstates that any provisions which differ from this Agreement are offered by that Contributor\ + \ alone and not by any other party; and\niv)\tstates that source code for the Program is\ + \ available from such Contributor, and informs licensees how to obtain it in a reasonable\ + \ manner on or through a medium customarily used for software exchange.\nWhen the Program\ + \ is made available in source code form:\n\na)\tit must be made available under this Agreement;\ + \ and\nb)\ta copy of this Agreement must be included with each copy of the Program.\n\n\ + Contributors may not remove or alter any copyright notices contained within the Program.\n\ + \n\nEach Contributor must identify itself as the originator of its Contribution, if any,\ + \ in a manner that reasonably allows subsequent Recipients to identify the originator of\ + \ the Contribution.\n\n\n4. COMMERCIAL DISTRIBUTION\n\nCommercial distributors of software\ + \ may accept certain responsibilities with respect to end users, business partners and the\ + \ like. While this license is intended to facilitate the commercial use of the Program,\ + \ the Contributor who includes the Program in a commercial product offering should do so\ + \ in a manner which does not create potential liability for other Contributors. Therefore,\ + \ if a Contributor includes the Program in a commercial product offering, such Contributor\ + \ (\"Commercial Contributor\") hereby agrees to defend and indemnify every other Contributor\ + \ (\"Indemnified Contributor\") against any losses, damages and costs (collectively \"Losses\"\ + ) arising from claims, lawsuits and other legal actions brought by a third party against\ + \ the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial\ + \ Contributor in connection with its distribution of the Program in a commercial product\ + \ offering. The obligations in this section do not apply to any claims or Losses relating\ + \ to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified\ + \ Contributor must: a) promptly notify the Commercial Contributor in writing of such claim,\ + \ and b) allow the Commercial Contributor to control, and cooperate with the Commercial\ + \ Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor\ + \ may participate in any such claim at its own expense.\n\n\nFor example, a Contributor\ + \ might include the Program in a commercial product offering, Product X. That Contributor\ + \ is then a Commercial Contributor. If that Commercial Contributor then makes performance\ + \ claims, or offers warranties related to Product X, those performance claims and warranties\ + \ are such Commercial Contributor's responsibility alone. Under this section, the Commercial\ + \ Contributor would have to defend claims against the other Contributors related to those\ + \ performance claims and warranties, and if a court requires any other Contributor to pay\ + \ any damages as a result, the Commercial Contributor must pay those damages.\n\n\n5. NO\ + \ WARRANTY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED 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. Each Recipient is solely responsible\ + \ for determining the appropriateness of using and distributing the Program and assumes\ + \ all risks associated with its exercise of rights under this Agreement, including but not\ + \ limited to the risks and costs of program errors, compliance with applicable laws, damage\ + \ to or loss of data, programs or equipment, and unavailability or interruption of operations.\n\ + \n\n6. DISCLAIMER OF LIABILITY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER\ + \ RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,\ + \ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS),\ + \ 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 OR DISTRIBUTION\ + \ OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE\ + \ POSSIBILITY OF SUCH DAMAGES.\n\n\n7. GENERAL\n\nIf any provision of this Agreement is\ + \ invalid or unenforceable under applicable law, it shall not affect the validity or enforceability\ + \ of the remainder of the terms of this Agreement, and without further action by the parties\ + \ hereto, such provision shall be reformed to the minimum extent necessary to make such\ + \ provision valid and enforceable.\n\n\nIf Recipient institutes patent litigation against\ + \ a Contributor with respect to a patent applicable to software (including a cross-claim\ + \ or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to\ + \ such Recipient under this Agreement shall terminate as of the date such litigation is\ + \ filed. In addition, if Recipient institutes patent litigation against any entity (including\ + \ a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding\ + \ combinations of the Program with other software or hardware) infringes such Recipient's\ + \ patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as\ + \ of the date such litigation is filed.\n\n\nAll Recipient's rights under this Agreement\ + \ shall terminate if it fails to comply with any of the material terms or conditions of\ + \ this Agreement and does not cure such failure in a reasonable period of time after becoming\ + \ aware of such noncompliance. If all Recipient's rights under this Agreement terminate,\ + \ Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable.\ + \ However, Recipient's obligations under this Agreement and any licenses granted by Recipient\ + \ relating to the Program shall continue and survive.\n\n\nEveryone is permitted to copy\ + \ and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement\ + \ is copyrighted and may only be modified in the following manner. The Agreement Steward\ + \ reserves the right to publish new versions (including revisions) of this Agreement from\ + \ time to time. No one other than the Agreement Steward has the right to modify this Agreement.\ + \ IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the\ + \ Agreement Steward to a suitable separate entity. Each new version of the Agreement will\ + \ be given a distinguishing version number. The Program (including Contributions) may always\ + \ be distributed subject to the version of the Agreement under which it was received. In\ + \ addition, after a new version of the Agreement is published, Contributor may elect to\ + \ distribute the Program (including its Contributions) under the new version. Except as\ + \ expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses\ + \ to the intellectual property of any Contributor under this Agreement, whether expressly,\ + \ by implication, estoppel or otherwise. All rights in the Program not expressly granted\ + \ under this Agreement are reserved.\n\n\nThis Agreement is governed by the laws of the\ + \ State of New York and the intellectual property laws of the United States of America.\ + \ No party to this Agreement will bring a legal action under this Agreement more than one\ + \ year after the cause of action arose. Each party waives its rights to a jury trial in\ + \ any resulting litigation." json: cpl-1.0.json - yml: cpl-1.0.yml + yaml: cpl-1.0.yml html: cpl-1.0.html - text: cpl-1.0.LICENSE + license: cpl-1.0.LICENSE - license_key: cpm-2022 + category: Permissive spdx_license_key: LicenseRef-scancode-cpm-2022 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Let this paragraph represent a right to use, distribute, modify, enhance, and otherwise\ + \ \nmake available in a nonexclusive manner CP/M and its derivatives. This right comes from\ + \ \nthe company, DRDOS, Inc.'s purchase of Digital Research, the company and all assets,\ + \ \ndating back to the mid-1990's. DRDOS, Inc. and I, Bryan Sparks, President of DRDOS,\ + \ \nInc. as its representative, is the owner of CP/M and the successor in interest of \n\ + Digital Research assets." json: cpm-2022.json - yml: cpm-2022.yml + yaml: cpm-2022.yml html: cpm-2022.html - text: cpm-2022.LICENSE + license: cpm-2022.LICENSE - license_key: cpol-1.0 + category: Free Restricted spdx_license_key: LicenseRef-scancode-cpol-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "The Code Project Open License (CPOL) 1.0\n\n***** Preamble *****\nThis License governs\ + \ Your use of the Work. This License is intended to allow\ndevelopers to use the Source\ + \ Code and Executable Files provided as part of the\nWork in any application in any form.\n\ + The main points subject to the terms of the License are:\n * Source Code and Executable\ + \ Files can be used in commercial applications;\n * Source Code and Executable Files\ + \ can be redistributed; and\n * Source Code can be modified to create derivative works.\n\ + \ * No claim of suitability, guarantee, or any warranty whatsoever is\n provided.\ + \ The software is provided \"as-is\".\nThis License is entered between You, the individual\ + \ or other entity reading or\notherwise making use of the Work licensed pursuant to this\ + \ License and the\nindividual or other entity which offers the Work under the terms of this\n\ + License (\"Author\").\n***** License *****\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER\ + \ THE TERMS OF THIS CODE PROJECT\nOPEN LICENSE (\"LICENSE\"). THE WORK IS PROTECTED BY COPYRIGHT\ + \ AND/OR OTHER\nAPPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS\ + \ LICENSE\nOR COPYRIGHT LAW IS PROHIBITED.\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED\ + \ HEREIN, YOU ACCEPT AND AGREE TO\nBE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS\ + \ YOU THE RIGHTS\nCONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND\n\ + CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS\nLICENSE, YOU\ + \ CANNOT MAKE ANY USE OF THE WORK.\n 1. Definitions.\n 1. \"Articles\" means,\ + \ collectively, all articles written by Author\n which describes how the Source\ + \ Code and Executable Files for the\n Work may be used by a user.\n 2.\ + \ \"Author\" means the individual or entity that offers the Work under\n the\ + \ terms of this License.\n 3. \"Derivative Work\" means a work based upon the Work\ + \ or upon the Work\n and other pre-existing works.\n 4. \"Executable\ + \ Files\" refer to the executables, binary files,\n configuration and any required\ + \ data files included in the Work.\n 5. \"Publisher\" means the provider of the\ + \ website, magazine, CD-ROM,\n DVD or other medium from or by which the Work\ + \ is obtained by You.\n 6. \"Source Code\" refers to the collection of source code\ + \ and\n configuration files used to create the Executable Files.\n 7.\ + \ \"Standard Version\" refers to such a Work if it has not been\n modified, or\ + \ has been modified in accordance with the consent of\n the Author, such consent\ + \ being in the full discretion of the\n Author.\n 8. \"Work\" refers\ + \ to the collection of files distributed by the\n Publisher, including the Source\ + \ Code, Executable Files, binaries,\n data files, documentation, whitepapers\ + \ and the Articles.\n 9. \"You\" is you, an individual or entity wishing to use\ + \ the Work and\n exercise your rights under this License.\n 2. Fair Use/Fair\ + \ Use Rights. Nothing in this License is intended to reduce,\n limit, or restrict any\ + \ rights arising from fair use, fair dealing, first\n sale or other limitations on\ + \ the exclusive rights of the copyright owner\n under copyright law or other applicable\ + \ laws.\n 3. License Grant. Subject to the terms and conditions of this License, the\n\ + \ Author hereby grants You a worldwide, royalty-free, non-exclusive,\n perpetual\ + \ (for the duration of the applicable copyright) license to\n exercise the rights in\ + \ the Work as stated below:\n 1. You may use the standard version of the Source\ + \ Code or Executable\n Files in Your own applications.\n 2. You may apply\ + \ bug fixes, portability fixes and other modifications\n obtained from the Public\ + \ Domain or from the Author. A Work modified\n in such a way shall still be considered\ + \ the standard version and\n will be subject to this License.\n 3. You\ + \ may otherwise modify Your copy of this Work (excluding the\n Articles) in any\ + \ way to create a Derivative Work, provided that You\n insert a prominent notice\ + \ in each changed file stating how, when\n and where You changed that file.\n\ + \ 4. You may distribute the standard version of the Executable Files and\n \ + \ Source Code or Derivative Work in aggregate with other (possibly\n commercial)\ + \ programs as part of a larger (possibly commercial)\n software distribution.\n\ + \ 5. The Articles discussing the Work published in any form by the\n \ + \ author may not be distributed or republished without the Author's\n consent.\ + \ The author retains copyright to any such Articles. You may\n use the Executable\ + \ Files and Source Code pursuant to this License\n but you may not repost or\ + \ republish or otherwise distribute or make\n available the Articles, without\ + \ the prior written consent of the\n Author.\n Any subroutines or modules\ + \ supplied by You and linked into the Source\n Code or Executable Files this Work shall\ + \ not be considered part of this\n Work and will not be subject to the terms of this\ + \ License.\n 4. Patent License. Subject to the terms and conditions of this License, each\n\ + \ Author hereby grants to You a perpetual, worldwide, non-exclusive, no-\n charge,\ + \ royalty-free, irrevocable (except as stated in this section)\n patent license to\ + \ make, have made, use, import, and otherwise transfer\n the Work.\n 5. Restrictions.\ + \ The license granted in Section 3 above is expressly made\n subject to and limited\ + \ by the following restrictions:\n 1. You agree not remove any of the original copyright,\ + \ patent,\n trademark, and attribution notices and associated disclaimers that\n\ + \ may appear in the Source Code or Executable Files.\n 2. You agree not\ + \ to advertise or in any way imply that this Work is a\n product of Your own.\n\ + \ 3. The name of the Author may not be used to endorse or promote\n products\ + \ derived from the Work without the prior written consent of\n the Author.\n\ + \ 4. You agree not to sell, lease, or rent any part of the Work.\n 5. You\ + \ may distribute the Executable Files and Source Code only under\n the terms\ + \ of this License, and You must include a copy of, or the\n Uniform Resource\ + \ Identifier for, this License with every copy of\n the Executable Files or Source\ + \ Code You distribute and ensure that\n anyone receiving such Executable Files\ + \ and Source Code agrees that\n the terms of this License apply to such Executable\ + \ Files and/or\n Source Code. You may not offer or impose any terms on the Work\ + \ that\n alter or restrict the terms of this License or the recipients'\n \ + \ exercise of the rights granted hereunder. You may not sublicense\n \ + \ the Work. You must keep intact all notices that refer to this\n License and\ + \ to the disclaimer of warranties. You may not distribute\n the Executable Files\ + \ or Source Code with any technological measures\n that control access or use\ + \ of the Work in a manner inconsistent\n with the terms of this License.\n \ + \ 6. You agree not to use the Work for illegal, immoral or improper\n purposes,\ + \ or on pages containing illegal, immoral or improper\n material. The Work is\ + \ subject to applicable export laws. You agree\n to comply with all such laws\ + \ and regulations that may apply to the\n Work after Your receipt of the Work.\n\ + \ 6. Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED \"AS\n IS\"\ + , \"WHERE IS\" AND \"AS AVAILABLE\", WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES OR\ + \ CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN\n ITS USE, INCLUDING\ + \ COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT,\n SUITABILITY, ETC. AUTHOR EXPRESSLY\ + \ DISCLAIMS ALL EXPRESS, IMPLIED OR\n STATUTORY WARRANTIES OR CONDITIONS, INCLUDING\ + \ WITHOUT LIMITATION,\n WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY\ + \ OR\n FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-\n INFRINGEMENT,\ + \ OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT,\n USEFUL, BUG-FREE OR FREE\ + \ OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON\n WHENEVER YOU DISTRIBUTE THE WORK OR\ + \ DERIVATIVE WORKS.\n 7. Indemnity.You agree to defend, indemnify and hold harmless the\ + \ Author and\n the Publisher from and against any claims, suits, losses, damages,\n\ + \ liabilities, costs, and expenses (including reasonable legal or\n attorneysâ\x80\ + \x99 fees) resulting from or relating to any use of the Work by\n You.\n 8. Limitation\ + \ on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW,\n IN NO EVENT WILL\ + \ THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY\n LEGAL THEORY FOR ANY SPECIAL,\ + \ INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR\n EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE\ + \ OR THE USE OF THE WORK OR\n OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN\ + \ ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGES.\n 9. Termination.\n 1. This\ + \ License and the rights granted hereunder will terminate\n automatically upon\ + \ any breach by You of any term of this License.\n Individuals or entities who\ + \ have received Derivative Works from You\n under this License, however, will\ + \ not have their licenses\n terminated provided such individuals or entities\ + \ remain in full\n compliance with those licenses. Sections 1, 2, 6, 7, 8, 9,\ + \ 10 and\n 11 will survive any termination of this License.\n 2. If You\ + \ bring a copyright, trademark, patent or any other\n infringement claim against\ + \ any contributor over infringements You\n claim are made by the Work, your License\ + \ from such contributor to\n the Work ends automatically.\n 3. Subject\ + \ to the above terms and conditions, this License is\n perpetual (for the duration\ + \ of the applicable copyright in the\n Work). Notwithstanding the above, the\ + \ Author reserves the right to\n release the Work under different license terms\ + \ or to stop\n distributing the Work at any time; provided, however that any\ + \ such\n election will not serve to withdraw this License (or any other\n \ + \ license that has been, or is required to be, granted under the\n terms\ + \ of this License), and this License will continue in full\n force and effect\ + \ unless terminated as stated above.\n 10. Publisher. The parties hereby confirm that the\ + \ Publisher shall not, under\n any circumstances, be responsible for and shall not\ + \ have any liability in\n respect of the subject matter of this License. The Publisher\ + \ makes no\n warranty whatsoever in connection with the Work and shall not be liable\n\ + \ to You or any party on any legal theory for any damages whatsoever,\n including\ + \ without limitation any general, special, incidental or\n consequential damages arising\ + \ in connection to this license. The\n Publisher reserves the right to cease making\ + \ the Work available to You at\n any time without notice\n 11. Miscellaneous\n \ + \ 1. This License shall be governed by the laws of the location of the\n \ + \ head office of the Author or if the Author is an individual, the\n laws of\ + \ location of the principal place of residence of the Author.\n 2. If any provision\ + \ of this License is invalid or unenforceable under\n applicable law, it shall\ + \ not affect the validity or enforceability\n of the remainder of the terms of\ + \ this License, and without further\n action by the parties to this License,\ + \ such provision shall be\n reformed to the minimum extent necessary to make\ + \ such provision\n valid and enforceable.\n 3. No term or provision of\ + \ this License shall be deemed waived and no\n breach consented to unless such\ + \ waiver or consent shall be in\n writing and signed by the party to be charged\ + \ with such waiver or\n consent.\n 4. This License constitutes the entire\ + \ agreement between the parties\n with respect to the Work licensed herein. There\ + \ are no\n understandings, agreements or representations with respect to the\n\ + \ Work not specified herein. The Author shall not be bound by any\n \ + \ additional provisions that may appear in any communication from\n You. This\ + \ License may not be modified without the mutual written\n agreement of the Author\ + \ and You." json: cpol-1.0.json - yml: cpol-1.0.yml + yaml: cpol-1.0.yml html: cpol-1.0.html - text: cpol-1.0.LICENSE + license: cpol-1.0.LICENSE - license_key: cpol-1.02 + category: Free Restricted spdx_license_key: CPOL-1.02 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + The Code Project Open License (CPOL) 1.02 + + Preamble + + This License governs Your use of the Work. This License is intended to allow developers to use the Source Code and Executable Files provided as part of the Work in any application in any form. + + The main points subject to the terms of the License are: + + * Source Code and Executable Files can be used in commercial applications; + * Source Code and Executable Files can be redistributed; and + * Source Code can be modified to create derivative works. + * No claim of suitability, guarantee, or any warranty whatsoever is provided. The software is provided "as-is". + * The Article accompanying the Work may not be distributed or republished without the Author's consent + + This License is entered between You, the individual or other entity reading or otherwise making use of the Work licensed pursuant to this License and the individual or other entity which offers the Work under the terms of this License ("Author"). + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CODE PROJECT OPEN LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HEREIN, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE AUTHOR GRANTS YOU THE RIGHTS CONTAINED HEREIN IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO ACCEPT AND BE BOUND BY THE TERMS OF THIS LICENSE, YOU CANNOT MAKE ANY USE OF THE WORK. + + 1. Definitions. + 1. "Articles" means, collectively, all articles written by Author which describes how the Source Code and Executable Files for the Work may be used by a user. + 2. "Author" means the individual or entity that offers the Work under the terms of this License. + 3. "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works. + 4. "Executable Files" refer to the executables, binary files, configuration and any required data files included in the Work. + 5. "Publisher" means the provider of the website, magazine, CD-ROM, DVD or other medium from or by which the Work is obtained by You. + 6. "Source Code" refers to the collection of source code and configuration files used to create the Executable Files. + 7. "Standard Version" refers to such a Work if it has not been modified, or has been modified in accordance with the consent of the Author, such consent being in the full discretion of the Author. + 8. "Work" refers to the collection of files distributed by the Publisher, including the Source Code, Executable Files, binaries, data files, documentation, whitepapers and the Articles. + 9. "You" is you, an individual or entity wishing to use the Work and exercise your rights under this License. + 2. Fair Use/Fair Use Rights. Nothing in this License is intended to reduce, limit, or restrict any rights arising from fair use, fair dealing, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + 3. License Grant. Subject to the terms and conditions of this License, the Author hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + 1. You may use the standard version of the Source Code or Executable Files in Your own applications. + 2. You may apply bug fixes, portability fixes and other modifications obtained from the Public Domain or from the Author. A Work modified in such a way shall still be considered the standard version and will be subject to this License. + 3. You may otherwise modify Your copy of this Work (excluding the Articles) in any way to create a Derivative Work, provided that You insert a prominent notice in each changed file stating how, when and where You changed that file. + 4. You may distribute the standard version of the Executable Files and Source Code or Derivative Work in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution. + 5. The Articles discussing the Work published in any form by the author may not be distributed or republished without the Author's consent. The author retains copyright to any such Articles. You may use the Executable Files and Source Code pursuant to this License but you may not repost or republish or otherwise distribute or make available the Articles, without the prior written consent of the Author. + Any subroutines or modules supplied by You and linked into the Source Code or Executable Files this Work shall not be considered part of this Work and will not be subject to the terms of this License. + 4. Patent License. Subject to the terms and conditions of this License, each Author 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, import, and otherwise transfer the Work. + 5. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + 1. You agree not to remove any of the original copyright, patent, trademark, and attribution notices and associated disclaimers that may appear in the Source Code or Executable Files. + 2. You agree not to advertise or in any way imply that this Work is a product of Your own. + 3. The name of the Author may not be used to endorse or promote products derived from the Work without the prior written consent of the Author. + 4. You agree not to sell, lease, or rent any part of the Work. This does not restrict you from including the Work or any part of the Work inside a larger software distribution that itself is being sold. The Work by itself, though, cannot be sold, leased or rented. + 5. You may distribute the Executable Files and Source Code only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy of the Executable Files or Source Code You distribute and ensure that anyone receiving such Executable Files and Source Code agrees that the terms of this License apply to such Executable Files and/or Source Code. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute the Executable Files or Source Code with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License. + 6. You agree not to use the Work for illegal, immoral or improper purposes, or on pages containing illegal, immoral or improper material. The Work is subject to applicable export laws. You agree to comply with all such laws and regulations that may apply to the Work after Your receipt of the Work. + 6. Representations, Warranties and Disclaimer. THIS WORK IS PROVIDED "AS IS", "WHERE IS" AND "AS AVAILABLE", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OR GUARANTEES. YOU, THE USER, ASSUME ALL RISK IN ITS USE, INCLUDING COPYRIGHT INFRINGEMENT, PATENT INFRINGEMENT, SUITABILITY, ETC. AUTHOR EXPRESSLY DISCLAIMS ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES OR CONDITIONS, INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT, OR THAT THE WORK (OR ANY PORTION THEREOF) IS CORRECT, USEFUL, BUG-FREE OR FREE OF VIRUSES. YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE WORK OR DERIVATIVE WORKS. + 7. Indemnity. You agree to defend, indemnify and hold harmless the Author and the Publisher from and against any claims, suits, losses, damages, liabilities, costs, and expenses (including reasonable legal or attorneys’ fees) resulting from or relating to any use of the Work by You. + 8. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL THE AUTHOR OR THE PUBLISHER BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK OR OTHERWISE, EVEN IF THE AUTHOR OR THE PUBLISHER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + 9. Termination. + 1. This License and the rights granted hereunder will terminate automatically upon any breach by You of any term of this License. Individuals or entities who have received Derivative Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 6, 7, 8, 9, 10 and 11 will survive any termination of this License. + 2. If You bring a copyright, trademark, patent or any other infringement claim against any contributor over infringements You claim are made by the Work, your License from such contributor to the Work ends automatically. + 3. Subject to the above terms and conditions, this License is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, the Author reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 10. Publisher. The parties hereby confirm that the Publisher shall not, under any circumstances, be responsible for and shall not have any liability in respect of the subject matter of this License. The Publisher makes no warranty whatsoever in connection with the Work and shall not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. The Publisher reserves the right to cease making the Work available to You at any time without notice + 11. Miscellaneous + 1. This License shall be governed by the laws of the location of the head office of the Author or if the Author is an individual, the laws of location of the principal place of residence of the Author. + 2. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this License, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + 3. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + 4. This License constitutes the entire agreement between the parties with respect to the Work licensed herein. There are no understandings, agreements or representations with respect to the Work not specified herein. The Author shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Author and You. json: cpol-1.02.json - yml: cpol-1.02.yml + yaml: cpol-1.02.yml html: cpol-1.02.html - text: cpol-1.02.LICENSE + license: cpol-1.02.LICENSE - license_key: cpp-core-guidelines + category: Permissive spdx_license_key: LicenseRef-scancode-cpp-core-guidelines other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Standard C++ Foundation grants you a worldwide, nonexclusive, royalty-free, + perpetual license to copy, use, modify, and create derivative works from this + project for your personal or internal business use only. The above copyright + notice and this permission notice shall be included in all copies or + substantial portions of the project. 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 project. + + Standard C++ Foundation reserves the right to accept contributions to the + project at its discretion. + + By contributing material to this project, you grant Standard C++ Foundation, + and those who receive the material directly or indirectly from Standard C++ + Foundation, a perpetual, worldwide, non-exclusive, royalty-free, irrevocable, + transferrable license to reproduce, prepare derivative works of, publicly + display, publicly perform, and distribute your contributed material and such + derivative works, and to sublicense any or all of the foregoing rights to third + parties for commercial or non-commercial use. You also grant Standard C++ + Foundation, and those who receive the material directly or indirectly from + Standard C++ Foundation, a perpetual, worldwide, non-exclusive, royalty-free, + irrevocable license under your patent claims that directly read on your + contributed material to make, have made, use, offer to sell, sell and import + or otherwise dispose of the material. You warrant that your material is your + original work, or that you have the right to grant the above licenses. + + THE PROJECT 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 PROJECT OR THE USE OR OTHER DEALINGS IN THE + PROJECT. + + If you believe that anything in the project infringes your copyright, please + contact us at admin@isocpp.org with your contact information and a detailed + description of your intellectual property, including a specific URL where you + believe your intellectual property is being infringed. json: cpp-core-guidelines.json - yml: cpp-core-guidelines.yml + yaml: cpp-core-guidelines.yml html: cpp-core-guidelines.html - text: cpp-core-guidelines.LICENSE + license: cpp-core-guidelines.LICENSE - license_key: crapl-0.1 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-crapl-0.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: " THE CRAPL v0 BETA 1\n\n\n0. Information about the CRAPL\n\n\ + If you have questions or concerns about the CRAPL, or you need more\ninformation about this\ + \ license, please contact:\n\n Matthew Might\n http://matt.might.net/\n\n\nI. Preamble\n\ + \nScience thrives on openness.\n\nIn modern science, it is often infeasible to replicate\ + \ claims without\naccess to the software underlying those claims.\n\nLet's all be honest:\ + \ when scientists write code, aesthetics and\nsoftware engineering principles take a back\ + \ seat to having running,\nworking code before a deadline.\n\nSo, let's release the ugly.\ + \ And, let's be proud of that.\n\n\nII. Definitions\n\n1. \"This License\" refers to version\ + \ 0 beta 1 of the Community\n Research and Academic Programming License (the CRAPL).\ + \ \n\n2. \"The Program\" refers to the medley of source code, shell scripts,\n executables,\ + \ objects, libraries and build files supplied to You,\n or these files as modified by\ + \ You.\n\n [Any appearance of design in the Program is purely coincidental and\n should\ + \ not in any way be mistaken for evidence of thoughtful\n software construction.]\n\n\ + 3. \"You\" refers to the person or persons brave and daft enough to use\n the Program.\n\ + \n4. \"The Documentation\" refers to the Program.\n\n5. \"The Author\" probably refers to\ + \ the caffeine-addled graduate\n student that got the Program to work moments before\ + \ a submission\n deadline.\n\n\nIII. Terms\n\n1. By reading this sentence, You have agreed\ + \ to the terms and\n conditions of this License.\n \n2. If the Program shows any evidence\ + \ of having been properly tested\n or verified, You will disregard this evidence.\n\n\ + 3. You agree to hold the Author free from shame, embarrassment or\n ridicule for any hacks,\ + \ kludges or leaps of faith found within the\n Program.\n\n4. You recognize that any request\ + \ for support for the Program will be\n discarded with extreme prejudice.\n\n5. The Author\ + \ reserves all rights to the Program, except for any\n rights granted under any additional\ + \ licenses attached to the\n Program.\n\n\nIV. Permissions\n\n1. You are permitted to\ + \ use the Program to validate published\n scientific claims.\n\n2. You are permitted to\ + \ use the Program to validate scientific claims\n submitted for peer review, under the\ + \ condition that You keep\n modifications to the Program confidential until those claims\ + \ have\n been published.\n \n3. You are permitted to use and/or modify the Program for\ + \ the\n validation of novel scientific claims if You make a good-faith\n attempt to\ + \ notify the Author of Your work and Your claims prior to\n submission for publication.\n\ + \ \n4. If You publicly release any claims or data that were supported or\n generated by\ + \ the Program or a modification thereof, in whole or in\n part, You will release any inputs\ + \ supplied to the Program and any\n modifications You made to the Progam. This License\ + \ will be in\n effect for the modified program.\n\n\nV. Disclaimer of Warranty\n\nTHERE\ + \ IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN\ + \ OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM\ + \ \"AS IS\" WITHOUT\nWARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT\n\ + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE.\ + \ THE ENTIRE RISK AS TO THE QUALITY AND\nPERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD\ + \ THE PROGRAM PROVE\nDEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR\n\ + CORRECTION.\n\n\nVI. Limitation of Liability\n\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE\ + \ LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES\ + \ AND/OR\nCONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING\ + \ ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES\nARISING OUT OF THE USE OR INABILITY\ + \ TO USE THE PROGRAM (INCLUDING BUT\nNOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED\ + \ INACCURATE OR\nLOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM\n\ + TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER\nPARTY HAS BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES." json: crapl-0.1.json - yml: crapl-0.1.yml + yaml: crapl-0.1.yml html: crapl-0.1.html - text: crapl-0.1.LICENSE + license: crapl-0.1.LICENSE - license_key: crashlytics-agreement-2018 + category: Commercial spdx_license_key: LicenseRef-scancode-crashlytics-agreement-2018 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + Last Updated: July 23, 2018 + + This Crashlytics Agreement ("Agreement") is entered into by Crashlytics (defined as either: (a) Google Ireland Limited, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Your principal place of business (for entities) or place of residence (for individuals) is in any country within Europe, the Middle East, or Africa ("EMEA"), (b) Google Asia Pacific Pte. Ltd., with offices at 8 Marina View Asia Square 1 #30-01 Singapore 018960, if Your principal place of business (for entities) or place of residence (for individuals) is in any country within the Asia Pacific region ("APAC"), or (c) Google LLC, with offices at 1600 Amphitheatre Parkway, Mountain View, California 94043, if Your principal place of business (for entities) or place of residence (for individuals) is in any country in the world other than those in EMEA and APAC) and you ("Developer" or "You") and governs your access and use of www.crashlytics.com and the Crashlytics crash reporting and beta testing solution (collectively, the "Services" as more fully described below). If You are accessing or using the Services on behalf of a company or other legal entity, You represent and warrant that You are an authorized representative of that entity and have the authority to bind such entity to this Agreement, in which case the terms "Developer" and "You" shall refer to such entity. You and Crashlytics hereby agree as follows: + + YOUR RIGHT TO ACCESS AND USE THE SERVICES IS EXPRESSLY CONDITIONED ON ACCEPTANCE OF THIS AGREEMENT. BY ACCESSING OR USING THE SERVICES, YOU AGREE TO BE BOUND BY THIS AGREEMENT. IF YOU ARE ACCESSING OR USING THE SERVICES ON BEHALF OF YOUR EMPLOYER OR ANOTHER ENTITY ("ENTITY"), YOU AGREE TO PROVIDE CRASHLYTICS WITH THE NAME OF THE ENTITY AND OBTAIN CRASHLYTICS'S APPROVAL TO USE THE SOFTWARE ON YOUR BEHALF AND BEHALF OF THE ENTITY AND YOU AGREE TO REMAIN RESPONSIBLE AND LIABLE FOR YOUR AND SUCH ENTITY'S COMPLIANCE WITH THIS AGREEMENT. FURTHER, YOU REPRESENT AND WARRANT THAT: (I) YOU ARE THE AUTHORIZED AGENT OF THE APPLICABLE ENTITY AND HAVE THE LEGAL AUTHORITY TO ENTER INTO THE AGREEMENT ON BEHALF OF YOURSELF AND THE ENTITY, AND (II) YOU HAVE OBTAINED, ON BEHALF OF YOURSELF AND THE ENTITY (IF APPLICABLE), ALL NECESSARY RIGHTS, WAIVERS, CONSENTS AND PERMISSIONS NECESSARY TO COLLECT, USE, STORE, AND SHARE USER INFORMATION IN CONNECTION WITH THE SOFTWARE. + + Effective November 20, 2015, this Agreement does not cover www.answers.io or the related "Answers" service, which is a software development kit and associated services focused on analysis and computation of the behavior and usage of mobile applications, including app analytics, event tracking, and conversion tracking. If you use Answers, then please consult the Answers Agreement, which is the contract governing your use of Answers. If you have questions regarding this Agreement, please contact Crashlytics at support@crashlytics.com. + + SECTION 1. OVERVIEW OF THE SERVICES + + 1.1 The Services provide a reporting solution for developers of mobile applications, including publicly released mobile applications ("Application(s)"), and facilitates Developers' ability to invite certain designated users ("Beta Tester(s)") to test mobile applications that have not yet been publicly released ("Beta Application(s)"). The Services provide information to Developers about the functioning of Applications and Beta Applications they own or manage, including, but not limited to, information about how and under what circumstances such applications crashed and how many users interact with such applications and how they do so. + + SECTION 2. SPECIFIC TERMS FOR DEVELOPERS + + 2.1 Service and Access Credentials. Developer will provide reasonable cooperation, assistance, information and access to Crashlytics as may be necessary to initiate Developer's use of the Services. During the Term, and subject to Developer's compliance with all terms and conditions of this Agreement, Crashlytics will provide Developer with access to the Services. As part of the implementation process, Developer will identify a user name and password that will be used to set up Developer's account. Developer will not share its user name or password with any third party and will be responsible and liable for the acts or omissions of any person who accesses the Services using passwords or access procedures provided to Developer. Crashlytics reserves the right to refuse registration of, or to suspend or cancel, login IDs used by Developer to access the Services for any reason, including if Developer violates the terms and conditions set forth in this Agreement. + + 2.2 License to Developer. During the Term, and subject to all terms and conditions of this Agreement (as a condition to the grants below), Crashlytics grants Developer and Developer accepts a nonexclusive, nontransferable right and license (without right to sublicense) to: (a) access and use the Services, solely for the purpose of accessing and downloading the Software (defined below) and assessing the performance of its own Applications and Beta Applications for Developer's internal business purposes; and (b) download, install and use a reasonable number of copies of the Crashlytics software development kit (the "SDK") and any tools provided as part of the SDK, including, but not limited to, any plugins (collectively, the "Software") solely for the integration of the Software into an Application or Beta Application. Developer may use the Services and the Software solely for the purpose: (i) enabling Developer's users, including Beta Testers, to access and use Applications and Beta Applications, (ii) obtaining information regarding the installation, use of and engagement with, and the functionality of Developer's Applications and Beta Applications, including reporting on errors or bugs (collectively, "Performance Data"), (iii) improving the functionality of Developer's Applications, Beta Applications and related products and services, and/or (iv) communicating with users, including Beta Testers, about Developer's Applications and Beta Applications. Developer's access and use of the Services shall also comply with all other conditions set forth in all documentation, instructions, end user guides and other documents regarding the Services and Software, in each case that is provided or made available by Crashlytics to Developer in electronic or other form (collectively, "Documentation"). Developer shall comply with all: (a) applicable laws, rules, and regulations, and (b) any applicable third party terms, including any third party terms applicable to Developer's development and distribution of any Application or Beta Application operating on the Android or iOS mobile operating systems, or any other operating system upon which the Application or Beta Application is made available and upon which Crashlytics makes the Services available to Developer. + + 2.3 Restrictions. Developer shall not directly or indirectly, or allow any third-party to: (a) use the Services or any of Crashlytics's Confidential Information (as defined below) to create any service, software, or documentation that is the same as, substantially similar to or has similar functionality as the Services, (b) disassemble, decompile, reverse engineer, decipher, translate or use any other means to attempt to discover any source code, algorithms, or trade secrets underlying the Services or Background Materials (defined below), except and only to the extent these restrictions are expressly prohibited by applicable statutory law, (c) encumber, sublicense, transfer, distribute, rent, lease, timeshare, or use any Crashlytics Properties (as defined below) in any service bureau, rental or managed services arrangement or permit other individuals or entities to create Internet "links" to the Crashlytics Properties or "frame" or "mirror" the Crashlytics Properties on any other server, or wireless or Internet-based device, (d) adapt, combine, create derivative works of, or otherwise modify any Crashlytics Properties, (e) use or allow the transmission, transfer, export, reexport, or other transfer of any product, technology, or information it obtains or learns in connection with Developer's use of the Services in violation of any export control or other laws and regulations of the United States or any other relevant jurisdiction, (f) remove or alter any proprietary notices or labels on or in any Crashlytics Properties; (g) use any Crashlytics Properties in connection with the development or transmission of any virus, worms or malicious code, (h) use any Crashlytics Properties to infringe the rights of Crashlytics or any third party, or in any way that does not comply with all applicable laws, or (i) use any Crashlytics Properties (including to create any Application) in any way that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of Crashlytics or any third party, including any mobile communications carrier. + + 2.4 Developer Feedback. From time to time, Crashlytics may solicit from Developer or Developer may make, in its sole discretion, suggestions for changes, modifications or improvements to the Crashlytics Properties (as defined below) or any other feedback related to Crashlytics or the Crashlytics Properties (collectively, "Developer Feedback"). All Developer Feedback shall be solely owned by Crashlytics (including all intellectual property rights therein and thereto) and shall also be Crashlytics's confidential information. Developer hereby assigns all of its right, title and interest in and to any Developer Feedback to Crashlytics and acknowledges that Crashlytics has the unrestricted right to use and exploit such Developer Feedback in any manner, without attribution, and without any obligations or compensation to Developer. + + 2.5 Developer Data. Developer hereby grants Crashlytics a nonexclusive, license fee free and royalty free right and license to access, copy, distribute, process and use all information, data and other content provided by Developer or received by Crashlytics in connection with Developer's authorized use of the Services, including, without limitation information provided through any Application or Beta Application that Developer makes available for testing through the Services (collectively, "Developer Data"), solely for the purpose of providing, developing, and maintaining the Services, along with any related customer or technical support, and as otherwise expressly permitted in this Agreement. Developer agrees that: (a) the Services depend on the availability of the Developer Data, and (b) Crashlytics will not assume any responsibility or liability for, or undertake to verify, the legality, accuracy or completeness of the Developer Data. Crashlytics shall have no obligation to store any Developer Data or Results (as defined below). + + 2.6 Access by Beta Testers; EULA; End Users; Compliance. Developer shall provide to Crashlytics the contact information of any user of Developer's application(s) whom Developer intends to invite to become a Beta Tester. Developer is solely responsible for determining which users will receive an invitation to become a Beta Tester, and for ensuring the accuracy of any user contact information provided to Crashlytics. Developer may provide Beta Testers with its own EULA for a Beta Application that will be accessed by Beta Testers ("Developer EULA"); provided that the Developer EULA provides terms and conditions consistent with this Agreement and, with respect to Crashlytics, no less protective than those terms and conditions set forth in the standard EULA provided in Appendix A ("Standard EULA"). If Developer does not provide a separate Developer EULA to Beta Testers in connection with Developer's Beta Application, then Developer acknowledges and agrees that such Beta Testers, by accessing the Beta Application through the Services, will be made subject to the terms and conditions of the Standard EULA between Developer and such Beta Testers. Developer acknowledges and agrees that Crashlytics provides the Standard EULA by way of convenience only, and does not represent or warrant that the Standard EULA will be enforceable under, or in compliance with, all applicable laws, rules, regulations, or otherwise. Developer acknowledges and agrees that the EULA applicable to Developer's Beta Application shall be between Developer and any Beta Tester, and Crashlytics shall not be responsible for, and shall not have any liability whatsoever for, such EULA, any application tested by a Beta Tester, or for any breach by Developer or any Beta Tester of the terms and conditions of such EULA. The Services allow the Developer to collect information relating to performance of Developer's applications, including, without limitation, device state information, unique device identifiers, information relating to the physical location of a device, and information about how the application was used. Developer may turn on features of the Services to allow collection of other information via the Services, including some personally identifiable information (e.g., a user's email address), which allows Developers to communicate with users about the engagement with and functionality of their applications and to invite them to become Beta Testers. Developer represents and warrants that Developer is collecting information via the Services solely to obtain information about the user engagement with and functionality of Developer's applications, and to communicate with users about such engagement and functionality. Developer agrees that it will not enable collection of personally identifiable information via the Services unless it is necessary to communicate with users about the applications or Developer wishes to invite users to be Beta Testers and the user has provided affirmative consent to the collection and use of such information. Subject to and without limiting the foregoing, Developer agrees it will not enable collection or use of credit card information, Social Security numbers, driver's license numbers, dates of birth or physical addresses via the Services. Developer further agrees it will not invite any user to be a Beta Tester that is under the age of consent as defined under any applicable laws, rules, or regulations relating to data collection, including without limitation the Children's Online Privacy Protection Act of 1998 ("COPPA"), the Regulation (EU) 2016/679 of the European Parliament and of the Council of 27 April 2016 on the protection of natural persons with regard to the processing of personal data and on the free movement of such data, and repealing Directive 95/46/EC (General Data Protection Regulation or "GDPR"), and all other relevant laws and regulations. At all times during the term of this Agreement, Developer shall maintain a privacy policy: (a) that is readily accessible to users from its website or within its online service (as applicable), (b) that fully and accurately discloses to its users what information is collected about its users, and (c) that states that such information is disclosed to and processed by third party providers like Crashlytics in the manner contemplated by the Services, including, without limitation, disclosure of the use of technology to track users' activity and otherwise collect information from users. For Developer's users in the European Union, Developer shall provide such users with clear notice of, and obtain such users' consent to, the transfer, storage, and use of their information in the United States and any other country where Crashlytics, or any third party service providers acting on its behalf, operates, and shall further notify such users that the privacy and data protection laws in some of these countries may vary from the laws in the country where such users live. Developer shall at all times comply with all applicable laws, rules and regulations relating to data collection, privacy and security, including without limitation, COPPA, GDPR, and all other such laws and regulations. Developer will obtain and maintain any required consents necessary and will comply with any other applicable requirements to permit the processing of Developer Data under this Agreement. + + 2.7 Developer Systems. Developer is responsible for providing: (a) all equipment, subscriptions and credentials necessary for Crashlytics to receive the Developer Data, and (b) all modems, servers, devices, storage, software (other than Software), databases, network and communications equipment and ancillary services needed to connect to, access, or otherwise use the Services at its facility (collectively, "Developer Systems"). Developer shall ensure that Developer Systems are compatible with the Services and comply with all configurations and specifications described in the Documentation. + + 2.8 Limitations. Crashlytics will not be responsible or liable for any failures in the Services or any other problems which are related to: (a) the Developer Data or Developer Systems, or (b) any satellite, telecommunications, network or other equipment or service outside of Crashlytics's facilities or control. + + 2.9 Confidentiality. "Confidential Information" means any information disclosed by one party ("Discloser") to the other party ("Recipient") that is marked or otherwise identified as "confidential" or "proprietary," or by its nature or the circumstances of disclosure should reasonably be understood to be confidential, including without limitation, all financial, business or technical information disclosed in relation to this Agreement. Except for the specific rights granted by this Agreement, the Recipient may not use, copy or disclose any Confidential Information of the Discloser without Discloser's prior written consent, and shall use no less than reasonable care to safeguard Discloser's Confidential Information, including ensuring that Recipient's employees, contractors and agents ("Representatives")with access to Discloser's Confidential Information have a need to know such Confidential Information for the purposes of this Agreement and are bound by confidentiality obligations no less protective of the parties as those set forth herein. The foregoing obligations shall not apply to any Confidential Information that Recipient can demonstrate is: (a) already known by it without restriction, (b) rightfully furnished to it without restriction by a third party not in breach of any obligation to Discloser, (c) generally available to the public without breach of this Agreement or (d) independently developed by it without reference to or use of any of Discloser's Confidential Information and without any violation of any obligation of this Agreement. Each party shall be responsible for any breach of confidentiality by its Representatives, as applicable. Promptly upon Discloser's request at any time, Recipient shall, or in the case of Developer Data shall use reasonable efforts to, return all of Discloser's tangible Confidential Information, permanently erase all Confidential Information from any storage media and destroy all information, records, copies, summaries, analyses and materials developed therefrom. Nothing herein shall prevent a party from disclosing any of the other's Confidential Information as necessary pursuant to any court order or any legal, regulatory, law enforcement or similar requirement or investigation; provided, however, prior to any such disclosure, Recipient shall use reasonable efforts to: (i) promptly notify Discloser in writing of such requirement to disclose where permitted by law, and (ii) cooperate with Discloser in protecting against or minimizing any such disclosure and/or obtaining a protective order. + + 2.10 Proprietary Rights. As used in this Agreement: "Background Materials" means all ideas, concepts, inventions, systems, platforms, software (including all Software), interfaces, tools, utilities, templates, forms, Report Formats, techniques, methods, processes, algorithms, knowhow, trade secrets and other technologies and information that are used by Crashlytics in providing the Services and Results (including any correction, improvement, derivative work, extension or other modification to the Services made, created, conceived or developed by or for Crashlytics, including at Developer's request or as a result of feedback provided by Developer to Crashlytics); "Reports" means the reports, charts, graphs and other presentation in which the Results are presented to Developer; "Report Formats" means the formatting, look and feel of the Reports; and "Results" means the work products resulting from the Services that are delivered to Developer by Crashlytics through the Services, and which are based on the Developer Data. For the sake of clarity, Results shall expressly exclude all Background Materials. Developer shall own all right, title and interest (including all intellectual property and other proprietary rights) in and to: (a) feedback, suggestions, ideas or other materials and information provided by Beta Testers with respect to any Beta Application ("User Feedback"), (b) the Results and (c) Developer Data. Developer acknowledges and agrees that the Results will be presented to it in a Report, the Report Format of which is Confidential Information and proprietary to Crashlytics. Developer may make a reasonable number of copies of the Reports only for its internal purposes in using the Results. + + 2.11 General Learning; Aggregate Data. Crashlytics reserves the right to disclose aggregate information of Services usage, engagement, and performance, and to reuse all general knowledge, experience, knowhow, works and technologies (including ideas, concepts, processes and techniques) related to the Results or acquired during provision of the Services (including without limitation, that which it could have acquired performing the same or similar services for another customer). + + 2.12 Reservation of Rights. Except for the limited rights and licenses expressly granted hereunder, no other license is granted, no other use is permitted and Crashlytics (and its licensors) shall retain all right, title, and interest (including all intellectual property and proprietary rights embodied therein) in and to the Services, Software, Documentation, Background Materials, aggregate data, and analyses (collectively, "Crashlytics Properties"). + + SECTION 3. SPECIFIC TERMS FOR BETA TESTERS + + 3.1 License; Restrictions. In order to access and use the Services to test any Beta Application, you may need to download or install Software (defined in Section 2 above), web clips, certificates, or other materials provided by Crashlytics ("Crashlytics Material"). Subject to your compliance with this Agreement, Crashlytics grants you a limited, nonexclusive, non-assignable, non-sublicensable license to access, download, and use any Crashlytics Material made available to you by Crashlytics, solely to access and use the Services. Crashlytics reserves all right, title, and interest in the Crashlytics Material not expressly granted to you, including but not limited to intellectual property rights. To the maximum extent permitted by law, you may not do any of the following with respect to any Crashlytics Material you receive or otherwise have access to: (a) modify, reverse engineer, decompile, or disassemble any Crashlytics Material, (b) rent, lease, loan, sell, sublicense, distribute, transmit, or otherwise transfer any Crashlytics Material, (c) make any copy of or otherwise reproduce any Crashlytics Material, (d) remove, alter, or obscure any copyright, trademark or other proprietary rights notice on or in any Crashlytics Material, (e) work around any technical limitations in any Crashlytics Material, or (f) use any Crashlytics Material for purposes for which it is not designed. + + 3.2 No Responsibility for Beta Applications. If you have any complaints or disputes relating to your use of any Beta Application, you agree to look solely to the applicable Developer of such Beta Application and not Crashlytics. You acknowledge and agree that the applicable Developer, not Crashlytics, is fully responsible for any Beta Application, and the processing of information about your use of any Beta Application. If you want to terminate this Agreement, you must stop using the Services and delete from your device all Crashlytics Material. + + 3.3 Consent to Data Processing and Transfer. Irrespective of which country you live in, you authorize Crashlytics to use your information in, and as a result to transfer it to and store it in, the United States and any other country where Crashlytics operates. Privacy and data protection laws in some of these countries may vary from the laws in the country where you live. + + 3.4 No Compensation. By becoming a Beta Tester, you are acting as a volunteer. You will bear your own costs, including any mobile carrier and data costs that you incur in connection with your use of the Beta Application or any User Feedback (defined above) that you submit. + + 3.5 Standard EULA for Beta Applications. You agree to comply with the terms of the Standard EULA in connection with your access and use of any Beta Application of a Developer, unless you agree to comply with a separate license agreement that the Developer provides in connection with such Beta Application, in which case the terms of that separate license agreement will govern. + + SECTION 4. WARRANTY, LIABILITY & INDEMNITY + + 4.1 Warranties. Crashlytics represents and warrants that it has full right, power, and authority to enter into this Agreement and to perform its obligations and duties under this Agreement, and that the performance of such obligations and duties does not conflict with or result in a breach of any other agreement of Crashlytics, or any judgment, order, or decree by which such party is bound. Developer's sole and exclusive remedy for any and all breaches of this provision is the remedy set forth in Section 4.4. Developer represents and warrants that it owns all right, title and interest, or possesses sufficient license rights, in and to the Developer Data as may be necessary to grant the rights and licenses, and provide the representations, and for Crashlytics to provide the Services set forth herein. Developer bears all responsibility and liability for the legality, accuracy and completeness of the Developer Data and Crashlytics's access, possession, distribution, and use thereof, as permitted herein. + + 4.2 Disclaimers. THE CRASHLYTICS SERVICES, CRASHLYTICS PROPERTIES AND RESULTS ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. WITHOUT LIMITING THE FOREGOING, CRASHLYTICS AND ITS PARENTS, SUBSIDIARIES, AFFILIATES, RELATED COMPANIES, OFFICERS, DIRECTORS, EMPLOYEES, AGENTS, REPRESENTATIVES, PARTNERS AND LICENSORS (COLLECTIVELY, THE "CRASHLYTICS ENTITIES") MAKE NO WARRANTY: (A) THAT THE SERVICES OR RESULTS WILL MEET YOUR REQUIREMENTS OR BE UNINTERRUPTED, ERROR FREE OR BUGFREE, (B) REGARDING THE RELIABILITY, TIMELINESS, OR PERFORMANCE OF THE SERVICES, OR (C) THAT ANY ERRORS IN THE SERVICES CAN OR WILL BE CORRECTED. THE CRASHLYTICS ENTITIES HEREBY DISCLAIM (FOR THEMSELVES AND THEIR SUPPLIERS) ALL WARRANTIES, WHETHER EXPRESS OR IMPLIED, ORAL OR WRITTEN, INCLUDING WITHOUT LIMITATION, ALL IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTABILITY, TITLE OR FITNESS FOR ANY PARTICULAR PURPOSE AND ALL WARRANTIES ARISING FROM ANY COURSE OF DEALING, COURSE OF PERFORMANCE OR USAGE OF TRADE. + + 4.3 Claims Against Crashlytics. Developer will defend Crashlytics from all third party claims, whether actual or alleged (collectively, "Crashlytics Claims"), and will indemnify Crashlytics and hold Crashlytics harmless from any and all losses, liabilities, damages, costs, and expenses (including reasonable attorney's fees) resulting from such Crashlytics Claims that arise out of Developer's: (a) use of the Services, (b) actual or alleged infringement or misappropriation of the rights of any third party, including, without limitation, any intellectual property rights, privacy rights or publicity rights, and (c) breach of any representations and warranties set forth in the Agreement. Developer is solely responsible for defending any such Crashlytics Claims, subject to Crashlytics's right to participate with counsel of its own choosing, and for payment of all judgments, settlements, damages, losses, liabilities, costs, and expenses, including reasonable attorneys' fees, resulting from such Claims against Crashlytics, provided that Developer will not agree to any settlement related to any such Crashlytics Claims without Crashlytics's prior express written consent regardless of whether or not such settlement releases Crashlytics from any obligation or liability. If Developer uses the Services in an official capacity as an employee or representative of a United States federal, state, or local government entity and is legally unable to accept this indemnification provision, then it does not apply to such entity, but only to the extent required by applicable law. + + 4.4 Claims Against Developer. Crashlytics will defend the Developer from all third party claims, actions, suits, or proceedings, whether actual or alleged (collectively, "Developer Claims"), and will indemnify Developer and hold Developer harmless from any and all losses, liabilities, damages, costs, and expenses (including reasonable attorney's fees) resulting from such Developer Claims, that arise out of an allegation that the Services, when used as expressly permitted by this Agreement, infringes the intellectual property rights of such third party. Notwithstanding the foregoing, Crashlytics will have no obligation under this Section 4.4 or otherwise with respect to any infringement claim based upon: (a) any use of the Services not expressly permitted under this Agreement; (b) any use of the Services in combination with products, equipment, software, or data not made available by Crashlytics if such infringement would have been avoided without the combination with such other products, equipment, software, or data; (c) any modification of the Services by any person other than Crashlytics or its authorized agents or subcontractors; or (d) any claim not clearly based on the Services itself. This Section 4.4 states Crashlytics's entire liability and Developer's sole and exclusive remedy for all third party claims. + + 4.5 Procedure. The foregoing obligations are conditioned on the party seeking indemnification: (a) promptly notifying the other party in writing of such claim; (b) giving the other party sole control of the defense thereof and any related settlement negotiations; and (c) cooperating and, at the other party's request and expense, assisting in such defense. Neither party may make any public announcement of any claim, defense or settlement without the other party's prior written approval. The indemnifying party may not settle, compromise or resolve a claim without the consent of the indemnified party, if such settlement, compromise or resolution (i) causes or requires an admission or finding of guilt against the indemnified party, (i) imposes any monetary damages against the indemnified party, or (iii) does not fully release the indemnified party from liability with respect to the claim. + + 4.6 Limitation of Liability. + + (a) IN NO EVENT WILL EITHER PARTY BE LIABLE TO THE OTHER FOR ANY INDIRECT, SPECIAL, INCIDENTAL, EXEMPLARY, PUNITIVE, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT, OR FOR ANY DAMAGES ASSOCIATED WITH ANY LOSS OF USE, BUSINESS, PROFITS, OR GOODWILL OR FOR INTERRUPTION, LOSS OR CORRUPTION OF DATA OR NETWORKS. + + (b) IN NO EVENT WILL EITHER PARTY'S AGGREGATE LIABILITY FOR ANY AND ALL CLAIMS UNDER THIS AGREEMENT EXCEED FIFTY ($50.00) DOLLARS (USD). + + (c) THE FOREGOING LIMITATIONS SHALL NOT APPLY TO BREACHES OF CONFIDENTIALITY OBLIGATIONS OR FOR MISAPPROPRIATION OR INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS, AND SHALL APPLY NOTWITHSTANDING THE FAILURE OF ANY REMEDY PROVIDED HEREIN. + + THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS SHALL APPLY TO ANY AND ALL CLAIMS, REGARDLESS OF WHETHER SUCH LIABILITY ARISES FROM ANY CLAIM BASED UPON CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, OR OTHERWISE, AND WHETHER OR NOT THE PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGE. Some states do not allow the exclusion or limitation of incidental or consequential damages, so the above limitation or exclusion may not apply to You. INSOFAR AS APPLICABLE LAW PROHIBITS ANY LIMITATION ON LIABILITY HEREIN, THE PARTIES AGREE THAT SUCH LIMITATION WILL BE AUTOMATICALLY MODIFIED, BUT ONLY TO THE EXTENT SO AS TO MAKE THE LIMITATION COMPLIANT WITH APPLICABLE LAW. + + SECTION 5. TERM AND TERMINATION + + 5.1 Term. The term of this Agreement will begin on the date you first agree to this Agreement and are approved to register for the Services, and continue until terminated as set forth herein ("Term"). Your use of the Services may be terminated by Crashlytics or you at any time, for any reason, effective immediately upon notice provided by one party to the other party as set forth herein. + + 5.2 Effects of Termination. Upon any expiration or termination of this Agreement, all rights, obligations and licenses of the parties shall cease, except that: (a) all obligations that accrued prior to the effective date of termination and all remedies for breach of this Agreement shall survive, (b) you must discontinue accessing and using the Services and delete all Software, Crashlytics Properties, and Crashlytics Material, and (c) the provisions in Section 2 titled Restrictions, Developer Feedback, Confidentiality, Proprietary Rights, General Learning; Aggregate Data, the provisions of Section 4 and the provisions in this Section 5 shall survive. Crashlytics has no obligation to store, delete or return any User Feedback, Performance Data, Developer Data, or Results. + SECTION 6. MISCELLANEOUS + + 6.1 Entire Agreement. This Agreement (which includes any order form completed by Developer) constitutes the entire agreement, and supersede all prior negotiations, understandings, or agreements (oral or written), between the parties about the subject matter of this Agreement. + + 6.2 Waivers, Consents and Amendments. No waiver, consent, or modification of this Agreement shall bind the Crashlytics Entities unless in writing and signed by Crashlytics. Crashlytics may amend this Agreement from time to time. If we make a change to this Agreement that, in our sole discretion, is material, we will notify you at the email address that you provided upon signing up to access the Services or upon signing up to access the Crashlytics Fabric services, at crashlytics.com, or otherwise through the Services. If you do not agree to the modified terms, you shall notify Crashlytics in writing within thirty (30) days, after which your right to access and use the Services shall immediately terminate and the Crashlytics Entities shall have no further responsibility or liability to you. The failure of either party to enforce its rights under this Agreement at any time for any period will not be construed as a waiver of such rights. + + 6.3 Severability. If any provision of this Agreement is determined to be illegal or unenforceable, that provision will be limited or eliminated to the minimum extent necessary so that this Agreement will otherwise remain in full force and effect and enforceable. + + 6.4 Governing Law and Disputes. This Agreement shall be governed by and construed in accordance with the laws of the State of California, without regard to its conflicts of law provisions. + + (a) Except as set forth in Section 6.4(b) below, all claims arising out of or relating to this Agreement or the Services ("Disputes") will be governed by California law, excluding California's conflict of laws rules, and all Disputes will be litigated exclusively in the federal or state courts of Santa Clara County, California, USA, and You and Crashlytics consent to personal jurisdiction in those courts. + + (b) If Your principal place of business (for entities) or place of residence (for individuals) is in any country within APAC (other than Australia, Japan, New Zealand or Singapore) or Latin America, this Section 6.4(b) will apply instead of Section 6.4(a) above. ALL DISPUTES (AS DEFINED ABOVE) WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING CALIFORNIA'S CONFLICT OF LAWS RULES.The parties will try in good faith to settle any Dispute within 30 days after the Dispute arises. If the Dispute is not resolved within 30 days, it must be resolved by arbitration by the American Arbitration Association's International Centre for Dispute Resolution in accordance with its Expedited Commercial Rules in force as of the date of this Agreement ("Rules"). The parties will mutually select one arbitrator. The arbitration will be conducted in English in Santa Clara County, California, USA. Either party may apply to any competent court for injunctive relief necessary to protect its rights pending resolution of the arbitration. The arbitrator may order equitable or injunctive relief consistent with the remedies and limitations in this Agreement. Subject to the confidentiality requirements in of this Agreement, either party may petition any competent court to issue any order necessary to protect that party's rights or property; this petition will not be considered a violation or waiver of this governing law and arbitration section and will not affect the arbitrator's powers, including the power to review the judicial decision. The parties stipulate that the courts of Santa Clara County, California, USA, are competent to grant any order under this subsection. The arbitral award will be final and binding on the parties and its execution may be presented in any competent court, including any court with jurisdiction over either party or any of its property. Any arbitration proceeding conducted in accordance with this section will be considered Confidential Information under this Agreement's confidentiality section, including: (i) the existence of, (ii) any information disclosed during, and (iii) any oral communications or documents related to the arbitration proceedings. The parties may also disclose the information described in this section to a competent court as may be necessary to file any order under this section or execute any arbitral decision, but the parties must request that those judicial proceedings be conducted in camera (in private). The parties will pay the arbitrator's fees, the arbitrator's appointed experts' fees and expenses, and the arbitration center's administrative expenses in accordance with the Rules. In its final decision, the arbitrator will determine the non-prevailing party's obligation to reimburse the amount paid in advance by the prevailing party for these fees. Each party will bear its own lawyers' and experts' fees and expenses, regardless of the arbitrator's final decision. + + 6.5 Force Majeure. In the event that either party is prevented from performing, or is unable to perform, any of its obligations under this Agreement (except payment obligations) due to any cause beyond its reasonable control, the affected party shall give written notice thereof to the other party and its performance shall be extended for the period of delay or inability to perform due to such occurrence. + + 6.6 Notices. Any notice or communication hereunder shall be in writing and either personally delivered or sent via confirmed facsimile, confirmed electronic transmission, recognized express delivery courier or certified or registered mail, prepaid and return receipt requested, addressed to the other party, which, in the case of Developer, shall be the email address provided to Crashlytics upon signing up for the Services or upon signing up to access the Crashlytics Fabric services, and, in the case of Crashlytics, shall be Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA, with a copy to Legal Department. All notices shall be in English, and deemed to have been received when they are hand delivered, or five business days after their mailing, or upon confirmed electronic transmission or confirmed facsimile transmission. + + 6.7 Assignment. This Agreement and the rights and obligations hereunder may not be assigned, transferred or delegated, in whole or in part, whether voluntarily or by operation of law, contract, merger (whether Developer is the surviving or disappearing entity), stock or asset sale, consolidation, dissolution, through government action or otherwise, by Developer without Crashlytics's prior written consent. Any assignment or transfer in violation of the foregoing shall automatically be null and void, and Crashlytics may immediately terminate this Agreement upon such an attempt. This Agreement shall be binding upon, and inure to the benefit of, any permitted successors, representatives, and permitted assigns of the parties hereto. + + 6.8 Independent Contractors. The parties shall be independent contractors under this Agreement, and nothing herein will constitute either party as the employer, employee, agent, or representative of the other party, or both parties as joint venturers or partners for any purpose. + Appendix A - Standard EULA + + You, the Beta Tester, and the Developer ("Licensor") of the Beta Application you access and use via the Services agree to comply with the terms of this EULA in connection with your access and use of such Beta Application (the "Application"). + + Relationship between the Parties. Licensor and the Beta Tester acknowledge that this Standard EULA is entered into by and between Licensor and the Beta Tester only, and not with Google LLCand its worldwide affiliates ("Crashlytics"), and Licensor, not Crashlytics, is solely responsible and liable for the Application accessed and used by the Beta Tester, including (i) any related maintenance and support, (ii) any and all express, implied, or statutory warranties associated with the Application, and (iii) any disputes or claims arising out of or related to the access and use of the Application. + + License. Subject to your compliance with this Standard EULA, the Licensor grants you a limited, nonexclusive, non-assignable, non-sublicensable license to access, download, and use the Application and any related documentation made available to you by the Licensor, solely for beta testing purposes. Licensor reserves all right, title, and interest in the Application not expressly granted to you, including but not limited to intellectual property rights. To the maximum extent permitted by law, you may not do any of the following with respect to the Application: (a) modify, reverse engineer, decompile, or disassemble the Application; (b) rent, lease, loan, sell, sublicense, distribute, transmit, or otherwise transfer the Application; or (c) make any copy of or otherwise reproduce the Application. This license is effective until terminated by you or the Licensor. Your rights under this license will terminate automatically without notice from the Licensor if you fail to comply with any term of this Standard EULA. Upon termination of the license, you shall cease all use of the Application, and destroy all copies, full or partial, of the Application. + + Consent to Data Processing and Transfer. Irrespective of which country you live in, you authorize us to use your information in, and as a result to transfer it to and store it in, the United States and any other country where we or Crashlytics operate. Privacy and data protection laws in some of these countries may vary from the laws in the country where you live. + + No Compensation. By becoming a Beta Tester, you are acting as a volunteer. You will bear your own costs, including any mobile carrier and data costs that you incur in connection with your use of the Application or any User Feedback (defined in Section 2 above) that you submit. + + User Feedback. You agree to use reasonable efforts to beta test any application downloaded from the Services. User Feedback shall be owned by the Licensor. You hereby assign all of your right, title, and interest in and to any User Feedback to Licensor and acknowledge that Licensor has the unrestricted right to use and exploit such User Feedback in any manner, with or without attribution, and without compensation or any duty to account to you for such use. + + Confidentiality. The Application and related information that Licensor provides to you are Licensor's confidential information. You will not disclose information about the Application or any other Licensor confidential information to anyone other than Licensor's employees, unless Licensor gives you written permission. For example, do not share screenshots or video clips of the Application with your friends, family, coworkers, or the media. You will also take reasonable precautions to prevent anyone from obtaining Licensor's confidential information. For example, you should restrict access to your mobile device, prevent others from watching you use the Application, and not create any screenshots or video clips of the Application. + + Disclaimer. THE APPLICATION IS A TEST VERSION THAT IS MADE AVAILABLE TO YOU FOR TESTING AND EVALUATION PURPOSES ONLY. THE APPLICATION IS NOT READY FOR COMMERCIAL RELEASE AND MAY CONTAIN BUGS, ERRORS, AND DEFECTS. ACCORDINGLY, THE APPLICATION IS PROVIDED "AS IS," WITH ALL FAULTS, DEFECTS, AND ERRORS, AND WITHOUT WARRANTY OF ANY KIND. LICENSOR AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES (EXPRESS, IMPLIED, ARISING BY LAW, OR OTHERWISE) REGARDING THE APPLICATION AND ITS PERFORMANCE OR SUITABILITY FOR YOUR INTENDED USE, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. + + Limitation of Liability. EXCEPT TO THE EXTENT PROHIBITED BY LAW, IN NO EVENT WILL LICENSOR OR ITS SUPPLIERS BE LIABLE (UNDER ANY THEORY OF LIABILITY) FOR PERSONAL INJURY OR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL OR SPECIAL DAMAGES (INCLUDING FOR LOSS OF DATA, LOSS OF CONTENT, LOSS OF IN-APPLICATION FEATURES, LOSS OF PROFITS, OR BUSINESS INTERRUPTION) ARISING OUT OF OR RELATED TO YOUR USE OF OR INABILITY TO USE THE APPLICATION, EVEN IF LICENSOR AND/OR ITS SUPPLIERS HAS/HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS DO NOT ALLOW THE FOREGOING LIMITATIONS OF LIABILITY, SO THESE LIMITATIONS MAY NOT APPLY TO YOU. IN NO EVENT SHALL LICENSOR AND ITS SUPPLIERS' AGGREGATE LIABILITY ARISING FROM YOUR USE OR INABILITY TO USE THE APPLICATION EXCEED FIFTY UNITED STATES DOLLARS (US $50.00). + + Previous versions + + January 27, 2017 json: crashlytics-agreement-2018.json - yml: crashlytics-agreement-2018.yml + yaml: crashlytics-agreement-2018.yml html: crashlytics-agreement-2018.html - text: crashlytics-agreement-2018.LICENSE + license: crashlytics-agreement-2018.LICENSE - license_key: crcalc + category: Permissive spdx_license_key: LicenseRef-scancode-crcalc other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is granted free of charge to copy, modify, use and distribute + this software provided you include the entirety of this notice in all + copies made. + + THIS SOFTWARE IS PROVIDED ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY + KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, + WARRANTIES THAT THE SUBJECT SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT + FOR A PARTICULAR PURPOSE OR NON-INFRINGING. COPY ASSUMES + NO RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE. + SHOULD THE SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, + HEWLETT-PACKARD ASSUMES NO COST OR LIABILITY FOR ANY + SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES + AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY SUBJECT SOFTWARE IS + AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING, + WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY), CONTRACT, OR + OTHERWISE, SHALL HEWLETT-PACKARD BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, + INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER WITH RESPECT TO THE + SOFTWARE INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK + STOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL + OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF HEWLETT-PACKARD SHALL + HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. + THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY RESULTING + FROM HEWLETT-PACKARD's NEGLIGENCE TO THE EXTENT APPLICABLE + LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE + EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT + EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. json: crcalc.json - yml: crcalc.yml + yaml: crcalc.yml html: crcalc.html - text: crcalc.LICENSE + license: crcalc.LICENSE - license_key: crossword + category: Permissive spdx_license_key: Crossword other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Copyright (C) 1995-2009 Gerd Neugebauer +   + cwpuzzle.dtx is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY. No author or distributor accepts responsibility to anyone for the + consequences of using it or for whether it serves any particular purpose or + works at all, unless he says so in writing. + + Everyone is granted permission to copy, modify and redistribute cwpuzzle.dtx, + provided this copyright notice is preserved and any modifications are indicated. json: crossword.json - yml: crossword.yml + yaml: crossword.yml html: crossword.html - text: crossword.LICENSE + license: crossword.LICENSE - license_key: crypto-keys-redistribution + category: Copyleft spdx_license_key: LicenseRef-scancode-crypto-keys-redistribution other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + For the avoidance of doubt the "preferred form" of this code is one which + is in an open non patent encumbered format. Where cryptographic key signing + forms part of the process of creating an executable the information + including keys needed to generate an equivalently functional executable + are deemed to be part of the source code. json: crypto-keys-redistribution.json - yml: crypto-keys-redistribution.yml + yaml: crypto-keys-redistribution.yml html: crypto-keys-redistribution.html - text: crypto-keys-redistribution.LICENSE + license: crypto-keys-redistribution.LICENSE - license_key: cryptopp + category: Permissive spdx_license_key: LicenseRef-scancode-cryptopp other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Compilation Copyright (c) 1995-2010 by Wei Dai. All rights reserved. + + This copyright applies only to this software distribution package as a + compilation, and does not imply a copyright on any particular file in the + package. + + All individual files in this compilation are placed in the public domain by Wei + Dai and other contributors. I would like to thank the following authors for + placing their works into the public domain: + + Joan Daemen - 3way.cpp Leonard Janke - cast.cpp, seal.cpp Steve Reid - cast.cpp + Phil Karn - des.cpp Andrew M. Kuchling - md2.cpp, md4.cpp Colin Plumb - md5.cpp + Seal Woods - rc6.cpp Chris Morgan - rijndael.cpp Paulo Baretto - rijndael.cpp, + skipjack.cpp, square.cpp Richard De Moliner - safer.cpp Matthew Skala - + twofish.cpp Kevin Springle - camellia.cpp, shacal2.cpp, ttmac.cpp, whrlpool.cpp, + ripemd.cpp + + Permission to use, copy, modify, and distribute this compilation for any + purpose, including commercial applications, is hereby granted without fee, + subject to the following restrictions: + + 1. Any copy or modification of this compilation in any form, except in object + code form as part of an application software, must include the above copyright + notice and this license. + + 2. Users of this software agree that any modification or extension they provide + to Wei Dai will be considered public domain and not copyrighted unless it + includes an explicit copyright notice. + + 3. Wei Dai makes no warranty or representation that the operation of the + software in this compilation will be error-free, and Wei Dai is under no + obligation to provide any services, by way of maintenance, update, or otherwise. + THE SOFTWARE AND ANY DOCUMENTATION ARE PROVIDED "AS IS" WITHOUT EXPRESS OR + IMPLIED WARRANTY INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL WEI DAI + OR ANY OTHER CONTRIBUTOR BE LIABLE FOR DIRECT, INCIDENTAL OR CONSEQUENTIAL + DAMAGES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 4. Users will not use Wei Dai or any other contributor's name in any publicity + or advertising, without prior written consent in each case. + + 5. Export of this software from the United States may require a specific license + from the United States Government. It is the responsibility of any person or + organization contemplating export to obtain such a license before exporting. + + 6. Certain parts of this software may be protected by patents. It is the users' + responsibility to obtain the appropriate licenses before using those parts. + + If this compilation is used in object code form in an application software, + acknowledgement of the author is not required but would be appreciated. The + contribution of any useful modifications or extensions to Wei Dai is not + required but would also be appreciated. json: cryptopp.json - yml: cryptopp.yml + yaml: cryptopp.yml html: cryptopp.html - text: cryptopp.LICENSE + license: cryptopp.LICENSE - license_key: crystal-stacker + category: Permissive spdx_license_key: CrystalStacker other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Crystal Stacker is freeware. This means you can pass copies around freely provided you include this document in it's original form in your distribution. Please see the "Contacting Us" section of this document if you need to contact us for any reason. + + Disclaimer + + NewCreature Design makes no guarantees regarding the Crystal Stacker software. We are not responsible for damages caused by it, though the software is not known to cause any problems. If you have trouble with the software, see the "Contacting Us" section of this document. + + The source code is provided as-is and you may do with it whatsoever you please provided that you include this file in its unmodified form with any new distribution. NewCreature Design makes no gaurantees regarding the usability of the source but are willing to help with any problems you might run into. Please see the "Contacting Us" section of this document if you need to get in touch with us about any issues you have regarding the source. json: crystal-stacker.json - yml: crystal-stacker.yml + yaml: crystal-stacker.yml html: crystal-stacker.html - text: crystal-stacker.LICENSE + license: crystal-stacker.LICENSE - license_key: csl-1.0 + category: Permissive spdx_license_key: Community-Spec-1.0 other_spdx_license_keys: - LicenseRef-scancode-csl-1.0 is_exception: no is_deprecated: no - category: Permissive + text: | + Community Specification License 1.0 + + The Purpose of this License. This License sets forth the terms under which + 1) Contributor will participate in and contribute to the development + of specifications, standards, best practices, guidelines, and other + similar materials under this Working Group, and 2) how the materials + developed under this License may be used. It is not intended for source + code. Capitalized terms are defined in the License’s last section. + + 1. Copyright. + + 1.1. Copyright License. Contributor grants everyone a non-sublicensable, + perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as expressly stated in this License) copyright license, without + any obligation for accounting, to reproduce, prepare derivative works + of, publicly display, publicly perform, and distribute any materials + it submits to the full extent of its copyright interest in those + materials. Contributor also acknowledges that the Working Group may + exercise copyright rights in the Specification, including the rights to + submit the Specification to another standards organization. + + 1.2. Copyright Attribution. As a condition, anyone exercising this + copyright license must include attribution to the Working Group in any + derivative work based on materials developed by the Working Group. + That attribution must include, at minimum, the material’s name, + version number, and source from where the materials were retrieved. + Attribution is not required for implementations of the Specification. + + 2. Patents. + + 2.1. Patent License. + + 2.1.1. As a Result of Contributions. + + 2.1.1.1. As a Result of Contributions to Draft Specifications. + Contributor grants Licensee a non-sublicensable, perpetual, worldwide, + non-exclusive, no-charge, royalty-free, irrevocable (except as + expressly stated in this License) license to its Necessary Claims in 1) + Contributor’s Contributions and 2) to the Draft Specification that + is within Scope as of the date of that Contribution, in both cases for + Licensee’s Implementation of the Draft Specification, except for those + patent claims excluded by Contributor under Section 3. + + 2.1.1.2. For Approved Specifications. Contributor grants Licensee a + non-sublicensable, perpetual, worldwide, non-exclusive, no-charge, + royalty-free, irrevocable (except as expressly stated in this License) + license to its Necessary Claims included the Approved Specification + that are within Scope for Licensee’s Implementation of the Approved + Specification, except for those patent claims excluded by Contributor + under Section 3. + + 2.1.2. Patent Grant from Licensee. Licensee grants each other Licensee + a non-sublicensable, perpetual, worldwide, non-exclusive, no-charge, + royalty-free, irrevocable (except as expressly stated in this License) + license to its Necessary Claims for its Implementation, except for those + patent claims excluded under Section 3. + + 2.1.3. Licensee Acceptance. The patent grants set forth in Section 2.1 + extend only to Licensees that have indicated their agreement to this + License as follows: + + 2.1.3.1. Source Code Distributions. For distribution in source code, + by including this License in the root directory of the source code with + the Implementation; + + 2.1.3.2. Non-Source Code Distributions. For distribution in any form + other than source code, by including this License in the documentation, + legal notices, via notice in the software, and/or other written materials + provided with the Implementation; or + + 2.1.3.3. Via Notices.md. By issuing pull request or commit to the + Specification’s repository’s Notices.md file by the Implementer’s + authorized representative, including the Implementer’s name, authorized + individual and system identifier, and Specification version. + + 2.1.4. Defensive Termination. If any Licensee files or maintains a + claim in a court asserting that a Necessary Claim is infringed by an + Implementation, any licenses granted under this License to the Licensee + are immediately terminated unless 1) that claim is directly in response + to a claim against Licensee regarding an Implementation, or 2) that claim + was brought to enforce the terms of this License, including intervention + in a third-party action by a Licensee. + + 2.1.5. Additional Conditions. This License is not an assurance (i) + that any of Contributor’s copyrights or issued patent claims cover + an Implementation of the Specification or are enforceable or (ii) that + an Implementation of the Specification would not infringe intellectual + property rights of any third party. + + 2.2. Patent Licensing Commitment. In addition to the rights granted + in Section 2.1, Contributor agrees to grant everyone a no charge, + royalty-free license on reasonable and non-discriminatory terms + to Contributor’s Necessary Claims that are within Scope for: + 1) Implementations of a Draft Specification, where such license + applies only to those Necessary Claims infringed by implementing + Contributor's Contribution(s) included in that Draft Specification, + and 2) Implementations of the Approved Specification. + + This patent licensing commitment does not apply to those claims subject + to Contributor’s Exclusion Notice under Section 3. + + 2.3. Effect of Withdrawal. Contributor may withdraw from the Working Group + by issuing a pull request or commit providing notice of withdrawal to + the Working Group repository’s Notices.md file. All of Contributor’s + existing commitments and obligations with respect to the Working Group + up to the date of that withdrawal notice will remain in effect, but no + new obligations will be incurred. + + 2.4. Binding Encumbrance. This License is binding on any future owner, + assignee, or party who has been given the right to enforce any Necessary + Claims against third parties. + + 3. Patent Exclusion. + + 3.1. As a Result of Contributions. Contributor may exclude Necessary + Claims from its licensing commitments incurred under Section 2.1.1 + by issuing an Exclusion Notice within 45 days of the date of that + Contribution. Contributor may not issue an Exclusion Notice for any + material that has been included in a Draft Deliverable for more than 45 + days prior to the date of that Contribution. + + 3.2. As a Result of a Draft Specification Becoming an Approved + Specification. Prior to the adoption of a Draft Specification as an + Approved Specification, Contributor may exclude Necessary Claims from + its licensing commitments under this Agreement by issuing an Exclusion + Notice. Contributor may not issue an Exclusion Notice for patents that + were eligible to have been excluded pursuant to Section 3.1. + + 4. Source Code License. Any source code developed by the Working Group is + solely subject the source code license included in the Working Group’s + repository for that code. If no source code license is included, the + source code will be subject to the MIT License. + + 5. No Other Rights. Except as specifically set forth in this License, no + other express or implied patent, trademark, copyright, or other rights are + granted under this License, including by implication, waiver, or estoppel. + + 6. Antitrust Compliance. Contributor acknowledge that it may compete + with other participants in various lines of business and that it is + therefore imperative that they and their respective representatives + act in a manner that does not violate any applicable antitrust laws and + regulations. This License does not restrict any Contributor from engaging + in similar specification development projects. Each Contributor may + design, develop, manufacture, acquire or market competitive deliverables, + products, and services, and conduct its business, in whatever way it + chooses. No Contributor is obligated to announce or market any products + or services. Without limiting the generality of the foregoing, the + Contributors agree not to have any discussion relating to any product + pricing, methods or channels of product distribution, division of markets, + allocation of customers or any other topic that should not be discussed + among competitors under the auspices of the Working Group. + + 7. Non-Circumvention. Contributor agrees that it will not intentionally + take or willfully assist any third party to take any action for the + purpose of circumventing any obligations under this License. + + 8. Representations, Warranties and Disclaimers. + + 8.1. Representations, Warranties and Disclaimers. Contributor and Licensee + represents and warrants that 1) it is legally entitled to grant the + rights set forth in this License and 2) it will not intentionally include + any third party materials in any Contribution unless those materials are + available under terms that do not conflict with this License. IN ALL OTHER + RESPECTS ITS CONTRIBUTIONS ARE PROVIDED "AS IS." The entire risk as to + implementing or otherwise using the Contribution or the Specification + is assumed by the implementer and user. Except as stated herein, + CONTRIBUTOR AND LICENSEE EXPRESSLY DISCLAIM ANY WARRANTIES (EXPRESS, + IMPLIED, OR OTHERWISE), INCLUDING IMPLIED WARRANTIES OF MERCHANTABILITY, + NON-INFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, CONDITIONS OF QUALITY, + OR TITLE, RELATED TO THE CONTRIBUTION OR THE SPECIFICATION. IN NO EVENT + WILL ANY PARTY BE LIABLE TO ANY OTHER PARTY FOR LOST PROFITS OR ANY + FORM OF INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF + ANY CHARACTER FROM ANY CAUSES OF ACTION OF ANY KIND WITH RESPECT TO + THIS AGREEMENT, WHETHER BASED ON BREACH OF CONTRACT, TORT (INCLUDING + NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT THE OTHER PARTY HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Any obligations regarding + the transfer, successors in interest, or assignment of Necessary Claims + will be satisfied if Contributor or Licensee notifies the transferee + or assignee of any patent that it knows contains Necessary Claims or + necessary claims under this License. Nothing in this License requires + Contributor to undertake a patent search. If Contributor is 1) employed by + or acting on behalf of an employer, 2) is making a Contribution under the + direction or control of a third party, or 3) is making the Contribution + as a consultant, contractor, or under another similar relationship with + a third party, Contributor represents that they have been authorized by + that party to enter into this License on its behalf. + + 8.2. Distribution Disclaimer. Any distributions of technical + information to third parties must include a notice materially similar + to the following: “THESE MATERIALS ARE PROVIDED “AS IS.” The + Contributors and Licensees expressly disclaim any warranties (express, + implied, or otherwise), including implied warranties of merchantability, + non-infringement, fitness for a particular purpose, or title, related to + the materials. The entire risk as to implementing or otherwise using the + materials is assumed by the implementer and user. IN NO EVENT WILL THE + CONTRIBUTORS OR LICENSEES BE LIABLE TO ANY OTHER PARTY FOR LOST PROFITS + OR ANY FORM OF INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES + OF ANY CHARACTER FROM ANY CAUSES OF ACTION OF ANY KIND WITH RESPECT TO + THIS DELIVERABLE OR ITS GOVERNING AGREEMENT, WHETHER BASED ON BREACH OF + CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT + THE OTHER MEMBER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.” + + 9. Definitions. + + 9.1. Affiliate. “Affiliate” means an entity that directly or + indirectly Controls, is Controlled by, or is under common Control of + that party. + + 9.2. Approved Specification. “Approved Specification” means the final + version and contents of any Draft Specification designated as an Approved + Specification as set forth in the accompanying Governance.md file. + + 9.3. Contribution. “Contribution” means any original work of + authorship, including any modifications or additions to an existing + work, that Contributor submits for inclusion in a Draft Specification, + which is included in a Draft Specification or Approved Specification. + + 9.4. Contributor. “Contributor” means any person or entity that has + indicated its acceptance of the License 1) by making a Contribution to + the Specification, or 2) by entering into the Community Specification + Contributor License Agreement for the Specification. Contributor includes + its Affiliates, assigns, agents, and successors in interest. + + 9.5. Control. “Control” means direct or indirect control of more + than 50% of the voting power to elect directors of that corporation, + or for any other entity, the power to direct management of such entity. + + 9.6. Draft Specification. “Draft Specification” means all versions + of the material (except an Approved Specification) developed by this + Working Group for the purpose of creating, commenting on, revising, + updating, modifying, or adding to any document that is to be considered + for inclusion in the Approved Specification. + + 9.7. Exclusion Notice. “Exclusion Notice” means a written notice + made by making a pull request or commit to the repository’s Notices.md + file that identifies patents that Contributor is excluding from its + patent licensing commitments under this License. The Exclusion Notice + for issued patents and published applications must include the Draft + Specification’s name, patent number(s) or title and application + number(s), as the case may be, for each of the issued patent(s) or + pending patent application(s) that the Contributor is excluding from the + royalty-free licensing commitment set forth in this License. If an issued + patent or pending patent application that may contain Necessary Claims + is not set forth in the Exclusion Notice, those Necessary Claims shall + continue to be subject to the licensing commitments under this License. + The Exclusion Notice for unpublished patent applications must provide + either: (i) the text of the filed application; or (ii) identification + of the specific part(s) of the Draft Specification whose implementation + makes the excluded claim a Necessary Claim. If (ii) is chosen, the + effect of the exclusion will be limited to the identified part(s) of + the Draft Specification. + + 9.8. Implementation. “Implementation” means making, using, selling, + offering for sale, importing or distributing any implementation of the + Specification 1) only to the extent it implements the Specification and 2) + so long as all required portions of the Specification are implemented. + + 9.9. License. “License” means this Community Specification License. + + 9.10. Licensee. “Licensee” means any person or entity that has + indicated its acceptance of the License as set forth in Section 2.1.3. + Licensee includes its Affiliates, assigns, agents, and successors in + interest. + + 9.11. Necessary Claims. “Necessary Claims” are those patent claims, if + any, that a party owns or controls, including those claims later acquired, + that are necessary to implement the required portions (including the + required elements of optional portions) of the Specification that are + described in detail and not merely referenced in the Specification. + + 9.12. Specification. “Specification” means a Draft Specification + or Approved Specification included in the Working Group’s repository + subject to this License, and the version of the Specification implemented + by the Licensee. + + 9.13. Scope. “Scope” has the meaning as set forth in the accompanying + Scope.md file included in this Specification’s repository. Changes + to Scope do not apply retroactively. If no Scope is provided, each + Contributor’s Necessary Claims are limited to that Contributor’s + Contributions. + + 9.14. Working Group. “Working Group” means this project to develop + specifications, standards, best practices, guidelines, and other similar + materials under this License. + + + + The text of this Community Specification License is Copyright 2020 + Joint Development Foundation and is licensed under the Creative + Commons Attribution 4.0 International License available at + https://creativecommons.org/licenses/by/4.0/. + + SPDX-License-Identifier: CC-BY-4.0 json: csl-1.0.json - yml: csl-1.0.yml + yaml: csl-1.0.yml html: csl-1.0.html - text: csl-1.0.LICENSE + license: csl-1.0.LICENSE - license_key: csla + category: Free Restricted spdx_license_key: LicenseRef-scancode-csla other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "LICENSE AND WARRANTY\nVersion 4.0.3\n\nThe CSLA .NET framework is Copyright 2013 by\ + \ Marimer, LLC. \n\nYou can use this Software for any noncommercial purpose, including \n\ + distributing derivative works. You can use this Software for any commercial \npurpose other\ + \ than you may not use it, in whole or in part, to create a \ncommercial framework product.\ + \ \n\nIn short, you can use CSLA .NET and modify it to create other commercial or \nbusiness\ + \ software, you just can't take the framework itself, modify it and \nsell it as a product.\ + \ \n\nIn return, the owner simply requires that you agree: \n\nThis Software License Agreement\ + \ (\"Agreement\") is effective \nupon your use of CSLA .NET (\"Software\").\n\n1. Ownership.\n\ + The CSLA .NET framework is Copyright 2013 by Marimer, LLC, \nEden Prairie, MN, USA. \n\n\ + 2. Copyright Notice.\nYou must not remove any copyright notices from the Software source\ + \ code. \n\n3. License.\nThe owner hereby grants a perpetual, non-exclusive, limited license\ + \ to use \nthe Software as set forth in this Agreement.\n\n4. Source Code Distribution.\n\ + If you distribute the Software in source code form you must do so only under \nthis License\ + \ (i.e. you must include a complete copy of this License with \nyour distribution).\n\n\ + 5. Binary or Object Distribution.\nYou may distribute the Software in binary or object form\ + \ with no requirement \nto display copyright notices to the end user. The binary or object\ + \ form must \nretain the copyright notices included in the Software source code.\n\n6. Restrictions.\n\ + You may not sell the Software. If you create a software development framework \nbased on\ + \ the Software as a derivative work, you may not sell that derivative \nwork. This does\ + \ not restrict the use of the Software for creation of other \ntypes of non-commercial or\ + \ commercial applications or derivative works. \n\n7. Disclaimer of Warranty.\nThe Software\ + \ comes \"as is\", with no warranties. None whatsoever. This means \nno express, implied,\ + \ statutory or other warranty, including without \nlimitation, warranties of merchantability\ + \ or fitness for a particular \npurpose, noninfringement, or the presence or absence of\ + \ errors, whether or \nnot discoverable. You, and your distributees, use this Software at\ + \ your own \nrisk. Also, you must pass this disclaimer on whenever you distribute \nthe\ + \ Software. \n\n8. Liability.\nNeither Marimer, LLC nor any contributor to the Software\ + \ will be liable \nfor any type of direct damages or for any of those types of damages known\ + \ \nas indirect, special, consequential, incidental, punitive or exemplary \nrelated to\ + \ the Software or this License, to the maximum extent the law \npermits, no matter what\ + \ legal theory it’s based on. Also, you must pass \nthis limitation of liability on whenever\ + \ you distribute the Software. \n\n9. Patents.\nIf you sue anyone over patents that you\ + \ think may apply to the Software \nfor a person's use of the Software, your license to\ + \ the Software ends \nautomatically. \n\nThe patent rights, if any, licensed hereunder only\ + \ apply to the Software, \nnot to any derivative works you make. \n\n10. Termination.\n\ + Your rights under this License end automatically if you breach it in any way.\n\nMarimer,\ + \ LLC reserves the right to release the Software under different \nlicense terms or to stop\ + \ distributing the Software at any time. Such an \nelection will not serve to withdraw this\ + \ Agreement, and this Agreement will \ncontinue in full force and effect unless terminated\ + \ as stated above.\n\n11. Governing Law.\nThis Agreement shall be construed and enforced\ + \ in accordance with the laws \nof the state of Minnesota, USA.\n\n12. No Assignment.\n\ + Neither this Agreement nor any interest in this Agreement may be assigned \nby Licensee\ + \ without the prior express written approval of Developer.\n\n13. Final Agreement.\nThis\ + \ Agreement terminates and supersedes all prior understandings or \nagreements on the subject\ + \ matter hereof. This Agreement may be modified \nonly by a further writing that is duly\ + \ executed by both parties.\n\n14. Severability.\nIf any term of this Agreement is held\ + \ by a court of competent jurisdiction \nto be invalid or unenforceable, then this Agreement,\ + \ including all of the \nremaining terms, will remain in full force and effect as if such\ + \ invalid \nor unenforceable term had never been included.\n\n15. Headings.\nHeadings used\ + \ in this Agreement are provided for convenience only and shall \nnot be used to construe\ + \ meaning or intent." json: csla.json - yml: csla.yml + yaml: csla.yml html: csla.html - text: csla.LICENSE + license: csla.LICENSE - license_key: csprng + category: Permissive spdx_license_key: LicenseRef-scancode-csprng other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution of the CSPRNG + modules 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 + and this permission notice in its entirety. + + 2. Redistributions in binary form must reproduce the copyright notice in + the documentation and/or other materials provided with the distribution. + + 3. A copy of any bugfixes or enhancements made must be provided to the + author, to allow them to be added to the + baseline version of the code. json: csprng.json - yml: csprng.yml + yaml: csprng.yml html: csprng.html - text: csprng.LICENSE + license: csprng.LICENSE - license_key: ctl-linux-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ctl-linux-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Redistribution. Redistribution and use in binary form, without + modification, are permitted provided that the following conditions are + met: + + * Redistributions must reproduce the above copyright notice and the + following disclaimer in the documentation and/or other materials + provided with the distribution. + * Neither the name of Creative Technology Ltd or its affiliates ("CTL") + nor the names of its suppliers may be used to endorse or promote + products derived from this software without specific prior written + permission. + * No reverse engineering, decompilation, or disassembly of this software + (or any part thereof) is permitted. + + Limited patent license. CTL grants a limited, world-wide, + royalty-free, non-exclusive license under patents it now or hereafter + owns or controls to make, have made, use, import, offer to sell and + sell ("Utilize") this software, but strictly only to the extent that any + such patent is necessary to Utilize the software alone, or in + combination with an operating system licensed under an approved Open + Source license as listed by the Open Source Initiative at + http://opensource.org/licenses. The patent license shall not be + applicable, to any other combinations which include this software. + No hardware per se is licensed hereunder. + + 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. + + NO OTHER RIGHTS GRANTED. USER HEREBY ACKNOWLEDGES AND AGREES THAT USE OF + THIS SOFTWARE SHALL NOT CREATE OR GIVE GROUNDS FOR A LICENSE BY + IMPLICATION, ESTOPPEL, OR OTHERWISE TO ANY INTELLECTUAL PROPERTY RIGHTS + (PATENT, COPYRIGHT, TRADE SECRET, MASK WORK, OR OTHER PROPRIETARY RIGHT) + EMBODIED IN ANY OTHER CTL HARDWARE OR SOFTWARE WHETHER SOLELY OR IN + COMBINATION WITH THIS SOFTWARE. json: ctl-linux-firmware.json - yml: ctl-linux-firmware.yml + yaml: ctl-linux-firmware.yml html: ctl-linux-firmware.html - text: ctl-linux-firmware.LICENSE + license: ctl-linux-firmware.LICENSE - license_key: cua-opl-1.0 + category: Copyleft Limited spdx_license_key: CUA-OPL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "CUA Office Public License Version 1.0\n1. Definitions.\n\n1.0.1. \"Commercial Use\"\ + \ means distribution or otherwise making the\nCovered Code available to a third party.\n\ + \n1.1. \"Contributor\" means each entity that creates or contributes to\nthe creation of\ + \ Modifications.\n\n1.2. \"Contributor Version\" means the combination of the Original\n\ + Code, prior Modifications used by a Contributor, and the Modifications\nmade by that particular\ + \ Contributor.\n\n1.3. \"Covered Code\" means the Original Code or Modifications or the\n\ + combination of the Original Code and Modifications, in each case\nincluding portions thereof.\n\ + \n1.4. \"Electronic Distribution Mechanism\" means a mechanism generally\naccepted in the\ + \ software development community for the electronic\ntransfer of data.\n\n1.5. \"Executable\"\ + \ means Covered Code in any form other than Source\nCode.\n\n1.6. \"Initial Developer\"\ + \ means the individual or entity identified\nas the Initial Developer in the Source Code\ + \ notice required by Exhibit\nA.\n\n1.7. \"Larger Work\" means a work which combines Covered\ + \ Code or\nportions thereof with code not governed by the terms of this License.\n\n1.8.\ + \ \"License\" means this document.\n\n1.8.1. \"Licensable\" means having the right to grant,\ + \ to the maximum\nextent possible, whether at the time of the initial grant or\nsubsequently\ + \ acquired, any and all of the rights conveyed herein.\n\n1.9. \"Modifications\" means any\ + \ addition to or deletion from the\nsubstance or structure of either the Original Code or\ + \ any previous\nModifications. When Covered Code is released as a series of files, a\nModification\ + \ is:\n\nA. Any addition to or deletion from the contents of a file\ncontaining Original\ + \ Code or previous Modifications.\n\nB. Any new file that contains any part of the Original\ + \ Code or\nprevious Modifications.\n\n1.10. \"Original Code\" means Source Code of computer\ + \ software code\nwhich is described in the Source Code notice required by Exhibit A as\n\ + Original Code, and which, at the time of its release under this\nLicense is not already\ + \ Covered Code governed by this License.\n\n1.10.1. \"Patent Claims\" means any patent claim(s),\ + \ now owned or\nhereafter acquired, including without limitation, method, process,\nand\ + \ apparatus claims, in any patent Licensable by grantor.\n\n1.11. \"Source Code\" means\ + \ the preferred form of the Covered Code for\nmaking modifications to it, including all\ + \ modules it contains, plus\nany associated interface definition files, scripts used to\ + \ control\ncompilation and installation of an Executable, or source code\ndifferential comparisons\ + \ against either the Original Code or another\nwell known, available Covered Code of the\ + \ Contributor's choice. The\nSource Code can be in a compressed or archival form, provided\ + \ the\nappropriate decompression or de-archiving software is widely available\nfor no charge.\n\ + \n1.12. \"You\" (or \"Your\") means an individual or a legal entity\nexercising rights under,\ + \ and complying with all of the terms of, this\nLicense or a future version of this License\ + \ issued under Section 6.1.\nFor legal entities, \"You\" includes any entity which controls,\ + \ is\ncontrolled by, or is under common control with You. For purposes of\nthis definition,\ + \ \"control\" means (a) the power, direct or indirect,\nto cause the direction or management\ + \ of such entity, whether by\ncontract or otherwise, or (b) ownership of more than fifty\ + \ percent\n(50%) of the outstanding shares or beneficial ownership of such\nentity.\n\n\ + 2. Source Code License.\n\n2.1. The Initial Developer Grant.\nThe Initial Developer hereby\ + \ grants You a world-wide, royalty-free,\nnon-exclusive license, subject to third party\ + \ intellectual property\nclaims:\n\n(a) under intellectual property rights (other than patent\ + \ or\ntrademark) Licensable by Initial Developer to use, reproduce,\nmodify, display, perform,\ + \ sublicense and distribute the Original\nCode (or portions thereof) with or without Modifications,\ + \ and/or\nas part of a Larger Work; and\n\n(b) under Patents Claims infringed by the making,\ + \ using or\nselling of Original Code, to make, have made, use, practice,\nsell, and offer\ + \ for sale, and/or otherwise dispose of the\nOriginal Code (or portions thereof).\n\n(c)\ + \ the licenses granted in this Section 2.1(a) and (b) are\neffective on the date Initial\ + \ Developer first distributes\nOriginal Code under the terms of this License.\n\n(d) Notwithstanding\ + \ Section 2.1(b) above, no patent license is\ngranted: 1) for code that You delete from\ + \ the Original Code; 2)\nseparate from the Original Code; or 3) for infringements caused\n\ + by: i) the modification of the Original Code or ii) the\ncombination of the Original Code\ + \ with other software or devices.\n\n2.2. Contributor Grant.\nSubject to third party intellectual\ + \ property claims, each Contributor\nhereby grants You a world-wide, royalty-free, non-exclusive\ + \ license\n\n(a) under intellectual property rights (other than patent or\ntrademark) Licensable\ + \ by Contributor, to use, reproduce, modify,\ndisplay, perform, sublicense and distribute\ + \ the Modifications\ncreated by such Contributor (or portions thereof) either on an\nunmodified\ + \ basis, with other Modifications, as Covered Code\nand/or as part of a Larger Work; and\n\ + \n(b) under Patent Claims infringed by the making, using, or\nselling of Modifications made\ + \ by that Contributor either alone\nand/or in combination with its Contributor Version (or\ + \ portions\nof such combination), to make, use, sell, offer for sale, have\nmade, and/or\ + \ otherwise dispose of: 1) Modifications made by that\nContributor (or portions thereof);\ + \ and 2) the combination of\nModifications made by that Contributor with its Contributor\n\ + Version (or portions of such combination).\n\n(c) the licenses granted in Sections 2.2(a)\ + \ and 2.2(b) are\neffective on the date Contributor first makes Commercial Use of\nthe Covered\ + \ Code.\n\n(d) Notwithstanding Section 2.2(b) above, no patent license is\ngranted: 1) for\ + \ any code that Contributor has deleted from the\nContributor Version; 2) separate from\ + \ the Contributor Version;\n3) for infringements caused by: i) third party modifications\ + \ of\nContributor Version or ii) the combination of Modifications made\nby that Contributor\ + \ with other software (except as part of the\nContributor Version) or other devices; or\ + \ 4) under Patent Claims\ninfringed by Covered Code in the absence of Modifications made\ + \ by\nthat Contributor.\n\n3. Distribution Obligations.\n\n3.1. Application of License.\n\ + The Modifications which You create or to which You contribute are\ngoverned by the terms\ + \ of this License, including without limitation\nSection 2.2. The Source Code version of\ + \ Covered Code may be\ndistributed only under the terms of this License or a future version\n\ + of this License released under Section 6.1, and You must include a\ncopy of this License\ + \ with every copy of the Source Code You\ndistribute. You may not offer or impose any terms\ + \ on any Source Code\nversion that alters or restricts the applicable version of this\n\ + License or the recipients' rights hereunder. However, You may include\nan additional document\ + \ offering the additional rights described in\nSection 3.5.\n\n3.2. Availability of Source\ + \ Code.\nAny Modification which You create or to which You contribute must be\nmade available\ + \ in Source Code form under the terms of this License\neither on the same media as an Executable\ + \ version or via an accepted\nElectronic Distribution Mechanism to anyone to whom you made\ + \ an\nExecutable version available; and if made available via Electronic\nDistribution Mechanism,\ + \ must remain available for at least twelve (12)\nmonths after the date it initially became\ + \ available, or at least six\n(6) months after a subsequent version of that particular Modification\n\ + has been made available to such recipients. You are responsible for\nensuring that the Source\ + \ Code version remains available even if the\nElectronic Distribution Mechanism is maintained\ + \ by a third party.\n\n3.3. Description of Modifications.\nYou must cause all Covered Code\ + \ to which You contribute to contain a\nfile documenting the changes You made to create\ + \ that Covered Code and\nthe date of any change. You must include a prominent statement\ + \ that\nthe Modification is derived, directly or indirectly, from Original\nCode provided\ + \ by the Initial Developer and including the name of the\nInitial Developer in (a) the Source\ + \ Code, and (b) in any notice in an\nExecutable version or related documentation in which\ + \ You describe the\norigin or ownership of the Covered Code.\n\n3.4. Intellectual Property\ + \ Matters\n\n(a) Third Party Claims.\nIf Contributor has knowledge that a license under\ + \ a third party's\nintellectual property rights is required to exercise the rights\ngranted\ + \ by such Contributor under Sections 2.1 or 2.2,\nContributor must include a text file with\ + \ the Source Code\ndistribution titled \"LEGAL\" which describes the claim and the\nparty\ + \ making the claim in sufficient detail that a recipient will\nknow whom to contact. If\ + \ Contributor obtains such knowledge after\nthe Modification is made available as described\ + \ in Section 3.2,\nContributor shall promptly modify the LEGAL file in all copies\nContributor\ + \ makes available thereafter and shall take other steps\n(such as notifying appropriate\ + \ mailing lists or newsgroups)\nreasonably calculated to inform those who received the Covered\n\ + Code that new knowledge has been obtained.\n\n(b) Contributor APIs.\n\nIf Contributor's\ + \ Modifications include an application programming\ninterface and Contributor has knowledge\ + \ of patent licenses which\nare reasonably necessary to implement that API, Contributor\ + \ must\nalso include this information in the LEGAL file.\n\n(c) Representations.\n\nContributor\ + \ represents that, except as disclosed pursuant to\nSection 3.4(a) above, Contributor believes\ + \ that Contributor's\nModifications are Contributor's original creation(s) and/or\nContributor\ + \ has sufficient rights to grant the rights conveyed by\nthis License.\n\n3.5. Required\ + \ Notices.\nYou must duplicate the notice in Exhibit A in each file of the Source\nCode.\ + \ If it is not possible to put such notice in a particular Source\nCode file due to its\ + \ structure, then You must include such notice in a\nlocation (such as a relevant directory)\ + \ where a user would be likely\nto look for such a notice. If You created one or more Modification(s)\n\ + You may add your name as a Contributor to the notice described in\nExhibit A. You must also\ + \ duplicate this License in any documentation\nfor the Source Code where You describe recipients'\ + \ rights or ownership\nrights relating to Covered Code. You may choose to offer, and to\n\ + charge a fee for, warranty, support, indemnity or liability\nobligations to one or more\ + \ recipients of Covered Code. However, You\nmay do so only on Your own behalf, and not on\ + \ behalf of the Initial\nDeveloper or any Contributor. You must make it absolutely clear\ + \ than\nany such warranty, support, indemnity or liability obligation is\noffered by You\ + \ alone, and You hereby agree to indemnify the Initial\nDeveloper and every Contributor\ + \ for any liability incurred by the\nInitial Developer or such Contributor as a result of\ + \ warranty,\nsupport, indemnity or liability terms You offer.\n\n3.6. Distribution of Executable\ + \ Versions.\nYou may distribute Covered Code in Executable form only if the\nrequirements\ + \ of Section 3.1-3.5 have been met for that Covered Code,\nand if You include a notice stating\ + \ that the Source Code version of\nthe Covered Code is available under the terms of this\ + \ License,\nincluding a description of how and where You have fulfilled the\nobligations\ + \ of Section 3.2. The notice must be conspicuously included\nin any notice in an Executable\ + \ version, related documentation or\ncollateral in which You describe recipients' rights\ + \ relating to the\nCovered Code. You may distribute the Executable version of Covered\n\ + Code or ownership rights under a license of Your choice, which may\ncontain terms different\ + \ from this License, provided that You are in\ncompliance with the terms of this License\ + \ and that the license for the\nExecutable version does not attempt to limit or alter the\ + \ recipient's\nrights in the Source Code version from the rights set forth in this\nLicense.\ + \ If You distribute the Executable version under a different\nlicense You must make it absolutely\ + \ clear that any terms which differ\nfrom this License are offered by You alone, not by\ + \ the Initial\nDeveloper or any Contributor. You hereby agree to indemnify the\nInitial\ + \ Developer and every Contributor for any liability incurred by\nthe Initial Developer or\ + \ such Contributor as a result of any such\nterms You offer.\n\n3.7. Larger Works.\nYou\ + \ may create a Larger Work by combining Covered Code with other code\nnot governed by the\ + \ terms of this License and distribute the Larger\nWork as a single product. In such a case,\ + \ You must make sure the\nrequirements of this License are fulfilled for the Covered Code.\n\ + \n4. Inability to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to\ + \ comply with any of the terms of this\nLicense with respect to some or all of the Covered\ + \ Code due to\nstatute, judicial order, or regulation then You must: (a) comply with\nthe\ + \ terms of this License to the maximum extent possible; and (b)\ndescribe the limitations\ + \ and the code they affect. Such description\nmust be included in the LEGAL file described\ + \ in Section 3.4 and must\nbe included with all distributions of the Source Code. Except\ + \ to the\nextent prohibited by statute or regulation, such description must be\nsufficiently\ + \ detailed for a recipient of ordinary skill to be able to\nunderstand it.\n\n5. Application\ + \ of this License.\n\nThis License applies to code to which the Initial Developer has\n\ + attached the notice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n\ + \n6.1. New Versions.\nCUA Office Project may publish revised\nand/or new versions of the\ + \ License from time to time. Each version\nwill be given a distinguishing version number.\n\ + \n6.2. Effect of New Versions.\nOnce Covered Code has been published under a particular\ + \ version of the\nLicense, You may always continue to use it under the terms of that\nversion.\ + \ You may also choose to use such Covered Code under the terms\nof any subsequent version\ + \ of the License published by CUA Office Project. No one\nother than CUA Office Project\ + \ has the right to modify the terms applicable to\nCovered Code created under this License.\n\ + \n6.3. Derivative Works.\nIf You create or use a modified version of this License (which\ + \ you may\nonly do in order to apply it to code which is not already Covered Code\ngoverned\ + \ by this License), You must (a) rename Your license so that\nthe phrases \"CUA Office\"\ + , \"CUA\", \"CUAPL\", or any confusingly similar phrase do not appear in your\nlicense (except\ + \ to note that your license differs from this License)\nand (b) otherwise make it clear\ + \ that Your version of the license\ncontains terms which differ from the CUA Office Public\ + \ License. (Filling in the name of the Initial\nDeveloper, Original Code or Contributor\ + \ in the notice described in\nExhibit A shall not of themselves be deemed to be modifications\ + \ of\nthis License.)\n\n7. DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED UNDER THIS\ + \ LICENSE ON AN \"AS IS\" BASIS,\nWITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,\ + \ INCLUDING,\nWITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF\nDEFECTS,\ + \ MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.\nTHE ENTIRE RISK AS TO THE\ + \ QUALITY AND PERFORMANCE OF THE COVERED CODE\nIS WITH YOU. SHOULD ANY COVERED CODE PROVE\ + \ DEFECTIVE IN ANY RESPECT,\nYOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME\ + \ THE\nCOST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER\nOF WARRANTY\ + \ CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF\nANY COVERED CODE IS AUTHORIZED\ + \ HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n\n8.1. This License and the\ + \ rights granted hereunder will terminate\nautomatically if You fail to comply with terms\ + \ herein and fail to cure\nsuch breach within 30 days of becoming aware of the breach. All\n\ + sublicenses to the Covered Code which are properly granted shall\nsurvive any termination\ + \ of this License. Provisions which, by their\nnature, must remain in effect beyond the\ + \ termination of this License\nshall survive.\n\n8.2. If You initiate litigation by asserting\ + \ a patent infringement\nclaim (excluding declatory judgment actions) against Initial Developer\n\ + or a Contributor (the Initial Developer or Contributor against whom\nYou file such action\ + \ is referred to as \"Participant\") alleging that:\n\n(a) such Participant's Contributor\ + \ Version directly or indirectly\ninfringes any patent, then any and all rights granted\ + \ by such\nParticipant to You under Sections 2.1 and/or 2.2 of this License\nshall, upon\ + \ 60 days notice from Participant terminate prospectively,\nunless if within 60 days after\ + \ receipt of notice You either: (i)\nagree in writing to pay Participant a mutually agreeable\ + \ reasonable\nroyalty for Your past and future use of Modifications made by such\nParticipant,\ + \ or (ii) withdraw Your litigation claim with respect to\nthe Contributor Version against\ + \ such Participant. If within 60 days\nof notice, a reasonable royalty and payment arrangement\ + \ are not\nmutually agreed upon in writing by the parties or the litigation claim\nis not\ + \ withdrawn, the rights granted by Participant to You under\nSections 2.1 and/or 2.2 automatically\ + \ terminate at the expiration of\nthe 60 day notice period specified above.\n\n(b) any software,\ + \ hardware, or device, other than such Participant's\nContributor Version, directly or indirectly\ + \ infringes any patent, then\nany rights granted to You by such Participant under Sections\ + \ 2.1(b)\nand 2.2(b) are revoked effective as of the date You first made, used,\nsold, distributed,\ + \ or had made, Modifications made by that\nParticipant.\n\n8.3. If You assert a patent infringement\ + \ claim against Participant\nalleging that such Participant's Contributor Version directly\ + \ or\nindirectly infringes any patent where such claim is resolved (such as\nby license\ + \ or settlement) prior to the initiation of patent\ninfringement litigation, then the reasonable\ + \ value of the licenses\ngranted by such Participant under Sections 2.1 or 2.2 shall be\ + \ taken\ninto account in determining the amount or value of any payment or\nlicense.\n\n\ + 8.4. In the event of termination under Sections 8.1 or 8.2 above,\nall end user license\ + \ agreements (excluding distributors and resellers)\nwhich have been validly granted by\ + \ You or any distributor hereunder\nprior to termination shall survive termination.\n\n\ + 9. LIMITATION OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER\ + \ TORT\n(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL\nDEVELOPER,\ + \ ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,\nOR ANY SUPPLIER OF ANY OF\ + \ SUCH PARTIES, BE LIABLE TO ANY PERSON FOR\nANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL\ + \ DAMAGES OF ANY\nCHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,\n\ + WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\nCOMMERCIAL DAMAGES\ + \ OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\nINFORMED OF THE POSSIBILITY OF SUCH DAMAGES.\ + \ THIS LIMITATION OF\nLIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\n\ + RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\nPROHIBITS SUCH LIMITATION.\ + \ SOME JURISDICTIONS DO NOT ALLOW THE\nEXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL\ + \ DAMAGES, SO\nTHIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT\ + \ END USERS.\n\nThe Covered Code is a \"commercial item,\" as that term is defined in\n\ + 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer\nsoftware\" and \"commercial\ + \ computer software documentation,\" as such\nterms are used in 48 C.F.R. 12.212 (Sept.\ + \ 1995). Consistent with 48\nC.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June\ + \ 1995),\nall U.S. Government End Users acquire Covered Code with only those\nrights set\ + \ forth herein.\n\n11. MISCELLANEOUS.\n\nThis License represents the complete agreement\ + \ concerning subject\nmatter hereof. If any provision of this License is held to be\nunenforceable,\ + \ such provision shall be reformed only to the extent\nnecessary to make it enforceable.\ + \ This License shall be governed by\nCalifornia law provisions (except to the extent applicable\ + \ law, if\nany, provides otherwise), excluding its conflict-of-law provisions.\nWith respect\ + \ to disputes in which at least one party is a citizen of,\nor an entity chartered or registered\ + \ to do business in the United\nStates of America, any litigation relating to this License\ + \ shall be\nsubject to the jurisdiction of the Federal Courts of the Northern\nDistrict\ + \ of California, with venue lying in Santa Clara County,\nCalifornia, with the losing party\ + \ responsible for costs, including\nwithout limitation, court costs and reasonable attorneys'\ + \ fees and\nexpenses. The application of the United Nations Convention on\nContracts for\ + \ the International Sale of Goods is expressly excluded.\nAny law or regulation which provides\ + \ that the language of a contract\nshall be construed against the drafter shall not apply\ + \ to this\nLicense.\n\n12. RESPONSIBILITY FOR CLAIMS.\n\nAs between Initial Developer and\ + \ the Contributors, each party is\nresponsible for claims and damages arising, directly\ + \ or indirectly,\nout of its utilization of rights under this License and You agree to\n\ + work with Initial Developer and Contributors to distribute such\nresponsibility on an equitable\ + \ basis. Nothing herein is intended or\nshall be deemed to constitute any admission of liability.\n\ + \n13. MULTIPLE-LICENSED CODE.\n\nInitial Developer may designate portions of the Covered\ + \ Code as\n\"Multiple-Licensed\". \"Multiple-Licensed\" means that the Initial\nDeveloper\ + \ permits you to utilize portions of the Covered Code under\nYour choice of the NPL or the\ + \ alternative licenses, if any, specified\nby the Initial Developer in the file described\ + \ in Exhibit A.\n\nEXHIBIT A - CUA Office Public License.\n\n``The contents of this file\ + \ are subject to the CUA Office Public License\nVersion 1.0 (the \"License\"); you may not\ + \ use this file except in\ncompliance with the License. You may obtain a copy of the License\ + \ at\nhttp://cuaoffice.sourceforge.net/\n\nSoftware distributed under the License is distributed\ + \ on an \"AS IS\"\nbasis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the\n\ + License for the specific language governing rights and limitations\nunder the License.\n\ + \nThe Original Code is .\n\nThe Initial Developer of the Original Code is .\nPortions\ + \ created by are Copyright (C) \n . All Rights Reserved.\n\nContributor(s): .\n\nAlternatively,\ + \ the contents of this file may be used under the terms\nof the license (the \"[ ] License\"\ + ), in which case the\nprovisions of [ ] License are applicable instead of those\nabove.\ + \ If you wish to allow use of your version of this file only\nunder the terms of the [ ]\ + \ License and not to allow others to use\nyour version of this file under the CUAPL, indicate\ + \ your decision by\ndeleting the provisions above and replace them with the notice and\n\ + other provisions required by the [ ] License. If you do not delete\nthe provisions above,\ + \ a recipient may use your version of this file\nunder either the CUAPL or the [ ] License.\"\ + \n\n[NOTE: The text of this Exhibit A may differ slightly from the text of\nthe notices\ + \ in the Source Code files of the Original Code. You should\nuse the text of this Exhibit\ + \ A rather than the text found in the\nOriginal Code Source Code for Your Modifications.]" json: cua-opl-1.0.json - yml: cua-opl-1.0.yml + yaml: cua-opl-1.0.yml html: cua-opl-1.0.html - text: cua-opl-1.0.LICENSE + license: cua-opl-1.0.LICENSE - license_key: cube + category: Permissive spdx_license_key: Cube other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Cube game engine source code, 20 dec 2003 release. + + Copyright (C) 2001-2003 Wouter van Oortmerssen. + + 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. + + additional clause specific to Cube: + + 4. Source versions may not be "relicensed" under a different license + without my explicitly written permission. json: cube.json - yml: cube.yml + yaml: cube.yml html: cube.html - text: cube.LICENSE + license: cube.LICENSE - license_key: cubiware-software-1.0 + category: Commercial spdx_license_key: LicenseRef-scancode-cubiware-software-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + Cubiware Sp. z o.o. Software License Version 1.0 + + Any rights which are not expressly granted in this License are entirely and + exclusively reserved to and by Cubiware Sp. z o.o. You may not rent, lease, + modify, translate, reverse engineer, decompile, disassemble, or create + derivative works based on this Software. You may not make access to this + Software available to others in connection with a service bureau, + application service provider, or similar business, or make any other use of + this Software without express written permission from Cubiware Sp. z o.o. + + Any User wishing to make use of this Software must contact + Cubiware Sp. z o.o. to arrange an appropriate license. Use of the Software + includes, but is not limited to: + (1) integrating or incorporating all or part of the code into a product for + sale or license by, or on behalf of, User to third parties; + (2) distribution of the binary or source code to third parties for use with + a commercial product sold or licensed by, or on behalf of, User. json: cubiware-software-1.0.json - yml: cubiware-software-1.0.yml + yaml: cubiware-software-1.0.yml html: cubiware-software-1.0.html - text: cubiware-software-1.0.LICENSE + license: cubiware-software-1.0.LICENSE - license_key: cups + category: Copyleft spdx_license_key: LicenseRef-scancode-cups other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + Software License Agreement + + Copyright 2007-2009 by Apple Inc. + 1 Infinite Loop + Cupertino, CA 95014 USA + + WWW: http://www.cups.org/ + + Introduction + + CUPSTM is provided under the GNU General Public License ("GPL") and GNU Library General Public License ("LGPL"), Version 2, with exceptions for Apple operating systems and the OpenSSL toolkit. A copy of the exceptions and licenses follow this introduction. + + The GNU LGPL applies to the CUPS and CUPS Imaging libraries located in the "cups" and "filter" subdirectories of the CUPS source distribution and in the "cups" include directory and library files in the binary distributions. The GNU GPL applies to the remainder of the CUPS distribution, including the "pdftops" filter which is based upon Xpdf. + + For those not familiar with the GNU GPL, the license basically allows you to: + + Use the CUPS software at no charge. + Distribute verbatim copies of the software in source or binary form. + Sell verbatim copies of the software for a media fee, or sell support for the software. + What this license does not allow you to do is make changes or add features to CUPS and then sell a binary distribution without source code. You must provide source for any changes or additions to the software, and all code must be provided under the GPL or LGPL as appropriate. The only exceptions to this are the portions of the CUPS software covered by the Apple operating system license exceptions outlined later in this license agreement. + + The GNU LGPL relaxes the "link-to" restriction, allowing you to develop applications that use the CUPS and CUPS Imaging libraries under other licenses and/or conditions as appropriate for your application, driver, or filter. + + License Exceptions + + In addition, as the copyright holder of CUPS, Apple Inc. grants the following special exceptions: + + Apple Operating System Development License Exception; + Software that is developed by any person or entity for an Apple Operating System ("Apple OS-Developed Software"), including but not limited to Apple and third party printer drivers, filters, and backends for an Apple Operating System, that is linked to the CUPS imaging library or based on any sample filters or backends provided with CUPS shall not be considered to be a derivative work or collective work based on the CUPS program and is exempt from the mandatory source code release clauses of the GNU GPL. You may therefore distribute linked combinations of the CUPS imaging library with Apple OS-Developed Software without releasing the source code of the Apple OS-Developed Software. You may also use sample filters and backends provided with CUPS to develop Apple OS-Developed Software without releasing the source code of the Apple OS-Developed Software. + An Apple Operating System means any operating system software developed and/or marketed by Apple Computer, Inc., including but not limited to all existing releases and versions of Apple's Darwin, Mac OS X, and Mac OS X Server products and all follow-on releases and future versions thereof. + This exception is only available for Apple OS-Developed Software and does not apply to software that is distributed for use on other operating systems. + All CUPS software that falls under this license exception have the following text at the top of each source file: + This file is subject to the Apple OS-Developed Software exception. + OpenSSL Toolkit License Exception; + Apple Inc. explicitly allows the compilation and distribution of the CUPS software with the OpenSSL Toolkit. + No developer is required to provide these exceptions in a derived work. + + Kerberos Support Code + + The Kerberos support code ("KSC") is copyright 2006 by Jelmer Vernooij and is provided 'as-is', without any express or implied warranty. In no event will the author or Apple Inc. be held liable for any damages arising from the use of the KSC. + + Sources files containing KSC have the following text at the top of each source file: + + This file contains Kerberos support code, copyright 2006 by Jelmer Vernooij. + The KSC copyright and license apply only to Kerberos-related feature code in CUPS. Such code is typically conditionally compiled based on the present of the HAVE_GSSAPI preprocessor definition. + + Permission is granted to anyone to use the KSC for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: + + The origin of the KSC must not be misrepresented; you must not claim that you wrote the original software. If you use the KSC in a product, an acknowledgment in the product documentation would be appreciated but is not required. + Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. + This notice may not be removed or altered from any source distribution. + Trademarks + + CUPS and the CUPS logo (the "CUPS Marks") are trademarks of Apple Inc. Apple grants you a non-exclusive and non-transferable right to use the CUPS Marks in any direct port or binary distribution incorporating CUPS software and in any promotional material therefor. You agree that your products will meet the highest levels of quality and integrity for similar goods, not be unlawful, and be developed, manufactured, and distributed in compliance with this license. You will not interfere with Apple's rights in the CUPS Marks, and all use of the CUPS Marks shall inure to the benefit of Apple. This license does not apply to use of the CUPS Marks in a derivative products, which requires prior written permission from Apple Inc. json: cups.json - yml: cups.yml + yaml: cups.yml html: cups.html - text: cups.LICENSE + license: cups.LICENSE - license_key: cups-apple-os-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-cups-apple-os-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "In addition, as the copyright holder of CUPS, Apple Inc. grants\nthe following special\ + \ exceptions:\n\n 1. Apple Operating System Development License Exception;\n\n\ta. Software\ + \ that is developed by any person or entity\n\t for an Apple Operating System (\"Apple\ + \ OS-Developed\n\t Software\"), including but not limited to Apple and\n\t third party\ + \ printer drivers, filters, and backends\n\t for an Apple Operating System, that is linked\ + \ to the\n\t CUPS imaging library or based on any sample filters\n\t or backends provided\ + \ with CUPS shall not be\n\t considered to be a derivative work or collective work\n\t\ + \ based on the CUPS program and is exempt from the\n\t mandatory source code release\ + \ clauses of the GNU GPL.\n\t You may therefore distribute linked combinations of\n\t\ + \ the CUPS imaging library with Apple OS-Developed\n\t Software without releasing the\ + \ source code of the\n\t Apple OS-Developed Software. You may also use sample\n\t filters\ + \ and backends provided with CUPS to develop\n\t Apple OS-Developed Software without releasing\ + \ the\n\t source code of the Apple OS-Developed Software.\n\n\tb. An Apple Operating System\ + \ means any operating system\n\t software developed and/or marketed by Apple Inc.,\n\t\ + \ including but not limited to all existing releases and\n\t versions of Apple's Darwin,\ + \ OS X, and OS X Server\n\t products and all follow-on releases and future\n\t versions\ + \ thereof.\n\n\tc. This exception is only available for Apple\n\t OS-Developed Software\ + \ and does not apply to software\n\t that is distributed for use on other operating\n\t\ + \ systems.\n\n\td. All CUPS software that falls under this license\n\t exception have\ + \ the following text at the top of each\n\t source file:\n\n\t This file is subject\ + \ to the Apple OS-Developed\n\t Software exception.\n\n 2. OpenSSL Toolkit License\ + \ Exception;\n\n\ta. Apple Inc. explicitly allows the compilation and\n\t distribution\ + \ of the CUPS software with the OpenSSL\n\t Toolkit.\n\nNo developer is required to provide\ + \ these exceptions in a\nderived work." json: cups-apple-os-exception.json - yml: cups-apple-os-exception.yml + yaml: cups-apple-os-exception.yml html: cups-apple-os-exception.html - text: cups-apple-os-exception.LICENSE + license: cups-apple-os-exception.LICENSE - license_key: curl + category: Permissive spdx_license_key: curl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Permission to use, copy, modify, and distribute this software for any purpose\nwith\ + \ or without fee is hereby granted, provided that the above copyright\nnotice and this permission\ + \ notice appear in all copies.\n \nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY\ + \ OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n\ + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN\nNO EVENT\ + \ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY,\ + \ WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\ + \ WITH THE SOFTWARE OR THE USE\nOR OTHER DEALINGS IN THE SOFTWARE.\n \nExcept as contained\ + \ in this notice, the name of a copyright holder shall not\nbe used in advertising or otherwise\ + \ to promote the sale, use or other dealings\nin this Software without prior written authorization\ + \ of the copyright holder." json: curl.json - yml: curl.yml + yaml: curl.yml html: curl.html - text: curl.LICENSE + license: curl.LICENSE - license_key: cve-tou + category: Permissive spdx_license_key: LicenseRef-scancode-cve-tou other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + CVE Usage: MITRE hereby grants 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 Common Vulnerabilities and Exposures (CVE®). Any copy you make for + such purposes is authorized provided that you reproduce MITRE's copyright + designation and this license in any such copy. + + DISCLAIMERS + + ALL DOCUMENTS AND THE INFORMATION CONTAINED THEREIN PROVIDED BY MITRE ARE + PROVIDED ON AN "AS IS" BASIS AND THE CONTRIBUTOR, THE ORGANIZATION HE/SHE + REPRESENTS OR IS SPONSORED BY (IF ANY), THE MITRE CORPORATION, ITS BOARD OF + TRUSTEES, OFFICERS, AGENTS, AND EMPLOYEES, DISCLAIM ALL WARRANTIES, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE + INFORMATION THEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF + MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. json: cve-tou.json - yml: cve-tou.yml + yaml: cve-tou.yml html: cve-tou.html - text: cve-tou.LICENSE + license: cve-tou.LICENSE - license_key: cvwl + category: Proprietary Free spdx_license_key: LicenseRef-scancode-cvwl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Collaborative Virtual Workspace License (CVW)\nLicense Agreement\nGeneral\n\n 1.\ + \ Redistribution of the CVW software or derived works must reproduce MITRE's copyright designation\ + \ and this License in the documentation and/or other materials provided with the distribution.\n\ + \n Copyright © . The MITRE Corporation (http://www.mitre.org/). All Rights Reserved.\n\ + \n 2. The terms \"MITRE\" and \"The MITRE Corporation\" are trademarks of The MITRE Corporation\ + \ and must not be used to endorse or promote products derived from this software or in redistribution\ + \ of this software in any form.\n\n 3. The terms \"CVW\" and \"Collaborative Virtual\ + \ Workspace\" are trademarks of The MITRE Corporation and must not be used to endorse or\ + \ promote products derived from this software without the prior written permission of MITRE.\ + \ For written permission, please contact corpc@mitre.org.\n \n 4. UNITED STATES GOVERNMENT\ + \ RIGHTS: This software was produced for the U.S. Government under Contract No. F19628-99-C-0001,\ + \ and is subject to the Rights in Noncommercial Computer Software and Noncommercial Computer\ + \ Software Documentation Clause (DFARS) 252.227-7014 (JUN 1995). The Licensee agrees that\ + \ the US Government will not be charged any license fee and/or royalties related to this\ + \ software.\n\n 5. Downloaders of the CVW software may choose to have their access to\ + \ and use of the CVW software governed under either the GNU General Public License (Version\ + \ 2) or the Mozilla License (Version 1.0). In either case, if you transmit source code improvements\ + \ or modifications to MITRE, you agree to assign to MITRE copyright to such improvements\ + \ or modifications, which MITRE will then make available from MITRE's web site.\n\n 6.\ + \ If you choose to use the Mozilla License (Version 1.0), please note that because the software\ + \ in this module was developed using, at least in part, Government funds, the Government\ + \ has certain rights in the module which apply instead of the Government rights in Section\ + \ 10 of the Mozilla License. These Government rights DO NOT affect your right to use the\ + \ module on an Open Source basis as set forth in the Mozilla License. The statement of Government\ + \ rights which replaces Section 10 of the Mozilla License is stated in Section 4 above." json: cvwl.json - yml: cvwl.yml + yaml: cvwl.yml html: cvwl.html - text: cvwl.LICENSE + license: cvwl.LICENSE - license_key: cwe-tou + category: Permissive spdx_license_key: LicenseRef-scancode-cwe-tou other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + CWE Usage: MITRE hereby grants you a non-exclusive, royalty-free license to use + CWE for research, development, and commercial purposes. Any copy you make for + such purposes is authorized on the condition that you reproduce MITRE’s + copyright designation and this license in any such copy. + + DISCLAIMERS + + ALL DOCUMENTS AND THE INFORMATION CONTAINED IN THE CWE ARE PROVIDED ON AN + "AS IS" BASIS AND THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS OR IS + SPONSORED BY (IF ANY), THE MITRE CORPORATION, ITS BOARD OF TRUSTEES, OFFICERS, + AGENTS, AND EMPLOYEES, DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION THEREIN WILL NOT + INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. + + IN NO EVENT SHALL THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS OR IS + SPONSORED BY (IF ANY), THE MITRE CORPORATION, ITS BOARD OF TRUSTEES, OFFICERS, + AGENTS, AND EMPLOYEES 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 INFORMATION OR THE USE OR OTHER DEALINGS IN THE CWE. json: cwe-tou.json - yml: cwe-tou.yml + yaml: cwe-tou.yml html: cwe-tou.html - text: cwe-tou.LICENSE + license: cwe-tou.LICENSE - license_key: cximage + category: Permissive spdx_license_key: LicenseRef-scancode-cximage other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This copy of the CxImage notices is provided for your convenience. In case of\nany\ + \ discrepancy between this copy and the notices in the file ximage.h that is\nincluded in\ + \ the CxImage distribution, the latter shall prevail.\n\nIf you modify CxImage you may insert\ + \ additional notices immediately following\nthis sentence.\n\n--------------------------------------------------------------------------------\n\ + \nCOPYRIGHT NOTICE, DISCLAIMER, and LICENSE:\n\nCxImage version 5.99c 17/Oct/2004\n\nCxImage\ + \ : Copyright (C) 2001 - 2004, Davide Pizzolato\n\nOriginal CImage and CImageIterator implementation\ + \ are:\nCopyright (C) 1995, Alejandro Aguilar Sierra (asierra(at)servidor(dot)unam(dot)mx)\n\ + \nCovered code is provided under this license on an \"as is\" basis, without warranty\n\ + of any kind, either expressed or implied, including, without limitation, warranties\nthat\ + \ the covered code is free of defects, merchantable, fit for a particular purpose\nor non-infringing.\ + \ The entire risk as to the quality and performance of the covered\ncode is with you. Should\ + \ any covered code prove defective in any respect, you (not\nthe initial developer or any\ + \ other contributor) assume the cost of any necessary\nservicing, repair or correction.\ + \ This disclaimer of warranty constitutes an essential\npart of this license. No use of\ + \ any covered code is authorized hereunder except under\nthis disclaimer.\n\nPermission\ + \ is hereby granted to use, copy, modify, and distribute this\nsource code, or portions\ + \ hereof, for any purpose, including commercial applications,\nfreely and without fee, subject\ + \ to the following restrictions: \n\n1. The origin of this software must not be misrepresented;\ + \ you must not\nclaim that you wrote the original software. If you use this software\nin\ + \ a product, an acknowledgment in the product documentation would be\nappreciated but is\ + \ not required.\n\n2. Altered source versions must be plainly marked as such, and must not\ + \ be\nmisrepresented as being the original software.\n\n3. This notice may not be removed\ + \ or altered from any source distribution.\n\n--------------------------------------------------------------------------------\n\ + \nOther information: about CxImage, and the latest version, can be found at the\nCxImage\ + \ home page: http://www.xdp.it\n\n--------------------------------------------------------------------------------" json: cximage.json - yml: cximage.yml + yaml: cximage.yml html: cximage.html - text: cximage.LICENSE + license: cximage.LICENSE - license_key: cygwin-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-cygwin-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + In accordance with section 10 of the GPL, Red Hat permits programs whose + sources are distributed under a license that complies with the Open + Source definition to be linked with libcygwin.a without libcygwin.a + itself causing the resulting program to be covered by the GNU GPL. json: cygwin-exception-2.0.json - yml: cygwin-exception-2.0.yml + yaml: cygwin-exception-2.0.yml html: cygwin-exception-2.0.html - text: cygwin-exception-2.0.LICENSE + license: cygwin-exception-2.0.LICENSE - license_key: cygwin-exception-3.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-cygwin-exception-3.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception to GPLv3+, Red Hat grants you permission to link + software whose sources are distributed under a license that satisfies + the Open Source Definition with libcygwin.a, without libcygwin.a + itself causing the resulting program to be covered by GPLv3+. json: cygwin-exception-3.0.json - yml: cygwin-exception-3.0.yml + yaml: cygwin-exception-3.0.yml html: cygwin-exception-3.0.html - text: cygwin-exception-3.0.LICENSE + license: cygwin-exception-3.0.LICENSE - license_key: cygwin-exception-lgpl-3.0-plus + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-cygwin-exception-lgpl-3.0-plus other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, the copyright holders of the Cygwin library grant you + additional permission to link libcygwin.a, crt0.o, and gcrt0.o with independent + modules to produce an executable, and to convey the resulting executable under + terms of your choice, without any need to comply with the conditions of LGPLv3 + section 4. An independent module is a module which is not itself based on the + Cygwin library. json: cygwin-exception-lgpl-3.0-plus.json - yml: cygwin-exception-lgpl-3.0-plus.yml + yaml: cygwin-exception-lgpl-3.0-plus.yml html: cygwin-exception-lgpl-3.0-plus.html - text: cygwin-exception-lgpl-3.0-plus.LICENSE + license: cygwin-exception-lgpl-3.0-plus.LICENSE - license_key: cypress-linux-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-cypress-linux-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + ### CYPRESS WIRELESS CONNECTIVITY DEVICES + ### DRIVER END USER LICENSE AGREEMENT (SOURCE AND BINARY DISTRIBUTION) + + PLEASE READ THIS END USER LICENSE AGREEMENT ("Agreement") CAREFULLY BEFORE + DOWNLOADING, INSTALLING, OR USING THIS SOFTWARE, ANY ACCOMPANYING + DOCUMENTATION, OR ANY UPDATES PROVIDED BY CYPRESS ("Software"). BY + DOWNLOADING, INSTALLING, OR USING THE SOFTWARE, YOU ARE AGREEING TO BE BOUND + BY THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL OF THE TERMS OF THIS + AGREEMENT, PROMPTLY RETURN AND DO NOT USE THE SOFTWARE. IF YOU HAVE + PURCHASED THE SOFTWARE, YOUR RIGHT TO RETURN THE SOFTWARE EXPIRES 30 DAYS + AFTER YOUR PURCHASE AND APPLIES ONLY TO THE ORIGINAL PURCHASER. + + Software Provided in Binary Code Form. This paragraph applies to any Software + provided in binary code form. Subject to the terms and conditions of this + Agreement, Cypress Semiconductor Corporation ("Cypress") grants you a + non-exclusive, non-transferable license under its copyright rights in the + Software to reproduce and distribute the Software in object code form only, + solely for use in connection with Cypress integrated circuit products + ("Purpose"). + + Software Provided in Source Code Form. This paragraph applies to any Software + provided in source code form ("Cypress Source Code"). Subject to the terms and + conditions of this Agreement, Cypress grants you a non-exclusive, + non-transferable license under its copyright rights in the Cypress Source Code + to reproduce, modify, compile, and distribute the Cypress Source Code (whether + in source code form or as compiled into binary code form) solely for the + Purpose. Cypress retains ownership of the Cypress Source Code and any compiled + version thereof. Subject to Cypress' ownership of the underlying Cypress + Source Code, you retain ownership of any modifications you make to the + Cypress Source Code. You agree not to remove any Cypress copyright or other + notices from the Cypress Source Code and any modifications thereof. Any + reproduction, modification, translation, compilation, or representation of + the Cypress Source Code except as permitted in this paragraph is prohibited + without the express written permission of Cypress. + + Free and Open Source Software. Portions of the Software may be licensed under + free and/or open source licenses such as the GNU General Public License + ("FOSS"). FOSS is subject to the applicable license agreement and not this + Agreement. If you are entitled to receive the source code from Cypress for any + FOSS included with the Software, either the source code will be included with + the Software or you may obtain the source code at no charge from + . The applicable license terms will + accompany each source code package. To review the license terms applicable to + any FOSS for which Cypress is not required to provide you with source code, + please see the Software's installation directory on your computer. + + Proprietary Rights. The Software, including all intellectual property rights + therein, is and will remain the sole and exclusive property of Cypress or its + suppliers. Except as otherwise expressly provided in this Agreement, you may + not: (i) modify, adapt, or create derivative works based upon the Software; + (ii) copy the Software; (iii) except and only to the extent explicitly + permitted by applicable law despite this limitation, decompile, translate, + reverse engineer, disassemble or otherwise reduce the Software to + human-readable form; or (iv) use the Software other than for the Purpose. + + No Support. Cypress may, but is not required to, provide technical support for + the Software. + + Term and Termination. This Agreement is effective until terminated. This + Agreement and Your license rights will terminate immediately without notice + from Cypress if you fail to comply with any provision of this Agreement. Upon + termination, you must destroy all copies of Software in your possession or + control. Termination of this Agreement will not affect any licenses validly + granted as of the termination date to any end users of the Software. The + following paragraphs shall survive any termination of this Agreement: "Free and + Open Source Software," "Proprietary Rights," "Compliance With Law," + "Disclaimer," "Limitation of Liability," and "General." + + Compliance With Law. Each party agrees to comply with all applicable laws, + rules and regulations in connection with its activities under this Agreement. + Without limiting the foregoing, the Software may be subject to export control + laws and regulations of the United States and other countries. You agree to + comply strictly with all such laws and regulations and acknowledge that you + have the responsibility to obtain licenses to export, re-export, or import + the Software. + + Disclaimer. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, CYPRESS MAKES + NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO THE SOFTWARE, + INCLUDING, BUT NOT LIMITED TO, INFRINGEMENT AND THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Cypress reserves the + right to make changes to the Software without notice. Cypress does not assume + any liability arising out of the application or use of Software or any + product or circuit described in the Software. Cypress does not authorize its + products for use as critical components in life-support systems where a + malfunction or failure may reasonably be expected to result in significant + injury to the user. The inclusion of Cypress' product in a life-support + system or application implies that the manufacturer of such system or + application assumes all risk of such use and in doing so indemnifies Cypress + against all charges. + + Limitation of Liability. IN NO EVENT WILL CYPRESS OR ITS SUPPLIERS, + RESELLERS, OR DISTRIBUTORS BE LIABLE FOR ANY LOST REVENUE, PROFIT, OR DATA, + OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL, OR PUNITIVE DAMAGES + HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE + USE OF OR INABILITY TO USE THE SOFTWARE EVEN IF CYPRESS OR ITS SUPPLIERS, + RESELLERS, OR DISTRIBUTORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH + DAMAGES. IN NO EVENT SHALL CYPRESS' OR ITS SUPPLIERS' RESELLERS', OR + DISTRIBUTORS' TOTAL LIABILITY TO YOU, WHETHER IN CONTRACT, TORT (INCLUDING + NEGLIGENCE), OR OTHERWISE, EXCEED THE PRICE PAID BY YOU FOR THE SOFTWARE. + THE FOREGOING LIMITATIONS SHALL APPLY EVEN IF THE ABOVE-STATED WARRANTY FAILS + OF ITS ESSENTIAL PURPOSE. BECAUSE SOME STATES OR JURISDICTIONS DO NOT ALLOW + LIMITATION OR EXCLUSION OF CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE + LIMITATION MAY NOT APPLY TO YOU. + + Restricted Rights. The Software under this Agreement is commercial computer + software as that term is described in 48 C.F.R. 252.227-7014(a)(1). If + acquired by or on behalf of a civilian agency, the U.S. Government acquires + this commercial computer software and/or commercial computer software + documentation subject to the terms of this Agreement as specified in 48 + C.F.R. 12.212 (Computer Software) and 12.211 (Technical Data) of the Federal + Acquisition Regulations ("FAR") and its successors. If acquired by or on + behalf of any agency within the Department of Defense ("DOD"), the U.S. + Government acquires this commercial computer software and/or commercial + computer software documentation subject to the terms of this Agreement as + specified in 48 C.F.R. 227.7202-3 of the DOD FAR Supplement ("DFAR") and its + successors. + + General. This Agreement will bind and inure to the benefit of each party's + successors and assigns, provided that you may not assign or transfer this + Agreement, in whole or in part, without Cypress' written consent. This + Agreement shall be governed by and construed in accordance with the laws of + the State of California, United States of America, as if performed wholly + within the state and without giving effect to the principles of conflict of + law. The parties consent to personal and exclusive jurisdiction of and venue + in, the state and federal courts within Santa Clara County, California; + provided however, that nothing in this Agreement will limit Cypress' right to + bring legal action in any venue in order to protect or enforce its + intellectual property rights. No failure of either party to exercise or + enforce any of its rights under this Agreement will act as a waiver of such + rights. If any portion hereof is found to be void or unenforceable, the + remaining provisions of this Agreement shall remain in full force and + effect. This Agreement is the complete and exclusive agreement between the + parties with respect to the subject matter hereof, superseding and replacing + any and all prior agreements, communications, and understandings (both + written and oral) regarding such subject matter. Any notice to Cypress will + be deemed effective when actually received and must be sent to Cypress + Semiconductor Corporation, ATTN: Chief Legal Officer, 198 Champion Court, San + Jose, CA 95134 USA. json: cypress-linux-firmware.json - yml: cypress-linux-firmware.yml + yaml: cypress-linux-firmware.yml html: cypress-linux-firmware.html - text: cypress-linux-firmware.LICENSE + license: cypress-linux-firmware.LICENSE - license_key: d-fsl-1.0-de + category: Copyleft spdx_license_key: D-FSL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "Deutsche Freie Software Lizenz\n\n(c) Ministerium für Wissenschaft und Forschung \n\ + Nordrhein-Westfalen 2004\n\nErstellt von Axel Metzger und Till Jaeger, \nInstitut für Rechtsfragen\ + \ der Freien und Open \nSource Software - .\n\nPräambel\n\nSoftware\ + \ ist mehr als ein Wirtschaftsgut. Sie ist \ndie technische Grundlage der \nInformationsgesellschaft.\ + \ Die Frage der Teilhabe \nder Allgemeinheit ist deswegen von besonderer \nBedeutung. Herkömmlich\ + \ lizenzierte Programme \nwerden nur im Object Code vertrieben, der Nutzer \ndarf das Programm\ + \ weder verändern noch \nweitergeben. Das Lizenzmodell der Freien Software \n(synonym \"\ + Open Source Software\") gewährt Ihnen \ndagegen umfassende Freiheiten im Umgang mit dem\ + \ \nProgramm. Die Deutsche Freie Software Lizenz \nfolgt diesem Lizenzmodell. Sie gewährt\ + \ Ihnen das \nRecht, das Programm in umfassender Weise zu \nnutzen. Es ist Ihnen gestattet,\ + \ das Programm nach \nIhren Vorstellungen zu verändern, in veränderter \noder unveränderter\ + \ Form zu vervielfältigen, zu \nverbreiten und öffentlich zugänglich zu machen. \nDiese\ + \ Rechte werden unentgeltlich eingeräumt. \n\nDie Deutsche Freie Software Lizenz verbindet\ + \ die \nRechtseinräumung allerdings mit Pflichten, die \ndem Zweck dienen, das freie Zirkulieren\ + \ des \nProgramms und aller veröffentlichten \nFortentwicklungen zu sichern. Wenn Sie das\ + \ \nProgramm verbreiten oder öffentlich zugänglich \nmachen, dann müssen Sie jedem, der\ + \ das Programm \nvon Ihnen erhält, eine Kopie dieser Lizenz \nmitliefern und den Zugriff\ + \ auf den Source Code \nermöglichen. Eine weitere Pflicht betrifft \nFortentwicklungen des\ + \ Programms. Änderungen am \nProgramm, die Sie öffentlich verbreiten oder \nzugänglich machen,\ + \ müssen nach den Bestimmungen \ndieser Lizenz frei gegeben werden. \n\nDie Deutsche Freie\ + \ Software Lizenz nimmt auf die \nbesonderen Anforderungen des deutschen und \neuropäischen\ + \ Rechts Rücksicht. Sie ist \nzweisprachig gestaltet und damit auch auf den \ninternationalen\ + \ Vertrieb ausgerichtet. \n\n\n§ 0 Definitionen\n\nDokumentation: Die Beschreibung des Aufbaus\ + \ \nund/oder der Struktur der Programmierung und/oder \nder Funktionalitäten des Programms,\ + \ unabhängig \ndavon, ob sie im Source Code oder gesondert \nvorgenommen wird.\n\nLizenz:\ + \ Die zwischen dem Lizenzgeber und Ihnen \ngeschlossene Vereinbarung mit dem Inhalt der\ + \ \n\"Deutschen Freien Software Lizenz\" bzw. das \nAngebot hierzu. \n\nLizenznehmer: Jede\ + \ natürliche oder juristische \nPerson, die die Lizenz angenommen hat.\n\nProgramm: Jedes\ + \ Computerprogramm, das von den \nRechtsinhabern nach den Bestimmungen dieser \nLizenz verbreitet\ + \ oder öffentlich zugänglich \ngemacht worden ist.\n\nObject Code: Die maschinenlesbare,\ + \ übersetzte \nForm des Programms.\n\nÖffentlich: Nicht nur an einen bestimmten \nPersonenkreis\ + \ gerichtet, der persönlich oder \ndurch die Zugehörigkeit zu einer juristischen \nPerson\ + \ oder einem öffentlichen Träger miteinander \nverbunden ist.\n\nÖffentlich zugänglich machen:\ + \ Die öffentliche \nWeitergabe des Programms in unkörperlicher Form, \ninsbesondere das\ + \ Bereithalten zum Download in \nDatennetzen. \n\nRechtsinhaber: Der bzw. die Urheber oder\ + \ \nsonstigen Inhaber der ausschließlichen \nNutzungsrechte an dem Programm.\n\nSource Code:\ + \ Die für Menschen lesbare, in \nProgrammiersprache dargestellte Form des \nProgramms.\n\ + \nVerändern: Jede Erweiterung, Kürzung und \nBearbeitung des Programms, insbesondere \n\ + Weiterentwicklungen.\n\nVerbreiten: Die öffentliche Weitergabe \nkörperlicher Vervielfältigungsstücke,\ + \ \ninsbesondere auf Datenträgern oder in Verbindung \nmit Hardware. \n\nVollständiger Source\ + \ Code: Der Source Code in der \nfür die Erstellung bzw. die Bearbeitung benutzten \nForm\ + \ zusammen mit den zur Übersetzung und \nInstallation erforderlichen Konfigurationsdateien\ + \ \nund Software-Werkzeugen, sofern diese in der \nbenötigten Form nicht allgemein gebräuchlich\ + \ \n(z.B. Standard-Kompiler) oder für jedermann \nlizenzgebührenfrei im Internet abrufbar\ + \ sind.\n\n\n§ 1 Rechte\n\n(1) Sie dürfen das Programm in unveränderter Form \nvervielfältigen,\ + \ verbreiten und öffentlich \nzugänglich machen. \n\n(2) Sie dürfen das Programm verändern\ + \ und \nentsprechend veränderte Versionen \nvervielfältigen, verbreiten und öffentlich \n\ + zugänglich machen. Gestattet ist auch die \nKombination des Programms oder Teilen hiervon\ + \ mit \nanderen Programmen. \n\n(3) Sie erhalten die Rechte unentgeltlich.\n\n\n§ 2 Pflichten\ + \ beim Vertrieb\n\n(1) Wenn Sie das Programm verbreiten oder \nöffentlich zugänglich machen,\ + \ sei es in \nunveränderter oder veränderter Form, sei es in \neiner Kombination mit anderen\ + \ Programmen oder in \nVerbindung mit Hardware, dann müssen sie \nmitliefern:\n\n1. alle\ + \ Vermerke im Source Code und/oder Object \nCode, die auf diese Lizenz hinweisen;\n \n2.\ + \ alle Vermerke im Source Code und/oder Object \nCode, die über die Urheber des Programms\ + \ Auskunft \ngeben;\n\n3. einen für den Empfänger deutlich wahrnehmbaren \nHinweis auf diese\ + \ Lizenz und die Internetadresse \n; \n\n4. den vollständigen Text\ + \ dieser Lizenz in \ndeutlich wahrnehmbarer Weise.\n\n(2) Wenn bei der Installation des\ + \ Programms \nund/oder beim Programmstart Lizenz- und/oder \nVertragsbedingungen angezeigt\ + \ werden, dann müssen\n\n1. diese Lizenz,\n\n2. ein Hinweis auf diese Lizenz und\n\n3. ein\ + \ Hinweis auf den oder die Rechtsinhaber an \nden ersten unter dieser Lizenz nutzbaren \n\ + Programmbestandteilen \n\nebenfalls angezeigt werden. \n\n(3) Sie dürfen die Nutzung des\ + \ Programms nicht \nvon Pflichten oder Bedingungen abhängig machen, \ndie nicht in dieser\ + \ Lizenz vorgesehen sind. \n\n(4) Sofern Sie mit dem Programm eine \nDokumentation erhalten\ + \ haben, muss diese \nDokumentation entsprechend mitgeliefert werden, \nes sei denn, die\ + \ freie Mitlieferung der \nDokumentation ist Ihnen aufgrund der Lizenz für \ndie Dokumentation\ + \ nicht gestattet.\n\n\n§ 3 Weitere Pflichten beim Vertrieb veränderter \nVersionen \n\n\ + (1) Veränderte Versionen des Programms dürfen Sie \nnur unter den Bedingungen dieser Lizenz\ + \ \nverbreiten oder öffentlich zugänglich machen, so \ndass Dritte das veränderte Programm\ + \ insgesamt \nunter dieser Lizenz nutzen können. \n\n(2) Wird das Programm oder ein Teil\ + \ hiervon mit \neinem anderen Programm kombiniert, gilt auch die \nKombination insgesamt\ + \ als eine veränderte Version \ndes Programms, es sei denn, das andere Programm \nist formal\ + \ und inhaltlich eigenständig. Ein \nanderes Programm ist dann als eigenständig \nanzusehen,\ + \ wenn es die folgenden Voraussetzungen \nalle erfüllt:\n\n1. Der Source Code der kombinierten\ + \ Programme \nmuss jeweils in eigenen Dateien vorhanden sein, \ndie keine Bestandteile des\ + \ anderen Teils \nenthalten, die über die zur Programmkombination \nüblichen und erforderlichen\ + \ Informationen über \nden anderen Teil hinausgehen, wobei der Source \nCode des anderen\ + \ Programms nicht mitgeliefert \nwerden muss.\n\n2. Der mit dem Programm kombinierte Teil\ + \ muss \nauch dann sinnvoll nutzbar sein, wenn er nicht \nmit dem Programm kombiniert wird,\ + \ und zwar \nentweder alleine oder mit sonstigen Programmen. \nWas als \"sinnvoll nutzbar\"\ + \ anzusehen ist, richtet \nsich nach der Auffassung der betroffenen \nFachkreise. Zu den\ + \ betroffenen Fachkreisen \ngehören alle Personen, die das Programm oder \nProgramme mit\ + \ vergleichbarer Funktionalität \nentwickeln, benutzen, verbreiten oder öffentlich \nzugänglich\ + \ machen.\n\n(3) Wenn Sie das Programm oder einen Teil hiervon \n- verändert oder unverändert\ + \ - zusammen mit einem \nanderen Programm verbreiten oder öffentlich \nzugänglich machen,\ + \ das unter der GNU General \nPublic License (GPL) lizenziert wird, darf das \nProgramm\ + \ auch unter den Bedingungen der GPL \ngenutzt werden, sofern es mit dem anderen \nProgramm\ + \ ein \"derivative work\" im Sinne der GPL \nbildet. Dabei sollen die Hinweise auf diese\ + \ \nLizenz entfernt und durch einen Hinweis auf die \nGPL ersetzt werden. Ob bei der Zusammenstellung\ + \ \nein \"derivate work\" im Sinne der GPL entsteht, \nbeurteilt sich nach Ziffer 2 b) der\ + \ GPL. Diese \nBestimmung lautet: \"You must cause any work that \nyou distribute or publish,\ + \ that in whole or in \npart contains or is derived from the Program or \nany part thereof,\ + \ to be licensed as a whole at no \ncharge to all third parties under the terms of \nthis\ + \ License.\" Die GPL kann abgerufen werden \nunter .\n\n\ + (4) Wenn Sie das Programm in einer veränderten \nForm verbreiten oder öffentlich zugänglich\ + \ \nmachen, müssen Sie im Source Code einen Hinweis \nmit den Änderungen aufnehmen und mit\ + \ dem Datum \nder Änderung versehen. Der Hinweis muss erkennen \nlassen, welche Änderungen\ + \ vorgenommen wurden und \nbestehende Vermerke, die über die Urheber des \nProgramms Auskunft\ + \ geben, übernehmen. Dies gilt \nunabhängig davon, ob Sie einen eigenen \nUrhebervermerk\ + \ hinzufügen. Anstelle eines \nHinweises im Source Code können Sie auch ein \nVersionskontrollsystem\ + \ verwenden oder \nweiterführen, sofern dieses mitverbreitet wird \noder öffentlich zugänglich\ + \ ist.\n\n(5) Sie dürfen von Dritten für die Einräumung \neines einfachen Nutzungsrechts\ + \ an veränderten \nVersionen des Programms kein Entgelt verlangen.\n\n(6) Wenn Sie an der\ + \ veränderten Version des \nProgramms ein anderes Schutzrecht als ein \nUrheberrecht erwerben,\ + \ insbesondere ein Patent \noder Gebrauchsmuster, lizenzieren Sie dieses \nSchutzrecht für\ + \ veränderte und unveränderte \nVersionen des Programms in dem Umfang, der \nerforderlich\ + \ ist, um die Rechte aus dieser Lizenz \nwahrnehmen zu können. \n\n\n§ 4 Weitere Pflichten\ + \ beim Vertrieb im Object \nCode\n\n(1) Wenn Sie das Programm nur im Object Code \nverbreiten,\ + \ dann müssen Sie zusätzlich zu den in \n§ 2 und § 3 geregelten Pflichten entweder \n\n\ + 1. den vollständigen Source Code im Internet \nöffentlich zugänglich machen und bei der\ + \ \nVerbreitung des Object Codes deutlich auf die \nvollständige Internetadresse hinweisen,\ + \ unter der \nder Source Code abgerufen werden kann oder \n\n2. den vollständigen Source\ + \ Code auf einem \nhierfür üblichen Datenträger unter Beachtung der \n§§ 2 und 3 mitverbreiten.\n\ + \n(2) Wenn Sie das Programm im Object Code \nöffentlich zugänglich machen, dann müssen Sie\ + \ \nzusätzlich zu den in § 2 und § 3 geregelten \nPflichten den vollständigen Source Code\ + \ im \nInternet öffentlich zugänglich machen und dabei \ndeutlich auf die vollständige Internetadresse\ + \ \nhinweisen.\n\n(3) Sofern Sie mit dem Programm eine \nDokumentation erhalten haben, muss\ + \ diese \nDokumentation entsprechend der Absätze 1 und 2 \nmitgeliefert werden, es sei denn,\ + \ die freie \nMitlieferung der Dokumentation ist Ihnen aufgrund \nder Lizenz für die Dokumentation\ + \ nicht gestattet.\n\n\n§ 5 Vertragsschluss\n\n(1) Mit dieser Lizenz wird Ihnen und jeder\ + \ \nanderen Person ein Angebot auf Abschluss eines \nVertrages über die Nutzung des Programms\ + \ unter \nden Bedingungen der Deutschen Freien \nSoftwarelizenz unterbreitet.\n\n(2) Sie\ + \ dürfen das Programm nach den jeweils \nanwendbaren gesetzlichen Vorschriften \nbestimmungsgemäß\ + \ benutzen, ohne dass es der \nAnnahme dieser Lizenz bedarf. Dieses Recht \numfasst in der\ + \ Europäischen Union und in den \nmeisten anderen Rechtsordnungen insbesondere die \nfolgenden\ + \ Befugnisse: \n\n1. das Programm ablaufen zu lassen sowie die \nErstellung von hierfür\ + \ erforderlichen \nVervielfältigungen im Haupt- und Arbeitsspeicher; \n\n2. das Erstellen\ + \ einer Sicherungskopie; \n\n3. die Fehlerberichtigung; \n\n4. die Weitergabe einer rechtmäßig\ + \ erworbenen \nkörperlichen Kopie des Programms.\n \n(3) Sie erklären Ihre Zustimmung zum\ + \ Abschluss \ndieser Lizenz, indem Sie das Programm verbreiten, \nöffentlich zugänglich\ + \ machen, verändern oder in \neiner Weise vervielfältigen, die über die \nbestimmungsgemäße\ + \ Nutzung im Sinne von Absatz 2 \nhinausgeht. Ab diesem Zeitpunkt ist diese Lizenz \nals\ + \ rechtlich verbindlicher Vertrag zwischen den \nRechtsinhabern und Ihnen geschlossen, ohne\ + \ dass \nes eines Zugangs der Annahmeerklärung bei den \nRechtsinhabern bedarf.\n\n(4) Sie\ + \ und jeder andere Lizenznehmer erhalten \ndie Rechte aus dieser Lizenz direkt von den \n\ + Rechtsinhabern. Eine Unterlizenzierung oder \nÜbertragung der Rechte ist nicht gestattet.\n\ + \ \n\n§ 6 Beendigung der Rechte bei Zuwiderhandlung\n\n(1) Jede Verletzung Ihrer Verpflichtungen\ + \ aus \ndieser Lizenz führt zu einer automatischen \nBeendigung Ihrer Rechte aus dieser\ + \ Lizenz. \n\n(2) Die Rechte Dritter, die das Programm oder \nRechte an dem Programm von\ + \ Ihnen erhalten haben, \nbleiben hiervon unberührt.\n\n\n§ 7 Haftung und Gewährleistung\n\ + \n(1) Für entgegenstehende Rechte Dritter haften \ndie Rechtsinhaber nur, sofern sie Kenntnis\ + \ von \ndiesen Rechten hatten, ohne Sie zu informieren.\n\n(2) Die Haftung für Fehler und\ + \ sonstige Mängel \ndes Programms richtet sich nach den außerhalb \ndieser Lizenz getroffenen\ + \ Vereinbarungen zwischen \nIhnen und den Rechtsinhabern oder, wenn eine \nsolche Vereinbarung\ + \ nicht existiert, nach den \ngesetzlichen Regelungen. \n\n\n§ 8 Verträge mit Dritten\n\n\ + (1) Diese Lizenz regelt nur die Beziehung \nzwischen Ihnen und den Rechtsinhabern. Sie ist\ + \ \nnicht Bestandteil der Verträge zwischen Ihnen und \nDritten. \n\n(2) Die Lizenz beschränkt\ + \ Sie nicht in der \nFreiheit, mit Dritten, die von Ihnen Kopien des \nProgramms erhalten\ + \ oder Leistungen in Anspruch \nnehmen, die im Zusammenhang mit dem Programm \nstehen, Verträge\ + \ beliebigen Inhalts zu schließen, \nsofern Sie dabei Ihren Verpflichtungen aus dieser \n\ + Lizenz nachkommen und die Rechte der Dritten aus \ndieser Lizenz nicht beeinträchtigt werden.\ + \ \nInsbesondere dürfen Sie für die Überlassung des \nProgramms oder sonstige Leistungen\ + \ ein Entgelt \nverlangen. \n\n(3) Diese Lizenz verpflichtet Sie nicht, das \nProgramm an\ + \ Dritte weiterzugeben. Es steht Ihnen \nfrei zu entscheiden, wem Sie das Programm \nzugänglich\ + \ machen. Sie dürfen aber die weitere \nNutzung durch Dritte nicht durch den Einsatz \n\ + technischer Schutzmaßnahmen, insbesondere durch \nden Einsatz von Kopierschutzvorrichtungen\ + \ \njeglicher Art, verhindern oder erschweren. Eine \npasswortgeschützte Zugangsbeschränkung\ + \ oder die \nNutzung in einem Intranet wird nicht als \ntechnische Schutzmaßnahme angesehen.\n\ + \n\n§ 9 Text der Lizenz\n\n(1) Diese Lizenz ist in deutscher und englischer \nSprache abgefasst.\ + \ Beide Fassungen sind gleich \nverbindlich. Es wird unterstellt, dass die in der \nLizenz\ + \ verwandten Begriffe in beiden Fassungen \ndieselbe Bedeutung haben. Ergeben sich dennoch\ + \ \nUnterschiede, so ist die Bedeutung maßgeblich, \nwelche die Fassungen unter Berücksichtigung\ + \ des \nZiels und Zwecks der Lizenz am besten miteinander \nin Einklang bringt. \n\n(2)\ + \ Der Lizenzrat der Deutschen Freien Software \nLizenz kann mit verbindlicher Wirkung neue\ + \ \nVersionen der Lizenz in Kraft setzen, soweit \ndies erforderlich und zumutbar ist.\ + \ Neue \nVersionen der Lizenz werden auf der Internetseite \n mit einer\ + \ eindeutigen \nVersionsnummer veröffentlicht. Die neue Version \nder Lizenz erlangt für\ + \ Sie verbindliche Wirkung, \nwenn Sie von deren Veröffentlichung Kenntnis \ngenommen haben.\ + \ Gesetzliche Rechtsbehelfe gegen \ndie Änderung der Lizenz werden durch die \nvorstehenden\ + \ Bestimmungen nicht beschränkt. \n\n(3) Sie dürfen diese Lizenz in unveränderter Form \n\ + vervielfältigen, verbreiten und öffentlich \nzugänglich machen.\n\n\n§ 10 Anwendbares Recht\n\ + \nAuf diese Lizenz findet deutsches Recht \nAnwendung.\n\n\nAnhang: Wie unterstellen Sie\ + \ ein Programm der \nDeutschen Freien Software Lizenz?\n\nUm jedermann den Abschluss dieser\ + \ Lizenz zu \nermöglichen, wird empfohlen, das Programm mit \nfolgendem Hinweis auf die\ + \ Lizenz zu versehen:\n\n\"Copyright (C) 20[jj] [Name des Rechtsinhabers]. \n\nDieses Programm\ + \ kann durch jedermann gemäß den \nBestimmungen der Deutschen Freien Software Lizenz \n\ + genutzt werden. \n\nDie Lizenz kann unter \nabgerufen werden.\"" json: d-fsl-1.0-de.json - yml: d-fsl-1.0-de.yml + yaml: d-fsl-1.0-de.yml html: d-fsl-1.0-de.html - text: d-fsl-1.0-de.LICENSE + license: d-fsl-1.0-de.LICENSE - license_key: d-fsl-1.0-en + category: Copyleft spdx_license_key: LicenseRef-scancode-d-fsl-1.0-en other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "German Free Software License\n\n(c) Ministry of Science and Research, State of \nNorth-Rhine\ + \ Westphalia 2004\n\nDeveloped and created by Axel Metzger and Till \nJaeger, Institut für\ + \ Rechtsfragen der Freien und \nOpen Source Software (Institute for Legal Issues \nOn Free\ + \ and Open Source Software), \n.\n\nPreamble\n\nSoftware is more than\ + \ a mere economic asset. It \nis the technical foundation of the information \nsociety.\ + \ Therefore, the issue of the public share \nin software is of particular importance. \n\ + Conventionally licensed computer programs are \ndistributed in object code form only, and\ + \ the \nuser is not entitled to modify or pass on the \nprogram to third parties. The license\ + \ model for \nFree Software (synonym \"Open Source Software\"), \nhowever, grants comprehensive\ + \ rights in the \nhandling of the program. The German Free Software \nLicense is based on\ + \ this license model. It gives \nyou the right to use the program in a \ncomprehensive manner.\ + \ You are allowed to modify \nthe computer program according to your \nrequirements or to\ + \ reproduce or distribute it and \nmake it publicly available in a modified or \nunmodified\ + \ form. These rights are granted free of \ncharge. \n\nHowever, the German Free Software\ + \ License \ncombines these rights with certain obligations \nthat will ensure the free circulation\ + \ of the \nprogram and all further developments published. \nIf you distribute the program\ + \ or make it publicly \navailable, you have to include a copy of this \nlicense to anyone\ + \ receiving the program from you \nand enable access to its source code. Another \nobligation\ + \ arises from further developments of \nthe program. Modifications to the program which\ + \ \nyou distribute or make publicly available shall \nbe released in accordance with the\ + \ conditions of \nthis license. \n\nGerman Free Software License takes into account \nthe\ + \ special requirements of German and European \nlaw. It is drafted bilingually and thus\ + \ intended \nfor international distribution. \n\n\nSection 0 Definitions\n\nDocumentation:\ + \ Description of composition, \narchitecture and/or structure of the programming \nprocess\ + \ and/or functionalities of the program, \nirrespective of whether they were done in the\ + \ \nSource Code or separately.\n\nLicense: The agreement concluded between the \nlicensor\ + \ and you, with the content of the German \nFree Software License and/or the pertaining\ + \ \noffer. \n\nLicensee: Every natural or legal entity who has \naccepted this License.\n\ + \nProgram: Every computer program which has been \ndistributed or made publicly available\ + \ by the \nentitled person in accordance with the terms of \nthis License.\n\nObject Code:\ + \ The machine-readable form of the \nProgram.\n\nPublic/publicly: Not solely directed towards\ + \ a \ncertain group of people who have a personal \nconnection to each other or are associated\ + \ \nthrough their affiliation with a legal person or \npublic organisation.\n\nMaking Publicly\ + \ Available: The public \ndistribution of the Program in an immaterial \nform, in particular,\ + \ by making it available for \ndownload in data networks. \n\nEntitled Person(s): The author(s)\ + \ or other \nholders of the exclusive right to use for the \nProgram.\n\nSource Code: The\ + \ form of the Program represented \nin programming language and readable for humans.\n\n\ + Modification: Any extension, shortening and/or \nalteration of the Program, including, but\ + \ not \nlimited to further developments.\n\nDistribution: The public passing on of material\ + \ \ncopies to third parties, in particular, onto \nstorage devices or in connection with\ + \ hardware. \n\nComplete Source Code: The Source Code in the form \nused for preparation\ + \ and/or modification together \nwith the configuration files and software tools \nrequired\ + \ for compilation and installation, \nprovided that these are not commonly used in the \n\ + required form (e.g. standard compiler) or can be \ndownloaded by any Internet user without\ + \ license \nfee.\n\n\nSection 1 Rights\n\n(1) You may reproduce and distribute the Program\ + \ \nand make it publicly available in an unmodified \nform. \n\n(2) You may modify the Program\ + \ and reproduce and \ndistribute modified versions and make them \npublicly available. It\ + \ is also permitted to \ncombine the Program or parts thereof with other \nprograms. \n\n\ + (3) You obtain the rights free of charge.\n\n\nSection 2 Obligations for Distribution and\ + \ Making \nPublicly Available\n\n(1) If you distribute the Program or make it \npublicly\ + \ available, be it in unmodified or \nmodified form, be it in combination with other \n\ + programs or in connection with hardware, you also \nhave to provide or include the following:\n\ + \n1. all references to this License in the Source \nCode and/or Object Code;\n \n2. all\ + \ references in the Source Code and/or \nObject Code containing information about the \n\ + author of the Program;\n\n3. a conspicuous reference to this License and \nthe Internet\ + \ address , to \nbe displayed in a form that can easily be read by\ + \ \nthe recipient;\n\n4. the complete text of this License in a form \neasy to perceive.\n\ + \n(2) If license and/or contract terms are \ndisplayed when the Program is installed and/or\ + \ \nstarted, the following items must also be \ndisplayed:\n\n1. this License;\n\n2. a reference\ + \ to this License; and\n\n3. a reference to the Entitled Person(s) to the \ninitial program\ + \ components used under this \nLicense.\n\n(3) You may not make the use of the Program \n\ + contingent upon the compliance with conditions or \nobligations that are not set forth in\ + \ this \nLicense. \n\n(4) Provided that you have received Documentation \nfor the Program,\ + \ you have to deliver this \nDocumentation with the Program, as well, unless \nfree delivery\ + \ of the Documentation is not \npermitted by the documentation license.\n\n\nSection 3 Further\ + \ Obligations regarding the \nDistribution of Modified Versions \n\n(1) You may only distribute\ + \ modified versions of \nthe Program or make them publicly available in \naccordance with\ + \ the terms of this License, so \nthat any third party is able to make use of the \nmodified\ + \ Program as a whole under this License. \n\n(2) If the Program or a part thereof is combined\ + \ \nwith another program, this also applies to the \nentire combination as a modified version\ + \ of the \nProgram, unless the other program is independent \nin terms of form and content.\ + \ Another program \nshall be regarded as independent if it fulfils \nthe following requirements:\n\ + \n1. The Source Code of the combined programs must \nbe contained in separate files which\ + \ do not \ninclude components of the other part except for \nparts containing the information\ + \ customary and \nrequired for the Program combination. The Source \nCode of the other program\ + \ does not have to be \ndelivered.\n\n2. The part which is combined with the Program \n\ + must also be reasonably usable when not combined \nwith the Program, i.e. on a standalone\ + \ basis or \nwith other programs. The meaning of \"reasonably \nusable\" will be based on\ + \ the opinion of pertinent \ncircles of expert groups in the relevant field. \nSuch circles\ + \ of experts include everyone who \ndevelops, uses, distributes or makes publicly \navailable\ + \ the Program concerned or programs with \nsimilar functionality.\n\n(3) If you distribute\ + \ or make publicly available \nthe Program or parts thereof - modified or \nunmodified -\ + \ in combination with another program \nlicensed under the GNU General Public License \n\ + (GPL), the Program may also be used under \nconditions of the GPL, provided it constitutes\ + \ a \n\"derivative work\" together with the other program \nin the sense of the GPL. In\ + \ this case, any \nreference to this License should be removed and \nreplaced by a reference\ + \ to the GPL. Whether a \n\"derivative work\" in the sense of the GPL arises \nfrom this\ + \ combination is primarily defined in \nsection 2 b) of the GPL. This provision reads: \n\ + \"You must cause any work that you distribute or \npublish, that in whole or in part contains\ + \ or is \nderived from the Program or any part thereof, to \nbe licensed as a whole at no\ + \ charge to all third \nparties under the terms of this License.\" The GPL \ncan be obtained\ + \ under \n.\n\n(4) If you distribute the Program or make\ + \ it \npublicly available in a modified form, you must \ninclude a reference to the modifications\ + \ and the \ndate of the modification in the Source Code. This \nreference must reveal which\ + \ modifications were \ncarried out and include existing references \ncontaining information\ + \ on the author of the \nProgram. This applies to whether or not you add \nyour own copyright\ + \ notice. Instead of a reference \nin the Source Code you may also use or carry on a \n\ + version control system, provided this is also \ndistributed or made publicly available.\ + \ \n\n(5) You may not charge any third party for the \ngranting of the non-exclusive rights\ + \ of use for \nthe Program.\n\n(6) If you acquire any other intellectual or \nindustrial\ + \ property right to this Program apart \nfrom a copyright, in particular a patent or \n\ + utility model, you license this intellectual or \nindustrial property right for modified\ + \ or \nunmodified versions of the Program to the extent \nthat is necessary to make due\ + \ use of the rights \narising from this License. \n\n\nSection 4 Further Obligations for\ + \ the \nDistribution of the Object Code\n\n(1) If you distribute the Program in Object Code\ + \ \nform only, apart from the obligations defined in \nSections 2 and 3, you have to either:\n\ + \n1. make the Complete Source Code publicly \navailable in the Internet and - when distributing\ + \ \nthe Object Code - make a clear reference to the \ncomplete Internet address from which\ + \ the Source \nCode can be downloaded; or\n\n2. distribute the Complete Source Code on\ + \ a \ncustomary data carrier, taking into consideration \nSections 2 and 3.\n\n(2) If you\ + \ make the Program publicly available in \nObject Code form, apart from the obligations\ + \ \ndefined in Sections 2 and 3 you must also make \nthe Complete Source Code publicly available\ + \ in \nthe Internet and make a clear reference to the \ncomplete Internet address.\n\n(3)\ + \ Provided that you have received the \nDocumentation for the Program, you have to \ndeliver\ + \ this Documentation together with the \nProgram in accordance with Subsections 1 and 2,\ + \ \nas well, unless free delivery of the \nDocumentation is not permitted by the \ndocumentation\ + \ license.\n\n\nSection 5 Conclusion of the Contract\n\n(1) With this License you and any\ + \ other person \nare offered the conclusion of a contract for the \nuse of this Program\ + \ under the conditions of this \nLicense.\n\n(2) You may use the Program in accordance with\ + \ \nthe applicable statutory provisions for the \nintended purpose without having to accept\ + \ this \nLicense. In the European Union and in most other \nlegal systems, this right in\ + \ particular includes \nthe following authorizations: \n\n1. Running of the Program as well\ + \ as reproducing \non hard-drive and RAM required for this;\n\n2. Making of a back-up copy;\n\ + \n3. Correcting errors;\n\n4. Distributing a lawfully acquired physical copy \nof the Program.\n\ + \ \n(3) You declare your acceptance of this License \nby distributing the Program, making\ + \ it publicly \navailable, modifying or reproducing it in a way \nthat goes beyond the intended\ + \ use in the sense of \nSubsection 2. From this time on, this License \nshall be deemed\ + \ as a legally binding agreement \nbetween the Entitled Persons and you, without the \n\ + need for the Entitled Persons to obtain a \ndeclaration of acceptance.\n\n(4) You and any\ + \ other licensee acquire the rights \narising from this License directly from the \nEntitled\ + \ Persons. Any sub-licensing or transfer \nof rights is not permitted.\n \n\nSection 6 Termination\ + \ of Rights in the Event of \nViolations\n\n(1) Any violation of your obligations under\ + \ this \nLicense automatically leads to the termination of \nyour rights under this License.\ + \ \n\n(2) Any rights of third parties having obtained \nthe Program or rights to the Program\ + \ from you \nshall remain unaffected. \n\n\nSection 7 Liability and Warranty\n\n(1) The\ + \ Entitled Persons are only liable for \nconflicting third-party rights if they were aware\ + \ \nof such rights without informing you.\n\n(2) Liability for errors and/or other defects\ + \ in \nthe Program shall be governed by agreements \nconcluded between you and the Entitled\ + \ Person \nbeyond the scope of this License or, if no such \nagreement exists, by the pertinent\ + \ statutory \nprovisions. \n\n\nSection 8 Agreements with Third Parties\n\n(1) This License\ + \ only governs the relationship \nbetween you and the Entitled Persons. It is not \npart\ + \ of agreements between you and third parties. \n\n(2) This License does not limit your\ + \ freedom to \nconclude agreements of any content whatsoever \nwith third parties obtaining\ + \ copies of the \nProgram from you or purchasing services from you \nin connection with\ + \ the Program, provided that you \nfulfil your obligations under this License and \nthird-party\ + \ rights under this License are not \ninfringed. In particular, you may charge a fee as\ + \ \nconsideration for the transfer of the Program or \nother services. \n\n(3) This License\ + \ does not commit you to forward \nthe Program to a third party. You are free to \ndecide\ + \ to whom you wish to make the Program \navailable. However, you may not prevent or \ncomplicate\ + \ further use by third parties through \nthe use of technical protective measures, in \n\ + particular, the use of copy protection of any \nkind. Password-protected access restriction\ + \ or \nuse in an Intranet shall not be regarded as \ntechnical protective measures.\n\n\n\ + Section 9 Text of the License\n\n(1) This License is written in German and \nEnglish. Both\ + \ versions are equally binding. It is \nassumed that terminology used in the License has\ + \ \nthe same meaning in both versions. Should, \nhowever, differences arise, such meaning\ + \ is \nauthoritative which best brings into line both \nversions, taking into consideration\ + \ the aim and \npurpose of the License. \n\n(2) The license board of the German Free Software\ + \ \nLicense may put into force binding new versions \nof this License inasmuch as this is\ + \ required and \nreasonable. New versions of the License will be \npublished on the Internet\ + \ site with a unique version number. The new \nversion of the License\ + \ becomes binding for you as \nsoon as you become aware of its publication. \nLegal remedies\ + \ against the modification of the \nLicense are not restricted by the regulations \ndescribed\ + \ above. \n\n(3) You may reproduce and distribute this License \nand make it publicly available\ + \ in an unmodified \nform. \n\n\nSection 10 Applicable Law\n\nThe License is governed by\ + \ German law.\n\n\nAppendix: How to submit a Program to the German \nFree Software License.\n\ + \nIn order to make it possible for anyone to \nconclude this License, it is recommended\ + \ to \ninclude the following reference to the License in \nthe Program:\n\n\"Copyright (C)\ + \ 20[yy] [Name of the Entitled \nPerson]. \n\nThis Program may be used by anyone in accordance\ + \ \nwith the terms of the German Free Software \nLicense\n\nThe License may be obtained\ + \ under .\"" json: d-fsl-1.0-en.json - yml: d-fsl-1.0-en.yml + yaml: d-fsl-1.0-en.yml html: d-fsl-1.0-en.html - text: d-fsl-1.0-en.LICENSE + license: d-fsl-1.0-en.LICENSE - license_key: d-zlib + category: Permissive spdx_license_key: LicenseRef-scancode-d-zlib other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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, in both source and binary form, subject to the following + restrictions: + + o 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. + o Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + o This notice may not be removed or altered from any source + distribution. json: d-zlib.json - yml: d-zlib.yml + yaml: d-zlib.yml html: d-zlib.html - text: d-zlib.LICENSE + license: d-zlib.LICENSE - license_key: damail + category: Permissive spdx_license_key: LicenseRef-scancode-damail other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The Don't Ask Me About It License + Full License Text + + Copying and distribution of this file, with or without modification, are + permitted in any medium provided you do not contact the author about the file or + any problems you are having with the file. + + How To Apply This To Your Stuff + + Add a copyright notice to whatever you want to license and then copy the license + text verbatim. + + License + Licensed under itself. Don't bother emailing me about it. + You can follow me on Twitter though! json: damail.json - yml: damail.yml + yaml: damail.yml html: damail.html - text: damail.LICENSE + license: damail.LICENSE - license_key: dante-treglia + category: Permissive spdx_license_key: LicenseRef-scancode-dante-treglia other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This is provided as is without express or implied warranties. You may freely + copy and compile this source into applications you distribute provided that the + copyright text below is included in the resulting source code, for example: + + "Portions copyright (c) Dante Treglia II, 2000" json: dante-treglia.json - yml: dante-treglia.yml + yaml: dante-treglia.yml html: dante-treglia.html - text: dante-treglia.LICENSE + license: dante-treglia.LICENSE - license_key: datamekanix-license + category: Permissive spdx_license_key: LicenseRef-scancode-datamekanix-license other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This code is free for personal and commercial use, providing the copyright + notice remains intact in the source files and all eventual changes are clearly + marked with comments. + + No warrantee of any kind, express or implied, is included with this software; + use at your own risk, responsibility for damages (if any) to anyone resulting + from the use of this software rests entirely with the user. json: datamekanix-license.json - yml: datamekanix-license.yml + yaml: datamekanix-license.yml html: datamekanix-license.html - text: datamekanix-license.LICENSE + license: datamekanix-license.LICENSE - license_key: day-spec + category: Proprietary Free spdx_license_key: LicenseRef-scancode-day-spec other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + [Day Specification License] + + Day Management AG ("Licensor") is willing to license this specification + to you ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED + IN THIS LICENSE AGREEMENT ("Agreement"). Please read the terms and + conditions of this Agreement carefully. + + Content Repository for JavaTM Technology API Specification ("Specification") + Version: 1.0 + Status: FCS + Release: 11 May 2005 + + Copyright 2005 Day Management AG + Barfüsserplatz 6, 4001 Basel, Switzerland. + All rights reserved. + + NOTICE; LIMITED LICENSE GRANTS + + 1. License for Purposes of Evaluation and Developing Applications. + Licensor hereby grants you a fully-paid, non-exclusive, non-transferable, + worldwide, limited license (without the right to sublicense), under + Licensor's applicable intellectual property rights to view, download, + use and reproduce the Specification only for the purpose of internal + evaluation. This includes developing applications intended to run on an + implementation of the Specification provided that such applications do + not themselves implement any portion(s) of the Specification. + + 2. License for the Distribution of Compliant Implementations. Licensor + also grants you a perpetual, non-exclusive, non-transferable, worldwide, + fully paid-up, royalty free, limited license (without the right to + sublicense) under any applicable copyrights or, subject to the provisions + of subsection 4 below, patent rights it may have covering the + Specification to create and/or distribute an Independent Implementation + of the Specification that: (a) fully implements the Specification + including all its required interfaces and functionality; (b) does not + modify, subset, superset or otherwise extend the Licensor Name Space, or + include any public or protected packages, classes, Java interfaces, fields + or methods within the Licensor Name Space other than those + required/authorized by the Specification or Specifications being + implemented; and (c) passes the Technology Compatibility Kit (including + satisfying the requirements of the applicable TCK Users Guide) for such + Specification ("Compliant Implementation"). In addition, the foregoing + license is expressly conditioned on your not acting outside its scope. + No license is granted hereunder for any other purpose (including, for + example, modifying the Specification, other than to the extent of your + fair use rights, or distributing the Specification to third parties). + + 3. Pass-through Conditions. You need not include limitations (a)-(c) from + the previous paragraph or any other particular "pass through" requirements + in any license You grant concerning the use of your Independent + Implementation or products derived from it. However, except with respect + to Independent Implementations (and products derived from them) that + satisfy limitations (a)-(c) from the previous paragraph, You may neither: + (a) grant or otherwise pass through to your licensees any licenses under + Licensor's applicable intellectual property rights; nor (b) authorize your + licensees to make any claims concerning their implementation's compliance + with the Specification. + + 4. Reciprocity Concerning Patent Licenses. With respect to any patent + claims covered by the license granted under subparagraph 2 above that + would be infringed by all technically feasible implementations of the + Specification, such license is conditioned upon your offering on fair, + reasonable and non-discriminatory terms, to any party seeking it from + You, a perpetual, non-exclusive, non-transferable, worldwide license + under Your patent rights that are or would be infringed by all technically + feasible implementations of the Specification to develop, distribute and + use a Compliant Implementation. + + 5. Definitions. For the purposes of this Agreement: "Independent + Implementation" shall mean an implementation of the Specification that + neither derives from any of Licensor's source code or binary code + materials nor, except with an appropriate and separate license from + Licensor, includes any of Licensor's source code or binary code materials; + "Licensor Name Space" shall mean the public class or interface + declarations whose names begin with "java", "javax", "javax.jcr" or their + equivalents in any subsequent naming convention adopted by Licensor + through the Java Community Process, or any recognized successors or + replacements thereof; and "Technology Compatibility Kit" or "TCK" shall + mean the test suite and accompanying TCK User's Guide provided by + Licensor which corresponds to the particular version of the Specification + being tested. + + 6. Termination. This Agreement will terminate immediately without notice + from Licensor if you fail to comply with any material provision of or act + outside the scope of the licenses granted above. + + 7. Trademarks. No right, title, or interest in or to any trademarks, + service marks, or trade names of Licensor is granted hereunder. Java is + a registered trademark of Sun Microsystems, Inc. in the United States and + other countries. + + 8. Disclaimer of Warranties. The Specification is provided "AS IS". + LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES, EITHER EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT (INCLUDING AS A + CONSEQUENCE OF ANY PRACTICE OR IMPLEMENTATION OF THE SPECIFICATION), OR + THAT THE CONTENTS OF THE SPECIFICATION ARE SUITABLE FOR ANY PURPOSE. + This document does not represent any commitment to release or implement + any portion of the Specification in any product. + + The Specification could include technical inaccuracies or typographical + errors. Changes are periodically added to the information therein; these + changes will be incorporated into new versions of the Specification, if + any. Licensor may make improvements and/or changes to the product(s) + and/or the program(s) described in the Specification at any time. Any + use of such changes in the Specification will be governed by the + then-current license for the applicable version of the Specification. + + 9. Limitation of Liability. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO + EVENT WILL LICENSOR BE LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT + LIMITATION, LOST REVENUE, PROFITS OR DATA, OR FOR SPECIAL, INDIRECT, + CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND + REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO ANY + FURNISHING, PRACTICING, MODIFYING OR ANY USE OF THE SPECIFICATION, EVEN + IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 10. Report. If you provide Licensor with any comments or suggestions in + connection with your use of the Specification ("Feedback"), you hereby: + (i) agree that such Feedback is provided on a non-proprietary and + non-confidential basis, and (ii) grant Licensor a perpetual, + non-exclusive, worldwide, fully paid-up, irrevocable license, with the + right to sublicense through multiple levels of sublicensees, to + incorporate, disclose, and use without limitation the Feedback for any + purpose related to the Specification and future versions, + implementations, and test suites thereof. + + [Addendum to the Day Specification License] + + In addition to the permissions granted under the Specification + License, Day Management AG hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + license to reproduce, publicly display, publicly perform, + sublicense, and distribute unmodified copies of the Content + Repository for Java Technology API (JCR 1.0) Java Archive (JAR) + file ("jcr-1.0.jar") and to make, have made, use, offer to sell, + sell, import, and otherwise transfer said file on its own or + as part of a larger work that makes use of the JCR API. + + With respect to any patent claims covered by this license + that would be infringed by all technically feasible implementations + of the Specification, such license is conditioned upon your + offering on fair, reasonable and non-discriminatory terms, + to any party seeking it from You, a perpetual, non-exclusive, + non-transferable, worldwide license under Your patent rights + that are or would be infringed by all technically feasible + implementations of the Specification to develop, distribute + and use a Compliant Implementation. json: day-spec.json - yml: day-spec.yml + yaml: day-spec.yml html: day-spec.html - text: day-spec.LICENSE + license: day-spec.LICENSE - license_key: dbad + category: Proprietary Free spdx_license_key: LicenseRef-scancode-dbad other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Everyone is permitted to copy and distribute verbatim or modified copies of this license document. + + + DON'T BE A DICK PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + Do whatever you like with the original work, just don't be a dick. + + Being a dick includes - but is not limited to - the following instances: + + 1a. Outright copyright infringement - Don't just copy this and change the name. + 1b. Selling the unmodified original with no work done what-so-ever, that's REALLY being a dick. + 1c. Modifying the original work to contain hidden harmful content. That would make you a PROPER dick. + + If you become rich through modifications, related works/services, or supporting the original work, share the love. Only a dick would make loads off this work and not buy the original work's creator(s) a pint. + + Code is provided with no warranty. Using somebody else's code and bitching when it goes wrong makes you a DONKEY dick. Fix the problem yourself. A non-dick would submit the fix back. json: dbad.json - yml: dbad.yml + yaml: dbad.yml html: dbad.html - text: dbad.LICENSE + license: dbad.LICENSE - license_key: dbad-1.1 + category: Permissive spdx_license_key: LicenseRef-scancode-dbad-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + # DON'T BE A DICK PUBLIC LICENSE + + > Version 1.1, December 2016 + + > Copyright (C) [year] [fullname] + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document. + + > DON'T BE A DICK PUBLIC LICENSE + > TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 1. Do whatever you like with the original work, just don't be a dick. + + Being a dick includes - but is not limited to - the following instances: + + 1a. Outright copyright infringement - Don't just copy this and change the name. + 1b. Selling the unmodified original with no work done what-so-ever, that's REALLY being a dick. + 1c. Modifying the original work to contain hidden harmful content. That would make you a PROPER dick. + + 2. If you become rich through modifications, related works/services, or supporting the original work, + share the love. Only a dick would make loads off this work and not buy the original work's + creator(s) a pint. + + 3. Code is provided with no warranty. Using somebody else's code and bitching when it goes wrong makes + you a DONKEY dick. Fix the problem yourself. A non-dick would submit the fix back. json: dbad-1.1.json - yml: dbad-1.1.yml + yaml: dbad-1.1.yml html: dbad-1.1.html - text: dbad-1.1.LICENSE + license: dbad-1.1.LICENSE - license_key: dbcl-1.0 + category: Copyleft spdx_license_key: LicenseRef-scancode-dbcl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + ODC Database Contents License (DbCL) + The Licensor and You agree as follows: + + 1.0 Definitions of Capitalised Words + The definitions of the Open Database License (ODbL) 1.0 are incorporated + by reference into the Database Contents License. + + 2.0 Rights granted and Conditions of Use + 2.1 Rights granted. The Licensor grants to You a worldwide, + royalty-free, non-exclusive, perpetual, irrevocable copyright license to + do any act that is restricted by copyright over anything within the + Contents, whether in the original medium or any other. These rights + explicitly include commercial use, and do not exclude any field of + endeavour. These rights include, without limitation, the right to + sublicense the work. + + 2.2 Conditions of Use. You must comply with the ODbL. + + 2.3 Relationship to Databases and ODbL. This license does not cover any + Database Rights, Database copyright, or contract over the Contents as + part of the Database. Please see the ODbL covering the Database for more + details about Your rights and obligations. + + 2.4 Non-assertion of copyright over facts. The Licensor takes the + position that factual information is not covered by copyright. The DbCL + grants you permission for any information having copyright contained in + the Contents. + + 3.0 Warranties, disclaimer, and limitation of liability + 3.1 The Contents are licensed by the Licensor "as is" and without any + warranty of any kind, either express or implied, whether of title, of + accuracy, of the presence of absence of errors, of fitness for purpose, + or otherwise. Some jurisdictions do not allow the exclusion of implied + warranties, so this exclusion may not apply to You. + + 3.2 Subject to any liability that may not be excluded or limited by law, + the Licensor is not liable for, and expressly excludes, all liability + for loss or damage however and whenever caused to anyone by any use + under this License, whether by You or by anyone else, and whether caused + by any fault on the part of the Licensor or not. This exclusion of + liability includes, but is not limited to, any special, incidental, + consequential, punitive, or exemplary damages. This exclusion applies + even if the Licensor has been advised of the possibility of such + damages. + + 3.3 If liability may not be excluded by law, it is limited to actual and + direct financial loss to the extent it is caused by proved negligence on + the part of the Licensor. json: dbcl-1.0.json - yml: dbcl-1.0.yml + yaml: dbcl-1.0.yml html: dbcl-1.0.html - text: dbcl-1.0.LICENSE + license: dbcl-1.0.LICENSE - license_key: dco-1.1 + category: CLA spdx_license_key: LicenseRef-scancode-dco-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Developer Certificate of Origin + Version 1.1 + + Copyright (C) 2004, 2006 The Linux Foundation and its contributors. + 1 Letterman Drive + Suite D4700 + San Francisco, CA, 94129 + + Everyone is permitted to copy and distribute verbatim copies of this + license document, but changing it is not allowed. + + + Developer's Certificate of Origin 1.1 + + By making a contribution to this project, I certify that: + + (a) The contribution was created in whole or in part by me and I + have the right to submit it under the open source license + indicated in the file; or + + (b) The contribution is based upon previous work that, to the best + of my knowledge, is covered under an appropriate open source + license and I have the right under that license to submit that + work with modifications, whether created in whole or in part + by me, under the same open source license (unless I am + permitted to submit under a different license), as indicated + in the file; or + + (c) The contribution was provided directly to me by some other + person who certified (a), (b) or (c) and I have not modified + it. + + (d) I understand and agree that this project and the contribution + are public and that a record of the contribution (including all + personal information I submit with it, including my sign-off) is + maintained indefinitely and may be redistributed consistent with + this project or the open source license(s) involved. json: dco-1.1.json - yml: dco-1.1.yml + yaml: dco-1.1.yml html: dco-1.1.html - text: dco-1.1.LICENSE + license: dco-1.1.LICENSE - license_key: defensive-patent-1.1 + category: Copyleft spdx_license_key: LicenseRef-scancode-defensive-patent-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "PREFACE\nThe Defensive Patent License (DPL) is a free, copyleft-style license for patents.\n\ + \nMost patents and patent licenses are designed to take away the public’s access to knowledge\ + \ and the freedom to share and improve on the patented inventions. By contrast, the DPL\ + \ is intended to protect the freedom to share and improve patented inventions, among a community\ + \ of like-minded people. It is also intended to help establish a robust body of prior art\ + \ that prevents subsequent attempts to patent the same inventions in ways that restrict\ + \ access and freedom.\n\nTo join this community, all that a person or company must do is\ + \ to guarantee the same freedom to everyone else in the DPL community, with respect to all\ + \ of their own patents (and any future patents they may acquire). However, you do not need\ + \ to own any patents to become part of the DPL community. You need only make the same commitment\ + \ and then abide by it in the case that you do acquire patents at some future time.\n\n\ + The result is that this patent-sharing community ends up with a network of patents that\ + \ guarantees each member a zero-cost license to any or all of the patents within the network,\ + \ while still leaving those patents enforceable against anyone who has chosen not to join\ + \ the DPL’s patent-sharing community.\n\nUnlike copyright-based licenses such as the GNU\ + \ General Public License, the DPL v1.1 requires that a person or organization license ALL\ + \ their patents under the DPL in order to receive free licenses from other DPL users. This\ + \ is due to differences between patents and copyrights and the ways in which patents can\ + \ threaten access to knowledge and freedom in ways that copyright cannot. In requiring this,\ + \ the DPL stands as a unequivocal commitment to non-aggression among\n a community of people\ + \ and companies who obtain patents to defend themselves, but who do not want to use those\ + \ patents aggressively against the public.\n\nAt the start, the DPL patent-sharing community\ + \ is likely to be small, so joining it will seldom impact the revenues that a patent holder\ + \ obtains from commercial licensees. As the community grows, it becomes more and more attractive\ + \ to join the community, even for large companies with many patents. The benefit to each\ + \ existing community member grows as more and more patent-holders join and freely license\ + \ their patents to all the members.\n\nAnother benefit is creating a robust body of prior\ + \ art to prevent proprietary patent owners from patenting similar inventions. Currently,\ + \ many innovators choose not to patent what they create because they disagree with the patent\ + \ system or they are cautious or skeptical that their patents will end up being used to\ + \ bully or troll other creators. The DPL legally binds patent owners to supporting access\ + \ and freedom within the DPL community and thus provides assurances that\n patenting a given\ + \ innovation will not be abused or misused within the DPL community. In this way, DPL patents\ + \ provide assurances regarding freedom and access while at the same time serving as serious\ + \ roadblocks to subsequent attempts to file patents on the same inventions.\n\nThe effect\ + \ of the DPL v.1.1’s “all-in” requirement is that companies with large inventories of proprietary\ + \ patents may be less likely to join the patent-sharing community at first. However, this\ + \ means that DPL patent holders are free to enter commercial licenses with, collect royalties\ + \ from, and/or file lawsuits against those companies. Alternatively, if such companies\ + \ do at some point join the patent-sharing community, the community would get the free use\ + \ of all of their numerous patents.\n\nTo join the DPL community, you simply declare on\ + \ a publicly available website your commitment to offer any patents you have or obtain under\ + \ the DPL to anyone who makes a similar commitment (what we are calling an “Offering Announcement”)\ + \ and then, when you contact another DPL user to accept the license to its patents, you\ + \ provide it with the URL for the website where you posted your commitment. We also encourage\ + \ you to email your Offering Announcement URL\nto the DPL Foundation via the email address\ + \ listed on its website (http://www.defensivepatentlicense.org/content/frequently-asked-questions#how-can-I-start)\ + \ so others can learn about it and contact you to accept your licenses.\n\nIf you were to\ + \ change your mind later, you can withdraw from the DPL patent-sharing community on 180\ + \ days’ notice. You can effectuate this by posting another announcement on a publicly available\ + \ website (what we are calling a “Discontinuation Announcement”) declaring the final date\ + \ you will be offering your patents under the DPL and then emailing that URL to anyone from\ + \ whom you’ve taken the DPL license. Again, we also encourage but do not require that you\ + \ email \nthe DPL Foundation with your Discontinuation Announcement.\n\nAfter withdrawing,\ + \ existing licenses you previously granted to community members remain valid, but your obligation\ + \ to grant free licenses to the DPL community ceases. Also, you retain any free licenses\ + \ that you obtained from other DPL users. But those other DPL users have the right at any\ + \ point to convert your license to a similar license that requires you to pay a fair, reasonable,\ + \ and non-discriminatory royalty for each licensed product or service.\n\nLICENSE\nNOTICE\n\ + NOTICE: ALL RIGHTS IN LICENSED PATENTS (as defined below) PROVIDED UNDER THIS DEFENSIVE\ + \ PATENT LICENSE (“DPL”) ARE SUBJECT TO ALL OF THE CONDITIONS AND LIMITATIONS SET FORTH\ + \ BELOW. MAKING, USING, SELLING, OFFERING FOR SALE, IMPORTING, OR DISTRIBUTING PRODUCTS\ + \ OR SERVICES EMBODYING THE LICENSED PATENTS, OTHER THAN AS EXPLICITLY AUTHORIZED UNDER\ + \ THIS LICENSE OR PATENT LAW, IS PROHIBITED.\n1. \nLICENSE GRANT\nSubject to the conditions\ + \ and limitations of this License, Licensor hereby grants and agrees to grant to any DPL\ + \ User (as defined in Section 7.6) who follows the procedures for License Acceptance (as\ + \ defined in Section 1.1) a worldwide, royalty-free, no-charge, non-exclusive, irrevocable\ + \ (except as stated in Sections 2(e) and 2(f)) license, perpetual for the term of the relevant\ + \ Licensed Patents, to make, have made, use, sell, offer for sale, import, and distribute\ + \ Licensed Products and Services that would otherwise infringe any claim of Licensed Patents.\ + \ A Licensee’s sale of Licensed Products \nand Services pursuant to this agreement exhausts\ + \ the Licensor’s ability to assert infringement against a downstream purchaser or user of\ + \ the Licensed Products or Services. Licensor’s obligation to grant Licenses under this\ + \ provision ceases upon the arrival of any applicable Discontinuation Date, unless that\ + \ Date is followed by a subsequent Offering Announcement.\n\n1.1\nLICENSE ACCEPTANCE\nIn\ + \ order to accept this License, Licensee must qualify as a DPL User (as defined in Section\ + \ 7.6) and must contact Licensor via the information provided in Licensor’s Offering Announcement\ + \ to state affirmatively that Licensee accepts the terms of this License. Licensee must\ + \ also communicate the URL of its own Offering Announcement (as defined in Section 7.13)\ + \ and specify whether it is accepting the License to all Licensor’s Patents or only a subset\ + \ of those Patents. If Licensee is only accepting the License to a subset\nof Licensor’s\ + \ Patents, Licensee must specify each individual Patent’s country of issuance and corresponding\ + \ patent number for which it is accepting a License. There is no requirement that the Licensor\ + \ respond to the Licensee’s affirmative acceptance of this License.\n\n2.\nLICENSE RESTRICTIONS\n\ + Notwithstanding the foregoing, this License is expressly subject to and limited by the following\ + \ restrictions:\n\n(a) No Sublicensing. This License does not include the right to sublicense\ + \ any Licensed Patent of any Licensor.\n\n(b) License Extends Solely to Licensed Patents\ + \ in Connection with Licensed Products and Services. For clarity, this License does not\ + \ purport to grant any rights in any Licensor’s copyright, trademark, trade dress, design,\ + \ trade secret, other intellectual property, or any other rights of Licensor other than\ + \ the rights to Licensed Patents granted in Section 2, nor does the License cover products\ + \ or services other than the Licensed Products and Services. For example, this License\ + \ would not apply to any conduct of a Licensee that occurred prior to accepting this License\ + \ under Section 1.1.\n\n(c) Scope. This License does not include Patents with a priority\ + \ date or Effective Filing Date later than Licensor’s last Discontinuation Date that has\ + \ not been followed by a subsequent Offering Announcement by Licensor.\n\n(d) Future DPL\ + \ Users. This License does not extend to any DPL User whose Offering Announcement occurs\ + \ later than Licensor’s last Discontinuation Date that has not been followed by a subsequent\ + \ Offering Announcement by Licensor.\n\n(e) Revocation and Termination Rights. Licensor\ + \ reserves the right to revoke and/or terminate this License with respect to a particular\ + \ Licensee if, after the date of the Licensee’s most recent Offering Announcement:\n\ni.\ + \ Licensee makes any Infringement Claim, not including Defensive Patent Claims, against\ + \ a DPL User; or\n\nii. Licensee assigns, transfers, or grants an exclusive license for\ + \ a Patent to an entity or individual other than a DPL User without conditioning the assignment,\ + \ transfer, or exclusive license on the recipient continuing to abide by the terms of this\ + \ License, including but not limited to the revocation and termination rights under this\ + \ Section.\n\n(f) Optional Conversion to FRAND Upon Discontinuation. Notwithstanding any\ + \ other provision in this License, as of any particular Licensee’s Discontinuation Date,\ + \ Licensor has the right to convert the License of that particular Licensee from one that\ + \ is royalty-free and no-charge to one that is subject to Fair, Reasonable, And Non-Discriminatory\ + \ (FRAND) terms going forward. No other terms in the license may be altered in any way under\ + \ this provision.\n\n3.\nVERSIONS OF THE LICENSE\n(a) New Versions\n\nThe DPL Foundation,\ + \ Jason M. Schultz of New York University, and Jennifer M. Urban of the University of California\ + \ at Berkeley are the license stewards. Unless otherwise designated by one of the license\ + \ stewards, no one other than the license stewards has the right to modify or publish new\ + \ versions of this License. Each version will be given a distinguishing version number.\n\ + \n(b) Effect of New or Revised Versions\n\nAny one of the license stewards may publish revised\ + \ and/or new versions of the DPL 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.\n\ + \nEach version is given a distinguishing version number. If Licensor specifies in her Offering\ + \ Announcement that she is offering a certain numbered version of the DPL “or any later\ + \ version”, Licensee has the option of following the terms and conditions either of that\ + \ numbered version or of any later version published by one of the license stewards. If\ + \ Licensor does not specify a version number of the DPL in her Offering Announcement, \n\ + Licensee may choose any version ever published by any of the license stewards.\n\n4.\nDISCLAIMER\ + \ OF CLAIMS RELATED TO PATENT VALIDITY & NON-INFRINGEMENT\nLicensor makes no representations\ + \ and disclaims any and all warranties as to the validity of the Licensed Patents or the\ + \ products or processes covered by Licensed Patents do not infringe the patent, copyright,\ + \ trademark, trade secret, or other intellectual property rights of any other party.\n5.\n\ + DISCLAIMER OF WARRANTIES\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING,\ + \ LICENSOR OFFERS THE PATENT LICENSE GRANTED HEREIN “AS IS” AND MAKES NO REPRESENTATIONS\ + \ OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY\ + \ LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION,\ + \ WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT,\ + \ OR THE PRESENCE OR ABSENCE OF ERRORS, REGARDLESS OF THEIR DISCOVERABILITY. \nSOME JURISDICTIONS\ + \ DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, IN WHICH CASE SUCH EXCLUSION MAY NOT\ + \ APPLY TO LICENSEE.\n6.\nLIMITATION OF LIABILITY\nLICENSOR SHALL NOT BE LIABLE FOR ANY\ + \ DAMAGES ARISING FROM OR RELATED TO THIS LICENSE, INCLUDING INDIRECT, INCIDENTAL, CONSEQUENTIAL,\ + \ PUNITIVE OR SPECIAL DAMAGES, WHETHER ON WARRANTY, CONTRACT, NEGLIGENCE, OR OTHERWISE,\ + \ EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN\ + \ OCCURRENCE." json: defensive-patent-1.1.json - yml: defensive-patent-1.1.yml + yaml: defensive-patent-1.1.yml html: defensive-patent-1.1.html - text: defensive-patent-1.1.LICENSE + license: defensive-patent-1.1.LICENSE - license_key: dejavu-font + category: Permissive spdx_license_key: LicenseRef-scancode-dejavu-font other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: "DejaVu Font License\n\nFonts are (c) Bitstream (see below). DejaVu changes are in public\ + \ domain. \nGlyphs imported from Arev fonts are (c) Tavmjong Bah (see below)\n\n------------------------------\ + \ Bitstream Vera Fonts Copyright ------------------------------\nCopyright (c) 2003 by Bitstream,\ + \ Inc. All Rights Reserved. \nBitstream Vera is a trademark of Bitstream, Inc.\n\nPermission\ + \ is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying\ + \ this license (\"Fonts\") and associated documentation files (the \"Font Software\"), to\ + \ reproduce and distribute the Font Software, including without limitation the rights to\ + \ use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to\ + \ permit persons to whom the Font Software is furnished to do so, subject to the following\ + \ conditions:\n\nThe above copyright and trademark notices and this permission notice shall\ + \ be included in all copies of one or more of the Font Software typefaces.\n\nThe Font Software\ + \ may be modified, altered, or added to, and in particular the designs of glyphs or characters\ + \ in the Fonts may be modified and additional glyphs or characters may be added to the Fonts,\ + \ only if the fonts are renamed to names not containing either the words \"Bitstream\" or\ + \ the word \"Vera\".\n\nThis License becomes null and void to the extent applicable to Fonts\ + \ or Font Software that has been modified and is distributed under the \"Bitstream Vera\"\ + \ names.\n\nThe Font Software may be sold as part of a larger software package but no copy\ + \ of one or more of the Font Software typefaces may be sold by itself.\n\nTHE FONT SOFTWARE\ + \ IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT\ + \ NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\ + \ NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM\ + \ OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING\ + \ ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION\ + \ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT\ + \ SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.\n\nExcept as contained in this notice,\ + \ the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising\ + \ or otherwise to promote the sale, use or other dealings in this Font Software without\ + \ prior written authorization from the Gnome Foundation or Bitstream Inc., respectively.\ + \ For further information, contact: fonts at gnome dot org.\n\n------------------------------\ + \ Arev Fonts Copyright ------------------------------\nCopyright (c) 2006 by Tavmjong Bah.\ + \ All Rights Reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining\ + \ a copy of the fonts accompanying this license (\"Fonts\") and associated documentation\ + \ files (the \"Font Software\"), to reproduce and distribute the modifications to the Bitstream\ + \ Vera Font Software, including without limitation the rights to use, copy, merge, publish,\ + \ distribute, and/or sell copies of the Font Software, and to permit persons to whom the\ + \ Font Software is furnished to do so, subject to the following conditions:\n\nThe above\ + \ copyright and trademark notices and this permission notice shall be included in all copies\ + \ of one or more of the Font Software typefaces.\n\nThe Font Software may be modified, altered,\ + \ or added to, and in particular the designs of glyphs or characters in the Fonts may be\ + \ modified and additional glyphs or characters may be added to the Fonts, only if the fonts\ + \ are renamed to names not containing either the words \"Tavmjong Bah\" or the word \"Arev\"\ + .\n\nThis License becomes null and void to the extent applicable to Fonts or Font Software\ + \ that has been modified and is distributed under the \"Tavmjong Bah Arev\" names.\n\nThe\ + \ Font Software may be sold as part of a larger software package but no copy of one or more\ + \ of the Font Software typefaces may be sold by itself.\n\nTHE FONT SOFTWARE IS PROVIDED\ + \ \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\ + \ TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\ + \ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL TAVMJONG BAH BE LIABLE\ + \ FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL,\ + \ OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\ + \ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE\ + \ FONT SOFTWARE.\n\nExcept as contained in this notice, the name of Tavmjong Bah shall not\ + \ be used in advertising or otherwise to promote the sale, use or other dealings in this\ + \ Font Software without prior written authorization from Tavmjong Bah. For further information,\ + \ contact: tavmjong@free.fr." json: dejavu-font.json - yml: dejavu-font.yml + yaml: dejavu-font.yml html: dejavu-font.html - text: dejavu-font.LICENSE + license: dejavu-font.LICENSE - license_key: delorie-historical + category: Permissive spdx_license_key: LicenseRef-scancode-delorie-historical other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution, modification, and use in source and binary forms is permitted + provided that the above copyright notice and following paragraph are + duplicated in all such forms. + + This file is distributed WITHOUT ANY WARRANTY; without even the implied + warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. json: delorie-historical.json - yml: delorie-historical.yml + yaml: delorie-historical.yml html: delorie-historical.html - text: delorie-historical.LICENSE + license: delorie-historical.LICENSE - license_key: dennis-ferguson + category: Free Restricted spdx_license_key: LicenseRef-scancode-dennis-ferguson other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "Commercial use is permitted only if products which are derived from or include\nthis\ + \ software are made available for purchase and/or use in Canada. \nOtherwise, redistribution\ + \ and use in source and binary forms are permitted." json: dennis-ferguson.json - yml: dennis-ferguson.yml + yaml: dennis-ferguson.yml html: dennis-ferguson.html - text: dennis-ferguson.LICENSE + license: dennis-ferguson.LICENSE - license_key: devblocks-1.0 + category: Copyleft spdx_license_key: LicenseRef-scancode-devblocks-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + Devblocks Public License 1.0 (DPL) + + The following are the terms and conditions by which Webgroup Media, LLC (“Licensor”) grants you a License to use, modify, and redistribute this software, which is protected as the exclusive intellectual property of Licensor by U.S. copyright law. + + Licensor’s copyrights are also protected by international treaties where applicable, including but not limited to: the Berne Convention, World Intellectual Property Organization (WIPO), and the World Trade Organization’s (WTO) Trade-related Aspects of Intellectual Property Rights (TRIPS). + + By using this software, you acknowledge having read this License and agree to be bound thereby. + + Devblocks Public License 1.0 (DPL) + Definitions + Grant of Rights + Governing Law and Venue + Limited Warranty + Disclaimer of Warranties + Limitation of Liability and Remedies + + + Definitions + + The terms “reproduce”, “reproduction”, and “distribution” have the same meaning here as under U.S. copyright law. + + “You” means the licensee of the software. + + “Your organization” means the company, institution, cause, or other group represented by you while using this software. + + “Private use” means use of this software within your organization, and it specifically excludes the right to distribute this software outside of your organization. + + + Grant of Rights + + Copyright Grant - Subject to the terms of this License, Licensor grants you a non-transferable, non-exclusive, worldwide, royalty-free copyright license to reproduce this software for private use. + + Modification and Redistribution of Derivative Works - You are permitted to produce and distribute modifications to this software provided that the following conditions are met: + + You must not alter or obliterate any copyright notices found in this software or its source code. + + Your website and documentation must provide a clearly visible link to this software’s official website. You must clearly state that your modifications are an unofficial version that is derived from this software. + + You are not permitted to produce or disseminate any technology or modifications to this software or source code which circumvent its digital copyright protection or interfere with the enforcement of per-seat licensing. + + This software must remain compatible with digital software licenses authorized and issued exclusively by Licensor. + + Your modifications must remain publicly available in source code form, and may not be encrypted, obfuscated, or otherwise rendered intentionally human-unreadable. + + Any modifications you make to this software and its source code must continue to be governed by this License. + + Neither the name of Licensor nor the names of its contributors may be used to endorse or promote redistributions of this software without prior written permission from Licensor. + + You are prohibited from charging a fee for redistributing this software without prior written permission from Licensor. + + + Third-Party Plugins - You are permitted to produce, install, and publicly distribute modifications to this software which operate as “plugins”. Third-party plugins do not modify or distribute the source code of this software; instead, plugins introduce new functionality through an Application Programming Interface (API) to utilize services and resources provided by this software. + + You retain the copyright to any plugins you create. + + You are not required to distribute your plugins. + + You may distribute your plugins under any software license. + + You may sell your plugins, or charge a fee for the development of new plugins. + + You agree that Licensor is not liable for the effects of any third-party plugins that you produce or install. + + + Governing Law and Venue + + This License, its construction, performance, scope, validity, and effects are governed and shall be construed in accordance with the laws applicable and in force in the United States. + + The parties agree, for any claim or judicial proceedings for whatever reason relating to this License, to designate and hereby designate the courts of the judicial district of Orange County, California, as the appropriate venue for the hearing of any such claims or judicial proceedings, to the exclusion of any other courts, judicial district or jurisdiction that may have the right to hear such dispute. + + + Limited Warranty + + Licensor warrants that this software will perform substantially in accordance with the accompanying materials for a period of ninety (90) days from the date of receipt. If an implied warranty or condition is created by your state or jurisdiction, and federal, state, or provincial law prohibits disclaimer of it, you also have an implied warranty or condition, but only as to the defects discovered during the period of this limited warranty (90 days). As to any defects discovered after the 90 day period, there is no warranty or condition of any kind. Some states or jurisdictions do not allow limitations on how long an implied warranty or condition lasts, so the above limitation may not apply to you. Any updates or patches to this software provided to you after the expiration of the 90 day Limited Warranty period are not covered by any warranty or condition, express, implied, or statutory. + + + Disclaimer of Warranties + + The Limited Warranty described above is the only express warranty made to you and is provided in lieu of any other express warranties or similar obligations. Except for the Limited Warranty or when otherwise stated in writing the copyright holders and/or other parties, and to the extent permitted by applicable law, this software is provided to you “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, repairs, or corrections. + + + Limitation of Liability and Remedies + + In no event unless required by applicable law or agreed to in writing will Licensor be liable to you under any circumstances for any lost profits or any indirect, special, consequential or punitive damages including, without limitation, loss or alteration of data, failure to provide support, interruption of business, or loss of employee work time. Some jurisdictions do not allow the exclusion or limitation of certain warranties or liability for loss or damage caused by negligence, breach of contract or breach of implied terms, or incidental or consequential damages. Accordingly, only the limitations which are lawful in your jurisdiction will apply to you and Licensor’s liability will be limited to the maximum extent permitted by law. The entire liability of Licensor shall not exceed the aggregate amount paid by you for the software. json: devblocks-1.0.json - yml: devblocks-1.0.yml + yaml: devblocks-1.0.yml html: devblocks-1.0.html - text: devblocks-1.0.LICENSE + license: devblocks-1.0.LICENSE - license_key: dgraph-cla + category: Source-available spdx_license_key: LicenseRef-scancode-dgraph-cla other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Dgraph Community License Agreement + + Please read this Dgraph Community License Agreement (the "Agreement") + carefully before using Dgraph (as defined below), which is offered by + Dgraph Labs, Inc. or its affiliated Legal Entities ("Dgraph Labs"). + + By downloading Dgraph or using it in any manner, You agree that You have + read and agree to be bound by the terms of this Agreement. If You are + accessing Dgraph on behalf of a Legal Entity, You represent and warrant + that You have the authority to agree to these terms on its behalf and the + right to bind that Legal Entity to this Agreement. Use of Dgraph is + expressly conditioned upon Your assent to all the terms of this Agreement, to + the exclusion of all other terms. + + 1. Definitions. In addition to other terms defined elsewhere in this + Agreement, the terms below have the following meanings. + + (a) "Dgraph" shall mean the graph database software provided by Dgraph + Labs, including both Dgraph Core and Dgraph Enterprise + editions, as defined below. + + (b) "Dgraph Core" shall mean the open source version of + Dgraph, available free of charge at + + https://github.com/dgraph-io/dgraph + + (c) "Dgraph Enterprise Edition" shall mean the additional features made + available by Dgraph Labs, the use of which is subject to additional + terms set out below. + + (d) "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 Dgraph Labs + 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 Dgraph Labs 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, Dgraph Labs + 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." + + (e) "Contributor" shall mean any copyright owner or individual or Legal + Entity authorized by the copyright owner, other than Dgraph Labs, + from whom Dgraph Labs receives a Contribution that Dgraph Labs + subsequently incorporates within the Work. + + (f) "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work, such as a + translation, abridgement, condensation, or any other recasting, + transformation, or adaptation 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. + + (g) "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. + + (h) "License" shall mean the terms and conditions for use, reproduction, and + distribution of a Work as defined by this Agreement. + + (i) "Licensor" shall mean Dgraph Labs or a Contributor, as applicable. + + (j) "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. + + (k) "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation source, + and configuration files. + + (l) "Third Party Works" shall mean Works, including Contributions, and other + technology owned by a person or Legal Entity other than Dgraph Labs, + as indicated by a copyright notice that is included in or attached to + such Works or technology. + + (m) "Work" shall mean the work of authorship, whether in Source or Object + form, made available under a License, as indicated by a copyright notice + that is included in or attached to the work. + + (n) "You" (or "Your") shall mean an individual or Legal Entity exercising + permissions granted by this License. + + 2. Licenses. + + (a) License to Dgraph Core. The License for Dgraph + Core is the Apache License, Version 2.0 ("Apache License"). + The Apache License includes a grant of patent license, as well as + redistribution rights that are contingent on several requirements. + Please see + + http://www.apache.org/licenses/LICENSE-2.0 + + for full terms. Dgraph Core is a no-cost, entry-level license and as + such, contains the following disclaimers: NOTWITHSTANDING ANYTHING TO + THE CONTRARY HEREIN, DGRAPH CORE IS PROVIDED "AS IS" AND "AS + AVAILABLE", AND ALL EXPRESS OR IMPLIED WARRANTIES ARE EXCLUDED AND + DISCLAIMED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, + AND ANY WARRANTIES ARISING BY STATUTE OR OTHERWISE IN LAW OR FROM + COURSE OF DEALING, COURSE OF PERFORMANCE, OR USE IN TRADE. For + clarity, the terms of this Agreement, other than the relevant + definitions in Section 1 and this Section 2(a) do not apply to Dgraph + Core. + + (b) License to Dgraph Enterprise Edition. + + i Grant of Copyright License: Subject to the terms of this Agreement, + Licensor hereby grants to You a worldwide, non-exclusive, + non-transferable limited license to reproduce, prepare Enterprise + Derivative Works (as defined below) of, publicly display, publicly + perform, sublicense, and distribute Dgraph Enterprise Edition + for Your business purposes, for so long as You are not in violation + of this Section 2(b) and are current on all payments required by + Section 4 below. + + ii Grant of Patent License: Subject to the terms of this Agreement, + Licensor hereby grants to You a worldwide, non-exclusive, + non-transferable limited patent license to make, have made, use, + offer to sell, sell, import, and otherwise transfer Dgraph + Enterprise Edition, where such license applies only to those patent + claims licensable by Licensor 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. + + iii License to Third Party Works: From time to time Dgraph Labs may + use, or provide You access to, Third Party Works in connection + Dgraph Enterprise Edition. You acknowledge and agree that in + addition to this Agreement, Your use of Third Party Works is subject + to all other terms and conditions set forth in the License provided + with or contained in such Third Party Works. Some Third Party Works + may be licensed to You solely for use with Dgraph Enterprise + Edition under the terms of a third party License, or as otherwise + notified by Dgraph Labs, and not under the terms of this + Agreement. You agree that the owners and third party licensors of + Third Party Works are intended third party beneficiaries to this + Agreement. + + 3. Support. From time to time, in its sole discretion, Dgraph Labs may + offer professional services or support for Dgraph, which may now or in + the future be subject to additional fees. + + 4. Fees for Dgraph Enterprise Edition or Dgraph Support. + + (a) Fees. The License to Dgraph Enterprise Edition is conditioned upon + Your payment of the fees which You agree to pay to Dgraph Labs in + accordance with the payment terms agreed upon by contacting + contact@dgraph.io. Any professional services or support for Dgraph + may also be subject to Your payment of fees, which will be + specified by Dgraph Labs when you sign up to receive such + professional services or support. Dgraph Labs reserves the right + to change the fees at any time with prior written notice; for + recurring fees, any such adjustments will take effect as of the + next pay period. + + (b) Overdue Payments and Taxes. Overdue payments are subject to a service + charge equal to the lesser of 1.5% per month or the maximum legal + interest rate allowed by law, and You shall pay all Dgraph Labs’ + reasonable costs of collection, including court costs and attorneys’ + fees. Fees are stated and payable in U.S. dollars and are exclusive of + all sales, use, value added and similar taxes, duties, withholdings and + other governmental assessments (but excluding taxes based on Dgraph + Labs’ income) that may be levied on the transactions contemplated by + this Agreement in any jurisdiction, all of which are Your responsibility + unless you have provided Dgraph Labs with a valid tax-exempt + certificate. + + (c) Record-keeping and Audit. If fees for Dgraph Enterprise Edition + are based on the number of cores or servers running on Dgraph + Enterprise Edition or another use-based unit of measurement, You must + maintain complete and accurate records with respect to Your use of + Dgraph Enterprise Edition and will provide such records to + Dgraph Labs for inspection or audit upon Dgraph Labs’ reasonable + request. If an inspection or audit uncovers additional usage by You for + which fees are owed under this Agreement, then You shall pay for such + additional usage at Dgraph Labs’ then-current rates. + + 5. Trial License. If You have signed up for a trial or evaluation of + Dgraph Enterprise Edition, Your License to Dgraph Enterprise + Edition is granted without charge for the trial or evaluation period + specified when You signed up, or if no term was specified, for thirty (30) + calendar days, provided that Your License is granted solely for purposes of + Your internal evaluation of Dgraph Enterprise Edition during the trial + or evaluation period (a "Trial License"). You may not use Dgraph + Enterprise Edition under a Trial License more than once in any twelve (12) + month period. Dgraph Labs may revoke a Trial License at any time and + for any reason. Sections 3, 4, 9 and 11 of this Agreement do not apply to + Trial Licenses. + + 6. 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. + + (e) Enterprise Derivative Works: Derivative Works of Dgraph Enterprise + Edition ("Enterprise Derivative Works") may be made, reproduced and + distributed in any medium, with or without modifications, in Source or + Object form, provided that each Enterprise Derivative Work will be + considered to include a License to Dgraph Enterprise Edition and + thus will be subject to the payment of fees to Dgraph Labs by any + user of the Enterprise Derivative Work. + + 7. Submission of Contributions. Unless You explicitly state otherwise, any + Contribution intentionally submitted for inclusion in Dgraph by You to + Dgraph Labs shall be under the terms and conditions of + + https://cla-assistant.io/dgraph-io/dgraph + + (which is based off of the Apache License), without any additional terms or + conditions, payments of royalties or otherwise to Your benefit. + Notwithstanding the above, nothing herein shall supersede or modify the + terms of any separate license agreement You may have executed with + Dgraph Labs regarding such Contributions. + + 8. Trademarks. This License does not grant permission to use the trade names, + trademarks, service marks, or product names of Licensor, except as required + for reasonable and customary use in describing the origin of the Work and + reproducing the content of the NOTICE file. + + 9. Limited Warranty. + + (a) Warranties. Dgraph Labs warrants to You that: (i) Dgraph + Enterprise Edition will materially perform in accordance with the + applicable documentation for ninety (90) days after initial delivery to + You; and (ii) any professional services performed by Dgraph Labs + under this Agreement will be performed in a workmanlike manner, in + accordance with general industry standards. + + (b) Exclusions. Dgraph Labs’ warranties in this Section 9 do not extend + to problems that result from: (i) Your failure to implement updates + issued by Dgraph Labs during the warranty period; (ii) any + alterations or additions (including Enterprise Derivative Works and + Contributions) to Dgraph not performed by or at the direction of + Dgraph Labs; (iii) failures that are not reproducible by Dgraph + Labs; (iv) operation of Dgraph Enterprise Edition in violation of + this Agreement or not in accordance with its documentation; (v) failures + caused by software, hardware or products not licensed or provided by + Dgraph Labs hereunder; or (vi) Third Party Works. + + (c) Remedies. In the event of a breach of a warranty under this Section 9, + Dgraph Labs will, at its discretion and cost, either repair, replace + or re-perform the applicable Works or services or refund a portion of + fees previously paid to Dgraph Labs that are associated with the + defective Works or services. This is Your exclusive remedy, and + Dgraph Labs’ sole liability, arising in connection with the limited + warranties herein. + + 10. Disclaimer of Warranty. Except as set out in Section 9, unless required + by applicable law, 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, arising out of course + of dealing, course of performance, or usage in trade, including, without + limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, + MERCHANTABILITY, CORRECTNESS, RELIABILITY, or FITNESS FOR A PARTICULAR + PURPOSE, all of which are hereby disclaimed. You are solely responsible + for determining the appropriateness of using or redistributing Works and + assume any risks associated with Your exercise of permissions under the + applicable License for such Works. + + 11. Limited Indemnity. + + (a) Indemnity. Dgraph Labs will defend, indemnify and hold You harmless + against any third party claims, liabilities or expenses incurred + (including reasonable attorneys’ fees), as well as amounts finally + awarded in a settlement or a non-appealable judgement by a court + ("Losses"), to the extent arising from any claim or allegation by a + third party that Dgraph Enterprise Edition infringes or + misappropriates a valid United States patent, copyright or trade secret + right of a third party; provided that You give Dgraph Labs: (i) + prompt written notice of any such claim or allegation; (ii) sole control + of the defense and settlement thereof; and (iii) reasonable cooperation + and assistance in such defense or settlement. If any Work within + Dgraph Enterprise Edition becomes or, in Dgraph Labs’ opinion, + is likely to become, the subject of an injunction, Dgraph Labs may, + at its option, (A) procure for You the right to continue using such + Work, (B) replace or modify such Work so that it becomes non-infringing + without substantially compromising its functionality, or, if (A) and (B) + are not commercially practicable, then (C) terminate Your license to the + allegedly infringing Work and refund to You a prorated portion of the + prepaid and unearned fees for such infringing Work. The foregoing + states the entire liability of Dgraph Labs with respect to + infringement of patents, copyrights, trade secrets or other intellectual + property rights. + + (b) Exclusions. The foregoing obligations shall not apply to: (i) Works + modified by any party other than Dgraph Labs (including Enterprise + Derivative Works and Contributions), if the alleged infringement relates + to such modification, (ii) Works combined or bundled with any products, + processes or materials not provided by Dgraph Labs where the alleged + infringement relates to such combination, (iii) use of a version of + Dgraph Enterprise Edition other than the version that was current + at the time of such use, as long as a non-infringing version had been + released, (iv) any Works created to Your specifications, (v) + infringement or misappropriation of any proprietary right in which You + have an interest, or (vi) Third Party Works. You will defend, indemnify + and hold Dgraph Labs harmless against any Losses arising from any + such claim or allegation, subject to conditions reciprocal to those in + Section 11(a). + + 12. Limitation of Liability. In no event and under no legal or equitable + theory, whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts), and notwithstanding anything in this Agreement to the + contrary, shall Licensor or any Contributor be liable to You for (i) any + amounts in excess, in the aggregate, of the fees paid by You to Dgraph + Labs under this Agreement in the twelve (12) months preceding the date the + first cause of liability arose), or (ii) any indirect, special, + incidental, punitive, exemplary, reliance, or consequential damages of any + character arising as a result of this Agreement or out of the use or + inability to use the Work (including but not limited to damages for loss + of goodwill, profits, data or data use, work stoppage, computer failure or + malfunction, cost of procurement of substitute goods, technology or + services, or any and all other commercial damages or losses), even if such + Licensor or Contributor has been advised of the possibility of such + damages. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE + ESSENTIAL PURPOSE OF ANY LIMITED REMEDY. + + 13. Accepting Warranty or Additional Liability. While redistributing Works or + Derivative Works thereof, and without limiting your obligations under + Section 6, 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 Dgraph Labs and each other Contributor harmless for + any liability incurred by, or claims asserted against, such Contributor by + reason of your accepting any such warranty or additional liability. + + 14. General. + + (a) Relationship of Parties. You and Dgraph Labs are independent + contractors, and nothing herein shall be deemed to constitute either + party as the agent or representative of the other or both parties as + joint venturers or partners for any purpose. + + (b) Export Control. You shall comply with the U.S. Foreign Corrupt + Practices Act and all applicable export laws, restrictions and + regulations of the U.S. Department of Commerce, and any other applicable + U.S. and foreign authority. + + (c) Assignment. This Agreement and the rights and obligations herein may + not be assigned or transferred, in whole or in part, by You without the + prior written consent of Dgraph Labs. Any assignment in violation of + this provision is void. This Agreement shall be binding upon, and inure + to the benefit of, the successors and permitted assigns of the parties. + + (d) Governing Law. This Agreement shall be governed by and construed under + the laws of the State of New York and the United States without regard + to conflicts of laws provisions thereof, and without regard to the + Uniform Computer Information Transactions Act. + + (e) Attorneys’ Fees. In any action or proceeding to enforce rights under + this Agreement, the prevailing party shall be entitled to recover its + costs, expenses and attorneys’ fees. + + (f) Severability. If any provision of this Agreement is held to be invalid, + illegal or unenforceable in any respect, that provision shall be limited + or eliminated to the minimum extent necessary so that this Agreement + otherwise remains in full force and effect and enforceable. + + (g) Entire Agreement; Waivers; Modification. This Agreement constitutes the + entire agreement between the parties relating to the subject matter + hereof and supersedes all proposals, understandings, or discussions, + whether written or oral, relating to the subject matter of this + Agreement and all past dealing or industry custom. The failure of either + party to enforce its rights under this Agreement at any time for any + period shall not be construed as a waiver of such rights. No changes, + modifications or waivers to this Agreement will be effective unless in + writing and signed by both parties. json: dgraph-cla.json - yml: dgraph-cla.yml + yaml: dgraph-cla.yml html: dgraph-cla.html - text: dgraph-cla.LICENSE + license: dgraph-cla.LICENSE - license_key: dhtmlab-public + category: Permissive spdx_license_key: LicenseRef-scancode-dhtmlab-public other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Copyright (c) 2000 internet.com Corp. All Rights Reserved. + Originally published and documented at http://www.dhtmlab.com/ + You may use this code on a public Web site only if this entire + copyright notice appears unchanged and you publicly display + on the Web page a link to http://www.dhtmlab.com/." json: dhtmlab-public.json - yml: dhtmlab-public.yml + yaml: dhtmlab-public.yml html: dhtmlab-public.html - text: dhtmlab-public.LICENSE + license: dhtmlab-public.LICENSE - license_key: diffmark + category: Public Domain spdx_license_key: diffmark other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + 1. you can do what you want with it + 2. I refuse any responsibility for the consequences json: diffmark.json - yml: diffmark.yml + yaml: diffmark.yml html: diffmark.html - text: diffmark.LICENSE + license: diffmark.LICENSE - license_key: digia-qt-commercial + category: Commercial spdx_license_key: LicenseRef-scancode-digia-qt-commercial other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + Commercial License Usage + Licensees holding valid commercial Qt licenses may use this file in + accordance with the commercial license agreement provided with the + Software or, alternatively, in accordance with the terms contained in + a written agreement between you and Digia. For licensing terms and + conditions see http://qt.digia.com/licensing. For further information + use the contact form at http://qt.digia.com/contact-us. json: digia-qt-commercial.json - yml: digia-qt-commercial.yml + yaml: digia-qt-commercial.yml html: digia-qt-commercial.html - text: digia-qt-commercial.LICENSE + license: digia-qt-commercial.LICENSE - license_key: digia-qt-exception-lgpl-2.1 + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "As an additional permission to the GNU Lesser General Public License version\n2.1,\ + \ the object code form of a \"work that uses the Library\" may incorporate\nmaterial from\ + \ a header file that is part of the Library. You may distribute\nsuch object code under\ + \ terms of your choice, provided that:\n (i) the header files of the Library have not\ + \ been modified; and \n (ii) the incorporated material is limited to numerical parameters,\ + \ data\n structure layouts, accessors, macros, inline functions and\n \ + \ templates; and\n (iii) you comply with the terms of Section 6 of the GNU Lesser General\n\ + \ Public License version 2.1.\n\nMoreover, you may apply this exception to a modified\ + \ version of the Library,\nprovided that such modification does not involve copying material\ + \ from the\nLibrary into the modified Library's header files unless such material is\nlimited\ + \ to (i) numerical parameters; (ii) data structure layouts;\n(iii) accessors; and (iv) small\ + \ macros, templates and inline functions of\nfive lines or less in length.\n\nFurthermore,\ + \ you are not required to apply this additional permission to a\nmodified version of the\ + \ Library." json: digia-qt-exception-lgpl-2.1.json - yml: digia-qt-exception-lgpl-2.1.yml + yaml: digia-qt-exception-lgpl-2.1.yml html: digia-qt-exception-lgpl-2.1.html - text: digia-qt-exception-lgpl-2.1.LICENSE + license: digia-qt-exception-lgpl-2.1.LICENSE - license_key: digia-qt-preview + category: Commercial spdx_license_key: LicenseRef-scancode-digia-qt-preview other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "TECHNOLOGY PREVIEW LICENSE AGREEMENT\n\nFor individuals and/or legal entities resident\ + \ in the Americas (North\nAmerica, Central America and South America), the applicable licensing\n\ + terms are specified under the heading \"Technology Preview License\nAgreement: The Americas\"\ + .\n\nFor individuals and/or legal entities not resident in The Americas, the\napplicable\ + \ licensing terms are specified under the heading \"Technology\nPreview License Agreement:\ + \ Rest of the World\".\n\n\nTECHNOLOGY PREVIEW LICENSE AGREEMENT: The Americas\nAgreement\ + \ version 2.4\n\nThis Technology Preview License Agreement (\"Agreement\")is a legal agreement\n\ + between Digia USA, Inc. (\"Digia\"), with its registered office at 2350\nMission College\ + \ Blvd., Suite 1020, Santa Clara, California 95054,\nU.S.A. and you (either an individual\ + \ or a legal entity) (\"Licensee\") for the\nLicensed Software (as defined below).\n\n1.\ + \ DEFINITIONS\n\n\"Affiliate\" of a Party shall mean an entity (i) which is directly or\n\ + indirectly controlling such Party; (ii) which is under the same direct\nor indirect ownership\ + \ or control as such Party; or (iii) which is\ndirectly or indirectly owned or controlled\ + \ by such Party. For these\npurposes, an entity shall be treated as being controlled by\ + \ another if\nthat other entity has fifty percent (50 %) or more of the votes in such\n\ + entity, is able to direct its affairs and/or to control the composition\nof its board of\ + \ directors or equivalent body.\n\n\"Applications\" shall mean Licensee's software products\ + \ created using the\nLicensed Software which may include portions of the Licensed Software.\n\ + \n\"Term\" shall mean the period of time six (6) months from the later of\n(a) the Effective\ + \ Date; or (b) the date the Licensed Software was\ninitially delivered to Licensee by Digia.\ + \ If no specific Effective Date\nis set forth in the Agreement, the Effective Date shall\ + \ be deemed to be\nthe date the Licensed Software was initially delivered to Licensee.\n\ + \n\"Licensed Software\" shall mean the computer software, \"online\" or\nelectronic documentation,\ + \ associated media and printed materials,\nincluding the source code, example programs and\ + \ the documentation\ndelivered by Digia to Licensee in conjunction with this Agreement.\n\ + \n\"Party\" or \"Parties\" shall mean Licensee and/or Digia.\n\n\n2. OWNERSHIP\n\nThe Licensed\ + \ Software is protected by copyright laws and international\ncopyright treaties, as well\ + \ as other intellectual property laws and\ntreaties. The Licensed Software is licensed,\ + \ not sold.\n\nIf Licensee provides any findings, proposals, suggestions or other\nfeedback\ + \ (\"Feedback\") to Digia regarding the Licensed Software, Digia\nshall own all right, title\ + \ and interest including the intellectual\nproperty rights in and to such Feedback, excluding\ + \ however any existing\npatent rights of Licensee. To the extent Licensee owns or controls\ + \ any\npatents for such Feedback Licensee hereby grants to Digia and its\nAffiliates, a\ + \ worldwide, perpetual, non-transferable, sublicensable,\nroyalty-free license to (i) use,\ + \ copy and modify Feedback and to create\nderivative works thereof, (ii) to make (and have\ + \ made), use, import,\nsell, offer for sale, lease, dispose, offer for disposal or otherwise\n\ + exploit any products or services of Digia containing Feedback, and\n(iii) sublicense all\ + \ the foregoing rights to third party licensees and\ncustomers of Digia and/or its Affiliates.\n\ + \n\n3. VALIDITY OF THE AGREEMENT\n\nBy installing, copying, or otherwise using the Licensed\ + \ Software,\nLicensee agrees to be bound by the terms of this Agreement. If Licensee\ndoes\ + \ not agree to the terms of this Agreement, Licensee may not install,\ncopy, or otherwise\ + \ use the Licensed Software. Upon Licensee's acceptance\nof the terms and conditions of\ + \ this Agreement, Digia grants Licensee the\nright to use the Licensed Software in the manner\ + \ provided below.\n\n\n4. LICENSES\n\n4.1. Using and Copying\n\nDigia grants to Licensee\ + \ a non-exclusive, non-transferable, time-limited\nlicense to use and copy the Licensed\ + \ Software for sole purpose of\ndesigning, developing and testing Applications, and evaluating\ + \ and the\nLicensed Software during the Term.\n\nLicensee may install copies of the Licensed\ + \ Software on an unlimited\nnumber of computers provided that (a) if an individual, only\ + \ such\nindividual; or (b) if a legal entity only its employees; use the\nLicensed Software\ + \ for the authorized purposes.\n\n4.2 No Distribution or Modifications\n\nLicensee may not\ + \ disclose, modify, sell, market, commercialise,\ndistribute, loan, rent, lease, or license\ + \ the Licensed Software or any\ncopy of it or use the Licensed Software for any purpose\ + \ that is not\nexpressly granted in this Section 4. Licensee may not alter or remove\nany\ + \ details of ownership, copyright, trademark or other property right\nconnected with the\ + \ Licensed Software. Licensee may not distribute any\nsoftware statically or dynamically\ + \ linked with the Licensed Software. \n\n4.3 No Technical Support\n\nDigia has no obligation\ + \ to furnish Licensee with any technical support\nwhatsoever. Any such support is subject\ + \ to separate agreement between\nthe Parties.\n\n\n5. PRE-RELEASE CODE\nThe Licensed Software\ + \ contains pre-release code that is not at the level\nof performance and compatibility of\ + \ a final, generally available,\nproduct offering. The Licensed Software may not operate\ + \ correctly and\nmay be substantially modified prior to the first commercial product\nrelease,\ + \ if any. Digia is not obligated to make this or any later\nversion of the Licensed Software\ + \ commercially available. The License\nSoftware is \"Not for Commercial Use\" and may only\ + \ be used for the\npurposes described in Section 4. The Licensed Software may not be used\n\ + in a live operating environment where it may be relied upon to perform\nin the same manner\ + \ as a commercially released product or with data that\nhas not been sufficiently backed\ + \ up.\n\n6. THIRD PARTY SOFTWARE\n\nThe Licensed Software may provide links to third party\ + \ libraries or code\n(collectively \"Third Party Software\") to implement various functions.\n\ + Third Party Software does not comprise part of the Licensed Software. In\nsome cases, access\ + \ to Third Party Software may be included along with\nthe Licensed Software delivery as\ + \ a convenience for development and\ntesting only. Such source code and libraries may be\ + \ listed in the\n\".../src/3rdparty\" source tree delivered with the Licensed Software or\n\ + documented in the Licensed Software where the Third Party Software is\nused, as may be amended\ + \ from time to time, do not comprise the Licensed\nSoftware. Licensee acknowledges (1) that\ + \ some part of Third Party\nSoftware may require additional licensing of copyright and patents\ + \ from\nthe owners of such, and (2) that distribution of any of the Licensed\nSoftware referencing\ + \ any portion of a Third Party Software may require\nappropriate licensing from such third\ + \ parties.\n\n\n7. LIMITED WARRANTY AND WARRANTY DISCLAIMER\n\nThe Licensed Software is\ + \ licensed to Licensee \"as is\". To the maximum\nextent permitted by applicable law, Digia\ + \ on behalf of itself and its\nsuppliers, disclaims all warranties and conditions, either\ + \ express or\nimplied, including, but not limited to, implied warranties of\nmerchantability,\ + \ fitness for a particular purpose, title and\nnon-infringement with regard to the Licensed\ + \ Software.\n\n\n8. LIMITATION OF LIABILITY\n\nIf, Digia's warranty disclaimer notwithstanding,\ + \ Digia is held liable to\nLicensee, whether in contract, tort or any other legal theory,\ + \ based on\nthe Licensed Software, Digia's entire liability to Licensee and\nLicensee's\ + \ exclusive remedy shall be, at Digia's option, either (A)\nreturn of the price Licensee\ + \ paid for the Licensed Software, or (B)\nrepair or replacement of the Licensed Software,\ + \ provided Licensee\nreturns to Digia all copies of the Licensed Software as originally\n\ + delivered to Licensee. Digia shall not under any circumstances be liable\nto Licensee based\ + \ on failure of the Licensed Software if the failure\nresulted from accident, abuse or misapplication,\ + \ nor shall Digia under\nany circumstances be liable for special damages, punitive or exemplary\n\ + damages, damages for loss of profits or interruption of business or for\nloss or corruption\ + \ of data. Any award of damages from Digia to Licensee\nshall not exceed the total amount\ + \ Licensee has paid to Digia in\nconnection with this Agreement.\n\n\n9. CONFIDENTIALITY\n\ + \nEach party acknowledges that during the Term of this Agreement it shall\nhave access to\ + \ information about the other party's business, business\nmethods, business plans, customers,\ + \ business relations, technology, and\nother information, including the terms of this Agreement,\ + \ that is\nconfidential and of great value to the other party, and the value of\nwhich would\ + \ be significantly reduced if disclosed to third parties (the\n\"Confidential Information\"\ + ). Accordingly, when a party (the \"Receiving\nParty\") receives Confidential Information\ + \ from another party (the\n\"Disclosing Party\"), the Receiving Party shall, and shall obligate\ + \ its\nemployees and agents and employees and agents of its Affiliates to: (i)\nmaintain\ + \ the Confidential Information in strict confidence; (ii) not\ndisclose the Confidential\ + \ Information to a third party without the\nDisclosing Party's prior written approval; and\ + \ (iii) not, directly or\nindirectly, use the Confidential Information for any purpose other\ + \ than\nfor exercising its rights and fulfilling its responsibilities pursuant\nto this\ + \ Agreement. Each party shall take reasonable measures to protect\nthe Confidential Information\ + \ of the other party, which measures shall\nnot be less than the measures taken by such\ + \ party to protect its own\nconfidential and proprietary information.\n\n\"Confidential\ + \ Information\" shall not include information that (a) is or\nbecomes generally known to\ + \ the public through no act or omission of the\nReceiving Party; (b) was in the Receiving\ + \ Party's lawful possession\nprior to the disclosure hereunder and was not subject to limitations\ + \ on\ndisclosure or use; (c) is developed by the Receiving Party without\naccess to the\ + \ Confidential Information of the Disclosing Party or by\npersons who have not had access\ + \ to the Confidential Information of the\nDisclosing Party as proven by the written records\ + \ of the Receiving\nParty; (d) is lawfully disclosed to the Receiving Party without\nrestrictions,\ + \ by a third party not under an obligation of\nconfidentiality; or (e) the Receiving Party\ + \ is legally compelled to\ndisclose the information, in which case the Receiving Party shall\ + \ assert\nthe privileged and confidential nature of the information and cooperate\nfully\ + \ with the Disclosing Party to protect against and prevent\ndisclosure of any Confidential\ + \ Information and to limit the scope of\ndisclosure and the dissemination of disclosed Confidential\ + \ Information\nby all legally available means.\n\nThe obligations of the Receiving Party\ + \ under this Section shall continue\nduring the Initial Term and for a period of five (5)\ + \ years after\nexpiration or termination of this Agreement. To the extent that the\nterms\ + \ of the Non-Disclosure Agreement between Digia and Licensee\nconflict with the terms of\ + \ this Section 9, this Section 9 shall be\ncontrolling over the terms of the Non-Disclosure\ + \ Agreement.\n\n\n10. GENERAL PROVISIONS\n\n10.1 No Assignment\n\nLicensee shall not\ + \ be entitled to assign or transfer all or any of its\nrights, benefits and obligations\ + \ under this Agreement without the prior\nwritten consent of Digia, which shall not be unreasonably\ + \ withheld.\n\n10.2 Termination\n\nDigia may terminate the Agreement at any time immediately\ + \ upon written\nnotice by Digia to Licensee if Licensee breaches this Agreement.\n\nUpon\ + \ termination of this Agreement, Licensee shall return to Digia all\ncopies of Licensed\ + \ Software that were supplied by Digia. All other\ncopies of Licensed Software in the possession\ + \ or control of Licensee\nmust be erased or destroyed. An officer of Licensee must promptly\n\ + deliver to Digia a written confirmation that this has occurred.\n\n10.3 Surviving Sections\n\ + \nAny terms and conditions that by their nature or otherwise reasonably\nshould survive\ + \ a cancellation or termination of this Agreement shall\nalso be deemed to survive. Such\ + \ terms and conditions include, but are\nnot limited to the following Sections: 2, 5, 6,\ + \ 7, 8, 9, 10.2, 10.3, 10.4,\n10.5, 10.6, 10.7, and 10.8 of this Agreement.\n\n10.4 Entire\ + \ Agreement\n\nThis Agreement constitutes the complete agreement between the parties\nand\ + \ supersedes all prior or contemporaneous discussions,\nrepresentations, and proposals,\ + \ written or oral, with respect to the\nsubject matters discussed herein, with the exception\ + \ of the\nnon-disclosure agreement executed by the parties in connection with this\nAgreement\ + \ (\"Non-Disclosure Agreement\"), if any, shall be subject to\nSection 9. No modification\ + \ of this Agreement shall be effective unless\ncontained in a writing executed by an authorized\ + \ representative of each\nparty. No term or condition contained in Licensee's purchase order\ + \ shall\napply unless expressly accepted by Digia in writing. If any provision of\nthe Agreement\ + \ is found void or unenforceable, the remainder shall remain\nvalid and enforceable according\ + \ to its terms. If any remedy provided is\ndetermined to have failed for its essential purpose,\ + \ all limitations of\nliability and exclusions of damages set forth in this Agreement shall\n\ + remain in effect.\n\n10.5 Export Control\n\nLicensee acknowledges that the Licensed Software\ + \ may be subject to\nexport control restrictions of various countries. Licensee shall fully\n\ + comply with all applicable export license restrictions and requirements\nas well as with\ + \ all laws and regulations relating to the importation of\nthe Licensed Software and shall\ + \ procure all necessary governmental\nauthorizations, including without limitation, all\ + \ necessary licenses,\napprovals, permissions or consents, where necessary for the\nre-exportation\ + \ of the Licensed Software.,\n\n10.6 Governing Law and Legal Venue\n\nThis Agreement\ + \ shall be governed by and construed in accordance with the\nfederal laws of the United\ + \ States of America and the internal laws of\nthe State of New York without given effect\ + \ to any choice of law rule\nthat would result in the application of the laws of any other\n\ + jurisdiction. The United Nations Convention on Contracts for the\nInternational Sale of\ + \ Goods (CISG) shall not apply. Each Party (a)\nhereby irrevocably submits itself to and\ + \ consents to the jurisdiction of\nthe United States District Court for the Southern District\ + \ of New York\n(or if such court lacks jurisdiction, the state courts of the State of\n\ + New York) for the purposes of any action, claim, suit or proceeding\nbetween the Parties\ + \ in connection with any controversy, claim, or\ndispute arising out of or relating to this\ + \ Agreement; and (b) hereby\nwaives, and agrees not to assert by way of motion, as a defense\ + \ or\notherwise, in any such action, claim, suit or proceeding, any claim that\nis not personally\ + \ subject to the jurisdiction of such court(s), that the\naction, claim, suit or proceeding\ + \ is brought in an inconvenient forum or\nthat the venue of the action, claim, suit or proceeding\ + \ is improper.\nNotwithstanding the foregoing, nothing in this Section 9.6 is intended\n\ + to, or shall be deemed to, constitute a submission or consent to, or\nselection of, jurisdiction,\ + \ forum or venue for any action for patent\ninfringement, whether or not such action relates\ + \ to this Agreement.\n\n10.7 No Implied License\n\nThere are no implied licenses or other\ + \ implied rights granted under this\nAgreement, and all rights, save for those expressly\ + \ granted hereunder,\nshall remain with Digia and its licensors. In addition, no licenses\ + \ or\nimmunities are granted to the combination of the Licensed Software with\nany other\ + \ software or hardware not delivered by Digia under this\nAgreement.\n\n10.8 Government\ + \ End Users\n\nA \"U.S. Government End User\" shall mean any agency or entity of the\ngovernment\ + \ of the United States. The following shall apply if Licensee\nis a U.S. Government End\ + \ User. The Licensed Software is a \"commercial\nitem,\" as that term is defined in 48 C.F.R.\ + \ 2.101 (Oct. 1995),\nconsisting of \"commercial computer software\" and \"commercial computer\n\ + software documentation,\" as such terms are used in 48 C.F.R. 12.212\n(Sept. 1995). Consistent\ + \ with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1\nthrough 227.7202-4 (June 1995), all U.S.\ + \ Government End Users acquire\nthe Licensed Software with only those rights set forth herein.\ + \ The\nLicensed Software (including related documentation) is provided to U.S.\nGovernment\ + \ End Users: (a) only as a commercial end item; and (b) only\npursuant to this Agreement.\n\ + \n\n\n\n\nTECHNOLOGY PREVIEW LICENSE AGREEMENT: Rest of the World\nAgreement version 2.4\n\ + \nThis Technology Preview License Agreement (\"Agreement\") is a legal\nagreement between\ + \ Digia Finland Ltd (\"Digia\"), with its registered office at\nValimotie 21,FI-00380 Helsinki,\ + \ Finland and you (either an individual or a\nlegal entity) (\"Licensee\") for the Licensed\ + \ Software.\n\n1. DEFINITIONS\n\n\"Affiliate\" of a Party shall mean an entity (i) which\ + \ is directly or\nindirectly controlling such Party; (ii) which is under the same direct\n\ + or indirect ownership or control as such Party; or (iii) which is\ndirectly or indirectly\ + \ owned or controlled by such Party. For these\npurposes, an entity shall be treated as\ + \ being controlled by another if\nthat other entity has fifty percent (50 %) or more of\ + \ the votes in such\nentity, is able to direct its affairs and/or to control the composition\n\ + of its board of directors or equivalent body.\n\n\"Applications\" shall mean Licensee's\ + \ software products created using the\nLicensed Software which may include portions of the\ + \ Licensed Software.\n\n\"Term\" shall mean the period of time six (6) months from the later\ + \ of\n(a) the Effective Date; or (b) the date the Licensed Software was\ninitially delivered\ + \ to Licensee by Digia. If no specific Effective Date\nis set forth in the Agreement, the\ + \ Effective Date shall be deemed to be\nthe date the Licensed Software was initially delivered\ + \ to Licensee.\n\n\"Licensed Software\" shall mean the computer software, \"online\" or\n\ + electronic documentation, associated media and printed materials,\nincluding the source\ + \ code, example programs and the documentation\ndelivered by Digia to Licensee in conjunction\ + \ with this Agreement.\n\n\"Party\" or \"Parties\" shall mean Licensee and/or Digia.\n\n\ + \n2. OWNERSHIP\n\nThe Licensed Software is protected by copyright laws and international\n\ + copyright treaties, as well as other intellectual property laws and\ntreaties. The Licensed\ + \ Software is licensed, not sold.\n\nIf Licensee provides any findings, proposals, suggestions\ + \ or other\nfeedback (\"Feedback\") to Digia regarding the Licensed Software, Digia\nshall\ + \ own all right, title and interest including the intellectual\nproperty rights in and to\ + \ such Feedback, excluding however any existing\npatent rights of Licensee. To the extent\ + \ Licensee owns or controls any\npatents for such Feedback Licensee hereby grants to Digia\ + \ and its\nAffiliates, a worldwide, perpetual, non-transferable, sublicensable,\nroyalty-free\ + \ license to (i) use, copy and modify Feedback and to create\nderivative works thereof,\ + \ (ii) to make (and have made), use, import,\nsell, offer for sale, lease, dispose, offer\ + \ for disposal or otherwise\nexploit any products or services of Digia containing Feedback,\ + \ and\n(iii) sublicense all the foregoing rights to third party licensees and\ncustomers\ + \ of Digia and/or its Affiliates.\n\n3. VALIDITY OF THE AGREEMENT\n\nBy installing, copying,\ + \ or otherwise using the Licensed Software,\nLicensee agrees to be bound by the terms of\ + \ this Agreement. If Licensee\ndoes not agree to the terms of this Agreement, Licensee may\ + \ not install,\ncopy, or otherwise use the Licensed Software. Upon Licensee's acceptance\n\ + of the terms and conditions of this Agreement, Digia grants Licensee the\nright to use the\ + \ Licensed Software in the manner provided below.\n\n\n4. LICENSES\n\n4.1. Using and Copying\n\ + \nDigia grants to Licensee a non-exclusive, non-transferable, time-limited\nlicense to use\ + \ and copy the Licensed Software for sole purpose of\ndesigning, developing and testing\ + \ Applications, and evaluating and the\nLicensed Software during the Term.\n\nLicensee may\ + \ install copies of the Licensed Software on an unlimited\nnumber of computers provided\ + \ that (a) if an individual, only such\nindividual; or (b) if a legal entity only its employees;\ + \ use the\nLicensed Software for the authorized purposes.\n\n4.2 No Distribution or Modifications\n\ + \nLicensee may not disclose, modify, sell, market, commercialise,\ndistribute, loan, rent,\ + \ lease, or license the Licensed Software or any\ncopy of it or use the Licensed Software\ + \ for any purpose that is not\nexpressly granted in this Section 4. Licensee may not alter\ + \ or remove\nany details of ownership, copyright, trademark or other property right\nconnected\ + \ with the Licensed Software. Licensee may not distribute any\nsoftware statically or dynamically\ + \ linked with the Licensed Software.\n\n4.3 No Technical Support\n\nDigia has no obligation\ + \ to furnish Licensee with any technical support\nwhatsoever. Any such support is subject\ + \ to separate agreement between\nthe Parties.\n\n\n5. PRE-RELEASE CODE\n\nThe Licensed Software\ + \ contains pre-release code that is not at the level\nof performance and compatibility of\ + \ a final, generally available,\nproduct offering. The Licensed Software may not operate\ + \ correctly and\nmay be substantially modified prior to the first commercial product\nrelease,\ + \ if any. Digia is not obligated to make this or any later\nversion of the Licensed Software\ + \ commercially available. The License\nSoftware is \"Not for Commercial Use\" and may only\ + \ be used for the\npurposes described in Section 4. The Licensed Software may not be used\n\ + in a live operating environment where it may be relied upon to perform\nin the same manner\ + \ as a commercially released product or with data that\nhas not been sufficiently backed\ + \ up.\n\n6. THIRD PARTY SOFTWARE\n\nThe Licensed Software may provide links to third party\ + \ libraries or code\n(collectively \"Third Party Software\") to implement various functions.\n\ + Third Party Software does not comprise part of the Licensed Software. In\nsome cases, access\ + \ to Third Party Software may be included along with\nthe Licensed Software delivery as\ + \ a convenience for development and\ntesting only. Such source code and libraries may be\ + \ listed in the\n\".../src/3rdparty\" source tree delivered with the Licensed Software or\n\ + documented in the Licensed Software where the Third Party Software is\nused, as may be amended\ + \ from time to time, do not comprise the Licensed\nSoftware. Licensee acknowledges (1) that\ + \ some part of Third Party\nSoftware may require additional licensing of copyright and patents\ + \ from\nthe owners of such, and (2) that distribution of any of the Licensed\nSoftware referencing\ + \ any portion of a Third Party Software may require\nappropriate licensing from such third\ + \ parties.\n\n\n7. LIMITED WARRANTY AND WARRANTY DISCLAIMER\n\nThe Licensed Software is\ + \ licensed to Licensee \"as is\". To the maximum\nextent permitted by applicable law, Digia\ + \ on behalf of itself and its\nsuppliers, disclaims all warranties and conditions, either\ + \ express or\nimplied, including, but not limited to, implied warranties of\nmerchantability,\ + \ fitness for a particular purpose, title and\nnon-infringement with regard to the Licensed\ + \ Software.\n\n\n8. LIMITATION OF LIABILITY\n\nIf, Digia's warranty disclaimer notwithstanding,\ + \ Digia is held liable to\nLicensee, whether in contract, tort or any other legal theory,\ + \ based on\nthe Licensed Software, Digia's entire liability to Licensee and\nLicensee's\ + \ exclusive remedy shall be, at Digia's option, either (A)\nreturn of the price Licensee\ + \ paid for the Licensed Software, or (B)\nrepair or replacement of the Licensed Software,\ + \ provided Licensee\nreturns to Digia all copies of the Licensed Software as originally\n\ + delivered to Licensee. Digia shall not under any circumstances be liable\nto Licensee based\ + \ on failure of the Licensed Software if the failure\nresulted from accident, abuse or misapplication,\ + \ nor shall Digia under\nany circumstances be liable for special damages, punitive or exemplary\n\ + damages, damages for loss of profits or interruption of business or for\nloss or corruption\ + \ of data. Any award of damages from Digia to Licensee\nshall not exceed the total amount\ + \ Licensee has paid to Digia in\nconnection with this Agreement.\n\n\n9. CONFIDENTIALITY\n\ + \nEach party acknowledges that during the Term of this Agreement it shall\nhave access to\ + \ information about the other party's business, business\nmethods, business plans, customers,\ + \ business relations, technology, and\nother information, including the terms of this Agreement,\ + \ that is\nconfidential and of great value to the other party, and the value of\nwhich would\ + \ be significantly reduced if disclosed to third parties (the\n\"Confidential Information\"\ + ). Accordingly, when a party (the \"Receiving\nParty\") receives Confidential Information\ + \ from another party (the\n\"Disclosing Party\"), the Receiving Party shall, and shall obligate\ + \ its\nemployees and agents and employees and agents of its Affiliates to: (i)\nmaintain\ + \ the Confidential Information in strict confidence; (ii) not\ndisclose the Confidential\ + \ Information to a third party without the\nDisclosing Party's prior written approval; and\ + \ (iii) not, directly or\nindirectly, use the Confidential Information for any purpose other\ + \ than\nfor exercising its rights and fulfilling its responsibilities pursuant\nto this\ + \ Agreement. Each party shall take reasonable measures to protect\nthe Confidential Information\ + \ of the other party, which measures shall\nnot be less than the measures taken by such\ + \ party to protect its own\nconfidential and proprietary information.\n\n\"Confidential\ + \ Information\" shall not include information that (a) is or\nbecomes generally known to\ + \ the public through no act or omission of the\nReceiving Party; (b) was in the Receiving\ + \ Party's lawful possession\nprior to the disclosure hereunder and was not subject to limitations\ + \ on\ndisclosure or use; (c) is developed by the Receiving Party without\naccess to the\ + \ Confidential Information of the Disclosing Party or by\npersons who have not had access\ + \ to the Confidential Information of the\nDisclosing Party as proven by the written records\ + \ of the Receiving\nParty; (d) is lawfully disclosed to the Receiving Party without\nrestrictions,\ + \ by a third party not under an obligation of\nconfidentiality; or (e) the Receiving Party\ + \ is legally compelled to\ndisclose the information, in which case the Receiving Party shall\ + \ assert\nthe privileged and confidential nature of the information and cooperate\nfully\ + \ with the Disclosing Party to protect against and prevent\ndisclosure of any Confidential\ + \ Information and to limit the scope of\ndisclosure and the dissemination of disclosed Confidential\ + \ Information\nby all legally available means.\n\nThe obligations of the Receiving Party\ + \ under this Section shall continue\nduring the Initial Term and for a period of five (5)\ + \ years after\nexpiration or termination of this Agreement. To the extent that the\nterms\ + \ of the Non-Disclosure Agreement between Digia and Licensee\nconflict with the terms of\ + \ this Section 9, this Section 9 shall be\ncontrolling over the terms of the Non-Disclosure\ + \ Agreement.\n\n\n10. GENERAL PROVISIONS\n\n10.1 No Assignment\n\nLicensee shall not\ + \ be entitled to assign or transfer all or any of its\nrights, benefits and obligations\ + \ under this Agreement without the prior\nwritten consent of Digia, which shall not be unreasonably\ + \ withheld.\n\n10.2 Termination\n\nDigia may terminate the Agreement at any time immediately\ + \ upon written\nnotice by Digia to Licensee if Licensee breaches this Agreement.\n\nUpon\ + \ termination of this Agreement, Licensee shall return to Digia all\ncopies of Licensed\ + \ Software that were supplied by Digia. All other\ncopies of Licensed Software in the possession\ + \ or control of Licensee\nmust be erased or destroyed. An officer of Licensee must promptly\n\ + deliver to Digia a written confirmation that this has occurred.\n\n10.3 Surviving Sections\n\ + \nAny terms and conditions that by their nature or otherwise reasonably\nshould survive\ + \ a cancellation or termination of this Agreement shall\nalso be deemed to survive. Such\ + \ terms and conditions include, but are\nnot limited to the following Sections: 2, 5, 6,\ + \ 7, 8, 9, 10.2, 10.3, 10.4,\n10.5, 10.6, 10.7, and 10.8 of this Agreement. \n\n10.4 \ + \ Entire Agreement\n\nThis Agreement constitutes the complete agreement between the parties\n\ + and supersedes all prior or contemporaneous discussions,\nrepresentations, and proposals,\ + \ written or oral, with respect to the\nsubject matters discussed herein, with the exception\ + \ of the\nnon-disclosure agreement executed by the parties in connection with this\nAgreement\ + \ (\"Non-Disclosure Agreement\"), if any, shall be subject to\nSection 9. No modification\ + \ of this Agreement shall be effective unless\ncontained in a writing executed by an authorized\ + \ representative of each\nparty. No term or condition contained in Licensee's purchase order\ + \ shall\napply unless expressly accepted by Digia in writing. If any provision of\nthe Agreement\ + \ is found void or unenforceable, the remainder shall remain\nvalid and enforceable according\ + \ to its terms. If any remedy provided is\ndetermined to have failed for its essential purpose,\ + \ all limitations of\nliability and exclusions of damages set forth in this Agreement shall\n\ + remain in effect.\n\n10.5 Export Control\n\nLicensee acknowledges that the Licensed Software\ + \ may be subject to\nexport control restrictions of various countries. Licensee shall fully\n\ + comply with all applicable export license restrictions and requirements\nas well as with\ + \ all laws and regulations relating to the importation of\nthe Licensed Software and shall\ + \ procure all necessary governmental\nauthorizations, including without limitation, all\ + \ necessary licenses,\napprovals, permissions or consents, where necessary for the\nre-exportation\ + \ of the Licensed Software.,\n\n10.6 Governing Law and Legal Venue\n\nThis Agreement\ + \ shall be construed and interpreted in accordance with the\nlaws of Finland, excluding\ + \ its choice of law provisions. Any disputes\narising out of or relating to this Agreement\ + \ shall be resolved in\narbitration under the Rules of Arbitration of the Chamber of Commerce\ + \ of\nHelsinki, Finland. The arbitration tribunal shall consist of one (1), or\nif either\ + \ Party so requires, of three (3), arbitrators. The award shall\nbe final and binding and\ + \ enforceable in any court of competent\njurisdiction. The arbitration shall be held in\ + \ Helsinki, Finland and the\nprocess shall be conducted in the English language.\n\n10.7\ + \ No Implied License\n\nThere are no implied licenses or other implied rights granted\ + \ under this\nAgreement, and all rights, save for those expressly granted hereunder,\nshall\ + \ remain with Digia and its licensors. In addition, no licenses or\nimmunities are granted\ + \ to the combination of the Licensed Software with\nany other software or hardware not delivered\ + \ by Digia under this\nAgreement.\n\n10.8 Government End Users\n\nA \"U.S. Government\ + \ End User\" shall mean any agency or entity of the\ngovernment of the United States. The\ + \ following shall apply if Licensee\nis a U.S. Government End User. The Licensed Software\ + \ is a \"commercial\nitem,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995),\nconsisting\ + \ of \"commercial computer software\" and \"commercial computer\nsoftware documentation,\"\ + \ as such terms are used in 48 C.F.R. 12.212\n(Sept. 1995). Consistent with 48 C.F.R. 12.212\ + \ and 48 C.F.R. 227.7202-1\nthrough 227.7202-4 (June 1995), all U.S. Government End Users\ + \ acquire\nthe Licensed Software with only those rights set forth herein. The\nLicensed\ + \ Software (including related documentation) is provided to U.S.\nGovernment End Users:\ + \ (a) only as a commercial end item; and (b) only\npursuant to this Agreement." json: digia-qt-preview.json - yml: digia-qt-preview.yml + yaml: digia-qt-preview.yml html: digia-qt-preview.html - text: digia-qt-preview.LICENSE + license: digia-qt-preview.LICENSE - license_key: digirule-foss-exception + category: Copyleft Limited spdx_license_key: DigiRule-FOSS-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + DigiRule Solutions's FOSS License Exception Terms and Conditions + + 1. Definitions. + + "Derivative Work" means a derivative work, as defined under applicable copyright law, formed entirely from the Program and one or more FOSS Applications. + + "FOSS Application" means a free and open source software application distributed subject to a license listed in the section below titled "FOSS License List." + + "FOSS Notice" means a notice placed by DigiRule Solutions in a copy of the Client Libraries stating that such copy of the Client Libraries may be distributed under DigiRule Solutions's or FOSS License Exception. + + "Independent Work" means portions of the Derivative Work that are not derived from the Program and can reasonably be considered independent and separate works. + + "Program" means a copy of DigiRule Solutions's Client Libraries that contain a FOSS Notice. + 2. A FOSS application developer ("you" or "your") may distribute a Derivative Work provided that you and the Derivative Work meet all of the following conditions: + 1. You obey the GPL in all respects for the Program and all portions (including modifications) of the Program included in the Derivative Work (provided that this condition does not apply to Independent Works); + 2. The Derivative Work does not include any work licensed under the GPL other than the Program; + 3. You distribute Independent Works subject to a license listed in the section below titled "FOSS License List"; + 4. You distribute Independent Works in object code or executable form with the complete corresponding machine-readable source code on the same medium and under the same FOSS license applying to the object code or executable forms; + 5. All works that are aggregated with the Program or the Derivative Work on a medium or volume of storage are not derivative works of the Program, Derivative Work or FOSS Application, and must reasonably be considered independent and separate works. + 3. DigiRule Solutions reserves all rights not expressly granted in these terms and conditions. If all of the above conditions are not met, then this FOSS License Exception does not apply to you or your Derivative Work. + + FOSS License List + License Name Version(s)/Copyright Date + Release Early Certified Software + Academic Free License 2.0 + Apache Software License 1.0/1.1/2.0 + Apple Public Source License 2.0 + Artistic license From Perl 5.8.0 + BSD license "July 22 1999" + Common Development and Distribution License (CDDL) 1.0 + Common Public License 1.0 + Eclipse Public License 1.0 + GNU Library or "Lesser" General Public License (LGPL) 2.0/2.1/3.0 + Jabber Open Source License 1.0 + MIT License (As listed in file MIT-License.txt) - + Mozilla Public License (MPL) 1.0/1.1 + Open Software License 2.0 + OpenSSL license (with original SSLeay license) "2003" ("1998") + PHP License 3.0/3.01 + Python license (CNRI Python License) - + Python Software Foundation License 2.1.1 + Sleepycat License "1999" + University of Illinois/NCSA Open Source License - + W3C License "2001" + X11 License "2001" + Zlib/libpng License - + Zope Public License 2.0 json: digirule-foss-exception.json - yml: digirule-foss-exception.yml + yaml: digirule-foss-exception.yml html: digirule-foss-exception.html - text: digirule-foss-exception.LICENSE + license: digirule-foss-exception.LICENSE - license_key: divx-open-1.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-divx-open-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "DivX Open License\n================= \nVersion 1.0\n\nCopyright (C) 2001 Project Mayo.\ + \ \n\nEveryone is permitted to copy and distribute verbatim copies of this license document,\ + \ but changing it is not allowed.\n\nProvided below is our open source license agreement\ + \ (\"License\") under which we provide the Codec (defined below) to you free of charge.\ + \ Please read it carefully.\n\nBY USING, COPYING, MODIFYING, OR DISTRIBUTING THE CODEC OR\ + \ A LARGER WORK (DEFINED BELOW), YOU INDICATE YOUR ACCEPTANCE OF THIS LICENSE TO DO SO,\ + \ AND ALL ITS TERMS AND CONDITIONS.\n\nFor purposes of this Agreement, the \"Codec\" shall\ + \ mean the OpenDivX compression/decompression software provided to you by Project Mayo (\"\ + Project Mayo\") and any derivative work thereof, that is to say, a work containing the Codec\ + \ or a portion of it, either verbatim or with modifications and/or translated into another\ + \ language. A \"Larger Work\" shall mean any work including or integrating the Codec as\ + \ an object file or linked library. \"Encoded Content\" shall mean any multimedia content\ + \ encoded as output of the Codec, even if that Code is integrated into a Larger Work.\n\n\ + Permission is granted to you to use the Codec for any personal, non-commercial purpose,\ + \ and to copy it, alter it and redistribute it, subject to the following:\n\n1. You may\ + \ use the Codec (and any Larger Work created by you) to create Encoded Content, and may\ + \ use, copy, distribute, display and transmit that Encoded Content, provided that Encoded\ + \ Content may not be used for direct commercialization, without written permission of Project\ + \ Mayo. For the purposes of this License, direct commercialization includes uses where the\ + \ Encoded Content is a primary or substantial product, regardless of the means of revenue\ + \ generation (including, but not limited to direct pay, subscription, and advertising subsidization).\ + \ Direct commercialization does not include personal or promotional use or uses where the\ + \ Encoded Content is a peripheral element of a larger product.\n\n2. You may modify your\ + \ copy or copies of the Codec or any portion of it, provided that you cause the modified\ + \ files to carry prominent notices stating that you changed the files and the date of any\ + \ such change.\n\n3. You may copy, distribute, display and transmit the Codec's source code,\ + \ in any medium, subject to the following:\n\na. You conspicuously and appropriately publish\ + \ appropriate copyright notice and disclaimer of all the notices that refer to this License\ + \ and warranty; and give any other recipients of the\n\non each copy an warranty; keep intact\ + \ to the absence of any Codec a copy of thisLicense along with the Codec.\n\nb. You must\ + \ cause any Codec that you distribute or publish to be licensed as a whole at no charge\ + \ to all third parties under the terms of this License. However, you may charge a fee for\ + \ the physical act of transferring a copy of the Codec, and you may at your option offer\ + \ warranty protection in exchange for a fee.\n\nc. In each instance in which you attribute\ + \ ownership or authorship of the Codec you will include an acknowledgement in a location\ + \ viewable to users of the Codec as follows: \"This product includes software developed\ + \ by or derived from software developed by Project Mayo.\" In any event, the origin of the\ + \ Codec must not be misrepresented; you must not claim sole authorship in the Codec.\n\n\ + d. Each time you redistribute the Codec, the recipient automatically receives a license\ + \ from Project Mayo to copy, distribute or modify the Codec subject to these terms and conditions.\ + \ You may not impose any further restrictions on the recipients' exercise of the rights\ + \ granted herein.\n\n4. You may copy and distribute the Codec in object code or executable\ + \ form under the terms of Sections 3, provided that you also accompany it with the complete\ + \ machine-readable source code, or information about where the source code can be obtained.\n\ + \n5. You may incorporate the Codec into a Larger Work and distribute that Larger Work under\ + \ terms of your choice, provided that:\n\na. The terms permit modification of the work for\ + \ the customer's own use and reverse engineering for debugging such modifications.\n\nb.\ + \ The terms are consistent with the limitations on use described in Section 1.\n\nc. You\ + \ include an acknowledgement in a location viewable to users of a distribution of a Larger\ + \ Work as follows: \"This product includes software developed by or derived from software\ + \ developed by Project Mayo.\"\n\n6. Any MPEG-4\n\nCodec or Larger Works created by you\ + \ must conform to the Video Standard.\n\n7. You Mayo before you use the names \"DivX;-)\"\ + , \"DivX\" or \"Project Mayo\" (or any names incorporating those names) or the file extensions\ + \ \".divx\" or \".div\" to promote or endorse products derived from the Codec, including,\ + \ but not limited to Larger Works.\n\n8. The Codec contains copyrighted materials that are\ + \ proprietary to Project Mayo, and no rights are granted to you except as expressly provided\ + \ herein. You may not copy, modify, sublicense, display, distribute or transmit the Codec\ + \ except as expressly provided under this License. Any act or attempt to copy, modify, sublicense,\ + \ display, distribute or transmit the Codec other than as permitted herein will automatically\ + \ terminate your rights under this License. However, parties who have received copies from\ + \ you under this License will not have their licenses terminated so long as such parties\n\ + \nmust receive prior express written permission from Project\n\nremain in full compliance.\n\ + \nTHIS CODEC IS PROVIDED BY PROJECT MAYO AND ITS CONTRIBUTORS \"AS IS\" AND ANY EXPRESS\ + \ OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL\ + \ PROJECT MAYO OR ITS CONTRIBUTORS BE HELD 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." json: divx-open-1.0.json - yml: divx-open-1.0.yml + yaml: divx-open-1.0.yml html: divx-open-1.0.html - text: divx-open-1.0.LICENSE + license: divx-open-1.0.LICENSE - license_key: divx-open-2.1 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-divx-open-2.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "\"OpenDivX\" is licensed under the DivX Open License.\n\nDivX Open License\n=================\n\ + Version 2.1\n\nThis version of the DivX Open License supercedes any prior versions.\n\n\ + Copyright (C) 2001 Project Mayo. Everyone is permitted to copy and distribute verbatim copies\ + \ of this license document, but changing it is not allowed.\n\nProvided below is our open\ + \ source license agreement (\"License\") under which we provide the Codec (defined below)\ + \ to you free of charge. Please read it carefully.\n\nBY USING, COPYING, MODIFYING, OR DISTRIBUTING\ + \ THE CODEC OR A LARGER WORK (DEFINED BELOW), YOU INDICATE YOUR ACCEPTANCE OF THIS LICENSE\ + \ TO DO SO, AND ALL ITS TERMS AND CONDITIONS.\n\nFor purposes of this Agreement, the \"\ + Codec\" shall mean the OpenDivX compression/decompression software provided to you by Project\ + \ Mayo (\"Project Mayo\") and any derivative work thereof, that is to say, a work containing\ + \ the Codec or a portion of it, either verbatim or with modifications and/or translated\ + \ into another language. A \"Larger Work\" shall mean any work including or integrating\ + \ the Codec as an object file or linked library. \"Encoded Content\" shall mean any multimedia\ + \ content encoded as output of the Codec, even if that Codec is integrated into a Larger\ + \ Work.\n\nPermission is granted to you to use the Codec for any purpose, and to copy it,\ + \ alter it and redistribute it, subject to the following:\n\n1. You may modify your copy\ + \ or copies of the Codec or any portion of it, provided that you cause the modified files\ + \ to carry prominent notices stating that you changed the files and the date of any such\ + \ change.\n\n2. You may copy, distribute, display and transmit the Codec's source code,\ + \ in any medium, subject to the following:\n\na. You must 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 Codec a copy of this License along with the Codec.\n\ + \nb. You must cause any Codec that you distribute or publish to be licensed as a whole at\ + \ no charge to all third parties under the terms of this License. However, you may charge\ + \ a fee for the physical act of transferring a copy of the Codec, and you may at your option\ + \ offer warranty protection in exchange for a fee.\n\nc. In each instance in which you attribute\ + \ ownership or authorship of the Codec you will include an acknowledgement in a location\ + \ viewable to users of the Codec as follows: \"This product includes software developed\ + \ by or derived from software developed by Project Mayo.\" In any event, the origin of the\ + \ Codec must not be misrepresented; you must not claim sole authorship in the Codec.\n\n\ + d. Each time you redistribute the Codec, the recipient automatically receives a license\ + \ from Project Mayo to copy, distribute or modify the Codec subject to these terms and conditions.\ + \ You may not impose any further restrictions on the recipients' exercise of the rights\ + \ granted herein.\n\n3. You may copy and distribute the Codec in object code or executable\ + \ form under the terms of Section 2, provided that you also accompany it with the complete\ + \ machine-readable source code, or make such source-code freely and publicly available.\n\ + \n4. You may incorporate the Codec into a Larger Work and distribute that Larger Work under\ + \ terms of your choice, provided that:\n\na. The terms permit modification of the work for\ + \ the customer's own use and reverse engineering for debugging such modifications.\n\nb.\ + \ You include an acknowledgement in a location viewable to users of a distribution of a\ + \ Larger Work as follows: \"This product includes software developed by or derived from\ + \ software developed by Project Mayo.\"\n\n5. Any Codec or Larger Works created by you must\ + \ conform to the MPEG-4 Video Standard, however modules of the Codec that do not derive\ + \ from MoMuSys can be used and incorporated into a non-MPEG-4 conforming work that otherwise\ + \ complies with this license.\n\n6. Except as provided in section 7 below, you must receive\ + \ prior express written permission from Project Mayo before you use the names \"DivX;-)\"\ + \ or \"DivX\" (or any names incorporating those names) or the file extensions \".divx\"\ + \ or \".div\" to promote or endorse any products derived from the Codec, including, but\ + \ not limited to Larger Works.\n\n7. You must use the \".divx\" file extension in any Encoded\ + \ Content, when tools for this purpose are readily available. For Encoded Content used for\ + \ a commercial purpose, you must prominently display the \"Encoded in DivX\" logo on the\ + \ package of any Encoded Content in a manner immediately visible to viewers and you must\ + \ include the \"Encoded in DivX\" video logo at the beginning of any Encoded Content when\ + \ the means for such display are reasonably available.\n\n8. The Codec contains copyrighted\ + \ materials that are proprietary to Project Mayo, and no rights are granted to you except\ + \ as expressly provided herein. You may not copy, modify, sublicense, display, distribute\ + \ or transmit the Codec except as expressly provided under this License. Any act or attempt\ + \ to copy, modify, sublicense, display, distribute or transmit the Codec other than as permitted\ + \ herein will automatically terminate your rights under this License. However, parties who\ + \ have received copies from you under this License will not have their licenses terminated\ + \ so long as such parties remain in full compliance.\n\nTHIS CODEC IS PROVIDED BY PROJECT\ + \ MAYO AND ITS CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,\ + \ BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\ + \ PURPOSE AND NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL PROJECT MAYO OR ITS CONTRIBUTORS\ + \ BE HELD 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.\n \nWant to start or contribute to a project? Read this. \n \n* * *" json: divx-open-2.1.json - yml: divx-open-2.1.yml + yaml: divx-open-2.1.yml html: divx-open-2.1.html - text: divx-open-2.1.LICENSE + license: divx-open-2.1.LICENSE - license_key: dl-de-by-1-0-de + category: Permissive spdx_license_key: LicenseRef-scancode-dl-de-by-1-0-de other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + DL-DE->BY-1.0 + + Datenlizenz Deutschland – Namensnennung – Version 1.0 + + Jede Nutzung mit Quellenvermerk ist zulässig. + + Veränderungen, Bearbeitungen, neue Gestaltungen oder sonstige Abwandlungen sind mit einem Veränderungshinweis im Quellenvermerk zu versehen oder der Quellenvermerk ist zu löschen, sofern die datenhaltende Stelle dies verlangt. + + Der Bereitsteller stellt die Daten, Inhalte und Dienste mit der zur Erfüllung seiner öffentlichen Aufgaben erforderlichen Sorgfalt zur Verfügung. Für die Daten, Inhalte und Dienste gelten in Bezug auf deren Verfügbarkeit und deren Qualität die durch den Bereitsteller in den Metadaten oder sonstigen Beschreibungen zugewiesenen Spezifikationen und Qualitätsmerkmale. Der Bereitsteller übernimmt jedoch keine Gewähr für die Richtigkeit und Vollständigkeit der Daten und Inhalte sowie die dauerhafte Verfügbarkeit der Dienste. Davon ausgenommen sind Schadensersatzansprüche aufgrund einer Verletzung des Lebens, körperliche Unversehrtheit oder Gesundheit. Ebenfalls ausgenommen sind Schäden, die auf Vorsatz oder grober Fahrlässigkeit beruhen. json: dl-de-by-1-0-de.json - yml: dl-de-by-1-0-de.yml + yaml: dl-de-by-1-0-de.yml html: dl-de-by-1-0-de.html - text: dl-de-by-1-0-de.LICENSE + license: dl-de-by-1-0-de.LICENSE - license_key: dl-de-by-1-0-en + category: Permissive spdx_license_key: LicenseRef-scancode-dl-de-by-1-0-en other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + DL-DE->BY-1.0 + + Data licence Germany – attribution – Version 1.0 + + Any use shall be permitted provided the source is mentioned. + + Changes, editing, new designs or other amendments shall be marked with information in the source note about relevant changes, or the source note must be deleted if the entity keeping the data requires so. + + The provider makes available the data, contents and services with the diligence necessary for the discharge of its public tasks. With reference to their availability and quality, the specifications and quality features assigned by the provider in the meta-data or other descriptions apply to the data, contents and services. However, the provider does not assume any liability for the accuracy and completeness of data and contents and for permanent availability of services. Exempt from this are any claims for damage due to an injury to life, limb or health. Also exempt is damage based on wilfulness or gross negligence. json: dl-de-by-1-0-en.json - yml: dl-de-by-1-0-en.yml + yaml: dl-de-by-1-0-en.yml html: dl-de-by-1-0-en.html - text: dl-de-by-1-0-en.LICENSE + license: dl-de-by-1-0-en.LICENSE - license_key: dl-de-by-2-0-de + category: Permissive spdx_license_key: DL-DE-BY-2.0 other_spdx_license_keys: - LicenseRef-scancode-dl-de-by-2-0-de is_exception: no is_deprecated: no - category: Permissive + text: | + DL-DE->BY-2.0 + + Datenlizenz Deutschland – Namensnennung – Version 2.0 + + (1) Jede Nutzung ist unter den Bedingungen dieser „Datenlizenz Deutschland – Namensnennung – Version 2.0" zulässig. + + Die bereitgestellten Daten und Metadaten dürfen für die kommerzielle und nicht kommerzielle Nutzung insbesondere + + 1. vervielfältigt, ausgedruckt, präsentiert, verändert, bearbeitet sowie an Dritte übermittelt werden; + 2. mit eigenen Daten und Daten Anderer zusammengeführt und zu selbständigen neuen Datensätzen verbunden werden; + 3. in interne und externe Geschäftsprozesse, Produkte und Anwendungen in öffentlichen und nicht öffentlichen elektronischen Netzwerken eingebunden werden. + + (2) Bei der Nutzung ist sicherzustellen, dass folgende Angaben als Quellenvermerk enthalten sind: + + Bezeichnung des Bereitstellers nach dessen Maßgabe, + + 1. der Vermerk „Datenlizenz Deutschland – Namensnennung – Version 2.0" oder „dl-de/by-2-0" mit Verweis auf den Lizenztext unter www.govdata.de/dl-de/by-2-0 sowie + 2. einen Verweis auf den Datensatz (URI). + 3. Dies gilt nur soweit die datenhaltende Stelle die Angaben 1. bis 3. zum Quellenvermerk bereitstellt. + + (3) Veränderungen, Bearbeitungen, neue Gestaltungen oder sonstige Abwandlungen sind im Quellenvermerk mit dem Hinweis zu versehen, dass die Daten geändert wurden. json: dl-de-by-2-0-de.json - yml: dl-de-by-2-0-de.yml + yaml: dl-de-by-2-0-de.yml html: dl-de-by-2-0-de.html - text: dl-de-by-2-0-de.LICENSE + license: dl-de-by-2-0-de.LICENSE - license_key: dl-de-by-2-0-en + category: Permissive spdx_license_key: LicenseRef-scancode-dl-de-by-2-0-en other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + DL-DE->BY-2.0 + + Data licence Germany – attribution – version 2.0 + + (1) Any use will be permitted provided it fulfils the requirements of this "Data licence Germany – attribution – Version 2.0". + + The data and meta-data provided may, for commercial and non-commercial use, in particular + + 1. be copied, printed, presented, altered, processed and transmitted to third parties; + 2. be merged with own data and with the data of others and be combined to form new and independent datasets; + 3. be integrated in internal and external business processes, products and applications in public and non-public electronic networks. + + (2) The user must ensure that the source note contains the following information: + + 1. the name of the provider, + 2. the annotation "Data licence Germany – attribution – Version 2.0" or "dl-de/by-2-0" referring to the licence text available at www.govdata.de/dl-de/by-2-0, and + 3. a reference to the dataset (URI). + + This applies only if the entity keeping the data provides the pieces of information 1-3 for the source note. + + (3) Changes, editing, new designs or other amendments must be marked as such in the source note. json: dl-de-by-2-0-en.json - yml: dl-de-by-2-0-en.yml + yaml: dl-de-by-2-0-en.yml html: dl-de-by-2-0-en.html - text: dl-de-by-2-0-en.LICENSE + license: dl-de-by-2-0-en.LICENSE - license_key: dl-de-by-nc-1-0-de + category: Free Restricted spdx_license_key: LicenseRef-scancode-dl-de-by-nc-1-0-de other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + DL-DE->BY-NC-1.0 + + Datenlizenz Deutschland – Namensnennung – nicht kommerziell – Version 1.0 + + Jede Nutzung mit Quellenvermerk zu nicht kommerziellen Zwecken ist zulässig. + + Veränderungen, Bearbeitungen, neue Gestaltungen oder sonstige Abwandlungen sind mit einem Veränderungshinweis im Quellenvermerk zu versehen oder der Quellenvermerk ist zu löschen, sofern die datenhaltende Stelle dies verlangt. + + Der Bereitsteller stellt die Daten, Inhalte und Dienste mit der zur Erfüllung seiner öffentlichen Aufgaben erforderlichen Sorgfalt zur Verfügung. Für die Daten, Inhalte und Dienste gelten in Bezug auf deren Verfügbarkeit und deren Qualität die durch den Bereitsteller in den Metadaten oder sonstigen Beschreibungen zugewiesenen Spezifikationen und Qualitätsmerkmale. Der Bereitsteller übernimmt jedoch keine Gewähr für die Richtigkeit und Vollständigkeit der Daten und Inhalte sowie die dauerhafte Verfügbarkeit der Dienste. Davon ausgenommen sind Schadensersatzansprüche aufgrund einer Verletzung des Lebens, körperliche Unversehrtheit oder Gesundheit. Ebenfalls ausgenommen sind Schäden, die auf Vorsatz oder grober Fahrlässigkeit beruhen. json: dl-de-by-nc-1-0-de.json - yml: dl-de-by-nc-1-0-de.yml + yaml: dl-de-by-nc-1-0-de.yml html: dl-de-by-nc-1-0-de.html - text: dl-de-by-nc-1-0-de.LICENSE + license: dl-de-by-nc-1-0-de.LICENSE - license_key: dl-de-by-nc-1-0-en + category: Free Restricted spdx_license_key: LicenseRef-scancode-dl-de-by-nc-1-0-en other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + DL-DE->BY-NC-1.0 + + Data licence Germany – attribution – non-commercial – Version 1.0 + + Any use for non-commercial purposes quoting the source for is permissible. + + Changes, editing, new designs or other amendments shall be marked with information in the source note about relevant changes, or the source note must be deleted if the entity keeping the data requires so. + + The provider makes available the data, contents and services with the diligence necessary for the discharge of its public tasks. With reference to their availability and quality, the specifications and quality features assigned by the provider in the meta-data or other descriptions apply to the data, contents and services. However, the provider does not assume any liability for the accuracy and completeness of data and contents and for permanent availability of services. Exempt from this are any claims for damage due to an injury to life, limb or health. Also exempt is damage based on wilfulness or gross negligence. json: dl-de-by-nc-1-0-en.json - yml: dl-de-by-nc-1-0-en.yml + yaml: dl-de-by-nc-1-0-en.yml html: dl-de-by-nc-1-0-en.html - text: dl-de-by-nc-1-0-en.LICENSE + license: dl-de-by-nc-1-0-en.LICENSE - license_key: dmalloc + category: Permissive spdx_license_key: LicenseRef-scancode-dmalloc other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software for + any purpose and without fee is hereby granted, provided that the + above copyright notice and this permission notice appear in all + copies, and that the name of Gray Watson not be used in advertising + or publicity pertaining to distribution of the document or software + without specific, written prior permission. + + Gray Watson makes no representations about the suitability of the + software described herein for any purpose.  It is provided "as is" + without express or implied warranty. json: dmalloc.json - yml: dmalloc.yml + yaml: dmalloc.yml html: dmalloc.html - text: dmalloc.LICENSE + license: dmalloc.LICENSE +- license_key: dmtf-2017 + category: Permissive + spdx_license_key: LicenseRef-scancode-dmtf-2017 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + The Distributed Management Task Force (DMTF) grants rights under copyright in + this software on the terms of the BSD 3-Clause License as set forth below; no + other rights are granted by DMTF. This software might be subject to other rights + (such as patent rights) of other parties. + + + ### Copyrights. + + Copyright (c) 2017, Contributing Member(s) of Distributed Management Task Force, + Inc.. All rights reserved. + + Redistribution and use in source and binary forms, with or without modification, + are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, this + list of conditions and the following disclaimer in the documentation and/or + other materials provided with the distribution. + * Neither the name of the Distributed Management Task Force (DMTF) nor the names + of its contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR + ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + ### Patents. + + This software may be subject to third party patent rights, including provisional + patent rights ("patent rights"). DMTF makes no representations to users of the + standard as to the existence of such rights, and is not responsible to + recognize, disclose, or identify any or all such third party patent right, + owners or claimants, nor for any incomplete or inaccurate identification or + disclosure of such rights, owners or claimants. DMTF shall have no liability to + any party, in any manner or circumstance, under any legal theory whatsoever, for + failure to recognize, disclose, or identify any such third party patent rights, + or for such party's reliance on the software or incorporation thereof in its + product, protocols or testing procedures. DMTF shall have no liability to any + party using such software, whether such use is foreseeable or not, nor to any + patent owner or claimant, and shall have no liability or responsibility for + costs or losses incurred if software is withdrawn or modified after publication, + and shall be indemnified and held harmless by any party using the software from + any and all claims of infringement by a patent owner for such use. + + DMTF Members that contributed to this software source code might have made + patent licensing commitments in connection with their participation in the DMTF. + For details, see http://dmtf.org/sites/default/files/patent-10-18-01.pdf and + http://www.dmtf.org/about/policies/disclosures. + json: dmtf-2017.json + yaml: dmtf-2017.yml + html: dmtf-2017.html + license: dmtf-2017.LICENSE - license_key: do-no-harm-0.1 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-do-no-harm-0.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Do No Harm License + + Version 0.1, August 2018 + + https://github.com/raisely/NoHarm + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Preamble + + Most software today is developed with little to no thought of how it will be used, or the + consequences for our society and planet. + + As software developers, we engineer the infrastructure of the 21st century. We recognise that our + infrastructure has great power to shape the world and the lives of those we share it with, and we + choose to consciously take responsibility for the social and environmental impacts of what we build. + + We envisage a world free from injustice, inequality, and the reckless destruction of lives and our + planet. We reject slavery in all its forms, whether by force, indebtedness, or by algorithms that + hack human vulnerabilities. We seek a world where humankind is at peace with our neighbours, nature, + and ourselves. We want our work to enrich the physical, mental and spiritual wellbeing of all + society. + + We build software to further this vision of a just world, or at the very least, to not put that + vision further from reach. + + 2. 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. + + "Forests" shall mean 0.5 or more hectares of trees that were either planted more than 50 years ago + or were not planted by humans or human made equipment. + + "Deforestation" shall mean the clearing, burning or destruction of 0.5 or more hectares of forests + within a 1 year period. + + 3. 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. + + 4. 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. + + 5. 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: + + 1. You must give any other recipients of the Work or Derivative Works a copy of this License; and + + 2. You must cause any modified files to carry prominent notices stating that You changed the + files; and + + 3. 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 + + 4. 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; and + + 5. This software must not be used by any organisation, website, product, or service that: + 1. lobbies for, promotes, or derives a majority of income from actions that support or contribute + to: + * sex trafficking + * human trafficking + * slavery + * indentured servitude + * gambling + * tobacco + * adversely addictive behaviours + * nuclear energy + * warfare + * weapons manufacturing + * war crimes + * violence (except when required to protect public safety) + * burning of forests + * deforestation + * hate speech or discrimination based on age, gender, gender identity, race, sexuality, religion, nationality + + 2. lobbies against, or derives a majority of income from actions that discourage or frustrate: + * peace + * access to the rights set out in the Universal Declaration of Human Rights and the Convention on the Rights of the Child + * peaceful assembly and association (including worker associations) + * a safe environment or action to curtail the use of fossil fuels or prevent climate change + * democratic processes + + ; and + 5. 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. + + 6. 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. + + 7. 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. + + 8. 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. + + 9. 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. + + 10. Accepting Warranty or Additional Liability + + While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee + for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights + consistent with this License. However, in accepting such obligations, You may act only on Your own + behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You + agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or + claims asserted against, such Contributor by reason of your accepting any such warranty or + additional liability. + + END OF TERMS AND CONDITIONS + + Copyright (year) [owner](url). + + Licensed under the Do No Harm License, Version 0.1 (the "License"); you may not use this file except + in compliance with the License. You may obtain a copy of the License. + + 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. json: do-no-harm-0.1.json - yml: do-no-harm-0.1.yml + yaml: do-no-harm-0.1.yml html: do-no-harm-0.1.html - text: do-no-harm-0.1.LICENSE + license: do-no-harm-0.1.LICENSE - license_key: docbook + category: Permissive spdx_license_key: LicenseRef-scancode-docbook other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. + + Except as contained in this notice, the names of individuals + credited with contribution to this software shall not be used in + advertising or otherwise to promote the sale, use or other + dealings in this Software without prior written authorization + from the individuals in question. + + Any stylesheet derived from this Software that is publically + distributed will be identified with a different name and the + version strings in any derived Software will be changed so that + no possibility of confusion between the derived package and this + Software will exist. + + Warranty + -------- + 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 NORMAN WALSH OR ANY OTHER + CONTRIBUTOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. json: docbook.json - yml: docbook.yml + yaml: docbook.yml html: docbook.html - text: docbook.LICENSE + license: docbook.LICENSE - license_key: dom4j + category: Permissive spdx_license_key: Plexus other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use of this software and associated documentation + ("Software"), with or without modification, are permitted provided that the + following conditions are met: + + 1. Redistributions of source code must retain copyright statements and + notices. Redistributions must also contain a copy of this document. + + 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 "DOM4J" must not be used to endorse or promote products derived + from this Software without prior written permission of MetaStuff, Ltd. For + written permission, please contact dom4j-info@metastuff.com. + + 4. Products derived from this Software may not be called "DOM4J" nor may + "DOM4J" appear in their names without prior written permission of MetaStuff, Ltd. DOM4J + is a registered trademark of MetaStuff, Ltd. + + 5. Due credit should be given to the DOM4J Project - http://www.dom4j.org + + THIS SOFTWARE IS PROVIDED BY METASTUFF, LTD. AND CONTRIBUTORS ``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 METASTUFF, LTD. 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. json: dom4j.json - yml: dom4j.yml + yaml: dom4j.yml html: dom4j.html - text: dom4j.LICENSE + license: dom4j.LICENSE - license_key: dos32a-extender + category: Permissive spdx_license_key: LicenseRef-scancode-dos32a-extender other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + DOS/32 Advanced DOS Extender Software License + ============================================= + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. The end-user documentation included with the redistribution, if any, + must include the following acknowledgment: + + "This product uses DOS/32 Advanced DOS Extender technology." + + Alternately, this acknowledgment may appear in the software itself, if + and wherever such third-party acknowledgments normally appear. + + 4. Products derived from this software may not be called "DOS/32A" or + "DOS/32 Advanced". + + THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "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 AUTHORS OR 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. json: dos32a-extender.json - yml: dos32a-extender.yml + yaml: dos32a-extender.yml html: dos32a-extender.html - text: dos32a-extender.LICENSE + license: dos32a-extender.LICENSE - license_key: dotseqn + category: Permissive spdx_license_key: Dotseqn other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This file may be freely transmitted and reproduced, but it may not be changed unless the name is changed also (except that you may freely change the paper-size option for \documentclass). + + This notice must be left intact. json: dotseqn.json - yml: dotseqn.yml + yaml: dotseqn.yml html: dotseqn.html - text: dotseqn.LICENSE + license: dotseqn.LICENSE - license_key: doug-lea + category: Public Domain spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Public Domain + text: | + Doug Lea License + + Doug Lea - 8094a + + Your File: Barrier.java File: Barrier.java + + Originally written by Doug Lea and released into the public domain. This may be used for any purposes whatsoever without acknowledgment. + + Thanks for the assistance and support of Sun Microsystems Labs, and everyone contributing, testing, and using this code. + + History: Date Who What 11Jun1998 dl Create public version + + Lea - 8094b + + Your File: BrokenBarrierException.java + + File: BrokenBarrierException.java . Originally written by Doug Lea and released into the public domain. This may be used for any purposes whatsoever without acknowledgment. + + Thanks for the assistance and support of Sun Microsystems Labs, and everyone contributing, testing, and using this code. + + History: Date Who WhatLea - 8094c + + Your File: CyclicBarrier.java File: CyclicBarrier.java + + Originally written by Doug Lea and released into the public domain. This may be used for any purposes whatsoever without acknowledgment. + + Thanks for the assistance and support of Sun Microsystems Labs, and everyone contributing, testing, and using this code. + + History: Date Who What 11Jul1998 dl Create public version 28Aug1998 dl minor code simplification + + Lea - 80094d + + Your File: TimeoutException.java File: TimeoutException.java + + Originally written by Doug Lea and released into the public domain. This may be used for any purposes whatsoever without acknowledgment. + + Thanks for the assistance and support of Sun Microsystems Labs, and everyone contributing, testing, and using this code. json: doug-lea.json - yml: doug-lea.yml + yaml: doug-lea.yml html: doug-lea.html - text: doug-lea.LICENSE + license: doug-lea.LICENSE - license_key: douglas-young + category: Permissive spdx_license_key: LicenseRef-scancode-douglas-young other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software for any purpose + except publication and without fee is hereby granted, provided that the above + copyright notice appear in all copies of the software. json: douglas-young.json - yml: douglas-young.yml + yaml: douglas-young.yml html: douglas-young.html - text: douglas-young.LICENSE + license: douglas-young.LICENSE - license_key: dpl-1.1 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-dpl-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + DSTC Public License (DPL) + Version 1.1 + + 1. Definitions. + + 1.0.1. "Commercial Use" means distribution or otherwise making the Covered Code available to a third party. + + 1.1. "Contributor" means each entity that creates or contributes to the creation of Modifications. + + 1.2. "Contributor Version" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. + + 1.3. "Covered Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. + + 1.4. "Electronic Distribution Mechanism" means a mechanism generally accepted in the software development community for the electronic transfer of data. + + 1.5. "Executable" means Covered Code in any form other than Source Code. + + 1.6. "Initial Developer" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. + + 1.7. "Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. + + 1.8. "License" means this document. + + 1.8.1. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. + + 1.9. "Modifications" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: + + A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. + B. Any new file that contains any part of the Original Code or previous Modifications. + 1.10. "Original Code" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. + + 1.10.1. "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. + + 1.11. "Source Code" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. + + 1.12. "You" (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. + + 2. Source Code License. + + 2.1. The Initial Developer Grant. + + The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: + + (a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and + + (b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). + + (c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License. + + (d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. + + 2.2. Contributor Grant. + + Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license + + (a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and + + (b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). + + (c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code. + + (d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. + + 3. Distribution Obligations + + 3.1. Application of License. + + The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. + + 3.2. Availability of Source Code. + + Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + + 3.3. Description of Modifications. + + You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. + + 3.4. Intellectual Property Matters + + (a) Third Party Claims. + + If Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. + + (b) Contributor APIs. + + If Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. + + (c) Representations. + + Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. + + 3.5. Required Notices. + + You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. + + 3.6. Distribution of Executable Versions. + + You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. + + 3.7. Larger Works. + + You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. + + 4. Inability to Comply Due to Statute or Regulation. + + If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. + + 5. Application of this License. + + This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. + + 6. Versions of the License. + + 6.1. New Versions + + The Distributed Systems Technology Centre ("DSTC") may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. + + 6.2. Effect of New Versions + + Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by DSTC. No one other than DSTC has the right to modify the terms applicable to Covered Code created under this License. + + 6.3. Derivative Works + + If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases "DSTC", "DPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the DSTC Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) + + 7. Disclaimer of Warranty. + + COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 8. Termination. + + 8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. + + 8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as 'Participant') alleging that: + + (a) such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. + + (b) any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. + + 8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. + + 8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. + + 9. Limitation of Liability. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + + 10. U.S. Government End Users. + + The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. + + 11. Miscellaneous. + + This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by Queensland, Australia law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in Australia, any litigation relating to this License shall be subject to the jurisdiction of Australian Courts, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. + + 12. Responsibility for Claims. + + As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + + 13. Multiple-licensed Code. + + Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the DPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. + + 14. High Risk Activities. + + The Software is not fault-tolerant and is not designed, manufactured or intended for use or resale as on-line control equipment in hazardous environments requiring fail-safe performance, such as in the operation of nuclear facilities, aircraft navigation or communication systems, air traffic control, direct life support machines, or weapons systems, in which the failure of the Software could lead directly to death, personal injury, or severe physical or environmental damage ("High Risk Activities"). + + EXHIBIT A - DSTC Public License. + + The contents of this file are subject to the DSTC Public License Version 1.1 (the 'License'); you may not use this file except in compliance with the License. + + Software distributed under the License is distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. + + The Original Code is . + + The Initial Developer of the Original Code is . Portions created by are Copyright © . All Rights Reserved. + + Contributor(s): . + + Alternatively, the contents of this file may be used under the terms of the license (the "[ ] License"), in which case the provisions of [ ] License are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the [ ] License and not to allow others to use your version of this file under the DPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [ ] License. If you do not delete the provisions above, a recipient may use your version of this file under either the DPL or the [ ] License.' + + [NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.] json: dpl-1.1.json - yml: dpl-1.1.yml + yaml: dpl-1.1.yml html: dpl-1.1.html - text: dpl-1.1.LICENSE + license: dpl-1.1.LICENSE - license_key: dr-john-maddock + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + Permission to use, copy, modify, distribute and sell this software + and its documentation for any purpose is hereby granted without fee, + provided that the above copyright notice appear in all copies and + that both that copyright notice and this permission notice appear + in supporting documentation. Dr John Maddock + makes no representations about the suitability of this software for + any purpose. It is provided "as is" without express or implied warranty. json: dr-john-maddock.json - yml: dr-john-maddock.yml + yaml: dr-john-maddock.yml html: dr-john-maddock.html - text: dr-john-maddock.LICENSE + license: dr-john-maddock.LICENSE - license_key: drl-1.0 + category: Permissive spdx_license_key: DRL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Detection Rule License (DRL) 1.0 + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this rule set and associated documentation files (the "Rules"), to deal in the + Rules without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Rules, + and to permit persons to whom the Rules are furnished to do so, subject to the + following conditions: + + If you share the Rules (including in modified form), you must retain the + following if it is supplied within the Rules: + + identification of the authors(s) ("author" field) of the Rule and any others + designated to receive attribution, in any reasonable manner requested by the + Rule author (including by pseudonym if designated). + + a URI or hyperlink to the Rule set or explicit Rule to the extent reasonably + practicable + + indicate the Rules are licensed under this Detection Rule License, and include + the text of, or the URI or hyperlink to, this Detection Rule License to the + extent reasonably practicable + + THE RULES ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE RULES OR THE USE OR OTHER DEALINGS IN THE RULES. json: drl-1.0.json - yml: drl-1.0.yml + yaml: drl-1.0.yml html: drl-1.0.html - text: drl-1.0.LICENSE + license: drl-1.0.LICENSE - license_key: dropbear + category: Permissive spdx_license_key: LicenseRef-scancode-dropbear other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The majority of code is written by Matt Johnston, under the license below.\n\nPortions\ + \ of the client-mode work are (c) 2004 Mihnea Stoenescu, under the\nsame license:\n\nCopyright\ + \ (c) 2002-2008 Matt Johnston\nPortions copyright (c) 2004 Mihnea Stoenescu\nAll rights\ + \ reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\n\ + of this software and associated documentation files (the \"Software\"), to deal\nin the\ + \ Software without restriction, including without limitation the rights\nto use, copy, modify,\ + \ merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit\ + \ persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\ + \nThe above copyright notice and this permission notice shall be included in all\ncopies\ + \ or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT\ + \ WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\ + \ OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT\ + \ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY,\ + \ WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\ + \ WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n=====\n\nLibTomCrypt\ + \ and LibTomMath are written by Tom St Denis, and are Public Domain.\n\n=====\n\nsshpty.c\ + \ is taken from OpenSSH 3.5p1, \n Copyright (c) 1995 Tatu Ylonen , Timo\ + \ Rinne ,Espoo, Finland\n\n All rights reserved\n \"As far\ + \ as I am concerned, the code I have written for this software\n can be used freely for\ + \ any purpose. Any derived versions of this\n software must be clearly marked as such,\ + \ and if the derived work is\n incompatible with the protocol description in the RFC file,\ + \ it must be\n called by a name other than \"ssh\" or \"Secure Shell\". \"\n\n=====\n\n\ + loginrec.c is written primarily by Andre Lucas, Jason Downs, Theo de Raadt: \nCopyright\ + \ (c) 2000 Andre Lucas. \nPortions copyright (c) 1998 Todd C. Miller\nPortions copyright\ + \ (c) 1996 Jason Downs\nPortions Copyright (c) 1996 Theo de Raadt.\n\nloginrec.h is written\ + \ by Andre Lucas:\nCopyright (c) 2000 Andre Lucas.\n\natomicio.h,atomicio.c written by Theo\ + \ de Raadt (1995-1999) \nCopyright (c) 1995,1999 Theo de Raadt. \n\nAnd are licensed under\ + \ the following terms:\n\nCopyright (c) , \n\nAll rights reserved.\n\nRedistribution\ + \ and use in source and binary forms, with or without modification, are permitted provided\ + \ that the following conditions are met:\n\nRedistributions of source code must retain the\ + \ above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions\ + \ 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.\n\nTHIS 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.\n\n\nand strlcat()\ + \ is (c) Todd C. Miller (included in util.c -- ) are from OpenSSH 3.6.1p2, and are licensed\n\ + under the BSD-Modified license: \n\n\nCopyright (c) 1998 Todd C. Miller , < OWNER >\n\n\ + All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\ + \ modification, are permitted provided that the following conditions are met: \n\nRedistributions\ + \ of source code must retain the above copyright notice, this list of conditions and the\ + \ following disclaimer. \nRedistributions 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. \nNeither the name of the < ORGANIZATION\ + \ > nor the names of its contributors may be used to endorse or promote products derived\ + \ from this software without specific prior written permission. \n\nTHIS 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.\n\n\n=====\n\nImport code in keyimport.c is modified from PuTTY's import.c, licensed\ + \ as\nfollows:\n\nPuTTY is copyright 1997-2003 Simon Tatham.\n\nPortions copyright Robert\ + \ de Bath, Joris van Rantwijk, Delian\nDelchev, Andreas Schultz, Jeroen Massar, Wez Furlong,\ + \ Nicolas Barry,\nJustin Bradford, and CORE SDI S.A.\n\nPermission is hereby granted, free\ + \ of charge, to any person\nobtaining a copy of this software and associated documentation\ + \ files\n(the \"Software\"), to deal in the Software without restriction,\nincluding without\ + \ limitation the rights to use, copy, modify, merge,\npublish, distribute, sublicense, and/or\ + \ sell copies of the Software,\nand to permit persons to whom the Software is furnished\ + \ to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this\ + \ permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\ + \nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED,\ + \ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR\ + \ PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE\nFOR\ + \ ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\nCONTRACT, TORT OR OTHERWISE,\ + \ ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\ + \ IN THE SOFTWARE." json: dropbear.json - yml: dropbear.yml + yaml: dropbear.yml html: dropbear.html - text: dropbear.LICENSE + license: dropbear.LICENSE - license_key: dropbear-2016 + category: Permissive spdx_license_key: LicenseRef-scancode-dropbear-2016 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Dropbear contains a number of components from different sources, hence there\nare a\ + \ few licenses and authors involved. All licenses are fairly \nnon-restrictive.\nThe majority\ + \ of code is written by Matt Johnston, under the license below.\n\nPortions of the client-mode\ + \ work are (c) 2004 Mihnea Stoenescu, under the\nsame license:\n\nCopyright (c) 2002-2015\ + \ Matt Johnston\nPortions copyright (c) 2004 Mihnea Stoenescu\nAll rights reserved.\n\n\ + Permission is hereby granted, free of charge, to any person obtaining a copy of this software\ + \ and associated documentation files (the \"Software\"), to deal\nin the Software without\ + \ restriction, including without limitation the rights to use, copy, modify, merge, publish,\ + \ distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to\ + \ whom the Software is furnished to do so, subject to the following conditions:\n\nThe above\ + \ copyright notice and this permission notice shall be included in all copies or substantial\ + \ portions of the Software.\n\nTHE 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\nAUTHORS 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.\n\n=====\n\nLibTomCrypt and LibTomMath are\ + \ written by Tom St Denis, and are Public Domain.\n\n=====\n\nsshpty.c is taken from OpenSSH\ + \ 3.5p1, \n Copyright (c) 1995 Tatu Ylonen , Espoo, Finland\n \ + \ All rights reserved\n \"As far as I am concerned, the code I have written for\ + \ this software can be used freely for any purpose. Any derived versions of this\n software\ + \ must be clearly marked as such, and if the derived work is incompatible with the protocol\ + \ description in the RFC file, it must be\n called by a name other than \"ssh\" or \"Secure\ + \ Shell\". \"\n\n=====\n\nloginrec.c\nloginrec.h\natomicio.h\natomicio.c\nand strlcat()\ + \ (included in util.c) are from OpenSSH 3.6.1p2, and are licensed under the 2 point BSD\ + \ license.\n\nloginrec is written primarily by Andre Lucas, atomicio.c by Theo de Raadt.\n\ + \nstrlcat() is (c) Todd C. Miller\n\n=====\n\nImport code in keyimport.c is modified from\ + \ PuTTY's import.c, licensed as follows:\n\nPuTTY is copyright 1997-2003 Simon Tatham.\n\ + \nPortions copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz,\ + \ Jeroen Massar, Wez Furlong, Nicolas Barry,\nJustin Bradford, and CORE SDI S.A.\n\nPermission\ + \ is hereby granted, free of charge, to any person obtaining a copy of this software and\ + \ associated documentation files\n(the \"Software\"), to deal in the Software without restriction,\ + \ including without limitation the rights to use, copy, modify, merge,\npublish, distribute,\ + \ sublicense, and/or sell copies of the Software, and to permit persons to whom the Software\ + \ is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice\ + \ and this permission notice shall be included in all copies or substantial portions of\ + \ the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\ + \ OR IMPLIED, INCLUDING BUT NOT \nLIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE COPYRIGHT HOLDERS\ + \ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\nCONTRACT,\ + \ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE\ + \ OR OTHER DEALINGS IN THE SOFTWARE.\n\n=====\n\ncurve25519-donna:\n\n/* Copyright 2008,\ + \ Google Inc.\n * All rights reserved.\n *\n * Redistribution and use in source and binary\ + \ forms, with or without\n * modification, are permitted provided that the following conditions\ + \ are\n * met:\n *\n * * Redistributions of source code must retain the above copyright\n\ + \ * notice, this list of conditions and the following disclaimer.\n * * Redistributions\ + \ in binary form must reproduce the above\n * copyright notice, this list of conditions\ + \ and the following disclaimer\n * in the documentation and/or other materials provided\ + \ with the\n * distribution.\n * * Neither the name of Google Inc. nor the names of\ + \ its\n * contributors may be used to endorse or promote products derived from\n * this\ + \ software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED\ + \ BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\ + \ INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\ + \ FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER\ + \ OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY,\ + \ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE\ + \ GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\ + \ CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\ + \ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE,\ + \ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\n * curve25519-donna: Curve25519\ + \ elliptic curve, public key function\n *\n * http://code.google.com/p/curve25519-donna/\n\ + \ *\n * Adam Langley \n *\n * Derived from public domain C code\ + \ by Daniel J. Bernstein \n *\n * More information about curve25519 can be\ + \ found here\n * http://cr.yp.to/ecdh.html\n *\n * djb's sample implementation of curve25519\ + \ is written in a special assembly\n * language called qhasm and uses the floating point\ + \ registers.\n *\n * This is, almost, a clean room reimplementation from the curve25519\ + \ paper. It\n * uses many of the tricks described therein. Only the crecip function is taken\n\ + \ * from the sample implementation.\n */" json: dropbear-2016.json - yml: dropbear-2016.yml + yaml: dropbear-2016.yml html: dropbear-2016.html - text: dropbear-2016.LICENSE + license: dropbear-2016.LICENSE - license_key: dsdp + category: Permissive spdx_license_key: DSDP other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "COPYRIGHT NOTIFICATION\n\n(C) COPYRIGHT 2004 UNIVERSITY OF CHICAGO\n\nThis program\ + \ discloses material protectable under copyright laws of the United\nStates. Permission\ + \ to copy and modify this software and its documentation is\nhereby granted, provided that\ + \ this notice is retained thereon and on all copies\nor modifications. The University of\ + \ Chicago makes no representations as to the\nsuitability and operability of this software\ + \ for any purpose. It is provided \"as\nis\"; without express or implied warranty. Permission\ + \ is hereby granted to use,\nreproduce, prepare derivative works, and to redistribute to\ + \ others, so long as\nthis original copyright notice is retained. Any publication resulting\ + \ from\nresearch that made use of this software should cite this document.\n\n This\ + \ software was authored by:\n\n Steven J. Benson Mathematics and Computer Science Division\ + \ Argonne National\n Laboratory Argonne IL 60439\n\n Yinyu Ye Department of Management\ + \ Science and Engineering Stanford\n University Stanford, CA U.S.A\n\n Any questions\ + \ or comments on the software may be directed to\n benson@mcs.anl.gov or yinyu-ye@stanford.edu\n\ + \nArgonne National Laboratory with facilities in the states of Illinois and Idaho,\nis owned\ + \ by The United States Government, and operated by the University of\nChicago under provision\ + \ of a contract with the Department of Energy.\n\nDISCLAIMER \n\nTHIS PROGRAM WAS PREPARED\ + \ AS AN ACCOUNT OF WORK SPONSORED BY AN AGENCY OF THE\nUNITED STATES GOVERNMENT. NEITHER\ + \ THE UNITED STATES GOVERNMENT NOR ANY AGENCY\nTHEREOF, NOR THE UNIVERSITY OF CHICAGO, NOR\ + \ ANY OF THEIR EMPLOYEES OR OFFICERS,\nMAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES\ + \ ANY LEGAL LIABILITY OR\nRESPONSIBILITY FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF\ + \ ANY INFORMATION,\nAPPARATUS, PRODUCT, OR PROCESS DISCLOSED, OR REPRESENTS THAT ITS USE\ + \ WOULD NOT\nINFRINGE PRIVATELY OWNED RIGHTS. REFERENCE HEREIN TO ANY SPECIFIC COMMERCIAL\n\ + PRODUCT, PROCESS, OR SERVICE BY TRADE NAME, TRADEMARK, MANUFACTURER, OR\nOTHERWISE, DOES\ + \ NOT NECESSARILY CONSTITUTE OR IMPLY ITS ENDORSEMENT,\nRECOMMENDATION, OR FAVORING BY THE\ + \ UNITED STATES GOVERNMENT OR ANY AGENCY\nTHEREOF. THE VIEW AND OPINIONS OF AUTHORS EXPRESSED\ + \ HEREIN DO NOT NECESSARILY\nSTATE OR REFLECT THOSE OF THE UNITED STATES GOVERNMENT OR ANY\ + \ AGENCY THEREOF." json: dsdp.json - yml: dsdp.yml + yaml: dsdp.yml html: dsdp.html - text: dsdp.LICENSE + license: dsdp.LICENSE - license_key: dtree + category: Permissive spdx_license_key: LicenseRef-scancode-dtree other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Copyright (c) 2002-2003 Geir Landr + + This script can be used freely as long as all copyright messages are intact. json: dtree.json - yml: dtree.yml + yaml: dtree.yml html: dtree.html - text: dtree.LICENSE + license: dtree.LICENSE - license_key: dual-bsd-gpl + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: "Redistribution and use in source and binary forms, with or without \nmodification,\ + \ are permitted provided that the following conditions \nare met: \n1. Redistributions of\ + \ source code must retain the above copyright \n notice, this list of conditions and the\ + \ following disclaimer. \n2. Redistributions in binary form must reproduce the above copyright\ + \ \n notice, this list of conditions and the following disclaimer in the \n documentation\ + \ and/or other materials provided with the distribution. \n3. The name of the author may\ + \ not be used to endorse or promote products \n derived from this software without specific\ + \ prior written permission. \n\nAlternatively, this software may be distributed under the\ + \ terms of the \nGNU General Public License (\"GPL\") version 2 as published by the Free\ + \ \nSoftware Foundation. \n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\ + \ OR \nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES \nOF MERCHANTABILITY\ + \ AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. \nIN NO EVENT SHALL THE AUTHOR BE\ + \ LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\ + \ (INCLUDING, BUT \nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\ + \ USE, \nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY \nTHEORY\ + \ OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT \n(INCLUDING NEGLIGENCE OR\ + \ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF \nTHIS SOFTWARE, EVEN IF ADVISED OF THE\ + \ POSSIBILITY OF SUCH DAMAGE." json: dual-bsd-gpl.json - yml: dual-bsd-gpl.yml + yaml: dual-bsd-gpl.yml html: dual-bsd-gpl.html - text: dual-bsd-gpl.LICENSE + license: dual-bsd-gpl.LICENSE - license_key: dual-commercial-gpl + category: Copyleft spdx_license_key: LicenseRef-scancode-dual-commercial-gpl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "This file is licensed under GNU General Public license, except that if you have entered\ + \ \ninto a signed, written license agreement with the copyright holder covering this file,\ + \ \nthat agreement applies to this file instead of the GNU General Public License.\n\nThis\ + \ file is free software: you can redistribute and/or modify it under the\nterms of the GNU\ + \ General Public License, Version 2, as published by the Free\nSoftware Foundation, unless\ + \ a different license applies as provided above.\n\nThis program is distributed in the hope\ + \ that it will be useful, but AS-IS and\nWITHOUT ANY WARRANTY; without even the implied\ + \ warranties of MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.\ + \ Redistribution,\nexcept as permitted by the GNU General Public License or another license\n\ + agreement between you and the copyright holder, is prohibited.\n\nYou should have received\ + \ a copy of the GNU General Public License, Version 2\nalong with this file; if not, see\ + \ ." json: dual-commercial-gpl.json - yml: dual-commercial-gpl.yml + yaml: dual-commercial-gpl.yml html: dual-commercial-gpl.html - text: dual-commercial-gpl.LICENSE + license: dual-commercial-gpl.LICENSE - license_key: duende-sla-2022 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-duende-sla-2022 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Duende Software, Inc. – Rev. 01/2022 + DUENDE™ SOFTWARE LICENSE AGREEMENT + + This Software License Agreement (“Agreement”) is a legal agreement between you (either + as an individual or a single entity (“You”)) and Duende Software, Inc. (“Licensor”) for certain + software application libraries as set forth on the quote or invoice (“Applications”) provided to + You by Licensor (“Quote”), associated “online”, electronic or hard copy user documentation, + and any upgrades, modified versions, bug fixes, additions and improvements thereof that + Licensor may make available during the Term of the Agreement (collectively referred to as + the “Software”). + + References to “You” herein shall refer to You, and/or the entity on whose behalf You are using + the Software, and all individual developer-users of the Software on behalf of such entity. + + Please note: this Agreement is not intended for affiliate use outside the scope of this + Agreement. If you intend to purchase the software for use by Your Affiliates please contact + licensor for the appropriate fees and license before proceeding. “Affiliate” means any parent + or subsidiary entity that controls or is controlled by You. "Control" means the direct or indirect + ownership of more than fifty percent (50%) of the voting securities of an entity or possession + of the right to vote more than fifty percent (50%) of the voting interest in the ordinary direction + of the entity's affairs. An Affiliate shall only be considered such for so long as such control + exists. + + If the Software is acquired by or on behalf of a unit or agency of the U.S. Government + (the “Government”), the Government agrees that the Software is “commercial + computer software” or “commercial computer software documentation” and that, + absent a written agreement to the contrary, the Government’s rights with respect to + the Software is limited by the terms of this Agreement, pursuant to applicable FAR + and/or DFARS and successor regulations. + + BY DOWNLOADING, INSTALLING, OR OTHERWISE ACCESSING OR USING THE + SOFTWARE, YOU AGREE THAT YOU HAVE READ, UNDERSTOOD, AND AGREE + TO BE BOUND BY THIS AGREEMENT. IF YOU DO NOT AGREE, YOU MAY NOT + USE THE SOFTWARE OR ACCESS THE SOURCE CODE. + + Accordingly, You and Licensor acknowledge and agree as follows: + + 1. LIMITED LICENSE + + A. Subject to your complete and ongoing compliance with all the terms and + conditions set forth in this Agreement, including without limitation, payment of + any applicable fees and all license limitations and restrictions set forth herein, + Licensor grants You the following limited, non-exclusive, non-transferable, nonsublicensable, revocable license to use, and (where applicable) authorize your + employees and other personnel to use, the unmodified Software in binary form, + internally solely in connection with the specific Software Application(s) and + usage as set forth on the Quote and/or purchase terms selected and paid for in + conjunction with downloading the Software. + + B. The License granted in Paragraph A above does not include the right to + sublicense, however, you may redistribute the Software upon payment of + additional license fees under a separate redistribution license agreement for the + Software. + + 2. RESTRICTIONS + + A. You acknowledge that the license granted in Paragraph 1A does not include any + right to: (i) redistribute, sell, lease, license, or modify any portion of the + Software; (ii) reproduce, distribute, publicly display, or publicly perform any part + of the Software; (iii) modify the source code of any portion of the Software (other + than modifications made in a non-production environment); or (iv) remove, + obscure, interfere with or circumvent any feature of the Software, including + without limitation any copyright or other intellectual property notices, security, + or access control mechanism. + + B. You may not use the Software for any purpose other than deploying it on one or + more servers in a manner for which the Software is expressly designed. + + C. The Software may only be hosted on the machines, servers, and internetworking + devices within Your computer network or systems. + + D. You may not sell, license, distribute, copy, modify, publicly perform or display, + transmit, publish, edit, adapt, create derivative works from, or make any use of + the Software except as expressly authorized in this Agreement. + + E. If You are prohibited under applicable law from using the Software, You may not + use it, and You will comply with all applicable laws and regulations (including + without limitation laws and regulations related to export controls) in connection + with your use of the Software. + + 3. LICENSE FEES + + A. If you wish to use the Software in a production environment, you may download + and use the Software for the Term upon payment of the appropriate license fee + as indicated on the Quote in accordance with the terms and conditions of this + Agreement. + + B. If you wish to use the Software in a non-production environment, you may + download and access the source and/or binaries at no charge solely for testing + and evaluation purposes and in accordance with all license limitations and + restrictions set forth in this Agreement. + + 4. SUPPORT + + A. Licensor will only provide support in accordance with the support guidelines + posted at https://duendesoftware.com/products/support. Licensor will use + Duende Software, Inc. – Rev. 01/2022 Page 3 of 5 + commercially reasonable efforts to resolve all reasonable support requests, but + makes no guarantee that all requests can be finally resolved. + + B. Licensor shall not provide support for: instances of the Software deployed on + unsupported platforms as specified in the documentation accompanying the + Software; support requests not resulting from the ordinary use of the Software; or + support requests resulting from the use of third-party products. + + C. Licensor will not provide You with any individual or customized support services + under this Agreement. + + D. A support contract may be purchased separately from Licensor for individual or + customized support services with varying higher service levels than those + provided herein. + + 5. EXPORT CONTROLS. You represent and warrant that the Software will not be + shipped, transferred or exported into any country or used in any manner prohibited by + the United States Export Administration Act or any other export laws, restrictions or + regulations (collectively, “Export Laws”). In addition, if the Software is identified as + export controlled items under the Export Laws, You represent and warrant that You + are not a citizen, or otherwise located within, an embargoed nation (including without + limitation Cuba, Iran, North Korea, Sudan, or Syria) and that You are not otherwise + prohibited under the Export Laws from receiving the Software. Any use in violation of + the foregoing limitations and restrictions is strictly prohibited, and unlicensed. + + 6. RESERVATION OF RIGHTS. The Software is owned by Licensor and licensed, not + sold, to You. The Software is protected by copyright laws and international copyright + treaties, as well as other intellectual property laws and treaties. Except for the limited + rights of use granted herein, all right, title and interest to the Software, including patent, + copyright, and trademark rights in and to the Software, the accompanying printed + materials, and any copies of the Software are owned by Licensor. + + 7. CONFIDENTIALITY. The Software is the confidential and proprietary information of + Licensor, and You may not, during the term or thereafter, disclose it to any third party, + or to use it for any purpose other than as expressly provided herein, without a separate + written agreement with Licensor authorizing You to do so. + + 8. FEEDBACK. If You provide Licensor with any comments, bug reports, feedback, + enhancements, or modifications proposed or suggested by You for the Software + (“Feedback”), such Feedback is provided on a non-confidential basis (notwithstanding + any notice to the contrary You may include in any accompanying communication), and + Licensor shall have the right to use such Feedback at its discretion, including, but not + limited to the incorporation of such suggested changes into future releases of the + Software. You hereby grant Licensor a perpetual, irrevocable, transferable, + sublicensable, nonexclusive license under all rights necessary to incorporate and use + your Feedback for any purpose, including to make and sell any products and services. + Duende Software, Inc. – Rev. 01/2022 Page 4 of 5 + + 9. TERM AND TERMINATION. This Agreement will remain in effect for the time + frame specified in your Quote issued to you by Licensor and commences on the + date You: (i) paid the applicable license fee for the Software; or (ii) downloaded + the Software as a non-production user. However, Licensor may terminate this + Agreement upon 30 days’ prior written notice allowing You the opportunity to cure, for + any actual or suspected misuse or abuse by You of the Software or any material + violation of this Agreement. You may also choose to terminate this Agreement for any + reason by ceasing all use of the Software. Following any termination of this Agreement, + You will not be provided any refund, in whole or in part, and You must immediately + cease use of the Software, remove or destroy any instances of the Software and/or + copies thereof, and be able to show evidence of such cessation to Licensor upon + request. The terms of this Agreement that expressly are to, or by implication ought to, + survive, will survive this Agreement. Notwithstanding the foregoing, should Licensor + completely cease to do business (excluding transactions in connection with a sale of + all or substantially all of Licensor’s assets or stock, or in connection with a merger or + other corporate reorganization), the term of this Agreement shall be perpetual as to + Your custom application previously deployed by You prior to the date of such cessation + of business and without the need for any further payments in accordance with all + limitations and restrictions in this Agreement. + + 10. WARRANTY DISCLAIMER AND LIMITATION OF LIABILITY. + The Software and any support are provided on an “as is” basis, without warranty + of any kind. To the maximum extent permitted by applicable law, Licensor + disclaims all warranties and conditions, express, implied, statutory or otherwise, + including but not limited to implied warranties or conditions of fitness for a + particular purpose, merchantability, title, quality, results, and non-infringement. + Under no circumstances will Licensor be liable for any consequential, special, + indirect, incidental or punitive damages whatsoever arising out of the use or + inability to use the Software, even if Licensor has been advised of the possibility + of such damages, and notwithstanding any failure of essential purpose of any + limited remedy. In no event will Licensor’s aggregate liability for damages arising + out of this Agreement or the terms exceed the amount paid by you for the + Software. Some jurisdictions do not allow limitations on implied warranties or + the exclusion or limitation of liability for consequential or incidental damages, + so the above limitations may not apply to You. In such an event, the above + limitations and exclusions will be enforced to the maximum extent permitted + under applicable law. + + 11. INDEMNITY. You agree to indemnify Licensor and its affiliates, officers, directors, + suppliers, licensors, and other customers from and against any and all liability and + costs (including reasonable attorneys’ fees) incurred by such parties in connection with + or arising out of your use or misuse of the Software. + Duende Software, Inc. – Rev. 01/2022 Page 5 of 5 + + 12. GOVERNING LAW; VENUE. This Agreement shall be governed by and interpreted + in accordance with the laws of the State of New York, USA, excluding its law on conflict + of laws. You hereby consent to submit to personal jurisdiction and venue exclusively + in the federal and state courts of the State of New York, USA. + + 13. GENERAL PROVISIONS. + + A. You will be responsible for the payment of all taxes, duties, levies, and other charges + including, but not limited to sales, use, gross receipts, excise, VAT, ad valorem and + any other taxes, any withholdings or deductions, import and custom taxes, any duties, + or any other charges imposed by any taxing authority (excluding any taxes based on + the Licensor’s income) with respect to the fees payable to Licensor in connection with + this Agreement. + + B. This Agreement contains the entire agreement between You and Licensor, + supersedes any other agreement or discussions, oral and written, concerning + the subject matter hereof, and may not be modified or amended except by a + written amendment signed by both parties. + + C. If any provision of this Agreement is declared invalid, illegal, or unenforceable + by a court of competent jurisdiction, such provision shall, as to that jurisdiction, + be ineffective only to the extent of such invalidity, illegality, or unenforceability, + and shall not in any manner affect the remaining provisions hereof in such + jurisdiction or render any other provision of this Agreement invalid, illegal, or + unenforceable in any other jurisdiction. + + D. You may provide Licensor with a valid purchase order; provided, however, + purchase orders are to be used solely for your accounting purposes and any + terms and conditions contained therein shall be deemed null and void with + respect to the parties’ relationship and this License Agreement. Any such + purchase order provided to Licensor shall in no way relieve you of any obligation + entered into pursuant to this License Agreement including, but not limited to, + your obligation to pay Licensor the appropriate license fees. + + E. You agree that in the event of a breach or threatened breach of this Agreement, + Licensor may suffer irreparable harm and will be entitled to specific + performance, and preliminary and/or permanent injunctive relief to enforce this + Agreement without the need to post bond and that such relief shall be in addition + to, and not in lieu of, any monetary damages or other relief a court of competent + jurisdiction, whether at law or equity, may award. + + F. This Agreement shall supersede any provisions of the Uniform Commercial + Code as adopted or made applicable to the Software in any competent + jurisdiction. This Agreement shall not be governed by the United Nations + Convention on Contracts for the International Sale of Goods. json: duende-sla-2022.json - yml: duende-sla-2022.yml + yaml: duende-sla-2022.yml html: duende-sla-2022.html - text: duende-sla-2022.LICENSE + license: duende-sla-2022.LICENSE - license_key: dune-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-dune-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, you may use the DUNE source files as part of a software + library or application without restriction. Specifically, if other files + instantiate templates or use macros or inline functions from one or more of the + DUNE source files, or you compile one or more of the DUNE source files and link + them with other files to produce an executable, this does not by itself cause + the resulting executable to be covered by the GNU General Public License. This + exception does not however invalidate any other reasons why the executable file + might be covered by the GNU General Public License. json: dune-exception.json - yml: dune-exception.yml + yaml: dune-exception.yml html: dune-exception.html - text: dune-exception.LICENSE + license: dune-exception.LICENSE - license_key: dvipdfm + category: Permissive spdx_license_key: dvipdfm other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + A modified version of this file may be distributed, but it should be distributed + with a *different* name. Changed files must be distributed *together with a + complete and unchanged* distribution of these files. json: dvipdfm.json - yml: dvipdfm.yml + yaml: dvipdfm.yml html: dvipdfm.html - text: dvipdfm.LICENSE + license: dvipdfm.LICENSE - license_key: dwtfnmfpl-3.0 + category: Permissive spdx_license_key: LicenseRef-scancode-dwtfnmfpl-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This project is licensed under the terms of the + DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE, version 3, + as it follows: + + 0. You just DO WHAT THE FUCK YOU WANT TO. + + 1. Do not hold the author(s), creator(s), developer(s) or + distributor(s) liable for anything that happens or goes wrong + with your use of the work. json: dwtfnmfpl-3.0.json - yml: dwtfnmfpl-3.0.yml + yaml: dwtfnmfpl-3.0.yml html: dwtfnmfpl-3.0.html - text: dwtfnmfpl-3.0.LICENSE + license: dwtfnmfpl-3.0.LICENSE - license_key: dynamic-drive-tou + category: Permissive spdx_license_key: LicenseRef-scancode-dynamic-drive-tou other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Dynamic Drive DHTML scripts- Terms of Use\n\nUnless indicated otherwise by the credit,\ + \ all scripts on this site are original\nscripts written by the authors of Dynamic Drive,\ + \ and are protected by both US\nand international copyright laws. The below lists the terms\ + \ of use users of\nDynamic Drive must agree to before using the programs/scripts (Last updated:\ + \ May\n22nd, 06):\n\n1. Users may use any DHTML scripts offered for download on Dynamic\ + \ Drive, free\nof charge, on both personal and commercial web sites. This includes web\n\ + designers who wish to use our DHTML scripts in their paid web site projects.\n\n2. You may\ + \ modify our scripts to customize them based on your needs.\n\n3. Users may NOT, however,\ + \ redistribute or repost/ resell for download any DHTML\nscript found on Dynamic Drive.\ + \ Redistribution is defined as re-offering our\nscripts for download in any fashion, whether\ + \ on a competing web site, an\napplication that generates code snippets, or a CD-ROM collection\ + \ of\nCSS/JavaScript codes etc. Some examples of what is acceptable and what is not\nare:\n\ + \nAcceptable: \n\n-Use our DHTML scripts on any personal or commercial web site to aid in\ + \ its\nfunctionality/ usability.\n\n-As a web designer, use our DHTML scripts in your paid\ + \ projects for your client\nweb sites. \n\n-As a software developer, use our DHTML scripts\ + \ within a application/ program as\npart of its interface, such as a CSS menu being used\ + \ as the program's navigation\ninterface. The program itself can be distributable. \n\n\ + In all cases above, the credit notice within the script must remain intact and\nunaltered.\n\ + \nNot Acceptable: \n\n-Put our DHTML scripts on another script library or webmaster type\ + \ site for\nothers to download. \n\n-Use our DHTML scripts in any type of service or application\ + \ whereby our codes\nare part of the product offerings themselves. \n\n-Put our DHTML scripts\ + \ in any other types of medium for direct redistribution,\nsuch as a CD-ROM that consists\ + \ of, but not limited to, webmaster codes and web\ngraphics.\n\n4. Users agree not to remove/\ + \ edit the credit notice within the DHTML source\ncode, or claim the code to be work of\ + \ their own. What is the copyright notice?\nIt appears inside the \n\n5. Users\ + \ agree not to use scripts found on Dynamic Drive for illegal purposes,\nor on pages containing\ + \ illegal material.\n\n6. Users agree not to hold Dynamic Drive liable for any damages resulted\ + \ from\nproper or improper use of any of the scripts found on Dynamic Drive. Use at your\n\ + own risk.\n\n7. Users are not required to link back to Dynamic Drive to use our DHTML\n\ + scripts, as much as they are appreciated. :)\n\nBy using any of the scripts on Dynamic Drive,\ + \ you understand that you have read\nand agreed to the above usage terms. These terms will\ + \ be strictly enforced, and\nviolators will face criminal charges. Don't say our lawyer\ + \ didn't warn you!" json: dynamic-drive-tou.json - yml: dynamic-drive-tou.yml + yaml: dynamic-drive-tou.yml html: dynamic-drive-tou.html - text: dynamic-drive-tou.LICENSE + license: dynamic-drive-tou.LICENSE - license_key: dynarch-developer + category: Commercial spdx_license_key: LicenseRef-scancode-dynarch-developer other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "PRODUCT: hmenu\n Version: 2.9\n License type: developer\n \ + \ Download date:\n LICENSEE:\n Registration key: \n\n\nDefinitions\ + \ of terms\n\n \"PRODUCT\" refers to the product offered by Dynarch.com (the object of\ + \ this license agreement).\n \"LICENSEE\" refers to the one that has downloaded the PRODUCT\ + \ package. Sometimes we might use \"you\" as a synonym.\n\nOther terms that might be used\n\ + \n \"Application\", \"Software Application\" or \"Web Application\": will refer to an\ + \ application developed by the LICENSEE. An Application has a finite scope.\n \"Library\"\ + , \"Software Library\": refers to a possibly reusable collection of tools intended to help\ + \ developers build Applications.\n\nHere is an example to make clear the distinction between\ + \ an Application and a Library: the Opera Web Browser is an Application built on top of\ + \ the Qt Toolkit. While Opera has a finite scope (it is a Web browser), Qt is also used\ + \ in a lot of other applications, for instance the KDE Desktop. Qt is a Library for developers,\ + \ while Opera is a general audience Application.\n\nLicense agreement\n\nLICENSEE is NOT\ + \ allowed to modify or remove any copyright notices from any of the PRODUCT files.\n\nSubject\ + \ to the terms of this agreement, Dynarch.com grants LICENSEE a non-exclusive, non-transferable,\ + \ license to use the PRODUCT in any number of Applications developed by the LICENSEE, as\ + \ long as the PRODUCT does not make the main nor major functionality of any of those Applications.\n\ + \nThe LICENSEE may distribute such Applications incorporating the PRODUCT without paying\ + \ royalty fees to Dynarch.com.\n\nThe PRODUCT can NOT be redistributed as part of a Software\ + \ Library. Only Applications having a finite purpose are supported by this license.\n\n\ + All rights not specifically granted to LICENSEE herein are retained by Dynarch.com.\n\n\ + 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.\n\n© Dynarch.com 2004. All rights reserved." json: dynarch-developer.json - yml: dynarch-developer.yml + yaml: dynarch-developer.yml html: dynarch-developer.html - text: dynarch-developer.LICENSE + license: dynarch-developer.LICENSE - license_key: dynarch-linkware + category: Free Restricted spdx_license_key: LicenseRef-scancode-dynarch-linkware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "PRODUCT: hmenu\n Version: 2.9\n License type: linkware\n \ + \ Download date:\n LICENSEE:\n Registration key: \n\nDefinitions\ + \ of terms\n\n \"PRODUCT\" refers to the product offered by Dynarch.com (the object of\ + \ this license agreement).\n \"LICENSEE\" refers to the one that has downloaded the PRODUCT\ + \ package. Sometimes we might use \"you\" as a synonym.\n\nLicense agreement\n\nLICENSEE\ + \ is NOT allowed to modify or remove any copyright notices from any of the PRODUCT files.\n\ + \nSubject to the terms of this agreement, Dynarch.com grants you a non-exclusive, non-transferable,\ + \ free license to use the PRODUCT on Sites that you own, under the following terms and conditions:\n\ + \n(1) Non-commercial. Sites that use the PRODUCT under this license (\"Sites\") must be\ + \ non-profit; examples of accepted websites are free or hobby Websites, blogs, charity organizations\ + \ or universities, or websites of open source projects.\n\nSites may contain advertising,\ + \ as long as they are not published for the specific purpose of showing ads. We will not\ + \ accept spam sites.\n\nThe Sites may not include:\n\n Pornography, adult, or mature\ + \ content\n Gambling or casino-related content\n\nIf you are not sure that your Site\ + \ follows our policy, you must ask us.\n\n(2) Link back. Sites using the PRODUCT under\ + \ this license must link back to the PRODUCT home page, in each page where the PRODUCT is\ + \ used. The link must be visible and direct.\n\nExample of acceptable code:\n\n\n\ + \ DHTML Menu by Dynarch.com\n\n\nYou can include a target=\"_blank\" attribute if you\ + \ wish.\n\nYou may place the link anywhere in the page, the main requirement is that it\ + \ must be visible and that it should point directly to the PRODUCT page—server-side redirects\ + \ are not acceptable.\n\nPlease refer to the file linkware.html in the PRODUCT package for\ + \ more details on this, after you download the PRODUCT.\n\n(3) No Intranet. This free license\ + \ does not cover usage on your Intranet—for that you need to purchase a commercial license.\n\ + \n(4) No distribution. You may not distribute the PRODUCT nor any derivative works to any\ + \ third party. You may not distribute free nor commercial Software applications or Libraries\ + \ that incorporate the PRODUCT.\n\nAll rights not specifically granted to LICENSEE herein\ + \ are retained by Dynarch.com.\n\nTHIS 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.\n\n© Dynarch.com\ + \ 2003-2005. All rights reserved." json: dynarch-linkware.json - yml: dynarch-linkware.yml + yaml: dynarch-linkware.yml html: dynarch-linkware.html - text: dynarch-linkware.LICENSE + license: dynarch-linkware.LICENSE - license_key: ecfonts-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-ecfonts-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "WARRANTY\n\nThere is NO WARRANTY for the ec fonts, to the extent permitted by \napplicable\ + \ law. Except when otherwise stated in writing, the authors\nprovides the program `as is'\ + \ without warranty of any kind, either\nexpressed or implied, including, but not limited\ + \ to, the implied\nwarranties of merchantability and fitness for a particular purpose.\n\ + The entire risk as to the quality and performance of the program is\nwith you. Should the\ + \ program prove defective, you assume the cost of\nall necessary servicing, repair or correction.\n\ + \nIn no event unless required by applicable law or agreed to in writing\nwill the authors\ + \ be liable to you for damages, including any general, \nspecial, incidental or consequential\ + \ damages arising out of any use of the\nprogram or out of inability to use the program\ + \ (including but not\nlimited to loss of data or data being rendered inaccurate or losses\n\ + sustained by you or by third parties as a result of a failure of the\nprogram to operate\ + \ with any other programs), even if such holder or\nother party has been advised of the\ + \ possibility of such damages.\n\n\nDISTRIBUTION\n\nRedistribution of unchanged files is\ + \ allowed provided that all files\nlisted in the file 00files.txt are distributed, including\ + \ this file.\n\nIf you receive only some of these files from someone, complain!\n\nThe distribution\ + \ of changed versions of certain files included in\nthe ec fonts, and the re-use of code\ + \ from those files, are allowed\nunder the following restrictions:\n\n * It is allowed only\ + \ if the legal notice in the file does not\n expressly forbid it.\n \n * You rename the\ + \ file before you make any changes to it, unless the\n file explicitly says that renaming\ + \ is not required. Any such changed\n files should be distributed under conditions that\ + \ ensure that those\n files, and any files derived from them, will never be redistributed\n\ + \ under the names used by the original files in the ec fonts.\n\n * The names of the modified\ + \ fonts must not start with the two letters\n `ec' or `tc'.\n\n * You change the `error\ + \ report address' so that we do not get error\n reports for files not maintained by us." json: ecfonts-1.0.json - yml: ecfonts-1.0.yml + yaml: ecfonts-1.0.yml html: ecfonts-1.0.html - text: ecfonts-1.0.LICENSE + license: ecfonts-1.0.LICENSE - license_key: ecl-1.0 + category: Permissive spdx_license_key: ECL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The Educational Community License 1.0 + + This Educational Community License (the "License") applies + to any original work of authorship (the "Original Work") whose owner + (the "Licensor") has placed the following notice immediately following + the copyright notice for the Original Work: + + Copyright (c) + + Licensed under the Educational Community License version 1.0 + + This Original Work, including software, source code, documents, + or other related items, is being provided by the copyright holder(s) + subject to the terms of the Educational Community License. By + obtaining, using and/or copying this Original Work, you agree that you + have read, understand, and will comply with the following terms and + conditions of the Educational Community License: + + Permission to use, copy, modify, merge, publish, distribute, and + sublicense this Original Work and its documentation, with or without + modification, for any purpose, and without fee or royalty to the + copyright holder(s) is hereby granted, provided that you include the + following on ALL copies of the Original Work or portions thereof, + including modifications or derivatives, that you make: + + + The full text of the Educational Community License in a location viewable to + users of the redistributed or derivative work. + + + Any pre-existing intellectual property disclaimers, notices, or terms and + conditions. + + + Notice of any changes or modifications to the Original Work, including the + date the changes were made. + + + Any modifications of the Original Work must be distributed in such a manner as + to avoid any confusion with the Original Work of the copyright holders. + + 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. + + The name and trademarks of copyright holder(s) may NOT be used + in advertising or publicity pertaining to the Original or Derivative + Works without specific, written prior permission. Title to copyright in + the Original Work and any associated documentation will at all times + remain with the copyright holders. json: ecl-1.0.json - yml: ecl-1.0.yml + yaml: ecl-1.0.yml html: ecl-1.0.html - text: ecl-1.0.LICENSE + license: ecl-1.0.LICENSE - license_key: ecl-2.0 + category: Permissive spdx_license_key: ECL-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: " Educational Community License\n Version 2.0, April 2007\n\ + \ http://www.osedu.org/licenses/\n\nThe Educational Community License version\ + \ 2.0 (\"ECL\") consists of the Apache 2.0\nlicense, modified to change the scope of the\ + \ patent grant in section 3 to be\nspecific to the needs of the education communities using\ + \ this license. The\noriginal Apache 2.0 license can be found at:\nhttp://www.apache.org/licenses/LICENSE-2.0\n\ + \nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"\ + License\" shall mean the terms and conditions for use, reproduction, and\ndistribution as\ + \ defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright\ + \ owner or entity authorized by the copyright\nowner that is granting the License.\n\n\"\ + Legal Entity\" shall mean the union of the acting entity and all other entities\nthat control,\ + \ are controlled by, or are under common control with that entity.\nFor the purposes of\ + \ this definition, \"control\" means (i) the power, direct or\nindirect, to cause the direction\ + \ or management of such entity, whether by\ncontract or otherwise, or (ii) ownership of\ + \ fifty percent (50%) or more of the\noutstanding shares, or (iii) beneficial ownership\ + \ of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising\n\ + permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for\ + \ making modifications, including\nbut not limited to software source code, documentation\ + \ source, and configuration\nfiles.\n\n\"Object\" form shall mean any form resulting from\ + \ mechanical transformation or\ntranslation of a Source form, including but not limited\ + \ to compiled object code,\ngenerated documentation, and conversions to other media types.\n\ + \n\"Work\" shall mean the work of authorship, whether in Source or Object form, made\navailable\ + \ under the License, as indicated by a copyright notice that is included\nin or attached\ + \ to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall\ + \ mean any work, whether in Source or Object form, that\nis based on (or derived from) the\ + \ Work and for which the editorial revisions,\nannotations, elaborations, or other modifications\ + \ represent, as a whole, an\noriginal work of authorship. For the purposes of this License,\ + \ Derivative Works\nshall not include works that remain separable from, or merely link (or\ + \ bind by\nname) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\"\ + \ shall mean any work of authorship, including the original version\nof the Work and any\ + \ modifications or additions to that Work or Derivative Works\nthereof, that is intentionally\ + \ submitted to Licensor for inclusion in the Work\nby the copyright owner or by an individual\ + \ or Legal Entity authorized to submit\non behalf of the copyright owner. For the purposes\ + \ of this definition,\n\"submitted\" means any form of electronic, verbal, or written communication\ + \ sent\nto the Licensor or its representatives, including but not limited to\ncommunication\ + \ on electronic mailing lists, source code control systems, and\nissue tracking systems\ + \ that are managed by, or on behalf of, the Licensor for\nthe purpose of discussing and\ + \ improving the Work, but excluding communication\nthat is conspicuously marked or otherwise\ + \ designated in writing by the copyright\nowner as \"Not a Contribution.\"\n\n\"Contributor\"\ + \ shall mean Licensor and any individual or Legal Entity on behalf\nof whom a Contribution\ + \ has been received by Licensor and subsequently\nincorporated within the Work.\n\n2. Grant\ + \ of Copyright License. Subject to the terms and conditions of this\nLicense, each Contributor\ + \ hereby grants to You a perpetual, worldwide, non-\nexclusive, no-charge, royalty-free,\ + \ irrevocable copyright license to reproduce,\nprepare Derivative Works of, publicly display,\ + \ publicly perform, sublicense, and\ndistribute the Work and such Derivative Works in Source\ + \ or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\ + \ this License,\neach Contributor hereby grants to You a perpetual, worldwide, non-exclusive,\ + \ no-\ncharge, royalty-free, irrevocable (except as stated in this section) patent\nlicense\ + \ to make, have made, use, offer to sell, sell, import, and otherwise\ntransfer the Work,\ + \ where such license applies only to those patent claims\nlicensable by such Contributor\ + \ that are necessarily infringed by their\nContribution(s) alone or by combination of their\ + \ Contribution(s) with the Work\nto which such Contribution(s) was submitted. If You institute\ + \ patent litigation\nagainst any entity (including a cross-claim or counterclaim in a lawsuit)\n\ + alleging that the Work or a Contribution incorporated within the Work\nconstitutes direct\ + \ or contributory patent infringement, then any patent licenses\ngranted to You under this\ + \ License for that Work shall terminate as of the date\nsuch litigation is filed. Any patent\ + \ license granted hereby with respect to\ncontributions by an individual employed by an\ + \ institution or organization is\nlimited to patent claims where the individual that is\ + \ the author of the Work is\nalso the inventor of the patent claims licensed, and where\ + \ the organization or\ninstitution has the right to grant such license under applicable\ + \ grant and\nresearch funding agreements. No other express or implied licenses are granted.\n\ + \n4. Redistribution.\n\nYou may reproduce and distribute copies of the Work or Derivative\ + \ Works thereof\nin any medium, with or without modifications, and in Source or Object form,\n\ + provided that You meet the following conditions:\n\nYou must give any other recipients of\ + \ the Work or Derivative Works a copy of\nthis License; and\n\nYou must cause any modified\ + \ files to carry prominent notices stating that You\nchanged the files; and\n\nYou must\ + \ retain, in the Source form of any Derivative Works that You distribute,\nall copyright,\ + \ patent, trademark, and attribution notices from the Source form\nof the Work, excluding\ + \ those notices that do not pertain to any part of the\nDerivative Works; and\n\nIf the\ + \ Work includes a \"NOTICE\" text file as part of its distribution, then any\nDerivative\ + \ Works that You distribute must include a readable copy of the\nattribution notices contained\ + \ within such NOTICE file, excluding those notices\nthat do not pertain to any part of the\ + \ Derivative Works, in at least one of the\nfollowing places: within a NOTICE text file\ + \ distributed as part of the\nDerivative Works; within the Source form or documentation,\ + \ if provided along\nwith the Derivative Works; or, within a display generated by the Derivative\n\ + Works, if and wherever such third-party notices normally appear. The contents of\nthe NOTICE\ + \ file are for informational purposes only and do not modify the\nLicense. You may add Your\ + \ own attribution notices within Derivative Works that\nYou distribute, alongside or as\ + \ an addendum to the NOTICE text from the Work,\nprovided that such additional attribution\ + \ notices cannot be construed as\nmodifying the License.\n\nYou may add Your own copyright\ + \ statement to Your modifications and may provide\nadditional or different license terms\ + \ and conditions for use, reproduction, or\ndistribution of Your modifications, or for any\ + \ such Derivative Works as a whole,\nprovided Your use, reproduction, and distribution of\ + \ the Work otherwise complies\nwith the conditions stated in this License.\n\n5. Submission\ + \ of Contributions.\n\nUnless You explicitly state otherwise, any Contribution intentionally\ + \ submitted\nfor inclusion in the Work by You to the Licensor shall be under the terms and\n\ + conditions of this License, without any additional terms or conditions.\nNotwithstanding\ + \ the above, nothing herein shall supersede or modify the terms of\nany separate license\ + \ agreement you may have executed with Licensor regarding\nsuch Contributions.\n\n6. Trademarks.\n\ + \nThis License does not grant permission to use the trade names, trademarks,\nservice marks,\ + \ or product names of the Licensor, except as required for\nreasonable and customary use\ + \ in describing the origin of the Work and\nreproducing the content of the NOTICE file.\n\ + \n7. Disclaimer of Warranty.\n\nUnless required by applicable law or agreed to in writing,\ + \ Licensor provides the\nWork (and each Contributor provides its Contributions) on an \"\ + AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,\n\ + including, without limitation, any warranties or conditions of TITLE, NON-\nINFRINGEMENT,\ + \ MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are\nsolely responsible for\ + \ determining the appropriateness of using or\nredistributing the Work and assume any risks\ + \ associated with Your exercise of\npermissions under this License.\n\n8. Limitation of\ + \ Liability.\n\nIn no event and under no legal theory, whether in tort (including negligence),\n\ + contract, or otherwise, unless required by applicable law (such as deliberate\nand grossly\ + \ negligent acts) or agreed to in writing, shall any Contributor be\nliable to You for damages,\ + \ including any direct, indirect, special, incidental,\nor consequential damages of any\ + \ character arising as a result of this License or\nout of the use or inability to use the\ + \ Work (including but not limited to\ndamages for loss of goodwill, work stoppage, computer\ + \ failure or malfunction, or\nany and all other commercial damages or losses), even if such\ + \ Contributor has\nbeen advised of the possibility of such damages.\n\n9. Accepting Warranty\ + \ or Additional Liability.\n\nWhile redistributing the Work or Derivative Works thereof,\ + \ You may choose to\noffer, and charge a fee for, acceptance of support, warranty, indemnity,\ + \ or\nother liability obligations and/or rights consistent with this License. However,\n\ + in accepting such obligations, You may act only on Your own behalf and on Your\nsole responsibility,\ + \ not on behalf of any other Contributor, and only if You\nagree to indemnify, defend, and\ + \ hold each Contributor harmless for any liability\nincurred by, or claims asserted against,\ + \ such Contributor by reason of your\naccepting any such warranty or additional liability.\n\ + \nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Educational Community License\ + \ to your work\n\nTo apply the Educational Community License to your work, attach\nthe following\ + \ boilerplate notice, with the fields enclosed by\nbrackets \"[]\" replaced with your own\ + \ identifying information.\n(Don't include the brackets!) The text should be enclosed in\ + \ the\nappropriate comment syntax for the file format. We also recommend\nthat a file or\ + \ class name and description of purpose be included on\nthe same \"printed page\" as the\ + \ copyright notice for easier\nidentification within third-party archives.\n\n\tCopyright\ + \ [yyyy] [name of copyright owner] Licensed under the\n\tEducational Community License,\ + \ Version 2.0 (the \"License\"); you may\n\tnot use this file except in compliance with\ + \ the License. You may\n\tobtain a copy of the License at\n\t\n\thttp://www.osedu.org/licenses/ECL-2.0\n\ + \n\tUnless required by applicable law or agreed to in writing,\n\tsoftware distributed under\ + \ the License is distributed on an \"AS IS\"\n\tBASIS, WITHOUT WARRANTIES OR CONDITIONS\ + \ OF ANY KIND, either express\n\tor implied. See the License for the specific language governing\n\ + \tpermissions and limitations under the License." json: ecl-2.0.json - yml: ecl-2.0.yml + yaml: ecl-2.0.yml html: ecl-2.0.html - text: ecl-2.0.LICENSE + license: ecl-2.0.LICENSE - license_key: eclipse-sua-2001 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-eclipse-sua-2001 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Eclipse.org Software User Agreement + + 1st November, 2001 + + ECLIPSE.ORG MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT. + + Unless otherwise indicated, all Content made available by Eclipse.org is provided to you under the terms and conditions of the Common Public License Version 0.5. For purposes of the Common Public License, "Program" will mean the Content. + + Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse.org CVS repository ("Repository") and subsequently released as project builds ("Builds"). + + Content as files may contain portions distributed under different license agreements and/or notices. Details about these license agreements and notices are contained in "about.html" files ("Abouts"). Abouts are located in the Repository in the root directory for each CVS module. Abouts in Builds may be in the program root directory and plug-in directories. Such Abouts govern your use of the associated software in that directory, not the Common Public License. + + You must agree to the terms and conditions of the Common Public License Version 0.5 and all Abouts contained in any Content and any other terms and conditions that are provided with the Content, if any. + + Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. json: eclipse-sua-2001.json - yml: eclipse-sua-2001.yml + yaml: eclipse-sua-2001.yml html: eclipse-sua-2001.html - text: eclipse-sua-2001.LICENSE + license: eclipse-sua-2001.LICENSE - license_key: eclipse-sua-2002 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-eclipse-sua-2002 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Eclipse.org Software User Agreement + + 17th June, 2002 + + ECLIPSE.ORG MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT. + + Unless otherwise indicated, all Content made available by Eclipse.org is provided to you under the terms and conditions of the Common Public License Version 1.0 ("CPL"). A copy of the CPL is provided with this Content and is also available at http://www.eclipse.org/legal/cpl-v10.html. For purposes of the CPL, "Program" will mean the Content. + + Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse.org CVS repository ("Repository") in CVS modules ("Modules") and made available as downloadable archives ("Downloads"). + + Content may be apportioned into plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features"). A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins and/or Fragments associated with a Feature. Plug-ins and Fragments are located in directories named "plugins" and Features are located in directories named "features". + + Features may also include other Features ("Included Features"). Files named "feature.xml" may contain a list of the names and version numbers of Included Features. + + The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module including, but not limited to the following locations: + + The top-level (root) directory + Plug-in and Fragment directories + Subdirectories of the directory named "src" of certain Plug-ins + Feature directories + + Note: if a Feature made available by Eclipse.org is installed using the Eclipse Update Manager, you must agree to a license ("Feature Update License") during the installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties". Such Abouts, Feature Licenses and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in that directory. The Abouts, Feature Licenses and Feature Update Licenses may refer to the CPL or other license agreements, notices or terms and conditions . It is your obligation to read and accept all such all terms and conditions prior to use of the Content. If no About, Feature License or Feature Update License is provided, please contact Eclipse.org to determine what terms and conditions govern that particular Content. + + Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. json: eclipse-sua-2002.json - yml: eclipse-sua-2002.yml + yaml: eclipse-sua-2002.yml html: eclipse-sua-2002.html - text: eclipse-sua-2002.LICENSE + license: eclipse-sua-2002.LICENSE - license_key: eclipse-sua-2003 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-eclipse-sua-2003 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Eclipse.org Software User Agreement + + 14th August, 2003 + Usage Of Content + + ECLIPSE.ORG MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT. + Applicable Licenses + + Unless otherwise indicated, all Content made available by Eclipse.org is provided to you under the terms and conditions of the Common Public License Version 1.0 ("CPL"). A copy of the CPL is provided with this Content and is also available at http://www.eclipse.org/legal/cpl-v10.html. For purposes of the CPL, "Program" will mean the Content. + + Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse.org CVS repository ("Repository") in CVS modules ("Modules") and made available as downloadable archives ("Downloads"). + + Content may be apportioned into plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features"). A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins and/or Fragments associated with a Feature. Plug-ins and Fragments are located in directories named "plugins" and Features are located in directories named "features". + + Features may also include other Features ("Included Features"). Files named "feature.xml" may contain a list of the names and version numbers of Included Features. + + The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module including, but not limited to the following locations: + + The top-level (root) directory + Plug-in and Fragment directories + Subdirectories of the directory named "src" of certain Plug-ins + Feature directories + + Note: if a Feature made available by Eclipse.org is installed using the Eclipse Update Manager, you must agree to a license ("Feature Update License") during the installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties". Such Abouts, Feature Licenses and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in that directory. + + THE ABOUTS, FEATURE LICENSES AND FEATURE UPDATE LICENSES MAY REFER TO THE CPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO): + + Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE) + IBM Public License 1.0 (available at http://oss.software.ibm.com/developerworks/opensource/license10.html) + Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html) + Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html) + + IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License or Feature Update License is provided, please contact Eclipse.org to determine what terms and conditions govern that particular Content. + Cryptography + + Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. json: eclipse-sua-2003.json - yml: eclipse-sua-2003.yml + yaml: eclipse-sua-2003.yml html: eclipse-sua-2003.html - text: eclipse-sua-2003.LICENSE + license: eclipse-sua-2003.LICENSE - license_key: eclipse-sua-2004 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-eclipse-sua-2004 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Eclipse.org Software User Agreement + + 15th June, 2004 + Usage Of Content + + ECLIPSE.ORG MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT. + Applicable Licenses + + Unless otherwise indicated, all Content made available by Eclipse.org is provided to you under the terms and conditions of the Common Public License Version 1.0 ("CPL"). A copy of the CPL is provided with this Content and is also available at http://www.eclipse.org/legal/cpl-v10.html. For purposes of the CPL, "Program" will mean the Content. + + Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse.org CVS repository ("Repository") in CVS modules ("Modules") and made available as downloadable archives ("Downloads"). + + Content may be apportioned into plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features"). A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins and/or Fragments associated with a Feature. Plug-ins and Fragments are located in directories named "plugins" and Features are located in directories named "features". + + Features may also include other Features ("Included Features"). Files named "feature.xml" may contain a list of the names and version numbers of Included Features. + + The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module including, but not limited to the following locations: + + The top-level (root) directory + Plug-in and Fragment directories + Subdirectories of the directory named "src" of certain Plug-ins + Feature directories + + Note: if a Feature made available by Eclipse.org is installed using the Eclipse Update Manager, you must agree to a license ("Feature Update License") during the installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties". Such Abouts, Feature Licenses and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in that directory. + + THE ABOUTS, FEATURE LICENSES AND FEATURE UPDATE LICENSES MAY REFER TO THE CPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO): + + Eclipse Public License Version 1.0 (available at http://www.eclipse.org/legal/epl-v10.html) + Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE) + IBM Public License 1.0 (available at http://oss.software.ibm.com/developerworks/opensource/license10.html) + Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html) + Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html) + + IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License or Feature Update License is provided, please contact Eclipse.org to determine what terms and conditions govern that particular Content. + Cryptography + + Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. json: eclipse-sua-2004.json - yml: eclipse-sua-2004.yml + yaml: eclipse-sua-2004.yml html: eclipse-sua-2004.html - text: eclipse-sua-2004.LICENSE + license: eclipse-sua-2004.LICENSE - license_key: eclipse-sua-2005 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-eclipse-sua-2005 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Eclipse Foundation Software User Agreement + + March 17, 2005 + Usage Of Content + + THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT. + Applicable Licenses + + Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. + + Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse.org CVS repository ("Repository") in CVS modules ("Modules") and made available as downloadable archives ("Downloads"). + + Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features"). + Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins". + A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins and/or Fragments associated with that Feature. + Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features. + + The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and Included Features should be contained in files named "license.html" ( "Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module including, but not limited to the following locations: + + The top-level (root) directory + Plug-in and Fragment directories + Inside Plug-ins and Fragments packaged as JARs + Sub-directories of the directory named "src" of certain Plug-ins + Feature directories + + Note: if a Feature made available by the Eclipse Foundation is installed using the Eclipse Update Manager, you must agree to a license ("Feature Update License") during the installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature. Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in that directory. + + THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO): + + Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html) + Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE) + Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0) + IBM Public License 1.0 (available at http://oss.software.ibm.com/developerworks/opensource/license10.html) + Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html) + Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html) + + IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please contact the Eclipse Foundation to determine what terms and conditions govern that particular Content. + Cryptography + + Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country’s laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. + Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both. json: eclipse-sua-2005.json - yml: eclipse-sua-2005.yml + yaml: eclipse-sua-2005.yml html: eclipse-sua-2005.html - text: eclipse-sua-2005.LICENSE + license: eclipse-sua-2005.LICENSE - license_key: eclipse-sua-2010 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-eclipse-sua-2010 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Eclipse Foundation Software User Agreement + + April 14, 2010 + Usage Of Content + + THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT. + Applicable Licenses + + Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. + + Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads"). + + Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features"). + Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins". + A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins and/or Fragments associated with that Feature. + Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features. + + The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module including, but not limited to the following locations: + + The top-level (root) directory + Plug-in and Fragment directories + Inside Plug-ins and Fragments packaged as JARs + Sub-directories of the directory named "src" of certain Plug-ins + Feature directories + + Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature. Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in that directory. + + THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO): + + Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html) + Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE) + Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0) + Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html) + Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html) + + IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please contact the Eclipse Foundation to determine what terms and conditions govern that particular Content. + Use of Provisioning Technology + + The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html ("Specification"). + + You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following: + + A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based product. + During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be accessed and copied to the Target Machine. + Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software. + + Cryptography + + Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. + + Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. json: eclipse-sua-2010.json - yml: eclipse-sua-2010.yml + yaml: eclipse-sua-2010.yml html: eclipse-sua-2010.html - text: eclipse-sua-2010.LICENSE + license: eclipse-sua-2010.LICENSE - license_key: eclipse-sua-2011 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-eclipse-sua-2011 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Eclipse Foundation Software User Agreement + + February 1, 2011 + Usage Of Content + + THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT. + Applicable Licenses + + Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. + + Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads"). + + Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features"). + Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins". + A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins and/or Fragments associated with that Feature. + Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features. + + The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module including, but not limited to the following locations: + + The top-level (root) directory + Plug-in and Fragment directories + Inside Plug-ins and Fragments packaged as JARs + Sub-directories of the directory named "src" of certain Plug-ins + Feature directories + + Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature. Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in that directory. + + THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO): + + Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html) + Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html) + Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE) + Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0) + Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html) + Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html) + + IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please contact the Eclipse Foundation to determine what terms and conditions govern that particular Content. + Use of Provisioning Technology + + The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html ("Specification"). + + You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following: + + A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based product. + During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be accessed and copied to the Target Machine. + Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software. + + Cryptography + + Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. + + Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. json: eclipse-sua-2011.json - yml: eclipse-sua-2011.yml + yaml: eclipse-sua-2011.yml html: eclipse-sua-2011.html - text: eclipse-sua-2011.LICENSE + license: eclipse-sua-2011.LICENSE - license_key: eclipse-sua-2014 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-eclipse-sua-2014 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Eclipse Foundation Software User Agreement + + April 9, 2014 + Usage Of Content + + THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT. + Applicable Licenses + + Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. + + Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads"). + + Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features"). + Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins". + A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins and/or Fragments associated with that Feature. + Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features. + + The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module including, but not limited to the following locations: + + The top-level (root) directory + Plug-in and Fragment directories + Inside Plug-ins and Fragments packaged as JARs + Sub-directories of the directory named "src" of certain Plug-ins + Feature directories + + Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature. Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in that directory. + + THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO): + + Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html) + Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html) + Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE) + Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0) + Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html) + + IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please contact the Eclipse Foundation to determine what terms and conditions govern that particular Content. + Use of Provisioning Technology + + The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html ("Specification"). + + You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following: + + A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based product. + During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be accessed and copied to the Target Machine. + Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software. + + Cryptography + + Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. + + Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. json: eclipse-sua-2014.json - yml: eclipse-sua-2014.yml + yaml: eclipse-sua-2014.yml html: eclipse-sua-2014.html - text: eclipse-sua-2014.LICENSE + license: eclipse-sua-2014.LICENSE - license_key: eclipse-sua-2014-11 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-eclipse-sua-2014-11 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Eclipse Foundation Software User Agreement + + November 22, 2014 + Usage Of Content + + THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT. + Applicable Licenses + + Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 2.0 ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-2.0. For purposes of the EPL, "Program" will mean the Content. + + Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads"). + + Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features"). + Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins". + A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins and/or Fragments associated with that Feature. + Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features. + + The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module including, but not limited to the following locations: + + The top-level (root) directory + Plug-in and Fragment directories + Inside Plug-ins and Fragments packaged as JARs + Sub-directories of the directory named "src" of certain Plug-ins + Feature directories + + Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature. Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in that directory. + + THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO): + + Eclipse Public License Version 1.0 (available at http://www.eclipse.org/legal/epl-v10.html) + Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html) + Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html) + Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE) + Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0) + Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html) + + IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please contact the Eclipse Foundation to determine what terms and conditions govern that particular Content. + Use of Provisioning Technology + + The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html ("Specification"). + + You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following: + + A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based product. + During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be accessed and copied to the Target Machine. + Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software. + + Cryptography + + Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. + + Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. json: eclipse-sua-2014-11.json - yml: eclipse-sua-2014-11.yml + yaml: eclipse-sua-2014-11.yml html: eclipse-sua-2014-11.html - text: eclipse-sua-2014-11.LICENSE + license: eclipse-sua-2014-11.LICENSE - license_key: eclipse-sua-2017 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-eclipse-sua-2017 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Eclipse Foundation Software User Agreement + + November 22, 2017 + Usage Of Content + + THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT. + Applicable Licenses + + Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 2.0 ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-2.0. For purposes of the EPL, "Program" will mean the Content. + + Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads"). + + Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features"). + Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins". + A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins and/or Fragments associated with that Feature. + Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features. + + The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module including, but not limited to the following locations: + + The top-level (root) directory + Plug-in and Fragment directories + Inside Plug-ins and Fragments packaged as JARs + Sub-directories of the directory named "src" of certain Plug-ins + Feature directories + + Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature. Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in that directory. + + THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO): + + Eclipse Public License Version 1.0 (available at http://www.eclipse.org/legal/epl-v10.html) + Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html) + Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html) + Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE) + Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0) + Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html) + + IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please contact the Eclipse Foundation to determine what terms and conditions govern that particular Content. + Use of Provisioning Technology + + The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html ("Specification"). + + You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following: + + A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based product. + During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be accessed and copied to the Target Machine. + Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software. + + Cryptography + + Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. + + Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. json: eclipse-sua-2017.json - yml: eclipse-sua-2017.yml + yaml: eclipse-sua-2017.yml html: eclipse-sua-2017.html - text: eclipse-sua-2017.LICENSE + license: eclipse-sua-2017.LICENSE - license_key: ecma-documentation + category: Free Restricted spdx_license_key: LicenseRef-scancode-ecma-documentation other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + This document and possible translations of it may be copied and furnished to + others, and derivative works that comment on or otherwise explain it or assist + in its implementation may be prepared, copied, published, and distributed, in + whole or in part, without restriction of any kind, provided that the above + copyright notice and this section are included on all such copies and derivative + works. However, this document itself may not be modified in any way, including + by removing the copyright notice or references to Ecma International, except as + needed for the purpose of developing any document or deliverable produced by + Ecma International (in which case the rules applied to copyrights must be + followed) or as required to translate it into languages other than English. The + limited permissions granted above are perpetual and will not be revoked by Ecma + International or its successors or assigns. This document and the information + contained herein is provided on an "AS IS" basis and ECMA INTERNATIONAL + DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY + WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY OWNERSHIP + RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR + PURPOSE. json: ecma-documentation.json - yml: ecma-documentation.yml + yaml: ecma-documentation.yml html: ecma-documentation.html - text: ecma-documentation.LICENSE + license: ecma-documentation.LICENSE - license_key: ecma-no-patent + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ecma-no-patent other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Proprietary Free + text: "This Software may be subject to third party rights (rights from parties other than\n\ + Ecma International), including patent rights, and no licenses under such third\nparty rights\ + \ are granted under this license even if the third party concerned is\na member of Ecma\ + \ International. \n\nSEE THE ECMA CODE OF CONDUCT IN PATENT MATTERS\nAVAILABLE AT http://www.ecma-international.org/memento/codeofconduct.htm\ + \ FOR\nINFORMATION REGARDING THE LICENSING OF PATENT CLAIMS THAT ARE REQUIRED TO\nIMPLEMENT\ + \ ECMA INTERNATIONAL STANDARDS*." json: ecma-no-patent.json - yml: ecma-no-patent.yml + yaml: ecma-no-patent.yml html: ecma-no-patent.html - text: ecma-no-patent.LICENSE + license: ecma-no-patent.LICENSE - license_key: ecma-patent-coc-0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ecma-patent-coc-0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Historical Code of Conduct in Patent Matters (valid until December 3, 2009) + + 1. + Policy + + General Declaration: + The General Assembly of Ecma shall not approve recommendations of Standards which are covered by patents when such patents will not be licensed by their owners on a reasonable and non-discriminatory basis. + + 1.1 + In case the proposed Standard is covered by issued patents of Ecma members only: Members of the General Assembly are asked to state the Company licensing policy with respect to these patents. + + 1.2 + In case the proposed Standard is covered by issued patents by non Ecma members: A written statement from the patentee is required, according to which he is prepared to grant licences on a reasonable, non-discriminatory basis. + The General Assembly and/or the Management shall decide in this case which steps must be undertaken in order to obtain such a statement. + + 1.3 + In case the proposed Standard is covered by patent applications of Ecma members (which is not known, neither during the work of the TC nor at the time of the vote in the General Assembly): + + 1.3.1 + Each member of the TCs and/or of the General Assembly of Ecma will determine whether any proposed standard may be covered by any patent for which his company has a pending application; if such a patent application exists, his continued participation to the relevant committee will imply that such a patent, when obtained later, will be made available from his company for licensing on a reasonable, non-discriminatory basis. + + 1.3.2 + Each member of the TCs and/or of the General Assembly of Ecma will determine whether any proposed standard may be covered by any patent for which his company has a pending application; if such a patent application exists, the favourable vote of the Company to the General Assembly will imply that such a patent, when obtained later, will be made available from his company for licensing on a reasonable, non-discriminatory basis. + + 1.4 + In case the proposed Standard is covered by patent applications of third parties (which is not known during the work of the TC nor at the time of the vote in the General Assembly): In this case practically nothing can be done at the time of the vote. When afterwards said patents are issued, it should be tried to obtain reasonable, non-discriminatory licences. If this proves to be impossible, the standard will have to be cancelled. + + 2. + Procedure + + 2.1 + The questions related to protective rights are in the competence of the General Assembly of Ecma and should not be discussed at the TC level. + + 2.2 + Each draft standard shall be submitted two months ahead of a General Assembly. All members are required to state no less than two weeks before the GA or at the end of the postal voting period whether they claim any issued protective rights covering the subject matter of the proposed standard and/or have knowledge of such rights of third parties. + + 2.3 + Replies to this request will be circulated in due time before the General Assembly. + + 2.4 + When an answer is not received from a Company, the General Assembly may proceed to a vote on the assumption that this Company will act in accordance with the General Declaration, that is to license possible relevant issued patents on a reasonable and non-discriminatory basis. json: ecma-patent-coc-0.json - yml: ecma-patent-coc-0.yml + yaml: ecma-patent-coc-0.yml html: ecma-patent-coc-0.html - text: ecma-patent-coc-0.LICENSE + license: ecma-patent-coc-0.LICENSE - license_key: ecma-patent-coc-1 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ecma-patent-coc-1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Code of Conduct in Patent Matters + Version 1 (approved by the Ecma GA in December 2009) + + 1. Ecma considers it is desirable that fullest available information should be disclosed to those selecting technology for Ecma International Standards* and those interested in adopting Ecma International Standards. Ecma desires to develop standards for which licenses for any essential patents are available on a non-discriminatory basis and on reasonable terms and conditions. Therefore, Ecma desires that any party participating in a technical committee of Ecma International promptly disclose any patent or pending patent application that it believes contain claims that may be required to implement an Ecma International Standard, in accordance with the following provisions. + + 2. If an Ecma International Standard is developed and a party may own or control a patent or application with claims that are required to implement such Ecma International Standard, three different situations may arise: + + 2.1 The patent holder is prepared to grant licenses free of charge to other parties on a non-discriminatory basis on reasonable terms and conditions. Negotiations are left to the parties concerned and are performed outside of Ecma International. + + 2.2 The patent holder is prepared to grant licenses to other parties on a non-discriminatory basis on reasonable terms and conditions. Negotiations are left to the parties concerned and are performed outside of Ecma International. + For patented technology contributed to and incorporated into a Final Draft Ecma International Standard by a patent holder member, the patent holder member may select 2.1 or 2.2. If such patent holder member does not make a selection, 2.2 shall apply. + + 2.3 For patented technology contributed by a party other than the patent holder, the patent holder is not prepared to comply with the provisions of either Paragraph 2.1 or Paragraph 2.2. + + 3. Whatever case applies (2.1, 2.2 or 2.3), the patent holder shall, for patents and pending applications it owns or controls that it believes contains claims that may be required to implement the identified Draft Ecma International Standard, provide a timely written statement to be filed with the Ecma Secretary General at the Ecma International Secretariat, using the attached “Patent Statement and Licensing Declaration Form for an Ecma International Standard” (the “Form” available here in WORD format and here in PDF format). Any licensing commitment selected will only apply to those claims that end up being required to implement the Final Ecma International Standard. + + 3.1 In the event the patent holder selects per Paragraph 2.1 and 2.2, the patent holder may identify specific patents associated with box 1 or box 2 of the Form. If an Ecma member does not identify specific patents on the list, the designated licensing commitment will apply to all of the Ecma member's claims in patents and pending applications it owns or controls that end up being required to implement the finalized Standard. The patent holder may submit multiple Forms to document additional patents, each Form applying to patents associated with one of the boxes. A patent holder may re-designate as follows: Box selections cannot be changed, except that identified patents may be re-designated from box 3 to box 1 or 2, or from box 2 to box 1. For licenses executed before a re-designation, the licensees may continue under the existing license or may request terms in accordance with the re-designation. + + 3.2 In the event a patent holder selects per Paragraph 2.3, the patent holder must identify the specific patents it owns or controls and believes are required to implement the Ecma Standard in a Form under box 3. + + 3.3 The Form must not include additional provisions, conditions, or any other clauses that may interpret, restrict or vary the terms of the selected box on the Form. + + 4. Pursuant to Article 9 of the Ecma International by-laws, each Final Draft Ecma International Standard to be approved shall be submitted two months ahead of a General Assembly (GA). + + 4.1 Each Ecma member participating in the development of the proposed standard shall, and other Ecma members may, submit a Form at the latest two weeks before the GA (if the vote occurs at the GA) or the end of the postal voting period (if the vote is by mail), if they own or control any patents or patent applications that they believe are required to implement such standard. For so long as such Standard remains an approved Ecma International Standard, the member will be prepared to grant licenses for its essential claims in patents and patent applications in accordance with Paragraph 2 above. In the event Paragraph 2.3 is selected, a patent license may not be available and the technical committee should explore other options. + + 4.2 This Policy creates no duty for Ecma members to search for any patents or patent applications at any time. A Member’s general licensing commitment shall apply to the claims in any patents or patent applications that are required to implement the Standard even if such patents are acquired by the Member after the Standard is finalized. If Paragraph 2.1 or 2.2 is selected, a commitment attaches to a Standard, then the same commitment would automatically apply to future versions of the Standard if the same implicated patent claims (i) are required for implementation of the revised Standard, and (ii) are used in a substantially similar manner, to a substantially similar extent, to achieve a substantially similar result as the same patent claims were used in the prior version for which the Member has made a licensing commitment. + + 4.3 An Ecma member that has not submitted a Form regarding a Final Draft Ecma International Standard within the period mentioned in Paragraph 4.1 is obliged to license any claims in patents or patent applications required to implement the Standard on a reasonable and non-discriminatory basis. + + 5. Anybody may disclose, in written form identifying the title and patent information, another party’s patents and applications that it reasonably believes may be required to implement an Ecma Standard. Such disclosure is not an assertion that such patents or applications are required for the Ecma Standard, but is provided for informational purposes. The Ecma Secretary General will, as feasible, send a Form to each such potential patent holder. A non-member may submit a Form to the Ecma Secretary General that lists the non-member’s patents and applications that it believes may be essential to a draft or final Ecma Standard and select one of the options described above in Paragraph 2. + + 6. Ecma International shall not provide legal opinions about evidence, validity or enforceability of patents, or whether a claim is required to implement a standard. Accordingly, in instances where a patent or pending patent application is disclosed to the Ecma Secretary General and it is not subject to a license commitment in accordance with boxes 1 or 2 of the Form, approval and publication of a proposed standard is authorized if 2/3 of the GA by vote in person or via letter ballot, support proceeding with the standard notwithstanding possible uncommitted patent(s) and patent application(s) of Ecma members or non-members. As a condition to proceeding, the Ecma Secretary General must provide notice of all identified and possibly uncommitted patents or patent applications and their disposal (if any) (i) to the voting members at least 10 days before the vote on the standard will be completed and (ii) to the public if and when the standard is published as final. + + 7. If a patent or pending patent application, that is not subject to a license commitment in accordance with boxes 1 or 2 of the Form, is disclosed to the Ecma Secretary General after an Ecma International Standard has been approved, the process of Paragraph 6 shall be followed to determine if the standard shall be continued, withdrawn or modified. + + * Ecma International Standards hereafter means Ecma International Standards as well as Ecma Technical Reports. json: ecma-patent-coc-1.json - yml: ecma-patent-coc-1.yml + yaml: ecma-patent-coc-1.yml html: ecma-patent-coc-1.html - text: ecma-patent-coc-1.LICENSE + license: ecma-patent-coc-1.LICENSE - license_key: ecma-patent-coc-2 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ecma-patent-coc-2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Ecma Code of Conduct in Patent Matters* + Version 2 (approved by the Ecma GA in June 2016) + + 1. Ecma considers it is desirable that fullest available information should be disclosed to those selecting technology for Ecma International Standards and those interested in adopting Ecma International Standards1. Ecma desires to develop standards for which licenses for any essential patents are available on a non-discriminatory basis and on reasonable terms and conditions. Therefore, Ecma desires that any party participating in a technical committee of Ecma International promptly disclose any patent or pending patent application that it believes contain claims that may be required to implement an Ecma International Standard, in accordance with the following provisions. + + 2. If an Ecma International Standard is developed and a party may own or control a patent or application with claims that are required to implement such Ecma International Standard, three different situations may arise: + + 2.1 The patent holder is prepared to grant licenses free of charge to other parties on a non-discriminatory basis on reasonable terms and conditions. Negotiations are left to the parties concerned and are performed outside of Ecma International. + + 2.2 The patent holder is prepared to grant licenses to other parties on a non-discriminatory basis on reasonable terms and conditions. Negotiations are left to the parties concerned and are performed outside of Ecma International. For patented technology contributed to and incorporated into a Final Draft Ecma International Standard by a patent holder member, the patent holder member may select 2.1 or 2.2. If such patent holder member does not make a selection, 2.2 shall apply. + + 2.3 For patented technology contributed by a party other than the patent holder, the patent holder is not prepared to comply with the provisions of either Paragraph 2.1 or Paragraph 2.2. + + 3. Whatever case applies (2.1, 2.2 or 2.3), the patent holder shall, for patents and pending applications it owns or controls that it believes contains claims that may be required to implement the identified Draft Ecma International Standard, provide a timely written statement to be filed with the Ecma Secretary General at the Ecma International Secretariat, using the attached “Patent Statement and Licensing Declaration Form for an Ecma International Standard” (the “Form” available here in WORD format and here in PDF format). Any licensing commitment selected will only apply to those claims that end up being required to implement the Final Ecma International Standard. + + 3.1 In the event the patent holder selects per Paragraph 2.1 and 2.2, the patent holder may identify specific patents associated with box 1 or box 2 of the Form. If an Ecma member does not identify specific patents on the list, the designated licensing commitment will apply to all of the Ecma member's claims in patents and pending applications it owns or controls that end up being required to implement the finalized Standard. The patent holder may submit multiple Forms to document additional patents, each Form applying to patents associated with one of the boxes. A patent holder may re-designate as follows: Box selections cannot be changed, except that identified patents may be re-designated from box 3 to box 1 or 2, or from box 2 to box 1. For licenses executed before a re-designation, the licensees may continue under the existing license or may request terms in accordance with the re-designation. + + 3.2 In the event a patent holder selects per Paragraph 2.3, the patent holder must identify the specific patents it owns or controls and believes are required to implement the Ecma Standard in a Form under box 3. + + 3.3 The Form must not include additional provisions, conditions, or any other clauses that may interpret, restrict or vary the terms of the selected box on the Form. + + 4. Pursuant to Article 9 of the Ecma International by-laws, each Final Draft Ecma International Standard to be approved shall be submitted two months ahead of a General Assembly (GA). + + 4.1 Each Ecma member participating in the development of the proposed standard shall, and other Ecma members may, submit a Form at the latest two weeks before the GA (if the vote occurs at the GA) or the end of the postal voting period (if the vote is by mail), if they own or control any patents or patent applications that they believe are required to implement such standard. For so long as such Standard remains an approved Ecma International Standard, the member will be prepared to grant licenses for its essential claims in patents and patent applications in accordance with Paragraph 2 above. In the event Paragraph 2.3 is selected, a patent license may not be available and the technical committee should explore other options. + + 4.2 This Policy creates no duty for Ecma members to search for any patents or patent applications at any time. A Member’s general licensing commitment shall apply to the claims in any patents or patent applications that are required to implement the Standard even if such patents are acquired by the Member after the Standard is finalized. If Paragraph 2.1 or 2.2 is selected, a commitment attaches to a Standard, then the same commitment would automatically apply to future versions of the Standard if the same implicated patent claims (i) are required for implementation of the revised Standard, and (ii) are used in a substantially similar manner, to a substantially similar extent, to achieve a substantially similar result as the same patent claims were used in the prior version for which the Member has made a licensing commitment. + + 4.3 An Ecma member participating in the development of the proposed standard that has not submitted a Form regarding a Final Draft Ecma International Standard within the period mentioned in Paragraph 4.1 is obliged to license any claims in patents or patent applications required to implement the Standard on a reasonable and non-discriminatory basis. + + 5. Anybody may disclose, in written form identifying the title and patent information, another party’s patents and applications that it reasonably believes may be required to implement an Ecma Standard. Such disclosure is not an assertion that such patents or applications are required for the Ecma Standard, but is provided for informational purposes. The Ecma Secretary General will, as feasible, send a Form to each such potential patent holder. A non-member may submit a Form to the Ecma Secretary General that lists the non-member’s patents and applications that it believes may be essential to a draft or final Ecma Standard and select one of the options described above in Paragraph 2. + + 6. Ecma International shall not provide legal opinions about evidence, validity or enforceability of patents, or whether a claim is required to implement a standard. Accordingly, in instances where a patent or pending patent application is disclosed to the Ecma Secretary General and it is not subject to a license commitment in accordance with boxes 1 or 2 of the Form, approval and publication of a proposed standard is authorized if 2/3 of the GA by vote in person or via letter ballot, support proceeding with the standard notwithstanding possible uncommitted patent(s) and patent application(s) of Ecma members or non-members. As a condition to proceeding, the Ecma Secretary General must provide notice of all identified and possibly uncommitted patents or patent applications and their disposal (if any) (i) to the voting members at least 10 days before the vote on the standard will be completed and (ii) to the public if and when the standard is published as final. + + 7. If a patent or pending patent application, that is not subject to a license commitment in accordance with boxes 1 or 2 of the Form, is disclosed to the Ecma Secretary General after an Ecma International Standard has been approved, the process of Paragraph 6 shall be followed to determine if the standard shall be continued, withdrawn or modified. + + + ___________________________ + + * The old Ecma Code of Conduct in Patent Matters that was valid until 3 December 2009 is to be found here and Version 1 approved in December 2009 is to be found here. + + 1 Ecma International Standards hereafter means Ecma International Standards as well as Ecma International Technical Reports. json: ecma-patent-coc-2.json - yml: ecma-patent-coc-2.yml + yaml: ecma-patent-coc-2.yml html: ecma-patent-coc-2.html - text: ecma-patent-coc-2.LICENSE + license: ecma-patent-coc-2.LICENSE - license_key: ecos + category: Copyleft Limited spdx_license_key: eCos-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This file is part of eCos, the Embedded Configurable Operating System. + + eCos 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 2 or (at your option) any later version. + + eCos 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 eCos; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. + + As a special exception, if other files instantiate templates or use macros + or inline functions from this file, or you compile this file and link it + with other works to produce a work based on this file, this file does not + by itself cause the resulting work to be covered by the GNU General Public + License. However the source code for this file must still be made available + in accordance with section (3) of the GNU General Public License. + + This exception does not invalidate any other reasons why a work based on + this file might be covered by the GNU General Public License. json: ecos.json - yml: ecos.yml + yaml: ecos.yml html: ecos.html - text: ecos.LICENSE + license: ecos.LICENSE - license_key: ecos-exception-2.0 + category: Copyleft Limited spdx_license_key: eCos-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, if other files instantiate templates or use macros + or inline functions from this file, or you compile this file and link it + with other works to produce a work based on this file, this file does not + by itself cause the resulting work to be covered by the GNU General Public + License. However the source code for this file must still be made available + in accordance with section (3) of the GNU General Public License. + + This exception does not invalidate any other reasons why a work based on + this file might be covered by the GNU General Public License. json: ecos-exception-2.0.json - yml: ecos-exception-2.0.yml + yaml: ecos-exception-2.0.yml html: ecos-exception-2.0.html - text: ecos-exception-2.0.LICENSE + license: ecos-exception-2.0.LICENSE - license_key: ecosrh-1.0 + category: Copyleft spdx_license_key: LicenseRef-scancode-ecosrh-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "CYGNUS ECOS PUBLIC LICENSE Version 1.0\n\n\n1. DEFINITIONS.\n\n1.1. \"Contributor\"\ + \ means each entity that creates or contributes to the\ncreation of Modifications.\n\n1.2.\ + \ \"Contributor Version\" means the combination of the Original Code,\nprior Modifications\ + \ used by a Contributor, and the Modifications made by\nthat particular Contributor.\n\n\ + 1.3. \"Covered Code\" means the Original Code or Modifications or the\ncombination of the\ + \ Original Code and Modifications, in each case\nincluding portions thereof.\n\n1.4. \"\ + Electronic Distribution Mechanism\" means a mechanism generally\naccepted in the software\ + \ development community for the electronic\ntransfer of data.\n\n1.5. \"Executable\" means\ + \ Covered Code in any form other than Source Code.\n\n1.6. \"Initial Developer\" means the\ + \ individual or entity identified as\nthe Initial Developer in the Source Code notice required\ + \ by Exhibit A.\n\n1.7. \"Larger Work\" means a work which combines Covered Code or portions\n\ + thereof with code not governed by the terms of this License.\n\n1.8. \"License\" means this\ + \ document.\n\n1.9. \"Modifications\" means any addition to or deletion from the\nsubstance\ + \ or structure of either the Original Code or any previous\nModifications. When Covered\ + \ Code is released as a series of files, a\nModification is:\n\n A. Any addition to or\ + \ deletion from the contents of a file\n containing Original Code or previous Modifications.\n\ + \ \n B. Any new file that contains any part of the Original Code or\n previous\ + \ Modifications.\n\n1.10. \"Original Code\" means Source Code of computer software code\ + \ which\nis described in the Source Code notice required by Exhibit A as Original\nCode,\ + \ and which, at the time of its release under this License is not\nalready Covered Code\ + \ governed by this License.\n\n1.11. \"Source Code\" means the preferred form of the Covered\ + \ Code for\nmaking modifications to it, including all modules it contains, plus any\nassociated\ + \ interface definition files, scripts used to control\ncompilation and installation of an\ + \ Executable, or a list of source code\ndifferential comparisons against either the Original\ + \ Code or another\nwell known, available Covered Code of the Contributor's choice. The\n\ + Source Code can be in a compressed or archival form, provided the\nappropriate decompression\ + \ or de-archiving software is widely available\nfor no charge.\n\n1.12. \"You\" means an\ + \ individual or a legal entity exercising rights\nunder, and complying with all of the terms\ + \ of, this License or a future\nversion of this License issued under Section 6.1. For legal\ + \ entities,\n\"You\" includes any entity which controls, is controlled by, or is under\n\ + common control with You. For purposes of this definition, \"control\"\nmeans (a) the power,\ + \ direct or indirect, to cause the direction or\nmanagement of such entity, whether by contract\ + \ or otherwise, or (b)\nownership of fifty percent (50%) or more of the outstanding shares\ + \ or\nbeneficial ownership of such entity.\n\n1.13. \"Cygnus's Branded Code\" is code that\ + \ Cygnus Solutions (\"Cygnus\")\ndistributes and/or permits others to distribute under different\ + \ terms\nthan the Cygnus eCos Public License. Cygnus's Branded Code may contain\npart or\ + \ all of the Covered Code.\n\n2. SOURCE CODE LICENSE.\n\n2.1. The Initial Developer Grant.\n\ + \n The Initial Developer hereby grants You a world-wide, royalty-free,\n non-exclusive\ + \ license, subject to third party intellectual property\n claims:\n \n (a)\ + \ to use, reproduce, modify, display, perform, sublicense and\n distribute the Original\ + \ Code (or portions thereof) with or\n without Modifications, or as part of a Larger\ + \ Work; and\n \n (b) under patents now or hereafter owned or controlled by\n\ + \ Initial Developer, to make, have made, use and sell (\"Utilize\")\n the\ + \ Original Code (or portions thereof), but solely to the\n extent that any such patent\ + \ is reasonably necessary to enable\n You to Utilize the Original Code (or portions\ + \ thereof) and not\n to any greater extent that may be necessary to Utilize further\n\ + \ Modifications or combinations.\n\n2.2. Contributor Grant. \n\n Each Contributor\ + \ hereby grants You a world-wide, royalty-free, non-\n exclusive license, subject to\ + \ third party intellectual property\n claims:\n \n (a) to use, reproduce, modify,\ + \ display, perform, sublicense and\n distribute the Modifications created by such\ + \ Contributor (or\n portions thereof) either on an unmodified basis, with other\n\ + \ Modifications, as Covered Code or as part of a Larger Work; and\n \n \ + \ (b) under patents now or hereafter owned or controlled by\n Contributor, to\ + \ Utilize the Contributor Version (or portions\n thereof), but solely to the extent\ + \ that any such patent is\n reasonably necessary to enable You to Utilize the Contributor\n\ + \ Version (or portions thereof), and not to any greater extent\n that may\ + \ be necessary to Utilize further Modifications or\n combinations.\n\n3. DISTRIBUTION\ + \ OBLIGATIONS. \n\n3.1. Application of License.\n\n The Modifications which You create\ + \ or to which You contribute are\n governed by the terms of this License, including without\ + \ limitation\n Section 2.2. The Source Code version of Covered Code may be\n distributed\ + \ only under the terms of this License or a future version\n of this License released\ + \ under Section 6.1, and You must include a\n copy of this License with every copy of\ + \ the Source Code You\n distribute. You may not offer or impose any terms on any Source\ + \ Code\n version that alters or restricts the applicable version of this\n License\ + \ or the recipients' rights hereunder. However, You may\n include an additional document\ + \ offering the additional rights\n described in Section 3.5.\n\n3.2. Availability of\ + \ Source Code. \n\n Any Modification which You create or to which You contribute must\ + \ be\n made available in Source Code form under the terms of this License\n via an\ + \ accepted Electronic Distribution Mechanism to anyone to whom\n you made an Executable\ + \ version available and to the Initial\n Developer; and if made available via Electronic\ + \ Distribution\n Mechanism, must remain available for at least twelve (12) months\n \ + \ after the date it initially became available, or at least six (6)\n months after\ + \ a subsequent version of that particular Modification\n has been made available to such\ + \ recipients. You are responsible for\n ensuring that the Source Code version remains\ + \ available even if the\n Electronic Distribution Mechanism is maintained by a third\ + \ party.\n You are responsible for notifying the Initial Developer of the\n Modification\ + \ and the location of the Source if a contact means is\n provided. Cygnus will be acting\ + \ as maintainer of the Source and may\n provide an Electronic Distribution mechanism\ + \ for the Modification to\n be made available. You can contact Cygnus to make the Modification\n\ + \ available and to notify the Initial Developer.\n (http://sourceware.cygnus.com/ecos)\n\ + \n3.3. Description of Modifications. \n\n You must cause all Covered Code to which you\ + \ contribute to contain a\n file documenting the changes You made to create that Covered\ + \ Code\n and the date of any change. You must include a prominent statement\n that\ + \ the Modification is derived, directly or indirectly, from\n Original Code provided\ + \ by the Initial Developer and including the\n name of the Initial Developer in (a) the\ + \ Source Code, and (b) in any\n notice in an Executable version or related documentation\ + \ in which\n You describe the origin or ownership of the Covered Code.\n\n3.4. Intellectual\ + \ Property Matters \n\n (a) Third Party Claims. \n\n If You have knowledge\ + \ that a party claims an intellectual\n property right in particular functionality\ + \ or code (or its\n utilization under this License), you must include a text file\n\ + \ with the source code distribution titled \"LEGAL\" which describes\n the\ + \ claim and the party making the claim in sufficient detail\n that a recipient will\ + \ know whom to contact. If you obtain such\n knowledge after You make Your Modification\ + \ available as\n described in Section 3.2, You shall promptly modify the LEGAL\n\ + \ file in all copies You make available thereafter and shall take\n other\ + \ steps (such as notifying appropriate mailing lists or\n newsgroups) reasonably\ + \ calculated to inform those who received\n the Covered Code that new knowledge has\ + \ been obtained.\n \n (b) Contributor APIs. \n\n If Your Modification\ + \ is an application programming interface and\n You own or control patents which\ + \ are reasonably necessary to\n implement that API, you must also include this information\ + \ in\n the LEGAL file.\n\n3.5. Required Notices. \n\n You must duplicate the notice\ + \ in Exhibit A in each file of the\n Source Code, and this License in any documentation\ + \ for the Source\n Code, where You describe recipients' rights relating to Covered\n\ + \ Code. If You created one or more Modification(s), You may add your\n name as a Contributor\ + \ to the Source Code. If it is not possible to\n put such notice in a particular Source\ + \ Code file due to its\n structure, then you must include such notice in a location (such\ + \ as\n a relevant directory file) where a user would be likely to look for\n such\ + \ a notice. You may choose to offer, and to charge a fee for,\n warranty, support, indemnity\ + \ or liability obligations to one or more\n recipients of Covered Code.\n\n However,\ + \ You may do so only on Your own behalf, and not on behalf of\n the Initial Developer\ + \ or any Contributor. You must make it\n absolutely clear that any such warranty, support,\ + \ indemnity or\n liability obligation is offered by You alone, and You hereby agree\n\ + \ to indemnify the Initial Developer and every Contributor for any\n liability incurred\ + \ by the Initial Developer or such Contributor as a\n result of warranty, support, indemnity\ + \ or liability terms You offer.\n\n3.6. Distribution of Executable Versions. \n\n You\ + \ may distribute Covered Code in Executable form only if the\n requirements of Section\ + \ 3.1-3.5 have been met for that Covered Code,\n and if You include a notice stating\ + \ that the Source Code version of\n the Covered Code is available under the terms of\ + \ this License,\n including a description of how and where You have fulfilled the\n \ + \ obligations of Section 3.2. The notice must be conspicuously\n included in any notice\ + \ in an Executable version, related\n documentation or collateral in which You describe\ + \ recipients' rights\n relating to the Covered Code. You may distribute the Executable\n\ + \ version of Covered Code under a license of Your choice, which may\n contain terms\ + \ different from this License, provided that You are in\n compliance with the terms of\ + \ this License and that the license for\n the Executable version does not attempt to\ + \ limit or alter the\n recipient's rights in the Source Code version from the rights\ + \ set\n forth in this License. If You distribute the Executable version\n under a\ + \ different license You must make it absolutely clear that any\n terms which differ from\ + \ this License are offered by You alone, not\n by the Initial Developer or any Contributor.\ + \ You hereby agree to\n indemnify the Initial Developer and every Contributor for any\n\ + \ liability incurred by the Initial Developer or such Contributor as a\n result of\ + \ any such terms You offer.\n \n If you distribute executable versions containing\ + \ Covered Code, you\n must reproduce the notice in Exhibit B in the documentation and/or\n\ + \ other materials provided with the product.\n\n3.7. Larger Works. \n\n You may create\ + \ a Larger Work by combining Covered Code with other\n code not governed by the terms\ + \ of this License and distribute the\n Larger Work as a single product. In such a case,\ + \ You must make sure\n the requirements of this License are fulfilled for the Covered\ + \ Code.\n\n4. INABILITY TO COMPLY DUE TO STATUTE OR REGULATION. \n\nIf it is impossible\ + \ for You to comply with any of the terms of this\nLicense with respect to some or all of\ + \ the Covered Code due to statute\nor regulation then You must: (a) comply with the terms\ + \ of this License\nto the maximum extent possible; (b) cite the statute or regulation that\n\ + prohibits you from adhering to the license; and (c) describe the\nlimitations and the code\ + \ they affect. Such description must be included\nin the LEGAL file described in Section\ + \ 3.4 and must be included with all\ndistributions of the Source Code. Except to the extent\ + \ prohibited by\nstatute or regulation, such description must be sufficiently detailed\n\ + for a recipient of ordinary skill to be able to understand it. You must\nsubmit this LEGAL\ + \ file to Cygnus for review, and You will not be able\nuse the covered code in any means\ + \ until permission is granted from\nCygnus to allow for the inability to comply due to statute\ + \ or\nregulation.\n\n5. APPLICATION OF THIS LICENSE. \n\nThis License applies to code to\ + \ which the Initial Developer has attached\nthe notice in Exhibit A, and to related Covered\ + \ Code.\n\nCygnus may include Covered Code in products without such additional\nproducts\ + \ becoming subject to the terms of this License, and may license\nsuch additional products\ + \ on different terms from those contained in this\nLicense.\n\nCygnus may license the Source\ + \ Code of Cygnus's Branded Code without\nCygnus's Branded Code becoming subject to the terms\ + \ of this License, and\nmay license Cygnus's Branded Code on different terms from those\n\ + contained in this License. Contact Cygnus for details of alternate\nlicensing terms available.\n\ + \n6. VERSIONS OF THE LICENSE. \n\n 6.1. New Versions. \n\n Cygnus may publish revised\ + \ and/or new versions of the License from\n time to time. Each version will be given\ + \ a distinguishing version\n number.\n\n 6.2. Effect of New Versions. \n\n Once\ + \ Covered Code has been published under a particular version of\n the License, You may\ + \ always continue to use it under the terms of\n that version. You may also choose to\ + \ use such Covered Code under\n the terms of any subsequent version of the License published\ + \ by\n Cygnus. No one other than Cygnus has the right to modify the terms\n applicable\ + \ to Covered Code beyond what is granted under this and\n subsequent Licenses.\n\n \ + \ 6.3. Derivative Works. \n\n If you create or use a modified version of this License\ + \ (which you\n may only do in order to apply it to code which is not already\n Covered\ + \ Code governed by this License), you must (a) rename Your\n license so that the phrases\ + \ \"ECOS\", \"eCos\", \"Cygnus\", \"CPL\" or any\n confusingly similar phrase do not\ + \ appear anywhere in your license\n and (b) otherwise make it clear that your version\ + \ of the license\n contains terms which differ from the eCos Public License and Cygnus\n\ + \ Public License. (Filling in the name of the Initial Developer,\n Original Code\ + \ or Contributor in the notice described in Exhibit A\n shall not of themselves be deemed\ + \ to be modifications of this\n License.)\n\n7. DISCLAIMER OF WARRANTY. \n\nCOVERED\ + \ CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT\nWARRANTY OF ANY KIND,\ + \ EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT\nLIMITATION, WARRANTIES THAT THE COVERED\ + \ CODE IS FREE OF DEFECTS,\nMERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON- INFRINGING.\ + \ THE\nENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS\nWITH YOU. SHOULD\ + \ ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU\n(NOT THE INITIAL DEVELOPER OR ANY\ + \ OTHER CONTRIBUTOR) ASSUME THE COST OF\nANY NECESSARY SERVICING, REPAIR OR CORRECTION.\ + \ THIS DISCLAIMER OF\nWARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF\ + \ ANY\nCOVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\ + \ \n\nThis License and the rights granted hereunder will terminate\nautomatically if You\ + \ fail to comply with terms herein and fail to cure\nsuch breach within 30 days of becoming\ + \ aware of the breach. All\nsublicenses to the Covered Code which are properly granted shall\ + \ survive\nany termination of this License. Provisions which, by their nature, must\nremain\ + \ in effect beyond the termination of this License shall survive.\n\n9. LIMITATION OF LIABILITY.\ + \ \n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\n(INCLUDING NEGLIGENCE),\ + \ CONTRACT, OR OTHERWISE, SHALL THE INITIAL\nDEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR\ + \ OF COVERED CODE, OR\nANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER\n\ + PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\nOF ANY CHARACTER\ + \ INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF\nGOODWILL, WORK STOPPAGE, COMPUTER\ + \ FAILURE OR MALFUNCTION, OR ANY AND ALL\nOTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH\ + \ PARTY SHALL HAVE BEEN\nINFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF\n\ + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH\ + \ PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\nPROHIBITS SUCH LIMITATION. SOME JURISDICTIONS\ + \ DO NOT ALLOW THE EXCLUSION\nOR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT\ + \ EXCLUSION\nAND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS. \n\n\ + The Covered Code is a \"commercial item,\" as that term is defined in 48\nC.F.R. 2.101 (Oct.\ + \ 1995), consisting of \"commercial computer software\"\nand \"commercial computer software\ + \ documentation,\" as such terms are used\nin 48 C.F.R. 12.212 (Sept. 1995). Consistent\ + \ with 48 C.F.R. 12.212 and\n48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S.\ + \ Government\nEnd Users acquire Covered Code with only those rights set forth herein.\n\n\ + 11. MISCELLANEOUS. \n\nThis License represents the complete agreement concerning subject\ + \ matter\nhereof. If any provision of this License is held to be unenforceable,\nsuch provision\ + \ shall be reformed only to the extent necessary to make it\nenforceable. This License shall\ + \ be governed by California law provisions\n(except to the extent applicable law, if any,\ + \ provides otherwise),\nexcluding its conflict-of-law provisions. With respect to disputes\ + \ in\nwhich at least one party is a citizen of, or an entity chartered or\nregistered to\ + \ do business in, the United States of America: (a) unless\notherwise agreed in writing,\ + \ all disputes relating to this License\n(excepting any dispute relating to intellectual\ + \ property rights) shall\nbe subject to final and binding arbitration, with the losing party\n\ + paying all costs of arbitration; (b) any arbitration relating to this\nAgreement shall be\ + \ held in Santa Clara County, California, under the\nauspices of JAMS/EndDispute; and (c)\ + \ any litigation relating to this\nAgreement shall be subject to the jurisdiction of the\ + \ Federal Courts of\nthe Northern District of California, with venue lying in Santa Clara\n\ + County, California, with the losing party responsible for costs,\nincluding without limitation,\ + \ court costs and reasonable attorneys fees\nand expenses. The application of the United\ + \ Nations Convention on\nContracts for the International Sale of Goods is expressly excluded.\ + \ Any\nlaw or regulation which provides that the language of a contract shall\nbe construed\ + \ against the drafter shall not apply to this License.\n\n12. RESPONSIBILITY FOR CLAIMS.\ + \ \n\nExcept in cases where another Contributor has failed to comply with\nSection 3.4,\ + \ You are responsible for damages arising, directly or\nindirectly, out of Your utilization\ + \ of rights under this License, based\non the number of copies of Covered Code you made\ + \ available, the revenues\nyou received from utilizing such rights, and other relevant factors.\ + \ You\nagree to work with affected parties to distribute responsibility on an\nequitable\ + \ basis.\n\n13. ADDITIONAL TERMS APPLICABLE TO THE CYGNUS ECOS PUBLIC LICENSE. \n\nNothing\ + \ in this License shall be interpreted to prohibit Cygnus from\nlicensing under different\ + \ terms than this License any code which Cygnus\notherwise would have a right to license.\n\ + \nCygnus and logo - This License does not grant any rights to use the\ntrademark \"Cygnus\"\ + , the Cygnus logo, eCos logo, even if such marks are\nincluded in the Original Code. You\ + \ may contact Cygnus for permission to\ndisplay the Cygnus and eCos marks in either the\ + \ documentation or the\nExecutable version beyond that required in Exhibit B.\n\nInability\ + \ to Comply Due to Contractual Obligation - To the extent that\nCygnus is limited contractually\ + \ from making third party code available\nunder this License, Cygnus may choose to integrate\ + \ such third party code\ninto Covered Code without being required to distribute such third\ + \ party\ncode in Source Code form, even if such third party code would otherwise\nbe considered\ + \ \"Modifications\" under this License.\n\nEXHIBIT A. \n\n\"The contents of this file are\ + \ subject to the Cygnus eCos Public License\nVersion 1.0 (the \"License\"); you may not\ + \ use this file except in\ncompliance with the License. You may obtain a copy of the License\ + \ at\nhttp://sourceware.cygnus.com/ecos\n\nSoftware distributed under the License is distributed\ + \ on an \"AS IS\"\nbasis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the\n\ + License for the specific language governing rights and limitations under\nthe License.\n\ + \nThe Original Code is eCos - Embedded Cygnus Operating System, released\nSeptember 30,\ + \ 1998.\n\nThe Initial Developer of the Original Code is Cygnus. Portions created\nby Cygnus\ + \ are Copyright (C) 1998 Cygnus Solutions. All Rights Reserved.\"\n\nEXHIBIT B. \n\nPart\ + \ of the software embedded in this product is eCos - Embedded Cygnus\nOperating System,\ + \ a trademark of Cygnus Solutions. Portions created by\nCygnus are Copyright (C) 1998 Cygnus\ + \ Solutions (http://www.cygnus.com).\nAll Rights Reserved.\n\nTHE SOFTWARE IN THIS PRODUCT\ + \ WAS IN PART PROVIDED BY CYGNUS SOLUTIONS\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,\ + \ BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n\ + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\nDIRECT, INDIRECT,\ + \ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED\ + \ TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\ + \ INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT\ + \ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\nANY WAY OUT OF THE\ + \ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE." json: ecosrh-1.0.json - yml: ecosrh-1.0.yml + yaml: ecosrh-1.0.yml html: ecosrh-1.0.html - text: ecosrh-1.0.LICENSE + license: ecosrh-1.0.LICENSE - license_key: ecosrh-1.1 + category: Copyleft spdx_license_key: RHeCos-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "Red Hat eCos Public License v1.1\n\n1. DEFINITIONS\n\n1.1. \"Contributor\" means each\ + \ entity that creates or contributes to the\ncreation of Modifications.\n\n1.2. \"Contributor\ + \ Version\" means the combination of the Original Code,\nprior Modifications used by a Contributor,\ + \ and the Modifications made by\nthat particular Contributor.\n\n1.3. \"Covered Code\" means\ + \ the Original Code or Modifications or the\ncombination of the Original Code and Modifications,\ + \ in each case\nincluding portions thereof.\n\n1.4. \"Electronic Distribution Mechanism\"\ + \ means a mechanism generally\naccepted in the software development community for the electronic\n\ + transfer of data.\n\n1.5. \"Executable\" means Covered Code in any form other than Source\ + \ Code.\n\n1.6. \"Initial Developer\" means the individual or entity identified as\nthe\ + \ Initial Developer in the Source Code notice required by Exhibit A.\n\n1.7. \"Larger Work\"\ + \ means a work which combines Covered Code or portions\nthereof with code not governed by\ + \ the terms of this License.\n\n1.8. \"License\" means this document.\n\n1.9. \"Modifications\"\ + \ means any addition to or deletion from the\nsubstance or structure of either the Original\ + \ Code or any previous\nModifications. When Covered Code is released as a series of files,\ + \ a\nModification is:\n\n A. Any addition to or deletion from the contents of a file\n\ + \ containing Original Code or previous Modifications.\n\n B. Any new file that contains\ + \ any part of the Original Code or\n previous Modifications.\n\n1.10. \"Original Code\"\ + \ means Source Code of computer software code which\nis described in the Source Code notice\ + \ required by Exhibit A as Original\nCode, and which, at the time of its release under this\ + \ License is not\nalready Covered Code governed by this License.\n\n1.11. \"Source Code\"\ + \ means the preferred form of the Covered Code for\nmaking modifications to it, including\ + \ all modules it contains, plus any\nassociated interface definition files, scripts used\ + \ to control\ncompilation and installation of an Executable, or a list of source code\n\ + differential comparisons against either the Original Code or another\nwell known, available\ + \ Covered Code of the Contributor's choice. The\nSource Code can be in a compressed or archival\ + \ form, provided the\nappropriate decompression or de-archiving software is widely available\n\ + for no charge.\n\n1.12. \"You\" means an individual or a legal entity exercising rights\n\ + under, and complying with all of the terms of, this License or a future\nversion of this\ + \ License issued under Section 6.1. For legal entities,\n\"You\" includes any entity which\ + \ controls, is controlled by, or is under\ncommon control with You. For purposes of this\ + \ definition, \"control\"\nmeans (a) the power, direct or indirect, to cause the direction\ + \ or\nmanagement of such entity, whether by contract or otherwise, or (b)\nownership of\ + \ fifty percent (50%) or more of the outstanding shares or\nbeneficial ownership of such\ + \ entity.\n\n1.13. \"Red Hat Branded Code\" is code that Red Hat distributes and/or\npermits\ + \ others to distribute under different terms than the Red Hat eCos\nPublic License. Red\ + \ Hat's Branded Code may contain part or all of the\nCovered Code.\n\n2. SOURCE CODE LICENSE\n\ + \n2.1. The Initial Developer Grant.\n\n The Initial Developer hereby grants You a world-wide,\ + \ royalty-free,\n non-exclusive license, subject to third party intellectual property\n\ + \ claims:\n\n (a) to use, reproduce, modify, display, perform, sublicense and\n\ + \ distribute the Original Code (or portions thereof) with or\n without Modifications,\ + \ or as part of a Larger Work; and\n\n (b) under patents now or hereafter owned or\ + \ controlled by\n Initial Developer, to make, have made, use and sell (\"Utilize\"\ + )\n the Original Code (or portions thereof), but solely to the\n extent that\ + \ any such patent is reasonably necessary to enable\n You to Utilize the Original\ + \ Code (or portions thereof) and not\n to any greater extent that may be necessary\ + \ to Utilize further\n Modifications or combinations.\n\n2.2. Contributor Grant.\n\ + \n Each Contributor hereby grants You a world-wide, royalty-free, non-\n exclusive\ + \ license, subject to third party intellectual property\n claims:\n\n (a) to use,\ + \ reproduce, modify, display, perform, sublicense and\n distribute the Modifications\ + \ created by such Contributor (or\n portions thereof) either on an unmodified basis,\ + \ with other\n Modifications, as Covered Code or as part of a Larger Work; and\n\n\ + \ (b) under patents now or hereafter owned or controlled by\n Contributor,\ + \ to Utilize the Contributor Version (or portions\n thereof), but solely to the extent\ + \ that any such patent is\n reasonably necessary to enable You to Utilize the Contributor\n\ + \ Version (or portions thereof), and not to any greater extent\n that may\ + \ be necessary to Utilize further Modifications or\n combinations.\n\n3. DISTRIBUTION\ + \ OBLIGATIONS\n\n3.1. Application of License.\n\n The Modifications which You create\ + \ or to which You contribute are\n governed by the terms of this License, including without\ + \ limitation\n Section 2.2. The Source Code version of Covered Code may be\n distributed\ + \ only under the terms of this License or a future version\n of this License released\ + \ under Section 6.1, and You must include a\n copy of this License with every copy of\ + \ the Source Code You\n distribute. You may not offer or impose any terms on any Source\ + \ Code\n version that alters or restricts the applicable version of this\n License\ + \ or the recipients' rights hereunder. However, You may\n include an additional document\ + \ offering the additional rights\n described in Section 3.5.\n\n3.2. Availability of\ + \ Source Code.\n \n Any Modification which You create or to which You contribute must\ + \ be\n made available in Source Code form under the terms of this License\n via an\ + \ accepted Electronic Distribution Mechanism to anyone to whom\n you made an Executable\ + \ version available and to the Initial\n Developer; and if made available via Electronic\ + \ Distribution\n Mechanism, must remain available for at least twelve (12) months\n \ + \ after the date it initially became available, or at least six (6)\n months after\ + \ a subsequent version of that particular Modification\n has been made available to such\ + \ recipients. You are responsible for\n ensuring that the Source Code version remains\ + \ available even if the\n Electronic Distribution Mechanism is maintained by a third\ + \ party.\n You are responsible for notifying the Initial Developer of the\n Modification\ + \ and the location of the Source if a contact means is\n provided. Red Hat will be acting\ + \ as maintainer of the Source and may\n provide an Electronic Distribution mechanism\ + \ for the Modification to\n be made available. You can contact Red Hat to make the Modification\n\ + \ available and to notify the Initial Developer.\n (http://sourceware.cygnus.com/ecos/)\n\ + \n3.3. Description of Modifications.\n\n You must cause all Covered Code to which you\ + \ contribute to contain a\n file documenting the changes You made to create that Covered\ + \ Code\n and the date of any change. You must include a prominent statement\n that\ + \ the Modification is derived, directly or indirectly, from\n Original Code provided\ + \ by the Initial Developer and including the\n name of the Initial Developer in (a) the\ + \ Source Code, and (b) in any\n notice in an Executable version or related documentation\ + \ in which\n You describe the origin or ownership of the Covered Code.\n\n3.4. Intellectual\ + \ Property Matters\n (a) Third Party Claims.\n\n If You have knowledge that\ + \ a party claims an intellectual\n property right in particular functionality or\ + \ code (or its\n utilization under this License), you must include a text file\n\ + \ with the source code distribution titled \"LEGAL\" which describes\n the\ + \ claim and the party making the claim in sufficient detail\n that a recipient will\ + \ know whom to contact. If you obtain such\n knowledge after You make Your Modification\ + \ available as\n described in Section 3.2, You shall promptly modify the LEGAL\n\ + \ file in all copies You make available thereafter and shall take\n other\ + \ steps (such as notifying appropriate mailing lists or\n newsgroups) reasonably\ + \ calculated to inform those who received\n the Covered Code that new knowledge has\ + \ been obtained.\n\n (b) Contributor APIs.\n\n If Your Modification is an\ + \ application programming interface and\n You own or control patents which are reasonably\ + \ necessary to\n implement that API, you must also include this information in\n\ + \ the LEGAL file.\n\n3.5. Required Notices.\n\n You must duplicate the notice\ + \ in Exhibit A in each file of the\n Source Code, and this License in any documentation\ + \ for the Source\n Code, where You describe recipients' rights relating to Covered\n\ + \ Code. If You created one or more Modification(s), You may add your\n name as a Contributor\ + \ to the Source Code. If it is not possible to\n put such notice in a particular Source\ + \ Code file due to its\n structure, then you must include such notice in a location (such\ + \ as\n a relevant directory file) where a user would be likely to look for\n such\ + \ a notice. You may choose to offer, and to charge a fee for,\n warranty, support, indemnity\ + \ or liability obligations to one or more\n recipients of Covered Code.\n\n However,\ + \ You may do so only on Your own behalf, and not on behalf of\n the Initial Developer\ + \ or any Contributor. You must make it\n absolutely clear that any such warranty, support,\ + \ indemnity or\n liability obligation is offered by You alone, and You hereby agree\n\ + \ to indemnify the Initial Developer and every Contributor for any\n liability incurred\ + \ by the Initial Developer or such Contributor as a\n result of warranty, support, indemnity\ + \ or liability terms You offer.\n\n3.6. Distribution of Executable Versions.\n\n You\ + \ may distribute Covered Code in Executable form only if the\n requirements of Section\ + \ 3.1-3.5 have been met for that Covered Code,\n and if You include a notice stating\ + \ that the Source Code version of\n the Covered Code is available under the terms of\ + \ this License,\n including a description of how and where You have fulfilled the\n \ + \ obligations of Section 3.2. The notice must be conspicuously\n included in any notice\ + \ in an Executable version, related\n documentation or collateral in which You describe\ + \ recipients' rights\n relating to the Covered Code. You may distribute the Executable\n\ + \ version of Covered Code under a license of Your choice, which may\n contain terms\ + \ different from this License, provided that You are in\n compliance with the terms of\ + \ this License and that the license for\n the Executable version does not attempt to\ + \ limit or alter the\n recipient's rights in the Source Code version from the rights\ + \ set\n forth in this License. If You distribute the Executable version\n under a\ + \ different license You must make it absolutely clear that any\n terms which differ from\ + \ this License are offered by You alone, not\n by the Initial Developer or any Contributor.\ + \ You hereby agree to\n indemnify the Initial Developer and every Contributor for any\n\ + \ liability incurred by the Initial Developer or such Contributor as a\n result of\ + \ any such terms You offer.\n\n If you distribute executable versions containing Covered\ + \ Code, you\n must reproduce the notice in Exhibit B in the documentation and/or\n \ + \ other materials provided with the product.\n\n3.7. Larger Works.\n\n You may create\ + \ a Larger Work by combining Covered Code with other\n code not governed by the terms\ + \ of this License and distribute the\n Larger Work as a single product. In such a case,\ + \ You must make sure\n the requirements of this License are fulfilled for the Covered\ + \ Code.\n\n4. INABILITY TO COMPLY DUE TO STATUTE OR REGULATION\n\nIf it is impossible for\ + \ You to comply with any of the terms of this\nLicense with respect to some or all of the\ + \ Covered Code due to statute\nor regulation then You must: (a) comply with the terms of\ + \ this License\nto the maximum extent possible; (b) cite the statute or regulation that\n\ + prohibits you from adhering to the license; and (c) describe the\nlimitations and the code\ + \ they affect. Such description must be included\nin the LEGAL file described in Section\ + \ 3.4 and must be included with all\ndistributions of the Source Code. Except to the extent\ + \ prohibited by\nstatute or regulation, such description must be sufficiently detailed\n\ + for a recipient of ordinary skill to be able to understand it. You must\nsubmit this LEGAL\ + \ file to Red Hat for review, and You will not be able\nuse the covered code in any means\ + \ until permission is granted from Red\nHat to allow for the inability to comply due to\ + \ statute or regulation.\n\n5. APPLICATION OF THIS LICENSE\n\nThis License applies to code\ + \ to which the Initial Developer has attached\nthe notice in Exhibit A, and to related Covered\ + \ Code.\n\nRed Hat may include Covered Code in products without such additional\nproducts\ + \ becoming subject to the terms of this License, and may license\nsuch additional products\ + \ on different terms from those contained in this\nLicense.\n\nRed Hat may license the Source\ + \ Code of Red Hat Branded Code without Red\nHat Branded Code becoming subject to the terms\ + \ of this License, and may\nlicense Red Hat Branded Code on different terms from those contained\ + \ in\nthis License. Contact Red Hat for details of alternate licensing terms\navailable.\n\ + \n6. VERSIONS OF THE LICENSE\n\n6.1. New Versions.\n\n Red Hat may publish revised and/or\ + \ new versions of the License from\n time to time. Each version will be given a distinguishing\ + \ version\n number.\n\n6.2. Effect of New Versions.\n\n Once Covered Code has been\ + \ published under a particular version of\n the License, You may always continue to use\ + \ it under the terms of\n that version. You may also choose to use such Covered Code\ + \ under the\n terms of any subsequent version of the License published by Red Hat.\n\ + \ No one other than Red Hat has the right to modify the terms\n applicable to Covered\ + \ Code beyond what is granted under this and\n subsequent Licenses.\n\n6.3. Derivative\ + \ Works.\n\n If you create or use a modified version of this License (which you\n \ + \ may only do in order to apply it to code which is not already\n Covered Code governed\ + \ by this License), you must (a) rename Your\n license so that the phrases \"ECOS\",\ + \ \"eCos\", \"Red Hat\", \"RHEPL\" or\n any confusingly similar phrase do not appear\ + \ anywhere in your\n license and (b) otherwise make it clear that your version of the\n\ + \ license contains terms which differ from the Red Hat eCos Public\n License. (Filling\ + \ in the name of the Initial Developer, Original\n Code or Contributor in the notice\ + \ described in Exhibit A shall not\n of themselves be deemed to be modifications of this\ + \ License.)\n\n7. DISCLAIMER OF WARRANTY\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE\ + \ ON AN \"AS IS\" BASIS, WITHOUT\nWARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\ + \ WITHOUT\nLIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS,\nMERCHANTABLE,\ + \ FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE\nRISK AS TO THE QUALITY AND\ + \ PERFORMANCE OF THE COVERED CODE IS WITH YOU.\nSHOULD ANY COVERED CODE PROVE DEFECTIVE\ + \ IN ANY RESPECT, YOU (NOT THE\nINITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST\ + \ OF ANY\nNECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY\nCONSTITUTES\ + \ AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED\nCODE IS AUTHORIZED HEREUNDER\ + \ EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION\n\nThis License and the rights granted\ + \ hereunder will terminate\nautomatically if You fail to comply with terms herein and fail\ + \ to cure\nsuch breach within 30 days of becoming aware of the breach. All\nsublicenses\ + \ to the Covered Code which are properly granted shall survive\nany termination of this\ + \ License. Provisions which, by their nature, must\nremain in effect beyond the termination\ + \ of this License shall survive.\n\n9. LIMITATION OF LIABILITY\n\nUNDER NO CIRCUMSTANCES\ + \ AND UNDER NO LEGAL THEORY, WHETHER TORT\n(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE,\ + \ SHALL THE INITIAL\nDEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,\ + \ OR\nANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER\nPERSON FOR ANY\ + \ INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\nOF ANY CHARACTER INCLUDING, WITHOUT\ + \ LIMITATION, DAMAGES FOR LOSS OF\nGOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION,\ + \ OR ANY AND ALL\nOTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\n\ + INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF\nLIABILITY SHALL NOT APPLY\ + \ TO LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE\ + \ EXTENT APPLICABLE LAW\nPROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE\ + \ EXCLUSION\nOR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION\nAND\ + \ LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS\n\nThe Covered Code\ + \ is a \"commercial item,\" as that term is defined in 48\nC.F.R. 2.101 (Oct. 1995), consisting\ + \ of \"commercial computer software\"\nand \"commercial computer software documentation,\"\ + \ as such terms are used\nin 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212\ + \ and\n48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government\nEnd Users\ + \ acquire Covered Code with only those rights set forth herein.\n\n11. MISCELLANEOUS\n\n\ + This License represents the complete agreement concerning subject matter\nhereof. If any\ + \ provision of this License is held to be unenforceable,\nsuch provision shall be reformed\ + \ only to the extent necessary to make it\nenforceable. This License shall be governed by\ + \ California law provisions\n(except to the extent applicable law, if any, provides otherwise),\n\ + excluding its conflict-of-law provisions. With respect to disputes in\nwhich at least one\ + \ party is a citizen of, or an entity chartered or\nregistered to do business in, the United\ + \ States of America: (a) unless\notherwise agreed in writing, all disputes relating to this\ + \ License\n(excepting any dispute relating to intellectual property rights) shall\nbe subject\ + \ to final and binding arbitration, with the losing party\npaying all costs of arbitration;\ + \ (b) any arbitration relating to this\nAgreement shall be held in Santa Clara County, California,\ + \ under the\nauspices of JAMS/EndDispute; and (c) any litigation relating to this\nAgreement\ + \ shall be subject to the jurisdiction of the Federal Courts of\nthe Northern District of\ + \ California, with venue lying in Santa Clara\nCounty, California, with the losing party\ + \ responsible for costs,\nincluding without limitation, court costs and reasonable attorneys\ + \ fees\nand expenses. The application of the United Nations Convention on\nContracts for\ + \ the International Sale of Goods is expressly excluded. Any\nlaw or regulation which provides\ + \ that the language of a contract shall\nbe construed against the drafter shall not apply\ + \ to this License.\n\n12. RESPONSIBILITY FOR CLAIMS\n\nExcept in cases where another Contributor\ + \ has failed to comply with\nSection 3.4, You are responsible for damages arising, directly\ + \ or\nindirectly, out of Your utilization of rights under this License, based\non the number\ + \ of copies of Covered Code you made available, the revenues\nyou received from utilizing\ + \ such rights, and other relevant factors. You\nagree to work with affected parties to distribute\ + \ responsibility on an\nequitable basis.\n\n13. ADDITIONAL TERMS APPLICABLE TO THE RED HAT\ + \ ECOS PUBLIC LICENSE\n\nNothing in this License shall be interpreted to prohibit Red Hat\ + \ from\nlicensing under different terms than this License any code which Red Hat\notherwise\ + \ would have a right to license.\n\nRed Hat and logo - This License does not grant any rights\ + \ to use the\ntrademark Red Hat, the Red Hat logo, eCos logo, even if such marks are\nincluded\ + \ in the Original Code. You may contact Red Hat for permission to\ndisplay the Red Hat and\ + \ eCos marks in either the documentation or the\nExecutable version beyond that required\ + \ in Exhibit B.\n\nInability to Comply Due to Contractual Obligation - To the extent that\n\ + Red Hat is limited contractually from making third party code available\nunder this License,\ + \ Red Hat may choose to integrate such third party\ncode into Covered Code without being\ + \ required to distribute such third\nparty code in Source Code form, even if such third\ + \ party code would\notherwise be considered \"Modifications\" under this License.\n\nEXHIBIT\ + \ A\n\n\"The contents of this file are subject to the Red Hat eCos Public \nLicense Version\ + \ 1.1 (the \"License\"); you may not use this file except in\ncompliance with the License.\ + \ You may obtain a copy of the License at\nhttp://www.redhat.com/\n\nSoftware distributed\ + \ under the License is distributed on an \"AS IS\"\nbasis, WITHOUT WARRANTY OF ANY KIND,\ + \ either express or implied. See the\nLicense for the specific language governing rights\ + \ and limitations under\nthe License.\n\nThe Original Code is eCos - Embedded Configurable\ + \ Operating System,\nreleased September 30, 1998. The Initial Developer of the Original\ + \ Code\nis Red Hat. Portions created by Red Hat are Copyright (C) 1998, 1999,\n2000 Red\ + \ Hat, Inc. All Rights Reserved.\"\n\nEXHIBIT B\n\nPart of the software embedded in this\ + \ product is eCos - Embedded\nConfigurable Operating System, a trademark of Red Hat. Portions\ + \ created\nby Red Hat are Copyright (C) 1998, 1999, 2000 Red Hat, Inc.\n(http://www.redhat.com/).\ + \ All Rights Reserved.\n\nTHE SOFTWARE IN THIS PRODUCT WAS IN PART PROVIDED BY RED HAT AND\ + \ ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES\ + \ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\ + \ THE AUTHOR BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n\ + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS\ + \ OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY\ + \ OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\ + \ OTHERWISE) ARISING IN\nANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n\ + POSSIBILITY OF SUCH DAMAGE.\n\neCos and the eCos logo are registered trademarks of eCosCentric\ + \ Limited." json: ecosrh-1.1.json - yml: ecosrh-1.1.yml + yaml: ecosrh-1.1.yml html: ecosrh-1.1.html - text: ecosrh-1.1.LICENSE + license: ecosrh-1.1.LICENSE +- license_key: edrdg-2000 + category: Copyleft Limited + spdx_license_key: LicenseRef-scancode-edrdg-2000 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + [EDRDG] + ****** ELECTRONIC DICTIONARY RESEARCH AND DEVELOPMENT GROUP ****** + ****** GENERAL DICTIONARY LICENCE STATEMENT ****** + EDRDG_Home_Page + 1. Introduction + In March 2000, James William Breen assigned ownership of the copyright of the + dictionary files assembled, coordinated and edited by him to the The Electronic + Dictionary Research and Development Group, then at Monash University (hereafter + "the Group"), on the understanding that the Group will foster the development + of the dictionary files, and will utilize all monies received for use of the + files for the further development of the files, and for research into computer + lexicography and electronic dictionaries. + This document outlines the licence arrangement put in place by The Group for + usage of the files. It replaces all previous copyright and licence statements + applying to the files. + + 2. Application + This licence statement and copyright notice applies to the following dictionary + files, the associated documentation files, and any data files which are derived + from them. + * JMDICT - Japanese-Multilingual Dictionary File - the Japanese and English + components (the translational equivalents in other languages, e.g. + German, French, Dutch, etc. are covered by separate copyright held by the + compilers of that material.) + * EDICT - Japanese-English Electronic DICTionary File + * ENAMDICT - Japanese Names File + * COMPDIC - Japanese-English Computing and Telecommunications Terminology + File + * KANJIDIC2 - File of Information about the Kanji in JIS X 0208, JIS X 0212 + and JIS X 0213 in XML format. + * KANJIDIC - File of Information about the 6,355 Kanji in the JIS X 0208 + Standard (special conditions apply) + * KANJD212 - File of Information about the 5,801 Supplementary Kanji in the + JIS X 0212 Standard + * EDICT-R - romanized version of the EDICT file. (NB: this file has been + withdrawn from circulation, and all sites carrying it are requested to + remove their copies.) + * RADKFILE/KRADFILE - files relating to the decomposition of the 6,355 + kanji in JIS X 0208 into their visible components. + Copyright over the documents covered by this statement is held by James William + BREEN and The Electronic Dictionary Research and Development Group. + + 3. Licence Conditions + [http://creativecommons.org/images/public/somerights20.gif] + The dictionary files are made available under a Creative Commons Attribution- + ShareAlike Licence (V3.0). The Licence Deed can be viewed here, and the full + Licence Code is here. + In summary (extract from the Licence Deed): + _____________________________________________________________________________ + |You are free: | + | * to Share - to copy, distribute and transmit the work | + | * to Remix - to adapt the work | + |Under the following conditions: | + | * Attribution. You must attribute the work in the manner specified by the| + | author or licensor (but not in any way that suggests that they endorse | + | you or your use of the work). | + | * Share Alike. If you alter, transform, or build upon this work, you may | + | distribute the resulting work only under the same, similar or a | + | compatible_licence. | + |_____________________________________________________________________________| + + For attribution of these files, you must: + a. in the case of publishing significant extracts of the files, or material + based on significant extracts of the files, e.g. in a published + dictionary or in vocabulary lists, clearly acknowledge that you used the + files for this purpose; + + b. in the case of a software package, WWW server, smartphone app, etc. which + uses the files or incorporates data from the files, you must: + i. acknowledge the usage and source of the files in the documentation, + publicity material, WWW site of the package/server, etc.; + ii. provide copies of the documentation and licence files (in the case + of software packages). Where the application packaging does not + provide for the inclusion of such files (e.g. with iPhone + applications), it is sufficient to provide links, as per the next + point; + iii. provide links to either local copies of the documentation and + licence files or to the locations of the files at Monash University + or at the EDRDG site. + If a WWW server is providing a dictionary function or an on-screen + display of words from the files, the acknowledgement must be made + on each screen display, e.g. in the form of a message at the foot + of the screen or page. If, however, material from the files is + mixed with information from other sources, it is sufficient to + provide a general acknowledgement of the sources as described + above. + For smartphone and tablet apps, acknowledgement must be made, e.g. + on a separate screen accessed from a menu, such as one labelled + "About", "Sources", etc. It is not sufficient just to mention it on + a start-up/launch page of the app. + For the EDICT, JMdict and KANJIDIC files, the following URLs may be + used or quoted: + # http://www.edrdg.org/wiki/index.php/JMdict- + EDICT_Dictionary_Project + # http://www.edrdg.org/wiki/index.php/KANJIDIC_Project + See this_page for samples of possible acknowledgement text. + Note that in all cases, the addition of material to the files or to extracts + from the files does not remove or in any way diminish the Group's copyright + over the files. Users of material from the files must NOT claim copyright over + that material. + Note also that provided the conditions above are met, there is NO restriction + placed on commercial use of the files. The files can be bundled with software + and sold for whatever the developer wants to charge. Software using these files + does not have to be under any form of open-source licence. + Where use of the files results in a financial return to the user, it is + suggested that the user make a donation to the Group to assist with the + continued development of the files. The only method currently available is to + make a donation via PayPal using a credit or debit card. Simply click on the + following button and follow the instructions. + [Submit https://www.paypal.com/en_US/i/btn/x-click-but21.gif] + NB: No contract or agreement needs to be signed in order to use the files. By + using the files, the user implicitly undertakes to abide by the conditions of + this licence. + + 4. Updating Dictionary Versions + If a software package, WWW server, smartphone app, etc. uses the files or + incorporates data from the files, there must be a procedure for regular + updating of the data from the most recent versions available. For example, WWW- + based dictionary servers should update their dictionary versions at least once + a month. Failure to keep the versions up-to-date is a violation of the licence + to use the data. + + 5. Warranty and Liability + While every effort has been made to ensure the accuracy of the information in + the files, it is possible that errors may still be included. The files are made + available without any warranty whatsoever as to their accuracy or suitability + for a particular application. + Any individual or organization making use of the files must agree: + a. to assume all liability for the use or misuse of the files, and must + agree not to hold the Group liable for any actions or events resulting + from use of the files. + b. to refrain from bringing action or suit or claim against the Group or any + of the Group's members on the basis of the use of the files, or any + information included in the files. + c. to indemnify the Group or its members in the case of action by a third + party on the basis of the use of the files, or any information included + in the files. + + 6. Copyright + Every effort has been made in the compilation of these files to ensure that the + copyright of other compilers of dictionaries and lexicographic material has not + been infringed. The Group asserts its intention to rectify immediately any + breach of copyright brought to its attention. + Any individual or organization in possession of copies of the files, upon + becoming aware that a possible copyright infringement may be present in the + files, must undertake to contact the Group immediately with details of the + possible infringement. + + 7. Prior Permission + All permissions for use of the files granted by James William Breen prior to + March 2000 will be honoured and maintained, however the placing of the KANJD212 + and EDICTH files under the GNU GPL has been withdrawn as of 25 March 2000. + + 8. Special Conditions for the KANJIDIC, KANJD212 and KANJIDIC2 Files + In addition to licensing arrangements described above, the following additional + conditions apply to the KANJIDIC, KANJD212 and KANJIDIC2 files. + The following people have granted permission for material for which they hold + copyright to be included in the files, and distributed under the above + conditions, while retaining their copyright over that material: + Jack HALPERN: The SKIP codes. + Note that the SKIP codes are under their own similar Creative Common licence. + See Jack Halpern's conditions_of_use page. + Christian WITTERN and Koichi YASUOKA: The Pinyin information. + Urs APP: the Four Corner codes and the Morohashi information. + Mark SPAHN and Wolfgang HADAMITZKY: the kanji descriptors from their + dictionary. + Charles MULLER: the Korean readings. + Joseph DE ROO: the De Roo codes. + + 9. Enquiries + All enquiries to: + The Electronic Dictionary Research and Development Group + Attn: Dr Jim Breen + (jimbreen@gmail.com) + json: edrdg-2000.json + yaml: edrdg-2000.yml + html: edrdg-2000.html + license: edrdg-2000.LICENSE - license_key: efl-1.0 + category: Permissive spdx_license_key: EFL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Eiffel Forum License, version 1 + + Permission is hereby granted to use, copy, modify and/or distribute + this package, provided that: + + - copyright notices are retained unchanged + + - any distribution of this package, whether modified or not, + includes this file + + Permission is hereby also granted to distribute binary programs which + depend on this package, provided that: + + - if the binary program depends on a modified version of this + package, you must publicly release the modified version of this + package + + THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT WARRANTY. ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE TO ANY PARTY FOR + ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THIS PACKAGE. json: efl-1.0.json - yml: efl-1.0.yml + yaml: efl-1.0.yml html: efl-1.0.html - text: efl-1.0.LICENSE + license: efl-1.0.LICENSE - license_key: efl-2.0 + category: Permissive spdx_license_key: EFL-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Eiffel Forum License, version 2 + + 1. Permission is hereby granted to use, copy, modify and/or + distribute this package, provided that: + * copyright notices are retained unchanged, + * any distribution of this package, whether modified or not, + includes this license text. + 2. Permission is hereby also granted to distribute binary programs + which depend on this package. If the binary program depends on a + modified version of this package, you are encouraged to publicly + release the modified version of this package. + + *********************** + + THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT WARRANTY. ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE TO ANY PARTY FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THIS PACKAGE. + + *********************** json: efl-2.0.json - yml: efl-2.0.yml + yaml: efl-2.0.yml html: efl-2.0.html - text: efl-2.0.LICENSE + license: efl-2.0.LICENSE - license_key: efsl-1.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-efsl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Eclipse Foundation Specification License - v1.0 + + By using and/or copying this document, or the Eclipse Foundation document from + which this statement is linked, you (the licensee) agree that you have read, + understood, and will comply with the following terms and conditions: + + Permission to copy, and distribute the contents of this document, or the Eclipse + Foundation document from which this statement is linked, in any medium for any + purpose and without fee or royalty is hereby granted, provided that you include + the following on ALL copies of the document, or portions thereof, that you use: + + - link or URL to the original Eclipse Foundation document. + - All existing copyright notices, or if one does not exist, a notice (hypertext + is preferred, but a textual representation is permitted) of the form: + "Copyright © [$date-of-document] Eclipse Foundation, Inc. <>" + + Inclusion of the full text of this NOTICE must be provided. We request that + authorship attribution be provided in any software, documents, or other items or + products that you create pursuant to the implementation of the contents of this + document, or any portion thereof. + + No right to create modifications or derivatives of Eclipse Foundation documents + is granted pursuant to this license, except anyone may prepare and distribute + derivative works and portions of this document in software that implements the + specification, in supporting materials accompanying such software, and in + documentation of such software, PROVIDED that all such works include the notice + below. HOWEVER, the publication of derivative works of this document for use as + a technical specification is expressly prohibited. + + The notice is: + + "Copyright © [$date-of-document] Eclipse Foundation. This software or document + includes material copied from or derived from [title and URI of the Eclipse + Foundation specification document]." + + Disclaimers + + THIS DOCUMENT IS PROVIDED "AS IS," AND THE COPYRIGHT HOLDERS AND THE ECLIPSE + FOUNDATION MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, + BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE DOCUMENT ARE + SUITABLE FOR ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT + INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. + + THE COPYRIGHT HOLDERS AND THE ECLIPSE FOUNDATION WILL NOT BE LIABLE FOR ANY + DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE + DOCUMENT OR THE PERFORMANCE OR IMPLEMENTATION OF THE CONTENTS THEREOF. + + The name and trademarks of the copyright holders or the Eclipse Foundation may + NOT be used in advertising or publicity pertaining to this document or its + contents without specific, written prior permission. Title to copyright in this + document will at all times remain with copyright holders. json: efsl-1.0.json - yml: efsl-1.0.yml + yaml: efsl-1.0.yml html: efsl-1.0.html - text: efsl-1.0.LICENSE + license: efsl-1.0.LICENSE - license_key: egenix-1.0.0 + category: Permissive spdx_license_key: LicenseRef-scancode-egenix-1.0.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + EGENIX.COM PUBLIC LICENSE AGREEMENT VERSION 1.0.0 + + 1. Introduction + + This "License Agreement" is between eGenix.com Software, Skills and Services GmbH ("eGenix.com"), having an office at Pastor-Loeh-Str. 48, D-40764 Langenfeld, Germany, and the Individual or Organization ("Licensee") accessing and otherwise using this software in source or binary form and its associated documentation ("the Software"). + + 2. License + + Subject to the terms and conditions of this eGenix.com Public License Agreement, eGenix.com 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 eGenix.com Public License Agreement is retained in the Software, or in any derivative version of the Software prepared by Licensee. + + 3. NO WARRANTY + + eGenix.com is making the Software available to Licensee on an "AS IS" basis. SUBJECT TO ANY STATUTORY WARRANTIES WHICH CAN NOT BE EXCLUDED, EGENIX.COM MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, EGENIX.COM 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. LIMITATION OF LIABILITY + + EGENIX.COM SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER PECUNIARY LOSS) AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE EXCLUSION OR LIMITATION MAY NOT APPLY TO LICENSEE. + + 5. Termination + + This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 6. General + + Nothing in this License Agreement affects any statutory rights of consumers that cannot be waived or limited by contract. + + Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between eGenix.com and Licensee. + + If any provision of this License Agreement shall be unlawful, void, or for any reason unenforceable, such provision shall be modified to the extent necessary to render it enforceable without losing its intent, or, if no such modification is possible, be severed from this License Agreement and shall not affect the validity and enforceability of the remaining provisions of this License Agreement. + + This License Agreement shall be governed by and interpreted in all respects by the law of Germany, excluding conflict of law provisions. It shall not be governed by the United Nations Convention on Contracts for International Sale of Goods. + + This License Agreement does not grant permission to use eGenix.com trademarks or trade names in a trademark sense to endorse or promote products or services of Licensee, or any third party. + + The controlling language of this License Agreement is English. If Licensee has received a translation into another language, it has been provided for Licensee's convenience only. + + 7. Agreement + + By downloading, copying, installing or otherwise using the Software, Licensee agrees to be bound by the terms and conditions of this License Agreement. json: egenix-1.0.0.json - yml: egenix-1.0.0.yml + yaml: egenix-1.0.0.yml html: egenix-1.0.0.html - text: egenix-1.0.0.LICENSE + license: egenix-1.0.0.LICENSE - license_key: egenix-1.1.0 + category: Permissive spdx_license_key: eGenix other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "EGENIX.COM PUBLIC LICENSE AGREEMENT \nVersion 1.1.0 \n\nThis license agreement is based\ + \ on the Python CNRI License Agreement, a widely accepted open- source license. \n\n1. Introduction\ + \ \nThis \"License Agreement\" is between eGenix.com Software, Skills and Services GmbH\ + \ (\"eGenix.com\"), having an office at Pastor-Loeh-Str. 48, D-40764 Langenfeld, Germany,\ + \ and the Individual or Organization (\"Licensee\") accessing and otherwise using this software\ + \ in source or binary form and its associated documentation (\"the Software\"). \n\n2. License\ + \ \nSubject to the terms and conditions of this eGenix.com Public License Agreement, eGenix.com\ + \ 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 eGenix.com Public License Agreement is retained in the Software, or in any derivative\ + \ version of the Software prepared by Licensee. \n\n3. NO WARRANTY \neGenix.com is making\ + \ the Software available to Licensee on an \"AS IS\" basis. SUBJECT TO ANY STATUTORY WARRANTIES\ + \ WHICH CAN NOT BE EXCLUDED, EGENIX.COM MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS\ + \ OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, EGENIX.COM 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. \n\n4. LIMITATION\ + \ OF LIABILITY \nEGENIX.COM SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE\ + \ FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS (INCLUDING, WITHOUT LIMITATION,\ + \ DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION,\ + \ OR OTHER PECUNIARY LOSS) AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE,\ + \ OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. SOME JURISDICTIONS\ + \ DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE\ + \ ABOVE EXCLUSION OR LIMITATION MAY NOT APPLY TO LICENSEE. \n\n5. Termination \nThis License\ + \ Agreement will automatically terminate upon a material breach of its terms and conditions.\ + \ \n\n6. Third Party Rights \nAny software or documentation in source or binary form provided\ + \ along with the Software that is associated with a separate license agreement is licensed\ + \ to Licensee under the terms of that license agreement. This License Agreement does not\ + \ apply to those portions of the Software. Copies of the third party licenses are included\ + \ in the Software Distribution. \n\n7. General \nNothing in this License Agreement affects\ + \ any statutory rights of consumers that cannot be waived or limited by contract. \n\nNothing\ + \ in this License Agreement shall be deemed to create any relationship of agency, partnership,\ + \ or joint venture between eGenix.com and Licensee. \n\nIf any provision of this License\ + \ Agreement shall be unlawful, void, or for any reason unenforceable, such provision shall\ + \ be modified to the extent necessary to render it enforceable without losing its intent,\ + \ or, if no such modification is possible, be severed from this License Agreement and shall\ + \ not affect the validity and enforceability of the remaining provisions of this License\ + \ Agreement. \n\nThis License Agreement shall be governed by and interpreted in all respects\ + \ by the law of Germany, excluding conflict of law provisions. It shall not be governed\ + \ by the United Nations Convention on Contracts for International Sale of Goods. This License\ + \ Agreement does not grant permission to use eGenix.com trademarks or trade names in a trademark\ + \ sense to endorse or promote products or services of Licensee, or any third party. \n\n\ + The controlling language of this License Agreement is English. If Licensee has received\ + \ a translation into another language, it has been provided for Licensee's convenience only.\ + \ \n\n8. Agreement \nBy downloading, copying, installing or otherwise using the Software,\ + \ Licensee agrees to be bound by the terms and conditions of this License Agreement. For\ + \ question regarding this License Agreement, please write to: \n eGenix.com Software,\ + \ Skills and Services GmbH \n Pastor-Loeh-Str. 48 \n D-40764 Langenfeld \n Germany" json: egenix-1.1.0.json - yml: egenix-1.1.0.yml + yaml: egenix-1.1.0.yml html: egenix-1.1.0.html - text: egenix-1.1.0.LICENSE + license: egenix-1.1.0.LICENSE - license_key: egrappler + category: Commercial spdx_license_key: LicenseRef-scancode-egrappler other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "All files at egrappler.com are free for personal and commercial use.\nHowever, you\ + \ cannot redistribute, sale, re-upload these files. \nDo not offer download links at your\ + \ site without written consent of the author.\nDo not use any content plugin or template\ + \ from egrappler.com for anything that\ncontains adult, gambling contents.\nAlways link\ + \ to original post if you want to spread the word." json: egrappler.json - yml: egrappler.yml + yaml: egrappler.yml html: egrappler.html - text: egrappler.LICENSE + license: egrappler.LICENSE - license_key: ej-technologies-eula + category: Commercial spdx_license_key: LicenseRef-scancode-ej-technologies-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + ej-technologies-EULA + http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html + + IMPORTANT-READ CAREFULLY: This End-User License Agreement ("EULA") is a legal + agreement between you (either an individual or a single legal entity) and + ej-technologies GmbH (ej-technologies), which covers your use of JProfiler and + related software components ("Software Product" or JProfiler). + + A software license and a license key or serial number ("Software Product + License"), issued only by ej-technologies or its authorized agents to a + designated user may be required according to the following agreement. + + If you do not agree to the terms of this EULA, then do not download, install + or use the Software Product or the Software Product License. By explicitly + accepting this EULA you are acknowledging and agreeing to be bound by the + following terms: + + 1. GRANT OF LICENSE + + The Software Product is owned by ej-technologies. It is licensed, not sold. + The Software Product is protected by copyright laws and international + copyright treaties, as well as other intellectual property laws and treaties. + ej-technologies reserves all intellectual property rights, including + copyrights and trademark rights. + + According to your order, ej-technologies grants you a non-exclusive, + non-transferable license to use the Software Product under certain obligations + and limited rights as set forth in this agreement: + + + - SINGLE-USER LICENSE: ej-technologies grants the non-exclusive, + non-transferable right for a single user to use this Software Product. Each + additional user of the Software Product requires an additional Software + Product License. You may use each Software Product License on more than one + computer system, as long as it is always used by the same user. You may + transfer the Software Product License to a different user only if you remove + all previous installations completely. + + - SINGLE-MACHINE LICENSE: ej-technologies grants the non-exclusive, + non-transferable right to install this Software Product on a single computer + system. Each additional installation of the Software Product requires an + additional Software Product License. You may transfer the Software Product + License to a different computer system only if you remove the previous + installation completely. + + - FLOATING LICENSE: ej-technologies grants the non-exclusive, non-transferable + right to install this Software Product on multiple computer systems. An + arbitrary number of users may install the Software Product, but the maximum + number of concurrently running instances is limited according to your order. + Each additional concurrent user of the Software Product requires an + additional Software Product License. ej-technologies provides you with a + License Server that manages the use of floating licenses. You agree to be + bound by the separate license agreement of the license server. + + - SITE LICENSE: ej-technologies grants the non-exclusive, non-transferable + right to install and use this Software Product on an arbitrary number of + computer systems on one site. + + + ej-technologies issues a Software Product License that allows you to use the + Software Product accordingly. You may not disclose the Software Product + License in any way. + + Backup Copy: You may make copies of the Software Product and the Software + Product License as reasonably necessary for the use authorized above, + including as needed for backup and/or archival purposes. No other copies may + be made. Each copy must reproduce all copyright and other proprietary rights + notices on or in the Software Product. + + 2. LICENSE TO DISTRIBUTE REDISTRIBUTABLE FILES + + ej-technologies grants you a non-exclusive, non-transferable, limited license + to distribute all parts of JProfiler that are required for running the + profiling agent provided that: + + - You remove your license key from the redistributed configuration file + ("config.xml") + + - You do not remove or alter any proprietary legends or notices contained in + or on the redistributables + + - You only distribute the redistributables with a license agreement that + protects ej-technologies' interests consistently with the terms contained in + this agreement + + - You agree to defend and indemnify ej-technologies from and against any + damages, costs, liabilities, settlement amounts and/or expenses (including + attorneys' fees) incurred in connection with any claim, lawsuit or action by + any third party that arises or results from the use or distribution of any + redistributable files. + + 3. RESTRICTED USE FOR EVALUATION + + This Software Product can be used in conjunction with a free evaluation + Software Product License. If you are using such an evaluation Software Product + License, you may use the Software Product only to evaluate its suitability for + purchase. Evaluation Software has been limited in some way either through + timeouts, restricted use or evaluation warnings. ej-technologies bears no + liability for any damages resulting from use (or attempted use after + expiration) of the software product, and has no duty to provide any support + before or after the expiration date of an evaluation license. + + 4. SUPPORT SERVICES + + ej-technologies may provide you with support services related to the Software + Product according to your order. Use of any such support services is governed + by policies described on ej-technologies' web site + (http://www.ej-technologies.com). + + Any supplemental software code or related materials that ej-technologies + provides to you as part of the support services, in periodic updates to the + Software Product or otherwise, is to be considered part of the Software + Product and is subject to the terms and conditions of this EULA. + + With respect to any technical information you provide to ej-technologies as + part of the support services, ej-technologies may use such information for its + business purposes without restriction, including for product support and + development. ej-technologies will not use such technical information in a form + that personally identifies you without first obtaining your permission. + + 5. RESTRICTIONS + + You may not use, copy, or distribute the Software Product, except as granted + by this EULA, without written authorization from ej-technologies. + + You may not tamper with, alter, or use the Software Product in a way that + disables, circumvents, or otherwise defeats its built-in licensing + verification and enforcement capabilities. + + You may not remove or alter any trademark, logo, copyright or other + proprietary notice, legend, symbol or label in the Software Product. You may + not modify or create derivative copies of the Software Product License. + + You may not reverse engineer, decompile, defeat license encryption mechanisms, + or disassemble the Software Product or Software Product License except and + only to the extent that such activity is expressly permitted by applicable law + notwithstanding this limitation. You may not rent, lease, lend, or in any way + distribute or transfer any rights in this EULA or the Software Product to + third parties without ej-technologies' written approval, and subject to + written agreement by the recipient of the terms of this EULA. + + The Software Product is not fault-tolerant and is not designed, manufactured + or intended for use or resale as on-line control equipment in hazardous + environments requiring fail-safe performance, in which the failure of the + Software Product, or any software, tool, process, or service that was + developed using the Software Product, could lead directly to death, personal + injury, or severe physical or environmental damage ("High Risk Activities"). + Accordingly, ej-technologies and its suppliers and licensors specifically + disclaim any express or implied warranty of fitness for High Risk Activities. + You agree that ej-technologies and its suppliers and licensors will not be + liable for any claims or damages arising from the use of the Software Product, + or any software, tool, process, or service that was developed using the + Software Product, in such applications. + + 6. THIRD PARTY RIGHTS + + Any software provided along with the Software Product that is associated with + a separate license agreement is licensed to you under the terms of that + license agreement. This license does not apply to those portions of the + Software Product. Copies of these third party licenses are included in all + copies of the Software Product. + + 7. LIMITED WARRANTY + + You have ensured with the above mentioned evaluation version that the Software + Product works according to your requirements and the advertised features. + ej-technologies disclaims all warranties for deficiencies that are reasonably + discoverable with the evaluation version of the Software Product. You + acknowledge that software cannot be completely error-free. ej-technologies + disclaims all warranties regarding non-severe deviations of the advertised + features of the Software Product. + + The limitation period is one year, if not otherwise regulated by law, and + starts with the service provision. + + To the maximum extent permitted by applicable law, ej-technologies and its + third party suppliers and licensors disclaim all other representations, + warranties, and conditions, expressed, implied, statutory, or otherwise, + including, but not limited to, implied warranties or conditions of + merchantability, satisfactory quality, fitness for a particular purpose, + title, and non-infringement. The entire risk arising out of use or performance + of the software product remains with you. + + 8. LIMITATION OF LIABILITY + + This limitation of liability is to the maximum extent permitted by applicable + law. ej-technologies is liable to indemnity only according to the following + terms: + + ej-technologies is fully liable in case of intention, gross negligence, loss + from physical injury, severe organizational failure or in case of an + acceptance of guarantee. + + Liability for slight negligence is limited to material breach of contractual + obligations and in that case to the typically predictable loss. Any further + liability is excluded. Contributory negligence of the licensee and other + parties will be taken into account. Any liability under the terms of product + liability laws remains unaffected. + + You agree to ensure that a data backup is performed on all computers that the + Software Product or redistributable parts of it are used on. In case of loss + of data, liability is limited to the cost that would arise in the case where a + proper backup has been performed. + + The limitation period is one year, if not otherwise regulated by law, and + starts with the service provision. + + Any limitation of ej-technologies' liability also applies to your staff, + agents and associated companies. + + 9. GENERAL + + ej-technologies may terminate this EULA if you fail to comply with any term or + condition of this EULA. In such event, you must destroy all copies of the + Software Product and Software Product Licenses. + + This EULA is governed by the laws of Germany. Exclusive jurisdiction and place + of performance is Muenchen, Germany, as long as permitted by applicable law. + The United Nations Convention for the International Sale of Goods shall not + apply. + + This EULA is the entire agreement between ej-technologies and you, and + supersedes any other communications or advertising with respect to the + Software Product; this EULA may be modified only by written agreement signed + by authorized representatives of you and ej-technologies. + + If any provision of this EULA is held invalid, the remainder of this EULA + shall continue in full force and effect. + + All rights not expressly granted in this agreement are retained by + ej-technologies. + + 10. CONTACT INFORMATION + + If you have any questions about this EULA, or if you want to contact + ej-technologies for any reason, please direct correspondence to + ej-technologies GmbH, Claude-Lorrain-Str. 7, D-81543 Muenchen, Germany, or + send email to info@ej-technologies.com. json: ej-technologies-eula.json - yml: ej-technologies-eula.yml + yaml: ej-technologies-eula.yml html: ej-technologies-eula.html - text: ej-technologies-eula.LICENSE + license: ej-technologies-eula.LICENSE - license_key: ekiga-exception-2.0-plus + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-ekiga-exception-2.0-plus other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "Ekiga/GnomeMeeting is licensed under the GNU GPL license and as a special \nexception,\ + \ you have permission to link or otherwise combine this program with \nthe programs OPAL,\ + \ OpenH323, PWLIB, and OpenSSL, and distribute \nthe combination, without applying the requirements\ + \ of the GNU GPL to these \nprograms, as long as you do follow the requirements of the GNU\ + \ GPL for all the\nrest of the software thus combined." json: ekiga-exception-2.0-plus.json - yml: ekiga-exception-2.0-plus.yml + yaml: ekiga-exception-2.0-plus.yml html: ekiga-exception-2.0-plus.html - text: ekiga-exception-2.0-plus.LICENSE + license: ekiga-exception-2.0-plus.LICENSE - license_key: ekioh + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. json: ekioh.json - yml: ekioh.yml + yaml: ekioh.yml html: ekioh.html - text: ekioh.LICENSE + license: ekioh.LICENSE - license_key: elastic-license-2018 + category: Source-available spdx_license_key: LicenseRef-scancode-elastic-license-2018 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + ELASTIC LICENSE AGREEMENT + + PLEASE READ CAREFULLY THIS ELASTIC LICENSE AGREEMENT (THIS "AGREEMENT"), WHICH + CONSTITUTES A LEGALLY BINDING AGREEMENT AND GOVERNS ALL OF YOUR USE OF ALL OF + THE ELASTIC SOFTWARE WITH WHICH THIS AGREEMENT IS INCLUDED ("ELASTIC SOFTWARE") + THAT IS PROVIDED IN OBJECT CODE FORMAT, AND, IN ACCORDANCE WITH SECTION 2 BELOW, + CERTAIN OF THE ELASTIC SOFTWARE THAT IS PROVIDED IN SOURCE CODE FORMAT. BY + INSTALLING OR USING ANY OF THE ELASTIC SOFTWARE GOVERNED BY THIS AGREEMENT, YOU + ARE ASSENTING TO THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE + WITH SUCH TERMS AND CONDITIONS, YOU MAY NOT INSTALL OR USE THE ELASTIC SOFTWARE + GOVERNED BY THIS AGREEMENT. IF YOU ARE INSTALLING OR USING THE SOFTWARE ON + BEHALF OF A LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE THE ACTUAL + AUTHORITY TO AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT ON BEHALF OF + SUCH ENTITY. + + Posted Date: April 20, 2018 + + This Agreement is entered into by and between Elasticsearch BV ("Elastic") and + You, or the legal entity on behalf of whom You are acting (as applicable, + "You"). + + 1. OBJECT CODE END USER LICENSES, RESTRICTIONS AND THIRD PARTY OPEN SOURCE + SOFTWARE + + 1.1 Object Code End User License. Subject to the terms and conditions of + Section 1.2 of this Agreement, Elastic hereby grants to You, AT NO CHARGE and + for so long as you are not in breach of any provision of this Agreement, a + License to the Basic Features and Functions of the Elastic Software. + + 1.2 Reservation of Rights; Restrictions. As between Elastic and You, Elastic + and its licensors own all right, title and interest in and to the Elastic + Software, and except as expressly set forth in Sections 1.1, and 2.1 of this + Agreement, no other license to the Elastic Software is granted to You under + this Agreement, by implication, estoppel or otherwise. You agree not to: (i) + reverse engineer or decompile, decrypt, disassemble or otherwise reduce any + Elastic Software provided to You in Object Code, or any portion thereof, to + Source Code, except and only to the extent any such restriction is prohibited + by applicable law, (ii) except as expressly permitted in this Agreement, + prepare derivative works from, modify, copy or use the Elastic Software Object + Code or the Commercial Software Source Code in any manner; (iii) except as + expressly permitted in Section 1.1 above, transfer, sell, rent, lease, + distribute, sublicense, loan or otherwise transfer, Elastic Software Object + Code, in whole or in part, to any third party; (iv) use Elastic Software + Object Code for providing time-sharing services, any software-as-a-service, + service bureau services or as part of an application services provider or + other service offering (collectively, "SaaS Offering") where obtaining access + to the Elastic Software or the features and functions of the Elastic Software + is a primary reason or substantial motivation for users of the SaaS Offering + to access and/or use the SaaS Offering ("Prohibited SaaS Offering"); (v) + circumvent the limitations on use of Elastic Software provided to You in + Object Code format that are imposed or preserved by any License Key, or (vi) + alter or remove any Marks and Notices in the Elastic Software. If You have any + question as to whether a specific SaaS Offering constitutes a Prohibited SaaS + Offering, or are interested in obtaining Elastic's permission to engage in + commercial or non-commercial distribution of the Elastic Software, please + contact elastic_license@elastic.co. + + 1.3 Third Party Open Source Software. The Commercial Software may contain or + be provided with third party open source libraries, components, utilities and + other open source software (collectively, "Open Source Software"), which Open + Source Software may have applicable license terms as identified on a website + designated by Elastic. Notwithstanding anything to the contrary herein, use of + the Open Source Software shall be subject to the license terms and conditions + applicable to such Open Source Software, to the extent required by the + applicable licensor (which terms shall not restrict the license rights granted + to You hereunder, but may contain additional rights). To the extent any + condition of this Agreement conflicts with any license to the Open Source + Software, the Open Source Software license will govern with respect to such + Open Source Software only. Elastic may also separately provide you with + certain open source software that is licensed by Elastic. Your use of such + Elastic open source software will not be governed by this Agreement, but by + the applicable open source license terms. + + 2. COMMERCIAL SOFTWARE SOURCE CODE + + 2.1 Limited License. Subject to the terms and conditions of Section 2.2 of + this Agreement, Elastic hereby grants to You, AT NO CHARGE and for so long as + you are not in breach of any provision of this Agreement, a limited, + non-exclusive, non-transferable, fully paid up royalty free right and license + to the Commercial Software in Source Code format, without the right to grant + or authorize sublicenses, to prepare Derivative Works of the Commercial + Software, provided You (i) do not hack the licensing mechanism, or otherwise + circumvent the intended limitations on the use of Elastic Software to enable + features other than Basic Features and Functions or those features You are + entitled to as part of a Subscription, and (ii) use the resulting object code + only for reasonable testing purposes. + + 2.2 Restrictions. Nothing in Section 2.1 grants You the right to (i) use the + Commercial Software Source Code other than in accordance with Section 2.1 + above, (ii) use a Derivative Work of the Commercial Software outside of a + Non-production Environment, in any production capacity, on a temporary or + permanent basis, or (iii) transfer, sell, rent, lease, distribute, sublicense, + loan or otherwise make available the Commercial Software Source Code, in whole + or in part, to any third party. Notwithstanding the foregoing, You may + maintain a copy of the repository in which the Source Code of the Commercial + Software resides and that copy may be publicly accessible, provided that you + include this Agreement with Your copy of the repository. + + 3. TERMINATION + + 3.1 Termination. This Agreement will automatically terminate, whether or not + You receive notice of such Termination from Elastic, if You breach any of its + provisions. + + 3.2 Post Termination. Upon any termination of this Agreement, for any reason, + You shall promptly cease the use of the Elastic Software in Object Code format + and cease use of the Commercial Software in Source Code format. For the + avoidance of doubt, termination of this Agreement will not affect Your right + to use Elastic Software, in either Object Code or Source Code formats, made + available under the Apache License Version 2.0. + + 3.3 Survival. Sections 1.2, 2.2. 3.3, 4 and 5 shall survive any termination or + expiration of this Agreement. + + 4. DISCLAIMER OF WARRANTIES AND LIMITATION OF LIABILITY + + 4.1 Disclaimer of Warranties. TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE + LAW, THE ELASTIC SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, + AND ELASTIC AND ITS LICENSORS MAKE NO WARRANTIES WHETHER EXPRESSED, IMPLIED OR + STATUTORY REGARDING OR RELATING TO THE ELASTIC SOFTWARE. TO THE MAXIMUM EXTENT + PERMITTED UNDER APPLICABLE LAW, ELASTIC AND ITS LICENSORS SPECIFICALLY + DISCLAIM ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE AND NON-INFRINGEMENT WITH RESPECT TO THE ELASTIC SOFTWARE, AND WITH + RESPECT TO THE USE OF THE FOREGOING. FURTHER, ELASTIC DOES NOT WARRANT RESULTS + OF USE OR THAT THE ELASTIC SOFTWARE WILL BE ERROR FREE OR THAT THE USE OF THE + ELASTIC SOFTWARE WILL BE UNINTERRUPTED. + + 4.2 Limitation of Liability. IN NO EVENT SHALL ELASTIC OR ITS LICENSORS BE + LIABLE TO YOU OR ANY THIRD PARTY FOR ANY DIRECT OR INDIRECT DAMAGES, + INCLUDING, WITHOUT LIMITATION, FOR ANY LOSS OF PROFITS, LOSS OF USE, BUSINESS + INTERRUPTION, LOSS OF DATA, COST OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY + SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OF ANY KIND, IN CONNECTION WITH + OR ARISING OUT OF THE USE OR INABILITY TO USE THE ELASTIC SOFTWARE, OR THE + PERFORMANCE OF OR FAILURE TO PERFORM THIS AGREEMENT, WHETHER ALLEGED AS A + BREACH OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, EVEN IF ELASTIC + HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 5. MISCELLANEOUS + + This Agreement completely and exclusively states the entire agreement of the + parties regarding the subject matter herein, and it supersedes, and its terms + govern, all prior proposals, agreements, or other communications between the + parties, oral or written, regarding such subject matter. This Agreement may be + modified by Elastic from time to time, and any such modifications will be + effective upon the "Posted Date" set forth at the top of the modified + Agreement. If any provision hereof is held unenforceable, this Agreement will + continue without said provision and be interpreted to reflect the original + intent of the parties. This Agreement and any non-contractual obligation + arising out of or in connection with it, is governed exclusively by Dutch law. + This Agreement shall not be governed by the 1980 UN Convention on Contracts + for the International Sale of Goods. All disputes arising out of or in + connection with this Agreement, including its existence and validity, shall be + resolved by the courts with jurisdiction in Amsterdam, The Netherlands, except + where mandatory law provides for the courts at another location in The + Netherlands to have jurisdiction. The parties hereby irrevocably waive any and + all claims and defenses either might otherwise have in any such action or + proceeding in any of such courts based upon any alleged lack of personal + jurisdiction, improper venue, forum non conveniens or any similar claim or + defense. A breach or threatened breach, by You of Section 2 may cause + irreparable harm for which damages at law may not provide adequate relief, and + therefore Elastic shall be entitled to seek injunctive relief without being + required to post a bond. You may not assign this Agreement (including by + operation of law in connection with a merger or acquisition), in whole or in + part to any third party without the prior written consent of Elastic, which + may be withheld or granted by Elastic in its sole and absolute discretion. + Any assignment in violation of the preceding sentence is void. Notices to + Elastic may also be sent to legal@elastic.co. + + 6. DEFINITIONS + + The following terms have the meanings ascribed: + + 6.1 "Affiliate" means, with respect to a party, any entity that controls, is + controlled by, or which is under common control with, such party, where + "control" means ownership of at least fifty percent (50%) of the outstanding + voting shares of the entity, or the contractual right to establish policy for, + and manage the operations of, the entity. + + 6.2 "Basic Features and Functions" means those features and functions of the + Elastic Software that are eligible for use under a Basic license, as set forth + at https://www.elastic.co/subscriptions, as may be modified by Elastic from + time to time. + + 6.3 "Commercial Software" means the Elastic Software Source Code in any file + containing a header stating the contents are subject to the Elastic License or + which is contained in the repository folder labeled "x-pack", unless a LICENSE + file present in the directory subtree declares a different license. + + 6.4 "Derivative Work of the Commercial Software" means, for purposes of this + Agreement, any modification(s) or enhancement(s) to the Commercial Software, + which represent, as a whole, an original work of authorship. + + 6.5 "License" means a limited, non-exclusive, non-transferable, fully paid up, + royalty free, right and license, without the right to grant or authorize + sublicenses, solely for Your internal business operations to (i) install and + use the applicable Features and Functions of the Elastic Software in Object + Code, and (ii) permit Contractors and Your Affiliates to use the Elastic + software as set forth in (i) above, provided that such use by Contractors must + be solely for Your benefit and/or the benefit of Your Affiliates, and You + shall be responsible for all acts and omissions of such Contractors and + Affiliates in connection with their use of the Elastic software that are + contrary to the terms and conditions of this Agreement. + + 6.6 "License Key" means a sequence of bytes, including but not limited to a + JSON blob, that is used to enable certain features and functions of the + Elastic Software. + + 6.7 "Marks and Notices" means all Elastic trademarks, trade names, logos and + notices present on the Documentation as originally provided by Elastic. + + 6.8 "Non-production Environment" means an environment for development, testing + or quality assurance, where software is not used for production purposes. + + 6.9 "Object Code" means any form resulting from mechanical transformation or + translation of Source Code form, including but not limited to compiled object + code, generated documentation, and conversions to other media types. + + 6.10 "Source Code" means the preferred form of computer software for making + modifications, including but not limited to software source code, + documentation source, and configuration files. + + 6.11 "Subscription" means the right to receive Support Services and a License + to the Commercial Software. json: elastic-license-2018.json - yml: elastic-license-2018.yml + yaml: elastic-license-2018.yml html: elastic-license-2018.html - text: elastic-license-2018.LICENSE + license: elastic-license-2018.LICENSE - license_key: elastic-license-v2 + category: Source-available spdx_license_key: Elastic-2.0 other_spdx_license_keys: - LicenseRef-scancode-elastic-license-v2 is_exception: no is_deprecated: no - category: Source-available + text: | + Elastic License 2.0 + + URL: https://www.elastic.co/licensing/elastic-license + + ## Acceptance + + By using the software, you agree to all of the terms and conditions below. + + ## Copyright License + + The licensor grants you a non-exclusive, royalty-free, worldwide, + non-sublicensable, non-transferable license to use, copy, distribute, make + available, and prepare derivative works of the software, in each case subject to + the limitations and conditions below. + + ## Limitations + + You may not provide the software to third parties as a hosted or managed + service, where the service provides users with access to any substantial set of + the features or functionality of the software. + + You may not move, change, disable, or circumvent the license key functionality + in the software, and you may not remove or obscure any functionality in the + software that is protected by the license key. + + You may not alter, remove, or obscure any licensing, copyright, or other notices + of the licensor in the software. Any use of the licensor’s trademarks is subject + to applicable law. + + ## Patents + + The licensor grants you a license, under any patent claims the licensor can + license, or becomes able to license, to make, have made, use, sell, offer for + sale, import and have imported the software, in each case subject to the + limitations and conditions in this license. This license does not cover any + patent claims that you cause to be infringed by modifications or additions to + the software. If you or your company make any written claim that the software + infringes or contributes to infringement of any patent, your patent license for + the software granted under these terms ends immediately. If your company makes + such a claim, your patent license ends immediately for work on behalf of your + company. + + ## Notices + + You must ensure that anyone who gets a copy of any part of the software from you + also gets a copy of these terms. + + If you modify the software, you must include in any modified copies of the + software prominent notices stating that you have modified the software. + + ## No Other Rights + + These terms do not imply any licenses other than those expressly granted in + these terms. + + ## Termination + + If you use the software in violation of these terms, such use is not licensed, + and your licenses will automatically terminate. If the licensor provides you + with a notice of your violation, and you cease all violation of this license no + later than 30 days after you receive that notice, your licenses will be + reinstated retroactively. However, if you violate these terms after such + reinstatement, any additional violation of these terms will cause your licenses + to terminate automatically and permanently. + + ## No Liability + + *As far as the law allows, the software comes as is, without any warranty or + condition, and the licensor will not be liable to you for any damages arising + out of these terms or the use or nature of the software, under any kind of + legal claim.* + + ## Definitions + + The **licensor** is the entity offering these terms, and the **software** is the + software the licensor makes available under these terms, including any portion + of it. + + **you** refers to the individual or entity agreeing to these terms. + + **your company** is any legal entity, sole proprietorship, or other kind of + organization that you work for, plus all organizations that have control over, + are under the control of, or are under common control with that + organization. **control** means ownership of substantially all the assets of an + entity, or the power to direct its management and policies by vote, contract, or + otherwise. Control can be direct or indirect. + + **your licenses** are all the licenses granted to you for the software under + these terms. + + **use** means anything you do with the software requiring one of your licenses. + + **trademark** means trademarks, service marks, and similar rights. json: elastic-license-v2.json - yml: elastic-license-v2.yml + yaml: elastic-license-v2.yml html: elastic-license-v2.html - text: elastic-license-v2.LICENSE + license: elastic-license-v2.LICENSE - license_key: elib-gpl + category: Copyleft spdx_license_key: LicenseRef-scancode-elib-gpl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + GNU ELIB GENERAL PUBLIC LICENSE + + The license agreements of most software companies keep you at the mercy of those companies. By contrast, our general public license is intended to give everyone the right to share GNU Elib. To make sure that you get the rights we want you to have, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. Hence this license agreement. + + Specifically, we want to make sure that you have the right to give away copies of GNU Elib, that you receive source code or else can get it if you want it, that you can change GNU Elib or use pieces of it in new free programs, and that you know you can do these things. + + To make sure that everyone has such rights, we have to forbid you to deprive anyone else of these rights. For example, if you distribute copies of GNU Elib, 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 tell them their rights. + + Also, for our own protection, we must make certain that everyone finds out that there is no warranty for GNU Elib. If GNU Elib is modified by someone else and passed on, we want its recipients to know that what they have is not what we distributed, so that any problems introduced by others will not reflect on our reputation. + + Therefore we make the following terms which say what you must do to be allowed to distribute or change GNU Elib. + COPYING POLICIES + + 1. You may copy and distribute verbatim copies of GNU Elib source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy a valid copyright notice "Copyright (C) 1992 Free Software Foundation (or with whatever year is appropriate); keep intact the notices on all files that refer to this License Agreement and to the absence of any warranty; and give any other recipients of the GNU Elib program a copy of this License Agreement along with the program. You may charge a distribution fee for the physical act of transferring a copy. + 2. You may modify your copy or copies of GNU Elib or any portion of it, and copy and distribute such modifications under the terms of Paragraph 1 above, provided that you also do the following: + * cause the modified files to carry prominent notices stating that you changed the files and the date of any change; and + * cause the whole of any work that you distribute or publish, that in whole or in part contains or is a derivative of GNU Elib or any part thereof, to be licensed at no charge to all third parties on terms identical to those contained in this License Agreement (except that you may choose to grant more extensive warranty protection to some or all third parties, at your option). + * You may charge a distribution fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + Mere aggregation of another unrelated program with this program (or its derivative) on a volume of a storage or distribution medium does not bring the other program under the scope of these terms. + 3. You may copy and distribute GNU Elib (or any portion of it in under Paragraph 2) in object code or executable form under the terms of Paragraphs 1 and 2 above provided that you also do one of the following: + * accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Paragraphs 1 and 2 above; or, + * accompany it with a written offer, valid for at least three years, to give any third party free (except for a nominal shipping charge) a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Paragraphs 1 and 2 above; or, + * accompany it with the information you received as to where the corresponding source code may be obtained. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form alone.) + For an executable file, complete source code means all the source code for all modules it contains; but, as a special exception, it need not include source code for modules which are standard libraries that accompany the operating system on which the executable file runs. + 4. You may not copy, sublicense, distribute or transfer GNU Elib except as expressly provided under this License Agreement. Any attempt otherwise to copy, sublicense, distribute or transfer GNU Elib is void and your rights to use the program under this License agreement shall be automatically terminated. However, parties who have received computer software programs from you with this License Agreement will not have their licenses terminated so long as such parties remain in full compliance. + 5. If you wish to incorporate parts of GNU Elib into other free programs whose distribution conditions are different, write to the Free Software Foundation at 675 Mass Ave, Cambridge, MA 02139. We have not yet worked out a simple rule that can be stated here, but we will often permit this. We 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. + + Your comments and suggestions about our licensing policies and our software are welcome! Please contact the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, or call (617) 876-3296. + NO WARRANTY + + BECAUSE GNU ELIB IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY NO WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING, FREE SOFTWARE FOUNDATION, INC, INGE WALLIN AND/OR OTHER PARTIES PROVIDE GNU ELIB "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 GNU ELIB IS WITH YOU. SHOULD GNU ELIB PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL INGE WALLIN, THE FREE SOFTWARE FOUNDATION, INC., AND/OR ANY OTHER PARTY WHO MAY MODIFY AND REDISTRIBUTE GNU ELIB AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY LOST PROFITS, LOST MONIES, OR OTHER SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) GNU ELIB, EVEN IF YOU HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY ANY OTHER PARTY. json: elib-gpl.json - yml: elib-gpl.yml + yaml: elib-gpl.yml html: elib-gpl.html - text: elib-gpl.LICENSE + license: elib-gpl.LICENSE - license_key: ellis-lab + category: Permissive spdx_license_key: LicenseRef-scancode-ellis-lab other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This license is a legal agreement between you and {copyright-owner} for the use + of {component} (the "Software"). By obtaining the Software you + agree to comply with the terms and conditions of this license. + + PERMITTED USE + You are permitted to use, copy, modify, and distribute the Software and its + documentation, with or without modification, for any purpose, provided that + the following conditions are met: + + 1. A copy of this license agreement must be included with the distribution. + + 2. Redistributions of source code must retain the above copyright notice in + all source code files. + + 3. Redistributions in binary form must reproduce the above copyright notice + in the documentation and/or other materials provided with the distribution. + + 4. Any files that have been modified must carry notices stating the nature + of the change and the names of those who changed them. + + 5. Products derived from the Software must include an acknowledgment that + they are derived from {component} in their documentation and/or other + materials provided with the distribution. + + 6. Products derived from the Software may not be called "{component}", + nor may "{component}" appear in their name, without prior written + permission from {copyright-owner}. + + + INDEMNITY + You agree to indemnify and hold harmless the authors of the Software and + any contributors for any direct, indirect, incidental, or consequential + third-party claims, actions or suits, as well as any related expenses, + liabilities, damages, settlements or fees arising from your use or misuse + of the Software, or a violation of any terms of this license. + + DISCLAIMER OF WARRANTY + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESSED OR + IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF QUALITY, PERFORMANCE, + NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. + + LIMITATIONS OF LIABILITY + YOU ASSUME ALL RISK ASSOCIATED WITH THE INSTALLATION AND USE OF THE SOFTWARE. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS OF THE SOFTWARE BE LIABLE + FOR CLAIMS, DAMAGES OR OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION + WITH THE SOFTWARE. LICENSE HOLDERS ARE SOLELY RESPONSIBLE FOR DETERMINING THE + APPROPRIATENESS OF USE AND ASSUME ALL RISKS ASSOCIATED WITH ITS USE, INCLUDING + BUT NOT LIMITED TO THE RISKS OF PROGRAM ERRORS, DAMAGE TO EQUIPMENT, LOSS OF + DATA OR SOFTWARE PROGRAMS, OR UNAVAILABILITY OR INTERRUPTION OF OPERATIONS. json: ellis-lab.json - yml: ellis-lab.yml + yaml: ellis-lab.yml html: ellis-lab.html - text: ellis-lab.LICENSE + license: ellis-lab.LICENSE - license_key: emit + category: Permissive spdx_license_key: LicenseRef-scancode-emit other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The Enhanced MIT License + + Introduction + + This license is exactly like the MIT License, with one exception – + Any distribution of this source code or any modification thereof in source code format, must be done under the Enhanced MIT license and not under any other licenses, such as GPL. + + The Reason + + We believe MIT license has a bug since it allows others to use it against its nature. Our belief is that the MIT license is intended to make source code available to anyone who wants to use it without additional obligations, but we have found cases where someone takes a project licensed under MIT license, adds a few lines of source code to it, and then changes the licensing to a different, more restrictive license which is against the nature and the intent of the MIT license. By doing so, the source code released under the original MIT is no longer a true “free/open” source code, thus undermining the intention of the original creator of the source code. + The concept of this Enhanced MIT license is simple and more robust – you can do what you want with this source code, exactly like any other MIT license, but if you release it again as open source (even if modified), you must release it under this Enhanced MIT license – to be clear, this is not a “viral” license, it only refers to the actual source code released under this license and not to other components interacting with it. If GPL is a viral license, this license can be described as a “robust” one as it prevents licensing changes that are against its nature and it defends its own licensing principles. The essence of the Enhanced MIT license is to prevent bullies from using open source code that is truly free and open under the MIT License and turning it into other viral and more restrictive licenses – such as GPL. + + Q: Can I build an application with it, or DLL, or any other binary distribution, and not share the source code? + A: Yes, exactly like in a regular MIT license + + Q: Can I use the EMIT license in combination with other source codes under other licenses without being forced to change the license for the other source codes? + A: Yes, this license does not require any change to other source codes, and it allows you to distribute it with other source code licensed under other licenses. + + Q: Can I add code to this license and then change the license to something else, such as GPL? Or MIT? + A: No, if you add/change the source code, the license must be kept as Enhanced MIT license. + + Official Wording of The EMIT + + The Enhanced MIT License (EMIT) + Copyright (c) 2016 Wix.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: + + 1) the above copyright notice, this permission notice and the complete introduction section above shall be included in all copies or substantial portions of the Software. + 2) when the Software is distributed as source code, the licensee is prohibited to change the license of the Software to any “viral” copyleft-type license, such as, inter alia: GPL, LGPL, EPL, MPL, etc. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. json: emit.json - yml: emit.yml + yaml: emit.yml html: emit.html - text: emit.LICENSE + license: emit.LICENSE - license_key: emx-library + category: Permissive spdx_license_key: LicenseRef-scancode-emx-library other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The emx libraries are not distributed under the GPL. Linking an + application with the emx libraries does not cause the executable + to be covered by the GNU General Public License. You are allowed + to change and copy the emx library sources if you keep the copyright + message intact. If you improve the emx libraries, please send your + enhancements to the emx author (you should copyright your + enhancements similar to the existing emx libraries). json: emx-library.json - yml: emx-library.yml + yaml: emx-library.yml html: emx-library.html - text: emx-library.LICENSE + license: emx-library.LICENSE - license_key: energyplus-bsd + category: Permissive spdx_license_key: LicenseRef-scancode-energyplus-bsd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + If you have questions about your rights to use or distribute this software, please contact Berkeley Lab's Innovation & Partnerships Office at IPO@lbl.gov. + + NOTICE: This Software was developed under funding from the U.S. Department of Energy and the U.S. Government consequently retains certain rights. As such, the U.S. Government has been granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable, worldwide license in the Software to reproduce, distribute copies to the public, prepare derivative works, and perform publicly and display publicly, and to permit others to do so. + + 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 of California, Lawrence Berkeley National Laboratory, the University of Illinois, U.S. Dept. of Energy nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + + (4) Use of EnergyPlus™ Name. If Licensee (i) distributes the software in stand-alone form without changes from the version obtained under this License, or (ii) Licensee makes a reference solely to the software portion of its product, Licensee must refer to the software as "EnergyPlus version X" software, where "X" is the version number Licensee obtained under this License and may not use a different name for the software. Except as specifically required in this Section (4), Licensee shall not use in a company name, a product name, in advertising, publicity, or other promotional activities any name, trade name, trademark, logo, or other designation of "EnergyPlus", "E+", "e+" or confusingly similar designation, without Lawrence Berkeley National Laboratory’s prior written consent + + 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. + + You are under no obligation whatsoever to provide any bug fixes, patches, or upgrades to the features, functionality or performance of the source code ("Enhancements") to anyone; however, if you choose to make your Enhancements available either publicly, or directly to Lawrence Berkeley National Laboratory, without imposing a separate written license agreement for such Enhancements, then you hereby grant the following license: a non-exclusive, royalty-free perpetual license to install, use, modify, prepare derivative works, incorporate into other computer software, distribute, and sublicense such enhancements or derivative works thereof, in binary and source code form. json: energyplus-bsd.json - yml: energyplus-bsd.yml + yaml: energyplus-bsd.yml html: energyplus-bsd.html - text: energyplus-bsd.LICENSE + license: energyplus-bsd.LICENSE - license_key: enhydra-1.1 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-enhydra-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Enhydra Public License Version 1.1 + + 1. Definitions + + This license is a union of the following two parts that should be found as text files in the same place (directory), in the order of preeminence: [1] This file itself, named EPL.html [2] The contents of the file opl.html, stating the general licensing policy of the software. + + 2. Precedence of the license parts + + In case of conflicting dispositions in the parts of this license, the terms of the lower-numbered part will always be superseded by the terms of the higher numbered part. + + 3. Lutris Technologies, Inc. is License Author + + For the purposes of this License the "License Author" defined in section 1.13 of OPL.html shall be Lutris Technologies, Inc., 1200 Pacific Ave., Santa Cruz, CA 95060. (http://www.lutris.com) + + 4. Section 11 of the OPL.html: + + 11. MISCELLANEOUS. This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California, excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in, the United States of America: (a) unless otherwise agreed in writing, all disputes relating to this License (excepting any dispute relating to intellectual property rights) shall be subject to final and binding arbitration, with the losing party paying all costs of arbitration; (b) any arbitration relating to this Agreement shall be held in San Francisco County, California, under the auspices of JAMS/EndDispute; and (c) any litigation relating to this Agreement shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in San Francisco County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The applicationof the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. + + 5. Exhibit A + + "The contents of this file are subject to the Enhydra Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License on the Enhydra web site (http://www.enhydra.org). + + Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific terms governing rights and limitations under the License. The Initial Developer of the Enhydra Application Server is Lutris Technologies, Inc. The Enhydra Application Server and portions created by Lutris Technologies, Inc. are Copyright Lutris Technologies, Inc. All Rights Reserved. + + Contributor(s): . " + + 6. Exhibit B + + Part of the software embedded in this product is Enhydra (Java[TM]/XML Application Server), a trademark of Lutris Technologies Inc. + + Portions created by Lutris are Copyright 1997-2000 Lutris Technologies (http://www.lutris.com). All Rights Reserved. + + THE SOFTWARE IN THIS PRODUCT WAS IN PART PROVIDED BY LUTRIS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + 7. Trademarks + + You shall not remove or alter any Lutris or Enhydra trademark or trade name placed in the Original Code by Lutris. All copies of the Covered Code distributed by You shall include any such Lutris and Enhydra trademarks and trade names, as well as all required notices provided for in Sections 3.5 and 3.6. Except for the foregoing obligation, You are granted no rights to reproduce or display any Lutris or Enhydra trademarks or trade names. + + 8. Section 1.10 of OPL + + The following shall be added to section 1.10: "Original Code" shall include, but is not limited to, all the files in the Java packages in coveredCode.html. + + 9. Section 3.2 of OPL 1.0 + + As used in section 3.2 of the OPL "Contact Means" shall mean the email address info@lutris.com json: enhydra-1.1.json - yml: enhydra-1.1.yml + yaml: enhydra-1.1.yml html: enhydra-1.1.html - text: enhydra-1.1.LICENSE + license: enhydra-1.1.LICENSE - license_key: enlightenment + category: Permissive spdx_license_key: MIT-advertising other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 of the Software, its documentation and marketing & publicity materials, and acknowledgment shall be given in the documentation, materials and software packages that this Software was used. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. json: enlightenment.json - yml: enlightenment.yml + yaml: enlightenment.yml html: enlightenment.html - text: enlightenment.LICENSE + license: enlightenment.LICENSE - license_key: enna + category: Permissive spdx_license_key: MIT-enna other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 of the Software and its Copyright notices. In addition publicly + documented acknowledgment must be given that this software has been used if no + source code of this software is made available publicly. This includes + acknowledgments in either Copyright notices, Manuals, Publicity and Marketing + documents or any documentation provided with any product containing this + software. This License does not apply to any software that links to the + libraries provided by this software (statically or dynamically), but only to the + software provided. + + Please see the COPYING.PLAIN for a plain-english explanation of this notice and + it's intent. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. json: enna.json - yml: enna.yml + yaml: enna.yml html: enna.html - text: enna.LICENSE + license: enna.LICENSE - license_key: entessa-1.0 + category: Permissive spdx_license_key: Entessa other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Entessa Public License Version. 1.0\n\nCopyright (c) 2003 Entessa, LLC. All rights\ + \ reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\n\ + are permitted provided that the following conditions are met:\n\n 1. Redistributions of\ + \ source code must retain the above copyright notice,\n this list of conditions and the\ + \ following disclaimer.\n\n 2. Redistributions in binary form must reproduce the above\ + \ copyright notice,\n this list of conditions and the following disclaimer in the documentation\n\ + \ and/or other materials provided with the distribution.\n \n 3. The end-user documentation\ + \ included with the redistribution, if any, must\n include the following acknowledgment:\n\ + \n \"This product includes open source software developed by openSEAL (http://www.openseal.org/).\"\ + \n\n Alternately, this acknowledgment may appear in the software itself, if and\n \ + \ wherever such third-party acknowledgments normally appear.\n\n 4. The names \"openSEAL\"\ + \ and \"Entessa\" must not be used to endorse or promote\n products derived from this\ + \ software without prior written permission. For\n written permission, please contact\ + \ epl@entessa.com.\n\n 5. Products derived from this software may not be called \"openSEAL\"\ + , nor may\n \"openSEAL\" appear in their name, without prior written permission of Entessa.\n\ + \nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\nINCLUDING,\ + \ BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR\ + \ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ENTESSA, LLC,\nOPENSEAL OR ITS CONTRIBUTORS\ + \ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL\ + \ DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\ + \ LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY\ + \ OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\ + \ OTHERWISE) ARISING\nIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\ + \ POSSIBILITY\nOF SUCH DAMAGE.\n\n============================================================\n\ + \nThis software consists of voluntary contributions made by many individuals on\nbehalf\ + \ of openSEAL and was originally based on software contributed by Entessa,\nLLC, http://www.entessa.com.\ + \ For more information on the openSEAL, please see\n." json: entessa-1.0.json - yml: entessa-1.0.yml + yaml: entessa-1.0.yml html: entessa-1.0.html - text: entessa-1.0.LICENSE + license: entessa-1.0.LICENSE - license_key: epaperpress + category: Permissive spdx_license_key: LicenseRef-scancode-epaperpress other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to reproduce portions of this document is given provided the web site + listed below is referenced. No additional restrictions apply. Source code, when + part of a software project, may be used freely without reference to the author. + + Tom Niemann + Portland, Oregon + epaperpress.com json: epaperpress.json - yml: epaperpress.yml + yaml: epaperpress.yml html: epaperpress.html - text: epaperpress.LICENSE + license: epaperpress.LICENSE - license_key: epics + category: Permissive spdx_license_key: EPICS other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Experimental Physics and Industrial Control System (EPICS) Open Source License + + EPICS Open License Terms + + The following is the text of the EPICS Open software license agreement which now applies to EPICS Base and many of the unbundled EPICS extensions and support modules. + + Copyright © . All rights reserved. + + is distributed subject to the following license conditions: + + SOFTWARE LICENSE AGREEMENT + Software: + + The "Software", below, refers to (in either source code, or binary form and accompanying documentation). Each licensee is addressed as "you" or "Licensee." + + The copyright holders shown above and their third-party licensors hereby grant Licensee a royalty-free nonexclusive license, subject to the limitations stated herein and U.S. Government license rights. + + You may modify and make a copy or copies of the Software for use within your organization, if you meet the following conditions: + + Copies in source code must include the copyright notice and this Software License Agreement. + Copies in binary form must include the copyright notice and this Software License Agreement in the documentation and/or other materials provided with the copy. + You may modify a copy or copies of the Software or any portion of it, thus forming a work based on the Software, and distribute copies of such work outside your organization, if you meet all of the following conditions: + + Copies in source code must include the copyright notice and this Software License Agreement; + Copies in binary form must include the copyright notice and this Software License Agreement in the documentation and/or other materials provided with the copy; + Modified copies and works based on the Software must carry prominent notices stating that you changed specified portions of the Software. + Portions of the Software resulted from work developed under a U.S. Government contract and are subject to the following license: the Government is granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable worldwide license in this computer software to reproduce, prepare derivative works, and perform publicly and display publicly. + + WARRANTY DISCLAIMER. THE SOFTWARE IS SUPPLIED "AS IS" WITHOUT WARRANTY OF ANY KIND. THE COPYRIGHT HOLDERS, THEIR THIRD PARTY LICENSORS, THE UNITED STATES, THE UNITED STATES DEPARTMENT OF ENERGY, AND THEIR EMPLOYEES: (1) DISCLAIM ANY WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE OR NON-INFRINGEMENT, (2) DO NOT ASSUME ANY LEGAL LIABILITY OR RESPONSIBILITY FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF THE SOFTWARE, (3) DO NOT REPRESENT THAT USE OF THE SOFTWARE WOULD NOT INFRINGE PRIVATELY OWNED RIGHTS, (4) DO NOT WARRANT THAT THE SOFTWARE WILL FUNCTION UNINTERRUPTED, THAT IT IS ERROR-FREE OR THAT ANY ERRORS WILL BE CORRECTED. + + LIMITATION OF LIABILITY. IN NO EVENT WILL THE COPYRIGHT HOLDERS, THEIR THIRD PARTY LICENSORS, THE UNITED STATES, THE UNITED STATES DEPARTMENT OF ENERGY, OR THEIR EMPLOYEES: BE LIABLE FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL OR PUNITIVE DAMAGES OF ANY KIND OR NATURE, INCLUDING BUT NOT LIMITED TO LOSS OF PROFITS OR LOSS OF DATA, FOR ANY REASON WHATSOEVER, WHETHER SUCH LIABILITY IS ASSERTED ON THE BASIS OF CONTRACT, TORT (INCLUDING NEGLIGENCE OR STRICT LIABILITY), OR OTHERWISE, EVEN IF ANY OF SAID PARTIES HAS BEEN WARNED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGES. json: epics.json - yml: epics.yml + yaml: epics.yml html: epics.html - text: epics.LICENSE + license: epics.LICENSE - license_key: epl-1.0 + category: Copyleft Limited spdx_license_key: EPL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Eclipse Public License - v 1.0 + + THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + + 1. DEFINITIONS + + "Contribution" means: + + a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and + b) in the case of each subsequent Contributor: + + i) changes to the Program, and + + ii) additions to the Program; + + where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. + + "Contributor" means any person or entity that distributes the Program. + + "Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. + + "Program" means the Contributions distributed in accordance with this Agreement. + + "Recipient" means anyone who receives the Program under this Agreement, including all Contributors. + + 2. GRANT OF RIGHTS + + a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. + + b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. + + c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. + + d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. + + 3. REQUIREMENTS + + A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: + + a) it complies with the terms and conditions of this Agreement; and + + b) its license agreement: + + i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; + + ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; + + iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and + + iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. + + When the Program is made available in source code form: + + a) it must be made available under this Agreement; and + + b) a copy of this Agreement must be included with each copy of the Program. + + Contributors may not remove or alter any copyright notices contained within the Program. + + Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. + + 4. COMMERCIAL DISTRIBUTION + + Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. + + For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. + + 5. NO WARRANTY + + EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED 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. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. + + 6. DISCLAIMER OF LIABILITY + + EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. GENERAL + + If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + + If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. + + All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. + + Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. + + This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. json: epl-1.0.json - yml: epl-1.0.yml + yaml: epl-1.0.yml html: epl-1.0.html - text: epl-1.0.LICENSE + license: epl-1.0.LICENSE - license_key: epl-2.0 + category: Copyleft Limited spdx_license_key: EPL-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Eclipse Public License - v 2.0 + + THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE + PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION + OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + + 1. DEFINITIONS + + "Contribution" means: + + a) in the case of the initial Contributor, the initial content + Distributed under this Agreement, and + + b) in the case of each subsequent Contributor: + i) changes to the Program, and + ii) additions to the Program; + where such changes and/or additions to the Program originate from + and are Distributed by that particular Contributor. A Contribution + "originates" from a Contributor if it was added to the Program by + such Contributor itself or anyone acting on such Contributor's behalf. + Contributions do not include changes or additions to the Program that + are not Modified Works. + + "Contributor" means any person or entity that Distributes the Program. + + "Licensed Patents" mean patent claims licensable by a Contributor which + are necessarily infringed by the use or sale of its Contribution alone + or when combined with the Program. + + "Program" means the Contributions Distributed in accordance with this + Agreement. + + "Recipient" means anyone who receives the Program under this Agreement + or any Secondary License (as applicable), including Contributors. + + "Derivative Works" shall mean any work, whether in Source Code or other + form, that is based on (or derived from) the Program and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. + + "Modified Works" shall mean any work in Source Code or other form that + results from an addition to, deletion from, or modification of the + contents of the Program, including, for purposes of clarity any new file + in Source Code form that contains any contents of the Program. Modified + Works shall not include works that contain only declarations, + interfaces, types, classes, structures, or files of the Program solely + in each case in order to link to, bind by name, or subclass the Program + or Modified Works thereof. + + "Distribute" means the acts of a) distributing or b) making available + in any manner that enables the transfer of a copy. + + "Source Code" means the form of a Program preferred for making + modifications, including but not limited to software source code, + documentation source, and configuration files. + + "Secondary License" means either the GNU General Public License, + Version 2.0, or any later versions of that license, including any + exceptions or additional permissions as identified by the initial + Contributor. + + 2. GRANT OF RIGHTS + + a) Subject to the terms of this Agreement, each Contributor hereby + grants Recipient a non-exclusive, worldwide, royalty-free copyright + license to reproduce, prepare Derivative Works of, publicly display, + publicly perform, Distribute and sublicense the Contribution of such + Contributor, if any, and such Derivative Works. + + b) Subject to the terms of this Agreement, each Contributor hereby + grants Recipient a non-exclusive, worldwide, royalty-free patent + license under Licensed Patents to make, use, sell, offer to sell, + import and otherwise transfer the Contribution of such Contributor, + if any, in Source Code or other form. This patent license shall + apply to the combination of the Contribution and the Program if, at + the time the Contribution is added by the Contributor, such addition + of the Contribution causes such combination to be covered by the + Licensed Patents. The patent license shall not apply to any other + combinations which include the Contribution. No hardware per se is + licensed hereunder. + + c) Recipient understands that although each Contributor grants the + licenses to its Contributions set forth herein, no assurances are + provided by any Contributor that the Program does not infringe the + patent or other intellectual property rights of any other entity. + Each Contributor disclaims any liability to Recipient for claims + brought by any other entity based on infringement of intellectual + property rights or otherwise. As a condition to exercising the + rights and licenses granted hereunder, each Recipient hereby + assumes sole responsibility to secure any other intellectual + property rights needed, if any. For example, if a third party + patent license is required to allow Recipient to Distribute the + Program, it is Recipient's responsibility to acquire that license + before distributing the Program. + + d) Each Contributor represents that to its knowledge it has + sufficient copyright rights in its Contribution, if any, to grant + the copyright license set forth in this Agreement. + + e) Notwithstanding the terms of any Secondary License, no + Contributor makes additional grants to any Recipient (other than + those set forth in this Agreement) as a result of such Recipient's + receipt of the Program under the terms of a Secondary License + (if permitted under the terms of Section 3). + + 3. REQUIREMENTS + + 3.1 If a Contributor Distributes the Program in any form, then: + + a) the Program must also be made available as Source Code, in + accordance with section 3.2, and the Contributor must accompany + the Program with a statement that the Source Code for the Program + is available under this Agreement, and informs Recipients how to + obtain it in a reasonable manner on or through a medium customarily + used for software exchange; and + + b) the Contributor may Distribute the Program under a license + different than this Agreement, provided that such license: + i) effectively disclaims on behalf of all other Contributors all + warranties and conditions, express and implied, including + warranties or conditions of title and non-infringement, and + implied warranties or conditions of merchantability and fitness + for a particular purpose; + + ii) effectively excludes on behalf of all other Contributors all + liability for damages, including direct, indirect, special, + incidental and consequential damages, such as lost profits; + + iii) does not attempt to limit or alter the recipients' rights + in the Source Code under section 3.2; and + + iv) requires any subsequent distribution of the Program by any + party to be under a license that satisfies the requirements + of this section 3. + + 3.2 When the Program is Distributed as Source Code: + + a) it must be made available under this Agreement, or if the + Program (i) is combined with other material in a separate file or + files made available under a Secondary License, and (ii) the initial + Contributor attached to the Source Code the notice described in + Exhibit A of this Agreement, then the Program may be made available + under the terms of such Secondary Licenses, and + + b) a copy of this Agreement must be included with each copy of + the Program. + + 3.3 Contributors may not remove or alter any copyright, patent, + trademark, attribution notices, disclaimers of warranty, or limitations + of liability ("notices") contained within the Program from any copy of + the Program which they Distribute, provided that Contributors may add + their own appropriate notices. + + 4. COMMERCIAL DISTRIBUTION + + Commercial distributors of software may accept certain responsibilities + with respect to end users, business partners and the like. While this + license is intended to facilitate the commercial use of the Program, + the Contributor who includes the Program in a commercial product + offering should do so in a manner which does not create potential + liability for other Contributors. Therefore, if a Contributor includes + the Program in a commercial product offering, such Contributor + ("Commercial Contributor") hereby agrees to defend and indemnify every + other Contributor ("Indemnified Contributor") against any losses, + damages and costs (collectively "Losses") arising from claims, lawsuits + and other legal actions brought by a third party against the Indemnified + Contributor to the extent caused by the acts or omissions of such + Commercial Contributor in connection with its distribution of the Program + in a commercial product offering. The obligations in this section do not + apply to any claims or Losses relating to any actual or alleged + intellectual property infringement. In order to qualify, an Indemnified + Contributor must: a) promptly notify the Commercial Contributor in + writing of such claim, and b) allow the Commercial Contributor to control, + and cooperate with the Commercial Contributor in, the defense and any + related settlement negotiations. The Indemnified Contributor may + participate in any such claim at its own expense. + + For example, a Contributor might include the Program in a commercial + product offering, Product X. That Contributor is then a Commercial + Contributor. If that Commercial Contributor then makes performance + claims, or offers warranties related to Product X, those performance + claims and warranties are such Commercial Contributor's responsibility + alone. Under this section, the Commercial Contributor would have to + defend claims against the other Contributors related to those performance + claims and warranties, and if a court requires any other Contributor to + pay any damages as a result, the Commercial Contributor must pay + those damages. + + 5. NO WARRANTY + + EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT + PERMITTED BY APPLICABLE LAW, THE PROGRAM IS PROVIDED 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. Each Recipient is solely responsible for determining the + appropriateness of using and distributing the Program and assumes all + risks associated with its exercise of rights under this Agreement, + including but not limited to the risks and costs of program errors, + compliance with applicable laws, damage to or loss of data, programs + or equipment, and unavailability or interruption of operations. + + 6. DISCLAIMER OF LIABILITY + + EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT + PERMITTED BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS + SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST + PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE + EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGES. + + 7. GENERAL + + If any provision of this Agreement is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability of + the remainder of the terms of this Agreement, and without further + action by the parties hereto, such provision shall be reformed to the + minimum extent necessary to make such provision valid and enforceable. + + If Recipient institutes patent litigation against any entity + (including a cross-claim or counterclaim in a lawsuit) alleging that the + Program itself (excluding combinations of the Program with other software + or hardware) infringes such Recipient's patent(s), then such Recipient's + rights granted under Section 2(b) shall terminate as of the date such + litigation is filed. + + All Recipient's rights under this Agreement shall terminate if it + fails to comply with any of the material terms or conditions of this + Agreement and does not cure such failure in a reasonable period of + time after becoming aware of such noncompliance. If all Recipient's + rights under this Agreement terminate, Recipient agrees to cease use + and distribution of the Program as soon as reasonably practicable. + However, Recipient's obligations under this Agreement and any licenses + granted by Recipient relating to the Program shall continue and survive. + + Everyone is permitted to copy and distribute copies of this Agreement, + but in order to avoid inconsistency the Agreement is copyrighted and + may only be modified in the following manner. The Agreement Steward + reserves the right to publish new versions (including revisions) of + this Agreement from time to time. No one other than the Agreement + Steward has the right to modify this Agreement. The Eclipse Foundation + is the initial Agreement Steward. The Eclipse Foundation may assign the + responsibility to serve as the Agreement Steward to a suitable separate + entity. Each new version of the Agreement will be given a distinguishing + version number. The Program (including Contributions) may always be + Distributed subject to the version of the Agreement under which it was + received. In addition, after a new version of the Agreement is published, + Contributor may elect to Distribute the Program (including its + Contributions) under the new version. + + Except as expressly stated in Sections 2(a) and 2(b) above, Recipient + receives no rights or licenses to the intellectual property of any + Contributor under this Agreement, whether expressly, by implication, + estoppel or otherwise. All rights in the Program not expressly granted + under this Agreement are reserved. Nothing in this Agreement is intended + to be enforceable by any entity that is not a Contributor or Recipient. + No third-party beneficiary rights are created under this Agreement. + + Exhibit A - Form of Secondary Licenses Notice + + "This Source Code is also Distributed under one + or more Secondary Licenses, as those terms are defined by + the Eclipse Public License, v. 2.0: {name license(s),version(s), + and exceptions or additional permissions here}." + + Simply including a copy of this Agreement, including this Exhibit A + is not sufficient to license the Source Code under Secondary Licenses. + + If it is not possible or desirable to put the notice in a particular + file, then You may include the notice in a location (such as a LICENSE + file in a relevant directory) where a recipient would be likely to + look for such a notice. + + You may add additional accurate notices of copyright ownership. json: epl-2.0.json - yml: epl-2.0.yml + yaml: epl-2.0.yml html: epl-2.0.html - text: epl-2.0.LICENSE + license: epl-2.0.LICENSE - license_key: epo-osl-2005.1 + category: Copyleft spdx_license_key: LicenseRef-scancode-epo-osl-2005.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + European Patent Organisation Open Source Licence No. 2005/1 + + This Licence 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 Licence. 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 Licence; they are outside its scope. + + 1. Licence + + 1.1 You may install, use, reproduce, display, modify and redistribute the Program or work based on the Program in source and binary forms subject to the following conditions: + + (a) 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 Licence and to the absence of any warranty; and give any other recipients of the Program or work based on the Program a copy of this Licence along with the Program or work based on the Program. + (b) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + (c) 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 Licence. + (d) 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 Licence. (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. + + (e) If you copy or distribute the Program (or a work based on it) in any form including object code or executable form, you must: + (i) Accompany it with the complete corresponding machine-readable source code and the full comments, which must be distributed under the terms of sections (a) to (d) above on a medium customarily used for software interchange; or, + (ii) 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 (a) to (d) above on a medium customarily used for software interchange. + + 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. + 1.2 You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this Licence. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this Licence. However, parties who have received copies, or rights, from you under this Licence will not have their licenses terminated so long as such parties remain in full compliance. + + 2. No Warranty, disclaimer of liability + + 2.1 The Program or work based on the Program is provided free of charge AS IS. + + NO REPRESENTATION OR WARRANTIES OF ANY KIND EITHER EXPRESS OR IMPLIED ARE GIVEN. IN PARTICULAR, BUT WITHOUT LIMITATION, NO WARRANTY IS PROVIDED IN RESPECT OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE OR TO THE EFFECT THAT THE PROGRAM OR WORK BASED ON THE PROGRAM IS FREE OF DEFECTS, OR NOT SUBJECT TO THE RIGHTS OF THIRD PARTIES, IN PARTICULAR PATENTS OR COPYRIGHTS. + 2.2 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 OR WORK BASED ON 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. + + 3. Applicable Law and Arbitration + + This Agreement shall be subject to German law. Any dispute arising out of or in connection with this Agreement shall be settled finally by a three-person arbitration panel administered under the WIPO Arbitration Rules in Geneva using English as the procedural language. + + 4. General + + 4.1 Should any provision of this Licence be or become invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Licence, and the respective provision shall be replaced by a valid provision coming closest to achieving the purpose and meaning of the invalid clause. + 4.2 The European Patent Organisation reserves the right to publish new versions of this Licence from time to time. The Program and work based on the Program may always be distributed subject to the version of the Licence under which it was received. json: epo-osl-2005.1.json - yml: epo-osl-2005.1.yml + yaml: epo-osl-2005.1.yml html: epo-osl-2005.1.html - text: epo-osl-2005.1.LICENSE + license: epo-osl-2005.1.LICENSE - license_key: eric-glass + category: Permissive spdx_license_key: LicenseRef-scancode-eric-glass other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this document for any purpose + and without any fee is hereby granted, provided that the above copyright notice + and this list of conditions appear in all copies. json: eric-glass.json - yml: eric-glass.yml + yaml: eric-glass.yml html: eric-glass.html - text: eric-glass.LICENSE + license: eric-glass.LICENSE - license_key: erlangpl-1.1 + category: Copyleft spdx_license_key: ErlPL-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "ERLANG PUBLIC LICENSE\nVersion 1.1\n\n1. Definitions.\n\n1.1. ``Contributor'' means\ + \ each entity that creates or contributes to\nthe creation of Modifications.\n\n1.2. ``Contributor\ + \ Version'' means the combination of the Original\nCode, prior Modifications used by a Contributor,\ + \ and the Modifications\nmade by that particular Contributor.\n\n1.3. ``Covered Code'' means\ + \ the Original Code or Modifications or the\ncombination of the Original Code and Modifications,\ + \ in each case\nincluding portions thereof.\n\n1.4. ``Electronic Distribution Mechanism''\ + \ means a mechanism generally\naccepted in the software development community for the electronic\n\ + transfer of data.\n\n1.5. ``Executable'' means Covered Code in any form other than Source\n\ + Code.\n\n1.6. ``Initial Developer'' means the individual or entity identified\nas the Initial\ + \ Developer in the Source Code notice required by Exhibit\nA.\n\n1.7. ``Larger Work'' means\ + \ a work which combines Covered Code or\nportions thereof with code not governed by the\ + \ terms of this License.\n\n1.8. ``License'' means this document.\n\n1.9. ``Modifications''\ + \ means any addition to or deletion from the\nsubstance or structure of either the Original\ + \ Code or any previous\nModifications. When Covered Code is released as a series of files,\ + \ a\nModification is:\n\nA. Any addition to or deletion from the contents of a file containing\n\ + \ Original Code or previous Modifications. \n\nB. Any new file that contains any part\ + \ of the Original Code or\n previous Modifications. \n\n1.10. ``Original Code'' means\ + \ Source Code of computer software code\nwhich is described in the Source Code notice required\ + \ by Exhibit A as\nOriginal Code, and which, at the time of its release under this\nLicense\ + \ is not already Covered Code governed by this License.\n\n1.11. ``Source Code'' means the\ + \ preferred form of the Covered Code for\nmaking modifications to it, including all modules\ + \ it contains, plus\nany associated interface definition files, scripts used to control\n\ + compilation and installation of an Executable, or a list of source\ncode differential comparisons\ + \ against either the Original Code or\nanother well known, available Covered Code of the\ + \ Contributor's\nchoice. The Source Code can be in a compressed or archival form,\nprovided\ + \ the appropriate decompression or de-archiving software is\nwidely available for no charge.\n\ + \n1.12. ``You'' means an individual or a legal entity exercising rights\nunder, and complying\ + \ with all of the terms of, this License. For legal\nentities,``You'' includes any entity\ + \ which controls, is controlled by,\nor is under common control with You. For purposes of\ + \ this definition,\n``control'' means (a) the power, direct or indirect, to cause the\n\ + direction or management of such entity, whether by contract or\notherwise, or (b) ownership\ + \ of fifty percent (50%) or more of the\noutstanding shares or beneficial ownership of such\ + \ entity.\n\n2. Source Code License.\n\n2.1. The Initial Developer Grant.\nThe Initial Developer\ + \ hereby grants You a world-wide, royalty-free,\nnon-exclusive license, subject to third\ + \ party intellectual property\nclaims:\n\n(a) to use, reproduce, modify, display, perform,\ + \ sublicense and\n distribute the Original Code (or portions thereof) with or without\n\ + \ Modifications, or as part of a Larger Work; and \n\n(b) under patents now or hereafter\ + \ owned or controlled by Initial\n Developer, to make, have made, use and sell (``Utilize'')\ + \ the\n Original Code (or portions thereof), but solely to the extent that\n any such\ + \ patent is reasonably necessary to enable You to Utilize\n the Original Code (or portions\ + \ thereof) and not to any greater\n extent that may be necessary to Utilize further Modifications\ + \ or\n combinations. \n\n2.2. Contributor Grant.\nEach Contributor hereby grants You\ + \ a world-wide, royalty-free,\nnon-exclusive license, subject to third party intellectual\ + \ property\nclaims:\n\n(a) to use, reproduce, modify, display, perform, sublicense and\n\ + \ distribute the Modifications created by such Contributor (or\n portions thereof)\ + \ either on an unmodified basis, with other\n Modifications, as Covered Code or as part\ + \ of a Larger Work; and \n\n(b) under patents now or hereafter owned or controlled by Contributor,\n\ + \ to Utilize the Contributor Version (or portions thereof), but\n solely to the extent\ + \ that any such patent is reasonably necessary\n to enable You to Utilize the Contributor\ + \ Version (or portions\n thereof), and not to any greater extent that may be necessary\ + \ to\n Utilize further Modifications or combinations. \n\n3. Distribution Obligations.\n\ + \n3.1. Application of License.\nThe Modifications which You contribute are governed by the\ + \ terms of\nthis License, including without limitation Section 2.2. The Source\nCode version\ + \ of Covered Code may be distributed only under the terms\nof this License, and You must\ + \ include a copy of this License with\nevery copy of the Source Code You distribute. You\ + \ may not offer or\nimpose any terms on any Source Code version that alters or restricts\n\ + the applicable version of this License or the recipients' rights\nhereunder. However, You\ + \ may include an additional document offering\nthe additional rights described in Section\ + \ 3.5. \n\n3.2. Availability of Source Code.\nAny Modification which You contribute must\ + \ be made available in Source\nCode form under the terms of this License either on the same\ + \ media as\nan Executable version or via an accepted Electronic Distribution\nMechanism\ + \ to anyone to whom you made an Executable version available;\nand if made available via\ + \ Electronic Distribution Mechanism, must\nremain available for at least twelve (12) months\ + \ after the date it\ninitially became available, or at least six (6) months after a\nsubsequent\ + \ version of that particular Modification has been made\navailable to such recipients. You\ + \ are responsible for ensuring that\nthe Source Code version remains available even if the\ + \ Electronic\nDistribution Mechanism is maintained by a third party.\n\n3.3. Description\ + \ of Modifications.\nYou must cause all Covered Code to which you contribute to contain\ + \ a\nfile documenting the changes You made to create that Covered Code and\nthe date of\ + \ any change. You must include a prominent statement that\nthe Modification is derived,\ + \ directly or indirectly, from Original\nCode provided by the Initial Developer and including\ + \ the name of the\nInitial Developer in (a) the Source Code, and (b) in any notice in an\n\ + Executable version or related documentation in which You describe the\norigin or ownership\ + \ of the Covered Code.\n\n3.4. Intellectual Property Matters\n\n(a) Third Party Claims.\n\ + \ If You have knowledge that a party claims an intellectual property\n right in particular\ + \ functionality or code (or its utilization\n under this License), you must include a\ + \ text file with the source\n code distribution titled ``LEGAL'' which describes the\ + \ claim and\n the party making the claim in sufficient detail that a recipient\n will\ + \ know whom to contact. If you obtain such knowledge after You\n make Your Modification\ + \ available as described in Section 3.2, You\n shall promptly modify the LEGAL file in\ + \ all copies You make\n available thereafter and shall take other steps (such as notifying\n\ + \ appropriate mailing lists or newsgroups) reasonably calculated to\n inform those\ + \ who received the Covered Code that new knowledge has\n been obtained. \n\n(b) Contributor\ + \ APIs.\n If Your Modification is an application programming interface and\n You own\ + \ or control patents which are reasonably necessary to\n implement that API, you must\ + \ also include this information in the\n LEGAL file. \n\n3.5. Required Notices.\nYou\ + \ must duplicate the notice in Exhibit A in each file of the Source\nCode, and this License\ + \ in any documentation for the Source Code, where\nYou describe recipients' rights relating\ + \ to Covered Code. If You\ncreated one or more Modification(s), You may add your name as\ + \ a\nContributor to the notice described in Exhibit A. If it is not\npossible to put such\ + \ notice in a particular Source Code file due to\nits structure, then you must include such\ + \ notice in a location (such\nas a relevant directory file) where a user would be likely\ + \ to look for\nsuch a notice. You may choose to offer, and to charge a fee for,\nwarranty,\ + \ support, indemnity or liability obligations to one or more\nrecipients of Covered Code.\ + \ However, You may do so only on Your own\nbehalf, and not on behalf of the Initial Developer\ + \ or any\nContributor. You must make it absolutely clear than any such warranty,\nsupport,\ + \ indemnity or liability obligation is offered by You alone,\nand You hereby agree to indemnify\ + \ the Initial Developer and every\nContributor for any liability incurred by the Initial\ + \ Developer or\nsuch Contributor as a result of warranty, support, indemnity or\nliability\ + \ terms You offer.\n\n3.6. Distribution of Executable Versions.\nYou may distribute Covered\ + \ Code in Executable form only if the\nrequirements of Section 3.1-3.5 have been met for\ + \ that Covered Code,\nand if You include a notice stating that the Source Code version of\n\ + the Covered Code is available under the terms of this License,\nincluding a description\ + \ of how and where You have fulfilled the\nobligations of Section 3.2. The notice must be\ + \ conspicuously included\nin any notice in an Executable version, related documentation\ + \ or\ncollateral in which You describe recipients' rights relating to the\nCovered Code.\ + \ You may distribute the Executable version of Covered\nCode under a license of Your choice,\ + \ which may contain terms different\nfrom this License, provided that You are in compliance\ + \ with the terms\nof this License and that the license for the Executable version does\n\ + not attempt to limit or alter the recipient's rights in the Source\nCode version from the\ + \ rights set forth in this License. If You\ndistribute the Executable version under a different\ + \ license You must\nmake it absolutely clear that any terms which differ from this License\n\ + are offered by You alone, not by the Initial Developer or any\nContributor. You hereby agree\ + \ to indemnify the Initial Developer and\nevery Contributor for any liability incurred by\ + \ the Initial Developer\nor such Contributor as a result of any such terms You offer.\n\n\ + 3.7. Larger Works.\nYou may create a Larger Work by combining Covered Code with other code\n\ + not governed by the terms of this License and distribute the Larger\nWork as a single product.\ + \ In such a case, You must make sure the\nrequirements of this License are fulfilled for\ + \ the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\nIf it is impossible\ + \ for You to comply with any of the terms of this\nLicense with respect to some or all of\ + \ the Covered Code due to statute\nor regulation then You must: (a) comply with the terms\ + \ of this License\nto the maximum extent possible; and (b) describe the limitations and\n\ + the code they affect. Such description must be included in the LEGAL\nfile described in\ + \ Section 3.4 and must be included with all\ndistributions of the Source Code. Except to\ + \ the extent prohibited by\nstatute or regulation, such description must be sufficiently\ + \ detailed\nfor a recipient of ordinary skill to be able to understand it.\n\n5. Application\ + \ of this License.\n\nThis License applies to code to which the Initial Developer has\n\ + attached the notice in Exhibit A, and to related Covered Code.\n\n6. CONNECTION TO MOZILLA\ + \ PUBLIC LICENSE\n\nThis Erlang License is a derivative work of the Mozilla Public\nLicense,\ + \ Version 1.0. It contains terms which differ from the Mozilla\nPublic License, Version\ + \ 1.0.\n\n7. DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN\ + \ ``AS IS'' BASIS,\nWITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\n\ + WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF\nDEFECTS, MERCHANTABLE,\ + \ FIT FOR A PARTICULAR PURPOSE OR\nNON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND\ + \ PERFORMANCE OF\nTHE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE\n\ + IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER\nCONTRIBUTOR) ASSUME THE COST\ + \ OF ANY NECESSARY SERVICING, REPAIR OR\nCORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES\ + \ AN ESSENTIAL PART\nOF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER\n\ + EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\nThis License and the rights granted hereunder\ + \ will terminate\nautomatically if You fail to comply with terms herein and fail to cure\n\ + such breach within 30 days of becoming aware of the breach. All\nsublicenses to the Covered\ + \ Code which are properly granted shall\nsurvive any termination of this License. Provisions\ + \ which, by their\nnature, must remain in effect beyond the termination of this License\n\ + shall survive.\n\n9. DISCLAIMER OF LIABILITY\nAny utilization of Covered Code shall not\ + \ cause the Initial Developer\nor any Contributor to be liable for any damages (neither\ + \ direct nor\nindirect).\n\n10. MISCELLANEOUS\nThis License represents the complete agreement\ + \ concerning the subject\nmatter hereof. If any provision is held to be unenforceable, such\n\ + provision shall be reformed only to the extent necessary to make it\nenforceable. This License\ + \ shall be construed by and in accordance with\nthe substantive laws of Sweden. Any dispute,\ + \ controversy or claim\narising out of or relating to this License, or the breach, termination\n\ + or invalidity thereof, shall be subject to the exclusive jurisdiction\nof Swedish courts,\ + \ with the Stockholm City Court as the first\ninstance.\n\t\nEXHIBIT A.\n\n``The contents\ + \ of this file are subject to the Erlang Public License,\nVersion 1.1, (the \"License\"\ + ); you may not use this file except in\ncompliance with the License. You should have received\ + \ a copy of the\nErlang Public License along with this software. If not, it can be\nretrieved\ + \ via the world wide web at http://www.erlang.org/.\n\nSoftware distributed under the License\ + \ is distributed on an \"AS IS\"\nbasis, WITHOUT WARRANTY OF ANY KIND, either express or\ + \ implied. See\nthe License for the specific language governing rights and limitations\n\ + under the License.\n\nThe Initial Developer of the Original Code is Ericsson Utvecklings\ + \ AB.\nPortions created by Ericsson are Copyright 1999, Ericsson Utvecklings\nAB. All Rights\ + \ Reserved.''" json: erlangpl-1.1.json - yml: erlangpl-1.1.yml + yaml: erlangpl-1.1.yml html: erlangpl-1.1.html - text: erlangpl-1.1.LICENSE + license: erlangpl-1.1.LICENSE - license_key: errbot-exception + category: Permissive spdx_license_key: LicenseRef-scancode-errbot-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Permissive + text: | + As a special exception, the copyright holders of Errbot hereby grant permission + for plug-ins, scripts or add-ons not bundled or distributed as part + of Errbot itself and potentially licensed under a different license, to be + used with Errbot, provided that you also meet the terms and conditions of the + licenses of those plug-ins, scripts or add-ons. json: errbot-exception.json - yml: errbot-exception.yml + yaml: errbot-exception.yml html: errbot-exception.html - text: errbot-exception.LICENSE + license: errbot-exception.LICENSE - license_key: esri + category: Commercial spdx_license_key: LicenseRef-scancode-esri other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "IMPORTANT—READ CAREFULLY\n \nUnless superseded by a signed license agreement between\ + \ you and Esri, Esri is willing to license Products to you only if you accept all terms\ + \ and conditions contained in this License Agreement. Please read the terms and conditions\ + \ carefully. You may not use the Products until you have agreed to the terms and conditions\ + \ of the License Agreement. If you do not agree to the terms and conditions as stated, click\ + \ \"I do not accept the license agreement\" below; you may then request a refund of applicable\ + \ fees paid.\n \nLICENSE AGREEMENT\n(E204 06/13/2014)\n \nThis License Agreement is between\ + \ you (\"Licensee\") and Environmental Systems Research Institute, Inc. (\"Esri\"), a California\ + \ corporation with a place of business at 380 New York Street, Redlands, California 92373-8100\ + \ USA.\n \nGENERAL LICENSE TERMS AND CONDITIONS\n \nARTICLE 1—DEFINITIONS\n \nDefinitions.\ + \ The terms used are defined as follows:\n \na. \"Authorization Code(s)\" means any\ + \ key, authorization number, enablement code, login credential, activation code, token,\ + \ account user name and password, or other mechanism required for use of a Product.\nb.\ + \ \"Beta\" means any alpha, beta, or prerelease Product.\nc. \"Commercial Application\ + \ Service Provider Use\" or \"Commercial ASP Use\" means generating revenue by providing\ + \ access to Software or Online Services through a Value-Added Application, for example,\ + \ by charging a subscription fee, service fee, or any other form of transaction fee or by\ + \ generating more than incidental advertising revenue.\nd. \"Content\" has the meaning\ + \ provided in Addendum 3.\ne. \"Data\" means any Esri or third-party digital dataset(s)\ + \ including, but not limited to, geographic vector data, raster data reports, or associated\ + \ tabular attributes, whether bundled with Software and Online Services or delivered independently.\n\ + f. \"Deployment License\" means a license that allows Licensee to sublicense select\ + \ Software and associated Authorization Codes to third parties.\ng. \"Documentation\"\ + \ means all user reference documentation that is delivered with the Software.\nh. \"\ + Online Services\" means any Internet-based geospatial system, including applications and\ + \ associated APIs, but excluding Data or Content, hosted by Esri or its licensors, for storing,\ + \ managing, publishing, and using maps, data, and other information.\ni. \"Ordering\ + \ Document(s)\" means a sales quotation, purchase order, or other document identifying the\ + \ Products that Licensee orders.\nj. \"Perpetual License\" means a license to use a\ + \ version of a Product for which applicable license fees have been paid, indefinitely, unless\ + \ terminated by Esri or Licensee as authorized under this Agreement.\nk. \"Product(s)\"\ + \ means Software, Data, Online Services, and Documentation licensed under the terms of this\ + \ License Agreement.\nl. \"Sample(s)\" means sample code, sample applications, add-ons,\ + \ or sample extensions of Products.\nm. \"Service Credit(s)\" means a unit of exchange\ + \ that is allocated with an Online Services subscription in an amount specified in the Ordering\ + \ Document. Each Service Credit entitles Licensee to consume a set amount of Online Services,\ + \ the amount varying depending on the Online Services being consumed. As Online Services\ + \ are consumed, Service Credits are automatically debited from Licensee's account, up to\ + \ the maximum number of Service Credits available. Additional Service Credits can be purchased\ + \ as described in Addendum 3 (also available at http://www.esri.com/legal).\nn. \"Software\"\ + \ means all or any portion of Esri's proprietary software technology, excluding Data, accessed\ + \ or downloaded from an Esri-authorized website or delivered on any media in any format\ + \ including backups, updates, service packs, patches, hot fixes, or permitted merged copies.\n\ + o. \"Term License\" means a license or access provided for use of a Product for a limited\ + \ time period (\"Term\") or on a subscription or transaction basis.\np. \"Value-Added\ + \ Application\" means an application developed by Licensee for use in conjunction with the\ + \ authorized use of any Software, Data, or Online Services.\n \nARTICLE 2—INTELLECTUAL PROPERTY\ + \ RIGHTS AND RESERVATION OF OWNERSHIP\n \nProducts are licensed, not sold. Esri and its\ + \ licensors own Products and all copies, which are protected by United States and applicable\ + \ international laws, treaties, and conventions regarding intellectual property and proprietary\ + \ rights including trade secrets. Licensee agrees to use reasonable means to protect Products\ + \ from unauthorized use, reproduction, distribution, or publication. Esri and its third-party\ + \ licensors reserve all rights not specifically granted in this License Agreement including\ + \ the right to change and improve Products.\n \nARTICLE 3—GRANT OF LICENSE\n \n3.1 Grant\ + \ of License. Esri grants to Licensee a personal, nonexclusive, nontransferable license\ + \ solely to use the Products as set forth in the applicable Ordering Documents (i) for which\ + \ the applicable license fees have been paid; (ii) in accordance with this License Agreement\ + \ and the configuration ordered by Licensee or as authorized by Esri or its authorized distributor;\ + \ and (iii) for the applicable Term or, if no Term is applicable or identified, until terminated\ + \ in accordance with Article 5. In addition to the Scope of Use in Article 4, Exhibit 1—Scope\ + \ of Use (E300) applies to specific Products. Addendum 1, Addendum 2, Addendum 3, and Addendum\ + \ 4 collectively comprise Exhibit 1—Scope of Use (E300) and are also available at http://www.esri.com/legal/software-license.\ + \ Addendums only apply to Products specifically identified within an Addendum. Exhibit 1—Scope\ + \ of Use (E300) includes Addendums for the following Product types, which are incorporated\ + \ by reference:\n \na. Software. Terms of use for specific Software products are set\ + \ forth in Addendum 1.\nb. Data. Data terms of use are set forth in Addendum 2.\nc.\ + \ Online Services. Terms of use for Online Services are set forth in Addendum 3.\nd.\ + \ Limited Use Programs. Terms of use for noncommercial, nonprofit, educational, or other\ + \ limited-use programs are set forth in Addendum 4.\n \n3.2 Evaluation and Beta Licenses.\ + \ Products acquired under an evaluation license or under a Beta program are intended for\ + \ evaluation and testing purposes only and not for commercial use. Any such use is at Licensee's\ + \ own risk, and the Products do not qualify for Esri or distributor maintenance.\n \nARTICLE\ + \ 4—SCOPE OF USE\n \n4.1 Permitted Uses\n \na. For Products delivered to Licensee, Licensee\ + \ may\n \n1. Install and store Products on electronic storage device(s);\n2. Make\ + \ archival copies and routine computer backups;\n3. Install and use a newer version\ + \ of Software concurrently with the version to be replaced during a reasonable transition\ + \ period not to exceed six (6) months, provided that the deployment of either version does\ + \ not exceed Licensee's licensed quantity; thereafter, Licensee shall not use more Software\ + \ in the aggregate than Licensee's total licensed quantity;\n4. Move the Software in\ + \ the licensed configuration to a replacement computer; and\n5. Distribute to third\ + \ parties Software and any associated Authorization Codes required for use of a Deployment\ + \ License.\n \nb. Commercial Application Service Provider Use. Licensee may use the\ + \ Product for Commercial ASP Use provided that Licensee (i) acquires a Commercial ASP Use\ + \ license, or (ii) is a governmental or not-for-profit organization that operates a website\ + \ or offers an Internet service on a cost recovery basis and not for profit.\nc. Licensee\ + \ may customize Software using any (i) macro or scripting language, (ii) published application\ + \ programming interface (API), or (iii) source or object code libraries, but only to the\ + \ extent that such customization is described in Documentation.\nd. Licensee may use,\ + \ copy, or prepare derivative works of Documentation supplied in digital format and thereafter\ + \ reproduce, display, and distribute the customized documentation only for Licensee's own\ + \ internal use. Portions of Documentation supplied in digital format merged with other software\ + \ and printed or digital documentation are subject to this License Agreement. Licensee shall\ + \ include the following copyright attribution notice acknowledging the proprietary rights\ + \ of Esri and its licensors: \"Portions of this document include intellectual property of\ + \ Esri and its licensors and are used herein under license. Copyright © [Licensee will insert\ + \ the actual copyright date(s) from the source materials] Esri and its licensors. All rights\ + \ reserved.\"\ne. Font Components. All fonts provided with a Product may be used with\ + \ the authorized use of any Products. Esri fonts may also be separately used to print any\ + \ output created by Products. Additional use restrictions for third-party fonts included\ + \ with a Product are set forth in the font file itself.\nf. Consultant or Contractor\ + \ Access. Subject to Section 3.1, Esri grants Licensee the right to permit Licensee's consultants\ + \ or contractors to use the Products exclusively for Licensee's benefit. Licensee shall\ + \ be solely responsible for compliance by consultants and contractors with this License\ + \ Agreement and shall ensure that the consultant or contractor discontinues Product use\ + \ upon completion of work for Licensee. Access to or use of Products by consultants or contractors\ + \ not exclusively for Licensee's benefit is prohibited.\ng. Licensee may use, copy,\ + \ reproduce, publish, publicly display, or redistribute map images and reports containing\ + \ map images derived from the use of Esri Product(s) in hard copy or static, electronic\ + \ formats (e.g., PDF, GIF, JPEG) to third parties subject to restrictions set forth in this\ + \ License Agreement, provided that Licensee affixes an attribution statement to the map\ + \ images acknowledging Esri and/or its applicable licensor(s) as the source of the portion(s)\ + \ of the Data used for the map images. For avoidance of doubt, any data that is supplied\ + \ or used by Licensee in its use of the Product(s) that is not Data shall be and remain\ + \ the property of Licensee or its third-party licensor(s).\n \n4.2 Uses Not Permitted. Except\ + \ to the extent that applicable law prohibits or overrides these restrictions, or as provided\ + \ herein, Licensee shall not\n \na. Sell, rent, lease, sublicense, lend, time-share,\ + \ assign, or use Products for Commercial ASP Use or service bureau purposes;\nb. Provide\ + \ third parties with direct access to Products so that the third parties may use the Product\ + \ directly, develop their own GIS applications, or create their own solutions in conjunction\ + \ with the Product;\nc. Distribute Software, Data, or Online Services to third parties,\ + \ in whole or in part, including, but not limited to, extensions, components, or DLLs;\n\ + d. Distribute Authorization Codes to third parties;\ne. Reverse engineer, decompile,\ + \ or disassemble Products;\nf. Make any attempt to circumvent the technological measure(s)\ + \ that controls access to or use of Products;\ng. Store, cache, use, upload, distribute,\ + \ or sublicense Content or otherwise use Products in violation of Esri's or a third party's\ + \ rights, including intellectual property rights, privacy rights, nondiscrimination laws,\ + \ or any other applicable law or government regulation;\nh. Remove or obscure any Esri\ + \ (or its licensors') patent, copyright, trademark, proprietary rights notices, and/or legends\ + \ contained in or affixed to any Product, Product output, metadata file, or online and/or\ + \ hard-copy attribution page of any Data or Documentation delivered hereunder;\ni. \ + \ Unbundle or independently use individual or component parts of Software, Online Services,\ + \ or Data;\nj. Incorporate any portion of the Product into a product or service that\ + \ competes with any Product;\nk. Publish or in any other way communicate the results\ + \ of benchmark tests run on Beta without the prior written permission of Esri and its licensors;\ + \ or\nl. Use, incorporate, modify, distribute, provide access to, or combine any computer\ + \ code provided with any Product in a manner that would subject such code or any part of\ + \ the Product to open source license terms, which includes any license terms that require\ + \ computer code to be (i) disclosed in source code form to third parties, (ii) licensed\ + \ to third parties for the purpose of making derivative works, or (iii) redistributable\ + \ to third parties at no charge.\n \nARTICLE 5—TERM AND TERMINATION\n \nThis License Agreement\ + \ is effective upon acceptance. Licensee may terminate this License Agreement or any Product\ + \ license at any time upon written notice to Esri. Either party may terminate this License\ + \ Agreement or any license for a material breach that is not cured within thirty (30) days\ + \ of written notice to the breaching party, except that termination is immediate for a material\ + \ breach that is impossible to cure. Upon termination of the License Agreement, all licenses\ + \ granted hereunder terminate as well. Upon termination of a license or the License Agreement,\ + \ Licensee will (i) stop accessing and using affected Product(s); (ii) clear any client-side\ + \ data cache derived from Online Services; and (iii) uninstall, remove, and destroy all\ + \ copies of affected Product(s) in Licensee's possession or control, including any modified\ + \ or merged portions thereof, in any form, and execute and deliver evidence of such actions\ + \ to Esri or its authorized distributor.\n \nARTICLE 6—LIMITED WARRANTIES AND DISCLAIMERS\n\ + \ \n6.1 Limited Warranties. Except as otherwise provided in this Article 6, Esri warrants\ + \ for a period of ninety (90) days from the date Esri issues the Authorization Code enabling\ + \ use of Software and Online Services that (i) the unmodified Software and Online Services\ + \ will substantially conform to the published Documentation under normal use and service\ + \ and (ii) media on which Software is provided will be free from defects in materials and\ + \ workmanship.\n \n6.2 Special Disclaimer. CONTENT, DATA, SAMPLES, HOT FIXES, PATCHES, UPDATES,\ + \ ONLINE SERVICES PROVIDED ON A NO-FEE BASIS, AND EVALUATION AND BETA SOFTWARE ARE DELIVERED\ + \ \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n \n6.3 Internet Disclaimer. THE PARTIES EXPRESSLY\ + \ ACKNOWLEDGE AND AGREE THAT THE INTERNET IS A NETWORK OF PRIVATE AND PUBLIC NETWORKS AND\ + \ THAT (i) THE INTERNET IS NOT A SECURE INFRASTRUCTURE, (ii) THE PARTIES HAVE NO CONTROL\ + \ OVER THE INTERNET, AND (iii) NONE OF THE PARTIES SHALL BE LIABLE FOR DAMAGES UNDER ANY\ + \ THEORY OF LAW RELATED TO THE PERFORMANCE OR DISCONTINUANCE OF OPERATION OF ANY PORTION\ + \ OF THE INTERNET OR POSSIBLE REGULATION OF THE INTERNET THAT MIGHT RESTRICT OR PROHIBIT\ + \ THE OPERATION OF ONLINE SERVICES.\n \n6.4 General Disclaimer. EXCEPT FOR THE ABOVE EXPRESS\ + \ LIMITED WARRANTIES, ESRI DISCLAIMS ALL OTHER WARRANTIES OR CONDITIONS OF ANY KIND, WHETHER\ + \ EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OR CONDITIONS OF MERCHANTABILITY\ + \ AND FITNESS FOR A PARTICULAR PURPOSE, SYSTEM INTEGRATION, AND NONINFRINGEMENT OF INTELLECTUAL\ + \ PROPERTY RIGHTS. ESRI DOES NOT WARRANT THAT PRODUCTS WILL MEET LICENSEE'S NEEDS; THAT\ + \ LICENSEE'S OPERATION OF THE SAME WILL BE UNINTERRUPTED, ERROR FREE, FAULT-TOLERANT, OR\ + \ FAIL-SAFE; OR THAT ALL NONCONFORMITIES CAN OR WILL BE CORRECTED. PRODUCTS ARE NOT DESIGNED,\ + \ MANUFACTURED, OR INTENDED FOR USE IN ENVIRONMENTS OR APPLICATIONS THAT MAY LEAD TO DEATH,\ + \ PERSONAL INJURY, OR PHYSICAL PROPERTY/ENVIRONMENTAL DAMAGE. LICENSEE SHOULD NOT FOLLOW\ + \ ANY ROUTE SUGGESTIONS THAT APPEAR TO BE HAZARDOUS, UNSAFE, OR ILLEGAL. ANY SUCH USES SHALL\ + \ BE AT LICENSEE'S OWN RISK AND COST.\n \n6.5 Exclusive Remedy. Licensee's exclusive remedy\ + \ and Esri's entire liability for breach of the limited warranties set forth in this Article\ + \ 6 shall be limited, at Esri's sole discretion, to (i) replacement of any defective media;\ + \ (ii) repair, correction, or a workaround for Software or Online Services subject to the\ + \ Esri Maintenance Program or Licensee's authorized distributor's maintenance program, as\ + \ applicable; or (iii) return of the license fees paid by Licensee for Software or Online\ + \ Services that do not meet Esri's limited warranty, provided that Licensee uninstalls,\ + \ removes, and destroys all copies of Software or Documentation; ceases using Online Services;\ + \ and executes and delivers evidence of such actions to Esri or its authorized distributor.\n\ + \ \nARTICLE 7—LIMITATION OF LIABILITY\n \n7.1 Disclaimer of Certain Types of Liability.\ + \ ESRI, ITS AUTHORIZED DISTRIBUTOR, AND ITS LICENSORS SHALL NOT BE LIABLE TO LICENSEE FOR\ + \ COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOST PROFITS, LOST SALES, OR BUSINESS\ + \ EXPENDITURES; INVESTMENTS; BUSINESS COMMITMENTS; LOSS OF ANY GOODWILL; OR ANY INDIRECT,\ + \ SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATED TO THIS LICENSE\ + \ AGREEMENT OR USE OF PRODUCTS, HOWEVER CAUSED ON ANY THEORY OF LIABILITY, WHETHER OR NOT\ + \ ESRI, ITS AUTHORIZED DISTRIBUTOR, OR ITS LICENSORS HAVE BEEN ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGE. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL\ + \ PURPOSE OF ANY LIMITED REMEDY.\n \n7.2 General Limitation of Liability. EXCEPT AS PROVIDED\ + \ IN ARTICLE 8—INFRINGEMENT INDEMNITY, THE TOTAL CUMULATIVE LIABILITY OF ESRI AND ITS AUTHORIZED\ + \ DISTRIBUTOR HEREUNDER, FROM ALL CAUSES OF ACTION OF ANY KIND, INCLUDING, BUT NOT LIMITED\ + \ TO, CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, BREACH OF WARRANTY, MISREPRESENTATION,\ + \ OR OTHERWISE, SHALL NOT EXCEED THE AMOUNTS PAID BY LICENSEE FOR THE PRODUCTS THAT GIVE\ + \ RISE TO THE CAUSE OF ACTION.\n \n7.3 Applicability of Disclaimers and Limitations. The\ + \ limitations of liability and disclaimers set forth in this License Agreement will apply\ + \ regardless of whether Licensee has accepted Products or any other product or service delivered\ + \ by Esri or its authorized distributor. The parties agree that Esri or its authorized distributor\ + \ has set its fees and entered into this License Agreement in reliance on the disclaimers\ + \ and limitations set forth herein, that the same reflect an allocation of risk between\ + \ the parties, and that the same form an essential basis of the bargain between the parties.\ + \ THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY\ + \ LIMITED REMEDY.\n \nTHE FOREGOING WARRANTIES, LIMITATIONS, AND EXCLUSIONS MAY NOT BE VALID\ + \ IN SOME JURISDICTIONS AND APPLY ONLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN LICENSEE'S\ + \ JURISDICTION. LICENSEE MAY HAVE ADDITIONAL RIGHTS UNDER LAW THAT MAY NOT BE WAIVED OR\ + \ DISCLAIMED. ESRI DOES NOT SEEK TO LIMIT LICENSEE'S WARRANTY OR REMEDIES TO ANY EXTENT\ + \ NOT PERMITTED BY LAW.\n \nARTICLE 8—INFRINGEMENT INDEMNITY\n \n8.1 Esri shall defend,\ + \ indemnify as described below, and hold Licensee harmless from and against any loss, liability,\ + \ cost, or expense, including reasonable attorneys' fees, arising out of any claims, actions,\ + \ or demands by a third party alleging that Licensee's licensed use of Software or Online\ + \ Services infringe a US patent, copyright, or trademark, provided\n \na. Licensee promptly\ + \ notifies Esri in writing of the claim;\nb. Licensee provides documents describing\ + \ the allegations of infringement;\nc. Esri has sole control of the defense of any action\ + \ and negotiation related to the defense or settlement of any claim; and\nd. Licensee\ + \ reasonably cooperates in the defense of the claim at Esri's request and expense.\n \n\ + 8.2 If Software or Online Services are found to infringe a US patent, copyright, or trademark,\ + \ Esri, at its own expense, may either (i) obtain rights for Licensee to continue using\ + \ the Software or Online Services or (ii) modify the allegedly infringing elements of Software\ + \ or Online Services while maintaining substantially similar functionality. If neither alternative\ + \ is commercially reasonable, the license shall terminate, and Licensee shall cease accessing\ + \ infringing Online Services and shall uninstall and return to Esri or its authorized distributor\ + \ any infringing item(s). Esri's entire liability shall then be to indemnify Licensee pursuant\ + \ to Section 8.1 and (i) refund the Perpetual License fees paid by Licensee to Esri or its\ + \ authorized distributor for the infringing items, prorated on a five (5)-year, straight-line\ + \ depreciation basis beginning from the initial date of delivery, and (ii) for Term Licenses\ + \ and maintenance, refund the unused portion of the fees paid.\n \n8.3 Esri shall have no\ + \ obligation to defend Licensee or to pay any resultant costs, damages, or attorneys' fees\ + \ for any claims or demands alleging direct or contributory infringement to the extent arising\ + \ out of (i) the combination or integration of Software or Online Services with a product,\ + \ process, or system not supplied by Esri or specified by Esri in its Documentation; (ii)\ + \ material alteration of Software or Online Services by anyone other than Esri or its subcontractors;\ + \ or (iii) use of Software or Online Services after modifications have been provided by\ + \ Esri for avoiding infringement or use after a return is ordered by Esri under Section\ + \ 8.2.\n \n8.4 THE FOREGOING STATES THE ENTIRE OBLIGATION OF ESRI AND ITS AUTHORIZED DISTRIBUTOR\ + \ WITH RESPECT TO INFRINGEMENT OR ALLEGATION OF INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS\ + \ OF ANY THIRD PARTY.\n \nARTICLE 9—GENERAL PROVISIONS\n \n9.1 Future Updates. Use of Products\ + \ licensed under this License Agreement is covered by the terms and conditions contained\ + \ herein. New or updated Products may require additional or revised terms of use under the\ + \ then-current Esri License Agreement. Esri will make new or revised terms of use available\ + \ at http://www.esri.com/legal/software-license or provide notice of new or revised terms\ + \ to Licensee.\n \n9.2 Export Control Regulations. Licensee expressly acknowledges and agrees\ + \ that Licensee shall not export, reexport, import, transfer, release, or provide access\ + \ to Products, Content, Licensee's Content, or Value-Added Applications to (i) any US embargoed\ + \ country; (ii) any person on the US Treasury Department's list of Specially Designated\ + \ Nationals; (iii) any person or entity on the US Commerce Department's Denied Persons List,\ + \ Entity List, or Unverified List; or (iv) any person or entity or into any country where\ + \ such export, reexport, access, or import violates any US, local, or other applicable import/export\ + \ control laws or regulations including, but not limited to, the terms of any import/export\ + \ license or license exemption and any amendments and supplemental additions to those import/export\ + \ laws as they may occur from time to time.\n \n9.3 Taxes and Fees, Shipping Charges. License\ + \ fees quoted to Licensee are exclusive of any and all applicable taxes or fees, including,\ + \ but not limited to, sales tax, use tax, value-added tax (VAT), customs, duties, or tariffs,\ + \ and shipping and handling charges.\n \n9.4 No Implied Waivers. The failure of either party\ + \ to enforce any provision of this License Agreement shall not be deemed a waiver of the\ + \ provisions or of the right of such party thereafter to enforce that or any other provision.\n\ + \ \n9.5 Severability. The parties agree that if any provision of this License Agreement\ + \ is held to be unenforceable for any reason, such provision shall be reformed only to the\ + \ extent necessary to make the intent of the language enforceable.\n \n9.6 Successor and\ + \ Assigns. Licensee shall not assign, sublicense, or transfer Licensee's rights or delegate\ + \ Licensee's obligations under this License Agreement without Esri's and its authorized\ + \ distributor's prior written consent, and any attempt to do so without consent shall be\ + \ void. This License Agreement shall be binding on the respective successors and assigns\ + \ of the parties to this License Agreement. Notwithstanding, a government contractor under\ + \ contract to the government to deliver Products may assign this License Agreement and Products\ + \ acquired for delivery to its government customer upon written notice to Esri, provided\ + \ the government customer assents to the terms of this License Agreement.\n \n9.7 Survival\ + \ of Terms. The provisions of Articles 2, 5, 6, 7, 8, and 9 of this License Agreement shall\ + \ survive the expiration or termination of this License Agreement.\n \n9.8 Equitable Relief.\ + \ Licensee agrees that any breach of this License Agreement by Licensee may cause irreparable\ + \ damage and that, in the event of such breach, in addition to any and all remedies at law,\ + \ Esri or its authorized distributor shall have the right to seek an injunction, specific\ + \ performance, or other equitable relief in any court of competent jurisdiction without\ + \ the requirement of posting a bond or proving injury as a condition for relief.\n \n9.9\ + \ US Government Licensee. The Products are commercial items, developed at private expense,\ + \ provided to Licensee under this License Agreement. If Licensee is a US government entity\ + \ or US government contractor, Esri licenses Products to Licensee in accordance with this\ + \ License Agreement under FAR Subparts 12.211/12.212 or DFARS Subpart 227.7202. Esri Data\ + \ and Online Services are licensed under the same DFARS Subpart 227.7202 policy as commercial\ + \ computer software for acquisitions made under DFARS. Products are subject to restrictions,\ + \ and this License Agreement strictly governs Licensee's use, modification, performance,\ + \ reproduction, release, display, or disclosure of Products. License provisions that are\ + \ inconsistent with federal law will not apply. A US government Licensee may transfer Software\ + \ to any of its facilities to which it transfers the computer(s) on which such Software\ + \ is installed. If any court, arbitrator, or board holds that Licensee has greater rights\ + \ to any portion of Products under applicable public procurement law, such rights shall\ + \ extend only to the portions affected.\n \n9.10 Governing Law, Arbitration\n \na. Licensees\ + \ in the United States of America, Its Territories, and Outlying Areas. This License Agreement\ + \ shall be governed by and construed in accordance with the laws of the State of California\ + \ without reference to conflict of laws principles, except that US federal law shall govern\ + \ in matters of intellectual property and for US government agency use. Except as provided\ + \ in Section 9.8, any dispute arising out of or relating to this License Agreement or the\ + \ breach thereof that cannot be settled through negotiation shall be finally settled by\ + \ arbitration administered by the American Arbitration Association under its Commercial\ + \ Arbitration Rules. Judgment on the award rendered by the arbitrator may be entered in\ + \ a court of competent jurisdiction. If Licensee is a US government agency, this License\ + \ Agreement is subject to the Contract Disputes Act of 1978, as amended (41 USC 601–613),\ + \ in lieu of the arbitration provisions of this clause. This License Agreement shall not\ + \ be governed by the United Nations Convention on Contracts for the International Sale of\ + \ Goods, the application of which is expressly excluded.\nb. All Other Licensees. Except\ + \ as provided in Section 9.8, any dispute arising out of or relating to this License Agreement\ + \ or the breach thereof that cannot be settled through negotiation shall be finally settled\ + \ under the Rules of Arbitration of the International Chamber of Commerce by one (1) arbitrator\ + \ appointed in accordance with said rules. The language of the arbitration shall be English.\ + \ The place of the arbitration shall be at an agreed-upon location. This License Agreement\ + \ shall not be governed by the United Nations Convention on Contracts for the International\ + \ Sale of Goods, the application of which is expressly excluded. Either party shall, at\ + \ the request of the other, make available documents or witnesses relevant to the major\ + \ aspects of the dispute.\n \n9.11 Maintenance. Maintenance for qualifying Products consists\ + \ of updates and other benefits, such as access to technical support, specified in Esri's\ + \ or its distributor's current applicable maintenance policy.\n \n9.12 Feedback. Esri may\ + \ freely use any feedback, suggestions, or requests for Product improvements that Licensee\ + \ provides to Esri.\n \n9.13 Patents. Licensee may not seek, and may not permit any other\ + \ user to seek, a patent or similar right worldwide that is based on or incorporates any\ + \ Esri technology or services. This express prohibition on patenting shall not apply to\ + \ Licensee's software and technology except to the extent that Esri technology or services,\ + \ or any portion thereof, are a part of any claim or preferred embodiment in a patent application\ + \ or a similar application.\n \n9.14 Entire Agreement. This License Agreement, including\ + \ its incorporated documents, constitutes the sole and entire agreement of the parties as\ + \ to the subject matter set forth herein and supersedes any previous license agreements,\ + \ understandings, and arrangements between the parties relating to such subject matter.\ + \ Additional or conflicting terms set forth in any purchase orders, invoices, or other standard\ + \ form documents exchanged during the ordering process, other than product descriptions,\ + \ quantities, pricing, and delivery instructions, are void and of no effect. Any modification(s)\ + \ or amendment(s) to this License Agreement must be in writing and signed by each party.\n\ + \ \nEXHIBIT 1\nSCOPE OF USE\n(E300 02/25/2015)\n \nADDENDUM 1\nSOFTWARE TERMS OF USE\n(E300-1)\n\ + \ \nThis Software Terms of Use Addendum (\"Addendum 1\") sets forth the terms of Licensee's\ + \ use of Software and includes the Licensee's existing master license agreement, if any,\ + \ or the License Agreement found at http://www.esri.com/legal/software-license (as applicable,\ + \ the \"License Agreement\"), which is incorporated by reference. This Addendum 1 takes\ + \ precedence over conflicting General License Terms and Conditions of the License Agreement.\n\ + \ \nSECTION 1—DEFINITIONS\n \nSoftware may be offered under the following license types\ + \ as set forth in the applicable sales quotation, purchase order, or other document identifying\ + \ the Products that Licensee orders:\n \n1. \"Concurrent Use License\" means a license\ + \ to install and use the Product on computer(s) on a network, but the number of simultaneous\ + \ users may not exceed the number of licenses acquired. A Concurrent Use License includes\ + \ the right to run passive failover instances of Concurrent Use License management software\ + \ in a separate operating system environment for temporary failover support.\n2. \"\ + Deployment Server License\" means a full use license that authorizes Licensee to install\ + \ and use the Software for all uses permitted in the License Agreement and as described\ + \ in the Documentation.\n3. \"Development Server License\" means a license that authorizes\ + \ Licensee to install and use the Software to build and test Value-Added Applications as\ + \ described in the Documentation.\n4. \"Esri Client Software\" means ArcGIS Runtime\ + \ apps, ArcGIS for Desktop, and ArcGIS API for Flex apps.\n5. \"Esri Content Package\"\ + \ means a digital file containing ArcGIS Online basemap content (e.g., raster map tiles,\ + \ images, vector data) extracted from the ArcGIS Online Basemap Services.\n6. \"Single\ + \ Use License\" means a license that allows Licensee to permit a single authorized end user\ + \ to install and use the Product on a single computer for use by that end user on the computer\ + \ on which the Product is installed. Licensee may permit the single authorized end user\ + \ to install a second copy for end user's exclusive use on a second computer as long as\ + \ only one (1) copy of Product is in use at any time. No other end user may use Product\ + \ under the same license at the same time for any other purpose.\n7. \"Staging Server\ + \ License\" means a license that authorizes Licensee to install and use the Software for\ + \ the following purposes: building and testing Value-Added Applications and map caches;\ + \ conducting user acceptance testing, performance testing, and load testing of other third-party\ + \ software; staging new commercial data updates; and training activities as described in\ + \ the Documentation. Value-Added Applications and map caches can be used with Development\ + \ and Deployment Servers.\n8. \"Term License\" means a license or access provided for\ + \ use of a Product for a limited time period (\"Term\") or on a subscription or transaction\ + \ basis.\n9. \"Perpetual License\" means a license to use a version of the Product,\ + \ for which applicable license fees have been paid, indefinitely, unless terminated by Esri\ + \ or Licensee as authorized under this Agreement.\n \nSECTION 2—TERMS OF USE FOR SPECIFIC\ + \ SOFTWARE\n \nThe following table is a list of Esri Products that have specific terms of\ + \ use in addition to the general terms of use as set forth in the General License Terms\ + \ and Conditions of the License Agreement. Additional terms of use are listed immediately\ + \ below this table and are referenced by number(s), shown in parentheses, immediately following\ + \ each Product name in the following table (in some cases, the additional terms of use referenced\ + \ may be found in a separate Addendum, as noted):\n \nDesktop Products\n▪ ArcGIS for\ + \ Desktop (Advanced, Standard, or Basic) (26; Addendum 2, Note 1; Addendum 2, Note 6)\n\ + ▪ ArcGIS Explorer Desktop (20; Addendum 2, Note 1)\n▪ ArcGIS for AutoCAD (20)\n▪ \ + \ ArcPad (12; 13; Addendum 2, Note 1; Addendum 2, Note 2)\n▪ ArcReader (20; Addendum\ + \ 2, Note 1)\n▪ Esri Business Analyst (Addendum 2, Note 1; Addendum 2, Note 4)\n▪ \ + \ ArcGIS for Windows Mobile (15; 54; Addendum 2, Note 1)\n▪ ArcGIS for iOS; ArcGIS for\ + \ Windows Phone; ArcGIS for Android (Addendum 2, Note 1)\n \nServer Products\n▪ ArcGIS\ + \ for Server\n– Workgroup (28; 29; 30; 32; 38; 39; Addendum 2, Note 1; Addendum 2, Note\ + \ 6)\n– Enterprise (31; 38; 39; Addendum 2, Note 1; Addendum 2, Note 6)\n– with Virtual\ + \ Cloud Infrastructure (10; Addendum 3—Common Terms)\n▪ ArcGIS for Server Extension\n\ + – ArcGIS for INSPIRE (Addendum 2, Note 1)\n▪ Esri Business Analyst for Server\n– \ + \ Workgroup (28; 29; 30; 31; 39; Addendum 2, Note 1; Addendum 2, Note 4)\n– Enterprise\ + \ (31; 39; Addendum 2, Note 1; Addendum 2, Note 4)\n▪ Portal for ArcGIS (31; Addendum\ + \ 2, Note 1)\n▪ Esri Tracking Server (31)\nDeveloper Tools\n▪ ArcGIS Runtime SDK for\ + \ Android, iOS, Java, Mac OS X, Microsoft .NET Framework (Windows [desktop], Windows Phone,\ + \ Windows Store), Qt, or WPF (16; 19; Addendum 2, Note 1)\n▪ ArcGIS Runtime Standard\ + \ Level for Android, iOS, Java, Mac OS X, Microsoft .NET Framework (Windows [desktop], Windows\ + \ Phone, Windows Store), Qt, or WPF (15; 18; Addendum 2, Note 1)\n▪ ArcGIS Engine Developer\ + \ Kit and Extensions (16, 19; 22, 26)\n▪ ArcGIS Engine for Windows/Linux and Extensions\ + \ (15; 22; 26; Addendum 2, Note 1; Addendum 2, Note 6)\n▪ ArcGIS Web Mapping (including\ + \ ArcGIS API for JavaScript/HTML5, ArcGIS API for Flex, ArcGIS API for Microsoft Silverlight)\ + \ (15; 16; 64; 66; Addendum 2, Note 1)\n▪ Esri Business Analyst Server Developer (Addendum\ + \ 2, Note 1; Addendum 2, Note 4)\n▪ Esri Developer Network (EDN) Software and Data (24;\ + \ 26; Addendum 2, Note 6)\n▪ Esri File Geodatabase API (47)\n \nBundled Products\n▪ \ + \ ArcGIS for Transportation Analytics (1; Addendum 2, Note 1; Addendum 2, Note 2; Addendum\ + \ 2, Note 11)\n \nNotes:\n \n▪ If you do not license any of the Products in the table\ + \ above, these additional terms of use do not apply to you.\n▪ Additional terms of\ + \ use for Products ONLY APPLY to the Products that reference them by number in the table\ + \ above.\n▪ Unless otherwise noted in the applicable Ordering Document, extensions\ + \ to Software follow the same scope of use as that granted for the corresponding Software.\n\ + \ \nAdditional Terms of Use for Products listed above:\n \n1. Licensee may use the Software,\ + \ Data, and Online Services included in ArcGIS for Transportation Analytics solely for direct\ + \ support of fleet operations. No other use of ArcGIS for Transportation Analytics or the\ + \ individual components that are part of ArcGIS for Transportation Analytics is permitted.\ + \ This restriction does not apply to the ArcGIS Online for Organizations account included\ + \ with ArcGIS for Transportation Analytics. The ArcGIS Online for Organizations account\ + \ can be used for any purpose subject to the terms of this License Agreement.\n 2–9.\ + \ Reserved.\n10. Licensee will provide information or other materials related to its content\ + \ (including copies of any client-side applications) as reasonably requested to verify Licensee's\ + \ compliance with this License Agreement. Esri may monitor the external interfaces (e.g.,\ + \ ports) of Licensee's content to verify Licensee's compliance with this License Agreement.\ + \ Licensee will not block or interfere with such monitoring, but Licensee may use encryption\ + \ technology or firewalls to help keep its content confidential. Licensee will reasonably\ + \ cooperate with Esri to identify the source of any problem with the ArcGIS for Server with\ + \ Virtual Cloud Infrastructure services that may reasonably be attributed to Licensee's\ + \ content or any end-user materials that Licensee controls.\n11. Reserved.\n12. Software\ + \ is licensed for navigational use only when used in conjunction with ArcLogistics.\n13.\ + \ \"Dual Use License\" means the Software may be installed on a desktop computer and used\ + \ simultaneously with either a personal digital assistant (PDA) or handheld mobile computer\ + \ as long as the Software is only used by a single individual at any one (1) time.\n14.\ + \ Reserved.\n15. Licensed as a Deployment License, subject to Article 3, Section 3.1 of\ + \ the General License Terms and Conditions.\n16. Licensee may use the SDKs or APIs to create\ + \ Value-Added Applications and distribute and license those Value-Added Applications to\ + \ its end users to use the Value-Added Applications anywhere not prohibited under export\ + \ regulation subject to Article 3, Section 3.1 of the General License Terms and Conditions.\n\ + 17. Reserved.\n18. The Deployment License is per Value-Added Application per computer.\n\ + 19. License may not be used to develop Internet or server-based Value-Added Applications.\n\ + 20. Licensee may reproduce and distribute the Software provided all the following occur:\n\ + \ \na. The Software is reproduced and distributed in its entirety;\nb. A license\ + \ agreement accompanies each copy of the Software that protects the Software to the same\ + \ extent as this License Agreement, and the recipient agrees to be bound by the terms and\ + \ conditions of the license agreement;\nc. All copyright and trademark attributions/notices\ + \ are reproduced; and\nd. There is no charge or fee attributable to the use of the Software.\n\ + \ \n21. Reserved.\n22. a. An end user must license either ArcGIS Engine for Windows/Linux\ + \ Software or other ArcGIS for Desktop Software (Basic, Standard, or Advanced) to obtain\ + \ the right to run an ArcGIS Engine application on one (1) computer; and\nb. The ArcGIS\ + \ Engine for Windows/Linux extensions shall not be used in combination with ArcGIS for Desktop\ + \ Software to run ArcGIS Engine Value-Added Applications. A single user can have multiple\ + \ ArcGIS Engine Value-Added Applications installed on one (1) computer for use only by that\ + \ end user.\n23. Reserved.\n24. EDN Software may be used only for the purposes of development,\ + \ testing, and demonstration of a prototype Value-Added Application and creating map caches.\ + \ Value-Added Applications and map caches can be used with Staging and Deployment Servers.\ + \ EDN server Software and Data may be installed on multiple computers for use by any Licensee\ + \ EDN developer; all other EDN Software is licensed as a Single Use License.\n25. Reserved.\n\ + 26. An ArcSDE Personal Edition geodatabase is restricted to ten (10) gigabytes of Licensee's\ + \ data.\n27. Reserved.\n28. Use is limited to ten (10) concurrent end users of applications\ + \ other than ArcGIS for Server applications. This restriction includes use of ArcGIS for\ + \ Desktop Software, ArcGIS Engine Software, and third-party applications that connect directly\ + \ to any ArcGIS for Server geodatabase. There are no limitations on the number of connections\ + \ from web applications.\n29. Software can only be used with a supported version of SQL\ + \ Server Express. Supported versions are listed with the system requirements for the product\ + \ on the Esri website.\n30. Use is restricted to a maximum of ten (10) gigabytes of Licensee's\ + \ data.\n31. Licensee may have redundant Esri Server Software installation(s) for failover\ + \ operations, but the redundant Software can only be operational during the period the primary\ + \ site is nonoperational. The redundant Software installation(s) shall remain dormant, except\ + \ for system maintenance and updating of databases, while the primary site or any other\ + \ redundant site is operational.\n32. Redundant Software installation for failover operations\ + \ is not permitted.\n 33–37. Reserved.\n38. The ArcGIS 3D Analyst for Server extension\ + \ included with ArcGIS for Server Standard (Workgroup or Enterprise) may be used only for\ + \ generating globe data cache(s) or publishing a globe document as an ArcGIS Globe Service.\ + \ No other use of the ArcGIS 3D Analyst for Server extension Software is permitted with\ + \ ArcGIS for Server Standard.\n39. Any editing functionality included with ArcGIS for Server\ + \ is not permitted for use with ArcGIS for Server Basic (Workgroup or Enterprise).\n 40–46.\ + \ Reserved.\n47. Licensee may develop and distribute Value-Added Applications that use\ + \ Esri File Geodatabase API to Licensee's end users.\n 48–53. Reserved.\n54. ArcGIS for\ + \ Windows Mobile Deployments are licensed for use with ArcGIS for Server Enterprise (Advanced\ + \ or Standard), ArcGIS for Server Workgroup (Advanced), ArcGIS for Desktop (Advanced, Standard,\ + \ Basic), and ArcGIS Engine Value-Added Applications.\n 55–63. Reserved.\n64. Value-Added\ + \ Application(s) for web deployment must be used in conjunction with other Esri Product(s).\ + \ Third-party technologies may also be used in conjunction with Value-Added Application(s)\ + \ as long as the Value-Added Application(s) is always used in conjunction with other Esri\ + \ Product(s).\n65. Reserved.\n66. For desktop applications, each license is per organization.\ + \ For the purposes of this license, organization is equivalent to a principal registered\ + \ unique domain identifier. Domain is the Internet domain name registered with a domain\ + \ name registrar. For instance, in example.com, example.com is the registered unique domain\ + \ identifier. Similarly, in example.com.xx, where xx is a registered country code, example.com.xx\ + \ is the registered unique domain identifier. Desktop applications can be used by any employee\ + \ of the organization with the principal registered unique domain identifier. There is no\ + \ limit to the number of applications that can be built and deployed within an organization.\n\ + \ \nADDENDUM 2\nDATA TERMS OF USE\n(E300-2)\n \nThis Data Terms of Use Addendum (\"Addendum\ + \ 2\") sets forth the terms of Licensee's use of Data and includes Licensee's existing master\ + \ license agreement, if any, or the License Agreement found at http://www.esri.com/legal/software-license\ + \ (as applicable, the \"License Agreement\"), which is incorporated by reference. This Addendum\ + \ 2 takes precedence over conflicting General License Terms and Conditions of the License\ + \ Agreement. Esri reserves the right to modify the Data terms of use referenced below at\ + \ any time. For Data licensed through a subscription, Licensee may cancel the subscription\ + \ upon written notice to Esri or discontinue use of the Data, as applicable. If Licensee\ + \ continues to use the Data, Licensee will be deemed to have accepted the modification.\ + \ Data terms of use are set forth in the notes referenced below:\n \nSECTION 1—GENERAL RESTRICTIONS\ + \ ON USE OF DATA\n \nIn addition to the restrictions set forth in Article 4.2 of the License\ + \ Agreement, the following restrictions apply to use of Data by Licensee and Licensee's\ + \ end users (collectively, \"Users\"). Any use of Data that is not expressly authorized\ + \ in Section 2 or elsewhere in the License Agreement is strictly prohibited. Without limiting\ + \ the generality of the foregoing, Licensee shall ensure Users are prohibited from (i) cobranding\ + \ Data, (ii) using the Data in any unauthorized service or product, or (iii) offering Data\ + \ through or on behalf of any third party.\n \nSECTION 2—SPECIFIC TERMS OF USE FOR DATA\n\ + \ \nThe following table is a list of Esri Products that have specific terms of use in addition\ + \ to the general terms of use as set forth in the General License Terms and Conditions of\ + \ the License Agreement. Additional terms of use are listed immediately below this table\ + \ and are referenced by number(s), shown in parenthesis, immediately following each Product\ + \ name in the following table:\n \n▪ ArcGIS Online Data (1)\n▪ StreetMap Premium for\ + \ ArcGIS (2)\n▪ StreetMap for Windows Mobile (2)\n▪ StreetMap for ArcPad (2)\n▪ \ + \ StreetMap Premium for ArcGIS for Transportation Analytics (2; Addendum 1, Note 1)\n▪\ + \ HERE Traffic Data (11; Addendum 1, Note 1)\n▪ Data Appliance for ArcGIS (3)\n▪ \ + \ Business Analyst Data (4, 10)\n▪ Demographic, Consumer, and Business Data (\"Esri\ + \ Data\") (5, 10)\n▪ Data and Maps for ArcGIS (6)\n▪ Esri MapStudio Data (9)\n \n\ + Notes:\n \n▪ If you do not license any of the Products in the table above, these additional\ + \ terms of use do not apply to you.\n▪ Additional terms of use for Products ONLY APPLY\ + \ to the Products that reference them, by number, in the table above.\n \nAdditional Terms\ + \ of Use for Products listed above:\n \n1. ArcGIS Online Data: Software and Online Services\ + \ that reference this note enable access to ArcGIS Online Data. ArcGIS Online Data is provided\ + \ for use solely in conjunction with Licensee's authorized use of Esri Software and Online\ + \ Services. Use of ArcGIS Online Data that is accessible through non-fee-based ArcGIS Online\ + \ accounts may be subject to usage limits.\n \nArcGIS Online Basemap Data:\n \na. ArcGIS\ + \ Online basemap data can be taken offline through Esri Content Packages and subsequently\ + \ delivered (transferred) to any device for use exclusively with licensed Esri Client Software.\n\ + b. ArcGIS Online basemap data is subject to an aggregate limit of fifty million (50,000,000)\ + \ transactions during any twelve (12)-month period. Transactions include both basemap and\ + \ geosearch Transactions. \"Transaction\" is defined in the Documentation at ArcGIS Resources\ + \ at http://links.esri.com/agol/transactiondef.\n \n Licensee may use Data accessed\ + \ through ArcGIS Online as permitted under the terms of the URLs referenced below:\n \n\ + a. HERE data is subject to the terms of use at http://www.esri.com/supplierterms-HERE.\n\ + b. Tele Atlas/TomTom data is subject to the terms of use at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9792-teleatlas_use_data.pdf.\n\ + c. Data from i-cubed is subject to the terms of use at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9946-icubed.pdf.\n\ + d. Microsoft Bing Maps data is subject to the terms of use at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/e-802-bing-mapsvcs.pdf.\n\ + e. BODC bathymetry data is subject to the terms of use found at http://www.esri.com/terms-of-use-bodc.\n\ + f. MB-Research GmbH (MBR) Data: Users are prohibited from (i) using MBR Data, including,\ + \ without limitation, European demographic data, consumer demand data, and postal and geographic\ + \ boundaries, for the purpose of compiling, enhancing, verifying, supplementing, adding\ + \ to, or deleting from any database or other compilation of information that is sold, rented,\ + \ published, furnished, or in any manner provided to a third party or (ii) modifying or\ + \ otherwise altering MBR Data without MBR's prior written consent, such consent to be granted\ + \ or withheld at MBR's sole discretion.\ng. D&B Data: May not be used for direct mailing\ + \ or direct marketing purposes.\n \n2. StreetMap Premium for ArcGIS: StreetMap for ArcGIS\ + \ for Windows Mobile; StreetMap for ArcPad; StreetMap Premium for ArcGIS for Transportation\ + \ Analytics: These Products, collectively referred to as \"StreetMap Data,\" may be used\ + \ for mapping, geocoding, and point-to-point routing purposes but are not licensed for dynamic,\ + \ real-time routing guidance. For instance, StreetMap Data may not be used to alert a user\ + \ about upcoming maneuvers (such as warning of an upcoming turn) or to calculate an alternate\ + \ route if a turn is missed. StreetMap Data may not be used to perform synchronized multivehicle\ + \ routing or route optimization. StreetMap Data acquired for use with ArcGIS for Desktop,\ + \ ArcGIS for Server, ArcPad, or ArcGIS for Transportation Analytics may only be used with\ + \ the Product for which the StreetMap Data was acquired, and may not be used with any other\ + \ Product. StreetMap for Windows Mobile Data is licensed for use solely on mobile devices\ + \ or in conjunction with ArcGIS for Mobile applications. StreetMap Data may include data\ + \ from either of the following sources:\n \na. HERE data is subject to the terms of\ + \ use at http://www.esri.com/supplierterms-HERE. HERE data, when licensed for use in StreetMap\ + \ Premium for ArcGIS for Transportation Analytics, permits tracking, synchronized multivehicle\ + \ routing, and route optimization.\nb. Tele Atlas/TomTom data is subject to the terms\ + \ of use at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9792-teleatlas_use_data.pdf.\n\ + \ \n3. Data Appliance for ArcGIS: Data provided with Data Appliance is subject to the\ + \ following additional terms of use:\n \na. HERE data is subject to the terms of use\ + \ at http://www.esri.com/supplierterms-HERE.\nb. Tele Atlas/TomTom data is subject to\ + \ the terms of use at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9792-teleatlas_use_data.pdf.\n\ + c. Data from i-cubed is subject to the terms of use at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9946-icubed.pdf.\n\ + d. BODC bathymetry data is subject to the terms of use found at http://www.esri.com/terms-of-use-bodc.\n\ + \ \n4. Business Analyst Data: Business Analyst Data is provided with Esri Business Analyst\ + \ (Server, Desktop). The Data is subject to the following additional terms of use:\n \n\ + a. The Data is provided for Licensee's internal business use solely in connection with\ + \ Licensee's authorized use of Software. Subject to Addendum 2, Note 10, Business Analyst\ + \ Data, including derivative products (e.g., geocodes), are restricted for use only in conjunction\ + \ with the respective Business Analyst extension. If Licensee orders a license for Esri\ + \ Business Analyst or Business Analyst (Canadian Edition) with a subset of the national\ + \ dataset (i.e., Region, State, Local), Licensee may use only the licensed subset, not any\ + \ other portion of the national dataset.\nb. Business Analyst Data provided with Business\ + \ Analyst for Server may not be cached or downloaded by client applications and devices.\n\ + c. Infogroup data is subject to the following terms of use: \"Users\" means end users\ + \ of Esri Software. Any use of the Infogroup database not expressly authorized in this License\ + \ Agreement is strictly prohibited. Without limiting the generality of the foregoing, Users\ + \ are expressly prohibited from (i) sublicensing or reselling the Infogroup database; (ii)\ + \ using or allowing third parties to use the Infogroup database for the purpose of compiling,\ + \ enhancing, verifying, supplementing, adding to, or deleting from any mailing list, geographic\ + \ or trade directories, business directories, classified directories, classified advertising,\ + \ or other compilation of information that is sold, rented, published, furnished, or in\ + \ any manner provided to a third party; (iii) using the Infogroup database in any service\ + \ or product not specifically authorized in this License Agreement or offering it through\ + \ any third party; (iv) disassembling, decompiling, reverse engineering, modifying, or otherwise\ + \ altering the Infogroup database or any part thereof without Infogroup's prior written\ + \ consent, such consent to be granted or withheld at Infogroup's sole discretion; or (v)\ + \ using the Infogroup database for any direct marketing purposes.\nd. HERE data is subject\ + \ to the terms of use at http://www.esri.com/supplierterms-HERE.\ne. Tele Atlas/TomTom\ + \ data is subject to the terms of use at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9792-teleatlas_use_data.pdf.\n\ + f. MBR Data: Users are prohibited from (i) using MBR Data, including, without limitation,\ + \ European demographic data, consumer demand data, and postal and geographic boundaries,\ + \ for the purpose of compiling, enhancing, verifying, supplementing, adding to, or deleting\ + \ from any database or other compilation of information that is sold, rented, published,\ + \ furnished, or in any manner provided to a third party or (ii) modifying, or otherwise\ + \ altering MBR Data without MBR's prior written consent, such consent to be granted or withheld\ + \ at MBR's sole discretion.\ng. D&B Data: May not be used for direct mailing or direct\ + \ marketing purposes.\n \n5. Demographic, Consumer, and Business Data (\"Esri Data\"\ + ): This Data category includes the Updated Demographic Database, Census Data, American Community\ + \ Survey (ACS) Data, Consumer Spending, Business, Retail MarketPlace, Tapestry Segmentation,\ + \ Market Potential, Crime Index, Major Shopping Center, Traffic Count, and Banking datasets.\ + \ Esri Data may be used independently of Software or Online Services. Each dataset is available\ + \ under one or more of the following license types:\n \n▪ Single Use: Permits access\ + \ by a single user to access the data for development or internal use on a desktop computer\ + \ or server. No Internet access is permitted.\n▪ Internal Site/Server—Known User: Permits\ + \ access by named (known) users for Licensee's internal use. Web access by those named users\ + \ is permitted.\n▪ Public website (noncommercial)—Constituent-Served Model: Permits\ + \ a municipal government Licensee to use the Data in an externally facing Value-Added Application\ + \ serving a defined population, provided Licensee does not generate revenue from such use.\n\ + ▪ Public website (commercial) Known User: Permits Licensee to use the Data in an externally\ + \ facing Value-Added Application for use by named users and to generate revenue from such\ + \ Value-Added Application.\n▪ Public website (commercial) Anonymous User: Permits Licensee\ + \ to use the Data in an externally facing Value-Added Application for general use and to\ + \ generate revenue from such Value-Added Application.\n \n6. Data and Maps for ArcGIS:\ + \ The Data is available to licensed users of ArcGIS for Desktop, ArcGIS for Server, and\ + \ ArcGIS Online. Data and Maps for ArcGIS is provided for use solely in conjunction with\ + \ authorized use of ArcGIS for Desktop, ArcGIS for Server, and ArcGIS Online.\n \na. \ + \ Licensee may redistribute the Data as described in the Redistribution Rights Matrix available\ + \ at http://www.esri.com/legal/redistribution-rights, in the Help system, or in supporting\ + \ metadata files, subject to the specific attribution descriptions and requirements for\ + \ the dataset accessed.\nb. StreetMap Data may be used for mapping, geocoding, and routing\ + \ purposes but is not licensed for dynamic routing purposes. For instance, StreetMap USA\ + \ may not be used to alert a user about upcoming maneuvers (such as warning of an upcoming\ + \ turn) or to calculate an alternate route if a turn is missed.\n \n7. Reserved.\n8.\ + \ Reserved.\n9. MapStudio Data: Use of this Data is subject to the following terms\ + \ and conditions:\n \na. HERE data is subject to the terms of use at http://www.esri.com/supplierterms-HERE.\n\ + b. Tele Atlas/TomTom data is subject to the terms of use at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9792-teleatlas_use_data.pdf.\n\ + c. Data from i-cubed is subject to the terms of use at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9946-icubed.pdf.\n\ + d. D&B Data: May not be used for direct mailing or direct marketing purposes.\n \n10.\ + \ Licensee may include Data in hard-copy or read-only format (\"Outputs\") in presentation\ + \ packages, marketing studies, or other reports or documents prepared for third parties.\ + \ Licensee shall not resell or otherwise externally distribute Outputs in stand-alone form.\n\ + 11. ArcGIS for Transportation Analytics—HERE traffic data option: This online data service\ + \ is available as an option for use exclusively with ArcGIS for Transportation Analytics.\ + \ Use of this data is subject to the following terms and conditions:\n \na. HERE traffic\ + \ data is subject to the terms of use at http://www.esri.com/supplierterms-HERE.\nb. \ + \ No automatic routing or rerouting based on traffic conditions is permitted without the\ + \ Navigation add-on.\nc. HERE traffic data may not be archived and may be delivered\ + \ only for end users' personal, near-term use, not to exceed one (1) twenty-four (24)-hour\ + \ period.\nd. HERE traffic data may not be used to display or broadcast in any FM/AM/HD\ + \ radio broadcast or television broadcast or through any RDS delivery method.\ne. HERE\ + \ traffic data may not be used with or incorporated into any traffic system that provides\ + \ voice traffic reports to inbound callers.\nf. HERE traffic data may not be used to\ + \ develop or commercially make available a text-to-voice e-mail alert or message or voice\ + \ mail application using any portion of HERE traffic data.\n \nADDENDUM 3\nONLINE SERVICES\ + \ ADDENDUM\n(E300-3)\n \nThis Online Services Addendum (\"Addendum 3\") sets forth the terms\ + \ of Licensee's use of Online Services and includes the Licensee's existing master license\ + \ agreement, if any, or the License Agreement found at http://www.esri.com/legal/software-license\ + \ (as applicable, the \"License Agreement\"), which is incorporated by reference. This Addendum\ + \ 3 takes precedence over conflicting General License Terms and Conditions of the License\ + \ Agreement. Esri reserves the right to update the terms from time to time. Section 1 of\ + \ this Addendum 3 contains terms applicable to all Online Services; Section 2 contains common\ + \ terms applicable to specific Online Services.\n \nSECTION 1—COMMON TERMS OF USE OF ONLINE\ + \ SERVICES\n \nARTICLE 1—DEFINITIONS\n \nIn addition to the definitions provided in the\ + \ License Agreement, the following definitions apply to this Addendum 3:\n \na. \"Anonymous\ + \ Users\" refers to anyone who has public access to any part of the Licensee's Content or\ + \ Value-Added Applications, which Licensee has published through the use of the Sharing\ + \ Tools, included with Licensee's licensed use of the Software or Online Services, as further\ + \ described in Section 2 of this Addendum.\nb. \"API\" means application programming\ + \ interface.\nc. \"App Login Credential\" means a system-generated application login\ + \ and associated password, provided by registering a Value-Added Application with ArcGIS\ + \ Online, which can be embedded in a Value-Added Application to enable the Value-Added Application\ + \ to access and use Online Services.\nd. \"ArcGIS Website\" means http://www.arcgis.com\ + \ and any related or successor websites.\ne. \"Content\" means data, images, photographs,\ + \ animations, video, audio, text, maps, databases, data models, spreadsheets, user interfaces,\ + \ software applications, and Developer Tools.\nf. \"Developer Tools\" means software\ + \ development kits (SDKs), APIs, software libraries, code samples, and other resources.\n\ + g. \"Licensee's Content\" means any Content that Licensee, a Licensee's Named User,\ + \ or any other user submits to Esri in connection with Licensee's use of the Online Services,\ + \ any results derived from the use of Licensee's Content with Online Services, and any Value-Added\ + \ Applications Licensee builds with Developer Tools and deploys with Online Services. Licensee's\ + \ Content excludes any feedback, suggestions, or requests for Product improvements that\ + \ Licensee provides to Esri.\nh. \"Named User(s)\" means individuals to whom Licensee\ + \ specifically enables private access to Online Services and Value-Added Applications through\ + \ Licensee's Online Services account. Named Users can be anyone whom Licensee authorizes\ + \ to access Online Services, but only for the exclusive benefit of Licensee, for example,\ + \ Licensee's employees, agents, consultants, or contractors. For Education Plan accounts,\ + \ Named Users may include registered students. No other third parties may be Named Users.\ + \ Named Users have private access to features of Online Services that are not publicly accessible\ + \ to Anonymous Users. Named Users have unique, individual login credentials.\ni. \"\ + Online Content\" means Content hosted or provided by Esri as part of Online Services, including\ + \ any Map Services, Task Services, Image Services, and Developer Tools and excluding Content\ + \ provided by third parties that Licensee accesses through Online Services.\nj. \"\ + Service Components\" means each of the following: Online Services, Online Content, ArcGIS\ + \ Website, Developer Tools, Documentation, or related materials.\nk. \"Sharing Tools\"\ + \ means publishing capabilities included with Online Services and ArcGIS Website that allow\ + \ Licensee to make Licensee's Content and Value-Added Applications available to third parties\ + \ and/or Anonymous Users.\nl. \"Value-Added Application\" means an application developed\ + \ by Licensee for use in conjunction with the authorized use of any Software, Data, or Online\ + \ Services.\nm. \"Web Services\" as used under Licensee's existing signed license agreement,\ + \ if any, means Online Services and any Content delivered by such Online Services.\n \n\ + ARTICLE 2—USE OF ONLINE SERVICES\n \n2.1 License to Online Services. Esri grants Licensee\ + \ a personal, nonexclusive, nontransferable, worldwide license to access and use Online\ + \ Services as set forth in the applicable Ordering Documents (i) for which the applicable\ + \ license fees have been paid (if required), (ii) for Licensee's own internal use by Licensee\ + \ and Licensee's Named Users or Anonymous Users (if applicable), and (iii) in accordance\ + \ with this License Agreement and the licensed configuration on file as authorized by Esri.\n\ + \ \n2.2 Provision of Subscription Online Services. For subscription Online Services, Esri\ + \ will\n \na. Provide Online Services to Licensee in accordance with the Documentation;\n\ + b. Provide customer support in accordance with Esri's standard customer support policies\ + \ and any additional support Licensee may purchase; and\nc. Use commercially reasonable\ + \ efforts to ensure that Online Services will not transmit to Licensee any Malicious Code,\ + \ provided Esri is not responsible for Malicious Code that was introduced to Online Services\ + \ through Licensee's account or through third-party Content.\n \n2.3 Licensee's Responsibilities.\n\ + \ \na. Licensee shall be responsible for Named Users' compliance with this Agreement.\ + \ Licensee and Licensee's Named Users or Anonymous Users (if applicable) are the only persons\ + \ authorized to access Online Services through Licensee's accounts. Named Users' login credentials\ + \ are for designated Named Users only and may not be shared among multiple individuals.\ + \ Named Users' login credentials may be reassigned to new Named Users if the former users\ + \ no longer require access to Online Services.\nb. Licensee and Licensee's Named Users\ + \ are responsible for maintaining the confidentiality of Authorization Codes, Access Codes,\ + \ Named Users' login credentials, or any other method that is provided that enables access\ + \ to Online Services and for ensuring that unauthorized third parties do not access Licensee's\ + \ account. Licensee will immediately notify Esri if Licensee becomes aware of any unauthorized\ + \ use of Licensee's account or any other breach of security.\nc. Licensee is solely\ + \ responsible for the development and operation of Licensee's Content and Value-Added Applications\ + \ and the manner in which it chooses to allow or provide use, access, transfer, transmission,\ + \ maintenance, or processing ability to or by others, including any use and access to Products,\ + \ and any subsequent end user, end use, and destination restrictions issued by the US government\ + \ and other governments.\n \n2.4 Prohibited Uses of the Online Services. In addition to\ + \ the prohibited uses or except as provided under the License Agreement, Licensee shall\ + \ not (i) attempt to gain unauthorized access to the Online Services or assist others to\ + \ do so; (ii) use Online Services for spamming, to transmit junk e-mail or offensive or\ + \ defamatory material, or for stalking or making threats of physical harm; (iii) use Online\ + \ Services to store or transmit software viruses, worms, time bombs, Trojan horses, or any\ + \ other computer code, files, or programs designed to interrupt, destroy, or limit the functionality\ + \ of any computer software, hardware, or telecommunications equipment (\"Malicious Code\"\ + ); (iv) mirror, reformat, or display Online Services in an attempt to mirror and/or make\ + \ commercial use of Online Services except to the degree that Online Services directly enable\ + \ such functionality; (v) share the client-side data cache derived from Online Content with\ + \ other licensed end users or third parties; (vi) distribute the client-side data cache\ + \ derived from Online Services to third parties; (vii) manually or systematically collect\ + \ or scrape (screen or web scraping) Content from Online Services; (viii) use ArcGIS Online\ + \ Map Services, Geocoding Services, or Routing Services in communication with any in-vehicle\ + \ navigation system installed in a vehicle (this does not include portable navigation devices)\ + \ or that provides real-time, dynamic routing to any device (for instance, these services\ + \ may not be used to alert a user about upcoming maneuvers such as warning of an upcoming\ + \ turn or to calculate an alternate route if a turn is missed); or (ix) incorporate any\ + \ portion of Online Services into a commercial product or service unless the commercial\ + \ product adds material functionality to Online Services. Licensee shall not use Online\ + \ Services to (a) infringe or misappropriate any third-party proprietary rights or privacy\ + \ rights; (b) process, store, transmit, or enable access to any information, data, or technology\ + \ controlled for export under the International Traffic in Arms (ITAR) regulations; (c)\ + \ violate any export law; or (d) store or process Content online that is unclassified controlled\ + \ technical information (UCTI) under DFARS 204.73, or is protected health information (PHI)\ + \ under the Health Insurance Portability and Accountability Act (HIPAA). Licensee shall\ + \ not attempt to (a) probe, scan, or test the vulnerability of the Online Services or to\ + \ breach any security or authentication measures used by the Online Services; or (b) benchmark\ + \ the availability, performance, or functionality of Online Services for competitive purposes.\ + \ Licensee is responsible for any fines, penalties, or claims against Esri, including reasonable\ + \ attorneys' fees, arising out of Licensee's noncompliance with any of the foregoing prohibitions.\n\ + \ \n2.5 Evaluations. Esri may provide licenses to use certain Services for Licensee's internal\ + \ evaluation purposes. Such licenses continue until the stated evaluation period expires\ + \ or until Licensee purchases a subscription, whichever occurs first. IF LICENSEE DOES NOT\ + \ CONVERT LICENSEE'S EVALUATION LICENSE TO A SUBSCRIPTION PRIOR TO EXPIRATION OF THE EVALUATION\ + \ TERM, ANY CONTENT AND CUSTOMIZATIONS THAT LICENSEE UPLOADED OR MADE DURING THE EVALUATION\ + \ TERM WILL BE PERMANENTLY LOST. IF LICENSEE DOES NOT WISH TO PURCHASE A SUBSCRIPTION, LICENSEE\ + \ MUST EXPORT SUCH CONTENT BEFORE THE END OF LICENSEE'S EVALUATION PERIOD.\n \n2.6 Modifications\ + \ of Online Services. Esri reserves the right to alter or modify Online Service(s) and related\ + \ APIs at any time. If reasonable under the circumstances, Esri will provide thirty (30)\ + \ days' prior notice of any material alterations.\n \n2.7 Discontinuation or Deprecation\ + \ of Online Services. Esri reserves the right to discontinue or deprecate an Online Service(s)\ + \ and related API(s) at any time. If reasonable under the circumstances, Esri will provide\ + \ ninety (90) days' prior notice of any Online Service discontinuation or deprecation. Esri\ + \ will attempt to support any deprecated APIs for up to six (6) months, unless there are\ + \ legal, financial, or technological reasons not to support them.\n \n2.8 If any modification,\ + \ discontinuation, or deprecation of Online Service(s) causes a material, adverse impact\ + \ to Licensee's operations, Esri may at its sole discretion attempt to repair, correct,\ + \ or provide a workaround for Online Services. If a viable solution is not commercially\ + \ reasonable, Licensee may cancel its subscription to Online Services, and Esri will issue\ + \ a prorated refund.\n \n2.9 Attributions. Licensee is not permitted to remove any Esri\ + \ or Esri's licensors' logos or other attribution associated with any use of ArcGIS Online\ + \ Services.\n \nARTICLE 3—TERM AND TERMINATION\n \nThe following supplements Article 5—Term\ + \ and Termination of the License Agreement:\n \n3.1 Term of Subscriptions. The term of any\ + \ subscription will be provided in the Ordering Document under which it is purchased or\ + \ in the Online Services description referenced therein.\n \n3.2 Subscription Rate Changes.\ + \ Monthly subscription rates may be increased upon thirty (30) days' notice. Esri may increase\ + \ rates for subscriptions with a term greater than one (1) month by notifying Licensee at\ + \ least sixty (60) days prior to expiration of the then-current subscription term.\n \n\ + 3.3 Service Interruption. Licensee's access (including access on behalf of Licensee's customers)\ + \ to and use of Online Service(s) may be temporarily unavailable, without prior notice,\ + \ for any unanticipated or unscheduled downtime or unavailability of all or any portion\ + \ of Online Services, including system failure or other events beyond the reasonable control\ + \ of Esri.\n \n3.4 Service Suspension. Esri shall be entitled, without any liability to\ + \ Licensee, to suspend access to any portion or all of Online Services at any time on a\ + \ service-wide basis (a) if Licensee breaches the License Agreement; (b) if Licensee exceeds\ + \ usage limits and fails to purchase additional license capacity sufficient to support Licensee's\ + \ continued use of Online Services as described in Article 5 of this Addendum; (c) if there\ + \ is reason to believe that Licensee's use of Online Service(s) will adversely affect the\ + \ integrity, functionality, or usability of the Online Service(s); (d) if Esri and its licensors\ + \ may incur liability by not suspending Licensee's account; (e) for scheduled downtime to\ + \ conduct maintenance or make modifications to Online Service(s); (f) in the event of a\ + \ threat or attack on Online Service(s) (including a denial-of-service attack) or other\ + \ event that may create a risk to the applicable part of Online Services; or (g) in the\ + \ event that Esri determines that Online Services (or portions thereof) are prohibited by\ + \ law or otherwise that it is necessary or prudent to do so for legal or regulatory reasons.\ + \ If feasible under these circumstances, Licensee will be notified of any Service Suspension\ + \ beforehand and allowed reasonable opportunity to take remedial action.\n \n3.5 Esri is\ + \ not responsible for any damage, liabilities, losses (including any loss of data or profits),\ + \ or any other consequences that Licensee or any Licensee customer may incur as a result\ + \ of any Service Interruption or Service Suspension.\n \nARTICLE 4—LICENSEE'S CONTENT, FEEDBACK\n\ + \ \n4.1 Licensee's Content. Licensee retains all right, title, and interest in Licensee's\ + \ Content. Licensee hereby grants Esri and Esri's licensors a nonexclusive, nontransferable,\ + \ worldwide right to host, run, and reproduce Licensee's Content solely for the purpose\ + \ of enabling Licensee's use of Online Services. Without Licensee's permission, Esri will\ + \ not access, use, or disclose Licensee's Content except as reasonably necessary to support\ + \ Licensee's use of Online Services, respond to Licensee's requests for customer support,\ + \ or troubleshoot Licensee's account or for any other purpose authorized by Licensee in\ + \ writing. If Licensee accesses Online Services with an application provided by a third\ + \ party, Esri may disclose Licensee's Content to such third party as necessary to enable\ + \ interoperation between the application, Online Services, and Licensee's Content. Esri\ + \ may disclose Licensee's Content if required to do so by law or pursuant to the order of\ + \ a court or other government body, in which case Esri will reasonably attempt to limit\ + \ the scope of disclosure. It is Licensee's sole responsibility to ensure that Licensee's\ + \ Content is suitable for use with Online Services and for maintaining regular offline backups\ + \ using the Online Services export and download capabilities.\n \n4.2 Removal of Licensee's\ + \ Content. Licensee will provide information and/or other materials related to Licensee's\ + \ Content as reasonably requested by Esri to verify Licensee's compliance with this License\ + \ Agreement. Esri may remove or delete any portions of Licensee's Content if there is reason\ + \ to believe that uploading it to, or using it with, Online Services violates this License\ + \ Agreement. If reasonable under these circumstances, Esri will notify Licensee before Licensee's\ + \ Content is removed. Esri will respond to any Digital Millennium Copyright Act take-down\ + \ notices in accordance with Esri's Copyright Policy, available at http://www.esri.com/legal/dmca_policy.\n\ + \ \n4.3 Sharing Licensee's Content. If Licensee elects to share Licensee's Content using\ + \ Sharing Tools, then Licensee acknowledges that it has enabled third parties to use, store,\ + \ cache, copy, reproduce, (re)distribute, and (re)transmit Licensee's Content through Online\ + \ Services. ESRI IS NOT RESPONSIBLE FOR ANY LOSS, DELETION, MODIFICATION, OR DISCLOSURE\ + \ OF LICENSEE'S CONTENT RESULTING FROM USE OR MISUSE OF SHARING TOOLS OR ANY OTHER SERVICE\ + \ COMPONENTS. LICENSEE'S USE OF SHARING TOOLS IS AT LICENSEE'S SOLE RISK.\n \n4.4 Retrieving\ + \ Licensee's Content upon Termination. Upon termination of the License Agreement or any\ + \ trial, evaluation, or subscription, Esri will make Licensee's Content available to Licensee\ + \ for download for a period of thirty (30) days unless Licensee requests a shorter window\ + \ of availability or Esri is legally prohibited from doing so. Thereafter, Licensee's right\ + \ to access or use Licensee's Content with Online Services will end, and Esri will have\ + \ no further obligations to store or return Licensee's Content.\n \nARTICLE 5—LIMITS ON\ + \ USE OF ONLINE SERVICES; SERVICE CREDITS\n \nEsri may establish limits on the Online Services\ + \ available to Licensee. These limits may be controlled through Service Credits. Service\ + \ Credits are used to measure the consumption of ArcGIS Online services made available through\ + \ Licensee's account. The maximum Service Credits provided with Licensee's ArcGIS Online\ + \ account will be addressed in the applicable Ordering Document. Esri will notify Licensee's\ + \ account administrator when Licensee's Service Credit consumption reaches approximately\ + \ seventy-five percent (75%) of the Service Credits allocated to Licensee through Licensee's\ + \ subscription. Esri will notify Licensee's account administrator if Licensee's Service\ + \ Credit consumption reaches or exceeds one hundred percent (100%). If Licensee's account\ + \ exceeds one hundred percent (100%) of the available Service Credits, Licensee may continue\ + \ to access its account; however, Licensee's access to services that consume Service Credits\ + \ will be suspended. Licensee's access to the services that consume Service Credits will\ + \ be restored immediately upon the completion of Licensee's purchase of additional Service\ + \ Credits.\n \nARTICLE 6—ONLINE CONTENT; THIRD-PARTY CONTENT AND WEBSITES\n \n6.1 Online\ + \ Content. ArcGIS Online Data is included as a component of Online Services and is licensed\ + \ under the terms of the License Agreement.\n \n6.2 Third-Party Content and Websites. Online\ + \ Services and ArcGIS Website may reference or link to third-party websites or enable Licensee\ + \ to access, view, use, and download third-party Content. This Agreement does not address\ + \ Licensee's use of third-party Content, and Licensee may be required to agree to different\ + \ or additional terms in order to use third-party Content. Esri does not control these websites\ + \ and is not responsible for their operation, content, or availability; Licensee's use of\ + \ any third-party websites and third-party Content is as is, without warranty, and at Licensee's\ + \ sole risk. The presence of any links or references in Online Services to third-party websites\ + \ and resources does not imply an endorsement, affiliation, or sponsorship of any kind.\n\ + \ \nSECTION 2—TERMS OF USE FOR SPECIFIC ONLINE SERVICES\n \nThe following table is a list\ + \ of Esri Products that have specific terms of use in addition to the general terms of use\ + \ as set forth in the General License Terms and Conditions of the License Agreement. Additional\ + \ terms of use are listed immediately below this table and are referenced by number(s),\ + \ shown in parentheses, immediately following each Product name in the following table (in\ + \ some cases, the additional terms of use referenced may be found in a separate Addendum,\ + \ as noted):\n \n▪ ArcGIS Online (1; 2; Addendum 2, Note 1; Addendum 2, Note 6)\n▪ \ + \ Esri Business Analyst Online (3; Addendum 2, Note 1)\n▪ Esri Business Analyst Online\ + \ Mobile (3; Addendum 2, Note 1)\n▪ Esri Community Analyst (3; Addendum 2, Note 1)\n\ + ▪ Esri Redistricting Online (Addendum 2, Note 1)\n▪ Esri MapStudio (4; Addendum 2,\ + \ Note 1; Addendum 2, Note 9)\n \nNotes:\n \n▪ If you do not license any of the Products\ + \ in the table above, these additional terms of use do not apply to you.\n▪ Additional\ + \ terms of use for Products ONLY APPLY to the Products that reference them by number in\ + \ the table above.\n \nAdditional Terms of Use for Products listed above:\n \n1. In\ + \ addition to the common terms of use of Online Services:\n \na. Licensee may use Licensee's\ + \ Esri Online Services account to build a Value-Added Application(s) for Licensee's internal\ + \ use.\n \nb. Licensee may also provide access to Licensee's Value-Added Application(s)\ + \ to third parties, subject to the following terms:\n \ni. Licensee may allow Anonymous\ + \ Users to access Licensee's Value-Added Application(s).\nii. Licensee shall not add\ + \ third parties as Named Users to Licensee's ArcGIS Online account for the purpose of allowing\ + \ third parties to access Licensee's Value-Added Application(s). This restriction does not\ + \ apply to third parties included within the definition of Named Users.\niii. Licensee\ + \ shall not provide a third party with access to ArcGIS Online Services enabled through\ + \ Licensee's ArcGIS Online account other than through Licensee's Value-Added Application(s).\ + \ This restriction does not apply to third parties included within the definition of Named\ + \ Users.\niv. Licensee is responsible for any fees accrued through the use of Licensee's\ + \ ArcGIS Online account by third parties accessing Licensee's Value-Added Application(s).\ + \ This includes Service Credits required to support third-party Online Services usage and\ + \ any additional subscription fees for Online Services as required.\nv. Licensee is\ + \ solely responsible for providing technical support for Licensee's Value-Added Application(s).\n\ + vi. Licensee will restrict third-party use of Online Services as required by the terms\ + \ of this Agreement.\nvii. Licensee may not remove or obscure any trademarks or logos\ + \ that would normally be displayed through the use of the Online Services without written\ + \ permission. Licensee must include attribution acknowledging that its application is using\ + \ Online Services provided by Esri, if attribution is not automatically displayed through\ + \ the use of Online Services. Guidelines are provided in the Documentation.\nviii. Licensee\ + \ may not embed a Named User credential into a Value-Added Application. For ArcGIS Online\ + \ for Organizations, Education, and Nongovernmental Organization/Nonprofit Organization\ + \ (NGO/NPO) Plan accounts, an App Login Credential may only be embedded into Value-Added\ + \ Applications that are used to provide public, anonymous access to ArcGIS Online. Licensee\ + \ may not embed or use ArcGIS Online App Login Credentials in Value-Added Applications for\ + \ internal use. Value-Added Applications used internally require Named User login credentials.\n\ + \ \nc. For ArcGIS Online ELA, ArcGIS Online for Organizations, and paid Developer Plan\ + \ accounts:\n \ni. Licensee is also permitted to\n \n(1) Charge an additional fee\ + \ to third parties to access Licensee's Value-Added Application(s), subject to the terms\ + \ of this License Agreement; and\n(2) Transfer Licensee's Value-Added Application(s) to\ + \ a third party's ArcGIS Online account, subject to the following:\n \n(a) Licensee may\ + \ charge third parties a fee for Licensee's Value-Added Application(s).\n(b) Licensee\ + \ is not obligated to provide technical support for the third party's general use of its\ + \ ArcGIS Online account not related to Licensee's Value-Added Application(s).\n(c) Licensee\ + \ is not responsible for any fees accrued through the third party's use of Licensee's Value-Added\ + \ Application(s) that have been transferred to or implemented on the third party's ArcGIS\ + \ Online account.\n(d) Licensee is not permitted to invite licensees of an ArcGIS Online\ + \ Public Plan to participate in private groups. This restriction also applies to licensees\ + \ of Education Plan accounts and NGO/NPO Plan accounts.\n \nd. For ArcGIS Online Public\ + \ Plan accounts, Development and Testing Plan accounts, Education Plan accounts, and NGO/NPO\ + \ use of ArcGIS Online for Organizations accounts: Licensee is not permitted to charge an\ + \ additional fee to third parties to access Licensee's Value-Added Application(s) or generate\ + \ more than incidental advertising revenue as a consequence of the deployment or use of\ + \ the Value-Added Application(s). Charging a fee to access Licensee's Value-Added Application(s)\ + \ or generating more than incidental advertising revenue requires an ArcGIS Online ELA,\ + \ ArcGIS Online for Organizations, or paid Developer Plan account.\n \ne. For ArcGIS\ + \ Online Public Plan accounts:\n \ni. Public Plan accounts are licensed for the personal\ + \ use of an individual. Any use of Public Plan accounts by an individual for the benefit\ + \ of a for-profit business or a government agency is prohibited.\n \n▪ This restriction\ + \ does not apply to educational institutions when used for teaching purposes only, qualified\ + \ NGO/NPO organizations, and press or media organizations. Individuals affiliated with these\ + \ specific types of organization are permitted to use ArcGIS Online Public Plan accounts\ + \ for the benefit of their affiliated organization(s).\n \nii. Public Plan account Licensees\ + \ are not permitted to create private groups or participate in any private group created\ + \ by licensees of ArcGIS Online for Organizations, Education, NGO/NPO, or ELA Plans.\n \n\ + f. For ArcGIS Online Development and Testing Plan accounts:\n \ni. Subject to the\ + \ terms of this License Agreement, Licensee is permitted to\n \n(1) Allow third parties\ + \ to access Licensee's Value-Added Application(s) powered by their Development and Testing\ + \ Plan account, but only if the Value-Added Application(s) is published for public access\ + \ and is not used for the benefit of a for-profit business or government agency.\n \n▪ \ + \ This restriction does not apply to educational institutions when used for teaching\ + \ purposes only, qualified NGO/NPO organizations, and press or media organizations. Individuals\ + \ affiliated with these specific types of organizations are permitted to use ArcGIS Online\ + \ Development and Testing Plan accounts for the benefit of their affiliated organization(s).\n\ + \ \nii. Development and Testing Plan account licensees are not permitted to create private\ + \ groups or participate in any private group created by licensees of ArcGIS Online for Organizations,\ + \ Education, NGO/NPO, or ELA Plans.\n \ng. For ArcGIS Online paid Developer Plan accounts\ + \ or Development and Testing Plan accounts:\n \ni. Licensee is limited to one million\ + \ (1,000,000) basemap and one million (1,000,000) geosearch Transactions per month in conjunction\ + \ with Licensee's account. \"Transaction\" is defined in the Documentation at ArcGIS Resources\ + \ at http://links.esri.com/agol/transactiondef.\n \nh. Licensee is not permitted to\ + \ be the licensee of an ArcGIS Online account for or on behalf of a third party.\n \n▪ \ + \ This restriction does not apply to education institutions that are permitted to be\ + \ licensees of ArcGIS Online Public Plan accounts on behalf of registered students of the\ + \ education institution for teaching purposes only. Education institutions are also permitted\ + \ to provide access to a single ArcGIS Online Public Plan account to more than one (1) registered\ + \ student when used for teaching purposes only.\n \ni. The terms \"Online ELA account,\"\ + \ \"Organizations Plan account,\" \"Developer Plan account,\" \"Public Plan account,\" \"\ + Development and Testing Plan account,\" and \"Education Plan account\" refer to different\ + \ types of ArcGIS Online accounts.\n \n2. Terms of Use for ArcGIS Online Services:\n\ + \ \na. World Geocoding Service: Licensee may not store the geocoded results generated\ + \ by the service without an ArcGIS Online account.\nb. Infographics Service: Licensee\ + \ may use the data accessible through this service for display purposes only. Licensee is\ + \ prohibited from saving any data accessible through this service.\n \n3. Licensee may\ + \ not display or post any combination of more than one hundred (100) Esri Business Analyst\ + \ Online or Esri Community Analyst Reports and maps on Licensee's external websites.\n4.\ + \ Licensee may create, publicly display, and distribute maps in hard copy and static\ + \ electronic format for news-reporting purposes, subject to any restrictions for ArcGIS\ + \ Online Data set forth in Addendum 2, Note 1.\n \nADDENDUM 4\nLIMITED USE PROGRAMS\n(E300-4)\n\ + \ \nThis Limited Use Programs Addendum (\"Addendum 4\") applies to any Licensee that has\ + \ been qualified by Esri or its authorized distributor to participate in any of the programs\ + \ described herein. This Addendum 4 includes the Licensee's existing master license agreement,\ + \ if any, or the License Agreement found at http://www.esri.com/legal/software-license (as\ + \ applicable, the \"License Agreement\"), which is incorporated by reference. This Addendum\ + \ 4 takes precedence over conflicting terms of the License Agreement. Esri reserves the\ + \ right to update the terms from time to time.\n \n▪ Educational Programs (1)\n▪ Grant\ + \ Programs (2)\n▪ Home Use Program (3)\n▪ Other Esri Limited Use Programs (4)\n \n\ + Notes\n \n1. Educational Programs: Licensee agrees to use Products solely for educational\ + \ purposes during the educational use Term. Licensee shall not use Products for any Administrative\ + \ Use unless Licensee has acquired an Administrative Use Term License. \"Administrative\ + \ Use\" means administrative activities that are not directly related to instruction or\ + \ education, such as asset mapping, facilities management, demographic analysis, routing,\ + \ campus safety, and accessibility analysis. Licensee shall not use Products for revenue-generating\ + \ or for-profit purposes.\n2. Grant Programs: Licensee may use Products only for Noncommercial\ + \ purposes. Except for cost recovery of using and operating the Products, Licensee shall\ + \ not use Products for revenue-generating or for-profit purposes.\n3. ArcGIS for Home\ + \ Use Program:\n \na. All ArcGIS for Home Use Program Products are provided as Term\ + \ Licenses and are identified on Esri's Home Use Program website found at http://www.esri.com/software/arcgis/arcgis-for-home\ + \ or Licensee's authorized distributor's website.\nb. Esri grants to Licensee a personal,\ + \ nonexclusive, nontransferable, Single Use License, without the authorization to install\ + \ or use a second copy, solely to use the Products provided under the ArcGIS for Home Use\ + \ Program as set forth in the applicable Ordering Documents (i) for which the applicable\ + \ license fees have been paid, (ii) for Licensee's own Noncommercial internal use, (iii)\ + \ in accordance with this License Agreement and the configuration ordered by Licensee or\ + \ as authorized by Esri or its authorized distributor, and (iv) for a period of twelve (12)\ + \ months unless terminated earlier in accordance with the License Agreement. \"Noncommercial\"\ + \ means use in a personal or individual capacity that (i) is not compensated in any fashion;\ + \ (ii) is not intended to produce any works for commercial use or compensation; (iii) is\ + \ not intended to provide a commercial service; and (iv) is neither conducted nor funded\ + \ by any person or entity engaged in the commercial use, application, or exploitation of\ + \ works similar to the licensed Products.\nc. Installation Support. Installation Support\ + \ for a period of ninety (90) days is included with ArcGIS for Home Use. As discussed further\ + \ on the Esri or authorized distributor's website, Esri provides technical support in response\ + \ to specific inquiries. Installation Support will apply only to unmodified Software. Software\ + \ is provided only for standard hardware platforms and operating systems supported by Esri\ + \ as described in the Software Documentation. Esri is not responsible for making or arranging\ + \ for updates to interfaces for nonstandard devices or custom applications.\n \nEsri Installation\ + \ Support will be provided in compliance with the Esri ArcGIS for Home Use Installation\ + \ Support document on the Esri website at http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/home-use-installation-support.pdf.\ + \ Esri supports users solely with the installation of Esri Software. Esri's Support website\ + \ is at http://support.esri.com/en/support. Support provided by an authorized distributor\ + \ will be in accordance with the distributor's technical support program terms and conditions.\n\ + \ \n4. Other Esri Limited Use Programs: If Licensee acquires Products under any limited\ + \ use program not listed above, Licensee's use of the Products may be subject to the terms\ + \ set forth in the applicable launching page or enrollment form or as described on Esri's\ + \ website in addition to the nonconflicting terms of this Addendum 4. All such program terms\ + \ are incorporated herein by reference." json: esri.json - yml: esri.yml + yaml: esri.yml html: esri.html - text: esri.LICENSE + license: esri.LICENSE - license_key: esri-devkit + category: Proprietary Free spdx_license_key: LicenseRef-scancode-esri-devkit other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Copyright 2006 ESRI + + All rights reserved under the copyright laws of the United States + and applicable international laws, treaties, and conventions. + + You may freely redistribute and use this sample code, with or + without modification, provided you include the original copyright + notice and use restrictions. + + See use restrictions at /arcgis/developerkit/userestrictions. json: esri-devkit.json - yml: esri-devkit.yml + yaml: esri-devkit.yml html: esri-devkit.html - text: esri-devkit.LICENSE + license: esri-devkit.LICENSE - license_key: etalab-2.0 + category: Permissive spdx_license_key: etalab-2.0 other_spdx_license_keys: - LicenseRef-scancode-etalab-2.0 - LicenseRef-scancode-etalab-2.0-fr is_exception: no is_deprecated: no - category: Permissive + text: | + LICENCE OUVERTE / OPEN LICENCE + =================================================================== + + - Version 2.0 + - Avril 2017 + + + « RÉUTILISATION » DE L’« INFORMATION » SOUS CETTE LICENCE + ------------------------------------------------------------------- + + Le « Concédant » concède au « Réutilisateur » un droit non exclusif et gratuit + de libre « Réutilisation » de l’« Information » objet de la présente licence, + à des fins commerciales ou non, dans le monde entier et pour une durée + illimitée, dans les conditions exprimées ci-dessous. + + Le « Réutilisateur » est libre de réutiliser l’« Information » : + + - de la reproduire, la copier, + - de l’adapter, la modifier, l’extraire et la transformer, pour créer des + « Informations dérivées », des produits ou des services, + - de la communiquer, la diffuser, la redistribuer, la publier et la transmettre, + - de l’exploiter à titre commercial, par exemple en la combinant avec d’autres + informations, ou en l’incluant dans son propre produit ou application. + + Sous réserve de : + + - mentionner la paternité de l’« Information » : sa source (au moins le nom du + « Concédant ») et la date de dernière mise à jour de l’« Information » + réutilisée. + + Le « Réutilisateur » peut notamment s’acquitter de cette condition en renvoyant, + par un lien hypertexte, vers la source de « l’Information » et assurant une + mention effective de sa paternité. + + Par exemple : + + « Ministère de xxx - Données originales téléchargées sur + http://www.data.gouv.fr/fr/datasets/xxx/, mise à jour du 14 février 2017 ». + + Cette mention de paternité ne confère aucun caractère officiel à la + « Réutilisation » de l’« Information », et ne doit pas suggérer une quelconque + reconnaissance ou caution par le « Concédant », ou par toute autre entité + publique, du « Réutilisateur » ou de sa « Réutilisation ». + + + « DONNÉES À CARACTÈRE PERSONNEL » + ------------------------------------------------------------------- + + L’« Information » mise à disposition peut contenir des « Données à caractère + personnel » pouvant faire l’objet d’une « Réutilisation ». Si tel est le cas, + le « Concédant » informe le « Réutilisateur » de leur présence. + + L’« Information » peut être librement réutilisée, dans le cadre des droits + accordés par la présente licence, à condition de respecter le cadre légal + relatif à la protection des données à caractère personnel. + + + « DROITS DE PROPRIÉTÉ INTELLECTUELLE » + ------------------------------------------------------------------- + + Il est garanti au « Réutilisateur » que les éventuels « Droits de propriété + intellectuelle » détenus par des tiers ou par le « Concédant » sur + l’« Information » ne font pas obstacle aux droits accordés par la présente + licence. + + Lorsque le « Concédant » détient des « Droits de propriété intellectuelle » + cessibles sur l’« Information », il les cède au « Réutilisateur » de façon non + exclusive, à titre gracieux, pour le monde entier, pour toute la durée des + « Droits de propriété intellectuelle », et le « Réutilisateur » peut faire tout + usage de l’« Information » conformément aux libertés et aux conditions définies + par la présente licence. + + + RESPONSABILITÉ + ------------------------------------------------------------------- + + L’« Information » est mise à disposition telle que produite ou reçue par le + « Concédant », sans autre garantie expresse ou tacite que celles prévues par la + présente licence. L’absence de défauts ou d’erreurs éventuellement contenues + dans l’« Information », comme la fourniture continue de l’« Information » n’est + pas garantie par le « Concédant ». Il ne peut être tenu pour responsable de + toute perte, préjudice ou dommage de quelque sorte causé à des tiers du fait de + la « Réutilisation ». + + Le « Réutilisateur » est seul responsable de la « Réutilisation » de + l’« Information ». + + La « Réutilisation » ne doit pas induire en erreur des tiers quant au contenu + de l’« Information », sa source et sa date de mise à jour. + + + DROIT APPLICABLE + ------------------------------------------------------------------- + + La présente licence est régie par le droit français. + + + COMPATIBILITÉ DE LA PRÉSENTE LICENCE + ------------------------------------------------------------------- + + La présente licence a été conçue pour être compatible avec toute licence libre + qui exige au moins la mention de paternité et notamment avec la version + antérieure de la présente licence ainsi qu’avec les licences : + + - « Open Government Licence » (OGL) du Royaume-Uni, + - « Creative Commons Attribution » (CC-BY) de Creative Commons et + - « Open Data Commons Attribution » (ODC-BY) de l’Open Knowledge Foundation. + + + DÉFINITIONS + ------------------------------------------------------------------- + + Sont considérés, au sens de la présente licence comme : + + Le « Concédant » : toute personne concédant un droit de « Réutilisation » sur + l’« Information » dans les libertés et les conditions prévues par la présente + licence + + L’« Information » : + + - toute information publique figurant dans des documents communiqués ou publiés + par une administration mentionnée au premier alinéa de l’article L.300-2 du + CRPA; + - toute information mise à disposition par toute personne selon les termes et + conditions de la présente licence. + + La « Réutilisation » : l’utilisation de l’« Information » à d’autres fins que + celles pour lesquelles elle a été produite ou reçue. + + Le « Réutilisateur »: toute personne qui réutilise les « Informations » + conformément aux conditions de la présente licence. + + Des « Données à caractère personnel » : toute information se rapportant à une + personne physique identifiée ou identifiable, pouvant être identifiée + directement ou indirectement. Leur « Réutilisation » est subordonnée au respect + du cadre juridique en vigueur. + + Une « Information dérivée » : toute nouvelle donnée ou information créées + directement à partir de l’« Information » ou à partir d’une combinaison de + l’« Information » et d’autres données ou informations non soumises à cette + licence. + + Les « Droits de propriété intellectuelle » : tous droits identifiés comme tels + par le Code de la propriété intellectuelle (notamment le droit d’auteur, droits + voisins au droit d’auteur, droit sui generis des producteurs de bases de + données…). + + + À PROPOS DE CETTE LICENCE + ------------------------------------------------------------------- + + La présente licence a vocation à être utilisée par les administrations pour la + réutilisation de leurs informations publiques. Elle peut également être + utilisée par toute personne souhaitant mettre à disposition de + l’« Information » dans les conditions définies par la présente licence. + + La France est dotée d’un cadre juridique global visant à une diffusion + spontanée par les administrations de leurs informations publiques afin d’en + permettre la plus large réutilisation. + + Le droit de la « Réutilisation » de l’« Information » des administrations est + régi par le code des relations entre le public et l’administration (CRPA). + + Cette licence facilite la réutilisation libre et gratuite des informations + publiques et figure parmi les licences qui peuvent être utilisées par + l’administration en vertu du décret pris en application de l’article L.323-2 + du CRPA. + + Etalab est la mission chargée, sous l’autorité du Premier ministre, d’ouvrir le + plus grand nombre de données publiques des administrations de l’Etat et de ses + établissements publics. Elle a réalisé la Licence Ouverte pour faciliter la + réutilisation libre et gratuite de ces informations publiques, telles que + définies par l’article L321-1 du CRPA. + + Cette licence est la version 2.0 de la Licence Ouverte. + + Etalab se réserve la faculté de proposer de nouvelles versions de la Licence + Ouverte. Cependant, les « Réutilisateurs » pourront continuer à réutiliser les + informations qu’ils ont obtenues sous cette licence s’ils le souhaitent. json: etalab-2.0.json - yml: etalab-2.0.yml + yaml: etalab-2.0.yml html: etalab-2.0.html - text: etalab-2.0.LICENSE + license: etalab-2.0.LICENSE - license_key: etalab-2.0-en + category: Permissive spdx_license_key: LicenseRef-scancode-etalab-2.0-en other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + # OPEN LICENCE 2.0/LICENCE OUVERTE 2.0 + + ## “Reuse” of the “Information” covered by this licence + + The “Grantor” grants the “Reuser” the free, non-exclusive right to “Reuse” the “Information” subject of this licence, for commercial or non-commercial purposes, worldwide and for an unlimited period, in accordance with the conditions stated below. + + **The “Reuser” is free to reuse the “Information”:** + + - To reproduce it, copy it. + - To adapt, modify, retrieve and transform it in order to create “derived information”, products and services. + - To share, disseminate, redistribute, publish and transmit it. + - To exploit it for commercial purposes, e.g., by combining it with other information, or by including it in his/her own product or application. + + **Subject to:** + + - An acknowledgement of the authorship of the “Information”: its source (at least, the name of the “Grantor”) and the date of the most recent update of the reused “Information”. Specifically, the “Reuser” may satisfy this condition by pointing, via a hypertext link, to the source of “the Information” and so supplying an actual acknowledgement of its authorship. + + **For example:** + + > “Ministry of xxx—Original data downloaded from `http://www.data.gouv.fr/fr/datasets/xxx/`, updated on 14 February 2017”. + + This acknowledgement of authorship does not confer any official status on the “Reuse” of the “Information”, and must not suggest any sort of recognition or endorsement on the part of the “Grantor”, or any other public entity, of the “Reuser” or of their “Reuse”. + + ## Personal data + + The “Information” made available may contain “Personal data” that may be subject to “Reuse”. If this is the case, the “Grantor” informs the “Reuser” about its existence. The “Information” may be freely reused, within the rights granted by this licence, subject to compliance with the legal framework relating to personal data protection. + + ## Intellectual property rights + + It is guaranteed to The “Reuser” that potential “Intellectual property rights” held by third parties or by the “Grantor” on “Information” do not interfere with the rights granted by this licence. + + When the “Grantor” holds transferable “Intellectual property rights” on the “Information”, he/she assigns these to the “Reuser” on a non-exclusive basis, free of charge, worldwide, for the entire duration of the “Intellectual property rights”, and the “Reuser” is free to use the “Information” for any purpose that complies with the rights and conditions defined in this licence. + + ## Liability + + The “Information” is made available as it is produced or received by the “Grantor”, without any other express or tacit guarantee than those set out in this licence. The “Grantor” does not guarantee the absence of errors or inaccuracies in the “Information”, nor a continuous supply of the “Information”. He/she cannot be held responsible for any loss, prejudice or damage of any kind caused to third parties as a result of the “Reuse”. + + The “Reuser” is solely responsible for the “Reuse” of the “Information”. This “Reuse” must not mislead third parties as to the contents of the “Information”, its source or its date of update. + + ## Applicable legislation + + This licence is governed by French law. + + ### Compatibility of this licence + + This licence has been designed to be compatible with any free licence that at least requires an acknowledgement of authorship, and specifically with the previous version of this licence as well as with the following licences: United Kingdom’s “Open Government Licence” (OGL), Creative Commons’ “Creative Commons Attribution” (CC-BY) and Open Knowledge Foundation’s “Open Data Commons Attribution” (ODC-BY). + + ## Definitions + + Within the meaning of this licence, are to be considered as : + + - The “Grantor”: any person granting the right to “Reuse” “Information” under the rights and conditions set out in this licence. + - The “Information”: + - any public information contained in documents disclosed or published by any administration referred to in the first paragraph of Article L. 300-2 of the code des relations entre le public et l’administration (CRPA), + - any information made available by any person under the terms and conditions of this licence. + - The “Reuse”: the use of the “Information” for other purposes than those for which it was produced or received. + - The“Reuser”: any person reusing the “Information” in accordance with the conditions of this licence. + - “Personal data”: any information relating to an identified or identifiable natural person who may be identified directly or indirectly. Its “Reuse” is conditional on the respect of the existing legal framework. + - “Derived information”: any new data or information created directly from the “Information” or from a combination of the “Information” and other data or information not subject to this licence. + - “Intellectual property rights”: all rights identified as such under the code de la propriété intellectuelle (including copyright, rights related to copyright, sui generis rights of database producers, etc.). + + ## About this licence + + This licence is intended to be used by administrations for the reuse of their public information. It can also be used by any individual wishing to supply “Information” under the conditions defined in this licence. + + France has a comprehensive legal framework aiming at the spontaneous dissemination by the administrations of their public information in order to ensure the widest possible reuse of this information. + + The right to “Reuse” the administrations’ “Information” is governed by the code des relations entre le public et l’administration (CRPA). + + This licence facilitates the unrestricted and free of charge reuse of public information and is one of the licences which can be used by the administration pursuant to the decree issued under article L. 323-2 of the CRPA. + + Under the Prime Minister’s authority, the Etalab mission is mandated to open up the maximum amount of data held by State administrations and public institutions. Etalab has drawn up the Open Licence to facilitate the unrestricted and free of charge reuse of public information, as defined by article L. 321-1 of the CRPA. + + This licence is version 2.0 of the Open Licence. + + Etalab reserves the right to propose new versions of the Open Licence. Nevertheless, “Reusers” may continue to reuse information obtained under this licence should they so wish. json: etalab-2.0-en.json - yml: etalab-2.0-en.yml + yaml: etalab-2.0-en.yml html: etalab-2.0-en.html - text: etalab-2.0-en.LICENSE + license: etalab-2.0-en.LICENSE - license_key: etalab-2.0-fr + category: Unstated License spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Unstated License + text: | + LICENCE OUVERTE / OPEN LICENCE + =================================================================== + + - Version 2.0 + - Avril 2017 + + + « RÉUTILISATION » DE L’« INFORMATION » SOUS CETTE LICENCE + ------------------------------------------------------------------- + + Le « Concédant » concède au « Réutilisateur » un droit non exclusif et gratuit + de libre « Réutilisation » de l’« Information » objet de la présente licence, + à des fins commerciales ou non, dans le monde entier et pour une durée + illimitée, dans les conditions exprimées ci-dessous. + + Le « Réutilisateur » est libre de réutiliser l’« Information » : + + - de la reproduire, la copier, + - de l’adapter, la modifier, l’extraire et la transformer, pour créer des + « Informations dérivées », des produits ou des services, + - de la communiquer, la diffuser, la redistribuer, la publier et la transmettre, + - de l’exploiter à titre commercial, par exemple en la combinant avec d’autres + informations, ou en l’incluant dans son propre produit ou application. + + Sous réserve de : + + - mentionner la paternité de l’« Information » : sa source (au moins le nom du + « Concédant ») et la date de dernière mise à jour de l’« Information » + réutilisée. + + Le « Réutilisateur » peut notamment s’acquitter de cette condition en renvoyant, + par un lien hypertexte, vers la source de « l’Information » et assurant une + mention effective de sa paternité. + + Par exemple : + + « Ministère de xxx - Données originales téléchargées sur + http://www.data.gouv.fr/fr/datasets/xxx/, mise à jour du 14 février 2017 ». + + Cette mention de paternité ne confère aucun caractère officiel à la + « Réutilisation » de l’« Information », et ne doit pas suggérer une quelconque + reconnaissance ou caution par le « Concédant », ou par toute autre entité + publique, du « Réutilisateur » ou de sa « Réutilisation ». + + + « DONNÉES À CARACTÈRE PERSONNEL » + ------------------------------------------------------------------- + + L’« Information » mise à disposition peut contenir des « Données à caractère + personnel » pouvant faire l’objet d’une « Réutilisation ». Si tel est le cas, + le « Concédant » informe le « Réutilisateur » de leur présence. + + L’« Information » peut être librement réutilisée, dans le cadre des droits + accordés par la présente licence, à condition de respecter le cadre légal + relatif à la protection des données à caractère personnel. + + + « DROITS DE PROPRIÉTÉ INTELLECTUELLE » + ------------------------------------------------------------------- + + Il est garanti au « Réutilisateur » que les éventuels « Droits de propriété + intellectuelle » détenus par des tiers ou par le « Concédant » sur + l’« Information » ne font pas obstacle aux droits accordés par la présente + licence. + + Lorsque le « Concédant » détient des « Droits de propriété intellectuelle » + cessibles sur l’« Information », il les cède au « Réutilisateur » de façon non + exclusive, à titre gracieux, pour le monde entier, pour toute la durée des + « Droits de propriété intellectuelle », et le « Réutilisateur » peut faire tout + usage de l’« Information » conformément aux libertés et aux conditions définies + par la présente licence. + + + RESPONSABILITÉ + ------------------------------------------------------------------- + + L’« Information » est mise à disposition telle que produite ou reçue par le + « Concédant », sans autre garantie expresse ou tacite que celles prévues par la + présente licence. L’absence de défauts ou d’erreurs éventuellement contenues + dans l’« Information », comme la fourniture continue de l’« Information » n’est + pas garantie par le « Concédant ». Il ne peut être tenu pour responsable de + toute perte, préjudice ou dommage de quelque sorte causé à des tiers du fait de + la « Réutilisation ». + + Le « Réutilisateur » est seul responsable de la « Réutilisation » de + l’« Information ». + + La « Réutilisation » ne doit pas induire en erreur des tiers quant au contenu + de l’« Information », sa source et sa date de mise à jour. + + + DROIT APPLICABLE + ------------------------------------------------------------------- + + La présente licence est régie par le droit français. + + + COMPATIBILITÉ DE LA PRÉSENTE LICENCE + ------------------------------------------------------------------- + + La présente licence a été conçue pour être compatible avec toute licence libre + qui exige au moins la mention de paternité et notamment avec la version + antérieure de la présente licence ainsi qu’avec les licences : + + - « Open Government Licence » (OGL) du Royaume-Uni, + - « Creative Commons Attribution » (CC-BY) de Creative Commons et + - « Open Data Commons Attribution » (ODC-BY) de l’Open Knowledge Foundation. + + + DÉFINITIONS + ------------------------------------------------------------------- + + Sont considérés, au sens de la présente licence comme : + + Le « Concédant » : toute personne concédant un droit de « Réutilisation » sur + l’« Information » dans les libertés et les conditions prévues par la présente + licence + + L’« Information » : + + - toute information publique figurant dans des documents communiqués ou publiés + par une administration mentionnée au premier alinéa de l’article L.300-2 du + CRPA; + - toute information mise à disposition par toute personne selon les termes et + conditions de la présente licence. + + La « Réutilisation » : l’utilisation de l’« Information » à d’autres fins que + celles pour lesquelles elle a été produite ou reçue. + + Le « Réutilisateur »: toute personne qui réutilise les « Informations » + conformément aux conditions de la présente licence. + + Des « Données à caractère personnel » : toute information se rapportant à une + personne physique identifiée ou identifiable, pouvant être identifiée + directement ou indirectement. Leur « Réutilisation » est subordonnée au respect + du cadre juridique en vigueur. + + Une « Information dérivée » : toute nouvelle donnée ou information créées + directement à partir de l’« Information » ou à partir d’une combinaison de + l’« Information » et d’autres données ou informations non soumises à cette + licence. + + Les « Droits de propriété intellectuelle » : tous droits identifiés comme tels + par le Code de la propriété intellectuelle (notamment le droit d’auteur, droits + voisins au droit d’auteur, droit sui generis des producteurs de bases de + données…). + + + À PROPOS DE CETTE LICENCE + ------------------------------------------------------------------- + + La présente licence a vocation à être utilisée par les administrations pour la + réutilisation de leurs informations publiques. Elle peut également être + utilisée par toute personne souhaitant mettre à disposition de + l’« Information » dans les conditions définies par la présente licence. + + La France est dotée d’un cadre juridique global visant à une diffusion + spontanée par les administrations de leurs informations publiques afin d’en + permettre la plus large réutilisation. + + Le droit de la « Réutilisation » de l’« Information » des administrations est + régi par le code des relations entre le public et l’administration (CRPA). + + Cette licence facilite la réutilisation libre et gratuite des informations + publiques et figure parmi les licences qui peuvent être utilisées par + l’administration en vertu du décret pris en application de l’article L.323-2 + du CRPA. + + Etalab est la mission chargée, sous l’autorité du Premier ministre, d’ouvrir le + plus grand nombre de données publiques des administrations de l’Etat et de ses + établissements publics. Elle a réalisé la Licence Ouverte pour faciliter la + réutilisation libre et gratuite de ces informations publiques, telles que + définies par l’article L321-1 du CRPA. + + Cette licence est la version 2.0 de la Licence Ouverte. + + Etalab se réserve la faculté de proposer de nouvelles versions de la Licence + Ouverte. Cependant, les « Réutilisateurs » pourront continuer à réutiliser les + informations qu’ils ont obtenues sous cette licence s’ils le souhaitent. json: etalab-2.0-fr.json - yml: etalab-2.0-fr.yml + yaml: etalab-2.0-fr.yml html: etalab-2.0-fr.html - text: etalab-2.0-fr.LICENSE + license: etalab-2.0-fr.LICENSE - license_key: eu-datagrid + category: Permissive spdx_license_key: EUDatagrid other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + EU DataGrid Software License + + Copyright (c) 2001 EU DataGrid. All rights reserved. + + This software includes voluntary contributions made to the EU DataGrid. For more information on the EU DataGrid, please see http://www.eu-datagrid.org/. + + Installation, use, reproduction, display, modification and redistribution of this software, with or without modification, in source and binary forms, are permitted. Any exercise of rights under this license by you or your sub-licensees is subject to the following conditions: + + 1. Redistributions of this software, with or without modification, must reproduce the above copyright notice and the above license statement as well as this list of conditions, in the software, the user documentation and any other materials provided with the software. + + 2. The user documentation, if any, included with a redistribution, must include the following notice: "This product includes software developed by the EU DataGrid (http://www.eu-datagrid.org/)." + + Alternatively, if that is where third-party acknowledgments normally appear, this acknowledgment must be reproduced in the software itself. + + 3. The names "EDG", "EDG Toolkit", and "EU DataGrid Project" may not be used to endorse or promote software, or products derived therefrom, except with prior written permission by hep-project-grid-edg-license@cern.ch. + + 4. You are under no obligation to provide anyone with any bug fixes, patches, upgrades or other modifications, enhancements or derivatives of the features,functionality or performance of this software that you may develop. However, if you publish or distribute your modifications, enhancements or derivative works without contemporaneously requiring users to enter into a separate written license agreement, then you are deemed to have granted participants in the EU DataGrid a worldwide, non-exclusive, royalty-free, perpetual license to install, use, reproduce, display, modify, redistribute and sub-license your modifications, enhancements or derivative works, whether in binary or source code form, under the license conditions stated in this list of conditions. + + 5. DISCLAIMER + + THIS SOFTWARE IS PROVIDED BY THE EU DATAGRID AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, OF SATISFACTORY QUALITY, AND FITNESS FOR A PARTICULAR PURPOSE OR USE ARE DISCLAIMED. THE EU DATAGRID AND CONTRIBUTORS MAKE NO REPRESENTATION THAT THE SOFTWARE, MODIFICATIONS, ENHANCEMENTS OR DERIVATIVE WORKS THEREOF, WILL NOT INFRINGE ANY PATENT, COPYRIGHT, TRADE SECRET OR OTHER PROPRIETARY RIGHT. + + 6. LIMITATION OF LIABILITY + + THE EU DATAGRID AND CONTRIBUTORS SHALL HAVE NO LIABILITY TO LICENSEE OR OTHER PERSONS FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, LOSS OF USE, DATA OR PROFITS, OR BUSINESS INTERRUPTION, HOWEVER CAUSED AND ON ANY THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR OTHERWISE, ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. json: eu-datagrid.json - yml: eu-datagrid.yml + yaml: eu-datagrid.yml html: eu-datagrid.html - text: eu-datagrid.LICENSE + license: eu-datagrid.LICENSE - license_key: eupl-1.0 + category: Copyleft spdx_license_key: EUPL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "European Union Public Licence V.1.0 \nEUPL © the European Community 2007 \n\nThis European\ + \ Union Public Licence (the \"EUPL\") applies to the Work or Software (as defined below)\ + \ which is provided under the terms of this Licence. Any use of the Work, other than as\ + \ authorised under this Licence is prohibited (to the extent such use is covered by a right\ + \ of the copyright holder of the Work). The Original Work is provided under the terms of\ + \ this Licence when the Licensor (as defined below) has placed the following notice immediately\ + \ following the copyright notice for the Original Work: \n\n Licensed under the EUPL\ + \ V.1.0 \n\nor has expressed by any other mean his willingness to license under the EUPL.\ + \ \n\n1. Definitions. In this Licence, the following terms have the following meaning:\ + \ \n\n- The Licence: this Licence. \n\n- The Original Work or the Software: the software\ + \ distributed and/or communicated by the Licensor under this Licence, available as Source\ + \ Code and also as Executable Code as the case may be. \n\n- Derivative Works: the works\ + \ or software that could be created by the Licensee, based upon the Original Work or modifications\ + \ thereof. This Licence does not define the extent of modification or dependence on the\ + \ Original Work required in order to classify a work as a Derivative Work; this extent is\ + \ determined by copyright law applicable in the country mentioned in Article 15. \n\n-\ + \ The Work: the Original Work and/or its Derivative Works. \n\n- The Source Code: the human-readable\ + \ form of the Work which is the most convenient for people to study and modify. \n\n- The\ + \ Executable Code: any code which has generally been compiled and which is meant to be interpreted\ + \ by a computer as a program. \n\n- The Licensor: the natural or legal person that distributes\ + \ and/or communicates the Work under the Licence. \n\n- Contributor(s): any natural or legal\ + \ person who modifies the Work under the Licence, or otherwise contributes to the creation\ + \ of a Derivative Work. \n\n- The Licensee or \"You\": any natural or legal person who\ + \ makes any usage of the Software under the terms of the Licence. - Distribution and/or\ + \ Communication: any act of selling, giving, lending, renting, distributing, communicating,\ + \ transmitting, or otherwise making available, on-line or off-line, copies of the Work at\ + \ the disposal of any other natural or legal person. \n\n2. Scope of the rights granted\ + \ by the Licence\n\nThe Licensor hereby grants You a world-wide, royalty-free, non-exclusive,\ + \ sub-licensable licence to do the following, for the duration of copyright vested in the\ + \ Original Work: \n- use the Work in any circumstance and for all usage, \n- reproduce the\ + \ Work, \n- modify the Original Work, and make Derivative Works based upon the Work, \n\ + - communicate to the public, including the right to make available or display the Work or\ + \ copies thereof to the public and perform publicly, as the case may be, the Work, \n- distribute\ + \ the Work or copies thereof, \n- lend and rent the Work or copies thereof, \n- sub-license\ + \ rights in the Work or copies thereof. \n\nThose rights can be exercised on any media,\ + \ supports and formats, whether now known or later invented, as far as the applicable law\ + \ permits so. In the countries where moral rights apply, the Licensor waives his right to\ + \ exercise his moral right to the extent allowed by law in order to make effective the licence\ + \ of the economic rights here above listed. \n\nThe Licensor grants to the Licensee royalty-free,\ + \ non exclusive usage rights to any patents held by the Licensor, to the extent necessary\ + \ to make use of the rights granted on the Work under this Licence. \n\n3. Communication\ + \ of the Source Code\nThe Licensor may provide the Work either in its Source Code form,\ + \ or as Executable Code. If the Work is provided as Executable Code, the Licensor provides\ + \ in addition a machine readable copy of the Source Code of the Work along with each copy\ + \ of the Work that the Licensor distributes or indicates, in a notice following the copyright\ + \ notice attached to the Work, a repository where the Source Code is easily and freely accessible\ + \ for as long as the Licensor continues to distribute and/or communicate the Work. \n\n\ + 4. Limitations on copyright\nNothing in this Licence is intended to deprive the Licensee\ + \ of the benefits from any exception or limitation to the exclusive rights of the rights\ + \ owners in the Original Work or Software, of the exhaustion of those rights or of other\ + \ applicable limitations thereto. \n\n5. Obligations of the Licensee\nThe grant of the rights\ + \ mentioned above is subject to some restrictions and obligations imposed on the Licensee.\ + \ Those obligations are the following: \n\nAttribution right: the Licensee shall keep intact\ + \ all copyright, patent or trademarks notices and all notices that refer to the Licence\ + \ and to the disclaimer of warranties. The Licensee must include a copy of such notices\ + \ and a copy of the Licence with every copy of the Work he/she distributes and/or communicates.\ + \ The Licensee must cause any Derivative Work to carry prominent notices stating that the\ + \ Work has been modified and the date of modification. \n\nCopyleft clause: If the Licensee\ + \ distributes and/or communicates copies of the Original Works or Derivative Works based\ + \ upon the Original Work, this Distribution and/or Communication will be done under the\ + \ terms of this Licence. The Licensee (becoming Licensor) cannot offer or impose any additional\ + \ terms or conditions on the Work or Derivative Work that alter or restrict the terms of\ + \ the Licence. \n\nCompatibility clause: If the Licensee Distributes and/or Communicates\ + \ Derivative Works or copies thereof based upon both the Original Work and another work\ + \ licensed under a Compatible Licence, this Distribution and/or Communication can be done\ + \ under the terms of this Compatible Licence. For the sake of this clause, \"Compatible\ + \ Licence\" refers to the licences listed in the appendix attached to this Licence. Should\ + \ the Licensee’s obligations under the Compatible Licence conflict with his/her obligations\ + \ under this Licence, the obligations of the Compatible Licence shall prevail. \n\nProvision\ + \ of Source Code: When distributing and/or communicating copies of the Work, the Licensee\ + \ will provide a machine-readable copy of the Source Code or indicate a repository where\ + \ this Source will be easily and freely available for as long as the Licensee continues\ + \ to distribute and/or communicate the Work. \n\nLegal Protection: This Licence does not\ + \ grant permission to use the trade names, trademarks, service marks, or 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 copyright notice. \n\n6. Chain of Authorship\nThe original\ + \ Licensor warrants that the copyright in the Original Work granted hereunder is owned by\ + \ him/her or licensed to him/her and that he/she has the power and authority to grant the\ + \ Licence. Each Contributor warrants that the copyright in the modifications he/she brings\ + \ to the Work are owned by him/her or licensed to him/her and that he/she has the power\ + \ and authority to grant the Licence. Each time You, as a Licensee, receive the Work, the\ + \ original Licensor and subsequent Contributors grant You a licence to their contributions\ + \ to the Work, under the terms of this Licence. \n\n7. Disclaimer of Warranty\nThe Work\ + \ is a work in progress, which is continuously improved by numerous contributors. It is\ + \ not a finished work and may therefore contain defects or \"bugs\" inherent to this type\ + \ of software development. For the above reason, the Work is provided under the Licence\ + \ on an \"as is\" basis and without warranties of any kind concerning the Work, including\ + \ without limitation merchantability, fitness for a particular purpose, absence of defects\ + \ or errors, accuracy, non-infringement of intellectual property rights other than copyright\ + \ as stated in Article 6 of this Licence. This disclaimer of warranty is an essential part\ + \ of the Licence and a condition for the grant of any rights to the Work. \n\n8. Disclaimer\ + \ of Liability\nExcept in the cases of wilful misconduct or damages directly caused to natural\ + \ persons, the \nLicensor will in no event be liable for any direct or indirect, material\ + \ or moral, damages of \nany kind, arising out of the Licence or of the use of the Work,\ + \ including without limitation, \ndamages for loss of goodwill, work stoppage, computer\ + \ failure or malfunction, loss of data or \nany commercial damage, even if the Licensor\ + \ has been advised of the possibility of such \ndamage. However, the Licensor will be liable\ + \ under statutory product liability laws as far such \nlaws apply to the Work. \n\n9. Additional\ + \ agreements\nWhile distributing the Original Work or Derivative Works, You may choose to\ + \ conclude an \nadditional agreement to offer, and charge a fee for, acceptance of support,\ + \ warranty, \nindemnity, or other liability obligations and/or services consistent with\ + \ this Licence. \n\nHowever, in accepting such obligations, You may act only on your own\ + \ behalf and on your \nsole responsibility, not on behalf of the original Licensor or any\ + \ other Contributor, and only if \nYou agree to indemnify, defend, and hold each Contributor\ + \ harmless for any liability incurred \nby, or claims asserted against such Contributor\ + \ by the fact You have accepted any such \nwarranty or additional liability. \n\n10. Acceptance\ + \ of the Licence\nThe provisions of this Licence can be accepted by clicking on an icon\ + \ \"I agree\" placed under \nthe bottom of a window displaying the text of this Licence\ + \ or by affirming consent in any \nother similar way, in accordance with the rules of applicable\ + \ law. Clicking on that icon \nindicates your clear and irrevocable acceptance of this Licence\ + \ and all of its terms and conditions. \n\nSimilarly, you irrevocably accept this Licence\ + \ and all of its terms and conditions by \nexercising any rights granted to You by Article\ + \ 2 of this Licence, such as the use of the Work, \nthe creation by You of a Derivative\ + \ Work or the Distribution and/or Communication by You \nof the Work or copies thereof.\ + \ \n\n11. Information to the public\nIn case of any Distribution and/or Communication of\ + \ the Work by means of electronic \ncommunication by You (for example, by offering to download\ + \ the Work from a remote \nlocation) the distribution channel or media (for example, a website)\ + \ must at least provide to \nthe public the information requested by the applicable law\ + \ regarding the identification and \naddress of the Licensor, the Licence and the way it\ + \ may be accessible, concluded, stored and \nreproduced by the Licensee. \n\n12. Termination\ + \ of the Licence\nThe Licence and the rights granted hereunder will terminate automatically\ + \ upon any breach by \nthe Licensee of the terms of the Licence. \n\nSuch a termination\ + \ will not terminate the licences of any person who has received the Work \nfrom the Licensee\ + \ under the Licence, provided such persons remain in full compliance with \nthe Licence.\ + \ \n\n13. Miscellaneous\nWithout prejudice of Article 9 above, the Licence represents the\ + \ complete agreement between \nthe Parties as to the Work licensed hereunder. \n\nIf any\ + \ provision of the Licence is invalid or unenforceable under applicable law, this will not\ + \ \naffect the validity or enforceability of the Licence as a whole. Such provision will\ + \ be \nconstrued and/or reformed so as necessary to make it valid and enforceable. \n\n\ + The European Commission may put into force translations and/or binding new versions of \n\ + this Licence, so far this is required and reasonable. New versions of the Licence will be\ + \ \npublished with a unique version number. The new version of the Licence becomes binding\ + \ for \nYou as soon as You become aware of its publication. \n\n14. Jurisdiction\nAny litigation\ + \ resulting from the interpretation of this License, arising between the European \nCommission,\ + \ as a Licensor, and any Licensee, will be subject to the jurisdiction of the Court \nof\ + \ Justice of the European Communities, as laid down in article 238 of the Treaty establishing\ + \ \nthe European Community. \n\nAny litigation arising between Parties, other than the\ + \ European Commission, and resulting \nfrom the interpretation of this License, will be\ + \ subject to the exclusive jurisdiction of the \ncompetent court where the Licensor resides\ + \ or conducts its primary business. \n\n15. Applicable Law\nThis Licence shall be governed\ + \ by the law of the European Union country where the Licensor resides or has his registered\ + \ office. \nThis licence shall be governed by the Belgian law if: \n- a litigation arises\ + \ between the European Commission, as a Licensor, and any Licensee; \n- the Licensor, other\ + \ than the European Commission, has no residence or registered office inside a European\ + \ Union country. \n\n ===Appendix\n\"Compatible Licences\" according to article 5 EUPL\ + \ are: \n- General Public License (GPL) v. 2 \n- Open Software License (OSL) v. 2.1, v.\ + \ 3.0 \n- Common Public License v. 1.0 \n- Eclipse Public License v. 1.0 \n- Cecill v. 2.0" json: eupl-1.0.json - yml: eupl-1.0.yml + yaml: eupl-1.0.yml html: eupl-1.0.html - text: eupl-1.0.LICENSE + license: eupl-1.0.LICENSE - license_key: eupl-1.1 + category: Copyleft Limited spdx_license_key: EUPL-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "European Union Public Licence \nV. 1.1 \n \nEUPL © the European Community 2007 \n \n\ + This European Union Public Licence (the \"EUPL\") applies to the Work or Software \n(as\ + \ defined below) which is provided under the terms of this Licence. Any use of the \nWork,\ + \ other than as authorised under this Licence is prohibited (to the extent such use \nis\ + \ covered by a right of the copyright holder of the Work). \n \nThe Original Work is provided\ + \ under the terms of this Licence when the Licensor (as \ndefined below) has placed the\ + \ following notice immediately following the copyright \nnotice for the Original Work: \n\ + \ \nLicensed under the EUPL V.1.1 \n \nor has expressed by any other mean his willingness\ + \ to license under the EUPL. \n \n1. Definitions \n \nIn this Licence, the following terms\ + \ have the following meaning: \n \n- The Licence: this Licence. \n \n- The Original Work\ + \ or the Software: the software distributed and/or communicated \nby the Licensor under\ + \ this Licence, available as Source Code and also as Executable \nCode as the case may be.\ + \ \n \n- Derivative Works: the works or software that could be created by the Licensee,\ + \ \nbased upon the Original Work or modifications thereof. This Licence does not define\ + \ \nthe extent of modification or dependence on the Original Work required in order to \n\ + classify a work as a Derivative Work; this extent is determined by copyright law \napplicable\ + \ in the country mentioned in Article 15. \n \n- The Work: the Original Work and/or its\ + \ Derivative Works. \n \n- The Source Code: the human-readable form of the Work which is\ + \ the most \nconvenient for people to study and modify. \n \n- The Executable Code: any\ + \ code which has generally been compiled and which is \nmeant to be interpreted by a computer\ + \ as a program. \n \n- The Licensor: the natural or legal person that distributes and/or\ + \ communicates the \nWork under the Licence. \n \n- Contributor(s): any natural or legal\ + \ person who modifies the Work under the \nLicence, or otherwise contributes to the creation\ + \ of a Derivative Work. \n \n- The Licensee or \"You\": any natural or legal person who\ + \ makes any usage of the \nSoftware under the terms of the Licence. \n \n- Distribution\ + \ and/or Communication: any act of selling, giving, lending, renting, \ndistributing, communicating,\ + \ transmitting, or otherwise making available, on-line or \noff-line, copies of the Work\ + \ or providing access to its essential functionalities at the \ndisposal of any other natural\ + \ or legal person. \n \n2. Scope of the rights granted by the Licence \n \nThe Licensor\ + \ hereby grants You a world-wide, royalty-free, non-exclusive, sub- \nlicensable licence\ + \ to do the following, for the duration of copyright vested in the \nOriginal Work: \n \n\ + - use the Work in any circumstance and for all usage, \n- reproduce the Work, \n- modify\ + \ the Original Work, and make Derivative Works based upon the Work, \n- communicate to the\ + \ public, including the right to make available or display the \nWork or copies thereof\ + \ to the public and perform publicly, as the case may be, \nthe Work, \n- distribute the\ + \ Work or copies thereof, \n- lend and rent the Work or copies thereof, \n- sub-license\ + \ rights in the Work or copies thereof. \n \nThose rights can be exercised on any media,\ + \ supports and formats, whether now \nknown or later invented, as far as the applicable\ + \ law permits so. \n \nIn the countries where moral rights apply, the Licensor waives his\ + \ right to exercise his \nmoral right to the extent allowed by law in order to make effective\ + \ the licence of the \neconomic rights here above listed. \n \nThe Licensor grants to the\ + \ Licensee royalty-free, non exclusive usage rights to any \npatents held by the Licensor,\ + \ to the extent necessary to make use of the rights granted \non the Work under this Licence.\ + \ \n \n3. Communication of the Source Code \n \nThe Licensor may provide the Work either\ + \ in its Source Code form, or as Executable \nCode. If the Work is provided as Executable\ + \ Code, the Licensor provides in addition a \nmachine-readable copy of the Source Code of\ + \ the Work along with each copy of the \nWork that the Licensor distributes or indicates,\ + \ in a notice following the copyright \nnotice attached to the Work, a repository where\ + \ the Source Code is easily and freely \naccessible for as long as the Licensor continues\ + \ to distribute and/or communicate the \nWork. \n \n4. Limitations on copyright \n \n\ + Nothing in this Licence is intended to deprive the Licensee of the benefits from any \n\ + exception or limitation to the exclusive rights of the rights owners in the Original \n\ + Work or Software, of the exhaustion of those rights or of other applicable limitations \n\ + thereto. \n \n5. Obligations of the Licensee \n \nThe grant of the rights mentioned above\ + \ is subject to some restrictions and obligations \nimposed on the Licensee. Those obligations\ + \ are the following: \n \nAttribution right: the Licensee shall keep intact all copyright,\ + \ patent or trademarks \nnotices and all notices that refer to the Licence and to the disclaimer\ + \ of warranties. \nThe Licensee must include a copy of such notices and a copy of the Licence\ + \ with \nevery copy of the Work he/she distributes and/or communicates. The Licensee must\ + \ \ncause any Derivative Work to carry prominent notices stating that the Work has been\ + \ \nmodified and the date of modification. \n \nCopyleft clause: If the Licensee distributes\ + \ and/or communicates copies of the \nOriginal Works or Derivative Works based upon the\ + \ Original Work, this Distribution \nand/or Communication will be done under the terms of\ + \ this Licence or of a later \nversion of this Licence unless the Original Work is expressly\ + \ distributed only under \nthis version of the Licence. The Licensee (becoming Licensor)\ + \ cannot offer or impose \nany additional terms or conditions on the Work or Derivative\ + \ Work that alter or \nrestrict the terms of the Licence. \n \nCompatibility clause: If\ + \ the Licensee Distributes and/or Communicates Derivative \nWorks or copies thereof based\ + \ upon both the Original Work and another work \nlicensed under a Compatible Licence, this\ + \ Distribution and/or Communication can be \ndone under the terms of this Compatible Licence.\ + \ For the sake of this clause, \n\"Compatible Licence\" refers to the licences listed in\ + \ the appendix attached to this \nLicence. Should the Licensee’s obligations under the Compatible\ + \ Licence conflict \nwith his/her obligations under this Licence, the obligations of the\ + \ Compatible Licence \nshall prevail. \n \nProvision of Source Code: When distributing\ + \ and/or communicating copies of the \nWork, the Licensee will provide a machine-readable\ + \ copy of the Source Code or \nindicate a repository where this Source will be easily and\ + \ freely available for as long \nas the Licensee continues to distribute and/or communicate\ + \ the Work. \n \nLegal Protection: This Licence does not grant permission to use the trade\ + \ names, \ntrademarks, service marks, or names of the Licensor, except as required for \n\ + reasonable and customary use in describing the origin of the Work and reproducing \nthe\ + \ content of the copyright notice. \n \n6. Chain of Authorship \n \nThe original Licensor\ + \ warrants that the copyright in the Original Work granted \nhereunder is owned by him/her\ + \ or licensed to him/her and that he/she has the power \nand authority to grant the Licence.\ + \ \n \nEach Contributor warrants that the copyright in the modifications he/she brings to\ + \ the \nWork are owned by him/her or licensed to him/her and that he/she has the power and\ + \ \nauthority to grant the Licence. \n \nEach time You accept the Licence, the original\ + \ Licensor and subsequent Contributors \ngrant You a licence to their contributions to the\ + \ Work, under the terms of this \nLicence. \n \n7. Disclaimer of Warranty \n \nThe Work\ + \ is a work in progress, which is continuously improved by numerous \ncontributors. It is\ + \ not a finished work and may therefore contain defects or \"bugs\" \ninherent to this type\ + \ of software development. \n \nFor the above reason, the Work is provided under the Licence\ + \ on an \"as is\" basis and \nwithout warranties of any kind concerning the Work, including\ + \ without limitation \nmerchantability, fitness for a particular purpose, absence of defects\ + \ or errors, \naccuracy, non-infringement of intellectual property rights other than copyright\ + \ as \nstated in Article 6 of this Licence. \n \nThis disclaimer of warranty is an essential\ + \ part of the Licence and a condition for the \ngrant of any rights to the Work. \n \n8.\ + \ Disclaimer of Liability \n \nExcept in the cases of wilful misconduct or damages directly\ + \ caused to natural \npersons, the Licensor will in no event be liable for any direct or\ + \ indirect, material or \nmoral, damages of any kind, arising out of the Licence or of the\ + \ use of the Work, \nincluding without limitation, damages for loss of goodwill, work stoppage,\ + \ computer \nfailure or malfunction, loss of data or any commercial damage, even if the\ + \ Licensor \nhas been advised of the possibility of such damage. However, the Licensor will\ + \ be \nliable under statutory product liability laws as far such laws apply to the Work.\ + \ \n \n9. Additional agreements \n \nWhile distributing the Original Work or Derivative\ + \ Works, You may choose to \nconclude an additional agreement to offer, and charge a fee\ + \ for, acceptance of support, \nwarranty, indemnity, or other liability obligations and/or\ + \ services consistent with this \nLicence. However, in accepting such obligations, You may\ + \ act only on your own \nbehalf and on your sole responsibility, not on behalf of the original\ + \ Licensor or any \nother Contributor, and only if You agree to indemnify, defend, and hold\ + \ each \nContributor harmless for any liability incurred by, or claims asserted against\ + \ such \nContributor by the fact You have accepted any such warranty or additional liability.\ + \ \n\n10. Acceptance of the Licence \n \nThe provisions of this Licence can be accepted\ + \ by clicking on an icon \"I agree\" \nplaced under the bottom of a window displaying the\ + \ text of this Licence or by \naffirming consent in any other similar way, in accordance\ + \ with the rules of applicable \nlaw. Clicking on that icon indicates your clear and irrevocable\ + \ acceptance of this \nLicence and all of its terms and conditions. \n \nSimilarly, you\ + \ irrevocably accept this Licence and all of its terms and conditions by \nexercising any\ + \ rights granted to You by Article 2 of this Licence, such as the use of \nthe Work, the\ + \ creation by You of a Derivative Work or the Distribution and/or \nCommunication by You\ + \ of the Work or copies thereof. \n \n11. Information to the public \n \nIn case of any\ + \ Distribution and/or Communication of the Work by means of electronic \ncommunication by\ + \ You (for example, by offering to download the Work from a \nremote location) the distribution\ + \ channel or media (for example, a website) must at \nleast provide to the public the information\ + \ requested by the applicable law regarding \nthe Licensor, the Licence and the way it may\ + \ be accessible, concluded, stored and \nreproduced by the Licensee. \n \n12. Termination\ + \ of the Licence \n \nThe Licence and the rights granted hereunder will terminate automatically\ + \ upon any \nbreach by the Licensee of the terms of the Licence. \n \nSuch a termination\ + \ will not terminate the licences of any person who has received the \nWork from the Licensee\ + \ under the Licence, provided such persons remain in full \ncompliance with the Licence.\ + \ \n \n13. Miscellaneous \n \nWithout prejudice of Article 9 above, the Licence represents\ + \ the complete agreement \nbetween the Parties as to the Work licensed hereunder. \n \n\ + If any provision of the Licence is invalid or unenforceable under applicable law, this \n\ + will not affect the validity or enforceability of the Licence as a whole. Such provision\ + \ \nwill be construed and/or reformed so as necessary to make it valid and enforceable.\ + \ \n \nThe European Commission may publish other linguistic versions and/or new versions\ + \ \nof this Licence, so far this is required and reasonable, without reducing the scope\ + \ of \nthe rights granted by the Licence. New versions of the Licence will be published\ + \ with \na unique version number. \n \nAll linguistic versions of this Licence, approved\ + \ by the European Commission, have \nidentical value. Parties can take advantage of the\ + \ linguistic version of their choice. \n \n14. Jurisdiction \n \nAny litigation resulting\ + \ from the interpretation of this License, arising between the \nEuropean Commission, as\ + \ a Licensor, and any Licensee, will be subject to the \njurisdiction of the Court of Justice\ + \ of the European Communities, as laid down in \narticle 238 of the Treaty establishing\ + \ the European Community. \n \nAny litigation arising between Parties, other than the European\ + \ Commission, and \nresulting from the interpretation of this License, will be subject to\ + \ the exclusive \njurisdiction of the competent court where the Licensor resides or conducts\ + \ its primary \nbusiness. \n \n15. Applicable Law \n \nThis Licence shall be governed by\ + \ the law of the European Union country where the \nLicensor resides or has his registered\ + \ office. \n \nThis licence shall be governed by the Belgian law if: \n \n- a litigation\ + \ arises between the European Commission, as a Licensor, and any \nLicensee; \n- the Licensor,\ + \ other than the European Commission, has no residence or \nregistered office inside a European\ + \ Union country." json: eupl-1.1.json - yml: eupl-1.1.yml + yaml: eupl-1.1.yml html: eupl-1.1.html - text: eupl-1.1.LICENSE + license: eupl-1.1.LICENSE - license_key: eupl-1.2 + category: Copyleft Limited spdx_license_key: EUPL-1.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "EUROPEAN UNION PUBLIC LICENCE v. 1.2 \nEUPL © the European Union 2007, 2016 \n\nThis\ + \ European Union Public Licence (the ‘EUPL’) applies to the Work (as defined below) which\ + \ is provided under the terms of this Licence. Any use of the Work, other than as authorised\ + \ under this Licence is prohibited (to the extent such use is covered by a right of the\ + \ copyright holder of the Work). \n\nThe Work is provided under the terms of this Licence\ + \ when the Licensor (as defined below) has placed the following notice immediately following\ + \ the copyright notice for the Work: \n\n Licensed under the EUPL \n\nor has expressed\ + \ by any other means his willingness to license under the EUPL. \n\n1.Definitions \nIn this\ + \ Licence, the following terms have the following meaning: \n— ‘The Licence’:this Licence.\ + \ \n— ‘The Original Work’:the work or software distributed or communicated by the Licensor\ + \ under this Licence, available as Source Code and also as Executable Code as the case may\ + \ be. \n— ‘Derivative Works’:the works or software that could be created by the Licensee,\ + \ based upon the Original Work or modifications thereof. This Licence does not define the\ + \ extent of modification or dependence on the Original Work required in order to classify\ + \ a work as a Derivative Work; this extent is determined by copyright law applicable in\ + \ the country mentioned in Article 15. \n— ‘The Work’:the Original Work or its Derivative\ + \ Works. \n— ‘The Source Code’:the human-readable form of the Work which is the most convenient\ + \ for people to study and modify. \n— ‘The Executable Code’:any code which has generally\ + \ been compiled and which is meant to be interpreted by a computer as a program. \n— ‘The\ + \ Licensor’:the natural or legal person that distributes or communicates the Work under\ + \ the Licence. \n— ‘Contributor(s)’:any natural or legal person who modifies the Work under\ + \ the Licence, or otherwise contributes to the creation of a Derivative Work. \n— ‘The Licensee’\ + \ or ‘You’:any natural or legal person who makes any usage of the Work under the terms of\ + \ the Licence. \n— ‘Distribution’ or ‘Communication’:any act of selling, giving, lending,\ + \ renting, distributing, communicating, transmitting, or otherwise making available, online\ + \ or offline, copies of the Work or providing access to its essential functionalities at\ + \ the disposal of any other natural or legal person. \n\n2.Scope of the rights granted by\ + \ the Licence \nThe Licensor hereby grants You a worldwide, royalty-free, non-exclusive,\ + \ sublicensable licence to do the following, for the duration of copyright vested in the\ + \ Original Work: \n— use the Work in any circumstance and for all usage, \n— reproduce the\ + \ Work, \n— modify the Work, and make Derivative Works based upon the Work, \n— communicate\ + \ to the public, including the right to make available or display the Work or copies thereof\ + \ to the public and perform publicly, as the case may be, the Work, \n— distribute the Work\ + \ or copies thereof, \n— lend and rent the Work or copies thereof, \n— sublicense rights\ + \ in the Work or copies thereof. \n\nThose rights can be exercised on any media, supports\ + \ and formats, whether now known or later invented, as far as the applicable law permits\ + \ so. \n\nIn the countries where moral rights apply, the Licensor waives his right to exercise\ + \ his moral right to the extent allowed by law in order to make effective the licence of\ + \ the economic rights here above listed. \n\nThe Licensor grants to the Licensee royalty-free,\ + \ non-exclusive usage rights to any patents held by the Licensor, to the extent necessary\ + \ to make use of the rights granted on the Work under this Licence. \n\n3.Communication\ + \ of the Source Code \nThe Licensor may provide the Work either in its Source Code form,\ + \ or as Executable Code. If the Work is provided as Executable Code, the Licensor provides\ + \ in addition a machine-readable copy of the Source Code of the Work along with each copy\ + \ of the Work that the Licensor distributes or indicates, in a notice following the copyright\ + \ notice attached to the Work, a repository where the Source Code is easily and freely accessible\ + \ for as long as the Licensor continues to distribute or communicate the Work. \n\n4.Limitations\ + \ on copyright \nNothing in this Licence is intended to deprive the Licensee of the benefits\ + \ from any exception or limitation to the exclusive rights of the rights owners in the Work,\ + \ of the exhaustion of those rights or of other applicable limitations thereto. \n\n5.Obligations\ + \ of the Licensee \nThe grant of the rights mentioned above is subject to some restrictions\ + \ and obligations imposed on the Licensee. Those obligations are the following: \n\nAttribution\ + \ right: The Licensee shall keep intact all copyright, patent or trademarks notices and\ + \ all notices that refer to the Licence and to the disclaimer of warranties. The Licensee\ + \ must include a copy of such notices and a copy of the Licence with every copy of the Work\ + \ he/she distributes or communicates. The Licensee must cause any Derivative Work to carry\ + \ prominent notices stating that the Work has been modified and the date of modification.\ + \ \n\nCopyleft clause: If the Licensee distributes or communicates copies of the Original\ + \ Works or Derivative Works, this Distribution or Communication will be done under the terms\ + \ of this Licence or of a later version of this Licence unless the Original Work is expressly\ + \ distributed only under this version of the Licence — for example by communicating ‘EUPL\ + \ v. 1.2 only’. The Licensee (becoming Licensor) cannot offer or impose any additional terms\ + \ or conditions on the Work or Derivative Work that alter or restrict the terms of the Licence.\ + \ \n\nCompatibility clause: If the Licensee Distributes or Communicates Derivative Works\ + \ or copies thereof based upon both the Work and another work licensed under a Compatible\ + \ Licence, this Distribution or Communication can be done under the terms of this Compatible\ + \ Licence. For the sake of this clause, ‘Compatible Licence’ refers to the licences listed\ + \ in the appendix attached to this Licence. Should the Licensee's obligations under the\ + \ Compatible Licence conflict with his/her obligations under this Licence, the obligations\ + \ of the Compatible Licence shall prevail. \n\nProvision of Source Code: When distributing\ + \ or communicating copies of the Work, the Licensee will provide a machine-readable copy\ + \ of the Source Code or indicate a repository where this Source will be easily and freely\ + \ available for as long as the Licensee continues to distribute or communicate the Work.\ + \ \n\nLegal Protection: This Licence does not grant permission to use the trade names, trademarks,\ + \ service marks, or 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 copyright\ + \ notice. \n\n6.Chain of Authorship \nThe original Licensor warrants that the copyright\ + \ in the Original Work granted hereunder is owned by him/her or licensed to him/her and\ + \ that he/she has the power and authority to grant the Licence. \n\nEach Contributor warrants\ + \ that the copyright in the modifications he/she brings to the Work are owned by him/her\ + \ or licensed to him/her and that he/she has the power and authority to grant the Licence.\ + \ \n\nEach time You accept the Licence, the original Licensor and subsequent Contributors\ + \ grant You a licence to their contributions to the Work, under the terms of this Licence.\ + \ \n\n7.Disclaimer of Warranty \nThe Work is a work in progress, which is continuously improved\ + \ by numerous Contributors. It is not a finished work and may therefore contain defects\ + \ or ‘bugs’ inherent to this type of development. \n\nFor the above reason, the Work is\ + \ provided under the Licence on an ‘as is’ basis and without warranties of any kind concerning\ + \ the Work, including without limitation merchantability, fitness for a particular purpose,\ + \ absence of defects or errors, accuracy, non-infringement of intellectual property rights\ + \ other than copyright as stated in Article 6 of this Licence. \n\nThis disclaimer of warranty\ + \ is an essential part of the Licence and a condition for the grant of any rights to the\ + \ Work. \n\n8.Disclaimer of Liability \nExcept in the cases of wilful misconduct or damages\ + \ directly caused to natural persons, the Licensor will in no event be liable for any direct\ + \ or indirect, material or moral, damages of any kind, arising out of the Licence or of\ + \ the use of the Work, including without limitation, damages for loss of goodwill, work\ + \ stoppage, computer failure or malfunction, loss of data or any commercial damage, even\ + \ if the Licensor has been advised of the possibility of such damage. However, the Licensor\ + \ will be liable under statutory product liability laws as far such laws apply to the Work.\ + \ \n\n9.Additional agreements \nWhile distributing the Work, You may choose to conclude\ + \ an additional agreement, defining obligations or services consistent with this Licence.\ + \ However, if accepting obligations, You may act only on your own behalf and on your sole\ + \ responsibility, not on behalf of the original Licensor or 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 the fact You have accepted\ + \ any warranty or additional liability. \n\n10.Acceptance of the Licence \nThe provisions\ + \ of this Licence can be accepted by clicking on an icon ‘I agree’ placed under the bottom\ + \ of a window displaying the text of this Licence or by affirming consent in any other similar\ + \ way, in accordance with the rules of applicable law. Clicking on that icon indicates your\ + \ clear and irrevocable acceptance of this Licence and all of its terms and conditions.\ + \ \n\nSimilarly, you irrevocably accept this Licence and all of its terms and conditions\ + \ by exercising any rights granted to You by Article 2 of this Licence, such as the use\ + \ of the Work, the creation by You of a Derivative Work or the Distribution or Communication\ + \ by You of the Work or copies thereof. \n\n11.Information to the public \nIn case of any\ + \ Distribution or Communication of the Work by means of electronic communication by You\ + \ (for example, by offering to download the Work from a remote location) the distribution\ + \ channel or media (for example, a website) must at least provide to the public the information\ + \ requested by the applicable law regarding the Licensor, the Licence and the way it may\ + \ be accessible, concluded, stored and reproduced by the Licensee. \n\n12.Termination of\ + \ the Licence \nThe Licence and the rights granted hereunder will terminate automatically\ + \ upon any breach by the Licensee of the terms of the Licence. \n\nSuch a termination will\ + \ not terminate the licences of any person who has received the Work from the Licensee under\ + \ the Licence, provided such persons remain in full compliance with the Licence. \n\n13.Miscellaneous\ + \ \nWithout prejudice of Article 9 above, the Licence represents the complete agreement\ + \ between the Parties as to the Work. \n\nIf any provision of the Licence is invalid or\ + \ unenforceable under applicable law, this will not affect the validity or enforceability\ + \ of the Licence as a whole. Such provision will be construed or reformed so as necessary\ + \ to make it valid and enforceable. \n\nThe European Commission may publish other linguistic\ + \ versions or new versions of this Licence or updated versions of the Appendix, so far this\ + \ is required and reasonable, without reducing the scope of the rights granted by the Licence.\ + \ \n\nNew versions of the Licence will be published with a unique version number. \n\nAll\ + \ linguistic versions of this Licence, approved by the European Commission, have identical\ + \ value. Parties can take advantage of the linguistic version of their choice. \n\n14.Jurisdiction\ + \ \nWithout prejudice to specific agreement between parties, \n— any litigation resulting\ + \ from the interpretation of this License, arising between the European Union institutions,\ + \ bodies, offices or agencies, as a Licensor, and any Licensee, will be subject to the jurisdiction\ + \ of the Court of Justice of the European Union, as laid down in article 272 of the Treaty\ + \ on the Functioning of the European Union, \n— any litigation arising between other parties\ + \ and resulting from the interpretation of this License, will be subject to the exclusive\ + \ jurisdiction of the competent court where the Licensor resides or conducts its primary\ + \ business. \n\n15.Applicable Law \nWithout prejudice to specific agreement between parties,\ + \ \n— this Licence shall be governed by the law of the European Union Member State where\ + \ the Licensor has his seat, resides or has his registered office, \n— this licence shall\ + \ be governed by Belgian law if the Licensor has no seat, residence or registered office\ + \ inside a European Union Member State." json: eupl-1.2.json - yml: eupl-1.2.yml + yaml: eupl-1.2.yml html: eupl-1.2.html - text: eupl-1.2.LICENSE + license: eupl-1.2.LICENSE - license_key: eurosym + category: Copyleft Limited spdx_license_key: Eurosym other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Licence Version 2 + + This software is provided 'as-is', without warranty of any kind, express or implied. In no event will the authors or copyright holders 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. + + 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. + + 3. You must not use any of the names of the authors or copyright holders of the original software for advertising or publicity pertaining to distribution without specific, written prior permission. + + 4. If you change this software and redistribute parts or all of it in any form, you must make the source code of the altered version of this software available. + + 5. This notice may not be removed or altered from any source distribution. + + This licence is governed by the Laws of Germany. Disputes shall be settled by Saarbruecken City Court. json: eurosym.json - yml: eurosym.yml + yaml: eurosym.yml html: eurosym.html - text: eurosym.LICENSE + license: eurosym.LICENSE - license_key: examdiff + category: Proprietary Free spdx_license_key: LicenseRef-scancode-examdiff other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "DISCLAIMER:\n\n DISCLAIMER OF WARRANTY\n\nTHIS SOFTWARE AND MANUAL ARE PROVIDED\ + \ \"AS IS\" AND WITHOUT\nWARRANTIES AS TO PERFORMANCE OF MERCHANTABILITY OR ANY\nOTHER WARRANTIES\ + \ WHETHER EXPRESSED OR IMPLIED. BECAUSE\nOF THE VARIOUS HARDWARE AND SOFTWARE ENVIRONMENTS\ + \ INTO\nWHICH THIS PROGRAM MAY BE PUT, NO WARRANTY OF FITNESS FOR\nA PARTICULAR PURPOSE\ + \ IS OFFERED. GOOD DATA PROCESSING\nPROCEDURE DICTATES THAT ANY PROGRAM BE THOROUGHLY TESTED\n\ + WITH NON-CRITICAL DATA BEFORE RELYING ON IT. THE USER\nMUST ASSUME THE ENTIRE RISK OF USING\ + \ THE PROGRAM. THE\nDEVELOPER DOES NOT RETAIN ANY LIABILITY ON ANY DAMAGE\nCAUSED THROUGH\ + \ THE USE OF THIS PRODUCT.\n\n//////////////////////////////////////////////////////////////\n\ + LICENSE TO USE:\n\nYou are permitted to use this program freely. You, however, \nare not\ + \ permitted to decompile this program or use it as a \nportion of any other application.\ + \ \n\nYou are permitted to freely distribute this program and its \nassociated files provided\ + \ that (1) You do not charge a fee for \nits distribution, (2) you do not include it as\ + \ a part of a \ncommercial offering, and (3) you do distribute all \naccompanying files\ + \ together. If you wish to include ExamDiff \nas a part of a commercial offering, written\ + \ permission \nfrom the author is required. \n\nDeviations of the above are considered a\ + \ breach of the\ncopyright on this application." json: examdiff.json - yml: examdiff.yml + yaml: examdiff.yml html: examdiff.html - text: examdiff.LICENSE + license: examdiff.LICENSE - license_key: excelsior-jet-runtime + category: Commercial spdx_license_key: LicenseRef-scancode-excelsior-jet-runtime other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Excelsior JET Licensing Terms and Conditions\nProduction and Redistribution Use\nProduction\ + \ use and redistribution use of Excelsior JET Runtime is permitted only in conjunction with\ + \ and as part of your software product.\n\nExcelsior JET Runtime includes the standard Java\ + \ API code licensed from Sun Microsystems. According to that license:\n\nDeployment of your\ + \ software product that includes Excelsior JET Runtime onto general purpose desktop computers\ + \ and servers shall be royalty-free, but\nUsage of Excelsior JET Runtime in embedded systems\ + \ in the general case requires you to sign a trademark and license agreement with Sun Microsystems\ + \ and pay per-unit royalties. Exceptions are low-volume deals, for which Excelsior help\ + \ you negotiate a flat fee with Sun.\n\nfrom http://www.excelsior-usa.com/pdf/iltemplate.pdf\ + \ \n\nC. RUNTIME LICENSE\nIn addition to the Development License granted above, Excelsior\ + \ grants You a non-exclusive, non-transferable, feebearing\nlicense to use software programs\ + \ or components of the Software that are incorporated or embedded in and\nused in the execution\ + \ of Your software (\"Runtime Components\") for the number of applications, users, CPUs,\ + \ servers,\nor connections and at the sites, as specified on Your invoice, on the following\ + \ terms:\n\nEmbedded Use. Use of the Runtime Components in devices other than General Purpose\ + \ Desktop Computers And\nServers is not allowed under this Agreement. Please contact Excelsior\ + \ for the conditions of such use.\n\nProduction Use. You may use the Runtime Components\ + \ in Your applications legally developed under the Development\nLicense above for internal\ + \ business purposes, which may include third party customers’ access to or use of such\n\ + applications.\n\nRedistribution Use. You may redistribute the Runtime Components on the\ + \ following conditions:\nYou agree to: a. distribute the Runtime Components in object code\ + \ form only and in conjunction with and as a part\nof Your software product legally developed\ + \ under the Development License above; b. not suppress, alter, or remove\nproprietary rights\ + \ notices contained therein; c. indemnify, hold harmless, and defend Excelsior and its suppliers\ + \ from\nand against any claims or lawsuits, including attorney’s fees, that arise or result\ + \ from the use or distribution of Your\nsoftware product; and d. ensure that Your distributors\ + \ and customers agree to act in a manner consistent with Your\nobligations under this Agreement.\n\ + \nYour license agreement with Your distributors and/or customers will: a. not permit Your\ + \ end users to modify,\ntranslate, reverse engineer, decompile, or disassemble the Runtime\ + \ Components except as expressly permitted by law;\nb. not permit further distribution of\ + \ the Runtime Components by end users. c. include statements that Your product: (i)\nis\ + \ licensed not sold, and that title to such offering is not passed to the customer, (ii)\ + \ may include material licensed by a\nthird party, and that You have assumed responsibility\ + \ for the presence and use of this material; and (iii) comply with the\nrequirements of\ + \ Section H \"Limited Warranty\" as appropriate.\n\nFees. The runtime license fees applicable\ + \ to Production Use and Redistribution Use are detailed at\nhttp://www.excelsior-usa.com/fees.html." json: excelsior-jet-runtime.json - yml: excelsior-jet-runtime.yml + yaml: excelsior-jet-runtime.yml html: excelsior-jet-runtime.html - text: excelsior-jet-runtime.LICENSE + license: excelsior-jet-runtime.LICENSE - license_key: fabien-tassin + category: Permissive spdx_license_key: LicenseRef-scancode-fabien-tassin other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + It may be used and modified freely, but I do request that this copyright + notice remain attached to the file. You may modify this module as you + wish, but if you redistribute a modified version, please attach a note + listing the modifications you have made. json: fabien-tassin.json - yml: fabien-tassin.yml + yaml: fabien-tassin.yml html: fabien-tassin.html - text: fabien-tassin.LICENSE + license: fabien-tassin.LICENSE - license_key: fabric-agreement-2017 + category: Commercial spdx_license_key: LicenseRef-scancode-fabric-agreement-2017 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + Fabric Software and Services Agreement + + Last Updated: January 27, 2017 + + PLEASE READ THIS AGREEMENT CAREFULLY. BY CLICKING THE UPGRADE OR SIGN UP BUTTON OR BY ACCESSING OR USING THE FABRIC TECHNOLOGY, YOU AGREE TO BE BOUND BY THE TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THE TERMS OF THIS AGREEMENT, YOU MAY NOT ACCESS OR USE THE FABRIC TECHNOLOGY. + + This Fabric Software and Services Agreement (“Agreement”) is entered into by Google Inc. and you (“Developer” or “You”) and governs Your access and use of the Fabric Technology (defined below). If You are accessing or using the Fabric Technology on behalf of a company or other legal entity, You represent and warrant that You are an authorized representative of that entity and have the authority to bind such entity to this Agreement, in which case the terms “Developer” and “You” shall refer to such entity. You and Google hereby agree as follows: + + Definitions + + In addition to terms defined elsewhere in this Agreement, the terms set forth immediately below have the following meanings. + + “Application” means any mobile application of Developer into which the Fabric Kit or any other Kit may be integrated. + + “Developer Data” means (i) the identity of the individual or entity, if any, who invited Developer to use the Fabric Technology; (ii) the names of Developer’s non-publicly available Applications; and (iii) a unique installation identifier for each installation of each Application. + + “Documentation” means the documentation, instructions, user guides, and other documents made available by Google that relate to the Services and Software. + + “Fabric Kit” means the underlying, base software development kit for Fabric made available by Google via the Plugin, including any updates or modifications thereto, that Developer installs in order to integrate any other Kit within an Application. + + “Kit” means any software development kit, other than the Fabric Kit, made available for download via any Plugin. + + “Plugin” means any development environment software plugin made available by Google via the Services, including any updates or modifications thereto, that Developer must install in the designated development environment in order for Developer to integrate the Fabric Kit or any other Kit within an Application. + + “Services” means the Site and any hosted software services made available via the Site, including without limitation any dashboards, reporting tools, or other services, or any Plugin. + + “Site” means all websites and webpages hosted at the fabric.io domain, as well as any Fabric-branded mobile application Google may make available. + + “Software” means the Fabric Kit and any Plugin. + + “Term” means the term of this Agreement, which commences on the date upon which Developer enters into this Agreement and continues until terminated by Developer or Google. + + “Fabric Technology” means the Services, Software, and Documentation. + + “Usage Data” means all information, data and other content, not including any Developer Data, received by Google related to Developer’s use of the Fabric Technology, including without limitation Developer’s IP address; web request headers, including without limitation browser type, user agent, and referral page; pages or screens Developer visits on the Site; timestamps; cookie information from Developer’s usage of the Site, including without limitation analytics data; Developer’s device state, hardware, and OS information; and unique identifier(s) for Developer’s device(s). + + Licenses; Access Rights; Restrictions + + License Grant. Subject to Developer’s compliance with the terms and conditions of this Agreement (as a condition to the grants below), Google grants Developer, and Developer accepts, a personal, nonexclusive, non-transferable, non-sublicensable, and revocable license, during the Term, to: (a) install and use any Plugin within the designated development environment solely for the purpose of downloading the Fabric Kit and other Kits to such environment; (b) install and use the Fabric Kit solely for the purpose of enabling the integration of one or more Kits into an application; (c) incorporate the Fabric Kit into any application and distribute (in object form only) the Fabric Kit solely as incorporated within such Application; (d) download and/or print a reasonable number of copies of any reports or results made available via the Services (“Reports”) for internal use by Developer only; and (e) make and use a reasonable number of copies of any Plugin, Fabric Kit, and Documentation solely as necessary to exercise any of the licenses or rights granted to Developer under this Agreement. + + Access to Services. During the Term, and subject to the terms and conditions of this Agreement, Google will use commercially reasonable efforts to provide Developer with access to the Services. Developer will cooperate with Google, as requested, to facilitate the initiation of Developer’s access and use of the Services. Developer will identify a user name and password that will be used solely by Developer to access and use Developer’s account on the Services. Developer will not share its user name or password with any third party and will be responsible and liable for the acts or omissions of any person who accesses the Services via such account. Developer will (a) provide accurate, current, and complete information when setting up such account; (b) maintain and promptly update any account information; (c) maintain the security of any password and accept all risks of unauthorized access to its account; and (d) promptly notify Google if it discovers or otherwise suspects any security breaches related to such account. + + Restrictions. Developer shall not directly or indirectly: (a) modify or create any derivative works of any Reports, Fabric Technology, or components thereof; (b) work around any technical limitations in any Fabric Technology or use any Fabric Technology, alone or in conjunction with any device, program, or service, to circumvent technical measures employed to control access to, or the rights in, a content, file, or other work; (c) reverse engineer, decompile, decipher, translate, disassemble, or otherwise attempt to access source code of any Fabric Technology (except as and only to the extent that the foregoing restriction is prohibited by applicable law); (d) publish, rent, lease, lend, sell, sublicense, distribute (except as permitted in Sections 2.1(c)), transfer, disclose, or otherwise make any Fabric Technology or Reports available to any third party; (e) provide use of the Fabric Technology on a service bureau, rental or managed services basis or permit other individuals or entities to create Internet "links" to the Fabric Technology or "frame" or "mirror" the Fabric Technology on any other server, or wireless or Internet-based device; (f) remove or alter any proprietary notices or labels on or in any Fabric Technology or Reports; (g) use any Fabric Technology in connection with the development or transmission of any virus, worms or malicious code; (h) use any Fabric Technology or Reports to infringe the rights of Google or any third party, or in any way that does not comply with all applicable laws; or (i) use any Fabric Technology (including to create any Application) in any way that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of Google or any third party, including any mobile communications carrier. + + Updates + + Developer acknowledges that Google may update or modify any component of the Fabric Technology at any time and in its sole discretion without prior notice to Developer. Developer acknowledges that future versions of the Fabric Kit may be incompatible with Applications developed using previous versions of the Fabric Kit, which may adversely affect the manner in which Developer accesses or communicates with the Fabric Technology. Google may provision any updates to any Software automatically or it may prompt Developer to install such updates. If Google prompts Developer to install an updated version of any Software (“Updated Version”), the license granted under Section 2.1 of this Agreement (“License”) with respect to any previous version of such Software will be revoked upon release of such Updated Version and Developer will immediately discontinue all use of, and delete, such previous version; provided, however, that, the License to such previous version of the Fabric Kit shall not be immediately revoked if such previous version of the Fabric Kit has been incorporated within an Application that Developer (a) has publicly distributed via an app store as of the date on which Google released the Updated Version (“Release Date”), (b) has already submitted to an app store for distribution approval as of the Release Date, or (c) submits to an app store for distribution approval within fourteen (14) days of the Release Date. Notwithstanding the foregoing, Google reserves the right, at any time, to revoke the License to any previous version of the Fabric Kit, regardless of the foregoing conditions, in which case Developer shall immediately discontinue all use of, and delete, such previous version of the Fabric Kit. + + Kit Terms + + Additional terms and conditions may apply to Developer’s access and use of any Kit made available via any Plugin. Developer will comply with any terms applicable to any Kit that Developer installs, accesses, or uses. Certain Kits may be made available by third parties. Google provides such third-party Kits as a convenience only and does not endorse any such third-party Kits. Developer acknowledges and agrees that (i) such third-party Kits are not under the control of Google and Google is not liable or responsible for such third-party Kits, and (ii) Google does not warrant and will not have any liability or responsibility for such third-party Kits. + + Security + + Developer is fully responsible for all of its Applications, including for maintaining the security of all such Applications. Developer will use industry standard security measures to prevent unauthorized access or use of any of the features and functionality of all Applications, including access by viruses, worms, or any other harmful code or material. Developer will immediately notify Google if Developer knows of or suspects any breach of security or potential vulnerability of any Application that may damage, interfere with, or otherwise impact any Fabric Technology or any information, content, or material accessible via any Fabric Technology. Developer will promptly remedy such breach or potential vulnerability. + + Compliance + + Developer shall comply with (a) all applicable laws, rules, and regulations, (b) all instructions and requirements set forth in any applicable Documentation, and (c) any applicable third-party terms, including any third-party terms applicable to any Kit, any development environment used by Developer, and Developer’s development and distribution of its Application via any relevant mobile operating system platform. Developer will not, directly or indirectly, export or re-export, or knowingly permit the export or re-export of, any Software or technical information obtained under this Agreement, including without limitation any Documentation, (y) without compliance with all laws applicable to the export or re-export of, any Software or technical information obtained under this Agreement, or (z) to any country to which the United States Export Administration Act, any regulation thereunder, or any similar United States law or regulation, prohibits the export or re-export of such software and/or technical information. + + Developer Feedback + + From time to time, Google may solicit from Developer or Developer may provide, in its sole discretion, suggestions for changes, modifications, or improvements or any other feedback related to any Fabric Technology or Google (collectively, “Developer Feedback”). All Developer Feedback shall be solely owned by Google (including all intellectual property rights therein and thereto) and shall also be deemed Google’s Confidential Information. Developer hereby assigns all of its right, title, and interest in and to any Developer Feedback to Google and acknowledges that Google has the unrestricted right to use and exploit such Developer Feedback in any manner, without attribution, and without any obligations or compensation to Developer. Google may reuse all general knowledge, experience, know-how, works and technologies (including ideas, concepts, processes, and techniques) acquired during provision of any Fabric Technology to Developer. + + Data Usage and Transfer + + Developer hereby grants Google a worldwide, nonexclusive, and royalty-free right and license to access, copy, distribute, process, and use Developer Data solely for the purpose of (a) providing any Fabric Technology to Developer; (b) creating aggregate measures of any Fabric Technology usage, engagement, and performance; and (c) improving any component of the Fabric Technology generally or any other service of Google. + + Developer acknowledges and agrees that Google will not assume any responsibility or liability for, or undertake to verify, the accuracy, completeness, or legality of any Developer Data. Google shall have no obligation to store, delete, or return any Developer Data. Developer represents and warrants that it owns all right, title, and interest, or possesses sufficient license rights, in and to the names of Developer’s non-publicly available Applications as may be necessary to grant the rights and licenses under this section. Developer bears all responsibility and liability for the legality, accuracy, and completeness of the Developer Data and Google’s access and possession thereof, as permitted herein. + + Irrespective of which country Developer is based in, Developer authorizes Google to use its information in, and as a result to transfer it to and store it in, the United States and any other country where Google, or any third-party service providers acting on its behalf, operates. Privacy and data protection laws in some of these countries may vary from the laws in the country where Developer is based. + + Developer Systems + + Developer is solely responsible for providing all modems, servers, devices, storage, software, databases, network, and communications equipment, and ancillary services needed to connect to, access, or otherwise use the Fabric Technology (collectively, “Developer Systems”). Developer shall ensure that Developer Systems are compatible with any Fabric Technology and comply with all configurations and specifications described in the applicable Documentation. + + Suspension; Discontinuance + + Google reserves the right to discontinue or suspend (permanently or temporarily) the Fabric Technology or any features or portions thereof without prior notice. Google will not be liable for any suspension or discontinuance of any Fabric Technology or any part thereof. + + Confidentiality + + “Confidential Information” means any information disclosed by one party (“Discloser“) to the other party (“Recipient“) that is marked or otherwise identified as “confidential“ or “proprietary,“ or by its nature or the circumstances of disclosure should reasonably be understood to be confidential. In particular, Confidential Information shall include the Fabric Technology, Reports, Developer Data and all related information, but does not include Usage Data. Recipient may use the Confidential Information of the Discloser only as necessary in fulfilling its obligations or exercising its rights under this Agreement. Recipient may not disclose any Confidential Information of the Discloser to any third party without the Discloser’s prior written consent. Recipient will protect the Discloser’s Confidential Information from unauthorized use, access, and disclosure in the same manner that it protects its own confidential and proprietary information of a similar nature, but in no event with less than a reasonable degree of care. Recipient shall have the right to disclose any Confidential Information of Discloser to any third-party service provider that performs services on behalf of Recipient subject to confidentiality obligations consistent with this Agreement. Promptly upon Discloser’s request at any time, Recipient shall, or in the case of Developer Data shall use reasonable efforts to, return all of Discloser’s tangible Confidential Information, and/or permanently erase all such Confidential Information from any storage media and destroy all information, records, copies, summaries, analyses, and materials developed therefrom. + + Limitations. The foregoing obligations shall not apply to any information that Recipient can demonstrate is (i) already known by it without restriction, (ii) rightfully furnished to it without restriction by a third party not in breach of any obligation of this Agreement or any other applicable confidentiality obligation or agreement, (iii) generally available to the public without breach of this Agreement or wrongdoing by any party, or (iv) independently developed by it without reference to or use of any information deemed confidential under this section and without any violation of any obligation of this Agreement. Recipient shall be responsible for any breach of confidentiality by its employees, contractors, and agents, as applicable. Nothing herein shall prevent Recipient from disclosing any of Discloser’s Confidential Information as necessary pursuant to any court order or any legal, regulatory, law enforcement, or similar requirement or investigation; provided, however, prior to any such disclosure, Recipient shall use reasonable efforts to promptly notify the Discloser in writing of such requirement to disclose where permitted by law and cooperate in protecting against or minimizing any such disclosure and/or obtaining a protective order. + + Ownership; Reservation of Rights + + Google retains all right, title, and interest in and to all Usage Data. Developer acknowledges and agrees that Google may use Usage Data for its own business purposes, including without limitation analyzing Developer’s installation, use of, and engagement with, and the functionality of the Services, as well as improving the functionality of the Services and other products and services offered or developed by Google, and may share such Usage Data with third-party service providers to assist with or conduct such activities on Google’s behalf. Google may share such Usage Data with other third parties solely in an aggregated and anonymized manner or otherwise in a manner that does not identify the source of such Usage Data. Google and its suppliers own all right, title, interest, copyright, and other intellectual property rights in all Fabric Technology (and any derivative works and enhancements thereof developed by or on behalf of Google) and reserve all rights not expressly granted to Developer in this Agreement. The Fabric Technology (and any derivative works and enhancements thereof developed by or on behalf of Google) are protected by copyright and other intellectual property laws and treaties. THE FABRIC TECHNOLOGY IS SOLELY LICENSED AS SET FORTH IN SECTION 2, NOT SOLD. + + Representations and Warranties + + Google represents and warrants that it has full right, power, and authority to enter into this Agreement and to perform its obligations and duties under this Agreement, and that the performance of such obligations and duties does not conflict with or result in a breach of any other agreement of Google, or any judgment, order, or decree by which such party is bound. Developer’s sole and exclusive remedy for any and all breaches of this provision is the remedy set forth in Section 15.1. + + Developer represents and warrants to Google that: (a) the Applications do not and will not infringe any intellectual property or other proprietary right of any third party or violate any right of or duty owed to any third party (including contract rights, privacy rights, and publicity rights); and (b) the Applications and Developer’s performance under this Agreement (including use of the Fabric Technology) do not and will not breach any other agreement of Developer or violate any applicable law, rule, or regulation. + + Google Disclaimers + + THE FABRIC TECHNOLOGY AND REPORTS ARE PROVIDED “AS IS”, “AS AVAILABLE”, WITH ALL FAULTS AND WITHOUT WARRANTY OF ANY KIND. WITHOUT LIMITING THE FOREGOING, GOOGLE AND ITS PARENTS, SUBSIDIARIES, AFFILIATES, RELATED COMPANIES, OFFICERS, DIRECTORS, EMPLOYEES, AGENTS, REPRESENTATIVES, PARTNERS, AND LICENSORS (COLLECTIVELY, THE “GOOGLE ENTITIES”) MAKE NO REPRESENTATION OR WARRANTY (I) THAT THE FABRIC TECHNOLOGY AND REPORTS OR RESULTS THEREFROM WILL MEET DEVELOPER’S REQUIREMENTS OR BE UNINTERRUPTED, ERROR-FREE, OR BUG-FREE, (II) REGARDING THE RELIABILITY, TIMELINESS, OR PERFORMANCE OF THE FABRIC TECHNOLOGY OR REPORTS, OR (III) THAT ANY ERRORS IN THE FABRIC TECHNOLOGY OR REPORTS CAN OR WILL BE CORRECTED. THE GOOGLE ENTITIES HEREBY DISCLAIM ALL WARRANTIES, WHETHER EXPRESS OR IMPLIED, ORAL OR WRITTEN, INCLUDING WITHOUT LIMITATION, ALL IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, TITLE, OR FITNESS FOR ANY PARTICULAR PURPOSE AND ALL WARRANTIES ARISING FROM ANY COURSE OF DEALING, COURSE OF PERFORMANCE, OR USAGE OF TRADE. + + Indemnification + + Claims Against Developer. Google will defend the Developer from all third party claims, actions, suits, or proceedings, whether actual or alleged (collectively, “Developer Claims”), and will indemnify Developer and hold Developer harmless from any and all losses, liabilities, damages, costs, and expenses (including reasonable attorney’s fees) resulting from such Developer Claims, that arise out of an allegation that the Fabric Technology, when used as expressly permitted by this Agreement, infringes the intellectual property rights of such third party. Notwithstanding the foregoing, Google will have no obligation under this Section 15.1 or otherwise with respect to any infringement claim based upon: (a) any use of the Fabric Technology not expressly permitted under this Agreement; (b) any use of the Fabric Technology in combination with products, equipment, software, or data not made available by Google if such infringement would have been avoided without the combination with such other products, equipment, software, or data; (c) any modification of the Fabric Technology by any person other than Google or its authorized agents or subcontractors; or (d) any claim not clearly based on the Fabric Technology itself. This Section 15.1 states Google’s entire liability and Developer’s sole and exclusive remedy for all third party claims. + + Claims Against Google. Developer will defend Google from all third party claims, actions, suits, or proceedings, whether actual or alleged (collectively, “Google Claims”), and will indemnify Google and hold Google harmless from any and all losses, liabilities, damages, costs, and expenses (including reasonable attorney’s fees) resulting from such Google Claims, that arise out of Developer’s (a) use of the Fabric Technology or Reports; (b) actual or alleged infringement, misappropriation, or violation of the rights of any third party, including without limitation any intellectual property rights, privacy rights, or publicity rights; and (c) breach of any term of this Agreement, including without limitation Developer’s representations and warranties set forth in Section 13 above. Developer is solely responsible for defending any such Google Claims, subject to Google’s right to participate with counsel of its own choosing, and for payment of all judgments, settlements, damages, losses, liabilities, costs, and expenses, including reasonable attorneys’ fees, resulting from such Google Claims, provided that Developer will not agree to any settlement related to any such Google Claims without Google’s prior express written consent regardless of whether or not such settlement releases Google from any obligation or liability. If Developer uses the Fabric Technology in an official capacity as an employee or representative of a United States federal, state or local government entity and is legally unable to accept this indemnification provision, then it does not apply to such entity, but only to the extent as required by applicable law. + + Procedure. The foregoing obligations are conditioned on the party seeking indemnification: (a) promptly notifying the other party in writing of such claim; (b) giving the other party sole control of the defense thereof and any related settlement negotiations; and (c) cooperating and, at other party’s request and expense, assisting in such defense. Neither party may make any public announcement of any claim, defense or settlement without the other party’s prior written approval. The indemnifying party may not settle, compromise or resolve a claim without the consent of the indemnified party, if such settlement, compromise or resolution (x) causes or requires an admission or finding of guilt against the indemnified party, (y) imposes any monetary damages against the indemnified party, or (z) does not fully release the indemnified party from liability with respect to the claim. + + Limitation of Liability + + (a) IN NO EVENT WILL EITHER PARTY BE LIABLE TO THE OTHER FOR ANY INDIRECT, SPECIAL, INCIDENTAL, EXEMPLARY, PUNITIVE, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT, OR FOR ANY DAMAGES ASSOCIATED WITH ANY LOSS OF USE, BUSINESS, PROFITS, OR GOODWILL OR FOR INTERRUPTION, LOSS OR CORRUPTION OF DATA OR NETWORKS. + + (b) IN NO EVENT WILL EITHER PARTY’S AGGREGATE LIABILITY FOR ANY AND ALL CLAIMS UNDER THIS AGREEMENT EXCEED FIFTY($50.00) DOLLARS (USD). + + (c) THE FOREGOING LIMITATIONS SHALL NOT APPLY TO BREACHES OF CONFIDENTIALITY OBLIGATIONS OR FOR MISAPPROPRIATION OR INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS, AND SHALL APPLY NOTWITHSTANDING THE FAILURE OF ANY REMEDY PROVIDED HEREIN. THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS SHALL APPLY TO ANY AND ALL CLAIMS, REGARDLESS OF WHETHER SUCH LIABILITY ARISES FROM ANY CLAIM BASED UPON CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, OR OTHERWISE, AND WHETHER OR NOT THE PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGE. + + Some states do not allow the exclusion or limitation of incidental or consequential damages, so the above limitation or exclusion may not apply to You. INSOFAR AS APPLICABLE LAW PROHIBITS ANY LIMITATION ON LIABILITY HEREIN, THE PARTIES AGREE THAT SUCH LIMITATION WILL BE AUTOMATICALLY MODIFIED, BUT ONLY TO THE EXTENT SO AS TO MAKE THE LIMITATION COMPLIANT WITH APPLICABLE LAW. + + Termination + + Either party may terminate this Agreement with or without cause immediately upon providing notice to the other party. Upon any termination of this Agreement, (a) Developer must discontinue accessing and using the Fabric Technology and delete all Software and Documentation; (b) the provisions in Sections 4 (Kit Terms), 7 (Developer Feedback), 8 (Data Usage and Transfer), 11 (Confidentiality), 12 (Ownership; Reservation of Rights), 14 (Google Disclaimers), 15 (Indemnification), 16 (Limitation of Liability), this Section 17 (Termination) and Section 18(e) (Governing Law; Venue; Prevailing Fees) shall survive; (c) all obligations or liabilities that accrued prior to the effective date of termination and all remedies for breach of this Agreement shall survive; and (d) all other rights, obligations, and licenses of the parties under this Agreement shall terminate. + + Miscellaneous + + Entire Agreement. This Agreement constitutes the entire agreement, and supersedes all prior negotiations, understandings, or agreements (oral or written), between the parties about the subject matter of this Agreement. + + Amendments. Google may amend this Agreement from time to time. If Google makes a change to this Agreement that, in its sole discretion, is material, Google will notify Developer by providing notice of the change through the Services, the Plugin, or at the email address that Developer provided to Google upon signing up to access the Services. If Developer does not agree to the modified terms of the Agreement, Developer shall notify Google in writing within thirty (30) days, after which this Agreement shall immediately terminate and the Google Entities shall have no further responsibility or liability to Developer. + + Waivers. The failure of either party to enforce its rights under this Agreement at any time for any period will not be construed as a waiver of such rights. + + Severability. If any provision of this Agreement is determined to be illegal or unenforceable, that provision will be limited or eliminated to the minimum extent necessary so that this Agreement will otherwise remain in full force and effect and enforceable. + + Governing Law; Venue; Prevailing Fees. This Agreement shall be governed by and construed in accordance with the laws of the State of California, without regard to its conflicts of law provisions. (a) Except as set forth in Section 18.5(b) below, all claims arising out of or relating to this Agreement or the Services ("Disputes”) will be governed by California law, excluding California’s conflict of laws rules, and all Disputes will be litigated exclusively in the federal or state courts of Santa Clara County, California, USA, and You and Google consent to personal jurisdiction in those courts. (b) If Your principal place of business (for entities) or place of residence (for individuals) is in any country within APAC (other than Australia, Japan, New Zealand or Singapore) or Latin America, this Section 18.5(b) will apply instead of Section 18.5(a) above. ALL DISPUTES (AS DEFINED ABOVE) WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING CALIFORNIA’S CONFLICT OF LAWS RULES. The parties will try in good faith to settle any Dispute within 30 days after the Dispute arises. If the Dispute is not resolved within 30 days, it must be resolved by arbitration by the American Arbitration Association’s International Centre for Dispute Resolution in accordance with its Expedited Commercial Rules in force as of the date of this Agreement ("Rules"). The parties will mutually select one arbitrator. The arbitration will be conducted in English in Santa Clara County, California, USA. Either party may apply to any competent court for injunctive relief necessary to protect its rights pending resolution of the arbitration. The arbitrator may order equitable or injunctive relief consistent with the remedies and limitations in this Agreement. Subject to the confidentiality requirements in this Agreement, either party may petition any competent court to issue any order necessary to protect that party's rights or property; this petition will not be considered a violation or waiver of this governing law and arbitration section and will not affect the arbitrator’s powers, including the power to review the judicial decision. The parties stipulate that the courts of Santa Clara County, California, USA, are competent to grant any order under this subsection. The arbitral award will be final and binding on the parties and its execution may be presented in any competent court, including any court with jurisdiction over either party or any of its property. Any arbitration proceeding conducted in accordance with this section will be considered Confidential Information under this Agreement's confidentiality section, including (i) the existence of, (ii) any information disclosed during, and (iii) any oral communications or documents related to the arbitration proceedings. The parties may also disclose the information described in this section to a competent court as may be necessary to file any order under this section or execute any arbitral decision, but the parties must request that those judicial proceedings be conducted in camera (in private). The parties will pay the arbitrator’s fees, the arbitrator's appointed experts' fees and expenses, and the arbitration center's administrative expenses in accordance with the Rules. In its final decision, the arbitrator will determine the non-prevailing party's obligation to reimburse the amount paid in advance by the prevailing party for these fees. Each party will bear its own lawyers’ and experts’ fees and expenses, regardless of the arbitrator’s final decision. (c) If Your principal place of business (for entities) or place of residence (for individuals) is in Greece, all Disputes (as defined above) will be governed by Greek law and the parties submit to the exclusive jurisdiction of the courts of Athens in relation to any Dispute. + + Force Majeure. In the event that either party is prevented from performing, or is unable to perform, any of its obligations under this Agreement (except payment obligations) due to any cause beyond its reasonable control, the affected party shall give written notice thereof to the other party and its performance shall be extended for the period of delay or inability to perform due to such occurrence. + + Notices. Any notice or communication hereunder shall be in writing and either personally delivered or sent via confirmed facsimile, confirmed electronic transmission, recognized express delivery courier, or certified or registered mail, prepaid and return receipt requested, addressed to the other party, which, in the case of Developer, shall be the email address that Developer provided to Google upon signing up for the Services, and, in the case of Google, shall be Google Inc. 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA, with a copy to Legal Department. All notices shall be in English, and deemed to have been received when they are hand delivered, or five business days of their mailing, or upon confirmed electronic transmission or confirmed facsimile transmission. + + Assignment. This Agreement and the rights and obligations hereunder may not be assigned, transferred, or delegated, in whole or in part, whether voluntarily or by operation of law, contract, merger (whether Developer is the surviving or disappearing entity), stock or asset sale, consolidation, dissolution, through government action or otherwise, by Developer without Google’s prior written consent. Any assignment or transfer in violation of the foregoing shall automatically be null and void, and Google may immediately terminate this Agreement upon such an attempt. This Agreement shall be binding upon, and inure to the benefit of, any permitted successors, representatives, and permitted assigns of the parties hereto. + + Independent Contractors. The parties shall be independent contractors under this Agreement, and nothing herein will constitute either party as the employer, employee, agent, or representative of the other party, or both parties as joint venturers or partners for any purpose. Neither party will have the right or authority to assume or create any obligation or responsibility on behalf of the other party. + + No Publicity. Developer will not issue any press release or otherwise make any public announcement with respect to this Agreement, any Fabric Technology, or Developer’s relationship with Google without Google’s prior written consent. json: fabric-agreement-2017.json - yml: fabric-agreement-2017.yml + yaml: fabric-agreement-2017.yml html: fabric-agreement-2017.html - text: fabric-agreement-2017.LICENSE + license: fabric-agreement-2017.LICENSE - license_key: facebook-nuclide + category: Proprietary Free spdx_license_key: LicenseRef-scancode-facebook-nuclide other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Facebook, Inc. ("Facebook") owns all right, title and interest, including all + intellectual property and other proprietary rights, in and to the Nuclide + software (the "Software"). Subject to your compliance with these terms, you are + hereby granted a non-exclusive, worldwide, royalty-free copyright license to + (1) use and copy the Software; and (2) reproduce and distribute the Software as part + of your own software ("Your Software"), provided Your Software does not consist + solely of the Software; and (3) modify the Software for your own internal use. + Facebook reserves all rights not expressly granted to you in this license agreement. + + THE SOFTWARE AND DOCUMENTATION, IF ANY, ARE PROVIDED "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 FACEBOOK OR ITS AFFILIATES, OFFICERS, DIRECTORS OR EMPLOYEES + 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 THE SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY + OF SUCH DAMAGE. json: facebook-nuclide.json - yml: facebook-nuclide.yml + yaml: facebook-nuclide.yml html: facebook-nuclide.html - text: facebook-nuclide.LICENSE + license: facebook-nuclide.LICENSE - license_key: facebook-patent-rights-2 + category: Patent License spdx_license_key: LicenseRef-scancode-facebook-patent-rights-2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: | + Additional Grant of Patent Rights Version 2 + + "Software" means the software distributed by Facebook, Inc. + + Facebook, Inc. ("Facebook") hereby grants to each recipient of the Software + ("you") a perpetual, worldwide, royalty-free, non-exclusive, irrevocable + (subject to the termination provision below) license under any Necessary + Claims, to make, have made, use, sell, offer to sell, import, and otherwise + transfer the Software. For avoidance of doubt, no license is granted under + Facebook’s rights in any patent claims that are infringed by (i) modifications + to the Software made by you or any third party or (ii) the Software in + combination with any software or other technology. + + The license granted hereunder will terminate, automatically and without notice, + if you (or any of your subsidiaries, corporate affiliates or agents) initiate + directly or indirectly, or take a direct financial interest in, any Patent + Assertion: (i) against Facebook or any of its subsidiaries or corporate + affiliates, (ii) against any party if such Patent Assertion arises in whole or + in part from any software, technology, product or service of Facebook or any of + its subsidiaries or corporate affiliates, or (iii) against any party relating + to the Software. Notwithstanding the foregoing, if Facebook or any of its + subsidiaries or corporate affiliates files a lawsuit alleging patent + infringement against you in the first instance, and you respond by filing a + patent infringement counterclaim in that lawsuit against that party that is + unrelated to the Software, the license granted hereunder will not terminate + under section (i) of this paragraph due to such counterclaim. + + A "Necessary Claim" is a claim of a patent owned by Facebook that is + necessarily infringed by the Software standing alone. + + A "Patent Assertion" is any lawsuit or other action alleging direct, indirect, + or contributory infringement or inducement to infringe any patent, including a + cross-claim or counterclaim. json: facebook-patent-rights-2.json - yml: facebook-patent-rights-2.yml + yaml: facebook-patent-rights-2.yml html: facebook-patent-rights-2.html - text: facebook-patent-rights-2.LICENSE + license: facebook-patent-rights-2.LICENSE - license_key: facebook-software-license + category: Proprietary Free spdx_license_key: LicenseRef-scancode-facebook-software-license other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + You are hereby granted a non-exclusive, worldwide, royalty-free license to use, + copy, modify, and distribute this software in source code or binary form for use + in connection with the web services and APIs provided by Facebook. + + As with any software that integrates with the Facebook platform, your use of + this software is subject to the Facebook Developer Principles and Policies + [http://developers.facebook.com/policy/]. This copyright notice shall be + included in all copies or substantial portions of the software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. json: facebook-software-license.json - yml: facebook-software-license.yml + yaml: facebook-software-license.yml html: facebook-software-license.html - text: facebook-software-license.LICENSE + license: facebook-software-license.LICENSE - license_key: fair + category: Permissive spdx_license_key: Fair other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Usage of the works is permitted provided that this instrument is retained with + the works, so that any entity that uses the works is notified of this + instrument. + + DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY. json: fair.json - yml: fair.yml + yaml: fair.yml html: fair.html - text: fair.LICENSE + license: fair.LICENSE - license_key: fair-source-0.9 + category: Source-available spdx_license_key: LicenseRef-scancode-fair-source-0.9 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + Fair Source License, version 0.9 + Copyright © [year] [copyright owner] + + Licensor: [legal name of licensor] + + Software: [name software and version if applicable] + + Use Limitation: [number] users + + License Grant. Licensor hereby grants to each recipient of the Software (“you”) a non-exclusive, non-transferable, royalty-free and fully-paid-up license, under all of the Licensor’s copyright and patent rights, to use, copy, distribute, prepare derivative works of, publicly perform and display the Software, subject to the Use Limitation and the conditions set forth below. + + Use Limitation. The license granted above allows use by up to the number of users per entity set forth above (the “Use Limitation”). For determining the number of users, “you” includes all affiliates, meaning legal entities controlling, controlled by, or under common control with you. If you exceed the Use Limitation, your use is subject to payment of Licensor’s then-current list price for licenses. + + Conditions. Redistribution in source code or other forms must include a copy of this license document to be provided in a reasonable manner. Any redistribution of the Software is only allowed subject to this license. + + Trademarks. This license does not grant you any right in the trademarks, service marks, brand names or logos of Licensor. + + DISCLAIMER. THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OR CONDITION, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. LICENSORS HEREBY DISCLAIM ALL LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE. + + Termination. If you violate the terms of this license, your rights will terminate automatically and will not be reinstated without the prior written consent of Licensor. Any such termination will not affect the right of others who may have received copies of the Software from you. json: fair-source-0.9.json - yml: fair-source-0.9.yml + yaml: fair-source-0.9.yml html: fair-source-0.9.html - text: fair-source-0.9.LICENSE + license: fair-source-0.9.LICENSE - license_key: fancyzoom + category: Proprietary Free spdx_license_key: LicenseRef-scancode-fancyzoom other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Redistribution and use of this effect in source form, with or without modification, + are permitted provided that the following conditions are met: + + * USE OF SOURCE ON COMMERCIAL (FOR-PROFIT) WEBSITE REQUIRES ONE-TIME LICENSE FEE PER DOMAIN. + Reasonably priced! Visit www.fancyzoom.com for licensing instructions. Thanks! + + * Non-commercial (personal) website use is permitted without license/payment! + + * Redistribution of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + * Redistribution of source code and derived works cannot be sold without specific + written prior 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. json: fancyzoom.json - yml: fancyzoom.yml + yaml: fancyzoom.yml html: fancyzoom.html - text: fancyzoom.LICENSE + license: fancyzoom.LICENSE - license_key: far-manager-exception + category: Permissive spdx_license_key: LicenseRef-scancode-far-manager-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Permissive + text: | + EXCEPTION: + Far Manager plugins that use only the following header files from this + distribution (none or any): farcolor.hpp, farkeys.hpp, plugin.hpp, + farcolorW.pas, farkeysW.pas and pluginW.pas; can be distributed under any other + possible license with no implications from the above license on them. json: far-manager-exception.json - yml: far-manager-exception.yml + yaml: far-manager-exception.yml html: far-manager-exception.html - text: far-manager-exception.LICENSE + license: far-manager-exception.LICENSE - license_key: fastbuild-2012-2020 + category: Permissive spdx_license_key: LicenseRef-scancode-fastbuild-2012-2020 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. + + 2. If you use this software, in source or binary form, an acknowledgment in the product documentation or credits would be appreciated but is not required. Example: "This product uses FASTBuild © 2012-2020 Franta Fulin." + + 3. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. + + 4. This notice may not be removed or altered from any source distribution. json: fastbuild-2012-2020.json - yml: fastbuild-2012-2020.yml + yaml: fastbuild-2012-2020.yml html: fastbuild-2012-2020.html - text: fastbuild-2012-2020.LICENSE + license: fastbuild-2012-2020.LICENSE - license_key: fastcgi-devkit + category: Permissive spdx_license_key: OML other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This FastCGI application library source and object code (the + "Software") and its documentation (the "Documentation") are + copyrighted by Open Market, Inc ("Open Market"). The following terms + apply to all files associated with the Software and Documentation + unless explicitly disclaimed in individual files. + + Open Market permits you to use, copy, modify, distribute, and license + this Software and the 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 and Documentation may + be copyrighted by their authors and need not follow the licensing + terms described here. If modifications to this Software and + Documentation have new licensing terms, the new terms must be clearly + indicated on the first page of each file where they apply. + + OPEN MARKET MAKES NO EXPRESS OR IMPLIED WARRANTY WITH RESPECT TO THE + SOFTWARE OR THE DOCUMENTATION, INCLUDING WITHOUT LIMITATION ANY + WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN + NO EVENT SHALL OPEN MARKET BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY + DAMAGES ARISING FROM OR RELATING TO THIS SOFTWARE OR THE + DOCUMENTATION, INCLUDING, WITHOUT LIMITATION, ANY INDIRECT, SPECIAL OR + CONSEQUENTIAL DAMAGES OR SIMILAR DAMAGES, INCLUDING LOST PROFITS OR + LOST DATA, EVEN IF OPEN MARKET HAS BEEN ADVISED OF THE POSSIBILITY OF + SUCH DAMAGES. THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS IS". + OPEN MARKET HAS NO LIABILITY IN CONTRACT, TORT, NEGLIGENCE OR + OTHERWISE ARISING OUT OF THIS SOFTWARE OR THE DOCUMENTATION. json: fastcgi-devkit.json - yml: fastcgi-devkit.yml + yaml: fastcgi-devkit.yml html: fastcgi-devkit.html - text: fastcgi-devkit.LICENSE + license: fastcgi-devkit.LICENSE - license_key: fatfs + category: Permissive spdx_license_key: LicenseRef-scancode-fatfs other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + / FatFs module is an open source software. Redistribution and use of FatFs in + / source and binary forms, with or without modification, are permitted provided + / that the following condition is met: + / + / 1. Redistributions of source code must retain the above copyright notice, + / this condition and the following disclaimer. + / + / This software is provided by the copyright holder and contributors "AS IS" + / and any warranties related to this software are DISCLAIMED. + / The copyright owner or contributors be NOT LIABLE for any damages caused + / by use of this software. json: fatfs.json - yml: fatfs.yml + yaml: fatfs.yml html: fatfs.html - text: fatfs.LICENSE + license: fatfs.LICENSE - license_key: fawkes-runtime-exception + category: Copyleft Limited spdx_license_key: Fawkes-Runtime-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + Linking this library statically or dynamically with other modules is + making a combined work based on this library. Thus, the terms and + conditions of the GNU General Public License cover the whole + combination. As a special exception, the copyright holders of this + library give you permission to link this library with independent + modules to produce an executable, regardless of the license terms of + these independent modules, and to copy and distribute the resulting + executable under terms of your choice, provided that you also meet, for + each linked independent module, the terms and conditions of the license + of that module. An independent module is a module which is not derived + from or based on this library. If you modify this library, you may + extend this exception to your version of the library, but you are not + obligated to do so. If you do not wish to do so, delete this exception + statement from your version. Additionally if other files instantiate + templates or use macros or inline functions from this file, or you + compile this file and link it with other files to produce an executable, + this file does not by itself cause the resulting executable to be + covered by the GNU General Public License. This exception does not + however invalidate any other reasons why the executable file might be + covered by the GNU General Public License. json: fawkes-runtime-exception.json - yml: fawkes-runtime-exception.yml + yaml: fawkes-runtime-exception.yml html: fawkes-runtime-exception.html - text: fawkes-runtime-exception.LICENSE + license: fawkes-runtime-exception.LICENSE - license_key: fftpack-2004 + category: Permissive spdx_license_key: LicenseRef-scancode-fftpack-2004 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "FFTPACK license:\nRedistribution and use of the Software in source and binary forms,\n\ + with or without modification, is permitted provided that the\nfollowing conditions are met:\n\ + \n - Neither the names of NCAR's Computational and Information Systems\n Laboratory,\ + \ the University Corporation for Atmospheric Research,\n nor the names of its sponsors\ + \ or contributors may be used to\n endorse or promote products derived from this Software\ + \ without\n specific prior written permission. \n\n - Redistributions of source code\ + \ must retain the above copyright\n notices, this list of conditions, and the disclaimer\ + \ below.\n\n - Redistributions in binary form must reproduce the above copyright\n notice,\ + \ this list of conditions, and the disclaimer below in the\n documentation and/or other\ + \ materials provided with the\n distribution.\n\n THIS SOFTWARE IS PROVIDED \"AS IS\"\ + , WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE\ + \ WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT.\ + \ IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT\n HOLDERS BE LIABLE FOR ANY CLAIM, INDIRECT,\ + \ INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES OR OTHER LIABILITY, WHETHER\ + \ IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION\ + \ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE\n SOFTWARE." json: fftpack-2004.json - yml: fftpack-2004.yml + yaml: fftpack-2004.yml html: fftpack-2004.html - text: fftpack-2004.LICENSE + license: fftpack-2004.LICENSE - license_key: filament-group-mit + category: Permissive spdx_license_key: LicenseRef-scancode-filament-group-mit other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Permission is hereby granted, free of charge, to any person obtaining a copy\nof this\ + \ software and associated documentation files (the \"Software\"), to deal\nin the Software\ + \ without restriction, including without limitation the rights\nto use, copy, modify, merge,\ + \ publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons\ + \ to whom the Software is\nfurnished to do so, subject to the following conditions:\n\n\ + The above copyright notice and this permission notice shall be included in\nall copies or\ + \ substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY\ + \ OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n\ + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR\ + \ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN\ + \ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE\ + \ SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\nThe end-user documentation\ + \ included with the redistribution, if any, must \ninclude the following acknowledgment:\ + \ \"This product includes software \ndeveloped by Filament Group, Inc (http://www.filamentgroup.com/)\ + \ and its \ncontributors\", in the same place and form as other third-party acknowledgments.\ + \ \nAlternately, this acknowledgment may appear in the software itself, in the same \nform\ + \ and location as other such third-party acknowledgments." json: filament-group-mit.json - yml: filament-group-mit.yml + yaml: filament-group-mit.yml html: filament-group-mit.html - text: filament-group-mit.LICENSE + license: filament-group-mit.LICENSE - license_key: first-works-appreciative-1.2 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-first-works-appreciative-1.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "First Works Appreciative License\n\nVersion 1.2\nJuly 7, 2005\nCopyright (c) 2005\n\ + Jonathan Michael Davis\n\n\n\nAll Rights Reserved\n\ + \n\nThis First Works Appreciative License (the \"License\") applies to any original\nwork\ + \ of authorship (the \"Original Work\") under whose owner (the \"Licensor\") has\nincluded\ + \ and clearly referenced this license as part of the Original work, or\nhas placed the following\ + \ notice immediately following or accompanying the\ncopyright notice for the Original Work:\n\ + \n \"Licensed under the First Works Appreciative License version 1.2\"\n\nThe recipient\ + \ and/or of Original Work (the \"Licensee\") is hereby granted this\nLicense.\n\n1) GRANT\ + \ OF LICENSE. Licensor hereby grants to the Licensee a worldwide,\n non-exclusive, perpetual\ + \ license to exercise the following activities:\n\n a) to reproduce the Original\ + \ Work in its original state;\n \n b) to prepare cooperative works in conjunction\ + \ with the Original Work\n that extend the functionality or usefulness of Original\ + \ Work;\n \n c) to modify the Original Work (the \"Modified Work\") for personal\ + \ use\n or limited distribution, with the provision that copies of the\n \ + \ Modified Work shall conform to the obligations set forth by the\n sections\ + \ of this license entitled Conditions Of Redistribution\n (section 2) and Limitations\ + \ Of Derivative Work (section 3);\n \n d) to distribute copies of the Original\ + \ Work and associated works to\n the public, with the provision that copies of\ + \ the Original Work\n shall conform to the obligations set forth by the sections\ + \ of this\n license entitled Conditions Of Redistribution (section 2) and\n \ + \ Limitations Of Derivative Work (section 3);\n \n e) to perform\ + \ the Original Work publicly or privately;\n \n f) to display the Original\ + \ Work publicly or privately.\n\n2) CONDITIONS OF REDISTRIBUTION. The grant of copyright\ + \ license for\n redistribution is limited to the following conditions:\n\n a) Original\ + \ authorship recognition shall be retained with all copies of\n Original Work\ + \ and Modified Work insomuch as was reflected by the\n Original Work. Modified\ + \ Work may assign new logos and other artwork\n and designs to override Original\ + \ Work, provided it does not negate\n communication of original authorship or\ + \ Licensor and identifies the\n name and/or title of the Original Work.\n \ + \ \n b) Distribution of Original Work may not directly profit, including\n\ + \ profitable sale of the Original Work, without permission from the\n \ + \ Licensor, whether accompanied with this License or provided to\n Licensee\ + \ as a separate exchange of communication or agreement. This\n limitation DOES\ + \ NOT hinder Licensee from bundling Original Work with\n other work of value for\ + \ profit, provided that the bundle is not\n identified, labeled, described, or\ + \ otherwise marketed with the\n bundled work being the primary product associated\ + \ with the bundle.\n\n c) Distribution of Modified Work may directly profit, including\n\ + \ profitable sale of the Modified Work, provided that the Licensee has\n \ + \ made a reasonable effort to obtain prior permission to perform the\n work.\ + \ Licensor reserves the right to deny permission if contacted.\n However, the\ + \ requirement of permission is dependent upon the\n Licensor's accessibility,\ + \ such as having a valid address. If the\n Licensee can reasonably evidence that\ + \ contact could not be made\n with the Licensor to obtain permission within 60\ + \ days of reasonable\n effort, obtainment of permission is not required, provided\n\ + \ subsection \"d\" is retained.\n\n d) Distribution of Modified Work shall\ + \ not be granted unless either:\n \n 1. The modifications are reasonably\ + \ minor, and the product is\n clearly identified as modified, but the\ + \ product otherwise\n retains all identifications of the Original Work,\ + \ with the\n original author and Licensor retained.\n\n \ + \ ii. The modifications are reasonably significant, and the\n Modified\ + \ Work has insignificant (less than 50%) dependence\n upon the Original\ + \ Work to maintain value or usefulness.\n Ratio of dependence shall not\ + \ be construed to assume\n measurement based upon file size, lines of\ + \ code, visual\n exposure, or otherwise, but shall be measured fairly\ + \ on a\n case by case basis in a court of law or by a third party\n \ + \ mediator.\n\n3) LIMITATIONS OF DERIVATIVE WORK. Source code is provided\ + \ freely for personal\n use on the local machine, and for modifying Original Work to create\ + \ Modified\n Work for use on a personal basis on a local machine, or to distribute\n \ + \ according to the Conditions of Redistribution (section 2). Source code may\n also be\ + \ used for business use, but not for commercial use except as outlined\n in Conditions\ + \ of Redistribution (section 2). Source code is also provided\n for unlimited educational\ + \ use, provided that the Licensee is or represents\n an established educational organization,\ + \ and original authorship notations\n and recognitions are retained.\n\n4) NO WARRANTY.\ + \ Except as expressly set forth in this or any superseding\n agreement, the Original Work\ + \ is provided on an \"as is\" basis, without\n warranties or conditions of any kind, either\ + \ express or implied including,\n without limitation, any warranties or conditions of\ + \ title, non-infringement,\n merchantability or fitness for a particular purpose. Each\ + \ Recipient is\n solely responsible for determining the appropriateness of using and\n\ + \ distributing the Original Work (or Modified Work) and assumes all risks\n associated\ + \ with its exercise of rights under this License, including but not\n limited to the risks\ + \ and costs of software errors, compliance with\n applicable laws, damage to or loss of\ + \ data, software or hardware, and\n unavailability or interruption of operations.\n\n\ + 5) DISCLAIMER OF LIABILITY. Except as expressly set forth in this or any\n superseding\ + \ agreement, neither Licensee nor Licensor, nor any contributors\n to Modified Works,\ + \ shall have any liability for any direct, indirect,\n incidental, special, exemplary,\ + \ or consequential damages (including without\n limitation lost profits), however caused\ + \ and on any theory of liability,\n whether in contract, strict liability, or tort (including\ + \ negligence or\n otherwise) arising in any way out of the use or distribution of the\ + \ Original\n Work or the exercise of any rights granted hereunder, even if advised of\n\ + \ the possibility of such damages." json: first-works-appreciative-1.2.json - yml: first-works-appreciative-1.2.yml + yaml: first-works-appreciative-1.2.yml html: first-works-appreciative-1.2.html - text: first-works-appreciative-1.2.LICENSE + license: first-works-appreciative-1.2.LICENSE - license_key: flex-2.5 + category: Permissive spdx_license_key: LicenseRef-scancode-flex-2.5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The United States Government has rights in this work pursuant to contract no. DE- + AC03-76SF00098 between the United States Department of Energy and the University of + California. + + Redistribution and use in source and binary forms are permitted provided that: (1) + source distributions retain this entire copyright notice and comment, and (2) + distributions including binaries display the following acknowledgement: "This product + includes software developed by the University of California, Berkeley and its + contributors" in the documentation or other materials provided with the distribution + and in all advertising materials mentioning features or use of this software. 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 "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, + INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE. json: flex-2.5.json - yml: flex-2.5.yml + yaml: flex-2.5.yml html: flex-2.5.html - text: flex-2.5.LICENSE + license: flex-2.5.LICENSE - license_key: flex2sdk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-flex2sdk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + ADOBE FLEX 2.0.1 SOFTWARE DEVELOPMENT KIT (Non Open Source Version) + Software License Agreement + + NOTICE TO USER: THIS LICENSE AGREEMENT GOVERNS INSTALLATION AND USE OF THE ADOBE SOFTWARE DESCRIBED HEREIN BY LICENSEES OF SUCH SOFTWARE. LICENSEE AGREES THAT THIS AGREEMENT IS LIKE ANY WRITTEN NEGOTIATED AGREEMENT SIGNED BY LICENSEE. BY CLICKING TO ACKNOWLEDGE AGREEMENT TO BE BOUND DURING REVIEW OF AN ELECTRONIC VERSION OF THIS LICENSE, OR DOWNLOADING, COPYING, INSTALLING OR USING THE SOFTWARE, LICENSEE ACCEPTS ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT. THIS AGREEMENT IS ENFORCEABLE AGAINST ANY PERSON OR ENTITY THAT INSTALLS AND USES THE SOFTWARE AND ANY PERSON OR ENTITY (E.G., SYSTEM INTEGRATOR, CONSULTANT OR CONTRACTOR) THAT INSTALLS OR USES THE SOFTWARE ON ANOTHER PERSON’S OR ENTITY’S BEHALF. + + THIS AGREEMENT SHALL APPLY ONLY TO THE SOFTWARE TO WHICH LICENSEE HAS OBTAINED A VALID LICENSE (E.G., ADOBE FLEX DATA SERVICES SOFTWARE OR ADOBE FLEX SOFTWARE DEVELOPMENT KIT) REGARDLESS OF WHETHER OTHER SOFTWARE IS REFERRED TO OR DESCRIBED HEREIN. + + LICENSEE’S RIGHTS UNDER THIS AGREEMENT MAY BE SUBJECT TO ADDITIONAL TERMS AND CONDITIONS IN A SEPARATE WRITTEN AGREEMENT WITH ADOBE THAT SUPPLEMENTS OR SUPERSEDES ALL OR PORTIONS OF THIS AGREEMENT. + + 1. Definitions + + 1.1 "Adobe" means Adobe Systems Incorporated, a Delaware corporation, 345 Park Avenue, San Jose, California 95110, if subsection 9(a) of this Agreement applies; otherwise it means Adobe Systems Software Ireland Limited, Unit 3100, Lake Drive, City West Campus, Saggart D24, Dublin, Republic of Ireland, a company organized under the laws of Ireland and an affiliate and licensee of Adobe Systems Incorporated. + + 1.2 "Authorized Users" means employees and individual contractors (i.e., temporary employees) of Licensee. + + 1.3 "Computer" means one or more central processing units ("CPU") in a hardware device (including hardware devices accessed by multiple users through a network ("Server")) that accepts information in digital or similar form and manipulates it for a specific result based on a sequence of instructions. + + 1.4 "Development Software" means Software licensed for use in a technical environment solely for internal development and testing with respect to licensed Production Software. + + 1.5 "Disaster Recovery Environment" means Licensee’s technical environment designed solely to allow Licensee to respond to an interruption in service due to an event beyond Licensee’s control that creates an inability on Licensee’s part to provide critical business functions for a material period of time. + + 1.6 "Documentation" means the user manuals and/or technical publications as applicable, relating to installation, use and administration of the Software. + + 1.7 "Flex Software Development Kit" means the SDK Components that are licensed as a standalone deliverable, and not as part of another software application. + + 1.8 "Internal Network" means Licensee’s private, proprietary network resource accessible only by Authorized Users. "Internal Network" specifically excludes the Internet (as such term is commonly defined) or any other network community open to the public, including membership or subscription driven groups, associations or similar organizations. Connection by secure links such as VPN or dial up to Licensee’s Internal Network for the purpose of allowing Authorized Users to use the Software should be deemed use over an Internal Network. + + 1.9 "Per-CPU" The total number of CPUs on the Computers used to operate the Software may not exceed the licensed quantity of CPUs. For purposes of this definition, all CPUs on a Computer on which the Software is installed shall be deemed to operate the Software unless Customer configures that Computer (using a reliable and verifiable means of hardware or software partitioning) such that the total number of CPUs that actually operate the Software is less than the total number on that Computer. + + 1.10 "Production Software" means Software licensed for productive business use. + + 1.11 "Sample Code" means sample software in source code format designated in the Documentation as "sample code", "samples," "sample application code", and/or "snippets", and found in directories labeled "samples", but shall not mean any components that are part of the SDK Components. + + 1.12 "SDK Components" means the files, libraries, and executables contained in the directory labeled Flex SDK 2 or, as applicable, subsequently labeled directories (e.g. Flex SDK 2.1, Flex SDK 3, etc.) (except for the contents contained in subdirectory "samples"), including the SDK Source Files, build files, compilers, and related information, as well as the file format specifications, if any, included as part of the Software as described in the Documentation or a "Read Me" file accompanying the applicable Software. + + 1.13 "Software" means the object code version of the validly licensed software program(s) including all Documentation and other materials provided by Adobe to Licensee under this Agreement, and any modified versions and copies of, and upgrades, updates and additions to such Software, provided to Licensee by Adobe at any time, to the extent not provided under a separate agreement. The term "Software Product" may also be used to indicate a particular product or version of a product, and otherwise has the same meaning as Software. + + 2. License. Subject to the terms and conditions of this Agreement, Adobe grants to Licensee a perpetual, non-exclusive license to use the Software delivered hereunder according to the terms and conditions of this Agreement, on Computers connected to Licensee’s Internal Network, on the licensed platforms and configurations, in the manner and for the purposes described in the Documentation. If Licensee has licensed Adobe Flex Data Services Software, then the terms of Section 3 also apply to Licensee’s use of the Software unless Licensee licenses the software for evaluation purposes, in which case Section 4.1 applies, or unless Licensee licenses Not For Resale software, in which case Section 4.2 applies. The following additional terms also apply to Licensee’s use of the Software. + + 2.1 SDK Components. + + 2.1.1 License Grant. Subject to the terms and conditions of this Agreement, Adobe grants Licensee a non-exclusive, nontransferable license to (a) use the SDK Components for the sole purpose of internally developing Developer Programs, (b) use the SDK Components as part of Licensee’s website for the sole purpose of compiling the Developer Programs that are distributed through the Licensee’s website, (c) modify and reproduce SDK Source Files for use as a component of Developer Programs that add Material Improvements to the SDK Source Files, and (d) distribute SDK Source Files in object code form and/or source code form only as a component of Developer Programs that add Material Improvements to the SDK Source Files, provided that (1) such Developer Programs are designed to operate in connection with Adobe Flex Builder, Adobe Flex Charting, Adobe Flex Data Services Software, or the SDK Components, (2) Licensee distributes such object code and/or source code under the terms and conditions of an End User License Agreement, (3) Licensee includes a copyright notice reflecting the copyright ownership of Developer in such Developer Programs, (4) Licensee shall be solely responsible to its customers for any update or support obligation or other liability which may arise from such distribution, (5) Licensee does not make any statements that its Developer Program is "certified," or that its performance is guaranteed, by Adobe, (6) Licensee does not use Adobe’s name or trademarks to market its Developer Programs without written permission of Adobe, (7) Licensee does not delete or in any manner alter the copyright notices, trademarks, logos or related notices, or other proprietary rights notices of Adobe (and its licensors, if any) appearing on or within the SDK Source Files and/or SDK Components, or any documentation relating to the SDK Components, (8) Licensee causes any modified files to carry prominent notices stating that Licensee changed the files, and (9) Licensee does not use "mx", "mxml", "flex", "flash" or "adobe" in any new package or class names distributed with the SDK Source Files. Any modified or merged portion of the SDK Source Files is subject to this Agreement. + + 2.1.2 Definitions Related To SDK Components. + + (a) "Developer Programs" shall mean programs that are built consisting partly of the SDK Source Files and partly of user’s Material Improvement to add to or extend the SDK Source Files. + + (b) "End User License Agreement" means an end user license agreement that provides a: (1) limited, nonexclusive right to use the subject Developer Program; (2) set of provisions that ensures that any sublicensee of Licensee exercising the rights in such End User License Agreement complies with all restrictions and obligations set forth herein with respect to SDK Components; (3) prohibition against reverse engineering, decompiling, disassembling or otherwise attempting to discover the source code of the subject Developer Program that is substantially similar to that set forth in Section 2.10.1 below; (4) statement that, if Licensee’s customer requires any Adobe software in order to use the Developer Program, (i) Licensee’s customer must obtain such Adobe software via a valid license, and (ii) Licensee’s customer’s use of such Adobe software must be in accordance with the terms and conditions of the end user license agreement that ships with such Adobe software; (5) statement that Licensee and its suppliers retain all right, title and interest in the subject Developer Program that is substantially similar to that set forth as Section 5 below, (6) statement that Licensee’s suppliers disclaim all warranties, conditions, representations or terms with respect to the subject Developer Program, and (7) limit of liability that disclaims all liability for the benefit of Licensee’s suppliers. + + (c) "Material Improvement" shall mean perceptible, measurable and definable improvements to the SDK Source Files that provide extended or additional significant and primary functionality that add significant business value to the SDK Source Files. + + (d) "SDK Source Files" shall mean the Flex Framework source code files that are provided with the SDK Components and, if Licensee purchases a license to Adobe Flex Charting Software, Flex Charting components source code files that are provided with Flex Charting Software. + + 2.1.3 Restrictions. + + (a) General Restrictions. Except for the limited distribution rights as provided in Section 2.1.1 above with respect to SDK Source Files, Licensee may not distribute, sell, sublicense, rent, loan, or lease the SDK Components and/or any component thereof to any third party. For the avoidance of doubt, Licensee shall not have a right to distribute any SDK Components that are provided as executables and/or in object code form. Licensee also agrees not to add or delete any program files that would modify the functionality and/or appearance of other Adobe software and/or any component thereof. + + (b) Development Restrictions. Licensee agrees that Licensee will not use the SDK Components to create, develop or use any program, software or service which (1) contains any viruses, Trojan horses, worms, time bombs, cancelbots or other computer programming routines that are intended to damage, detrimentally interfere with, surreptitiously intercept or expropriate any system, data or personal information; (2) when used in the manner in which it is intended, violates any material law, statute, ordinance or regulation (including without limitation the laws and regulations governing export control, unfair competition, antidiscrimination or false advertising); or (3) interferes with the operability of other Adobe or third-party programs or software. + + (c) Indemnification. Licensee agrees to defend, indemnify, and hold Adobe and its suppliers harmless from and against any claims or lawsuits, including attorneys’ reasonable fees, that arise or result from the use or distribution of Developer Programs, provided that Adobe gives Licensee prompt written notice of any such claim, tenders to Licensee the defense or settlement of such a claim at Licensee’s expense, and cooperates with Licensee, at Licensee’s expense, in defending or settling such claim. + + 2.2 Sample Code. Licensee may modify the Sample Code solely for the purposes of designing, developing and testing Licensee’s own software applications. However, Licensee is permitted to use, copy and redistribute its modified Sample Code only if all of the following conditions are met: (a) Licensee includes Adobe's copyright notice (if any) with Licensee’s application, including every location in which any other copyright notice appears in such application; and (b) Licensee does not otherwise use Adobe's name, logos or other Adobe trademarks to market Licensee’s application. Licensee agrees to defend, indemnify, and hold Adobe and its suppliers harmless from and against any claims or lawsuits, including attorneys’ reasonable fees, that arise or result from the use or distribution of Licensee’s applications, provided that Adobe gives Licensee prompt written notice of any such claim, tenders to Licensee the defense or settlement of such a claim at Licensee’s expense, and cooperates with Licensee, at Licensee’s expense, in defending or settling such claim. + + 2.3 Adobe Flex Charting Software. If Adobe Flex Charting Software is included with the Software, then such Adobe Flex Charting Software is deemed an evaluation version, use of which is subject to Section 4.1 of this Agreement except for the sixty (60) day time out described therein; provided, however, such evaluation version shall be used solely in connection with Licensee’s use of the Flex SDK Components. In the event Licensee purchases a Production Software license to Adobe Flex Charting Software and enables such license with a production serial number, then the Licensee’s use of such Production Software shall be governed by the following terms: + + Adobe grants Licensee a non-exclusive license to use the Adobe Flex Charting Software for which Licensee has purchased and provided hereunder in the manner and for the purposes described in the Documentation, as further set forth below: + + 2.3.1 General Use. Licensee may install and use one copy of the Adobe Flex Charting Software on up to the licensed number of its compatible Computers; or + + 2.3.2 Server Deployment. Licensee may install one copy of the Adobe Flex Charting Software on one Computer file server within its Internal Network for the purpose of downloading and installing the Software on up to the licensed number of other Computers within the same Internal Network; or + + 2.3.3 Server Use. Licensee may install the licensed number of copies of the Adobe Flex Charting Software on the licensed number of Computer file server(s) within your Internal Network only for use of the Adobe Flex Charting Software (in conjunction with the use of licensed copies of Flex Data Services Software) initiated by an individual through commands, data or instructions (e.g., scripts) from a Computer within the same Internal Network. The total number of users (not the concurrent number of users) permitted to use the Software on such Computer file server(s) may not exceed the licensed number. + + 2.3.4 Portable or Home Computer Use. The primary user of the Computer on which the Software is installed may install a second copy of the Software for his or her exclusive use on either a portable Computer or a Computer located at his or her home, provided the Software on the portable or home Computer is not used at the same time as the Software on the primary Computer. + + 2.4 Backup and Disaster Recovery. Licensee may make a reasonable number of backup copies of the Software, provided the backup copies are not installed or used for other than archival purposes. With respect to Flex Data Services Software, if applicable, Licensee may also install copies of the Software in a Disaster Recovery Environment for use solely in disaster recovery and not for production, development, evaluation or testing purposes other than to ensure that the Software is capable of replacing the primary usage of the Software in case of a disaster. + + 2.5 Documentation. Licensee may make copies of the Documentation for use by Authorized Users in connection with use of the Software in accordance with this Agreement, but no more than the amount reasonably necessary. Any permitted copy of the Documentation that Licensee makes must contain the same copyright and other proprietary notices that appear on or in the Documentation. + + 2.6 Outsourcing. Licensee may sub-license use of the Software to a third party outsourcing or facilities management contractor to operate the Software on Licensee’s behalf, provided that (a) Licensee provides Adobe with prior written notice; (b) Licensee is responsible for ensuring that any such contractor agrees to abide by and fully complies with the terms of this Agreement as they relate to the use of the Software on the same basis as applies to Licensee; (c) such use is only in relation to Licensee’s direct beneficial business purposes as restricted herein; (d) such use does not represent or constitute an increase in the scope or number of licenses provided hereunder; and (e) Licensee shall remain fully liable for any and all acts or omissions by the contractor related to this Agreement. + + 2.7 Font Software. If the Software includes font software, then Licensee may (a) use the font software on Licensee’s Computers in connection with Licensee’s use of the Software as permitted under this Agreement; (b) output such font software on any output devices connected to Licensee’s Computers; (c) convert and install the font software into another format for use in other environments provided that use of the converted font software may not be distributed or transferred for any purpose except in accordance with the transfer section in this Agreement; and (d) embed copies of the font software into Licensee’s electronic documents for the purpose of printing and viewing the document, provided that if the font software Licensee is embedding is identified as "licensed for editable embedding" on Adobe’s website at http://www.adobe.com/type/browser/legal/embeddingeula.html, Licensee may also embed copies of that font software for the additional limited purpose of editing Licensee’s electronic documents. + + 2.8 Deployment. Any application created using Flex Data Service Software must be deployed with an authorized and validly licensed Production Software copy of Flex Data Services Software. + + 2.9 JRun Application. Licensee is prohibited from using Adobe JRun application server included with the Software other than solely in connection with its use of the Software and only for purposes of development. + + 2.10 Restrictions + + 2.10.1 No Modifications, No Reverse Engineering. Except as specifically provided herein with respect to SDK Components, Licensee shall not modify, port, adapt or translate the Software. Licensee shall not reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of the Software. Notwithstanding the foregoing, decompiling the Software is permitted to the extent the laws of Licensee’s jurisdiction give Licensee the right to do so to obtain information necessary to render the Software interoperable with other software; provided, however, that Licensee must first request such information from Adobe and Adobe may, in its discretion, either provide such information to Licensee or impose reasonable conditions, including a reasonable fee, on such use of the source code to ensure that Adobe’s and its suppliers’ proprietary rights in the source code for the Software are protected. + + 2.10.2 No Unbundling. The Software may include various applications, utilities and components, may support multiple platforms and languages or may be provided to Licensee on multiple media or in multiple copies. Nonetheless, the Software is designed and provided to Licensee as a single product to be used as a single product on Computers and platforms as permitted herein. Licensee is not required to use all component parts of the Software, but Licensee shall not unbundle the component parts of the Software for use on different Computers. Licensee shall not unbundle or repackage the Software for distribution, transfer or resale. + + 2.10.3 No Transfer. Licensee shall not sublicense, assign or transfer the Software or Licensee’s rights in the Software, or authorize any portion of the Software to be copied onto or accessed from another individual’s or entity’s Computer except as may be explicitly provided in this Agreement. Notwithstanding anything to the contrary in this Section 2.10.3, Licensee may transfer copies of the Software installed on one of Licensee’s Computers to another one of Licensee’s Computers provided that the resulting installation and use of the Software is in accordance with the terms of this Agreement and does not cause Licensee to exceed Licensee’s right to use the Software under this Agreement. + + 2.10.4 Prohibited Use. Except as expressly authorized under this Agreement, Licensee is prohibited from: (a) using the Software on behalf of third parties; (b) renting, leasing, lending or granting other rights in the Software including rights on a membership or subscription basis; and (c) providing use of the Software in a computer service business, third party outsourcing facility or service, service bureau arrangement, network, or time sharing basis. + + 2.10.5 Export Rules. Licensee agrees that the Software will not be shipped, transferred or exported into any country or used in any manner prohibited by the United States Export Administration Act or any other export laws, restrictions or regulations (collectively the "Export Laws"). In addition, if the Software is identified as an export controlled item under the Export Laws, Licensee represents and warrants that Licensee is not a citizen of, or located within, an embargoed or otherwise restricted nation (including Iran, Iraq, Syria, Sudan, Libya, Cuba and North Korea) and that Licensee is not otherwise prohibited under the Export Laws from receiving the Software. All rights to install and use the Software are granted on condition that such rights are forfeited if Licensee fails to comply with the terms of this Agreement. + + 3. License Metrics and Limitations. + + 3.1 Production Software License. Unless Licensee has been granted a valid serial number for another type of Adobe Flex Data Services Software license, Licensee shall be deemed to have licensed Adobe Flex Data Services Express Software. + + 3.1.1 Adobe Flex Data Services Enterprise License. This Section 3.1.1 applies only if Licensee has obtained a valid Adobe Flex Data Services Enterprise Software license. Adobe grants Licensee a license to install and use the Adobe Flex Data Services Software as Production Software on a Per-CPU basis. + + 3.1.2 Adobe Flex Data Services Departmental License. This Section 3.1.2 applies only if Licensee has obtained a valid Adobe Flex Data Services Departmental Software license. Adobe grants Licensee a license to (a) install and use the Adobe Flex Data Services Departmental Software as Production Software on a Per-CPU basis, and (b) operate applications designed to use the Flex Data Services Departmental Software (each a "Licensee Application") only with licensed CPUs provided that no more than 100 users shall concurrently use and/or access any Licensee Application or group of Licensee Applications that are operated with one (1) or more of the same CPUs. + + 3.1.3 Adobe Flex Data Services Express License. This Section 3.1.3 applies only if Licensee has obtained a valid Adobe Flex Data Services Express Software license. With respect to each unique application created by Licensee, Adobe grants Licensee a license to install and use such unique application and the Adobe Flex Data Services Express Software as Production Software on a Per-CPU basis; provided that Licensee shall not: (a) install, use or access such unique application and/or the Adobe Flex Data Services Express Software on more than one CPU, (b) cluster any CPUs, and/or (c) use load balancing. For avoidance of doubt, Licensee shall not deploy any unique application on multiple disconnected single CPUs, including without limitation, on kiosks and other such devices. + + 3.2 Development Software License. This Section 3.2 applies only if Licensee has obtained a valid Development Software license to the Software. In addition to the other terms contained herein, Licensee’s license to the Development Software is limited to use in Licensee’s technical environment strictly for testing and development purposes and not for production purposes. Licensee may (a) install the Development Software on Servers connected to Licensee’s Internal Network provided that the total number of Computers used to operate the Development Software does not exceed the licensed amount, and (b) permit Authorized Users to use the Development Software in accordance with this Agreement. + + 3.3 Adobe Flex Automation Agents License. This Section 3.3 governs Licensee’s use of the Adobe Flex Automation Agents software that accompanies Adobe Flex Data Services Enterprise Software and Adobe Flex Data Services Departmental Software. Adobe grants to Licensee a license to use the Adobe Flex Automation Agents software in connection with validly licensed Adobe Flex software to (a) build and internally playback tests of Flex applications developed by Licensee as Development Software, provided that the total number of Authorized Users permitted to create and/or execute test scripts shall not exceed the total number of valid CPU licenses of Adobe Flex Data Services Enterprise Software and Adobe Flex Data Services Departmental Software obtained by Licensee; and (b) deploy Flex applications developed by Licensee that use Adobe Flex Automation Agents on Licensee’s Computers as Production Software, provided that the total number of CPUs on which such applications are deployed shall not exceed the total number of valid CPU licenses of Adobe Flex Data Services Enterprise Software and Adobe Flex Data Services Departmental Software obtained by Licensee. + + 4. Evaluation Software and Not for Resale Software. + + 4.1 Evaluation Software. This Section 4.1 applies only if Licensee has obtained a valid license to evaluate Software as separately provided in writing by Adobe, as indicated by the serial number Licensee enters upon installation, and/or as indicated by the Software when first executed. + + 4.1.1 License. In addition to the other terms contained herein, Licensee’s license to evaluate the Software is limited to use strictly for Licensee’s own internal evaluation and review purposes and not for production purposes, and is further limited to a period not to exceed sixty (60) days from the date Licensee obtains the Software, unless such period of time is extended by Adobe, in which case, such period shall not exceed the expiration date of such extended period. Licensee may (a) install the Software on one (1) Computer connected to Licensee’s Internal Network, and (b) permit Authorized Users to use the Software to deliver content within Licensee’s Internal Network. Licensee’s rights with respect to the Software are further limited as described in Section 4.1.2. + + 4.1.2 Limitations. Licensee acknowledges that as evaluation software, the Software might place watermarks on output, contain limited functionality, or cease operations after a designated period of time unless extended by Adobe upon Licensee’s acquisition of a full commercial license. Licensee’s rights to install and use Software under this Section 4.1 will terminate immediately upon the earlier of (a) the expiration of the evaluation period described herein, or (b) such time that Licensee purchases a license to a non-evaluation version of such Software. Adobe reserves the right to terminate Licensee’s license to evaluate Software at any time in its sole discretion. Licensee agrees to return or destroy Licensee’s copy of the Software upon termination of this Agreement for any reason. To the extent that any provision in this Section 4.1 is in conflict with any other term or condition in this Agreement, this Section 4.1 shall supersede such other term(s) and condition(s) with respect to the evaluation of Software, but only to the extent necessary to resolve the conflict. LICENSEE ACKNOWLEDGES THAT THE EVALUATION SOFTWARE MIGHT PLACE WATERMARKS ON OUTPUT, CONTAIN LIMITED FUNCTIONALITY, OR FUNCTION FOR A LIMITED PERIOD OF TIME, AND ACCESS TO ANY FILES OR OUTPUT CREATED WITH SUCH SOFTWARE OR ANY PRODUCT ASSOCIATED WITH SUCH SOFTWARE IS ENTIRELY AT LICENSEE’S OWN RISK. ADOBE IS LICENSING THE SOFTWARE FOR EVALUATION ON AN "AS IS" BASIS AT LICENSEE’S OWN RISK. ADOBE DISCLAIMS ANY WARRANTY OR LIABILITY OBLIGATIONS TO LICENSEE OF ANY KIND. SEE SECTIONS 7 AND 8 FOR WARRANTY DISCLAIMERS AND LIABILITY LIMITATIONS WHICH GOVERN EVALUATION OF SOFTWARE. + + 4.2. Not For Resale Software. This Section 4.2 applies only if Licensee has obtained a valid license to evaluate the Software as "Not For Resale" or "NFR" software separately provided in writing by Adobe, as indicated by the serial number Licensee enters upon installation and/or as indicated by the Software when first executed. + + 4.2.1 License. In addition to the other terms contained herein, Licensee’s license to evaluate the Software is limited to use strictly for Licensee’s own internal evaluation and review purposes and not for production purposes. Licensee may (a) install the Software on one (1) Computer connected to Licensee’s Internal Network, and (b) permit Authorized Users to use the Software to deliver content within Licensee’s Internal Network. Licensee’s rights with respect to the Software are further limited as described in Section 4.2.2. + + 4.2.2 Limitations. Adobe reserves the right to terminate Licensee’s license to evaluate Software at any time in its sole discretion. Licensee agrees to return or destroy Licensee’s copy of the Software upon termination of this Agreement for any reason. To the extent that any provision in this Section 4.2 is in conflict with any other term or condition in this Agreement, this Section 4.2 shall supersede such other term(s) and condition(s) with respect to the evaluation and review of the Software, but only to the extent necessary to resolve the conflict. ADOBE IS LICENSING THE SOFTWARE FOR EVALUATION ON AN "AS IS" BASIS AT LICENSEE’S OWN RISK. SEE SECTIONS 7 AND 8 FOR WARRANTY DISCLAIMERS AND LIABILITY LIMITATIONS WHICH GOVERN NOT FOR RESALE SOFTWARE. + + 5. Intellectual Property Rights. The Software and any copies that Licensee is authorized by Adobe to make are the intellectual property of and are owned by Adobe Systems Incorporated and its suppliers. The structure, organization and code of the Software are the valuable trade secrets and confidential information of Adobe Systems Incorporated and its suppliers. The Software is protected by copyright, including without limitation by United States Copyright Law, international treaty provisions and applicable laws in the country in which it is being used. Except as expressly stated herein, this Agreement does not grant Licensee any intellectual property rights in the Software and all rights not expressly granted are reserved by Adobe. + + 6. Updates. If the Software is an upgrade or update to a previous version of the Software, Licensee must possess a valid license to such previous version in order to use such upgrade or update. All upgrades and updates are provided to Licensee subject to the terms of this Agreement on a license exchange basis. Licensee agrees that by using an upgrade or update Licensee voluntarily terminates Licensee’s right to use any previous version of the Software. As an exception, Licensee may continue to use previous versions of the Software on Licensee’s Computers after Licensee obtains the upgrade or update but only for a reasonable period of time to assist Licensee in the transition to the upgrade or update, and further provided that such simultaneous use shall not be deemed to increase the number of copies, licensed amounts or scope of use granted to Licensee hereunder. Upgrades and updates may be licensed to Licensee by Adobe with additional or different terms. + + 7. WARRANTY + + 7.1. Warranty. Adobe warrants to Licensee that the Software will perform substantially in accordance with the Documentation for the ninety (90) day period following shipment of the Software when used on the recommended operating system, platform and hardware configuration. This limited warranty does not apply to Flex Data Services Express Software, evaluation software (as identified in Section 4.1), Not For Resale software (as identified in Section 4.2), Flex Software Development Kit, patches, Sample Code, and font software converted into other formats. All warranty claims must be made within such ninety (90) day period. If the Software does not perform as warranted above, the entire liability of Adobe and Licensee’s exclusive remedy shall be limited to either, at Adobe’s option, the replacement of the Software or the refund of the license fee paid to Adobe for the Software. + + 7.2 DISCLAIMER. THE FOREGOING LIMITED WARRANTY IS THE ONLY WARRANTY MADE BY ADOBE AND STATES THE SOLE AND EXCLUSIVE REMEDIES FOR ADOBE’S, ITS AFFILIATES’ OR ITS SUPPLIERS’ BREACH OF WARRANTY. EXCEPT FOR THE FOREGOING LIMITED WARRANTY, AND FOR ANY WARRANTY, CONDITION, REPRESENTATION OR TERM TO THE EXTENT TO WHICH THE SAME CANNOT OR MAY NOT BE EXCLUDED OR LIMITED BY LAW APPLICABLE IN LICENSEE’S JURISDICTION, ADOBE, ITS AFFILIATES AND ITS SUPPLIERS PROVIDE THE SOFTWARE AS-IS AND WITH ALL FAULTS AND EXPRESSLY DISCLAIM ALL OTHER WARRANTIES, CONDITIONS, REPRESENTATIONS OR TERMS, EXPRESS OR IMPLIED, WHETHER BY STATUTE, COMMON LAW, CUSTOM, USAGE OR OTHERWISE AS TO ANY OTHER MATTERS, INCLUDING PERFORMANCE, SECURITY, NON-INFRINGEMENT OF THIRD PARTY RIGHTS, INTEGRATION, MERCHANTABILITY, QUIET ENJOYMENT, SATISFACTORY QUALITY OR FITNESS FOR ANY PARTICULAR PURPOSE. + + 8. LIMITATION OF LIABILITY. EXCEPT FOR THE EXCLUSIVE REMEDY SET FORTH ABOVE, IN NO EVENT WILL ADOBE, ITS AFFILIATES OR ITS SUPPLIERS BE LIABLE TO LICENSEE FOR ANY LOSS, DAMAGES, CLAIMS OR COSTS WHATSOEVER INCLUDING ANY CONSEQUENTIAL, INDIRECT OR INCIDENTAL DAMAGES, ANY LOST PROFITS OR LOST SAVINGS, ANY DAMAGES RESULTING FROM BUSINESS INTERRUPTION, PERSONAL INJURY OR FAILURE TO MEET ANY DUTY OF CARE, OR CLAIMS BY A THIRD PARTY EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN LICENSEE’S JURISDICTION. ADOBE’S AGGREGATE LIABILITY AND THAT OF ITS AFFILIATES AND SUPPLIERS UNDER OR IN CONNECTION WITH THIS AGREEMENT SHALL BE LIMITED TO THE AMOUNT PAID FOR THE SOFTWARE, IF ANY. THIS LIMITATION WILL APPLY EVEN IN THE EVENT OF A FUNDAMENTAL OR MATERIAL BREACH OR A BREACH OF THE FUNDAMENTAL OR MATERIAL TERMS OF THIS AGREEMENT. Nothing contained in this Agreement limits Adobe’s liability to Licensee in the event of death or personal injury resulting from Adobe’s negligence or for the tort of deceit (fraud). Adobe is acting on behalf of its affiliates and suppliers for the purpose of disclaiming, excluding and limiting obligations, warranties and liability, but in no other respects and for no other purpose. For further information, please see the jurisdiction specific information at the end of this agreement, if any, or contact Adobe’s Licensee Support Department. + + 9. Governing Law. This Agreement, each transaction entered into hereunder, and all matters arising from or related to this Agreement (including its validity and interpretation), will be governed and enforced by and construed in accordance with the substantive laws in force in: (a) the State of California, if a license to the Software is purchased when Licensee is in the United States, Canada, or Mexico; or (b) Japan, if a license to the Software is purchased when Licensee is in Japan, China, Korea, or other Southeast Asian country where all official languages are written in either an ideographic script (e.g., hanzi, kanji, or hanja), and/or other script based upon or similar in structure to an ideographic script, such as hangul or kana; or (c) England, if a license to the Software is purchased when Licensee is in any other jurisdiction not described above. The respective courts of Santa Clara County, California when California law applies, Tokyo District Court in Japan, when Japanese law applies, and the competent courts of London, England, when the law of England applies, shall each have non-exclusive jurisdiction over all disputes relating to this Agreement. This Agreement will not be governed by the conflict of law rules of any jurisdiction or the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. + + 10. General Provisions. If any part of this Agreement is found void and unenforceable, it will not affect the validity of the balance of this Agreement, which shall remain valid and enforceable according to its terms. Updates may be licensed to Licensee by Adobe with additional or different terms. The English version of this Agreement shall be the version used when interpreting or construing this Agreement. This is the entire agreement between Adobe and Licensee relating to the Software and it supersedes any prior representations, discussions, undertakings, communications or advertising relating to the Software. + + 11. Notice to U.S. Government End Users. + + 11.1 Commercial Items. The Software and Documentation are "Commercial Item(s)," as that term is defined at 48 C.F.R. Section 2.101, consisting of "Commercial Computer Software" and "Commercial Computer Software Documentation," as such terms are used in 48 C.F.R. Section 12.212 or 48 C.F.R. Section 227.7202, as applicable. Consistent with 48 C.F.R. Section 12.212 or 48 C.F.R. Sections 227.7202-1 through 227.7202-4, as applicable, the Commercial Computer Software and Commercial Computer Software Documentation are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Unpublished-rights reserved under the copyright laws of the United States. Adobe Systems Incorporated, 345 Park Avenue, San Jose, CA 95110-2704, USA. + + 11.2 U.S. Government Licensing of Adobe Technology. Licensee agrees that when licensing Adobe Software for acquisition by the U.S. Government, or any contractor therefore, Licensee will license consistent with the policies set forth in 48 C.F.R. Section 12.212 (for civilian agencies) and 48 C.F.R. Sections 227-7202-1 and 227-7202-4 (for the Department of Defense). For U.S. Government End Users, Adobe agrees to comply with all applicable equal opportunity laws including, if appropriate, the provisions of Executive Order 11246, as amended, Section 402 of the Vietnam Era Veterans Readjustment Assistance Act of 1974 (38 USC 4212), and Section 503 of the Rehabilitation Act of 1973, as amended, and the regulations at 41 CFR Parts 60-1 through 60-60, 60-250, and 60-741. The affirmative action clause and regulations contained in the preceding sentence shall be incorporated by reference in this Agreement. + + 12. Compliance with Licenses. Adobe may, at its expense, and no more than once every twelve (12) months, appoint its own personnel or an independent third party to verify the number of copies and installations as well as usage of the Adobe software in use by Licensee. Any such verification shall be conducted upon seven (7) business days notice, during regular business hours at Licensee’s offices and shall not unreasonably interfere with Licensee’s business activities. Both Adobe and its auditors shall execute a commercially reasonable non-disclosure agreement with Licensee before proceeding with the verification. If such verification shows that Licensee is using a greater number of copies of the Software than that legitimately licensed, or are deploying or using the Software in any way not permitted under this Agreement and which would require additional license fees, Licensee shall pay the applicable fees for such additional copies within thirty (30) days of invoice date, with such underpaid fees being the license fees as per Adobe’s then-current, country specific, license fee list. If underpaid fees are in excess of five percent (5%) of the value of the fees paid under this Agreement, then Licensee shall pay such underpaid fees and Adobe’s reasonable costs of conducting the verification. + + 13. Third-Party Beneficiary. Licensee acknowledges and agrees that Adobe’s licensors (and/or Adobe if Licensee obtained the Software from any party other than Adobe) are third party beneficiaries of this Agreement, with the right to enforce the obligations set forth herein with respect to the respective technology of such licensors and/or Adobe. + + 14. Specific Provisions and Exceptions. This section sets forth specific provisions related to certain components of the Software as well as limited exceptions to the above terms and conditions. To the extent that any provision in this section is in conflict with any other term or condition in this agreement, this section will supersede such other term or condition. + + 14.1 Limited Warranty for Users Residing in Germany or Austria. If Licensee obtained the Software in Germany or Austria, and Licensee usually resides in such country, then Section 7 does not apply; instead, Adobe warrants that the Software provides the functionalities set forth in the Documentation (the "agreed upon functionalities") for the limited warranty period following receipt of the Software when used on the recommended hardware configuration. As used in this Section, "limited warranty period" means one (1) year if Licensee is a business user and two (2) years if Licensee is not a business user. Non-substantial variation from the agreed upon functionalities will not and does not establish any warranty rights. THIS LIMITED WARRANTY DOES NOT APPLY TO SOFTWARE PROVIDED TO LICENSEE FREE OF CHARGE, FOR EXAMPLE, UPDATES, PRE-RELEASE, TRYOUT, STARTER, PRODUCT SAMPLER AND NOT FOR RESALE (NFR) COPIES OF SOFTWARE, OR TO FONT SOFTWARE CONVERTED INTO OTHER FORMATS, WEB SITES, ONLINE SERVICES, OR SOFTWARE THAT HAS BEEN ALTERED BY LICENSEE, TO THE EXTENT SUCH ALTERATION CAUSED A DEFECT. s To make a warranty claim, during the limited warranty period Licensee must return, at our expense, the Software and proof of purchase to the location where Licensee obtained it. If the functionalities of the Software vary substantially from the agreed upon functionalities, Adobe is entitled -- by way of re-performance and at its own discretion -- to repair or replace the Software. If this fails, Licensee is entitled to a reduction of the purchase price (reduction) or to cancel the purchase agreement (rescission). For further warranty information, please contact the Adobe Customer Support Department. + + 14.2 Limitation of Liability for Users Residing in Germany and Austria. + + 14.2.1 If Licensee obtained the Software in Germany or Austria, and Licensee usually resides in such country, then Section 8 does not apply. Instead, subject to the provisions in Section 14.2.2, Adobe and its affiliates' statutory liability for damages will be limited as follows: (i) Adobe and its affiliates will be liable only up to the amount of damages as typically foreseeable at the time of entering into the purchase agreement in respect of damages caused by a slightly negligent breach of a material contractual obligation and (ii) Adobe and its affiliates will not be liable for damages caused by a slightly negligent breach of a non-material contractual obligation. + + 14.2.2 The aforesaid limitation of liability will not apply to any mandatory statutory liability, in particular, to liability under the German Product Liability Act, liability for assuming a specific guarantee or liability for culpably caused personal injuries. + + 14.2.3 Licensee is required to take all reasonable measures to avoid and reduce damages, in particular to make back-up copies of the Software and Licensee’s computer data subject to the provisions of this agreement. + + 15. Educational Software Product. If the Software accompanying this agreement is Educational Software Product (Software manufactured and distributed for use by only Educational End Users), Licensee is not entitled to use the Software unless Licensee qualifies in its jurisdiction as an Educational End User. Please visit http://www.adobe.com/education/purchasing to learn if Licensee qualifies. To find an Adobe Authorized Academic Reseller in Licensee’s area, please visit http://www.adobe.com/store and look for the link for Buying Adobe Products Worldwide. + + If Licensee has any questions regarding this agreement or if Licensee wishes to request any information from Adobe please use the address and contact information included with this product to contact the Adobe office serving Licensee’s jurisdiction. + + Adobe is either a registered trademark or trademark of Adobe Systems Incorporated in the United States and/or other countries. json: flex2sdk.json - yml: flex2sdk.yml + yaml: flex2sdk.yml html: flex2sdk.html - text: flex2sdk.LICENSE + license: flex2sdk.LICENSE - license_key: flora-1.1 + category: Permissive spdx_license_key: LicenseRef-scancode-flora-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Flora License\n\nVersion 1.1, April, 2013\n\nhttp://floralicense.org/license\n\nTERMS\ + \ AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\"\ + \ shall mean the terms and conditions for use, reproduction, and distribution as defined\ + \ by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner\ + \ or entity authorized by the copyright owner that is granting the License.\n\n\"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.\n\n\"\ + You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted\ + \ by this License.\n\n\"Source\" form shall mean the preferred form for making modifications,\ + \ including but not limited to software source code, documentation source, and configuration\ + \ files.\n\n\"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.\n\n\"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).\n\n\"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.\n\n\"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.\"\n\n\"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.\n\n\"Tizen Certified\ + \ Platform\" shall mean a software platform that complies with the standards set forth in\ + \ the Tizen Compliance Specification and passes the Tizen Compliance Tests as defined from\ + \ time to time by the Tizen Technical Steering Group and certified by the Tizen Association\ + \ or its designated agent.\n\n2. 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.\n\n3. 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 solely as incorporated into a Tizen Certified Platform, 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 solely as incorporated into a Tizen Certified Platform 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.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or\ + \ Derivative Works thereof pursuant to the copyright license above, in any medium, with\ + \ or without modifications, and in Source or Object form, provided that You meet the following\ + \ conditions:\n\n You must give any other recipients of the Work or Derivative Works\ + \ a copy of this License; and\n You must cause any modified files to carry prominent\ + \ notices stating that You changed the files; and\n 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\n 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 and your own copyright statement or terms and conditions do not conflict\ + \ the conditions stated in this License including section 3.\n\n5. 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.\n\n6. 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.\n\n7. 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.\n\n8. 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.\n\n9. 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.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX:\ + \ How to apply the Flora License to your work\n\nTo apply the Flora 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.\n\n Copyright\ + \ [yyyy] [name of copyright owner]\n\n \n\n Licensed under the Flora License, Version\ + \ 1.1 (the \"License\");\n\n you may not use this file except in compliance with the License.\n\ + \n You may obtain a copy of the License at\n\n \n\n http://floralicense.org/license\n\ + \n \n\n Unless required by applicable law or agreed to in writing, software\n\n distributed\ + \ under the License is distributed on an \"AS IS\" BASIS,\n\n WITHOUT WARRANTIES OR CONDITIONS\ + \ OF ANY KIND, either express or implied.\n\n See the License for the specific language\ + \ governing permissions and\n\n limitations under the License.\n\nChange Log\n\n * Version\ + \ 1.1, April, 2013\n\n The term \"Compatibility Definition Document\" has been changed\ + \ to \"Tizen Compliance Specification\"\n The term \"Compatibility Test Suites\" has\ + \ been changed to \"Tizen Compliance Tests\"\n Clarified 4.4 condition on Licensee's\ + \ own copyright to derivative works or modifications" json: flora-1.1.json - yml: flora-1.1.yml + yaml: flora-1.1.yml html: flora-1.1.html - text: flora-1.1.LICENSE + license: flora-1.1.LICENSE - license_key: flowplayer-gpl-3.0 + category: Copyleft spdx_license_key: LicenseRef-scancode-flowplayer-gpl-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + 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 . + + The Flowplayer Free version is released under the GNU GENERAL PUBLIC LICENSE + Version 3 (GPL). Our GPL based license requires that you do not remove the + copyright notices or author attribution from the player's user interface. These + are present in the player canvas (bottom left corner) and in the context menu. + See license FAQ for more details. + + Commercial licenses are available. The commercial player version does not + require any Flowplayer notices or texts and also provides some additional + features. + + ADDITIONAL TERM per GPL Section 7 + + If you convey this program (or any modifications of it) and assume contractual + liability for the program to recipients of it, you agree to indemnify + Flowplayer, Ltd. for any liability that those contractual assumptions impose on + Flowplayer, Ltd. + + Except as expressly provided herein, no trademark rights are granted in any + trademarks of Flowplayer, Ltd. Licensees are granted a limited, non-exclusive + right to use the mark Flowplayer and the Flowplayer logos in connection with + unmodified copies of the Program and the copyright notices required by section + 5.d of the GPL license. For the purposes of this limited trademark license + grant, customizing the Flowplayer by skinning, scripting, or including plugins + provided by Flowplayer, Ltd. is not considered modifying the Program. + + Licensees that do modify the Program, taking advantage of the open-source + license, may not use the Flowplayer mark or Flowplayer logos and must change the + logo as follows: + + stating that the licensee modified the Flowplayer. A suitable notice might read + "Flowplayer Source code modified by ModOrg 2012"; for the canvas, the notice + should read "Based on Flowplayer source code". + + In addition, licensees that modify the Program must give the modified Program a + new name that is not confusingly similar to Flowplayer and may not distribute it + under the name Flowplayer. json: flowplayer-gpl-3.0.json - yml: flowplayer-gpl-3.0.yml + yaml: flowplayer-gpl-3.0.yml html: flowplayer-gpl-3.0.html - text: flowplayer-gpl-3.0.LICENSE + license: flowplayer-gpl-3.0.LICENSE - license_key: fltk-exception-lgpl-2.0 + category: Copyleft Limited spdx_license_key: FLTK-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + The FLTK library and included programs are provided under the terms of the GNU Library General Public License (LGPL) with the following exceptions: + + Modifications to the FLTK configure script, config header file, and makefiles by themselves to support a specific platform do not constitute a modified or derivative work. + + The authors do request that such modifications be contributed to the FLTK project - send all contributions to "fltk-bugs@fltk.org". + + Widgets that are subclassed from FLTK widgets do not constitute a derivative work. + + Static linking of applications and widgets to the FLTK library does not constitute a derivative work and does not require the author to provide source code for the application or widget, use the shared FLTK libraries, or link their applications or widgets against a user-supplied version of FLTK. + + If you link the application or widget to a modified version of FLTK, then the changes to FLTK must be provided under the terms of the LGPL in sections 1, 2, and 4. + + You do not have to provide a copy of the FLTK license with programs that are linked to the FLTK library, nor do you have to identify the FLTK license in your program or documentation as required by section 6 of the LGPL. + + However, programs must still identify their use of FLTK. The following example statement can be included in user documentation to satisfy this requirement: + + [program/widget] is based in part on the work of the FLTK project (http://www.fltk.org). json: fltk-exception-lgpl-2.0.json - yml: fltk-exception-lgpl-2.0.yml + yaml: fltk-exception-lgpl-2.0.yml html: fltk-exception-lgpl-2.0.html - text: fltk-exception-lgpl-2.0.LICENSE + license: fltk-exception-lgpl-2.0.LICENSE - license_key: font-alias + category: Permissive spdx_license_key: LicenseRef-scancode-font-alias other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This software may be used, modified, copied, distributed, and sold, + in both source and binary form provided that the above copyright + and these terms are retained. Under no circumstances is the author + responsible for the proper functioning of this software, nor does + the author assume any responsibility for damages incurred with its use. json: font-alias.json - yml: font-alias.yml + yaml: font-alias.yml html: font-alias.html - text: font-alias.LICENSE + license: font-alias.LICENSE - license_key: font-exception-gpl + category: Copyleft Limited spdx_license_key: Font-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, if you create a document which uses + this font, and embed this font or unaltered portions of this + font into the document, this font does not by itself cause + the resulting document to be covered by the GNU General Public + License. This exception does not however invalidate any other + reasons why the document might be covered by the GNU General + Public License. If you modify this font, you may extend this + exception to your version of the font, but you are not + obligated to do so. If you do not wish to do so, delete this + exception statement from your version. json: font-exception-gpl.json - yml: font-exception-gpl.yml + yaml: font-exception-gpl.yml html: font-exception-gpl.html - text: font-exception-gpl.LICENSE + license: font-exception-gpl.LICENSE - license_key: foobar2000 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-foobar2000 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Redistribution and use in binary form, without modification, are permitted + provided that the following conditions are met: + + Only unmodified installers can be redistributed; redistribution of foobar2000 + binaries in any other form is not permitted. + + Neither the name of the author nor the names of its contributors may be used to + endorse or promote products derived from this software without specific prior + written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. json: foobar2000.json - yml: foobar2000.yml + yaml: foobar2000.yml html: foobar2000.html - text: foobar2000.LICENSE + license: foobar2000.LICENSE - license_key: fpl + category: Permissive spdx_license_key: LicenseRef-scancode-fpl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Freeware Public License (FPL)\n\nThis software is licensed as \"freeware.\" Permission\ + \ to distribute\nthis software in source and binary forms, including incorporation \ninto\ + \ other products, is hereby granted without a fee. THIS SOFTWARE \nIS PROVIDED 'AS IS'\ + \ AND WITHOUT ANY EXPRESSED OR IMPLIED WARRANTIES, \nINCLUDING, BUT NOT LIMITED TO, THE\ + \ IMPLIED WARRANTIES OF MERCHANTABILITY \nAND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHOR\ + \ SHALL NOT BE HELD \nLIABLE FOR ANY DAMAGES RESULTING FROM THE USE OF THIS SOFTWARE, EITHER\ + \ \nDIRECTLY OR INDIRECTLY, INCLUDING, BUT NOT LIMITED TO, LOSS OF DATA \nOR DATA BEING\ + \ RENDERED INACCURATE." json: fpl.json - yml: fpl.yml + yaml: fpl.yml html: fpl.html - text: fpl.LICENSE + license: fpl.LICENSE - license_key: fplot + category: Permissive spdx_license_key: LicenseRef-scancode-fplot other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This software is Freeware. \n \ + \ \nPermission to use, copy,\ + \ and distribute this software and its \ndocumentation for any purpose with or\ + \ without fee is hereby granted, \nprovided that the above copyright notice appear in\ + \ all copies and \nthat both that copyright notice and this permission notice appear\ + \ \nin supporting documentation. \n \ + \ \nPermission to modify\ + \ the software is granted, but not the right to \ndistribute the modified code. Modifications\ + \ are to be distributed \nas patches to released version. \ + \ \n \ + \ \nThis software is provided \"as is\" without express or implied warranty." json: fplot.json - yml: fplot.yml + yaml: fplot.yml html: fplot.html - text: fplot.LICENSE + license: fplot.LICENSE - license_key: frameworx-1.0 + category: Copyleft Limited spdx_license_key: Frameworx-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + THE FRAMEWORX OPEN LICENSE 1.0 + This License Agreement, The Frameworx Open License 1.0, has been entered into between The Frameworx Company and you, the licensee hereunder, effective as of Your acceptance of the Frameworx Code Base or an Downstream Distribution (each as defined below). + AGREEMENT BACKGROUND + The Frameworx Company is committed to the belief that open source software results in better quality, greater technical and product innovation in the market place and a more empowered and productive developer and end-user community. Our objective is to ensure that the Frameworx Code Base, and the source code for improvements and innovations to it, remain free and open to the community. To further these beliefs and objectives, we are distributing the Frameworx Code Base, without royalties and in source code form, to the community pursuant to this License Agreement. + AGREEMENT TERMS + The Frameworx Company and You have agreed as follows: + + 1. Definitions. The following terms have the following respective meanings: + + (a) Frameworx Code Base means the software developed by The Frameworx Company and made available under this License Agreement + + (b) Downstream Distribution means any direct or indirect release, distribution or remote availability of software (i) that directly or indirectly contains, or depends for its intended functioning on, the Frameworx Code Base or any portion or element thereof and (ii) in which rights to use and distribute such Frameworx Code Base software depend, directly or indirectly, on the License provided in Section 2 below. + + (c) "Source Code" to any software means the preferred form for making modifications to that software, including any associated documentation, interface definition files and compilation or installation scripts, or any version thereof that has been compressed or archived, and can be reconstituted, using an appropriate and generally available archival or compression technology. + + (d) Value-Added Services means any commercial or fee-based software-related service, including without limitation: system or application development or consulting; technical or end-user support or training; distribution maintenance, configuration or versioning; or outsourced, hosted or network-based application services.2. License Grant. Subject to the terms and conditions hereof, The Frameworx Company hereby grants You a non-exclusive license (the License), subject to third party intellectual property claims, and for no fee other than a nominal charge reflecting the costs of physical distribution, to: + + (a) use the Frameworx Code Base, in either Source Code or machine-readable form; + + (b) make modifications, additions and deletions to the content or structure of the Frameworx Code Base; or + + (c) create larger works or derivative works including the Frameworx Code Base or any portion or element thereof; and + + (d) release, distribute or make available, either generally or to any specific third-party, any of the foregoing in Source Code or binary form. + + 3. License Conditions. The grant of the License under Section 1 hereof, and your exercise of all rights in connection with this License Agreement, will remain subject to the following terms and conditions, as well as to the other provisions hereof: + + (a) Complete Source Code for any Downstream Distribution directly or indirectly made by You that contains, or depends for its intended functionality on, the Frameworx Code Base, or any portion or element thereof, shall be made freely available to all users thereof on terms and conditions no more restrictive, and no less favorable for any user (including, without limitation, with regard to Source Code availability and royalty-free use) than those terms and conditions provided in this License Agreement. + + (b) Any Value-Added Services that you offer or provide, directly or indirectly, in relation to any Downstream Distribution shall be offered and provided on commercial terms that are reasonably commensurate to the fair market value of such Value-Added Services. In addition, the terms and conditions on which any such Value Added Services are so offered or provided shall be consistent with, and shall fully support, the intent and purpose of this License Agreement. + + (c) All Downstream Distributions shall: + + (i) include all portions and elements of the Frameworx Code Base required to build the Source Code of such Downstream Distribution into a fully functional machine-executable system, or additional build scripts or comparable software necessary and sufficient for such purposes; + + (ii) include, in each file containing any portion or element of the Frameworx Code Base, the following identifying legend: This file contains software that has been made available under The Frameworx Open License 1.0. Use and distribution hereof are subject to the restrictions set forth therein. + + (iii) include all other copyright notices, authorship credits, warranty disclaimers (including that provided in Section 6 below), legends, documentation, annotations and comments contained in the Frameworx Code Base as provided to You hereunder; + + (iv) contain an unaltered copy of the html file named frameworx_community_invitation.html included within the Frameworx Code Base that acknowledges new users and provides them with information on the Frameworx Code Base community; + + (v) contain an unaltered copy of the text file named the_frameworx_license.txt included within the Frameworx Code Base that includes a text copy of the form of this License Agreement; and + + (vi) prominently display to any viewer or user of the Source Code of such Open Downstream Distribution, in the place and manner normally used for such displays, the following legend: + + Source code licensed under from The Frameworx Company is contained herein, and such source code has been obtained either under The Frameworx Open License, or another license granted by The Frameworx Company. Use and distribution hereof is subject to the restrictions provided in the relevant such license and to the copyrights of the licensor thereunder. A copy of The Frameworx Open License is provided in a file named the_frameworx_license.txt and included herein, and may also be available for inspection at http://www.frameworx.com. + + 4. Restrictions on Open Downstream Distributions. Each Downstream Distribution made by You, and by any party directly or indirectly obtaining rights to the Frameworx Code Base through You, shall be made subject to a license grant or agreement to the extent necessary so that each distributee under that Downstream Distribution will be subject to the same restrictions on re-distribution and use as are binding on You hereunder. You may satisfy this licensing requirement either by: + + (a) requiring as a condition to any Downstream Distribution made by you, or by any direct or indirect distributee of Your Downstream Distribution (or any portion or element thereof), that each distributee under the relevant Downstream Distribution obtain a direct license (on the same terms and conditions as those in this License Agreement) from The Frameworx Company; or + + (b) sub-licensing all (and not less than all) of Your rights and obligations hereunder to that distributee, including (without limitation) Your obligation to require distributees to be bound by license restrictions as contemplated by this Section 4 above. + + The Frameworx Company hereby grants to you all rights to sub-license your rights hereunder as necessary to fully effect the intent and purpose of this Section 4 above, provided, however, that your rights and obligations hereunder shall be unaffected by any such sublicensing. In addition, The Frameworx Company expressly retains all rights to take all appropriate action (including legal action) against any such direct or indirect sub-licensee to ensure its full compliance with the intent and purposes of this License Agreement. + + 5. Intellectual Property. Except as expressly provided herein, this License Agreement preserves and respects Your and The Frameworx Companys respective intellectual property rights, including, in the case of The Frameworx Company, its copyrights and patent rights relating to the Frameworx Code Base. + + 6. Warranty Disclaimer. THE SOFTWARE LICENSED HEREUNDER IS PROVIDED ``AS IS.'' ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT, ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE LICENSOR OF THIS 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. + + 7. License Violation. The License, and all of your rights thereunder, shall be deemed automatically terminated and void as of any Downstream Distribution directly or indirectly made or facilitated by You that violates the provisions of this License Agreement, provided, however, that this License Agreement shall survive any such termination in order to remedy the effects of such violation. This License Agreement shall be binding on the legal successors and assigns of the parties hereto. + + Your agreement to the foregoing as of the date hereof has been evidenced by your acceptance of the relevant software distribution hereunder. + + (C) THE FRAMEWORX COMPANY 2003 json: frameworx-1.0.json - yml: frameworx-1.0.yml + yaml: frameworx-1.0.yml html: frameworx-1.0.html - text: frameworx-1.0.LICENSE + license: frameworx-1.0.LICENSE - license_key: fraunhofer-fdk-aac-codec + category: Copyleft Limited spdx_license_key: FDK-AAC other_spdx_license_keys: - LicenseRef-scancode-fraunhofer-fdk-aac-codec is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Software License for The Fraunhofer FDK AAC Codec Library for Android + + © Copyright 1995 - 2012 Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V. + All rights reserved. + + 1. INTRODUCTION + The Fraunhofer FDK AAC Codec Library for Android ("FDK AAC Codec") is software that implements + the MPEG Advanced Audio Coding ("AAC") encoding and decoding scheme for digital audio. + This FDK AAC Codec software is intended to be used on a wide variety of Android devices. + + AAC's HE-AAC and HE-AAC v2 versions are regarded as today's most efficient general perceptual + audio codecs. AAC-ELD is considered the best-performing full-bandwidth communications codec by + independent studies and is widely deployed. AAC has been standardized by ISO and IEC as part + of the MPEG specifications. + + Patent licenses for necessary patent claims for the FDK AAC Codec (including those of Fraunhofer) + may be obtained through Via Licensing (www.vialicensing.com) or through the respective patent owners + individually for the purpose of encoding or decoding bit streams in products that are compliant with + the ISO/IEC MPEG audio standards. Please note that most manufacturers of Android devices already license + these patent claims through Via Licensing or directly from the patent owners, and therefore FDK AAC Codec + software may already be covered under those patent licenses when it is used for those licensed purposes only. + + Commercially-licensed AAC software libraries, including floating-point versions with enhanced sound quality, + are also available from Fraunhofer. Users are encouraged to check the Fraunhofer website for additional + applications information and documentation. + + 2. COPYRIGHT LICENSE + + Redistribution and use in source and binary forms, with or without modification, are permitted without + payment of copyright license fees provided that you satisfy the following conditions: + + You must retain the complete text of this software license in redistributions of the FDK AAC Codec or + your modifications thereto in source code form. + + You must retain the complete text of this software license in the documentation and/or other materials + provided with redistributions of the FDK AAC Codec or your modifications thereto in binary form. + You must make available free of charge copies of the complete source code of the FDK AAC Codec and your + modifications thereto to recipients of copies in binary form. + + The name of Fraunhofer may not be used to endorse or promote products derived from this library without + prior written permission. + + You may not charge copyright license fees for anyone to use, copy or distribute the FDK AAC Codec + software or your modifications thereto. + + Your modified versions of the FDK AAC Codec must carry prominent notices stating that you changed the software + and the date of any change. For modified versions of the FDK AAC Codec, the term + "Fraunhofer FDK AAC Codec Library for Android" must be replaced by the term + "Third-Party Modified Version of the Fraunhofer FDK AAC Codec Library for Android." + + 3. NO PATENT LICENSE + + NO EXPRESS OR IMPLIED LICENSES TO ANY PATENT CLAIMS, including without limitation the patents of Fraunhofer, + ARE GRANTED BY THIS SOFTWARE LICENSE. Fraunhofer provides no warranty of patent non-infringement with + respect to this software. + + You may use this FDK AAC Codec software or modifications thereto only for purposes that are authorized + by appropriate patent licenses. + + 4. DISCLAIMER + + This FDK AAC Codec software is provided by Fraunhofer on behalf of the copyright holders and contributors + "AS IS" and WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, including but not limited to the implied warranties + of merchantability and fitness for a particular purpose. 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), arising in any way out of the use of this software, even if + advised of the possibility of such damage. + + 5. CONTACT INFORMATION + + Fraunhofer Institute for Integrated Circuits IIS + Attention: Audio and Multimedia Departments - FDK AAC LL + Am Wolfsmantel 33 + 91058 Erlangen, Germany + + www.iis.fraunhofer.de/amm + amm-info@iis.fraunhofer.de json: fraunhofer-fdk-aac-codec.json - yml: fraunhofer-fdk-aac-codec.yml + yaml: fraunhofer-fdk-aac-codec.yml html: fraunhofer-fdk-aac-codec.html - text: fraunhofer-fdk-aac-codec.LICENSE + license: fraunhofer-fdk-aac-codec.LICENSE - license_key: fraunhofer-iso-14496-10 + category: Permissive spdx_license_key: LicenseRef-scancode-fraunhofer-iso-14496-10 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + ******************************************************************************** + + NOTE - One of the two copyright statements below may be chosen + that applies for the software. + + ******************************************************************************** + + This software module was originally developed by + + Heiko Schwarz (Fraunhofer HHI), + Tobias Hinz (Fraunhofer HHI), + Karsten Suehring (Fraunhofer HHI) + + in the course of development of the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video + Coding) for reference purposes and its performance may not have been optimized. + This software module is an implementation of one or more tools as specified by + the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding). + + Those intending to use this software module in products are advised that its + use may infringe existing patents. ISO/IEC have no liability for use of this + software module or modifications thereof. + + Assurance that the originally developed software module can be used + (1) in the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding) once the + ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding) has been adopted; and + (2) to develop the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding): + + To the extent that Fraunhofer HHI owns patent rights that would be required to + make, use, or sell the originally developed software module or portions thereof + included in the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding) in a + conforming product, Fraunhofer HHI will assure the ISO/IEC that it is willing + to negotiate licenses under reasonable and non-discriminatory terms and + conditions with applicants throughout the world. + + Fraunhofer HHI retains full right to modify and use the code for its own + purpose, assign or donate the code to a third party and to inhibit third + parties from using the code for products that do not conform to MPEG-related + ITU Recommendations and/or ISO/IEC International Standards. + + This copyright notice must be included in all copies or derivative works. + Copyright (c) ISO/IEC 2005. + + ******************************************************************************** + + COPYRIGHT AND WARRANTY INFORMATION + + Copyright 2005, International Telecommunications Union, Geneva + + The Fraunhofer HHI hereby donate this source code to the ITU, with the following + understanding: + 1. Fraunhofer HHI retain the right to do whatever they wish with the + contributed source code, without limit. + 2. Fraunhofer HHI retain full patent rights (if any exist) in the technical + content of techniques and algorithms herein. + 3. The ITU shall make this code available to anyone, free of license or + royalty fees. + + DISCLAIMER OF WARRANTY + + These software programs are available to the user without any license fee or + royalty on an "as is" basis. The ITU disclaims any and all warranties, whether + express, implied, or statutory, including any implied warranties of + merchantability or of fitness for a particular purpose. In no event shall the + contributor or the ITU be liable for any incidental, punitive, or consequential + damages of any kind whatsoever arising from the use of these programs. + + This disclaimer of warranty extends to the user of these programs and user's + customers, employees, agents, transferees, successors, and assigns. + + The ITU does not represent or warrant that the programs furnished hereunder are + free of infringement of any third-party patents. Commercial implementations of + ITU-T Recommendations, including shareware, may be subject to royalty fees to + patent holders. Information regarding the ITU-T patent policy is available from + the ITU Web site at http://www.itu.int. + + THIS IS NOT A GRANT OF PATENT RIGHTS - SEE THE ITU-T PATENT POLICY. + + ******************************************************************************** json: fraunhofer-iso-14496-10.json - yml: fraunhofer-iso-14496-10.yml + yaml: fraunhofer-iso-14496-10.yml html: fraunhofer-iso-14496-10.html - text: fraunhofer-iso-14496-10.LICENSE + license: fraunhofer-iso-14496-10.LICENSE - license_key: free-art-1.3 + category: Permissive spdx_license_key: LicenseRef-scancode-free-art-1.3 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Free Art License 1.3 (FAL 1.3) + + Preamble + + The Free Art License grants the right to freely copy, distribute, and transform creative works without infringing the author's rights. + + The Free Art License recognizes and protects these rights. Their implementation has been reformulated in order to allow everyone to use creations of the human mind in a creative manner, regardless of their types and ways of expression. + + While the public's access to creations of the human mind usually is restricted by the implementation of copyright law, it is favoured by the Free Art License. This license intends to allow the use of a work's resources; to establish new conditions for creating in order to increase creation opportunities. The Free Art License grants the right to use a work, and acknowledges the right holder's and the user's rights and responsibility. + + The invention and development of digital technologies, Internet and Free Software have changed creation methods: creations of the human mind can obviously be distributed, exchanged, and transformed. They allow to produce common works to which everyone can contribute to the benefit of all. + + The main rationale for this Free Art License is to promote and protect these creations of the human mind according to the principles of copyleft: freedom to use, copy, distribute, transform, and prohibition of exclusive appropriation. + + Definitions + + work either means the initial work, the subsequent works or the common work as defined hereafter: + + "common work" means a work composed of the initial work and all subsequent contributions to it (originals and copies). The initial author is the one who, by choosing this license, defines the conditions under which contributions are made. + + "Initial work" means the work created by the initiator of the common work (as defined above), the copies of which can be modified by whoever wants to + + "Subsequent works" means the contributions made by authors who participate in the evolution of the common work by exercising the rights to reproduce, distribute, and modify that are granted by the license. + + "Originals" (sources or resources of the work) means all copies of either the initial work or any subsequent work mentioning a date and used by their author(s) as references for any subsequent updates, interpretations, copies or reproductions. + + "Copy" means any reproduction of an original as defined by this license. + + 1. OBJECT + The aim of this license is to define the conditions under which one can use this work freely. + + 2. SCOPE + This work is subject to copyright law. Through this license its author specifies the extent to which you can copy, distribute, and modify it. + + 2.1 FREEDOM TO COPY (OR TO MAKE REPRODUCTIONS) + You have the right to copy this work for yourself, your friends or any other person, whatever the technique used. + + 2.2 FREEDOM TO DISTRIBUTE, TO PERFORM IN PUBLIC + You have the right to distribute copies of this work; whether modified or not, whatever the medium and the place, with or without any charge, provided that you: + attach this license without any modification to the copies of this work or indicate precisely where the license can be found, + specify to the recipient the names of the author(s) of the originals, including yours if you have modified the work, + specify to the recipient where to access the originals (either initial or subsequent). + The authors of the originals may, if they wish to, give you the right to distribute the originals under the same conditions as the copies. + + 2.3 FREEDOM TO MODIFY + You have the right to modify copies of the originals (whether initial or subsequent) provided you comply with the following conditions: + all conditions in article 2.2 above, if you distribute modified copies; + indicate that the work has been modified and, if it is possible, what kind of modifications have been made; + distribute the subsequent work under the same license or any compatible license. + The author(s) of the original work may give you the right to modify it under the same conditions as the copies. + + 3. RELATED RIGHTS + Activities giving rise to author's rights and related rights shall not challenge the rights granted by this license. + For example, this is the reason why performances must be subject to the same license or a compatible license. Similarly, integrating the work in a database, a compilation or an anthology shall not prevent anyone from using the work under the same conditions as those defined in this license. + + 4. INCORPORATION OF THE WORK + Incorporating this work into a larger work that is not subject to the Free Art License shall not challenge the rights granted by this license. + If the work can no longer be accessed apart from the larger work in which it is incorporated, then incorporation shall only be allowed under the condition that the larger work is subject either to the Free Art License or a compatible license. + + 5. COMPATIBILITY + A license is compatible with the Free Art License provided: + it gives the right to copy, distribute, and modify copies of the work including for commercial purposes and without any other restrictions than those required by the respect of the other compatibility criteria; + it ensures proper attribution of the work to its authors and access to previous versions of the work when possible; + it recognizes the Free Art License as compatible (reciprocity); + it requires that changes made to the work be subject to the same license or to a license which also meets these compatibility criteria. + + 6. YOUR INTELLECTUAL RIGHTS + This license does not aim at denying your author's rights in your contribution or any related right. By choosing to contribute to the development of this common work, you only agree to grant others the same rights with regard to your contribution as those you were granted by this license. Conferring these rights does not mean you have to give up your intellectual rights. + + 7. YOUR RESPONSIBILITIES + The freedom to use the work as defined by the Free Art License (right to copy, distribute, modify) implies that everyone is responsible for their own actions. + + 8. DURATION OF THE LICENSE + This license takes effect as of your acceptance of its terms. The act of copying, distributing, or modifying the work constitutes a tacit agreement. This license will remain in effect for as long as the copyright which is attached to the work. If you do not respect the terms of this license, you automatically lose the rights that it confers. + If the legal status or legislation to which you are subject makes it impossible for you to respect the terms of this license, you may not make use of the rights which it confers. + + 9. VARIOUS VERSIONS OF THE LICENSE + This license may undergo periodic modifications to incorporate improvements by its authors (instigators of the "Copyleft Attitude" movement) by way of new, numbered versions. + You will always have the choice of accepting the terms contained in the version under which the copy of the work was distributed to you, or alternatively, to use the provisions of one of the subsequent versions. + + 10. SUB-LICENSING + Sub-licenses are not authorized by this license. Any person wishing to make use of the rights that it confers will be directly bound to the authors of the common work. + + 11. LEGAL FRAMEWORK + This license is written with respect to both French law and the Berne Convention for the Protection of Literary and Artistic Works. + + USER GUIDE + + - How to use the Free Art License? + To benefit from the Free Art License, you only need to mention the following elements on your work: + [Name of the author, title, date of the work. When applicable, names of authors of the common work and, if possible, where to find the originals]. + Copyleft: This is a free work, you can copy, distribute, and modify it under the terms of the Free Art License http://artlibre.org/licence/lal/en/ + + - Why to use the Free Art License? + 1.To give the greatest number of people access to your work. + 2.To allow it to be distributed freely. + 3.To allow it to evolve by allowing its copy, distribution, and transformation by others. + 4.So that you benefit from the resources of a work when it is under the Free Art License: to be able to copy, distribute or transform it freely. + 5.But also, because the Free Art License offers a legal framework to disallow any misappropriation. It is forbidden to take hold of your work and bypass the creative process for one's exclusive possession. + + - When to use the Free Art License? + Any time you want to benefit and make others benefit from the right to copy, distribute and transform creative works without any exclusive appropriation, you should use the Free Art License. You can for example use it for scientific, artistic or educational projects. + + - What kinds of works can be subject to the Free Art License? + The Free Art License can be applied to digital as well as physical works. + You can choose to apply the Free Art License on any text, picture, sound, gesture, or whatever sort of stuff on which you have sufficient author's rights. + + - Historical background of this license: + It is the result of observing, using and creating digital technologies, free software, the Internet and art. It arose from the Copyleft Attitude meetings which took place in Paris in 2000. For the first time, these meetings brought together members of the Free Software community, artists, and members of the art world. The goal was to adapt the principles of Copyleft and free software to all sorts of creations. http://www.artlibre.org + + Copyleft Attitude, 2007. + You can make reproductions and distribute this license verbatim (without any changes). json: free-art-1.3.json - yml: free-art-1.3.yml + yaml: free-art-1.3.yml html: free-art-1.3.html - text: free-art-1.3.LICENSE + license: free-art-1.3.LICENSE - license_key: free-fork + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-free-fork other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + University of Washington's Free-Fork License + + University of Washington IMAP toolkit + Version 2002 of IMAP toolkit + Copyright 1988-2002 University of Washington + + This University of Washington Distribution (code and documentation) is + made available to the open source community as a public service by the + University of Washington. Contact the University of Washington at + imap-license@cac.washington.edu for information on other licensing + arrangements (e.g. for use in proprietary applications). + + Under this license, this Distribution may be modified and the original + version and modified versions may be copied, distributed, publicly + displayed and performed provided that the following conditions are + met: + + (1) modified versions are distributed with source code and + documentation and with permission for others to use any code and + documentation (whether in original or modified versions) as granted + under this license; + + (2) if modified, the source code, documentation, and user run-time + elements should be clearly labeled by placing an identifier of origin + (such as a name, initial, or other tag) after the version number; + + (3) users, modifiers, distributors, and others coming into possession + or using the Distribution in original or modified form accept the + entire risk as to the possession, use, and performance of the + Distribution; + + (4) this copyright management information (software identifier and + version number, copyright notice and license) shall be retained in all + versions of the Distribution; + + (5) the University of Washington may make modifications to the + Distribution that are substantially similar to modified versions of + the Distribution, and may make, use, sell, copy, distribute, publicly + display, and perform such modifications, including making such + modifications available under this or other licenses, without + obligation or restriction; + + (6) modifications incorporating code, libraries, and/or documentation + subject to any other open source license may be made, and the + resulting work may be distributed under the terms of such open source + license if required by that open source license, but doing so will not + affect this Distribution, other modifications made under this license + or modifications made under other University of Washington licensing + arrangements; + + (7) no permission is granted to distribute, publicly display, or + publicly perform modifications to the Distribution made using + proprietary materials that cannot be released in source format under + conditions of this license; + + (8) the name of the University of Washington may not be used in + advertising or publicity pertaining to Distribution of the software + without specific, prior written permission. + + This software is made available "as is", and + + THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR + IMPLIED, WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION + ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE, AND IN NO EVENT SHALL THE UNIVERSITY OF WASHINGTON 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, TORT (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, + ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS + SOFTWARE. json: free-fork.json - yml: free-fork.yml + yaml: free-fork.yml html: free-fork.html - text: free-fork.LICENSE + license: free-fork.LICENSE - license_key: free-unknown + category: Unstated License spdx_license_key: LicenseRef-scancode-free-unknown other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Unstated License + text: json: free-unknown.json - yml: free-unknown.yml + yaml: free-unknown.yml html: free-unknown.html - text: free-unknown.LICENSE + license: free-unknown.LICENSE - license_key: freebsd-boot + category: Permissive spdx_license_key: LicenseRef-scancode-freebsd-boot other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms are freely + permitted provided that the above copyright notice and this + paragraph and the following disclaimer are duplicated in all + such forms. + + This software is provided "AS IS" and without any express or + implied warranties, including, without limitation, the implied + warranties of merchantability and fitness for a particular + purpose. json: freebsd-boot.json - yml: freebsd-boot.yml + yaml: freebsd-boot.yml html: freebsd-boot.html - text: freebsd-boot.LICENSE + license: freebsd-boot.LICENSE - license_key: freebsd-doc + category: Permissive spdx_license_key: FreeBSD-DOC other_spdx_license_keys: - LicenseRef-scancode-freebsd-doc is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and 'compiled' 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 as the first lines of this + file unmodified. + + Redistributions in compiled 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 DOCUMENTATION IS PROVIDED BY THE PROJECT "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 PROJECT 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 DOCUMENTATION, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE json: freebsd-doc.json - yml: freebsd-doc.yml + yaml: freebsd-doc.yml html: freebsd-doc.html - text: freebsd-doc.LICENSE + license: freebsd-doc.LICENSE - license_key: freebsd-first + category: Permissive spdx_license_key: LicenseRef-scancode-freebsd-first other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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(s), this list of conditions and the following disclaimer as + the first lines of this file unmodified other than the possible + addition of one or more copyright notices. + 2. Redistributions in binary form must reproduce the above copyright + notice(s), 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 HOLDER(S) ``AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. json: freebsd-first.json - yml: freebsd-first.yml + yaml: freebsd-first.yml html: freebsd-first.html - text: freebsd-first.LICENSE + license: freebsd-first.LICENSE - license_key: freeimage-1.0 + category: Copyleft Limited spdx_license_key: FreeImage other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + FreeImage Public License - Version 1.0 + --------------------------------------------- + + 1. Definitions. + + 1.1. "Contributor" means each entity that creates or contributes to the creation of Modifications. + + 1.2. "Contributor Version" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. + + 1.3. "Covered Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. + + 1.4. "Electronic Distribution Mechanism" means a mechanism generally accepted in the software development community for the electronic transfer of data. + + 1.5. "Executable" means Covered Code in any form other than Source Code. + + 1.6. "Initial Developer" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. + + 1.7. "Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. + + 1.8. "License" means this document. + + 1.9. "Modifications" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a + Modification is: + + A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. + + B. Any new file that contains any part of the Original Code or previous Modifications. + + 1.10. "Original Code" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. + + 1.11. "Source Code" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control + compilation and installation of an Executable, or a list of source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. + + 1.12. "You" means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. + + 2. Source Code License. + + 2.1. The Initial Developer Grant. + The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: + + (a) to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, or as part of a Larger Work; and + + (b) under patents now or hereafter owned or controlled by Initial Developer, to make, have made, use and sell ("Utilize") the Original Code (or portions thereof), but solely to the extent that + any such patent is reasonably necessary to enable You to Utilize the Original Code (or portions thereof) and not to any greater extent that may be necessary to Utilize further Modifications or + combinations. + + 2.2. Contributor Grant. + Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: + + (a) to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code or as part of a Larger Work; and + + (b) under patents now or hereafter owned or controlled by Contributor, to Utilize the Contributor Version (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Contributor Version (or portions thereof), and not to any greater extent that + may be necessary to Utilize further Modifications or combinations. + + 3. Distribution Obligations. + + 3.1. Application of License. + The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or + restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. + + 3.2. Availability of Source Code. + Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + + 3.3. Description of Modifications. + You must cause all Covered Code to which you contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. + + 3.4. Intellectual Property Matters + + (a) Third Party Claims. + If You have knowledge that a party claims an intellectual property right in particular functionality or code (or its utilization under this License), you must include a text file with the source code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after You make Your Modification available as described in Section 3.2, You shall promptly modify the LEGAL file in all copies You make + available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. + + (b) Contributor APIs. + If Your Modification is an application programming interface and You own or control patents which are reasonably necessary to implement that API, you must also include this information in the LEGAL file. + + 3.5. Required Notices. + You must duplicate the notice in Exhibit A in each file of the Source Code, and this License in any documentation for the Source Code, where You describe recipients' rights relating to Covered Code. If You created one or more Modification(s), You may add your name as a Contributor to the notice described in Exhibit A. If it is not possible to put such notice in a particular Source Code file due to its + structure, then you must include such notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or + liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of + warranty, support, indemnity or liability terms You offer. + + 3.6. Distribution of Executable Versions. + You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You + describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code under a license of Your choice, which may contain terms different from this License, + provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. + + 3.7. Larger Works. + You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. + + 4. Inability to Comply Due to Statute or Regulation. + + If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. + + 5. Application of this License. + + This License applies to code to which the Initial Developer has attached the notice in Exhibit A, and to related Covered Code. + + 6. Versions of the License. + + 6.1. New Versions. + Floris van den Berg may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. + + 6.2. Effect of New Versions. + Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Floris van den Berg + No one other than Floris van den Berg has the right to modify the terms applicable to Covered Code created under this License. + + 6.3. Derivative Works. + If you create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), you must (a) rename Your license so that the phrases "FreeImage", `FreeImage Public License", "FIPL", or any confusingly similar phrase do not appear anywhere in your license and (b) otherwise make it clear that your version of the license contains terms which differ from the FreeImage Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) + + 7. DISCLAIMER OF WARRANTY. + + COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 8. TERMINATION. + + This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. + + 9. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE + EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + + 10. U.S. GOVERNMENT END USERS. + + The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. + + 11. MISCELLANEOUS. + + This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by Dutch law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in, the The Netherlands: (a) unless otherwise agreed in writing, all disputes relating to this License (excepting any dispute relating to intellectual property rights) shall be subject to final and binding arbitration, with the losing party paying all costs of arbitration; (b) any arbitration relating to this Agreement shall be held in Almelo, The Netherlands; and (c) any litigation relating to this Agreement shall be subject to the jurisdiction of the court of Almelo, The Netherlands with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. + + 12. RESPONSIBILITY FOR CLAIMS. + + Except in cases where another Contributor has failed to comply with Section 3.4, You are responsible for damages arising, directly or indirectly, out of Your utilization of rights under this License, based + on the number of copies of Covered Code you made available, the revenues you received from utilizing such rights, and other relevant factors. You agree to work with affected parties to distribute + responsibility on an equitable basis. + + EXHIBIT A. + + "The contents of this file are subject to the FreeImage Public License Version 1.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://home.wxs.nl/~flvdberg/freeimage-license.txt + + Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. json: freeimage-1.0.json - yml: freeimage-1.0.yml + yaml: freeimage-1.0.yml html: freeimage-1.0.html - text: freeimage-1.0.LICENSE + license: freeimage-1.0.LICENSE - license_key: freemarker + category: Permissive spdx_license_key: LicenseRef-scancode-freemarker other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "FreeMarker License\n\nFreeMarker 1.x was released under the LGPL license. Later, by\ + \ community\nconsensus, we have switched over to a BSD-style license. As of FreeMarker\n\ + 2.2pre1, the original author, Benjamin Geer, has relinquished the copyright in\nbehalf of\ + \ Visigoth Software Society. The current copyright holder is the\nVisigoth Software Society.\n\ + \n------------------------------------------------------------------------------\nCopyright\ + \ (c) 2003 The Visigoth Software Society. All rights reserved.\n\nRedistribution and use\ + \ in source and binary forms, with or without\nmodification, are permitted provided that\ + \ the following conditions are met:\n\n1. Redistributions of source code must retain the\ + \ above copyright notice,\n this list of conditions and the following disclaimer.\n\n\ + 2. The end-user documentation included with the redistribution, if any, must\n include\ + \ the following acknowlegement:\n \"This product includes software developed by the\ + \ \n Visigoth Software Society (http://www.visigoths.org/).\"\n Alternately, this\ + \ acknowlegement may appear in the software itself, if and\n wherever such third-party\ + \ acknowlegements normally appear.\n\n3. Neither the name \"FreeMarker\", \"Visigoth\"\ + , nor any of the names of the\n project contributors may be used to endorse or promote\ + \ products derived\n from this software without prior written permission. For written\n\ + \ permission, please contact visigoths@visigoths.org.\n\n4. Products derived from this\ + \ software may not be called \"FreeMarker\" or\n \"Visigoth\" nor may \"FreeMarker\"\ + \ or \"Visigoth\" appear in their names\n without prior written permission of the Visigoth\ + \ Software Society.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED\ + \ WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\nVISIGOTH\ + \ SOFTWARE SOCIETY OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL,\ + \ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO, PROCUREMENT\ + \ OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION)\ + \ HOWEVER CAUSED AND ON ANY THEORY\nOF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\ + \ OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\ + \ SOFTWARE,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n------------------------------------------------------------------------------\n\ + \nThis software consists of voluntary contributions made by many individuals on\nbehalf\ + \ of the Visigoth Software Society. For more information on the Visigoth\nSoftware Society,\ + \ please see http://www.visigoths.org/\n\n------------------------------------------------------------------------------\n\ + \nFREEMARKER SUBCOMPONENTS UNDER DIFFERENT LICENSE:\n\nFreeMarker includes a number of subcomponents\ + \ that are licensed by the Apache\nSoftware Foundation under the Apache License, Version\ + \ 2.0. Your use of these\nsubcomponents is subject to the terms and conditions of the Apache\ + \ License,\nVersion 2.0. You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\ + \ \nThe subcomponents under this licence are the following files, which are\nincluded\ + \ both in freemarker.jar and in the source code:\n \n freemarker/ext/jsp/web-app_2_2.dtd\n\ + \ freemarker/ext/jsp/web-app_2_3.dtd\n freemarker/ext/jsp/web-app_2_4.xsd\n freemarker/ext/jsp/web-app_2_5.xsd\n\ + \ freemarker/ext/jsp/web-jsptaglibrary_1_1.dtd\n freemarker/ext/jsp/web-jsptaglibrary_1_2.dtd\n\ + \ freemarker/ext/jsp/web-jsptaglibrary_2_0.xsd\n freemarker/ext/jsp/web-jsptaglibrary_2_1.xsd" json: freemarker.json - yml: freemarker.yml + yaml: freemarker.yml html: freemarker.html - text: freemarker.LICENSE + license: freemarker.LICENSE - license_key: freertos-exception-2.0 + category: Copyleft Limited spdx_license_key: freertos-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + EXCEPTION TEXT: + + Clause 1 + Linking FreeRTOS statically or dynamically with other modules is making a combined work based on FreeRTOS. Thus, the terms and conditions of the GNU General Public License cover the whole combination. + + As a special exception, the copyright holder of FreeRTOS gives you permission to link FreeRTOS with independent modules that communicate with FreeRTOS solely through the FreeRTOS API interface, regardless of the license terms of these independent modules, and to copy and distribute the resulting combined work under terms of your choice, provided that + 1. Every copy of the combined work is accompanied by a written statement that details to the recipient the version of FreeRTOS used and an offer by yourself to provide the FreeRTOS source code (including any modifications you may have made) should the recipient request it. + 2. The combined work is not itself an RTOS, scheduler, kernel or related product. + 3. The independent modules add significant and primary functionality to FreeRTOS and do not merely extend the existing functionality already present in FreeRTOS. + + Clause 2 + FreeRTOS may not be used for any competitive or comparative purpose, including the publication of any form of run time or compile time metric, without the express permission of Real Time Engineers Ltd. (this is the norm within the industry and is intended to ensure information accuracy). json: freertos-exception-2.0.json - yml: freertos-exception-2.0.yml + yaml: freertos-exception-2.0.yml html: freertos-exception-2.0.html - text: freertos-exception-2.0.LICENSE + license: freertos-exception-2.0.LICENSE - license_key: freetts + category: Permissive spdx_license_key: LicenseRef-scancode-freetts other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Portions Copyright 2001-2004 Sun Microsystems, Inc. \nPortions Copyright 1999-2001\ + \ Language Technologies Institute,\nCarnegie Mellon University. \nAll Rights Reserved.\ + \ Use is subject to license terms.\n\nPermission is hereby granted, free of charge, to\ + \ use and distribute\nthis software and its documentation without restriction, including\n\ + without limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense,\ + \ and/or sell copies of this work, and to\npermit persons to whom this work is furnished\ + \ to do so, subject to\nthe following conditions:\n\n 1. The code must retain the above\ + \ copyright notice, this list of\n conditions and the following disclaimer.\n 2. Any\ + \ modifications must be clearly marked as such.\n 3. Original authors' names are not deleted.\n\ + \ 4. The authors' names are not used to endorse or promote products\n derived from this\ + \ software without specific prior written\n permission.\n\nSUN MICROSYSTEMS, INC., CARNEGIE\ + \ MELLON UNIVERSITY AND THE\nCONTRIBUTORS TO THIS WORK DISCLAIM ALL WARRANTIES WITH REGARD\ + \ TO THIS\nSOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS, IN\ + \ NO EVENT SHALL SUN MICROSYSTEMS, INC., CARNEGIE MELLON\nUNIVERSITY NOR THE CONTRIBUTORS\ + \ BE LIABLE FOR ANY SPECIAL, INDIRECT OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\ + \ RESULTING FROM LOSS OF\nUSE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\ + \ OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE\ + \ OF THIS SOFTWARE." json: freetts.json - yml: freetts.yml + yaml: freetts.yml html: freetts.html - text: freetts.LICENSE + license: freetts.LICENSE - license_key: freetype + category: Permissive spdx_license_key: FTL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The FreeType Project LICENSE\n----------------------------\n2006-Jan-27\n\nCopyright\ + \ 1996-2002, 2006 by\nDavid Turner, Robert Wilhelm, and Werner Lemberg\n\nIntroduction\n\ + ============\n\n The FreeType Project is distributed in several archive packages;\n \ + \ some of them may contain, in addition to the FreeType font engine,\n various tools and\ + \ contributions which rely on, or relate to, the\n FreeType Project.\n\n This license\ + \ applies to all files found in such packages, and\n which do not fall under their\ + \ own explicit license. The license\n affects thus the FreeType font engine, the\ + \ test programs,\n documentation and makefiles, at the very least.\n\n This license\ + \ was inspired by the BSD, Artistic, and IJG\n (Independent JPEG Group) licenses,\ + \ which all encourage inclusion\n and use of free software in commercial and freeware\ + \ products\n alike. As a consequence, its main points are that:\n\n o We don't promise\ + \ that this software works. However, we will be\n interested in any kind of bug reports.\ + \ (`as is' distribution)\n\n o You can use this software for whatever you want, in\ + \ parts or\n full form, without having to pay us. (`royalty-free' usage)\n\n o You\ + \ may not pretend that you wrote this software. If you use\n it, or only parts of\ + \ it, in a program, you must acknowledge\n somewhere in your documentation that\ + \ you have used the\n FreeType code. (`credits')\n\n We specifically permit\ + \ and encourage the inclusion of this\n software, with or without modifications,\ + \ in commercial products.\n We disclaim all warranties covering The FreeType Project\ + \ and\n assume no liability related to The FreeType Project.\n\n Finally, many people\ + \ asked us for a preferred form for a\n credit/disclaimer to use in compliance\ + \ with this license. We thus\n encourage you to use the following text:\n\n \"\"\" \ + \ \n Portions of this software are copyright © The FreeType\n Project (www.freetype.org).\ + \ All rights reserved.\n \"\"\"\n\n Please replace with the value from the FreeType\ + \ version you\n actually use.\n\n\nLegal Terms\n===========\n\n0. Definitions\n--------------\n\ + \n Throughout this license, the terms `package', `FreeType Project',\n and `FreeType\ + \ archive' refer to the set of files originally\n distributed by the authors (David\ + \ Turner, Robert Wilhelm, and\n Werner Lemberg) as the `FreeType Project', be they named\ + \ as alpha,\n beta or final release.\n\n `You' refers to the licensee, or person using\ + \ the project, where\n `using' is a generic term including compiling the project's source\n\ + \ code as well as linking it to form a `program' or `executable'.\n This program is\ + \ referred to as `a program using the FreeType\n engine'.\n\n This license applies\ + \ to all files distributed in the original\n FreeType Project, including all source\ + \ code, binaries and\n documentation, unless otherwise stated in the file in\ + \ its\n original, unmodified form as distributed in the original archive.\n If you are\ + \ unsure whether or not a particular file is covered by\n this license, you must contact\ + \ us to verify this.\n\n The FreeType Project is copyright (C) 1996-2000 by David Turner,\n\ + \ Robert Wilhelm, and Werner Lemberg. All rights reserved except as\n specified below.\n\ + \n1. No Warranty\n--------------\n\n THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT\ + \ WARRANTY OF ANY\n KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\n\ + \ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE. IN NO\ + \ EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY DAMAGES CAUSED\ + \ BY THE USE OR THE INABILITY TO\n USE, OF THE FREETYPE PROJECT.\n\n2. Redistribution\n\ + -----------------\n\n This license grants a worldwide, royalty-free, perpetual and\n\ + \ irrevocable right and license to use, execute, perform, compile,\n display, copy,\ + \ create derivative works of, distribute and\n sublicense the FreeType Project\ + \ (in both source and object code\n forms) and derivative works thereof for any\ + \ purpose; and to\n authorize others to exercise some or all of the rights granted\n\ + \ herein, subject to the following conditions:\n\n o Redistribution of source code\ + \ must retain this license file\n (`FTL.TXT') unaltered; any additions, deletions\ + \ or changes to\n the original files must be clearly indicated in accompanying\n\ + \ documentation. The copyright notices of the unaltered,\n original files\ + \ must be preserved in all copies of source\n files.\n\n o Redistribution in\ + \ binary form must provide a disclaimer that\n states that the software is based\ + \ in part of the work of the\n FreeType Team, in the distribution documentation.\ + \ We also\n encourage you to put an URL to the FreeType web page in your\n \ + \ documentation, though this isn't mandatory.\n\n These conditions apply to any software\ + \ derived from or based on\n the FreeType Project, not just the unmodified files. If\ + \ you use\n our work, you must acknowledge us. However, no fee need be paid\n to us.\n\ + \n3. Advertising\n--------------\n\n Neither the FreeType authors and contributors nor\ + \ you shall use\n the name of the other for commercial, advertising, or promotional\n\ + \ purposes without specific prior written permission.\n\n We suggest, but do not require,\ + \ that you use one or more of the\n following phrases to refer to this software in your\ + \ documentation\n or advertising materials: `FreeType Project', `FreeType Engine',\n\ + \ `FreeType library', or `FreeType Distribution'.\n\n As you have not signed this license,\ + \ you are not required to\n accept it. However, as the FreeType Project is copyrighted\n\ + \ material, only this license, or another one contracted with the\n authors, grants\ + \ you the right to use, distribute, and modify it.\n Therefore, by using, distributing,\ + \ or modifying the FreeType\n Project, you indicate that you understand and accept all\ + \ the terms\n of this license.\n\n4. Contacts\n-----------\n\n There are two mailing lists\ + \ related to FreeType:\n\n o freetype@nongnu.org\n\n Discusses general use and applications\ + \ of FreeType, as well as\n future and wanted additions to the library and distribution.\n\ + \ If you are looking for support, start in this list if you\n haven't found\ + \ anything to help you in the documentation.\n\n o freetype-devel@nongnu.org\n\n \ + \ Discusses bugs, as well as engine internals, design issues,\n specific licenses,\ + \ porting, etc.\n\n Our home page can be found at\n\n http://www.freetype.org\n\n---\ + \ end of FTL.TXT ---" json: freetype.json - yml: freetype.yml + yaml: freetype.yml html: freetype.html - text: freetype.LICENSE + license: freetype.LICENSE - license_key: freetype-patent + category: Patent License spdx_license_key: LicenseRef-scancode-freetype-patent other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: "Additionally, subject to the terms and conditions of the */\nFreeType Project License,\ + \ each contributor to the Work hereby grants \nto any individual or legal entity exercising\ + \ permissions granted by \nthe FreeType Project License and this section (hereafter, \"\ + You\" or \n\"Your\") a perpetual, worldwide, non-exclusive, no-charge, \nroyalty-free,\ + \ irrevocable (except as stated in this section) patent \nlicense to make, have made, use,\ + \ offer to sell, sell, import, and \notherwise transfer the Work, where such license\ + \ applies only to those\npatent claims licensable by such contributor that are necessarily\ + \ \ninfringed by their contribution(s) alone or by combination of their \ncontribution(s)\ + \ with the Work to which such contribution(s) was \nsubmitted. If You institute patent\ + \ litigation against any entity \n(including a cross-claim or counterclaim in a lawsuit)\ + \ alleging that \nthe Work or a contribution incorporated within the Work constitutes \n\ + direct or contributory patent infringement, then any patent licenses \ngranted to You under\ + \ this License for that Work shall terminate as of\nthe date such litigation is filed." json: freetype-patent.json - yml: freetype-patent.yml + yaml: freetype-patent.yml html: freetype-patent.html - text: freetype-patent.LICENSE + license: freetype-patent.LICENSE - license_key: froala-owdl-1.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-froala-owdl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + ------------------------------------------------------------ + FROALA OPEN WEB DESIGN LICENSE Version 1.0 - 16 October 2017 + ------------------------------------------------------------ + + 1. PREAMBLE + The goals of the Open Web Design License are to stimulate worldwide development + of collaborative web design projects and to provide a free and open framework + in which web design may be shared and improved in partnership with others. + + The Open Web Design License allows the licensed Work to be used, studied, + modified and redistributed freely as long as it is not sold by itself. The + Work, including any derivative works, can be bundled, embedded, redistributed + and/or sold with any software provided that any reserved names are not used by + derivative works. The Work and derivatives, however, cannot be released under + any other type of license. + + 2. DEFINITIONS + "Work" refers to the set of files released by the Copyright Holder(s) under + this license and clearly marked as such. This may include, but is not limited + to source files, build scripts and documentation. + + "Reserved Name" refers to any names specified as such after the copyright + statement(s). + + "Original Version" refers to the collection of Work components as distributed + by the Copyright Holder(s). + + "Modified Version" or "Derivative Work" refers to any derivative made by adding + to, deleting, or substituting - in part or in whole - any of the components of + the Original Version, by changing content, layout, style or by porting the Work + to a new environment. + + "Author" refers to any designer, engineer, programmer, technical writer or + other person who contributed to the Work. + + 3. PERMISSION & CONDITIONS + Permission is hereby granted, free of charge, to any person obtaining a copy of + the Work, to use, study, copy, merge, embed, modify, redistribute, and sell + modified and unmodified copies of the Work, subject to the following conditions: + + a) Neither the Work nor any of its individual components, in Original or + Modified Versions, may be (i) sold by itself; (ii) used for website or app + generators; (iii) used to create templates, themes, and plugins for sale. + + b) Original or Modified Versions of the Work may be bundled, redistributed + and/or sold with any software, provided that each copy contains the above + copyright notice and this license. These can be included either as + stand-alone text files, human-readable headers or in the appropriate + machine-readable metadata field within text or binary files as long as those + files can be easily viewed by the user. + + c) No Modified Version of the Work may use the Reserved Name(s) unless + explicit written permission is granted by the corresponding Copyright Holder. + This restriction only applies to the primary product name as presented to the + users. + + d) The name(s) of the Copyright holder(s) or the Author(s) of the Work shall + not be used to promote, endorse or advertise any Modified Version. + + e) The Work, modified or unmodified, in part or in whole, must be distributed + entirely under this license, and must not be distributed under any other + license. + + Conditions can be changed only with explicit written permission of the + Copyright Holder(s). + + 4. TERMINATION + This license becomes null and void if any of the above conditions are not met. + + 5. DISCLAIMER + THE WORK IS PROVIDED ''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 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 OR THE INABILITY TO USE THE WORK, EVEN IF ADVISED OF + THE POSSIBILITY OF SUCH DAMAGE. json: froala-owdl-1.0.json - yml: froala-owdl-1.0.yml + yaml: froala-owdl-1.0.yml html: froala-owdl-1.0.html - text: froala-owdl-1.0.LICENSE + license: froala-owdl-1.0.LICENSE - license_key: frontier-1.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-frontier-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "THE FRONTIER ARTISTIC LICENSE Version 1.0\nCopyright © (c) 1999 by Samuel Reynolds.\n\ + Derived from the \"Artistic License\" at \"OpenSource.org\".\nSubmitted to OpenSource.org\ + \ for Open Source Initiative certification.\n\nPREAMBLE\n\nThe intent of this document is\ + \ to state the conditions under which a\nPackage may be copied, such that the Copyright\ + \ Holder maintains some\nsemblance of artistic control over the development of the package,\n\ + while giving the users of the package the right to use and distribute\nthe Package in a\ + \ more-or-less customary fashion, plus the right to\nmake reasonable modifications.\n\n\ + DEFINITIONS\n\no \"Package\" refers to the script, suite, file, or collection of scripts,\ + \ \n suites, and/or files distributed by the Copyright Holder, and to \n derivatives\ + \ of that Package created through textual modification.\n\no \"Standard Version\" refers\ + \ to such a Package if it has not been \n modified, or has been modified in accordance\ + \ with the wishes of the \n Copyright Holder.\n\no \"Copyright Holder\" is whoever\ + \ is named in the copyright statement or \n statements for the package.\n\no \"You\"\ + \ is you, if you're thinking about copying or distributing this \n Package.\n\no \"\ + Reasonable copying fee\" is whatever you can justify on the basis of \n media cost, duplication\ + \ charges, time of people involved, and so on. \n (You will not be required to justify\ + \ it to the Copyright Holder, but \n only to the computing community at large as a market\ + \ that must bear the \n fee.)\n\no \"Freely Available\" means that no fee is charged\ + \ for the item itself, \n though there may be fees involved in handling the item. It\ + \ also means \n that recipients of the item may redistribute it under the same \n \ + \ conditions they received it.\n\nTERMS\n\n1. You may make and give away verbatim copies\ + \ of the source form of the \n Standard Version of this Package without restriction,\ + \ provided that you \n duplicate all of the original copyright notices and associated\ + \ disclaimers.\n\n2. You may apply bug fixes, portability fixes, and other modifications\ + \ \n derived from the Public Domain or from the Copyright Holder. A Package \n modified\ + \ in such a way shall still be considered the Standard Version.\n\n3. You may otherwise\ + \ modify your copy of this Package in any way, provided \n that you insert a prominent\ + \ notice in each changed script, suite, or file \n stating how and when you changed that\ + \ script, suite, or file, and provided \n that you do at least ONE of the following:\n\ + \n a) Use the modified Package only within your corporation or \n organization, or\ + \ retain the modified Package solely for personal use.\n \n b) Place your modifications\ + \ in the Public Domain or otherwise make them \n Freely Available, such as by posting\ + \ said modifications to Usenet or an \n equivalent medium, or placing the modifications\ + \ on a major archive site \n such as ftp.uu.net, or by allowing the Copyright Holder\ + \ to include your \n modifications in the Standard Version of the Package.\n \n \ + \ c) Rename any non-standard executables so the names do not conflict \n with standard\ + \ executables, which must also be provided, and provide a \n separate manual page (or\ + \ equivalent) for each non-standard executable \n that clearly documents how it differs\ + \ from the Standard Version.\n \n d) Make other distribution arrangements with the\ + \ Copyright Holder.\n\n4. You may distribute the programs of this Package in object code\ + \ or \n executable form, provided that you do at least ONE of the following:\n\n a)\ + \ Distribute a Standard Version of the executables and library files, \n together with\ + \ instructions (in the manual page or equivalent) on where \n to get the Standard Version.\n\ + \ \n b) Accompany the distribution with the machine-readable source of the \n Package\ + \ with your modifications.\n \n c) Accompany any non-standard executables with their\ + \ corresponding \n Standard Version executables, give the non-standard executables \n\ + \ non-standard names, and clearly document the differences in manual \n pages (or\ + \ equivalent), together with instructions on where to get the \n Standard Version.\n\ + \ \n d) Make other distribution arrangements with the Copyright Holder.\n \n5.\ + \ You may charge a reasonable copying fee for any distribution of this \n Package. \ + \ You may charge any fee you choose for support of this Package. \n You may not charge\ + \ a fee for this Package itself. However, you may \n distribute this Package in aggregate\ + \ with other (possibly commercial) \n programs as part of a larger (possibly commercial)\ + \ software distribution \n provided that you do not advertise this Package as a product\ + \ of your own.\n \n6. The scripts and library files supplied as input to or produced\ + \ as \n output from the programs of this Package do not automatically fall under \n \ + \ the copyright of this Package, but belong to whomever generated them, and \n may\ + \ be sold commercially, and may be aggregated with this Package.\n \n7. Scripts, suites,\ + \ or programs supplied by you that depend on or \n otherwise make use of this Package\ + \ shall not be considered part of this \n Package.\n \n8. The name of the Copyright\ + \ Holder may not be used to endorse or promote \n products derived from this software\ + \ without specific prior written \n permission.\n\n9. THIS PACKAGE IS PROVIDED \"AS\ + \ IS\" AND WITHOUT ANY EXPRESS OR IMPLIED \n WARRANTIES, INCLUDING, WITHOUT LIMITATION,\ + \ THE IMPLIED WARRANTIES OF \n MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE." json: frontier-1.0.json - yml: frontier-1.0.yml + yaml: frontier-1.0.yml html: frontier-1.0.html - text: frontier-1.0.LICENSE + license: frontier-1.0.LICENSE - license_key: fsf-ap + category: Permissive spdx_license_key: FSFAP other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Copying and distribution of this file, with or without modification, are + permitted in any medium without royalty provided the copyright notice + and this notice are preserved. This file is offered as-is, without any + warranty. json: fsf-ap.json - yml: fsf-ap.yml + yaml: fsf-ap.yml html: fsf-ap.html - text: fsf-ap.LICENSE + license: fsf-ap.LICENSE - license_key: fsf-free + category: Public Domain spdx_license_key: FSFUL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + This configure script is free software; the Free Software Foundation gives + unlimited permission to copy, distribute and modify it. json: fsf-free.json - yml: fsf-free.yml + yaml: fsf-free.yml html: fsf-free.html - text: fsf-free.LICENSE + license: fsf-free.LICENSE - license_key: fsf-notice + category: Permissive spdx_license_key: LicenseRef-scancode-fsf-notice other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This is free software: you are free to change and redistribute it + There is NO WARRANTY, to the extent permitted by law. json: fsf-notice.json - yml: fsf-notice.yml + yaml: fsf-notice.yml html: fsf-notice.html - text: fsf-notice.LICENSE + license: fsf-notice.LICENSE - license_key: fsf-unlimited + category: Permissive spdx_license_key: FSFULLR other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This file is free software; the Free Software Foundation gives + unlimited permission to copy and/or distribute it, with or without + modifications, as long as this notice is preserved. json: fsf-unlimited.json - yml: fsf-unlimited.yml + yaml: fsf-unlimited.yml html: fsf-unlimited.html - text: fsf-unlimited.LICENSE + license: fsf-unlimited.LICENSE - license_key: fsf-unlimited-no-warranty - spdx_license_key: LicenseRef-scancode-fsf-unlimited-no-warranty + category: Permissive + spdx_license_key: FSFULLRWD other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This file is free software; the Free Software Foundation gives + unlimited permission to copy and/or distribute it, with or without + modifications, as long as this notice is preserved. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY, to the extent permitted by law; without even the + implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. json: fsf-unlimited-no-warranty.json - yml: fsf-unlimited-no-warranty.yml + yaml: fsf-unlimited-no-warranty.yml html: fsf-unlimited-no-warranty.html - text: fsf-unlimited-no-warranty.LICENSE + license: fsf-unlimited-no-warranty.LICENSE - license_key: ftdi + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ftdi other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + THIS SOFTWARE IS PROVIDED BY FUTURE TECHNOLOGY DEVICES INTERNATIONAL + LIMITED "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 FUTURE + TECHNOLOGY DEVICES INTERNATIONAL LIMITED 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. + + FTDI DRIVERS MAY BE USED ONLY IN CONJUNCTION WITH PRODUCTS BASED ON + FTDI PARTS. + + FTDI DRIVERS MAY BE DISTRIBUTED IN ANY FORM AS LONG AS LICENSE + INFORMATION IS NOT MODIFIED. + + IF A CUSTOM VENDOR ID AND/OR PRODUCT ID OR DESCRIPTION STRING ARE + USED, IT IS THE RESPONSIBILITY OF THE PRODUCT MANUFACTURER TO MAINTAIN + ANY CHANGES AND SUBSEQUENT WHQL RE-CERTIFICATION AS A RESULT OF MAKING + THESE CHANGES. json: ftdi.json - yml: ftdi.yml + yaml: ftdi.yml html: ftdi.html - text: ftdi.LICENSE + license: ftdi.LICENSE - license_key: ftpbean + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ftpbean other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + FtpBean Version 1.4.2 + Copyright 1999 Calvin Tai + E-mail: citidancer@hongkong.com + URL: http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean + + COPYRIGHT NOTICE + Copyright 1999 Calvin Tai All Rights Reserved. + + FtpBean may be modified and used in any application free of charge by + anyone so long as this copyright notice and the comments above remain + intact. By using this code you agree to indemnify Calvin Tai from any + liability that might arise from it's use. + + Selling the code for this java bean alone is expressly forbidden. + In other words, please ask first before you try and make money off of + this java bean as a standalone application. + + Obtain permission before redistributing this software over the Internet or + in any other medium. In all cases copyright and header must remain intact. json: ftpbean.json - yml: ftpbean.yml + yaml: ftpbean.yml html: ftpbean.html - text: ftpbean.LICENSE + license: ftpbean.LICENSE - license_key: gareth-mccaughan + category: Permissive spdx_license_key: LicenseRef-scancode-gareth-mccaughan other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This file may be distributed and used freely provided: + 1. You do not distribute any version that lacks this + copyright notice (exactly as it appears here, extending + from the start to the end of the C-language comment + containing these words)); and, + 2. If you distribute any modified version, its source + contains a clear description of the ways in which + it differs from the original version, and a clear + indication that the changes are not mine. + There is no restriction on your permission to use and + distribute object code or executable code derived from + this. + + The original version of this file (or perhaps a later + version by the original author) may or may not be + available at http://web.ukonline.co.uk/g.mccaughan/g/software.html . + + Share and enjoy! -- g json: gareth-mccaughan.json - yml: gareth-mccaughan.yml + yaml: gareth-mccaughan.yml html: gareth-mccaughan.html - text: gareth-mccaughan.LICENSE + license: gareth-mccaughan.LICENSE - license_key: gary-s-brown + category: Permissive spdx_license_key: LicenseRef-scancode-gary-s-brown other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: You may use this program, or code or tables extracted from it, as desired without restriction json: gary-s-brown.json - yml: gary-s-brown.yml + yaml: gary-s-brown.yml html: gary-s-brown.html - text: gary-s-brown.LICENSE + license: gary-s-brown.LICENSE - license_key: gcc-compiler-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-gcc-compiler-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, if you include this header file into source + files compiled by GCC, this header file does not by itself cause + the resulting executable to be covered by the GNU General Public + License. This exception does not however invalidate any other + reasons why the executable file might be covered by the GNU General + Public License. json: gcc-compiler-exception-2.0.json - yml: gcc-compiler-exception-2.0.yml + yaml: gcc-compiler-exception-2.0.yml html: gcc-compiler-exception-2.0.html - text: gcc-compiler-exception-2.0.LICENSE + license: gcc-compiler-exception-2.0.LICENSE - license_key: gcc-exception-3.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-exception-3.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + GCC RUNTIME LIBRARY EXCEPTION Version 3, 27 January 2009 + + Copyright © 2009 Free Software Foundation, Inc. + + Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + + This GCC Runtime Library Exception ("Exception") is an additional permission under section 7 of the GNU General Public License, version 3 ("GPLv3"). It applies to a given file (the "Runtime Library") that bears a notice placed by the copyright holder of the file stating that the file is governed by GPLv3 along with this Exception. + + When you use GCC to compile a program, GCC may combine portions of certain GCC header files and runtime libraries with the compiled program. The purpose of this Exception is to allow compilation of non-GPL (including proprietary) programs to use, in this way, the header files and runtime libraries covered by this Exception. + 0. Definitions. + + A file is an "Independent Module" if it either requires the Runtime Library for execution after a Compilation Process, or makes use of an interface provided by the Runtime Library, but is not otherwise based on the Runtime Library. + + "GCC" means a version of the GNU Compiler Collection, with or without modifications, governed by version 3 (or a specified later version) of the GNU General Public License (GPL) with the option of using any subsequent versions published by the FSF. + + "GPL-compatible Software" is software whose conditions of propagation, modification and use would permit combination with GCC in accord with the license of GCC. + + "Target Code" refers to output from any compiler for a real or virtual target processor architecture, in executable form or suitable for input to an assembler, loader, linker and/or execution phase. Notwithstanding that, Target Code does not include data in any format that is used as a compiler intermediate representation, or used for producing a compiler intermediate representation. + + The "Compilation Process" transforms code entirely represented in a high-level, non-intermediate language into Target Code. Thus, for example, use of source code generators and preprocessors need not be considered part of the Compilation Process, since the Compilation Process can be understood as starting with the output of the generators or preprocessors. + + A Compilation Process is "Eligible" if it is done using GCC, alone or with other GPL-compatible software, or if it is done without using any work based on GCC. For example, using non-GPL-compatible Software to optimize any GCC intermediate representations would not qualify as an Eligible Compilation Process. + 1. Grant of Additional Permission. + + You have permission to propagate a work of Target Code formed by combining the Runtime Library with Independent Modules, even if such propagation would otherwise violate the terms of GPLv3, provided that all Target Code was generated by Eligible Compilation Processes. You may then convey such a combination under terms of your choice, consistent with the licensing of the Independent Modules. + 2. No Weakening of GCC Copyleft. + + The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of GCC. json: gcc-exception-3.0.json - yml: gcc-exception-3.0.yml + yaml: gcc-exception-3.0.yml html: gcc-exception-3.0.html - text: gcc-exception-3.0.LICENSE + license: gcc-exception-3.0.LICENSE - license_key: gcc-exception-3.1 + category: Copyleft Limited spdx_license_key: GCC-exception-3.1 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + GCC RUNTIME LIBRARY EXCEPTION + + Version 3.1, 31 March 2009 + + Copyright (C) 2009 Free Software Foundation, Inc. + + Everyone is permitted to copy and distribute verbatim copies of this + license document, but changing it is not allowed. + + This GCC Runtime Library Exception ("Exception") is an additional + permission under section 7 of the GNU General Public License, version + 3 ("GPLv3"). It applies to a given file (the "Runtime Library") that + bears a notice placed by the copyright holder of the file stating that + the file is governed by GPLv3 along with this Exception. + + When you use GCC to compile a program, GCC may combine portions of + certain GCC header files and runtime libraries with the compiled + program. The purpose of this Exception is to allow compilation of + non-GPL (including proprietary) programs to use, in this way, the + header files and runtime libraries covered by this Exception. + + 0. Definitions. + + A file is an "Independent Module" if it either requires the Runtime + Library for execution after a Compilation Process, or makes use of an + interface provided by the Runtime Library, but is not otherwise based + on the Runtime Library. + + "GCC" means a version of the GNU Compiler Collection, with or without + modifications, governed by version 3 (or a specified later version) of + the GNU General Public License (GPL) with the option of using any + subsequent versions published by the FSF. + + "GPL-compatible Software" is software whose conditions of propagation, + modification and use would permit combination with GCC in accord with + the license of GCC. + + "Target Code" refers to output from any compiler for a real or virtual + target processor architecture, in executable form or suitable for + input to an assembler, loader, linker and/or execution + phase. Notwithstanding that, Target Code does not include data in any + format that is used as a compiler intermediate representation, or used + for producing a compiler intermediate representation. + + The "Compilation Process" transforms code entirely represented in + non-intermediate languages designed for human-written code, and/or in + Java Virtual Machine byte code, into Target Code. Thus, for example, + use of source code generators and preprocessors need not be considered + part of the Compilation Process, since the Compilation Process can be + understood as starting with the output of the generators or + preprocessors. + + A Compilation Process is "Eligible" if it is done using GCC, alone or + with other GPL-compatible software, or if it is done without using any + work based on GCC. For example, using non-GPL-compatible Software to + optimize any GCC intermediate representations would not qualify as an + Eligible Compilation Process. + + 1. Grant of Additional Permission. + + You have permission to propagate a work of Target Code formed by + combining the Runtime Library with Independent Modules, even if such + propagation would otherwise violate the terms of GPLv3, provided that + all Target Code was generated by Eligible Compilation Processes. You + may then convey such a combination under terms of your choice, + consistent with the licensing of the Independent Modules. + + 2. No Weakening of GCC Copyleft. + + The availability of this Exception does not imply any general + presumption that third-party software is unaffected by the copyleft + requirements of the license of GCC. json: gcc-exception-3.1.json - yml: gcc-exception-3.1.yml + yaml: gcc-exception-3.1.yml html: gcc-exception-3.1.html - text: gcc-exception-3.1.LICENSE + license: gcc-exception-3.1.LICENSE - license_key: gcc-linking-exception-2.0 + category: Copyleft Limited spdx_license_key: GCC-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "GCC Linking Exception\nIn addition to the permissions in the GNU General Public License,\ + \ the Free\nSoftware Foundation gives you unlimited permission to link the compiled version\n\ + of this file into combinations with other programs, and to distribute those\ncombinations\ + \ without any restriction coming from the use of this file. \n(The General Public License\ + \ restrictions do apply in other respects; for\nexample, they cover modification of the\ + \ file, and distribution when not linked\ninto a combined executable." json: gcc-linking-exception-2.0.json - yml: gcc-linking-exception-2.0.yml + yaml: gcc-linking-exception-2.0.yml html: gcc-linking-exception-2.0.html - text: gcc-linking-exception-2.0.LICENSE + license: gcc-linking-exception-2.0.LICENSE - license_key: gcel-2022 + category: Free Restricted spdx_license_key: LicenseRef-scancode-gcel-2022 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + GridGain Community Edition License ** + 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 10 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. + + "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. + + Subject to Section 10, you may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + You must give any other recipients of the Work or Derivative Works a copy of this License; and + You must cause any modified files to carry prominent notices stating that You changed the files; and + You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + + You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + + 5. Submission of Contributions. + + Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + + 6. Trademarks. + + This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. + + Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. + + In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. + + While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + + 10. Commons Clause License Condition. + + The Work is provided to you by the Licensor under this License subject to the following condition: + + Without limiting other conditions in the License, the grant of rights under the License will not include, and the License does not grant to you, the right to Sell the Work or Derivative Works (collectively “Software”). + + For purposes of the foregoing, “Sell” means practicing any or all of the rights granted to you under the License to provide to third parties, for a fee or other consideration (including without limitation fees for hosting or consulting/ support services related to the Software), a product or service whose value derives, entirely or substantially, from the functionality of the Software. Any license notice or attribution required by the License must also include this Commons Clause License Condition notice. + + END OF TERMS AND CONDITIONS + + ** The GridGain Community Edition License (“GCEL”) consists of the Apache 2.0 License found at https://www.apache.org/licenses/LICENSE-2.0 (Sections 1-9 of the GCEL), plus the “Commons Clause” License Condition v1.0 found at https://commonsclause.com/ (Section 10 of the GCEL). json: gcel-2022.json - yml: gcel-2022.yml + yaml: gcel-2022.yml html: gcel-2022.html - text: gcel-2022.LICENSE + license: gcel-2022.LICENSE - license_key: gco-v3.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-gco-v3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "This software and its modifications can be used and distributed for \nresearch purposes\ + \ only. Publications resulting from use of this code\nmust cite publications according to\ + \ the rules given above. Only\nOlga Veksler has the right to redistribute this code, unless\ + \ expressed\npermission is given otherwise. Commercial use of this code, any of \nits parts,\ + \ or its modifications is not permited. The copyright notices \nmust not be removed in case\ + \ of any modifications. This Licence \ncommences on the date it is electronically or physically\ + \ delivered \nto you and continues in effect unless you fail to comply with any of \nthe\ + \ terms of the License and fail to cure such breach within 30 days \nof becoming aware of\ + \ the breach, in which case the Licence automatically \nterminates. This Licence is governed\ + \ by the laws of Canada and all \ndisputes arising from or relating to this Licence must\ + \ be brought \nin Toronto, Ontario.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS\ + \ AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\ + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE\ + \ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY\ + \ DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\ + \ BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA,\ + \ OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY,\ + \ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\ + \ IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\ + \ DAMAGE." json: gco-v3.0.json - yml: gco-v3.0.yml + yaml: gco-v3.0.yml html: gco-v3.0.html - text: gco-v3.0.LICENSE + license: gco-v3.0.LICENSE - license_key: gdcl + category: Permissive spdx_license_key: LicenseRef-scancode-gdcl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + You are free to re-use this as the basis for your own filter development, + provided you retain this copyright notice in the source. json: gdcl.json - yml: gdcl.yml + yaml: gdcl.yml html: gdcl.html - text: gdcl.LICENSE + license: gdcl.LICENSE - license_key: generic-cla + category: CLA spdx_license_key: LicenseRef-scancode-generic-cla other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Unstated License + text: json: generic-cla.json - yml: generic-cla.yml + yaml: generic-cla.yml html: generic-cla.html - text: generic-cla.LICENSE + license: generic-cla.LICENSE - license_key: generic-exception + category: Unstated License spdx_license_key: LicenseRef-scancode-generic-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Unstated License + text: json: generic-exception.json - yml: generic-exception.yml + yaml: generic-exception.yml html: generic-exception.html - text: generic-exception.LICENSE + license: generic-exception.LICENSE - license_key: generic-export-compliance + category: Unstated License spdx_license_key: LicenseRef-scancode-generic-export-compliance other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Unstated License + text: json: generic-export-compliance.json - yml: generic-export-compliance.yml + yaml: generic-export-compliance.yml html: generic-export-compliance.html - text: generic-export-compliance.LICENSE + license: generic-export-compliance.LICENSE - license_key: generic-tos + category: Unstated License spdx_license_key: LicenseRef-scancode-generic-tos other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Unstated License + text: json: generic-tos.json - yml: generic-tos.yml + yaml: generic-tos.yml html: generic-tos.html - text: generic-tos.LICENSE + license: generic-tos.LICENSE - license_key: generic-trademark + category: Unstated License spdx_license_key: LicenseRef-scancode-generic-trademark other_spdx_license_keys: - LicenseRef-scancode-trademark-notice is_exception: no is_deprecated: no - category: Unstated License + text: json: generic-trademark.json - yml: generic-trademark.yml + yaml: generic-trademark.yml html: generic-trademark.html - text: generic-trademark.LICENSE + license: generic-trademark.LICENSE - license_key: genivia-gsoap + category: Commercial spdx_license_key: LicenseRef-scancode-genivia-gsoap other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + Commercial Licensing and Support Contracting + + Our software products are developed with great care and passed numerous industry + evaluations. Our software is used by the US government and military. + + Returning customers looking for online payment of invoices, please contact us. + + Licensing Options + + There are three licensing options. + + Standard Open Source Edition: The open source edition offers basic functionality + without the use of the wsdl2h tool (no WSDL/schemas to code generation), no + webserver, no UDDI support, and no sample applications to use as basis for your + projects. The limited edition is licensed under the gSOAP public license free of + charge for commercial use. The gSOAP public license requires a notice (Exhibit + B) in the project documentation and in the third-party license list of the + product. + + Standard Commercial Edition: The standard edition of the gSOAP toolset for + commercial use. This edition is identical to the standard open source edition, + but allows the use of the wsdl2h and soapcpp2 tools for commercial code and + document generation. This licens does not have the limitations of the open- + source GPL and gSOAP public licenses. The standard commercial edition is + licensed with limited warranties. + + Enterprise Edition: The enterprise edition of the gSOAP toolset provides the + gold standard toolset for your enterprise. The enterprise edition is best suited + for organizations that require high reliability, security, and extensive support + for WSDL, SOAP, XML, and WS-* protocols. Warranties, software maintenance and + support are included. + + To determine the applicable license or to inquire about license and support cost + information please send a request with a project description from your official + company e-mail address to sales@genivia.com. + + Download standard open source edition + + Resellers + + Please contact sales@genivia.com for pricing of the standard edition with or + without the software support/maintenance option. json: genivia-gsoap.json - yml: genivia-gsoap.yml + yaml: genivia-gsoap.yml html: genivia-gsoap.html - text: genivia-gsoap.LICENSE + license: genivia-gsoap.LICENSE - license_key: genode-agpl-3.0-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-genode-agpl-3.0-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + Linking exception clause + + + The Genode OS Framework (Genode) is licensed under the terms of the + GNU Affero General Public License version 3 (AGPLv3). + + Linking Genode code statically or dynamically with other modules + is making a combined work based on Genode. Thus, the terms and + conditions of the AGPLv3 cover the whole combination. + + As an "additional permission" as defined by Section 7 of the + AGPLv3, Genode Labs as the copyright holder of Genode gives you + permission to link Genode source code with "independent modules" + to produce an executable if the independent modules are licensed + under an "approved license", and to copy and distribute the + resulting executable under terms of your choice, provided that you + also meet, for each linked independent module, the terms and + conditions of the license of that module. + + An "approved license" is a license that is officially approved as + an Open-Source license by the Open Source Initiative [1], or + listed as a Free-Software license by the Free Software Foundation + [2], or explicitly approved by Genode Labs. + + An "independent module" is a module which is not derived from or + based on Genode, or merely uses the Genode API as defined in the + official documentation. + + If you modify Genode, you may extend this exception to your + version of Genode, but you are not obliged to do so. If you do not + wish to do so, delete this exception statement from your version. + + [1] https://opensource.org/licenses + [2] https://www.gnu.org/licenses/license-list.en.html json: genode-agpl-3.0-exception.json - yml: genode-agpl-3.0-exception.yml + yaml: genode-agpl-3.0-exception.yml html: genode-agpl-3.0-exception.html - text: genode-agpl-3.0-exception.LICENSE + license: genode-agpl-3.0-exception.LICENSE - license_key: geoff-kuenning-1993 + category: Permissive spdx_license_key: LicenseRef-scancode-geoff-kuenning-1993 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Copyright 1993, Geoff Kuenning, Granada Hills, CA + 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 modifications to the source code must be clearly marked as + such. Binary redistributions based on modified source code + must be clearly marked as modified versions in the documentation + and/or other materials provided with the distribution. + 4. All advertising materials mentioning features or use of this software + must display the following acknowledgment: + This product includes software developed by Geoff Kuenning and + other unpaid contributors. + 5. The name of Geoff Kuenning may not be used to endorse or promote + products derived from this software without specific prior + written permission. + + THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING 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 GEOFF + KUENNING 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. json: geoff-kuenning-1993.json - yml: geoff-kuenning-1993.yml + yaml: geoff-kuenning-1993.yml html: geoff-kuenning-1993.html - text: geoff-kuenning-1993.LICENSE + license: geoff-kuenning-1993.LICENSE - license_key: geoserver-exception-2.0-plus + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-geoserver-exception-2.0-plus other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As an exception to the terms of the GPL, you may copy, modify, + propagate, and distribute a work formed by combining GeoServer with the + Eclipse Libraries, or a work derivative of such a combination, even if + such copying, modification, propagation, or distribution would otherwise + violate the terms of the GPL. Nothing in this exception exempts you from + complying with the GPL in all respects for all of the code used other + than the Eclipse Libraries. You may include this exception and its grant + of permissions when you distribute GeoServer. Inclusion of this notice + with such a distribution constitutes a grant of such permissions. If + you do not wish to grant these permissions, remove this paragraph from + your distribution. "GeoServer" means the GeoServer software licensed + under version 2 or any later version of the GPL, or a work based on such + software and licensed under the GPL. "Eclipse Libraries" means Eclipse + Modeling Framework Project and XML Schema Definition software + distributed by the Eclipse Foundation and licensed under the Eclipse + Public License Version 1.0 ("EPL"), or a work based on such software and + licensed under the EPL. json: geoserver-exception-2.0-plus.json - yml: geoserver-exception-2.0-plus.yml + yaml: geoserver-exception-2.0-plus.yml html: geoserver-exception-2.0-plus.html - text: geoserver-exception-2.0-plus.LICENSE + license: geoserver-exception-2.0-plus.LICENSE - license_key: gfdl-1.1 + category: Copyleft Limited spdx_license_key: GFDL-1.1-only other_spdx_license_keys: - GFDL-1.1 is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + GNU Free Documentation License + Version 1.1, March 2000 + + Copyright (C) 2000 Free Software Foundation, Inc. + 51 Franklin St, 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. + + + 0. PREAMBLE + + The purpose of this License is to make a manual, textbook, or other + written document "free" in the sense of freedom: to assure everyone + the effective freedom to copy and redistribute it, with or without + modifying it, either commercially or noncommercially. Secondarily, + this License preserves for the author and publisher a way to get + credit for their work, while not being considered responsible for + modifications made by others. + + This License is a kind of "copyleft", which means that derivative + works of the document must themselves be free in the same sense. It + complements the GNU General Public License, which is a copyleft + license designed for free software. + + We have designed this License in order to use it for manuals for free + software, because free software needs free documentation: a free + program should come with manuals providing the same freedoms that the + software does. But this License is not limited to software manuals; + it can be used for any textual work, regardless of subject matter or + whether it is published as a printed book. We recommend this License + principally for works whose purpose is instruction or reference. + + + 1. APPLICABILITY AND DEFINITIONS + + This License applies to any manual or other work that contains a + notice placed by the copyright holder saying it can be distributed + under the terms of this License. The "Document", below, refers to any + such manual or work. Any member of the public is a licensee, and is + addressed as "you". + + A "Modified Version" of the Document means any work containing the + Document or a portion of it, either copied verbatim, or with + modifications and/or translated into another language. + + A "Secondary Section" is a named appendix or a front-matter section of + the Document that deals exclusively with the relationship of the + publishers or authors of the Document to the Document's overall subject + (or to related matters) and contains nothing that could fall directly + within that overall subject. (For example, if the Document is in part a + textbook of mathematics, a Secondary Section may not explain any + mathematics.) The relationship could be a matter of historical + connection with the subject or with related matters, or of legal, + commercial, philosophical, ethical or political position regarding + them. + + The "Invariant Sections" are certain Secondary Sections whose titles + are designated, as being those of Invariant Sections, in the notice + that says that the Document is released under this License. + + The "Cover Texts" are certain short passages of text that are listed, + as Front-Cover Texts or Back-Cover Texts, in the notice that says that + the Document is released under this License. + + A "Transparent" copy of the Document means a machine-readable copy, + represented in a format whose specification is available to the + general public, whose contents can be viewed and edited directly and + straightforwardly with generic text editors or (for images composed of + pixels) generic paint programs or (for drawings) some widely available + drawing editor, and that is suitable for input to text formatters or + for automatic translation to a variety of formats suitable for input + to text formatters. A copy made in an otherwise Transparent file + format whose markup has been designed to thwart or discourage + subsequent modification by readers is not Transparent. A copy that is + not "Transparent" is called "Opaque". + + Examples of suitable formats for Transparent copies include plain + ASCII without markup, Texinfo input format, LaTeX input format, SGML + or XML using a publicly available DTD, and standard-conforming simple + HTML designed for human modification. Opaque formats include + PostScript, PDF, proprietary formats that can be read and edited only + by proprietary word processors, SGML or XML for which the DTD and/or + processing tools are not generally available, and the + machine-generated HTML produced by some word processors for output + purposes only. + + The "Title Page" means, for a printed book, the title page itself, + plus such following pages as are needed to hold, legibly, the material + this License requires to appear in the title page. For works in + formats which do not have any title page as such, "Title Page" means + the text near the most prominent appearance of the work's title, + preceding the beginning of the body of the text. + + + 2. VERBATIM COPYING + + You may copy and distribute the Document in any medium, either + commercially or noncommercially, provided that this License, the + copyright notices, and the license notice saying this License applies + to the Document are reproduced in all copies, and that you add no other + conditions whatsoever to those of this License. You may not use + technical measures to obstruct or control the reading or further + copying of the copies you make or distribute. However, you may accept + compensation in exchange for copies. If you distribute a large enough + number of copies you must also follow the conditions in section 3. + + You may also lend copies, under the same conditions stated above, and + you may publicly display copies. + + + 3. COPYING IN QUANTITY + + If you publish printed copies of the Document numbering more than 100, + and the Document's license notice requires Cover Texts, you must enclose + the copies in covers that carry, clearly and legibly, all these Cover + Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on + the back cover. Both covers must also clearly and legibly identify + you as the publisher of these copies. The front cover must present + the full title with all words of the title equally prominent and + visible. You may add other material on the covers in addition. + Copying with changes limited to the covers, as long as they preserve + the title of the Document and satisfy these conditions, can be treated + as verbatim copying in other respects. + + If the required texts for either cover are too voluminous to fit + legibly, you should put the first ones listed (as many as fit + reasonably) on the actual cover, and continue the rest onto adjacent + pages. + + If you publish or distribute Opaque copies of the Document numbering + more than 100, you must either include a machine-readable Transparent + copy along with each Opaque copy, or state in or with each Opaque copy + a publicly-accessible computer-network location containing a complete + Transparent copy of the Document, free of added material, which the + general network-using public has access to download anonymously at no + charge using public-standard network protocols. If you use the latter + option, you must take reasonably prudent steps, when you begin + distribution of Opaque copies in quantity, to ensure that this + Transparent copy will remain thus accessible at the stated location + until at least one year after the last time you distribute an Opaque + copy (directly or through your agents or retailers) of that edition to + the public. + + It is requested, but not required, that you contact the authors of the + Document well before redistributing any large number of copies, to give + them a chance to provide you with an updated version of the Document. + + + 4. MODIFICATIONS + + You may copy and distribute a Modified Version of the Document under + the conditions of sections 2 and 3 above, provided that you release + the Modified Version under precisely this License, with the Modified + Version filling the role of the Document, thus licensing distribution + and modification of the Modified Version to whoever possesses a copy + of it. In addition, you must do these things in the Modified Version: + + A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission. + B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has less than five). + C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. + D. Preserve all the copyright notices of the Document. + E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. + F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below. + G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. + H. Include an unaltered copy of this License. + I. Preserve the section entitled "History", and its title, and add to + it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section entitled "History" in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence. + J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the "History" section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission. + K. In any section entitled "Acknowledgements" or "Dedications", + preserve the section's title, and preserve in the section all the + substance and tone of each of the contributor acknowledgements + and/or dedications given therein. + L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. + M. Delete any section entitled "Endorsements". Such a section + may not be included in the Modified Version. + N. Do not retitle any existing section as "Endorsements" + or to conflict in title with any Invariant Section. + + If the Modified Version includes new front-matter sections or + appendices that qualify as Secondary Sections and contain no material + copied from the Document, you may at your option designate some or all + of these sections as invariant. To do this, add their titles to the + list of Invariant Sections in the Modified Version's license notice. + These titles must be distinct from any other section titles. + + You may add a section entitled "Endorsements", provided it contains + nothing but endorsements of your Modified Version by various + parties--for example, statements of peer review or that the text has + been approved by an organization as the authoritative definition of a + standard. + + You may add a passage of up to five words as a Front-Cover Text, and a + passage of up to 25 words as a Back-Cover Text, to the end of the list + of Cover Texts in the Modified Version. Only one passage of + Front-Cover Text and one of Back-Cover Text may be added by (or + through arrangements made by) any one entity. If the Document already + includes a cover text for the same cover, previously added by you or + by arrangement made by the same entity you are acting on behalf of, + you may not add another; but you may replace the old one, on explicit + permission from the previous publisher that added the old one. + + The author(s) and publisher(s) of the Document do not by this License + give permission to use their names for publicity for or to assert or + imply endorsement of any Modified Version. + + + 5. COMBINING DOCUMENTS + + You may combine the Document with other documents released under this + License, under the terms defined in section 4 above for modified + versions, provided that you include in the combination all of the + Invariant Sections of all of the original documents, unmodified, and + list them all as Invariant Sections of your combined work in its + license notice. + + The combined work need only contain one copy of this License, and + multiple identical Invariant Sections may be replaced with a single + copy. If there are multiple Invariant Sections with the same name but + different contents, make the title of each such section unique by + adding at the end of it, in parentheses, the name of the original + author or publisher of that section if known, or else a unique number. + Make the same adjustment to the section titles in the list of + Invariant Sections in the license notice of the combined work. + + In the combination, you must combine any sections entitled "History" + in the various original documents, forming one section entitled + "History"; likewise combine any sections entitled "Acknowledgements", + and any sections entitled "Dedications". You must delete all sections + entitled "Endorsements." + + + 6. COLLECTIONS OF DOCUMENTS + + You may make a collection consisting of the Document and other documents + released under this License, and replace the individual copies of this + License in the various documents with a single copy that is included in + the collection, provided that you follow the rules of this License for + verbatim copying of each of the documents in all other respects. + + You may extract a single document from such a collection, and distribute + it individually under this License, provided you insert a copy of this + License into the extracted document, and follow this License in all + other respects regarding verbatim copying of that document. + + + 7. AGGREGATION WITH INDEPENDENT WORKS + + A compilation of the Document or its derivatives with other separate + and independent documents or works, in or on a volume of a storage or + distribution medium, does not as a whole count as a Modified Version + of the Document, provided no compilation copyright is claimed for the + compilation. Such a compilation is called an "aggregate", and this + License does not apply to the other self-contained works thus compiled + with the Document, on account of their being thus compiled, if they + are not themselves derivative works of the Document. + + If the Cover Text requirement of section 3 is applicable to these + copies of the Document, then if the Document is less than one quarter + of the entire aggregate, the Document's Cover Texts may be placed on + covers that surround only the Document within the aggregate. + Otherwise they must appear on covers around the whole aggregate. + + + 8. TRANSLATION + + Translation is considered a kind of modification, so you may + distribute translations of the Document under the terms of section 4. + Replacing Invariant Sections with translations requires special + permission from their copyright holders, but you may include + translations of some or all Invariant Sections in addition to the + original versions of these Invariant Sections. You may include a + translation of this License provided that you also include the + original English version of this License. In case of a disagreement + between the translation and the original English version of this + License, the original English version will prevail. + + + 9. TERMINATION + + You may not copy, modify, sublicense, or distribute the Document except + as expressly provided for under this License. Any other attempt to + copy, modify, sublicense or distribute the Document 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. + + + 10. FUTURE REVISIONS OF THIS LICENSE + + The Free Software Foundation may publish new, revised versions + of the GNU Free Documentation 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. See + http://www.gnu.org/copyleft/. + + Each version of the License is given a distinguishing version number. + If the Document specifies that a particular numbered version of this + License "or any later version" applies to it, you have the option of + following the terms and conditions either of that specified version or + of any later version that has been published (not as a draft) by the + Free Software Foundation. If the Document does not specify a version + number of this License, you may choose any version ever published (not + as a draft) by the Free Software Foundation. + + + ADDENDUM: How to use this License for your documents + + To use this License in a document you have written, include a copy of + the License in the document and put the following copyright and + license notices just after the title page: + + Copyright (c) YEAR YOUR NAME. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.1 + or any later version published by the Free Software Foundation; + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + + If you have no Invariant Sections, write "with no Invariant Sections" + instead of saying which ones are invariant. If you have no + Front-Cover Texts, write "no Front-Cover Texts" instead of + "Front-Cover Texts being LIST"; likewise for Back-Cover Texts. + + If your document contains nontrivial examples of program code, we + recommend releasing these examples in parallel under your choice of + free software license, such as the GNU General Public License, + to permit their use in free software. json: gfdl-1.1.json - yml: gfdl-1.1.yml + yaml: gfdl-1.1.yml html: gfdl-1.1.html - text: gfdl-1.1.LICENSE + license: gfdl-1.1.LICENSE - license_key: gfdl-1.1-invariants-only + category: Copyleft Limited spdx_license_key: GFDL-1.1-invariants-only other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Permission is granted to copy, distribute and/or modify this document under the\nterms\ + \ of the GNU Free Documentation License, Version 1.1; with the Invariant\nSections being\ + \ LIST THEIR TITLES, with the Front-Cover Texts being LIST, and\nwith the Back-Cover Texts\ + \ being LIST. A copy of the license is included in the\nsection entitled \"GNU Free Documentation\ + \ License\". \n\n GNU Free Documentation License\n Version\ + \ 1.1, March 2000\n\n Copyright (C) 2000 Free Software Foundation, Inc.\n 51 Franklin\ + \ St, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute\ + \ verbatim copies\n of this license document, but changing it is not allowed.\n\n\n0. PREAMBLE\n\ + \nThe purpose of this License is to make a manual, textbook, or other\nwritten document\ + \ \"free\" in the sense of freedom: to assure everyone\nthe effective freedom to copy and\ + \ redistribute it, with or without\nmodifying it, either commercially or noncommercially.\ + \ Secondarily,\nthis License preserves for the author and publisher a way to get\ncredit\ + \ for their work, while not being considered responsible for\nmodifications made by others.\n\ + \nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document\ + \ must themselves be free in the same sense. It\ncomplements the GNU General Public License,\ + \ which is a copyleft\nlicense designed for free software.\n\nWe have designed this License\ + \ in order to use it for manuals for free\nsoftware, because free software needs free documentation:\ + \ a free\nprogram should come with manuals providing the same freedoms that the\nsoftware\ + \ does. But this License is not limited to software manuals;\nit can be used for any textual\ + \ work, regardless of subject matter or\nwhether it is published as a printed book. We\ + \ recommend this License\nprincipally for works whose purpose is instruction or reference.\n\ + \n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work\ + \ that contains a\nnotice placed by the copyright holder saying it can be distributed\n\ + under the terms of this License. The \"Document\", below, refers to any\nsuch manual or\ + \ work. Any member of the public is a licensee, and is\naddressed as \"you\".\n\nA \"Modified\ + \ Version\" of the Document means any work containing the\nDocument or a portion of it,\ + \ either copied verbatim, or with\nmodifications and/or translated into another language.\n\ + \nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document\ + \ that deals exclusively with the relationship of the\npublishers or authors of the Document\ + \ to the Document's overall subject\n(or to related matters) and contains nothing that could\ + \ fall directly\nwithin that overall subject. (For example, if the Document is in part\ + \ a\ntextbook of mathematics, a Secondary Section may not explain any\nmathematics.) The\ + \ relationship could be a matter of historical\nconnection with the subject or with related\ + \ matters, or of legal,\ncommercial, philosophical, ethical or political position regarding\n\ + them.\n\nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated,\ + \ as being those of Invariant Sections, in the notice\nthat says that the Document is released\ + \ under this License.\n\nThe \"Cover Texts\" are certain short passages of text that are\ + \ listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document\ + \ is released under this License.\n\nA \"Transparent\" copy of the Document means a machine-readable\ + \ copy,\nrepresented in a format whose specification is available to the\ngeneral public,\ + \ whose contents can be viewed and edited directly and\nstraightforwardly with generic text\ + \ editors or (for images composed of\npixels) generic paint programs or (for drawings) some\ + \ widely available\ndrawing editor, and that is suitable for input to text formatters or\n\ + for automatic translation to a variety of formats suitable for input\nto text formatters.\ + \ A copy made in an otherwise Transparent file\nformat whose markup has been designed to\ + \ thwart or discourage\nsubsequent modification by readers is not Transparent. A copy that\ + \ is\nnot \"Transparent\" is called \"Opaque\".\n\nExamples of suitable formats for Transparent\ + \ copies include plain\nASCII without markup, Texinfo input format, LaTeX input format,\ + \ SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML designed\ + \ for human modification. Opaque formats include\nPostScript, PDF, proprietary formats\ + \ that can be read and edited only\nby proprietary word processors, SGML or XML for which\ + \ the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated\ + \ HTML produced by some word processors for output\npurposes only.\n\nThe \"Title Page\"\ + \ means, for a printed book, the title page itself,\nplus such following pages as are needed\ + \ to hold, legibly, the material\nthis License requires to appear in the title page. For\ + \ works in\nformats which do not have any title page as such, \"Title Page\" means\nthe\ + \ text near the most prominent appearance of the work's title,\npreceding the beginning\ + \ of the body of the text.\n\n\n2. VERBATIM COPYING\n\nYou may copy and distribute the Document\ + \ in any medium, either\ncommercially or noncommercially, provided that this License, the\n\ + copyright notices, and the license notice saying this License applies\nto the Document are\ + \ reproduced in all copies, and that you add no other\nconditions whatsoever to those of\ + \ this License. You may not use\ntechnical measures to obstruct or control the reading\ + \ or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation\ + \ in exchange for copies. If you distribute a large enough\nnumber of copies you must also\ + \ follow the conditions in section 3.\n\nYou may also lend copies, under the same conditions\ + \ stated above, and\nyou may publicly display copies.\n\n\n3. COPYING IN QUANTITY\n\nIf\ + \ you publish printed copies of the Document numbering more than 100,\nand the Document's\ + \ license notice requires Cover Texts, you must enclose\nthe copies in covers that carry,\ + \ clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and\ + \ Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\n\ + you as the publisher of these copies. The front cover must present\nthe full title with\ + \ all words of the title equally prominent and\nvisible. You may add other material on\ + \ the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\n\ + the title of the Document and satisfy these conditions, can be treated\nas verbatim copying\ + \ in other respects.\n\nIf the required texts for either cover are too voluminous to fit\n\ + legibly, you should put the first ones listed (as many as fit\nreasonably) on the actual\ + \ cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque\ + \ copies of the Document numbering\nmore than 100, you must either include a machine-readable\ + \ Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\n\ + a publicly-accessible computer-network location containing a complete\nTransparent copy\ + \ of the Document, free of added material, which the\ngeneral network-using public has access\ + \ to download anonymously at no\ncharge using public-standard network protocols. If you\ + \ use the latter\noption, you must take reasonably prudent steps, when you begin\ndistribution\ + \ of Opaque copies in quantity, to ensure that this\nTransparent copy will remain thus accessible\ + \ at the stated location\nuntil at least one year after the last time you distribute an\ + \ Opaque\ncopy (directly or through your agents or retailers) of that edition to\nthe public.\n\ + \nIt is requested, but not required, that you contact the authors of the\nDocument well\ + \ before redistributing any large number of copies, to give\nthem a chance to provide you\ + \ with an updated version of the Document.\n\n\n4. MODIFICATIONS\n\nYou may copy and distribute\ + \ a Modified Version of the Document under\nthe conditions of sections 2 and 3 above, provided\ + \ that you release\nthe Modified Version under precisely this License, with the Modified\n\ + Version filling the role of the Document, thus licensing distribution\nand modification\ + \ of the Modified Version to whoever possesses a copy\nof it. In addition, you must do\ + \ these things in the Modified Version:\n\nA. Use in the Title Page (and on the covers,\ + \ if any) a title distinct\n from that of the Document, and from those of previous versions\n\ + \ (which should, if there were any, be listed in the History section\n of the Document).\ + \ You may use the same title as a previous version\n if the original publisher of that\ + \ version gives permission.\nB. List on the Title Page, as authors, one or more persons\ + \ or entities\n responsible for authorship of the modifications in the Modified\n Version,\ + \ together with at least five of the principal authors of the\n Document (all of its principal\ + \ authors, if it has less than five).\nC. State on the Title page the name of the publisher\ + \ of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices\ + \ of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent\ + \ to the other copyright notices.\nF. Include, immediately after the copyright notices,\ + \ a license notice\n giving the public permission to use the Modified Version under the\n\ + \ terms of this License, in the form shown in the Addendum below.\nG. Preserve in that\ + \ license notice the full lists of Invariant Sections\n and required Cover Texts given\ + \ in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve\ + \ the section entitled \"History\", and its title, and add to\n it an item stating at\ + \ least the title, year, new authors, and\n publisher of the Modified Version as given\ + \ on the Title Page. If\n there is no section entitled \"History\" in the Document, create\ + \ one\n stating the title, year, authors, and publisher of the Document as\n given on\ + \ its Title Page, then add an item describing the Modified\n Version as stated in the\ + \ previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n\ + \ public access to a Transparent copy of the Document, and likewise\n the network locations\ + \ given in the Document for previous versions\n it was based on. These may be placed\ + \ in the \"History\" section.\n You may omit a network location for a work that was published\ + \ at\n least four years before the Document itself, or if the original\n publisher of\ + \ the version it refers to gives permission.\nK. In any section entitled \"Acknowledgements\"\ + \ or \"Dedications\",\n preserve the section's title, and preserve in the section all\ + \ the\n substance and tone of each of the contributor acknowledgements\n and/or dedications\ + \ given therein.\nL. Preserve all the Invariant Sections of the Document,\n unaltered\ + \ in their text and in their titles. Section numbers\n or the equivalent are not considered\ + \ part of the section titles.\nM. Delete any section entitled \"Endorsements\". Such a\ + \ section\n may not be included in the Modified Version.\nN. Do not retitle any existing\ + \ section as \"Endorsements\"\n or to conflict in title with any Invariant Section.\n\n\ + If the Modified Version includes new front-matter sections or\nappendices that qualify as\ + \ Secondary Sections and contain no material\ncopied from the Document, you may at your\ + \ option designate some or all\nof these sections as invariant. To do this, add their titles\ + \ to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles\ + \ must be distinct from any other section titles.\n\nYou may add a section entitled \"Endorsements\"\ + , provided it contains\nnothing but endorsements of your Modified Version by various\nparties--for\ + \ example, statements of peer review or that the text has\nbeen approved by an organization\ + \ as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five\ + \ words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to\ + \ the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover\ + \ Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any\ + \ one entity. If the Document already\nincludes a cover text for the same cover, previously\ + \ added by you or\nby arrangement made by the same entity you are acting on behalf of,\n\ + you may not add another; but you may replace the old one, on explicit\npermission from the\ + \ previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document\ + \ do not by this License\ngive permission to use their names for publicity for or to assert\ + \ or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may\ + \ combine the Document with other documents released under this\nLicense, under the terms\ + \ defined in section 4 above for modified\nversions, provided that you include in the combination\ + \ all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist\ + \ them all as Invariant Sections of your combined work in its\nlicense notice.\n\nThe combined\ + \ work need only contain one copy of this License, and\nmultiple identical Invariant Sections\ + \ may be replaced with a single\ncopy. If there are multiple Invariant Sections with the\ + \ same name but\ndifferent contents, make the title of each such section unique by\nadding\ + \ at the end of it, in parentheses, the name of the original\nauthor or publisher of that\ + \ section if known, or else a unique number.\nMake the same adjustment to the section titles\ + \ in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the\ + \ combination, you must combine any sections entitled \"History\"\nin the various original\ + \ documents, forming one section entitled\n\"History\"; likewise combine any sections entitled\ + \ \"Acknowledgements\",\nand any sections entitled \"Dedications\". You must delete all\ + \ sections\nentitled \"Endorsements.\"\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make\ + \ a collection consisting of the Document and other documents\nreleased under this License,\ + \ and replace the individual copies of this\nLicense in the various documents with a single\ + \ copy that is included in\nthe collection, provided that you follow the rules of this License\ + \ for\nverbatim copying of each of the documents in all other respects.\n\nYou may extract\ + \ a single document from such a collection, and distribute\nit individually under this License,\ + \ provided you insert a copy of this\nLicense into the extracted document, and follow this\ + \ License in all\nother respects regarding verbatim copying of that document.\n\n\n7. AGGREGATION\ + \ WITH INDEPENDENT WORKS\n\nA compilation of the Document or its derivatives with other\ + \ separate\nand independent documents or works, in or on a volume of a storage or\ndistribution\ + \ medium, does not as a whole count as a Modified Version\nof the Document, provided no\ + \ compilation copyright is claimed for the\ncompilation. Such a compilation is called an\ + \ \"aggregate\", and this\nLicense does not apply to the other self-contained works thus\ + \ compiled\nwith the Document, on account of their being thus compiled, if they\nare not\ + \ themselves derivative works of the Document.\n\nIf the Cover Text requirement of section\ + \ 3 is applicable to these\ncopies of the Document, then if the Document is less than one\ + \ quarter\nof the entire aggregate, the Document's Cover Texts may be placed on\ncovers\ + \ that surround only the Document within the aggregate.\nOtherwise they must appear on covers\ + \ around the whole aggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a kind of\ + \ modification, so you may\ndistribute translations of the Document under the terms of section\ + \ 4.\nReplacing Invariant Sections with translations requires special\npermission from their\ + \ copyright holders, but you may include\ntranslations of some or all Invariant Sections\ + \ in addition to the\noriginal versions of these Invariant Sections. You may include a\n\ + translation of this License provided that you also include the\noriginal English version\ + \ of this License. In case of a disagreement\nbetween the translation and the original\ + \ English version of this\nLicense, the original English version will prevail.\n\n\n9. TERMINATION\n\ + \nYou may not copy, modify, sublicense, or distribute the Document except\nas expressly\ + \ provided for under this License. Any other attempt to\ncopy, modify, sublicense or distribute\ + \ the Document is void, and will\nautomatically terminate your rights under this License.\ + \ However,\nparties who have received copies, or rights, from you under this\nLicense will\ + \ not have their licenses terminated so long as such\nparties remain in full compliance.\n\ + \n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation may publish new,\ + \ revised versions\nof the GNU Free Documentation License from time to time. Such new\n\ + versions will be similar in spirit to the present version, but may\ndiffer in detail to\ + \ address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\nEach version\ + \ of the License is given a distinguishing version number.\nIf the Document specifies that\ + \ a particular numbered version of this\nLicense \"or any later version\" applies to it,\ + \ you have the option of\nfollowing the terms and conditions either of that specified version\ + \ or\nof any later version that has been published (not as a draft) by the\nFree Software\ + \ Foundation. If the Document does not specify a version\nnumber of this License, you may\ + \ choose any version ever published (not\nas a draft) by the Free Software Foundation.\n\ + \n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document\ + \ you have written, include a copy of\nthe License in the document and put the following\ + \ copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR\ + \ YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n\ + \ under the terms of the GNU Free Documentation License, Version 1.1\n or any\ + \ later version published by the Free Software Foundation;\n with the Invariant Sections\ + \ being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover\ + \ Texts being LIST.\n A copy of the license is included in the section entitled \"\ + GNU\n Free Documentation License\".\n\nIf you have no Invariant Sections, write \"\ + with no Invariant Sections\"\ninstead of saying which ones are invariant. If you have no\n\ + Front-Cover Texts, write \"no Front-Cover Texts\" instead of\n\"Front-Cover Texts being\ + \ LIST\"; likewise for Back-Cover Texts.\n\nIf your document contains nontrivial examples\ + \ of program code, we\nrecommend releasing these examples in parallel under your choice\ + \ of\nfree software license, such as the GNU General Public License,\nto permit their use\ + \ in free software." json: gfdl-1.1-invariants-only.json - yml: gfdl-1.1-invariants-only.yml + yaml: gfdl-1.1-invariants-only.yml html: gfdl-1.1-invariants-only.html - text: gfdl-1.1-invariants-only.LICENSE + license: gfdl-1.1-invariants-only.LICENSE - license_key: gfdl-1.1-invariants-or-later + category: Copyleft Limited spdx_license_key: GFDL-1.1-invariants-or-later other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.1 + or any later version published by the Free Software Foundation; + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + + + GNU Free Documentation License + Version 1.1, March 2000 + + Copyright (C) 2000 Free Software Foundation, Inc. + 51 Franklin St, 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. + + + 0. PREAMBLE + + The purpose of this License is to make a manual, textbook, or other + written document "free" in the sense of freedom: to assure everyone + the effective freedom to copy and redistribute it, with or without + modifying it, either commercially or noncommercially. Secondarily, + this License preserves for the author and publisher a way to get + credit for their work, while not being considered responsible for + modifications made by others. + + This License is a kind of "copyleft", which means that derivative + works of the document must themselves be free in the same sense. It + complements the GNU General Public License, which is a copyleft + license designed for free software. + + We have designed this License in order to use it for manuals for free + software, because free software needs free documentation: a free + program should come with manuals providing the same freedoms that the + software does. But this License is not limited to software manuals; + it can be used for any textual work, regardless of subject matter or + whether it is published as a printed book. We recommend this License + principally for works whose purpose is instruction or reference. + + + 1. APPLICABILITY AND DEFINITIONS + + This License applies to any manual or other work that contains a + notice placed by the copyright holder saying it can be distributed + under the terms of this License. The "Document", below, refers to any + such manual or work. Any member of the public is a licensee, and is + addressed as "you". + + A "Modified Version" of the Document means any work containing the + Document or a portion of it, either copied verbatim, or with + modifications and/or translated into another language. + + A "Secondary Section" is a named appendix or a front-matter section of + the Document that deals exclusively with the relationship of the + publishers or authors of the Document to the Document's overall subject + (or to related matters) and contains nothing that could fall directly + within that overall subject. (For example, if the Document is in part a + textbook of mathematics, a Secondary Section may not explain any + mathematics.) The relationship could be a matter of historical + connection with the subject or with related matters, or of legal, + commercial, philosophical, ethical or political position regarding + them. + + The "Invariant Sections" are certain Secondary Sections whose titles + are designated, as being those of Invariant Sections, in the notice + that says that the Document is released under this License. + + The "Cover Texts" are certain short passages of text that are listed, + as Front-Cover Texts or Back-Cover Texts, in the notice that says that + the Document is released under this License. + + A "Transparent" copy of the Document means a machine-readable copy, + represented in a format whose specification is available to the + general public, whose contents can be viewed and edited directly and + straightforwardly with generic text editors or (for images composed of + pixels) generic paint programs or (for drawings) some widely available + drawing editor, and that is suitable for input to text formatters or + for automatic translation to a variety of formats suitable for input + to text formatters. A copy made in an otherwise Transparent file + format whose markup has been designed to thwart or discourage + subsequent modification by readers is not Transparent. A copy that is + not "Transparent" is called "Opaque". + + Examples of suitable formats for Transparent copies include plain + ASCII without markup, Texinfo input format, LaTeX input format, SGML + or XML using a publicly available DTD, and standard-conforming simple + HTML designed for human modification. Opaque formats include + PostScript, PDF, proprietary formats that can be read and edited only + by proprietary word processors, SGML or XML for which the DTD and/or + processing tools are not generally available, and the + machine-generated HTML produced by some word processors for output + purposes only. + + The "Title Page" means, for a printed book, the title page itself, + plus such following pages as are needed to hold, legibly, the material + this License requires to appear in the title page. For works in + formats which do not have any title page as such, "Title Page" means + the text near the most prominent appearance of the work's title, + preceding the beginning of the body of the text. + + + 2. VERBATIM COPYING + + You may copy and distribute the Document in any medium, either + commercially or noncommercially, provided that this License, the + copyright notices, and the license notice saying this License applies + to the Document are reproduced in all copies, and that you add no other + conditions whatsoever to those of this License. You may not use + technical measures to obstruct or control the reading or further + copying of the copies you make or distribute. However, you may accept + compensation in exchange for copies. If you distribute a large enough + number of copies you must also follow the conditions in section 3. + + You may also lend copies, under the same conditions stated above, and + you may publicly display copies. + + + 3. COPYING IN QUANTITY + + If you publish printed copies of the Document numbering more than 100, + and the Document's license notice requires Cover Texts, you must enclose + the copies in covers that carry, clearly and legibly, all these Cover + Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on + the back cover. Both covers must also clearly and legibly identify + you as the publisher of these copies. The front cover must present + the full title with all words of the title equally prominent and + visible. You may add other material on the covers in addition. + Copying with changes limited to the covers, as long as they preserve + the title of the Document and satisfy these conditions, can be treated + as verbatim copying in other respects. + + If the required texts for either cover are too voluminous to fit + legibly, you should put the first ones listed (as many as fit + reasonably) on the actual cover, and continue the rest onto adjacent + pages. + + If you publish or distribute Opaque copies of the Document numbering + more than 100, you must either include a machine-readable Transparent + copy along with each Opaque copy, or state in or with each Opaque copy + a publicly-accessible computer-network location containing a complete + Transparent copy of the Document, free of added material, which the + general network-using public has access to download anonymously at no + charge using public-standard network protocols. If you use the latter + option, you must take reasonably prudent steps, when you begin + distribution of Opaque copies in quantity, to ensure that this + Transparent copy will remain thus accessible at the stated location + until at least one year after the last time you distribute an Opaque + copy (directly or through your agents or retailers) of that edition to + the public. + + It is requested, but not required, that you contact the authors of the + Document well before redistributing any large number of copies, to give + them a chance to provide you with an updated version of the Document. + + + 4. MODIFICATIONS + + You may copy and distribute a Modified Version of the Document under + the conditions of sections 2 and 3 above, provided that you release + the Modified Version under precisely this License, with the Modified + Version filling the role of the Document, thus licensing distribution + and modification of the Modified Version to whoever possesses a copy + of it. In addition, you must do these things in the Modified Version: + + A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission. + B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has less than five). + C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. + D. Preserve all the copyright notices of the Document. + E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. + F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below. + G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. + H. Include an unaltered copy of this License. + I. Preserve the section entitled "History", and its title, and add to + it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section entitled "History" in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence. + J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the "History" section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission. + K. In any section entitled "Acknowledgements" or "Dedications", + preserve the section's title, and preserve in the section all the + substance and tone of each of the contributor acknowledgements + and/or dedications given therein. + L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. + M. Delete any section entitled "Endorsements". Such a section + may not be included in the Modified Version. + N. Do not retitle any existing section as "Endorsements" + or to conflict in title with any Invariant Section. + + If the Modified Version includes new front-matter sections or + appendices that qualify as Secondary Sections and contain no material + copied from the Document, you may at your option designate some or all + of these sections as invariant. To do this, add their titles to the + list of Invariant Sections in the Modified Version's license notice. + These titles must be distinct from any other section titles. + + You may add a section entitled "Endorsements", provided it contains + nothing but endorsements of your Modified Version by various + parties--for example, statements of peer review or that the text has + been approved by an organization as the authoritative definition of a + standard. + + You may add a passage of up to five words as a Front-Cover Text, and a + passage of up to 25 words as a Back-Cover Text, to the end of the list + of Cover Texts in the Modified Version. Only one passage of + Front-Cover Text and one of Back-Cover Text may be added by (or + through arrangements made by) any one entity. If the Document already + includes a cover text for the same cover, previously added by you or + by arrangement made by the same entity you are acting on behalf of, + you may not add another; but you may replace the old one, on explicit + permission from the previous publisher that added the old one. + + The author(s) and publisher(s) of the Document do not by this License + give permission to use their names for publicity for or to assert or + imply endorsement of any Modified Version. + + + 5. COMBINING DOCUMENTS + + You may combine the Document with other documents released under this + License, under the terms defined in section 4 above for modified + versions, provided that you include in the combination all of the + Invariant Sections of all of the original documents, unmodified, and + list them all as Invariant Sections of your combined work in its + license notice. + + The combined work need only contain one copy of this License, and + multiple identical Invariant Sections may be replaced with a single + copy. If there are multiple Invariant Sections with the same name but + different contents, make the title of each such section unique by + adding at the end of it, in parentheses, the name of the original + author or publisher of that section if known, or else a unique number. + Make the same adjustment to the section titles in the list of + Invariant Sections in the license notice of the combined work. + + In the combination, you must combine any sections entitled "History" + in the various original documents, forming one section entitled + "History"; likewise combine any sections entitled "Acknowledgements", + and any sections entitled "Dedications". You must delete all sections + entitled "Endorsements." + + + 6. COLLECTIONS OF DOCUMENTS + + You may make a collection consisting of the Document and other documents + released under this License, and replace the individual copies of this + License in the various documents with a single copy that is included in + the collection, provided that you follow the rules of this License for + verbatim copying of each of the documents in all other respects. + + You may extract a single document from such a collection, and distribute + it individually under this License, provided you insert a copy of this + License into the extracted document, and follow this License in all + other respects regarding verbatim copying of that document. + + + 7. AGGREGATION WITH INDEPENDENT WORKS + + A compilation of the Document or its derivatives with other separate + and independent documents or works, in or on a volume of a storage or + distribution medium, does not as a whole count as a Modified Version + of the Document, provided no compilation copyright is claimed for the + compilation. Such a compilation is called an "aggregate", and this + License does not apply to the other self-contained works thus compiled + with the Document, on account of their being thus compiled, if they + are not themselves derivative works of the Document. + + If the Cover Text requirement of section 3 is applicable to these + copies of the Document, then if the Document is less than one quarter + of the entire aggregate, the Document's Cover Texts may be placed on + covers that surround only the Document within the aggregate. + Otherwise they must appear on covers around the whole aggregate. + + + 8. TRANSLATION + + Translation is considered a kind of modification, so you may + distribute translations of the Document under the terms of section 4. + Replacing Invariant Sections with translations requires special + permission from their copyright holders, but you may include + translations of some or all Invariant Sections in addition to the + original versions of these Invariant Sections. You may include a + translation of this License provided that you also include the + original English version of this License. In case of a disagreement + between the translation and the original English version of this + License, the original English version will prevail. + + + 9. TERMINATION + + You may not copy, modify, sublicense, or distribute the Document except + as expressly provided for under this License. Any other attempt to + copy, modify, sublicense or distribute the Document 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. + + + 10. FUTURE REVISIONS OF THIS LICENSE + + The Free Software Foundation may publish new, revised versions + of the GNU Free Documentation 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. See + http://www.gnu.org/copyleft/. + + Each version of the License is given a distinguishing version number. + If the Document specifies that a particular numbered version of this + License "or any later version" applies to it, you have the option of + following the terms and conditions either of that specified version or + of any later version that has been published (not as a draft) by the + Free Software Foundation. If the Document does not specify a version + number of this License, you may choose any version ever published (not + as a draft) by the Free Software Foundation. + + + ADDENDUM: How to use this License for your documents + + To use this License in a document you have written, include a copy of + the License in the document and put the following copyright and + license notices just after the title page: + + Copyright (c) YEAR YOUR NAME. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.1 + or any later version published by the Free Software Foundation; + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + + If you have no Invariant Sections, write "with no Invariant Sections" + instead of saying which ones are invariant. If you have no + Front-Cover Texts, write "no Front-Cover Texts" instead of + "Front-Cover Texts being LIST"; likewise for Back-Cover Texts. + + If your document contains nontrivial examples of program code, we + recommend releasing these examples in parallel under your choice of + free software license, such as the GNU General Public License, + to permit their use in free software. json: gfdl-1.1-invariants-or-later.json - yml: gfdl-1.1-invariants-or-later.yml + yaml: gfdl-1.1-invariants-or-later.yml html: gfdl-1.1-invariants-or-later.html - text: gfdl-1.1-invariants-or-later.LICENSE + license: gfdl-1.1-invariants-or-later.LICENSE - license_key: gfdl-1.1-no-invariants-only + category: Copyleft Limited spdx_license_key: GFDL-1.1-no-invariants-only other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, + Version 1.1; with no Invariant Sections, with no Front-Cover Texts, + and with no Back-Cover Texts. A copy of the license is included in + the section entitled "GNU Free Documentation License". + + + GNU Free Documentation License + Version 1.1, March 2000 + + Copyright (C) 2000 Free Software Foundation, Inc. + 51 Franklin St, 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. + + + 0. PREAMBLE + + The purpose of this License is to make a manual, textbook, or other + written document "free" in the sense of freedom: to assure everyone + the effective freedom to copy and redistribute it, with or without + modifying it, either commercially or noncommercially. Secondarily, + this License preserves for the author and publisher a way to get + credit for their work, while not being considered responsible for + modifications made by others. + + This License is a kind of "copyleft", which means that derivative + works of the document must themselves be free in the same sense. It + complements the GNU General Public License, which is a copyleft + license designed for free software. + + We have designed this License in order to use it for manuals for free + software, because free software needs free documentation: a free + program should come with manuals providing the same freedoms that the + software does. But this License is not limited to software manuals; + it can be used for any textual work, regardless of subject matter or + whether it is published as a printed book. We recommend this License + principally for works whose purpose is instruction or reference. + + + 1. APPLICABILITY AND DEFINITIONS + + This License applies to any manual or other work that contains a + notice placed by the copyright holder saying it can be distributed + under the terms of this License. The "Document", below, refers to any + such manual or work. Any member of the public is a licensee, and is + addressed as "you". + + A "Modified Version" of the Document means any work containing the + Document or a portion of it, either copied verbatim, or with + modifications and/or translated into another language. + + A "Secondary Section" is a named appendix or a front-matter section of + the Document that deals exclusively with the relationship of the + publishers or authors of the Document to the Document's overall subject + (or to related matters) and contains nothing that could fall directly + within that overall subject. (For example, if the Document is in part a + textbook of mathematics, a Secondary Section may not explain any + mathematics.) The relationship could be a matter of historical + connection with the subject or with related matters, or of legal, + commercial, philosophical, ethical or political position regarding + them. + + The "Invariant Sections" are certain Secondary Sections whose titles + are designated, as being those of Invariant Sections, in the notice + that says that the Document is released under this License. + + The "Cover Texts" are certain short passages of text that are listed, + as Front-Cover Texts or Back-Cover Texts, in the notice that says that + the Document is released under this License. + + A "Transparent" copy of the Document means a machine-readable copy, + represented in a format whose specification is available to the + general public, whose contents can be viewed and edited directly and + straightforwardly with generic text editors or (for images composed of + pixels) generic paint programs or (for drawings) some widely available + drawing editor, and that is suitable for input to text formatters or + for automatic translation to a variety of formats suitable for input + to text formatters. A copy made in an otherwise Transparent file + format whose markup has been designed to thwart or discourage + subsequent modification by readers is not Transparent. A copy that is + not "Transparent" is called "Opaque". + + Examples of suitable formats for Transparent copies include plain + ASCII without markup, Texinfo input format, LaTeX input format, SGML + or XML using a publicly available DTD, and standard-conforming simple + HTML designed for human modification. Opaque formats include + PostScript, PDF, proprietary formats that can be read and edited only + by proprietary word processors, SGML or XML for which the DTD and/or + processing tools are not generally available, and the + machine-generated HTML produced by some word processors for output + purposes only. + + The "Title Page" means, for a printed book, the title page itself, + plus such following pages as are needed to hold, legibly, the material + this License requires to appear in the title page. For works in + formats which do not have any title page as such, "Title Page" means + the text near the most prominent appearance of the work's title, + preceding the beginning of the body of the text. + + + 2. VERBATIM COPYING + + You may copy and distribute the Document in any medium, either + commercially or noncommercially, provided that this License, the + copyright notices, and the license notice saying this License applies + to the Document are reproduced in all copies, and that you add no other + conditions whatsoever to those of this License. You may not use + technical measures to obstruct or control the reading or further + copying of the copies you make or distribute. However, you may accept + compensation in exchange for copies. If you distribute a large enough + number of copies you must also follow the conditions in section 3. + + You may also lend copies, under the same conditions stated above, and + you may publicly display copies. + + + 3. COPYING IN QUANTITY + + If you publish printed copies of the Document numbering more than 100, + and the Document's license notice requires Cover Texts, you must enclose + the copies in covers that carry, clearly and legibly, all these Cover + Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on + the back cover. Both covers must also clearly and legibly identify + you as the publisher of these copies. The front cover must present + the full title with all words of the title equally prominent and + visible. You may add other material on the covers in addition. + Copying with changes limited to the covers, as long as they preserve + the title of the Document and satisfy these conditions, can be treated + as verbatim copying in other respects. + + If the required texts for either cover are too voluminous to fit + legibly, you should put the first ones listed (as many as fit + reasonably) on the actual cover, and continue the rest onto adjacent + pages. + + If you publish or distribute Opaque copies of the Document numbering + more than 100, you must either include a machine-readable Transparent + copy along with each Opaque copy, or state in or with each Opaque copy + a publicly-accessible computer-network location containing a complete + Transparent copy of the Document, free of added material, which the + general network-using public has access to download anonymously at no + charge using public-standard network protocols. If you use the latter + option, you must take reasonably prudent steps, when you begin + distribution of Opaque copies in quantity, to ensure that this + Transparent copy will remain thus accessible at the stated location + until at least one year after the last time you distribute an Opaque + copy (directly or through your agents or retailers) of that edition to + the public. + + It is requested, but not required, that you contact the authors of the + Document well before redistributing any large number of copies, to give + them a chance to provide you with an updated version of the Document. + + + 4. MODIFICATIONS + + You may copy and distribute a Modified Version of the Document under + the conditions of sections 2 and 3 above, provided that you release + the Modified Version under precisely this License, with the Modified + Version filling the role of the Document, thus licensing distribution + and modification of the Modified Version to whoever possesses a copy + of it. In addition, you must do these things in the Modified Version: + + A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission. + B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has less than five). + C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. + D. Preserve all the copyright notices of the Document. + E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. + F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below. + G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. + H. Include an unaltered copy of this License. + I. Preserve the section entitled "History", and its title, and add to + it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section entitled "History" in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence. + J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the "History" section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission. + K. In any section entitled "Acknowledgements" or "Dedications", + preserve the section's title, and preserve in the section all the + substance and tone of each of the contributor acknowledgements + and/or dedications given therein. + L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. + M. Delete any section entitled "Endorsements". Such a section + may not be included in the Modified Version. + N. Do not retitle any existing section as "Endorsements" + or to conflict in title with any Invariant Section. + + If the Modified Version includes new front-matter sections or + appendices that qualify as Secondary Sections and contain no material + copied from the Document, you may at your option designate some or all + of these sections as invariant. To do this, add their titles to the + list of Invariant Sections in the Modified Version's license notice. + These titles must be distinct from any other section titles. + + You may add a section entitled "Endorsements", provided it contains + nothing but endorsements of your Modified Version by various + parties--for example, statements of peer review or that the text has + been approved by an organization as the authoritative definition of a + standard. + + You may add a passage of up to five words as a Front-Cover Text, and a + passage of up to 25 words as a Back-Cover Text, to the end of the list + of Cover Texts in the Modified Version. Only one passage of + Front-Cover Text and one of Back-Cover Text may be added by (or + through arrangements made by) any one entity. If the Document already + includes a cover text for the same cover, previously added by you or + by arrangement made by the same entity you are acting on behalf of, + you may not add another; but you may replace the old one, on explicit + permission from the previous publisher that added the old one. + + The author(s) and publisher(s) of the Document do not by this License + give permission to use their names for publicity for or to assert or + imply endorsement of any Modified Version. + + + 5. COMBINING DOCUMENTS + + You may combine the Document with other documents released under this + License, under the terms defined in section 4 above for modified + versions, provided that you include in the combination all of the + Invariant Sections of all of the original documents, unmodified, and + list them all as Invariant Sections of your combined work in its + license notice. + + The combined work need only contain one copy of this License, and + multiple identical Invariant Sections may be replaced with a single + copy. If there are multiple Invariant Sections with the same name but + different contents, make the title of each such section unique by + adding at the end of it, in parentheses, the name of the original + author or publisher of that section if known, or else a unique number. + Make the same adjustment to the section titles in the list of + Invariant Sections in the license notice of the combined work. + + In the combination, you must combine any sections entitled "History" + in the various original documents, forming one section entitled + "History"; likewise combine any sections entitled "Acknowledgements", + and any sections entitled "Dedications". You must delete all sections + entitled "Endorsements." + + + 6. COLLECTIONS OF DOCUMENTS + + You may make a collection consisting of the Document and other documents + released under this License, and replace the individual copies of this + License in the various documents with a single copy that is included in + the collection, provided that you follow the rules of this License for + verbatim copying of each of the documents in all other respects. + + You may extract a single document from such a collection, and distribute + it individually under this License, provided you insert a copy of this + License into the extracted document, and follow this License in all + other respects regarding verbatim copying of that document. + + + 7. AGGREGATION WITH INDEPENDENT WORKS + + A compilation of the Document or its derivatives with other separate + and independent documents or works, in or on a volume of a storage or + distribution medium, does not as a whole count as a Modified Version + of the Document, provided no compilation copyright is claimed for the + compilation. Such a compilation is called an "aggregate", and this + License does not apply to the other self-contained works thus compiled + with the Document, on account of their being thus compiled, if they + are not themselves derivative works of the Document. + + If the Cover Text requirement of section 3 is applicable to these + copies of the Document, then if the Document is less than one quarter + of the entire aggregate, the Document's Cover Texts may be placed on + covers that surround only the Document within the aggregate. + Otherwise they must appear on covers around the whole aggregate. + + + 8. TRANSLATION + + Translation is considered a kind of modification, so you may + distribute translations of the Document under the terms of section 4. + Replacing Invariant Sections with translations requires special + permission from their copyright holders, but you may include + translations of some or all Invariant Sections in addition to the + original versions of these Invariant Sections. You may include a + translation of this License provided that you also include the + original English version of this License. In case of a disagreement + between the translation and the original English version of this + License, the original English version will prevail. + + + 9. TERMINATION + + You may not copy, modify, sublicense, or distribute the Document except + as expressly provided for under this License. Any other attempt to + copy, modify, sublicense or distribute the Document 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. + + + 10. FUTURE REVISIONS OF THIS LICENSE + + The Free Software Foundation may publish new, revised versions + of the GNU Free Documentation 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. See + http://www.gnu.org/copyleft/. + + Each version of the License is given a distinguishing version number. + If the Document specifies that a particular numbered version of this + License "or any later version" applies to it, you have the option of + following the terms and conditions either of that specified version or + of any later version that has been published (not as a draft) by the + Free Software Foundation. If the Document does not specify a version + number of this License, you may choose any version ever published (not + as a draft) by the Free Software Foundation. + + + ADDENDUM: How to use this License for your documents + + To use this License in a document you have written, include a copy of + the License in the document and put the following copyright and + license notices just after the title page: + + Copyright (c) YEAR YOUR NAME. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.1 + or any later version published by the Free Software Foundation; + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + + If you have no Invariant Sections, write "with no Invariant Sections" + instead of saying which ones are invariant. If you have no + Front-Cover Texts, write "no Front-Cover Texts" instead of + "Front-Cover Texts being LIST"; likewise for Back-Cover Texts. + + If your document contains nontrivial examples of program code, we + recommend releasing these examples in parallel under your choice of + free software license, such as the GNU General Public License, + to permit their use in free software. json: gfdl-1.1-no-invariants-only.json - yml: gfdl-1.1-no-invariants-only.yml + yaml: gfdl-1.1-no-invariants-only.yml html: gfdl-1.1-no-invariants-only.html - text: gfdl-1.1-no-invariants-only.LICENSE + license: gfdl-1.1-no-invariants-only.LICENSE - license_key: gfdl-1.1-no-invariants-or-later + category: Copyleft Limited spdx_license_key: GFDL-1.1-no-invariants-or-later other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, + Version 1.1 or any later version published by the Free Software + Foundation; with no Invariant Sections, with no Front-Cover + Texts, and with no Back-Cover Texts. A copy of the license is + included in the section entitled "GNU Free Documentation + License". + + + GNU Free Documentation License + Version 1.1, March 2000 + + Copyright (C) 2000 Free Software Foundation, Inc. + 51 Franklin St, 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. + + + 0. PREAMBLE + + The purpose of this License is to make a manual, textbook, or other + written document "free" in the sense of freedom: to assure everyone + the effective freedom to copy and redistribute it, with or without + modifying it, either commercially or noncommercially. Secondarily, + this License preserves for the author and publisher a way to get + credit for their work, while not being considered responsible for + modifications made by others. + + This License is a kind of "copyleft", which means that derivative + works of the document must themselves be free in the same sense. It + complements the GNU General Public License, which is a copyleft + license designed for free software. + + We have designed this License in order to use it for manuals for free + software, because free software needs free documentation: a free + program should come with manuals providing the same freedoms that the + software does. But this License is not limited to software manuals; + it can be used for any textual work, regardless of subject matter or + whether it is published as a printed book. We recommend this License + principally for works whose purpose is instruction or reference. + + + 1. APPLICABILITY AND DEFINITIONS + + This License applies to any manual or other work that contains a + notice placed by the copyright holder saying it can be distributed + under the terms of this License. The "Document", below, refers to any + such manual or work. Any member of the public is a licensee, and is + addressed as "you". + + A "Modified Version" of the Document means any work containing the + Document or a portion of it, either copied verbatim, or with + modifications and/or translated into another language. + + A "Secondary Section" is a named appendix or a front-matter section of + the Document that deals exclusively with the relationship of the + publishers or authors of the Document to the Document's overall subject + (or to related matters) and contains nothing that could fall directly + within that overall subject. (For example, if the Document is in part a + textbook of mathematics, a Secondary Section may not explain any + mathematics.) The relationship could be a matter of historical + connection with the subject or with related matters, or of legal, + commercial, philosophical, ethical or political position regarding + them. + + The "Invariant Sections" are certain Secondary Sections whose titles + are designated, as being those of Invariant Sections, in the notice + that says that the Document is released under this License. + + The "Cover Texts" are certain short passages of text that are listed, + as Front-Cover Texts or Back-Cover Texts, in the notice that says that + the Document is released under this License. + + A "Transparent" copy of the Document means a machine-readable copy, + represented in a format whose specification is available to the + general public, whose contents can be viewed and edited directly and + straightforwardly with generic text editors or (for images composed of + pixels) generic paint programs or (for drawings) some widely available + drawing editor, and that is suitable for input to text formatters or + for automatic translation to a variety of formats suitable for input + to text formatters. A copy made in an otherwise Transparent file + format whose markup has been designed to thwart or discourage + subsequent modification by readers is not Transparent. A copy that is + not "Transparent" is called "Opaque". + + Examples of suitable formats for Transparent copies include plain + ASCII without markup, Texinfo input format, LaTeX input format, SGML + or XML using a publicly available DTD, and standard-conforming simple + HTML designed for human modification. Opaque formats include + PostScript, PDF, proprietary formats that can be read and edited only + by proprietary word processors, SGML or XML for which the DTD and/or + processing tools are not generally available, and the + machine-generated HTML produced by some word processors for output + purposes only. + + The "Title Page" means, for a printed book, the title page itself, + plus such following pages as are needed to hold, legibly, the material + this License requires to appear in the title page. For works in + formats which do not have any title page as such, "Title Page" means + the text near the most prominent appearance of the work's title, + preceding the beginning of the body of the text. + + + 2. VERBATIM COPYING + + You may copy and distribute the Document in any medium, either + commercially or noncommercially, provided that this License, the + copyright notices, and the license notice saying this License applies + to the Document are reproduced in all copies, and that you add no other + conditions whatsoever to those of this License. You may not use + technical measures to obstruct or control the reading or further + copying of the copies you make or distribute. However, you may accept + compensation in exchange for copies. If you distribute a large enough + number of copies you must also follow the conditions in section 3. + + You may also lend copies, under the same conditions stated above, and + you may publicly display copies. + + + 3. COPYING IN QUANTITY + + If you publish printed copies of the Document numbering more than 100, + and the Document's license notice requires Cover Texts, you must enclose + the copies in covers that carry, clearly and legibly, all these Cover + Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on + the back cover. Both covers must also clearly and legibly identify + you as the publisher of these copies. The front cover must present + the full title with all words of the title equally prominent and + visible. You may add other material on the covers in addition. + Copying with changes limited to the covers, as long as they preserve + the title of the Document and satisfy these conditions, can be treated + as verbatim copying in other respects. + + If the required texts for either cover are too voluminous to fit + legibly, you should put the first ones listed (as many as fit + reasonably) on the actual cover, and continue the rest onto adjacent + pages. + + If you publish or distribute Opaque copies of the Document numbering + more than 100, you must either include a machine-readable Transparent + copy along with each Opaque copy, or state in or with each Opaque copy + a publicly-accessible computer-network location containing a complete + Transparent copy of the Document, free of added material, which the + general network-using public has access to download anonymously at no + charge using public-standard network protocols. If you use the latter + option, you must take reasonably prudent steps, when you begin + distribution of Opaque copies in quantity, to ensure that this + Transparent copy will remain thus accessible at the stated location + until at least one year after the last time you distribute an Opaque + copy (directly or through your agents or retailers) of that edition to + the public. + + It is requested, but not required, that you contact the authors of the + Document well before redistributing any large number of copies, to give + them a chance to provide you with an updated version of the Document. + + + 4. MODIFICATIONS + + You may copy and distribute a Modified Version of the Document under + the conditions of sections 2 and 3 above, provided that you release + the Modified Version under precisely this License, with the Modified + Version filling the role of the Document, thus licensing distribution + and modification of the Modified Version to whoever possesses a copy + of it. In addition, you must do these things in the Modified Version: + + A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission. + B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has less than five). + C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. + D. Preserve all the copyright notices of the Document. + E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. + F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below. + G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. + H. Include an unaltered copy of this License. + I. Preserve the section entitled "History", and its title, and add to + it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section entitled "History" in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence. + J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the "History" section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission. + K. In any section entitled "Acknowledgements" or "Dedications", + preserve the section's title, and preserve in the section all the + substance and tone of each of the contributor acknowledgements + and/or dedications given therein. + L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. + M. Delete any section entitled "Endorsements". Such a section + may not be included in the Modified Version. + N. Do not retitle any existing section as "Endorsements" + or to conflict in title with any Invariant Section. + + If the Modified Version includes new front-matter sections or + appendices that qualify as Secondary Sections and contain no material + copied from the Document, you may at your option designate some or all + of these sections as invariant. To do this, add their titles to the + list of Invariant Sections in the Modified Version's license notice. + These titles must be distinct from any other section titles. + + You may add a section entitled "Endorsements", provided it contains + nothing but endorsements of your Modified Version by various + parties--for example, statements of peer review or that the text has + been approved by an organization as the authoritative definition of a + standard. + + You may add a passage of up to five words as a Front-Cover Text, and a + passage of up to 25 words as a Back-Cover Text, to the end of the list + of Cover Texts in the Modified Version. Only one passage of + Front-Cover Text and one of Back-Cover Text may be added by (or + through arrangements made by) any one entity. If the Document already + includes a cover text for the same cover, previously added by you or + by arrangement made by the same entity you are acting on behalf of, + you may not add another; but you may replace the old one, on explicit + permission from the previous publisher that added the old one. + + The author(s) and publisher(s) of the Document do not by this License + give permission to use their names for publicity for or to assert or + imply endorsement of any Modified Version. + + + 5. COMBINING DOCUMENTS + + You may combine the Document with other documents released under this + License, under the terms defined in section 4 above for modified + versions, provided that you include in the combination all of the + Invariant Sections of all of the original documents, unmodified, and + list them all as Invariant Sections of your combined work in its + license notice. + + The combined work need only contain one copy of this License, and + multiple identical Invariant Sections may be replaced with a single + copy. If there are multiple Invariant Sections with the same name but + different contents, make the title of each such section unique by + adding at the end of it, in parentheses, the name of the original + author or publisher of that section if known, or else a unique number. + Make the same adjustment to the section titles in the list of + Invariant Sections in the license notice of the combined work. + + In the combination, you must combine any sections entitled "History" + in the various original documents, forming one section entitled + "History"; likewise combine any sections entitled "Acknowledgements", + and any sections entitled "Dedications". You must delete all sections + entitled "Endorsements." + + + 6. COLLECTIONS OF DOCUMENTS + + You may make a collection consisting of the Document and other documents + released under this License, and replace the individual copies of this + License in the various documents with a single copy that is included in + the collection, provided that you follow the rules of this License for + verbatim copying of each of the documents in all other respects. + + You may extract a single document from such a collection, and distribute + it individually under this License, provided you insert a copy of this + License into the extracted document, and follow this License in all + other respects regarding verbatim copying of that document. + + + 7. AGGREGATION WITH INDEPENDENT WORKS + + A compilation of the Document or its derivatives with other separate + and independent documents or works, in or on a volume of a storage or + distribution medium, does not as a whole count as a Modified Version + of the Document, provided no compilation copyright is claimed for the + compilation. Such a compilation is called an "aggregate", and this + License does not apply to the other self-contained works thus compiled + with the Document, on account of their being thus compiled, if they + are not themselves derivative works of the Document. + + If the Cover Text requirement of section 3 is applicable to these + copies of the Document, then if the Document is less than one quarter + of the entire aggregate, the Document's Cover Texts may be placed on + covers that surround only the Document within the aggregate. + Otherwise they must appear on covers around the whole aggregate. + + + 8. TRANSLATION + + Translation is considered a kind of modification, so you may + distribute translations of the Document under the terms of section 4. + Replacing Invariant Sections with translations requires special + permission from their copyright holders, but you may include + translations of some or all Invariant Sections in addition to the + original versions of these Invariant Sections. You may include a + translation of this License provided that you also include the + original English version of this License. In case of a disagreement + between the translation and the original English version of this + License, the original English version will prevail. + + + 9. TERMINATION + + You may not copy, modify, sublicense, or distribute the Document except + as expressly provided for under this License. Any other attempt to + copy, modify, sublicense or distribute the Document 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. + + + 10. FUTURE REVISIONS OF THIS LICENSE + + The Free Software Foundation may publish new, revised versions + of the GNU Free Documentation 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. See + http://www.gnu.org/copyleft/. + + Each version of the License is given a distinguishing version number. + If the Document specifies that a particular numbered version of this + License "or any later version" applies to it, you have the option of + following the terms and conditions either of that specified version or + of any later version that has been published (not as a draft) by the + Free Software Foundation. If the Document does not specify a version + number of this License, you may choose any version ever published (not + as a draft) by the Free Software Foundation. + + + ADDENDUM: How to use this License for your documents + + To use this License in a document you have written, include a copy of + the License in the document and put the following copyright and + license notices just after the title page: + + Copyright (c) YEAR YOUR NAME. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.1 + or any later version published by the Free Software Foundation; + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + + If you have no Invariant Sections, write "with no Invariant Sections" + instead of saying which ones are invariant. If you have no + Front-Cover Texts, write "no Front-Cover Texts" instead of + "Front-Cover Texts being LIST"; likewise for Back-Cover Texts. + + If your document contains nontrivial examples of program code, we + recommend releasing these examples in parallel under your choice of + free software license, such as the GNU General Public License, + to permit their use in free software. json: gfdl-1.1-no-invariants-or-later.json - yml: gfdl-1.1-no-invariants-or-later.yml + yaml: gfdl-1.1-no-invariants-or-later.yml html: gfdl-1.1-no-invariants-or-later.html - text: gfdl-1.1-no-invariants-or-later.LICENSE + license: gfdl-1.1-no-invariants-or-later.LICENSE - license_key: gfdl-1.1-plus + category: Copyleft Limited spdx_license_key: GFDL-1.1-or-later other_spdx_license_keys: - GFDL-1.1+ is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.1 + or any later version published by the Free Software Foundation. + + + GNU Free Documentation License + Version 1.1, March 2000 + + Copyright (C) 2000 Free Software Foundation, Inc. + 51 Franklin St, 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. + + + 0. PREAMBLE + + The purpose of this License is to make a manual, textbook, or other + written document "free" in the sense of freedom: to assure everyone + the effective freedom to copy and redistribute it, with or without + modifying it, either commercially or noncommercially. Secondarily, + this License preserves for the author and publisher a way to get + credit for their work, while not being considered responsible for + modifications made by others. + + This License is a kind of "copyleft", which means that derivative + works of the document must themselves be free in the same sense. It + complements the GNU General Public License, which is a copyleft + license designed for free software. + + We have designed this License in order to use it for manuals for free + software, because free software needs free documentation: a free + program should come with manuals providing the same freedoms that the + software does. But this License is not limited to software manuals; + it can be used for any textual work, regardless of subject matter or + whether it is published as a printed book. We recommend this License + principally for works whose purpose is instruction or reference. + + + 1. APPLICABILITY AND DEFINITIONS + + This License applies to any manual or other work that contains a + notice placed by the copyright holder saying it can be distributed + under the terms of this License. The "Document", below, refers to any + such manual or work. Any member of the public is a licensee, and is + addressed as "you". + + A "Modified Version" of the Document means any work containing the + Document or a portion of it, either copied verbatim, or with + modifications and/or translated into another language. + + A "Secondary Section" is a named appendix or a front-matter section of + the Document that deals exclusively with the relationship of the + publishers or authors of the Document to the Document's overall subject + (or to related matters) and contains nothing that could fall directly + within that overall subject. (For example, if the Document is in part a + textbook of mathematics, a Secondary Section may not explain any + mathematics.) The relationship could be a matter of historical + connection with the subject or with related matters, or of legal, + commercial, philosophical, ethical or political position regarding + them. + + The "Invariant Sections" are certain Secondary Sections whose titles + are designated, as being those of Invariant Sections, in the notice + that says that the Document is released under this License. + + The "Cover Texts" are certain short passages of text that are listed, + as Front-Cover Texts or Back-Cover Texts, in the notice that says that + the Document is released under this License. + + A "Transparent" copy of the Document means a machine-readable copy, + represented in a format whose specification is available to the + general public, whose contents can be viewed and edited directly and + straightforwardly with generic text editors or (for images composed of + pixels) generic paint programs or (for drawings) some widely available + drawing editor, and that is suitable for input to text formatters or + for automatic translation to a variety of formats suitable for input + to text formatters. A copy made in an otherwise Transparent file + format whose markup has been designed to thwart or discourage + subsequent modification by readers is not Transparent. A copy that is + not "Transparent" is called "Opaque". + + Examples of suitable formats for Transparent copies include plain + ASCII without markup, Texinfo input format, LaTeX input format, SGML + or XML using a publicly available DTD, and standard-conforming simple + HTML designed for human modification. Opaque formats include + PostScript, PDF, proprietary formats that can be read and edited only + by proprietary word processors, SGML or XML for which the DTD and/or + processing tools are not generally available, and the + machine-generated HTML produced by some word processors for output + purposes only. + + The "Title Page" means, for a printed book, the title page itself, + plus such following pages as are needed to hold, legibly, the material + this License requires to appear in the title page. For works in + formats which do not have any title page as such, "Title Page" means + the text near the most prominent appearance of the work's title, + preceding the beginning of the body of the text. + + + 2. VERBATIM COPYING + + You may copy and distribute the Document in any medium, either + commercially or noncommercially, provided that this License, the + copyright notices, and the license notice saying this License applies + to the Document are reproduced in all copies, and that you add no other + conditions whatsoever to those of this License. You may not use + technical measures to obstruct or control the reading or further + copying of the copies you make or distribute. However, you may accept + compensation in exchange for copies. If you distribute a large enough + number of copies you must also follow the conditions in section 3. + + You may also lend copies, under the same conditions stated above, and + you may publicly display copies. + + + 3. COPYING IN QUANTITY + + If you publish printed copies of the Document numbering more than 100, + and the Document's license notice requires Cover Texts, you must enclose + the copies in covers that carry, clearly and legibly, all these Cover + Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on + the back cover. Both covers must also clearly and legibly identify + you as the publisher of these copies. The front cover must present + the full title with all words of the title equally prominent and + visible. You may add other material on the covers in addition. + Copying with changes limited to the covers, as long as they preserve + the title of the Document and satisfy these conditions, can be treated + as verbatim copying in other respects. + + If the required texts for either cover are too voluminous to fit + legibly, you should put the first ones listed (as many as fit + reasonably) on the actual cover, and continue the rest onto adjacent + pages. + + If you publish or distribute Opaque copies of the Document numbering + more than 100, you must either include a machine-readable Transparent + copy along with each Opaque copy, or state in or with each Opaque copy + a publicly-accessible computer-network location containing a complete + Transparent copy of the Document, free of added material, which the + general network-using public has access to download anonymously at no + charge using public-standard network protocols. If you use the latter + option, you must take reasonably prudent steps, when you begin + distribution of Opaque copies in quantity, to ensure that this + Transparent copy will remain thus accessible at the stated location + until at least one year after the last time you distribute an Opaque + copy (directly or through your agents or retailers) of that edition to + the public. + + It is requested, but not required, that you contact the authors of the + Document well before redistributing any large number of copies, to give + them a chance to provide you with an updated version of the Document. + + + 4. MODIFICATIONS + + You may copy and distribute a Modified Version of the Document under + the conditions of sections 2 and 3 above, provided that you release + the Modified Version under precisely this License, with the Modified + Version filling the role of the Document, thus licensing distribution + and modification of the Modified Version to whoever possesses a copy + of it. In addition, you must do these things in the Modified Version: + + A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission. + B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has less than five). + C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. + D. Preserve all the copyright notices of the Document. + E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. + F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below. + G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. + H. Include an unaltered copy of this License. + I. Preserve the section entitled "History", and its title, and add to + it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section entitled "History" in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence. + J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the "History" section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission. + K. In any section entitled "Acknowledgements" or "Dedications", + preserve the section's title, and preserve in the section all the + substance and tone of each of the contributor acknowledgements + and/or dedications given therein. + L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. + M. Delete any section entitled "Endorsements". Such a section + may not be included in the Modified Version. + N. Do not retitle any existing section as "Endorsements" + or to conflict in title with any Invariant Section. + + If the Modified Version includes new front-matter sections or + appendices that qualify as Secondary Sections and contain no material + copied from the Document, you may at your option designate some or all + of these sections as invariant. To do this, add their titles to the + list of Invariant Sections in the Modified Version's license notice. + These titles must be distinct from any other section titles. + + You may add a section entitled "Endorsements", provided it contains + nothing but endorsements of your Modified Version by various + parties--for example, statements of peer review or that the text has + been approved by an organization as the authoritative definition of a + standard. + + You may add a passage of up to five words as a Front-Cover Text, and a + passage of up to 25 words as a Back-Cover Text, to the end of the list + of Cover Texts in the Modified Version. Only one passage of + Front-Cover Text and one of Back-Cover Text may be added by (or + through arrangements made by) any one entity. If the Document already + includes a cover text for the same cover, previously added by you or + by arrangement made by the same entity you are acting on behalf of, + you may not add another; but you may replace the old one, on explicit + permission from the previous publisher that added the old one. + + The author(s) and publisher(s) of the Document do not by this License + give permission to use their names for publicity for or to assert or + imply endorsement of any Modified Version. + + + 5. COMBINING DOCUMENTS + + You may combine the Document with other documents released under this + License, under the terms defined in section 4 above for modified + versions, provided that you include in the combination all of the + Invariant Sections of all of the original documents, unmodified, and + list them all as Invariant Sections of your combined work in its + license notice. + + The combined work need only contain one copy of this License, and + multiple identical Invariant Sections may be replaced with a single + copy. If there are multiple Invariant Sections with the same name but + different contents, make the title of each such section unique by + adding at the end of it, in parentheses, the name of the original + author or publisher of that section if known, or else a unique number. + Make the same adjustment to the section titles in the list of + Invariant Sections in the license notice of the combined work. + + In the combination, you must combine any sections entitled "History" + in the various original documents, forming one section entitled + "History"; likewise combine any sections entitled "Acknowledgements", + and any sections entitled "Dedications". You must delete all sections + entitled "Endorsements." + + + 6. COLLECTIONS OF DOCUMENTS + + You may make a collection consisting of the Document and other documents + released under this License, and replace the individual copies of this + License in the various documents with a single copy that is included in + the collection, provided that you follow the rules of this License for + verbatim copying of each of the documents in all other respects. + + You may extract a single document from such a collection, and distribute + it individually under this License, provided you insert a copy of this + License into the extracted document, and follow this License in all + other respects regarding verbatim copying of that document. + + + 7. AGGREGATION WITH INDEPENDENT WORKS + + A compilation of the Document or its derivatives with other separate + and independent documents or works, in or on a volume of a storage or + distribution medium, does not as a whole count as a Modified Version + of the Document, provided no compilation copyright is claimed for the + compilation. Such a compilation is called an "aggregate", and this + License does not apply to the other self-contained works thus compiled + with the Document, on account of their being thus compiled, if they + are not themselves derivative works of the Document. + + If the Cover Text requirement of section 3 is applicable to these + copies of the Document, then if the Document is less than one quarter + of the entire aggregate, the Document's Cover Texts may be placed on + covers that surround only the Document within the aggregate. + Otherwise they must appear on covers around the whole aggregate. + + + 8. TRANSLATION + + Translation is considered a kind of modification, so you may + distribute translations of the Document under the terms of section 4. + Replacing Invariant Sections with translations requires special + permission from their copyright holders, but you may include + translations of some or all Invariant Sections in addition to the + original versions of these Invariant Sections. You may include a + translation of this License provided that you also include the + original English version of this License. In case of a disagreement + between the translation and the original English version of this + License, the original English version will prevail. + + + 9. TERMINATION + + You may not copy, modify, sublicense, or distribute the Document except + as expressly provided for under this License. Any other attempt to + copy, modify, sublicense or distribute the Document 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. + + + 10. FUTURE REVISIONS OF THIS LICENSE + + The Free Software Foundation may publish new, revised versions + of the GNU Free Documentation 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. See + http://www.gnu.org/copyleft/. + + Each version of the License is given a distinguishing version number. + If the Document specifies that a particular numbered version of this + License "or any later version" applies to it, you have the option of + following the terms and conditions either of that specified version or + of any later version that has been published (not as a draft) by the + Free Software Foundation. If the Document does not specify a version + number of this License, you may choose any version ever published (not + as a draft) by the Free Software Foundation. + + + ADDENDUM: How to use this License for your documents + + To use this License in a document you have written, include a copy of + the License in the document and put the following copyright and + license notices just after the title page: + + Copyright (c) YEAR YOUR NAME. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.1 + or any later version published by the Free Software Foundation; + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + + If you have no Invariant Sections, write "with no Invariant Sections" + instead of saying which ones are invariant. If you have no + Front-Cover Texts, write "no Front-Cover Texts" instead of + "Front-Cover Texts being LIST"; likewise for Back-Cover Texts. + + If your document contains nontrivial examples of program code, we + recommend releasing these examples in parallel under your choice of + free software license, such as the GNU General Public License, + to permit their use in free software. json: gfdl-1.1-plus.json - yml: gfdl-1.1-plus.yml + yaml: gfdl-1.1-plus.yml html: gfdl-1.1-plus.html - text: gfdl-1.1-plus.LICENSE + license: gfdl-1.1-plus.LICENSE - license_key: gfdl-1.2 + category: Copyleft Limited spdx_license_key: GFDL-1.2-only other_spdx_license_keys: - GFDL-1.2 is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + GNU Free Documentation License + Version 1.2, November 2002 + + + Copyright (C) 2000,2001,2002 Free Software Foundation, Inc. + 51 Franklin St, 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. + + + 0. PREAMBLE + + The purpose of this License is to make a manual, textbook, or other + functional and useful document "free" in the sense of freedom: to + assure everyone the effective freedom to copy and redistribute it, + with or without modifying it, either commercially or noncommercially. + Secondarily, this License preserves for the author and publisher a way + to get credit for their work, while not being considered responsible + for modifications made by others. + + This License is a kind of "copyleft", which means that derivative + works of the document must themselves be free in the same sense. It + complements the GNU General Public License, which is a copyleft + license designed for free software. + + We have designed this License in order to use it for manuals for free + software, because free software needs free documentation: a free + program should come with manuals providing the same freedoms that the + software does. But this License is not limited to software manuals; + it can be used for any textual work, regardless of subject matter or + whether it is published as a printed book. We recommend this License + principally for works whose purpose is instruction or reference. + + + 1. APPLICABILITY AND DEFINITIONS + + This License applies to any manual or other work, in any medium, that + contains a notice placed by the copyright holder saying it can be + distributed under the terms of this License. Such a notice grants a + world-wide, royalty-free license, unlimited in duration, to use that + work under the conditions stated herein. The "Document", below, + refers to any such manual or work. Any member of the public is a + licensee, and is addressed as "you". You accept the license if you + copy, modify or distribute the work in a way requiring permission + under copyright law. + + A "Modified Version" of the Document means any work containing the + Document or a portion of it, either copied verbatim, or with + modifications and/or translated into another language. + + A "Secondary Section" is a named appendix or a front-matter section of + the Document that deals exclusively with the relationship of the + publishers or authors of the Document to the Document's overall subject + (or to related matters) and contains nothing that could fall directly + within that overall subject. (Thus, if the Document is in part a + textbook of mathematics, a Secondary Section may not explain any + mathematics.) The relationship could be a matter of historical + connection with the subject or with related matters, or of legal, + commercial, philosophical, ethical or political position regarding + them. + + The "Invariant Sections" are certain Secondary Sections whose titles + are designated, as being those of Invariant Sections, in the notice + that says that the Document is released under this License. If a + section does not fit the above definition of Secondary then it is not + allowed to be designated as Invariant. The Document may contain zero + Invariant Sections. If the Document does not identify any Invariant + Sections then there are none. + + The "Cover Texts" are certain short passages of text that are listed, + as Front-Cover Texts or Back-Cover Texts, in the notice that says that + the Document is released under this License. A Front-Cover Text may + be at most 5 words, and a Back-Cover Text may be at most 25 words. + + A "Transparent" copy of the Document means a machine-readable copy, + represented in a format whose specification is available to the + general public, that is suitable for revising the document + straightforwardly with generic text editors or (for images composed of + pixels) generic paint programs or (for drawings) some widely available + drawing editor, and that is suitable for input to text formatters or + for automatic translation to a variety of formats suitable for input + to text formatters. A copy made in an otherwise Transparent file + format whose markup, or absence of markup, has been arranged to thwart + or discourage subsequent modification by readers is not Transparent. + An image format is not Transparent if used for any substantial amount + of text. A copy that is not "Transparent" is called "Opaque". + + Examples of suitable formats for Transparent copies include plain + ASCII without markup, Texinfo input format, LaTeX input format, SGML + or XML using a publicly available DTD, and standard-conforming simple + HTML, PostScript or PDF designed for human modification. Examples of + transparent image formats include PNG, XCF and JPG. Opaque formats + include proprietary formats that can be read and edited only by + proprietary word processors, SGML or XML for which the DTD and/or + processing tools are not generally available, and the + machine-generated HTML, PostScript or PDF produced by some word + processors for output purposes only. + + The "Title Page" means, for a printed book, the title page itself, + plus such following pages as are needed to hold, legibly, the material + this License requires to appear in the title page. For works in + formats which do not have any title page as such, "Title Page" means + the text near the most prominent appearance of the work's title, + preceding the beginning of the body of the text. + + A section "Entitled XYZ" means a named subunit of the Document whose + title either is precisely XYZ or contains XYZ in parentheses following + text that translates XYZ in another language. (Here XYZ stands for a + specific section name mentioned below, such as "Acknowledgements", + "Dedications", "Endorsements", or "History".) To "Preserve the Title" + of such a section when you modify the Document means that it remains a + section "Entitled XYZ" according to this definition. + + The Document may include Warranty Disclaimers next to the notice which + states that this License applies to the Document. These Warranty + Disclaimers are considered to be included by reference in this + License, but only as regards disclaiming warranties: any other + implication that these Warranty Disclaimers may have is void and has + no effect on the meaning of this License. + + + 2. VERBATIM COPYING + + You may copy and distribute the Document in any medium, either + commercially or noncommercially, provided that this License, the + copyright notices, and the license notice saying this License applies + to the Document are reproduced in all copies, and that you add no other + conditions whatsoever to those of this License. You may not use + technical measures to obstruct or control the reading or further + copying of the copies you make or distribute. However, you may accept + compensation in exchange for copies. If you distribute a large enough + number of copies you must also follow the conditions in section 3. + + You may also lend copies, under the same conditions stated above, and + you may publicly display copies. + + + 3. COPYING IN QUANTITY + + If you publish printed copies (or copies in media that commonly have + printed covers) of the Document, numbering more than 100, and the + Document's license notice requires Cover Texts, you must enclose the + copies in covers that carry, clearly and legibly, all these Cover + Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on + the back cover. Both covers must also clearly and legibly identify + you as the publisher of these copies. The front cover must present + the full title with all words of the title equally prominent and + visible. You may add other material on the covers in addition. + Copying with changes limited to the covers, as long as they preserve + the title of the Document and satisfy these conditions, can be treated + as verbatim copying in other respects. + + If the required texts for either cover are too voluminous to fit + legibly, you should put the first ones listed (as many as fit + reasonably) on the actual cover, and continue the rest onto adjacent + pages. + + If you publish or distribute Opaque copies of the Document numbering + more than 100, you must either include a machine-readable Transparent + copy along with each Opaque copy, or state in or with each Opaque copy + a computer-network location from which the general network-using + public has access to download using public-standard network protocols + a complete Transparent copy of the Document, free of added material. + If you use the latter option, you must take reasonably prudent steps, + when you begin distribution of Opaque copies in quantity, to ensure + that this Transparent copy will remain thus accessible at the stated + location until at least one year after the last time you distribute an + Opaque copy (directly or through your agents or retailers) of that + edition to the public. + + It is requested, but not required, that you contact the authors of the + Document well before redistributing any large number of copies, to give + them a chance to provide you with an updated version of the Document. + + + 4. MODIFICATIONS + + You may copy and distribute a Modified Version of the Document under + the conditions of sections 2 and 3 above, provided that you release + the Modified Version under precisely this License, with the Modified + Version filling the role of the Document, thus licensing distribution + and modification of the Modified Version to whoever possesses a copy + of it. In addition, you must do these things in the Modified Version: + + A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission. + B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has fewer than five), + unless they release you from this requirement. + C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. + D. Preserve all the copyright notices of the Document. + E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. + F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below. + G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. + H. Include an unaltered copy of this License. + I. Preserve the section Entitled "History", Preserve its Title, and add + to it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section Entitled "History" in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence. + J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the "History" section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission. + K. For any section Entitled "Acknowledgements" or "Dedications", + Preserve the Title of the section, and preserve in the section all + the substance and tone of each of the contributor acknowledgements + and/or dedications given therein. + L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. + M. Delete any section Entitled "Endorsements". Such a section + may not be included in the Modified Version. + N. Do not retitle any existing section to be Entitled "Endorsements" + or to conflict in title with any Invariant Section. + O. Preserve any Warranty Disclaimers. + + If the Modified Version includes new front-matter sections or + appendices that qualify as Secondary Sections and contain no material + copied from the Document, you may at your option designate some or all + of these sections as invariant. To do this, add their titles to the + list of Invariant Sections in the Modified Version's license notice. + These titles must be distinct from any other section titles. + + You may add a section Entitled "Endorsements", provided it contains + nothing but endorsements of your Modified Version by various + parties--for example, statements of peer review or that the text has + been approved by an organization as the authoritative definition of a + standard. + + You may add a passage of up to five words as a Front-Cover Text, and a + passage of up to 25 words as a Back-Cover Text, to the end of the list + of Cover Texts in the Modified Version. Only one passage of + Front-Cover Text and one of Back-Cover Text may be added by (or + through arrangements made by) any one entity. If the Document already + includes a cover text for the same cover, previously added by you or + by arrangement made by the same entity you are acting on behalf of, + you may not add another; but you may replace the old one, on explicit + permission from the previous publisher that added the old one. + + The author(s) and publisher(s) of the Document do not by this License + give permission to use their names for publicity for or to assert or + imply endorsement of any Modified Version. + + + 5. COMBINING DOCUMENTS + + You may combine the Document with other documents released under this + License, under the terms defined in section 4 above for modified + versions, provided that you include in the combination all of the + Invariant Sections of all of the original documents, unmodified, and + list them all as Invariant Sections of your combined work in its + license notice, and that you preserve all their Warranty Disclaimers. + + The combined work need only contain one copy of this License, and + multiple identical Invariant Sections may be replaced with a single + copy. If there are multiple Invariant Sections with the same name but + different contents, make the title of each such section unique by + adding at the end of it, in parentheses, the name of the original + author or publisher of that section if known, or else a unique number. + Make the same adjustment to the section titles in the list of + Invariant Sections in the license notice of the combined work. + + In the combination, you must combine any sections Entitled "History" + in the various original documents, forming one section Entitled + "History"; likewise combine any sections Entitled "Acknowledgements", + and any sections Entitled "Dedications". You must delete all sections + Entitled "Endorsements". + + + 6. COLLECTIONS OF DOCUMENTS + + You may make a collection consisting of the Document and other documents + released under this License, and replace the individual copies of this + License in the various documents with a single copy that is included in + the collection, provided that you follow the rules of this License for + verbatim copying of each of the documents in all other respects. + + You may extract a single document from such a collection, and distribute + it individually under this License, provided you insert a copy of this + License into the extracted document, and follow this License in all + other respects regarding verbatim copying of that document. + + + 7. AGGREGATION WITH INDEPENDENT WORKS + + A compilation of the Document or its derivatives with other separate + and independent documents or works, in or on a volume of a storage or + distribution medium, is called an "aggregate" if the copyright + resulting from the compilation is not used to limit the legal rights + of the compilation's users beyond what the individual works permit. + When the Document is included in an aggregate, this License does not + apply to the other works in the aggregate which are not themselves + derivative works of the Document. + + If the Cover Text requirement of section 3 is applicable to these + copies of the Document, then if the Document is less than one half of + the entire aggregate, the Document's Cover Texts may be placed on + covers that bracket the Document within the aggregate, or the + electronic equivalent of covers if the Document is in electronic form. + Otherwise they must appear on printed covers that bracket the whole + aggregate. + + + 8. TRANSLATION + + Translation is considered a kind of modification, so you may + distribute translations of the Document under the terms of section 4. + Replacing Invariant Sections with translations requires special + permission from their copyright holders, but you may include + translations of some or all Invariant Sections in addition to the + original versions of these Invariant Sections. You may include a + translation of this License, and all the license notices in the + Document, and any Warranty Disclaimers, provided that you also include + the original English version of this License and the original versions + of those notices and disclaimers. In case of a disagreement between + the translation and the original version of this License or a notice + or disclaimer, the original version will prevail. + + If a section in the Document is Entitled "Acknowledgements", + "Dedications", or "History", the requirement (section 4) to Preserve + its Title (section 1) will typically require changing the actual + title. + + + 9. TERMINATION + + You may not copy, modify, sublicense, or distribute the Document except + as expressly provided for under this License. Any other attempt to + copy, modify, sublicense or distribute the Document 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. + + + 10. FUTURE REVISIONS OF THIS LICENSE + + The Free Software Foundation may publish new, revised versions + of the GNU Free Documentation 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. See + http://www.gnu.org/copyleft/. + + Each version of the License is given a distinguishing version number. + If the Document specifies that a particular numbered version of this + License "or any later version" applies to it, you have the option of + following the terms and conditions either of that specified version or + of any later version that has been published (not as a draft) by the + Free Software Foundation. If the Document does not specify a version + number of this License, you may choose any version ever published (not + as a draft) by the Free Software Foundation. + + + ADDENDUM: How to use this License for your documents + + To use this License in a document you have written, include a copy of + the License in the document and put the following copyright and + license notices just after the title page: + + Copyright (c) YEAR YOUR NAME. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.2 + or any later version published by the Free Software Foundation; + with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + + If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, + replace the "with...Texts." line with this: + + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + + If you have Invariant Sections without Cover Texts, or some other + combination of the three, merge those two alternatives to suit the + situation. + + If your document contains nontrivial examples of program code, we + recommend releasing these examples in parallel under your choice of + free software license, such as the GNU General Public License, + to permit their use in free software. json: gfdl-1.2.json - yml: gfdl-1.2.yml + yaml: gfdl-1.2.yml html: gfdl-1.2.html - text: gfdl-1.2.LICENSE + license: gfdl-1.2.LICENSE - license_key: gfdl-1.2-invariants-only + category: Copyleft Limited spdx_license_key: GFDL-1.2-invariants-only other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Permission is granted to copy, distribute + and/or modify this document under the terms of the GNU Free Documentation + License, Version 1.2; with the Invariant Sections being LIST THEIR TITLES , + with the Front-Cover Texts being LIST , and with the Back-Cover Texts being + LIST . A copy of the license is included in the section entitled "GNU Free + Documentation License". + + GNU Free Documentation License + Version 1.2, November 2002 + + + Copyright (C) 2000,2001,2002 Free Software Foundation, Inc. + 51 Franklin St, 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. + + + 0. PREAMBLE + + The purpose of this License is to make a manual, textbook, or other + functional and useful document "free" in the sense of freedom: to + assure everyone the effective freedom to copy and redistribute it, + with or without modifying it, either commercially or noncommercially. + Secondarily, this License preserves for the author and publisher a way + to get credit for their work, while not being considered responsible + for modifications made by others. + + This License is a kind of "copyleft", which means that derivative + works of the document must themselves be free in the same sense. It + complements the GNU General Public License, which is a copyleft + license designed for free software. + + We have designed this License in order to use it for manuals for free + software, because free software needs free documentation: a free + program should come with manuals providing the same freedoms that the + software does. But this License is not limited to software manuals; + it can be used for any textual work, regardless of subject matter or + whether it is published as a printed book. We recommend this License + principally for works whose purpose is instruction or reference. + + + 1. APPLICABILITY AND DEFINITIONS + + This License applies to any manual or other work, in any medium, that + contains a notice placed by the copyright holder saying it can be + distributed under the terms of this License. Such a notice grants a + world-wide, royalty-free license, unlimited in duration, to use that + work under the conditions stated herein. The "Document", below, + refers to any such manual or work. Any member of the public is a + licensee, and is addressed as "you". You accept the license if you + copy, modify or distribute the work in a way requiring permission + under copyright law. + + A "Modified Version" of the Document means any work containing the + Document or a portion of it, either copied verbatim, or with + modifications and/or translated into another language. + + A "Secondary Section" is a named appendix or a front-matter section of + the Document that deals exclusively with the relationship of the + publishers or authors of the Document to the Document's overall subject + (or to related matters) and contains nothing that could fall directly + within that overall subject. (Thus, if the Document is in part a + textbook of mathematics, a Secondary Section may not explain any + mathematics.) The relationship could be a matter of historical + connection with the subject or with related matters, or of legal, + commercial, philosophical, ethical or political position regarding + them. + + The "Invariant Sections" are certain Secondary Sections whose titles + are designated, as being those of Invariant Sections, in the notice + that says that the Document is released under this License. If a + section does not fit the above definition of Secondary then it is not + allowed to be designated as Invariant. The Document may contain zero + Invariant Sections. If the Document does not identify any Invariant + Sections then there are none. + + The "Cover Texts" are certain short passages of text that are listed, + as Front-Cover Texts or Back-Cover Texts, in the notice that says that + the Document is released under this License. A Front-Cover Text may + be at most 5 words, and a Back-Cover Text may be at most 25 words. + + A "Transparent" copy of the Document means a machine-readable copy, + represented in a format whose specification is available to the + general public, that is suitable for revising the document + straightforwardly with generic text editors or (for images composed of + pixels) generic paint programs or (for drawings) some widely available + drawing editor, and that is suitable for input to text formatters or + for automatic translation to a variety of formats suitable for input + to text formatters. A copy made in an otherwise Transparent file + format whose markup, or absence of markup, has been arranged to thwart + or discourage subsequent modification by readers is not Transparent. + An image format is not Transparent if used for any substantial amount + of text. A copy that is not "Transparent" is called "Opaque". + + Examples of suitable formats for Transparent copies include plain + ASCII without markup, Texinfo input format, LaTeX input format, SGML + or XML using a publicly available DTD, and standard-conforming simple + HTML, PostScript or PDF designed for human modification. Examples of + transparent image formats include PNG, XCF and JPG. Opaque formats + include proprietary formats that can be read and edited only by + proprietary word processors, SGML or XML for which the DTD and/or + processing tools are not generally available, and the + machine-generated HTML, PostScript or PDF produced by some word + processors for output purposes only. + + The "Title Page" means, for a printed book, the title page itself, + plus such following pages as are needed to hold, legibly, the material + this License requires to appear in the title page. For works in + formats which do not have any title page as such, "Title Page" means + the text near the most prominent appearance of the work's title, + preceding the beginning of the body of the text. + + A section "Entitled XYZ" means a named subunit of the Document whose + title either is precisely XYZ or contains XYZ in parentheses following + text that translates XYZ in another language. (Here XYZ stands for a + specific section name mentioned below, such as "Acknowledgements", + "Dedications", "Endorsements", or "History".) To "Preserve the Title" + of such a section when you modify the Document means that it remains a + section "Entitled XYZ" according to this definition. + + The Document may include Warranty Disclaimers next to the notice which + states that this License applies to the Document. These Warranty + Disclaimers are considered to be included by reference in this + License, but only as regards disclaiming warranties: any other + implication that these Warranty Disclaimers may have is void and has + no effect on the meaning of this License. + + + 2. VERBATIM COPYING + + You may copy and distribute the Document in any medium, either + commercially or noncommercially, provided that this License, the + copyright notices, and the license notice saying this License applies + to the Document are reproduced in all copies, and that you add no other + conditions whatsoever to those of this License. You may not use + technical measures to obstruct or control the reading or further + copying of the copies you make or distribute. However, you may accept + compensation in exchange for copies. If you distribute a large enough + number of copies you must also follow the conditions in section 3. + + You may also lend copies, under the same conditions stated above, and + you may publicly display copies. + + + 3. COPYING IN QUANTITY + + If you publish printed copies (or copies in media that commonly have + printed covers) of the Document, numbering more than 100, and the + Document's license notice requires Cover Texts, you must enclose the + copies in covers that carry, clearly and legibly, all these Cover + Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on + the back cover. Both covers must also clearly and legibly identify + you as the publisher of these copies. The front cover must present + the full title with all words of the title equally prominent and + visible. You may add other material on the covers in addition. + Copying with changes limited to the covers, as long as they preserve + the title of the Document and satisfy these conditions, can be treated + as verbatim copying in other respects. + + If the required texts for either cover are too voluminous to fit + legibly, you should put the first ones listed (as many as fit + reasonably) on the actual cover, and continue the rest onto adjacent + pages. + + If you publish or distribute Opaque copies of the Document numbering + more than 100, you must either include a machine-readable Transparent + copy along with each Opaque copy, or state in or with each Opaque copy + a computer-network location from which the general network-using + public has access to download using public-standard network protocols + a complete Transparent copy of the Document, free of added material. + If you use the latter option, you must take reasonably prudent steps, + when you begin distribution of Opaque copies in quantity, to ensure + that this Transparent copy will remain thus accessible at the stated + location until at least one year after the last time you distribute an + Opaque copy (directly or through your agents or retailers) of that + edition to the public. + + It is requested, but not required, that you contact the authors of the + Document well before redistributing any large number of copies, to give + them a chance to provide you with an updated version of the Document. + + + 4. MODIFICATIONS + + You may copy and distribute a Modified Version of the Document under + the conditions of sections 2 and 3 above, provided that you release + the Modified Version under precisely this License, with the Modified + Version filling the role of the Document, thus licensing distribution + and modification of the Modified Version to whoever possesses a copy + of it. In addition, you must do these things in the Modified Version: + + A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission. + B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has fewer than five), + unless they release you from this requirement. + C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. + D. Preserve all the copyright notices of the Document. + E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. + F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below. + G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. + H. Include an unaltered copy of this License. + I. Preserve the section Entitled "History", Preserve its Title, and add + to it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section Entitled "History" in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence. + J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the "History" section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission. + K. For any section Entitled "Acknowledgements" or "Dedications", + Preserve the Title of the section, and preserve in the section all + the substance and tone of each of the contributor acknowledgements + and/or dedications given therein. + L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. + M. Delete any section Entitled "Endorsements". Such a section + may not be included in the Modified Version. + N. Do not retitle any existing section to be Entitled "Endorsements" + or to conflict in title with any Invariant Section. + O. Preserve any Warranty Disclaimers. + + If the Modified Version includes new front-matter sections or + appendices that qualify as Secondary Sections and contain no material + copied from the Document, you may at your option designate some or all + of these sections as invariant. To do this, add their titles to the + list of Invariant Sections in the Modified Version's license notice. + These titles must be distinct from any other section titles. + + You may add a section Entitled "Endorsements", provided it contains + nothing but endorsements of your Modified Version by various + parties--for example, statements of peer review or that the text has + been approved by an organization as the authoritative definition of a + standard. + + You may add a passage of up to five words as a Front-Cover Text, and a + passage of up to 25 words as a Back-Cover Text, to the end of the list + of Cover Texts in the Modified Version. Only one passage of + Front-Cover Text and one of Back-Cover Text may be added by (or + through arrangements made by) any one entity. If the Document already + includes a cover text for the same cover, previously added by you or + by arrangement made by the same entity you are acting on behalf of, + you may not add another; but you may replace the old one, on explicit + permission from the previous publisher that added the old one. + + The author(s) and publisher(s) of the Document do not by this License + give permission to use their names for publicity for or to assert or + imply endorsement of any Modified Version. + + + 5. COMBINING DOCUMENTS + + You may combine the Document with other documents released under this + License, under the terms defined in section 4 above for modified + versions, provided that you include in the combination all of the + Invariant Sections of all of the original documents, unmodified, and + list them all as Invariant Sections of your combined work in its + license notice, and that you preserve all their Warranty Disclaimers. + + The combined work need only contain one copy of this License, and + multiple identical Invariant Sections may be replaced with a single + copy. If there are multiple Invariant Sections with the same name but + different contents, make the title of each such section unique by + adding at the end of it, in parentheses, the name of the original + author or publisher of that section if known, or else a unique number. + Make the same adjustment to the section titles in the list of + Invariant Sections in the license notice of the combined work. + + In the combination, you must combine any sections Entitled "History" + in the various original documents, forming one section Entitled + "History"; likewise combine any sections Entitled "Acknowledgements", + and any sections Entitled "Dedications". You must delete all sections + Entitled "Endorsements". + + + 6. COLLECTIONS OF DOCUMENTS + + You may make a collection consisting of the Document and other documents + released under this License, and replace the individual copies of this + License in the various documents with a single copy that is included in + the collection, provided that you follow the rules of this License for + verbatim copying of each of the documents in all other respects. + + You may extract a single document from such a collection, and distribute + it individually under this License, provided you insert a copy of this + License into the extracted document, and follow this License in all + other respects regarding verbatim copying of that document. + + + 7. AGGREGATION WITH INDEPENDENT WORKS + + A compilation of the Document or its derivatives with other separate + and independent documents or works, in or on a volume of a storage or + distribution medium, is called an "aggregate" if the copyright + resulting from the compilation is not used to limit the legal rights + of the compilation's users beyond what the individual works permit. + When the Document is included in an aggregate, this License does not + apply to the other works in the aggregate which are not themselves + derivative works of the Document. + + If the Cover Text requirement of section 3 is applicable to these + copies of the Document, then if the Document is less than one half of + the entire aggregate, the Document's Cover Texts may be placed on + covers that bracket the Document within the aggregate, or the + electronic equivalent of covers if the Document is in electronic form. + Otherwise they must appear on printed covers that bracket the whole + aggregate. + + + 8. TRANSLATION + + Translation is considered a kind of modification, so you may + distribute translations of the Document under the terms of section 4. + Replacing Invariant Sections with translations requires special + permission from their copyright holders, but you may include + translations of some or all Invariant Sections in addition to the + original versions of these Invariant Sections. You may include a + translation of this License, and all the license notices in the + Document, and any Warranty Disclaimers, provided that you also include + the original English version of this License and the original versions + of those notices and disclaimers. In case of a disagreement between + the translation and the original version of this License or a notice + or disclaimer, the original version will prevail. + + If a section in the Document is Entitled "Acknowledgements", + "Dedications", or "History", the requirement (section 4) to Preserve + its Title (section 1) will typically require changing the actual + title. + + + 9. TERMINATION + + You may not copy, modify, sublicense, or distribute the Document except + as expressly provided for under this License. Any other attempt to + copy, modify, sublicense or distribute the Document 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. + + + 10. FUTURE REVISIONS OF THIS LICENSE + + The Free Software Foundation may publish new, revised versions + of the GNU Free Documentation 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. See + http://www.gnu.org/copyleft/. + + Each version of the License is given a distinguishing version number. + If the Document specifies that a particular numbered version of this + License "or any later version" applies to it, you have the option of + following the terms and conditions either of that specified version or + of any later version that has been published (not as a draft) by the + Free Software Foundation. If the Document does not specify a version + number of this License, you may choose any version ever published (not + as a draft) by the Free Software Foundation. + + + ADDENDUM: How to use this License for your documents + + To use this License in a document you have written, include a copy of + the License in the document and put the following copyright and + license notices just after the title page: + + Copyright (c) YEAR YOUR NAME. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.2 + or any later version published by the Free Software Foundation; + with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + + If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, + replace the "with...Texts." line with this: + + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + + If you have Invariant Sections without Cover Texts, or some other + combination of the three, merge those two alternatives to suit the + situation. + + If your document contains nontrivial examples of program code, we + recommend releasing these examples in parallel under your choice of + free software license, such as the GNU General Public License, + to permit their use in free software. json: gfdl-1.2-invariants-only.json - yml: gfdl-1.2-invariants-only.yml + yaml: gfdl-1.2-invariants-only.yml html: gfdl-1.2-invariants-only.html - text: gfdl-1.2-invariants-only.LICENSE + license: gfdl-1.2-invariants-only.LICENSE - license_key: gfdl-1.2-invariants-or-later + category: Copyleft Limited spdx_license_key: GFDL-1.2-invariants-or-later other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Permission is granted to copy, distribute + and/or modify this document under the terms of the GNU Free Documentation + License, Version 1.2 or any later version published by the Free Software + Foundation; with the Invariant Sections being LIST THEIR TITLES , with the + Front-Cover Texts being LIST , and with the Back-Cover Texts being LIST . A + copy of the license is included in the section entitled "GNU Free + Documentation License". + + GNU Free Documentation License + Version 1.2, November 2002 + + + Copyright (C) 2000,2001,2002 Free Software Foundation, Inc. + 51 Franklin St, 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. + + + 0. PREAMBLE + + The purpose of this License is to make a manual, textbook, or other + functional and useful document "free" in the sense of freedom: to + assure everyone the effective freedom to copy and redistribute it, + with or without modifying it, either commercially or noncommercially. + Secondarily, this License preserves for the author and publisher a way + to get credit for their work, while not being considered responsible + for modifications made by others. + + This License is a kind of "copyleft", which means that derivative + works of the document must themselves be free in the same sense. It + complements the GNU General Public License, which is a copyleft + license designed for free software. + + We have designed this License in order to use it for manuals for free + software, because free software needs free documentation: a free + program should come with manuals providing the same freedoms that the + software does. But this License is not limited to software manuals; + it can be used for any textual work, regardless of subject matter or + whether it is published as a printed book. We recommend this License + principally for works whose purpose is instruction or reference. + + + 1. APPLICABILITY AND DEFINITIONS + + This License applies to any manual or other work, in any medium, that + contains a notice placed by the copyright holder saying it can be + distributed under the terms of this License. Such a notice grants a + world-wide, royalty-free license, unlimited in duration, to use that + work under the conditions stated herein. The "Document", below, + refers to any such manual or work. Any member of the public is a + licensee, and is addressed as "you". You accept the license if you + copy, modify or distribute the work in a way requiring permission + under copyright law. + + A "Modified Version" of the Document means any work containing the + Document or a portion of it, either copied verbatim, or with + modifications and/or translated into another language. + + A "Secondary Section" is a named appendix or a front-matter section of + the Document that deals exclusively with the relationship of the + publishers or authors of the Document to the Document's overall subject + (or to related matters) and contains nothing that could fall directly + within that overall subject. (Thus, if the Document is in part a + textbook of mathematics, a Secondary Section may not explain any + mathematics.) The relationship could be a matter of historical + connection with the subject or with related matters, or of legal, + commercial, philosophical, ethical or political position regarding + them. + + The "Invariant Sections" are certain Secondary Sections whose titles + are designated, as being those of Invariant Sections, in the notice + that says that the Document is released under this License. If a + section does not fit the above definition of Secondary then it is not + allowed to be designated as Invariant. The Document may contain zero + Invariant Sections. If the Document does not identify any Invariant + Sections then there are none. + + The "Cover Texts" are certain short passages of text that are listed, + as Front-Cover Texts or Back-Cover Texts, in the notice that says that + the Document is released under this License. A Front-Cover Text may + be at most 5 words, and a Back-Cover Text may be at most 25 words. + + A "Transparent" copy of the Document means a machine-readable copy, + represented in a format whose specification is available to the + general public, that is suitable for revising the document + straightforwardly with generic text editors or (for images composed of + pixels) generic paint programs or (for drawings) some widely available + drawing editor, and that is suitable for input to text formatters or + for automatic translation to a variety of formats suitable for input + to text formatters. A copy made in an otherwise Transparent file + format whose markup, or absence of markup, has been arranged to thwart + or discourage subsequent modification by readers is not Transparent. + An image format is not Transparent if used for any substantial amount + of text. A copy that is not "Transparent" is called "Opaque". + + Examples of suitable formats for Transparent copies include plain + ASCII without markup, Texinfo input format, LaTeX input format, SGML + or XML using a publicly available DTD, and standard-conforming simple + HTML, PostScript or PDF designed for human modification. Examples of + transparent image formats include PNG, XCF and JPG. Opaque formats + include proprietary formats that can be read and edited only by + proprietary word processors, SGML or XML for which the DTD and/or + processing tools are not generally available, and the + machine-generated HTML, PostScript or PDF produced by some word + processors for output purposes only. + + The "Title Page" means, for a printed book, the title page itself, + plus such following pages as are needed to hold, legibly, the material + this License requires to appear in the title page. For works in + formats which do not have any title page as such, "Title Page" means + the text near the most prominent appearance of the work's title, + preceding the beginning of the body of the text. + + A section "Entitled XYZ" means a named subunit of the Document whose + title either is precisely XYZ or contains XYZ in parentheses following + text that translates XYZ in another language. (Here XYZ stands for a + specific section name mentioned below, such as "Acknowledgements", + "Dedications", "Endorsements", or "History".) To "Preserve the Title" + of such a section when you modify the Document means that it remains a + section "Entitled XYZ" according to this definition. + + The Document may include Warranty Disclaimers next to the notice which + states that this License applies to the Document. These Warranty + Disclaimers are considered to be included by reference in this + License, but only as regards disclaiming warranties: any other + implication that these Warranty Disclaimers may have is void and has + no effect on the meaning of this License. + + + 2. VERBATIM COPYING + + You may copy and distribute the Document in any medium, either + commercially or noncommercially, provided that this License, the + copyright notices, and the license notice saying this License applies + to the Document are reproduced in all copies, and that you add no other + conditions whatsoever to those of this License. You may not use + technical measures to obstruct or control the reading or further + copying of the copies you make or distribute. However, you may accept + compensation in exchange for copies. If you distribute a large enough + number of copies you must also follow the conditions in section 3. + + You may also lend copies, under the same conditions stated above, and + you may publicly display copies. + + + 3. COPYING IN QUANTITY + + If you publish printed copies (or copies in media that commonly have + printed covers) of the Document, numbering more than 100, and the + Document's license notice requires Cover Texts, you must enclose the + copies in covers that carry, clearly and legibly, all these Cover + Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on + the back cover. Both covers must also clearly and legibly identify + you as the publisher of these copies. The front cover must present + the full title with all words of the title equally prominent and + visible. You may add other material on the covers in addition. + Copying with changes limited to the covers, as long as they preserve + the title of the Document and satisfy these conditions, can be treated + as verbatim copying in other respects. + + If the required texts for either cover are too voluminous to fit + legibly, you should put the first ones listed (as many as fit + reasonably) on the actual cover, and continue the rest onto adjacent + pages. + + If you publish or distribute Opaque copies of the Document numbering + more than 100, you must either include a machine-readable Transparent + copy along with each Opaque copy, or state in or with each Opaque copy + a computer-network location from which the general network-using + public has access to download using public-standard network protocols + a complete Transparent copy of the Document, free of added material. + If you use the latter option, you must take reasonably prudent steps, + when you begin distribution of Opaque copies in quantity, to ensure + that this Transparent copy will remain thus accessible at the stated + location until at least one year after the last time you distribute an + Opaque copy (directly or through your agents or retailers) of that + edition to the public. + + It is requested, but not required, that you contact the authors of the + Document well before redistributing any large number of copies, to give + them a chance to provide you with an updated version of the Document. + + + 4. MODIFICATIONS + + You may copy and distribute a Modified Version of the Document under + the conditions of sections 2 and 3 above, provided that you release + the Modified Version under precisely this License, with the Modified + Version filling the role of the Document, thus licensing distribution + and modification of the Modified Version to whoever possesses a copy + of it. In addition, you must do these things in the Modified Version: + + A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission. + B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has fewer than five), + unless they release you from this requirement. + C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. + D. Preserve all the copyright notices of the Document. + E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. + F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below. + G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. + H. Include an unaltered copy of this License. + I. Preserve the section Entitled "History", Preserve its Title, and add + to it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section Entitled "History" in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence. + J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the "History" section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission. + K. For any section Entitled "Acknowledgements" or "Dedications", + Preserve the Title of the section, and preserve in the section all + the substance and tone of each of the contributor acknowledgements + and/or dedications given therein. + L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. + M. Delete any section Entitled "Endorsements". Such a section + may not be included in the Modified Version. + N. Do not retitle any existing section to be Entitled "Endorsements" + or to conflict in title with any Invariant Section. + O. Preserve any Warranty Disclaimers. + + If the Modified Version includes new front-matter sections or + appendices that qualify as Secondary Sections and contain no material + copied from the Document, you may at your option designate some or all + of these sections as invariant. To do this, add their titles to the + list of Invariant Sections in the Modified Version's license notice. + These titles must be distinct from any other section titles. + + You may add a section Entitled "Endorsements", provided it contains + nothing but endorsements of your Modified Version by various + parties--for example, statements of peer review or that the text has + been approved by an organization as the authoritative definition of a + standard. + + You may add a passage of up to five words as a Front-Cover Text, and a + passage of up to 25 words as a Back-Cover Text, to the end of the list + of Cover Texts in the Modified Version. Only one passage of + Front-Cover Text and one of Back-Cover Text may be added by (or + through arrangements made by) any one entity. If the Document already + includes a cover text for the same cover, previously added by you or + by arrangement made by the same entity you are acting on behalf of, + you may not add another; but you may replace the old one, on explicit + permission from the previous publisher that added the old one. + + The author(s) and publisher(s) of the Document do not by this License + give permission to use their names for publicity for or to assert or + imply endorsement of any Modified Version. + + + 5. COMBINING DOCUMENTS + + You may combine the Document with other documents released under this + License, under the terms defined in section 4 above for modified + versions, provided that you include in the combination all of the + Invariant Sections of all of the original documents, unmodified, and + list them all as Invariant Sections of your combined work in its + license notice, and that you preserve all their Warranty Disclaimers. + + The combined work need only contain one copy of this License, and + multiple identical Invariant Sections may be replaced with a single + copy. If there are multiple Invariant Sections with the same name but + different contents, make the title of each such section unique by + adding at the end of it, in parentheses, the name of the original + author or publisher of that section if known, or else a unique number. + Make the same adjustment to the section titles in the list of + Invariant Sections in the license notice of the combined work. + + In the combination, you must combine any sections Entitled "History" + in the various original documents, forming one section Entitled + "History"; likewise combine any sections Entitled "Acknowledgements", + and any sections Entitled "Dedications". You must delete all sections + Entitled "Endorsements". + + + 6. COLLECTIONS OF DOCUMENTS + + You may make a collection consisting of the Document and other documents + released under this License, and replace the individual copies of this + License in the various documents with a single copy that is included in + the collection, provided that you follow the rules of this License for + verbatim copying of each of the documents in all other respects. + + You may extract a single document from such a collection, and distribute + it individually under this License, provided you insert a copy of this + License into the extracted document, and follow this License in all + other respects regarding verbatim copying of that document. + + + 7. AGGREGATION WITH INDEPENDENT WORKS + + A compilation of the Document or its derivatives with other separate + and independent documents or works, in or on a volume of a storage or + distribution medium, is called an "aggregate" if the copyright + resulting from the compilation is not used to limit the legal rights + of the compilation's users beyond what the individual works permit. + When the Document is included in an aggregate, this License does not + apply to the other works in the aggregate which are not themselves + derivative works of the Document. + + If the Cover Text requirement of section 3 is applicable to these + copies of the Document, then if the Document is less than one half of + the entire aggregate, the Document's Cover Texts may be placed on + covers that bracket the Document within the aggregate, or the + electronic equivalent of covers if the Document is in electronic form. + Otherwise they must appear on printed covers that bracket the whole + aggregate. + + + 8. TRANSLATION + + Translation is considered a kind of modification, so you may + distribute translations of the Document under the terms of section 4. + Replacing Invariant Sections with translations requires special + permission from their copyright holders, but you may include + translations of some or all Invariant Sections in addition to the + original versions of these Invariant Sections. You may include a + translation of this License, and all the license notices in the + Document, and any Warranty Disclaimers, provided that you also include + the original English version of this License and the original versions + of those notices and disclaimers. In case of a disagreement between + the translation and the original version of this License or a notice + or disclaimer, the original version will prevail. + + If a section in the Document is Entitled "Acknowledgements", + "Dedications", or "History", the requirement (section 4) to Preserve + its Title (section 1) will typically require changing the actual + title. + + + 9. TERMINATION + + You may not copy, modify, sublicense, or distribute the Document except + as expressly provided for under this License. Any other attempt to + copy, modify, sublicense or distribute the Document 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. + + + 10. FUTURE REVISIONS OF THIS LICENSE + + The Free Software Foundation may publish new, revised versions + of the GNU Free Documentation 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. See + http://www.gnu.org/copyleft/. + + Each version of the License is given a distinguishing version number. + If the Document specifies that a particular numbered version of this + License "or any later version" applies to it, you have the option of + following the terms and conditions either of that specified version or + of any later version that has been published (not as a draft) by the + Free Software Foundation. If the Document does not specify a version + number of this License, you may choose any version ever published (not + as a draft) by the Free Software Foundation. + + + ADDENDUM: How to use this License for your documents + + To use this License in a document you have written, include a copy of + the License in the document and put the following copyright and + license notices just after the title page: + + Copyright (c) YEAR YOUR NAME. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.2 + or any later version published by the Free Software Foundation; + with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + + If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, + replace the "with...Texts." line with this: + + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + + If you have Invariant Sections without Cover Texts, or some other + combination of the three, merge those two alternatives to suit the + situation. + + If your document contains nontrivial examples of program code, we + recommend releasing these examples in parallel under your choice of + free software license, such as the GNU General Public License, + to permit their use in free software. json: gfdl-1.2-invariants-or-later.json - yml: gfdl-1.2-invariants-or-later.yml + yaml: gfdl-1.2-invariants-or-later.yml html: gfdl-1.2-invariants-or-later.html - text: gfdl-1.2-invariants-or-later.LICENSE + license: gfdl-1.2-invariants-or-later.LICENSE - license_key: gfdl-1.2-no-invariants-only + category: Copyleft Limited spdx_license_key: GFDL-1.2-no-invariants-only other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Permission is granted to copy, distribute + and/or modify this document under the terms of the GNU Free Documentation + License, Version 1.2; with no Invariant Sections, no Front-Cover Texts, and + no Back-Cover Texts. A copy of the license is included in the section + entitled "GNU Free Documentation License". + + GNU Free Documentation License + Version 1.2, November 2002 + + + Copyright (C) 2000,2001,2002 Free Software Foundation, Inc. + 51 Franklin St, 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. + + + 0. PREAMBLE + + The purpose of this License is to make a manual, textbook, or other + functional and useful document "free" in the sense of freedom: to + assure everyone the effective freedom to copy and redistribute it, + with or without modifying it, either commercially or noncommercially. + Secondarily, this License preserves for the author and publisher a way + to get credit for their work, while not being considered responsible + for modifications made by others. + + This License is a kind of "copyleft", which means that derivative + works of the document must themselves be free in the same sense. It + complements the GNU General Public License, which is a copyleft + license designed for free software. + + We have designed this License in order to use it for manuals for free + software, because free software needs free documentation: a free + program should come with manuals providing the same freedoms that the + software does. But this License is not limited to software manuals; + it can be used for any textual work, regardless of subject matter or + whether it is published as a printed book. We recommend this License + principally for works whose purpose is instruction or reference. + + + 1. APPLICABILITY AND DEFINITIONS + + This License applies to any manual or other work, in any medium, that + contains a notice placed by the copyright holder saying it can be + distributed under the terms of this License. Such a notice grants a + world-wide, royalty-free license, unlimited in duration, to use that + work under the conditions stated herein. The "Document", below, + refers to any such manual or work. Any member of the public is a + licensee, and is addressed as "you". You accept the license if you + copy, modify or distribute the work in a way requiring permission + under copyright law. + + A "Modified Version" of the Document means any work containing the + Document or a portion of it, either copied verbatim, or with + modifications and/or translated into another language. + + A "Secondary Section" is a named appendix or a front-matter section of + the Document that deals exclusively with the relationship of the + publishers or authors of the Document to the Document's overall subject + (or to related matters) and contains nothing that could fall directly + within that overall subject. (Thus, if the Document is in part a + textbook of mathematics, a Secondary Section may not explain any + mathematics.) The relationship could be a matter of historical + connection with the subject or with related matters, or of legal, + commercial, philosophical, ethical or political position regarding + them. + + The "Invariant Sections" are certain Secondary Sections whose titles + are designated, as being those of Invariant Sections, in the notice + that says that the Document is released under this License. If a + section does not fit the above definition of Secondary then it is not + allowed to be designated as Invariant. The Document may contain zero + Invariant Sections. If the Document does not identify any Invariant + Sections then there are none. + + The "Cover Texts" are certain short passages of text that are listed, + as Front-Cover Texts or Back-Cover Texts, in the notice that says that + the Document is released under this License. A Front-Cover Text may + be at most 5 words, and a Back-Cover Text may be at most 25 words. + + A "Transparent" copy of the Document means a machine-readable copy, + represented in a format whose specification is available to the + general public, that is suitable for revising the document + straightforwardly with generic text editors or (for images composed of + pixels) generic paint programs or (for drawings) some widely available + drawing editor, and that is suitable for input to text formatters or + for automatic translation to a variety of formats suitable for input + to text formatters. A copy made in an otherwise Transparent file + format whose markup, or absence of markup, has been arranged to thwart + or discourage subsequent modification by readers is not Transparent. + An image format is not Transparent if used for any substantial amount + of text. A copy that is not "Transparent" is called "Opaque". + + Examples of suitable formats for Transparent copies include plain + ASCII without markup, Texinfo input format, LaTeX input format, SGML + or XML using a publicly available DTD, and standard-conforming simple + HTML, PostScript or PDF designed for human modification. Examples of + transparent image formats include PNG, XCF and JPG. Opaque formats + include proprietary formats that can be read and edited only by + proprietary word processors, SGML or XML for which the DTD and/or + processing tools are not generally available, and the + machine-generated HTML, PostScript or PDF produced by some word + processors for output purposes only. + + The "Title Page" means, for a printed book, the title page itself, + plus such following pages as are needed to hold, legibly, the material + this License requires to appear in the title page. For works in + formats which do not have any title page as such, "Title Page" means + the text near the most prominent appearance of the work's title, + preceding the beginning of the body of the text. + + A section "Entitled XYZ" means a named subunit of the Document whose + title either is precisely XYZ or contains XYZ in parentheses following + text that translates XYZ in another language. (Here XYZ stands for a + specific section name mentioned below, such as "Acknowledgements", + "Dedications", "Endorsements", or "History".) To "Preserve the Title" + of such a section when you modify the Document means that it remains a + section "Entitled XYZ" according to this definition. + + The Document may include Warranty Disclaimers next to the notice which + states that this License applies to the Document. These Warranty + Disclaimers are considered to be included by reference in this + License, but only as regards disclaiming warranties: any other + implication that these Warranty Disclaimers may have is void and has + no effect on the meaning of this License. + + + 2. VERBATIM COPYING + + You may copy and distribute the Document in any medium, either + commercially or noncommercially, provided that this License, the + copyright notices, and the license notice saying this License applies + to the Document are reproduced in all copies, and that you add no other + conditions whatsoever to those of this License. You may not use + technical measures to obstruct or control the reading or further + copying of the copies you make or distribute. However, you may accept + compensation in exchange for copies. If you distribute a large enough + number of copies you must also follow the conditions in section 3. + + You may also lend copies, under the same conditions stated above, and + you may publicly display copies. + + + 3. COPYING IN QUANTITY + + If you publish printed copies (or copies in media that commonly have + printed covers) of the Document, numbering more than 100, and the + Document's license notice requires Cover Texts, you must enclose the + copies in covers that carry, clearly and legibly, all these Cover + Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on + the back cover. Both covers must also clearly and legibly identify + you as the publisher of these copies. The front cover must present + the full title with all words of the title equally prominent and + visible. You may add other material on the covers in addition. + Copying with changes limited to the covers, as long as they preserve + the title of the Document and satisfy these conditions, can be treated + as verbatim copying in other respects. + + If the required texts for either cover are too voluminous to fit + legibly, you should put the first ones listed (as many as fit + reasonably) on the actual cover, and continue the rest onto adjacent + pages. + + If you publish or distribute Opaque copies of the Document numbering + more than 100, you must either include a machine-readable Transparent + copy along with each Opaque copy, or state in or with each Opaque copy + a computer-network location from which the general network-using + public has access to download using public-standard network protocols + a complete Transparent copy of the Document, free of added material. + If you use the latter option, you must take reasonably prudent steps, + when you begin distribution of Opaque copies in quantity, to ensure + that this Transparent copy will remain thus accessible at the stated + location until at least one year after the last time you distribute an + Opaque copy (directly or through your agents or retailers) of that + edition to the public. + + It is requested, but not required, that you contact the authors of the + Document well before redistributing any large number of copies, to give + them a chance to provide you with an updated version of the Document. + + + 4. MODIFICATIONS + + You may copy and distribute a Modified Version of the Document under + the conditions of sections 2 and 3 above, provided that you release + the Modified Version under precisely this License, with the Modified + Version filling the role of the Document, thus licensing distribution + and modification of the Modified Version to whoever possesses a copy + of it. In addition, you must do these things in the Modified Version: + + A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission. + B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has fewer than five), + unless they release you from this requirement. + C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. + D. Preserve all the copyright notices of the Document. + E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. + F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below. + G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. + H. Include an unaltered copy of this License. + I. Preserve the section Entitled "History", Preserve its Title, and add + to it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section Entitled "History" in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence. + J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the "History" section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission. + K. For any section Entitled "Acknowledgements" or "Dedications", + Preserve the Title of the section, and preserve in the section all + the substance and tone of each of the contributor acknowledgements + and/or dedications given therein. + L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. + M. Delete any section Entitled "Endorsements". Such a section + may not be included in the Modified Version. + N. Do not retitle any existing section to be Entitled "Endorsements" + or to conflict in title with any Invariant Section. + O. Preserve any Warranty Disclaimers. + + If the Modified Version includes new front-matter sections or + appendices that qualify as Secondary Sections and contain no material + copied from the Document, you may at your option designate some or all + of these sections as invariant. To do this, add their titles to the + list of Invariant Sections in the Modified Version's license notice. + These titles must be distinct from any other section titles. + + You may add a section Entitled "Endorsements", provided it contains + nothing but endorsements of your Modified Version by various + parties--for example, statements of peer review or that the text has + been approved by an organization as the authoritative definition of a + standard. + + You may add a passage of up to five words as a Front-Cover Text, and a + passage of up to 25 words as a Back-Cover Text, to the end of the list + of Cover Texts in the Modified Version. Only one passage of + Front-Cover Text and one of Back-Cover Text may be added by (or + through arrangements made by) any one entity. If the Document already + includes a cover text for the same cover, previously added by you or + by arrangement made by the same entity you are acting on behalf of, + you may not add another; but you may replace the old one, on explicit + permission from the previous publisher that added the old one. + + The author(s) and publisher(s) of the Document do not by this License + give permission to use their names for publicity for or to assert or + imply endorsement of any Modified Version. + + + 5. COMBINING DOCUMENTS + + You may combine the Document with other documents released under this + License, under the terms defined in section 4 above for modified + versions, provided that you include in the combination all of the + Invariant Sections of all of the original documents, unmodified, and + list them all as Invariant Sections of your combined work in its + license notice, and that you preserve all their Warranty Disclaimers. + + The combined work need only contain one copy of this License, and + multiple identical Invariant Sections may be replaced with a single + copy. If there are multiple Invariant Sections with the same name but + different contents, make the title of each such section unique by + adding at the end of it, in parentheses, the name of the original + author or publisher of that section if known, or else a unique number. + Make the same adjustment to the section titles in the list of + Invariant Sections in the license notice of the combined work. + + In the combination, you must combine any sections Entitled "History" + in the various original documents, forming one section Entitled + "History"; likewise combine any sections Entitled "Acknowledgements", + and any sections Entitled "Dedications". You must delete all sections + Entitled "Endorsements". + + + 6. COLLECTIONS OF DOCUMENTS + + You may make a collection consisting of the Document and other documents + released under this License, and replace the individual copies of this + License in the various documents with a single copy that is included in + the collection, provided that you follow the rules of this License for + verbatim copying of each of the documents in all other respects. + + You may extract a single document from such a collection, and distribute + it individually under this License, provided you insert a copy of this + License into the extracted document, and follow this License in all + other respects regarding verbatim copying of that document. + + + 7. AGGREGATION WITH INDEPENDENT WORKS + + A compilation of the Document or its derivatives with other separate + and independent documents or works, in or on a volume of a storage or + distribution medium, is called an "aggregate" if the copyright + resulting from the compilation is not used to limit the legal rights + of the compilation's users beyond what the individual works permit. + When the Document is included in an aggregate, this License does not + apply to the other works in the aggregate which are not themselves + derivative works of the Document. + + If the Cover Text requirement of section 3 is applicable to these + copies of the Document, then if the Document is less than one half of + the entire aggregate, the Document's Cover Texts may be placed on + covers that bracket the Document within the aggregate, or the + electronic equivalent of covers if the Document is in electronic form. + Otherwise they must appear on printed covers that bracket the whole + aggregate. + + + 8. TRANSLATION + + Translation is considered a kind of modification, so you may + distribute translations of the Document under the terms of section 4. + Replacing Invariant Sections with translations requires special + permission from their copyright holders, but you may include + translations of some or all Invariant Sections in addition to the + original versions of these Invariant Sections. You may include a + translation of this License, and all the license notices in the + Document, and any Warranty Disclaimers, provided that you also include + the original English version of this License and the original versions + of those notices and disclaimers. In case of a disagreement between + the translation and the original version of this License or a notice + or disclaimer, the original version will prevail. + + If a section in the Document is Entitled "Acknowledgements", + "Dedications", or "History", the requirement (section 4) to Preserve + its Title (section 1) will typically require changing the actual + title. + + + 9. TERMINATION + + You may not copy, modify, sublicense, or distribute the Document except + as expressly provided for under this License. Any other attempt to + copy, modify, sublicense or distribute the Document 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. + + + 10. FUTURE REVISIONS OF THIS LICENSE + + The Free Software Foundation may publish new, revised versions + of the GNU Free Documentation 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. See + http://www.gnu.org/copyleft/. + + Each version of the License is given a distinguishing version number. + If the Document specifies that a particular numbered version of this + License "or any later version" applies to it, you have the option of + following the terms and conditions either of that specified version or + of any later version that has been published (not as a draft) by the + Free Software Foundation. If the Document does not specify a version + number of this License, you may choose any version ever published (not + as a draft) by the Free Software Foundation. + + + ADDENDUM: How to use this License for your documents + + To use this License in a document you have written, include a copy of + the License in the document and put the following copyright and + license notices just after the title page: + + Copyright (c) YEAR YOUR NAME. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.2 + or any later version published by the Free Software Foundation; + with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + + If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, + replace the "with...Texts." line with this: + + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + + If you have Invariant Sections without Cover Texts, or some other + combination of the three, merge those two alternatives to suit the + situation. + + If your document contains nontrivial examples of program code, we + recommend releasing these examples in parallel under your choice of + free software license, such as the GNU General Public License, + to permit their use in free software. json: gfdl-1.2-no-invariants-only.json - yml: gfdl-1.2-no-invariants-only.yml + yaml: gfdl-1.2-no-invariants-only.yml html: gfdl-1.2-no-invariants-only.html - text: gfdl-1.2-no-invariants-only.LICENSE + license: gfdl-1.2-no-invariants-only.LICENSE - license_key: gfdl-1.2-no-invariants-or-later + category: Copyleft Limited spdx_license_key: GFDL-1.2-no-invariants-or-later other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Permission is granted to copy, distribute + and/or modify this document under the terms of the GNU Free Documentation + License, Version 1.2 or any later version published by the Free Software + Foundation; with no Invariant Sections, no Front-Cover Texts,and no Back- + Cover Texts. A copy of the license is included in the section entitled "GNU + Free Documentation License". + + GNU Free Documentation License + Version 1.2, November 2002 + + + Copyright (C) 2000,2001,2002 Free Software Foundation, Inc. + 51 Franklin St, 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. + + + 0. PREAMBLE + + The purpose of this License is to make a manual, textbook, or other + functional and useful document "free" in the sense of freedom: to + assure everyone the effective freedom to copy and redistribute it, + with or without modifying it, either commercially or noncommercially. + Secondarily, this License preserves for the author and publisher a way + to get credit for their work, while not being considered responsible + for modifications made by others. + + This License is a kind of "copyleft", which means that derivative + works of the document must themselves be free in the same sense. It + complements the GNU General Public License, which is a copyleft + license designed for free software. + + We have designed this License in order to use it for manuals for free + software, because free software needs free documentation: a free + program should come with manuals providing the same freedoms that the + software does. But this License is not limited to software manuals; + it can be used for any textual work, regardless of subject matter or + whether it is published as a printed book. We recommend this License + principally for works whose purpose is instruction or reference. + + + 1. APPLICABILITY AND DEFINITIONS + + This License applies to any manual or other work, in any medium, that + contains a notice placed by the copyright holder saying it can be + distributed under the terms of this License. Such a notice grants a + world-wide, royalty-free license, unlimited in duration, to use that + work under the conditions stated herein. The "Document", below, + refers to any such manual or work. Any member of the public is a + licensee, and is addressed as "you". You accept the license if you + copy, modify or distribute the work in a way requiring permission + under copyright law. + + A "Modified Version" of the Document means any work containing the + Document or a portion of it, either copied verbatim, or with + modifications and/or translated into another language. + + A "Secondary Section" is a named appendix or a front-matter section of + the Document that deals exclusively with the relationship of the + publishers or authors of the Document to the Document's overall subject + (or to related matters) and contains nothing that could fall directly + within that overall subject. (Thus, if the Document is in part a + textbook of mathematics, a Secondary Section may not explain any + mathematics.) The relationship could be a matter of historical + connection with the subject or with related matters, or of legal, + commercial, philosophical, ethical or political position regarding + them. + + The "Invariant Sections" are certain Secondary Sections whose titles + are designated, as being those of Invariant Sections, in the notice + that says that the Document is released under this License. If a + section does not fit the above definition of Secondary then it is not + allowed to be designated as Invariant. The Document may contain zero + Invariant Sections. If the Document does not identify any Invariant + Sections then there are none. + + The "Cover Texts" are certain short passages of text that are listed, + as Front-Cover Texts or Back-Cover Texts, in the notice that says that + the Document is released under this License. A Front-Cover Text may + be at most 5 words, and a Back-Cover Text may be at most 25 words. + + A "Transparent" copy of the Document means a machine-readable copy, + represented in a format whose specification is available to the + general public, that is suitable for revising the document + straightforwardly with generic text editors or (for images composed of + pixels) generic paint programs or (for drawings) some widely available + drawing editor, and that is suitable for input to text formatters or + for automatic translation to a variety of formats suitable for input + to text formatters. A copy made in an otherwise Transparent file + format whose markup, or absence of markup, has been arranged to thwart + or discourage subsequent modification by readers is not Transparent. + An image format is not Transparent if used for any substantial amount + of text. A copy that is not "Transparent" is called "Opaque". + + Examples of suitable formats for Transparent copies include plain + ASCII without markup, Texinfo input format, LaTeX input format, SGML + or XML using a publicly available DTD, and standard-conforming simple + HTML, PostScript or PDF designed for human modification. Examples of + transparent image formats include PNG, XCF and JPG. Opaque formats + include proprietary formats that can be read and edited only by + proprietary word processors, SGML or XML for which the DTD and/or + processing tools are not generally available, and the + machine-generated HTML, PostScript or PDF produced by some word + processors for output purposes only. + + The "Title Page" means, for a printed book, the title page itself, + plus such following pages as are needed to hold, legibly, the material + this License requires to appear in the title page. For works in + formats which do not have any title page as such, "Title Page" means + the text near the most prominent appearance of the work's title, + preceding the beginning of the body of the text. + + A section "Entitled XYZ" means a named subunit of the Document whose + title either is precisely XYZ or contains XYZ in parentheses following + text that translates XYZ in another language. (Here XYZ stands for a + specific section name mentioned below, such as "Acknowledgements", + "Dedications", "Endorsements", or "History".) To "Preserve the Title" + of such a section when you modify the Document means that it remains a + section "Entitled XYZ" according to this definition. + + The Document may include Warranty Disclaimers next to the notice which + states that this License applies to the Document. These Warranty + Disclaimers are considered to be included by reference in this + License, but only as regards disclaiming warranties: any other + implication that these Warranty Disclaimers may have is void and has + no effect on the meaning of this License. + + + 2. VERBATIM COPYING + + You may copy and distribute the Document in any medium, either + commercially or noncommercially, provided that this License, the + copyright notices, and the license notice saying this License applies + to the Document are reproduced in all copies, and that you add no other + conditions whatsoever to those of this License. You may not use + technical measures to obstruct or control the reading or further + copying of the copies you make or distribute. However, you may accept + compensation in exchange for copies. If you distribute a large enough + number of copies you must also follow the conditions in section 3. + + You may also lend copies, under the same conditions stated above, and + you may publicly display copies. + + + 3. COPYING IN QUANTITY + + If you publish printed copies (or copies in media that commonly have + printed covers) of the Document, numbering more than 100, and the + Document's license notice requires Cover Texts, you must enclose the + copies in covers that carry, clearly and legibly, all these Cover + Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on + the back cover. Both covers must also clearly and legibly identify + you as the publisher of these copies. The front cover must present + the full title with all words of the title equally prominent and + visible. You may add other material on the covers in addition. + Copying with changes limited to the covers, as long as they preserve + the title of the Document and satisfy these conditions, can be treated + as verbatim copying in other respects. + + If the required texts for either cover are too voluminous to fit + legibly, you should put the first ones listed (as many as fit + reasonably) on the actual cover, and continue the rest onto adjacent + pages. + + If you publish or distribute Opaque copies of the Document numbering + more than 100, you must either include a machine-readable Transparent + copy along with each Opaque copy, or state in or with each Opaque copy + a computer-network location from which the general network-using + public has access to download using public-standard network protocols + a complete Transparent copy of the Document, free of added material. + If you use the latter option, you must take reasonably prudent steps, + when you begin distribution of Opaque copies in quantity, to ensure + that this Transparent copy will remain thus accessible at the stated + location until at least one year after the last time you distribute an + Opaque copy (directly or through your agents or retailers) of that + edition to the public. + + It is requested, but not required, that you contact the authors of the + Document well before redistributing any large number of copies, to give + them a chance to provide you with an updated version of the Document. + + + 4. MODIFICATIONS + + You may copy and distribute a Modified Version of the Document under + the conditions of sections 2 and 3 above, provided that you release + the Modified Version under precisely this License, with the Modified + Version filling the role of the Document, thus licensing distribution + and modification of the Modified Version to whoever possesses a copy + of it. In addition, you must do these things in the Modified Version: + + A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission. + B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has fewer than five), + unless they release you from this requirement. + C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. + D. Preserve all the copyright notices of the Document. + E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. + F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below. + G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. + H. Include an unaltered copy of this License. + I. Preserve the section Entitled "History", Preserve its Title, and add + to it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section Entitled "History" in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence. + J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the "History" section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission. + K. For any section Entitled "Acknowledgements" or "Dedications", + Preserve the Title of the section, and preserve in the section all + the substance and tone of each of the contributor acknowledgements + and/or dedications given therein. + L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. + M. Delete any section Entitled "Endorsements". Such a section + may not be included in the Modified Version. + N. Do not retitle any existing section to be Entitled "Endorsements" + or to conflict in title with any Invariant Section. + O. Preserve any Warranty Disclaimers. + + If the Modified Version includes new front-matter sections or + appendices that qualify as Secondary Sections and contain no material + copied from the Document, you may at your option designate some or all + of these sections as invariant. To do this, add their titles to the + list of Invariant Sections in the Modified Version's license notice. + These titles must be distinct from any other section titles. + + You may add a section Entitled "Endorsements", provided it contains + nothing but endorsements of your Modified Version by various + parties--for example, statements of peer review or that the text has + been approved by an organization as the authoritative definition of a + standard. + + You may add a passage of up to five words as a Front-Cover Text, and a + passage of up to 25 words as a Back-Cover Text, to the end of the list + of Cover Texts in the Modified Version. Only one passage of + Front-Cover Text and one of Back-Cover Text may be added by (or + through arrangements made by) any one entity. If the Document already + includes a cover text for the same cover, previously added by you or + by arrangement made by the same entity you are acting on behalf of, + you may not add another; but you may replace the old one, on explicit + permission from the previous publisher that added the old one. + + The author(s) and publisher(s) of the Document do not by this License + give permission to use their names for publicity for or to assert or + imply endorsement of any Modified Version. + + + 5. COMBINING DOCUMENTS + + You may combine the Document with other documents released under this + License, under the terms defined in section 4 above for modified + versions, provided that you include in the combination all of the + Invariant Sections of all of the original documents, unmodified, and + list them all as Invariant Sections of your combined work in its + license notice, and that you preserve all their Warranty Disclaimers. + + The combined work need only contain one copy of this License, and + multiple identical Invariant Sections may be replaced with a single + copy. If there are multiple Invariant Sections with the same name but + different contents, make the title of each such section unique by + adding at the end of it, in parentheses, the name of the original + author or publisher of that section if known, or else a unique number. + Make the same adjustment to the section titles in the list of + Invariant Sections in the license notice of the combined work. + + In the combination, you must combine any sections Entitled "History" + in the various original documents, forming one section Entitled + "History"; likewise combine any sections Entitled "Acknowledgements", + and any sections Entitled "Dedications". You must delete all sections + Entitled "Endorsements". + + + 6. COLLECTIONS OF DOCUMENTS + + You may make a collection consisting of the Document and other documents + released under this License, and replace the individual copies of this + License in the various documents with a single copy that is included in + the collection, provided that you follow the rules of this License for + verbatim copying of each of the documents in all other respects. + + You may extract a single document from such a collection, and distribute + it individually under this License, provided you insert a copy of this + License into the extracted document, and follow this License in all + other respects regarding verbatim copying of that document. + + + 7. AGGREGATION WITH INDEPENDENT WORKS + + A compilation of the Document or its derivatives with other separate + and independent documents or works, in or on a volume of a storage or + distribution medium, is called an "aggregate" if the copyright + resulting from the compilation is not used to limit the legal rights + of the compilation's users beyond what the individual works permit. + When the Document is included in an aggregate, this License does not + apply to the other works in the aggregate which are not themselves + derivative works of the Document. + + If the Cover Text requirement of section 3 is applicable to these + copies of the Document, then if the Document is less than one half of + the entire aggregate, the Document's Cover Texts may be placed on + covers that bracket the Document within the aggregate, or the + electronic equivalent of covers if the Document is in electronic form. + Otherwise they must appear on printed covers that bracket the whole + aggregate. + + + 8. TRANSLATION + + Translation is considered a kind of modification, so you may + distribute translations of the Document under the terms of section 4. + Replacing Invariant Sections with translations requires special + permission from their copyright holders, but you may include + translations of some or all Invariant Sections in addition to the + original versions of these Invariant Sections. You may include a + translation of this License, and all the license notices in the + Document, and any Warranty Disclaimers, provided that you also include + the original English version of this License and the original versions + of those notices and disclaimers. In case of a disagreement between + the translation and the original version of this License or a notice + or disclaimer, the original version will prevail. + + If a section in the Document is Entitled "Acknowledgements", + "Dedications", or "History", the requirement (section 4) to Preserve + its Title (section 1) will typically require changing the actual + title. + + + 9. TERMINATION + + You may not copy, modify, sublicense, or distribute the Document except + as expressly provided for under this License. Any other attempt to + copy, modify, sublicense or distribute the Document 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. + + + 10. FUTURE REVISIONS OF THIS LICENSE + + The Free Software Foundation may publish new, revised versions + of the GNU Free Documentation 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. See + http://www.gnu.org/copyleft/. + + Each version of the License is given a distinguishing version number. + If the Document specifies that a particular numbered version of this + License "or any later version" applies to it, you have the option of + following the terms and conditions either of that specified version or + of any later version that has been published (not as a draft) by the + Free Software Foundation. If the Document does not specify a version + number of this License, you may choose any version ever published (not + as a draft) by the Free Software Foundation. + + + ADDENDUM: How to use this License for your documents + + To use this License in a document you have written, include a copy of + the License in the document and put the following copyright and + license notices just after the title page: + + Copyright (c) YEAR YOUR NAME. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.2 + or any later version published by the Free Software Foundation; + with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + + If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, + replace the "with...Texts." line with this: + + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + + If you have Invariant Sections without Cover Texts, or some other + combination of the three, merge those two alternatives to suit the + situation. + + If your document contains nontrivial examples of program code, we + recommend releasing these examples in parallel under your choice of + free software license, such as the GNU General Public License, + to permit their use in free software. json: gfdl-1.2-no-invariants-or-later.json - yml: gfdl-1.2-no-invariants-or-later.yml + yaml: gfdl-1.2-no-invariants-or-later.yml html: gfdl-1.2-no-invariants-or-later.html - text: gfdl-1.2-no-invariants-or-later.LICENSE + license: gfdl-1.2-no-invariants-or-later.LICENSE - license_key: gfdl-1.2-plus + category: Copyleft Limited spdx_license_key: GFDL-1.2-or-later other_spdx_license_keys: - GFDL-1.2+ is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.2 + or any later version published by the Free Software Foundation; + + GNU Free Documentation License + Version 1.2, November 2002 + + + Copyright (C) 2000,2001,2002 Free Software Foundation, Inc. + 51 Franklin St, 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. + + + 0. PREAMBLE + + The purpose of this License is to make a manual, textbook, or other + functional and useful document "free" in the sense of freedom: to + assure everyone the effective freedom to copy and redistribute it, + with or without modifying it, either commercially or noncommercially. + Secondarily, this License preserves for the author and publisher a way + to get credit for their work, while not being considered responsible + for modifications made by others. + + This License is a kind of "copyleft", which means that derivative + works of the document must themselves be free in the same sense. It + complements the GNU General Public License, which is a copyleft + license designed for free software. + + We have designed this License in order to use it for manuals for free + software, because free software needs free documentation: a free + program should come with manuals providing the same freedoms that the + software does. But this License is not limited to software manuals; + it can be used for any textual work, regardless of subject matter or + whether it is published as a printed book. We recommend this License + principally for works whose purpose is instruction or reference. + + + 1. APPLICABILITY AND DEFINITIONS + + This License applies to any manual or other work, in any medium, that + contains a notice placed by the copyright holder saying it can be + distributed under the terms of this License. Such a notice grants a + world-wide, royalty-free license, unlimited in duration, to use that + work under the conditions stated herein. The "Document", below, + refers to any such manual or work. Any member of the public is a + licensee, and is addressed as "you". You accept the license if you + copy, modify or distribute the work in a way requiring permission + under copyright law. + + A "Modified Version" of the Document means any work containing the + Document or a portion of it, either copied verbatim, or with + modifications and/or translated into another language. + + A "Secondary Section" is a named appendix or a front-matter section of + the Document that deals exclusively with the relationship of the + publishers or authors of the Document to the Document's overall subject + (or to related matters) and contains nothing that could fall directly + within that overall subject. (Thus, if the Document is in part a + textbook of mathematics, a Secondary Section may not explain any + mathematics.) The relationship could be a matter of historical + connection with the subject or with related matters, or of legal, + commercial, philosophical, ethical or political position regarding + them. + + The "Invariant Sections" are certain Secondary Sections whose titles + are designated, as being those of Invariant Sections, in the notice + that says that the Document is released under this License. If a + section does not fit the above definition of Secondary then it is not + allowed to be designated as Invariant. The Document may contain zero + Invariant Sections. If the Document does not identify any Invariant + Sections then there are none. + + The "Cover Texts" are certain short passages of text that are listed, + as Front-Cover Texts or Back-Cover Texts, in the notice that says that + the Document is released under this License. A Front-Cover Text may + be at most 5 words, and a Back-Cover Text may be at most 25 words. + + A "Transparent" copy of the Document means a machine-readable copy, + represented in a format whose specification is available to the + general public, that is suitable for revising the document + straightforwardly with generic text editors or (for images composed of + pixels) generic paint programs or (for drawings) some widely available + drawing editor, and that is suitable for input to text formatters or + for automatic translation to a variety of formats suitable for input + to text formatters. A copy made in an otherwise Transparent file + format whose markup, or absence of markup, has been arranged to thwart + or discourage subsequent modification by readers is not Transparent. + An image format is not Transparent if used for any substantial amount + of text. A copy that is not "Transparent" is called "Opaque". + + Examples of suitable formats for Transparent copies include plain + ASCII without markup, Texinfo input format, LaTeX input format, SGML + or XML using a publicly available DTD, and standard-conforming simple + HTML, PostScript or PDF designed for human modification. Examples of + transparent image formats include PNG, XCF and JPG. Opaque formats + include proprietary formats that can be read and edited only by + proprietary word processors, SGML or XML for which the DTD and/or + processing tools are not generally available, and the + machine-generated HTML, PostScript or PDF produced by some word + processors for output purposes only. + + The "Title Page" means, for a printed book, the title page itself, + plus such following pages as are needed to hold, legibly, the material + this License requires to appear in the title page. For works in + formats which do not have any title page as such, "Title Page" means + the text near the most prominent appearance of the work's title, + preceding the beginning of the body of the text. + + A section "Entitled XYZ" means a named subunit of the Document whose + title either is precisely XYZ or contains XYZ in parentheses following + text that translates XYZ in another language. (Here XYZ stands for a + specific section name mentioned below, such as "Acknowledgements", + "Dedications", "Endorsements", or "History".) To "Preserve the Title" + of such a section when you modify the Document means that it remains a + section "Entitled XYZ" according to this definition. + + The Document may include Warranty Disclaimers next to the notice which + states that this License applies to the Document. These Warranty + Disclaimers are considered to be included by reference in this + License, but only as regards disclaiming warranties: any other + implication that these Warranty Disclaimers may have is void and has + no effect on the meaning of this License. + + + 2. VERBATIM COPYING + + You may copy and distribute the Document in any medium, either + commercially or noncommercially, provided that this License, the + copyright notices, and the license notice saying this License applies + to the Document are reproduced in all copies, and that you add no other + conditions whatsoever to those of this License. You may not use + technical measures to obstruct or control the reading or further + copying of the copies you make or distribute. However, you may accept + compensation in exchange for copies. If you distribute a large enough + number of copies you must also follow the conditions in section 3. + + You may also lend copies, under the same conditions stated above, and + you may publicly display copies. + + + 3. COPYING IN QUANTITY + + If you publish printed copies (or copies in media that commonly have + printed covers) of the Document, numbering more than 100, and the + Document's license notice requires Cover Texts, you must enclose the + copies in covers that carry, clearly and legibly, all these Cover + Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on + the back cover. Both covers must also clearly and legibly identify + you as the publisher of these copies. The front cover must present + the full title with all words of the title equally prominent and + visible. You may add other material on the covers in addition. + Copying with changes limited to the covers, as long as they preserve + the title of the Document and satisfy these conditions, can be treated + as verbatim copying in other respects. + + If the required texts for either cover are too voluminous to fit + legibly, you should put the first ones listed (as many as fit + reasonably) on the actual cover, and continue the rest onto adjacent + pages. + + If you publish or distribute Opaque copies of the Document numbering + more than 100, you must either include a machine-readable Transparent + copy along with each Opaque copy, or state in or with each Opaque copy + a computer-network location from which the general network-using + public has access to download using public-standard network protocols + a complete Transparent copy of the Document, free of added material. + If you use the latter option, you must take reasonably prudent steps, + when you begin distribution of Opaque copies in quantity, to ensure + that this Transparent copy will remain thus accessible at the stated + location until at least one year after the last time you distribute an + Opaque copy (directly or through your agents or retailers) of that + edition to the public. + + It is requested, but not required, that you contact the authors of the + Document well before redistributing any large number of copies, to give + them a chance to provide you with an updated version of the Document. + + + 4. MODIFICATIONS + + You may copy and distribute a Modified Version of the Document under + the conditions of sections 2 and 3 above, provided that you release + the Modified Version under precisely this License, with the Modified + Version filling the role of the Document, thus licensing distribution + and modification of the Modified Version to whoever possesses a copy + of it. In addition, you must do these things in the Modified Version: + + A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission. + B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has fewer than five), + unless they release you from this requirement. + C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. + D. Preserve all the copyright notices of the Document. + E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. + F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below. + G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. + H. Include an unaltered copy of this License. + I. Preserve the section Entitled "History", Preserve its Title, and add + to it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section Entitled "History" in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence. + J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the "History" section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission. + K. For any section Entitled "Acknowledgements" or "Dedications", + Preserve the Title of the section, and preserve in the section all + the substance and tone of each of the contributor acknowledgements + and/or dedications given therein. + L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. + M. Delete any section Entitled "Endorsements". Such a section + may not be included in the Modified Version. + N. Do not retitle any existing section to be Entitled "Endorsements" + or to conflict in title with any Invariant Section. + O. Preserve any Warranty Disclaimers. + + If the Modified Version includes new front-matter sections or + appendices that qualify as Secondary Sections and contain no material + copied from the Document, you may at your option designate some or all + of these sections as invariant. To do this, add their titles to the + list of Invariant Sections in the Modified Version's license notice. + These titles must be distinct from any other section titles. + + You may add a section Entitled "Endorsements", provided it contains + nothing but endorsements of your Modified Version by various + parties--for example, statements of peer review or that the text has + been approved by an organization as the authoritative definition of a + standard. + + You may add a passage of up to five words as a Front-Cover Text, and a + passage of up to 25 words as a Back-Cover Text, to the end of the list + of Cover Texts in the Modified Version. Only one passage of + Front-Cover Text and one of Back-Cover Text may be added by (or + through arrangements made by) any one entity. If the Document already + includes a cover text for the same cover, previously added by you or + by arrangement made by the same entity you are acting on behalf of, + you may not add another; but you may replace the old one, on explicit + permission from the previous publisher that added the old one. + + The author(s) and publisher(s) of the Document do not by this License + give permission to use their names for publicity for or to assert or + imply endorsement of any Modified Version. + + + 5. COMBINING DOCUMENTS + + You may combine the Document with other documents released under this + License, under the terms defined in section 4 above for modified + versions, provided that you include in the combination all of the + Invariant Sections of all of the original documents, unmodified, and + list them all as Invariant Sections of your combined work in its + license notice, and that you preserve all their Warranty Disclaimers. + + The combined work need only contain one copy of this License, and + multiple identical Invariant Sections may be replaced with a single + copy. If there are multiple Invariant Sections with the same name but + different contents, make the title of each such section unique by + adding at the end of it, in parentheses, the name of the original + author or publisher of that section if known, or else a unique number. + Make the same adjustment to the section titles in the list of + Invariant Sections in the license notice of the combined work. + + In the combination, you must combine any sections Entitled "History" + in the various original documents, forming one section Entitled + "History"; likewise combine any sections Entitled "Acknowledgements", + and any sections Entitled "Dedications". You must delete all sections + Entitled "Endorsements". + + + 6. COLLECTIONS OF DOCUMENTS + + You may make a collection consisting of the Document and other documents + released under this License, and replace the individual copies of this + License in the various documents with a single copy that is included in + the collection, provided that you follow the rules of this License for + verbatim copying of each of the documents in all other respects. + + You may extract a single document from such a collection, and distribute + it individually under this License, provided you insert a copy of this + License into the extracted document, and follow this License in all + other respects regarding verbatim copying of that document. + + + 7. AGGREGATION WITH INDEPENDENT WORKS + + A compilation of the Document or its derivatives with other separate + and independent documents or works, in or on a volume of a storage or + distribution medium, is called an "aggregate" if the copyright + resulting from the compilation is not used to limit the legal rights + of the compilation's users beyond what the individual works permit. + When the Document is included in an aggregate, this License does not + apply to the other works in the aggregate which are not themselves + derivative works of the Document. + + If the Cover Text requirement of section 3 is applicable to these + copies of the Document, then if the Document is less than one half of + the entire aggregate, the Document's Cover Texts may be placed on + covers that bracket the Document within the aggregate, or the + electronic equivalent of covers if the Document is in electronic form. + Otherwise they must appear on printed covers that bracket the whole + aggregate. + + + 8. TRANSLATION + + Translation is considered a kind of modification, so you may + distribute translations of the Document under the terms of section 4. + Replacing Invariant Sections with translations requires special + permission from their copyright holders, but you may include + translations of some or all Invariant Sections in addition to the + original versions of these Invariant Sections. You may include a + translation of this License, and all the license notices in the + Document, and any Warranty Disclaimers, provided that you also include + the original English version of this License and the original versions + of those notices and disclaimers. In case of a disagreement between + the translation and the original version of this License or a notice + or disclaimer, the original version will prevail. + + If a section in the Document is Entitled "Acknowledgements", + "Dedications", or "History", the requirement (section 4) to Preserve + its Title (section 1) will typically require changing the actual + title. + + + 9. TERMINATION + + You may not copy, modify, sublicense, or distribute the Document except + as expressly provided for under this License. Any other attempt to + copy, modify, sublicense or distribute the Document 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. + + + 10. FUTURE REVISIONS OF THIS LICENSE + + The Free Software Foundation may publish new, revised versions + of the GNU Free Documentation 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. See + http://www.gnu.org/copyleft/. + + Each version of the License is given a distinguishing version number. + If the Document specifies that a particular numbered version of this + License "or any later version" applies to it, you have the option of + following the terms and conditions either of that specified version or + of any later version that has been published (not as a draft) by the + Free Software Foundation. If the Document does not specify a version + number of this License, you may choose any version ever published (not + as a draft) by the Free Software Foundation. + + + ADDENDUM: How to use this License for your documents + + To use this License in a document you have written, include a copy of + the License in the document and put the following copyright and + license notices just after the title page: + + Copyright (c) YEAR YOUR NAME. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.2 + or any later version published by the Free Software Foundation; + with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + + If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, + replace the "with...Texts." line with this: + + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + + If you have Invariant Sections without Cover Texts, or some other + combination of the three, merge those two alternatives to suit the + situation. + + If your document contains nontrivial examples of program code, we + recommend releasing these examples in parallel under your choice of + free software license, such as the GNU General Public License, + to permit their use in free software. json: gfdl-1.2-plus.json - yml: gfdl-1.2-plus.yml + yaml: gfdl-1.2-plus.yml html: gfdl-1.2-plus.html - text: gfdl-1.2-plus.LICENSE + license: gfdl-1.2-plus.LICENSE - license_key: gfdl-1.3 + category: Copyleft Limited spdx_license_key: GFDL-1.3-only other_spdx_license_keys: - GFDL-1.3 is_exception: no is_deprecated: no - category: Copyleft Limited + text: " GNU Free Documentation License\n Version 1.3, 3 November\ + \ 2008\n\n\n Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.\n\ + \ \n Everyone is permitted to copy and distribute verbatim copies\n\ + \ of this license document, but changing it is not allowed.\n\n0. PREAMBLE\n\nThe purpose\ + \ of this License is to make a manual, textbook, or other\nfunctional and useful document\ + \ \"free\" in the sense of freedom: to\nassure everyone the effective freedom to copy and\ + \ redistribute it,\nwith or without modifying it, either commercially or noncommercially.\n\ + Secondarily, this License preserves for the author and publisher a way\nto get credit for\ + \ their work, while not being considered responsible\nfor modifications made by others.\n\ + \nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document\ + \ must themselves be free in the same sense. It\ncomplements the GNU General Public License,\ + \ which is a copyleft\nlicense designed for free software.\n\nWe have designed this License\ + \ in order to use it for manuals for free\nsoftware, because free software needs free documentation:\ + \ a free\nprogram should come with manuals providing the same freedoms that the\nsoftware\ + \ does. But this License is not limited to software manuals;\nit can be used for any textual\ + \ work, regardless of subject matter or\nwhether it is published as a printed book. We\ + \ recommend this License\nprincipally for works whose purpose is instruction or reference.\n\ + \n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work,\ + \ in any medium, that\ncontains a notice placed by the copyright holder saying it can be\n\ + distributed under the terms of this License. Such a notice grants a\nworld-wide, royalty-free\ + \ license, unlimited in duration, to use that\nwork under the conditions stated herein.\ + \ The \"Document\", below,\nrefers to any such manual or work. Any member of the public\ + \ is a\nlicensee, and is addressed as \"you\". You accept the license if you\ncopy, modify\ + \ or distribute the work in a way requiring permission\nunder copyright law.\n\nA \"Modified\ + \ Version\" of the Document means any work containing the\nDocument or a portion of it,\ + \ either copied verbatim, or with\nmodifications and/or translated into another language.\n\ + \nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document\ + \ that deals exclusively with the relationship of the\npublishers or authors of the Document\ + \ to the Document's overall\nsubject (or to related matters) and contains nothing that could\ + \ fall\ndirectly within that overall subject. (Thus, if the Document is in\npart a textbook\ + \ of mathematics, a Secondary Section may not explain\nany mathematics.) The relationship\ + \ could be a matter of historical\nconnection with the subject or with related matters,\ + \ or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\ + \nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated,\ + \ as being those of Invariant Sections, in the notice\nthat says that the Document is released\ + \ under this License. If a\nsection does not fit the above definition of Secondary then\ + \ it is not\nallowed to be designated as Invariant. The Document may contain zero\nInvariant\ + \ Sections. If the Document does not identify any Invariant\nSections then there are none.\n\ + \nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover\ + \ Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under\ + \ this License. A Front-Cover Text may\nbe at most 5 words, and a Back-Cover Text may be\ + \ at most 25 words.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\n\ + represented in a format whose specification is available to the\ngeneral public, that is\ + \ suitable for revising the document\nstraightforwardly with generic text editors or (for\ + \ images composed of\npixels) generic paint programs or (for drawings) some widely available\n\ + drawing editor, and that is suitable for input to text formatters or\nfor automatic translation\ + \ to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise\ + \ Transparent file\nformat whose markup, or absence of markup, has been arranged to thwart\n\ + or discourage subsequent modification by readers is not Transparent.\nAn image format is\ + \ not Transparent if used for any substantial amount\nof text. A copy that is not \"Transparent\"\ + \ is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\n\ + ASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly\ + \ available DTD, and standard-conforming simple\nHTML, PostScript or PDF designed for human\ + \ modification. Examples of\ntransparent image formats include PNG, XCF and JPG. Opaque\ + \ formats\ninclude proprietary formats that can be read and edited only by\nproprietary\ + \ word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally\ + \ available, and the\nmachine-generated HTML, PostScript or PDF produced by some word\n\ + processors for output purposes only.\n\nThe \"Title Page\" means, for a printed book, the\ + \ title page itself,\nplus such following pages as are needed to hold, legibly, the material\n\ + this License requires to appear in the title page. For works in\nformats which do not have\ + \ any title page as such, \"Title Page\" means\nthe text near the most prominent appearance\ + \ of the work's title,\npreceding the beginning of the body of the text.\n\nThe \"publisher\"\ + \ means any person or entity that distributes copies of\nthe Document to the public.\n\n\ + A section \"Entitled XYZ\" means a named subunit of the Document whose\ntitle either is\ + \ precisely XYZ or contains XYZ in parentheses following\ntext that translates XYZ in another\ + \ language. (Here XYZ stands for a\nspecific section name mentioned below, such as \"Acknowledgements\"\ + ,\n\"Dedications\", \"Endorsements\", or \"History\".) To \"Preserve the Title\"\nof such\ + \ a section when you modify the Document means that it remains a\nsection \"Entitled XYZ\"\ + \ according to this definition.\n\nThe Document may include Warranty Disclaimers next to\ + \ the notice which\nstates that this License applies to the Document. These Warranty\n\ + Disclaimers are considered to be included by reference in this\nLicense, but only as regards\ + \ disclaiming warranties: any other\nimplication that these Warranty Disclaimers may have\ + \ is void and has\nno effect on the meaning of this License.\n\n2. VERBATIM COPYING\n\n\ + You may copy and distribute the Document in any medium, either\ncommercially or noncommercially,\ + \ provided that this License, the\ncopyright notices, and the license notice saying this\ + \ License applies\nto the Document are reproduced in all copies, and that you add no\nother\ + \ conditions whatsoever to those of this License. You may not use\ntechnical measures to\ + \ obstruct or control the reading or further\ncopying of the copies you make or distribute.\ + \ However, you may accept\ncompensation in exchange for copies. If you distribute a large\ + \ enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may\ + \ also lend copies, under the same conditions stated above, and\nyou may publicly display\ + \ copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies (or copies in media\ + \ that commonly have\nprinted covers) of the Document, numbering more than 100, and the\n\ + Document's license notice requires Cover Texts, you must enclose the\ncopies in covers that\ + \ carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover,\ + \ and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\n\ + you as the publisher of these copies. The front cover must present\nthe full title with\ + \ all words of the title equally prominent and\nvisible. You may add other material on\ + \ the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\n\ + the title of the Document and satisfy these conditions, can be treated\nas verbatim copying\ + \ in other respects.\n\nIf the required texts for either cover are too voluminous to fit\n\ + legibly, you should put the first ones listed (as many as fit\nreasonably) on the actual\ + \ cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque\ + \ copies of the Document numbering\nmore than 100, you must either include a machine-readable\ + \ Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\n\ + a computer-network location from which the general network-using\npublic has access to download\ + \ using public-standard network protocols\na complete Transparent copy of the Document,\ + \ free of added material.\nIf you use the latter option, you must take reasonably prudent\ + \ steps,\nwhen you begin distribution of Opaque copies in quantity, to ensure\nthat this\ + \ Transparent copy will remain thus accessible at the stated\nlocation until at least one\ + \ year after the last time you distribute an\nOpaque copy (directly or through your agents\ + \ or retailers) of that\nedition to the public.\n\nIt is requested, but not required, that\ + \ you contact the authors of the\nDocument well before redistributing any large number of\ + \ copies, to\ngive them a chance to provide you with an updated version of the\nDocument.\n\ + \n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\n\ + the conditions of sections 2 and 3 above, provided that you release\nthe Modified Version\ + \ under precisely this License, with the Modified\nVersion filling the role of the Document,\ + \ thus licensing distribution\nand modification of the Modified Version to whoever possesses\ + \ a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use\ + \ in the Title Page (and on the covers, if any) a title distinct\n from that of the Document,\ + \ and from those of previous versions\n (which should, if there were any, be listed in\ + \ the History section\n of the Document). You may use the same title as a previous version\n\ + \ if the original publisher of that version gives permission.\nB. List on the Title Page,\ + \ as authors, one or more persons or entities\n responsible for authorship of the modifications\ + \ in the Modified\n Version, together with at least five of the principal authors of the\n\ + \ Document (all of its principal authors, if it has fewer than five),\n unless they\ + \ release you from this requirement.\nC. State on the Title page the name of the publisher\ + \ of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices\ + \ of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent\ + \ to the other copyright notices.\nF. Include, immediately after the copyright notices,\ + \ a license notice\n giving the public permission to use the Modified Version under the\n\ + \ terms of this License, in the form shown in the Addendum below.\nG. Preserve in that\ + \ license notice the full lists of Invariant Sections\n and required Cover Texts given\ + \ in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve\ + \ the section Entitled \"History\", Preserve its Title, and add\n to it an item stating\ + \ at least the title, year, new authors, and\n publisher of the Modified Version as given\ + \ on the Title Page. If\n there is no section Entitled \"History\" in the Document, create\ + \ one\n stating the title, year, authors, and publisher of the Document as\n given on\ + \ its Title Page, then add an item describing the Modified\n Version as stated in the\ + \ previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n\ + \ public access to a Transparent copy of the Document, and likewise\n the network locations\ + \ given in the Document for previous versions\n it was based on. These may be placed\ + \ in the \"History\" section.\n You may omit a network location for a work that was published\ + \ at\n least four years before the Document itself, or if the original\n publisher of\ + \ the version it refers to gives permission.\nK. For any section Entitled \"Acknowledgements\"\ + \ or \"Dedications\",\n Preserve the Title of the section, and preserve in the section\ + \ all\n the substance and tone of each of the contributor acknowledgements\n and/or\ + \ dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n\ + \ unaltered in their text and in their titles. Section numbers\n or the equivalent\ + \ are not considered part of the section titles.\nM. Delete any section Entitled \"Endorsements\"\ + . Such a section\n may not be included in the Modified Version.\nN. Do not retitle any\ + \ existing section to be Entitled \"Endorsements\"\n or to conflict in title with any\ + \ Invariant Section.\nO. Preserve any Warranty Disclaimers.\n\nIf the Modified Version includes\ + \ new front-matter sections or\nappendices that qualify as Secondary Sections and contain\ + \ no material\ncopied from the Document, you may at your option designate some or all\n\ + of these sections as invariant. To do this, add their titles to the\nlist of Invariant\ + \ Sections in the Modified Version's license notice.\nThese titles must be distinct from\ + \ any other section titles.\n\nYou may add a section Entitled \"Endorsements\", provided\ + \ it contains\nnothing but endorsements of your Modified Version by various\nparties--for\ + \ example, statements of peer review or that the text has\nbeen approved by an organization\ + \ as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five\ + \ words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to\ + \ the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover\ + \ Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any\ + \ one entity. If the Document already\nincludes a cover text for the same cover, previously\ + \ added by you or\nby arrangement made by the same entity you are acting on behalf of,\n\ + you may not add another; but you may replace the old one, on explicit\npermission from the\ + \ previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document\ + \ do not by this License\ngive permission to use their names for publicity for or to assert\ + \ or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may\ + \ combine the Document with other documents released under this\nLicense, under the terms\ + \ defined in section 4 above for modified\nversions, provided that you include in the combination\ + \ all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist\ + \ them all as Invariant Sections of your combined work in its\nlicense notice, and that\ + \ you preserve all their Warranty Disclaimers.\n\nThe combined work need only contain one\ + \ copy of this License, and\nmultiple identical Invariant Sections may be replaced with\ + \ a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent\ + \ contents, make the title of each such section unique by\nadding at the end of it, in parentheses,\ + \ the name of the original\nauthor or publisher of that section if known, or else a unique\ + \ number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections\ + \ in the license notice of the combined work.\n\nIn the combination, you must combine any\ + \ sections Entitled \"History\"\nin the various original documents, forming one section\ + \ Entitled\n\"History\"; likewise combine any sections Entitled \"Acknowledgements\",\n\ + and any sections Entitled \"Dedications\". You must delete all sections\nEntitled \"Endorsements\"\ + .\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document\ + \ and other\ndocuments released under this License, and replace the individual\ncopies of\ + \ this License in the various documents with a single copy\nthat is included in the collection,\ + \ provided that you follow the rules\nof this License for verbatim copying of each of the\ + \ documents in all\nother respects.\n\nYou may extract a single document from such a collection,\ + \ and\ndistribute it individually under this License, provided you insert a\ncopy of this\ + \ License into the extracted document, and follow this\nLicense in all other respects regarding\ + \ verbatim copying of that\ndocument.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation\ + \ of the Document or its derivatives with other separate\nand independent documents or works,\ + \ in or on a volume of a storage or\ndistribution medium, is called an \"aggregate\" if\ + \ the copyright\nresulting from the compilation is not used to limit the legal rights\n\ + of the compilation's users beyond what the individual works permit.\nWhen the Document is\ + \ included in an aggregate, this License does not\napply to the other works in the aggregate\ + \ which are not themselves\nderivative works of the Document.\n\nIf the Cover Text requirement\ + \ of section 3 is applicable to these\ncopies of the Document, then if the Document is less\ + \ than one half of\nthe entire aggregate, the Document's Cover Texts may be placed on\n\ + covers that bracket the Document within the aggregate, or the\nelectronic equivalent of\ + \ covers if the Document is in electronic form.\nOtherwise they must appear on printed covers\ + \ that bracket the whole\naggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a\ + \ kind of modification, so you may\ndistribute translations of the Document under the terms\ + \ of section 4.\nReplacing Invariant Sections with translations requires special\npermission\ + \ from their copyright holders, but you may include\ntranslations of some or all Invariant\ + \ Sections in addition to the\noriginal versions of these Invariant Sections. You may include\ + \ a\ntranslation of this License, and all the license notices in the\nDocument, and any\ + \ Warranty Disclaimers, provided that you also include\nthe original English version of\ + \ this License and the original versions\nof those notices and disclaimers. In case of\ + \ a disagreement between\nthe translation and the original version of this License or a\ + \ notice\nor disclaimer, the original version will prevail.\n\nIf a section in the Document\ + \ is Entitled \"Acknowledgements\",\n\"Dedications\", or \"History\", the requirement (section\ + \ 4) to Preserve\nits Title (section 1) will typically require changing the actual\ntitle.\n\ + \n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document\n\ + except as expressly provided under this License. Any attempt\notherwise to copy, modify,\ + \ sublicense, or distribute it is void, and\nwill automatically terminate your rights under\ + \ this License.\n\nHowever, if you cease all violation of this License, then your license\n\ + from a particular copyright holder is reinstated (a) provisionally,\nunless and until the\ + \ copyright holder explicitly and finally\nterminates your license, and (b) permanently,\ + \ if the copyright holder\nfails to notify you of the violation by some reasonable means\ + \ prior to\n60 days after the cessation.\n\nMoreover, your license from a particular copyright\ + \ holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation\ + \ by some reasonable means, this is the first time you have\nreceived notice of violation\ + \ of this License (for any work) from that\ncopyright holder, and you cure the violation\ + \ prior to 30 days after\nyour receipt of the notice.\n\nTermination of your rights under\ + \ this section does not terminate the\nlicenses of parties who have received copies or rights\ + \ from you under\nthis License. If your rights have been terminated and not permanently\n\ + reinstated, receipt of a copy of some or all of the same material does\nnot give you any\ + \ rights to use it.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation\ + \ may publish new, revised versions of the\nGNU Free Documentation License from time to\ + \ time. Such new versions\nwill be similar in spirit to the present version, but may differ\ + \ in\ndetail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\n\ + Each version of the License is given a distinguishing version number.\nIf the Document specifies\ + \ that a particular numbered version of this\nLicense \"or any later version\" applies to\ + \ it, you have the option of\nfollowing the terms and conditions either of that specified\ + \ version or\nof any later version that has been published (not as a draft) by the\nFree\ + \ Software Foundation. If the Document does not specify a version\nnumber of this License,\ + \ you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\ + \ If the Document\nspecifies that a proxy can decide which future versions of this\nLicense\ + \ can be used, that proxy's public statement of acceptance of a\nversion permanently authorizes\ + \ you to choose that version for the\nDocument.\n\n11. RELICENSING\n\n\"Massive Multiauthor\ + \ Collaboration Site\" (or \"MMC Site\") means any\nWorld Wide Web server that publishes\ + \ copyrightable works and also\nprovides prominent facilities for anybody to edit those\ + \ works. A\npublic wiki that anybody can edit is an example of such a server. A\n\"Massive\ + \ Multiauthor Collaboration\" (or \"MMC\") contained in the site\nmeans any set of copyrightable\ + \ works thus published on the MMC site.\n\n\"CC-BY-SA\" means the Creative Commons Attribution-Share\ + \ Alike 3.0 \nlicense published by Creative Commons Corporation, a not-for-profit \ncorporation\ + \ with a principal place of business in San Francisco, \nCalifornia, as well as future copyleft\ + \ versions of that license \npublished by that same organization.\n\n\"Incorporate\" means\ + \ to publish or republish a Document, in whole or in \npart, as part of another Document.\n\ + \nAn MMC is \"eligible for relicensing\" if it is licensed under this \nLicense, and if\ + \ all works that were first published under this License \nsomewhere other than this MMC,\ + \ and subsequently incorporated in whole or \nin part into the MMC, (1) had no cover texts\ + \ or invariant sections, and \n(2) were thus incorporated prior to November 1, 2008.\n\n\ + The operator of an MMC Site may republish an MMC contained in the site\nunder CC-BY-SA on\ + \ the same site at any time before August 1, 2009,\nprovided the MMC is eligible for relicensing.\n\ + \n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document\ + \ you have written, include a copy of\nthe License in the document and put the following\ + \ copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR \ + \ YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n\ + \ under the terms of the GNU Free Documentation License, Version 1.3\n or any later\ + \ version published by the Free Software Foundation;\n with no Invariant Sections, no\ + \ Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in\ + \ the section entitled \"GNU\n Free Documentation License\".\n\nIf you have Invariant\ + \ Sections, Front-Cover Texts and Back-Cover Texts,\nreplace the \"with...Texts.\" line\ + \ with this:\n\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover\ + \ Texts being LIST, and with the Back-Cover Texts being LIST.\n\nIf you have Invariant Sections\ + \ without Cover Texts, or some other\ncombination of the three, merge those two alternatives\ + \ to suit the\nsituation.\n\nIf your document contains nontrivial examples of program code,\ + \ we\nrecommend releasing these examples in parallel under your choice of\nfree software\ + \ license, such as the GNU General Public License,\nto permit their use in free software." json: gfdl-1.3.json - yml: gfdl-1.3.yml + yaml: gfdl-1.3.yml html: gfdl-1.3.html - text: gfdl-1.3.LICENSE + license: gfdl-1.3.LICENSE - license_key: gfdl-1.3-invariants-only + category: Copyleft Limited spdx_license_key: GFDL-1.3-invariants-only other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Permission is granted to copy, distribute\nand/or modify this document under the terms\ + \ of the GNU Free Documentation\nLicense, Version 1.3; with with the Invariant Sections\ + \ being LIST THEIR\nTITLES , with the Front-Cover Texts being LIST , and with the Back-Cover\n\ + Texts being LIST . A copy of the license is included in the section\nentitled \"GNU Free\ + \ Documentation License\".\n\n GNU Free Documentation License\n \ + \ Version 1.3, 3 November 2008\n\n\n Copyright (C) 2000, 2001, 2002, 2007, 2008 Free\ + \ Software Foundation, Inc.\n \n Everyone is permitted to copy and\ + \ distribute verbatim copies\n of this license document, but changing it is not allowed.\n\ + \n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nfunctional\ + \ and useful document \"free\" in the sense of freedom: to\nassure everyone the effective\ + \ freedom to copy and redistribute it,\nwith or without modifying it, either commercially\ + \ or noncommercially.\nSecondarily, this License preserves for the author and publisher\ + \ a way\nto get credit for their work, while not being considered responsible\nfor modifications\ + \ made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\n\ + works of the document must themselves be free in the same sense. It\ncomplements the GNU\ + \ General Public License, which is a copyleft\nlicense designed for free software.\n\nWe\ + \ have designed this License in order to use it for manuals for free\nsoftware, because\ + \ free software needs free documentation: a free\nprogram should come with manuals providing\ + \ the same freedoms that the\nsoftware does. But this License is not limited to software\ + \ manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether\ + \ it is published as a printed book. We recommend this License\nprincipally for works whose\ + \ purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License\ + \ applies to any manual or other work, in any medium, that\ncontains a notice placed by\ + \ the copyright holder saying it can be\ndistributed under the terms of this License. Such\ + \ a notice grants a\nworld-wide, royalty-free license, unlimited in duration, to use that\n\ + work under the conditions stated herein. The \"Document\", below,\nrefers to any such manual\ + \ or work. Any member of the public is a\nlicensee, and is addressed as \"you\". You accept\ + \ the license if you\ncopy, modify or distribute the work in a way requiring permission\n\ + under copyright law.\n\nA \"Modified Version\" of the Document means any work containing\ + \ the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or\ + \ translated into another language.\n\nA \"Secondary Section\" is a named appendix or a\ + \ front-matter section of\nthe Document that deals exclusively with the relationship of\ + \ the\npublishers or authors of the Document to the Document's overall\nsubject (or to related\ + \ matters) and contains nothing that could fall\ndirectly within that overall subject. \ + \ (Thus, if the Document is in\npart a textbook of mathematics, a Secondary Section may\ + \ not explain\nany mathematics.) The relationship could be a matter of historical\nconnection\ + \ with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical\ + \ or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary\ + \ Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\n\ + that says that the Document is released under this License. If a\nsection does not fit\ + \ the above definition of Secondary then it is not\nallowed to be designated as Invariant.\ + \ The Document may contain zero\nInvariant Sections. If the Document does not identify\ + \ any Invariant\nSections then there are none.\n\nThe \"Cover Texts\" are certain short\ + \ passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice\ + \ that says that\nthe Document is released under this License. A Front-Cover Text may\n\ + be at most 5 words, and a Back-Cover Text may be at most 25 words.\n\nA \"Transparent\"\ + \ copy of the Document means a machine-readable copy,\nrepresented in a format whose specification\ + \ is available to the\ngeneral public, that is suitable for revising the document\nstraightforwardly\ + \ with generic text editors or (for images composed of\npixels) generic paint programs or\ + \ (for drawings) some widely available\ndrawing editor, and that is suitable for input to\ + \ text formatters or\nfor automatic translation to a variety of formats suitable for input\n\ + to text formatters. A copy made in an otherwise Transparent file\nformat whose markup,\ + \ or absence of markup, has been arranged to thwart\nor discourage subsequent modification\ + \ by readers is not Transparent.\nAn image format is not Transparent if used for any substantial\ + \ amount\nof text. A copy that is not \"Transparent\" is called \"Opaque\".\n\nExamples\ + \ of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo\ + \ input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming\ + \ simple\nHTML, PostScript or PDF designed for human modification. Examples of\ntransparent\ + \ image formats include PNG, XCF and JPG. Opaque formats\ninclude proprietary formats that\ + \ can be read and edited only by\nproprietary word processors, SGML or XML for which the\ + \ DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML,\ + \ PostScript or PDF produced by some word\nprocessors for output purposes only.\n\nThe \"\ + Title Page\" means, for a printed book, the title page itself,\nplus such following pages\ + \ as are needed to hold, legibly, the material\nthis License requires to appear in the title\ + \ page. For works in\nformats which do not have any title page as such, \"Title Page\"\ + \ means\nthe text near the most prominent appearance of the work's title,\npreceding the\ + \ beginning of the body of the text.\n\nThe \"publisher\" means any person or entity that\ + \ distributes copies of\nthe Document to the public.\n\nA section \"Entitled XYZ\" means\ + \ a named subunit of the Document whose\ntitle either is precisely XYZ or contains XYZ in\ + \ parentheses following\ntext that translates XYZ in another language. (Here XYZ stands\ + \ for a\nspecific section name mentioned below, such as \"Acknowledgements\",\n\"Dedications\"\ + , \"Endorsements\", or \"History\".) To \"Preserve the Title\"\nof such a section when\ + \ you modify the Document means that it remains a\nsection \"Entitled XYZ\" according to\ + \ this definition.\n\nThe Document may include Warranty Disclaimers next to the notice which\n\ + states that this License applies to the Document. These Warranty\nDisclaimers are considered\ + \ to be included by reference in this\nLicense, but only as regards disclaiming warranties:\ + \ any other\nimplication that these Warranty Disclaimers may have is void and has\nno effect\ + \ on the meaning of this License.\n\n2. VERBATIM COPYING\n\nYou may copy and distribute\ + \ the Document in any medium, either\ncommercially or noncommercially, provided that this\ + \ License, the\ncopyright notices, and the license notice saying this License applies\n\ + to the Document are reproduced in all copies, and that you add no\nother conditions whatsoever\ + \ to those of this License. You may not use\ntechnical measures to obstruct or control\ + \ the reading or further\ncopying of the copies you make or distribute. However, you may\ + \ accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber\ + \ of copies you must also follow the conditions in section 3.\n\nYou may also lend copies,\ + \ under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3.\ + \ COPYING IN QUANTITY\n\nIf you publish printed copies (or copies in media that commonly\ + \ have\nprinted covers) of the Document, numbering more than 100, and the\nDocument's license\ + \ notice requires Cover Texts, you must enclose the\ncopies in covers that carry, clearly\ + \ and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover\ + \ Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as\ + \ the publisher of these copies. The front cover must present\nthe full title with all\ + \ words of the title equally prominent and\nvisible. You may add other material on the\ + \ covers in addition.\nCopying with changes limited to the covers, as long as they preserve\n\ + the title of the Document and satisfy these conditions, can be treated\nas verbatim copying\ + \ in other respects.\n\nIf the required texts for either cover are too voluminous to fit\n\ + legibly, you should put the first ones listed (as many as fit\nreasonably) on the actual\ + \ cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque\ + \ copies of the Document numbering\nmore than 100, you must either include a machine-readable\ + \ Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\n\ + a computer-network location from which the general network-using\npublic has access to download\ + \ using public-standard network protocols\na complete Transparent copy of the Document,\ + \ free of added material.\nIf you use the latter option, you must take reasonably prudent\ + \ steps,\nwhen you begin distribution of Opaque copies in quantity, to ensure\nthat this\ + \ Transparent copy will remain thus accessible at the stated\nlocation until at least one\ + \ year after the last time you distribute an\nOpaque copy (directly or through your agents\ + \ or retailers) of that\nedition to the public.\n\nIt is requested, but not required, that\ + \ you contact the authors of the\nDocument well before redistributing any large number of\ + \ copies, to\ngive them a chance to provide you with an updated version of the\nDocument.\n\ + \n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\n\ + the conditions of sections 2 and 3 above, provided that you release\nthe Modified Version\ + \ under precisely this License, with the Modified\nVersion filling the role of the Document,\ + \ thus licensing distribution\nand modification of the Modified Version to whoever possesses\ + \ a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use\ + \ in the Title Page (and on the covers, if any) a title distinct\n from that of the Document,\ + \ and from those of previous versions\n (which should, if there were any, be listed in\ + \ the History section\n of the Document). You may use the same title as a previous version\n\ + \ if the original publisher of that version gives permission.\nB. List on the Title Page,\ + \ as authors, one or more persons or entities\n responsible for authorship of the modifications\ + \ in the Modified\n Version, together with at least five of the principal authors of the\n\ + \ Document (all of its principal authors, if it has fewer than five),\n unless they\ + \ release you from this requirement.\nC. State on the Title page the name of the publisher\ + \ of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices\ + \ of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent\ + \ to the other copyright notices.\nF. Include, immediately after the copyright notices,\ + \ a license notice\n giving the public permission to use the Modified Version under the\n\ + \ terms of this License, in the form shown in the Addendum below.\nG. Preserve in that\ + \ license notice the full lists of Invariant Sections\n and required Cover Texts given\ + \ in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve\ + \ the section Entitled \"History\", Preserve its Title, and add\n to it an item stating\ + \ at least the title, year, new authors, and\n publisher of the Modified Version as given\ + \ on the Title Page. If\n there is no section Entitled \"History\" in the Document, create\ + \ one\n stating the title, year, authors, and publisher of the Document as\n given on\ + \ its Title Page, then add an item describing the Modified\n Version as stated in the\ + \ previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n\ + \ public access to a Transparent copy of the Document, and likewise\n the network locations\ + \ given in the Document for previous versions\n it was based on. These may be placed\ + \ in the \"History\" section.\n You may omit a network location for a work that was published\ + \ at\n least four years before the Document itself, or if the original\n publisher of\ + \ the version it refers to gives permission.\nK. For any section Entitled \"Acknowledgements\"\ + \ or \"Dedications\",\n Preserve the Title of the section, and preserve in the section\ + \ all\n the substance and tone of each of the contributor acknowledgements\n and/or\ + \ dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n\ + \ unaltered in their text and in their titles. Section numbers\n or the equivalent\ + \ are not considered part of the section titles.\nM. Delete any section Entitled \"Endorsements\"\ + . Such a section\n may not be included in the Modified Version.\nN. Do not retitle any\ + \ existing section to be Entitled \"Endorsements\"\n or to conflict in title with any\ + \ Invariant Section.\nO. Preserve any Warranty Disclaimers.\n\nIf the Modified Version includes\ + \ new front-matter sections or\nappendices that qualify as Secondary Sections and contain\ + \ no material\ncopied from the Document, you may at your option designate some or all\n\ + of these sections as invariant. To do this, add their titles to the\nlist of Invariant\ + \ Sections in the Modified Version's license notice.\nThese titles must be distinct from\ + \ any other section titles.\n\nYou may add a section Entitled \"Endorsements\", provided\ + \ it contains\nnothing but endorsements of your Modified Version by various\nparties--for\ + \ example, statements of peer review or that the text has\nbeen approved by an organization\ + \ as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five\ + \ words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to\ + \ the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover\ + \ Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any\ + \ one entity. If the Document already\nincludes a cover text for the same cover, previously\ + \ added by you or\nby arrangement made by the same entity you are acting on behalf of,\n\ + you may not add another; but you may replace the old one, on explicit\npermission from the\ + \ previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document\ + \ do not by this License\ngive permission to use their names for publicity for or to assert\ + \ or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may\ + \ combine the Document with other documents released under this\nLicense, under the terms\ + \ defined in section 4 above for modified\nversions, provided that you include in the combination\ + \ all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist\ + \ them all as Invariant Sections of your combined work in its\nlicense notice, and that\ + \ you preserve all their Warranty Disclaimers.\n\nThe combined work need only contain one\ + \ copy of this License, and\nmultiple identical Invariant Sections may be replaced with\ + \ a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent\ + \ contents, make the title of each such section unique by\nadding at the end of it, in parentheses,\ + \ the name of the original\nauthor or publisher of that section if known, or else a unique\ + \ number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections\ + \ in the license notice of the combined work.\n\nIn the combination, you must combine any\ + \ sections Entitled \"History\"\nin the various original documents, forming one section\ + \ Entitled\n\"History\"; likewise combine any sections Entitled \"Acknowledgements\",\n\ + and any sections Entitled \"Dedications\". You must delete all sections\nEntitled \"Endorsements\"\ + .\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document\ + \ and other\ndocuments released under this License, and replace the individual\ncopies of\ + \ this License in the various documents with a single copy\nthat is included in the collection,\ + \ provided that you follow the rules\nof this License for verbatim copying of each of the\ + \ documents in all\nother respects.\n\nYou may extract a single document from such a collection,\ + \ and\ndistribute it individually under this License, provided you insert a\ncopy of this\ + \ License into the extracted document, and follow this\nLicense in all other respects regarding\ + \ verbatim copying of that\ndocument.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation\ + \ of the Document or its derivatives with other separate\nand independent documents or works,\ + \ in or on a volume of a storage or\ndistribution medium, is called an \"aggregate\" if\ + \ the copyright\nresulting from the compilation is not used to limit the legal rights\n\ + of the compilation's users beyond what the individual works permit.\nWhen the Document is\ + \ included in an aggregate, this License does not\napply to the other works in the aggregate\ + \ which are not themselves\nderivative works of the Document.\n\nIf the Cover Text requirement\ + \ of section 3 is applicable to these\ncopies of the Document, then if the Document is less\ + \ than one half of\nthe entire aggregate, the Document's Cover Texts may be placed on\n\ + covers that bracket the Document within the aggregate, or the\nelectronic equivalent of\ + \ covers if the Document is in electronic form.\nOtherwise they must appear on printed covers\ + \ that bracket the whole\naggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a\ + \ kind of modification, so you may\ndistribute translations of the Document under the terms\ + \ of section 4.\nReplacing Invariant Sections with translations requires special\npermission\ + \ from their copyright holders, but you may include\ntranslations of some or all Invariant\ + \ Sections in addition to the\noriginal versions of these Invariant Sections. You may include\ + \ a\ntranslation of this License, and all the license notices in the\nDocument, and any\ + \ Warranty Disclaimers, provided that you also include\nthe original English version of\ + \ this License and the original versions\nof those notices and disclaimers. In case of\ + \ a disagreement between\nthe translation and the original version of this License or a\ + \ notice\nor disclaimer, the original version will prevail.\n\nIf a section in the Document\ + \ is Entitled \"Acknowledgements\",\n\"Dedications\", or \"History\", the requirement (section\ + \ 4) to Preserve\nits Title (section 1) will typically require changing the actual\ntitle.\n\ + \n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document\n\ + except as expressly provided under this License. Any attempt\notherwise to copy, modify,\ + \ sublicense, or distribute it is void, and\nwill automatically terminate your rights under\ + \ this License.\n\nHowever, if you cease all violation of this License, then your license\n\ + from a particular copyright holder is reinstated (a) provisionally,\nunless and until the\ + \ copyright holder explicitly and finally\nterminates your license, and (b) permanently,\ + \ if the copyright holder\nfails to notify you of the violation by some reasonable means\ + \ prior to\n60 days after the cessation.\n\nMoreover, your license from a particular copyright\ + \ holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation\ + \ by some reasonable means, this is the first time you have\nreceived notice of violation\ + \ of this License (for any work) from that\ncopyright holder, and you cure the violation\ + \ prior to 30 days after\nyour receipt of the notice.\n\nTermination of your rights under\ + \ this section does not terminate the\nlicenses of parties who have received copies or rights\ + \ from you under\nthis License. If your rights have been terminated and not permanently\n\ + reinstated, receipt of a copy of some or all of the same material does\nnot give you any\ + \ rights to use it.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation\ + \ may publish new, revised versions of the\nGNU Free Documentation License from time to\ + \ time. Such new versions\nwill be similar in spirit to the present version, but may differ\ + \ in\ndetail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\n\ + Each version of the License is given a distinguishing version number.\nIf the Document specifies\ + \ that a particular numbered version of this\nLicense \"or any later version\" applies to\ + \ it, you have the option of\nfollowing the terms and conditions either of that specified\ + \ version or\nof any later version that has been published (not as a draft) by the\nFree\ + \ Software Foundation. If the Document does not specify a version\nnumber of this License,\ + \ you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\ + \ If the Document\nspecifies that a proxy can decide which future versions of this\nLicense\ + \ can be used, that proxy's public statement of acceptance of a\nversion permanently authorizes\ + \ you to choose that version for the\nDocument.\n\n11. RELICENSING\n\n\"Massive Multiauthor\ + \ Collaboration Site\" (or \"MMC Site\") means any\nWorld Wide Web server that publishes\ + \ copyrightable works and also\nprovides prominent facilities for anybody to edit those\ + \ works. A\npublic wiki that anybody can edit is an example of such a server. A\n\"Massive\ + \ Multiauthor Collaboration\" (or \"MMC\") contained in the site\nmeans any set of copyrightable\ + \ works thus published on the MMC site.\n\n\"CC-BY-SA\" means the Creative Commons Attribution-Share\ + \ Alike 3.0 \nlicense published by Creative Commons Corporation, a not-for-profit \ncorporation\ + \ with a principal place of business in San Francisco, \nCalifornia, as well as future copyleft\ + \ versions of that license \npublished by that same organization.\n\n\"Incorporate\" means\ + \ to publish or republish a Document, in whole or in \npart, as part of another Document.\n\ + \nAn MMC is \"eligible for relicensing\" if it is licensed under this \nLicense, and if\ + \ all works that were first published under this License \nsomewhere other than this MMC,\ + \ and subsequently incorporated in whole or \nin part into the MMC, (1) had no cover texts\ + \ or invariant sections, and \n(2) were thus incorporated prior to November 1, 2008.\n\n\ + The operator of an MMC Site may republish an MMC contained in the site\nunder CC-BY-SA on\ + \ the same site at any time before August 1, 2009,\nprovided the MMC is eligible for relicensing.\n\ + \n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document\ + \ you have written, include a copy of\nthe License in the document and put the following\ + \ copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR \ + \ YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n\ + \ under the terms of the GNU Free Documentation License, Version 1.3\n or any later\ + \ version published by the Free Software Foundation;\n with no Invariant Sections, no\ + \ Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in\ + \ the section entitled \"GNU\n Free Documentation License\".\n\nIf you have Invariant\ + \ Sections, Front-Cover Texts and Back-Cover Texts,\nreplace the \"with...Texts.\" line\ + \ with this:\n\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover\ + \ Texts being LIST, and with the Back-Cover Texts being LIST.\n\nIf you have Invariant Sections\ + \ without Cover Texts, or some other\ncombination of the three, merge those two alternatives\ + \ to suit the\nsituation.\n\nIf your document contains nontrivial examples of program code,\ + \ we\nrecommend releasing these examples in parallel under your choice of\nfree software\ + \ license, such as the GNU General Public License,\nto permit their use in free software." json: gfdl-1.3-invariants-only.json - yml: gfdl-1.3-invariants-only.yml + yaml: gfdl-1.3-invariants-only.yml html: gfdl-1.3-invariants-only.html - text: gfdl-1.3-invariants-only.LICENSE + license: gfdl-1.3-invariants-only.LICENSE - license_key: gfdl-1.3-invariants-or-later + category: Copyleft Limited spdx_license_key: GFDL-1.3-invariants-or-later other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Permission is granted to copy, distribute\nand/or modify this document under the terms\ + \ of the GNU Free Documentation\nLicense, Version 1.3 or any later version published by\ + \ the Free Software\nFoundation; with the Invariant Sections being LIST THEIR TITLES , with\ + \ the\nFront-Cover Texts being LIST , and with the Back-Cover Texts being LIST . A\ncopy\ + \ of the license is included in the section entitled \"GNU Free\nDocumentation License\"\ + .\n\n GNU Free Documentation License\n Version 1.3, 3 November\ + \ 2008\n\n\n Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.\n\ + \ \n Everyone is permitted to copy and distribute verbatim copies\n\ + \ of this license document, but changing it is not allowed.\n\n0. PREAMBLE\n\nThe purpose\ + \ of this License is to make a manual, textbook, or other\nfunctional and useful document\ + \ \"free\" in the sense of freedom: to\nassure everyone the effective freedom to copy and\ + \ redistribute it,\nwith or without modifying it, either commercially or noncommercially.\n\ + Secondarily, this License preserves for the author and publisher a way\nto get credit for\ + \ their work, while not being considered responsible\nfor modifications made by others.\n\ + \nThis License is a kind of \"copyleft\", which means that derivative\nworks of the document\ + \ must themselves be free in the same sense. It\ncomplements the GNU General Public License,\ + \ which is a copyleft\nlicense designed for free software.\n\nWe have designed this License\ + \ in order to use it for manuals for free\nsoftware, because free software needs free documentation:\ + \ a free\nprogram should come with manuals providing the same freedoms that the\nsoftware\ + \ does. But this License is not limited to software manuals;\nit can be used for any textual\ + \ work, regardless of subject matter or\nwhether it is published as a printed book. We\ + \ recommend this License\nprincipally for works whose purpose is instruction or reference.\n\ + \n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License applies to any manual or other work,\ + \ in any medium, that\ncontains a notice placed by the copyright holder saying it can be\n\ + distributed under the terms of this License. Such a notice grants a\nworld-wide, royalty-free\ + \ license, unlimited in duration, to use that\nwork under the conditions stated herein.\ + \ The \"Document\", below,\nrefers to any such manual or work. Any member of the public\ + \ is a\nlicensee, and is addressed as \"you\". You accept the license if you\ncopy, modify\ + \ or distribute the work in a way requiring permission\nunder copyright law.\n\nA \"Modified\ + \ Version\" of the Document means any work containing the\nDocument or a portion of it,\ + \ either copied verbatim, or with\nmodifications and/or translated into another language.\n\ + \nA \"Secondary Section\" is a named appendix or a front-matter section of\nthe Document\ + \ that deals exclusively with the relationship of the\npublishers or authors of the Document\ + \ to the Document's overall\nsubject (or to related matters) and contains nothing that could\ + \ fall\ndirectly within that overall subject. (Thus, if the Document is in\npart a textbook\ + \ of mathematics, a Secondary Section may not explain\nany mathematics.) The relationship\ + \ could be a matter of historical\nconnection with the subject or with related matters,\ + \ or of legal,\ncommercial, philosophical, ethical or political position regarding\nthem.\n\ + \nThe \"Invariant Sections\" are certain Secondary Sections whose titles\nare designated,\ + \ as being those of Invariant Sections, in the notice\nthat says that the Document is released\ + \ under this License. If a\nsection does not fit the above definition of Secondary then\ + \ it is not\nallowed to be designated as Invariant. The Document may contain zero\nInvariant\ + \ Sections. If the Document does not identify any Invariant\nSections then there are none.\n\ + \nThe \"Cover Texts\" are certain short passages of text that are listed,\nas Front-Cover\ + \ Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under\ + \ this License. A Front-Cover Text may\nbe at most 5 words, and a Back-Cover Text may be\ + \ at most 25 words.\n\nA \"Transparent\" copy of the Document means a machine-readable copy,\n\ + represented in a format whose specification is available to the\ngeneral public, that is\ + \ suitable for revising the document\nstraightforwardly with generic text editors or (for\ + \ images composed of\npixels) generic paint programs or (for drawings) some widely available\n\ + drawing editor, and that is suitable for input to text formatters or\nfor automatic translation\ + \ to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise\ + \ Transparent file\nformat whose markup, or absence of markup, has been arranged to thwart\n\ + or discourage subsequent modification by readers is not Transparent.\nAn image format is\ + \ not Transparent if used for any substantial amount\nof text. A copy that is not \"Transparent\"\ + \ is called \"Opaque\".\n\nExamples of suitable formats for Transparent copies include plain\n\ + ASCII without markup, Texinfo input format, LaTeX input format, SGML\nor XML using a publicly\ + \ available DTD, and standard-conforming simple\nHTML, PostScript or PDF designed for human\ + \ modification. Examples of\ntransparent image formats include PNG, XCF and JPG. Opaque\ + \ formats\ninclude proprietary formats that can be read and edited only by\nproprietary\ + \ word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally\ + \ available, and the\nmachine-generated HTML, PostScript or PDF produced by some word\n\ + processors for output purposes only.\n\nThe \"Title Page\" means, for a printed book, the\ + \ title page itself,\nplus such following pages as are needed to hold, legibly, the material\n\ + this License requires to appear in the title page. For works in\nformats which do not have\ + \ any title page as such, \"Title Page\" means\nthe text near the most prominent appearance\ + \ of the work's title,\npreceding the beginning of the body of the text.\n\nThe \"publisher\"\ + \ means any person or entity that distributes copies of\nthe Document to the public.\n\n\ + A section \"Entitled XYZ\" means a named subunit of the Document whose\ntitle either is\ + \ precisely XYZ or contains XYZ in parentheses following\ntext that translates XYZ in another\ + \ language. (Here XYZ stands for a\nspecific section name mentioned below, such as \"Acknowledgements\"\ + ,\n\"Dedications\", \"Endorsements\", or \"History\".) To \"Preserve the Title\"\nof such\ + \ a section when you modify the Document means that it remains a\nsection \"Entitled XYZ\"\ + \ according to this definition.\n\nThe Document may include Warranty Disclaimers next to\ + \ the notice which\nstates that this License applies to the Document. These Warranty\n\ + Disclaimers are considered to be included by reference in this\nLicense, but only as regards\ + \ disclaiming warranties: any other\nimplication that these Warranty Disclaimers may have\ + \ is void and has\nno effect on the meaning of this License.\n\n2. VERBATIM COPYING\n\n\ + You may copy and distribute the Document in any medium, either\ncommercially or noncommercially,\ + \ provided that this License, the\ncopyright notices, and the license notice saying this\ + \ License applies\nto the Document are reproduced in all copies, and that you add no\nother\ + \ conditions whatsoever to those of this License. You may not use\ntechnical measures to\ + \ obstruct or control the reading or further\ncopying of the copies you make or distribute.\ + \ However, you may accept\ncompensation in exchange for copies. If you distribute a large\ + \ enough\nnumber of copies you must also follow the conditions in section 3.\n\nYou may\ + \ also lend copies, under the same conditions stated above, and\nyou may publicly display\ + \ copies.\n\n\n3. COPYING IN QUANTITY\n\nIf you publish printed copies (or copies in media\ + \ that commonly have\nprinted covers) of the Document, numbering more than 100, and the\n\ + Document's license notice requires Cover Texts, you must enclose the\ncopies in covers that\ + \ carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover,\ + \ and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\n\ + you as the publisher of these copies. The front cover must present\nthe full title with\ + \ all words of the title equally prominent and\nvisible. You may add other material on\ + \ the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\n\ + the title of the Document and satisfy these conditions, can be treated\nas verbatim copying\ + \ in other respects.\n\nIf the required texts for either cover are too voluminous to fit\n\ + legibly, you should put the first ones listed (as many as fit\nreasonably) on the actual\ + \ cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque\ + \ copies of the Document numbering\nmore than 100, you must either include a machine-readable\ + \ Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\n\ + a computer-network location from which the general network-using\npublic has access to download\ + \ using public-standard network protocols\na complete Transparent copy of the Document,\ + \ free of added material.\nIf you use the latter option, you must take reasonably prudent\ + \ steps,\nwhen you begin distribution of Opaque copies in quantity, to ensure\nthat this\ + \ Transparent copy will remain thus accessible at the stated\nlocation until at least one\ + \ year after the last time you distribute an\nOpaque copy (directly or through your agents\ + \ or retailers) of that\nedition to the public.\n\nIt is requested, but not required, that\ + \ you contact the authors of the\nDocument well before redistributing any large number of\ + \ copies, to\ngive them a chance to provide you with an updated version of the\nDocument.\n\ + \n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\n\ + the conditions of sections 2 and 3 above, provided that you release\nthe Modified Version\ + \ under precisely this License, with the Modified\nVersion filling the role of the Document,\ + \ thus licensing distribution\nand modification of the Modified Version to whoever possesses\ + \ a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use\ + \ in the Title Page (and on the covers, if any) a title distinct\n from that of the Document,\ + \ and from those of previous versions\n (which should, if there were any, be listed in\ + \ the History section\n of the Document). You may use the same title as a previous version\n\ + \ if the original publisher of that version gives permission.\nB. List on the Title Page,\ + \ as authors, one or more persons or entities\n responsible for authorship of the modifications\ + \ in the Modified\n Version, together with at least five of the principal authors of the\n\ + \ Document (all of its principal authors, if it has fewer than five),\n unless they\ + \ release you from this requirement.\nC. State on the Title page the name of the publisher\ + \ of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices\ + \ of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent\ + \ to the other copyright notices.\nF. Include, immediately after the copyright notices,\ + \ a license notice\n giving the public permission to use the Modified Version under the\n\ + \ terms of this License, in the form shown in the Addendum below.\nG. Preserve in that\ + \ license notice the full lists of Invariant Sections\n and required Cover Texts given\ + \ in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve\ + \ the section Entitled \"History\", Preserve its Title, and add\n to it an item stating\ + \ at least the title, year, new authors, and\n publisher of the Modified Version as given\ + \ on the Title Page. If\n there is no section Entitled \"History\" in the Document, create\ + \ one\n stating the title, year, authors, and publisher of the Document as\n given on\ + \ its Title Page, then add an item describing the Modified\n Version as stated in the\ + \ previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n\ + \ public access to a Transparent copy of the Document, and likewise\n the network locations\ + \ given in the Document for previous versions\n it was based on. These may be placed\ + \ in the \"History\" section.\n You may omit a network location for a work that was published\ + \ at\n least four years before the Document itself, or if the original\n publisher of\ + \ the version it refers to gives permission.\nK. For any section Entitled \"Acknowledgements\"\ + \ or \"Dedications\",\n Preserve the Title of the section, and preserve in the section\ + \ all\n the substance and tone of each of the contributor acknowledgements\n and/or\ + \ dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n\ + \ unaltered in their text and in their titles. Section numbers\n or the equivalent\ + \ are not considered part of the section titles.\nM. Delete any section Entitled \"Endorsements\"\ + . Such a section\n may not be included in the Modified Version.\nN. Do not retitle any\ + \ existing section to be Entitled \"Endorsements\"\n or to conflict in title with any\ + \ Invariant Section.\nO. Preserve any Warranty Disclaimers.\n\nIf the Modified Version includes\ + \ new front-matter sections or\nappendices that qualify as Secondary Sections and contain\ + \ no material\ncopied from the Document, you may at your option designate some or all\n\ + of these sections as invariant. To do this, add their titles to the\nlist of Invariant\ + \ Sections in the Modified Version's license notice.\nThese titles must be distinct from\ + \ any other section titles.\n\nYou may add a section Entitled \"Endorsements\", provided\ + \ it contains\nnothing but endorsements of your Modified Version by various\nparties--for\ + \ example, statements of peer review or that the text has\nbeen approved by an organization\ + \ as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five\ + \ words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to\ + \ the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover\ + \ Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any\ + \ one entity. If the Document already\nincludes a cover text for the same cover, previously\ + \ added by you or\nby arrangement made by the same entity you are acting on behalf of,\n\ + you may not add another; but you may replace the old one, on explicit\npermission from the\ + \ previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document\ + \ do not by this License\ngive permission to use their names for publicity for or to assert\ + \ or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may\ + \ combine the Document with other documents released under this\nLicense, under the terms\ + \ defined in section 4 above for modified\nversions, provided that you include in the combination\ + \ all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist\ + \ them all as Invariant Sections of your combined work in its\nlicense notice, and that\ + \ you preserve all their Warranty Disclaimers.\n\nThe combined work need only contain one\ + \ copy of this License, and\nmultiple identical Invariant Sections may be replaced with\ + \ a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent\ + \ contents, make the title of each such section unique by\nadding at the end of it, in parentheses,\ + \ the name of the original\nauthor or publisher of that section if known, or else a unique\ + \ number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections\ + \ in the license notice of the combined work.\n\nIn the combination, you must combine any\ + \ sections Entitled \"History\"\nin the various original documents, forming one section\ + \ Entitled\n\"History\"; likewise combine any sections Entitled \"Acknowledgements\",\n\ + and any sections Entitled \"Dedications\". You must delete all sections\nEntitled \"Endorsements\"\ + .\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document\ + \ and other\ndocuments released under this License, and replace the individual\ncopies of\ + \ this License in the various documents with a single copy\nthat is included in the collection,\ + \ provided that you follow the rules\nof this License for verbatim copying of each of the\ + \ documents in all\nother respects.\n\nYou may extract a single document from such a collection,\ + \ and\ndistribute it individually under this License, provided you insert a\ncopy of this\ + \ License into the extracted document, and follow this\nLicense in all other respects regarding\ + \ verbatim copying of that\ndocument.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation\ + \ of the Document or its derivatives with other separate\nand independent documents or works,\ + \ in or on a volume of a storage or\ndistribution medium, is called an \"aggregate\" if\ + \ the copyright\nresulting from the compilation is not used to limit the legal rights\n\ + of the compilation's users beyond what the individual works permit.\nWhen the Document is\ + \ included in an aggregate, this License does not\napply to the other works in the aggregate\ + \ which are not themselves\nderivative works of the Document.\n\nIf the Cover Text requirement\ + \ of section 3 is applicable to these\ncopies of the Document, then if the Document is less\ + \ than one half of\nthe entire aggregate, the Document's Cover Texts may be placed on\n\ + covers that bracket the Document within the aggregate, or the\nelectronic equivalent of\ + \ covers if the Document is in electronic form.\nOtherwise they must appear on printed covers\ + \ that bracket the whole\naggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a\ + \ kind of modification, so you may\ndistribute translations of the Document under the terms\ + \ of section 4.\nReplacing Invariant Sections with translations requires special\npermission\ + \ from their copyright holders, but you may include\ntranslations of some or all Invariant\ + \ Sections in addition to the\noriginal versions of these Invariant Sections. You may include\ + \ a\ntranslation of this License, and all the license notices in the\nDocument, and any\ + \ Warranty Disclaimers, provided that you also include\nthe original English version of\ + \ this License and the original versions\nof those notices and disclaimers. In case of\ + \ a disagreement between\nthe translation and the original version of this License or a\ + \ notice\nor disclaimer, the original version will prevail.\n\nIf a section in the Document\ + \ is Entitled \"Acknowledgements\",\n\"Dedications\", or \"History\", the requirement (section\ + \ 4) to Preserve\nits Title (section 1) will typically require changing the actual\ntitle.\n\ + \n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document\n\ + except as expressly provided under this License. Any attempt\notherwise to copy, modify,\ + \ sublicense, or distribute it is void, and\nwill automatically terminate your rights under\ + \ this License.\n\nHowever, if you cease all violation of this License, then your license\n\ + from a particular copyright holder is reinstated (a) provisionally,\nunless and until the\ + \ copyright holder explicitly and finally\nterminates your license, and (b) permanently,\ + \ if the copyright holder\nfails to notify you of the violation by some reasonable means\ + \ prior to\n60 days after the cessation.\n\nMoreover, your license from a particular copyright\ + \ holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation\ + \ by some reasonable means, this is the first time you have\nreceived notice of violation\ + \ of this License (for any work) from that\ncopyright holder, and you cure the violation\ + \ prior to 30 days after\nyour receipt of the notice.\n\nTermination of your rights under\ + \ this section does not terminate the\nlicenses of parties who have received copies or rights\ + \ from you under\nthis License. If your rights have been terminated and not permanently\n\ + reinstated, receipt of a copy of some or all of the same material does\nnot give you any\ + \ rights to use it.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation\ + \ may publish new, revised versions of the\nGNU Free Documentation License from time to\ + \ time. Such new versions\nwill be similar in spirit to the present version, but may differ\ + \ in\ndetail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\n\ + Each version of the License is given a distinguishing version number.\nIf the Document specifies\ + \ that a particular numbered version of this\nLicense \"or any later version\" applies to\ + \ it, you have the option of\nfollowing the terms and conditions either of that specified\ + \ version or\nof any later version that has been published (not as a draft) by the\nFree\ + \ Software Foundation. If the Document does not specify a version\nnumber of this License,\ + \ you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\ + \ If the Document\nspecifies that a proxy can decide which future versions of this\nLicense\ + \ can be used, that proxy's public statement of acceptance of a\nversion permanently authorizes\ + \ you to choose that version for the\nDocument.\n\n11. RELICENSING\n\n\"Massive Multiauthor\ + \ Collaboration Site\" (or \"MMC Site\") means any\nWorld Wide Web server that publishes\ + \ copyrightable works and also\nprovides prominent facilities for anybody to edit those\ + \ works. A\npublic wiki that anybody can edit is an example of such a server. A\n\"Massive\ + \ Multiauthor Collaboration\" (or \"MMC\") contained in the site\nmeans any set of copyrightable\ + \ works thus published on the MMC site.\n\n\"CC-BY-SA\" means the Creative Commons Attribution-Share\ + \ Alike 3.0 \nlicense published by Creative Commons Corporation, a not-for-profit \ncorporation\ + \ with a principal place of business in San Francisco, \nCalifornia, as well as future copyleft\ + \ versions of that license \npublished by that same organization.\n\n\"Incorporate\" means\ + \ to publish or republish a Document, in whole or in \npart, as part of another Document.\n\ + \nAn MMC is \"eligible for relicensing\" if it is licensed under this \nLicense, and if\ + \ all works that were first published under this License \nsomewhere other than this MMC,\ + \ and subsequently incorporated in whole or \nin part into the MMC, (1) had no cover texts\ + \ or invariant sections, and \n(2) were thus incorporated prior to November 1, 2008.\n\n\ + The operator of an MMC Site may republish an MMC contained in the site\nunder CC-BY-SA on\ + \ the same site at any time before August 1, 2009,\nprovided the MMC is eligible for relicensing.\n\ + \n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document\ + \ you have written, include a copy of\nthe License in the document and put the following\ + \ copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR \ + \ YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n\ + \ under the terms of the GNU Free Documentation License, Version 1.3\n or any later\ + \ version published by the Free Software Foundation;\n with no Invariant Sections, no\ + \ Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in\ + \ the section entitled \"GNU\n Free Documentation License\".\n\nIf you have Invariant\ + \ Sections, Front-Cover Texts and Back-Cover Texts,\nreplace the \"with...Texts.\" line\ + \ with this:\n\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover\ + \ Texts being LIST, and with the Back-Cover Texts being LIST.\n\nIf you have Invariant Sections\ + \ without Cover Texts, or some other\ncombination of the three, merge those two alternatives\ + \ to suit the\nsituation.\n\nIf your document contains nontrivial examples of program code,\ + \ we\nrecommend releasing these examples in parallel under your choice of\nfree software\ + \ license, such as the GNU General Public License,\nto permit their use in free software." json: gfdl-1.3-invariants-or-later.json - yml: gfdl-1.3-invariants-or-later.yml + yaml: gfdl-1.3-invariants-or-later.yml html: gfdl-1.3-invariants-or-later.html - text: gfdl-1.3-invariants-or-later.LICENSE + license: gfdl-1.3-invariants-or-later.LICENSE - license_key: gfdl-1.3-no-invariants-only + category: Copyleft Limited spdx_license_key: GFDL-1.3-no-invariants-only other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Permission is granted to copy, distribute\nand/or modify this document under the terms\ + \ of the GNU Free Documentation\nLicense, Version 1.3; with no Invariant Sections, no Front-Cover\ + \ Texts, and\nno Back-Cover Texts. A copy of the license is included in the section\nentitled\ + \ \"GNU Free Documentation License\".\n\n GNU Free Documentation License\n\ + \ Version 1.3, 3 November 2008\n\n\n Copyright (C) 2000, 2001, 2002, 2007,\ + \ 2008 Free Software Foundation, Inc.\n \n Everyone is permitted to\ + \ copy and distribute verbatim copies\n of this license document, but changing it is not\ + \ allowed.\n\n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook,\ + \ or other\nfunctional and useful document \"free\" in the sense of freedom: to\nassure\ + \ everyone the effective freedom to copy and redistribute it,\nwith or without modifying\ + \ it, either commercially or noncommercially.\nSecondarily, this License preserves for the\ + \ author and publisher a way\nto get credit for their work, while not being considered responsible\n\ + for modifications made by others.\n\nThis License is a kind of \"copyleft\", which means\ + \ that derivative\nworks of the document must themselves be free in the same sense. It\n\ + complements the GNU General Public License, which is a copyleft\nlicense designed for free\ + \ software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware,\ + \ because free software needs free documentation: a free\nprogram should come with manuals\ + \ providing the same freedoms that the\nsoftware does. But this License is not limited\ + \ to software manuals;\nit can be used for any textual work, regardless of subject matter\ + \ or\nwhether it is published as a printed book. We recommend this License\nprincipally\ + \ for works whose purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\ + \nThis License applies to any manual or other work, in any medium, that\ncontains a notice\ + \ placed by the copyright holder saying it can be\ndistributed under the terms of this License.\ + \ Such a notice grants a\nworld-wide, royalty-free license, unlimited in duration, to use\ + \ that\nwork under the conditions stated herein. The \"Document\", below,\nrefers to any\ + \ such manual or work. Any member of the public is a\nlicensee, and is addressed as \"\ + you\". You accept the license if you\ncopy, modify or distribute the work in a way requiring\ + \ permission\nunder copyright law.\n\nA \"Modified Version\" of the Document means any work\ + \ containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications\ + \ and/or translated into another language.\n\nA \"Secondary Section\" is a named appendix\ + \ or a front-matter section of\nthe Document that deals exclusively with the relationship\ + \ of the\npublishers or authors of the Document to the Document's overall\nsubject (or to\ + \ related matters) and contains nothing that could fall\ndirectly within that overall subject.\ + \ (Thus, if the Document is in\npart a textbook of mathematics, a Secondary Section may\ + \ not explain\nany mathematics.) The relationship could be a matter of historical\nconnection\ + \ with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical\ + \ or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary\ + \ Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\n\ + that says that the Document is released under this License. If a\nsection does not fit\ + \ the above definition of Secondary then it is not\nallowed to be designated as Invariant.\ + \ The Document may contain zero\nInvariant Sections. If the Document does not identify\ + \ any Invariant\nSections then there are none.\n\nThe \"Cover Texts\" are certain short\ + \ passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice\ + \ that says that\nthe Document is released under this License. A Front-Cover Text may\n\ + be at most 5 words, and a Back-Cover Text may be at most 25 words.\n\nA \"Transparent\"\ + \ copy of the Document means a machine-readable copy,\nrepresented in a format whose specification\ + \ is available to the\ngeneral public, that is suitable for revising the document\nstraightforwardly\ + \ with generic text editors or (for images composed of\npixels) generic paint programs or\ + \ (for drawings) some widely available\ndrawing editor, and that is suitable for input to\ + \ text formatters or\nfor automatic translation to a variety of formats suitable for input\n\ + to text formatters. A copy made in an otherwise Transparent file\nformat whose markup,\ + \ or absence of markup, has been arranged to thwart\nor discourage subsequent modification\ + \ by readers is not Transparent.\nAn image format is not Transparent if used for any substantial\ + \ amount\nof text. A copy that is not \"Transparent\" is called \"Opaque\".\n\nExamples\ + \ of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo\ + \ input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming\ + \ simple\nHTML, PostScript or PDF designed for human modification. Examples of\ntransparent\ + \ image formats include PNG, XCF and JPG. Opaque formats\ninclude proprietary formats that\ + \ can be read and edited only by\nproprietary word processors, SGML or XML for which the\ + \ DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML,\ + \ PostScript or PDF produced by some word\nprocessors for output purposes only.\n\nThe \"\ + Title Page\" means, for a printed book, the title page itself,\nplus such following pages\ + \ as are needed to hold, legibly, the material\nthis License requires to appear in the title\ + \ page. For works in\nformats which do not have any title page as such, \"Title Page\"\ + \ means\nthe text near the most prominent appearance of the work's title,\npreceding the\ + \ beginning of the body of the text.\n\nThe \"publisher\" means any person or entity that\ + \ distributes copies of\nthe Document to the public.\n\nA section \"Entitled XYZ\" means\ + \ a named subunit of the Document whose\ntitle either is precisely XYZ or contains XYZ in\ + \ parentheses following\ntext that translates XYZ in another language. (Here XYZ stands\ + \ for a\nspecific section name mentioned below, such as \"Acknowledgements\",\n\"Dedications\"\ + , \"Endorsements\", or \"History\".) To \"Preserve the Title\"\nof such a section when\ + \ you modify the Document means that it remains a\nsection \"Entitled XYZ\" according to\ + \ this definition.\n\nThe Document may include Warranty Disclaimers next to the notice which\n\ + states that this License applies to the Document. These Warranty\nDisclaimers are considered\ + \ to be included by reference in this\nLicense, but only as regards disclaiming warranties:\ + \ any other\nimplication that these Warranty Disclaimers may have is void and has\nno effect\ + \ on the meaning of this License.\n\n2. VERBATIM COPYING\n\nYou may copy and distribute\ + \ the Document in any medium, either\ncommercially or noncommercially, provided that this\ + \ License, the\ncopyright notices, and the license notice saying this License applies\n\ + to the Document are reproduced in all copies, and that you add no\nother conditions whatsoever\ + \ to those of this License. You may not use\ntechnical measures to obstruct or control\ + \ the reading or further\ncopying of the copies you make or distribute. However, you may\ + \ accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber\ + \ of copies you must also follow the conditions in section 3.\n\nYou may also lend copies,\ + \ under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3.\ + \ COPYING IN QUANTITY\n\nIf you publish printed copies (or copies in media that commonly\ + \ have\nprinted covers) of the Document, numbering more than 100, and the\nDocument's license\ + \ notice requires Cover Texts, you must enclose the\ncopies in covers that carry, clearly\ + \ and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover\ + \ Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as\ + \ the publisher of these copies. The front cover must present\nthe full title with all\ + \ words of the title equally prominent and\nvisible. You may add other material on the\ + \ covers in addition.\nCopying with changes limited to the covers, as long as they preserve\n\ + the title of the Document and satisfy these conditions, can be treated\nas verbatim copying\ + \ in other respects.\n\nIf the required texts for either cover are too voluminous to fit\n\ + legibly, you should put the first ones listed (as many as fit\nreasonably) on the actual\ + \ cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque\ + \ copies of the Document numbering\nmore than 100, you must either include a machine-readable\ + \ Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\n\ + a computer-network location from which the general network-using\npublic has access to download\ + \ using public-standard network protocols\na complete Transparent copy of the Document,\ + \ free of added material.\nIf you use the latter option, you must take reasonably prudent\ + \ steps,\nwhen you begin distribution of Opaque copies in quantity, to ensure\nthat this\ + \ Transparent copy will remain thus accessible at the stated\nlocation until at least one\ + \ year after the last time you distribute an\nOpaque copy (directly or through your agents\ + \ or retailers) of that\nedition to the public.\n\nIt is requested, but not required, that\ + \ you contact the authors of the\nDocument well before redistributing any large number of\ + \ copies, to\ngive them a chance to provide you with an updated version of the\nDocument.\n\ + \n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\n\ + the conditions of sections 2 and 3 above, provided that you release\nthe Modified Version\ + \ under precisely this License, with the Modified\nVersion filling the role of the Document,\ + \ thus licensing distribution\nand modification of the Modified Version to whoever possesses\ + \ a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use\ + \ in the Title Page (and on the covers, if any) a title distinct\n from that of the Document,\ + \ and from those of previous versions\n (which should, if there were any, be listed in\ + \ the History section\n of the Document). You may use the same title as a previous version\n\ + \ if the original publisher of that version gives permission.\nB. List on the Title Page,\ + \ as authors, one or more persons or entities\n responsible for authorship of the modifications\ + \ in the Modified\n Version, together with at least five of the principal authors of the\n\ + \ Document (all of its principal authors, if it has fewer than five),\n unless they\ + \ release you from this requirement.\nC. State on the Title page the name of the publisher\ + \ of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices\ + \ of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent\ + \ to the other copyright notices.\nF. Include, immediately after the copyright notices,\ + \ a license notice\n giving the public permission to use the Modified Version under the\n\ + \ terms of this License, in the form shown in the Addendum below.\nG. Preserve in that\ + \ license notice the full lists of Invariant Sections\n and required Cover Texts given\ + \ in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve\ + \ the section Entitled \"History\", Preserve its Title, and add\n to it an item stating\ + \ at least the title, year, new authors, and\n publisher of the Modified Version as given\ + \ on the Title Page. If\n there is no section Entitled \"History\" in the Document, create\ + \ one\n stating the title, year, authors, and publisher of the Document as\n given on\ + \ its Title Page, then add an item describing the Modified\n Version as stated in the\ + \ previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n\ + \ public access to a Transparent copy of the Document, and likewise\n the network locations\ + \ given in the Document for previous versions\n it was based on. These may be placed\ + \ in the \"History\" section.\n You may omit a network location for a work that was published\ + \ at\n least four years before the Document itself, or if the original\n publisher of\ + \ the version it refers to gives permission.\nK. For any section Entitled \"Acknowledgements\"\ + \ or \"Dedications\",\n Preserve the Title of the section, and preserve in the section\ + \ all\n the substance and tone of each of the contributor acknowledgements\n and/or\ + \ dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n\ + \ unaltered in their text and in their titles. Section numbers\n or the equivalent\ + \ are not considered part of the section titles.\nM. Delete any section Entitled \"Endorsements\"\ + . Such a section\n may not be included in the Modified Version.\nN. Do not retitle any\ + \ existing section to be Entitled \"Endorsements\"\n or to conflict in title with any\ + \ Invariant Section.\nO. Preserve any Warranty Disclaimers.\n\nIf the Modified Version includes\ + \ new front-matter sections or\nappendices that qualify as Secondary Sections and contain\ + \ no material\ncopied from the Document, you may at your option designate some or all\n\ + of these sections as invariant. To do this, add their titles to the\nlist of Invariant\ + \ Sections in the Modified Version's license notice.\nThese titles must be distinct from\ + \ any other section titles.\n\nYou may add a section Entitled \"Endorsements\", provided\ + \ it contains\nnothing but endorsements of your Modified Version by various\nparties--for\ + \ example, statements of peer review or that the text has\nbeen approved by an organization\ + \ as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five\ + \ words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to\ + \ the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover\ + \ Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any\ + \ one entity. If the Document already\nincludes a cover text for the same cover, previously\ + \ added by you or\nby arrangement made by the same entity you are acting on behalf of,\n\ + you may not add another; but you may replace the old one, on explicit\npermission from the\ + \ previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document\ + \ do not by this License\ngive permission to use their names for publicity for or to assert\ + \ or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may\ + \ combine the Document with other documents released under this\nLicense, under the terms\ + \ defined in section 4 above for modified\nversions, provided that you include in the combination\ + \ all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist\ + \ them all as Invariant Sections of your combined work in its\nlicense notice, and that\ + \ you preserve all their Warranty Disclaimers.\n\nThe combined work need only contain one\ + \ copy of this License, and\nmultiple identical Invariant Sections may be replaced with\ + \ a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent\ + \ contents, make the title of each such section unique by\nadding at the end of it, in parentheses,\ + \ the name of the original\nauthor or publisher of that section if known, or else a unique\ + \ number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections\ + \ in the license notice of the combined work.\n\nIn the combination, you must combine any\ + \ sections Entitled \"History\"\nin the various original documents, forming one section\ + \ Entitled\n\"History\"; likewise combine any sections Entitled \"Acknowledgements\",\n\ + and any sections Entitled \"Dedications\". You must delete all sections\nEntitled \"Endorsements\"\ + .\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document\ + \ and other\ndocuments released under this License, and replace the individual\ncopies of\ + \ this License in the various documents with a single copy\nthat is included in the collection,\ + \ provided that you follow the rules\nof this License for verbatim copying of each of the\ + \ documents in all\nother respects.\n\nYou may extract a single document from such a collection,\ + \ and\ndistribute it individually under this License, provided you insert a\ncopy of this\ + \ License into the extracted document, and follow this\nLicense in all other respects regarding\ + \ verbatim copying of that\ndocument.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation\ + \ of the Document or its derivatives with other separate\nand independent documents or works,\ + \ in or on a volume of a storage or\ndistribution medium, is called an \"aggregate\" if\ + \ the copyright\nresulting from the compilation is not used to limit the legal rights\n\ + of the compilation's users beyond what the individual works permit.\nWhen the Document is\ + \ included in an aggregate, this License does not\napply to the other works in the aggregate\ + \ which are not themselves\nderivative works of the Document.\n\nIf the Cover Text requirement\ + \ of section 3 is applicable to these\ncopies of the Document, then if the Document is less\ + \ than one half of\nthe entire aggregate, the Document's Cover Texts may be placed on\n\ + covers that bracket the Document within the aggregate, or the\nelectronic equivalent of\ + \ covers if the Document is in electronic form.\nOtherwise they must appear on printed covers\ + \ that bracket the whole\naggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a\ + \ kind of modification, so you may\ndistribute translations of the Document under the terms\ + \ of section 4.\nReplacing Invariant Sections with translations requires special\npermission\ + \ from their copyright holders, but you may include\ntranslations of some or all Invariant\ + \ Sections in addition to the\noriginal versions of these Invariant Sections. You may include\ + \ a\ntranslation of this License, and all the license notices in the\nDocument, and any\ + \ Warranty Disclaimers, provided that you also include\nthe original English version of\ + \ this License and the original versions\nof those notices and disclaimers. In case of\ + \ a disagreement between\nthe translation and the original version of this License or a\ + \ notice\nor disclaimer, the original version will prevail.\n\nIf a section in the Document\ + \ is Entitled \"Acknowledgements\",\n\"Dedications\", or \"History\", the requirement (section\ + \ 4) to Preserve\nits Title (section 1) will typically require changing the actual\ntitle.\n\ + \n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document\n\ + except as expressly provided under this License. Any attempt\notherwise to copy, modify,\ + \ sublicense, or distribute it is void, and\nwill automatically terminate your rights under\ + \ this License.\n\nHowever, if you cease all violation of this License, then your license\n\ + from a particular copyright holder is reinstated (a) provisionally,\nunless and until the\ + \ copyright holder explicitly and finally\nterminates your license, and (b) permanently,\ + \ if the copyright holder\nfails to notify you of the violation by some reasonable means\ + \ prior to\n60 days after the cessation.\n\nMoreover, your license from a particular copyright\ + \ holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation\ + \ by some reasonable means, this is the first time you have\nreceived notice of violation\ + \ of this License (for any work) from that\ncopyright holder, and you cure the violation\ + \ prior to 30 days after\nyour receipt of the notice.\n\nTermination of your rights under\ + \ this section does not terminate the\nlicenses of parties who have received copies or rights\ + \ from you under\nthis License. If your rights have been terminated and not permanently\n\ + reinstated, receipt of a copy of some or all of the same material does\nnot give you any\ + \ rights to use it.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation\ + \ may publish new, revised versions of the\nGNU Free Documentation License from time to\ + \ time. Such new versions\nwill be similar in spirit to the present version, but may differ\ + \ in\ndetail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\n\ + Each version of the License is given a distinguishing version number.\nIf the Document specifies\ + \ that a particular numbered version of this\nLicense \"or any later version\" applies to\ + \ it, you have the option of\nfollowing the terms and conditions either of that specified\ + \ version or\nof any later version that has been published (not as a draft) by the\nFree\ + \ Software Foundation. If the Document does not specify a version\nnumber of this License,\ + \ you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\ + \ If the Document\nspecifies that a proxy can decide which future versions of this\nLicense\ + \ can be used, that proxy's public statement of acceptance of a\nversion permanently authorizes\ + \ you to choose that version for the\nDocument.\n\n11. RELICENSING\n\n\"Massive Multiauthor\ + \ Collaboration Site\" (or \"MMC Site\") means any\nWorld Wide Web server that publishes\ + \ copyrightable works and also\nprovides prominent facilities for anybody to edit those\ + \ works. A\npublic wiki that anybody can edit is an example of such a server. A\n\"Massive\ + \ Multiauthor Collaboration\" (or \"MMC\") contained in the site\nmeans any set of copyrightable\ + \ works thus published on the MMC site.\n\n\"CC-BY-SA\" means the Creative Commons Attribution-Share\ + \ Alike 3.0 \nlicense published by Creative Commons Corporation, a not-for-profit \ncorporation\ + \ with a principal place of business in San Francisco, \nCalifornia, as well as future copyleft\ + \ versions of that license \npublished by that same organization.\n\n\"Incorporate\" means\ + \ to publish or republish a Document, in whole or in \npart, as part of another Document.\n\ + \nAn MMC is \"eligible for relicensing\" if it is licensed under this \nLicense, and if\ + \ all works that were first published under this License \nsomewhere other than this MMC,\ + \ and subsequently incorporated in whole or \nin part into the MMC, (1) had no cover texts\ + \ or invariant sections, and \n(2) were thus incorporated prior to November 1, 2008.\n\n\ + The operator of an MMC Site may republish an MMC contained in the site\nunder CC-BY-SA on\ + \ the same site at any time before August 1, 2009,\nprovided the MMC is eligible for relicensing.\n\ + \n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document\ + \ you have written, include a copy of\nthe License in the document and put the following\ + \ copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR \ + \ YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n\ + \ under the terms of the GNU Free Documentation License, Version 1.3\n or any later\ + \ version published by the Free Software Foundation;\n with no Invariant Sections, no\ + \ Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in\ + \ the section entitled \"GNU\n Free Documentation License\".\n\nIf you have Invariant\ + \ Sections, Front-Cover Texts and Back-Cover Texts,\nreplace the \"with...Texts.\" line\ + \ with this:\n\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover\ + \ Texts being LIST, and with the Back-Cover Texts being LIST.\n\nIf you have Invariant Sections\ + \ without Cover Texts, or some other\ncombination of the three, merge those two alternatives\ + \ to suit the\nsituation.\n\nIf your document contains nontrivial examples of program code,\ + \ we\nrecommend releasing these examples in parallel under your choice of\nfree software\ + \ license, such as the GNU General Public License,\nto permit their use in free software." json: gfdl-1.3-no-invariants-only.json - yml: gfdl-1.3-no-invariants-only.yml + yaml: gfdl-1.3-no-invariants-only.yml html: gfdl-1.3-no-invariants-only.html - text: gfdl-1.3-no-invariants-only.LICENSE + license: gfdl-1.3-no-invariants-only.LICENSE - license_key: gfdl-1.3-no-invariants-or-later + category: Copyleft Limited spdx_license_key: GFDL-1.3-no-invariants-or-later other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Permission is granted to copy, distribute\nand/or modify this document under the terms\ + \ of the GNU Free Documentation\nLicense, Version 1.3 or any later version published by\ + \ the Free Software\nFoundation; with no Invariant Sections, no Front-Cover Texts, and no\ + \ Back-\nCover Texts. A copy of the license is included in the section entitled \"GNU\n\ + Free Documentation License\".\n\n GNU Free Documentation License\n \ + \ Version 1.3, 3 November 2008\n\n\n Copyright (C) 2000, 2001, 2002, 2007, 2008\ + \ Free Software Foundation, Inc.\n \n Everyone is permitted to copy\ + \ and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\ + \n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nfunctional\ + \ and useful document \"free\" in the sense of freedom: to\nassure everyone the effective\ + \ freedom to copy and redistribute it,\nwith or without modifying it, either commercially\ + \ or noncommercially.\nSecondarily, this License preserves for the author and publisher\ + \ a way\nto get credit for their work, while not being considered responsible\nfor modifications\ + \ made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\n\ + works of the document must themselves be free in the same sense. It\ncomplements the GNU\ + \ General Public License, which is a copyleft\nlicense designed for free software.\n\nWe\ + \ have designed this License in order to use it for manuals for free\nsoftware, because\ + \ free software needs free documentation: a free\nprogram should come with manuals providing\ + \ the same freedoms that the\nsoftware does. But this License is not limited to software\ + \ manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether\ + \ it is published as a printed book. We recommend this License\nprincipally for works whose\ + \ purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License\ + \ applies to any manual or other work, in any medium, that\ncontains a notice placed by\ + \ the copyright holder saying it can be\ndistributed under the terms of this License. Such\ + \ a notice grants a\nworld-wide, royalty-free license, unlimited in duration, to use that\n\ + work under the conditions stated herein. The \"Document\", below,\nrefers to any such manual\ + \ or work. Any member of the public is a\nlicensee, and is addressed as \"you\". You accept\ + \ the license if you\ncopy, modify or distribute the work in a way requiring permission\n\ + under copyright law.\n\nA \"Modified Version\" of the Document means any work containing\ + \ the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or\ + \ translated into another language.\n\nA \"Secondary Section\" is a named appendix or a\ + \ front-matter section of\nthe Document that deals exclusively with the relationship of\ + \ the\npublishers or authors of the Document to the Document's overall\nsubject (or to related\ + \ matters) and contains nothing that could fall\ndirectly within that overall subject. \ + \ (Thus, if the Document is in\npart a textbook of mathematics, a Secondary Section may\ + \ not explain\nany mathematics.) The relationship could be a matter of historical\nconnection\ + \ with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical\ + \ or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary\ + \ Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\n\ + that says that the Document is released under this License. If a\nsection does not fit\ + \ the above definition of Secondary then it is not\nallowed to be designated as Invariant.\ + \ The Document may contain zero\nInvariant Sections. If the Document does not identify\ + \ any Invariant\nSections then there are none.\n\nThe \"Cover Texts\" are certain short\ + \ passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice\ + \ that says that\nthe Document is released under this License. A Front-Cover Text may\n\ + be at most 5 words, and a Back-Cover Text may be at most 25 words.\n\nA \"Transparent\"\ + \ copy of the Document means a machine-readable copy,\nrepresented in a format whose specification\ + \ is available to the\ngeneral public, that is suitable for revising the document\nstraightforwardly\ + \ with generic text editors or (for images composed of\npixels) generic paint programs or\ + \ (for drawings) some widely available\ndrawing editor, and that is suitable for input to\ + \ text formatters or\nfor automatic translation to a variety of formats suitable for input\n\ + to text formatters. A copy made in an otherwise Transparent file\nformat whose markup,\ + \ or absence of markup, has been arranged to thwart\nor discourage subsequent modification\ + \ by readers is not Transparent.\nAn image format is not Transparent if used for any substantial\ + \ amount\nof text. A copy that is not \"Transparent\" is called \"Opaque\".\n\nExamples\ + \ of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo\ + \ input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming\ + \ simple\nHTML, PostScript or PDF designed for human modification. Examples of\ntransparent\ + \ image formats include PNG, XCF and JPG. Opaque formats\ninclude proprietary formats that\ + \ can be read and edited only by\nproprietary word processors, SGML or XML for which the\ + \ DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML,\ + \ PostScript or PDF produced by some word\nprocessors for output purposes only.\n\nThe \"\ + Title Page\" means, for a printed book, the title page itself,\nplus such following pages\ + \ as are needed to hold, legibly, the material\nthis License requires to appear in the title\ + \ page. For works in\nformats which do not have any title page as such, \"Title Page\"\ + \ means\nthe text near the most prominent appearance of the work's title,\npreceding the\ + \ beginning of the body of the text.\n\nThe \"publisher\" means any person or entity that\ + \ distributes copies of\nthe Document to the public.\n\nA section \"Entitled XYZ\" means\ + \ a named subunit of the Document whose\ntitle either is precisely XYZ or contains XYZ in\ + \ parentheses following\ntext that translates XYZ in another language. (Here XYZ stands\ + \ for a\nspecific section name mentioned below, such as \"Acknowledgements\",\n\"Dedications\"\ + , \"Endorsements\", or \"History\".) To \"Preserve the Title\"\nof such a section when\ + \ you modify the Document means that it remains a\nsection \"Entitled XYZ\" according to\ + \ this definition.\n\nThe Document may include Warranty Disclaimers next to the notice which\n\ + states that this License applies to the Document. These Warranty\nDisclaimers are considered\ + \ to be included by reference in this\nLicense, but only as regards disclaiming warranties:\ + \ any other\nimplication that these Warranty Disclaimers may have is void and has\nno effect\ + \ on the meaning of this License.\n\n2. VERBATIM COPYING\n\nYou may copy and distribute\ + \ the Document in any medium, either\ncommercially or noncommercially, provided that this\ + \ License, the\ncopyright notices, and the license notice saying this License applies\n\ + to the Document are reproduced in all copies, and that you add no\nother conditions whatsoever\ + \ to those of this License. You may not use\ntechnical measures to obstruct or control\ + \ the reading or further\ncopying of the copies you make or distribute. However, you may\ + \ accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber\ + \ of copies you must also follow the conditions in section 3.\n\nYou may also lend copies,\ + \ under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3.\ + \ COPYING IN QUANTITY\n\nIf you publish printed copies (or copies in media that commonly\ + \ have\nprinted covers) of the Document, numbering more than 100, and the\nDocument's license\ + \ notice requires Cover Texts, you must enclose the\ncopies in covers that carry, clearly\ + \ and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover\ + \ Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as\ + \ the publisher of these copies. The front cover must present\nthe full title with all\ + \ words of the title equally prominent and\nvisible. You may add other material on the\ + \ covers in addition.\nCopying with changes limited to the covers, as long as they preserve\n\ + the title of the Document and satisfy these conditions, can be treated\nas verbatim copying\ + \ in other respects.\n\nIf the required texts for either cover are too voluminous to fit\n\ + legibly, you should put the first ones listed (as many as fit\nreasonably) on the actual\ + \ cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque\ + \ copies of the Document numbering\nmore than 100, you must either include a machine-readable\ + \ Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\n\ + a computer-network location from which the general network-using\npublic has access to download\ + \ using public-standard network protocols\na complete Transparent copy of the Document,\ + \ free of added material.\nIf you use the latter option, you must take reasonably prudent\ + \ steps,\nwhen you begin distribution of Opaque copies in quantity, to ensure\nthat this\ + \ Transparent copy will remain thus accessible at the stated\nlocation until at least one\ + \ year after the last time you distribute an\nOpaque copy (directly or through your agents\ + \ or retailers) of that\nedition to the public.\n\nIt is requested, but not required, that\ + \ you contact the authors of the\nDocument well before redistributing any large number of\ + \ copies, to\ngive them a chance to provide you with an updated version of the\nDocument.\n\ + \n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\n\ + the conditions of sections 2 and 3 above, provided that you release\nthe Modified Version\ + \ under precisely this License, with the Modified\nVersion filling the role of the Document,\ + \ thus licensing distribution\nand modification of the Modified Version to whoever possesses\ + \ a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use\ + \ in the Title Page (and on the covers, if any) a title distinct\n from that of the Document,\ + \ and from those of previous versions\n (which should, if there were any, be listed in\ + \ the History section\n of the Document). You may use the same title as a previous version\n\ + \ if the original publisher of that version gives permission.\nB. List on the Title Page,\ + \ as authors, one or more persons or entities\n responsible for authorship of the modifications\ + \ in the Modified\n Version, together with at least five of the principal authors of the\n\ + \ Document (all of its principal authors, if it has fewer than five),\n unless they\ + \ release you from this requirement.\nC. State on the Title page the name of the publisher\ + \ of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices\ + \ of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent\ + \ to the other copyright notices.\nF. Include, immediately after the copyright notices,\ + \ a license notice\n giving the public permission to use the Modified Version under the\n\ + \ terms of this License, in the form shown in the Addendum below.\nG. Preserve in that\ + \ license notice the full lists of Invariant Sections\n and required Cover Texts given\ + \ in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve\ + \ the section Entitled \"History\", Preserve its Title, and add\n to it an item stating\ + \ at least the title, year, new authors, and\n publisher of the Modified Version as given\ + \ on the Title Page. If\n there is no section Entitled \"History\" in the Document, create\ + \ one\n stating the title, year, authors, and publisher of the Document as\n given on\ + \ its Title Page, then add an item describing the Modified\n Version as stated in the\ + \ previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n\ + \ public access to a Transparent copy of the Document, and likewise\n the network locations\ + \ given in the Document for previous versions\n it was based on. These may be placed\ + \ in the \"History\" section.\n You may omit a network location for a work that was published\ + \ at\n least four years before the Document itself, or if the original\n publisher of\ + \ the version it refers to gives permission.\nK. For any section Entitled \"Acknowledgements\"\ + \ or \"Dedications\",\n Preserve the Title of the section, and preserve in the section\ + \ all\n the substance and tone of each of the contributor acknowledgements\n and/or\ + \ dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n\ + \ unaltered in their text and in their titles. Section numbers\n or the equivalent\ + \ are not considered part of the section titles.\nM. Delete any section Entitled \"Endorsements\"\ + . Such a section\n may not be included in the Modified Version.\nN. Do not retitle any\ + \ existing section to be Entitled \"Endorsements\"\n or to conflict in title with any\ + \ Invariant Section.\nO. Preserve any Warranty Disclaimers.\n\nIf the Modified Version includes\ + \ new front-matter sections or\nappendices that qualify as Secondary Sections and contain\ + \ no material\ncopied from the Document, you may at your option designate some or all\n\ + of these sections as invariant. To do this, add their titles to the\nlist of Invariant\ + \ Sections in the Modified Version's license notice.\nThese titles must be distinct from\ + \ any other section titles.\n\nYou may add a section Entitled \"Endorsements\", provided\ + \ it contains\nnothing but endorsements of your Modified Version by various\nparties--for\ + \ example, statements of peer review or that the text has\nbeen approved by an organization\ + \ as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five\ + \ words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to\ + \ the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover\ + \ Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any\ + \ one entity. If the Document already\nincludes a cover text for the same cover, previously\ + \ added by you or\nby arrangement made by the same entity you are acting on behalf of,\n\ + you may not add another; but you may replace the old one, on explicit\npermission from the\ + \ previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document\ + \ do not by this License\ngive permission to use their names for publicity for or to assert\ + \ or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may\ + \ combine the Document with other documents released under this\nLicense, under the terms\ + \ defined in section 4 above for modified\nversions, provided that you include in the combination\ + \ all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist\ + \ them all as Invariant Sections of your combined work in its\nlicense notice, and that\ + \ you preserve all their Warranty Disclaimers.\n\nThe combined work need only contain one\ + \ copy of this License, and\nmultiple identical Invariant Sections may be replaced with\ + \ a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent\ + \ contents, make the title of each such section unique by\nadding at the end of it, in parentheses,\ + \ the name of the original\nauthor or publisher of that section if known, or else a unique\ + \ number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections\ + \ in the license notice of the combined work.\n\nIn the combination, you must combine any\ + \ sections Entitled \"History\"\nin the various original documents, forming one section\ + \ Entitled\n\"History\"; likewise combine any sections Entitled \"Acknowledgements\",\n\ + and any sections Entitled \"Dedications\". You must delete all sections\nEntitled \"Endorsements\"\ + .\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document\ + \ and other\ndocuments released under this License, and replace the individual\ncopies of\ + \ this License in the various documents with a single copy\nthat is included in the collection,\ + \ provided that you follow the rules\nof this License for verbatim copying of each of the\ + \ documents in all\nother respects.\n\nYou may extract a single document from such a collection,\ + \ and\ndistribute it individually under this License, provided you insert a\ncopy of this\ + \ License into the extracted document, and follow this\nLicense in all other respects regarding\ + \ verbatim copying of that\ndocument.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation\ + \ of the Document or its derivatives with other separate\nand independent documents or works,\ + \ in or on a volume of a storage or\ndistribution medium, is called an \"aggregate\" if\ + \ the copyright\nresulting from the compilation is not used to limit the legal rights\n\ + of the compilation's users beyond what the individual works permit.\nWhen the Document is\ + \ included in an aggregate, this License does not\napply to the other works in the aggregate\ + \ which are not themselves\nderivative works of the Document.\n\nIf the Cover Text requirement\ + \ of section 3 is applicable to these\ncopies of the Document, then if the Document is less\ + \ than one half of\nthe entire aggregate, the Document's Cover Texts may be placed on\n\ + covers that bracket the Document within the aggregate, or the\nelectronic equivalent of\ + \ covers if the Document is in electronic form.\nOtherwise they must appear on printed covers\ + \ that bracket the whole\naggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a\ + \ kind of modification, so you may\ndistribute translations of the Document under the terms\ + \ of section 4.\nReplacing Invariant Sections with translations requires special\npermission\ + \ from their copyright holders, but you may include\ntranslations of some or all Invariant\ + \ Sections in addition to the\noriginal versions of these Invariant Sections. You may include\ + \ a\ntranslation of this License, and all the license notices in the\nDocument, and any\ + \ Warranty Disclaimers, provided that you also include\nthe original English version of\ + \ this License and the original versions\nof those notices and disclaimers. In case of\ + \ a disagreement between\nthe translation and the original version of this License or a\ + \ notice\nor disclaimer, the original version will prevail.\n\nIf a section in the Document\ + \ is Entitled \"Acknowledgements\",\n\"Dedications\", or \"History\", the requirement (section\ + \ 4) to Preserve\nits Title (section 1) will typically require changing the actual\ntitle.\n\ + \n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document\n\ + except as expressly provided under this License. Any attempt\notherwise to copy, modify,\ + \ sublicense, or distribute it is void, and\nwill automatically terminate your rights under\ + \ this License.\n\nHowever, if you cease all violation of this License, then your license\n\ + from a particular copyright holder is reinstated (a) provisionally,\nunless and until the\ + \ copyright holder explicitly and finally\nterminates your license, and (b) permanently,\ + \ if the copyright holder\nfails to notify you of the violation by some reasonable means\ + \ prior to\n60 days after the cessation.\n\nMoreover, your license from a particular copyright\ + \ holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation\ + \ by some reasonable means, this is the first time you have\nreceived notice of violation\ + \ of this License (for any work) from that\ncopyright holder, and you cure the violation\ + \ prior to 30 days after\nyour receipt of the notice.\n\nTermination of your rights under\ + \ this section does not terminate the\nlicenses of parties who have received copies or rights\ + \ from you under\nthis License. If your rights have been terminated and not permanently\n\ + reinstated, receipt of a copy of some or all of the same material does\nnot give you any\ + \ rights to use it.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation\ + \ may publish new, revised versions of the\nGNU Free Documentation License from time to\ + \ time. Such new versions\nwill be similar in spirit to the present version, but may differ\ + \ in\ndetail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\n\ + Each version of the License is given a distinguishing version number.\nIf the Document specifies\ + \ that a particular numbered version of this\nLicense \"or any later version\" applies to\ + \ it, you have the option of\nfollowing the terms and conditions either of that specified\ + \ version or\nof any later version that has been published (not as a draft) by the\nFree\ + \ Software Foundation. If the Document does not specify a version\nnumber of this License,\ + \ you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\ + \ If the Document\nspecifies that a proxy can decide which future versions of this\nLicense\ + \ can be used, that proxy's public statement of acceptance of a\nversion permanently authorizes\ + \ you to choose that version for the\nDocument.\n\n11. RELICENSING\n\n\"Massive Multiauthor\ + \ Collaboration Site\" (or \"MMC Site\") means any\nWorld Wide Web server that publishes\ + \ copyrightable works and also\nprovides prominent facilities for anybody to edit those\ + \ works. A\npublic wiki that anybody can edit is an example of such a server. A\n\"Massive\ + \ Multiauthor Collaboration\" (or \"MMC\") contained in the site\nmeans any set of copyrightable\ + \ works thus published on the MMC site.\n\n\"CC-BY-SA\" means the Creative Commons Attribution-Share\ + \ Alike 3.0 \nlicense published by Creative Commons Corporation, a not-for-profit \ncorporation\ + \ with a principal place of business in San Francisco, \nCalifornia, as well as future copyleft\ + \ versions of that license \npublished by that same organization.\n\n\"Incorporate\" means\ + \ to publish or republish a Document, in whole or in \npart, as part of another Document.\n\ + \nAn MMC is \"eligible for relicensing\" if it is licensed under this \nLicense, and if\ + \ all works that were first published under this License \nsomewhere other than this MMC,\ + \ and subsequently incorporated in whole or \nin part into the MMC, (1) had no cover texts\ + \ or invariant sections, and \n(2) were thus incorporated prior to November 1, 2008.\n\n\ + The operator of an MMC Site may republish an MMC contained in the site\nunder CC-BY-SA on\ + \ the same site at any time before August 1, 2009,\nprovided the MMC is eligible for relicensing.\n\ + \n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document\ + \ you have written, include a copy of\nthe License in the document and put the following\ + \ copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR \ + \ YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n\ + \ under the terms of the GNU Free Documentation License, Version 1.3\n or any later\ + \ version published by the Free Software Foundation;\n with no Invariant Sections, no\ + \ Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in\ + \ the section entitled \"GNU\n Free Documentation License\".\n\nIf you have Invariant\ + \ Sections, Front-Cover Texts and Back-Cover Texts,\nreplace the \"with...Texts.\" line\ + \ with this:\n\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover\ + \ Texts being LIST, and with the Back-Cover Texts being LIST.\n\nIf you have Invariant Sections\ + \ without Cover Texts, or some other\ncombination of the three, merge those two alternatives\ + \ to suit the\nsituation.\n\nIf your document contains nontrivial examples of program code,\ + \ we\nrecommend releasing these examples in parallel under your choice of\nfree software\ + \ license, such as the GNU General Public License,\nto permit their use in free software." json: gfdl-1.3-no-invariants-or-later.json - yml: gfdl-1.3-no-invariants-or-later.yml + yaml: gfdl-1.3-no-invariants-or-later.yml html: gfdl-1.3-no-invariants-or-later.html - text: gfdl-1.3-no-invariants-or-later.LICENSE + license: gfdl-1.3-no-invariants-or-later.LICENSE - license_key: gfdl-1.3-plus + category: Copyleft Limited spdx_license_key: GFDL-1.3-or-later other_spdx_license_keys: - GFDL-1.3+ is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms\ + \ of the GNU Free Documentation License, Version 1.3\nor any later version published by\ + \ the Free Software Foundation.\n\n GNU Free Documentation License\n \ + \ Version 1.3, 3 November 2008\n\n\n Copyright (C) 2000, 2001, 2002, 2007, 2008\ + \ Free Software Foundation, Inc.\n \n Everyone is permitted to copy\ + \ and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\ + \n0. PREAMBLE\n\nThe purpose of this License is to make a manual, textbook, or other\nfunctional\ + \ and useful document \"free\" in the sense of freedom: to\nassure everyone the effective\ + \ freedom to copy and redistribute it,\nwith or without modifying it, either commercially\ + \ or noncommercially.\nSecondarily, this License preserves for the author and publisher\ + \ a way\nto get credit for their work, while not being considered responsible\nfor modifications\ + \ made by others.\n\nThis License is a kind of \"copyleft\", which means that derivative\n\ + works of the document must themselves be free in the same sense. It\ncomplements the GNU\ + \ General Public License, which is a copyleft\nlicense designed for free software.\n\nWe\ + \ have designed this License in order to use it for manuals for free\nsoftware, because\ + \ free software needs free documentation: a free\nprogram should come with manuals providing\ + \ the same freedoms that the\nsoftware does. But this License is not limited to software\ + \ manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether\ + \ it is published as a printed book. We recommend this License\nprincipally for works whose\ + \ purpose is instruction or reference.\n\n\n1. APPLICABILITY AND DEFINITIONS\n\nThis License\ + \ applies to any manual or other work, in any medium, that\ncontains a notice placed by\ + \ the copyright holder saying it can be\ndistributed under the terms of this License. Such\ + \ a notice grants a\nworld-wide, royalty-free license, unlimited in duration, to use that\n\ + work under the conditions stated herein. The \"Document\", below,\nrefers to any such manual\ + \ or work. Any member of the public is a\nlicensee, and is addressed as \"you\". You accept\ + \ the license if you\ncopy, modify or distribute the work in a way requiring permission\n\ + under copyright law.\n\nA \"Modified Version\" of the Document means any work containing\ + \ the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or\ + \ translated into another language.\n\nA \"Secondary Section\" is a named appendix or a\ + \ front-matter section of\nthe Document that deals exclusively with the relationship of\ + \ the\npublishers or authors of the Document to the Document's overall\nsubject (or to related\ + \ matters) and contains nothing that could fall\ndirectly within that overall subject. \ + \ (Thus, if the Document is in\npart a textbook of mathematics, a Secondary Section may\ + \ not explain\nany mathematics.) The relationship could be a matter of historical\nconnection\ + \ with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical\ + \ or political position regarding\nthem.\n\nThe \"Invariant Sections\" are certain Secondary\ + \ Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\n\ + that says that the Document is released under this License. If a\nsection does not fit\ + \ the above definition of Secondary then it is not\nallowed to be designated as Invariant.\ + \ The Document may contain zero\nInvariant Sections. If the Document does not identify\ + \ any Invariant\nSections then there are none.\n\nThe \"Cover Texts\" are certain short\ + \ passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice\ + \ that says that\nthe Document is released under this License. A Front-Cover Text may\n\ + be at most 5 words, and a Back-Cover Text may be at most 25 words.\n\nA \"Transparent\"\ + \ copy of the Document means a machine-readable copy,\nrepresented in a format whose specification\ + \ is available to the\ngeneral public, that is suitable for revising the document\nstraightforwardly\ + \ with generic text editors or (for images composed of\npixels) generic paint programs or\ + \ (for drawings) some widely available\ndrawing editor, and that is suitable for input to\ + \ text formatters or\nfor automatic translation to a variety of formats suitable for input\n\ + to text formatters. A copy made in an otherwise Transparent file\nformat whose markup,\ + \ or absence of markup, has been arranged to thwart\nor discourage subsequent modification\ + \ by readers is not Transparent.\nAn image format is not Transparent if used for any substantial\ + \ amount\nof text. A copy that is not \"Transparent\" is called \"Opaque\".\n\nExamples\ + \ of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo\ + \ input format, LaTeX input format, SGML\nor XML using a publicly available DTD, and standard-conforming\ + \ simple\nHTML, PostScript or PDF designed for human modification. Examples of\ntransparent\ + \ image formats include PNG, XCF and JPG. Opaque formats\ninclude proprietary formats that\ + \ can be read and edited only by\nproprietary word processors, SGML or XML for which the\ + \ DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML,\ + \ PostScript or PDF produced by some word\nprocessors for output purposes only.\n\nThe \"\ + Title Page\" means, for a printed book, the title page itself,\nplus such following pages\ + \ as are needed to hold, legibly, the material\nthis License requires to appear in the title\ + \ page. For works in\nformats which do not have any title page as such, \"Title Page\"\ + \ means\nthe text near the most prominent appearance of the work's title,\npreceding the\ + \ beginning of the body of the text.\n\nThe \"publisher\" means any person or entity that\ + \ distributes copies of\nthe Document to the public.\n\nA section \"Entitled XYZ\" means\ + \ a named subunit of the Document whose\ntitle either is precisely XYZ or contains XYZ in\ + \ parentheses following\ntext that translates XYZ in another language. (Here XYZ stands\ + \ for a\nspecific section name mentioned below, such as \"Acknowledgements\",\n\"Dedications\"\ + , \"Endorsements\", or \"History\".) To \"Preserve the Title\"\nof such a section when\ + \ you modify the Document means that it remains a\nsection \"Entitled XYZ\" according to\ + \ this definition.\n\nThe Document may include Warranty Disclaimers next to the notice which\n\ + states that this License applies to the Document. These Warranty\nDisclaimers are considered\ + \ to be included by reference in this\nLicense, but only as regards disclaiming warranties:\ + \ any other\nimplication that these Warranty Disclaimers may have is void and has\nno effect\ + \ on the meaning of this License.\n\n2. VERBATIM COPYING\n\nYou may copy and distribute\ + \ the Document in any medium, either\ncommercially or noncommercially, provided that this\ + \ License, the\ncopyright notices, and the license notice saying this License applies\n\ + to the Document are reproduced in all copies, and that you add no\nother conditions whatsoever\ + \ to those of this License. You may not use\ntechnical measures to obstruct or control\ + \ the reading or further\ncopying of the copies you make or distribute. However, you may\ + \ accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber\ + \ of copies you must also follow the conditions in section 3.\n\nYou may also lend copies,\ + \ under the same conditions stated above, and\nyou may publicly display copies.\n\n\n3.\ + \ COPYING IN QUANTITY\n\nIf you publish printed copies (or copies in media that commonly\ + \ have\nprinted covers) of the Document, numbering more than 100, and the\nDocument's license\ + \ notice requires Cover Texts, you must enclose the\ncopies in covers that carry, clearly\ + \ and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover\ + \ Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as\ + \ the publisher of these copies. The front cover must present\nthe full title with all\ + \ words of the title equally prominent and\nvisible. You may add other material on the\ + \ covers in addition.\nCopying with changes limited to the covers, as long as they preserve\n\ + the title of the Document and satisfy these conditions, can be treated\nas verbatim copying\ + \ in other respects.\n\nIf the required texts for either cover are too voluminous to fit\n\ + legibly, you should put the first ones listed (as many as fit\nreasonably) on the actual\ + \ cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque\ + \ copies of the Document numbering\nmore than 100, you must either include a machine-readable\ + \ Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\n\ + a computer-network location from which the general network-using\npublic has access to download\ + \ using public-standard network protocols\na complete Transparent copy of the Document,\ + \ free of added material.\nIf you use the latter option, you must take reasonably prudent\ + \ steps,\nwhen you begin distribution of Opaque copies in quantity, to ensure\nthat this\ + \ Transparent copy will remain thus accessible at the stated\nlocation until at least one\ + \ year after the last time you distribute an\nOpaque copy (directly or through your agents\ + \ or retailers) of that\nedition to the public.\n\nIt is requested, but not required, that\ + \ you contact the authors of the\nDocument well before redistributing any large number of\ + \ copies, to\ngive them a chance to provide you with an updated version of the\nDocument.\n\ + \n\n4. MODIFICATIONS\n\nYou may copy and distribute a Modified Version of the Document under\n\ + the conditions of sections 2 and 3 above, provided that you release\nthe Modified Version\ + \ under precisely this License, with the Modified\nVersion filling the role of the Document,\ + \ thus licensing distribution\nand modification of the Modified Version to whoever possesses\ + \ a copy\nof it. In addition, you must do these things in the Modified Version:\n\nA. Use\ + \ in the Title Page (and on the covers, if any) a title distinct\n from that of the Document,\ + \ and from those of previous versions\n (which should, if there were any, be listed in\ + \ the History section\n of the Document). You may use the same title as a previous version\n\ + \ if the original publisher of that version gives permission.\nB. List on the Title Page,\ + \ as authors, one or more persons or entities\n responsible for authorship of the modifications\ + \ in the Modified\n Version, together with at least five of the principal authors of the\n\ + \ Document (all of its principal authors, if it has fewer than five),\n unless they\ + \ release you from this requirement.\nC. State on the Title page the name of the publisher\ + \ of the\n Modified Version, as the publisher.\nD. Preserve all the copyright notices\ + \ of the Document.\nE. Add an appropriate copyright notice for your modifications\n adjacent\ + \ to the other copyright notices.\nF. Include, immediately after the copyright notices,\ + \ a license notice\n giving the public permission to use the Modified Version under the\n\ + \ terms of this License, in the form shown in the Addendum below.\nG. Preserve in that\ + \ license notice the full lists of Invariant Sections\n and required Cover Texts given\ + \ in the Document's license notice.\nH. Include an unaltered copy of this License.\nI. Preserve\ + \ the section Entitled \"History\", Preserve its Title, and add\n to it an item stating\ + \ at least the title, year, new authors, and\n publisher of the Modified Version as given\ + \ on the Title Page. If\n there is no section Entitled \"History\" in the Document, create\ + \ one\n stating the title, year, authors, and publisher of the Document as\n given on\ + \ its Title Page, then add an item describing the Modified\n Version as stated in the\ + \ previous sentence.\nJ. Preserve the network location, if any, given in the Document for\n\ + \ public access to a Transparent copy of the Document, and likewise\n the network locations\ + \ given in the Document for previous versions\n it was based on. These may be placed\ + \ in the \"History\" section.\n You may omit a network location for a work that was published\ + \ at\n least four years before the Document itself, or if the original\n publisher of\ + \ the version it refers to gives permission.\nK. For any section Entitled \"Acknowledgements\"\ + \ or \"Dedications\",\n Preserve the Title of the section, and preserve in the section\ + \ all\n the substance and tone of each of the contributor acknowledgements\n and/or\ + \ dedications given therein.\nL. Preserve all the Invariant Sections of the Document,\n\ + \ unaltered in their text and in their titles. Section numbers\n or the equivalent\ + \ are not considered part of the section titles.\nM. Delete any section Entitled \"Endorsements\"\ + . Such a section\n may not be included in the Modified Version.\nN. Do not retitle any\ + \ existing section to be Entitled \"Endorsements\"\n or to conflict in title with any\ + \ Invariant Section.\nO. Preserve any Warranty Disclaimers.\n\nIf the Modified Version includes\ + \ new front-matter sections or\nappendices that qualify as Secondary Sections and contain\ + \ no material\ncopied from the Document, you may at your option designate some or all\n\ + of these sections as invariant. To do this, add their titles to the\nlist of Invariant\ + \ Sections in the Modified Version's license notice.\nThese titles must be distinct from\ + \ any other section titles.\n\nYou may add a section Entitled \"Endorsements\", provided\ + \ it contains\nnothing but endorsements of your Modified Version by various\nparties--for\ + \ example, statements of peer review or that the text has\nbeen approved by an organization\ + \ as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five\ + \ words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to\ + \ the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover\ + \ Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any\ + \ one entity. If the Document already\nincludes a cover text for the same cover, previously\ + \ added by you or\nby arrangement made by the same entity you are acting on behalf of,\n\ + you may not add another; but you may replace the old one, on explicit\npermission from the\ + \ previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document\ + \ do not by this License\ngive permission to use their names for publicity for or to assert\ + \ or\nimply endorsement of any Modified Version.\n\n\n5. COMBINING DOCUMENTS\n\nYou may\ + \ combine the Document with other documents released under this\nLicense, under the terms\ + \ defined in section 4 above for modified\nversions, provided that you include in the combination\ + \ all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist\ + \ them all as Invariant Sections of your combined work in its\nlicense notice, and that\ + \ you preserve all their Warranty Disclaimers.\n\nThe combined work need only contain one\ + \ copy of this License, and\nmultiple identical Invariant Sections may be replaced with\ + \ a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent\ + \ contents, make the title of each such section unique by\nadding at the end of it, in parentheses,\ + \ the name of the original\nauthor or publisher of that section if known, or else a unique\ + \ number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections\ + \ in the license notice of the combined work.\n\nIn the combination, you must combine any\ + \ sections Entitled \"History\"\nin the various original documents, forming one section\ + \ Entitled\n\"History\"; likewise combine any sections Entitled \"Acknowledgements\",\n\ + and any sections Entitled \"Dedications\". You must delete all sections\nEntitled \"Endorsements\"\ + .\n\n\n6. COLLECTIONS OF DOCUMENTS\n\nYou may make a collection consisting of the Document\ + \ and other\ndocuments released under this License, and replace the individual\ncopies of\ + \ this License in the various documents with a single copy\nthat is included in the collection,\ + \ provided that you follow the rules\nof this License for verbatim copying of each of the\ + \ documents in all\nother respects.\n\nYou may extract a single document from such a collection,\ + \ and\ndistribute it individually under this License, provided you insert a\ncopy of this\ + \ License into the extracted document, and follow this\nLicense in all other respects regarding\ + \ verbatim copying of that\ndocument.\n\n\n7. AGGREGATION WITH INDEPENDENT WORKS\n\nA compilation\ + \ of the Document or its derivatives with other separate\nand independent documents or works,\ + \ in or on a volume of a storage or\ndistribution medium, is called an \"aggregate\" if\ + \ the copyright\nresulting from the compilation is not used to limit the legal rights\n\ + of the compilation's users beyond what the individual works permit.\nWhen the Document is\ + \ included in an aggregate, this License does not\napply to the other works in the aggregate\ + \ which are not themselves\nderivative works of the Document.\n\nIf the Cover Text requirement\ + \ of section 3 is applicable to these\ncopies of the Document, then if the Document is less\ + \ than one half of\nthe entire aggregate, the Document's Cover Texts may be placed on\n\ + covers that bracket the Document within the aggregate, or the\nelectronic equivalent of\ + \ covers if the Document is in electronic form.\nOtherwise they must appear on printed covers\ + \ that bracket the whole\naggregate.\n\n\n8. TRANSLATION\n\nTranslation is considered a\ + \ kind of modification, so you may\ndistribute translations of the Document under the terms\ + \ of section 4.\nReplacing Invariant Sections with translations requires special\npermission\ + \ from their copyright holders, but you may include\ntranslations of some or all Invariant\ + \ Sections in addition to the\noriginal versions of these Invariant Sections. You may include\ + \ a\ntranslation of this License, and all the license notices in the\nDocument, and any\ + \ Warranty Disclaimers, provided that you also include\nthe original English version of\ + \ this License and the original versions\nof those notices and disclaimers. In case of\ + \ a disagreement between\nthe translation and the original version of this License or a\ + \ notice\nor disclaimer, the original version will prevail.\n\nIf a section in the Document\ + \ is Entitled \"Acknowledgements\",\n\"Dedications\", or \"History\", the requirement (section\ + \ 4) to Preserve\nits Title (section 1) will typically require changing the actual\ntitle.\n\ + \n\n9. TERMINATION\n\nYou may not copy, modify, sublicense, or distribute the Document\n\ + except as expressly provided under this License. Any attempt\notherwise to copy, modify,\ + \ sublicense, or distribute it is void, and\nwill automatically terminate your rights under\ + \ this License.\n\nHowever, if you cease all violation of this License, then your license\n\ + from a particular copyright holder is reinstated (a) provisionally,\nunless and until the\ + \ copyright holder explicitly and finally\nterminates your license, and (b) permanently,\ + \ if the copyright holder\nfails to notify you of the violation by some reasonable means\ + \ prior to\n60 days after the cessation.\n\nMoreover, your license from a particular copyright\ + \ holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation\ + \ by some reasonable means, this is the first time you have\nreceived notice of violation\ + \ of this License (for any work) from that\ncopyright holder, and you cure the violation\ + \ prior to 30 days after\nyour receipt of the notice.\n\nTermination of your rights under\ + \ this section does not terminate the\nlicenses of parties who have received copies or rights\ + \ from you under\nthis License. If your rights have been terminated and not permanently\n\ + reinstated, receipt of a copy of some or all of the same material does\nnot give you any\ + \ rights to use it.\n\n\n10. FUTURE REVISIONS OF THIS LICENSE\n\nThe Free Software Foundation\ + \ may publish new, revised versions of the\nGNU Free Documentation License from time to\ + \ time. Such new versions\nwill be similar in spirit to the present version, but may differ\ + \ in\ndetail to address new problems or concerns. See\nhttp://www.gnu.org/copyleft/.\n\n\ + Each version of the License is given a distinguishing version number.\nIf the Document specifies\ + \ that a particular numbered version of this\nLicense \"or any later version\" applies to\ + \ it, you have the option of\nfollowing the terms and conditions either of that specified\ + \ version or\nof any later version that has been published (not as a draft) by the\nFree\ + \ Software Foundation. If the Document does not specify a version\nnumber of this License,\ + \ you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\ + \ If the Document\nspecifies that a proxy can decide which future versions of this\nLicense\ + \ can be used, that proxy's public statement of acceptance of a\nversion permanently authorizes\ + \ you to choose that version for the\nDocument.\n\n11. RELICENSING\n\n\"Massive Multiauthor\ + \ Collaboration Site\" (or \"MMC Site\") means any\nWorld Wide Web server that publishes\ + \ copyrightable works and also\nprovides prominent facilities for anybody to edit those\ + \ works. A\npublic wiki that anybody can edit is an example of such a server. A\n\"Massive\ + \ Multiauthor Collaboration\" (or \"MMC\") contained in the site\nmeans any set of copyrightable\ + \ works thus published on the MMC site.\n\n\"CC-BY-SA\" means the Creative Commons Attribution-Share\ + \ Alike 3.0 \nlicense published by Creative Commons Corporation, a not-for-profit \ncorporation\ + \ with a principal place of business in San Francisco, \nCalifornia, as well as future copyleft\ + \ versions of that license \npublished by that same organization.\n\n\"Incorporate\" means\ + \ to publish or republish a Document, in whole or in \npart, as part of another Document.\n\ + \nAn MMC is \"eligible for relicensing\" if it is licensed under this \nLicense, and if\ + \ all works that were first published under this License \nsomewhere other than this MMC,\ + \ and subsequently incorporated in whole or \nin part into the MMC, (1) had no cover texts\ + \ or invariant sections, and \n(2) were thus incorporated prior to November 1, 2008.\n\n\ + The operator of an MMC Site may republish an MMC contained in the site\nunder CC-BY-SA on\ + \ the same site at any time before August 1, 2009,\nprovided the MMC is eligible for relicensing.\n\ + \n\nADDENDUM: How to use this License for your documents\n\nTo use this License in a document\ + \ you have written, include a copy of\nthe License in the document and put the following\ + \ copyright and\nlicense notices just after the title page:\n\n Copyright (c) YEAR \ + \ YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n\ + \ under the terms of the GNU Free Documentation License, Version 1.3\n or any later\ + \ version published by the Free Software Foundation;\n with no Invariant Sections, no\ + \ Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in\ + \ the section entitled \"GNU\n Free Documentation License\".\n\nIf you have Invariant\ + \ Sections, Front-Cover Texts and Back-Cover Texts,\nreplace the \"with...Texts.\" line\ + \ with this:\n\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover\ + \ Texts being LIST, and with the Back-Cover Texts being LIST.\n\nIf you have Invariant Sections\ + \ without Cover Texts, or some other\ncombination of the three, merge those two alternatives\ + \ to suit the\nsituation.\n\nIf your document contains nontrivial examples of program code,\ + \ we\nrecommend releasing these examples in parallel under your choice of\nfree software\ + \ license, such as the GNU General Public License,\nto permit their use in free software." json: gfdl-1.3-plus.json - yml: gfdl-1.3-plus.yml + yaml: gfdl-1.3-plus.yml html: gfdl-1.3-plus.html - text: gfdl-1.3-plus.LICENSE + license: gfdl-1.3-plus.LICENSE - license_key: ghostpdl-permissive + category: Permissive spdx_license_key: LicenseRef-scancode-ghostpdl-permissive other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose and without fee is hereby granted. + This software is provided "as is" without express or implied warranty. json: ghostpdl-permissive.json - yml: ghostpdl-permissive.yml + yaml: ghostpdl-permissive.yml html: ghostpdl-permissive.html - text: ghostpdl-permissive.LICENSE + license: ghostpdl-permissive.LICENSE - license_key: ghostscript-1988 + category: Copyleft spdx_license_key: LicenseRef-scancode-ghostscript-1988 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + GHOSTSCRIPT GENERAL PUBLIC LICENSE + (Clarified 11 Feb 1988) + + Copyright (C) 1988 Richard M. Stallman + Everyone is permitted to copy and distribute verbatim copies of this + license, but changing it is not allowed. You can also use this wording + to make the terms for other programs. + + The license agreements of most software companies keep you at the + mercy of those companies. By contrast, our general public license is + intended to give everyone the right to share Ghostscript. To make sure + that you get the rights we want you to have, we need to make + restrictions that forbid anyone to deny you these rights or to ask you + to surrender the rights. Hence this license agreement. + + Specifically, we want to make sure that you have the right to give + away copies of Ghostscript, that you receive source code or else can get + it if you want it, that you can change Ghostscript or use pieces of it + in new free programs, and that you know you can do these things. + + To make sure that everyone has such rights, we have to forbid you to + deprive anyone else of these rights. For example, if you distribute + copies of Ghostscript, 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 tell them their rights. + + Also, for our own protection, we must make certain that everyone finds + out that there is no warranty for Ghostscript. If Ghostscript is + modified by someone else and passed on, we want its recipients to know + that what they have is not what we distributed, so that any problems + introduced by others will not reflect on our reputation. + + Therefore we (Richard M. Stallman and the Free Software Foundation, + Inc.) make the following terms which say what you must do to be allowed + to distribute or change Ghostscript. + + + COPYING POLICIES + + 1. You may copy and distribute verbatim copies of Ghostscript source + code as you receive it, in any medium, provided that you conspicuously + and appropriately publish on each copy a valid copyright and license + notice "Copyright (C) 1989 Aladdin Enterprises. All rights reserved. + Distributed by Free Software Foundation, Inc." (or with whatever year is + appropriate); keep intact the notices on all files that refer to this + License Agreement and to the absence of any warranty; and give any other + recipients of the Ghostscript program a copy of this License Agreement + along with the program. You may charge a distribution fee for the + physical act of transferring a copy. + + 2. You may modify your copy or copies of Ghostscript or any portion of + it, and copy and distribute such modifications under the terms of + Paragraph 1 above, provided that you also do the following: + + a) cause the modified files to carry prominent notices stating + that you changed the files and the date of any change; and + + b) cause the whole of any work that you distribute or publish, + that in whole or in part contains or is a derivative of Ghostscript + or any part thereof, to be licensed at no charge to all third + parties on terms identical to those contained in this License + Agreement (except that you may choose to grant more extensive + warranty protection to some or all third parties, at your option). + + c) You may charge a distribution fee for the physical act of + transferring a copy, and you may at your option offer warranty + protection in exchange for a fee. + + Mere aggregation of another unrelated program with this program (or its + derivative) on a volume of a storage or distribution medium does not bring + the other program under the scope of these terms. + + 3. You may copy and distribute Ghostscript (or a portion or derivative + of it, under Paragraph 2) in object code or executable form under the + terms of Paragraphs 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 + Paragraphs 1 and 2 above; or, + + b) accompany it with a written offer, valid for at least three + years, to give any third party free (except for a nominal + shipping charge) a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of + Paragraphs 1 and 2 above; or, + + c) accompany it with the information you received as to where the + corresponding source code may be obtained. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form alone.) + + For an executable file, complete source code means all the source code for + all modules it contains; but, as a special exception, it need not include + source code for modules which are standard libraries that accompany the + operating system on which the executable file runs. + + 4. You may not copy, sublicense, distribute or transfer Ghostscript + except as expressly provided under this License Agreement. Any attempt + otherwise to copy, sublicense, distribute or transfer Ghostscript is + void and your rights to use the program under this License agreement + shall be automatically terminated. However, parties who have received + computer software programs from you with this License Agreement will not + have their licenses terminated so long as such parties remain in full + compliance. + + 5. If you wish to incorporate parts of Ghostscript into other free + programs whose distribution conditions are different, write to the Free + Software Foundation at 675 Mass Ave, Cambridge, MA 02139. We have not + yet worked out a simple rule that can be stated here, but we will often + permit this. We 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. + + Your comments and suggestions about our licensing policies and our + software are welcome! Please contact the Free Software Foundation, + Inc., 675 Mass Ave, Cambridge, MA 02139, or call (617) 876-3296. + + NO WARRANTY + + BECAUSE GHOSTSCRIPT IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY + NO WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW. EXCEPT + WHEN OTHERWISE STATED IN WRITING, FREE SOFTWARE FOUNDATION, INC, RICHARD + M. STALLMAN, ALADDIN ENTERPRISES, L. PETER DEUTSCH, AND/OR OTHER PARTIES + PROVIDE GHOSTSCRIPT "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 GHOSTSCRIPT IS WITH + YOU. SHOULD GHOSTSCRIPT PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL + NECESSARY SERVICING, REPAIR OR CORRECTION. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL RICHARD M. + STALLMAN, THE FREE SOFTWARE FOUNDATION, INC., L. PETER DEUTSCH, ALADDIN + ENTERPRISES, AND/OR ANY OTHER PARTY WHO MAY MODIFY AND REDISTRIBUTE + GHOSTSCRIPT AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING + ANY LOST PROFITS, LOST MONIES, OR OTHER SPECIAL, INCIDENTAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE + (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED + INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR A FAILURE OF THE + PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) GHOSTSCRIPT, EVEN IF YOU + HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM + BY ANY OTHER PARTY. json: ghostscript-1988.json - yml: ghostscript-1988.yml + yaml: ghostscript-1988.yml html: ghostscript-1988.html - text: ghostscript-1988.LICENSE + license: ghostscript-1988.LICENSE - license_key: gitlab-ee + category: Commercial spdx_license_key: LicenseRef-scancode-gitlab-ee other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + The GitLab Enterprise Edition (EE) license (the “EE License”) + Copyright (c) 2011-present GitLab B.V. + + With regard to the GitLab Software: + + This software and associated documentation files (the "Software") may only be + used in production, if you (and any entity that you represent) have agreed to, + and are in compliance with, the GitLab Subscription Terms of Service, available + at https://about.gitlab.com/terms/#subscription (the “EE Terms”), or other + agreement governing the use of the Software, as agreed by you and GitLab, + and otherwise have a valid GitLab Enterprise Edition subscription for the + correct number of user seats. Subject to the foregoing sentence, you are free to + modify this Software and publish patches to the Software. You agree that GitLab + and/or its licensors (as applicable) retain all right, title and interest in and + to all such modifications and/or patches, and all such modifications and/or + patches may only be used, copied, modified, displayed, distributed, or otherwise + exploited with a valid GitLab Enterprise Edition subscription for the correct + number of user seats. Notwithstanding the foregoing, you may copy and modify + the Software for development and testing purposes, without requiring a + subscription. You agree that GitLab and/or its licensors (as applicable) retain + all right, title and interest in and to all such modifications. You are not + granted any other rights beyond what is expressly stated herein. Subject to the + foregoing, it is forbidden to copy, merge, publish, distribute, sublicense, + and/or sell the Software. + + This EE License applies only to the part of this Software that is not + distributed as part of GitLab Community Edition (CE). Any part of this Software + distributed as part of GitLab CE or is served client-side as an image, font, + cascading stylesheet (CSS), file which produces or is compiled, arranged, + augmented, or combined into client-side JavaScript, in whole or in part, is + copyrighted under the MIT Expat license. The full text of this EE License 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. + + For all third party components incorporated into the GitLab Software, those + components are licensed under the original license provided by the owner of the + applicable component. json: gitlab-ee.json - yml: gitlab-ee.yml + yaml: gitlab-ee.yml html: gitlab-ee.html - text: gitlab-ee.LICENSE + license: gitlab-ee.LICENSE +- license_key: gitpod-self-hosted-free-2020 + category: Proprietary Free + spdx_license_key: LicenseRef-scancode-gitpod-self-hosted-free-2020 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + # Gitpod Self-Hosted Free License Terms and + # Gitpod Enterprise Source Code License + + + ### 1 Preamble + + 1.1 These Software Licensing Terms (“Terms”) provide the terms and conditions + that govern usage of the Software Gitpod Self-Hosted Free Edition in source and + binary form (“Software”). The Software is provided by Gitpod GmbH, Am + Germaniahafen 1, 24143 Kiel (“Gitpod”). By downloading or using to the + Software, you agree to be bound by the following Terms. + + ### 2 Scope of Terms + + 2.1 These Terms apply to the usage of the Software, which is designed to be used + for business purposes. + + 2.2 These Terms apply to the binary code and to the source code of the Software, + unless the header of a source file explicitly refers to a different license. + + 2.3 These Terms apply unless you have a separate agreement with Gitpod in + written form that explicitly supersedes these Terms. + + ### 3 License Fees + + 3.1 The use of the Software as described in Sec. 2 is free of charge. It is + however limited to the features that are accessible without a license key and + may only take place in accordance with these Terms. + + 3.2 In case you want to use additional features or distribute the Software or + modifications to it without the restrictions of these Terms, please reach out + for a license key, which is subject to different legal and commercial terms. + + ### 4 Granting of Rights + + 4.1 Permission is hereby granted to obtain a copy of the Software and their + accompanying documentation to use, reproduce and execute the Software for + internal purposes in accordance with these Terms and to distribute the + unmodified software without charging a fee for it. + + 4.2 Subject to the conditions of these Terms, you may modify the Software, + including patching it. You agree that Gitpod retains all right, title and + interest in and to all such modifications and patches (“Modifications”). You may + only use, reproduce and execute the Modifications for internal purposes in + accordance with these Terms. You may not distribute Modifications to any third + party. Nonetheless, you may make such modifications publicly available as fork + of the repository which hosts the original version of the Software, however only + under these Terms and only, if accompanied by the complete machine-readable + source code of the Modifications and of the Software. + + 4.3 The copyright notices in the Software and this entire statement, including + the above license grant and these Terms must be included in all copies of the + Software (in whole or in part). Copyright notices, serial numbers and other + features aimed at product identification or control may not be removed, altered, + suppressed or otherwise bypassed under any circumstances. For the avoidance of + doubt, the software may neither in source nor in binary form be modified in + order to enable or activate any features of the software that would otherwise + require a valid license key. + + 4.4 Any other usage of the Software, in particular modifying, combining it with + other software and providing it to third parties on a commercial basis, is + prohibited. This includes any sale, lease, indirect use of the Software to the + benefit of third parties and its provision as a commercial service, or offering + it as a part of a commercial service or platform. + + 4.5 The Software remains the exclusive intellectual property of Gitpod at all + times. Mandatory rights resulting from applicable copyright law (e.g. related to + decompilation) remain unaffected. + + 4.6 Gitpod provides the source code of the Software on a voluntary basis and is + not obligated to do so. Furthermore, Gitpod is not obligated to provide any + updates or upgrades it may develop. + + 4.7 Please consider purchasing a license key (see above Sec. 3) for further + usage rights and additional features. + + ### 5 Telemetry + + 5.1 Gitpod intends to collect certain statistical data on the use of the + Software on an anonymized basis in the future with a future version of the + Software. The data will only be used to improve the Software and the data will + not be sold to third parties. Gitpod will inform about this with the future + release. + + ### 6 Warranty and Liability + + 6.1 THE SOFTWARE IS PROVIDED FREE OF CHARGE ON AN “AS IS” BASIS, WITHOUT + WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND + NON-INFRINGEMENT. + + 6.2 IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE + BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OF + OR OTHER DEALINGS IN THE SOFTWARE. + + 6.3 THIS LIMITATION OF LIABILITY DOES NOT EXCLUDE MANDATORY LEGAL GROUNDS FOR + LIABILITY SUCH AS LIABILITY FOR PERSONAL INJURY, GROSS NEGLIGENCE, WILLFUL + INTENT OR LAWS ON PRODUCT LIABILITY. + + ### 7 Third-party Components + + 7.1 The Software contains third-party components including open source software + (“Third-Party Components“). Parts of such Third-Party Components are subject to + deviating license terms (“Third-Party License Terms“). A list of such + Third-Party Components and its respective Third-Party License Terms are + available via the files License.third-party.npm.txt and + License.third-party.go.txt. No stipulation in these Terms is intended to impose + further restrictions on your use of such Third-Party Components licensed under + Third-Party License Terms. + + 7.2 Gitpod reserves the right to introduce deviating or additional Third-Party + License Terms in the course of modifications of the Software and in case of + updates for the Software to the extent necessary due to additional Third-Party + Components or due to changed Third-Party License Terms. + json: gitpod-self-hosted-free-2020.json + yaml: gitpod-self-hosted-free-2020.yml + html: gitpod-self-hosted-free-2020.html + license: gitpod-self-hosted-free-2020.LICENSE - license_key: gl2ps + category: Copyleft Limited spdx_license_key: GL2PS other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "GL2PS LICENSE Version 2, November 2003\n\nCopyright (C) 2003, Christophe Geuzaine\n\ + \nPermission to use, copy, and distribute this software and its documentation\nfor any purpose\ + \ with or without fee is hereby granted, provided that the\ncopyright notice appear in all\ + \ copies and that both that copyright notice and \nhis permission notice appear in supporting\ + \ documentation.\n\nPermission to modify and distribute modified versions of this software\ + \ is\ngranted, provided that:\n\n1) the modifications are licensed under the same terms\ + \ as this software;\n\n2) you make available the source code of any modifications that you\ + \ distribute,\neither on the same media as you distribute any executable or other form of\ + \ this\nsoftware, or via a mechanism generally accepted in the software development\ncommunity\ + \ for the electronic transfer of data.\n\nThis software is provided \"as is\" without express\ + \ or implied warranty." json: gl2ps.json - yml: gl2ps.yml + yaml: gl2ps.yml html: gl2ps.html - text: gl2ps.LICENSE + license: gl2ps.LICENSE - license_key: gladman-older-rijndael-code-use + category: Permissive spdx_license_key: LicenseRef-scancode-gladman-older-rijndael-code other_spdx_license_keys: - LicenseRef-scancode-gladman-older-rijndael-code-use is_exception: no is_deprecated: no - category: Permissive + text: "Code Use\n\nI am happy for this code to be used without payment provided that I don't\ + \ carry \nany risks as a result. \n\nI would appreciate an appropriate acknowledgement\ + \ of the source of the code if \nyou do use it in a product or activity provided to third\ + \ parties. I would also be \ngrateful for feedback on how the code is being used, any\ + \ problems you \nencounter, any changes or additions that are desirable for particular processors\ + \ \nand any more general improvements you would like to see (no promises mind!)." json: gladman-older-rijndael-code-use.json - yml: gladman-older-rijndael-code-use.yml + yaml: gladman-older-rijndael-code-use.yml html: gladman-older-rijndael-code-use.html - text: gladman-older-rijndael-code-use.LICENSE + license: gladman-older-rijndael-code-use.LICENSE - license_key: glide + category: Copyleft spdx_license_key: Glide other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + 3DFX GLIDE Source Code General Public License + + 1. PREAMBLE + + This license is for software that provides a 3D graphics application + program interface (API).The license is intended to offer terms similar + to some standard General Public Licenses designed to foster open + standards and unrestricted accessibility to source code. Some of these + licenses require that, as a condition of the license of the software, + any derivative works (that is, new software which is a work containing + the original program or a portion of it) must be available for general + use, without restriction other than for a minor transfer fee, and that + the source code for such derivative works must likewise be made + available. The only restriction is that such derivative works must be + subject to the same General Public License terms as the original work. + + This 3dfx GLIDE Source Code General Public License differs from the + standard licenses of this type in that it does not require the entire + derivative work to be made available under the terms of this license + nor is the recipient required to make available the source code for + the entire derivative work. Rather, the license is limited to only the + identifiable portion of the derivative work that is derived from the + licensed software. The precise terms and conditions for copying, + distribution and modification follow. + + 2. DEFINITIONS + + 2.1 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 3dfx GLIDE Source Code General + Public License. + + 2.2 The term "Program" as used in this Agreement refers to 3DFX's + GLIDE source code and object code and any Derivative Work. + + 2.3 "Derivative Work" means, for the purpose of the License, that + portion of any work that contains the Program or the identifiable + portion of a work that is derived from the Program, either verbatim or + with modifications and/or translated into another language, and that + performs 3D graphics API operations. It does not include any other + portions of a work. + + 2.4 "Modifications of the Program" means any work, which includes a + Derivative Work, and includes the whole of such work. + + 2.5 "License" means this 3dfx GLIDE Source Code General Public License. + + 2.6 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, any + associated interface definition files, and the scripts used to control + compilation and installation of the executable work. + + 2.7 "3dfx" means 3dfx Interactive, Inc. + + + 3. LICENSED ACTIVITIES + + 3.1 COPYING - You may copy and distribute verbatim copies of the + Program's Source Code as you receive it, in any medium, subject to the + provision of section 3.3 and provided also that: + + (a) you conspicuously and appropriately publish on each copy + an appropriate copyright notice (3dfx Interactive, Inc. 1999), a notice + that recipients who wish to copy, distribute or modify the Program can + only do so subject to this License, and a disclaimer of warranty as + set forth in section 5; + + (b) keep intact all the notices that refer to this License and + to the absence of any warranty; and + + (c) do not make any use of the GLIDE trademark without the prior + written permission of 3dfx, and + + (d) give all recipients of the Program a copy of this License + along with the Program or instructions on how to easily receive a copy + of this License. + + + 3.2 MODIFICATION OF THE PROGRAM/DERIVATIVE WORKS - You may modify your + copy or copies of the Program or any portion of it, and copy and + distribute such modifications subject to the provisions of section 3.3 + and provided that you also meet all of the following conditions: + + (a) you conspicuously and appropriately publish on each copy + of a Derivative Work an appropriate copyright notice, a notice that + recipients who wish to copy, distribute or modify the Derivative Work + can only do so subject to this License, and a disclaimer of warranty + as set forth in section 5; + + (b) keep intact all the notices that refer to this License and + to the absence of any warranty; and + + (c) give all recipients of the Derivative Work a copy of this + License along with the Derivative Work or instructions on how to easily + receive a copy of this License. + + (d) You must cause the modified files of the Derivative Work + to carry prominent notices stating that you changed the files and the + date of any change. + + (e) You must cause any Derivative Work that you distribute or + publish to be licensed at no charge to all third parties under the + terms of this License. + + (f) You do not make any use of the GLIDE trademark without the + prior written permission of 3dfx. + + (g) If the Derivative Work normally reads commands + interactively when run, you must cause it, when started running for + such interactive use, to print or display an announcement as follows: + + "COPYRIGHT 3DFX INTERACTIVE, INC. 1999, ALL RIGHTS RESERVED THIS + SOFTWARE IS FREE AND PROVIDED "AS IS," WITHOUT WARRANTY OF ANY KIND, + EITHER EXPRESSED OR IMPLIED. THERE IS NO RIGHT TO USE THE GLIDE + TRADEMARK WITHOUT PRIOR WRITTEN PERMISSION OF 3DFX INTERACTIVE, + INC. SEE THE 3DFX GLIDE GENERAL PUBLIC LICENSE FOR A FULL TEXT OF THE + DISTRIBUTION AND NON-WARRANTY PROVISIONS (REQUEST COPY FROM + INFO@3DFX.COM)." + + (h) The requirements of this section 3.2 do not apply to the + modified work as a whole but only to the Derivative Work. It is not + the intent of this License 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 Works. + + + 3.3 DISTRIBUTION + + (a) All copies of the Program or Derivative Works which are + distributed must include in the file headers the following language + verbatim: + + "THIS SOFTWARE IS SUBJECT TO COPYRIGHT PROTECTION AND IS OFFERED + ONLY PURSUANT TO THE 3DFX GLIDE GENERAL PUBLIC LICENSE. THERE IS NO + RIGHT TO USE THE GLIDE TRADEMARK WITHOUT PRIOR WRITTEN PERMISSION OF + 3DFX INTERACTIVE, INC. A COPY OF THIS LICENSE MAY BE OBTAINED FROM + THE DISTRIBUTOR OR BY CONTACTING 3DFX INTERACTIVE INC (info@3dfx.com). + THIS PROGRAM. IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER + EXPRESSED OR IMPLIED. SEE THE 3DFX GLIDE GENERAL PUBLIC LICENSE FOR A + FULL TEXT OF THE NON-WARRANTY PROVISIONS. + + USE, DUPLICATION OR DISCLOSURE BY THE GOVERNMENT IS SUBJECT TO + RESTRICTIONS AS SET FORTH IN SUBDIVISION (C)(1)(II) OF THE RIGHTS + IN TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 252.227-7013, + AND/OR IN SIMILAR OR SUCCESSOR CLAUSES IN THE FAR, DOD OR NASA FAR + SUPPLEMENT. UNPUBLISHED RIGHTS RESERVED UNDER THE COPYRIGHT LAWS OF + THE UNITED STATES. + + COPYRIGHT 3DFX INTERACTIVE, INC. 1999, ALL RIGHTS RESERVED" + + (b) You may distribute the Program or a Derivative Work in + object code or executable form under the terms of Sections 3.1 and 3.2 + provided that you also do one of the following: + + (1) Accompany it with the complete corresponding + machine-readable source code, which must be distributed under the + terms of Sections 3.1 and 3.2; or, + + (2) 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 3.1 and 3.2 on a medium + customarily used for software interchange; or, + + (3) 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 3.3(b)(2) above.) + + (c) 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 code. + + (d) If distribution of executable code 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. + + (e) Each time you redistribute the Program or any Derivative + Work, the recipient automatically receives a license from 3dfx and + successor licensors to copy, distribute or modify the Program and + Derivative Works subject to the terms and conditions of the License. + 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. + + (f) You may not make any use of the GLIDE trademark without + the prior written permission of 3dfx. + + (g) You may not copy, modify, sublicense, or distribute the + Program or any Derivative Works except as expressly provided under + this License. Any attempt otherwise to copy, modify, sublicense or + distribute the Program or any Derivative Works 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. + + + 4. MISCELLANEOUS + + 4.1 Acceptance of this License is voluntary. By using, modifying or + distributing the Program or any Derivative Work, 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. Nothing else grants you permission to modify or distribute the + Program or Derivative Works and doing so without acceptance of this + License is in violation of the U.S. and international copyright laws. + + 4.2 If the distribution and/or use of the Program or Derivative Works + 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. + + 4.3 This License is to be construed according to the laws of the + State of California and you consent to personal jurisdiction in the + State of California in the event it is necessary to enforce the + provisions of this License. + + + 5. NO WARRANTIES + + 5.1 TO THE EXTENT PERMITTED BY APPLICABLE LAW, THERE IS NO WARRANTY + FOR THE PROGRAM. OR DERIVATIVE WORKS THE COPYRIGHT HOLDERS AND/OR + OTHER PARTIES PROVIDE THE PROGRAM AND ANY DERIVATIVE WORKS"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 AND ANY DERIVATIVE WORK IS WITH YOU. + SHOULD THE PROGRAM OR ANY DERIVATIVE WORK PROVE DEFECTIVE, YOU ASSUME + THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 5.2 IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL 3DFX + INTERACTIVE, INC., OR ANY OTHER COPYRIGHT HOLDER, OR ANY OTHER PARTY + WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM OR DERIVATIVE WORKS 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 OR DERIVATIVE WORKS (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 OR + DERIVATIVE WORKS TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH + HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH + DAMAGES. json: glide.json - yml: glide.yml + yaml: glide.yml html: glide.html - text: glide.LICENSE + license: glide.LICENSE - license_key: glulxe + category: Permissive spdx_license_key: Glulxe other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + You may copy and distribute it freely, by any means and under any conditions, + as long as the code and documentation is not changed. You may also incorporate + this code into your own program and distribute that, or modify this code and + use and distribute the modified version, as long as you retain a notice in your + program or documentation which mentions my name and the URL shown above. json: glulxe.json - yml: glulxe.yml + yaml: glulxe.yml html: glulxe.html - text: glulxe.LICENSE + license: glulxe.LICENSE - license_key: glut + category: Permissive spdx_license_key: LicenseRef-scancode-glut other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This program is freely distributable without licensing fees and is + provided without guarantee or warrantee expressed or implied. This + program is -not- in the public domain. json: glut.json - yml: glut.yml + yaml: glut.yml html: glut.html - text: glut.LICENSE + license: glut.LICENSE - license_key: glwtpl + category: Permissive spdx_license_key: GLWTPL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "GLWT(Good Luck With That) Public License \nCopyright (c) Everyone, except Author\n\n\ + Everyone is permitted to copy, distribute, modify, merge, sell, publish,\nsublicense or\ + \ whatever they want with this software but at their OWN RISK.\n\nPreamble\n\nThe author\ + \ has absolutely no clue what the code in this project does.\nIt might just work or not,\ + \ there is no third option.\n\nGOOD LUCK WITH THAT PUBLIC LICENSE\nTERMS AND CONDITIONS\ + \ FOR COPYING, DISTRIBUTION, AND MODIFICATION\n\n0. You just DO WHATEVER YOU WANT TO as\ + \ long as you NEVER LEAVE A\nTRACE TO TRACK THE AUTHOR of the original product to blame\ + \ for or hold\nresponsible.\n\nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES\ + \ OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM,\ + \ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.\n\ + \nGood luck and Godspeed." json: glwtpl.json - yml: glwtpl.yml + yaml: glwtpl.yml html: glwtpl.html - text: glwtpl.LICENSE + license: glwtpl.LICENSE - license_key: gnu-emacs-gpl-1988 + category: Copyleft spdx_license_key: LicenseRef-scancode-gnu-emacs-gpl-1988 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "GNU EMACS GENERAL PUBLIC LICENSE\n\t\t (Clarified 11 Feb 1988)\n\n Copyright (C)\ + \ 1985, 1987, 1988 Richard M. Stallman\n Everyone is permitted to copy and distribute verbatim\ + \ copies\n of this license, but changing it is not allowed. You can also\n use this wording\ + \ to make the terms for other programs.\n\n The license agreements of most software companies\ + \ keep you at the\nmercy of those companies. By contrast, our general public license is\n\ + intended to give everyone the right to share GNU Emacs. To make\nsure that you get the\ + \ rights we want you to have, we need to make\nrestrictions that forbid anyone to deny you\ + \ these rights or to ask you\nto surrender the rights. Hence this license agreement.\n\n\ + \ Specifically, we want to make sure that you have the right to give\naway copies of Emacs,\ + \ that you receive source code or else can get it\nif you want it, that you can change Emacs\ + \ or use pieces of it in new\nfree programs, and that you know you can do these things.\n\ + \n To make sure that everyone has such rights, we have to forbid you to\ndeprive anyone\ + \ else of these rights. For example, if you distribute\ncopies of Emacs, you must give\ + \ the recipients all the rights that you\nhave. You must make sure that they, too, receive\ + \ or can get the\nsource code. And you must tell them their rights.\n\n Also, for our\ + \ own protection, we must make certain that everyone\nfinds out that there is no warranty\ + \ for GNU Emacs. If Emacs is\nmodified by someone else and passed on, we want its recipients\ + \ to know\nthat what they have is not what we distributed, so that any problems\nintroduced\ + \ by others will not reflect on our reputation.\n\n Therefore we (Richard Stallman and\ + \ the Free Software Fundation,\nInc.) make the following terms which say what you must do\ + \ to be\nallowed to distribute or change GNU Emacs.\n\n\t\t\tCOPYING POLICIES\n\n 1. You\ + \ may copy and distribute verbatim copies of GNU Emacs source code\nas you receive it, in\ + \ any medium, provided that you conspicuously and\nappropriately publish on each copy a\ + \ valid copyright notice \"Copyright\n(C) 1988 Free Software Foundation, Inc.\" (or with\ + \ whatever year is\nappropriate); keep intact the notices on all files that refer to this\n\ + License Agreement and to the absence of any warranty; and give any\nother recipients of\ + \ the GNU Emacs program a copy of this License\nAgreement along with the program. You may\ + \ charge a distribution fee\nfor the physical act of transferring a copy.\n\n 2. You may\ + \ modify your copy or copies of GNU Emacs source code or\nany portion of it, and copy and\ + \ distribute such modifications under\nthe terms of Paragraph 1 above, provided that you\ + \ also do the following:\n\n a) cause the modified files to carry prominent notices stating\n\ + \ that you changed the files and the date of any change; and\n\n b) cause the whole\ + \ of any work that you distribute or publish,\n that in whole or in part contains or\ + \ is a derivative of GNU Emacs\n or any part thereof, to be licensed at no charge to\ + \ all third\n parties on terms identical to those contained in this License\n Agreement\ + \ (except that you may choose to grant more extensive\n warranty protection to some or\ + \ all third parties, at your option).\n\n c) if the modified program serves as a text\ + \ editor, cause it when\n started running in the simplest and usual way, to print an\n\ + \ announcement including a valid copyright notice \"Copyright (C)\n 1988 Free Software\ + \ Foundation, Inc.\" (or with the year that is\n appropriate), saying that there is no\ + \ warranty (or else, saying\n that you provide a warranty) and that users may redistribute\ + \ the\n program under these conditions, and telling the user how to view a\n copy\ + \ of this License Agreement.\n\n d) You may charge a distribution fee for the physical\ + \ act of\n transferring a copy, and you may at your option offer warranty\n protection\ + \ in exchange for a fee.\n\nMere aggregation of another unrelated program with this program\ + \ (or its\nderivative) on a volume of a storage or distribution medium does not bring\n\ + the other program under the scope of these terms.\n\n 3. You may copy and distribute GNU\ + \ Emacs (or a portion or derivative of it,\nunder Paragraph 2) in object code or executable\ + \ form under the terms of\nParagraphs 1 and 2 above provided that you also do one of the\ + \ following:\n\n a) accompany it with the complete corresponding machine-readable\n \ + \ source code, which must be distributed under the terms of\n Paragraphs 1 and 2 above;\ + \ or,\n\n b) accompany it with a written offer, valid for at least three\n years,\ + \ to give any third party free (except for a nominal\n shipping charge) a complete machine-readable\ + \ copy of the\n corresponding source code, to be distributed under the terms of\n \ + \ Paragraphs 1 and 2 above; or,\n\n c) accompany it with the information you received\ + \ as to where the\n corresponding source code may be obtained. (This alternative is\n\ + \ allowed only for noncommercial distribution and only if you\n received the program\ + \ in object code or executable form alone.)\n\nFor an executable file, complete source code\ + \ means all the source code for\nall modules it contains; but, as a special exception, it\ + \ need not include\nsource code for modules which are standard libraries that accompany\ + \ the\noperating system on which the executable file runs.\n\n 4. You may not copy, sublicense,\ + \ distribute or transfer GNU Emacs\nexcept as expressly provided under this License Agreement.\ + \ Any attempt\notherwise to copy, sublicense, distribute or transfer GNU Emacs is void\ + \ and\nyour rights to use GNU Emacs under this License agreement shall be\nautomatically\ + \ terminated. However, parties who have received computer\nsoftware programs from you with\ + \ this License Agreement will not have\ntheir licenses terminated so long as such parties\ + \ remain in full compliance.\n\n 5. If you wish to incorporate parts of GNU Emacs into\ + \ other free programs\nwhose distribution conditions are different, write to the Free Software\n\ + Foundation. We have not yet worked out a simple rule that can be stated\nhere, but we will\ + \ often permit this. We will be guided by the two goals of\npreserving the free status\ + \ of all derivatives of our free software and of\npromoting the sharing and reuse of software.\n\ + \nYour comments and suggestions about our licensing policies and our\nsoftware are welcome!\ + \ Please contact the Free Software Foundation, Inc.,\n675 Mass Ave, Cambridge, MA 02139,\ + \ or call (617) 876-3296.\n\n\t\t\t NO WARRANTY\n\n BECAUSE GNU EMACS IS LICENSED FREE\ + \ OF CHARGE, WE PROVIDE ABSOLUTELY\nNO WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE\ + \ LAW. EXCEPT\nWHEN OTHERWISE STATED IN WRITING, FREE SOFTWARE FOUNDATION, INC,\nRICHARD\ + \ M. STALLMAN AND/OR OTHER PARTIES PROVIDE GNU EMACS \"AS IS\"\nWITHOUT WARRANTY OF ANY\ + \ KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES\ + \ OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY\n\ + AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE GNU EMACS\nPROGRAM PROVE DEFECTIVE,\ + \ YOU ASSUME THE COST OF ALL NECESSARY\nSERVICING, REPAIR OR CORRECTION.\n\n IN NO EVENT\ + \ UNLESS REQUIRED BY APPLICABLE LAW WILL FREE SOFTWARE\nFOUNDATION, INC., RICHARD M. STALLMAN,\ + \ AND/OR ANY OTHER PARTY WHO MAY\nMODIFY AND REDISTRIBUTE GNU EMACS AS PERMITTED ABOVE,\ + \ BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY LOST PROFITS, LOST MONIES, OR OTHER\nSPECIAL,\ + \ INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\nINABILITY TO USE (INCLUDING\ + \ BUT NOT LIMITED TO LOSS OF DATA OR DATA\nBEING RENDERED INACCURATE OR LOSSES SUSTAINED\ + \ BY THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH PROGRAMS NOT DISTRIBUTED\ + \ BY\nFREE SOFTWARE FOUNDATION, INC.) THE PROGRAM, EVEN IF YOU HAVE BEEN\nADVISED OF THE\ + \ POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY ANY\nOTHER PARTY." json: gnu-emacs-gpl-1988.json - yml: gnu-emacs-gpl-1988.yml + yaml: gnu-emacs-gpl-1988.yml html: gnu-emacs-gpl-1988.html - text: gnu-emacs-gpl-1988.LICENSE + license: gnu-emacs-gpl-1988.LICENSE - license_key: gnu-javamail-exception + category: Copyleft Limited spdx_license_key: gnu-javamail-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, if you link this library with other files to produce an + executable, this library does not by itself cause the resulting executable to be + covered by the GNU General Public License. This exception does not however + invalidate any other reasons why the executable file might be covered by the + GNU General Public License. json: gnu-javamail-exception.json - yml: gnu-javamail-exception.yml + yaml: gnu-javamail-exception.yml html: gnu-javamail-exception.html - text: gnu-javamail-exception.LICENSE + license: gnu-javamail-exception.LICENSE - license_key: gnuplot + category: Copyleft Limited spdx_license_key: gnuplot other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Permission to use, copy, and distribute this software and its documentation for\nany\ + \ purpose with or without fee is hereby granted, provided that the above\ncopyright notice\ + \ appear in all copies and that both that copyright notice and\nthis permission notice appear\ + \ in supporting documentation.\n\nPermission to modify the software is granted, but not\ + \ the right to distribute\nthe complete modified source code. Modifications are to be distributed\ + \ as\npatches to the released version. \n\nPermission to distribute binaries produced by\ + \ compiling modified sources is\ngranted, provided you \n\n 1. distribute the corresponding\ + \ source modifications from the released\n version in the form of a patch file along\ + \ with the binaries, \n 2. add special version identification to distinguish your version\ + \ in\n addition to the base release version number, \n 3. provide your name and\ + \ address as the primary contact for the support of\n your modified version, and\ + \ \n 4. retain our contact information in regard to use of the base software. \n\nPermission\ + \ to distribute the released version of the source code along with\ncorresponding source\ + \ modifications in the form of a patch file is granted with\nsame provisions 2 through 4\ + \ for binary distributions.\n\nThis software is provided \"as is\" without express or implied\ + \ warranty to the\nextent permitted by applicable law." json: gnuplot.json - yml: gnuplot.yml + yaml: gnuplot.yml html: gnuplot.html - text: gnuplot.LICENSE + license: gnuplot.LICENSE - license_key: goahead + category: Proprietary Free spdx_license_key: LicenseRef-scancode-goahead other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "License Agreement \n\nTHIS LICENSE ALLOWS ONLY THE LIMITED USE OF GO AHEAD SOFTWARE,\n\ + INC. PROPRIETARY CODE. PLEASE CAREFULLY READ THIS AGREEMENT AS IT\nPERTAINS TO THIS LICENSE,\ + \ YOU CERTIFY THAT YOU WILL USE THE SOFTWARE\nONLY IN THE MANNER PERMITTED HEREIN.\n\n1.\ + \ Definitions. \n\n1.1 \"Documentation\" means any documentation GoAhead includes with the\n\ + Original Code.\n\n1.2 \"GoAhead\" means Go Ahead Software, Inc. \n\n1.3 \"Intellectual Property\ + \ Rights\" means all rights, whether now existing\nor hereinafter acquired, in and to trade\ + \ secrets, patents, copyrights,\ntrademarks, know-how, as well as moral rights and similar\ + \ rights of any\ntype under the laws of any governmental authority, domestic or foreign,\n\ + including rights in and to all applications and registrations relating\nto any of the foregoing.\n\ + \n1.4 \"License\" or \"Agreement\" means this document. \n\n1.5 \"Modifications\" means\ + \ any addition to or deletion from the substance\nor structure of either the Original Code\ + \ or any previous Modifications.\n\n1.6 \"Original Code\" means the Source Code to GoAhead’s\ + \ proprietary\ncomputer software entitled GoAhead WebServer.\n\n1.7 \"Response Header\"\ + \ means the first portion of the response message\noutput by the GoAhead WebServer, containing\ + \ but not limited to, header\nfields for date, content-type, server identification and cache\ + \ control.\n\n1.8 \"Server Identification Field\" means the field in the Response Header\n\ + which contains the text \"Server: GoAhead-Webs\".\n\n1.9 \"You\" means an individual or\ + \ a legal entity exercising rights under,\nand complying with all of the terms of, this\ + \ license or a future version\nof this license. For legal entities, \"You\" includes any\ + \ entity which\ncontrols, is controlled by, or is under common control with You. For\npurposes\ + \ of this definition, \"control\" means (a) the power, direct or\nindirect, to cause the\ + \ direction or management of such entity, whether\nby contract or otherwise, or (b) ownership\ + \ of fifty percent (50%) or\nmore of the outstanding shares or beneficial ownership of such\ + \ entity.\n\n2. Source Code License. \n\n2.1 Limited Source Code Grant. \n\nGoAhead hereby\ + \ grants You a world-wide, royalty-free, non-exclusive\nlicense, subject to third party\ + \ intellectual property claims, to use,\nreproduce, modify, copy and distribute the Original\ + \ Code.\n\n2.2 Binary Code. \n\nGoAhead hereby grants You a world-wide, royalty-free, non-exclusive\n\ + license to copy and distribute the binary code versions of the Original\nCode together with\ + \ Your Modifications.\n\n2.3 License Back to GoAhead. \n\nYou hereby grant in both source\ + \ code and binary code to GoAhead a\nworld-wide, royalty-free, non-exclusive license to\ + \ copy, modify, display,\nuse and sublicense any Modifications You make that are distributed\ + \ or\nplanned for distribution. Within 30 days of either such event, You\nagree to ship\ + \ to GoAhead a file containing the Modifications (in a media\nto be determined by the parties),\ + \ including any programmers’ notes and\nother programmers’ materials. Additionally, You\ + \ will provide to GoAhead\na complete description of the product, the product code or model\ + \ number,\nthe date on which the product is initially shipped, and a contact name,\nphone\ + \ number and e-mail address for future correspondence. GoAhead will\nkeep confidential all\ + \ data specifically marked as such.\n\n2.4 Restrictions on Use. \n\nYou may sublicense Modifications\ + \ to third parties such as subcontractors\nor OEM's provided that You enter into license\ + \ agreements with such third\nparties that bind such third parties to all the obligations\ + \ under this\nAgreement applicable to you and that are otherwise substantially similar\n\ + in scope and application to this Agreement.\n\n3. Term. \n\nThis Agreement and license are\ + \ effective from the time You accept the\nterms of this Agreement until this Agreement is\ + \ terminated. You may\nterminate this Agreement at any time by uninstalling or destroying\n\ + all copies of the Original Code including any and all binary versions\nand removing any\ + \ Modifications to the Original Code existing in any\nproducts. This Agreement will terminate\ + \ immediately and without further\nnotice if You fail to comply with any provision of this\ + \ Agreement. All\nrestrictions on use, and all other provisions that may reasonably\nbe\ + \ interpreted to survive termination of this Agreement, will survive\ntermination of this\ + \ Agreement for any reason. Upon termination, You agree\nto uninstall or destroy all copies\ + \ of the Original Code, Modifications,\nand Documentation.\n\n4. Trademarks and Brand. \n\ + \n4.1 License and Use. \n\nGoAhead hereby grants to You a limited world-wide, royalty-free,\n\ + non-exclusive license to use the GoAhead trade names, trademarks, logos,\nservice marks\ + \ and product designations posted in Exhibit A (collectively,\nthe \"GoAhead Marks\") in\ + \ connection with the activities by You under this\nAgreement. Additionally, GoAhead grants\ + \ You a license under the terms\nabove to such GoAhead trademarks as shall be identified\ + \ at a URL (the\n\"URL\") provided by GoAhead. The use by You of GoAhead Marks shall be\ + \ in\naccordance with GoAhead’s trademark policies regarding trademark usage\nas established\ + \ at the web site designated by the URL, or as otherwise\ncommunicated to You by GoAhead\ + \ at its sole discretion. You understand and\nagree that any use of GoAhead Marks in connection\ + \ with this Agreement\nshall not create any right, title or interest in or to such GoAhead\n\ + Marks and that all such use and goodwill associated with GoAhead Marks\nwill inure to the\ + \ benefit of GoAhead.\n\n4.2 Promotion by You of GoAhead WebServer Mark. \n\nIn consideration\ + \ for the licenses granted by GoAhead to You herein, You\nagree to notify GoAhead when You\ + \ incorporate the GoAhead WebServer in\nYour product and to inform GoAhead when such product\ + \ begins to ship. You\nagree to promote the Original Code by prominently and visibly displaying\n\ + a graphic of the GoAhead WebServer mark on the initial web page of Your\nproduct that is\ + \ displayed each time a user connects to it. You also agree\nthat GoAhead may identify your\ + \ company as a user of the GoAhead WebServer\nin conjunction with its own marketing efforts.\ + \ You may further promote\nthe Original Code by displaying the GoAhead WebServer mark in\ + \ marketing\nand promotional materials such as the home page of your web site or web\npages\ + \ promoting the product.\n\n4.3 Placement of Copyright Notice by You. \n\nYou agree to include\ + \ copies of the following notice (the \"Notice\")\nregarding proprietary rights in all copies\ + \ of the products that You\ndistribute, as follows: (i) embedded in the object code; and\ + \ (ii) on\nthe title pages of all documentation. Furthermore, You agree to use\ncommercially\ + \ reasonable efforts to cause any licensees of your products\nto embed the Notice in object\ + \ code and on the title pages or relevant\ndocumentation. The Notice is as follows: Copyright\ + \ (c) 20xx GoAhead\nSoftware, Inc. All Rights Reserved. Unless GoAhead otherwise instructs,\n\ + the year 20xx is to be replaced with the year during which the release of\nthe Original\ + \ Code containing the notice is issued by GoAhead. If this year\nis not supplied with Documentation,\ + \ GoAhead will supply it upon request.\n\n4.4 No Modifications to Server Identification\ + \ Field. \n\nYou agree not to remove or modify the Server identification Field\ncontained\ + \ in the Response Header as defined in Section 1.6 and 1.7.\n\n5. Warranty Disclaimers.\ + \ \n\nTHE ORIGINAL CODE, THE DOCUMENTATION AND THE MEDIA UPON WHICH THE ORIGINAL\nCODE IS\ + \ RECORDED (IF ANY) ARE PROVIDED \"AS IS\" AND WITHOUT WARRANTIES OF\nANY KIND, EXPRESS,\ + \ STATUTORY OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND FITNESS FOR A PARTICULAR\nPURPOSE.\n\nThe entire risk as to the quality and performance\ + \ of the Original Code\n(including any Modifications You make) and the Documentation is\ + \ with\nYou. Should the Original Code or the Documentation prove defective,\nYou (and not\ + \ GoAhead or its distributors, licensors or dealers) assume\nthe entire cost of all necessary\ + \ servicing or repair. GoAhead does not\nwarrant that the functions contained in the Original\ + \ Code will meet your\nrequirements or operate in the combination that You may select for\ + \ use,\nthat the operation of the Original Code will be uninterrupted or error\nfree, or\ + \ that defects in the Original Code will be corrected. No oral\nor written statement by\ + \ GoAhead or by a representative of GoAhead shall\ncreate a warranty or increase the scope\ + \ of this warranty.\n\nGOAHEAD DOES NOT WARRANT THE ORIGINAL CODE AGAINST INFRINGEMENT OR\ + \ THE\nLIKE WITH RESPECT TO ANY COPYRIGHT, PATENT, TRADE SECRET, TRADEMARK\nOR OTHER PROPRIETARY\ + \ RIGHT OF ANY THIRD PARTY AND DOES NOT WARRANT\nTHAT THE ORIGINAL CODE DOES NOT INCLUDE\ + \ ANY VIRUS, SOFTWARE ROUTINE\nOR OTHER SOFTWARE DESIGNED TO PERMIT UNAUTHORIZED ACCESS,\ + \ TO DISABLE,\nERASE OR OTHERWISE HARM SOFTWARE, HARDWARE OR DATA, OR TO PERFORM ANY\nOTHER\ + \ SUCH ACTIONS.\n\nAny warranties that by law survive the foregoing disclaimers shall\n\ + terminate ninety (90) days from the date You received the Original Code.\n\n6. Limitation\ + \ of Liability. \n\nYOUR SOLE REMEDIES AND GOAHEAD'S ENTIRE LIABILITY ARE SET FORTH ABOVE.\ + \ IN\nNO EVENT WILL GOAHEAD OR ITS DISTRIBUTORS OR DEALERS BE LIABLE FOR\nDIRECT, INDIRECT,\ + \ INCIDENTAL OR CONSEQUENTIAL DAMAGES RESULTING FROM\nTHE USE OF THE ORIGINAL CODE, THE\ + \ INABILITY TO USE THE ORIGINAL CODE,\nOR ANY DEFECT IN THE ORIGINAL CODE, INCLUDING ANY\ + \ LOST PROFITS, EVEN IF\nTHEY HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nYou\ + \ agree that GoAhead and its distributors and dealers will not be\nLIABLE for defense or\ + \ indemnity with respect to any claim against You\nby any third party arising from your\ + \ possession or use of the Original\nCode or the Documentation.\n\nIn no event will GoAhead’s\ + \ total liability to You for all damages, losses,\nand causes of action (whether in contract,\ + \ tort, including negligence,\nor otherwise) exceed the amount You paid for this product.\n\ + \nSOME STATES DO NOT ALLOW LIMITATIONS ON HOW LONG AN IMPLIED WARRANTY\nLASTS, AND SOME\ + \ STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION\nOF INCIDENTAL OR CONSEQUENTIAL DAMAGES,\ + \ SO THE ABOVE LIMITATIONS OR\nEXCLUSIONS MAY NOT APPLY TO YOU. THIS WARRANTY GIVES YOU\ + \ SPECIFIC LEGAL\nRIGHTS AND YOU MAY ALSO HAVE OTHER RIGHTS WHICH VARY FROM STATE TO STATE.\n\ + \n7. Indemnification by You. \n\nYou agree to indemnify and hold GoAhead harmless against\ + \ any and all\nclaims, losses, damages and costs (including legal expenses and reasonable\n\ + counsel fees) arising out of any claim of a third party with respect to\nthe contents of\ + \ the Your products, and any intellectual property rights\nor other rights or interests\ + \ related thereto.\n\n8. High Risk Activities. \n\nThe Original Code is not fault-tolerant\ + \ and is not designed , manufactured\nor intended for use or resale as online control equipment\ + \ in hazardous\nenvironments requiring fail-safe performance, such as in the operation\n\ + of nuclear facilities, aircraft navigation or communication systems,\nair traffic control,\ + \ direct life support machines or weapons systems,\nin which the failure of the Original\ + \ Code could lead directly to death,\npersonal injury, or severe physical or environmental\ + \ damage. GoAhead and\nits suppliers specifically disclaim any express or implied warranty\ + \ of\nfitness for any high risk uses listed above.\n\n9. Government Restricted Rights. \n\ + \nFor units of the Department of Defense, use, duplication, or disclosure\nby the Government\ + \ is subject to restrictions as set forth in subparagraph\n(c)(1)(ii) of the Rights in Technical\ + \ Data and Computer Software clause\nat DFARS 252.227-7013. Contractor/manufacturer is GoAhead\ + \ Software,\nInc., 10900 N.E. 8th Street, Suite 750, Bellevue, Washington 98004.\n\nIf the\ + \ Commercial Computer Software Restricted rights clause at FAR\n52.227-19 or its successors\ + \ apply, the Software and Documentation\nconstitute restricted computer software as defined\ + \ in that clause and\nthe Government shall not have the license for published software set\n\ + forth in subparagraph (c)(3) of that clause.\n\nThe Original Code (i) was developed at private\ + \ expense, and no part of it\nwas developed with governmental funds; (ii) is a trade secret\ + \ of GoAhead\n(or its licensor(s)) for all purposes of the Freedom of Information Act;\n\ + (iii) is \"restricted computer software\" subject to limited utilization as\nprovided in\ + \ the contract between the vendor and the governmental entity;\nand (iv) in all respects\ + \ is proprietary data belonging solely to GoAhead\n(or its licensor(s)).\n\n10. Governing\ + \ Law and Interpretation. \n\nThis Agreement shall be interpreted under and governed by\ + \ the laws of the\nState of Washington, without regard to its rules governing the conflict\ + \ of\nlaws. If any provision of this Agreement is held illegal or unenforceable\nby a court\ + \ or tribunal of competent jurisdiction, the remaining provisions\nof this Agreement shall\ + \ remain in effect and the invalid provision deemed\nmodified to the least degree necessary\ + \ to remedy such invalidity.\n\n11. Entire Agreement. \n\nThis Agreement is the complete\ + \ agreement between GoAhead and You and\nsupersedes all prior agreements, oral or written,\ + \ with respect to the\nsubject matter hereof.\n\nIf You have any questions concerning this\ + \ Agreement, You may write to\nGoAhead Software, Inc., 10900 N.E. 8th Street, Suite 750,\ + \ Bellevue,\nWashington 98004 or send e-mail to info@goahead.com.\n\nBY CLICKING ON THE\ + \ \"Register\" BUTTON ON THE REGISTRATION FORM, YOU\nACCEPT AND AGREE TO BE BOUND BY ALL\ + \ OF THE TERMS AND CONDITIONS SET\nFORTH IN THIS AGREEMENT. IF YOU DO NOT WISH TO ACCEPT\ + \ THIS LICENSE OR\nYOU DO NOT QUALIFY FOR A LICENSE BASED ON THE TERMS SET FORTH ABOVE,\n\ + YOU MUST NOT CLICK THE \"Register\" BUTTON.\n\nExhibit A \n\nGoAhead Trademarks, Logos,\ + \ and Product Designation Information \n\n01/28/00" json: goahead.json - yml: goahead.yml + yaml: goahead.yml html: goahead.html - text: goahead.LICENSE + license: goahead.LICENSE - license_key: good-boy + category: Permissive spdx_license_key: LicenseRef-scancode-good-boy other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Please do whatever your mom would approve of: + + ##Permitted Use + + Download in any format + Change + Fork + + ##Prohibited Use + + No tattoos + No touching with unwashed hands + No exchanging for drugs. json: good-boy.json - yml: good-boy.yml + yaml: good-boy.yml html: good-boy.html - text: good-boy.LICENSE + license: good-boy.LICENSE - license_key: google-analytics-tos + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-analytics-tos other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + GOOGLE ANALYTICS TERMS OF SERVICE + + These Google Analytics Terms of Service (this "Agreement") are entered into by Google Inc. ("Google") and the entity executing this Agreement ("You"). This Agreement governs Your use of the standard Google Analytics (the "Service"). BY CLICKING THE "I ACCEPT" BUTTON, COMPLETING THE REGISTRATION PROCESS, OR USING THE SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE REVIEWED AND ACCEPT THIS AGREEMENT AND ARE AUTHORIZED TO ACT ON BEHALF OF, AND BIND TO THIS AGREEMENT, THE OWNER OF THIS ACCOUNT. In consideration of the foregoing, the parties agree as follows: + + 1. Definitions. + "Account" refers to the billing account for the Service. All Profiles linked to a single Property will have their Hits aggregated before determining the charge for the Service for that Property. + + "Confidential Information" includes any proprietary data and any other information disclosed by one party to the other in writing and marked "confidential" or disclosed orally and, within five business days, reduced to writing and marked "confidential". However, Confidential Information will not include any information that is or becomes known to the general public, which is already in the receiving party's possession prior to disclosure by a party or which is independently developed by the receiving party without the use of Confidential Information. + + "Customer Data" means the data concerning the characteristics and activities of Visitors that is collected through use of the GATC and then forwarded to the Servers and analyzed by the Processing Software. + + "Documentation" means any accompanying documentation made available to You by Google for use with the Processing Software, including any documentation available online. + + "GATC" means the Google Analytics Tracking Code, which is installed on a Property for the purpose of collecting Customer Data, together with any fixes, updates and upgrades provided to You. + + "Hit" means the base unit that the Google Analytics system processes. A Hit may be a call to the Google Analytics system by various libraries, including, Javascript (ga.js, urchin.js), Silverlight, Flash, and Mobile. A Hit may currently be a page view, a transaction, item, or event. Hits may also be delivered to the Google Analytics system without using one of the various libraries by other Google Analytics-supported protocols and mechanisms the Service makes available to You. + + "Processing Software" means the Google Analytics server-side software and any upgrades, which analyzes the Customer Data and generates the Reports. + + "Profile" means the collection of settings that together determine the information to be included in, or excluded from, a particular Report. For example, a Profile could be established to view a small portion of a web site as a unique Report. There can be multiple Profiles established under a single Property. + + "Property" means a group of web pages or apps that are linked to an Account and use the same GATC. Each Property includes a default Profile that measures all pages within the Property. + + "Privacy Policy" means the privacy policy on a Property. + + "Report" means the resulting analysis shown at http://www.google.com/analytics for a Profile. + + "Servers" means the servers controlled by Google (or its wholly owned subsidiaries) on which the Processing Software and Customer Data are stored. + + "Software" means the GATC and the Processing Software. + + "Third Party" means any third party (i) to which You provide access to Your Account or (i) for which You use the Service to collect information on the third party's behalf. + + "Visitors" means visitors to Your Properties. + + The words "include" and "including" mean "including but not limited to." + + 2. Fees and Service. + Subject to Section 15, the Service is provided without charge to You for up to 10 million Hits per month per account. Google may change its fees and payment policies for the Service from time to time including the addition of costs for geographic data, the importing of cost data from search engines, or other fees charged to Google or its wholly-owned subsidiaries by third party vendors for the inclusion of data in the Service reports. The changes to the fees or payment policies are effective upon Your acceptance of those changes which will be posted at http://www.google.com/analytics. Unless otherwise stated, all fees are quoted in U.S. Dollars. Any outstanding balance becomes immediately due and payable upon termination of this Agreement and any collection expenses (including attorneys' fees) incurred by Google will be included in the amount owed, and may be charged to the credit card or other billing mechanism associated with Your AdWords account. + + 3. Member Account, Password, and Security. + To register for the Service, You must complete the registration process by providing Google with current, complete and accurate information as prompted by the registration form, including Your e-mail address (username) and password. You will protect Your passwords and take full responsibility for Your own, and third party, use of Your accounts. You are solely responsible for any and all activities that occur under Your Account. You will notify Google immediately upon learning of any unauthorized use of Your Account or any other breach of security. Google's (or its wholly-owned subsidiaries') support staff may, from time to time, log in to the Service under Your customer password in order to maintain or improve service, including to provide You assistance with technical or billing issues. + + 4. Nonexclusive License. + Subject to the terms and conditions of this Agreement, (a) Google grants You a limited, revocable, non-exclusive, non-sublicensable license to install, copy and use the GATC solely as necessary for You to use the Service on Your Properties or Third Party's Properties; and (b) You may remotely access, view and download Your Reports stored at http://www.google.com/analytics. You will not (and You will not allow any third party to) (i) copy, modify, adapt, translate or otherwise create derivative works of the Software or the Documentation; (ii) reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of the Software, except as expressly permitted by the law in effect in the jurisdiction in which You are located; (iii) rent, lease, sell, assign or otherwise transfer rights in or to the Software, the Documentation or the Service; (iv) remove any proprietary notices or labels on the Software or placed by the Service; (v) use, post, transmit or introduce any device, software or routine which interferes or attempts to interfere with the operation of the Service or the Software; or (vi) use data labeled as belonging to a third party in the Service for purposes other than generating, viewing, and downloading Reports. You will comply with all applicable laws and regulations in Your use of and access to the Documentation, Software, Service and Reports. + + 5. Confidentiality. + Neither party will use or disclose the other party's Confidential Information without the other's prior written consent except for the purpose of performing its obligations under this Agreement or if required by law, regulation or court order; in which case, the party being compelled to disclose Confidential Information will give the other party as much notice as is reasonably practicable prior to disclosing the Confidential Information. Upon termination of this Agreement, the parties will promptly either return or destroy all Confidential Information and, upon request, provide written certification of such. + + 6. Information Rights and Publicity. + Google and its wholly owned subsidiaries may retain and use, subject to the terms of its privacy policy (located at http://www.google.com/privacy.html), information collected in Your use of the Service. Google will not share Your Customer Data or any Third Party's Customer Data with any third parties unless Google (i) has Your consent for any Customer Data or any Third Party's consent for the Third Party's Customer Data; (ii) concludes that it is required by law or has a good faith belief that access, preservation or disclosure of Customer Data is reasonably necessary to protect the rights, property or safety of Google, its users or the public; or (iii) provides Customer Data in certain limited circumstances to third parties to carry out tasks on Google's behalf (e.g., billing or data storage) with strict restrictions that prevent the data from being used or shared except as directed by Google. When this is done, it is subject to agreements that oblige those parties to process Customer Data only on Google's instructions and in compliance with this Agreement and appropriate confidentiality and security measures. + + 7. Privacy. + You will not (and will not allow any third party to) use the Service to track, collect or upload any data that personally identifies an individual (such as a name, email address or billing information), or other data which can be reasonably linked to such information by Google. You will have and abide by an appropriate Privacy Policy and will comply with all applicable laws and regulations relating to the collection of information from Visitors. You must post a Privacy Policy and that Privacy Policy must provide notice of Your use of cookies that are used to collect traffic data, and You must not circumvent any privacy features (e.g., an opt-out) that are part of the Service. + You may participate in an integrated version of Google Analytics and any DoubleClick product or service or any other Google display ads product or service ("Google Analytics for Display Advertisers"). If You use Google Analytics for Display Advertisers, You will comply with the Google Analytics for Display Advertisers Policy (available at http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409 ) and, as set forth in the policy, disclose in Your Privacy Policy (i) Your use of Google Analytics for Display Advertisers and its features You use, and (ii) how Visitors can opt-out from Google Analytics for Display Advertisers. Your access to and use of any DoubleClick or Google display ads data is subject to the applicable terms between You and Google. + + 8. Indemnification. + To the extent permitted by applicable law, You will indemnify, hold harmless and defend Google and its wholly owned subsidiaries, at Your expense, from any and all third-party claims, actions, proceedings, and suits brought against Google or any of its officers, directors, employees, agents or affiliates, and all related liabilities, damages, settlements, penalties, fines, costs or expenses (including, reasonable attorneys' fees and other litigation expenses) incurred by Google or any of its officers, directors, employees, agents or affiliates, arising out of or relating to (i) Your breach of any term or condition of this Agreement, (ii) Your use of the Service, (iii) Your violations of applicable laws, rules or regulations in connection with the Service, (iv) any representations and warranties made by You concerning any aspect of the Service, the Software or Reports to any Third Party; (v) any claims made by or on behalf of any Third Party pertaining directly or indirectly to Your use of the Service, the Software or Reports; (vi) violations of Your obligations of privacy to any Third Party; and (vii) any claims with respect to acts or omissions of any Third Party in connection with the Service, the Software or Reports. Google will provide You with written notice of any claim, suit or action from which You must indemnify Google. You will cooperate as fully as reasonably required in the defense of any claim. Google reserves the right, at its own expense, to assume the exclusive defense and control of any matter subject to indemnification by You. + + 9. Third Parties. + If You use the Service on behalf of the Third Party or a Third Party otherwise uses the Service through Your Account, whether or not You are authorized by Google to do so, then You represent and warrant that (a) You are authorized to act on behalf of, and bind to this Agreement, the Third Party to all obligations that You have under this Agreement, (b) Google may share with the Third Party any Customer Data that is specific to the Third Party's Properties, and (c) You will not disclose Third Party's Customer Data to any other party without the Third Party's consent. + + 10. DISCLAIMER OF WARRANTIES. + TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, EXCEPT AS EXPRESSLY PROVIDED FOR IN THIS AGREEMENT, GOOGLE MAKES NO OTHER WARRANTY OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING WITHOUT LIMITATION WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE AND NONINFRINGEMENT. + + 11. LIMITATION OF LIABILITY. + TO THE EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE WILL NOT BE LIABLE FOR YOUR LOST REVENUES OR INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE GOOGLE OR ITS SUBSIDIARIES AND AFFILIATES HAVE BEEN ADVISED OF, KNEW OR SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY A REMEDY. GOOGLE'S (AND ITS WHOLLY OWNED SUBSIDIARIES' TOTAL CUMULATIVE LIABILITY TO YOU OR ANY OTHER PARTY FOR ANY LOSS OR DAMAGES RESULTING FROM CLAIMS, DEMANDS, OR ACTIONS ARISING OUT OF OR RELATING TO THIS AGREEMENT WILL NOT EXCEED $500 (USD). + + 12. Proprietary Rights Notice. + The Service, which includes the Software and all Intellectual Property Rights therein are, and will remain, the property of Google (and its wholly owned subsidiaries). All rights in and to the Software not expressly granted to You in this Agreement are reserved and retained by Google and its licensors without restriction, including, Google's (and its wholly owned subsidiaries') right to sole ownership of the Software and Documentation. Without limiting the generality of the foregoing, You agree not to (and not to allow any third party to): (a) sublicense, distribute, or use the Service or Software outside of the scope of the license granted in this Agreement; (b) copy, modify, adapt, translate, prepare derivative works from, reverse engineer, disassemble, or decompile the Software or otherwise attempt to discover any source code or trade secrets related to the Service; (c) rent, lease, sell, assign or otherwise transfer rights in or to the Software or the Service; (d) use, post, transmit or introduce any device, software or routine which interferes or attempts to interfere with the operation of the Service or the Software; (e) use the trademarks, trade names, service marks, logos, domain names and other distinctive brand features or any copyright or other proprietary rights associated with the Service for any purpose without the express written consent of Google; (f) register, attempt to register, or assist anyone else to register any trademark, trade name, serve marks, logos, domain names and other distinctive brand features, copyright or other proprietary rights associated with Google (or its wholly owned subsidiaries) other than in the name of Google (or its wholly owned subsidiaries, as the case may be); or (g) remove, obscure, or alter any notice of copyright, trademark, or other proprietary right appearing in or on any item included with the Service. + + 13. U.S. Government Rights. + If the use of the Service is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), in accordance with 48 C.F.R. 227.7202-4 (for Department of Defense (DOD) acquisitions) and 48 C.F.R. 2.101 and 12.212 (for non-DOD acquisitions), the Government's rights in the Software, including its rights to use, modify, reproduce, release, perform, display or disclose the Software or Documentation, will be subject in all respects to the commercial license rights and restrictions provided in this Agreement. + + 14. Term and Termination. + Either party may terminate this Agreement at any time with notice. Upon any termination of this Agreement, Google will stop providing, and You will stop accessing the Service; and You will delete all copies of the GATC from all Properties and certify thereto in writing to Google within 3 business days of such termination. In the event of any termination (a) You will not be entitled to any refunds of any usage fees or any other fees, and (b) any (i) outstanding balance for Service rendered through the date of termination, and (ii) other unpaid payment obligations during the remainder of the Initial Term will be immediately due and payable in full and (c) all of Your historical Report data will no longer be available to You. + + 15. Modifications to Terms of Service and Other Policies. + Google may modify these terms or any additional terms that apply to the Service to, for example, reflect changes to the law or changes to the Service. You should look at the terms regularly. Google will post notice of modifications to these terms at http://www.google.com/analytics or policies referenced in these terms at the applicable URL for such policies. Changes will not apply retroactively and will become effective no sooner than 14 days after they are posted. If You do not agree to the modified terms for the Service, You should discontinue Your use Google Analytics. No amendment to or modification of this Agreement will be binding unless (i) in writing and signed by a duly authorized representative of Google, (ii) You accept updated terms online, or (iii) You continue to use the Service after Google has posted updates to the Agreement or to any policy governing the Service. + + 16. Miscellaneous, Applicable Law and Venue. + Google will be excused from performance in this Agreement to the extent that performance is prevented, delayed or obstructed by causes beyond its reasonable control. This Agreement (including any amendment agreed upon by the parties in writing) represents the complete agreement between You and Google concerning its subject matter, and supersedes all prior agreements and representations between the parties. If any provision of this Agreement is held to be unenforceable for any reason, such provision will be reformed to the extent necessary to make it enforceable to the maximum extent permissible so as to effect the intent of the parties, and the remainder of this Agreement will continue in full force and effect. This Agreement will be governed by and construed under the laws of the state of California without reference to its conflict of law principles. In the event of any conflicts between foreign law, rules, and regulations, and California law, rules, and regulations, California law, rules and regulations will prevail and govern. Each party agrees to submit to the exclusive and personal jurisdiction of the courts located in Santa Clara County, California. The United Nations Convention on Contracts for the International Sale of Goods and the Uniform Computer Information Transactions Act do not apply to this Agreement. The Software is controlled by U.S. Export Regulations, and it may be not be exported to or used by embargoed countries or individuals. Any notices to Google must be sent to: Google Inc., 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA, with a copy to Legal Department, via first class or air mail or overnight courier, and are deemed given upon receipt. A waiver of any default is not a waiver of any subsequent default. You may not assign or otherwise transfer any of Your rights in this Agreement without Google's prior written consent, and any such attempt is void. The relationship between Google and You is not one of a legal partnership relationship, but is one of independent contractors. This Agreement will be binding upon and inure to the benefit of the respective successors and assigns of the parties hereto. The following sections of this Agreement will survive any termination thereof: 1, 4, 5, 6 (except the last two sentences), 7, 8, 9, 10, 11, 12, 14, and 16. json: google-analytics-tos.json - yml: google-analytics-tos.yml + yaml: google-analytics-tos.yml html: google-analytics-tos.html - text: google-analytics-tos.LICENSE + license: google-analytics-tos.LICENSE - license_key: google-analytics-tos-2015 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-analytics-tos-2015 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Google Analytics Terms of Service + + These Google Analytics Terms of Service (this "Agreement") are entered into by + Google Inc. ("Google") and the entity executing this Agreement ("You"). This + Agreement governs Your use of the standard Google Analytics (the "Service"). BY + CLICKING THE "I ACCEPT" BUTTON, COMPLETING THE REGISTRATION PROCESS, OR USING + THE SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE REVIEWED AND ACCEPT THIS AGREEMENT + AND ARE AUTHORIZED TO ACT ON BEHALF OF, AND BIND TO THIS AGREEMENT, THE OWNER OF + THIS ACCOUNT. In consideration of the foregoing, the parties agree as follows: + + 1. Definitions. + + "Account" refers to the billing account for the Service. All Profiles linked to + a single Property will have their Hits aggregated before determining the charge + for the Service for that Property. + + "Confidential Information" includes any proprietary data and any other + information disclosed by one party to the other in writing and marked + "confidential" or disclosed orally and, within five business days, reduced to + writing and marked "confidential". However, Confidential Information will not + include any information that is or becomes known to the general public, which is + already in the receiving party's possession prior to disclosure by a party or + which is independently developed by the receiving party without the use of + Confidential Information. + + "Customer Data" or "Google Analytics Data" means the data you collect, process + or store using the Service concerning the characteristics and activities of + Visitors. + + "Documentation" means any accompanying documentation made available to You by + Google for use with the Processing Software, including any documentation + available online. + + "GATC" means the Google Analytics Tracking Code, which is installed on a + Property for the purpose of collecting Customer Data, together with any fixes, + updates and upgrades provided to You. + + "Hit" means the base unit that the Google Analytics system processes. A Hit may + be a call to the Google Analytics system by various libraries, including, + Javascript (e.g., analytics.js), Silverlight, Flash, and Mobile. A Hit may + currently be a page view, a transaction, item, or event, social interaction, or + user timing. Hits may also be delivered to the Google Analytics system without + using one of the various libraries by other Google Analytics-supported protocols + and mechanisms the Service makes available to You. + + "Processing Software" means the Google Analytics server-side software and any + upgrades, which analyzes the Customer Data and generates the Reports. + + "Profile" means the collection of settings that together determine the + information to be included in, or excluded from, a particular Report. For + example, a Profile could be established to view a small portion of a web site as + a unique Report. There can be multiple Profiles established under a single + Property. + + "Property" means any web page, app, or other property under Your control that + sends data to Google Analytics. Each Property includes a default Profile that + measures all pages within the Property. + + "Privacy Policy" means the privacy policy on a Property. + + "Report" means the resulting analysis shown at www.google.com/analytics for a + Profile. + + "Servers" means the servers controlled by Google (or its wholly owned + subsidiaries) on which the Processing Software and Customer Data are stored. + + "Software" means the GATC and the Processing Software. + + "Third Party" means any third party (i) to which You provide access to Your + Account or (i) for which You use the Service to collect information on the third + party's behalf. + + "Visitors" means visitors to Your Properties. + + The words "include" and "including" mean "including but not limited to." + + 2. Fees and Service. + + Subject to Section 15, the Service is provided without charge to You for up to + 10 million Hits per month per account. Google may change its fees and payment + policies for the Service from time to time including the addition of costs for + geographic data, the importing of cost data from search engines, or other fees + charged to Google or its wholly-owned subsidiaries by third party vendors for + the inclusion of data in the Service reports. The changes to the fees or payment + policies are effective upon Your acceptance of those changes which will be + posted at www.google.com/analytics. Unless otherwise stated, all fees are quoted + in U.S. Dollars. Any outstanding balance becomes immediately due and payable + upon termination of this Agreement and any collection expenses (including + attorneys' fees) incurred by Google will be included in the amount owed, and may + be charged to the credit card or other billing mechanism associated with Your + AdWords account. + + 3. Member Account, Password, and Security. + + To register for the Service, You must complete the registration process by + providing Google with current, complete and accurate information as prompted by + the registration form, including Your e-mail address (username) and password. + You will protect Your passwords and take full responsibility for Your own, and + third party, use of Your accounts. You are solely responsible for any and all + activities that occur under Your Account. You will notify Google immediately + upon learning of any unauthorized use of Your Account or any other breach of + security. Google's (or its wholly-owned subsidiaries') support staff may, from + time to time, log in to the Service under Your customer password in order to + maintain or improve service, including to provide You assistance with technical + or billing issues. + + 4. Nonexclusive License. + + Subject to the terms and conditions of this Agreement, (a) Google grants You a + limited, revocable, non-exclusive, non-sublicensable license to install, copy + and use the GATC solely as necessary for You to use the Service on Your + Properties or Third Party's Properties; and (b) You may remotely access, view + and download Your Reports stored at www.google.com/analytics. You will not (and + You will not allow any third party to) (i) copy, modify, adapt, translate or + otherwise create derivative works of the Software or the Documentation; (ii) + reverse engineer, decompile, disassemble or otherwise attempt to discover the + source code of the Software, except as expressly permitted by the law in effect + in the jurisdiction in which You are located; (iii) rent, lease, sell, assign or + otherwise transfer rights in or to the Software, the Documentation or the + Service; (iv) remove any proprietary notices or labels on the Software or placed + by the Service; (v) use, post, transmit or introduce any device, software or + routine which interferes or attempts to interfere with the operation of the + Service or the Software; or (vi) use data labeled as belonging to a third party + in the Service for purposes other than generating, viewing, and downloading + Reports. You will comply with all applicable laws and regulations in Your use of + and access to the Documentation, Software, Service and Reports. + + 5. Confidentiality. + + Neither party will use or disclose the other party's Confidential Information + without the other's prior written consent except for the purpose of performing + its obligations under this Agreement or if required by law, regulation or court + order; in which case, the party being compelled to disclose Confidential + Information will give the other party as much notice as is reasonably + practicable prior to disclosing the Confidential Information. + + 6. Information Rights and Publicity. + + Google and its wholly owned subsidiaries may retain and use, subject to the + terms of its privacy policy (located at www.google.com/privacy.html), + information collected in Your use of the Service. Google will not share Your + Customer Data or any Third Party's Customer Data with any third parties unless + Google (i) has Your consent for any Customer Data or any Third Party's consent + for the Third Party's Customer Data; (ii) concludes that it is required by law + or has a good faith belief that access, preservation or disclosure of Customer + Data is reasonably necessary to protect the rights, property or safety of + Google, its users or the public; or (iii) provides Customer Data in certain + limited circumstances to third parties to carry out tasks on Google's behalf + (e.g., billing or data storage) with strict restrictions that prevent the data + from being used or shared except as directed by Google. When this is done, it is + subject to agreements that oblige those parties to process Customer Data only on + Google's instructions and in compliance with this Agreement and appropriate + confidentiality and security measures. + + 7. Privacy. + + You will not (and will not allow any third party to) use the Service to track, + collect or upload any data that personally identifies an individual (such as a + name, email address or billing information), or other data which can be + reasonably linked to such information by Google. You will have and abide by an + appropriate Privacy Policy and will comply with all applicable laws, policies, + and regulations relating to the collection of information from Visitors. You + must post a Privacy Policy and that Privacy Policy must provide notice of Your + use of cookies that are used to collect data. You must disclose the use of + Google Analytics, and how it collects and processes data. This can be done by + displaying a prominent link to the site "How Google uses data when you use our + partners' sites or apps", (located at www.google.com/policies/privacy/partners/, + or any other URL Google may provide from time to time). You will use + commercially reasonable efforts to ensure that a Visitor is provided with clear + and comprehensive information about, and consents to, the storing and accessing + of cookies or other information on the Visitor’s device where such activity + occurs in connection with the Service and where providing such information and + obtaining such consent is required by law. + + You must not circumvent any privacy features (e.g., an opt-out) that are part of + the Service. + + You may participate in an integrated version of Google Analytics and certain + DoubleClick and Google advertising services ("Google Analytics Advertising + Features"). If You use Google Analytics Advertising Features, You will adhere to + the Google Analytics Advertising Features policy (available at + support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409) + Your access to and use of any DoubleClick or Google advertising service is + subject to the applicable terms between You and Google regarding that service. + + 8. Indemnification. + + To the extent permitted by applicable law, You will indemnify, hold harmless and + defend Google and its wholly owned subsidiaries, at Your expense, from any and + all third-party claims, actions, proceedings, and suits brought against Google + or any of its officers, directors, employees, agents or affiliates, and all + related liabilities, damages, settlements, penalties, fines, costs or expenses + (including, reasonable attorneys' fees and other litigation expenses) incurred + by Google or any of its officers, directors, employees, agents or affiliates, + arising out of or relating to (i) Your breach of any term or condition of this + Agreement, (ii) Your use of the Service, (iii) Your violations of applicable + laws, rules or regulations in connection with the Service, (iv) any + representations and warranties made by You concerning any aspect of the Service, + the Software or Reports to any Third Party; (v) any claims made by or on behalf + of any Third Party pertaining directly or indirectly to Your use of the Service, + the Software or Reports; (vi) violations of Your obligations of privacy to any + Third Party; and (vii) any claims with respect to acts or omissions of any Third + Party in connection with the Service, the Software or Reports. Google will + provide You with written notice of any claim, suit or action from which You must + indemnify Google. You will cooperate as fully as reasonably required in the + defense of any claim. Google reserves the right, at its own expense, to assume + the exclusive defense and control of any matter subject to indemnification by + You. + + 9. Third Parties. + + If You use the Service on behalf of the Third Party or a Third Party otherwise + uses the Service through Your Account, whether or not You are authorized by + Google to do so, then You represent and warrant that (a) You are authorized to + act on behalf of, and bind to this Agreement, the Third Party to all obligations + that You have under this Agreement, (b) Google may share with the Third Party + any Customer Data that is specific to the Third Party's Properties, and (c) You + will not disclose Third Party's Customer Data to any other party without the + Third Party's consent. + + 10. DISCLAIMER OF WARRANTIES. + + TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, EXCEPT AS EXPRESSLY PROVIDED + FOR IN THIS AGREEMENT, GOOGLE MAKES NO OTHER WARRANTY OF ANY KIND, WHETHER + EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING WITHOUT LIMITATION + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE AND NONINFRINGEMENT. + + 11. LIMITATION OF LIABILITY. + + TO THE EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE WILL NOT BE LIABLE FOR YOUR + LOST REVENUES OR INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR + PUNITIVE DAMAGES, EVEN IF GOOGLE OR ITS SUBSIDIARIES AND AFFILIATES HAVE BEEN + ADVISED OF, KNEW OR SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN + IF DIRECT DAMAGES DO NOT SATISFY A REMEDY. GOOGLE'S (AND ITS WHOLLY OWNED + SUBSIDIARIES' TOTAL CUMULATIVE LIABILITY TO YOU OR ANY OTHER PARTY FOR ANY LOSS + OR DAMAGES RESULTING FROM CLAIMS, DEMANDS, OR ACTIONS ARISING OUT OF OR RELATING + TO THIS AGREEMENT WILL NOT EXCEED $500 (USD). + + 12. Proprietary Rights Notice. + + The Service, which includes the Software and all Intellectual Property Rights + therein are, and will remain, the property of Google (and its wholly owned + subsidiaries). All rights in and to the Software not expressly granted to You in + this Agreement are reserved and retained by Google and its licensors without + restriction, including, Google's (and its wholly owned subsidiaries') right to + sole ownership of the Software and Documentation. Without limiting the + generality of the foregoing, You agree not to (and not to allow any third party + to): (a) sublicense, distribute, or use the Service or Software outside of the + scope of the license granted in this Agreement; (b) copy, modify, adapt, + translate, prepare derivative works from, reverse engineer, disassemble, or + decompile the Software or otherwise attempt to discover any source code or trade + secrets related to the Service; (c) rent, lease, sell, assign or otherwise + transfer rights in or to the Software or the Service; (d) use, post, transmit or + introduce any device, software or routine which interferes or attempts to + interfere with the operation of the Service or the Software; (e) use the + trademarks, trade names, service marks, logos, domain names and other + distinctive brand features or any copyright or other proprietary rights + associated with the Service for any purpose without the express written consent + of Google; (f) register, attempt to register, or assist anyone else to register + any trademark, trade name, serve marks, logos, domain names and other + distinctive brand features, copyright or other proprietary rights associated + with Google (or its wholly owned subsidiaries) other than in the name of Google + (or its wholly owned subsidiaries, as the case may be); (g) remove, obscure, or + alter any notice of copyright, trademark, or other proprietary right appearing + in or on any item included with the Service; or (h) seek, in a proceeding filed + during the term of this Agreement or for one year after such term, an injunction + of any portion of the Service based on patent infringement. + + 13. U.S. Government Rights. + + If the use of the Service is being acquired by or on behalf of the U.S. + Government or by a U.S. Government prime contractor or subcontractor (at any + tier), in accordance with 48 C.F.R. 227.7202-4 (for Department of Defense (DOD) + acquisitions) and 48 C.F.R. 2.101 and 12.212 (for non-DOD acquisitions), the + Government's rights in the Software, including its rights to use, modify, + reproduce, release, perform, display or disclose the Software or Documentation, + will be subject in all respects to the commercial license rights and + restrictions provided in this Agreement. + + 14. Term and Termination. + + Either party may terminate this Agreement at any time with notice. Upon any + termination of this Agreement, Google will stop providing, and You will stop + accessing the Service; and You will delete all copies of the GATC from all + Properties and certify thereto in writing to Google within 3 business days of + such termination. In the event of any termination (a) You will not be entitled + to any refunds of any usage fees or any other fees, and (b) any outstanding + balance for Service rendered through the date of termination will be immediately + due and payable in full and (c) all of Your historical Report data will no + longer be available to You. + + 15. Modifications to Terms of Service and Other Policies. + + Google may modify these terms or any additional terms that apply to the Service + to, for example, reflect changes to the law or changes to the Service. You + should look at the terms regularly. Google will post notice of modifications to + these terms at www.google.com/analytics, the Google Analytics Policies at + www.google.com/analytics/policies, or other policies referenced in these terms + at the applicable URL for such policies. Changes will not apply retroactively + and will become effective no sooner than 14 days after they are posted. If You + do not agree to the modified terms for the Service, You should discontinue Your + use Google Analytics. No amendment to or modification of this Agreement will be + binding unless (i) in writing and signed by a duly authorized representative of + Google, (ii) You accept updated terms online, or (iii) You continue to use the + Service after Google has posted updates to the Agreement or to any policy + governing the Service. + + 16. Miscellaneous, Applicable Law and Venue. + + Google will be excused from performance in this Agreement to the extent that + performance is prevented, delayed or obstructed by causes beyond its reasonable + control. This Agreement (including any amendment agreed upon by the parties in + writing) represents the complete agreement between You and Google concerning its + subject matter, and supersedes all prior agreements and representations between + the parties. If any provision of this Agreement is held to be unenforceable for + any reason, such provision will be reformed to the extent necessary to make it + enforceable to the maximum extent permissible so as to effect the intent of the + parties, and the remainder of this Agreement will continue in full force and + effect. This Agreement will be governed by and construed under the laws of the + state of California without reference to its conflict of law principles. In the + event of any conflicts between foreign law, rules, and regulations, and + California law, rules, and regulations, California law, rules and regulations + will prevail and govern. Each party agrees to submit to the exclusive and + personal jurisdiction of the courts located in Santa Clara County, California. + The United Nations Convention on Contracts for the International Sale of Goods + and the Uniform Computer Information Transactions Act do not apply to this + Agreement. The Software is controlled by U.S. Export Regulations, and it may be + not be exported to or used by embargoed countries or individuals. Any notices to + Google must be sent to: Google Inc., 1600 Amphitheatre Parkway, Mountain View, + CA 94043, USA, with a copy to Legal Department, via first class or air mail or + overnight courier, and are deemed given upon receipt. A waiver of any default is + not a waiver of any subsequent default. You may not assign or otherwise transfer + any of Your rights in this Agreement without Google's prior written consent, and + any such attempt is void. The relationship between Google and You is not one of + a legal partnership relationship, but is one of independent contractors. This + Agreement will be binding upon and inure to the benefit of the respective + successors and assigns of the parties hereto. The following sections of this + Agreement will survive any termination thereof: 1, 4, 5, 6 (except the last two + sentences), 7, 8, 9, 10, 11, 12, 14, and 16. + + Last Updated: 7/30/2015 json: google-analytics-tos-2015.json - yml: google-analytics-tos-2015.yml + yaml: google-analytics-tos-2015.yml html: google-analytics-tos-2015.html - text: google-analytics-tos-2015.LICENSE + license: google-analytics-tos-2015.LICENSE - license_key: google-analytics-tos-2016 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-analytics-tos-2016 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Google Analytics Terms of Service + + These Google Analytics Terms of Service (this "Agreement") are entered into by Google Inc. ("Google") and the entity executing this Agreement ("You"). This Agreement governs Your use of the standard Google Analytics (the "Service"). BY CLICKING THE "I ACCEPT" BUTTON, COMPLETING THE REGISTRATION PROCESS, OR USING THE SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE REVIEWED AND ACCEPT THIS AGREEMENT AND ARE AUTHORIZED TO ACT ON BEHALF OF, AND BIND TO THIS AGREEMENT, THE OWNER OF THIS ACCOUNT. In consideration of the foregoing, the parties agree as follows: + + 1. Definitions. + "Account" refers to the billing account for the Service. All Profiles linked to a single Property will have their Hits aggregated before determining the charge for the Service for that Property. + + "Confidential Information" includes any proprietary data and any other information disclosed by one party to the other in writing and marked "confidential" or disclosed orally and, within five business days, reduced to writing and marked "confidential". However, Confidential Information will not include any information that is or becomes known to the general public, which is already in the receiving party's possession prior to disclosure by a party or which is independently developed by the receiving party without the use of Confidential Information. + + "Customer Data" or “Google Analytics Data" means the data you collect, process or store using the Service concerning the characteristics and activities of Visitors. + + "Documentation" means any accompanying documentation made available to You by Google for use with the Processing Software, including any documentation available online. + + "GATC" means the Google Analytics Tracking Code, which is installed on a Property for the purpose of collecting Customer Data, together with any fixes, updates and upgrades provided to You. + + "Hit" means the base unit that the Google Analytics system processes. A Hit may be a call to the Google Analytics system by various libraries, including, Javascript (e.g., analytics.js), Silverlight, Flash, and Mobile. A Hit may currently be a page view, a transaction, item, or event, social interaction, or user timing. Hits may also be delivered to the Google Analytics system without using one of the various libraries by other Google Analytics-supported protocols and mechanisms the Service makes available to You. + + "Processing Software" means the Google Analytics server-side software and any upgrades, which analyzes the Customer Data and generates the Reports. + + "Profile" means the collection of settings that together determine the information to be included in, or excluded from, a particular Report. For example, a Profile could be established to view a small portion of a web site as a unique Report. There can be multiple Profiles established under a single Property. + + "Property" means any web page, app, or other property under Your control that sends data to Google Analytics. Each Property includes a default Profile that measures all pages within the Property. + + "Privacy Policy" means the privacy policy on a Property. + + "Report" means the resulting analysis shown at www.google.com/analytics/ for a Profile. + + "Servers" means the servers controlled by Google (or its wholly owned subsidiaries) on which the Processing Software and Customer Data are stored. + + "Software" means the GATC and the Processing Software. + + "Third Party" means any third party (i) to which You provide access to Your Account or (ii) for which You use the Service to collect information on the third party's behalf. + + "Visitors" means visitors to Your Properties. + + The words "include" and "including" mean "including but not limited to." + + 2. Fees and Service. + Subject to Section 15, the Service is provided without charge to You for up to 10 million Hits per month per account. Google may change its fees and payment policies for the Service from time to time including the addition of costs for geographic data, the importing of cost data from search engines, or other fees charged to Google or its wholly-owned subsidiaries by third party vendors for the inclusion of data in the Service reports. The changes to the fees or payment policies are effective upon Your acceptance of those changes which will be posted at www.google.com/analytics/. Unless otherwise stated, all fees are quoted in U.S. Dollars. Any outstanding balance becomes immediately due and payable upon termination of this Agreement and any collection expenses (including attorneys' fees) incurred by Google will be included in the amount owed, and may be charged to the credit card or other billing mechanism associated with Your AdWords account. + + 3. Member Account, Password, and Security. + To register for the Service, You must complete the registration process by providing Google with current, complete and accurate information as prompted by the registration form, including Your e-mail address (username) and password. You will protect Your passwords and take full responsibility for Your own, and third party, use of Your accounts. You are solely responsible for any and all activities that occur under Your Account. You will notify Google immediately upon learning of any unauthorized use of Your Account or any other breach of security. Google's (or its wholly-owned subsidiaries') support staff may, from time to time, log in to the Service under Your customer password in order to maintain or improve service, including to provide You assistance with technical or billing issues. + + 4. Nonexclusive License. + Subject to the terms and conditions of this Agreement, (a) Google grants You a limited, revocable, non-exclusive, non-sublicensable license to install, copy and use the GATC solely as necessary for You to use the Service on Your Properties or Third Party's Properties; and (b) You may remotely access, view and download Your Reports stored at www.google.com/analytics/. You will not (and You will not allow any third party to) (i) copy, modify, adapt, translate or otherwise create derivative works of the Software or the Documentation; (ii) reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of the Software, except as expressly permitted by the law in effect in the jurisdiction in which You are located; (iii) rent, lease, sell, assign or otherwise transfer rights in or to the Software, the Documentation or the Service; (iv) remove any proprietary notices or labels on the Software or placed by the Service; (v) use, post, transmit or introduce any device, software or routine which interferes or attempts to interfere with the operation of the Service or the Software; or (vi) use data labeled as belonging to a third party in the Service for purposes other than generating, viewing, and downloading Reports. You will comply with all applicable laws and regulations in Your use of and access to the Documentation, Software, Service and Reports. + + 5. Confidentiality. + Neither party will use or disclose the other party's Confidential Information without the other's prior written consent except for the purpose of performing its obligations under this Agreement or if required by law, regulation or court order; in which case, the party being compelled to disclose Confidential Information will give the other party as much notice as is reasonably practicable prior to disclosing the Confidential Information. + + 6. Information Rights and Publicity. + Google and its wholly owned subsidiaries may retain and use, subject to the terms of its privacy policy (located at https://www.google.com/policies/privacy/), information collected in Your use of the Service. Google will not share Your Customer Data or any Third Party's Customer Data with any third parties unless Google (i) has Your consent for any Customer Data or any Third Party's consent for the Third Party's Customer Data; (ii) concludes that it is required by law or has a good faith belief that access, preservation or disclosure of Customer Data is reasonably necessary to protect the rights, property or safety of Google, its users or the public; or (iii) provides Customer Data in certain limited circumstances to third parties to carry out tasks on Google's behalf (e.g., billing or data storage) with strict restrictions that prevent the data from being used or shared except as directed by Google. When this is done, it is subject to agreements that oblige those parties to process Customer Data only on Google's instructions and in compliance with this Agreement and appropriate confidentiality and security measures. + + 7. Privacy. + You will not and will not assist or permit any third party to, pass information to Google that Google could use or recognize as personally identifiable information. You will have and abide by an appropriate Privacy Policy and will comply with all applicable laws, policies, and regulations relating to the collection of information from Visitors. You must post a Privacy Policy and that Privacy Policy must provide notice of Your use of cookies that are used to collect data. You must disclose the use of Google Analytics, and how it collects and processes data. This can be done by displaying a prominent link to the site “How Google uses data when you use our partners' sites or apps”, (located at www.google.com/policies/privacy/partners/, or any other URL Google may provide from time to time). You will use commercially reasonable efforts to ensure that a Visitor is provided with clear and comprehensive information about, and consents to, the storing and accessing of cookies or other information on the Visitor’s device where such activity occurs in connection with the Service and where providing such information and obtaining such consent is required by law. + + You must not circumvent any privacy features (e.g., an opt-out) that are part of the Service. + + You may participate in an integrated version of Google Analytics and certain DoubleClick and Google advertising services ("Google Analytics Advertising Features"). If You use Google Analytics Advertising Features, You will adhere to the Google Analytics Advertising Features policy (available at support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409) Your access to and use of any DoubleClick or Google advertising service is subject to the applicable terms between You and Google regarding that service. + + If You use the GA 360 Suite Home, Your use of the GA 360 Suite Home is governed by the Google Analytics 360 Suite Home Terms of Services (or as subsequently re-named) available at https://360suite.google.com/terms (or such other URL as Google may provide) as modified from time to time (the “Suite Home Terms”), but subject to Section 2 of the Suite Home Terms, use of the Service will continue to be governed by this Agreement. + + 8. Indemnification. + To the extent permitted by applicable law, You will indemnify, hold harmless and defend Google and its wholly owned subsidiaries, at Your expense, from any and all third-party claims, actions, proceedings, and suits brought against Google or any of its officers, directors, employees, agents or affiliates, and all related liabilities, damages, settlements, penalties, fines, costs or expenses (including, reasonable attorneys' fees and other litigation expenses) incurred by Google or any of its officers, directors, employees, agents or affiliates, arising out of or relating to (i) Your breach of any term or condition of this Agreement, (ii) Your use of the Service, (iii) Your violations of applicable laws, rules or regulations in connection with the Service, (iv) any representations and warranties made by You concerning any aspect of the Service, the Software or Reports to any Third Party; (v) any claims made by or on behalf of any Third Party pertaining directly or indirectly to Your use of the Service, the Software or Reports; (vi) violations of Your obligations of privacy to any Third Party; and (vii) any claims with respect to acts or omissions of any Third Party in connection with the Service, the Software or Reports. Google will provide You with written notice of any claim, suit or action from which You must indemnify Google. You will cooperate as fully as reasonably required in the defense of any claim. Google reserves the right, at its own expense, to assume the exclusive defense and control of any matter subject to indemnification by You. + + 9. Third Parties. + If You use the Service on behalf of the Third Party or a Third Party otherwise uses the Service through Your Account, whether or not You are authorized by Google to do so, then You represent and warrant that (a) You are authorized to act on behalf of, and bind to this Agreement, the Third Party to all obligations that You have under this Agreement, (b) Google may share with the Third Party any Customer Data that is specific to the Third Party's Properties, and (c) You will not disclose Third Party's Customer Data to any other party without the Third Party's consent. + + 10. DISCLAIMER OF WARRANTIES. + TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, EXCEPT AS EXPRESSLY PROVIDED FOR IN THIS AGREEMENT, GOOGLE MAKES NO OTHER WARRANTY OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING WITHOUT LIMITATION WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE AND NONINFRINGEMENT. + + 11. LIMITATION OF LIABILITY. + TO THE EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE WILL NOT BE LIABLE FOR YOUR LOST REVENUES OR INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF GOOGLE OR ITS SUBSIDIARIES AND AFFILIATES HAVE BEEN ADVISED OF, KNEW OR SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY A REMEDY. GOOGLE'S (AND ITS WHOLLY OWNED SUBSIDIARIES' TOTAL CUMULATIVE LIABILITY TO YOU OR ANY OTHER PARTY FOR ANY LOSS OR DAMAGES RESULTING FROM CLAIMS, DEMANDS, OR ACTIONS ARISING OUT OF OR RELATING TO THIS AGREEMENT WILL NOT EXCEED $500 (USD). + + 12. Proprietary Rights Notice. + The Service, which includes the Software and all Intellectual Property Rights therein are, and will remain, the property of Google (and its wholly owned subsidiaries). All rights in and to the Software not expressly granted to You in this Agreement are reserved and retained by Google and its licensors without restriction, including, Google's (and its wholly owned subsidiaries') right to sole ownership of the Software and Documentation. Without limiting the generality of the foregoing, You agree not to (and not to allow any third party to): (a) sublicense, distribute, or use the Service or Software outside of the scope of the license granted in this Agreement; (b) copy, modify, adapt, translate, prepare derivative works from, reverse engineer, disassemble, or decompile the Software or otherwise attempt to discover any source code or trade secrets related to the Service; (c) rent, lease, sell, assign or otherwise transfer rights in or to the Software or the Service; (d) use, post, transmit or introduce any device, software or routine which interferes or attempts to interfere with the operation of the Service or the Software; (e) use the trademarks, trade names, service marks, logos, domain names and other distinctive brand features or any copyright or other proprietary rights associated with the Service for any purpose without the express written consent of Google; (f) register, attempt to register, or assist anyone else to register any trademark, trade name, serve marks, logos, domain names and other distinctive brand features, copyright or other proprietary rights associated with Google (or its wholly owned subsidiaries) other than in the name of Google (or its wholly owned subsidiaries, as the case may be); (g) remove, obscure, or alter any notice of copyright, trademark, or other proprietary right appearing in or on any item included with the Service; or (h) seek, in a proceeding filed during the term of this Agreement or for one year after such term, an injunction of any portion of the Service based on patent infringement. + + 13. U.S. Government Rights. + If the use of the Service is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), in accordance with 48 C.F.R. 227.7202-4 (for Department of Defense (DOD) acquisitions) and 48 C.F.R. 2.101 and 12.212 (for non-DOD acquisitions), the Government's rights in the Software, including its rights to use, modify, reproduce, release, perform, display or disclose the Software or Documentation, will be subject in all respects to the commercial license rights and restrictions provided in this Agreement. + + 14. Term and Termination. + Either party may terminate this Agreement at any time with notice. Upon any termination of this Agreement, Google will stop providing, and You will stop accessing the Service; and You will delete all copies of the GATC from all Properties and certify thereto in writing to Google within 3 business days of such termination. In the event of any termination (a) You will not be entitled to any refunds of any usage fees or any other fees, and (b) any outstanding balance for Service rendered through the date of termination will be immediately due and payable in full and (c) all of Your historical Report data will no longer be available to You. + + 15. Modifications to Terms of Service and Other Policies. + Google may modify these terms or any additional terms that apply to the Service to, for example, reflect changes to the law or changes to the Service. You should look at the terms regularly. Google will post notice of modifications to these terms at www.google.com/analytics/, the Google Analytics Policies at www.google.com/analytics/policies/, or other policies referenced in these terms at the applicable URL for such policies. Changes will not apply retroactively and will become effective no sooner than 14 days after they are posted. If You do not agree to the modified terms for the Service, You should discontinue Your use Google Analytics. No amendment to or modification of this Agreement will be binding unless (i) in writing and signed by a duly authorized representative of Google, (ii) You accept updated terms online, or (iii) You continue to use the Service after Google has posted updates to the Agreement or to any policy governing the Service. + + 16. Miscellaneous, Applicable Law and Venue. + Google will be excused from performance in this Agreement to the extent that performance is prevented, delayed or obstructed by causes beyond its reasonable control. This Agreement (including any amendment agreed upon by the parties in writing) represents the complete agreement between You and Google concerning its subject matter, and supersedes all prior agreements and representations between the parties. If any provision of this Agreement is held to be unenforceable for any reason, such provision will be reformed to the extent necessary to make it enforceable to the maximum extent permissible so as to effect the intent of the parties, and the remainder of this Agreement will continue in full force and effect. This Agreement will be governed by and construed under the laws of the state of California without reference to its conflict of law principles. In the event of any conflicts between foreign law, rules, and regulations, and California law, rules, and regulations, California law, rules and regulations will prevail and govern. Each party agrees to submit to the exclusive and personal jurisdiction of the courts located in Santa Clara County, California. The United Nations Convention on Contracts for the International Sale of Goods and the Uniform Computer Information Transactions Act do not apply to this Agreement. The Software is controlled by U.S. Export Regulations, and it may be not be exported to or used by embargoed countries or individuals. Any notices to Google must be sent to: Google Inc., 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA, with a copy to Legal Department, via first class or air mail or overnight courier, and are deemed given upon receipt. A waiver of any default is not a waiver of any subsequent default. You may not assign or otherwise transfer any of Your rights in this Agreement without Google's prior written consent, and any such attempt is void. The relationship between Google and You is not one of a legal partnership relationship, but is one of independent contractors. This Agreement will be binding upon and inure to the benefit of the respective successors and assigns of the parties hereto. The following sections of this Agreement will survive any termination thereof: 1, 4, 5, 6 (except the last two sentences), 7, 8, 9, 10, 11, 12, 14, and 16. + + Last Updated 5/24/2016 json: google-analytics-tos-2016.json - yml: google-analytics-tos-2016.yml + yaml: google-analytics-tos-2016.yml html: google-analytics-tos-2016.html - text: google-analytics-tos-2016.LICENSE + license: google-analytics-tos-2016.LICENSE - license_key: google-analytics-tos-2019 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-analytics-tos-2019 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Google Analytics Terms of Service + + These Google Analytics Terms of Service (this "Agreement") are entered into by Google LLC ("Google") and the entity executing this Agreement ("You"). This Agreement governs Your use of the standard Google Analytics (the "Service"). BY CLICKING THE "I ACCEPT" BUTTON, COMPLETING THE REGISTRATION PROCESS, OR USING THE SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE REVIEWED AND ACCEPT THIS AGREEMENT AND ARE AUTHORIZED TO ACT ON BEHALF OF, AND BIND TO THIS AGREEMENT, THE OWNER OF THIS ACCOUNT. In consideration of the foregoing, the parties agree as follows: + + 1. Definitions. + + "Account" refers to the account for the Service. All Profiles (as applicable) linked to a single Property will have their Hits aggregated before determining the charge for the Service for that Property. + + "Confidential Information" includes any proprietary data and any other information disclosed by one party to the other in writing and marked "confidential" or disclosed orally and, within five business days, reduced to writing and marked "confidential". However, Confidential Information will not include any information that is or becomes known to the general public, which is already in the receiving party's possession prior to disclosure by a party or which is independently developed by the receiving party without the use of Confidential Information. + + "Customer Data" or "Google Analytics Data" means the data you collect, process or store using the Service concerning the characteristics and activities of Users. + + "Documentation" means any accompanying documentation made available to You by Google for use with the Processing Software, including any documentation available online. + + "GAMC" means the Google Analytics Measurement Code, which is installed on a Property for the purpose of collecting Customer Data, together with any fixes, updates and upgrades provided to You. + + "Hit" means a collection of interactions that results in data being sent to the Service and processed. Examples of Hits may include page view hits and ecommerce hits. A Hit can be a call to the Service by various libraries, but does not have to be so (e.g., a Hit can be delivered to the Service by other Google Analytics-supported protocols and mechanisms made available by the Service to You). + + "Platform Home" means the user interface through which You can access certain Google Marketing Platform-level functionality. + + "Processing Software" means the Google Analytics server-side software and any upgrades, which analyzes the Customer Data and generates the Reports. + + "Profile" means the collection of settings that together determine the information to be included in, or excluded from, a particular Report. For example, a Profile could be established to view a small portion of a web site as a unique Report. + + "Property" means any web page, application, other property or resource under Your control that sends data to Google Analytics. + + "Privacy Policy" means the privacy policy on a Property. + + "Report" means the resulting analysis shown at www.google.com/analytics/, some of which may include analysis for a Profile. + + "Servers" means the servers controlled by Google (or its wholly-owned subsidiaries) on which the Processing Software and Customer Data are stored. + + “SDKs” mean certain software development kits, which may be used or incorporated into a Property app for the purpose of collecting Customer Data, together with any fixes, updates, and upgrades provided to You. + + "Software" means the Processing Software, GAMC and/or SDKs. + + "Third Party" means any third party (i) to which You provide access to Your Account or (ii) for which You use the Service to collect information on the third party's behalf. + + "Users" means users and/or visitors to Your Properties. + + The words "include" and "including" mean "including but not limited to." + + 2. Fees and Service. + + Subject to Section 15, the Service is provided without charge to You for up to 10 million Hits per month per Account. Google may change its fees and payment policies for the Service from time to time including the addition of costs for geographic data, the importing of cost data from search engines, or other fees charged to Google or its wholly-owned subsidiaries by third party vendors for the inclusion of data in the Service reports. The changes to the fees or payment policies are effective upon Your acceptance of those changes which will be posted at www.google.com/analytics/. Unless otherwise stated, all fees are quoted in U.S. Dollars. Any outstanding balance becomes immediately due and payable upon termination of this Agreement and any collection expenses (including attorneys' fees) incurred by Google will be included in the amount owed, and may be charged to the credit card or other billing mechanism associated with Your AdWords account. + + 3. Member Account, Password, and Security. + + To register for the Service, You must complete the registration process by providing Google with current, complete and accurate information as prompted by the registration form, including Your e-mail address (username) and password. You will protect Your passwords and take full responsibility for Your own, and third party, use of Your accounts. You are solely responsible for any and all activities that occur under Your Account. You will notify Google immediately upon learning of any unauthorized use of Your Account or any other breach of security. Google's (or its wholly-owned subsidiaries) support staff may, from time to time, log in to the Service under Your customer password in order to maintain or improve service, including to provide You assistance with technical or billing issues. + + 4. Nonexclusive License. + + Subject to the terms and conditions of this Agreement, (a) Google grants You a limited, revocable, non-exclusive, non-sublicensable license to install, copy and use the GAMC and/or SDKs solely as necessary for You to use the Service on Your Properties or Third Party's Properties; and (b) You may remotely access, view and download Your Reports stored at www.google.com/analytics/. You will not (and You will not allow any third party to) (i) copy, modify, adapt, translate or otherwise create derivative works of the Software or the Documentation; (ii) reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of the Software, except as expressly permitted by the law in effect in the jurisdiction in which You are located; (iii) rent, lease, sell, assign or otherwise transfer rights in or to the Software, the Documentation or the Service; (iv) remove any proprietary notices or labels on the Software or placed by the Service; (v) use, post, transmit or introduce any device, software or routine which interferes or attempts to interfere with the operation of the Service or the Software; or (vi) use data labeled as belonging to a third party in the Service for purposes other than generating, viewing, and downloading Reports. You will comply with all applicable laws and regulations in Your use of and access to the Documentation, Software, Service and Reports. + + 5. Confidentiality and Beta Features. + + Neither party will use or disclose the other party's Confidential Information without the other's prior written consent except for the purpose of performing its obligations under this Agreement or if required by law, regulation or court order; in which case, the party being compelled to disclose Confidential Information will give the other party as much notice as is reasonably practicable prior to disclosing the Confidential Information. Certain Service features are identified as "Alpha," "Beta," "Experiment," (either within the Service or elsewhere by Google) or as otherwise unsupported or confidential (collectively, "Beta Features"). You may not disclose any information from Beta Features or the terms or existence of any non-public Beta Features. Google will have no liability arising out of or related to any Beta Features. + + 6. Information Rights and Publicity. + + Google and its wholly owned subsidiaries may retain and use, subject to the terms of its privacy policy (located at https://www.google.com/policies/privacy/), information collected in Your use of the Service. Google will not share Your Customer Data or any Third Party's Customer Data with any third parties unless Google (i) has Your consent for any Customer Data or any Third Party's consent for the Third Party's Customer Data; (ii) concludes that it is required by law or has a good faith belief that access, preservation or disclosure of Customer Data is reasonably necessary to protect the rights, property or safety of Google, its users or the public; or (iii) provides Customer Data in certain limited circumstances to third parties to carry out tasks on Google's behalf (e.g., billing or data storage) with strict restrictions that prevent the data from being used or shared except as directed by Google. When this is done, it is subject to agreements that oblige those parties to process Customer Data only on Google's instructions and in compliance with this Agreement and appropriate confidentiality and security measures. + + 7. Privacy. + + You will not and will not assist or permit any third party to, pass information to Google that Google could use or recognize as personally identifiable information. You will have and abide by an appropriate Privacy Policy and will comply with all applicable laws, policies, and regulations relating to the collection of information from Users. You must post a Privacy Policy and that Privacy Policy must provide notice of Your use of cookies, identifiers for mobile devices (e.g., Android Advertising Identifier or Advertising Identifier for iOS) or similar technology used to collect data. You must disclose the use of Google Analytics, and how it collects and processes data. This can be done by displaying a prominent link to the site "How Google uses data when you use our partners' sites or apps", (located at www.google.com/policies/privacy/partners/, or any other URL Google may provide from time to time). You will use commercially reasonable efforts to ensure that a User is provided with clear and comprehensive information about, and consents to, the storing and accessing of cookies or other information on the User’s device where such activity occurs in connection with the Service and where providing such information and obtaining such consent is required by law. + + You must not circumvent any privacy features (e.g., an opt-out) that are part of the Service. You will comply with all applicable Google Analytics policies located at www.google.com/analytics/policies/ (or such other URL as Google may provide) as modified from time to time (the "Google Analytics Policies"). + + You may participate in an integrated version of Google Analytics and certain Google advertising services ("Google Analytics Advertising Features"). If You use Google Analytics Advertising Features, You will adhere to the Google Analytics Advertising Features policy (available at support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409). Your access to and use of any Google advertising service is subject to the applicable terms between You and Google regarding that service. + + If You use the Platform Home, Your use of the Platform Home is subject to the Platform Home Additional Terms (or as subsequently re-named) available at https://support.google.com/marketingplatform/answer/9047313 (or such other URL as Google may provide) as modified from time to time (the "Platform Home Terms"). + + 8. Indemnification. + + To the extent permitted by applicable law, You will indemnify, hold harmless and defend Google and its wholly-owned subsidiaries, at Your expense, from any and all third-party claims, actions, proceedings, and suits brought against Google or any of its officers, directors, employees, agents or affiliates, and all related liabilities, damages, settlements, penalties, fines, costs or expenses (including, reasonable attorneys' fees and other litigation expenses) incurred by Google or any of its officers, directors, employees, agents or affiliates, arising out of or relating to (i) Your breach of any term or condition of this Agreement, (ii) Your use of the Service, (iii) Your violations of applicable laws, rules or regulations in connection with the Service, (iv) any representations and warranties made by You concerning any aspect of the Service, the Software or Reports to any Third Party; (v) any claims made by or on behalf of any Third Party pertaining directly or indirectly to Your use of the Service, the Software or Reports; (vi) violations of Your obligations of privacy to any Third Party; and (vii) any claims with respect to acts or omissions of any Third Party in connection with the Service, the Software or Reports. Google will provide You with written notice of any claim, suit or action from which You must indemnify Google. You will cooperate as fully as reasonably required in the defense of any claim. Google reserves the right, at its own expense, to assume the exclusive defense and control of any matter subject to indemnification by You. + + 9. Third Parties. + + If You use the Service on behalf of the Third Party or a Third Party otherwise uses the Service through Your Account, whether or not You are authorized by Google to do so, then You represent and warrant that (a) You are authorized to act on behalf of, and bind to this Agreement, the Third Party to all obligations that You have under this Agreement, (b) Google may share with the Third Party any Customer Data that is specific to the Third Party's Properties, and (c) You will not disclose Third Party's Customer Data to any other party without the Third Party's consent. + + 10. DISCLAIMER OF WARRANTIES. + + TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, EXCEPT AS EXPRESSLY PROVIDED FOR IN THIS AGREEMENT, GOOGLE MAKES NO OTHER WARRANTY OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING WITHOUT LIMITATION WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR USE AND NONINFRINGEMENT. + + 11. LIMITATION OF LIABILITY. + + TO THE EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE WILL NOT BE LIABLE FOR YOUR LOST REVENUES OR INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF GOOGLE OR ITS SUBSIDIARIES AND AFFILIATES HAVE BEEN ADVISED OF, KNEW OR SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY A REMEDY. GOOGLE'S (AND ITS WHOLLY OWNED SUBSIDIARIES’) TOTAL CUMULATIVE LIABILITY TO YOU OR ANY OTHER PARTY FOR ANY LOSS OR DAMAGES RESULTING FROM CLAIMS, DEMANDS, OR ACTIONS ARISING OUT OF OR RELATING TO THIS AGREEMENT WILL NOT EXCEED $500 (USD). + + 12. Proprietary Rights Notice. + + The Service, which includes the Software and all Intellectual Property Rights therein are, and will remain, the property of Google (and its wholly owned subsidiaries). All rights in and to the Software not expressly granted to You in this Agreement are reserved and retained by Google and its licensors without restriction, including, Google's (and its wholly owned subsidiaries’) right to sole ownership of the Software and Documentation. Without limiting the generality of the foregoing, You agree not to (and not to allow any third party to): (a) sublicense, distribute, or use the Service or Software outside of the scope of the license granted in this Agreement; (b) copy, modify, adapt, translate, prepare derivative works from, reverse engineer, disassemble, or decompile the Software or otherwise attempt to discover any source code or trade secrets related to the Service; (c) rent, lease, sell, assign or otherwise transfer rights in or to the Software, Documentation or the Service; (d) use, post, transmit or introduce any device, software or routine which interferes or attempts to interfere with the operation of the Service or the Software; (e) use the trademarks, trade names, service marks, logos, domain names and other distinctive brand features or any copyright or other proprietary rights associated with the Service for any purpose without the express written consent of Google; (f) register, attempt to register, or assist anyone else to register any trademark, trade name, serve marks, logos, domain names and other distinctive brand features, copyright or other proprietary rights associated with Google (or its wholly owned subsidiaries) other than in the name of Google (or its wholly owned subsidiaries, as the case may be); (g) remove, obscure, or alter any notice of copyright, trademark, or other proprietary right appearing in or on any item included with the Service or Software; or (h) seek, in a proceeding filed during the term of this Agreement or for one year after such term, an injunction of any portion of the Service based on patent infringement. + + 13. U.S. Government Rights. + + If the use of the Service is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), in accordance with 48 C.F.R. 227.7202-4 (for Department of Defense (DOD) acquisitions) and 48 C.F.R. 2.101 and 12.212 (for non-DOD acquisitions), the Government's rights in the Software, including its rights to use, modify, reproduce, release, perform, display or disclose the Software or Documentation, will be subject in all respects to the commercial license rights and restrictions provided in this Agreement. + + 14. Term and Termination. + + Either party may terminate this Agreement at any time with notice. Upon any termination of this Agreement, Google will stop providing, and You will stop accessing the Service. Additionally, if Your Account and/or Properties are terminated, You will (i) delete all copies of the GAMC from all Properties and/or (ii) suspend any and all use of the SDKs within 3 business days of such termination. In the event of any termination (a) You will not be entitled to any refunds of any usage fees or any other fees, and (b) any outstanding balance for Service rendered through the date of termination will be immediately due and payable in full and (c) all of Your historical Report data will no longer be available to You. + + 15. Modifications to Terms of Service and Other Policies. + + Google may modify these terms or any additional terms that apply to the Service to, for example, reflect changes to the law or changes to the Service. You should look at the terms regularly. Google will post notice of modifications to these terms at https://www.google.com/analytics/terms/, the Google Analytics Policies at www.google.com/analytics/policies/, or other policies referenced in these terms at the applicable URL for such policies. Changes will not apply retroactively and will become effective no sooner than 14 days after they are posted. If You do not agree to the modified terms for the Service, You should discontinue Your use Google Analytics. No amendment to or modification of this Agreement will be binding unless (i) in writing and signed by a duly authorized representative of Google, (ii) You accept updated terms online, or (iii) You continue to use the Service after Google has posted updates to the Agreement or to any policy governing the Service. + + 16. Miscellaneous, Applicable Law and Venue. + + Google will be excused from performance in this Agreement to the extent that performance is prevented, delayed or obstructed by causes beyond its reasonable control. This Agreement (including any amendment agreed upon by the parties in writing) represents the complete agreement between You and Google concerning its subject matter, and supersedes all prior agreements and representations between the parties. If any provision of this Agreement is held to be unenforceable for any reason, such provision will be reformed to the extent necessary to make it enforceable to the maximum extent permissible so as to effect the intent of the parties, and the remainder of this Agreement will continue in full force and effect. This Agreement will be governed by and construed under the laws of the state of California without reference to its conflict of law principles. In the event of any conflicts between foreign law, rules, and regulations, and California law, rules, and regulations, California law, rules and regulations will prevail and govern. Each party agrees to submit to the exclusive and personal jurisdiction of the courts located in Santa Clara County, California. The United Nations Convention on Contracts for the International Sale of Goods and the Uniform Computer Information Transactions Act do not apply to this Agreement. The Software is controlled by U.S. Export Regulations, and it may be not be exported to or used by embargoed countries or individuals. Any notices to Google must be sent to: Google LLC, 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA, with a copy to Legal Department, via first class or air mail or overnight courier, and are deemed given upon receipt. A waiver of any default is not a waiver of any subsequent default. You may not assign or otherwise transfer any of Your rights in this Agreement without Google's prior written consent, and any such attempt is void. The relationship between Google and You is not one of a legal partnership relationship, but is one of independent contractors. This Agreement will be binding upon and inure to the benefit of the respective successors and assigns of the parties hereto. The following sections of this Agreement will survive any termination thereof: 1, 4, 5, 6 (except the last two sentences), 7, 8, 9, 10, 11, 12, 14, 16, and 17. + + 17. Google Analytics for Firebase. + + If You link a Property to Firebase (“Firebase Linkage”) as part of using the Service, the following terms, in addition to Sections 1-16 above, will also apply to You, and will also govern Your use of the Service, including with respect to Your use of Firebase Linkage. Other than as modified below, all other terms will stay the same and continue to apply. In the event of a conflict between this Section 17 and Sections 1-16 above, the terms in Section 17 will govern and control solely with respect to Your use of the Firebase Linkage. + + A. The following definition in Section 1 is modified as follows: + a. "Hit" means a collection of interactions that results in data being sent to the Service and processed. Examples of Hits may include page view hits and ecommerce hits. A Hit can be a call to the Service by various libraries, but does not have to be so (e.g., a Hit can be delivered to the Service by other Google Analytics-supported protocols and mechanisms made available by the Service to You). For the sake of clarity, a Hit does not include certain events whose collection reflects interactions with certain Properties capable of supporting multiple data streams, and which may include screen views and custom events (the collection of events, an “Enhanced Packet”). + B. The following sentence is added to the end of Section 7 as follows: + a. If You link a Property to a Firebase project (“Firebase Linkage”) (i) certain data from Your Property, including Customer Data, may be made accessible within or to any other entity or personnel according to permissions set in Firebase and (ii) that Property may have certain Service settings modified by authorized personnel of Firebase (notwithstanding the settings You may have designated for that Property within the Service). + + Last Updated June 17, 2019 json: google-analytics-tos-2019.json - yml: google-analytics-tos-2019.yml + yaml: google-analytics-tos-2019.yml html: google-analytics-tos-2019.html - text: google-analytics-tos-2019.LICENSE + license: google-analytics-tos-2019.LICENSE - license_key: google-apis-tos-2021 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-apis-tos-2021 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Google APIs Terms of Service \nLast modified: November 9, 2021\n\nThank you for using\ + \ Google's APIs, other developer services, and associated software (collectively, \"APIs\"\ + ). By accessing or using our APIs, you are agreeing to the terms below. If there is a conflict\ + \ between these terms and additional terms applicable to a given API, the additional terms\ + \ will control for that conflict. Collectively, we refer to the terms below, any additional\ + \ terms, terms within the accompanying API documentation, and any applicable policies and\ + \ guidelines as the \"Terms.\" You agree to comply with the Terms and that the Terms control\ + \ your relationship with us. So please read all the Terms carefully. If you use the APIs\ + \ as an interface to, or in conjunction with other Google products or services, then the\ + \ terms for those other products or services also apply.\n\nUnder the Terms, \"Google\"\ + \ means Google LLC, with offices at 1600 Amphitheatre Parkway, Mountain View, California\ + \ 94043, United States, unless set forth otherwise in additional terms applicable for a\ + \ given API. We may refer to \"Google\" as \"we\", \"our\", or \"us\" in the Terms.\n\n\ + Section 1: Account and Registration\na. Accepting the Terms\nYou may not use the APIs and\ + \ may not accept the Terms if (a) you are not of legal age to form a binding contract with\ + \ Google, or (b) you are a person barred from using or receiving the APIs under the applicable\ + \ laws of the United States or other countries including the country in which you are resident\ + \ or from which you use the APIs.\n\nb. Entity Level Acceptance\nIf you are using the APIs\ + \ on behalf of an entity, you represent and warrant that you have authority to bind that\ + \ entity to the Terms and by accepting the Terms, you are doing so on behalf of that entity\ + \ (and all references to \"you\" in the Terms refer to that entity).\n\nc. Registration\n\ + In order to access certain APIs you may be required to provide certain information (such\ + \ as identification or contact details) as part of the registration process for the APIs,\ + \ or as part of your continued use of the APIs. Any registration information you give to\ + \ Google will always be accurate and up to date and you'll inform us promptly of any updates.\n\ + \nd. Subsidiaries and Affiliates\nGoogle has subsidiaries and affiliated legal entities\ + \ around the world. These companies may provide the APIs to you on behalf of Google and\ + \ the Terms will also govern your relationship with these companies.\n\nSection 2: Using\ + \ Our APIs\na. Your End Users\nYou will require your end users to comply with (and not knowingly\ + \ enable them to violate) applicable law, regulation, and the Terms.\n\nb. Compliance with\ + \ Law, Third Party Rights, and Other Google Terms of Service\nYou will comply with all applicable\ + \ law, regulation, and third party rights (including without limitation laws regarding the\ + \ import or export of data or software, privacy, and local laws). You will not use the APIs\ + \ to encourage or promote illegal activity or violation of third party rights. You will\ + \ not violate any other terms of service with Google (or its affiliates).\n\nc. Permitted\ + \ Access\nYou will only access (or attempt to access) an API by the means described in the\ + \ documentation of that API. If Google assigns you developer credentials (e.g. client IDs),\ + \ you must use them with the applicable APIs. You will not misrepresent or mask either your\ + \ identity or your API Client's identity when using the APIs or developer accounts.\n\n\ + d. API Limitations\nGoogle sets and enforces limits on your use of the APIs (e.g. limiting\ + \ the number of API requests that you may make or the number of users you may serve), in\ + \ our sole discretion. You agree to, and will not attempt to circumvent, such limitations\ + \ documented with each API. If you would like to use any API beyond these limits, you must\ + \ obtain Google's express consent (and Google may decline such request or condition acceptance\ + \ on your agreement to additional terms and/or charges for that use). To seek such approval,\ + \ contact the relevant Google API team for information (e.g. by using the Google developers\ + \ console).\n\ne. Open Source Software\nSome of the software required by or included in\ + \ our APIs may be offered under an open source license. Open source software licenses constitute\ + \ separate written agreements. For certain APIs, open source software is listed in the documentation.\ + \ To the limited extent the open source software license expressly supersedes the Terms,\ + \ the open source license instead sets forth your agreement with Google for the applicable\ + \ open source software.\n\nf. Communication with Google\nWe may send you certain communications\ + \ in connection with your use of the APIs. Please review the applicable API documentation\ + \ for information about opting out of certain types of communication.\n\ng. Feedback\nIf\ + \ you provide feedback or suggestions about our APIs, then we (and those we allow) may use\ + \ such information without obligation to you.\n\nh. Non-Exclusivity\nThe Terms are non-exclusive.\ + \ You acknowledge that Google may develop products or services that may compete with the\ + \ API Clients or any other products or services.\n\ni. Google Controller-Controller Data\ + \ Protection Terms\nTo the extent required by data protection laws applicable to the parties'\ + \ processing of personal data under these Terms, the parties agree to the Google Controller-Controller\ + \ Data Protection Terms.\n\nSection 3: Your API Clients\na. API Clients and Monitoring\n\ + The APIs are designed to help you enhance your websites and applications (\"API Client(s)\"\ + ). YOU AGREE THAT GOOGLE MAY MONITOR USE OF THE APIS TO ENSURE QUALITY, IMPROVE GOOGLE PRODUCTS\ + \ AND SERVICES, AND VERIFY YOUR COMPLIANCE WITH THE TERMS. This monitoring may include Google\ + \ accessing and using your API Client, for example to identify security issues that could\ + \ affect Google or its users. You will not interfere with this monitoring. Google may use\ + \ any technical means to overcome such interference. Google may suspend access to the APIs\ + \ by you or your API Client without notice if we reasonably believe that you are in violation\ + \ of the Terms.\n\nb. Security\nYou will use commercially reasonable efforts to protect\ + \ user information collected by your API Client, including personal data, from unauthorized\ + \ access or use and will promptly report to your users any unauthorized access or use of\ + \ such information to the extent required by applicable law.\n\nc. Ownership\nGoogle does\ + \ not acquire ownership in your API Clients, and by using our APIs, you do not acquire ownership\ + \ of any rights in our APIs or the content that is accessed through our APIs.\n\nd. User\ + \ Privacy and API Clients\nYou will comply with (1) all applicable privacy laws and regulations\ + \ including those applying to personal data and (2) the Google API Services User Data Policy,\ + \ which governs your use of the APIs when you request access to Google user information.\ + \ You will provide and adhere to a privacy policy for your API Client that clearly and accurately\ + \ describes to users of your API Client what user information you collect and how you use\ + \ and share such information (including for advertising) with Google and third parties.\n\ + \nSection 4: Prohibitions and Confidentiality\na. API Prohibitions\nWhen using the APIs,\ + \ you may not (or allow those acting on your behalf to):\n\nSublicense an API for use by\ + \ a third party. Consequently, you will not create an API Client that functions substantially\ + \ the same as the APIs and offer it for use by third parties.\nPerform an action with the\ + \ intent of introducing to Google products and services any viruses, worms, defects, Trojan\ + \ horses, malware, or any items of a destructive nature.\nDefame, abuse, harass, stalk,\ + \ or threaten others.\nInterfere with or disrupt the APIs or the servers or networks providing\ + \ the APIs.\nPromote or facilitate unlawful online gambling or disruptive commercial messages\ + \ or advertisements.\nReverse engineer or attempt to extract the source code from any API\ + \ or any related software, except to the extent that this restriction is expressly prohibited\ + \ by applicable law.\nUse the APIs for any activities where the use or failure of the APIs\ + \ could lead to death, personal injury, or environmental damage (such as the operation of\ + \ nuclear facilities, air traffic control, or life support systems).\nUse the APIs to process\ + \ or store any data that is subject to the International Traffic in Arms Regulations maintained\ + \ by the U.S. Department of State.\nRemove, obscure, or alter any Google terms of service\ + \ or any links to or notices of those terms.\nUnless otherwise specified in writing by Google,\ + \ Google does not intend use of the APIs to create obligations under the Health Insurance\ + \ Portability and Accountability Act, as amended (\"HIPAA\"), and makes no representations\ + \ that the APIs satisfy HIPAA requirements. If you are (or become) a \"covered entity\"\ + \ or \"business associate\" as defined in HIPAA, you will not use the APIs for any purpose\ + \ or in any manner involving transmitting protected health information to Google unless\ + \ you have received prior written consent to such use from Google.\n\nb. Confidential Matters\n\ + Developer credentials (such as passwords, keys, and client IDs) are intended to be used\ + \ by you and identify your API Client. You will keep your credentials confidential and make\ + \ reasonable efforts to prevent and discourage other API Clients from using your credentials.\ + \ Developer credentials may not be embedded in open source projects.\nOur communications\ + \ to you and our APIs may contain Google confidential information. Google confidential information\ + \ includes any materials, communications, and information that are marked confidential or\ + \ that would normally be considered confidential under the circumstances. If you receive\ + \ any such information, then you will not disclose it to any third party without Google's\ + \ prior written consent. Google confidential information does not include information that\ + \ you independently developed, that was rightfully given to you by a third party without\ + \ confidentiality obligation, or that becomes public through no fault of your own. You may\ + \ disclose Google confidential information when compelled to do so by law if you provide\ + \ us reasonable prior notice, unless a court orders that we not receive notice.\n\nSection\ + \ 5: Content\na. Content Accessible Through our APIs\nOur APIs contain some third party\ + \ content (such as text, images, videos, audio, or software). This content is the sole responsibility\ + \ of the person that makes it available. We may sometimes review content to determine whether\ + \ it is illegal or violates our policies or the Terms, and we may remove or refuse to display\ + \ content. Finally, content accessible through our APIs may be subject to intellectual property\ + \ rights, and, if so, you may not use it unless you are licensed to do so by the owner of\ + \ that content or are otherwise permitted by law. Your access to the content provided by\ + \ the API may be restricted, limited, or filtered in accordance with applicable law, regulation,\ + \ and policy.\n\nb. Submission of Content\nSome of our APIs allow the submission of content.\ + \ Google does not acquire any ownership of any intellectual property rights in the content\ + \ that you submit to our APIs through your API Client, except as expressly provided in the\ + \ Terms. For the sole purpose of enabling Google to provide, secure, and improve the APIs\ + \ (and the related service(s)) and only in accordance with the applicable Google privacy\ + \ policies, you give Google a perpetual, irrevocable, worldwide, sublicensable, royalty-free,\ + \ and non-exclusive license to Use content submitted, posted, or displayed to or from the\ + \ APIs through your API Client. \"Use\" means use, host, store, modify, communicate, and\ + \ publish. Before you submit content to our APIs through your API Client, you will ensure\ + \ that you have the necessary rights (including the necessary rights from your end users)\ + \ to grant us the license.\n\nc. Retrieval of content\nWhen a user's non-public content\ + \ is obtained through the APIs, you may not expose that content to other users or to third\ + \ parties without explicit opt-in consent from that user.\n\nd. Data Portability\nGoogle\ + \ supports data portability. For as long as you use or store any user data that you obtained\ + \ through the APIs, you agree to enable your users to export their equivalent data to other\ + \ services or applications of their choice in a way that's substantially as fast and easy\ + \ as exporting such data from Google products and services, subject to applicable laws,\ + \ and you agree that you will not make that data available to third parties who do not also\ + \ abide by this obligation.\n\ne. Prohibitions on Content\nUnless expressly permitted by\ + \ the content owner or by applicable law, you will not, and will not permit your end users\ + \ or others acting on your behalf to, do the following with content returned from the APIs:\n\ + \nScrape, build databases, or otherwise create permanent copies of such content, or keep\ + \ cached copies longer than permitted by the cache header;\nCopy, translate, modify, create\ + \ a derivative work of, sell, lease, lend, convey, distribute, publicly display, or sublicense\ + \ to any third party;\nMisrepresent the source or ownership; or\nRemove, obscure, or alter\ + \ any copyright, trademark, or other proprietary rights notices; or falsify or delete any\ + \ author attributions, legal notices, or other labels of the origin or source of material.\n\ + \nSection 6: Brand Features; Attribution\na. Brand Features\n\"Brand Features\" is defined\ + \ as the trade names, trademarks, service marks, logos, domain names, and other distinctive\ + \ brand features of each party. Except where expressly stated, the Terms do not grant either\ + \ party any right, title, or interest in or to the other party's Brand Features. All use\ + \ by you of Google's Brand Features (including any goodwill associated therewith) will inure\ + \ to the benefit of Google.\n\nb. Attribution\nYou agree to display any attribution(s) required\ + \ by Google as described in the documentation for the API. Google hereby grants to you a\ + \ nontransferable, nonsublicenseable, nonexclusive license while the Terms are in effect\ + \ to display Google's Brand Features for the purpose of promoting or advertising that you\ + \ use the APIs. You must only use the Google Brand Features in accordance with the Terms\ + \ and for the purpose of fulfilling your obligations under this Section. In using Google's\ + \ Brand Features, you must follow the Google Brand Features Use Guidelines. You understand\ + \ and agree that Google has the sole discretion to determine whether your attribution(s)\ + \ and use of Google's Brand Features are in accordance with the above requirements and guidelines.\n\ + \nc. Publicity\nYou will not make any statement regarding your use of an API which suggests\ + \ partnership with, sponsorship by, or endorsement by Google without Google's prior written\ + \ approval.\n\nd. Promotional and Marketing Use\nIn the course of promoting, marketing,\ + \ or demonstrating the APIs you are using and the associated Google products, Google may\ + \ produce and distribute incidental depictions, including screenshots, video, or other content\ + \ from your API Client, and may use your company or product name. You grant us all necessary\ + \ rights for the above purposes.\n\nSection 7: Privacy and Copyright Protection\na. Google\ + \ Privacy Policies\nBy using our APIs, Google may use submitted information in accordance\ + \ with our privacy policies.\n\nb. Google DMCA Policy\nWe provide information to help copyright\ + \ holders manage their intellectual property online, but we can't determine whether something\ + \ is being used legally or not without their input. We respond to notices of alleged copyright\ + \ infringement and terminate accounts of repeat infringers according to the process set\ + \ out in the U.S. Digital Millennium Copyright Act. If you think somebody is violating your\ + \ copyrights and want to notify us, you can find information about submitting notices and\ + \ Google's policy about responding to notices in our Help Center.\n\nSection 8: Termination\n\ + a. Termination\nYou may stop using our APIs at any time with or without notice. Further,\ + \ if you want to terminate the Terms, you must provide Google with prior written notice\ + \ and upon termination, cease your use of the applicable APIs. Google reserves the right\ + \ to terminate the Terms with you or discontinue the APIs or any portion or feature or your\ + \ access thereto for any reason and at any time without liability or other obligation to\ + \ you.\n\nb. Your Obligations Post-Termination\nUpon any termination of the Terms or discontinuation\ + \ of your access to an API, you will immediately stop using the API, cease all use of the\ + \ Google Brand Features, and delete any cached or stored content that was permitted by the\ + \ cache header under Section 5. Google may independently communicate with any account owner\ + \ whose account(s) are associated with your API Client and developer credentials to provide\ + \ notice of the termination of your right to use an API.\n\nc. Surviving Provisions\nWhen\ + \ the Terms come to an end, those terms that by their nature are intended to continue indefinitely\ + \ will continue to apply, including but not limited to: Sections 4b, 5, 8, 9, and 10.\n\n\ + Section 9: Liability for our APIs\na. WARRANTIES\nEXCEPT AS EXPRESSLY SET OUT IN THE TERMS,\ + \ NEITHER GOOGLE NOR ITS SUPPLIERS OR DISTRIBUTORS MAKE ANY SPECIFIC PROMISES ABOUT THE\ + \ APIS. FOR EXAMPLE, WE DON'T MAKE ANY COMMITMENTS ABOUT THE CONTENT ACCESSED THROUGH THE\ + \ APIS, THE SPECIFIC FUNCTIONS OF THE APIS, OR THEIR RELIABILITY, AVAILABILITY, OR ABILITY\ + \ TO MEET YOUR NEEDS. WE PROVIDE THE APIS \"AS IS\".\n\nSOME JURISDICTIONS PROVIDE FOR CERTAIN\ + \ WARRANTIES, LIKE THE IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,\ + \ AND NON-INFRINGEMENT. EXCEPT AS EXPRESSLY PROVIDED FOR IN THE TERMS, TO THE EXTENT PERMITTED\ + \ BY LAW, WE EXCLUDE ALL WARRANTIES, GUARANTEES, CONDITIONS, REPRESENTATIONS, AND UNDERTAKINGS.\n\ + \nb. LIMITATION OF LIABILITY\nWHEN PERMITTED BY LAW, GOOGLE, AND GOOGLE'S SUPPLIERS AND\ + \ DISTRIBUTORS, WILL NOT BE RESPONSIBLE FOR LOST PROFITS, REVENUES, OR DATA; FINANCIAL LOSSES;\ + \ OR INDIRECT, SPECIAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES.\n\nTO THE EXTENT\ + \ PERMITTED BY LAW, THE TOTAL LIABILITY OF GOOGLE, AND ITS SUPPLIERS AND DISTRIBUTORS, FOR\ + \ ANY CLAIM UNDER THE TERMS, INCLUDING FOR ANY IMPLIED WARRANTIES, IS LIMITED TO THE AMOUNT\ + \ YOU PAID US TO USE THE APPLICABLE APIS (OR, IF WE CHOOSE, TO SUPPLYING YOU THE APIS AGAIN)\ + \ DURING THE SIX MONTHS PRIOR TO THE EVENT GIVING RISE TO THE LIABILITY.\n\nIN ALL CASES,\ + \ GOOGLE, AND ITS SUPPLIERS AND DISTRIBUTORS, WILL NOT BE LIABLE FOR ANY EXPENSE, LOSS,\ + \ OR DAMAGE THAT IS NOT REASONABLY FORESEEABLE.\n\nc. Indemnification\nUnless prohibited\ + \ by applicable law, if you are a business, you will defend and indemnify Google, and its\ + \ affiliates, directors, officers, employees, and users, against all liabilities, damages,\ + \ losses, costs, fees (including legal fees), and expenses relating to any allegation or\ + \ third-party legal proceeding to the extent arising from:\n\nyour misuse or your end user's\ + \ misuse of the APIs;\nyour violation or your end user's violation of the Terms; or\nany\ + \ content or data routed into or used with the APIs by you, those acting on your behalf,\ + \ or your end users.\n\nSection 10: General Provisions\na. Modification\nWe may modify the\ + \ Terms or any portion to, for example, reflect changes to the law or changes to our APIs.\ + \ You should look at the Terms regularly. We'll post notice of modifications to the Terms\ + \ within the documentation of each applicable API, to this website, and/or in the Google\ + \ developers console. Changes will not apply retroactively and will become effective no\ + \ sooner than 30 days after they are posted. But changes addressing new functions for an\ + \ API or changes made for legal reasons will be effective immediately. If you do not agree\ + \ to the modified Terms for an API, you should discontinue your use of that API. Your continued\ + \ use of the API constitutes your acceptance of the modified Terms.\n\nb. U.S. Federal Agency\ + \ Entities\nThe APIs were developed solely at private expense and are commercial computer\ + \ software and related documentation within the meaning of the applicable U.S. Federal Acquisition\ + \ Regulation and agency supplements thereto.\n\nc. General Legal Terms\nWe each agree to\ + \ contract in the English language. If we provide a translation of the Terms, we do so for\ + \ your convenience only and the English Terms will solely govern our relationship. The Terms\ + \ do not create any third party beneficiary rights or any agency, partnership, or joint\ + \ venture. Nothing in the Terms will limit either party's ability to seek injunctive relief.\ + \ We are not liable for failure or delay in performance to the extent caused by circumstances\ + \ beyond our reasonable control. If you do not comply with the Terms, and Google does not\ + \ take action right away, this does not mean that Google is giving up any rights that it\ + \ may have (such as taking action in the future). If it turns out that a particular term\ + \ is not enforceable, this will not affect any other terms. The Terms are the entire agreement\ + \ between you and Google relating to its subject and supersede any prior or contemporaneous\ + \ agreements on that subject. For information about how to contact Google, please visit\ + \ our contact page.\n\nExcept as set forth below: (i) the laws of California, U.S.A., excluding\ + \ California's conflict of laws rules, will apply to any disputes arising out of or related\ + \ to the Terms or the APIs and (ii) ALL CLAIMS ARISING OUT OF OR RELATING TO THE TERMS OR\ + \ THE APIS WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY,\ + \ CALIFORNIA, USA, AND YOU AND GOOGLE CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\ + \nIf you are accepting the Terms on behalf of a United States federal government entity,\ + \ then the following applies instead of the paragraph above: the laws of the United States\ + \ of America, excluding its conflict of laws rules, will apply to any disputes arising out\ + \ of or related to the Terms or the APIs. Solely to the extent permitted by United States\ + \ Federal law: (i) the laws of the State of California (excluding California's conflict\ + \ of laws rules) will apply in the absence of applicable federal law; and (ii) FOR ALL CLAIMS\ + \ ARISING OUT OF OR RELATING TO THE TERMS OR THE APIS, THE PARTIES CONSENT TO PERSONAL JURISDICTION\ + \ IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\nIf you\ + \ are accepting the Terms on behalf of a United States city, county, or state government\ + \ entity, then the following applies instead of the paragraph above: the parties agree to\ + \ remain silent regarding governing law and venue." json: google-apis-tos-2021.json - yml: google-apis-tos-2021.yml + yaml: google-apis-tos-2021.yml html: google-apis-tos-2021.html - text: google-apis-tos-2021.LICENSE + license: google-apis-tos-2021.LICENSE - license_key: google-cla + category: CLA spdx_license_key: LicenseRef-scancode-google-cla other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: | + Google Individual Contributor License Agreement + + In order to clarify the intellectual property license granted with Contributions from any person or entity, Google LLC ("Google") must have a Contributor License Agreement ("CLA") on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for your protection as a Contributor as well as the protection of Google; it does not change your rights to use your own Contributions for any other purpose. + + You accept and agree to the following terms and conditions for Your present and future Contributions submitted to Google. Except for the license granted herein to Google and recipients of software distributed by Google, You reserve all right, title, and interest in and to Your Contributions. + + Definitions. + + "You" (or "Your") shall mean the copyright owner or legal entity authorized by the copyright owner that is making this Agreement with Google. For legal entities, the entity making a Contribution and all other entities that control, are controlled by, or are under common control with that entity are considered to be a single Contributor. 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. + + "Contribution" shall mean any original work of authorship, including any modifications or additions to an existing work, that is intentionally submitted by You to Google for inclusion in, or documentation of, any of the products owned or managed by Google (the "Work"). For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to Google 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, Google for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by You as "Not a Contribution." + + Grant of Copyright License. Subject to the terms and conditions of this Agreement, You hereby grant to Google and to recipients of software distributed by Google 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 Your Contributions and such derivative works. + + Grant of Patent License. Subject to the terms and conditions of this Agreement, You hereby grant to Google and to recipients of software distributed by Google 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 You that are necessarily infringed by Your Contribution(s) alone or by combination of Your Contribution(s) with the Work to which such Contribution(s) was submitted. If any entity institutes patent litigation against You or any other entity (including a cross-claim or counterclaim in a lawsuit) alleging that your Contribution, or the Work to which you have contributed, constitutes direct or contributory patent infringement, then any patent licenses granted to that entity under this Agreement for that Contribution or Work shall terminate as of the date such litigation is filed. + + You represent that you are legally entitled to grant the above license. If your employer(s) has rights to intellectual property that you create that includes your Contributions, you represent that you have received permission to make Contributions on behalf of that employer, that your employer has waived such rights for your Contributions to Google, or that your employer has executed a separate Corporate CLA with Google. + + You represent that each of Your Contributions is Your original creation (see section 7 for submissions on behalf of others). You represent that Your Contribution submissions include complete details of any third-party license or other restriction (including, but not limited to, related patents and trademarks) of which you are personally aware and which are associated with any part of Your Contributions. + + You are not expected to provide support for Your Contributions, except to the extent You desire to provide support. You may provide support for free, for a fee, or not at all. Unless required by applicable law or agreed to in writing, You provide Your 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. + + Should You wish to submit work that is not Your original creation, You may submit it to Google separately from any Contribution, identifying the complete details of its source and of any license or other restriction (including, but not limited to, related patents, trademarks, and license agreements) of which you are personally aware, and conspicuously marking the work as "Submitted on behalf of a third-party: [named here]". + + You agree to notify Google of any facts or circumstances of which you become aware that would make these representations inaccurate in any respect. json: google-cla.json - yml: google-cla.yml + yaml: google-cla.yml html: google-cla.html - text: google-cla.LICENSE + license: google-cla.LICENSE - license_key: google-corporate-cla + category: CLA spdx_license_key: LicenseRef-scancode-google-corporate-cla other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: | + Google Software Grant and Corporate Contributor License Agreement + + In order to clarify the intellectual property license granted with Contributions from any person or entity, Google LLC ("Google") must have a Contributor License Agreement (CLA) on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for your protection as a Contributor as well as the protection of Google and its users; it does not change your rights to use your own Contributions for any other purpose. + + This version of the Agreement allows an entity (the "Corporation") to submit Contributions to Google, to authorize Contributions submitted by its designated employees to Google, and to grant copyright and patent licenses thereto. + + You accept and agree to the following terms and conditions for Your present and future Contributions submitted to Google. Except for the license granted herein to Google and recipients of software distributed by Google, You reserve all right, title, and interest in and to Your Contributions. + + Definitions. + + "You" (or "Your") shall mean the copyright owner or legal entity authorized by the copyright owner that is making this Agreement with Google. For legal entities, the entity making a Contribution and all other entities that control, are controlled by, or are under common control with that entity are considered to be a single Contributor. 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. + + "Contribution" shall mean the code, documentation or any original work of authorship, including any modifications or additions to an existing work, that is intentionally submitted by You to Google for inclusion in, or documentation of, any of the products owned or managed by Google (the "Work"). For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to Google 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, Google for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by You as "Not a Contribution." + + Grant of Copyright License. Subject to the terms and conditions of this Agreement, You hereby grant to Google and to recipients of software distributed by Google 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 Your Contributions and such derivative works. + + Grant of Patent License. Subject to the terms and conditions of this Agreement, You hereby grant to Google and to recipients of software distributed by Google 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 You that are necessarily infringed by Your Contribution(s) alone or by combination of Your Contribution(s) with the Work to which such Contribution(s) was submitted. If any entity institutes patent litigation against You or any other entity (including a cross-claim or counterclaim in a lawsuit) alleging that your Contribution, or the Work to which you have contributed, constitutes direct or contributory patent infringement, then any patent licenses granted to that entity under this Agreement for that Contribution or Work shall terminate as of the date such litigation is filed. + + You represent that You are legally entitled to grant the above license. You represent further that each employee of the Corporation designated by You is authorized to submit Contributions on behalf of the Corporation. + + You represent that each of Your Contributions is Your original creation (see section 7 for submissions on behalf of others). + + You are not expected to provide support for Your Contributions, except to the extent You desire to provide support. You may provide support for free, for a fee, or not at all. Unless required by applicable law or agreed to in writing, You provide Your 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. + + Should You wish to submit work that is not Your original creation, You may submit it to Google separately from any Contribution, identifying the complete details of its source and of any license or other restriction (including, but not limited to, related patents, trademarks, and license agreements) of which you are personally aware, and conspicuously marking the work as "Submitted on behalf of a third-party: [named here]". + + It is your responsibility to notify Google when any change is required to the list of designated employees authorized to submit Contributions on behalf of the Corporation, or to the Corporation's Point of Contact with Google. json: google-corporate-cla.json - yml: google-corporate-cla.yml + yaml: google-corporate-cla.yml html: google-corporate-cla.html - text: google-corporate-cla.LICENSE + license: google-corporate-cla.LICENSE - license_key: google-maps-tos-2018-02-07 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-02-07 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Google Maps APIs Terms of Service\n\nThank you for your interest in the Google Maps\ + \ APIs. The Google Maps APIs are a collection of services that allow you to include maps,\ + \ geocoding, places, and other content from Google in your web pages or applications.\n\n\ + Last Updated: February 7, 2018\n\nThis page contains the Google Maps Platform Terms of Service.\ + \ If you have questions about these terms, please consult the FAQ’s Terms of Service section.\ + \ These terms do not apply if you have entered into a separate written agreement with Google\ + \ (such as a Google Maps Platform Premium Plan or Google Maps APIs for Work agreement) related\ + \ to the Google Maps APIs.\n1. Your relationship with Google.\n\n1.1 Use of the Service\ + \ is Subject to these Terms. Your use of any of the Google Maps APIs (referred to in this\ + \ document as the \"Maps API(s)\" or the \"Service\") is subject to the terms of a legal\ + \ agreement between you and Google (the \"Terms\"). \"Google\" means either (a) Google Ireland\ + \ Limited, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if your billing\ + \ address is in any country within Europe, the Middle East, or Africa (\"EMEA\"); (b) Google\ + \ Asia Pacific Pte. Ltd., with offices at 70 Pasir Panjang Road, #03-71, Mapletree Business\ + \ City, Singapore 117371, if your billing address is in any country within the Asia Pacific\ + \ region excluding Australia (\"APAC\"); (c) Google Australia Pty Ltd. with offices at Level\ + \ 5, 48 Pirrama Road, Pyrmont 2009, NSW, Australia, if your billing address is in Australia;\ + \ or (d) Google Inc., with offices at 1600 Amphitheatre Parkway, Mountain View, California\ + \ 94043, USA, if your billing address is in any country in the world other than those in\ + \ EMEA, APAC or Australia.\n\n1.2 The Terms include Google's Legal Notices and Privacy Policy.\n\ + \n Unless otherwise agreed in writing with Google, the Terms will include the following:\n\ + \ the terms and conditions in this document (the \"Maps APIs Terms\");\n the\ + \ Legal Notices; and\n the Privacy Policy. \n Before you use the Maps API(s),\ + \ you should read each of the documents comprising the Terms, and print or save a local\ + \ copy for your records. \n\n1.3 Use of Other Google Services and Additional Terms. If you\ + \ use the Maps API(s) in conjunction with any other Google products, including any other\ + \ Google API(s), (collectively, the Service and all other Google products and services are\ + \ referred to as the \"Google Services\"), your agreement with Google will also include\ + \ the terms applicable to those Google Services. All of these are referred to as the \"\ + Additional Terms.\" If Additional Terms apply, they will be accessible to you either within\ + \ or through your use of the applicable Google Services. If there is any contradiction between\ + \ the Additional Terms and the Maps APIs Terms, then the Maps APIs Terms will take precedence\ + \ only as they relate to the Maps API(s), and not to any other Google Services.\n\n1.4 Precedence\ + \ of Maps APIs Terms. If there is any contradiction between the Maps APIs Terms and other\ + \ Maps API(s)-related documents (including the Maps APIs Documentation), then the Maps APIs\ + \ Terms will take precedence.\n\n1.5 Changes to the Terms. Google reserves the right to\ + \ make changes to the Terms from time to time. When these changes are made, Google will\ + \ make a new copy of the Terms available at http://developers.google.com/maps/terms (or\ + \ such other URL as Google may provide). You understand and agree that if you use the Service\ + \ after the date on which the Terms have changed, Google will treat your use as acceptance\ + \ of the updated Terms. If a modification is unacceptable to you, you may terminate this\ + \ agreement by ceasing use of the Maps API(s).\n2. Accepting the Terms.\n\n2.1 Clicking\ + \ to Accept or Using the Maps API(s). In order to use the Maps API(s), you must agree to\ + \ the Terms by:\n\n clicking to accept the Terms, where this option is made available\ + \ to you by Google in the Service’s user interface; or\n using the Maps API(s). You understand\ + \ and agree that Google will treat your use of the Maps API(s) as acceptance of the Terms\ + \ from that point onwards. \n\n2.2 U.S. Law Restrictions. You may not use the Maps API(s)\ + \ and may not accept the Terms if you are a person barred from using the Service under United\ + \ States law.\n\n2.3 Authority to Accept the Terms. You represent that you have full power,\ + \ capacity, and authority to accept these Terms. If you are accepting on behalf of your\ + \ employer or another entity, you represent that you have full legal authority to bind your\ + \ employer or such entity to these Terms. If you don't have the legal authority to bind,\ + \ please ensure that an authorized person from your entity consents to and accepts these\ + \ Terms.\n3. Privacy and Personal Information.\n\n3.1 Google’s Privacy Policy. For information\ + \ about Google's data protection practices, please read Google's Privacy Policy. This policy\ + \ explains how Google treats your personal information and protects your privacy when you\ + \ use the Service.\n\n3.2 Use of Your Data under Google’s Privacy Policy. You agree to the\ + \ use of your data in accordance with Google's Privacy Policy.\n\n3.3 Your Privacy Policy.\ + \ You must post and abide by an appropriate privacy policy in your Maps API Implementation\ + \ in accordance with Section 9.3 (End User Terms and Privacy Policy).\n\n3.4 Applicable\ + \ Privacy Laws. You will comply with all applicable laws relating to the collection of information\ + \ from visitors to your Maps API Implementation.\n\n3.5 European Data Protection Terms.\ + \ You and Google agree to the Google Maps Controller-Controller Data Protection Terms.\n\ + \n3.6 No Personally Identifiable Information or Personal Data. You must not provide to Google:\ + \ (a) any personally identifiable information or device identifiers; or (b) any European\ + \ person’s Personal Data (where “European” means “European Economic Area or Switzerland”\ + \ and “Personal Data” has the meaning provided in the General Data Protection Regulation\ + \ (EU) 2016/679 of the European Parliament and of the Council of April 27, 2016). Users\ + \ of your Maps API Implementation may provide information directly to Google through your\ + \ Maps API Implementation, as needed.\n4. Provision of the Service by Google.\n\n4.1 Google’s\ + \ Subsidiaries and Affiliates. Google has subsidiaries and affiliated legal entities around\ + \ the world (\"Subsidiaries and Affiliates\"). Sometimes, these companies will be providing\ + \ the Service to you on behalf of Google itself. You understand and agree that Subsidiaries\ + \ and Affiliates will be entitled to provide the Service to you.\n\n4.2 Limits on Your Use\ + \ of the Service. You understand and agree that Google may limit the number of transactions\ + \ you may send or receive through the Service; such fixed upper limits may be set by Google\ + \ at any time, at Google’s discretion. For further information, see Section 10.4(b) below.\n\ + \n4.3 Advertising.\n\n In places results. Google reserves the right to include advertising\ + \ in the places results provided to you through the Maps API(s). By using the Maps API(s)\ + \ to obtain places results, you agree to display such advertising in the form provided to\ + \ you by Google.\n In maps images. Google also reserves the right to include advertising\ + \ in the maps images provided to you through the Maps API(s), subject to the following provisions.\ + \ In this Section, \"Ads Notice\" means a notice from Google that it will include advertising\ + \ in a particular Maps API. The Ads Notice may be provided on relevant Google websites,\ + \ including the Google Geo Developers Blog (or such other URL as Google may provide) and\ + \ the applicable Google Maps API Groups.\n New Maps API(s) and major version upgrades\ + \ of existing Maps API(s) launched with an Ads Notice. A \"major version\" of a Maps API\ + \ is denoted by a new \"whole number\" in the version name (for example, a \"major version\"\ + \ change occurs if API v4.5 is replaced by v5.0). By using the maps images in these new\ + \ or major version upgrades of the Maps API(s), you agree to display the advertising included\ + \ in those maps images in the form provided to you by Google.\n Maps API(s) and major\ + \ version upgrades of existing Maps API(s) launched without an Ads Notice. For any Maps\ + \ API that Google has launched (or launches in the future) without an Ads Notice, Google\ + \ will not include advertising in that API’s maps images unless Google provides you with\ + \ an Ads Notice at least 90 days beforehand (the \"Ads Notice Period\").\n Maps API\ + \ Implementations that incorporated the Maps API(s) before April 8, 2011. If your Maps API\ + \ Implementation incorporated a major version of a Maps API before April 8, 2011, you have\ + \ a limited right to opt out of advertising in the maps images provided through that major\ + \ version of that Maps API by providing written notice to Google during the Ads Notice Period;\ + \ your notice must state that you refuse to accept advertising in the maps images and must\ + \ be provided to Google in accordance with Google's notice requirements (as specified in\ + \ Google's Ads Notice). \n Opting out of ads. You may at any time opt out of advertising\ + \ in the places results and the maps images by either:\n contacting the Google Maps\ + \ sales team to obtain a Google enterprise license; or\n terminating your use of\ + \ the Service. \n Indexing and caching for ads serving. By using an API that serves ads,\ + \ you give Google the right to access, index, and cache the web pages or applications that\ + \ contain your Maps API Implementation. \n\n4.4 Changes to the Service; Deprecation Policy.\ + \ The following is the Service’s \"Deprecation Policy\":\n\n Google will announce if\ + \ it intends to remove major features from, or discontinue, an API or the Service.\n \ + \ Google will use commercially reasonable efforts to continue to operate those Google Maps\ + \ API versions and features identified at http://developers.google.com/maps/maps-api-list\ + \ without these changes until one year after the announcement, unless Google determines\ + \ in its reasonable good faith judgment that:\n it is required by law or third-party\ + \ relationship (including changes in law or relationships) to make those changes earlier;\ + \ or\n doing so could create a security risk or substantial economic or material\ + \ technical burden. \n\n5. Your Google Account.\n\n5.1 Signing Up for a Google Account.\ + \ In order to access the Service, you must have and maintain a Google Account in good standing.\ + \ You must ensure that any information you give to Google in connection with your Google\ + \ Account or the Service will always be accurate, correct, and up to date.\n\n5.2 Your Passwords\ + \ and Account Security. You will be solely responsible to Google for your use of the Service.\ + \ You must notify Google immediately if you become aware of any unauthorized use of your\ + \ password; your Google Account; or any unique identifier that Google requires you to use,\ + \ such as an API Key or client ID (a \"Developer Identifier\").\n6. Google’s Proprietary\ + \ Rights.\n\nYou understand and agree that Google and its licensors and their suppliers\ + \ (as applicable) own all legal right, title, and interest in and to the Service and Content,\ + \ including any intellectual property rights in the Service and Content (whether those rights\ + \ are registered or not, and wherever in the world those rights may exist).\n7. Permitted\ + \ Uses.\n\nYou will use the Service only for purposes that:\n\n are permitted by the\ + \ Terms (including the Licenses in Section 8);\n are permitted by any applicable law\ + \ or third-party contract in the relevant jurisdictions; and\n comply with all applicable\ + \ policies or guidelines made available by Google, including in the Maps APIs Documentation\ + \ and the Permission Guidelines for Google Maps and Google Earth. \n\n8. Licenses from Google\ + \ to You.\n\n8.1 Definitions.\n\n \"Brand Features\" means trade names, trademarks, logos,\ + \ domain names, and other distinctive brand features.\n \"Content\" means any content\ + \ provided through the Service (whether created by Google or its third-party licensors),\ + \ including map and terrain data, imagery, traffic data, and places data (including business\ + \ listings).\n \"Maps API Implementation\" means a software application, website, or\ + \ other implementation that uses the Maps API(s) to obtain and display Content in conjunction\ + \ with Your Content.\n \"Your Content\" means any content that you provide in your Maps\ + \ API Implementation, including data, images, video, or software. Your Content does not\ + \ include the Content as defined in Subsection (b). \n\n8.2 Service License. Subject to\ + \ these Terms (including Section 9 (License Requirements) and Section 10 (License Restrictions)),\ + \ during the term of this agreement, Google gives you a non-exclusive, worldwide, personal,\ + \ non-transferable, non-assignable, non-sublicensable, royalty-free license to use the Service\ + \ as provided by Google, in the manner permitted by the Terms.\n\n8.3 Content License. Subject\ + \ to these Terms (including Sections 8.3(a) and (b), Section 9 (License Requirements), and\ + \ Section 10 (License Restrictions)), during the term of this agreement, Google gives you\ + \ a non-exclusive, worldwide, personal, non-transferable,non-assignable, non-sublicensable,\ + \ royalty-free license to use the Content in your Maps API Implementation, as the Content\ + \ is provided in the Service, and in the manner permitted by the Terms.\n\n Content (including\ + \ map data, traffic, directions, and places) is provided for planning purposes only. You\ + \ may find that weather conditions, construction projects, closures,or other events may\ + \ cause road conditions or directions to differ from the results depicted in the Content.\ + \ You should exercise judgment in your use of the Content.\n Certain Content is provided\ + \ under license from third parties, and is subject to copyright and other intellectual property\ + \ rights owned by or licensed to such third parties. You may be held liable for any unauthorized\ + \ use of this content. Your use of third-party Content (including certain business listings\ + \ Content) is subject to additional restrictions located in the Legal Notices page. \n\n\ + 8.4 Brand Features License.\n\n Grant. Subject to these Terms (including Section 8.4(b),\ + \ Section 9 (License Requirements), and Section 10 (License Restrictions)), during the term\ + \ of this agreement, Google gives you a non-exclusive, worldwide, personal, non-transferable,\ + \ non-assignable, non-sublicensable, royalty-free license to display Google’s Brand Features\ + \ solely for the purposes of (i) promoting or advertising your authorized use of the Service\ + \ in accordance with this Section and (ii) fulfilling your obligations under the Terms.\n\ + \ Restrictions. In using Google Brand Features, you will not:\n display a Google\ + \ Brand Feature in any manner that implies a relationship or affiliation with, sponsorship,\ + \ or endorsement by Google (other than your use of the Service), or that can be reasonably\ + \ interpreted to suggest editorial content has been authored by, or represents the views\ + \ or opinions of, Google or its personnel;\n display a Google Brand Feature in your\ + \ Maps API Implementation, site, or other propert(ies) if any of them contain or display\ + \ adult content or promote illegal activities, gambling, or the sale of tobacco or alcohol\ + \ to persons under 21 years of age;\n have the Google logo as the largest logo in\ + \ your Maps API Implementation, site, or other propert(ies) (except as displayed in the\ + \ map image itself);\n display a Google Brand Feature as the most prominent element\ + \ in your Maps API Implementation, on any page of your site, or on any of your other propert(ies);\n\ + \ display a Google Brand Feature in a manner that is misleading, defamatory, infringing,\ + \ libelous, disparaging, obscene, or otherwise objectionable to Google;\n use Google\ + \ Brand Features to disparage Google or the Google Services;\n display a Google Brand\ + \ Feature in your Maps API Implementation, site, or other propert(ies) that violate any\ + \ law or regulation; or\n remove, distort, or alter any element of a Google Brand\ + \ Feature (including squeezing, stretching, inverting, or discoloring). \n No further\ + \ license grant; no challenges. Except as stated in this Section, nothing in the Terms grants\ + \ or will be deemed to grant you any right, title, or interest in Google’s Brand Features.\ + \ Your use of Google’s Brand Features (including any goodwill associated with them) will\ + \ inure to Google’s benefit. During and after the Term, and to the maximum extent permitted\ + \ by applicable law, you will not challenge or assist others to challenge Google’s Brand\ + \ Features (or their registration by Google), and you will not attempt to register any Brand\ + \ Features (including domain names) that are confusingly similar to Google’s in any way\ + \ (including in sound, appearance, or spelling). \n\n8.5 Proprietary Rights Notices. You\ + \ will not remove, obscure, or alter any proprietary rights notices (including copyright\ + \ and trademark notices, Terms of Use links, or Brand Features) displayed or provided through\ + \ the Service. Where such notices are not displayed or provided within the Service, you\ + \ must display such notices according to the Maps APIs Documentation.\n\n8.6 U.S. Government\ + \ Restricted Rights. If the Service or Content is being used or accessed by or on behalf\ + \ of the United States government, such use is subject to additional terms located in our\ + \ Legal Notices page’s \"Government End Users\" section.\n\n8.7 Determination of Compliance.\ + \ Google reserves the sole right and discretion to determine whether your use of the Service,\ + \ Content, and Brand Features complies with these Terms.\n9. License Requirements.\n\nGoogle’s\ + \ licenses above are subject to your compliance with the following requirements:\n\n9.1\ + \ Free, Public Accessibility to Your Maps API Implementation.\n\n9.1.1 General Rules.\n\n\ + \ Free access (no fees). Subject to Section 9.1.2 (Exceptions), your Maps API Implementation\ + \ must be accessible to the general public without charge and must not require a fee-based\ + \ subscription or other fee-based restricted access. This rule applies to Your Content and\ + \ any other content in your Maps API Implementation, whether Your Content or the other content\ + \ exists now or is added later.\n Public access (no firewall). Your Maps API Implementation\ + \ must not operate (i) only behind a firewall; or (ii) only on an internal network (except\ + \ during the development and testing phase); or (iii) in a closed community (for example,\ + \ through invitation-only access). \n\n9.1.2 Exceptions.\n\n Enterprise agreement with\ + \ Google. The rules in Section 9.1.1 (Free access, Public access) do not apply if you have\ + \ entered into a separate written agreement with Google (such as a Google Maps agreement)\ + \ or obtained Google's written permission.\n Mobile applications.\n The rule in\ + \ Section 9.1.1(a) (Free access) does not apply if your Maps API Implementation is used\ + \ in a mobile application that is sold for a fee through an online store and is downloadable\ + \ to a mobile device that can access the online store.\n The rule in Section 9.1.1(b)\ + \ (Public access) does not apply if your Maps API Implementation is an Android application\ + \ that uses the Google Maps Android API. (However, the rule in Section 9.1.1(b) (Public\ + \ access) will continue to apply if your Maps API Implementation is an Android application\ + \ that uses any other Maps APIs, unless the Maps API Implementation qualifies for the exception\ + \ in Section 9.1.2(a) (Enterprise agreement with Google).) \n\n9.1.3 Examples.\n\n You\ + \ can require users to log in to your Maps API Implementation if you do not require users\ + \ to pay a fee.\n You can charge a fee for your Maps API Implementation if it is an Android\ + \ application downloadable to mobile devices from the Google Play Store.\n If you are\ + \ a consultant who creates or hosts Maps API Implementations for third-party customers,\ + \ you may charge those customers a fee for your consulting or hosting services (but not\ + \ for the Maps API Implementations themselves, except as permitted under Section 9.1.2 (Exceptions)).\ + \ \n\n9.2 Reporting. You must implement those reporting mechanisms that Google requires\ + \ (as updated from time to time in these Terms and in the Maps APIs Documentation).\n\n\ + 9.3 End User Terms and Privacy Policy. If you develop a Maps API Implementation for use\ + \ by other users, you must:\n\n display to the users of your Maps API Implementation\ + \ the link to Google’s Terms of Service as presented through the Service or described in\ + \ the Maps APIs Documentation;\n explicitly state in your Maps API Implementation’s terms\ + \ of use that, by using your Maps API Implementation, your users are agreeing to be bound\ + \ by the Google Maps/Google Earth Additional Terms of Service; and\n protect the privacy\ + \ and legal rights of those users.\n Your privacy policy. You must make publicly\ + \ available, and must abide by, an appropriate privacy policy in your Maps API Implementation.\ + \ In particular, if your Maps API Implementation enables you or any party to gain access\ + \ to information about users of the Maps API(s), including personally identifiable information\ + \ (such as user names) or non-personally identifiable usage information (such as location),\ + \ your privacy policy must describe your use and retention of this information.\n \ + \ Geolocation privacy\n Your Maps API Implementation must notify the\ + \ user in advance of the type(s) of data that you intend to collect from the user or the\ + \ user’s device. Your Maps API Implementation must not obtain or cache any user’s location\ + \ in any manner except with the user's prior consent. Your Maps API Implementation must\ + \ let the user revoke the user's consent at any time.\n If your Maps API\ + \ Implementation provides Google with geolocation data, that geolocation data must not enable\ + \ Google to identify an individual user. For example, if your Maps API Implementation sends\ + \ Google Your Content, and Your Content includes geolocation data, Your Content must not\ + \ also include unique device identifiers associated with individual users.\n \ + \ If you intend to obtain the user’s location and use it with any other data provider's\ + \ data, you must disclose this fact to the user. \n Google’s Privacy Policy.\ + \ Your privacy policy must notify users that you are using the Maps API(s) and incorporate\ + \ by reference Google’s Privacy Policy by including a link to Google’s then-current Privacy\ + \ Policy (at http://www.google.com/policies/privacy or such other URL as Google may provide).\n\ + \ Cookies. As noted in the Documentation, certain Maps API(s) store and access\ + \ cookies and other information on end users’ devices. If you use any of these cookie-enabled\ + \ Maps API(s) in your Maps API Implementation, then for end users in the European Union,\ + \ you must comply with the EU User Consent Policy. \n\n9.4 Attribution.\n\n Content provided\ + \ to you through the Service may contain the Brand Features of Google, its strategic partners,\ + \ or other third-party rights holders of content that Google indexes. When Google provides\ + \ those Brand Features or other attribution through the Service, you must display such attribution\ + \ as provided (or as described in the Maps APIs Documentation) and must not delete or alter\ + \ the attribution.\n You must conspicuously display the \"powered by Google\" attribution\ + \ (and any other attribution(s) required by Google in the Maps APIs Documentation) on or\ + \ adjacent to the relevant Service search box and Google search results. If you use the\ + \ standard Google search control, or the standard Google search control form, this attribution\ + \ will be included automatically, and you must not modify or obscure this automatically-generated\ + \ attribution.\n You understand and agree that Google has the sole right and discretion\ + \ to determine whether your attribution(s) are in compliance with the above requirements.\ + \ \n\n9.5 Preventing Unauthorized Use. You will use all reasonable efforts to prevent unauthorized\ + \ use of the Service and to terminate any such unauthorized use.\n\n9.6 Responsibility for\ + \ Breaches. You are solely responsible for (and Google has no responsibility to you or any\ + \ third party for) any breach of your obligations under the Terms and for the consequences\ + \ of any such breach (including any loss or damage that Google may suffer).\n10. License\ + \ Restrictions.\n\nExcept as expressly permitted under the Terms, or unless you have received\ + \ prior written authorization from Google (or, as applicable, from the particular Content\ + \ provider), Google’s licenses above are conditioned on your adherence to all of the restrictions\ + \ below. In this Section 10, the phrase \"you will not\" means \"when using the Service,\ + \ you will not, and will not permit a third party to.\"\n\n10.1 Administrative Restrictions.\n\ + \n No access to APIs or Content except through the Service. You will not access the Maps\ + \ API(s) or the Content except through the Service. For example, you must not access map\ + \ tiles or imagery through interfaces or channels (including undocumented Google interfaces)\ + \ other than the Maps API(s).\n No access to Service without applicable Developer Identifier(s).\ + \ For certain versions or features of the Maps API(s), Google may require you to use a Developer\ + \ Identifier to access and administer the Service. If a Developer Identifier is required\ + \ under the Maps APIs Documentation, you will not access the Service without the Developer\ + \ Identifier.\n No hiding identity. You will not hide from Google the identity of your\ + \ Maps API Implementation. You must follow the identification conventions in the Maps APIs\ + \ Documentation. \n\n10.2 General Google API Restrictions. The following restrictions apply\ + \ generally to all Google Services, including the Google application programming interfaces\ + \ at https://developers.google.com/products/ (or such other URL as Google may provide) (the\ + \ “Google API(s)”). You will not:\n\n Sublicense a Google API for use by a third party.\ + \ Consequently, you will not create an API client that functions substantially the same\ + \ as the Google APIs and offer it for use by third parties.\n Perform an action with\ + \ the intent of introducing to Google Services any viruses, worms, defects, Trojan horses,\ + \ malware, or any items of a destructive nature.\n Defame, abuse, harass, stalk, or threaten\ + \ others.\n Interfere with or disrupt the Google APIs or the servers or networks providing\ + \ the Google APIs.\n Promote or facilitate unlawful online gambling or disruptive commercial\ + \ messages or advertisements.\n Reverse engineer or attempt to extract the source code\ + \ from any Google API or any related software, except to the extent that this restriction\ + \ is expressly prohibited by applicable law.\n Use the Google APIs for any activities\ + \ where the use or failure of the Google APIs could lead to death, personal injury, or environmental\ + \ damage (such as the operation of nuclear facilities, air traffic control, or life support\ + \ systems).\n Use the Google APIs to process or store any data that is subject to the\ + \ International Traffic in Arms Regulations maintained by the U.S. Department of State.\n\ + \ Remove, obscure, or alter any Google terms of service, or any links to or notices of\ + \ those terms. \n\n10.3 Quality Standards Restrictions.\n\n No violation of Google’s\ + \ Software Principles. You will not violate Google’s Software Principles at http://www.google.com/intl/en/about/company/software-principles.html\ + \ (or such other URLs that Google may designate).\n No modification of search results.\ + \ You will not modify, reorder, augment, or manipulate search results in any way unless\ + \ you explicitly notify the end user of your actions. \n\n10.4 Restrictions on Unfair Exploitation\ + \ of the Service and Content.\n\n No use except under these Terms. You will not use the\ + \ Service or Content except as expressly permitted under these Terms. For example:\n \ + \ No fees. You will not charge any third party a fee to use your Maps API Implementation,\ + \ the Service, or the Content, unless you have purchased an applicable Google Maps Platform\ + \ Premium Plan or Google Maps APIs for Work license that expressly permits this use.\n \ + \ No printing 5,000+ copies for direct marketing. You will not print more than 5,000\ + \ copies of sales collateral materials containing a screenshot of the Content for purposes\ + \ of commercial sales lead generation.\n No use as a core part of printed matter.\ + \ You will not incorporate the Content as a core part of printed matter (such as a printed\ + \ map or guide book) that is redistributed for a fee. \n No use beyond transaction limits\ + \ and usage policies. If your Maps API Implementation generates a high volume of transactions,\ + \ Google reserves the right to set transaction limits, as described in the Maps APIs Documentation\ + \ here. Google also reserves the right to set other usage policies in the Documentation\ + \ from time to time. If you want to engage in use outside these transaction limits or usage\ + \ policies, you can purchase more usage capacity through the Maps API Standard pricing plan,\ + \ or you can contact the Google Maps sales team for licensing options to address your needs.\ + \ Google may decline your request, or condition acceptance on your agreement to additional\ + \ terms and/or charges for that use.\n Restrictions on your Maps API Implementations.\n\ + \ No creation of a substitute service. You will not use the Service to create a Maps\ + \ API Implementation that is a substitute for, or substantially similar service to, Google\ + \ Maps (at https://www.google.com/maps (or such other URL as Google may provide)) (\"Google\ + \ Maps\") or the Service.\n No creation or augmentation of data sets based on Google’s\ + \ Content or Services. You will not use Google’s Content or Services to create or augment\ + \ your own mapping-related dataset (or that of a third party), including a mapping or navigation\ + \ dataset, business listings database, mailing list, or telemarketing list.\n No\ + \ navigation. You will not use the Service or Content for or in connection with (a) real-time\ + \ navigation or route guidance; or (b) automatic or autonomous vehicle control.\n \ + \ No asset-tracking unless you have purchased the applicable enterprise license. Unless\ + \ you have purchased an applicable Premium Plan or Maps APIs for Work license that expressly\ + \ permits you to do so, you will not use the Service or Content for commercial asset-tracking\ + \ or in Maps API Implementations whose primary purpose is to assess vehicle insurance risks.\n\ + \ Commercial asset-tracking includes dispatch, fleet management, and Maps API\ + \ Implementations that track your (or your end users’) assets (for example, private or commercial\ + \ transportation applications, including taxi and vehicle-for-hire applications).\n \ + \ Non-commercial asset-tracking implementations include applications used for a non-commercial\ + \ purpose (for example, a free, publicly accessible Maps API Implementation that displays\ + \ real-time public transit or other transportation status information or that allows end\ + \ users to share real-time location with others). \n No use of Content in a listings\ + \ service. You will not use business listings-related Content in any Customer Implementation\ + \ that has the primary purpose of making available business, residential address, or telephone\ + \ directory listings.\n No use of Content for an Ads product. You will not use business\ + \ listings-related Content to create or augment an advertising product. \n No use of\ + \ Content without a Google map. Unless the Maps APIs Documentation expressly permits you\ + \ to do so, you will not use the Content in a Maps API Implementation without a corresponding\ + \ Google map. For example, you may display Street View imagery without a corresponding Google\ + \ map because the Maps APIs Documentation expressly permits this use.\n No use of Content\ + \ with a non-Google map. You must not use the Content in a Maps API Implementation that\ + \ contains a non-Google map. \n\n10.5 Intellectual Property Restrictions.\n\n No distribution\ + \ or sale except as permitted under the Terms. You will not distribute, sell, or otherwise\ + \ make any part of the Service available to third parties except as permitted by these Terms.\n\ + \ No derivative works. You will not modify or create a derivative work based on any Content\ + \ unless expressly permitted to do so under these Terms. For example, the following are\ + \ prohibited: (i) creating server-side modification of map tiles; (ii) stitching multiple\ + \ static map images together to display a map that is larger than permitted in the Maps\ + \ APIs Documentation; or (iii) tracing or copying the copyrightable elements of Google’s\ + \ maps or building outlines and creating a new work, such as a new mapping or navigation\ + \ dataset.\n No use of Content outside the Service. You will not use any Content outside\ + \ of the Service except as expressly permitted to do so in Subsection (d). For example,\ + \ you will not export or save the Content to a third party’s platform or service.\n No\ + \ caching or storage. You will not pre-fetch, cache, index, or store any Content to be used\ + \ outside the Service, except that you may store limited amounts of Content solely for the\ + \ purpose of improving the performance of your Maps API Implementation due to network latency\ + \ (and not for the purpose of preventing Google from accurately tracking usage), and only\ + \ if such storage:\n is temporary (and in no event more than 30 calendar days);\n\ + \ is secure;\n does not manipulate or aggregate any part of the Content or\ + \ Service; and\n does not modify attribution in any way. \n No mass downloading.\ + \ You will not use the Service in a manner that gives you or a third party access to mass\ + \ downloads or bulk feeds of any Content. For example, you are not permitted to offer a\ + \ batch geocoding service that uses Content contained in the Maps API(s).\n No incorporating\ + \ Google software into other software. You will not incorporate any software provided as\ + \ part of the Service into other software.\n No removing, obscuring, or altering terms\ + \ of service, links, or proprietary rights notices. You will not:\n remove, obscure,\ + \ or alter any Google terms of service or any links to or notices of those terms, or any\ + \ copyright, trademark, or other proprietary rights notices; or\n falsify or delete\ + \ any author attributions, legal notices, or other labels of the origin or source of material.\ + \ \n\n10.6 Restrictions on Trying to Shut Down the Service. We want to make sure that the\ + \ Services remain online and available for all users. To help ensure this, during the agreement\ + \ term, you will not try to shut down the Services that you have been using by seeking an\ + \ injunction or exclusion order.\n11. Licenses from You to Google.\n\n11.1 Content License.\ + \ Google claims no ownership over Your Content, and you retain copyright and any other rights\ + \ you already hold in Your Content. By submitting or displaying Your Content through the\ + \ Service, you give Google a perpetual, irrevocable, non-exclusive, worldwide, sublicensable,\ + \ royalty-free license to use Your Content solely for the following purposes:\n\n enabling\ + \ Google to provide you with the Service;\n if you opt to do so through your Maps API\ + \ Implementation’s features, allowing end users to use Your Content in Google Services;\ + \ and\n if you opt to submit Your Content through the Google Places API(s), allowing\ + \ Google to use that content in Google Services. \n\n11.2 Marketing License. During the\ + \ term of this agreement, you give Google a non-exclusive, worldwide, sublicensable, royalty-free\ + \ license to use Your Brand Features and Your Content to publicize or advertise that you\ + \ are using the Service (for example, by using your marks in presentations, marketing materials,\ + \ customer lists, financial reports, and website listings (including links to your website),\ + \ or by creating marketing or advertising materials that show screenshots of the Service\ + \ in which Your Content is featured).\n\n11.3 Authority to Grant Licenses. You represent\ + \ and warrant that you have all the rights, power, and authority necessary to grant the\ + \ above licenses.\n12. Maps API Standard Pricing Plan and Payment Terms.\n\nThis Section\ + \ 12 applies if you purchase usage capacity (beyond the Service’s transaction limits) through\ + \ the Maps API Standard pricing plan:\n\n12.1 Free Quota. Certain parts of the Service are\ + \ provided to you without charge up to the transaction limits described in the Maps APIs\ + \ Documentation here.\n\n12.2 Online Billing. Google will issue an electronic bill to you\ + \ for all charges accrued above the transaction limits based on your use of the Service\ + \ during the previous month. You will pay all fees specified in the invoice, including the\ + \ invoice’s specified currency and payment terms. Google’s measurement of your use of the\ + \ Service is final.\n\n12.3 Taxes. In association with your purchase of Maps API usage,\ + \ you are responsible for all applicable government-imposed taxes, except for taxes based\ + \ on Google’s net income, net worth, employment, and assets (including personal and real\ + \ property) (\"Taxes\"), and you will pay Google for the Service without any reduction for\ + \ Taxes. If Google is obligated to collect or pay Taxes, the Taxes will be invoiced to you,\ + \ unless you provide Google with a timely and valid tax exemption certificate authorized\ + \ by the appropriate taxing authority. In some states the sales tax is due on the total\ + \ purchase price at the time of sale and must be invoiced and collected at the time of the\ + \ sale.\n\n12.4 Invoice Disputes & Refunds. To the fullest extent permitted by law, you\ + \ waive all claims relating to fees unless claimed within sixty days after charged (this\ + \ does not affect any of your rights with your credit card issuer). Refunds (if any) are\ + \ at Google’s discretion and will only be in the form of credit for the Service. Nothing\ + \ in these Terms obligates Google to extend credit to any party.\n\n12.5 Delinquent Payments.\ + \ Late payments may bear interest at the rate of 1.5% per month (or the highest rate permitted\ + \ by law, if less). Google reserves the right to suspend your access to the Service for\ + \ any late payments.\n13. Terminating this Agreement.\n\n13.1 The Terms will continue to\ + \ apply until terminated by either you or Google as described below.\n\n13.2 You may terminate\ + \ your legal agreement with Google by removing the Maps API(s) code from your Maps API Implementation\ + \ and discontinuing your use of the Service at any time. You do not need to specifically\ + \ inform Google when you stop using the Service.\n\n13.3 Google reserves the right to terminate\ + \ these Terms or discontinue the Service, or any portion or feature of the Service, for\ + \ any reason and at any time without liability or other obligation to you, except as described\ + \ under Section 4.4 (Changes to the Service; Deprecation Policy).\n\n13.4 Nothing in this\ + \ Section 13 will affect Google’s rights under Section 4 (Provision of Service by Google).\n\ + \n13.5 When this legal agreement comes to an end, those Terms that by their nature are intended\ + \ to continue indefinitely will continue to apply, including Sections 3.5 (European Data\ + \ Protection Terms); 6 (Google’s Proprietary Rights); 11.1 (Content License); 13.4 and 13.5\ + \ (Terminating this Agreement); 14 (Exclusion of Warranties); 15 (Limitations of Liability);\ + \ 16 (Indemnities); and 19 (General Legal Terms).\n14. EXCLUSION OF WARRANTIES.\n\n14.1\ + \ NOTHING IN THESE TERMS, INCLUDING SECTIONS 14 AND 15, WILL EXCLUDE OR LIMIT GOOGLE’S WARRANTY\ + \ OR LIABILITY FOR LOSSES THAT MAY NOT BE LAWFULLY EXCLUDED OR LIMITED BY APPLICABLE LAW.\ + \ SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF CERTAIN WARRANTIES OR CONDITIONS OR THE\ + \ LIMITATION OR EXCLUSION OF LIABILITY FOR CERTAIN TYPES OF LOSS OR DAMAGES. ACCORDINGLY,\ + \ ONLY THE LIMITATIONS THAT ARE LAWFUL IN YOUR JURISDICTION WILL APPLY TO YOU, AND GOOGLE’S\ + \ LIABILITY WILL BE LIMITED TO THE MAXIMUM EXTENT PERMITTED BY LAW.\n\n14.2 YOU EXPRESSLY\ + \ UNDERSTAND AND AGREE THAT YOUR USE OF THE SERVICE AND THE CONTENT IS AT YOUR SOLE RISK\ + \ AND THAT THE SERVICE AND THE CONTENT ARE PROVIDED \"AS IS\" AND \"AS AVAILABLE.\" IN PARTICULAR,\ + \ GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS AND THEIR SUPPLIERS, DO NOT\ + \ REPRESENT OR WARRANT TO YOU THAT:\n\n THE SERVICE WILL MEET YOUR REQUIREMENTS;\n \ + \ THE SERVICE WILL BE UNINTERRUPTED, TIMELY, SECURE, OR ERROR-FREE;\n THE SERVICE WILL\ + \ BE ACCURATE OR RELIABLE; AND\n DEFECTS IN THE OPERATION OR FUNCTIONALITY OF ANY SOFTWARE\ + \ PROVIDED TO YOU AS PART OF THE SERVICE WILL BE CORRECTED. \n\n14.3 ANY CONTENT OBTAINED\ + \ THROUGH THE GOOGLE SERVICES IS AT YOUR OWN DISCRETION AND RISK AND YOU WILL BE SOLELY\ + \ RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE, LOSS OF DATA, OR ANY\ + \ OTHER DAMAGE OR INJURY THAT RESULTS FROM DOWNLOADING OR USING ANY SUCH CONTENT.\n\n14.4\ + \ NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED BY YOU FROM GOOGLE, OR THROUGH\ + \ OR FROM THE SERVICE OR CONTENT, WILL CREATE ANY WARRANTY NOT EXPRESSLY STATED IN THE TERMS.\n\ + \n14.5 GOOGLE, ITS LICENSORS, AND THEIR SUPPLIERS FURTHER EXPRESSLY DISCLAIM ALL WARRANTIES\ + \ AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING THE IMPLIED WARRANTIES\ + \ AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.\n\ + 15. LIMITATIONS OF LIABILITY.\n\n15.1 SUBJECT TO SECTION 14.1, YOU EXPRESSLY UNDERSTAND\ + \ AND AGREE THAT, TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE, ITS SUBSIDIARIES,\ + \ AND AFFILIATES, AND GOOGLE'S LICENSORS AND THEIR SUPPLIERS, WILL NOT BE LIABLE TO YOU\ + \ FOR:\n\n ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE\ + \ DAMAGES THAT MAY BE INCURRED BY YOU, HOWEVER CAUSED AND UNDER ANY THEORY OF LIABILITY\ + \ (INCLUDING CONTRACT, TORT, COMMON LAW, OR STATUTORY DAMAGES); ANY LOSS OF REVENUES OR\ + \ PROFIT (WHETHER INCURRED DIRECTLY OR INDIRECTLY); ANY LOSS OF GOODWILL OR BUSINESS REPUTATION;\ + \ ANY LOSS OF DATA; ANY COST TO PROCURE SUBSTITUTE GOODS OR SERVICES; OR ANY INTANGIBLE\ + \ LOSS; OR\n ANY LOSS OR DAMAGE AS A RESULT OF:\n ANY RELIANCE PLACED BY YOU ON\ + \ THE COMPLETENESS, ACCURACY, OR EXISTENCE OF ANY ADVERTISING, OR AS A RESULT OF ANY RELATIONSHIP\ + \ OR TRANSACTION BETWEEN YOU AND ANY ADVERTISER OR SPONSOR WHOSE ADVERTISING APPEARS ON\ + \ GOOGLE SERVICES;\n ANY CHANGES THAT GOOGLE MAY MAKE TO THE SERVICE, OR ANY PERMANENT\ + \ OR TEMPORARY DISCONTINUATION OF THE SERVICE (OR ANY FEATURES WITHIN THE SERVICE);\n \ + \ THE DELETION OR CORRUPTION OF, OR FAILURE TO STORE, ANY CONTENT AND OTHER DATA MAINTAINED\ + \ OR TRANSMITTED BY OR THROUGH YOUR USE OF THE SERVICE;\n YOUR FAILURE TO PROVIDE\ + \ GOOGLE WITH ACCURATE ACCOUNT INFORMATION; OR\n YOUR FAILURE TO KEEP YOUR PASSWORD\ + \ OR ACCOUNT DETAILS SECURE AND CONFIDENTIAL. \n\n15.2 THE LIMITATIONS ON GOOGLE’S LIABILITY\ + \ IN SECTION 15.1 ABOVE WILL APPLY WHETHER OR NOT GOOGLE, ITS SUBSIDIARIES, AFFILIATES,\ + \ LICENSORS OR THEIR SUPPLIERS HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY\ + \ OF ANY SUCH LOSSES OR DAMAGES.\n16. Indemnities.\n\n16.1 You will defend and indemnify\ + \ Google and its affiliates, directors, officers, employees, strategic partners, licensors,\ + \ and their suppliers (the \"Indemnified Parties\") against all liabilities, damages, losses,\ + \ costs, fees (including legal fees), and expenses relating to any allegation or third-party\ + \ legal proceeding to the extent arising from:\n\n your use of the Service or the Content\ + \ in breach of the Terms or applicable policies;\n your Maps API Implementation, including\ + \ any claim that your Maps API Implementation infringes a third party’s rights or violates\ + \ applicable law; or\n Your Content. \n\n16.2 You will cooperate as fully as reasonably\ + \ required in the defense of any allegation or third-party legal proceeding. Google reserves\ + \ the right, at its own expense, to assume the exclusive control and defense of any indemnified\ + \ matter under this Section 16.\n17. Copyright Policies; Content Removal; Termination of\ + \ Repeat Offenders’ Accounts.\n\nIt is Google’s policy to respond to notices of alleged\ + \ copyright infringement that comply with applicable international intellectual property\ + \ law (including, in the United States, the Digital Millennium Copyright Act) and to terminate\ + \ the accounts of repeat offenders. Details of Google’s policy can be found here.\n18. Other\ + \ Content.\n\n18.1 The Service may include hyperlinks to other websites or content or resources.\ + \ Google has no control over any websites or resources that are provided by companies or\ + \ persons other than Google. You understand and agree that Google is not responsible for\ + \ the availability of any such external sites or resources, and does not endorse any advertising,\ + \ products, or other materials on, or available from, such websites or resources.\n\n18.2\ + \ You understand and agree that Google is not liable for any loss or damage that you may\ + \ incur as a result of the availability of those external sites or resources, or as a result\ + \ of any reliance by you on the completeness, accuracy, or existence of any advertising,\ + \ products, or other materials on, or available from, such websites or resources.\n19. General\ + \ Legal Terms.\n\n19.1 Notices. Google may provide you with notices, including those regarding\ + \ changes to the Terms, by email, regular mail, or postings on the Service.\n\n19.2 Assignment.\ + \ Google may assign any part of this agreement without written consent.\n\n19.3 No Waiver.\ + \ Google will not be treated as having waived any rights by not exercising (or delaying\ + \ the exercise of) any rights under these Terms. A waiver will be effective only if Google\ + \ expressly states in a writing signed by an authorized representative that Google is waiving\ + \ a specified Term.\n\n19.4 Third-Party Beneficiaries. Google’s affiliates and the Indemnified\ + \ Parties are third-party beneficiaries to the Terms and are entitled to directly enforce,\ + \ and rely on, any Terms that confer a right or benefit to them. There are no other third-party\ + \ beneficiaries to the Terms.\n\n19.5 Entire Agreement. These Terms set out all terms agreed\ + \ between the parties and supersede all other agreements between the parties relating to\ + \ its subject matter.\n\n19.6 Severability. If any term (or part of a term) of these Terms\ + \ is invalid, illegal or unenforceable, the rest of the Terms will remain in effect.\n\n\ + 19.7 Equitable Relief. You understand and agree that damages for improper use of the Maps\ + \ API(s) may be irreparable; therefore, Google is entitled to seek equitable relief, including\ + \ injunctions in any jurisdiction, in addition to all other remedies it may have.\n\n19.8\ + \ Conflicting Languages. If these Terms are translated into any other language, and there\ + \ is a discrepancy between the English text and the translated text, the English text will\ + \ govern.\n\n19.9 Governing Law. ALL CLAIMS ARISING OUT OF OR RELATING TO THESE TERMS OR\ + \ ANY RELATED GOOGLE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING CALIFORNIA'S\ + \ CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS\ + \ OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN\ + \ THOSE COURTS." json: google-maps-tos-2018-02-07.json - yml: google-maps-tos-2018-02-07.yml + yaml: google-maps-tos-2018-02-07.yml html: google-maps-tos-2018-02-07.html - text: google-maps-tos-2018-02-07.LICENSE + license: google-maps-tos-2018-02-07.LICENSE - license_key: google-maps-tos-2018-05-01 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-05-01 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Google Maps Platform Terms of Service\n\nLast modified: May 1, 2018\n\nThis Google\ + \ Maps Platform License Agreement takes effect on June 11, 2018. \n\nIf you are currently\ + \ using the Google Maps Standard Plan, this Google Maps Platform License Agreement will\ + \ govern your use of the Google Maps Platform as of June 11, 2018. The current Google\ + \ Maps Platform Terms of Service, which govern your use of the Google Maps Platform until\ + \ June 11, 2018, is available at https://developers.google.com/maps/terms.\n\nGoogle Maps\ + \ Platform License Agreement\n\nThis Google Maps Platform License Agreement (the \"Agreement\"\ + ) is made and entered into between Google and the entity or person agreeing to these terms\ + \ (\"Customer\"). \"Google\" means either (i) Google Commerce Limited (“GCL”), a company\ + \ incorporated under the laws of Ireland, with offices at Gordon House, Barrow Street, Dublin\ + \ 4, Ireland, if Customer has a billing address in the EU and has chosen “non-business”\ + \ as the tax status/setting for its Google account, (ii) Google Ireland Limited, with offices\ + \ at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer's billing address is in\ + \ any country within Europe, the Middle East, or Africa (\"EMEA\"), (iii) Google Asia Pacific\ + \ Pte. Ltd., with offices at 70 Pasir Panjang Road, #03-71, Mapletree Business City II Singapore\ + \ 117371, if Customer's billing address is in any country within the Asia Pacific region\ + \ (\"APAC\") except as provided below for Customers with the billing address in Japan or\ + \ Australia, (iv) Google Cloud Japan G.K., with offices at Roppongi Hills Mori Tower, 10-1,\ + \ Roppongi 6-chome, Minato-ku Tokyo, if Customer’s billing address is in Japan, (v) Google\ + \ Australia Pty Ltd., with offices at Level 5, 48 Pirrama Road, Pyrmont, NSW 2009 Australia,\ + \ if Customer’s billing address is in Australia, or (vi) Google LLC, with offices at 1600\ + \ Amphitheatre Parkway, Mountain View, California 94043, if Customer's billing address is\ + \ in any country in the world other than those in EMEA and APAC.\n\nThis Agreement is effective\ + \ as of the date Customer clicks to accept the Agreement (the \"Effective Date\"). If you\ + \ are accepting on behalf of Customer, you represent and warrant that: (i) you have full\ + \ legal authority to bind Customer to this Agreement; (ii) you have read and understand\ + \ this Agreement; and (iii) you agree, on behalf of Customer, to this Agreement. If you\ + \ do not have the legal authority to bind Customer, please do not click to accept. This\ + \ Agreement governs Customer's access to and use of the Services.\n\nFor an offline variant\ + \ of this Agreement, you may contact Google for more information.\n1. Provision of the Services.\n\ + \n1.1 Use of the Services in Customer Applications. Google will provide the Services to\ + \ Customer in accordance with the applicable SLA, and Customer may use the Google Maps Core\ + \ Services in Customer Application(s) in accordance with Section 3 (License).\n\n1.2 Admin\ + \ Console; Projects; API Keys. Customer will administer the Services through the online\ + \ Admin Console. To access the Services, Customer must create Project(s) and use its API\ + \ key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer must have an Account\ + \ to use the Services. Customer is responsible for the information it provides in connection\ + \ with the Account, its passwords, and use of its Account.\n\n1.4 New Features and Services.\ + \ Google may: (a) make new features or functionality available through the Services and\ + \ (b) add new services to the \"Services\" definition (by adding them at the URL stated\ + \ under that definition). Customer’s use of new features or functionality may be contingent\ + \ on Customer’s agreement to additional terms applicable to the new feature or functionality.\n\ + \n1.5 Modifications.\n\n1.5.1 To the Services. Google may make changes to the Services,\ + \ subject to Section 9 (Deprecation Policy), which may include adding, updating, or discontinuing\ + \ any Services or portion or feature(s) of the Services. Google will notify Customer of\ + \ any material change to the Services.\n\n1.5.2. To the Agreement. Google may make changes\ + \ to this Agreement, including pricing (and any linked documents). Unless otherwise noted\ + \ by Google, material changes to the Agreement will become effective 30 days after notice\ + \ is given, except if the changes apply to new functionality in which case they will be\ + \ effective immediately. Google will provide at least 90 days advance notice for materially\ + \ adverse changes to any SLAs by: (a) sending an email to Customer’s primary point of contact;\ + \ (b) posting a notice in the Admin Console; or (c) posting a notice to the applicable SLA\ + \ webpage. If Customer does not agree to the revised Agreement, Customer should stop using\ + \ the Services. Google will post any modification to this Agreement to the Terms URL.\n\ + 2. Payment Terms.\n\n2.1 Free Quota. Certain Services are provided to Customer without charge\ + \ up to the Fee Threshold, as applicable.\n\n2.2 Online Billing. At the end of the applicable\ + \ Fee Accrual Period, Google will issue an electronic bill to Customer for all charges accrued\ + \ above the Fee Threshold based on (a) Customer’s use of the Services during the previous\ + \ Fee Accrual Period; (b) any Committed Purchases selected; and (c) any Package Purchases\ + \ selected. For use above the Fee Threshold, Customer will be responsible for all Fees up\ + \ to the amount set in the Account and will pay all Fees in the currency set forth in the\ + \ invoice. If Customer elects to pay by credit card, debit card, or other non-invoiced form\ + \ of payment, Google will charge (and Customer will pay) all Fees immediately at the end\ + \ of the Fee Accrual Period. If Customer elects to pay by invoice (and Google agrees), all\ + \ Fees are due as stated in the invoice. Customer’s obligation to pay all Fees is non-cancellable.\ + \ Google's measurement of Customer’s use of the Services is final. Google has no obligation\ + \ to provide multiple bills. Payments made via wire transfer must include the bank information\ + \ provided by Google. If Customer has entered into the Agreement with GCL, Google may collect\ + \ payments via Google Payment Limited, a company incorporated in England and Wales with\ + \ offices at Belgrave House, 76 Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\ + \n2.3 Taxes.\n\n2.3.1 Customer is responsible for any Taxes, and Customer will pay Google\ + \ for the Services without any reduction for Taxes. If Google is obligated to collect or\ + \ pay Taxes, the Taxes will be invoiced to Customer, unless Customer provides Google with\ + \ a timely and valid tax exemption certificate authorized by the appropriate taxing authority.\ + \ In some states the sales tax is due on the total purchase price at the time of sale and\ + \ must be invoiced and collected at the time of the sale. If Customer is required by law\ + \ to withhold any Taxes from its payments to Google, Customer must provide Google with an\ + \ official tax receipt or other appropriate documentation to support such withholding. If\ + \ under the applicable tax legislation the Services are subject to local VAT and the Customer\ + \ is required to make a withholding of local VAT from amounts payable to Google, the value\ + \ of Services calculated in accordance with the above procedure will be increased (grossed\ + \ up) by the Customer for the respective amount of local VAT and the grossed up amount will\ + \ be regarded as a VAT inclusive price. Local VAT amount withheld from the VAT-inclusive\ + \ price will be remitted to the applicable local tax entity by the Customer and Customer\ + \ will ensure that Google will receives payment for its services for the net amount as would\ + \ otherwise be due (the VAT inclusive price less the local VAT withheld and remitted to\ + \ applicable tax authority).\n\n2.3.2 If required under applicable law, Customer will provide\ + \ Google with applicable tax identification information that Google may require to ensure\ + \ its compliance with applicable tax regulations and authorities in applicable jurisdictions.\ + \ Customer will be liable to pay (or reimburse Google for) any taxes, interest, penalties\ + \ or fines arising out of any mis-declaration by the Customer.\n\n2.4 Invoice Disputes &\ + \ Refunds. Any invoice disputes must be submitted before the payment due date. If the parties\ + \ determine that certain billing inaccuracies are attributable to Google, Google will not\ + \ issue a corrected invoice, but will instead issue a credit memo specifying the incorrect\ + \ amount in the affected invoice. If the disputed invoice has not yet been paid, Google\ + \ will apply the credit memo amount to the disputed invoice and Customer will be responsible\ + \ for paying the resulting net balance due on that invoice. To the fullest extent permitted\ + \ by law, Customer waives all claims relating to Fees unless claimed within 60 days after\ + \ charged (this does not affect any Customer rights with its credit card issuer). Refunds\ + \ (if any) are at the discretion of Google and will only be in the form of credit for the\ + \ Services. Nothing in this Agreement obligates Google to extend credit to any party.\n\n\ + 2.5 Delinquent Payments; Suspension. Late payments may bear interest at the rate of 1.5%\ + \ per month (or the highest rate permitted by law, if less) from the payment due date until\ + \ paid in full. Customer will be responsible for all reasonable expenses (including attorneys’\ + \ fees) incurred by Google in collecting such delinquent amounts. If Customer is late on\ + \ payment for the Services, Google may suspend the Services or terminate the Agreement for\ + \ breach under Section 11.2 (Termination for Breach).\n\n2.6 No Purchase Order Number Required.\ + \ Google is not required to provide a purchase order number on Google’s invoice (or otherwise).\n\ + 3. License.\n\n3.1 License Grant. Subject to this Agreement's terms, during the Term, Google\ + \ grants to Customer a non-exclusive, non-transferable, non-sublicensable, license to use\ + \ the Services in Customer Application(s), which may be: (a) fee-based or non-fee-based;\ + \ (b) public/external or private/internal; (c) business-to-business or business-to-consumer;\ + \ or (d) asset tracking.\n\n3.2 License Requirements and Restrictions. The following are\ + \ conditions of the license granted in Section 3.1. In this Section 3.2, the phrase “Customer\ + \ will not” means “Customer will not, and will not permit a third party to”.\n\n3.2.2 General\ + \ Restrictions. Unless Google specifically agrees in writing, Customer will not: (a) copy,\ + \ modify, create a derivative work of, reverse engineer, decompile, translate, disassemble,\ + \ or otherwise attempt to extract any or all of the source code (except to the extent such\ + \ restriction is expressly prohibited by applicable law); (b) sublicense, transfer, or distribute\ + \ any of the Services; (c) sell, resell, or otherwise make the Services available as a commercial\ + \ offering to a third party; or (d) access or use the Services: (i) for High Risk Activities;\ + \ (ii) in a manner intended to avoid incurring Fees; (iii) for activities that are subject\ + \ to the International Traffic in Arms Regulations (ITAR) maintained by the United States\ + \ Department of State; (iv) on behalf of or for the benefit of any entity or person who\ + \ is legally prohibited from using the Services; or (v) to transmit, store, or process Protected\ + \ Health Information (as defined in and subject to HIPAA).\n\n3.2.3 Requirements for Using\ + \ the Services.\n\n(a) End User Terms and Privacy Policy. Customer’s End User terms of service\ + \ will state that End Users’ use of Google Maps is subject to the then-current Google Maps/Google\ + \ Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html and\ + \ Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n(b) Attribution.\ + \ Customer will display all attribution that (i) Google provides through the Services (including\ + \ branding, logos, and copyright and trademark notices); or (ii) is specified in the Service\ + \ Specific Terms. Customer will not modify, obscure, or delete such attribution.\n\n(c)\ + \ Review of Customer Applications. At Google’s request, Customer will submit Customer Application(s)\ + \ and Project(s) to Google for review to ensure compliance with the Agreement (including\ + \ the AUP).\n\n3.2.4 Restrictions Against Misusing the Services.\n\n(a) No Scraping. Customer\ + \ will not extract, export, or scrape Google Maps Content for use outside the Services.\ + \ For example, Customer will not:(i) pre-fetch, cache, index, or store Google Maps Content\ + \ for more than 30 days; (ii) bulk download geocodes; or (iii) copy business names, addresses,\ + \ or user reviews.\n\n(b) No Creating Content From Google Maps Content. Customer will not\ + \ create content based on Google Maps Content, including tracing, digitizing, or creating\ + \ other datasets based on Google Maps Content.\n\n(c) No Re-Creating Google Products or\ + \ Features. Customer will not use the Services to create a product or service with features\ + \ that are substantially similar to or that re-create the features of another Google product\ + \ or service. Customer’s product or service must contain substantial, independent value\ + \ and features beyond the Google products or services. For example, Customer will not:\ + \ (i) re-distribute the Google Maps Core Services or pass them off as if they were Customer’s\ + \ services; (ii) create a substitute of the Google Maps Core Services, Google Maps, or Google\ + \ Maps mobile apps, or their features; (iii) use the Google Maps Core Services in a listings\ + \ or directory service or to create or augment an advertising product; (iv) combine data\ + \ from the Directions API, Geolocation API, and Maps SDK for Android to create real-time\ + \ navigation functionality substantially similar to the functionality provided by the Google\ + \ Maps for Android mobile app.\n\n(d) No Use With Non-Google Maps. Customer will not use\ + \ the Google Maps Core Services in a Customer Application that contains a non-Google map.\ + \ For example, Customer will not (i) display Places listings on a non-Google map, or (ii)\ + \ display Street View imagery and non-Google maps in the same Customer Application.\n\n\ + (e) No Circumventing Fees. Customer will not circumvent the applicable Fees. For example,\ + \ Customer will not create multiple billing accounts or Projects to avoid incurring Fees;\ + \ prevent Google from accurately calculating Customer’s Service usage levels; abuse any\ + \ free Service quotas; or offer access to the Services under a “time-sharing” or “service\ + \ bureau” model.\n\n(f) No Use in Prohibited Territories. Customer will not distribute or\ + \ market in a Prohibited Territory any Customer Application(s) that use the Google Maps\ + \ Core Services.\n\n(g) No Use in Embedded Vehicle Systems. Customer will not use the Google\ + \ Maps Core Services in connection with any Customer Application or device embedded in a\ + \ vehicle. For example, Customer will not create a Customer Application that (i) is embedded\ + \ in an in-dashboard automotive infotainment system; and (ii) allows End Users to request\ + \ driving directions from the Directions API.\n\n(h) No Modifying Search Results Integrity.\ + \ Customer will not modify any of the Service’s search results.\n\n(i) No Use for High Risk\ + \ Activities. Customer will not use the Google Maps Core Services for High Risk Activities.\n\ + \n3.2.5 Benchmarking. Customer may not publicly disclose directly or through a third party\ + \ the results of any comparative or compatibility testing, benchmarking, or evaluation of\ + \ the Services (each, a “Test”), unless the disclosure includes all information necessary\ + \ for Google or a third party to replicate the Test. If Customer conducts, or directs a\ + \ third party to conduct, a Test of the Services and publicly discloses the results directly\ + \ or through a third party, then Google (or a Google directed third party) may conduct Tests\ + \ of any publicly available cloud products or services provided by Customer and publicly\ + \ disclose the results of any such Test (which disclosure will include all information necessary\ + \ for Customer or a third party to replicate the Test).\n4. Customer Obligations. \n\n4.1\ + \ Customer Domains and Applications. Customer must list in the Admin Console each authorized\ + \ domain and application that uses the Services. Customer is responsible for ensuring that\ + \ only authorized domains and applications use the Services.\n\n4.2 Compliance. Customer\ + \ will: (a) ensure that Customer’s and its End Users’ use of the Services complies with\ + \ the Agreement, including the applicable Services’ AUP and URL Terms; and (b) use commercially\ + \ reasonable efforts to prevent, promptly notify Google of, and terminate any unauthorized\ + \ use of or access to its Account(s) or the Services.\n\n4.3 Documentation. Google may provide\ + \ Documentation for Customer’s use of the Services. The Documentation may specify restrictions\ + \ (e.g. attribution or HTML restrictions) on how the Services may be used and Customer will\ + \ comply with any such restrictions specified.\n\n4.4 Copyright Policy. Google provides\ + \ information to help copyright holders manage their intellectual property online, but Google\ + \ cannot determine whether something is being used legally or not without their input. Google\ + \ responds to notices of alleged copyright infringement and terminates accounts of repeat\ + \ infringers according to applicable copyright laws including in particular the process\ + \ set out in the U.S. Digital Millennium Copyright Act. If Customer thinks somebody is violating\ + \ Customer’s or Customer End Users’ copyrights and wants to notify Google, Customer can\ + \ find information about submitting notices, and Google's policy about responding to notices\ + \ at https://www.google.com/dmca.html.\n\n4.5 Data Use, Protection, and Privacy.\n\n4.5.1\ + \ Data Use and Retention. To provide the Services through the Customer Application(s), Google\ + \ must receive and collect data from End Users and Customer, including search terms, IP\ + \ addresses, and latitude/longitude coordinates. Customer acknowledges and agrees that Google\ + \ and its Affiliates may use and retain this data to provide and improve Google products\ + \ and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\ + \n4.5.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller\ + \ Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\ + \n4.5.3 General Privacy Requirements.\n\n(a) End User Privacy. Customer’s use of the Services\ + \ in the Customer Application will comply with applicable privacy laws, including laws regarding\ + \ Services that store and access Cookies on End Users’ devices. If Customer has End Users\ + \ in the European Economic Area, Customer will comply with the EU End User Consent Policy\ + \ at https://www.google.com/about/company/user-consent-policy.html.\n\n(b) End User Personal\ + \ Data. Through the normal functioning of the Google Maps Core Services, End Users provide\ + \ device identifiers and Personal Data directly to Google, subject to the Google Privacy\ + \ Policy at https://www.google.com/policies/privacy/. However, Customer acknowledges and\ + \ agrees that Customer will not provide these categories of data to Google.\n\n(c) End User\ + \ Location Privacy Requirements. To safeguard End Users’ location privacy, Customer will\ + \ ensure that the Customer Application(s): (i) notify End Users in advance of (y) the type(s)\ + \ of data that Customer intends to collect from the End Users or the End Users’ devices,\ + \ and (z) the combination and use of End User's location with any other data provider's\ + \ data; and (ii) will not obtain or cache any End User's location except with the End User's\ + \ express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions\ + \ Violations. Google may Suspend the Services without prior notice if Customer breaches\ + \ Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Violations or Emergency\ + \ Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP\ + \ Violations) and 5.2.2 (Emergency Security Issues). Any Suspension under those Sections\ + \ will be to the minimum extent and for the shortest duration required to: (a) prevent or\ + \ terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c)\ + \ comply with applicable law.\n\n5.2.1 AUP Violations. If Google becomes aware that Customer’s\ + \ or any End User’s use of the Services violates the AUP, Google will give Customer notice\ + \ of such violation by requesting that Customer correct the violation. If Customer fails\ + \ to correct such violation within 24 hours, or if Google is otherwise required by applicable\ + \ law to take action, then Google may Suspend all or part of Customer’s use of the Services.\n\ + \n5.2.2 Emergency Security Issues. Google may immediately Suspend Customer’s use of the\ + \ Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend\ + \ such use immediately to comply with applicable law. At Customer’s request, unless prohibited\ + \ by applicable law, Google will notify Customer of the basis for the Suspension as soon\ + \ as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights\ + \ Infringement. If the Customer Application is alleged to infringe a third party’s Intellectual\ + \ Property Rights, Google may require Customer to suspend distributing or selling the Customer\ + \ Application on 30 days’ written notice until such allegation is fully resolved. In any\ + \ event, this Section 5.3 does not reduce Customer’s obligations under Section 15 (Indemnification).\n\ + 6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as\ + \ expressly stated in this Agreement, this Agreement does not grant either party any rights,\ + \ implied or otherwise, to the other’s content or any of the other’s intellectual property.\ + \ As between the parties, Customer owns all Intellectual Property Rights in the Customer\ + \ Application, and Google owns all Intellectual Property Rights in the Services and Software.\n\ + \n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google\ + \ may use that information without obligation to Customer, and Customer irrevocably assigns\ + \ to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices\ + \ and License Terms.\n\nCertain components of the Services (including open source software)\ + \ are subject to third-party copyright and other Intellectual Property Rights, as specified\ + \ in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html;\ + \ and (b) separate, publicly-available third-party license terms, which Google will provide\ + \ to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will\ + \ provide the Technical Support Services to Customer in accordance with the Technical Support\ + \ Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical support\ + \ of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n9.1 Google will\ + \ notify Customer at least 12 months before making material discontinuance(s) or backwards\ + \ incompatible change(s) to the Services, unless Google reasonably determines that: (a)\ + \ Google cannot do so by law or by contract (including if there is a change in applicable\ + \ law or contract) or (b) continuing to provide the Services could create a (i) security\ + \ risk or (ii) substantial economic or technical burden.\n\n9.2 Section 9.1 applies to the\ + \ Services listed at https://cloud.google.com/maps-platform/terms/maps-deprecation/. If\ + \ Google deprecates any Services that are not listed at the above URL, Google will use commercially\ + \ reasonable efforts to minimize the adverse impacts of such deprecations.\n10. Confidential\ + \ Information.\n\n10.1 Obligations. The recipient will not disclose the Confidential Information,\ + \ except to Affiliates, employees, agents or professional advisors who need to know it and\ + \ who have agreed in writing (or in the case of professional advisors are otherwise bound)\ + \ to keep it confidential. Subject to Section 10.2 (Required Disclosure), the recipient\ + \ will ensure that those people and entities use the received Confidential Information only\ + \ to exercise rights and fulfill obligations under this Agreement, while using reasonable\ + \ care to keep it confidential.\n\n10.2 Required Disclosure. The recipient may disclose\ + \ the other party’s Confidential Information to the extent required by applicable Legal\ + \ Process; provided that the recipient uses commercially reasonable efforts to: (a) promptly\ + \ notify the other party of such disclosure before disclosing; and (b) comply with the other\ + \ party’s reasonable requests regarding its efforts to oppose the disclosure. Notwithstanding\ + \ the foregoing, subsections (a) and (b) above will not apply if the recipient determines\ + \ that complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii)\ + \ obstruct a governmental investigation; and/or (iii) lead to death or serious physical\ + \ harm to an individual. As between the parties, Customer is responsible for responding\ + \ to all third party requests concerning its use and Customer End Users’ use of the Services.\n\ + 11. Term and Termination.\n\n11.1 Agreement Term. The “Term” of this Agreement will begin\ + \ on the Effective Date and continue until the Agreement is terminated under this Section.\n\ + \n11.2 Termination for Breach. Either party may terminate this Agreement for breach if:\ + \ (a) the other party is in material breach of the Agreement and fails to cure that breach\ + \ within 30 days after receipt of written notice; or (b) the other party ceases its business\ + \ operations or becomes subject to insolvency proceedings and the proceedings are not dismissed\ + \ within 90 days. In addition, Google may terminate any, all, or any portion of the Services\ + \ or Projects, if Customer meets any of the conditions in subsections (a) or (b).\n\n11.3\ + \ Termination for Inactivity. Google reserves the right to terminate provision of Service(s)\ + \ to a Project on 30 days advance notice if, for more than 180 days, such Project (a) has\ + \ not made any requests to the Services from any Customer Applications; or (b) such Project\ + \ has not incurred any Fees for such Service(s).\n\n11.4 Termination for Convenience. Customer\ + \ may stop using the Services at any time. Subject to any financial commitments expressly\ + \ made by this Agreement, Customer may terminate this Agreement for its convenience at any\ + \ time on prior written notice and upon termination, must cease use of the applicable Services.\ + \ Google may terminate this Agreement for its convenience at any time without liability\ + \ to Customer.\n\n11.5 Effects of Termination. \n\n11.5.1 If the Agreement is terminated,\ + \ then: (a) the rights granted by one party to the other will immediately cease; (b) all\ + \ Fees owed by Customer to Google are immediately due upon receipt of the final electronic\ + \ bill; and (c) Customer will delete the Software and any content from the Services by the\ + \ termination effective date.\n\n11.5.2 The following will survive expiration or termination\ + \ of the Agreement: Section 2 (Payment Terms), Section 3.2 (License Requirements and Restrictions),\ + \ Section 4.5 (Data Use, Protection, and Privacy), Section 6 (Intellectual Property; Feedback),\ + \ Section 10 (Confidential Information), Section 11.5 (Effects of Termination), Section\ + \ 14 (Disclaimer), Section 15 (Indemnification), Section 16 (Limitation of Liability), Section\ + \ 19 (Miscellaneous), and Section 20 (Definitions).\n12. Publicity.\n\nCustomer may state\ + \ publicly that it is a customer of the Services, consistent with the Trademark Guidelines.\ + \ If Customer wants to display Google Brand Features in connection with its use of the Services,\ + \ Customer must obtain written permission from Google through the process specified in the\ + \ Trademark Guidelines. Google may include Customer’s name or Brand Features in a list of\ + \ Google customers, online or in promotional materials. Google may also verbally reference\ + \ Customer as a customer of the Services. Neither party needs approval if it is repeating\ + \ a public statement that is substantially similar to a previously-approved public statement.\ + \ Any use of a party’s Brand Features will inure to the benefit of the party holding Intellectual\ + \ Property Rights to those Brand Features. A party may revoke the other party’s right to\ + \ use its Brand Features under this Section with written notice to the other party and a\ + \ reasonable period to stop the use. Where applicable, Customer may use Google Maps Content\ + \ in accordance with the “Using Google Maps, Google Earth and Street View” permissions page\ + \ at https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy, which will\ + \ be considered “Google’s prior written consent” for the permitted uses.\n13. Representations\ + \ and Warranties.\n\nEach party represents and warrants that: (a) it has full power and\ + \ authority to enter into the Agreement; and (b) it will comply with Export Control Laws\ + \ and Anti-Bribery Laws applicable to its provision, receipt, or use, of the Services, as\ + \ applicable.\n14. Disclaimer.\n\n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO\ + \ THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES\ + \ OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF\ + \ MERCHANTABILITY, FITNESS FOR A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED\ + \ USE OF THE SERVICES OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION\ + \ ACCESSIBLE THROUGH THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES\ + \ EXPRESSLY STATED IN THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES\ + \ ARE PROVIDED FOR PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES\ + \ MAY DIFFER FROM ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION.\ + \ CUSTOMER MUST EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT THE\ + \ CUSTOMER APPLICATION IS SAFE AND SUITABLE FOR USE WITH GOOGLE MAPS.\n15. Indemnification.\n\ + \n15.1 By Customer. Unless prohibited by applicable law, Customer will defend Google and\ + \ its Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal\ + \ Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer’s\ + \ or an End User’s use of the Services in violation of the Agreement.\n\n15.2 By Google.\ + \ Google will defend Customer and its Affiliates participating under the Agreement (“Customer\ + \ Indemnified Parties”), and indemnify them against Indemnified Liabilities in any Third-Party\ + \ Legal Proceeding to the extent arising from an allegation that Customer Indemnified Parties'\ + \ use in accordance with the Agreement of Google Indemnified Materials infringes the third\ + \ party's Intellectual Property Rights.\n\n15.3 Exclusions. This Section 15 will not apply\ + \ to the extent the underlying allegation arises from (a) the indemnified party’s breach\ + \ of the Agreement or (b) a combination of the indemnifying party’s technology or Brand\ + \ Features with materials not provided by the indemnifying party, unless the combination\ + \ is required by the Agreement.\n\n15.4 Conditions. Sections 15.1 and 15.2 will apply only\ + \ to the extent:\n\n(a) The indemnified party has promptly notified the indemnifying party\ + \ in writing of any Allegation(s) that preceded the Third-Party Legal Proceeding and cooperates\ + \ reasonably with the indemnifying party to resolve the Allegation(s) and Third-Party Legal\ + \ Proceeding. If breach of this Section 15.4(a) prejudices the defense of the Third-Party\ + \ Legal Proceeding, the indemnifying party’s obligations under Section 15.1 or 15.2 (as\ + \ applicable) will be reduced in proportion to the prejudice.\n\n(b) The indemnified party\ + \ tenders sole control of the indemnified portion of the Third-Party Legal Proceeding to\ + \ the indemnifying party, subject to the following: (i) the indemnified party may appoint\ + \ its own non-controlling counsel, at its own expense; and (ii) any settlement requiring\ + \ the indemnified party to admit liability, pay money, or take (or refrain from taking)\ + \ any action, will require the indemnified party’s prior written consent, not to be unreasonably\ + \ withheld, conditioned, or delayed.\n\n15.5 Remedies.\n\n(a) If Google reasonably believes\ + \ the Services might infringe a third party’s Intellectual Property Rights, then Google\ + \ may, at its sole option and expense: (i) procure the right for Customer to continue using\ + \ the Services; (ii) modify the Services to make them non-infringing without materially\ + \ reducing their functionality; or (iii) replace the Services with a non-infringing, functionally\ + \ equivalent alternative.\n\n(b) If Google does not believe the remedies in Section 15.5(a)\ + \ are commercially reasonable, then Google may suspend or terminate Customer’s use of the\ + \ impacted Services.\n\n15.6 Sole Rights and Obligations. Without affecting either party’s\ + \ termination rights, this Section 15 states the parties’ sole and exclusive remedy under\ + \ this Agreement for any third party's Intellectual Property Rights Allegations and Third-Party\ + \ Legal Proceedings covered by this Section 15 (Indemnification).\n16. Limitation of Liability.\n\ + \n16.1 Limitation on Indirect Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW,\ + \ THE PARTIES AND GOOGLE’S LICENSORS, WILL NOT BE LIABLE UNDER THIS AGREEMENT FOR LOST REVENUES\ + \ OR PROFITS (WHETHER DIRECT OR INDIRECT), INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL,\ + \ EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE PARTY OR LICENSOR, AS APPLICABLE, KNEW OR\ + \ SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY\ + \ A REMEDY.\n\n16.2 Limitation on Amount of Liability. TO THE MAXIMUM EXTENT PERMITTED BY\ + \ APPLICABLE LAW, THE PARTIES AND GOOGLE’S LICENSORS, MAY NOT BE HELD LIABLE UNDER THIS\ + \ AGREEMENT FOR MORE THAN THE AMOUNT PAID BY CUSTOMER TO GOOGLE UNDER THIS AGREEMENT DURING\ + \ THE TWELVE MONTHS BEFORE THE EVENT GIVING RISE TO LIABILITY.\n\n16.3 Exceptions to Limitations.\ + \ These limitations of liability do not apply to breaches of confidentiality obligations,\ + \ violations of a party’s Intellectual Property Rights by the other party, or Customer's\ + \ payment obligations.\n17. Advertising.\n\n Customer may configure the Service in its sole\ + \ discretion to either display or not display advertisements served by Google. \n\ + 18. U.S. Federal Agency Users.\n\nThe Services were developed solely at private expense\ + \ and are commercial computer software and related documentation within the meaning of the\ + \ applicable Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\ + \n19.1 Notices. All notices must be in writing and addressed to the other party’s legal\ + \ department and primary point of contact. The email address for notices being sent to Google’s\ + \ Legal Department is legal-notices@google.com. Notice will be treated as given on receipt\ + \ as verified by written or automated receipt or by electronic log (as applicable).\n\n\ + 19.2 Assignment. Neither party may assign any part of this Agreement without the written\ + \ consent of the other, except to an Affiliate where: (a) the assignee has agreed in writing\ + \ to be bound by the terms of this Agreement; (b) the assigning party remains liable for\ + \ obligations under the Agreement if the assignee defaults on them; and (c) the assigning\ + \ party has notified the other party of the assignment. Any other attempt to assign is void.\n\ + \n19.3 Change of Control. If a party experiences a change of Control (for example, through\ + \ a stock purchase or sale, merger, or other form of corporate transaction): (a) that party\ + \ will give written notice to the other party within 30 days after the change of Control;\ + \ and (b) the other party may immediately terminate this Agreement any time between the\ + \ change of Control and 30 days after it receives that written notice.\n\n19.4 Force Majeure.\ + \ Neither party will be liable for failure or delay in performance to the extent caused\ + \ by circumstances beyond its reasonable control, including acts of God, natural disasters,\ + \ terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations under\ + \ the Agreement but will remain liable to Customer for any subcontracted obligations.\n\n\ + 19.6 No Agency. This Agreement does not create any agency, partnership or joint venture\ + \ between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived\ + \ any rights by not exercising (or delaying the exercise of) any rights under this Agreement.\n\ + \n19.8 Severability. If any term (or part of a term) of this Agreement is invalid, illegal,\ + \ or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party\ + \ Beneficiaries. This Agreement does not confer any benefits on any third party unless it\ + \ expressly states that it does.\n\n19.10 Equitable Relief. Nothing in this Agreement will\ + \ limit either party’s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n19.11.1\ + \ For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county\ + \ or state government entity, then the Agreement will be silent regarding governing law\ + \ and venue.\n\n19.11.2 For U.S. Federal Government Entities. If Customer is a U.S. federal\ + \ government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO\ + \ THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA,\ + \ EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I)\ + \ THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA’S CONFLICT OF LAWS RULES) WILL\ + \ APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF\ + \ OR RELATING TO THIS AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION\ + \ IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n19.11.3\ + \ For All Other Entities. If Customer is any entity not listed in Section 19.11.1 or 19.11.2\ + \ then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR\ + \ THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE’S CONFLICT OF LAWS\ + \ RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA\ + \ COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\ + \n19.12 Amendments. Except as stated in Section 1.5.2 (Modifications; To the Agreement),\ + \ any amendment must be in writing, signed by both parties, and expressly state that it\ + \ is amending this Agreement.\n\n19.13 Entire Agreement. This Agreement sets out all terms\ + \ agreed between the parties and supersedes all other agreements between the parties relating\ + \ to its subject matter. In entering into this Agreement, neither party has relied on, and\ + \ neither party will have any right or remedy based on, any statement, representation or\ + \ warranty (whether made negligently or innocently), except those expressly stated in this\ + \ Agreement. The terms located at any URL referenced in this Agreement and the Documentation\ + \ are incorporated by reference into the Agreement. After the Effective Date, Google may\ + \ provide an updated URL in place of any URL in this Agreement.\n\n19.14 Conflicting Terms.\ + \ If there is a conflict between the documents that make up this Agreement, the documents\ + \ will control in the following order: the Agreement, and the terms at any URL. \n\n19.15\ + \ Conflicting Translations. If this Agreement is translated into any other language, and\ + \ there is a discrepancy between the English text and the translated text, the English text\ + \ will govern.\n20. Definitions.\n\n\"Account\" means Customer’s Google Account.\n\n\"Admin\ + \ Console\" means the online console(s) and tool(s) provided by Google to Customer for administering\ + \ the Services.\n\n\"Affiliate\" means any entity that directly or indirectly Controls,\ + \ is Controlled by, or is under common Control with a party.\n\n\"Allegation\" means an\ + \ unaffiliated third party’s allegation.\n\n“Anti-Bribery Laws” means all applicable commercial\ + \ and public anti-bribery laws, (for example, the U.S. Foreign Corrupt Practices Act of\ + \ 1977 and the UK Bribery Act 2010), which prohibit corrupt offers of anything of value,\ + \ either directly or indirectly, to anyone, including government officials, to obtain or\ + \ keep business or to secure any other improper commercial advantage. “Government officials”\ + \ include any government employee; candidate for public office; and employee of government-owned\ + \ or government-controlled companies, public international organizations, and political\ + \ parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the then-current Acceptable Use\ + \ Policy for the Services at: https://cloud.google.com/maps-platform/terms/aup/.\n\n\"\ + Brand Features\" means the trade names, tradmarks, service marks, logos, domain names, and\ + \ other distinctive brand features of each party, respectively, as secured by such party.\n\ + \n\"Committed Purchase(s)\" has the meaning provided in the Service Specific Terms.\n\n\"\ + Confidential Information\" means information that one party (or an Affiliate) discloses\ + \ to the other party under this Agreement, and which is marked as confidential or would\ + \ normally under the circumstances be considered confidential information. It does not include\ + \ information that is independently developed by the recipient, is rightfully given to the\ + \ recipient by a third party without confidentiality obligations, or becomes public through\ + \ no fault of the recipient.\n\n\"Control\" means control of greater than fifty percent\ + \ of the voting rights or equity interests of a party.\n\n\"Customer Application\" means\ + \ any web domain or application (including features) listed in the Admin Console.\n\n\"\ + Customer End User\" or \"End User\" means an individual or entity that Customer permits\ + \ to use the Services or Customer Application(s).\n\n“Customer Indemnified Materials” means\ + \ the Customer Application and Customer Brand Features.\n\n\"Documentation\" means the Google\ + \ documentation (as may be updated) in the form generally made available by Google for use\ + \ with the Services at https://developers.google.com/maps/.\n\n\"Emergency Security Issue\"\ + \ means either: (a) Customer’s or Customer End Users’ use of the Services in violation of\ + \ the AUP, which could disrupt: (i) the Services; (ii) other customers’ or their customer\ + \ end users’ use of the Services; or (iii) the Google network or servers used to provide\ + \ the Services; or (b) unauthorized third party access to the Services.\n\n\"Europe\" or\ + \ \"European\" means European Economic Area or Switzerland.\n\n“Export Control Laws” means\ + \ all applicable export and re-export control laws and regulations, including any applicable\ + \ munitions- or defense-related regulations (for example, the International Traffic in Arms\ + \ Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual Period\" means\ + \ a calendar month or another period specified by Google in the Admin Console.\n\n\"Fee\ + \ Threshold\" means the threshold (as may be updated), as applicable for certain Services,\ + \ as set out in the Admin Console.\n\n“Feedback” means feedback or suggestions about the\ + \ Services provided to Google by Customer.\n\n\"Fees\" means the applicable fees for each\ + \ Service and any applicable Taxes. The Fees for each Service are available at https://cloud.google.com/maps-platform/pricing/sheet/\ + \ (or other such URL provided by Google).\n\n\"Google Indemnified Materials\" means Google's\ + \ technology used to provide the Services (excluding any open source software) and Google's\ + \ Brand Features.\n\n\"Google Maps Content\" means any content provided through the Services\ + \ (whether created by Google or its third-party licensors), including map and terrain data,\ + \ imagery, traffic data, and places data (including business listings).\n\n\"High Risk Activities\"\ + \ means activities where the use or failure of the Services could lead to death, personal\ + \ injury, or environmental damage, including (a) emergency response services; (b) autonomous\ + \ and semi-autonomous vehicle or drone control; (c) vessel navigation; (d) aviation; (e)\ + \ air traffic control; (f) nuclear facilities operation; (g) precision targeting.\n\n\"\ + HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it may\ + \ be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means\ + \ any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs\ + \ finally awarded against the indemnified party and its Affiliates by a court of competent\ + \ jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual\ + \ Property Rights\" means current and future worldwide rights under patent, copyright, trade\ + \ secret, trademark, and moral rights laws, and other similar rights.\n\n\"Legal Process\"\ + \ means a data disclosure request made under law, governmental regulation, court order,\ + \ subpoena, warrant, governmental regulatory or agency request, or other valid legal authority,\ + \ legal procedure, or similar process.\n\n\"Package Purchase\" has the meaning set out in\ + \ the Service Specific Terms.\n\n\"Personal Data\" has the meaning provided in the General\ + \ Data Protection Regulation (EU) 2016/679 of the European Parliament and of the Council\ + \ of April 27, 2016.\n\n\"Prohibited Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\ + \n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources\ + \ for a particular Customer Application.\n\n\"Services\" and \"Google Maps Core Services\"\ + \ means the services described at https://cloud.google.com/maps-platform/terms/maps-services/.\ + \ The Services include the Google Maps Content.\n\n\"Service Specific Terms\" means the\ + \ terms specific to one or more Services set forth here: https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\ + \n\"SLA\" or \"Service Level Agreement\" means each of the then-current service level agreements\ + \ at: https://cloud.google.com/maps-platform/terms/sla/.\n\n\"Software\" means any downloadable\ + \ tools, software development kits or other such proprietary computer software provided\ + \ by Google in connection with the Services, which may be downloaded by Customer, and any\ + \ updates Google may make to such Software.\n\n\"Taxes\" means any duties, customs fees,\ + \ or taxes (other than Google’s income tax) associated with the purchase of the Services,\ + \ including any related penalties or interest.\n\n“Technical Support Services” or \"TSS\"\ + \ means the technical support service provided by Google to Customer under the Technical\ + \ Support Services Guidelines.\n\n“Technical Support Services Guidelines” or \"TSS Guidelines\"\ + \ means the then-current technical support service guidelines at https://cloud.google.com/maps-platform/terms/tssg/.\n\ + \n\"Term\" has the meaning stated in Section 1.6 of this Agreement.\n\n“Terms URL” means\ + \ the following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"\ + Third-Party Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated\ + \ third party before a court or government tribunal (including any appellate proceeding).\n\ + \n\"Trademark Guidelines\" means (a) Google’s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html;\ + \ and (b) the “Use of Trademarks” section of the “Using Google Maps, Google Earth and Street\ + \ View” permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark\ + \ policy.\n\n“URL Terms” means the following, which will control in the following order\ + \ if there is a conflict:\n\n(a) the AUP;\n\n(b) the Google Maps/Google Earth Legal Notices\ + \ at https://www.google.com/help/legalnotices_maps.html;\n\n(c) the Google Maps/Google Earth\ + \ Additional Terms of Service at https://maps.google.com/help/terms_maps.html;\n\n(d) the\ + \ Service Specific Terms; \n\n(e) the SLA; and\n\n(f) the Technical Support Services Guidelines." json: google-maps-tos-2018-05-01.json - yml: google-maps-tos-2018-05-01.yml + yaml: google-maps-tos-2018-05-01.yml html: google-maps-tos-2018-05-01.html - text: google-maps-tos-2018-05-01.LICENSE + license: google-maps-tos-2018-05-01.LICENSE - license_key: google-maps-tos-2018-06-07 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-06-07 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Google Maps Platform Terms of Service\n\nLast modified: June 7, 2018\n\nGoogle Maps\ + \ Platform License Agreement\n\nThis Google Maps Platform License Agreement (the \"Agreement\"\ + ) is made and entered into between Google and the entity or person agreeing to these terms\ + \ (\"Customer\"). \"Google\" means either (i) Google Commerce Limited (“GCL”), a company\ + \ incorporated under the laws of Ireland, with offices at Gordon House, Barrow Street, Dublin\ + \ 4, Ireland, if Customer has a billing address in the EU and has chosen “non-business”\ + \ as the tax status/setting for its Google account, (ii) Google Ireland Limited, with offices\ + \ at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer's billing address is in\ + \ any country within Europe, the Middle East, or Africa (\"EMEA\"), (iii) Google Asia Pacific\ + \ Pte. Ltd., with offices at 70 Pasir Panjang Road, #03-71, Mapletree Business City II Singapore\ + \ 117371, if Customer's billing address is in any country within the Asia Pacific region\ + \ (\"APAC\") except as provided below for Customers with the billing address in Japan or\ + \ Australia, (iv) Google Cloud Japan G.K., with offices at Roppongi Hills Mori Tower, 10-1,\ + \ Roppongi 6-chome, Minato-ku Tokyo, if Customer’s billing address is in Japan, (v) Google\ + \ Australia Pty Ltd., with offices at Level 5, 48 Pirrama Road, Pyrmont, NSW 2009 Australia,\ + \ if Customer’s billing address is in Australia, or (vi) Google LLC, with offices at 1600\ + \ Amphitheatre Parkway, Mountain View, California 94043, if Customer's billing address is\ + \ in any country in the world other than those in EMEA and APAC.\n\nThis Agreement is effective\ + \ as of the date Customer clicks to accept the Agreement (the \"Effective Date\"). If you\ + \ are accepting on behalf of Customer, you represent and warrant that: (i) you have full\ + \ legal authority to bind Customer to this Agreement; (ii) you have read and understand\ + \ this Agreement; and (iii) you agree, on behalf of Customer, to this Agreement. If you\ + \ do not have the legal authority to bind Customer, please do not click to accept. This\ + \ Agreement governs Customer's access to and use of the Services.\n\nFor an offline variant\ + \ of this Agreement, you may contact Google for more information.\n1. Provision of the Services.\n\ + \n1.1 Use of the Services in Customer Applications. Google will provide the Services to\ + \ Customer in accordance with the applicable SLA, and Customer may use the Google Maps Core\ + \ Services in Customer Application(s) in accordance with Section 3 (License).\n\n1.2 Admin\ + \ Console; Projects; API Keys. Customer will administer the Services through the online\ + \ Admin Console. To access the Services, Customer must create Project(s) and use its API\ + \ key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer must have an Account\ + \ to use the Services. Customer is responsible for the information it provides in connection\ + \ with the Account, its passwords, and use of its Account.\n\n1.4 New Features and Services.\ + \ Google may: (a) make new features or functionality available through the Services and\ + \ (b) add new services to the \"Services\" definition (by adding them at the URL stated\ + \ under that definition). Customer’s use of new features or functionality may be contingent\ + \ on Customer’s agreement to additional terms applicable to the new feature or functionality.\n\ + \n1.5 Modifications.\n\n1.5.1 To the Services. Google may make changes to the Services,\ + \ subject to Section 9 (Deprecation Policy), which may include adding, updating, or discontinuing\ + \ any Services or portion or feature(s) of the Services. Google will notify Customer of\ + \ any material change to the Services.\n\n1.5.2. To the Agreement. Google may make changes\ + \ to this Agreement, including pricing (and any linked documents). Unless otherwise noted\ + \ by Google, material changes to the Agreement will become effective 30 days after notice\ + \ is given, except if the changes apply to new functionality in which case they will be\ + \ effective immediately. Google will provide at least 90 days advance notice for materially\ + \ adverse changes to any SLAs by: (a) sending an email to Customer’s primary point of contact;\ + \ (b) posting a notice in the Admin Console; or (c) posting a notice to the applicable SLA\ + \ webpage. If Customer does not agree to the revised Agreement, Customer should stop using\ + \ the Services. Google will post any modification to this Agreement to the Terms URL.\n\ + 2. Payment Terms.\n\n2.1 Free Quota. Certain Services are provided to Customer without charge\ + \ up to the Fee Threshold, as applicable.\n\n2.2 Online Billing. At the end of the applicable\ + \ Fee Accrual Period, Google will issue an electronic bill to Customer for all charges accrued\ + \ above the Fee Threshold based on (a) Customer’s use of the Services during the previous\ + \ Fee Accrual Period; (b) any Committed Purchases selected; and (c) any Package Purchases\ + \ selected. For use above the Fee Threshold, Customer will be responsible for all Fees up\ + \ to the amount set in the Account and will pay all Fees in the currency set forth in the\ + \ invoice. If Customer elects to pay by credit card, debit card, or other non-invoiced form\ + \ of payment, Google will charge (and Customer will pay) all Fees immediately at the end\ + \ of the Fee Accrual Period. If Customer elects to pay by invoice (and Google agrees), all\ + \ Fees are due as stated in the invoice. Customer’s obligation to pay all Fees is non-cancellable.\ + \ Google's measurement of Customer’s use of the Services is final. Google has no obligation\ + \ to provide multiple bills. Payments made via wire transfer must include the bank information\ + \ provided by Google. If Customer has entered into the Agreement with GCL, Google may collect\ + \ payments via Google Payment Limited, a company incorporated in England and Wales with\ + \ offices at Belgrave House, 76 Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\ + \n2.3 Taxes.\n\n2.3.1 Customer is responsible for any Taxes, and Customer will pay Google\ + \ for the Services without any reduction for Taxes. If Google is obligated to collect or\ + \ pay Taxes, the Taxes will be invoiced to Customer, unless Customer provides Google with\ + \ a timely and valid tax exemption certificate authorized by the appropriate taxing authority.\ + \ In some states the sales tax is due on the total purchase price at the time of sale and\ + \ must be invoiced and collected at the time of the sale. If Customer is required by law\ + \ to withhold any Taxes from its payments to Google, Customer must provide Google with an\ + \ official tax receipt or other appropriate documentation to support such withholding. If\ + \ under the applicable tax legislation the Services are subject to local VAT and the Customer\ + \ is required to make a withholding of local VAT from amounts payable to Google, the value\ + \ of Services calculated in accordance with the above procedure will be increased (grossed\ + \ up) by the Customer for the respective amount of local VAT and the grossed up amount will\ + \ be regarded as a VAT inclusive price. Local VAT amount withheld from the VAT-inclusive\ + \ price will be remitted to the applicable local tax entity by the Customer and Customer\ + \ will ensure that Google will receives payment for its services for the net amount as would\ + \ otherwise be due (the VAT inclusive price less the local VAT withheld and remitted to\ + \ applicable tax authority).\n\n2.3.2 If required under applicable law, Customer will provide\ + \ Google with applicable tax identification information that Google may require to ensure\ + \ its compliance with applicable tax regulations and authorities in applicable jurisdictions.\ + \ Customer will be liable to pay (or reimburse Google for) any taxes, interest, penalties\ + \ or fines arising out of any mis-declaration by the Customer.\n\n2.4 Invoice Disputes &\ + \ Refunds. Any invoice disputes must be submitted before the payment due date. If the parties\ + \ determine that certain billing inaccuracies are attributable to Google, Google will not\ + \ issue a corrected invoice, but will instead issue a credit memo specifying the incorrect\ + \ amount in the affected invoice. If the disputed invoice has not yet been paid, Google\ + \ will apply the credit memo amount to the disputed invoice and Customer will be responsible\ + \ for paying the resulting net balance due on that invoice. To the fullest extent permitted\ + \ by law, Customer waives all claims relating to Fees unless claimed within 60 days after\ + \ charged (this does not affect any Customer rights with its credit card issuer). Refunds\ + \ (if any) are at the discretion of Google and will only be in the form of credit for the\ + \ Services. Nothing in this Agreement obligates Google to extend credit to any party.\n\n\ + 2.5 Delinquent Payments; Suspension. Late payments may bear interest at the rate of 1.5%\ + \ per month (or the highest rate permitted by law, if less) from the payment due date until\ + \ paid in full. Customer will be responsible for all reasonable expenses (including attorneys’\ + \ fees) incurred by Google in collecting such delinquent amounts. If Customer is late on\ + \ payment for the Services, Google may suspend the Services or terminate the Agreement for\ + \ breach under Section 11.2 (Termination for Breach).\n\n2.6 No Purchase Order Number Required.\ + \ Google is not required to provide a purchase order number on Google’s invoice (or otherwise).\n\ + 3. License.\n\n3.1 License Grant. Subject to this Agreement's terms, during the Term, Google\ + \ grants to Customer a non-exclusive, non-transferable, non-sublicensable, license to use\ + \ the Services in Customer Application(s), which may be: (a) fee-based or non-fee-based;\ + \ (b) public/external or private/internal; (c) business-to-business or business-to-consumer;\ + \ or (d) asset tracking.\n\n3.2 License Requirements and Restrictions. The following are\ + \ conditions of the license granted in Section 3.1. In this Section 3.2, the phrase “Customer\ + \ will not” means “Customer will not, and will not permit a third party to”.\n\n3.2.2 General\ + \ Restrictions. Unless Google specifically agrees in writing, Customer will not: (a) copy,\ + \ modify, create a derivative work of, reverse engineer, decompile, translate, disassemble,\ + \ or otherwise attempt to extract any or all of the source code (except to the extent such\ + \ restriction is expressly prohibited by applicable law); (b) sublicense, transfer, or distribute\ + \ any of the Services; (c) sell, resell, or otherwise make the Services available as a commercial\ + \ offering to a third party; or (d) access or use the Services: (i) for High Risk Activities;\ + \ (ii) in a manner intended to avoid incurring Fees; (iii) for activities that are subject\ + \ to the International Traffic in Arms Regulations (ITAR) maintained by the United States\ + \ Department of State; (iv) on behalf of or for the benefit of any entity or person who\ + \ is legally prohibited from using the Services; or (v) to transmit, store, or process Protected\ + \ Health Information (as defined in and subject to HIPAA).\n\n3.2.3 Requirements for Using\ + \ the Services.\n\n(a) End User Terms and Privacy Policy. Customer’s End User terms of service\ + \ will state that End Users’ use of Google Maps is subject to the then-current Google Maps/Google\ + \ Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html and\ + \ Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n(b) Attribution.\ + \ Customer will display all attribution that (i) Google provides through the Services (including\ + \ branding, logos, and copyright and trademark notices); or (ii) is specified in the Service\ + \ Specific Terms. Customer will not modify, obscure, or delete such attribution.\n\n(c)\ + \ Review of Customer Applications. At Google’s request, Customer will submit Customer Application(s)\ + \ and Project(s) to Google for review to ensure compliance with the Agreement (including\ + \ the AUP).\n\n3.2.4 Restrictions Against Misusing the Services.\n\n(a) No Scraping. Customer\ + \ will not extract, export, or scrape Google Maps Content for use outside the Services.\ + \ For example, Customer will not:(i) pre-fetch, cache, index, or store Google Maps Content\ + \ for more than 30 days; (ii) bulk download geocodes; or (iii) copy business names, addresses,\ + \ or user reviews.\n\n(b) No Creating Content From Google Maps Content. Customer will not\ + \ create content based on Google Maps Content, including tracing, digitizing, or creating\ + \ other datasets based on Google Maps Content.\n\n(c) No Re-Creating Google Products or\ + \ Features. Customer will not use the Services to create a product or service with features\ + \ that are substantially similar to or that re-create the features of another Google product\ + \ or service. Customer’s product or service must contain substantial, independent value\ + \ and features beyond the Google products or services. For example, Customer will not:\ + \ (i) re-distribute the Google Maps Core Services or pass them off as if they were Customer’s\ + \ services; (ii) create a substitute of the Google Maps Core Services, Google Maps, or Google\ + \ Maps mobile apps, or their features; (iii) use the Google Maps Core Services in a listings\ + \ or directory service or to create or augment an advertising product; (iv) combine data\ + \ from the Directions API, Geolocation API, and Maps SDK for Android to create real-time\ + \ navigation functionality substantially similar to the functionality provided by the Google\ + \ Maps for Android mobile app.\n\n(d) No Use With Non-Google Maps. Customer will not use\ + \ the Google Maps Core Services in a Customer Application that contains a non-Google map.\ + \ For example, Customer will not (i) display Places listings on a non-Google map, or (ii)\ + \ display Street View imagery and non-Google maps in the same Customer Application.\n\n\ + (e) No Circumventing Fees. Customer will not circumvent the applicable Fees. For example,\ + \ Customer will not create multiple billing accounts or Projects to avoid incurring Fees;\ + \ prevent Google from accurately calculating Customer’s Service usage levels; abuse any\ + \ free Service quotas; or offer access to the Services under a “time-sharing” or “service\ + \ bureau” model.\n\n(f) No Use in Prohibited Territories. Customer will not distribute or\ + \ market in a Prohibited Territory any Customer Application(s) that use the Google Maps\ + \ Core Services.\n\n(g) No Use in Embedded Vehicle Systems. Customer will not use the Google\ + \ Maps Core Services in connection with any Customer Application or device embedded in a\ + \ vehicle. For example, Customer will not create a Customer Application that (i) is embedded\ + \ in an in-dashboard automotive infotainment system; and (ii) allows End Users to request\ + \ driving directions from the Directions API.\n\n(h) No Modifying Search Results Integrity.\ + \ Customer will not modify any of the Service’s search results.\n\n(i) No Use for High Risk\ + \ Activities. Customer will not use the Google Maps Core Services for High Risk Activities.\n\ + \n3.2.5 Benchmarking. Customer may not publicly disclose directly or through a third party\ + \ the results of any comparative or compatibility testing, benchmarking, or evaluation of\ + \ the Services (each, a “Test”), unless the disclosure includes all information necessary\ + \ for Google or a third party to replicate the Test. If Customer conducts, or directs a\ + \ third party to conduct, a Test of the Services and publicly discloses the results directly\ + \ or through a third party, then Google (or a Google directed third party) may conduct Tests\ + \ of any publicly available cloud products or services provided by Customer and publicly\ + \ disclose the results of any such Test (which disclosure will include all information necessary\ + \ for Customer or a third party to replicate the Test).\n4. Customer Obligations. \n\n4.1\ + \ Customer Domains and Applications. Customer must list in the Admin Console each authorized\ + \ domain and application that uses the Services. Customer is responsible for ensuring that\ + \ only authorized domains and applications use the Services.\n\n4.2 Compliance. Customer\ + \ will: (a) ensure that Customer’s and its End Users’ use of the Services complies with\ + \ the Agreement, including the applicable Services’ AUP and URL Terms; and (b) use commercially\ + \ reasonable efforts to prevent, promptly notify Google of, and terminate any unauthorized\ + \ use of or access to its Account(s) or the Services.\n\n4.3 Documentation. Google may provide\ + \ Documentation for Customer’s use of the Services. The Documentation may specify restrictions\ + \ (e.g. attribution or HTML restrictions) on how the Services may be used and Customer will\ + \ comply with any such restrictions specified.\n\n4.4 Copyright Policy. Google provides\ + \ information to help copyright holders manage their intellectual property online, but Google\ + \ cannot determine whether something is being used legally or not without their input. Google\ + \ responds to notices of alleged copyright infringement and terminates accounts of repeat\ + \ infringers according to applicable copyright laws including in particular the process\ + \ set out in the U.S. Digital Millennium Copyright Act. If Customer thinks somebody is violating\ + \ Customer’s or Customer End Users’ copyrights and wants to notify Google, Customer can\ + \ find information about submitting notices, and Google's policy about responding to notices\ + \ at https://www.google.com/dmca.html.\n\n4.5 Data Use, Protection, and Privacy.\n\n4.5.1\ + \ Data Use and Retention. To provide the Services through the Customer Application(s), Google\ + \ must receive and collect data from End Users and Customer, including search terms, IP\ + \ addresses, and latitude/longitude coordinates. Customer acknowledges and agrees that Google\ + \ and its Affiliates may use and retain this data to provide and improve Google products\ + \ and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\ + \n4.5.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller\ + \ Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\ + \n4.5.3 General Privacy Requirements.\n\n(a) End User Privacy. Customer’s use of the Services\ + \ in the Customer Application will comply with applicable privacy laws, including laws regarding\ + \ Services that store and access Cookies on End Users’ devices. If Customer has End Users\ + \ in the European Economic Area, Customer will comply with the EU End User Consent Policy\ + \ at https://www.google.com/about/company/user-consent-policy.html.\n\n(b) End User Personal\ + \ Data. Through the normal functioning of the Google Maps Core Services, End Users provide\ + \ device identifiers and Personal Data directly to Google, subject to the Google Privacy\ + \ Policy at https://www.google.com/policies/privacy/. However, Customer acknowledges and\ + \ agrees that Customer will not provide these categories of data to Google.\n\n(c) End User\ + \ Location Privacy Requirements. To safeguard End Users’ location privacy, Customer will\ + \ ensure that the Customer Application(s): (i) notify End Users in advance of (y) the type(s)\ + \ of data that Customer intends to collect from the End Users or the End Users’ devices,\ + \ and (z) the combination and use of End User's location with any other data provider's\ + \ data; and (ii) will not obtain or cache any End User's location except with the End User's\ + \ express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions\ + \ Violations. Google may Suspend the Services without prior notice if Customer breaches\ + \ Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Violations or Emergency\ + \ Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP\ + \ Violations) and 5.2.2 (Emergency Security Issues). Any Suspension under those Sections\ + \ will be to the minimum extent and for the shortest duration required to: (a) prevent or\ + \ terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c)\ + \ comply with applicable law.\n\n5.2.1 AUP Violations. If Google becomes aware that Customer’s\ + \ or any End User’s use of the Services violates the AUP, Google will give Customer notice\ + \ of such violation by requesting that Customer correct the violation. If Customer fails\ + \ to correct such violation within 24 hours, or if Google is otherwise required by applicable\ + \ law to take action, then Google may Suspend all or part of Customer’s use of the Services.\n\ + \n5.2.2 Emergency Security Issues. Google may immediately Suspend Customer’s use of the\ + \ Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend\ + \ such use immediately to comply with applicable law. At Customer’s request, unless prohibited\ + \ by applicable law, Google will notify Customer of the basis for the Suspension as soon\ + \ as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights\ + \ Infringement. If the Customer Application is alleged to infringe a third party’s Intellectual\ + \ Property Rights, Google may require Customer to suspend distributing or selling the Customer\ + \ Application on 30 days’ written notice until such allegation is fully resolved. In any\ + \ event, this Section 5.3 does not reduce Customer’s obligations under Section 15 (Indemnification).\n\ + 6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as\ + \ expressly stated in this Agreement, this Agreement does not grant either party any rights,\ + \ implied or otherwise, to the other’s content or any of the other’s intellectual property.\ + \ As between the parties, Customer owns all Intellectual Property Rights in the Customer\ + \ Application, and Google owns all Intellectual Property Rights in the Services and Software.\n\ + \n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google\ + \ may use that information without obligation to Customer, and Customer irrevocably assigns\ + \ to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices\ + \ and License Terms.\n\nCertain components of the Services (including open source software)\ + \ are subject to third-party copyright and other Intellectual Property Rights, as specified\ + \ in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html;\ + \ and (b) separate, publicly-available third-party license terms, which Google will provide\ + \ to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will\ + \ provide the Technical Support Services to Customer in accordance with the Technical Support\ + \ Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical support\ + \ of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n9.1 Google will\ + \ notify Customer at least 12 months before making material discontinuance(s) or backwards\ + \ incompatible change(s) to the Services, unless Google reasonably determines that: (a)\ + \ Google cannot do so by law or by contract (including if there is a change in applicable\ + \ law or contract) or (b) continuing to provide the Services could create a (i) security\ + \ risk or (ii) substantial economic or technical burden.\n\n9.2 Section 9.1 applies to the\ + \ Services listed at https://cloud.google.com/maps-platform/terms/maps-deprecation/. If\ + \ Google deprecates any Services that are not listed at the above URL, Google will use commercially\ + \ reasonable efforts to minimize the adverse impacts of such deprecations.\n10. Confidential\ + \ Information.\n\n10.1 Obligations. The recipient will not disclose the Confidential Information,\ + \ except to Affiliates, employees, agents or professional advisors who need to know it and\ + \ who have agreed in writing (or in the case of professional advisors are otherwise bound)\ + \ to keep it confidential. Subject to Section 10.2 (Required Disclosure), the recipient\ + \ will ensure that those people and entities use the received Confidential Information only\ + \ to exercise rights and fulfill obligations under this Agreement, while using reasonable\ + \ care to keep it confidential.\n\n10.2 Required Disclosure. The recipient may disclose\ + \ the other party’s Confidential Information to the extent required by applicable Legal\ + \ Process; provided that the recipient uses commercially reasonable efforts to: (a) promptly\ + \ notify the other party of such disclosure before disclosing; and (b) comply with the other\ + \ party’s reasonable requests regarding its efforts to oppose the disclosure. Notwithstanding\ + \ the foregoing, subsections (a) and (b) above will not apply if the recipient determines\ + \ that complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii)\ + \ obstruct a governmental investigation; and/or (iii) lead to death or serious physical\ + \ harm to an individual. As between the parties, Customer is responsible for responding\ + \ to all third party requests concerning its use and Customer End Users’ use of the Services.\n\ + 11. Term and Termination.\n\n11.1 Agreement Term. The “Term” of this Agreement will begin\ + \ on the Effective Date and continue until the Agreement is terminated under this Section.\n\ + \n11.2 Termination for Breach. Either party may terminate this Agreement for breach if:\ + \ (a) the other party is in material breach of the Agreement and fails to cure that breach\ + \ within 30 days after receipt of written notice; or (b) the other party ceases its business\ + \ operations or becomes subject to insolvency proceedings and the proceedings are not dismissed\ + \ within 90 days. In addition, Google may terminate any, all, or any portion of the Services\ + \ or Projects, if Customer meets any of the conditions in subsections (a) or (b).\n\n11.3\ + \ Termination for Inactivity. Google reserves the right to terminate provision of Service(s)\ + \ to a Project on 30 days advance notice if, for more than 180 days, such Project (a) has\ + \ not made any requests to the Services from any Customer Applications; or (b) such Project\ + \ has not incurred any Fees for such Service(s).\n\n11.4 Termination for Convenience. Customer\ + \ may stop using the Services at any time. Subject to any financial commitments expressly\ + \ made by this Agreement, Customer may terminate this Agreement for its convenience at any\ + \ time on prior written notice and upon termination, must cease use of the applicable Services.\ + \ Google may terminate this Agreement for its convenience at any time without liability\ + \ to Customer.\n\n11.5 Effects of Termination. \n\n11.5.1 If the Agreement is terminated,\ + \ then: (a) the rights granted by one party to the other will immediately cease; (b) all\ + \ Fees owed by Customer to Google are immediately due upon receipt of the final electronic\ + \ bill; and (c) Customer will delete the Software and any content from the Services by the\ + \ termination effective date.\n\n11.5.2 The following will survive expiration or termination\ + \ of the Agreement: Section 2 (Payment Terms), Section 3.2 (License Requirements and Restrictions),\ + \ Section 4.5 (Data Use, Protection, and Privacy), Section 6 (Intellectual Property; Feedback),\ + \ Section 10 (Confidential Information), Section 11.5 (Effects of Termination), Section\ + \ 14 (Disclaimer), Section 15 (Indemnification), Section 16 (Limitation of Liability), Section\ + \ 19 (Miscellaneous), and Section 20 (Definitions).\n12. Publicity.\n\nCustomer may state\ + \ publicly that it is a customer of the Services, consistent with the Trademark Guidelines.\ + \ If Customer wants to display Google Brand Features in connection with its use of the Services,\ + \ Customer must obtain written permission from Google through the process specified in the\ + \ Trademark Guidelines. Google may include Customer’s name or Brand Features in a list of\ + \ Google customers, online or in promotional materials. Google may also verbally reference\ + \ Customer as a customer of the Services. Neither party needs approval if it is repeating\ + \ a public statement that is substantially similar to a previously-approved public statement.\ + \ Any use of a party’s Brand Features will inure to the benefit of the party holding Intellectual\ + \ Property Rights to those Brand Features. A party may revoke the other party’s right to\ + \ use its Brand Features under this Section with written notice to the other party and a\ + \ reasonable period to stop the use. Where applicable, Customer may use Google Maps Content\ + \ in accordance with the “Using Google Maps, Google Earth and Street View” permissions page\ + \ at https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy, which will\ + \ be considered “Google’s prior written consent” for the permitted uses.\n13. Representations\ + \ and Warranties.\n\nEach party represents and warrants that: (a) it has full power and\ + \ authority to enter into the Agreement; and (b) it will comply with Export Control Laws\ + \ and Anti-Bribery Laws applicable to its provision, receipt, or use, of the Services, as\ + \ applicable.\n14. Disclaimer.\n\n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO\ + \ THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES\ + \ OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF\ + \ MERCHANTABILITY, FITNESS FOR A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED\ + \ USE OF THE SERVICES OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION\ + \ ACCESSIBLE THROUGH THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES\ + \ EXPRESSLY STATED IN THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES\ + \ ARE PROVIDED FOR PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES\ + \ MAY DIFFER FROM ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION.\ + \ CUSTOMER MUST EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT THE\ + \ CUSTOMER APPLICATION IS SAFE AND SUITABLE FOR USE WITH GOOGLE MAPS.\n15. Indemnification.\n\ + \n15.1 By Customer. Unless prohibited by applicable law, Customer will defend Google and\ + \ its Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal\ + \ Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer’s\ + \ or an End User’s use of the Services in violation of the Agreement.\n\n15.2 By Google.\ + \ Google will defend Customer and its Affiliates participating under the Agreement (“Customer\ + \ Indemnified Parties”), and indemnify them against Indemnified Liabilities in any Third-Party\ + \ Legal Proceeding to the extent arising from an allegation that Customer Indemnified Parties'\ + \ use in accordance with the Agreement of Google Indemnified Materials infringes the third\ + \ party's Intellectual Property Rights.\n\n15.3 Exclusions. This Section 15 will not apply\ + \ to the extent the underlying allegation arises from (a) the indemnified party’s breach\ + \ of the Agreement or (b) a combination of the indemnifying party’s technology or Brand\ + \ Features with materials not provided by the indemnifying party, unless the combination\ + \ is required by the Agreement.\n\n15.4 Conditions. Sections 15.1 and 15.2 will apply only\ + \ to the extent:\n\n(a) The indemnified party has promptly notified the indemnifying party\ + \ in writing of any Allegation(s) that preceded the Third-Party Legal Proceeding and cooperates\ + \ reasonably with the indemnifying party to resolve the Allegation(s) and Third-Party Legal\ + \ Proceeding. If breach of this Section 15.4(a) prejudices the defense of the Third-Party\ + \ Legal Proceeding, the indemnifying party’s obligations under Section 15.1 or 15.2 (as\ + \ applicable) will be reduced in proportion to the prejudice.\n\n(b) The indemnified party\ + \ tenders sole control of the indemnified portion of the Third-Party Legal Proceeding to\ + \ the indemnifying party, subject to the following: (i) the indemnified party may appoint\ + \ its own non-controlling counsel, at its own expense; and (ii) any settlement requiring\ + \ the indemnified party to admit liability, pay money, or take (or refrain from taking)\ + \ any action, will require the indemnified party’s prior written consent, not to be unreasonably\ + \ withheld, conditioned, or delayed.\n\n15.5 Remedies.\n\n(a) If Google reasonably believes\ + \ the Services might infringe a third party’s Intellectual Property Rights, then Google\ + \ may, at its sole option and expense: (i) procure the right for Customer to continue using\ + \ the Services; (ii) modify the Services to make them non-infringing without materially\ + \ reducing their functionality; or (iii) replace the Services with a non-infringing, functionally\ + \ equivalent alternative.\n\n(b) If Google does not believe the remedies in Section 15.5(a)\ + \ are commercially reasonable, then Google may suspend or terminate Customer’s use of the\ + \ impacted Services.\n\n15.6 Sole Rights and Obligations. Without affecting either party’s\ + \ termination rights, this Section 15 states the parties’ sole and exclusive remedy under\ + \ this Agreement for any third party's Intellectual Property Rights Allegations and Third-Party\ + \ Legal Proceedings covered by this Section 15 (Indemnification).\n16. Limitation of Liability.\n\ + \n16.1 Limitation on Indirect Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW,\ + \ THE PARTIES AND GOOGLE’S LICENSORS, WILL NOT BE LIABLE UNDER THIS AGREEMENT FOR LOST REVENUES\ + \ OR PROFITS (WHETHER DIRECT OR INDIRECT), INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL,\ + \ EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE PARTY OR LICENSOR, AS APPLICABLE, KNEW OR\ + \ SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY\ + \ A REMEDY.\n\n16.2 Limitation on Amount of Liability. TO THE MAXIMUM EXTENT PERMITTED BY\ + \ APPLICABLE LAW, THE PARTIES AND GOOGLE’S LICENSORS, MAY NOT BE HELD LIABLE UNDER THIS\ + \ AGREEMENT FOR MORE THAN THE AMOUNT PAID BY CUSTOMER TO GOOGLE UNDER THIS AGREEMENT DURING\ + \ THE TWELVE MONTHS BEFORE THE EVENT GIVING RISE TO LIABILITY.\n\n16.3 Exceptions to Limitations.\ + \ These limitations of liability do not apply to breaches of confidentiality obligations,\ + \ violations of a party’s Intellectual Property Rights by the other party, or Customer's\ + \ payment obligations.\n17. Advertising.\n\n Customer may configure the Service in its sole\ + \ discretion to either display or not display advertisements served by Google. \n\ + 18. U.S. Federal Agency Users.\n\nThe Services were developed solely at private expense\ + \ and are commercial computer software and related documentation within the meaning of the\ + \ applicable Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\ + \n19.1 Notices. All notices must be in writing and addressed to the other party’s legal\ + \ department and primary point of contact. The email address for notices being sent to Google’s\ + \ Legal Department is legal-notices@google.com. Notice will be treated as given on receipt\ + \ as verified by written or automated receipt or by electronic log (as applicable).\n\n\ + 19.2 Assignment. Neither party may assign any part of this Agreement without the written\ + \ consent of the other, except to an Affiliate where: (a) the assignee has agreed in writing\ + \ to be bound by the terms of this Agreement; (b) the assigning party remains liable for\ + \ obligations under the Agreement if the assignee defaults on them; and (c) the assigning\ + \ party has notified the other party of the assignment. Any other attempt to assign is void.\n\ + \n19.3 Change of Control. If a party experiences a change of Control (for example, through\ + \ a stock purchase or sale, merger, or other form of corporate transaction): (a) that party\ + \ will give written notice to the other party within 30 days after the change of Control;\ + \ and (b) the other party may immediately terminate this Agreement any time between the\ + \ change of Control and 30 days after it receives that written notice.\n\n19.4 Force Majeure.\ + \ Neither party will be liable for failure or delay in performance to the extent caused\ + \ by circumstances beyond its reasonable control, including acts of God, natural disasters,\ + \ terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations under\ + \ the Agreement but will remain liable to Customer for any subcontracted obligations.\n\n\ + 19.6 No Agency. This Agreement does not create any agency, partnership or joint venture\ + \ between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived\ + \ any rights by not exercising (or delaying the exercise of) any rights under this Agreement.\n\ + \n19.8 Severability. If any term (or part of a term) of this Agreement is invalid, illegal,\ + \ or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party\ + \ Beneficiaries. This Agreement does not confer any benefits on any third party unless it\ + \ expressly states that it does.\n\n19.10 Equitable Relief. Nothing in this Agreement will\ + \ limit either party’s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n19.11.1\ + \ For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county\ + \ or state government entity, then the Agreement will be silent regarding governing law\ + \ and venue.\n\n19.11.2 For U.S. Federal Government Entities. If Customer is a U.S. federal\ + \ government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO\ + \ THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA,\ + \ EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I)\ + \ THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA’S CONFLICT OF LAWS RULES) WILL\ + \ APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF\ + \ OR RELATING TO THIS AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION\ + \ IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n19.11.3\ + \ For All Other Entities. If Customer is any entity not listed in Section 19.11.1 or 19.11.2\ + \ then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR\ + \ THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE’S CONFLICT OF LAWS\ + \ RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA\ + \ COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\ + \n19.12 Amendments. Except as stated in Section 1.5.2 (Modifications; To the Agreement),\ + \ any amendment must be in writing, signed by both parties, and expressly state that it\ + \ is amending this Agreement.\n\n19.13 Entire Agreement. This Agreement sets out all terms\ + \ agreed between the parties and supersedes all other agreements between the parties relating\ + \ to its subject matter. In entering into this Agreement, neither party has relied on, and\ + \ neither party will have any right or remedy based on, any statement, representation or\ + \ warranty (whether made negligently or innocently), except those expressly stated in this\ + \ Agreement. The terms located at any URL referenced in this Agreement and the Documentation\ + \ are incorporated by reference into the Agreement. After the Effective Date, Google may\ + \ provide an updated URL in place of any URL in this Agreement.\n\n19.14 Conflicting Terms.\ + \ If there is a conflict between the documents that make up this Agreement, the documents\ + \ will control in the following order: the Agreement, and the terms at any URL. \n\n19.15\ + \ Conflicting Translations. If this Agreement is translated into any other language, and\ + \ there is a discrepancy between the English text and the translated text, the English text\ + \ will govern.\n20. Definitions.\n\n\"Account\" means Customer’s Google Account.\n\n\"Admin\ + \ Console\" means the online console(s) and tool(s) provided by Google to Customer for administering\ + \ the Services.\n\n\"Affiliate\" means any entity that directly or indirectly Controls,\ + \ is Controlled by, or is under common Control with a party.\n\n\"Allegation\" means an\ + \ unaffiliated third party’s allegation.\n\n“Anti-Bribery Laws” means all applicable commercial\ + \ and public anti-bribery laws, (for example, the U.S. Foreign Corrupt Practices Act of\ + \ 1977 and the UK Bribery Act 2010), which prohibit corrupt offers of anything of value,\ + \ either directly or indirectly, to anyone, including government officials, to obtain or\ + \ keep business or to secure any other improper commercial advantage. “Government officials”\ + \ include any government employee; candidate for public office; and employee of government-owned\ + \ or government-controlled companies, public international organizations, and political\ + \ parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the then-current Acceptable Use\ + \ Policy for the Services at: https://cloud.google.com/maps-platform/terms/aup/.\n\n\"\ + Brand Features\" means the trade names, tradmarks, service marks, logos, domain names, and\ + \ other distinctive brand features of each party, respectively, as secured by such party.\n\ + \n\"Committed Purchase(s)\" has the meaning provided in the Service Specific Terms.\n\n\"\ + Confidential Information\" means information that one party (or an Affiliate) discloses\ + \ to the other party under this Agreement, and which is marked as confidential or would\ + \ normally under the circumstances be considered confidential information. It does not include\ + \ information that is independently developed by the recipient, is rightfully given to the\ + \ recipient by a third party without confidentiality obligations, or becomes public through\ + \ no fault of the recipient.\n\n\"Control\" means control of greater than fifty percent\ + \ of the voting rights or equity interests of a party.\n\n\"Customer Application\" means\ + \ any web domain or application (including features) listed in the Admin Console.\n\n\"\ + Customer End User\" or \"End User\" means an individual or entity that Customer permits\ + \ to use the Services or Customer Application(s).\n\n“Customer Indemnified Materials” means\ + \ the Customer Application and Customer Brand Features.\n\n\"Documentation\" means the Google\ + \ documentation (as may be updated) in the form generally made available by Google for use\ + \ with the Services at https://developers.google.com/maps/.\n\n\"Emergency Security Issue\"\ + \ means either: (a) Customer’s or Customer End Users’ use of the Services in violation of\ + \ the AUP, which could disrupt: (i) the Services; (ii) other customers’ or their customer\ + \ end users’ use of the Services; or (iii) the Google network or servers used to provide\ + \ the Services; or (b) unauthorized third party access to the Services.\n\n\"Europe\" or\ + \ \"European\" means European Economic Area or Switzerland.\n\n“Export Control Laws” means\ + \ all applicable export and re-export control laws and regulations, including any applicable\ + \ munitions- or defense-related regulations (for example, the International Traffic in Arms\ + \ Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual Period\" means\ + \ a calendar month or another period specified by Google in the Admin Console.\n\n\"Fee\ + \ Threshold\" means the threshold (as may be updated), as applicable for certain Services,\ + \ as set out in the Admin Console.\n\n“Feedback” means feedback or suggestions about the\ + \ Services provided to Google by Customer.\n\n\"Fees\" means the applicable fees for each\ + \ Service and any applicable Taxes. The Fees for each Service are available at https://cloud.google.com/maps-platform/pricing/sheet/\ + \ (or other such URL provided by Google).\n\n\"Google Indemnified Materials\" means Google's\ + \ technology used to provide the Services (excluding any open source software) and Google's\ + \ Brand Features.\n\n\"Google Maps Content\" means any content provided through the Services\ + \ (whether created by Google or its third-party licensors), including map and terrain data,\ + \ imagery, traffic data, and places data (including business listings).\n\n\"High Risk Activities\"\ + \ means activities where the use or failure of the Services could lead to death, personal\ + \ injury, or environmental damage, including (a) emergency response services; (b) autonomous\ + \ and semi-autonomous vehicle or drone control; (c) vessel navigation; (d) aviation; (e)\ + \ air traffic control; (f) nuclear facilities operation; (g) precision targeting.\n\n\"\ + HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it may\ + \ be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means\ + \ any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs\ + \ finally awarded against the indemnified party and its Affiliates by a court of competent\ + \ jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual\ + \ Property Rights\" means current and future worldwide rights under patent, copyright, trade\ + \ secret, trademark, and moral rights laws, and other similar rights.\n\n\"Legal Process\"\ + \ means a data disclosure request made under law, governmental regulation, court order,\ + \ subpoena, warrant, governmental regulatory or agency request, or other valid legal authority,\ + \ legal procedure, or similar process.\n\n\"Package Purchase\" has the meaning set out in\ + \ the Service Specific Terms.\n\n\"Personal Data\" has the meaning provided in the General\ + \ Data Protection Regulation (EU) 2016/679 of the European Parliament and of the Council\ + \ of April 27, 2016.\n\n\"Prohibited Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\ + \n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources\ + \ for a particular Customer Application.\n\n\"Services\" and \"Google Maps Core Services\"\ + \ means the services described at https://cloud.google.com/maps-platform/terms/maps-services/.\ + \ The Services include the Google Maps Content.\n\n\"Service Specific Terms\" means the\ + \ terms specific to one or more Services set forth here: https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\ + \n\"SLA\" or \"Service Level Agreement\" means each of the then-current service level agreements\ + \ at: https://cloud.google.com/maps-platform/terms/sla/.\n\n\"Software\" means any downloadable\ + \ tools, software development kits or other such proprietary computer software provided\ + \ by Google in connection with the Services, which may be downloaded by Customer, and any\ + \ updates Google may make to such Software.\n\n\"Taxes\" means any duties, customs fees,\ + \ or taxes (other than Google’s income tax) associated with the purchase of the Services,\ + \ including any related penalties or interest.\n\n“Technical Support Services” or \"TSS\"\ + \ means the technical support service provided by Google to Customer under the Technical\ + \ Support Services Guidelines.\n\n“Technical Support Services Guidelines” or \"TSS Guidelines\"\ + \ means the then-current technical support service guidelines at https://cloud.google.com/maps-platform/terms/tssg/.\n\ + \n\"Term\" has the meaning stated in Section 1.6 of this Agreement.\n\n“Terms URL” means\ + \ the following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"\ + Third-Party Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated\ + \ third party before a court or government tribunal (including any appellate proceeding).\n\ + \n\"Trademark Guidelines\" means (a) Google’s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html;\ + \ and (b) the “Use of Trademarks” section of the “Using Google Maps, Google Earth and Street\ + \ View” permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark\ + \ policy.\n\n“URL Terms” means the following, which will control in the following order\ + \ if there is a conflict:\n\n(a) the AUP;\n\n(b) the Google Maps/Google Earth Legal Notices\ + \ at https://www.google.com/help/legalnotices_maps.html;\n\n(c) the Google Maps/Google Earth\ + \ Additional Terms of Service at https://maps.google.com/help/terms_maps.html;\n\n(d) the\ + \ Service Specific Terms; \n\n(e) the SLA; and\n\n(f) the Technical Support Services Guidelines." json: google-maps-tos-2018-06-07.json - yml: google-maps-tos-2018-06-07.yml + yaml: google-maps-tos-2018-06-07.yml html: google-maps-tos-2018-06-07.html - text: google-maps-tos-2018-06-07.LICENSE + license: google-maps-tos-2018-06-07.LICENSE - license_key: google-maps-tos-2018-07-09 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-07-09 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Google Maps Platform Terms of Service\n\nLast modified: July 9, 2018\n\nThis Google\ + \ Maps Platform License Agreement takes effect on July 16, 2018. \n\nIf you are currently\ + \ using the Google Maps Standard Plan, this Google Maps Platform License Agreement will\ + \ govern your use of the Google Maps Platform as of July 16, 2018. The current Google\ + \ Maps Platform Terms of Service, which govern your use of the Google Maps Platform until\ + \ July 16, 2018, is available at https://developers.google.com/maps/terms.\n\nGoogle Maps\ + \ Platform License Agreement\n\nThis Google Maps Platform License Agreement (the \"Agreement\"\ + ) is made and entered into between Google and the entity or person agreeing to these terms\ + \ (\"Customer\"). \"Google\" means either (i) Google Commerce Limited (“GCL”), a company\ + \ incorporated under the laws of Ireland, with offices at Gordon House, Barrow Street, Dublin\ + \ 4, Ireland, if Customer has a billing address in the EU and has chosen “non-business”\ + \ as the tax status/setting for its Google account, (ii) Google Ireland Limited, with offices\ + \ at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer's billing address is in\ + \ any country within Europe, the Middle East, or Africa (\"EMEA\"), (iii) Google Asia Pacific\ + \ Pte. Ltd., with offices at 70 Pasir Panjang Road, #03-71, Mapletree Business City II Singapore\ + \ 117371, if Customer's billing address is in any country within the Asia Pacific region\ + \ (\"APAC\") except as provided below for Customers with the billing address in Japan or\ + \ Australia, (iv) Google Cloud Japan G.K., with offices at Roppongi Hills Mori Tower, 10-1,\ + \ Roppongi 6-chome, Minato-ku Tokyo, if Customer’s billing address is in Japan, (v) Google\ + \ Australia Pty Ltd., with offices at Level 5, 48 Pirrama Road, Pyrmont, NSW 2009 Australia,\ + \ if Customer’s billing address is in Australia, or (vi) Google LLC, with offices at 1600\ + \ Amphitheatre Parkway, Mountain View, California 94043, if Customer's billing address is\ + \ in any country in the world other than those in EMEA and APAC.\n\nThis Agreement is effective\ + \ as of the date Customer clicks to accept the Agreement, or enters into a Reseller Agreement\ + \ if purchasing through a Reseller (the \"Effective Date\"). If you are accepting on behalf\ + \ of Customer, you represent and warrant that: (i) you have full legal authority to bind\ + \ Customer to this Agreement; (ii) you have read and understand this Agreement; and (iii)\ + \ you agree, on behalf of Customer, to this Agreement. If you do not have the legal authority\ + \ to bind Customer, please do not click to accept. This Agreement governs Customer's access\ + \ to and use of the Services.\n\nFor an offline variant of this Agreement, you may contact\ + \ Google for more information.\n1. Provision of the Services.\n\n1.1 Use of the Services\ + \ in Customer Applications. Google will provide the Services to Customer in accordance\ + \ with the applicable SLA, and Customer may use the Google Maps Core Services in Customer\ + \ Application(s) in accordance with Section 3 (License).\n\n1.2 Admin Console; Projects;\ + \ API Keys. Customer will administer the Services through the online Admin Console. To access\ + \ the Services, Customer must create Project(s) and use its API key(s) in accordance with\ + \ the Documentation.\n\n1.3 Accounts. Customer must have an Account to access the Admin\ + \ Console through which Customer may administer its use of the Services. Customer is responsible\ + \ for: (a) the information it provides in connection with the Account; (b) maintaining the\ + \ confidentiality and security of the Account and associated passwords; and (c) any use\ + \ of its Account.\n\n1.4 Customer Domains and Applications. Customer must list in the Admin\ + \ Console each authorized domain and application that uses the Services. Customer is responsible\ + \ for ensuring that only authorized domains and applications use the Services.\n\n1.5 New\ + \ Features and Services. Google may: (a) make new features or functionality available through\ + \ the Services and (b) add new services to the \"Services\" definition (by adding them at\ + \ the URL stated under that definition). Customer’s use of new features or functionality\ + \ may be contingent on Customer’s agreement to additional terms applicable to the new feature\ + \ or functionality.\n\n1.6 Modifications.\n\n1.6.1 To the Services. Google may make changes\ + \ to the Services, subject to Section 9 (Deprecation Policy), which may include adding,\ + \ updating, or discontinuing any Services or portion or feature(s) of the Services. Google\ + \ will notify Customer of any material change to the Services.\n\n1.6.2. To the Agreement.\ + \ Google may make changes to this Agreement, including pricing (and any linked documents).\ + \ Unless otherwise noted by Google, material changes to the Agreement will become effective\ + \ 30 days after notice is given, except if the changes apply to new functionality in which\ + \ case they will be effective immediately. Google will provide at least 90 days advance\ + \ notice for materially adverse changes to any SLAs by: (a) sending an email to Customer’s\ + \ primary point of contact; (b) posting a notice in the Admin Console; or (c) posting a\ + \ notice to the applicable SLA webpage. If Customer does not agree to the revised Agreement,\ + \ Customer should stop using the Services. Google will post any modification to this Agreement\ + \ to the Terms URL.\n2. Payment Terms.\n\n2.1 Free Quota. Certain Services are provided\ + \ to Customer without charge up to the Fee Threshold, as applicable.\n\n2.2 Online Billing.\ + \ At the end of the applicable Fee Accrual Period, Google will issue an electronic bill\ + \ to Customer for all charges accrued above the Fee Threshold based on (a) Customer’s use\ + \ of the Services during the previous Fee Accrual Period; (b) any Committed Purchases selected;\ + \ and (c) any Package Purchases selected. For use above the Fee Threshold, Customer will\ + \ be responsible for all Fees up to the amount set in the Account and will pay all Fees\ + \ in the currency set forth in the invoice. If Customer elects to pay by credit card, debit\ + \ card, or other non-invoiced form of payment, Google will charge (and Customer will pay)\ + \ all Fees immediately at the end of the Fee Accrual Period. If Customer elects to pay by\ + \ invoice (and Google agrees), all Fees are due as stated in the invoice. Customer’s obligation\ + \ to pay all Fees is non-cancellable. Google's measurement of Customer’s use of the Services\ + \ is final. Google has no obligation to provide multiple bills. Payments made via wire transfer\ + \ must include the bank information provided by Google. If Customer has entered into the\ + \ Agreement with GCL, Google may collect payments via Google Payment Limited, a company\ + \ incorporated in England and Wales with offices at Belgrave House, 76 Buckingham Palace\ + \ Road, London, SW1W 9TQ, United Kingdom.\n\n2.3 Taxes.\n\n2.3.1 Customer is responsible\ + \ for any Taxes, and Customer will pay Google for the Services without any reduction for\ + \ Taxes. If Google is obligated to collect or pay Taxes, the Taxes will be invoiced to Customer,\ + \ unless Customer provides Google with a timely and valid tax exemption certificate authorized\ + \ by the appropriate taxing authority. In some states the sales tax is due on the total\ + \ purchase price at the time of sale and must be invoiced and collected at the time of the\ + \ sale. If Customer is required by law to withhold any Taxes from its payments to Google,\ + \ Customer must provide Google with an official tax receipt or other appropriate documentation\ + \ to support such withholding. If under the applicable tax legislation the Services are\ + \ subject to local VAT and the Customer is required to make a withholding of local VAT from\ + \ amounts payable to Google, the value of Services calculated in accordance with the above\ + \ procedure will be increased (grossed up) by the Customer for the respective amount of\ + \ local VAT and the grossed up amount will be regarded as a VAT inclusive price. Local VAT\ + \ amount withheld from the VAT-inclusive price will be remitted to the applicable local\ + \ tax entity by the Customer and Customer will ensure that Google will receives payment\ + \ for its services for the net amount as would otherwise be due (the VAT inclusive price\ + \ less the local VAT withheld and remitted to applicable tax authority).\n\n2.3.2 If required\ + \ under applicable law, Customer will provide Google with applicable tax identification\ + \ information that Google may require to ensure its compliance with applicable tax regulations\ + \ and authorities in applicable jurisdictions. Customer will be liable to pay (or reimburse\ + \ Google for) any taxes, interest, penalties or fines arising out of any mis-declaration\ + \ by the Customer.\n\n2.4 Invoice Disputes & Refunds. Any invoice disputes must be submitted\ + \ before the payment due date. If the parties determine that certain billing inaccuracies\ + \ are attributable to Google, Google will not issue a corrected invoice, but will instead\ + \ issue a credit memo specifying the incorrect amount in the affected invoice. If the disputed\ + \ invoice has not yet been paid, Google will apply the credit memo amount to the disputed\ + \ invoice and Customer will be responsible for paying the resulting net balance due on that\ + \ invoice. To the fullest extent permitted by law, Customer waives all claims relating to\ + \ Fees unless claimed within 60 days after charged (this does not affect any Customer rights\ + \ with its credit card issuer). Refunds (if any) are at the discretion of Google and will\ + \ only be in the form of credit for the Services. Nothing in this Agreement obligates Google\ + \ to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. Late payments may\ + \ bear interest at the rate of 1.5% per month (or the highest rate permitted by law, if\ + \ less) from the payment due date until paid in full. Customer will be responsible for all\ + \ reasonable expenses (including attorneys’ fees) incurred by Google in collecting such\ + \ delinquent amounts. If Customer is late on payment for the Services, Google may suspend\ + \ the Services or terminate the Agreement for breach under Section 11.2 (Termination for\ + \ Breach).\n\n2.6 No Purchase Order Number Required. Google is not required to provide a\ + \ purchase order number on Google’s invoice (or otherwise).\n3. License.\n\n3.1 License\ + \ Grant. Subject to this Agreement's terms, during the Term, Google grants to Customer a\ + \ non-exclusive, non-transferable, non-sublicensable, license to use the Services in Customer\ + \ Application(s), which may be: (a) fee-based or non-fee-based; (b) public/external or private/internal;\ + \ (c) business-to-business or business-to-consumer; or (d) asset tracking.\n\n3.2 License\ + \ Requirements and Restrictions. The following are conditions of the license granted in\ + \ Section 3.1. In this Section 3.2, the phrase “Customer will not” means “Customer will\ + \ not, and will not permit a third party to”.\n\n3.2.2 General Restrictions. Unless Google\ + \ specifically agrees in writing, Customer will not: (a) copy, modify, create a derivative\ + \ work of, reverse engineer, decompile, translate, disassemble, or otherwise attempt to\ + \ extract any or all of the source code (except to the extent such restriction is expressly\ + \ prohibited by applicable law); (b) sublicense, transfer, or distribute any of the Services;\ + \ (c) sell, resell, or otherwise make the Services available as a commercial offering to\ + \ a third party; or (d) access or use the Services: (i) for High Risk Activities; (ii) in\ + \ a manner intended to avoid incurring Fees; (iii) for activities that are subject to the\ + \ International Traffic in Arms Regulations (ITAR) maintained by the United States Department\ + \ of State; (iv) on behalf of or for the benefit of any entity or person who is legally\ + \ prohibited from using the Services; or (v) to transmit, store, or process Protected Health\ + \ Information (as defined in and subject to HIPAA).\n\n3.2.3 Requirements for Using the\ + \ Services.\n\n(a) End User Terms and Privacy Policy. Customer’s End User terms of service\ + \ will state that End Users’ use of Google Maps is subject to the then-current Google Maps/Google\ + \ Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html and\ + \ Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n(b) Attribution.\ + \ Customer will display all attribution that (i) Google provides through the Services (including\ + \ branding, logos, and copyright and trademark notices); or (ii) is specified in the Maps\ + \ Service Specific Terms. Customer will not modify, obscure, or delete such attribution.\n\ + \n(c) Review of Customer Applications. At Google’s request, Customer will submit Customer\ + \ Application(s) and Project(s) to Google for review to ensure compliance with the Agreement\ + \ (including the AUP).\n\n3.2.4 Restrictions Against Misusing the Services.\n\n(a) No Scraping.\ + \ Customer will not extract, export, or scrape Google Maps Content for use outside the\ + \ Services. For example, Customer will not:(i) pre-fetch, cache, index, or store Google\ + \ Maps Content for more than 30 days; (ii) bulk download geocodes; or (iii) copy business\ + \ names, addresses, or user reviews.\n\n(b) No Creating Content From Google Maps Content.\ + \ Customer will not create content based on Google Maps Content, including tracing, digitizing,\ + \ or creating other datasets based on Google Maps Content.\n\n(c) No Re-Creating Google\ + \ Products or Features. Customer will not use the Services to create a product or service\ + \ with features that are substantially similar to or that re-create the features of another\ + \ Google product or service. Customer’s product or service must contain substantial, independent\ + \ value and features beyond the Google products or services. For example, Customer will\ + \ not: (i) re-distribute the Google Maps Core Services or pass them off as if they were\ + \ Customer’s services; (ii) create a substitute of the Google Maps Core Services, Google\ + \ Maps, or Google Maps mobile apps, or their features; (iii) use the Google Maps Core Services\ + \ in a listings or directory service or to create or augment an advertising product; (iv)\ + \ combine data from the Directions API, Geolocation API, and Maps SDK for Android to create\ + \ real-time navigation functionality substantially similar to the functionality provided\ + \ by the Google Maps for Android mobile app.\n\n(d) No Use With Non-Google Maps. Customer\ + \ will not use the Google Maps Core Services in a Customer Application that contains a non-Google\ + \ map. For example, Customer will not (i) display Places listings on a non-Google map, or\ + \ (ii) display Street View imagery and non-Google maps in the same Customer Application.\n\ + \n(e) No Circumventing Fees. Customer will not circumvent the applicable Fees. For example,\ + \ Customer will not create multiple billing accounts or Projects to avoid incurring Fees;\ + \ prevent Google from accurately calculating Customer’s Service usage levels; abuse any\ + \ free Service quotas; or offer access to the Services under a “time-sharing” or “service\ + \ bureau” model.\n\n(f) No Use in Prohibited Territories. Customer will not distribute or\ + \ market in a Prohibited Territory any Customer Application(s) that use the Google Maps\ + \ Core Services.\n\n(g) No Use in Embedded Vehicle Systems. Customer will not use the Google\ + \ Maps Core Services in connection with any Customer Application or device embedded in a\ + \ vehicle. For example, Customer will not create a Customer Application that (i) is embedded\ + \ in an in-dashboard automotive infotainment system; and (ii) allows End Users to request\ + \ driving directions from the Directions API.\n\n(h) No Modifying Search Results Integrity.\ + \ Customer will not modify any of the Service’s search results.\n\n(i) No Use for High Risk\ + \ Activities. Customer will not use the Google Maps Core Services for High Risk Activities.\n\ + \n3.2.5 Benchmarking. Customer may not publicly disclose directly or through a third party\ + \ the results of any comparative or compatibility testing, benchmarking, or evaluation of\ + \ the Services (each, a “Test”), unless the disclosure includes all information necessary\ + \ for Google or a third party to replicate the Test. If Customer conducts, or directs a\ + \ third party to conduct, a Test of the Services and publicly discloses the results directly\ + \ or through a third party, then Google (or a Google directed third party) may conduct Tests\ + \ of any publicly available cloud products or services provided by Customer and publicly\ + \ disclose the results of any such Test (which disclosure will include all information necessary\ + \ for Customer or a third party to replicate the Test).\n4. Customer Obligations. \n\n4.1\ + \ Customer Domains and Applications. Customer must list in the Admin Console each authorized\ + \ domain and application that uses the Services. Customer is responsible for ensuring that\ + \ only authorized domains and applications use the Services.\n\n4.2 Compliance. Customer\ + \ will: (a) ensure that Customer’s and its End Users’ use of the Services complies with\ + \ the Agreement, including the applicable Services’ AUP and URL Terms; and (b) use commercially\ + \ reasonable efforts to prevent, promptly notify Google of, and terminate any unauthorized\ + \ use of or access to its Account(s) or the Services.\n\n4.3 Documentation. Google may provide\ + \ Documentation for Customer’s use of the Services. The Documentation may specify restrictions\ + \ (e.g. attribution or HTML restrictions) on how the Services may be used and Customer will\ + \ comply with any such restrictions specified.\n\n4.4 Copyright Policy. Google provides\ + \ information to help copyright holders manage their intellectual property online, but Google\ + \ cannot determine whether something is being used legally or not without their input. Google\ + \ responds to notices of alleged copyright infringement and terminates accounts of repeat\ + \ infringers according to applicable copyright laws including in particular the process\ + \ set out in the U.S. Digital Millennium Copyright Act. If Customer thinks somebody is violating\ + \ Customer’s or Customer End Users’ copyrights and wants to notify Google, Customer can\ + \ find information about submitting notices, and Google's policy about responding to notices\ + \ at https://www.google.com/dmca.html.\n\n4.5 Data Use, Protection, and Privacy.\n\n4.5.1\ + \ Data Use and Retention. To provide the Services through the Customer Application(s), Google\ + \ must receive and collect data from End Users and Customer, including search terms, IP\ + \ addresses, and latitude/longitude coordinates. Customer acknowledges and agrees that Google\ + \ and its Affiliates may use and retain this data to provide and improve Google products\ + \ and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\ + \n4.5.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller\ + \ Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\ + \n4.5.3 General Privacy Requirements.\n\n(a) End User Privacy. Customer’s use of the Services\ + \ in the Customer Application will comply with applicable privacy laws, including laws regarding\ + \ Services that store and access Cookies on End Users’ devices. If Customer has End Users\ + \ in the European Economic Area, Customer will comply with the EU End User Consent Policy\ + \ at https://www.google.com/about/company/user-consent-policy.html.\n\n(b) End User Personal\ + \ Data. Through the normal functioning of the Google Maps Core Services, End Users provide\ + \ device identifiers and Personal Data directly to Google, subject to the Google Privacy\ + \ Policy at https://www.google.com/policies/privacy/. However, Customer acknowledges and\ + \ agrees that Customer will not provide these categories of data to Google.\n\n(c) End User\ + \ Location Privacy Requirements. To safeguard End Users’ location privacy, Customer will\ + \ ensure that the Customer Application(s): (i) notify End Users in advance of (y) the type(s)\ + \ of data that Customer intends to collect from the End Users or the End Users’ devices,\ + \ and (z) the combination and use of End User's location with any other data provider's\ + \ data; and (ii) will not obtain or cache any End User's location except with the End User's\ + \ express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions\ + \ Violations. Google may Suspend the Services without prior notice if Customer breaches\ + \ Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Violations or Emergency\ + \ Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP\ + \ Violations) and 5.2.2 (Emergency Security Issues). Any Suspension under those Sections\ + \ will be to the minimum extent and for the shortest duration required to: (a) prevent or\ + \ terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c)\ + \ comply with applicable law.\n\n5.2.1 AUP Violations. If Google becomes aware that Customer’s\ + \ or any End User’s use of the Services violates the AUP, Google will give Customer notice\ + \ of such violation by requesting that Customer correct the violation. If Customer fails\ + \ to correct such violation within 24 hours, or if Google is otherwise required by applicable\ + \ law to take action, then Google may Suspend all or part of Customer’s use of the Services.\n\ + \n5.2.2 Emergency Security Issues. Google may immediately Suspend Customer’s use of the\ + \ Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend\ + \ such use immediately to comply with applicable law. At Customer’s request, unless prohibited\ + \ by applicable law, Google will notify Customer of the basis for the Suspension as soon\ + \ as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights\ + \ Infringement. If the Customer Application is alleged to infringe a third party’s Intellectual\ + \ Property Rights, Google may require Customer to suspend distributing or selling the Customer\ + \ Application on 30 days’ written notice until such allegation is fully resolved. In any\ + \ event, this Section 5.3 does not reduce Customer’s obligations under Section 15 (Indemnification).\n\ + 6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as\ + \ expressly stated in this Agreement, this Agreement does not grant either party any rights,\ + \ implied or otherwise, to the other’s content or any of the other’s intellectual property.\ + \ As between the parties, Customer owns all Intellectual Property Rights in the Customer\ + \ Application, and Google owns all Intellectual Property Rights in the Services and Software.\n\ + \n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google\ + \ may use that information without obligation to Customer, and Customer irrevocably assigns\ + \ to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices\ + \ and License Terms.\n\nCertain components of the Services (including open source software)\ + \ are subject to third-party copyright and other Intellectual Property Rights, as specified\ + \ in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html;\ + \ and (b) separate, publicly-available third-party license terms, which Google will provide\ + \ to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will\ + \ provide Maps Technical Support Services to Customer in accordance with the Maps Technical\ + \ Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical\ + \ support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n9.1 Google\ + \ will notify Customer at least 12 months before making material discontinuance(s) or backwards\ + \ incompatible change(s) to the Services, unless Google reasonably determines that: (a)\ + \ Google cannot do so by law or by contract (including if there is a change in applicable\ + \ law or contract) or (b) continuing to provide the Services could create a (i) security\ + \ risk or (ii) substantial economic or technical burden.\n\n9.2 Section 9.1 applies to the\ + \ Services listed at https://cloud.google.com/maps-platform/terms/maps-deprecation/. If\ + \ Google deprecates any Services that are not listed at the above URL, Google will use commercially\ + \ reasonable efforts to minimize the adverse impacts of such deprecations.\n10. Confidential\ + \ Information.\n\n10.1 Obligations. The recipient will not disclose the Confidential Information,\ + \ except to Affiliates, employees, agents or professional advisors who need to know it and\ + \ who have agreed in writing (or in the case of professional advisors are otherwise bound)\ + \ to keep it confidential. Subject to Section 10.2 (Required Disclosure), the recipient\ + \ will ensure that those people and entities use the received Confidential Information only\ + \ to exercise rights and fulfill obligations under this Agreement, while using reasonable\ + \ care to keep it confidential.\n\n10.2 Required Disclosure. The recipient may disclose\ + \ the other party’s Confidential Information to the extent required by applicable Legal\ + \ Process; provided that the recipient uses commercially reasonable efforts to: (a) promptly\ + \ notify the other party of such disclosure before disclosing; and (b) comply with the other\ + \ party’s reasonable requests regarding its efforts to oppose the disclosure. Notwithstanding\ + \ the foregoing, subsections (a) and (b) above will not apply if the recipient determines\ + \ that complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii)\ + \ obstruct a governmental investigation; and/or (iii) lead to death or serious physical\ + \ harm to an individual. As between the parties, Customer is responsible for responding\ + \ to all third party requests concerning its use and Customer End Users’ use of the Services.\n\ + 11. Term and Termination.\n\n11.1 Agreement Term. The “Term” of this Agreement will begin\ + \ on the Effective Date and continue until the Agreement is terminated under this Section.\n\ + \n11.2 Termination for Breach. Either party may terminate this Agreement for breach if:\ + \ (a) the other party is in material breach of the Agreement and fails to cure that breach\ + \ within 30 days after receipt of written notice; or (b) the other party ceases its business\ + \ operations or becomes subject to insolvency proceedings and the proceedings are not dismissed\ + \ within 90 days. In addition, Google may terminate any, all, or any portion of the Services\ + \ or Projects, if Customer meets any of the conditions in subsections (a) or (b).\n\n11.3\ + \ Termination for Inactivity. Google reserves the right to terminate provision of Service(s)\ + \ to a Project on 30 days advance notice if, for more than 180 days, such Project (a) has\ + \ not made any requests to the Services from any Customer Applications; or (b) such Project\ + \ has not incurred any Fees for such Service(s).\n\n11.4 Termination for Convenience. Customer\ + \ may stop using the Services at any time. Subject to any financial commitments expressly\ + \ made by this Agreement, Customer may terminate this Agreement for its convenience at any\ + \ time on prior written notice and upon termination, must cease use of the applicable Services.\ + \ Google may terminate this Agreement for its convenience at any time without liability\ + \ to Customer.\n\n11.5 Effects of Termination. \n\n11.5.1 If the Agreement is terminated,\ + \ then: (a) the rights granted by one party to the other will immediately cease; (b) all\ + \ Fees owed by Customer to Google are immediately due upon receipt of the final electronic\ + \ bill; and (c) Customer will delete the Software and any content from the Services by the\ + \ termination effective date.\n\n11.5.2 The following will survive expiration or termination\ + \ of the Agreement: Section 2 (Payment Terms), Section 3.2 (License Requirements and Restrictions),\ + \ Section 4.5 (Data Use, Protection, and Privacy), Section 6 (Intellectual Property; Feedback),\ + \ Section 10 (Confidential Information), Section 11.5 (Effects of Termination), Section\ + \ 14 (Disclaimer), Section 15 (Indemnification), Section 16 (Limitation of Liability), Section\ + \ 19 (Miscellaneous), and Section 20 (Definitions).\n12. Publicity.\n\nCustomer may state\ + \ publicly that it is a customer of the Services, consistent with the Trademark Guidelines.\ + \ If Customer wants to display Google Brand Features in connection with its use of the Services,\ + \ Customer must obtain written permission from Google through the process specified in the\ + \ Trademark Guidelines. Google may include Customer’s name or Brand Features in a list of\ + \ Google customers, online or in promotional materials. Google may also verbally reference\ + \ Customer as a customer of the Services. Neither party needs approval if it is repeating\ + \ a public statement that is substantially similar to a previously-approved public statement.\ + \ Any use of a party’s Brand Features will inure to the benefit of the party holding Intellectual\ + \ Property Rights to those Brand Features. A party may revoke the other party’s right to\ + \ use its Brand Features under this Section with written notice to the other party and a\ + \ reasonable period to stop the use. Where applicable, Customer may use Google Maps Content\ + \ in accordance with the “Using Google Maps, Google Earth and Street View” permissions page\ + \ at https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy, which will\ + \ be considered “Google’s prior written consent” for the permitted uses.\n13. Representations\ + \ and Warranties.\n\nEach party represents and warrants that: (a) it has full power and\ + \ authority to enter into the Agreement; and (b) it will comply with Export Control Laws\ + \ and Anti-Bribery Laws applicable to its provision, receipt, or use, of the Services, as\ + \ applicable.\n14. Disclaimer.\n\n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO\ + \ THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES\ + \ OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF\ + \ MERCHANTABILITY, FITNESS FOR A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED\ + \ USE OF THE SERVICES OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION\ + \ ACCESSIBLE THROUGH THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES\ + \ EXPRESSLY STATED IN THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES\ + \ ARE PROVIDED FOR PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES\ + \ MAY DIFFER FROM ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION.\ + \ CUSTOMER MUST EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT THE\ + \ CUSTOMER APPLICATION IS SAFE FOR END USERS AND OTHER THIRD PARTIES.\n15. Indemnification.\n\ + \n15.1 By Customer. Unless prohibited by applicable law, Customer will defend Google and\ + \ its Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal\ + \ Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer’s\ + \ or an End User’s use of the Services in violation of the Agreement.\n\n15.2 By Google.\ + \ Google will defend Customer and its Affiliates participating under the Agreement (“Customer\ + \ Indemnified Parties”), and indemnify them against Indemnified Liabilities in any Third-Party\ + \ Legal Proceeding to the extent arising from an allegation that Customer Indemnified Parties'\ + \ use in accordance with the Agreement of Google Indemnified Materials infringes the third\ + \ party's Intellectual Property Rights.\n\n15.3 Exclusions. This Section 15 will not apply\ + \ to the extent the underlying allegation arises from (a) the indemnified party’s breach\ + \ of the Agreement or (b) a combination of the indemnifying party’s technology or Brand\ + \ Features with materials not provided by the indemnifying party, unless the combination\ + \ is required by the Agreement.\n\n15.4 Conditions. Sections 15.1 and 15.2 will apply only\ + \ to the extent:\n\n(a) The indemnified party has promptly notified the indemnifying party\ + \ in writing of any Allegation(s) that preceded the Third-Party Legal Proceeding and cooperates\ + \ reasonably with the indemnifying party to resolve the Allegation(s) and Third-Party Legal\ + \ Proceeding. If breach of this Section 15.4(a) prejudices the defense of the Third-Party\ + \ Legal Proceeding, the indemnifying party’s obligations under Section 15.1 or 15.2 (as\ + \ applicable) will be reduced in proportion to the prejudice.\n\n(b) The indemnified party\ + \ tenders sole control of the indemnified portion of the Third-Party Legal Proceeding to\ + \ the indemnifying party, subject to the following: (i) the indemnified party may appoint\ + \ its own non-controlling counsel, at its own expense; and (ii) any settlement requiring\ + \ the indemnified party to admit liability, pay money, or take (or refrain from taking)\ + \ any action, will require the indemnified party’s prior written consent, not to be unreasonably\ + \ withheld, conditioned, or delayed.\n\n15.5 Remedies.\n\n(a) If Google reasonably believes\ + \ the Services might infringe a third party’s Intellectual Property Rights, then Google\ + \ may, at its sole option and expense: (i) procure the right for Customer to continue using\ + \ the Services; (ii) modify the Services to make them non-infringing without materially\ + \ reducing their functionality; or (iii) replace the Services with a non-infringing, functionally\ + \ equivalent alternative.\n\n(b) If Google does not believe the remedies in Section 15.5(a)\ + \ are commercially reasonable, then Google may suspend or terminate Customer’s use of the\ + \ impacted Services.\n\n15.6 Sole Rights and Obligations. Without affecting either party’s\ + \ termination rights, this Section 15 states the parties’ sole and exclusive remedy under\ + \ this Agreement for any third party's Intellectual Property Rights Allegations and Third-Party\ + \ Legal Proceedings covered by this Section 15 (Indemnification).\n16. Limitation of Liability.\n\ + \n16.1 Limitation on Indirect Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW,\ + \ THE PARTIES AND GOOGLE’S LICENSORS, WILL NOT BE LIABLE UNDER THIS AGREEMENT FOR LOST REVENUES\ + \ OR PROFITS (WHETHER DIRECT OR INDIRECT), INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL,\ + \ EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE PARTY OR LICENSOR, AS APPLICABLE, KNEW OR\ + \ SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY\ + \ A REMEDY.\n\n16.2 Limitation on Amount of Liability. TO THE MAXIMUM EXTENT PERMITTED BY\ + \ APPLICABLE LAW, THE PARTIES AND GOOGLE’S LICENSORS, MAY NOT BE HELD LIABLE UNDER THIS\ + \ AGREEMENT FOR MORE THAN THE AMOUNT PAID BY CUSTOMER TO GOOGLE UNDER THIS AGREEMENT DURING\ + \ THE TWELVE MONTHS BEFORE THE EVENT GIVING RISE TO LIABILITY.\n\n16.3 Exceptions to Limitations.\ + \ These limitations of liability do not apply to breaches of confidentiality obligations,\ + \ violations of a party’s Intellectual Property Rights by the other party, or Customer's\ + \ payment obligations.\n17. Advertising.\n\nIn its sole discretion, Customer may configure\ + \ the Service to either display or not display advertisements served by Google.\n18. U.S.\ + \ Federal Agency Users.\n\nThe Services were developed solely at private expense and are\ + \ commercial computer software and related documentation within the meaning of the applicable\ + \ Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\n\ + 19.1 Notices. All notices must be in writing and addressed to the other party’s legal department\ + \ and primary point of contact. The email address for notices being sent to Google’s Legal\ + \ Department is legal-notices@google.com. Notice will be treated as given on receipt as\ + \ verified by written or automated receipt or by electronic log (as applicable).\n\n19.2\ + \ Assignment. Neither party may assign any part of this Agreement without the written consent\ + \ of the other, except to an Affiliate where: (a) the assignee has agreed in writing to\ + \ be bound by the terms of this Agreement; (b) the assigning party remains liable for obligations\ + \ under the Agreement if the assignee defaults on them; and (c) the assigning party has\ + \ notified the other party of the assignment. Any other attempt to assign is void.\n\n19.3\ + \ Change of Control. If a party experiences a change of Control (for example, through a\ + \ stock purchase or sale, merger, or other form of corporate transaction): (a) that party\ + \ will give written notice to the other party within 30 days after the change of Control;\ + \ and (b) the other party may immediately terminate this Agreement any time between the\ + \ change of Control and 30 days after it receives that written notice.\n\n19.4 Force Majeure.\ + \ Neither party will be liable for failure or delay in performance to the extent caused\ + \ by circumstances beyond its reasonable control, including acts of God, natural disasters,\ + \ terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations under\ + \ the Agreement but will remain liable to Customer for any subcontracted obligations.\n\n\ + 19.6 No Agency. This Agreement does not create any agency, partnership or joint venture\ + \ between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived\ + \ any rights by not exercising (or delaying the exercise of) any rights under this Agreement.\n\ + \n19.8 Severability. If any term (or part of a term) of this Agreement is invalid, illegal,\ + \ or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party\ + \ Beneficiaries. This Agreement does not confer any benefits on any third party unless it\ + \ expressly states that it does.\n\n19.10 Equitable Relief. Nothing in this Agreement will\ + \ limit either party’s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n19.11.1\ + \ For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county\ + \ or state government entity, then the Agreement will be silent regarding governing law\ + \ and venue.\n\n19.11.2 For U.S. Federal Government Entities. If Customer is a U.S. federal\ + \ government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO\ + \ THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA,\ + \ EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I)\ + \ THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA’S CONFLICT OF LAWS RULES) WILL\ + \ APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF\ + \ OR RELATING TO THIS AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION\ + \ IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n19.11.3\ + \ For All Other Entities. If Customer is any entity not listed in Section 19.11.1 or 19.11.2\ + \ then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR\ + \ THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE’S CONFLICT OF LAWS\ + \ RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA\ + \ COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\ + \n19.12 Amendments. Except as stated in Section 1.5.2 (Modifications; To the Agreement),\ + \ any amendment must be in writing, signed by both parties, and expressly state that it\ + \ is amending this Agreement.\n\n19.13 Entire Agreement. This Agreement sets out all terms\ + \ agreed between the parties and supersedes all other agreements between the parties relating\ + \ to its subject matter. In entering into this Agreement, neither party has relied on, and\ + \ neither party will have any right or remedy based on, any statement, representation or\ + \ warranty (whether made negligently or innocently), except those expressly stated in this\ + \ Agreement. The terms located at any URL referenced in this Agreement and the Documentation\ + \ are incorporated by reference into the Agreement. After the Effective Date, Google may\ + \ provide an updated URL in place of any URL in this Agreement.\n\n19.14 Conflicting Terms.\ + \ If there is a conflict between the documents that make up this Agreement, the documents\ + \ will control in the following order: the Agreement, and the terms at any URL. \n\n19.15\ + \ Conflicting Translations. If this Agreement is translated into any other language, and\ + \ there is a discrepancy between the English text and the translated text, the English text\ + \ will govern.\n20. Reseller Orders.\n\nThis Section applies if Customer orders the Services\ + \ from a Reseller under a Reseller Agreement (including the Reseller Order Form).\n\n20.1\ + \ Orders. If Customer orders Services from Reseller, then: (a) fees for the Services will\ + \ be set between Customer and Reseller, and any payments will be made directly to Reseller\ + \ under the Reseller Agreement; (b) Section 2 of this Agreement (Payment Terms) will not\ + \ apply to the Services; (c) any SLA obligation to Customer is subject to the terms of the\ + \ Reseller Agreement; and (d) Google will have no obligation to provide any SLA credits\ + \ to a Customer who orders Services from the Reseller.\n\n20.2 Conflicting Terms. If Customer\ + \ orders Google Maps Core Services from a Reseller and if any documents conflict, then the\ + \ documents will control in the following order: the Agreement, the terms at any URL (including\ + \ the URL Terms), Reseller Order Form. For example, if there is a conflict between the Maps\ + \ Service Specific Terms and the Reseller Order Form, the Maps Service Specific Terms will\ + \ control.\n\n20.3 Reseller as Administrator. At Customer's discretion, Reseller may access\ + \ Customer's Projects, Accounts, or the Services on behalf of Customer. As between Google\ + \ and Customer, Customer is solely responsible for: (a) any access by Reseller to Customer’s\ + \ Account(s), Project(s), or the Services; and (b) defining in the Reseller Agreement any\ + \ rights or obligations as between Reseller and Customer with respect to the Accounts, Projects,\ + \ or Services.\n\n20.4 Reseller Verification of Customer Application(s). Before providing\ + \ the Services, Reseller may also verify that Customer owns or controls the Customer Applications.\ + \ If Reseller determines that Customer does not own or control the Customer Applications,\ + \ then Google will have no obligation to provide the Services to Customer.\n21. Definitions.\n\ + \n\"Account\" means Customer’s Google Account.\n\n\"Admin Console\" means the online console(s)\ + \ and/or tool(s) provided by Google to Customer for administering the Services.\n\n\"Affiliate\"\ + \ means any entity that directly or indirectly Controls, is Controlled by, or is under common\ + \ Control with a party.\n\n\"Allegation\" means an unaffiliated third party’s allegation.\n\ + \n“Anti-Bribery Laws” means all applicable commercial and public anti-bribery laws, (for\ + \ example, the U.S. Foreign Corrupt Practices Act of 1977 and the UK Bribery Act 2010),\ + \ which prohibit corrupt offers of anything of value, either directly or indirectly, to\ + \ anyone, including government officials, to obtain or keep business or to secure any other\ + \ improper commercial advantage. “Government officials” include any government employee;\ + \ candidate for public office; and employee of government-owned or government-controlled\ + \ companies, public international organizations, and political parties.\n\n\"AUP\" or \"\ + Acceptable Use Policy\" means the then-current Acceptable Use Policy for the Services at:\ + \ https://cloud.google.com/maps-platform/terms/aup/.\n\n\"Brand Features\" means the trade\ + \ names, tradmarks, service marks, logos, domain names, and other distinctive brand features\ + \ of each party, respectively, as secured by such party.\n\n\"Committed Purchase(s)\" has\ + \ the meaning provided in the Maps Service Specific Terms.\n\n\"Confidential Information\"\ + \ means information that one party (or an Affiliate) discloses to the other party under\ + \ this Agreement, and which is marked as confidential or would normally under the circumstances\ + \ be considered confidential information. It does not include information that is independently\ + \ developed by the recipient, is rightfully given to the recipient by a third party without\ + \ confidentiality obligations, or becomes public through no fault of the recipient.\n\n\"\ + Control\" means control of greater than 50% of the voting rights or equity interests of\ + \ a party.\n\n\"Customer Application\" means any web domain or application (including all\ + \ source code and features) owned or controlled by Customer, or that Customer is authorized\ + \ to use.\n\n\"Customer End User\" or \"End User\" means an individual or entity that Customer\ + \ permits to use the Services or Customer Application(s).\n\n“Customer Indemnified Materials”\ + \ means the Customer Application and Customer Brand Features.\n\n\"Documentation\" means\ + \ the Google documentation (as may be updated) in the form generally made available by Google\ + \ for use with the Services at https://developers.google.com/maps/documentation.\n\n\"Emergency\ + \ Security Issue\" means either: (a) Customer’s or Customer End Users’ use of the Services\ + \ in violation of the AUP, which could disrupt: (i) the Services; (ii) other customers’\ + \ or their customer end users’ use of the Services; or (iii) the Google network or servers\ + \ used to provide the Services; or (b) unauthorized third party access to the Services.\n\ + \n\"Europe\" or \"European\" means European Economic Area or Switzerland.\n\n“Export Control\ + \ Laws” means all applicable export and re-export control laws and regulations, including\ + \ any applicable munitions- or defense-related regulations (for example, the International\ + \ Traffic in Arms Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual\ + \ Period\" means a calendar month or another period specified by Google in the Admin Console.\n\ + \n\"Fee Threshold\" means the threshold (as may be updated), as applicable for certain Services,\ + \ as set out in the Admin Console.\n\n“Feedback” means feedback or suggestions about the\ + \ Services provided by Customer to Google.\n\n\"Fees\" means the product of the amount of\ + \ Services used or ordered by Customer multiplied by the Prices, plus any applicable Taxes.\n\ + \n\"Google Indemnified Materials\" means Google's technology used to provide the Services\ + \ (excluding any open source software) and Google's Brand Features.\n\n\"Google Maps Content\"\ + \ means any content provided through the Services (whether created by Google or its third-party\ + \ licensors), including map and terrain data, imagery, traffic data, and places data (including\ + \ business listings).\n\n\"High Risk Activities\" means activities where the use or failure\ + \ of the Services could lead to death, personal injury, or environmental damage, including\ + \ (a) emergency response services; (b) autonomous and semi-autonomous vehicle or drone control;\ + \ (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation.\n\ + \n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it\ + \ may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means\ + \ any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs\ + \ finally awarded against the indemnified party and its Affiliates by a court of competent\ + \ jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual\ + \ Property Rights\" means current and future worldwide rights under patent, copyright, trade\ + \ secret, trademark, and moral rights laws, and other similar rights.\n\n\"Legal Process\"\ + \ means a data disclosure request made under law, governmental regulation, court order,\ + \ subpoena, warrant, governmental regulatory or agency request, or other valid legal authority,\ + \ legal procedure, or similar process.\n\n\"Maps Service Specific Terms\" means the then-current\ + \ terms specific to one or more Services at https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\ + \n\"Maps Technical Support Services\" means the technical support service provided by Google\ + \ to Customer under the then-current Maps Technical Support Services Guidelines.\n\n\"Maps\ + \ Technical Support Services Guidelines\" means the then-current technical support service\ + \ guidelines at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Package Purchase\"\ + \ has the meaning set out in the Maps Service Specific Terms.\n\n\"Personal Data\" has the\ + \ meaning provided in the General Data Protection Regulation (EU) 2016/679 of the European\ + \ Parliament and of the Council of April 27, 2016.\n\n\"Price\" means the then-current applicable\ + \ price(s) stated at https://cloud.google.com/maps-platform/pricing/sheet/.\n\n\"Prohibited\ + \ Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\ + \n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources\ + \ for a particular Customer Application.\n\n\"Reseller\" means, if applicable, the authorized\ + \ reseller that sells or supplies the Services to Customer.\n\n\"Reseller Agreement\" means,\ + \ if applicable, a separate, independent agreement between Customer and Reseller regarding\ + \ the Services.\n\n\"Reseller Order Form\" means an order form entered into by Reseller\ + \ and Customer, subject to the Reseller Agreement.\n\n\"Services\" and \"Google Maps Core\ + \ Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/.\ + \ The Services include the Google Maps Content and the Software.\n\n\"SLA\" or \"Service\ + \ Level Agreement\" means each of the then-current service level agreements at: https://cloud.google.com/maps-platform/terms/sla/.\n\ + \n\"Software\" means any downloadable tools, software development kits, or other computer\ + \ software provided by Google for use as part of the Services, including updates.\n\n\"\ + Taxes\" means any duties, customs fees, or taxes (other than Google’s income tax) associated\ + \ with the purchase of the Services, including any related penalties or interest.\n\n\"\ + Term\" has the meaning stated in Section 1.6 of this Agreement.\n\n“Terms URL” means the\ + \ following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party\ + \ Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated third party\ + \ before a court or government tribunal (including any appellate proceeding).\n\n\"Trademark\ + \ Guidelines\" means (a) Google’s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html;\ + \ and (b) the “Use of Trademarks” section of the “Using Google Maps, Google Earth and Street\ + \ View” permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark\ + \ policy.\n\n“URL Terms” means the following, which will control in the following order\ + \ if there is a conflict:\n\n(a) the Maps Service Specific Terms;\n\n(b) the SLA;\n\n(c)\ + \ the AUP;\n\n(d) the Maps Technical Support Services Guidelines;\n\n(e) the Google Maps/Google\ + \ Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and\n\n(f)\ + \ the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html." json: google-maps-tos-2018-07-09.json - yml: google-maps-tos-2018-07-09.yml + yaml: google-maps-tos-2018-07-09.yml html: google-maps-tos-2018-07-09.html - text: google-maps-tos-2018-07-09.LICENSE + license: google-maps-tos-2018-07-09.LICENSE - license_key: google-maps-tos-2018-07-19 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-07-19 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Google Maps Platform Terms of Service\n\nLast modified: July 19, 2018\n\nIf you have\ + \ entered into an offline variant of this Agreement, the terms below do not apply, and your\ + \ offline agreement governs your use of the Google Maps Core Services.\n\nGoogle Maps Platform\ + \ License Agreement\n\nThis Google Maps Platform License Agreement (the \"Agreement\") is\ + \ made and entered into between Google and the entity or person agreeing to these terms\ + \ (\"Customer\"). \"Google\" means either (i) Google Commerce Limited (“GCL”), a company\ + \ incorporated under the laws of Ireland, with offices at Gordon House, Barrow Street, Dublin\ + \ 4, Ireland, if Customer has a billing address in the EU and has chosen “non-business”\ + \ as the tax status/setting for its Google account, (ii) Google Ireland Limited, with offices\ + \ at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer's billing address is in\ + \ any country within Europe, the Middle East, or Africa (\"EMEA\"), (iii) Google Asia Pacific\ + \ Pte. Ltd., with offices at 70 Pasir Panjang Road, #03-71, Mapletree Business City II Singapore\ + \ 117371, if Customer's billing address is in any country within the Asia Pacific region\ + \ (\"APAC\") except as provided below for Customers with the billing address in Japan or\ + \ Australia, (iv) Google Cloud Japan G.K., with offices at Roppongi Hills Mori Tower, 10-1,\ + \ Roppongi 6-chome, Minato-ku Tokyo, if Customer’s billing address is in Japan, (v) Google\ + \ Australia Pty Ltd., with offices at Level 5, 48 Pirrama Road, Pyrmont, NSW 2009 Australia,\ + \ if Customer’s billing address is in Australia, or (vi) Google LLC, with offices at 1600\ + \ Amphitheatre Parkway, Mountain View, California 94043, if Customer's billing address is\ + \ in any country in the world other than those in EMEA and APAC.\n\nThis Agreement is effective\ + \ as of the date Customer clicks to accept the Agreement, or enters into a Reseller Agreement\ + \ if purchasing through a Reseller (the \"Effective Date\"). If you are accepting on behalf\ + \ of Customer, you represent and warrant that: (i) you have full legal authority to bind\ + \ Customer to this Agreement; (ii) you have read and understand this Agreement; and (iii)\ + \ you agree, on behalf of Customer, to this Agreement. If you do not have the legal authority\ + \ to bind Customer, please do not click to accept. This Agreement governs Customer's access\ + \ to and use of the Services.\n\nFor an offline variant of this Agreement, you may contact\ + \ Google for more information.\n1. Provision of the Services.\n\n1.1 Use of the Services\ + \ in Customer Applications. Google will provide the Services to Customer in accordance\ + \ with the applicable SLA, and Customer may use the Google Maps Core Services in Customer\ + \ Application(s) in accordance with Section 3 (License).\n\n1.2 Admin Console; Projects;\ + \ API Keys. Customer will administer the Services through the online Admin Console. To access\ + \ the Services, Customer must create Project(s) and use its API key(s) in accordance with\ + \ the Documentation.\n\n1.3 Accounts. Customer must have an Account to access the Admin\ + \ Console through which Customer may administer its use of the Services. Customer is responsible\ + \ for: (a) the information it provides in connection with the Account; (b) maintaining the\ + \ confidentiality and security of the Account and associated passwords; and (c) any use\ + \ of its Account.\n\n1.4 Customer Domains and Applications. Customer must list in the Admin\ + \ Console each authorized domain and application that uses the Services. Customer is responsible\ + \ for ensuring that only authorized domains and applications use the Services.\n\n1.5 New\ + \ Features and Services. Google may: (a) make new features or functionality available through\ + \ the Services and (b) add new services to the \"Services\" definition (by adding them at\ + \ the URL stated under that definition). Customer’s use of new features or functionality\ + \ may be contingent on Customer’s agreement to additional terms applicable to the new feature\ + \ or functionality.\n\n1.6 Modifications.\n\n1.6.1 To the Services. Google may make changes\ + \ to the Services, subject to Section 9 (Deprecation Policy), which may include adding,\ + \ updating, or discontinuing any Services or portion or feature(s) of the Services. Google\ + \ will notify Customer of any material change to the Services.\n\n1.6.2. To the Agreement.\ + \ Google may make changes to this Agreement, including pricing (and any linked documents).\ + \ Unless otherwise noted by Google, material changes to the Agreement will become effective\ + \ 30 days after notice is given, except if the changes apply to new functionality in which\ + \ case they will be effective immediately. Google will provide at least 90 days advance\ + \ notice for materially adverse changes to any SLAs by: (a) sending an email to Customer’s\ + \ primary point of contact; (b) posting a notice in the Admin Console; or (c) posting a\ + \ notice to the applicable SLA webpage. If Customer does not agree to the revised Agreement,\ + \ Customer should stop using the Services. Google will post any modification to this Agreement\ + \ to the Terms URL.\n2. Payment Terms.\n\n2.1 Free Quota. Certain Services are provided\ + \ to Customer without charge up to the Fee Threshold, as applicable.\n\n2.2 Online Billing.\ + \ At the end of the applicable Fee Accrual Period, Google will issue an electronic bill\ + \ to Customer for all charges accrued above the Fee Threshold based on (a) Customer’s use\ + \ of the Services during the previous Fee Accrual Period; (b) any Committed Purchases selected;\ + \ and (c) any Package Purchases selected. For use above the Fee Threshold, Customer will\ + \ be responsible for all Fees up to the amount set in the Account and will pay all Fees\ + \ in the currency set forth in the invoice. If Customer elects to pay by credit card, debit\ + \ card, or other non-invoiced form of payment, Google will charge (and Customer will pay)\ + \ all Fees immediately at the end of the Fee Accrual Period. If Customer elects to pay by\ + \ invoice (and Google agrees), all Fees are due as stated in the invoice. Customer’s obligation\ + \ to pay all Fees is non-cancellable. Google's measurement of Customer’s use of the Services\ + \ is final. Google has no obligation to provide multiple bills. Payments made via wire transfer\ + \ must include the bank information provided by Google. If Customer has entered into the\ + \ Agreement with GCL, Google may collect payments via Google Payment Limited, a company\ + \ incorporated in England and Wales with offices at Belgrave House, 76 Buckingham Palace\ + \ Road, London, SW1W 9TQ, United Kingdom.\n\n2.3 Taxes.\n\n2.3.1 Customer is responsible\ + \ for any Taxes, and Customer will pay Google for the Services without any reduction for\ + \ Taxes. If Google is obligated to collect or pay Taxes, the Taxes will be invoiced to Customer,\ + \ unless Customer provides Google with a timely and valid tax exemption certificate authorized\ + \ by the appropriate taxing authority. In some states the sales tax is due on the total\ + \ purchase price at the time of sale and must be invoiced and collected at the time of the\ + \ sale. If Customer is required by law to withhold any Taxes from its payments to Google,\ + \ Customer must provide Google with an official tax receipt or other appropriate documentation\ + \ to support such withholding. If under the applicable tax legislation the Services are\ + \ subject to local VAT and the Customer is required to make a withholding of local VAT from\ + \ amounts payable to Google, the value of Services calculated in accordance with the above\ + \ procedure will be increased (grossed up) by the Customer for the respective amount of\ + \ local VAT and the grossed up amount will be regarded as a VAT inclusive price. Local VAT\ + \ amount withheld from the VAT-inclusive price will be remitted to the applicable local\ + \ tax entity by the Customer and Customer will ensure that Google will receives payment\ + \ for its services for the net amount as would otherwise be due (the VAT inclusive price\ + \ less the local VAT withheld and remitted to applicable tax authority).\n\n2.3.2 If required\ + \ under applicable law, Customer will provide Google with applicable tax identification\ + \ information that Google may require to ensure its compliance with applicable tax regulations\ + \ and authorities in applicable jurisdictions. Customer will be liable to pay (or reimburse\ + \ Google for) any taxes, interest, penalties or fines arising out of any mis-declaration\ + \ by the Customer.\n\n2.4 Invoice Disputes & Refunds. Any invoice disputes must be submitted\ + \ before the payment due date. If the parties determine that certain billing inaccuracies\ + \ are attributable to Google, Google will not issue a corrected invoice, but will instead\ + \ issue a credit memo specifying the incorrect amount in the affected invoice. If the disputed\ + \ invoice has not yet been paid, Google will apply the credit memo amount to the disputed\ + \ invoice and Customer will be responsible for paying the resulting net balance due on that\ + \ invoice. To the fullest extent permitted by law, Customer waives all claims relating to\ + \ Fees unless claimed within 60 days after charged (this does not affect any Customer rights\ + \ with its credit card issuer). Refunds (if any) are at the discretion of Google and will\ + \ only be in the form of credit for the Services. Nothing in this Agreement obligates Google\ + \ to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. Late payments may\ + \ bear interest at the rate of 1.5% per month (or the highest rate permitted by law, if\ + \ less) from the payment due date until paid in full. Customer will be responsible for all\ + \ reasonable expenses (including attorneys’ fees) incurred by Google in collecting such\ + \ delinquent amounts. If Customer is late on payment for the Services, Google may suspend\ + \ the Services or terminate the Agreement for breach under Section 11.2 (Termination for\ + \ Breach).\n\n2.6 No Purchase Order Number Required. Google is not required to provide a\ + \ purchase order number on Google’s invoice (or otherwise).\n3. License.\n\n3.1 License\ + \ Grant. Subject to this Agreement's terms, during the Term, Google grants to Customer a\ + \ non-exclusive, non-transferable, non-sublicensable, license to use the Services in Customer\ + \ Application(s), which may be: (a) fee-based or non-fee-based; (b) public/external or private/internal;\ + \ (c) business-to-business or business-to-consumer; or (d) asset tracking.\n\n3.2 License\ + \ Requirements and Restrictions. The following are conditions of the license granted in\ + \ Section 3.1. In this Section 3.2, the phrase “Customer will not” means “Customer will\ + \ not, and will not permit a third party to”.\n\n3.2.2 General Restrictions. Unless Google\ + \ specifically agrees in writing, Customer will not: (a) copy, modify, create a derivative\ + \ work of, reverse engineer, decompile, translate, disassemble, or otherwise attempt to\ + \ extract any or all of the source code (except to the extent such restriction is expressly\ + \ prohibited by applicable law); (b) sublicense, transfer, or distribute any of the Services;\ + \ (c) sell, resell, or otherwise make the Services available as a commercial offering to\ + \ a third party; or (d) access or use the Services: (i) for High Risk Activities; (ii) in\ + \ a manner intended to avoid incurring Fees; (iii) for activities that are subject to the\ + \ International Traffic in Arms Regulations (ITAR) maintained by the United States Department\ + \ of State; (iv) on behalf of or for the benefit of any entity or person who is legally\ + \ prohibited from using the Services; or (v) to transmit, store, or process Protected Health\ + \ Information (as defined in and subject to HIPAA).\n\n3.2.3 Requirements for Using the\ + \ Services.\n\n(a) End User Terms and Privacy Policy. Customer’s End User terms of service\ + \ will state that End Users’ use of Google Maps is subject to the then-current Google Maps/Google\ + \ Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html and\ + \ Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n(b) Attribution.\ + \ Customer will display all attribution that (i) Google provides through the Services (including\ + \ branding, logos, and copyright and trademark notices); or (ii) is specified in the Maps\ + \ Service Specific Terms. Customer will not modify, obscure, or delete such attribution.\n\ + \n(c) Review of Customer Applications. At Google’s request, Customer will submit Customer\ + \ Application(s) and Project(s) to Google for review to ensure compliance with the Agreement\ + \ (including the AUP).\n\n3.2.4 Restrictions Against Misusing the Services.\n\n(a) No Scraping.\ + \ Customer will not extract, export, scrape, or cache Google Maps Content for use outside\ + \ the Services. For example, Customer will not:(i) pre-fetch, index, store, reshare, or\ + \ rehost Google Maps Content outside the services; (ii) bulk download geocodes; (iii) copy\ + \ business names, addresses, or user reviews; or (iv) use Google Maps Content with text-to-speech\ + \ services. Caching is permitted for certain Services as described in the Maps Service Specific\ + \ Terms.\n\n(b) No Creating Content From Google Maps Content. Customer will not create content\ + \ based on Google Maps Content, including tracing, digitizing, or creating other datasets\ + \ based on Google Maps Content.\n\n(c) No Re-Creating Google Products or Features. Customer\ + \ will not use the Services to create a product or service with features that are substantially\ + \ similar to or that re-create the features of another Google product or service. Customer’s\ + \ product or service must contain substantial, independent value and features beyond the\ + \ Google products or services. For example, Customer will not: (i) re-distribute the Google\ + \ Maps Core Services or pass them off as if they were Customer’s services; (ii) create a\ + \ substitute of the Google Maps Core Services, Google Maps, or Google Maps mobile apps,\ + \ or their features; (iii) use the Google Maps Core Services in a listings or directory\ + \ service or to create or augment an advertising product; (iv) combine data from the Directions\ + \ API, Geolocation API, and Maps SDK for Android to create real-time navigation functionality\ + \ substantially similar to the functionality provided by the Google Maps for Android mobile\ + \ app.\n\n(d) No Use With Non-Google Maps. Customer will not use the Google Maps Core Services\ + \ in a Customer Application that contains a non-Google map. For example, Customer will not\ + \ (i) display Places listings on a non-Google map, or (ii) display Street View imagery and\ + \ non-Google maps in the same Customer Application.\n\n(e) No Circumventing Fees. Customer\ + \ will not circumvent the applicable Fees. For example, Customer will not create multiple\ + \ billing accounts or Projects to avoid incurring Fees; prevent Google from accurately calculating\ + \ Customer’s Service usage levels; abuse any free Service quotas; or offer access to the\ + \ Services under a “time-sharing” or “service bureau” model.\n\n(f) No Use in Prohibited\ + \ Territories. Customer will not distribute or market in a Prohibited Territory any Customer\ + \ Application(s) that use the Google Maps Core Services.\n\n(g) No Use in Embedded Vehicle\ + \ Systems. Customer will not use the Google Maps Core Services in connection with any Customer\ + \ Application or device embedded in a vehicle. For example, Customer will not create a Customer\ + \ Application that (i) is embedded in an in-dashboard automotive infotainment system; and\ + \ (ii) allows End Users to request driving directions from the Directions API.\n\n(h) No\ + \ Modifying Search Results Integrity. Customer will not modify any of the Service’s search\ + \ results.\n\n(i) No Use for High Risk Activities. Customer will not use the Google Maps\ + \ Core Services for High Risk Activities.\n\n3.2.5 Benchmarking. Customer may not publicly\ + \ disclose directly or through a third party the results of any comparative or compatibility\ + \ testing, benchmarking, or evaluation of the Services (each, a “Test”), unless the disclosure\ + \ includes all information necessary for Google or a third party to replicate the Test.\ + \ If Customer conducts, or directs a third party to conduct, a Test of the Services and\ + \ publicly discloses the results directly or through a third party, then Google (or a Google\ + \ directed third party) may conduct Tests of any publicly available cloud products or services\ + \ provided by Customer and publicly disclose the results of any such Test (which disclosure\ + \ will include all information necessary for Customer or a third party to replicate the\ + \ Test).\n4. Customer Obligations. \n\n4.1 Customer Domains and Applications. Customer must\ + \ list in the Admin Console each authorized domain and application that uses the Services.\ + \ Customer is responsible for ensuring that only authorized domains and applications use\ + \ the Services.\n\n4.2 Compliance. Customer will: (a) ensure that Customer’s and its End\ + \ Users’ use of the Services complies with the Agreement, including the applicable Services’\ + \ AUP and URL Terms; and (b) use commercially reasonable efforts to prevent, promptly notify\ + \ Google of, and terminate any unauthorized use of or access to its Account(s) or the Services.\n\ + \n4.3 Documentation. Google may provide Documentation for Customer’s use of the Services.\ + \ The Documentation may specify restrictions (e.g. attribution or HTML restrictions) on\ + \ how the Services may be used and Customer will comply with any such restrictions specified.\n\ + \n4.4 Copyright Policy. Google provides information to help copyright holders manage their\ + \ intellectual property online, but Google cannot determine whether something is being used\ + \ legally or not without their input. Google responds to notices of alleged copyright infringement\ + \ and terminates accounts of repeat infringers according to applicable copyright laws including\ + \ in particular the process set out in the U.S. Digital Millennium Copyright Act. If Customer\ + \ thinks somebody is violating Customer’s or Customer End Users’ copyrights and wants to\ + \ notify Google, Customer can find information about submitting notices, and Google's policy\ + \ about responding to notices at https://www.google.com/dmca.html.\n\n4.5 Data Use, Protection,\ + \ and Privacy.\n\n4.5.1 Data Use and Retention. To provide the Services through the Customer\ + \ Application(s), Google must receive and collect data from End Users and Customer, including\ + \ search terms, IP addresses, and latitude/longitude coordinates. Customer acknowledges\ + \ and agrees that Google and its Affiliates may use and retain this data to provide and\ + \ improve Google products and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\ + \n4.5.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller\ + \ Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\ + \n4.5.3 General Privacy Requirements.\n\n(a) End User Privacy. Customer’s use of the Services\ + \ in the Customer Application will comply with applicable privacy laws, including laws regarding\ + \ Services that store and access Cookies on End Users’ devices. If Customer has End Users\ + \ in the European Economic Area, Customer will comply with the EU End User Consent Policy\ + \ at https://www.google.com/about/company/user-consent-policy.html.\n\n(b) End User Personal\ + \ Data. Through the normal functioning of the Google Maps Core Services, End Users provide\ + \ device identifiers and Personal Data directly to Google, subject to the Google Privacy\ + \ Policy at https://www.google.com/policies/privacy/. However, Customer acknowledges and\ + \ agrees that Customer will not provide these categories of data to Google.\n\n(c) End User\ + \ Location Privacy Requirements. To safeguard End Users’ location privacy, Customer will\ + \ ensure that the Customer Application(s): (i) notify End Users in advance of (y) the type(s)\ + \ of data that Customer intends to collect from the End Users or the End Users’ devices,\ + \ and (z) the combination and use of End User's location with any other data provider's\ + \ data; and (ii) will not obtain or cache any End User's location except with the End User's\ + \ express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions\ + \ Violations. Google may Suspend the Services without prior notice if Customer breaches\ + \ Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Violations or Emergency\ + \ Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP\ + \ Violations) and 5.2.2 (Emergency Security Issues). Any Suspension under those Sections\ + \ will be to the minimum extent and for the shortest duration required to: (a) prevent or\ + \ terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c)\ + \ comply with applicable law.\n\n5.2.1 AUP Violations. If Google becomes aware that Customer’s\ + \ or any End User’s use of the Services violates the AUP, Google will give Customer notice\ + \ of such violation by requesting that Customer correct the violation. If Customer fails\ + \ to correct such violation within 24 hours, or if Google is otherwise required by applicable\ + \ law to take action, then Google may Suspend all or part of Customer’s use of the Services.\n\ + \n5.2.2 Emergency Security Issues. Google may immediately Suspend Customer’s use of the\ + \ Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend\ + \ such use immediately to comply with applicable law. At Customer’s request, unless prohibited\ + \ by applicable law, Google will notify Customer of the basis for the Suspension as soon\ + \ as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights\ + \ Infringement. If the Customer Application is alleged to infringe a third party’s Intellectual\ + \ Property Rights, Google may require Customer to suspend distributing or selling the Customer\ + \ Application on 30 days’ written notice until such allegation is fully resolved. In any\ + \ event, this Section 5.3 does not reduce Customer’s obligations under Section 15 (Indemnification).\n\ + 6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as\ + \ expressly stated in this Agreement, this Agreement does not grant either party any rights,\ + \ implied or otherwise, to the other’s content or any of the other’s intellectual property.\ + \ As between the parties, Customer owns all Intellectual Property Rights in the Customer\ + \ Application, and Google owns all Intellectual Property Rights in the Services and Software.\n\ + \n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google\ + \ may use that information without obligation to Customer, and Customer irrevocably assigns\ + \ to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices\ + \ and License Terms.\n\nCertain components of the Services (including open source software)\ + \ are subject to third-party copyright and other Intellectual Property Rights, as specified\ + \ in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html;\ + \ and (b) separate, publicly-available third-party license terms, which Google will provide\ + \ to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will\ + \ provide Maps Technical Support Services to Customer in accordance with the Maps Technical\ + \ Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical\ + \ support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n9.1 Google\ + \ will notify Customer at least 12 months before making material discontinuance(s) or backwards\ + \ incompatible change(s) to the Services, unless Google reasonably determines that: (a)\ + \ Google cannot do so by law or by contract (including if there is a change in applicable\ + \ law or contract) or (b) continuing to provide the Services could create a (i) security\ + \ risk or (ii) substantial economic or technical burden.\n\n9.2 Section 9.1 applies to the\ + \ Services listed at https://cloud.google.com/maps-platform/terms/maps-deprecation/. If\ + \ Google deprecates any Services that are not listed at the above URL, Google will use commercially\ + \ reasonable efforts to minimize the adverse impacts of such deprecations.\n10. Confidential\ + \ Information.\n\n10.1 Obligations. The recipient will not disclose the Confidential Information,\ + \ except to Affiliates, employees, agents or professional advisors who need to know it and\ + \ who have agreed in writing (or in the case of professional advisors are otherwise bound)\ + \ to keep it confidential. Subject to Section 10.2 (Required Disclosure), the recipient\ + \ will ensure that those people and entities use the received Confidential Information only\ + \ to exercise rights and fulfill obligations under this Agreement, while using reasonable\ + \ care to keep it confidential.\n\n10.2 Required Disclosure. The recipient may disclose\ + \ the other party’s Confidential Information to the extent required by applicable Legal\ + \ Process; provided that the recipient uses commercially reasonable efforts to: (a) promptly\ + \ notify the other party of such disclosure before disclosing; and (b) comply with the other\ + \ party’s reasonable requests regarding its efforts to oppose the disclosure. Notwithstanding\ + \ the foregoing, subsections (a) and (b) above will not apply if the recipient determines\ + \ that complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii)\ + \ obstruct a governmental investigation; and/or (iii) lead to death or serious physical\ + \ harm to an individual. As between the parties, Customer is responsible for responding\ + \ to all third party requests concerning its use and Customer End Users’ use of the Services.\n\ + 11. Term and Termination.\n\n11.1 Agreement Term. The “Term” of this Agreement will begin\ + \ on the Effective Date and continue until the Agreement is terminated under this Section.\n\ + \n11.2 Termination for Breach. Either party may terminate this Agreement for breach if:\ + \ (a) the other party is in material breach of the Agreement and fails to cure that breach\ + \ within 30 days after receipt of written notice; or (b) the other party ceases its business\ + \ operations or becomes subject to insolvency proceedings and the proceedings are not dismissed\ + \ within 90 days. In addition, Google may terminate any, all, or any portion of the Services\ + \ or Projects, if Customer meets any of the conditions in subsections (a) or (b).\n\n11.3\ + \ Termination for Inactivity. Google reserves the right to terminate provision of Service(s)\ + \ to a Project on 30 days advance notice if, for more than 180 days, such Project (a) has\ + \ not made any requests to the Services from any Customer Applications; or (b) such Project\ + \ has not incurred any Fees for such Service(s).\n\n11.4 Termination for Convenience. Customer\ + \ may stop using the Services at any time. Subject to any financial commitments expressly\ + \ made by this Agreement, Customer may terminate this Agreement for its convenience at any\ + \ time on prior written notice and upon termination, must cease use of the applicable Services.\ + \ Google may terminate this Agreement for its convenience at any time without liability\ + \ to Customer.\n\n11.5 Effects of Termination. \n\n11.5.1 If the Agreement is terminated,\ + \ then: (a) the rights granted by one party to the other will immediately cease; (b) all\ + \ Fees owed by Customer to Google are immediately due upon receipt of the final electronic\ + \ bill; and (c) Customer will delete the Software and any content from the Services by the\ + \ termination effective date.\n\n11.5.2 The following will survive expiration or termination\ + \ of the Agreement: Section 2 (Payment Terms), Section 3.2 (License Requirements and Restrictions),\ + \ Section 4.5 (Data Use, Protection, and Privacy), Section 6 (Intellectual Property; Feedback),\ + \ Section 10 (Confidential Information), Section 11.5 (Effects of Termination), Section\ + \ 14 (Disclaimer), Section 15 (Indemnification), Section 16 (Limitation of Liability), Section\ + \ 19 (Miscellaneous), and Section 20 (Definitions).\n12. Publicity.\n\nCustomer may state\ + \ publicly that it is a customer of the Services, consistent with the Trademark Guidelines.\ + \ If Customer wants to display Google Brand Features in connection with its use of the Services,\ + \ Customer must obtain written permission from Google through the process specified in the\ + \ Trademark Guidelines. Google may include Customer’s name or Brand Features in a list of\ + \ Google customers, online or in promotional materials. Google may also verbally reference\ + \ Customer as a customer of the Services. Neither party needs approval if it is repeating\ + \ a public statement that is substantially similar to a previously-approved public statement.\ + \ Any use of a party’s Brand Features will inure to the benefit of the party holding Intellectual\ + \ Property Rights to those Brand Features. A party may revoke the other party’s right to\ + \ use its Brand Features under this Section with written notice to the other party and a\ + \ reasonable period to stop the use. Where applicable, Customer may use Google Maps Content\ + \ in accordance with the “Using Google Maps, Google Earth and Street View” permissions page\ + \ at https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy, which will\ + \ be considered “Google’s prior written consent” for the permitted uses.\n13. Representations\ + \ and Warranties.\n\nEach party represents and warrants that: (a) it has full power and\ + \ authority to enter into the Agreement; and (b) it will comply with Export Control Laws\ + \ and Anti-Bribery Laws applicable to its provision, receipt, or use, of the Services, as\ + \ applicable.\n14. Disclaimer.\n\n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO\ + \ THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES\ + \ OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF\ + \ MERCHANTABILITY, FITNESS FOR A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED\ + \ USE OF THE SERVICES OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION\ + \ ACCESSIBLE THROUGH THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES\ + \ EXPRESSLY STATED IN THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES\ + \ ARE PROVIDED FOR PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES\ + \ MAY DIFFER FROM ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION.\ + \ CUSTOMER MUST EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT THE\ + \ CUSTOMER APPLICATION IS SAFE FOR END USERS AND OTHER THIRD PARTIES.\n15. Indemnification.\n\ + \n15.1 By Customer. Unless prohibited by applicable law, Customer will defend Google and\ + \ its Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal\ + \ Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer’s\ + \ or an End User’s use of the Services in violation of the Agreement.\n\n15.2 By Google.\ + \ Google will defend Customer and its Affiliates participating under the Agreement (“Customer\ + \ Indemnified Parties”), and indemnify them against Indemnified Liabilities in any Third-Party\ + \ Legal Proceeding to the extent arising from an allegation that Customer Indemnified Parties'\ + \ use in accordance with the Agreement of Google Indemnified Materials infringes the third\ + \ party's Intellectual Property Rights.\n\n15.3 Exclusions. This Section 15 will not apply\ + \ to the extent the underlying allegation arises from (a) the indemnified party’s breach\ + \ of the Agreement or (b) a combination of the indemnifying party’s technology or Brand\ + \ Features with materials not provided by the indemnifying party, unless the combination\ + \ is required by the Agreement.\n\n15.4 Conditions. Sections 15.1 and 15.2 will apply only\ + \ to the extent:\n\n(a) The indemnified party has promptly notified the indemnifying party\ + \ in writing of any Allegation(s) that preceded the Third-Party Legal Proceeding and cooperates\ + \ reasonably with the indemnifying party to resolve the Allegation(s) and Third-Party Legal\ + \ Proceeding. If breach of this Section 15.4(a) prejudices the defense of the Third-Party\ + \ Legal Proceeding, the indemnifying party’s obligations under Section 15.1 or 15.2 (as\ + \ applicable) will be reduced in proportion to the prejudice.\n\n(b) The indemnified party\ + \ tenders sole control of the indemnified portion of the Third-Party Legal Proceeding to\ + \ the indemnifying party, subject to the following: (i) the indemnified party may appoint\ + \ its own non-controlling counsel, at its own expense; and (ii) any settlement requiring\ + \ the indemnified party to admit liability, pay money, or take (or refrain from taking)\ + \ any action, will require the indemnified party’s prior written consent, not to be unreasonably\ + \ withheld, conditioned, or delayed.\n\n15.5 Remedies.\n\n(a) If Google reasonably believes\ + \ the Services might infringe a third party’s Intellectual Property Rights, then Google\ + \ may, at its sole option and expense: (i) procure the right for Customer to continue using\ + \ the Services; (ii) modify the Services to make them non-infringing without materially\ + \ reducing their functionality; or (iii) replace the Services with a non-infringing, functionally\ + \ equivalent alternative.\n\n(b) If Google does not believe the remedies in Section 15.5(a)\ + \ are commercially reasonable, then Google may suspend or terminate Customer’s use of the\ + \ impacted Services.\n\n15.6 Sole Rights and Obligations. Without affecting either party’s\ + \ termination rights, this Section 15 states the parties’ sole and exclusive remedy under\ + \ this Agreement for any third party's Intellectual Property Rights Allegations and Third-Party\ + \ Legal Proceedings covered by this Section 15 (Indemnification).\n16. Limitation of Liability.\n\ + \n16.1 Limitation on Indirect Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW,\ + \ THE PARTIES AND GOOGLE’S LICENSORS, WILL NOT BE LIABLE UNDER THIS AGREEMENT FOR LOST REVENUES\ + \ OR PROFITS (WHETHER DIRECT OR INDIRECT), INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL,\ + \ EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE PARTY OR LICENSOR, AS APPLICABLE, KNEW OR\ + \ SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY\ + \ A REMEDY.\n\n16.2 Limitation on Amount of Liability. TO THE MAXIMUM EXTENT PERMITTED BY\ + \ APPLICABLE LAW, THE PARTIES AND GOOGLE’S LICENSORS, MAY NOT BE HELD LIABLE UNDER THIS\ + \ AGREEMENT FOR MORE THAN THE AMOUNT PAID BY CUSTOMER TO GOOGLE UNDER THIS AGREEMENT DURING\ + \ THE TWELVE MONTHS BEFORE THE EVENT GIVING RISE TO LIABILITY.\n\n16.3 Exceptions to Limitations.\ + \ These limitations of liability do not apply to breaches of confidentiality obligations,\ + \ violations of a party’s Intellectual Property Rights by the other party, or Customer's\ + \ payment obligations.\n17. Advertising.\n\nIn its sole discretion, Customer may configure\ + \ the Service to either display or not display advertisements served by Google.\n18. U.S.\ + \ Federal Agency Users.\n\nThe Services were developed solely at private expense and are\ + \ commercial computer software and related documentation within the meaning of the applicable\ + \ Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\n\ + 19.1 Notices. All notices must be in writing and addressed to the other party’s legal department\ + \ and primary point of contact. The email address for notices being sent to Google’s Legal\ + \ Department is legal-notices@google.com. Notice will be treated as given on receipt as\ + \ verified by written or automated receipt or by electronic log (as applicable).\n\n19.2\ + \ Assignment. Neither party may assign any part of this Agreement without the written consent\ + \ of the other, except to an Affiliate where: (a) the assignee has agreed in writing to\ + \ be bound by the terms of this Agreement; (b) the assigning party remains liable for obligations\ + \ under the Agreement if the assignee defaults on them; and (c) the assigning party has\ + \ notified the other party of the assignment. Any other attempt to assign is void.\n\n19.3\ + \ Change of Control. If a party experiences a change of Control (for example, through a\ + \ stock purchase or sale, merger, or other form of corporate transaction): (a) that party\ + \ will give written notice to the other party within 30 days after the change of Control;\ + \ and (b) the other party may immediately terminate this Agreement any time between the\ + \ change of Control and 30 days after it receives that written notice.\n\n19.4 Force Majeure.\ + \ Neither party will be liable for failure or delay in performance to the extent caused\ + \ by circumstances beyond its reasonable control, including acts of God, natural disasters,\ + \ terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations under\ + \ the Agreement but will remain liable to Customer for any subcontracted obligations.\n\n\ + 19.6 No Agency. This Agreement does not create any agency, partnership or joint venture\ + \ between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived\ + \ any rights by not exercising (or delaying the exercise of) any rights under this Agreement.\n\ + \n19.8 Severability. If any term (or part of a term) of this Agreement is invalid, illegal,\ + \ or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party\ + \ Beneficiaries. This Agreement does not confer any benefits on any third party unless it\ + \ expressly states that it does.\n\n19.10 Equitable Relief. Nothing in this Agreement will\ + \ limit either party’s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n19.11.1\ + \ For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county\ + \ or state government entity, then the Agreement will be silent regarding governing law\ + \ and venue.\n\n19.11.2 For U.S. Federal Government Entities. If Customer is a U.S. federal\ + \ government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO\ + \ THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA,\ + \ EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I)\ + \ THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA’S CONFLICT OF LAWS RULES) WILL\ + \ APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF\ + \ OR RELATING TO THIS AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION\ + \ IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n19.11.3\ + \ For All Other Entities. If Customer is any entity not listed in Section 19.11.1 or 19.11.2\ + \ then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR\ + \ THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE’S CONFLICT OF LAWS\ + \ RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA\ + \ COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\ + \n19.12 Amendments. Except as stated in Section 1.5.2 (Modifications; To the Agreement),\ + \ any amendment must be in writing, signed by both parties, and expressly state that it\ + \ is amending this Agreement.\n\n19.13 Entire Agreement. This Agreement sets out all terms\ + \ agreed between the parties and supersedes all other agreements between the parties relating\ + \ to its subject matter. In entering into this Agreement, neither party has relied on, and\ + \ neither party will have any right or remedy based on, any statement, representation or\ + \ warranty (whether made negligently or innocently), except those expressly stated in this\ + \ Agreement. The terms located at any URL referenced in this Agreement and the Documentation\ + \ are incorporated by reference into the Agreement. After the Effective Date, Google may\ + \ provide an updated URL in place of any URL in this Agreement.\n\n19.14 Conflicting Terms.\ + \ If there is a conflict between the documents that make up this Agreement, the documents\ + \ will control in the following order: the Agreement, and the terms at any URL. \n\n19.15\ + \ Conflicting Translations. If this Agreement is translated into any other language, and\ + \ there is a discrepancy between the English text and the translated text, the English text\ + \ will govern.\n20. Reseller Orders.\n\nThis Section applies if Customer orders the Services\ + \ from a Reseller under a Reseller Agreement (including the Reseller Order Form).\n\n20.1\ + \ Orders. If Customer orders Services from Reseller, then: (a) fees for the Services will\ + \ be set between Customer and Reseller, and any payments will be made directly to Reseller\ + \ under the Reseller Agreement; (b) Section 2 of this Agreement (Payment Terms) will not\ + \ apply to the Services; (c) Customer will receive any applicable SLA credits from Reseller,\ + \ if owed to Customer in accordance with the SLA; and (d) Google will have no obligation\ + \ to provide any SLA credits to a Customer who orders Services from the Reseller.\n\n20.2\ + \ Conflicting Terms. If Customer orders Google Maps Core Services from a Reseller and if\ + \ any documents conflict, then the documents will control in the following order: the Agreement,\ + \ the terms at any URL (including the URL Terms), Reseller Order Form. For example, if there\ + \ is a conflict between the Maps Service Specific Terms and the Reseller Order Form, the\ + \ Maps Service Specific Terms will control.\n\n20.3 Reseller as Administrator. At Customer's\ + \ discretion, Reseller may access Customer's Projects, Accounts, or the Services on behalf\ + \ of Customer. As between Google and Customer, Customer is solely responsible for: (a) any\ + \ access by Reseller to Customer’s Account(s), Project(s), or the Services; and (b) defining\ + \ in the Reseller Agreement any rights or obligations as between Reseller and Customer with\ + \ respect to the Accounts, Projects, or Services.\n\n20.4 Reseller Verification of Customer\ + \ Application(s). Before providing the Services, Reseller may also verify that Customer\ + \ owns or controls the Customer Applications. If Reseller determines that Customer does\ + \ not own or control the Customer Applications, then Google will have no obligation to provide\ + \ the Services to Customer.\n21. Definitions.\n\n\"Account\" means Customer’s Google Account.\n\ + \n\"Admin Console\" means the online console(s) and/or tool(s) provided by Google to Customer\ + \ for administering the Services.\n\n\"Affiliate\" means any entity that directly or indirectly\ + \ Controls, is Controlled by, or is under common Control with a party.\n\n\"Allegation\"\ + \ means an unaffiliated third party’s allegation.\n\n“Anti-Bribery Laws” means all applicable\ + \ commercial and public anti-bribery laws, (for example, the U.S. Foreign Corrupt Practices\ + \ Act of 1977 and the UK Bribery Act 2010), which prohibit corrupt offers of anything of\ + \ value, either directly or indirectly, to anyone, including government officials, to obtain\ + \ or keep business or to secure any other improper commercial advantage. “Government officials”\ + \ include any government employee; candidate for public office; and employee of government-owned\ + \ or government-controlled companies, public international organizations, and political\ + \ parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the then-current Acceptable Use\ + \ Policy for the Services at: https://cloud.google.com/maps-platform/terms/aup/.\n\n\"\ + Brand Features\" means the trade names, tradmarks, service marks, logos, domain names, and\ + \ other distinctive brand features of each party, respectively, as secured by such party.\n\ + \n\"Committed Purchase(s)\" has the meaning provided in the Maps Service Specific Terms.\n\ + \n\"Confidential Information\" means information that one party (or an Affiliate) discloses\ + \ to the other party under this Agreement, and which is marked as confidential or would\ + \ normally under the circumstances be considered confidential information. It does not include\ + \ information that is independently developed by the recipient, is rightfully given to the\ + \ recipient by a third party without confidentiality obligations, or becomes public through\ + \ no fault of the recipient.\n\n\"Control\" means control of greater than 50% of the voting\ + \ rights or equity interests of a party.\n\n\"Customer Application\" means any web domain\ + \ or application (including all source code and features) owned or controlled by Customer,\ + \ or that Customer is authorized to use.\n\n\"Customer End User\" or \"End User\" means\ + \ an individual or entity that Customer permits to use the Services or Customer Application(s).\n\ + \n“Customer Indemnified Materials” means the Customer Application and Customer Brand Features.\n\ + \n\"Documentation\" means the Google documentation (as may be updated) in the form generally\ + \ made available by Google for use with the Services at https://developers.google.com/maps/documentation.\n\ + \n\"Emergency Security Issue\" means either: (a) Customer’s or Customer End Users’ use of\ + \ the Services in violation of the AUP, which could disrupt: (i) the Services; (ii) other\ + \ customers’ or their customer end users’ use of the Services; or (iii) the Google network\ + \ or servers used to provide the Services; or (b) unauthorized third party access to the\ + \ Services.\n\n\"Europe\" or \"European\" means European Economic Area or Switzerland.\n\ + \n“Export Control Laws” means all applicable export and re-export control laws and regulations,\ + \ including any applicable munitions- or defense-related regulations (for example, the International\ + \ Traffic in Arms Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual\ + \ Period\" means a calendar month or another period specified by Google in the Admin Console.\n\ + \n\"Fee Threshold\" means the threshold (as may be updated), as applicable for certain Services,\ + \ as set out in the Admin Console.\n\n“Feedback” means feedback or suggestions about the\ + \ Services provided by Customer to Google.\n\n\"Fees\" means the product of the amount of\ + \ Services used or ordered by Customer multiplied by the Prices, plus any applicable Taxes.\n\ + \n\"Google Indemnified Materials\" means Google's technology used to provide the Services\ + \ (excluding any open source software) and Google's Brand Features.\n\n\"Google Maps Content\"\ + \ means any content provided through the Services (whether created by Google or its third-party\ + \ licensors), including map and terrain data, imagery, traffic data, and places data (including\ + \ business listings).\n\n\"High Risk Activities\" means activities where the use or failure\ + \ of the Services could lead to death, personal injury, or environmental damage, including\ + \ (a) emergency response services; (b) autonomous and semi-autonomous vehicle or drone control;\ + \ (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation.\n\ + \n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it\ + \ may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means\ + \ any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs\ + \ finally awarded against the indemnified party and its Affiliates by a court of competent\ + \ jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual\ + \ Property Rights\" means current and future worldwide rights under patent, copyright, trade\ + \ secret, trademark, and moral rights laws, and other similar rights.\n\n\"Legal Process\"\ + \ means a data disclosure request made under law, governmental regulation, court order,\ + \ subpoena, warrant, governmental regulatory or agency request, or other valid legal authority,\ + \ legal procedure, or similar process.\n\n\"Maps Service Specific Terms\" means the then-current\ + \ terms specific to one or more Services at https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\ + \n\"Maps Technical Support Services\" means the technical support service provided by Google\ + \ to Customer under the then-current Maps Technical Support Services Guidelines.\n\n\"Maps\ + \ Technical Support Services Guidelines\" means the then-current technical support service\ + \ guidelines at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Package Purchase\"\ + \ has the meaning set out in the Maps Service Specific Terms.\n\n\"Personal Data\" has the\ + \ meaning provided in the General Data Protection Regulation (EU) 2016/679 of the European\ + \ Parliament and of the Council of April 27, 2016.\n\n\"Price\" means the then-current applicable\ + \ price(s) stated at https://cloud.google.com/maps-platform/pricing/sheet/.\n\n\"Prohibited\ + \ Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\ + \n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources\ + \ for a particular Customer Application.\n\n\"Reseller\" means, if applicable, the authorized\ + \ reseller that sells or supplies the Services to Customer.\n\n\"Reseller Agreement\" means,\ + \ if applicable, a separate, independent agreement between Customer and Reseller regarding\ + \ the Services.\n\n\"Reseller Order Form\" means an order form entered into by Reseller\ + \ and Customer, subject to the Reseller Agreement.\n\n\"Services\" and \"Google Maps Core\ + \ Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/.\ + \ The Services include the Google Maps Content and the Software.\n\n\"SLA\" or \"Service\ + \ Level Agreement\" means each of the then-current service level agreements at: https://cloud.google.com/maps-platform/terms/sla/.\n\ + \n\"Software\" means any downloadable tools, software development kits, or other computer\ + \ software provided by Google for use as part of the Services, including updates.\n\n\"\ + Taxes\" means any duties, customs fees, or taxes (other than Google’s income tax) associated\ + \ with the purchase of the Services, including any related penalties or interest.\n\n\"\ + Term\" has the meaning stated in Section 1.6 of this Agreement.\n\n“Terms URL” means the\ + \ following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party\ + \ Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated third party\ + \ before a court or government tribunal (including any appellate proceeding).\n\n\"Trademark\ + \ Guidelines\" means (a) Google’s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html;\ + \ and (b) the “Use of Trademarks” section of the “Using Google Maps, Google Earth and Street\ + \ View” permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark\ + \ policy.\n\n“URL Terms” means the following, which will control in the following order\ + \ if there is a conflict:\n\n(a) the Maps Service Specific Terms;\n\n(b) the SLA;\n\n(c)\ + \ the AUP;\n\n(d) the Maps Technical Support Services Guidelines;\n\n(e) the Google Maps/Google\ + \ Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and\n\n(f)\ + \ the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html." json: google-maps-tos-2018-07-19.json - yml: google-maps-tos-2018-07-19.yml + yaml: google-maps-tos-2018-07-19.yml html: google-maps-tos-2018-07-19.html - text: google-maps-tos-2018-07-19.LICENSE + license: google-maps-tos-2018-07-19.LICENSE - license_key: google-maps-tos-2018-10-01 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-10-01 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Google Maps Platform Terms of Service\n\nLast modified: October 1, 2018\n\nIf you have\ + \ entered into an offline variant of this Agreement, the terms below do not apply, and your\ + \ offline agreement governs your use of the Google Maps Core Services.\n\nGoogle Maps Platform\ + \ License Agreement\n\nThis Google Maps Platform License Agreement (the \"Agreement\") is\ + \ made and entered into between Google and the entity or person agreeing to these terms\ + \ (\"Customer\"). \"Google\" means either (i) Google Commerce Limited (“GCL”), a company\ + \ incorporated under the laws of Ireland, with offices at Gordon House, Barrow Street, Dublin\ + \ 4, Ireland, if Customer has a billing address in the EU and has chosen “non-business”\ + \ as the tax status/setting for its Google account, (ii) Google Ireland Limited, with offices\ + \ at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer's billing address is in\ + \ any country within Europe, the Middle East, or Africa (\"EMEA\"), (iii) Google Asia Pacific\ + \ Pte. Ltd., with offices at 70 Pasir Panjang Road, #03-71, Mapletree Business City II Singapore\ + \ 117371, if Customer's billing address is in any country within the Asia Pacific region\ + \ (\"APAC\") except as provided below for Customers with the billing address in Japan, New\ + \ Zealand, or Australia, (iv) Google Cloud Japan G.K., with offices at Roppongi Hills Mori\ + \ Tower, 10-1, Roppongi 6-chome, Minato-ku Tokyo, if Customer’s billing address is in Japan,\ + \ (v) Google Australia Pty Ltd., with offices at Level 5, 48 Pirrama Road, Pyrmont, NSW\ + \ 2009 Australia, if Customer’s billing address is in Australia, or (vi) Google LLC, with\ + \ offices at 1600 Amphitheatre Parkway, Mountain View, California 94043, if Customer's billing\ + \ address is in any country in the world other than those in EMEA and APAC. For Customers\ + \ with a billing address in New Zealand, as of November 1, 2018, this Agreement is made\ + \ and entered into by and between Customer and Google New Zealand Limited, with offices\ + \ at PWC Tower, Level 27, 188 Quay Street, Auckland, New Zealand 1010, as an authorized\ + \ reseller in New Zealand of the Services and “Google” means Google Asia Pacific Pte. Ltd.\ + \ and/or its affiliates (including Google New Zealand Limited) as the context requires.\n\ + \nThis Agreement is effective as of the date Customer clicks to accept the Agreement, or\ + \ enters into a Reseller Agreement if purchasing through a Reseller (the \"Effective Date\"\ + ). If you are accepting on behalf of Customer, you represent and warrant that: (i) you have\ + \ full legal authority to bind Customer to this Agreement; (ii) you have read and understand\ + \ this Agreement; and (iii) you agree, on behalf of Customer, to this Agreement. If you\ + \ do not have the legal authority to bind Customer, please do not click to accept. This\ + \ Agreement governs Customer's access to and use of the Services.\n\nFor an offline variant\ + \ of this Agreement, you may contact Google for more information.\n1. Provision of the Services.\n\ + \n1.1 Use of the Services in Customer Applications. Google will provide the Services to\ + \ Customer in accordance with the applicable SLA, and Customer may use the Google Maps Core\ + \ Services in Customer Application(s) in accordance with Section 3 (License).\n\n1.2 Admin\ + \ Console; Projects; API Keys. Customer will administer the Services through the online\ + \ Admin Console. To access the Services, Customer must create Project(s) and use its API\ + \ key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer must have an Account\ + \ to access the Admin Console through which Customer may administer its use of the Services.\ + \ Customer is responsible for: (a) the information it provides in connection with the Account;\ + \ (b) maintaining the confidentiality and security of the Account and associated passwords;\ + \ and (c) any use of its Account.\n\n1.4 Customer Domains and Applications. Customer must\ + \ list in the Admin Console each authorized domain and application that uses the Services.\ + \ Customer is responsible for ensuring that only authorized domains and applications use\ + \ the Services.\n\n1.5 New Features and Services. Google may: (a) make new features or functionality\ + \ available through the Services and (b) add new services to the \"Services\" definition\ + \ (by adding them at the URL stated under that definition). Customer’s use of new features\ + \ or functionality may be contingent on Customer’s agreement to additional terms applicable\ + \ to the new feature or functionality.\n\n1.6 Modifications.\n\n1.6.1 To the Services. Google\ + \ may make changes to the Services, subject to Section 9 (Deprecation Policy), which may\ + \ include adding, updating, or discontinuing any Services or portion or feature(s) of the\ + \ Services. Google will notify Customer of any material change to the Services.\n\n1.6.2.\ + \ To the Agreement. Google may make changes to this Agreement, including pricing (and any\ + \ linked documents). Unless otherwise noted by Google, material changes to the Agreement\ + \ will become effective 30 days after notice is given, except if the changes apply to new\ + \ functionality in which case they will be effective immediately. Google will provide at\ + \ least 90 days advance notice for materially adverse changes to any SLAs by: (a) sending\ + \ an email to Customer’s primary point of contact; (b) posting a notice in the Admin Console;\ + \ or (c) posting a notice to the applicable SLA webpage. If Customer does not agree to the\ + \ revised Agreement, Customer should stop using the Services. Google will post any modification\ + \ to this Agreement to the Terms URL.\n2. Payment Terms.\n\n2.1 Free Quota. Certain Services\ + \ are provided to Customer without charge up to the Fee Threshold, as applicable.\n\n2.2\ + \ Online Billing. At the end of the applicable Fee Accrual Period, Google will issue an\ + \ electronic bill to Customer for all charges accrued above the Fee Threshold based on (a)\ + \ Customer’s use of the Services during the previous Fee Accrual Period; (b) any Committed\ + \ Purchases selected; and (c) any Package Purchases selected. For use above the Fee Threshold,\ + \ Customer will be responsible for all Fees up to the amount set in the Account and will\ + \ pay all Fees in the currency set forth in the invoice. If Customer elects to pay by credit\ + \ card, debit card, or other non-invoiced form of payment, Google will charge (and Customer\ + \ will pay) all Fees immediately at the end of the Fee Accrual Period. If Customer elects\ + \ to pay by invoice (and Google agrees), all Fees are due as stated in the invoice. Customer’s\ + \ obligation to pay all Fees is non-cancellable. Google's measurement of Customer’s use\ + \ of the Services is final. Google has no obligation to provide multiple bills. Payments\ + \ made via wire transfer must include the bank information provided by Google. If Customer\ + \ has entered into the Agreement with GCL, Google may collect payments via Google Payment\ + \ Limited, a company incorporated in England and Wales with offices at Belgrave House, 76\ + \ Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\n2.3 Taxes.\n\n2.3.1 Customer\ + \ is responsible for any Taxes, and Customer will pay Google for the Services without any\ + \ reduction for Taxes. If Google is obligated to collect or pay Taxes, the Taxes will be\ + \ invoiced to Customer, unless Customer provides Google with a timely and valid tax exemption\ + \ certificate authorized by the appropriate taxing authority. In some states the sales tax\ + \ is due on the total purchase price at the time of sale and must be invoiced and collected\ + \ at the time of the sale. If Customer is required by law to withhold any Taxes from its\ + \ payments to Google, Customer must provide Google with an official tax receipt or other\ + \ appropriate documentation to support such withholding. If under the applicable tax legislation\ + \ the Services are subject to local VAT and the Customer is required to make a withholding\ + \ of local VAT from amounts payable to Google, the value of Services calculated in accordance\ + \ with the above procedure will be increased (grossed up) by the Customer for the respective\ + \ amount of local VAT and the grossed up amount will be regarded as a VAT inclusive price.\ + \ Local VAT amount withheld from the VAT-inclusive price will be remitted to the applicable\ + \ local tax entity by the Customer and Customer will ensure that Google will receives payment\ + \ for its services for the net amount as would otherwise be due (the VAT inclusive price\ + \ less the local VAT withheld and remitted to applicable tax authority).\n\n2.3.2 If required\ + \ under applicable law, Customer will provide Google with applicable tax identification\ + \ information that Google may require to ensure its compliance with applicable tax regulations\ + \ and authorities in applicable jurisdictions. Customer will be liable to pay (or reimburse\ + \ Google for) any taxes, interest, penalties or fines arising out of any mis-declaration\ + \ by the Customer.\n\n2.4 Invoice Disputes & Refunds. Any invoice disputes must be submitted\ + \ before the payment due date. If the parties determine that certain billing inaccuracies\ + \ are attributable to Google, Google will not issue a corrected invoice, but will instead\ + \ issue a credit memo specifying the incorrect amount in the affected invoice. If the disputed\ + \ invoice has not yet been paid, Google will apply the credit memo amount to the disputed\ + \ invoice and Customer will be responsible for paying the resulting net balance due on that\ + \ invoice. To the fullest extent permitted by law, Customer waives all claims relating to\ + \ Fees unless claimed within 60 days after charged (this does not affect any Customer rights\ + \ with its credit card issuer). Refunds (if any) are at the discretion of Google and will\ + \ only be in the form of credit for the Services. Nothing in this Agreement obligates Google\ + \ to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. Late payments may\ + \ bear interest at the rate of 1.5% per month (or the highest rate permitted by law, if\ + \ less) from the payment due date until paid in full. Customer will be responsible for all\ + \ reasonable expenses (including attorneys’ fees) incurred by Google in collecting such\ + \ delinquent amounts. If Customer is late on payment for the Services, Google may suspend\ + \ the Services or terminate the Agreement for breach under Section 11.2 (Termination for\ + \ Breach).\n\n2.6 No Purchase Order Number Required. Google is not required to provide a\ + \ purchase order number on Google’s invoice (or otherwise).\n3. License.\n\n3.1 License\ + \ Grant. Subject to this Agreement's terms, during the Term, Google grants to Customer a\ + \ non-exclusive, non-transferable, non-sublicensable, license to use the Services in Customer\ + \ Application(s), which may be: (a) fee-based or non-fee-based; (b) public/external or private/internal;\ + \ (c) business-to-business or business-to-consumer; or (d) asset tracking.\n\n3.2 License\ + \ Requirements and Restrictions. The following are conditions of the license granted in\ + \ Section 3.1. In this Section 3.2, the phrase “Customer will not” means “Customer will\ + \ not, and will not permit a third party to”.\n\n3.2.2 General Restrictions. Unless Google\ + \ specifically agrees in writing, Customer will not: (a) copy, modify, create a derivative\ + \ work of, reverse engineer, decompile, translate, disassemble, or otherwise attempt to\ + \ extract any or all of the source code (except to the extent such restriction is expressly\ + \ prohibited by applicable law); (b) sublicense, transfer, or distribute any of the Services;\ + \ (c) sell, resell, or otherwise make the Services available as a commercial offering to\ + \ a third party; or (d) access or use the Services: (i) for High Risk Activities; (ii) in\ + \ a manner intended to avoid incurring Fees; (iii) for activities that are subject to the\ + \ International Traffic in Arms Regulations (ITAR) maintained by the United States Department\ + \ of State; (iv) on behalf of or for the benefit of any entity or person who is legally\ + \ prohibited from using the Services; or (v) to transmit, store, or process Protected Health\ + \ Information (as defined in and subject to HIPAA).\n\n3.2.3 Requirements for Using the\ + \ Services.\n\n(a) End User Terms and Privacy Policy. Customer’s End User terms of service\ + \ will state that End Users’ use of Google Maps is subject to the then-current Google Maps/Google\ + \ Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html and\ + \ Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n(b) Attribution.\ + \ Customer will display all attribution that (i) Google provides through the Services (including\ + \ branding, logos, and copyright and trademark notices); or (ii) is specified in the Maps\ + \ Service Specific Terms. Customer will not modify, obscure, or delete such attribution.\n\ + \n(c) Review of Customer Applications. At Google’s request, Customer will submit Customer\ + \ Application(s) and Project(s) to Google for review to ensure compliance with the Agreement\ + \ (including the AUP).\n\n3.2.4 Restrictions Against Misusing the Services.\n\n(a) No Scraping.\ + \ Customer will not extract, export, scrape, or cache Google Maps Content for use outside\ + \ the Services. For example, Customer will not:(i) pre-fetch, index, store, reshare, or\ + \ rehost Google Maps Content outside the services; (ii) bulk download geocodes; (iii) copy\ + \ business names, addresses, or user reviews; or (iv) use Google Maps Content with text-to-speech\ + \ services. Caching is permitted for certain Services as described in the Maps Service Specific\ + \ Terms.\n\n(b) No Creating Content From Google Maps Content. Customer will not create content\ + \ based on Google Maps Content, including tracing, digitizing, or creating other datasets\ + \ based on Google Maps Content.\n\n(c) No Re-Creating Google Products or Features. Customer\ + \ will not use the Services to create a product or service with features that are substantially\ + \ similar to or that re-create the features of another Google product or service. Customer’s\ + \ product or service must contain substantial, independent value and features beyond the\ + \ Google products or services. For example, Customer will not: (i) re-distribute the Google\ + \ Maps Core Services or pass them off as if they were Customer’s services; (ii) create a\ + \ substitute of the Google Maps Core Services, Google Maps, or Google Maps mobile apps,\ + \ or their features; (iii) use the Google Maps Core Services in a listings or directory\ + \ service or to create or augment an advertising product; (iv) combine data from the Directions\ + \ API, Geolocation API, and Maps SDK for Android to create real-time navigation functionality\ + \ substantially similar to the functionality provided by the Google Maps for Android mobile\ + \ app.\n\n(d) No Use With Non-Google Maps. Customer will not use the Google Maps Core Services\ + \ in a Customer Application that contains a non-Google map. For example, Customer will not\ + \ (i) display Places listings on a non-Google map, or (ii) display Street View imagery and\ + \ non-Google maps in the same Customer Application.\n\n(e) No Circumventing Fees. Customer\ + \ will not circumvent the applicable Fees. For example, Customer will not create multiple\ + \ billing accounts or Projects to avoid incurring Fees; prevent Google from accurately calculating\ + \ Customer’s Service usage levels; abuse any free Service quotas; or offer access to the\ + \ Services under a “time-sharing” or “service bureau” model.\n\n(f) No Use in Prohibited\ + \ Territories. Customer will not distribute or market in a Prohibited Territory any Customer\ + \ Application(s) that use the Google Maps Core Services.\n\n(g) No Use in Embedded Vehicle\ + \ Systems. Customer will not use the Google Maps Core Services in connection with any Customer\ + \ Application or device embedded in a vehicle. For example, Customer will not create a Customer\ + \ Application that (i) is embedded in an in-dashboard automotive infotainment system; and\ + \ (ii) allows End Users to request driving directions from the Directions API.\n\n(h) No\ + \ Modifying Search Results Integrity. Customer will not modify any of the Service’s search\ + \ results.\n\n(i) No Use for High Risk Activities. Customer will not use the Google Maps\ + \ Core Services for High Risk Activities.\n\n3.2.5 Benchmarking. Customer may not publicly\ + \ disclose directly or through a third party the results of any comparative or compatibility\ + \ testing, benchmarking, or evaluation of the Services (each, a “Test”), unless the disclosure\ + \ includes all information necessary for Google or a third party to replicate the Test.\ + \ If Customer conducts, or directs a third party to conduct, a Test of the Services and\ + \ publicly discloses the results directly or through a third party, then Google (or a Google\ + \ directed third party) may conduct Tests of any publicly available cloud products or services\ + \ provided by Customer and publicly disclose the results of any such Test (which disclosure\ + \ will include all information necessary for Customer or a third party to replicate the\ + \ Test).\n4. Customer Obligations. \n\n4.1 Customer Domains and Applications. Customer must\ + \ list in the Admin Console each authorized domain and application that uses the Services.\ + \ Customer is responsible for ensuring that only authorized domains and applications use\ + \ the Services.\n\n4.2 Compliance. Customer will: (a) ensure that Customer’s and its End\ + \ Users’ use of the Services complies with the Agreement, including the applicable Services’\ + \ AUP and URL Terms; and (b) use commercially reasonable efforts to prevent, promptly notify\ + \ Google of, and terminate any unauthorized use of or access to its Account(s) or the Services.\n\ + \n4.3 Documentation. Google may provide Documentation for Customer’s use of the Services.\ + \ The Documentation may specify restrictions (e.g. attribution or HTML restrictions) on\ + \ how the Services may be used and Customer will comply with any such restrictions specified.\n\ + \n4.4 Copyright Policy. Google provides information to help copyright holders manage their\ + \ intellectual property online, but Google cannot determine whether something is being used\ + \ legally or not without their input. Google responds to notices of alleged copyright infringement\ + \ and terminates accounts of repeat infringers according to applicable copyright laws including\ + \ in particular the process set out in the U.S. Digital Millennium Copyright Act. If Customer\ + \ thinks somebody is violating Customer’s or Customer End Users’ copyrights and wants to\ + \ notify Google, Customer can find information about submitting notices, and Google's policy\ + \ about responding to notices at https://www.google.com/dmca.html.\n\n4.5 Data Use, Protection,\ + \ and Privacy.\n\n4.5.1 Data Use and Retention. To provide the Services through the Customer\ + \ Application(s), Google must receive and collect data from End Users and Customer, including\ + \ search terms, IP addresses, and latitude/longitude coordinates. Customer acknowledges\ + \ and agrees that Google and its Affiliates may use and retain this data to provide and\ + \ improve Google products and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\ + \n4.5.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller\ + \ Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\ + \n4.5.3 General Privacy Requirements.\n\n(a) End User Privacy. Customer’s use of the Services\ + \ in the Customer Application will comply with applicable privacy laws, including laws regarding\ + \ Services that store and access Cookies on End Users’ devices. If Customer has End Users\ + \ in the European Economic Area, Customer will comply with the EU End User Consent Policy\ + \ at https://www.google.com/about/company/user-consent-policy.html.\n\n(b) End User Personal\ + \ Data. Through the normal functioning of the Google Maps Core Services, End Users provide\ + \ device identifiers and Personal Data directly to Google, subject to the Google Privacy\ + \ Policy at https://www.google.com/policies/privacy/. However, Customer acknowledges and\ + \ agrees that Customer will not provide these categories of data to Google.\n\n(c) End User\ + \ Location Privacy Requirements. To safeguard End Users’ location privacy, Customer will\ + \ ensure that the Customer Application(s): (i) notify End Users in advance of (y) the type(s)\ + \ of data that Customer intends to collect from the End Users or the End Users’ devices,\ + \ and (z) the combination and use of End User's location with any other data provider's\ + \ data; and (ii) will not obtain or cache any End User's location except with the End User's\ + \ express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions\ + \ Violations. Google may Suspend the Services without prior notice if Customer breaches\ + \ Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Violations or Emergency\ + \ Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP\ + \ Violations) and 5.2.2 (Emergency Security Issues). Any Suspension under those Sections\ + \ will be to the minimum extent and for the shortest duration required to: (a) prevent or\ + \ terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c)\ + \ comply with applicable law.\n\n5.2.1 AUP Violations. If Google becomes aware that Customer’s\ + \ or any End User’s use of the Services violates the AUP, Google will give Customer notice\ + \ of such violation by requesting that Customer correct the violation. If Customer fails\ + \ to correct such violation within 24 hours, or if Google is otherwise required by applicable\ + \ law to take action, then Google may Suspend all or part of Customer’s use of the Services.\n\ + \n5.2.2 Emergency Security Issues. Google may immediately Suspend Customer’s use of the\ + \ Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend\ + \ such use immediately to comply with applicable law. At Customer’s request, unless prohibited\ + \ by applicable law, Google will notify Customer of the basis for the Suspension as soon\ + \ as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights\ + \ Infringement. If the Customer Application is alleged to infringe a third party’s Intellectual\ + \ Property Rights, Google may require Customer to suspend distributing or selling the Customer\ + \ Application on 30 days’ written notice until such allegation is fully resolved. In any\ + \ event, this Section 5.3 does not reduce Customer’s obligations under Section 15 (Indemnification).\n\ + 6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as\ + \ expressly stated in this Agreement, this Agreement does not grant either party any rights,\ + \ implied or otherwise, to the other’s content or any of the other’s intellectual property.\ + \ As between the parties, Customer owns all Intellectual Property Rights in the Customer\ + \ Application, and Google owns all Intellectual Property Rights in the Services and Software.\n\ + \n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google\ + \ may use that information without obligation to Customer, and Customer irrevocably assigns\ + \ to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices\ + \ and License Terms.\n\nCertain components of the Services (including open source software)\ + \ are subject to third-party copyright and other Intellectual Property Rights, as specified\ + \ in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html;\ + \ and (b) separate, publicly-available third-party license terms, which Google will provide\ + \ to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will\ + \ provide Maps Technical Support Services to Customer in accordance with the Maps Technical\ + \ Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical\ + \ support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n9.1 Google\ + \ will notify Customer at least 12 months before making material discontinuance(s) or backwards\ + \ incompatible change(s) to the Services, unless Google reasonably determines that: (a)\ + \ Google cannot do so by law or by contract (including if there is a change in applicable\ + \ law or contract) or (b) continuing to provide the Services could create a (i) security\ + \ risk or (ii) substantial economic or technical burden.\n\n9.2 Section 9.1 applies to the\ + \ Services listed at https://cloud.google.com/maps-platform/terms/maps-deprecation/. If\ + \ Google deprecates any Services that are not listed at the above URL, Google will use commercially\ + \ reasonable efforts to minimize the adverse impacts of such deprecations.\n10. Confidential\ + \ Information.\n\n10.1 Obligations. The recipient will not disclose the Confidential Information,\ + \ except to Affiliates, employees, agents or professional advisors who need to know it and\ + \ who have agreed in writing (or in the case of professional advisors are otherwise bound)\ + \ to keep it confidential. Subject to Section 10.2 (Required Disclosure), the recipient\ + \ will ensure that those people and entities use the received Confidential Information only\ + \ to exercise rights and fulfill obligations under this Agreement, while using reasonable\ + \ care to keep it confidential.\n\n10.2 Required Disclosure. The recipient may disclose\ + \ the other party’s Confidential Information to the extent required by applicable Legal\ + \ Process; provided that the recipient uses commercially reasonable efforts to: (a) promptly\ + \ notify the other party of such disclosure before disclosing; and (b) comply with the other\ + \ party’s reasonable requests regarding its efforts to oppose the disclosure. Notwithstanding\ + \ the foregoing, subsections (a) and (b) above will not apply if the recipient determines\ + \ that complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii)\ + \ obstruct a governmental investigation; and/or (iii) lead to death or serious physical\ + \ harm to an individual. As between the parties, Customer is responsible for responding\ + \ to all third party requests concerning its use and Customer End Users’ use of the Services.\n\ + 11. Term and Termination.\n\n11.1 Agreement Term. The “Term” of this Agreement will begin\ + \ on the Effective Date and continue until the Agreement is terminated under this Section.\n\ + \n11.2 Termination for Breach. Either party may terminate this Agreement for breach if:\ + \ (a) the other party is in material breach of the Agreement and fails to cure that breach\ + \ within 30 days after receipt of written notice; or (b) the other party ceases its business\ + \ operations or becomes subject to insolvency proceedings and the proceedings are not dismissed\ + \ within 90 days. In addition, Google may terminate any, all, or any portion of the Services\ + \ or Projects, if Customer meets any of the conditions in subsections (a) or (b).\n\n11.3\ + \ Termination for Inactivity. Google reserves the right to terminate provision of Service(s)\ + \ to a Project on 30 days advance notice if, for more than 180 days, such Project (a) has\ + \ not made any requests to the Services from any Customer Applications; or (b) such Project\ + \ has not incurred any Fees for such Service(s).\n\n11.4 Termination for Convenience. Customer\ + \ may stop using the Services at any time. Subject to any financial commitments expressly\ + \ made by this Agreement, Customer may terminate this Agreement for its convenience at any\ + \ time on prior written notice and upon termination, must cease use of the applicable Services.\ + \ Google may terminate this Agreement for its convenience at any time without liability\ + \ to Customer.\n\n11.5 Effects of Termination. \n\n11.5.1 If the Agreement is terminated,\ + \ then: (a) the rights granted by one party to the other will immediately cease; (b) all\ + \ Fees owed by Customer to Google are immediately due upon receipt of the final electronic\ + \ bill; and (c) Customer will delete the Software and any content from the Services by the\ + \ termination effective date.\n\n11.5.2 The following will survive expiration or termination\ + \ of the Agreement: Section 2 (Payment Terms), Section 3.2 (License Requirements and Restrictions),\ + \ Section 4.5 (Data Use, Protection, and Privacy), Section 6 (Intellectual Property; Feedback),\ + \ Section 10 (Confidential Information), Section 11.5 (Effects of Termination), Section\ + \ 14 (Disclaimer), Section 15 (Indemnification), Section 16 (Limitation of Liability), Section\ + \ 19 (Miscellaneous), and Section 20 (Definitions).\n12. Publicity.\n\nCustomer may state\ + \ publicly that it is a customer of the Services, consistent with the Trademark Guidelines.\ + \ If Customer wants to display Google Brand Features in connection with its use of the Services,\ + \ Customer must obtain written permission from Google through the process specified in the\ + \ Trademark Guidelines. Google may include Customer’s name or Brand Features in a list of\ + \ Google customers, online or in promotional materials. Google may also verbally reference\ + \ Customer as a customer of the Services. Neither party needs approval if it is repeating\ + \ a public statement that is substantially similar to a previously-approved public statement.\ + \ Any use of a party’s Brand Features will inure to the benefit of the party holding Intellectual\ + \ Property Rights to those Brand Features. A party may revoke the other party’s right to\ + \ use its Brand Features under this Section with written notice to the other party and a\ + \ reasonable period to stop the use. Where applicable, Customer may use Google Maps Content\ + \ in accordance with the “Using Google Maps, Google Earth and Street View” permissions page\ + \ at https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy, which will\ + \ be considered “Google’s prior written consent” for the permitted uses.\n13. Representations\ + \ and Warranties.\n\nEach party represents and warrants that: (a) it has full power and\ + \ authority to enter into the Agreement; and (b) it will comply with Export Control Laws\ + \ and Anti-Bribery Laws applicable to its provision, receipt, or use, of the Services, as\ + \ applicable.\n14. Disclaimer.\n\n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO\ + \ THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES\ + \ OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF\ + \ MERCHANTABILITY, FITNESS FOR A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED\ + \ USE OF THE SERVICES OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION\ + \ ACCESSIBLE THROUGH THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES\ + \ EXPRESSLY STATED IN THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES\ + \ ARE PROVIDED FOR PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES\ + \ MAY DIFFER FROM ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION.\ + \ CUSTOMER MUST EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT THE\ + \ CUSTOMER APPLICATION IS SAFE FOR END USERS AND OTHER THIRD PARTIES.\n15. Indemnification.\n\ + \n15.1 By Customer. Unless prohibited by applicable law, Customer will defend Google and\ + \ its Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal\ + \ Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer’s\ + \ or an End User’s use of the Services in violation of the Agreement.\n\n15.2 By Google.\ + \ Google will defend Customer and its Affiliates participating under the Agreement (“Customer\ + \ Indemnified Parties”), and indemnify them against Indemnified Liabilities in any Third-Party\ + \ Legal Proceeding to the extent arising from an allegation that Customer Indemnified Parties'\ + \ use in accordance with the Agreement of Google Indemnified Materials infringes the third\ + \ party's Intellectual Property Rights.\n\n15.3 Exclusions. This Section 15 will not apply\ + \ to the extent the underlying allegation arises from (a) the indemnified party’s breach\ + \ of the Agreement or (b) a combination of the indemnifying party’s technology or Brand\ + \ Features with materials not provided by the indemnifying party, unless the combination\ + \ is required by the Agreement.\n\n15.4 Conditions. Sections 15.1 and 15.2 will apply only\ + \ to the extent:\n\n(a) The indemnified party has promptly notified the indemnifying party\ + \ in writing of any Allegation(s) that preceded the Third-Party Legal Proceeding and cooperates\ + \ reasonably with the indemnifying party to resolve the Allegation(s) and Third-Party Legal\ + \ Proceeding. If breach of this Section 15.4(a) prejudices the defense of the Third-Party\ + \ Legal Proceeding, the indemnifying party’s obligations under Section 15.1 or 15.2 (as\ + \ applicable) will be reduced in proportion to the prejudice.\n\n(b) The indemnified party\ + \ tenders sole control of the indemnified portion of the Third-Party Legal Proceeding to\ + \ the indemnifying party, subject to the following: (i) the indemnified party may appoint\ + \ its own non-controlling counsel, at its own expense; and (ii) any settlement requiring\ + \ the indemnified party to admit liability, pay money, or take (or refrain from taking)\ + \ any action, will require the indemnified party’s prior written consent, not to be unreasonably\ + \ withheld, conditioned, or delayed.\n\n15.5 Remedies.\n\n(a) If Google reasonably believes\ + \ the Services might infringe a third party’s Intellectual Property Rights, then Google\ + \ may, at its sole option and expense: (i) procure the right for Customer to continue using\ + \ the Services; (ii) modify the Services to make them non-infringing without materially\ + \ reducing their functionality; or (iii) replace the Services with a non-infringing, functionally\ + \ equivalent alternative.\n\n(b) If Google does not believe the remedies in Section 15.5(a)\ + \ are commercially reasonable, then Google may suspend or terminate Customer’s use of the\ + \ impacted Services.\n\n15.6 Sole Rights and Obligations. Without affecting either party’s\ + \ termination rights, this Section 15 states the parties’ sole and exclusive remedy under\ + \ this Agreement for any third party's Intellectual Property Rights Allegations and Third-Party\ + \ Legal Proceedings covered by this Section 15 (Indemnification).\n16. Limitation of Liability.\n\ + \n16.1 Limitation on Indirect Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW,\ + \ THE PARTIES AND GOOGLE’S LICENSORS, WILL NOT BE LIABLE UNDER THIS AGREEMENT FOR LOST REVENUES\ + \ OR PROFITS (WHETHER DIRECT OR INDIRECT), INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL,\ + \ EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE PARTY OR LICENSOR, AS APPLICABLE, KNEW OR\ + \ SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY\ + \ A REMEDY.\n\n16.2 Limitation on Amount of Liability. TO THE MAXIMUM EXTENT PERMITTED BY\ + \ APPLICABLE LAW, THE PARTIES AND GOOGLE’S LICENSORS, MAY NOT BE HELD LIABLE UNDER THIS\ + \ AGREEMENT FOR MORE THAN THE AMOUNT PAID BY CUSTOMER TO GOOGLE UNDER THIS AGREEMENT DURING\ + \ THE TWELVE MONTHS BEFORE THE EVENT GIVING RISE TO LIABILITY.\n\n16.3 Exceptions to Limitations.\ + \ These limitations of liability do not apply to breaches of confidentiality obligations,\ + \ violations of a party’s Intellectual Property Rights by the other party, or Customer's\ + \ payment obligations.\n17. Advertising.\n\nIn its sole discretion, Customer may configure\ + \ the Service to either display or not display advertisements served by Google.\n18. U.S.\ + \ Federal Agency Users.\n\nThe Services were developed solely at private expense and are\ + \ commercial computer software and related documentation within the meaning of the applicable\ + \ Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\n\ + 19.1 Notices. All notices must be in writing and addressed to the other party’s legal department\ + \ and primary point of contact. The email address for notices being sent to Google’s Legal\ + \ Department is legal-notices@google.com. Notice will be treated as given on receipt as\ + \ verified by written or automated receipt or by electronic log (as applicable).\n\n19.2\ + \ Assignment. Neither party may assign any part of this Agreement without the written consent\ + \ of the other, except to an Affiliate where: (a) the assignee has agreed in writing to\ + \ be bound by the terms of this Agreement; (b) the assigning party remains liable for obligations\ + \ under the Agreement if the assignee defaults on them; and (c) the assigning party has\ + \ notified the other party of the assignment. Any other attempt to assign is void.\n\n19.3\ + \ Change of Control. If a party experiences a change of Control (for example, through a\ + \ stock purchase or sale, merger, or other form of corporate transaction): (a) that party\ + \ will give written notice to the other party within 30 days after the change of Control;\ + \ and (b) the other party may immediately terminate this Agreement any time between the\ + \ change of Control and 30 days after it receives that written notice.\n\n19.4 Force Majeure.\ + \ Neither party will be liable for failure or delay in performance to the extent caused\ + \ by circumstances beyond its reasonable control, including acts of God, natural disasters,\ + \ terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations under\ + \ the Agreement but will remain liable to Customer for any subcontracted obligations.\n\n\ + 19.6 No Agency. This Agreement does not create any agency, partnership or joint venture\ + \ between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived\ + \ any rights by not exercising (or delaying the exercise of) any rights under this Agreement.\n\ + \n19.8 Severability. If any term (or part of a term) of this Agreement is invalid, illegal,\ + \ or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party\ + \ Beneficiaries. This Agreement does not confer any benefits on any third party unless it\ + \ expressly states that it does.\n\n19.10 Equitable Relief. Nothing in this Agreement will\ + \ limit either party’s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n19.11.1\ + \ For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county\ + \ or state government entity, then the Agreement will be silent regarding governing law\ + \ and venue.\n\n19.11.2 For U.S. Federal Government Entities. If Customer is a U.S. federal\ + \ government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO\ + \ THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA,\ + \ EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I)\ + \ THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA’S CONFLICT OF LAWS RULES) WILL\ + \ APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF\ + \ OR RELATING TO THIS AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION\ + \ IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n19.11.3\ + \ For All Other Entities. If Customer is any entity not listed in Section 19.11.1 or 19.11.2\ + \ then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR\ + \ THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE’S CONFLICT OF LAWS\ + \ RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA\ + \ COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\ + \n19.12 Amendments. Except as stated in Section 1.5.2 (Modifications; To the Agreement),\ + \ any amendment must be in writing, signed by both parties, and expressly state that it\ + \ is amending this Agreement.\n\n19.13 Entire Agreement. This Agreement sets out all terms\ + \ agreed between the parties and supersedes all other agreements between the parties relating\ + \ to its subject matter. In entering into this Agreement, neither party has relied on, and\ + \ neither party will have any right or remedy based on, any statement, representation or\ + \ warranty (whether made negligently or innocently), except those expressly stated in this\ + \ Agreement. The terms located at any URL referenced in this Agreement and the Documentation\ + \ are incorporated by reference into the Agreement. After the Effective Date, Google may\ + \ provide an updated URL in place of any URL in this Agreement.\n\n19.14 Conflicting Terms.\ + \ If there is a conflict between the documents that make up this Agreement, the documents\ + \ will control in the following order: the Agreement, and the terms at any URL. \n\n19.15\ + \ Conflicting Translations. If this Agreement is translated into any other language, and\ + \ there is a discrepancy between the English text and the translated text, the English text\ + \ will govern.\n20. Reseller Orders.\n\nThis Section applies if Customer orders the Services\ + \ from a Reseller under a Reseller Agreement (including the Reseller Order Form).\n\n20.1\ + \ Orders. If Customer orders Services from Reseller, then: (a) fees for the Services will\ + \ be set between Customer and Reseller, and any payments will be made directly to Reseller\ + \ under the Reseller Agreement; (b) Section 2 of this Agreement (Payment Terms) will not\ + \ apply to the Services; (c) Customer will receive any applicable SLA credits from Reseller,\ + \ if owed to Customer in accordance with the SLA; and (d) Google will have no obligation\ + \ to provide any SLA credits to a Customer who orders Services from the Reseller.\n\n20.2\ + \ Conflicting Terms. If Customer orders Google Maps Core Services from a Reseller and if\ + \ any documents conflict, then the documents will control in the following order: the Agreement,\ + \ the terms at any URL (including the URL Terms), Reseller Order Form. For example, if there\ + \ is a conflict between the Maps Service Specific Terms and the Reseller Order Form, the\ + \ Maps Service Specific Terms will control.\n\n20.3 Reseller as Administrator. At Customer's\ + \ discretion, Reseller may access Customer's Projects, Accounts, or the Services on behalf\ + \ of Customer. As between Google and Customer, Customer is solely responsible for: (a) any\ + \ access by Reseller to Customer’s Account(s), Project(s), or the Services; and (b) defining\ + \ in the Reseller Agreement any rights or obligations as between Reseller and Customer with\ + \ respect to the Accounts, Projects, or Services.\n\n20.4 Reseller Verification of Customer\ + \ Application(s). Before providing the Services, Reseller may also verify that Customer\ + \ owns or controls the Customer Applications. If Reseller determines that Customer does\ + \ not own or control the Customer Applications, then Google will have no obligation to provide\ + \ the Services to Customer.\n21. Definitions.\n\n\"Account\" means Customer’s Google Account.\n\ + \n\"Admin Console\" means the online console(s) and/or tool(s) provided by Google to Customer\ + \ for administering the Services.\n\n\"Affiliate\" means any entity that directly or indirectly\ + \ Controls, is Controlled by, or is under common Control with a party.\n\n\"Allegation\"\ + \ means an unaffiliated third party’s allegation.\n\n“Anti-Bribery Laws” means all applicable\ + \ commercial and public anti-bribery laws, (for example, the U.S. Foreign Corrupt Practices\ + \ Act of 1977 and the UK Bribery Act 2010), which prohibit corrupt offers of anything of\ + \ value, either directly or indirectly, to anyone, including government officials, to obtain\ + \ or keep business or to secure any other improper commercial advantage. “Government officials”\ + \ include any government employee; candidate for public office; and employee of government-owned\ + \ or government-controlled companies, public international organizations, and political\ + \ parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the then-current Acceptable Use\ + \ Policy for the Services at: https://cloud.google.com/maps-platform/terms/aup/.\n\n\"\ + Brand Features\" means the trade names, tradmarks, service marks, logos, domain names, and\ + \ other distinctive brand features of each party, respectively, as secured by such party.\n\ + \n\"Committed Purchase(s)\" has the meaning provided in the Maps Service Specific Terms.\n\ + \n\"Confidential Information\" means information that one party (or an Affiliate) discloses\ + \ to the other party under this Agreement, and which is marked as confidential or would\ + \ normally under the circumstances be considered confidential information. It does not include\ + \ information that is independently developed by the recipient, is rightfully given to the\ + \ recipient by a third party without confidentiality obligations, or becomes public through\ + \ no fault of the recipient.\n\n\"Control\" means control of greater than 50% of the voting\ + \ rights or equity interests of a party.\n\n\"Customer Application\" means any web domain\ + \ or application (including all source code and features) owned or controlled by Customer,\ + \ or that Customer is authorized to use.\n\n\"Customer End User\" or \"End User\" means\ + \ an individual or entity that Customer permits to use the Services or Customer Application(s).\n\ + \n“Customer Indemnified Materials” means the Customer Application and Customer Brand Features.\n\ + \n\"Documentation\" means the Google documentation (as may be updated) in the form generally\ + \ made available by Google for use with the Services at https://developers.google.com/maps/documentation.\n\ + \n\"Emergency Security Issue\" means either: (a) Customer’s or Customer End Users’ use of\ + \ the Services in violation of the AUP, which could disrupt: (i) the Services; (ii) other\ + \ customers’ or their customer end users’ use of the Services; or (iii) the Google network\ + \ or servers used to provide the Services; or (b) unauthorized third party access to the\ + \ Services.\n\n\"Europe\" or \"European\" means European Economic Area or Switzerland.\n\ + \n“Export Control Laws” means all applicable export and re-export control laws and regulations,\ + \ including any applicable munitions- or defense-related regulations (for example, the International\ + \ Traffic in Arms Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual\ + \ Period\" means a calendar month or another period specified by Google in the Admin Console.\n\ + \n\"Fee Threshold\" means the threshold (as may be updated), as applicable for certain Services,\ + \ as set out in the Admin Console.\n\n“Feedback” means feedback or suggestions about the\ + \ Services provided by Customer to Google.\n\n\"Fees\" means the product of the amount of\ + \ Services used or ordered by Customer multiplied by the Prices, plus any applicable Taxes.\n\ + \n\"Google Indemnified Materials\" means Google's technology used to provide the Services\ + \ (excluding any open source software) and Google's Brand Features.\n\n\"Google Maps Content\"\ + \ means any content provided through the Services (whether created by Google or its third-party\ + \ licensors), including map and terrain data, imagery, traffic data, and places data (including\ + \ business listings).\n\n\"High Risk Activities\" means activities where the use or failure\ + \ of the Services could lead to death, personal injury, or environmental damage, including\ + \ (a) emergency response services; (b) autonomous and semi-autonomous vehicle or drone control;\ + \ (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation.\n\ + \n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it\ + \ may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means\ + \ any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs\ + \ finally awarded against the indemnified party and its Affiliates by a court of competent\ + \ jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual\ + \ Property Rights\" means current and future worldwide rights under patent, copyright, trade\ + \ secret, trademark, and moral rights laws, and other similar rights.\n\n\"Legal Process\"\ + \ means a data disclosure request made under law, governmental regulation, court order,\ + \ subpoena, warrant, governmental regulatory or agency request, or other valid legal authority,\ + \ legal procedure, or similar process.\n\n\"Maps Service Specific Terms\" means the then-current\ + \ terms specific to one or more Services at https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\ + \n\"Maps Technical Support Services\" means the technical support service provided by Google\ + \ to Customer under the then-current Maps Technical Support Services Guidelines.\n\n\"Maps\ + \ Technical Support Services Guidelines\" means the then-current technical support service\ + \ guidelines at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Package Purchase\"\ + \ has the meaning set out in the Maps Service Specific Terms.\n\n\"Personal Data\" has the\ + \ meaning provided in the General Data Protection Regulation (EU) 2016/679 of the European\ + \ Parliament and of the Council of April 27, 2016.\n\n\"Price\" means the then-current applicable\ + \ price(s) stated at https://cloud.google.com/maps-platform/pricing/sheet/.\n\n\"Prohibited\ + \ Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\ + \n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources\ + \ for a particular Customer Application.\n\n\"Reseller\" means, if applicable, the authorized\ + \ reseller that sells or supplies the Services to Customer.\n\n\"Reseller Agreement\" means,\ + \ if applicable, a separate, independent agreement between Customer and Reseller regarding\ + \ the Services.\n\n\"Reseller Order Form\" means an order form entered into by Reseller\ + \ and Customer, subject to the Reseller Agreement.\n\n\"Services\" and \"Google Maps Core\ + \ Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/.\ + \ The Services include the Google Maps Content and the Software.\n\n\"SLA\" or \"Service\ + \ Level Agreement\" means each of the then-current service level agreements at: https://cloud.google.com/maps-platform/terms/sla/.\n\ + \n\"Software\" means any downloadable tools, software development kits, or other computer\ + \ software provided by Google for use as part of the Services, including updates.\n\n\"\ + Taxes\" means any duties, customs fees, or taxes (other than Google’s income tax) associated\ + \ with the purchase of the Services, including any related penalties or interest.\n\n\"\ + Term\" has the meaning stated in Section 1.6 of this Agreement.\n\n“Terms URL” means the\ + \ following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party\ + \ Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated third party\ + \ before a court or government tribunal (including any appellate proceeding).\n\n\"Trademark\ + \ Guidelines\" means (a) Google’s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html;\ + \ and (b) the “Use of Trademarks” section of the “Using Google Maps, Google Earth and Street\ + \ View” permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark\ + \ policy.\n\n“URL Terms” means the following, which will control in the following order\ + \ if there is a conflict:\n\n(a) the Maps Service Specific Terms;\n\n(b) the SLA;\n\n(c)\ + \ the AUP;\n\n(d) the Maps Technical Support Services Guidelines;\n\n(e) the Google Maps/Google\ + \ Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and\n\n(f)\ + \ the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html." json: google-maps-tos-2018-10-01.json - yml: google-maps-tos-2018-10-01.yml + yaml: google-maps-tos-2018-10-01.yml html: google-maps-tos-2018-10-01.html - text: google-maps-tos-2018-10-01.LICENSE + license: google-maps-tos-2018-10-01.LICENSE - license_key: google-maps-tos-2018-10-31 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-10-31 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Google Maps Platform Terms of Service\n\nLast modified: October 31, 2018\n\nIf you\ + \ have entered into an offline variant of this Agreement, the terms below do not apply,\ + \ and your offline agreement governs your use of the Google Maps Core Services.\n\nGoogle\ + \ Maps Platform License Agreement\n\nThis Google Maps Platform License Agreement (the \"\ + Agreement\") is made and entered into between Google and the entity or person agreeing to\ + \ these terms (\"Customer\"). \"Google\" means either (i) Google Commerce Limited (“GCL”),\ + \ a company incorporated under the laws of Ireland, with offices at Gordon House, Barrow\ + \ Street, Dublin 4, Ireland, if Customer has a billing address in the EU and has chosen\ + \ “non-business” as the tax status/setting for its Google account, (ii) Google Ireland Limited,\ + \ with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer’s billing\ + \ address is in any country within Europe, the Middle East, or Africa (\"EMEA\"), (iii)\ + \ Google Asia Pacific Pte. Ltd., with offices at 70 Pasir Panjang Road, #03-71, Mapletree\ + \ Business City II Singapore 117371, if Customer’s billing address is in any country within\ + \ the Asia Pacific region (\"APAC\") except as provided below for Customers with the billing\ + \ address in Japan, New Zealand, or Australia, (iv) Google Cloud Japan G.K., with offices\ + \ at Roppongi Hills Mori Tower, 10-1, Roppongi 6-chome, Minato-ku Tokyo, if Customer’s billing\ + \ address is in Japan, (v) Google Australia Pty Ltd., with offices at Level 5, 48 Pirrama\ + \ Road, Pyrmont, NSW 2009 Australia, if Customer’s billing address is in Australia, or (vi)\ + \ Google LLC, with offices at 1600 Amphitheatre Parkway, Mountain View, California 94043,\ + \ if Customer’s billing address is in any country in the world other than those in EMEA\ + \ and APAC. For Customers with a billing address in New Zealand, this Agreement is made\ + \ and entered into by and between Customer and Google New Zealand Limited, with offices\ + \ at PWC Tower, Level 27, 188 Quay Street, Auckland, New Zealand 1010, as an authorized\ + \ reseller in New Zealand of the Services and “Google” means Google Asia Pacific Pte. Ltd.\ + \ and/or its affiliates (including Google New Zealand Limited) as the context requires.\n\ + \nThis Agreement is effective as of the date Customer clicks to accept the Agreement, or\ + \ enters into a Reseller Agreement if purchasing through a Reseller (the \"Effective Date\"\ + ). If you are accepting on behalf of Customer, you represent and warrant that: (i) you have\ + \ full legal authority to bind Customer to this Agreement; (ii) you have read and understand\ + \ this Agreement; and (iii) you agree, on behalf of Customer, to this Agreement. If you\ + \ do not have the legal authority to bind Customer, please do not click to accept. This\ + \ Agreement governs Customer’s access to and use of the Services.\n\nFor an offline variant\ + \ of this Agreement, you may contact Google for more information.\n1. Provision of the Services.\n\ + \n1.1 Use of the Services in Customer Applications. Google will provide the Services to\ + \ Customer in accordance with the applicable SLA, and Customer may use the Google Maps Core\ + \ Services in Customer Application(s) in accordance with Section 3 (License).\n\n1.2 Admin\ + \ Console; Projects; API Keys. Customer will administer the Services through the online\ + \ Admin Console. To access the Services, Customer must create Project(s) and use its API\ + \ key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer must have an Account\ + \ to access the Admin Console through which Customer may administer its use of the Services.\ + \ Customer is responsible for: (a) the information it provides in connection with the Account;\ + \ (b) maintaining the confidentiality and security of the Account and associated passwords;\ + \ and (c) any use of its Account.\n\n1.4 Customer Domains and Applications. Customer must\ + \ list in the Admin Console each authorized domain and application that uses the Services.\ + \ Customer is responsible for ensuring that only authorized domains and applications use\ + \ the Services.\n\n1.5 New Features and Services. Google may: (a) make new features or functionality\ + \ available through the Services and (b) add new services to the \"Services\" definition\ + \ (by adding them at the URL stated under that definition). Customer’s use of new features\ + \ or functionality may be contingent on Customer’s agreement to additional terms applicable\ + \ to the new feature or functionality.\n\n1.6 Modifications.\n\n1.6.1 To the Services. Google\ + \ may make changes to the Services, subject to Section 9 (Deprecation Policy), which may\ + \ include adding, updating, or discontinuing any Services or portion or feature(s) of the\ + \ Services. Google will notify Customer of any material change to the Services.\n\n1.6.2.\ + \ To the Agreement. Google may make changes to this Agreement, including pricing (and any\ + \ linked documents). Unless otherwise noted by Google, material changes to the Agreement\ + \ will become effective 30 days after notice is given, except if the changes apply to new\ + \ functionality in which case they will be effective immediately. Google will provide at\ + \ least 90 days advance notice for materially adverse changes to any SLAs by: (a) sending\ + \ an email to Customer’s primary point of contact; (b) posting a notice in the Admin Console;\ + \ or (c) posting a notice to the applicable SLA webpage. If Customer does not agree to the\ + \ revised Agreement, Customer should stop using the Services. Google will post any modification\ + \ to this Agreement to the Terms URL.\n2. Payment Terms.\n\n2.1 Free Quota. Certain Services\ + \ are provided to Customer without charge up to the Fee Threshold, as applicable.\n\n2.2\ + \ Online Billing. At the end of the applicable Fee Accrual Period, Google will issue an\ + \ electronic bill to Customer for all charges accrued above the Fee Threshold based on (a)\ + \ Customer’s use of the Services during the previous Fee Accrual Period; (b) any Committed\ + \ Purchases selected; and (c) any Package Purchases selected. For use above the Fee Threshold,\ + \ Customer will be responsible for all Fees up to the amount set in the Account and will\ + \ pay all Fees in the currency set forth in the invoice. If Customer elects to pay by credit\ + \ card, debit card, or other non-invoiced form of payment, Google will charge (and Customer\ + \ will pay) all Fees immediately at the end of the Fee Accrual Period. If Customer elects\ + \ to pay by invoice (and Google agrees), all Fees are due as stated in the invoice. Customer’s\ + \ obligation to pay all Fees is non-cancellable. Google’s measurement of Customer’s use\ + \ of the Services is final. Google has no obligation to provide multiple bills. Payments\ + \ made via wire transfer must include the bank information provided by Google. If Customer\ + \ has entered into the Agreement with GCL, Google may collect payments via Google Payment\ + \ Limited, a company incorporated in England and Wales with offices at Belgrave House, 76\ + \ Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\n2.3 Taxes.\n\n2.3.1 Customer\ + \ is responsible for any Taxes, and Customer will pay Google for the Services without any\ + \ reduction for Taxes. If Google is obligated to collect or pay Taxes, the Taxes will be\ + \ invoiced to Customer, unless Customer provides Google with a timely and valid tax exemption\ + \ certificate authorized by the appropriate taxing authority. In some states the sales tax\ + \ is due on the total purchase price at the time of sale and must be invoiced and collected\ + \ at the time of the sale. If Customer is required by law to withhold any Taxes from its\ + \ payments to Google, Customer must provide Google with an official tax receipt or other\ + \ appropriate documentation to support such withholding. If under the applicable tax legislation\ + \ the Services are subject to local VAT and the Customer is required to make a withholding\ + \ of local VAT from amounts payable to Google, the value of Services calculated in accordance\ + \ with the above procedure will be increased (grossed up) by the Customer for the respective\ + \ amount of local VAT and the grossed up amount will be regarded as a VAT inclusive price.\ + \ Local VAT amount withheld from the VAT-inclusive price will be remitted to the applicable\ + \ local tax entity by the Customer and Customer will ensure that Google will receives payment\ + \ for its services for the net amount as would otherwise be due (the VAT inclusive price\ + \ less the local VAT withheld and remitted to applicable tax authority).\n\n2.3.2 If required\ + \ under applicable law, Customer will provide Google with applicable tax identification\ + \ information that Google may require to ensure its compliance with applicable tax regulations\ + \ and authorities in applicable jurisdictions. Customer will be liable to pay (or reimburse\ + \ Google for) any taxes, interest, penalties or fines arising out of any mis-declaration\ + \ by the Customer.\n\n2.4 Invoice Disputes & Refunds. Any invoice disputes must be submitted\ + \ before the payment due date. If the parties determine that certain billing inaccuracies\ + \ are attributable to Google, Google will not issue a corrected invoice, but will instead\ + \ issue a credit memo specifying the incorrect amount in the affected invoice. If the disputed\ + \ invoice has not yet been paid, Google will apply the credit memo amount to the disputed\ + \ invoice and Customer will be responsible for paying the resulting net balance due on that\ + \ invoice. To the fullest extent permitted by law, Customer waives all claims relating to\ + \ Fees unless claimed within 60 days after charged (this does not affect any Customer rights\ + \ with its credit card issuer). Refunds (if any) are at the discretion of Google and will\ + \ only be in the form of credit for the Services. Nothing in this Agreement obligates Google\ + \ to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. Late payments may\ + \ bear interest at the rate of 1.5% per month (or the highest rate permitted by law, if\ + \ less) from the payment due date until paid in full. Customer will be responsible for all\ + \ reasonable expenses (including attorneys’ fees) incurred by Google in collecting such\ + \ delinquent amounts. If Customer is late on payment for the Services, Google may suspend\ + \ the Services or terminate the Agreement for breach under Section 11.2 (Termination for\ + \ Breach).\n\n2.6 No Purchase Order Number Required. Google is not required to provide a\ + \ purchase order number on Google’s invoice (or otherwise).\n3. License.\n\n3.1 License\ + \ Grant. Subject to this Agreement’s terms, during the Term, Google grants to Customer a\ + \ non-exclusive, non-transferable, non-sublicensable, license to use the Services in Customer\ + \ Application(s), which may be: (a) fee-based or non-fee-based; (b) public/external or private/internal;\ + \ (c) business-to-business or business-to-consumer; or (d) asset tracking.\n\n3.2 License\ + \ Requirements and Restrictions. The following are conditions of the license granted in\ + \ Section 3.1. In this Section 3.2, the phrase “Customer will not” means “Customer will\ + \ not, and will not permit a third party to”.\n\n3.2.2 General Restrictions. Unless Google\ + \ specifically agrees in writing, Customer will not: (a) copy, modify, create a derivative\ + \ work of, reverse engineer, decompile, translate, disassemble, or otherwise attempt to\ + \ extract any or all of the source code (except to the extent such restriction is expressly\ + \ prohibited by applicable law); (b) sublicense, transfer, or distribute any of the Services;\ + \ (c) sell, resell, or otherwise make the Services available as a commercial offering to\ + \ a third party; or (d) access or use the Services: (i) for High Risk Activities; (ii) in\ + \ a manner intended to avoid incurring Fees; (iii) for activities that are subject to the\ + \ International Traffic in Arms Regulations (ITAR) maintained by the United States Department\ + \ of State; (iv) on behalf of or for the benefit of any entity or person who is legally\ + \ prohibited from using the Services; or (v) to transmit, store, or process Protected Health\ + \ Information (as defined in and subject to HIPAA).\n\n3.2.3 Requirements for Using the\ + \ Services.\n\n(a) End User Terms and Privacy Policy. Customer’s End User terms of service\ + \ will state that End Users’ use of Google Maps is subject to the then-current Google Maps/Google\ + \ Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html and\ + \ Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n(b) Attribution.\ + \ Customer will display all attribution that (i) Google provides through the Services (including\ + \ branding, logos, and copyright and trademark notices); or (ii) is specified in the Maps\ + \ Service Specific Terms. Customer will not modify, obscure, or delete such attribution.\n\ + \n(c) Review of Customer Applications. At Google’s request, Customer will submit Customer\ + \ Application(s) and Project(s) to Google for review to ensure compliance with the Agreement\ + \ (including the AUP).\n\n3.2.4 Restrictions Against Misusing the Services.\n\n(a) No Scraping.\ + \ Customer will not extract, export, scrape, or cache Google Maps Content for use outside\ + \ the Services. For example, Customer will not:(i) pre-fetch, index, store, reshare, or\ + \ rehost Google Maps Content outside the services; (ii) bulk download geocodes; (iii) copy\ + \ business names, addresses, or user reviews; or (iv) use Google Maps Content with text-to-speech\ + \ services. Caching is permitted for certain Services as described in the Maps Service Specific\ + \ Terms.\n\n(b) No Creating Content From Google Maps Content. Customer will not create content\ + \ based on Google Maps Content, including tracing, digitizing, or creating other datasets\ + \ based on Google Maps Content.\n\n(c) No Re-Creating Google Products or Features. Customer\ + \ will not use the Services to create a product or service with features that are substantially\ + \ similar to or that re-create the features of another Google product or service. Customer’s\ + \ product or service must contain substantial, independent value and features beyond the\ + \ Google products or services. For example, Customer will not: (i) re-distribute the Google\ + \ Maps Core Services or pass them off as if they were Customer’s services; (ii) create a\ + \ substitute of the Google Maps Core Services, Google Maps, or Google Maps mobile apps,\ + \ or their features; (iii) use the Google Maps Core Services in a listings or directory\ + \ service or to create or augment an advertising product; (iv) combine data from the Directions\ + \ API, Geolocation API, and Maps SDK for Android to create real-time navigation functionality\ + \ substantially similar to the functionality provided by the Google Maps for Android mobile\ + \ app.\n\n(d) No Use With Non-Google Maps. Customer will not use the Google Maps Core Services\ + \ in a Customer Application that contains a non-Google map. For example, Customer will not\ + \ (i) display Places listings on a non-Google map, or (ii) display Street View imagery and\ + \ non-Google maps in the same Customer Application.\n\n(e) No Circumventing Fees. Customer\ + \ will not circumvent the applicable Fees. For example, Customer will not create multiple\ + \ billing accounts or Projects to avoid incurring Fees; prevent Google from accurately calculating\ + \ Customer’s Service usage levels; abuse any free Service quotas; or offer access to the\ + \ Services under a “time-sharing” or “service bureau” model.\n\n(f) No Use in Prohibited\ + \ Territories. Customer will not distribute or market in a Prohibited Territory any Customer\ + \ Application(s) that use the Google Maps Core Services.\n\n(g) No Use in Embedded Vehicle\ + \ Systems. Customer will not use the Google Maps Core Services in connection with any Customer\ + \ Application or device embedded in a vehicle. For example, Customer will not create a Customer\ + \ Application that (i) is embedded in an in-dashboard automotive infotainment system; and\ + \ (ii) allows End Users to request driving directions from the Directions API.\n\n(h) No\ + \ Modifying Search Results Integrity. Customer will not modify any of the Service’s search\ + \ results.\n\n(i) No Use for High Risk Activities. Customer will not use the Google Maps\ + \ Core Services for High Risk Activities.\n\n3.2.5 Benchmarking. Customer may not publicly\ + \ disclose directly or through a third party the results of any comparative or compatibility\ + \ testing, benchmarking, or evaluation of the Services (each, a “Test”), unless the disclosure\ + \ includes all information necessary for Google or a third party to replicate the Test.\ + \ If Customer conducts, or directs a third party to conduct, a Test of the Services and\ + \ publicly discloses the results directly or through a third party, then Google (or a Google\ + \ directed third party) may conduct Tests of any publicly available cloud products or services\ + \ provided by Customer and publicly disclose the results of any such Test (which disclosure\ + \ will include all information necessary for Customer or a third party to replicate the\ + \ Test).\n4. Customer Obligations. \n\n4.1 Customer Domains and Applications. Customer must\ + \ list in the Admin Console each authorized domain and application that uses the Services.\ + \ Customer is responsible for ensuring that only authorized domains and applications use\ + \ the Services.\n\n4.2 Compliance. Customer will: (a) ensure that Customer’s and its End\ + \ Users’ use of the Services complies with the Agreement, including the applicable Services’\ + \ AUP and URL Terms; and (b) use commercially reasonable efforts to prevent, promptly notify\ + \ Google of, and terminate any unauthorized use of or access to its Account(s) or the Services.\n\ + \n4.3 Documentation. Google may provide Documentation for Customer’s use of the Services.\ + \ The Documentation may specify restrictions (e.g. attribution or HTML restrictions) on\ + \ how the Services may be used and Customer will comply with any such restrictions specified.\n\ + \n4.4 Copyright Policy. Google provides information to help copyright holders manage their\ + \ intellectual property online, but Google cannot determine whether something is being used\ + \ legally or not without their input. Google responds to notices of alleged copyright infringement\ + \ and terminates accounts of repeat infringers according to applicable copyright laws including\ + \ in particular the process set out in the U.S. Digital Millennium Copyright Act. If Customer\ + \ thinks somebody is violating Customer’s or Customer End Users’ copyrights and wants to\ + \ notify Google, Customer can find information about submitting notices, and Google’s policy\ + \ about responding to notices at https://www.google.com/dmca.html.\n\n4.5 Data Use, Protection,\ + \ and Privacy.\n\n4.5.1 Data Use and Retention. To provide the Services through the Customer\ + \ Application(s), Google must receive and collect data from End Users and Customer, including\ + \ search terms, IP addresses, and latitude/longitude coordinates. Customer acknowledges\ + \ and agrees that Google and its Affiliates may use and retain this data to provide and\ + \ improve Google products and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\ + \n4.5.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller\ + \ Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\ + \n4.5.3 General Privacy Requirements.\n\n(a) End User Privacy. Customer’s use of the Services\ + \ in the Customer Application will comply with applicable privacy laws, including laws regarding\ + \ Services that store and access Cookies on End Users’ devices. If Customer has End Users\ + \ in the European Economic Area, Customer will comply with the EU End User Consent Policy\ + \ at https://www.google.com/about/company/user-consent-policy.html.\n\n(b) End User Personal\ + \ Data. Through the normal functioning of the Google Maps Core Services, End Users provide\ + \ device identifiers and Personal Data directly to Google, subject to the Google Privacy\ + \ Policy at https://www.google.com/policies/privacy/. However, Customer acknowledges and\ + \ agrees that Customer will not provide these categories of data to Google.\n\n(c) End User\ + \ Location Privacy Requirements. To safeguard End Users’ location privacy, Customer will\ + \ ensure that the Customer Application(s): (i) notify End Users in advance of (y) the type(s)\ + \ of data that Customer intends to collect from the End Users or the End Users’ devices,\ + \ and (z) the combination and use of End User’s location with any other data provider’s\ + \ data; and (ii) will not obtain or cache any End User’s location except with the End User’s\ + \ express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions\ + \ Violations. Google may Suspend the Services without prior notice if Customer breaches\ + \ Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Violations or Emergency\ + \ Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP\ + \ Violations) and 5.2.2 (Emergency Security Issues). Any Suspension under those Sections\ + \ will be to the minimum extent and for the shortest duration required to: (a) prevent or\ + \ terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c)\ + \ comply with applicable law.\n\n5.2.1 AUP Violations. If Google becomes aware that Customer’s\ + \ or any End User’s use of the Services violates the AUP, Google will give Customer notice\ + \ of such violation by requesting that Customer correct the violation. If Customer fails\ + \ to correct such violation within 24 hours, or if Google is otherwise required by applicable\ + \ law to take action, then Google may Suspend all or part of Customer’s use of the Services.\n\ + \n5.2.2 Emergency Security Issues. Google may immediately Suspend Customer’s use of the\ + \ Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend\ + \ such use immediately to comply with applicable law. At Customer’s request, unless prohibited\ + \ by applicable law, Google will notify Customer of the basis for the Suspension as soon\ + \ as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights\ + \ Infringement. If the Customer Application is alleged to infringe a third party’s Intellectual\ + \ Property Rights, Google may require Customer to suspend distributing or selling the Customer\ + \ Application on 30 days’ written notice until such allegation is fully resolved. In any\ + \ event, this Section 5.3 does not reduce Customer’s obligations under Section 15 (Indemnification).\n\ + 6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as\ + \ expressly stated in this Agreement, this Agreement does not grant either party any rights,\ + \ implied or otherwise, to the other’s content or any of the other’s intellectual property.\ + \ As between the parties, Customer owns all Intellectual Property Rights in the Customer\ + \ Application, and Google owns all Intellectual Property Rights in the Services and Software.\n\ + \n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google\ + \ may use that information without obligation to Customer, and Customer irrevocably assigns\ + \ to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices\ + \ and License Terms.\n\nCertain components of the Services (including open source software)\ + \ are subject to third-party copyright and other Intellectual Property Rights, as specified\ + \ in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html;\ + \ and (b) separate, publicly-available third-party license terms, which Google will provide\ + \ to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will\ + \ provide Maps Technical Support Services to Customer in accordance with the Maps Technical\ + \ Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical\ + \ support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n9.1 Google\ + \ will notify Customer at least 12 months before making material discontinuance(s) or backwards\ + \ incompatible change(s) to the Services, unless Google reasonably determines that: (a)\ + \ Google cannot do so by law or by contract (including if there is a change in applicable\ + \ law or contract) or (b) continuing to provide the Services could create a (i) security\ + \ risk or (ii) substantial economic or technical burden.\n\n9.2 Section 9.1 applies to the\ + \ Services listed at https://cloud.google.com/maps-platform/terms/maps-deprecation/. If\ + \ Google deprecates any Services that are not listed at the above URL, Google will use commercially\ + \ reasonable efforts to minimize the adverse impacts of such deprecations.\n10. Confidential\ + \ Information.\n\n10.1 Obligations. The recipient will not disclose the Confidential Information,\ + \ except to Affiliates, employees, agents or professional advisors who need to know it and\ + \ who have agreed in writing (or in the case of professional advisors are otherwise bound)\ + \ to keep it confidential. Subject to Section 10.2 (Required Disclosure), the recipient\ + \ will ensure that those people and entities use the received Confidential Information only\ + \ to exercise rights and fulfill obligations under this Agreement, while using reasonable\ + \ care to keep it confidential.\n\n10.2 Required Disclosure. The recipient may disclose\ + \ the other party’s Confidential Information to the extent required by applicable Legal\ + \ Process; provided that the recipient uses commercially reasonable efforts to: (a) promptly\ + \ notify the other party of such disclosure before disclosing; and (b) comply with the other\ + \ party’s reasonable requests regarding its efforts to oppose the disclosure. Notwithstanding\ + \ the foregoing, subsections (a) and (b) above will not apply if the recipient determines\ + \ that complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii)\ + \ obstruct a governmental investigation; and/or (iii) lead to death or serious physical\ + \ harm to an individual. As between the parties, Customer is responsible for responding\ + \ to all third party requests concerning its use and Customer End Users’ use of the Services.\n\ + 11. Term and Termination.\n\n11.1 Agreement Term. The “Term” of this Agreement will begin\ + \ on the Effective Date and continue until the Agreement is terminated under this Section.\n\ + \n11.2 Termination for Breach. Either party may terminate this Agreement for breach if:\ + \ (a) the other party is in material breach of the Agreement and fails to cure that breach\ + \ within 30 days after receipt of written notice; or (b) the other party ceases its business\ + \ operations or becomes subject to insolvency proceedings and the proceedings are not dismissed\ + \ within 90 days. In addition, Google may terminate any, all, or any portion of the Services\ + \ or Projects, if Customer meets any of the conditions in subsections (a) or (b).\n\n11.3\ + \ Termination for Inactivity. Google reserves the right to terminate provision of Service(s)\ + \ to a Project on 30 days advance notice if, for more than 180 days, such Project (a) has\ + \ not made any requests to the Services from any Customer Applications; or (b) such Project\ + \ has not incurred any Fees for such Service(s).\n\n11.4 Termination for Convenience. Customer\ + \ may stop using the Services at any time. Subject to any financial commitments expressly\ + \ made by this Agreement, Customer may terminate this Agreement for its convenience at any\ + \ time on prior written notice and upon termination, must cease use of the applicable Services.\ + \ Google may terminate this Agreement for its convenience at any time without liability\ + \ to Customer.\n\n11.5 Effects of Termination. \n\n11.5.1 If the Agreement is terminated,\ + \ then: (a) the rights granted by one party to the other will immediately cease; (b) all\ + \ Fees owed by Customer to Google are immediately due upon receipt of the final electronic\ + \ bill; and (c) Customer will delete the Software and any content from the Services by the\ + \ termination effective date.\n\n11.5.2 The following will survive expiration or termination\ + \ of the Agreement: Section 2 (Payment Terms), Section 3.2 (License Requirements and Restrictions),\ + \ Section 4.5 (Data Use, Protection, and Privacy), Section 6 (Intellectual Property; Feedback),\ + \ Section 10 (Confidential Information), Section 11.5 (Effects of Termination), Section\ + \ 14 (Disclaimer), Section 15 (Indemnification), Section 16 (Limitation of Liability), Section\ + \ 19 (Miscellaneous), and Section 20 (Definitions).\n12. Publicity.\n\nCustomer may state\ + \ publicly that it is a customer of the Services, consistent with the Trademark Guidelines.\ + \ If Customer wants to display Google Brand Features in connection with its use of the Services,\ + \ Customer must obtain written permission from Google through the process specified in the\ + \ Trademark Guidelines. Google may include Customer’s name or Brand Features in a list of\ + \ Google customers, online or in promotional materials. Google may also verbally reference\ + \ Customer as a customer of the Services. Neither party needs approval if it is repeating\ + \ a public statement that is substantially similar to a previously-approved public statement.\ + \ Any use of a party’s Brand Features will inure to the benefit of the party holding Intellectual\ + \ Property Rights to those Brand Features. A party may revoke the other party’s right to\ + \ use its Brand Features under this Section with written notice to the other party and a\ + \ reasonable period to stop the use. Where applicable, Customer may use Google Maps Content\ + \ in accordance with the “Using Google Maps, Google Earth and Street View” permissions page\ + \ at https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy, which will\ + \ be considered “Google’s prior written consent” for the permitted uses.\n13. Representations\ + \ and Warranties.\n\nEach party represents and warrants that: (a) it has full power and\ + \ authority to enter into the Agreement; and (b) it will comply with Export Control Laws\ + \ and Anti-Bribery Laws applicable to its provision, receipt, or use, of the Services, as\ + \ applicable.\n14. Disclaimer.\n\n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO\ + \ THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES\ + \ OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF\ + \ MERCHANTABILITY, FITNESS FOR A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED\ + \ USE OF THE SERVICES OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION\ + \ ACCESSIBLE THROUGH THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES\ + \ EXPRESSLY STATED IN THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES\ + \ ARE PROVIDED FOR PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES\ + \ MAY DIFFER FROM ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION.\ + \ CUSTOMER MUST EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT THE\ + \ CUSTOMER APPLICATION IS SAFE FOR END USERS AND OTHER THIRD PARTIES.\n15. Indemnification.\n\ + \n15.1 By Customer. Unless prohibited by applicable law, Customer will defend Google and\ + \ its Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal\ + \ Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer’s\ + \ or an End User’s use of the Services in violation of the Agreement.\n\n15.2 By Google.\ + \ Google will defend Customer and its Affiliates participating under the Agreement (“Customer\ + \ Indemnified Parties”), and indemnify them against Indemnified Liabilities in any Third-Party\ + \ Legal Proceeding to the extent arising from an allegation that Customer Indemnified Parties’\ + \ use in accordance with the Agreement of Google Indemnified Materials infringes the third\ + \ party’s Intellectual Property Rights.\n\n15.3 Exclusions. This Section 15 will not apply\ + \ to the extent the underlying allegation arises from (a) the indemnified party’s breach\ + \ of the Agreement or (b) a combination of the indemnifying party’s technology or Brand\ + \ Features with materials not provided by the indemnifying party, unless the combination\ + \ is required by the Agreement.\n\n15.4 Conditions. Sections 15.1 and 15.2 will apply only\ + \ to the extent:\n\n(a) The indemnified party has promptly notified the indemnifying party\ + \ in writing of any Allegation(s) that preceded the Third-Party Legal Proceeding and cooperates\ + \ reasonably with the indemnifying party to resolve the Allegation(s) and Third-Party Legal\ + \ Proceeding. If breach of this Section 15.4(a) prejudices the defense of the Third-Party\ + \ Legal Proceeding, the indemnifying party’s obligations under Section 15.1 or 15.2 (as\ + \ applicable) will be reduced in proportion to the prejudice.\n\n(b) The indemnified party\ + \ tenders sole control of the indemnified portion of the Third-Party Legal Proceeding to\ + \ the indemnifying party, subject to the following: (i) the indemnified party may appoint\ + \ its own non-controlling counsel, at its own expense; and (ii) any settlement requiring\ + \ the indemnified party to admit liability, pay money, or take (or refrain from taking)\ + \ any action, will require the indemnified party’s prior written consent, not to be unreasonably\ + \ withheld, conditioned, or delayed.\n\n15.5 Remedies.\n\n(a) If Google reasonably believes\ + \ the Services might infringe a third party’s Intellectual Property Rights, then Google\ + \ may, at its sole option and expense: (i) procure the right for Customer to continue using\ + \ the Services; (ii) modify the Services to make them non-infringing without materially\ + \ reducing their functionality; or (iii) replace the Services with a non-infringing, functionally\ + \ equivalent alternative.\n\n(b) If Google does not believe the remedies in Section 15.5(a)\ + \ are commercially reasonable, then Google may suspend or terminate Customer’s use of the\ + \ impacted Services.\n\n15.6 Sole Rights and Obligations. Without affecting either party’s\ + \ termination rights, this Section 15 states the parties’ sole and exclusive remedy under\ + \ this Agreement for any third party’s Intellectual Property Rights Allegations and Third-Party\ + \ Legal Proceedings covered by this Section 15 (Indemnification).\n16. Limitation of Liability.\n\ + \n16.1 Limitation on Indirect Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW,\ + \ THE PARTIES AND GOOGLE’S LICENSORS, WILL NOT BE LIABLE UNDER THIS AGREEMENT FOR LOST REVENUES\ + \ OR PROFITS (WHETHER DIRECT OR INDIRECT), INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL,\ + \ EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE PARTY OR LICENSOR, AS APPLICABLE, KNEW OR\ + \ SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY\ + \ A REMEDY.\n\n16.2 Limitation on Amount of Liability. TO THE MAXIMUM EXTENT PERMITTED BY\ + \ APPLICABLE LAW, THE PARTIES AND GOOGLE’S LICENSORS, MAY NOT BE HELD LIABLE UNDER THIS\ + \ AGREEMENT FOR MORE THAN THE AMOUNT PAID BY CUSTOMER TO GOOGLE UNDER THIS AGREEMENT DURING\ + \ THE TWELVE MONTHS BEFORE THE EVENT GIVING RISE TO LIABILITY.\n\n16.3 Exceptions to Limitations.\ + \ These limitations of liability do not apply to breaches of confidentiality obligations,\ + \ violations of a party’s Intellectual Property Rights by the other party, or Customer’s\ + \ payment obligations.\n17. Advertising.\n\nIn its sole discretion, Customer may configure\ + \ the Service to either display or not display advertisements served by Google.\n18. U.S.\ + \ Federal Agency Users.\n\nThe Services were developed solely at private expense and are\ + \ commercial computer software and related documentation within the meaning of the applicable\ + \ Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\n\ + 19.1 Notices. All notices must be in writing and addressed to the other party’s legal department\ + \ and primary point of contact. The email address for notices being sent to Google’s Legal\ + \ Department is legal-notices@google.com. Notice will be treated as given on receipt as\ + \ verified by written or automated receipt or by electronic log (as applicable).\n\n19.2\ + \ Assignment. Neither party may assign any part of this Agreement without the written consent\ + \ of the other, except to an Affiliate where: (a) the assignee has agreed in writing to\ + \ be bound by the terms of this Agreement; (b) the assigning party remains liable for obligations\ + \ under the Agreement if the assignee defaults on them; and (c) the assigning party has\ + \ notified the other party of the assignment. Any other attempt to assign is void.\n\n19.3\ + \ Change of Control. If a party experiences a change of Control (for example, through a\ + \ stock purchase or sale, merger, or other form of corporate transaction): (a) that party\ + \ will give written notice to the other party within 30 days after the change of Control;\ + \ and (b) the other party may immediately terminate this Agreement any time between the\ + \ change of Control and 30 days after it receives that written notice.\n\n19.4 Force Majeure.\ + \ Neither party will be liable for failure or delay in performance to the extent caused\ + \ by circumstances beyond its reasonable control, including acts of God, natural disasters,\ + \ terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations under\ + \ the Agreement but will remain liable to Customer for any subcontracted obligations.\n\n\ + 19.6 No Agency. This Agreement does not create any agency, partnership or joint venture\ + \ between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived\ + \ any rights by not exercising (or delaying the exercise of) any rights under this Agreement.\n\ + \n19.8 Severability. If any term (or part of a term) of this Agreement is invalid, illegal,\ + \ or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party\ + \ Beneficiaries. This Agreement does not confer any benefits on any third party unless it\ + \ expressly states that it does.\n\n19.10 Equitable Relief. Nothing in this Agreement will\ + \ limit either party’s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n19.11.1\ + \ For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county\ + \ or state government entity, then the Agreement will be silent regarding governing law\ + \ and venue.\n\n19.11.2 For U.S. Federal Government Entities. If Customer is a U.S. federal\ + \ government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO\ + \ THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA,\ + \ EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I)\ + \ THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA’S CONFLICT OF LAWS RULES) WILL\ + \ APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF\ + \ OR RELATING TO THIS AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION\ + \ IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n19.11.3\ + \ For All Other Entities. If Customer is any entity not listed in Section 19.11.1 or 19.11.2\ + \ then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR\ + \ THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE’S CONFLICT OF LAWS\ + \ RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA\ + \ COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\ + \n19.12 Amendments. Except as stated in Section 1.5.2 (Modifications; To the Agreement),\ + \ any amendment must be in writing, signed by both parties, and expressly state that it\ + \ is amending this Agreement.\n\n19.13 Entire Agreement. This Agreement sets out all terms\ + \ agreed between the parties and supersedes all other agreements between the parties relating\ + \ to its subject matter. In entering into this Agreement, neither party has relied on, and\ + \ neither party will have any right or remedy based on, any statement, representation or\ + \ warranty (whether made negligently or innocently), except those expressly stated in this\ + \ Agreement. The terms located at any URL referenced in this Agreement and the Documentation\ + \ are incorporated by reference into the Agreement. After the Effective Date, Google may\ + \ provide an updated URL in place of any URL in this Agreement.\n\n19.14 Conflicting Terms.\ + \ If there is a conflict between the documents that make up this Agreement, the documents\ + \ will control in the following order: the Agreement, and the terms at any URL. \n\n19.15\ + \ Conflicting Translations. If this Agreement is translated into any other language, and\ + \ there is a discrepancy between the English text and the translated text, the English text\ + \ will govern.\n20. Reseller Orders.\n\nThis Section applies if Customer orders the Services\ + \ from a Reseller under a Reseller Agreement (including the Reseller Order Form).\n\n20.1\ + \ Orders. If Customer orders Services from Reseller, then: (a) fees for the Services will\ + \ be set between Customer and Reseller, and any payments will be made directly to Reseller\ + \ under the Reseller Agreement; (b) Section 2 of this Agreement (Payment Terms) will not\ + \ apply to the Services; (c) Customer will receive any applicable SLA credits from Reseller,\ + \ if owed to Customer in accordance with the SLA; and (d) Google will have no obligation\ + \ to provide any SLA credits to a Customer who orders Services from the Reseller.\n\n20.2\ + \ Conflicting Terms. If Customer orders Google Maps Core Services from a Reseller and if\ + \ any documents conflict, then the documents will control in the following order: the Agreement,\ + \ the terms at any URL (including the URL Terms), Reseller Order Form. For example, if there\ + \ is a conflict between the Maps Service Specific Terms and the Reseller Order Form, the\ + \ Maps Service Specific Terms will control.\n\n20.3 Reseller as Administrator. At Customer’s\ + \ discretion, Reseller may access Customer’s Projects, Accounts, or the Services on behalf\ + \ of Customer. As between Google and Customer, Customer is solely responsible for: (a) any\ + \ access by Reseller to Customer’s Account(s), Project(s), or the Services; and (b) defining\ + \ in the Reseller Agreement any rights or obligations as between Reseller and Customer with\ + \ respect to the Accounts, Projects, or Services.\n\n20.4 Reseller Verification of Customer\ + \ Application(s). Before providing the Services, Reseller may also verify that Customer\ + \ owns or controls the Customer Applications. If Reseller determines that Customer does\ + \ not own or control the Customer Applications, then Google will have no obligation to provide\ + \ the Services to Customer.\n21. Definitions.\n\n\"Account\" means Customer’s Google Account.\n\ + \n\"Admin Console\" means the online console(s) and/or tool(s) provided by Google to Customer\ + \ for administering the Services.\n\n\"Affiliate\" means any entity that directly or indirectly\ + \ Controls, is Controlled by, or is under common Control with a party.\n\n\"Allegation\"\ + \ means an unaffiliated third party’s allegation.\n\n“Anti-Bribery Laws” means all applicable\ + \ commercial and public anti-bribery laws, (for example, the U.S. Foreign Corrupt Practices\ + \ Act of 1977 and the UK Bribery Act 2010), which prohibit corrupt offers of anything of\ + \ value, either directly or indirectly, to anyone, including government officials, to obtain\ + \ or keep business or to secure any other improper commercial advantage. “Government officials”\ + \ include any government employee; candidate for public office; and employee of government-owned\ + \ or government-controlled companies, public international organizations, and political\ + \ parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the then-current Acceptable Use\ + \ Policy for the Services at: https://cloud.google.com/maps-platform/terms/aup/.\n\n\"\ + Brand Features\" means the trade names, tradmarks, service marks, logos, domain names, and\ + \ other distinctive brand features of each party, respectively, as secured by such party.\n\ + \n\"Committed Purchase(s)\" has the meaning provided in the Maps Service Specific Terms.\n\ + \n\"Confidential Information\" means information that one party (or an Affiliate) discloses\ + \ to the other party under this Agreement, and which is marked as confidential or would\ + \ normally under the circumstances be considered confidential information. It does not include\ + \ information that is independently developed by the recipient, is rightfully given to the\ + \ recipient by a third party without confidentiality obligations, or becomes public through\ + \ no fault of the recipient.\n\n\"Control\" means control of greater than 50% of the voting\ + \ rights or equity interests of a party.\n\n\"Customer Application\" means any web domain\ + \ or application (including all source code and features) owned or controlled by Customer,\ + \ or that Customer is authorized to use.\n\n\"Customer End User\" or \"End User\" means\ + \ an individual or entity that Customer permits to use the Services or Customer Application(s).\n\ + \n“Customer Indemnified Materials” means the Customer Application and Customer Brand Features.\n\ + \n\"Documentation\" means the Google documentation (as may be updated) in the form generally\ + \ made available by Google for use with the Services at https://developers.google.com/maps/documentation.\n\ + \n\"Emergency Security Issue\" means either: (a) Customer’s or Customer End Users’ use of\ + \ the Services in violation of the AUP, which could disrupt: (i) the Services; (ii) other\ + \ customers’ or their customer end users’ use of the Services; or (iii) the Google network\ + \ or servers used to provide the Services; or (b) unauthorized third party access to the\ + \ Services.\n\n\"Europe\" or \"European\" means European Economic Area or Switzerland.\n\ + \n“Export Control Laws” means all applicable export and re-export control laws and regulations,\ + \ including any applicable munitions- or defense-related regulations (for example, the International\ + \ Traffic in Arms Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual\ + \ Period\" means a calendar month or another period specified by Google in the Admin Console.\n\ + \n\"Fee Threshold\" means the threshold (as may be updated), as applicable for certain Services,\ + \ as set out in the Admin Console.\n\n“Feedback” means feedback or suggestions about the\ + \ Services provided by Customer to Google.\n\n\"Fees\" means the product of the amount of\ + \ Services used or ordered by Customer multiplied by the Prices, plus any applicable Taxes.\n\ + \n\"Google Indemnified Materials\" means Google's technology used to provide the Services\ + \ (excluding any open source software) and Google's Brand Features.\n\n\"Google Maps Content\"\ + \ means any content provided through the Services (whether created by Google or its third-party\ + \ licensors), including map and terrain data, imagery, traffic data, and places data (including\ + \ business listings).\n\n\"High Risk Activities\" means activities where the use or failure\ + \ of the Services could lead to death, personal injury, or environmental damage, including\ + \ (a) emergency response services; (b) autonomous and semi-autonomous vehicle or drone control;\ + \ (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation.\n\ + \n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it\ + \ may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means\ + \ any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs\ + \ finally awarded against the indemnified party and its Affiliates by a court of competent\ + \ jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual\ + \ Property Rights\" means current and future worldwide rights under patent, copyright, trade\ + \ secret, trademark, and moral rights laws, and other similar rights.\n\n\"Legal Process\"\ + \ means a data disclosure request made under law, governmental regulation, court order,\ + \ subpoena, warrant, governmental regulatory or agency request, or other valid legal authority,\ + \ legal procedure, or similar process.\n\n\"Maps Service Specific Terms\" means the then-current\ + \ terms specific to one or more Services at https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\ + \n\"Maps Technical Support Services\" means the technical support service provided by Google\ + \ to Customer under the then-current Maps Technical Support Services Guidelines.\n\n\"Maps\ + \ Technical Support Services Guidelines\" means the then-current technical support service\ + \ guidelines at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Package Purchase\"\ + \ has the meaning set out in the Maps Service Specific Terms.\n\n\"Personal Data\" has the\ + \ meaning provided in the General Data Protection Regulation (EU) 2016/679 of the European\ + \ Parliament and of the Council of April 27, 2016.\n\n\"Price\" means the then-current applicable\ + \ price(s) stated at https://cloud.google.com/maps-platform/pricing/sheet/.\n\n\"Prohibited\ + \ Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\ + \n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources\ + \ for a particular Customer Application.\n\n\"Reseller\" means, if applicable, the authorized\ + \ reseller that sells or supplies the Services to Customer.\n\n\"Reseller Agreement\" means,\ + \ if applicable, a separate, independent agreement between Customer and Reseller regarding\ + \ the Services.\n\n\"Reseller Order Form\" means an order form entered into by Reseller\ + \ and Customer, subject to the Reseller Agreement.\n\n\"Services\" and \"Google Maps Core\ + \ Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/.\ + \ The Services include the Google Maps Content and the Software.\n\n\"SLA\" or \"Service\ + \ Level Agreement\" means each of the then-current service level agreements at: https://cloud.google.com/maps-platform/terms/sla/.\n\ + \n\"Software\" means any downloadable tools, software development kits, or other computer\ + \ software provided by Google for use as part of the Services, including updates.\n\n\"\ + Taxes\" means any duties, customs fees, or taxes (other than Google’s income tax) associated\ + \ with the purchase of the Services, including any related penalties or interest.\n\n\"\ + Term\" has the meaning stated in Section 1.6 of this Agreement.\n\n“Terms URL” means the\ + \ following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party\ + \ Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated third party\ + \ before a court or government tribunal (including any appellate proceeding).\n\n\"Trademark\ + \ Guidelines\" means (a) Google’s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html;\ + \ and (b) the “Use of Trademarks” section of the “Using Google Maps, Google Earth and Street\ + \ View” permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark\ + \ policy.\n\n“URL Terms” means the following, which will control in the following order\ + \ if there is a conflict:\n\n(a) the Maps Service Specific Terms;\n\n(b) the SLA;\n\n(c)\ + \ the AUP;\n\n(d) the Maps Technical Support Services Guidelines;\n\n(e) the Google Maps/Google\ + \ Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and\n\n(f)\ + \ the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html." json: google-maps-tos-2018-10-31.json - yml: google-maps-tos-2018-10-31.yml + yaml: google-maps-tos-2018-10-31.yml html: google-maps-tos-2018-10-31.html - text: google-maps-tos-2018-10-31.LICENSE + license: google-maps-tos-2018-10-31.LICENSE - license_key: google-maps-tos-2019-05-02 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-maps-tos-2019-05-02 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Google Maps Platform Terms of Service\n\nLast modified: May 02, 2019\n\nIf you have\ + \ entered into an offline variant of this Agreement, the terms below do not apply, and your\ + \ offline agreement governs your use of the Google Maps Core Services.\n\nIf your billing\ + \ account is in Brazil, please review these Terms of Service, which apply to your use of\ + \ Google Cloud Platform.\n\nSe a sua conta para faturamento é no Brasil, por gentileza veja\ + \ o Termos de Serviço, que será o Termo aplicável à sua utilização da Google Maps Platform.\n\ + \nGoogle Maps Platform License Agreement\n\nThis Google Maps Platform License Agreement\ + \ (the \"Agreement\") is made and entered into between Google and the entity or person agreeing\ + \ to these terms (\"Customer\"). \"Google\" means either (i) Google Commerce Limited (“GCL”),\ + \ a company incorporated under the laws of Ireland, with offices at Gordon House, Barrow\ + \ Street, Dublin 4, Ireland, if Customer has a billing address in the EU and has chosen\ + \ “non-business” as the tax status/setting for its Google account, (ii) Google Ireland Limited,\ + \ with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer's billing\ + \ address is in any country within Europe, the Middle East, or Africa (\"EMEA\"), (iii)\ + \ Google Asia Pacific Pte. Ltd., with offices at 70 Pasir Panjang Road, #03-71, Mapletree\ + \ Business City II Singapore 117371, if Customer's billing address is in any country within\ + \ the Asia Pacific region (\"APAC\") except as provided below for Customers with the billing\ + \ address in Japan, New Zealand, or Australia, (iv) Google Cloud Japan G.K., with offices\ + \ at Roppongi Hills Mori Tower, 10-1, Roppongi 6-chome, Minato-ku Tokyo, if Customer’s billing\ + \ address is in Japan, (v) Google Australia Pty Ltd., with offices at Level 5, 48 Pirrama\ + \ Road, Pyrmont, NSW 2009 Australia, if Customer’s billing address is in Australia, (vi)\ + \ Google Cloud Canada Corporation, with offices at 111 Richmond Street West, Toronto, ON\ + \ M5H 2G4, Canada, if Customer’s billing address is in Canada, or (vii) Google LLC, with\ + \ offices at 1600 Amphitheatre Parkway, Mountain View, California 94043, if Customer's billing\ + \ address is in any country in the world other than those in EMEA and APAC. For Customers\ + \ with a billing address in New Zealand, this Agreement is made and entered into by and\ + \ between Customer and Google New Zealand Limited, with offices at PWC Tower, Level 27,\ + \ 188 Quay Street, Auckland, New Zealand 1010, as an authorized reseller in New Zealand\ + \ of the Services and “Google” means Google Asia Pacific Pte. Ltd. and/or its affiliates\ + \ (including Google New Zealand Limited) as the context requires.\n\nThis Agreement is effective\ + \ as of the date Customer clicks to accept the Agreement, or enters into a Reseller Agreement\ + \ if purchasing through a Reseller (the \"Effective Date\"). If you are accepting on behalf\ + \ of Customer, you represent and warrant that: (i) you have full legal authority to bind\ + \ Customer to this Agreement; (ii) you have read and understand this Agreement; and (iii)\ + \ you agree, on behalf of Customer, to this Agreement. If you do not have the legal authority\ + \ to bind Customer, please do not click to accept. This Agreement governs Customer's access\ + \ to and use of the Services.\n\nFor an offline variant of this Agreement, you may contact\ + \ Google for more information.\n1. Provision of the Services.\n\n1.1 Use of the Services\ + \ in Customer Applications. Google will provide the Services to Customer in accordance\ + \ with the applicable SLA, and Customer may use the Google Maps Core Services in Customer\ + \ Application(s) in accordance with Section 3 (License).\n\n1.2 Admin Console; Projects;\ + \ API Keys. Customer will administer the Services through the online Admin Console. To access\ + \ the Services, Customer must create Project(s) and use its API key(s) in accordance with\ + \ the Documentation.\n\n1.3 Accounts. Customer must have an Account. Customer is responsible\ + \ for: (a) the information it provides in connection with the Account; (b) maintaining the\ + \ confidentiality and security of the Account and associated passwords; and (c) any use\ + \ of its Account.\n\n1.4 Customer Domains and Applications. Customer must list in the Admin\ + \ Console each authorized domain and application that uses the Services. Customer is responsible\ + \ for ensuring that only authorized domains and applications use the Services.\n\n1.5 New\ + \ Features and Services. Google may: (a) make new features or functionality available through\ + \ the Services and (b) add new services to the \"Services\" definition (by adding them at\ + \ the URL stated under that definition). Customer’s use of new features or functionality\ + \ may be contingent on Customer’s agreement to additional terms applicable to the new feature\ + \ or functionality.\n\n1.6 Modifications.\n\n1.6.1 To the Services. Google may make changes\ + \ to the Services, subject to Section 9 (Deprecation Policy), which may include adding,\ + \ updating, or discontinuing any Services or portion or feature(s) of the Services. Google\ + \ will notify Customer of any material change to the Services.\n\n1.6.2. To the Agreement.\ + \ Google may make changes to this Agreement, including pricing (and any linked documents).\ + \ Unless otherwise noted by Google, material changes to the Agreement will become effective\ + \ 30 days after notice is given, except if the changes apply to new functionality in which\ + \ case they will be effective immediately. Google will provide at least 90 days advance\ + \ notice for materially adverse changes to any SLAs by: (a) sending an email to Customer’s\ + \ primary point of contact; (b) posting a notice in the Admin Console; or (c) posting a\ + \ notice to the applicable SLA webpage. If Customer does not agree to the revised Agreement,\ + \ Customer should stop using the Services. Google will post any modification to this Agreement\ + \ to the Terms URL.\n2. Payment Terms.\n\n2.1 Free Quota. Certain Services are provided\ + \ to Customer without charge up to the Fee Threshold, as applicable.\n\n2.2 Online Billing.\ + \ At the end of the applicable Fee Accrual Period, Google will issue an electronic bill\ + \ to Customer for all charges accrued above the Fee Threshold based on (a) Customer’s use\ + \ of the Services during the previous Fee Accrual Period; (b) any Committed Purchases selected;\ + \ and (c) any Package Purchases selected. For use above the Fee Threshold, Customer will\ + \ be responsible for all Fees up to the amount set in the Account and will pay all Fees\ + \ in the currency set forth in the invoice. If Customer elects to pay by credit card, debit\ + \ card, or other non-invoiced form of payment, Google will charge (and Customer will pay)\ + \ all Fees immediately at the end of the Fee Accrual Period. If Customer elects to pay by\ + \ invoice (and Google agrees), all Fees are due as stated in the invoice. Customer’s obligation\ + \ to pay all Fees is non-cancellable. Google's measurement of Customer’s use of the Services\ + \ is final. Google has no obligation to provide multiple bills. Payments made via wire transfer\ + \ must include the bank information provided by Google. If Customer has entered into the\ + \ Agreement with GCL, Google may collect payments via Google Payment Limited, a company\ + \ incorporated in England and Wales with offices at Belgrave House, 76 Buckingham Palace\ + \ Road, London, SW1W 9TQ, United Kingdom.\n\n2.3 Taxes.\n\n2.3.1 Customer is responsible\ + \ for any Taxes, and Customer will pay Google for the Services without any reduction for\ + \ Taxes. If Google is obligated to collect or pay Taxes, the Taxes will be invoiced to Customer,\ + \ unless Customer provides Google with a timely and valid tax exemption certificate authorized\ + \ by the appropriate taxing authority. In some states the sales tax is due on the total\ + \ purchase price at the time of sale and must be invoiced and collected at the time of the\ + \ sale. If Customer is required by law to withhold any Taxes from its payments to Google,\ + \ Customer must provide Google with an official tax receipt or other appropriate documentation\ + \ to support such withholding. If under the applicable tax legislation the Services are\ + \ subject to local VAT and the Customer is required to make a withholding of local VAT from\ + \ amounts payable to Google, the value of Services calculated in accordance with the above\ + \ procedure will be increased (grossed up) by the Customer for the respective amount of\ + \ local VAT and the grossed up amount will be regarded as a VAT inclusive price. Local VAT\ + \ amount withheld from the VAT-inclusive price will be remitted to the applicable local\ + \ tax entity by the Customer and Customer will ensure that Google will receives payment\ + \ for its services for the net amount as would otherwise be due (the VAT inclusive price\ + \ less the local VAT withheld and remitted to applicable tax authority).\n\n2.3.2 If required\ + \ under applicable law, Customer will provide Google with applicable tax identification\ + \ information that Google may require to ensure its compliance with applicable tax regulations\ + \ and authorities in applicable jurisdictions. Customer will be liable to pay (or reimburse\ + \ Google for) any taxes, interest, penalties or fines arising out of any mis-declaration\ + \ by the Customer.\n\n2.4 Invoice Disputes & Refunds. Any invoice disputes must be submitted\ + \ before the payment due date. If the parties determine that certain billing inaccuracies\ + \ are attributable to Google, Google will not issue a corrected invoice, but will instead\ + \ issue a credit memo specifying the incorrect amount in the affected invoice. If the disputed\ + \ invoice has not yet been paid, Google will apply the credit memo amount to the disputed\ + \ invoice and Customer will be responsible for paying the resulting net balance due on that\ + \ invoice. To the fullest extent permitted by law, Customer waives all claims relating to\ + \ Fees unless claimed within 60 days after charged (this does not affect any Customer rights\ + \ with its credit card issuer). Refunds (if any) are at the discretion of Google and will\ + \ only be in the form of credit for the Services. Nothing in this Agreement obligates Google\ + \ to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. Late payments may\ + \ bear interest at the rate of 1.5% per month (or the highest rate permitted by law, if\ + \ less) from the payment due date until paid in full. Customer will be responsible for all\ + \ reasonable expenses (including attorneys’ fees) incurred by Google in collecting such\ + \ delinquent amounts. If Customer is late on payment for the Services, Google may suspend\ + \ the Services or terminate the Agreement for breach under Section 11.2 (Termination for\ + \ Breach).\n\n2.6 No Purchase Order Number Required. Google is not required to provide a\ + \ purchase order number on Google’s invoice (or otherwise).\n3. License.\n\n3.1 License\ + \ Grant. Subject to this Agreement's terms, during the Term, Google grants to Customer a\ + \ non-exclusive, non-transferable, non-sublicensable, license to use the Services in Customer\ + \ Application(s), which may be: (a) fee-based or non-fee-based; (b) public/external or private/internal;\ + \ (c) business-to-business or business-to-consumer; or (d) asset tracking.\n\n3.2 License\ + \ Requirements and Restrictions. The following are conditions of the license granted in\ + \ Section 3.1. In this Section 3.2, the phrase “Customer will not” means “Customer will\ + \ not, and will not permit a third party to”.\n\n3.2.2 General Restrictions. Unless Google\ + \ specifically agrees in writing, Customer will not: (a) copy, modify, create a derivative\ + \ work of, reverse engineer, decompile, translate, disassemble, or otherwise attempt to\ + \ extract any or all of the source code (except to the extent such restriction is expressly\ + \ prohibited by applicable law); (b) sublicense, transfer, or distribute any of the Services;\ + \ (c) sell, resell, or otherwise make the Services available as a commercial offering to\ + \ a third party; or (d) access or use the Services: (i) for High Risk Activities; (ii) in\ + \ a manner intended to avoid incurring Fees; (iii) for activities that are subject to the\ + \ International Traffic in Arms Regulations (ITAR) maintained by the United States Department\ + \ of State; (iv) on behalf of or for the benefit of any entity or person who is legally\ + \ prohibited from using the Services; or (v) to transmit, store, or process Protected Health\ + \ Information (as defined in and subject to HIPAA).\n\n3.2.3 Requirements for Using the\ + \ Services.\n\n(a) Terms of Service and Privacy Policy. The Customer Application’s terms\ + \ of service will (A) notify users that the Customer Application includes Google Maps features\ + \ and content; and (B) state that use of Google Maps features and content is subject to\ + \ the then-current versions of the: (1) Google Maps/Google Earth Additional Terms of Service\ + \ at https://maps.google.com/help/terms_maps.html; and (2) Google Privacy Policy at https://www.google.com/policies/privacy/.\ + \ If the Customer Application allows users to include the Google Maps Core Services in Downstream\ + \ Products, then Customer will contractually require that all Downstream Products’ terms\ + \ of service satisfy the same notice and flow-down requirements that apply to the Customer\ + \ Application under Section 3.2.3(a)(Terms of Service and Privacy Policy). If users of the\ + \ Customer Application (and Downstream Products, if any) fail to comply with applicable\ + \ terms of the Google Maps/Google Earth Additional Terms of Service, then Customer will\ + \ take appropriate enforcement action, including suspending or terminating those users’\ + \ use of Google Maps features and content in the Customer Application or Downstream Products.\n\ + \n(b) Attribution. Customer will display all attribution that (i) Google provides through\ + \ the Services (including branding, logos, and copyright and trademark notices); or (ii)\ + \ is specified in the Maps Service Specific Terms. Customer will not modify, obscure, or\ + \ delete such attribution.\n\n(c) Review of Customer Applications. At Google’s request,\ + \ Customer will submit Customer Application(s) and Project(s) to Google for review to ensure\ + \ compliance with the Agreement (including the AUP).\n\n3.2.4 Restrictions Against Misusing\ + \ the Services.\n\n(a) No Scraping. Customer will not extract, export, or otherwise scrape\ + \ Google Maps Content for use outside the Services. For example, Customer will not: (i)\ + \ pre-fetch, index, store, reshare, or rehost Google Maps Content outside the services;\ + \ (ii) bulk download Google Maps tiles, Street View images, geocodes, directions, distance\ + \ matrix results, roads information, places information, elevation values, and time zone\ + \ details; (iii) copy and save business names, addresses, or user reviews; or (iv) use Google\ + \ Maps Content with text-to-speech services.\n\n(b) No Caching. Customer will not cache\ + \ Google Maps Content except as expressly permitted under the Maps Service Specific Terms.\n\ + \n(c) No Creating Content From Google Maps Content. Customer will not create content based\ + \ on Google Maps Content. For example, Customer will not: (i) trace or digitize roadways,\ + \ building outlines, utility posts, or electrical lines from the Maps JavaScript API Satellite\ + \ base map type; (ii) create 3D building models from 45° Imagery from Maps JavaScript API;\ + \ (iii) build terrain models based on elevation values from the Elevation API; (iv) use\ + \ latitude/longitude values from the Places API as an input for point-in-polygon analysis;\ + \ (v) construct an index of tree locations within a city from Street View imagery; or (vi)\ + \ convert text-based driving times into synthesized speech results.\n\n(d) No Re-Creating\ + \ Google Products or Features. Customer will not use the Services to create a product or\ + \ service with features that are substantially similar to or that re-create the features\ + \ of another Google product or service. Customer’s product or service must contain substantial,\ + \ independent value and features beyond the Google products or services. For example, Customer\ + \ will not: (i) re-distribute the Google Maps Core Services or pass them off as if they\ + \ were Customer’s services; (ii) create a substitute of the Google Maps Core Services, Google\ + \ Maps, or Google Maps mobile apps, or their features; (iii) use the Google Maps Core Services\ + \ in a listings or directory service or to create or augment an advertising product; (iv)\ + \ combine data from the Directions API, Geolocation API, and Maps SDK for Android to create\ + \ real-time navigation functionality substantially similar to the functionality provided\ + \ by the Google Maps for Android mobile app.\n\n(e) No Use With Non-Google Maps. Customer\ + \ will not use the Google Maps Core Services in a Customer Application that contains a non-Google\ + \ map. For example, Customer will not (i) display Places listings on a non-Google map, or\ + \ (ii) display Street View imagery and non-Google maps in the same Customer Application.\n\ + \n(f) No Circumventing Fees. Customer will not circumvent the applicable Fees. For example,\ + \ Customer will not create multiple billing accounts or Projects to avoid incurring Fees,\ + \ prevent Google from accurately calculating Customer’s Service usage levels, abuse any\ + \ free Service quotas, or offer access to the Services under a “time-sharing” or “service\ + \ bureau” model.\n\n(g) No Use in Prohibited Territories. Customer will not distribute or\ + \ market in a Prohibited Territory any Customer Application(s) that use the Google Maps\ + \ Core Services.\n\n(h) No Use in Embedded Vehicle Systems. Customer will not use the Google\ + \ Maps Core Services in connection with any Customer Application or device embedded in a\ + \ vehicle. For example, Customer will not create a Customer Application that (i) is embedded\ + \ in an in-dashboard automotive infotainment system; and (ii) allows End Users to request\ + \ driving directions from the Directions API.\n\n(i) No Modifying Search Results Integrity.\ + \ Customer will not modify any of the Service’s search results.\n\n3.2.5 Benchmarking. Customer\ + \ may not publicly disclose directly or through a third party the results of any comparative\ + \ or compatibility testing, benchmarking, or evaluation of the Services (each, a “Test”),\ + \ unless the disclosure includes all information necessary for Google or a third party to\ + \ replicate the Test. If Customer conducts, or directs a third party to conduct, a Test\ + \ of the Services and publicly discloses the results directly or through a third party,\ + \ then Google (or a Google directed third party) may conduct Tests of any publicly available\ + \ cloud products or services provided by Customer and publicly disclose the results of any\ + \ such Test (which disclosure will include all information necessary for Customer or a third\ + \ party to replicate the Test).\n4. Customer Obligations. \n\n4.1 Compliance. Customer will:\ + \ (a) ensure that Customer’s and its End Users’ use of the Services complies with the Agreement;\ + \ and (b) use commercially reasonable efforts to prevent, promptly notify Google of, and\ + \ terminate any unauthorized use of or access to its Account(s) or the Services.\n\n4.2\ + \ Documentation. Google may provide Documentation for Customer’s use of the Services. The\ + \ Documentation may specify restrictions (e.g. attribution or HTML restrictions) on how\ + \ the Services may be used and Customer will comply with any such restrictions specified.\n\ + \n4.3 Copyright Policy. Google provides information to help copyright holders manage their\ + \ intellectual property online, but Google cannot determine whether something is being used\ + \ legally or not without their input. Google responds to notices of alleged copyright infringement\ + \ and terminates accounts of repeat infringers according to applicable copyright laws including\ + \ in particular the process set out in the U.S. Digital Millennium Copyright Act. If Customer\ + \ thinks somebody is violating Customer’s or Customer End Users’ copyrights and wants to\ + \ notify Google, Customer can find information about submitting notices, and Google's policy\ + \ about responding to notices at https://www.google.com/dmca.html.\n\n4.4 Data Use, Protection,\ + \ and Privacy.\n\n4.4.1 Data Use and Retention. To provide the Services through the Customer\ + \ Application(s), Google must receive and collect data from End Users and Customer, including\ + \ search terms, IP addresses, and latitude/longitude coordinates. Customer acknowledges\ + \ and agrees that Google and its Affiliates may use and retain this data to provide and\ + \ improve Google products and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\ + \n4.4.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller\ + \ Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\ + \n4.4.3 End User Requirements.\n\n(a) End User Privacy. Customer’s use of the Services\ + \ in the Customer Application will comply with applicable privacy laws, including laws regarding\ + \ Services that store and access Cookies on End Users’ devices. If Customer has End Users\ + \ in the European Economic Area, Customer will comply with the EU End User Consent Policy\ + \ at https://www.google.com/about/company/user-consent-policy.html.\n\n(b) End User Personal\ + \ Data. Through the normal functioning of the Google Maps Core Services, End Users provide\ + \ personally identifiable information and Personal Data directly to Google, subject to the\ + \ Google Privacy Policy at https://www.google.com/policies/privacy/. However, Customer acknowledges\ + \ and agrees that Customer will not provide these categories of data to Google.\n\n(c) End\ + \ User Location Privacy Requirements. To safeguard End Users’ location privacy, Customer\ + \ will ensure that the Customer Application(s): (i) notify End Users in advance of (1) the\ + \ type(s) of data that Customer intends to collect from the End Users or the End Users’\ + \ devices, and (2) the combination and use of End User's location with any other data provider's\ + \ data; and (ii) will not obtain or cache any End User's location except with the End User's\ + \ express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions\ + \ Violations. Google may Suspend the Services without prior notice if Customer breaches\ + \ Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Violations or Emergency\ + \ Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP\ + \ Violations) and 5.2.2 (Emergency Security Issues). Any Suspension under those Sections\ + \ will be to the minimum extent and for the shortest duration required to: (a) prevent or\ + \ terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c)\ + \ comply with applicable law.\n\n5.2.1 AUP Violations. If Google becomes aware that Customer’s\ + \ or any End User’s use of the Services violates the AUP, Google will give Customer notice\ + \ of such violation by requesting that Customer correct the violation. If Customer fails\ + \ to correct such violation within 24 hours, or if Google is otherwise required by applicable\ + \ law to take action, then Google may Suspend all or part of Customer’s use of the Services.\n\ + \n5.2.2 Emergency Security Issues. Google may immediately Suspend Customer’s use of the\ + \ Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend\ + \ such use immediately to comply with applicable law. At Customer’s request, unless prohibited\ + \ by applicable law, Google will notify Customer of the basis for the Suspension as soon\ + \ as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights\ + \ Infringement. If the Customer Application is alleged to infringe a third party’s Intellectual\ + \ Property Rights, Google may require Customer to suspend distributing or selling the Customer\ + \ Application with 30 days’ written notice until such allegation is fully resolved. In any\ + \ event, this Section 5.3 does not reduce Customer’s obligations under Section 15 (Indemnification).\n\ + 6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as\ + \ expressly stated in this Agreement, this Agreement does not grant either party any rights,\ + \ implied or otherwise, to the other’s content or any of the other’s intellectual property.\ + \ As between the parties, Customer owns all Intellectual Property Rights in the Customer\ + \ Application, and Google owns all Intellectual Property Rights in the Services and Software.\n\ + \n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google\ + \ may use that information without obligation to Customer, and Customer irrevocably assigns\ + \ to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices\ + \ and License Terms.\n\nCertain components of the Services (including open source software)\ + \ are subject to third-party copyright and other Intellectual Property Rights, as specified\ + \ in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html;\ + \ and (b) separate, publicly-available third-party license terms, which Google will provide\ + \ to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will\ + \ provide Maps Technical Support Services to Customer in accordance with the Maps Technical\ + \ Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical\ + \ support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n9.1 Google\ + \ will notify Customer at least 12 months before making material discontinuance(s) or backwards\ + \ incompatible change(s) to the Services, unless Google reasonably determines that: (a)\ + \ Google cannot do so by law or by contract (including if there is a change in applicable\ + \ law or contract) or (b) continuing to provide the Services could create a (i) security\ + \ risk or (ii) substantial economic or technical burden.\n\n9.2 Section 9.1 applies to the\ + \ Services listed at https://cloud.google.com/maps-platform/terms/maps-deprecation/. If\ + \ Google deprecates any Services that are not listed at the above URL, Google will use commercially\ + \ reasonable efforts to minimize the adverse impacts of such deprecations.\n10. Confidential\ + \ Information.\n\n10.1 Obligations. Subject to Section 10.2 (Required Disclosure), the recipient\ + \ will use the other party’s Confidential Information only to exercise its rights and fulfill\ + \ its obligations under the Agreement. The recipient will use reasonable care to protect\ + \ against disclosure of the other party’s Confidential Information to parties other than\ + \ the recipient’s employees, Affiliates, agents, or professional advisors (“Delegates”)\ + \ who need to know it and who have a legal obligation to keep it confidential. The recipient\ + \ will ensure that its Delegates are also subject to the same non-disclosure and use obligations.\n\ + \n10.2 Required Disclosure. The recipient may disclose the other party’s Confidential Information\ + \ to the extent required by applicable Legal Process; provided that the recipient uses commercially\ + \ reasonable efforts to: (a) promptly notify the other party of such disclosure before disclosing;\ + \ and (b) comply with the other party’s reasonable requests regarding its efforts to oppose\ + \ the disclosure. Notwithstanding the foregoing, subsections (a) and (b) above will not\ + \ apply if the recipient determines that complying with (a) and (b) could: (i) result in\ + \ a violation of Legal Process; (ii) obstruct a governmental investigation; and/or (iii)\ + \ lead to death or serious physical harm to an individual. As between the parties, Customer\ + \ is responsible for responding to all third party requests concerning its use and Customer\ + \ End Users’ use of the Services.\n11. Term and Termination.\n\n11.1 Agreement Term. The\ + \ “Term” of this Agreement will begin on the Effective Date and continue until the Agreement\ + \ is terminated under this Section.\n\n11.2 Termination for Breach. Either party may terminate\ + \ this Agreement for breach if: (a) the other party is in material breach of the Agreement\ + \ and fails to cure that breach within 30 days after receipt of written notice; or (b) the\ + \ other party ceases its business operations or becomes subject to insolvency proceedings\ + \ and the proceedings are not dismissed within 90 days. In addition, Google may terminate\ + \ any, all, or any portion of the Services or Projects, if Customer meets any of the conditions\ + \ in subsections (a) or (b).\n\n11.3 Termination for Inactivity. Google reserves the right\ + \ to terminate provision of Service(s) to a Project on 30 days advance notice if, for more\ + \ than 180 days, such Project (a) has not made any requests to the Services from any Customer\ + \ Applications; or (b) such Project has not incurred any Fees for such Service(s).\n\n11.4\ + \ Termination for Convenience. Customer may stop using the Services at any time. Subject\ + \ to any financial commitments expressly made by this Agreement, Customer may terminate\ + \ this Agreement for its convenience at any time on prior written notice and upon termination,\ + \ must cease use of the applicable Services. Google may terminate this Agreement for its\ + \ convenience at any time without liability to Customer.\n\n11.5 Effects of Termination.\ + \ \n\n11.5.1 If the Agreement is terminated, then: (a) the rights granted by one party to\ + \ the other will immediately cease; (b) all Fees owed by Customer to Google are immediately\ + \ due upon receipt of the final electronic bill; and (c) Customer will delete the Software\ + \ and any content from the Services by the termination effective date.\n\n11.5.2 The following\ + \ will survive expiration or termination of the Agreement: Section 2 (Payment Terms), Section\ + \ 3.2 (License Requirements and Restrictions), Section 4.4 (Data Use, Protection, and Privacy),\ + \ Section 6 (Intellectual Property; Feedback), Section 10 (Confidential Information), Section\ + \ 11.5 (Effects of Termination), Section 14 (Disclaimer), Section 15 (Indemnification),\ + \ Section 16 (Limitation of Liability), Section 19 (Miscellaneous), and Section 20 (Definitions).\n\ + 12. Publicity.\n\nCustomer may state publicly that it is a customer of the Services, consistent\ + \ with the Trademark Guidelines. If Customer wants to display Google Brand Features in connection\ + \ with its use of the Services, Customer must obtain written permission from Google through\ + \ the process specified in the Trademark Guidelines. Google may include Customer’s name\ + \ or Brand Features in a list of Google customers, online or in promotional materials. Google\ + \ may also verbally reference Customer as a customer of the Services. Neither party needs\ + \ approval if it is repeating a public statement that is substantially similar to a previously-approved\ + \ public statement. Any use of a party’s Brand Features will inure to the benefit of the\ + \ party holding Intellectual Property Rights to those Brand Features. A party may revoke\ + \ the other party’s right to use its Brand Features under this Section with written notice\ + \ to the other party and a reasonable period to stop the use.\n13. Representations and Warranties.\n\ + \nEach party represents and warrants that: (a) it has full power and authority to enter\ + \ into the Agreement; and (b) it will comply with Export Control Laws and Anti-Bribery Laws\ + \ applicable to its provision, receipt, or use, of the Services, as applicable.\n14. Disclaimer.\n\ + \n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO THE FULLEST EXTENT PERMITTED BY\ + \ APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS,\ + \ IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR\ + \ A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED USE OF THE SERVICES\ + \ OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION ACCESSIBLE THROUGH\ + \ THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES EXPRESSLY STATED IN\ + \ THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES ARE PROVIDED FOR\ + \ PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES MAY DIFFER FROM\ + \ ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION. CUSTOMER MUST\ + \ EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT THE CUSTOMER APPLICATION\ + \ IS SAFE FOR END USERS AND OTHER THIRD PARTIES.\n15. Indemnification.\n\n15.1 By Customer.\ + \ Unless prohibited by applicable law, Customer will defend Google and its Affiliates and\ + \ indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to\ + \ the extent arising from (a) any Customer Indemnified Materials or (b) Customer’s or an\ + \ End User’s use of the Services in violation of the AUP or in violation of the Agreement.\n\ + \n15.2 By Google. Google will defend Customer and its Affiliates participating under the\ + \ Agreement (“Customer Indemnified Parties”), and indemnify them against Indemnified Liabilities\ + \ in any Third-Party Legal Proceeding to the extent arising from an allegation that Customer\ + \ Indemnified Parties' use of Google Indemnified Materials infringes the third party's Intellectual\ + \ Property Rights.\n\n15.3 Exclusions. This Section 15 will not apply to the extent the\ + \ underlying allegation arises from (a) the indemnified party’s breach of the Agreement\ + \ or (b) a combination of the indemnifying party’s technology or Brand Features with materials\ + \ not provided by the indemnifying party, unless the combination is required by the Agreement.\n\ + \n15.4 Conditions. Sections 15.1 and 15.2 will apply only to the extent:\n\n(a) The indemnified\ + \ party has promptly notified the indemnifying party in writing of any Allegation(s) that\ + \ preceded the Third-Party Legal Proceeding and cooperates reasonably with the indemnifying\ + \ party to resolve the Allegation(s) and Third-Party Legal Proceeding. If breach of this\ + \ Section 15.4(a) prejudices the defense of the Third-Party Legal Proceeding, the indemnifying\ + \ party’s obligations under Section 15.1 or 15.2 (as applicable) will be reduced in proportion\ + \ to the prejudice.\n\n(b) The indemnified party tenders sole control of the indemnified\ + \ portion of the Third-Party Legal Proceeding to the indemnifying party, subject to the\ + \ following: (i) the indemnified party may appoint its own non-controlling counsel, at its\ + \ own expense; and (ii) any settlement requiring the indemnified party to admit liability,\ + \ pay money, or take (or refrain from taking) any action, will require the indemnified party’s\ + \ prior written consent, not to be unreasonably withheld, conditioned, or delayed.\n\n15.5\ + \ Remedies.\n\n(a) If Google reasonably believes the Services might infringe a third party’s\ + \ Intellectual Property Rights, then Google may, at its sole option and expense: (i) procure\ + \ the right for Customer to continue using the Services; (ii) modify the Services to make\ + \ them non-infringing without materially reducing their functionality; or (iii) replace\ + \ the Services with a non-infringing, functionally equivalent alternative.\n\n(b) If Google\ + \ does not believe the remedies in Section 15.5(a) are commercially reasonable, then Google\ + \ may suspend or terminate Customer’s use of the impacted Services.\n\n15.6 Sole Rights\ + \ and Obligations. Without affecting either party’s termination rights, this Section 15\ + \ states the parties’ sole and exclusive remedy under this Agreement for any third party's\ + \ Intellectual Property Rights Allegations and Third-Party Legal Proceedings covered by\ + \ this Section 15 (Indemnification).\n16. Limitation of Liability.\n\n16.1 Limitation on\ + \ Indirect Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PARTIES AND\ + \ GOOGLE’S LICENSORS, WILL NOT BE LIABLE UNDER THIS AGREEMENT FOR LOST REVENUES OR PROFITS\ + \ (WHETHER DIRECT OR INDIRECT), SAVINGS, GOODWILL, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL,\ + \ EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE PARTY OR LICENSOR, AS APPLICABLE, KNEW OR\ + \ SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY\ + \ A REMEDY.\n\n16.2 Limitation on Amount of Liability. TO THE MAXIMUM EXTENT PERMITTED BY\ + \ APPLICABLE LAW, THE PARTIES AND GOOGLE’S LICENSORS, MAY NOT BE HELD LIABLE UNDER THIS\ + \ AGREEMENT FOR MORE THAN THE AMOUNT PAID BY CUSTOMER TO GOOGLE UNDER THIS AGREEMENT DURING\ + \ THE TWELVE MONTHS BEFORE THE EVENT GIVING RISE TO LIABILITY.\n\n16.3 Exceptions to Limitations.\ + \ These limitations of liability do not apply to breaches of confidentiality obligations,\ + \ violations of a party’s Intellectual Property Rights by the other party, or Customer's\ + \ payment obligations.\n17. Advertising.\n\nIn its sole discretion, Customer may configure\ + \ the Service to either display or not display advertisements served by Google.\n18. U.S.\ + \ Federal Agency Users.\n\nThe Services were developed solely at private expense and are\ + \ commercial computer software and related documentation within the meaning of the applicable\ + \ Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\n\ + 19.1 Notices. All notices must be in writing and addressed to the other party’s legal department\ + \ and primary point of contact. The email address for notices being sent to Google’s Legal\ + \ Department is legal-notices@google.com. Notice will be treated as given on receipt as\ + \ verified by written or automated receipt or by electronic log (as applicable).\n\n19.2\ + \ Assignment. Neither party may assign any part of this Agreement without the written consent\ + \ of the other, except to an Affiliate where: (a) the assignee has agreed in writing to\ + \ be bound by the terms of this Agreement; (b) the assigning party remains liable for obligations\ + \ under the Agreement if the assignee defaults on them; and (c) the assigning party has\ + \ notified the other party of the assignment. Any other attempt to assign is void.\n\n19.3\ + \ Change of Control. If a party experiences a change of Control (for example, through a\ + \ stock purchase or sale, merger, or other form of corporate transaction): (a) that party\ + \ will give written notice to the other party within 30 days after the change of Control;\ + \ and (b) the other party may immediately terminate this Agreement any time between the\ + \ change of Control and 30 days after it receives that written notice.\n\n19.4 Force Majeure.\ + \ Neither party will be liable for failure or delay in performance to the extent caused\ + \ by circumstances beyond its reasonable control, including acts of God, natural disasters,\ + \ terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations under\ + \ the Agreement but will remain liable to Customer for any subcontracted obligations.\n\n\ + 19.6 No Agency. This Agreement does not create any agency, partnership or joint venture\ + \ between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived\ + \ any rights by not exercising (or delaying the exercise of) any rights under this Agreement.\n\ + \n19.8 Severability. If any term (or part of a term) of this Agreement is invalid, illegal,\ + \ or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party\ + \ Beneficiaries. This Agreement does not confer any benefits on any third party unless it\ + \ expressly states that it does.\n\n19.10 Equitable Relief. Nothing in this Agreement will\ + \ limit either party’s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n19.11.1\ + \ For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county\ + \ or state government entity, then the Agreement will be silent regarding governing law\ + \ and venue.\n\n19.11.2 For U.S. Federal Government Entities. If Customer is a U.S. federal\ + \ government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO\ + \ THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA,\ + \ EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I)\ + \ THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA’S CONFLICT OF LAWS RULES) WILL\ + \ APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF\ + \ OR RELATING TO THIS AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION\ + \ IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n19.11.3\ + \ For All Other Entities. If Customer is any entity not listed in Section 19.11.1 or 19.11.2\ + \ then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR\ + \ THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE’S CONFLICT OF LAWS\ + \ RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA\ + \ COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\ + \n19.12 Amendments. Except as stated in Section 1.5.2 (Modifications; To the Agreement),\ + \ any amendment must be in writing, signed by both parties, and expressly state that it\ + \ is amending this Agreement.\n\n19.13 Entire Agreement. This Agreement sets out all terms\ + \ agreed between the parties and supersedes all other agreements between the parties relating\ + \ to its subject matter. In entering into this Agreement, neither party has relied on, and\ + \ neither party will have any right or remedy based on, any statement, representation or\ + \ warranty (whether made negligently or innocently), except those expressly stated in this\ + \ Agreement. The terms located at any URL referenced in this Agreement and the Documentation\ + \ are incorporated by reference into the Agreement. After the Effective Date, Google may\ + \ provide an updated URL in place of any URL in this Agreement.\n\n19.14 Conflicting Terms.\ + \ If there is a conflict between the documents that make up this Agreement, the documents\ + \ will control in the following order: the Agreement, and the terms at any URL. \n\n19.15\ + \ Conflicting Translations. If this Agreement is translated into any other language, and\ + \ there is a discrepancy between the English text and the translated text, the English text\ + \ will govern.\n20. Reseller Orders.\n\nThis Section applies if Customer orders the Services\ + \ from a Reseller under a Reseller Agreement (including the Reseller Order Form).\n\n20.1\ + \ Orders. If Customer orders Services from Reseller, then: (a) fees for the Services will\ + \ be set between Customer and Reseller, and any payments will be made directly to Reseller\ + \ under the Reseller Agreement; (b) Section 2 of this Agreement (Payment Terms) will not\ + \ apply to the Services; (c) Customer will receive any applicable SLA credits from Reseller,\ + \ if owed to Customer in accordance with the SLA; and (d) Google will have no obligation\ + \ to provide any SLA credits to a Customer who orders Services from the Reseller.\n\n20.2\ + \ Conflicting Terms. If Customer orders Google Maps Core Services from a Reseller and if\ + \ any documents conflict, then the documents will control in the following order: the Agreement,\ + \ the terms at any URL (including the URL Terms), Reseller Order Form. For example, if there\ + \ is a conflict between the Maps Service Specific Terms and the Reseller Order Form, the\ + \ Maps Service Specific Terms will control.\n\n20.3 Reseller as Administrator. At Customer's\ + \ discretion, Reseller may access Customer's Projects, Accounts, or the Services on behalf\ + \ of Customer. As between Google and Customer, Customer is solely responsible for: (a) any\ + \ access by Reseller to Customer’s Account(s), Project(s), or the Services; and (b) defining\ + \ in the Reseller Agreement any rights or obligations as between Reseller and Customer with\ + \ respect to the Accounts, Projects, or Services.\n\n20.4 Reseller Verification of Customer\ + \ Application(s). Before providing the Services, Reseller may also verify that Customer\ + \ owns or controls the Customer Applications. If Reseller determines that Customer does\ + \ not own or control the Customer Applications, then Google will have no obligation to provide\ + \ the Services to Customer.\n21. Definitions.\n\n\"Account\" means Customer’s Google Account.\n\ + \n\"Admin Console\" means the online console(s) and/or tool(s) provided by Google to Customer\ + \ for administering the Services.\n\n\"Affiliate\" means any entity that directly or indirectly\ + \ Controls, is Controlled by, or is under common Control with a party.\n\n\"Allegation\"\ + \ means an unaffiliated third party’s allegation.\n\n“Anti-Bribery Laws” means all applicable\ + \ commercial and public anti-bribery laws, (for example, the U.S. Foreign Corrupt Practices\ + \ Act of 1977 and the UK Bribery Act 2010), which prohibit corrupt offers of anything of\ + \ value, either directly or indirectly, to anyone, including government officials, to obtain\ + \ or keep business or to secure any other improper commercial advantage. “Government officials”\ + \ include any government employee; candidate for public office; and employee of government-owned\ + \ or government-controlled companies, public international organizations, and political\ + \ parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the then-current Acceptable Use\ + \ Policy for the Services at: https://cloud.google.com/maps-platform/terms/aup/.\n\n\"\ + Brand Features\" means the trade names, trademarks, service marks, logos, domain names,\ + \ and other distinctive brand features of each party, respectively, as secured by such party.\n\ + \n\"Confidential Information\" means information that one party (or an Affiliate) discloses\ + \ to the other party under this Agreement, and which is marked as confidential or would\ + \ normally under the circumstances be considered confidential information. It does not include\ + \ information that is independently developed by the recipient, is rightfully given to the\ + \ recipient by a third party without confidentiality obligations, or becomes public through\ + \ no fault of the recipient.\n\n\"Control\" means control of greater than 50% of the voting\ + \ rights or equity interests of a party.\n\n\"Customer Application\" means any web domain\ + \ or application (including all source code and features) owned or controlled by Customer,\ + \ or that Customer is authorized to use.\n\n\"Customer End User\" or \"End User\" means\ + \ an individual or entity that Customer permits to use the Services or Customer Application(s).\n\ + \n“Customer Indemnified Materials” means the Customer Application and Customer Brand Features.\n\ + \n\"Documentation\" means the Google documentation (as may be updated) in the form generally\ + \ made available by Google for use with the Services at https://developers.google.com/maps/documentation.\n\ + \n\"Emergency Security Issue\" means either: (a) Customer’s or Customer End Users’ use of\ + \ the Services in violation of the AUP, which could disrupt: (i) the Services; (ii) other\ + \ customers’ or their customer end users’ use of the Services; or (iii) the Google network\ + \ or servers used to provide the Services; or (b) unauthorized third party access to the\ + \ Services.\n\n\"Europe\" or \"European\" means European Economic Area or Switzerland.\n\ + \n“Export Control Laws” means all applicable export and re-export control laws and regulations,\ + \ including any applicable munitions- or defense-related regulations (for example, the International\ + \ Traffic in Arms Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual\ + \ Period\" means a calendar month or another period specified by Google in the Admin Console.\n\ + \n\"Fee Threshold\" means the threshold (as may be updated), as applicable for certain Services,\ + \ as set out in the Admin Console.\n\n“Feedback” means feedback or suggestions about the\ + \ Services provided by Customer to Google.\n\n\"Fees\" means the product of the amount of\ + \ Services used or ordered by Customer multiplied by the Prices, plus any applicable Taxes.\n\ + \n\"Google Indemnified Materials\" means Google's technology used to provide the Services\ + \ (excluding any open source software) and Google's Brand Features.\n\n\"Google Maps Content\"\ + \ means any content provided through the Services (whether created by Google or its third-party\ + \ licensors), including map and terrain data, imagery, traffic data, and places data (including\ + \ business listings).\n\n\"High Risk Activities\" means activities where the use or failure\ + \ of the Services could lead to death, personal injury, or environmental damage, including\ + \ (a) emergency response services; (b) autonomous and semi-autonomous vehicle or drone control;\ + \ (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation.\n\ + \n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it\ + \ may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means\ + \ any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs\ + \ finally awarded against the indemnified party and its Affiliates by a court of competent\ + \ jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual\ + \ Property Rights\" means current and future worldwide rights under patent, copyright, trade\ + \ secret, trademark, and moral rights laws, and other similar rights.\n\n\"Legal Process\"\ + \ means a data disclosure request made under law, governmental regulation, court order,\ + \ subpoena, warrant, governmental regulatory or agency request, or other valid legal authority,\ + \ legal procedure, or similar process.\n\n\"Maps Service Specific Terms\" means the then-current\ + \ terms specific to one or more Services at https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\ + \n\"Maps Technical Support Services\" means the technical support service provided by Google\ + \ to Customer under the then-current Maps Technical Support Services Guidelines.\n\n\"Maps\ + \ Technical Support Services Guidelines\" means the then-current technical support service\ + \ guidelines at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Personal Data\"\ + \ has the meaning provided in the General Data Protection Regulation (EU) 2016/679 of the\ + \ European Parliament and of the Council of April 27, 2016.\n\n\"Price\" means the then-current\ + \ applicable price(s) stated at https://cloud.google.com/maps-platform/pricing/sheet/.\n\ + \n\"Prohibited Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\ + \n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources\ + \ for a particular Customer Application.\n\n\"Reseller\" means, if applicable, the authorized\ + \ reseller that sells or supplies the Services to Customer.\n\n\"Reseller Agreement\" means,\ + \ if applicable, a separate, independent agreement between Customer and Reseller regarding\ + \ the Services.\n\n\"Reseller Order Form\" means an order form entered into by Reseller\ + \ and Customer, subject to the Reseller Agreement.\n\n\"Services\" and \"Google Maps Core\ + \ Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/.\ + \ The Services include the Google Maps Content and the Software.\n\n\"SLA\" or \"Service\ + \ Level Agreement\" means each of the then-current service level agreements at: https://cloud.google.com/maps-platform/terms/sla/.\n\ + \n\"Software\" means any downloadable tools, software development kits, or other computer\ + \ software provided by Google for use as part of the Services, including updates.\n\n\"\ + Taxes\" means any duties, customs fees, or taxes (other than Google’s income tax) associated\ + \ with the purchase of the Services, including any related penalties or interest.\n\n\"\ + Term\" has the meaning stated in Section 1.6 of this Agreement.\n\n“Terms URL” means the\ + \ following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party\ + \ Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated third party\ + \ before a court or government tribunal (including any appellate proceeding).\n\n\"Trademark\ + \ Guidelines\" means (a) Google’s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html;\ + \ and (b) the “Use of Trademarks” section of the “Using Google Maps, Google Earth and Street\ + \ View” permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark\ + \ policy.\n\n“URL Terms” means the following, which will control in the following order\ + \ if there is a conflict:\n\n(a) the Maps Service Specific Terms;\n\n(b) the SLA;\n\n(c)\ + \ the AUP;\n\n(d) the Maps Technical Support Services Guidelines;\n\n(e) the Google Maps/Google\ + \ Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and\n\n(f)\ + \ the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html." json: google-maps-tos-2019-05-02.json - yml: google-maps-tos-2019-05-02.yml + yaml: google-maps-tos-2019-05-02.yml html: google-maps-tos-2019-05-02.html - text: google-maps-tos-2019-05-02.LICENSE + license: google-maps-tos-2019-05-02.LICENSE - license_key: google-maps-tos-2019-11-21 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-maps-tos-2019-11-21 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Google Maps Platform Terms of Service\n\nLast modified: November 21, 2019\nThis is\ + \ not the current version of this document and is provided for archival purposes.View the\ + \ current version\n\nIf you have entered into an offline variant of this Agreement, the\ + \ terms below do not apply, and your offline agreement governs your use of the Google Maps\ + \ Core Services.\n\nIf your billing account is in Brazil, please review these Terms of Service,\ + \ which apply to your use of Google Cloud Platform.\n\nSe a sua conta para faturamento é\ + \ no Brasil, por gentileza veja o Termos de Serviço, que será o Termo aplicável à sua utilização\ + \ da Google Maps Platform.\n\nGoogle Maps Platform License Agreement\n\nThis Google Maps\ + \ Platform License Agreement (the \"Agreement\") is made and entered into between Google\ + \ and the entity or person agreeing to these terms (\"Customer\"). \"Google\" means either\ + \ (i) Google Commerce Limited (“GCL”), a company incorporated under the laws of Ireland,\ + \ with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Customer has a billing\ + \ address in the EU and has chosen “non-business” as the tax status/setting for its Google\ + \ account, (ii) Google Ireland Limited, with offices at Gordon House, Barrow Street, Dublin\ + \ 4, Ireland, if Customer's billing address is in any country within Europe, the Middle\ + \ East, or Africa (\"EMEA\"), (iii) Google Asia Pacific Pte. Ltd., with offices at 70 Pasir\ + \ Panjang Road, #03-71, Mapletree Business City II Singapore 117371, if Customer's billing\ + \ address is in any country within the Asia Pacific region (\"APAC\") except as provided\ + \ below for Customers with a billing address in Japan, South Korea, New Zealand, or Australia,\ + \ (iv) Google Cloud Canada Corporation, with offices at 111 Richmond Street West, Toronto,\ + \ ON M5H 2G4, Canada, if Customer’s billing address is in Canada, or (v) Google LLC, with\ + \ offices at 1600 Amphitheatre Parkway, Mountain View, California 94043, if Customer's billing\ + \ address is in any country in the world other than those in Canada, EMEA and APAC.\n\n\ + For Customers with a billing address in Japan, South Korea, Australia, or New Zealand, \"\ + Google\" means Google Asia Pacific Pte. Ltd and/or its affiliates as the context requires,\ + \ provided further that: this Agreement is made and entered into by and between Customer\ + \ and the following entity as an authorized reseller of the Services:\n\n for customers\ + \ in Australia: Google Australia Pty Ltd., with offices at Level 5, 48 Pirrama Road, Pyrmont,\ + \ NSW 2009 Australia;\n\n for customers in Japan: Google Cloud Japan G.K., with offices\ + \ at Roppongi Hills Mori Tower, 10-1, Roppongi 6-chome, Minato-ku Tokyo;\n\n for customers\ + \ in South Korea: Google Cloud Korea LLC, with offices at Gangnam Finance Center 20fl.,\ + \ 152 Teheran-ro, Gangnam-gu, Seoul, South Korea; and\n\n for customers in New Zealand:\ + \ Google New Zealand Limited, with offices at PWC Tower, Level 27, 188 Quay Street, Auckland,\ + \ New Zealand 1010.\n\nThis Agreement is effective as of the date Customer clicks to accept\ + \ the Agreement, or enters into a Reseller Agreement if purchasing through a Reseller (the\ + \ \"Effective Date\"). If you are accepting on behalf of Customer, you represent and warrant\ + \ that: (i) you have full legal authority to bind Customer to this Agreement; (ii) you have\ + \ read and understand this Agreement; and (iii) you agree, on behalf of Customer, to this\ + \ Agreement. If you do not have the legal authority to bind Customer, please do not click\ + \ to accept. This Agreement governs Customer's access to and use of the Services.\n\nFor\ + \ an offline variant of this Agreement, you may contact Google for more information.\n1.\ + \ Provision of the Services.\n\n1.1 Use of the Services in Customer Applications. Google\ + \ will provide the Services to Customer in accordance with the applicable SLA, and Customer\ + \ may use the Google Maps Core Services in Customer Application(s) in accordance with Section\ + \ 3 (License).\n\n1.2 Admin Console; Projects; API Keys. Customer will administer the Services\ + \ through the online Admin Console. To access the Services, Customer must create Project(s)\ + \ and use its API key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer\ + \ must have an Account. Customer is responsible for: (a) the information it provides in\ + \ connection with the Account; (b) maintaining the confidentiality and security of the Account\ + \ and associated passwords; and (c) any use of its Account.\n\n1.4 Customer Domains and\ + \ Applications. Customer must list in the Admin Console each authorized domain and application\ + \ that uses the Services. Customer is responsible for ensuring that only authorized domains\ + \ and applications use the Services.\n\n1.5 New Features and Services. Google may: (a) make\ + \ new features or functionality available through the Services and (b) add new services\ + \ to the \"Services\" definition (by adding them at the URL stated under that definition).\ + \ Customer’s use of new features or functionality may be contingent on Customer’s agreement\ + \ to additional terms applicable to the new feature or functionality.\n\n1.6 Modifications.\n\ + \n1.6.1 To the Services. Google may make changes to the Services, subject to Section 9 (Deprecation\ + \ Policy), which may include adding, updating, or discontinuing any Services or portion\ + \ or feature(s) of the Services. Google will notify Customer of any material change to the\ + \ Services.\n\n1.6.2. To the Agreement. Google may make changes to this Agreement, including\ + \ pricing (and any linked documents). Unless otherwise noted by Google, material changes\ + \ to the Agreement will become effective 30 days after notice is given, except if the changes\ + \ apply to new functionality in which case they will be effective immediately. Google will\ + \ provide at least 90 days advance notice for materially adverse changes to any SLAs by:\ + \ (a) sending an email to Customer’s primary point of contact; (b) posting a notice in the\ + \ Admin Console; or (c) posting a notice to the applicable SLA webpage. If Customer does\ + \ not agree to the revised Agreement, Customer should stop using the Services. Google will\ + \ post any modification to this Agreement to the Terms URL.\n2. Payment Terms.\n\n2.1 Free\ + \ Quota. Certain Services are provided to Customer without charge up to the Fee Threshold,\ + \ as applicable.\n\n2.2 Online Billing. At the end of the applicable Fee Accrual Period,\ + \ Google will issue an electronic bill to Customer for all charges accrued above the Fee\ + \ Threshold based on (a) Customer’s use of the Services during the previous Fee Accrual\ + \ Period; (b) any Committed Purchases selected; and (c) any Package Purchases selected.\ + \ For use above the Fee Threshold, Customer will be responsible for all Fees up to the amount\ + \ set in the Account and will pay all Fees in the currency set forth in the invoice. If\ + \ Customer elects to pay by credit card, debit card, or other non-invoiced form of payment,\ + \ Google will charge (and Customer will pay) all Fees immediately at the end of the Fee\ + \ Accrual Period. If Customer elects to pay by invoice (and Google agrees), all Fees are\ + \ due as stated in the invoice. Customer’s obligation to pay all Fees is non-cancellable.\ + \ Google's measurement of Customer’s use of the Services is final. Google has no obligation\ + \ to provide multiple bills. Payments made via wire transfer must include the bank information\ + \ provided by Google. If Customer has entered into the Agreement with GCL, Google may collect\ + \ payments via Google Payment Limited, a company incorporated in England and Wales with\ + \ offices at Belgrave House, 76 Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\ + \n2.3 Taxes.\n\n2.3.1 Customer is responsible for any Taxes, and Customer will pay Google\ + \ for the Services without any reduction for Taxes. If Google is obligated to collect or\ + \ pay Taxes, the Taxes will be invoiced to Customer, unless Customer provides Google with\ + \ a timely and valid tax exemption certificate authorized by the appropriate taxing authority.\ + \ In some states the sales tax is due on the total purchase price at the time of sale and\ + \ must be invoiced and collected at the time of the sale. If Customer is required by law\ + \ to withhold any Taxes from its payments to Google, Customer must provide Google with an\ + \ official tax receipt or other appropriate documentation to support such withholding. If\ + \ under the applicable tax legislation the Services are subject to local VAT and the Customer\ + \ is required to make a withholding of local VAT from amounts payable to Google, the value\ + \ of Services calculated in accordance with the above procedure will be increased (grossed\ + \ up) by the Customer for the respective amount of local VAT and the grossed up amount will\ + \ be regarded as a VAT inclusive price. Local VAT amount withheld from the VAT-inclusive\ + \ price will be remitted to the applicable local tax entity by the Customer and Customer\ + \ will ensure that Google will receives payment for its services for the net amount as would\ + \ otherwise be due (the VAT inclusive price less the local VAT withheld and remitted to\ + \ applicable tax authority).\n\n2.3.2 If required under applicable law, Customer will provide\ + \ Google with applicable tax identification information that Google may require to ensure\ + \ its compliance with applicable tax regulations and authorities in applicable jurisdictions.\ + \ Customer will be liable to pay (or reimburse Google for) any taxes, interest, penalties\ + \ or fines arising out of any mis-declaration by the Customer.\n\n2.4 Invoice Disputes &\ + \ Refunds. Any invoice disputes must be submitted before the payment due date. If the parties\ + \ determine that certain billing inaccuracies are attributable to Google, Google will not\ + \ issue a corrected invoice, but will instead issue a credit memo specifying the incorrect\ + \ amount in the affected invoice. If the disputed invoice has not yet been paid, Google\ + \ will apply the credit memo amount to the disputed invoice and Customer will be responsible\ + \ for paying the resulting net balance due on that invoice. To the fullest extent permitted\ + \ by law, Customer waives all claims relating to Fees unless claimed within 60 days after\ + \ charged (this does not affect any Customer rights with its credit card issuer). Refunds\ + \ (if any) are at the discretion of Google and will only be in the form of credit for the\ + \ Services. Nothing in this Agreement obligates Google to extend credit to any party.\n\n\ + 2.5 Delinquent Payments; Suspension. Late payments may bear interest at the rate of 1.5%\ + \ per month (or the highest rate permitted by law, if less) from the payment due date until\ + \ paid in full. Customer will be responsible for all reasonable expenses (including attorneys’\ + \ fees) incurred by Google in collecting such delinquent amounts. If Customer is late on\ + \ payment for the Services, Google may suspend the Services or terminate the Agreement for\ + \ breach under Section 11.2 (Termination for Breach).\n\n2.6 No Purchase Order Number Required.\ + \ Google is not required to provide a purchase order number on Google’s invoice (or otherwise).\n\ + 3. License.\n\n3.1 License Grant. Subject to this Agreement's terms, during the Term, Google\ + \ grants to Customer a non-exclusive, non-transferable, non-sublicensable, license to use\ + \ the Services in Customer Application(s), which may be: (a) fee-based or non-fee-based;\ + \ (b) public/external or private/internal; (c) business-to-business or business-to-consumer;\ + \ or (d) asset tracking.\n\n3.2 License Requirements and Restrictions. The following are\ + \ conditions of the license granted in Section 3.1. In this Section 3.2, the phrase “Customer\ + \ will not” means “Customer will not, and will not permit a third party to”.\n\n3.2.2 General\ + \ Restrictions. Unless Google specifically agrees in writing, Customer will not: (a) copy,\ + \ modify, create a derivative work of, reverse engineer, decompile, translate, disassemble,\ + \ or otherwise attempt to extract any or all of the source code (except to the extent such\ + \ restriction is expressly prohibited by applicable law); (b) sublicense, transfer, or distribute\ + \ any of the Services; (c) sell, resell, or otherwise make the Services available as a commercial\ + \ offering to a third party; or (d) access or use the Services: (i) for High Risk Activities;\ + \ (ii) in a manner intended to avoid incurring Fees; (iii) for activities that are subject\ + \ to the International Traffic in Arms Regulations (ITAR) maintained by the United States\ + \ Department of State; (iv) on behalf of or for the benefit of any entity or person who\ + \ is legally prohibited from using the Services; or (v) to transmit, store, or process Protected\ + \ Health Information (as defined in and subject to HIPAA).\n\n3.2.3 Requirements for Using\ + \ the Services.\n\n(a) Terms of Service and Privacy Policy. The Customer Application’s terms\ + \ of service will (A) notify users that the Customer Application includes Google Maps features\ + \ and content; and (B) state that use of Google Maps features and content is subject to\ + \ the then-current versions of the: (1) Google Maps/Google Earth Additional Terms of Service\ + \ at https://maps.google.com/help/terms_maps.html; and (2) Google Privacy Policy at https://www.google.com/policies/privacy/.\ + \ If the Customer Application allows users to include the Google Maps Core Services in Downstream\ + \ Products, then Customer will contractually require that all Downstream Products’ terms\ + \ of service satisfy the same notice and flow-down requirements that apply to the Customer\ + \ Application under Section 3.2.3(a)(Terms of Service and Privacy Policy). If users of the\ + \ Customer Application (and Downstream Products, if any) fail to comply with applicable\ + \ terms of the Google Maps/Google Earth Additional Terms of Service, then Customer will\ + \ take appropriate enforcement action, including suspending or terminating those users’\ + \ use of Google Maps features and content in the Customer Application or Downstream Products.\n\ + \n(b) Attribution. Customer will display all attribution that (i) Google provides through\ + \ the Services (including branding, logos, and copyright and trademark notices); or (ii)\ + \ is specified in the Maps Service Specific Terms. Customer will not modify, obscure, or\ + \ delete such attribution.\n\n(c) Review of Customer Applications. At Google’s request,\ + \ Customer will submit Customer Application(s) and Project(s) to Google for review to ensure\ + \ compliance with the Agreement (including the AUP).\n\n3.2.4 Restrictions Against Misusing\ + \ the Services.\n\n(a) No Scraping. Customer will not extract, export, or otherwise scrape\ + \ Google Maps Content for use outside the Services. For example, Customer will not: (i)\ + \ pre-fetch, index, store, reshare, or rehost Google Maps Content outside the services;\ + \ (ii) bulk download Google Maps tiles, Street View images, geocodes, directions, distance\ + \ matrix results, roads information, places information, elevation values, and time zone\ + \ details; (iii) copy and save business names, addresses, or user reviews; or (iv) use Google\ + \ Maps Content with text-to-speech services.\n\n(b) No Caching. Customer will not cache\ + \ Google Maps Content except as expressly permitted under the Maps Service Specific Terms.\n\ + \n(c) No Creating Content From Google Maps Content. Customer will not create content based\ + \ on Google Maps Content. For example, Customer will not: (i) trace or digitize roadways,\ + \ building outlines, utility posts, or electrical lines from the Maps JavaScript API Satellite\ + \ base map type; (ii) create 3D building models from 45° Imagery from Maps JavaScript API;\ + \ (iii) build terrain models based on elevation values from the Elevation API; (iv) use\ + \ latitude/longitude values from the Places API as an input for point-in-polygon analysis;\ + \ (v) construct an index of tree locations within a city from Street View imagery; or (vi)\ + \ convert text-based driving times into synthesized speech results.\n\n(d) No Re-Creating\ + \ Google Products or Features. Customer will not use the Services to create a product or\ + \ service with features that are substantially similar to or that re-create the features\ + \ of another Google product or service. Customer’s product or service must contain substantial,\ + \ independent value and features beyond the Google products or services. For example, Customer\ + \ will not: (i) re-distribute the Google Maps Core Services or pass them off as if they\ + \ were Customer’s services; (ii) create a substitute of the Google Maps Core Services, Google\ + \ Maps, or Google Maps mobile apps, or their features; (iii) use the Google Maps Core Services\ + \ in a listings or directory service or to create or augment an advertising product; (iv)\ + \ combine data from the Directions API, Geolocation API, and Maps SDK for Android to create\ + \ real-time navigation functionality substantially similar to the functionality provided\ + \ by the Google Maps for Android mobile app.\n\n(e) No Use With Non-Google Maps. Customer\ + \ will not use the Google Maps Core Services in a Customer Application that contains a non-Google\ + \ map. For example, Customer will not (i) display Places listings on a non-Google map, or\ + \ (ii) display Street View imagery and non-Google maps in the same Customer Application.\n\ + \n(f) No Circumventing Fees. Customer will not circumvent the applicable Fees. For example,\ + \ Customer will not create multiple billing accounts or Projects to avoid incurring Fees,\ + \ prevent Google from accurately calculating Customer’s Service usage levels, abuse any\ + \ free Service quotas, or offer access to the Services under a “time-sharing” or “service\ + \ bureau” model.\n\n(g) No Use in Prohibited Territories. Customer will not distribute or\ + \ market in a Prohibited Territory any Customer Application(s) that use the Google Maps\ + \ Core Services.\n\n(h) No Use in Embedded Vehicle Systems. Customer will not use the Google\ + \ Maps Core Services in connection with any Customer Application or device embedded in a\ + \ vehicle. For example, Customer will not create a Customer Application that (i) is embedded\ + \ in an in-dashboard automotive infotainment system; and (ii) allows End Users to request\ + \ driving directions from the Directions API.\n\n(i) No Modifying Search Results Integrity.\ + \ Customer will not modify any of the Service’s search results.\n\n3.2.5 Benchmarking. Customer\ + \ may not publicly disclose directly or through a third party the results of any comparative\ + \ or compatibility testing, benchmarking, or evaluation of the Services (each, a “Test”),\ + \ unless the disclosure includes all information necessary for Google or a third party to\ + \ replicate the Test. If Customer conducts, or directs a third party to conduct, a Test\ + \ of the Services and publicly discloses the results directly or through a third party,\ + \ then Google (or a Google directed third party) may conduct Tests of any publicly available\ + \ cloud products or services provided by Customer and publicly disclose the results of any\ + \ such Test (which disclosure will include all information necessary for Customer or a third\ + \ party to replicate the Test).\n4. Customer Obligations. \n\n4.1 Compliance. Customer will:\ + \ (a) ensure that Customer’s and its End Users’ use of the Services complies with the Agreement;\ + \ and (b) use commercially reasonable efforts to prevent, promptly notify Google of, and\ + \ terminate any unauthorized use of or access to its Account(s) or the Services.\n\n4.2\ + \ Documentation. Google may provide Documentation for Customer’s use of the Services. The\ + \ Documentation may specify restrictions (e.g. attribution or HTML restrictions) on how\ + \ the Services may be used and Customer will comply with any such restrictions specified.\n\ + \n4.3 Copyright Policy. Google provides information to help copyright holders manage their\ + \ intellectual property online, but Google cannot determine whether something is being used\ + \ legally or not without their input. Google responds to notices of alleged copyright infringement\ + \ and terminates accounts of repeat infringers according to applicable copyright laws including\ + \ in particular the process set out in the U.S. Digital Millennium Copyright Act. If Customer\ + \ thinks somebody is violating Customer’s or Customer End Users’ copyrights and wants to\ + \ notify Google, Customer can find information about submitting notices, and Google's policy\ + \ about responding to notices at https://www.google.com/dmca.html.\n\n4.4 Data Use, Protection,\ + \ and Privacy.\n\n4.4.1 Data Use and Retention. To provide the Services through the Customer\ + \ Application(s), Google must receive and collect data from End Users and Customer, including\ + \ search terms, IP addresses, and latitude/longitude coordinates. Customer acknowledges\ + \ and agrees that Google and its Affiliates may use and retain this data to provide and\ + \ improve Google products and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\ + \n4.4.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller\ + \ Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\ + \n4.4.3 End User Requirements.\n\n(a) End User Privacy. Customer’s use of the Services\ + \ in the Customer Application will comply with applicable privacy laws, including laws regarding\ + \ Services that store and access Cookies on End Users’ devices. If Customer has End Users\ + \ in the European Economic Area, Customer will comply with the EU End User Consent Policy\ + \ at https://www.google.com/about/company/user-consent-policy.html.\n\n(b) End User Personal\ + \ Data. Through the normal functioning of the Google Maps Core Services, End Users provide\ + \ personally identifiable information and Personal Data directly to Google, subject to the\ + \ Google Privacy Policy at https://www.google.com/policies/privacy/. However, Customer acknowledges\ + \ and agrees that Customer will not provide these categories of data to Google.\n\n(c) End\ + \ User Location Privacy Requirements. To safeguard End Users’ location privacy, Customer\ + \ will ensure that the Customer Application(s): (i) notify End Users in advance of (1) the\ + \ type(s) of data that Customer intends to collect from the End Users or the End Users’\ + \ devices, and (2) the combination and use of End User's location with any other data provider's\ + \ data; and (ii) will not obtain or cache any End User's location except with the End User's\ + \ express, prior, revocable consent. \n5. Suspension. \n\n5.1 For License Restrictions\ + \ Violations. Google may Suspend the Services without prior notice if Customer breaches\ + \ Section 3.2 (License Requirements and Restrictions).\n\n5.2 For AUP Violations or Emergency\ + \ Security Issues. Google may also Suspend Services as described in Subsections 5.2.1 (AUP\ + \ Violations) and 5.2.2 (Emergency Security Issues). Any Suspension under those Sections\ + \ will be to the minimum extent and for the shortest duration required to: (a) prevent or\ + \ terminate the offending use, (b) prevent or resolve the Emergency Security Issue, or (c)\ + \ comply with applicable law.\n\n5.2.1 AUP Violations. If Google becomes aware that Customer’s\ + \ or any End User’s use of the Services violates the AUP, Google will give Customer notice\ + \ of such violation by requesting that Customer correct the violation. If Customer fails\ + \ to correct such violation within 24 hours, or if Google is otherwise required by applicable\ + \ law to take action, then Google may Suspend all or part of Customer’s use of the Services.\n\ + \n5.2.2 Emergency Security Issues. Google may immediately Suspend Customer’s use of the\ + \ Services if (a) there is an Emergency Security Issue or (b) Google is required to Suspend\ + \ such use immediately to comply with applicable law. At Customer’s request, unless prohibited\ + \ by applicable law, Google will notify Customer of the basis for the Suspension as soon\ + \ as is reasonably possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights\ + \ Infringement. If the Customer Application is alleged to infringe a third party’s Intellectual\ + \ Property Rights, Google may require Customer to suspend distributing or selling the Customer\ + \ Application with 30 days’ written notice until such allegation is fully resolved. In any\ + \ event, this Section 5.3 does not reduce Customer’s obligations under Section 15 (Indemnification).\n\ + 6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as\ + \ expressly stated in this Agreement, this Agreement does not grant either party any rights,\ + \ implied or otherwise, to the other’s content or any of the other’s intellectual property.\ + \ As between the parties, Customer owns all Intellectual Property Rights in the Customer\ + \ Application, and Google owns all Intellectual Property Rights in the Services and Software.\n\ + \n6.2 Customer Feedback. If Customer provides Google Feedback about the Services, then Google\ + \ may use that information without obligation to Customer, and Customer irrevocably assigns\ + \ to Google all right, title, and interest in that Feedback.\n7. Third Party Legal Notices\ + \ and License Terms.\n\nCertain components of the Services (including open source software)\ + \ are subject to third-party copyright and other Intellectual Property Rights, as specified\ + \ in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html;\ + \ and (b) separate, publicly-available third-party license terms, which Google will provide\ + \ to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will\ + \ provide Maps Technical Support Services to Customer in accordance with the Maps Technical\ + \ Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical\ + \ support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n9.1 Google\ + \ will notify Customer at least 12 months before making material discontinuance(s) or backwards\ + \ incompatible change(s) to the Services, unless Google reasonably determines that: (a)\ + \ Google cannot do so by law or by contract (including if there is a change in applicable\ + \ law or contract) or (b) continuing to provide the Services could create a (i) security\ + \ risk or (ii) substantial economic or technical burden.\n\n9.2 Section 9.1 applies to the\ + \ Services listed at https://cloud.google.com/maps-platform/terms/maps-deprecation/. If\ + \ Google deprecates any Services that are not listed at the above URL, Google will use commercially\ + \ reasonable efforts to minimize the adverse impacts of such deprecations.\n10. Confidential\ + \ Information.\n\n10.1 Obligations. Subject to Section 10.2 (Required Disclosure), the recipient\ + \ will use the other party’s Confidential Information only to exercise its rights and fulfill\ + \ its obligations under the Agreement. The recipient will use reasonable care to protect\ + \ against disclosure of the other party’s Confidential Information to parties other than\ + \ the recipient’s employees, Affiliates, agents, or professional advisors (“Delegates”)\ + \ who need to know it and who have a legal obligation to keep it confidential. The recipient\ + \ will ensure that its Delegates are also subject to the same non-disclosure and use obligations.\n\ + \n10.2 Required Disclosure. The recipient may disclose the other party’s Confidential Information\ + \ to the extent required by applicable Legal Process; provided that the recipient uses commercially\ + \ reasonable efforts to: (a) promptly notify the other party of such disclosure before disclosing;\ + \ and (b) comply with the other party’s reasonable requests regarding its efforts to oppose\ + \ the disclosure. Notwithstanding the foregoing, subsections (a) and (b) above will not\ + \ apply if the recipient determines that complying with (a) and (b) could: (i) result in\ + \ a violation of Legal Process; (ii) obstruct a governmental investigation; and/or (iii)\ + \ lead to death or serious physical harm to an individual. As between the parties, Customer\ + \ is responsible for responding to all third party requests concerning its use and Customer\ + \ End Users’ use of the Services.\n11. Term and Termination.\n\n11.1 Agreement Term. The\ + \ “Term” of this Agreement will begin on the Effective Date and continue until the Agreement\ + \ is terminated under this Section.\n\n11.2 Termination for Breach. Either party may terminate\ + \ this Agreement for breach if: (a) the other party is in material breach of the Agreement\ + \ and fails to cure that breach within 30 days after receipt of written notice; or (b) the\ + \ other party ceases its business operations or becomes subject to insolvency proceedings\ + \ and the proceedings are not dismissed within 90 days. In addition, Google may terminate\ + \ any, all, or any portion of the Services or Projects, if Customer meets any of the conditions\ + \ in subsections (a) or (b).\n\n11.3 Termination for Inactivity. Google reserves the right\ + \ to terminate provision of Service(s) to a Project on 30 days advance notice if, for more\ + \ than 180 days, such Project (a) has not made any requests to the Services from any Customer\ + \ Applications; or (b) such Project has not incurred any Fees for such Service(s).\n\n11.4\ + \ Termination for Convenience. Customer may stop using the Services at any time. Subject\ + \ to any financial commitments expressly made by this Agreement, Customer may terminate\ + \ this Agreement for its convenience at any time on prior written notice and upon termination,\ + \ must cease use of the applicable Services. Google may terminate this Agreement for its\ + \ convenience at any time without liability to Customer.\n\n11.5 Effects of Termination.\ + \ \n\n11.5.1 If the Agreement is terminated, then: (a) the rights granted by one party to\ + \ the other will immediately cease; (b) all Fees owed by Customer to Google are immediately\ + \ due upon receipt of the final electronic bill; and (c) Customer will delete the Software\ + \ and any content from the Services by the termination effective date.\n\n11.5.2 The following\ + \ will survive expiration or termination of the Agreement: Section 2 (Payment Terms), Section\ + \ 3.2 (License Requirements and Restrictions), Section 4.4 (Data Use, Protection, and Privacy),\ + \ Section 6 (Intellectual Property; Feedback), Section 10 (Confidential Information), Section\ + \ 11.5 (Effects of Termination), Section 14 (Disclaimer), Section 15 (Indemnification),\ + \ Section 16 (Limitation of Liability), Section 19 (Miscellaneous), and Section 20 (Definitions).\n\ + 12. Publicity.\n\nCustomer may state publicly that it is a customer of the Services, consistent\ + \ with the Trademark Guidelines. If Customer wants to display Google Brand Features in connection\ + \ with its use of the Services, Customer must obtain written permission from Google through\ + \ the process specified in the Trademark Guidelines. Google may include Customer’s name\ + \ or Brand Features in a list of Google customers, online or in promotional materials. Google\ + \ may also verbally reference Customer as a customer of the Services. Neither party needs\ + \ approval if it is repeating a public statement that is substantially similar to a previously-approved\ + \ public statement. Any use of a party’s Brand Features will inure to the benefit of the\ + \ party holding Intellectual Property Rights to those Brand Features. A party may revoke\ + \ the other party’s right to use its Brand Features under this Section with written notice\ + \ to the other party and a reasonable period to stop the use.\n13. Representations and Warranties.\n\ + \nEach party represents and warrants that: (a) it has full power and authority to enter\ + \ into the Agreement; and (b) it will comply with Export Control Laws and Anti-Bribery Laws\ + \ applicable to its provision, receipt, or use, of the Services, as applicable.\n14. Disclaimer.\n\ + \n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO THE FULLEST EXTENT PERMITTED BY\ + \ APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS,\ + \ IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR\ + \ A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED USE OF THE SERVICES\ + \ OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION ACCESSIBLE THROUGH\ + \ THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES EXPRESSLY STATED IN\ + \ THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES ARE PROVIDED FOR\ + \ PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES MAY DIFFER FROM\ + \ ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION. CUSTOMER MUST\ + \ EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT THE CUSTOMER APPLICATION\ + \ IS SAFE FOR END USERS AND OTHER THIRD PARTIES.\n15. Indemnification.\n\n15.1 By Customer.\ + \ Unless prohibited by applicable law, Customer will defend Google and its Affiliates and\ + \ indemnify them against Indemnified Liabilities in any Third-Party Legal Proceeding to\ + \ the extent arising from (a) any Customer Indemnified Materials or (b) Customer’s or an\ + \ End User’s use of the Services in violation of the AUP or in violation of the Agreement.\n\ + \n15.2 By Google. Google will defend Customer and its Affiliates participating under the\ + \ Agreement (“Customer Indemnified Parties”), and indemnify them against Indemnified Liabilities\ + \ in any Third-Party Legal Proceeding to the extent arising from an allegation that Customer\ + \ Indemnified Parties' use of Google Indemnified Materials infringes the third party's Intellectual\ + \ Property Rights.\n\n15.3 Exclusions. This Section 15 will not apply to the extent the\ + \ underlying allegation arises from (a) the indemnified party’s breach of the Agreement\ + \ or (b) a combination of the indemnifying party’s technology or Brand Features with materials\ + \ not provided by the indemnifying party, unless the combination is required by the Agreement.\n\ + \n15.4 Conditions. Sections 15.1 and 15.2 will apply only to the extent:\n\n(a) The indemnified\ + \ party has promptly notified the indemnifying party in writing of any Allegation(s) that\ + \ preceded the Third-Party Legal Proceeding and cooperates reasonably with the indemnifying\ + \ party to resolve the Allegation(s) and Third-Party Legal Proceeding. If breach of this\ + \ Section 15.4(a) prejudices the defense of the Third-Party Legal Proceeding, the indemnifying\ + \ party’s obligations under Section 15.1 or 15.2 (as applicable) will be reduced in proportion\ + \ to the prejudice.\n\n(b) The indemnified party tenders sole control of the indemnified\ + \ portion of the Third-Party Legal Proceeding to the indemnifying party, subject to the\ + \ following: (i) the indemnified party may appoint its own non-controlling counsel, at its\ + \ own expense; and (ii) any settlement requiring the indemnified party to admit liability,\ + \ pay money, or take (or refrain from taking) any action, will require the indemnified party’s\ + \ prior written consent, not to be unreasonably withheld, conditioned, or delayed.\n\n15.5\ + \ Remedies.\n\n(a) If Google reasonably believes the Services might infringe a third party’s\ + \ Intellectual Property Rights, then Google may, at its sole option and expense: (i) procure\ + \ the right for Customer to continue using the Services; (ii) modify the Services to make\ + \ them non-infringing without materially reducing their functionality; or (iii) replace\ + \ the Services with a non-infringing, functionally equivalent alternative.\n\n(b) If Google\ + \ does not believe the remedies in Section 15.5(a) are commercially reasonable, then Google\ + \ may suspend or terminate Customer’s use of the impacted Services.\n\n15.6 Sole Rights\ + \ and Obligations. Without affecting either party’s termination rights, this Section 15\ + \ states the parties’ sole and exclusive remedy under this Agreement for any third party's\ + \ Intellectual Property Rights Allegations and Third-Party Legal Proceedings covered by\ + \ this Section 15 (Indemnification).\n16. Limitation of Liability.\n\n16.1 Limitation on\ + \ Indirect Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PARTIES AND\ + \ GOOGLE’S LICENSORS, WILL NOT BE LIABLE UNDER THIS AGREEMENT FOR LOST REVENUES OR PROFITS\ + \ (WHETHER DIRECT OR INDIRECT), SAVINGS, GOODWILL, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL,\ + \ EXEMPLARY, OR PUNITIVE DAMAGES, EVEN IF THE PARTY OR LICENSOR, AS APPLICABLE, KNEW OR\ + \ SHOULD HAVE KNOWN THAT SUCH DAMAGES WERE POSSIBLE AND EVEN IF DIRECT DAMAGES DO NOT SATISFY\ + \ A REMEDY.\n\n16.2 Limitation on Amount of Liability. TO THE MAXIMUM EXTENT PERMITTED BY\ + \ APPLICABLE LAW, THE PARTIES AND GOOGLE’S LICENSORS, MAY NOT BE HELD LIABLE UNDER THIS\ + \ AGREEMENT FOR MORE THAN THE AMOUNT PAID BY CUSTOMER TO GOOGLE UNDER THIS AGREEMENT DURING\ + \ THE TWELVE MONTHS BEFORE THE EVENT GIVING RISE TO LIABILITY.\n\n16.3 Exceptions to Limitations.\ + \ These limitations of liability do not apply to violations of a party’s Intellectual Property\ + \ Rights by the other party or Customer's payment obligations.\n17. Advertising.\n\nIn its\ + \ sole discretion, Customer may configure the Service to either display or not display advertisements\ + \ served by Google.\n18. U.S. Federal Agency Users.\n\nThe Services were developed solely\ + \ at private expense and are commercial computer software and related documentation within\ + \ the meaning of the applicable Federal Acquisition Regulations and their agency supplements.\n\ + 19. Miscellaneous.\n\n19.1 Notices. All notices must be in writing and addressed to the\ + \ other party’s legal department and primary point of contact. The email address for notices\ + \ being sent to Google’s Legal Department is legal-notices@google.com. Notice will be treated\ + \ as given on receipt as verified by written or automated receipt or by electronic log (as\ + \ applicable).\n\n19.2 Assignment. Neither party may assign any part of this Agreement without\ + \ the written consent of the other, except to an Affiliate where: (a) the assignee has agreed\ + \ in writing to be bound by the terms of this Agreement; (b) the assigning party remains\ + \ liable for obligations under the Agreement if the assignee defaults on them; and (c) the\ + \ assigning party has notified the other party of the assignment. Any other attempt to assign\ + \ is void.\n\n19.3 Change of Control. If a party experiences a change of Control (for example,\ + \ through a stock purchase or sale, merger, or other form of corporate transaction): (a)\ + \ that party will give written notice to the other party within 30 days after the change\ + \ of Control; and (b) the other party may immediately terminate this Agreement any time\ + \ between the change of Control and 30 days after it receives that written notice.\n\n19.4\ + \ Force Majeure. Neither party will be liable for failure or delay in performance to the\ + \ extent caused by circumstances beyond its reasonable control, including acts of God, natural\ + \ disasters, terrorism, riots, or war.\n\n19.5 Subcontracting. Google may subcontract obligations\ + \ under the Agreement but will remain liable to Customer for any subcontracted obligations.\n\ + \n19.6 No Agency. This Agreement does not create any agency, partnership or joint venture\ + \ between the parties.\n\n19.7 No Waiver. Neither party will be treated as having waived\ + \ any rights by not exercising (or delaying the exercise of) any rights under this Agreement.\n\ + \n19.8 Severability. If any term (or part of a term) of this Agreement is invalid, illegal,\ + \ or unenforceable, the rest of the Agreement will remain in effect.\n\n19.9 No Third-Party\ + \ Beneficiaries. This Agreement does not confer any benefits on any third party unless it\ + \ expressly states that it does.\n\n19.10 Equitable Relief. Nothing in this Agreement will\ + \ limit either party’s ability to seek equitable relief.\n\n19.11 Governing Law.\n\n19.11.1\ + \ For U.S. City, County, and State Government Entities. If Customer is a U.S. city, county\ + \ or state government entity, then the Agreement will be silent regarding governing law\ + \ and venue.\n\n19.11.2 For U.S. Federal Government Entities. If Customer is a U.S. federal\ + \ government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO\ + \ THIS AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA,\ + \ EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I)\ + \ THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA’S CONFLICT OF LAWS RULES) WILL\ + \ APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF\ + \ OR RELATING TO THIS AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION\ + \ IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n19.11.3\ + \ For All Other Entities. If Customer is any entity not listed in Section 19.11.1 or 19.11.2\ + \ then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THIS AGREEMENT OR\ + \ THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE’S CONFLICT OF LAWS\ + \ RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA\ + \ COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\ + \n19.12 Amendments. Except as stated in Section 1.5.2 (Modifications; To the Agreement),\ + \ any amendment must be in writing, signed by both parties, and expressly state that it\ + \ is amending this Agreement.\n\n19.13 Entire Agreement. This Agreement sets out all terms\ + \ agreed between the parties and supersedes all other agreements between the parties relating\ + \ to its subject matter. In entering into this Agreement, neither party has relied on, and\ + \ neither party will have any right or remedy based on, any statement, representation or\ + \ warranty (whether made negligently or innocently), except those expressly stated in this\ + \ Agreement. The terms located at any URL referenced in this Agreement and the Documentation\ + \ are incorporated by reference into the Agreement. After the Effective Date, Google may\ + \ provide an updated URL in place of any URL in this Agreement.\n\n19.14 Conflicting Terms.\ + \ If there is a conflict between the documents that make up this Agreement, the documents\ + \ will control in the following order: the Agreement, and the terms at any URL. \n\n19.15\ + \ Conflicting Translations. If this Agreement is translated into any other language, and\ + \ there is a discrepancy between the English text and the translated text, the English text\ + \ will govern.\n20. Reseller Orders.\n\nThis Section applies if Customer orders the Services\ + \ from a Reseller under a Reseller Agreement (including the Reseller Order Form).\n\n20.1\ + \ Orders. If Customer orders Services from Reseller, then: (a) fees for the Services will\ + \ be set between Customer and Reseller, and any payments will be made directly to Reseller\ + \ under the Reseller Agreement; (b) Section 2 of this Agreement (Payment Terms) will not\ + \ apply to the Services; (c) Customer will receive any applicable SLA credits from Reseller,\ + \ if owed to Customer in accordance with the SLA; and (d) Google will have no obligation\ + \ to provide any SLA credits to a Customer who orders Services from the Reseller.\n\n20.2\ + \ Conflicting Terms. If Customer orders Google Maps Core Services from a Reseller and if\ + \ any documents conflict, then the documents will control in the following order: the Agreement,\ + \ the terms at any URL (including the URL Terms), Reseller Order Form. For example, if there\ + \ is a conflict between the Maps Service Specific Terms and the Reseller Order Form, the\ + \ Maps Service Specific Terms will control.\n\n20.3 Reseller as Administrator. At Customer's\ + \ discretion, Reseller may access Customer's Projects, Accounts, or the Services on behalf\ + \ of Customer. As between Google and Customer, Customer is solely responsible for: (a) any\ + \ access by Reseller to Customer’s Account(s), Project(s), or the Services; and (b) defining\ + \ in the Reseller Agreement any rights or obligations as between Reseller and Customer with\ + \ respect to the Accounts, Projects, or Services.\n\n20.4 Reseller Verification of Customer\ + \ Application(s). Before providing the Services, Reseller may also verify that Customer\ + \ owns or controls the Customer Applications. If Reseller determines that Customer does\ + \ not own or control the Customer Applications, then Google will have no obligation to provide\ + \ the Services to Customer.\n21. Definitions.\n\n\"Account\" means Customer’s Google Account.\n\ + \n\"Admin Console\" means the online console(s) and/or tool(s) provided by Google to Customer\ + \ for administering the Services.\n\n\"Affiliate\" means any entity that directly or indirectly\ + \ Controls, is Controlled by, or is under common Control with a party.\n\n\"Allegation\"\ + \ means an unaffiliated third party’s allegation.\n\n“Anti-Bribery Laws” means all applicable\ + \ commercial and public anti-bribery laws, (for example, the U.S. Foreign Corrupt Practices\ + \ Act of 1977 and the UK Bribery Act 2010), which prohibit corrupt offers of anything of\ + \ value, either directly or indirectly, to anyone, including government officials, to obtain\ + \ or keep business or to secure any other improper commercial advantage. “Government officials”\ + \ include any government employee; candidate for public office; and employee of government-owned\ + \ or government-controlled companies, public international organizations, and political\ + \ parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the then-current Acceptable Use\ + \ Policy for the Services at: https://cloud.google.com/maps-platform/terms/aup/.\n\n\"\ + Brand Features\" means the trade names, trademarks, service marks, logos, domain names,\ + \ and other distinctive brand features of each party, respectively, as secured by such party.\n\ + \n\"Confidential Information\" means information that one party (or an Affiliate) discloses\ + \ to the other party under this Agreement, and which is marked as confidential or would\ + \ normally under the circumstances be considered confidential information. It does not include\ + \ information that is independently developed by the recipient, is rightfully given to the\ + \ recipient by a third party without confidentiality obligations, or becomes public through\ + \ no fault of the recipient.\n\n\"Control\" means control of greater than 50% of the voting\ + \ rights or equity interests of a party.\n\n\"Customer Application\" means any web page\ + \ or application (including all source code and features) owned or controlled by Customer,\ + \ or that Customer is authorized to use.\n\n\"Customer End User\" or \"End User\" means\ + \ an individual or entity that Customer permits to use the Services or Customer Application(s).\n\ + \n“Customer Indemnified Materials” means the Customer Application and Customer Brand Features.\n\ + \n\"Documentation\" means the Google documentation (as may be updated) in the form generally\ + \ made available by Google for use with the Services at https://developers.google.com/maps/documentation.\n\ + \n\"Emergency Security Issue\" means either: (a) Customer’s or Customer End Users’ use of\ + \ the Services in violation of the AUP, which could disrupt: (i) the Services; (ii) other\ + \ customers’ or their customer end users’ use of the Services; or (iii) the Google network\ + \ or servers used to provide the Services; or (b) unauthorized third party access to the\ + \ Services.\n\n\"Europe\" or \"European\" means European Economic Area or Switzerland.\n\ + \n“Export Control Laws” means all applicable export and re-export control laws and regulations,\ + \ including any applicable munitions- or defense-related regulations (for example, the International\ + \ Traffic in Arms Regulations maintained by the U.S. Department of State).\n\n\"Fee Accrual\ + \ Period\" means a calendar month or another period specified by Google in the Admin Console.\n\ + \n\"Fee Threshold\" means the threshold (as may be updated), as applicable for certain Services,\ + \ as set out in the Admin Console.\n\n“Feedback” means feedback or suggestions about the\ + \ Services provided by Customer to Google.\n\n\"Fees\" means the product of the amount of\ + \ Services used or ordered by Customer multiplied by the Prices, plus any applicable Taxes.\n\ + \n\"Google Indemnified Materials\" means Google's technology used to provide the Services\ + \ (excluding any open source software) and Google's Brand Features.\n\n\"Google Maps Content\"\ + \ means any content provided through the Services (whether created by Google or its third-party\ + \ licensors), including map and terrain data, imagery, traffic data, and places data (including\ + \ business listings).\n\n\"High Risk Activities\" means activities where the use or failure\ + \ of the Services could lead to death, personal injury, or environmental damage, including\ + \ (a) emergency response services; (b) autonomous and semi-autonomous vehicle or drone control;\ + \ (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation.\n\ + \n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it\ + \ may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means\ + \ any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs\ + \ finally awarded against the indemnified party and its Affiliates by a court of competent\ + \ jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual\ + \ Property Rights\" means current and future worldwide rights under patent, copyright, trade\ + \ secret, trademark, and moral rights laws, and other similar rights.\n\n\"Legal Process\"\ + \ means a data disclosure request made under law, governmental regulation, court order,\ + \ subpoena, warrant, governmental regulatory or agency request, or other valid legal authority,\ + \ legal procedure, or similar process.\n\n\"Maps Service Specific Terms\" means the then-current\ + \ terms specific to one or more Services at https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\ + \n\"Maps Technical Support Services\" means the technical support service provided by Google\ + \ to Customer under the then-current Maps Technical Support Services Guidelines.\n\n\"Maps\ + \ Technical Support Services Guidelines\" means the then-current technical support service\ + \ guidelines at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Personal Data\"\ + \ has the meaning provided in the General Data Protection Regulation (EU) 2016/679 of the\ + \ European Parliament and of the Council of April 27, 2016.\n\n\"Price\" means the then-current\ + \ applicable price(s) stated at https://cloud.google.com/maps-platform/pricing/sheet/.\n\ + \n\"Prohibited Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\ + \n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources\ + \ for a particular Customer Application.\n\n\"Reseller\" means, if applicable, the authorized\ + \ unaffiliated third-party reseller that sells or supplies the Services to Customer.\n\n\ + \"Reseller Agreement\" means, if applicable, a separate, independent agreement between Customer\ + \ and Reseller regarding the Services.\n\n\"Reseller Order Form\" means an order form entered\ + \ into by Reseller and Customer, subject to the Reseller Agreement.\n\n\"Services\" and\ + \ \"Google Maps Core Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/.\ + \ The Services include the Google Maps Content and the Software.\n\n\"SLA\" or \"Service\ + \ Level Agreement\" means each of the then-current service level agreements at: https://cloud.google.com/maps-platform/terms/sla/.\n\ + \n\"Software\" means any downloadable tools, software development kits, or other computer\ + \ software provided by Google for use as part of the Services, including updates.\n\n\"\ + Taxes\" means any duties, customs fees, or taxes (other than Google’s income tax) associated\ + \ with the purchase of the Services, including any related penalties or interest.\n\n\"\ + Term\" has the meaning stated in Section 11.1 of this Agreement.\n\n“Terms URL” means the\ + \ following URL set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party\ + \ Legal Proceeding\" means any formal legal proceeding filed by an unaffiliated third party\ + \ before a court or government tribunal (including any appellate proceeding).\n\n\"Trademark\ + \ Guidelines\" means (a) Google’s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html;\ + \ and (b) the “Use of Trademarks” section of the “Using Google Maps, Google Earth and Street\ + \ View” permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark\ + \ policy.\n\n“URL Terms” means the following, which will control in the following order\ + \ if there is a conflict:\n\n(a) the Maps Service Specific Terms;\n\n(b) the SLA;\n\n(c)\ + \ the AUP;\n\n(d) the Maps Technical Support Services Guidelines;\n\n(e) the Google Maps/Google\ + \ Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and\n\n(f)\ + \ the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html." json: google-maps-tos-2019-11-21.json - yml: google-maps-tos-2019-11-21.yml + yaml: google-maps-tos-2019-11-21.yml html: google-maps-tos-2019-11-21.html - text: google-maps-tos-2019-11-21.LICENSE + license: google-maps-tos-2019-11-21.LICENSE - license_key: google-maps-tos-2020-04-02 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-maps-tos-2020-04-02 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Google Maps Platform Terms of Service\n\nLast modified: April 2, 2020\n\nIf your billing\ + \ address is in Brazil, please review these Terms of Service, which apply to your use of\ + \ Google Maps Platform.\n\nSe a sua conta para faturamento é no Brasil, por gentileza veja\ + \ o Termos de Serviço, que será o Termo aplicável à sua utilização da Google Maps Platform.\n\ + \nIf your billing address is in Indonesia, please review these Terms of Service, which apply\ + \ to your use of Google Maps Platform.\n\nGoogle Maps Platform License Agreement\n\nThis\ + \ Google Maps Platform License Agreement (the \"Agreement\") is made and entered into between\ + \ Google (as defined in Section 21 (Definitions)) and the entity or person agreeing to these\ + \ terms (\"Customer\").\n\nThis Agreement is effective as of the date Customer clicks to\ + \ accept the Agreement, or enters into a Reseller Agreement if purchasing through a Reseller\ + \ (the \"Effective Date\"). If you are accepting on behalf of Customer, you represent and\ + \ warrant that: (a) you have full legal authority to bind Customer to this Agreement; (b)\ + \ you have read and understand this Agreement; and (c) you agree, on behalf of Customer,\ + \ to this Agreement. If you do not have the legal authority to bind Customer, please do\ + \ not click to accept. This Agreement governs Customer's access to and use of the Services.\n\ + 1. Provision of the Services.\n\n1.1 Use of the Services in Customer Applications. Google\ + \ will provide the Services to Customer in accordance with the Agreement, and Customer may\ + \ use the Services in Customer Application(s) in accordance with Section 3 (License).\n\n\ + 1.2 Admin Console; Projects; API Keys. Customer will administer the Services through the\ + \ online Admin Console. To access the Services, Customer must create Project(s) and use\ + \ its API key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer must have\ + \ an Account. Customer is responsible for: (a) the information it provides in connection\ + \ with the Account; (b) maintaining the confidentiality and security of the Account and\ + \ associated passwords; and (c) any use of its Account.\n\n1.4 Customer Domains and Applications.\ + \ Customer must list in the Admin Console each authorized domain and application that uses\ + \ the Services. Customer is responsible for ensuring that only authorized domains and applications\ + \ use the Services.\n\n1.5 New Features and Services. Google may: (a) make new features\ + \ or functionality available through the Services and (b) add new services to the \"Services\"\ + \ definition (by adding them at the URL stated under that definition). Customer’s use of\ + \ new features or functionality may be contingent on Customer’s agreement to additional\ + \ terms applicable to the new feature or functionality.\n\n1.6 Modifications.\n\n1.6.1 To\ + \ the Services. Subject to Section 9 (Deprecation Policy), Google may make changes to the\ + \ Services, which may include adding, updating, or discontinuing any Services or portion\ + \ or feature(s) of the Services. Google will notify Customer of any material change to the\ + \ Services.\n\n1.6.2. To the Agreement. Google may make changes to the Agreement, including\ + \ pricing and any linked documents. Unless otherwise noted by Google, material changes to\ + \ the Agreement will become effective 30 days after notice is given, except (a) materially\ + \ adverse SLA changes will become effective 90 days after notice is given; and (b) changes\ + \ applicable to new Services or functionality, or required by a court order or applicable\ + \ law, will be effective immediately. Google will provide notice for materially adverse\ + \ changes to any SLAs by: (i) sending an email to the Notification Email Address; (ii) posting\ + \ a notice in the Admin Console; or (iii) posting a notice to the applicable SLA webpage.\ + \ If Customer does not agree to the revised Agreement, Customer should stop using the Services.\ + \ Google will post any modification to this Agreement to the Terms URL.\n2. Payment Terms.\n\ + \n2.1 Free Quota. Certain Services are provided to Customer without charge up to the Fee\ + \ Threshold, as applicable.\n\n2.2 Online Billing. At the end of the applicable Fee Accrual\ + \ Period, Google will issue an electronic bill to Customer for all charges accrued above\ + \ the Fee Threshold based on Customer’s use of the Services during the previous Fee Accrual\ + \ Period. For use above the Fee Threshold, Customer will be responsible for all Fees up\ + \ to the amount set in the Account and will pay all Fees in the currency set forth in the\ + \ invoice. If Customer elects to pay by credit card, debit card, or other non-invoiced form\ + \ of payment, Google will charge (and Customer will pay) all Fees immediately at the end\ + \ of the Fee Accrual Period. If Customer elects to pay by invoice (and Google agrees), all\ + \ Fees are due as stated in the invoice. Customer’s obligation to pay all Fees is non-cancellable.\ + \ Google's measurement of Customer’s use of the Services is final. Google has no obligation\ + \ to provide multiple bills. Payments made via wire transfer must include the bank information\ + \ provided by Google. If Customer has entered into the Agreement with GCL, Google may collect\ + \ payments via Google Payment Limited, a company incorporated in England and Wales with\ + \ offices at Belgrave House, 76 Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\ + \n2.3 Taxes.\n\n2.3.1 Customer is responsible for any Taxes, and Customer will pay Google\ + \ for the Services without any reduction for Taxes. If Google is obligated to collect or\ + \ pay Taxes, the Taxes will be invoiced to Customer, unless Customer provides Google with\ + \ a timely and valid tax exemption certificate authorized by the appropriate taxing authority.\ + \ In some states the sales tax is due on the total purchase price at the time of sale and\ + \ must be invoiced and collected at the time of the sale. If Customer is required by law\ + \ to withhold any Taxes from its payments to Google, Customer must provide Google with an\ + \ official tax receipt or other appropriate documentation to support such withholding. If\ + \ under the applicable tax legislation the Services are subject to local VAT and the Customer\ + \ is required to make a withholding of local VAT from amounts payable to Google, the value\ + \ of Services calculated in accordance with the above procedure will be increased (grossed\ + \ up) by Customer for the respective amount of local VAT and the grossed up amount will\ + \ be regarded as a VAT inclusive price. Local VAT amount withheld from the VAT-inclusive\ + \ price will be remitted to the applicable local tax entity by the Customer and Customer\ + \ will ensure that Google will receive payment for its services for the net amount as would\ + \ otherwise be due (the VAT inclusive price less the local VAT withheld and remitted to\ + \ applicable tax authority).\n\n2.3.2 If required under applicable law, Customer will provide\ + \ Google with applicable tax identification information that Google may require to ensure\ + \ its compliance with applicable tax regulations and authorities in applicable jurisdictions.\ + \ Customer will be liable to pay (or reimburse Google for) any taxes, interest, penalties\ + \ or fines arising out of any mis-declaration by the Customer.\n\n2.4 Invoice Disputes &\ + \ Refunds. Any invoice disputes must be submitted before the payment due date. If Google\ + \ determines that Fees were incorrectly invoiced, then Google will issue a credit equal\ + \ to the agreed amount. To the fullest extent permitted by law, Customer waives all claims\ + \ relating to Fees unless claimed within 60 days after charged (this does not affect any\ + \ Customer rights with its credit card issuer). Nothing in the Agreement obligates Google\ + \ to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. If Customer’s payment\ + \ is overdue, then Google may (a) charge interest on overdue amounts at 1.5% per month (or\ + \ the highest rate permitted by law, if less) from the Payment Due Date until paid in full,\ + \ and (b) Suspend the Services or terminate the Agreement. Customer will reimburse Google\ + \ for all reasonable expenses (including attorneys’ fees) incurred by Google in collecting\ + \ overdue payments except where such payments are due to Google’s billing inaccuracies.\n\ + \n2.6 No Purchase Order Number Required. Google is not required to provide a purchase order\ + \ number on Google’s invoice (or otherwise).\n3. License.\n\n3.1 License Grant. Subject\ + \ to the Agreement's terms, during the Term, Google grants to Customer a non-exclusive,\ + \ non-transferable, non-sublicensable, license to use the Services in Customer Application(s).\n\ + \n3.2 License Requirements and Restrictions. The following are conditions of the license\ + \ granted in Section 3.1 (License Grant). In this Section 3.2 (License Requirements and\ + \ Restrictions), the phrase “Customer will not” means “Customer will not, and will not permit\ + \ a third party to”.\n\n3.2.1 General Restrictions. Customer will not: (a) copy, modify,\ + \ create a derivative work of, reverse engineer, decompile, translate, disassemble, or otherwise\ + \ attempt to extract any or all of the source code (except to the extent such restriction\ + \ is expressly prohibited by applicable law); (b) sublicense, transfer, or distribute any\ + \ of the Services; (c) sell, resell, sublicense, transfer, or distribute the Services; or\ + \ (d) access or use the Services: (i) for High Risk Activities; (ii) in a manner intended\ + \ to avoid incurring Fees; (iii) for materials or activities that are subject to the International\ + \ Traffic in Arms Regulations (ITAR) maintained by the United States Department of State;\ + \ (iv) in a manner that breaches, or causes the breach of, Export Control Laws; or (v) to\ + \ transmit, store, or process health information subject to United States HIPAA regulations.\n\ + \n3.2.2 Requirements for Using the Services.\n\n(a) Terms of Service and Privacy Policy.\n\ + \n(i) The Customer Application’s terms of service will (A) notify users that the Customer\ + \ Application includes Google Maps features and content; and (B) state that use of Google\ + \ Maps features and content is subject to the then-current versions of the: (1) Google Maps/Google\ + \ Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html; and\ + \ (2) Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n(ii) If the\ + \ Customer Application allows users to include the Google Maps Core Services in Downstream\ + \ Products, then Customer will contractually require that all Downstream Products’ terms\ + \ of service satisfy the same notice and flow-down requirements that apply to the Customer\ + \ Application under Section 3.2.2 (a) (i) (Terms of Service and Privacy Policy).\n\n(iii)\ + \ If users of the Customer Application (and Downstream Products, if any) fail to comply\ + \ with the applicable terms of the Google Maps/Google Earth Additional Terms of Service,\ + \ then Customer will take appropriate enforcement action, including Suspending or terminating\ + \ those users’ use of Google Maps features and content in the Customer Application or Downstream\ + \ Products.\n\n(b) Attribution. Customer will display all attribution that (i) Google provides\ + \ through the Services (including branding, logos, and copyright and trademark notices);\ + \ or (ii) is specified in the Maps Service Specific Terms. Customer will not modify, obscure,\ + \ or delete such attribution.\n\n(c) Review of Customer Applications. At Google’s request,\ + \ Customer will submit Customer Application(s) and Project(s) to Google for review to ensure\ + \ compliance with the Agreement (including the AUP).\n\n3.2.3 Restrictions Against Misusing\ + \ the Services.\n\n(a) No Scraping. Customer will not export, extract, or otherwise scrape\ + \ Google Maps Content for use outside the Services. For example, Customer will not: (i)\ + \ pre-fetch, index, store, reshare, or rehost Google Maps Content outside the services;\ + \ (ii) bulk download Google Maps tiles, Street View images, geocodes, directions, distance\ + \ matrix results, roads information, places information, elevation values, and time zone\ + \ details; (iii) copy and save business names, addresses, or user reviews; or (iv) use Google\ + \ Maps Content with text-to-speech services.\n\n(b) No Caching. Customer will not cache\ + \ Google Maps Content except as expressly permitted under the Maps Service Specific Terms.\n\ + \n(c) No Creating Content From Google Maps Content. Customer will not create content based\ + \ on Google Maps Content. For example, Customer will not: (i) trace or digitize roadways,\ + \ building outlines, utility posts, or electrical lines from the Maps JavaScript API Satellite\ + \ base map type; (ii) create 3D building models from 45° Imagery from Maps JavaScript API;\ + \ (iii) build terrain models based on elevation values from the Elevation API; (iv) use\ + \ latitude/longitude values from the Places API as an input for point-in-polygon analysis;\ + \ (v) construct an index of tree locations within a city from Street View imagery; or (vi)\ + \ convert text-based driving times into synthesized speech results.\n\n(d) No Re-Creating\ + \ Google Products or Features. Customer will not use the Services to create a product or\ + \ service with features that are substantially similar to or that re-create the features\ + \ of another Google product or service. Customer’s product or service must contain substantial,\ + \ independent value and features beyond the Google products or services. For example, Customer\ + \ will not: (i) re-distribute the Google Maps Core Services or pass them off as if they\ + \ were Customer’s services; (ii) create a substitute of the Google Maps Core Services, Google\ + \ Maps, or Google Maps mobile apps, or their features; (iii) use the Google Maps Core Services\ + \ in a listings or directory service or to create or augment an advertising product; (iv)\ + \ combine data from the Directions API, Geolocation API, and Maps SDK for Android to create\ + \ real-time navigation functionality substantially similar to the functionality provided\ + \ by the Google Maps for Android mobile app.\n\n(e) No Use With Non-Google Maps. To avoid\ + \ quality issues and/or brand confusion, Customer will not use the Google Maps Core Services\ + \ with or near a non-Google Map in a Customer Application. For example, Customer will not\ + \ (i) display or use Places content on a non-Google map, (ii) display Street View imagery\ + \ and non-Google maps on the same screen, or (iii) link a Google Map to non-Google Maps\ + \ content for a non-Google map.\n\n(f) No Circumventing Fees. Customer will not circumvent\ + \ the applicable Fees. For example, Customer will not create multiple billing accounts or\ + \ Projects to avoid incurring Fees, prevent Google from accurately calculating Customer’s\ + \ Service usage levels, abuse any free Service quotas, or offer access to the Services under\ + \ a “time-sharing” or “service bureau” model.\n\n(g) No Use in Prohibited Territories. Customer\ + \ will not distribute or market in a Prohibited Territory any Customer Application(s) that\ + \ use the Google Maps Core Services.\n\n(h) No Use in Embedded Vehicle Systems. Customer\ + \ will not use the Google Maps Core Services in connection with any Customer Application\ + \ or device embedded in a vehicle. For example, Customer will not create a Customer Application\ + \ that (i) is embedded in an in-dashboard automotive infotainment system; and (ii) allows\ + \ End Users to request driving directions from the Directions API.\n\n(i) No Use in Customer\ + \ Application Directed To Children. Customer will not use the Google Maps Core Services\ + \ in a Customer Application that would be deemed to be a “Web site or online service directed\ + \ to children” under the Children’s Online Privacy Protection Act (COPPA).\n\n(j) No Modifying\ + \ Search Results Integrity. Customer will not modify any of the Google Maps Core Service’s\ + \ search results.\n\n3.2.4 Benchmarking. Customer may not publicly disclose directly or\ + \ through a third party the results of any comparative or compatibility testing, benchmarking,\ + \ or evaluation of the Services (each, a “Test”), unless the disclosure includes all information\ + \ necessary for Google or a third party to replicate the Test. If Customer conducts, or\ + \ directs a third party to conduct, a Test of the Services and publicly discloses the results\ + \ directly or through a third party, then Google (or a Google directed third party) may\ + \ conduct Tests of any publicly available cloud products or services provided by Customer\ + \ and publicly disclose the results of any such Test (which disclosure will include all\ + \ information necessary for Customer or a third party to replicate the Test).\n4. Customer\ + \ Obligations. \n\n4.1 Compliance. Customer will: (a) ensure that Customer’s and its End\ + \ Users’ use of the Services complies with the Agreement; (b) prevent and terminate any\ + \ unauthorized use of or access to its Account(s) or the Services; and (c) promptly notify\ + \ Google of any unauthorized use of or access to its Account(s) or the Services of which\ + \ Customer becomes aware.\n\n4.2 Documentation. Google may provide Documentation for Customer’s\ + \ use of the Services. The Documentation may specify restrictions (e.g. attribution or HTML\ + \ restrictions) on how the Services may be used and Customer will comply with any such restrictions\ + \ specified.\n\n4.3 Copyright Policy. Google provides information to help copyright holders\ + \ manage their intellectual property online, but Google cannot determine whether something\ + \ is being used legally without input from the copyright holders. Google will respond to\ + \ notices of alleged copyright infringement and may terminate repeat infringers in appropriate\ + \ circumstances as required to maintain safe harbor for online service providers under the\ + \ U.S. Digital Millennium Copyright Act. If Customer believes a person or entity is infringing\ + \ Customer’s or End Users’ copyrights and would like to notify Google, Customer can find\ + \ information about submitting notices, and Google's policy about responding to notices\ + \ at https://www.google.com/dmca.html.\n\n4.4 Data Use, Protection, and Privacy.\n\n4.4.1\ + \ Data Use and Retention. To provide the Services through the Customer Application(s), Google\ + \ collects and receives data from Customer and End Users (and End Users’ End Users, if any),\ + \ including search terms, IP addresses, and latitude/longitude coordinates. Customer acknowledges\ + \ and agrees that Google and its Affiliates may use and retain this data to provide and\ + \ improve Google products and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\ + \n4.4.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller\ + \ Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\ + \n4.4.3 End User Requirements.\n\n(a) End User Privacy. Customer’s use of the Services\ + \ in the Customer Application will comply with applicable privacy laws, including laws regarding\ + \ Services that store and access Cookies on End Users’ devices. Customer will comply with\ + \ the then-current Consent Policy at https://www.google.com/about/company/user-consent-policy.html,\ + \ if applicable.\n\n(b) End User Personal Data. Through the normal functioning of the Google\ + \ Maps Core Services, End Users provide personally identifiable information and Personal\ + \ Data directly to Google, subject to the then-current Google Privacy Policy at https://www.google.com/policies/privacy/.\ + \ (a) However, Customer will not provide to Google (i) any End User’s personally identifiable\ + \ information; or (ii) any European End User’s Personal Data (where “European” means “European\ + \ Economic Area, Switzerland, or the UK”).\n\n(c) End User Location Privacy Requirements.\ + \ To safeguard End Users’ location privacy, Customer will ensure that the Customer Application(s):\ + \ (i) notify End Users in advance of (1) the type(s) of data that Customer intends to collect\ + \ from the End Users or the End Users’ devices, and (2) the combination and use of End User's\ + \ location with any other data provider's data; and (ii) will not obtain or cache any End\ + \ User's location except with the End User's express, prior, revocable consent. \ + \ \n5. Suspension. \n\n5.1 For License Restrictions Breaches. Google may Suspend the Services\ + \ without prior notice if Customer breaches Section 3.2 (License Requirements and Restrictions).\n\ + \n5.2 For AUP Breaches or Emergency Security Issues. Google may also Suspend Services as\ + \ described in Subsections 5.2.1 (AUP Breaches) and 5.2.2 (Emergency Suspension). Any Suspension\ + \ under those Sections will be to the minimum extent and for the shortest duration required\ + \ to: (a) prevent or terminate the offending use, (b) prevent or resolve the Emergency Security\ + \ Issue, or (c) comply with applicable law.\n\n5.2.1 AUP Breaches. If Google becomes aware\ + \ that Customer’s or any End User’s use of the Services breaches the AUP, Google will give\ + \ Customer notice of such breach by requesting that Customer correct the breach. If Customer\ + \ fails to correct such breach within 24 hours, or if Google is otherwise required by applicable\ + \ law to take action, then Google may Suspend all or part of Customer’s use of the Services.\n\ + \n5.2.2 Emergency Suspension. Google may immediately Suspend Customer’s use of the Services\ + \ if (a) there is an Emergency Security Issue or (b) Google is required to Suspend such\ + \ use to comply with applicable law. At Customer’s request, unless prohibited by applicable\ + \ law, Google will notify Customer of the basis for the Suspension as soon as is reasonably\ + \ possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights Infringement. If\ + \ the Customer Application is alleged to infringe a third party’s Intellectual Property\ + \ Rights, Google may require Customer to suspend all use of the Google Maps Core Services\ + \ in the Customer Application on 30 days’ written notice until such allegation is fully\ + \ resolved. In any event, this Section 5.3 (For Alleged Third-Party Intellectual Property\ + \ Rights Infringement) does not reduce Customer’s obligations under Section 15 (Indemnification).\n\ + 6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as\ + \ expressly stated in the Agreement, the Agreement does not grant either party any rights,\ + \ implied or otherwise, to the other’s content or any of the other’s intellectual property.\ + \ As between the parties, Customer owns all Intellectual Property Rights in the Customer\ + \ Application, and Google owns all Intellectual Property Rights in the Google Maps Core\ + \ Services.\n\n6.2 Customer Feedback. If Customer provides Google Feedback about the Services,\ + \ then Google may use that information without obligation to Customer, and Customer irrevocably\ + \ assigns to Google all right, title, and interest in that Feedback.\n7. Third Party Legal\ + \ Notices and License Terms.\n\nCertain components of the Services (including open source\ + \ software) are subject to third-party copyright and other Intellectual Property Rights,\ + \ as specified in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html;\ + \ and (b) separate, publicly-available third-party license terms, which Google will provide\ + \ to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will\ + \ provide Maps Technical Support Services to Customer in accordance with the Maps Technical\ + \ Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical\ + \ support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n Google\ + \ will notify Customer at least 12 months before making a Significant Deprecation, unless\ + \ Google reasonably determines that: (a) Google cannot do so by law or by contract (including\ + \ if there is a change in applicable law or contract) or (b) continuing to provide the Services\ + \ could create a security risk or substantial economic or technical burden.\n10. Confidentiality.\n\ + \n10.1 Confidentiality Obligations. Subject to Section 10.2 (Required Disclosure), the recipient\ + \ will use the other party’s Confidential Information only to exercise its rights and fulfill\ + \ its obligations under the Agreement. The recipient will use reasonable care to protect\ + \ against disclosure of the other party’s Confidential Information to parties other than\ + \ the recipient’s employees, Affiliates, agents, or professional advisors (“Delegates”)\ + \ who need to know it and are subject to confidentiality obligations at least as protective\ + \ as those in this Section 10.1 (Confidentiality Obligations).\n\n10.2 Required Disclosure.\n\ + \n10.2.1 Subject to Section 10.2.2, the recipient and its Affiliates may disclose the other\ + \ party’s Confidential Information to the extent required by applicable Legal Process, If\ + \ the recipient and its Affiliates (as applicable) use commercially reasonable efforts to:\ + \ (a) promptly notify the other party of such disclosure before disclosing; and (b) comply\ + \ with the other party’s reasonable requests regarding its efforts to oppose the disclosure.\n\ + \n10.2.2 Sections 10.2.1(a) and (b) above will not apply if the recipient determines that\ + \ complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii) obstruct\ + \ a governmental investigation; or (iii) lead to death or serious physical harm to an individual.\n\ + \n10.2.3 As between the parties, Customer is responsible for responding to all third party\ + \ requests concerning its use and Customer End Users’ use of the Services.\n11. Term and\ + \ Termination.\n\n11.1 Agreement Term. The Agreement is effective from the Effective Date\ + \ until it is terminated in accordance with its terms (the “Term”).\n\n11.2 Termination\ + \ for Breach. Either party may terminate the Agreement for breach if: (a) the other party\ + \ is in material breach of the Agreement and fails to cure that breach within 30 days after\ + \ receipt of written notice; (b) the other party ceases its business operations; or (c)\ + \ becomes subject to insolvency proceedings and the proceedings are not dismissed within\ + \ 90 days. Google may terminate Projects or access to Services, if Customer meets any of\ + \ the conditions in subsections (a) or (b).\n\n11.3 Termination for Inactivity. Google may\ + \ terminate Projects with 30 days' prior written notice if such Project (a) has not made\ + \ any requests to the Services from any Customer Applications for more than 180 days; or\ + \ (b) has not incurred any Fees for more than 180 days.\n\n11.4 Termination for Convenience.\ + \ Customer may stop using the Services at any time. Subject to any financial commitments\ + \ expressly made by this Agreement, Customer may terminate the Agreement for its convenience\ + \ at any time with 30 days' prior written notice. Google may terminate the Agreement for\ + \ its convenience at any time without liability to Customer.\n\n11.5 Effects of Termination.\ + \ \n\n11.5.1 If the Agreement terminates, then: (a) the rights and access to the Services\ + \ will terminate; (b) all Fees owed by Customer to Google are immediately due upon receipt\ + \ of the final electronic bill; and (c) Customer will delete the Software and any content\ + \ from the Services by the termination effective date.\n\n11.5.2 The following will survive\ + \ expiration or termination of the Agreement: Section 2 (Payment Terms), Section 3.2 (License\ + \ Requirements and Restrictions), Section 4.4 (Data Use, Protection, and Privacy), Section\ + \ 6 (Intellectual Property; Feedback), Section 10 (Confidential Information), Section 11.5\ + \ (Effects of Termination), Section 14 (Disclaimer), Section 15 (Indemnification), Section\ + \ 16 (Limitation of Liability), Section 19 (Miscellaneous), and Section 21 (Definitions).\n\ + 12. Publicity.\n\nCustomer may state publicly that it is a customer of the Services, consistent\ + \ with the Trademark Guidelines. If Customer wants to display Google Brand Features in connection\ + \ with its use of the Services, Customer must obtain written permission from Google through\ + \ the process specified in the Trademark Guidelines. Google may include Customer’s name\ + \ or Brand Features in a list of Google customers, online or in promotional materials. Google\ + \ may also verbally reference Customer as a customer of the Services. Neither party needs\ + \ approval if it is repeating a public statement that is substantially similar to a previously-approved\ + \ public statement. Any use of a party’s Brand Features will inure to the benefit of the\ + \ party holding Intellectual Property Rights to those Brand Features. A party may revoke\ + \ the other party’s right to use its Brand Features under this Section with written notice\ + \ to the other party and a reasonable period to stop the use.\n13. Representations and Warranties.\n\ + \nEach party represents and warrants that: (a) it has full power and authority to enter\ + \ into the Agreement; and (b) it will comply with Export Control Laws and Anti-Bribery Laws\ + \ applicable to its provision, receipt, or use, of the Services, as applicable.\n14. Disclaimer.\n\ + \n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO THE FULLEST EXTENT PERMITTED BY\ + \ APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS,\ + \ IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR\ + \ A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED USE OF THE SERVICES\ + \ OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION ACCESSIBLE THROUGH\ + \ THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES EXPRESSLY STATED IN\ + \ THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES ARE PROVIDED FOR\ + \ PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES MAY DIFFER FROM\ + \ ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION. CUSTOMER MUST\ + \ EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT (i) GOOGLE MAPS ARE\ + \ SUITABLE FOR THE CUSTOMER APPLICATION; AND (ii) THE CUSTOMER APPLICATION IS SAFE FOR END\ + \ USERS AND OTHER THIRD PARTIES.\n15. Indemnification.\n\n15.1 Customer Indemnification\ + \ Obligations. Unless prohibited by applicable law, Customer will defend Google and its\ + \ Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal\ + \ Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer’s\ + \ or an End User’s use of the Services in violation of the AUP or in violation of the Agreement.\n\ + \n15.2 Google Indemnification Obligations. Google will defend Customer and its Affiliates\ + \ participating under the Agreement (“Customer Indemnified Parties”), and indemnify them\ + \ against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising\ + \ from an Allegation that Customer Indemnified Parties' use of Google Indemnified Materials\ + \ infringes the third party's Intellectual Property Rights.\n\n15.3 Indemnification Exclusions.\ + \ Sections 15.1 (Customer Indemnification Obligations) and 15.2 (Google Indemnification\ + \ Obligations) will not apply to the extent the underlying Allegation arises from (a) the\ + \ indemnified party’s breach of the Agreement or (b) a combination of the Customer Indemnified\ + \ Materials or Google Indemnified Materials (as applicable)s with materials not provided\ + \ by the indemnifying party, unless the combination is required by the Agreement.\n\n15.4\ + \ Indemnification Conditions. Sections 15.1 (Customer Indemnification Obligations) and 15.2\ + \ (Google Indemnification Obligations) are conditioned on the following:\n\n(a) The indemnified\ + \ party must promptly notify the indemnifying party in writing of any Allegation(s) that\ + \ preceded the Third-Party Legal Proceeding and cooperate reasonably with the indemnifying\ + \ party to resolve the Allegation(s) and Third-Party Legal Proceeding. If breach of this\ + \ Section 15.4(a) prejudices the defense of the Third-Party Legal Proceeding, the indemnifying\ + \ party’s obligations under Section 15.1 (Customer Indemnification Obligations) or 15.2\ + \ (Google Indemnification Obligations) (as applicable) will be reduced in proportion to\ + \ the prejudice.\n\n(b) The indemnified party must tender sole control of the indemnified\ + \ portion of the Third-Party Legal Proceeding to the indemnifying party, subject to the\ + \ following: (i) the indemnified party may appoint its own non-controlling counsel, at its\ + \ own expense; and (ii) any settlement requiring the indemnified party to admit liability,\ + \ pay money, or take (or refrain from taking) any action, will require the indemnified party’s\ + \ prior written consent, not to be unreasonably withheld, conditioned, or delayed.\n\n15.5\ + \ Remedies.\n\n(a) If Google reasonably believes the Services might infringe a third party’s\ + \ Intellectual Property Rights, then Google may, at its sole option and expense: (i) procure\ + \ the right for Customer to continue using the Services; (ii) modify the Services to make\ + \ them non-infringing without materially reducing their functionality; or (iii) replace\ + \ the Services with a non-infringing, functionally equivalent alternative.\n\n(b) If Google\ + \ does not believe the remedies in Section 15.5(a) are commercially reasonable, then Google\ + \ may Suspend or terminate Customer’s use of the impacted Services.\n\n15.6 Sole Rights\ + \ and Obligations. Without affecting either party’s termination rights, this Section 15\ + \ states the parties’ sole and exclusive remedy under the Agreement for any Allegations\ + \ of Intellectual Property Rights infringement covered by this Section 15 (Indemnification).\n\ + 16. Liability.\n\n16.1 Limited Liabilities\n\n(a) To the extent permitted by applicable\ + \ law and subject to Section 16.2 (Unlimited Liabilities), neither party and Google’s licensors\ + \ will have any Liability arising out of or relating to the Agreement for any (i) indirect,\ + \ consequential, special, incidental, or punitive damages or (ii) lost revenues, profits,\ + \ savings, or goodwill.\n\n(b) Each party’s total aggregate Liability for damages arising\ + \ out of or relating to the Agreement is limited to the Fees Customer paid under the Agreement\ + \ during the 12 month period before the event giving rise to Liability.\n\n16.2 Unlimited\ + \ Liabilities. Nothing in the Agreement excludes or limits either party’s Liability for:\n\ + \n(a) its infringement of the other party’s Intellectual Property Rights\n\n(b) its payment\ + \ obligations under the Agreement; or\n\n(c) matters for which liability cannot be excluded\ + \ or limited under applicable law.\n17. Advertising.\n\nIn its sole discretion, Customer\ + \ may configure the Service to either display or not display advertisements served by Google.\n\ + 18. U.S. Federal Agency Users.\n\nThe Services were developed solely at private expense\ + \ and are commercial computer software and related documentation within the meaning of the\ + \ applicable Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\ + \n19.1 Notices. All notices must be in writing and addressed: (a) in the case of Google,\ + \ to Google’s Legal Department at legal-notices@google.com; and (b) in the case of Customer,\ + \ to the Notification Email Address. Notice will be treated as given on receipt as verified\ + \ by written or automated receipt or by electronic log (as applicable).\n\n19.2 Assignment.\ + \ Customer may not assign the Agreement without the written consent of Google, except to\ + \ an Affiliate where: (a) the assignee has agreed in writing to be bound by the terms of\ + \ the Agreement; (b) the assigning party remains liable for obligations under the Agreement\ + \ if the assignee defaults on them; and (c) the assigning party has notified the other party\ + \ of the assignment. Any other attempt by Customer to assign is void. Google may assign\ + \ the Agreement without the written consent of Customer by notifying Customer of the assignment.\n\ + \n19.3 Change of Control. If a party experiences a change of Control other than an internal\ + \ restructuring or reorganization, then: (a) that party will give written notice to the\ + \ other party within 30 days after the change of Control; and (b) the other party may immediately\ + \ terminate the Agreement any time between the change of Control and 30 days after it receives\ + \ that written notice.\n\n19.4 Force Majeure. Neither party will be liable for failure or\ + \ delay in performance to the extent caused by circumstances beyond its reasonable control,\ + \ including acts of God, natural disasters, terrorism, riots, or war.\n\n19.5 Subcontracting.\ + \ Google may subcontract obligations under the Agreement but will remain liable to Customer\ + \ for any subcontracted obligations.\n\n19.6 No Agency. The Agreement does not create any\ + \ agency, partnership or joint venture between the parties.\n\n19.7 No Waiver. Neither party\ + \ will be treated as having waived any rights by not exercising (or delaying the exercise\ + \ of) any rights under the Agreement.\n\n19.8 Severability. If any part of the Agreement\ + \ is invalid, illegal, or unenforceable, the rest of the Agreement will remain in effect.\n\ + \n19.9 No Third-Party Beneficiaries. The Agreement does not confer any benefits on any third\ + \ party unless it expressly states that it does.\n\n19.10 Equitable Relief. Nothing in the\ + \ Agreement will limit either party’s ability to seek equitable relief.\n\n19.11 Governing\ + \ Law.\n\n(a) For U.S. City, County, and State Government Entities. If Customer is a U.S.\ + \ city, county or state government entity, then the Agreement will be silent regarding governing\ + \ law and venue.\n\n(b) For U.S. Federal Government Entities. If Customer is a U.S. federal\ + \ government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO\ + \ THE AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA,\ + \ EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I)\ + \ THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA’S CONFLICT OF LAWS RULES) WILL\ + \ APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF\ + \ OR RELATING TO THE AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION\ + \ IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n(c) \ + \ For All Other Entities. If Customer is any entity not listed in Section 19.11 (A) (For\ + \ U.S. City, County, and State Government Entities) or 19.11(B) (For U.S. Federal Government\ + \ Entities) then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THE AGREEMENT\ + \ OR THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE’S CONFLICT OF\ + \ LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA\ + \ CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\ + \n19.12 Amendments. Except as stated in Section 1.6.2 (Modifications; To the Agreement),\ + \ any amendment to the Agreement must be in writing, expressly state that it is amending\ + \ this Agreement, and be signed by both parties.\n\n19.13 Entire Agreement. The Agreement\ + \ states all terms agreed between the parties and supersedes any prior or contemporaneous\ + \ agreements between the parties relating to its subject matter. In entering into this Agreement,\ + \ neither party has relied on, and neither party will have any right or remedy based on,\ + \ any statement, representation or warranty (whether made negligently or innocently), except\ + \ those expressly stated in the Agreement. The Agreement includes URL links to other terms\ + \ (including the URL Terms), which are incorporated by reference into the Agreement. After\ + \ the Effective Date, Google may provide an updated URL in place of any URL in the Agreement.\n\ + \n19.14 Conflicting Terms. If there is a conflict between the documents that make up the\ + \ Agreement, then the documents will control in the following order: the Agreement and the\ + \ terms at any URL. \n\n19.15 Conflicting Languages. If the Agreement is translated into\ + \ any other language, and there is a discrepancy between the English text and the translated\ + \ text, the English text will govern.\n20. Reseller Orders.\n\nThis Section applies if Customer\ + \ orders the Services from a Reseller under a Reseller Agreement (including the Reseller\ + \ Order Form).\n\n20.1 Orders. If Customer orders Services from Reseller, then: (a) fees\ + \ for the Services will be set between Customer and Reseller, and any payments will be made\ + \ directly to Reseller under the Reseller Agreement; (b) Section 2 of the Agreement (Payment\ + \ Terms) will not apply to the Services; (c) Customer will receive any applicable SLA credits\ + \ from Reseller, if owed to Customer in accordance with the SLA; and (d) Google will have\ + \ no obligation to provide any SLA credits to a Customer who orders Services from the Reseller.\n\ + \n20.2 Conflicting Terms. If Customer orders Google Maps Core Services from a Reseller and\ + \ if any documents conflict, then the documents will control in the following order: the\ + \ Agreement, the terms at any URL (including the URL Terms), and the Reseller Order Form.\ + \ For example, if there is a conflict between the Maps Service Specific Terms and the Reseller\ + \ Order Form, the Maps Service Specific Terms will control.\n\n20.3 Reseller as Administrator.\ + \ At Customer's discretion, Reseller may access Customer's Projects, Accounts, or the Services\ + \ on behalf of Customer. As between Google and Customer, Customer is solely responsible\ + \ for: (a) any access by Reseller to Customer’s Account(s), Project(s), or the Services;\ + \ and (b) defining in the Reseller Agreement any rights or obligations as between Reseller\ + \ and Customer with respect to the Accounts, Projects, or Services.\n\n20.4 Reseller Verification\ + \ of Customer Application(s). Before providing the Services, Reseller may also verify that\ + \ Customer owns or controls the Customer Applications. If Reseller determines that Customer\ + \ does not own or control the Customer Applications, then Google will have no obligation\ + \ to provide the Services to Customer.\n21. Definitions.\n\n\"Account\" means Customer’s\ + \ Google Account.\n\n\"Admin Console\" means the online console(s) and/or tool(s) provided\ + \ by Google to Customer for administering the Services.\n\n\"Affiliate\" means any entity\ + \ that directly or indirectly Controls, is Controlled by, or is under common Control with\ + \ a party.\n\n\"Allegation\" means an unaffiliated third party’s allegation.\n\n“Anti-Bribery\ + \ Laws” means all applicable commercial and public anti-bribery laws, (for example, the\ + \ U.S. Foreign Corrupt Practices Act of 1977 and the UK Bribery Act 2010), which prohibit\ + \ corrupt offers of anything of value, either directly or indirectly, to anyone, including\ + \ government officials, to obtain or keep business or to secure any other improper commercial\ + \ advantage. “Government officials” include any government employee; candidate for public\ + \ office; and employee of government-owned or government-controlled companies, public international\ + \ organizations, and political parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the\ + \ then-current Acceptable Use Policy for the Services described at https://cloud.google.com/maps-platform/terms/aup/.\n\ + \n\"Brand Features\" means each party’s trade names, trademarks, service marks, logos, domain\ + \ names, and other distinctive brand features.\n\n\"Confidential Information\" means information\ + \ that one party (or an Affiliate) discloses to the other party under this Agreement, and\ + \ which is marked as confidential or would normally under the circumstances be considered\ + \ confidential information. It does not include information that is independently developed\ + \ by the recipient, is rightfully given to the recipient by a third party without confidentiality\ + \ obligations, or becomes public through no fault of the recipient.\n\n\"Control\" means\ + \ control of greater than 50% of the voting rights or equity interests of a party.\n\n\"\ + Customer Application\" means any web page or application (including all source code and\ + \ features) owned or controlled by Customer, or that Customer is authorized to use.\n\n\"\ + Customer End User\" or \"End User\" means an individual or entity that Customer permits\ + \ to use the Services or Customer Application(s).\n\n“Customer Indemnified Materials” means\ + \ the Customer Application and Customer Brand Features.\n\n\"Documentation\" means the then-current\ + \ Google documentation described at https://developers.google.com/maps/documentation.\n\n\ + \"Emergency Security Issue\" means either: (a) Customer’s or Customer End Users’ use of\ + \ the Services in breach of the AUP, which such use could disrupt: (i) the Services; (ii)\ + \ other customers’ or their customer end users’ use of the Services; or (iii) the Google\ + \ network or servers used to provide the Services; or (b) unauthorized third party access\ + \ to the Services.\n\n\"Europe\" or \"European\" means European Economic Area, Switzerland,\ + \ or the UK.\n\n“Export Control Laws” means all applicable export and re-export control\ + \ laws and regulations, including any applicable munitions- or defense-related regulations\ + \ (for example, the International Traffic in Arms Regulations maintained by the U.S. Department\ + \ of State).\n\n\"Fee Accrual Period\" means a calendar month or another period specified\ + \ by Google in the Admin Console.\n\n\"Fee Threshold\" means the then-current threshold,\ + \ as applicable for certain Services, as set out in the Admin Console.\n\n“Feedback” means\ + \ feedback or suggestions about the Services provided by Customer to Google.\n\n\"Fees\"\ + \ means the product of the amount of Services used or ordered by Customer multiplied by\ + \ the Prices, plus any applicable Taxes.\n\n\"Google\" means the Google entity corresponding\ + \ to Customer’s billing address below:\n\tCountry or Region of Customer’s billing address:\ + \ \tGoogle entity:\n(1) \tUnited States and all other countries not otherwise listed below\ + \ \tGoogle LLC\n1600 Amphitheatre Parkway, Mountain View, California 94043, USA\n(2) \t\ + Any country in the Asia Pacific region (“APAC”), except the countries listed in rows 6-9.\ + \ \tGoogle Asia Pacific Pte. Ltd.\n70 Pasir Panjang Road, #03-71, Mapletree Business City\ + \ II Singapore 117371\n(3) \tAny country in Europe, the Middle East, or Africa (“EMEA”),\ + \ except as described in row 4: \tGoogle Ireland Limited\nGordon House Barrow Street, Dublin\ + \ 4, Ireland\n(4) \tCustomer is located in the European Union, the UK, or Turkey and has\ + \ chosen “non-business” for its tax status/setting for its Google Account \tGoogle Commerce\ + \ Limited\nGordon House, Barrow Street, Dublin 4, Ireland\n(5) \tCanada \tGoogle Cloud Canada\ + \ Corporation\n111 Richmond Street West, Toronto, ON M5H 2G4, Canada\nFor rows 6-9, “Google”\ + \ means Google Asia Pacific Pte. Ltd and/or its affiliates as the context requires, provided\ + \ further that the Agreement is made and entered into by and between Customer and the Google\ + \ entity corresponding to Customer’s billing address below as an authorized reseller of\ + \ the Services.\n(6) \tAustralia \tGoogle Australia Pty Ltd.\nLevel 5, 48 Pirrama Road,\ + \ Pyrmont, NSW 2009 Australia\n(7) \tJapan \tGoogle Cloud Japan G.K.\nRoppongi Hills Mori\ + \ Tower, 10-1, Roppongi 6-chome, Minato-ku Tokyo, Japan\n(8) \tNew Zealand \tGoogle New\ + \ Zealand Limited\nPWC Tower, Level 27, 188 Quay Street, Auckland, New Zealand 1010, an\ + \ authorized reseller and the contracting party in New Zealand of Services provided by Google\ + \ Asia Pacific Pte. Ltd.\n(9) \tSouth Korea \tGoogle Cloud Korea\nGangnam Finance Center\ + \ 20fl., 152 Teheran-ro, Gangnam-gu, Seoul, South Korea;\n\n\"Google Indemnified Materials\"\ + \ means Google's technology used to provide the Services (excluding any open source software)\ + \ and Google's Brand Features.\n\n\"Google Maps Content\" means any content provided through\ + \ the Services (whether created by Google or its third-party licensors), including map and\ + \ terrain data, imagery, traffic data, and places data (including business listings).\n\n\ + \"High Risk Activities\" means activities where the use or failure of the Services could\ + \ lead to death, personal injury, or environmental damage, including (a) emergency response\ + \ services; (b) autonomous and semi-autonomous vehicle or drone control; (c) vessel navigation;\ + \ (d) aviation; (e) air traffic control; (f) nuclear facilities operation.\n\n\"HIPAA\"\ + \ means the Health Insurance Portability and Accountability Act of 1996 as it may be amended,\ + \ and any regulations issued under it.\n\n\"Indemnified Liabilities\" means any (a) settlement\ + \ amounts approved by the indemnifying party; and (b) damages and costs finally awarded\ + \ against the indemnified party and its Affiliates by a court of competent jurisdiction.\n\ + \n\"including\" means \"including but not limited to\".\n\n\"Intellectual Property Rights\"\ + \ means all patent rights, copyrights, trademark rights, rights in trade secrets (if any),\ + \ design rights, database rights, domain name rights, moral rights, and any other intellectual\ + \ property rights (registered or unregistered) throughout the world.\n\n\"Legal Process\"\ + \ means an information disclosure request made under law, governmental regulation, court\ + \ order, subpoena, warrant, governmental regulatory or agency request, or other valid legal\ + \ authority, legal procedure, or similar process.\n\n\"Liability\" means any liability,\ + \ whether under contract, tort (including negligence), or otherwise, regardless of whether\ + \ foreseeable or contemplated by the parties.\n\n\"Maps Service Specific Terms\" means the\ + \ then-current terms specific to one or more Services described at https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\ + \n\"Maps Technical Support Services\" means the technical support service provided by Google\ + \ to Customer under the then-current Maps Technical Support Services Guidelines.\n\n\"Maps\ + \ Technical Support Services Guidelines\" means the then-current technical support service\ + \ guidelines described at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Personal\ + \ Data\" has the meaning given to it in: (a) Regulation (EU) 2016/679 of the European Parliament\ + \ and of the Council of 27 April 2016 on the protection of natural persons with regard to\ + \ the processing of personal data and on the free movement of such data, and repealing Directive\ + \ 95/46/EC (“EU GDPR”); or (b) the EU GDPR as amended and incorporated into UK law under\ + \ the UK European Union (Withdrawal) Act 2018 (“UK GDPR”), if in force, as applicable.\n\ + \n\"Notification Email Address\" means the email address(es) designated by Customer in the\ + \ Admin Console.\n\n\"Price\" means the then-current applicable price(s) stated at https://cloud.google.com/maps-platform/pricing/sheet/.\n\ + \n\"Prohibited Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\ + \n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources\ + \ for a particular Customer Application.\n\n\"Reseller\" means, if applicable, the authorized\ + \ unaffiliated third-party reseller that sells or supplies the Services to Customer.\n\n\ + \"Reseller Agreement\" means, if applicable, a separate, independent agreement between Customer\ + \ and Reseller regarding the Services.\n\n\"Reseller Order Form\" means an order form entered\ + \ into by Reseller and Customer, subject to the Reseller Agreement.\n\n\"Services\" and\ + \ \"Google Maps Core Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/.\ + \ The Services include the Google Maps Content and the Software.\n\n\"Significant Deprecation\"\ + \ means a material discontinuance or backwards incompatible change to the Google Maps Core\ + \ Services described at https://cloud.google.com/maps-platform/terms/maps-deprecation/.\n\ + \n\"SLA\" or \"Service Level Agreement\" means each of the then-current service level agreements\ + \ at: https://cloud.google.com/maps-platform/terms/sla/.\n\n\"Software\" means any downloadable\ + \ tools, software development kits, or other computer software provided by Google for use\ + \ as part of the Services, including updates.\n\n\"Suspend\" or \"Suspension \" means disabling\ + \ access to or use of the Services or components of the Services.\n\n\"Taxes\" means any\ + \ duties, customs fees, or government-imposed taxes associated with the purchase of the\ + \ Services, including any related penalties or interest, except for taxes based on Google’s\ + \ net income, net worth, asset value, property value, or employment.\n\n\"Term\" has the\ + \ meaning stated in Section 11.1 of the Agreement.\n\n“Terms URL” means the following URL\ + \ set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party Legal\ + \ Proceeding\" means any formal legal proceeding filed by an unaffiliated third party before\ + \ a court or government tribunal (including any appellate proceeding).\n\n\"Trademark Guidelines\"\ + \ means (a) Google’s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html\ + \ and (b) the “Use of Trademarks” section of the “Using Google Maps, Google Earth and Street\ + \ View” permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark\ + \ policy.\n\n“URL Terms” means the following, which will control in the following order\ + \ if there is a conflict:\n\n(a) the Maps Service Specific Terms;\n\n(b) the SLA;\n\n(c)\ + \ the AUP;\n\n(d) the Maps Technical Support Services Guidelines;\n\n(e) the Legal Notices\ + \ for Google Maps/Google Earth and Google Maps/Google Earth APIs at https://www.google.com/help/legalnotices_maps.html;\ + \ and\n\n(f) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html.\n\ + 22. Regional Terms.\n\nCustomer agrees to the following modifications to the Agreement if\ + \ Customer orders Services from the applicable Google entity as described below:\nAsia Pacific\ + \ PT Google Cloud Indonesia \t\n\n1. The following is added as Section 11.6 (Termination\ + \ Waiver):\n\n11.6 Termination Waiver. The parties agree to waive any provisions under any\ + \ applicable laws to the extent that a court decision or order is required for the termination\ + \ of this Agreement.\n\n2. Section 19.11 (Governing Law) is deleted and replaced with the\ + \ following:\n\n19.11 Governing Law.\n\n(a) The parties will try in good faith to settle\ + \ any dispute within 30 days after the dispute arises. If the dispute is not resolved within\ + \ 30 days, it must be resolved by arbitration by the American Arbitration Association’s\ + \ International Centre for Dispute Resolution in accordance with its Expedited Commercial\ + \ Rules in force as of the date of the Agreement (\"Rules\").\n\n(b) The parties will mutually\ + \ select one arbitrator. The arbitration will be conducted in English in Santa Clara County,\ + \ California, USA.\n\n(c) Either party may apply to any competent court for injunctive relief\ + \ necessary to protect its rights pending resolution of the arbitration. The arbitrator\ + \ may order equitable or injunctive relief consistent with the remedies and limitations\ + \ in the Agreement.\n\n(d) Subject to the confidentiality requirements in Section 19.11(f),\ + \ either party may petition any competent court to issue any order necessary to protect\ + \ that party’s rights or property; this petition will not be considered a violation or waiver\ + \ of this governing law and arbitration section and will not affect the arbitrator’s powers,\ + \ including the power to review the judicial decision. The parties stipulate that the courts\ + \ of Santa Clara County, California, USA, are competent to grant any order under this Section\ + \ 19.11(d).\n\n(e) The arbitral award will be final and binding on the parties and its execution\ + \ may be presented in any competent court, including any court with jurisdiction over either\ + \ party or any of its property.\n\n(f) Any arbitration proceeding conducted in accordance\ + \ with this Section will be considered Confidential Information under the Agreement’s confidentiality\ + \ section, including (i) the existence of, (ii) any information disclosed during, and (iii)\ + \ any oral communications or documents related to the arbitration proceedings. The parties\ + \ may also disclose the information described in this Section 19.11(f) to a competent court\ + \ as may be necessary to file any order under Section 19.11(d) or execute any arbitral decision,\ + \ but the parties must request that those judicial proceedings be conducted in camera (in\ + \ private).\n\n(g) The parties will pay the arbitrator’s fees, the arbitrator’s appointed\ + \ experts’ fees and expenses, and the arbitration center’s administrative expenses in accordance\ + \ with the Rules. In its final decision, the arbitrator will determine the non-prevailing\ + \ party’s obligation to reimburse the amount paid in advance by the prevailing party for\ + \ these fees.\n\n(h) Each party will bear its own lawyers’ and experts’ fees and expenses,\ + \ regardless of the arbitrator’s final decision regarding the Dispute.\n\n(i) The parties\ + \ agree that a decision of the arbitrators need not to be made within any specific time\ + \ period.\n\n3. Section 19.15 (Conflicting Languages) is deleted and replaced with the following:\n\ + \n19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English\ + \ language, and both versions are equally authentic. In the event of any inconsistency or\ + \ different interpretation between the Indonesian version and the English version, the parties\ + \ agree to amend the Indonesian version to make the relevant part of the Indonesian version\ + \ consistent with the relevant part of the English version." json: google-maps-tos-2020-04-02.json - yml: google-maps-tos-2020-04-02.yml + yaml: google-maps-tos-2020-04-02.yml html: google-maps-tos-2020-04-02.html - text: google-maps-tos-2020-04-02.LICENSE + license: google-maps-tos-2020-04-02.LICENSE - license_key: google-maps-tos-2020-04-27 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-maps-tos-2020-04-27 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Google Maps Platform Terms of Service\n\nLast modified: April 27, 2020\n\nIf your billing\ + \ address is in Brazil, please review these Terms of Service, which apply to your use of\ + \ Google Maps Platform.\n\nSe a sua conta para faturamento é no Brasil, por gentileza veja\ + \ o Termos de Serviço, que será o Termo aplicável à sua utilização da Google Maps Platform.\n\ + \nIf your billing address is in Indonesia, please review these Terms of Service, which apply\ + \ to your use of Google Maps Platform.\n\nGoogle Maps Platform License Agreement\n\nThis\ + \ Google Maps Platform License Agreement (the \"Agreement\") is made and entered into between\ + \ Google (as defined in Section 21 (Definitions)) and the entity or person agreeing to these\ + \ terms (\"Customer\").\n\nThis Agreement is effective as of the date Customer clicks to\ + \ accept the Agreement, or enters into a Reseller Agreement if purchasing through a Reseller\ + \ (the \"Effective Date\"). If you are accepting on behalf of Customer, you represent and\ + \ warrant that: (a) you have full legal authority to bind Customer to this Agreement; (b)\ + \ you have read and understand this Agreement; and (c) you agree, on behalf of Customer,\ + \ to this Agreement. If you do not have the legal authority to bind Customer, please do\ + \ not click to accept. This Agreement governs Customer's access to and use of the Services.\n\ + 1. Provision of the Services.\n\n1.1 Use of the Services in Customer Applications. Google\ + \ will provide the Services to Customer in accordance with the Agreement, and Customer may\ + \ use the Services in Customer Application(s) in accordance with Section 3 (License).\n\n\ + 1.2 Admin Console; Projects; API Keys. Customer will administer the Services through the\ + \ online Admin Console. To access the Services, Customer must create Project(s) and use\ + \ its API key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer must have\ + \ an Account. Customer is responsible for: (a) the information it provides in connection\ + \ with the Account; (b) maintaining the confidentiality and security of the Account and\ + \ associated passwords; and (c) any use of its Account.\n\n1.4 Customer Domains and Applications.\ + \ Customer must list in the Admin Console each authorized domain and application that uses\ + \ the Services. Customer is responsible for ensuring that only authorized domains and applications\ + \ use the Services.\n\n1.5 New Features and Services. Google may: (a) make new features\ + \ or functionality available through the Services and (b) add new services to the \"Services\"\ + \ definition (by adding them at the URL stated under that definition). Customer’s use of\ + \ new features or functionality may be contingent on Customer’s agreement to additional\ + \ terms applicable to the new feature or functionality.\n\n1.6 Modifications.\n\n1.6.1 To\ + \ the Services. Subject to Section 9 (Deprecation Policy), Google may make changes to the\ + \ Services, which may include adding, updating, or discontinuing any Services or portion\ + \ or feature(s) of the Services. Google will notify Customer of any material change to the\ + \ Services.\n\n1.6.2. To the Agreement. Google may make changes to the Agreement, including\ + \ pricing and any linked documents. Unless otherwise noted by Google, material changes to\ + \ the Agreement will become effective 30 days after notice is given, except (a) materially\ + \ adverse SLA changes will become effective 90 days after notice is given; and (b) changes\ + \ applicable to new Services or functionality, or required by a court order or applicable\ + \ law, will be effective immediately. Google will provide notice for materially adverse\ + \ changes to any SLAs by: (i) sending an email to the Notification Email Address; (ii) posting\ + \ a notice in the Admin Console; or (iii) posting a notice to the applicable SLA webpage.\ + \ If Customer does not agree to the revised Agreement, Customer should stop using the Services.\ + \ Google will post any modification to this Agreement to the Terms URL.\n2. Payment Terms.\n\ + \n2.1 Free Quota. Certain Services are provided to Customer without charge up to the Fee\ + \ Threshold, as applicable.\n\n2.2 Online Billing. At the end of the applicable Fee Accrual\ + \ Period, Google will issue an electronic bill to Customer for all charges accrued above\ + \ the Fee Threshold based on Customer’s use of the Services during the previous Fee Accrual\ + \ Period. For use above the Fee Threshold, Customer will be responsible for all Fees up\ + \ to the amount set in the Account and will pay all Fees in the currency set forth in the\ + \ invoice. If Customer elects to pay by credit card, debit card, or other non-invoiced form\ + \ of payment, Google will charge (and Customer will pay) all Fees immediately at the end\ + \ of the Fee Accrual Period. If Customer elects to pay by invoice (and Google agrees), all\ + \ Fees are due as stated in the invoice. Customer’s obligation to pay all Fees is non-cancellable.\ + \ Google's measurement of Customer’s use of the Services is final. Google has no obligation\ + \ to provide multiple bills. Payments made via wire transfer must include the bank information\ + \ provided by Google. If Customer has entered into the Agreement with GCL, Google may collect\ + \ payments via Google Payment Limited, a company incorporated in England and Wales with\ + \ offices at Belgrave House, 76 Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\ + \n2.3 Taxes.\n\n2.3.1 Customer is responsible for any Taxes, and Customer will pay Google\ + \ for the Services without any reduction for Taxes. If Google is obligated to collect or\ + \ pay Taxes, the Taxes will be invoiced to Customer, unless Customer provides Google with\ + \ a timely and valid tax exemption certificate authorized by the appropriate taxing authority.\ + \ In some states the sales tax is due on the total purchase price at the time of sale and\ + \ must be invoiced and collected at the time of the sale. If Customer is required by law\ + \ to withhold any Taxes from its payments to Google, Customer must provide Google with an\ + \ official tax receipt or other appropriate documentation to support such withholding. If\ + \ under the applicable tax legislation the Services are subject to local VAT and the Customer\ + \ is required to make a withholding of local VAT from amounts payable to Google, the value\ + \ of Services calculated in accordance with the above procedure will be increased (grossed\ + \ up) by Customer for the respective amount of local VAT and the grossed up amount will\ + \ be regarded as a VAT inclusive price. Local VAT amount withheld from the VAT-inclusive\ + \ price will be remitted to the applicable local tax entity by the Customer and Customer\ + \ will ensure that Google will receive payment for its services for the net amount as would\ + \ otherwise be due (the VAT inclusive price less the local VAT withheld and remitted to\ + \ applicable tax authority).\n\n2.3.2 If required under applicable law, Customer will provide\ + \ Google with applicable tax identification information that Google may require to ensure\ + \ its compliance with applicable tax regulations and authorities in applicable jurisdictions.\ + \ Customer will be liable to pay (or reimburse Google for) any taxes, interest, penalties\ + \ or fines arising out of any mis-declaration by the Customer.\n\n2.4 Invoice Disputes &\ + \ Refunds. Any invoice disputes must be submitted before the payment due date. If Google\ + \ determines that Fees were incorrectly invoiced, then Google will issue a credit equal\ + \ to the agreed amount. To the fullest extent permitted by law, Customer waives all claims\ + \ relating to Fees unless claimed within 60 days after charged (this does not affect any\ + \ Customer rights with its credit card issuer). Nothing in the Agreement obligates Google\ + \ to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. If Customer’s payment\ + \ is overdue, then Google may (a) charge interest on overdue amounts at 1.5% per month (or\ + \ the highest rate permitted by law, if less) from the Payment Due Date until paid in full,\ + \ and (b) Suspend the Services or terminate the Agreement. Customer will reimburse Google\ + \ for all reasonable expenses (including attorneys’ fees) incurred by Google in collecting\ + \ overdue payments except where such payments are due to Google’s billing inaccuracies.\n\ + \n2.6 No Purchase Order Number Required. Google is not required to provide a purchase order\ + \ number on Google’s invoice (or otherwise).\n3. License.\n\n3.1 License Grant. Subject\ + \ to the Agreement's terms, during the Term, Google grants to Customer a non-exclusive,\ + \ non-transferable, non-sublicensable, license to use the Services in Customer Application(s).\n\ + \n3.2 License Requirements and Restrictions. The following are conditions of the license\ + \ granted in Section 3.1 (License Grant). In this Section 3.2 (License Requirements and\ + \ Restrictions), the phrase “Customer will not” means “Customer will not, and will not permit\ + \ a third party to”.\n\n3.2.1 General Restrictions. Customer will not: (a) copy, modify,\ + \ create a derivative work of, reverse engineer, decompile, translate, disassemble, or otherwise\ + \ attempt to extract any or all of the source code (except to the extent such restriction\ + \ is expressly prohibited by applicable law); (b) sublicense, transfer, or distribute any\ + \ of the Services; (c) sell, resell, sublicense, transfer, or distribute the Services; or\ + \ (d) access or use the Services: (i) for High Risk Activities; (ii) in a manner intended\ + \ to avoid incurring Fees; (iii) for materials or activities that are subject to the International\ + \ Traffic in Arms Regulations (ITAR) maintained by the United States Department of State;\ + \ (iv) in a manner that breaches, or causes the breach of, Export Control Laws; or (v) to\ + \ transmit, store, or process health information subject to United States HIPAA regulations.\n\ + \n3.2.2 Requirements for Using the Services.\n\n(a) Terms of Service and Privacy Policy.\n\ + \n(i) The Customer Application’s terms of service will (A) notify users that the Customer\ + \ Application includes Google Maps features and content; and (B) state that use of Google\ + \ Maps features and content is subject to the then-current versions of the: (1) Google Maps/Google\ + \ Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html; and\ + \ (2) Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n(ii) If the\ + \ Customer Application allows users to include the Google Maps Core Services in Downstream\ + \ Products, then Customer will contractually require that all Downstream Products’ terms\ + \ of service satisfy the same notice and flow-down requirements that apply to the Customer\ + \ Application under Section 3.2.2 (a) (i) (Terms of Service and Privacy Policy).\n\n(iii)\ + \ If users of the Customer Application (and Downstream Products, if any) fail to comply\ + \ with the applicable terms of the Google Maps/Google Earth Additional Terms of Service,\ + \ then Customer will take appropriate enforcement action, including Suspending or terminating\ + \ those users’ use of Google Maps features and content in the Customer Application or Downstream\ + \ Products.\n\n(b) Attribution. Customer will display all attribution that (i) Google provides\ + \ through the Services (including branding, logos, and copyright and trademark notices);\ + \ or (ii) is specified in the Maps Service Specific Terms. Customer will not modify, obscure,\ + \ or delete such attribution.\n\n(c) Review of Customer Applications. At Google’s request,\ + \ Customer will submit Customer Application(s) and Project(s) to Google for review to ensure\ + \ compliance with the Agreement (including the AUP).\n\n3.2.3 Restrictions Against Misusing\ + \ the Services.\n\n(a) No Scraping. Customer will not export, extract, or otherwise scrape\ + \ Google Maps Content for use outside the Services. For example, Customer will not: (i)\ + \ pre-fetch, index, store, reshare, or rehost Google Maps Content outside the services;\ + \ (ii) bulk download Google Maps tiles, Street View images, geocodes, directions, distance\ + \ matrix results, roads information, places information, elevation values, and time zone\ + \ details; (iii) copy and save business names, addresses, or user reviews; or (iv) use Google\ + \ Maps Content with text-to-speech services.\n\n(b) No Caching. Customer will not cache\ + \ Google Maps Content except as expressly permitted under the Maps Service Specific Terms.\n\ + \n(c) No Creating Content From Google Maps Content. Customer will not create content based\ + \ on Google Maps Content. For example, Customer will not: (i) trace or digitize roadways,\ + \ building outlines, utility posts, or electrical lines from the Maps JavaScript API Satellite\ + \ base map type; (ii) create 3D building models from 45° Imagery from Maps JavaScript API;\ + \ (iii) build terrain models based on elevation values from the Elevation API; (iv) use\ + \ latitude/longitude values from the Places API as an input for point-in-polygon analysis;\ + \ (v) construct an index of tree locations within a city from Street View imagery; or (vi)\ + \ convert text-based driving times into synthesized speech results.\n\n(d) No Re-Creating\ + \ Google Products or Features. Customer will not use the Services to create a product or\ + \ service with features that are substantially similar to or that re-create the features\ + \ of another Google product or service. Customer’s product or service must contain substantial,\ + \ independent value and features beyond the Google products or services. For example, Customer\ + \ will not: (i) re-distribute the Google Maps Core Services or pass them off as if they\ + \ were Customer’s services; (ii) create a substitute of the Google Maps Core Services, Google\ + \ Maps, or Google Maps mobile apps, or their features; (iii) use the Google Maps Core Services\ + \ in a listings or directory service or to create or augment an advertising product; (iv)\ + \ combine data from the Directions API, Geolocation API, and Maps SDK for Android to create\ + \ real-time navigation functionality substantially similar to the functionality provided\ + \ by the Google Maps for Android mobile app.\n\n(e) No Use With Non-Google Maps. To avoid\ + \ quality issues and/or brand confusion, Customer will not use the Google Maps Core Services\ + \ with or near a non-Google Map in a Customer Application. For example, Customer will not\ + \ (i) display or use Places content on a non-Google map, (ii) display Street View imagery\ + \ and non-Google maps on the same screen, or (iii) link a Google Map to non-Google Maps\ + \ content for a non-Google map.\n\n(f) No Circumventing Fees. Customer will not circumvent\ + \ the applicable Fees. For example, Customer will not create multiple billing accounts or\ + \ Projects to avoid incurring Fees, prevent Google from accurately calculating Customer’s\ + \ Service usage levels, abuse any free Service quotas, or offer access to the Services under\ + \ a “time-sharing” or “service bureau” model.\n\n(g) No Use in Prohibited Territories. Customer\ + \ will not distribute or market in a Prohibited Territory any Customer Application(s) that\ + \ use the Google Maps Core Services.\n\n(h) No Use in Embedded Vehicle Systems. Customer\ + \ will not use the Google Maps Core Services in connection with any Customer Application\ + \ or device embedded in a vehicle. For example, Customer will not create a Customer Application\ + \ that (i) is embedded in an in-dashboard automotive infotainment system; and (ii) allows\ + \ End Users to request driving directions from the Directions API.\n\n(i) No Use in Customer\ + \ Application Directed To Children. Customer will not use the Google Maps Core Services\ + \ in a Customer Application that would be deemed to be a “Web site or online service directed\ + \ to children” under the Children’s Online Privacy Protection Act (COPPA).\n\n(j) No Modifying\ + \ Search Results Integrity. Customer will not modify any of the Google Maps Core Service’s\ + \ search results.\n\n3.2.4 Benchmarking. Customer may not publicly disclose directly or\ + \ through a third party the results of any comparative or compatibility testing, benchmarking,\ + \ or evaluation of the Services (each, a “Test”), unless the disclosure includes all information\ + \ necessary for Google or a third party to replicate the Test. If Customer conducts, or\ + \ directs a third party to conduct, a Test of the Services and publicly discloses the results\ + \ directly or through a third party, then Google (or a Google directed third party) may\ + \ conduct Tests of any publicly available cloud products or services provided by Customer\ + \ and publicly disclose the results of any such Test (which disclosure will include all\ + \ information necessary for Customer or a third party to replicate the Test).\n4. Customer\ + \ Obligations. \n\n4.1 Compliance. Customer will: (a) ensure that Customer’s and its End\ + \ Users’ use of the Services complies with the Agreement; (b) prevent and terminate any\ + \ unauthorized use of or access to its Account(s) or the Services; and (c) promptly notify\ + \ Google of any unauthorized use of or access to its Account(s) or the Services of which\ + \ Customer becomes aware.\n\n4.2 Documentation. Google may provide Documentation for Customer’s\ + \ use of the Services. The Documentation may specify restrictions (e.g. attribution or HTML\ + \ restrictions) on how the Services may be used and Customer will comply with any such restrictions\ + \ specified.\n\n4.3 Copyright Policy. Google provides information to help copyright holders\ + \ manage their intellectual property online, but Google cannot determine whether something\ + \ is being used legally without input from the copyright holders. Google will respond to\ + \ notices of alleged copyright infringement and may terminate repeat infringers in appropriate\ + \ circumstances as required to maintain safe harbor for online service providers under the\ + \ U.S. Digital Millennium Copyright Act. If Customer believes a person or entity is infringing\ + \ Customer’s or End Users’ copyrights and would like to notify Google, Customer can find\ + \ information about submitting notices, and Google's policy about responding to notices\ + \ at https://www.google.com/dmca.html.\n\n4.4 Data Use, Protection, and Privacy.\n\n4.4.1\ + \ Data Use and Retention. To provide the Services through the Customer Application(s), Google\ + \ collects and receives data from Customer and End Users (and End Users’ End Users, if any),\ + \ including search terms, IP addresses, and latitude/longitude coordinates. Customer acknowledges\ + \ and agrees that Google and its Affiliates may use and retain this data to provide and\ + \ improve Google products and services, subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\ + \n4.4.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller\ + \ Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\ + \n4.4.3 End User Requirements.\n\n(a) End User Privacy. Customer’s use of the Services\ + \ in the Customer Application will comply with applicable privacy laws, including laws regarding\ + \ Services that store and access Cookies on End Users’ devices. Customer will comply with\ + \ the then-current Consent Policy at https://www.google.com/about/company/user-consent-policy.html,\ + \ if applicable.\n\n(b) End User Personal Data. Through the normal functioning of the Google\ + \ Maps Core Services, End Users provide personally identifiable information and Personal\ + \ Data directly to Google, subject to the then-current Google Privacy Policy at https://www.google.com/policies/privacy/.\ + \ (a) However, Customer will not provide to Google (i) any End User’s personally identifiable\ + \ information; or (ii) any European End User’s Personal Data (where “European” means “European\ + \ Economic Area, Switzerland, or the UK”).\n\n(c) End User Location Privacy Requirements.\ + \ To safeguard End Users’ location privacy, Customer will ensure that the Customer Application(s):\ + \ (i) notify End Users in advance of (1) the type(s) of data that Customer intends to collect\ + \ from the End Users or the End Users’ devices, and (2) the combination and use of End User's\ + \ location with any other data provider's data; and (ii) will not obtain or cache any End\ + \ User's location except with the End User's express, prior, revocable consent. \ + \ \n5. Suspension. \n\n5.1 For License Restrictions Breaches. Google may Suspend the Services\ + \ without prior notice if Customer breaches Section 3.2 (License Requirements and Restrictions).\n\ + \n5.2 For AUP Breaches or Emergency Security Issues. Google may also Suspend Services as\ + \ described in Subsections 5.2.1 (AUP Breaches) and 5.2.2 (Emergency Suspension). Any Suspension\ + \ under those Sections will be to the minimum extent and for the shortest duration required\ + \ to: (a) prevent or terminate the offending use, (b) prevent or resolve the Emergency Security\ + \ Issue, or (c) comply with applicable law.\n\n5.2.1 AUP Breaches. If Google becomes aware\ + \ that Customer’s or any End User’s use of the Services breaches the AUP, Google will give\ + \ Customer notice of such breach by requesting that Customer correct the breach. If Customer\ + \ fails to correct such breach within 24 hours, or if Google is otherwise required by applicable\ + \ law to take action, then Google may Suspend all or part of Customer’s use of the Services.\n\ + \n5.2.2 Emergency Suspension. Google may immediately Suspend Customer’s use of the Services\ + \ if (a) there is an Emergency Security Issue or (b) Google is required to Suspend such\ + \ use to comply with applicable law. At Customer’s request, unless prohibited by applicable\ + \ law, Google will notify Customer of the basis for the Suspension as soon as is reasonably\ + \ possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights Infringement. If\ + \ the Customer Application is alleged to infringe a third party’s Intellectual Property\ + \ Rights, Google may require Customer to suspend all use of the Google Maps Core Services\ + \ in the Customer Application on 30 days’ written notice until such allegation is fully\ + \ resolved. In any event, this Section 5.3 (For Alleged Third-Party Intellectual Property\ + \ Rights Infringement) does not reduce Customer’s obligations under Section 15 (Indemnification).\n\ + 6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as\ + \ expressly stated in the Agreement, the Agreement does not grant either party any rights,\ + \ implied or otherwise, to the other’s content or any of the other’s intellectual property.\ + \ As between the parties, Customer owns all Intellectual Property Rights in the Customer\ + \ Application, and Google owns all Intellectual Property Rights in the Google Maps Core\ + \ Services.\n\n6.2 Customer Feedback. If Customer provides Google Feedback about the Services,\ + \ then Google may use that information without obligation to Customer, and Customer irrevocably\ + \ assigns to Google all right, title, and interest in that Feedback.\n7. Third Party Legal\ + \ Notices and License Terms.\n\nCertain components of the Services (including open source\ + \ software) are subject to third-party copyright and other Intellectual Property Rights,\ + \ as specified in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html;\ + \ and (b) separate, publicly-available third-party license terms, which Google will provide\ + \ to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will\ + \ provide Maps Technical Support Services to Customer in accordance with the Maps Technical\ + \ Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical\ + \ support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n Google\ + \ will notify Customer at least 12 months before making a Significant Deprecation, unless\ + \ Google reasonably determines that: (a) Google cannot do so by law or by contract (including\ + \ if there is a change in applicable law or contract) or (b) continuing to provide the Services\ + \ could create a security risk or substantial economic or technical burden.\n10. Confidentiality.\n\ + \n10.1 Confidentiality Obligations. Subject to Section 10.2 (Required Disclosure), the recipient\ + \ will use the other party’s Confidential Information only to exercise its rights and fulfill\ + \ its obligations under the Agreement. The recipient will use reasonable care to protect\ + \ against disclosure of the other party’s Confidential Information to parties other than\ + \ the recipient’s employees, Affiliates, agents, or professional advisors (“Delegates”)\ + \ who need to know it and are subject to confidentiality obligations at least as protective\ + \ as those in this Section 10.1 (Confidentiality Obligations).\n\n10.2 Required Disclosure.\n\ + \n10.2.1 Subject to Section 10.2.2, the recipient and its Affiliates may disclose the other\ + \ party’s Confidential Information to the extent required by applicable Legal Process, If\ + \ the recipient and its Affiliates (as applicable) use commercially reasonable efforts to:\ + \ (a) promptly notify the other party of such disclosure before disclosing; and (b) comply\ + \ with the other party’s reasonable requests regarding its efforts to oppose the disclosure.\n\ + \n10.2.2 Sections 10.2.1(a) and (b) above will not apply if the recipient determines that\ + \ complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii) obstruct\ + \ a governmental investigation; or (iii) lead to death or serious physical harm to an individual.\n\ + \n10.2.3 As between the parties, Customer is responsible for responding to all third party\ + \ requests concerning its use and Customer End Users’ use of the Services.\n11. Term and\ + \ Termination.\n\n11.1 Agreement Term. The Agreement is effective from the Effective Date\ + \ until it is terminated in accordance with its terms (the “Term”).\n\n11.2 Termination\ + \ for Breach. Either party may terminate the Agreement for breach if: (a) the other party\ + \ is in material breach of the Agreement and fails to cure that breach within 30 days after\ + \ receipt of written notice; (b) the other party ceases its business operations; or (c)\ + \ becomes subject to insolvency proceedings and the proceedings are not dismissed within\ + \ 90 days. Google may terminate Projects or access to Services, if Customer meets any of\ + \ the conditions in subsections (a) or (b).\n\n11.3 Termination for Inactivity. Google may\ + \ terminate Projects with 30 days' prior written notice if such Project (a) has not made\ + \ any requests to the Services from any Customer Applications for more than 180 days; or\ + \ (b) has not incurred any Fees for more than 180 days.\n\n11.4 Termination for Convenience.\ + \ Customer may stop using the Services at any time. Subject to any financial commitments\ + \ expressly made by this Agreement, Customer may terminate the Agreement for its convenience\ + \ at any time with 30 days' prior written notice. Google may terminate the Agreement for\ + \ its convenience at any time without liability to Customer.\n\n11.5 Effects of Termination.\ + \ \n\n11.5.1 If the Agreement terminates, then: (a) the rights and access to the Services\ + \ will terminate; (b) all Fees owed by Customer to Google are immediately due upon receipt\ + \ of the final electronic bill; and (c) Customer will delete the Software and any content\ + \ from the Services by the termination effective date.\n\n11.5.2 The following will survive\ + \ expiration or termination of the Agreement: Section 2 (Payment Terms), Section 3.2 (License\ + \ Requirements and Restrictions), Section 4.4 (Data Use, Protection, and Privacy), Section\ + \ 6 (Intellectual Property; Feedback), Section 10 (Confidential Information), Section 11.5\ + \ (Effects of Termination), Section 14 (Disclaimer), Section 15 (Indemnification), Section\ + \ 16 (Limitation of Liability), Section 19 (Miscellaneous), and Section 21 (Definitions).\n\ + 12. Publicity.\n\nCustomer may state publicly that it is a customer of the Services, consistent\ + \ with the Trademark Guidelines. If Customer wants to display Google Brand Features in connection\ + \ with its use of the Services, Customer must obtain written permission from Google through\ + \ the process specified in the Trademark Guidelines. Google may include Customer’s name\ + \ or Brand Features in a list of Google customers, online or in promotional materials. Google\ + \ may also verbally reference Customer as a customer of the Services. Neither party needs\ + \ approval if it is repeating a public statement that is substantially similar to a previously-approved\ + \ public statement. Any use of a party’s Brand Features will inure to the benefit of the\ + \ party holding Intellectual Property Rights to those Brand Features. A party may revoke\ + \ the other party’s right to use its Brand Features under this Section with written notice\ + \ to the other party and a reasonable period to stop the use.\n13. Representations and Warranties.\n\ + \nEach party represents and warrants that: (a) it has full power and authority to enter\ + \ into the Agreement; and (b) it will comply with Export Control Laws and Anti-Bribery Laws\ + \ applicable to its provision, receipt, or use, of the Services, as applicable.\n14. Disclaimer.\n\ + \n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO THE FULLEST EXTENT PERMITTED BY\ + \ APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS,\ + \ IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR\ + \ A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED USE OF THE SERVICES\ + \ OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION ACCESSIBLE THROUGH\ + \ THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES EXPRESSLY STATED IN\ + \ THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES ARE PROVIDED FOR\ + \ PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES MAY DIFFER FROM\ + \ ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION. CUSTOMER MUST\ + \ EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT (i) GOOGLE MAPS ARE\ + \ SUITABLE FOR THE CUSTOMER APPLICATION; AND (ii) THE CUSTOMER APPLICATION IS SAFE FOR END\ + \ USERS AND OTHER THIRD PARTIES.\n15. Indemnification.\n\n15.1 Customer Indemnification\ + \ Obligations. Unless prohibited by applicable law, Customer will defend Google and its\ + \ Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal\ + \ Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer’s\ + \ or an End User’s use of the Services in violation of the AUP or in violation of the Agreement.\n\ + \n15.2 Google Indemnification Obligations. Google will defend Customer and its Affiliates\ + \ participating under the Agreement (“Customer Indemnified Parties”), and indemnify them\ + \ against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising\ + \ from an Allegation that Customer Indemnified Parties' use of Google Indemnified Materials\ + \ infringes the third party's Intellectual Property Rights.\n\n15.3 Indemnification Exclusions.\ + \ Sections 15.1 (Customer Indemnification Obligations) and 15.2 (Google Indemnification\ + \ Obligations) will not apply to the extent the underlying Allegation arises from (a) the\ + \ indemnified party’s breach of the Agreement or (b) a combination of the Customer Indemnified\ + \ Materials or Google Indemnified Materials (as applicable)s with materials not provided\ + \ by the indemnifying party, unless the combination is required by the Agreement.\n\n15.4\ + \ Indemnification Conditions. Sections 15.1 (Customer Indemnification Obligations) and 15.2\ + \ (Google Indemnification Obligations) are conditioned on the following:\n\n(a) The indemnified\ + \ party must promptly notify the indemnifying party in writing of any Allegation(s) that\ + \ preceded the Third-Party Legal Proceeding and cooperate reasonably with the indemnifying\ + \ party to resolve the Allegation(s) and Third-Party Legal Proceeding. If breach of this\ + \ Section 15.4(a) prejudices the defense of the Third-Party Legal Proceeding, the indemnifying\ + \ party’s obligations under Section 15.1 (Customer Indemnification Obligations) or 15.2\ + \ (Google Indemnification Obligations) (as applicable) will be reduced in proportion to\ + \ the prejudice.\n\n(b) The indemnified party must tender sole control of the indemnified\ + \ portion of the Third-Party Legal Proceeding to the indemnifying party, subject to the\ + \ following: (i) the indemnified party may appoint its own non-controlling counsel, at its\ + \ own expense; and (ii) any settlement requiring the indemnified party to admit liability,\ + \ pay money, or take (or refrain from taking) any action, will require the indemnified party’s\ + \ prior written consent, not to be unreasonably withheld, conditioned, or delayed.\n\n15.5\ + \ Remedies.\n\n(a) If Google reasonably believes the Services might infringe a third party’s\ + \ Intellectual Property Rights, then Google may, at its sole option and expense: (i) procure\ + \ the right for Customer to continue using the Services; (ii) modify the Services to make\ + \ them non-infringing without materially reducing their functionality; or (iii) replace\ + \ the Services with a non-infringing, functionally equivalent alternative.\n\n(b) If Google\ + \ does not believe the remedies in Section 15.5(a) are commercially reasonable, then Google\ + \ may Suspend or terminate Customer’s use of the impacted Services.\n\n15.6 Sole Rights\ + \ and Obligations. Without affecting either party’s termination rights, this Section 15\ + \ states the parties’ sole and exclusive remedy under the Agreement for any Allegations\ + \ of Intellectual Property Rights infringement covered by this Section 15 (Indemnification).\n\ + 16. Liability.\n\n16.1 Limited Liabilities\n\n(a) To the extent permitted by applicable\ + \ law and subject to Section 16.2 (Unlimited Liabilities), neither party and Google’s licensors\ + \ will have any Liability arising out of or relating to the Agreement for any (i) indirect,\ + \ consequential, special, incidental, or punitive damages or (ii) lost revenues, profits,\ + \ savings, or goodwill.\n\n(b) Each party’s total aggregate Liability for damages arising\ + \ out of or relating to the Agreement is limited to the Fees Customer paid under the Agreement\ + \ during the 12 month period before the event giving rise to Liability.\n\n16.2 Unlimited\ + \ Liabilities. Nothing in the Agreement excludes or limits either party’s Liability for:\n\ + \n(a) its infringement of the other party’s Intellectual Property Rights\n\n(b) its payment\ + \ obligations under the Agreement; or\n\n(c) matters for which liability cannot be excluded\ + \ or limited under applicable law.\n17. Advertising.\n\nIn its sole discretion, Customer\ + \ may configure the Service to either display or not display advertisements served by Google.\n\ + 18. U.S. Federal Agency Users.\n\nThe Services were developed solely at private expense\ + \ and are commercial computer software and related documentation within the meaning of the\ + \ applicable Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\ + \n19.1 Notices. All notices must be in writing and addressed: (a) in the case of Google,\ + \ to Google’s Legal Department at legal-notices@google.com; and (b) in the case of Customer,\ + \ to the Notification Email Address. Notice will be treated as given on receipt as verified\ + \ by written or automated receipt or by electronic log (as applicable).\n\n19.2 Assignment.\ + \ Customer may not assign the Agreement without the written consent of Google, except to\ + \ an Affiliate where: (a) the assignee has agreed in writing to be bound by the terms of\ + \ the Agreement; (b) the assigning party remains liable for obligations under the Agreement\ + \ if the assignee defaults on them; and (c) the assigning party has notified the other party\ + \ of the assignment. Any other attempt by Customer to assign is void. Google may assign\ + \ the Agreement without the written consent of Customer by notifying Customer of the assignment.\n\ + \n19.3 Change of Control. If a party experiences a change of Control other than an internal\ + \ restructuring or reorganization, then: (a) that party will give written notice to the\ + \ other party within 30 days after the change of Control; and (b) the other party may immediately\ + \ terminate the Agreement any time between the change of Control and 30 days after it receives\ + \ that written notice.\n\n19.4 Force Majeure. Neither party will be liable for failure or\ + \ delay in performance to the extent caused by circumstances beyond its reasonable control,\ + \ including acts of God, natural disasters, terrorism, riots, or war.\n\n19.5 Subcontracting.\ + \ Google may subcontract obligations under the Agreement but will remain liable to Customer\ + \ for any subcontracted obligations.\n\n19.6 No Agency. The Agreement does not create any\ + \ agency, partnership or joint venture between the parties.\n\n19.7 No Waiver. Neither party\ + \ will be treated as having waived any rights by not exercising (or delaying the exercise\ + \ of) any rights under the Agreement.\n\n19.8 Severability. If any part of the Agreement\ + \ is invalid, illegal, or unenforceable, the rest of the Agreement will remain in effect.\n\ + \n19.9 No Third-Party Beneficiaries. The Agreement does not confer any benefits on any third\ + \ party unless it expressly states that it does.\n\n19.10 Equitable Relief. Nothing in the\ + \ Agreement will limit either party’s ability to seek equitable relief.\n\n19.11 Governing\ + \ Law.\n\n(a) For U.S. City, County, and State Government Entities. If Customer is a U.S.\ + \ city, county or state government entity, then the Agreement will be silent regarding governing\ + \ law and venue.\n\n(b) For U.S. Federal Government Entities. If Customer is a U.S. federal\ + \ government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO\ + \ THE AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA,\ + \ EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I)\ + \ THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA’S CONFLICT OF LAWS RULES) WILL\ + \ APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF\ + \ OR RELATING TO THE AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION\ + \ IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n(c) \ + \ For All Other Entities. If Customer is any entity not listed in Section 19.11 (A) (For\ + \ U.S. City, County, and State Government Entities) or 19.11(B) (For U.S. Federal Government\ + \ Entities) then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THE AGREEMENT\ + \ OR THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE’S CONFLICT OF\ + \ LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA\ + \ CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\ + \n19.12 Amendments. Except as stated in Section 1.6.2 (Modifications; To the Agreement),\ + \ any amendment to the Agreement must be in writing, expressly state that it is amending\ + \ this Agreement, and be signed by both parties.\n\n19.13 Entire Agreement. The Agreement\ + \ states all terms agreed between the parties and supersedes any prior or contemporaneous\ + \ agreements between the parties relating to its subject matter. In entering into this Agreement,\ + \ neither party has relied on, and neither party will have any right or remedy based on,\ + \ any statement, representation or warranty (whether made negligently or innocently), except\ + \ those expressly stated in the Agreement. The Agreement includes URL links to other terms\ + \ (including the URL Terms), which are incorporated by reference into the Agreement. After\ + \ the Effective Date, Google may provide an updated URL in place of any URL in the Agreement.\n\ + \n19.14 Conflicting Terms. If there is a conflict between the documents that make up the\ + \ Agreement, then the documents will control in the following order: the Agreement and the\ + \ terms at any URL. \n\n19.15 Conflicting Languages. If the Agreement is translated into\ + \ any other language, and there is a discrepancy between the English text and the translated\ + \ text, the English text will govern.\n20. Reseller Orders.\n\nThis Section applies if Customer\ + \ orders the Services from a Reseller under a Reseller Agreement (including the Reseller\ + \ Order Form).\n\n20.1 Orders. If Customer orders Services from Reseller, then: (a) fees\ + \ for the Services will be set between Customer and Reseller, and any payments will be made\ + \ directly to Reseller under the Reseller Agreement; (b) Section 2 of the Agreement (Payment\ + \ Terms) will not apply to the Services; (c) Customer will receive any applicable SLA credits\ + \ from Reseller, if owed to Customer in accordance with the SLA; and (d) Google will have\ + \ no obligation to provide any SLA credits to a Customer who orders Services from the Reseller.\n\ + \n20.2 Conflicting Terms. If Customer orders Google Maps Core Services from a Reseller and\ + \ if any documents conflict, then the documents will control in the following order: the\ + \ Agreement, the terms at any URL (including the URL Terms), and the Reseller Order Form.\ + \ For example, if there is a conflict between the Maps Service Specific Terms and the Reseller\ + \ Order Form, the Maps Service Specific Terms will control.\n\n20.3 Reseller as Administrator.\ + \ At Customer's discretion, Reseller may access Customer's Projects, Accounts, or the Services\ + \ on behalf of Customer. As between Google and Customer, Customer is solely responsible\ + \ for: (a) any access by Reseller to Customer’s Account(s), Project(s), or the Services;\ + \ and (b) defining in the Reseller Agreement any rights or obligations as between Reseller\ + \ and Customer with respect to the Accounts, Projects, or Services.\n\n20.4 Reseller Verification\ + \ of Customer Application(s). Before providing the Services, Reseller may also verify that\ + \ Customer owns or controls the Customer Applications. If Reseller determines that Customer\ + \ does not own or control the Customer Applications, then Google will have no obligation\ + \ to provide the Services to Customer.\n21. Definitions.\n\n\"Account\" means Customer’s\ + \ Google Account.\n\n\"Admin Console\" means the online console(s) and/or tool(s) provided\ + \ by Google to Customer for administering the Services.\n\n\"Affiliate\" means any entity\ + \ that directly or indirectly Controls, is Controlled by, or is under common Control with\ + \ a party.\n\n\"Allegation\" means an unaffiliated third party’s allegation.\n\n“Anti-Bribery\ + \ Laws” means all applicable commercial and public anti-bribery laws, (for example, the\ + \ U.S. Foreign Corrupt Practices Act of 1977 and the UK Bribery Act 2010), which prohibit\ + \ corrupt offers of anything of value, either directly or indirectly, to anyone, including\ + \ government officials, to obtain or keep business or to secure any other improper commercial\ + \ advantage. “Government officials” include any government employee; candidate for public\ + \ office; and employee of government-owned or government-controlled companies, public international\ + \ organizations, and political parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the\ + \ then-current Acceptable Use Policy for the Services described at https://cloud.google.com/maps-platform/terms/aup/.\n\ + \n\"Brand Features\" means each party’s trade names, trademarks, service marks, logos, domain\ + \ names, and other distinctive brand features.\n\n\"Confidential Information\" means information\ + \ that one party (or an Affiliate) discloses to the other party under this Agreement, and\ + \ which is marked as confidential or would normally under the circumstances be considered\ + \ confidential information. It does not include information that is independently developed\ + \ by the recipient, is rightfully given to the recipient by a third party without confidentiality\ + \ obligations, or becomes public through no fault of the recipient.\n\n\"Control\" means\ + \ control of greater than 50% of the voting rights or equity interests of a party.\n\n\"\ + Customer Application\" means any web page or application (including all source code and\ + \ features) owned or controlled by Customer, or that Customer is authorized to use.\n\n\"\ + Customer End User\" or \"End User\" means an individual or entity that Customer permits\ + \ to use the Services or Customer Application(s).\n\n“Customer Indemnified Materials” means\ + \ the Customer Application and Customer Brand Features.\n\n\"Documentation\" means the then-current\ + \ Google documentation described at https://developers.google.com/maps/documentation.\n\n\ + \"Emergency Security Issue\" means either: (a) Customer’s or Customer End Users’ use of\ + \ the Services in breach of the AUP, which such use could disrupt: (i) the Services; (ii)\ + \ other customers’ or their customer end users’ use of the Services; or (iii) the Google\ + \ network or servers used to provide the Services; or (b) unauthorized third party access\ + \ to the Services.\n\n\"Europe\" or \"European\" means European Economic Area, Switzerland,\ + \ or the UK.\n\n“Export Control Laws” means all applicable export and re-export control\ + \ laws and regulations, including any applicable munitions- or defense-related regulations\ + \ (for example, the International Traffic in Arms Regulations maintained by the U.S. Department\ + \ of State).\n\n\"Fee Accrual Period\" means a calendar month or another period specified\ + \ by Google in the Admin Console.\n\n\"Fee Threshold\" means the then-current threshold,\ + \ as applicable for certain Services, as set out in the Admin Console.\n\n“Feedback” means\ + \ feedback or suggestions about the Services provided by Customer to Google.\n\n\"Fees\"\ + \ means the product of the amount of Services used or ordered by Customer multiplied by\ + \ the Prices, plus any applicable Taxes.\n\n\"Google\" means the Google entity corresponding\ + \ to Customer’s billing address below:\n\tCountry or Region of Customer’s billing address:\ + \ \tGoogle entity:\n(1) \tUnited States and all other countries not otherwise listed below\ + \ \tGoogle LLC\n1600 Amphitheatre Parkway, Mountain View, California 94043, USA\n(2) \t\ + Any country in the Asia Pacific region (“APAC”), except the countries listed in rows 6-9.\ + \ \tGoogle Asia Pacific Pte. Ltd.\n70 Pasir Panjang Road, #03-71, Mapletree Business City\ + \ II Singapore 117371\n(3) \tAny country in Europe, the Middle East, or Africa (“EMEA”),\ + \ except as described in row 4: \tGoogle Ireland Limited\nGordon House Barrow Street, Dublin\ + \ 4, Ireland\n(4) \tCustomer is located in the European Union, the UK, or Turkey and has\ + \ chosen “non-business” for its tax status/setting for its Google Account \tGoogle Commerce\ + \ Limited\nGordon House, Barrow Street, Dublin 4, Ireland\n(5) \tCanada \tGoogle Cloud Canada\ + \ Corporation\n111 Richmond Street West, Toronto, ON M5H 2G4, Canada\nFor rows 6-10, \"\ + Google\" means Google Asia Pacific Pte. Ltd and/or its affiliates as the context requires,\ + \ provided further that the Agreement is made and entered into by and between Customer and\ + \ the Google entity corresponding to Customer’s billing address below as an authorized reseller\ + \ of the Services.\n(6) \tAustralia \tGoogle Australia Pty Ltd.\nLevel 5, 48 Pirrama Road,\ + \ Pyrmont, NSW 2009 Australia\n(7) \tIndonesia \tPT Google Cloud Indonesia\nPacific Century\ + \ Place Tower, Level 45, Sudirman Central Business District, Lot 10, Jalan Jendral Sudirman\ + \ Kav 52-53 Jakarta, Indonesia 12190\n(8) \tJapan \tGoogle Cloud Japan G.K.\nRoppongi Hills\ + \ Mori Tower, 10-1, Roppongi 6-chome, Minato-ku Tokyo, Japan\n(9) \tNew Zealand \tGoogle\ + \ New Zealand Limited\nPWC Tower, Level 27, 188 Quay Street, Auckland, New Zealand 1010,\ + \ an authorized reseller and the contracting party in New Zealand of Services provided by\ + \ Google Asia Pacific Pte. Ltd.\n(10) \tSouth Korea \tGoogle Cloud Korea\nGangnam Finance\ + \ Center 20fl., 152 Teheran-ro, Gangnam-gu, Seoul, South Korea;\n\n\"Google Indemnified\ + \ Materials\" means Google's technology used to provide the Services (excluding any open\ + \ source software) and Google's Brand Features.\n\n\"Google Maps Content\" means any content\ + \ provided through the Services (whether created by Google or its third-party licensors),\ + \ including map and terrain data, imagery, traffic data, and places data (including business\ + \ listings).\n\n\"High Risk Activities\" means activities where the use or failure of the\ + \ Services could lead to death, personal injury, or environmental damage, including (a)\ + \ emergency response services; (b) autonomous and semi-autonomous vehicle or drone control;\ + \ (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation.\n\ + \n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it\ + \ may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means\ + \ any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs\ + \ finally awarded against the indemnified party and its Affiliates by a court of competent\ + \ jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual\ + \ Property Rights\" means all patent rights, copyrights, trademark rights, rights in trade\ + \ secrets (if any), design rights, database rights, domain name rights, moral rights, and\ + \ any other intellectual property rights (registered or unregistered) throughout the world.\n\ + \n\"Legal Process\" means an information disclosure request made under law, governmental\ + \ regulation, court order, subpoena, warrant, governmental regulatory or agency request,\ + \ or other valid legal authority, legal procedure, or similar process.\n\n\"Liability\"\ + \ means any liability, whether under contract, tort (including negligence), or otherwise,\ + \ regardless of whether foreseeable or contemplated by the parties.\n\n\"Maps Service Specific\ + \ Terms\" means the then-current terms specific to one or more Services described at https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\ + \n\"Maps Technical Support Services\" means the technical support service provided by Google\ + \ to Customer under the then-current Maps Technical Support Services Guidelines.\n\n\"Maps\ + \ Technical Support Services Guidelines\" means the then-current technical support service\ + \ guidelines described at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Personal\ + \ Data\" has the meaning given to it in: (a) Regulation (EU) 2016/679 of the European Parliament\ + \ and of the Council of 27 April 2016 on the protection of natural persons with regard to\ + \ the processing of personal data and on the free movement of such data, and repealing Directive\ + \ 95/46/EC (“EU GDPR”); or (b) the EU GDPR as amended and incorporated into UK law under\ + \ the UK European Union (Withdrawal) Act 2018 (“UK GDPR”), if in force, as applicable.\n\ + \n\"Notification Email Address\" means the email address(es) designated by Customer in the\ + \ Admin Console.\n\n\"Price\" means the then-current applicable price(s) stated at https://cloud.google.com/maps-platform/pricing/sheet/.\n\ + \n\"Prohibited Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\ + \n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources\ + \ for a particular Customer Application.\n\n\"Reseller\" means, if applicable, the authorized\ + \ unaffiliated third-party reseller that sells or supplies the Services to Customer.\n\n\ + \"Reseller Agreement\" means, if applicable, a separate, independent agreement between Customer\ + \ and Reseller regarding the Services.\n\n\"Reseller Order Form\" means an order form entered\ + \ into by Reseller and Customer, subject to the Reseller Agreement.\n\n\"Services\" and\ + \ \"Google Maps Core Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/.\ + \ The Services include the Google Maps Content and the Software.\n\n\"Significant Deprecation\"\ + \ means a material discontinuance or backwards incompatible change to the Google Maps Core\ + \ Services described at https://cloud.google.com/maps-platform/terms/maps-deprecation/.\n\ + \n\"SLA\" or \"Service Level Agreement\" means each of the then-current service level agreements\ + \ at: https://cloud.google.com/maps-platform/terms/sla/.\n\n\"Software\" means any downloadable\ + \ tools, software development kits, or other computer software provided by Google for use\ + \ as part of the Services, including updates.\n\n\"Suspend\" or \"Suspension \" means disabling\ + \ access to or use of the Services or components of the Services.\n\n\"Taxes\" means any\ + \ duties, customs fees, or government-imposed taxes associated with the purchase of the\ + \ Services, including any related penalties or interest, except for taxes based on Google’s\ + \ net income, net worth, asset value, property value, or employment.\n\n\"Term\" has the\ + \ meaning stated in Section 11.1 of the Agreement.\n\n“Terms URL” means the following URL\ + \ set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party Legal\ + \ Proceeding\" means any formal legal proceeding filed by an unaffiliated third party before\ + \ a court or government tribunal (including any appellate proceeding).\n\n\"Trademark Guidelines\"\ + \ means (a) Google’s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html\ + \ and (b) the “Use of Trademarks” section of the “Using Google Maps, Google Earth and Street\ + \ View” permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark\ + \ policy.\n\n“URL Terms” means the following, which will control in the following order\ + \ if there is a conflict:\n\n(a) the Maps Service Specific Terms;\n\n(b) the SLA;\n\n(c)\ + \ the AUP;\n\n(d) the Maps Technical Support Services Guidelines;\n\n(e) the Legal Notices\ + \ for Google Maps/Google Earth and Google Maps/Google Earth APIs at https://www.google.com/help/legalnotices_maps.html;\ + \ and\n\n(f) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html.\n\ + 22. Regional Terms.\n\nCustomer agrees to the following modifications to the Agreement if\ + \ Customer orders Services from the applicable Google entity as described below:\nAsia Pacific\ + \ - Indonesia PT Google Cloud Indonesia \t\n\n1. The following is added as Section 11.6\ + \ (Termination Waiver):\n\n11.6 Termination Waiver. The parties agree to waive any provisions\ + \ under any applicable laws to the extent that a court decision or order is required for\ + \ the termination of this Agreement.\n\n2. Section 19.11 (Governing Law) is deleted and\ + \ replaced with the following:\n\n19.11 Governing Law.\n\n(a) The parties will try in good\ + \ faith to settle any dispute within 30 days after the dispute arises. If the dispute is\ + \ not resolved within 30 days, it must be resolved by arbitration by the American Arbitration\ + \ Association’s International Centre for Dispute Resolution in accordance with its Expedited\ + \ Commercial Rules in force as of the date of the Agreement (\"Rules\").\n\n(b) The parties\ + \ will mutually select one arbitrator. The arbitration will be conducted in English in Santa\ + \ Clara County, California, USA.\n\n(c) Either party may apply to any competent court for\ + \ injunctive relief necessary to protect its rights pending resolution of the arbitration.\ + \ The arbitrator may order equitable or injunctive relief consistent with the remedies and\ + \ limitations in the Agreement.\n\n(d) Subject to the confidentiality requirements in Section\ + \ 19.11(f), either party may petition any competent court to issue any order necessary to\ + \ protect that party’s rights or property; this petition will not be considered a violation\ + \ or waiver of this governing law and arbitration section and will not affect the arbitrator’s\ + \ powers, including the power to review the judicial decision. The parties stipulate that\ + \ the courts of Santa Clara County, California, USA, are competent to grant any order under\ + \ this Section 19.11(d).\n\n(e) The arbitral award will be final and binding on the parties\ + \ and its execution may be presented in any competent court, including any court with jurisdiction\ + \ over either party or any of its property.\n\n(f) Any arbitration proceeding conducted\ + \ in accordance with this Section will be considered Confidential Information under the\ + \ Agreement’s confidentiality section, including (i) the existence of, (ii) any information\ + \ disclosed during, and (iii) any oral communications or documents related to the arbitration\ + \ proceedings. The parties may also disclose the information described in this Section 19.11(f)\ + \ to a competent court as may be necessary to file any order under Section 19.11(d) or execute\ + \ any arbitral decision, but the parties must request that those judicial proceedings be\ + \ conducted in camera (in private).\n\n(g) The parties will pay the arbitrator’s fees, the\ + \ arbitrator’s appointed experts’ fees and expenses, and the arbitration center’s administrative\ + \ expenses in accordance with the Rules. In its final decision, the arbitrator will determine\ + \ the non-prevailing party’s obligation to reimburse the amount paid in advance by the prevailing\ + \ party for these fees.\n\n(h) Each party will bear its own lawyers’ and experts’ fees and\ + \ expenses, regardless of the arbitrator’s final decision regarding the Dispute.\n\n(i)\ + \ The parties agree that a decision of the arbitrators need not to be made within any specific\ + \ time period.\n\n3. Section 19.15 (Conflicting Languages) is deleted and replaced with\ + \ the following:\n\n19.15 Conflicting Languages. This Agreement is made in the Indonesian\ + \ and the English language, and both versions are equally authentic. In the event of any\ + \ inconsistency or different interpretation between the Indonesian version and the English\ + \ version, the parties agree to amend the Indonesian version to make the relevant part of\ + \ the Indonesian version consistent with the relevant part of the English version." json: google-maps-tos-2020-04-27.json - yml: google-maps-tos-2020-04-27.yml + yaml: google-maps-tos-2020-04-27.yml html: google-maps-tos-2020-04-27.html - text: google-maps-tos-2020-04-27.LICENSE + license: google-maps-tos-2020-04-27.LICENSE - license_key: google-maps-tos-2020-05-06 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-maps-tos-2020-05-06 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Google Maps Platform Terms of Service\n\nLast modified: May 6, 2020\n\nIf your billing\ + \ address is in Brazil, please review these Terms of Service, which apply to your use of\ + \ Google Maps Platform.\n\nSe a sua conta para faturamento é no Brasil, por gentileza veja\ + \ o Termos de Serviço, que será o Termo aplicável à sua utilização da Google Maps Platform.\n\ + \nIf your billing address is in Indonesia, please review these Terms of Service, which apply\ + \ to your use of Google Maps Platform.\n\nGoogle Maps Platform License Agreement\n\nThis\ + \ Google Maps Platform License Agreement (the \"Agreement\") is made and entered into between\ + \ Google (as defined in Section 21 (Definitions)) and the entity or person agreeing to these\ + \ terms (\"Customer\").\n\nThis Agreement is effective as of the date Customer clicks to\ + \ accept the Agreement, or enters into a Reseller Agreement if purchasing through a Reseller\ + \ (the \"Effective Date\"). If you are accepting on behalf of Customer, you represent and\ + \ warrant that: (a) you have full legal authority to bind Customer to this Agreement; (b)\ + \ you have read and understand this Agreement; and (c) you agree, on behalf of Customer,\ + \ to this Agreement. If you do not have the legal authority to bind Customer, please do\ + \ not click to accept. This Agreement governs Customer's access to and use of the Services.\n\ + 1. Provision of the Services.\n\n1.1 Use of the Services in Customer Applications. Google\ + \ will provide the Services to Customer in accordance with the Agreement, and Customer may\ + \ use the Services in Customer Application(s) in accordance with Section 3 (License).\n\n\ + 1.2 Admin Console; Projects; API Keys. Customer will administer the Services through the\ + \ online Admin Console. To access the Services, Customer must create Project(s) and use\ + \ its API key(s) in accordance with the Documentation.\n\n1.3 Accounts. Customer must have\ + \ an Account. Customer is responsible for: (a) the information it provides in connection\ + \ with the Account; (b) maintaining the confidentiality and security of the Account and\ + \ associated passwords; and (c) any use of its Account.\n\n1.4 Customer Domains and Applications.\ + \ Customer must list in the Admin Console each authorized domain and application that uses\ + \ the Services. Customer is responsible for ensuring that only authorized domains and applications\ + \ use the Services.\n\n1.5 New Features and Services. Google may: (a) make new features\ + \ or functionality available through the Services and (b) add new services to the \"Services\"\ + \ definition (by adding them at the URL stated under that definition). Customer’s use of\ + \ new features or functionality may be contingent on Customer’s agreement to additional\ + \ terms applicable to the new feature or functionality.\n\n1.6 Modifications.\n\n1.6.1 To\ + \ the Services. Subject to Section 9 (Deprecation Policy), Google may make changes to the\ + \ Services, which may include adding, updating, or discontinuing any Services or portion\ + \ or feature(s) of the Services. Google will notify Customer of any material change to the\ + \ Services.\n\n1.6.2. To the Agreement. Google may make changes to the Agreement, including\ + \ pricing and any linked documents. Unless otherwise noted by Google, material changes to\ + \ the Agreement will become effective 30 days after notice is given, except (a) materially\ + \ adverse SLA changes will become effective 90 days after notice is given; and (b) changes\ + \ applicable to new Services or functionality, or required by a court order or applicable\ + \ law, will be effective immediately. Google will provide notice for materially adverse\ + \ changes to any SLAs by: (i) sending an email to the Notification Email Address; (ii) posting\ + \ a notice in the Admin Console; or (iii) posting a notice to the applicable SLA webpage.\ + \ If Customer does not agree to the revised Agreement, Customer should stop using the Services.\ + \ Google will post any modification to this Agreement to the Terms URL.\n2. Payment Terms.\n\ + \n2.1 Free Quota. Certain Services are provided to Customer without charge up to the Fee\ + \ Threshold, as applicable.\n\n2.2 Online Billing. At the end of the applicable Fee Accrual\ + \ Period, Google will issue an electronic bill to Customer for all charges accrued above\ + \ the Fee Threshold based on Customer’s use of the Services during the previous Fee Accrual\ + \ Period. For use above the Fee Threshold, Customer will be responsible for all Fees up\ + \ to the amount set in the Account and will pay all Fees in the currency set forth in the\ + \ invoice. If Customer elects to pay by credit card, debit card, or other non-invoiced form\ + \ of payment, Google will charge (and Customer will pay) all Fees immediately at the end\ + \ of the Fee Accrual Period. If Customer elects to pay by invoice (and Google agrees), all\ + \ Fees are due as stated in the invoice. Customer’s obligation to pay all Fees is non-cancellable.\ + \ Google's measurement of Customer’s use of the Services is final. Google has no obligation\ + \ to provide multiple bills. Payments made via wire transfer must include the bank information\ + \ provided by Google. If Customer has entered into the Agreement with GCL, Google may collect\ + \ payments via Google Payment Limited, a company incorporated in England and Wales with\ + \ offices at Belgrave House, 76 Buckingham Palace Road, London, SW1W 9TQ, United Kingdom.\n\ + \n2.3 Taxes.\n\n2.3.1 Customer is responsible for any Taxes, and Customer will pay Google\ + \ for the Services without any reduction for Taxes. If Google is obligated to collect or\ + \ pay Taxes, the Taxes will be invoiced to Customer, unless Customer provides Google with\ + \ a timely and valid tax exemption certificate authorized by the appropriate taxing authority.\ + \ In some states the sales tax is due on the total purchase price at the time of sale and\ + \ must be invoiced and collected at the time of the sale. If Customer is required by law\ + \ to withhold any Taxes from its payments to Google, Customer must provide Google with an\ + \ official tax receipt or other appropriate documentation to support such withholding. If\ + \ under the applicable tax legislation the Services are subject to local VAT and the Customer\ + \ is required to make a withholding of local VAT from amounts payable to Google, the value\ + \ of Services calculated in accordance with the above procedure will be increased (grossed\ + \ up) by Customer for the respective amount of local VAT and the grossed up amount will\ + \ be regarded as a VAT inclusive price. Local VAT amount withheld from the VAT-inclusive\ + \ price will be remitted to the applicable local tax entity by the Customer and Customer\ + \ will ensure that Google will receive payment for its services for the net amount as would\ + \ otherwise be due (the VAT inclusive price less the local VAT withheld and remitted to\ + \ applicable tax authority).\n\n2.3.2 If required under applicable law, Customer will provide\ + \ Google with applicable tax identification information that Google may require to ensure\ + \ its compliance with applicable tax regulations and authorities in applicable jurisdictions.\ + \ Customer will be liable to pay (or reimburse Google for) any taxes, interest, penalties\ + \ or fines arising out of any mis-declaration by the Customer.\n\n2.4 Invoice Disputes &\ + \ Refunds. Any invoice disputes must be submitted before the payment due date. If Google\ + \ determines that Fees were incorrectly invoiced, then Google will issue a credit equal\ + \ to the agreed amount. To the fullest extent permitted by law, Customer waives all claims\ + \ relating to Fees unless claimed within 60 days after charged (this does not affect any\ + \ Customer rights with its credit card issuer). Nothing in the Agreement obligates Google\ + \ to extend credit to any party.\n\n2.5 Delinquent Payments; Suspension. If Customer’s payment\ + \ is overdue, then Google may (a) charge interest on overdue amounts at 1.5% per month (or\ + \ the highest rate permitted by law, if less) from the Payment Due Date until paid in full,\ + \ and (b) Suspend the Services or terminate the Agreement. Customer will reimburse Google\ + \ for all reasonable expenses (including attorneys’ fees) incurred by Google in collecting\ + \ overdue payments except where such payments are due to Google’s billing inaccuracies.\n\ + \n2.6 No Purchase Order Number Required. Google is not required to provide a purchase order\ + \ number on Google’s invoice (or otherwise).\n3. License.\n\n3.1 License Grant. Subject\ + \ to the Agreement's terms, during the Term, Google grants to Customer a non-exclusive,\ + \ non-transferable, non-sublicensable, license to use the Services in Customer Application(s).\n\ + \n3.2 License Requirements and Restrictions. The following are conditions of the license\ + \ granted in Section 3.1 (License Grant). In this Section 3.2 (License Requirements and\ + \ Restrictions), the phrase “Customer will not” means “Customer will not, and will not permit\ + \ a third party to”.\n\n3.2.1 General Restrictions. Customer will not: (a) copy, modify,\ + \ create a derivative work of, reverse engineer, decompile, translate, disassemble, or otherwise\ + \ attempt to extract any or all of the source code (except to the extent such restriction\ + \ is expressly prohibited by applicable law); (b) sublicense, transfer, or distribute any\ + \ of the Services; (c) sell, resell, sublicense, transfer, or distribute the Services; or\ + \ (d) access or use the Services: (i) for High Risk Activities; (ii) in a manner intended\ + \ to avoid incurring Fees; (iii) for materials or activities that are subject to the International\ + \ Traffic in Arms Regulations (ITAR) maintained by the United States Department of State;\ + \ (iv) in a manner that breaches, or causes the breach of, Export Control Laws; or (v) to\ + \ transmit, store, or process health information subject to United States HIPAA regulations.\n\ + \n3.2.2 Requirements for Using the Services.\n\n(a) Terms of Service and Privacy Policy.\n\ + \n(i) The Customer Application’s terms of service will (A) notify users that the Customer\ + \ Application includes Google Maps features and content; and (B) state that use of Google\ + \ Maps features and content is subject to the then-current versions of the: (1) Google Maps/Google\ + \ Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html; and\ + \ (2) Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n(ii) If the\ + \ Customer Application allows users to include the Google Maps Core Services in Downstream\ + \ Products, then Customer will contractually require that all Downstream Products’ terms\ + \ of service satisfy the same notice and flow-down requirements that apply to the Customer\ + \ Application under Section 3.2.2 (a) (i) (Terms of Service and Privacy Policy).\n\n(iii)\ + \ If users of the Customer Application (and Downstream Products, if any) fail to comply\ + \ with the applicable terms of the Google Maps/Google Earth Additional Terms of Service,\ + \ then Customer will take appropriate enforcement action, including Suspending or terminating\ + \ those users’ use of Google Maps features and content in the Customer Application or Downstream\ + \ Products.\n\n(b) Attribution. Customer will display all attribution that (i) Google provides\ + \ through the Services (including branding, logos, and copyright and trademark notices);\ + \ or (ii) is specified in the Maps Service Specific Terms. Customer will not modify, obscure,\ + \ or delete such attribution.\n\n(c) Review of Customer Applications. At Google’s request,\ + \ Customer will submit Customer Application(s) and Project(s) to Google for review to ensure\ + \ compliance with the Agreement (including the AUP).\n\n3.2.3 Restrictions Against Misusing\ + \ the Services.\n\n(a) No Scraping. Customer will not export, extract, or otherwise scrape\ + \ Google Maps Content for use outside the Services. For example, Customer will not: (i)\ + \ pre-fetch, index, store, reshare, or rehost Google Maps Content outside the services;\ + \ (ii) bulk download Google Maps tiles, Street View images, geocodes, directions, distance\ + \ matrix results, roads information, places information, elevation values, and time zone\ + \ details; (iii) copy and save business names, addresses, or user reviews; or (iv) use Google\ + \ Maps Content with text-to-speech services.\n\n(b) No Caching. Customer will not cache\ + \ Google Maps Content except as expressly permitted under the Maps Service Specific Terms.\n\ + \n(c) No Creating Content From Google Maps Content. Customer will not create content based\ + \ on Google Maps Content. For example, Customer will not: (i) trace or digitize roadways,\ + \ building outlines, utility posts, or electrical lines from the Maps JavaScript API Satellite\ + \ base map type; (ii) create 3D building models from 45° Imagery from Maps JavaScript API;\ + \ (iii) build terrain models based on elevation values from the Elevation API; (iv) use\ + \ latitude/longitude values from the Places API as an input for point-in-polygon analysis;\ + \ (v) construct an index of tree locations within a city from Street View imagery; or (vi)\ + \ convert text-based driving times into synthesized speech results.\n\n(d) No Re-Creating\ + \ Google Products or Features. Customer will not use the Services to create a product or\ + \ service with features that are substantially similar to or that re-create the features\ + \ of another Google product or service. Customer’s product or service must contain substantial,\ + \ independent value and features beyond the Google products or services. For example, Customer\ + \ will not: (i) re-distribute the Google Maps Core Services or pass them off as if they\ + \ were Customer’s services; (ii) use the Google Maps Core Services to create a substitute\ + \ of the Google Maps Core Services, Google Maps, or Google Maps mobile apps, or their features;\ + \ (iii) use the Google Maps Core Services in a listings or directory service or to create\ + \ or augment an advertising product; (iv) combine data from the Directions API, Geolocation\ + \ API, and Maps SDK for Android to create real-time navigation functionality substantially\ + \ similar to the functionality provided by the Google Maps for Android mobile app.\n\n(e)\ + \ No Use With Non-Google Maps. To avoid quality issues and/or brand confusion, Customer\ + \ will not use the Google Maps Core Services with or near a non-Google Map in a Customer\ + \ Application. For example, Customer will not (i) display or use Places content on a non-Google\ + \ map, (ii) display Street View imagery and non-Google maps on the same screen, or (iii)\ + \ link a Google Map to non-Google Maps content or a non-Google map.\n\n(f) No Circumventing\ + \ Fees. Customer will not circumvent the applicable Fees. For example, Customer will not\ + \ create multiple billing accounts or Projects to avoid incurring Fees, prevent Google from\ + \ accurately calculating Customer’s Service usage levels, abuse any free Service quotas,\ + \ or offer access to the Services under a “time-sharing” or “service bureau” model.\n\n\ + (g) No Use in Prohibited Territories. Customer will not distribute or market in a Prohibited\ + \ Territory any Customer Application(s) that use the Google Maps Core Services.\n\n(h) No\ + \ Use in Embedded Vehicle Systems. Customer will not use the Google Maps Core Services in\ + \ connection with any Customer Application or device embedded in a vehicle. For example,\ + \ Customer will not create a Customer Application that (i) is embedded in an in-dashboard\ + \ automotive infotainment system; and (ii) allows End Users to request driving directions\ + \ from the Directions API.\n\n(i) No Use in Customer Application Directed To Children.\ + \ Customer will not use the Google Maps Core Services in a Customer Application that would\ + \ be deemed to be a “Web site or online service directed to children” under the Children’s\ + \ Online Privacy Protection Act (COPPA).\n\n(j) No Modifying Search Results Integrity. Customer\ + \ will not modify any of the Google Maps Core Services’ search results.\n\n3.2.4 Benchmarking.\ + \ Customer may not publicly disclose directly or through a third party the results of any\ + \ comparative or compatibility testing, benchmarking, or evaluation of the Services (each,\ + \ a “Test”), unless the disclosure includes all information necessary for Google or a third\ + \ party to replicate the Test. If Customer conducts, or directs a third party to conduct,\ + \ a Test of the Services and publicly discloses the results directly or through a third\ + \ party, then Google (or a Google directed third party) may conduct Tests of any publicly\ + \ available cloud products or services provided by Customer and publicly disclose the results\ + \ of any such Test (which disclosure will include all information necessary for Customer\ + \ or a third party to replicate the Test).\n4. Customer Obligations. \n\n4.1 Compliance.\ + \ Customer will: (a) ensure that Customer’s and its End Users’ use of the Services complies\ + \ with the Agreement; (b) prevent and terminate any unauthorized use of or access to its\ + \ Account(s) or the Services; and (c) promptly notify Google of any unauthorized use of\ + \ or access to its Account(s) or the Services of which Customer becomes aware.\n\n4.2 Documentation.\ + \ Google may provide Documentation for Customer’s use of the Services. The Documentation\ + \ may specify restrictions (e.g. attribution or HTML restrictions) on how the Services may\ + \ be used and Customer will comply with any such restrictions specified.\n\n4.3 Copyright\ + \ Policy. Google provides information to help copyright holders manage their intellectual\ + \ property online, but Google cannot determine whether something is being used legally without\ + \ input from the copyright holders. Google will respond to notices of alleged copyright\ + \ infringement and may terminate repeat infringers in appropriate circumstances as required\ + \ to maintain safe harbor for online service providers under the U.S. Digital Millennium\ + \ Copyright Act. If Customer believes a person or entity is infringing Customer’s or End\ + \ Users’ copyrights and would like to notify Google, Customer can find information about\ + \ submitting notices, and Google's policy about responding to notices at https://www.google.com/dmca.html.\n\ + \n4.4 Data Use, Protection, and Privacy.\n\n4.4.1 Data Use and Retention. To provide the\ + \ Services through the Customer Application(s), Google collects and receives data from Customer\ + \ and End Users (and End Users’ End Users, if any), including search terms, IP addresses,\ + \ and latitude/longitude coordinates. Customer acknowledges and agrees that Google and its\ + \ Affiliates may use and retain this data to provide and improve Google products and services,\ + \ subject to the Google Privacy Policy at https://www.google.com/policies/privacy/.\n\n\ + 4.4.2 European Data Protection Terms. Google and Customer agree to the Google Maps Controller-Controller\ + \ Data Protection Terms at https://cloud.google.com/maps-platform/terms/maps-controller-terms.\n\ + \n4.4.3 End User Requirements.\n\n(a) End User Privacy. Customer’s use of the Services\ + \ in the Customer Application will comply with applicable privacy laws, including laws regarding\ + \ Services that store and access Cookies on End Users’ devices. Customer will comply with\ + \ the then-current Consent Policy at https://www.google.com/about/company/user-consent-policy.html,\ + \ if applicable.\n\n(b) End User Personal Data. Through the normal functioning of the Google\ + \ Maps Core Services, End Users provide personally identifiable information and Personal\ + \ Data directly to Google, subject to the then-current Google Privacy Policy at https://www.google.com/policies/privacy/.\ + \ (a) However, Customer will not provide to Google (i) any End User’s personally identifiable\ + \ information; or (ii) any European End User’s Personal Data (where “European” means “European\ + \ Economic Area, Switzerland, or the UK”).\n\n(c) End User Location Privacy Requirements.\ + \ To safeguard End Users’ location privacy, Customer will ensure that the Customer Application(s):\ + \ (i) notify End Users in advance of (1) the type(s) of data that Customer intends to collect\ + \ from the End Users or the End Users’ devices, and (2) the combination and use of End User's\ + \ location with any other data provider's data; and (ii) will not obtain or cache any End\ + \ User's location except with the End User's express, prior, revocable consent. \ + \ \n5. Suspension. \n\n5.1 For License Restrictions Breaches. Google may Suspend the Services\ + \ without prior notice if Customer breaches Section 3.2 (License Requirements and Restrictions).\n\ + \n5.2 For AUP Breaches or Emergency Security Issues. Google may also Suspend Services as\ + \ described in Subsections 5.2.1 (AUP Breaches) and 5.2.2 (Emergency Suspension). Any Suspension\ + \ under those Sections will be to the minimum extent and for the shortest duration required\ + \ to: (a) prevent or terminate the offending use, (b) prevent or resolve the Emergency Security\ + \ Issue, or (c) comply with applicable law.\n\n5.2.1 AUP Breaches. If Google becomes aware\ + \ that Customer’s or any End User’s use of the Services breaches the AUP, Google will give\ + \ Customer notice of such breach by requesting that Customer correct the breach. If Customer\ + \ fails to correct such breach within 24 hours, or if Google is otherwise required by applicable\ + \ law to take action, then Google may Suspend all or part of Customer’s use of the Services.\n\ + \n5.2.2 Emergency Suspension. Google may immediately Suspend Customer’s use of the Services\ + \ if (a) there is an Emergency Security Issue or (b) Google is required to Suspend such\ + \ use to comply with applicable law. At Customer’s request, unless prohibited by applicable\ + \ law, Google will notify Customer of the basis for the Suspension as soon as is reasonably\ + \ possible.\n\n5.3 For Alleged Third-Party Intellectual Property Rights Infringement. If\ + \ the Customer Application is alleged to infringe a third party’s Intellectual Property\ + \ Rights, Google may require Customer to suspend all use of the Google Maps Core Services\ + \ in the Customer Application on 30 days’ written notice until such allegation is fully\ + \ resolved. In any event, this Section 5.3 (For Alleged Third-Party Intellectual Property\ + \ Rights Infringement) does not reduce Customer’s obligations under Section 15 (Indemnification).\n\ + 6. Intellectual Property Rights; Feedback.\n\n6.1 Intellectual Property Rights. Except as\ + \ expressly stated in the Agreement, the Agreement does not grant either party any rights,\ + \ implied or otherwise, to the other’s content or any of the other’s intellectual property.\ + \ As between the parties, Customer owns all Intellectual Property Rights in the Customer\ + \ Application, and Google owns all Intellectual Property Rights in the Google Maps Core\ + \ Services.\n\n6.2 Customer Feedback. If Customer provides Google Feedback about the Services,\ + \ then Google may use that information without obligation to Customer, and Customer irrevocably\ + \ assigns to Google all right, title, and interest in that Feedback.\n7. Third Party Legal\ + \ Notices and License Terms.\n\nCertain components of the Services (including open source\ + \ software) are subject to third-party copyright and other Intellectual Property Rights,\ + \ as specified in: (a) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html;\ + \ and (b) separate, publicly-available third-party license terms, which Google will provide\ + \ to Customer on request.\n8. Technical Support Services.\n\n8.1 By Google. Google will\ + \ provide Maps Technical Support Services to Customer in accordance with the Maps Technical\ + \ Support Services Guidelines.\n\n8.2 By Customer. Customer is responsible for technical\ + \ support of its Customer Applications and Projects.\n9. Deprecation Policy. \n\n Google\ + \ will notify Customer at least 12 months before making a Significant Deprecation, unless\ + \ Google reasonably determines that: (a) Google cannot do so by law or by contract (including\ + \ if there is a change in applicable law or contract) or (b) continuing to provide the Services\ + \ could create a security risk or substantial economic or technical burden.\n10. Confidentiality.\n\ + \n10.1 Confidentiality Obligations. Subject to Section 10.2 (Required Disclosure), the recipient\ + \ will use the other party’s Confidential Information only to exercise its rights and fulfill\ + \ its obligations under the Agreement. The recipient will use reasonable care to protect\ + \ against disclosure of the other party’s Confidential Information to parties other than\ + \ the recipient’s employees, Affiliates, agents, or professional advisors (“Delegates”)\ + \ who need to know it and are subject to confidentiality obligations at least as protective\ + \ as those in this Section 10.1 (Confidentiality Obligations).\n\n10.2 Required Disclosure.\n\ + \n10.2.1 Subject to Section 10.2.2, the recipient and its Affiliates may disclose the other\ + \ party’s Confidential Information to the extent required by applicable Legal Process, If\ + \ the recipient and its Affiliates (as applicable) use commercially reasonable efforts to:\ + \ (a) promptly notify the other party of such disclosure before disclosing; and (b) comply\ + \ with the other party’s reasonable requests regarding its efforts to oppose the disclosure.\n\ + \n10.2.2 Sections 10.2.1(a) and (b) above will not apply if the recipient determines that\ + \ complying with (a) and (b) could: (i) result in a violation of Legal Process; (ii) obstruct\ + \ a governmental investigation; or (iii) lead to death or serious physical harm to an individual.\n\ + \n10.2.3 As between the parties, Customer is responsible for responding to all third party\ + \ requests concerning its use and Customer End Users’ use of the Services.\n11. Term and\ + \ Termination.\n\n11.1 Agreement Term. The Agreement is effective from the Effective Date\ + \ until it is terminated in accordance with its terms (the “Term”).\n\n11.2 Termination\ + \ for Breach. Either party may terminate the Agreement for breach if: (a) the other party\ + \ is in material breach of the Agreement and fails to cure that breach within 30 days after\ + \ receipt of written notice; (b) the other party ceases its business operations; or (c)\ + \ becomes subject to insolvency proceedings and the proceedings are not dismissed within\ + \ 90 days. Google may terminate Projects or access to Services, if Customer meets any of\ + \ the conditions in subsections (a) or (b).\n\n11.3 Termination for Inactivity. Google may\ + \ terminate Projects with 30 days' prior written notice if such Project (a) has not made\ + \ any requests to the Services from any Customer Applications for more than 180 days; or\ + \ (b) has not incurred any Fees for more than 180 days.\n\n11.4 Termination for Convenience.\ + \ Customer may stop using the Services at any time. Subject to any financial commitments\ + \ expressly made by this Agreement, Customer may terminate the Agreement for its convenience\ + \ at any time with 30 days' prior written notice. Google may terminate the Agreement for\ + \ its convenience at any time without liability to Customer.\n\n11.5 Effects of Termination.\ + \ \n\n11.5.1 If the Agreement terminates, then: (a) the rights and access to the Services\ + \ will terminate; (b) all Fees owed by Customer to Google are immediately due upon receipt\ + \ of the final electronic bill; and (c) Customer will delete the Software and any content\ + \ from the Services by the termination effective date.\n\n11.5.2 The following will survive\ + \ expiration or termination of the Agreement: Section 2 (Payment Terms), Section 3.2 (License\ + \ Requirements and Restrictions), Section 4.4 (Data Use, Protection, and Privacy), Section\ + \ 6 (Intellectual Property; Feedback), Section 10 (Confidential Information), Section 11.5\ + \ (Effects of Termination), Section 14 (Disclaimer), Section 15 (Indemnification), Section\ + \ 16 (Limitation of Liability), Section 19 (Miscellaneous), and Section 21 (Definitions).\n\ + 12. Publicity.\n\nCustomer may state publicly that it is a customer of the Services, consistent\ + \ with the Trademark Guidelines. If Customer wants to display Google Brand Features in connection\ + \ with its use of the Services, Customer must obtain written permission from Google through\ + \ the process specified in the Trademark Guidelines. Google may include Customer’s name\ + \ or Brand Features in a list of Google customers, online or in promotional materials. Google\ + \ may also verbally reference Customer as a customer of the Services. Neither party needs\ + \ approval if it is repeating a public statement that is substantially similar to a previously-approved\ + \ public statement. Any use of a party’s Brand Features will inure to the benefit of the\ + \ party holding Intellectual Property Rights to those Brand Features. A party may revoke\ + \ the other party’s right to use its Brand Features under this Section with written notice\ + \ to the other party and a reasonable period to stop the use.\n13. Representations and Warranties.\n\ + \nEach party represents and warrants that: (a) it has full power and authority to enter\ + \ into the Agreement; and (b) it will comply with Export Control Laws and Anti-Bribery Laws\ + \ applicable to its provision, receipt, or use, of the Services, as applicable.\n14. Disclaimer.\n\ + \n EXCEPT AS EXPRESSLY PROVIDED FOR IN THE AGREEMENT, TO THE FULLEST EXTENT PERMITTED BY\ + \ APPLICABLE LAW, GOOGLE: (A) DOES NOT MAKE ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS,\ + \ IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR\ + \ A PARTICULAR USE, NONINFRINGEMENT, OR ERROR-FREE OR UNINTERRUPTED USE OF THE SERVICES\ + \ OR SOFTWARE; (B) MAKES NO REPRESENTATION ABOUT CONTENT OR INFORMATION ACCESSIBLE THROUGH\ + \ THE SERVICES; AND (C) WILL ONLY BE REQUIRED TO PROVIDE THE REMEDIES EXPRESSLY STATED IN\ + \ THE SLA FOR FAILURE TO PROVIDE THE SERVICES. GOOGLE MAPS CORE SERVICES ARE PROVIDED FOR\ + \ PLANNING PURPOSES ONLY. INFORMATION FROM THE GOOGLE MAPS CORE SERVICES MAY DIFFER FROM\ + \ ACTUAL CONDITIONS, AND MAY NOT BE SUITABLE FOR THE CUSTOMER APPLICATION. CUSTOMER MUST\ + \ EXERCISE INDEPENDENT JUDGMENT WHEN USING THE SERVICES TO ENSURE THAT (i) GOOGLE MAPS ARE\ + \ SUITABLE FOR THE CUSTOMER APPLICATION; AND (ii) THE CUSTOMER APPLICATION IS SAFE FOR END\ + \ USERS AND OTHER THIRD PARTIES.\n15. Indemnification.\n\n15.1 Customer Indemnification\ + \ Obligations. Unless prohibited by applicable law, Customer will defend Google and its\ + \ Affiliates and indemnify them against Indemnified Liabilities in any Third-Party Legal\ + \ Proceeding to the extent arising from (a) any Customer Indemnified Materials or (b) Customer’s\ + \ or an End User’s use of the Services in violation of the AUP or in violation of the Agreement.\n\ + \n15.2 Google Indemnification Obligations. Google will defend Customer and its Affiliates\ + \ participating under the Agreement (“Customer Indemnified Parties”), and indemnify them\ + \ against Indemnified Liabilities in any Third-Party Legal Proceeding to the extent arising\ + \ from an Allegation that Customer Indemnified Parties' use of Google Indemnified Materials\ + \ infringes the third party's Intellectual Property Rights.\n\n15.3 Indemnification Exclusions.\ + \ Sections 15.1 (Customer Indemnification Obligations) and 15.2 (Google Indemnification\ + \ Obligations) will not apply to the extent the underlying Allegation arises from (a) the\ + \ indemnified party’s breach of the Agreement or (b) a combination of the Customer Indemnified\ + \ Materials or Google Indemnified Materials (as applicable)s with materials not provided\ + \ by the indemnifying party, unless the combination is required by the Agreement.\n\n15.4\ + \ Indemnification Conditions. Sections 15.1 (Customer Indemnification Obligations) and 15.2\ + \ (Google Indemnification Obligations) are conditioned on the following:\n\n(a) The indemnified\ + \ party must promptly notify the indemnifying party in writing of any Allegation(s) that\ + \ preceded the Third-Party Legal Proceeding and cooperate reasonably with the indemnifying\ + \ party to resolve the Allegation(s) and Third-Party Legal Proceeding. If breach of this\ + \ Section 15.4(a) prejudices the defense of the Third-Party Legal Proceeding, the indemnifying\ + \ party’s obligations under Section 15.1 (Customer Indemnification Obligations) or 15.2\ + \ (Google Indemnification Obligations) (as applicable) will be reduced in proportion to\ + \ the prejudice.\n\n(b) The indemnified party must tender sole control of the indemnified\ + \ portion of the Third-Party Legal Proceeding to the indemnifying party, subject to the\ + \ following: (i) the indemnified party may appoint its own non-controlling counsel, at its\ + \ own expense; and (ii) any settlement requiring the indemnified party to admit liability,\ + \ pay money, or take (or refrain from taking) any action, will require the indemnified party’s\ + \ prior written consent, not to be unreasonably withheld, conditioned, or delayed.\n\n15.5\ + \ Remedies.\n\n(a) If Google reasonably believes the Services might infringe a third party’s\ + \ Intellectual Property Rights, then Google may, at its sole option and expense: (i) procure\ + \ the right for Customer to continue using the Services; (ii) modify the Services to make\ + \ them non-infringing without materially reducing their functionality; or (iii) replace\ + \ the Services with a non-infringing, functionally equivalent alternative.\n\n(b) If Google\ + \ does not believe the remedies in Section 15.5(a) are commercially reasonable, then Google\ + \ may Suspend or terminate Customer’s use of the impacted Services.\n\n15.6 Sole Rights\ + \ and Obligations. Without affecting either party’s termination rights, this Section 15\ + \ states the parties’ sole and exclusive remedy under the Agreement for any Allegations\ + \ of Intellectual Property Rights infringement covered by this Section 15 (Indemnification).\n\ + 16. Liability.\n\n16.1 Limited Liabilities\n\n(a) To the extent permitted by applicable\ + \ law and subject to Section 16.2 (Unlimited Liabilities), neither party and Google’s licensors\ + \ will have any Liability arising out of or relating to the Agreement for any (i) indirect,\ + \ consequential, special, incidental, or punitive damages or (ii) lost revenues, profits,\ + \ savings, or goodwill.\n\n(b) Each party’s total aggregate Liability for damages arising\ + \ out of or relating to the Agreement is limited to the Fees Customer paid under the Agreement\ + \ during the 12 month period before the event giving rise to Liability.\n\n16.2 Unlimited\ + \ Liabilities. Nothing in the Agreement excludes or limits either party’s Liability for:\n\ + \n(a) its infringement of the other party’s Intellectual Property Rights\n\n(b) its payment\ + \ obligations under the Agreement; or\n\n(c) matters for which liability cannot be excluded\ + \ or limited under applicable law.\n17. Advertising.\n\nIn its sole discretion, Customer\ + \ may configure the Service to either display or not display advertisements served by Google.\n\ + 18. U.S. Federal Agency Users.\n\nThe Services were developed solely at private expense\ + \ and are commercial computer software and related documentation within the meaning of the\ + \ applicable Federal Acquisition Regulations and their agency supplements.\n19. Miscellaneous.\n\ + \n19.1 Notices. All notices must be in writing and addressed: (a) in the case of Google,\ + \ to Google’s Legal Department at legal-notices@google.com; and (b) in the case of Customer,\ + \ to the Notification Email Address. Notice will be treated as given on receipt as verified\ + \ by written or automated receipt or by electronic log (as applicable).\n\n19.2 Assignment.\ + \ Customer may not assign the Agreement without the written consent of Google, except to\ + \ an Affiliate where: (a) the assignee has agreed in writing to be bound by the terms of\ + \ the Agreement; (b) the assigning party remains liable for obligations under the Agreement\ + \ if the assignee defaults on them; and (c) the assigning party has notified the other party\ + \ of the assignment. Any other attempt by Customer to assign is void. Google may assign\ + \ the Agreement without the written consent of Customer by notifying Customer of the assignment.\n\ + \n19.3 Change of Control. If a party experiences a change of Control other than an internal\ + \ restructuring or reorganization, then: (a) that party will give written notice to the\ + \ other party within 30 days after the change of Control; and (b) the other party may immediately\ + \ terminate the Agreement any time between the change of Control and 30 days after it receives\ + \ that written notice.\n\n19.4 Force Majeure. Neither party will be liable for failure or\ + \ delay in performance to the extent caused by circumstances beyond its reasonable control,\ + \ including acts of God, natural disasters, terrorism, riots, or war.\n\n19.5 Subcontracting.\ + \ Google may subcontract obligations under the Agreement but will remain liable to Customer\ + \ for any subcontracted obligations.\n\n19.6 No Agency. The Agreement does not create any\ + \ agency, partnership or joint venture between the parties.\n\n19.7 No Waiver. Neither party\ + \ will be treated as having waived any rights by not exercising (or delaying the exercise\ + \ of) any rights under the Agreement.\n\n19.8 Severability. If any part of the Agreement\ + \ is invalid, illegal, or unenforceable, the rest of the Agreement will remain in effect.\n\ + \n19.9 No Third-Party Beneficiaries. The Agreement does not confer any benefits on any third\ + \ party unless it expressly states that it does.\n\n19.10 Equitable Relief. Nothing in the\ + \ Agreement will limit either party’s ability to seek equitable relief.\n\n19.11 Governing\ + \ Law.\n\n(a) For U.S. City, County, and State Government Entities. If Customer is a U.S.\ + \ city, county or state government entity, then the Agreement will be silent regarding governing\ + \ law and venue.\n\n(b) For U.S. Federal Government Entities. If Customer is a U.S. federal\ + \ government entity then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO\ + \ THE AGREEMENT OR THE SERVICES WILL BE GOVERNED BY THE LAWS OF THE UNITED STATES OF AMERICA,\ + \ EXCLUDING ITS CONFLICT OF LAWS RULES. SOLELY TO THE EXTENT PERMITTED BY FEDERAL LAW: (I)\ + \ THE LAWS OF THE STATE OF CALIFORNIA (EXCLUDING CALIFORNIA’S CONFLICT OF LAWS RULES) WILL\ + \ APPLY IN THE ABSENCE OF APPLICABLE FEDERAL LAW; AND (II) FOR ALL CLAIMS ARISING OUT OF\ + \ OR RELATING TO THE AGREEMENT OR THE SERVICES, THE PARTIES CONSENT TO PERSONAL JURISDICTION\ + \ IN, AND THE EXCLUSIVE VENUE OF, THE COURTS IN SANTA CLARA COUNTY, CALIFORNIA.\n\n(c) \ + \ For All Other Entities. If Customer is any entity not listed in Section 19.11 (A) (For\ + \ U.S. City, County, and State Government Entities) or 19.11(B) (For U.S. Federal Government\ + \ Entities) then the following applies: ALL CLAIMS ARISING OUT OF OR RELATING TO THE AGREEMENT\ + \ OR THE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING THAT STATE’S CONFLICT OF\ + \ LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA\ + \ CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS.\n\ + \n19.12 Amendments. Except as stated in Section 1.6.2 (Modifications; To the Agreement),\ + \ any amendment to the Agreement must be in writing, expressly state that it is amending\ + \ this Agreement, and be signed by both parties.\n\n19.13 Entire Agreement. The Agreement\ + \ states all terms agreed between the parties and supersedes any prior or contemporaneous\ + \ agreements between the parties relating to its subject matter. In entering into this Agreement,\ + \ neither party has relied on, and neither party will have any right or remedy based on,\ + \ any statement, representation or warranty (whether made negligently or innocently), except\ + \ those expressly stated in the Agreement. The Agreement includes URL links to other terms\ + \ (including the URL Terms), which are incorporated by reference into the Agreement. After\ + \ the Effective Date, Google may provide an updated URL in place of any URL in the Agreement.\n\ + \n19.14 Conflicting Terms. If there is a conflict between the documents that make up the\ + \ Agreement, then the documents will control in the following order: the Agreement and the\ + \ terms at any URL. \n\n19.15 Conflicting Languages. If the Agreement is translated into\ + \ any other language, and there is a discrepancy between the English text and the translated\ + \ text, the English text will govern.\n20. Reseller Orders.\n\nThis Section applies if Customer\ + \ orders the Services from a Reseller under a Reseller Agreement (including the Reseller\ + \ Order Form).\n\n20.1 Orders. If Customer orders Services from Reseller, then: (a) fees\ + \ for the Services will be set between Customer and Reseller, and any payments will be made\ + \ directly to Reseller under the Reseller Agreement; (b) Section 2 of the Agreement (Payment\ + \ Terms) will not apply to the Services; (c) Customer will receive any applicable SLA credits\ + \ from Reseller, if owed to Customer in accordance with the SLA; and (d) Google will have\ + \ no obligation to provide any SLA credits to a Customer who orders Services from the Reseller.\n\ + \n20.2 Conflicting Terms. If Customer orders Google Maps Core Services from a Reseller and\ + \ if any documents conflict, then the documents will control in the following order: the\ + \ Agreement, the terms at any URL (including the URL Terms), and the Reseller Order Form.\ + \ For example, if there is a conflict between the Maps Service Specific Terms and the Reseller\ + \ Order Form, the Maps Service Specific Terms will control.\n\n20.3 Reseller as Administrator.\ + \ At Customer's discretion, Reseller may access Customer's Projects, Accounts, or the Services\ + \ on behalf of Customer. As between Google and Customer, Customer is solely responsible\ + \ for: (a) any access by Reseller to Customer’s Account(s), Project(s), or the Services;\ + \ and (b) defining in the Reseller Agreement any rights or obligations as between Reseller\ + \ and Customer with respect to the Accounts, Projects, or Services.\n\n20.4 Reseller Verification\ + \ of Customer Application(s). Before providing the Services, Reseller may also verify that\ + \ Customer owns or controls the Customer Applications. If Reseller determines that Customer\ + \ does not own or control the Customer Applications, then Google will have no obligation\ + \ to provide the Services to Customer.\n21. Definitions.\n\n\"Account\" means Customer’s\ + \ Google Account.\n\n\"Admin Console\" means the online console(s) and/or tool(s) provided\ + \ by Google to Customer for administering the Services.\n\n\"Affiliate\" means any entity\ + \ that directly or indirectly Controls, is Controlled by, or is under common Control with\ + \ a party.\n\n\"Allegation\" means an unaffiliated third party’s allegation.\n\n“Anti-Bribery\ + \ Laws” means all applicable commercial and public anti-bribery laws, (for example, the\ + \ U.S. Foreign Corrupt Practices Act of 1977 and the UK Bribery Act 2010), which prohibit\ + \ corrupt offers of anything of value, either directly or indirectly, to anyone, including\ + \ government officials, to obtain or keep business or to secure any other improper commercial\ + \ advantage. “Government officials” include any government employee; candidate for public\ + \ office; and employee of government-owned or government-controlled companies, public international\ + \ organizations, and political parties.\n\n\"AUP\" or \"Acceptable Use Policy\" means the\ + \ then-current Acceptable Use Policy for the Services described at https://cloud.google.com/maps-platform/terms/aup/.\n\ + \n\"Brand Features\" means each party’s trade names, trademarks, service marks, logos, domain\ + \ names, and other distinctive brand features.\n\n\"Confidential Information\" means information\ + \ that one party (or an Affiliate) discloses to the other party under this Agreement, and\ + \ which is marked as confidential or would normally under the circumstances be considered\ + \ confidential information. It does not include information that is independently developed\ + \ by the recipient, is rightfully given to the recipient by a third party without confidentiality\ + \ obligations, or becomes public through no fault of the recipient.\n\n\"Control\" means\ + \ control of greater than 50% of the voting rights or equity interests of a party.\n\n\"\ + Customer Application\" means any web page or application (including all source code and\ + \ features) owned or controlled by Customer, or that Customer is authorized to use.\n\n\"\ + Customer End User\" or \"End User\" means an individual or entity that Customer permits\ + \ to use the Services or Customer Application(s).\n\n“Customer Indemnified Materials” means\ + \ the Customer Application and Customer Brand Features.\n\n\"Documentation\" means the then-current\ + \ Google documentation described at https://developers.google.com/maps/documentation.\n\n\ + \"Emergency Security Issue\" means either: (a) Customer’s or Customer End Users’ use of\ + \ the Services in breach of the AUP, which such use could disrupt: (i) the Services; (ii)\ + \ other customers’ or their customer end users’ use of the Services; or (iii) the Google\ + \ network or servers used to provide the Services; or (b) unauthorized third party access\ + \ to the Services.\n\n\"Europe\" or \"European\" means European Economic Area, Switzerland,\ + \ or the UK.\n\n“Export Control Laws” means all applicable export and re-export control\ + \ laws and regulations, including any applicable munitions- or defense-related regulations\ + \ (for example, the International Traffic in Arms Regulations maintained by the U.S. Department\ + \ of State).\n\n\"Fee Accrual Period\" means a calendar month or another period specified\ + \ by Google in the Admin Console.\n\n\"Fee Threshold\" means the then-current threshold,\ + \ as applicable for certain Services, as set out in the Admin Console.\n\n“Feedback” means\ + \ feedback or suggestions about the Services provided by Customer to Google.\n\n\"Fees\"\ + \ means the product of the amount of Services used or ordered by Customer multiplied by\ + \ the Prices, plus any applicable Taxes.\n\n\"Google\" has the meaning given at https://cloud.google.com/terms/google-entity.\n\ + \n\"Google Indemnified Materials\" means Google's technology used to provide the Services\ + \ (excluding any open source software) and Google's Brand Features.\n\n\"Google Maps Content\"\ + \ means any content provided through the Services (whether created by Google or its third-party\ + \ licensors), including map and terrain data, imagery, traffic data, and places data (including\ + \ business listings).\n\n\"High Risk Activities\" means activities where the use or failure\ + \ of the Services could lead to death, personal injury, or environmental damage, including\ + \ (a) emergency response services; (b) autonomous and semi-autonomous vehicle or drone control;\ + \ (c) vessel navigation; (d) aviation; (e) air traffic control; (f) nuclear facilities operation.\n\ + \n\"HIPAA\" means the Health Insurance Portability and Accountability Act of 1996 as it\ + \ may be amended, and any regulations issued under it.\n\n\"Indemnified Liabilities\" means\ + \ any (a) settlement amounts approved by the indemnifying party; and (b) damages and costs\ + \ finally awarded against the indemnified party and its Affiliates by a court of competent\ + \ jurisdiction.\n\n\"including\" means \"including but not limited to\".\n\n\"Intellectual\ + \ Property Rights\" means all patent rights, copyrights, trademark rights, rights in trade\ + \ secrets (if any), design rights, database rights, domain name rights, moral rights, and\ + \ any other intellectual property rights (registered or unregistered) throughout the world.\n\ + \n\"Legal Process\" means an information disclosure request made under law, governmental\ + \ regulation, court order, subpoena, warrant, governmental regulatory or agency request,\ + \ or other valid legal authority, legal procedure, or similar process.\n\n\"Liability\"\ + \ means any liability, whether under contract, tort (including negligence), or otherwise,\ + \ regardless of whether foreseeable or contemplated by the parties.\n\n\"Maps Service Specific\ + \ Terms\" means the then-current terms specific to one or more Services described at https://cloud.google.com/maps-platform/terms/maps-service-terms/.\n\ + \n\"Maps Technical Support Services\" means the technical support service provided by Google\ + \ to Customer under the then-current Maps Technical Support Services Guidelines.\n\n\"Maps\ + \ Technical Support Services Guidelines\" means the then-current technical support service\ + \ guidelines described at https://cloud.google.com/maps-platform/terms/tssg/.\n\n\"Personal\ + \ Data\" has the meaning given to it in: (a) Regulation (EU) 2016/679 of the European Parliament\ + \ and of the Council of 27 April 2016 on the protection of natural persons with regard to\ + \ the processing of personal data and on the free movement of such data, and repealing Directive\ + \ 95/46/EC (“EU GDPR”); or (b) the EU GDPR as amended and incorporated into UK law under\ + \ the UK European Union (Withdrawal) Act 2018 (“UK GDPR”), if in force, as applicable.\n\ + \n\"Notification Email Address\" means the email address(es) designated by Customer in the\ + \ Admin Console.\n\n\"Price\" means the then-current applicable price(s) stated at https://cloud.google.com/maps-platform/pricing/sheet/.\n\ + \n\"Prohibited Territory\" means the countries listed at https://cloud.google.com/maps-platform/terms/maps-prohibited-territories/.\n\ + \n\"Project\" means a Customer-selected grouping of Google Maps Core Services resources\ + \ for a particular Customer Application.\n\n\"Reseller\" means, if applicable, the authorized\ + \ unaffiliated third-party reseller that sells or supplies the Services to Customer.\n\n\ + \"Reseller Agreement\" means, if applicable, a separate, independent agreement between Customer\ + \ and Reseller regarding the Services.\n\n\"Reseller Order Form\" means an order form entered\ + \ into by Reseller and Customer, subject to the Reseller Agreement.\n\n\"Services\" and\ + \ \"Google Maps Core Services\" means the services described at https://cloud.google.com/maps-platform/terms/maps-services/.\ + \ The Services include the Google Maps Content and the Software.\n\n\"Significant Deprecation\"\ + \ means a material discontinuance or backwards incompatible change to the Google Maps Core\ + \ Services described at https://cloud.google.com/maps-platform/terms/maps-deprecation/.\n\ + \n\"SLA\" or \"Service Level Agreement\" means each of the then-current service level agreements\ + \ at: https://cloud.google.com/maps-platform/terms/sla/.\n\n\"Software\" means any downloadable\ + \ tools, software development kits, or other computer software provided by Google for use\ + \ as part of the Services, including updates.\n\n\"Suspend\" or \"Suspension \" means disabling\ + \ access to or use of the Services or components of the Services.\n\n\"Taxes\" means any\ + \ duties, customs fees, or government-imposed taxes associated with the purchase of the\ + \ Services, including any related penalties or interest, except for taxes based on Google’s\ + \ net income, net worth, asset value, property value, or employment.\n\n\"Term\" has the\ + \ meaning stated in Section 11.1 of the Agreement.\n\n“Terms URL” means the following URL\ + \ set forth here: https://cloud.google.com/maps-platform/terms/.\n\n\"Third-Party Legal\ + \ Proceeding\" means any formal legal proceeding filed by an unaffiliated third party before\ + \ a court or government tribunal (including any appellate proceeding).\n\n\"Trademark Guidelines\"\ + \ means (a) Google’s Brand Terms and Conditions, located at: https://www.google.com/permissions/trademark/brand-terms.html\ + \ and (b) the “Use of Trademarks” section of the “Using Google Maps, Google Earth and Street\ + \ View” permissions page at https://www.google.com/permissions/geoguidelines.html#geotrademark\ + \ policy.\n\n“URL Terms” means the following, which will control in the following order\ + \ if there is a conflict:\n\n(a) the Maps Service Specific Terms;\n\n(b) the SLA;\n\n(c)\ + \ the AUP;\n\n(d) the Maps Technical Support Services Guidelines;\n\n(e) the Legal Notices\ + \ for Google Maps/Google Earth and Google Maps/Google Earth APIs at https://www.google.com/help/legalnotices_maps.html;\ + \ and\n\n(f) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html.\n\ + 22. Regional Terms.\n\nCustomer agrees to the following modifications to the Agreement if\ + \ Customer orders Services from the applicable Google entity as described below:\nAsia Pacific\ + \ - Indonesia PT Google Cloud Indonesia \t\n\n1. The following is added as Section 11.6\ + \ (Termination Waiver):\n\n11.6 Termination Waiver. The parties agree to waive any provisions\ + \ under any applicable laws to the extent that a court decision or order is required for\ + \ the termination of this Agreement.\n\n2. Section 19.11 (Governing Law) is deleted and\ + \ replaced with the following:\n\n19.11 Governing Law.\n\n(a) The parties will try in good\ + \ faith to settle any dispute within 30 days after the dispute arises. If the dispute is\ + \ not resolved within 30 days, it must be resolved by arbitration by the American Arbitration\ + \ Association’s International Centre for Dispute Resolution in accordance with its Expedited\ + \ Commercial Rules in force as of the date of the Agreement (\"Rules\").\n\n(b) The parties\ + \ will mutually select one arbitrator. The arbitration will be conducted in English in Santa\ + \ Clara County, California, USA.\n\n(c) Either party may apply to any competent court for\ + \ injunctive relief necessary to protect its rights pending resolution of the arbitration.\ + \ The arbitrator may order equitable or injunctive relief consistent with the remedies and\ + \ limitations in the Agreement.\n\n(d) Subject to the confidentiality requirements in Section\ + \ 19.11(f), either party may petition any competent court to issue any order necessary to\ + \ protect that party’s rights or property; this petition will not be considered a violation\ + \ or waiver of this governing law and arbitration section and will not affect the arbitrator’s\ + \ powers, including the power to review the judicial decision. The parties stipulate that\ + \ the courts of Santa Clara County, California, USA, are competent to grant any order under\ + \ this Section 19.11(d).\n\n(e) The arbitral award will be final and binding on the parties\ + \ and its execution may be presented in any competent court, including any court with jurisdiction\ + \ over either party or any of its property.\n\n(f) Any arbitration proceeding conducted\ + \ in accordance with this Section will be considered Confidential Information under the\ + \ Agreement’s confidentiality section, including (i) the existence of, (ii) any information\ + \ disclosed during, and (iii) any oral communications or documents related to the arbitration\ + \ proceedings. The parties may also disclose the information described in this Section 19.11(f)\ + \ to a competent court as may be necessary to file any order under Section 19.11(d) or execute\ + \ any arbitral decision, but the parties must request that those judicial proceedings be\ + \ conducted in camera (in private).\n\n(g) The parties will pay the arbitrator’s fees, the\ + \ arbitrator’s appointed experts’ fees and expenses, and the arbitration center’s administrative\ + \ expenses in accordance with the Rules. In its final decision, the arbitrator will determine\ + \ the non-prevailing party’s obligation to reimburse the amount paid in advance by the prevailing\ + \ party for these fees.\n\n(h) Each party will bear its own lawyers’ and experts’ fees and\ + \ expenses, regardless of the arbitrator’s final decision regarding the Dispute.\n\n(i)\ + \ The parties agree that a decision of the arbitrators need not to be made within any specific\ + \ time period.\n\n3. Section 19.15 (Conflicting Languages) is deleted and replaced with\ + \ the following:\n\n19.15 Conflicting Languages. This Agreement is made in the Indonesian\ + \ and the English language, and both versions are equally authentic. In the event of any\ + \ inconsistency or different interpretation between the Indonesian version and the English\ + \ version, the parties agree to amend the Indonesian version to make the relevant part of\ + \ the Indonesian version consistent with the relevant part of the English version." json: google-maps-tos-2020-05-06.json - yml: google-maps-tos-2020-05-06.yml + yaml: google-maps-tos-2020-05-06.yml html: google-maps-tos-2020-05-06.html - text: google-maps-tos-2020-05-06.LICENSE + license: google-maps-tos-2020-05-06.LICENSE - license_key: google-ml-kit-tos-2022 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-ml-kit-tos-2022 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Terms & Privacy \nML KIT Terms of Service\nThe following terms apply to your use of\ + \ ML Kit APIs. These terms incorporate and are subject to the Google APIs Terms of Service.\n\ + \nGeneral Terms\nFor purposes of these terms, machine learning models will be considered\ + \ related software.\n\nML Kit APIs run on-device. When using the ML Kit APIs, you may not\ + \ reverse engineer or attempt to extract the source code or any related software, except\ + \ to the extent that this restriction is expressly prohibited by applicable law.\n\nPrivacy\n\ + When you use ML Kit APIs, processing of the input data (e.g. images, video, text) fully\ + \ happens on-device, and ML Kit does not send that data to Google servers. As a result,\ + \ you can use our APIs for processing data that should not leave the device.\n\nThe ML Kit\ + \ APIs may contact Google servers from time to time in order to receive things like bug\ + \ fixes, updated models and hardware accelerator compatibility information. The ML Kit APIs\ + \ also send metrics about the performance and utilization of the APIs in your app to Google.\ + \ Google uses this metrics data to measure performance, debug, maintain and improve the\ + \ APIs, and detect misuse or abuse, as further described in our Privacy Policy.\n\nYou are\ + \ responsible for informing users of your app about Google’s processing of ML Kit metrics\ + \ data as required by applicable law.\n\nFor additional details to help support your Google\ + \ Play and Apple App Store disclosures requirements, please refer to:\n\nGoogle Play’s data\ + \ disclosure requirements\nApple’s App Store data disclosure requirements\n\nLast updated\ + \ 2022-02-22 UTC" json: google-ml-kit-tos-2022.json - yml: google-ml-kit-tos-2022.yml + yaml: google-ml-kit-tos-2022.yml html: google-ml-kit-tos-2022.html - text: google-ml-kit-tos-2022.LICENSE + license: google-ml-kit-tos-2022.LICENSE - license_key: google-patent-license + category: Patent License spdx_license_key: LicenseRef-scancode-google-patent-license other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: | + Google 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, transfer, and otherwise run, modify and propagate the contents + of this implementation, where such license applies only to those + patent claims, both currently owned by Google and acquired in the + future, licensable by Google that are necessarily infringed by this + implementation. This grant does not include claims that would be + infringed only as a consequence of further modification of this + implementation. If you or your agent or exclusive licensee institute + or order or agree to the institution of patent litigation or any other + patent enforcement activity against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that this + implementation constitutes direct or contributory patent infringement, + or inducement of patent infringement, then any patent rights granted + to you under this License for this implementation shall terminate as + of the date such litigation is filed. json: google-patent-license.json - yml: google-patent-license.yml + yaml: google-patent-license.yml html: google-patent-license.html - text: google-patent-license.LICENSE + license: google-patent-license.LICENSE - license_key: google-patent-license-fuchsia + category: Patent License spdx_license_key: LicenseRef-scancode-google-patent-license-fuchsia other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: | + Additional IP Rights Grant (Patents) + "This implementation" means the copyrightable works distributed by + Google as part of the Fuchsia project. + Google 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, transfer, and otherwise run, modify and propagate the contents + of this implementation of Fuchsia, where such license applies only to + those patent claims, both currently owned by Google and acquired in + the future, licensable by Google that are necessarily infringed by + this implementation. This grant does not include claims that would + be infringed only as a consequence of further modification of this + implementation. If you or your agent or exclusive licensee institute + or order or agree to the institution of patent litigation or any other + patent enforcement activity against any entity (including a cross-claim + or counterclaim in a lawsuit) alleging that this implementation + of Fuchsia constitutes direct or contributory patent infringement, or + inducement of patent infringement, then any patent rights granted to you + under this License for this implementation of Fuchsia shall terminate as + of the date such litigation is filed. json: google-patent-license-fuchsia.json - yml: google-patent-license-fuchsia.yml + yaml: google-patent-license-fuchsia.yml html: google-patent-license-fuchsia.html - text: google-patent-license-fuchsia.LICENSE + license: google-patent-license-fuchsia.LICENSE - license_key: google-patent-license-fuschia + category: Patent License spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Patent License + text: | + Additional IP Rights Grant (Patents) + "This implementation" means the copyrightable works distributed by + Google as part of the Fuchsia project. + Google 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, transfer, and otherwise run, modify and propagate the contents + of this implementation of Fuchsia, where such license applies only to + those patent claims, both currently owned by Google and acquired in + the future, licensable by Google that are necessarily infringed by + this implementation. This grant does not include claims that would + be infringed only as a consequence of further modification of this + implementation. If you or your agent or exclusive licensee institute + or order or agree to the institution of patent litigation or any other + patent enforcement activity against any entity (including a cross-claim + or counterclaim in a lawsuit) alleging that this implementation + of Fuchsia constitutes direct or contributory patent infringement, or + inducement of patent infringement, then any patent rights granted to you + under this License for this implementation of Fuchsia shall terminate as + of the date such litigation is filed. json: google-patent-license-fuschia.json - yml: google-patent-license-fuschia.yml + yaml: google-patent-license-fuschia.yml html: google-patent-license-fuschia.html - text: google-patent-license-fuschia.LICENSE + license: google-patent-license-fuschia.LICENSE - license_key: google-patent-license-golang + category: Patent License spdx_license_key: LicenseRef-scancode-google-patent-license-golang other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: | + Additional IP Rights Grant (Patents) + + "This implementation" means the copyrightable works distributed by Google as + part of the Go project. + + Google 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, transfer and otherwise run, + modify and propagate the contents of this implementation of Go, where such + license applies only to those patent claims, both currently owned or controlled + by Google and acquired in the future, licensable by Google that are necessarily + infringed by this implementation of Go. This grant does not include claims that + would be infringed only as a consequence of further modification of this + implementation. If you or your agent or exclusive licensee institute or order + or agree to the institution of patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that this implementation of + Go or any code incorporated within this implementation of Go constitutes direct + or contributory patent infringement, or inducement of patent infringement, then + any patent rights granted to you under this License for this implementation of + Go shall terminate as of the date such litigation is filed. json: google-patent-license-golang.json - yml: google-patent-license-golang.yml + yaml: google-patent-license-golang.yml html: google-patent-license-golang.html - text: google-patent-license-golang.LICENSE + license: google-patent-license-golang.LICENSE - license_key: google-patent-license-webm + category: Patent License spdx_license_key: LicenseRef-scancode-google-patent-license-webm other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: | + Additional IP Rights Grant (Patents) + ------------------------------------ + + "These implementations" means the copyrightable works that implement the + WebM codecs distributed by Google as part of the WebM Project. + + Google 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, transfer, and otherwise run, modify and propagate the contents + of these implementations of WebM, where such license applies only to + those patent claims, both currently owned by Google and acquired in + the future, licensable by Google that are necessarily infringed by + these implementations of WebM. This grant does not include claims that would + be infringed only as a consequence of further modification of + these implementations. If you or your agent or exclusive licensee institute + or order or agree to the institution of patent litigation or any other + patent enforcement activity against any entity (including a cross-claim + or counterclaim in a lawsuit) alleging that any of these implementations + of WebM or any code incorporated within any of these implementations of + WebM constitute direct or contributory patent infringement, or + inducement of patent infringement, then any patent rights granted to you + under this License for these implementations of WebM shall terminate as + of the date such litigation is filed. json: google-patent-license-webm.json - yml: google-patent-license-webm.yml + yaml: google-patent-license-webm.yml html: google-patent-license-webm.html - text: google-patent-license-webm.LICENSE + license: google-patent-license-webm.LICENSE - license_key: google-patent-license-webrtc + category: Patent License spdx_license_key: LicenseRef-scancode-google-patent-license-webrtc other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: | + Additional IP Rights Grant (Patents) + + "This implementation" means the copyrightable works distributed by + Google as part of the WebRTC code package. + + Google hereby grants to you a perpetual, worldwide, non-exclusive, + no-charge, irrevocable (except as stated in this section) patent + license to make, have made, use, offer to sell, sell, import, + transfer, and otherwise run, modify and propagate the contents of this + implementation of the WebRTC code package, where such license applies + only to those patent claims, both currently owned by Google and + acquired in the future, licensable by Google that are necessarily + infringed by this implementation of the WebRTC code package. This + grant does not include claims that would be infringed only as a + consequence of further modification of this implementation. If you or + your agent or exclusive licensee institute or order or agree to the + institution of patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that this + implementation of the WebRTC code package or any code incorporated + within this implementation of the WebRTC code package constitutes + direct or contributory patent infringement, or inducement of patent + infringement, then any patent rights granted to you under this License + for this implementation of the WebRTC code package shall terminate as + of the date such litigation is filed. json: google-patent-license-webrtc.json - yml: google-patent-license-webrtc.yml + yaml: google-patent-license-webrtc.yml html: google-patent-license-webrtc.html - text: google-patent-license-webrtc.LICENSE + license: google-patent-license-webrtc.LICENSE - license_key: google-playcore-sdk-tos-2020 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-playcore-sdk-tos-2020 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Play Core Software Development Kit Terms of Service + Last modified: September 24, 2020 + + By using the Play Core Software Development Kit, you agree to these terms in addition to the Google APIs Terms of Service ("API ToS"). If these terms are ever in conflict, these terms will take precedence over the API ToS. Please read these terms and the API ToS carefully. + + For purposes of these terms, "APIs" means Google's APIs, other developer services, and associated software, including any Redistributable Code. + + “Redistributable Code” means Google-provided object code or header files that call the APIs. + + Subject to these terms and the terms of the API ToS, you may copy and distribute Redistributable Code solely for inclusion as part of your API Client. Google and its licensors own all right, title and interest, including any and all intellectual property and other proprietary rights, in and to Redistributable Code. You will not modify, translate, or create derivative works of Redistributable Code. + + Google may make changes to these terms at any time with notice and the opportunity to decline further use of the Play Core Software Development Kit. Google will post notice of modifications to the terms at https://developer.android.com/guide/playcore/license. Changes will not be retroactive. json: google-playcore-sdk-tos-2020.json - yml: google-playcore-sdk-tos-2020.yml + yaml: google-playcore-sdk-tos-2020.yml html: google-playcore-sdk-tos-2020.html - text: google-playcore-sdk-tos-2020.LICENSE + license: google-playcore-sdk-tos-2020.LICENSE - license_key: google-tos-2013 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-tos-2013 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Google Terms of Service + + Last modified: November 11, 2013 (view archived versions) + + Welcome to Google! + + Thanks for using our products and services ("Services"). The Services are provided by Google Inc. ("Google"), located at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States. + + By using our Services, you are agreeing to these terms. Please read them carefully. + + Our Services are very diverse, so sometimes additional terms or product requirements (including age requirements) may apply. Additional terms will be available with the relevant Services, and those additional terms become part of your agreement with us if you use those Services. + + Using our Services + + You must follow any policies made available to you within the Services. + + Don’t misuse our Services. For example, don’t interfere with our Services or try to access them using a method other than the interface and the instructions that we provide. You may use our Services only as permitted by law, including applicable export and re-export control laws and regulations. We may suspend or stop providing our Services to you if you do not comply with our terms or policies or if we are investigating suspected misconduct. + + Using our Services does not give you ownership of any intellectual property rights in our Services or the content you access. You may not use content from our Services unless you obtain permission from its owner or are otherwise permitted by law. These terms do not grant you the right to use any branding or logos used in our Services. Don’t remove, obscure, or alter any legal notices displayed in or along with our Services. + + Our Services display some content that is not Google’s. This content is the sole responsibility of the entity that makes it available. We may review content to determine whether it is illegal or violates our policies, and we may remove or refuse to display content that we reasonably believe violates our policies or the law. But that does not necessarily mean that we review content, so please don’t assume that we do. + + In connection with your use of the Services, we may send you service announcements, administrative messages, and other information. You may opt out of some of those communications. + + Some of our Services are available on mobile devices. Do not use such Services in a way that distracts you and prevents you from obeying traffic or safety laws. + + Your Google Account + + You may need a Google Account in order to use some of our Services. You may create your own Google Account, or your Google Account may be assigned to you by an administrator, such as your employer or educational institution. If you are using a Google Account assigned to you by an administrator, different or additional terms may apply and your administrator may be able to access or disable your account. + + To protect your Google Account, keep your password confidential. You are responsible for the activity that happens on or through your Google Account. Try not to reuse your Google Account password on third-party applications. If you learn of any unauthorized use of your password or Google Account, follow these instructions. + + Privacy and Copyright Protection + + Google’s privacy policies explain how we treat your personal data and protect your privacy when you use our Services. By using our Services, you agree that Google can use such data in accordance with our privacy policies. + + We respond to notices of alleged copyright infringement and terminate accounts of repeat infringers according to the process set out in the U.S. Digital Millennium Copyright Act. + + We provide information to help copyright holders manage their intellectual property online. If you think somebody is violating your copyrights and want to notify us, you can find information about submitting notices and Google’s policy about responding to notices in our Help Center. + + Your Content in our Services + + Some of our Services allow you to submit content. You retain ownership of any intellectual property rights that you hold in that content. In short, what belongs to you stays yours. + + When you upload or otherwise submit content to our Services, you give Google (and those we work with) a worldwide license to use, host, store, reproduce, modify, create derivative works (such as those resulting from translations, adaptations or other changes we make so that your content works better with our Services), communicate, publish, publicly perform, publicly display and distribute such content. The rights you grant in this license are for the limited purpose of operating, promoting, and improving our Services, and to develop new ones. This license continues even if you stop using our Services (for example, for a business listing you have added to Google Maps). Some Services may offer you ways to access and remove content that has been provided to that Service. Also, in some of our Services, there are terms or settings that narrow the scope of our use of the content submitted in those Services. Make sure you have the necessary rights to grant us this license for any content that you submit to our Services. + + If you have a Google Account, we may display your Profile name, Profile photo, and actions you take on Google or on third-party applications connected to your Google Account (such as +1’s, reviews you write and comments you post) in our Services, including displaying in ads and other commercial contexts. We will respect the choices you make to limit sharing or visibility settings in your Google Account. For example, you can choose your settings so your name and photo do not appear in an ad. + + You can find more information about how Google uses and stores content in the privacy policy or additional terms for particular Services. If you submit feedback or suggestions about our Services, we may use your feedback or suggestions without obligation to you. + + About Software in our Services + + When a Service requires or includes downloadable software, this software may update automatically on your device once a new version or feature is available. Some Services may let you adjust your automatic update settings. + + Google gives you a personal, worldwide, royalty-free, non-assignable and non-exclusive license to use the software provided to you by Google as part of the Services. This license is for the sole purpose of enabling you to use and enjoy the benefit of the Services as provided by Google, in the manner permitted by these terms. You may not copy, modify, distribute, sell, or lease any part of our Services or included software, nor may you reverse engineer or attempt to extract the source code of that software, unless laws prohibit those restrictions or you have our written permission. + + Open source software is important to us. Some software used in our Services may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms. + + Modifying and Terminating our Services + + We are constantly changing and improving our Services. We may add or remove functionalities or features, and we may suspend or stop a Service altogether. + + You can stop using our Services at any time, although we’ll be sorry to see you go. Google may also stop providing Services to you, or add or create new limits to our Services at any time. + + We believe that you own your data and preserving your access to such data is important. If we discontinue a Service, where reasonably possible, we will give you reasonable advance notice and a chance to get information out of that Service. + + Our Warranties and Disclaimers + + We provide our Services using a commercially reasonable level of skill and care and we hope that you will enjoy using them. But there are certain things that we don’t promise about our Services. + + OTHER THAN AS EXPRESSLY SET OUT IN THESE TERMS OR ADDITIONAL TERMS, NEITHER GOOGLE NOR ITS SUPPLIERS OR DISTRIBUTORS MAKE ANY SPECIFIC PROMISES ABOUT THE SERVICES. FOR EXAMPLE, WE DON’T MAKE ANY COMMITMENTS ABOUT THE CONTENT WITHIN THE SERVICES, THE SPECIFIC FUNCTIONS OF THE SERVICES, OR THEIR RELIABILITY, AVAILABILITY, OR ABILITY TO MEET YOUR NEEDS. WE PROVIDE THE SERVICES "AS IS". + + SOME JURISDICTIONS PROVIDE FOR CERTAIN WARRANTIES, LIKE THE IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. TO THE EXTENT PERMITTED BY LAW, WE EXCLUDE ALL WARRANTIES. + + Liability for our Services + + WHEN PERMITTED BY LAW, GOOGLE, AND GOOGLE’S SUPPLIERS AND DISTRIBUTORS, WILL NOT BE RESPONSIBLE FOR LOST PROFITS, REVENUES, OR DATA, FINANCIAL LOSSES OR INDIRECT, SPECIAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES. + + TO THE EXTENT PERMITTED BY LAW, THE TOTAL LIABILITY OF GOOGLE, AND ITS SUPPLIERS AND DISTRIBUTORS, FOR ANY CLAIMS UNDER THESE TERMS, INCLUDING FOR ANY IMPLIED WARRANTIES, IS LIMITED TO THE AMOUNT YOU PAID US TO USE THE SERVICES (OR, IF WE CHOOSE, TO SUPPLYING YOU THE SERVICES AGAIN). + + IN ALL CASES, GOOGLE, AND ITS SUPPLIERS AND DISTRIBUTORS, WILL NOT BE LIABLE FOR ANY LOSS OR DAMAGE THAT IS NOT REASONABLY FORESEEABLE. + + Business uses of our Services + + If you are using our Services on behalf of a business, that business accepts these terms. It will hold harmless and indemnify Google and its affiliates, officers, agents, and employees from any claim, suit or action arising from or related to the use of the Services or violation of these terms, including any liability or expense arising from claims, losses, damages, suits, judgments, litigation costs and attorneys’ fees. + + About these Terms + + We may modify these terms or any additional terms that apply to a Service to, for example, reflect changes to the law or changes to our Services. You should look at the terms regularly. We’ll post notice of modifications to these terms on this page. We’ll post notice of modified additional terms in the applicable Service. Changes will not apply retroactively and will become effective no sooner than fourteen days after they are posted. However, changes addressing new functions for a Service or changes made for legal reasons will be effective immediately. If you do not agree to the modified terms for a Service, you should discontinue your use of that Service. + + If there is a conflict between these terms and the additional terms, the additional terms will control for that conflict. + + These terms control the relationship between Google and you. They do not create any third party beneficiary rights. + + If you do not comply with these terms, and we don’t take action right away, this doesn’t mean that we are giving up any rights that we may have (such as taking action in the future). + + If it turns out that a particular term is not enforceable, this will not affect any other terms. + + The laws of California, U.S.A., excluding California’s conflict of laws rules, will apply to any disputes arising out of or relating to these terms or the Services. All claims arising out of or relating to these terms or the Services will be litigated exclusively in the federal or state courts of Santa Clara County, California, USA, and you and Google consent to personal jurisdiction in those courts. + + For information about how to contact Google, please visit our contact page. json: google-tos-2013.json - yml: google-tos-2013.yml + yaml: google-tos-2013.yml html: google-tos-2013.html - text: google-tos-2013.LICENSE + license: google-tos-2013.LICENSE - license_key: google-tos-2014 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-tos-2014 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Google Terms of Service + + Last modified: April 30, 2014 (view archived versions) + Welcome to Google! + + Thanks for using our products and services (“Services”). The Services are provided by Google Inc. (“Google”), located at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States. + + By using our Services, you are agreeing to these terms. Please read them carefully. + + Our Services are very diverse, so sometimes additional terms or product requirements (including age requirements) may apply. Additional terms will be available with the relevant Services, and those additional terms become part of your agreement with us if you use those Services. + Using our Services + + You must follow any policies made available to you within the Services. + + Don’t misuse our Services. For example, don’t interfere with our Services or try to access them using a method other than the interface and the instructions that we provide. You may use our Services only as permitted by law, including applicable export and re-export control laws and regulations. We may suspend or stop providing our Services to you if you do not comply with our terms or policies or if we are investigating suspected misconduct. + + Using our Services does not give you ownership of any intellectual property rights in our Services or the content you access. You may not use content from our Services unless you obtain permission from its owner or are otherwise permitted by law. These terms do not grant you the right to use any branding or logos used in our Services. Don’t remove, obscure, or alter any legal notices displayed in or along with our Services. + + Our Services display some content that is not Google’s. This content is the sole responsibility of the entity that makes it available. We may review content to determine whether it is illegal or violates our policies, and we may remove or refuse to display content that we reasonably believe violates our policies or the law. But that does not necessarily mean that we review content, so please don’t assume that we do. + + In connection with your use of the Services, we may send you service announcements, administrative messages, and other information. You may opt out of some of those communications. + + Some of our Services are available on mobile devices. Do not use such Services in a way that distracts you and prevents you from obeying traffic or safety laws. + Your Google Account + + You may need a Google Account in order to use some of our Services. You may create your own Google Account, or your Google Account may be assigned to you by an administrator, such as your employer or educational institution. If you are using a Google Account assigned to you by an administrator, different or additional terms may apply and your administrator may be able to access or disable your account. + + To protect your Google Account, keep your password confidential. You are responsible for the activity that happens on or through your Google Account. Try not to reuse your Google Account password on third-party applications. If you learn of any unauthorized use of your password or Google Account, follow these instructions. + Privacy and Copyright Protection + + Google’s privacy policies explain how we treat your personal data and protect your privacy when you use our Services. By using our Services, you agree that Google can use such data in accordance with our privacy policies. + + We respond to notices of alleged copyright infringement and terminate accounts of repeat infringers according to the process set out in the U.S. Digital Millennium Copyright Act. + + We provide information to help copyright holders manage their intellectual property online. If you think somebody is violating your copyrights and want to notify us, you can find information about submitting notices and Google’s policy about responding to notices in our Help Center. + Your Content in our Services + + Some of our Services allow you to upload, submit, store, send or receive content. You retain ownership of any intellectual property rights that you hold in that content. In short, what belongs to you stays yours. + + When you upload, submit, store, send or receive content to or through our Services, you give Google (and those we work with) a worldwide license to use, host, store, reproduce, modify, create derivative works (such as those resulting from translations, adaptations or other changes we make so that your content works better with our Services), communicate, publish, publicly perform, publicly display and distribute such content. The rights you grant in this license are for the limited purpose of operating, promoting, and improving our Services, and to develop new ones. This license continues even if you stop using our Services (for example, for a business listing you have added to Google Maps). Some Services may offer you ways to access and remove content that has been provided to that Service. Also, in some of our Services, there are terms or settings that narrow the scope of our use of the content submitted in those Services. Make sure you have the necessary rights to grant us this license for any content that you submit to our Services. + + Our automated systems analyze your content (including emails) to provide you personally relevant product features, such as customized search results, tailored advertising, and spam and malware detection. This analysis occurs as the content is sent, received, and when it is stored. + + If you have a Google Account, we may display your Profile name, Profile photo, and actions you take on Google or on third-party applications connected to your Google Account (such as +1’s, reviews you write and comments you post) in our Services, including displaying in ads and other commercial contexts. We will respect the choices you make to limit sharing or visibility settings in your Google Account. For example, you can choose your settings so your name and photo do not appear in an ad. + + You can find more information about how Google uses and stores content in the privacy policy or additional terms for particular Services. If you submit feedback or suggestions about our Services, we may use your feedback or suggestions without obligation to you. + About Software in our Services + + When a Service requires or includes downloadable software, this software may update automatically on your device once a new version or feature is available. Some Services may let you adjust your automatic update settings. + + Google gives you a personal, worldwide, royalty-free, non-assignable and non-exclusive license to use the software provided to you by Google as part of the Services. This license is for the sole purpose of enabling you to use and enjoy the benefit of the Services as provided by Google, in the manner permitted by these terms. You may not copy, modify, distribute, sell, or lease any part of our Services or included software, nor may you reverse engineer or attempt to extract the source code of that software, unless laws prohibit those restrictions or you have our written permission. + + Open source software is important to us. Some software used in our Services may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms. + Modifying and Terminating our Services + + We are constantly changing and improving our Services. We may add or remove functionalities or features, and we may suspend or stop a Service altogether. + + You can stop using our Services at any time, although we’ll be sorry to see you go. Google may also stop providing Services to you, or add or create new limits to our Services at any time. + + We believe that you own your data and preserving your access to such data is important. If we discontinue a Service, where reasonably possible, we will give you reasonable advance notice and a chance to get information out of that Service. + Our Warranties and Disclaimers + + We provide our Services using a commercially reasonable level of skill and care and we hope that you will enjoy using them. But there are certain things that we don’t promise about our Services. + + Other than as expressly set out in these terms or additional terms, neither Google nor its suppliers or distributors make any specific promises about the Services. For example, we don’t make any commitments about the content within the Services, the specific functions of the Services, or their reliability, availability, or ability to meet your needs. We provide the Services “as is”. + + Some jurisdictions provide for certain warranties, like the implied warranty of merchantability, fitness for a particular purpose and non-infringement. To the extent permitted by law, we exclude all warranties. + Liability for our Services + + When permitted by law, Google, and Google’s suppliers and distributors, will not be responsible for lost profits, revenues, or data, financial losses or indirect, special, consequential, exemplary, or punitive damages. + + To the extent permitted by law, the total liability of Google, and its suppliers and distributors, for any claims under these terms, including for any implied warranties, is limited to the amount you paid us to use the Services (or, if we choose, to supplying you the Services again). + + In all cases, Google, and its suppliers and distributors, will not be liable for any loss or damage that is not reasonably foreseeable. + + We recognize that in some countries, you might have legal rights as a consumer. If you are using the Services for a personal purpose, then nothing in these terms or any additional terms limits any consumer legal rights which may not be waived by contract. + Business uses of our Services + + If you are using our Services on behalf of a business, that business accepts these terms. It will hold harmless and indemnify Google and its affiliates, officers, agents, and employees from any claim, suit or action arising from or related to the use of the Services or violation of these terms, including any liability or expense arising from claims, losses, damages, suits, judgments, litigation costs and attorneys’ fees. + About these Terms + + We may modify these terms or any additional terms that apply to a Service to, for example, reflect changes to the law or changes to our Services. You should look at the terms regularly. We’ll post notice of modifications to these terms on this page. We’ll post notice of modified additional terms in the applicable Service. Changes will not apply retroactively and will become effective no sooner than fourteen days after they are posted. However, changes addressing new functions for a Service or changes made for legal reasons will be effective immediately. If you do not agree to the modified terms for a Service, you should discontinue your use of that Service. + + If there is a conflict between these terms and the additional terms, the additional terms will control for that conflict. + + These terms control the relationship between Google and you. They do not create any third party beneficiary rights. + + If you do not comply with these terms, and we don’t take action right away, this doesn’t mean that we are giving up any rights that we may have (such as taking action in the future). + + If it turns out that a particular term is not enforceable, this will not affect any other terms. + + The courts in some countries will not apply California law to some types of disputes. If you reside in one of those countries, then where California law is excluded from applying, your country’s laws will apply to such disputes related to these terms. Otherwise, you agree that the laws of California, U.S.A., excluding California’s choice of law rules, will apply to any disputes arising out of or relating to these terms or the Services. Similarly, if the courts in your country will not permit you to consent to the jurisdiction and venue of the courts in Santa Clara County, California, U.S.A., then your local jurisdiction and venue will apply to such disputes related to these terms. Otherwise, all claims arising out of or relating to these terms or the services will be litigated exclusively in the federal or state courts of Santa Clara County, California, USA, and you and Google consent to personal jurisdiction in those courts. + + For information about how to contact Google, please visit our contact page. json: google-tos-2014.json - yml: google-tos-2014.yml + yaml: google-tos-2014.yml html: google-tos-2014.html - text: google-tos-2014.LICENSE + license: google-tos-2014.LICENSE - license_key: google-tos-2017 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-tos-2017 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Google Terms of Service + + Last modified: October 25, 2017 (view archived versions) + Welcome to Google! + + Thanks for using our products and services (“Services”). The Services are provided by Google LLC (“Google”), located at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States. + + By using our Services, you are agreeing to these terms. Please read them carefully. + + Our Services are very diverse, so sometimes additional terms or product requirements (including age requirements) may apply. Additional terms will be available with the relevant Services, and those additional terms become part of your agreement with us if you use those Services. + Using our Services + + You must follow any policies made available to you within the Services. + + Don’t misuse our Services. For example, don’t interfere with our Services or try to access them using a method other than the interface and the instructions that we provide. You may use our Services only as permitted by law, including applicable export and re-export control laws and regulations. We may suspend or stop providing our Services to you if you do not comply with our terms or policies or if we are investigating suspected misconduct. + + Using our Services does not give you ownership of any intellectual property rights in our Services or the content you access. You may not use content from our Services unless you obtain permission from its owner or are otherwise permitted by law. These terms do not grant you the right to use any branding or logos used in our Services. Don’t remove, obscure, or alter any legal notices displayed in or along with our Services. + + Our Services display some content that is not Google’s. This content is the sole responsibility of the entity that makes it available. We may review content to determine whether it is illegal or violates our policies, and we may remove or refuse to display content that we reasonably believe violates our policies or the law. But that does not necessarily mean that we review content, so please don’t assume that we do. + + In connection with your use of the Services, we may send you service announcements, administrative messages, and other information. You may opt out of some of those communications. + + Some of our Services are available on mobile devices. Do not use such Services in a way that distracts you and prevents you from obeying traffic or safety laws. + Your Google Account + + You may need a Google Account in order to use some of our Services. You may create your own Google Account, or your Google Account may be assigned to you by an administrator, such as your employer or educational institution. If you are using a Google Account assigned to you by an administrator, different or additional terms may apply and your administrator may be able to access or disable your account. + + To protect your Google Account, keep your password confidential. You are responsible for the activity that happens on or through your Google Account. Try not to reuse your Google Account password on third-party applications. If you learn of any unauthorized use of your password or Google Account, follow these instructions. + Privacy and Copyright Protection + + Google’s privacy policies explain how we treat your personal data and protect your privacy when you use our Services. By using our Services, you agree that Google can use such data in accordance with our privacy policies. + + We respond to notices of alleged copyright infringement and terminate accounts of repeat infringers according to the process set out in the U.S. Digital Millennium Copyright Act. + + We provide information to help copyright holders manage their intellectual property online. If you think somebody is violating your copyrights and want to notify us, you can find information about submitting notices and Google’s policy about responding to notices in our Help Center. + Your Content in our Services + + Some of our Services allow you to upload, submit, store, send or receive content. You retain ownership of any intellectual property rights that you hold in that content. In short, what belongs to you stays yours. + + When you upload, submit, store, send or receive content to or through our Services, you give Google (and those we work with) a worldwide license to use, host, store, reproduce, modify, create derivative works (such as those resulting from translations, adaptations or other changes we make so that your content works better with our Services), communicate, publish, publicly perform, publicly display and distribute such content. The rights you grant in this license are for the limited purpose of operating, promoting, and improving our Services, and to develop new ones. This license continues even if you stop using our Services (for example, for a business listing you have added to Google Maps). Some Services may offer you ways to access and remove content that has been provided to that Service. Also, in some of our Services, there are terms or settings that narrow the scope of our use of the content submitted in those Services. Make sure you have the necessary rights to grant us this license for any content that you submit to our Services. + + Our automated systems analyze your content (including emails) to provide you personally relevant product features, such as customized search results, tailored advertising, and spam and malware detection. This analysis occurs as the content is sent, received, and when it is stored. + + If you have a Google Account, we may display your Profile name, Profile photo, and actions you take on Google or on third-party applications connected to your Google Account (such as +1’s, reviews you write and comments you post) in our Services, including displaying in ads and other commercial contexts. We will respect the choices you make to limit sharing or visibility settings in your Google Account. For example, you can choose your settings so your name and photo do not appear in an ad. + + You can find more information about how Google uses and stores content in the privacy policy or additional terms for particular Services. If you submit feedback or suggestions about our Services, we may use your feedback or suggestions without obligation to you. + About Software in our Services + + When a Service requires or includes downloadable software, this software may update automatically on your device once a new version or feature is available. Some Services may let you adjust your automatic update settings. + + Google gives you a personal, worldwide, royalty-free, non-assignable and non-exclusive license to use the software provided to you by Google as part of the Services. This license is for the sole purpose of enabling you to use and enjoy the benefit of the Services as provided by Google, in the manner permitted by these terms. You may not copy, modify, distribute, sell, or lease any part of our Services or included software, nor may you reverse engineer or attempt to extract the source code of that software, unless laws prohibit those restrictions or you have our written permission. + + Open source software is important to us. Some software used in our Services may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms. + Modifying and Terminating our Services + + We are constantly changing and improving our Services. We may add or remove functionalities or features, and we may suspend or stop a Service altogether. + + You can stop using our Services at any time, although we’ll be sorry to see you go. Google may also stop providing Services to you, or add or create new limits to our Services at any time. + + We believe that you own your data and preserving your access to such data is important. If we discontinue a Service, where reasonably possible, we will give you reasonable advance notice and a chance to get information out of that Service. + Our Warranties and Disclaimers + + We provide our Services using a commercially reasonable level of skill and care and we hope that you will enjoy using them. But there are certain things that we don’t promise about our Services. + + Other than as expressly set out in these terms or additional terms, neither Google nor its suppliers or distributors make any specific promises about the Services. For example, we don’t make any commitments about the content within the Services, the specific functions of the Services, or their reliability, availability, or ability to meet your needs. We provide the Services “as is”. + + Some jurisdictions provide for certain warranties, like the implied warranty of merchantability, fitness for a particular purpose and non-infringement. To the extent permitted by law, we exclude all warranties. + Liability for our Services + + When permitted by law, Google, and Google’s suppliers and distributors, will not be responsible for lost profits, revenues, or data, financial losses or indirect, special, consequential, exemplary, or punitive damages. + + To the extent permitted by law, the total liability of Google, and its suppliers and distributors, for any claims under these terms, including for any implied warranties, is limited to the amount you paid us to use the Services (or, if we choose, to supplying you the Services again). + + In all cases, Google, and its suppliers and distributors, will not be liable for any loss or damage that is not reasonably foreseeable. + + We recognize that in some countries, you might have legal rights as a consumer. If you are using the Services for a personal purpose, then nothing in these terms or any additional terms limits any consumer legal rights which may not be waived by contract. + Business uses of our Services + + If you are using our Services on behalf of a business, that business accepts these terms. It will hold harmless and indemnify Google and its affiliates, officers, agents, and employees from any claim, suit or action arising from or related to the use of the Services or violation of these terms, including any liability or expense arising from claims, losses, damages, suits, judgments, litigation costs and attorneys’ fees. + About these Terms + + We may modify these terms or any additional terms that apply to a Service to, for example, reflect changes to the law or changes to our Services. You should look at the terms regularly. We’ll post notice of modifications to these terms on this page. We’ll post notice of modified additional terms in the applicable Service. Changes will not apply retroactively and will become effective no sooner than fourteen days after they are posted. However, changes addressing new functions for a Service or changes made for legal reasons will be effective immediately. If you do not agree to the modified terms for a Service, you should discontinue your use of that Service. + + If there is a conflict between these terms and the additional terms, the additional terms will control for that conflict. + + These terms control the relationship between Google and you. They do not create any third party beneficiary rights. + + If you do not comply with these terms, and we don’t take action right away, this doesn’t mean that we are giving up any rights that we may have (such as taking action in the future). + + If it turns out that a particular term is not enforceable, this will not affect any other terms. + + The courts in some countries will not apply California law to some types of disputes. If you reside in one of those countries, then where California law is excluded from applying, your country’s laws will apply to such disputes related to these terms. Otherwise, you agree that the laws of California, U.S.A., excluding California’s choice of law rules, will apply to any disputes arising out of or relating to these terms or the Services. Similarly, if the courts in your country will not permit you to consent to the jurisdiction and venue of the courts in Santa Clara County, California, U.S.A., then your local jurisdiction and venue will apply to such disputes related to these terms. Otherwise, all claims arising out of or relating to these terms or the services will be litigated exclusively in the federal or state courts of Santa Clara County, California, USA, and you and Google consent to personal jurisdiction in those courts. + + For information about how to contact Google, please visit our contact page. json: google-tos-2017.json - yml: google-tos-2017.yml + yaml: google-tos-2017.yml html: google-tos-2017.html - text: google-tos-2017.LICENSE + license: google-tos-2017.LICENSE - license_key: google-tos-2019 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-tos-2019 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Google Terms of Service + + Effective January 22, 2019 (view archived versions) + Welcome to Google! + + Thanks for using our products and services (“Services”). If you’re based in the European Economic Area or Switzerland, unless stated otherwise in any additional terms, the Services are provided by Google Ireland Limited (“Google”), a company incorporated and operating under the laws of Ireland (Registered Number: 368047), and located at Gordon House, Barrow Street, Dublin 4, Ireland. + + By using our Services, you are agreeing to these terms. Please read them carefully. + + Our Services are very diverse, so sometimes additional terms or product requirements (including age requirements) may apply. Additional terms will be available with the relevant Services, and those additional terms become part of your agreement with us if you use those Services. + Using our Services + + You must follow any policies made available to you within the Services. + + Don’t misuse our Services. For example, don’t interfere with our Services or try to access them using a method other than the interface and the instructions that we provide. You may use our Services only as permitted by law, including applicable export and re-export control laws and regulations. We may suspend or stop providing our Services to you if you do not comply with our terms or policies or if we are investigating suspected misconduct. + + Using our Services does not give you ownership of any intellectual property rights in our Services or the content you access. You may not use content from our Services unless you obtain permission from its owner or are otherwise permitted by law. These terms do not grant you the right to use any branding or logos used in our Services. Don’t remove, obscure, or alter any legal notices displayed in or along with our Services. + + Our Services display some content that is not Google’s. This content is the sole responsibility of the entity that makes it available. We may review content to determine whether it is illegal or violates our policies, and we may remove or refuse to display content that we reasonably believe violates our policies or the law. But that does not necessarily mean that we review content, so please don’t assume that we do. + + In connection with your use of the Services, we may send you service announcements, administrative messages, and other information. You may opt out of some of those communications. + + Some of our Services are available on mobile devices. Do not use such Services in a way that distracts you and prevents you from obeying traffic or safety laws. + Your Google Account + + You may need a Google Account in order to use some of our Services. You may create your own Google Account, or your Google Account may be assigned to you by an administrator, such as your employer or educational institution. If you are using a Google Account assigned to you by an administrator, different or additional terms may apply and your administrator may be able to access or disable your account. + + To protect your Google Account, keep your password confidential. You are responsible for the activity that happens on or through your Google Account. Try not to reuse your Google Account password on third-party applications. If you learn of any unauthorized use of your password or Google Account, follow these instructions. + Privacy and Copyright Protection + + Google’s privacy policies explain how we treat your personal data and protect your privacy when you use our Services. + + We respond to notices of alleged copyright infringement and terminate accounts of repeat infringers according to the process set out in the U.S. Digital Millennium Copyright Act. + + We provide information to help copyright holders manage their intellectual property online. If you think somebody is violating your copyrights and want to notify us, you can find information about submitting notices and Google’s policy about responding to notices in our Help Center. + Your Content in our Services + + Some of our Services allow you to upload, submit, store, send or receive content. You retain ownership of any intellectual property rights that you hold in that content. In short, what belongs to you stays yours. + + When you upload, submit, store, send or receive content to or through our Services, you give Google (and those we work with) a worldwide license to use, host, store, reproduce, modify, create derivative works (such as those resulting from translations, adaptations or other changes we make so that your content works better with our Services), communicate, publish, publicly perform, publicly display and distribute such content. The rights you grant in this license are for the limited purpose of operating, promoting, and improving our Services, and to develop new ones. This license continues even if you stop using our Services (for example, for a business listing you have added to Google Maps). Some Services may offer you ways to access and remove content that has been provided to that Service. Also, in some of our Services, there are terms or settings that narrow the scope of our use of the content submitted in those Services. Make sure you have the necessary rights to grant us this license for any content that you submit to our Services. + + Our automated systems analyze your content (including emails) to provide you personally relevant product features, such as customized search results, tailored advertising, and spam and malware detection. This analysis occurs as the content is sent, received, and when it is stored. + + If you have a Google Account, we may display your Profile name, Profile photo, and actions you take on Google or on third-party applications connected to your Google Account (such as +1’s, reviews you write and comments you post) in our Services, including displaying in ads and other commercial contexts. We will respect the choices you make to limit sharing or visibility settings in your Google Account. For example, you can choose your settings so your name and photo do not appear in an ad. + + You can find more information about how Google uses and stores content in the privacy policy or additional terms for particular Services. If you submit feedback or suggestions about our Services, we may use your feedback or suggestions without obligation to you. + About Software in our Services + + When a Service requires or includes downloadable software, this software may update automatically on your device once a new version or feature is available. Some Services may let you adjust your automatic update settings. + + Google gives you a personal, worldwide, royalty-free, non-assignable and non-exclusive license to use the software provided to you by Google as part of the Services. This license is for the sole purpose of enabling you to use and enjoy the benefit of the Services as provided by Google, in the manner permitted by these terms. You may not copy, modify, distribute, sell, or lease any part of our Services or included software, nor may you reverse engineer or attempt to extract the source code of that software, unless laws prohibit those restrictions or you have our written permission. + + Open source software is important to us. Some software used in our Services may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms. + Modifying and Terminating our Services + + We are constantly changing and improving our Services. We may add or remove functionalities or features, and we may suspend or stop a Service altogether. + + You can stop using our Services at any time, although we’ll be sorry to see you go. Google may also stop providing Services to you, or add or create new limits to our Services at any time. + + We believe that you own your data and preserving your access to such data is important. If we discontinue a Service, where reasonably possible, we will give you reasonable advance notice and a chance to get information out of that Service. + Our Warranties and Disclaimers + + We provide our Services using a commercially reasonable level of skill and care and we hope that you will enjoy using them. But there are certain things that we don’t promise about our Services. + + Other than as expressly set out in these terms or additional terms, neither Google nor its suppliers or distributors make any specific promises about the Services. For example, we don’t make any commitments about the content within the Services, the specific functions of the Services, or their reliability, availability, or ability to meet your needs. We provide the Services “as is”. + + Some jurisdictions provide for certain warranties, like the implied warranty of merchantability, fitness for a particular purpose and non-infringement. To the extent permitted by law, we exclude all warranties. + Liability for our Services + + When permitted by law, Google, and Google’s suppliers and distributors, will not be responsible for lost profits, revenues, or data, financial losses or indirect, special, consequential, exemplary, or punitive damages. + + To the extent permitted by law, the total liability of Google, and its suppliers and distributors, for any claims under these terms, including for any implied warranties, is limited to the amount you paid us to use the Services (or, if we choose, to supplying you the Services again). + + In all cases, Google, and its suppliers and distributors, will not be liable for any loss or damage that is not reasonably foreseeable. + + We recognize that in some countries, you might have legal rights as a consumer. If you are using the Services for a personal purpose, then nothing in these terms or any additional terms limits any consumer legal rights which may not be waived by contract. + Business uses of our Services + + If you are using our Services on behalf of a business, that business accepts these terms. It will hold harmless and indemnify Google and its affiliates, officers, agents, and employees from any claim, suit or action arising from or related to the use of the Services or violation of these terms, including any liability or expense arising from claims, losses, damages, suits, judgments, litigation costs and attorneys’ fees. + About these Terms + + We may modify these terms or any additional terms that apply to a Service to, for example, reflect changes to the law or changes to our Services. You should look at the terms regularly. We’ll post notice of modifications to these terms on this page. We’ll post notice of modified additional terms in the applicable Service. Changes will not apply retroactively and will become effective no sooner than fourteen days after they are posted. However, changes addressing new functions for a Service or changes made for legal reasons will be effective immediately. If you do not agree to the modified terms for a Service, you should discontinue your use of that Service. + + If there is a conflict between these terms and the additional terms, the additional terms will control for that conflict. + + These terms control the relationship between Google and you. They do not create any third party beneficiary rights. + + If you do not comply with these terms, and we don’t take action right away, this doesn’t mean that we are giving up any rights that we may have (such as taking action in the future). + + If it turns out that a particular term is not enforceable, this will not affect any other terms. + Governing Law and Courts + + If you are a consumer living in the European Economic Area or Switzerland: the laws and courts of your country of residence will apply to any dispute arising out of or relating to these terms. Disputes may be submitted for online resolution to the European Commission Online Dispute Resolution platform, but Google does not commit to and is not required to settle disputes before any alternative dispute resolution entity. + + If you are a business user in the European Economic Area or Switzerland: these terms are governed by English law and you and Google submit to the exclusive jurisdiction of the English courts in relation to any dispute arising out of or relating to these terms, but Google will still be allowed to apply for injunctive remedies (or other equivalent types of urgent legal remedy) in any jurisdiction. + + For information about how to contact Google, please visit our contact page. json: google-tos-2019.json - yml: google-tos-2019.yml + yaml: google-tos-2019.yml html: google-tos-2019.html - text: google-tos-2019.LICENSE + license: google-tos-2019.LICENSE - license_key: google-tos-2020 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-google-tos-2020 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Effective March 31, 2020 | Archived versions | Download PDF + + What’s covered in these terms + We know it’s tempting to skip these Terms of Service, but it’s important to establish what you can expect from us as you use Google services, and what we expect from you. + + These Terms of Service reflect the way Google’s business works, the laws that apply to our company, and certain things we’ve always believed to be true. As a result, these Terms of Service help define Google’s relationship with you as you interact with our services. For example, these terms include the following topic headings: + + What you can expect from us, which describes how we provide and develop our services + What we expect from you, which establishes certain rules for using our services + Content in Google services, which describes the intellectual property rights to the content you find in our services — whether that content belongs to you, Google, or others + In case of problems or disagreements, which describes other legal rights you have, and what to expect in case someone violates these terms + + Understanding these terms is important because, to use our services, you must accept these terms. + + Besides these terms, we also publish a Privacy Policy. Although it’s not part of these terms, we encourage you to read it to better understand how you can update, manage, export, and delete your information. + Service provider + + In the European Economic Area (EEA) and Switzerland, Google services are provided by, and you’re contracting with: + + Google Ireland Limited + incorporated and operating under the laws of Ireland (Registered Number: 368047) + + Gordon House, Barrow Street + Dublin 4 + Ireland + Age requirements + + If you’re under the age required to manage your own Google Account, you must have your parent or legal guardian’s permission to use a Google Account. Please have your parent or legal guardian read these terms with you. + + If you’re a parent or legal guardian, and you allow your child to use the services, then these terms apply to you and you’re responsible for your child’s activity on the services. + + Some Google services have additional age requirements as described in their service-specific additional terms and policies. + Contents + Introduction + Your relationship with Google + Using Google services + Content in Google services + Software in Google services + In case of problems or disagreements + About these terms + Your relationship with Google + + These terms help define the relationship between you and Google. Broadly speaking, we give you permission to use our services if you agree to follow these terms, which reflect how Google’s business works and how we earn money. When we speak of “Google,” “we,” “us,” and “our,” we mean Google Ireland Limited and its affiliates. + What you can expect from us + Provide a broad range of useful services + We provide a broad range of services that are subject to these terms, including: + + apps and sites (like Search and Maps) + platforms (like Google Play) + integrated services (like Maps embedded in other companies’ apps or sites) + devices (like Google Home) + + Our services are designed to work together, making it easier for you to move from one activity to the next. For example, Maps can remind you to leave for an appointment that appears in your Google Calendar. + Improve Google services + + We’re constantly developing new technologies and features to improve our services. For example, we invest in artificial intelligence that uses machine learning to detect and block spam and malware, and to provide you with innovative features, like simultaneous translations. As part of this continual improvement, we sometimes add or remove features and functionalities, increase or decrease limits to our services, and start offering new services or stop offering old ones. + + We maintain a rigorous product research program, so before we change or stop offering a service, we carefully consider your interests as a user, your reasonable expectations, and the potential impact on you and others. We only change or stop offering services for valid reasons, such as to improve performance or security, to comply with law, to prevent illegal activities or abuse, to reflect technical developments, or because a feature or an entire service is no longer popular enough or economical to offer. + + If we make material changes that negatively impact your use of our services or if we stop offering a service, we’ll provide you with reasonable advance notice and an opportunity to export your content from your Google Account using Google Takeout, except in urgent situations such as preventing abuse, responding to legal requirements, or addressing security and operability issues. + What we expect from you + Follow these terms and service-specific additional terms + The permission we give you to use our services continues as long as you meet your responsibilities in: + + these terms + service-specific additional terms, which could, for example, include things like additional age requirements + + We also make various policies, help centers, and other resources available to you to answer common questions and to set expectations about using our services. These resources include our Privacy Policy, Copyright Help Center, Safety Center, and other pages accessible from our policies site. + + Although we give you permission to use our services, we retain any intellectual property rights we have in the services. + Respect others + Many of our services allow you to interact with others. We want to maintain a respectful environment for everyone, which means you must follow these basic rules of conduct: + + comply with applicable laws, including export control, sanctions, and human trafficking laws + respect the rights of others, including privacy and intellectual property rights + don’t abuse or harm others or yourself (or threaten or encourage such abuse or harm) — for example, by misleading, defrauding, defaming, bullying, harassing, or stalking others + don’t abuse, harm, interfere with, or disrupt the services + + Our service-specific additional terms and policies provide additional details about appropriate conduct that everyone using those services must follow. If you find that others aren’t following these rules, many of our services allow you to report abuse. If we act on a report of abuse, we also provide a fair process as described in the Taking action in case of problems section. + Permission to use your content + + Some of our services are designed to let you upload, submit, store, send, receive, or share your content. You have no obligation to provide any content to our services and you’re free to choose the content that you want to provide. If you choose to upload or share content, please make sure you have the necessary rights to do so and that the content is lawful. + License + + Your content remains yours, which means that you retain any intellectual property rights that you have in your content. For example, you have intellectual property rights in the creative content you make, such as reviews you write. Or you may have the right to share someone else’s creative content if they’ve given you their permission. + + We need your permission if your intellectual property rights restrict our use of your content. You provide Google with that permission through this license. + What’s covered + + This license covers your content if that content is protected by intellectual property rights. + What’s not covered + + This license doesn’t affect your data protection rights — it’s only about your intellectual property rights + This license doesn’t cover these types of content: + publicly-available factual information that you provide, such as corrections to the address of a local business. That information doesn’t require a license because it’s considered common knowledge that everyone’s free to use. + feedback that you offer, such as suggestions to improve our services. Feedback is covered in the Service-related communications section below. + + Scope + This license is: + + worldwide, which means it’s valid anywhere in the world + non-exclusive, which means you can license your content to others + royalty-free, which means there are no fees for this license + + Rights + + This license allows Google to: + + host, reproduce, distribute, communicate, and use your content — for example, to save your content on our systems and make it accessible from anywhere you go + publish, publicly perform, or publicly display your content, if you’ve made it visible to others + modify your content, such as reformatting or translating it + sublicense these rights to: + other users to allow the services to work as designed, such as enabling you to share photos with people you choose + our contractors who’ve signed agreements with us that are consistent with these terms, only for the limited purposes described in the Purpose section below + + Purpose + + This license is for the limited purpose of: + + operating and improving the services, which means allowing the services to work as designed and creating new features and functionalities. This includes using automated systems and algorithms to analyze your content: + for spam, malware, and illegal content + to recognize patterns in data, such as determining when to suggest a new album in Google Photos to keep related photos together + to customize our services for you, such as providing recommendations and personalized search results, content, and ads (which you can change or turn off in Ads Settings) + This analysis occurs as the content is sent, received, and when it is stored. + using content you’ve shared publicly to promote the services. For example, to promote a Google app, we might quote a review you wrote. Or to promote Google Play, we might show a screenshot of the app you offer in the Play Store. + developing new technologies and services for Google consistent with these terms + + Duration + + This license lasts for as long as your content is protected by intellectual property rights. + + If you remove from our services any content that’s covered by this license, then our systems will stop making that content publicly available in a reasonable amount of time. There are two exceptions: + + If you already shared your content with others before removing it. For example, if you shared a photo with a friend who then made a copy of it, or shared it again, then that photo may continue to appear in your friend’s Google Account even after you remove it from your Google Account. + If you make your content available through other companies’ services, it’s possible that search engines, including Google Search, will continue to find and display your content as part of their search results. + + Using Google services + Your Google Account + + If you meet these age requirements you can create a Google Account for your convenience. Some services require that you have a Google Account in order to work — for example, to use Gmail, you need a Google Account so that you have a place to send and receive your email. + + You’re responsible for what you do with your Google Account, including taking reasonable steps to keep your Google Account secure, and we encourage you to regularly use the Security Checkup. + Using Google services on behalf of an organization or business + Many organizations, such as businesses, non-profits, and schools, take advantage of our services. To use our services on behalf of an organization: + + an authorized representative of that organization must agree to these terms + your organization’s administrator may assign a Google Account to you. That administrator might require you to follow additional rules and may be able to access or disable your Google Account. + + If you’re based in the European Union, then these terms don’t affect the rights you may have as a business user of online intermediation services — including online platforms such as Google Play — under the EU Platform-to-Business Regulation. + Service-related communications + + To provide you with our services, we sometimes send you service announcements and other information. To learn more about how we communicate with you, see Google’s Privacy Policy. + + If you choose to give us feedback, such as suggestions to improve our services, we may act on your feedback without obligation to you. + Content in Google services + Your content + + Some of our services give you the opportunity to make your content publicly available — for example, you might post a product or restaurant review that you wrote, or you might upload a blog post that you created. + + See the Permission to use your content section for more about your rights in your content, and how your content is used in our services + See the Removing your content section to learn why and how we might remove user-generated content from our services + + If you think someone is infringing your intellectual property rights, you can send us notice of the infringement and we’ll take appropriate action. For example, we suspend or close the Google Accounts of repeat copyright infringers as described in our Copyright Help Center. + Google content + + Some of our services include content that belongs to Google — for example, many of the visual illustrations you see in Google Maps. You may use Google’s content as allowed by these terms and any service-specific additional terms, but we retain any intellectual property rights that we have in our content. Don’t remove, obscure, or alter any of our branding, logos, or legal notices. If you want to use our branding or logos, please see the Google Brand Permissions page. + Other content + + Finally, some of our services give you access to content that belongs to other people or organizations — for example, a store owner’s description of their own business, or a newspaper article displayed in Google News. You may not use this content without that person or organization’s permission, or as otherwise allowed by law. The views expressed in other people or organizations’ content are theirs, and don’t necessarily reflect Google’s views. + Software in Google services + + Some of our services include downloadable software. We give you permission to use that software as part of the services. + The license we give you is: + + worldwide, which means it’s valid anywhere in the world + non-exclusive, which means that we can license the software to others + royalty-free, which means there are no fees for this license + personal, which means it doesn’t extend to anyone else + non-assignable, which means you’re not allowed to assign the license to anyone else + + Some of our services include software that’s offered under open source license terms that we make available to you. Sometimes there are provisions in the open source license that explicitly override parts of these terms, so please be sure to read those licenses. + + You may not copy, modify, distribute, sell, or lease any part of our services or software. Also, you may not reverse engineer or attempt to extract any of our source code unless you have our written permission or applicable law lets you do so. + + When a service requires or includes downloadable software, that software sometimes updates automatically on your device once a new version or feature is available. Some services let you adjust your automatic update settings. + In case of problems or disagreements + + By law, you have the right to (1) a certain quality of service, and (2) ways to fix problems if things go wrong. These terms don’t limit or take away any of those rights. For example, if you’re a consumer, then you continue to enjoy all legal rights granted to consumers under applicable law. + Warranty + + We provide our services using reasonable skill and care. If we don’t meet the quality level described in this warranty, you agree to tell us and we’ll work with you to try to resolve the issue. + Disclaimers + + The only commitments we make about our services (including the content in the services, the specific functions of our services, or their reliability, availability, or ability to meet your needs) are (1) described in the Warranty section, (2) stated in the service-specific additional terms, or (3) provided under applicable laws. We don’t make any other commitments about our services. + Liabilities + For all users + + These terms only limit our responsibilities as allowed by applicable law. Specifically, these terms don’t limit Google’s liability for death or personal injury, fraud, fraudulent misrepresentation, gross negligence, or willful misconduct. + + Other than the rights and responsibilities described in this section (In case of problems or disagreements), Google won’t be responsible for any other losses, unless they’re caused by our breach of these terms or service-specific additional terms. + For business users and organizations only + + If you’re a business user or organization, then to the extent allowed by applicable law: + + You’ll indemnify Google and its directors, officers, employees, and contractors for any third-party legal proceedings (including actions by government authorities) arising out of or relating to your unlawful use of the services or violation of these terms or service-specific additional terms. This indemnity covers any liability or expense arising from claims, losses, damages, judgments, fines, litigation costs, and legal fees. + Google won’t be responsible for the following liabilities: + loss of profits, revenues, business opportunities, goodwill, or anticipated savings + indirect or consequential loss + punitive damages + Google’s total liability arising out of or relating to these terms is limited to the greater of (1) €500 or (2) 125% of the fees that you paid to use the relevant services in the 12 months before the breach + + If you’re legally exempt from certain responsibilities, including indemnification, then those responsibilities don’t apply to you under these terms. For example, the United Nations enjoys certain immunities from legal obligations and these terms don’t override those immunities. + Taking action in case of problems + + Before taking action as described below, we’ll provide you with advance notice when reasonably possible, describe the reason for our action, and give you an opportunity to fix the problem, unless we reasonably believe that doing so would: + + cause harm or liability to a user, third party, or Google + violate the law or a legal enforcement authority’s order + compromise an investigation + compromise the operation, integrity, or security of our services + + Removing your content + + If we reasonably believe that any of your content (1) breaches these terms, service-specific additional terms or policies, (2) violates applicable law, or (3) could harm our users, third parties, or Google, then we reserve the right to take down some or all of that content in accordance with applicable law. Examples include child pornography, content that facilitates human trafficking or harassment, and content that infringes someone else’s intellectual property rights. + Suspending or terminating your access to Google services + + Google reserves the right to suspend or terminate your access to the services or delete your Google Account if any of these things happen: + + you materially or repeatedly breach these terms, service-specific additional terms or policies + we’re required to do so to comply with a legal requirement or a court order + we reasonably believe that your conduct causes harm or liability to a user, third party, or Google — for example, by hacking, phishing, harassing, spamming, misleading others, or scraping content that doesn’t belong to you + + If you believe your Google Account has been suspended or terminated in error, you can appeal. + + Of course, you’re always free to stop using our services at any time. If you do stop using a service, we’d appreciate knowing why so that we can continue improving our services. + Handling requests for your data + + Respect for the privacy and security of your data underpins our approach to responding to data disclosure requests. When we receive data disclosure requests, our team reviews them to make sure they satisfy legal requirements and Google’s data disclosure policies. Google Ireland Limited accesses and discloses data, including communications, in accordance with the laws of Ireland, and EU law applicable in Ireland. For more information about the data disclosure requests that Google receives worldwide, and how we respond to such requests, see our Transparency Report and Privacy Policy. + Settling disputes, governing law, and courts + + For information about how to contact Google, please visit our contact page. + + If you’re a resident of, or an organization based in, the European Economic Area (EEA) or Switzerland, these terms and your relationship with Google under these terms and service-specific additional terms, are governed by the laws of your country of residence, and you can file legal disputes in your local courts. + + If you’re a consumer living in the EEA, you may also file disputes regarding online purchases using the European Commission’s Online Dispute Resolution platform, which we accept if required by law. + About these terms + + By law, you have certain rights that can’t be limited by a contract like these terms of service. These terms are in no way intended to restrict those rights. + + These terms describe the relationship between you and Google. They don’t create any legal rights for other people or organizations, even if others benefit from that relationship under these terms. + + We want to make these terms easy to understand, so we’ve used examples from our services. But not all services mentioned may be available in your country. + + If it turns out that a particular term is not valid or enforceable, this will not affect any other terms. + + If you don’t follow these terms or the service-specific additional terms, and we don’t take action right away, that doesn’t mean we’re giving up any rights that we may have, such as taking action in the future. + + We may update these terms and service-specific additional terms (1) to reflect changes in our services or how we do business — for example, when we add new services, features, technologies, pricing, or benefits (or remove old ones), (2) for legal, regulatory, or security reasons, or (3) to prevent abuse or harm. + + If we materially change these terms or service-specific additional terms, we’ll provide you with reasonable advance notice and the opportunity to review the changes, except (1) when we launch a new service or feature, or (2) in urgent situations, such as preventing ongoing abuse or responding to legal requirements. If you don’t agree to the new terms, you should remove your content and stop using the services. You can also end your relationship with us at any time by closing your Google Account. json: google-tos-2020.json - yml: google-tos-2020.yml + yaml: google-tos-2020.yml html: google-tos-2020.html - text: google-tos-2020.LICENSE + license: google-tos-2020.LICENSE - license_key: gpl-1.0 + category: Copyleft spdx_license_key: GPL-1.0-only other_spdx_license_keys: - GPL-1.0 is_exception: no is_deprecated: no - category: Copyleft + text: | + GNU GENERAL PUBLIC LICENSE + Version 1, February 1989 + + Copyright (C) 1989 Free Software Foundation, Inc. + 51 Franklin St, 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 license agreements of most software companies try to keep users + at the mercy of those companies. By contrast, our 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. The + General Public License applies to the Free Software Foundation's + software and to any other program whose authors commit to using it. + You can use it for your programs, too. + + When we speak of free software, we are referring to freedom, not + price. Specifically, the General Public License is designed to make + sure that you have the freedom to give away or sell copies of free + software, 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 a 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 tell them 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. + + 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 Agreement 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 work containing the + Program or a portion of it, either verbatim or with modifications. Each + licensee is addressed as "you". + + 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 + General Public License and to the absence of any warranty; and give any + other recipients of the Program a copy of this General Public License + along with the Program. You may charge a fee for the physical act of + transferring a copy. + + 2. You may modify your copy or copies of the Program or any portion of + it, and copy and distribute such modifications under the terms of Paragraph + 1 above, provided that you also do the following: + + a) cause the modified files to carry prominent notices stating that + you changed the files and the date of any change; and + + b) cause the whole of any work that you distribute or publish, that + in whole or in part contains the Program or any part thereof, either + with or without modifications, to be licensed at no charge to all + third parties under the terms of this General Public License (except + that you may choose to grant warranty protection to some or all + third parties, at your option). + + c) If the modified program normally reads commands interactively when + run, you must cause it, when started running for such interactive use + in the simplest and most usual 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 General + Public License. + + d) 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. + + Mere aggregation of another independent work with the Program (or its + derivative) on a volume of a storage or distribution medium does not bring + the other work under the scope of these terms. + + + 3. You may copy and distribute the Program (or a portion or derivative of + it, under Paragraph 2) in object code or executable form under the terms of + Paragraphs 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 + Paragraphs 1 and 2 above; or, + + b) accompany it with a written offer, valid for at least three + years, to give any third party free (except for a nominal charge + for the cost of distribution) a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of + Paragraphs 1 and 2 above; or, + + c) accompany it with the information you received as to where the + corresponding source code may be obtained. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form alone.) + + Source code for a work means the preferred form of the work for making + modifications to it. For an executable file, complete source code means + all the source code for all modules it contains; but, as a special + exception, it need not include source code for modules which are standard + libraries that accompany the operating system on which the executable + file runs, or for standard header files or definitions files that + accompany that operating system. + + 4. You may not copy, modify, sublicense, distribute or transfer the + Program except as expressly provided under this General Public License. + Any attempt otherwise to copy, modify, sublicense, distribute or transfer + the Program is void, and will automatically terminate your rights to use + the Program under this License. However, parties who have received + copies, or rights to use copies, from you under this General Public + License will not have their licenses terminated so long as such parties + remain in full compliance. + + 5. By copying, distributing or modifying 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. + + 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. + + + 7. 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 the 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 + the license, you may choose any version ever published by the Free Software + Foundation. + + 8. 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 + + 9. 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. + + 10. 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. + + END OF TERMS AND CONDITIONS + + + Appendix: 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 humanity, 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 convey + the exclusion of warranty; and each file should have at least the + "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) 19yy + + 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 1, 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, 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. + + If the program is interactive, make it output a short notice like this + when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19xx name of author + Gnomovision 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, the + commands you use may be called something other than `show w' and `show + c'; they could even be mouse-clicks or menu items--whatever suits your + program. + + You should also get your employer (if you work as a programmer) or your + school, if any, to sign a "copyright disclaimer" for the program, if + necessary. Here a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + program `Gnomovision' (a program to direct compilers to make passes + at assemblers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + + That's all there is to it! json: gpl-1.0.json - yml: gpl-1.0.yml + yaml: gpl-1.0.yml html: gpl-1.0.html - text: gpl-1.0.LICENSE + license: gpl-1.0.LICENSE - license_key: gpl-1.0-plus + category: Copyleft spdx_license_key: GPL-1.0-or-later other_spdx_license_keys: - GPL-1.0+ - LicenseRef-GPL is_exception: no is_deprecated: no - category: Copyleft + text: | + 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 1, 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, write to the Free Software Foundation, Inc., 675 Mass Ave, + Cambridge, MA 02139, USA. + + + GNU GENERAL PUBLIC LICENSE + Version 1, February 1989 + + Copyright (C) 1989 Free Software Foundation, Inc. + 51 Franklin St, 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 license agreements of most software companies try to keep users + at the mercy of those companies. By contrast, our 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. The + General Public License applies to the Free Software Foundation's + software and to any other program whose authors commit to using it. + You can use it for your programs, too. + + When we speak of free software, we are referring to freedom, not + price. Specifically, the General Public License is designed to make + sure that you have the freedom to give away or sell copies of free + software, 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 a 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 tell them 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. + + 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 Agreement 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 work containing the + Program or a portion of it, either verbatim or with modifications. Each + licensee is addressed as "you". + + 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 + General Public License and to the absence of any warranty; and give any + other recipients of the Program a copy of this General Public License + along with the Program. You may charge a fee for the physical act of + transferring a copy. + + 2. You may modify your copy or copies of the Program or any portion of + it, and copy and distribute such modifications under the terms of Paragraph + 1 above, provided that you also do the following: + + a) cause the modified files to carry prominent notices stating that + you changed the files and the date of any change; and + + b) cause the whole of any work that you distribute or publish, that + in whole or in part contains the Program or any part thereof, either + with or without modifications, to be licensed at no charge to all + third parties under the terms of this General Public License (except + that you may choose to grant warranty protection to some or all + third parties, at your option). + + c) If the modified program normally reads commands interactively when + run, you must cause it, when started running for such interactive use + in the simplest and most usual 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 General + Public License. + + d) 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. + + Mere aggregation of another independent work with the Program (or its + derivative) on a volume of a storage or distribution medium does not bring + the other work under the scope of these terms. + + + 3. You may copy and distribute the Program (or a portion or derivative of + it, under Paragraph 2) in object code or executable form under the terms of + Paragraphs 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 + Paragraphs 1 and 2 above; or, + + b) accompany it with a written offer, valid for at least three + years, to give any third party free (except for a nominal charge + for the cost of distribution) a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of + Paragraphs 1 and 2 above; or, + + c) accompany it with the information you received as to where the + corresponding source code may be obtained. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form alone.) + + Source code for a work means the preferred form of the work for making + modifications to it. For an executable file, complete source code means + all the source code for all modules it contains; but, as a special + exception, it need not include source code for modules which are standard + libraries that accompany the operating system on which the executable + file runs, or for standard header files or definitions files that + accompany that operating system. + + 4. You may not copy, modify, sublicense, distribute or transfer the + Program except as expressly provided under this General Public License. + Any attempt otherwise to copy, modify, sublicense, distribute or transfer + the Program is void, and will automatically terminate your rights to use + the Program under this License. However, parties who have received + copies, or rights to use copies, from you under this General Public + License will not have their licenses terminated so long as such parties + remain in full compliance. + + 5. By copying, distributing or modifying 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. + + 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. + + + 7. 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 the 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 + the license, you may choose any version ever published by the Free Software + Foundation. + + 8. 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 + + 9. 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. + + 10. 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. + + END OF TERMS AND CONDITIONS + + + Appendix: 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 humanity, 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 convey + the exclusion of warranty; and each file should have at least the + "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) 19yy + + 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 1, 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, 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. + + If the program is interactive, make it output a short notice like this + when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19xx name of author + Gnomovision 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, the + commands you use may be called something other than `show w' and `show + c'; they could even be mouse-clicks or menu items--whatever suits your + program. + + You should also get your employer (if you work as a programmer) or your + school, if any, to sign a "copyright disclaimer" for the program, if + necessary. Here a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + program `Gnomovision' (a program to direct compilers to make passes + at assemblers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + + That's all there is to it! json: gpl-1.0-plus.json - yml: gpl-1.0-plus.yml + yaml: gpl-1.0-plus.yml html: gpl-1.0-plus.html - text: gpl-1.0-plus.LICENSE + license: gpl-1.0-plus.LICENSE - license_key: gpl-2.0 + category: Copyleft spdx_license_key: GPL-2.0-only other_spdx_license_keys: - GPL-2.0 @@ -7247,2717 +74682,21542 @@ - LicenseRef-GPL-2.0 is_exception: no is_deprecated: no - category: Copyleft + text: | + 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. + + 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 + convey the exclusion of warranty; and each file should have at least + the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This 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 2 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, 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. + + If the program is interactive, make it output a short notice like this + when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision 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, the commands you use may + be called something other than `show w' and `show c'; they could even be + mouse-clicks or menu items--whatever suits your program. + + You should also get your employer (if you work as a programmer) or your + school, if any, to sign a "copyright disclaimer" for the program, if + necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + + This 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. json: gpl-2.0.json - yml: gpl-2.0.yml + yaml: gpl-2.0.yml html: gpl-2.0.html - text: gpl-2.0.LICENSE + license: gpl-2.0.LICENSE - license_key: gpl-2.0-adaptec + category: Copyleft spdx_license_key: LicenseRef-scancode-gpl-2.0-adaptec other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + You are permitted to redistribute, use and modify this README file in whole + or in part in conjunction with redistribution of software governed by the + General Public License, provided that the following conditions are met: + 1. Redistributions of README file must retain the above copyright + notice, this list of conditions, and the following disclaimer, + without modification. + 2. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + 3. Modifications or new contributions must be attributed in a copyright + notice identifying the author ("Contributor") and added below the + original copyright notice. The copyright notice is for purposes of + identifying contributors and should not be deemed as permission to alter + the permissions given by Adaptec. + + THIS README FILE IS PROVIDED BY ADAPTEC AND CONTRIBUTORS ``AS IS'' AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, ANY + WARRANTIES OF NON-INFRINGEMENT OR THE IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL + ADAPTEC 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 README + FILE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. json: gpl-2.0-adaptec.json - yml: gpl-2.0-adaptec.yml + yaml: gpl-2.0-adaptec.yml html: gpl-2.0-adaptec.html - text: gpl-2.0-adaptec.LICENSE + license: gpl-2.0-adaptec.LICENSE - license_key: gpl-2.0-autoconf + category: Copyleft Limited spdx_license_key: GPL-2.0-with-autoconf-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This library 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 2, 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 + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to the + Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. + + As a special exception to the GNU General Public License, if you + distribute this file as part of a program that contains a + configuration script generated by Autoconf, you may include it under + the same distribution terms that you use for the rest of that program. json: gpl-2.0-autoconf.json - yml: gpl-2.0-autoconf.yml + yaml: gpl-2.0-autoconf.yml html: gpl-2.0-autoconf.html - text: gpl-2.0-autoconf.LICENSE + license: gpl-2.0-autoconf.LICENSE - license_key: gpl-2.0-autoopts + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + Automated Options is free software. + You may redistribute it and/or modify it under the terms of the + GNU General Public License, as published by the Free Software + Foundation; either version 2, or (at your option) any later version. + + Automated Options 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 Automated Options. See the file "COPYING". If not, + write to: The Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. + + As a special exception, Bruce Korb gives permission for additional + uses of the text contained in his release of AutoOpts. + + The exception is that, if you link the AutoOpts library with other + files to produce an executable, this does not by itself cause the + resulting executable to be covered by the GNU General Public License. + Your use of that executable is in no way restricted on account of + linking the AutoOpts library code into it. + + This exception does not however invalidate any other reasons why + the executable file might be covered by the GNU General Public License. + + This exception applies only to the code released by Bruce Korb under + the name AutoOpts. If you copy code from other sources under the + General Public License into a copy of AutoOpts, as the General Public + License permits, the exception does not apply to the code that you add + in this way. To avoid misleading anyone as to the status of such + modified files, you must delete this exception notice from them. + + If you write modifications of your own for AutoOpts, it is your choice + whether to permit this exception to apply to your modifications. + If you do not wish that, delete this exception notice. json: gpl-2.0-autoopts.json - yml: gpl-2.0-autoopts.yml + yaml: gpl-2.0-autoopts.yml html: gpl-2.0-autoopts.html - text: gpl-2.0-autoopts.LICENSE + license: gpl-2.0-autoopts.LICENSE - license_key: gpl-2.0-bison + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This library 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 2, 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 + General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free + Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. + + As a special exception, when this file is copied by Bison into a Bison + output file, you may use that output file without restriction. This + special exception was added by the Free Software Foundation in version + 1.24 of Bison. json: gpl-2.0-bison.json - yml: gpl-2.0-bison.yml + yaml: gpl-2.0-bison.yml html: gpl-2.0-bison.html - text: gpl-2.0-bison.LICENSE + license: gpl-2.0-bison.LICENSE - license_key: gpl-2.0-bison-2.2 + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "This program is free software; you can redistribute it and/or modify it\nunder the\ + \ terms of the GNU General Public License as published by the\nFree Software Foundation;\ + \ either version 2, or (at your option) any\nlater version.\n\nThis program is distributed\ + \ in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied\ + \ warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral\ + \ Public License for more details.\n\nYou should have received a copy of the GNU General\ + \ Public License along with this program; if not, write to the \nFree Software Foundation,\ + \ Inc., \n51 Franklin Street, Fifth Floor,\nBoston, MA 02110-1301, USA.\n\nAs a special\ + \ exception, you may create a larger work that contains part\nor all of the Bison parser\ + \ skeleton and distribute that work under terms\nof your choice, so long as that work isn't\ + \ itself a parser generator\nusing the skeleton or a modified version thereof as a parser\ + \ skeleton.\nAlternatively, if you modify or redistribute the parser skeleton itself,\n\ + you may (at your option) remove this special exception, which will cause\nthe skeleton and\ + \ the resulting Bison output files to be licensed under\nthe GNU General Public License\ + \ without this special exception.\n\nThis special exception was added by the Free Software\ + \ Foundation in\nversion 2.2 of Bison." json: gpl-2.0-bison-2.2.json - yml: gpl-2.0-bison-2.2.yml + yaml: gpl-2.0-bison-2.2.yml html: gpl-2.0-bison-2.2.html - text: gpl-2.0-bison-2.2.LICENSE + license: gpl-2.0-bison-2.2.LICENSE - license_key: gpl-2.0-broadcom-linking + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + Unless you and Broadcom execute a separate written software license + agreement governing use of this software, this software is licensed to + you under the terms of the GNU General Public License version 2 (the + "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, with + the following added to such license: + + As a special exception, the copyright holders of this software give you + permission to link this software with independent modules, and to copy + and distribute the resulting executable under terms of your choice, + provided that you also meet, for each linked independent module, the + terms and conditions of the license of that module. + + An independent module is a module which is not derived from this + software. The special exception does not apply to any modifications of + the software. + + Not withstanding the above, under no circumstances may you combine this + software in any way with any other Broadcom software provided under a + license other than the GPL, without Broadcom's express prior written + consent. json: gpl-2.0-broadcom-linking.json - yml: gpl-2.0-broadcom-linking.yml + yaml: gpl-2.0-broadcom-linking.yml html: gpl-2.0-broadcom-linking.html - text: gpl-2.0-broadcom-linking.LICENSE + license: gpl-2.0-broadcom-linking.LICENSE - license_key: gpl-2.0-classpath + category: Copyleft Limited spdx_license_key: GPL-2.0-with-classpath-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This library 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 2, 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 General Public License for more details. + + You should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. json: gpl-2.0-classpath.json - yml: gpl-2.0-classpath.yml + yaml: gpl-2.0-classpath.yml html: gpl-2.0-classpath.html - text: gpl-2.0-classpath.LICENSE + license: gpl-2.0-classpath.LICENSE - license_key: gpl-2.0-cygwin + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "This program is free software; you can redistribute it and/or modify it\nunder the\ + \ terms of the GNU General Public License (GPL) version 2, as\npublished by the Free Software\ + \ Foundation.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT\ + \ ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR\ + \ PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received\ + \ a copy of the GNU General Public License\nalong with this program; if not, write to the\ + \ Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\ + \n\t\t\t*** NOTE ***\n\nIn accordance with section 10 of the GPL, Red Hat permits programs\ + \ whose\nsources are distributed under a license that complies with the Open\nSource definition\ + \ to be linked with libcygwin.a without libcygwin.a\nitself causing the resulting program\ + \ to be covered by the GNU GPL.\n\nThis means that you can port an Open Source(tm) application\ + \ to cygwin,\nand distribute that executable as if it didn't include a copy of\nlibcygwin.a\ + \ linked into it. Note that this does not apply to the cygwin\nDLL itself. If you distribute\ + \ a (possibly modified) version of the DLL\nyou must adhere to the terms of the GPL, i.e.\ + \ you must provide sources\nfor the cygwin DLL.\n\nSee http://www.opensource.org/docs/osd/\ + \ for the precise Open Source\nDefinition referenced above.\n\nRed Hat sells a special Cygwin\ + \ License for customers who are unable to\nprovide their application in open source code\ + \ form. For more\ninformation, please see: http://www.redhat.com/software/cygwin/, or call\n\ + +1-866-2REDHAT ext. 45300 (toll-free in the US).\n\nOutside the US call your regional Red\ + \ Hat office, see\nhttp://www.redhat.com/about/contact/ww/" json: gpl-2.0-cygwin.json - yml: gpl-2.0-cygwin.yml + yaml: gpl-2.0-cygwin.yml html: gpl-2.0-cygwin.html - text: gpl-2.0-cygwin.LICENSE + license: gpl-2.0-cygwin.LICENSE - license_key: gpl-2.0-djvu + category: Copyleft spdx_license_key: LicenseRef-scancode-gpl-2.0-djvu other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + DjVu (r) Reference Library (v. 3.5) + + Copyright (c) 1999-2001 LizardTech, Inc. All Rights Reserved. + The DjVu Reference Library is protected by U.S. Pat. No. + 6,058,214 and patents pending. + + This software is subject to, and may be distributed under, the + GNU General Public License, Version 2. The license should have + accompanied the software or you may obtain a copy of the license + from the Free Software Foundation at http://www.fsf.org . + + The computer code originally released by LizardTech under this + license and unmodified by other parties is deemed the "LizardTech + Original Code." + + With respect to the LizardTech Original Code ONLY, and subject + to any third party intellectual property claims, LizardTech + grants recipient a worldwide, royalty-free, non-exclusive license + under patent claims now or hereafter owned or controlled by + LizardTech that are infringed by making, using, or selling + LizardTech Original Code, but solely to the extent that any such + patent(s) is/are reasonably necessary to enable you to make, have + made, practice, sell, or otherwise dispose of LizardTech Original + Code (or portions thereof) and not to any greater extent that may + be necessary to utilize further modifications or combinations. + + The LizardTech Original Code is provided "AS IS" WITHOUT WARRANTY + OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + TO ANY WARRANTY OF NON-INFRINGEMENT, OR ANY IMPLIED WARRANTY OF + MERCHANTIBILITY OR FITNESS FOR A PARTICULAR PURPOSE. json: gpl-2.0-djvu.json - yml: gpl-2.0-djvu.yml + yaml: gpl-2.0-djvu.yml html: gpl-2.0-djvu.html - text: gpl-2.0-djvu.LICENSE + license: gpl-2.0-djvu.LICENSE - license_key: gpl-2.0-font + category: Copyleft Limited spdx_license_key: GPL-2.0-with-font-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This library 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 2, 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 General Public License for more details. + + You should have received a copy of the GNU General Public License along with + this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + As a special exception, if you create a document which uses + this font, and embed this font or unaltered portions of this + font into the document, this font does not by itself cause + the resulting document to be covered by the GNU General Public + License. This exception does not however invalidate any other + reasons why the document might be covered by the GNU General + Public License. If you modify this font, you may extend this + exception to your version of the font, but you are not + obligated to do so. If you do not wish to do so, delete this + exception statement from your version. json: gpl-2.0-font.json - yml: gpl-2.0-font.yml + yaml: gpl-2.0-font.yml html: gpl-2.0-font.html - text: gpl-2.0-font.LICENSE + license: gpl-2.0-font.LICENSE - license_key: gpl-2.0-freertos + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + The FreeRTOS source code is licensed by a modified GNU General Public License - the + modification taking the form of an exception. + + The exception permits the source code of applications that use FreeRTOS solely + through the API published on this website to remain closed source, thus permitting + the use of FreeRTOS in commercial applications without necessitating that the whole + application be open sourced. The exception can only be used if you wish to combine + FreeRTOS with a proprietary product and you comply with the terms stated in the + exception itself. + + The FreeRTOS download also includes demo application source code, some of which is + provided by third parties AND IS LICENSED SEPARATELY FROM FREERTOS. + + For the avoidance of any doubt refer to the comment included at the top of each + source and header file for license and copyright information. + + This is a list of files for which Real Time Engineers Ltd. is not the copyright owner + and are NOT COVERED BY THE GPL. + + 1. Various header files provided by silicon manufacturers and tool vendors that + define processor specific memory addresses and utility macros. Permission has been + granted by the various copyright holders for these files to be included in the + FreeRTOS download. Users must ensure license conditions are adhered to for any use + other than compilation of the FreeRTOS demo applications. + + 2. The uIP TCP/IP stack the copyright of which is held by Adam Dunkels. Users must + ensure the open source license conditions stated at the top of each uIP source file + is understood and adhered to. + + 3. The lwIP TCP/IP stack the copyright of which is held by the Swedish Institute of + Computer Science. Users must ensure the open source license conditions stated at the + top of each lwIP source file is understood and adhered to. + + 4. Various peripheral driver source files and binaries provided by silicon + manufacturers and tool vendors. Permission has been granted by the various copyright + holders for these files to be included in the FreeRTOS download. Users must ensure + license conditions are adhered to for any use other than compilation of the FreeRTOS + demo applications. + + 5. The files contained within FreeRTOS\Demo\WizNET_DEMO_TERN_186\tern_code, which are + slightly modified versions of code provided by and copyright to Tern Inc. + + Errors and omissions should be reported to Richard Barry, contact details for whom + can be obtained from the Contact page. + + This library 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 2, 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 General Public License for more details. + + You should have received a copy of the GNU General Public License along with this + library; see the file COPYING. If not, write to the Free Software Foundation, 51 + Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + GNU General Public License Exception + + Any FreeRTOS source code, whether modified or in its original release form, or + whether in whole or in part, can only be distributed by you under the terms of the + GNU General Public License plus this exception. An independent module is a module + which is not derived from or based on FreeRTOS. + + EXCEPTION TEXT: + + Clause 1 + + Linking FreeRTOS statically or dynamically with other modules is making a combined + work based on FreeRTOS. Thus, the terms and conditions of the GNU General Public + License cover the whole combination. + + As a special exception, the copyright holder of FreeRTOS gives you permission to link + FreeRTOS with independent modules that communicate with FreeRTOS solely through the + FreeRTOS API interface, regardless of the license terms of these independent modules, + and to copy and distribute the resulting combined work under terms of your choice, + provided that + + 1. Every copy of the combined work is accompanied by a written statement that details + to the recipient the version of FreeRTOS used and an offer by yourself to provide the + FreeRTOS source code (including any modifications you may have made) should the + recipient request it. + + 2. The combined work is not itself an RTOS, scheduler, kernel or related product. + + 3. The independent modules add significant and primary functionality to FreeRTOS and + do not merely extend the existing functionality already present in FreeRTOS. + + Clause 2 + + FreeRTOS may not be used for any competitive or comparative purpose, including the + publication of any form of run time or compile time metric, without the express + permission of Real Time Engineers Ltd. (this is the norm within the industry and is + intended to ensure information accuracy). json: gpl-2.0-freertos.json - yml: gpl-2.0-freertos.yml + yaml: gpl-2.0-freertos.yml html: gpl-2.0-freertos.html - text: gpl-2.0-freertos.LICENSE + license: gpl-2.0-freertos.LICENSE - license_key: gpl-2.0-gcc + category: Copyleft Limited spdx_license_key: GPL-2.0-with-GCC-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This library 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 2, 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 + General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free + Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. + + GCC Linking Exception + + In addition to the permissions in the GNU General Public License, the + Free Software Foundation gives you unlimited permission to link the + compiled version of this file into combinations with other programs, and + to distribute those combinations without any restriction coming from the + use of this file. (The General Public License restrictions do apply in + other respects; for example, they cover modification of the file, and + distribution when not linked into a combine executable.) json: gpl-2.0-gcc.json - yml: gpl-2.0-gcc.yml + yaml: gpl-2.0-gcc.yml html: gpl-2.0-gcc.html - text: gpl-2.0-gcc.LICENSE + license: gpl-2.0-gcc.LICENSE - license_key: gpl-2.0-gcc-compiler-exception + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + GCC 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 2, or (at your option) + any later version. + + GCC 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 GCC; see the file COPYING. If not, write to the Free + Software Foundation, 59 Temple Place - Suite 330, Boston, MA + 02111-1307, USA. + + As a special exception, if you include this header file into source + files compiled by GCC, this header file does not by itself cause + the resulting executable to be covered by the GNU General Public + License. This exception does not however invalidate any other + reasons why the executable file might be covered by the GNU General + Public License. json: gpl-2.0-gcc-compiler-exception.json - yml: gpl-2.0-gcc-compiler-exception.yml + yaml: gpl-2.0-gcc-compiler-exception.yml html: gpl-2.0-gcc-compiler-exception.html - text: gpl-2.0-gcc-compiler-exception.LICENSE + license: gpl-2.0-gcc-compiler-exception.LICENSE - license_key: gpl-2.0-glibc + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This library 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 2, 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 + General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free + Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. + + As a special exception, you may use this file as part of a free software + library without restriction. Specifically, if other files instantiate + templates or use macros or inline functions from this file, or you + compile this file and link it with other files to produce an executable, + this file does not by itself cause the resulting executable to be + covered by the GNU General Public License. This exception does not + however invalidate any other reasons why the executable file might be + covered by the GNU General Public License. json: gpl-2.0-glibc.json - yml: gpl-2.0-glibc.yml + yaml: gpl-2.0-glibc.yml html: gpl-2.0-glibc.html - text: gpl-2.0-glibc.LICENSE + license: gpl-2.0-glibc.LICENSE - license_key: gpl-2.0-guile + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This library 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 2, 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 + General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free + Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. + + As a special exception, the Free Software Foundation gives permission + for additional uses of the text contained in its release of GUILE. + + The exception is that, if you link the GUILE library with other files to + produce an executable, this does not by itself cause the resulting + executable to be covered by the GNU General Public License. Your use of + that executable is in no way restricted on account of linking the GUILE + library code into it. + + This exception does not however invalidate any other reasons why the + executable file might be covered by the GNU General Public License. + + This exception applies only to the code released by the Free Software + Foundation under the name GUILE. If you copy code from other Free + Software Foundation releases into a copy of GUILE, as the General Public + License permits, the exception does not apply to the code that you add + in this way. To avoid misleading anyone as to the status of such + modified files, you must delete this exception notice from them. + + If you write modifications of your own for GUILE, it is your choice + whether to permit this exception to apply to your modifications. If you + do not wish that, delete this exception notice. json: gpl-2.0-guile.json - yml: gpl-2.0-guile.yml + yaml: gpl-2.0-guile.yml html: gpl-2.0-guile.html - text: gpl-2.0-guile.LICENSE + license: gpl-2.0-guile.LICENSE - license_key: gpl-2.0-ice + category: Copyleft spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft + text: "This copy of Ice is free software; you can redistribute it and/or modify\nit under\ + \ the terms of the GNU General Public License version 2 as\npublished by the Free Software\ + \ Foundation.\n\nIce is distributed in the hope that it will be useful, but WITHOUT ANY\n\ + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\nFOR A PARTICULAR\ + \ PURPOSE. See the GNU General Public License for more\ndetails.\n\nYou should have received\ + \ a copy of the GNU General Public License version\n2 along with this program; if not, see\ + \ http://www.gnu.org/licenses.\n\nLinking Ice statically or dynamically with other software\ + \ (such as a \nlibrary, module or application) is making a combined work based on Ice. \n\ + Thus, the terms and conditions of the GNU General Public License version\n2 cover this combined\ + \ work.\n\nIf such software can only be used together with Ice, then not only the \ncombined\ + \ work but the software itself is a work derived from Ice and as\nsuch shall be licensed\ + \ under the terms of the GNU General Public License \nversion 2. This includes the situation\ + \ where Ice is only being used \nthrough an abstraction layer.\n\nAs a special exception\ + \ to the above, ZeroC grants to the contributors for\nthe following projects the permission\ + \ to license their Ice-based software \nunder the terms of the GNU Lesser General Public\ + \ License (LGPL) version \n2.1 or of the BSD license:\n\n - Orca Robotics (http://orca-robotics.sourceforge.net)\n\ + \ \n - Mumble (http://mumble.sourceforge.net)\n\nThis exception does not extend to the parts\ + \ of Ice used by these \nprojects, or to any other derived work: as a whole, any work based\ + \ on Ice\nshall be licensed under the terms and conditions of the GNU General\nPublic License\ + \ version 2.\n\nYou may also combine Ice with any software not derived from Ice, provided\n\ + the license of such software is compatible with the GNU General Public \nLicense version\ + \ 2. In addition, as a special exception, ZeroC grants you\npermission to combine Ice with:\n\ + \ \n - the OpenSSL library, or with a modified version of the OpenSSL library\n that uses\ + \ the same license as OpenSSL\n\n - any library not derived from Ice and licensed under\ + \ the terms of\n the Apache License, version 2.0 \n (http://www.apache.org/licenses/LICENSE-2.0.html)\ + \ \n\nIf you modify this copy of Ice, you may extend any of the exceptions \nprovided above\ + \ to your version of Ice, but you are not obligated to \ndo so." json: gpl-2.0-ice.json - yml: gpl-2.0-ice.yml + yaml: gpl-2.0-ice.yml html: gpl-2.0-ice.html - text: gpl-2.0-ice.LICENSE + license: gpl-2.0-ice.LICENSE - license_key: gpl-2.0-independent-module-linking + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This library 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 2, 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 + General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free + Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. + + The library is released under the GPL with the following exception: + + Linking this library statically or dynamically with other modules is + making a combined work based on this library. Thus, the terms and + conditions of the GNU General Public License cover the whole + combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent + modules, and to copy and distribute the resulting executable under terms + of your choice, provided that you also meet, for each linked independent + module, the terms and conditions of the license of that module. An + independent module is a module which is not derived from or based on + this library. If you modify this library, you may extend this exception + to your version of the library, but you are not obligated to do so. If + you do not wish to do so, delete this exception statement from your + version. + + Note The exception is changed to reflect the latest GNU Classpath + exception. Older versions of #ziplib did have another exception, but the + new one is clearer and it doesn't break compatibility with the old one. + + Bottom line In plain English this means you can use this library in + commercial closed-source applications. json: gpl-2.0-independent-module-linking.json - yml: gpl-2.0-independent-module-linking.yml + yaml: gpl-2.0-independent-module-linking.yml html: gpl-2.0-independent-module-linking.html - text: gpl-2.0-independent-module-linking.LICENSE + license: gpl-2.0-independent-module-linking.LICENSE - license_key: gpl-2.0-iolib + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This is part of libio/iostream, providing -*- C++ -*- input/output. + + Copyright (C) 2000 Free Software Foundation + + This file is part of the GNU IO Library. This library 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 2, 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 General Public License for more details. + + You should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + + As a special exception, if you link this library with files compiled with a GNU compiler to produce an executable, this does not cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License. json: gpl-2.0-iolib.json - yml: gpl-2.0-iolib.yml + yaml: gpl-2.0-iolib.yml html: gpl-2.0-iolib.html - text: gpl-2.0-iolib.LICENSE + license: gpl-2.0-iolib.LICENSE - license_key: gpl-2.0-iso-cpp + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This file is part of the GNU ISO C++ Library. This library 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 2, 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 General + Public License for more details. + + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free + Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111- + 1307, USA. + + As a special exception, you may use this file as part of a free software + library without restriction. Specifically, if other files instantiate + templates or use macros or inline functions from this file, or you + compile this file and link it with other files to produce an executable, + this file does not by itself cause the resulting executable to be + covered by the GNU General Public License. This exception does not + however invalidate any other reasons why the executable file might be + covered by the GNU General Public License. json: gpl-2.0-iso-cpp.json - yml: gpl-2.0-iso-cpp.yml + yaml: gpl-2.0-iso-cpp.yml html: gpl-2.0-iso-cpp.html - text: gpl-2.0-iso-cpp.LICENSE + license: gpl-2.0-iso-cpp.LICENSE - license_key: gpl-2.0-javascript + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This library 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 2, 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 General Public License for more details. + + You should have received a copy of the GNU General Public License along with this + library; see the file COPYING. If not, write to the Free Software Foundation, 51 + Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + As a special exception to GPL, any HTML file which merely makes function calls to + this code, and for that purpose includes it by reference shall be deemed a separate + work for copyright law purposes. In addition, the copyright holders of this code give + you permission to combine this code with free software libraries that are released + under the GNU LGPL. You may copy and distribute such a system following the terms of + the GNU GPL for this code and the LGPL for the libraries. If you modify this code, + you may extend this exception to your version of the code, but you are not obligated + to do so. If you do not wish to do so, delete this exception statement from your + version. json: gpl-2.0-javascript.json - yml: gpl-2.0-javascript.yml + yaml: gpl-2.0-javascript.yml html: gpl-2.0-javascript.html - text: gpl-2.0-javascript.LICENSE + license: gpl-2.0-javascript.LICENSE - license_key: gpl-2.0-kernel + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + NOTE! This copyright does *not* cover user programs that use kernel + services by normal system calls - this is merely considered normal use + of the kernel, and does *not* fall under the heading of "derived work". + Also note that the GPL below is copyrighted by the Free Software + Foundation, but the instance of code that it refers to (the Linux + kernel) is copyrighted by me and others who actually wrote it. + + Also note that the only valid version of the GPL as far as the kernel + is concerned is _this_ particular version of the license (ie v2, not + v2.2 or v3.x or whatever), unless explicitly otherwise stated. + + Linus Torvalds + + This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. + + This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. json: gpl-2.0-kernel.json - yml: gpl-2.0-kernel.yml + yaml: gpl-2.0-kernel.yml html: gpl-2.0-kernel.html - text: gpl-2.0-kernel.LICENSE + license: gpl-2.0-kernel.LICENSE - license_key: gpl-2.0-koterov + category: Copyleft spdx_license_key: LicenseRef-scancode-gpl-2.0-koterov other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "This library 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 2, or (at your option) any later version.\n\nThis 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 General Public License\ + \ for more details.\n\nYou should have received a copy of the GNU General Public License\ + \ along with this library; see the file COPYING. If not, write to the Free Software Foundation,\ + \ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nADDITIONAL LICENSE TERMS\n\ + \nIn addition to the standard GPL 2.0 license, here are some \nconditions I'd like clarify.\n\ + \n0. If you modify this product, you MUST publish your changes. Period.\n\n1. If you re-write\ + \ this product in other language (e.g. C++) and \n \"intently view\" the product's Perl\ + \ sources while coding, you must \n also license your results as GPL 2.0.\n\n2. The author\ + \ of this product (Dmitry Koterov, http://dmitry.moikrug.ru) may \n change the product's\ + \ license type and any of license conditions.\n He is also permitted to make private modifications\ + \ and do not publish them.\n\nIf you have questions, fill free to contact the author:\n\ + dmitry.koterov@gmail.com" json: gpl-2.0-koterov.json - yml: gpl-2.0-koterov.yml + yaml: gpl-2.0-koterov.yml html: gpl-2.0-koterov.html - text: gpl-2.0-koterov.LICENSE + license: gpl-2.0-koterov.LICENSE - license_key: gpl-2.0-libgit2 + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "Note that the only valid version of the GPL as far as this project\n is concerned is\ + \ _this_ particular version of the license (ie v2, not\n v2.2 or v3.x or whatever), unless\ + \ explicitly otherwise stated.\n\n----------------------------------------------------------------------\n\ + \n\t\t\tLINKING EXCEPTION\n\n In addition to the permissions in the GNU General Public License,\n\ + \ the authors give you unlimited permission to link the compiled\n version of this library\ + \ into combinations with other programs,\n and to distribute those combinations without\ + \ any restriction\n coming from the use of this file. (The General Public License\n restrictions\ + \ do apply in other respects; for example, they cover\n modification of the file, and distribution\ + \ when not linked into\n a combined executable.)" json: gpl-2.0-libgit2.json - yml: gpl-2.0-libgit2.yml + yaml: gpl-2.0-libgit2.yml html: gpl-2.0-libgit2.html - text: gpl-2.0-libgit2.LICENSE + license: gpl-2.0-libgit2.LICENSE - license_key: gpl-2.0-library + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + The software in this package is distributed under the GNU General Public + License with the "Library Exception" described below. A copy of GNU + General Public License (GPL) is included in this distribution, in the + file LICENSE-GPL.txt. All the files distributed under GPL also include + the following special exception: + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent + modules, and to copy and distribute the resulting executable under terms + of your choice, provided that you also meet, for each linked independent + module, the terms and conditions of the license of that module. An + independent module is a module which is not derived from or based on + this library. If you modify this library, you may extend this exception + to your version of the library, but you are not obligated to do so. If + you do not wish to do so, delete this exception statement from your + version. + + As such, this software can be used to run free as well as proprietary + applications and applets. Modifications made to the classes in this + distribution must however be distributed under the GPL, optionally with + the same exception as above. json: gpl-2.0-library.json - yml: gpl-2.0-library.yml + yaml: gpl-2.0-library.yml html: gpl-2.0-library.html - text: gpl-2.0-library.LICENSE + license: gpl-2.0-library.LICENSE - license_key: gpl-2.0-libtool + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "This library is free software; you can redistribute it and/or modify it under \nthe\ + \ terms of the GNU General Public License as published by the Free Software \nFoundation;\ + \ either version 2, or (at your option) any later version.\n\nAs a special exception to\ + \ the GNU General Public License,\nif you distribute this file as part of a program or library\ + \ that\nis built using GNU Libtool, you may include this file under the\nsame distribution\ + \ terms that you use for the rest of that program.\n\nGNU Libtool is distributed in the\ + \ hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty\ + \ of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public\ + \ License for more details.\n\nYou should have received a copy of the GNU General Public\ + \ License\nalong with GNU Libtool; see the file COPYING. If not, a copy\ncan be downloaded\ + \ from http://www.gnu.org/licenses/gpl.html, or\nobtained by writing to the Free Software\ + \ Foundation, Inc.,\n51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." json: gpl-2.0-libtool.json - yml: gpl-2.0-libtool.yml + yaml: gpl-2.0-libtool.yml html: gpl-2.0-libtool.html - text: gpl-2.0-libtool.LICENSE + license: gpl-2.0-libtool.LICENSE - license_key: gpl-2.0-lmbench + category: Copyleft spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft + text: "Distributed under the FSF GPL with additional restriction that results may be\npublished\ + \ only if\n(1) the benchmark is unmodified, and\n(2) the version in the sccsid below is\ + \ included in the report.\n\nIn the file COPYING-1: \nThe set of programs and documentation\ + \ known as \"lmbench\" are distributed under\nthe Free Software Foundation's General Public\ + \ License with the following\nadditional restrictions (which override any conflicting restrictions\ + \ in the GPL):\n\n1. You may not distribute results in any public forum, in any publication,\n\ + \ or in any other way if you have modified the benchmarks. \n\n2. You may not distribute\ + \ the results for a fee of any kind. This includes\n web sites which generate revenue\ + \ from advertising." json: gpl-2.0-lmbench.json - yml: gpl-2.0-lmbench.yml + yaml: gpl-2.0-lmbench.yml html: gpl-2.0-lmbench.html - text: gpl-2.0-lmbench.LICENSE + license: gpl-2.0-lmbench.LICENSE - license_key: gpl-2.0-mysql-connector-odbc + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This library 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 2, 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 General Public License for more details. + + You should have received a copy of the GNU General Public License along with + this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + As a special exception to the MySQL Connector/ODBC GPL license, one is + allowed to use the product with any ODBC manager, even if the ODBC manager + is not licensed under the GPL. In other words: The ODBC manager itself is + not affected by the MySQL Connector/ODBC GPL license. json: gpl-2.0-mysql-connector-odbc.json - yml: gpl-2.0-mysql-connector-odbc.yml + yaml: gpl-2.0-mysql-connector-odbc.yml html: gpl-2.0-mysql-connector-odbc.html - text: gpl-2.0-mysql-connector-odbc.LICENSE + license: gpl-2.0-mysql-connector-odbc.LICENSE - license_key: gpl-2.0-mysql-floss + category: Copyleft spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft + text: | + This library 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 2, 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 General Public License for more details. + + You should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + MySQL FLOSS License Exception + + The MySQL AB Exception for Free/Libre and Open Source Software-only Applications Using MySQL Client Libraries (the "FLOSS Exception"). + + Version 0.6, 7 March 2007 + + Exception Intent + + We want specified Free/Libre and Open Source Software (``FLOSS'') applications to be able to use specified GPL-licensed MySQL client libraries (the ``Program'') despite the fact that not all FLOSS licenses are compatible with version 2 of the GNU General Public License (the ``GPL''). + + Legal Terms and Conditions + + As a special exception to the terms and conditions of version 2.0 of the GPL: + + 1. You are free to distribute a Derivative Work that is formed + entirely from the Program and one or more works (each, a + "FLOSS Work") licensed under one or more of the licenses + listed below in section 1, as long as: + a. You obey the GPL in all respects for the Program and the + Derivative Work, except for identifiable sections of the + Derivative Work which are not derived from the Program, + and which can reasonably be considered independent and + separate works in themselves, + b. all identifiable sections of the Derivative Work which + are not derived from the Program, and which can + reasonably be considered independent and separate works + in themselves, + i. are distributed subject to one of the FLOSS licenses + listed below, and + ii. the object code or executable form of those sections + are accompanied by the complete corresponding + machine-readable source code for those sections on + the same medium and under the same FLOSS license as + the corresponding object code or executable forms of + those sections, and + c. any works which are aggregated with the Program or with a + Derivative Work on a volume of a storage or distribution + medium in accordance with the GPL, can reasonably be + considered independent and separate works in themselves + which are not derivatives of either the Program, a + Derivative Work or a FLOSS Work. + If the above conditions are not met, then the Program may only + be copied, modified, distributed or used under the terms and + conditions of the GPL or another valid licensing option from + MySQL AB. + + 2. FLOSS License List + + License name Version(s)/Copyright Date + Academic Free License 2.0 + Apache Software License 1.0/1.1/2.0 + Apple Public Source License 2.0 + Artistic license From Perl 5.8.0 + BSD license "July 22 1999" + Common Development and Distribution License (CDDL) 1.0 + Common Public License 1.0 + Eclipse Public License 1.0 + GNU Library or "Lesser" General Public License (LGPL) 2.0/2.1 + Jabber Open Source License 1.0 + MIT license (As listed in file MIT-License.txt) --- + Mozilla Public License (MPL) 1.0/1.1 + Open Software License 2.0 + OpenSSL license (with original SSLeay license) "2003" ("1998") + PHP License 3.0 + Python license (CNRI Python License) --- + Python Software Foundation License 2.1.1 + Sleepycat License "1999" + University of Illinois/NCSA Open Source License --- + W3C License "2001" + X11 License "2001" + Zlib/libpng License --- + Zope Public License 2.0 + + Due to the many variants of some of the above licenses, we + require that any version follow the 2003 version of the Free + Software Foundation's Free Software Definition + (http://www.gnu.org/philosophy/free-sw.html) or version 1.9 of + the Open Source Definition by the Open Source Initiative + (http://www.opensource.org/docs/definition.php). + + 3. Definitions + + a. Terms used, but not defined, herein shall have the + meaning provided in the GPL. + b. Derivative Work means a derivative work under copyright + law. + + 4. Applicability: This FLOSS Exception applies to all Programs + that contain a notice placed by MySQL AB saying that the + Program may be distributed under the terms of this FLOSS + Exception. If you create or distribute a work which is a + Derivative Work of both the Program and any other work + licensed under the GPL, then this FLOSS Exception is not + available for that work; thus, you must remove the FLOSS + Exception notice from that work and comply with the GPL in all + respects, including by retaining all GPL notices. You may + choose to redistribute a copy of the Program exclusively under + the terms of the GPL by removing the FLOSS Exception notice + from that copy of the Program, provided that the copy has + never been modified by you or any third party. + + Appendix A. Qualified Libraries and Packages + + The following is a non-exhaustive list of libraries and packages + which are covered by the FLOSS License Exception. Please note that + this appendix is provided merely as an additional service to + specific FLOSS projects wishing to simplify licensing information + for their users. Compliance with one of the licenses noted under + the "FLOSS license list" section remains a prerequisite. + + Package Name Qualifying License and Version + Apache Portable Runtime (APR) Apache Software License 2.0 json: gpl-2.0-mysql-floss.json - yml: gpl-2.0-mysql-floss.yml + yaml: gpl-2.0-mysql-floss.yml html: gpl-2.0-mysql-floss.html - text: gpl-2.0-mysql-floss.LICENSE + license: gpl-2.0-mysql-floss.LICENSE - license_key: gpl-2.0-openjdk + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "This library 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 2, or (at your option) any later version.\n\nThis 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 General Public License\ + \ for more details.\n\nYou should have received a copy of the GNU General Public License\ + \ along with this library; see the file COPYING. If not, write to the Free Software Foundation,\ + \ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\n\"CLASSPATH\" EXCEPTION\ + \ TO THE GPL VERSION 2\n\nCertain source files distributed by Sun Microsystems, Inc. are\ + \ subject to the following clarification and special exception to the GPL Version 2, but\ + \ only where Sun has expressly included in the particular source file's header the words\n\ + \n\"Sun designates this particular file as subject to the \"Classpath\" exception as provided\ + \ by Sun in the License file that accompanied this code.\"\n\nLinking this library statically\ + \ or dynamically with other modules is making a combined work based on this library. Thus,\ + \ the terms and conditions of the GNU General Public License Version 2 cover the whole combination.\n\ + \nAs a special exception, the copyright holders of this library give you permission to link\ + \ this library with independent modules to produce an executable, regardless of the license\ + \ terms of these independent modules, and to copy and distribute the resulting executable\ + \ under terms of your choice, provided that you also meet, for each linked independent module,\ + \ the terms and conditions of the license of that module. An independent module is a module\ + \ which is not derived from or based on this library. If you modify this library, you may\ + \ extend this exception to your version of the library, but you are not obligated to do\ + \ so. If you do not wish to do so, delete this exception statement from your version. \n\ + \nOPENJDK ASSEMBLY EXCEPTION\n\nThe OpenJDK source code made available openjdk.dev.java.net\ + \ (\"OpenJDK Code\") is distributed under the terms of the GNU General Public License \ + \ version 2 only (\"GPL2\"), with the following clarification and special exception.\n\n\ + Linking this OpenJDK Code statically or dynamically with other code is making a combined\ + \ work based on this library. Thus, the terms and conditions of GPL2 cover the whole combination.\n\ + \nAs a special exception, Sun gives you permission to link this OpenJDK Code with certain\ + \ code licensed by Sun as indicated at http://openjdk.java.net/legal/exception-modules-2007-05-08.html\ + \ (\"Designated Exception Modules\") to produce an executable, regardless of the license\ + \ terms of the Designated Exception Modules, and to copy and distribute the resulting executable\ + \ under GPL2, provided that the Designated Exception Modules continue to be governed by\ + \ the licenses under which they were offered by Sun.\n\nAs such, it allows licensees and\ + \ sublicensees of Sun's GPL2 OpenJDK Code to build an executable that includes those portions\ + \ of necessary code that Sun could not provide under GPL2 (or that Sun has provided under\ + \ GPL2 with the Classpath exception). If you modify or add to the OpenJDK code, that new\ + \ GPL2 code may still be combined with Designated Exception Modules if the new code is made\ + \ subject to this exception by its copyright holder.\n\nfrom http://openjdk.java.net/legal/exception-modules-2007-05-08.html\ + \ \nOpenJDK Designated Exception Modules\n8 May 2007\nFor purposes of those files in the\ + \ OpenJDK distribution that are subject to the Assembly Exception, the following shall be\ + \ deemed Designated Exception Modules:\n\nThose files in the OpenJDK distribution available\ + \ at openjdk.java.net, openjdk.dev.java.net, and download.java.net to which Sun has applied\ + \ the Classpath Exception,\n\nAny of your derivative works of #1 above, to the extent you\ + \ license them under the GPLv2 with the Classpath Exception as defined in the OpenJDK distribution\ + \ available at openjdk.java.net, openjdk.dev.java.net, or download.java.net,\n\nAny files\ + \ in the OpenJDK distribution that are made available at openjdk.java.net, openjdk.dev.java.net,\ + \ or download.java.net under a binary code license, and\n\nAny files in the OpenJDK distribution\ + \ that are made available at openjdk.java.net, openjdk.dev.java.net, or download.java.net\ + \ under an open source license other than GPL, and your derivatives thereof that are in\ + \ compliance with the applicable open source license." json: gpl-2.0-openjdk.json - yml: gpl-2.0-openjdk.yml + yaml: gpl-2.0-openjdk.yml html: gpl-2.0-openjdk.html - text: gpl-2.0-openjdk.LICENSE + license: gpl-2.0-openjdk.LICENSE - license_key: gpl-2.0-openssl + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + The OpenSSL License is not compatible with the GPL, since it contains the following two clauses: + + * 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/)" + + * 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/)" + + The OpenSSL Exception: + + * In addition, as a special exception, the copyright holders give + * permission to link the code of portions of this program with the + * OpenSSL library under certain conditions as described in each + * individual source file, and distribute linked combinations + * including the two. + * You must obey the GNU 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. + + The OpenSSL Exception Discussion: + http://people.gnome.org/~markmc/openssl-and-the-gpl.html json: gpl-2.0-openssl.json - yml: gpl-2.0-openssl.yml + yaml: gpl-2.0-openssl.yml html: gpl-2.0-openssl.html - text: gpl-2.0-openssl.LICENSE + license: gpl-2.0-openssl.LICENSE - license_key: gpl-2.0-oracle-mysql-foss + category: Copyleft spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft + text: | + This library is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License version 2 as published by the Free + Software Foundation. + + This library is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A + PARTICULAR PURPOSE. See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along with + this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + MySQL FOSS License Exception + + We want free and open source software applications under certain licenses to be + able to use the GPL-licensed MySQL Connector (specified GPL-licensed MySQL + client libraries) despite the fact that not all such FOSS licenses are + compatible with version 2 of the GNU General Public License. + + Therefore there are special exceptions to the terms and conditions of the GPLv2 + as applied to these client libraries, which are identified and described in more + detail in the FOSS License Exception at + + + This software is OSI Certified Open Source Software. + OSI Certified is a certification mark of the Open Source Initiative. json: gpl-2.0-oracle-mysql-foss.json - yml: gpl-2.0-oracle-mysql-foss.yml + yaml: gpl-2.0-oracle-mysql-foss.yml html: gpl-2.0-oracle-mysql-foss.html - text: gpl-2.0-oracle-mysql-foss.LICENSE + license: gpl-2.0-oracle-mysql-foss.LICENSE - license_key: gpl-2.0-oracle-openjdk + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This library 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 2, 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 General Public License for more details. + + You should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + "CLASSPATH" EXCEPTION TO THE GPL + + Certain source files distributed by Oracle America and/or its affiliates are + subject to the following clarification and special exception to the GPL, but + only where Oracle has expressly included in the particular source file's header + the words "Oracle designates this particular file as subject to the "Classpath" + exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. json: gpl-2.0-oracle-openjdk.json - yml: gpl-2.0-oracle-openjdk.yml + yaml: gpl-2.0-oracle-openjdk.yml html: gpl-2.0-oracle-openjdk.html - text: gpl-2.0-oracle-openjdk.LICENSE + license: gpl-2.0-oracle-openjdk.LICENSE - license_key: gpl-2.0-plus + category: Copyleft spdx_license_key: GPL-2.0-or-later other_spdx_license_keys: - GPL-2.0+ - GPL 2.0+ is_exception: no is_deprecated: no - category: Copyleft + text: | + 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 2 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, write to the Free Software Foundation, Inc., 51 Franklin + Street, Fifth Floor, Boston, MA 02110-1301, USA. + + 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. + + 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 + convey the exclusion of warranty; and each file should have at least + the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This 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 2 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, 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. + + If the program is interactive, make it output a short notice like this + when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision 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, the commands you use may + be called something other than `show w' and `show c'; they could even be + mouse-clicks or menu items--whatever suits your program. + + You should also get your employer (if you work as a programmer) or your + school, if any, to sign a "copyright disclaimer" for the program, if + necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + + This 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. json: gpl-2.0-plus.json - yml: gpl-2.0-plus.yml + yaml: gpl-2.0-plus.yml html: gpl-2.0-plus.html - text: gpl-2.0-plus.LICENSE + license: gpl-2.0-plus.LICENSE - license_key: gpl-2.0-plus-ada + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This library 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 2 of the License, or (at + your option) any later version. + + This library is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU 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. + + As a special exception, if other files instantiate generics from this + unit, or you link this unit with other files to produce an executable, + this unit does not by itself cause the resulting executable to be + covered by the GNU General Public License. This exception does not + however invalidate any other reasons why the executable file might be + covered by the GNU Public License. json: gpl-2.0-plus-ada.json - yml: gpl-2.0-plus-ada.yml + yaml: gpl-2.0-plus-ada.yml html: gpl-2.0-plus-ada.html - text: gpl-2.0-plus-ada.LICENSE + license: gpl-2.0-plus-ada.LICENSE - license_key: gpl-2.0-plus-ekiga + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "This program is free software; you can redistribute it and/or modify\nit under the\ + \ terms of the GNU General Public License as published by\nthe Free Software Foundation;\ + \ either version 2 of the License, or\n(at your option) any later version.\n\nThis program\ + \ is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without\ + \ even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See\ + \ the\nGNU General Public License for more details.\n\nYou should have received a copy of\ + \ the GNU General Public License\nalong with this program; if not, write to the Free Software\n\ + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n\nEkiga/GnomeMeeting\ + \ is licensed under the GNU GPL license and as a special \nexception, you have permission\ + \ to link or otherwise combine this program with \nthe programs OPAL, OpenH323, PWLIB, and\ + \ OpenSSL, and distribute \nthe combination, without applying the requirements of the GNU\ + \ GPL to these \nprograms, as long as you do follow the requirements of the GNU GPL for\ + \ all the\nrest of the software thus combined." json: gpl-2.0-plus-ekiga.json - yml: gpl-2.0-plus-ekiga.yml + yaml: gpl-2.0-plus-ekiga.yml html: gpl-2.0-plus-ekiga.html - text: gpl-2.0-plus-ekiga.LICENSE + license: gpl-2.0-plus-ekiga.LICENSE - license_key: gpl-2.0-plus-gcc + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This file 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 2 of the License, or (at your + option) any later version. + + In addition to the permissions in the GNU General Public License, the + Free Software Foundation gives you unlimited permission to link the + compiled version of this file into combinations with other programs, and + to distribute those combinations without any restriction coming from the + use of this file. (The General Public License restrictions do apply in + other respects; for example, they cover modification of the file, and + distribution when not linked into a combined executable.) + + 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, write to the Free Software Foundation, Inc., + 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. json: gpl-2.0-plus-gcc.json - yml: gpl-2.0-plus-gcc.yml + yaml: gpl-2.0-plus-gcc.yml html: gpl-2.0-plus-gcc.html - text: gpl-2.0-plus-gcc.LICENSE + license: gpl-2.0-plus-gcc.LICENSE - license_key: gpl-2.0-plus-geoserver + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + 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 2 of the License, or + (at your option) any later version (collectively, "GPL"). + + As an exception to the terms of the GPL, you may copy, modify, + propagate, and distribute a work formed by combining GeoServer with the + Eclipse Libraries, or a work derivative of such a combination, even if + such copying, modification, propagation, or distribution would otherwise + violate the terms of the GPL. Nothing in this exception exempts you from + complying with the GPL in all respects for all of the code used other + than the Eclipse Libraries. You may include this exception and its grant + of permissions when you distribute GeoServer. Inclusion of this notice + with such a distribution constitutes a grant of such permissions. If + you do not wish to grant these permissions, remove this paragraph from + your distribution. "GeoServer" means the GeoServer software licensed + under version 2 or any later version of the GPL, or a work based on such + software and licensed under the GPL. "Eclipse Libraries" means Eclipse + Modeling Framework Project and XML Schema Definition software + distributed by the Eclipse Foundation and licensed under the Eclipse + Public License Version 1.0 ("EPL"), or a work based on such software and + licensed under the EPL. + + 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, write to the Free Software + Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA json: gpl-2.0-plus-geoserver.json - yml: gpl-2.0-plus-geoserver.yml + yaml: gpl-2.0-plus-geoserver.yml html: gpl-2.0-plus-geoserver.html - text: gpl-2.0-plus-geoserver.LICENSE + license: gpl-2.0-plus-geoserver.LICENSE - license_key: gpl-2.0-plus-linking + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This library 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 2, 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 General Public License for more details. + + You should have received a copy of the GNU General Public License along with this + library; see the file COPYING. If not, write to the Free Software Foundation, 51 + Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + As a special exception, if you link this library with other files, + some of which are compiled with GCC, to produce an executable, + this library does not by itself cause the resulting executable to + be covered by the GNU General Public License.  This exception does + not however invalidate any other reasons why the executable file + might be covered by the GNU General Public License. json: gpl-2.0-plus-linking.json - yml: gpl-2.0-plus-linking.yml + yaml: gpl-2.0-plus-linking.yml html: gpl-2.0-plus-linking.html - text: gpl-2.0-plus-linking.LICENSE + license: gpl-2.0-plus-linking.LICENSE - license_key: gpl-2.0-plus-nant + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "This program is free software; you can redistribute it and/or modify\nit under the\ + \ terms of the GNU General Public License as published by\nthe Free Software Foundation;\ + \ either version 2 of the License, or\n(at your option) any later version.\n\nThis program\ + \ is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without\ + \ even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See\ + \ the\nGNU General Public License for more details.\n\nYou should have received a copy of\ + \ the GNU General Public License\nalong with this program; if not, write to the Free Software\n\ + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n\nIn addition,\ + \ as a special exception, Gerry Shaw gives permission to link the \ncode of this program\ + \ with the Microsoft .NET library (or with modified versions \nof Microsoft .NET library\ + \ that use the same license as the Microsoft .NET \nlibrary), and distribute linked combinations\ + \ including the two. You must obey \nthe GNU General Public License in all respects for\ + \ all of the code used other \nthan the Microsoft .NET library. If you modify this file,\ + \ you may extend this \nexception to your version of the file, but you are not obligated\ + \ to do so. If \nyou do not wish to do so, delete this exception statement from your version.\n\ + \nA copy of the GNU General Public License is available in the COPYING.txt file \nincluded\ + \ with all NAnt distributions.\n\nFor more licensing information refer to the GNU General\ + \ Public License on the \nGNU Project web site.\nhttp://www.gnu.org/copyleft/gpl.html" json: gpl-2.0-plus-nant.json - yml: gpl-2.0-plus-nant.yml + yaml: gpl-2.0-plus-nant.yml html: gpl-2.0-plus-nant.html - text: gpl-2.0-plus-nant.LICENSE + license: gpl-2.0-plus-nant.LICENSE - license_key: gpl-2.0-plus-openmotif + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This library 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 2, 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 General Public License for more details. + + You should have received a copy of the GNU General Public License along with + this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + In addition, as a special exception to the GNU GPL, the copyright holders + give permission to link the code of this program with the Motif and Open + Motif libraries (or with modified versions of these that use the same + license), and distribute linked combinations including the two. You + must obey the GNU General Public License in all respects for all of + the code used other than linking with Motif/Open Motif. If you modify + this file, you may extend this exception to your version of the file, + but you are not obligated to do so. If you do not wish to do so, + delete this exception statement from your version. json: gpl-2.0-plus-openmotif.json - yml: gpl-2.0-plus-openmotif.yml + yaml: gpl-2.0-plus-openmotif.yml html: gpl-2.0-plus-openmotif.html - text: gpl-2.0-plus-openmotif.LICENSE + license: gpl-2.0-plus-openmotif.LICENSE - license_key: gpl-2.0-plus-openssl + category: Copyleft spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft + text: | + As a special exception to the GNU General Public License terms, + permission is hereby granted to link the code of this program, with or + without modification, with any version of the OpenSSL library and/or any + version of unRAR, and to distribute such linked combinations. You must + obey the GNU GPL in all respects for all of the code used other than + OpenSSL and unRAR. If you modify this program, you may extend this + exception to your version of the program, but you are not obligated to + do so. (In other words, you may release your derived work under pure + GNU GPL version 2 or later as published by the FSF.) json: gpl-2.0-plus-openssl.json - yml: gpl-2.0-plus-openssl.yml + yaml: gpl-2.0-plus-openssl.yml html: gpl-2.0-plus-openssl.html - text: gpl-2.0-plus-openssl.LICENSE + license: gpl-2.0-plus-openssl.LICENSE - license_key: gpl-2.0-plus-sane + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + As a special exception, the authors of SANE give permission for + additional uses of the libraries contained in this release of SANE. + + The exception is that, if you link a SANE library with other files + to produce an executable, this does not by itself cause the + resulting executable to be covered by the GNU General Public + License. Your use of that executable is in no way restricted on + account of linking the SANE library code into it. + + This exception does not, however, invalidate any other reasons why + the executable file might be covered by the GNU General Public + License. + + If you submit changes to SANE to the maintainers to be included in + a subsequent release, you agree by submitting the changes that + those changes may be distributed with this exception intact. + + If you write modifications of your own for SANE, it is your choice + whether to permit this exception to apply to your modifications. + If you do not wish that, delete this exception notice. json: gpl-2.0-plus-sane.json - yml: gpl-2.0-plus-sane.yml + yaml: gpl-2.0-plus-sane.yml html: gpl-2.0-plus-sane.html - text: gpl-2.0-plus-sane.LICENSE + license: gpl-2.0-plus-sane.LICENSE - license_key: gpl-2.0-plus-subcommander + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + Subcommander 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 2 of the License, or + (at your option) any later version. + + Subcommander 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 Subcommander; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston,MA 02111-1307, + USA. + + In addition, as a special exception, the copyright holder + gives permission to link the code of this program with the Qt + library (or with modified versions of Qt that use the same license + as Qt), and distribute linked combinations including the two. You + must obey the GNU General Public License in all respects for all of + the code used other than Qt. If you modify a file to which this + license applies, you may extend this exception to your version of + the file, but you are not obligated to do so. If you do not wish + to do so, delete this exception statement from your version. json: gpl-2.0-plus-subcommander.json - yml: gpl-2.0-plus-subcommander.yml + yaml: gpl-2.0-plus-subcommander.yml html: gpl-2.0-plus-subcommander.html - text: gpl-2.0-plus-subcommander.LICENSE + license: gpl-2.0-plus-subcommander.LICENSE - license_key: gpl-2.0-plus-syntext + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "Syntext, Inc. GPL License Exception for Syntext Serna Free Edition \n\n \ + \ Version 1.0\n\nAdditional rights granted beyond the GPL (the \"Exception\").\n\ + \nAs a special exception to the terms and conditions of GPL version 2.0 \nor GPL version\ + \ 3.0, Syntext, Inc. hereby grants you the rights described below,\nprovided you agree to\ + \ the terms and conditions in this Exception, including its\nobligations and restrictions\ + \ on use. \n\nNothing in this Exception gives you or anyone else the right to change\ + \ the\nlicensing terms of the Syntext Serna Free Editon.\n\n1) Definitions\n\n\"FOSS Application\"\ + \ means a free and open source software application \ndistributed subject to a license listed\ + \ in the section below titled \n\"FOSS License List.\"\n\n\"Licensed Software\" shall refer\ + \ to the software licensed under the GPL \n version 2.0 or GPL version 3.0 and this exception.\n\ + \n\"Derivative Work\" means a derivative work, as defined under applicable\ncopyright law,\ + \ formed entirely from the Licensed Software and one or more FOSS\nApplications.\n\n\"Independent\ + \ Work\" means portions of the Derivative Work that are not derived \nfrom the Licensed\ + \ Software and can reasonably be considered independent and\nseparate works.\n\n2) The right\ + \ to use open source licenses not compatible with the GNU General\nPublic License version\ + \ 2.0 or GNU General Public License version 3.0: You may\ndistribute Derivative Work in\ + \ object code or executable form, provided that:\n\nA) You distribute Independent Works\ + \ subject to a license listed in the \nsection 4 below, titled \"FOSS License List\";\n\n\ + and\n\nB) You obey the GPL in all respects for the Licensed Software and all portions \n\ + (including modifications and extensions) of the Licensed Software included in\nthe Derivative\ + \ Work (provided that this condition does not apply to \nIndependent Works);\n\nC) You must,\ + \ on request, make a complete package including the complete source\ncode of Derivative\ + \ Work (as defined in the GNU General Public License \nversion 2, section 3, but excluding\ + \ anything excluded by the special exception \nin the same section) available to Syntext,\ + \ Inc. under the same license as that\ngranted to other recipients of the source code of\ + \ Derivative Work;\n\nand\n\nD) Your or any other contributor's rights to:\n\ni) distribute\ + \ the source code of Derivative Work to anyone for any purpose;\n\nand\n\nii) publicly discuss\ + \ the development project for Derivative Work and its goals\nin any form and in any forum\ + \ are not prohibited by any legal instrument, \nincluding but not limited to contracts,\ + \ non-disclosure agreements, and \nemployee contracts.\n\n3) Syntext, Inc. reserves all\ + \ rights not expressly granted in these terms and \nconditions. If all of the above conditions\ + \ are not met, then this FOSS License\nException does not apply to you or your Derivative\ + \ Work.\n\n\n4) FOSS License List\n\nLicense name \ + \ Version\n-----------------------------------------------------------------\nAcademic\ + \ Free License 2.0, 2.1, 3.0\nApache Software License\t\ + \ 1.0 or 1.1\nApache License \ + \ 2.0\nApple Public Source License \t2.0\nArtistic license\ + \ (as set forth in the addendum file)\nBSD license\t \ + \ \"July 22 1999\"\nCommon Development and Distribution License\ + \ (CDDL)\t1.0\nCommon Public License \t1.0\nEclipse Public License\t\ + \ 1.0\nGNU Library or \"Lesser\" General Public License (LGPL)\t\ + 2.0, 2.1, 3.0\nJabber Open Source License 1.0\nMIT License\t\ + \ (as set forth in the addendum file)\nMozilla Public License (MPL)\ + \ 1.0 or 1.1\nOpen Software License\t \ + \ 2.0, 3.0\nOpenSSL license (with original SSLeay license)\t \"2003\" (\"\ + 1998\")\nPHP License\t 3.0\nPython license (CNRI\ + \ Python License)\t(as set forth in the addendum file)\nPython Software Foundation License\t\ + \ 2.1.1\nQ Public License\t 1.0\nSleepycat\ + \ License\t \"1999\"\nW3C License\t \ + \ \"2001\"\nX11 License\t X11R6.6\n\ + Zlib/libpng License (as set forth in the addendum file)\nZope Public\ + \ License 2.0, 2.1\n\n(Licenses without a specific version\ + \ number or date are reproduced in the file\nGPL_Exception_Addendum.txt in your source package).\n\ + ------------------------------------------------------------------" json: gpl-2.0-plus-syntext.json - yml: gpl-2.0-plus-syntext.yml + yaml: gpl-2.0-plus-syntext.yml html: gpl-2.0-plus-syntext.html - text: gpl-2.0-plus-syntext.LICENSE + license: gpl-2.0-plus-syntext.LICENSE - license_key: gpl-2.0-plus-upx + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + PLEASE CAREFULLY READ THIS LICENSE AGREEMENT, ESPECIALLY IF YOU PLAN + TO MODIFY THE UPX SOURCE CODE OR USE A MODIFIED UPX VERSION. + + ABSTRACT + ======== + + UPX and UCL are copyrighted software distributed under the terms of the GNU General Public License (hereinafter the "GPL"). + + The stub which is imbedded in each UPX compressed program is part of UPX and UCL, and contains code that is under our copyright. The terms of the GNU General Public License still apply as compressing a program is a special form of linking with our stub. + + As a special exception we grant the free usage of UPX for all executables, including commercial programs. + See below for details and restrictions. + + COPYRIGHT + ========= + + UPX and UCL are copyrighted software. All rights remain with the authors. + + UPX is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer + UPX is Copyright (C) 1996-2000 Laszlo Molnar + + UCL is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer + + + GNU GENERAL PUBLIC LICENSE + ========================== + + UPX and the UCL library are free software; you can redistribute them and/or modify them under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. + + UPX and UCL are distributed in the hope that they 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 the file COPYING. + + SPECIAL EXCEPTION FOR COMPRESSED EXECUTABLES + ============================================ + + The stub which is imbedded in each UPX compressed program is part of UPX and UCL, and contains code that is under our copyright. The terms of the GNU General Public License still apply as compressing a program is a special form of linking with our stub. + + Hereby Markus F.X.J. Oberhumer and Laszlo Molnar grant you special permission to freely use and distribute all UPX compressed programs (including commercial ones), subject to the following restrictions: + + 1. You must compress your program with a completely unmodified UPX version; either with our precompiled version, or (at your option) with a self compiled version of the unmodified UPX sources as distributed by us. + + 2. This also implies that the UPX stub must be completely unmodfied, i.e.the stub imbedded in your compressed program must be byte-identical to the stub that is produced by the official unmodified UPX version. + + 3. The decompressor and any other code from the stub must exclusively get used by the unmodified UPX stub for decompressing your program at program startup. No portion of the stub may get read, copied, called or otherwise get used or accessed by your program. + + ANNOTATIONS + =========== + + - You can use a modified UPX version or modified UPX stub only for programs that are compatible with the GNU General Public License. + + - We grant you special permission to freely use and distribute all UPX compressed programs. But any modification of the UPX stub (such as, but not limited to, removing our copyright string or making your program non-decompressible) will immediately revoke your right to use and distribute a UPX compressed program. + + - UPX is not a software protection tool; by requiring that you use the unmodified UPX version for your proprietary programs we + make sure that any user can decompress your program. This protects both you and your users as nobody can hide malicious code - any program that cannot be decompressed is highly suspicious by definition. + + - You can integrate all or part of UPX and UCL into projects that are compatible with the GNU GPL, but obviously you cannot grant any special exceptions beyond the GPL for our code in your project. + + - We want to actively support manufacturers of virus scanners and similar security software. Please contact us if you would like to incorporate parts of UPX or UCL into such a product. + + Markus F.X.J. Oberhumer Laszlo Molnar + markus.oberhumer@jk.uni-linz.ac.at ml1050@cdata.tvnet.hu + + Linz, Austria, 25 Feb 2000 json: gpl-2.0-plus-upx.json - yml: gpl-2.0-plus-upx.yml + yaml: gpl-2.0-plus-upx.yml html: gpl-2.0-plus-upx.html - text: gpl-2.0-plus-upx.LICENSE + license: gpl-2.0-plus-upx.LICENSE - license_key: gpl-2.0-proguard + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "License\n\nProGuard is free. You can use it freely for processing your applications,\ + \ \ncommercial or not. Your code obviously remains yours after having been processed,\n\ + and its license can remain the same.\nThe ProGuard code itself is copyrighted, but its distribution\ + \ license provides\nyou with some rights for modifying and redistributing its code and its\n\ + documentation. More specifically, ProGuard is distributed under the terms of the\nGNU General\ + \ Public License (GPL), version 2, as published by the Free Software\nFoundation (FSF).\ + \ In short, this means that you may freely redistribute the\nprogram, modified or as is,\ + \ on the condition that you make the complete source\ncode available as well. If you develop\ + \ a program that is linked with ProGuard,\nthe program as a whole has to be distributed\ + \ at no charge under the GPL. I am\ngranting a special exception to the latter clause (in\ + \ wording suggested by the\nFSF), for combinations with the following stand-alone applications:\ + \ Apache Ant,\nApache Maven, the Google Android SDK, the Eclipse ProGuardDT GUI, the EclipseME\n\ + JME IDE, the Oracle NetBeans Java IDE, the Oracle JME Wireless Toolkit, the\nIntel TXE SDK,\ + \ the Simple Build Tool for Scala, the NeoMAD Tools by Neomades,\nthe Javaground Tools,\ + \ and the Sanaware Tools.\n\n\nThe ProGuard user documentation is copyrighted as well. It\ + \ may only be\nredistributed without changes, along with the unmodified version of the code." json: gpl-2.0-proguard.json - yml: gpl-2.0-proguard.yml + yaml: gpl-2.0-proguard.yml html: gpl-2.0-proguard.html - text: gpl-2.0-proguard.LICENSE + license: gpl-2.0-proguard.LICENSE - license_key: gpl-2.0-qt-qca + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "This library 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, version\ + \ 2. \n\nThis 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 General Public License for more details.\n\nYou should have received\ + \ a copy of the GNU General Public License along with this library; see the file COPYING.\ + \ If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,\ + \ MA 02110-1301, USA.\n\nAs a special exception, the copyright holder(s) give permission\ + \ to link\n this program with the Qt Library (commercial or non-commercial edition),\n\ + \ and distribute the resulting executable, without including the source\n code for the\ + \ Qt library in the source distribution.\n\n As a special exception, the copyright holder(s)\ + \ give permission to link\n this program with any other library, and distribute the resulting\n\ + \ executable, without including the source code for the library in the\n source distribution,\ + \ provided that the library interfaces with this\n program only via the following plugin\ + \ interfaces:\n\n 1. The Qt Plugin APIs, only as authored by Trolltech\n 2. The QCA\ + \ Plugin API, only as authored by Justin Karneges" json: gpl-2.0-qt-qca.json - yml: gpl-2.0-qt-qca.yml + yaml: gpl-2.0-qt-qca.yml html: gpl-2.0-qt-qca.html - text: gpl-2.0-qt-qca.LICENSE + license: gpl-2.0-qt-qca.LICENSE - license_key: gpl-2.0-redhat + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This library 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 2, 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 General Public License for more details. + + You should have received a copy of the GNU General Public License along with this + library; see the file COPYING. If not, write to the Free Software Foundation, 51 + Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + In addition, as a special exception, Red Hat, Inc. gives You the additional right to + link the code of this Program with code not covered under the GNU General Public + License ("Non-GPL Code") and to distribute linked combinations including the two, + subject to the limitations in this paragraph. Non-GPL Code permitted under this + exception must only link to the code of this Program through those well defined + interfaces identified in the file named EXCEPTION found in the source code files (the + "Approved Interfaces"). The files of Non-GPL Code may instantiate templates or use + macros or inline functions from the Approved Interfaces without causing the resulting + work to be covered by the GNU General Public License. Only Red Hat, Inc. may make + changes or additions to the list of Approved Interfaces. You must obey the GNU + General Public License in all respects for all of the Program code and other code + used in conjunction with the Program except the Non-GPL Code covered by this + exception. If you modify this file, you may extend this exception to your version of + the file, but you are not obligated to do so. If you do not wish to provide this + exception without modification, you must delete this exception statement from your + version and license this file solely under the GPL without exception. json: gpl-2.0-redhat.json - yml: gpl-2.0-redhat.yml + yaml: gpl-2.0-redhat.yml html: gpl-2.0-redhat.html - text: gpl-2.0-redhat.LICENSE + license: gpl-2.0-redhat.LICENSE - license_key: gpl-2.0-rrdtool-floss + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "RRDTOOL - Round Robin Database Tool\nA tool for fast logging of numerical data graphical\ + \ display\nof this data.\n\nCopyright (c) 1998-2009 Tobias Oetiker\nAll rights reserved.\n\ + \nGNU GPL License\n===============\n\nThis program is free software; you can redistribute\ + \ it and/or modify it\nunder the terms of the GNU General Public License as published by\ + \ the Free\nSoftware Foundation; either version 2 of the License, or (at your option)\n\ + any later version.\n\nThis program is distributed in the hope that it will be useful, but\ + \ WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS\ + \ FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\n\nYou\ + \ should have received a copy of the GNU General Public License along\nwith this program;\ + \ if not, write to the Free Software Foundation, Inc.,\n59 Temple Place - Suite 330, Boston,\ + \ MA 02111-1307, USA\n\nFLOSS License Exception \n=======================\n(Adapted from\ + \ http://www.mysql.com/company/legal/licensing/foss-exception.html )\n\nI want specified\ + \ Free/Libre and Open Source Software (\"FLOSS\")\napplications to be able to use specified\ + \ GPL-licensed RRDtool\nlibraries (the \"Program\") despite the fact that not all FLOSS\ + \ licenses are\ncompatible with version 2 of the GNU General Public License (the \"GPL\"\ + ).\n\nAs a special exception to the terms and conditions of version 2.0 of the GPL:\n\n\ + You are free to distribute a Derivative Work that is formed entirely from\nthe Program and\ + \ one or more works (each, a \"FLOSS Work\") licensed under one\nor more of the licenses\ + \ listed below, as long as:\n\n1. You obey the GPL in all respects for the Program and the\ + \ Derivative\nWork, except for identifiable sections of the Derivative Work which are\n\ + not derived from the Program, and which can reasonably be considered\nindependent and separate\ + \ works in themselves,\n\n2. all identifiable sections of the Derivative Work which are\ + \ not derived\nfrom the Program, and which can reasonably be considered independent and\n\ + separate works in themselves,\n\n1. are distributed subject to one of the FLOSS licenses\ + \ listed\nbelow, and\n\n2. the object code or executable form of those sections are\naccompanied\ + \ by the complete corresponding machine-readable source\ncode for those sections on the\ + \ same medium and under the same FLOSS\nlicense as the corresponding object code or executable\ + \ forms of\nthose sections, and\n\n3. any works which are aggregated with the Program or\ + \ with a Derivative\nWork on a volume of a storage or distribution medium in accordance\ + \ with\nthe GPL, can reasonably be considered independent and separate works in\nthemselves\ + \ which are not derivatives of either the Program, a Derivative\nWork or a FLOSS Work.\n\ + \nIf the above conditions are not met, then the Program may only be copied,\nmodified, distributed\ + \ or used under the terms and conditions of the GPL.\n\nFLOSS License List\n==================\n\ + License name\tVersion(s)/Copyright Date\nAcademic Free License\t\t2.0\nApache Software License\t\ + 1.0/1.1/2.0\nApple Public Source License\t2.0\nArtistic license\t\tFrom Perl 5.8.0\nBSD\ + \ license\t\t\t\"July 22 1999\"\nCommon Public License\t\t1.0\nGNU Library or \"Lesser\"\ + \ General Public License (LGPL)\t2.0/2.1\nIBM Public License, Version 1.0\nJabber Open\ + \ Source License\t1.0\nMIT License (As listed in file MIT-License.txt)\t-\nMozilla Public\ + \ License (MPL)\t1.0/1.1\nOpen Software License\t\t2.0\nOpenSSL license (with original SSLeay\ + \ license)\t\"2003\" (\"1998\")\nPHP License\t\t\t3.01\nPython license (CNRI Python License)\t\ + -\nPython Software Foundation License\t2.1.1\nSleepycat License\t\t\"1999\"\nW3C License\t\ + \t\t\"2001\"\nX11 License\t\t\t\"2001\"\nZlib/libpng License\t\t-\nZope Public License\t\ + \t2.0/2.1" json: gpl-2.0-rrdtool-floss.json - yml: gpl-2.0-rrdtool-floss.yml + yaml: gpl-2.0-rrdtool-floss.yml html: gpl-2.0-rrdtool-floss.html - text: gpl-2.0-rrdtool-floss.LICENSE + license: gpl-2.0-rrdtool-floss.LICENSE - license_key: gpl-2.0-uboot + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This library 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 2, 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 + General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free + Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. + + The U-Boot Exception: + + NOTE! This copyright does *not* cover the so-called "standalone" + applications that use U-Boot services by means of the jump table + provided by U-Boot exactly for this purpose - this is merely considered + normal use of U-Boot, and does *not* fall under the heading of "derived + work". + + The header files "include/image.h" and "include/asm-*/u-boot.h" define + interfaces to U-Boot. Including these (unmodified) header files in + another file is considered normal use of U-Boot, and does *not* fall + under the heading of "derived work". + + Also note that the GPL below is copyrighted by the Free Software + Foundation, but the instance of code that it refers to (the U-Boot + source code) is copyrighted by me and others who actually wrote it. + + -- Wolfgang Denk json: gpl-2.0-uboot.json - yml: gpl-2.0-uboot.yml + yaml: gpl-2.0-uboot.yml html: gpl-2.0-uboot.html - text: gpl-2.0-uboot.LICENSE + license: gpl-2.0-uboot.LICENSE - license_key: gpl-3.0 + category: Copyleft spdx_license_key: GPL-3.0-only other_spdx_license_keys: - GPL-3.0 - LicenseRef-gpl-3.0 is_exception: no is_deprecated: no - category: Copyleft + text: | + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for + software and other kinds of works. + + The licenses for most software and other practical works are designed + to take away your freedom to share and change the works. By contrast, + the GNU General Public License is intended to guarantee your freedom to + share and change all versions of a program--to make sure it remains free + software for all its users. We, the Free Software Foundation, use the + GNU General Public License for most of our software; it applies also to + any other work released this way by its authors. You can apply it to + your programs, too. + + When we speak of free software, we are referring to freedom, not + price. Our General Public Licenses are designed to make sure that you + have the freedom to distribute copies of free software (and charge for + them if you wish), that you receive source code or can get it if you + want it, that you can change the software or use pieces of it in new + free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you + these rights or asking you to surrender the rights. Therefore, you have + certain responsibilities if you distribute copies of the software, or if + you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether + gratis or for a fee, you must pass on to the recipients the same + freedoms that you received. You must make sure that they, too, receive + or can get the source code. And you must show them these terms so they + know their rights. + + Developers that use the GNU GPL protect your rights with two steps: + (1) assert copyright on the software, and (2) offer you this License + giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains + that there is no warranty for this free software. For both users' and + authors' sake, the GPL requires that modified versions be marked as + changed, so that their problems will not be attributed erroneously to + authors of previous versions. + + Some devices are designed to deny users access to install or run + modified versions of the software inside them, although the manufacturer + can do so. This is fundamentally incompatible with the aim of + protecting users' freedom to change the software. The systematic + pattern of such abuse occurs in the area of products for individuals to + use, which is precisely where it is most unacceptable. Therefore, we + have designed this version of the GPL to prohibit the practice for those + products. If such problems arise substantially in other domains, we + stand ready to extend this provision to those domains in future versions + of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. + States should not allow patents to restrict development and use of + software on general-purpose computers, but in those that do, we wish to + avoid the special danger that patents applied to a free program could + make it effectively proprietary. To prevent this, the GPL assures that + patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and + modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of + works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this + License. Each licensee is addressed as "you". "Licensees" and + "recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work + in a fashion requiring copyright permission, other than the making of an + exact copy. The resulting work is called a "modified version" of the + earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based + on the Program. + + To "propagate" a work means to do anything with it that, without + permission, would make you directly or secondarily liable for + infringement under applicable copyright law, except executing it on a + computer or modifying a private copy. Propagation includes copying, + distribution (with or without modification), making available to the + public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other + parties to make or receive copies. Mere interaction with a user through + a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" + to the extent that it includes a convenient and prominently visible + feature that (1) displays an appropriate copyright notice, and (2) + tells the user that there is no warranty for the work (except to the + extent that warranties are provided), that licensees may convey the + work under this License, and how to view a copy of this License. If + the interface presents a list of user commands or options, such as a + menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work + for making modifications to it. "Object code" means any non-source + form of a work. + + A "Standard Interface" means an interface that either is an official + standard defined by a recognized standards body, or, in the case of + interfaces specified for a particular programming language, one that + is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other + than the work as a whole, that (a) is included in the normal form of + packaging a Major Component, but which is not part of that Major + Component, and (b) serves only to enable use of the work with that + Major Component, or to implement a Standard Interface for which an + implementation is available to the public in source code form. A + "Major Component", in this context, means a major essential component + (kernel, window system, and so on) of the specific operating system + (if any) on which the executable work runs, or a compiler used to + produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all + the source code needed to generate, install, and (for an executable + work) run the object code and to modify the work, including scripts to + control those activities. However, it does not include the work's + System Libraries, or general-purpose tools or generally available free + programs which are used unmodified in performing those activities but + which are not part of the work. For example, Corresponding Source + includes interface definition files associated with source files for + the work, and the source code for shared libraries and dynamically + linked subprograms that the work is specifically designed to require, + such as by intimate data communication or control flow between those + subprograms and other parts of the work. + + The Corresponding Source need not include anything that users + can regenerate automatically from other parts of the Corresponding + Source. + + The Corresponding Source for a work in source code form is that + same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of + copyright on the Program, and are irrevocable provided the stated + conditions are met. This License explicitly affirms your unlimited + permission to run the unmodified Program. The output from running a + covered work is covered by this License only if the output, given its + content, constitutes a covered work. This License acknowledges your + rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not + convey, without conditions so long as your license otherwise remains + in force. You may convey covered works to others for the sole purpose + of having them make modifications exclusively for you, or provide you + with facilities for running those works, provided that you comply with + the terms of this License in conveying all material for which you do + not control copyright. Those thus making or running the covered works + for you must do so exclusively on your behalf, under your direction + and control, on terms that prohibit them from making any copies of + your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under + the conditions stated below. Sublicensing is not allowed; section 10 + makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological + measure under any applicable law fulfilling obligations under article + 11 of the WIPO copyright treaty adopted on 20 December 1996, or + similar laws prohibiting or restricting circumvention of such + measures. + + When you convey a covered work, you waive any legal power to forbid + circumvention of technological measures to the extent such circumvention + is effected by exercising rights under this License with respect to + the covered work, and you disclaim any intention to limit operation or + modification of the work as a means of enforcing, against the work's + users, your or third parties' legal rights to forbid circumvention of + technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you + receive it, in any medium, provided that you conspicuously and + appropriately publish on each copy an appropriate copyright notice; + keep intact all notices stating that this License and any + non-permissive terms added in accord with section 7 apply to the code; + keep intact all notices of the absence of any warranty; and give all + recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, + and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to + produce it from the Program, in the form of source code under the + terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent + works, which are not by their nature extensions of the covered work, + and which are not combined with it such as to form a larger program, + in or on a volume of a storage or distribution medium, is called an + "aggregate" if the compilation and its resulting copyright are not + used to limit the access or legal rights of the compilation's users + beyond what the individual works permit. Inclusion of a covered work + in an aggregate does not cause this License to apply to the other + parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms + of sections 4 and 5, provided that you also convey the + machine-readable Corresponding Source under the terms of this License, + in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded + from the Corresponding Source as a System Library, need not be + included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any + tangible personal property which is normally used for personal, family, + or household purposes, or (2) anything designed or sold for incorporation + into a dwelling. In determining whether a product is a consumer product, + doubtful cases shall be resolved in favor of coverage. For a particular + product received by a particular user, "normally used" refers to a + typical or common use of that class of product, regardless of the status + of the particular user or of the way in which the particular user + actually uses, or expects or is expected to use, the product. A product + is a consumer product regardless of whether the product has substantial + commercial, industrial or non-consumer uses, unless such uses represent + the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, + procedures, authorization keys, or other information required to install + and execute modified versions of a covered work in that User Product from + a modified version of its Corresponding Source. The information must + suffice to ensure that the continued functioning of the modified object + code is in no case prevented or interfered with solely because + modification has been made. + + If you convey an object code work under this section in, or with, or + specifically for use in, a User Product, and the conveying occurs as + part of a transaction in which the right of possession and use of the + User Product is transferred to the recipient in perpetuity or for a + fixed term (regardless of how the transaction is characterized), the + Corresponding Source conveyed under this section must be accompanied + by the Installation Information. But this requirement does not apply + if neither you nor any third party retains the ability to install + modified object code on the User Product (for example, the work has + been installed in ROM). + + The requirement to provide Installation Information does not include a + requirement to continue to provide support service, warranty, or updates + for a work that has been modified or installed by the recipient, or for + the User Product in which it has been modified or installed. Access to a + network may be denied when the modification itself materially and + adversely affects the operation of the network or violates the rules and + protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, + in accord with this section must be in a format that is publicly + documented (and with an implementation available to the public in + source code form), and must require no special password or key for + unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this + License by making exceptions from one or more of its conditions. + Additional permissions that are applicable to the entire Program shall + be treated as though they were included in this License, to the extent + that they are valid under applicable law. If additional permissions + apply only to part of the Program, that part may be used separately + under those permissions, but the entire Program remains governed by + this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option + remove any additional permissions from that copy, or from any part of + it. (Additional permissions may be written to require their own + removal in certain cases when you modify the work.) You may place + additional permissions on material, added by you to a covered work, + for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you + add to a covered work, you may (if authorized by the copyright holders of + that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further + restrictions" within the meaning of section 10. If the Program as you + received it, or any part of it, contains a notice stating that it is + governed by this License along with a term that is a further + restriction, you may remove that term. If a license document contains + a further restriction but permits relicensing or conveying under this + License, you may add to a covered work material governed by the terms + of that license document, provided that the further restriction does + not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you + must place, in the relevant source files, a statement of the + additional terms that apply to those files, or a notice indicating + where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the + form of a separately written license, or stated as exceptions; + the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly + provided under this License. Any attempt otherwise to propagate or + modify it is void, and will automatically terminate your rights under + this License (including any patent licenses granted under the third + paragraph of section 11). + + However, if you cease all violation of this License, then your + license from a particular copyright holder is reinstated (a) + provisionally, unless and until the copyright holder explicitly and + finally terminates your license, and (b) permanently, if the copyright + holder fails to notify you of the violation by some reasonable means + prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is + reinstated permanently if the copyright holder notifies you of the + violation by some reasonable means, this is the first time you have + received notice of violation of this License (for any work) from that + copyright holder, and you cure the violation prior to 30 days after + your receipt of the notice. + + Termination of your rights under this section does not terminate the + licenses of parties who have received copies or rights from you under + this License. If your rights have been terminated and not permanently + reinstated, you do not qualify to receive new licenses for the same + material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or + run a copy of the Program. Ancillary propagation of a covered work + occurring solely as a consequence of using peer-to-peer transmission + to receive a copy likewise does not require acceptance. However, + nothing other than this License grants you permission to propagate or + modify any covered work. These actions infringe copyright if you do + not accept this License. Therefore, by modifying or propagating a + covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically + receives a license from the original licensors, to run, modify and + propagate that work, subject to this License. You are not responsible + for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an + organization, or substantially all assets of one, or subdividing an + organization, or merging organizations. If propagation of a covered + work results from an entity transaction, each party to that + transaction who receives a copy of the work also receives whatever + licenses to the work the party's predecessor in interest had or could + give under the previous paragraph, plus a right to possession of the + Corresponding Source of the work from the predecessor in interest, if + the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the + rights granted or affirmed under this License. For example, you may + not impose a license fee, royalty, or other charge for exercise of + rights granted under this License, and you may not initiate litigation + (including a cross-claim or counterclaim in a lawsuit) alleging that + any patent claim is infringed by making, using, selling, offering for + sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this + License of the Program or a work on which the Program is based. The + work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims + owned or controlled by the contributor, whether already acquired or + hereafter acquired, that would be infringed by some manner, permitted + by this License, of making, using, or selling its contributor version, + but do not include claims that would be infringed only as a + consequence of further modification of the contributor version. For + purposes of this definition, "control" includes the right to grant + patent sublicenses in a manner consistent with the requirements of + this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free + patent license under the contributor's essential patent claims, to + make, use, sell, offer for sale, import and otherwise run, modify and + propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express + agreement or commitment, however denominated, not to enforce a patent + (such as an express permission to practice a patent or covenant not to + sue for patent infringement). To "grant" such a patent license to a + party means to make such an agreement or commitment not to enforce a + patent against the party. + + If you convey a covered work, knowingly relying on a patent license, + and the Corresponding Source of the work is not available for anyone + to copy, free of charge and under the terms of this License, through a + publicly available network server or other readily accessible means, + then you must either (1) cause the Corresponding Source to be so + available, or (2) arrange to deprive yourself of the benefit of the + patent license for this particular work, or (3) arrange, in a manner + consistent with the requirements of this License, to extend the patent + license to downstream recipients. "Knowingly relying" means you have + actual knowledge that, but for the patent license, your conveying the + covered work in a country, or your recipient's use of the covered work + in a country, would infringe one or more identifiable patents in that + country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or + arrangement, you convey, or propagate by procuring conveyance of, a + covered work, and grant a patent license to some of the parties + receiving the covered work authorizing them to use, propagate, modify + or convey a specific copy of the covered work, then the patent license + you grant is automatically extended to all recipients of the covered + work and works based on it. + + A patent license is "discriminatory" if it does not include within + the scope of its coverage, prohibits the exercise of, or is + conditioned on the non-exercise of one or more of the rights that are + specifically granted under this License. You may not convey a covered + work if you are a party to an arrangement with a third party that is + in the business of distributing software, under which you make payment + to the third party based on the extent of your activity of conveying + the work, and under which the third party grants, to any of the + parties who would receive the covered work from you, a discriminatory + patent license (a) in connection with copies of the covered work + conveyed by you (or copies made from those copies), or (b) primarily + for and in connection with specific products or compilations that + contain the covered work, unless you entered into that arrangement, + or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting + any implied license or other defenses to infringement that may + otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot convey a + covered work so as to satisfy simultaneously your obligations under this + License and any other pertinent obligations, then as a consequence you may + not convey it at all. For example, if you agree to terms that obligate you + to collect a royalty for further conveying from those to whom you convey + the Program, the only way you could satisfy both those terms and this + License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have + permission to link or combine any covered work with a work licensed + under version 3 of the GNU Affero General Public License into a single + combined work, and to convey the resulting work. The terms of this + License will continue to apply to the part which is the covered work, + but the special requirements of the GNU Affero General Public License, + section 13, concerning interaction through a network will apply to the + combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of + the GNU General Public License from time to time. Such new versions will + be similar in spirit to the present version, but may differ in detail to + address new problems or concerns. + + Each version is given a distinguishing version number. If the + Program specifies that a certain numbered version of the GNU General + Public License "or any later version" applies to it, you have the + option of following the terms and conditions either of that numbered + version or of any later version published by the Free Software + Foundation. If the Program does not specify a version number of the + GNU General Public License, you may choose any version ever published + by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future + versions of the GNU General Public License can be used, that proxy's + public statement of acceptance of a version permanently authorizes you + to choose that version for the Program. + + Later license versions may give you additional or different + permissions. However, no additional obligations are imposed on any + author or copyright holder as a result of your choosing to follow a + later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY + APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT + HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY + OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM + IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF + ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING + WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS + THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY + GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE + USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF + DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD + PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), + EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF + SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided + above cannot be given local legal effect according to their terms, + reviewing courts shall apply local law that most closely approximates + an absolute waiver of all civil liability in connection with the + Program, unless a warranty or assumption of liability accompanies a + copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest + possible use to the public, the best way to achieve this is to make it + free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest + to attach them to the start of each source file to most effectively + state the exclusion of warranty; and each file should have at least + the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + + Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short + notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + + The hypothetical commands `show w' and `show c' should show the appropriate + parts of the General Public License. Of course, your program's commands + might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, + if any, to sign a "copyright disclaimer" for the program, if necessary. + For more information on this, and how to apply and follow the GNU GPL, see + . + + The GNU General Public License does not permit incorporating your program + into proprietary programs. If your program is a subroutine library, you + may consider it more useful to permit linking proprietary applications with + the library. If this is what you want to do, use the GNU Lesser General + Public License instead of this License. But first, please read + . json: gpl-3.0.json - yml: gpl-3.0.yml + yaml: gpl-3.0.yml html: gpl-3.0.html - text: gpl-3.0.LICENSE + license: gpl-3.0.LICENSE - license_key: gpl-3.0-aptana + category: Copyleft spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft + text: | + This program is distributed under the GNU General Public license. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, Version 3, as published by the Free Software Foundation. + + Any modifications must keep this entire license intact. + + ----------------------------------------------------------------------- + + Appcelerator GPL Exception + Section 7 Exception + + As a special exception to the terms and conditions of the GNU General Public License Version 3 (the "GPL"): You are free to convey a modified version that is formed entirely from this file (for purposes of this exception, the "Program" under the GPL) and the works identified at http://www.aptana.com/legal/gpl (each an "Excepted Work"), which are conveyed to you by Appcelerator, Inc. and licensed under one or more of the licenses identified in the Excepted License List below (each an "Excepted License"), as long as: + + 1. you obey the GPL in all respects for the Program and the modified version, except for Excepted Works which are identifiable sections of the modified version, which are not derived from the Program, and which can reasonably be considered independent and separate works in themselves, + 2. all Excepted Works which are identifiable sections of the modified version, which are not derived from the Program, and which can reasonably be considered independent and separate works in themselves, + 1. are distributed subject to the Excepted License under which they were originally licensed, and + 2. are not themselves modified from the form in which they are conveyed to you by Aptana, and + 3. the object code or executable form of those sections are accompanied by the complete corresponding machine-readable source code for those sections, on the same medium as the corresponding object code or executable forms of those sections, and are licensed under the applicable Excepted License as the corresponding object code or executable forms of those sections, and + 3. any works which are aggregated with the Program, or with a modified version on a volume of a storage or distribution medium in accordance with the GPL, are aggregates (as defined in Section 5 of the GPL) which can reasonably be considered independent and separate works in themselves and which are not modified versions of either the Program, a modified version, or an Excepted Work. + + If the above conditions are not met, then the Program may only be copied, modified, distributed or used under the terms and conditions of the GPL or another valid licensing option from Appcelerator, Inc. Terms used but not defined in the foregoing paragraph have the meanings given in the GPL. + + ----------------------------------------------------------------------- + + Excepted License List + + * Apache Software License: version 1.0, 1.1, 2.0 + * Eclipse Public License: version 1.0 + * GNU General Public License: version 2.0 + * GNU Lesser General Public License: version 2.0 + * License of Jaxer + * License of HTML jTidy + * Mozilla Public License: version 1.1 + * W3C License + * BSD License + * MIT License + * Aptana Commercial Licenses + + This list may be modified by Appcelerator from time to time. See Appcelerator's website for the latest version. + + ----------------------------------------------------------------------- + + Attribution Requirement + + This license does not grant any license or rights to use the trademarks "Aptana," any "Aptana" logos, or any other trademarks of Appcelerator, Inc. You are not authorized to use the name Aptana or the names of any author or contributor for publicity purposes, without written authorization. + + However, in addition to the other notice obligations of this License, all copies of any covered work conveyed by you must include on each user interface screen and in the Appropriate Legal Notices the following text: "Powered by Aptana". On user interface screens, this text must be visibly and clearly displayed in the title bar, status bar, or otherwise directly in the view that is in focus. json: gpl-3.0-aptana.json - yml: gpl-3.0-aptana.yml + yaml: gpl-3.0-aptana.yml html: gpl-3.0-aptana.html - text: gpl-3.0-aptana.LICENSE + license: gpl-3.0-aptana.LICENSE - license_key: gpl-3.0-autoconf + category: Copyleft Limited spdx_license_key: GPL-3.0-with-autoconf-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + 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 . + + AUTOCONF CONFIGURE SCRIPT EXCEPTION + + Version 3.0, 18 August 2009 + + Copyright © 2009 Free Software Foundation, Inc. + + Everyone is permitted to copy and distribute verbatim copies of this + license document, but changing it is not allowed. + + This Exception is an additional permission under section 7 of the GNU + General Public License, version 3 ("GPLv3"). It applies to a given file + that bears a notice placed by the copyright holder of the file stating + that the file is governed by GPLv3 along with this Exception. + + The purpose of this Exception is to allow distribution of Autoconf's + typical output under terms of the recipient's choice (including + proprietary). + + 0. Definitions. + "Covered Code" is the source or object code of a version of Autoconf + that is a covered work under this License. + + "Normally Copied Code" for a version of Autoconf means all parts of its + Covered Code which that version can copy from its code (i.e., not from + its input file) into its minimally verbose, non-debugging and non- + tracing output. + + "Ineligible Code" is Covered Code that is not Normally Copied Code. + + 1. Grant of Additional Permission. + + You have permission to propagate output of Autoconf, even if such + propagation would otherwise violate the terms of GPLv3. However, if by + modifying Autoconf you cause any Ineligible Code of the version you + received to become Normally Copied Code of your modified version, then + you void this Exception for the resulting covered work. If you convey + that resulting covered work, you must remove this Exception in + accordance with the second paragraph of Section 7 of GPLv3. + + 2. No Weakening of Autoconf Copyleft. + + The availability of this Exception does not imply any general + presumption that third-party software is unaffected by the copyleft + requirements of the license of Autoconf. json: gpl-3.0-autoconf.json - yml: gpl-3.0-autoconf.yml + yaml: gpl-3.0-autoconf.yml html: gpl-3.0-autoconf.html - text: gpl-3.0-autoconf.LICENSE + license: gpl-3.0-autoconf.LICENSE - license_key: gpl-3.0-bison + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + Skeleton implementation for Bison's Yacc-like parsers in C + + Copyright (C) 1984, 1989-1990, 2000-2006, 2009-2010 Free Software + Foundation, Inc. + + 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 . + + As a special exception, you may create a larger work that contains + part or all of the Bison parser skeleton and distribute that work + under terms of your choice, so long as that work isn't itself a + parser generator using the skeleton or a modified version thereof + as a parser skeleton. Alternatively, if you modify or redistribute + the parser skeleton itself, you may (at your option) remove this + special exception, which will cause the skeleton and the resulting + Bison output files to be licensed under the GNU General Public + License without this special exception. + + This special exception was added by the Free Software Foundation in + version 2.2 of Bison. json: gpl-3.0-bison.json - yml: gpl-3.0-bison.yml + yaml: gpl-3.0-bison.yml html: gpl-3.0-bison.html - text: gpl-3.0-bison.LICENSE + license: gpl-3.0-bison.LICENSE - license_key: gpl-3.0-cygwin + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "Cygwin is free software. Red Hat, Inc. licenses Cygwin to you under the\nterms of\ + \ the GNU General Public License as published by the Free Software\nFoundation; you can\ + \ redistribute it and/or modify it under the terms of\nthe GNU General Public License either\ + \ version 3 of the license, or (at your\noption) any later version (GPLv3+), along with\ + \ the additional permissions\ngiven below.\n\nThere is NO WARRANTY for this software, express\ + \ or implied, including\nthe implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n\ + PURPOSE. See the GNU General Public License for more details.\n\nYou should have received\ + \ a copy of the GNU General Public License along\nwith this program. If not, see .\n\ + \n\nAdditional Permissions:\n\n\n1. Linking Exception.\n\nAs a special exception to GPLv3+,\ + \ Red Hat grants you permission to link\nsoftware whose sources are distributed under a\ + \ license that satisfies\nthe Open Source Definition with libcygwin.a, without libcygwin.a\n\ + itself causing the resulting program to be covered by GPLv3+.\n\nThis means that you can\ + \ port an Open Source application to Cygwin, and\ndistribute that executable as if it didn't\ + \ include a copy of\nlibcygwin.a linked into it. Note that this does not apply to the\n\ + Cygwin DLL itself. If you distribute a (possibly modified) version of\nthe Cygwin DLL,\ + \ you must adhere to the terms of GPLv3+, including the\nrequirement to provide sources\ + \ for the Cygwin DLL, unless you have obtained\na special Cygwin license to distribute the\ + \ Cygwin DLL in only its binary\nform (see below).\n\nSee http://www.opensource.org/docs/osd/\ + \ for the precise Open Source\nDefinition referenced above.\n\n\n2. Files Excluded from\ + \ GPL Coverage.\n\nRed Hat grants you permission to distribute Cygwin with the following\n\ + files, which are not considered part of Cygwin and are not governed by\nGPLv3+, in source\ + \ or binary form.\n\nwinsup\\testsuite\\winsup.api\\msgtest.c\nwinsup\\testsuite\\winsup.api\\\ + semtest.c\nwinsup\\testsuite\\winsup.api\\shmtest.c\n\nRed Hat grants you permission to\ + \ link or combine code in Cygwin with\ncode in or corresponding to the following files,\ + \ which are not\nconsidered part of Cygwin and are not governed by GPLv3+, and to\ndistribute\ + \ such combinations under terms of your choice, provided that\nsuch terms are otherwise\ + \ consistent with the application of GPLv3+ to\nCygwin itself. You must comply with GPLv3+\ + \ with respect to all\nportions of such combinations other than those that correspond to\ + \ or\nare derived from such non-Cygwin code but which do not correspond to\nor are not derived\ + \ from Cygwin itself.\n\nwinsup\\cygserver\\sysv_shm.cc\n\n\n3. Alternative License. \n\ + \nRed Hat sells a special Cygwin License for customers who are unable to\nprovide their\ + \ application in open source code form. For more\ninformation, please see: http://www.redhat.com/software/cygwin/,\ + \ or call\n+1-866-2REDHAT ext. 45300 (toll-free in the US).\n\nOutside the US call your\ + \ regional Red Hat office, see\nhttp://www.redhat.com/about/contact/ww/" json: gpl-3.0-cygwin.json - yml: gpl-3.0-cygwin.yml + yaml: gpl-3.0-cygwin.yml html: gpl-3.0-cygwin.html - text: gpl-3.0-cygwin.LICENSE + license: gpl-3.0-cygwin.LICENSE - license_key: gpl-3.0-font + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + GNU FreeFont License + + Free UCS scalable fonts 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. + + The fonts are distributed in the hope that they 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. json: gpl-3.0-font.json - yml: gpl-3.0-font.yml + yaml: gpl-3.0-font.yml html: gpl-3.0-font.html - text: gpl-3.0-font.LICENSE + license: gpl-3.0-font.LICENSE - license_key: gpl-3.0-gcc + category: Copyleft Limited spdx_license_key: GPL-3.0-with-GCC-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + 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 . + + GCC RUNTIME LIBRARY EXCEPTION + + Version 3.1, 31 March 2009 + + Copyright © 2009 Free Software Foundation, Inc. + + Everyone is permitted to copy and distribute verbatim copies of this license + document, but changing it is not allowed. + + This GCC Runtime Library Exception ("Exception") is an additional permission + under section 7 of the GNU General Public License, version 3 ("GPLv3"). It + applies to a given file (the "Runtime Library") that bears a notice placed by + the copyright holder of the file stating that the file is governed by GPLv3 + along with this Exception. + + When you use GCC to compile a program, GCC may combine portions of certain GCC + header files and runtime libraries with the compiled program. The purpose of + this Exception is to allow compilation of non-GPL (including proprietary) + programs to use, in this way, the header files and runtime libraries covered by + this Exception. + + 0. Definitions. + + A file is an "Independent Module" if it either requires the Runtime Library for + execution after a Compilation Process, or makes use of an interface provided by + the Runtime Library, but is not otherwise based on the Runtime Library. + + "GCC" means a version of the GNU Compiler Collection, with or without + modifications, governed by version 3 (or a specified later version) of the GNU + General Public License (GPL) with the option of using any subsequent versions + published by the FSF. + + "GPL-compatible Software" is software whose conditions of propagation, + modification and use would permit combination with GCC in accord with the + license of GCC. + + "Target Code" refers to output from any compiler for a real or virtual target + processor architecture, in executable form or suitable for input to an + assembler, loader, linker and/or execution phase. Notwithstanding that, Target + Code does not include data in any format that is used as a compiler intermediate + representation, or used for producing a compiler intermediate representation. + + The "Compilation Process" transforms code entirely represented in non- + intermediate languages designed for human-written code, and/or in Java Virtual + Machine byte code, into Target Code. Thus, for example, use of source code + generators and preprocessors need not be considered part of the Compilation + Process, since the Compilation Process can be understood as starting with the + output of the generators or preprocessors. + + A Compilation Process is "Eligible" if it is done using GCC, alone or with other + GPL-compatible software, or if it is done without using any work based on GCC. + For example, using non-GPL-compatible Software to optimize any GCC intermediate + representations would not qualify as an Eligible Compilation Process. + + 1. Grant of Additional Permission. + + You have permission to propagate a work of Target Code formed by combining the + Runtime Library with Independent Modules, even if such propagation would + otherwise violate the terms of GPLv3, provided that all Target Code was + generated by Eligible Compilation Processes. You may then convey such a + combination under terms of your choice, consistent with the licensing of the + Independent Modules. + + 2. No Weakening of GCC Copyleft. + + The availability of this Exception does not imply any general presumption that + third-party software is unaffected by the copyleft requirements of the license + of GCC. json: gpl-3.0-gcc.json - yml: gpl-3.0-gcc.yml + yaml: gpl-3.0-gcc.yml html: gpl-3.0-gcc.html - text: gpl-3.0-gcc.LICENSE + license: gpl-3.0-gcc.LICENSE - license_key: gpl-3.0-linking-exception + category: Copyleft Limited spdx_license_key: GPL-3.0-linking-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + Additional permission under GNU GPL version 3 section 7 + + If you modify this Program, or any covered work, by linking or combining it with [name of library] (or a modified version of that library), containing parts covered by the terms of [name of library's license], the licensors of this Program grant you additional permission to convey the resulting work. json: gpl-3.0-linking-exception.json - yml: gpl-3.0-linking-exception.yml + yaml: gpl-3.0-linking-exception.yml html: gpl-3.0-linking-exception.html - text: gpl-3.0-linking-exception.LICENSE + license: gpl-3.0-linking-exception.LICENSE - license_key: gpl-3.0-linking-source-exception + category: Copyleft Limited spdx_license_key: GPL-3.0-linking-source-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + Additional permission under GNU GPL version 3 section 7 + + If you modify this Program, or any covered work, by linking or combining it with [name of library] (or a modified version of that library), containing parts covered by the terms of [name of library's license], the licensors of this Program grant you additional permission to convey the resulting work. {Corresponding Source for a non-source form of such a combination shall include the source code for the parts of [name of library] used as well as that of the covered work.} json: gpl-3.0-linking-source-exception.json - yml: gpl-3.0-linking-source-exception.yml + yaml: gpl-3.0-linking-source-exception.yml html: gpl-3.0-linking-source-exception.html - text: gpl-3.0-linking-source-exception.LICENSE + license: gpl-3.0-linking-source-exception.LICENSE - license_key: gpl-3.0-openbd + category: Copyleft spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft + text: "Open BlueDragon (OpenBD) is distributed under the GNU General Public \nLicense (v3).\ + \ A copy of this can be found in the COPYING.txt file or\nat http://www.gnu.org/licenses/\n\ + \nAdditional Permission Granted by tagServlet Ltd: \n tagServlet Ltd grants the user the\ + \ exception to distribute the entire \n Open BlueDragon runtime libraries without the web\ + \ application (.cfml, .html, \n .js, .css, etc) that Open BlueDragon powers, from itself\ + \ being licensed\n under the GNU General Public License (v3), as long the entire runtime\ + \ \n remains intact and includes all license information.\n \n This exception does not\ + \ overrule the embedded JAR files and where applicable\n the entire Open BlueDragon runtime\ + \ only, must be available for inspection if \n ever asked, complete with all these copyright\ + \ and license information.\n \n This applies only to distribution for the purpose of powering\ + \ end-user CFML\n applications. This exception does not include embedding/linking any\ + \ part of the \n runtime of Open BlueDragon within any other application other than a Servlet\ + \ container \n whose sole purpose is to render CFML applications. Linking or usage by\ + \ any\n Java application (even through CFML), is not permitted.\n \n Any modification,\ + \ enhancements, linking, to the Open BlueDragon runtime still falls \n under the GNU General\ + \ Public License (v3).\n\n\n______ Building Prerequisites _______\n\nYou will require the\ + \ following to be able to build OpenBD from source:\n\n x Java Developers Kit Virtual Machine\ + \ 1.6\n x Apache Ant (http://ant.apache.org/)\n\nOptional, OpenBD source drop includes\ + \ an Eclipse project to enable \nbuilding and debugging under the Eclipse IDE (http://www.eclipse.org/).\ + \ \n\n\n______ Deployment Prerequisites _______\n\nYou will require the following to be\ + \ able to run OpenBD:\n\n x Java Virtual Machine 1.6\n x J2EE compliant server (ie Jetty,\ + \ Apache Tomcat, Redhat JBoss)\n\n\n______ External JAR Dependency _______\n\nOpenBD utilises\ + \ a number of external open source libraries to provide some\nof the functionality contained\ + \ within. This section details all the \nexternal JAR's associated with building and/or\ + \ deployment of OpenBD.\n\nPermission under GNU GPL version 3 section 7\n\nIf you modify\ + \ this Program, or any covered work, by linking or combining \nit with any of the JAR files\ + \ listed below (or a modified version of that \nlibrary), containing parts covered by the\ + \ terms of \"Java JAX-RPC\", the \nlicensors of this Program grant you additional permission\ + \ to convey the\nresulting work.\n\n + activation.jar\n mail.jar\n https://glassfish.dev.java.net/javaee5/mail/\n\ + \ + commons-dbcp-1.1.jar\n commons-pool-1.1.jar\n commons-codec-1.4.jar\n \ + \ commons-collections-3.2.1.jar \n commons-discovery.jar\n\t commons-fileupload-1.2.1.jar\n\ + \ commons-httpclient-3.1bd.jar\n commons-io-1.4.jar\n commons-logging.1.1.1.jar\ + \ \n commons-vfs.jar\n http://commons.apache.org/ \n + xmlrpc-1.2-b1.jar\n \ + \ http://ws.apache.org/xmlrpc/\n + jakarta-oro-2.0.8.jar\n http://jakarta.apache.org/oro/\n\ + \ + servlet23.jar\n http://tomcat.apache.org/\n + javolution.jar\n http://javolution.org/\n\ + \ + jaxrpc.jar\n https://jax-rpc.dev.java.net/\n + jcommon-1.0.0.jar \n jfreechart-1.0.1.jar\ + \ \n http://www.jfree.org/\n + lucene-analyzers-3.x.jar\n lucene-core-3.x.jar\n\ + \ lucene-highlighter-3.x.jar\n lucene-snowball-3.x.jar\n http://lucene.apache.org/\n\ + \ + PDFBox-0.7.2.jar\n http://www.pdfbox.org/\n + postgresql.jar\n http://www.postgresql.org/\n\ + \ + saaj.jar\n https://saaj.dev.java.net/\n + webservices.jar\n http://ws.apache.org/axis/\n\ + \ + wsdl4j.jar\n http://sourceforge.net/projects/wsdl4j\n + h2.jar\n http://www.h2database.com/html/main.html\n\ + \ + vfs-s3\n http://code.google.com/p/vfs-s3/\n + JetS3\n https://jets3t.dev.java.net/\n\ + \ + JSON Library [org.json]\n http://www.json.org/java/index.html\n + Oracle 10g\ + \ JDBC Driver\n http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_10201.html\n\ + \ http://www.oracle.com/technology/software/popup-license/distribution-license.html\n\ + \ + Microsoft SQL Server JDBC Driver\n http://www.microsoft.com/downloads/details.aspx?FamilyId=C47053EB-3B64-4794-950D-81E1EC91C1BA\n\ + \ + jTDS SQL Server Driver\n http://jtds.sourceforge.net/\n http://jtds.sourceforge.net/license.html\n\ + \ + jericho-html-3.1\n http://jerichohtml.sourceforge.net/doc/index.html\n + flowplayer\ + \ 3.0.5 Flash Video Player (GPL)\n http://www.flowplayer.org/\n + Yahoo YUI Compressor\ + \ BSD/RhinoGPL\n yuicompressor-2.4.2\n + Jackson JSON library\n http://jackson.codehaus.org/\n\ + \n______ Special Build JARs _______\n\nOpenBD has had to make certain modifications to existing\ + \ open source libraries. These\nare available in the ./extra/ folder with everything required\ + \ to rebuild those library.\n\n + XALAN\n\t xalan-openbd-build.zip\n\t \n\t+ Jackson-1.8.3-openbd.jar\n\ + \t\tSupport for YES|NO boolean\n\n______ Official OpenBD Wiki _______\n\n http://wiki.openbluedragon.org/\n\ + \n______ Official OpenBD Docs _______\n \n http://openbd.org/manual/\n\n______ Support\ + \ Mailing List _______\n\nYou can subscribe to the public mailing list at:\n\n http://groups.google.com/group/openbd" json: gpl-3.0-openbd.json - yml: gpl-3.0-openbd.yml + yaml: gpl-3.0-openbd.yml html: gpl-3.0-openbd.html - text: gpl-3.0-openbd.LICENSE + license: gpl-3.0-openbd.LICENSE - license_key: gpl-3.0-plus + category: Copyleft spdx_license_key: GPL-3.0-or-later other_spdx_license_keys: - GPL-3.0+ - LicenseRef-GPL-3.0-or-later is_exception: no is_deprecated: no - category: Copyleft + text: | + 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 . + + + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for + software and other kinds of works. + + The licenses for most software and other practical works are designed + to take away your freedom to share and change the works. By contrast, + the GNU General Public License is intended to guarantee your freedom to + share and change all versions of a program--to make sure it remains free + software for all its users. We, the Free Software Foundation, use the + GNU General Public License for most of our software; it applies also to + any other work released this way by its authors. You can apply it to + your programs, too. + + When we speak of free software, we are referring to freedom, not + price. Our General Public Licenses are designed to make sure that you + have the freedom to distribute copies of free software (and charge for + them if you wish), that you receive source code or can get it if you + want it, that you can change the software or use pieces of it in new + free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you + these rights or asking you to surrender the rights. Therefore, you have + certain responsibilities if you distribute copies of the software, or if + you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether + gratis or for a fee, you must pass on to the recipients the same + freedoms that you received. You must make sure that they, too, receive + or can get the source code. And you must show them these terms so they + know their rights. + + Developers that use the GNU GPL protect your rights with two steps: + (1) assert copyright on the software, and (2) offer you this License + giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains + that there is no warranty for this free software. For both users' and + authors' sake, the GPL requires that modified versions be marked as + changed, so that their problems will not be attributed erroneously to + authors of previous versions. + + Some devices are designed to deny users access to install or run + modified versions of the software inside them, although the manufacturer + can do so. This is fundamentally incompatible with the aim of + protecting users' freedom to change the software. The systematic + pattern of such abuse occurs in the area of products for individuals to + use, which is precisely where it is most unacceptable. Therefore, we + have designed this version of the GPL to prohibit the practice for those + products. If such problems arise substantially in other domains, we + stand ready to extend this provision to those domains in future versions + of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. + States should not allow patents to restrict development and use of + software on general-purpose computers, but in those that do, we wish to + avoid the special danger that patents applied to a free program could + make it effectively proprietary. To prevent this, the GPL assures that + patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and + modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of + works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this + License. Each licensee is addressed as "you". "Licensees" and + "recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work + in a fashion requiring copyright permission, other than the making of an + exact copy. The resulting work is called a "modified version" of the + earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based + on the Program. + + To "propagate" a work means to do anything with it that, without + permission, would make you directly or secondarily liable for + infringement under applicable copyright law, except executing it on a + computer or modifying a private copy. Propagation includes copying, + distribution (with or without modification), making available to the + public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other + parties to make or receive copies. Mere interaction with a user through + a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" + to the extent that it includes a convenient and prominently visible + feature that (1) displays an appropriate copyright notice, and (2) + tells the user that there is no warranty for the work (except to the + extent that warranties are provided), that licensees may convey the + work under this License, and how to view a copy of this License. If + the interface presents a list of user commands or options, such as a + menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work + for making modifications to it. "Object code" means any non-source + form of a work. + + A "Standard Interface" means an interface that either is an official + standard defined by a recognized standards body, or, in the case of + interfaces specified for a particular programming language, one that + is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other + than the work as a whole, that (a) is included in the normal form of + packaging a Major Component, but which is not part of that Major + Component, and (b) serves only to enable use of the work with that + Major Component, or to implement a Standard Interface for which an + implementation is available to the public in source code form. A + "Major Component", in this context, means a major essential component + (kernel, window system, and so on) of the specific operating system + (if any) on which the executable work runs, or a compiler used to + produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all + the source code needed to generate, install, and (for an executable + work) run the object code and to modify the work, including scripts to + control those activities. However, it does not include the work's + System Libraries, or general-purpose tools or generally available free + programs which are used unmodified in performing those activities but + which are not part of the work. For example, Corresponding Source + includes interface definition files associated with source files for + the work, and the source code for shared libraries and dynamically + linked subprograms that the work is specifically designed to require, + such as by intimate data communication or control flow between those + subprograms and other parts of the work. + + The Corresponding Source need not include anything that users + can regenerate automatically from other parts of the Corresponding + Source. + + The Corresponding Source for a work in source code form is that + same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of + copyright on the Program, and are irrevocable provided the stated + conditions are met. This License explicitly affirms your unlimited + permission to run the unmodified Program. The output from running a + covered work is covered by this License only if the output, given its + content, constitutes a covered work. This License acknowledges your + rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not + convey, without conditions so long as your license otherwise remains + in force. You may convey covered works to others for the sole purpose + of having them make modifications exclusively for you, or provide you + with facilities for running those works, provided that you comply with + the terms of this License in conveying all material for which you do + not control copyright. Those thus making or running the covered works + for you must do so exclusively on your behalf, under your direction + and control, on terms that prohibit them from making any copies of + your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under + the conditions stated below. Sublicensing is not allowed; section 10 + makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological + measure under any applicable law fulfilling obligations under article + 11 of the WIPO copyright treaty adopted on 20 December 1996, or + similar laws prohibiting or restricting circumvention of such + measures. + + When you convey a covered work, you waive any legal power to forbid + circumvention of technological measures to the extent such circumvention + is effected by exercising rights under this License with respect to + the covered work, and you disclaim any intention to limit operation or + modification of the work as a means of enforcing, against the work's + users, your or third parties' legal rights to forbid circumvention of + technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you + receive it, in any medium, provided that you conspicuously and + appropriately publish on each copy an appropriate copyright notice; + keep intact all notices stating that this License and any + non-permissive terms added in accord with section 7 apply to the code; + keep intact all notices of the absence of any warranty; and give all + recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, + and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to + produce it from the Program, in the form of source code under the + terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent + works, which are not by their nature extensions of the covered work, + and which are not combined with it such as to form a larger program, + in or on a volume of a storage or distribution medium, is called an + "aggregate" if the compilation and its resulting copyright are not + used to limit the access or legal rights of the compilation's users + beyond what the individual works permit. Inclusion of a covered work + in an aggregate does not cause this License to apply to the other + parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms + of sections 4 and 5, provided that you also convey the + machine-readable Corresponding Source under the terms of this License, + in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded + from the Corresponding Source as a System Library, need not be + included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any + tangible personal property which is normally used for personal, family, + or household purposes, or (2) anything designed or sold for incorporation + into a dwelling. In determining whether a product is a consumer product, + doubtful cases shall be resolved in favor of coverage. For a particular + product received by a particular user, "normally used" refers to a + typical or common use of that class of product, regardless of the status + of the particular user or of the way in which the particular user + actually uses, or expects or is expected to use, the product. A product + is a consumer product regardless of whether the product has substantial + commercial, industrial or non-consumer uses, unless such uses represent + the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, + procedures, authorization keys, or other information required to install + and execute modified versions of a covered work in that User Product from + a modified version of its Corresponding Source. The information must + suffice to ensure that the continued functioning of the modified object + code is in no case prevented or interfered with solely because + modification has been made. + + If you convey an object code work under this section in, or with, or + specifically for use in, a User Product, and the conveying occurs as + part of a transaction in which the right of possession and use of the + User Product is transferred to the recipient in perpetuity or for a + fixed term (regardless of how the transaction is characterized), the + Corresponding Source conveyed under this section must be accompanied + by the Installation Information. But this requirement does not apply + if neither you nor any third party retains the ability to install + modified object code on the User Product (for example, the work has + been installed in ROM). + + The requirement to provide Installation Information does not include a + requirement to continue to provide support service, warranty, or updates + for a work that has been modified or installed by the recipient, or for + the User Product in which it has been modified or installed. Access to a + network may be denied when the modification itself materially and + adversely affects the operation of the network or violates the rules and + protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, + in accord with this section must be in a format that is publicly + documented (and with an implementation available to the public in + source code form), and must require no special password or key for + unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this + License by making exceptions from one or more of its conditions. + Additional permissions that are applicable to the entire Program shall + be treated as though they were included in this License, to the extent + that they are valid under applicable law. If additional permissions + apply only to part of the Program, that part may be used separately + under those permissions, but the entire Program remains governed by + this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option + remove any additional permissions from that copy, or from any part of + it. (Additional permissions may be written to require their own + removal in certain cases when you modify the work.) You may place + additional permissions on material, added by you to a covered work, + for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you + add to a covered work, you may (if authorized by the copyright holders of + that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further + restrictions" within the meaning of section 10. If the Program as you + received it, or any part of it, contains a notice stating that it is + governed by this License along with a term that is a further + restriction, you may remove that term. If a license document contains + a further restriction but permits relicensing or conveying under this + License, you may add to a covered work material governed by the terms + of that license document, provided that the further restriction does + not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you + must place, in the relevant source files, a statement of the + additional terms that apply to those files, or a notice indicating + where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the + form of a separately written license, or stated as exceptions; + the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly + provided under this License. Any attempt otherwise to propagate or + modify it is void, and will automatically terminate your rights under + this License (including any patent licenses granted under the third + paragraph of section 11). + + However, if you cease all violation of this License, then your + license from a particular copyright holder is reinstated (a) + provisionally, unless and until the copyright holder explicitly and + finally terminates your license, and (b) permanently, if the copyright + holder fails to notify you of the violation by some reasonable means + prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is + reinstated permanently if the copyright holder notifies you of the + violation by some reasonable means, this is the first time you have + received notice of violation of this License (for any work) from that + copyright holder, and you cure the violation prior to 30 days after + your receipt of the notice. + + Termination of your rights under this section does not terminate the + licenses of parties who have received copies or rights from you under + this License. If your rights have been terminated and not permanently + reinstated, you do not qualify to receive new licenses for the same + material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or + run a copy of the Program. Ancillary propagation of a covered work + occurring solely as a consequence of using peer-to-peer transmission + to receive a copy likewise does not require acceptance. However, + nothing other than this License grants you permission to propagate or + modify any covered work. These actions infringe copyright if you do + not accept this License. Therefore, by modifying or propagating a + covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically + receives a license from the original licensors, to run, modify and + propagate that work, subject to this License. You are not responsible + for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an + organization, or substantially all assets of one, or subdividing an + organization, or merging organizations. If propagation of a covered + work results from an entity transaction, each party to that + transaction who receives a copy of the work also receives whatever + licenses to the work the party's predecessor in interest had or could + give under the previous paragraph, plus a right to possession of the + Corresponding Source of the work from the predecessor in interest, if + the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the + rights granted or affirmed under this License. For example, you may + not impose a license fee, royalty, or other charge for exercise of + rights granted under this License, and you may not initiate litigation + (including a cross-claim or counterclaim in a lawsuit) alleging that + any patent claim is infringed by making, using, selling, offering for + sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this + License of the Program or a work on which the Program is based. The + work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims + owned or controlled by the contributor, whether already acquired or + hereafter acquired, that would be infringed by some manner, permitted + by this License, of making, using, or selling its contributor version, + but do not include claims that would be infringed only as a + consequence of further modification of the contributor version. For + purposes of this definition, "control" includes the right to grant + patent sublicenses in a manner consistent with the requirements of + this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free + patent license under the contributor's essential patent claims, to + make, use, sell, offer for sale, import and otherwise run, modify and + propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express + agreement or commitment, however denominated, not to enforce a patent + (such as an express permission to practice a patent or covenant not to + sue for patent infringement). To "grant" such a patent license to a + party means to make such an agreement or commitment not to enforce a + patent against the party. + + If you convey a covered work, knowingly relying on a patent license, + and the Corresponding Source of the work is not available for anyone + to copy, free of charge and under the terms of this License, through a + publicly available network server or other readily accessible means, + then you must either (1) cause the Corresponding Source to be so + available, or (2) arrange to deprive yourself of the benefit of the + patent license for this particular work, or (3) arrange, in a manner + consistent with the requirements of this License, to extend the patent + license to downstream recipients. "Knowingly relying" means you have + actual knowledge that, but for the patent license, your conveying the + covered work in a country, or your recipient's use of the covered work + in a country, would infringe one or more identifiable patents in that + country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or + arrangement, you convey, or propagate by procuring conveyance of, a + covered work, and grant a patent license to some of the parties + receiving the covered work authorizing them to use, propagate, modify + or convey a specific copy of the covered work, then the patent license + you grant is automatically extended to all recipients of the covered + work and works based on it. + + A patent license is "discriminatory" if it does not include within + the scope of its coverage, prohibits the exercise of, or is + conditioned on the non-exercise of one or more of the rights that are + specifically granted under this License. You may not convey a covered + work if you are a party to an arrangement with a third party that is + in the business of distributing software, under which you make payment + to the third party based on the extent of your activity of conveying + the work, and under which the third party grants, to any of the + parties who would receive the covered work from you, a discriminatory + patent license (a) in connection with copies of the covered work + conveyed by you (or copies made from those copies), or (b) primarily + for and in connection with specific products or compilations that + contain the covered work, unless you entered into that arrangement, + or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting + any implied license or other defenses to infringement that may + otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot convey a + covered work so as to satisfy simultaneously your obligations under this + License and any other pertinent obligations, then as a consequence you may + not convey it at all. For example, if you agree to terms that obligate you + to collect a royalty for further conveying from those to whom you convey + the Program, the only way you could satisfy both those terms and this + License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have + permission to link or combine any covered work with a work licensed + under version 3 of the GNU Affero General Public License into a single + combined work, and to convey the resulting work. The terms of this + License will continue to apply to the part which is the covered work, + but the special requirements of the GNU Affero General Public License, + section 13, concerning interaction through a network will apply to the + combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of + the GNU General Public License from time to time. Such new versions will + be similar in spirit to the present version, but may differ in detail to + address new problems or concerns. + + Each version is given a distinguishing version number. If the + Program specifies that a certain numbered version of the GNU General + Public License "or any later version" applies to it, you have the + option of following the terms and conditions either of that numbered + version or of any later version published by the Free Software + Foundation. If the Program does not specify a version number of the + GNU General Public License, you may choose any version ever published + by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future + versions of the GNU General Public License can be used, that proxy's + public statement of acceptance of a version permanently authorizes you + to choose that version for the Program. + + Later license versions may give you additional or different + permissions. However, no additional obligations are imposed on any + author or copyright holder as a result of your choosing to follow a + later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY + APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT + HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY + OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM + IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF + ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING + WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS + THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY + GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE + USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF + DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD + PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), + EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF + SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided + above cannot be given local legal effect according to their terms, + reviewing courts shall apply local law that most closely approximates + an absolute waiver of all civil liability in connection with the + Program, unless a warranty or assumption of liability accompanies a + copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest + possible use to the public, the best way to achieve this is to make it + free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest + to attach them to the start of each source file to most effectively + state the exclusion of warranty; and each file should have at least + the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + + Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short + notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + + The hypothetical commands `show w' and `show c' should show the appropriate + parts of the General Public License. Of course, your program's commands + might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, + if any, to sign a "copyright disclaimer" for the program, if necessary. + For more information on this, and how to apply and follow the GNU GPL, see + . + + The GNU General Public License does not permit incorporating your program + into proprietary programs. If your program is a subroutine library, you + may consider it more useful to permit linking proprietary applications with + the library. If this is what you want to do, use the GNU Lesser General + Public License instead of this License. But first, please read + . json: gpl-3.0-plus.json - yml: gpl-3.0-plus.yml + yaml: gpl-3.0-plus.yml html: gpl-3.0-plus.html - text: gpl-3.0-plus.LICENSE + license: gpl-3.0-plus.LICENSE - license_key: gpl-3.0-plus-openssl + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + 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 . + + In addition, as a special exception, the copyright holders give permission to + link the code of portions of this program with the OpenSSL library under certain + conditions as described in each individual source file, and distribute linked + combinations including the two. + + You must obey the GNU 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. json: gpl-3.0-plus-openssl.json - yml: gpl-3.0-plus-openssl.yml + yaml: gpl-3.0-plus-openssl.yml html: gpl-3.0-plus-openssl.html - text: gpl-3.0-plus-openssl.LICENSE + license: gpl-3.0-plus-openssl.LICENSE - license_key: gpl-generic-additional-terms + category: Copyleft spdx_license_key: LicenseRef-scancode-gpl-generic-additional-terms other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: json: gpl-generic-additional-terms.json - yml: gpl-generic-additional-terms.yml + yaml: gpl-generic-additional-terms.yml html: gpl-generic-additional-terms.html - text: gpl-generic-additional-terms.LICENSE + license: gpl-generic-additional-terms.LICENSE - license_key: gplcc-1.0 + category: Copyleft Limited spdx_license_key: GPL-CC-1.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + GPL Cooperation Commitment + Version 1.0 + + Before filing or continuing to prosecute any legal proceeding or claim + (other than a Defensive Action) arising from termination of a Covered + License, we commit to extend to the person or entity ('you') accused + of violating the Covered License the following provisions regarding + cure and reinstatement, taken from GPL version 3. As used here, the + term 'this License' refers to the specific Covered License being + enforced. + + 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. + + We intend this Commitment to be irrevocable, and binding and + enforceable against us and assignees of or successors to our + copyrights. + + Definitions + + 'Covered License' means the GNU General Public License, version 2 + (GPLv2), the GNU Lesser General Public License, version 2.1 + (LGPLv2.1), or the GNU Library General Public License, version 2 + (LGPLv2), all as published by the Free Software Foundation. + + 'Defensive Action' means a legal proceeding or claim that We bring + against you in response to a prior proceeding or claim initiated by + you or your affiliate. + + 'We' means each contributor to this repository as of the date of + inclusion of this file, including subsidiaries of a corporate + contributor. + + This work is available under a Creative Commons Attribution-ShareAlike + 4.0 International license (https://creativecommons.org/licenses/by-sa/4.0/). json: gplcc-1.0.json - yml: gplcc-1.0.yml + yaml: gplcc-1.0.yml html: gplcc-1.0.html - text: gplcc-1.0.LICENSE + license: gplcc-1.0.LICENSE - license_key: graphics-gems + category: Permissive spdx_license_key: LicenseRef-scancode-graphics-gems other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "LICENSE\n\nThis code repository predates the concept of Open Source, and predates most\n\ + licenses along such lines. As such, the official license truly is:\n\nEULA: The Graphics\ + \ Gems code is copyright-protected. In other words, you cannot\nclaim the text of the code\ + \ as your own and resell it. \n\nUsing the code is permitted in any program, product, or\ + \ library, non-commercial\nor commercial. Giving credit is not required, though is a nice\ + \ gesture.\n\nThe code comes as-is, and if there are any flaws or problems with any Gems\ + \ code,\nnobody involved with Gems - authors, editors, publishers, or webmasters - are to\n\ + be held responsible. Basically, don't be a jerk, and remember that anything free\ncomes\ + \ with no guarantee." json: graphics-gems.json - yml: graphics-gems.yml + yaml: graphics-gems.yml html: graphics-gems.html - text: graphics-gems.LICENSE + license: graphics-gems.LICENSE - license_key: greg-roelofs + category: Permissive spdx_license_key: LicenseRef-scancode-greg-roelofs other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This software is provided "as is," without warranty of any kind, + express or implied. In no event shall the author or contributors + be held liable for any damages arising in any way 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. Redistributions of source code must retain the above copyright + notice, disclaimer, and this list of conditions. + + 2. Redistributions in binary form must reproduce the above copyright + notice, disclaimer, and this list of conditions 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 Greg Roelofs + and contributors for the book, "PNG: The Definitive Guide," + published by O'Reilly and Associates. json: greg-roelofs.json - yml: greg-roelofs.yml + yaml: greg-roelofs.yml html: greg-roelofs.html - text: greg-roelofs.LICENSE + license: greg-roelofs.LICENSE - license_key: gregory-pietsch + category: Permissive spdx_license_key: LicenseRef-scancode-gregory-pietsch other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This file and the accompanying getopt.c implementation file are hereby placed + in the public domain without restrictions. Just give the auth credit, don't + claim you wrote it or prevent anyone else from using it. json: gregory-pietsch.json - yml: gregory-pietsch.yml + yaml: gregory-pietsch.yml html: gregory-pietsch.html - text: gregory-pietsch.LICENSE + license: gregory-pietsch.LICENSE - license_key: gsoap-1.3a + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-gsoap-1.3a other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + ****** gSOAP Public License ****** + **** Version 1.3a **** + + The gSOAP public license is derived from the Mozilla Public License (MPL1.1). + The sections that were deleted from the original MPL1.1 text are 1.0.1, 2.1. + (c),(d), 2.2.(c),(d), 8.2.(b), 10, and 11. Section 3.8 was added. The modified + sections are 2.1.(b), 2.2.(b), 3.2 (simplified), 3.5 (deleted the last + sentence), and 3.6 (simplified). + ***** 1 DEFINITIONS. ***** + 1.0.1. + 1.1. "Contributor" + means each entity that creates or contributes to the creation of + Modifications. + 1.2. "Contributor Version" + means the combination of the Original Code, prior Modifications used by a + Contributor, and the Modifications made by that particular Contributor. + 1.3. "Covered Code" + means the Original Code, or Modifications or the combination of the + Original Code, and Modifications, in each case including portions + thereof. + 1.4. "Electronic Distribution Mechanism" + means a mechanism generally accepted in the software development + community for the electronic transfer of data. + 1.5. "Executable" + means Covered Code in any form other than Source Code. + 1.6. "Initial Developer" + means the individual or entity identified as the Initial Developer in the + Source Code notice required by Exhibit A. + 1.7. "Larger Work" + means a work which combines Covered Code or portions thereof with code + not governed by the terms of this License. + 1.8. "License" + means this document. + 1.8.1. "Licensable" + means having the right to grant, to the maximum extent possible, whether + at the time of the initial grant or subsequently acquired, any and all of + the rights conveyed herein. + 1.9. "Modifications" + means any addition to or deletion from the substance or structure of + either the Original Code or any previous Modifications. When Covered Code + is released as a series of files, a Modification is: + A. + Any addition to or deletion from the contents of a file containing + Original Code or previous Modifications. + B. + Any new file that contains any part of the Original Code, or + previous Modifications. + 1.10. "Original Code" + means Source Code of computer software code which is described in the + Source Code notice required by Exhibit A as Original Code, and which, at + the time of its release under this License is not already Covered Code + governed by this License. + 1.10.1. "Patent Claims" + means any patent claim(s), now owned or hereafter acquired, including + without limitation, method, process, and apparatus claims, in any patent + Licensable by grantor. + 1.11. "Source Code" + means the preferred form of the Covered Code for making modifications to + it, including all modules it contains, plus any associated interface + definition files, scripts used to control compilation and installation of + an Executable, or source code differential comparisons against either the + Original Code or another well known, available Covered Code of the + Contributor's choice. The Source Code can be in a compressed or archival + form, provided the appropriate decompression or de-archiving software is + widely available for no charge. + 1.12. "You" (or "Your") + means an individual or a legal entity exercising rights under, and + complying with all of the terms of, this License or a future version of + this License issued under Section 6.1. For legal entities, "You" includes + any entity which controls, is controlled by, or is under common control + with You. For purposes of this definition, "control" means (a) the power, + direct or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than fifty + percent (50%) of the outstanding shares or beneficial ownership of such + entity. + ***** 2 SOURCE CODE LICENSE. ***** + 2.1. The Initial Developer Grant. + + The Initial Developer hereby grants You a world-wide, royalty-free, non- + exclusive license, subject to third party intellectual property claims: + (a) + under intellectual property rights (other than patent or trademark) + Licensable by Initial Developer to use, reproduce, modify, display, + perform, sublicense and distribute the Original Code (or portions + thereof) with or without Modifications, and/or as part of a Larger + Work; and + (b) + under patents now or hereafter owned or controlled by Initial + Developer, to make, have made, use and sell ("offer to sell and + import") the Original Code, Modifications, or portions thereof, but + solely to the extent that any such patent is reasonably necessary + to enable You to utilize, alone or in combination with other + software, the Original Code, Modifications, or any combination or + portions thereof. + (c) + (d) + + 2.2. Contributor Grant. + + Subject to third party intellectual property claims, each Contributor + hereby grants You a world-wide, royalty-free, non-exclusive license + (a) + under intellectual property rights (other than patent or trademark) + Licensable by Contributor, to use, reproduce, modify, display, + perform, sublicense and distribute the Modifications created by + such Contributor (or portions thereof) either on an unmodified + basis, with other Modifications, as Covered Code and/or as part of + a Larger Work; and + (b) + under patents now or hereafter owned or controlled by Contributor, + to make, have made, use and sell ("offer to sell and import") the + Contributor Version (or portions thereof), but solely to the extent + that any such patent is reasonably necessary to enable You to + utilize, alone or in combination with other software, the + Contributor Version (or portions thereof). + (c) + (d) + ***** 3 DISTRIBUTION OBLIGATIONS. ***** + 3.1. Application of License. + + The Modifications which You create or to which You contribute are + governed by the terms of this License, including without limitation + Section 2.2. The Source Code version of Covered Code may be distributed + only under the terms of this License or a future version of this License + released under Section 6.1, and You must include a copy of this License + with every copy of the Source Code You distribute. You may not offer or + impose any terms on any Source Code version that alters or restricts the + applicable version of this License or the recipients' rights hereunder. + However, You may include an additional document offering the additional + rights described in Section 3.5. + + 3.2. Availability of Source Code. + + Any Modification created by You will be provided to the Initial Developer + in Source Code form and are subject to the terms of the License. + + 3.3. Description of Modifications. + + You must cause all Covered Code to which You contribute to contain a file + documenting the changes You made to create that Covered Code and the date + of any change. You must include a prominent statement that the + Modification is derived, directly or indirectly, from Original Code + provided by the Initial Developer and including the name of the Initial + Developer in (a) the Source Code, and (b) in any notice in an Executable + version or related documentation in which You describe the origin or + ownership of the Covered Code. + + 3.4. Intellectual Property Matters. + (a) Third Party Claims. + If Contributor has knowledge that a license under a third party's + intellectual property rights is required to exercise the rights + granted by such Contributor under Sections 2.1 or 2.2, Contributor + must include a text file with the Source Code distribution titled + "LEGAL" which describes the claim and the party making the claim in + sufficient detail that a recipient will know whom to contact. If + Contributor obtains such knowledge after the Modification is made + available as described in Section 3.2, Contributor shall promptly + modify the LEGAL file in all copies Contributor makes available + thereafter and shall take other steps (such as notifying + appropriate mailing lists or newsgroups) reasonably calculated to + inform those who received the Covered Code that new knowledge has + been obtained. + (b) Contributor APIs. + If Contributor's Modifications include an application programming + interface and Contributor has knowledge of patent licenses which + are reasonably necessary to implement that API, Contributor must + also include this information in the LEGAL file. + (c) Representations. + Contributor represents that, except as disclosed pursuant to + Section 3.4(a) above, Contributor believes that Contributor's + Modifications are Contributor's original creation(s) and/or + Contributor has sufficient rights to grant the rights conveyed by + this License. + + 3.5. Required Notices. + + You must duplicate the notice in Exhibit A in each file of the Source + Code. If it is not possible to put such notice in a particular Source + Code file due to its structure, then You must include such notice in a + location (such as a relevant directory) where a user would be likely to + look for such a notice. If You created one or more Modification(s) You + may add your name as a Contributor to the notice described in Exhibit A. + You must also duplicate this License in any documentation for the Source + Code where You describe recipients' rights or ownership rights relating + to Covered Code. You may choose to offer, and to charge a fee for, + warranty, support, indemnity or liability obligations to one or more + recipients of Covered Code. However, You may do so only on Your own + behalf, and not on behalf of the Initial Developer or any Contributor. + + 3.6. Distribution of Executable Versions. + + You may distribute Covered Code in Executable form only if the + requirements of Section 3.1-3.5 have been met for that Covered Code. You + may distribute the Executable version of Covered Code or ownership rights + under a license of Your choice, which may contain terms different from + this License, provided that You are in compliance with the terms of this + License and that the license for the Executable version does not attempt + to limit or alter the recipient's rights in the Source Code version from + the rights set forth in this License. If You distribute the Executable + version under a different license You must make it absolutely clear that + any terms which differ from this License are offered by You alone, not by + the Initial Developer or any Contributor. If you distribute executable + versions containing Covered Code as part of a product, you must reproduce + the notice in Exhibit B in the documentation and/or other materials + provided with the product. + + 3.7. Larger Works. + + You may create a Larger Work by combining Covered Code with other code + not governed by the terms of this License and distribute the Larger Work + as a single product. In such a case, You must make sure the requirements + of this License are fulfilled for the Covered Code. + + 3.8. Restrictions. + + You may not remove any product identification, copyright, proprietary + notices or labels from gSOAP. + ***** 4 INABILITY TO COMPLY DUE TO STATUTE OR REGULATION. ***** + If it is impossible for You to comply with any of the terms of this License + with respect to some or all of the Covered Code due to statute, judicial order, + or regulation then You must: (a) comply with the terms of this License to the + maximum extent possible; and (b) describe the limitations and the code they + affect. Such description must be included in the LEGAL file described in + Section 3.4 and must be included with all distributions of the Source Code. + Except to the extent prohibited by statute or regulation, such description must + be sufficiently detailed for a recipient of ordinary skill to be able to + understand it. + ***** 5 APPLICATION OF THIS LICENSE. ***** + This License applies to code to which the Initial Developer has attached the + notice in Exhibit A and to related Covered Code. + ***** 6 VERSIONS OF THE LICENSE. ***** + 6.1. New Versions. + + Grantor may publish revised and/or new versions of the License from time + to time. Each version will be given a distinguishing version number. + + 6.2. Effect of New Versions. + + Once Covered Code has been published under a particular version of the + License, You may always continue to use it under the terms of that + version. You may also choose to use such Covered Code under the terms of + any subsequent version of the License. + + 6.3. Derivative Works. + + If You create or use a modified version of this License (which you may + only do in order to apply it to code which is not already Covered Code + governed by this License), You must (a) rename Your license so that the + phrase "gSOAP" or any confusingly similar phrase do not appear in your + license (except to note that your license differs from this License) and + (b) otherwise make it clear that Your version of the license contains + terms which differ from the gSOAP Public License. (Filling in the name of + the Initial Developer, Original Code or Contributor in the notice + described in Exhibit A shall not of themselves be deemed to be + modifications of this License.) + ***** 7 DISCLAIMER OF WARRANTY. ***** + COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT + WARRANTY OF ANY KIND, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, WITHOUT + LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, OF FITNESS FOR A + PARTICULAR PURPOSE, NONINFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY + RIGHTS, AND ANY WARRANTY THAT MAY ARISE BY REASON OF TRADE USAGE, CUSTOM, OR + COURSE OF DEALING. WITHOUT LIMITING THE FOREGOING, YOU ACKNOWLEDGE THAT THE + SOFTWARE IS PROVIDED "AS IS" AND THAT THE AUTHORS DO NOT WARRANT THE SOFTWARE + WILL RUN UNINTERRUPTED OR ERROR FREE. LIMITED LIABILITY THE ENTIRE RISK AS TO + RESULTS AND PERFORMANCE OF THE SOFTWARE IS ASSUMED BY YOU. UNDER NO + CIRCUMSTANCES WILL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL, + EXEMPLARY OR CONSEQUENTIAL DAMAGES OF ANY KIND OR NATURE WHATSOEVER, WHETHER + BASED ON CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR + OTHERWISE, ARISING OUT OF OR IN ANY WAY RELATED TO THE SOFTWARE, EVEN IF THE + AUTHORS HAVE BEEN ADVISED ON THE POSSIBILITY OF SUCH DAMAGE OR IF SUCH DAMAGE + COULD HAVE BEEN REASONABLY FORESEEN, AND NOTWITHSTANDING ANY FAILURE OF + ESSENTIAL PURPOSE OF ANY EXCLUSIVE REMEDY PROVIDED. SUCH LIMITATION ON DAMAGES + INCLUDES, BUT IS NOT LIMITED TO, DAMAGES FOR LOSS OF GOODWILL, LOST PROFITS, + LOSS OF DATA OR SOFTWARE, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION OR + IMPAIRMENT OF OTHER GOODS. IN NO EVENT WILL THE AUTHORS BE LIABLE FOR THE COSTS + OF PROCUREMENT OF SUBSTITUTE SOFTWARE OR SERVICES. YOU ACKNOWLEDGE THAT THIS + SOFTWARE IS NOT DESIGNED FOR USE IN ON-LINE EQUIPMENT IN HAZARDOUS ENVIRONMENTS + SUCH AS OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR CONTROL, OR + LIFE-CRITICAL APPLICATIONS. THE AUTHORS EXPRESSLY DISCLAIM ANY LIABILITY + RESULTING FROM USE OF THE SOFTWARE IN ANY SUCH ON-LINE EQUIPMENT IN HAZARDOUS + ENVIRONMENTS AND ACCEPTS NO LIABILITY IN RESPECT OF ANY ACTIONS OR CLAIMS BASED + ON THE USE OF THE SOFTWARE IN ANY SUCH ON-LINE EQUIPMENT IN HAZARDOUS + ENVIRONMENTS BY YOU. FOR PURPOSES OF THIS PARAGRAPH, THE TERM "LIFE-CRITICAL + APPLICATION" MEANS AN APPLICATION IN WHICH THE FUNCTIONING OR MALFUNCTIONING OF + THE SOFTWARE MAY RESULT DIRECTLY OR INDIRECTLY IN PHYSICAL INJURY OR LOSS OF + HUMAN LIFE. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS + LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS + DISCLAIMER. + ***** 8 TERMINATION. ***** + 8.1. + This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to cure + such breach within 30 days of becoming aware of the breach. All + sublicenses to the Covered Code which are properly granted shall survive + any termination of this License. Provisions which, by their nature, must + remain in effect beyond the termination of this License shall survive. + 8.2. + 8.3. + If You assert a patent infringement claim against Participant alleging + that such Participant's Contributor Version directly or indirectly + infringes any patent where such claim is resolved (such as by license or + settlement) prior to the initiation of patent infringement litigation, + then the reasonable value of the licenses granted by such Participant + under Sections 2.1 or 2.2 shall be taken into account in determining the + amount or value of any payment or license. + 8.4. + In the event of termination under Sections 8.1 or 8.2 above, all end user + license agreements (excluding distributors and resellers) which have been + validly granted by You or any distributor hereunder prior to termination + shall survive termination. + ***** 9 LIMITATION OF LIABILITY. ***** + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING + NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY + OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY + OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, + OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, + DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, + OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL + HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING + FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH + LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF + INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT + APPLY TO YOU. + ***** 10 U.S. GOVERNMENT END USERS. ***** + ***** 11 MISCELLANEOUS. ***** + ***** 12 RESPONSIBILITY FOR CLAIMS. ***** + As between Initial Developer and the Contributors, each party is responsible + for claims and damages arising, directly or indirectly, out of its utilization + of rights under this License and You agree to work with Initial Developer and + Contributors to distribute such responsibility on an equitable basis. Nothing + herein is intended or shall be deemed to constitute any admission of liability. + ***** EXHIBIT A. ***** + "The contents of this file are subject to the gSOAP Public License Version 1.3 + (the "License"); you may not use this file except in compliance with the + License. You may obtain a copy of the License at + http://genivia.com/Products/gsoap/license.pdf + More information on licensing options, support contracts, and consulting can be + found at + http://genivia.com/Products/gsoap/contract.html + Software distributed under the License is distributed on an "AS IS" basis, + WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + the specific language governing rights and limitations under the License. + The Original Code of the gSOAP Software is: stdsoap.h, stdsoap2.h, stdsoap.c, + stdsoap2.c, stdsoap.cpp, stdsoap2.cpp, soapcpp2.h, soapcpp2.c, soapcpp2_lex.l, + soapcpp2_yacc.y, error2.h, error2.c, symbol2.c, init2.c, soapdoc2.html, and + soapdoc2.pdf, httpget.h, httpget.c, stl.h, stldeque.h, stllist.h, stlvector.h, + stlset.h. + The Initial Developer of the Original Code is Robert A. van Engelen. Portions + created by Robert A. van Engelen are Copyright (C) 2001-2004 Robert A. van + Engelen, Genivia inc. All Rights Reserved. + Contributor(s): + " ." + [Note: The text of this Exhibit A may differ slightly form the text of the + notices in the Source Code files of the Original code. You should use the text + of this Exhibit A rather than the text found in the Original Code Source Code + for Your Modifications.] + ***** EXHIBIT B. ***** + "Part of the software embedded in this product is gSOAP software. + Portions created by gSOAP are Copyright (C) 2001-2004 Robert A. van Engelen, + Genivia inc. All Rights Reserved. + THE SOFTWARE IN THIS PRODUCT WAS IN PART PROVIDED BY GENIVIA INC 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." json: gsoap-1.3a.json - yml: gsoap-1.3a.yml + yaml: gsoap-1.3a.yml html: gsoap-1.3a.html - text: gsoap-1.3a.LICENSE + license: gsoap-1.3a.LICENSE - license_key: gsoap-1.3b + category: Copyleft Limited spdx_license_key: gSOAP-1.3b other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "gSOAP Public License\n\nVersion 1.3b\n\nThe gSOAP public license is derived from the\ + \ Mozilla Public License (MPL1.1).\nThe sections that were deleted from the original MPL1.1\ + \ text are 1.0.1, 2.1.(c),(d),\n2.2.(c),(d), 8.2.(b), 10, and 11. Section 3.8 was added.\ + \ The modified sections\nare 2.1.(b), 2.2.(b), 3.2 (simplified), 3.5 (deleted the last sentence),\ + \ and\n3.6 (simplified).\n\nThis license applies to the gSOAP software package, with the\ + \ exception of the\nsoapcpp2 and wsdl2h source code located in gsoap/src and gsoap/wsdl,\ + \ all code\ngenerated by soapcpp2 and wsdl2h, the UDDI source code gsoap/uddi2, and the\ + \ Web\nserver sample source code samples/webserver. To use any of these software tools\n\ + and components commercially, a commercial license is required and can be\nobtained from\ + \ www.genivia.com.\n\n1 DEFINITIONS.\n\n1.0.1.\n1.1. \"Contributor\"\nmeans each entity\ + \ that creates or contributes to the creation of Modifications.\n1.2. \"Contributor Version\"\ + \nmeans the combination of the Original Code, prior Modifications used by a Contributor,\ + \ and the Modifications made by that particular Contributor.\n1.3. \"Covered Code\"\nmeans\ + \ the Original Code, or Modifications or the combination of the Original Code, and Modifications,\ + \ in each case including portions thereof.\n1.4. \"Electronic Distribution Mechanism\"\n\ + means a mechanism generally accepted in the software development community for the electronic\ + \ transfer of data.\n1.5. \"Executable\"\nmeans Covered Code in any form other than Source\ + \ Code.\n1.6. \"Initial Developer\"\nmeans the individual or entity identified as the Initial\ + \ Developer in the Source Code notice required by Exhibit A.\n1.7. \"Larger Work\"\nmeans\ + \ a work which combines Covered Code or portions thereof with code not governed by the terms\ + \ of this License.\n1.8. \"License\"\nmeans this document.\n1.8.1. \"Licensable\"\nmeans\ + \ having the right to grant, to the maximum extent possible, whether at the time of the\ + \ initial grant or subsequently acquired, any and all of the rights conveyed herein.\n1.9.\ + \ \"Modifications\"\nmeans any addition to or deletion from the substance or structure of\ + \ either the Original Code or any previous Modifications. When Covered Code is released\ + \ as a series of files, a Modification is:\nA.\nAny addition to or deletion from the contents\ + \ of a file containing Original Code or previous Modifications.\nB.\nAny new file that contains\ + \ any part of the Original Code, or previous Modifications.\n1.10. \"Original Code\"\nmeans\ + \ Source Code of computer software code which is described in the Source Code notice required\ + \ by Exhibit A as Original Code, and which, at the time of its release under this License\ + \ is not already Covered Code governed by this License.\n1.10.1. \"Patent Claims\"\nmeans\ + \ any patent claim(s), now owned or hereafter acquired, including without limitation, method,\ + \ process, and apparatus claims, in any patent Licensable by grantor.\n1.11. \"Source Code\"\ + \nmeans the preferred form of the Covered Code for making modifications to it, including\ + \ all modules it contains, plus any associated interface definition files, scripts used\ + \ to control compilation and installation of an Executable, or source code differential\ + \ comparisons against either the Original Code or another well known, available Covered\ + \ Code of the Contributor's choice. The Source Code can be in a compressed or archival form,\ + \ provided the appropriate decompression or de-archiving software is widely available for\ + \ no charge.\n1.12. \"You\" (or \"Your\")\nmeans an individual or a legal entity exercising\ + \ rights under, and complying with all of the terms of, this License or a future version\ + \ of this License issued under Section 6.1. For legal entities, \"You\" includes any entity\ + \ which controls, is controlled by, or is under common control with You. For purposes of\ + \ this definition, \"control\" means (a) the power, direct or indirect, to cause the direction\ + \ or management of such entity, whether by contract or otherwise, or (b) ownership of more\ + \ than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\ + 2 SOURCE CODE LICENSE.\n\n2.1. The Initial Developer Grant.\n\nThe Initial Developer hereby\ + \ grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual\ + \ property claims:\n(a)\nunder intellectual property rights (other than patent or trademark)\ + \ Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense\ + \ and distribute the Original Code (or portions thereof) with or without Modifications,\ + \ and/or as part of a Larger Work; and\n(b)\nunder patents now or hereafter owned or controlled\ + \ by Initial Developer, to make, have made, use and sell (\"offer to sell and import\")\ + \ the Original Code, Modifications, or portions thereof, but solely to the extent that any\ + \ such patent is reasonably necessary to enable You to utilize, alone or in combination\ + \ with other software, the Original Code, Modifications, or any combination or portions\ + \ thereof.\n(c)\n(d)\n\n2.2. Contributor Grant.\n\nSubject to third party intellectual property\ + \ claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license\n\ + (a)\nunder intellectual property rights (other than patent or trademark) Licensable by Contributor,\ + \ to use, reproduce, modify, display, perform, sublicense and distribute the Modifications\ + \ created by such Contributor (or portions thereof) either on an unmodified basis, with\ + \ other Modifications, as Covered Code and/or as part of a Larger Work; and\n(b)\nunder\ + \ patents now or hereafter owned or controlled by Contributor, to make, have made, use and\ + \ sell (\"offer to sell and import\") the Contributor Version (or portions thereof), but\ + \ solely to the extent that any such patent is reasonably necessary to enable You to utilize,\ + \ alone or in combination with other software, the Contributor Version (or portions thereof).\n\ + (c)\n(d)\n3 DISTRIBUTION OBLIGATIONS.\n\n3.1. Application of License.\n\nThe Modifications\ + \ which You create or to which You contribute are governed by the terms of this License,\ + \ including without limitation Section 2.2. The Source Code version of Covered Code may\ + \ be distributed only under the terms of this License or a future version of this License\ + \ released under Section 6.1, and You must include a copy of this License with every copy\ + \ of the Source Code You distribute. You may not offer or impose any terms on any Source\ + \ Code version that alters or restricts the applicable version of this License or the recipients'\ + \ rights hereunder. However, You may include an additional document offering the additional\ + \ rights described in Section 3.5. \n\n3.2. Availability of Source Code.\n\nAny Modification\ + \ created by You will be provided to the Initial Developer in Source Code form and are subject\ + \ to the terms of the License. \n\n3.3. Description of Modifications.\n\nYou must cause\ + \ all Covered Code to which You contribute to contain a file documenting the changes You\ + \ made to create that Covered Code and the date of any change. You must include a prominent\ + \ statement that the Modification is derived, directly or indirectly, from Original Code\ + \ provided by the Initial Developer and including the name of the Initial Developer in (a)\ + \ the Source Code, and (b) in any notice in an Executable version or related documentation\ + \ in which You describe the origin or ownership of the Covered Code. \n\n3.4. Intellectual\ + \ Property Matters.\n(a) Third Party Claims.\nIf Contributor has knowledge that a license\ + \ under a third party's intellectual property rights is required to exercise the rights\ + \ granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text\ + \ file with the Source Code distribution titled \"LEGAL\" which describes the claim and\ + \ the party making the claim in sufficient detail that a recipient will know whom to contact.\ + \ If Contributor obtains such knowledge after the Modification is made available as described\ + \ in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor\ + \ makes available thereafter and shall take other steps (such as notifying appropriate mailing\ + \ lists or newsgroups) reasonably calculated to inform those who received the Covered Code\ + \ that new knowledge has been obtained.\n(b) Contributor APIs.\nIf Contributor's Modifications\ + \ include an application programming interface and Contributor has knowledge of patent licenses\ + \ which are reasonably necessary to implement that API, Contributor must also include this\ + \ information in the LEGAL file.\n(c) Representations.\nContributor represents that, except\ + \ as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's\ + \ Modifications are Contributor's original creation(s) and/or Contributor has sufficient\ + \ rights to grant the rights conveyed by this License.\n\n3.5. Required Notices.\n\nYou\ + \ must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible\ + \ to put such notice in a particular Source Code file due to its structure, then You must\ + \ include such notice in a location (such as a relevant directory) where a user would be\ + \ likely to look for such a notice. If You created one or more Modification(s) You may add\ + \ your name as a Contributor to the notice described in Exhibit A. You must also duplicate\ + \ this License in any documentation for the Source Code where You describe recipients' rights\ + \ or ownership rights relating to Covered Code. You may choose to offer, and to charge a\ + \ fee for, warranty, support, indemnity or liability obligations to one or more recipients\ + \ of Covered Code. However, You may do so only on Your own behalf, and not on behalf of\ + \ the Initial Developer or any Contributor. \n\n3.6. Distribution of Executable Versions.\n\ + \nYou may distribute Covered Code in Executable form only if the requirements of Section\ + \ 3.1-3.5 have been met for that Covered Code. You may distribute the Executable version\ + \ of Covered Code or ownership rights under a license of Your choice, which may contain\ + \ terms different from this License, provided that You are in compliance with the terms\ + \ of this License and that the license for the Executable version does not attempt to limit\ + \ or alter the recipient's rights in the Source Code version from the rights set forth in\ + \ this License. If You distribute the Executable version under a different license You must\ + \ make it absolutely clear that any terms which differ from this License are offered by\ + \ You alone, not by the Initial Developer or any Contributor. If you distribute executable\ + \ versions containing Covered Code as part of a product, you must reproduce the notice in\ + \ Exhibit B in the documentation and/or other materials provided with the product. \n\n\ + 3.7. Larger Works.\n\nYou may create a Larger Work by combining Covered Code with other\ + \ code not governed by the terms of this License and distribute the Larger Work as a single\ + \ product. In such a case, You must make sure the requirements of this License are fulfilled\ + \ for the Covered Code. \n\n3.8. Restrictions.\n\nYou may not remove any product identification,\ + \ copyright, proprietary notices or labels from gSOAP.\n4 INABILITY TO COMPLY DUE TO STATUTE\ + \ OR REGULATION.\n\nIf it is impossible for You to comply with any of the terms of this\ + \ License with respect to some or all of the Covered Code due to statute, judicial order,\ + \ or regulation then You must: (a) comply with the terms of this License to the maximum\ + \ extent possible; and (b) describe the limitations and the code they affect. Such description\ + \ must be included in the LEGAL file described in Section 3.4 and must be included with\ + \ all distributions of the Source Code. Except to the extent prohibited by statute or regulation,\ + \ such description must be sufficiently detailed for a recipient of ordinary skill to be\ + \ able to understand it.\n5 APPLICATION OF THIS LICENSE.\n\nThis License applies to code\ + \ to which the Initial Developer has attached the notice in Exhibit A and to related Covered\ + \ Code.\n6 VERSIONS OF THE LICENSE.\n\n6.1. New Versions.\n\nGrantor may publish revised\ + \ and/or new versions of the License from time to time. Each version will be given a distinguishing\ + \ version number. \n\n6.2. Effect of New Versions.\n\nOnce Covered Code has been published\ + \ under a particular version of the License, You may always continue to use it under the\ + \ terms of that version. You may also choose to use such Covered Code under the terms of\ + \ any subsequent version of the License. \n\n6.3. Derivative Works.\n\nIf You create or\ + \ use a modified version of this License (which you may only do in order to apply it to\ + \ code which is not already Covered Code governed by this License), You must (a) rename\ + \ Your license so that the phrase \"gSOAP\" or any confusingly similar phrase do not appear\ + \ in your license (except to note that your license differs from this License) and (b) otherwise\ + \ make it clear that Your version of the license contains terms which differ from the gSOAP\ + \ Public License. (Filling in the name of the Initial Developer, Original Code or Contributor\ + \ in the notice described in Exhibit A shall not of themselves be deemed to be modifications\ + \ of this License.)\n7 DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE\ + \ ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, WHETHER EXPRESS, IMPLIED OR STATUTORY,\ + \ INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, OF FITNESS FOR\ + \ A PARTICULAR PURPOSE, NONINFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY RIGHTS, AND\ + \ ANY WARRANTY THAT MAY ARISE BY REASON OF TRADE USAGE, CUSTOM, OR COURSE OF DEALING. WITHOUT\ + \ LIMITING THE FOREGOING, YOU ACKNOWLEDGE THAT THE SOFTWARE IS PROVIDED \"AS IS\" AND THAT\ + \ THE AUTHORS DO NOT WARRANT THE SOFTWARE WILL RUN UNINTERRUPTED OR ERROR FREE. LIMITED\ + \ LIABILITY THE ENTIRE RISK AS TO RESULTS AND PERFORMANCE OF THE SOFTWARE IS ASSUMED BY\ + \ YOU. UNDER NO CIRCUMSTANCES WILL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL,\ + \ EXEMPLARY OR CONSEQUENTIAL DAMAGES OF ANY KIND OR NATURE WHATSOEVER, WHETHER BASED ON\ + \ CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, ARISING\ + \ OUT OF OR IN ANY WAY RELATED TO THE SOFTWARE, EVEN IF THE AUTHORS HAVE BEEN ADVISED ON\ + \ THE POSSIBILITY OF SUCH DAMAGE OR IF SUCH DAMAGE COULD HAVE BEEN REASONABLY FORESEEN,\ + \ AND NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY EXCLUSIVE REMEDY PROVIDED.\ + \ SUCH LIMITATION ON DAMAGES INCLUDES, BUT IS NOT LIMITED TO, DAMAGES FOR LOSS OF GOODWILL,\ + \ LOST PROFITS, LOSS OF DATA OR SOFTWARE, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION\ + \ OR IMPAIRMENT OF OTHER GOODS. IN NO EVENT WILL THE AUTHORS BE LIABLE FOR THE COSTS OF\ + \ PROCUREMENT OF SUBSTITUTE SOFTWARE OR SERVICES. YOU ACKNOWLEDGE THAT THIS SOFTWARE IS\ + \ NOT DESIGNED FOR USE IN ON-LINE EQUIPMENT IN HAZARDOUS ENVIRONMENTS SUCH AS OPERATION\ + \ OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR CONTROL, OR LIFE-CRITICAL APPLICATIONS.\ + \ THE AUTHORS EXPRESSLY DISCLAIM ANY LIABILITY RESULTING FROM USE OF THE SOFTWARE IN ANY\ + \ SUCH ON-LINE EQUIPMENT IN HAZARDOUS ENVIRONMENTS AND ACCEPTS NO LIABILITY IN RESPECT OF\ + \ ANY ACTIONS OR CLAIMS BASED ON THE USE OF THE SOFTWARE IN ANY SUCH ON-LINE EQUIPMENT IN\ + \ HAZARDOUS ENVIRONMENTS BY YOU. FOR PURPOSES OF THIS PARAGRAPH, THE TERM \"LIFE-CRITICAL\ + \ APPLICATION\" MEANS AN APPLICATION IN WHICH THE FUNCTIONING OR MALFUNCTIONING OF THE SOFTWARE\ + \ MAY RESULT DIRECTLY OR INDIRECTLY IN PHYSICAL INJURY OR LOSS OF HUMAN LIFE. THIS DISCLAIMER\ + \ OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE\ + \ IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n8 TERMINATION.\n\n8.1.\nThis License\ + \ and the rights granted hereunder will terminate automatically if You fail to comply with\ + \ terms herein and fail to cure such breach within 30 days of becoming aware of the breach.\ + \ All sublicenses to the Covered Code which are properly granted shall survive any termination\ + \ of this License. Provisions which, by their nature, must remain in effect beyond the termination\ + \ of this License shall survive.\n8.2.\n8.3.\nIf You assert a patent infringement claim\ + \ against Participant alleging that such Participant's Contributor Version directly or indirectly\ + \ infringes any patent where such claim is resolved (such as by license or settlement) prior\ + \ to the initiation of patent infringement litigation, then the reasonable value of the\ + \ licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account\ + \ in determining the amount or value of any payment or license.\n8.4.\nIn the event of termination\ + \ under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors\ + \ and resellers) which have been validly granted by You or any distributor hereunder prior\ + \ to termination shall survive termination.\n9 LIMITATION OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES\ + \ AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE,\ + \ SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED\ + \ CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT,\ + \ SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION,\ + \ DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND\ + \ ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF\ + \ THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY\ + \ FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE\ + \ LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION\ + \ OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY\ + \ TO YOU.\n10 U.S. GOVERNMENT END USERS.\n\n11 MISCELLANEOUS.\n\n12 RESPONSIBILITY FOR\ + \ CLAIMS.\n\nAs between Initial Developer and the Contributors, each party is responsible\ + \ for claims and damages arising, directly or indirectly, out of its utilization of rights\ + \ under this License and You agree to work with Initial Developer and Contributors to distribute\ + \ such responsibility on an equitable basis. Nothing herein is intended or shall be deemed\ + \ to constitute any admission of liability.\nEXHIBIT A.\n\n\"The contents of this file are\ + \ subject to the gSOAP Public License Version 1.3 (the \"License\"); you may not use this\ + \ file except in compliance with the License. You may obtain a copy of the License at\n\ + http://www.cs.fsu.edu/ engelen/soaplicense.html\nSoftware distributed under the License\ + \ is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or\ + \ implied. See the License for the specific language governing rights and limitations under\ + \ the License.\nThe Original Code of the gSOAP Software is: stdsoap.h, stdsoap2.h, stdsoap.c,\ + \ stdsoap2.c, stdsoap.cpp, stdsoap2.cpp, soapcpp2.h, soapcpp2.c, soapcpp2_lex.l, soapcpp2_yacc.y,\ + \ error2.h, error2.c, symbol2.c, init2.c, soapdoc2.html, and soapdoc2.pdf, httpget.h, httpget.c,\ + \ stl.h, stldeque.h, stllist.h, stlvector.h, stlset.h.\nThe Initial Developer of the Original\ + \ Code is Robert A. van Engelen. Portions created by Robert A. van Engelen are Copyright\ + \ (C) 2001-2004 Robert A. van Engelen, Genivia inc. All Rights Reserved.\nContributor(s):\n\ + \" .\"\n[Note: The text of this Exhibit A may differ slightly form the text of the notices\ + \ in the Source Code files of the Original code. You should use the text of this Exhibit\ + \ A rather than the text found in the Original Code Source Code for Your Modifications.]\n\ + EXHIBIT B.\n\n\"Part of the software embedded in this product is gSOAP software.\nPortions\ + \ created by gSOAP are Copyright (C) 2001-2009 Robert A. van Engelen, Genivia inc. All Rights\ + \ Reserved.\nTHE SOFTWARE IN THIS PRODUCT WAS IN PART PROVIDED BY GENIVIA INC 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.\"" json: gsoap-1.3b.json - yml: gsoap-1.3b.yml + yaml: gsoap-1.3b.yml html: gsoap-1.3b.html - text: gsoap-1.3b.LICENSE + license: gsoap-1.3b.LICENSE - license_key: gstreamer-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-gstreamer-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + The GNOME Music authors hereby grant permission for non-GPL compatible + GStreamer plugins to be used and distributed together with GStreamer + and GNOME Music. This permission is above and beyond the permissions + granted by the GPL license by which GNOME Music is covered. If you + modify this code, you may extend this exception to your version of the + code, but you are not obligated to do so. If you do not wish to do so, + delete this exception statement from your version. json: gstreamer-exception-2.0.json - yml: gstreamer-exception-2.0.yml + yaml: gstreamer-exception-2.0.yml html: gstreamer-exception-2.0.html - text: gstreamer-exception-2.0.LICENSE + license: gstreamer-exception-2.0.LICENSE +- license_key: gstreamer-exception-2005 + category: Permissive + spdx_license_key: GStreamer-exception-2005 + other_spdx_license_keys: [] + is_exception: yes + is_deprecated: no + text: | + The Totem project hereby grant permission for non-gpl compatible GStreamer + plugins to be used and distributed together with GStreamer and Totem. + This permission are above and beyond the permissions granted by the GPL license + Totem is covered by. + json: gstreamer-exception-2005.json + yaml: gstreamer-exception-2005.yml + html: gstreamer-exception-2005.html + license: gstreamer-exception-2005.LICENSE +- license_key: gstreamer-exception-2008 + category: Permissive + spdx_license_key: GStreamer-exception-2008 + other_spdx_license_keys: [] + is_exception: yes + is_deprecated: no + text: | + This project hereby grants permission for non-GPL compatible GStreamer plugins + to be used and distributed together with GStreamer and this project. This + permission is above and beyond the permissions granted by the GPL license by + which this project is covered. If you modify this code, you may extend this + exception to your version of the code, but you are not obligated to do so. + If you do not wish to do so, delete this exception statement from your version. + json: gstreamer-exception-2008.json + yaml: gstreamer-exception-2008.yml + html: gstreamer-exception-2008.html + license: gstreamer-exception-2008.LICENSE - license_key: guile-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-guile-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + The exception is that, if you link the GUILE library with other files to produce + an executable, this does not by itself cause the resulting executable to be + covered by the GNU General Public License. Your use of that executable is in no + way restricted on account of linking the GUILE library code into it. json: guile-exception-2.0.json - yml: guile-exception-2.0.yml + yaml: guile-exception-2.0.yml html: guile-exception-2.0.html - text: guile-exception-2.0.LICENSE + license: guile-exception-2.0.LICENSE - license_key: gust-font-1.0 + category: Copyleft spdx_license_key: LicenseRef-scancode-gust-font-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "This is version 1.0, dated 22 June 2009, of the GUST Font License.\n(GUST is the Polish\ + \ TeX Users Group, http://www.gust.org.pl)\n\nFor the most recent version of this license\ + \ see\nhttp://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt\nor\nhttp://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt\n\ + \nThis work may be distributed and/or modified under the conditions\nof the LaTeX Project\ + \ Public License, either version 1.3c of this\nlicense or (at your option) any later version.\n\ + \nPlease also observe the following clause:\n1) it is requested, but not legally required,\ + \ that derived works be\n distributed only after changing the names of the fonts comprising\ + \ this\n work and given in an accompanying \"manifest\", and that the\n files comprising\ + \ the Work, as listed in the manifest, also be given\n new names. Any exceptions to this\ + \ request are also given in the\n manifest.\n \n We recommend the manifest be given\ + \ in a separate file named\n MANIFEST-.txt, where is some unique identification\n\ + \ of the font family. If a separate \"readme\" file accompanies the Work, \n we recommend\ + \ a name of the form README-.txt.\n\nThe latest version of the LaTeX Project Public\ + \ License is in\nhttp://www.latex-project.org/lppl.txt and version 1.3c or later\nis part\ + \ of all distributions of LaTeX version 2006/05/20 or later." json: gust-font-1.0.json - yml: gust-font-1.0.yml + yaml: gust-font-1.0.yml html: gust-font-1.0.html - text: gust-font-1.0.LICENSE + license: gust-font-1.0.LICENSE - license_key: gust-font-2006-09-30 + category: Copyleft spdx_license_key: LicenseRef-scancode-gust-font-2006-09-30 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "This is a preliminary version (2006-09-30), barring acceptance from\nthe LaTeX Project\ + \ Team and other feedback, of the GUST Font License.\n(GUST is the Polish TeX Users Group,\ + \ http://www.gust.org.pl)\n\nFor the most recent version of this license see\nhttp://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt\n\ + or\nhttp://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt\n\nThis work may be distributed\ + \ and/or modified under the conditions\nof the LaTeX Project Public License, either version\ + \ 1.3c of this\nlicense or (at your option) any later version.\n\nPlease also observe the\ + \ following clause:\n1) it is requested, but not legally required, that derived works be\n\ + \ distributed only after changing the names of the fonts comprising this\n work and\ + \ given in an accompanying \"manifest\", and that the\n files comprising the Work, as\ + \ listed in the manifest, also be given\n new names. Any exceptions to this request are\ + \ also given in the\n manifest.\n \n We recommend the manifest be given in a separate\ + \ file named\n MANIFEST-.txt, where is some unique identification\n \ + \ of the font family. If a separate \"readme\" file accompanies the Work, \n we recommend\ + \ a name of the form README-.txt.\n\nThe latest version of the LaTeX Project Public\ + \ License is in\nhttp://www.latex-project.org/lppl.txt and version 1.3c or later\nis part\ + \ of all distributions of LaTeX version 2006/05/20 or later." json: gust-font-2006-09-30.json - yml: gust-font-2006-09-30.yml + yaml: gust-font-2006-09-30.yml html: gust-font-2006-09-30.html - text: gust-font-2006-09-30.LICENSE + license: gust-font-2006-09-30.LICENSE - license_key: gutenberg-2020 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-gutenberg-2020 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + THE FULL PROJECT GUTENBERG LICENSE + PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + + To protect the Project Gutenberg-tm mission of promoting the free + distribution of electronic works, by using or distributing this work + (or any other work associated in any way with the phrase "Project + Gutenberg"), you agree to comply with all the terms of the Full Project + Gutenberg-tm License available with this file or online at + www.gutenberg.org/license. + + Section 1. General Terms of Use and Redistributing Project Gutenberg-tm electronic works + + 1.A. By reading or using any part of this Project Gutenberg-tm electronic work, you indicate that you have read, understand, agree to and accept all the terms of this license and intellectual property (trademark/copyright) agreement. If you do not agree to abide by all the terms of this agreement, you must cease using and return or destroy all copies of Project Gutenberg-tm electronic works in your possession. If you paid a fee for obtaining a copy of or access to a Project Gutenberg-tm electronic work and you do not agree to be bound by the terms of this agreement, you may obtain a refund from the person or entity to whom you paid the fee as set forth in paragraph 1.E.8. + + 1.B. "Project Gutenberg" is a registered trademark. It may only be used on or associated in any way with an electronic work by people who agree to be bound by the terms of this agreement. There are a few things that you can do with most Project Gutenberg-tm electronic works even without complying with the full terms of this agreement. See paragraph 1.C below. There are a lot of things you can do with Project Gutenberg-tm electronic works if you follow the terms of this agreement and help preserve free future access to Project Gutenberg-tm electronic works. See paragraph 1.E below. + + 1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" or PGLAF), owns a compilation copyright in the collection of Project Gutenberg-tm electronic works. Nearly all the individual works in the collection are in the public domain in the United States. If an individual work is unprotected by copyright law in the United States and you are located in the United States, we do not claim a right to prevent you from copying, distributing, performing, displaying or creating derivative works based on the work as long as all references to Project Gutenberg are removed. Of course, we hope that you will support the Project Gutenberg-tm mission of promoting free access to electronic works by freely sharing Project Gutenberg-tm works in compliance with the terms of this agreement for keeping the Project Gutenberg-tm name associated with the work. You can easily comply with the terms of this agreement by keeping this work in the same format with its attached full Project Gutenberg-tm License when you share it without charge with others. + + [*] This particular work is one of the few individual works protected by copyright law in the United States and most of the remainder of the world, included in the Project Gutenberg collection with the permission of the copyright holder. Information on the copyright owner for this particular work and the terms of use imposed by the copyright holder on this work are set forth at the beginning of this work. + + 1.D. The copyright laws of the place where you are located also govern what you can do with this work. Copyright laws in most countries are in a constant state of change. If you are outside the United States, check the laws of your country in addition to the terms of this agreement before downloading, copying, displaying, performing, distributing or creating derivative works based on this work or any other Project Gutenberg-tm work. The Foundation makes no representations concerning the copyright status of any work in any country outside the United States. + + 1.E. Unless you have removed all references to Project Gutenberg: + + 1.E.1. The following sentence, with active links to, or other immediate access to, the full Project Gutenberg-tm License must appear prominently whenever any copy of a Project Gutenberg-tm work (any work on which the phrase "Project Gutenberg" appears, or with which the phrase "Project Gutenberg" is associated) is accessed, displayed, performed, viewed, copied or distributed: + + This eBook is for the use of anyone anywhere in the United States and most other parts of the world at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Project Gutenberg License included with this eBook or online at www.gutenberg.org. If you are not located in the United States, you’ll have to check the laws of the country where you are located before using this ebook. + + 1.E.2. If an individual Project Gutenberg-tm electronic work is derived from texts not protected by U.S. copyright law (does not contain a notice indicating that it is posted with permission of the copyright holder), the work can be copied and distributed to anyone in the United States without paying any fees or charges. If you are redistributing or providing access to a work with the phrase "Project Gutenberg" associated with or appearing on the work, you must comply either with the requirements of paragraphs 1.E.1 through 1.E.7 or obtain permission for the use of the work and the Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or 1.E.9. + + 1.E.3. If an individual Project Gutenberg-tm electronic work is posted with the permission of the copyright holder, your use and distribution must comply with both paragraphs 1.E.1 through 1.E.7 and any additional terms imposed by the copyright holder. Additional terms will be linked to the Project Gutenberg-tm License for all works posted with the permission of the copyright holder found at the beginning of this work. + + 1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm License terms from this work, or any files containing a part of this work or any other work associated with Project Gutenberg-tm. + + 1.E.5. Do not copy, display, perform, distribute or redistribute this electronic work, or any part of this electronic work, without prominently displaying the sentence set forth in paragraph 1.E.1 with active links or immediate access to the full terms of the Project Gutenberg-tm License. + + 1.E.6. You may convert to and distribute this work in any binary, compressed, marked up, nonproprietary or proprietary form, including any word processing or hypertext form. However, if you provide access to or distribute copies of a Project Gutenberg-tm work in a format other than "Plain Vanilla ASCII" or other format used in the official version posted on the official Project Gutenberg-tm web site (www.gutenberg.org), you must, at no additional cost, fee or expense to the user, provide a copy, a means of exporting a copy, or a means of obtaining a copy upon request, of the work in its original "Plain Vanilla ASCII" or other form. Any alternate format must include the full Project Gutenberg-tm License as specified in paragraph 1.E.1. + + 1.E.7. Do not charge a fee for access to, viewing, displaying, performing, copying or distributing any Project Gutenberg-tm works unless you comply with paragraph 1.E.8 or 1.E.9. + + 1.E.8. You may charge a reasonable fee for copies of or providing access to or distributing Project Gutenberg-tm electronic works provided that + + You pay a royalty fee of 20% of the gross profits you derive from the use of Project Gutenberg-tm works calculated using the method you already use to calculate your applicable taxes. The fee is owed to the owner of the Project Gutenberg-tm trademark, but he has agreed to donate royalties under this paragraph to the Project Gutenberg Literary Archive Foundation. Royalty payments must be paid within 60 days following each date on which you prepare (or are legally required to prepare) your periodic tax returns. Royalty payments should be clearly marked as such and sent to the Project Gutenberg Literary Archive Foundation at the address specified in Section 4, "Information about donations to the Project Gutenberg Literary Archive Foundation." + You provide a full refund of any money paid by a user who notifies you in writing (or by e-mail) within 30 days of receipt that s/he does not agree to the terms of the full Project Gutenberg-tm License. You must require such a user to return or destroy all copies of the works possessed in a physical medium and discontinue all use of and all access to other copies of Project Gutenberg-tm works. + You provide, in accordance with paragraph 1.F.3, a full refund of any money paid for a work or a replacement copy, if a defect in the electronic work is discovered and reported to you within 90 days of receipt of the work. + You comply with all other terms of this agreement for free distribution of Project Gutenberg-tm works. + + 1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm electronic work or group of works on different terms than are set forth in this agreement, you must obtain permission in writing from both the Project Gutenberg Literary Archive Foundation and The Project Gutenberg Trademark LLC, the owner of the Project Gutenberg-tm trademark. Contact the Foundation as set forth in Section 3 below. + + 1.F. + + 1.F.1. Project Gutenberg volunteers and employees expend considerable effort to identify, do copyright research on, transcribe and proofread works not protected by U.S. copyright law in creating the Project Gutenberg-tm collection. Despite these efforts, Project Gutenberg-tm electronic works, and the medium on which they may be stored, may contain "Defects," such as, but not limited to, incomplete, inaccurate or corrupt data, transcription errors, a copyright or other intellectual property infringement, a defective or damaged disk or other medium, a computer virus, or computer codes that damage or cannot be read by your equipment. + + 1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right of Replacement or Refund" described in paragraph 1.F.3, the Project Gutenberg Literary Archive Foundation, the owner of the Project Gutenberg-tm trademark, and any other party distributing a Project Gutenberg-tm electronic work under this agreement, disclaim all liability to you for damages, costs and expenses, including legal fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH DAMAGE. + + 1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a defect in this electronic work within 90 days of receiving it, you can receive a refund of the money (if any) you paid for it by sending a written explanation to the person you received the work from. If you received the work on a physical medium, you must return the medium with your written explanation. The person or entity that provided you with the defective work may elect to provide a replacement copy in lieu of a refund. If you received the work electronically, the person or entity providing it to you may choose to give you a second opportunity to receive the work electronically in lieu of a refund. If the second copy is also defective, you may demand a refund in writing without further opportunities to fix the problem. + + 1.F.4. Except for the limited right of replacement or refund set forth in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE. + + 1.F.5. Some states do not allow disclaimers of certain implied warranties or the exclusion or limitation of certain types of damages. If any disclaimer or limitation set forth in this agreement violates the law of the state applicable to this agreement, the agreement shall be interpreted to make the maximum disclaimer or limitation permitted by the applicable state law. The invalidity or unenforceability of any provision of this agreement shall not void the remaining provisions. + + 1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the trademark owner, any agent or employee of the Foundation, anyone providing copies of Project Gutenberg-tm electronic works in accordance with this agreement, and any volunteers associated with the production, promotion and distribution of Project Gutenberg-tm electronic works, harmless from all liability, costs and expenses, including legal fees, that arise directly or indirectly from any of the following which you do or cause to occur: (a) distribution of this or any Project Gutenberg-tm work, (b) alteration, modification, or additions or deletions to any Project Gutenberg-tm work, and (c) any Defect you cause. + Section 2. Information about the Mission of Project Gutenberg-tm + + Project Gutenberg-tm is synonymous with the free distribution of electronic works in formats readable by the widest variety of computers including obsolete, old, middle-aged and new computers. It exists because of the efforts of hundreds of volunteers and donations from people in all walks of life. + + Volunteers and financial support to provide volunteers with the assistance they need are critical to reaching Project Gutenberg-tm’s goals and ensuring that the Project Gutenberg-tm collection will remain freely available for generations to come. In 2001, the Project Gutenberg Literary Archive Foundation was created to provide a secure and permanent future for Project Gutenberg-tm and future generations. To learn more about the Project Gutenberg Literary Archive Foundation and how your efforts and donations can help, see Sections 3 and 4 and the Foundation information page at www.gutenberg.org + Section 3. Information about the Project Gutenberg Literary Archive Foundation + + The Project Gutenberg Literary Archive Foundation is a non profit 501(c)(3) educational corporation organized under the laws of the state of Mississippi and granted tax exempt status by the Internal Revenue Service. The Foundation’s EIN or federal tax identification number is 64-6221541. Contributions to the Project Gutenberg Literary Archive Foundation are tax deductible to the full extent permitted by U.S. federal laws and your state’s laws. + + The Foundation’s principal office is located at 4557 Melan Dr. S. Fairbanks, AK, 99712., but its volunteers and employees are scattered throughout numerous locations. Its business office is located at 809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up to date contact information can be found at the Foundation’s web site and official page at www.gutenberg.org/contact + + For additional contact information: + + Dr. Gregory B. Newby + Chief Executive and Director + gbnewby@pglaf.org + + Section 4. Information about Donations to the Project Gutenberg Literary Archive Foundation + + Project Gutenberg-tm depends upon and cannot survive without wide spread public support and donations to carry out its mission of increasing the number of public domain and licensed works that can be freely distributed in machine readable form accessible by the widest array of equipment including outdated equipment. Many small donations ($1 to $5,000) are particularly important to maintaining tax exempt status with the IRS. + + The Foundation is committed to complying with the laws regulating charities and charitable donations in all 50 states of the United States. Compliance requirements are not uniform and it takes a considerable effort, much paperwork and many fees to meet and keep up with these requirements. We do not solicit donations in locations where we have not received written confirmation of compliance. To SEND DONATIONS or determine the status of compliance for any particular state visit www.gutenberg.org/donate + + While we cannot and do not solicit contributions from states where we have not met the solicitation requirements, we know of no prohibition against accepting unsolicited donations from donors in such states who approach us with offers to donate. + + International donations are gratefully accepted, but we cannot make any statements concerning tax treatment of donations received from outside the United States. U.S. laws alone swamp our small staff. + + Please check the Project Gutenberg Web pages for current donation methods and addresses. Donations are accepted in a number of other ways including checks, online payments and credit card donations. To donate, please visit: www.gutenberg.org/donate + Section 5. General Information About Project Gutenberg-tm electronic works. + + Professor Michael S. Hart was the originator of the Project Gutenberg-tm concept of a library of electronic works that could be freely shared with anyone. For forty years, he produced and distributed Project Gutenberg-tm eBooks with only a loose network of volunteer support. + + Project Gutenberg-tm eBooks are often created from several printed editions, all of which are confirmed as not protected by copyright in the U.S. unless a copyright notice is included. Thus, we do not necessarily keep eBooks in compliance with any particular paper edition. + + Most people start at our Web site which has the main PG search facility: www.gutenberg.org + + This Web site includes information about Project Gutenberg-tm, including how to make donations to the Project Gutenberg Literary Archive Foundation, how to help produce our new eBooks, and how to subscribe to our email newsletter to hear about new eBooks. + + [*] This paragraph, after 1.C., is included only for copyrighted works. For those, you must contact the copyright holder before any non-free use or removal of the Project Gutenberg header. json: gutenberg-2020.json - yml: gutenberg-2020.yml + yaml: gutenberg-2020.yml html: gutenberg-2020.html - text: gutenberg-2020.LICENSE + license: gutenberg-2020.LICENSE - license_key: h2-1.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-h2-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "H2 License - Version 1.0\n\n\n1. Definitions\n\n1.0.1. \"Commercial Use\" means distribution\ + \ or otherwise making the Covered Code\navailable to a third party.\n\n1.1. \"Contributor\"\ + \ means each entity that creates or contributes to the creation\nof Modifications.\n\n1.2.\ + \ \"Contributor Version\" means the combination of the Original Code, prior\nModifications\ + \ used by a Contributor, and the Modifications made by that\nparticular Contributor.\n\n\ + 1.3. \"Covered Code\" means the Original Code or Modifications or the combination\nof the\ + \ Original Code and Modifications, in each case including portions thereof.\n\n1.4. \"Electronic\ + \ Distribution Mechanism\" means a mechanism generally accepted in\nthe software development\ + \ community for the electronic transfer of data.\n\n1.5. \"Executable\" means Covered Code\ + \ in any form other than Source Code.\n\n1.6. \"Initial Developer\" means the individual\ + \ or entity identified as the\nInitial Developer in the Source Code notice required by Exhibit\ + \ A.\n\n1.7. \"Larger Work\" means a work which combines Covered Code or portions thereof\n\ + with code not governed by the terms of this License.\n\n1.8. \"License\" means this document.\n\ + \n1.8.1. \"Licensable\" means having the right to grant, to the maximum extent\npossible,\ + \ whether at the time of the initial grant or subsequently acquired, any\nand all of the\ + \ rights conveyed herein.\n\n1.9. \"Modifications\" means any addition to or deletion from\ + \ the substance or\nstructure of either the Original Code or any previous Modifications.\ + \ When\nCovered Code is released as a series of files, a Modification is:\n\n1.9.a. Any\ + \ addition to or deletion from the contents of a file containing\nOriginal Code or previous\ + \ Modifications.\n\n1.9.b. Any new file that contains any part of the Original Code or previous\n\ + Modifications.\n\n1.10. \"Original Code\" means Source Code of computer software code which\ + \ is\ndescribed in the Source Code notice required by Exhibit A as Original Code, and\n\ + which, at the time of its release under this License is not already Covered Code\ngoverned\ + \ by this License.\n\n1.10.1. \"Patent Claims\" means any patent claim(s), now owned or\ + \ hereafter\nacquired, including without limitation, method, process, and apparatus claims,\n\ + in any patent Licensable by grantor.\n\n1.11. \"Source Code\" means the preferred form of\ + \ the Covered Code for making\nmodifications to it, including all modules it contains, plus\ + \ any associated\ninterface definition files, scripts used to control compilation and installation\n\ + of an Executable, or source code differential comparisons against either the\nOriginal Code\ + \ or another well known, available Covered Code of the Contributor's\nchoice. The Source\ + \ Code can be in a compressed or archival form, provided the\nappropriate decompression\ + \ or de-archiving software is widely available for no\ncharge.\n\n1.12. \"You\" (or \"Your\"\ + ) means an individual or a legal entity exercising rights\nunder, and complying with all\ + \ of the terms of, this License or a future version\nof this License issued under Section\ + \ 6.1. For legal entities, \"You\" includes any\nentity which controls, is controlled by,\ + \ or is under common control with You.\nFor purposes of this definition, \"control\" means\ + \ (a) the power, direct or\nindirect, to cause the direction or management of such entity,\ + \ whether by\ncontract or otherwise, or (b) ownership of more than fifty percent (50%) of\ + \ the\noutstanding shares or beneficial ownership of such entity.\n\n2. Source Code License\n\ + \n2.1. The Initial Developer Grant\n\nThe Initial Developer hereby grants You a world-wide,\ + \ royalty-free, non-\nexclusive license, subject to third party intellectual property claims:\n\ + \n2.1.a. under intellectual property rights (other than patent or trademark)\nLicensable\ + \ by Initial Developer to use, reproduce, modify, display, perform,\nsublicense and distribute\ + \ the Original Code (or portions thereof) with or\nwithout Modifications, and/or as part\ + \ of a Larger Work; and\n\n2.1.b. under Patents Claims infringed by the making, using or\ + \ selling of\nOriginal Code, to make, have made, use, practice, sell, and offer for sale,\n\ + and/or otherwise dispose of the Original Code (or portions thereof).\n\n2.1.c. the licenses\ + \ granted in this Section 2.1 (a) and (b) are effective on the\ndate Initial Developer first\ + \ distributes Original Code under the terms of this\nLicense.\n\n2.1.d. Notwithstanding\ + \ Section 2.1 (b) above, no patent license is granted: 1)\nfor code that You delete from\ + \ the Original Code; 2) separate from the Original\nCode; or 3) for infringements caused\ + \ by: i) the modification of the Original\nCode or ii) the combination of the Original Code\ + \ with other software or devices.\n\n2.2. Contributor Grant\n\nSubject to third party intellectual\ + \ property claims, each Contributor hereby\ngrants You a world-wide, royalty-free, non-exclusive\ + \ license\n\n2.2.a. under intellectual property rights (other than patent or trademark)\n\ + Licensable by Contributor, to use, reproduce, modify, display, perform,\nsublicense and\ + \ distribute the Modifications created by such Contributor (or\nportions thereof) either\ + \ on an unmodified basis, with other Modifications, as\nCovered Code and/or as part of a\ + \ Larger Work; and\n\n2.2.b. under Patent Claims infringed by the making, using, or selling\ + \ of\nModifications made by that Contributor either alone and/or in combination with\nits\ + \ Contributor Version (or portions of such combination), to make, use, sell,\noffer for\ + \ sale, have made, and/or otherwise dispose of: 1) Modifications made by\nthat Contributor\ + \ (or portions thereof); and 2) the combination of Modifications\nmade by that Contributor\ + \ with its Contributor Version (or portions of such\ncombination).\n\n2.2.c. the licenses\ + \ granted in Sections 2.2 (a) and 2.2 (b) are effective on the\ndate Contributor first makes\ + \ Commercial Use of the Covered Code.\n\n2.2.c. Notwithstanding Section 2.2 (b) above, no\ + \ patent license is granted: 1)\nfor any code that Contributor has deleted from the Contributor\ + \ Version; 2)\nseparate from the Contributor Version; 3) for infringements caused by: i)\ + \ third\nparty modifications of Contributor Version or ii) the combination of\nModifications\ + \ made by that Contributor with other software (except as part of\nthe Contributor Version)\ + \ or other devices; or 4) under Patent Claims infringed\nby Covered Code in the absence\ + \ of Modifications made by that Contributor.\n\n3. Distribution Obligations\n\n3.1. Application\ + \ of License\n\nThe Modifications which You create or to which You contribute are governed\ + \ by\nthe terms of this License, including without limitation Section 2.2. The Source\n\ + Code version of Covered Code may be distributed only under the terms of this\nLicense or\ + \ a future version of this License released under Section 6.1, and You\nmust include a copy\ + \ of this License with every copy of the Source Code You\ndistribute. You may not offer\ + \ or impose any terms on any Source Code version\nthat alters or restricts the applicable\ + \ version of this License or the\nrecipients' rights hereunder. However, You may include\ + \ an additional document\noffering the additional rights described in Section 3.5.\n\n3.2.\ + \ Availability of Source Code\n\nAny Modification which You create or to which You contribute\ + \ must be made\navailable in Source Code form under the terms of this License either on\ + \ the same\nmedia as an Executable version or via an accepted Electronic Distribution\n\ + Mechanism to anyone to whom you made an Executable version available; and if\nmade available\ + \ via Electronic Distribution Mechanism, must remain available for\nat least twelve (12)\ + \ months after the date it initially became available, or at\nleast six (6) months after\ + \ a subsequent version of that particular Modification\nhas been made available to such\ + \ recipients. You are responsible for ensuring\nthat the Source Code version remains available\ + \ even if the Electronic\nDistribution Mechanism is maintained by a third party.\n\n3.3.\ + \ Description of Modifications\n\nYou must cause all Covered Code to which You contribute\ + \ to contain a file\ndocumenting the changes You made to create that Covered Code and the\ + \ date of any\nchange. You must include a prominent statement that the Modification is derived,\n\ + directly or indirectly, from Original Code provided by the Initial Developer and\nincluding\ + \ the name of the Initial Developer in (a) the Source Code, and (b) in\nany notice in an\ + \ Executable version or related documentation in which You\ndescribe the origin or ownership\ + \ of the Covered Code.\n\n3.4. Intellectual Property Matters \n\n3.4.a. Third Party Claims:\ + \ If Contributor has knowledge that a license under a\nthird party's intellectual property\ + \ rights is required to exercise the rights\ngranted by such Contributor under Sections\ + \ 2.1 or 2.2, Contributor must include\na text file with the Source Code distribution titled\ + \ \"LEGAL\" which describes the\nclaim and the party making the claim in sufficient detail\ + \ that a recipient will\nknow whom to contact. If Contributor obtains such knowledge after\ + \ the\nModification is made available as described in Section 3.2, Contributor shall\npromptly\ + \ modify the LEGAL file in all copies Contributor makes available\nthereafter and shall\ + \ take other steps (such as notifying appropriate mailing\nlists or newsgroups) reasonably\ + \ calculated to inform those who received the\nCovered Code that new knowledge has been\ + \ obtained.\n\n3.4.b. Contributor APIs: If Contributor's Modifications include an application\n\ + programming interface and Contributor has knowledge of patent licenses which are\nreasonably\ + \ necessary to implement that API, Contributor must also include this\ninformation in the\ + \ legal file.\n\n3.4.c. Representations: Contributor represents that, except as disclosed\n\ + pursuant to Section 3.4 (a) above, Contributor believes that Contributor's\nModifications\ + \ are Contributor's original creation(s) and/or Contributor has\nsufficient rights to grant\ + \ the rights conveyed by this License.\n\n3.5. Required Notices\n\nYou must duplicate the\ + \ notice in Exhibit A in each file of the Source Code. If\nit is not possible to put such\ + \ notice in a particular Source Code file due to\nits structure, then You must include such\ + \ notice in a location (such as a\nrelevant directory) where a user would be likely to look\ + \ for such a notice. If\nYou created one or more Modification(s) You may add your name as\ + \ a Contributor\nto the notice described in Exhibit A. You must also duplicate this License\ + \ in\nany documentation for the Source Code where You describe recipients' rights or\nownership\ + \ rights relating to Covered Code. You may choose to offer, and to\ncharge a fee for, warranty,\ + \ support, indemnity or liability obligations to one\nor more recipients of Covered Code.\ + \ However, You may do so only on Your own\nbehalf, and not on behalf of the Initial Developer\ + \ or any Contributor. You must\nmake it absolutely clear than any such warranty, support,\ + \ indemnity or liability\nobligation is offered by You alone, and You hereby agree to indemnify\ + \ the\nInitial Developer and every Contributor for any liability incurred by the\nInitial\ + \ Developer or such Contributor as a result of warranty, support,\nindemnity or liability\ + \ terms You offer.\n\n3.6. Distribution of Executable Versions\n\nYou may distribute Covered\ + \ Code in Executable form only if the requirements of\nSections 3.1, 3.2, 3.3, 3.4 and 3.5\ + \ have been met for that Covered Code, and if\nYou include a notice stating that the Source\ + \ Code version of the Covered Code is\navailable under the terms of this License, including\ + \ a description of how and\nwhere You have fulfilled the obligations of Section 3.2. The\ + \ notice must be\nconspicuously included in any notice in an Executable version, related\n\ + documentation or collateral in which You describe recipients' rights relating to\nthe Covered\ + \ Code. You may distribute the Executable version of Covered Code or\nownership rights under\ + \ a license of Your choice, which may contain terms\ndifferent from this License, provided\ + \ that You are in compliance with the terms\nof this License and that the license for the\ + \ Executable version does not attempt\nto limit or alter the recipient's rights in the Source\ + \ Code version from the\nrights set forth in this License. If You distribute the Executable\ + \ version under\na different license You must make it absolutely clear that any terms which\n\ + differ from this License are offered by You alone, not by the Initial Developer\nor any\ + \ Contributor. You hereby agree to indemnify the Initial Developer and\nevery Contributor\ + \ for any liability incurred by the Initial Developer or such\nContributor as a result of\ + \ any such terms You offer.\n\n3.7. Larger Works\n\nYou may create a Larger Work by combining\ + \ Covered Code with other code not\ngoverned by the terms of this License and distribute\ + \ the Larger Work as a single\nproduct. In such a case, You must make sure the requirements\ + \ of this License are\nfulfilled for the Covered Code.\n\n4. Inability to Comply Due to\ + \ Statute or Regulation.\n\nIf it is impossible for You to comply with any of the terms\ + \ of this License with\nrespect to some or all of the Covered Code due to statute, judicial\ + \ order, or\nregulation then You must: (a) comply with the terms of this License to the\n\ + maximum extent possible; and (b) describe the limitations and the code they\naffect. Such\ + \ description must be included in the legal file described in Section\n3.4 and must be included\ + \ with all distributions of the Source Code. Except to\nthe extent prohibited by statute\ + \ or regulation, such description must be\nsufficiently detailed for a recipient of ordinary\ + \ skill to be able to understand\nit.\n\n5. Application of this License.\n\nThis License\ + \ applies to code to which the Initial Developer has attached the\nnotice in Exhibit A and\ + \ to related Covered Code.\n\n6. Versions of the License.\n\n6.1. New Versions\n\nThe H2\ + \ Group may publish revised and/or new versions of the License from time to\ntime. Each\ + \ version will be given a distinguishing version number.\n\n6.2. Effect of New Versions\n\ + \nOnce Covered Code has been published under a particular version of the License,\nYou may\ + \ always continue to use it under the terms of that version. You may also\nchoose to use\ + \ such Covered Code under the terms of any subsequent version of the\nLicense published\ + \ by the H2 Group. No one other than the H2 Group has the right\nto modify the terms applicable\ + \ to Covered Code created under this License.\n\n6.3. Derivative Works\n\nIf You create\ + \ or use a modified version of this License (which you may only do\nin order to apply it\ + \ to code which is not already Covered Code governed by this\nLicense), You must (a) rename\ + \ Your license so that the phrases \"H2 Group\", \"H2\"\nor any confusingly similar phrase\ + \ do not appear in your license (except to note\nthat your license differs from this License)\ + \ and (b) otherwise make it clear\nthat Your version of the license contains terms which\ + \ differ from the H2\nLicense. (Filling in the name of the Initial Developer, Original Code\ + \ or\nContributor in the notice described in Exhibit A shall not of themselves be\ndeemed\ + \ to be modifications of this License.)\n\n7. Disclaimer of Warranty\n\nCovered code is\ + \ provided under this license on an \"as is\" basis, without\nwarranty of any kind, either\ + \ expressed or implied, including, without\nlimitation, warranties that the covered code\ + \ is free of defects, merchantable,\nfit for a particular purpose or non-infringing. The\ + \ entire risk as to the\nquality and performance of the covered code is with you. Should\ + \ any covered code\nprove defective in any respect, you (not the initial developer or any\ + \ other\ncontributor) assume the cost of any necessary servicing, repair or correction.\n\ + This disclaimer of warranty constitutes an essential part of this license. No\nuse of any\ + \ covered code is authorized hereunder except under this disclaimer.\n\n8. Termination\n\ + \n8.1. This License and the rights granted hereunder will terminate automatically\nif You\ + \ fail to comply with terms herein and fail to cure such breach within 30\ndays of becoming\ + \ aware of the breach. All sublicenses to the Covered Code which\nare properly granted shall\ + \ survive any termination of this License. Provisions\nwhich, by their nature, must remain\ + \ in effect beyond the termination of this\nLicense shall survive.\n\n8.2. If You initiate\ + \ litigation by asserting a patent infringement claim\n(excluding declaratory judgment actions)\ + \ against Initial Developer or a\nContributor (the Initial Developer or Contributor against\ + \ whom You file such\naction is referred to as \"Participant\") alleging that:\n\n8.2.a.\ + \ such Participant's Contributor Version directly or indirectly infringes\nany patent, then\ + \ any and all rights granted by such Participant to You under\nSections 2.1 and/or 2.2 of\ + \ this License shall, upon 60 days notice from\nParticipant terminate prospectively, unless\ + \ if within 60 days after receipt of\nnotice You either: (i) agree in writing to pay Participant\ + \ a mutually agreeable\nreasonable royalty for Your past and future use of Modifications\ + \ made by such\nParticipant, or (ii) withdraw Your litigation claim with respect to the\n\ + Contributor Version against such Participant. If within 60 days of notice, a\nreasonable\ + \ royalty and payment arrangement are not mutually agreed upon in\nwriting by the parties\ + \ or the litigation claim is not withdrawn, the rights\ngranted by Participant to You under\ + \ Sections 2.1 and/or 2.2 automatically\nterminate at the expiration of the 60 day notice\ + \ period specified above.\n\n8.2.b. any software, hardware, or device, other than such Participant's\n\ + Contributor Version, directly or indirectly infringes any patent, then any\nrights granted\ + \ to You by such Participant under Sections 2.1(b) and 2.2(b) are\nrevoked effective as\ + \ of the date You first made, used, sold, distributed, or had\nmade, Modifications made\ + \ by that Participant.\n\n8.3. If You assert a patent infringement claim against Participant\ + \ alleging that\nsuch Participant's Contributor Version directly or indirectly infringes\ + \ any\npatent where such claim is resolved (such as by license or settlement) prior to\n\ + the initiation of patent infringement litigation, then the reasonable value of\nthe licenses\ + \ granted by such Participant under Sections 2.1 or 2.2 shall be\ntaken into account in\ + \ determining the amount or value of any payment or license.\n\n8.4. In the event of termination\ + \ under Sections 8.1 or 8.2 above, all end user\nlicense agreements (excluding distributors\ + \ and resellers) which have been\nvalidly granted by You or any distributor hereunder prior\ + \ to termination shall\nsurvive termination.\n\n9. Limitation of Liability\n\nUnder no circumstances\ + \ and under no legal theory, whether tort (including\nnegligence), contract, or otherwise,\ + \ shall you, the initial developer, any other\ncontributor, or any distributor of covered\ + \ code, or any supplier of any of such\nparties, be liable to any person for any indirect,\ + \ special, incidental, or\nconsequential damages of any character including, without limitation,\ + \ damages\nfor loss of goodwill, work stoppage, computer failure or malfunction, or any\ + \ and\nall other commercial damages or losses, even if such party shall have been\ninformed\ + \ of the possibility of such damages. This limitation of liability shall\nnot apply to liability\ + \ for death or personal injury resulting from such party's\nnegligence to the extent applicable\ + \ law prohibits such limitation. Some\njurisdictions do not allow the exclusion or limitation\ + \ of incidental or\nconsequential damages, so this exclusion and limitation may not apply\ + \ to you.\n\n10. United States Government End Users\n\nThe Covered Code is a \"commercial\ + \ item\", as that term is defined in 48 C.F.R.\n2.101 (October 1995), consisting of \"commercial\ + \ computer software\" and\n\"commercial computer software documentation\", as such terms\ + \ are used in 48\nC.F.R. 12.212 (September 1995). Consistent with 48 C.F.R. 12.212 and 48\ + \ C.F.R.\n227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire\n\ + Covered Code with only those rights set forth herein.\n\n11. Miscellaneous\n\nThis License\ + \ represents the complete agreement concerning subject matter hereof.\nIf any provision\ + \ of this License is held to be unenforceable, such provision\nshall be reformed only to\ + \ the extent necessary to make it enforceable. This\nLicense shall be governed by California\ + \ law provisions (except to the extent\napplicable law, if any, provides otherwise), excluding\ + \ its conflict-of-law\nprovisions. With respect to disputes in which at least one party\ + \ is a citizen\nof, or an entity chartered or registered to do business in United States\ + \ of\nAmerica, any litigation relating to this License shall be subject to the\njurisdiction\ + \ of the Federal Courts of the Northern District of California, with\nvenue lying in Santa\ + \ Clara County, California, with the losing party responsible\nfor costs, including without\ + \ limitation, court costs and reasonable attorneys'\nfees and expenses. The application\ + \ of the United Nations Convention on Contracts\nfor the International Sale of Goods is\ + \ expressly excluded. Any law or regulation\nwhich provides that the language of a contract\ + \ shall be construed against the\ndrafter shall not apply to this License.\n\n12. Responsibility\ + \ for Claims\n\nAs between Initial Developer and the Contributors, each party is responsible\ + \ for\nclaims and damages arising, directly or indirectly, out of its utilization of\nrights\ + \ under this License and You agree to work with Initial Developer and\nContributors to distribute\ + \ such responsibility on an equitable basis. Nothing\nherein is intended or shall be deemed\ + \ to constitute any admission of liability.\n\n13. Multiple-Licensed Code\n\nInitial Developer\ + \ may designate portions of the Covered Code as \"Multiple-\nLicensed\". \"Multiple-Licensed\"\ + \ means that the Initial Developer permits you to\nutilize portions of the Covered Code\ + \ under Your choice of this or the\nalternative licenses, if any, specified by the Initial\ + \ Developer in the file\ndescribed in Exhibit A." json: h2-1.0.json - yml: h2-1.0.yml + yaml: h2-1.0.yml html: h2-1.0.html - text: h2-1.0.LICENSE + license: h2-1.0.LICENSE - license_key: hacos-1.2 + category: Copyleft spdx_license_key: LicenseRef-scancode-hacos-1.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + HEALTH ADMINISTRATION CORPORATION OPEN SOURCE LICENSE VERSION 1.2 + + 1. DEFINITIONS. + + "Commercial Use" shall mean distribution or otherwise making the + Covered Software available to a third party. + + "Contributor" shall mean each entity that creates or contributes to + the creation of Modifications. + + "Contributor Version" shall mean in case of any Contributor the + combination of the Original Software, prior Modifications used by a + Contributor, and the Modifications made by that particular Contributor + and in case of Health Administration Corporation in addition the + Original Software in any form, including the form as Executable. + + "Covered Software" shall mean the Original Software or Modifications + or the combination of the Original Software and Modifications, in + each case including portions thereof. + + "Electronic Distribution Mechanism" shall mean a mechanism generally + accepted in the software development community for the electronic + transfer of data. + + "Executable" shall mean Covered Software in any form other than + Source Code. + + "Initial Developer" shall mean the individual or entity identified as + the Initial Developer in the Source Code notice required by Exhibit A. + + "Health Administration Corporation" shall mean the Health + Administration Corporation as established by the Health Administration + Act 1982, as amended, of the State of New South Wales, Australia. The + Health Administration Corporation has its offices at 73 Miller Street, + North Sydney, New South Wales 2059, Australia. + + "Larger Work" shall mean a work, which combines Covered Software or + portions thereof with code not governed by the terms of this License. + + "License" shall mean this document. + + "Licensable" shall mean having the right to grant, to the maximum + extent possible, whether at the time of the initial grant or + subsequently acquired, any and all of the rights conveyed herein. + + "Modifications" shall mean any addition to or deletion from the + substance or structure of either the Original Software or any previous + Modifications. When Covered Software is released as a series of files, + a Modification is: + + a) Any addition to or deletion from the contents of a file + containing Original Software or previous Modifications. + + b) Any new file that contains any part of the Original Software or + previous Modifications. + + "Original Software" shall mean the Source Code of computer software + code which is described in the Source Code notice required by Exhibit + A as Original Software, and which, at the time of its release under + this License is not already Covered Software governed by this License. + + "Patent Claims" shall mean any patent claim(s), now owned or hereafter + acquired, including without limitation, method, process, and apparatus + claims, in any patent Licensable by grantor. + + "Source Code" shall mean the preferred form of the Covered Software + for making modifications to it, including all modules it contains, + plus any associated interface definition files, scripts used to + control compilation and installation of an Executable, or source + code differential comparisons against either the Original Software or + another well known, available Covered Software of the Contributor's + choice. The Source Code can be in a compressed or archival form, + provided the appropriate decompression or de-archiving software is + widely available for no charge. + + "You" (or "Your") shall mean an individual or a legal entity exercising + rights under, and complying with all of the terms of, this License or + a future version of this License issued under Section 6.1. For legal + entities, "You" includes an entity which controls, is controlled + by, or is under common control with You. For the purposes of this + definition, "control" means (a) the power, direct or indirect, + to cause the direction or management of such entity, whether by + contract or otherwise, or (b) ownership of more than fifty per cent + (50%) of the outstanding shares or beneficial ownership of such entity. + + 2. SOURCE CODE LICENSE. + + 2.1 Health Administration Corporation Grant. + + Subject to the terms of this License, Health Administration Corporation + hereby grants You a world-wide, royalty-free, non-exclusive license, + subject to third party intellectual property claims: + + a) under copyrights Licensable by Health Administration Corporation + to use, reproduce, modify, display, perform, sublicense and + distribute the Original Software (or portions thereof) with or without + Modifications, and/or as part of a Larger Work; + + b) and under Patents Claims infringed by the making, using or selling + of Original Software, to make, have made, use, practice, sell, and + offer for sale, and/or otherwise dispose of the Original Software + (or portions thereof). + + c) The licenses granted in this Section 2.1(a) and (b) are effective + on the date Health Administration Corporation first distributes + Original Software under the terms of this License. + + d) Notwithstanding Section 2.1(b) above, no patent license is granted: + 1) for code that You delete from the Original Software; 2) separate + from the Original Software; or 3) for infringements caused by: i) + the modification of the Original Software or ii) the combination of + the Original Software with other software or devices. + + 2.2 Contributor Grant. + + Subject to the terms of this License and subject to third party + intellectual property claims, each Contributor hereby grants You a + world-wide, royalty-free, non-exclusive license: + + a) under copyrights Licensable by Contributor, to use, reproduce, + modify, display, perform, sublicense and distribute the Modifications + created by such Contributor (or portions thereof) either on an + unmodified basis, with other Modifications, as Covered Software and/or + as part of a Larger Work; and + + b) under Patent Claims necessarily infringed by the making, using, + or selling of Modifications made by that Contributor either alone + and/or in combination with its Contributor Version (or portions of + such combination), to make, use, sell, offer for sale, have made, + and/or otherwise dispose of: 1) Modifications made by that Contributor + (or portions thereof); and 2) the combination of Modifications made + by that Contributor with its Contributor Version (or portions of + such combination). + + c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective + on the date Contributor first makes Commercial Use of the Covered + Software. + + d) Notwithstanding Section 2.2(b) above, no patent license is granted: + 1) for any code that Contributor has deleted from the Contributor + Version; 2) separate from the Contributor Version; 3) for infringements + caused by: i) third party modifications of Contributor Version or ii) + the combination of Modifications made by that Contributor with other + software (except as part of the Contributor Version) or other devices; + or 4) under Patent Claims infringed by Covered Software in the absence + of Modifications made by that Contributor. + + 3. DISTRIBUTION OBLIGATIONS. + + 3.1 Application of License. + + The Modifications which You create or to which You contribute are governed + by the terms of this License, including without limitation Section + 2.2. The Source Code version of Covered Software may be distributed + only under the terms of this License or a future version of this License + released under Section 6.1, and You must include a copy of this License + with every copy of the Source Code You distribute. You may not offer or + impose any terms on any Source Code version that alters or restricts the + applicable version of this License or the recipients' rights hereunder. + + 3.2 Availability of Source Code. + + Any Modification which You create or to which You contribute must be made + available in Source Code form under the terms of this License either on + the same media as an Executable version or via an accepted Electronic + Distribution Mechanism to anyone to whom you made an Executable version + available; and if made available via Electronic Distribution Mechanism, + must remain available for at least twelve (12) months after the date it + initially became available, or at least six (6) months after a subsequent + version of that particular Modification has been made available to + such recipients. You are responsible for ensuring that the Source Code + version remains available even if the Electronic Distribution Mechanism + is maintained by a third party. + + 3.3 Description of Modifications. + + You must cause all Covered Software to which You contribute to contain + a file documenting the changes You made to create that Covered Software + and the date of any change. You must include a prominent statement that + the Modification is derived, directly or indirectly, from Original + Software provided by Health Administration Corporation and including + the name of Health Administration Corporation in (a) the Source Code, + and (b) in any notice in an Executable version or related documentation + in which You describe the origin or ownership of the Covered Software. + + 3.4 Intellectual Property Matters + + a) Third Party Claims. + + If Contributor has knowledge that a license under a third party's + intellectual property rights is required to exercise the rights + granted by such Contributor under Sections 2.1 or 2.2, Contributor + must include a text file with the Source Code distribution titled + "LEGAL'' which describes the claim and the party making the claim + in sufficient detail that a recipient will know whom to contact. If + Contributor obtains such knowledge after the Modification is made + available as described in Section 3.2, Contributor shall promptly + modify the LEGAL file in all copies Contributor makes available + thereafter and shall take other steps (such as notifying appropriate + mailing lists or newsgroups) reasonably calculated to inform those + who received the Covered Software that new knowledge has been obtained. + + b) Contributor APIs. + + If Contributor's Modifications include an application programming + interface (API) and Contributor has knowledge of patent licenses + which are reasonably necessary to implement that API, Contributor + must also include this information in the LEGAL file. + + c) Representations. + + Contributor represents that, except as disclosed pursuant to Section + 3.4(a) above, Contributor believes that Contributor's Modifications are + Contributor's original creation(s) and/or Contributor has sufficient + rights to grant the rights conveyed by this License. + + 3.5 Required Notices. + + You must duplicate the notice in Exhibit A in each file of the Source + Code. If it is not possible to put such notice in a particular Source + Code file due to its structure, then You must include such notice in a + location (such as a relevant directory) where a user would be likely to + look for such a notice. If You created one or more Modification(s) You + may add your name as a Contributor to the notice described in Exhibit + A. You must also duplicate this License in any documentation for the + Source Code where You describe recipients' rights or ownership rights + relating to Covered Software. You may choose to offer, and to charge a + fee for, warranty, support, indemnity or liability obligations to one or + more recipients of Covered Software. However, You may do so only on Your + own behalf, and not on behalf of Health Administration Corporation or any + Contributor. You must make it absolutely clear that any such warranty, + support, indemnity or liability obligation is offered by You alone, + and You hereby agree to indemnify Health Administration Corporation and + every Contributor for any liability incurred by Health Administration + Corporation or such Contributor as a result of warranty, support, + indemnity or liability terms You offer. + + 3.6 Distribution of Executable Versions. + + You may distribute Covered Software in Executable form only if the + requirements of Sections 3.1-3.5 have been met for that Covered Software, + and if You include a notice stating that the Source Code version of the + Covered Software is available under the terms of this License, including + a description of how and where You have fulfilled the obligations of + Section 3.2. The notice must be conspicuously included in any notice in + an Executable version, related documentation or collateral in which You + describe recipients' rights relating to the Covered Software. You may + distribute the Executable version of Covered Software or ownership rights + under a license of Your choice, which may contain terms different from + this License, provided that You are in compliance with the terms of this + License and that the license for the Executable version does not attempt + to limit or alter the recipient's rights in the Source Code version from + the rights set forth in this License. If You distribute the Executable + version under a different license You must make it absolutely clear + that any terms which differ from this License are offered by You alone, + not by Health Administration Corporation or any Contributor. You hereby + agree to indemnify Health Administration Corporation and every Contributor + for any liability incurred by Health Administration Corporation or such + Contributor as a result of any such terms You offer. + + 3.7 Larger Works. + + You may create a Larger Work by combining Covered Software with other + software not governed by the terms of this License and distribute the + Larger Work as a single product. In such a case, You must make sure the + requirements of this License are fulfilled for the Covered Software. + + 4. INABILITY TO COMPLY DUE TO STATUTE OR REGULATION. + + If it is impossible for You to comply with any of the terms of this + License with respect to some or all of the Covered Software due to + statute, judicial order, or regulation then You must: (a) comply with the + terms of this License to the maximum extent possible; and (b) describe the + limitations and the code they affect. Such description must be included + in the LEGAL file described in Section 3.4 and must be included with all + distributions of the Source Code. Except to the extent prohibited by + statute or regulation, such description must be sufficiently detailed + for a recipient of ordinary skill to be able to understand it. + + 5. APPLICATION OF THIS LICENSE. + + This License applies to code to which Health Administration Corporation + has attached the notice in Exhibit A and to related Covered Software. + + 6. VERSIONS OF THE LICENSE. + + 6.1 New Versions. + + Health Administration Corporation may publish revised and/or new + versions of the License from time to time. Each version will be given + a distinguishing version number. + + 6.2 Effect of New Versions. + + Once Covered Software has been published under a particular version + of the License, You may always continue to use it under the terms of + that version. You may also choose to use such Covered Software under + the terms of any subsequent version of the License published by Health + Administration Corporation. No one other than Health Administration + Corporation has the right to modify the terms applicable to Covered + Software created under this License. + + 7. DISCLAIMER OF WARRANTY. + + COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS'' BASIS, + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF + DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE + ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS + WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU + (NOT HEALTH ADMINISTRATION CORPORATION, ITS LICENSORS OR AFFILIATES OR + ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR + OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART + OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER + EXCEPT UNDER THIS DISCLAIMER. + + 8. TERMINATION. + + 8.1 This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to + cure such breach within 30 days of becoming aware of the breach. All + sublicenses to the Covered Software which are properly granted shall + survive any termination of this License. Provisions which, by their + nature, must remain in effect beyond the termination of this License + shall survive. + + 8.2 If You initiate litigation by asserting a patent infringement claim + (excluding declatory judgment actions) against Health Administration + Corporation or a Contributor (Health Administration Corporation + or Contributor against whom You file such action is referred to as + "Participant") alleging that: + + a) such Participant's Contributor Version directly or indirectly + infringes any patent, then any and all rights granted by such + Participant to You under Sections 2.1 and/or 2.2 of this License + shall, upon 60 days notice from Participant terminate prospectively, + unless if within 60 days after receipt of notice You either: (i) + agree in writing to pay Participant a mutually agreeable reasonable + royalty for Your past and future use of Modifications made by such + Participant, or (ii) withdraw Your litigation claim with respect to + the Contributor Version against such Participant. If within 60 days + of notice, a reasonable royalty and payment arrangement are not + mutually agreed upon in writing by the parties or the litigation + claim is not withdrawn, the rights granted by Participant to + You under Sections 2.1 and/or 2.2 automatically terminate at the + expiration of the 60 day notice period specified above. + + b) any software, hardware, or device, other than such Participant's + Contributor Version, directly or indirectly infringes any patent, + then any rights granted to You by such Participant under Sections + 2.1(b) and 2.2(b) are revoked effective as of the date You first + made, used, sold, distributed, or had made, Modifications made by + that Participant. + + 8.3 If You assert a patent infringement claim against Participant + alleging that such Participant's Contributor Version directly or + indirectly infringes any patent where such claim is resolved (such as by + license or settlement) prior to the initiation of patent infringement + litigation, then the reasonable value of the licenses granted by such + Participant under Sections 2.1 or 2.2 shall be taken into account in + determining the amount or value of any payment or license. + + 8.4 In the event of termination under Sections 8.1 or 8.2 above, all + end user license agreements (excluding distributors and resellers) which + have been validly granted by You or any distributor hereunder prior to + termination shall survive termination. + + 9. LIMITATION OF LIABILITY. + + 9.1 UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT + (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, HEALTH + ADMINISTRATION CORPORATION, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR + OF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE + TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL + DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS + OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND + ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE + BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY + RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW + PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION + OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, BUT MAY ALLOW + LIABILITY TO BE LIMITED; IN SUCH CASES, A PARTY'S, ITS EMPLOYEES', + LICENSORS' OR AFFILIATES' LIABILITY SHALL BE LIMITED TO AUD$100. NOTHING + CONTAINED IN THIS LICENSE SHALL PREJUDICE THE STATUTORY RIGHTS OF ANY + PARTY DEALING AS A CONSUMER. + + 9.2 Notwithstanding any other clause in the licence, and to the extent + permitted by law: + + (a) Health Administration Corporation ("the Corporation") excludes all + conditions and warranties which would otherwise be implied into + a supply of goods or services arising out of or in relation to + the granting of this licence by the Corporation or any associated + acquisition of software to which this licence relates; + + (b) Where a condition or warranty is implied into such a supply and + that condition or warranty cannot be excluded by law that warranty + or condition is implied into that supply and the liability of the + Health Administration Corporation for a breach of that condition or + warranty is limited to the fullest extent permitted by law and, in + respect of conditions and warranties implied by the Trade Practices + Act (Commonwealth of Australia) 1974, is limited, to the extent + permitted by law, to one or more of the following at the election + of the Corporation: + + (A) In the case of goods: (i) the replacement of the goods or the + supply of equivalent goods; (ii) the repair of the goods; (iii) + the payment of the cost of replacing the goods or of acquiring + equivalent goods; (iv) the payment of the cost of having the + goods repaired; and + + (B) in the case of services: (i) the supplying of the services again; + or (ii) the payment of the cost of having the services supplied + again. + + 10. MISCELLANEOUS. + + This License represents the complete agreement concerning subject matter + hereof. All rights in the Covered Software not expressly granted under + this License are reserved. Nothing in this License shall grant You any + rights to use any of the trademarks of Health Administration Corporation + or any of its Affiliates, even if any of such trademarks are included + in any part of Covered Software and/or documentation to it. + + This License is governed by the laws of the State of New South Wales, + Australia excluding its conflict-of-law provisions. All disputes or + litigation arising from or relating to this Agreement shall be subject + to the jurisdiction of the Supreme Court of New South Wales. If any part + of this Agreement is found void and unenforceable, it will not affect + the validity of the balance of the Agreement, which shall remain valid + and enforceable according to its terms. + + 11. RESPONSIBILITY FOR CLAIMS. + + As between Health Administration Corporation and the Contributors, + each party is responsible for claims and damages arising, directly or + indirectly, out of its utilisation of rights under this License and You + agree to work with Health Administration Corporation and Contributors + to distribute such responsibility on an equitable basis. Nothing herein + is intended or shall be deemed to constitute any admission of liability. + + EXHIBIT A + + The contents of this file are subject to the HACOS License Version 1.2 + (the "License"); you may not use this file except in compliance with + the License. + + Software distributed under the License is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + License for the specific language governing rights and limitations under + the License. + + The Original Software is "NetEpi Analysis". The Initial Developer + of the Original Software is the Health Administration Corporation, + incorporated in the State of New South Wales, Australia. + + Copyright (C) 2004, 2005 Health Administration Corporation. + All Rights Reserved. + Contributors: None. + + APPENDIX 1. DIFFERENCES BETWEEN THE HACOS LICENSE VERSION 1.2, THE + MOZILLA PUBLIC LICENSE VERSION 1.1 AND THE NOKIA OPEN SOURCE LICENSE + (NOKOS LICENSE) VERSION 1.0A + + The HACOS License Version 1.2 was derived from the Mozilla Public + License Version 1.1 using some of the changes to the Mozilla Public + License embodied in the Nokia Open Source License (NOKOS License) + Version 1.0a. The differences between the HACOS License Version 1.2 + (this document), the Mozilla Public License and the NOKOS License are + as follows: + + i. The title of the license was changed to "Health Administration + Corporation Open Source License Version 1.2". + + ii. Globally, all references to "Netscape Communications Corporation", + "Mozilla", "Nokia" and "Nokia Corporation" were changed to "Health + Administration Corporation". + + iii. Globally, the words "means", "Covered Code" and "Covered Software" + as used in the Mozilla Public License were changed to "shall means", + "Covered Code" and "Covered Software" respectively, as used in + the NOKOS License. + + iv. In Section 1 (Definitions), a definition of "Health Administration + Corporation" was added. + + v. In Section 2, the term "intellectual property rights" used in the + Mozilla Public License was replaced by the term "copyrights" + as used in the NOKOS License. + + vi. In Section 2.2 (Contributor Grant), the words "Subject to the + terms of this License" which appear in the NOKOS License were + added to the Mozilla Public License. + + vii. The sentence "However, You may include an additional document + offering the additional rights described in Section 3.5." which + appears in the Mozilla Public License was omitted. + + viii. Section 6.3 (Derivative Works) of the Mozilla Public License, + which permits modifications to the Mozilla Public License, + was omitted. + + ix. The original Section 9 (Limitation of Liability) was renumbered + as Section 9.1, a maximum liability of AUD$100 was specified + for those jurisdictions which do not allow complete exclusion of + liability but which do allow limitation of liability. The sentence + "NOTHING CONTAINED IN THE LICENSE SHALL PREJUDICE THE STATUTORY + RIGHTS OF ANY PARTY DEALING AS A CONSUMER.", which appears in the + NOKOS License but not in the Mozilla Public License, was added. + + x. Section 9.2 was added in order to further limit liability to the + maximum extent permitted by the Commonwealth of Australia Trade + Practices Act 1974. + + xi. Section 10 of the Mozilla Public License, which provides additional + conditions for United States Government End Users, was omitted. + + xii. The governing law and jurisdiction for the settlement of disputes + in Section 11 of the Mozilla Public License and Section 10 of the + NOKOS License was changed to the laws of the State of New South + Wales and the Supreme Court of New South Wales respectively. The + exclusion of the application of the United Nations Convention on + Contracts for the International Sale of Goods which appears in + the Mozilla Public License was omitted. + + xiii. Section 13 (Multiple-Licensed Code) of the Mozilla Public License + was omitted. + + xiv. The provisions for alternative licensing arrangement for contributed + code which appear in Exhibit A of the Mozilla Public License + were omitted. json: hacos-1.2.json - yml: hacos-1.2.yml + yaml: hacos-1.2.yml html: hacos-1.2.html - text: hacos-1.2.LICENSE + license: hacos-1.2.LICENSE - license_key: happy-bunny + category: Permissive spdx_license_key: LicenseRef-scancode-happy-bunny other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + ================================================================================ + The Happy Bunny License (Modified MIT License) + -------------------------------------------------------------------------------- + Copyright (c) G-Truc Creation + + 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. + + Restrictions: + By making use of the Software for military purposes, you choose to make a + Bunny unhappy. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. json: happy-bunny.json - yml: happy-bunny.yml + yaml: happy-bunny.yml html: happy-bunny.html - text: happy-bunny.LICENSE + license: happy-bunny.LICENSE - license_key: haskell-report + category: Permissive spdx_license_key: HaskellReport other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The authors intend this Report to belong to the entire Haskell community, and + so we grant permission to copy and distribute it for any purpose, provided that + it is reproduced in its entirety, including this Notice. Modified versions of + this Report may also be copied and distributed for any purpose, provided that + the modified version is clearly presented as such, and that it does not claim + to be a definition of the Haskell 2010 Language. json: haskell-report.json - yml: haskell-report.yml + yaml: haskell-report.yml html: haskell-report.html - text: haskell-report.LICENSE + license: haskell-report.LICENSE - license_key: hauppauge-firmware-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-hauppauge-firmware-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + END-USER FIRMWARE LICENSE AGREEMENT (this license). + + LICENSE. You may copy and use the Firmware, subject to these conditions: + + 1. This Firmware is licensed for use only in conjunction with + Hauppauge component products. Use of the Firmware in conjunction + with non-Hauppauge component products is not licensed hereunder. + + 2. You may not copy, modify, rent, sell, distribute or transfer any + part of the Firmware except as provided in this Agreement, and you + agree to prevent unauthorized copying of the Firmware. + + 3. You may not reverse engineer, decompile, or disassemble the Firmware. + + 4. You may not sublicense the Firmware. + + 5. The Firmware may contain the firmware or other property of third party + suppliers. + + TRADEMARKS. Except as expressly provided herein, you shall not use + Hauppauge's name in any publications, advertisements, or other + announcements without Hauppauge's prior written consent. You do not + have any rights to use any Hauppauge trademarks or logos. + + OWNERSHIP OF FIRMWARE AND COPYRIGHTS. Title to all copies of the + Firmware remains with Hauppauge or its suppliers. The Firmware is + copyrighted and protected by the laws of the United States and other + countries, and international treaty provisions. You may not remove any + copyright notices from the Firmware. Hauppauge may make changes to the + Firmware, or items referenced therein, at any time without notice, but + is not obligated to support or update the Firmware. Except as + otherwise expressly provided, Hauppauge grants no express or implied + right under Hauppauge patents, copyrights, trademarks, or other + intellectual property rights. You may transfer the Firmware only if a + copy of this license accompanies the Firmware and the recipient agrees + to be fully bound by these terms. + + EXCLUSION OF WARRANTIES. + THE FIRMWARE IS PROVIDED "AS IS" AND POSSIBLY WITH FAULTS. UNLESS + EXPRESSLY AGREED OTHERWISE, HAUPPAUGE AND ITS SUPPLIERS AND LICENSORS + DISCLAIM ANY AND ALL WARRANTIES AND GUARANTEES, EXPRESS, IMPLIED OR + OTHERWISE, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, NONINFRINGEMENT, OR FITNESS FOR A PARTICULAR PURPOSE. + Hauppauge does not warrant or assume responsibility for the accuracy + or completeness of any information, text, graphics, links or other + items contained within the Firmware. You assume all liability, + financial or otherwise, associated with Your use or disposition of the + Firmware. + + LIMITATION OF LIABILITY. IN NO EVENT SHALL HAUPPAUGE OR ITS SUPPLIERS + AND LICENSORS BE LIABLE FOR ANY DAMAGES WHATSOEVER FROM ANY CAUSE OF + ACTION OF ANY KIND (INCLUDING, WITHOUT LIMITATION, LOST PROFITS, + BUSINESS INTERRUPTION, OR LOST INFORMATION) ARISING OUT OF THE USE, + MODIFICATION, OR INABILITY TO USE THE FIRMWARE, OR OTHERWISE, NOR FOR + PUNITIVE, INCIDENTAL, CONSEQUENTIAL, OR SPECIAL DAMAGES OF ANY KIND, + EVEN IF HAUPPAUGE OR ITS SUPPLIERS AND LICENSORS HAVE BEEN ADVISED OF + THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS PROHIBIT EXCLUSION + OR LIMITATION OF LIABILITY FOR IMPLIED WARRANTIES OR CONSEQUENTIAL OR + INCIDENTAL DAMAGES, SO CERTAIN LIMITATIONS MAY NOT APPLY. YOU MAY ALSO + HAVE OTHER LEGAL RIGHTS THAT VARY BETWEEN JURISDICTIONS. + + WAIVER AND AMENDMENT. No modification, amendment or waiver of any + provision of this Agreement shall be effective unless in writing and + signed by an officer of Hauppauge. No failure or delay in exercising + any right, power, or remedy under this Agreement shall operate as a + waiver of any such right, power or remedy. Without limiting the + foregoing, terms and conditions on any purchase orders or similar + materials submitted by you to Hauppauge, and any terms contained in + Hauppauges standard acknowledgment form that are in conflict with + these terms, shall be of no force or effect. + + SEVERABILITY. If any provision of this Agreement is held by a court of + competent jurisdiction to be contrary to law, such provision shall be + changed and interpreted so as to best accomplish the objectives of the + original provision to the fullest extent allowed by law and the + remaining provisions of this Agreement shall remain in full force and + effect. + + EXPORT RESTRICTIONS. Each party acknowledges that the Firmware is + subject to applicable import and export regulations of the United + States and of the countries in which each party transacts business, + specifically including U.S. Export Administration Act and Export + Administration Regulations. Each party shall comply with such laws and + regulations, as well as all other laws and regulations applicable to + the Firmware. Without limiting the generality of the foregoing, each + party agrees that it will not export, re-export, transfer or divert + any of the Firmware or the direct programs thereof to any restricted + place or party in accordance with U.S. export regulations. Note that + Firmware containing encryption may be subject to additional + restrictions. + + APPLICABLE LAWS. Claims arising under this Agreement shall be governed + by the laws of New York, excluding its principles of conflict of laws + and the United Nations Convention on Contracts for the Sale of + Goods. You may not export the Firmware in violation of applicable + export laws and regulations. Hauppauge is not obligated under any + other agreements unless they are in writing and signed by an + authorized representative of Hauppauge. + + GOVERNMENT RESTRICTED RIGHTS. The Firmware is provided with + "RESTRICTED RIGHTS." Use, duplication, or disclosure by the Government + is subject to restrictions as set forth in FAR52.227-14 and + DFAR252.227-7013 et seq. or their successors. Use of the Firmware by + the Government constitutes acknowledgment of Hauppauge's proprietary + rights therein. Contractor or Manufacturer is Hauppauge Computer + Works, Inc. 91 Cabot Court Hauppauge, NY 11788 + + TERMINATION OF THIS AGREEMENT. Hauppauge may terminate this Agreement + at any time if you violate its terms. Upon termination, you will + immediately destroy the Firmware or return all copies of the Firmware + to Hauppauge. json: hauppauge-firmware-eula.json - yml: hauppauge-firmware-eula.yml + yaml: hauppauge-firmware-eula.yml html: hauppauge-firmware-eula.html - text: hauppauge-firmware-eula.LICENSE + license: hauppauge-firmware-eula.LICENSE - license_key: hauppauge-firmware-oem + category: Proprietary Free spdx_license_key: LicenseRef-scancode-hauppauge-firmware-oem other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + OEM/IHV/ISV FIRMWARE LICENSE AGREEMENT + + IMPORTANT - PLEASE READ BEFORE INSTALLING OR USING THIS FIRMWARE + + Do not use or load this firmware image (the "Firmware") until you have + carefully read the following terms and conditions. By loading or using + the Firmware, you agree to the terms of this Agreement. If you do not + wish to so agree, do not install or use the Firmware. + + LICENSEES: Please note: + + * If you are an End-User, only the END-USER FIRMWARE LICENSE AGREEMENT + applies. + + * If you are an Original Equipment Manufacturer (OEM), Independent + Hardware Vendor (IHV), or Independent Firmware Vendor (ISV), the + OEM/IHV/ISV FIRMWARE LICENSE AGREEMENT applies (this license), as + well as the END-USER FIRMWARE LICENSE AGREEMENT. + + LICENSE. This Firmware is licensed for use only in conjunction with + Hauppauge component products. Use of the Firmware in conjunction with + non-Hauppauge component products is not licensed hereunder. Subject to + the terms of this Agreement, Hauppauge grants to you a nonexclusive, + nontransferable, worldwide, fully paid-up license under Hauppauge's + copyrights to: (i) copy the Firmware internally for your own + development and maintenance purposes; (ii) copy and distribute the + Firmware to your end-users, but only under a license agreement with + terms at least as restrictive as those contained in Hauppauge's + END-USER FIRMWARE LICENSE AGREEMENT; and (iii) modify, copy and + distribute the end-user documentation which may accompany the + Firmware, but only in association with the Firmware. + + If you are not the final manufacturer or vendor of a computer system + or firmware program incorporating the Firmware, then you may transfer + a copy of the Firmware, including any related documentation (modified + or unmodified) to your recipient for use in accordance with the terms + of this Agreement, provided such recipient agrees to be fully bound by + the terms hereof. You shall not otherwise assign, sublicense, lease, + or in any other way transfer or disclose Firmware to any third + party. You may not, nor may you assist any other person or entity to + modify, translate, convert to another programming language, decompile, + reverse engineer, or disassemble any portion of the Firmware or + otherwise attempt to derive source code from any object code modules + of the Firmware or any internal data files generated by the + Firmware. Your rights to redistribute the Firmware shall be contingent + upon your installation of this Agreement in its entirety in the same + directory as the Firmware. + + CONTRACTORS. For the purpose of this Agreement, and notwithstanding + anything to the contrary hereunder, solely with respect to the + requirements for compliance with the terms hereunder, any contractors + or consultants that You use to perform the work or otherwise assist + You in the development or products using this Firmware shall be deemed + to be End Users and accordingly, upon receipt of the Firmware, shall + be bound by the terms of the END-USER FIRMWARE LICENSE AGREEMENT. No + additional agreement between You and such consultants or contractors + is required under this Agreement to detail such compliance. + + TRADEMARKS. Except as expressly provided herein, you shall not use + Hauppauge's name in any publications, advertisements, or other + announcements without Hauppauge's prior written consent. You do not + have any rights to use any Hauppauge trademarks or logos. + + OWNERSHIP OF FIRMWARE AND COPYRIGHTS. Firmware and accompanying + materials, if any, are owned by Hauppauge or its suppliers and + licensors and may be protected by copyright, trademark, patent and + trade secret law and international treaties. Any rights, express or + implied, in the intellectual property embodied in the foregoing, other + than those specified in this Agreement, are reserved by Hauppauge and + its suppliers and licensors or otherwise as set forth in any + applicable open source license agreement. You will keep the Firmware + free of liens, attachments, and other encumbrances. You agree not to + remove any proprietary notices and/or any labels from the Firmware and + accompanying materials without prior written approval by Hauppauge + + EXCLUSION OF WARRANTIES. + THE FIRMWARE IS PROVIDED "AS IS" AND POSSIBLY WITH FAULTS. UNLESS + EXPRESSLY AGREED OTHERWISE, HAUPPAUGE AND ITS SUPPLIERS AND LICENSORS + DISCLAIM ANY AND ALL WARRANTIES AND GUARANTEES, EXPRESS, IMPLIED OR + OTHERWISE, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, NONINFRINGEMENT, OR FITNESS FOR A PARTICULAR PURPOSE. + Hauppauge does not warrant or assume responsibility for the accuracy + or completeness of any information, text, graphics, links or other + items contained within the Firmware. You assume all liability, + financial or otherwise, associated with Your use or disposition of the + Firmware. + + LIMITATION OF LIABILITY. IN NO EVENT SHALL HAUPPAUGE OR ITS SUPPLIERS + AND LICENSORS BE LIABLE FOR ANY DAMAGES WHATSOEVER FROM ANY CAUSE OF + ACTION OF ANY KIND (INCLUDING, WITHOUT LIMITATION, LOST PROFITS, + BUSINESS INTERRUPTION, OR LOST INFORMATION) ARISING OUT OF THE USE, + MODIFICATION, OR INABILITY TO USE THE FIRMWARE, OR OTHERWISE, NOR FOR + PUNITIVE, INCIDENTAL, CONSEQUENTIAL, OR SPECIAL DAMAGES OF ANY KIND, + EVEN IF HAUPPAUGE OR ITS SUPPLIERS AND LICENSORS HAVE BEEN ADVISED OF + THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS PROHIBIT EXCLUSION + OR LIMITATION OF LIABILITY FOR IMPLIED WARRANTIES OR CONSEQUENTIAL OR + INCIDENTAL DAMAGES, SO CERTAIN LIMITATIONS MAY NOT APPLY. YOU MAY ALSO + HAVE OTHER LEGAL RIGHTS THAT VARY BETWEEN JURISDICTIONS. + + WAIVER AND AMENDMENT. No modification, amendment or waiver of any + provision of this Agreement shall be effective unless in writing and + signed by an officer of Hauppauge. No failure or delay in exercising + any right, power, or remedy under this Agreement shall operate as a + waiver of any such right, power or remedy. Without limiting the + foregoing, terms and conditions on any purchase orders or similar + materials submitted by you to Hauppauge, and any terms contained in + Hauppauges standard acknowledgment form that are in conflict with + these terms, shall be of no force or effect. + + SEVERABILITY. If any provision of this Agreement is held by a court of + competent jurisdiction to be contrary to law, such provision shall be + changed and interpreted so as to best accomplish the objectives of the + original provision to the fullest extent allowed by law and the + remaining provisions of this Agreement shall remain in full force and + effect. + + EXPORT RESTRICTIONS. Each party acknowledges that the Firmware is + subject to applicable import and export regulations of the United + States and of the countries in which each party transacts business, + specifically including U.S. Export Administration Act and Export + Administration Regulations. Each party shall comply with such laws and + regulations, as well as all other laws and regulations applicable to + the Firmware. Without limiting the generality of the foregoing, each + party agrees that it will not export, re-export, transfer or divert + any of the Firmware or the direct programs thereof to any restricted + place or party in accordance with U.S. export regulations. Note that + Firmware containing encryption may be subject to additional + restrictions. + + APPLICABLE LAWS. Claims arising under this Agreement shall be governed + by the laws of New York, excluding its principles of conflict of laws + and the United Nations Convention on Contracts for the Sale of + Goods. You may not export the Firmware in violation of applicable + export laws and regulations. Hauppauge is not obligated under any + other agreements unless they are in writing and signed by an + authorized representative of Hauppauge. + + GOVERNMENT RESTRICTED RIGHTS. The Firmware is provided with + "RESTRICTED RIGHTS." Use, duplication, or disclosure by the Government + is subject to restrictions as set forth in FAR52.227-14 and + DFAR252.227-7013 et seq. or their successors. Use of the Firmware by + the Government constitutes acknowledgment of Hauppauge's proprietary + rights therein. Contractor or Manufacturer is Hauppauge Computer + Works, Inc. 91 Cabot Court Hauppauge, NY 11788 + + TERMINATION OF THIS AGREEMENT. Hauppauge may terminate this Agreement + at any time if you violate its terms. Upon termination, you will + immediately destroy the Firmware or return all copies of the Firmware + to Hauppauge. json: hauppauge-firmware-oem.json - yml: hauppauge-firmware-oem.yml + yaml: hauppauge-firmware-oem.yml html: hauppauge-firmware-oem.html - text: hauppauge-firmware-oem.LICENSE + license: hauppauge-firmware-oem.LICENSE - license_key: hazelcast-community-1.0 + category: Source-available spdx_license_key: LicenseRef-scancode-hazelcast-community-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: "Hazelcast Community License\n\nVersion 1.0\n\nThis Hazelcast Community License Agreement\ + \ Version 1.0 (the “Agreement”) sets \nforth the terms on which Hazelcast, Inc. (“Hazelcast”)\ + \ makes available certain \nsoftware made available by Hazelcast under this Agreement (the\ + \ “Software”). BY \nINSTALLING, DOWNLOADING, ACCESSING, USING OR DISTRIBUTING ANY OF THE\ + \ SOFTWARE, \nYOU AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT.IF YOU DO NOT AGREE\ + \ TO \nSUCH TERMS AND CONDITIONS, YOU MUST NOT USE THE SOFTWARE. IF YOU ARE RECEIVING \n\ + THE SOFTWARE ON BEHALF OF A LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU \nHAVE THE\ + \ ACTUAL AUTHORITY TO AGREE TO THE TERMS AND CONDITIONS OF THIS \nAGREEMENT ON BEHALF OF\ + \ SUCH ENTITY. “Licensee” means you, an individual, or \nthe entity on whose behalf you\ + \ are receiving the Software.\n\n1. LICENSE GRANT AND CONDITIONS.\n\n1.1 License. Subject\ + \ to the terms and conditions of this Agreement, Hazelcast \nhereby grants to Licensee a\ + \ non-exclusive, royalty-free, worldwide, \nnon-transferable, non-sublicenseable license\ + \ during the term of this Agreement \nto: (a) use the Software; (b) prepare modifications\ + \ and derivative works of \nthe Software; (c) distribute the Software (including without\ + \ limitation in \nsource code or object code form); and (d) reproduce copies of the Software\ + \ (\nthe “License”). Licensee is not granted the right to, and Licensee shall not, \nexercise\ + \ the License for an Excluded Purpose. For purposes of this Agreement, \n“Excluded Purpose”\ + \ means making available any software-as-a-service, \nplatform-as-a-service, infrastructure-as-a-service\ + \ or other similar online \nservice that competes with Hazelcast products or services that\ + \ provide the \nSoftware.\n\n1.2 Conditions. In consideration of the License, Licensee’s\ + \ distribution of \nthe Software is subject to the following conditions:\n\na. Licensee\ + \ must cause any Software modified by Licensee to carry prominent \nnotices stating that\ + \ Licensee modified the Software.\n\nb. On each Software copy, Licensee shall reproduce\ + \ and not remove or alter all \nHazelcast or third party copyright or other proprietary\ + \ notices contained in \nthe Software, and Licensee must provide the notice below with each\ + \ copy.\n\n“This software is made available by Hazelcast, Inc., under the terms of the \n\ + Hazelcast Community License Agreement, Version 1.0 located at \nhttp://hazelcast.com/Hazelcast-community-license.\ + \ BY INSTALLING, DOWNLOADING, \nACCESSING, USING OR DISTRIBUTING ANY OF THE SOFTWARE, YOU\ + \ AGREE TO THE TERMS \nOF SUCH LICENSE AGREEMENT.”\n\n1.3 Licensee Modifications. Licensee\ + \ may add its own copyright notices to \nmodifications made by Licensee and may provide\ + \ additional or different license \nterms and conditions for use, reproduction, or distribution\ + \ of Licensee’s \nmodifications. While redistributing the Software or modifications thereof,\ + \ \nLicensee may choose to offer, for a fee or free of charge, support, warranty, \nindemnity,\ + \ or other obligations.Licensee, and not Hazelcast, will be \nresponsible for any such obligations.\n\ + \n1.4 No Sublicensing. The License does not include the right to sublicense the \nSoftware,\ + \ however, each recipient to which Licensee provides the Software may \nexercise the Licenses\ + \ so long as such recipient agrees to the terms and \nconditions of this Agreement.\n\n\ + 2. TERM AND TERMINATION.\n\nThis Agreement will continue unless and until earlier terminated\ + \ as set forth \nherein. If Licensee breaches any of its conditions or obligations under\ + \ this \nAgreement, this Agreement will terminate automatically and the License will \n\ + terminate automatically and permanently.\n\n3. INTELLECTUAL PROPERTY.\n\nAs between the\ + \ parties, Hazelcast will retain all right, title, and interest \nin the Software, and all\ + \ intellectual property rights therein. Hazelcast \nhereby reserves all rights not expressly\ + \ granted to Licensee in this \nAgreement.Hazelcast hereby reserves all rights in its trademarks\ + \ and service \nmarks, and no licenses therein are granted in this Agreement.\n\n4. DISCLAIMER.\n\ + \nHAZELCAST HEREBY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS, EXPRESS, \nIMPLIED,\ + \ STATUTORY, OR OTHERWISE, AND SPECIFICALLY DISCLAIMS ANY WARRANTY OF \nMERCHANTABILITY\ + \ OR FITNESS FOR A PARTICULAR PURPOSE, WITH RESPECT TO THE \nSOFTWARE.\n\n5. LIMITATION\ + \ OF LIABILITY.\n\nHAZELCAST WILL NOT BE LIABLE FOR ANY DAMAGES OF ANY KIND, INCLUDING BUT\ + \ NOT \nLIMITED TO, LOST PROFITS OR ANY CONSEQUENTIAL, SPECIAL, INCIDENTAL, INDIRECT, \n\ + OR DIRECT DAMAGES, HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, ARISING OUT \nOF THIS\ + \ AGREEMENT. THE FOREGOING SHALL APPLY TO THE EXTENT PERMITTED BY \nAPPLICABLE LAW.\n\n\ + 6. GENERAL.\n\n6.1 Governing Law.This Agreement will be governed by and interpreted in\ + \ \naccordance with the laws of the state of California, without reference to its \nconflict\ + \ of laws principles. If Licensee is located within the United States, \nall disputes arising\ + \ out of this Agreement are subject to the exclusive \njurisdiction of courts located in\ + \ Santa Clara County, California, USA. If \nLicensee is located outside of the United States,\ + \ any dispute, controversy or \nclaim arising out of or relating to this Agreement will\ + \ be referred to and \nfinally determined by arbitration in accordance with the JAMS International\ + \ \nArbitration Rules. The tribunal will consist of one arbitrator.The place of \narbitration\ + \ will be San Francisco, California.The language to be used in the \narbitral proceedings\ + \ will be English.Judgment upon the award rendered by the \narbitrator may be entered in\ + \ any court having jurisdiction thereof.\n\n6.2. Assignment. Licensee is not authorized\ + \ to assign its rights under this \nAgreement to any third party.Hazelcast may freely assign\ + \ its rights under this \nAgreement to any third party.\n\n6.3. Other. This Agreement\ + \ is the entire agreement between the parties \nregarding the subject matter hereof. No\ + \ amendment or modification of this \nAgreement will be valid or binding upon the parties\ + \ unless made in writing and \nsigned by the duly authorized representatives of both parties.\ + \ In the event \nthat any provision, including without limitation any condition, of this\ + \ \nAgreement is held to be unenforceable, this Agreement and all licenses and \nrights\ + \ granted hereunder will immediately terminate. Waiver by Hazelcast of a \nbreach of any\ + \ provision of this Agreement or the failure by Hazelcast to \nexercise any right hereunder\ + \ will not be construed as a waiver of any \nsubsequent breach of that right or as a waiver\ + \ of any other right." json: hazelcast-community-1.0.json - yml: hazelcast-community-1.0.yml + yaml: hazelcast-community-1.0.yml html: hazelcast-community-1.0.html - text: hazelcast-community-1.0.LICENSE + license: hazelcast-community-1.0.LICENSE - license_key: hdf4 + category: Permissive spdx_license_key: LicenseRef-scancode-hdf4 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Redistribution and use in source and binary forms, with or without \nmodification,\ + \ are permitted for any purpose (including commercial purposes) \nprovided that the following\ + \ conditions are met:\n\n1. Redistributions of source code must retain the above copyright\ + \ notice, \n this list of conditions, and the following disclaimer.\n\n2. Redistributions\ + \ in binary form must reproduce the above copyright notice, \n this list of conditions,\ + \ and the following disclaimer in the documentation \n and/or materials provided with\ + \ the distribution.\n\n3. In addition, redistributions of modified forms of the source or\ + \ binary \n code must carry prominent notices stating that the original code was \n \ + \ changed and the date of the change.\n\n4. All publications or advertising materials mentioning\ + \ features or use of \n this software are asked, but not required, to acknowledge that\ + \ it was \n developed by The HDF Group and by the National Center for Supercomputing \n\ + \ Applications at the University of Illinois at Urbana-Champaign and \n credit the contributors.\n\ + \n5. Neither the name of The HDF Group, the name of the University, nor the \n name of\ + \ any Contributor may be used to endorse or promote products derived \n from this software\ + \ without specific prior written permission from The HDF\n Group, the University, or the\ + \ Contributor, respectively.\n\nDISCLAIMER:\nTHIS SOFTWARE IS PROVIDED BY THE HDF GROUP\ + \ AND THE CONTRIBUTORS \"AS IS\" \nWITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED.\ + \ In no event \nshall The HDF Group or the Contributors be liable for any damages suffered\ + \ \nby the users arising out of the use of this software, even if advised of \nthe possibility\ + \ of such damage." json: hdf4.json - yml: hdf4.yml + yaml: hdf4.yml html: hdf4.html - text: hdf4.LICENSE + license: hdf4.LICENSE - license_key: hdf5 + category: Permissive spdx_license_key: LicenseRef-scancode-hdf5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Redistribution and use in source and binary forms, with or without \nmodification,\ + \ are permitted for any purpose (including commercial purposes) \nprovided that the following\ + \ conditions are met:\n\n1. Redistributions of source code must retain the above copyright\ + \ notice, \n this list of conditions, and the following disclaimer.\n\n2. Redistributions\ + \ in binary form must reproduce the above copyright notice, \n this list of conditions,\ + \ and the following disclaimer in the documentation \n and/or materials provided with\ + \ the distribution.\n\n3. Neither the name of The HDF Group, the name of the University,\ + \ nor the \n name of any Contributor may be used to endorse or promote products derived\ + \ \n from this software without specific prior written permission from \n The HDF Group,\ + \ the University, or the Contributor, respectively.\n\nDISCLAIMER: \nTHIS SOFTWARE IS PROVIDED\ + \ BY THE HDF GROUP AND THE CONTRIBUTORS \n\"AS IS\" WITH NO WARRANTY OF ANY KIND, EITHER\ + \ EXPRESSED OR IMPLIED. IN NO EVENT SHALL THE HDF GROUP OR THE CONTRIBUTORS BE LIABLE FOR\ + \ ANY DAMAGES SUFFERED BY THE USERS ARISING OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGE.\n \nYou are under no obligation whatsoever to provide\ + \ any bug fixes, patches, or upgrades to the features, functionality or performance of the\ + \ source code (\"Enhancements\") to anyone; however, if you choose to make your Enhancements\ + \ available either publicly, or directly to The HDF Group, without imposing a separate written\ + \ license agreement for such Enhancements, then you hereby grant the following license:\ + \ a non-exclusive, royalty-free perpetual license to install, use, modify, prepare derivative\ + \ works, incorporate into other computer software, distribute, and sublicense such enhancements\ + \ or derivative works thereof, in binary and source code form." json: hdf5.json - yml: hdf5.yml + yaml: hdf5.yml html: hdf5.html - text: hdf5.LICENSE + license: hdf5.LICENSE - license_key: hdparm + category: Permissive spdx_license_key: LicenseRef-scancode-hdparm other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + You may freely use, modify, and redistribute the hdparm program, as either + binary or source, or both. + + The only condition is that my name and copyright notice remain in the source + code as-is. + + Mark Lord (mlord@pobox.com) json: hdparm.json - yml: hdparm.yml + yaml: hdparm.yml html: hdparm.html - text: hdparm.LICENSE + license: hdparm.LICENSE - license_key: helios-eula + category: Commercial spdx_license_key: LicenseRef-scancode-helios-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "END USER LICENSE AGREEMENT FOR HELIOS SOFTWARE SOLUTIONS SOFTWARE.\n\nIMPORTANT - READ\ + \ CAREFULLY: This Helios Software Solutions End-User License Agreement (\"EULA\") is a legal\ + \ agreement between you (either an individual person or a single legal entity, who will\ + \ be referred to in this EULA as \"You\") and Helios Software Solutions (\"Helios\") for\ + \ the Helios software product that accompanies this EULA, including any associated media,\ + \ printed materials and electronic documentation (the \"Software Product\"). The Software\ + \ Product also includes any software updates, add-on components, web services and/or supplements\ + \ that Helios may provide to You or make available to You after the date You obtain Your\ + \ initial copy of the Software Product to the extent that such items are not accompanied\ + \ by a separate license agreement or terms of use. By installing, copying, downloading,\ + \ accessing or otherwise using the Software Product, You agree to be bound by the terms\ + \ of this EULA. If You do not agree to the terms of this EULA, do not install, access or\ + \ use the Software Product; instead, You should return it, with proof of purchase, to Your\ + \ place of purchase for a full refund.\n\nSOFTWARE PRODUCT LICENSE\nThe Software Product\ + \ is protected by intellectual property laws and treaties. The Software Product is licensed,\ + \ not sold.\n\n1. GRANT OF LICENSE. This Section of the EULA describes Your general\ + \ rights to install and use the Software Product. The license rights described in this Section\ + \ are subject to all other terms and conditions of this EULA.\n\nGeneral License Grant to\ + \ Install and Use Software Product. You may install and use one copy of the Software Product\ + \ on a single computer, device, workstation, terminal, or other digital electronic device\ + \ (\"Device\"). You may make a second copy of the Software Product and install it on a portable\ + \ Device for the exclusive use of the person who is the primary user of the first copy of\ + \ the Software Product. A license for the Software Product may not be shared.\n\nAlternative\ + \ License Grant for Storage/Network Use. As an alternative to the rights granted in the\ + \ previous section, You may install a copy of the Software Product on one storage Device,\ + \ such as a network server, and allow individuals within Your business or enterprise to\ + \ access and use the Software Product from other Devices over a private network, provided\ + \ that You acquire and dedicate a license for the storage Device upon which the Software\ + \ Product is installed and each separate Device from which the Software Product is accessed\ + \ and used. A license for the Software Product may not be used concurrently on different\ + \ Devices unless expressly permitted by this EULA.\n\nSite License. For the purposes of\ + \ this EULA, a \"site\"\x9D is a computer network in a single physical location. If the\ + \ Software Product is licensed with site license terms specified in the applicable price\ + \ list or product packaging for the Software Product, you may make, use and install as many\ + \ additional copies of the Software Product on the number of Client Devices as the site\ + \ license authorizes. You must have a reasonable mechanism in place to ensure that the\ + \ number of Client Devices on which the Software Product has been installed does not exceed\ + \ the number of licenses you have obtained. This license authorizes you to make or download\ + \ one copy of the Documentation for each additional copy authorized by the volume license,\ + \ provided that each such copy contains all of the Documentation's proprietary notices.\n\ + \nReservation of Rights. All rights not expressly granted are reserved by Helios.\n\n2.\ + \ DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS. \nCopy Protection. The Software Product\ + \ may include copy protection technology to prevent the unauthorized copying of the Software\ + \ Product or may require original media for use of the Software Product on the Device. \ + \ It is illegal to make unauthorized copies of the Software Product or to circumvent any\ + \ copy protection technology included in the Software Product.\nLimitations on Reverse Engineering,\ + \ Decompilation, and Disassembly. You may not reverse engineer, decompile, or disassemble\ + \ the Software Product, except and only to the extent that such activity is expressly permitted\ + \ by applicable law notwithstanding this limitation.\n\nSeparation of Component Parts. The\ + \ Software Product is licensed as a single product. Its component parts may not be separated\ + \ for use on more than one Device unless expressly permitted by this EULA.\nSamples. The\ + \ Software Product may be provided with certain \"Samples\" intended to demonstrate use\ + \ of the Software Product or provide a base starting point for use of the Software Product.\ + \ Samples include macros, clip libraries, syntax definition files, or similar items. If\ + \ Samples are provided, they are considered part of the Software Product for purposes of\ + \ this EULA. However, you may use and create derivative works from Samples, provided that\ + \ you do so in conjunction with your use of the Software Product, and that you maintain\ + \ any copyright notices that may be incorporated within the Samples.\n\nTrademarks. This\ + \ EULA does not grant You any rights in connection with any trade marks of Helios.\n\nNo\ + \ rental, leasing or commercial hosting. You may not rent, lease, lend or provide commercial\ + \ hosting services to third parties with the Software Product.\n\nSupport Services. Helios\ + \ may provide You with support services related to the Software Product (\"Support Services\"\ + ). Use of Support Services is governed by the Helios policies and programs described in\ + \ the user manual, in \"online\" documentation, or in other Helios-provided materials. Any\ + \ supplemental software code provided to You as part of the Support Services are considered\ + \ part of the Software Product and subject to the terms and conditions of this EULA. You\ + \ acknowledge and agree that Helios may use technical information You provide to Helios\ + \ as part of the Support Services for its business purposes, including for product support\ + \ and development. Helios will not utilize such technical information in a form that personally\ + \ identifies You.\n\nTerm. If the Software Product that was distributed to you was labeled\ + \ as an EVALUATION VERSION or TRY & BUY VERSION (or its functional equivalent) (an \"Evaluation\ + \ Version\"), the license granted under this EULA commences upon the installation of the\ + \ Software Product and is effective for 30 days following the date you install the Software\ + \ Product (the \"Evaluation Term\"). Evaluation Version Software Products may include software\ + \ code intended to disable their functionality after the expiration of the Evaluation Term.\ + \ You may take no actions to circumvent the operation of such disabling code, and you accept\ + \ all risks that might arise from such disabling code. If the Software Product was not\ + \ distributed as an Evaluation Version, or if you converted an Evaluation Version installation\ + \ of the Software Product to a non-Evaluation Version of the Software Product by authorised\ + \ use of the conversion mechanism provided with the Software Product (in each case either\ + \ being or resulting in a \"Full-License Version\"), the licenses granted under this EULA\ + \ commence upon the installation of the Software Product and are effective in perpetuity\ + \ unless terminated per the terms of this Agreement.\n\nSoftware Transfer. You may permanently\ + \ transfer all of your rights under this EULA (except if your rights are in an Evaluation\ + \ Version), provided you retain no copies, you transfer all copies of the Software Product\ + \ (including all component parts, the media and printed materials, any prior versions, and\ + \ this EULA), and the recipient agrees to be subject to the terms of this EULA. Upon the\ + \ occurrence of such a transfer, your rights under this EULA terminate immediately.\n\n\ + Termination. Upon the expiration of the Evaluation Term (if any), your rights under this\ + \ EULA terminate automatically without notice. Without prejudice to any other rights, Helios\ + \ may terminate this EULA if You fail to comply with the terms and conditions of this EULA.\ + \ In such event, You must destroy all copies of the Software Product and all of its component\ + \ parts. The terms of this paragraph shall survive any termination of this EULA.\n\n3. \ + \ UPGRADES. \nIf the Software Product is labeled as an upgrade, You must be properly licensed\ + \ to use a product identified by Helios as being eligible for the upgrade in order to use\ + \ the Software Product. A Software Product labeled as an upgrade replaces or supplements\ + \ (and may disable) the product that formed the basis for Your eligibility for the upgrade.\ + \ You may use the resulting upgraded product only in accordance with the terms of this EULA.\ + \ If the Software Product is an upgrade of a component of a package of software programs\ + \ that You licensed as a single product, the Software Product may be used and transferred\ + \ only as part of that single product package and may not be separated for use on more than\ + \ one Device.\n\n4. INTELLECTUAL PROPERTY RIGHTS. All title and intellectual property\ + \ rights in and to the Software Product (including but not limited to any images, text,\ + \ and \"applets\" incorporated into the Software Product), the accompanying printed materials,\ + \ and any copies of the Software Product are owned by Helios or its suppliers. All title\ + \ and intellectual property rights in and to the content that is not contained in the Software\ + \ Product, but which may be accessed through use of the Software Product, is the property\ + \ of the respective content owners and may be protected by applicable copyright or other\ + \ intellectual property laws and treaties. This EULA grants You no rights to use such content.\ + \ If this Software Product contains documentation that is provided only in electronic form,\ + \ you may print one copy of such electronic documentation. You may not copy the printed\ + \ materials accompanying the Software Product.\n\n5. BACKUP COPY. After installation\ + \ of one copy of the Software Product pursuant to this EULA, you may keep the original media\ + \ on which the Software Product was provided by Helios solely for backup or archival purposes.\ + \ Except as expressly provided in this EULA, you may not make copies of the Software Product\ + \ or the printed materials accompanying the Software Product.\n\n6. U.S. GOVERNMENT LICENSE\ + \ RIGHTS. The Software Product is commercial computer software developed exclusively at\ + \ private expense, and in all respects is proprietary data belonging to Helios Software\ + \ Solutions or its suppliers. The Software Product is comprised of “commercial computer\ + \ softwareâ€\x9D and “commercial computer software documentationâ€\x9D as such terms are\ + \ used in 48 C.F.R § 12.212. Consistent with 48 C.F.R. § 12.212 and 48 C.F.R. § 227.7202-1\ + \ through § 227.7202-4, all U.S. Government licensees acquire the Software Product with\ + \ only those rights set forth in this EULA.\n\n7. APPLICABLE LAW. This Agreement is governed\ + \ by the laws of England, without reference to conflict of laws principles. The application\ + \ of the United Nations Convention of Contracts for the International Sale of Goods is expressly\ + \ excluded. This Agreement sets forth all rights for the user of the Software Product and\ + \ is the entire agreement between the parties. This Agreement supersedes any other communications\ + \ with respect to the Software Product. This Agreement may not be modified except by a written\ + \ addendum issued by a duly authorized representative of Helios. No provision hereof shall\ + \ be deemed waived unless such waiver shall be in writing and signed by Helios or a duly\ + \ authorized representative of Helios. If any provision of this Agreement is held invalid,\ + \ the remainder of this Agreement shall continue in full force and effect. The parties\ + \ confirm that it is their wish that this Agreement has been written in the English language\ + \ only.\nShould you have any questions concerning these terms and conditions, or if you\ + \ would like to contact Helios for any other reason, please call +44 (1772) 786373, fax\ + \ +44 (1772) 786375, or write to: Helios Software Solutions, PO Box 619 Longridge, PR3\ + \ 2GW, England. http://www.textpad.com/.\n\n9. LIMITED WARRANTY. Helios warrants that\ + \ the SOFTWARE PRODUCT will perform substantially in accordance with the accompanying materials\ + \ for a period of ninety (90) days from the date of receipt. \nIf an implied warranty or\ + \ condition is created by your state/jurisdiction and federal or state/provincial law prohibits\ + \ disclaimer of it, you also have an implied warranty or condition, BUT ONLY AS TO DEFECTS\ + \ DISCOVERED DURING THE PERIOD OF THIS LIMITED WARRANTY (NINETY DAYS). AS TO ANY DEFECTS\ + \ DISCOVERED AFTER THE NINETY (90) DAY PERIOD, THERE IS NO WARRANTY OR CONDITION OF ANY\ + \ KIND. Some states/jurisdictions do not allow limitations on how long an implied warranty\ + \ or condition lasts, so the above limitation may not apply to you.\nAny supplements or\ + \ updates to the SOFTWARE PRODUCT, including without limitation, any (if any) service packs\ + \ or hot fixes provided to you after the expiration of the ninety (90) day Limited Warranty\ + \ period are not covered by any warranty or condition, express, implied or statutory.\n\ + LIMITATION ON REMEDIES; NO CONSEQUENTIAL OR OTHER DAMAGES. Your exclusive remedy for any\ + \ breach of this Limited Warranty is as set forth below. Except for any refund elected\ + \ by Helios, YOU ARE NOT ENTITLED TO ANY DAMAGES, INCLUDING BUT NOT LIMITED TO CONSEQUENTIAL\ + \ DAMAGES, if the Software Product does not meet Helios' Limited Warranty, and, to the maximum\ + \ extent allowed by applicable law, even if any remedy fails of its essential purpose. \ + \ The terms of Section 11 below (\"Exclusion of Incidental, Consequential and Certain Other\ + \ Damages\") are also incorporated into this Limited Warranty. Some states/jurisdictions\ + \ do not allow the exclusion or limitation of incidental or consequential damages, so the\ + \ above limitation or exclusion may not apply to you. This Limited Warranty gives you specific\ + \ legal rights. You may have others which vary from state/jurisdiction to state/jurisdiction.\n\ + YOUR EXCLUSIVE REMEDY. Helios' and its suppliers' entire liability and your exclusive remedy\ + \ shall be, at Helios' option from time to time exercised subject to applicable law, (a)\ + \ return of the price paid (if any) for the Software Product, or (b) repair or replacement\ + \ of the Software Product, that does not meet this Limited Warranty and that is returned\ + \ to Helios with a copy of your receipt. You will receive the remedy elected by Helios\ + \ without charge, except that you are responsible for any expenses you may incur (e.g. cost\ + \ of shipping the Software Product to Helios). This Limited Warranty is void if failure\ + \ of the Software Product has resulted from accident, abuse, misapplication, abnormal use\ + \ or a virus. Any replacement Software Product will be warranted for the remainder of the\ + \ original warranty period or thirty (30) days, whichever is longer. Neither these remedies\ + \ nor any product support services offered by Helios are available without proof of purchase\ + \ from an authorized source. To exercise your remedy, contact: Helios Software Solutions,\ + \ PO Box 619 Longridge, PR3 2GW, England.\n\n10. DISCLAIMER OF WARRANTIES. THE LIMITED\ + \ WARRANTY THAT APPEARS ABOVE IS THE ONLY EXPRESS WARRANTY MADE TO YOU AND IS PROVIDED IN\ + \ LIEU OF ANY OTHER EXPRESS WARRANTIES (IF ANY) CREATED BY ANY DOCUMENTATION OR PACKAGING.\ + \ EXCEPT FOR THE LIMITED WARRANTY AND TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW,\ + \ HELIOS AND ITS SUPPLIERS PROVIDE THE SOFTWARE AND SUPPORT SERVICES (IF ANY) AS IS AND\ + \ WITH ALL FAULTS, AND HEREBY DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS, EITHER EXPRESS,\ + \ IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES,\ + \ DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF ACCURACY\ + \ OR COMPLETENESS OR RESPONSES, OF RESULTS, OF WORKMANLIKE EFFORT, OF LACK OF VIRUSES AND\ + \ OF LACK OF NEGLIGENCE, ALL WITH REGARD TO THE SOFTWARE, AND THE PROVISION OF OR FAILURE\ + \ TO PROVIDE SUPPORT SERVICES. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT,\ + \ QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT WITH REGARD TO THE\ + \ SOFTWARE.\n\n11. EXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER DAMAGES. \ + \ TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL HELIOS OR ITS SUPPLIERS\ + \ BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING,\ + \ BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS OR CONFIDENTIAL OR OTHER INFORMATION,\ + \ FOR BUSINESS INTERRUPTION, FOR PERSONAL INJURY, FOR LOSS OF PRIVACY, FOR FAILURE TO MEET\ + \ ANY DUTY INCLUDING OF GOOD FAITH OR OF REASONABLE CARE, FOR NEGLIGENCE, AND FOR ANY OTHER\ + \ PECUNIARY OR OTHER LOSS WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF\ + \ OR INABILITY TO USE THE SOFTWARE PRODUCT, THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT\ + \ SERVICES, OR OTHERWISE UNDER OR IN CONNECTION WITH ANY PROVISION OF THIS EULA, EVEN IN\ + \ THE EVENT OF THE FAULT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, BREACH OF CONTRACT\ + \ OR BREACH OF WARRANTY OF HELIOS OR ANY SUPPLIER, AND EVEN IF HELIOS OR ANY SUPPLIER HAS\ + \ BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n12. LIMITATION OF LIABILITY AND\ + \ REMEDIES. NOTWITHSTANDING ANY DAMAGES THAT YOU MIGHT INCUR FOR ANY REASON WHATSOEVER\ + \ (INCLUDING, WITHOUT LIMITATION, ALL DAMAGES REFERENCED ABOVE AND ALL DIRECT OR GENERAL\ + \ DAMAGES), THE ENTIRE LIABILITY OF HELIOS AND ANY OF ITS SUPPLIERS UNDER ANY PROVISION\ + \ OF THIS EULA AND YOUR EXCLUSIVE REMEDY FOR ALL OF THE FOREGOING (EXCEPT FOR ANY REMEDY\ + \ OF REPAIR OR REPLACEMENT ELECTED BY HELIOS WITH RESPECT TO ANY BREACH OF THE LIMITED WARRANTY)\ + \ SHAL BE LIMITED TO THE GREATER OF THE AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE OR\ + \ U.S. $5.00. THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS (INCLUDING SECTIONS\ + \ 7, 8, AND 9 ABOVE) SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, EVEN\ + \ IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE.\n\n13. ENTIRE AGREEMENT. This EULA (including\ + \ any addendum or amendment to this EULA which is included with the Software Product) is\ + \ the entire agreement between you and Helios relating to the Software Product and the support\ + \ services (if any) and they supersede all prior or contemporaneous oral or written communications,\ + \ proposals and representations with respect to the Software Product or any other subject\ + \ matter covered by this EULA. To the extent the terms of any Helios policies or programs\ + \ for support services conflict with the terms of this EULA, the terms of this EULA shall\ + \ control." json: helios-eula.json - yml: helios-eula.yml + yaml: helios-eula.yml html: helios-eula.html - text: helios-eula.LICENSE + license: helios-eula.LICENSE - license_key: helix + category: Proprietary Free spdx_license_key: LicenseRef-scancode-helix other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Helix DNA Technology Binary Research Use License + + REDISTRIBUTION NOT PERMITTED + + This Helix DNA Technology Binary Research Use License ("License") is a legal agreement between You and RealNetworks, Inc. and its suppliers and licensors (collectively, "RealNetworks") for the binary versions of the Helix DNA Compiled Binaries distributed under this License ("Software"), which are made available from the "Helix DNA Compiled Binaries" section of the www.helixcommunity.org Web site. "You" means an individual, or a legal entity acting by and through an individual or individuals, exercising rights either under this License. For legal entities, "You" includes any entity that by majority voting interest controls, is controlled by, or is under common control with You. The terms and conditions for this License are as follows: + + By clicking on or accepting the "I AGREE TO THE ABOVE LICENSE TERMS" option below, or by installing, copying or otherwise using the Software, You agree to be bound by the terms of this License Agreement. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE AGREEMENT, CLICK THE "I DO NOT AGREE TO THE ABOVE LICENSE TERMS" BUTTON AND/OR DO NOT INSTALL THE SOFTWARE. + + YOU AGREE THAT YOUR USE OF THE SOFTWARE ACKNOWLEDGES THAT YOU HAVE READ THIS LICENSE, UNDERSTAND IT, AND AGREE TO BE BOUND BY ITS TERMS AND CONDITIONS. + + 1. GRANT OF LICENSE FOR INTERNAL RESEARCH AND DEVELOPMENT WORK. Subject to the restrictions set forth herein, RealNetworks hereby grants to You a non-exclusive, non-sublicensable, personal license to use the Software in object code and any accompanying documentation ("Documentation") solely for Your internal, non-commercial evaluation and research use, provided that You may only install and use a reasonable number of copies of the Software on computers owned or controlled by You and located on Your premises. As part of such use You may combine the Software with other Helix software properly licensed to You under the terms of the RealNetworks Community Source License Agreement or the RealNetworks Public Source License Agreement, but You may not otherwise create derivative works of the Software or Documentation. + + 2. LICENSE RESTRICTIONS. + + a) You may not: (i) permit other individuals to use the Software except under the terms listed above; (ii) modify, translate, reverse engineer, decompile, disassemble or use any other method (including "clean room" development) to learn the source code of the Software (except to the extent that this restriction is expressly prohibited by law); (iii) rent, lease, transfer, or otherwise transfer rights to the Software or Documentation; (iv) remove any proprietary notices or labels on the Software or Documentation; (v) use the Software to encode, reproduce or copy any material or intellectual property You do not have the right to encode, reproduce, or copy; (vi) use the Software to develop any application that has the capability of transcoding or converting RealAudio or RealVideo Files into any other file format ("Transcode" means to alter the current encoding or form of media files that was decoded from its original form, including by way of example but not limited to by way of example but not limited to: decompression of an audio or video stream and recompression using a different compression algorithm); or (vii) make available to any third party the results of any evaluation or testing of the Software by You under this License. Any such forbidden use shall immediately terminate Your license to the Software. + + b) You agree that You shall only use the Software and Documentation in a manner that complies with all applicable laws in the jurisdictions in which You use the Software and Documentation, including, but not limited to, applicable restrictions concerning copyright and other intellectual property rights. + + c) You may not use the Software in an attempt to, or in conjunction with, any device, program or service designed to circumvent technological measures employed to control access to, or the rights in, a digital media content file or other work protected by the copyright laws of any jurisdiction. + + d) Certain components of the Software may embody a serial copying management system required by the laws of the United States. You may not circumvent or attempt to circumvent this system by any means. + + 3. COPIES OF SOFTWARE AND ENHANCEMENTS. This license does not grant You any right to any enhancement or update. + + 4. TITLE. Title, ownership, rights, and intellectual property rights in and to the Software and Documentation shall remain in RealNetworks. The Software is protected by the copyright laws of the United States and international copyright treaties. Title, ownership rights and intellectual property rights in and to the content accessed through the Software including the content contained in the Software media demonstration files shall be retained by the applicable content owner and may be protected by applicable copyright or other law. This license gives You no rights to such content. + + 5. DISCLAIMER OF WARRANTY & LIMIT OF LIABILITY. THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, REALNETWORKS FURTHER DISCLAIMS ALL WARRANTIES, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. THE ENTIRE RISK ARISING OUT OF THE USE OR PERFORMANCE OF THE SOFTWARE AND DOCUMENTATION REMAINS WITH YOU. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL REALNETWORKS OR ITS SUPPLIERS BE LIABLE FOR ANY CONSEQUENTIAL, INCIDENTAL, INDIRECT, SPECIAL, PUNITIVE, OR OTHER DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER PECUNIARY LOSS) ARISING OUT OF THIS LICENSE OR THE USE OF OR INABILITY TO USE THE PRODUCT, EVEN IF REALNETWORKS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. REALNETWORKS' TOTAL LIABLITY FOR ANY DIRECT DAMAGES SHALL NOT EXCEED FIVE DOLLARS ($5.00). BECAUSE SOME STATES/JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU. + + 6. INDEMNIFICATION. This Software is intended for use only with properly licensed media, content and content creation tools. It is Your responsibility to ascertain whether any copyright, patent or other licenses are necessary and to obtain any licenses to such media and content. You agree to use only those materials for which You have the necessary patent, copyright and other permissions, licenses, and/or clearances. You agree to hold harmless, indemnify and defend RealNetworks, its officers, directors and employees, from and against any losses, damages, fines and expenses (including attorneys' fees and costs) arising out of or relating to any claims that You have encoded, copied, compressed, enabled the "Allow Recording" feature, enabled the "Allow Download" feature, or copied, used, published, displayed, or transmitted any content or materials (other than materials provided by RealNetworks specifically for Your use) in connection with the Software in violation of another party's rights If You are importing the Software from the United States, You shall indemnify and hold RealNetworks harmless from and against any import and export duties or other claims arising from such importation. + + 7. TERMINATION. This License and Your right to use this Software automatically terminate if You fail to comply with any material provision of this License. RealNetworks may terminate this License at any time by delivering notice to You and You may terminate this License at any time by destroying or erasing Your copy of the Software. Upon termination of this License, You agree to destroy or erase the Software. + + 8. NO ASSIGNMENT. This License is personal to You, and may not be assigned without RealNetworks' express written consent. + + 9. U.S. GOVERNMENT RESTRICTED RIGHTS. U.S. GOVERNMENT RESTRICTED RIGHTS: This Software and documentation are provided with RESTRICTED RIGHTS. Use, duplication or disclosure by the Government is subject to restrictions set forth in subparagraphs (a) through (d) of the Commercial Computer Software--Restricted Rights at FAR 52.227-19 when applicable, or in subparagraph (c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013, and in similar clauses in the NASA FAR supplement, as applicable. Manufacturer is RealNetworks, Inc./2601 Elliott, Suite 1000/Seattle, Washington 98121. You are responsible for complying with all trade regulations and laws both foreign and domestic. You acknowledge that none of the Software or underlying information or technology may be downloaded or otherwise exported or re-exported (i) into (or to a national or resident of) Cuba, Iraq, Libya, Sudan, North Korea, Iran, Syria or any other country subject to a U.S. embargo; or (ii) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Commerce Department's Denied Parties List or Entity List. By using the Software You are agreeing to the foregoing and are representing and warranting that (i) no U.S. federal agency has suspended, revoked, or denied You export privileges, (ii) You are not located in or under the control of a national or resident of any such country or on any such list, and (iii) You will not export or re-export the Software to any prohibited county, or to any prohibited person, entity, or end-user as specified by U.S. export controls. + + 10. MISCELLANEOUS. This License Agreement shall constitute the complete and exclusive agreement between us. A separate written agreement with respect to the subject matter hereof shall supersede this instrument to the extent indicated in such separate agreement. This License Agreement may not be modified except in a writing duly signed by an authorized representative of RealNetworks and You. If any provision of this License Agreement is held to be unenforceable for any reason, such provision shall be reformed only to the extent necessary to make it enforceable, and such decision shall not affect the enforceability of such provision under other circumstances, or of the remaining provisions hereof under all circumstances. This License Agreement shall be governed by the laws of the State of Washington without regard to conflicts of law provisions and You consent to the exclusive jurisdiction of the state and federal courts sitting in the State of Washington. This License Agreement will not be governed by the United Nations Convention of Contracts for the International Sale of Goods, the application of which is hereby expressly excluded. + + Copyright ©1995-2002 RealNetworks, Inc. and/or its suppliers. 2601 Elliott Avenue, Suite 1000, Seattle, Washington 98121 U.S.A. The Software may incorporate one or more of the following patents: U.S. Patent #5,917,835; U.S. Patent # 5,854,858; U.S. Patent # 5,917,954. Other U.S. patents pending. All rights reserved. RealNetworks, Helix, RealAudio, and RealVideo are trademarks or registered trademarks of RealNetworks, Inc. json: helix.json - yml: helix.yml + yaml: helix.yml html: helix.html - text: helix.LICENSE + license: helix.LICENSE - license_key: henry-spencer-1999 + category: Permissive spdx_license_key: Spencer-99 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Development of this software was funded, in part, by Cray Research Inc., + UUNET Communications Services Inc., Sun Microsystems Inc., and Scriptics + Corporation, none of whom are responsible for the results. The author + thanks all of them. + + Redistribution and use in source and binary forms - with or without + modification - are permitted for any purpose, provided that redistributions + in source form retain this entire copyright notice and indicate the origin + and nature of any modifications. + + I'd appreciate being given credit for this package in the documentation of + software which uses it, but that is not a requirement. + + THIS SOFTWARE IS PROVIDED ``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 + HENRY SPENCER 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. json: henry-spencer-1999.json - yml: henry-spencer-1999.yml + yaml: henry-spencer-1999.yml html: henry-spencer-1999.html - text: henry-spencer-1999.LICENSE + license: henry-spencer-1999.LICENSE - license_key: here-disclaimer + category: Unstated License spdx_license_key: LicenseRef-scancode-here-disclaimer other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Unstated License + text: | + This content is provided "as-is" and without warranties of any kind, either + express or implied, including, but not limited to, the implied warranties of + merchantability, fitness for a particular purpose, satisfactory quality and non- + infringement. HERE does not warrant that the content is error free and HERE does + not warrant or make any representations regarding the quality, correctness, + accuracy, or reliability of the content. You should therefore verify any + information contained in the content before acting on it. To the furthest extent + permitted by law, under no circumstances, including without limitation the + negligence of HERE, shall HERE be liable for any damages, including, without + limitation, direct, special, indirect, punitive, consequential, exemplary and/ + or incidental damages that result from the use or application of this content, + even if HERE or an authorized representative has been advised of the possibility + of such damages. json: here-disclaimer.json - yml: here-disclaimer.yml + yaml: here-disclaimer.yml html: here-disclaimer.html - text: here-disclaimer.LICENSE + license: here-disclaimer.LICENSE - license_key: here-proprietary + category: Commercial spdx_license_key: LicenseRef-scancode-here-proprietary other_spdx_license_keys: - LicenseRef-Proprietary-HERE is_exception: no is_deprecated: no - category: Commercial + text: | + This software and other materials contain proprietary information + controlled by HERE and are protected by applicable copyright legislation. + Any use and utilization of this software and other materials and + disclosure to any third parties is conditional upon having a separate + agreement with HERE for the access, use, utilization or disclosure of this + software. In the absence of such agreement, the use of the software is not + allowed. json: here-proprietary.json - yml: here-proprietary.yml + yaml: here-proprietary.yml html: here-proprietary.html - text: here-proprietary.LICENSE + license: here-proprietary.LICENSE - license_key: hessla + category: Proprietary Free spdx_license_key: LicenseRef-scancode-hessla other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION, USE AND/OR MODIFICATION + + 0. DEFINITIONS. The following are defined terms that, whenever used in + this License Agreement, have the following meanings: + + 0.1 Author: "Author" shall mean the copyright holder of an Original + Work (the "Program") released by the Author under this License + Agreement. + + 0.2 Copy: "Copy" shall mean everything and anything that constitutes a + copy according to copyright law, without limitation. A "copy" does not + become anything other than a "copy" merely because, for example, a + governmental or institutional employee duplicates the Program or a + part of it for another employee of the same institution or + Governmental Entity, or merely because it is copied from one computer + to another, or from one medium to another, or multiple copies are made + on the same medium, within the same institutional or Governmental + Entity. + + 0.3 Derivative Work: A "Derivative Work" or "work based on the + Program" shall mean either the Program itself or any 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."). In the + unlikely event that, and to the extent that, this contractual + definition of "Derivative Work" is later determined by any tribunal or + dispute-resolution body to be different is scope from the meaning of + "derivative work" under the copyright law of any country, then the + broadest and most encompassing possible definition either the + contractual definition of "Derivative Work," or any broader and more + encompassing statutory or legal definition, shall control. Acceptance + of this contractually-defined scope of the term "Derivative Work" is a + mandatory pre-condition for You to receive any of the benefits offered + by this License Agreement. + + 0.3.1 Mere aggregation of another work not based on the Program with + the Program (or with a Derivative 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 Agreement. + + 0.4 License Agreement: When used in this License Agreement, the terms + "this License" or "this License Agreement" shall mean The Hactivismo + Enhanced-Source Software License Agreement, v. 0.1, or any subsequent + version made applicable under the terms of Section 15. + + 0.5 Licensee: The term "Licensee" shall mean You or any other + Licensee, whether or not a Qualified Licensee. + + 0.6 Original Work: "Original Work" shall mean a Program or other work + of authorship, or portion thereof, that is not a Derivative Work. + + 0.7 Program: The "Program," to which this License Agreement applies, + is the Original Work (including, but not limited to, computer + software) released by the Author under this License Agreement. + + 0.8 Qualified Licensee: A "Qualified Licensee" means a Licensee that + remains in full compliance with all terms and conditions of this + License Agreement. You are no longer a Qualified Licensee if, at any + time, You violate any terms of this License Agreement. Neither the + Program nor any Software based on the Program may be copied, + distributed, performed, displayed, used or modified by You, even for + Your own purposes, unless You are a Qualified Licensee. A Licensee + other than a Qualified Licensee remains subject to all terms and + conditions of this License Agreement, and to all remedies for each + cumulative violation as set forth herein. Loss of the status of + Qualified Licensee signifies that violation of any terms of the + License Agreement subjects a Licensee to loss of most of the benefits + that Qualified Licensees enjoy under this License Agreement, and to + additional remedies for all violations occurring after the first + violation. + + 0.9 Software: "Software" or "the Software" shall mean the Program, any + Derivative Work based on the Program or a portion thereof, and/or any + modified version of the Program or portion thereof, without + limitation. + + 0.10 Source Code: The term "Source Code" shall mean the preferred form + of a Program or Original Work for making modifications to it and all + available documentation describing how to access and modify that + Program or Original Work. + + 0.10.1 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. + + 0.10.2 "Object Code:" Because of certain peculiarities of current + export-control rules, "object code" of the Program, or any modified + version of the Program, or Derivative Work based on the Program, must + not be exported except by way of distribution that is ancillary to the + distribution of the Source Code. The "Source Code" shall be understood + as the primary content transferred or exported by You, and the "object + code" shall be considered as merely an ancillary component of any such + export distribution. + + 0.11 Strong Cryptography: "Strong Cryptography" shall mean + cryptography no less secure than (for example, and without limitation) + a 2048-bit minimum key size for RSA encryption, 1024-bit minimum key + size for Diffie-Hellman (El Gamal), or a 256-bit minimum key size for + AES and similar symmetric ciphers. + + 0.12 Substandard Key-Selection Technique: The term "Substandard + Key-Selection Technique" shall mean a method or technique to cause + encryption keys to be more easily guessed or less secure, such as by + (i) causing the selection of keys to be less than random, or (ii) + employing a selection process that selects among only a subset of + possible keys, instead of from among the largest set of possible keys + that can securely be used consistent with contemporary knowledge about + the cryptographic techniques employed by You. The following + illustrations elaborate on the foregoing definition: + + 0.12.1 If the key-generation or key-selection technique for the + encryption algorithm You employ involves the selection of one or more + prime numbers, or involves one or more mathematical functions or + concatenations performed on one or more prime numbers, then each prime + number should be selected from a very large set of candidate prime + numbers, but not necessarily from the set of all possible prime + numbers (e.g., inclusion of the number 1 in the candidate set, for + example, may in some instances reduce rather than enhance security), + and absolutely not from any artificially small set of candidate primes + that makes the guessing of a key easier than would be the case if a + secure key-generation technique were employed. In all instances, the + primes should be selected at random from among the candidate set. If + there is a customary industry standard for maximizing the security + associated with the key-generation or key-selection technique for the + cryptosystem You select, then (with attention also to the requirements + of Section 0.11), You should employ a key-generation or selection + technique no less secure than the customary industry standard for + secure use of the cryptosystem. + + 0.12.2 If the key-generation or key-selection technique for the + encryption algorithm You employ involves the selection of a random + integer, or the transformation of a random integer through one or more + mathematical processes, then the selection of the integer shall be at + random from the largest possible set of all possible integers + consistent with the secure functioning of the encryption algorithm. It + shall not be selected from an artificially small set of integers + (e.g., if a 256-bit random integer serves as the key, then You could + not set 200 of the 256 bits as "0," and randomly generate only the + remaining 56 bits producing effectively a 56-bit keylength instead of + using the full 256 bits). + + 0.12.3 In other words, Your key-generation technique must promote + security to the maximum extent permitted by the cryptographic + method(s) and keylength You elect to employ, rather than facilitating + eavesdropping or surveillance in any way. The example of GSM + telephones, in which 16 of 56 bits in each encryption key were set at + "0," thereby reducing the security of the system by a factor of + 65,536, is particularly salient. Such artificial techniques to reduce + the security of a cryptosystem by selecting keys from only a + less-secure or suboptimal subset of possible keys, is prohibited and + will violate this License Agreement if any such technique is employed + in any Software. + + 0.13 You: Each Licensee (including, without limitation, Licensees that + have violated the License Agreement and who are no longer Qualified + Licensees, but who nevertheless remain subject to all requirements of + this License Agreement and to all cumulative remedies for each + successive violation), is referred to as "You." + + 0.13.1 Governmental Entity: "You" explicitly includes any and all + "Governmental Entities," without limitation. "Governmental Entity" or + "Governmental Entities," when used in this License Agreement, shall + mean national governments, sub-national governments (for example, and + without limitation, provincial, state, regional, local and municipal + governments, autonomous governing units, special districts, and other + such entities), governmental subunits (without limitation, + governmental agencies, offices, departments, government corporations, + and the like), supra-national governmental entities such as the + European Union, and entities through which one or more governments + perform governmental functions or exercise governmental power in + coordination, cooperation or unison. + + 0.13.2 Governmental Person: "You" also explicitly includes + "Governmental Persons." The terms "Governmental Person" or + "Governmental Persons," when used in this License Agreement, shall + mean the officials, officers, employees, representatives, contractors + and agents of any Governmental Entity. + + 1. Application of License Agreement. This License Agreement applies to + any Program or other Original Work of authorship that contains a + notice placed by the Author saying it may be distributed under the + terms of this License Agreement. The preferred manner of placing such + a notice is to include the following statement immediately after the + copyright notice for such an Original Work: + + "Licensed under the Hacktivismo Enhanced-Source Software License + Agreement, Version 0.1" + + 2. Means of Acceptance Use, Copying, Distribution or Modification By + Anyone Constitutes Acceptance. Subject to Section 14.1 (concerning the + special case of certain Governmental Entities) any copying, + modification, distribution, or use by You of the Program or any + Software, shall constitute Your acceptance of all terms and conditions + of this License Agreement. + + 2.1 As a Licensee, You may not authorize, permit, or enable any person + to use the Program or any Software or Derivative Work based on it + (including any use of Your copy or copies of the Program) unless such + person has accepted this License Agreement and has become a Licensee + subject to all its terms and conditions. + + 2.2 You may not make any copy for Your own use unless You have + accepted this License Agreement and subjected yourself to all its + terms and conditions. + + 2.3 You may not make a copy for the use of any other person, or + transfer a copy to any other person, unless such person is a Licensee + that has accepted this License Agreement and such person is subject to + all terms and conditions of this License Agreement. + + 2.4 It is not the position of Hacktivismo that copyright law confers + an exclusive right to use, as opposed to the exclusive right to copy + the Software. However, for purposes of contract law, any use of the + Software shall be considered to constitute acceptance of this License + Agreement. Moreover, all copying is prohibited unless the recipient of + a copy has accepted the License Agreement. Because each such recipient + Licensee is contractually obligated not to permit anyone to access, + use, or secure a copy of the Software, without first accepting the + terms and conditions of this License Agreement, use by non-Licensees + is effectively prohibited contractually because nobody can obtain a + copy of, or access to a copy of, any Software without (1) accepting + the License Agreement through use, and (2) triggering some Licensee's + obligation to require acceptance as a precondition of copying or + access. + + 3. "Qualified Licensee" Requirement: Neither the Program nor any + Software or Derivative Work based on the Program may be copied, + distributed, displayed, performed, used or modified by You, even for + Your own purposes, unless You are a "Qualified Licensee." To remain a + Qualified Licensee, You must remain in full compliance with all terms + and conditions of this License Agreement. + + 4. License Agreement Is Exclusive Source of All Your Rights: + + 4.1 You may not copy, modify, or distribute the Program, or obtain any + copy, except as expressly provided under this License Agreement. Any + attempt otherwise to copy, modify, obtain a copy, sublicense or + distribute the Program is void, and will automatically terminate Your + rights under this License Agreement and subject You to all cumulative + remedies for each successive violation that may be available to the + Author. However, Qualified Licensees who have received copies from You + (and thereby have received rights from the Author) under this License + Agreement, and who would otherwise qualify as Qualified Licensees, + will not have their rights under their License Agreements suspended or + restricted on account of anything You do, so long as such parties + remain in full compliance. + + 4.2 You are not required to accept this License Agreement and prior to + the time You elect to become a Licensee and accept this License + Agreement, You may always elect instead not to copy, use, modify, + distribute, compile, or perform the Program or any Software released + under this License Agreement. However, nothing else grants You + permission to copy, to obtain or possess a copy, to compile a copy in + object code or executable code from a copy in source code, to modify, + or to distribute the Program or any Software based on the + Program. These actions are prohibited by law if You do not accept this + License Agreement. Additionally, as set forth in Section 2, any use, + copying or modification of the Software constitutes acceptance of this + License Agreement by You. + + 4.3 Each time You redistribute the Program (or any Software or + Derivative Work based on the Program), the recipient automatically + receives a License Agreement from the Author to copy, distribute, + modify, perform or display the Software, subject to the terms and + conditions of this License Agreement. 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 Agreement. Enforcement is the responsibility + of the Author. + + 5. Grant of Source Code License. + + 5.1 Source Code Always Available from Author: Author hereby promises + and agrees except to the extent prohibited by export-control law to + provide a machine-readable copy of the Source Code of the Program at + the request of any Licensee. Author reserves the right to satisfy this + obligation by placing a machine-readable copy of the Source Code of + the most current version of the Program in an information repository + reasonably calculated to permit inexpensive and convenient access by + You for so long as Author continues to distribute the Program, and by + publishing the address of that information repository in a notice + immediately following the copyright notice that applies to the + Program. Every copy of the Program distributed by Hacktivismo (but not + necessarily every other Author) consists of the Source Code + accompanied, in some instances, by an ancillary distribution of + compiled Object Code, but the continued availability of the Source + Code from the Author addresses the possibility that You might have + (for any reason) not received from someone else a complete, current, + copy of the Source Code (lack of which would, for example, prevent You + from exporting copies to others without violating this license, see + Section 8). + + 5.2 Grant of License. If and only if, and for so long as You remain a + Qualified Licensee, in accordance with Section 3 of this License + Agreement, Author hereby grants You a world-wide, royalty-free, + non-exclusive, non-sublicensable copyright license to do the + following: + + 5.2.1 to reproduce the Source Code of the Program in copies; + + 5.2.2 to prepare Derivative Works based upon the Program and to edit + or modify the Source Code in the process of preparing such Derivative + Works; + + 5.2.3 to distribute copies of the Source Code of the Original Work + and/or of Derivative Works to others, with the proviso that copies of + Original Work or Derivative Works that You distribute shall be + licensed under this License Agreement, and that You shall fully inform + all recipients of the terms of this License Agreement. + + 6. Grant of Copyright License. If and only if, and for so long as You + remain a Qualified Licensee, in accordance with Section 3 of this + License Agreement, Author hereby grants You a world-wide, + royalty-free, non-exclusive, non-sublicensable license to do the + following: + + 6.1 to reproduce the Program in copies; + + 6.2 to prepare Derivative Works based upon the Program, or upon + Software that itself is based on the Program; + + 6.3 to distribute (either by distributing the Source Code, or by + distributing compiled Object Code, but any export of Object Code must + be ancillary to a distribution of Source Code) copies of the Program + and Derivative Works to others, with the proviso that copies of the + Program or Derivative Works that You distribute shall be licensed + under this License Agreement, that You shall fully inform all + recipients of the terms of this License Agreement; + + 6.4 to perform the Program or a Derivative Work publicly; + + 6.5 to display the Program or a Derivative Work publicly; and + + 6.6 to charge a fee for the physical act of transferring a copy of the + Program (You may also, at Your option, offer warranty protection in + exchange for a fee). + + 7. Grant of Patent License. If and only if, and for so long as You + remain a Qualified Licensee, in accordance with Section 3 of this + License Agreement, Author hereby grants You a world-wide, + royalty-free, non-exclusive, non-sublicensable license Agreement, + under patent claims owned or controlled by the Author that are + embodied in the Program as furnished by the Author ("Licensed Claims") + to make, use, sell and offer for sale the Program. Subject to the + proviso that You grant all Licensees a world-wide, non-exclusive, + royalty-free license under any patent claims embodied in any + Derivative Work furnished by You, Author hereby grants You a + world-wide, royalty-free, non-exclusive, non-sublicensable license + under the Licensed Claims to make, use, sell and offer for sale + Derivative Works. + + 8. Exclusions From License Agreement Grants. Nothing in this License + Agreement shall be deemed to grant any rights to trademarks, + copyrights, patents, trade secrets or any other intellectual property + of Licensor except as expressly stated herein. No patent license is + granted to make, use, sell or offer to sell embodiments of any patent + claims other than the Licensed Claims defined in Section 7. No right + is granted to the trademarks of Author even if such marks are included + in the Program. Nothing in this License Agreement shall be interpreted + to prohibit Author from licensing under additional or different terms + from this License Agreement any Original Work, Program, or Derivative + Work that Author otherwise would have a right to License. + + 8.1 Implied Endorsements Prohibited. Neither the name of the Author + (in the case of Programs and Original Works released by Hacktivismo, + the name "Hacktivismo"), nor the names of contributors who helped + produce the Program may be used to endorse or promote modifications of + the Program, any Derivative Work, or any Software other than the + Program, without specific prior written permission of the + Author. Neither the name of Hacktivismo nor the names of any + contributors who helped write the Program may be used to endorse or + promote any Program or Software released under this License Agreement + by any person other than Hacktivismo. + + 9. Modifications and Derivative Works. Only Qualified Licensees may + modify the Software or prepare or distribute Derivative Works. If You + are a Qualified Licensee, Your authorization to modify the Software or + prepare or distribute Derivative Works (including permission to + prepare and/or distribute Derivative Works, as provided in Sections + 5.2.2, 5.2.3, 6.2, 6.3, and 6.6) is subject to each and all of the + following mandatory terms and conditions (9.1 through 9.6, inclusive): + + 9.1 You must cause the modified files to carry prominent notices + stating that You changed the files and the date of any change; + + 9.2 If the modified Software 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 this License Agreement, and + telling the user how to view a copy of this License + Agreement. (Exception: if the Program itself is interactive but does + not normally print such an announcement, Your Derivative Work based on + the Program is not required to print an announcement.); + + 9.3 Any Program, Software, or modification thereof copied or + distributed by You, that incorporates any portion of the Original + Work, must not contain any code or functionality that subverts the + security of the Software or the end-user's expectations of privacy, + anonymity, confidentiality, authenticity, and trust, including + (without limitation) any code or functionality that introduces any + "backdoor," escrow mechanism, "spy-ware," or surveillance techniques + or methods into any such Program, Software, or modification thereof; + + 9.4 Any Program, Software, or modification thereof copied or + distributed by You, that employs any cryptographic or other security, + privacy, confidentiality, authenticity, and/or trust methods or + techniques, including without limitation any Derivative Work that + includes any changes or modifications to any cryptographic techniques + in the Program, shall employ Strong Cryptography. + + 9.5 Any Program, Software, or modification thereof copied or + distributed by You, if it contains any key-generation or selection + technique, must not employ any Substandard Key-Selection Technique. + + 9.6 No Program or Software copied or distributed by You may transmit + or communicate any symmetric key, any "private key" if an asymmetric + cryptosystem is employed, or any part of such key, nor may it + otherwise make any such key or part of such key known, to any person + other than the end-user who generated the key, without the active + consent and participation of that individual end-user. If a private or + symmetric key is stored or recorded in any manner, it must not be + stored or recorded in plaintext, and it must be protected from reading + (at a minimum) by use of a password. Use of steganography or other + techniques to disguise the fact that a private or symmetric key is + even stored is strongly encouraged, but not absolutely required. + + 10. Use Restrictions: Human Rights Violations Prohibited. + + 10.1 Neither the Program, nor any Software or Derivative Work based on + the Program may used by You for any of the following purposes (10.1.1 + through 10.1.5, inclusive): + + 10.1.1 to violate or infringe any human rights or to deprive any + person of human rights, including, without limitation, rights of + privacy, security, collective action, expression, political freedom, + due process of law, and individual conscience; + + 10.1.2 to gather evidence against any person to be used to deprive any + person of human rights; + + 10.1.3 any other use as a part of any project or activity to deprive + any person of human rights, including not only the above-listed + rights, but also rights of physical security, liberty from physical + restraint or incarceration, freedom from slavery, freedom from + torture, freedom to take part in government, either directly or + through lawfully elected representatives, and/or freedom from + self-incrimination; + + 10.1.4 any surveillance, espionage, or monitoring of individuals, + whether done by a Governmental Entity, a Governmental Person, or by + any non-governmental person or entity; + + 10.1.5 censorship or "filtering" of any published information or expression. + + 10.2 Additionally, the Program, any modification of it, or any + Software or Derivative Work based on the Program may not be used by + any Governmental Entity or other institution that has any policy or + practice (whether official or unofficial) of violating the human + rights of any persons. + + 10.3 You may not authorize, permit, or enable any person (including, + without limitation, any Governmental Entity or Governmental Person) to + use the Program or any Software or Derivative Work based on it + (including any use of Your copy or copies of the Program) unless such + person has accepted this License Agreement and has become a Licensee + subject to all its terms and conditions, including (without + limitation) the use restrictions embodied in Section 10.1 and 10.2, + inclusive. + + 11. All Export Distributions Must Consist of or Be Ancillary to + Distribution of Source Code. Because of certain peculiarities of + current export-control law, any distribution by You of the Program or + any Software may be in the form of Source Code only, or in the form or + Source Code accompanied by compiled Object Code, but You may not + export any Software in the form of compiled Object Code only. Such an + export distribution of compiled executable code must in all cases be + ancillary to a distribution of the complete corresponding + machine-readable source code, which must be distributed on a medium, + or by a method, customarily used for software interchange. + + 12. EXPORT LAWS: THIS LICENSE AGREEMENT ADDS NO RESTRICTIONS TO THE + EXPORT LAWS OF YOUR JURISDICTION. It is Your responsibility to comply + with any export regulations applicable in Your jurisdiction. From the + United States, Canada, or many countries in Europe, export or + transmission of this Software to certain embargoed destinations + (including, but not necessarily limited to, Cuba, Iran, Iraq, Libya, + North Korea, Sudan, and Syria), may be prohibited. If Hacktivismo is + identified as the Author of the Program (and it is not the property of + some other Author), then export to any national of Cuba, Iran, Iraq, + Libya, North Korea, Sudan or Syria, or into the territory of any of + these countries, by any Licensee who has received this Software + directly from Hacktivismo or from the Cult of the Dead Cow, or any of + their members, is contractually prohibited and will constitute a + violation of this License Agreement. You are advised to consult the + current laws of any and all countries whose laws may apply to You, + before exporting this Software to any destination. Special care should + be taken to avoid export to any embargoed destination. An Author other + than Hacktivismo may substitute that Author's legal name for + "Hacktivismo" in this Paragraph, in relation to any Program released + by that Author under this Paragraph. + + 13. Contrary Judgments, Settlements and Court Orders. 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 Agreement, they do not + excuse You from the conditions of this License Agreement. If You + cannot distribute so as to satisfy simultaneously Your obligations + under this License Agreement and any other pertinent obligations, then + as a consequence You may not distribute the Software 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 Agreement would be to refrain entirely from + distribution of the Program. + + It is not the purpose of this Section 13 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 software distribution system reflected in this + License Agreement, which is implemented by public license + practices. Many people have made generous contributions to the wide + range of software distributed through related distribution systems, in + reliance on consistent application of such distribution systems; 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. + + 14. Governmental Entities: Any Governmental Entity ("Governmental + Entity" is defined broadly as set forth in Section 0.13.1) or + Governmental Person (as "Governmental Person" is defined broadly in + Section 0.13.2), that uses, modifies, changes, copies, displays, + performs, or distributes the Program, or any Software or Derivative + Work based on the Program, may do so if and only if all of the + following terms and conditions (14.1 through 14.10, inclusive) are + agreed to and fully met: + + 14.1 If it is the position of any Governmental Entity (or, in the case + of any "Governmental Person," if it is the position of that + Governmental Person's Governmental Entity) that any doctrine or + doctrines of law (including, without limitation, any doctrine(s) of + immunity or any formalities of contract formation) may render this + License Agreement unenforceable or less than fully enforceable against + such Governmental Entity, or any Governmental Person of such + Governmental Entity, then prior to any use, modification, change, + display, performance, copy or distribution of the Program, or of any + Software or Derivative Work based on the Program, or any part thereof, + by the Governmental Entity, or by any Governmental Person of that + Governmental Entity, the Governmental Entity shall be required to + inform the Author in writing of each such doctrine that is believed to + render this License Agreement or any part of it less than fully + enforceable against such Governmental Entity or any Governmental + Person of such entity, and to explain in reasonable detail what + additional steps, if taken, would render the License Agreement fully + enforceable against such entity or person. Failure to provide the + required written notice to the Author in advance of any such use, + modification, change, display, performance, copy or distribution, + shall constitute an irrevocable and conclusive waiver of any and all + reliance on any doctrine, by the Governmental Entity, that is not + included or that is omitted from the required written notice (failure + to provide any written notice means all reliance on any doctrine is + irrevocably waived). Any Governmental Entity that provides written + notice under this subsection is prohibited, as are all of the + Governmental Persons of such Governmental Entity, from making any use, + change, display, performance, copy, modification or distribution of + the Software or any part thereof, until such time as a License + Agreement is in place, agreed upon by the Author and by the + Governmental Entity, that such entity concedes is + fully-enforceable. Any use, modification, change, display, + performance, copy, or distribution following written notice under this + Paragraph, but without the implementation of an agreement as provided + herein, shall constitute an irrevocable and conclusive waiver by the + Governmental Entity (and any and all Governmental Persons of such + Governmental Entity) of any and all reliance on any legal doctrine + either referenced in such written notice or omitted from it. + + 14.2 Any Governmental Entity that uses, copies, changes, modifies, or + distributes, the Software or any part or portion thereof, or any + Governmental Person who does so (whether that person's Governmental + Entity contends the person's action was, or was not, authorized or + official), permanently and irrevocably waives any defense based on + sovereign immunity, official immunity, the Act of State Doctrine, or + any other form of immunity, that might otherwise apply as a defense + to, or a bar against, any legal action based on the terms of this + License Agreement. + + 14.2.1 With respect to any enforcement action brought by the Author in + a United States court against a foreign Governmental Entity, the + waiver by any Governmental Entity as provided in Subparagraphs 14.1 + and 14.2 is hereby expressly acknowledged by each such Governmental + Entity to constitute a "case . . . in which the foreign state has + waived its immunity," within the scope of 28 U.S.C. � 1605(a)(1) of + the Foreign Sovereign Immunities Act of 1976 (as amended). Each such + Governmental Entity also specifically agrees and concedes that the + "commercial activity" exceptions to the FSIA, 28 U.S.C. � 1605(a)(2), + (3) are also applicable. With respect to an action brought against the + United States or any United States Governmental Entity, in the courts + of any country, the U.S. Governmental Entity shall be understood to + have voluntarily agreed to a corresponding waiver of immunity from + actions in the courts of any other sovereign. + + 14.2.2 With respect to any enforcement action brought by an authorized + end-user (as a third-party beneficiary, under the terms of + Subparagraphs 14.3 and 14.10) in a United States court against a + foreign Governmental Entity, the waiver by any Governmental Entity as + provided in Subparagraphs 14.1 and 14.2 is hereby expressly + acknowledged by each such Governmental Entity to constitute a "case + . . . in which the foreign state has waived its immunity," within the + scope of 28 U.S.C. � 1605(a)(1) of the Foreign Sovereign Immunities + Act of 1976 (as amended). . Each such Governmental Entity also + specifically agrees and concedes that the "commercial activity" + exceptions to the FSIA, 28 U.S.C. � 1605(a)(2), (3) are also + applicable. With respect to an action brought against the United + States or any United States Governmental Entity, in the courts of any + country, the U.S. Governmental Entity shall be understood to have + voluntarily agreed to a corresponding waiver of immunity from actions + in the courts of any other sovereign. + + 14.2.3 With respect to any action or effort by the Author in the + United States to execute a judgment against a foreign Governmental + Entity, by attaching or executing process against the property of such + Governmental Entity, the waiver by any Governmental Entity as provided + in Subparagraphs 14.1 and 14.2 is hereby expressly acknowledged by + each such Governmental Entity to constitute a case in which "the + foreign state has waived its immunity from attachment in aid of + execution or from execution," in accordance with 28 U.S.C. � + 1610(a)(1) of the Foreign Sovereign Immunities Act of 1976 (as + amended). Each such Governmental Entity also specifically agrees and + concedes that the "commercial activity" exceptions to the FSIA, 28 + U.S.C. � 1610(a)(2), (d) are also applicable. With respect to an + action brought against the United States or any United States + Governmental Entity, in the courts of any country, the + U.S. Governmental Entity shall be understood to have voluntarily + agreed to a corresponding waiver of immunity from actions in the + courts of any other sovereign. + + 14.2.4 With respect to any action or effort brought by an authorized + end-user (as a third-party beneficiary, in accordance with + Subparagraphs 14.3 and 14.10) in the United States to execute a + judgment against a foreign Governmental Entity, by attaching or + executing process against the property of such Governmental Entity, + the waiver by any Governmental Entity as provided in Subparagraphs + 14.1 and 14.2 is hereby expressly acknowledged by each such + Governmental Entity to constitute a case in which "the foreign state + has waived its immunity from attachment in aid of execution or from + execution," in accordance with 28 U.S.C. � 1610(a)(1) of the Foreign + Sovereign Immunities Act of 1976 (as amended). Each such Governmental + Entity also specifically agrees and concedes that the "commercial + activity" exceptions to the FSIA, 28 U.S.C. � 1610(a)(2), (d) are + also applicable. With respect to an action brought against the United + States or any United States Governmental Entity, in the courts of any + country, the U.S. Governmental Entity shall be understood to have + voluntarily agreed to a corresponding waiver of immunity from actions + in the courts of any other sovereign. + + 14.3 Any Governmental Entity that uses, copies, changes, modifies, + displays, performs, or distributes the Software or any part thereof, + or any Governmental Person who does so (whether that person's + Governmental Entity contends the person's action was, or was not, + authorized or official), and thereby violates any terms and conditions + of Section 9 (restrictions on modification), or Paragraph 10 (use + restrictions), agrees that the person or entity is subject not only to + an action by the Author, for the enforcement of this License Agreement + and for money damages and injunctive relief (as well as attorneys' + fees, additional and statutory damages, and other remedies as provided + by law), but such Governmental Entity and/or Person also shall be + subject to a suit for money damages and injunctive relief by any + person whose human rights have been violated or infringed, in + violation of this License Agreement, or through the use of any + Software in violation of this License Agreement. Any person who brings + an action under this section against any Governmental Person or Entity + must notify the Author promptly of the action and provide the Author + the opportunity to intervene to assert the Author's own + rights. Damages in such a third-party action shall be measured by the + severity of the human rights violation and the copyright infringement + or License Agreement violation, combined, and not merely by reference + to the copyright infringement. All end-users, to the extent that they + are entitled to bring suit against such Governmental Entity by way of + this License Agreement, are intended third-party beneficiaries of this + License Agreement. Punitive damages may be awarded in such a + third-party action against a Governmental Entity or Governmental + Person, and each and every such Governmental Entity or Person + conclusively waives all restrictions on the amount of punitive + damages, and all defenses to the award of punitive damages to the + extend such limitations or defenses depend upon or are a function of + such person or entity's status as a Governmental Person or + Governmental Entity. + + 14.4 Any State of the United States, or any subunit or Governmental + Entity thereof, that uses, copies, changes, modifies, displays, + performs, or distributes the Software of any part thereof, or any of + whose Governmental Persons does so (whether that person's Governmental + Entity contends the person's action was, or was not, authorized or + official), unconditionally and irrevocably waives for purposes of any + legal action (i) to enforce this License Agreement, (ii) to remedy + infringement of the Author's copyright, or (iii) to invoke any of the + third-party beneficiary rights set forth in Section 14.3 -- any + immunity under the Eleventh Amendment of the United States + Constitution or any other immunity doctrine (such as sovereign + immunity or qualified, or other, official immunity) that may apply to + state governments, subunits, or to their Governmental Persons. + + 14.5 Any Governmental Entity (including, without limitation, any State + of the United States), that uses, copies, changes, modifies, performs, + displays, or distributes the Software or any part thereof, or any of + whose Governmental Persons does so (whether that person's Governmental + Entity contends the person's action was, or was not, authorized or + official), unconditionally and irrevocably waives for purposes of any + legal action (i) to enforce this License Agreement, (ii) to remedy + infringement of the Author's copyright, or (iii) to invoke any of the + third-party beneficiary rights set forth in Section 14.3 any doctrine + (such as, but not limited to, the holding in the United States Supreme + Court decision of Ex Parte Young) that might purport to limit remedies + solely to prospective injunctive relief. Also explicitly and + irrevocably waived is any underlying immunity doctrine that would + require the recognition of such a limited exception for purposes of + remedies. The remedies against such governmental entities and persons + shall explicitly include money damages, additional damages, statutory + damages, consequential damages, exemplary damages, punitive damages, + costs and fees that might otherwise be barred or limited in amount on + account of governmental status. + + 14.6 Any Governmental Entity that uses, copies, changes, modifies, + displays, performs, or distributes the Software or any part thereof, + or any of whose Governmental Persons does so (whether that person's + Governmental Entity contends the person's action was, or was not, + authorized or official), unconditionally and irrevocably waives for + purposes of any legal action (i) to enforce this License Agreement, + (ii) to remedy infringement of the Author's copyright, or (iii) to + invoke any of the third-party beneficiary rights set forth in Section + 14.3 any and all reliance on the Act of State doctrine, sovereign + immunity, international comity, or any other doctrine of immunity + whether such doctrine is recognized in that government's own courts, + or in the courts of any other government or nation. + + 14.6.1 Consistent with Subparagraphs 14.2.1 through 14.2.4, this + waiver shall explicitly be understood to constitute a waiver not only + against suit, but also against execution against property, for + purposes of the Foreign Sovereign Immunities Act of 1976 (as + amended). All United States Governmental Entities shall be understood + to have agreed to a corresponding waiver of immunity against (i) suit + in the courts of other sovereigns, and (ii) execution against property + of the United States located within the territory of other countries. + + 14.7 Governmental Persons, (i) who violate this License Agreement + (whether that person's Governmental Entity contends the person's + action was, or was not, authorized or official), or (ii) who are + personally involved in any activity, policy or practice of a + governmental entity that violates this License Agreement (whether that + person's Governmental Entity contends the person's action was, or was + not, authorized or official), or (iii) that use, copy, change, modify, + perform, display or distribute, the Software or any part thereof, when + their Governmental Entity is not permitted to do so, or is not a + Qualified Licensee, or has violated the terms of this License + Agreement, each and all individually waive and shall not be permitted + to assert any defense of official immunity, "good faith" immunity, + qualified immunity, absolute immunity, or other immunity based on his + or her governmental status. + + 14.8 No Governmental Entity, nor any Governmental Person thereof may, + by legislative, regulatory, or other action, exempt such Governmental + Entity, subunit, or person, from the terms of this License Agreement, + if the Governmental Entity or any such person has voluntarily used, + modified, copied, displayed, performed, or distributed the Software or + any part thereof. + + 14.9 Enforcement In Courts of Other Sovereigns Permitted. By using, + modifying, changing, displaying, performing or distributing any + Software covered by this License Agreement, any Governmental Entity + hereby voluntarily and irrevocably consents, for purposes of (i) any + action to enforce the terms of this License Agreement, and (ii) any + action to enforce the Author's copyright (whether such suit be for + injunctive relief, damages, or both) to the jurisdiction of any court + or tribunal in any other country (or a court of competent jurisdiction + of a subunit, province, or state of such country) in which the terms + of this License Agreement are believed by the Author to be + enforceable. Each such Governmental Entity hereby waives all + objections to personal jurisdiction, all objections based on + international comity, all objections based on the doctrine of forum + non conveniens, and all objections based on sovereign or governmental + status or immunity that might otherwise be asserted in the courts of + some other sovereign. + + 14.9.1 The Waiver by any Governmental Entity of a country other than + the United States shall be understood explicitly to constitute a + waiver for purposes of the Foreign Sovereign Immunities Act of 1976 + (see Subparagraphs 14.2.1to 14.2.4, inclusive, supra), and all United + States Governmental Entities shall be understood to have agreed to a + waive correspondingly broad in scope with respect to actions brought + in the courts of other sovereigns. + + 14.9.2 Forum Selection Non-U.S. Governmental Entities. Governmental + Entities that are not United States Governmental Entities shall be + subject to suit, and agree to be subject to suit, in the United States + District Court for the District of Columbia. The Author or an + authorized end-user may bring an action in another court in another + country, but the United States District Court for the District of + Columbia, shall always be available as an agreed-upon forum for such + an action. At the optional election of any Author (or, in the case of + a third-party claim, any end-user asserting rights under Subparagraphs + 14.3 and 14.10), such a suit against a non-U.S. Governmental Entity or + Person may be brought in the United States District Court for the + Southern District of New York, or the United States District Court for + the Northern District of California, as a direct substitute for the + United States District Court for the District of Columbia, for all + purposes of this Subparagraph. + + 14.9.3 Forum Selection U.S. Governmental Entities. All United States + Governmental Entities shall be subject to suit, and agree to be + subject to suit, in the following (non-exclusive) list of fora: + Ottawa, Canada, London, England, and Paris, France. The Author or an + authorized end-user may bring action in another court that can + exercise jurisdiction. But the courts in these three locations shall + always be available (at the option of the Author or an authorized + end-user) as a forum for resolving any dispute with the United States + or a governmental subunit thereof. Except as provided in Subparagraph + 14.10, any and all United States Governmental Persons shall be subject + to suit wherever applicable rules of personal jurisdiction and venue + shall permit such suit to be filed, but no such United States + Governmental Person may assert any defense based on forum non + conveniens or international comity, to the selection of any particular + lawful venue. + + 14.10 Enforcement Of Claims For Human Rights Violations. By using, + copying, modifying, changing, performing, displaying or distributing + the Software covered by this License Agreement, any Governmental + Entity, or Governmental Person hereby voluntarily and irrevocably + consents -- for purposes of any third-party action to remedy human + rights violations and other violations of this License Agreement (as + reflected in Section 14.3) -- to the jurisdiction of any court or + tribunal in any other country (or a court of competent jurisdiction of + a subunit, province, or state of such country) in which the + third-party beneficiary reasonably believes the relevant terms of this + License Agreement are enforceable. The Governmental Entity or Person + hereby waives all objections to personal jurisdiction, all objections + based on international comity, all objections based on the doctrine of + forum non conveniens, and all objections based on sovereign or + governmental status or immunity that might otherwise be asserted in + the courts of some other sovereign. + + 14.10.1 Waiver of Immunity and Forum Selection. The presumptively + valid and preferred fora identified in Subparagraphs 14.9.2 and 14.9.3 + shall also apply for purposes of Subparagraph 14.10. All Governmental + Entities are subject to the same Waiver of Immunity as set forth in + Subparagraphs 14.2.1 to 14.2.4, inclusive. + + 15. Subsequent Versions of HESSLA. Hacktivismo may publish revised + and/or new versions of the Hacktivismo Enhanced-Source Software + License Agreement 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. Any Program + released by Hacktivismo under a version of this License Agreement + prior to Version 1.0, shall be considered released under Version 1.0 + of the Hacktivismo Enhanced-Source Software License Agreement, once + Version 1.0 is formally released. Prior to Version 1.0, any Software + released by Hacktivismo or a Licensee of Hacktivismo under a + lower-numbered version of the HESSLA shall be considered automatically + to be subject to a higher-number version of the HESSLA, whenever a + later-numbered version has been released. + + Concerning the work of any other Author, if the Program specifies a + version number of this License Agreement 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 + Hacktivismo. If the Program does not specify a version number of this + License Agreement, You may choose any version after 1.0, once version + 1.0 is published by Hacktivismo, and prior to publication of version + 1.0, You may choose any version of the Hacktivismo Software License + Agreement then published by Hacktivismo. If the Program released by + another Author, specifies only a version number, then that version + number only shall apply. If "the latest version," is specified, then + the latest version of the HESSLA published on the Hacktivismo Website + shall always apply at all times. + + 16. DISCLAIMER OF WARRANTY. THE SOFTWARE IS PROVIDED UNDER THIS + LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY, EITHER EXPRESS OR + IMPLIED, INCLUDING, WITHOUT LIMITATION, THE WARRANTY OF + NON-INFRINGEMENT AND WARRANTIES THAT THE ORIGINAL WORK IS MERCHANTABLE + OR FIT FOR A PARTICULAR PURPOSE. THE SOFTWARE IS PROVIDED WITH ALL + FAULTS. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH + YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL + NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY + CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO LICENSE TO ORIGINAL + WORK IS GRANTED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 17. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL + THEORY, WHETHER TORT (INCLUDING THE AUTHOR'S NEGLIGENCE), CONTRACT, OR + OTHERWISE, SHALL THE AUTHOR BE LIABLE TO ANY PERSON FOR ANY DIRECT, + INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY + CHARACTER ARISING AS A RESULT OF THIS LICENSE OR THE USE OF THE + SOFTWARE INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, + WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER + COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PERSON SHALL HAVE BEEN + INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY + RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW + PROHIBITS SUCH LIMITATION, BUT SHALL EXCLUDE SUCH LIABILITY TO THE + EXTENT PERMITTED BY LAW. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION + OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS + EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + + 18. ENCRYPTION KEYS AND PUBLIC KEY INFRASTRUCTURE. SOFTWARE RELEASED + UNDER THIS LICENSE AGREEMENT MAY REQUIRE A DIGITAL CERTIFICATE, OR AN + ENCRYPTION KEY "SIGNED" BY A TRUSTED PARTY, TO FUNCTION. AUTHOR + UNDERTAKES NO RESPONSIBILITY FOR THE PROPER, SECURE, AND ADEQUATE + FUNCTIONING OF ANY CRYPTOGRAPHIC SYSTEMS, OF ANY CRYPTOGRAPHIC KEYS, + OR FOR THE TRUSTWORTHINESS OF ANY END-USER, ANY ISSUER OF + CERTIFICATES, OR OF ANY SIGNER OF ENCRYPTION KEYS. USE OF THIS + SOFTWARE IS AT THE END-USER'S SOLE AND EXCLUSIVE RISK. IN ANY + PUBLIC-KEY INFRASTRUCTURE ("PKI") SYSTEM, AN END-USER'S LEGAL + RELATIONSHIP WITH THE END-USER'S CERTIFICATION AUTHORITY DOES NOT + INCLUDE OR ENCOMPASS ANY LEGAL RELATIONSHIP WITH THE AUTHOR, AND IS + GOVERNED SOLELY AND EXCLUSIVELY BY THE CERTIFICATION AUTHORITY'S + CERTIFICATION PRACTICE STATEMENT AND CERTIFICATION AGREEMENTS. AUTHOR + ASSUMES NO RESPONSIBILITY FOR THE ACTIONS OR OMISSIONS OF ANY END-USER + OR ANY CERTIFICATION AUTHORITY. + + 18. Saving Clause. If any portion of this License Agreement is held + invalid or unenforceable under any particular circumstance, the + balance of the License Agreement is intended to apply and the License + Agreement as a whole is intended to apply in other circumstances. + + END OF TERMS AND CONDITIONS json: hessla.json - yml: hessla.yml + yaml: hessla.yml html: hessla.html - text: hessla.LICENSE + license: hessla.LICENSE - license_key: hidapi + category: Permissive spdx_license_key: LicenseRef-scancode-hidapi other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This software may be used by anyone for any reason so long as the copyright + notice in the source files remains intact. json: hidapi.json - yml: hidapi.yml + yaml: hidapi.yml html: hidapi.html - text: hidapi.LICENSE + license: hidapi.LICENSE - license_key: hippocratic-1.0 + category: Free Restricted spdx_license_key: LicenseRef-scancode-hippocratic-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + 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 may not be used by individuals, corporations, governments, or other groups for systems or activities that actively and knowingly endanger, harm, or otherwise threaten the physical, mental, economic, or general well-being of underprivileged individuals or groups. + + + THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + This license is derived from the MIT License, as amended to limit the impact of the unethical use of open source software. json: hippocratic-1.0.json - yml: hippocratic-1.0.yml + yaml: hippocratic-1.0.yml html: hippocratic-1.0.html - text: hippocratic-1.0.LICENSE + license: hippocratic-1.0.LICENSE - license_key: hippocratic-1.1 + category: Free Restricted spdx_license_key: LicenseRef-scancode-hippocratic-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + 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 may not be used by individuals, corporations, governments, or other groups for systems or activities that actively and knowingly endanger, harm, or otherwise threaten the physical, mental, economic, or general well-being of other individuals or groups in violation of the United Nations Universal Declaration of Human Rights. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + This license is derived from the MIT License, as amended to limit the impact of the unethical use of open source software. json: hippocratic-1.1.json - yml: hippocratic-1.1.yml + yaml: hippocratic-1.1.yml html: hippocratic-1.1.html - text: hippocratic-1.1.LICENSE + license: hippocratic-1.1.LICENSE - license_key: hippocratic-1.2 + category: Free Restricted spdx_license_key: LicenseRef-scancode-hippocratic-1.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + 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. + + * No Harm: The software may not be used by anyone for systems or activities that actively and knowingly endanger, harm, or otherwise threaten the physical, mental, economic, or general well-being of other individuals or groups, in violation of the United Nations Universal Declaration of Human Rights (https://www.un.org/en/universal-declaration-human-rights/). + + * Services: If the Software is used to provide a service to others, the licensee shall, as a condition of use, require those others not to use the service in any way that violates the No Harm clause above. + + * Enforceability: If any portion or provision of this License shall to any extent be declared illegal or unenforceable by a court of competent jurisdiction, then the remainder of this License, or the application of such portion or provision in circumstances other than those as to which it is so declared illegal or unenforceable, shall not be affected thereby, and each portion and provision of this Agreement shall be valid and enforceable to the fullest extent permitted by law. + + + THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + This Hippocratic License is an Ethical Source license (https://ethicalsource.dev) derived from the MIT License, amended to limit the impact of the unethical use of open source software. json: hippocratic-1.2.json - yml: hippocratic-1.2.yml + yaml: hippocratic-1.2.yml html: hippocratic-1.2.html - text: hippocratic-1.2.LICENSE + license: hippocratic-1.2.LICENSE - license_key: hippocratic-2.0 + category: Free Restricted spdx_license_key: LicenseRef-scancode-hippocratic-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "Hippocratic License Version 2.0. \n\nLicensor hereby grants permission by this license\ + \ (\"License\"), free of charge, to any person or entity (the \"Licensee\") 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:\n\n\n* The above copyright notice and this License or a subsequent version\ + \ published on the Hippocratic License Website (https://firstdonoharm.dev/) shall be included\ + \ in all copies or substantial portions of the Software. Licensee has the option of following\ + \ the terms and conditions either of the above numbered version of this License or of any\ + \ subsequent version published on the Hippocratic License Website.\n\n* Compliance with\ + \ Human Rights Laws and Human Rights Principles:\n\n 1. Human Rights Laws. The Software\ + \ shall not be used by any person or entity for any systems, activities, or other uses that violate\ + \ any applicable laws, regulations, or rules that protect human, civil, labor, privacy,\ + \ political, environmental, security, economic, due process, or similar rights (the \"Human\ + \ Rights Laws\"). Where the Human Rights Laws of more than one jurisdiction are applicable\ + \ to the use of the Software, the Human Rights Laws that are most protective of the individuals\ + \ or groups harmed shall apply.\n\n 2. Human Rights Principles. Licensee is advised to\ + \ consult the articles of the United Nations Universal Declaration of Human Rights (https://www.un.org/en/universal-declaration-human-rights/)\ + \ and the United Nations Global Compact (https://www.unglobalcompact.org/what-is-gc/mission/principles)\ + \ that define recognized principles of international human rights (the \"Human Rights Principles\"\ + ). It is Licensor's express intent that all use of the Software be consistent with Human\ + \ Rights Principles. If Licensor receives notification or otherwise learns of an alleged\ + \ violation of any Human Rights Principles relating to Licensee's use of the Software, Licensor\ + \ may in its discretion and without obligation (i) (a) notify Licensee of such allegation\ + \ and (b) allow Licensee 90 days from notification under (i)(a) to investigate and respond\ + \ to Licensor regarding the allegation and (ii) (a) after the earlier of 90 days from notification\ + \ under (i)(a), or Licensee's response under (i)(b), notify Licensee of License termination\ + \ and (b) allow Licensee an additional 90 days from notification under (ii)(a) to cease\ + \ use of the Software.\n\n 3. Indemnity. Licensee shall hold harmless and indemnify Licensor\ + \ against all losses, damages, liabilities, deficiencies, claims, actions, judgments, settlements,\ + \ interest, awards, penalties, fines, costs, or expenses of whatever kind, including Licensor's\ + \ reasonable attorneys' fees, arising out of or relating to Licensee's non-compliance with\ + \ this License or use of the Software in violation of Human Rights Laws or Human Rights\ + \ Principles. \n\n* Enforceability: If any portion or provision of this License is determined\ + \ to be invalid, illegal, or unenforceable by a court of competent jurisdiction, then such\ + \ invalidity, illegality, or unenforceability shall not affect any other term or provision\ + \ of this License or invalidate or render unenforceable such term or provision in any other\ + \ jurisdiction. Upon a determination that any term or provision is invalid, illegal, or\ + \ unenforceable, to the extent permitted by applicable law, the court may modify this License\ + \ to affect the original intent of the parties as closely as possible. The section headings\ + \ are for convenience only and are not intended to affect the construction or interpretation\ + \ of this License. Any rule of construction to the effect that ambiguities are to be resolved\ + \ against the drafting party shall not apply in interpreting this License. The language\ + \ in this License shall be interpreted as to its fair meaning and not strictly for or against\ + \ any party.\n\n\nTHE 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.\n\nThis Hippocratic License is an Ethical Source license\ + \ (https://ethicalsource.dev)." json: hippocratic-2.0.json - yml: hippocratic-2.0.yml + yaml: hippocratic-2.0.yml html: hippocratic-2.0.html - text: hippocratic-2.0.LICENSE + license: hippocratic-2.0.LICENSE - license_key: hippocratic-2.1 + category: Free Restricted spdx_license_key: Hippocratic-2.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Hippocratic License Version Number: 2.1. + + Purpose. The purpose of this License is for the Licensor named above to permit the Licensee (as defined below) broad permission, if consistent with Human Rights Laws and Human Rights Principles (as each is defined below), to use and work with the Software (as defined below) within the full scope of Licensor’s copyright and patent rights, if any, in the Software, while ensuring attribution and protecting the Licensor from liability. + + Permission and Conditions. The Licensor grants permission by this license (“License”), free of charge, to the extent of Licensor’s rights under applicable copyright and patent law, to any person or entity (the “Licensee”) obtaining a copy of this software and associated documentation files (the “Software”), to do everything with the Software that would otherwise infringe (i) the Licensor’s copyright in the Software or (ii) any patent claims to the Software that the Licensor can license or becomes able to license, subject to all of the following terms and conditions: + + * Acceptance. This License is automatically offered to every person and entity subject to its terms and conditions. Licensee accepts this License and agrees to its terms and conditions by taking any action with the Software that, absent this License, would infringe any intellectual property right held by Licensor. + + * Notice. Licensee must ensure that everyone who gets a copy of any part of this Software from Licensee, with or without changes, also receives the License and the above copyright notice (and if included by the Licensor, patent, trademark and attribution notice). Licensee must cause any modified versions of the Software to carry prominent notices stating that Licensee changed the Software. For clarity, although Licensee is free to create modifications of the Software and distribute only the modified portion created by Licensee with additional or different terms, the portion of the Software not modified must be distributed pursuant to this License. If anyone notifies Licensee in writing that Licensee has not complied with this Notice section, Licensee can keep this License by taking all practical steps to comply within 30 days after the notice. If Licensee does not do so, Licensee’s License (and all rights licensed hereunder) shall end immediately. + + * Compliance with Human Rights Principles and Human Rights Laws. + + 1. Human Rights Principles. + + (a) Licensee is advised to consult the articles of the United Nations Universal Declaration of Human Rights and the United Nations Global Compact that define recognized principles of international human rights (the “Human Rights Principles”). Licensee shall use the Software in a manner consistent with Human Rights Principles. + + (b) Unless the Licensor and Licensee agree otherwise, any dispute, controversy, or claim arising out of or relating to (i) Section 1(a) regarding Human Rights Principles, including the breach of Section 1(a), termination of this License for breach of the Human Rights Principles, or invalidity of Section 1(a) or (ii) a determination of whether any Law is consistent or in conflict with Human Rights Principles pursuant to Section 2, below, shall be settled by arbitration in accordance with the Hague Rules on Business and Human Rights Arbitration (the “Rules”); provided, however, that Licensee may elect not to participate in such arbitration, in which event this License (and all rights licensed hereunder) shall end immediately. The number of arbitrators shall be one unless the Rules require otherwise. + + Unless both the Licensor and Licensee agree to the contrary: (1) All documents and information concerning the arbitration shall be public and may be disclosed by any party; (2) The repository referred to under Article 43 of the Rules shall make available to the public in a timely manner all documents concerning the arbitration which are communicated to it, including all submissions of the parties, all evidence admitted into the record of the proceedings, all transcripts or other recordings of hearings and all orders, decisions and awards of the arbitral tribunal, subject only to the arbitral tribunal's powers to take such measures as may be necessary to safeguard the integrity of the arbitral process pursuant to Articles 18, 33, 41 and 42 of the Rules; and (3) Article 26(6) of the Rules shall not apply. + + 2. Human Rights Laws. The Software shall not be used by any person or entity for any systems, activities, or other uses that violate any Human Rights Laws. “Human Rights Laws” means any applicable laws, regulations, or rules (collectively, “Laws”) that protect human, civil, labor, privacy, political, environmental, security, economic, due process, or similar rights; provided, however, that such Laws are consistent and not in conflict with Human Rights Principles (a dispute over the consistency or a conflict between Laws and Human Rights Principles shall be determined by arbitration as stated above). Where the Human Rights Laws of more than one jurisdiction are applicable or in conflict with respect to the use of the Software, the Human Rights Laws that are most protective of the individuals or groups harmed shall apply. + + 3. Indemnity. Licensee shall hold harmless and indemnify Licensor (and any other contributor) against all losses, damages, liabilities, deficiencies, claims, actions, judgments, settlements, interest, awards, penalties, fines, costs, or expenses of whatever kind, including Licensor’s reasonable attorneys’ fees, arising out of or relating to Licensee’s use of the Software in violation of Human Rights Laws or Human Rights Principles. + + * Failure to Comply. Any failure of Licensee to act according to the terms and conditions of this License is both a breach of the License and an infringement of the intellectual property rights of the Licensor (subject to exceptions under Laws, e.g., fair use). In the event of a breach or infringement, the terms and conditions of this License may be enforced by Licensor under the Laws of any jurisdiction to which Licensee is subject. Licensee also agrees that the Licensor may enforce the terms and conditions of this License against Licensee through specific performance (or similar remedy under Laws) to the extent permitted by Laws. For clarity, except in the event of a breach of this License, infringement, or as otherwise stated in this License, Licensor may not terminate this License with Licensee. + + * Enforceability and Interpretation. If any term or provision of this License is determined to be invalid, illegal, or unenforceable by a court of competent jurisdiction, then such invalidity, illegality, or unenforceability shall not affect any other term or provision of this License or invalidate or render unenforceable such term or provision in any other jurisdiction; provided, however, subject to a court modification pursuant to the immediately following sentence, if any term or provision of this License pertaining to Human Rights Laws or Human Rights Principles is deemed invalid, illegal, or unenforceable against Licensee by a court of competent jurisdiction, all rights in the Software granted to Licensee shall be deemed null and void as between Licensor and Licensee. Upon a determination that any term or provision is invalid, illegal, or unenforceable, to the extent permitted by Laws, the court may modify this License to affect the original purpose that the Software be used in compliance with Human Rights Principles and Human Rights Laws as closely as possible. The language in this License shall be interpreted as to its fair meaning and not strictly for or against any party. + + * Disclaimer. TO THE FULL EXTENT ALLOWED BY LAW, THIS SOFTWARE COMES “AS IS,” WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED, AND LICENSOR AND ANY OTHER CONTRIBUTOR SHALL NOT BE LIABLE TO ANYONE FOR ANY DAMAGES OR OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THIS LICENSE, UNDER ANY KIND OF LEGAL CLAIM. + + This Hippocratic License is an Ethical Source license (https://ethicalsource.dev) and is offered for use by licensors and licensees at their own risk, on an “AS IS” basis, and with no warranties express or implied, to the maximum extent permitted by Laws. json: hippocratic-2.1.json - yml: hippocratic-2.1.yml + yaml: hippocratic-2.1.yml html: hippocratic-2.1.html - text: hippocratic-2.1.LICENSE + license: hippocratic-2.1.LICENSE - license_key: hippocratic-3.0 + category: Free Restricted spdx_license_key: LicenseRef-scancode-Hippocratic-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + HIPPOCRATIC LICENSE + + Version 3.0, October 2021 + + *\Hyperlink* + + TERMS AND CONDITIONS + + TERMS AND CONDITIONS FOR USE, COPY, MODIFICATION, PREPARATION OF DERIVATIVE WORK, REPRODUCTION, AND DISTRIBUTION: + + + * DEFINITIONS: + + + This section defines certain terms used throughout this license agreement. + + 1.1. "License” means the terms and conditions, as stated herein, for use, copy, modification, preparation of derivative work, reproduction, and distribution of Software (as defined below). + + 1.2. "Licensor” means the copyright and/or patent owner or entity authorized by the copyright and/or patent owner that is granting the License. + + 1.3. "Licensee” means the individual or entity exercising permissions granted by this License, including the use, copy, modification, preparation of derivative work, reproduction, and distribution of Software (as defined below). + + 1.4. "Software” means any copyrighted work, including but not limited to software code, authored by Licensor and made available under this License. + + 1.5. "Supply Chain” means the sequence of processes involved in the production and/or distribution of a commodity, good, or service offered by the Licensee. + + 1.6. "Supply Chain Impacted Party” or "Supply Chain Impacted Parties” means any person(s) directly impacted by any of Licensee’s Supply Chain, including the practices of all persons or entities within the Supply Chain prior to a good or service reaching the Licensee. + + 1.7. "Duty of Care” is defined by its use in tort law, delict law, and/or similar bodies of law closely related to tort and/or delict law, including without limitation, a requirement to act with the watchfulness, attention, caution, and prudence that a reasonable person in the same or similar circumstances would use towards any Supply Chain Impacted Party. + + 1.8. "Worker” is defined to include any and all permanent, temporary, and agency workers, as well as piece-rate, salaried, hourly paid, legal young (minors), part-time, night, and migrant workers. + + + * INTELLECTUAL PROPERTY GRANTS: + + + This section identifies intellectual property rights granted to a Licensee. + + 2.1. Grant of Copyright License: Subject to the terms and conditions of this License, Licensor hereby grants to Licensee a worldwide, non-exclusive, no-charge, royalty-free copyright license to use, copy, modify, prepare derivative work, reproduce, or distribute the Software, Licensor authored modified software, or other work derived from the Software. + + 2.2 Grant of Patent License: Subject to the terms and conditions of this License, Licensor hereby grants Licensee a worldwide, non-exclusive, no-charge, royalty-free patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer Software. + + + * ETHICAL STANDARDS: + + + This section lists conditions the Licensee must comply with in order to have rights under this License. + + The rights granted to the Licensee by this License are expressly made subject to the Licensee’s ongoing compliance with the following conditions: + + 3.1. The Licensee SHALL NOT, whether directly or indirectly, through agents or assigns: + + 3.1.1. Infringe upon any person's right to life or security of person, engage in extrajudicial killings, or commit murder, without lawful cause + (See Article 3, *United Nations Universal Declaration of Human Rights*; Article 6, *International Covenant on Civil and Political Rights*) + + 3.1.2. Hold any person in slavery, servitude, or forced labor + (See Article 4, *United Nations Universal Declaration of Human Rights*; Article 8, *International Covenant on Civil and Political Rights*); + + 3.1.3. Contribute to the institution of slavery, slave trading, forced labor, or unlawful child labor + (See Article 4, *United Nations Universal Declaration of Human Rights*; Article 8, *International Covenant on Civil and Political Rights*); + + 3.1.4. Torture or subject any person to cruel, inhumane, or degrading treatment or punishment + (See Article 5, *United Nations Universal Declaration of Human Rights*; Article 7, *International Covenant on Civil and Political Rights*); + + 3.1.5. Discriminate on the basis of sex, gender, sexual orientation, race, ethnicity, nationality, religion, caste, age, medical disability or impairment, and/or any other like circumstances + (See Article 7, *United Nations Universal Declaration of Human Rights*; Article 2, *International Covenant on Economic, Social and Cultural Rights*; Article 26, *International Covenant on Civil and Political Rights*); + + 3.1.6. Prevent any person from exercising his/her/their right to seek an effective remedy by a competent court or national tribunal (including domestic judicial systems, international courts, arbitration bodies, and other adjudicating bodies) for actions violating the fundamental rights granted to him/her/them by applicable constitutions, applicable laws, or by this License + (See Article 8, *United Nations Universal Declaration of Human Rights*; Articles 9 and 14, *International Covenant on Civil and Political Rights*); + + 3.1.7. Subject any person to arbitrary arrest, detention, or exile + (See Article 9, *United Nations Universal Declaration of Human Rights*; Article 9, *International Covenant on Civil and Political Rights*); + + 3.1.8. Subject any person to arbitrary interference with a person's privacy, family, home, or correspondence without the express written consent of the person + (See Article 12, *United Nations Universal Declaration of Human Rights*; Article 17, *International Covenant on Civil and Political Rights*); + + 3.1.9. Arbitrarily deprive any person of his/her/their property + (See Article 17, *United Nations Universal Declaration of Human Rights*); + + 3.1.10. Forcibly remove indigenous peoples from their lands or territories or take any action with the aim or effect of dispossessing indigenous peoples from their lands, territories, or resources, including without limitation the intellectual property or traditional knowledge of indigenous peoples, without the free, prior, and informed consent of indigenous peoples concerned + (See Articles 8 and 10, *United Nations Declaration on the Rights of Indigenous Peoples*); + + 3.1.11. (Module -- Carbon Underground 200) Be an individual or entity, or a representative, agent, affiliate, successor, attorney, or assign of an individual or entity, on the FFI Solutions Carbon Underground 200 list; + + 3.1.12. (Module -- Ecocide) Commit ecocide: + + 3.1.12.1 For the purpose of this section, "ecocide" means unlawful or wanton acts committed with knowledge that there is a substantial likelihood of severe and either widespread or long-term damage to the environment being caused by those acts; + + 3.1.12.2 For the purpose of further defining ecocide and the terms contained in the previous paragraph: + + 3.1.12.2.1. "Wanton" means with reckless disregard for damage which would be clearly excessive in relation to the social and economic benefits anticipated; + + 3.1.12.2.2. "Severe" means damage which involves very serious adverse changes, disruption, or harm to any element of the environment, including grave impacts on human life or natural, cultural, or economic resources; + + 3.1.12.2.3. "Widespread" means damage which extends beyond a limited geographic area, crosses state boundaries, or is suffered by an entire ecosystem or species or a large number of human beings; + + 3.1.12.2.4. "Long-term" means damage which is irreversible or which cannot be redressed through natural recovery within a reasonable period of time; and + + 3.1.12.2.5. "Environment" means the earth, its biosphere, cryosphere, lithosphere, hydrosphere, and atmosphere, as well as outer space + + (See Section II, *Independent Expert Panel for the Legal Definition of Ecocide*, Stop Ecocide Foundation and the Promise Institute for Human Rights at UCLA School of Law, June 2021); + + 3.1.13. (Module -- Extractive Industries) Be an individual or entity, or a representative, agent, affiliate, successor, attorney, or assign of an individual or entity, that engages in fossil fuel or mineral exploration, extraction, development, or sale; + + 3.1.14. (Module -- BDS) Be an individual or entity, or a representative, agent, affiliate, successor, attorney, or assign of an individual or entity, identified by the Boycott, Divestment, Sanctions ("BDS") movement on its website ([https://bdsmovement.net/](https://bdsmovement.net/) and [https://bdsmovement.net/get-involved/what-to-boycott](https://bdsmovement.net/get-involved/what-to-boycott)) as a target for boycott; + + 3.1.15. (Module -- Taliban) Be an individual or entity that: + + 3.1.15.1. engages in any commercial transactions with the Taliban; or + + 3.1.15.2. is a representative, agent, affiliate, successor, attorney, or assign of the Taliban; + + 3.1.16. (Module -- Myanmar) Be an individual or entity that: + + 3.1.16.1. engages in any commercial transactions with the Myanmar/Burmese military junta; or + + 3.1.16.2. is a representative, agent, affiliate, successor, attorney, or assign of the Myanmar/Burmese government; + + 3.1.17. (Module -- Xinjiang Uygur Autonomous Region) Be an individual or entity, or a representative, agent, affiliate, successor, attorney, or assign of any individual or entity, that does business in, purchases goods from, or otherwise benefits from goods produced in the Xinjiang Uygur Autonomous Region of China; + + 3.1.18. (Module -- U.S. Tariff Act) Be an individual or entity: + + 3.1.18.1. which U.S. Customs and Border Protection (CBP) has currently issued a Withhold Release Order (WRO) or finding against based on reasonable suspicion of forced labor; or + + 3.1.18.2. that is a representative, agent, affiliate, successor, attorney, or assign of an individual or entity that does business with an individual or entity which currently has a WRO or finding from CBP issued against it based on reasonable suspicion of forced labor; + + 3.1.19. (Module -- Mass Surveillance) Be a government agency or multinational corporation, or a representative, agent, affiliate, successor, attorney, or assign of a government or multinational corporation, which participates in mass surveillance programs; + + 3.1.20. (Module -- Military Activities) Be an entity or a representative, agent, affiliate, successor, attorney, or assign of an entity which conducts military activities; + + 3.1.21. (Module -- Law Enforcement) Be an individual or entity, or a or a representative, agent, affiliate, successor, attorney, or assign of an individual or entity, that provides good or services to, or otherwise enters into any commercial contracts with, any local, state, or federal law enforcement agency; + + 3.1.22. (Module -- Media) Be an individual or entity, or a or a representative, agent, affiliate, successor, attorney, or assign of an individual or entity, that broadcasts messages promoting killing, torture, or other forms of extreme violence; + + 3.1.23. Interfere with Workers' free exercise of the right to organize and associate + (See Article 20, United Nations Universal Declaration of Human Rights; C087 - Freedom of Association and Protection of the Right to Organise Convention, 1948 (No. 87), International Labour Organization; Article 8, International Covenant on Economic, Social and Cultural Rights); and + + 3.1.24. Harm the environment in a manner inconsistent with local, state, national, or international law. + + + 3.2. The Licensee SHALL: + + 3.2.1. (Module -- Social Auditing) Only use social auditing mechanisms that adhere to Worker-Driven Social Responsibility Network's Statement of Principles (https://wsr-network.org/what-is-wsr/statement-of-principles/) over traditional social auditing mechanisms, to the extent the Licensee uses any social auditing mechanisms at all; + + 3.2.2. (Module -- Workers on Board of Directors) Ensure that if the Licensee has a Board of Directors, 30% of Licensee's board seats are held by Workers paid no more than 200% of the compensation of the lowest paid Worker of the Licensee; + + 3.2.3. (Module -- Supply Chain Transparency) Provide clear, accessible supply chain data to the public in accordance with the following conditions: + + 3.2.3.1. All data will be on Licensee's website and/or, to the extent Licensee is a representative, agent, affiliate, successor, attorney, subsidiary, or assign, on Licensee's principal's or parent's website or some other online platform accessible to the public via an internet search on a common internet search engine; and + + 3.2.3.2. Data published will include, where applicable, manufacturers, top tier suppliers, subcontractors, cooperatives, component parts producers, and farms; + + 3.2.4. Provide equal pay for equal work where the performance of such work requires equal skill, effort, and responsibility, and which are performed under similar working conditions, except where such payment is made pursuant to: + + 3.2.4.1. A seniority system; + + 3.2.4.2. A merit system; + + 3.2.4.3. A system which measures earnings by quantity or quality of production; or + + 3.2.4.4. A differential based on any other factor other than sex, gender, sexual orientation, race, ethnicity, nationality, religion, caste, age, medical disability or impairment, and/or any other like circumstances + (See 29 U.S.C.A. � 206(d)(1); Article 23, *United Nations Universal Declaration of Human Rights*; Article 7, *International Covenant on Economic, Social and Cultural Rights*; Article 26, *International Covenant on Civil and Political Rights*); and + + 3.2.5. Allow for reasonable limitation of working hours and periodic holidays with pay + (See Article 24, *United Nations Universal Declaration of Human Rights*; Article 7, *International Covenant on Economic, Social and Cultural Rights*). + + + + * SUPPLY CHAIN IMPACTED PARTIES: + + + This section identifies additional individuals or entities that a Licensee could harm as a result of violating the Ethical Standards section, the condition that the Licensee must voluntarily accept a Duty of Care for those individuals or entities, and the right to a private right of action that those individuals or entities possess as a result of violations of the Ethical Standards section. + + 4.1. In addition to the above Ethical Standards, Licensee voluntarily accepts a Duty of Care for Supply Chain Impacted Parties of this License, including individuals and communities impacted by violations of the Ethical Standards. The Duty of Care is breached when a provision within the Ethical Standards section is violated by a Licensee, one of its successors or assigns, or by an individual or entity that exists within the Supply Chain prior to a good or service reaching the Licensee. + + 4.2. Breaches of the Duty of Care, as stated within this section, shall create a private right of action, allowing any Supply Chain Impacted Party harmed by the Licensee to take legal action against the Licensee in accordance with applicable negligence laws, whether they be in tort law, delict law, and/or similar bodies of law closely related to tort and/or delict law, regardless if Licensee is directly responsible for the harms suffered by a Supply Chain Impacted Party. Nothing in this section shall be interpreted to include acts committed by individuals outside of the scope of his/her/their employment. + + + + * NOTICE: + This section explains when a Licensee must notify others of the License. + + + 5.1. Distribution of Notice: Licensee must ensure that everyone who receives a copy of or uses any part of Software from Licensee, with or without changes, also receives the License and the copyright notice included with Software (and if included by the Licensor, patent, trademark, and attribution notice). Licensee must ensure that License is prominently displayed so that any individual or entity seeking to download, copy, use, or otherwise receive any part of Software from Licensee is notified of this License and its terms and conditions. Licensee must cause any modified versions of the Software to carry prominent notices stating that Licensee changed the Software. + + 5.2. Modified Software: Licensee is free to create modifications of the Software and distribute only the modified portion created by Licensee, however, any derivative work stemming from the Software or its code must be distributed pursuant to this License, including this Notice provision. + + 5.3. Recipients as Licensees: Any individual or entity that uses, copies, modifies, reproduces, distributes, or prepares derivative work based upon the Software, all or part of the Software’s code, or a derivative work developed by using the Software, including a portion of its code, is a Licensee as defined above and is subject to the terms and conditions of this License. + + + * REPRESENTATIONS AND WARRANTIES: + + + 6.1. Disclaimer of Warranty: TO THE FULL EXTENT ALLOWED BY LAW, THIS SOFTWARE COMES "AS IS,” WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED, AND LICENSOR SHALL NOT BE LIABLE TO ANY PERSON OR ENTITY FOR ANY DAMAGES OR OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THIS LICENSE, UNDER ANY LEGAL CLAIM. + + 6.2. Limitation of Liability: LICENSEE SHALL HOLD LICENSOR HARMLESS AGAINST ANY AND ALL CLAIMS, DEBTS, DUES, LIABILITIES, LIENS, CAUSES OF ACTION, DEMANDS, OBLIGATIONS, DISPUTES, DAMAGES, LOSSES, EXPENSES, ATTORNEYS’ FEES, COSTS, LIABILITIES, AND ALL OTHER CLAIMS OF EVERY KIND AND NATURE WHATSOEVER, WHETHER KNOWN OR UNKNOWN, ANTICIPATED OR UNANTICIPATED, FORESEEN OR UNFORESEEN, ACCRUED OR UNACCRUED, DISCLOSED OR UNDISCLOSED, ARISING OUT OF OR RELATING TO LICENSEE’S USE OF THE SOFTWARE. NOTHING IN THIS SECTION SHOULD BE INTERPRETED TO REQUIRE LICENSEE TO INDEMNIFY LICENSOR, NOR REQUIRE LICENSOR TO INDEMNIFY LICENSEE. + + + * TERMINATION + + + 7.1. Violations of Ethical Standards or Breaching Duty of Care: If Licensee violates the Ethical Standards section or Licensee, or any other person or entity within the Supply Chain prior to a good or service reaching the Licensee, breaches its Duty of Care to Supply Chain Impacted Parties, Licensee must remedy the violation or harm caused by Licensee within 30 days of being notified of the violation or harm. If Licensee fails to remedy the violation or harm within 30 days, all rights in the Software granted to Licensee by License will be null and void as between Licensor and Licensee. + + 7.2. Failure of Notice: If any person or entity notifies Licensee in writing that Licensee has not complied with the Notice section of this License, Licensee can keep this License by taking all practical steps to comply within 30 days after the notice of noncompliance. If Licensee does not do so, Licensee’s License (and all rights licensed hereunder) will end immediately. + + 7.3. Judicial Findings: In the event Licensee is found by a civil, criminal, administrative, or other court of competent jurisdiction, or some other adjudicating body with legal authority, to have committed actions which are in violation of the Ethical Standards or Supply Chain Impacted Party sections of this License, all rights granted to Licensee by this License will terminate immediately. + + 7.4. Patent Litigation: If Licensee institutes patent litigation against any entity (including a cross-claim or counterclaim in a suit) alleging that the Software, all or part of the Software’s code, or a derivative work developed using the Software, including a portion of its code, constitutes direct or contributory patent infringement, then any patent license, along with all other rights, granted to Licensee under this License will terminate as of the date such litigation is filed. + + 7.5. Additional Remedies: Termination of the License by failing to remedy harms in no way prevents Licensor or Supply Chain Impacted Party from seeking appropriate remedies at law or in equity. + + + * MISCELLANEOUS: + + + 8.1. Conditions: Sections 3, 4.1, 5.1, 5.2, 7.1, 7.2, 7.3, and 7.4 are conditions of the rights granted to Licensee in the License. + + 8.2. Equitable Relief: Licensor and any Supply Chain Impacted Party shall be entitled to equitable relief, including injunctive relief or specific performance of the terms hereof, in addition to any other remedy to which they are entitled at law or in equity. + + 8.3. (Module – Copyleft) Copyleft: Modified software, source code, or other derivative work must be licensed, in its entirety, under the exact same conditions as this License. + + 8.4. Severability: If any term or provision of this License is determined to be invalid, illegal, or unenforceable by a court of competent jurisdiction, any such determination of invalidity, illegality, or unenforceability shall not affect any other term or provision of this License or invalidate or render unenforceable such term or provision in any other jurisdiction. If the determination of invalidity, illegality, or unenforceability by a court of competent jurisdiction pertains to the terms or provisions contained in the Ethical Standards section of this License, all rights in the Software granted to Licensee shall be deemed null and void as between Licensor and Licensee. + + 8.5. Section Titles: Section titles are solely written for organizational purposes and should not be used to interpret the language within each section. + + 8.6. Citations: Citations are solely written to provide context for the source of the provisions in the Ethical Standards. + + 8.7. Section Summaries: Some sections have a brief italicized description which is provided for the sole purpose of briefly describing the section and should not be used to interpret the terms of the License. + + 8.8. Entire License: This is the entire License between the Licensor and Licensee with respect to the claims released herein and that the consideration stated herein is the only consideration or compensation to be paid or exchanged between them for this License. This License cannot be modified or amended except in a writing signed by Licensor and Licensee. + + 8.9. Successors and Assigns: This License shall be binding upon and inure to the benefit of the Licensor’s and Licensee’s respective heirs, successors, and assigns. json: hippocratic-3.0.json - yml: hippocratic-3.0.yml + yaml: hippocratic-3.0.yml html: hippocratic-3.0.html - text: hippocratic-3.0.LICENSE + license: hippocratic-3.0.LICENSE - license_key: historical + category: Permissive spdx_license_key: HPND other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 copyright + holder or related entities not be used in advertising or publicity + pertaining to distribution of the software without specific, written + prior permission. Copyright holder makes no representations about + the suitability of this software for any purpose. It is provided "as is" + without express or implied warranty. + + Copyright holder DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS + SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS. IN NO EVENT SHALL copyright holder 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. json: historical.json - yml: historical.yml + yaml: historical.yml html: historical.html - text: historical.LICENSE + license: historical.LICENSE - license_key: historical-ntp + category: Permissive spdx_license_key: LicenseRef-scancode-historical-ntp other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is hereby granted for unlimited modification, use, and + distribution. This software is made available with no warranty of any + kind, express or implied. This copyright notice must remain intact in + all versions of this software. + + The author would appreciate it if any bug fixes and enhancements were + to be sent back to him for incorporation into future versions of this + software. json: historical-ntp.json - yml: historical-ntp.yml + yaml: historical-ntp.yml html: historical-ntp.html - text: historical-ntp.LICENSE + license: historical-ntp.LICENSE - license_key: historical-sell-variant + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + Permission to use, copy, modify, distribute, and sell this software and its + documentation for any purpose is hereby granted without fee, provided that the + above copyright notice appears in all copies, and that both that the copyright + notice and this permission notice appear in supporting documentation , and that + the name of copyright holder or related entities not be used in advertising + or publicity pertaining to distribution of the software without specific, + written prior permission. + + copyright holder makes no representations about the suitability of this software + for any purpose. It is provided "as is" without express or implied warranty. + + copyright holder DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. + IN NO EVENT SHALL copyright holder 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. json: historical-sell-variant.json - yml: historical-sell-variant.yml + yaml: historical-sell-variant.yml html: historical-sell-variant.html - text: historical-sell-variant.LICENSE + license: historical-sell-variant.LICENSE - license_key: homebrewed + category: Permissive spdx_license_key: LicenseRef-scancode-homebrewed other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms of the software as well + as documentation, with or without modification, are permitted provided + that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + * The names of the contributors may not be used to endorse or + promote products derived from this software without specific + prior written permission. + + * If you meet the authors of this software in person and you want to + pay them a beer, you're encouraged to do so. Please, do. If you have + homebrewed or a craft beer, it might be even better. + + THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND + CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT + NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER + OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. json: homebrewed.json - yml: homebrewed.yml + yaml: homebrewed.yml html: homebrewed.html - text: homebrewed.LICENSE + license: homebrewed.LICENSE - license_key: hot-potato + category: Permissive spdx_license_key: LicenseRef-scancode-hot-potato other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + All rights reserved by the last person to commit a change to this + repository, except for the right to commit changes to this repository, + which is hereby granted to all of earth's citizens for the purpose of + committing changes to this repository. json: hot-potato.json - yml: hot-potato.yml + yaml: hot-potato.yml html: hot-potato.html - text: hot-potato.LICENSE + license: hot-potato.LICENSE - license_key: hp + category: Proprietary Free spdx_license_key: LicenseRef-scancode-hp other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "HP SOFTWARE LICENSE TERMS\nNO COMMERCIALIZATION, LIMITED DISTRIBUTION PERMITTED \n\n\ + THE TERM \"SOFTWARE\" REFERS TO THIS CODE (WHETHER SOURCE OR OBJECT CODE),\nANY COMPONENT\ + \ OR MODULE THEREOF, ANY INFORMATION (INCLUDING ANY DOCUMENTATION)\nPROVIDED IN CONNECTION\ + \ WITH THE SOFTWARE, AND ANY DERIVATIVE OF THESE THINGS.\nBY DOWNLOADING, ACCESSING OR USING\ + \ THE SOFTWARE, YOU AGREE TO BE BOUND BY THE\nTERMS AND CONDITIONS OF THIS LICENSING AGREEMENT.\ + \ THE SOFTWARE AND EACH OF ITS\nCOMPONENTS ARE PROTECTED UNDER COPYRIGHT LAWS. HEWLETT-PACKARD\ + \ COMPANY (\"HP\")\nRESERVES ALL RIGHTS EXCEPT THOSE EXPRESSLY GRANTED BY THIS LICENSE AGREEMENT.\ + \ \n\n(C) HEWLETT-PACKARD COMPANY, 2004.\n\nHP IS AGREEING TO LET YOU DOWNLOAD AND USE\ + \ THE SOFTWARE UNDER THE TERMS OF THIS AGREEMENT WITHOUT ANY FINANCIAL CHARGE. YOU THEREFORE\ + \ AGREE TO WAIVE ANY AND ALL DAMAGES AGAINST HP RELATING TO DOWNLOAD OR USE OF THE SOFTWARE,\ + \ OR TO ANY ACT OR OMISSION ON THE PART OF HP, ITS OFFICERS, DIRECTORS, VENDORS, SUPPLIERS,\ + \ EMPLOYEES OR AGENTS IN CONNECTION WITH THE SOFTWARE. THE BARGAIN BASIS FOR HP'S AGREEMENT\ + \ TO PERMIT YOUR DOWNLOAD OR USE OF THE SOFTWARE DOES NOT REFLECT ANY ASSUMPTION OF LIABILITY\ + \ OR DAMAGES ON HP'S BEHALF; IF YOU DO NOT AGREE TO THIS CONDITION AND TO THE OTHER TERMS\ + \ AND CONDITIONS OF THIS AGREEMENT, YOUR SOLE REMEDY IS TO NOT DOWNLOAD AND TO NOT USE THE\ + \ SOFTWARE. HP REPRESENTS, AND YOU ACKNOWLEDGE, THAT THE SOFTWARE IS EXPERIMENTAL IN NATURE,\ + \ IS NOT OF PRODUCT QUALITY, AND MAY HAVE BUGS OR ERRORS, AND THAT ITS SAFETY IS NOT REPRESENTED;\ + \ IT SHALL BE SOLELY UP TO YOU AND ANY USER TO DETERMINE WHETHER THE SOFTWARE MAY BE SAFELY\ + \ OR RELIABLY USED FOR ANY PURPOSE. THESE CONDITIONS, AS WELL AS ALL OF THE CONDITIONS\ + \ STATED BELOW, ARE OF MATERIAL INDUCEMENT FOR HP TO RELEASE THE SOFTWARE; THAT IS TO SAY,\ + \ WITHOUT A DAMAGES RELEASE AND RELEASE AND DISCLAIMER OF OTHER RIGHTS AND REMEDIES, HP\ + \ REPRESENTS THAT IT WOULD NOT RELEASE THE SOFTWARE TO YOU. HP DISCLAIMS, AND YOU HEREBY\ + \ WAIVE, ANY AND ALL WARRANTIES WITH RESPECT TO THE SOFTWARE, INCLUDING WITHOUT LIMITATION\ + \ ANY WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE, OR MERCHANTABILITY. \n\nYOU MAY USE\ + \ THE SOFTWARE FOR NON-COMMERCIAL USE, AT YOUR SOLE RISK AND DISCRETION. \"NON-COMMERCIAL\ + \ USE\" MEANS THAT YOU MAY USE THE SOFTWARE FOR PERSONAL USE OR RESEARCH OR ACADEMIC PURPOSES,\ + \ BUT THAT YOU MAY NOT, DIRECTLY OR INDIRECTLY, (A) INCORPORATE THIS SOFTWARE INTO ANY PRODUCT\ + \ OFFERED FOR SALE, OR USE THE SOFTWARE TO PROVIDE A SERVICE FOR WHICH A FEE IS CHARGED,\ + \ (B) SELL ANY PRODUCT OR SERVICE DESIGNED SPECIALLY TO INTERFACE WITH, OR TO ACT AS A MODULE\ + \ SPECIALLY ADAPTED TO FUNCTION WITH, THE SOFTWARE, OR (C) CHARGE ANY FEE IN CONNECTION\ + \ WITH THE SOFTWARE. SUBJECT TO THESE LIMITATIONS, YOU MAY MAKE COPIES AND DERIVATIVE WORKS\ + \ OF THE SOFTWARE AND DISTRIBUTE SUCH COPIES TO OTHER PERSONS PROVIDED THAT SUCH COPIES\ + \ AND RELATED DISTRIBUTION ARE ACCOMPANIED BY HP'S COPYRIGHT NOTICE AND THIS AGREEMENT AND\ + \ ARE SUBJECT TO THE TERMS OF THIS AGREEMENT, VERBATIM.\n\nHP SHALL HAVE NO OBLIGATION TO\ + \ PROVIDE SUPPORT OR MAINTENANCE FOR, OR TO PROVIDE ANY UPDATES TO, THE SOFTWARE. HP SHALL\ + \ HAVE NO OBLIGATION TO RESPOND TO QUESTIONS OR TO PROVIDE INFORMATION REGARDING THE SOFTWARE.\ + \ \nTHIS AGREEMENT AND ALL MATTERS REGARDING THE SOFTWARE SHALL BE INTERPRETED EXCLUSIVELY\ + \ BY APPLYING THE LAWS OF THE STATE OF DELAWARE, USA, WITHOUT REGARD TO ITS CONFLICT OF\ + \ LAWS PRINCIPLES. \nANY VIOLATION OF THIS AGREEMENT AND THESE TERMS WILL BE DEEMED TO CAUSE\ + \ HP IRREPARABLE HARM. \nTHESE CONDITIONS SHALL APPLY EVEN IF YOU ADVISE HP TO THE CONTRARY\ + \ IN WRITING OR OTHERWISE; THIS AGREEMENT MAY NOT BE CONTRADICTED OR ALTERED, EXCEPT BY\ + \ A WRITTEN AMENDMENT THAT BOTH SPECIFICALLY REFERENCES THIS AGREEMENT AND IS SIGNED BY\ + \ AN AUTHORIZED REPRESENTATIVE OF HP." json: hp.json - yml: hp.yml + yaml: hp.yml html: hp.html - text: hp.LICENSE + license: hp.LICENSE - license_key: hp-enterprise-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-hp-enterprise-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Hewlett Packard Enterprise Support Center\n\nHPE End User License Agreement\n\nApplicability.\ + \ This end user license agreement (the \"Agreement\") governs the use of accompanying software,\ + \ unless it is subject to a separate agreement between you and Hewlett Packard Enterprise\ + \ Company and its subsidiaries (\"HPE\"). By downloading, copying, or using the software\ + \ you agree to this Agreement. HPE provides translations of this Agreement in certain languages\ + \ other than English, which may be found at: http://www.hpe.com/software/SWLicensing.\n\n\ + Terms. This Agreement includes supporting material accompanying the software or referenced\ + \ by HPE, which may be software license information, additional license authorizations,\ + \ software specifications, published warranties, supplier terms, open source software licenses\ + \ and similar content (\"Supporting Material\"). Additional license authorizations are at:\ + \ http://www.hpe.com/software/SWLicensing.\n\nAuthorization. If you agree to this Agreement\ + \ on behalf of another person or entity, you warrant you have authority to do so.\n\nConsumer\ + \ Rights. If you obtained software as a consumer, nothing in this Agreement affects your\ + \ statutory rights.\n\nElectronic Delivery. HPE may elect to deliver software and related\ + \ software product or license information by electronic transmission or download.\n\nLicense\ + \ Grant. If you abide by this Agreement, HPE grants you a non-exclusive non-transferable\ + \ license to use one copy of the version or release of the accompanying software for your\ + \ internal purposes only, and is subject to any specific software licensing information\ + \ that is in the software product or its Supporting Material. \n\nYour use is subject to\ + \ the following restrictions, unless specifically allowed in Supporting Material:\nYou may\ + \ not use software to provide services to third parties.\nYou may not make copies and distribute,\ + \ resell or sublicense software to third parties.\nYou may not download and use patches,\ + \ enhancements, bug fixes, or similar updates unless you have a license to the underlying\ + \ software. However, such license doesn't automatically give you a right to receive such\ + \ updates and HPE reserves the right to make such updates only available to customers with\ + \ support contracts.\nYou may not copy software or make it available on a public or external\ + \ distributed network.\nYou may not allow access on an intranet unless it is restricted\ + \ to authorized users.\nYou may make one copy of the software for archival purposes or when\ + \ it is an essential step in authorized use.\nYou may not modify, reverse engineer, disassemble,\ + \ decrypt, decompile or make derivative works of software. If you have a mandatory right\ + \ to do so under statute, you must inform HPE in writing about such modifications.\n\nRemote\ + \ Monitoring. Some software may require keys or other technical protection measures and\ + \ HPE may monitor your compliance with the Agreement, remotely or otherwise. If HPE makes\ + \ a license management program for recording and reporting license usage information, you\ + \ will use such program no later than 180 days from the date it's made available.\n\nOwnership.\ + \ No transfer of ownership of any intellectual property will occur under this Agreement.\n\ + \nCopyright Notices. You must reproduce copyright notices on software and documentation\ + \ for authorized copies.\n\nOperating Systems. Operating system software may only be used\ + \ on approved hardware and configurations.\n\n90-day Limited Warranty for HPE Software.\n\ + HPE-branded software materially conforms to its specifications, if any, and is free of malware\ + \ at the time of delivery; if you notify HPE within 90 days of delivery of non-conformance\ + \ to this warranty, HPE will replace your copy. This Agreement states all remedies for warranty\ + \ claims.\nHPE does not warrant that the operation of software will be uninterrupted or\ + \ error free, or that software will operate in hardware and software combinations other\ + \ than as authorized by HPE in Supporting Material. To the extent permitted by law, HPE\ + \ disclaims all other warranties.\n\nIntellectual Property Rights Infringement. HPE will\ + \ defend and/or settle any claims against you that allege that HPE-branded software as supplied\ + \ under this Agreement infringes the intellectual property rights of a third party. HPE\ + \ will rely on your prompt notification of the claim and cooperation with our defense. HPE\ + \ may modify the software so as to be non-infringing and materially equivalent, or we may\ + \ procure a license. If these options are not available, we will refund to you the amount\ + \ paid for the affected product in the first year or the depreciated value thereafter. HPE\ + \ is not responsible for claims resulting from any unauthorized use of the software.\n\n\ + Limitation of Liability. HPE's liability to you under this Agreement is limited to the amount\ + \ actually paid by you to HPE for the relevant software, except for amounts in Section 12\ + \ (\"Intellectual Property Rights Infringement\"). Neither you nor HPE will be liable for\ + \ lost revenues or profits, downtime costs, loss or damage to data or indirect, special\ + \ or consequential costs or damages. This provision does not limit either party's liability\ + \ for: unauthorized use of intellectual property, death or bodily injury caused by their\ + \ negligence; acts of fraud; willful repudiation of the Agreement; or any liability that\ + \ may not be excluded or limited by applicable law.\n\nTermination. This Agreement is effective\ + \ until terminated or in the case of a limited-term license, upon expiration; however, your\ + \ rights under this Agreement terminate if you fail to comply with it. Immediately upon\ + \ termination or expiration, you will destroy the software and documentation and any copies,\ + \ or return them to HPE. You may keep one copy of software and documentation for archival\ + \ purposes. We may ask you to certify in writing you have complied with this section. Warranty\ + \ disclaimers, the limitation of liability, this section on termination, and Section 15\ + \ (\"General\") will survive termination.\n\nGeneral.\nAssignment. You may not assign this\ + \ Agreement without prior written consent of HPE, payment of transfer fees and compliance\ + \ with HPE's software license transfer policies. Authorized assignments will terminate your\ + \ license to the software and you must deliver software and documentation and copies thereof\ + \ to the assignee. The assignee will agree in writing to this Agreement. You may only transfer\ + \ firmware if you transfer associated hardware.\n\nU.S. Government. If the software is licensed\ + \ to you for use in the performance of a U.S. Government prime contract or subcontract,\ + \ you agree that, consistent with FAR 12.211 and 12.212, commercial computer software, computer\ + \ software documentation and technical data for commercial items are licensed under HPE's\ + \ standard commercial license.\n\nGlobal Trade Compliance. You agree to comply with the\ + \ trade-related laws and regulations of the U.S. and other national governments. If you\ + \ export, import or otherwise transfer products provided under this Agreement, you will\ + \ be responsible for obtaining any required export or import authorizations. You confirm\ + \ that you are not located in a country that is subject to trade control sanctions (currently\ + \ Cuba, Iran, N. Korea, N. Sudan, and Syria) and further agree that you will not retransfer\ + \ the products to any such country. HPE may suspend its performance under this Agreement\ + \ to the extent required by laws applicable to either party.\n\nAudit. HPE may audit you\ + \ for compliance with the software license terms. Upon reasonable notice, HPE may conduct\ + \ an audit during normal business hours (with the auditor's costs being at HPE's expense).\ + \ If an audit reveals underpayments then you will pay to HPE such underpayments. If underpayments\ + \ discovered exceed five (5) percent, you will reimburse HPE for the auditor costs.\n\n\ + Open Source Components. To the extent the Supporting Material includes open source licenses,\ + \ such licenses shall control over this Agreement with respect to the particular open source\ + \ component. To the extent Supporting Material includes the GNU General Public License or\ + \ the GNU Lesser General Public License: (a) the software includes a copy of the source\ + \ code; or (b) if you downloaded the software from a website, a copy of the source code\ + \ is available on the same website; or (c) if you send HPE written notice, HPE will send\ + \ you a copy of the source code for a reasonable fee.\n\nNotices. Written notices under\ + \ this Agreement may be provided to HPE via the method provided in the Supporting Material.\n\ + \nGoverning Law. This Agreement will be governed by the laws of the state of California,\ + \ U.S.A., excluding rules as to choice and conflict of law. You and HPE agree that the United\ + \ Nations Convention on Contracts for the International Sale of Goods will not apply.\n\n\ + Force Majeure. Neither party will be liable for performance delays nor for non-performance\ + \ due to causes beyond its reasonable control, except for payment obligations.\n\nEntire\ + \ Agreement. This Agreement represents our entire understanding with respect to its subject\ + \ matter and supersedes any previous communication or agreements that may exist. Modifications\ + \ to the Agreement will be made only through a written amendment signed by both parties.\ + \ If HPE doesn't exercise its rights under this Agreement, such delay is not a waiver of\ + \ its rights.\n\nAustralian Consumers. If you acquired the software as a consumer within\ + \ the meaning of the 'Australian Consumer Law' under the Australian Competition and Consumer\ + \ Act 2010 (Cth) then despite any other provision of this Agreement, the terms at this URL\ + \ apply: http://www.hpe.com/software/SWLicensing.\n\nRussian Consumers. If you are based\ + \ in the Russian Federation and the rights to use the software are provided to you under\ + \ a separate license and/or sublicense agreement concluded between you and a duly authorized\ + \ HPE partner, then this Agreement shall not be applicable.\n\n5012-3777 v1.5, 2016 \n\ + Copyright 2015 Hewlett Packard Enterprise Development LP" json: hp-enterprise-eula.json - yml: hp-enterprise-eula.yml + yaml: hp-enterprise-eula.yml html: hp-enterprise-eula.html - text: hp-enterprise-eula.LICENSE + license: hp-enterprise-eula.LICENSE - license_key: hp-netperf + category: Free Restricted spdx_license_key: LicenseRef-scancode-hp-netperf other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + The enclosed software and documentation includes copyrighted works of Hewlett-Packard Co. For as long as you comply with the following limitations, you are hereby authorized to (i) use, reproduce, and modify the software and documentation, and to (ii) distribute the software and documentation, including modifications, for non-commercial purposes only. + + 1. The enclosed software and documentation is made available at no charge in order to advance the general development of high-performance networking products. + + 2. You may not delete any copyright notices contained in the software or documentation. All hard copies, and copies in source code or object code form, of the software or documentation (including modifications) must contain at least one of the copyright notices. + + 3. The enclosed software and documentation has not been subjected to testing and quality control and is not a Hewlett-Packard Co. product. At a future time, Hewlett-Packard Co. may or may not offer a version of the software and documentation as a product. + + 4. THE SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS". HEWLETT-PACKARD COMPANY DOES NOT WARRANT THAT THE USE, REPRODUCTION, MODIFICATION OR DISTRIBUTION OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE A THIRD PARTY'S INTELLECTUAL PROPERTY RIGHTS. HP DOES NOT WARRANT THAT THE SOFTWARE OR DOCUMENTATION IS ERROR FREE. HP DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, WITH REGARD TO THE SOFTWARE AND THE DOCUMENTATION. HP SPECIFICALLY DISCLAIMS ALL WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + 5. HEWLETT-PACKARD COMPANY WILL NOT IN ANY EVENT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES (INCLUDING LOST PROFITS) RELATED TO ANY USE, REPRODUCTION, MODIFICATION, OR DISTRIBUTION OF THE SOFTWARE OR DOCUMENTATION. json: hp-netperf.json - yml: hp-netperf.yml + yaml: hp-netperf.yml html: hp-netperf.html - text: hp-netperf.LICENSE + license: hp-netperf.LICENSE - license_key: hp-proliant-essentials + category: Commercial spdx_license_key: LicenseRef-scancode-hp-proliant-essentials other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "hp-proliant-essentials\n\n\n\t\tPROLIANT ESSENTIALS SOFTWARE\n\n\t\tEND USER LICENSE\ + \ AGREEMENT\n\nPLEASE READ THIS END USER LICENSE AGREEMENT (\"AGREEMENT\") CAREFULLY. THIS\n\ + AGREEMENT IS A LEGAL AGREEMENT BETWEEN YOU (EITHER AN INDIVIDUAL OR SINGLE\nENTITY) (\"\ + YOU\") AND HEWLETT-PACKARD COMPANY (\"HP\"). BY CLICKING THE \"AGREE\"\nBUTTON BELOW, COPYING,\ + \ INSTALLING, OR OTHERWISE USING THE SOFTWARE,\n(i) YOU DO SO WITH THE INTENT TO ELECTRONICALLY\ + \ \"EXECUTE\" THIS AGREEMENT, AND\n(ii) YOU AGREE TO BE BOUND BY AND COMPLY WITH THE FOLLOWING\ + \ TERMS AND\nCONDITIONS, INCLUDING THE WARRANTY STATEMENT, AS WELL AS ANY TERMS AND\nCONDITIONS\ + \ CONTAINED IN THE \"ANCILLARY SOFTWARE\" LIST.\n\nIF YOU DO NOT AGREE TO THE TERMS AND\ + \ CONDITIONS OF THIS AGREEMENT,\n(A) IF THIS AGREEMENT IS DISPLAYED ELECTRONICALLY, YOU\ + \ MAY INDICATE REJECTION\n OF THIS AGREEMENT BY CLICKING THE \"DISAGREE\" BUTTON;\n(B)\ + \ YOU SHALL NOT INSTALL THE SOFTWARE; AND\n(C) HP DOES NOT GRANT YOU ANY RIGHTS TO USE THE\ + \ SOFTWARE.\nNOTWITHSTANDING THE FOREGOING, INSTALLING OR OTHERWISE USING THE SOFTWARE\n\ + INDICATES YOUR ACCEPTANCE OF THE TERMS AND CONDITIONS OF THIS AGREEMENT.\nIF YOU PURCHASED\ + \ THE SOFTWARE, YOU MAY RETURN THE SOFTWARE TO THE PLACE OF\nPURCHASE FOR A FULL REFUND.\n\ + \nTHE SOFTWARE PROVIDED HEREIN, IS PROVIDED BY HP AND BY THIRD PARTIES, INCLUDING\nTHE OPEN\ + \ SOURCE COMMUNITY (\"ANCILLARY SOFTWARE\"). USE OF THE HP SOFTWARE, THE\nANCILLARY SOFTWARE,\ + \ ACCOMPANYING PRINTED MATERIALS, AND THE \"ONLINE\" OR\nELECTRONIC DOCUMENTATION (COLLECTIVELY\ + \ THE \"PRODUCT\") IS CONDITIONED UPON AND\nLIMITED BY THE FOLLOWING TERMS AND CONDITIONS,\ + \ INCLUDING THE \"AS IS WARRANTY\nSTATEMENT\" AND THE TERMS AND CONDITIONS OF THE ANCILLARY\ + \ SOFTWARE LICENSE\nAGREEMENTS (\"ANCILLARY SOFTWARE LICENSES\").\n\nUSE OF ANCILLARY SOFTWARE\ + \ SHALL BE GOVERNED BY THE ANCILLARY SOFTWARE LICENSE,\nEXCEPT THAT THE DISCLAIMER OF WARRANTIES\ + \ AND LIMITATION OF LIABILITIES\nPROVISIONS CONTAINED IN THE \"AS-IS WARRANTY STATEMENT\"\ + \ OF THIS AGREEMENT SHALL\nALSO APPLY TO SUCH ANCILLARY SOFTWARE. HP HAS IDENTIFIED ANCILLARY\ + \ SOFTWARE\nBY EITHER NOTING THE ANCILLARY SOFTWARE PROVIDER\"S OWNERSHIP WITHIN EACH\n\ + ANCILLARY SOFTWARE PROGRAM FILE AND/OR BY PROVIDING LICENSING INFORMATION IN\nTHE \"ANCILLARY\ + \ SOFTWARE\" LIST. BY ACCEPTING THE TERMS AND CONDITIONS OF THIS\nAGREEMENT, YOU ARE ALSO\ + \ ACCEPTING THE TERMS AND CONDITIONS OF EACH ANCILLARY\nSOFTWARE LICENSE IN THE ANCILLARY\ + \ SOFTWARE LIST.\n\nIF AND ONLY IF THE PRODUCT INCLUDES SOFTWARE LICENSED UNDER THE GNU\ + \ GENERAL\nPUBLIC LICENSE (\"GPL SOFTWARE\"), YOU MAY OBTAIN A COMPLETE MACHINE-READABLE\n\ + COPY OF THE GPL SOFTWARE SOURCE CODE (\"GPL SOURCE CODE\") BY DOWNLOAD FROM A\nSITE SPECIFIED\ + \ IN THE FOLLOWING HP WEBSITE:\nHTTP://H18004.WWW1.HP.COM/PRODUCTS/SERVERS/PROLIANTESSENTIALS/VALUEPACK/LICENSING.HTML.\n\ + UPON YOUR WRITTEN REQUEST, HP WILL PROVIDE, FOR A FEE COVERING THE COST OF\nDISTRIBUTION,\ + \ A COMPLETE MACHINE-READABLE COPY OF THE GPL SOURCE CODE, BY MAIL,\nTO YOU. INFORMATION\ + \ ABOUT HOW TO MAKE A WRITTEN REQUEST FOR GPL SOURCE CODE\nMAY BE FOUND AT THE FOLLOWING\ + \ WEBSITE:\nHTTP://H18004.WWW1.HP.COM/PRODUCTS/SERVERS/PROLIANTESSENTIALS/VALUEPACK/LICENSING.HTML\ + \ .\n\n\nLICENSE TERMS\n\nSUBJECT TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND ANY\ + \ RIGHTS,\nLIMITATIONS AND OBLIGATIONS SET FORTH IN THE ANCILLARY SOFTWARE LICENSES:\n\n\ + 1.\tLICENSE GRANT\n\na.\tIF SOFTWARE DOES NOT REQUIRE AN ACTIVATION KEY. If the Software\ + \ does\nnot require an Activation Key and provided that You comply with all the terms\n\ + and conditions of this Agreement, HP grants You a non-exclusive,\nnon-transferable (except\ + \ as provided in Section 16), worldwide (except for the\ncountries referenced in Section\ + \ 12) license under HP's copyrights, to install,\ncopy on as many computers as you need\ + \ for your business, use, execute, make\narchival or backup copies, and display (\"Use\"\ + ) the object code version of the\nProduct on the computer(s) on which this Product is installed\ + \ and in the\noperating environment as identified by HP in the accompanying materials.\n\ + \nb.\tIF SOFTWARE REQUIRES AN ACTIVATION KEY. If the Software requires an\nActivation Key,\ + \ and provided that You comply with all terms and conditions of\nthis Agreement, then depending\ + \ upon the specific hardware configuration You\nemploy, HP grants You the following license\ + \ (\"License Type\") and rights:\n\n\tAuthorized Copies. You are licensed to install,\ + \ make Authorized Copies\nof (as defined in this section), execute, and display (\"Use\"\ + ) the object code\nversion of the Product on an equivalent number of Computers, Host/Client\ + \ Pairs,\nComputer Nodes, or Clustered Computers (as defined in the table below) as you\n\ + have Authorized Copies. Authorized Copies is defined as the number of copies\nthat you\ + \ have paid for as stated in the invoice or comparable document\nevidencing an authorized\ + \ quantity.\n\nLICENSE TYPE \tSOFTWARE INSTALLS TO:\t\tLICENSED RIGHTS\n\t\t(hardware configuration)\n\ + ------------------------------------------------------------------------------\nComputer\t\ + A computer \t\t\tYou have a right to install\n\t\t\t\t\t\tand Use the Product on a single\n\ + \t\t\t\t\t\tcomputer. The installed copy\n\t\t\t\t\t\tmay not be transferred to or\n\t\t\ + \t\t\t\tused on any other computer.\n\n------------------------------------------------------------------------------\n\ + Node/Client\tA set of computers with a\tYou have a right to install and\n\t\tminimum of\ + \ one host and one\tUse the Product on a Host/Client\n\t\tclient connected to each\tPair\ + \ or a Single Node. Copies\n\t\tother (\"Host/Client Pair\"),\tof the Product installed\ + \ on a\n\t\tor in certain instances, a\tHost/Client Pair or Single Node\n\t\tsingle computer\t\ + \t\tmay not be transferred to any\n\t\t(\"Single Node\")\t\t\tother host or client computers\n\ + \t\t\t\t\t\tor other single nodes. You can\n\t\t\t\t\t\tcontinue to Use the Product on\n\ + \t\t\t\t\t\tlicensed clients when a new\n\t\t\t\t\t\tserver is introduced to the\n\t\t\t\ + \t\t\tlicensed clients.\n\n------------------------------------------------------------------------------\n\ + Cluster\t\tMore than two computers\t\tYou have a right to install and\n\t\tphysically connected\ + \ together\tUse the Product on each\n\t\tin a cluster configuration\tClustered Computer.\ + \ The\n\t\t(each of which is referred to\tinstalled copy may not be\n\t\tas \"Clustered\ + \ Computer\")\ttransferred to or used on any\n\t\t\t\t\t\tother computer.\n\n\t\t\n\tStorage.\ + \ You may copy the Product into the local memory or storage\ndevice of the hardware configuration\ + \ loaded with the Authorized Copies. You may\ncopy the Product onto a reasonable number\ + \ of network servers or a secure\nintranet for the sole purpose of distributing the Product\ + \ to the Computers,\nHost/Client Pairs, Computer Nodes, or Clustered Computers. You may\ + \ make\narchival or back-up copies of the Product. You shall keep the activation key\nwith\ + \ the hardware configuration to which the activation key is licensed. You\nshould keep copies\ + \ of the activation key information for future retrieval\npurposes.\n\n2.\t NEW RELEASES.\ + \ \"New Release\" means a release of the Product that may\ncontain fixes, corrections,\ + \ or minor improvements to the Product. New Releases\nare distributed from time to time\ + \ solely at the option of HP. If HP offers a\nNew Release, it may come with its own terms\ + \ and conditions, however if it does\nnot, You may use the New Release only under the terms\ + \ and conditions of this\nAgreement.\n3.\tNEW VERSIONS. \"New Version\" means a version\ + \ of the Product that may\ncontain significant changes, enhancements, and/or functional\ + \ improvements to\nthe Product. New Versions are distributed solely at the option of HP.\ + \ If HP\noffers a New Version, it may come with its own terms and conditions, however\n\ + if it does not, You may use the New Version only under the terms and conditions\nof this\ + \ Agreement.\n4.\tOWNERSHIP. The Product is owned and copyrighted by Hewlett-Packard\n\ + Development Company, L.P., HP's intellectual property management company, and\nby third\ + \ party suppliers, except for the Ancillary Software, which is owned and\ncopyrighted by\ + \ the Ancillary Software providers indicated in the ANCILLARY\nSOFTWARE list. Your right\ + \ to Use the Product confers no title or ownership and\nis not a sale of the Product or\ + \ any part thereof. Third party suppliers and\nAncillary Software providers are intended\ + \ beneficiaries under this Agreement\nand may protect their rights in their respective portions\ + \ of the Product\ndirectly against You.\n5.\tTRANSFER. Without the prior written consent\ + \ of HP, or unless\nspecifically permitted in the Ancillary Software License, You have\ + \ no right\n(a) to rent, lease, lend, or otherwise transfer the rights to the Product to\n\ + anyone else; (b) to Use the Product for commercial timesharing or bureau use;\nor (c) to\ + \ copy the Product onto any public or distributed network.\n6.\t COPYRIGHT. United States\ + \ copyright laws, other countries' copyright\nlaws, and international treaty provisions\ + \ protect the Product. You shall not\nremove any product identification, copyright notices,\ + \ or proprietary notices\nfrom the Product.\n7.\tSUPPORT. Support terms and conditions\ + \ and contact information are\ndetailed in the Worldwide Limited Warranty and Technical\ + \ Support for Industry\nStandard Server Products statement (\"Support Statement\"), a copy\ + \ of which is\navailable on the HP web site at www.hp.com. Subject to the terms of the\n\ + Support Statement, for HP software products installed on HP computers,\ntechnical support\ + \ for questions regarding media and Product installation may\nbe available for a ninety\ + \ (90) day period from the date of purchase of the HP\ncomputer on which this Product is\ + \ installed (\"Support Term\"). To access this\nsupport in North America, call the HP Technical\ + \ Support Phone Center at\n1-800-652-6672. This service is available during normal business\ + \ hours,\nMonday through Friday, during the Support Term. Outside North America, call\n\ + the nearest HP Technical Support Center. No other support, including\nwithout limitation\ + \ any on-site support, is provided under this Agreement.\n8.\tLIMITATION ON REVERSE ENGINEERING.\ + \ Reverse engineering of Ancillary\nSoftware shall be governed by its respective Ancillary\ + \ Software License. As\nfor the remainder of the Product, You shall not modify, disassemble,\ + \ reverse\nengineer, decompile, decrypt, or otherwise attempt to access or determine the\n\ + source code of the Product without HP's prior written consent. Where You have\nother statutory\ + \ rights with regard to software, You shall provide HP with\nreasonably detailed information\ + \ regarding any intended disassembly or\ndecompilation of the Product prior to performing\ + \ such disassembly or\ndecompilation. You shall not decrypt the Product unless necessary\ + \ for the\nlicensed Use of the Product.\n9.\tRESERVATION OF RIGHTS. HP, its third party\ + \ suppliers, and Ancillary\nSoftware providers reserve all rights not expressly granted\ + \ to You in this\nAgreement.\n10.\tTERM AND TERMINATION. You may exercise the rights of\ + \ this Agreement\nand of the Ancillary Software Licenses for a period of time starting at\ + \ Your\nacceptance of the terms and conditions of this Agreement and for so long as\nYou\ + \ meet such terms and conditions (\"Term\"). Notwithstanding the foregoing,\nHP may terminate\ + \ Your right to Use the Product, upon notice, for Your failure\nto comply with any such\ + \ term or condition. Immediately upon termination, You\nshall remove, destroy, or return\ + \ to HP all copies of the Product, including\nthose copies of the Product that are merged\ + \ into Your adaptations, except for\nindividual pieces of data in Your database. With HP's\ + \ prior written consent,\none copy of the Product may be retained, for archival purposes\ + \ only, subsequent\nto termination. You may terminate this Agreement at any time by returning\ + \ or\ndestroying the Product together with merged portions in any form.\n11.\tCONFIDENTIAL\ + \ COMPUTER SOFTWARE. Valid license from HP required for\npossession, use, or copying. \ + \ Consistent with FAR 12.211 and 12.212, Commercial\nComputer Software, Computer Software\ + \ Documentation, and Technical Data for\nCommercial Items are licensed to the U.S. Government\ + \ under vendor's standard\ncommercial license.\n12.\tCOMPLIANCE WITH LAW. The Product and\ + \ any associated hardware,\nsoftware, technology or services may not be exported, reexported,\ + \ transferred\nor downloaded to persons or entities listed on the U.S. Department of Commerce\n\ + Denied Persons List, Entity List of proliferation concern, or on any U.S.\nTreasury Department\ + \ Designated Nationals exclusion list, any country under\nU.S. economic embargo, or to parties\ + \ directly or indirectly involved in the\ndevelopment or production of nuclear, chemical,\ + \ biological weapons or in\nmissile technology programs as specified in the U.S. Export\ + \ Administration\nRegulations (15 CFR 744). By accepting this Agreement You confirm that\ + \ You\nare not (i) located in (or a national resident of) any country under U.S.\neconomic\ + \ embargo, (ii) identified on any U.S. Department of Commerce Denied\nPersons List, Entity\ + \ List or Treasury Department Designated Nationals exclusion\nlist, and (iii) directly or\ + \ indirectly involved in the development or\nproduction of nuclear, chemical, biological\ + \ weapons or in missile technology\nprograms as specified in the U.S. Export Administration\ + \ Regulations.\n13.\tAPPLICABLE LAW. This Agreement shall be construed in accordance with\n\ + the laws of the State of Texas, without regard to conflict of laws principles.\nThe United\ + \ Nations Convention on Contracts for the International Sale of Goods\nis specifically disclaimed.\ + \ If the Product was acquired outside the United\nStates, then local law may apply.\n14.\t\ + SEVERABILITY. If any term or provision of this Agreement is determined\nto be illegal or\ + \ unenforceable, the validity or enforceability of the remainder\nof the terms or provisions\ + \ herein will remain valid and in full force and\neffect. Failure or delay in enforcing\ + \ any right or provision of this Agreement\nshall not be deemed a waiver of such right or\ + \ provision with respect to any\nsubsequent breach. Provisions herein, which by their nature\ + \ extend beyond the\ntermination of the license in the Product, will remain in effect until\n\ + fulfilled.\n15.\tCONSENT TO USE OF DATA. You agree that HP may collect and use technical\n\ + information that You provide in connection with Your Use and request for\ntechnical support\ + \ of the Product from HP, however, HP will not use this\ninformation in a form that personally\ + \ identifies You.\n16.\tASSIGNMENT. You may not assign, sublicense or transfer this Agreement,\n\ + the Product, or any rights or obligations hereunder without the prior written\nconsent of\ + \ HP. Any such attempted assignment, sublicense, or transfer will be\nnull and void, and\ + \ in such event, HP may terminate this Agreement immediately.\nNotwithstanding the foregoing,\ + \ You may assign this Agreement and the rights\ngranted hereunder with the transfer of all\ + \ or substantially all of Your\nbusiness. The right to assign or transfer Ancillary Software\ + \ is governed by\nthe terms and conditions of the Ancillary Software Licenses.\n17.\tENTIRE\ + \ AGREEMENT. This Agreement, including all Ancillary Software\nLicenses in the ANCILLARY\ + \ SOFTWARE list, is the final, complete and exclusive\nagreement between You and HP relating\ + \ to the Product, and supersedes any\nprevious communications, representations, or agreements\ + \ between the parties,\nwhether oral or written, regarding the subject matter hereof. Any\ + \ additional\nor different terms and conditions not expressly set forth herein will not\n\ + apply. This Agreement may not be changed except by an amendment signed by an\nauthorized\ + \ representative of both You and HP. To the extent the terms of any\nHP policies or programs\ + \ for support services conflict with the terms of this\nAgreement, the terms of this Agreement\ + \ shall control.\n18.\tWARRANTY\n\n\ta.\tNO ACTIVATION KEY REQUIRED SOFTWARE - AS-IS WARRANTY\ + \ STATEMENT:\n\n\tDISCLAIMER. TO THE EXTENT ALLOWED BY APPLICABLE LAW, THIS PRODUCT AND\n\ + SUPPORT SERVICES, IF ANY, ARE PROVIDED TO YOU \"AS IS\" WITHOUT WARRANTIES OF\nANY KIND,\ + \ WHETHER ORAL OR WRITTEN, EXPRESS OR IMPLIED. HP SPECIFICALLY\nDISCLAIMS ANY IMPLIED WARRANTIES\ + \ OF ANY KIND, INCLUDING WITHOUT LIMITATION,\nWARRANTY OF MERCHANTABILITY, SATISFACTORY\ + \ QUALITY, NON-INFRINGEMENT, TITLE,\nACCURACY OF INFORMATIONAL CONTENT, FITNESS FOR A PARTICULAR\ + \ PURPOSE, ACCURACY\nOR COMPLETENESS OF RESPONSES, RESULTS, OR WORKMANLIKE EFFORT, LACK\ + \ OF VIRUSES,\nAND LACK OF NEGLIGENCE, ALL WITH REGARD TO THE PRODUCT, AND THE PROVISION\ + \ OF\nOR FAILURE TO PROVIDE SUPPORT SERVICES. IN ADDITION, WITHOUT LIMITATION,\nTHERE IS\ + \ NO WARRANTY OF QUIET ENJOYMENT, QUIET POSSESSION AND CORRESPONDENCE\nTO DESCRIPTION WITH\ + \ REGARD TO THE PRODUCT. YOU ASSUME THE ENTIRE RISK AS TO\nTHE RESULTS AND PERFORMANCE\ + \ OF THE PRODUCT. NO ORAL OR WRITTEN INFORMATION OR\nADVICE GIVEN BY HP, HP\"S AUTHORIZED\ + \ REPRESENTATIVES, OR ANY OTHER PARTY SHALL\nCREATE A WARRANTY OR AMEND THIS \"AS IS\" WARRANTY.\ + \ Some jurisdictions do not\nallow exclusions of implied warranties or conditions, so the\ + \ above exclusion\nmay not apply to You to the extent prohibited by such local laws. You\ + \ may have\nother rights that vary from country to country, state to state, or province\ + \ to\nprovince.\n\n\tb.\tACTIVATION KEY REQUIRED SOFTWARE - LIMITED WARRANTY.\n\nHP warrants\ + \ that the Product will perform substantially in accordance with the\naccompanying materials\ + \ for a period of ninety (90) days from the date of\npurchase. If an implied warranty or\ + \ condition is created by Your\nstate/jurisdiction and federal or state/provincial law prohibits\ + \ disclaimer of\nit, You also have an implied warranty or condition, BUT ONLY AS TO DEFECTS\ + \ FOR\nWHICH CLAIMS ARE MADE WITHIN NINETY (90) DAYS FROM THE DATE OF PURCHASE. AS TO\n\ + ANY DEFECTS DISCOVERED FOR WHICH A CLAIM IS NOT MADE WITHIN THE NINETY-DAY\nPERIOD, THERE\ + \ IS NO WARRANTY OR CONDITION OF ANY KIND.\nSome states/jurisdictions do not allow limitations\ + \ on how long an implied\nwarranty or condition lasts, so the above limitation may not apply\ + \ to You.\n\n\tDISCLAIMER. The Limited Warranty that appears above is the only\nexpress\ + \ warranty made to You and is provided in lieu of any other express\nwarranties or implied\ + \ warrantees (if any) created by any documentation,\npackaging or otherwise. EXCEPT FOR\ + \ THE LIMITED WARRANTY, AND TO THE MAXIMUM\nEXTENT PERMITTED BY APPLICABLE LAW, HP AND ITS\ + \ SUPPLIERS PROVIDE THE PRODUCT\nAND SUPPORT SERVICES (IF ANY) \"AS IS\" AND WITH ALL FAULTS,\ + \ AND HEREBY DISCLAIM\nALL OTHER WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED OR STATUTORY,\n\ + INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES, DUTIES OR\nCONDITIONS OF\ + \ MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE,\nSATISFACTORY QUALITY, NON-INFRINGEMENT\ + \ OF TITLE, OF ACCURACY OR COMPLETENESS\nOF RESPONSES, OF RESULTS, OF WORKMANLIKE EFFORT,\ + \ OF LACK OF VIRUSES, AND OF\nLACK OF NEGLIGENCE, ALL WITH REGARD TO THE PRODUCT, AND THE\ + \ PROVISIONS OF OR\nFAILURE TO PROVIDE SUPPORT SERVICES. ALSO, THERE IS NO WARRANTY OR\ + \ CONDITION\nOF TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION,\n\ + OR NON-INFRINGEMENT WITH REGARD TO THE PRODUCT.\n\n19.\tLIMITATION OF LIABILITY.\n\n\ta.\t\ + \ FOR ALL SOFTWARE WHETHER OR NOT AN ACTIVATION KEY IS REQUIRED\n\nEXCEPT TO THE EXTENT\ + \ PROHIBITED BY LOCAL LAW, IN NO EVENT WILL HP OR ITS\nSUBSIDIARIES, AFFILIATES, DIRECTORS,\ + \ OFFICERS, EMPLOYEES, AGENTS OR SUPPLIERS\nBE LIABLE FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL,\ + \ CONSEQUENTIAL, PUNITIVE,\nOR OTHER DAMAGES (INCLUDING LOST PROFIT, LOST DATA, OR DOWNTIME\ + \ COSTS) ARISING\nOUT OF THE USE, THE INABILITY TO USE, OR THE RESULTS OF USE OF THE PRODUCT,\n\ + WHETHER BASED IN WARRANTY, CONTRACT, TORT OR OTHER LEGAL THEORY, AND WHETHER\nOR NOT HP\ + \ WAS ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THE PRODUCT IS NOT\nDESIGNED, MANUFACTURED\ + \ OR INTENDED FOR USE IN THE PLANNING, CONSTRUCTION,\nMAINTENANCE, OR OPERATION OF A NUCLEAR\ + \ FACILITY, AIRCRAFT NAVIGATION OR\nAIRCRAFT COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL,\ + \ LIFE SUPPORT MACHINES,\nOR WEAPONS SYSTEMS (COLLECTIVELY \"HIGH RISK APPLICATIONS\").\ + \ YOU ARE SOLELY\nLIABLE IF THE PRODUCT IS USED FOR HIGH RISK APPLICATIONS, AND YOU SHALL\n\ + INDEMNIFY, DEFEND AND HOLD HP HARMLESS FROM ALL LOSS, DAMAGE, EXPENSE OR\nLIABILITY IN CONNECTION\ + \ WITH SUCH USE. YOU ASSUME THE ENTIRE RISK AS TO YOUR\nUSE OF THE PRODUCT. SOME JURISDICTIONS\ + \ DO NOT ALLOW THE EXCLUSION OR\nLIMITATION OF LIABILITY FOR INCIDENTIAL OR CONSEQUENTIAL\ + \ DAMAGES, SO THE ABOVE\nLIMITATION MAY NOT APPLY TO YOU TO THE EXTENT PROHIBITED BY SUCH\ + \ LOCAL LAWS.\n\n\tb.\tFOR SOFTWARE REQUIRING AN ACTIVATION KEY\n\nNotwithstanding any damages\ + \ that You might incur for any reason whatsoever\n(including, without limitation, all damages\ + \ referenced above and all direct\nor general damages), the entire liability of HP and any\ + \ of its suppliers under\nany provision of this EULA and Your exclusive remedy for all of\ + \ the foregoing\n(except for any remedy of repair or replacement if elected by HP with respect\n\ + to any breach of the Limited Warranty) shall be limited to the greater of the\namount actually\ + \ paid by You for the Product or U.S. $5.00. The foregoing\nlimitations, exclusions and\ + \ disclaimers (including Warranty above) shall apply\nto the maximum extent permitted by\ + \ applicable law, even if any remedy fails of\nits essential purpose.\n\nREV08/51/03\tEnd\ + \ User License Agreement" json: hp-proliant-essentials.json - yml: hp-proliant-essentials.yml + yaml: hp-proliant-essentials.yml html: hp-proliant-essentials.html - text: hp-proliant-essentials.LICENSE + license: hp-proliant-essentials.LICENSE - license_key: hp-snmp-pp + category: Permissive spdx_license_key: LicenseRef-scancode-hp-snmp-pp other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS. + Permission to use, copy, modify, distribute and/or sell this software + and/or its documentation is hereby granted without fee. User agrees + to display the above copyright notice and this license notice in all + copies of the software and any documentation of the software. User + agrees to assume all liability for the use of the software; Hewlett-Packard + makes no representations about the suitability of this software for any + purpose. It is provided "AS-IS" without warranty of any kind, either express + or implied. User hereby grants a royalty-free license to any and all + derivatives based upon this software code base. json: hp-snmp-pp.json - yml: hp-snmp-pp.yml + yaml: hp-snmp-pp.yml html: hp-snmp-pp.html - text: hp-snmp-pp.LICENSE + license: hp-snmp-pp.LICENSE - license_key: hp-software-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-hp-software-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Hewlett-Packard software license agreement\n\nEND USER LICENSE AGREEMENT\nPLEASE READ\ + \ CAREFULLY: THE USE OF THE SOFTWARE IS SUBJECT TO THE TERMS AND CONDITIONS THAT FOLLOW\ + \ (\"AGREEMENT\"), UNLESS THE SOFTWARE IS SUBJECT TO A SEPARATE LICENSE AGREEMENT BETWEEN\ + \ YOU AND HP OR ITS SUPPLIERS. BY DOWNLOADING, INSTALLING, COPYING, ACCESSING, OR USING\ + \ THE SOFTWARE, OR BY CHOOSING THE \"I ACCEPT\" OPTION LOCATED ON OR ADJACENT TO THE SCREEN\ + \ WHERE THIS AGREEMENT MAY BE DISPLAYED, YOU AGREE TO THE TERMS OF THIS AGREEMENT, ANY APPLICABLE\ + \ WARRANTY STATEMENT AND THE TERMS AND CONDITIONS CONTAINED IN THE \"ANCILLARY SOFTWARE\"\ + \ (as defined below). IF YOU ARE ACCEPTING THESE TERMS ON BEHALF OF ANOTHER PERSON OR A\ + \ COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE FULL AUTHORITY\ + \ TO BIND THAT PERSON, COMPANY, OR LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT AGREE TO\ + \ THESE TERMS, DO NOT DOWNLOAD, INSTALL, COPY, ACCESS, OR USE THE SOFTWARE, AND PROMPTLY\ + \ RETURN THE SOFTWARE WITH PROOF OF PURCHASE TO THE PARTY FROM WHOM YOU ACQUIRED IT AND\ + \ OBTAIN A REFUND OF THE AMOUNT YOU PAID, IF ANY. IF YOU DOWNLOADED THE SOFTWARE, CONTACT\ + \ THE PARTY FROM WHOM YOU ACQUIRED IT.\n\nQUANTITY OF DEVICES: \n\n1. GENERAL TERMS\n\ + \na. You and Your refer either to an individual person or to a single legal entity.\n\ + b. HP means Hewlett-Packard Company or one of its subsidiaries.\nc. HP Branded means\ + \ Software products bearing a trademark or service mark of Hewlett-Packard Company or any\ + \ Hewlett-Packard Company Affiliate, and embedded HP selected third party Software that\ + \ is not offered under a third party license agreement.\nd. Software means machine-readable\ + \ instructions and data (and copies thereof) including middleware and related updates and\ + \ upgrades You may be separately authorized to receive, licensed materials, user documentation,\ + \ user manuals, and operating procedures. \"Ancillary Software\" means all or any portion\ + \ of Software provided under public, open source, or third party license terms.\ne. \ + \ Specification means technical information about Software products published in HP product\ + \ manuals, user documentation, and technical data sheets in effect on the date HP delivers\ + \ Software products to You.\nf. Transaction Document(s) means an accepted customer order\ + \ (excluding pre-printed terms) and in relation to that order, valid HP quotations, license\ + \ to use certificates or invoices.\n \n2. LICENSE TERMS AND RESTRICTIONS\n\na. Subject\ + \ to the terms and conditions of this Agreement and the payment of any applicable license\ + \ fee, HP grants You a non-exclusive, non-transferable license to Use (as defined below)\ + \ in object code form one copy of the Software on one device at a time for Your internal\ + \ business purposes, unless otherwise indicated above or in applicable Transaction Document(s).\ + \ \"Use\" means to install, store, load, execute and display the Software in accordance\ + \ with the Specifications. Your Use of the Software is subject to these license terms and\ + \ to the other restrictions specified by HP in any other tangible or electronic documentation\ + \ delivered or otherwise made available to You with or at the time of purchase of the Software,\ + \ including license terms, warranty statements, Specifications, and \"readme\" or other\ + \ informational files included in the Software itself. Such restrictions are hereby incorporated\ + \ in this Agreement by reference. Some Software may require license keys or contain other\ + \ technical protection measures. You acknowledge that HP may monitor your compliance with\ + \ Use restrictions remotely or otherwise. If HP makes a license management program available\ + \ which records and reports license usage information, You agree to appropriately install,\ + \ configure and execute such license management program beginning no later than one hundred\ + \ and eighty (180) days from the date it is made available to You and continuing for the\ + \ period that the Software is Used.\nb. This Agreement confers no title or ownership\ + \ and is not a sale of any rights in the Software. Third-party suppliers are intended beneficiaries\ + \ under this Agreement and independently may protect their rights in the Software in the\ + \ event of any infringement. All rights not expressly granted to You are reserved solely\ + \ to HP or its suppliers. Nothing herein should be construed as granting You, by implication,\ + \ estoppel or otherwise, a license relating to Software other than as expressly stated above\ + \ in this section 2.\nc. Unless otherwise permitted by HP, You (a) may only make copies\ + \ or adaptations of the Software for archival purposes or when copying or adaptation is\ + \ an essential step in the authorized Use of the Software on a backup device, provided that\ + \ copies and adaptations are used in no other manner and provided further that the Use on\ + \ the backup device is discontinued when the original or replacement device becomes operable,\ + \ and (b) may not copy the Software onto or otherwise Use or make it available on, to, or\ + \ through any public or external distributed network.\nd. To Use Software identified\ + \ as an update or upgrade, You must first be licensed for the original Software identified\ + \ by HP as eligible for the update or upgrade. If the update or upgrade is intended to substantially\ + \ replace the original Software, after updating or upgrading, You may no longer Use the\ + \ original Software that formed the basis for Your update or upgrade eligibility unless\ + \ otherwise provided by HP in writing. Nothing in this Agreement grants You any right to\ + \ purchase or receive Software updates, upgrades, or support, and HP is under no obligation\ + \ to make such support available to you. Updates, upgrades, enhancements, or other Support\ + \ may only be available under separate HP support agreements. You may contact HP to learn\ + \ more about any support offerings HP may make available. HP reserves the right to require\ + \ additional licenses and fees for Software upgrades or other enhancements, or for Use of\ + \ the Software on upgraded devices.\ne. You must reproduce all copyright notices that\ + \ appear in or on the Software (including documentation) on all permitted copies or adaptations.\ + \ Copies of documentation are limited to internal use.\nf. Notwithstanding anything\ + \ to the contrary herein, if the Transaction Document(s) identifies that the Software may\ + \ be utilized on another Designated System(s) (as defined below), Your license to Use the\ + \ Software may be transferred to another Designated System(s). A \"Designated System\"\ + \ means a computer system owned, controlled, or operated by or solely on behalf of You and\ + \ may be further identified by HP by the combination of a unique number and a specific system\ + \ type. Such license will terminate in the event of a change in either the system number\ + \ or system type, an unauthorized relocation, or if the Designated System ceases to be within\ + \ Your possession or control.\ng. Operating system Software may only be Used when operating\ + \ the associated hardware in configurations as approved, sold, or subsequently upgraded\ + \ by HP or an HP authorized reseller.\nh. Software is not specifically designed, manufactured,\ + \ or intended for use as parts, components, or assemblies for the planning, construction,\ + \ maintenance, or direct operation of a nuclear facility. You are solely liable if Software\ + \ is Used for these applications and will indemnify and hold HP harmless from all loss,\ + \ damage, expense, or liability in connection with such Use.\ni You will not modify,\ + \ reverse engineer, disassemble, decrypt, decompile, or make derivative works of the Software.\ + \ Where You have other rights mandated under statute, You will provide HP with reasonably\ + \ detailed information regarding any intended modifications, reverse engineering, disassembly,\ + \ decryption, or decompilation and the purposes therefore.\nj. Extending the Use of\ + \ Software to any person or entity other than You as a function of providing services, (i.e.;\ + \ making the Software available through a commercial timesharing or service bureau)\ + \ must be authorized in writing by HP prior to such Use and may require additional licenses\ + \ and fees. You may not distribute, resell, or sublicense the Software.\nk. Notwithstanding\ + \ anything in this Agreement to the contrary, all or any portion of the Software which constitutes\ + \ Ancillary Software is licensed to You subject to the terms and conditions of the Software\ + \ license agreement accompanying such Ancillary Software, whether in the form of a separate\ + \ agreement, shrink wrap license or electronic license terms accepted at time of download.\ + \ Use of the Ancillary Software by You shall be governed entirely by the terms and conditions\ + \ of such license and, with respect to HP, by the limitations and disclaimers of sections\ + \ 3 and 5 hereof. HP has identified any Ancillary Software by either noting the Ancillary\ + \ Software provider's ownership within each Ancillary Software program file and/or by providing\ + \ information in the \"ancillary.txt\" or \"readme\" file that is provided as part of the\ + \ installation of the Software. The Ancillary Software licenses are also set forth in the\ + \ \"ancillary.txt\" or \"readme\" file. By accepting the terms and conditions of this Agreement,\ + \ You are also accepting the terms and conditions of each Ancillary Software license in\ + \ the ancillary.txt or \"readme\" file. If the Software includes Ancillary Software licensed\ + \ under the GNU General Public License and/or under the GNU Lesser General Pubic License\ + \ (\"GPL Software\"), a complete machine-readable copy of the GPL Software Source Code (\"\ + GPL Source Code\") is either: (i) included with the Software that is delivered to You;\ + \ or (ii) upon your written request, HP will provide to You, for a fee covering the cost\ + \ of distribution, a complete machine-readable copy of the GPL Source Code, by mail, or\ + \ (iii) if You obtained the Software by downloading it from a HP website and neither of\ + \ the preceding options are available, you may download the GPL Source Code from the same\ + \ website. Information about how to make a written request for GPL Source Code may be found\ + \ in the ancillary.txt file or, if an address is not listed in that file, at the following\ + \ website: www.hp.com.\n \n3. WARRANTY\n\n(i) IF SOFTWARE IS PROVIDED WITHOUT A LICENSE\ + \ FEE, THE FOLLOWING AS-IS WARRANTY STATEMENT APPLIES TO THE SOFTWARE:\n\nDISCLAIMER OF\ + \ WARRANTIES:\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, HP AND ITS SUPPLIERS PROVIDE\ + \ THE SOFTWARE \"AS IS\" AND WITH ALL FAULTS, AND HEREBY DISCLAIM ALL INDEMNITIES, WARRANTIES\ + \ AND CONDITIONS, EITHER EXPRESS, IMPLIED, WHETHER BY STATUE, COMMON LAW, CUSTOM OR OTHERWISE,\ + \ INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF TITLE AND NON-INFRINGEMENT, ANY IMPLIED WARRANTIES,\ + \ DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, AND OF LACK\ + \ OF VIRUSES. HP does not warrant that the operation of Software will be uninterrupted\ + \ or error free or that the Software will meet Your requirements. Some states/jurisdictions\ + \ do not allow exclusion of implied warranties or limitations on the duration of implied\ + \ warranties, so the above disclaimer may not apply to You in its entirety. \n\n(ii) IF\ + \ SOFTWARE IS PROVIDED FOR A LICENSE FEE, THE FOLLOWING\tLIMITED WARRANTY APPLIES TO THE\ + \ SOFTWARE:\n\na. HP Branded Software will materially conform to its Specifications.\ + \ If a warranty period is not specified for HP Branded Software, the warranty period will\ + \ be ninety (90) days from the delivery date, or the date of installation if installed by\ + \ HP. If You schedule or delay installation by HP more than thirty (30) days after delivery,\ + \ the warranty period begins on the 31st day after delivery. This limited warranty is subject\ + \ to the terms, limitations, and exclusions contained in the limited warranty statement\ + \ provide for Software in the country where the Software is located when the warranty claim\ + \ is made.\nb. HP warrants that any physical media containing HP Branded Software will\ + \ be shipped free of viruses.\nc. HP does not warrant that the operation of Software\ + \ will be uninterrupted or error free, or that Software will operate in hardware and Software\ + \ combinations other than as expressly required by HP in the Specifications or that Software\ + \ will meet requirements specified by You.\nd. HP is not obligated to provide warranty\ + \ services or support for any claims resulting from:\n1. improper site preparation, or\ + \ site or environmental conditions that do not conform to HP’s site specifications;\n2.\ + \ Your non-compliance with Specifications;\n3. improper or inadequate maintenance or\ + \ calibration;\n4. Your or third-party media, software, interfacing, supplies, or other\ + \ products;\n5. modifications not performed or authorized by HP;\n6. virus, infection,\ + \ worm or similar malicious code not introduced by HP; or\n7. abuse, negligence, accident,\ + \ loss or damage in transit, fire or water damage, electrical disturbances, transportation\ + \ by You, or other causes beyond HP’s control.\ne. HP provides third-party products,\ + \ software, and services that are not HP Branded \"AS IS\" without warranties of any kind,\ + \ although the original manufacturers or third party suppliers of such products, software\ + \ and services may provide their own warranties.\nf. If notified of a valid warranty\ + \ claim during the warranty period, HP will, at its option, correct the warranty defect\ + \ for HP Branded Software, or replace such Software. If HP is unable, within a reasonable\ + \ time, to complete the correction, or replace such Software, You will be entitled to a\ + \ refund of the purchase price paid upon prompt return of such Software to HP. You will\ + \ pay expenses for return of such Software to HP. HP will pay expenses for shipment of repaired\ + \ or replacement Software to You. This section 3.(ii) f states HP's entire liability for\ + \ warranty claims.\ng. DISCLAIMER OF WARRANTIES\nTO THE MAXIMUM EXTENT PERMITTED BY\ + \ APPLICABLE LAW, EXCEPT AS EXPRESSLY WARRANTED IN SECTION 3.(ii) a and b ABOVE, HP AND\ + \ ITS SUPPLIERS PROVIDE THE SOFTWARE \"AS IS\" AND WITH ALL FAULTS, AND HEREBY DISCLAIM\ + \ ALL OTHER WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING,\ + \ BUT NOT LIMITED TO, WARRANTIES OF TITLE AND NON-INFRINGEMENT, ANY IMPLIED WARRANTIES,\ + \ DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, AND OF LACK\ + \ OF VIRUSES. Some states/jurisdictions do not allow exclusion of implied warranties or\ + \ limitations on the duration of implied warranties, so the above disclaimer may not apply\ + \ to You in its entirety.\n\n4. INTELLECTUAL PROPERTY INFRINGEMENT FOR SOFTWARE PROVIDED\ + \ FOR A LICENSE FEE: \n\na. In the event Software was provided to You for a License\ + \ Fee, HP will defend or settle any claim against You alleging that HP Branded Software\ + \ products provided under this Agreement infringes intellectual property rights in the country\ + \ where they were sold, if You:\n1. promptly notify HP of the claim in writing;\n2. \ + \ cooperate with HP in the defense of the claim; and\n3. grant HP sole control of the\ + \ defense or settlement of the claim.\nHP will pay infringement claim defense costs, HP–negotiated\ + \ settlement amounts, and court-awarded damages.\nb. If such a claim appears likely,\ + \ then HP may modify the HP Branded Software products, procure any necessary license, or\ + \ replace the affected item with one that is at least functionally equivalent. If HP determines\ + \ that none of these alternatives is reasonably available, then HP will issue You a refund\ + \ equal to the purchase price paid for the affected item if within one year of delivery,\ + \ or Your net book value thereafter.\nc. HP has no obligation for any claim of infringement\ + \ arising from:\n1. HP’s compliance with Your or third party designs, specifications,\ + \ instructions, or technical information;\n2. modifications made by You or a third party;\n\ + 3. Your non-compliance with the Specifications or the documentation described in section\ + \ 2. a above; or\n4. Your use with products, software, or services that are not HP Branded.\n\ + d. This section 4 states HP's entire liability for claims of intellectual property infringement\ + \ for Software provided for a license fee.\n\n5. LIMITATION OF LIABILITY AND REMEDIES\n\ + \nNotwithstanding any damages that You might incur, and except for damages for bodily injury\ + \ (including death) and for the amounts in section 4.a, the entire aggregate liability of\ + \ HP and any of its suppliers relating to the Software or this Agreement, and Your exclusive\ + \ remedy for all of the foregoing, shall be limited to the greater of the amount actually\ + \ paid by You separately for the Software or U.S. $5.00. TO THE MAXIMUM EXTENT PERMITTED\ + \ BY APPLICABLE LAW, IN NO EVENT SHALL HP OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL,\ + \ INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR\ + \ LOSS OF PROFITS OR REVENUES, BUSINESS INTERRUPTION, DOWNTIME COSTS, FAILURE TO REALIZE\ + \ EXPECTED SAVINGS, LOSS, DISCLOSURE, UNAVAILABILITY OF OR DAMAGE TO DATA, SOFTWARE RESTORATION,\ + \ OR LOSS OF PRIVACY ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF OR INABILITY TO\ + \ USE THE SOFTWARE, OR OTHERWISE IN CONNECTION WITH ANY PROVISION OF THIS AGREEMENT, EVEN\ + \ IF HP OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND EVEN IF\ + \ THE REMEDY FAILS OF ITS ESSENTIAL PURPOSE. Some states/jurisdictions do not allow the\ + \ exclusion or limitation of incidental or consequential damages, so the above limitation\ + \ or exclusion may not apply to you. \n\n6. TERMINATION\nThis Agreement is effective\ + \ unless terminated or rejected. Notwithstanding the foregoing, this Agreement will also\ + \ terminate upon conditions set forth elsewhere in this Agreement or if You fail to comply\ + \ with any term or condition hereof. Immediately upon termination You will destroy the\ + \ Software and all copies of the Software or return them to HP. You may retain one copy\ + \ of the Software subsequent to termination solely for archival purposes only. At HP’s\ + \ request, You will certify in writing to HP that You have complied with these requirements.\ + \ Sections 3.(i), 3.(ii) g, 5, 6 and 7 of this Agreement will survive termination of this\ + \ Agreement.\n\n7. GENERAL\na. You may not assign, sublicense, delegate or otherwise\ + \ transfer (\"Assign\") all or any part of this Agreement without prior written consent\ + \ from HP, payment to HP of any applicable fees, and compliance with HP's Software license\ + \ transfer policies and any applicable third party license terms. Any such attempted Assignment\ + \ will be null and void. Where an authorized Assignment occurs in accordance with this\ + \ section, Your rights under this Agreement will terminate, and You will immediately deliver\ + \ the Software and all copies to the Assignee. The Assignee must agree in writing to the\ + \ terms of this Agreement, and the transferee thereafter will be considered \"You\" for\ + \ purposes of this Agreement. You may transfer firmware only upon transfer of the associated\ + \ hardware.\nb. If the Software is licensed for use in the performance of a U.S. Government\ + \ prime contract or subcontract, You agree that, consistent with FAR 12.211 and 12.212,\ + \ commercial computer Software, computer Software documentation and technical data for commercial\ + \ items are licensed under HP’s standard commercial license.\nc. To the extent You export,\ + \ re-export, or import Software, technology, or technical data licensed or provided hereunder,\ + \ You assume sole responsibility for complying with applicable laws and regulations and\ + \ for obtaining required export and import authorizations. HP may suspend performance if\ + \ You are in violation of any applicable laws or regulations.\nd. You agree that HP\ + \ may audit Your compliance with this Agreement. Any such audit would be at HP’s expense,\ + \ require reasonable notice, and would be performed during normal business hours. If an\ + \ audit reveals underpayments then You will immediately pay HP such underpayments together\ + \ with the costs reasonably incurred by HP in connection with the audit and seeking compliance\ + \ with this section.\ne. This Agreement is governed by the laws of the State of California,\ + \ U.S.A., excluding rules as to choice and conflict of law. You and HP agree that the United\ + \ Nations Convention on Contracts for the International Sale of Goods will not apply to\ + \ this Agreement.\nf. Subject to the other terms and conditions of this Agreement,\ + \ this Agreement is the entire agreement between HP and You regarding Your Use of the Software,\ + \ and supersedes and replaces any previous communications, representations, or agreements,\ + \ or Your additional or inconsistent terms, whether oral or written. In the event any provision\ + \ of this Agreement is held invalid or unenforceable the remainder of the Agreement will\ + \ remain enforceable and unaffected thereby.\ng. HP’s failure to exercise or delay in\ + \ exercising any of its rights under this Agreement will not constitute or be deemed a waiver\ + \ or forfeiture of those rights." json: hp-software-eula.json - yml: hp-software-eula.yml + yaml: hp-software-eula.yml html: hp-software-eula.html - text: hp-software-eula.LICENSE + license: hp-software-eula.LICENSE - license_key: hp-ux-java + category: Proprietary Free spdx_license_key: LicenseRef-scancode-hp-ux-java other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + HP-UX Runtime Environment, for the Java(tm) 2 Platform + + ATTENTION: USE OF THE SOFTWARE IS SUBJECT TO THE HP SOFTWARE LICENSE TERMS + AND SUPPLEMENTAL RESTRICTIONS SET FORTH BELOW, THIRD PARTY SOFTWARE LICENSE + TERMS FOUND IN THE THIRDPARTYLICENSEREADME.TXT FILE AND THE WARRANTY + DISCLAIMER ATTACHED. IF YOU DO NOT ACCEPT THESE TERMS FULLY, YOU MAY NOT + INSTALL OR OTHERWISE USE THE SOFTWARE. NOTWITHSTANDING ANYTHING TO THE + CONTRARY IN THIS NOTICE, INSTALLING OR OTHERWISE USING THE SOFTWARE INDICATES + YOUR ACCEPTANCE OF THESE LICENSE TERMS. + + HP SOFTWARE LICENSE TERMS + + The following terms govern your use of the Software unless you have a separate + written agreement with HP. HP has the right to change these terms and + conditions at any time, with or without notice. + + + License Grant + + HP grants you a license to Use one copy of the Software. "Use" means storing, + loading, installing, executing or displaying the Software. You may not modify + the Software or disable any licensing or control features of the Software. If + the Software is licensed for "concurrent use", you may not allow more than the + maximum number of authorized users to Use the Software concurrently. + + Ownership + + The Software is owned and copyrighted by HP or its third party suppliers. + Your license confers no title or ownership in the Software and is not a sale + of any rights in the Software. HPs third party suppliers may protect their + rights in the event of any violation of these License Terms. + + Third Party Code + + Some third-party code embedded or bundled with the Software is licensed to you + under different terms and conditions as set forth in the + THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of + any third party license identified in the THIRDPARTYLICENSEREADME.txt file, + the disclaimer of warranty and limitation of liability provisions in this + license shall apply to all code distributed as part of or bundled with the + Software. + + Source Code + + Software may contain source code that, unless expressly licensed for other + purposes, is provided solely for reference purposes pursuant to the terms of + this license. Source code may not be redistributed unless expressly provided + for in these License Terms. + + Copies and Adaptations + + You may only make copies or adaptations of the Software for archival purposes + or when copying or adaptation is an essential step in the authorized Use of + the Software. You must reproduce all copyright notices in the original + Software on all copies or adaptations. You may not copy the Software onto any + bulletin board or similar system. + + No Disassembly or Decryption + + You may not disassemble or decompile the Software unless HPs prior written + consent is obtained. In some jurisdictions, HPs consent may not be required + for disassembly or decompilation. Upon request, you will provide HP with + reasonably detailed information regarding any disassembly or decompilation. + You may not decrypt the Software unless decryption is a necessary part of the + operation of the Software. + + Transfer + + Your license will automatically terminate upon any transfer of the Software. + Upon transfer, you must deliver the Software, including any copies and related + documentation, to the transferee. The transferee must accept these License + Terms as a condition to the transfer. + + Termination + + HP may terminate your license upon notice for failure to comply with any of + these License Terms. Upon termination, you must immediately destroy the + Software, together with all copies, adaptations and merged portions in any + form. + + Export Requirements + + You may not export or re-export the Software or any copy or adaptation in + violation of any applicable laws or regulations. + + This software or any copy or adaptation may not be exported, reexported or + transferred to or within countries under U.S. economic embargo including the + following countries: Afghanistan (Taliban-controlled areas), Cuba, Iran, + Iraq, Libya, North Korea, Serbia, Sudan and Syria. This list is subject to + change. + + This software or any copy or adaptation may not be exported, reexported or + transferred to persons or entities listed on the U.S. Department of Commerce + Denied Parties List or on any U.S. Treasury Department Designated Nationals + exclusion list, or to any party directly or indirectly involved in the + development or production of nuclear, chemical, biological weapons or related + missile technology programs as specified in the U.S. Export Administration + Regulations (15 CFR 730). + + U.S. Government Contracts + + If the Software is licensed for use in the performance of a U.S. government + prime contract or subcontract, you agree that, consistent with FAR 12.211 and + 12.212, commercial computer Software, computer Software documentation and + technical data for commercial items are licensed under HPs standard + commercial license. + + SUPPLEMENTAL RESTRICTIONS + + You acknowledge the Software is not designed or intended for use in on-line + control of aircraft, air traffic, aircraft navigation, or aircraft + communications; or in the design, construction, operation or maintenance of + any nuclear facility. HP disclaims any express or implied warranty of fitness + for such uses. + + ADDITIONAL SUPPLEMENTAL RESTRICTIONS FOR HP-UX RUNTIME ENVIRONMENT, + FOR THE JAVA(TM) 2 PLATFORM + + * License to Distribute HP-UX Runtime Environment, for the Java(tm) 2 + Platform. You are granted a royalty-free right to reproduce and distribute + the HP-UX Runtime Environment, for Java provided that you distribute the + HP-UX Runtime Environment, for the Java 2 Platform complete and unmodified, + only as a part of, and for the sole purpose of running your Java compatible + applet or application ("Program") into which the HP-UX Runtime Environment, + for the Java 2 Platform is incorporated. + + * Java Platform Interface. Licensee may not modify the Java Platform + Interface ("JPI", identified as classes contained within the "java" package + or any subpackages of the "java" package), by creating additional classes + within the JPI or otherwise causing the addition to or modification of the + classes in the JPI. In the event that Licensee creates any Java-related API + and distributes such API to others for applet or application development, + Licensee must promptly publish broadly, an accurate specification for such + API for free use by all developers of Java-based software. + + * You may make the HP-UX Runtime Environment, for the Java 2 Platform + accessible to application programs developed by you provided that the + programs allow such access only through the Invocation Interface specified + and provided that you shall not expose or document other interfaces that + permit access to such HP-UX Runtime Environment, for the Java 2 Platform. + You shall not be restricted hereunder from exposing or documenting + interfaces to software components that use or access the HP-UX Runtime + Environment, for the Java 2 Platform. + + + HP WARRANTY STATEMENT + + DURATION OF LIMITED WARRANTY: 90 DAYS + + HP warrants to you, the end customer, that HP hardware, accessories, and + supplies will be free from defects in materials and workmanship after the date + of purchase for the period specified above. If HP receives notice of such + defects during the warranty period, HP will, at its option, either repair or + replace products which prove to be defective. Replacement products may be + either new or equivalent in performance to new. + + HP warrants to you that HP Software will not fail to execute its programming + instructions after the date of purchase, for the period specified above, due + to defects in materials and workmanship when properly installed and used. If + HP receives notice of such defects during the warranty period, HP will replace + Software which does not execute its programming instructions due to such + defects. + + HP does not warrant that the operation of HP products will be uninterrupted or + error free. If HP is unable, within a reasonable time, to repair or replace + any product to a condition warranted, you will be entitled to a refund of the + purchase price upon prompt return of the product. Alternatively, in the case + of HP Software, you will be entitled to a refund of the purchase price upon + prompt delivery to HP of written notice from you confirming destruction of the + HP Software, together with all copies, adaptations, and merged portions in any + form. + + HP products may contain remanufactured parts equivalent to new in performance + or may have been subject to incidental use. + + Warranty does not apply to defects resulting from: (a) improper or inadequate + maintenance or calibration; (b) software, interfacing, parts or supplies not + supplied by HP, (c) unauthorized modification or misuse; (d) operation outside + of the published environmental specifications for the product, (e) improper + site preparation or maintenance, or (f) the presence of code from HP suppliers + embedded in or bundled with any HP product. + + TO THE EXTENT ALLOWED BY LOCAL LAW, THE ABOVE WARRANTIES ARE EXCLUSIVE AND NO + OTHER WARRANTY OR CONDITION, WHETHER WRITTEN OR ORAL, IS EXPRESSED OR IMPLIED + AND HP SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OR CONDITIONS OF + MERCHANTABILITY, SATISFACTORY QUALITY, AND FITNESS FOR A PARTICULAR PURPOSE. + Some countries, states, or provinces do not allow limitations on the duration + of an implied warranty, so the above limitation or exclusion may not apply to + you. This warranty gives you specific legal rights and you might also have + other rights that vary from country to country, state to state, or province to + province. + + TO THE EXTENT ALLOWED BY LOCAL LAW, THE REMEDIES IN THIS WARRANTY STATEMENT + ARE YOUR SOLE AND EXCLUSIVE REMEDIES. EXCEPT AS INDICATED ABOVE, IN NO EVENT + WILL HP OR ITS SUPPLIERS BE LIABLE FOR LOSS OF DATA OR FOR DIRECT, SPECIAL, + INCIDENTAL, CONSEQUENTIAL (INCLUDING LOST PROFIT OR DATA), OR OTHER DAMAGE, + WHETHER BASED IN CONTRACT, TORT, OR OTHERWISE. Some countries, states, or + provinces do not allow the exclusion or limitation of incidental or + consequential damages, so the above limitation may not apply to you. json: hp-ux-java.json - yml: hp-ux-java.yml + yaml: hp-ux-java.yml html: hp-ux-java.html - text: hp-ux-java.LICENSE + license: hp-ux-java.LICENSE - license_key: hp-ux-jre + category: Proprietary Free spdx_license_key: LicenseRef-scancode-hp-ux-jre other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + LEGAL NOTICE - READ BEFORE DOWNLOADING OR OTHERWISE USING THIS SOFTWARE. + + ATTENTION: USE OF THE SOFTWARE IS SUBJECT TO THE HP SOFTWARE LICENSE TERMS, AND SUPPLEMENTAL RESTRICTIONS SET FORTH BELOW AND THE HP WARRANTY DISCLAIMER ATTACHED. CLICK ON THE "I ACCEPT" BOX BELOW TO INDICATE YOUR ACCEPTANCE OF THESE TERMS. IF YOU DO NOT ACCEPT THESE TERMS FULLY, YOU MAY NOT INSTALL OR OTHERWISE USE THE SOFTWARE. NOTWITHSTANDING ANYTHING TO THE CONTRARY IN THIS NOTICE, INSTALLING OR OTHERWISE USING THE SOFTWARE INDICATES YOUR ACCEPTANCE OF THESE LICENSE TERMS. + Download license for HPjconfig 2.1 + HP software license terms + + The following terms govern your use of the Software unless you have a separate written agreement with HP. + + License grant + HP grants you a license to Use one copy of the Software. "Use" means storing, loading, installing, executing or displaying the Software. You may not modify the Software or disable any licensing or control features of the Software. If the Software is licensed for "concurrent use", you may not allow more than the maximum number of authorized users to Use the Software concurrently. + + Ownership + The Software is owned and copyrighted by HP or its third party suppliers. Your license confers no title or ownership in the Software and is not a sale of any rights in the Software. HP''s third party suppliers may protect their rights in the event of any violation of these License Terms. + + Copies and Adaptations + You may only make copies or adaptations of the Software for archival purposes or when copying or adaptation is an essential step in the authorized Use of the Software. You must reproduce all copyright notices in the original Software on all copies or adaptations. You may not copy the Software onto any bulletin board or similar system. + + No disassembly or decryption + You may not disassemble or decompile the Software unless HP''s prior written consent is obtained. In some jurisdictions, HP''s consent may not be required for disassembly or decompilation. Upon request, you will provide HP with reasonably detailed information regarding any disassembly or decompilation. You may not decrypt the Software unless decryption is a necessary part of the operation of the Software. + + Transfer + Your license will automatically terminate upon any transfer of the Software. Upon transfer, you must deliver the Software, including any copies and related documentation, to the transferee. The transferee must accept these License Terms as a condition to the transfer. + + Termination + HP may terminate your license upon notice for failure to comply with any of these License Terms. Upon termination, you must immediately destroy the Software, together with all copies, adaptations and merged portions in any form. + + Export requirements + The software you are about to download contains cryptography technology. Some countries regulate the import, use and/or export of certain products with cryptography. HP makes no claims as to the applicability of local country import, use and/or export regulations in relation to the download of this product. If you are located outside the U.S. and Canada you are advised to consult your local country regulations to insure compliance. + + You may not export or re-export this software or any copy or adaptation in violation of any applicable laws or regulations. + + Without limiting the generality of the foregoing, hardware, software, technology or services provided under this license agreement may not be exported, reexported, transferred or downloaded to or within (or to a national resident of) countries under U.S. economic embargo including the following countries: + + Cuba, Iran, Iraq, Libya, North Korea, Sudan and Syria. + This list is subject to change. + + Hardware, software, technology or services may not be exported, reexported, transferred or downloaded to persons or entities listed on the U.S. Department of Commerce Denied Persons List, Entity List of proliferation concern or on any U.S. Treasury Department Designated Nationals exclusion list, or to parties directly or indirectly involved in the development or production of nuclear, chemical, biological weapons or in missile technology programs as specified in the U.S. Export Administration Regulations (15 CFR 744). + + By accepting this license agreement you confirm that you are not located in (or a national resident of) any country under U.S. economic embargo, not identified on any U.S. Department of Commerce Denied Persons List, Entity List or Treasury Department Designated Nationals exclusion list, and not directly or indirectly involved in the development or production of nuclear, chemical, biological weapons or in missile technology programs as specified in the U.S. Export Administration Regulations. + + U.S. government restricted rights + The Software and any accompanying documentation have been developed entirely at private expense. They are delivered and licensed as "commercial computer software" as defined in DFARS 252.227-7013 (Oct 1988), DFARS 252.211-7015 (May 1991) or DFARS 252.227-7014 (Jun 1995), as a "commercial item" as defined in FAR2.101(a), or as "Restricted computer software" as defined in FAR 52.227-19 (Jun 1987)(or any equivalent agency regulation or contract clause), whichever is applicable. You have only those rights provided for such Software and any accompanying documentation by the applicable FAR or DFARS clause or the HP standard software agreement for the product involved. + + Supplemental restrictions + You acknowledge the Software is not designed or intended for use in on-line control of aircraft, air traffic, aircraft navigation, or aircraft communications; or in the design, construction, operation or maintenance of any nuclear facility. HP disclaims any express or implied warranty of fitness for such uses json: hp-ux-jre.json - yml: hp-ux-jre.yml + yaml: hp-ux-jre.yml html: hp-ux-jre.html - text: hp-ux-jre.LICENSE + license: hp-ux-jre.LICENSE - license_key: hs-regexp + category: Permissive spdx_license_key: Spencer-94 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This software is not subject to any license of the American Telephone + and Telegraph Company or of the Regents of the University of California. + + Permission is granted to anyone to use this software for any purpose on any + computer system, and to alter it and redistribute it, subject to the following + restrictions: + + 1. The author is not responsible for the consequences of use of this software, + no matter how awful, even if they arise from flaws in it. + + 2. The origin of this software must not be misrepresented, either by explicit + claim or by omission. Since few users ever read sources, credits must appear in + the documentation. + + 3. Altered versions must be plainly marked as such, and must not be + misrepresented as being the original software. Since few users ever read + sources, credits must appear in the documentation. + + 4. This notice may not be removed or altered. json: hs-regexp.json - yml: hs-regexp.yml + yaml: hs-regexp.yml html: hs-regexp.html - text: hs-regexp.LICENSE + license: hs-regexp.LICENSE - license_key: hs-regexp-orig + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + Not derived from licensed software. + + Permission is granted to anyone to use this software for any + purpose on any computer system, and to redistribute it freely, + subject to the following restrictions: + + 1. The author is not responsible for the consequences of use of + this software, no matter how awful, even if they arise + from defects in it. + + 2. The origin of this software must not be misrepresented, either + by explicit claim or by omission. + + 3. Altered versions must be plainly marked as such, and must not + be misrepresented as being the original software. json: hs-regexp-orig.json - yml: hs-regexp-orig.yml + yaml: hs-regexp-orig.yml html: hs-regexp-orig.html - text: hs-regexp-orig.LICENSE + license: hs-regexp-orig.LICENSE - license_key: html5 + category: Permissive spdx_license_key: LicenseRef-scancode-html5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: You are granted a license to use, reproduce and create derivative works of this document. json: html5.json - yml: html5.yml + yaml: html5.yml html: html5.html - text: html5.LICENSE + license: html5.LICENSE - license_key: httpget + category: Permissive spdx_license_key: LicenseRef-scancode-httpget other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The right to use, modify and redistribute this code is allowed + provided the above copyright notice and the below disclaimer appear + on all copies. + This file is provided AS IS with no warranties of any kind. The author + shall have no liability with respect to the infringement of copyrights, + trade secrets or any patents by this file or any part thereof. In no + event will the author be liable for any lost revenue or profits or + other special, indirect and consequential damages. json: httpget.json - yml: httpget.yml + yaml: httpget.yml html: httpget.html - text: httpget.LICENSE + license: httpget.LICENSE - license_key: hugo + category: Source-available spdx_license_key: LicenseRef-scancode-hugo other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: "HUGO LICENSE - December 19, 2003\n--------------------------------\n\nCopyright (c)\ + \ 2003 by Kent Tessman\nThe General Coffee Company Film Productions\n\n\n1. Definitions\n\ + \n\"Copyright Holder\" refers to Kent Tessman.\n\n\"End User\" refers to a user of the Software.\n\ + \n\"End User Program\" refers to a computer program created by an End\nUser, written using\ + \ the Hugo Programming Language and compiled using\nthe Hugo Compiler.\n\n\"Hugo\" refers\ + \ to the Hugo Interactive Fiction Development System, created\nby the Copyright Holder.\n\ + \n\"Hugo Programming Language\" refers to the Hugo programming language and\nits characteristic\ + \ syntax.\n\n\"Hugo Source Code\" refers to the human-readable source code of the\nSoftware.\n\ + \n\"License\" refers to this license.\n\n\"Software\" refers to the Hugo Compiler, the Hugo\ + \ Engine, the Hugo\nDebugger, the Hugo Library, and any other related programs or files.\n\ + \n\n2. Ownership and Grant of Rights\n\n2.1 Hugo is the property of the Copyright Holder.\ + \ The Copyright Holder\nretains its copyright in the Software, without limitation.\n\n\ + 2.2 The Copyright Holder grants to the End User the right to use the\nSoftware solely for\ + \ the purposes of:\n\n (a) running programs created with the Software; and\n\n (b)\ + \ creating End User Programs.\n\n2.3 End User Programs are the property of the End User.\n\ + \n\n3. Provision of the Hugo Source Code\n\n3.1 The Copyright Holder has made available\ + \ to the End User the Hugo\nSource Code for the purposes of:\n\n (a) porting the Software\ + \ to operating systems for which the\n Software is not yet available; and\n\n \ + \ (b) investigating the functionality of the Software.\n\n3.2 In no way does the Copyright\ + \ Holder's act of making available the\nHugo Source code reduce or otherwise affect in any\ + \ way its rights in\nthe Hugo Source Code.\n\n\n4. Modification and Distribution\n\n4.1\ + \ Distribution of the Software or the Hugo Source Code, in whole or\nin part, in a modified\ + \ form without the express written consent of the\nCopyright Holder is prohibited.\n\n4.2\ + \ Distribution of the Software or the Hugo Source Code, in whole or\nin part, for profit\ + \ or other commercial intent or monetary transaction\nwithout the express written consent\ + \ of the Copyright Holder is\nprohibited.\n\n4.3 This License must be distributed with\ + \ any distribution of the \nSoftware or the Hugo Source Code.\n\n\n5. Warranty\n\nThe\ + \ Software and the Hugo Source Code are provided \"as is\" without\nwarranty of any kind,\ + \ either expressed or implied, including but not\nlimited to the implied warranties of merchantability\ + \ and fitness for a\nparticular purpose. In no event shall the Copyright Holder or The\ + \ \nGeneral Coffee Company Film Productions or any other related or\nunrelated party be\ + \ liable to the End User or any other individual or\nentity for damages arising out of the\ + \ use or inability to use these or\nother programs. Use of the Software indicates acceptance\ + \ of these\nterms." json: hugo.json - yml: hugo.yml + yaml: hugo.yml html: hugo.html - text: hugo.LICENSE + license: hugo.LICENSE - license_key: hxd + category: Proprietary Free spdx_license_key: LicenseRef-scancode-hxd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Permission is granted to anyone to use this Software free of charge for any purpose, including commercial applications, and to redistribute it, provided that the warranty disclaimer is accepted and the following conditions are met: + + All redistributions must keep the original package intact. No file may be removed or modified. Especially you must retain all copyright notices that are currently in place, and this license without modification. + + The origin of this Software must not be misrepresented; you must not claim that you wrote the original Software. + + You may distribute this Software using any medium you see fit, provided you do not charge the user for the Software itself (see details below). Allowed distribution channels include magazine's addon CDs / DVDs / other addon media, download portals, your personal website, or other distribution media, if the following conditions are met: + + No payment before downloads and no wrapper installers that have ads or install adware / spyware. + + Ads on the pages of your download portal or website are acceptable. + + Explicitly allowed is payed content, as typical for printed magazines or books, where the Software is an addon (and not the main content). If it is a digital magazine or e-book, please notify your readers in a freely accessible part, that the Software is Freeware and optionally provide a link to http://mh-nexus.de/hxd . + + If you want to bundle HxD with other commerical /payed products, please contact me. json: hxd.json - yml: hxd.yml + yaml: hxd.yml html: hxd.html - text: hxd.LICENSE + license: hxd.LICENSE - license_key: i2p-gpl-java-exception + category: Copyleft Limited spdx_license_key: i2p-gpl-java-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + In addition, as a special exception, XXXX gives permission to link the code of + this program with the proprietary Java implementation provided by Sun (or other + vendors as well), and distribute linked combinations including the two. + + You must obey the GNU General Public License in all respects for all of the code + used other than the proprietary Java implementation. If you modify this file, + you may extend this exception to your version of the file, but you are not + obligated to do so. If you do not wish to do so, delete this exception statement + from your version. json: i2p-gpl-java-exception.json - yml: i2p-gpl-java-exception.yml + yaml: i2p-gpl-java-exception.yml html: i2p-gpl-java-exception.html - text: i2p-gpl-java-exception.LICENSE + license: i2p-gpl-java-exception.LICENSE - license_key: ian-kaplan + category: Permissive spdx_license_key: LicenseRef-scancode-ian-kaplan other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Use of this program, for any purpose, is granted the author, + Ian Kaplan, as long as this copyright notice is included in + the source code or any source code derived from this program. + The user assumes all responsibility for using this code. json: ian-kaplan.json - yml: ian-kaplan.yml + yaml: ian-kaplan.yml html: ian-kaplan.html - text: ian-kaplan.LICENSE + license: ian-kaplan.LICENSE - license_key: ian-piumarta + category: Permissive spdx_license_key: LicenseRef-scancode-ian-piumarta other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. Acknowledgement + of the use of this Software in supporting documentation would be + appreciated but is not required. + + THE SOFTWARE IS PROVIDED 'AS IS'. USE ENTIRELY AT YOUR OWN RISK. json: ian-piumarta.json - yml: ian-piumarta.yml + yaml: ian-piumarta.yml html: ian-piumarta.html - text: ian-piumarta.LICENSE + license: ian-piumarta.LICENSE - license_key: ibm-as-is + category: Permissive spdx_license_key: LicenseRef-scancode-ibm-as-is other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This source and object code has been made available to you by IBM on an + AS-IS basis. + + IT IS PROVIDED WITHOUT WARRANTY OF ANY KIND, INCLUDING THE WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE OR OF NONINFRINGEMENT + OF THIRD PARTY RIGHTS. IN NO EVENT SHALL IBM OR ITS LICENSORS BE LIABLE + FOR INCIDENTAL, CONSEQUENTIAL OR PUNITIVE DAMAGES. IBMS OR ITS LICENSORS + DAMAGES FOR ANY CAUSE OF ACTION, WHETHER IN CONTRACT OR IN TORT, AT LAW OR + AT EQUITY, SHALL BE LIMITED TO A MAXIMUM OF $1,000 PER LICENSE. No license + under IBM patents or patent applications is to be implied by the copyright + license. + + Any user of this software should understand that neither IBM nor its + licensors will be responsible for any consequences resulting from the use + of this software. + + Any person who transfers this source code or any derivative work must + include the IBM copyright notice, this paragraph, and the preceding two + paragraphs in the transferred software. + + Any person who transfers this object code or any derivative work must + include the IBM copyright notice in the transferred software. + + COPYRIGHT I B M CORPORATION 2000 + LICENSED MATERIAL - PROGRAM PROPERTY OF I B M" json: ibm-as-is.json - yml: ibm-as-is.yml + yaml: ibm-as-is.yml html: ibm-as-is.html - text: ibm-as-is.LICENSE + license: ibm-as-is.LICENSE - license_key: ibm-data-server-2011 + category: Commercial spdx_license_key: LicenseRef-scancode-ibm-data-server-2011 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + LICENSE INFORMATION + + The Programs listed below are licensed under the following License Information terms and conditions in addition to the Program license terms previously agreed to by Client and IBM. If Client does not have previously agreed to license terms in effect for the Program, the International Program License Agreement (Z125-3301-14) applies. + + Program Name (Program Number): + IBM Data Server Driver for .NET Core 3.1 (Tool) + + The following standard terms apply to Licensee's use of the Program. + + Limited use right + + As described in the International Program License Agreement ("IPLA") and this License Information, IBM grants Licensee a limited right to use the Program. This right is limited to the level of Authorized Use, such as a Processor Value Unit ("PVU"), a Resource Value Unit ("RVU"), a Value Unit ("VU"), or other specified level of use, paid for by Licensee as evidenced in the Proof of Entitlement. Licensee's use may also be limited to a specified machine, or only as a Supporting Program, or subject to other restrictions. As Licensee has not paid for all of the economic value of the Program, no other use is permitted without the payment of additional fees. In addition, Licensee is not authorized to use the Program to provide commercial IT services to any third party, to provide commercial hosting or timesharing, or to sublicense, rent, or lease the Program unless expressly provided for in the applicable agreements under which Licensee obtains authorizations to use the Program. Additional rights may be available to Licensee subject to the payment of additional fees or under different or supplementary terms. IBM reserves the right to determine whether to make such additional rights available to Licensee. + + Specifications + + Program's specifications can be found in the collective Description and Technical Information sections of the Program's Announcement Letters. + + Prohibited Uses + + Licensee may not use or authorize others to use the Program if failure of the Program could lead to death, bodily injury, or property or environmental damage. + + Redistributables + + If the Program includes components that are Redistributable, they will be identified in the REDIST file that accompanies the Program. In addition to the license rights granted in the Agreement, Licensee may distribute the Redistributables subject to the following terms: + 1) Redistribution must be in object code form only and must conform to all directions, instruction and specifications in the Program's accompanying REDIST or documentation; + 2) If the Program's accompanying documentation expressly allows Licensee to modify the Redistributables, such modification must conform to all directions, instruction and specifications in that documentation and these modifications, if any, must be treated as Redistributables; + 3) Redistributables may be distributed only as part of Licensee's application that was developed using the Program ("Licensee's Application") and only to support Licensee's customers in connection with their use of Licensee's Application. Licensee's Application must constitute significant value add such that the Redistributables are not a substantial motivation for the acquisition by end users of Licensee's software product; + 4) If the Redistributables include a Java Runtime Environment, Licensee must also include other non-Java Redistributables with Licensee's Application, unless the Application is designed to run only on general computer devices (for example, laptops, desktops and servers) and not on handheld or other pervasive devices (i.e., devices that contain a microprocessor but do not have computing as their primary purpose); + 5) Licensee may not remove any copyright or notice files contained in the Redistributables; + 6) Licensee must hold IBM, its suppliers or distributors harmless from and against any claim arising out of the use or distribution of Licensee's Application; + 7) Licensee may not use the same path name as the original Redistributable files/modules; + 8) Licensee may not use IBM's, its suppliers or distributors names or trademarks in connection with the marketing of Licensee's Application without IBM's or that supplier's or distributor's prior written consent; + 9) IBM, its suppliers and distributors provide the Redistributables and related documentation without obligation of support and "AS IS", WITH NO WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTY OF TITLE, NON-INFRINGEMENT OR NON-INTERFERENCE AND THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE; + 10) Licensee is responsible for all technical assistance for Licensee's Application and any modifications to the Redistributables; and + 11) Licensee's license agreement with the end user of Licensee's Application must notify the end user that the Redistributables or their modifications may not be i) used for any purpose other than to enable Licensee's Application, ii) copied (except for backup purposes), iii) further distributed or transferred without Licensee's Application or iv) reverse assembled, reverse compiled, or otherwise translated except as specifically permitted by law and without the possibility of a contractual waiver. Furthermore, Licensee's license agreement must be at least as protective of IBM as the terms of this Agreement. + + L/N: L-SAZZ-BPMKSH + D/N: L-SAZZ-BPMKSH + P/N: L-SAZZ-BPMKSH + + + International Program License Agreement + + Part 1 - General Terms + + BY DOWNLOADING, INSTALLING, COPYING, ACCESSING, CLICKING ON AN "ACCEPT" BUTTON, OR OTHERWISE USING THE PROGRAM, LICENSEE AGREES TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCEPTING THESE TERMS ON BEHALF OF LICENSEE, YOU REPRESENT AND WARRANT THAT YOU HAVE FULL AUTHORITY TO BIND LICENSEE TO THESE TERMS. IF YOU DO NOT AGREE TO THESE TERMS, + + * DO NOT DOWNLOAD, INSTALL, COPY, ACCESS, CLICK ON AN "ACCEPT" BUTTON, OR USE THE PROGRAM; AND + + * PROMPTLY RETURN THE UNUSED MEDIA, DOCUMENTATION, AND PROOF OF ENTITLEMENT TO THE PARTY FROM WHOM IT WAS OBTAINED FOR A REFUND OF THE AMOUNT PAID. IF THE PROGRAM WAS DOWNLOADED, DESTROY ALL COPIES OF THE PROGRAM. + + 1. Definitions + + "Authorized Use" - the specified level at which Licensee is authorized to execute or run the Program. That level may be measured by number of users, millions of service units ("MSUs"), Processor Value Units ("PVUs"), or other level of use specified by IBM. + + "IBM" - International Business Machines Corporation or one of its subsidiaries. + + "License Information" ("LI") - a document that provides information and any additional terms specific to a Program. The Program's LI is available at www.ibm.com/software/sla. The LI can also be found in the Program's directory, by the use of a system command, or as a booklet included with the Program. + + "Program" - the following, including the original and all whole or partial copies: 1) machine-readable instructions and data, 2) components, files, and modules, 3) audio-visual content (such as images, text, recordings, or pictures), and 4) related licensed materials (such as keys and documentation). + + "Proof of Entitlement" ("PoE") - evidence of Licensee's Authorized Use. The PoE is also evidence of Licensee's eligibility for warranty, future update prices, if any, and potential special or promotional opportunities. If IBM does not provide Licensee with a PoE, then IBM may accept as the PoE the original paid sales receipt or other sales record from the party (either IBM or its reseller) from whom Licensee obtained the Program, provided that it specifies the Program name and Authorized Use obtained. + + "Warranty Period" - one year, starting on the date the original Licensee is granted the license. + + 2. Agreement Structure + + This Agreement includes Part 1 - General Terms, Part 2 - Country-unique Terms (if any), the LI, and the PoE and is the complete agreement between Licensee and IBM regarding the use of the Program. It replaces any prior oral or written communications between Licensee and IBM concerning Licensee's use of the Program. The terms of Part 2 may replace or modify those of Part 1. To the extent of any conflict, the LI prevails over both Parts. + + 3. License Grant + + The Program is owned by IBM or an IBM supplier, and is copyrighted and licensed, not sold. + + IBM grants Licensee a nonexclusive license to 1) use the Program up to the Authorized Use specified in the PoE, 2) make and install copies to support such Authorized Use, and 3) make a backup copy, all provided that + + a. Licensee has lawfully obtained the Program and complies with the terms of this Agreement; + + b. the backup copy does not execute unless the backed-up Program cannot execute; + + c. Licensee reproduces all copyright notices and other legends of ownership on each copy, or partial copy, of the Program; + + d. Licensee ensures that anyone who uses the Program (accessed either locally or remotely) 1) does so only on Licensee's behalf and 2) complies with the terms of this Agreement; + + e. Licensee does not 1) use, copy, modify, or distribute the Program except as expressly permitted in this Agreement; 2) reverse assemble, reverse compile, otherwise translate, or reverse engineer the Program, except as expressly permitted by law without the possibility of contractual waiver; 3) use any of the Program's components, files, modules, audio-visual content, or related licensed materials separately from that Program; or 4) sublicense, rent, or lease the Program; and + + f. if Licensee obtains this Program as a Supporting Program, Licensee uses this Program only to support the Principal Program and subject to any limitations in the license to the Principal Program, or, if Licensee obtains this Program as a Principal Program, Licensee uses all Supporting Programs only to support this Program, and subject to any limitations in this Agreement. For purposes of this Item "f," a "Supporting Program" is a Program that is part of another IBM Program ("Principal Program") and identified as a Supporting Program in the Principal Program's LI. (To obtain a separate license to a Supporting Program without these restrictions, Licensee should contact the party from whom Licensee obtained the Supporting Program.) + + This license applies to each copy of the Program that Licensee makes. + + 3.1 Trade-ups, Updates, Fixes, and Patches + + 3.1.1 Trade-ups + + If the Program is replaced by a trade-up Program, the replaced Program's license is promptly terminated. + + 3.1.2 Updates, Fixes, and Patches + + When Licensee receives an update, fix, or patch to a Program, Licensee accepts any additional or different terms that are applicable to such update, fix, or patch that are specified in its LI. If no additional or different terms are provided, then the update, fix, or patch is subject solely to this Agreement. If the Program is replaced by an update, Licensee agrees to promptly discontinue use of the replaced Program. + + 3.2 Fixed Term Licenses + + If IBM licenses the Program for a fixed term, Licensee's license is terminated at the end of the fixed term, unless Licensee and IBM agree to renew it. + + 3.3 Term and Termination + + This Agreement is effective until terminated. + + IBM may terminate Licensee's license if Licensee fails to comply with the terms of this Agreement. + + If the license is terminated for any reason by either party, Licensee agrees to promptly discontinue use of and destroy all of Licensee's copies of the Program. Any terms of this Agreement that by their nature extend beyond termination of this Agreement remain in effect until fulfilled, and apply to both parties' respective successors and assignees. + + 4. Charges + + Charges are based on Authorized Use obtained, which is specified in the PoE. IBM does not give credits or refunds for charges already due or paid, except as specified elsewhere in this Agreement. + + If Licensee wishes to increase its Authorized Use, Licensee must notify IBM or an authorized IBM reseller in advance and pay any applicable charges. + + 5. Taxes + + If any authority imposes on the Program a duty, tax, levy, or fee, excluding those based on IBM's net income, then Licensee agrees to pay that amount, as specified in an invoice, or supply exemption documentation. Licensee is responsible for any personal property taxes for the Program from the date that Licensee obtains it. If any authority imposes a customs duty, tax, levy, or fee for the import into or the export, transfer, access, or use of the Program outside the country in which the original Licensee was granted the license, then Licensee agrees that it is responsible for, and will pay, any amount imposed. + + 6. Money-back Guarantee + + If Licensee is dissatisfied with the Program for any reason and is the original Licensee, Licensee may terminate the license and obtain a refund of the amount Licensee paid for the Program, provided that Licensee returns the Program and PoE to the party from whom Licensee obtained it within 30 days of the date the PoE was issued to Licensee. If the license is for a fixed term that is subject to renewal, then Licensee may obtain a refund only if the Program and its PoE are returned within the first 30 days of the initial term. If Licensee downloaded the Program, Licensee should contact the party from whom Licensee obtained it for instructions on how to obtain the refund. + + 7. Program Transfer + + Licensee may transfer the Program and all of Licensee's license rights and obligations to another party only if that party agrees to the terms of this Agreement. If the license is terminated for any reason by either party, Licensee is prohibited from transferring the Program to another party. Licensee may not transfer a portion of 1) the Program or 2) the Program's Authorized Use. When Licensee transfers the Program, Licensee must also transfer a hard copy of this Agreement, including the LI and PoE. Immediately after the transfer, Licensee's license terminates. + + 8. Warranty and Exclusions + + 8.1 Limited Warranty + + IBM warrants that the Program, when used in its specified operating environment, will conform to its specifications. The Program's specifications, and specified operating environment information, can be found in documentation accompanying the Program (such as a read-me file) or other information published by IBM (such as an announcement letter). Licensee agrees that such documentation and other Program content may be supplied only in the English language, unless otherwise required by local law without the possibility of contractual waiver or limitation. + + The warranty applies only to the unmodified portion of the Program. IBM does not warrant uninterrupted or error-free operation of the Program, or that IBM will correct all Program defects. Licensee is responsible for the results obtained from the use of the Program. + + During the Warranty Period, IBM provides Licensee with access to IBM databases containing information on known Program defects, defect corrections, restrictions, and bypasses at no additional charge. Consult the IBM Software Support Handbook for further information at www.ibm.com/software/support. + + If the Program does not function as warranted during the Warranty Period and the problem cannot be resolved with information available in the IBM databases, Licensee may return the Program and its PoE to the party (either IBM or its reseller) from whom Licensee obtained it and receive a refund of the amount Licensee paid. After returning the Program, Licensee's license terminates. If Licensee downloaded the Program, Licensee should contact the party from whom Licensee obtained it for instructions on how to obtain the refund. + + 8.2 Exclusions + + THESE WARRANTIES ARE LICENSEE'S EXCLUSIVE WARRANTIES AND REPLACE ALL OTHER WARRANTIES OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND ANY WARRANTY OR CONDITION OF NON-INFRINGEMENT. SOME STATES OR JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF EXPRESS OR IMPLIED WARRANTIES, SO THE ABOVE EXCLUSION MAY NOT APPLY TO LICENSEE. IN THAT EVENT, SUCH WARRANTIES ARE LIMITED IN DURATION TO THE WARRANTY PERIOD. NO WARRANTIES APPLY AFTER THAT PERIOD. SOME STATES OR JURISDICTIONS DO NOT ALLOW LIMITATIONS ON HOW LONG AN IMPLIED WARRANTY LASTS, SO THE ABOVE LIMITATION MAY NOT APPLY TO LICENSEE. + + THESE WARRANTIES GIVE LICENSEE SPECIFIC LEGAL RIGHTS. LICENSEE MAY ALSO HAVE OTHER RIGHTS THAT VARY FROM STATE TO STATE OR JURISDICTION TO JURISDICTION. + + THE WARRANTIES IN THIS SECTION 8 (WARRANTY AND EXCLUSIONS) ARE PROVIDED SOLELY BY IBM. THE DISCLAIMERS IN THIS SUBSECTION 8.2 (EXCLUSIONS), HOWEVER, ALSO APPLY TO IBM'S SUPPLIERS OF THIRD PARTY CODE. THOSE SUPPLIERS PROVIDE SUCH CODE WITHOUT WARRANTIES OR CONDITION OF ANY KIND. THIS PARAGRAPH DOES NOT NULLIFY IBM'S WARRANTY OBLIGATIONS UNDER THIS AGREEMENT. + + 9. Licensee Data and Databases + + To assist Licensee in isolating the cause of a problem with the Program, IBM may request that Licensee 1) allow IBM to remotely access Licensee's system or 2) send Licensee information or system data to IBM. However, IBM is not obligated to provide such assistance unless IBM and Licensee enter a separate written agreement under which IBM agrees to provide to Licensee that type of support, which is beyond IBM's warranty obligations in this Agreement. In any event, IBM uses information about errors and problems to improve its products and services, and assist with its provision of related support offerings. For these purposes, IBM may use IBM entities and subcontractors (including in one or more countries other than the one in which Licensee is located), and Licensee authorizes IBM to do so. + + Licensee remains responsible for 1) any data and the content of any database Licensee makes available to IBM, 2) the selection and implementation of procedures and controls regarding access, security, encryption, use, and transmission of data (including any personally-identifiable data), and 3) backup and recovery of any database and any stored data. Licensee will not send or provide IBM access to any personally-identifiable information, whether in data or any other form, and will be responsible for reasonable costs and other amounts that IBM may incur relating to any such information mistakenly provided to IBM or the loss or disclosure of such information by IBM, including those arising out of any third party claims. + + 10. Limitation of Liability + + The limitations and exclusions in this Section 10 (Limitation of Liability) apply to the full extent they are not prohibited by applicable law without the possibility of contractual waiver. + + 10.1 Items for Which IBM May Be Liable + + Circumstances may arise where, because of a default on IBM's part or other liability, Licensee is entitled to recover damages from IBM. Regardless of the basis on which Licensee is entitled to claim damages from IBM (including fundamental breach, negligence, misrepresentation, or other contract or tort claim), IBM's entire liability for all claims in the aggregate arising from or related to each Program or otherwise arising under this Agreement will not exceed the amount of any 1) damages for bodily injury (including death) and damage to real property and tangible personal property and 2) other actual direct damages up to the charges (if the Program is subject to fixed term charges, up to twelve months' charges) Licensee paid for the Program that is the subject of the claim. + + This limit also applies to any of IBM's Program developers and suppliers. It is the maximum for which IBM and its Program developers and suppliers are collectively responsible. + + 10.2 Items for Which IBM Is Not Liable + + UNDER NO CIRCUMSTANCES IS IBM, ITS PROGRAM DEVELOPERS OR SUPPLIERS LIABLE FOR ANY OF THE FOLLOWING, EVEN IF INFORMED OF THEIR POSSIBILITY: + + a. LOSS OF, OR DAMAGE TO, DATA; + + b. SPECIAL, INCIDENTAL, EXEMPLARY, OR INDIRECT DAMAGES, OR FOR ANY ECONOMIC CONSEQUENTIAL DAMAGES; OR + + c. LOST PROFITS, BUSINESS, REVENUE, GOODWILL, OR ANTICIPATED SAVINGS. + + 11. Compliance Verification + + For purposes of this Section 11 (Compliance Verification), "IPLA Program Terms" means 1) this Agreement and applicable amendments and transaction documents provided by IBM, and 2) IBM software policies that may be found at the IBM Software Policy website (www.ibm.com/softwarepolicies), including but not limited to those policies concerning backup, sub-capacity pricing, and migration. + + The rights and obligations set forth in this Section 11 remain in effect during the period the Program is licensed to Licensee, and for two years thereafter. + + 11.1 Verification Process + + Licensee agrees to create, retain, and provide to IBM and its auditors accurate written records, system tool outputs, and other system information sufficient to provide auditable verification that Licensee's use of all Programs is in compliance with the IPLA Program Terms, including, without limitation, all of IBM's applicable licensing and pricing qualification terms. Licensee is responsible for 1) ensuring that it does not exceed its Authorized Use, and 2) remaining in compliance with IPLA Program Terms. + + Upon reasonable notice, IBM may verify Licensee's compliance with IPLA Program Terms at all sites and for all environments in which Licensee uses (for any purpose) Programs subject to IPLA Program Terms. Such verification will be conducted in a manner that minimizes disruption to Licensee's business, and may be conducted on Licensee's premises, during normal business hours. IBM may use an independent auditor to assist with such verification, provided IBM has a written confidentiality agreement in place with such auditor. + + 11.2 Resolution + + IBM will notify Licensee in writing if any such verification indicates that Licensee has used any Program in excess of its Authorized Use or is otherwise not in compliance with the IPLA Program Terms. Licensee agrees to promptly pay directly to IBM the charges that IBM specifies in an invoice for 1) any such excess use, 2) support for such excess use for the lesser of the duration of such excess use or two years, and 3) any additional charges and other liabilities determined as a result of such verification. + + 12. Third Party Notices + + The Program may include third party code that IBM, not the third party, licenses to Licensee under this Agreement. Notices, if any, for the third party code ("Third Party Notices") are included for Licensee's information only. These notices can be found in the Program's NOTICES file(s). Information on how to obtain source code for certain third party code can be found in the Third Party Notices. If in the Third Party Notices IBM identifies third party code as "Modifiable Third Party Code," IBM authorizes Licensee to 1) modify the Modifiable Third Party Code and 2) reverse engineer the Program modules that directly interface with the Modifiable Third Party Code provided that it is only for the purpose of debugging Licensee's modifications to such third party code. IBM's service and support obligations, if any, apply only to the unmodified Program. + + 13. General + + a. Nothing in this Agreement affects any statutory rights of consumers that cannot be waived or limited by contract. + + b. For Programs IBM provides to Licensee in tangible form, IBM fulfills its shipping and delivery obligations upon the delivery of such Programs to the IBM-designated carrier, unless otherwise agreed to in writing by Licensee and IBM. + + c. If any provision of this Agreement is held to be invalid or unenforceable, the remaining provisions of this Agreement remain in full force and effect. + + d. Licensee agrees to comply with all applicable export and import laws and regulations, including U.S. embargo and sanctions regulations and prohibitions on export for certain end uses or to certain users. + + e. Licensee authorizes International Business Machines Corporation and its subsidiaries (and their successors and assigns, contractors and IBM Business Partners) to store and use Licensee's business contact information wherever they do business, in connection with IBM products and services, or in furtherance of IBM's business relationship with Licensee. + + f. Each party will allow the other reasonable opportunity to comply before it claims that the other has not met its obligations under this Agreement. The parties will attempt in good faith to resolve all disputes, disagreements, or claims between the parties relating to this Agreement. + + g. Unless otherwise required by applicable law without the possibility of contractual waiver or limitation: 1) neither party will bring a legal action, regardless of form, for any claim arising out of or related to this Agreement more than two years after the cause of action arose; and 2) upon the expiration of such time limit, any such claim and all respective rights related to the claim lapse. + + h. Neither Licensee nor IBM is responsible for failure to fulfill any obligations due to causes beyond its control. + + i. No right or cause of action for any third party is created by this Agreement, nor is IBM responsible for any third party claims against Licensee, except as permitted in Subsection 10.1 (Items for Which IBM May Be Liable) above for bodily injury (including death) or damage to real or tangible personal property for which IBM is legally liable to that third party. + + j. In entering into this Agreement, neither party is relying on any representation not specified in this Agreement, including but not limited to any representation concerning: 1) the performance or function of the Program, other than as expressly warranted in Section 8 (Warranty and Exclusions) above; 2) the experiences or recommendations of other parties; or 3) any results or savings that Licensee may achieve. + + k. IBM has signed agreements with certain organizations (called "IBM Business Partners") to promote, market, and support certain Programs. IBM Business Partners remain independent and separate from IBM. IBM is not responsible for the actions or statements of IBM Business Partners or obligations they have to Licensee. + + l. The license and intellectual property indemnification terms of Licensee's other agreements with IBM (such as the IBM Customer Agreement) do not apply to Program licenses granted under this Agreement. + + 14. Geographic Scope and Governing Law + + 14.1 Governing Law + + Both parties agree to the application of the laws of the country in which Licensee obtained the Program license to govern, interpret, and enforce all of Licensee's and IBM's respective rights, duties, and obligations arising from, or relating in any manner to, the subject matter of this Agreement, without regard to conflict of law principles. + + The United Nations Convention on Contracts for the International Sale of Goods does not apply. + + 14.2 Jurisdiction + + All rights, duties, and obligations are subject to the courts of the country in which Licensee obtained the Program license. + + Part 2 - Country-unique Terms + + For licenses granted in the countries specified below, the following terms replace or modify the referenced terms in Part 1. All terms in Part 1 that are not changed by these amendments remain unchanged and in effect. This Part 2 is organized as follows: + + * Multiple country amendments to Part 1, Section 14 (Governing Law and Jurisdiction); + + * Americas country amendments to other Agreement terms; + + * Asia Pacific country amendments to other Agreement terms; and + + * Europe, Middle East, and Africa country amendments to other Agreement terms. + + Multiple country amendments to Part 1, Section 14 (Governing Law and Jurisdiction) + + 14.1 Governing Law + + The phrase "the laws of the country in which Licensee obtained the Program license" in the first paragraph of 14.1 Governing Law is replaced by the following phrases in the countries below: + + AMERICAS + + (1) In Canada: the laws in the Province of Ontario; + + (2) in Mexico: the federal laws of the Republic of Mexico; + + (3) in the United States, Anguilla, Antigua/Barbuda, Aruba, British Virgin Islands, Cayman Islands, Dominica, Grenada, Guyana, Saint Kitts and Nevis, Saint Lucia, Saint Maarten, and Saint Vincent and the Grenadines: the laws of the State of New York, United States; + + (4) in Venezuela: the laws of the Bolivarian Republic of Venezuela; + + ASIA PACIFIC + + (5) in Cambodia and Laos: the laws of the State of New York, United States; + + (6) in Australia: the laws of the State or Territory in which the transaction is performed; + + (7) in Hong Kong SAR and Macau SAR: the laws of Hong Kong Special Administrative Region ("SAR"); + + (8) in Taiwan: the laws of Taiwan; + + EUROPE, MIDDLE EAST, AND AFRICA + + (9) in Albania, Armenia, Azerbaijan, Belarus, Bosnia-Herzegovina, Bulgaria, Croatia, Former Yugoslav Republic of Macedonia, Georgia, Hungary, Kazakhstan, Kyrgyzstan, Moldova, Montenegro, Poland, Romania, Russia, Serbia, Slovakia, Tajikistan, Turkmenistan, Ukraine, and Uzbekistan: the laws of Austria; + + (10) in Algeria, Andorra, Benin, Burkina Faso, Cameroon, Cape Verde, Central African Republic, Chad, Comoros, Congo Republic, Djibouti, Democratic Republic of Congo, Equatorial Guinea, French Guiana, French Polynesia, Gabon, Gambia, Guinea, Guinea-Bissau, Ivory Coast, Lebanon, Madagascar, Mali, Mauritania, Mauritius, Mayotte, Morocco, New Caledonia, Niger, Reunion, Senegal, Seychelles, Togo, Tunisia, Vanuatu, and Wallis and Futuna: the laws of France; + + (11) in Estonia, Latvia, and Lithuania: the laws of Finland; + + (12) in Angola, Bahrain, Botswana, Burundi, Egypt, Eritrea, Ethiopia, Ghana, Jordan, Kenya, Kuwait, Liberia, Malawi, Malta, Mozambique, Nigeria, Oman, Pakistan, Qatar, Rwanda, Sao Tome and Principe, Saudi Arabia, Sierra Leone, Somalia, Tanzania, Uganda, United Arab Emirates, the United Kingdom, West Bank/Gaza, Yemen, Zambia, and Zimbabwe: the laws of England; and + + (13) in South Africa, Namibia, Lesotho, and Swaziland: the laws of the Republic of South Africa. + + 14.2 Jurisdiction + + The following paragraph pertains to jurisdiction and replaces Subsection 14.2 (Jurisdiction) as it applies for those countries identified below: + + All rights, duties, and obligations are subject to the courts of the country in which Licensee obtained the Program license except that in the countries identified below all disputes arising out of or related to this Agreement, including summary proceedings, will be brought before and subject to the exclusive jurisdiction of the following courts of competent jurisdiction: + + AMERICAS + + (1) In Argentina: the Ordinary Commercial Court of the city of Buenos Aires; + + (2) in Brazil: the court of Rio de Janeiro, RJ; + + (3) in Chile: the Civil Courts of Justice of Santiago; + + (4) in Ecuador: the civil judges of Quito for executory or summary proceedings (as applicable); + + (5) in Mexico: the courts located in Mexico City, Federal District; + + (6) in Peru: the judges and tribunals of the judicial district of Lima, Cercado; + + (7) in Uruguay: the courts of the city of Montevideo; + + (8) in Venezuela: the courts of the metropolitan area of the city of Caracas; + + EUROPE, MIDDLE EAST, AND AFRICA + + (9) in Austria: the court of law in Vienna, Austria (Inner-City); + + (10) in Algeria, Andorra, Benin, Burkina Faso, Cameroon, Cape Verde, Central African Republic, Chad, Comoros, Congo Republic, Djibouti, Democratic Republic of Congo, Equatorial Guinea, France, French Guiana, French Polynesia, Gabon, Gambia, Guinea, Guinea-Bissau, Ivory Coast, Lebanon, Madagascar, Mali, Mauritania, Mauritius, Mayotte, Monaco, Morocco, New Caledonia, Niger, Reunion, Senegal, Seychelles, Togo, Tunisia, Vanuatu, and Wallis and Futuna: the Commercial Court of Paris; + + (11) in Angola, Bahrain, Botswana, Burundi, Egypt, Eritrea, Ethiopia, Ghana, Jordan, Kenya, Kuwait, Liberia, Malawi, Malta, Mozambique, Nigeria, Oman, Pakistan, Qatar, Rwanda, Sao Tome and Principe, Saudi Arabia, Sierra Leone, Somalia, Tanzania, Uganda, United Arab Emirates, the United Kingdom, West Bank/Gaza, Yemen, Zambia, and Zimbabwe: the English courts; + + (12) in South Africa, Namibia, Lesotho, and Swaziland: the High Court in Johannesburg; + + (13) in Greece: the competent court of Athens; + + (14) in Israel: the courts of Tel Aviv-Jaffa; + + (15) in Italy: the courts of Milan; + + (16) in Portugal: the courts of Lisbon; + + (17) in Spain: the courts of Madrid; and + + (18) in Turkey: the Istanbul Central Courts and Execution Directorates of Istanbul, the Republic of Turkey. + + 14.3 Arbitration + + The following paragraph is added as a new Subsection 14.3 (Arbitration) as it applies for those countries identified below. The provisions of this Subsection 14.3 prevail over those of Subsection 14.2 (Jurisdiction) to the extent permitted by the applicable governing law and rules of procedure: + + ASIA PACIFIC + + (1) In Cambodia, India, Laos, Philippines, and Vietnam: + + Disputes arising out of or in connection with this Agreement will be finally settled by arbitration which will be held in Singapore in accordance with the Arbitration Rules of Singapore International Arbitration Center ("SIAC Rules") then in effect. The arbitration award will be final and binding for the parties without appeal and will be in writing and set forth the findings of fact and the conclusions of law. + + The number of arbitrators will be three, with each side to the dispute being entitled to appoint one arbitrator. The two arbitrators appointed by the parties will appoint a third arbitrator who will act as chairman of the proceedings. Vacancies in the post of chairman will be filled by the president of the SIAC. Other vacancies will be filled by the respective nominating party. Proceedings will continue from the stage they were at when the vacancy occurred. + + If one of the parties refuses or otherwise fails to appoint an arbitrator within 30 days of the date the other party appoints its, the first appointed arbitrator will be the sole arbitrator, provided that the arbitrator was validly and properly appointed. + + All proceedings will be conducted, including all documents presented in such proceedings, in the English language. The English language version of this Agreement prevails over any other language version. + + (2) In the People's Republic of China: + + In case no settlement can be reached, the disputes will be submitted to China International Economic and Trade Arbitration Commission for arbitration according to the then effective rules of the said Arbitration Commission. The arbitration will take place in Beijing and be conducted in Chinese. The arbitration award will be final and binding on both parties. During the course of arbitration, this agreement will continue to be performed except for the part which the parties are disputing and which is undergoing arbitration. + + (3) In Indonesia: + + Each party will allow the other reasonable opportunity to comply before it claims that the other has not met its obligations under this Agreement. The parties will attempt in good faith to resolve all disputes, disagreements, or claims between the parties relating to this Agreement. Unless otherwise required by applicable law without the possibility of contractual waiver or limitation, i) neither party will bring a legal action, regardless of form, arising out of or related to this Agreement or any transaction under it more than two years after the cause of action arose; and ii) after such time limit, any legal action arising out of this Agreement or any transaction under it and all respective rights related to any such action lapse. + + Disputes arising out of or in connection with this Agreement shall be finally settled by arbitration that shall be held in Jakarta, Indonesia in accordance with the rules of Board of the Indonesian National Board of Arbitration (Badan Arbitrase Nasional Indonesia or "BANI") then in effect. The arbitration award shall be final and binding for the parties without appeal and shall be in writing and set forth the findings of fact and the conclusions of law. + + The number of arbitrators shall be three, with each side to the dispute being entitled to appoint one arbitrator. The two arbitrators appointed by the parties shall appoint a third arbitrator who shall act as chairman of the proceedings. Vacancies in the post of chairman shall be filled by the chairman of the BANI. Other vacancies shall be filled by the respective nominating party. Proceedings shall continue from the stage they were at when the vacancy occurred. + + If one of the parties refuses or otherwise fails to appoint an arbitrator within 30 days of the date the other party appoints its, the first appointed arbitrator shall be the sole arbitrator, provided that the arbitrator was validly and properly appointed. + + All proceedings shall be conducted, including all documents presented in such proceedings, in the English and/or Indonesian language. + + EUROPE, MIDDLE EAST, AND AFRICA + + (4) In Albania, Armenia, Azerbaijan, Belarus, Bosnia-Herzegovina, Bulgaria, Croatia, Former Yugoslav Republic of Macedonia, Georgia, Hungary, Kazakhstan, Kyrgyzstan, Moldova, Montenegro, Poland, Romania, Russia, Serbia, Slovakia, Tajikistan, Turkmenistan, Ukraine, and Uzbekistan: + + All disputes arising out of this Agreement or related to its violation, termination or nullity will be finally settled under the Rules of Arbitration and Conciliation of the International Arbitral Center of the Federal Economic Chamber in Vienna (Vienna Rules) by three arbitrators appointed in accordance with these rules. The arbitration will be held in Vienna, Austria, and the official language of the proceedings will be English. The decision of the arbitrators will be final and binding upon both parties. Therefore, pursuant to paragraph 598 (2) of the Austrian Code of Civil Procedure, the parties expressly waive the application of paragraph 595 (1) figure 7 of the Code. IBM may, however, institute proceedings in a competent court in the country of installation. + + (5) In Estonia, Latvia, and Lithuania: + + All disputes arising in connection with this Agreement will be finally settled in arbitration that will be held in Helsinki, Finland in accordance with the arbitration laws of Finland then in effect. Each party will appoint one arbitrator. The arbitrators will then jointly appoint the chairman. If arbitrators cannot agree on the chairman, then the Central Chamber of Commerce in Helsinki will appoint the chairman. + + AMERICAS COUNTRY AMENDMENTS + + CANADA + + 10.1 Items for Which IBM May be Liable + + The following replaces Item 1 in the first paragraph of this Subsection 10.1 (Items for Which IBM May be Liable): + + 1) damages for bodily injury (including death) and physical harm to real property and tangible personal property caused by IBM's negligence; and + + 13. General + + The following replaces Item 13.d: + + d. Licensee agrees to comply with all applicable export and import laws and regulations, including those of that apply to goods of United States origin and that prohibit or limit export for certain uses or to certain users. + + The following replaces Item 13.i: + + i. No right or cause of action for any third party is created by this Agreement or any transaction under it, nor is IBM responsible for any third party claims against Licensee except as permitted by the Limitation of Liability section above for bodily injury (including death) or physical harm to real or tangible personal property caused by IBM's negligence for which IBM is legally liable to that third party. + + The following is added as Item 13.m: + + m. For purposes of this Item 13.m, "Personal Data" refers to information relating to an identified or identifiable individual made available by one of the parties, its personnel or any other individual to the other in connection with this Agreement. The following provisions apply in the event that one party makes Personal Data available to the other: + + (1) General + + (a) Each party is responsible for complying with any obligations applying to it under applicable Canadian data privacy laws and regulations ("Laws"). + + (b) Neither party will request Personal Data beyond what is necessary to fulfill the purpose(s) for which it is requested. The purpose(s) for requesting Personal Data must be reasonable. Each party will agree in advance as to the type of Personal Data that is required to be made available. + + (2) Security Safeguards + + (a) Each party acknowledges that it is solely responsible for determining and communicating to the other the appropriate technological, physical and organizational security measures required to protect Personal Data. + + (b) Each party will ensure that Personal Data is protected in accordance with the security safeguards communicated and agreed to by the other. + + (c) Each party will ensure that any third party to whom Personal Data is transferred is bound by the applicable terms of this section. + + (d) Additional or different services required to comply with the Laws will be deemed a request for new services. + + (3) Use + + Each party agrees that Personal Data will only be used, accessed, managed, transferred, disclosed to third parties or otherwise processed to fulfill the purpose(s) for which it was made available. + + (4) Access Requests + + (a) Each party agrees to reasonably cooperate with the other in connection with requests to access or amend Personal Data. + + (b) Each party agrees to reimburse the other for any reasonable charges incurred in providing each other assistance. + + (c) Each party agrees to amend Personal Data only upon receiving instructions to do so from the other party or its personnel. + + (5) Retention + + Each party will promptly return to the other or destroy all Personal Data that is no longer necessary to fulfill the purpose(s) for which it was made available, unless otherwise instructed by the other or its personnel or required by law. + + (6) Public Bodies Who Are Subject to Public Sector Privacy Legislation + + For Licensees who are public bodies subject to public sector privacy legislation, this Item 13.m applies only to Personal Data made available to Licensee in connection with this Agreement, and the obligations in this section apply only to Licensee, except that: 1) section (2)(a) applies only to IBM; 2) sections (1)(a) and (4)(a) apply to both parties; and 3) section (4)(b) and the last sentence in (1)(b) do not apply. + + PERU + + 10. Limitation of Liability + + The following is added to the end of this Section 10 (Limitation of Liability): + + Except as expressly required by law without the possibility of contractual waiver, Licensee and IBM intend that the limitation of liability in this Limitation of Liability section applies to damages caused by all types of claims and causes of action. If any limitation on or exclusion from liability in this section is held by a court of competent jurisdiction to be unenforceable with respect to a particular claim or cause of action, the parties intend that it nonetheless apply to the maximum extent permitted by applicable law to all other claims and causes of action. + + 10.1 Items for Which IBM May be Liable + + The following is added at the end of this Subsection 10.1: + + In accordance with Article 1328 of the Peruvian Civil Code, the limitations and exclusions specified in this section will not apply to damages caused by IBM's willful misconduct ("dolo") or gross negligence ("culpa inexcusable"). + + UNITED STATES OF AMERICA + + 5. Taxes + + The following is added at the end of this Section 5 (Taxes) + + For Programs delivered electronically in the United States for which Licensee claims a state sales and use tax exemption, Licensee agrees not to receive any tangible personal property (e.g., media and publications) associated with the electronic program. + + Licensee agrees to be responsible for any sales and use tax liabilities that may arise as a result of Licensee's subsequent redistribution of Programs after delivery by IBM. + + 13. General + + The following is added to Section 13 as Item 13.m: + + U.S. Government Users Restricted Rights - Use, duplication or disclosure is restricted by the GSA IT Schedule 70 Contract with the IBM Corporation. + + The following is added to Item 13.f: + + Each party waives any right to a jury trial in any proceeding arising out of or related to this Agreement. + + ASIA PACIFIC COUNTRY AMENDMENTS + + AUSTRALIA + + 5. Taxes + + The following sentences replace the first two sentences of Section 5 (Taxes): + + If any government or authority imposes a duty, tax (other than income tax), levy, or fee, on this Agreement or on the Program itself, that is not otherwise provided for in the amount payable, Licensee agrees to pay it when IBM invoices Licensee. If the rate of GST changes, IBM may adjust the charge or other amount payable to take into account that change from the date the change becomes effective. + + 8.1 Limited Warranty + + The following is added to Subsection 8.1 (Limited Warranty): + + The warranties specified this Section are in addition to any rights Licensee may have under the Competition and Consumer Act 2010 or other legislation and are only limited to the extent permitted by the applicable legislation. + + 10.1 Items for Which IBM May be Liable + + The following is added to Subsection 10.1 (Items for Which IBM May be Liable): + + Where IBM is in breach of a condition or warranty implied by the Competition and Consumer Act 2010, IBM's liability is limited to the repair or replacement of the goods, or the supply of equivalent goods. Where that condition or warranty relates to right to sell, quiet possession or clear title, or the goods are of a kind ordinarily obtained for personal, domestic or household use or consumption, then none of the limitations in this paragraph apply. + + HONG KONG SAR, MACAU SAR, AND TAIWAN + + As applies to licenses obtained in Taiwan and the special administrative regions, phrases throughout this Agreement containing the word "country" (for example, "the country in which the original Licensee was granted the license" and "the country in which Licensee obtained the Program license") are replaced with the following: + + (1) In Hong Kong SAR: "Hong Kong SAR" + + (2) In Macau SAR: "Macau SAR" except in the Governing Law clause (Section 14.1) + + (3) In Taiwan: "Taiwan." + + INDIA + + 10.1 Items for Which IBM May be Liable + + The following replaces the terms of Items 1 and 2 of the first paragraph: + + 1) liability for bodily injury (including death) or damage to real property and tangible personal property will be limited to that caused by IBM's negligence; and 2) as to any other actual damage arising in any situation involving nonperformance by IBM pursuant to, or in any way related to the subject of this Agreement, IBM's liability will be limited to the charge paid by Licensee for the individual Program that is the subject of the claim. + + 13. General + + The following replaces the terms of Item 13.g: + + If no suit or other legal action is brought, within three years after the cause of action arose, in respect of any claim that either party may have against the other, the rights of the concerned party in respect of such claim will be forfeited and the other party will stand released from its obligations in respect of such claim. + + INDONESIA + + 3.3 Term and Termination + + The following is added to the last paragraph: + + Both parties waive the provision of article 1266 of the Indonesian Civil Code, to the extent the article provision requires such court decree for the termination of an agreement creating mutual obligations. + + JAPAN + + 13. General + + The following is inserted after Item 13.f: + + Any doubts concerning this Agreement will be initially resolved between us in good faith and in accordance with the principle of mutual trust. + + MALAYSIA + + 10.2 Items for Which IBM Is not Liable + + The word "SPECIAL" in Item 10.2b is deleted. + + NEW ZEALAND + + 8.1 Limited Warranty + + The following is added: + + The warranties specified in this Section are in addition to any rights Licensee may have under the Consumer Guarantees Act 1993 or other legislation which cannot be excluded or limited. The Consumer Guarantees Act 1993 will not apply in respect of any goods which IBM provides, if Licensee requires the goods for the purposes of a business as defined in that Act. + + 10. Limitation of Liability + + The following is added: + + Where Programs are not obtained for the purposes of a business as defined in the Consumer Guarantees Act 1993, the limitations in this Section are subject to the limitations in that Act. + + PEOPLE'S REPUBLIC OF CHINA + + 4. Charges + + The following is added: + + All banking charges incurred in the People's Republic of China will be borne by Licensee and those incurred outside the People's Republic of China will be borne by IBM. + + PHILIPPINES + + 10.2 Items for Which IBM Is not Liable + + The following replaces the terms of Item 10.2b: + + b. special (including nominal and exemplary damages), moral, incidental, or indirect damages or for any economic consequential damages; or + + SINGAPORE + + 10.2 Items for Which IBM Is not Liable + + The words "SPECIAL" and "ECONOMIC" are deleted from Item 10.2b. + + 13. General + + The following replaces the terms of Item 13.i: + + Subject to the rights provided to IBM's suppliers and Program developers as provided in Section 10 above (Limitation of Liability), a person who is not a party to this Agreement will have no right under the Contracts (Right of Third Parties) Act to enforce any of its terms. + + TAIWAN + + 8.1 Limited Warranty + + The last paragraph is deleted. + + 10.1 Items for Which IBM May Be Liable + + The following sentences are deleted: + + This limit also applies to any of IBM's subcontractors and Program developers. It is the maximum for which IBM and its subcontractors and Program developers are collectively responsible. + + EUROPE, MIDDLE EAST, AFRICA (EMEA) COUNTRY AMENDMENTS + + EUROPEAN UNION MEMBER STATES + + 8. Warranty and Exclusions + + The following is added to Section 8 (Warranty and Exclusion): + + In the European Union ("EU"), consumers have legal rights under applicable national legislation governing the sale of consumer goods. Such rights are not affected by the provisions set out in this Section 8 (Warranty and Exclusions). The territorial scope of the Limited Warranty is worldwide. + + EU MEMBER STATES AND THE COUNTRIES IDENTIFIED BELOW + + Iceland, Liechtenstein, Norway, Switzerland, Turkey, and any other European country that has enacted local data privacy or protection legislation similar to the EU model. + + 13. General + + The following replaces Item 13.e: + + (1) Definitions - For the purposes of this Item 13.e, the following additional definitions apply: + + (a) Business Contact Information - business-related contact information disclosed by Licensee to IBM, including names, job titles, business addresses, telephone numbers and email addresses of Licensee's employees and contractors. For Austria, Italy and Switzerland, Business Contact Information also includes information about Licensee and its contractors as legal entities (for example, Licensee's revenue data and other transactional information) + + (b) Business Contact Personnel - Licensee employees and contractors to whom the Business Contact Information relates. + + (c) Data Protection Authority - the authority established by the Data Protection and Electronic Communications Legislation in the applicable country or, for non-EU countries, the authority responsible for supervising the protection of personal data in that country, or (for any of the foregoing) any duly appointed successor entity thereto. + + (d) Data Protection & Electronic Communications Legislation - (i) the applicable local legislation and regulations in force implementing the requirements of EU Directive 95/46/EC (on the protection of individuals with regard to the processing of personal data and on the free movement of such data) and of EU Directive 2002/58/EC (concerning the processing of personal data and the protection of privacy in the electronic communications sector); or (ii) for non-EU countries, the legislation and/or regulations passed in the applicable country relating to the protection of personal data and the regulation of electronic communications involving personal data, including (for any of the foregoing) any statutory replacement or modification thereof. + + (e) IBM Group - International Business Machines Corporation of Armonk, New York, USA, its subsidiaries, and their respective Business Partners and subcontractors. + + (2) Licensee authorizes IBM: + + (a) to process and use Business Contact Information within IBM Group in support of Licensee including the provision of support services, and for the purpose of furthering the business relationship between Licensee and IBM Group, including, without limitation, contacting Business Contact Personnel (by email or otherwise) and marketing IBM Group products and services (the "Specified Purpose"); and + + (b) to disclose Business Contact Information to other members of IBM Group in pursuit of the Specified Purpose only. + + (3) IBM agrees that all Business Contact Information will be processed in accordance with the Data Protection & Electronic Communications Legislation and will be used only for the Specified Purpose. + + (4) To the extent required by the Data Protection & Electronic Communications Legislation, Licensee represents that (a) it has obtained (or will obtain) any consents from (and has issued (or will issue) any notices to) the Business Contact Personnel as are necessary in order to enable IBM Group to process and use the Business Contact Information for the Specified Purpose. + + (5) Licensee authorizes IBM to transfer Business Contact Information outside the European Economic Area, provided that the transfer is made on contractual terms approved by the Data Protection Authority or the transfer is otherwise permitted under the Data Protection & Electronic Communications Legislation. + + AUSTRIA + + 8.2 Exclusions + + The following is deleted from the first paragraph: + + MERCHANTABILITY, SATISFACTORY QUALITY + + 10. Limitation of Liability + + The following is added: + + The following limitations and exclusions of IBM's liability do not apply for damages caused by gross negligence or willful misconduct. + + 10.1 Items for Which IBM May Be Liable + + The following replaces the first sentence in the first paragraph: + + Circumstances may arise where, because of a default by IBM in the performance of its obligations under this Agreement or other liability, Licensee is entitled to recover damages from IBM. + + In the second sentence of the first paragraph, delete entirely the parenthetical phrase: + + "(including fundamental breach, negligence, misrepresentation, or other contract or tort claim)". + + 10.2 Items for Which IBM Is Not Liable + + The following replaces Item 10.2b: + + b. indirect damages or consequential damages; or + + BELGIUM, FRANCE, ITALY, AND LUXEMBOURG + + 10. Limitation of Liability + + The following replaces the terms of Section 10 (Limitation of Liability) in its entirety: + + Except as otherwise provided by mandatory law: + + 10.1 Items for Which IBM May Be Liable + + IBM's entire liability for all claims in the aggregate for any damages and losses that may arise as a consequence of the fulfillment of its obligations under or in connection with this Agreement or due to any other cause related to this Agreement is limited to the compensation of only those damages and losses proved and actually arising as an immediate and direct consequence of the non-fulfillment of such obligations (if IBM is at fault) or of such cause, for a maximum amount equal to the charges (if the Program is subject to fixed term charges, up to twelve months' charges) Licensee paid for the Program that has caused the damages. + + The above limitation will not apply to damages for bodily injuries (including death) and damages to real property and tangible personal property for which IBM is legally liable. + + 10.2 Items for Which IBM Is Not Liable + + UNDER NO CIRCUMSTANCES IS IBM OR ANY OF ITS PROGRAM DEVELOPERS LIABLE FOR ANY OF THE FOLLOWING, EVEN IF INFORMED OF THEIR POSSIBILITY: 1) LOSS OF, OR DAMAGE TO, DATA; 2) INCIDENTAL, EXEMPLARY OR INDIRECT DAMAGES, OR FOR ANY ECONOMIC CONSEQUENTIAL DAMAGES; AND / OR 3) LOST PROFITS, BUSINESS, REVENUE, GOODWILL, OR ANTICIPATED SAVINGS, EVEN IF THEY ARISE AS AN IMMEDIATE CONSEQUENCE OF THE EVENT THAT GENERATED THE DAMAGES. + + 10.3 Suppliers and Program Developers + + The limitation and exclusion of liability herein agreed applies not only to the activities performed by IBM but also to the activities performed by its suppliers and Program developers, and represents the maximum amount for which IBM as well as its suppliers and Program developers are collectively responsible. + + GERMANY + + 8.1 Limited Warranty + + The following is inserted at the beginning of Section 8.1: + + The Warranty Period is twelve months from the date of delivery of the Program to the original Licensee. + + 8.2 Exclusions + + Section 8.2 is deleted in its entirety and replaced with the following: + + Section 8.1 defines IBM's entire warranty obligations to Licensee except as otherwise required by applicable statutory law. + + 10. Limitation of Liability + + The following replaces the Limitation of Liability section in its entirety: + + a. IBM will be liable without limit for 1) loss or damage caused by a breach of an express guarantee; 2) damages or losses resulting in bodily injury (including death); and 3) damages caused intentionally or by gross negligence. + + b. In the event of loss, damage and frustrated expenditures caused by slight negligence or in breach of essential contractual obligations, IBM will be liable, regardless of the basis on which Licensee is entitled to claim damages from IBM (including fundamental breach, negligence, misrepresentation, or other contract or tort claim), per claim only up to the greater of 500,000 euro or the charges (if the Program is subject to fixed term charges, up to 12 months' charges) Licensee paid for the Program that caused the loss or damage. A number of defaults which together result in, or contribute to, substantially the same loss or damage will be treated as one default. + + c. In the event of loss, damage and frustrated expenditures caused by slight negligence, IBM will not be liable for indirect or consequential damages, even if IBM was informed about the possibility of such loss or damage. + + d. In case of delay on IBM's part: 1) IBM will pay to Licensee an amount not exceeding the loss or damage caused by IBM's delay and 2) IBM will be liable only in respect of the resulting damages that Licensee suffers, subject to the provisions of Items a and b above. + + 13. General + + The following replaces the provisions of 13.g: + + Any claims resulting from this Agreement are subject to a limitation period of three years, except as stated in Section 8.1 (Limited Warranty) of this Agreement. + + The following replaces the provisions of 13.i: + + No right or cause of action for any third party is created by this Agreement, nor is IBM responsible for any third party claims against Licensee, except (to the extent permitted in Section 10 (Limitation of Liability)) for: i) bodily injury (including death); or ii) damage to real or tangible personal property for which (in either case) IBM is legally liable to that third party. + + IRELAND + + 8.2 Exclusions + + The following paragraph is added: + + Except as expressly provided in these terms and conditions, or Section 12 of the Sale of Goods Act 1893 as amended by the Sale of Goods and Supply of Services Act, 1980 (the "1980 Act"), all conditions or warranties (express or implied, statutory or otherwise) are hereby excluded including, without limitation, any warranties implied by the Sale of Goods Act 1893 as amended by the 1980 Act (including, for the avoidance of doubt, Section 39 of the 1980 Act). + + IRELAND AND UNITED KINGDOM + + 2. Agreement Structure + + The following sentence is added: + + Nothing in this paragraph shall have the effect of excluding or limiting liability for fraud. + + 10.1 Items for Which IBM May Be Liable + + The following replaces the first paragraph of the Subsection: + + For the purposes of this section, a "Default" means any act, statement, omission or negligence on the part of IBM in connection with, or in relation to, the subject matter of an Agreement in respect of which IBM is legally liable to Licensee, whether in contract or in tort. A number of Defaults which together result in, or contribute to, substantially the same loss or damage will be treated as one Default. + + Circumstances may arise where, because of a Default by IBM in the performance of its obligations under this Agreement or other liability, Licensee is entitled to recover damages from IBM. Regardless of the basis on which Licensee is entitled to claim damages from IBM and except as expressly required by law without the possibility of contractual waiver, IBM's entire liability for any one Default will not exceed the amount of any direct damages, to the extent actually suffered by Licensee as an immediate and direct consequence of the default, up to the greater of (1) 500,000 euro (or the equivalent in local currency) or (2) 125% of the charges (if the Program is subject to fixed term charges, up to 12 months' charges) for the Program that is the subject of the claim. Notwithstanding the foregoing, the amount of any damages for bodily injury (including death) and damage to real property and tangible personal property for which IBM is legally liable is not subject to such limitation. + + 10.2 Items for Which IBM is Not Liable + + The following replaces Items 10.2b and 10.2c: + + b. special, incidental, exemplary, or indirect damages or consequential damages; or + + c. wasted management time or lost profits, business, revenue, goodwill, or anticipated savings. + + Z125-3301-14 (07/2011) json: ibm-data-server-2011.json - yml: ibm-data-server-2011.yml + yaml: ibm-data-server-2011.yml html: ibm-data-server-2011.html - text: ibm-data-server-2011.LICENSE + license: ibm-data-server-2011.LICENSE - license_key: ibm-developerworks-community-download + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ibm-developerworks-community other_spdx_license_keys: - LicenseRef-scancode-ibm-developerworks-community-download is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Download of Content Agreement + The following are terms of a legal downloader agreement (the "Agreement") regarding Your download of Content (as defined below) from this Website. IBM may change these terms of use and other requirements and guidelines for use of this Website at its sole discretion. This Website may contain other proprietary notices and copyright information (http://www.ibm.com/developerworks/exchange), the terms of which must be observed and followed. Any use of the Content in violation of this Agreement is strictly prohibited. + + "Content" includes, but is not limited to software, text and/or speech files, code, associated materials, media and /or documentation that You download from this Website. The Content may be provided by IBM or third-parties. IBM-Content is owned by IBM and is copyrighted and licensed, not sold. Third-party Content is owned by its respective owner and is licensed by the third party directly to You. IBM's decision to permit posting of third-party Content does not constitute an express or implied license from IBM to You or a recommendation or endorsement by IBM of any particular product, service, company or technology. + + The party providing the Content (the "Provider") grants You a nonexclusive, worldwide, irrevocable, royalty-free, copyright license to edit, copy, reproduce, publish, publicly display and/or perform, format, modify and/or make derivative works of, translate, re-arrange, and distribute the Content or any portions thereof and to sublicense any or all such rights and to permit sublicensees to further sublicense such rights, for both commercial and non-commercial use, provided You abide by the terms of this Agreement. You understand that no assurances are provided that the Content does not infringe the intellectual property rights of any other entity. Neither IBM nor the provider of the Content grants a patent license of any kind, whether expressed or implied or by estoppel. As a condition of exercising the rights and licenses granted under this Agreement, You assume sole responsibility to obtain any other intellectual property rights needed. + + The Provider of the Content is the party that submitted the Content for Posting and who represents and warrants that they own all of the Content, (or have obtained all written releases, authorizations and licenses from any other owner(s) necessary to grant IBM and downloaders this license with respect to portions of the Content not owned by the Provider). All information provided on or through this Website may be changed or updated without notice. You understand that IBM has no obligation to check information and/or Content on the Website and that the information and/or Content provided on this Web site may contain technical inaccuracies or typographical errors. + + IBM may, in its sole discretion, discontinue the Website, any service provided on or through the Website, as well as limit or discontinue access to any Content posted on the Website for any reason without notice. IBM may terminate this Agreement and Your rights to access, use and download Content from the Website at any time, with or without cause, immediately and without notice. + + ALL INFORMATION AND CONTENT IS PROVIDED ON AN "AS IS" BASIS. IBM MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, CONCERNING USE OF THE WEBSITE, THE CONTENT, OR THE COMPLETENESS OR ACCURACY OF THE CONTENT OR INFORMATION OBTAINED FROM THE WEBSITE. IBM SPECIFICALLY DISCLAIMS ALL WARRANTIES WITH REGARD TO THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IBM DOES NOT WARRANT UNINTERRUPTED OR ERROR-FREE OPERATION OF ANY CONTENT. IBM IS NOT RESPONSIBLE FOR THE RESULTS OBTAINED FROM THE USE OF THE CONTENT OR INFORMATION OBTAINED FROM THE WEBSITE. + + LIMITATION OF LIABILITY. IN NO EVENT WILL IBM BE LIABLE TO ANY PARTY FOR ANY DIRECT, INDIRECT, SPECIAL OR OTHER CONSEQUENTIAL DAMAGES FOR ANY USE OF THIS WEBSITE, THE USE OF CONTENT FROM THIS WEBSITE, OR ON ANY OTHER HYPER LINKED WEB SITE, INCLUDING, WITHOUT LIMITATION, ANY LOST PROFITS, BUSINESS INTERRUPTION, LOSS OF PROGRAMS OR OTHER DATA ON YOUR INFORMATION HANDLING SYSTEM OR OTHERWISE, EVEN IF IBM IS EXPRESSLY ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + The laws of the State of New York, USA govern this Agreement, without reference to conflict of law principles. The "United Nations Convention on International Sale of Goods" does not apply. This Agreement may not be assigned by You. The parties agree to waive their right to a trial by jury. + + This Agreement is the complete and exclusive agreement between the parties and supersedes all prior agreements, oral or written, and all other communications relating to the subject matter hereof. For clarification, it is understood and You agree, that any additional agreement or license terms that may accompany the Content is invalid, void, and non-enforceable to any downloader of this Content including IBM. + + If any section of this Agreement is found by competent authority to be invalid, illegal or unenforceable in any respect for any reason, the validity, legality and enforceability of any such section in every other respect and the remainder of this Agreement shall continue in effect. json: ibm-developerworks-community-download.json - yml: ibm-developerworks-community-download.yml + yaml: ibm-developerworks-community-download.yml html: ibm-developerworks-community-download.html - text: ibm-developerworks-community-download.LICENSE + license: ibm-developerworks-community-download.LICENSE - license_key: ibm-dhcp + category: Permissive spdx_license_key: LicenseRef-scancode-ibm-dhcp other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + International Business Machines, Inc. (hereinafter called IBM) grants + permission under its copyrights to use, copy, modify, and distribute this + Software with or without fee, provided that the above copyright notice and + all paragraphs of this notice appear in all copies, and that the name of IBM + not be used in connection with the marketing of any product incorporating + the Software or modifications thereof, without specific, written prior + permission. + + To the extent it has a right to do so, IBM grants an immunity from suit + under its patents, if any, for the use, sale or manufacture of products to + the extent that such products are used for performing Domain Name System + dynamic updates in TCP/IP networks by means of the Software. No immunity is + granted for any product per se or for any other function of any product. + + THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, + INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, + DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING + OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN + IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. json: ibm-dhcp.json - yml: ibm-dhcp.yml + yaml: ibm-dhcp.yml html: ibm-dhcp.html - text: ibm-dhcp.LICENSE + license: ibm-dhcp.LICENSE - license_key: ibm-icu + category: Permissive spdx_license_key: LicenseRef-scancode-ibm-icu other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: " ICU License - ICU 1.8.1 and later\n\nCOPYRIGHT AND PERMISSION NOTICE\n\nCopyright\ + \ (c) 1995-2014 International Business Machines Corporation and others\n\nAll rights reserved.\n\ + \nPermission 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.\n\nTHE 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.\n\nExcept 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.\n\nAll trademarks and registered trademarks mentioned herein are the property\ + \ of their respective owners.\n\n\nThird-Party Software Licenses\nThis section contains\ + \ third-party software notices and/or additional terms for licensed third-party software\ + \ components included within ICU libraries.\n\n1. Unicode Data Files and Software\nCOPYRIGHT\ + \ AND PERMISSION NOTICE\n\nCopyright © 1991-2014 Unicode, Inc. All rights reserved.\nDistributed\ + \ under the Terms of Use in \nhttp://www.unicode.org/copyright.html.\n\nPermission is hereby\ + \ granted, free of charge, to any person obtaining\na copy of the Unicode data files and\ + \ any associated documentation\n(the \"Data Files\") or Unicode software and any associated\ + \ documentation\n(the \"Software\") to deal in the Data Files or Software\nwithout restriction,\ + \ including without limitation the rights to use,\ncopy, modify, merge, publish, distribute,\ + \ and/or sell copies of\nthe Data Files or Software, and to permit persons to whom the Data\ + \ Files\nor Software are furnished to do so, provided that\n(a) this copyright and permission\ + \ notice appear with all copies \nof the Data Files or Software,\n(b) this copyright and\ + \ permission notice appear in associated \ndocumentation, and\n(c) there is clear notice\ + \ in each modified Data File or in the Software\nas well as in the documentation associated\ + \ with the Data File(s) or\nSoftware that the data or software has been modified.\n\nTHE\ + \ DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF\nANY KIND, EXPRESS\ + \ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR\ + \ A PARTICULAR PURPOSE AND\nNONINFRINGEMENT OF THIRD PARTY RIGHTS.\nIN NO EVENT SHALL THE\ + \ COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS\nNOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL\ + \ INDIRECT OR CONSEQUENTIAL\nDAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,\n\ + DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION,\ + \ ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THE DATA FILES OR SOFTWARE.\n\ + \nExcept as contained in this notice, the name of a copyright holder\nshall not be used\ + \ in advertising or otherwise to promote the sale,\nuse or other dealings in these Data\ + \ Files or Software without prior\nwritten authorization of the copyright holder.\n\n\n\ + 2. Chinese/Japanese Word Break Dictionary Data (cjdict.txt)\n # The Google Chrome software\ + \ developed by Google is licensed under the BSD license. Other software included in this\ + \ distribution is provided under other licenses, as set forth below.\n #\t\n #\tThe BSD\ + \ License\n #\thttp://opensource.org/licenses/bsd-license.php \n #\tCopyright (C) 2006-2008,\ + \ Google Inc.\n #\t\n #\tAll rights reserved.\n #\t\n #\tRedistribution and use in source\ + \ and binary forms, with or without modification, are permitted provided that the following\ + \ conditions are met:\n #\t\n #\tRedistributions of source code must retain the above copyright\ + \ notice, this list of conditions and the following disclaimer.\n #\tRedistributions 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.\n\ + \ #\tNeither the name of Google Inc. nor the names of its contributors may be used to endorse\ + \ or promote products derived from this software without specific prior written permission.\n\ + \ #\t \n #\t\n #\tTHIS 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.\n #\t\n #\t \ + \ \n #\tThe word list in cjdict.txt are generated\ + \ by combining three word lists listed\n #\tbelow with further processing for compound word\ + \ breaking. The frequency is generated\n #\twith an iterative training against Google web\ + \ corpora. \n #\t\n #\t* Libtabe (Chinese)\n #\t - https://sourceforge.net/project/?group_id=1519\n\ + \ #\t - Its license terms and conditions are shown below.\n #\t\n #\t* IPADIC (Japanese)\n\ + \ #\t - http://chasen.aist-nara.ac.jp/chasen/distribution.html\n #\t - Its license terms\ + \ and conditions are shown below.\n #\t\n #\t---------COPYING.libtabe ---- BEGIN--------------------\n\ + \ #\t\n #\t/*\n #\t * Copyrighy (c) 1999 TaBE Project.\n #\t * Copyright (c) 1999 Pai-Hsiang\ + \ Hsiao.\n #\t * All rights reserved.\n #\t *\n #\t * Redistribution and use in source and\ + \ binary forms, with or without\n #\t * modification, are permitted provided that the following\ + \ conditions\n #\t * are met:\n #\t *\n #\t * . Redistributions of source code must retain\ + \ the above copyright\n #\t * notice, this list of conditions and the following disclaimer.\n\ + \ #\t * . Redistributions in binary form must reproduce the above copyright\n #\t * notice,\ + \ this list of conditions and the following disclaimer in\n #\t * the documentation and/or\ + \ other materials provided with the\n #\t * distribution.\n #\t * . Neither the name of\ + \ the TaBE Project nor the names of its\n #\t * contributors may be used to endorse or\ + \ promote products derived\n #\t * from this software without specific prior written permission.\n\ + \ #\t *\n #\t * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n #\t\ + \ * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n #\t * LIMITED\ + \ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\n #\t * FOR A PARTICULAR PURPOSE\ + \ ARE DISCLAIMED. IN NO EVENT SHALL THE\n #\t * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY\ + \ DIRECT, INDIRECT,\n #\t * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n #\t\ + \ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n #\t * SERVICES;\ + \ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n #\t * HOWEVER CAUSED AND ON\ + \ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n #\t * STRICT LIABILITY, OR TORT (INCLUDING\ + \ NEGLIGENCE OR OTHERWISE)\n #\t * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\ + \ IF ADVISED\n #\t * OF THE POSSIBILITY OF SUCH DAMAGE.\n #\t */\n #\t\n #\t/*\n #\t * Copyright\ + \ (c) 1999 Computer Systems and Communication Lab,\n #\t * Institute\ + \ of Information Science, Academia Sinica.\n #\t * All rights reserved.\n #\t *\n #\t *\ + \ Redistribution and use in source and binary forms, with or without\n #\t * modification,\ + \ are permitted provided that the following conditions\n #\t * are met:\n #\t *\n #\t *\ + \ . Redistributions of source code must retain the above copyright\n #\t * notice, this\ + \ list of conditions and the following disclaimer.\n #\t * . Redistributions in binary form\ + \ must reproduce the above copyright\n #\t * notice, this list of conditions and the following\ + \ disclaimer in\n #\t * the documentation and/or other materials provided with the\n #\t\ + \ * distribution.\n #\t * . Neither the name of the Computer Systems and Communication\ + \ Lab\n #\t * nor the names of its contributors may be used to endorse or\n #\t * promote\ + \ products derived from this software without specific\n #\t * prior written permission.\n\ + \ #\t *\n #\t * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n #\t\ + \ * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n #\t * LIMITED\ + \ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\n #\t * FOR A PARTICULAR PURPOSE\ + \ ARE DISCLAIMED. IN NO EVENT SHALL THE\n #\t * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY\ + \ DIRECT, INDIRECT,\n #\t * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n #\t\ + \ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n #\t * SERVICES;\ + \ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n #\t * HOWEVER CAUSED AND ON\ + \ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n #\t * STRICT LIABILITY, OR TORT (INCLUDING\ + \ NEGLIGENCE OR OTHERWISE)\n #\t * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\ + \ IF ADVISED\n #\t * OF THE POSSIBILITY OF SUCH DAMAGE.\n #\t */\n #\t\n #\tCopyright 1996\ + \ Chih-Hao Tsai @ Beckman Institute, University of Illinois\n #\tc-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4\n\ + \ #\t\n #\t---------------COPYING.libtabe-----END------------------------------------\n\ + \ #\t\n #\t\n #\t---------------COPYING.ipadic-----BEGIN------------------------------------\n\ + \ #\t\n #\tCopyright 2000, 2001, 2002, 2003 Nara Institute of Science\n #\tand Technology.\ + \ All Rights Reserved.\n #\t\n #\tUse, reproduction, and distribution of this software\ + \ is permitted.\n #\tAny copy of this software, whether in its original form or modified,\n\ + \ #\tmust include both the above copyright notice and the following\n #\tparagraphs.\n #\t\ + \n #\tNara Institute of Science and Technology (NAIST),\n #\tthe copyright holders, disclaims\ + \ all warranties with regard to this\n #\tsoftware, including all implied warranties of\ + \ merchantability and\n #\tfitness, in no event shall NAIST be liable for\n #\tany special,\ + \ indirect or consequential damages or any damages\n #\twhatsoever resulting from loss of\ + \ use, data or profits, whether in an\n #\taction of contract, negligence or other tortuous\ + \ action, arising out\n #\tof or in connection with the use or performance of this software.\n\ + \ #\t\n #\tA large portion of the dictionary entries\n #\toriginate from ICOT Free Software.\ + \ The following conditions for ICOT\n #\tFree Software applies to the current dictionary\ + \ as well.\n #\t\n #\tEach User may also freely distribute the Program, whether in its\n\ + \ #\toriginal form or modified, to any third party or parties, PROVIDED\n #\tthat the provisions\ + \ of Section 3 (\"NO WARRANTY\") will ALWAYS appear\n #\ton, or be attached to, the Program,\ + \ which is distributed substantially\n #\tin the same form as set out herein and that such\ + \ intended\n #\tdistribution, if actually made, will neither violate or otherwise\n #\t\ + contravene any of the laws and regulations of the countries having\n #\tjurisdiction over\ + \ the User or the intended distribution itself.\n #\t\n #\tNO WARRANTY\n #\t\n #\tThe program\ + \ was produced on an experimental basis in the course of the\n #\tresearch and development\ + \ conducted during the project and is provided\n #\tto users as so produced on an experimental\ + \ basis. Accordingly, the\n #\tprogram is provided without any warranty whatsoever, whether\ + \ express,\n #\timplied, statutory or otherwise. The term \"warranty\" used herein\n #\t\ + includes, but is not limited to, any warranty of the quality,\n #\tperformance, merchantability\ + \ and fitness for a particular purpose of\n #\tthe program and the nonexistence of any infringement\ + \ or violation of\n #\tany right of any third party.\n #\t\n #\tEach user of the program\ + \ will agree and understand, and be deemed to\n #\thave agreed and understood, that there\ + \ is no warranty whatsoever for\n #\tthe program and, accordingly, the entire risk arising\ + \ from or\n #\totherwise connected with the program is assumed by the user.\n #\t\n #\t\ + Therefore, neither ICOT, the copyright holder, or any other\n #\torganization that participated\ + \ in or was otherwise related to the\n #\tdevelopment of the program and their respective\ + \ officials, directors,\n #\tofficers and other employees shall be held liable for any and\ + \ all\n #\tdamages, including, without limitation, general, special, incidental\n #\tand\ + \ consequential damages, arising out of or otherwise in connection\n #\twith the use or\ + \ inability to use the program or any product, material\n #\tor result produced or otherwise\ + \ obtained by using the program,\n #\tregardless of whether they have been advised of, or\ + \ otherwise had\n #\tknowledge of, the possibility of such damages at any time during the\n\ + \ #\tproject or thereafter. Each user will be deemed to have agreed to the\n #\tforegoing\ + \ by his or her commencement of use of the program. The term\n #\t\"use\" as used herein\ + \ includes, but is not limited to, the use,\n #\tmodification, copying and distribution\ + \ of the program and the\n #\tproduction of secondary products from the program.\n #\t\n\ + \ #\tIn the case where the program, whether in its original form or\n #\tmodified, was distributed\ + \ or delivered to or received by a user from\n #\tany person, organization or entity other\ + \ than ICOT, unless it makes or\n #\tgrants independently of ICOT any specific warranty\ + \ to the user in\n #\twriting, such person, organization or entity, will also be exempted\n\ + \ #\tfrom and not be held liable to the user for any such damages as noted\n #\tabove as\ + \ far as the program is concerned.\n #\t\n #\t---------------COPYING.ipadic-----END------------------------------------\n\ + \n\n3. Lao Word Break Dictionary Data (laodict.txt)\n #\tCopyright (c) 2013 International\ + \ Business Machines Corporation\n #\tand others. All Rights Reserved.\n #\n #\tProject:\ + \ http://code.google.com/p/lao-dictionary/\n #\tDictionary: http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt\n\ + \ #\tLicense: http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt\n #\t\ + \ (copied below)\n #\n #\tThis file is derived from the above dictionary, with\ + \ slight modifications.\n #\t--------------------------------------------------------------------------------\n\ + \ #\tCopyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell.\n #\tAll rights reserved.\n\ + \ #\n #\tRedistribution and use in source and binary forms, with or without modification,\n\ + \ #\tare permitted provided that the following conditions are met:\n #\n #\t\tRedistributions\ + \ of source code must retain the above copyright notice, this\n #\t\tlist of conditions\ + \ and the following disclaimer. Redistributions in binary\n #\t\tform must reproduce the\ + \ above copyright notice, this list of conditions and\n #\t\tthe following disclaimer in\ + \ the documentation and/or other materials\n #\t\tprovided with the distribution.\n #\n\ + \ #\tTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n\ + \ #\tANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n #\t\ + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n #\tDISCLAIMED.\ + \ IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\n #\tANY DIRECT,\ + \ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n #\t(INCLUDING, BUT\ + \ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n #\tLOSS OF USE, DATA, OR\ + \ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\n #\tANY THEORY OF LIABILITY,\ + \ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n #\t(INCLUDING NEGLIGENCE OR OTHERWISE)\ + \ ARISING IN ANY WAY OUT OF THE USE OF THIS\n #\tSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGE.\n #\t--------------------------------------------------------------------------------\n\ + \n\n4. Burmese Word Break Dictionary Data (burmesedict.txt)\n #\tCopyright (c) 2014 International\ + \ Business Machines Corporation\n #\tand others. All Rights Reserved.\n #\n #\tThis list\ + \ is part of a project hosted at:\n #\t github.com/kanyawtech/myanmar-karen-word-lists\n\ + \ #\n #\t--------------------------------------------------------------------------------\n\ + \ #\tCopyright (c) 2013, LeRoy Benjamin Sharon\n #\tAll rights reserved.\n #\n #\tRedistribution\ + \ and use in source and binary forms, with or without modification,\n #\tare permitted provided\ + \ that the following conditions are met:\n #\n #\t Redistributions of source code must\ + \ retain the above copyright notice, this\n #\t list of conditions and the following disclaimer.\n\ + \ #\n #\t Redistributions in binary form must reproduce the above copyright notice, this\n\ + \ #\t list of conditions and the following disclaimer in the documentation and/or\n #\t\ + \ other materials provided with the distribution.\n #\n #\t Neither the name Myanmar Karen\ + \ Word Lists, nor the names of its\n #\t contributors may be used to endorse or promote\ + \ products derived from\n #\t this software without specific prior written permission.\n\ + \ #\n #\tTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n\ + \ #\tANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n #\t\ + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n #\tDISCLAIMED.\ + \ IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\n #\tANY DIRECT,\ + \ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n #\t(INCLUDING, BUT\ + \ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n #\tLOSS OF USE, DATA, OR\ + \ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\n #\tANY THEORY OF LIABILITY,\ + \ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n #\t(INCLUDING NEGLIGENCE OR OTHERWISE)\ + \ ARISING IN ANY WAY OUT OF THE USE OF THIS\n #\tSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGE.\n #\t--------------------------------------------------------------------------------\n\ + \n\n5. Time Zone Database\nICU uses the public domain data and code derived from Time Zone\ + \ Database for its time zone support. The ownership of the TZ database is explained in BCP\ + \ 175: Procedure for Maintaining the Time Zone Database section 7.\n7. Database Ownership\n\ + \n The TZ database itself is not an IETF Contribution or an IETF\n document. Rather\ + \ it is a pre-existing and regularly updated work\n that is in the public domain, and\ + \ is intended to remain in the public\n domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979]\ + \ do not apply\n to the TZ Database or contributions that individuals make to it.\n \ + \ Should any claims be made and substantiated against the TZ Database,\n the organization\ + \ that is providing the IANA Considerations defined in\n this RFC, under the memorandum\ + \ of understanding with the IETF,\n currently ICANN, may act in accordance with all competent\ + \ court\n orders. No ownership claims will be made by ICANN or the IETF Trust\n on\ + \ the database or the code. Any person making a contribution to the\n database or code\ + \ waives all rights to future claims in that\n contribution or in the TZ Database." json: ibm-icu.json - yml: ibm-icu.yml + yaml: ibm-icu.yml html: ibm-icu.html - text: ibm-icu.LICENSE + license: ibm-icu.LICENSE - license_key: ibm-java-portlet-spec-2.0 + category: Permissive spdx_license_key: LicenseRef-scancode-ibm-java-portlet-spec-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + IBM Java Portlet Specification 2.0 License + + Java(TM) Portlet Specification ("Specification") Version: 2.0 + + Status: Final, Specification Lead: IBM Corp. + + Copyright 2008 IBM Corp. All rights reserved. + + IBM Corporation (the "Spec Lead"), for the JSR 286 specification (the "Specification"), hereby grants permission to copy and display the Specification, in any medium without fee or royalty, provided that you include the following on ALL copies, or portions thereof, that you make: + + 1. A link or URL to the Specification at this location: http://www.jcp.org/en/jsr/detail?id=286 + 2. The copyright notice as shown herein. + 3. The Spec Lead commits to grant a perpetual, non-exclusive, worldwide, non sub-licensable, non-transferable, fully paid up license, under royalty-free and other reasonable and non-discriminatory terms and conditions, to certain of their respective patent claims that the Spec Lead deems necessary to implement required portions of the Specification, provided a reciprocal license is granted. + + THE SPECIFICATION IS PROVIDED "AS IS," AND THE SPEC LEAD AND ANY OTHER AUTHORS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE SPECIFICATION 25 ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. THE SPEC LEAD AND ANY OTHER AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF 30 ANY USE OF THE SPECIFICATION OR THE PERFORMANCE OR IMPLEMENTATION OF THE CONTENTS THEREOF. + + The name and trademarks of the Spec Lead or any other Authors may NOT be used in any manner, including advertising or publicity pertaining to the Specification or its contents without specific, written prior permission. Title to copyright in the Specification will at all times remain with the Authors. + + No other rights are granted by implication, estoppel or otherwise. json: ibm-java-portlet-spec-2.0.json - yml: ibm-java-portlet-spec-2.0.yml + yaml: ibm-java-portlet-spec-2.0.yml html: ibm-java-portlet-spec-2.0.html - text: ibm-java-portlet-spec-2.0.LICENSE + license: ibm-java-portlet-spec-2.0.LICENSE - license_key: ibm-jre + category: Commercial spdx_license_key: LicenseRef-scancode-ibm-jre other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "International License Agreement for Non-Warranted Programs \n\nPart 1 - General Terms\ + \ \n\nBY DOWNLOADING, INSTALLING, COPYING, ACCESSING, OR USING THE PROGRAM YOU AGREE TO\ + \ THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCEPTING THESE TERMS ON BEHALF OF ANOTHER PERSON\ + \ OR A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE FULL AUTHORITY\ + \ TO BIND THAT PERSON, COMPANY, OR LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT AGREE TO THESE\ + \ TERMS, \n\n- DO NOT DOWNLOAD, INSTALL, COPY, ACCESS, OR USE THE PROGRAM; AND \n\n- PROMPTLY\ + \ RETURN THE PROGRAM AND PROOF OF ENTITLEMENT TO THE PARTY FROM WHOM YOU ACQUIRED IT TO\ + \ OBTAIN A REFUND OF THE AMOUNT YOU PAID. IF YOU DOWNLOADED THE PROGRAM, CONTACT THE PARTY\ + \ FROM WHOM YOU ACQUIRED IT. \n\n\"IBM\" is International Business Machines Corporation\ + \ or one of its subsidiaries. \n\n\"License Information\" (\"LI\") is a document that provides\ + \ information specific to a Program. The Program's LI is available at http://www.ibm.com/software/sla/\ + \ . The LI may also be found in a file in the Program's directory, by the use of a system\ + \ command, or as a booklet which accompanies the Program. \n\n\"Program\" is the following,\ + \ including the original and all whole or partial copies: 1) machine-readable instructions\ + \ and data, 2) components, 3) audio-visual content (such as images, text, recordings, or\ + \ pictures), 4) related licensed materials, and 5) license use documents or keys, and documentation.\ + \ \n\nA \"Proof of Entitlement\" (\"PoE\") is evidence of Your authorization to use a Program\ + \ at a specified level. That level may be measured, for example, by the number of processors\ + \ or users. The PoE is also evidence of Your eligibility for future upgrade prices, if any,\ + \ and potential special or promotional opportunities. If IBM does not provide You with a\ + \ PoE, then IBM may accept the original paid sales receipt or other sales record from the\ + \ party (either IBM or its reseller) from whom You acquired the Program, provided that it\ + \ specifies the name of the Program and the usage level acquired. \n\n\"You\" and \"Your\"\ + \ refer either to an individual person or to a single legal entity. \n\nThis Agreement includes\ + \ Part 1 - General Terms, Part 2 - Country-unique Terms (if any), License Information, and\ + \ Proof of Entitlement and is the complete agreement between You and IBM regarding the use\ + \ of the Program. It replaces any prior oral or written communications between You and IBM\ + \ concerning Your use of the Program. The terms of Part 2 and License Information may replace\ + \ or modify those of Part 1. To the extent there is a conflict between the terms of this\ + \ Agreement and those of the IBM International Passport Advantage Agreement, the terms of\ + \ the latter agreement prevail. \n\n1. Entitlement \n\nLicense \n\nThe Program is owned\ + \ by IBM or an IBM supplier, and is copyrighted and licensed, not sold. \n\nIBM grants You\ + \ a nonexclusive license to use the Program when You lawfully acquire it. \n\nYou may 1)\ + \ use the Program up to the level of use specified in the PoE and 2) make and install copies,\ + \ including a backup copy, to support such use. The terms of this license apply to each\ + \ copy You make. You will reproduce all copyright notices and all other legends of ownership\ + \ on each copy, or partial copy, of the Program. \n\nIf You acquire the Program as a program\ + \ upgrade, after You install the upgrade You may not use the Program from which You upgraded\ + \ or transfer it to another party. \n\nYou will ensure that anyone who uses the Program\ + \ (accessed either locally or remotely) does so only for Your authorized use and complies\ + \ with the terms of this Agreement. \n\nYou may not 1) use, copy, modify, or distribute\ + \ the Program except as provided in this Agreement; 2) reverse assemble, reverse compile,\ + \ or otherwise translate the Program except as specifically permitted by law without the\ + \ possibility of contractual waiver; or 3) sublicense, rent, or lease the Program. \n\n\ + IBM may terminate Your license if You fail to comply with the terms of this Agreement. If\ + \ IBM does so, You must destroy all copies of the Program and its PoE. \n\nMoney-back Guarantee\ + \ \n\nIf for any reason You are dissatisfied with the Program and You are the original licensee,\ + \ You may obtain a refund of the amount You paid for it, if within 30 days of Your invoice\ + \ date You return the Program and its PoE to the party from whom You obtained it. If You\ + \ downloaded the Program, You may contact the party from whom You acquired it for instructions\ + \ on how to obtain the refund. \n\nProgram Transfer \n\nYou may transfer a Program and all\ + \ of Your license rights and obligations to another party only if that party agrees to the\ + \ terms of this Agreement. When You transfer the Program, You must also transfer a copy\ + \ of this Agreement, including the Program's PoE. After the transfer, You may not use the\ + \ Program. \n\n2. Charges \n\nThe amount payable for a Program license is a one-time charge.\ + \ \n\nOne-time charges are based on the level of use acquired which is specified in the\ + \ PoE. IBM does not give credits or refunds for charges already due or paid, except as specified\ + \ elsewhere in this Agreement. \n\nIf You wish to increase the level of use, notify IBM\ + \ or the party from whom You acquired it and pay any applicable charges. \n\nIf any authority\ + \ imposes a duty, tax, levy or fee, excluding those based on IBM's net income, upon the\ + \ Program, then You agree to pay the amount specified or supply exemption documentation.\ + \ You are responsible for any personal property taxes for the Program from the date that\ + \ You acquire it. \n\n3. No Warranty \n\nSUBJECT TO ANY STATUTORY WARRANTIES WHICH CAN NOT\ + \ BE EXCLUDED, IBM MAKES NO WARRANTIES OR CONDITIONS EITHER EXPRESS OR IMPLIED, INCLUDING\ + \ BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR\ + \ A PARTICULAR PURPOSE, AND NON-INFRINGEMENT, REGARDING THE PROGRAM OR TECHNICAL SUPPORT,\ + \ IF ANY. \n\nThe exclusion also applies to any of IBM's Program developers and suppliers.\ + \ \n\nManufacturers, suppliers, or publishers of non-IBM Programs may provide their own\ + \ warranties. \n\nIBM does not provide technical support, unless IBM specifies otherwise.\ + \ \n\n4. Limitation of Liability \n\nCircumstances may arise where, because of a default\ + \ on IBM's part or other liability, You are entitled to recover damages from IBM. In each\ + \ such instance, regardless of the basis on which You may be entitled to claim damages from\ + \ IBM, (including fundamental breach, negligence, misrepresentation, or other contract or\ + \ tort claim), IBM is liable for no more than 1) damages for bodily injury (including death)\ + \ and damage to real property and tangible personal property and 2) the amount of any other\ + \ actual direct damages up to the charges for the Program that is the subject of the claim.\ + \ \n\nThis limitation of liability also applies to IBM's Program developers and suppliers.\ + \ It is the maximum for which they and IBM are collectively responsible. \n\nUNDER NO CIRCUMSTANCES\ + \ IS IBM, ITS PROGRAM DEVELOPERS OR SUPPLIERS LIABLE FOR ANY OF THE FOLLOWING, EVEN IF INFORMED\ + \ OF THEIR POSSIBILITY: \n\n1. LOSS OF, OR DAMAGE TO, DATA; \n\n2. SPECIAL, INCIDENTAL,\ + \ OR INDIRECT DAMAGES, OR FOR ANY ECONOMIC CONSEQUENTIAL DAMAGES; OR \n\n3. LOST PROFITS,\ + \ BUSINESS, REVENUE, GOODWILL, OR ANTICIPATED SAVINGS. \n\nSOME JURISDICTIONS DO NOT ALLOW\ + \ THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE LIMITATION\ + \ OR EXCLUSION MAY NOT APPLY TO YOU. \n\n5. General \n\n1. Nothing in this Agreement affects\ + \ any statutory rights of consumers that cannot be waived or limited by contract. \n\n2.\ + \ In the event that any provision of this Agreement is held to be invalid or unenforceable,\ + \ the remaining provisions of this Agreement remain in full force and effect. \n\n3. You\ + \ agree to comply with all applicable export and import laws and regulations. \n\n4. You\ + \ agree to allow IBM to store and use Your contact information, including names, phone numbers,\ + \ and e-mail addresses, anywhere they do business. Such information will be processed and\ + \ used in connection with our business relationship, and may be provided to contractors,\ + \ Business Partners, and assignees of IBM for uses consistent with their collective business\ + \ activities, including communicating with You (for example, for processing orders, for\ + \ promotions, and for market research). \n\n5. Neither You nor IBM will bring a legal action\ + \ under this Agreement more than two years after the cause of action arose unless otherwise\ + \ provided by local law without the possibility of contractual waiver or limitation. \n\n\ + 6. Neither You nor IBM is responsible for failure to fulfill any obligations due to causes\ + \ beyond its control. \n\n7. This Agreement will not create any right or cause of action\ + \ for any third party, nor will IBM be responsible for any third party claims against You\ + \ except, as permitted by the Limitation of Liability section above, for bodily injury (including\ + \ death) or damage to real or tangible personal property for which IBM is legally liable.\ + \ \n\n6. Governing Law, Jurisdiction, and Arbitration \n\nGoverning Law \n\nBoth You and\ + \ IBM consent to the application of the laws of the country in which You acquired the Program\ + \ license to govern, interpret, and enforce all of Your and IBM's rights, duties, and obligations\ + \ arising from, or relating in any manner to, the subject matter of this Agreement, without\ + \ regard to conflict of law principles. \n\nThe United Nations Convention on Contracts for\ + \ the International Sale of Goods does not apply. \n\nJurisdiction \n\nAll of our rights,\ + \ duties, and obligations are subject to the courts of the country in which You acquired\ + \ the Program license. \n\nPart 2 - Country-unique Terms \n\nAMERICAS \n\nARGENTINA: Governing\ + \ Law, Jurisdiction, and Arbitration (Section 6): The following exception is added to this\ + \ section: \n\nAny litigation arising from this Agreement will be settled exclusively by\ + \ the Ordinary Commercial Court of the city of Buenos Aires. \n\nBRAZIL: Governing Law,\ + \ Jurisdiction, and Arbitration (Section 6): The following exception is added to this section:\ + \ \n\nAny litigation arising from this Agreement will be settled exclusively by the court\ + \ of Rio de Janeiro, RJ. \n\nCANADA: General (Section 5): The following replaces item 7:\ + \ \n\n7. This Agreement will not create any right or cause of action for any third party,\ + \ nor will IBM be responsible for any third party claims against You except as permitted\ + \ by the Limitation of Liability section above for bodily injury (including death) or physical\ + \ harm to real or tangible personal property caused by IBM's negligence for which IBM is\ + \ legally liable.\" \n\nGoverning Law, Jurisdiction, and Arbitration (Section 6): The phrase\ + \ \"the laws of the country in which You acquired the Program license\" in the Governing\ + \ Law subsection is replaced by the following: \n\nthe laws in the Province of Ontario\"\ + \ \n\nPERU: Limitation of Liability (Section 4): The following is added at the end of this\ + \ section: \n\nIn accordance with Article 1328 of the Peruvian Civil Code, the limitations\ + \ and exclusions specified in this section will not apply to damages caused by IBM's willful\ + \ misconduct (\"dolo\") or gross negligence (\"culpa inexcusable\"). \n\nUNITED STATES OF\ + \ AMERICA: General (Section 5): The following is added to this section: \n\nU.S. Government\ + \ Users Restricted Rights - Use, duplication or disclosure restricted by the GSA ADP Schedule\ + \ Contract with the IBM Corporation. \n\nGoverning Law, Jurisdiction, and Arbitration (Section\ + \ 6): The phrase \"the laws of the country in which You acquired the Program license\" in\ + \ the Governing Law subsection is replaced by the following: \n\nthe laws of the State of\ + \ New York, United States of America \n\nASIA PACIFIC \n\nAUSTRALIA: No Warranty (Section\ + \ 3): The following is added: \n\nAlthough IBM specifies that there are no warranties, You\ + \ may have certain rights under the Trade Practices Act 1974 or other legislation and are\ + \ only limited to the extent permitted by the applicable legislation. \n\nLimitation of\ + \ Liability (Section 4): The following is added: \n\nWhere IBM is in breach of a condition\ + \ or warranty implied by the Trade Practices Act 1974, IBM's liability is limited to the\ + \ repair or replacement of the goods, or the supply of equivalent goods. Where that condition\ + \ or warranty relates to right to sell, quiet possession or clear title, or the goods are\ + \ of a kind ordinarily acquired for personal, domestic or household use or consumption,\ + \ then none of the limitations in this paragraph apply. \n\nGoverning Law, Jurisdiction,\ + \ and Arbitration (Section 6): The phrase \"the laws of the country in which You acquired\ + \ the Program license\" in the Governing Law subsection is replaced by the following: \n\ + \nthe laws of the State or Territory in which You acquired the Program license \n\nCAMBODIA,\ + \ LAOS, and VIETNAM: Governing Law, Jurisdiction, and Arbitration (Section 6): The phrase\ + \ \"the laws of the country in which You acquired the Program license\" in the Governing\ + \ Law subsection is replaced by the following: \n\nthe laws of the State of New York, United\ + \ States of America \n\nThe following is added to this section: \n\nArbitration \n\nDisputes\ + \ arising out of or in connection with this Agreement shall be finally settled by arbitration\ + \ which shall be held in Singapore in accordance with the Arbitration Rules of Singapore\ + \ International Arbitration Center (\"SIAC Rules\") then in effect. The arbitration award\ + \ shall be final and binding for the parties without appeal and shall be in writing and\ + \ set forth the findings of fact and the conclusions of law. \n\nThe number of arbitrators\ + \ shall be three, with each side to the dispute being entitled to appoint one arbitrator.\ + \ The two arbitrators appointed by the parties shall appoint a third arbitrator who shall\ + \ act as chairman of the proceedings. Vacancies in the post of chairman shall be filled\ + \ by the president of the SIAC. Other vacancies shall be filled by the respective nominating\ + \ party. Proceedings shall continue from the stage they were at when the vacancy occurred.\ + \ \n\nIf one of the parties refuses or otherwise fails to appoint an arbitrator within 30\ + \ days of the date the other party appoints its, the first appointed arbitrator shall be\ + \ the sole arbitrator, provided that the arbitrator was validly and properly appointed.\ + \ \n\nAll proceedings shall be conducted, including all documents presented in such proceedings,\ + \ in the English language. The English language version of this Agreement prevails over\ + \ any other language version. \n\nHONG KONG S.A.R. and MACAU S.A.R. of China: Governing\ + \ Law, Jurisdiction, and Arbitration (Section 6): The phrase \"the laws of the country in\ + \ which You acquired the Program license\" in the Governing Law subsection is replaced by\ + \ the following: \n\nthe laws of Hong Kong Special Administrative Region of China \n\nINDIA:\ + \ Limitation of Liability (Section 4): The following replaces the terms of items 1 and 2\ + \ of the first paragraph: \n\n1) liability for bodily injury (including death) or damage\ + \ to real property and tangible personal property will be limited to that caused by IBM's\ + \ negligence; and 2) as to any other actual damage arising in any situation involving nonperformance\ + \ by IBM pursuant to, or in any way related to the subject of this Agreement, IBM's liability\ + \ will be limited to the charge paid by You for the individual Program that is the subject\ + \ of the claim. \n\nGeneral (Section 5): The following replaces the terms of item 5: \n\n\ + If no suit or other legal action is brought, within three years after the cause of action\ + \ arose, in respect of any claim that either party may have against the other, the rights\ + \ of the concerned party in respect of such claim will be forfeited and the other party\ + \ will stand released from its obligations in respect of such claim. \n\nGoverning Law,\ + \ Jurisdiction, and Arbitration (Section 6): The following is added to this section: \n\n\ + Arbitration \n\nDisputes arising out of or in connection with this Agreement shall be finally\ + \ settled by arbitration which shall be held in Bangalore, India in accordance with the\ + \ laws of India then in effect. The arbitration award shall be final and binding for the\ + \ parties without appeal and shall be in writing and set forth the findings of fact and\ + \ the conclusions of law. \n\nThe number of arbitrators shall be three, with each side to\ + \ the dispute being entitled to appoint one arbitrator. The two arbitrators appointed by\ + \ the parties shall appoint a third arbitrator who shall act as chairman of the proceedings.\ + \ Vacancies in the post of chairman shall be filled by the president of the Bar Council\ + \ of India. Other vacancies shall be filled by the respective nominating party. Proceedings\ + \ shall continue from the stage they were at when the vacancy occurred. \n\nIf one of the\ + \ parties refuses or otherwise fails to appoint an arbitrator within 30 days of the date\ + \ the other party appoints its, the first appointed arbitrator shall be the sole arbitrator,\ + \ provided that the arbitrator was validly and properly appointed. \n\nAll proceedings shall\ + \ be conducted, including all documents presented in such proceedings, in the English language.\ + \ The English language version of this Agreement prevails over any other language version.\ + \ \n\nJAPAN: General (Section 5): The following is inserted after item 5: \n\nAny doubts\ + \ concerning this Agreement will be initially resolved between us in good faith and in accordance\ + \ with the principle of mutual trust. \n\nMALAYSIA: Limitation of Liability (Section 4):\ + \ The word \"SPECIAL\" in item 2 of the third paragraph is deleted: \n\nNEW ZEALAND: No\ + \ Warranty (Section 3): The following is added: \n\nAlthough IBM specifies that there are\ + \ no warranties, You may have certain rights under the Consumer Guarantees Act 1993 or other\ + \ legislation which cannot be excluded or limited. The Consumer Guarantees Act 1993 will\ + \ not apply in respect of any goods which IBM provides, if You require the goods for the\ + \ purposes of a business as defined in that Act. \n\nLimitation of Liability (Section 4):\ + \ The following is added: \n\nWhere Programs are not acquired for the purposes of a business\ + \ as defined in the Consumer Guarantees Act 1993, the limitations in this Section are subject\ + \ to the limitations in that Act. \n\nPEOPLE'S REPUBLIC OF CHINA: Charges (Section 2): The\ + \ following is added: \n\nAll banking charges incurred in the People's Republic of China\ + \ will be borne by You and those incurred outside the People's Republic of China will be\ + \ borne by IBM. \n\nGoverning Law, Jurisdiction, and Arbitration (Section 6): The phrase\ + \ \"the laws of the country in which You acquired the Program license\" in the Governing\ + \ Law subsection is replaced by the following: \n\nthe laws of the State of New York, United\ + \ States of America (except when local law requires otherwise) \n\nPHILIPPINES: Limitation\ + \ of Liability (Section 4): The following replaces the terms of item 2 of the third paragraph:\ + \ \n\n2. special (including nominal and exemplary damages), moral, incidental, or indirect\ + \ damages or for any economic consequential damages; or \n\nGoverning Law, Jurisdiction,\ + \ and Arbitration (Section 6): The following is added to this section: \n\nArbitration \n\ + \nDisputes arising out of or in connection with this Agreement shall be finally settled\ + \ by arbitration which shall be held in Metro Manila, Philippines in accordance with the\ + \ laws of the Philippines then in effect. The arbitration award shall be final and binding\ + \ for the parties without appeal and shall be in writing and set forth the findings of fact\ + \ and the conclusions of law. \n\nThe number of arbitrators shall be three, with each side\ + \ to the dispute being entitled to appoint one arbitrator. The two arbitrators appointed\ + \ by the parties shall appoint a third arbitrator who shall act as chairman of the proceedings.\ + \ Vacancies in the post of chairman shall be filled by the president of the Philippine Dispute\ + \ Resolution Center, Inc. Other vacancies shall be filled by the respective nominating party.\ + \ Proceedings shall continue from the stage they were at when the vacancy occurred. \n\n\ + If one of the parties refuses or otherwise fails to appoint an arbitrator within 30 days\ + \ of the date the other party appoints its, the first appointed arbitrator shall be the\ + \ sole arbitrator, provided that the arbitrator was validly and properly appointed. \n\n\ + All proceedings shall be conducted, including all documents presented in such proceedings,\ + \ in the English language. The English language version of this Agreement prevails over\ + \ any other language version. \n\nSINGAPORE: Limitation of Liability (Section 4): The words\ + \ \"SPECIAL\" and \"ECONOMIC\" are deleted from item 2 of the third paragraph. \n\nGeneral\ + \ (Section 5): The following replaces the terms of item 7: \n\nSubject to the rights provided\ + \ to IBM's suppliers and Program developers as provided in Section 4 above (Limitation of\ + \ Liability), a person who is not a party to this Agreement shall have no right under the\ + \ Contracts (Right of Third Parties) Act to enforce any of its terms. \n\nEUROPE, MIDDLE\ + \ EAST, AFRICA (EMEA) \n\nNo Warranty (Section 3): In the European Union, the following\ + \ is added at the beginning of this section: \n\nIn the European Union, consumers have legal\ + \ rights under applicable national legislation governing the sale of consumer goods. Such\ + \ rights are not affected by the provisions of this Section 3. \n\nLimitation of Liability\ + \ (Section 4): In Austria, Denmark, Finland, Greece, Italy, Netherlands, Norway, Portugal,\ + \ Spain, Sweden and Switzerland, the following replaces the terms of this section in its\ + \ entirety: \n\nExcept as otherwise provided by mandatory law: \n\n1. IBM's liability for\ + \ any damages and losses that may arise as a consequence of the fulfillment of its obligations\ + \ under or in connection with this agreement or due to any other cause related to this agreement\ + \ is limited to the compensation of only those damages and losses proved and actually arising\ + \ as an immediate and direct consequence of the non-fulfillment of such obligations (if\ + \ IBM is at fault) or of such cause, for a maximum amount equal to the charges You paid\ + \ for the Program. \n\nThe above limitation shall not apply to damages for bodily injuries\ + \ (including death) and damages to real property and tangible personal property for which\ + \ IBM is legally liable. \n\n2. UNDER NO CIRCUMSTANCES IS IBM, OR ANY OF ITS PROGRAM DEVELOPERS,\ + \ LIABLE FOR ANY OF THE FOLLOWING, EVEN IF INFORMED OF THEIR POSSIBILITY: 1) LOSS OF, OR\ + \ DAMAGE TO, DATA; 2) INCIDENTAL OR INDIRECT DAMAGES, OR FOR ANY ECONOMIC CONSEQUENTIAL\ + \ DAMAGES; 3) LOST PROFITS, EVEN IF THEY ARISE AS AN IMMEDIATE CONSEQUENCE OF THE EVENT\ + \ THAT GENERATED THE DAMAGES; OR 4) LOSS OF BUSINESS, REVENUE, GOODWILL, OR ANTICIPATED\ + \ SAVINGS. \n\n3. The limitation and exclusion of liability herein agreed applies not only\ + \ to the activities performed by IBM but also to the activities performed by its suppliers\ + \ and Program developers, and represents the maximum amount for which IBM as well as its\ + \ suppliers and Program developers, are collectively responsible. \n\nLimitation of Liability\ + \ (Section 4): In France and Belgium, the following replaces the terms of this section in\ + \ its entirety: \n\nExcept as otherwise provided by mandatory law: \n\n1. IBM's liability\ + \ for any damages and losses that may arise as a consequence of the fulfillment of its obligations\ + \ under or in connection with this agreement is limited to the compensation of only those\ + \ damages and losses proved and actually arising as an immediate and direct consequence\ + \ of the non-fulfillment of such obligations (if IBM is at fault), for a maximum amount\ + \ equal to the charges You paid for the Program that has caused the damages. \n\nThe above\ + \ limitation shall not apply to damages for bodily injuries (including death) and damages\ + \ to real property and tangible personal property for which IBM is legally liable. \n\n\ + 2. UNDER NO CIRCUMSTANCES IS IBM, OR ANY OF ITS PROGRAM DEVELOPERS, LIABLE FOR ANY OF THE\ + \ FOLLOWING, EVEN IF INFORMED OF THEIR POSSIBILITY: 1) LOSS OF, OR DAMAGE TO, DATA; 2) INCIDENTAL\ + \ OR INDIRECT DAMAGES, OR FOR ANY ECONOMIC CONSEQUENTIAL DAMAGES; 3) LOST PROFITS, EVEN\ + \ IF THEY ARISE AS AN IMMEDIATE CONSEQUENCE OF THE EVENT THAT GENERATED THE DAMAGES; OR\ + \ 4) LOSS OF BUSINESS, REVENUE, GOODWILL, OR ANTICIPATED SAVINGS. \n\n3. The limitation\ + \ and exclusion of liability herein agreed applies not only to the activities performed\ + \ by IBM but also to the activities performed by its suppliers and Program developers, and\ + \ represents the maximum amount for which IBM as well as its suppliers and Program developers,\ + \ are collectively responsible. \n\nGoverning Law, Jurisdiction, and Arbitration (Section\ + \ 6) \n\nGoverning Law \n\nThe phrase \"the laws of the country in which You acquired the\ + \ Program license\" is replaced by: \n1) \"the laws of Austria\" in Albania, Armenia, Azerbaijan,\ + \ Belarus, Bosnia-Herzegovina, Bulgaria, Croatia, Georgia, Hungary, Kazakhstan, Kyrgyzstan,\ + \ FYR Macedonia, Moldavia, Poland, Romania, Russia, Slovakia, Slovenia, Tajikistan, Turkmenistan,\ + \ Ukraine, Uzbekistan, and FR Yugoslavia; \n2) \"the laws of France\" in Algeria, Benin,\ + \ Burkina Faso, Cameroon, Cape Verde, Central African Republic, Chad, Comoros, Congo Republic,\ + \ Djibouti, Democratic Republic of Congo, Equatorial Guinea, French Guiana, French Polynesia,\ + \ Gabon, Gambia, Guinea, Guinea-Bissau, Ivory Coast, Lebanon, Madagascar, Mali, Mauritania,\ + \ Mauritius, Mayotte, Morocco, New Caledonia, Niger, Reunion, Senegal, Seychelles, Togo,\ + \ Tunisia, Vanuatu, and Wallis & Futuna; \n3) \"the laws of Finland\" in Estonia, Latvia,\ + \ and Lithuania; \n4) \"the laws of England\" in Angola, Bahrain, Botswana, Burundi, Egypt,\ + \ Eritrea, Ethiopia, Ghana, Jordan, Kenya, Kuwait, Liberia, Malawi, Malta, Mozambique, Nigeria,\ + \ Oman, Pakistan, Qatar, Rwanda, Sao Tome, Saudi Arabia, Sierra Leone, Somalia, Tanzania,\ + \ Uganda, United Arab Emirates, the United Kingdom, West Bank/Gaza, Yemen, Zambia, and Zimbabwe;\ + \ and \n5) \"the laws of South Africa\" in South Africa, Namibia, Lesotho and Swaziland.\ + \ \n\nJurisdiction \n\nThe following exceptions are added to this section: \n\n1) In Austria\ + \ the choice of jurisdiction for all disputes arising out of this Agreement and relating\ + \ thereto, including its existence, will be the competent court of law in Vienna, Austria\ + \ (Inner-City); \n2) in Angola, Bahrain, Botswana, Burundi, Egypt, Eritrea, Ethiopia, Ghana,\ + \ Jordan, Kenya, Kuwait, Liberia, Malawi, Malta, Mozambique, Nigeria, Oman, Pakistan, Qatar,\ + \ Rwanda, Sao Tome, Saudi Arabia, Sierra Leone, Somalia, Tanzania, Uganda, United Arab Emirates,\ + \ West Bank/Gaza, Yemen, Zambia, and Zimbabwe all disputes arising out of this Agreement\ + \ or related to its execution, including summary proceedings, will be submitted to the exclusive\ + \ jurisdiction of the English courts; \n3) in Belgium and Luxembourg, for all disputes arising\ + \ out of this Agreement or related to its interpretation or its execution, only the law\ + \ and the courts of the capital of the country in which Your registered office and/or commercial\ + \ office is located are competent; \n4) in France, Algeria, Benin, Burkina Faso, Cameroon,\ + \ Cape Verde, Central African Republic, Chad, Comoros, Congo Republic, Djibouti, Democratic\ + \ Republic of Congo, Equatorial Guinea, French Guiana, French Polynesia, Gabon, Gambia,\ + \ Guinea, Guinea-Bissau, Ivory Coast, Lebanon, Madagascar, Mali, Mauritania, Mauritius,\ + \ Mayotte, Morocco, New Caledonia, Niger, Reunion, Senegal, Seychelles, Togo, Tunisia, Vanuatu,\ + \ and Wallis & Futuna all disputes arising out of this Agreement or related to its violation\ + \ or execution, including summary proceedings, will be settled exclusively by the Commercial\ + \ Court of Paris; \n5) in Russia, all disputes arising out of or in relation to the interpretation,\ + \ the violation, the termination, the nullity of the execution of this Agreement shall be\ + \ settled by Arbitration Court of Moscow; \n6) in South Africa, Namibia, Lesotho and Swaziland,\ + \ both of us agree to submit all disputes relating to this Agreement to the jurisdiction\ + \ of the High Court in Johannesburg; \n7) in Turkey all disputes arising out of or in connection\ + \ with this Agreement shall be resolved by the Istanbul Central (Sultanahmet) Courts and\ + \ Execution Directorates of Istanbul, the Republic of Turkey; \n8) in each of the following\ + \ specified countries, any legal claim arising out of this Agreement will be brought before,\ + \ and settled exclusively by, the competent court of a) Athens for Greece, b) Tel Aviv-Jaffa\ + \ for Israel, c) Milan for Italy, d) Lisbon for Portugal, and e) Madrid for Spain; and \n\ + 9) in the United Kingdom, both of us agree to submit all disputes relating to this Agreement\ + \ to the jurisdiction of the English courts. \n\nArbitration \n\nIn Albania, Armenia, Azerbaijan,\ + \ Belarus, Bosnia-Herzegovina, Bulgaria, Croatia, Georgia, Hungary, Kazakhstan, Kyrgyzstan,\ + \ FYR Macedonia, Moldavia, Poland, Romania, Russia, Slovakia, Slovenia, Tajikistan, Turkmenistan,\ + \ Ukraine, Uzbekistan, and FR Yugoslavia all disputes arising out of this Agreement or related\ + \ to its violation, termination or nullity will be finally settled under the Rules of Arbitration\ + \ and Conciliation of the International Arbitral Center of the Federal Economic Chamber\ + \ in Vienna (Vienna Rules)" json: ibm-jre.json - yml: ibm-jre.yml + yaml: ibm-jre.yml html: ibm-jre.html - text: ibm-jre.LICENSE + license: ibm-jre.LICENSE - license_key: ibm-nwsc + category: Permissive spdx_license_key: LicenseRef-scancode-ibm-nwsc other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + IBM International License Agreement for Non-Warranted Sample Code + + Part 1 - General Terms + ----------------------------------------------------------- + PLEASE READ THIS AGREEMENT CAREFULLY BEFORE DOWNLOADING THE SAMPLE CODE. IBM WILL LICENSE THE SAMPLE CODE TO YOU ONLY IF YOU FIRST ACCEPT THE TERMS OF THIS AGREEMENT. BY DOWNLOADING THE SAMPLE CODE YOU AGREE TO THESE TERMS. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, DO NOT DOWNLOAD THE SAMPLE CODE. + + The Sample Code is authored by International Business Machines Corporation or one of its subsidiaries (IBM) or an IBM supplier, and is copyrighted and licensed, not sold. + + The term "Sample Code" means a program, or portion of a program, being distributed in its source programming language and all whole or partial copies of it. + + This Agreement includes Part 1 - General Terms and Part 2 - Country-unique Terms and is the complete agreement regarding the use of this Sample Code, and replaces any prior oral or written communications between you and IBM. The terms of Part 2 may replace or modify those of Part 1. + + 1. License + + IBM grants you a nonexclusive license to use, copy, or modify the Sample Code. You may include the Sample Code in programs for your own use or for commercial sale. + + You will ensure that anyone who uses the sample code does so only in compliance with the terms of this Agreement. + + + 2. No Warranty + + The Sample Code has not been submitted to any formal IBM test and is distributed "AS IS". Use of the Sample Code, or implementation of any techniques contained in the code, is a customer responsibility and depends on the customer's ability to evaluate and integrate the code into the customer's operational environment. While sample code may have been reviewed by IBM for accuracy in a specific situation there is no guarantee that the same or similar results will be obtained elsewhere. Customers attempting to use Sample Code in their own environments do so at their own risk. + + SUBJECT TO ANY STATUTORY WARRANTIES WHICH CAN NOT BE EXCLUDED, IBM MAKES NO WARRANTIES OR CONDITIONS EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION, THE WARRANTY OF NON-INFRINGEMENT AND THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE SAMPLE CODE. + + The exclusion also applies to any of IBM's subcontractors, suppliers, or program developers (collectively called "Suppliers"). + + 3. Limitation of Liability + + NEITHER IBM NOR ITS SUPPLIERS WILL BE LIABLE FOR ANY DIRECT OR INDIRECT DAMAGES, INCLUDING WITHOUT LIMITATION, LOST PROFITS, LOST SAVINGS, OR ANY INCIDENTAL, SPECIAL, OR OTHER ECONOMIC CONSEQUENTIAL DAMAGES, EVEN IF IBM IS INFORMED OF THEIR POSSIBILITY. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE EXCLUSION OR LIMITATION MAY NOT APPLY TO YOU. + + 4. General + + Nothing in this Agreement affects any statutory rights of consumers that cannot be waived or limited by contract. + + IBM may terminate your license if you fail to comply with the terms of this Agreement. If IBM does so, you must immediately destroy the Sample Code and all copies you made of it. + + You agree to comply with applicable export laws and regulations. + + Neither you nor IBM will bring a legal action under this Agreement more than two years after the cause of action arose unless otherwise provided by local law without the possibility of contractual waiver or limitation. + + Neither you nor IBM is responsible for failure to fulfill any obligations due to causes beyond its control. + + IBM does not provide program services or technical support, unless IBM specifies otherwise. + + The laws of the country in which you acquire the Sample Code govern this Agreement, except 1) in Australia, the laws of the State or Territory in which the transaction is performed govern this Agreement; 2) in Albania, Armenia, Belarus, Bosnia/Herzegovina, Bulgaria, Croatia, Czech Republic, Federal Republic of Yugoslavia, Georgia, Hungary, Kazakhstan, Kirghizia, Former Yugoslav Republic of Macedonia (FYROM), Moldova, Poland, Romania, Russia, Slovak Republic, Slovenia, and Ukraine, the laws of Austria govern this Agreement; 3) in the United Kingdom, all disputes relating to this Agreement will be governed by English Law and will be submitted to the exclusive jurisdiction of the English courts; 4) in Canada, the laws in the Province of Ontario govern this Agreement; and 5) in the United States and Puerto Rico, and People's Republic of China, the laws of the State of New York govern this Agreement. + + + + IBM International License Agreement for Non-Warranted Sample Code + + Part 2 - Country-unique Terms + ----------------------------------------------------------- + AUSTRALIA: No Warranty (Section 2): The following paragraph is added to this Section: + Although IBM specifies that there are no warranties, you may have certain rights under the Trade Practices Act 1974 or other legislation and are only limited to the extent permitted by the applicable legislation. + + Limitation of Liability (Section 3): The following paragraph is added to this Section: + Where IBM is in breach of a condition or warranty implied by the Trade Practices Act 1974, IBM's liability is limited to the repair or replacement of the goods, or the supply of equivalent goods. Where that condition or warranty relates to right to sell, quiet possession or clear title, or the goods are of a kind ordinarily acquired for personal, domestic or household use or consumption, then none of the limitations in this paragraph apply. + + + GERMANY: No Warranty (Section 2): The following paragraph is added to this Section: + The minimum warranty period for Sample Code is six months. + + Limitation of Liability (Section 3): The following paragraph is added to this Section: + The limitations and exclusions specified in the Agreement will not apply to damages caused by IBM with fraud or gross negligence, and for express warranty. + + + INDIA: General (Section 4 ): The following replaces the fourth paragraph of this Section: + If no suit or other legal action is brought, within two years after the cause of action arose, in respect of any claim that either party may have against the other, the rights of the concerned party in respect of such claim will be forfeited and the other party will stand released from its obligations in respect of such claim. + + + IRELAND: No Warranty (Section 2): The following paragraph is added to this Section: + Except as expressly provided in these terms and conditions, all statutory conditions, including all warranties implied, but without prejudice to the generality of the foregoing, all warranties implied by the Sale of Goods Act 1893 or the Sale of Goods and Supply of Services Act 1980 are hereby excluded. + + + ITALY: Limitation of Liability (Section 3): This Section is replaced by the following: + Unless otherwise provided by mandatory law, IBM is not liable for any damages which might arise. + + + NEW ZEALAND: No Warranty (Section 2 ): The following paragraph is added to this Section: + Although IBM specifies that there are no warranties, you may have certain rights under the Consumer Guarantees Act 1993 or other legislation which cannot be excluded or limited. The Consumer Guarantees Act 1993 will not apply in respect of any goods or services which IBM provides, if you require the goods or services for the purposes of a business as defined in that Act. + + Limitation of Liability (Section 3): The following paragraph is added to this Section: + Where Sample Code is not acquired for the purposes of a business as defined in the Consumer Guarantees Act 1993, the limitations in this Section are subject to the limitations in that Act. + + + UNITED KINGDOM: Limitation of Liability (Section 3 ): The following paragraph is added to this Section: + The limitation of liability will not apply to any breach of IBM's obligations implied by Section 12 of the Sales of Goods Act 1979 or Section 2 of the Supply of Goods and Services Act 1982. json: ibm-nwsc.json - yml: ibm-nwsc.yml + yaml: ibm-nwsc.yml html: ibm-nwsc.html - text: ibm-nwsc.LICENSE + license: ibm-nwsc.LICENSE - license_key: ibm-pibs + category: Permissive spdx_license_key: IBM-pibs other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This source code has been made available to you by IBM on an AS-IS\nbasis. Anyone\ + \ receiving this source is licensed under IBM copyrights to\nuse it in any way he or she\ + \ deems fit, including copying it, modifying\nit, compiling it, and redistributing it either\ + \ with or without\nmodifications. No license under IBM patents or patent applications is\n\ + to be implied by the copyright license.\n\nAny user of this software should understand that\ + \ IBM cannot provide\ntechnical support for this software and will not be responsible for\ + \ any\nconsequences resulting from the use of this software.\n\nAny person who transfers\ + \ this source code or any derivative work must\ninclude the IBM copyright notice, this paragraph,\ + \ and the preceding two\nparagraphs in the transferred software.\n\nCOPYRIGHT I B M \ + \ CORPORATION \nLICENSED MATERIAL - PROGRAM PROPERTY OF I B M" json: ibm-pibs.json - yml: ibm-pibs.yml + yaml: ibm-pibs.yml html: ibm-pibs.html - text: ibm-pibs.LICENSE + license: ibm-pibs.LICENSE - license_key: ibm-sample + category: Permissive spdx_license_key: LicenseRef-scancode-ibm-sample other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The sample program(s) is/are owned by International Business Machines + Corporation or one of its subsidiaries ("IBM") and is/are copyrighted and + licensed, not sold. + + You may copy, modify, and distribute this/these sample program(s) in any form + without payment to IBM, for any purpose including developing, using, marketing + or distributing programs that include or are derivative works of the sample + program(s). + + The sample program(s) is/are provided to you on an "AS IS" basis, without + warranty of any kind. IBM HEREBY EXPRESSLY DISCLAIMS ALL WARRANTIES, EITHER + EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Some jurisdictions do + not allow for the exclusion or limitation of implied warranties, so the above + limitations or exclusions may not apply to you. IBM shall not be liable for + any damages you suffer as a result of using, modifying or distributing the + sample program(s) or its/their derivatives. + + Each copy of any portion of this/these sample program(s) or any derivative + work, must include the above copyright notice and disclaimer of warranty. json: ibm-sample.json - yml: ibm-sample.yml + yaml: ibm-sample.yml html: ibm-sample.html - text: ibm-sample.LICENSE + license: ibm-sample.LICENSE - license_key: ibmpl-1.0 + category: Copyleft Limited spdx_license_key: IPL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "IBM Public License Version 1.0\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS\ + \ OF THIS IBM PUBLIC LICENSE (\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE\ + \ PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n1. DEFINITIONS\n\n\"Contribution\"\ + \ means:\n\n 1. in the case of International Business Machines Corporation (\"IBM\"),\ + \ the Original Program, and\n 2. in the case of each Contributor,\n 1. changes\ + \ to the Program, and\n 2. additions to the Program; \n where such changes\ + \ and/or additions to the Program originate from and are distributed by that particular\ + \ Contributor. A Contribution 'originates' from a Contributor if it was added to the Program\ + \ by such Contributor itself or anyone acting on such Contributor's behalf. Contributions\ + \ do not include additions to the Program which: (i) are separate modules of software distributed\ + \ in conjunction with the Program under their own license agreement, and (ii) are not derivative\ + \ works of the Program. \n\n\"Contributor\" means IBM and any other entity that distributes\ + \ the Program. \n\"Licensed Patents \" mean patent claims licensable by a Contributor which\ + \ are necessarily infringed by the use or sale of its Contribution alone or when combined\ + \ with the Program.\n\n\"Original Program\" means the original version of the software accompanying\ + \ this Agreement as released by IBM, including source code, object code and documentation,\ + \ if any.\n\n\"Program\" means the Original Program and Contributions.\n\n\"Recipient\"\ + \ means anyone who receives the Program under this Agreement, including all Contributors.\n\ + 2. GRANT OF RIGHTS\n\n 1. Subject to the terms of this Agreement, each Contributor hereby\ + \ grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce,\ + \ prepare derivative works of, publicly display, publicly perform, distribute and sublicense\ + \ the Contribution of such Contributor, if any, and such derivative works, in source code\ + \ and object code form.\n 2. Subject to the terms of this Agreement, each Contributor\ + \ hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under\ + \ Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the\ + \ Contribution of such Contributor, if any, in source code and object code form. This patent\ + \ license shall apply to the combination of the Contribution and the Program if, at the\ + \ time the Contribution is added by the Contributor, such addition of the Contribution causes\ + \ such combination to be covered by the Licensed Patents. The patent license shall not apply\ + \ to any other combinations which include the Contribution. No hardware per se is licensed\ + \ hereunder.\n 3. Recipient understands that although each Contributor grants the licenses\ + \ to its Contributions set forth herein, no assurances are provided by any Contributor that\ + \ the Program does not infringe the patent or other intellectual property rights of any\ + \ other entity. Each Contributor disclaims any liability to Recipient for claims brought\ + \ by any other entity based on infringement of intellectual property rights or otherwise.\ + \ As a condition to exercising the rights and licenses granted hereunder, each Recipient\ + \ hereby assumes sole responsibility to secure any other intellectual property rights needed,\ + \ if any. For example, if a third party patent license is required to allow Recipient to\ + \ distribute the Program, it is Recipient's responsibility to acquire that license before\ + \ distributing the Program.\n 4. Each Contributor represents that to its knowledge it\ + \ has sufficient copyright rights in its Contribution, if any, to grant the copyright license\ + \ set forth in this Agreement. \n\n3. REQUIREMENTS\nA Contributor may choose to distribute\ + \ the Program in object code form under its own license agreement, provided that:\n\n \ + \ 1. it complies with the terms and conditions of this Agreement; and\n 2. its license\ + \ agreement:\n 1. effectively disclaims on behalf of all Contributors all warranties\ + \ and conditions, express and implied, including warranties or conditions of title and non-infringement,\ + \ and implied warranties or conditions of merchantability and fitness for a particular purpose;\n\ + \ 2. effectively excludes on behalf of all Contributors all liability for damages,\ + \ including direct, indirect, special, incidental and consequential damages, such as lost\ + \ profits;\n 3. states that any provisions which differ from this Agreement are\ + \ offered by that Contributor alone and not by any other party; and\n\n 2.\n 4.\ + \ states that source code for the Program is available from such Contributor, and informs\ + \ licensees how to obtain it in a reasonable manner on or through a medium customarily used\ + \ for software exchange. \n\nWhen the Program is made available in source code form:\n\n\ + \ 1. it must be made available under this Agreement; and\n 2. a copy of this Agreement\ + \ must be included with each copy of the Program. \n\nEach Contributor must include the\ + \ following in a conspicuous location in the Program:\n\n Copyright (C) 1996, 1999 International\ + \ Business Machines Corporation and others. All Rights Reserved. \n\nIn addition, each Contributor\ + \ must identify itself as the originator of its Contribution, if any, in a manner that reasonably\ + \ allows subsequent Recipients to identify the originator of the Contribution.\n4. COMMERCIAL\ + \ DISTRIBUTION\n\nCommercial distributors of software may accept certain responsibilities\ + \ with respect to end users, business partners and the like. While this license is intended\ + \ to facilitate the commercial use of the Program, the Contributor who includes the Program\ + \ in a commercial product offering should do so in a manner which does not create potential\ + \ liability for other Contributors. Therefore, if a Contributor includes the Program in\ + \ a commercial product offering, such Contributor (\"Commercial Contributor\") hereby agrees\ + \ to defend and indemnify every other Contributor (\"Indemnified Contributor\") against\ + \ any losses, damages and costs (collectively \"Losses\") arising from claims, lawsuits\ + \ and other legal actions brought by a third party against the Indemnified Contributor to\ + \ the extent caused by the acts or omissions of such Commercial Contributor in connection\ + \ with its distribution of the Program in a commercial product offering. The obligations\ + \ in this section do not apply to any claims or Losses relating to any actual or alleged\ + \ intellectual property infringement. In order to qualify, an Indemnified Contributor must:\ + \ a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the\ + \ Commercial Contributor to control, and cooperate with the Commercial Contributor in, the\ + \ defense and any related settlement negotiations. The Indemnified Contributor may participate\ + \ in any such claim at its own expense.\n\n\nFor example, a Contributor might include the\ + \ Program in a commercial product offering, Product X. That Contributor is then a Commercial\ + \ Contributor. If that Commercial Contributor then makes performance claims, or offers warranties\ + \ related to Product X, those performance claims and warranties are such Commercial Contributor's\ + \ responsibility alone. Under this section, the Commercial Contributor would have to defend\ + \ claims against the other Contributors related to those performance claims and warranties,\ + \ and if a court requires any other Contributor to pay any damages as a result, the Commercial\ + \ Contributor must pay those damages.\n5. NO WARRANTY\nEXCEPT AS EXPRESSLY SET FORTH IN\ + \ THIS AGREEMENT, THE PROGRAM IS PROVIDED 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.\ + \ Each Recipient is solely responsible for determining the appropriateness of using and\ + \ distributing the Program and assumes all risks associated with its exercise of rights\ + \ under this Agreement, including but not limited to the risks and costs of program errors,\ + \ compliance with applicable laws, damage to or loss of data, programs or equipment, and\ + \ unavailability or interruption of operations.\n6. DISCLAIMER OF LIABILITY\nEXCEPT AS EXPRESSLY\ + \ SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY\ + \ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING\ + \ WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED\ + \ HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n7. GENERAL\nIf any provision\ + \ of this Agreement is invalid or unenforceable under applicable law, it shall not affect\ + \ the validity or enforceability of the remainder of the terms of this Agreement, and without\ + \ further action by the parties hereto, such provision shall be reformed to the minimum\ + \ extent necessary to make such provision valid and enforceable.\n\nIf Recipient institutes\ + \ patent litigation against a Contributor with respect to a patent applicable to software\ + \ (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted\ + \ by that Contributor to such Recipient under this Agreement shall terminate as of the date\ + \ such litigation is filed. In addition, if Recipient institutes patent litigation against\ + \ any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program\ + \ itself (excluding combinations of the Program with other software or hardware) infringes\ + \ such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall\ + \ terminate as of the date such litigation is filed. All Recipient's rights under this Agreement\ + \ shall terminate if it fails to comply with any of the material terms or conditions of\ + \ this Agreement and does not cure such failure in a reasonable period of time after becoming\ + \ aware of such noncompliance. If all Recipient's rights under this Agreement terminate,\ + \ Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable.\ + \ However, Recipient's obligations under this Agreement and any licenses granted by Recipient\ + \ relating to the Program shall continue and survive.\n\nIBM may publish new versions (including\ + \ revisions) of this Agreement from time to time. Each new version of the Agreement will\ + \ be given a distinguishing version number. The Program (including Contributions) may always\ + \ be distributed subject to the version of the Agreement under which it was received. In\ + \ addition, after a new version of the Agreement is published, Contributor may elect to\ + \ distribute the Program (including its Contributions) under the new version. No one other\ + \ than IBM has the right to modify this Agreement. Except as expressly stated in Sections\ + \ 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property\ + \ of any Contributor under this Agreement, whether expressly, by implication, estoppel or\ + \ otherwise. All rights in the Program not expressly granted under this Agreement are reserved.\n\ + \nThis Agreement is governed by the laws of the State of New York and the intellectual property\ + \ laws of the United States of America. No party to this Agreement will bring a legal action\ + \ under this Agreement more than one year after the cause of action arose. Each party waives\ + \ its rights to a jury trial in any resulting litigation." json: ibmpl-1.0.json - yml: ibmpl-1.0.yml + yaml: ibmpl-1.0.yml html: ibmpl-1.0.html - text: ibmpl-1.0.LICENSE + license: ibmpl-1.0.LICENSE - license_key: ibpp + category: Permissive spdx_license_key: LicenseRef-scancode-ibpp other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + IBPP License v1.1 + ----------------- + Permission is hereby granted, free of charge, to any person or organization + ("You") obtaining a copy of this software and associated documentation files + covered by this license (the "Software") to use the Software as part of another + work; to modify it for that purpose; to publish or distribute it, modified or + not, for that same purpose; to permit persons to whom the other work using the + Software is furnished to do so; subject to the following conditions: the above + copyright notice and this complete and unmodified permission notice shall be + included in all copies or substantial portions of the Software; You will not + misrepresent modified versions of the Software as being the original. + + 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 of other dealings in + the Software. json: ibpp.json - yml: ibpp.yml + yaml: ibpp.yml html: ibpp.html - text: ibpp.LICENSE + license: ibpp.LICENSE - license_key: ic-1.0 + category: Free Restricted spdx_license_key: LicenseRef-scancode-ic-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + INTERNET COMPUTER COMMUNITY SOURCE LICENSE VERSION 1.0 + + License text copyright © 2021 DFINITY Foundation, All Rights Reserved. “Internet + Computer Community Source License” is a trademark of the DFINITY Foundation. + + TERMS AND CONDITIONS + + If you use this code (the “software”), you accept this license. If you do not + accept the license, do not use the software. + + 1. Definitions + + The terms “reproduce,” “reproduction,” “derivative works,” and “distribution” + have the same meaning here as under U.S. copyright law. + + A “contribution” is the original software, or any additions or changes to the + software. + + A “contributor” is any person that distributes its contribution under this + license. + + “Internet Computer” is the decentralized compute platform originated by the + DFINITY Foundation and stewarded by the Internet Computer Association. + + 2. Grant of Rights + + (A) Copyright Grant - Subject to the terms of this license, including the + license conditions and limitations in Section 3, each contributor grants you + a non-exclusive, worldwide, royalty-free copyright license to reproduce its + contribution, prepare derivative works of its contribution, and distribute + its contribution or any derivative works that you create. + + (B) Patent Grant - Subject to the terms of this license, including the + license conditions and limitations in Section 3, each contributor grants you + a non-exclusive, worldwide, royalty-free license under its licensed patents + to make, have made, use, sell, offer for sale, import, and/or otherwise + dispose of its contribution in the software or derivative works of the + contribution in the software. + + 3. Conditions and Limitations + + (A) Platform Limitation - The licenses granted in sections 2(A) and 2(B) + extend only to the software or derivative works that you create that run + directly on the Internet Computer platform. + + (B) This license does not grant you rights to use any contributors’ name, + logo, or trademarks. + + (C) If you distribute any portion of the software, you must retain all + copyright, patent, trademark, and attribution notices that are present in the + software. + + (D) If you distribute any portion of the software in source code form, you + may do so only under this license by including a complete copy of this + license with your distribution. If you distribute any portion of the software + in compiled or object code form, you may only do so under a license that + complies with this license. + + (E) If you have modified the Software or created derivative works, and + distribute such modifications or derivative works, you will cause the + modified files to carry prominent notices so that recipients know that they + are not receiving the original software. Such notices must state: (i) that + you have changed the software; and (ii) the date of any changes. + + (F) THE SOFTWARE COMES "AS IS", WITH NO WARRANTIES. THIS MEANS THE + CONTRIBUTORS GIVE NO EXPRESS, IMPLIED OR STATUTORY WARRANTY, INCLUDING + WITHOUT LIMITATION, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR + PURPOSE OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT. ALSO, YOU MUST PASS + THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE SOFTWARE OR DERIVATIVE WORKS. + + (G) DFINITY WILL NOT BE LIABLE FOR ANY DAMAGES RELATED TO THE SOFTWARE OR + THIS LICENSE, INCLUDING DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL OR + INCIDENTAL DAMAGES, TO THE MAXIMUM EXTENT THE LAW PERMITS, NO MATTER WHAT + LEGAL THEORY IT IS BASED ON (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 YOU OR + OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ALSO, YOU + MUST PASS THIS LIMITATION OF LIABILITY ON WHENEVER YOU DISTRIBUTE THE + SOFTWARE OR DERIVATIVE WORKS. + + (H) If you bring a patent claim against any contributor over patents that you + claim are infringed by the software or a claim against anyone for their use + of the software, your license the software automatically terminates. + + (I) Your rights under this license automatically terminates if you breach it + in any way. + + (J) Each contributor grants to the Foundation the right to distribute the + contribution of the contributor under a license which is more permissive than + this license. A more permissive license shall be in particular a license with + less restrictions on how the contribution can be reproduced, modified and + distributed than this license. A more permissive license may be in particular + understood as a license that sets asides the platform limitation in section 3 + (A) of this license. A more permissive license shall include in particular + the Apache License Version 2.0 (or future versions thereof) and the MIT + License. The decision on such a distribution under a more permissive license + is at the sole discretion of the Foundation + + (K) The Foundation reserves all rights not expressly granted to you in this + license. + + END OF TERMS AND CONDITIONS json: ic-1.0.json - yml: ic-1.0.yml + yaml: ic-1.0.yml html: ic-1.0.html - text: ic-1.0.LICENSE + license: ic-1.0.LICENSE - license_key: ic-shared-1.0 + category: Free Restricted spdx_license_key: LicenseRef-scancode-ic-shared-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + INTERNET COMPUTER SHARED COMMUNITY SOURCE LICENSE VERSION 1.0 + + License text copyright © 2021 DFINITY Foundation, All Rights Reserved. “Internet + Computer Shared Community Source License” is a trademark of the DFINITY + Foundation. + + TERMS AND CONDITIONS + + If you use this code (the “software”), you accept this license. If you do not + accept the license, do not use the software. + + 1. Definitions + + The terms “reproduce,” “reproduction,” “derivative works,” and “distribution” + have the same meaning here as under U.S. copyright law. + + A “contribution” is the original software, or any additions or changes to the + software. + + A “contributor” is any person that distributes its contribution under this + license. + + “Ethereum” is an open-source, blockchain-based, decentralized software + platform. + + "Foundation" shall mean DFINITY Stiftung. + + “Internet Computer” is the decentralized compute platform originated by the + DFINITY Foundation and stewarded by the Internet Computer Association. + + 2. Grant of Rights + + (A) Copyright Grant - Subject to the terms of this license, including the + license conditions and limitations in Section 3, each contributor grants you + a non-exclusive, worldwide, royalty-free copyright license to reproduce its + contribution, prepare derivative works of its contribution, and distribute + its contribution or any derivative works that you create. + + (B) Patent Grant - Subject to the terms of this license, including the + license conditions and limitations in Section 3, each contributor grants you + a non-exclusive, worldwide, royalty-free license under its licensed patents + to make, have made, use, sell, offer for sale, import, and/or otherwise + dispose of its contribution in the software or derivative works of the + contribution in the software. + + 3. Conditions and Limitations + + (A) Platform Limitation - The licenses granted in sections 2(A) and 2(B) + extend only to the software or derivative works that you create that run + directly on the Internet Computer platform or the Ethereum network. + + (B) This license does not grant you rights to use any contributors’ name, + logo, or trademarks. + + (C) If you distribute any portion of the software, you must retain all + copyright, patent, trademark, and attribution notices that are present in the + software. + + (D) If you distribute any portion of the software in source code form, you + may do so only under this license by including a complete copy of this + license with your distribution. If you distribute any portion of the software + in compiled or object code form, you may only do so under a license that + complies with this license. + + (E) If you have modified the Software or created derivative works, and + distribute such modifications or derivative works, you will cause the + modified files to carry prominent notices so that recipients know that they + are not receiving the original software. Such notices must state: (i) that + you have changed the software; and (ii) the date of any changes. + + (F) THE SOFTWARE COMES "AS IS", WITH NO WARRANTIES. THIS MEANS THE + CONTRIBUTORS GIVE NO EXPRESS, IMPLIED OR STATUTORY WARRANTY, INCLUDING + WITHOUT LIMITATION, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR + PURPOSE OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT. ALSO, YOU MUST PASS + THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE SOFTWARE OR DERIVATIVE WORKS. + + (G) DFINITY WILL NOT BE LIABLE FOR ANY DAMAGES RELATED TO THE SOFTWARE OR + THIS LICENSE, INCLUDING DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL OR + INCIDENTAL DAMAGES, TO THE MAXIMUM EXTENT THE LAW PERMITS, NO MATTER WHAT + LEGAL THEORY IT IS BASED ON (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 YOU OR + OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ALSO, YOU + MUST PASS THIS LIMITATION OF LIABILITY ON WHENEVER YOU DISTRIBUTE THE + SOFTWARE OR DERIVATIVE WORKS. + + (H) If you bring a patent claim against any contributor over patents that you + claim are infringed by the software or a claim against anyone for their use + of the software, your license the software automatically terminates. + + (I) Your rights under this license automatically terminates if you breach it + in any way. + + (J) Each contributor grants to the Foundation the right to distribute the + contribution of the contributor under a license which is more permissive than + this license. A more permissive license shall be, in particular, a license + with less restrictions on how the contribution can be reproduced, modified + and distributed than this license. A more permissive license may be in + particular understood as a license that sets asides the platform limitation + in section 3 (A) of this license. A more permissive license shall include in + particular the Apache License Version 2.0 (or future versions thereof) and + the MIT License. The decision on such a distribution under a more permissive + license is at the sole discretion of the Foundation. + + (K) The Foundation reserves all rights not expressly granted to you in this + license. + + END OF TERMS AND CONDITIONS json: ic-shared-1.0.json - yml: ic-shared-1.0.yml + yaml: ic-shared-1.0.yml html: ic-shared-1.0.html - text: ic-shared-1.0.LICENSE + license: ic-shared-1.0.LICENSE - license_key: icann-public + category: Public Domain spdx_license_key: LicenseRef-scancode-icann-public other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + ICANN asserts no property rights to any of the IANA registries or + public keys we maintain. You are free to redistribute the IANA + registry files, the root zone file and the root public keys. + + As a courtesy we'd ask any such redistribution make it clear it is a + mirrored copy, and indicate the original source URL. json: icann-public.json - yml: icann-public.yml + yaml: icann-public.yml html: icann-public.html - text: icann-public.LICENSE + license: icann-public.LICENSE - license_key: ice-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-ice-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "As a special exception to the above, ZeroC grants to the contributors for\nthe following\ + \ projects the permission to license their Ice-based software \nunder the terms of the GNU\ + \ Lesser General Public License (LGPL) version \n2.1 or of the BSD license" json: ice-exception-2.0.json - yml: ice-exception-2.0.yml + yaml: ice-exception-2.0.yml html: ice-exception-2.0.html - text: ice-exception-2.0.LICENSE + license: ice-exception-2.0.LICENSE - license_key: icot-free + category: Permissive spdx_license_key: LicenseRef-scancode-icot-free other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: " TERMS AND CONDITIONS FOR USE OF \"ICOT FREE SOFTWARE\"\n\n\nThe follwing\ + \ Terms and Conditions for use of \"ICOT FREE SOFTWARE\"\n\nis applied to all of:\n\n *\ + \ ICOT Free Software that ICOT releases\n * Revised ICOT Free Software after its release\n\ + \ * Revised ICOT Free Software after its release\n\n\n1. Purposes and Background of ICOT\ + \ Free Software.\n\n The Institute for New Generation Computer Technology (\"ICOT\")\n\ + had been promoting the Fifth Generation Computer Systems project under\nthe commitment of\ + \ the Ministry of International Trade and Industry of\nJapan (the \"MITI\"). Since April\ + \ 1993, ICOT has been promoting the\nFollow-on project to the FGCS project. This follow-on\ + \ project aims to\ndisseminate and further develop FGCS technology. The FGCS project and\n\ + the Follow-on project (collectively, the \"Project\") have been aimed at\ncreating basic\ + \ technology for novel computers that realizes parallel\ninference processing as their core\ + \ mechanism, and contributing toward\nthe progress of computer science by sharing innovative\ + \ knowledge and\ntechnology with the research community worldwide.\n\n Innovative hardware\ + \ and software parallel inference technology\nhas been under development through the Project,\ + \ which involves\nvarieties of advanced software for experiments and evaluation. This\n\ + software, being at a basic stage of research and development, should\nbe disseminated widely\ + \ to the research community.\n\n According to the aims of the Project, ICOT has made\ + \ this\nsoftware, the copyright of which does not belong to the government but\nto ICOT\ + \ itself, available to the public in order to contribute to the\nworld, and, moreover, has\ + \ removed all restrictions on its usage that\nmay have impeded further research and development\ + \ in order that large\nnumbers of researchers can use it freely to begin a new era of\n\ + computer science.\n\n This program together with any attached documentation (collec-\n\ + tively, the \"Program\") is being distributed by ICOT free of charge as\nICOT Free Software.\n\ + \n\n2. Free Use, Modification, Copying and Distribution\n\n Persons wanting to use the\ + \ Program (\"Users\") may freely do so\nand may also freely modify and copy the Program.\ + \ The term \"modify,\" as\nused here, includes, but is not limited to, any act to improve\ + \ or\nexpand the Program for the purposes of enhancing and/or improving its\nfunction, performance\ + \ and/or quality as well as to add one or more\nprograms or documents developed by Users\ + \ of the Program.\n\n Each User may also freely distribute the Program, whether in\n\ + its original form or modified, to any third party or parties, PROVIDED\nthat the provisions\ + \ of Section 3 (\"NO WARRANTY\") will ALWAYS appear\non, or be attached to, the Program,\ + \ which is distributed substantially\nin the same form as set out herein and that such intended\n\ + distribution, if actually made, will neither violate or otherwise\ncontravene any of the\ + \ laws and regulations of the countries having\njurisdiction over the User or the intended\ + \ distribution itself.\n\n\n3. NO WARRANTY\n\n The program was produced on an experimental\ + \ basis in the\ncourse of the research and development conducted during the project\nand\ + \ is provided to users as so produced on an experimental basis. \nAccordingly, the program\ + \ is provided without any warranty whatsoever,\nwhether express, implied, statutory or otherwise.\ + \ The term \"warranty\"\nused herein includes, but is not limited to, any warranty of the\n\ + quality, performance, merchantability and fitness for a particular\npurpose of the program\ + \ and the nonexistence of any infringement or\nviolation of any right of any third party.\n\ + \n Each user of the program will agree and understand, and be\ndeemed to have agreed\ + \ and understood, that there is no warranty\nwhatsoever for the program and, accordingly,\ + \ the entire risk arising\nfrom or otherwise connected with the program is assumed by the\ + \ user.\n\n Therefore, neither ICOT, the copyright holder, or any other\norganization\ + \ that participated in or was otherwise related to the\ndevelopment of the program and their\ + \ respective officials, directors,\nofficers and other employees shall be held liable for\ + \ any and all\ndamages, including, without limitation, general, special, incidental\nand\ + \ consequential damages, arising out of or otherwise in connection\nwith the use or inability\ + \ to use the program or any product, material\nor result produced or otherwise obtained\ + \ by using the program,\nregardless of whether they have been advised of, or otherwise had\n\ + knowledge of, the possibility of such damages at any time during the\nproject or thereafter.\ + \ Each user will be deemed to have agreed to the\nforegoing by his or her commencement of\ + \ use of the program. The term\n\"use\" as used herein includes, but is not limited to,\ + \ the use,\nmodification, copying and distribution of the program and the\nproduction of\ + \ secondary products from the program.\n\n In the case where the program, whether in\ + \ its original form or\nmodified, was distributed or delivered to or received by a user\ + \ from\nany person, organization or entity other than ICOT, unless it makes or\ngrants independently\ + \ of ICOT any specific warranty to the user in\nwriting, such person, organization or entity,\ + \ will also be exempted\nfrom and not be held liable to the user for any such damages as\ + \ noted\nabove as far as the program is concerned." json: icot-free.json - yml: icot-free.yml + yaml: icot-free.yml html: icot-free.html - text: icot-free.LICENSE + license: icot-free.LICENSE - license_key: idt-notice + category: Permissive spdx_license_key: LicenseRef-scancode-idt-notice other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This source code has been made available to you by IDT on an AS-IS + basis. Anyone receiving this source is licensed under IDT copyrights + to use it in any way he or she deems fit, including copying it, + modifying it, compiling it, and redistributing it either with or + without modifications. No license under IDT patents or patent + applications is to be implied by the copyright license. + + Any user of this software should understand that IDT cannot provide + technical support for this software and will not be responsible for + any consequences resulting from the use of this software. + + Any person who transfers this source code or any derivative work must + include the IDT copyright notice, this paragraph, and the preceeding + two paragraphs in the transferred software. json: idt-notice.json - yml: idt-notice.yml + yaml: idt-notice.yml html: idt-notice.html - text: idt-notice.LICENSE + license: idt-notice.LICENSE - license_key: ietf + category: Permissive spdx_license_key: LicenseRef-scancode-ietf other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This document and translations of it may be copied and furnished to + others, and derivative works that comment on or otherwise explain it + or assist in its implementation may be prepared, copied, published + and distributed, in whole or in part, without restriction of any + kind, provided that the above copyright notice and this paragraph are + included on all such copies and derivative works. However, this + document itself may not be modified in any way, such as by removing + the copyright notice or references to the Internet Society or other + Internet organizations, except as needed for the purpose of + developing Internet standards in which case the procedures for + copyrights defined in the Internet Standards process must be + followed, or as required to translate it into languages other than + English. + + The limited permissions granted above are perpetual and will not be + revoked by the Internet Society or its successors or assigns. + + This document and the information contained herein is provided on an + "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING + TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION + HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF + MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. json: ietf.json - yml: ietf.yml + yaml: ietf.yml html: ietf.html - text: ietf.LICENSE + license: ietf.LICENSE - license_key: ietf-trust + category: Permissive spdx_license_key: LicenseRef-scancode-ietf-trust other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "IETF TRUST \nLegal Provisions Relating to IETF Documents \nEffective Date: December\ + \ 28, 2009\n\n1. Background \n\nThe IETF Trust was formed on December 15, 2005, for, among\ + \ other things, the purpose of acquiring, holding, maintaining and licensing certain existing\ + \ and future intellectual property used in connection with the Internet standards process\ + \ and its administration, for the advancement of science and technology associated with\ + \ the Internet and related technology. Accordingly, pursuant to RFC 5378, Contributors grant\ + \ the IETF Trust certain licenses with respect to their IETF Contributions. In RFC 5377,\ + \ the IETF Community has provided the IETF Trust with guidance regarding licenses that the\ + \ IETF Trust should grant to others with respect to such IETF Contributions and IETF Documents.\ + \ These Legal Provisions describe the rights and licenses that the IETF Trust grants to\ + \ others with respect to such IETF Contributions and IETF Documents; as well as certain\ + \ restrictions, limitations and notices relating to IETF Documents. These Legal Provisions\ + \ also apply to other document streams that have requested that the IETF Trust act as licensing\ + \ administrator, as described in Section 8 below. Capitalized terms used in these Legal\ + \ Provisions that are not otherwise defined have the meanings set forth in RFC 5378.\n\n\ + 2. Applicability of these Legal Provisions. \n\na. These Legal Provisions are effective\ + \ as of December 28, 2009 (the \"Effective Date\"). \n\nb. The licenses granted by the IETF\ + \ Trust pursuant to these Legal Provisions apply only with respect to (i) IETF Contributions\ + \ (including Internet-Drafts) that are submitted to the IETF following the Effective Date,\ + \ and (ii) IETF RFCs and other IETF Documents that are published after the Effective Date.\ + \ \n\nc. IETF Contributions made, and IETF Documents published, prior to the Effective Date\ + \ (\"Pre-Existing IETF Documents\") remain subject to the licensing provisions of the IETF\ + \ copyright policy document in effect at the time of their contribution or publication,\ + \ as applicable, including RFCs 1310, 1602, 2026, 3978 and 4748 and previous versions of\ + \ these Legal Provisions. \n\nd. In most cases, rights to Pre-Existing IETF Documents that\ + \ are not expressly granted under these RFCs can only be obtained by requesting such rights\ + \ directly from the document authors. The IETF Trust and the Internet Society do not become\ + \ involved in making such requests to document authors. \n\ne. These Legal Provisions may\ + \ be amended from time to time by the IETF Trust in a manner consistent with the guidance\ + \ provided by the IETF community and its own operating procedures. Any amendment to these\ + \ Legal Provisions shall be posted for review at http://trustee.ietf.org/policyandprocedures.html\ + \ and shall become effective on a date specified by the IETF Trust, but no earlier than\ + \ thirty (30) days following its posting. Such amendment shall apply with respect to all\ + \ IETF Contributions made and IETF Documents published following the effective date of such\ + \ amendment. All prior versions of these Legal Provisions shall continue to be posted at\ + \ http://trustee.ietf.org/policyandprocedures.html for reference with respect to IETF Contributions\ + \ and IETF Documents as to which they may apply.\n\n3. Licenses to IETF Documents and IETF\ + \ Contributions.a. License For Use Within the IETF Standards Process. The IETF Trust hereby\ + \ grants to each participant in the IETF Standards Process, to the greatest extent that\ + \ it is permitted to do so, a non-exclusive, royalty-free, worldwide right and license under\ + \ all copyrights and rights of authors granted to the IETF Trust:\n\ni. to copy, publish,\ + \ display and distribute IETF Contributions and IETF Documents, in whole or in part, as\ + \ part of the IETF Standards Process, and\n\nii. to translate IETF Contributions and IETF\ + \ Documents, in whole or part, into languages other than English as part of the IETF Standards\ + \ Process, and\n\niii. unless explicitly disallowed in the notices contained in an IETF\ + \ Contribution or IETF Document (as specified in Section 6.c below), to modify or prepare\ + \ derivative works of such IETF Contributions or IETF Documents, in whole or in part, as\ + \ part of the IETF Standards Process.\n\nb. IETF Standards Process. The term IETF Standards\ + \ Process has the meaning assigned to it in RFC 5378. In addition, the IETF Trust interprets\ + \ the IETF Standards Process to include the archiving of IETF Documents in perpetuity for\ + \ reference in support of IETF activities and the implementation of IETF standards and specifications.\n\ + \nc. Licenses For Use Outside the IETF Standards Process. In addition to the rights granted\ + \ with respect to Code Components described in Section 4 below, the IETF Trust hereby grants\ + \ to each person who wishes to exercise such rights, to the greatest extent that it is permitted\ + \ to do so, a non-exclusive, royalty-free, worldwide right and license under all copyrights\ + \ and rights of authors:\n\ni. to copy, publish, display and distribute IETF Contributions\ + \ and IETF Documents in full and without modification,\n\nii. to translate IETF Contributions\ + \ and IETF Documents into languages otherthan English, and to copy, publish, display and\ + \ distribute such translated IETF Contributions and IETF Documents in full and without modification,\n\ + \niii. to copy, publish, display and distribute unmodified portions of IETF Contributions\ + \ and IETF Documents and translations thereof, provided that: (x) each such portion is clearly\ + \ attributed to IETF and identifies the RFC or other IETF Document or IETF Contribution\ + \ from which it is taken, (y) all IETF legends, legal notices and indications of authorship\ + \ IETF Trust Legal Provisions Relating to IETF Documents Effective Date: December 28, 2009\ + \ 3 contained in the original IETF RFC must also be included where any substantial portion\ + \ of the text of an IETF RFC, and in any event where more than one-fifth of such text, is\ + \ reproduced in a single document or series of related documents.\n\nd. Licenses that are\ + \ not Granted. The following licenses are not granted pursuant to these Legal Provisions:\n\ + \ni. any license to modify IETF Contributions or IETF Documents, or portions thereof (other\ + \ than to make translations or to extract, use and modify Code Components as permitted under\ + \ the licenses granted under Section 4 of these Legal Provisions) in any context outside\ + \ the IETF Standards Process, or\n\nii. any license to publish, display or distribute IETF\ + \ Contributions or IETF Documents, or portions thereof, without the required legends and\ + \ notices described in these Legal Provisions. \n\ne. Requesting Additional Rights. Anyone\ + \ who wishes to request license rights from the IETF Trust in addition to those granted\ + \ under these Legal Provisions may submit such request to trustees@ietf.org. Such request\ + \ will be considered by the IETF Trust, which will make a decision regarding the request\ + \ in its sole discretion and inform the requester of its disposition. In addition, individual\ + \ Contributors may be contacted regarding licenses to their IETF Contributions. The IETF\ + \ Trust does not limit the ability of IETF Contributors to license their Contributions,\ + \ so long as those licenses do not affect the rights granted to the IETF Trust under RFC\ + \ 5378.\n\n4. License to Code Components. \n\na. Definition. IETF Contributions and IETF\ + \ Documents often include components intended to be directly processed by a computer (\"\ + Code Components\"). A list of common Code Components can be found at http://trustee.ietf.org/license-info/.\ + \ \n\nb. Identification. Text in IETF Contributions and IETF Documents of the types identified\ + \ in Section 4.a above shall constitute \"Code Components\". In addition, any text found\ + \ between the markers and , or otherwise clearly labeled as a Code\ + \ Component, shall be considered a \"Code Component\". \n\nc. License. In addition to the\ + \ licenses granted under Section 3, unless one of the legends contained in Section 6.c.i\ + \ or 6.c.ii is included in an IETF Document containing Code Components, such Code Components\ + \ are also licensed to each person who wishes to receive such a license on the terms of\ + \ the \"Simplified BSD License\", as described below. If a licensee elects to apply the\ + \ BSD License to a Code Component, then the additional licenses and restrictions set forth\ + \ in Section 3 and elsewhere in these Legal Provisions shall not apply thereto. Note that\ + \ this license is specifically offered for IETF Documents and may not be available for Alternate\ + \ Stream documents. See Section 8 for licensing information for the appropriate stream.\ + \ \n\nBSD License: Copyright (c) IETF Trust and the persons identified as\ + \ authors of the code. \nAll rights IETF Trust Legal Provisions Relating to IETF Documents\ + \ \nEffective Date: December 28, 2009 4 reserved.\n\nRedistribution and use in source and\ + \ binary forms, with or without modification, are permitted provided that the following\ + \ conditions are met: \n• Redistributions of source code must retain the above copyright\ + \ notice, this list of conditions and the following disclaimer. \n• 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.\ + \ \n• Neither the name of Internet Society, IETF or IETF Trust, nor the names of specific\ + \ contributors, may be used to endorse or promote products derived from this software without\ + \ specific prior written permission. \n\nTHIS 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.\n\nThe above\ + \ BSD License is intended to be compatible with the Simplified BSD License template published\ + \ at http://opensource.org/licenses/bsd-license.php . \n\nd. Attribution. Those who use\ + \ Code Components under the license granted under Section 4.c above are requested to attribute\ + \ each such Code Component to IETF and identify the RFC or other IETF Document or IETF Contribution\ + \ from which it is taken. Such attribution may be placed in the code itself (e.g., \"This\ + \ code was derived from IETF RFC *insert RFC number]. Please reproduce this note if possible.\"\ + ), or any other reasonable location. \n\ne. BSD License Text. For purposes of compliance\ + \ with the redistribution clauses of the Simplified BSD License set forth in Section 4.c\ + \ above, it is permissible, when using Code Components extracted from IETF Contributions\ + \ and IETF Documents, either (1) to reproduce the entire text of the Simplified BSD License\ + \ set forth in Section 4.c above as part of such Code Component, or (2) to include in such\ + \ Code Component the legend set forth in Section 6.d below. \n\n5. License Limitations.\ + \ \n\na. No Patent License. The licenses granted under these Legal Provisions shall\ + \ not be \ndeemed to grant any right under any patent, patent application or similar intellectual\ + \ property \nright. \n\nb. Supersedure. The terms of any license granted under these Legal\ + \ Provisions may be \nsuperseded by a written agreement between the IETF Trust and the licensee\ + \ that specifically \nreferences and supersedes the relevant provisions of these Legal Provisions,\ + \ except that (i) the \nIETF Trust shall in no event be authorized to grant rights with\ + \ respect to any Contribution in \nexcess of those which it has been granted by the Contributor,\ + \ and (ii) the rights granted shall not \nbe less than those otherwise granted under these\ + \ Legal Provisions. \n\nc. Pre-5378 Material. In some cases, IETF Contributions or IETF\ + \ Documents may \ncontain material from IETF Contributions or IETF Documents published or\ + \ made publicly \navailable before November 10, 2008 as to which the persons controlling\ + \ the copyright in such \nmaterial have not granted rights to the IETF Trust under the terms\ + \ of RFC 5378 (\"Pre-5378 \nMaterial\"). If a Contributor includes the legend contained\ + \ in Section 6.c.iii of these Legal \nProvisions on such IETF Contributions or IETF Documents\ + \ containing Pre-5378 Materials, the \nIETF Trust agrees that it shall not grant any third\ + \ party the right to use such Pre-5378 Material \noutside the IETF Standards Process unless\ + \ and until it has obtained sufficient rights to do so from \nthe persons controlling the\ + \ copyright in such Pre-5378 Material. Where practical, Contributors \nare encouraged to\ + \ identify which portions of such IETF Contributions and IETF Documents \ncontain Pre-5378\ + \ Material, including the source (by RFC number or otherwise) of the Pre-5378 \nMaterial.\ + \ \n\n\n6. Text To Be Included in IETF Documents. \nThe following text must be included\ + \ in each IETF Document as specified below. \nThe IESG shall specify the manner and location\ + \ of such text for Internet-Drafts. \nThe RFC Editor shall specify the manner and location\ + \ of such text for RFCs. \nThe copyright notice specified in 6.b below shall be placed\ + \ so as to give reasonable \nnotice of the claim of copyright. \n\na. Submission Compliance\ + \ for Internet-Drafts. In each Internet-Draft: \nThis Internet-Draft is submitted in full\ + \ conformance with the provisions of BCP 78 and BCP 79. \n\nb. Copyright and License Notice.\ + \ In each Document (including RFCs and InternetDrafts): \n\ni. Copyright and License Notice.\ + \ \nCopyright (c) IETF Trust and the persons identified as the document authors.\ + \ All \nrights reserved. \nThis document is subject to BCP 78 and the IETF Trust’s Legal\ + \ Provisions Relating to IETF \nDocuments (http://trustee.ietf.org/license-info) in effect\ + \ on the date of publication of this \ndocument. Please review these documents carefully,\ + \ as they describe your rights and restrictions \nwith respect to this document. Code Components\ + \ extracted from this document must include \nSimplified BSD License text as described in\ + \ Section 4.e of the Trust Legal Provisions and are \nprovided without warranty as described\ + \ in the Simplified BSD License. \n\nii. Alternate Stream Documents Copyright and License\ + \ Notice. In all Alternate \nStream Documents (including RFCs and Internet-Drafts): \nCopyright\ + \ (c) IETF Trust and the persons identified as the document authors. All\ + \ \nrights reserved. \nThis document is subject to BCP 78 and the IETF Trust’s Legal Provisions\ + \ Relating to IETF \nDocuments (http://trustee.ietf.org/license-info) in effect on the date\ + \ of publication of this \ndocument. Please review these documents carefully, as they describe\ + \ your rights and restrictions \nwith respect to this document.\n\nc. Derivative Works\ + \ and Publication Limitations. If a Contributor chooses to limit \nthe right to make modifications\ + \ and derivative works of an IETF Contribution, then one of the \nnotices in clause (i)\ + \ or (ii) below must be included. Note that an IETF Contribution with such a \nnotice cannot\ + \ become a Standards Track document or, in most cases, a working group document. \nIf an\ + \ IETF Contribution contains pre-5378 Material as to which the IETF Trust has not been \n\ + granted, or may not have been granted, the necessary permissions to allow modification of\ + \ such \npre-5378 Material outside the IETF Standards Process, then the notice in clause\ + \ (iii) may be \nincluded by the Contributor of such IETF Contribution to limit the right\ + \ to make modifications to \nsuch pre-5378 Material outside the IETF Standards Process.\n\ + \ni. If the Contributor does not wish to allow modifications, but does wish to allow publication\ + \ as an RFC: \n\nThis document may not be modified, and derivative works of it may not be\ + \ created, except to \nformat it for publication as an RFC or to translate it into languages\ + \ other than English.\n\nii. If the Contributor does not wish to allow modifications nor\ + \ to allow publication as an RFC:\n\nThis document may not be modified, and derivative works\ + \ of it may not be created, and it may not \nbe published except as an Internet-Draft. \n\ + \niii. If an IETF Contribution contains pre-5378 Material as to which the IETF Trust has\ + \ not been granted, or may not have been granted, the necessary permissions to allow modification\ + \ of such pre-5378 Material outside the IETF Standards Process:\n\nThis document may contain\ + \ material from IETF Documents or IETF Contributions published or \nmade publicly available\ + \ before November 10, 2008. The person(s) controlling the copyright in \nsome of this material\ + \ may not have granted the IETF Trust the right to allow modifications of such \nmaterial\ + \ outside the IETF Standards Process. Without obtaining an adequate license from the \n\ + person(s) controlling the copyright in such materials, this document may not be modified\ + \ outside \nthe IETF Standards Process, and derivative works of it may not be created outside\ + \ the IETF \nStandards Process, except to format it for publication as an RFC or to translate\ + \ it into languages \nother than English.\n\n d. BSD License Notification. In lieu of\ + \ the complete text of the Simplified BSD \nLicense set forth in Section 4.c, a person who\ + \ elects to license a Code Component under the \nSimplified BSD License as described in\ + \ Section 4.c may use the following notification in the \nprogram or other file that includes\ + \ the Code Component:\n\nCopyright (c) IETF Trust and the persons identified\ + \ as authors of the code. \nAll rights reserved. \n\nRedistribution and use in source\ + \ and binary forms, with or without modification, is permitted pursuant to, \nand subject\ + \ to the license terms contained in, the Simplified BSD License set forth in Section 4.c\ + \ of the \nIETF Trust’s Legal Provisions Relating to IETF Documents (http://trustee.ietf.org/license-info).\n\ + \n\n7. Terms Applicable to All IETF Documents. \nThe following legal terms apply to all\ + \ IETF Documents:\n\na. ALL DOCUMENTS AND THE INFORMATION CONTAINED THEREIN \nARE PROVIDED\ + \ ON AN \"AS IS\" BASIS AND THE CONTRIBUTOR, THE \nORGANIZATION HE/SHE REPRESENTS OR IS\ + \ SPONSORED BY (IF ANY), THE \nINTERNET SOCIETY, THE IETF TRUST, THE INTERNET ENGINEERING\ + \ TASK FORCE \nAND ANY APPLICABLE MANAGERS OF ALTERNATE STREAM DOCUMENTS, AS \nDEFINED IN\ + \ SECTION 8 BELOW, DISCLAIM ALL WARRANTIES, EXPRESS OR \nIMPLIED, INCLUDING BUT NOT LIMITED\ + \ TO ANY WARRANTY THAT THE USE OF \nTHE INFORMATION THEREIN WILL NOT INFRINGE ANY RIGHTS\ + \ OR ANY IMPLIED \nWARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. \n\ + \nb. The IETF Trust takes no position regarding the validity or scope of any \nIntellectual\ + \ Property Rights or other rights that might be claimed to pertain to the implementation\ + \ \nor use of the technology described in any IETF Document or the extent to which any license\ + \ \nunder such rights might or might not be available; nor does it represent that it has\ + \ made any \nindependent effort to identify any such rights. \n\nc. Copies of Intellectual\ + \ Property disclosures made to the IETF Secretariat and \nany assurances of licenses to\ + \ be made available, or the result of an attempt made to obtain a \ngeneral license or permission\ + \ for the use of such proprietary rights by implementers or users of \nthis specification\ + \ can be obtained from the IETF on-line IPR repository at \nhttp://www.ietf.org/ipr. \n\n\ + d. The IETF invites any interested party to bring to its attention any copyrights, \npatents\ + \ or patent applications, or other proprietary rights that may cover technology that may\ + \ be \nrequired to implement any standard or specification contained in an IETF Document.\ + \ Please \naddress the information to the IETF at ietf-ipr@ietf.org. \n\ne. The definitive\ + \ version of an IETF Document is that published by, or under the \nauspices of, the IETF.\ + \ Versions of IETF Documents that are published by third parties, \nincluding those that\ + \ are translated into other languages, should not be considered to be definitive \nversions\ + \ of IETF Documents. The definitive version of these Legal Provisions is that published\ + \ \nby, or under the auspices of, the IETF. Versions of these Legal Provisions that are\ + \ published by \nthird parties, including those that are translated into other languages,\ + \ should not be considered to \nbe definitive versions of these Legal Provisions. \n\nf.\ + \ For the avoidance of doubt, each Contributor licenses each Contribution that \nhe or\ + \ she makes to the IETF Trust pursuant to the provisions of RFC 5378. No language to the\ + \ \ncontrary, or terms, conditions or rights that differ from or are inconsistent with the\ + \ rights and \nlicenses granted under RFC 5378, shall have any effect and shall be null\ + \ and void, whether \npublished or posted by such Contributor, or included with or in such\ + \ Contribution. \n\n8. Application to non-IETF Stream Documents \n\na. General. These\ + \ Legal Provisions have been developed by the IETF Trust for the \nbenefit and use of the\ + \ IETF community in accordance with the guidance provided in RFC 5377. \nAs such, these\ + \ Legal Provisions apply to all IETF Contributions and IETF Documents that are in \nthe\ + \ \"IETF Document Stream\" as defined in Section 5.1.1 of RFC 4844 (i.e., those that are\ + \ \ncontributed, developed, edited and published as part of the IETF Standards Process).\ + \ As \nindicated in Section 4 of RFC 5378, the IETF rules regarding copyrights (which are\ + \ embodied in \nthese Legal Provisions) do not by their terms cover documents or materials\ + \ contributed or \npublished outside of the IETF Document Stream, even if they are referred\ + \ to as Internet-Drafts or \nRFCs and/or published by the RFC Editor. The IAB Document\ + \ Stream, the IRTF Document \nStream and the Independent Submission Stream, each as defined\ + \ in Section 5.1 of RFC 4844 are \nreferred to collectively herein as \"Alternate Streams\"\ + . \n\nb. Adoption by Alternate Streams. The legal rules that apply to documents in \n\ + Alternate Streams are established by the managers of those Alternate Streams as defined\ + \ in RFC \n4844. (i.e., the Internet Architecture Board (IAB), Internet Research Steering\ + \ Group (IRSG) and \nIndependent Submission Editor). These managers may elect, through\ + \ their own internal \nprocesses, to cause these Legal Provisions to be applied to documents\ + \ contributed to them for \ndevelopment, editing and publication in their respective Alternate\ + \ Streams. If an Alternate \nStream manager elects to adopt these Legal Provisions and\ + \ to utilize the IETF Trust as the \nlicensing administrator for such Alternate Stream,\ + \ the IETF Trust will update these Legal \nProvisions to reflect the specific manner in\ + \ which it will so act, and shall do so consistently with \nthe stated wishes of the Alternate\ + \ Stream manager to the extent consistent with the IETF Trust’s \nlegal obligations and\ + \ the instructions of the IETF community embodied in RFC 5377 and \nelsewhere. \n\nc. Alternate\ + \ Stream License. \n i. Unless otherwise specified below, for each Alternate Stream for\ + \ which the \nIETF Trust acts as licensing administrator, from the date on which these Legal\ + \ Provisions are \neffective with respect to such Alternate Stream (as specified below)\ + \ the IETF Trust shall accept \nlicenses of copyrights in documents granted to the IETF\ + \ Trust by contributors to Alternate \nStream as though granted pursuant to RFC 5378, and\ + \ shall grant licenses to others on the terms \nof these Legal Provisions. \n ii. Each\ + \ occurrence of the term \"IETF Contribution\" and \"IETF Document\" \nin these Legal Provisions\ + \ shall be read to mean a Contribution or document in such Alternate \nStream, as the case\ + \ may be. The disclaimer in Section 7.a of these Legal Provisions shall apply \nto the\ + \ manager of such Alternate Stream as defined in RFC 4844 as though such manager were \n\ + expressly listed in Section 7.a. \n iii. The license grant in Section 3.a of these Legal\ + \ Provisions with respect to \nAlternate Stream documents shall not be limited to the IETF\ + \ Standards Process, and all \nreferences to the IETF Standards Process in Section 3.a shall\ + \ be omitted with respect to licenses \nof Alternate Stream documents, and correspondingly\ + \ Section 3.c hereof shall not apply with \nrespect to Alternate Stream documents. \n\ + \ iv. Alternate Stream contributions made, and Alternate Stream documents \npublished,\ + \ prior to the application of these Legal Provisions to such Alternate Stream remain\n\ + subject to the licensing provisions in effect for such Alternate Stream at the time of their\ + \ \ncontribution or publication, as applicable. \n\nd. Responsibility of Alternate Stream\ + \ Contributors. Sections 5.c and 6.c.iii of these \nLegal Provisions shall not apply to\ + \ Alternate Stream documents, thus contributors of \nContribution to Alternate Streams must\ + \ assure themselves that they comply with the \nrepresentations and warranties required\ + \ under RFC 5378, including under Section 5.6 of RFC \n5378, with respect to the entirety\ + \ of their Alternate Stream Contributions prior to making the \ncontribution. \n\ne. IAB\ + \ Document Stream. Pursuant to Section 11 of RFC 5378, the IAB requested, \nas of April\ + \ 4, 2008, that the IETF Trust act as licensing administrator for the IAB Document \nStream\ + \ and that these Legal Provisions be applied to documents submitted and published in the\ + \ \nIAB Document Stream following the Effective Date of RFC 5378. Section 4 of these Legal\ + \ \nProvisions shall not apply to documents in the IAB Document Stream, and all references\ + \ to \nSection 4 hereof shall be disregarded with respect to documents in the IAB Document\ + \ Stream \npursuant to RFC 5745 published on December 21, 2009. \n\nf. Independent Submission\ + \ Stream. Pursuant to RFC 5744 published on December \n17, 2009, the manager of the Independent\ + \ Submission Stream has requested that the IETF Trust \nact as licensing administrator for\ + \ the Independent Submission Stream and that these Legal \nProvisions be applied to documents\ + \ submitted and published in the Independent Submission \nStream following December 28,\ + \ 2009. Section 4 of these Legal Provisions shall not apply to \ndocuments in the Independent\ + \ Submission Stream, and all references to Section 4 hereof shall be \ndisregarded with\ + \ respect to documents in the Independent Submission Stream. \n\ng. IRTF Document Stream.\ + \ Pursuant to RFC 5743 published on December 24, \n2009, the manager of the IRTF Document\ + \ Stream has requested that the IETF Trust act as \nlicensing administrator for the IRTF\ + \ Document Stream and that these Legal Provisions be \napplied to documents submitted and\ + \ published in the IRTF Document Stream following \nDecember 28, 2009. Section 4 of these\ + \ Legal Provisions shall not apply to documents in the \nIRTF Document Stream, and all references\ + \ to Section 4 hereof shall be disregarded with respect \nto documents in the IRTF Document\ + \ Stream." json: ietf-trust.json - yml: ietf-trust.yml + yaml: ietf-trust.yml html: ietf-trust.html - text: ietf-trust.LICENSE + license: ietf-trust.LICENSE - license_key: ijg + category: Permissive spdx_license_key: IJG other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + LEGAL ISSUES + ============ + + In plain English: + + 1. We don't promise that this software works. (But if you find any bugs, + please let us know!) + 2. You can use this software for whatever you want. You don't have to pay us. + 3. You may not pretend that you wrote this software. If you use it in a + program, you must acknowledge somewhere in your documentation that + you've used the IJG code. + + In legalese: + + The authors make NO WARRANTY or representation, either express or implied, + with respect to this software, its quality, accuracy, merchantability, or + fitness for a particular purpose. This software is provided "AS IS", and you, + its user, assume the entire risk as to its quality and accuracy. + + This software is copyright (C) 1991-1998, Thomas G. Lane. + All Rights Reserved except as specified below. + + Permission is hereby granted to use, copy, modify, and distribute this + software (or portions thereof) for any purpose, without fee, subject to these + conditions: + (1) If any part of the source code for this software is distributed, then this + README file must be included, with this copyright and no-warranty notice + unaltered; and any additions, deletions, or changes to the original files + must be clearly indicated in accompanying documentation. + (2) If only executable code is distributed, then the accompanying + documentation must state that "this software is based in part on the work of + the Independent JPEG Group". + (3) Permission for use of this software is granted only if the user accepts + full responsibility for any undesirable consequences; the authors accept + NO LIABILITY for damages of any kind. + + These conditions apply to any software derived from or based on the IJG code, + not just to the unmodified library. If you use our work, you ought to + acknowledge us. + + Permission is NOT granted for the use of any IJG author's name or company name + in advertising or publicity relating to this software or products derived from + it. This software may be referred to only as "the Independent JPEG Group's + software". + + We specifically permit and encourage the use of this software as the basis of + commercial products, provided that all warranty or liability claims are + assumed by the product vendor. + + + ansi2knr.c is included in this distribution by permission of L. Peter Deutsch, + sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA. + ansi2knr.c is NOT covered by the above copyright and conditions, but instead + by the usual distribution terms of the Free Software Foundation; principally, + that you must include source code if you redistribute it. (See the file + ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part + of any program generated from the IJG code, this does not limit you more than + the foregoing paragraphs do. + + The Unix configuration script "configure" was produced with GNU Autoconf. + It is copyright by the Free Software Foundation but is freely distributable. + The same holds for its supporting scripts (config.guess, config.sub, + ltconfig, ltmain.sh). Another support script, install-sh, is copyright + by M.I.T. but is also freely distributable. + + It appears that the arithmetic coding option of the JPEG spec is covered by + patents owned by IBM, AT&T, and Mitsubishi. Hence arithmetic coding cannot + legally be used without obtaining one or more licenses. For this reason, + support for arithmetic coding has been removed from the free JPEG software. + (Since arithmetic coding provides only a marginal gain over the unpatented + Huffman mode, it is unlikely that very many implementations will support it.) + So far as we are aware, there are no patent restrictions on the remaining + code. + + The IJG distribution formerly included code to read and write GIF files. + To avoid entanglement with the Unisys LZW patent, GIF reading support has + been removed altogether, and the GIF writer has been simplified to produce + "uncompressed GIFs". This technique does not use the LZW algorithm; the + resulting GIF files are larger than usual, but are readable by all standard + GIF decoders. + + We are required to state that + "The Graphics Interchange Format(c) is the Copyright property of + CompuServe Incorporated. GIF(sm) is a Service Mark property of + CompuServe Incorporated." json: ijg.json - yml: ijg.yml + yaml: ijg.yml html: ijg.html - text: ijg.LICENSE + license: ijg.LICENSE - license_key: ilmid + category: Permissive spdx_license_key: LicenseRef-scancode-ilmid other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify and distribute this + software and its documentation is hereby granted, + provided that both the copyright notice and this + permission notice appear in all copies of the software, + derivative works or modified versions, and any portions + thereof, that both notices appear in supporting + documentation, and that the use of this software is + acknowledged in any publications resulting from using + the software. + + I ALLOW FREE USE OF THIS SOFTWARE IN ITS "AS IS" + CONDITION AND DISCLAIM ANY LIABILITY OF ANY KIND FOR + ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS + SOFTWARE. json: ilmid.json - yml: ilmid.yml + yaml: ilmid.yml html: ilmid.html - text: ilmid.LICENSE + license: ilmid.LICENSE - license_key: imagemagick + category: Permissive spdx_license_key: ImageMagick other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "ImageMagick License\n\nThe legally binding and authoritative terms and conditions for\ + \ use, reproduction, and distribution of ImageMagick follow: \n\nCopyright 1999-2009 ImageMagick\ + \ Studio LLC, a non-profit organization dedicated to making software imaging solutions freely\ + \ available.\n\n1. 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 limited to compiled object code, generated documentation,\ + \ conversions to other media types. Work shall mean the work of authorship, whether in Source\ + \ 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 intentionally sent to the Licensor by its copyright holder 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.\n\n2. 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.\n\n3. 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 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.\n\n4. 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:\n\n1. You must give any other recipients of the Work or\ + \ Derivative Works a copy of this License; and\n\n2. You must cause any modified files to\ + \ carry prominent notices stating that You changed the files; and\n\n3. 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\n\n4. 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,\n\n\ + provided Your use, reproduction, and distribution of the Work otherwise complies with the\ + \ conditions stated in this License.\n\n5. 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.\n\n6. 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.\n\n7. 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.\n\n8. 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.\n\n9. 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.\n\nAPPENDIX: How to apply the ImageMagick License to your work To apply\ + \ the ImageMagick 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.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the ImageMagick\ + \ License (the \"License\"); you may not use\nthis file except in compliance with the License.\ + \ You may obtain a copy\nof the License at http://www.imagemagick.org/www/license.html\n\ + Unless required by applicable law or agreed to in writing, software\ndistributed under the\ + \ License is distributed on an \"AS IS\" BASIS, WITHOUT\nWARRANTIES OR CONDITIONS OF ANY\ + \ KIND, either express or implied. See the\nLicense for the specific language governing\ + \ permissions and limitations\nunder the License." json: imagemagick.json - yml: imagemagick.yml + yaml: imagemagick.yml html: imagemagick.html - text: imagemagick.LICENSE + license: imagemagick.LICENSE - license_key: imagen + category: Free Restricted spdx_license_key: LicenseRef-scancode-imagen other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "This code may be duplicated in whole or in part provided that\n[1] there is no commercial\ + \ gain involved in the duplication, and\n[2] that this copyright notice is preserved on\ + \ all copies. \nAny other duplication requires written notice of the author." json: imagen.json - yml: imagen.yml + yaml: imagen.yml html: imagen.html - text: imagen.LICENSE + license: imagen.LICENSE - license_key: imlib2 + category: Copyleft Limited spdx_license_key: Imlib2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Imlib2 License \n\nPermission is hereby granted, free of charge, to any person obtaining\ + \ a copy \nof this software and associated documentation files (the \"Software\"), to \n\ + deal in the Software without restriction, including without limitation the \nrights to use,\ + \ copy, modify, merge, publish, distribute, sublicense, and/or \nsell copies of the Software,\ + \ and to permit persons to whom the Software is \nfurnished to do so, subject to the following\ + \ conditions: \n\nThe above copyright notice and this permission notice shall be included\ + \ in \nall copies of the Software and its Copyright notices. In addition publicly \ndocumented\ + \ acknowledgment must be given that this software has been used if no \nsource code of this\ + \ software is made available publicly. Making the source \navailable publicly means including\ + \ the source for this software with the \ndistribution, or a method to get this software\ + \ via some reasonable mechanism \n(electronic transfer via a network or media) as well as\ + \ making an offer to \nsupply the source on request. This Copyright notice serves as an\ + \ offer to \nsupply the source on on request as well. Instead of this, supplying \nacknowledgments\ + \ of use of this software in either Copyright notices, Manuals, \nPublicity and Marketing\ + \ documents or any documentation provided with any \nproduct containing this software. This\ + \ License does not apply to any software \nthat links to the libraries provided by this\ + \ software (statically or \ndynamically), but only to the software provided. \n\nPlease\ + \ see the COPYING-PLAIN for a plain-english explanation of this notice \nand its intent.\ + \ \n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR \nIMPLIED,\ + \ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, \nFITNESS FOR A PARTICULAR\ + \ PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL \nTHE AUTHORS BE LIABLE FOR ANY CLAIM,\ + \ DAMAGES OR OTHER LIABILITY, WHETHER \nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\ + \ FROM, OUT OF OR IN \nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\ + \ SOFTWARE." json: imlib2.json - yml: imlib2.yml + yaml: imlib2.yml html: imlib2.html - text: imlib2.LICENSE + license: imlib2.LICENSE - license_key: independent-module-linking-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-indie-module-linking-exception other_spdx_license_keys: - LicenseRef-scancode-independent-module-linking-exception is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, and to + copy and distribute the resulting executable under terms of your choice, + provided that you also meet, for each linked independent module, the terms and + conditions of the license of that module. An independent module is a module + which is neither derived from nor based on this library. If you modify this + library, you may extend this exception to your version of the library, but you + are not obligated to do so. If you do not wish to do so, delete this exception + statement from your version. json: independent-module-linking-exception.json - yml: independent-module-linking-exception.yml + yaml: independent-module-linking-exception.yml html: independent-module-linking-exception.html - text: independent-module-linking-exception.LICENSE + license: independent-module-linking-exception.LICENSE - license_key: indiana-extreme + category: Permissive spdx_license_key: LicenseRef-scancode-indiana-extreme other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Indiana University Extreme! Lab Software License Version 1.1.1 + + Copyright (c) 2002 Extreme! Lab, Indiana 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. The end-user documentation included with the redistribution, if any, must include the following acknowledgment: + + "This product includes software developed by the Indiana University Extreme! Lab (http://www.extreme.indiana.edu/)." + + Alternately, this acknowledgment may appear in the software itself, if and wherever such third-party acknowledgments normally appear. + + 4. The names "Indiana University" and "Indiana University Extreme! Lab" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact (http://www.extreme.indiana.edu/). + + 5. Products derived from this software may not use "Indiana University" name nor may "Indiana University" appear in their name, without prior written permission of the Indiana University. + + THIS SOFTWARE IS PROVIDED "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 AUTHORS, COPYRIGHT HOLDERS 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. json: indiana-extreme.json - yml: indiana-extreme.yml + yaml: indiana-extreme.yml html: indiana-extreme.html - text: indiana-extreme.LICENSE + license: indiana-extreme.LICENSE - license_key: indiana-extreme-1.2 + category: Permissive spdx_license_key: xpp other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Indiana University Extreme! Lab Software License, Version 1.2 + + Copyright (C) 2004 The Trustees of Indiana 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) All redistributions of source code must retain the above + copyright notice, the list of authors in the original source + code, this list of conditions and the disclaimer listed in this + license; + + 2) All redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the disclaimer + listed in this license in the documentation and/or other + materials provided with the distribution; + + 3) Any documentation included with all redistributions must include + the following acknowledgement: + + "This product includes software developed by the Indiana + University Extreme! Lab. For further information please visit + http://www.extreme.indiana.edu/" + + Alternatively, this acknowledgment may appear in the software + itself, and wherever such third-party acknowledgments normally + appear. + + 4) The name "Indiana University" or "Indiana University + Extreme! Lab" shall not be used to endorse or promote + products derived from this software without prior written + permission from Indiana University. For written permission, + please contact http://www.extreme.indiana.edu/. + + 5) Products derived from this software may not use "Indiana + University" name nor may "Indiana University" appear in their name, + without prior written permission of the Indiana University. + + Indiana University provides no reassurances that the source code + provided does not infringe the patent or any other intellectual + property rights of any other entity. Indiana University disclaims any + liability to any recipient for claims brought by any other entity + based on infringement of intellectual property rights or otherwise. + + LICENSEE UNDERSTANDS THAT SOFTWARE IS PROVIDED "AS IS" FOR WHICH + NO WARRANTIES AS TO CAPABILITIES OR ACCURACY ARE MADE. INDIANA + UNIVERSITY GIVES NO WARRANTIES AND MAKES NO REPRESENTATION THAT + SOFTWARE IS FREE OF INFRINGEMENT OF THIRD PARTY PATENT, COPYRIGHT, OR + OTHER PROPRIETARY RIGHTS. INDIANA UNIVERSITY MAKES NO WARRANTIES THAT + SOFTWARE IS FREE FROM "BUGS", "VIRUSES", "TROJAN HORSES", "TRAP + DOORS", "WORMS", OR OTHER HARMFUL CODE. LICENSEE ASSUMES THE ENTIRE + RISK AS TO THE PERFORMANCE OF SOFTWARE AND/OR ASSOCIATED MATERIALS, + AND TO THE PERFORMANCE AND VALIDITY OF INFORMATION GENERATED USING + SOFTWARE. json: indiana-extreme-1.2.json - yml: indiana-extreme-1.2.yml + yaml: indiana-extreme-1.2.yml html: indiana-extreme-1.2.html - text: indiana-extreme-1.2.LICENSE + license: indiana-extreme-1.2.LICENSE - license_key: infineon-free + category: Permissive spdx_license_key: LicenseRef-scancode-infineon-free other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + No Warranty + 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. + + 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. json: infineon-free.json - yml: infineon-free.yml + yaml: infineon-free.yml html: infineon-free.html - text: infineon-free.LICENSE + license: infineon-free.LICENSE - license_key: info-zip + category: Permissive spdx_license_key: Info-ZIP other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Info-Zip License + + This is version 1999-Oct-05 of the Info-ZIP copyright and license. The definitive version of this document should be available at ftp://ftp.cdrom.com/pub/infozip/license.html indefinitely. + + Copyright (c) 1990-1999 Info-ZIP. All rights reserved. + + For the purposes of this copyright and license, "Info-ZIP" is defined as the following set of individuals: + + Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois, Jean-loup Gailly, Hunter Goatley, Ian Gorman, Chris Herborth, Dirk Haase, Greg Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz, David Kirschbaum, Johnny Lee, Onno van der Linden, Igor Mandrichenko, Steve P. Miller, Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs, Kai Uwe Rommel, Steve Salisbury, Dave Smith, Christian Spieler, Antoine Verheijen, Paul von Behren, Rich Wales, Mike White + + This software is provided "as is," without warranty of any kind, express or implied. In no event shall Info-ZIP or its contributors be held liable for any direct, indirect, incidental, special or consequential damages arising out of the use of or inability to use 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. Redistributions of source code must retain the above copyright notice, definition, disclaimer, and this list of conditions. + + 2. Redistributions in binary form must reproduce the above copyright notice, definition, disclaimer, and this list of conditions in documentation and/or other materials provided with the distribution. + + 3. Altered versions--including, but not limited to, ports to new operating systems, existing ports with new graphical interfaces, and dynamic, shared, or static library versions--must be plainly marked as such and must not be misrepresented as being the original source. Such altered versions also must not be misrepresented as being Info-ZIP releases--including, but not limited to, labeling of the altered versions with the names "Info-ZIP" (or any variation thereof, including, but not limited to, different capitalizations), "Pocket UnZip," "WiZ" or "MacZip" without the explicit permission of Info-ZIP. Such altered versions are further prohibited from misrepresentative use of theZip-Bugs or Info-ZIP e-mail addresses or of the Info-ZIP URL(s). + + 4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its own source and binary releases. json: info-zip.json - yml: info-zip.yml + yaml: info-zip.yml html: info-zip.html - text: info-zip.LICENSE + license: info-zip.LICENSE - license_key: info-zip-1997-10 + category: Permissive spdx_license_key: LicenseRef-scancode-info-zip-1997-10 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This is the Info-ZIP file COPYING (for UnZip), last updated 5 Oct 97.\n\n\nThere are\ + \ currently six explicit copyrights on portions of UnZip\ncode (at least, of which Info-ZIP\ + \ is aware): the original Sam Smith\ncopyright on unzip 2.0, upon which Info-ZIP's UnZip\ + \ 3.0 was based;\nIgor Mandrichenko's copyright on his routines in vms.c; Greg Roelofs'\n\ + copyright on zipinfo.c and the new version of unshrink.c; Mike White's\ncopyright on the\ + \ Windows DLL code (windll/*); Steve P. Miller's\ncopyright on the Pocket UnZip GUI (wince/*);\ + \ and Norbert Pueschel's\ncopyright on the Amiga time.lib code. In addition, Mark Adler\ + \ has\nplaced inflate.h, inflate.c, explode.c and funzip.c into the public\ndomain; i.e.,\ + \ these files may be used without any restrictions beyond\nthose of simple courtesy (credit\ + \ where it's due). All of these are\ndiscussed immediately below. The remaining code is\ + \ covered by an im-\nplicit copyright under US law. Frequently Asked Questions regarding\n\ + (re)distribution of Zip and UnZip are near the end of this file.\n\nThere are no known patents\ + \ on any of the code in UnZip. Unisys\nclaims a patent on LZW encoding and on LZW decoding\ + \ _in an apparatus\nthat performs LZW encoding_, but the patent appears to exempt a stand-\n\ + alone decoder (as in UnZip's unshrink.c). Unisys has publicly claimed\notherwise, but the\ + \ issue has never been tested in court. Since this\npoint is unclear, unshrinking is not\ + \ enabled by default. It is the\nresponsibility of the user to make his or her peace with\ + \ Unisys and\nits licensing requirements. (unshrink.c may be removed from future\nreleases\ + \ altogether.)\n\n\nThe original unzip source code has been extensively modified and\nalmost\ + \ entirely rewritten (changes include random zipfile access\nrather than sequential; replacement\ + \ of unimplode() with explode();\nreplacement of old unshrink() with new (unrelated) unshrink();\ + \ re-\nplacement of output routines; addition of inflate(), wildcards,\nfilename-mapping,\ + \ text translation, ...; etc.). As far as we can\ntell, the only remaining code that is\ + \ substantially similar to\nMr. Smith's is that in the file unreduce.c, which now by default\n\ + is NOT compiled. The following copyright applies to unreduce.c:\n\n * Copyright 1989 Samuel\ + \ H. Smith; All rights reserved\n *\n * Do not distribute modified versions without my\ + \ permission.\n * Do not remove or alter this notice or any other copyright notice.\n \ + \ * If you use this in your own program you must distribute source code.\n * Do not use\ + \ any of this in a commercial product.\n\nRegarding the first stipulation, Mr. Smith was\ + \ tracked down in southern\nCalifornia some years back [Samuel H. Smith, The Tool Shop;\ + \ as of mid-\nMay 1994, (213) 851-9969 (voice), (213) 887-2127(?) (subscription BBS),\n\ + 71150.2731@compuserve.com]:\n\n\"He says that he thought that whoever contacted him understood\ + \ that\n he has no objection to the Info-ZIP group's inclusion of his code.\n His primary\ + \ concern is that it remain freely distributable, he said.\"\n\nDespite the fact that our\ + \ \"normal\" code has been entirely rewritten\nand by default no longer contains any of\ + \ Mr. Smith's code, Info-ZIP\nremains indebted and grateful to him. We hope he finds our\ + \ contribu-\ntions as useful as we have his.\n\nNote that the third and fourth stipulations\ + \ still apply to any com-\npany that wishes to incorporate the unreduce code into its products;\n\ + if you wish to do so, you must contact Mr. Smith directly regarding\nlicensing.\n\n\nThe\ + \ following copyright applies to most of the VMS code in vms.c,\ndistributed with UnZip\ + \ version 4.2 and later:\n\n * Copyright (c) 1992 Igor Mandrichenko.\n * Permission is\ + \ granted to any individual or institution to use,\n * copy, or redistribute this software\ + \ so long as all of the orig-\n * inal files are included unmodified, that it is not sold\ + \ for\n * profit, and that this copyright notice is retained.\n\n\nThe following copyright\ + \ applies to the new version of unshrink.c,\ndistributed with UnZip version 5.2 and later:\n\ + \n * Copyright (c) 1994 Greg Roelofs.\n * Permission is granted to any individual/institution/corporate\n\ + \ * entity to use, copy, redistribute or modify this software for\n * any purpose whatsoever,\ + \ subject to the conditions noted in the\n * Frequently Asked Questions section below,\ + \ plus one additional\n * condition: namely, that my name not be removed from the source\n\ + \ * code. (Other names may, of course, be added as modifications\n * are made.) Corporate\ + \ legal staff (like at IBM :-) ) who have\n * problems understanding this can contact me\ + \ through Zip-Bugs...\n\n\nThe following copyright applies to the Windows DLL code (windll/*),\n\ + distributed with UnZip version 5.2 and later:\n\n * Copyright (c) 1996 Mike White.\n *\ + \ Permission is granted to any individual or institution to use,\n * copy, or redistribute\ + \ this software so long as all of the original\n * files are included, that it is not sold\ + \ for profit, and that this\n * copyright notice is retained.\n\n\nThe following copyright\ + \ applies to the Windows CE GUI port, ``Pocket\nUnZip,'' distributed with UnZip version\ + \ 5.3 and later:\n\n * All the source files for Pocket UnZip, except for components\n \ + \ * written by the Info-ZIP group, are copyrighted 1997 by Steve P.\n * Miller. The product\ + \ \"Pocket UnZip\" itself is property of the\n * author and cannot be altered in any way\ + \ without written consent\n * from Steve P. Miller.\n\n\nThe following copyright applies\ + \ to the Amiga time code (amiga/time_lib.c),\ndistributed with UnZip version 5.32 and later:\n\ + \n * This source is copyrighted by Norbert Pueschel,\n * .\n\ + \ * From 'clockdaemon.readme' (available from Aminet, including\n * ftp://ftp.wustl.edu/pub/aminet/util/time/clockdaemon.lha):\n\ + \ * \"The original SAS/C functions gmtime, localtime, mktime and time\n * do not work\ + \ correctly. The supplied link library time.lib contains\n * replacement functions for\ + \ them.\"\n * Permission is granted to the Info-ZIP group to redistribute the\n * time.lib\ + \ source. The use of time.lib functions in own, noncommerical\n * programs is permitted.\ + \ It is only required to add the timezone.doc\n * to such a distribution. Using the time.lib\ + \ library in commerical\n * software (including shareware) is only permitted after prior\n\ + \ * consultation of the author.\n\n\nThe remaining code was written by many people associated\ + \ with the\nInfo-ZIP group, with large contributions from (but not limited to):\nGreg Roelofs\ + \ (overall program logic, ZipInfo, unshrink, filename\nmapping/portability, etc.), Mark\ + \ Adler (inflate, explode, funzip),\nKai Uwe Rommel (OS/2), John Bush and Paul Kienitz (Amiga),\ + \ Antoine\nVerheijen (Macintosh), Hunter Goatley (more VMS), Mike White (Windows\nDLLs),\ + \ Christian Spieler (overall logic, optimization, VMS, etc.) and\nothers. See the file\ + \ CONTRIBS in the source distribution for a much\nmore complete list of contributors. As\ + \ noted above, Mark Adler's\ninflate.[ch], explode.c and funzip.c are in the public domain,\ + \ and\neverything that isn't otherwise accounted for is implicitly copy-\nrighted by Info-ZIP.\ + \ In other words, use it with our blessings, but\nit's still our code. Thank you!\n\n\ + -----------------------------------------------------------------------\n\nFrequently Asked\ + \ Questions about distributing Zip and UnZip:\n\n\nQ. Can I distribute Zip and UnZip sources\ + \ and/or executables?\n\nA. You may redistribute the latest official distributions without\n\ + \ any modification, and without even asking us for permission.\n (Note that an \"executable\ + \ distribution\" includes documentation,\n even if it's in a separate zipfile; plain executables\ + \ do NOT\n count.) You can charge for the cost of the media (CDROM, disk-\n ettes,\ + \ etc.), the compilation (e.g., of a software archive),\n and a small copying fee. Distributed\ + \ archives should follow\n the naming conventions used in the `WHERE' file. If you want\n\ + \ to distribute modified versions, please contact us at\n Zip-Bugs@lists.wku.edu first.\ + \ You must not distribute beta\n versions without explicit permission to do so.\n\n\n\ + Q. Can I use the executables (or DLLs) of Zip and UnZip to distribute\n my software?\n\ + \nA. Yes, so long as it is clear that Zip and UnZip are not being\n sold, that the source\ + \ code is freely available, and that there\n are no extra or hidden charges resulting\ + \ from its use by or in-\n clusion with the commercial product. Here is an example of\ + \ a\n suitable notice:\n\n NOTE: is packaged on this CD using Info-ZIP's\n\ + \ compression utility. The installation program uses UnZip\n to read zip files\ + \ from the CD. Info-ZIP's software (Zip,\n UnZip and related utilities) is free and\ + \ can be obtained\n as source code or executables from Internet/WWW sites,\n including\ + \ http://www.cdrom.com/pub/infozip/ .\n\n If the distribution is being done with UnZipSFX\ + \ instead of a DLL\n or stand-alone copy of UnZip (i.e., as one or more self-extracting\n\ + \ archives), no notice is required as long as the normal UnZipSFX\n banner has not been\ + \ removed.\n\n\nQ. Can I use the source code of Zip and UnZip in my commercial\n application?\n\ + \nA. Yes, so long as you include in your product an acknowledgment; a\n pointer to the\ + \ original, free compression sources; and a statement\n making it clear that there are\ + \ no extra or hidden charges resulting\n from the use of our compression code in your\ + \ product (see below for\n an example). The acknowledgment should appear in at least\ + \ one piece \n of human-readable documentation (e.g., a README file or man page),\n \ + \ although additionally putting it in the executable(s) is OK, too.\n In other words,\ + \ you are allowed to sell only your own work, not ours,\n and we'd like a little credit.\ + \ (Note the additional restrictions\n above on the code in unreduce.c, unshrink.c, vms.c,\ + \ time_lib.c, and\n everything in the wince and windll subdirectories.) Contact us at\n\ + \ Zip-Bugs@lists.wku.edu if you have special requirements. We also\n like to hear when\ + \ our code is being used, but we don't require that.\n\n incorporates compression\ + \ code from the Info-ZIP group.\n There are no extra charges or costs due to the use\ + \ of this code,\n and the original compression sources are freely available from\n\ + \ http://www.cdrom.com/pub/infozip/ or ftp://ftp.cdrom.com/pub/infozip/\n on the\ + \ Internet.\n\n If you only need compression capability, not full zipfile support,\n \ + \ you might want to look at zlib instead; it has fewer restrictions\n on commercial use.\ + \ See http://www.cdrom.com/pub/infozip/zlib/ ." json: info-zip-1997-10.json - yml: info-zip-1997-10.yml + yaml: info-zip-1997-10.yml html: info-zip-1997-10.html - text: info-zip-1997-10.LICENSE + license: info-zip-1997-10.LICENSE - license_key: info-zip-2001-01 + category: Permissive spdx_license_key: LicenseRef-scancode-info-zip-2001-01 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This is version 2001-Jan-27 of the Info-ZIP copyright and license. + The definitive version of this document should be available at + ftp://ftp.info-zip.org/pub/infozip/license.html indefinitely. + + + Copyright (c) 1990-2001 Info-ZIP. All rights reserved. + + For the purposes of this copyright and license, "Info-ZIP" is defined as + the following set of individuals: + + Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois, + Jean-loup Gailly, Hunter Goatley, Ian Gorman, Chris Herborth, Dirk Haase, + Greg Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz, David Kirschbaum, + Johnny Lee, Onno van der Linden, Igor Mandrichenko, Steve P. Miller, + Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs, Kai Uwe Rommel, + Steve Salisbury, Dave Smith, Christian Spieler, Antoine Verheijen, + Paul von Behren, Rich Wales, Mike White + + This software is provided "as is," without warranty of any kind, express + or implied. In no event shall Info-ZIP or its contributors be held liable + for any direct, indirect, incidental, special or consequential damages + arising out of the use of or inability to use 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. Redistributions of source code must retain the above copyright notice, + definition, disclaimer, and this list of conditions. + + 2. Redistributions in binary form must reproduce the above copyright + notice, definition, disclaimer, and this list of conditions in + documentation and/or other materials provided with the distribution. + + 3. Altered versions--including, but not limited to, ports to new operating + systems, existing ports with new graphical interfaces, and dynamic, + shared, or static library versions--must be plainly marked as such + and must not be misrepresented as being the original source. Such + altered versions also must not be misrepresented as being Info-ZIP + releases--including, but not limited to, labeling of the altered + versions with the names "Info-ZIP" (or any variation thereof, including, + but not limited to, different capitalizations), "Pocket UnZip," "WiZ" + or "MacZip" without the explicit permission of Info-ZIP. Such altered + versions are further prohibited from misrepresentative use of the + Zip-Bugs or Info-ZIP e-mail addresses or of the Info-ZIP URL(s). + + 4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," + "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its own source and + binary releases. json: info-zip-2001-01.json - yml: info-zip-2001-01.yml + yaml: info-zip-2001-01.yml html: info-zip-2001-01.html - text: info-zip-2001-01.LICENSE + license: info-zip-2001-01.LICENSE - license_key: info-zip-2002-02 + category: Permissive spdx_license_key: LicenseRef-scancode-info-zip-2002-02 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This is version 2002-Feb-16 of the Info-ZIP copyright and license. + The definitive version of this document should be available at + ftp://ftp.info-zip.org/pub/infozip/license.html indefinitely. + + + Copyright (c) 1990-2002 Info-ZIP. All rights reserved. + + For the purposes of this copyright and license, "Info-ZIP" is defined as + the following set of individuals: + + Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois, + Jean-loup Gailly, Hunter Goatley, Ian Gorman, Chris Herborth, Dirk Haase, + Greg Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz, David Kirschbaum, + Johnny Lee, Onno van der Linden, Igor Mandrichenko, Steve P. Miller, + Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs, Kai Uwe Rommel, + Steve Salisbury, Dave Smith, Christian Spieler, Antoine Verheijen, + Paul von Behren, Rich Wales, Mike White + + This software is provided "as is," without warranty of any kind, express + or implied. In no event shall Info-ZIP or its contributors be held liable + for any direct, indirect, incidental, special or consequential damages + arising out of the use of or inability to use 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. Redistributions of source code must retain the above copyright notice, + definition, disclaimer, and this list of conditions. + + 2. Redistributions in binary form (compiled executables) must reproduce + the above copyright notice, definition, disclaimer, and this list of + conditions in documentation and/or other materials provided with the + distribution. The sole exception to this condition is redistribution + of a standard UnZipSFX binary as part of a self-extracting archive; + that is permitted without inclusion of this license, as long as the + normal UnZipSFX banner has not been removed from the binary or disabled. + + 3. Altered versions--including, but not limited to, ports to new operating + systems, existing ports with new graphical interfaces, and dynamic, + shared, or static library versions--must be plainly marked as such + and must not be misrepresented as being the original source. Such + altered versions also must not be misrepresented as being Info-ZIP + releases--including, but not limited to, labeling of the altered + versions with the names "Info-ZIP" (or any variation thereof, including, + but not limited to, different capitalizations), "Pocket UnZip," "WiZ" + or "MacZip" without the explicit permission of Info-ZIP. Such altered + versions are further prohibited from misrepresentative use of the + Zip-Bugs or Info-ZIP e-mail addresses or of the Info-ZIP URL(s). + + 4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," + "UnZipSFX," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its + own source and binary releases. json: info-zip-2002-02.json - yml: info-zip-2002-02.yml + yaml: info-zip-2002-02.yml html: info-zip-2002-02.html - text: info-zip-2002-02.LICENSE + license: info-zip-2002-02.LICENSE - license_key: info-zip-2003-05 + category: Permissive spdx_license_key: LicenseRef-scancode-info-zip-2003-05 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This is version 2003-May-08 of the Info-ZIP copyright and license. + The definitive version of this document should be available at + ftp://ftp.info-zip.org/pub/infozip/license.html indefinitely. + + + Copyright (c) 1990-2003 Info-ZIP. All rights reserved. + + For the purposes of this copyright and license, "Info-ZIP" is defined as + the following set of individuals: + + Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois, + Jean-loup Gailly, Hunter Goatley, Ian Gorman, Chris Herborth, Dirk Haase, + Greg Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz, David Kirschbaum, + Johnny Lee, Onno van der Linden, Igor Mandrichenko, Steve P. Miller, + Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs, Kai Uwe Rommel, + Steve Salisbury, Dave Smith, Christian Spieler, Antoine Verheijen, + Paul von Behren, Rich Wales, Mike White + + This software is provided "as is," without warranty of any kind, express + or implied. In no event shall Info-ZIP or its contributors be held liable + for any direct, indirect, incidental, special or consequential damages + arising out of the use of or inability to use 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. Redistributions of source code must retain the above copyright notice, + definition, disclaimer, and this list of conditions. + + 2. Redistributions in binary form (compiled executables) must reproduce + the above copyright notice, definition, disclaimer, and this list of + conditions in documentation and/or other materials provided with the + distribution. The sole exception to this condition is redistribution + of a standard UnZipSFX binary (including SFXWiz) as part of a + self-extracting archive; that is permitted without inclusion of this + license, as long as the normal SFX banner has not been removed from + the binary or disabled. + + 3. Altered versions--including, but not limited to, ports to new operating + systems, existing ports with new graphical interfaces, and dynamic, + shared, or static library versions--must be plainly marked as such + and must not be misrepresented as being the original source. Such + altered versions also must not be misrepresented as being Info-ZIP + releases--including, but not limited to, labeling of the altered + versions with the names "Info-ZIP" (or any variation thereof, including, + but not limited to, different capitalizations), "Pocket UnZip," "WiZ" + or "MacZip" without the explicit permission of Info-ZIP. Such altered + versions are further prohibited from misrepresentative use of the + Zip-Bugs or Info-ZIP e-mail addresses or of the Info-ZIP URL(s). + + 4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," + "UnZipSFX," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its + own source and binary releases. json: info-zip-2003-05.json - yml: info-zip-2003-05.yml + yaml: info-zip-2003-05.yml html: info-zip-2003-05.html - text: info-zip-2003-05.LICENSE + license: info-zip-2003-05.LICENSE - license_key: info-zip-2004-05 + category: Permissive spdx_license_key: LicenseRef-scancode-info-zip-2004-05 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This is version 2004-May-22 of the Info-ZIP copyright and license. The + definitive version of this document should be available at ftp://ftp.info- + zip.org/pub/infozip/license.html indefinitely. + + Copyright (c) 1990-2004 Info-ZIP. All rights reserved. + + For the purposes of this copyright and license, "Info-ZIP" is defined as the + following set of individuals: + + Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois, Jean- + loup Gailly, Hunter Goatley, Ian Gorman, Chris Herborth, Dirk Haase, Greg + Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz, David Kirschbaum, + Johnny Lee, Onno van der Linden, Igor Mandrichenko, Steve P. Miller, Sergio + Monesi, Keith Owens, George Petrov, Greg Roelofs, Kai Uwe Rommel, Steve + Salisbury, Dave Smith, Christian Spieler, Antoine Verheijen, Paul von + Behren, Rich Wales, Mike White + + This software is provided "as is," without warranty of any kind, express or + implied. In no event shall Info-ZIP or its contributors be held liable for any + direct, indirect, incidental, special or consequential damages arising out of + the use of or inability to use 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: + + Redistributions of source code must retain the above copyright notice, + definition, disclaimer, and this list of conditions. + + Redistributions in binary form (compiled executables) must reproduce the + above copyright notice, definition, disclaimer, and this list of conditions + in documentation and/or other materials provided with the distribution. The + sole exception to this condition is redistribution of a standard UnZipSFX + binary (including SFXWiz) as part of a self-extracting archive; that is + permitted without inclusion of this license, as long as the normal SFX + banner has not been removed from the binary or disabled. + + Altered versions--including, but not limited to, ports to new operating + systems, existing ports with new graphical interfaces, and dynamic, shared, + or static library versions--must be plainly marked as such and must not be + misrepresented as being the original source. Such altered versions also must + not be misrepresented as being Info-ZIP releases--including, but not limited + to, labeling of the altered versions with the names "Info-ZIP" (or any + variation thereof, including, but not limited to, different + capitalizations), "Pocket UnZip," "WiZ" or "MacZip" without the explicit + permission of Info-ZIP. Such altered versions are further prohibited from + misrepresentative use of the Zip-Bugs or Info-ZIP e-mail addresses or of the + Info-ZIP URL(s). + + Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," + "UnZipSFX," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its own + source and binary releases. json: info-zip-2004-05.json - yml: info-zip-2004-05.yml + yaml: info-zip-2004-05.yml html: info-zip-2004-05.html - text: info-zip-2004-05.LICENSE + license: info-zip-2004-05.LICENSE - license_key: info-zip-2005-02 + category: Permissive spdx_license_key: LicenseRef-scancode-info-zip-2005-02 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This is version 2005-Feb-10 of the Info-ZIP copyright and license. + The definitive version of this document should be available at + ftp://ftp.info-zip.org/pub/infozip/license.html indefinitely. + + + Copyright (c) 1990-2005 Info-ZIP. All rights reserved. + + For the purposes of this copyright and license, "Info-ZIP" is defined as + the following set of individuals: + + Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois, + Jean-loup Gailly, Hunter Goatley, Ed Gordon, Ian Gorman, Chris Herborth, + Dirk Haase, Greg Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz, + David Kirschbaum, Johnny Lee, Onno van der Linden, Igor Mandrichenko, + Steve P. Miller, Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs, + Kai Uwe Rommel, Steve Salisbury, Dave Smith, Steven M. Schweda, + Christian Spieler, Cosmin Truta, Antoine Verheijen, Paul von Behren, + Rich Wales, Mike White + + This software is provided "as is," without warranty of any kind, express + or implied. In no event shall Info-ZIP or its contributors be held liable + for any direct, indirect, incidental, special or consequential damages + arising out of the use of or inability to use 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. Redistributions of source code must retain the above copyright notice, + definition, disclaimer, and this list of conditions. + + 2. Redistributions in binary form (compiled executables) must reproduce + the above copyright notice, definition, disclaimer, and this list of + conditions in documentation and/or other materials provided with the + distribution. The sole exception to this condition is redistribution + of a standard UnZipSFX binary (including SFXWiz) as part of a + self-extracting archive; that is permitted without inclusion of this + license, as long as the normal SFX banner has not been removed from + the binary or disabled. + + 3. Altered versions--including, but not limited to, ports to new operating + systems, existing ports with new graphical interfaces, and dynamic, + shared, or static library versions--must be plainly marked as such + and must not be misrepresented as being the original source. Such + altered versions also must not be misrepresented as being Info-ZIP + releases--including, but not limited to, labeling of the altered + versions with the names "Info-ZIP" (or any variation thereof, including, + but not limited to, different capitalizations), "Pocket UnZip," "WiZ" + or "MacZip" without the explicit permission of Info-ZIP. Such altered + versions are further prohibited from misrepresentative use of the + Zip-Bugs or Info-ZIP e-mail addresses or of the Info-ZIP URL(s). + + 4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," + "UnZipSFX," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its + own source and binary releases. json: info-zip-2005-02.json - yml: info-zip-2005-02.yml + yaml: info-zip-2005-02.yml html: info-zip-2005-02.html - text: info-zip-2005-02.LICENSE + license: info-zip-2005-02.LICENSE - license_key: info-zip-2007-03 + category: Permissive spdx_license_key: LicenseRef-scancode-info-zip-2007-03 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This is version 2007-Mar-4 of the Info-ZIP license. + The definitive version of this document should be available at + ftp://ftp.info-zip.org/pub/infozip/license.html indefinitely and + a copy at http://www.info-zip.org/pub/infozip/license.html. + + + Copyright (c) 1990-2007 Info-ZIP. All rights reserved. + + For the purposes of this copyright and license, "Info-ZIP" is defined as + the following set of individuals: + + Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois, + Jean-loup Gailly, Hunter Goatley, Ed Gordon, Ian Gorman, Chris Herborth, + Dirk Haase, Greg Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz, + David Kirschbaum, Johnny Lee, Onno van der Linden, Igor Mandrichenko, + Steve P. Miller, Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs, + Kai Uwe Rommel, Steve Salisbury, Dave Smith, Steven M. Schweda, + Christian Spieler, Cosmin Truta, Antoine Verheijen, Paul von Behren, + Rich Wales, Mike White. + + This software is provided "as is," without warranty of any kind, express + or implied. In no event shall Info-ZIP or its contributors be held liable + for any direct, indirect, incidental, special or consequential damages + arising out of the use of or inability to use 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 above disclaimer and the following restrictions: + + 1. Redistributions of source code (in whole or in part) must retain + the above copyright notice, definition, disclaimer, and this list + of conditions. + + 2. Redistributions in binary form (compiled executables and libraries) + must reproduce the above copyright notice, definition, disclaimer, + and this list of conditions in documentation and/or other materials + provided with the distribution. The sole exception to this condition + is redistribution of a standard UnZipSFX binary (including SFXWiz) as + part of a self-extracting archive; that is permitted without inclusion + of this license, as long as the normal SFX banner has not been removed + from the binary or disabled. + + 3. Altered versions--including, but not limited to, ports to new operating + systems, existing ports with new graphical interfaces, versions with + modified or added functionality, and dynamic, shared, or static library + versions not from Info-ZIP--must be plainly marked as such and must not + be misrepresented as being the original source or, if binaries, + compiled from the original source. Such altered versions also must not + be misrepresented as being Info-ZIP releases--including, but not + limited to, labeling of the altered versions with the names "Info-ZIP" + (or any variation thereof, including, but not limited to, different + capitalizations), "Pocket UnZip," "WiZ" or "MacZip" without the + explicit permission of Info-ZIP. Such altered versions are further + prohibited from misrepresentative use of the Zip-Bugs or Info-ZIP + e-mail addresses or the Info-ZIP URL(s), such as to imply Info-ZIP + will provide support for the altered versions. + + 4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," + "UnZipSFX," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its + own source and binary releases. json: info-zip-2007-03.json - yml: info-zip-2007-03.yml + yaml: info-zip-2007-03.yml html: info-zip-2007-03.html - text: info-zip-2007-03.LICENSE + license: info-zip-2007-03.LICENSE - license_key: info-zip-2009-01 + category: Permissive spdx_license_key: LicenseRef-scancode-info-zip-2009-01 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This is version 2009-Jan-02 of the Info-ZIP license. The definitive version of + this document should be available at ftp://ftp.info- + zip.org/pub/infozip/license.html indefinitely and a copy at http://www.info- + zip.org/pub/infozip/license.html. + + Copyright (c) 1990-2009 Info-ZIP. All rights reserved. + + For the purposes of this copyright and license, "Info-ZIP" is defined as the + following set of individuals: + + Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois, Jean- + loup Gailly, Hunter Goatley, Ed Gordon, Ian Gorman, Chris Herborth, Dirk + Haase, Greg Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz, David + Kirschbaum, Johnny Lee, Onno van der Linden, Igor Mandrichenko, Steve P. + Miller, Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs, Kai Uwe + Rommel, Steve Salisbury, Dave Smith, Steven M. Schweda, Christian Spieler, + Cosmin Truta, Antoine Verheijen, Paul von Behren, Rich Wales, Mike White. + + This software is provided "as is," without warranty of any kind, express or + implied. In no event shall Info-ZIP or its contributors be held liable for any + direct, indirect, incidental, special or consequential damages arising out of + the use of or inability to use 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 above disclaimer and the following restrictions: + + Redistributions of source code (in whole or in part) must retain the above + copyright notice, definition, disclaimer, and this list of conditions. + + Redistributions in binary form (compiled executables and libraries) must + reproduce the above copyright notice, definition, disclaimer, and this list + of conditions in documentation and/or other materials provided with the + distribution. Additional documentation is not needed for executables where a + command line license option provides these and a note regarding this option + is in the executable's startup banner. The sole exception to this condition + is redistribution of a standard UnZipSFX binary (including SFXWiz) as part + of a self-extracting archive; that is permitted without inclusion of this + license, as long as the normal SFX banner has not been removed from the + binary or disabled. + + Altered versions--including, but not limited to, ports to new operating + systems, existing ports with new graphical interfaces, versions with + modified or added functionality, and dynamic, shared, or static library + versions not from Info-ZIP--must be plainly marked as such and must not be + misrepresented as being the original source or, if binaries, compiled from + the original source. Such altered versions also must not be misrepresented + as being Info-ZIP releases--including, but not limited to, labeling of the + altered versions with the names "Info-ZIP" (or any variation thereof, + including, but not limited to, different capitalizations), "Pocket UnZip," + "WiZ" or "MacZip" without the explicit permission of Info-ZIP. Such altered + versions are further prohibited from misrepresentative use of the Zip-Bugs + or Info-ZIP e-mail addresses or the Info-ZIP URL(s), such as to imply Info- + ZIP will provide support for the altered versions. + + Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," + "UnZipSFX," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its own + source and binary releases. json: info-zip-2009-01.json - yml: info-zip-2009-01.yml + yaml: info-zip-2009-01.yml html: info-zip-2009-01.html - text: info-zip-2009-01.LICENSE + license: info-zip-2009-01.LICENSE - license_key: infonode-1.1 + category: Commercial spdx_license_key: LicenseRef-scancode-infonode-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + InfoNode Software License Version 1.1 + + 1. Definitions + + "Work" shall mean the work that the copyright holder has made available under this license, as indicated by a notice included in or attached to the work. + "NNL" shall mean NNL Technology AB. + + 2. License Grants + + You may copy and distribute the Work together with a product if all persons that have developed any part of the product that uses functionality of the Work directly or indirectly (i.e. uses software that directly or indirectly uses functionality of the Work) have purchased a developer license for the Work. For example, if developer A has developed software that uses the Work, and developer B has developed a product part that uses A's software, both A and B need to have purchased a developer license for the Work. + + You are allowed to use an obfuscator like ProGuard (http://proguard.sourceforge.net) to obfuscate the Work together with a product that uses the Work. No support is provided by NNL for the obfuscated result. + + 3. License Restrictions + + A product that uses the Work may not directly or indirectly expose any functionality of the Work to other components that are not a part of the product, including, but not limited to, other programs, libraries and plug-ins. + You may not transfer the grants of this license to anyone. The grants apply to you and noone else. + You may not grant any rights, including distribution rights, for the Work or any part of the Work to anyone. + You may not alter, split, merge, modify, adapt, decompile, reverse engineer, disassemble or translate the Work or any part of the Work. The only exception is obfuscation as described in section 2.2. + You may not sell, rent or lease the Work or any part of the Work. + In the event that you fail to comply with this license, NNL may terminate the license and you must destroy all copies of the Work. + + The Work is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. This license grants you limited use of the Work. NNL retain all right, title and interest, including all copyright and intellectual property rights, in and to, the Work and all copies thereof. All rights not specifically granted in this license, including Federal and International Copyrights, are reserved by NNL. + + 4. Warranty Disclaimer + + The Work is provided to you "as is". NNL provides no warranty for the Work. NNL is not, under any circumstances, liable for any damage, or any other events, arising directly or indirectly out of the use of the Work or any software using the Work. + + Copyright (c) 2004 NNL Technology AB, www.nnl.se json: infonode-1.1.json - yml: infonode-1.1.yml + yaml: infonode-1.1.yml html: infonode-1.1.html - text: infonode-1.1.LICENSE + license: infonode-1.1.LICENSE - license_key: initial-developer-public + category: Copyleft spdx_license_key: LicenseRef-scancode-initial-developer-public other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "Initial Developer's Public License Version 1.0\n1. Definitions\n\n1.0 \"Commercial\ + \ Use\" means distribution or otherwise making the Covered\nCode available to a third party.\n\ + \n1.1 \"Contributor\" means each entity that creates or contributes to the\ncreation of\ + \ Modifications.\n\n1.2 \"Contributor Version\" means the combination of the Original Code,\n\ + prior Modifications used by a Contributor, and the Modifications made by\nthat particular\ + \ Contributor.\n\n1.3. \"Covered Code\" means the Original Code or Modifications or the\n\ + combination of the Original Code and Modifications, in each case\nincluding portions thereof.\n\ + \n1.4. \"Electronic Distribution Mechanism\" means a mechanism generally\naccepted in the\ + \ software development community for the electronic\ntransfer of data.\n\n1.5. \"Executable\"\ + \ means Covered Code in any form other than Source Code.\n\n1.6. \"Initial Developer\" means\ + \ the individual or entity identified as\nthe Initial Developer in the Source Code notice\ + \ required by Exhibit A.\n\n1.7. \"Larger Work\" means a work which combines Covered Code\ + \ or portions\nthereof with code not governed by the terms of this License.\n\n1.8. \"License\"\ + \ means this document.\n\n1.8.1. \"Licensable\" means having the right to grant, to the\ + \ maximum\nextent possible, whether at the time of the initial grant or\nsubsequently acquired,\ + \ any and all of the rights conveyed herein.\n\n1.9. \"Modifications\" means any addition\ + \ to or deletion from the\nsubstance or structure of either the Original Code or any previous\n\ + Modifications. When Covered Code is released as a series of files, a\nModification is:\n\ + \nAny addition to or deletion from the contents of a file containing\nOriginal Code or previous\ + \ Modifications.\n\nAny new file that contains any part of the Original Code or previous\n\ + Modifications.\n\n1.10. \"Original Code\" means Source Code of computer software code which\n\ + is described in the Source Code notice required by Exhibit A as Original\nCode, and which,\ + \ at the time of its release under this License is not\nalready Covered Code governed by\ + \ this License.\n\n1.10.1. \"Patent Claims\" means any patent claim(s), now owned or\nhereafter\ + \ acquired, including without limitation, method, process, and\napparatus claims, in any\ + \ patent Licensable by grantor.\n\n1.11. \"Source Code\" means the preferred form of the\ + \ Covered Code for\nmaking modifications to it, including all modules it contains, plus\ + \ any\nassociated interface definition files, scripts used to control\ncompilation and installation\ + \ of an Executable, or source code\ndifferential comparisons against either the Original\ + \ Code or another\nwell known, available Covered Code of the Contributor's choice. The\n\ + Source Code can be in a compressed or archival form, provided the\nappropriate decompression\ + \ or de-archiving software is widely available\nfor no charge.\n\n1.12. \"You\" (or \"Your\"\ + ) means an individual or a legal entity exercising\nrights under, and complying with all\ + \ of the terms of, this License or a\nfuture version of this License issued under Section\ + \ 6.1. For legal\nentities, \"You\" includes any entity w hich controls, is controlled by,\n\ + or is under common control with You. For purposes of this definition,\n\"control\" means\ + \ (a) the power, direct or indirect, to cause the\ndirection or management of such entity,\ + \ whether by contract or\notherwise, or (b) ownership of more than fifty percent (50%) of\ + \ the\noutstanding shares or beneficial ownership of such entity.\n\n2. Source Code License.\n\ + \n2.1. The Initial Developer Grant. The Initial Developer hereby grants\nYou a world-wide,\ + \ royalty-free, non-exclusive license, subject to third\nparty intellectual property claims:\n\ + \n(a) under intellectual property rights (other than patent or trademark)\nLicensable by\ + \ Initial Developer to use, reproduce, modify, display,\nperform, sublicense and distribute\ + \ the Original Code (or portions\nthereof) with or without Modifications, and/or as part\ + \ of a Larger Work;\nand\n\n(b) under Patents Claims infringed by the making, using or selling\ + \ of\nOriginal Code, to make, have made, use, practice, sell, and offer for\nsale, and/or\ + \ otherwise dispose of the Original Code (or portions\nthereof).\n\n(c) the licenses granted\ + \ in this Section 2.1(a) and (b) are effective on\nthe date Initial Developer first distributes\ + \ Original Code under the\nterms of this License.\n\nd) Notwithstanding Section 2.1(b) above,\ + \ no patent license is granted:\n\n1) for code that You delete from the Original Code;\n\ + \n2) separate from the Original Code; or\n\n3) for infringements caused by:\n\ni) the modification\ + \ of the Original Code or\n\nii) the combination of the Original Code with other software\ + \ or devices.\n\n2.2. Contributor Grant. Subject to third party intellectual property\n\ + claims, each Contributor hereby grants You a world-wide, royalty-free,\nnon-exclusive license\n\ + \n(a) under intellectual property rights (other than patent or trademark)\nLicensable by\ + \ Contributor, to use, reproduce, modify, display, perform,\nsublicense and distribute the\ + \ Modifications created by such Contributor\n(or portions thereof) either on an unmodified\ + \ basis, with other\nModifications, as Covered Code and/or as part of a Larger Work; and\n\ + \n(b) under Patent Claims infringed by the making, using, or selling of\nModifications made\ + \ by that Contributor either alone and/or in\ncombination with its Contributor Version (or\ + \ portions of such\ncombination), to make, use, sell, offer for sale, have made, and/or\n\ + otherwise dispose of: 1) Modifications made by that Contributor (or\nportions thereof);\ + \ and 2) the combination of Modifications made by that\nContributor with its Contributor\ + \ Version (or portions of such\ncombination).\n\n(c) the licenses granted in Sections 2.2(a)\ + \ and 2.2(b) are effective on\nthe date Contributor first makes Commercial Use of the Covered\ + \ Code.\n\n(d) Notwithstanding Section 2.2(b) above, no patent license is granted:\n\n1)\ + \ for any code that Contributor has deleted from the Contributor Version;\n\n2) separate\ + \ from the Contributor Version;\n\n3) for infringements caused by: i) third party modifications\ + \ of\nContributor Version or\n\nii) the combination of Modifications made by that Contributor\ + \ with other\nsoftware (except as part of the Contributor Version) or other devices;\nor\n\ + \n4) under Patent Claims infringed by Covered Code in the absence of\nModifications made\ + \ by that Contributor.\n\n3. Distribution Obligations.\n\n3.1. Application of License. The\ + \ Modifications which You create or to\nwhich You contribute are governed by the terms of\ + \ this License,\nincluding without limitation Section 2.2. The Source Code version of\n\ + Covered Code may be distributed only under the terms of this License or\na future version\ + \ of this License released under Section 6.1, and You\nmust include a copy of this License\ + \ with every copy of the Source Code\nYou distribute. You may not offer or impose any terms\ + \ on any Source Code\nversion that alters or restricts the applicable version of this License\n\ + or the recipients' rights hereunder. However, You may include an\nadditional document offering\ + \ the additional rights described in Section\n3.5.\n\n3.2. Availability of Source Code.\ + \ Any Modification which You create or\nto which You contribute must be made available in\ + \ Source Code form under\nthe terms of this License either on the same media as an Executable\n\ + version or via an accepted Electronic Distribution Mechanism to anyone\nto whom you made\ + \ an Executable version available; and if made available\nvia Electronic Distribution Mechanism,\ + \ must remain available for at\nleast twelve (12) months after the date it initially became\ + \ available,\nor at least six (6) months after a subsequent version of that particular\n\ + Modification has been made available to such recipients. You are\nresponsible for ensuring\ + \ that the Source Code version remains available\neven if the Electronic Distribution Mechanism\ + \ is maintained by a third\nparty.\n\n3.3. Description of Modifications. You must cause\ + \ all Covered Code to\nwhich You contribute to contain a file documenting the changes You\ + \ made\nto create that Covered Code and the date of any change. You must include\na prominent\ + \ statement that the Modification is derived, directly or\nindirectly, from Original Code\ + \ provided by the Initial Developer and\nincluding the name of the Initial Developer in\n\ + \n(a) the Source Code, and\n\n(b) in any notice in an Executable version or related documentation\ + \ in\nwhich You describe the origin or ownership of the Covered Code.\n\n3.4. Intellectual\ + \ Property Matters\n\na) Third Party Claims. If Contributor has knowledge that a license\ + \ under\na third party's intellectual property rights is required to exercise the\nrights\ + \ granted by such Contributor under Sections 2.1 or 2.2,\nContributor must include a text\ + \ file with the Source Code distribution\ntitled \"LEGAL\" which describes the claim and\ + \ the party making the claim\nin sufficient detail that a recipient will know whom to contact.\ + \ If\nContributor obtains such knowledge after the Modification is made\navailable as described\ + \ in Section 3.2, Contributor shall promptly modify\nthe LEGAL file in all copies Contributor\ + \ makes available thereafter and\nshall take other steps (such as notifying appropriate\ + \ mailing lists or\nnewsgroups) reasonably calculated to inform those who received the\n\ + Covered Code that new knowledge has been obtained.\n\n(b) Contributor APIs. If Contributor's\ + \ Modifications include an\napplication programming interface and Contributor has knowledge\ + \ of\npatent licenses which are reasonably necessary to implement that API,\nContributor\ + \ must also include this information in the LEGAL file.\n\n(c) Representations. Contributor\ + \ represents that, except as disclosed\npursuant to Section 3.4(a) above, Contributor believes\ + \ that\nContributor's Modifications are Contributor's original creation(s)\nand/or Contributor\ + \ has sufficient rights to grant the rights conveyed by\nthis License.\n\n3.5. Required\ + \ Notices. You must duplicate the notice in Exhibit A in\neach file of the Source Code.\ + \ If it is not possible to put such notice\nin a particular Source Code file due to its\ + \ structure, then You must\ninclude such notice in a location (such as a relevant directory)\ + \ where a\nuser would be likely to look for such a notice. If You created one or\nmore Modification(s)\ + \ You may add your name as a Contributor to the\nnotice described in Exhibit A. You must\ + \ also duplicate this License in\nany documentation for the Source Code where You describe\ + \ recipients'\nrights or ownership rights relating to Covered Code. You may choose to\n\ + offer, and to charge a fee for, warranty, support, indemnity or\nliability obligations to\ + \ one or more recipients of Covered Code.\nHowever, You may do so only on Your own behalf,\ + \ and not on behalf of the\nInitial Developer or any Contributor. You must make it absolutely\ + \ clear\nthan any such warranty, support, indemnity or liability obligation is\noffered\ + \ by You alone, and You hereby agree to indemnify the Initial\nDeveloper and every Contributor\ + \ for any liability incurred by the\nInitial Developer or such Contributor as a result of\ + \ warranty, support,\nindemnity or liability terms You offer.\n\n3.6. Distribution of Executable\ + \ Versions. You may distribute Covered\nCode in Executable form only if the requirements\ + \ of Section 3.1-3.5 have\nbeen met for that Covered Code, and if You include a notice stating\ + \ that\nthe Source Code version of the Covered Code is available under the terms\nof this\ + \ License, including a description of how and where You have\nfulfilled the obligations\ + \ of Section 3.2. The notice must be\nconspicuously included in any notice in an Executable\ + \ version, related\ndocumentation or collateral in which You describe recipients' rights\n\ + relating to the Covered Code. You may distribute the Executable version\nof Covered Code\ + \ or ownership rights under a license of Your choice,\nwhich may contain terms different\ + \ from this License, provided that You\nare in compliance with the terms of this License\ + \ and hat the license for\nthe Executable version does not attempt to limit or alter the\n\ + recipient's rights in the Source Code version from the rights set forth\nin this License.\ + \ If You distribute the Executable version under a\ndifferent license You must make it absolutely\ + \ clear that any terms which\ndiffer from this License are offered by You alone, not by\ + \ the Initial\nDeveloper or any Contributor. You hereby agree to indemnify the Initial\n\ + Developer and every Contributor for any liability incurred by the\nInitial Developer or\ + \ such Contributor as a result of any such terms You\noffer.\n\n3.7. Larger Works. You may\ + \ create a Larger Work by combining Covered\nCode with other code not governed by the terms\ + \ of this License and\ndistribute the Larger Work as a single product. In such a case, You\ + \ must\nmake sure the requirements of this License are fulfilled for the Covered\nCode.\n\ + \n4. Inability to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to\ + \ comply with any of the terms of this\nLicense with respect to some or all of the Covered\ + \ Code due to statute,\njudicial order, or regulation then You must:\n\n(a) comply with\ + \ the terms of this License to the maximum extent\npossible; and\n\n(b) describe the limitations\ + \ and the code they affect. Such description\nmust be included in the LEGAL file described\ + \ in Section 3.4 and must be\nincluded with all distributions of the Source Code. Except\ + \ to the extent\nprohibited by statute or regulation, such description must be\nsufficiently\ + \ detailed for a recipient of ordinary skill to be able to\nunderstand it.\n\n5. Application\ + \ of this License.\n\nThis License applies to code to which the Initial Developer has attached\n\ + the notice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n\n\ + 6.1. New Versions. The Initial Developer of this code may publish\nrevised and/or new versions\ + \ of the License from time to time. Each\nversion will be given a distinguishing version\ + \ number.\n\n6.2. Effect of New Versions. Once Covered Code has been published under\na\ + \ particular version of the License, You may always continue to use it\nunder the terms\ + \ of that version. You may also choose to use such Covered\nCode under the terms of any\ + \ subsequent version of the License published\nby the Initial Developer. No one other than\ + \ the Initial Developer has\nthe right to modify the terms applicable to Covered Code created\ + \ under\nthis License.\n\n6.3. Derivative Works. If You create or use a modified version\ + \ of this\nLicense (which you may only do in order to apply it to code which is not\nalready\ + \ Covered Code governed by this License), You must\n\n(a) rename Your license so that the\ + \ phrases \"Mozilla\", \"MOZILLAPL\",\n\"MOZPL\", \"Netscape\", \"MPL\", \"NPL\", or any\ + \ confusingly similar phrases do\nnot appear in your license (except to note that your license\ + \ differs\nfrom this License) and\n\n(b) otherwise make it clear that Your version of the\ + \ license contains\nterms which differ from the Mozilla Public License and Netscape Public\n\ + License. (Filling in the name of the Initial Developer, Original Code or\nContributor in\ + \ the notice described in Exhibit A shall not of themselves\nbe deemed to be modifications\ + \ of this License.)\n\n6.4 Origin of the Initial Developer's Public License. The Initial\n\ + Developer's Public License is based on the Mozilla Public License V 1.1\nwith the following\ + \ changes:\n\n1) The license is published by the Initial Developer of this code. Only\n\ + the Initial Developer can modify the terms applicable to Covered Code.\n\n2) The license\ + \ can be modified and used for code which is not already\ngoverned by this license. Modified\ + \ versions of the license must be\nrenamed to avoid confusion with the Initial Developer's\ + \ Public License\nand must include a description of changes from the Initial Developer's\n\ + Public License.\n\n3) The name of the license in Exhibit A is the \"Initial Developer's\ + \ Public License\".\n\n4) The reference to an alternative license in Exhibit A has been\ + \ removed .\n\n5) Amendments I, II, III, V, and VI have been deleted.\n\n6) Exhibit A, Netscape\ + \ Public License has been deleted\n\n7. DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED\ + \ UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT\nWARRANTY OF ANY KIND, EITHER EXPRESSED\ + \ OR IMPLIED, INCLUDING, WITHOUT\nLIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF\ + \ DEFECTS,\nMERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE\nRISK\ + \ AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU.\nSHOULD ANY COVERED\ + \ CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE\nINITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR)\ + \ ASSUME THE COST OF ANY\nNECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF\ + \ WARRANTY\nCONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED\nCODE IS\ + \ AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n\n8.1. This License\ + \ and the rights granted hereunder will terminate\nautomatically if You fail to comply with\ + \ terms herein and fail to cure\nsuch breach within 30 days of becoming aware of the breach.\ + \ All\nsublicenses to the Covered Code which are properly granted shall survive\nany termination\ + \ of this License. Provisions which, by their nature, must\nremain in effect beyond the\ + \ termination of this License shall survive.\n\n8.2. If You initiate litigation by asserting\ + \ a patent infringement claim\n(excluding declatory judgment actions) against Initial Developer\ + \ or a\nContributor (the Initial Developer or Contributor against whom You file\nsuch action\ + \ is referred to as \"Participant\") alleging that:\n\n(a) such Participant's Contributor\ + \ Version directly or indirectly\ninfringes any patent, then any and all rights granted\ + \ by such\nParticipant to You under Sections 2.1 and/or 2.2 of this License shall,\nupon\ + \ 60 days notice from Participant terminate prospectively, unless if\nwithin 60 days after\ + \ receipt of notice You either:\n\n(i) agree in writing to pay Participant a mutually agreeable\ + \ reasonable\nroyalty for Your past and future use of Modifications made by such\nParticipant,\ + \ or\n\n(ii) withdraw Your litigation claim with respect to the Contributor\nVersion against\ + \ such Participant.\n\nIf within 60 days of notice, a reasonable royalty and payment\narrangement\ + \ are not mutually agreed upon in writing by the parties or\nthe litigation claim is not\ + \ withdrawn, the rights granted by Participant\nto You under Sections 2.1 and/or 2.2 automatically\ + \ terminate at the\nexpiration of the 60 day notice period specified above.\n\n(b) any software,\ + \ hardware, or device, other than such Participant's\nContributor Version, directly or indirectly\ + \ infringes any patent, then\nany rights granted to You by such Participant under Sections\ + \ 2.1(b) and\n2.2(b) are revoked effective as of the date You first made, used, sold,\n\ + distributed, or had made, Modifications made by that Participant.\n\n8.3. If You assert\ + \ a patent infringement claim against Participant\nalleging that such Participant's Contributor\ + \ Version directly or\nindirectly infringes any patent where such claim is resolved (such\ + \ as by\nlicense or settlement) prior to the initiation of patent infringement\nlitigation,\ + \ then the reasonable value of the licenses granted by such\nParticipant under Sections\ + \ 2.1 or 2.2 shall be taken into account in\ndetermining the amount or value of any payment\ + \ or license.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all\n\ + end user license agreements (excluding distributors and resellers) which\nhave been validly\ + \ granted by You or any distributor hereunder prior to\ntermination shall survive termination.\n\ + \n9. LIMITATION OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER\ + \ TORT\n(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL\nDEVELOPER,\ + \ ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR\nANY SUPPLIER OF ANY OF\ + \ SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY\nINDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL\ + \ DAMAGES OF ANY CHARACTER\nINCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,\ + \ WORK\nSTOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\nCOMMERCIAL DAMAGES\ + \ OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\nINFORMED OF THE POSSIBILITY OF SUCH DAMAGES.\ + \ THIS LIMITATION OF\nLIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\n\ + RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\nPROHIBITS SUCH LIMITATION.\ + \ SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION\nOR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL\ + \ DAMAGES, SO THIS EXCLUSION\nAND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT\ + \ END USERS.\n\nThe Covered Code is a \"commercial item\", as that term is defined in 48\n\ + C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\"\nand \"commercial\ + \ computer software documentation\", as such terms are used\nin 48 C.F.R. 12.212 (Sept.\ + \ 1995). Consistent with 48 C.F.R. 12.212 and\n48 C.F.R. 227.7202-1 through 227.7202-4 (June\ + \ 1995), all U.S. Government\nEnd Users acquire Covered Code with only those rights set\ + \ forth herein.\n\n11. MISCELLANEOUS.\n\nThis License represents the complete agreement\ + \ concerning subject matter\nhereof. If any provision of this License is held to be unenforceable,\n\ + such provision shall be reformed only to the extent necessary to make it\nenforceable. This\ + \ License shall be governed by California law provisions\n(except to the extent applicable\ + \ law, if any, provides otherwise),\nexcluding its conflict-of-law provisions. With respect\ + \ to disputes in\nwhich at least one party is a citizen of, or an entity chartered or\n\ + registered to do business in the United States of America, any\nlitigation relating to this\ + \ License shall be subject to the jurisdiction\nof the Federal Courts of the Northern District\ + \ of California, with venue\nlying in Santa Clara County, California, with the losing party\n\ + responsible for costs, including without limitation, court costs and\nreasonable attorneys'\ + \ fees and expenses. The application of the United\nNations Convention on Contracts for\ + \ the International Sale of Goods is\nexpressly excluded. Any law or regulation which provides\ + \ that the\nlanguage of a contract shall be construed against the drafter shall not\napply\ + \ to this License.\n\n12. RESPONSIBILITY FOR CLAIMS.\n\nAs between Initial Developer and\ + \ the Contributors, each party is\nresponsible for claims and damages arising, directly\ + \ or indirectly, out\nof its utilization of rights under this License and You agree to work\n\ + with Initial Developer and Contributors to distribute such\nresponsibility on an equitable\ + \ basis. Nothing herein is intended or\nshall be deemed to constitute any admission of liability.\n\ + \n13. MULTIPLE-LICENSED CODE.\n\nInitial Developer may designate portions of the Covered\ + \ Code as\n\"Multiple-Licensed\". \"Multiple-Licensed\" means that the Initial\nDevpoeloper\ + \ permits you to utilize portions of the Covered Code under\nYour choice of the IDPL or\ + \ the alternative licenses, if any, specified\nby the Initial Developer in the file described\ + \ in Exhibit A.\n\nEXHIBIT A -Initial Developer's Public License.\n\nThe contents of this\ + \ file are subject to the Initial Developer's Public\nLicense Version 1.0 (the \"License\"\ + ); you may not use this file except in\ncompliance with the License. You may obtain a copy\ + \ of the License from\nthe Firebird Project website, at http://www.firebirdsql.org/en/initial-\n\ + developer-s-public-license-version-1-0/\n\nSoftware distributed under the License is distributed\ + \ on an \"AS IS\"\nbasis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the\n\ + License for the specific language governing rights and limitations under\nthe License.\n\ + \nThe Original Code is .\n\nThe Initial Developer of the Original Code is .\n\nPortions\ + \ created by \nare Copyright (C) .\n\nAll Rights Reserved.\n\nContributor(s): ." json: initial-developer-public.json - yml: initial-developer-public.yml + yaml: initial-developer-public.yml html: initial-developer-public.html - text: initial-developer-public.LICENSE + license: initial-developer-public.LICENSE - license_key: inner-net-2.0 + category: Permissive spdx_license_key: LicenseRef-scancode-inner-net-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The Inner Net License, Version 2 + + The author(s) grant permission for redistribution and use in source and + binary forms, with or without modification, of the software and + documentation provided that the following conditions are met: + + 0. If you receive a version of the software that is specifically labeled + as not being for redistribution (check the version message and/or + README), you are not permitted to redistribute that version of the + software in any way or form. + + 1. All terms of the all other applicable copyrights and licenses must be + followed. + + 2. Redistributions of source code must retain the authors' copyright + notice(s), this list of conditions, and the following disclaimer. + + 3. Redistributions in binary form must reproduce the authors' copyright + notice(s), this list of conditions, and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 4. All advertising materials mentioning features or use of this software + must display the following acknowledgement with the name(s) of the + authors as specified in the copyright notice(s) substituted where + indicated: + + This product includes software developed by , The Inner Net, + and other contributors. + + 5. Neither the name(s) of the author(s) 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 ITS AUTHORS AND CONTRIBUTORS ``AS IS'' AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF + THE POSSIBILITY OF SUCH DAMAGE. + + Please distribute a copy of this license with the software and make it + reasonably easy for others to find. json: inner-net-2.0.json - yml: inner-net-2.0.yml + yaml: inner-net-2.0.yml html: inner-net-2.0.html - text: inner-net-2.0.LICENSE + license: inner-net-2.0.LICENSE - license_key: inno-setup + category: Permissive spdx_license_key: LicenseRef-scancode-inno-setup other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Inno Setup License + ================== + + Except where otherwise noted, all of the documentation and software included + in the Inno Setup package is copyrighted by Jordan Russell. + + Copyright (C) 1997-2010 Jordan Russell. All rights reserved. + Portions Copyright (C) 2000-2010 Martijn Laan. All rights reserved. + + This software is provided "as-is," without any express or implied warranty. + In no event shall the author 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 and redistribute it, + provided that the following conditions are met: + + 1. All redistributions of source code files must retain all copyright + notices that are currently in place, and this list of conditions without + modification. + + 2. All redistributions in binary form must retain all occurrences of the + above copyright notice and web site addresses that are currently in + place (for example, in the About boxes). + + 3. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software to + distribute a product, an acknowledgment in the product documentation + would be appreciated but is not required. + + 4. Modified versions in source or binary form must be plainly marked as + such, and must not be misrepresented as being the original software. + + + Jordan Russell + jr-2010 AT jrsoftware.org + http://www.jrsoftware.org/ json: inno-setup.json - yml: inno-setup.yml + yaml: inno-setup.yml html: inno-setup.html - text: inno-setup.LICENSE + license: inno-setup.LICENSE - license_key: inria-linking-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-inria-linking-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception to the Q Public Licence, you may develop + application programs, reusable components and other software items + that link with the original or modified versions of the Software + and are not made available to the general public, without any of the + additional requirements listed in clause 6c of the Q Public licence. json: inria-linking-exception.json - yml: inria-linking-exception.yml + yaml: inria-linking-exception.yml html: inria-linking-exception.html - text: inria-linking-exception.LICENSE + license: inria-linking-exception.LICENSE - license_key: installsite + category: Free Restricted spdx_license_key: LicenseRef-scancode-installsite other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + License Agreement + + IMPORTANT - READ CAREFULLY. This is a legal agreement between you + (either as an individual developer or as a representative of a single + entity) and the owner of this site, Stefan Krueger, for the software and + informations available on this web site (referred to as "CONTENTS" in + the remainder of this document). CONTENTS of this web site include + computer software, source code, and documentation. By downloading or + using in any other way CONTENTS on this web site, you agree to be bound + by the terms of this agreement. + + The CONTENTS are protected by copyright laws and international copyright + treaties, as well as other intellectual property laws and treaties. + + Grant of License: + + This license agreement grants you the non-exclusive, royalty-free right + to use the CONTENTS to create installation programs. If the source code + is included with the software, you may modify it in any way you like. + + Description of Limitations: + + You are not allowed to reproduce or distribute the CONTENTS or any part + of it in any form, except as integral part of your installation program. + Especially you must not include it in a book, distribute it on a CD-ROM + or offer it for download from your web site. If you intend to do so, + please contact the webmaster to get an extended license. + + You may not remove the copyright notices, if any, that are included or + attached to the CONTENTS. + + In case the CONTENTS were provided by a person or company other than + Stefan Krueger, additional restrictions and license regulations may + apply. + + Limited Warrenty and Limitation of Liability + + The CONTENTS on this web site are provided "as is". This material is for + informational purposes only. It is completey up to you to verify that + the CONTENTS work for your purposes. + + To the maximum extend permitted by applicable law, in no event shall + Stefan Krueger be liable for any special, incidental or consequental + damages whatsoever (including, without limitation, damages for loss of + business profits, business interruption, loss of business information, + or any other pecuniary loss) arising out of the use or inability to use + the CONTENTS or the provision of or failure to provide support services, + even if Stefan Krueger has been advised of the possibility of such + damages. In any case, Stefan Krueger's entire liability under any + provision of this license agreement shall be limited to the amount + actually paid by you for the CONTENTS. json: installsite.json - yml: installsite.yml + yaml: installsite.yml html: installsite.html - text: installsite.LICENSE + license: installsite.LICENSE - license_key: intel + category: Proprietary Free spdx_license_key: LicenseRef-scancode-intel other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Redistribution.\nRedistribution and use in binary form, without modification, are\n\ + permitted provided that the following conditions are met:\n\nRedistributions must reproduce\ + \ the above copyright notice and the\nfollowing disclaimer in the documentation and/or other\ + \ materials\nprovided with the distribution.\n\nNeither the name of Intel Corporation\n\ + nor the names of its suppliers may be used to endorse or promote\nproducts derived from\ + \ this software without specific prior written\npermission.\n\nNo reverse engineering, decompilation,\ + \ or disassembly of this\nsoftware is permitted.\n\nLimited patent license. Intel Corporation\ + \ grants a world-wide,\nroyalty-free, non-exclusive license under patents it now or hereafter\n\ + owns or controls to make, have made, use, import, offer to sell and\nsell (\"Utilize\")\ + \ this software, but solely to the extent that any\nsuch patent is necessary to Utilize\ + \ the software alone, or in\ncombination with an operating system licensed under an approved\ + \ Open\nSource license as listed by the Open Source Initiative at\nhttp://opensource.org/licenses.\ + \ The patent license shall not apply to\nany other combinations which include this software.\ + \ No hardware per\nse is licensed hereunder.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED\ + \ BY THE COPYRIGHT HOLDERS AND \nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\ + \ INCLUDING, \nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS\ + \ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE \nCOPYRIGHT OWNER OR CONTRIBUTORS\ + \ BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\ + \ DAMAGES (INCLUDING, \nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\ + \ LOSS \nOF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND \nON ANY\ + \ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR \nTORT (INCLUDING NEGLIGENCE\ + \ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE \nUSE OF THIS SOFTWARE, EVEN IF ADVISED OF\ + \ THE POSSIBILITY OF SUCH \nDAMAGE." json: intel.json - yml: intel.yml + yaml: intel.yml html: intel.html - text: intel.LICENSE + license: intel.LICENSE - license_key: intel-acpi + category: Permissive spdx_license_key: Intel-ACPI other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + ACPI - Software License Agreement + + Software License Agreement IMPORTANT - READ BEFORE COPYING, INSTALLING + OR USING. + + Do not use or load this software and any associated materials + (collectively, the "Software") until you have carefully read the + following terms and conditions. By loading or using the Software, you + agree to the terms of this Agreement. If you do not wish to so agree, do + not install or use the Software. + + 1. COPYRIGHT NOTICE Some or all of this work - Copyright © 1999-2005, + Intel Corp. All rights reserved. + + 2. LICENSE + + 2.1. This is your license from Intel Corp. under its intellectual + property rights. You may have additional license terms from the party + that provided you this software, covering your right to use that party's + intellectual property rights. + + 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining + a copy of the source code appearing in this file ("Covered Code") an + irrevocable, perpetual, worldwide license under Intel's copyrights in + the base code distributed originally by Intel ("Original Intel Code") to + copy, make derivatives, distribute, use and display any portion of the + Covered Code in any form, with the right to sublicense such rights; and + + 2.3. Intel grants Licensee a non-exclusive and non-transferable patent + license (with the right to sublicense), under only those claims of Intel + patents that are infringed by the Original Intel Code, to make, use, + sell, offer to sell, and import the Covered Code and derivative works + thereof solely to the minimum extent necessary to exercise the above + copyright license, and in no event shall the patent license extend to + any additions to or modifications of the Original Intel Code. No other + license or right is granted directly or by implication, estoppel or + otherwise; The above copyright and patent license is granted only if the + following conditions are met: + + 3. CONDITIONS + + 3.1. Redistribution of Source with Rights to Further Distribute Source. + Redistribution of source code of any substantial portion of the Covered + Code or modification with rights to further distribute source must + include the above Copyright Notice, the above License, this list of + Conditions, and the following Disclaimer and Export Compliance + provision. In addition, Licensee must cause all Covered Code to which + Licensee contributes to contain a file documenting the changes Licensee + made to create that Covered Code and the date of any change. Licensee + must include in that file the documentation of any changes made by any + predecessor Licensee. Licensee must include a prominent statement that + the modification is derived, directly or indirectly, from Original Intel + Code. + + 3.2. Redistribution of Source with no Rights to Further Distribute + Source. Redistribution of source code of any substantial portion of the + Covered Code or modification without rights to further distribute source + must include the following Disclaimer and Export Compliance provision in + the documentation and/or other materials provided with distribution. In + addition, Licensee may not authorize further sublicense of source of any + portion of the Covered Code, and must include terms to the effect that + the license from Licensee to its licensee is limited to the intellectual + property embodied in the software Licensee provides to its licensee, and + not to intellectual property embodied in modifications its licensee may + make. + + 3.3. Redistribution of Executable. Redistribution in executable form of + any substantial portion of the Covered Code or modification must + reproduce the above Copyright Notice, and the following Disclaimer and + Export Compliance provision in the documentation and/or other materials + provided with the distribution. + + 3.4. Intel retains all right, title, and interest in and to the Original + Intel Code. + + 3.5. Neither the name Intel nor any other trademark owned or controlled + by Intel shall be used in advertising or otherwise to promote the sale, + use or other dealings in products derived from or relating to the + Covered Code without prior written authorization from Intel. + + 4. DISCLAIMER AND EXPORT COMPLIANCE + + 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED + HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE + IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE, + INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY + UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY + IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A + PARTICULAR PURPOSE. + + 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS + LICENSEES OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, + LOSS OF USE OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR + FOR ANY INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS + AGREEMENT, UNDER ANY CAUSE OF ACTION OR THEORY OF LIABILITY, AND + IRRESPECTIVE OF WHETHER INTEL HAS ADVANCE NOTICE OF THE POSSIBILITY OF + SUCH DAMAGES. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING THE FAILURE + OF THE ESSENTIAL PURPOSE OF ANY LIMITED REMEDY. + + 4.3. Licensee shall not export, either directly or indirectly, any of + this software or system incorporating such software without first + obtaining any required license or other approval from the U. S. + Department of Commerce or any other agency or department of the United + States Government. In the event Licensee exports any such software from + the United States or re-exports any such software from a foreign + destination, Licensee shall ensure that the distribution and export/re- + export of the software is in compliance with all laws, regulations, + orders, or other restrictions of the U.S. Export Administration + Regulations. Licensee agrees that neither it nor any of its subsidiaries + will export/re-export any technical data, process, software, or service, + directly or indirectly, to any country for which the United States + government or any agency thereof requires an export license, other + governmental approval, or letter of assurance, without first obtaining + such license, approval or letter. json: intel-acpi.json - yml: intel-acpi.yml + yaml: intel-acpi.yml html: intel-acpi.html - text: intel-acpi.LICENSE + license: intel-acpi.LICENSE - license_key: intel-bcl + category: Proprietary Free spdx_license_key: LicenseRef-scancode-intel-bcl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Redistribution. Redistribution and use in binary form, without modification, are + permitted provided that the following conditions are met: + + Redistributions must reproduce the above copyright notice and the following + disclaimer in the documentation and/or other materials provided with the + distribution. + + Neither the name of Intel Corporation nor the names of its suppliers may be used + to endorse or promote products derived from this software without specific prior + written permission. + + No reverse engineering, decompilation, or disassembly of this software is + permitted. + + "Binary form" includes any format commonly used for electronic conveyance which + is a reversible, bit-exact translation of binary representation to ASCII or ISO + text, for example, "uuencode." + + 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. json: intel-bcl.json - yml: intel-bcl.yml + yaml: intel-bcl.yml html: intel-bcl.html - text: intel-bcl.LICENSE + license: intel-bcl.LICENSE - license_key: intel-bsd + category: Permissive spdx_license_key: LicenseRef-scancode-intel-bsd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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, + without modification. + 2. Redistributions in binary form must reproduce at minimum a disclaimer + similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any + redistribution must be conditioned upon including a substantially + similar Disclaimer requirement for further binary redistribution. + 3. Neither the names of the above-listed copyright holders nor the names + of any contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + NO WARRANTY + 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 NONINFRINGEMENT, MERCHANTIBILITY + AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL + THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR 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 DAMAGES. json: intel-bsd.json - yml: intel-bsd.yml + yaml: intel-bsd.yml html: intel-bsd.html - text: intel-bsd.LICENSE + license: intel-bsd.LICENSE - license_key: intel-bsd-2-clause + category: Permissive spdx_license_key: LicenseRef-scancode-intel-bsd-2-clause other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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, + without modification. + 2. Redistributions in binary form must reproduce at minimum a disclaimer + substantially similar to the "NO WARRANTY" disclaimer below + ("Disclaimer") and any redistribution must be conditioned upon + including a substantially similar Disclaimer requirement for further + binary redistribution. + + NO WARRANTY + 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 MERCHANTIBILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDERS OR CONTRIBUTORS BE LIABLE FOR 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 DAMAGES. json: intel-bsd-2-clause.json - yml: intel-bsd-2-clause.yml + yaml: intel-bsd-2-clause.yml html: intel-bsd-2-clause.html - text: intel-bsd-2-clause.LICENSE + license: intel-bsd-2-clause.LICENSE - license_key: intel-bsd-export-control + category: Permissive spdx_license_key: Intel other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 Intel Corporation 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 INTEL 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. + + EXPORT LAWS: THIS LICENSE ADDS NO RESTRICTIONS TO THE EXPORT LAWS OF YOUR + JURISDICTION. It is licensee's responsibility to comply with any export + regulations applicable in licensee's jurisdiction. Under CURRENT (May 2000) U.S. + export regulations this software is eligible for export from the U.S. and can be + downloaded by or otherwise exported or reexported worldwide EXCEPT to U.S. + embargoed destinations which include Cuba, Iraq, Libya, North Korea, Iran, + Syria, Sudan, Afghanistan and any other country to which the U.S. has embargoed + goods and services. json: intel-bsd-export-control.json - yml: intel-bsd-export-control.yml + yaml: intel-bsd-export-control.yml html: intel-bsd-export-control.html - text: intel-bsd-export-control.LICENSE + license: intel-bsd-export-control.LICENSE - license_key: intel-code-samples + category: Proprietary Free spdx_license_key: LicenseRef-scancode-intel-code-samples other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Code Samples License\n\t\nIMPORTANT - READ BEFORE COPYING, INSTALLING, OR USING.\n\ + Do not copy, install, or use the \"Materials\" provided under this license agreement (\"\ + Agreement\"), until you have carefully read the following terms and conditions.\n\nBy copying,\ + \ installing, or otherwise using the Materials, you agree to be bound by the terms of this\ + \ Agreement. If you do not agree to the terms of this Agreement, do not copy, install, or\ + \ use the Materials.\n\nIntel® Product License Agreement\nLICENSE GRANT:\nSubject to the\ + \ License Restrictions below, Intel Corporation (\"Intel\") grants to you the following\ + \ non-exclusive, non-assignable royalty-free copyright licenses in the \"Materials\" below,\ + \ which are identified specifically in License Definitions, and in any updates thereto that\ + \ Intel may offer in the future.\n\nLICENSE DEFINITIONS:\nMaterials are defined as consisting\ + \ of Sample Source, Redistributables, and End-User Documentation.\n\nSample Source: may\ + \ include example interface or application source code. You may copy, modify, and compile\ + \ the Sample Source and distribute it in your own products in binary and source code form.\n\ + \nRedistributables: include header, library, and dynamically linkable library files. You\ + \ may copy and distribute Redistributables with your product.\n\nEnd-User Documentation:\ + \ includes textual materials intended for end users. You may copy, modify, and distribute\ + \ them.\n\nLICENSE RESTRICTIONS:\nYou may not reverse-assemble, reverse-compile, or otherwise\ + \ reverse-engineer any software provided solely in binary form.\n\nUpon Intel's release\ + \ of an update, upgrade, or new version of the Materials, you will make reasonable efforts\ + \ to discontinue distribution of the enclosed Materials and you will make reasonable efforts\ + \ to distribute such updates, upgrades, or new versions to your customers who have received\ + \ the Materials herein.\n\nDistribution of the Materials is also subject to the following\ + \ limitations: You (i) shall be solely responsible to your customers for any update or support\ + \ obligation or other liability which may arise from the distribution, (ii) do not make\ + \ any statement that your product is \"certified,\" or that its performance is guaranteed,\ + \ by Intel, (iii) do not use Intel's name or trademarks to market your product without written\ + \ permission, (iv) shall prohibit disassembly and reverse engineering, (v) shall not publish\ + \ reviews of Materials designated herein as beta without written permission by Intel, and\ + \ (vi) shall indemnify, hold harmless, and defend Intel and its suppliers from and against\ + \ any claims or lawsuits, including attorney's fees, that arise or result from your distribution\ + \ of any product.\n\nCOPYRIGHT:\nTitle to the Materials and all copies thereof remain with\ + \ Intel or its suppliers. The Materials are copyrighted and are protected by United States\ + \ copyright laws and international treaty provisions. You will not remove any copyright\ + \ notice from the Materials. You agree to prevent unauthorized copying of the Materials.\ + \ Except as expressly provided herein, Intel does not grant any express or implied right\ + \ to you under Intel patents, copyrights, trademarks, or trade secret information.\n\nREPLACEMENTS:\n\ + The Materials are provided \"AS IS\" without warranty of any kind.\n\nUSER SUBMISSIONS:\n\ + You agree that any material, information, or other communication, including all data, images,\ + \ sounds, text, and other things embodied therein, you transmit or post to an Intel website\ + \ will be considered non-confidential (\"Communications\"). Intel will have no confidentiality\ + \ obligations with respect to the Communications. You agree that Intel and its designees\ + \ will be free to copy, modify, create derivative works, publicly display, disclose, distribute,\ + \ license and sublicense through multiple tiers of distribution and licensees, incorporate,\ + \ and otherwise use the Communications, including derivative works thereto, for any and\ + \ all commercial or non-commercial purposes.\n\nLIMITATION OF LIABILITY:\nTHE ABOVE REPLACEMENT\ + \ PROVISION IS THE ONLY WARRANTY OF ANY KIND. INTEL OFFERS NO OTHER WARRANTY EITHER EXPRESS\ + \ OR IMPLIED INCLUDING THOSE OF MERCHANTABILITY, NONINFRINGEMENT OF THIRD-PARTY INTELLECTUAL\ + \ PROPERTY, OR FITNESS FOR A PARTICULAR PURPOSE. NEITHER INTEL NOR ITS SUPPLIERS SHALL BE\ + \ LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF\ + \ BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER LOSS)\ + \ ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF INTEL HAS BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES. BECAUSE SOME JURISDICTIONS PROHIBIT THE EXCLUSION\ + \ OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION\ + \ MAY NOT APPLY TO YOU.\n\nTERMINATION OF THIS LICENSE:\nIntel may terminate this license\ + \ at any time if you are in breach of any of its terms and conditions. Upon termination,\ + \ you will immediately destroy the Materials or return all copies of the Materials to Intel\ + \ along with any copies you have made.\n\nU.S. GOVERNMENT RESTRICTED RIGHTS:\nThe Materials\ + \ are provided with \"RESTRICTED RIGHTS.\" Use, duplication, or disclosure by the Government\ + \ is subject to restrictions set forth in FAR52.227-14 and DFAR252.227-7013 et. seq. or\ + \ its successor. Use of the Materials by the Government constitutes acknowledgement of Intel's\ + \ rights in them.\n\nAPPLICABLE LAWS:\nAny claim arising under or relating to this Agreement\ + \ shall be governed by the internal substantive laws of the State of Delaware or federal\ + \ courts located in Delaware, without regard to principles of conflict of laws. You may\ + \ not export the Materials in violation of applicable export laws." json: intel-code-samples.json - yml: intel-code-samples.yml + yaml: intel-code-samples.yml html: intel-code-samples.html - text: intel-code-samples.LICENSE + license: intel-code-samples.LICENSE - license_key: intel-confidential + category: Commercial spdx_license_key: LicenseRef-scancode-intel-confidential other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + INTEL CONFIDENTIAL + The source code contained or described herein and all documents related to the source + code (""Material"") are owned by Intel Corporation or its suppliers or licensors. Title to + the Material remains with Intel Corporation or its suppliers and licensors. The Material + contains trade secrets and proprietary and confidential information of Intel or its + suppliers and licensors. The Material is protected by worldwide copyright and trade + secret laws and treaty provisions. No part of the Material may be used, copied, + reproduced, modified, published, uploaded, posted, transmitted, distributed, or disclosed + in any way without Intel's prior express written permission. + + No license under any patent, copyright, trade secret or other intellectual property + right is granted to or conferred upon you by disclosure or delivery of the Materials, + either expressly, by implication, inducement, estoppel or otherwise. Any license under + such intellectual property rights must be express and approved by Intel in writing. + Unless otherwise agreed by Intel in writing, you may not remove or alter this notice + or any other notice embedded in Materials by Intel or Intel’s suppliers or licensors in any way json: intel-confidential.json - yml: intel-confidential.yml + yaml: intel-confidential.yml html: intel-confidential.html - text: intel-confidential.LICENSE + license: intel-confidential.LICENSE - license_key: intel-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-intel-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "TERMS AND CONDITIONS\n IMPORTANT - PLEASE READ BEFORE INSTALLING OR USING THIS INTEL(C)\ + \ SOFTWARE\n\nDo not use or load this firmware (the \"Software\") until you have carefully\ + \ read\nthe following terms and conditions. By loading or using the Software, you agree\n\ + to the terms of this Agreement. If you do not wish to so agree, do not install\nor use the\ + \ Software.\n\nLICENSEES:\n\nPlease note: \n\n* If you are an End-User, only Exhibit A,\ + \ the SOFTWARE LICENSE AGREEMENT,\n applies.\n* If you are an Original Equipment Manufacturer\ + \ (OEM), Independent Hardware\n Vendor (IHV), or Independent Software Vendor (ISV), this\ + \ complete Agreement\n applies \n\n--------------------------------------------------------------------------------\n\ + \nFor OEMs, IHVs, and ISVs:\n\nLICENSE. This Software is licensed for use only in conjunction\ + \ with Intel\ncomponent products. Use of the Software in conjunction with non-Intel component\n\ + products is not licensed hereunder. Subject to the terms of this Agreement,\nIntel grants\ + \ to you a nonexclusive, nontransferable, worldwide, fully paid-up\nlicense under Intel's\ + \ copyrights to: (i) copy the Software internally for your\nown development and maintenance\ + \ purposes; (ii) copy and distribute the Software\nto your end-users, but only under a license\ + \ agreement with terms at least as\nrestrictive as those contained in Intel's Final, Single\ + \ User License Agreement,\nattached as Exhibit A; and (iii) modify, copy and distribute\ + \ the end-user\ndocumentation which may accompany the Software, but only in association\ + \ with\nthe Software. \n\nIf you are not the final manufacturer or vendor of a computer\ + \ system or software\nprogram incorporating the Software, then you may transfer a copy of\ + \ the\nSoftware, including any related documentation (modified or unmodified) to your\n\ + recipient for use in accordance with the terms of this Agreement, provided such\nrecipient\ + \ agrees to be fully bound by the terms hereof. You shall not otherwise\nassign, sublicense,\ + \ lease, or in any other way transfer or disclose Software to\nany third party. You may\ + \ not, nor may you assist any other person or entity to\nmodify, translate, convert to another\ + \ programming language, decompile, reverse\nengineer, or disassemble any portion of the\ + \ Software or otherwise attempt to\nderive source code from any object code modules of the\ + \ Software or any internal\ndata files generated by the Software. Your rights to redistribute\ + \ the Software\nshall be contingent upon your installation of this Agreement in its entirety\ + \ in\nthe same directory as the Software.\n\nCONTRACTORS. For the purpose of this Agreement,\ + \ and notwithstanding anything \nto the contrary hereunder, solely with respect to the requirements\ + \ for \ncompliance with the terms hereunder, any contractors or consultants that You \n\ + use to perform the work or otherwise assist You in the development or products \nusing this\ + \ Software shall be deemed to be End Users and accordingly, upon \nreceipt of the Software,\ + \ shall be bound by the terms of Exhibit A, Software \nLicense Agreement. No additional\ + \ agreement between You and such consultants or \ncontractors is required under this Agreement\ + \ to detail such compliance.\n\nTRADEMARKS. Except as expressly provided herein, you shall\ + \ not use Intel's \nname in any publications, advertisements, or other announcements without\ + \ \nIntel's prior written consent. You do not have any rights to use any Intel \ntrademarks\ + \ or logos.\n\nOWNERSHIP OF SOFTWARE AND COPYRIGHTS. Software and accompanying materials,\ + \ if\nany, are owned by Intel or its suppliers and licensors and may be protected by\ncopyright,\ + \ trademark, patent and trade secret law and international treaties. \nAny rights, express\ + \ or implied, in the intellectual property embodied in the\nforegoing, other than those\ + \ specified in this Agreement, are reserved by Intel\nand its suppliers and licensors or\ + \ otherwise as set forth in any applicable\nopen source license agreement. You will keep\ + \ the Software free of liens,\nattachments, and other encumbrances. You agree not to remove\ + \ any proprietary\nnotices and/or any labels from the Software and accompanying materials\ + \ without\nprior written approval by Intel\n\nLIMITATION OF LIABILITY. IN NO EVENT SHALL\ + \ INTEL OR ITS SUPPLIERS AND LICENSORS\nBE LIABLE FOR ANY DAMAGES WHATSOEVER FROM ANY CAUSE\ + \ OF ACTION OF ANY KIND\n(INCLUDING, WITHOUT LIMITATION, LOST PROFITS, BUSINESS INTERRUPTION,\ + \ OR LOST\nINFORMATION) ARISING OUT OF THE USE, MODIFICATION, OR INABILITY TO USE THE\n\ + INTEL SOFTWARE, OR OTHERWISE, NOR FOR PUNITIVE, INCIDENTAL, CONSEQUENTIAL, OR\nSPECIAL DAMAGES\ + \ OF ANY KIND, EVEN IF INTEL OR ITS SUPPLIERS AND LICENSORS HAS\nBEEN ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGES. SOME JURISDICTIONS PROHIBIT\nEXCLUSION OR LIMITATION OF LIABILITY FOR\ + \ IMPLIED WARRANTIES, CONSEQUENTIAL OR\nINCIDENTAL DAMAGES, SO CERTAIN LIMITATIONS MAY NOT\ + \ APPLY. YOU MAY ALSO HAVE\nOTHER LEGAL RIGHTS THAT VARY BETWEEN JURISDICTIONS. \n\nEXCLUSION\ + \ OF WARRANTIES. THE SOFTWARE IS PROVIDED \"AS IS\" AND POSSIBLY WITH\nFAULTS. UNLESS EXPRESSLY\ + \ AGREED OTHERWISE, INTEL AND ITS SUPPLIERS AND\nLICENSORS DISCLAIM ANY AND ALL WARRANTIES\ + \ AND GUARANTEES, EXPRESS, IMPLIED OR\nOTHERWISE, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\ + \ OF MERCHANTABILITY,\nNONINFRINGEMENT, OR FITNESS FOR A PARTICULAR PURPOSE. Intel does\ + \ not warrant\nor assume responsibility for the accuracy or completeness of any information,\n\ + text, graphics, links or other items contained within the Software. You assume\nall liability,\ + \ financial or otherwise, associated with Your use or disposition\nof the Software.\n\t\t\ + \nAPPLICABLE LAW. Claims arising under this Agreement shall be governed by the\nlaws of\ + \ State of California], excluding its principles of conflict of laws and\nthe United Nations\ + \ Convention on Contracts for the Sale of Goods. \n\nWAIVER AND AMENDMENT. No modification,\ + \ amendment or waiver of any provision of\nthis Agreement shall be effective unless in writing\ + \ and signed by an officer of\nIntel. No failure or delay in exercising any right, power,\ + \ or remedy under\nthis Agreement shall operate as a waiver of any such right, power or\ + \ remedy. \nWithout limiting the foregoing, terms and conditions on any purchase orders\ + \ or\nsimilar materials submitted by you to Intel, and any terms contained in Intel\x92\ + s\nstandard acknowledgment form that are in conflict with these terms, shall be of\nno force\ + \ or effect.\n\nSEVERABILITY. If any provision of this Agreement is held by a court of\n\ + competent jurisdiction to be contrary to law, such provision shall be changed\nand interpreted\ + \ so as to best accomplish the objectives of the original\nprovision to the fullest extent\ + \ allowed by law and the remaining provisions of\nthis Agreement shall remain in full force\ + \ and effect.\n\nEXPORT RESTRICTIONS. Each party acknowledges that the Software is subject\ + \ to\napplicable import and export regulations of the United States and of the\ncountries\ + \ in which each party transacts business, specifically including U.S.\nExport Administration\ + \ Act and Export Administration Regulations. Each party\nshall comply with such laws and\ + \ regulations, as well as all other laws and\nregulations applicable to the Software. Without\ + \ limiting the generality of the\nforegoing, each party agrees that it will not export,\ + \ re-export, transfer or\ndivert any of the Software or the direct programs thereof to any\ + \ restricted\nplace or party in accordance with U.S. export regulations. Note that Software\n\ + containing encryption may be subject to additional restrictions.\n\nGOVERNMENT RESTRICTED\ + \ RIGHTS. The Software is provided with \"RESTRICTED RIGHTS.\"\nUse, duplication, or disclosure\ + \ by the Government is subject to restrictions as\nset forth in FAR52.227-14 and DFAR252.227-7013\ + \ et seq. or their successors. Use\nof the Software by the Government constitutes acknowledgment\ + \ of Intel's\nproprietary rights therein. Contractor or Manufacturer is Intel Corporation,\n\ + 2200 Mission College Blvd., Santa Clara, CA 95052.\n\nTERMINATION OF THE AGREEMENT. Intel\ + \ may terminate this Agreement if you violate\nits terms. Upon termination, you will immediately\ + \ destroy the Software or\nreturn all copies of the Software to Intel.\n\n--------------------------------------------------------------------------------\n\ + \nEXHIBIT \"A\"\n\nSOFTWARE LICENSE AGREEMENT (Final, Single User)\n\nIMPORTANT - READ BEFORE\ + \ COPYING, INSTALLING OR USING.\n\nDo not use or load this firmware image (the \"Software\"\ + ) until you have carefully\nread the following terms and conditions. By loading or using\ + \ the Software, you\nagree to the terms of this Agreement. If you do not wish to so agree,\ + \ do not\ninstall or use the Software.\n\nLICENSE. You may copy and use the Software, subject\ + \ to these conditions: \n1. This Software is licensed for use only in conjunction with Intel\ + \ component\n products. Use of the Software in conjunction with non-Intel component \n\ + \ products is not licensed hereunder. \n2. You may not copy, modify, rent, sell, distribute\ + \ or transfer any part of the\n Software except as provided in this Agreement, and you\ + \ agree to prevent\n unauthorized copying of the Software. \n3. You may not reverse engineer,\ + \ decompile, or disassemble the Software. \n4. You may not sublicense the Software. \n5.\ + \ The Software may contain the software or other property of third party\n suppliers.\ + \ \n\nOWNERSHIP OF SOFTWARE AND COPYRIGHTS. Title to all copies of the Software\nremains\ + \ with Intel or its suppliers. The Software is copyrighted and protected\nby the laws of\ + \ the United States and other countries, and international treaty\nprovisions. You may not\ + \ remove any copyright notices from the Software. Intel\nmay make changes to the Software,\ + \ or items referenced therein, at any time\nwithout notice, but is not obligated to support\ + \ or update the Software. Except\nas otherwise expressly provided, Intel grants no express\ + \ or implied right under\nIntel patents, copyrights, trademarks, or other intellectual property\ + \ rights.\nYou may transfer the Software only if a copy of this license accompanies the\ + \ \nSoftware and the recipient agrees to be fully bound by these terms.\n\nEXCLUSION OF\ + \ OTHER WARRANTIES EXCEPT AS PROVIDED ABOVE, THE SOFTWARE IS PROVIDED\n\"AS IS\" WITHOUT\ + \ ANY EXPRESS OR IMPLIED WARRANTY OF ANY KIND INCLUDING\nWARRANTIES OF MERCHANTABILITY,\ + \ NONINFRINGEMENT, OR FITNESS FOR A PARTICULAR\nPURPOSE. Intel does not warrant or assume\ + \ responsibility for the accuracy or\ncompleteness of any information, text, graphics, links\ + \ or other items contained\nwithin the Software.\n\nLIMITATION OF LIABILITY. IN NO EVENT\ + \ SHALL INTEL OR ITS SUPPLIERS BE LIABLE FOR\nANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT\ + \ LIMITATION, LOST PROFITS, BUSINESS\nINTERRUPTION, OR LOST INFORMATION) ARISING OUT OF\ + \ THE USE OF OR INABILITY TO\nUSE THE SOFTWARE, EVEN IF INTEL HAS BEEN ADVISED OF THE POSSIBILITY\ + \ OF SUCH\nDAMAGES. SOME JURISDICTIONS PROHIBIT EXCLUSION OR LIMITATION OF LIABILITY FOR\n\ + IMPLIED WARRANTIES OR CONSEQUENTIAL OR INCIDENTAL DAMAGES, SO THE ABOVE\nLIMITATION MAY\ + \ NOT APPLY TO YOU. YOU MAY ALSO HAVE OTHER LEGAL RIGHTS THAT VARY\nBETWEEN JURISDICTIONS.\n\ + \nTERMINATION OF THIS AGREEMENT. Intel may terminate this Agreement at any time if\nyou\ + \ violate its terms. Upon termination, you will immediately destroy the\nSoftware.\n\nAPPLICABLE\ + \ LAWS. Claims arising under this Agreement shall be governed by the\nlaws of California,\ + \ excluding its principles of conflict of laws and the United\nNations Convention on Contracts\ + \ for the Sale of Goods. You may not export the\nSoftware in violation of applicable export\ + \ laws and regulations. Intel is not\nobligated under any other agreements unless they are\ + \ in writing and signed by\nan authorized representative of Intel.\n\nGOVERNMENT RESTRICTED\ + \ RIGHTS. The Software is provided with \"RESTRICTED RIGHTS.\"\nUse, duplication, or disclosure\ + \ by the Government is subject to restrictions as\nset forth in FAR52.227-14 and DFAR252.227-7013\ + \ et seq. or their successors. Use\nof the Software by the Government constitutes acknowledgment\ + \ of Intel's\nproprietary rights therein. Contractor or Manufacturer is Intel Corporation,\n\ + 2200 Mission College Blvd., Santa Clara, CA 95052." json: intel-firmware.json - yml: intel-firmware.yml + yaml: intel-firmware.yml html: intel-firmware.html - text: intel-firmware.LICENSE + license: intel-firmware.LICENSE - license_key: intel-master-eula-sw-dev-2016 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-intel-master-eula-sw-dev-2016 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "IMPORTANT INFORMATION ABOUT YOUR RIGHTS, OBLIGATIONS AND THE USE OF YOUR DATA - READ\ + \ AND AGREE BEFORE COPYING, INSTALLING OR USING\nThis Agreement forms a legally binding\ + \ contract between you, or the company or other legal entity (\"Legal Entity\") for which\ + \ you represent and warrant that you have the legal authority to bind that Legal Entity,\ + \ are agreeing to this Agreement (each, \"You\" or \"Your\") and Intel Corporation and its\ + \ subsidiaries (collectively \"Intel\") regarding Your use of the Materials. By copying,\ + \ installing, distributing, publicly displaying, or otherwise using the Materials, You agree\ + \ to be bound by the terms of this Agreement. If You do not agree to the terms of this Agreement,\ + \ do not copy, install, distribute, publicly display, or use the Materials. You affirm that\ + \ You are 18 years old or older or, if not, Your parent, legal guardian or Legal Entity\ + \ must agree and enter into this Agreement.\n\nDATA COLLECTION. The Materials may contain\ + \ certain features that generate, collect, and transmit data to Intel about the installation,\ + \ setup, and use of the Materials. The purposes of data collection are: 1) to verify compliance\ + \ with the terms of this Agreement; and 2) to enable Intel to develop, improve, and support\ + \ Intel’s products and services. When data is collected to verify compliance with the terms\ + \ of this Agreement, this collection may be mandatory and a condition of using the Materials.\ + \ This data includes the Material’s unique serial number combined with other information\ + \ about the Materials and Your computer.\n\nWhen Materials are made available for use free\ + \ of charge, the collection of usage data (such as randomly generated unique identifier\ + \ and component/feature/function usage) may also be mandatory and a condition of using the\ + \ Materials. Data collected about the installation, setup, and use of the Materials may\ + \ be collated with other available data only if: 1) the purpose is to develop, improve,\ + \ and support Intel’s products and services, and 2) the data will not be used to identify\ + \ or contact You or other individuals.\n\nTo learn more about Intel’s data collection for\ + \ these Materials, please visit: https://software.intel.com/en- us/articles/data-collection.\ + \ To learn more about Intel’s privacy practices, please visit http://www.intel.com/privacy.\n\ + \nThird Party Programs (as defined below), even if included with the distribution of the\ + \ Materials, are governed by separate license terms, including without limitation, third\ + \ party license terms, other Intel software license terms, and open source software license\ + \ terms. Such separate license terms (and not this Agreement) solely govern Your use of\ + \ the Third Party Programs.\n\n1.\tLICENSE DEFINITIONS:\n\nA.\t\"Confidential Information\"\ + \ means all Materials (as defined below), including any portions thereof, that are identified\ + \ (in the product release notes, on Intel’s download website for the Materials or elsewhere)\ + \ or labeled as Intel confidential information or a similar legend.\n\nB.\t\"Excluded License\"\ + \ means a license that requires, as a condition of use, modification, or distribution, that\ + \ the licensed software or other software incorporated into, derived from or distributed\ + \ with such software (a) be disclosed or distributed in Source Code form; (b) be licensed\ + \ by the user to third parties for the purpose of making and/or distributing derivative\ + \ works; or (c) be redistributable at no charge. Excluded Licenses include, without limitation,\ + \ licenses that license or distribute software under any of the following licenses or distribution\ + \ models, or licenses or distribution models substantially similar to any of the following:\ + \ (a) GNU’s General Public License (GPL) or Lesser/Library GPL (LGPL), (b) the Artistic\ + \ License (e.g., PERL), (c) the Mozilla Public License, (d) the Netscape Public License,\ + \ (e) the Sun Community Source License (SCSL), (f) the Sun Industry Source License (SISL),\ + \ and (g) the Common Public License (CPL).\n\nC.\t\"Licensed Patent Claims\" means the claims\ + \ of Intel’s patents that are necessarily and directly infringed by the reproduction and\ + \ distribution of the Materials that is authorized in Section 2 below, when the Materials\ + \ is in its unmodified form as delivered by Intel to You and not modified or combined with\ + \ anything else. Licensed Patent Claims are only those claims that Intel can license without\ + \ paying, or getting the consent of, a third party.\n\nD.\t\"Materials\" are defined as\ + \ the software, documentation, the software product serial number and license key codes\ + \ (if applicable), and other materials, including any modifications, updates and upgrades\ + \ thereto, that are provided to You under this Agreement. Materials also include any\n \n\ + Redistributables, Source Code, and Pre-Release Materials, as defined below but do not include\ + \ Third Party Programs.\n\nE.\t\"Microsoft Platforms\" means any current and future Microsoft\ + \ operating system products, Microsoft run-time technologies (such as the .NET Framework),\ + \ and Microsoft application platforms (such as Microsoft Office or Microsoft Dynamics) that\ + \ Microsoft offers.\n\nF.\t\"Pre-Release Materials\" means the Materials, or portions thereof,\ + \ that are identified (in the product release notes, on Intel’s download website for the\ + \ Materials or elsewhere) or labeled as pre-release, and as such the Pre-Release Materials\ + \ are deemed to be pre-release code (e.g., alpha or beta release, etc.), which may not be\ + \ fully functional and which Intel may substantially modify in development of a commercial\ + \ version, and for which Intel makes no assurances that it will ever develop or make generally\ + \ available a commercial version.\n\nG.\t\"Redistributables\" (if any) are the files listed\ + \ in the following text files that may be included in the Materials for the applicable Intel\ + \ Software Development Product: clredist.txt, credist.txt, fredist.txt, redist.txt, and\ + \ redist-rt.txt.\n\nH.\t\"Sample Source Code\" is those portions of the Materials that are\ + \ Source Code files and are identified as sample source code, including without limitation,\ + \ the IPP Sample Source.\n\nI.\t\"Source Code\" is defined as the software (and not documentation\ + \ or text) portion of the Materials provided in human readable format, and includes modifications\ + \ to the Source Code that You make or are made on Your behalf as expressly permitted under\ + \ the terms of this Agreement.\n\nJ.\t\"Third Party Programs\" (if any) are the files listed\ + \ in the \"third-party-programs.txt\" text file that may be included in the Materials for\ + \ the applicable software.\n\nK.\t\"Your Product\" means one or more applications or products\ + \ developed by or for You using the Materials.\n\n2.\tLICENSE GRANT:\n\n2.1\tSubject to\ + \ the terms and conditions of this Agreement, and timely payment of any fees (if applicable),\ + \ Intel grants You a non-exclusive, worldwide, perpetual (subject to Section 11 below),\ + \ non- assignable (except as expressly permitted hereunder), limited right and license:\n\ + \nA.\tunder its copyrights, to:\n\n(1)\treproduce copies of the Materials for Your internal\ + \ business use in accordance with the documentation included as part of the Materials, and\ + \ subject to the applicable license rights and restrictions specified in Section 3 below;\ + \ provided, however, that this license does not include the right to sublicense and may\ + \ only be exercised by You or Your employees;\n\n(2)\tuse the Materials solely for Your\ + \ internal business use to develop Your Product, in accordance with the applicable license\ + \ rights and restrictions specified in Section 3 below and the documentation or text files\ + \ included as part of the Materials; provided, however, that this license does not include\ + \ the right to sublicense and may only be exercised by You or Your employees;\n\n(3)\tmodify\ + \ or create derivative works of the Materials, or any portions thereof, that are provided\ + \ in Source Code form, provided, however, that this license does not include the right to\ + \ sublicense and may be exercised only by You or Your employees;\n\n(4)\tpublicly perform,\ + \ display, and distribute (directly and through Your distributors, resellers and other channel\ + \ partners) or otherwise make publicly available the Redistributables, including any modifications\ + \ to or derivative works of the Redistributables made pursuant to Section 2.1.A(3), or any\ + \ portions thereof, subject to the following restrictions:\n \n(i)\tany distribution of\ + \ the Redistributables must only be as part of Your Product which must add significantly\ + \ more functionality than the Redistributables themselves;\n\n(ii)\tany additional restrictions\ + \ which may appear in the Redistributables text files specified in Section 1.G above and\ + \ in Section 3 below; and\n\n(iii)\tthe license under Section 2.1.A(4) includes the right\ + \ to sublicense the Redistributables, but the sublicense rights are limited to sublicensing\ + \ of any Intel copyrights in the Redistributables and only to the extent necessary to perform,\ + \ display, and distribute the Redistributables (including Your modifications and derivative\ + \ works thereto) solely as incorporated in Your Product. IF YOU RECEIVED THE MATERIALS FOR\ + \ EVALUATION, YOU HAVE NO RIGHTS TO DISTRIBUTE THE REDISTRIBUTABLES, INCLUDING WITHOUT LIMITATION,\ + \ ANY PORTIONS, MODIFICATIONS OR DERIVATIVE WORKS.\n\n(iv)\tDistribution of the Redistributables\ + \ is also subject to the following limitations: You (a) will be solely responsible to Your\ + \ customers for any update, support obligation or other liability which may arise from the\ + \ distribution, (b) will not make any statement that Your Product is \"certified\" or that\ + \ its performance is guaranteed by Intel, (c) will not use Intel's name or trademarks to\ + \ market Your Product without written permission from Intel, (d) will provide the Redistributables\ + \ subject to a license agreement that prohibits disassembly and reverse engineering of the\ + \ Redistributables except in cases when you provide Your Product subject to an open source\ + \ license that is not an Excluded License, for example, the BSD license, or the MIT license,\ + \ (e) will indemnify, hold harmless, and defend Intel and its suppliers from and against\ + \ any claims or lawsuits, including attorney's fees, that arise or result from Your modifications,\ + \ derivative works or Your distribution of Your Product.\n\nand\n\nB.\tunder Intel’s Licensed\ + \ Patent Claims, to:\n\n(1)\tmake copies of the Materials only as specified in Section 2.1.A(1);\n\ + \n(2)\tuse the Materials only as specified in Section 2.1.A(2); and\n\n(3)\toffer to distribute,\ + \ and distribute, but not sell, the Redistributables only as part of Your Product, under\ + \ Intel’s copyright license granted in Section 2.1(A), but only under the terms of that\ + \ copyright license and not as a sale (but this right does not include the right to sub-\ + \ license);\n\n(4)\tprovided, further, that the license under the Licensed Patent Claims\ + \ does not and will not apply to any modifications to, or derivative works of, the Materials,\ + \ whether made by You, Your customer (which, for all purposes under this Agreement, will\ + \ mean either a customer, reseller, distributor or other channel partner), or any third\ + \ party even if the modification and derivative works are permitted under 2.1(A)(3).\n\n\ + 2.2\tIf the Materials You receive are packaged, as a single orderable item (i.e., as a single\ + \ SKU), with hardware that includes one or more Intel manufactured microprocessors (\"Intel\ + \ Target Hardware\"), then the licenses granted in Section 2.1 above are restricted to the\ + \ sole purpose of producing and releasing Your Product to execute on computer systems that\ + \ include the same or new versions of the Intel manufactured microprocessor included in\ + \ the Intel Target Hardware.\n\nIntel expressly does not grant You a patent license in this\ + \ Agreement to any modifications or derivative works of the Materials, whether made by You,\ + \ Your contractor, Your customer, or any other third party in creating the derivative works\ + \ even to the extent creation of derivative works is permitted under Section 2.1(A)(3) above.\n\ + \n3.\tLICENSE CONDITIONS:\n \nA.\tIf You are an entity, each of Your employees and Your\ + \ contractors may use the Materials as specified in Section 2 above, provided: (i) their\ + \ use of the Materials is solely on behalf of and in support of Your business, (ii) they\ + \ agree to the terms and conditions of this Agreement, and (iii) You are solely responsible\ + \ for their use of the Materials.\n\nB.\tIf Your Product is a software development library,\ + \ then attribution (if any), as specified in the product release notes of the corresponding\ + \ Materials shall be displayed prominently in Your Product’s associated documentation and\ + \ on the web site (if any) for Your Product.\n\nC.\tIf You receive Your first copy of the\ + \ Materials electronically, and a second copy on media, then you may use the second copy\ + \ only in accordance with Your applicable license stated in this Agreement, or for backup\ + \ or archival purposes. You may not provide the second copy to another user.\n\nD.\tIf the\ + \ Materials You received are identified as Pre-Release Materials, (i) You have the right\ + \ to use the Pre-Release Materials only for the duration of the pre-release term, which\ + \ is specified in the product release notes, on Intel’s download website for the Materials\ + \ or elsewhere, or until the commercial release, if any, of the Pre-Release Materials, whichever\ + \ is shorter, and (ii) You may not disclose to any third party any benchmarks, performance\ + \ results, or other information relating to the Pre-Release Materials.\n\nE.\tNotwithstanding\ + \ anything to the contrary in this Agreement, if the Materials include the text file named\ + \ \"site_license_materials.txt\" the files specified in that text file may be installed\ + \ on computer systems located only at a single site (unless multiple sites are specified\ + \ in the purchase order accepted by Intel or its resellers), and those files may be accessed\ + \ or used by unlimited and simultaneous users, subject to their compliance with all of the\ + \ terms and conditions of this Agreement.\n\nF.\tExcept as expressly provided in this Agreement,\ + \ You may NOT: (i) use, copy, distribute, or publicly display the Materials; (ii) rent or\ + \ lease the Materials to any third party; (iii) assign this Agreement or transfer the Materials;\ + \ (iv) modify, adapt, or translate the Materials in whole or in part; (v) reverse engineer,\ + \ decompile, or disassemble the Materials; (vi) attempt to modify or tamper with the normal\ + \ function of any license manager that may regulate usage of the Materials; (vii) distribute,\ + \ sublicense or transfer the Source Code form of any components of the Materials or derivatives\ + \ thereof to any third party; (viii) distribute Redistributables except as part of a larger\ + \ program that adds significant primary functionality different from that of the Redistributables;\ + \ (ix) distribute the Redistributables to run on a platform other than a Microsoft Platform\ + \ if according to the accompanying user documentation the Materials are meant to execute\ + \ only on a Microsoft Platform; (x) include the Redistributables in malicious, deceptive,\ + \ or unlawful programs or products; or (xi) modify, create a derivative work, link, or distribute\ + \ the Materials so that any part of it becomes subject to an Excluded License.\n\nG.\tThe\ + \ scope and term of Your license depends on the type of license You are provided by Intel.\ + \ The variety of license types are set forth below, which may not be available for all \"\ + Intel(R) Software Development Products\" and therefore may not apply to the particular Materials\ + \ You are licensing. For more information on the types of licenses, please contact Intel\ + \ or Your sales representative.\n\ni.\tEVALUATION LICENSE: If You obtained the Materials\ + \ pursuant to an evaluation license, You may use the Materials only for internal evaluation\ + \ purposes and only for the term of the evaluation period, as specified on Intel’s download\ + \ website or which may be controlled by the license key for the Materials. NOTWITHSTANDING\ + \ ANYTHING TO THE CONTRARY ELSEWHERE IN THIS AGREEMENT, YOU MAY USE THE MATERIALS ONLY FOR\ + \ EVALUATION PURPOSES AND ONLY FOR THE TERM OF THE EVALUATION, YOU MAY NOT DISTRIBUTE ANY\ + \ PORTION OF THE MATERIALS, AND THE APPLICATION AND/OR PRODUCT DEVELOPED BY YOU MAY ONLY\ + \ BE USED FOR EVALUATION PURPOSES AND ONLY FOR THE TERM OF THE EVALUATION. You may install\ + \ copies of the Materials on a reasonable number of computers to conduct Your evaluation\ + \ provided that You are the only individual using the Materials and only one copy of the\ + \ Materials is in use at any one time. A separate license key is required for each additional\ + \ use and/or individual user in all other cases, including without limitation, use by persons,\ + \ computer systems, and other use methods\n \nknown now and in the future. Intel may provide\ + \ You with a license key that enables the Materials for an evaluation license. If You are\ + \ an entity, Intel grants You the right to designate one individual within Your organization\ + \ to have the sole right to use the Materials in the manner provided above.\n\nii.\tNONCOMMERCIAL\ + \ USE LICENSE: If You obtained the Materials under a noncommercial use license, You may\ + \ use the Materials only for non-commercial use where You receive no fee, salary or any\ + \ other form of compensation. The Materials may not be used for any other purpose, whether\ + \ \"for profit\" or \"not for profit.\" Any work performed or produced as a result of use\ + \ of the Materials cannot be performed or produced for the benefit of other parties for\ + \ a fee, compensation or any other reimbursement or remuneration. You may install copies\ + \ of the Materials on an unlimited number of computers provided that You are the only individual\ + \ using the Materials and only one copy of the Materials is in use at any one time. A separate\ + \ license is required for each additional use and/or individual user in all other cases,\ + \ including without limitation, use by persons, computer systems, and other methods of use\ + \ known now and in the future. Intel will provide You with a license key that enables the\ + \ Materials for a noncommercial- use license. If You obtained a time-limited noncommercial-use\ + \ license, the duration (time period) of Your license and Your ability to use the Materials\ + \ is limited to the time period of the obtained license, which is specified on Intel’s download\ + \ website, specified in the applicable documentation or controlled by the license key for\ + \ the Materials.\n\niii.\tNAMED-USER LICENSE: If You obtained the Materials under a named-user\ + \ license, You may allow only one (1) individual to install and use the Materials on no\ + \ more than three (3) computers provided that same individual is using the Materials only\ + \ on one (1) computer at a time. If You obtained a time-limited named-user license, the\ + \ term of Your license and your ability to use the Materials is limited to the time period\ + \ of the obtained license, which is specified on Intel’s download website, specified in\ + \ the applicable documentation or controlled by the license key for the Materials.\n\niv.\t\ + NODE-LOCKED LICENSE: If You obtained the Materials under a node-locked license, You may\ + \ use the Materials only on a single designated computer by no more than the authorized\ + \ number of concurrent users. If You obtained a time-limited node-locked license, the term\ + \ of Your license and Your ability to use the Materials is limited to the time period of\ + \ the obtained license, which is specified on Intel’s download website, specified in the\ + \ applicable documentation or controlled by the license key for the Materials.\n\nv.\tFLOATING\ + \ LICENSE: If You obtained the Materials under a floating license, you may (a) install the\ + \ Materials on an unlimited number of computers that are connected to the designated network\ + \ and (b) use the Material by no more than the authorized number of concurrent individual\ + \ users. If You obtained a time-limited Floating license key, the term of Your license and\ + \ Your ability to use the Materials is limited to the time period of the obtained license,\ + \ which is specified on Intel’s download website, specified in the applicable documentation\ + \ or controlled by the license key for the Materials.\n\nH.\tMEDIA FORMAT CODECS AND DIGITAL\ + \ RIGHTS MANAGEMENT. You acknowledge and agree that your use of the Materials or distribution\ + \ of the Materials with Your Product as permitted by this license may require you to procure\ + \ license(s) from one or more third parties that may hold intellectual property rights applicable\ + \ to any media decoding, encoding or transcoding technology (such as, for example, through\ + \ use of an audio or video codec) and/or digital rights management capabilities of the Materials,\ + \ if any. Should any such additional licenses be required, You are solely responsible for\ + \ obtaining any such licenses and agree to obtain any such licenses at Your own expense.\n\ + \nI.\tMATERIALS TRANSFER: Except for the Pre-Release Licenses or Evaluation Licenses or\ + \ Non- Commercial Licenses, as specified above, You may permanently transfer the Materials\ + \ you received pursuant to a license type listed in Section 4(G) above, and all of Your\ + \ rights under this Agreement, to another party (\"Recipient\") solely in conjunction with\ + \ a change of ownership, merger, acquisition, sale or transfer of all or substantially all\ + \ of Your business or assets, either voluntarily, by operation of law or otherwise subject\ + \ to the following: You must notify Intel of the transfer by sending a letter to Intel (i)\ + \ identifying the legal entities of Recipient and You, (ii) identifying the Materials (i.e.,\ + \ the specific Intel software and version) and the associated serial numbers to be transferred,\ + \ (iii) certifying that You retain no copies of the Materials or portions thereof, (iv)\ + \ certifying that the Recipient has agreed in writing to be bound by all of the terms and\ + \ conditions of this Agreement, (v) certifying that the Recipient has been notified that\ + \ in order to receive support from Intel for the Materials they must notify Intel in writing\ + \ of the transfer and provide Intel with the information specified in subsection (ii) above\ + \ along with the name and email address of the individual assigned to use the Materials,\ + \ and (vi) providing Your email address so that Intel may confirm receipt of Your letter.\ + \ Please send such letter to:\n\nIntel Corporation 2111 NE 25th Avenue Hillsboro, OR 97124\n\ + Attn: DPD Contracts Management, JF1-15\n\n4.\tPRIVACY:\n\nA.\tData Collection: Based on\ + \ the personal information You provided to Intel when You registered the license to the\ + \ Materials with Intel, Intel has collected or will collect certain personal information\ + \ from You in order to contact You regarding updates to the Materials, and regarding Your\ + \ experience with obtaining, installing and otherwise using Materials, including sending\ + \ You surveys to obtain the aforementioned information.\n\nB.\tRevoking Consent to Data\ + \ Collection: You can revoke Your consent to this collection of personal information at\ + \ any time by clicking on the link to \"unsubscribe\" at the bottom of any communication\ + \ from Intel related to the Materials which will allow You to opt-out of receiving future\ + \ messages related to the Materials.\n\nC.\tIntel’s Privacy Notice: Intel is committed to\ + \ respecting Your privacy. To learn more about Intel’s privacy practices, please visit http://www.intel.com/privacy.\n\ + \n5.\tOWNERSHIP: Title to the Materials and all copies thereof remain with Intel or its\ + \ suppliers. The Materials are protected by intellectual property rights, including without\ + \ limitation, United States copyright laws and international treaty provisions. You will\ + \ not remove any copyright or other proprietary notice from the Materials. You agree to\ + \ prevent any unauthorized copying of the Materials. Except as expressly provided herein,\ + \ no license or right is granted to You directly or by implication, inducement, estoppel\ + \ or otherwise; specifically Intel does not grant any express or implied right to You under\ + \ Intel patents, copyrights, trademarks, or trade secrets.\n\n6.\tNO WARRANTY AND NO SUPPORT:\ + \ Disclaimer. Intel disclaims all warranties of any kind and the terms and remedies provided\ + \ in this Agreement are instead of any other warranty or condition, express, implied or\ + \ statutory, including those regarding merchantability, fitness for any particular purpose,\ + \ non-infringement or any warranty arising out of any course of dealing, usage of trade,\ + \ proposal, specification or sample. Intel does not assume (and does not authorize any person\ + \ to assume on its behalf) any other liability.\n\nIntel may make changes to the Materials,\ + \ or to items referenced therein, at any time without notice, but is not obligated to support,\ + \ update or provide training for the Materials. Intel may in its sole discretion offer such\ + \ support, update or training services under separate terms at Intel’s then-current rates.\ + \ You may request additional information on Intel’s service offerings from an Intel sales\ + \ representative.\n\n7.\tLIMITATION OF LIABILITY: Neither Intel nor its suppliers shall\ + \ be liable for any damages whatsoever (including, without limitation, damages for loss\ + \ of business profits, business interruption, loss of business information, or other loss)\ + \ arising out of the use of or inability to use the Materials, even if Intel has been advised\ + \ of the possibility of such damages. Because some jurisdictions prohibit the exclusion\ + \ or limitation of liability for consequential or incidental damages, the above limitation\ + \ may not apply to you.\n \n8.\tUNAUTHORIZED USE: The Materials are not designed, intended,\ + \ or authorized for use in any type of a system or application in which the failure of the\ + \ Materials could create a situation where personal injury or death may occur (e.g., medical\ + \ systems, life sustaining or lifesaving systems). Should You use the Materials for any\ + \ such unintended or unauthorized use, You hereby indemnify, defend, and hold Intel and\ + \ its officers, subsidiaries and affiliates harmless against all claims, costs, damages,\ + \ expenses, and reasonable attorney fees arising out of, directly or indirectly, such use\ + \ and any claim of product liability, personal injury or death associated with such unintended\ + \ or unauthorized use, even if such claim alleges that Intel was negligent regarding the\ + \ design or manufacture of the Materials.\n\n9.\tUSER SUBMISSIONS: This Agreement does not\ + \ obligate You to provide Intel with materials, information, comments, suggestions or other\ + \ communication regarding the Materials. However, You agree that any material, information,\ + \ comments, suggestions or other communication You transmit or post to an Intel website\ + \ (including but not limited to, submissions to the Intel Premier Support and/or other customer\ + \ support websites or online portals) or provide to Intel under this Agreement are not controlled\ + \ by the International Traffic in Arms Regulations (ITAR) or the Export Administration Regulation\ + \ (EAR), and if related to the features, functions, performance or use of the Materials\ + \ are deemed non-confidential and non-proprietary (\"Communications\"). Intel will have\ + \ no obligations with respect to the Communications. You hereby grant to Intel a non-exclusive,\ + \ perpetual, irrevocable, royalty-free, copyright license to copy, modify, create derivative\ + \ works, publicly display, disclose, distribute, license and sublicense through multiple\ + \ tiers of distribution and licensees, incorporate and otherwise use the Communications\ + \ and all data, images, sounds, text, and other things embodied therein, including derivative\ + \ works thereto, for any and all commercial or non-commercial purposes. You are prohibited\ + \ from posting or transmitting to or from an Intel website or provide to Intel any unlawful,\ + \ threatening, libelous, defamatory, obscene, pornographic, or other material that would\ + \ violate any law. If You wish to provide Intel with information that You intend to be treated\ + \ as confidential information, Intel requires that such confidential information be provided\ + \ pursuant to a non-disclosure agreement (\"NDA\"), so please contact Your Intel representative\ + \ to ensure the proper NDA is in place.\n\nNothing in this Agreement will be construed as\ + \ preventing Intel from reviewing Your Communications and errors or defects in Intel products\ + \ discovered while reviewing Your Communications. Furthermore, nothing in this Agreement\ + \ will be construed as preventing Intel from implementing independently- developed enhancements\ + \ to Intel’s own error diagnosis methodology to detect errors or defects in Intel products\ + \ discovered while reviewing Your Communications or to implement bug fixes or enhancements\ + \ in Intel products. The foregoing may include the right to include Your Communications\ + \ in regression test suites.\n\n10.\tNON-DISCLOSURE: The following provisions will apply\ + \ if there is no existing non-disclosure agreement between You and Intel. You will maintain\ + \ the confidentiality of the Confidential Information (if any) with at least the same degree\ + \ of care that You use to protect Your own confidential and proprietary information, but\ + \ no less than a reasonable degree of care under the circumstances. You will not disclose\ + \ the Confidential Information to any employees or to any third parties except to Your employees\ + \ who have a need to know and who agree to abide by nondisclosure terms at least as comprehensive\ + \ as those set forth herein; provided that You will be liable for breach by any such entity.\ + \ For the purposes of this Agreement, the term \"employee\" will include Your independent\ + \ contractors, who have signed confidentiality agreements with You. You will not make any\ + \ copies of the Confidential Information except as necessary for Your employees with a need\ + \ to know. Any copies which are made will be identified as belonging to Intel and marked\ + \ \"confidential\", \"proprietary\" or with similar legend. You will not be liable for the\ + \ disclosure of any Confidential Information which is (a) generally made available publicly\ + \ or to third parties by Intel without restriction on disclosure; (b) rightfully received\ + \ from a third party without obligation of confidentiality; (c) rightfully known to You\ + \ without any limitation on disclosure prior to Your receipt from Intel; (d) independently\ + \ developed by Your employees; or (e) required to be disclosed in accordance with applicable\ + \ laws, regulations, court, judicial or other government order, provided that You will give\ + \ Intel reasonable notice prior to such disclosure and will comply with any applicable protective\ + \ order.\n\n11.\tTERMINATION OF THIS LICENSE: This Agreement becomes effective on the date\ + \ You accept this Agreement and will continue until terminated as provided for in this Agreement.\ + \ If You are using the Materials under a time-limited license, for example an Evaluation\ + \ License, this Agreement terminates without notice on the last day of the time period,\ + \ which is specified in the Materials or on Intel’s website, and/or controlled by the license\ + \ key code for the Materials. Intel may terminate this license immediately if You are in\ + \ breach of any of its terms and conditions and such breach is not cured within thirty (30)\ + \ days of written notice from Intel. Upon termination, You will immediately return to Intel\ + \ or destroy the Materials and all copies thereof. In the event of termination of this Agreement,\ + \ the license grant to any Materials or Redistributables distributed by You in accordance\ + \ with the terms and conditions of this Agreement, prior to the effective date of such termination,\ + \ will survive any such termination of this Agreement. Sections 1, 4, 5, 6, 7, 8, 9, 10,\ + \ 11, 12, and 13 will survive expiration or termination of this Agreement.\n\n12.\tU.S.\ + \ GOVERNMENT RESTRICTED RIGHTS: The technical data and computer software covered by this\ + \ license is a \"Commercial Item,\" as such term is defined by the FAR 2.101 (48 C.F.R.\ + \ 2.101) and is \"commercial computer software\" and \"commercial computer software documentation\"\ + \ as specified under FAR 12.212 (48 C.F.R. 12.212) or DFARS 227.7202 (48 C.F.R. 227.7202),\ + \ as applicable. This commercial computer software and related documentation is provided\ + \ to end users for use by and on behalf of the U.S. Government, with only those rights as\ + \ are granted to all other end users pursuant to the terms and conditions herein. Use for\ + \ or on behalf of the U.S. Government is permitted only if the party acquiring or using\ + \ this software is properly authorized by an appropriate U.S. Government official. This\ + \ use by or for the U.S. Government clause is in lieu of, and supersedes, any other FAR,\ + \ DFARS, or other provision that addresses Government rights in the computer software or\ + \ documentation covered by this license. All copyright licenses granted to the U.S. Government\ + \ are coextensive with the technical data and computer software licenses granted herein.\ + \ The U.S. Government will only have the right to reproduce, distribute, perform, display,\ + \ and prepare derivative works as needed to implement those rights.\n\n13.\tGENERAL PROVISIONS\n\ + \nA.\tENTIRE AGREEMENT: This Agreement contains the complete and exclusive agreement and\ + \ understanding between the parties concerning the subject matter of this Agreement, and\ + \ supersedes all prior and contemporaneous proposals, agreements, understanding, negotiations,\ + \ representations, warranties, conditions, and communications, oral or written, between\ + \ the parties relating to the same subject matter. This Agreement, including without limitation\ + \ its termination, has no effect on any signed non-disclosure agreements between the parties,\ + \ which remain in full force and effect as separate agreements to their terms. Each party\ + \ acknowledges and agrees that in entering into this Agreement it has not relied on, and\ + \ will not be entitled to rely on, any oral or written representations, warranties, conditions,\ + \ understanding, or communications between the parties that are not expressly set forth\ + \ in this Agreement. The express provisions of this Agreement control over any course of\ + \ performance, course of dealing, or usage of the trade inconsistent with any of the provisions\ + \ of this Agreement. The provisions of this Agreement will prevail notwithstanding any different,\ + \ conflicting, or additional provisions that may appear on any purchase order, acknowledgement,\ + \ invoice, or other writing issued by either party in connection with this Agreement. No\ + \ modification or amendment to this Agreement will be effective unless in writing and signed\ + \ by authorized representatives of each party, and must specifically identify this Agreement\ + \ by its title and version (e.g., \"End User License Agreement for the Intel(R) Software\ + \ Development Products (Version March 2016)). If You received a copy of this Agreement translated\ + \ into another language, the English language version of this Agreement will prevail in\ + \ the event of any conflict between versions. Intel may make changes to the Agreement as\ + \ it distributes new versions of the Materials. When these changes are made, Intel will\ + \ make a new version of the Agreement available on its website: https://software.intel.com/en-us/articles/end-user-license-agreement\n\ + \nB.\tEXPORT. You acknowledge that the Materials and all related technical information are\ + \ subject to export controls under the laws and regulations of the United States and any\ + \ other applicable governments. You agree to comply with these laws and regulations governing\ + \ export, re-export, import, transfer, distribution, and use of the Materials. In particular,\ + \ but without limitation, the Materials may not be exported or re-exported (a) into any\ + \ U.S. embargoed countries or (b) to any person or entity listed on a denial order published\ + \ by the U.S. government or any other applicable governments. By using the Materials, you\ + \ represent and warrant that you are not located in any such country or on any such list.\ + \ You also agree that you will not use the Materials for any purposes prohibited by the\ + \ U.S. government or other applicable governments, including, without limitation, the development,\ + \ design, manufacture or production of nuclear, missile, chemical or biological weapons.\ + \ You confirm that the Materials will not be re-exported or sold to a third party who is\ + \ known or suspected to be involved in activities including, without limitation, the development,\ + \ design, manufacture, or production of nuclear, missile, chemical or biological weapons.\n\ + \nC.\tGOVERNING LAW, JURISDICTION, AND VENUE: All disputes arising out of or related to\ + \ this Agreement, whether based on contract, tort, or any other legal or equitable theory,\ + \ will in all respects be governed by, and construed and interpreted under, the laws of\ + \ the United States of America and the State of Delaware, without reference to conflict\ + \ of laws principles. The parties agree that the United Nations Convention on Contracts\ + \ for the International Sale of Goods (1980) is specifically excluded from and will not\ + \ apply to this Agreement. All disputes arising out of or related to this Agreement, whether\ + \ based on contract, tort, or any other legal or equitable theory, will be subject to the\ + \ exclusive jurisdiction of the courts of the State of Delaware or of the Federal courts\ + \ sitting in that State. Each party submits to the personal jurisdiction of those courts\ + \ and waives all objections to that jurisdiction and venue for those disputes.\n\nD.\tSEVERABILITY:\ + \ The parties intend that if a court holds that any provision or part of this Agreement\ + \ is invalid or unenforceable under applicable law, the court will modify the provision\ + \ to the minimum extent necessary to make it valid and enforceable, or if it cannot be made\ + \ valid and enforceable, the parties intend that the court will sever and delete the provision\ + \ or part from this Agreement. Any change to or deletion of a provision or part of this\ + \ Agreement under this Section will not affect the validity or enforceability of the remainder\ + \ of this Agreement, which will continue in full force and effect.\n\nDocument Title and\ + \ Version: End User License Agreement for the Intel(R) Software Development Products (Version\ + \ March 2016)\n\n* Other names and brands may be claimed as the property of others" json: intel-master-eula-sw-dev-2016.json - yml: intel-master-eula-sw-dev-2016.yml + yaml: intel-master-eula-sw-dev-2016.yml html: intel-master-eula-sw-dev-2016.html - text: intel-master-eula-sw-dev-2016.LICENSE + license: intel-master-eula-sw-dev-2016.LICENSE - license_key: intel-material + category: Commercial spdx_license_key: LicenseRef-scancode-intel-material other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "The source code, information and material (\"Material\") contained herein is\nowned\ + \ by Intel Corporation or its suppliers or licensors, and title to such\nMaterial remains\ + \ with Intel Corporation or its suppliers or licensors.\n\nThe Material contains proprietary\ + \ information of Intel or its suppliers and\nlicensors.\n\nThe Material is protected by\ + \ worldwide copyright laws and treaty provisions.\n\nNo part of the Material may be used,\ + \ copied, reproduced, modified, published,\nuploaded, posted, transmitted, distributed or\ + \ disclosed in any way without\nIntel's prior express written permission.\n\nNo license\ + \ under any patent, copyright or other intellectual property rights\nin the Material is\ + \ granted to or conferred upon you, either expressly, by\nimplication, inducement, estoppel\ + \ or otherwise. Any license under such\nintellectual property rights must be express and\ + \ approved by Intel in writing. \n\nUnless otherwise agreed by Intel in writing, you may\ + \ not remove or alter this\nnotice or any other notice embedded in Materials by Intel or\ + \ Intel's suppliers\nor licensors in any way." json: intel-material.json - yml: intel-material.yml + yaml: intel-material.yml html: intel-material.html - text: intel-material.LICENSE + license: intel-material.LICENSE - license_key: intel-mcu-2018 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-intel-mcu-2018 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Redistribution. + + Redistribution and use in binary form, without modification, are permitted, provided that the following conditions are met: + + Redistributions must reproduce the above copyright notice and the following disclaimer in the documentation and/or other materials provided with the distribution. + Neither the name of Intel Corporation nor the names of its suppliers may be used to endorse or promote products derived from this software without specific prior written permission. + No reverse engineering, decompilation, or disassembly of this software is permitted. + + "Binary form" includes any format that is commonly used for electronic conveyance that is a reversible, bit-exact translation of binary representation to ASCII or ISO text, for example "uuencode." + + 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. json: intel-mcu-2018.json - yml: intel-mcu-2018.yml + yaml: intel-mcu-2018.yml html: intel-mcu-2018.html - text: intel-mcu-2018.LICENSE + license: intel-mcu-2018.LICENSE - license_key: intel-microcode + category: Proprietary Free spdx_license_key: LicenseRef-scancode-intel-microcode other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "SOFTWARE LICENSE AGREEMENT\n\nDO NOT DOWNLOAD, INSTALL, ACCESS, COPY, OR USE ANY PORTION\ + \ OF THE SOFTWARE \nUNTIL YOU HAVE READ AND ACCEPTED THE TERMS AND CONDITIONS OF THIS AGREEMENT.\ + \ BY \nINSTALLING, COPYING, ACCESSING, OR USING THE SOFTWARE, YOU AGREE TO BE LEGALLY \n\ + BOUND BY THE TERMS AND CONDITIONS OF THIS AGREEMENT. If You do not agree to be \nbound by,\ + \ or the entity for whose benefit You act has not authorized You to \naccept, these terms\ + \ and conditions, do not install, access, copy, or use the \nSoftware and destroy all copies\ + \ of the Software in Your possession. \n\nThis SOFTWARE LICENSE AGREEMENT (this \"Agreement\"\ + ) is entered into between \nIntel Corporation, a Delaware corporation (\"Intel\") and You.\ + \ \"You\" refers to \nyou or your employer or other entity for whose benefit you act, as\ + \ applicable. \nIf you are agreeing to the terms and conditions of this Agreement on behalf\ + \ of \na company or other legal entity, you represent and warrant that you have the \nlegal\ + \ authority to bind that legal entity to the Agreement, in which case, \n\"You\" or \"Your\"\ + \ shall be in reference to such entity. Intel and You are \nreferred to herein individually\ + \ as a \"Party\" or, together, as the \"Parties\".\nThe Parties, in consideration of the\ + \ mutual covenants contained in this \nAgreement, and for other good and valuable consideration,\ + \ the receipt and \nsufficiency of which they acknowledge, and intending to be legally bound,\ + \ agree \nas follows: \n\n1. PURPOSE. You seek to obtain, and Intel desires to provide\ + \ You, under the \nterms of this Agreement, Software solely for Your efforts to develop\ + \ and \ndistribute products integrating Intel hardware and Intel software. \"Software\"\ + \ \nrefers to certain software or other collateral, including, but not limited to, \nrelated\ + \ components, operating system, application program interfaces, device \ndrivers, associated\ + \ media, printed or electronic documentation and any updates, \nupgrades or releases thereto\ + \ associated with Intel product(s), software or \nservice(s). \"Intel-based product\" refers\ + \ to a device that includes, \nincorporates, or implements Intel product(s), software or\ + \ service(s).\n\n2. LIMITED LICENSE. Conditioned on Your compliance with the terms and \n\ + conditions of this Agreement, Intel grants to You a limited, nonexclusive, \nnontransferable,\ + \ revocable, worldwide, fully paid-up license during the term of \nthis Agreement, without\ + \ the right to sublicense, under Intel's copyrights \n(subject to any third party licensing\ + \ requirements), to (i) reproduce the \nSoftware only for Your own internal evaluation,\ + \ testing, validation, and \ndevelopment of Intel-based products and any associated maintenance\ + \ thereof; \n(ii) reproduce, display, and publicly perform an object code representation\ + \ of \nthe Software, only when integrated with and executed by an Intel-based product, \n\ + subject to any third party licensing requirements; and (iii) distribute an \nobject code\ + \ representation of the Software, provided by Intel, through multiple \nlevels of distribution,\ + \ solely as embedded in or for execution on an \nIntel-based product and subject to these\ + \ license terms, and if to an end user, \npursuant to a license agreement with terms and\ + \ conditions at least as \nrestrictive as those contained in the Intel End User Software\ + \ License Agreement \nin Appendix A hereto.\n\nIf You are not the final manufacturer or\ + \ vendor of an Intel-based product \nincorporating or designed to incorporate the Software,\ + \ You may transfer a copy \nof the Software to Your Original Equipment Manufacturer (OEM),\ + \ Original Device \nManufacturer (ODM), distributors, or system integration partners (\"\ + Your \nPartner\") for use in accordance with the terms and conditions of this \nAgreement,\ + \ provided Your Partner agrees to be fully bound by the terms hereof \nand provided that\ + \ You will remain fully liable to Intel for the actions and \ninactions of Your Partner(s).\n\ + \n3. LICENSE RESTRICTIONS. All right, title and interest in and to the Software \nand associated\ + \ documentation are and will remain the exclusive property of \nIntel and its licensors\ + \ or suppliers. Unless expressly permitted under the \nAgreement, You will not, and will\ + \ not allow any third party to (i) use, copy, \ndistribute, sell or offer to sell the Software\ + \ or associated documentation; \n(ii) modify, adapt, enhance, disassemble, decompile, reverse\ + \ engineer, change \nor create derivative works from the Software except and only to the\ + \ extent as \nspecifically required by mandatory applicable laws or any applicable third\ + \ \nparty license terms accompanying the Software; (iii) use or make the Software \navailable\ + \ for the use or benefit of third parties; or (iv) use the Software on \nYour products other\ + \ than those that include the Intel hardware product(s), \nplatform(s), or software identified\ + \ in the Software; or (v) publish or provide \nany Software benchmark or comparison test\ + \ results. You acknowledge that an \nessential basis of the bargain in this Agreement is\ + \ that Intel grants You no \nlicenses or other rights including, but not limited to, patent,\ + \ copyright, \ntrade secret, trademark, trade name, service mark or other intellectual \n\ + property licenses or rights with respect to the Software and associated \ndocumentation,\ + \ by implication, estoppel or otherwise, except for the licenses \nexpressly granted above.\ + \ You acknowledge there are significant uses of the \nSoftware in its original, unmodified\ + \ and uncombined form. You may not remove \nany copyright notices from the Software.\n\n\ + 4. LICENSE TO FEEDBACK. This Agreement does not obligate You to provide Intel \nwith materials,\ + \ information, comments, suggestions, or other communication \nregarding the features, functions,\ + \ performance or use of the Software \n(\"Feedback\"). If any portion of the Software is\ + \ provided or otherwise made \navailable by Intel in source code form, to the extent You\ + \ provide Intel with \nFeedback in a tangible form, You grant to Intel and its affiliates\ + \ a \nnon-exclusive, perpetual, sublicenseable, irrevocable, worldwide, royalty-free, \n\ + fully paid-up and transferable license, to and under all of Your intellectual \nproperty\ + \ rights, whether perfected or not, to publicly perform, publicly \ndisplay, reproduce,\ + \ use, make, have made, sell, offer for sale, distribute, \nimport, create derivative works\ + \ of and otherwise exploit any comments, \nsuggestions, descriptions, ideas, Your Derivatives\ + \ or other feedback regarding \nthe Software provided by You or on Your behalf.\n\n5. OPEN\ + \ SOURCE STATEMENT. The Software may include Open Source Software (OSS) \nlicensed pursuant\ + \ to OSS license agreement(s) identified in the OSS comments in \nthe applicable source\ + \ code file(s) or file header(s) provided with or otherwise \nassociated with the Software.\ + \ Neither You nor any OEM, ODM, customer, or \ndistributor may subject any proprietary portion\ + \ of the Software to any OSS \nlicense obligations including, without limitation, combining\ + \ or distributing \nthe Software with OSS in a manner that subjects Intel, the Software\ + \ or any \nportion thereof to any OSS license obligation. Nothing in this Agreement limits\ + \ \nany rights under, or grants rights that supersede, the terms of any applicable \nOSS\ + \ license. \n\n6. THIRD PARTY SOFTWARE. Certain third party software provided with or within\ + \ \nthe Software may only be used (a) upon securing a license directly from the \nowner\ + \ of the software or (b) in combination with hardware components purchased \nfrom such third\ + \ party and (c) subject to further license limitations by the \nsoftware owner. A listing\ + \ of any such third party limitations is in one or more \ntext files accompanying the Software.\ + \ You acknowledge Intel is not providing \nYou with a license to such third party software\ + \ and further that it is Your \nresponsibility to obtain appropriate licenses from such\ + \ third parties directly.\n\n7. CONFIDENTIALITY. The terms and conditions of this Agreement,\ + \ exchanged \nconfidential information, as well as the Software are subject to the terms\ + \ and \nconditions of the Non-Disclosure Agreement(s) or Intel Pre-Release Loan \nAgreement(s)\ + \ (referred to herein collectively or individually as \"NDA\") entered \ninto by and in\ + \ force between Intel and You, and in any case no less \nconfidentiality protection than\ + \ You apply to Your information of similar \nsensitivity. If You would like to have a contractor\ + \ perform work on Your behalf \nthat requires any access to or use of Software, You must\ + \ obtain a written \nconfidentiality agreement from the contractor which contains terms\ + \ and \nconditions with respect to access to or use of Software no less restrictive \nthan\ + \ those set forth in this Agreement, excluding any distribution rights and \nuse for any\ + \ other purpose, and You will remain fully liable to Intel for the \nactions and inactions\ + \ of those contractors. You may not use Intel's name in any \npublications, advertisements,\ + \ or other announcements without Intel's prior \nwritten consent. \n\n8. NO OBLIGATION;\ + \ NO AGENCY. Intel may make changes to the Software, or items \nreferenced therein, at any\ + \ time without notice. Intel is not obligated to \nsupport, update, provide training for,\ + \ or develop any further version of the \nSoftware or to grant any license thereto. No agency,\ + \ franchise, partnership, \njoint-venture, or employee-employer relationship is intended\ + \ or created by this \nAgreement.\n\n9. EXCLUSION OF WARRANTIES. THE SOFTWARE IS PROVIDED\ + \ \"AS IS\" WITHOUT ANY \nEXPRESS OR IMPLIED WARRANTY OF ANY KIND INCLUDING WARRANTIES OF\ + \ \nMERCHANTABILITY, NONINFRINGEMENT, OR FITNESS FOR A PARTICULAR PURPOSE. Intel \ndoes\ + \ not warrant or assume responsibility for the accuracy or completeness of \nany information,\ + \ text, graphics, links or other items within the Software.\n\n10. LIMITATION OF LIABILITY.\ + \ IN NO EVENT WILL INTEL OR ITS AFFILIATES, \nLICENSORS OR SUPPLIERS (INCLUDING THEIR RESPECTIVE\ + \ DIRECTORS, OFFICERS, \nEMPLOYEES, AND AGENTS) BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING,\ + \ WITHOUT \nLIMITATION, LOST PROFITS, BUSINESS INTERRUPTION, OR LOST DATA) ARISING OUT OF\ + \ \nOR IN RELATION TO THIS AGREEMENT, INCLUDING THE USE OF OR INABILITY TO USE THE \nSOFTWARE,\ + \ EVEN IF INTEL HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \nSOME JURISDICTIONS\ + \ PROHIBIT EXCLUSION OR LIMITATION OF LIABILITY FOR IMPLIED \nWARRANTIES OR CONSEQUENTIAL\ + \ OR INCIDENTAL DAMAGES, SO THE ABOVE LIMITATION MAY \nIN PART NOT APPLY TO YOU. THE SOFTWARE\ + \ LICENSED HEREUNDER IS NOT DESIGNED OR \nINTENDED FOR USE IN ANY MEDICAL, LIFE SAVING OR\ + \ LIFE SUSTAINING SYSTEMS, \nTRANSPORTATION SYSTEMS, NUCLEAR SYSTEMS, OR FOR ANY OTHER MISSION\ + \ CRITICAL \nAPPLICATION IN WHICH THE FAILURE OF THE SOFTWARE COULD LEAD TO PERSONAL INJURY\ + \ \nOR DEATH. YOU MAY ALSO HAVE OTHER LEGAL RIGHTS THAT VARY FROM JURISDICTION TO \nJURISDICTION.\ + \ THE LIMITED REMEDIES, WARRANTY DISCLAIMER AND LIMITED LIABILITY \nARE FUNDAMENTAL ELEMENTS\ + \ OF THE BASIS OF THE BARGAIN BETWEEN INTEL AND YOU. YOU \nACKNOWLEDGE INTEL WOULD BE UNABLE\ + \ TO PROVIDE THE SOFTWARE WITHOUT SUCH \nLIMITATIONS. YOU WILL INDEMNIFY AND HOLD INTEL\ + \ AND ITS AFFILIATES, LICENSORS \nAND SUPPLIERS (INCLUDING THEIR RESPECTIVE DIRECTORS, OFFICERS,\ + \ EMPLOYEES, AND \nAGENTS) HARMLESS AGAINST ALL CLAIMS, LIABILITIES, LOSSES, COSTS, DAMAGES,\ + \ AND \nEXPENSES (INCLUDING REASONABLE ATTORNEY FEES), ARISING OUT OF, DIRECTLY OR \nINDIRECTLY,\ + \ THE DISTRIBUTION OF THE SOFTWARE AND ANY CLAIM OF PRODUCT \nLIABILITY, PERSONAL INJURY\ + \ OR DEATH ASSOCIATED WITH ANY UNINTENDED USE, EVEN IF \nSUCH CLAIM ALLEGES THAT INTEL OR\ + \ AN INTEL AFFILIATE, LICENSORS OR SUPPLIER WAS \nNEGLIGENT REGARDING THE DESIGN OR MANUFACTURE\ + \ OF THE SOFTWARE.\n\n11. TERMINATION AND SURVIVAL. Intel may terminate this Agreement for\ + \ any reason \nwith thirty (30) days' notice and immediately if You or someone acting on\ + \ Your \nbehalf or at Your behest violates any of its terms or conditions. Upon \ntermination,\ + \ You will immediately destroy and ensure the destruction of the \nSoftware or return all\ + \ copies of the Software to Intel (including providing \ncertification of such destruction\ + \ or return back to Intel). Upon termination of \nthis Agreement, all licenses granted to\ + \ You hereunder terminate immediately. \nAll Sections of this Agreement, except Section\ + \ 2, will survive termination. \n\n12. GOVERNING LAW AND JURISDICTION. This Agreement and\ + \ any dispute arising out \nof or relating to it will be governed by the laws of the U.S.A.\ + \ and Delaware, \nwithout regard to conflict of laws principles. The Parties exclude the\ + \ \napplication of the United Nations Convention on Contracts for the International \nSale\ + \ of Goods (1980). The state and federal courts sitting in Delaware, U.S.A. \nwill have\ + \ exclusive jurisdiction over any dispute arising out of or relating to \nthis Agreement.\ + \ The Parties consent to personal jurisdiction and venue in those \ncourts. A Party that\ + \ obtains a judgment against the other Party in the courts \nidentified in this section\ + \ may enforce that judgment in any court that has \njurisdiction over the Parties. \n\n\ + 13. EXPORT REGULATIONS/EXPORT CONTROL. You agree that neither You nor Your \nsubsidiaries\ + \ will export/re-export the Software, directly or indirectly, to any \ncountry for which\ + \ the U.S. Department of Commerce or any other agency or \ndepartment of the U.S. Government\ + \ or the foreign government from where it is \nshipping requires an export license, or other\ + \ governmental approval, without \nfirst obtaining any such required license or approval.\ + \ In the event the \nSoftware is exported from the U.S.A. or re-exported from a foreign\ + \ destination \nby You or Your subsidiary, You will ensure that the distribution and \n\ + export/re-export or import of the Software complies with all laws, regulations, \norders,\ + \ or other restrictions of the U.S. Export Administration Regulations and \nthe appropriate\ + \ foreign government. \n\n14. GOVERNMENT RESTRICTED RIGHTS. The Software is a commercial\ + \ item (as defined \nin 48 C.F.R. 2.101) consisting of commercial computer software and\ + \ commercial \ncomputer software documentation (as those terms are used in 48 C.F.R. 12.212).\ + \ \nConsistent with 48 C.F.R. 12.212 and 48 C.F.R 227.7202-1 through 227.7202-4, \nYou will\ + \ not provide the Software to the U.S. Government. Contractor or \nManufacturer is Intel\ + \ Corporation, 2200 Mission College Blvd., Santa Clara, CA \n95054. \n\n15. ASSIGNMENT.\ + \ You may not delegate, assign or transfer this Agreement, the \nlicense(s) granted or any\ + \ of Your rights or duties hereunder, expressly, by \nimplication, by operation of law,\ + \ or otherwise and any attempt to do so, \nwithout Intel's express prior written consent,\ + \ will be null and void. Intel may \nassign, delegate and transfer this Agreement, and its\ + \ rights and obligations \nhereunder, in its sole discretion. \n\n16. ENTIRE AGREEMENT;\ + \ SEVERABILITY. The terms and conditions of this Agreement \nand any NDA with Intel constitute\ + \ the entire agreement between the parties with \nrespect to the subject matter hereof,\ + \ and merge and supersede all prior or \ncontemporaneous agreements, understandings, negotiations\ + \ and discussions. \nNeither Party will be bound by any terms, conditions, definitions,\ + \ warranties, \nunderstandings, or representations with respect to the subject matter hereof\ + \ \nother than as expressly provided herein. In the event any provision of this \nAgreement\ + \ is unenforceable or invalid under any applicable law or applicable \ncourt decision, such\ + \ unenforceability or invalidity will not render this \nAgreement unenforceable or invalid\ + \ as a whole, instead such provision will be \nchanged and interpreted so as to best accomplish\ + \ the objectives of such \nprovision within legal limits. \n\n17. WAIVER. The failure of\ + \ a Party to require performance by the other Party of \nany provision hereof will not affect\ + \ the full right to require such performance \nat any time thereafter; nor will waiver by\ + \ a Party of a breach of any provision \nhereof constitute a waiver of the provision itself.\ + \ \n\n18. PRIVACY. YOUR PRIVACY RIGHTS ARE SET FORTH IN INTEL'S PRIVACY NOTICE, WHICH \n\ + FORMS A PART OF THIS AGREEMENT. PLEASE REVIEW THE PRIVACY NOTICE AT \nHTTP://WWW.INTEL.COM/PRIVACY\ + \ TO LEARN HOW INTEL COLLECTS, USES AND SHARES \nINFORMATION ABOUT YOU.\n\nAPPENDIX A\n\ + INTEL END USER SOFTWARE LICENSE AGREEMENT\n\nIMPORTANT - READ BEFORE COPYING, INSTALLING\ + \ OR USING.\nTHE FOLLOWING NOTICE, OR TERMS AND CONDITIONS SUBSTANTIALLY IDENTICAL IN NATURE\ + \ \nAND EFFECT, MUST APPEAR IN THE DOCUMENTATION ASSOCIATED WITH THE INTEL-BASED \nPRODUCT\ + \ INTO WHICH THE SOFTWARE IS INSTALLED. MINIMALLY, SUCH NOTICE MUST \nAPPEAR IN THE USER\ + \ GUIDE FOR THE PRODUCT. THE TERM \"LICENSEE\" IN THIS TEXT \nREFERS TO THE END USER OF\ + \ THE PRODUCT.\n\nLICENSE. Licensee has a license under Intel's copyrights to reproduce\ + \ Intel's \nSoftware only in its unmodified and binary form, (with the accompanying \ndocumentation,\ + \ the \"Software\") for Licensee's personal use only, and not \ncommercial use, in connection\ + \ with Intel-based products for which the Software \nhas been provided, subject to the following\ + \ conditions:\n(a)\tLicensee may not disclose, distribute or transfer any part of the \n\ + Software, and You agree to prevent unauthorized copying of the Software.\n(b)\tLicensee\ + \ may not reverse engineer, decompile, or disassemble the \nSoftware.\n(c)\tLicensee may\ + \ not sublicense the Software.\n(d)\tThe Software may contain the software and other intellectual\ + \ property \nof third party suppliers, some of which may be identified in, and licensed\ + \ in \naccordance with, an enclosed license.txt file or other text or file.\n(e)\tIntel\ + \ has no obligation to provide any support, technical assistance or \nupdates for the Software.\n\ + \nOWNERSHIP OF SOFTWARE AND COPYRIGHTS. Title to all copies of the Software \nremains with\ + \ Intel or its licensors or suppliers. The Software is copyrighted \nand protected by the\ + \ laws of the United States and other countries, and \ninternational treaty provisions.\ + \ Licensee may not remove any copyright notices \nfrom the Software. Except as otherwise\ + \ expressly provided above, Intel grants \nno express or implied right under Intel patents,\ + \ copyrights, trademarks, or \nother intellectual property rights. Transfer of the license\ + \ terminates \nLicensee's right to use the Software.\nDISCLAIMER OF WARRANTY. The Software\ + \ is provided \"AS IS\" without warranty of \nany kind, EITHER EXPRESS OR IMPLIED, INCLUDING\ + \ WITHOUT LIMITATION, WARRANTIES \nOF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE.\n\ + \nLIMITATION OF LIABILITY. NEITHER INTEL NOR ITS LICENSORS OR SUPPLIERS WILL BE \nLIABLE\ + \ FOR ANY LOSS OF PROFITS, LOSS OF USE, INTERRUPTION OF BUSINESS, OR \nINDIRECT, SPECIAL,\ + \ INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY KIND WHETHER \nUNDER THIS AGREEMENT OR OTHERWISE,\ + \ EVEN IF INTEL HAS BEEN ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGES.\n\nLICENSE TO USE\ + \ COMMENTS AND SUGGESTIONS. This Agreement does NOT obligate \nLicensee to provide Intel\ + \ with comments or suggestions regarding the Software. \nHowever, if Licensee provides Intel\ + \ with comments or suggestions for the \nmodification, correction, improvement or enhancement\ + \ of (a) the Software or (b) \nIntel products or processes that work with the Software,\ + \ Licensee grants to \nIntel a non-exclusive, worldwide, perpetual, irrevocable, transferable,\ + \ \nroyalty-free license, with the right to sublicense, under Licensee's \nintellectual\ + \ property rights, to incorporate or otherwise utilize those \ncomments and suggestions.\n\ + \nTERMINATION OF THIS LICENSE. Intel or the sublicensor may terminate this \nlicense at\ + \ any time if Licensee is in breach of any of its terms or conditions. \nUpon termination,\ + \ Licensee will immediately destroy or return to Intel all \ncopies of the Software.\nTHIRD\ + \ PARTY BENEFICIARY. Intel is an intended beneficiary of the End User \nLicense Agreement\ + \ and has the right to enforce all of its terms.\n\nU.S. GOVERNMENT RESTRICTED RIGHTS. The\ + \ Software is a commercial item (as \ndefined in 48 C.F.R. 2.101) consisting of commercial\ + \ computer software and \ncommercial computer software documentation (as those terms are\ + \ used in 48 \nC.F.R. 12.212), consistent with 48 C.F.R. 12.212 and 48 C.F.R 227.7202-1\ + \ \nthrough 227.7202-4. You will not provide the Software to the U.S. Government. \nContractor\ + \ or Manufacturer is Intel Corporation, 2200 Mission College Blvd., \nSanta Clara, CA 95054.\n\ + \nEXPORT LAWS. Licensee agrees that neither Licensee nor Licensee's subsidiaries \nwill\ + \ export/re-export the Software, directly or indirectly, to any country for \nwhich the\ + \ U.S. Department of Commerce or any other agency or department of the \nU.S. Government\ + \ or the foreign government from where it is shipping requires an \nexport license, or other\ + \ governmental approval, without first obtaining any \nsuch required license or approval.\ + \ In the event the Software is exported from \nthe U.S.A. or re-exported from a foreign\ + \ destination by Licensee, Licensee will \nensure that the distribution and export/re-export\ + \ or import of the Software \ncomplies with all laws, regulations, orders, or other restrictions\ + \ of the U.S. \nExport Administration Regulations and the appropriate foreign government.\n\ + \nAPPLICABLE LAWS. This Agreement and any dispute arising out of or relating to \nit will\ + \ be governed by the laws of the U.S.A. and Delaware, without regard to \nconflict of laws\ + \ principles. The Parties to this Agreement exclude the \napplication of the United Nations\ + \ Convention on Contracts for the International \nSale of Goods (1980). The state and federal\ + \ courts sitting in Delaware, U.S.A. \nwill have exclusive jurisdiction over any dispute\ + \ arising out of or relating to \nthis Agreement. The Parties consent to personal jurisdiction\ + \ and venue in those \ncourts. A Party that obtains a judgment against the other Party in\ + \ the courts \nidentified in this section may enforce that judgment in any court that has\ + \ \njurisdiction over the Parties.\n\nLicensee's specific rights may vary from country to\ + \ country." json: intel-microcode.json - yml: intel-microcode.yml + yaml: intel-microcode.yml html: intel-microcode.html - text: intel-microcode.LICENSE + license: intel-microcode.LICENSE - license_key: intel-osl-1989 + category: Permissive spdx_license_key: LicenseRef-scancode-intel-osl-1989 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Intel Open Source License + + Copyright (c) 1989, Intel Corporation + + Intel hereby grants you permission to copy, modify, and distribute this software and + its documentation. Intel grants this permission provided that the above copyright + notice appears in all copies and that both the copyright notice and this permission + notice appear in supporting documentation. In addition, Intel grants this permission + provided that you prominently mark as not part of the original any modifications made + to this software or documentation, and that the name of Intel Corporation not be used + in advertising or publicity pertaining to distribution of the software or the + documentation without specific, written prior permission. + + Intel Corporation does not warrant, guarantee or make any representations regarding + the use of, or the results of the use of, the software and documentation in terms of + correctness, accuracy, reliability, currentness, or otherwise; and you rely on the + software, documentation and results solely at your own risk. json: intel-osl-1989.json - yml: intel-osl-1989.yml + yaml: intel-osl-1989.yml html: intel-osl-1989.html - text: intel-osl-1989.LICENSE + license: intel-osl-1989.LICENSE - license_key: intel-osl-1993 + category: Permissive spdx_license_key: LicenseRef-scancode-intel-osl-1993 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Intel hereby grants you permission to copy, modify, and distribute this + software and its documentation. Intel grants this permission provided + that the above copyright notice appears in all copies and that both the + copyright notice and this permission notice appear in supporting + documentation. In addition, Intel grants this permission provided that + you prominently mark as "not part of the original" any modifications + made to this software or documentation, and that the name of Intel + Corporation not be used in advertising or publicity pertaining to + distribution of the software or the documentation without specific, + written prior permission. + + Intel Corporation provides this AS IS, WITHOUT ANY WARRANTY, EXPRESS OR + IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY + OR FITNESS FOR A PARTICULAR PURPOSE. Intel makes no guarantee or + representations regarding the use of, or the results of the use of, + the software and documentation in terms of correctness, accuracy, + reliability, currentness, or otherwise; and you rely on the software, + documentation and results solely at your own risk. + + IN NO EVENT SHALL INTEL BE LIABLE FOR ANY LOSS OF USE, LOSS OF BUSINESS, + LOSS OF PROFITS, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES + OF ANY KIND. IN NO EVENT SHALL INTEL'S TOTAL LIABILITY EXCEED THE SUM + PAID TO INTEL FOR THE PRODUCT LICENSED HEREUNDER. json: intel-osl-1993.json - yml: intel-osl-1993.yml + yaml: intel-osl-1993.yml html: intel-osl-1993.html - text: intel-osl-1993.LICENSE + license: intel-osl-1993.LICENSE - license_key: intel-royalty-free + category: Permissive spdx_license_key: LicenseRef-scancode-intel-royalty-free other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This program has been developed by Intel Corporation. + You have Intel's permission to incorporate this code + into your product, royalty free. Intel has various + intellectual property rights which it may assert under + certain circumstances, such as if another manufacturer's + processor mis-identifies itself as being "GenuineIntel" + when the CPUID instruction is executed. + + Intel specifically disclaims all warranties, express or + implied, and all liability, including consequential and + other indirect damages, for the use of this code, + including liability for infringement of any proprietary + rights, and including the warranties of merchantability + and fitness for a particular purpose. Intel does not + assume any responsibility for any errors which may + appear in this code nor any responsibility to update it. + + Other brands and names are the property of their respective + owners. json: intel-royalty-free.json - yml: intel-royalty-free.yml + yaml: intel-royalty-free.yml html: intel-royalty-free.html - text: intel-royalty-free.LICENSE + license: intel-royalty-free.LICENSE - license_key: intel-sample-source-code-2015 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-intel-sample-source-code-2015 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Intel Sample Source Code License Agreement + + Code Samples License Agreement (Version December 2015) + + IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING. + Do not copy, install or use the Materials (as defined below) provided under this license agreement ("Agreement") from Intel Corporation (“Intel”), until you (“You”) have carefully read the following terms and conditions. By copying, installing or otherwise using the Materials, You agree to be bound by the terms of this Agreement. If You do not agree to the terms of this Agreement, do not copy, install or use the Materials. + + If You are agreeing to the terms and conditions of this Agreement on behalf of a company or other legal entity (“Legal Entity”), You represent and warrant that You have the legal authority to bind that Legal Entity to the Agreement, in which case, "You" or "Your" will mean such Legal Entity. + + By agreeing to this Agreement, You affirm that You are of legal age (18 years old or older) to enter into this Agreement. If You are not of legal age You may not enter into this Agreement, and either Your parent, legal guardian or Legal Entity must agree to the terms and conditions of this Agreement and enter into this Agreement, in which case, "You" or "Your" will mean such parent, legal guardian, or Legal Entity. + + Third Party Programs (as defined below), even if included with the distribution of the Materials, are governed by separate third party license terms, including without limitation, open source software license terms. Such third party license terms (and not this Agreement) govern Your use of the Third Party Programs, and Intel is not liable for the Third Party Programs. + + 1. LICENSE DEFINITIONS: + + “Licensed Patent Claims” means the claims of Intel’s patents that are necessarily and directly infringed by the reproduction and distribution of the Materials that is authorized in Section 2 below, when the Materials are in its unmodified form as delivered by Intel to You and not modified or combined with anything else. Licensed Patent Claims are only those claims that Intel can license without paying, or getting the consent of, a third party. + + “Materials” means Sample Source Code, Redistributables, and End-User Documentation but do not include Third Party Programs. + + “Sample Source Code” means Source Code files that are identified as sample code and which may include example interface or application source code, and any updates, provided under this Agreement. + + “Source Code” is defined as the software (and not documentation or text) portion of the Materials provided in human readable format, and includes modifications that You make or are made on Your behalf as expressly permitted under the terms of this Agreement. + + “Redistributables” means header, library, and dynamically linkable library files, and any updates, provided under this Agreement. + + “Third Party Programs” (if any) are the third party software files that may be included with the Materials for the applicable software that include a separate third party license agreement in an attached text file. + + “End-User Documentation” means textual materials intended for end users relating to the Materials. + + 2. LICENSE GRANT: + + Subject to the terms and conditions of this Agreement, Intel grants You a non-exclusive, worldwide, non-assignable, royalty-free limited right and license: + + A. under its copyrights, to: + + 1) Copy, modify, and compile the Sample Source Code and distribute it solely in Your products in executable and source code form; + 2) Copy and distribute the Redistributables solely with Your products; + 3) Copy, modify, and distribute the End User Documentation solely with Your products. + + B. Under its patents, to: + + 1) make copies of the Materials internally only; + 2) use the Materials internally only; and + 3) offer to distribute, and distribute, but not sell, the Materials only as part of or with Your products, under Intel’s copyright license granted in Section 2(A) but only under the terms of that copyright license and not as a sale (but this right does not include the right to sub-license); + 4) provided, further, that the license under the Licensed Patent Claims does not and will not apply to any modifications to, or derivative works of, the Materials, whether made by You, Your end user (which, for all purposes under this Agreement, will mean either an end user, a customer, reseller, distributor or other channel partner), or any third party even if the modification and creation of derivative works are permitted under 2(A). + + 3. LICENSE RESTRICTIONS: + + Except as expressly provided in this Agreement, You may not: + + i. use, copy, distribute or publicly display the Materials; + ii. reverse-assemble, reverse-compile, or otherwise reverse-engineer any software provided solely in binary form, iii. rent or lease the Materials to any third party; + iv. assign this Agreement or display the Materials; + v. assign this Agreement or transfer the Materials; + vi. modify, adapt or translate the Materials in whole or in part; + vii. distribute, sublicense or transfer the source code form of the Materials or derivatives thereof to any third party; viii. distribute the Materials except as part of Your products; + ix. include the Materials in malicious, deceptive, or unlawful programs or products; + x. modify, create a derivative work, link or distribute the Materials so that any part of it becomes subject to an Excluded License. + + Upon Intel's release of an update, upgrade, or new version of the Materials, you will make reasonable efforts to discontinue distribution of the enclosed Materials and you will make reasonable efforts to distribute such updates, upgrades, or new versions to your customers who have received the Materials herein. + + Distribution of the Materials is also subject to the following limitations. You: + + i. will be solely responsible to your customers for any update or support obligation or other liability which may arise from the distribution; + ii. will not make any statement that your product is "certified," or that its performance is guaranteed, by Intel; + iii. will not use Intel's name or trademarks to market your product without written permission; + iv. will prohibit disassembly and reverse engineering of the Materials provided in executable form; + v. will not publish reviews of Materials without written permission by Intel, and + vi. will indemnify, hold harmless, and defend Intel and its suppliers from and against any claims or lawsuits, including attorney's fees, that arise or result from your distribution of any product. + + 4. OWNERSHIP: Title to the Materials and all copies thereof remain with Intel or its suppliers. The Materials are copyrighted and are protected by United States copyright laws and international treaty provisions. You will not remove any copyright notice from the Materials. You agree to prevent unauthorized copying of the Materials. Except as expressly provided herein, Intel does not grant any express or implied right to you under Intel patents, copyrights, trademarks, or trade secret information. + + 5. NO WARRANTY AND NO SUPPORT: Disclaimer. Intel disclaims all warranties of any kind and the terms and remedies provided in this Agreement are instead of any other warranty or condition, express, implied or statutory, including those regarding merchantability, fitness for any particular purpose, non-infringement or any warranty arising out of any course of dealing, usage of trade, proposal, specification or sample. Intel does not assume (and does not authorize any person to assume on its behalf) any other liability. + + Intel may make changes to the Materials, or to items referenced therein, at any time without notice, but is not obligated to support, update or provide training for the Materials. Intel may in its sole discretion offer such support, update or training services under separate terms at Intel’s then-current rates. You may request additional information on Intel’s service offerings from an Intel sales representative. + + 6. USER SUBMISSIONS: You agree that any material, information, or other communication, including all data, images, sounds, text, and other things embodied therein, you transmit or post to an Intel website will be considered non-confidential ("Communications"). Intel will have no confidentiality obligations with respect to the Communications. You agree that Intel and its designees will be free to copy, modify, create derivative works, publicly display, disclose, distribute, license and sublicense through multiple tiers of distribution and licensees, incorporate, and otherwise use the Communications, including derivative works thereto, for any and all commercial or non-commercial purposes. + + 7. LIMITATION OF LIABILITY: Neither Intel nor its suppliers shall be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other loss) arising out of the use of or inability to use the Materials, even if Intel has been advised of the possibility of such damages. Because some jurisdictions prohibit the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply to You. + + 8. TERM AND TERMINATION: This Agreement commences upon Your copying, installing or using the Materials and continues until terminated. Either You or Intel may terminate this Agreement at any time upon 30 days prior written notice to the other party. Intel may terminate this license at any time if you are in breach of any of its terms and conditions. Upon termination, You will immediately destroy the Materials or return all copies of the Materials to Intel along with any copies You have made. After termination, the license grant to any Materials or Redistributables distributed by You in accordance with the terms and conditions of this Agreement, prior to the effective date of such termination, will survive any such termination of this Agreement. + + 9. U.S. GOVERNMENT RESTRICTED RIGHTS: The technical data and computer software covered by this license is a “Commercial Item,” as such term is defined by the FAR 2.101 (48 C.F.R. 2.101) and is “commercial computer software” and “commercial computer software documentation” as specified under FAR 12.212 (48 C.F.R. 12.212) or DFARS 227.7202 (48 C.F.R. 227.7202), as applicable. This commercial computer software and related documentation is provided to end users for use by and on behalf of the U.S. Government, with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Use for or on behalf of the U.S. Government is permitted only if the party acquiring or using this software is properly authorized by an appropriate U.S. Government official. This use by or for the U.S. Government clause is in lieu of, and supersedes, any other FAR, DFARS, or other provision that addresses Government rights in the computer software or documentation covered by this license. All copyright licenses granted to the U.S. Government are coextensive with the technical data and computer software licenses granted herein. The U.S. Government will only have the right to reproduce, distribute, perform, display, and prepare derivative works as needed to implement those rights. + + 10. APPLICABLE LAWS: All disputes arising out of or related to this Agreement, whether based on contract, tort, or any other legal or equitable theory, will in all respects be governed by, and construed and interpreted under, the laws of the United States of America and the State of Delaware, without reference to conflict of laws principles. The parties agree that the United Nations Convention on Contracts for the International Sale of Goods (1980) is specifically excluded from and will not apply to this Agreement. All disputes arising out of or related to this Agreement, whether based on contract, tort, or any other legal or equitable theory, will be subject to the exclusive jurisdiction of the courts of the State of Delaware or of the Federal courts sitting in that State. Each party submits to the personal jurisdiction of those courts and waives all objections to that jurisdiction and venue for those disputes. + + 11. SEVERABILITY: The parties intend that if a court holds that any provision or part of this Agreement is invalid or unenforceable under applicable law, the court will modify the provision to the minimum extent necessary to make it valid and enforceable, or if it cannot be made valid and enforceable, the parties intend that the court will sever and delete the provision or part from this Agreement. Any change to or deletion of a provision or part of this Agreement under this Section will not affect the validity or enforceability of the remainder of this Agreement, which will continue in full force and effect. + + 12. EXPORT: You must comply with all laws and regulations of the United States and other countries governing the export, re-export, import, transfer, distribution, use, and servicing of Software. In particular, You must not: (a) sell or transfer Software to a country subject to sanctions, or to any entity listed on a denial order published by the United States government or any other relevant government; or (b) use, sell, or transfer Software for the development, design, manufacture, or production of nuclear, missile, chemical or biological weapons, or for any other purpose prohibited by the United States government or other applicable government; without first obtaining all authorizations required by all applicable laws. For more details on Your export obligations, please visit http://www.intel.com/content/www/us/en/legal/export-compliance.html. + + 13. ENTIRE AGREEMENT: This Agreement contains the complete and exclusive agreement and understanding between the parties concerning the subject matter of this Agreement, and supersedes all prior and contemporaneous proposals, agreements, understanding, negotiations, representations, warranties, conditions, and communications, oral or written, between the parties relating to the same subject matter. No modification or amendment to this Agreement will be effective unless in writing and signed by authorized representatives of each party, and must specifically identify this Agreement. json: intel-sample-source-code-2015.json - yml: intel-sample-source-code-2015.yml + yaml: intel-sample-source-code-2015.yml html: intel-sample-source-code-2015.html - text: intel-sample-source-code-2015.LICENSE + license: intel-sample-source-code-2015.LICENSE - license_key: intel-scl + category: Proprietary Free spdx_license_key: LicenseRef-scancode-intel-scl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Intel Source Code License Agreement\n\nThis license governs use of the accompanying\ + \ software. By installing or copying all or any part of the software components in this\ + \ package, you (\"you\" or \"Licensee\") agree to the terms of this agreement. Do not install\ + \ or copy the software until you have carefully read and agreed to the following terms and\ + \ conditions. If you do not agree to the terms of this agreement, promptly return the software\ + \ to Intel Corporation (\"Intel\").\n\n1.\tDefinitions:\n\nA.\t\"Materials\" are defined\ + \ as the software (including the Redistributables and Source as defined herein), documentation,\ + \ and other materials, including any updates and upgrade thereto, that are provided to you\ + \ under this Agreement.\n\nB.\t\"Redistributables\" are the binary files listed in the \"\ + redist.txt\" file that is included in the Materials or are otherwise clearly identified\ + \ as redistributable files by Intel.\n\nC.\t\" Source\" is the source code file(s) that:\ + \ (i) demonstrate(s) certain functions for particular purposes; (ii) are identified as \ + \ source code; and (iii) are provided hereunder in source code form.\n\nD.\t\"Intel’s Licensed\ + \ Patent Claims\" means those claims of Intel’s patents that (a) are infringed by the Source\ + \ or Redistributables, alone and not in combination, in their unmodified form, as furnished\ + \ by Intel to Licensee and (b) Intel has the right to license.\n\n2.\tLicense Grant: Subject\ + \ to all of the terms and conditions of this Agreement:\n\nA. \tIntel grants to you a non-exclusive,\ + \ non-assignable, copyright license to use the Material for your internal development purposes\ + \ only.\n\nB.\tIntel grants to you a non-exclusive, non-assignable copyright license to\ + \ reproduce the Source, prepare derivative works of the Source and distribute the Source\ + \ or any derivative works thereof that you create, as part of the product or application\ + \ you develop using the Materials.\n\nC.\tIntel grants to you a non-exclusive, non-assignable\ + \ copyright license to distribute the Redistributables in binary form, or any portions thereof,\ + \ as part of the product or application you develop using the Materials.\n\nD.\tIntel grants\ + \ Licensee a non-transferable, non-exclusive, worldwide, non-sublicenseable license under\ + \ Intel’s Licensed Patent Claims to make, use, sell, and import the Source and the Redistributables.\n\ + \n\n3.\tConditions and Limitations:\n\nA.\tThis license does not grant you any rights to\ + \ use Intel’s name, logo or trademarks.\n\nB.\tTitle to the Materials and all copies thereof\ + \ remain with Intel. The Materials are copyrighted and are protected by United States copyright\ + \ laws. You will not remove any copyright notice from the Materials. You agree to prevent\ + \ any unauthorized copying of the Materials. Except as expressly provided herein, Intel\ + \ does not grant any express or implied right to you under Intel patents, copyrights, trademarks,\ + \ or trade secret information.\n\t\nC.\tYou may NOT: (i) use or copy the Materials except\ + \ as provided in this Agreement; (ii) rent or lease the Materials to any third party; (iii)\ + \ assign this Agreement or transfer the Materials without the express written consent of\ + \ Intel; (iv) modify, adapt, or translate the Materials in whole or in part except as provided\ + \ in this Agreement; (v) reverse engineer, decompile, or disassemble the Materials not provided\ + \ to you in source code form; or (vii) distribute, sublicense or transfer the source code\ + \ form of any components of the Materials and derivatives thereof to any third party except\ + \ as provided in this Agreement.\n\n4.\tNo Warranty:\n\n\tTHE MATERIALS ARE PROVIDED \"\ + AS IS\". INTEL DISCLAIMS ALL EXPRESS OR IMPLIED WARRANTIES WITH RESPECT TO THEM, INCLUDING\ + \ ANY IMPLIED WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT, AND FITNESS FOR ANY PARTICULAR\ + \ PURPOSE.\n\n5.\t LIMITATION OF LIABILITY: NEITHER INTEL NOR ITS SUPPLIERS SHALL BE\ + \ LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF\ + \ BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER LOSS)\ + \ ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF INTEL HAS BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES. BECAUSE SOME JURISDICTIONS PROHIBIT THE EXCLUSION\ + \ OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION\ + \ MAY NOT APPLY TO YOU.\n\n6.\tUSER SUBMISSIONS: You agree that any material, information\ + \ or other communication, including all data, images, sounds, text, and other things embodied\ + \ therein, you transmit or post to an Intel website or provide to Intel under this Agreement\ + \ will be considered non-confidential (\"Communications\"). Intel will have no confidentiality\ + \ obligations with respect to the Communications. You agree that Intel and its designees\ + \ will be free to copy, modify, create derivative works, publicly display, disclose, distribute,\ + \ license and sublicense through multiple tiers of distribution and licensees, incorporate\ + \ and otherwise use the Communications, including derivative works thereto, for any and\ + \ all commercial or non-commercial purposes\n\n7.\tTERMINATION OF THIS LICENSE: This Agreement\ + \ becomes effective on the date you accept this Agreement and will continue until terminated\ + \ as provided for in this Agreement. Intel may terminate this license at any time if you\ + \ are in breach of any of its terms and conditions. Upon termination, you will immediately\ + \ return to Intel or destroy the Materials and all copies thereof.\n\n8.\tU.S. GOVERNMENT\ + \ RESTRICTED RIGHTS: The Materials are provided with \"RESTRICTED RIGHTS\". Use, duplication\ + \ or disclosure by the Government is subject to restrictions set forth in FAR52.227-14 and\ + \ DFAR252.227-7013 et seq. or its successor. Use of the Materials by the Government constitutes\ + \ acknowledgment of Intel's rights in them.\n\n9.\tAPPLICABLE LAWS: Any claim arising under\ + \ or relating to this Agreement shall be governed by the internal substantive laws of the\ + \ State of Delaware, without regard to principles of conflict of laws. You may not export\ + \ the Materials in violation of applicable export laws." json: intel-scl.json - yml: intel-scl.yml + yaml: intel-scl.yml html: intel-scl.html - text: intel-scl.LICENSE + license: intel-scl.LICENSE - license_key: interbase-1.0 + category: Copyleft spdx_license_key: Interbase-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + Interbase Public License v1.0 + + http://info.borland.com/devsupport/interbase/opensource/IPL.html + + INTERBASE PUBLIC LICENSE Version 1.0 + + 1. Definitions. + + 1.0.1. "Commercial Use" means distribution or otherwise making the Covered Code available to a third party. + + 1.1. ''Contributor'' means each entity that creates or contributes to the creation of Modifications. + + 1.2. ''Contributor Version'' means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. + + 1.3. ''Covered Code'' means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. + + 1.4. ''Electronic Distribution Mechanism'' means a mechanism generally accepted in the software development community for the electronic transfer of data. + + 1.5. ''Executable'' means Covered Code in any form other than Source Code. + + 1.6. ''Initial Developer'' means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. + + 1.7. ''Larger Work'' means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. + + 1.8. ''License'' means this document. + + 1.8.1. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. + + 1.9. ''Modifications'' means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: + + A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. + + B. Any new file that contains any part of the Original Code or previous Modifications. + + 1.10. ''Original Code'' means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. + + 1.10.1. "Patent Claims" means any patent claim(s), now owned or hereafter + + acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. + + 1.11. ''Source Code'' means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. + + 1.12. "You'' (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You'' includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control'' means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. + + 2. Source Code License. 2.1. The Initial Developer Grant. + + The Initial Developer hereby grants You a world-wide, royalty-free, non- exclusive license, subject to third party intellectual property claims: + + (a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and + + (b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). + + (c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License. + + (d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. + + 2.2. Contributor Grant. + + Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license + + (a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and + + (b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). + + (c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code. + + (d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. + + 3. Distribution Obligations. 3.1. Application of License. + + The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. + + 3.2. Availability of Source Code. + + Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + + 3.3. Description of Modifications. + + You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. + + 3.4. Intellectual Property Matters (a) Third Party Claims. + + If Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled "LEGAL'' which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. + + (b) Contributor APIs. + + If Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. + + (c) Representations. + + Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. + + 3.5. Required Notices. + + You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. + + 3.6. Distribution of Executable Versions. + + You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating + + to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. + + 3.7. Larger Works. + + You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. + + 4. Inability to Comply Due to Statute or Regulation. + + If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. + + 5. Application of this License. + + This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. + + 6. Versions of the License. 6.1. New Versions. + + Borland Software Corporation (''Interbase'') may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. + + 6.2. Effect of New Versions. + + Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Interbase. No one other than Interbase has the right to modify the terms applicable to Covered Code created under this License. + + 6.3. Derivative Works. + + If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by + + this License), You must (a) rename Your license so that the phrases ''Mozilla'', ''MOZILLAPL'', ''MOZPL'', ''Netscape'', "MPL", ''NPL", "Interbase", "ISC", "IB'' or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) + + 6.4 Origin of the Interbase Public License. + + The Interbase public license is based on the Mozilla Public License V 1.1 with the following changes: + + The license is published by Borland Software Corporation. Only Borland Software Corporation can modify the terms applicable to Covered Code. The license can be modified used for code which is not already governed by this license. Modified versions of the license must be renamed to avoid confusion with Netscape?s or Interbase Software?s license and must include a description of changes from the Interbase Public License. The name of the license in Exhibit A is the "Interbase Public License". The reference to an alternative license in Exhibit A has been removed. Amendments I, II, III, V, and VI have been deleted. Exhibit A, Netscape Public License has been deleted A new amendment (II) has been added, describing the required and restricted rights to use the trademarks of Borland Software Corporation + + 7. DISCLAIMER OF WARRANTY. + + COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS'' BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 8. TERMINATION. + + 8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. + + 8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as "Participant") alleging that: + + (a) such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from + + Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. + + (b) any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. + + 8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. + + 8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. + + 9. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + + 10. U.S. GOVERNMENT END USERS. + + The Covered Code is a ''commercial item,'' as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of ''commercial computer software'' and ''commercial computer software documentation,'' as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. + + 11. MISCELLANEOUS. This License represents the complete agreement concerning subject matter + + hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. + + 12. RESPONSIBILITY FOR CLAIMS. + + As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + + 13. MULTIPLE-LICENSED CODE. + + Initial Developer may designate portions of the Covered Code as "Multiple- Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the NPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. + + EXHIBIT A - InterBase Public License. + + ``The contents of this file are subject to the Interbase Public License Version 1.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.Interbase.com/IPL.html + + Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. + + The Original Code was created by InterBase Software Corp and its successors. + + Portions created by Borland/Inprise are Copyright (C) Borland/Inprise. All Rights Reserved. + + Contributor(s): . AMENDMENTS + + I. InterBase and logo. This License does not grant any rights to use the trademarks "Interbase'', "Java" or "JavaScript" even if such marks are included in the Original Code or Modifications. + + II. Trademark Usage. + + II.1. Advertising Materials. All advertising materials mentioning features or use of the covered Code must display the following acknowledgement: "This product includes software developed by Borland Software Corp. + + II.2. Endorsements. The names "InterBase," "ISC," and "IB" must not be used to endorse or promote Contributor Versions or Larger Works without the prior written permission of Interbase. + + II.3. Product Names. Contributor Versions and Larger Works may not be called "InterBase" or "Interbase" nor may the word "InterBase" appear in their names without the prior written permission of Interbase. json: interbase-1.0.json - yml: interbase-1.0.yml + yaml: interbase-1.0.yml html: interbase-1.0.html - text: interbase-1.0.LICENSE + license: interbase-1.0.LICENSE - license_key: iolib-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-iolib-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, if you link this library with files compiled with + a GNU compiler to produce an executable, this does not cause the resulting + executable to be covered by the GNU General Public License. This exception does + not however invalidate any other reasons why the executable file + might be covered by the GNU General Public License. json: iolib-exception-2.0.json - yml: iolib-exception-2.0.yml + yaml: iolib-exception-2.0.yml html: iolib-exception-2.0.html - text: iolib-exception-2.0.LICENSE + license: iolib-exception-2.0.LICENSE - license_key: iozone + category: Proprietary Free spdx_license_key: LicenseRef-scancode-iozone other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "License to freely use and distribute this software is hereby granted by the\nauthor,\ + \ subject to the condition that this copyright notice remains intact. The\nauthor retains\ + \ the exclusive right to publish derivative works based on this\nwork, including, but not\ + \ limited to, revised versions of this work.\n\nTHIS SOFTWARE IS PROVIDED BY DON CAPPS AND\ + \ THE IOZONE CREW \"AS IS\" AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\ + \ TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n\ + DISCLAIMED.\n \nIN NO EVENT\ + \ SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL,\ + \ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\ + \ GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED\ + \ AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\ + \ NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE." json: iozone.json - yml: iozone.yml + yaml: iozone.yml html: iozone.html - text: iozone.LICENSE + license: iozone.LICENSE - license_key: ipa-font + category: Copyleft Limited spdx_license_key: IPA other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "IPA Font License Agreement v1.0 \n \nThe Licensor provides the Licensed Program (as\ + \ defined in Article 1 below) under the terms of this license agreement (\"Agreement\").\ + \ Any use, reproduction or distribution of the Licensed Program, or any exercise of rights\ + \ under this Agreement by a Recipient (as defined in Article 1 below) constitutes the Recipient's\ + \ acceptance of this Agreement.\n\nArticle 1 (Definitions)\n\n1. \"Digital Font\ + \ Program\" shall mean a computer program containing, or used to render or display fonts.\n\ + \n2. \"Licensed Program\" shall mean a Digital Font Program licensed by the Licensor\ + \ under this Agreement.\n\n3. \"Derived Program\" shall mean a Digital Font Program\ + \ created as a result of a modification, addition, deletion, replacement or any other adaptation\ + \ to or of a part or all of the Licensed Program, and includes a case where a Digital Font\ + \ Program newly created by retrieving font information from a part or all of the Licensed\ + \ Program or Embedded Fonts from a Digital Document File with or without modification of\ + \ the retrieved font information. \n\n4. \"Digital Content\" shall mean products\ + \ provided to end users in the form of digital data, including video content, motion and/or\ + \ still pictures, TV programs or other broadcasting content and products consisting of character\ + \ text, pictures, photographic images, graphic symbols and/or the like.\n\n5. \"\ + Digital Document File\" shall mean a PDF file or other Digital Content created by various\ + \ software programs in which a part or all of the Licensed Program becomes embedded or contained\ + \ in the file for the display of the font (\"Embedded Fonts\"). Embedded Fonts are used\ + \ only in the display of characters in the particular Digital Document File within which\ + \ they are embedded, and shall be distinguished from those in any Digital Font Program,\ + \ which may be used for display of characters outside that particular Digital Document File.\n\ + \n6. \"Computer\" shall include a server in this Agreement.\n\n7. \"Reproduction\ + \ and Other Exploitation\" shall mean reproduction, transfer, distribution, lease, public\ + \ transmission, presentation, exhibition, adaptation and any other exploitation.\n\n8. \ + \ \"Recipient\" shall mean anyone who receives the Licensed Program under this Agreement,\ + \ including one that receives the Licensed Program from a Recipient.\n\n \nArticle 2 (Grant\ + \ of License)\n\nThe Licensor grants to the Recipient a license to use the Licensed Program\ + \ in any and all countries in accordance with each of the provisions set forth in this Agreement.\ + \ However, any and all rights underlying in the Licensed Program shall be held by the Licensor.\ + \ In no sense is this Agreement intended to transfer any right relating to the Licensed\ + \ Program held by the Licensor except as specifically set forth herein or any right relating\ + \ to any trademark, trade name, or service mark to the Recipient.\n\n1. The Recipient\ + \ may install the Licensed Program on any number of Computers and use the same in accordance\ + \ with the provisions set forth in this Agreement.\n\n2. The Recipient may use the\ + \ Licensed Program, with or without modification in printed materials or in Digital Content\ + \ as an expression of character texts or the like.\n\n3. The Recipient may conduct\ + \ Reproduction and Other Exploitation of the printed materials and Digital Content created\ + \ in accordance with the preceding Paragraph, for commercial or non-commercial purposes\ + \ and in any form of media including but not limited to broadcasting, communication and\ + \ various recording media.\n\n4. If any Recipient extracts Embedded Fonts from a\ + \ Digital Document File to create a Derived Program, such Derived Program shall be subject\ + \ to the terms of this agreement. \n\n5. If any Recipient performs Reproduction\ + \ or Other Exploitation of a Digital Document File in which Embedded Fonts of the Licensed\ + \ Program are used only for rendering the Digital Content within such Digital Document File\ + \ then such Recipient shall have no further obligations under this Agreement in relation\ + \ to such actions.\n\n6. The Recipient may reproduce the Licensed Program as is\ + \ without modification and transfer such copies, publicly transmit or otherwise redistribute\ + \ the Licensed Program to a third party for commercial or non-commercial purposes (\"Redistribute\"\ + ), in accordance with the provisions set forth in Article 3 Paragraph 2.\n\n7. The\ + \ Recipient may create, use, reproduce and/or Redistribute a Derived Program under the terms\ + \ stated above for the Licensed Program: provided, that the Recipient shall follow the provisions\ + \ set forth in Article 3 Paragraph 1 when Redistributing the Derived Program. \n\nArticle\ + \ 3 (Restriction)\n\nThe license granted in the preceding Article shall be subject to the\ + \ following restrictions:\n\n1. If a Derived Program is Redistributed pursuant to\ + \ Paragraph 4 and 7 of the preceding Article, the following conditions must be met :\n\n\ + (1) The following must be also Redistributed together with the Derived Program,\ + \ or be made available online or by means of mailing mechanisms in exchange for a cost which\ + \ does not exceed the total costs of postage, storage medium and handling fees:\n\n(a) \ + \ a copy of the Derived Program; and\n\n(b) any additional file created by the font\ + \ developing program in the course of creating the Derived Program that can be used for\ + \ further modification of the Derived Program, if any.\n\n(2) It is required\ + \ to also Redistribute means to enable recipients of the Derived Program to replace the\ + \ Derived Program with the Licensed Program first released under this License (the \"Original\ + \ Program\"). Such means may be to provide a difference file from the Original Program,\ + \ or instructions setting out a method to replace the Derived Program with the Original\ + \ Program.\n\n(3) The Recipient must license the Derived Program under the\ + \ terms and conditions of this Agreement.\n\n(4) No one may use or include\ + \ the name of the Licensed Program as a program name, font name or file name of the Derived\ + \ Program.\n\n(5) Any material to be made available online or by means of\ + \ mailing a medium to satisfy the requirements of this paragraph may be provided, verbatim,\ + \ by any party wishing to do so.\n\n2. If the Recipient Redistributes the Licensed\ + \ Program pursuant to Paragraph 6 of the preceding Article, the Recipient shall meet all\ + \ of the following conditions:\n\n(1) The Recipient may not change the name\ + \ of the Licensed Program.\n\n(2) The Recipient may not alter or otherwise\ + \ modify the Licensed Program.\n\n(3) The Recipient must attach a copy of\ + \ this Agreement to the Licensed Program.\n\n3. THIS LICENSED PROGRAM IS PROVIDED\ + \ BY THE LICENSOR \"AS IS\" AND ANY EXPRESSED OR IMPLIED WARRANTY AS TO THE LICENSED PROGRAM\ + \ OR ANY DERIVED PROGRAM, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF TITLE, NON-INFRINGEMENT,\ + \ MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED. IN NO EVENT SHALL\ + \ THE LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXTENDED, EXEMPLARY,\ + \ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO; PROCUREMENT OF SUBSTITUTED GOODS\ + \ OR SERVICE; DAMAGES ARISING FROM SYSTEM FAILURE; LOSS OR CORRUPTION OF EXISTING DATA OR\ + \ PROGRAM; LOST PROFITS), 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 INSTALLATION, USE, THE REPRODUCTION OR OTHER EXPLOITATION OF THE LICENSED PROGRAM\ + \ OR ANY DERIVED PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES.\n\n4. The Licensor is under no obligation\ + \ to respond to any technical questions or inquiries, or provide any other user support\ + \ in connection with the installation, use or the Reproduction and Other Exploitation of\ + \ the Licensed Program or Derived Programs thereof.\n\nArticle 4 (Termination of Agreement)\n\ + \n1. The term of this Agreement shall begin from the time of receipt of the Licensed\ + \ Program by the Recipient and shall continue as long as the Recipient retains any such\ + \ Licensed Program in any way.\n\n2. Notwithstanding the provision set forth in\ + \ the preceding Paragraph, in the event of the breach of any of the provisions set forth\ + \ in this Agreement by the Recipient, this Agreement shall automatically terminate without\ + \ any notice. In the case of such termination, the Recipient may not use or conduct Reproduction\ + \ and Other Exploitation of the Licensed Program or a Derived Program: provided that such\ + \ termination shall not affect any rights of any other Recipient receiving the Licensed\ + \ Program or the Derived Program from such Recipient who breached this Agreement.\n\nArticle\ + \ 5 (Governing Law)\n\n1. IPA may publish revised and/or new versions of this License.\ + \ In such an event, the Recipient may select either this Agreement or any subsequent version\ + \ of the Agreement in using, conducting the Reproduction and Other Exploitation of, or Redistributing\ + \ the Licensed Program or a Derived Program. Other matters not specified above shall be\ + \ subject to the Copyright Law of Japan and other related laws and regulations of Japan.\n\ + \n2. This Agreement shall be construed under the laws of Japan." json: ipa-font.json - yml: ipa-font.yml + yaml: ipa-font.yml html: ipa-font.html - text: ipa-font.LICENSE + license: ipa-font.LICENSE - license_key: iptc-2006 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-iptc-2006 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Non-Exclusive License Agreement for International\nPress Telecommunications Council\ + \ Specifications\nand Related Documentation and Software\n\nIMPORTANT: International Press\ + \ Telecommunications Council (IPTC) standard\nspecifications for news (the Specifications)\ + \ and supporting software, documentation,\ntechnical reports, web sites and other material\ + \ related to the Specifications (the\nMaterials) including any document accompanying this\ + \ license (the Document),\nwhether in a paper or electronic format, are made available to\ + \ you subject to the\nterms stated below. By obtaining, using and/or copying the Specifications\ + \ or\nMaterials, you (the licensee) agree that you have read, understood, and will comply\n\ + with the following terms and conditions.\n\n1. The Specifications and Materials are licensed\ + \ for use only on the condition that\nyou agree to be bound by the terms of this license.\ + \ Subject to this and other\nlicensing requirements contained herein, you may, on a non-exclusive\ + \ basis,\nuse the Specifications and Materials.\n\n2. The IPTC openly provides the Specifications\ + \ and Materials for voluntary use by\nindividuals, partnerships, companies, corporations,\ + \ organizations and any other\nentity for use at the entity’s own risk. This disclaimer,\ + \ license and release is\nintended to apply to the IPTC, its officers, directors, agents,\ + \ representatives,\nmembers, contributors, affiliates, contractors, or co-venturers acting\ + \ jointly or\nseverally.\n\n3. The Document and translations thereof may be copied and furnished\ + \ to others,\nand derivative works that comment on or otherwise explain it or assist in\ + \ its\nimplementation may be prepared, copied, published and distributed, in whole\nor in\ + \ part, without restriction of any kind, provided that the copyright and\nlicense notices\ + \ and references to the IPTC appearing in the Document and the\nterms of this Specifications\ + \ License Agreement are included on all such copies\nand derivative works. Further, upon\ + \ the receipt of written permission from the\nIPTC, the Document may be modified for the\ + \ purpose of developing applications\nthat use IPTC Specifications or as required to translate\ + \ the Document into\nlanguages other than English.\n\n4. Any use, duplication, distribution,\ + \ or exploitation of the Document and\nSpecifications and Materials in any manner is at\ + \ your own risk.\n\n5. NO WARRANTY, EXPRESSED OR IMPLIED, IS MADE REGARDING THE\nACCURACY,\ + \ ADEQUACY, COMPLETENESS, LEGALITY, RELIABILITY OR\nUSEFULNESS OF ANY INFORMATION CONTAINED\ + \ IN THE DOCUMENT OR IN\nANY SPECIFICATION OR OTHER PRODUCT OR SERVICE PRODUCED OR\nSPONSORED\ + \ BY THE IPTC. THE DOCUMENT AND THE INFORMATION\nCONTAINED HEREIN AND INCLUDED IN ANY SPECIFICATION\ + \ OR OTHER\nPRODUCT OR SERVICE OF THE IPTC IS PROVIDED ON AN \"AS IS\" BASIS. THE\nIPTC\ + \ DISCLAIMS ALL WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED,\nINCLUDING, BUT NOT LIMITED\ + \ TO, ANY ACTUAL OR ASSERTED WARRANTY OF\nNON-INFRINGEMENT OF PROPRIETARY RIGHTS, MERCHANTABILITY,\ + \ OR\nFITNESS FOR A PARTICULAR PURPOSE. NEITHER THE IPTC NOR ITS\nCONTRIBUTORS SHALL BE\ + \ HELD LIABLE FOR ANY IMPROPER OR INCORRECT\nUSE OF INFORMATION. NEITHER THE IPTC NOR ITS\ + \ CONTRIBUTORS ASSUME\nANY RESPONSIBILITY FOR ANYONE'S USE OF INFORMATION PROVIDED BY THE\n\ + IPTC. IN NO EVENT SHALL THE IPTC OR ITS CONTRIBUTORS BE LIABLE TO\nANYONE FOR DAMAGES OF\ + \ ANY KIND, INCLUDING BUT NOT LIMITED TO,\nCOMPENSATORY DAMAGES, LOST PROFITS, LOST DATA\ + \ OR ANY FORM OF\nSPECIAL, INCIDENTAL, INDIRECT, CONSEQUENTIAL OR PUNITIVE DAMAGES\nOF ANY\ + \ KIND WHETHER BASED ON BREACH OF CONTRACT OR WARRANTY,\nTORT, PRODUCT LIABILITY OR OTHERWISE.\n\ + \n6. The IPTC takes no position regarding the validity or scope of any Intellectual\nProperty\ + \ or other rights that might be claimed to pertain to the implementation\nor use of the\ + \ technology described in the Document or the extent to which any\nlicense under such rights\ + \ might or might not be available. The IPTC does not\nrepresent that it has made any effort\ + \ to identify any such rights. Copies of\nclaims of rights made available for publication,\ + \ assurances of licenses to be\nmade available, or the result of an attempt made to obtain\ + \ a general license or\npermission for the use of such proprietary rights by implementers\ + \ or users of\nthe Specifications and Materials, can be obtained from the Managing Director\ + \ of\nthe IPTC.\n\n7. By using the Specifications and Materials including the Document in\ + \ any\nmanner or for any purpose, you release the IPTC from all liabilities, claims,\ncauses\ + \ of action, allegations, losses, injuries, damages, or detriments of any\nnature arising\ + \ from or relating to the use of the Specifications, Materials or any\nportion thereof.\ + \ You further agree not to file a lawsuit, make a claim, or take\nany other formal or informal\ + \ legal action against the IPTC, resulting from your\nacquisition, use, duplication, distribution,\ + \ or exploitation of the Specifications,\nMaterials or any portion thereof. Finally, you\ + \ hereby agree that the IPTC is not\nliable for any direct, indirect, special or consequential\ + \ damages arising from or\nrelating to your acquisition, use, duplication, distribution,\ + \ or exploitation of the\nSpecifications, Materials or any portion thereof.\n\n8. Specifications\ + \ and Materials may be downloaded or copied provided that ALL\ncopies retain the ownership,\ + \ copyright and license notices.\n\n9. Materials may not be edited, modified, or presented\ + \ in a context that creates a\nmisleading or false impression or statement as to the positions,\ + \ actions, or\nstatements of the IPTC.\n\n10. The name and trademarks of the IPTC may not\ + \ be used in advertising,\npublicity, or in relation to products or services and their names\ + \ without the\nspecific, written prior permission of the IPTC. Any permitted use of the\n\ + trademarks of the IPTC, whether registered or not, shall be accompanied by an\nappropriate\ + \ mark and attribution, as agreed with the IPTC.\n\n11. Specifications may be extended by\ + \ both members and non-members to provide\nadditional functionality (Extended Specifications)\ + \ provided that there is a clear\nrecognition of the IPTC IP and its ownership in the Extended\ + \ Specifications and\nthe related documentation and provided that the extensions are clearly\n\ + identified and provided that a perpetual license is granted by the creator of the\nExtended\ + \ Specifications for other members and non-members to use the\nExtended Specifications and\ + \ to continue extensions of the Extended\nSpecifications. The IPTC does not waive any of\ + \ its rights in the Specifications\nand Materials in this context. The Extended Specifications\ + \ may be considered\nthe intellectual property of their creator. The IPTC expressly disclaims\ + \ any\nresponsibility for damage caused by an extension to the Specifications.\n\n12. Specifications\ + \ and Materials may be included in derivative work of both\nmembers and non-members provided\ + \ that there is a clear recognition of the\nIPTC IP and its ownership in the derivative\ + \ work and its related documentation.\nThe IPTC does not waive any of its rights in the\ + \ Specifications and Materials in\nthis context. Derivative work in its entirety may be\ + \ considered the intellectual\nproperty of the creator of the work .The IPTC expressly disclaims\ + \ any\nresponsibility for damage caused when its IP is used in a derivative context.\n\n\ + 13. This Specifications License Agreement is perpetual subject to your conformance\nto the\ + \ terms of this Agreement. The IPTC may terminate this Specifications\nLicense Agreement\ + \ immediately upon your breach of this Agreement and, upon\nsuch termination you will cease\ + \ all use, duplication, distribution, and/or\nexploitation in any manner of the Specifications\ + \ and Materials.\n\n14. This Specifications License Agreement reflects the entire agreement\ + \ of the\nparties regarding the subject matter hereof and supersedes all prior\nagreements\ + \ or representations regarding such matters, whether written or oral.\nTo the extent any\ + \ portion or provision of this Specifications License Agreement\nis found to be illegal\ + \ or unenforceable, then the remaining provisions of this\nSpecifications License Agreement\ + \ will remain in full force and effect and the \nillegal or unenforceable provision will\ + \ be construed to give it such effect as it\nmay properly have that is consistent with the\ + \ intentions of the parties.\n\n15. This Specifications License Agreement may only be modified\ + \ in writing signed\nby an authorized representative of the IPTC.\n\n16. This Specifications\ + \ License Agreement is governed by the law of United\nKingdom, as such law is applied to\ + \ contracts made and fully performed in the\nUnited Kingdom. Any disputes arising from or\ + \ relating to this Specifications\nLicense Agreement will be resolved in the courts of the\ + \ United Kingdom. You\nconsent to the jurisdiction of such courts over you and covenant\ + \ not to assert\nbefore such courts any objection to proceeding in such forums.\n\nIF YOU\ + \ DO NOT AGREE TO THESE TERMS YOU MUST CEASE ALL USE OF THE\nSPECIFICATIONS AND MATERIALS\ + \ NOW.\nIF YOU HAVE ANY QUESTIONS ABOUT THESE TERMS, PLEASE CONTACT THE\nMANAGING DIRECTOR\ + \ OF THE INTERNATIONAL PRESS TELECOMMUNICATION\nCOUNCIL.\nAS OF THE DATE OF THIS REVISION\ + \ OF THIS SPECIFICATIONS LICENSE\nAGREEMENT YOU MAY CONTACT THE IPTC at http://www.iptc.org.\n\ + License agreement version of: 30 January 2006" json: iptc-2006.json - yml: iptc-2006.yml + yaml: iptc-2006.yml html: iptc-2006.html - text: iptc-2006.LICENSE + license: iptc-2006.LICENSE - license_key: irfanview-eula + category: Commercial spdx_license_key: LicenseRef-scancode-irfanview-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "IrfanView Software License Agreement. \n\nThis is a legal agreement between you and\ + \ IrfanView Software (Irfan Skiljan) covering your use of IrfanView (the \"Software\").\ + \ \n\n1) IrfanView is provided as freeware, but only for private, non-commercial use (that\ + \ means at home). \n\n1a) IrfanView is free for educational use (schools, universities,\ + \ museums and libraries) and for use in charity or humanitarian organisations. \n\n1b) If\ + \ you intend to use IrfanView at your place of business or for commercial purposes, please\ + \ register and purchase it.\nCommercial users: please contact me by E-Mail for prices, discounts\ + \ and payment methods. \n\n1c) If you buy IrfanView license(s), Irfanview hereby grants\ + \ to you a perpetual, worldwide, fully paid-up, non-exclusive license to use the Software\ + \ solely for your internal business purposes. \n\n2) IrfanView Software is owned by Irfan\ + \ Skiljan and is protected by copyright laws\nand international treaty provisions. Therefore,\ + \ you must treat the Software like any other\ncopyrighted material. \n\n3) You may not distribute,\ + \ rent, sub-license or otherwise make available to others the Software\nor documentation\ + \ or copies thereof, except as expressly permitted in this License without prior\nwritten\ + \ consent from IrfanView (Irfan Skiljan). In the case of an authorized transfer, the\ntransferee\ + \ must agree to be bound by the terms and conditions of this License Agreement. \n\n4) You\ + \ may not remove any proprietary notices, labels, trademarks on the Software or\ndocumentation.\ + \ You may not modify, de-compile, disassemble or reverse engineer the Software. \n\n5) Limited\ + \ warranty: IrfanView, IrfanView PlugIns and documentation are \"as is\" without any\nwarranty\ + \ as to their performance, merchantability or fitness for any particular purpose.\nThe licensee\ + \ assumes the entire risk as to the quality and performance of the software.\nIn no event\ + \ shall IrfanView or anyone else who has been involved in the creation, development,\nproduction,\ + \ or delivery of this software be liable for any direct, incidental or consequential\ndamages,\ + \ such as, but not limited to, loss of anticipated profits, benefits, use, or data resulting\n\ + from the use of this software, or arising out of any breach of warranty. \n\nCopyright (C)\ + \ 2016 by Irfan Skiljan, Wiener Neustadt, Austria. \n\nInternet: http://www.irfanview.com,\ + \ http://www.irfanview.net \nEmail: irfanview@gmx.net \n\nAll rights reserved." json: irfanview-eula.json - yml: irfanview-eula.yml + yaml: irfanview-eula.yml html: irfanview-eula.html - text: irfanview-eula.LICENSE + license: irfanview-eula.LICENSE - license_key: isc + category: Permissive spdx_license_key: ISC other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. json: isc.json - yml: isc.yml + yaml: isc.yml html: isc.html - text: isc.LICENSE + license: isc.LICENSE - license_key: iso-14496-10 + category: Permissive spdx_license_key: LicenseRef-scancode-iso-14496-10 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Software Copyright Licensing Disclaimer + + This software module was originally developed by contributors to the + course of the development of ISO/IEC 14496-10 for reference purposes + and its performance may not have been optimized. This software + module is an implementation of one or more tools as specified by + ISO/IEC 14496-10. ISO/IEC gives users free license to this software + module or modifications thereof. Those intending to use this software + module in products are advised that its use may infringe existing + patents. ISO/IEC have no liability for use of this software module + or modifications thereof. The original contributors retain full + rights to modify and use the code for their own purposes, and to + assign or donate the code to third-parties. + + This copyright notice must be included in all copies or derivative + works. json: iso-14496-10.json - yml: iso-14496-10.yml + yaml: iso-14496-10.yml html: iso-14496-10.html - text: iso-14496-10.LICENSE + license: iso-14496-10.LICENSE - license_key: iso-8879 + category: Permissive spdx_license_key: LicenseRef-scancode-iso-8879 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to copy in any form is granted for use with + conforming SGML systems and applications as defined in + ISO 8879, provided this notice is included in all copies. json: iso-8879.json - yml: iso-8879.yml + yaml: iso-8879.yml html: iso-8879.html - text: iso-8879.LICENSE + license: iso-8879.LICENSE - license_key: iso-recorder + category: Proprietary Free spdx_license_key: LicenseRef-scancode-iso-recorder other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "This utility is free for non-commercial (personal) use. Other types of use\nshould\ + \ be discussed with the author (a very reasonable person) - see the\ncontact information\ + \ section. Author shall not be liable for any damage resulting\nfrom the use of this utility.\ + \ All rights are reserved. \n4. Contact information Problems should be reported to isorecorder@alexfeinman.com\n\ + To discuss licensing issues please e-mail to Alex Feinman" json: iso-recorder.json - yml: iso-recorder.yml + yaml: iso-recorder.yml html: iso-recorder.html - text: iso-recorder.LICENSE + license: iso-recorder.LICENSE - license_key: isotope-cla + category: Commercial spdx_license_key: LicenseRef-scancode-isotope-cla other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + This Commercial License Agreement is a binding legal agreement between you and Metafizzy LLC (Metafizzy). By installing, copying, or using Isotope (the Software), you agree to be bound by these terms of this Agreement. + + Grant of License + + Subject to the payment of the fee required and the conditions herein, you are hereby granted a non-exclusive, non-transferable right to use Isotope (the Software) to design and develop commercial applications (Applications). + + DEVELOPER GRANT + + The Isotope Commercial Developer License grants 1 license for you as 1 designated user (Developer) to use the Software for the purpose of developing Applications. A Developer is an individual who implements the Software into Applications, most often writing the necessary code to do so. You must purchase another separate license to the Software for each and any additional Developer, or purchase a Isotope Commercial Organization License to cover your organization as a whole. + + ORGANIZATION GRANT + + The Isotope Commercial Organization License grants 1 license for your Organization as 1 designated, collective user (Organization) to use the Software for the purpose of developing Applications. There is no limit or restriction of the number of Developers within your Organization who may develop Applications using the Software. + + USAGE + + You are granted the right to use and to modify the source code of the Software for use in Applications. There is no limit or restriction of the number of Applications which use the Software. You own any original work authored by you. Metafizzy continues to retain all copyright and other intellectual property rights in the Software. You are not permitted to move, remove, edit, or obscure any copyright, trademark, attribution, warning or disclaimer notices in the Software. + + You may use the Software only to create Applications that are significantly different than and do not compete with the Software. You are granted the license to distribute the Software as part of your Applications on a royalty-free basis. Users of your Applications are permitted to use the Software or your modifications of the Software as part of your Applications. Users do not need to purchase their own commercial license for the Software, so long as they are not acting as Developers, developing their own commercial Applications with the Software. + + Warranties and Remedies + + 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. Metafizzy’s entire liability and your exclusive remedy under this agreement shall be return of the price paid for the Software. json: isotope-cla.json - yml: isotope-cla.yml + yaml: isotope-cla.yml html: isotope-cla.html - text: isotope-cla.LICENSE + license: isotope-cla.LICENSE - license_key: issl-2018 + category: Free Restricted spdx_license_key: LicenseRef-scancode-issl-2018 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "Intel Simplified Software License (Version April 2018)\n\nCopyright (c) 2018 Intel\ + \ Corporation.\n\nUse and Redistribution. You may use and redistribute the software (the\ + \ “Software”), without modification, provided the following conditions are met:\n\n* Redistributions\ + \ must reproduce the above copyright notice and the following terms of use in the Software\ + \ and in the documentation and/or other materials provided with the distribution.\n\n* Neither\ + \ the name of Intel nor the names of its suppliers may be used to endorse or promote products\ + \ derived from this Software without specific prior written permission.\n\n* No reverse\ + \ engineering, decompilation, or disassembly of this Software is permitted.\n\nLimited patent\ + \ license. Intel grants you a world-wide, royalty-free, non-exclusive license under patents\ + \ it now or hereafter owns or controls to make, have made, use, import, offer to sell and\ + \ sell (“Utilize”) this Software, but solely to the extent that any such patent is necessary\ + \ to Utilize the Software alone. The patent license shall not apply to any combinations\ + \ which include this software. No hardware per se is licensed hereunder.\n\nThird party\ + \ and other Intel programs. “Third Party Programs” are the files listed in the “third-party-programs.txt”\ + \ text file that is included with the Software and may include Intel programs under separate\ + \ license terms. Third Party Programs, even if included with the distribution of the Materials,\ + \ are governed by separate license terms and those license terms solely govern your use\ + \ of those programs. \n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY EXPRESS\ + \ OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT ARE DISCLAIMED. THIS SOFTWARE IS\ + \ NOT INTENDED FOR USE IN SYSTEMS OR APPLICATIONS WHERE FAILURE OF THE SOFTWARE MAY CAUSE\ + \ PERSONAL INJURY OR DEATH AND YOU AGREE THAT YOU ARE FULLY RESPONSIBLE FOR ANY CLAIMS,\ + \ COSTS, DAMAGES, EXPENSES, AND ATTORNEYS’ FEES ARISING OUT OF ANY SUCH USE, EVEN IF ANY\ + \ CLAIM ALLEGES THAT INTEL WAS NEGLIGENT REGARDING THE DESIGN OR MANUFACTURE OF THE MATERIALS.\n\ + \nLIMITATION OF LIABILITY. IN NO EVENT WILL INTEL 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. YOU AGREE TO INDEMNIFY AND\ + \ HOLD INTEL HARMLESS AGAINST ANY CLAIMS AND EXPENSES RESULTING FROM YOUR USE OR UNAUTHORIZED\ + \ USE OF THE SOFTWARE.\n\nNo support. Intel may make changes to the Software, at any time\ + \ without notice, and is not obligated to support, update or provide training for the Software.\n\ + \nTermination. Intel may terminate your right to use the Software in the event of your breach\ + \ of this Agreement and you fail to cure the breach within a reasonable period of time.\n\ + \nFeedback. Should you provide Intel with comments, modifications, corrections, enhancements\ + \ or other input (“Feedback”) related to the Software Intel will be free to use, disclose,\ + \ reproduce, license or otherwise distribute or exploit the Feedback in its sole discretion\ + \ without any obligations or restrictions of any kind, including without limitation, intellectual\ + \ property rights or licensing obligations.\n\nCompliance with laws. You agree to comply\ + \ with all relevant laws and regulations governing your use, transfer, import or export\ + \ (or prohibition thereof) of the Software.\n\nGoverning law. All disputes will be governed\ + \ by the laws of the United States of America and the State of Delaware without reference\ + \ to conflict of law principles and subject to the exclusive jurisdiction of the state or\ + \ federal courts sitting in the State of Delaware, and each party agrees that it submits\ + \ to the personal jurisdiction and venue of those courts and waives any objections. The\ + \ United Nations Convention on Contracts for the International Sale of Goods (1980) is specifically\ + \ excluded and will not apply to the Software.\n\n*Other names and brands may be claimed\ + \ as the property of others." json: issl-2018.json - yml: issl-2018.yml + yaml: issl-2018.yml html: issl-2018.html - text: issl-2018.LICENSE + license: issl-2018.LICENSE - license_key: itc-eula + category: Commercial spdx_license_key: LicenseRef-scancode-itc-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + This Agreement constitutes the complete agreement between you and International Typeface Corporation (ITC) (except for multi-CPU licenses, where another document supplements this one and outlines and confirms the scope of the your upgraded license). If you do not agree to the terms stated in this Agreement, you may obtain a full refund by contacting ITC at the address below within 15 days with your proof of payment. + + International Typeface Corporation + Department: DRL + 228 East 45th Street / 12th Floor + New York, New York 10017 USA + Email: info@itcfonts.com + THE SOFTWARE. The digital file downloaded to your computer contains Software that is the property of ITC. "Software" includes computer programs and the digitally encoded, machine readable, scalable outline font data as encoded in a special format. This Agreement grants you certain rights to use the Software and is not an agreement for sale of the Software or any portion or copy of it. + + GRANT OF LICENSE. In return for the license fee that you have paid, ITC grants you a non-exclusive license to install and use the Software on up to five CPUs at a single location. These CPUs can be connected to, and the Software used with, any number of output devices, such as a laser printer, ink jet printer, an imagesetter or a film recorder, but the Software may only be downloaded to the non-volatile memory, such as a hard disk, of one output device. If you need to download the Software to more than one output device or install it on more than five CPUs, you are required to acquire additional licenses from ITC. + + OTHER RIGHTS. Except for your right to use the Software granted by this license, all other rights, title and interest in the Software and related trademarks and trade names are owned and retained by ITC . You agree to establish reasonable procedures regulating access to and use of the Software and use of the related trademarks and trade names in accordance with the laws of the United States and this Agreement. + + OTHER RESTRICTION. You may not duplicate or copy the Software except as needed to use it as described above. You may not modify, adapt, translate, reverse engineer, decompile or disassemble the Software. You agree not to ship, export, or transfer the Software into any country or to use the Software in any manner prohibited by the United States Export Administration Act. The trademarks and trade names of ITC can only be used to identify printed output produced by the Software. You agree not to remove and trademark or copyright notices from the output produced by the Software. + + ASSIGNMENT. You are not authorized to sublicense, sell, or lease the Software, but you may permanently transfer your rights under this Agreement to a third party; provided that (i) you transfer your copy of this Agreement, the Software, and all original documentation to the third party, (ii) you destroy all of your copies of the Software and accompanying documentation, and (iii) the third party agrees in writing to be bound by the terms of this Agreement. + + SERVICE BUREAUS. You are authorized to provide a copy of the Software to a service bureau only if they provide you with written assurance that they already own a valid license from ITC to use the Software. Any copies of the Software transferred to a service bureau under this condition must contain the proprietary notices of ITC contained in the Software. + + TERMINATION. This Agreement will immediately and automatically terminate without notice if you fail to comply with any term or condition of this Agreement. If this Agreement is terminated, you agreed to destroy all copies of the Software and documentation in your possession. + + LIMITED WARRANTY. For a period of 90 days after delivery, ITC warrants that the Software will perform in accordance with the specifications published by ITC. ITC MAKES NO OTHER WARRANTIES, EXPRESS OR IMPLIED. THE WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE AND MERCHANTABILITY ARE SPECIFICALLY EXCLUDED. ITC DOES NOT WARRANT THAT THE SOFTWARE IS FREE FROM ALL ERRORS AND OMISSIONS. If you require or desire greater protection or rights, you may notify ITC and make additional payments for this purpose in amounts to be discussed with ITC. + + LIMITATION OF LIABILITY. Your exclusive remedy and the sole liability of ITC in connection with the Software is repair or replacement of defective parts. ITC’S CUMULATIVE LIABILITY FOR ANY LOSS OR DAMAGE RELATING TO THIS AGREEMENT SHALL NOT EXCEED THE PURCHASE PRICE THAT YOU PAID FOR THE LICENSE. IN NO EVENT WILL ITC BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES SUCH AS LOST PROFITS, OR LOST DATA, OR ANY DAMAGES CAUSED BY THE ABUSE OR MISAPPLICATION OF THE SOFTWARE. + + GENERAL. This Agreement will be governed by the law of New York. YOU ACKNOWLEDGE THAT YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS AND CONDITIONS OF THIS AGREEMENT. json: itc-eula.json - yml: itc-eula.yml + yaml: itc-eula.yml html: itc-eula.html - text: itc-eula.LICENSE + license: itc-eula.LICENSE - license_key: itu + category: Permissive spdx_license_key: LicenseRef-scancode-itu other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "COPYRIGHT AND WARRANTY INFORMATION Copyright , International Telecommunications Union,\ + \ Geneva\n\nDISCLAIMER OF WARRANTY\n\nThese software programs are available to the user\ + \ without any license fee or royalty on an \"as is\" basis. The ITU disclaims any and all\ + \ warranties, whether express, implied, or statutory, including any implied warranties of\ + \ merchantability or of fitness for a particular purpose. In no event shall the contributor\ + \ or the ITU be liable for any incidental, punitive, or consequential damages of any kind\ + \ whatsoever arising from the use of these programs.\n\nThis disclaimer of warranty extends\ + \ to the user of these programs and user's customers, employees, agents, transferees, successors,\ + \ and assigns.\n\nThe ITU does not represent or warrant that the programs furnished hereunder\ + \ are free of infringement of any third-party patents. Commercial implementations of ITU-T\ + \ Recommendations, including shareware, may be subject to royalty fees to patent holders.\ + \ Information regarding the ITU-T patent policy is available from the ITU Web site at http://www.itu.int.\ + \ \n\nTHIS IS NOT A GRANT OF PATENT RIGHTS - SEE THE ITU-T PATENT POLICY." json: itu.json - yml: itu.yml + yaml: itu.yml html: itu.html - text: itu.LICENSE + license: itu.LICENSE - license_key: itu-t + category: Free Restricted spdx_license_key: LicenseRef-scancode-itu-t other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "Software(1) License Agreement \n\nITU hereby grants you a worldwide, non-exclusive,\ + \ free license to reproduce, modify, and use the Software for the limited purpose of implementing\ + \ an ITU-T Recommendation. \n\nYou may not rent, lease, sell, sublicense, assign or otherwise\ + \ transfer the Software to third parties, except as specifically provided herein. This limitation\ + \ includes, but is not limited to, placing this Software at the disposal of third parties,\ + \ such as by placing it on an external network. Your use of this Software indicates your\ + \ acceptance of these terms and conditions. \n\nITU draws attention to the possibility that\ + \ the practice or implementation of an ITU-T Recommendation may involve the use of a claimed\ + \ Intellectual Property Right. ITU takes no position concerning the evidence, validity or\ + \ applicability of claimed Intellectual Property Rights, whether asserted by ITU members\ + \ or others outside of the Recommendation development process. However, implementors are\ + \ strongly urged to consult the TSB patent database (http://www.itu.int/ipr) to discover\ + \ if ITU has received notice of intellectual property, protected by patents, which may be\ + \ required to implement a Recommendation. \n\nDisclaimer: In no event shall the ITU be liable\ + \ for any damages whatsoever (including, without limitation, damages for loss of profits,\ + \ business interruption, loss of information, or any other pecuniary loss) arising out of\ + \ or related to the use of or inability to use the accompanying Software. The ITU disclaims\ + \ all warranties, express or implied, including but not limited to, warranties of merchantability\ + \ and fitness for a particular purpose. \n_ \n\n(1)In the context of this Software License\ + \ Agreement the term \"Software\" includes source code, object code and/or data, there including\ + \ audiovisual materials." json: itu-t.json - yml: itu-t.yml + yaml: itu-t.yml html: itu-t.html - text: itu-t.LICENSE + license: itu-t.LICENSE - license_key: itu-t-gpl + category: Copyleft spdx_license_key: LicenseRef-scancode-itu-t-gpl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "ITU-T SOFTWARE TOOLS' GENERAL PUBLIC LICENSE\n===\n\nThis \"General Public License\"\ + \ is published in the Annex 1 of the ITU-T Recommendation on \"SOFTWARE TOOLS FOR HOMOGENITY\ + \ OF RESULTS IN THE STANDARDIZATION PROCESS OF SPEECH AND AUDIO CODERS\", approved in Geneva,\ + \ 2000.\n\nTERMS AND CONDITIONS\n\n1. This License Agreement applies to any module or other\ + \ work related to the ITU-T Software Tool Library, and developed by the User's Group on\ + \ Software Tools. The \"Module\", below, refers to any such module or work, and a \"work\ + \ based on the Module\" means either the Module or any work containing the Module or a portion\ + \ of it, either verbatim or with modifications.\nEach licensee is addressed as \"you\".\n\ + \n2. You may copy and distribute verbatim copies of the Module's\nsource code as you receive\ + \ it, in any medium, provided that you:\n-\tconspicuously and appropriately publish on each\ + \ copy an appropriate copyright notice and disclaimer of warranty;\n-keep intact all the\ + \ notices that refer to this General Public License and to the absence of any warranty;\ + \ and\n-give any other recipients of the Module a copy of this General Public License along\ + \ with the Module.\n\nYou may charge a fee for the physical act of transferring a copy.\n\ + \n3. You may modify your copy or copies of the Module or any portion of it, and copy and\ + \ distribute such modifications under the terms of Paragraph 1 above, provided that you\ + \ also do the following:\n - cause the modified files to carry prominent notices stating\ + \ that you changed the files and the date of any change; and\n - cause the whole of any\ + \ work that you distribute or publish, that in whole or in part contains the Module or any\ + \ part thereof, either with or without modifications, to be licensed at no charge to all\ + \ third parties under the terms of this General Public License (except that you may choose\ + \ to grant warranty protection to some or all third parties, at your option).\n - If the\ + \ modified module normally reads commands interactively when run, you must cause it, when\ + \ started running for such interactive use in the simplest and most usual 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 module under these conditions, and telling the user how to view a copy\ + \ of this General Public License.\n\nYou 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.\n\n\ + Mere aggregation of another independent work with the Module (or its derivative) on a volume\ + \ of a storage or distribution medium does not bring the other work under the scope of these\ + \ terms.\n\n4.You may copy and distribute the Module (or a portion or derivative of it,\ + \ under Paragraph 2) in object code or executable form under the terms of Paragraphs 1 and\ + \ 2 above provided that you also do one of the following:\n - accompany it with the complete\ + \ corresponding machine-readable source code, which must be distributed under the terms\ + \ of Paragraphs 1 and 2 above; or,\n - accompany it with a written offer, valid for at least\ + \ three years, to give any third party free (except for a nominal charge for the cost of\ + \ distribution) a complete machine-readable copy of the corresponding source code, to be\ + \ distributed under the terms of Paragraphs 1 and 2 above; or,\n - accompany it with the\ + \ information you received as to where the corresponding source code may be obtained.\n\ + \ (This alternative is allowed only for noncommercial distribution and only if you received\ + \ the module in object code or executable form alone.)\n\nSource code for a work means the\ + \ preferred form of the work for making modifications to it.\nFor an executable file, complete\ + \ source code means all the source code for all modules it contains;\nbut, as a special\ + \ exception, it need not include source code for modules which are standard libraries that\ + \ accompany the operating system on which the executable file runs, or for standard header\ + \ files or definitions files that accompany that operating system.\n\n5. You may not copy,\ + \ modify, sublicense, distribute or transfer the Module except as expressly provided under\ + \ this General Public License.\nAny attempt otherwise to copy, modify, sublicense, distribute\ + \ or transfer the Module is void, and will automatically terminate your rights to use the\ + \ Module under this License.\nHowever, parties who have received copies, or rights to use\ + \ copies, from you under this General Public License will not have their licenses terminated\ + \ so long as such parties remain in full compliance.\n\n6. By copying, distributing or modifying\ + \ the Module (or any work based on the Module) you indicate your acceptance of this license\ + \ to do so, and all its terms and conditions.\n\n7. Each time you redistribute the Module\ + \ (or any work based on the Module), the recipient automatically receives a license from\ + \ the original licensor to copy, distribute or modify the Module subject to these terms\ + \ and conditions.\nYou may not impose any further restrictions on the recipients' exercise\ + \ of the rights granted herein.\n\n8. The ITU-T may publish revised and/or new versions\ + \ of this General Public License from time to time.\nSuch new versions will be similar in\ + \ spirit to the present version, but may differ in detail to address new problems or concerns.\n\ + \nEach version is given a distinguishing version number.\nIf the Module specifies a version\ + \ number of the 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 ITU-T.\nIf the Module does not specify a version number of the license, you may\ + \ choose any version ever published by the ITU-T.\n\n9. If you wish to incorporate parts\ + \ of the Module into other free modules whose distribution conditions are different, write\ + \ to the author to ask for permission.\nFor software which is copyrighted by the ITU-T,\ + \ write to the ITU-T Secretariat; exceptions may be made for this.\nThis decision will be\ + \ guided by the two goals of preserving the free status of all derivatives of this free\ + \ software\nand of promoting the sharing and reuse of software generally.\n\nNO WARRANTY\n\ + \n10. BECAUSE THE MODULE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE MODULE,\ + \ TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE\ + \ COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE MODULE \"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.\nTHE ENTIRE RISK AS TO THE QUALITY\ + \ AND PERFORMANCE OF THE MODULE IS WITH YOU.SHOULD THE MODULE PROVE DEFECTIVE, YOU ASSUME\ + \ THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n11. 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 MODULE 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 MODULE (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 MODULE TO OPERATE WITH ANY OTHER MODULES), EVEN IF SUCH HOLDER OR OTHER PARTY HAS\ + \ BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nEND OF TERMS AND CONDITIONS" json: itu-t-gpl.json - yml: itu-t-gpl.yml + yaml: itu-t-gpl.yml html: itu-t-gpl.html - text: itu-t-gpl.LICENSE + license: itu-t-gpl.LICENSE - license_key: itunes + category: Proprietary Free spdx_license_key: LicenseRef-scancode-itunes other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + ENGLISH + + APPLE INC. + SOFTWARE LICENSE AGREEMENT FOR iTUNES + + PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ("LICENSE") CAREFULLY BEFORE USING THE APPLE SOFTWARE. BY USING THE APPLE SOFTWARE, YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS LICENSE. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE, DO NOT USE THE SOFTWARE. IF YOU DO NOT AGREE TO THE TERMS OF THE LICENSE, YOU MAY RETURN THE APPLE SOFTWARE TO THE PLACE WHERE YOU OBTAINED IT FOR A REFUND. IF THE APPLE SOFTWARE WAS ACCESSED ELECTRONICALLY, CLICK "DISAGREE/DECLINE". FOR APPLE SOFTWARE INCLUDED WITH YOUR PURCHASE OF HARDWARE, YOU MUST RETURN THE ENTIRE HARDWARE/SOFTWARE PACKAGE IN ORDER TO OBTAIN A REFUND. + + IMPORTANT NOTE: This software may be used to reproduce materials. It is licensed to you only for reproduction of non-copyrighted materials, materials in which you own the copyright, or materials you are authorized or legally permitted to reproduce. This software may also be used for remote access to music files for listening between computers. Remote access of copyrighted music is only provided for lawful personal use or as otherwise legally permitted. If you are uncertain about your right to copy or permit access to any material you should contact your legal advisor. + + 1. General. The software, documentation and any fonts accompanying this License whether on disk, in read only memory, on any other media or in any other form (collectively the "Apple Software") are licensed, not sold, to you by Apple Inc. ("Apple") for use only under the terms of this License, and Apple reserves all rights not expressly granted to you. The rights granted herein are limited to Apple's and its licensors' intellectual property rights in the Apple Software and do not include any other patents or intellectual property rights. You own the media on which the Apple Software is recorded but Apple and/or Apple's licensor(s) retain ownership of the Apple Software itself. The terms of this License will govern any software upgrades provided by Apple that replace and/or supplement the original Apple Software product, unless such upgrade is accompanied by a separate license in which case the terms of that license will govern. + + 2. Permitted License Uses and Restrictions. This License allows you to install and use the Apple Software. The Apple Software may be used to reproduce materials so long as such use is limited to reproduction of non-copyrighted materials, materials in which you own the copyright, or materials you are authorized or legally permitted to reproduce. You may not make the Apple Software available over a network where it could be used by multiple computers at the same time. You may make one copy of the Apple Software in machine-readable form for backup purposes only; provided that the backup copy must include all copyright or other proprietary notices contained on the original. Except as and only to the extent expressly permitted in this License or by applicable law, you may not copy, decompile, reverse engineer, disassemble, modify, or create derivative works of the Apple Software or any part thereof. THE APPLE SOFTWARE IS NOT INTENDED FOR USE IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL SYSTEMS, LIFE SUPPORT MACHINES OR OTHER EQUIPMENT IN WHICH THE FAILURE OF THE APPLE SOFTWARE COULD LEAD TO DEATH, PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE. + + 3. Transfer. You may not rent, lease, lend, redistribute or sublicense the Apple Software. You may, however, make a one-time permanent transfer of all of your license rights to the Apple Software to another party, provided that: (a) the transfer must include all of the Apple Software, including all its component parts, original media, printed materials and this License; (b) you do not retain any copies of the Apple Software, full or partial, including copies stored on a computer or other storage device; and (c) the party receiving the Apple Software reads and agrees to accept the terms and conditions of this License. + + 4. Consent to Use of Data. + + You agree that Apple and its subsidiaries may collect and use technical and related information, including but not limited to technical information about your computer, system and application software, and peripherals, that is gathered periodically to facilitate the provision of software updates, product support and other services to you (if any) related to the Apple Software and to verify compliance with the terms of this License. Apple may use this information, as long as it is in a form that does not personally identify you, to improve our products or to provide services or technologies to you. + + 5. iTunes Store and other Services. This software enables access to Apple's iTunes Store which offers downloads of music for sale and other services (collectively and individually, "Services"). Use of the Services requires Internet access and use of certain Services requires you to accept additional terms of service which will be presented to you before you can use such Services. + + By using this software in connection with an iTunes Store account, you agree to the latest iTunes Store Terms of Service, which you may access and review from the home page of the iTunes Store. + + You understand that by using any of the Services, you may encounter content that may be deemed offensive, indecent, or objectionable, which content may or may not be identified as having explicit language. Nevertheless, you agree to use the Services at your sole risk and that Apple shall have no liability to you for content that may be found to be offensive, indecent, or objectionable. Content types (including genres, sub-genres and Podcast categories and sub-categories and the like) and descriptions are provided for convenience, and you acknowledge and agree that Apple does not guarantee their accuracy. + + Certain Services may include materials from third parties or links to certain third party web sites. You acknowledge and agree that Apple is not responsible for examining or evaluating the content or accuracy of any such third-party material or web sites. Apple does not warrant or endorse and does not assume and will not have any liability or responsibility for any third-party materials or web sites, or for any other materials, products, or services of third parties. Links to other web sites are provided solely as a convenience to you. You agree that you will not use any third-party materials in a manner that would infringe or violate the rights of any other party, and that Apple is not in any way responsible for any such use by you. + + You agree that the Services, including but not limited to graphics, audio clips, and editorial content, contain proprietary information and material that is owned by Apple and/or its licensors, and is protected by applicable intellectual property and other laws, including but not limited to copyright, and that you will not use such proprietary information or materials in any way whatsoever except for permitted use of the Services. No portion of the Services may be reproduced in any form or by any means. You agree not to modify, rent, lease, loan, sell, distribute, or create derivative works based on the Services, in any manner, and you shall not exploit the Services in any unauthorized way whatsoever, including but not limited to, by trespass or burdening network capacity. + + Apple and its licensors reserve the right to change, suspend, remove, or disable access to any Services at any time without notice. In no event will Apple be liable for the removal of or disabling of access to any such Services. Apple may also impose limits on the use of or access to certain Services, in any case and without notice or liability. + + 6. Termination. This License is effective until terminated. Your rights under this License will terminate automatically without notice from Apple if you fail to comply with any term(s) of this License. Upon the termination of this License, you shall cease all use of the Apple Software and destroy all copies, full or partial, of the Apple Software. + + 7. Limited Warranty on Media. Apple warrants the media on which the Apple Software is recorded and delivered by Apple to be free from defects in materials and workmanship under normal use for a period of ninety (90) days from the date of original retail purchase. Your exclusive remedy under this Section shall be, at Apple's option, a refund of the purchase price of the product containing the Apple Software or replacement of the Apple Software which is returned to Apple or an Apple authorized representative with a copy of the receipt. THIS LIMITED WARRANTY AND ANY IMPLIED WARRANTIES ON THE MEDIA INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, OF SATISFACTORY QUALITY, AND OF FITNESS FOR A PARTICULAR PURPOSE, ARE LIMITED IN DURATION TO NINETY (90) DAYS FROM THE DATE OF ORIGINAL RETAIL PURCHASE. SOME JURISDICTIONS DO NOT ALLOW LIMITATIONS ON HOW LONG AN IMPLIED WARRANTY LASTS, SO THE ABOVE LIMITATION MAY NOT APPLY TO YOU. THE LIMITED WARRANTY SET FORTH HEREIN IS THE ONLY WARRANTY MADE TO YOU AND IS PROVIDED IN LIEU OF ANY OTHER WARRANTIES (IF ANY) CREATED BY ANY DOCUMENTATION OR PACKAGING. THIS LIMITED WARRANTY GIVES YOU SPECIFIC LEGAL RIGHTS, AND YOU MAY ALSO HAVE OTHER RIGHTS WHICH VARY BY JURISDICTION. + + 8. Disclaimer of Warranties. YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT USE OF THE APPLE SOFTWARE (AS DEFINED ABOVE) AND SERVICES (AS DEFINED BELOW) IS AT YOUR SOLE RISK AND THAT THE ENTIRE RISK AS TO SATISFACTORY QUALITY, PERFORMANCE, ACCURACY AND EFFORT IS WITH YOU. EXCEPT FOR THE LIMITED WARRANTY ON MEDIA SET FORTH ABOVE AND TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE APPLE SOFTWARE AND SERVICES ARE PROVIDED "AS IS", WITH ALL FAULTS AND WITHOUT WARRANTY OF ANY KIND, AND APPLE AND APPLE'S LICENSORS (COLLECTIVELY REFERRED TO AS "APPLE" FOR THE PURPOSES OF SECTIONS 8 AND 9) HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH RESPECT TO THE APPLE SOFTWARE AND SERVICES, EITHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND NON-INFRINGEMENT OF THIRD PARTY RIGHTS. APPLE DOES NOT WARRANT AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE APPLE SOFTWARE OR SERVICES, THAT THE FUNCTIONS CONTAINED IN THE APPLE SOFTWARE OR SERVICES WILL MEET YOUR REQUIREMENTS, THAT THE OPERATION OF THE APPLE SOFTWARE OR SERVICES WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT DEFECTS IN THE APPLE SOFTWARE OR SERVICES WILL BE CORRECTED. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE OR AN APPLE AUTHORIZED REPRESENTATIVE SHALL CREATE A WARRANTY. SHOULD THE APPLE SOFTWARE OR SERVICES PROVE DEFECTIVE, YOU ASSUME THE ENTIRE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES OR LIMITATIONS ON APPLICABLE STATUTORY RIGHTS OF A CONSUMER, SO THE ABOVE EXCLUSION AND LIMITATIONS MAY NOT APPLY TO YOU. + + 9. Limitation of Liability. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT SHALL APPLE BE LIABLE FOR PERSONAL INJURY, OR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS, LOSS OF DATA, BUSINESS INTERRUPTION OR ANY OTHER COMMERCIAL DAMAGES OR LOSSES, ARISING OUT OF OR RELATED TO YOUR USE OR INABILITY TO USE THE APPLE SOFTWARE OR SERVICES, HOWEVER CAUSED, REGARDLESS OF THE THEORY OF LIABILITY (CONTRACT, TORT OR OTHERWISE) AND EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY FOR PERSONAL INJURY, OR OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY TO YOU. In no event shall Apple's total liability to you for all damages (other than as may be required by applicable law in cases involving personal injury) exceed the amount of fifty dollars ($50.00). The foregoing limitations will apply even if the above stated remedy fails of its essential purpose. + + 10. Export Control. You may not use or otherwise export or reexport the Apple Software except as authorized by United States law and the laws of the jurisdiction in which the Apple Software was obtained. In particular, but without limitation, the Apple Software may not be exported or re-exported (a) into any U.S. embargoed countries or (b) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Department of Commerce Denied Person's List or Entity List. By using the Apple Software, you represent and warrant that you are not located in any such country or on any such list. You also agree that you will not use these products for any purposes prohibited by United States law, including, without limitation, the development, design, manufacture or production of missiles, or nuclear, chemical or biological weapons. + + 11. Government End Users. The Apple Software and related documentation are "Commercial Items", as that term is defined at 48 C.F.R. 2.101, consisting of "Commercial Computer Software" and "Commercial Computer Software Documentation", as such terms are used in 48 C.F.R. 12.212 or 48 C.F.R. 227.7202, as applicable. Consistent with 48 C.F.R. 12.212 or 48 C.F.R. 227.7202-1 through 227.7202-4, as applicable, the Commercial Computer Software and Commercial Computer Software Documentation are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Unpublished-rights reserved under the copyright laws of the United States. + + 12. Controlling Law and Severability. This License will be governed by and construed in accordance with the laws of the State of California, as applied to agreements entered into and to be performed entirely within California between California residents. This License shall not be governed by the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. If for any reason a court of competent jurisdiction finds any provision, or portion thereof, to be unenforceable, the remainder of this License shall continue in full force and effect. + + 13. Complete Agreement; Governing Language. This License constitutes the entire agreement between the parties with respect to the use of the Apple Software licensed hereunder and supersedes all prior or contemporaneous understandings regarding such subject matter, with the exception of any additional terms and conditions you are required to accept if you choose to use Apple's online store which will govern your use of such store and any Services you purchase through that store. No amendment to or modification of this License will be binding unless in writing and signed by Apple. Any translation of this License is done for local requirements and in the event of a dispute between the English and any non-English versions, the English version of this License shall govern. + + 14. Third Party Software and Service Terms and Conditions. + A. Gracenote CDDB Terms of Use. This application contains software from Gracenote, Inc. of Berkeley, California ("Gracenote"). The software from Gracenote (the "Gracenote CDDB Client") enables this application to do online disc identification and obtain music-related information, including name, artist, track, and title information ("Gracenote Data") from online servers ("Gracenote CDDB Servers") and to perform other functions. You may use Gracenote Data only by means of the intended End User functions of this application software. + + You agree that you will use Gracenote Data, the Gracenote CDDB Client, and Gracenote CDDB Servers for your own personal non-commercial use only. You agree not to assign, copy, transfer or transmit the Gracenote CDDB Client or any Gracenote Data to any third party. YOU AGREE NOT TO USE OR EXPLOIT GRACENOTE DATA, THE GRACENOTE CDDB CLIENT, OR GRACENOTE CDDB SERVERS, EXCEPT AS EXPRESSLY PERMITTED HEREIN. + + You agree that your non-exclusive license to use the Gracenote Data, the Gracenote CDDB Client, and Gracenote CDDB Servers will terminate if you violate these restrictions. If your license terminates, you agree to cease any and all use of the Gracenote Data, the Gracenote CDDB Client, and Gracenote CDDB Servers. Gracenote reserves all rights in Gracenote Data, the Gracenote CDDB Client, and the Gracenote CDDB Servers, including all ownership rights. Under no circumstances will Gracenote become liable for any payment to you for any information that you provide. You agree that CDDB, Inc. may enforce its rights under this Agreement against you directly in its own name. + + The Gracenote CDDB Service uses a unique identifier to track queries for statistical purposes. The purpose of a randomly assigned numeric identifier is to allow the Gracenote CDDB service to count queries without knowing anything about who you are. For more information, see the web page for the Gracenote Privacy Policy for the Gracenote CDDB Service. + + The Gracenote CDDB Client and each item of Gracenote Data are licensed to you "AS IS". Gracenote makes no representations or warranties, express or implied, regarding the accuracy of any Gracenote Data from in the Gracenote CDDB Servers. Gracenote reserves the right to delete data from the Gracenote CDDB Servers or to change data categories for any cause that Gracenote deems sufficient. No warranty is made that the Gracenote CDDB Client or Gracenote CDDB Servers are error-free or that functioning of Gracenote CDDB Client or Gracenote CDDB Servers will be uninterrupted. Gracenote is not obligated to provide you with any new enhanced or additional data types or categories that Gracenote may choose to provide in the future and is free to discontinue its online services at any time. + + GRACENOTE DISCLAIMS ALL WARRANTIES EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT. Gracenote does not warrant the results that will be obtained by your use of the Gracenote CDDB Client or any Gracenote CDDB Server. IN NO CASE WILL GRACENOTE BE LIABLE FOR ANY CONSEQUENTIAL OR INCIDENTAL DAMAGES OR FOR ANY LOST PROFITS OR LOST REVENUES. + + B. Kerbango Tuning Service Terms and Conditions. + Terms of Service. By using 3Com Corporation's ("3Com") Kerbango tuning service, ("Kerbango Tuning Service") you agree to be bound by the following terms and conditions (the "TOS"): + + 3Com Links. The sites displayed as search results or linked to by the Kerbango Tuning Service are owned and operated by individuals and/or companies over whom 3Com exercises no control. 3Com assumes no responsibility for the content of any site included in any search results or otherwise linked to by the Kerbango Tuning Service. + + Personal Use Only. The Kerbango Tuning Service is made available for your personal, non-commercial use only. Use of the Kerbango Tuning Service to sell a product or service, or to increase traffic to your Web site for commercial reasons, such as advertising sales is expressly forbidden. You may not take the results from a Kerbango search and reformat and display them, or mirror the 3Com's Kerbango home page or results pages on your Web site, or send automated queries to Kerbango's system without express permission from 3Com. + + If you wish to make commercial use of the Kerbango Tuning Service you must enter into an agreement with 3Com to do so. Please contact sales@kerbango.com for more information. + + Changes In Terms and Conditions and Kerbango Tuning Service. 3Com may modify or terminate its services from time to time, for any reason, and without notice, including the right to terminate with or without notice, without liability to you, any other user or any third party. 3Com reserves the right to modify the TOS from time to time without notice. + + Disclaimer of Warranties. 3Com disclaims any and all responsibility or liability for the accuracy, content, completeness, legality, reliability, or operability or availability of information or material displayed in the Kerbango Tuning Service results. 3Com disclaims any responsibility for the deletion, failure to store, misdelivery, or untimely delivery of any information or material. 3Com disclaims any responsibility for any harm resulting from downloading or accessing any information or material on the Internet through the Kerbango Tuning Service. + + THE KERBANGO TUNING SERVICE IS PROVIDED "AS IS", WITH NO WARRANTIES WHATSOEVER. 3COM EXPRESSLY DISCLAIMS TO THE FULLEST EXTENT PERMITTED BY LAW ALL EXPRESS, IMPLIED, AND STATUTORY WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT OF PROPRIETARY RIGHTS. 3COM DISCLAIMS ANY WARRANTIES REGARDING THE SECURITY, RELIABILITY, TIMELINESS, AND PERFORMANCE OF THE KERBANGO TUNING SERVICE. 3COM DISCLAIMS ANY WARRANTIES FOR ANY INFORMATION OR ADVICE OBTAINED THROUGH THE KERBANGO TUNING SERVICE. 3COM DISCLAIMS ANY WARRANTIES FOR SERVICES OR GOODS RECEIVED THROUGH OR ADVERTISED ON THE KERBANGO TUNING SERVICE OR RECEIVED THROUGH ANY LINKS PROVIDED BY THE KERBANGO TUNING SERVICE, AS WELL AS FOR ANY INFORMATION OR ADVICE RECEIVED THROUGH ANY LINKS PROVIDED IN THE KERBANGO TUNING SERVICE. + + YOU UNDERSTAND AND AGREE THAT YOU DOWNLOAD OR OTHERWISE OBTAIN MATERIAL OR DATA THROUGH THE USE OF THE KERBANGO TUNING SERVICE AT YOUR OWN DISCRETION AND RISK AND THAT YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGES TO YOUR COMPUTER SYSTEM OR LOSS OF DATA THAT RESULTS IN THE DOWNLOAD OF SUCH MATERIAL OR DATA. + + SOME STATES OR OTHER JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO THE ABOVE EXCLUSIONS MAY NOT APPLY TO YOU. YOU MAY ALSO HAVE OTHER RIGHTS THAT VARY FROM STATE TO STATE AND JURISDICTION TO JURISDICTION. + + Limitation of Liability. UNDER NO CIRCUMSTANCES SHALL 3COM BE LIABLE TO ANY USER ON ACCOUNT OF THAT USER'S USE OR MISUSE OF OR RELIANCE ON THE KERBANGO TUNING SERVICE ARISING FROM ANY CLAIM RELATING TO THIS LICENSE OR THE SUBJECT MATTER HEREOF. SUCH LIMITATION OF LIABILITY SHALL APPLY TO PREVENT RECOVERY OF DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, EXEMPLARY, AND PUNITIVE DAMAGES WHETHER SUCH CLAIM IS BASED ON WARRANTY, CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE (EVEN IF 3COM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES). SUCH LIMITATION OF LIABILITY SHALL APPLY WHETHER THE DAMAGES ARISE FROM USE OR MISUSE OF AND RELIANCE ON THE KERBANGO TUNING SERVICE, FROM INABILITY TO USE THE KERBANGO TUNING SERVICE, OR FROM THE INTERRUPTION, SUSPENSION, OR TERMINATION OF THE KERBANGO TUNING SERVICE (INCLUDING SUCH DAMAGES INCURRED BY THIRD PARTIES). THIS LIMITATION SHALL ALSO APPLY WITH RESPECT TO DAMAGES INCURRED BY REASON OF OTHER SERVICES OR GOODS RECEIVED THROUGH OR ADVERTISED ON THE KERBANGO TUNING SERVICE OR RECEIVED THROUGH ANY LINKS PROVIDED IN THE KERBANGO TUNING SERVICE, AS WELL AS BY REASON OF ANY INFORMATION OR ADVICE RECEIVED THROUGH OR ADVERTISED ON THE KERBANGO TUNING SERVICE OR RECEIVED THROUGH ANY LINKS PROVIDED IN THE KERBANGO TUNING SERVICE. THIS LIMITATION SHALL ALSO APPLY, WITHOUT LIMITATION, TO THE COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, OR LOST DATA. SUCH LIMITATION SHALL FURTHER APPLY WITH RESPECT TO THE PERFORMANCE OR NON-PERFORMANCE OF THE KERBANGO TUNING SERVICE OR ANY INFORMATION OR MERCHANDISE THAT APPEARS ON, OR IS LINKED OR RELATED IN ANY WAY TO, THE KERBANGO TUNING SERVICE. SUCH LIMITATION SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY AND TO THE FULLEST EXTENT PERMITTED BY LAW. + + SOME STATES OR OTHER JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE LIMITATIONS AND EXCLUSIONS MAY NOT APPLY TO YOU. + + Without limiting the foregoing, under no circumstances shall 3Com be held liable for any delay or failure in performance resulting directly or indirectly from acts of nature, forces, or causes beyond its reasonable control, including, without limitation, Internet failures, computer equipment failures, telecommunication equipment failures, other equipment failures, electrical power failures, strikes, labor disputes, riots, insurrections, civil disturbances, shortages of labor or materials, fires, floods, storms, explosions, acts of God, war, governmental actions, orders of domestic or foreign courts or tribunals, non-performance of third parties, or loss of or fluctuations in heat, light, or air conditioning. + + Miscellaneous Provisions. These TOS will be governed by and construed in accordance with the laws of the State of California, without giving effect to its conflict of laws provisions or your actual state or country of residence. If for any reason a court of competent jurisdiction finds any provision or portion of the TOS to be unenforceable, the remainder of the TOS will continue in full force and effect. + + These TOS constitute the entire agreement between the parties with respect to the subject matter hereof and supersedes and replaces all prior or contemporaneous understandings or agreements, written or oral, regarding such subject matter. Any waiver of any provision of the TOS will be effective only if in writing and signed by 3Com. json: itunes.json - yml: itunes.yml + yaml: itunes.yml html: itunes.html - text: itunes.LICENSE + license: itunes.LICENSE - license_key: ja-sig + category: Permissive spdx_license_key: LicenseRef-scancode-ja-sig other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Redistribution and use in source and binary forms, with or without modification,\n\ + are permitted provided that the following conditions are met:\n\n1. Redistributions of source\ + \ code must retain the above copyright notice, this\nlist of conditions and the following\ + \ disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n\ + this list of conditions and the following disclaimer in the documentation and/or\nother\ + \ materials provided with the distribution.\n\n3. Redistributions of any form whatsoever\ + \ must retain the following\nacknowledgment:\n\"This product includes software developed\ + \ by the JA-SIG Collaborative \n(http://www.ja-sig.org/).\"\n\nThis software is provided\ + \ by the JA-SIG collaborative \"as is\" and any expressed\nor implied warranties, including,\ + \ but not limited to, the implied warranties of\nmerchantability and fitness for a particular\ + \ purpose are disclaimed. In no event\nshall the JA-SIG collaborative or its contributors\ + \ be liable for any direct,\nindirect, incidental, special, exemplary, or consequential\ + \ damages (including,\nbut not limited to, procurement of substitute goods or services;\ + \ loss of use,\ndata, or profits; or business interruption) however caused and on any theory\ + \ of\nliability, whether in contract, strict liability, or tort (including negligence\n\ + or otherwise) arising in any way out of the use of this software, even if\nadvised of the\ + \ possibility of such damage." json: ja-sig.json - yml: ja-sig.yml + yaml: ja-sig.yml html: ja-sig.html - text: ja-sig.LICENSE + license: ja-sig.LICENSE - license_key: jahia-1.3.1 + category: Copyleft spdx_license_key: LicenseRef-scancode-jahia-1.3.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + ***** Jahia Collaborative Source License ***** + * Recitals + JAHIA COLLABORATVE SOURCE LICENSE + Version 1.3.1 + (Rev. Date May 17, 2004) + + RECITALS + + Original Contributor has developed Specifications and Source Code + implementations of certain Technology; and + Original Contributor desires to license the Technology to a large + community to facilitate research, innovation and product development + while maintaining compatibility of such products with the Technology as + delivered by Original Contributor; and + You desire to license the Technology from Original Contributor on the + terms and conditions specified in this License. + In consideration of the mutual covenants contained herein, You and + Original Contributor agree as follows: + + ***** Research and Development Use ***** + 1. Introduction. The JAHIA Collaborative Source License and effective + attachments ("License") may include three distinct licenses: 1) Research + and Development Use, 2) Internal Deployment Use, 3) Contribution + Agreement. The Research and Development Use license is effective when You + execute this License. You have agreed to the terms of the JCSL by + selecting the "Accept" button at the end of the JCSL or executing a + hardcopy JCSL with Original Contributor. + + The Internal Deployment Use (Attachment C) and the Contribution Agreement + (Attachment D) must be signed by You and Original Contributor in order to + become effective. Once effective, these licenses and the associated + requirements and responsibilities are cumulative. Capitalized terms used + in this License are defined in the Glossary. + + 2. License Grants. + + 2.1. Original Contributor Grant. Subject to Your compliance with Sections + 3, 8.10 and Attachment A of this License, Original Contributor grants to + You a worldwide, royalty-free, non-exclusive license, to the extent of + Original Contributor's Intellectual Property Rights covering the Original + Code, Upgraded Code and Specifications, to do the following: + + a) Research and Development Use License: + (i) use, reproduce and modify the Original Code, Upgraded Code and + Specifications to create Modifications and Reformatted Specifications for + Research and Development Use by You, + (ii) publish and display Original Code, Upgraded Code and Specifications + with, or as part of Modifications, as permitted under Section 3.1 b) + below, + (iii) reproduce and distribute copies of Original Code and Upgraded Code + with, or as part of Modifications, to other Licensees and students for + Research and Development Use by You, + (iv) compile, reproduce and distribute Original Code and Upgraded Code + with, or as part of Modifications, in Executable form, and Reformatted + Specifications to anyone for Research and Development Use by You. + b) Other than the licenses expressly granted in this License, Original + Contributor retains all right, title, and interest in Original Code and + Upgraded Code and Specifications. + + 2.2. Your Grants. + + a) To Other Licensees. You hereby grant to each Licensee a license to + Your Error Corrections and Shared Modifications, of the same scope and + extent as Original Contributor's licenses under Section 2.1 a) above + relative to Research and Development Use, Attachment C relative to + Internal Deployment Use, and Attachment D relative to Contribution in + kind. + + b) To Original Contributor. You hereby grant to Original Contributor a + worldwide, royalty-free, non-exclusive, perpetual and irrevocable + license, to the extent of Your Intellectual Property Rights covering Your + Error Corrections, Shared Modifications and Reformatted Specifications, + to use, reproduce, modify, display and distribute Your Error Corrections, + Shared Modifications and Reformatted Specifications, in any form, + including the right to sublicense such rights through multiple tiers of + distribution. + c) Other than the licenses expressly granted in Sections 2.2 a) and b) + above, and the restriction set forth in Section 3.1 d) (iv) below, You + retain all right, title, and interest in Your Error Corrections, Shared + Modifications and Reformatted Specifications. + + 2.3. Contributor Modifications. You may use, reproduce, modify, display + and distribute Contributor Error Corrections, Shared Modifications and + Reformatted Specifications, obtained by You under this License, to the + same scope and extent as with Original Code, Upgraded Code and + Specifications. + + 2.4. Subcontracting Error Corrections or Shared Modifications. You may + deliver the Source Code of Community Code to other Licensees having at + least a Research and Development Use license, for the purpose of + furnishing development services to You in connection with Your rights + granted in this License. All such Licensees must execute appropriate + documents with respect to such work consistent with the terms of this + License, and acknowledging their work-made-for-hire status or assigning + exclusive right to the work product and associated Intellectual Property + Rights to You. + + 3. Requirements and Responsibilities. + + 3.1. Research and Development Use License. As a condition of exercising + the rights granted under Section 2.1 a) above, You agree to comply with + the following: + + a) Your Contribution to the Community. All Error Corrections and Shared + Modifications which You create or contribute to are automatically subject + to the licenses granted under Section 2.2 above. You are encouraged to + license all of Your other Modifications under Section 2.2 as Shared + Modifications, but are not required to do so. You agree to notify + Original Contributor of any errors in the Specification. + + b) Source Code Availability. You agree to provide all Your Error + Corrections to Original Contributor as soon as reasonably practicable + and, in any event, prior to Internal Deployment Use or Commercial Use, if + applicable. Original Contributor may, at its discretion, post Source Code + for Your Error Corrections and Shared Modifications on the Community Web + Server. You may also post Error Corrections and Shared Modifications on a + web-server of Your choice; provided, that You inform the Original + Contributor and that You must take reasonable precautions to ensure that + only Licensees have access to such Error Corrections and Shared + Modifications. Such precautions shall include, without limitation and at + least, a click-on, download certification of Licensee status required of + those attempting to download from the server. An example of an acceptable + certification is attached as Attachment A-2. + + c) Notices. All Error Corrections and Shared Modifications You create or + contribute to must include a file documenting the additions and changes + You made and the date of such additions and changes. If it is not + possible to put the notice in a particular Source Code file due to its + structure, then You must include the notice in a location (such as a + relevant directory file), where a recipient would be most likely to look + for such a notice. + + d) Redistribution. + (i) Community Code. Community Code may be distributed in Source Code or + Executable form to anybody that accepts the JCSL License conditions and + becomes a licensee. You may not offer or impose any terms on any + Community Code that alter the rights, requirements, or responsibilities + of such Licensee. + (ii) Community Code Compatibility. All Community Code must be Compliant + Community Code prior to any Redistribution, whether originating from You + or acquired from a third party. So if You plan to make any further Shared + Modifications to any Community Code previously determined to be Compliant + Community Code, you must ensure that it continues to be Compliant + Community Code. + (iii) Derivative Work. If You make any non shared Modifications to any + Community Code without contributing them as Shared Modifications, You + must clearly indicate that your distribution is a modified version of the + official Community Code and must clearly remind to your Licensees that + they also have to accept the JCSL License conditions on your Derivative + Work. + (iv) Modified Executable. You may distribute Executable version(s) of a + Derivative Work to Licensees and other third parties only for the purpose + of evaluation and comment in connection with Research and Development Use + by You. You must ensure that the Executable distribution based on a + Derivative Work carries a different mark than the JAHIA Trademarks. You + may distribute a Derivative Work under a license of Your choice, which + may contain terms different from this License, provided (a) that You are + in compliance with the terms of this License, and (b) You must make it + absolutely clear that any terms which differ from this License are + offered by You alone, not by Original Contributor or any other + Contributor. Any other type of use must be subject to the execution of a + complementary license agreement by You and Original Contributor. + (v) Modified Class, Interface and Package Naming. In connection with + Research and Development Use by You only, You may use Original + Contributor's class, interface and package names only to accurately + reference or invoke the Source Code files You modify. Original + Contributor grants to You a limited license to the extent necessary for + such purposes. + (vi) Copyrights and other Attribution Notices. You must retain, in the + Source form of any Derivative Works that You distribute, all copyright, + patent, trademark, and attribution notices from Community Code, excluding + those notices that do not pertain to any part of the Derivative Works. + You may add Your own copyright statement to Your Modifications. + + (vii) You expressly agree that any distribution, in whole or in part, of + Modifications developed by You shall only be done pursuant to the terms + and conditions of this License. + + e) Extensions. + (i) Community Code. You may not include any Source Code of Community Code + in any Extensions without the prior consent of the Original Contributor; + (ii) Open. You agree to refrain from enforcing any Intellectual Property + Rights You may have covering any interface(s) of Your Extension, which + would prevent the implementation of such interface(s) by Original + Contributor or any Licensee. This obligation does not prevent You from + enforcing any Intellectual Property Right You have that would otherwise + be infringed by an implementation of Your Extension. + (iii) Class, Interface and Package Naming. You may not add any packages, + or any public or protected classes or interfaces with names that + originate or might appear to originate from Original Contributor + including, without limitation, package or class names which begin with + "com.jahia", org.jahia or its equivalents in any subsequent class, + interface and/ or package naming convention adopted by Original + Contributor. It is specifically suggested that You name any new packages + using the "Unique Package Naming Convention" as described in "The Java + Language Specification" by James Gosling, Bill Joy, and Guy Steele, ISBN + 0-201-63451-1, August 1996. Section 7.7 "Unique Package Names", on page + 125 of this specification which states, in part: + "You form a unique package name by first having (or belonging to an + organization that has) an Internet domain name, such as "sun.com". You + then reverse the name, component by component, to obtain, in this + example, "com.sun", and use this as a prefix for Your package names, + using a convention developed within Your organization to further + administer package names." + + 3.2. Additional Requirements and Responsibilities. Any additional + requirements and responsibilities relating to the Technology are listed + in Attachment F (Additional Requirements and Responsibilities), if + applicable only, and are hereby incorporated into this Section 3. + + 4. Versions of the License. + + 4.1. License Versions. Original Contributor may publish revised versions + of the License from time to time. Each version will be given a + distinguishing version number. + + 4.2. Effect. Once a particular version of Community Code has been + provided under a version of the License, You may always continue to use + such Community Code under the terms of that version of the License. You + may also choose to use such Community Code under the terms of any + subsequent version of the License. No one other than Original Contributor + has the right to promulgate License versions. + + 4.3. Conditional Open Sourcing : If Original Contributor decides to stop + supporting a collaborative source compliant license policy as defined by + the Collaborative Source Initiative (www.collaborativesource.org), goes + bankrupt or does not want to adjust this license consequently, Original + Contributor shall release the last version available under a + collaborative source license under an open source license of his choice + as defined by the Open Source Initiative (www.opensource.org). + + 5. Disclaimer of Warranty. + + 5.1. COMMUNITY CODE IS PROVIDED UNDER THIS LICENSE "AS IS," WITHOUT + WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT + LIMITATION, WARRANTIES THAT THE COMMUNITY CODE IS FREE OF DEFECTS, + MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. YOU AGREE + TO BEAR THE ENTIRE RISK IN CONNECTION WITH YOUR USE AND DISTRIBUTION OF + COMMUNITY CODE UNDER THIS LICENSE. THIS DISCLAIMER OF WARRANTY + CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COMMUNITY + CODE IS AUTHORIZED HEREUNDER EXCEPT SUBJECT TO THIS DISCLAIMER. + + 5.2. You acknowledge that Original Code, Upgraded Code and Specifications + are not designed or intended for use in (i) on-line control of aircraft, + air traffic, aircraft navigation or aircraft communications; or (ii) in + the design, construction, operation or maintenance of any nuclear + facility. Original Contributor disclaims any express or implied warranty + of fitness for such uses. + + 6. Termination. + + 6.1. By You. You may terminate this Research and Development Use license + at any time. + + 6.2. By Original Contributor. This License and the rights granted + hereunder will terminate: + (i) automatically if You fail to comply with the terms of this License + and fail to cure such breach within 30 days of receipt of written notice + of the breach; + (ii) immediately in the event of circumstances specified in Sections 7.1 + or 8.4; or + (iii) at Original Contributor's discretion upon any action initiated in + the first instance by You alleging that use or distribution by Original + Contributor or any Licensee, of Original Code, Upgraded Code, Error + Corrections or Shared Modifications contributed by You, or + Specifications, infringe a patent owned or controlled by You. + + 6.3. Effect of Termination. Upon termination, You agree to discontinue + use and return or destroy all copies of Community Code in your + possession. All sublicenses to the Community Code which you have properly + granted shall survive any termination of this License. Provisions which, + by their nature, should remain in effect beyond the termination of this + License shall survive including, without limitation, Sections 2.2, 3, 5, + 7 and 8. + + 6.4. Each party waives and releases the other from any claim to + compensation or indemnity for permitted or lawful termination of the + business relationship established by this License. + + 7. Liability. + + 7.1. Infringement. Should any of the Original Code, Upgraded Code or + Specifications ("Materials") become the subject of a claim of + infringement, Original Contributor may, at its sole option, (i) attempt + to procure the rights necessary for You to continue using the Materials, + (ii) modify the Materials so that they are no longer infringing, or (iii) + terminate Your right to use the infringing code, immediately upon written + notice, while retaining your rights to continue using the Materials that + are not the subject of a claim of infringement. + + 7.2. LIMITATION OF LIABILITY. TO THE FULL EXTENT ALLOWED BY APPLICABLE + LAW, ORIGINAL CONTRIBUTOR'S LIABILITY TO YOU FOR CLAIMS RELATING TO THIS + LICENSE, WHETHER FOR BREACH OR IN TORT, SHALL BE LIMITED TO ONE HUNDRED + PERCENT (100%) OF THE AMOUNT HAVING THEN ACTUALLY BEEN PAID BY YOU TO + ORIGINAL CONTRIBUTOR FOR ALL COPIES LICENSED HEREUNDER OF THE PARTICULAR + ITEMS GIVING RISE TO SUCH CLAIM, IF ANY. IN NO EVENT WILL YOU (RELATIVE + TO YOUR SHARED MODIFICATIONS OR ERROR CORRECTIONS) OR ORIGINAL + CONTRIBUTOR BE LIABLE FOR ANY INDIRECT, PUNITIVE, SPECIAL, INCIDENTAL OR + CONSEQUENTIAL DAMAGES IN CONNECTION WITH OR ARISING OUT OF THIS LICENSE + (INCLUDING, WITHOUT LIMITATION, LOSS OF PROFITS, USE, DATA, OR OTHER + ECONOMIC ADVANTAGE), HOWEVER IT ARISES AND ON ANY THEORY OF LIABILITY, + WHETHER IN AN ACTION FOR CONTRACT, STRICT LIABILITY OR TORT (INCLUDING + NEGLIGENCE) OR OTHERWISE, WHETHER OR NOT YOU OR ORIGINAL CONTRIBUTOR HAS + BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE AND NOTWITHSTANDING THE + FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. + + 8. Miscellaneous. + + 8.1. Trademark. You agree to comply with the then current JAHIA Trademark + & logo usage requirements accessible through the Jahia Web Server. Except + as expressly provided in the License, You are granted no right, title or + license to, or interest in, any JAHIA Trademarks. You agree not to (i) + challenge Original Contributor's ownership or use of JAHIA Trademarks; + (ii) attempt to register any JAHIA Trademarks, or any mark or logo + substantially similar thereto; or (iii) incorporate any JAHIA Trademarks + into your own trademarks, product names, service marks, company names, or + domain names. + + 8.2. Integration. This License represents the complete agreement + concerning the subject matter hereof. + + 8.3. Assignment. Original Contributor may assign this License, and its + rights and obligations hereunder, in its sole discretion. You may assign + the Research and Development Use portions of this License to a third + party. You may not assign the Internal Deployment Use or Commercial Use + license, including by way of merger (regardless of whether You are the + surviving entity) or acquisition, without Original Contributor's prior + written consent. + + 8.4. Severability. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. Notwithstanding the foregoing, if You + are prohibited by law from fully and specifically complying with Sections + 2.2 or 3, this License will immediately terminate and You must + immediately discontinue any use of Community Code. + + + + 8.5. Governing Law. This License shall be exclusively governed by the + laws of Switzerland. The application of the United Nations Convention on + Contracts for the International Sale of Goods is expressly excluded. + + 8.6. Dispute Resolution. All disputes arising out of or in connection + with the present License, including disputes on its conclusion, binding + effect, amendment and termination shall be resolved, to the exclusion of + the ordinary courts by a single Arbitrator in accordance with the + International Arbitration Rules of the Geneva Chamber of Commerce. The + decision of the Arbitrator shall be final, and the parties waive all + challenge of the award in accordance with art. 192 of the Swiss Private + International Law Statute. + + 8.7. Construction. Any law or regulation which provides that the language + of a contract shall be construed against the drafter shall not apply to + this License. + + 8.8. U.S. Government End Users. The Community Code is a "commercial + item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting + of "commercial computer software" and "commercial computer software + documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). + Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through + 227.7202-4 (June 1995), all U.S. Government End Users acquire Community + Code with only those rights set forth herein. You agree to pass this + notice to Your licensees. + + 8.9. Press Announcements. All press announcements relative to the + execution of this License must be reviewed and approved by Original + Contributor and You prior to release. + + 8.10. International Use. + a) Export/Import Laws. Community Code is subject to Swiss export control + laws and may be subject to export or import regulations in other + countries. Each party agrees to comply strictly with all such laws and + regulations and acknowledges their responsibility to obtain such licenses + to export, re-export, or import as may be required. You agree to pass + these obligations to Your licensees. + b) Intellectual Property Protection. Due to limited intellectual property + protection and enforcement in certain countries, You agree not to + redistribute the Original Code, Upgraded Code, and Specifications to any + country other than the list of restricted countries on the JCSL Web + Server. + + 8.11. Language. This License is in the English language only, which + language shall be controlling in all respects, and all versions of this + License in any other language shall be for accommodation only and shall + not be binding on the parties to this License. All communications and + notices made or given pursuant to this License, and all documentation and + support to be provided, unless otherwise noted, shall be in the English + language. + + GLOSSARY + + 1. "Commercial Use" means any use of a Derivative Work by You to any + third party, alone or bundled with any other software or hardware, for + direct or indirect commercial or strategic gain or advantage, is subject + to execution of a purchase or reselling agreement by You and Original + Contributor. + 2. "Community Code" means the Original Code, Upgraded Code, Error + Corrections, Shared Modifications, or any combination thereof. + 3. "Community Web Server(s)" means the web server(s) designated by + Original Contributor for posting Error Corrections and Shared + Modifications and/or accessing documentation. + 4. "Compliant Community Code" means Shared Modifications that have been + submitted to Original Contributor for review and have been accepted as + valid and correct Community Code. + 5. "Contributor" means each Licensee that creates or contributes to the + creation of any Error Correction or Shared Modification. + 6. "Derivative Work" means any work, whether in Source or Object form, + that is based on (or derived from) Community Code 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 Community Code and Derivative Works thereof. + 7. "Error Correction" means any change made to Community Code which + conforms to the Specification and corrects the adverse effect of a + failure of Community Code to perform any function set forth in or + required by the Specifications. + 8. "Executable" means the Original Code, Upgraded Code, Modifications, or + any combination thereof that has been converted to a form other than + Source Code. + 9. "Extension(s)" means any additional classes or other programming code + and/or interfaces developed by or for You which: (i) are designed for use + with the Technology; (ii) constitute an API for a library of computing + functions or services; and (iii) are disclosed to third party software + developers for the purpose of developing software which invokes such + additional classes or other programming code and/or interfaces. The + foregoing shall not apply to software development by Your subcontractors + to be exclusively used by You. + 10. "Intellectual Property Rights" means worldwide statutory and common + law rights associated solely with (i) patents and patent applications; + (ii) works of authorship including copyrights, copyright applications, + copyright registrations and "moral rights"; (iii) the protection of trade + and industrial secrets and confidential information; ; (iv) trademarks, + trade names, service marks and logos (whether the same is registered or + unregistered), and (v) divisions, continuations, renewals, and re- + issuances of the foregoing now existing or acquired in the future. + 11. "Internal Deployment Use" means use of the Original Code, Upgraded + Code, Modifications, or any combination thereof (excluding Research and + Development Use) within Your business or organization only by Your + employees and/or agents, subject to execution of Attachment C by You and + Original Contributor, if required. + 12. "Licensee" means any party that has entered into and has in effect a + version of this License with Original Contributor. + 13. "Modification(s)" means (i) any change to Community Code; (ii) any + new file or other representation of computer program statements that + contains any portion of Community Code; and/or (iii) any new Source Code + implementing any portion of the Specifications. + 14. "Original Code" means the initial Source Code for the Technology as + described on the Technology Download Site. + 15. "Original Contributor" means Jahia Ltd., 45, rue de la Gare, 1260 + Nyon, Switzerland. + 16. "Reformatted Specifications" means any revision to the Specifications + which translates or reformats the Specifications (as for example in + connection with Your documentation) but which does not alter, subset or + superset the functional or operational aspects of the Specifications. + 17. "Research and Development Use" means use and distribution of the + Original Code, Upgraded Code, Modifications, or any combination thereof + only for Your research, development, educational or personal and + individual use, and expressly excludes Internal Deployment Use and + Commercial Use. + 18. "JCSL Webpage" means the JAHIA Collaborative Source license webpage + located at http://www.jahia.org/ or such other URL that Original + Contributor may designate from time to time. + 19. "Shared Modifications" means Modifications provided by You, at Your + option, pursuant to Section 2.2, or received by You from a Contributor + pursuant to Section 2.3. + 20. "Source Code" means computer program statements written in any high- + level, readable form suitable for modification and development. + 21. "Specifications" means the specifications for the Technology and + other documentation, as designated on the Jahia WebServer, as may be + revised by Original Contributor and other Contributors from time to time. + + 22. "JAHIA Trademarks" means Original Contributor's JAHIA trademarks and + logos, whether now used or adopted in the future. + 23. "Technology" means the technology described in Attachment B, and + Upgrades. + 24. "Technology Download Site" means the site(s) designated by Original + Contributor for access to the Original Code, Upgraded Code and + Specifications. + 25. "Upgrade(s)" means new versions of Technology designated exclusively + by Original Contributor as an "Upgrade" and released by Original + Contributor from time to time. + 26. "Upgraded Code" means the Source Code for Upgrades, possibly + including Error Corrections and Shared Modifications made by + Contributors. + 27. "You(r)" means an individual, or a legal entity acting by and through + an individual or individuals, exercising rights either under this License + or under a future version of this License issued pursuant to Section 4.1. + For legal entities, "You(r)" includes any entity that by majority voting + interest controls, is controlled by, or is under common control with You. json: jahia-1.3.1.json - yml: jahia-1.3.1.yml + yaml: jahia-1.3.1.yml html: jahia-1.3.1.html - text: jahia-1.3.1.LICENSE + license: jahia-1.3.1.LICENSE - license_key: jam + category: Permissive spdx_license_key: Jam other_spdx_license_keys: - LicenseRef-scancode-jam is_exception: no is_deprecated: no - category: Permissive + text: | + License is hereby granted to use this software and distribute it freely, + as long as this copyright notice is retained and modifications are + clearly marked. + + ALL WARRANTIES ARE HEREBY DISCLAIMED. json: jam.json - yml: jam.yml + yaml: jam.yml html: jam.html - text: jam.LICENSE + license: jam.LICENSE - license_key: jam-stapl + category: Free Restricted spdx_license_key: LicenseRef-scancode-jam-stapl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "Jam STAPL Software License\nSOFTWARE DISTRIBUTION AGREEMENT\n\nTHE JAM SOFTWARE PROGRAM\ + \ AND EXECUTABLE FILES, AND RELATED SPECIFICATION DOCUMENTATION (\"PROGRAMS\") (AVAILABLE\ + \ FOR DOWNLOADING FROM THIS WEB SITE OR ENCLOSED WITH THE COMPUTER DISK ACCOMPANYING THIS\ + \ NOTICE), ARE MADE FREELY AVAILABLE FOR USE BY ANYONE, SUBJECT TO CERTAIN TERMS AND CONDITIONS\ + \ SET FORTH BELOW. PLEASE READ THESE TERMS AND CONDITIONS CAREFULLY BEFORE DOWNLOADING OR\ + \ USING THE PROGRAMS. BY DOWNLOADING OR USING THE PROGRAMS YOU INDICATE YOUR ACCEPTANCE\ + \ OF THESE TERMS AND CONDITIONS, WHICH CONSTITUTE THE LICENSE AGREEMENT (the \"AGREEMENT\"\ + ) BETWEEN YOU AND ALTERA CORPORATION (\"ALTERA\") WITH REGARD TO THE PROGRAMS. IN THE EVENT\ + \ THAT YOU DO NOT AGREE WITH ANY OF THESE TERMS AND CONDITIONS, DO NOT DOWNLOAD THE PROGRAMS\ + \ OR PROMPTLY RETURN THE PROGRAMS TO ALTERA UNUSED. \n\nLicense Terms\nSubject to the terms\ + \ and conditions of this Agreement, Altera grants to you a worldwide, nonexclusive, perpetual\ + \ license (with the right to grant sublicenses, and authorize sublicensees to sublicense\ + \ further) to use, copy, prepare derivative works based on, and distribute the Programs\ + \ and derivative works thereof, provided that any distribution or sublicense is subject\ + \ to the same terms and conditions that you use for distribution of your own comparable\ + \ software products. Any copies of the Programs or derivative works thereof will continue\ + \ to be subject to the terms and conditions of this Agreement. You must include in any copies\ + \ of the Programs or derivative works thereof any trademark, copyright, and other proprietary\ + \ rights notices included in the Programs by Altera. \n\nDisclaimer of Warranties and Remedies\ + \ \nNO WARRANTIES, EITHER EXPRESS OR IMPLIED, ARE MADE WITH RESPECT TO THE PROGRAMS, INCLUDING,\ + \ BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,\ + \ TITLE AND NONINFRINGEMENT, AND ALTERA EXPRESSLY DISCLAIM ALL WARRANTIES NOT STATED HEREIN.\ + \ YOU ASSUME THE ENTIRE RISK AS TO THE QUALITY, USE, AND PERFORMANCE OF THE PROGRAMS. SHOULD\ + \ THE PROGRAMS PROVE DEFECTIVE OR FAIL TO PERFORM PROPERLY, YOU -- AND NOT ALTERA -- SHALL\ + \ ASSUME THE ENTIRE COST AND RISK OF ANY REPAIR, SERVICE, CORRECTION, OR ANY OTHER LIABILITY\ + \ OR DAMAGES CAUSED BY OR OTHERWISE ASSOCIATED WITH THE PROGRAMS. ALTERA DOES NOT WARRANT\ + \ THAT THE PROGRAMS WILL MEET YOUR REQUIREMENTS, OR THAT THE OPERATION OF THE PROGRAMS WILL\ + \ BE UNINTERRUPTED OR ERROR-FREE. YOU ALSO ASSUME RESPONSIBILITY FOR THE SELECTION, INSTALLATION,\ + \ USE, AND RESULTS OF USING THE PROGRAMS. Some states do not allow the exclusion of implied\ + \ warranties, so the above exclusion may not apply to you. \nALTERA SHALL NOT BE LIABLE\ + \ TO YOU OR ANY OTHER PERSON FOR ANY DAMAGES, INCLUDING ANY INCIDENTAL OR CONSEQUENTIAL\ + \ DAMAGES, EXPENSES, LOST PROFITS, LOST SAVINGS, OR OTHER DAMAGES ARISING OUT OF OR OTHERWISE\ + \ ASSOCIATED WITH THE USE OF OR INABILITY TO USE THE PROGRAMS. IN ANY EVENT, ALTERA'S LIABILITY\ + \ UNDER THIS AGREEMENT SHALL NOT EXCEED THE LARGER OF EITHER THE AMOUNT YOU PAID ALTERA\ + \ FOR USE OF THE PROGRAMS, OR ONE HUNDRED DOLLARS ($100). YOUR SOLE REMEDIES AND ALTERA'S\ + \ ENTIRE LIABILITY ARE AS SET FORTH ABOVE. Some states do not allow the limitation or exclusion\ + \ of incidental or consequential damages, so the above limitations or exclusions may not\ + \ apply to you. \n\nTo the extent that the Programs are derived from third-party software\ + \ or other third-party materials, no such third-party provides any warranties with respect\ + \ to the Programs, assumes any liability regarding use of the Programs, or undertakes to\ + \ furnish you any support or information relating to the Programs. \n\nGeneral \nYou acknowledge\ + \ that Altera is not responsible for and is not obligated to provide, any support, including\ + \ email and telephone support, for any purpose with respect to the Programs. \n\nYou acknowledge\ + \ that the Programs are made freely available in accordance with this Agreement as part\ + \ of an effort to promote broad use of the Programs with minimum interference by you and\ + \ Altera. Accordingly, you agree that, if you obtain any patents relating to inventions\ + \ or discoveries made through use of or access to the Programs or derivative works thereof,\ + \ or that are necessary for the use of the Programs, you will not bring any claim for infringement\ + \ thereof against Altera or any direct or indirect licensee of Altera in connection with\ + \ or use of the Programs or derivative works thereof. The foregoing does not constitute\ + \ a license of any copyright or trade secret. \n\nYou shall not export the Programs, or\ + \ any product programmed by the Programs, without first obtaining any necessary U.S. or\ + \ other governmental licenses and approvals. \n\nThis Agreement is entered into for the\ + \ benefit of Altera and Altera's licensors and all rights granted to you and all obligations\ + \ owed to Altera shall be enforceable by Altera and its licensors. This Agreement constitutes\ + \ the entire understanding and agreement applicable to the Programs, superseding any prior\ + \ or contemporaneous understandings or agreements. It may not be modified except in a writing\ + \ executed by Altera. \n\nThis Agreement will be governed by the laws of the State of California.\ + \ You agree to submit to the jurisdiction of the courts in the State of California for the\ + \ resolution of any dispute or claim arising out of or relating to this Agreement. \n\n\ + The prevailing party in any legal action or arbitration arising out of this Agreement shall\ + \ be entitled to reimbursement for its expenses, including court costs and reasonable attorneys'\ + \ fees, in addition to any other rights and remedies such party may have.\n\nBY USING THE\ + \ PROGRAMS YOU ACKNOWLEDGE THAT YOU HAVE READ THIS AGREEMENT, UNDERSTAND IT, AND AGREE TO\ + \ BE BOUND BY ITS TERMS AND CONDITIONS; YOU FURTHER AGREE THAT IT IS THE COMPLETE AND EXCLUSIVE\ + \ STATEMENT OF THE AGREEMENT BETWEEN YOU AND ALTERA WHICH SUPERSEDES ANY PROPOSAL OR PRIOR\ + \ AGREEMENT, ORAL OR WRITTEN, AND ANY OTHER COMMUNICATIONS BETWEEN YOU AND ALTERA RELATING\ + \ TO THE SUBJECT MATTER OF THIS AGREEMENT. \n\nU.S. Government Restricted Rights \nThe Programs\ + \ and any accompanying documentation are provided with RESTRICTED RIGHTS. Use, duplication,\ + \ or disclosure by the Government is subject to restrictions as set forth in subparagraph\ + \ (c)(1)(ii) of The Rights in Technical Data and Computer Software clause at DFARS 252.227-7013\ + \ or subparagraphs (c)(1) and (2) of Commercial Computer Software--Restricted Rights at\ + \ 48 CFR 52.227-19, as applicable. Contractor/manufacturer is Altera Corporation, 101 Innovation\ + \ Drive, San Jose, CA 95134 and its licensors." json: jam-stapl.json - yml: jam-stapl.yml + yaml: jam-stapl.yml html: jam-stapl.html - text: jam-stapl.LICENSE + license: jam-stapl.LICENSE - license_key: jamon + category: Free Restricted spdx_license_key: LicenseRef-scancode-jamon other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + JAMon License Agreement + + Copyright (c) 2002, Steve Souza (admin@jamonapi.com) + All rights reserved. + Modifications: No + + Redistribution in binary form, with or without modifications, are permitted provided that the following conditions are met: + + 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. + If modifications are made to source code then this license should indicate that fact in the "Modifications" section above. + Neither the author, nor the 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 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. json: jamon.json - yml: jamon.yml + yaml: jamon.yml html: jamon.html - text: jamon.LICENSE + license: jamon.LICENSE - license_key: jason-mayes + category: Permissive spdx_license_key: LicenseRef-scancode-jason-mayes other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + #### Twitter Post Fetcher v10.0 #### + Coded by Jason Mayes 2013. A present to all the developers out there. + www.jasonmayes.com + Please keep this disclaimer with my code if you use it. Thanks. :) + Got feedback or questions, ask here: + http://www.jasonmayes.com/projects/twitterApi/ + Updates will be posted to this site. json: jason-mayes.json - yml: jason-mayes.yml + yaml: jason-mayes.yml html: jason-mayes.html - text: jason-mayes.LICENSE + license: jason-mayes.LICENSE - license_key: jasper-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-jasper-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Jasper Reports\n\nJasperreports Copyright (c) 2001-2003 Teodor Danciu (teodord@hotmail.com).\ + \ All rights reserved. This product included software developed by Teodor Danciu http://jasperreports.sourceforge.net.\ + \ For license details, please see the file classes/jasper_license.txt\n\nThe Jasper Reports\ + \ License, Version 1.0 Copyright (C) 2001-2003 Teodor Danciu (teodord@hotmail.com). All\ + \ rights reserved.\n\nRedistribution and use in source and binary forms, with or without\ + \ modification, are permitted provided that the following conditions are met:\n\n1. Redistributions\ + \ of source code must retain the above copyright notice, this list of conditions and the\ + \ following disclaimer.\n\n2. 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.\n\n3. The end-user documentation included\ + \ with the redistribution, if any, must include the following acknowledgment: \"This product\ + \ includes software developed by Teodor Danciu (http://jasperreports.sourceforge.net).\"\ + \tAlternately, this acknowledgment may appear in the software itself, if and wherever such\ + \ third-party acknowledgments normally appear.\n\n4. The name \"JasperReports\" must not\ + \ be used to endorse or promote products derived from this software without prior written\ + \ permission. For written permission, please contact teodord@hotmail.com.\n\n5. Products\ + \ derived from this software may not be called \"JasperReports\" nor may \"JasperReports\"\ + \ appear in their name, without prior written permission of Teodor Danciu.\n\nTHIS SOFTWARE\ + \ IS PROVIDED ``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 APACHE SOFTWARE FOUNDATION 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." json: jasper-1.0.json - yml: jasper-1.0.yml + yaml: jasper-1.0.yml html: jasper-1.0.html - text: jasper-1.0.LICENSE + license: jasper-1.0.LICENSE - license_key: jasper-2.0 + category: Permissive spdx_license_key: JasPer-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "JasPer License Version 2.0\n\nCopyright (c) 2001-2006 Michael David Adams\nCopyright\ + \ (c) 1999-2000 Image Power, Inc.\nCopyright (c) 1999-2000 The University of British Columbia\n\ + \nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person (the\n\ + \"User\") obtaining a copy of this software and associated documentation\nfiles (the \"\ + Software\"), to deal in the Software without restriction,\nincluding without limitation\ + \ the rights to use, copy, modify, merge,\npublish, distribute, and/or sell copies of the\ + \ Software, and to permit\npersons to whom the Software is furnished to do so, subject to\ + \ the\nfollowing conditions:\n\n1. The above copyright notices and this permission notice\ + \ (which\nincludes the disclaimer below) shall be included in all copies or\nsubstantial\ + \ portions of the Software.\n\n2. The name of a copyright holder shall not be used to endorse\ + \ or\npromote products derived from the Software without specific prior\nwritten permission.\n\ + \nTHIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS\nLICENSE. NO USE OF\ + \ THE SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER\nTHIS DISCLAIMER. THE SOFTWARE IS PROVIDED\ + \ BY THE COPYRIGHT HOLDERS\n\"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\ + \ INCLUDING\nBUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR\ + \ PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO\nEVENT SHALL THE COPYRIGHT HOLDERS\ + \ BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL\nINDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES\ + \ WHATSOEVER RESULTING\nFROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,\n\ + NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION\nWITH THE USE OR PERFORMANCE\ + \ OF THIS SOFTWARE. \n\nNO ASSURANCES ARE\nPROVIDED BY THE COPYRIGHT HOLDERS THAT THE SOFTWARE\ + \ DOES NOT INFRINGE\nTHE PATENT OR OTHER INTELLECTUAL PROPERTY RIGHTS OF ANY OTHER ENTITY.\n\ + EACH COPYRIGHT HOLDER DISCLAIMS ANY LIABILITY TO THE USER FOR CLAIMS\nBROUGHT BY ANY OTHER\ + \ ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL\nPROPERTY RIGHTS OR OTHERWISE. AS A CONDITION\ + \ TO EXERCISING THE RIGHTS\nGRANTED HEREUNDER, EACH USER HEREBY ASSUMES SOLE RESPONSIBILITY\ + \ TO SECURE\nANY OTHER INTELLECTUAL PROPERTY RIGHTS NEEDED, IF ANY. \n\nTHE SOFTWARE\n\ + IS NOT FAULT-TOLERANT AND IS NOT INTENDED FOR USE IN MISSION-CRITICAL\nSYSTEMS, SUCH AS\ + \ THOSE USED IN THE OPERATION OF NUCLEAR FACILITIES,\nAIRCRAFT NAVIGATION OR COMMUNICATION\ + \ SYSTEMS, AIR TRAFFIC CONTROL\nSYSTEMS, DIRECT LIFE SUPPORT MACHINES, OR WEAPONS SYSTEMS,\ + \ IN WHICH\nTHE FAILURE OF THE SOFTWARE OR SYSTEM COULD LEAD DIRECTLY TO DEATH,\nPERSONAL\ + \ INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE (\"HIGH\nRISK ACTIVITIES\"). THE COPYRIGHT\ + \ HOLDERS SPECIFICALLY DISCLAIM ANY\nEXPRESS OR IMPLIED WARRANTY OF FITNESS FOR HIGH RISK\ + \ ACTIVITIES." json: jasper-2.0.json - yml: jasper-2.0.yml + yaml: jasper-2.0.yml html: jasper-2.0.html - text: jasper-2.0.LICENSE + license: jasper-2.0.LICENSE - license_key: java-app-stub + category: Permissive spdx_license_key: LicenseRef-scancode-java-app-stub other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Java Application Stub Binary Module License\n\nCopyright (c) Apple Inc. All rights\ + \ reserved.\n\nIMPORTANT: This Apple software is supplied to you by Apple Inc. (\"Apple\"\ + ) in consideration of your agreement to the following terms, and your use, reproduction\ + \ or redistribution of this Apple software constitutes acceptance of these terms. If you\ + \ do not agree with these terms, please do not use, reproduce or redistribute this Apple\ + \ software.\n\nIn consideration of your agreement to abide by the following terms, and subject\ + \ to these terms, Apple grants you a personal, non-exclusive license, under Apple’s copyrights\ + \ in this original Apple JavaApplicationStub binary module software (the \"Apple Software\"\ + ), to use, reproduce and redistribute the Apple Software in binary form only as part of\ + \ your own software program. You may change the Apple Software's file name at your discretion.\ + \ Neither the name, trademarks, service marks or logos of Apple Inc. may be used to endorse\ + \ or promote products containing the Apple Software without specific prior written permission\ + \ from Apple. Except as expressly stated in this notice, no other rights or licenses, express\ + \ or implied, are granted by Apple herein, including but not limited to any patent rights\ + \ that may be infringed by your software program or by other works in which the Apple Software\ + \ may be incorporated.\n\nThe Apple Software is provided by Apple on an \"AS IS\" basis.\ + \ APPLE MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED\ + \ WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE,\ + \ REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN COMBINATION WITH YOUR\ + \ PRODUCTS. \n\nIN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL\ + \ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\ + \ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY\ + \ OUT OF THE USE, REPRODUCTION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED\ + \ AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR\ + \ OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." json: java-app-stub.json - yml: java-app-stub.yml + yaml: java-app-stub.yml html: java-app-stub.html - text: java-app-stub.LICENSE + license: java-app-stub.LICENSE - license_key: java-research-1.5 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-java-research-1.5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "JAVA RESEARCH LICENSE Version 1.5 \n\nI. DEFINITIONS.\n\n\"Licensee \" means You and\ + \ any other party that has entered\ninto and has in effect a version of this License.\n\n\ + \"Modifications\" means any (a) change or addition to the\nTechnology or (b) new source\ + \ or object code implementing any\nportion of the Technology.\n\n\"Sun\" means Sun Microsystems,\ + \ Inc. and its successors and\nassignees.\n\n\"Research Use\" means research, evaluation,\ + \ or development\nfor the purpose of advancing knowledge, teaching, learning,\nor customizing\ + \ the Technology or Modifications for personal\nuse. Research Use expressly excludes use\ + \ or distribution\nfor direct or indirect commercial (including strategic) gain\nor advantage.\n\ + \n\"Technology\" means the source code, object code and\nspecifications of the technology\ + \ made available by Sun\npursuant to this License.\n\n\"Technology Site\" means the website\ + \ designated by Sun for\naccessing the Technology.\n\n\"You\" means the individual executing\ + \ this License or the\nlegal entity or entities represented by the individual\nexecuting\ + \ this License.\n\nII. PURPOSE.\n\nSun is licensing the Technology under this Java Research\n\ + License (the \"License\") to promote research, education,\ninnovation, and development using\ + \ the Technology.\n\nCOMMERCIAL USE AND DISTRIBUTION OF TECHNOLOGY AND\nMODIFICATIONS IS\ + \ PERMITTED ONLY UNDER A SUN COMMERCIAL\nLICENSE.\n\nIII. RESEARCH USE RIGHTS.\n\nA. License\ + \ Grant. Subject to the conditions contained\nherein, Sun grants to You a non-exclusive,\ + \ non-transferable,\nworldwide, and royalty-free license to do the following for\nYour Research\ + \ Use only: \n\n 1. Reproduce, create Modifications of, and use the \nTechnology alone,\ + \ or with Modifications; \n\n 2. Share source code of the Technology alone, or with\nModifications,\ + \ with other Licensees; and \n\n 3. Distribute object code of the Technology, alone, \n\ + or with Modifications, to any third parties for Research \nUse only, under a license of\ + \ Your choice that is consistent \nwith this License; and publish papers and books discussing\ + \ \nthe Technology which may include relevant excerpts that \ndo not in the aggregate constitute\ + \ a significant portion \nof the Technology.\n\nB. Residual Rights. You may use any information\ + \ in\nintangible form that you remember after accessing the\nTechnology, except when such\ + \ use violates Sun's copyrights\nor patent rights.\n\nC. No Implied Licenses. Other than\ + \ the rights granted\nherein, Sun retains all rights, title, and interest in\nTechnology,\ + \ and You retain all rights, title, and interest\nin Your Modifications and associated specifications,\ + \ subject\nto the terms of this License.\n\nD. Open Source Licenses. Portions of the Technology\ + \ may be\nprovided with notices and open source licenses from open\nsource communities and\ + \ third parties that govern the use of\nthose portions, and any licenses granted hereunder\ + \ do not\nalter any rights and obligations you may have under such\nopen source licenses,\ + \ however, the disclaimer of warranty\nand limitation of liability provisions in this License\ + \ will\napply to all Technology in this distribution.\n\nIV. INTELLECTUAL PROPERTY REQUIREMENTS\n\ + \nAs a condition to Your License, You agree to comply with the\nfollowing restrictions and\ + \ responsibilities:\n\nA. License and Copyright Notices. You must include a copy\nof this\ + \ Java Research License in a Readme file for any\nTechnology or Modifications you distribute.\ + \ You must also\ninclude the following statement, \"Use and distribution of\nthis technology\ + \ is subject to the Java Research License\nincluded herein\", (a) once prominently in the\ + \ source code\ntree and/or specifications for Your source code\ndistributions, and (b) once\ + \ in the same file as Your\ncopyright or proprietary notices for Your binary code\ndistributions.\ + \ You must cause any files containing Your\nModification to carry prominent notice stating\ + \ that You\nchanged the files. You must not remove or alter any\ncopyright or other proprietary\ + \ notices in the Technology.\n\nB. Licensee Exchanges. Any Technology and Modifications\n\ + You receive from any Licensee are governed by this License.\n\nV. GENERAL TERMS.\n\nA.\ + \ Disclaimer Of Warranties.\n\nTHE TECHNOLOGY IS PROVIDED \"AS IS\", WITHOUT WARRANTIES\ + \ OF\nANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT\nLIMITATION, WARRANTIES THAT\ + \ THE TECHNOLOGY IS FREE OF\nDEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR\nNON-INFRINGING\ + \ OF THIRD PARTY RIGHTS. YOU AGREE THAT YOU\nBEAR THE ENTIRE RISK IN CONNECTION WITH YOUR\ + \ USE AND\nDISTRIBUTION OF ANY AND ALL TECHNOLOGY UNDER THIS LICENSE.\n\nB. Infringement;\ + \ Limitation Of Liability.\n\n 1. If any portion of, or functionality implemented by, the\n\ + Technology becomes the subject of a claim or threatened\nclaim of infringement (\"Affected\ + \ Materials\"), Sun may, in\nits unrestricted discretion, suspend Your rights to use and\n\ + distribute the Affected Materials under this License. Such\nsuspension of rights will be\ + \ effective immediately upon\nSun's posting of notice of suspension on the Technology\n\ + Site.\n\n 2. IN NO EVENT WILL SUN BE LIABLE FOR ANY DIRECT, INDIRECT,\nPUNITIVE, SPECIAL,\ + \ INCIDENTAL, OR CONSEQUENTIAL DAMAGES IN\nCONNECTION WITH OR ARISING OUT OF THIS LICENSE\ + \ (INCLUDING,\nWITHOUT LIMITATION, LOSS OF PROFITS, USE, DATA, OR ECONOMIC\nADVANTAGE OF\ + \ ANY SORT), HOWEVER IT ARISES AND ON ANY THEORY\nOF LIABILITY (including negligence), WHETHER\ + \ OR NOT SUN HAS\nBEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. LIABILITY\nUNDER THIS\ + \ SECTION V.B.2 SHALL BE SO LIMITED AND EXCLUDED,\nNOTWITHSTANDING FAILURE OF THE ESSENTIAL\ + \ PURPOSE OF ANY\nREMEDY.\n\nC. Termination.\n\n 1. You may terminate this License at\ + \ any time by notifying\nSun in writing. \n\n 2. All Your rights will terminate under\ + \ this License if \nYou fail to comply with any of its material terms or \nconditions and\ + \ do not cure such failure within thirty (30) \ndays after becoming aware of such noncompliance.\n\ + \n 3. Upon termination, You must discontinue all uses and\ndistribution of the Technology,\ + \ and all provisions of this\nSection V (\"General Terms\") shall survive termination.\n\ + \nD. Miscellaneous.\n\n 1. Trademark. You agree to comply with Sun's Trademark \n& Logo\ + \ Usage Requirements, as modified from time to time,\navailable at http://www.sun.com/policies/trademarks/.\n\ + Except as expressly provided in this License, You are\ngranted no rights in or to any Sun\ + \ trademarks now or\nhereafter used or licensed by Sun. \n\n 2. Integration. This License\ + \ represents the complete \nagreement of the parties concerning the subject matter\nhereof.\ + \ \n\n 3. Severability. If any provision of this License is \nheld unenforceable, such\ + \ provision shall be reformed \nto the extent necessary to make it enforceable unless \n\ + to do so would defeat the intent of the parties, in \nwhich case, this License shall terminate.\n\ + \n 4. Governing Law. This License is governed by the laws of\nthe United States and the\ + \ State of California, as applied to\ncontracts entered into and performed in California\ + \ between\nCalifornia residents. In no event shall this License be\nconstrued against the\ + \ drafter. \n\n 5. Export Control. As further described at \nhttp://www.sun.com/its,\ + \ you agree to comply with the U.S.\nexport controls and trade laws of other countries that\ + \ \napply to Technology and Modifications." json: java-research-1.5.json - yml: java-research-1.5.yml + yaml: java-research-1.5.yml html: java-research-1.5.html - text: java-research-1.5.LICENSE + license: java-research-1.5.LICENSE - license_key: java-research-1.6 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-java-research-1.6 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + JAVA RESEARCH LICENSE Version 1.6 + + I. DEFINITIONS. + + "Licensee" means You and any other party that has entered into and has + in effect a version of this License. + + "Modifications" means any change or addition to the Technology. + + "Sun" means Sun Microsystems, Inc. and its successors and assignees. + + "Research Use" means research, evaluation, or development for the + purpose of advancing knowledge, teaching, learning, or customizing the + Technology or Modifications for personal use. Research Use expressly + excludes use or distribution for direct or indirect commercial + (including strategic) gain or advantage. + + "Technology" means the source code and object code of the technology + made available by Sun pursuant to this License. + + "Technology Site" means the website designated by Sun for accessing + the Technology. + + "You" means the individual executing this License or the legal entity + or entities represented by the individual executing this License. + + II. PURPOSE. + + Sun is licensing the Technology under this Java Research License (the + "License") to promote research, education, innovation, and development + using the Technology. This License is not intended to permit or + enable access to the Technology for active consultation as part of + creating an independent implementation of the Technology. + + COMMERCIAL USE AND DISTRIBUTION OF TECHNOLOGY AND MODIFICATIONS IS + PERMITTED ONLY UNDER A SUN COMMERCIAL LICENSE. + + III. RESEARCH USE RIGHTS. + + A. License Grant. Subject to the conditions contained herein, Sun + grants to You a non-exclusive, non-transferable, worldwide, and + royalty-free license to do the following for Your Research Use only: + + 1. Reproduce, create Modifications of, and use the Technology + alone, or with Modifications; + + 2. Share source code of the Technology alone, or with + Modifications, with other Licensees; and + + 3. Distribute object code of the Technology, alone, or with + Modifications, to any third parties for Research Use only, under a + license of Your choice that is consistent with this License; and + publish papers and books discussing the Technology which may include + relevant excerpts that do not in the aggregate constitute a + significant portion of the Technology. + + B. Residual Rights. If You examine the Technology after accepting + this License and remember anything about it later, You are not + "tainted" in a way that would prevent You from creating or + contributing to an independent implementation, but this License grants + You no rights to Sun's copyrights or patents for use in such an + implementation. + + C. No Implied Licenses. Other than the rights granted herein, Sun + retains all rights, title, and interest in Technology, and You retain + all rights, title, and interest in Your Modifications and associated + specifications, subject to the terms of this License. + + D. Third Party Software. Portions of the Technology may be + provided with licenses or other notices from third parties that govern + the use of those portions. Any licenses granted hereunder do not alter + any rights and obligations You may have under such licenses, however, + the disclaimer of warranty and limitation of liability provisions in + this License will apply to all Technology in this distribution. + + IV. INTELLECTUAL PROPERTY REQUIREMENTS + + As a condition to Your License, You agree to comply with the following + restrictions and responsibilities: + + A. License and Copyright Notices. You must include a copy of this + Java Research License in a Readme file for any Technology or + Modifications you distribute. You must also include the following + statement, "Use and distribution of this technology is subject to the + Java Research License included herein", (a) once prominently in the + source code tree and/or specifications for Your source code + distributions, and (b) once in the same file as Your copyright or + proprietary notices for Your binary code distributions. You must cause + any files containing Your Modification to carry prominent notice + stating that You changed the files. You must not remove or alter any + copyright or other proprietary notices in the Technology. + + B. Licensee Exchanges. Any Technology and Modifications You + receive from any Licensee are governed by this License. + + V. GENERAL TERMS. + + A. Disclaimer Of Warranties. + + THE TECHNOLOGY IS PROVIDED "AS IS", WITHOUT WARRANTIES OF ANY KIND, + EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, WARRANTIES + THAT THE TECHNOLOGY IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A + PARTICULAR PURPOSE, OR NON-INFRINGING OF THIRD PARTY RIGHTS. YOU + AGREE THAT YOU BEAR THE ENTIRE RISK IN CONNECTION WITH YOUR USE AND + DISTRIBUTION OF ANY AND ALL TECHNOLOGY UNDER THIS LICENSE. + + B. Infringement; Limitation Of Liability. + + 1. If any portion of, or functionality implemented by, the + Technology becomes the subject of a claim or threatened claim of + infringement ("Affected Materials"), Sun may, in its unrestricted + discretion, suspend Your rights to use and distribute the Affected + Materials under this License. Such suspension of rights will be + effective immediately upon Sun's posting of notice of suspension on + the Technology Site. + + 2. IN NO EVENT WILL SUN BE LIABLE FOR ANY DIRECT, INDIRECT, + PUNITIVE, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES IN CONNECTION + WITH OR ARISING OUT OF THIS LICENSE (INCLUDING, WITHOUT LIMITATION, + LOSS OF PROFITS, USE, DATA, OR ECONOMIC ADVANTAGE OF ANY SORT), + HOWEVER IT ARISES AND ON ANY THEORY OF LIABILITY (including + negligence), WHETHER OR NOT SUN HAS BEEN ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. LIABILITY UNDER THIS SECTION V.B.2 SHALL BE SO LIMITED + AND EXCLUDED, NOTWITHSTANDING FAILURE OF THE ESSENTIAL PURPOSE OF ANY + REMEDY. + + C. Termination. + + 1. You may terminate this License at any time by notifying Sun in a + writing addressed to Sun Microsystems, Inc., 4150 Network Circle, + Santa Clara, California 95054, Attn.: Legal Department/Products and + Technology Law. + + 2. All Your rights will terminate under this License if You fail to + comply with any of its material terms or conditions and do not cure + such failure within thirty (30) days after becoming aware of such + noncompliance. + + 3. Upon termination, You must discontinue all uses and distribution + under this agreement, and all provisions of this Section V ("General + Terms") shall survive termination. + + D. Miscellaneous. + + + 1. Trademark. You agree to comply with Sun's Trademark & Logo + Usage Requirements, as modified from time to time, available at + http://www.sun.com/policies/trademarks/. Except as expressly provided + in this License, You are granted no rights in or to any Sun trademarks + now or hereafter used or licensed by Sun. + + 2. Integration. This License represents the complete agreement of + the parties concerning the subject matter hereof. + + 3. Severability. If any provision of this License is held + unenforceable, such provision shall be reformed to the extent + necessary to make it enforceable unless to do so would defeat the + intent of the parties, in which case, this License shall terminate. + + 4. Governing Law. This License is governed by the laws of the + United States and the State of California, as applied to contracts + entered into and performed in California between California residents. + In no event shall this License be construed against the drafter. + + 5. Export Control. As further described at + http://www.sun.com/its, you agree to comply with the U.S. export + controls and trade laws of other countries that apply to Technology + and Modifications. json: java-research-1.6.json - yml: java-research-1.6.yml + yaml: java-research-1.6.yml html: java-research-1.6.html - text: java-research-1.6.LICENSE + license: java-research-1.6.LICENSE - license_key: javascript-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-javascript-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception to GPL, any HTML file which merely makes function calls + to this code, and for that purpose includes it by reference shall be deemed a + separate work for copyright law purposes. In addition, the copyright holders of + this code give you permission to combine this code with free software libraries + that are released under the GNU LGPL. You may copy and distribute such a system + following the terms of the GNU GPL for this code and the LGPL for the libraries. + If you modify this code, you may extend this exception to your version of the + code, but you are not obligated to do so. If you do not wish to do so, delete + this exception statement from your version. json: javascript-exception-2.0.json - yml: javascript-exception-2.0.yml + yaml: javascript-exception-2.0.yml html: javascript-exception-2.0.html - text: javascript-exception-2.0.LICENSE + license: javascript-exception-2.0.LICENSE - license_key: jboss-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-jboss-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "LICENSE AGREEMENT\nJBOSS(r)\n\nThis License Agreement governs the use of the Software\ + \ Packages and any updates to the Software \nPackages, regardless of the delivery mechanism.\ + \ Each Software Package is a collective work \nunder U.S. Copyright Law. Subject to the\ + \ following terms, Red Hat, Inc. (\"Red Hat\") grants to \nthe user (\"Client\") a license\ + \ to the applicable collective work(s) pursuant to the \nGNU Lesser General Public License\ + \ v. 2.1 except for the following Software Packages: \n(a) JBoss Portal Forums and JBoss\ + \ Transactions JTS, each of which is licensed pursuant to the \nGNU General Public License\ + \ v.2; \n\n(b) JBoss Rules, which is licensed pursuant to the Apache License v.2.0;\n\n\ + (c) an optional download for JBoss Cache for the Berkeley DB for Java database, which is\ + \ licensed under the \n(open source) Sleepycat License (if Client does not wish to use the\ + \ open source version of this database, \nit may purchase a license from Sleepycat Software);\ + \ \n\nand (d) the BPEL extension for JBoss jBPM, which is licensed under the Common Public\ + \ License v.1, \nand, pursuant to the OASIS BPEL4WS standard, requires parties wishing to\ + \ redistribute to enter various \nroyalty-free patent licenses. \n\nEach of the foregoing\ + \ licenses is available at http://www.opensource.org/licenses/index.php.\n\n1. The Software.\ + \ \"Software Packages\" refer to the various software modules that are created and made\ + \ available \nfor distribution by the JBoss.org open source community at http://www.jboss.org.\ + \ Each of the Software Packages \nmay be comprised of hundreds of software components.\ + \ The end user license agreement for each component is located in \nthe component's source\ + \ code. With the exception of certain image files identified in Section 2 below, \nthe\ + \ license terms for the components permit Client to copy, modify, and redistribute the component,\ + \ \nin both source code and binary code forms. This agreement does not limit Client's rights\ + \ under, \nor grant Client rights that supersede, the license terms of any particular component.\n\ + \n2. Intellectual Property Rights. The Software Packages are owned by Red Hat and others\ + \ and are protected under copyright \nand other laws. Title to the Software Packages and\ + \ any component, or to any copy, modification, or merged portion shall \nremain with the\ + \ aforementioned, subject to the applicable license. The \"JBoss\" trademark, \"Red Hat\"\ + \ trademark, the \nindividual Software Package trademarks, and the \"Shadowman\" logo are\ + \ registered trademarks of Red Hat and its affiliates \nin the U.S. and other countries.\ + \ This agreement permits Client to distribute unmodified copies of the Software Packages\ + \ \nusing the Red Hat trademarks that Red Hat has inserted in the Software Packages on the\ + \ condition that Client follows Red Hat's \ntrademark guidelines for those trademarks located\ + \ at http://www.redhat.com/about/corporate/trademark/. Client must abide by \nthese trademark\ + \ guidelines when distributing the Software Packages, regardless of whether the Software\ + \ Packages have been modified. \nIf Client modifies the Software Packages, then Client must\ + \ replace all Red Hat trademarks and logos identified at \nhttp://www.jboss.com/company/logos,\ + \ unless a separate agreement with Red Hat is executed or other permission granted. \n\ + Merely deleting the files containing the Red Hat trademarks may corrupt the Software Packages.\ + \ \n\n3. Limited Warranty. Except as specifically stated in this Paragraph 3 or a license\ + \ for a particular \ncomponent, to the maximum extent permitted under applicable law, the\ + \ Software Packages and the \ncomponents are provided and licensed \"as is\" without warranty\ + \ of any kind, expressed or implied, \nincluding the implied warranties of merchantability,\ + \ non-infringement or fitness for a particular purpose. \nRed Hat warrants that the media\ + \ on which Software Packages may be furnished will be free from defects in \nmaterials and\ + \ manufacture under normal use for a period of 30 days from the date of delivery to Client.\ + \ \nRed Hat does not warrant that the functions contained in the Software Packages will\ + \ meet Client's requirements \nor that the operation of the Software Packages will be entirely\ + \ error free or appear precisely as described \nin the accompanying documentation. This\ + \ warranty extends only to the party that purchases the Services \npertaining to the Software\ + \ Packages from Red Hat or a Red Hat authorized distributor. \n\n4. Limitation of Remedies\ + \ and Liability. To the maximum extent permitted by applicable law, the remedies \ndescribed\ + \ below are accepted by Client as its only remedies. Red Hat's entire liability, and Client's\ + \ \nexclusive remedies, shall be: If the Software media is defective, Client may return\ + \ it within 30 days of \ndelivery along with a copy of Client's payment receipt and Red\ + \ Hat, at its option, will replace it or \nrefund the money paid by Client for the Software.\ + \ To the maximum extent permitted by applicable law, \nRed Hat or any Red Hat authorized\ + \ dealer will not be liable to Client for any incidental or consequential \ndamages, including\ + \ lost profits or lost savings arising out of the use or inability to use the Software,\ + \ \neven if Red Hat or such dealer has been advised of the possibility of such damages.\ + \ In no event shall \nRed Hat's liability under this agreement exceed the amount that Client\ + \ paid to Red Hat under this \nAgreement during the twelve months preceding the action.\n\ + \n5. Export Control. As required by U.S. law, Client represents and warrants that it:\ + \ \n(a) understands that the Software Packages are subject to export controls under the\ + \ \nU.S. Commerce Department's Export Administration Regulations (\"EAR\"); \n\n(b) is not\ + \ located in a prohibited destination country under the EAR or U.S. sanctions regulations\ + \ \n(currently Cuba, Iran, Iraq, Libya, North Korea, Sudan and Syria); \n\n(c) will not\ + \ export, re-export, or transfer the Software Packages to any prohibited destination, entity,\ + \ \nor individual without the necessary export license(s) or authorizations(s) from the\ + \ U.S. Government; \n\n(d) will not use or transfer the Software Packages for use in any\ + \ sensitive nuclear, chemical or \nbiological weapons, or missile technology end-uses unless\ + \ authorized by the U.S. Government by \nregulation or specific license; \n\n(e) understands\ + \ and agrees that if it is in the United States and exports or transfers the Software \n\ + Packages to eligible end users, it will, as required by EAR Section 740.17(e), submit semi-annual\ + \ \nreports to the Commerce Department's Bureau of Industry & Security (BIS), which include\ + \ the name and \naddress (including country) of each transferee; \n\nand (f) understands\ + \ that countries other than the United States may restrict the import, use, or \nexport\ + \ of encryption products and that it shall be solely responsible for compliance with any\ + \ such \nimport, use, or export restrictions.\n\n6. Third Party Programs. Red Hat may distribute\ + \ third party software programs with the Software Packages \nthat are not part of the Software\ + \ Packages and which Client must install separately. These third party \nprograms are subject\ + \ to their own license terms. The license terms either accompany the programs or \ncan\ + \ be viewed at http://www.redhat.com/licenses/. If Client does not agree to abide by the\ + \ applicable \nlicense terms for such programs, then Client may not install them. If Client\ + \ wishes to install the programs \non more than one system or transfer the programs to another\ + \ party, then Client must contact the licensor \nof the programs.\n\n7. General. If any\ + \ provision of this agreement is held to be unenforceable, that shall not affect the \n\ + enforceability of the remaining provisions. This License Agreement shall be governed by\ + \ the laws of the \nState of North Carolina and of the United States, without regard to\ + \ any conflict of laws provisions, \nexcept that the United Nations Convention on the International\ + \ Sale of Goods shall not apply.\n\nCopyright 2006 Red Hat, Inc. All rights reserved. \ + \ \n\"JBoss\" and the JBoss logo are registered trademarks of Red Hat, Inc. \nAll other\ + \ trademarks are the property of their respective owners. \n\n Page 1 of 1 18 October\ + \ 2006" json: jboss-eula.json - yml: jboss-eula.yml + yaml: jboss-eula.yml html: jboss-eula.html - text: jboss-eula.LICENSE + license: jboss-eula.LICENSE - license_key: jdbm-1.00 + category: Permissive spdx_license_key: LicenseRef-scancode-jdbm-1.00 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + JDBM LICENSE v1.00 + + Redistribution and use of this software and associated documentation + ("Software"), with or without modification, are permitted provided + that the following conditions are met: + + 1. Redistributions of source code must retain copyright + statements and notices. Redistributions must also contain a + copy of this document. + + 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 "JDBM" must not be used to endorse or promote + products derived from this Software without prior written + permission of Cees de Groot. For written permission, + please contact cg@cdegroot.com. + + 4. Products derived from this Software may not be called "JDBM" + nor may "JDBM" appear in their names without prior written + permission of Cees de Groot. + + 5. Due credit should be given to the JDBM Project + (http://jdbm.sourceforge.net/). + + THIS SOFTWARE IS PROVIDED BY THE JDBM PROJECT AND CONTRIBUTORS + ``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 + CEES DE GROOT OR ANY 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. json: jdbm-1.00.json - yml: jdbm-1.00.yml + yaml: jdbm-1.00.yml html: jdbm-1.00.html - text: jdbm-1.00.LICENSE + license: jdbm-1.00.LICENSE - license_key: jdom + category: Permissive spdx_license_key: LicenseRef-scancode-jdom other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Redistribution and use in source and binary forms, with or without\nmodification, are\ + \ permitted provided that the following conditions\nare met:\n\n1. Redistributions of source\ + \ code must retain the above copyright\n notice, this list of conditions, and the following\ + \ disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n\ + \ notice, this list of conditions, and the disclaimer that follows\n these conditions\ + \ in the documentation and/or other materials\n provided with the distribution.\n\t\n\ + 3. The name \"JDOM\" must not be used to endorse or promote products\n derived from this\ + \ software without prior written permission. For\n written permission, please contact\ + \ .\n\n4. Products derived from this software may not be called\ + \ \"JDOM\", nor\n may \"JDOM\" appear in their name, without prior written permission\n\ + \ from the JDOM Project Management .\n\nIn addition, we request\ + \ (but do not require) that you include in the\nend-user documentation provided with the\ + \ redistribution and/or in the\nsoftware itself an acknowledgement equivalent to the following:\n\ + \ \"This product includes software developed by the\n JDOM Project (http://www.jdom.org/).\"\ + \nAlternatively, the acknowledgment may be graphical using the logos\navailable at http://www.jdom.org/images/logos.\n\ + \t\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED\nWARRANTIES, INCLUDING,\ + \ BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\ + \ PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE JDOM AUTHORS OR THE PROJECT\nCONTRIBUTORS\ + \ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL\ + \ DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\ + \ LOSS OF\nUSE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY\ + \ OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR\ + \ OTHERWISE) ARISING IN ANY WAY OUT\nOF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\ + \ POSSIBILITY OF\nSUCH DAMAGE.\n\t\nThis software consists of voluntary contributions made\ + \ by many\nindividuals on behalf of the JDOM Project and was originally\ncreated by Jason\ + \ Hunter and\nBrett McLaughlin . For more\ + \ information\non the JDOM Project, please see ." json: jdom.json - yml: jdom.yml + yaml: jdom.yml html: jdom.html - text: jdom.LICENSE + license: jdom.LICENSE - license_key: jelurida-public-1.1 + category: Copyleft spdx_license_key: LicenseRef-scancode-jelurida-public-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + JELURIDA PUBLIC LICENSE + + Preamble: + + Being a company engaged predominantly in the creation of blockchain technology, + Jelurida IP B.V. has prepared the following “coinleft” license whose goal is to + implement new requirements consistent with the specific nature of the blockchain + software. We recognize the fundamental advantages that the decentralized ledger + technology has to offer and we truly believe in its potential to change the + world for the better. Therefore we wish to continue the already established + tradition to publish blockchain software as an open source and in this way to + give our contribution to the further development of the blockchain technology + world-wide. At the same time we wish to protect our IP rights and to address the + fact that our software was copied many times during its existence and as a + result a lot of “clones” have been created which dilute the value of the tokens + with no significant technological improvements behind them. + + The exact terms and conditions for using, copying and modification follow: + + + TERMS AND CONDITIONS + + + I. General Conditions + + + Introduction + + The existent copyleft licensing models were designed to protect the value of the + code which is created in open source projects. They make sure anyone who builds + on top of this code also releases their code under the same copyleft license, + thus sharing back with the community and the developers of the original project + the added value of the derived work. + + Copyleft licenses however were created long before crypto currency and + blockchain technologies appeared, and could not have anticipated the fact that + today the value of an open source distributed ledger project is contained not + only in the program code being written, but in the unique public blockchain + instance or crypto currency token, maintained by this project, with its + developers, community and holders sharing the common interest to preserve and + increase the value of this blockchain token. + + Crypto currency tokens today have value of their own, people can buy, sell and + invest in them and the unlimited permission of cloning the existing blockchain + platforms and creating new coins inevitably results in decreasing the value of + the original tokens. + + Crypto currency tokens are also an inseparable part of each distributed ledger + software, without which such software cannot really be used. Ensuring that a + clone project shares back the modified source code is no longer sufficient to + allow the users of the original project access to that derived work, unless they + are also allocated some of the newly created tokens in the clone blockchain + instance. Thus such allocation is important in order to preserve not only the + value of the original tokens, but also to preserve the users freedom to use any + works derived from the original software. + + With the above being said, the terms and conditions for using, copying and + modification of distributed ledger software programs are outlined below, called + the Jelurida Public License (JPL). The JPL is inspired by the GNU General Public + License versions 2 and 3, with adaptations specifically aimed at application of + the license to distributed ledger software programs; as such the GNU General + Public License and any other license terms and conditions other than this JPL + are explicitly excluded. + + + JPL version: 1.1 + + + Article 0. Definitions: + + “based on [the Program/Covered Work/…]” means derived from the original Covered + Work (or part thereof) by the act(s) of copying it, modifying it, including it + (in whole or in part) or by linking to the original Covered Work (or part + thereof). + + “to convey”: 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. + + Copyright Holder, Licensor: The owner of the IP rights over the software as + determined by applicable national law and international treaty provisions + regulating this subject matter. + + Corresponding Source: 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. + + Covered Work: A DLT Software or another Program based on a DLT or otherwise, or + based on another Covered Work, their Object Code and Source Code, and any other + work covered by this License according to their terms. + + DLT Instance: Unique instance of distributed ledger consisting of a network of + one or more participants (nodes) running a particular DLT Software and which + nodes are in a state of consensus with each other within the permitted + tolerances of the applicable consensus algorithm. An example of such DLT + instance is the Nxt public blockchain. + + DLT Software: Any distributed ledger computer technology including but not + limited to blockchain technology regardless of the way the consensus is + established. + + General Conditions: Chapter I. General Conditions of this License. + + License: This Jelurida Public License (JPL) consisting of both General + Conditions and Special Conditions. + + Licensee, You: Everyone (natural person or legal entity) who wants to use, copy, + distribute, modify or build on top of the Program. + + “to modify”: 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. Modification also includes + translation into another programming language or human language. + + Object Code: Any non-Source Code form of a work. + + Program: Any copyrightable work licensed under this License. + + “to propagate”: 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. + + Source Code: The Source Code for a work means the preferred form of the work for + making modifications to it. + + Special Conditions: Chapter II. Special Conditions of this License which + contains additional provisions required and adapted by the Licensor according to + the specific Covered Work they are applicable to. + + Standard Interface: 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. + + System Libraries: Libraries of an executable work, other than the work as a + whole, that (a) are included in the normal form of packaging a Major Component, + but which are not part of that Major Component, and (b) serve 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. + + + Article 1. Scope of the License: + + 1.1 This License applies to any Covered Work or other work which contains a + notice placed by the Copyright Holder saying it may be used, propagated, + conveyed or modified only under the terms of this License. It also applies to + any work which is not a DLT per se but is still a Covered Work because it is + based on the covered DLT Software or contains a portion of it. This is to ensure + that if such work is included into another DLT Software that DLT Software must + satisfy the below stated airdrop requirement and other terms of this License. + + 1.2. All rights granted under this License are granted for the term of copyright + on the Covered Work, and are irrevocable provided the conditions of this License + are met. + + 1.3 The act of running a Program is not restricted as long as it does not + violate Article 3.4 of the General Conditions, and the output from a 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.4 Conveying is permitted solely under the conditions stated herein. + Sublicensing is not allowed; Article 7 of the General Conditions makes it + unnecessary. + + 1.5 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. + + + Article 2. + + 2.1 You may copy and distribute verbatim copies of the Covered Work’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 Covered + Work a copy of this License along with the Covered Work. + + 2.2 You must keep intact all authorship and copyright notices and when conveying + or offering to convey copies (verbatim or modified) you must also avoid any + misrepresentation of the origin of the Covered Work. You must make sure that any + modified versions of such Covered Work are marked in reasonable ways as + different from the original version and they do not imply any endorsement or + support by the Copyright Holder regarding this modified work. + + 2.3 You may charge a fee for the physical act of transferring a copy (for the + avoidance of doubt, such physical act of transfer may include making the copy + available on your website or otherwise), and you may at your discretion and + responsibility offer support or warranty protection in exchange for a fee. You + are not allowed to charge any fee for granting the right to further use, + propagate, convey or modify the copy then obtained by the acquirer, as such + would be against the intention of this License. + + + Article 3. You may modify your copy or copies of the Covered Work or any portion + of it, thus forming a work based on the Covered Work, and copy and distribute + such modifications or work under the terms of Article 2 above, provided that you + also meet all of these conditions: + + 3.1 You must cause the modified files to carry prominent notices stating that + you changed the files and the date of any change. + + 3.2 You must cause any work that you distribute or publish, that in whole or in + part contains or is derived from the Covered Work or any part thereof, to be + licensed as a whole at no charge to all third parties under the terms of this + License. + + 3.3 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 the + conditions of this License, and telling the user how to view a copy of this + License. (Exception: if the Covered Work itself is interactive but does not + normally print such an announcement, your work based on the Covered Work is not + required to print an announcement.) If the program has graphical user interface + any such notices should be placed in an about dialog or similar. + + 3.4 If the Covered Work is a DLT Software, after your modifications it must + continue to work with the original DLT Instance without violating the consensus + algorithm or resulting in a permanent fork. For the purpose of this clause + modification also includes changing the configuration or network environment in + which the Covered Work is run that results in permanent disconnection, fork or + isolation from the original DLT Instance. If your modifications result in a + different DLT Instance you must satisfy the following airdrop requirement: + + 3.4.1 The token holders from the original distributed ledger instance shall be + allocated a portion (an "airdrop") of the tokens in that new DLT Instance + proportional to their token balances. This shall also apply to anyone who + intends to make a copy of your copy, i.e. any such person needs to allocate the + same airdrop of the newly created tokens to the account holders from the + original DLT Instance (not to your copy). If the Covered Work is not a DLT + Software per se this requirement still applies to any other work based on or + including this work or portions of it which is a DLT Software or in any other + way distributes tokens to its users. The specific percentage of the airdrop + and the tokens to which it applies, which may also depend on how the new DLT + Instance relates to the original one, are defined in the Special Conditions. + + 3.5 All other provisions, designated in the Special Conditions and consistent + with the specific requirements arising from the architecture of each particular + decentralized ledger/consensus platform, are observed as well. + + 3.6 These requirements apply to the modified work as a whole. If identifiable + sections of that work are not derived from the Covered Work, 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 convey them as + separate works. But when you convey the same sections as part of a whole which + is a work based on the Covered Work, the conveyance 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. Mere + aggregation of another work not based on the Covered Work with the Covered Work + (or with a work based on the Covered Work) on a volume of a storage or + distribution medium does not bring the other work under the scope of this + License. + + + Article 4. You may convey a Covered Work in Object Code form under the terms of + Articles 2 and 3 of the General Conditions, provided that you also convey the + machine-readable Corresponding Source under the terms of this License, in one of + these ways: + + 4.1 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. + + 4.2 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. + + 4.3 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 non-commercially, and only if you received the Object Code with + such an offer, in accord with Article 4.2 above. + + 4.4 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. + + 4.5 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 Article 4.4 above. + + 4.6 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. + + + Article 5. You may not use, copy, modify, or propagate the Covered Work except + as expressly provided under this License. Any attempt otherwise to use, copy, + modify or propagate the Covered Work 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. + + + Article 6. You are not required to accept this License, since you have not + signed it. However, nothing else grants you permission to copy, use, modify or + propagate Covered Works. These actions are prohibited if you do not accept this + License. Therefore, by modifying or propagating the Covered Work, you indicate + your acceptance of this License to do so, and all its terms and conditions for, + as specified in the General Conditions and Special Conditions, copying, using, + propagating or modifying the Covered Work. + + + Article 7. Each time you convey the Covered Work, the recipient automatically + receives a license from the original Licensor to use, copy, propagate or modify + the Covered Work subject to terms and conditions at least equal and in + accordance with this License. In this regard, the license granted on behalf of + the original Licensor by the propagator of the Covered Work may amend this + License only to the following extent: + + 7.1 You can add additional airdrop requirements towards the holders of your + unique DLT Instance as long as those do not in any way reduce or interfere with + the airdrop owed to the original DLT Instance account holders. + + 7.2 If the distribution and/or use of the Covered Work is restricted in certain + countries either by patents, by copyrighted interfaces or by law, the original + copyright holder who places the Covered Work 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. + + + Article 8. 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 propagate the Covered Work at + all. For example, if a patent license would not permit royalty-free + redistribution of the Covered Work 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 Covered Work. + + + Article 9. Jelurida IP B.V. may publish revised and/or new versions of the + Jelurida 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. To avoid ambiguity, everyone who wishes to use the text of the + Jelurida Public License must always specify under which version of the JPL + their Covered Work is released. + + + Article 10. Every Copyright Holder is permitted to use the text of the Jelurida + Public License for their own Covered Work provided that they: (i) keep the name + Jelurida Public License (you can append the name of the specific DLT Instance, + e.g. "Jelurida Public License version 1.0 for the Nxt Public Blockchain"), + (ii) remove the Preamble and (iii) do not change the General Conditions. Every + Copyright Holder is permitted to adapt the Special Conditions to their specific + case under (i), (ii) and (iii) above to the extent that they do not contradict + the General Conditions nor the spirit of the Jelurida Public License. + + + Article 11. If the Special Conditions contradict the General Conditions or any + part of them, the provisions of the General Conditions shall take precedence. + + + Article 12. If you cannot satisfy Article 3.4 and 3.4.1 of the General + Conditions or you are not willing to do so, or if you require a customized DLT + Instance for internal use (i.e. a private blockchain) based on the DLT Software + you must obtain permission or purchase a commercial license from the original + Copyright Holder however he is not in any way obliged to grant permission or + sell such a license. + + + Article 13. No warranty + + THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE COVERED WORK "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 + COVERED WORK IS WITH YOU. SHOULD THE COVERED WORK PROVE DEFECTIVE, YOU ASSUME + THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + + Article 14. + + 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 + COVERED WORK 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 COVERED WORK (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 COVERED WORK TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH + HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. YOU + INDEMNIFY THE COPYRIGHT HOLDER OR CONVEYOR OF THE COVERED WORK OF ANY LIABILITY + VIS-À-VIS ANY THIRD PARTY IN CONNECTION WITH THE COVERED WORK AS USED, COPIED, + PROPAGATED OR MODIFIED BY YOU. + + + Article 15. + + 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 Covered Work, unless a warranty or assumption + of liability accompanies a copy of the Covered Work in return for a fee. + + + II. Special Conditions + + Article 0. The Copyright Holder of the Nxt Reference Software (NRS) is Jelurida + IP B.V. + + + Article 1. The airdrop requirement of Article 3.4.1 of the General Conditions, + as related to the Nxt Reference Software (NRS) is the following: + + 1.1 The NXT holders from the original Nxt Public Blockchain Platform as + maintained by Jelurida Swiss SA must be allocated at least 10% (ten percent) of + the forging tokens in the new DLT Instance, proportional to their NXT holdings, + + OR + + 1.2 The forging token holders from a DLT Instance which is based on the NRS that + has already satisfied the JPL airdrop requirement, are allocated 100% (one + hundred percent) of the forging tokens in that new DLT Instance, proportional to + their forging token holdings. + + The first case covers clones and forks of the Nxt platform, and ensures that NXT + owners will receive an airdrop from any such clone or fork launched in the + future, or any existing Nxt clone that decides to upgrade to this NRS version or + copy or backport code from it. + + The second case is to cover forks of Nxt clones which have already satisfied the + JPL airdrop, as by definition at the time of the hard fork all accounts start + with the same balances on either fork, and it would be difficult to make a hard + fork satisfy the first condition. The Nxt holders who received the airdrop + would still have the same balances on either fork. + + + Article 2. In both cases (Articles 1.1 or 1.2 of the Special Conditions), token + holdings must be calculated based on a snapshot taken not earlier than 3 months + before the launch of the new DLT Instance. For a new DLT Instance, the snapshot + should also be taken not later than 24 h before the launch, to avoid the + uncertainty due to the 720 blocks rolling checkpoint. + + + Article 3. + + 3.1 There should be under no circumstances any restrictions or any type of + discrimination against accounts receiving tokens as an airdrop. + + 3.2 If token distribution must be restricted by some criteria that not all + existing NXT holders can potentially satisfy, a specific exemption from the full + JPL airdrop requirements must be obtained in advance. The Copyright Holder + reserves the right to not grant such exemption, or to require a commercial + license in such situations, to be decided on a case by case basis. + + 3.3 As internal (private) use of Nxt software for evaluating and testing + purposes cannot satisfy the JPL airdrop requirement, any such use will also + require an evaluation license agreement with the Copyright Holder if it lasts + longer than 3 months. + + 3.4 Nothing in this license shall be understood as giving NXT token holders the + right to hold the Licensor, its affiliate parties, or sublicensors, liable in + case the NXT holders do not obtain any airdrop, or liable for not taking action + to enforce the airdrop requirement, or for not observing, verifying or + monitoring the compliance with any airdrop. The Licensor also retains the right + to change the percentage of the airdrop requirement in Article 1.1 or to + completely eliminate this airdrop requirement at any time. + + + Article 4. DLT Instances that by design do not use a fixed number of tokens + issued all at once, or that have substituted the proof-of-stake algorithm with a + different one and as a result do not use forging tokens, have to contact the + Copyright Holder for a custom license agreement. However the Copyright Holder is + in no way obliged to provide such a custom license. + + + Article 5. Interpretation + You agree that you may not, for the purpose of interpretation of this License, + refer to, or construe this License on the basis of, or use as counterevidence, + any prior agreements, arrangements, understandings and statements, or other + bilateral or public licenses, and to this extent agree (i) that this License + qualifies as an agreed rule of evidence within the meaning of article 153 Dutch + Code of Civil Proceedings and (ii) that this clause serves as a determination + agreement within the meaning of article 7:900 Dutch Civil Code, and that this + License shall be interpreted or construed by assuming the most obvious + grammatical meaning of the wording of this License. + + + Article 6. Governing law + This License, the documents related to it and any agreement that incorporates + any of these are governed by and shall be construed in accordance with the laws + of the Netherlands. Any and all disputes arising out of or in connection with + this License, the documents related to it and any agreement that incorporates + any of these shall be exclusively referred to the competent court in Amsterdam, + the Netherlands. json: jelurida-public-1.1.json - yml: jelurida-public-1.1.yml + yaml: jelurida-public-1.1.yml html: jelurida-public-1.1.html - text: jelurida-public-1.1.LICENSE + license: jelurida-public-1.1.LICENSE - license_key: jetbrains-purchase-terms + category: Commercial spdx_license_key: LicenseRef-scancode-jetbrains-purchase-terms other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + Terms and Conditions of Purchase + + GENERAL + In these Terms and Conditions of Purchase ("Purchase Terms"): + "Customer" means an individual or a legal entity purchasing Product directly from JetBrains or its Affiliate. + "JetBrains" means JetBrains s.r.o. with its registered office at Na hřebenech II 1718/10, Prague, 14700, Czech Republic, registered with Commercial Register kept by the Municipal Court of Prague, Section C, file 86211, ID.Nr.: 265 02 275. + "Affiliate" means, for the purpose of these Purchase Terms, a) JetBrains Americas, Inc., a Delaware corporation with its registered office at 324 New Brooklyn Road, Berlin, NJ 08009, USA, (ii) JetBrains GmbH with its registered office at Elsenheimerstraße 47, München 80687, Germany; or (iii) JetBrains Co. Ltd., with its registered office at Universitetskaya emb., 7-9-11/5, lit.A, St. Petersburg 199034, Russian Federation. + "Product" means any software program or service made available by JetBrains. The use of Product by Customer is governed by the applicable end-user license agreement, subscription terms or terms of service (collectively, Terms of Use) set forth by JetBrains. + Customer accepts these Purchase Terms by placing an order for Product with JetBrains or its Affiliate. When placing an order for Product directly with JetBrains, Customer enters into a legally binding agreement with JetBrains. When placing an order for Product with Affiliate, Customer enters into a legally binding agreement with the relevant Affiliate. + Orders placed by Customer with a reseller of JetBrains or its Affiliate are subject to terms and conditions of purchase set forth by that reseller. + + ORDER PLACEMENT AND ACCEPTANCE + Customer may place an order with JetBrains or its Affiliate based on the Customer country: + online on the JetBrains website www.jetbrains.com; + by fax or e-mail using the appropriate contact of JetBrains or its Affiliate. + Order details shall be in English. Customer can modify order details before acceptance of the Customer order by JetBrains or its Affiliate by a written notice to JetBrains or the relevant Affiliate. English is the preferred language for order-related enquiries. + Any order is not binding upon JetBrains or its Affiliate until accepted by JetBrains or the relevant Affiliate. Non-acceptance of an order may be the result of one of the following: + failed payment; + growing backlog or negative payment history; + incomplete or incorrect order details, such as missing e-mail address for delivery, missing Customer billing address, or a pricing or product description error, among others; + ineligibility according to the order criteria (e.g. entitlement to upgrade or to certain Product purchase options restricted to particular users or purpose of use); or + for any reason at the sole discretion of JetBrains or the relevant Affiliate. + + PRICES AND PAYMENT TERMS + JetBrains and its Affiliates set prices and accept payments for Products in one of the following major currencies depending on the Customer country: USD, EUR, GBP or CZK. Prices in any currency are subject to change by JetBrains or its Affiliate. + JetBrains and its Affiliates accept major debit and credit cards (collectively, "payment cards") for online orders via third-party payment gateway providers, including, but not limited to, Adyen and PayPal. JetBrains and its Affiliates are not responsible for any payment failure resulting from inaccurate payment card details provided by Customer when placing an online order, any restrictions applicable to payment card by Customer's bank, or payment gateway failure. + By purchasing Product requiring regular payments on a monthly, quarterly or annual basis ("Recurring Payments"), Customer authorizes JetBrains or its Affiliate to charge Customer's payment card automatically at the interval and in the amount selected by Customer based on the available options during the purchase process. Customer agrees that the payment card specified by Customer for Recurring Payments is, and will continue to be, an account that Customer owns, and that Customer will maintain sufficient availability under Customer's credit card limit, or sufficient funds in the account linked to Customer's debit card, as applicable, to pay Recurring Payments. Customer can cancel Recurring Payments at any time via Customer account at https://account.jetbrains.com prior to the next Recurring Payment due date. If Customer cancels Recurring Payments after this time, the cancellation will not take effect until the following Recurring Payment due date, and no refund or partial refund will be issued to Customer by JetBrains or its Affiliate. + JetBrains and its Affiliates only accept purchase orders from existing corporate Customers with clear payment history. Purchase orders can only be paid by wire transfer on net 30 days terms, unless otherwise specified on invoice issued to Customer by JetBrains or the relevant Affiliate. Purchase orders from newly registered corporate Customers and offline orders from individual Customers are subject to advance payment by wire transfer. + + PRODUCT DELIVERY + JetBrains and its Affiliates ship no physical Products. Any details necessary to enable Customer to download and/or use the purchased Product will be delivered by JetBrains or Affiliate to Customer via e-mail to an e-mail address provided by Customer. Customer is responsible for providing JetBrains or Affiliate with a valid e-mail address for delivery purposes. + JetBrains and its Affiliates will use their best efforts to deliver Product purchased by Customer within 2 business days of the order acceptance. JetBrains or its Affiliate shall not be liable for any failure to deliver Product within this timeframe. + The Products shall be deemed delivered to Customer on the date when JetBrains or Affiliate sends the Product e-mail to the e-mail address provided by Customer. JetBrains or its Affiliate shall not be liable for any failure to deliver a Product to Customer if a Product e-mail bounces back. + + TAXES AND DEDUCTIONS + Product prices do not include any national, state or local sales, use, value added or other taxes. Customer shall pay any such taxes, if applicable. + Customer bears sole responsibility for any withholding tax liabilities, and no deductions shall be made by Customer from the amount payable to JetBrains or its Affiliate under any invoice. + Purchases from the European Union ("EU") countries may be subject to the EU value added tax. Customers from the EU are responsible for providing a valid VAT ID, if any. + + WITHDRAWAL AND REFUND + JetBrains provides an opportunity to evaluate any of its Products free of charge during a trial period specified in the applicable Terms of Use, and encourages Customer to fully evaluate Product prior to purchasing. Customer may withdraw from using Product at its sole discretion at any time before expiration of a free trial period. + Any refund request following the Product purchase date will be subject to the prior authorization by JetBrains or its Affiliate and acceptance of such request shall be at the sole discretion of JetBrains or Affiliate, unless otherwise provided by applicable law. + + EXPORT CONTROL + Customer agrees and accepts that Products may be subject to import and export laws of any country, including those of the European Union and the United States (specifically the Export Administration Regulations ("EAR"). + In accordance with the EAR, JetBrains Products typically: + a. Fall under the Export Control Classification Number (ECCN) 5D002; + b. May be exported under EAR to most destinations with No License Required ("NLR"). Restricted countries currently include, but are not necessarily limited to Cuba, Iran, North Korea, Sudan or Syria. + Information provided under Section 7.2 is only intended for general information purposes and should not be construed as legal advice concerning the export control laws and regulations of any country. For details on export restrictions applicable to Products, Customer should refer to the laws and regulations of the relevant jurisdiction. + + MISCELLANEOUS + No terms and conditions other than the terms and conditions contained herein shall be binding upon JetBrains and its Affiliates, unless accepted by JetBrains or its Affiliate in writing and signed by the duly authorized representative of JetBrains or its Affiliate. If Customer's terms and conditions of purchase are different from or in addition to these Purchase Terms, these Purchase Terms shall prevail and Customer’s terms are hereby rejected. + These Purchase Terms are subject to change at any time by JetBrains by posting the updated Purchase terms on the JetBrains website at www.jetbrains.com. + Customer declares having had sufficient opportunity to review this Agreement, understand the content of all of its clauses, negotiate its terms and seek independent professional legal advice in that respect before entering into it. Consequently, any statutory "form contracts" ("adhesion contracts") regulations shall not be applicable to these Purchase Terms. + If Customer places an order for Product directly with JetBrains, these Purchase Terms will be governed by the laws of Czech Republic, without reference to conflict of laws principles, and the parties agree that any litigation relating to this these Purchase Terms may only be brought in, and will be subject to the jurisdiction of, any Court of Czech + If Customer places an order for Product with any JetBrains Affiliate, these Purchase Terms will be governed by laws applicable in the country of the relevant Affiliate. + For any questions regarding these Purchase Terms, please contact JetBrains or its Affiliate. json: jetbrains-purchase-terms.json - yml: jetbrains-purchase-terms.yml + yaml: jetbrains-purchase-terms.yml html: jetbrains-purchase-terms.html - text: jetbrains-purchase-terms.LICENSE + license: jetbrains-purchase-terms.LICENSE - license_key: jetbrains-toolbox-open-source-3 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-jetbrains-toolbox-oss-3 other_spdx_license_keys: - LicenseRef-scancode-jetbrains-toolbox-open-source-3 is_exception: no is_deprecated: no - category: Proprietary Free + text: "TOOLBOX SUBSCRIPTION LICENSE AGREEMENT FOR OPEN SOURCE PROJECTS\nVersion 3, Effective\ + \ as of September 9th, 2016\n\nIMPORTANT! READ CAREFULLY:\nTHIS IS A LEGAL AGREEMENT. BY\ + \ CLICKING ON THE \"I AGREE\" (OR SIMILAR) BUTTON THAT IS PRESENTED TO YOU AT THE TIME OF\ + \ YOUR PURCHASE, OR BYDOWNLOADING, INSTALLING, COPYING, SAVING ON YOUR COMPUTER, OR OTHERWISE\ + \ USING JETBRAINS SOFTWARE, SERVICES OR PRODUCTS, YOU ARE BECOMING A PARTY TO THIS AGREEMENT,\ + \ AND YOU ARE CONSENTING TO BE BOUND BY ALL THE TERMS AND CONDITIONS SET FORTH BELOW.\n\n\ + 1. PARTIES\n\n1.1. \"JetBrains\" or \"We\" means JetBrains s.r.o., having its principal\ + \ place of business at Na hrebenech II 1718/10, Prague, 14700, Czech Republic, registered\ + \ with Commercial Register kept by the Municipal Court of Prague, Section C, file 86211,\ + \ ID.Nr.: 265 02 275.\n\n1.2. \"Licensee\" or \"You\" means an open source development group\ + \ specified in the Subscription Confirmation.\n\n2. DEFINITIONS\n\n2.1. \"Agreement\" means\ + \ this Agreement.\n\n2.2. \"Product\" for the purposes of this Agreement means any software\ + \ provided under JetBrains Toolbox.\n\n2.3. \"Client\" means a computer device used by Licensee\ + \ for running Product.\n\n2.4. JetBrains Account\" or \"JBA\" means an account at https://account.jetbrains.com\ + \ created by Licensee, having a unique name and password, and through which Licensee has\ + \ access to Products in accordance with a Toolbox Subscription.\n\n2.5. \"JetBrains Toolbox\"\ + \ means all of JetBrains individual developer productivity software (as identified on the\ + \ JetBrains website). JetBrains Toolbox does not include team productivity software or services\ + \ such as YouTrack, TeamCity, UpSource, or Hub, or any other software, services or products\ + \ other than those identified from time to time by JetBrains as individual developer productivity\ + \ software.\n\n2.6. \"Subscription Confirmation\" means an email confirming Licensee’s rights\ + \ to access and use Products.\n\n2.7. \"Toolbox Subscription\" specifies the subscription\ + \ term and the set of Products covered by this Agreement.\n\n2.8. \"Authorized User\" means\ + \ a software developer or other open source development group member who is authorized by\ + \ Licensee to use Products for the purpose of development of an open source project.\n\n\ + 3. GRANT OF LICENSE\n\n3.1. Unless Toolbox Subscription is expired or this Agreement is\ + \ terminated in accordance with Section 10, and subject to the terms and conditions specified\ + \ herein, JetBrains grants You a limited, non-exclusive and non-transferable license to\ + \ use each Product covered by Toolbox Subscription for a period of 1 (one) year as follows:\n\ + \n(A) You may:\n\n(i) Install and use any version of the Product covered by the Toolbox\ + \ Subscription on any number of Clients and on any operating system supported by the Product;use\ + \ Product by Authorized Users solely for the purpose of development of non-commercial open\ + \ source projects that meet the Open Source Definition at http://www.opensource.org/docs/osd.\ + \ The right to use Product for an\"y other purposes is expressly prohibited; and\n\n(ii)\ + \ Make one backup copy of Product solely for archival purposes.\n\n(B) You may not:\n\n\ + (i) Rent, lease, reproduce, modify, adapt, create derivative works of, distribute, sell,\ + \ sublicense or transfer the Product, or provide access to the Product or Your JetBrains\ + \ Account to a third party;\n\n(ii) Reverse engineer, decompile, disassemble, modify, translate\ + \ the Product, or make any attempt to discover the source code of the Product;\n\n(iii)\ + \ Remove or obscure any proprietary or other notices contained in the Product;\n\n(iv) Use\ + \ Products for any commercial purposes.\n\n3.2. Products are made available on a limited\ + \ license or access basis, and no ownership right is conveyed to You, irrespective of the\ + \ use of terms such as \"purchase\" or \"sale.\" JetBrains has and retains all right, title\ + \ and interest, including all intellectual property rights, in and to the Products any and\ + \ all related or underlying technology, and any modifications or derivative works of the\ + \ foregoing created by or for JetBrains, including without limitation as they may incorporate\ + \ Feedback (as defined below).\n\n3.3. Licensee agrees to comply with the terms of this\ + \ Agreement, and to take reasonable measures to prevent use of Software by Authorized Users\ + \ in an inappropriate manner or access to Products by unauthorized users.\n\n4. ACCESS TO\ + \ PRODUCTS\n\n4.1. You must register for a JetBrains Account and have Internet access in\ + \ order to access or receive Products, or to renew a subscription. Any registration information\ + \ that You provide to Us via Your JetBrains Account must be accurate, current and complete.\ + \ You must also update Your information so that We may send notices, statements and other\ + \ information to You by email or through Your JetBrains Account. You are responsible for\ + \ all actions taken through Your accounts.\n\n4.2. You may use Your JetBrains Account credentials\ + \ in the Product so We verify Your rights to use the Product online. Product will periodically\ + \ connect to JetBrains servers to update this information including changes to JetBrains\ + \ Account credentials and Toolbox Subscription plan.\n\n4.3. Alternatively, You may use\ + \ an offline activation code that You can download in Your JetBrains Account. In the event\ + \ you use this option, it is Your responsibility to download a new activation code and apply\ + \ it to the Product registration screen every time you make changes to the Toolbox Subscription\ + \ or whenever a Toolbox Subscription is renewed.\n\n4.4. All deliveries under this Agreement\ + \ will be electronic. You must have an Internet connection in order to access Your JetBrains\ + \ Account and to receive any deliveries. For the avoidance of doubt, You are responsible\ + \ for Product download and installation.\n\n5. LICENSE RENEWAL\n\n5.1. Licensee may renew\ + \ its license for another year by submitting a written request to Licensor 30 (thirty) days\ + \ prior to the license expiration date.\n\n5.2. If not agreed otherwise in writing between\ + \ Licensor and Licensee, in the event of license renewal the relationship between parties\ + \ shall be governed and amended (if applicable) by the terms and conditions of License agreement\ + \ related to Product available at www.jetbrains.com on the day of license renewal.\n\n6.\ + \ FEEDBACK\n\nYou have no obligation to provide Us with ideas, suggestions, or proposals\ + \ (\"Feedback\"). However, if You submit Feedback to us, then You grant Us a nonexclusive,\ + \ worldwide, royalty-free license that is sub-licensable and transferable, to make, use,\ + \ sell, have made, offer to sell, import, reproduce, publicly display, distribute, modify,\ + \ and publicly perform the Feedback in any manner without any obligation, royalty or restriction\ + \ based on intellectual property rights or otherwise.\n\n7. THIRD-PARTY SOFTWARE\n\n7.1.\ + \ The Products include code and libraries licensed to Us by third parties, including open\ + \ source software (\"Third-Party Software\"). The list of Third-Party Software included\ + \ in each Product is available in Product documentation. All Third-Party Software is licensed\ + \ to You under the terms of their respective licenses locate in the Product documentation.\n\ + \n7.2. JETBRAINS PROVIDES NO WARRANTY, EXPRESS OR IMPLIED, WITH RESPECT TO ANY THIRD-PARTY\ + \ SOFTWARE AND EXPRESSLY DISCLAIMS ANY WARRANTY OR CONDITION OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT.\n\n8. LIMITED WARRANTY\n\nALL PRODUCTS\ + \ ARE PROVIDED TO YOU ON AN \"AS IS\" AND \"AS AVAILABLE\" BASIS WITHOUT WARRANTIES. USE\ + \ OF THE SOFTWARE IS AT YOUR OWN RISK. JETBRAINS MAKES NO WARRANTY AS TO ITS USE OR PERFORMANCE.\ + \ TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, JETBRAINS, AND ITS SUPPLIERS AND RESELLERS,\ + \ DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT\ + \ NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,\ + \ TITLE, AND NON-INFRINGEMENT, WITH REGARD TO THE PRODUCTS, AND THE PROVISION OF OR FAILURE\ + \ TO PROVIDE SUPPORT SERVICES. THIS LIMITED WARRANTY GIVES LICENSEE SPECIFIC LEGAL RIGHTS.\ + \ LICENSEE MAY HAVE OTHERS, WHICH VARY FROM STATE/JURISDICTION TO STATE/JURISDICTION. LICENSOR\ + \ (AND ITS AFFILIATES, AGENTS, DIRECTORS AND EMPLOYEES) DOES NOT WARRANT THAT THE SOFTWARE\ + \ IS ACCURATE, RELIABLE OR CORRECT, THAT THE PRODUCTS WILL MEET LICENSEE’S REQUIREMENTS,\ + \ THAT THE SOFTWARE WILL BE AVAILABLE AT ANY PARTICULAR TIME OR LOCATION, UNINTERRUPTED\ + \ OR SECURE; THAT ANY DEFFECTS OR ERRORS WILL BE CORRECTED; OR THAT THE SOFTWARE IS FREE\ + \ OF VIRUSES OR OTHER HARMFUL COMPONENTS. ANY CONTENT OR DATA DOWNLOADED OR OTHERWISE OBTAINED\ + \ THROUGH THE USE OF THE SOFTWARE ARE DOWNLOADED AT YOUR OWN RISK AND YOU WILL BE SOLELY\ + \ RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR LOSS OF DATA THAT RESULTS FROM SUCH DOWNLOAD.\n\ + \n9. DISCLAIMER OF DAMAGES\n\n9.1. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN\ + \ NO EVENT WILL JETBRAINS (OR ITS AFFILIATES, AGENTS, DIRECTORS, OR EMPLOYEES), OR JETBRAINS’\ + \ LICENSORS, SUPPLIERS OR RESELLERS BE LIABLE TO YOU OR ANYONE ELSE FOR: (A) ANY LOSS OF\ + \ USE, DATA, GOODWILL, OR PROFITS, WHETHER OR NOT FORESEEABLE; (B) ANY LOSS OR DAMAGES IN\ + \ CONNECTION WITH TERMINATION OR SUSPENSION OF YOUR ACCESS TO OUR PRODUCTS IN ACCORDANCE\ + \ WITH THIS AGREEMENT, AND (C) ANY SPECIAL, INCIDENTAL, INDIRECT, CONSEQUENTIAL, EXEMPLARY\ + \ OR PUNITIVE DAMAGES WHATSOEVER (EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF THESE\ + \ DAMAGES), INCLUDING THOSE (X) RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR\ + \ NOT FORESEEABLE, (Y) BASED ON ANY THEORY OF LIABILITY, INCLUDING BREACH OF CONTRACT OR\ + \ WARRANTY, STRICT LIABILITY, NEGLIGENCE OR OTHER TORTIOUS ACTION, OR (Z) ARISING FROM ANY\ + \ OTHER CLAIM ARISING OUT OF OR IN CONNECTION WITH YOUR USE OF OR ACCESS TO THE SERVICES\ + \ OR SOFTWARE. THE FOREGOING LIMITATION OF LIABILITY SHALL APPLY TO THE FULLEST EXTENT PERMITTED\ + \ BY LAW IN THE APPLICABLE JURISDICTION.\n\n9.2. OUR TOTAL LIABILITY IN ANY MATTER ARISING\ + \ OUT OF OR RELATED TO THIS AGREEMENT IS LIMITED TO TEN (10) US DOLLARS. THIS LIMITATION\ + \ WILL APPLY EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF THE LIABILITY EXCEEDING\ + \ THE AMOUNT AND NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY.\n\ + \n10. TERM AND TERMINATION\n\n10.1. The term of this Agreement will commence upon acceptance\ + \ of this Agreement by Licensee as set forth in the preamble above, and will continue for\ + \ each Product through the end of the applicable subscription period specified in the respective\ + \ Subscription Confirmation. This Agreement can be renewed under the terms set forth in\ + \ Section 6 of this Agreement with respect to a Product for a successive Toolbox Subscription\ + \ term, unless terminated as set forth herein.\n\n10.2. You may terminate this Agreement\ + \ at any time by cancelling the subscription for one or more Products via Your JetBrains\ + \ Account. If such termination occurs during a then-current subscription period, this Agreement\ + \ will continue to be effective until the end of that subscription period.\n\n10.3. JetBrains\ + \ may terminate this agreement if:\n\n(A) Licensee has materially breached this Agreement\ + \ and fails to cure such breach within thirty (30) days of written notice thereof;\n\n(B)\ + \ JetBrains is required to do so by law (for example, where the provision of the JetBrains\ + \ Toolbox to Licensee is, or becomes, unlawful); or\n\n(C) JetBrains elect to discontinue\ + \ to provide JetBrains Toolbox, in whole or in part.\n\n10.4. JetBrains will make reasonable\ + \ effort to notify Licensee via an email as follows:\n\n(A) Thirty (30) days prior to termination\ + \ of the Agreement in the events specified in Clauses 10.3(B) and 10.3(C) above;\n\n11.\ + \ EXPORT REGULATIONS\n\nLicensee shall comply with all applicable laws and regulations with\ + \ regards to: economic sanctions; export controls; import regulations; and trade embargoes\ + \ (\"Sanctions\"), including those of the European Union and United States (specifically\ + \ the Export Administration Regulations (EAR)). Licensee acknowledges that it is not a person\ + \ targeted by Sanctions nor is it otherwise owned or controlled by or acting on behalf of\ + \ any person targeted by Sanctions. Further, Licensee acknowledges that it will not download\ + \ or otherwise export or re-export Software or any related technical data directly or indirectly\ + \ to any person targeted by Sanctions or download or otherwise use Software for any end-use\ + \ prohibited or restricted by Sanctions.\n\n12. GENERAL\n\n12.1. Entire Agreement. This\ + \ Agreement, including the Third-Party Software license terms, constitutes the entire agreement\ + \ between the parties concerning its subject matter and supersedes any prior agreements\ + \ between You and JetBrains regarding Your use of any JetBrains software covered by JetBrains\ + \ Toolbox. No purchase order, other ordering document or any handwritten or typewritten\ + \ text which purports to modify or supplement the printed text of this Agreement or any\ + \ schedule will add to or vary the terms of this Agreement unless signed by both Licensee\ + \ and JetBrains.\n\n12.2. Reservation of Rights. JetBrains reserves the right at any time\ + \ to cease the support of JetBrains Toolbox and to alter prices, features, specifications,\ + \ capabilities, functions, licensing terms, release dates, general availability or other\ + \ characteristics of JetBrains Toolbox.\n\n12.3. Changes to this Agreement. We may update\ + \ or modify this Agreement from time to time, including any referenced policies and other\ + \ documents. If a revision meaningfully reduces Your rights, We will use reasonable efforts\ + \ to notify You (by, for example, sending an email to the billing or technical contact You\ + \ provide to us, posting on our blog, through Your JetBrains Account, or via the Product\ + \ itself). If We modify Agreement, the modified version of Agreement will be effective upon\ + \ the next Toolbox Subscription term. In this case, if You object to the updated Agreement\ + \ terms, as Your exclusive remedy, You may cancel Toolbox Subscription. You may be required\ + \ to click through the updated Agreement to show Your acceptance. For the avoidance of doubt,\ + \ any Subscription Confirmation is subject to the version of the Agreement in effect on\ + \ the Subscription Confirmation date.\n\n12.4. Severability. If a particular term is not\ + \ enforceable, the unenforceability of that term will not affect any other terms.\n\n12.5.\ + \ Headings. Headings and titles are for convenience only and do not affect the interpretation\ + \ of this Agreement.\n\n12.6. No Waiver. Our failure to enforce or exercise any of this\ + \ Agreement is not a waiver of that section.\n\n12.7. Governing Law. This Agreement will\ + \ be governed by the laws of Czech Republic, without regard to conflict of laws principles.\ + \ Licensee agrees that any litigation relating to this Agreement may only be brought in,\ + \ and will be subject to the jurisdiction of, any relevant competent court of Czech Republic.\n\ + \n12.8. You declare that You have had sufficient opportunity to review this Agreement, understand\ + \ the content of all of its clauses, negotiate its terms and seek independent professional\ + \ legal advice in that respect before entering into it. Consequently, any statutory \"form\ + \ contracts\" (\"adhesion contracts\") regulations shall not be applicable to this Agreement.\n\ + \n12.9. Notice. JetBrains may deliver any notice to Licensee via electronic mail to an email\ + \ address provided by Licensee, JetBrains Account, registered mail, personal delivery or\ + \ renowned express courier (such as DHL, Fedex or UPS). Any such notice will be deemed to\ + \ be effective (i) on the day the notice is sent to Licensee via email, (ii) upon being\ + \ uploaded to JetBrains Account (irrespective of when Licensee actually receives it), (iii)\ + \ upon personal delivery, (iv) one (1) day after deposit by express courier, (v) or five\ + \ (5) days after deposit in the mail, whichever occurs first.\n\nFor exceptions or modifications\ + \ to this Agreement, please contact JetBrains at: \n Address: Na hrebenech II 1718/10, Prague,\ + \ 14700, Czech Republic \n Fax: +420 241 722 540 \n Email: sales@jetbrains.com" json: jetbrains-toolbox-open-source-3.json - yml: jetbrains-toolbox-open-source-3.yml + yaml: jetbrains-toolbox-open-source-3.yml html: jetbrains-toolbox-open-source-3.html - text: jetbrains-toolbox-open-source-3.LICENSE + license: jetbrains-toolbox-open-source-3.LICENSE - license_key: jetty + category: Permissive spdx_license_key: LicenseRef-scancode-jetty other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Jetty License\n$Revision: 584 $\n\nPreamble:\nThe intent of this document is to state\ + \ the conditions under which the Jetty\nPackage may be copied, such that the Copyright Holder\ + \ maintains some semblance\nof control over the development of the package, while giving\ + \ the users of the\npackage the right to use, distribute and make reasonable modifications\ + \ to the\nPackage in accordance with the goals and ideals of the Open Source concept as\n\ + described at http://www.opensource.org.\n\nIt is the intent of this license to allow commercial\ + \ usage of the Jetty package,\nso long as the source code is distributed or suitable visible\ + \ credit given or\nother arrangements made with the copyright holders.\n\nDefinitions:\n\ + * \"Jetty\" refers to the collection of Java classes that are distributed as a\nHTTP server\ + \ with servlet capabilities and associated utilities.\n\n* \"Package\" refers to the collection\ + \ of files distributed by the Copyright\nHolder, and derivatives of that collection of files\ + \ created through textual\nmodification.\n\n* \"Standard Version\" refers to such a Package\ + \ if it has not been modified,\nor has been modified in accordance with the wishes of the\ + \ Copyright Holder.\n\n* \"Copyright Holder\" is whoever is named in the copyright or copyrights\ + \ for\nthe package. Mort Bay Consulting Pty. Ltd. (Australia) is the \"Copyright Holder\"\ + \ for\nthe Jetty package.\n\n* \"You\" is you, if you're thinking about copying or distributing\ + \ this\nPackage.\n\n* \"Reasonable copying fee\" is whatever you can justify on the basis\ + \ of media\ncost, duplication charges, time of people involved, and so on. (You will not\ + \ be\nrequired to justify it to the Copyright Holder, but only to the computing\ncommunity\ + \ at large as a market that must bear the fee.)\n\n* \"Freely Available\" means that no\ + \ fee is charged for the item itself,\nthough there may be fees involved in handling the\ + \ item. It also means that\nrecipients of the item may redistribute it under the same conditions\ + \ they\nreceived it.\n\n0. The Jetty Package is Copyright (c) Mort Bay Consulting Pty. Ltd.\ + \ (Australia)\nand others. Individual files in this package may contain additional copyright\n\ + notices. The javax.servlet packages are copyright Sun Microsystems Inc.\n\n1. The Standard\ + \ Version of the Jetty package is available from\nhttp://jetty.mortbay.org.\n\n2. You may\ + \ make and distribute verbatim copies of the source form of the\nStandard Version of this\ + \ Package without restriction, provided that you include\nthis license and all of the original\ + \ copyright notices and associated\ndisclaimers.\n\n3. You may make and distribute verbatim\ + \ copies of the compiled form of the\nStandard Version of this Package without restriction,\ + \ provided that you include\nthis license.\n\n4. You may apply bug fixes, portability fixes\ + \ and other modifications derived\nfrom the Public Domain or from the Copyright Holder.\ + \ A Package modified in such\na way shall still be considered the Standard Version.\n\n\ + 5. You may otherwise modify your copy of this Package in any way, provided that\nyou insert\ + \ a prominent notice in each changed file stating how and when you\nchanged that file, and\ + \ provided that you do at least ONE of the following:\n\na) Place your modifications in\ + \ the Public Domain or otherwise make them\nFreely Available, such as by posting said modifications\ + \ to Usenet or an\nequivalent medium, or placing the modifications on a major archive site\ + \ such as\nftp.uu.net, or by allowing the Copyright Holder to include your modifications\ + \ in\nthe Standard Version of the Package.\n\nb) Use the modified Package only within your\ + \ corporation or organization.\n\nc) Rename any non-standard classes so the names do not\ + \ conflict with\nstandard classes, which must also be provided, and provide a separate manual\n\ + page for each non-standard class that clearly documents how it differs from the\nStandard\ + \ Version.\n\nd) Make other arrangements with the Copyright Holder.\n\n6. You may distribute\ + \ modifications or subsets of this Package in source code or\ncompiled form, provided that\ + \ you do at least ONE of the following:\n\na) Distribute this license and all original copyright\ + \ messages, together\nwith instructions (in the about dialog, manual page or equivalent)\ + \ on where to\nget the complete Standard Version.\n\nb) Accompany the distribution with\ + \ the machine-readable source of the\nPackage with your modifications. The modified package\ + \ must include this license\nand all of the original copyright notices and associated disclaimers,\ + \ together\nwith instructions on where to get the complete Standard Version.\n\nc) Make\ + \ other arrangements with the Copyright Holder.\n\n7. You may charge a reasonable copying\ + \ fee for any distribution of this Package.\nYou may charge any fee you choose for support\ + \ of this Package. You may not\ncharge a fee for this Package itself. However, you may distribute\ + \ this Package\nin aggregate with other (possibly commercial) programs as part of a larger\n\ + (possibly commercial) software distribution provided that you meet the other\ndistribution\ + \ requirements of this license.\n\n8. Input to or the output produced from the programs\ + \ of this Package do not\nautomatically fall under the copyright of this Package, but belong\ + \ to whomever\ngenerated them, and may be sold commercially, and may be aggregated with\ + \ this\nPackage.\n\n9. Any program subroutines supplied by you and linked into this Package\ + \ shall\nnot be considered part of this Package.\n\n10. The name of the Copyright Holder\ + \ may not be used to endorse or promote\nproducts derived from this software without specific\ + \ prior written permission.\n\n11. This license may change with each release of a Standard\ + \ Version of the\nPackage. You may choose to use the license associated with version you\ + \ are using\nor the license of the latest Standard Version.\n\n12. THIS PACKAGE IS PROVIDED\ + \ \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, WITHOUT LIMITATION,\ + \ THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\n13.\ + \ If any superior law implies a warranty, the sole remedy under such shall be, \nat the\ + \ Copyright Holders option either \na) return of any price paid or \nb) use or reasonable\ + \ endeavours to repair or replace the software.\n\n14. This license shall be read under\ + \ the laws of Australia.\n\nThe End\nThis license was derived from the Artistic license\ + \ published on\nhttp://www.opensource.com" json: jetty.json - yml: jetty.yml + yaml: jetty.yml html: jetty.html - text: jetty.LICENSE + license: jetty.LICENSE - license_key: jetty-ccla-1.1 + category: CLA spdx_license_key: LicenseRef-scancode-jetty-ccla-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Jetty Project \nCorporate Contributor License Agreement V1.1\nbased on http://www.apache.org/licenses/\n\ + \nThank you for your interest in the Jetty project by Mort Bay Consulting\nPty. Ltd. Australia\ + \ (\"MortBay\"). In order to clarify the intellectual\nproperty license granted with Contributions\ + \ from any person or entity,\nMortBay must have a Contributor License Agreement (\"CLA\"\ + ) that has been\nsigned by each Contributor, indicating agreement to the license terms\n\ + below. This license is for your protection as a Contributor as well as\nthe protection of\ + \ MortBay and its users; it does not change your rights\nto use your own Contributions for\ + \ any other purpose.\n\nThis version of the Agreement allows an entity (the \"Corporation\"\ + ) to\nsubmit Contributions to Mort Bay, to authorize Contributions submitted by\nits designated\ + \ employees to Mort Bay, and to grant copyright and patent\nlicenses thereto.\n\nIf you\ + \ have not already done so, please complete this agreement and \ncommit it to the Jetty\ + \ repository at\nsvn+ssh://svn.jetty.codehaus.org/home/projects/jetty/scm/jetty at\nLICENSES/ccla-CORPORATE-NAME.txt.\ + \ If you do not have commit privilege to the \nrepository, please email the file to eclipse@eclipse.com.\ + \ If possible, \ndigitally sign the committed file, otherwise send a signed Agreement \n\ + to MortBay.\n\nEach developer covered by this agreement should have their name appended\ + \ \nthe Schedule A and the copy commited to LICENSES/ccla-CORPORATE-NAME.txt \nusing their\ + \ authenticated codehaus ssh login. If possible, digitally sign\nthe committed file, otherwise\ + \ send a signed Agreement to MortBay.\n\nPlease read this document carefully before signing\ + \ and keep a copy for\nyour records.\n\n Corporation name:\n Mailing Address:\n\n Point\ + \ of Contact:\n Full name: \n E-Mail: \n Fax:\n\nYou accept and agree to the following\ + \ terms and conditions for Your\npresent and future Contributions submitted to MortBay.\ + \ In return,\nMortBay shall not use Your Contributions in a way that is contrary\nto the\ + \ software license in effect at the time of the Contribution.\nExcept for the license granted\ + \ herein to MortBay and recipients of\nsoftware distributed by MortBay, You reserve all\ + \ right, title, and\ninterest in and to Your Contributions.\n\n1. Definitions.\n\n \"\ + You\" (or \"Your\") shall mean the copyright owner or legal entity\n authorized by the\ + \ copyright owner that is making this Agreement with\n MortBay. For legal entities, the\ + \ entity making a Contribution and all\n other entities that control, are controlled by,\ + \ or are under common\n control with that entity are considered to be a single Contributor.\ + \ For\n the purposes of this definition, \"control\" means (i) the power, direct\n or\ + \ indirect, to cause the direction or management of such entity,\n whether by contract\ + \ or otherwise, or (ii) ownership of fifty percent\n (50%) or more of the outstanding\ + \ shares, or (iii) beneficial ownership\n of such entity.\n\n \"Contribution\" shall\ + \ mean any original work of authorship,\n including any modifications or additions to\ + \ an existing work, that\n is intentionally submitted by You to MortBay for inclusion\ + \ in, or\n documentation of, any of the products owned or managed by MortBay (the\n \ + \ \"Work\"). For the purposes of this definition, \"submitted\" means any\n form of electronic,\ + \ verbal, or written communication sent to MortBay\n or its representatives, including\ + \ but not limited to communication\n on electronic mailing lists, source code control\ + \ systems, and issue\n tracking systems that are managed by, or on behalf of, MortBay\ + \ for\n the purpose of discussing and improving the Work, but excluding\n communication\ + \ that is conspicuously marked or otherwise designated\n in writing by You as \"Not a\ + \ Contribution.\"\n\n2. Grant of Copyright License. Subject to the terms and conditions\n\ + \ of this Agreement, You hereby grant to MortBay and to recipients of\n software distributed\ + \ by MortBay a perpetual, worldwide, non-exclusive,\n no-charge, royalty-free, irrevocable\ + \ copyright license to reproduce,\n prepare derivative works of, publicly display, publicly\ + \ perform,\n sublicense, and distribute Your Contributions and such derivative\n works.\n\ + \n3. Grant of Patent License. Subject to the terms and conditions of\n this Agreement,\ + \ You hereby grant to MortBay and to recipients of\n software distributed by MortBay a\ + \ perpetual, worldwide, non-exclusive,\n no-charge, royalty-free, irrevocable (except\ + \ as stated in this section)\n patent license to make, have made, use, offer to sell,\ + \ sell, import,\n and otherwise transfer the Work, where such license applies only to\n\ + \ those patent claims licensable by You that are necessarily infringed by\n Your Contribution(s)\ + \ alone or by combination of Your Contribution(s)\n with the Work to which such Contribution(s)\ + \ were submitted. If any\n entity institutes patent litigation against You or any other\ + \ entity\n (including a cross-claim or counterclaim in a lawsuit) alleging\n that your\ + \ Contribution, or the Work to which you have contributed,\n constitutes direct or contributory\ + \ patent infringement, then any\n patent licenses granted to that entity under this Agreement\ + \ for that\n Contribution or Work shall terminate as of the date such litigation\n is\ + \ filed.\n\n4. You represent that You are legally entitled to grant the above\n license.\ + \ You represent further that each employee of the Corporation\n designated on Schedule\ + \ A below (or in a subsequent written modification\n to that Schedule) is authorized to\ + \ submit Contributions on behalf of\n the Corporation.\n\n5. You represent that each of\ + \ Your Contributions is Your original creation\n (see section 7 for submissions on behalf\ + \ of others). You represent\n that Your Contribution submissions include complete details\ + \ of any\n third-party license or other restriction (including, but not limited\n to,\ + \ related patents and trademarks) of which you are personally aware\n and which are associated\ + \ with any part of Your Contributions.\n\n6. You are not expected to provide support for\ + \ Your Contributions, except\n to the extent You desire to provide support. You may provide\ + \ support\n for free, for a fee, or not at all. Unless required by applicable\n law\ + \ or agreed to in writing, You provide Your Contributions on an\n \"AS IS\" BASIS, WITHOUT\ + \ WARRANTIES OR CONDITIONS OF ANY KIND, either\n express or implied, including, without\ + \ limitation, any warranties or\n conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY,\ + \ or FITNESS\n FOR A PARTICULAR PURPOSE.\n\n7. Should You wish to submit work that is\ + \ not Your original creation,\n You may submit it to MortBay separately from any Contribution,\n\ + \ identifying the complete details of its source and of any license or\n other restriction\ + \ (including, but not limited to, related patents,\n trademarks, and license agreements)\ + \ of which you are personally\n aware, and conspicuously marking the work as \"Submitted\ + \ on behalf of\n a third-party: [named here]\".\n\n8. It is your responsibility to notify\ + \ MortBay when any change is required\n to the list of designated employees authorized\ + \ to submit Contributions\n on behalf of the Corporation, or to the Corporation's Point\ + \ of Contact\n with MortBay.\n\nDate: \n\nSignature:\n\nName:\n\nPositions:\n\n\n\nSchedule\ + \ A\n\n Name Date added\n\n ______________________________________\ + \ ________________\n\n ______________________________________ ________________\n\n\ + \ ______________________________________ ________________\n\n ______________________________________\ + \ ________________\n\n ______________________________________ ________________\n\n\ + \ ______________________________________ ________________\n\n ______________________________________\ + \ ________________\n\n ______________________________________ ________________\n\n\ + \ ______________________________________ ________________\n\n ______________________________________\ + \ ________________\n\n ______________________________________ ________________\n\n\ + \ ______________________________________ ________________\n\n ______________________________________\ + \ ________________" json: jetty-ccla-1.1.json - yml: jetty-ccla-1.1.yml + yaml: jetty-ccla-1.1.yml html: jetty-ccla-1.1.html - text: jetty-ccla-1.1.LICENSE + license: jetty-ccla-1.1.LICENSE - license_key: jgraph + category: Permissive spdx_license_key: LicenseRef-scancode-jgraph other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 JGraph Ltd nor the names of its contributors may be used + to endorse or promote products derived from this software without specific prior written permission. + + Termination for Patent Action. This License shall terminate + automatically, as will all licenses assigned to you by the copyright + holders of this software, and you may no longer exercise any of the + rights granted to you by this license as of the date you commence an + action, including a cross-claim or counterclaim, against the + copyright holders of this software or any licensee of this software + alleging that any part of the JGraph, JGraphX and/or mxGraph software + libraries infringe a patent. This termination provision shall not + apply for an action alleging patent infringement by combinations of + this software with other software or hardware. + + 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. json: jgraph.json - yml: jgraph.yml + yaml: jgraph.yml html: jgraph.html - text: jgraph.LICENSE + license: jgraph.LICENSE - license_key: jgraph-general + category: Proprietary Free spdx_license_key: LicenseRef-scancode-jgraph-general other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "JGraph General License\n\nJGRAPH GENERAL LICENSE STATEMENT AND LIMITED WARRANTY\nIMPORTANT\ + \ - READ CAREFULLY\n\nThis license statement and limited warranty constitutes a legal agreement\ + \ \n(\"License Agreement\") between you (either as an individual or a single entity) \n\ + and JGraph Ltd. for the software product (\"Software\") identified above, \nincluding any\ + \ software, media, and accompanying on-line or printed \ndocumentation.\n\nBY INSTALLING,\ + \ COPYING, OR OTHERWISE USING THE SOFTWARE, YOU AGREE TO BE BOUND \nBY ALL OF THE TERMS\ + \ AND CONDITIONS OF THE LICENSE AGREEMENT.\n\nUpon your acceptance of the terms and conditions\ + \ of the License Agreement, \nJGraph Ltd. grants you the right to use the Software in the\ + \ manner provided \nbelow.\n\nThis Software is owned by JGraph Ltd. and is protected by\ + \ copyright law and \ninternational copyright treaty. Therefore, you must treat this Software\ + \ like \nany other copyrighted material (e.g., a book), except that you may either make\ + \ \none copy of the Software solely for backup or archival purposes or transfer the \nSoftware\ + \ to a single hard disk provided you keep the original solely for backup \nor archival purposes.\n\ + \nYou may transfer the Software and documentation on a permanent basis provided \nyou retain\ + \ no copies and the recipient agrees to the terms of the License \nAgreement. Except as\ + \ provided in the License Agreement, you may not transfer, \nrent, lease, lend, copy, modify,\ + \ translate, sublicense, time-share or \nelectronically transmit or receive the Software,\ + \ media or documentation.\n\nIf you are not in receipt of the source code of the Software,\ + \ you acknowledge\nthat the Software is a confidential trade secret of JGraph Ltd. and therefore\n\ + you agree not to reverse engineer, decompile, or disassemble the Software.\n\nADDITIONAL\ + \ LICENSE TERMS FOR SOFTWARE\n\nJGraph Ltd. grants to you as an individual, a personal,\ + \ nonexclusive license \nto install and use the Software for the sole purposes of designing,\ + \ developing, \ntesting, and deploying application programs which you create. You may install\ + \ \ncopies of the Software on computers in a manner consistent with the type of \nlicense\ + \ purchased. A Single Developer License may be installed on a computer \nand be freely moved\ + \ from one computer to another, providing that you have \npurchased a number of Single Developer\ + \ Licenses equivalent to the maximum \npossible number of developers using that Software\ + \ concurrently. A Site \nDeveloper License may be installed on any number of computers and\ + \ be used by \nany number of developers at any time at one geographical location. A \ngeographical\ + \ location is defined as a building or site occupied by the \nemployees of one company or\ + \ organization.\nIf you are an entity, JGraph Ltd. grants you the right to designate \n\ + one individual within your organization (\"Named User\") to have the right to use \nthe\ + \ Software in the manner provided above, in the case of the Single Developer \nLicense.\n\ + \nGENERAL TERMS THAT APPLY TO COMPILED PROGRAMS AND REDISTRIBUTION\n\nYou may write and\ + \ compile (including byte-code compile) your own application \nprograms using the Software,\ + \ including any libraries and source code included \nfor such purpose with the Software.\ + \ You may reproduce and distribute, in \nexecutable form only, programs which you create\ + \ using the Software and \naccompanying Software libraries without additional license or\ + \ fees, subject to \nall of the conditions in this License Agreement.\n\nADDITIONAL REDISTRIBUTION\ + \ TERMS FOR SOFTWARE\n\nYou may not distribute any program or file which includes, is created\ + \ from, or \notherwise incorporates portions of the Software if such program or file is\ + \ a \ngeneral purpose development tool, library, and/or component, or is otherwise \ngenerally\ + \ competitive with or a substitute for any JGraph Ltd. product.\n\nSOURCE CODE\n\nIn addition\ + \ to the license and rights granted, JGraph Ltd. grants you the\nright to use and modify\ + \ the SOFTWARE source provided you purchased source code.\n\nYou may not distribute the\ + \ SOFTWARE source code, or any modified version or \nderivative work of the SOFTWARE source\ + \ code, in source code form.\n\nThe source code contained herein and in related files is\ + \ provided to the \nregistered developer for the purposes of education and troubleshooting.\ + \ Under \nno circumstances may any portion of the source code be distributed, disclosed\ + \ \nor otherwise made available to any third party without the express written \nconsent\ + \ of JGraph Ltd. \n\nUnder no circumstances may the source code be used in whole or in part,\ + \ as the \nbasis for creating a product that provides the same, or substantially the same,\ + \ \nfunctionality as any JGraph Ltd. product.\n\nThe registered developer acknowledges that\ + \ this source code contains valuable \nand proprietary trade secrets of JGraph Ltd. The\ + \ registered developer agrees \nto expend every effort to insure its confidentiality.\n\n\ + SOURCE CODE IS SOLD AS IS. JGRAPH LTD. DOES NOT PROVIDE ANY TECHNICAL SUPPORT \nFOR SOURCE\ + \ CODE.\n\nMARKETING\n\nJGraph Ltd is permitted to reference you as a user of the Software\ + \ in customer \nlists on the JGraph web-site, in presentations to clients and at trade events.\n\ + \nLIMITED WARRANTY\n\nJGraph Ltd. warrants that the Software, as updated and when properly\ + \ used, \nwill perform substantially in accordance with the accompanying documentation,\ + \ \nand the Software media will be free from defects in materials and workmanship, \nfor\ + \ a period of ninety (90) days from the date of receipt. Any implied \nwarranties on the\ + \ Software are limited to ninety (90) days. Some \nstates/jurisdictions do not allow limitations\ + \ on duration of an implied \nwarranty, so the above limitation may not apply to you.\n\n\ + This Limited Warranty is void if failure of the Software has resulted from \naccident, abuse,\ + \ or misapplication. Any replacement Software will be warranted \nfor the remainder of the\ + \ original warranty period or thirty (30) days, \nwhichever is longer. \n\nTO THE MAXIMUM\ + \ EXTENT PERMITTED BY APPLICABLE LAW, JGRAPH LTD. AND ITS \nSUPPLIERS DISCLAIM ALL OTHER\ + \ WARRANTIES AND CONDITIONS, EITHER EXPRESS OR \nIMPLIED, INCLUDING, BUT NOT LIMITED TO,\ + \ IMPLIED WARRANTIES OF MERCHANTABILITY, \nFITNESS FOR A PARTICULAR PURPOSE, TITLE, AND\ + \ NON-INFRINGEMENT, WITH REGARD TO \nTHE SOFTWARE, AND THE PROVISION OF OR FAILURE TO PROVIDE\ + \ SUPPORT SERVICES. THIS \nLIMITED WARRANTY GIVES YOU SPECIFIC LEGAL RIGHTS. YOU MAY HAVE\ + \ OTHERS, WHICH \nVARY FROM STATE/JURISDICTION TO STATE/JURISDICTION.\n\nLIMITATION OF LIABILITY\ + \ TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN \nNO EVENT SHALL JGRAPH LTD. OR\ + \ ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, \nINCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES\ + \ WHATSOEVER (INCLUDING, WITHOUT \nLIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS\ + \ INTERRUPTION, LOSS \nOF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT\ + \ OF THE USE OF \nOR INABILITY TO USE THE SOFTWARE PRODUCT OR THE PROVISION OF OR FAILURE\ + \ TO \nPROVIDE SUPPORT SERVICES, EVEN IF JGRAPH LTD. HAS BEEN ADVISED OF THE \nPOSSIBILITY\ + \ OF SUCH DAMAGES. BECAUSE SOME STATES AND JURISDICTIONS DO NOT \nALLOW THE EXCLUSION OR\ + \ LIMITATION OF LIABILITY, THE ABOVE LIMITATION MAY NOT \nAPPLY TO YOU.\n\nHIGH RISK ACTIVITIES\n\ + \nThe Software is not fault-tolerant and is not designed, manufactured or \nintended for\ + \ use or resale as on-line control equipment in hazardous \nenvironments requiring fail-safe\ + \ performance, such as in the operation of \nnuclear facilities, aircraft navigation or\ + \ communication systems, air traffic \ncontrol, direct life support machines, or weapons\ + \ systems, in which the failure \nof the Software could lead directly to death, personal\ + \ injury, or severe \nphysical or environmental damage (\"High Risk Activities\"). JGraph\ + \ Ltd. and\nits suppliers specifically disclaim any express or implied warranty of fitness\ + \ \nfor High Risk Activities.\n\nGENERAL PROVISIONS\n\nThis License Agreement may only be\ + \ modified in writing signed by you and\nJGraph Ltd. If any provision of this License Agreement\ + \ is found void or \nunenforceable, the remainder will remain valid and enforceable according\ + \ to its\nterms. If any remedy provided is determined to have failed for its essential\n\ + purpose, all limitations of liability and exclusions of damages set forth in \nthe Limited\ + \ Warranty shall remain in effect.\n\nGOVERNING LAW AND JURISDICTION\n\nThis Agreement shall\ + \ be subject to and governed by the _Law of England and \nWales_. Any dispute arising out\ + \ of or in connection with this Agreement shall \nbe exclusively dealt with by the courts\ + \ of England and Wales. This License \nAgreement gives you specific legal rights; you may\ + \ have others which vary from \nstate to state and from country to country. JGraph Ltd.\ + \ reserves all rights not \nspecifically granted in this License Agreement." json: jgraph-general.json - yml: jgraph-general.yml + yaml: jgraph-general.yml html: jgraph-general.html - text: jgraph-general.LICENSE + license: jgraph-general.LICENSE - license_key: jide-sla + category: Commercial spdx_license_key: LicenseRef-scancode-jide-sla other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "SOFTWARE LICENSE AGREEMENT FOR JIDE SOFTWARE, INC.'S PRODUCTS\n \nIMPORTANT - READ\ + \ CAREFULLY: This JIDE Software, Inc. (\"JIDE\") Software License Agreement (\"SLA\") is\ + \ a legal agreement between you (an individual developer or a company of software applications)\ + \ and JIDE for the JIDE software product accompanying this SLA, which includes computer\ + \ software and may include associated source code, media, printed materials, and \"on-line\"\ + \ or electronic documentation (\"SOFTWARE PRODUCT\"). By installing, copying, or otherwise\ + \ using the SOFTWARE PRODUCT, you agree to be bound by the terms of this SLA. If you do\ + \ not agree to the terms of this SLA, do not install, use, distribute in any manner, or\ + \ replicate in any manner, any part, file or portion of the SOFTWARE PRODUCT. \n \nThe SOFTWARE\ + \ PRODUCT is protected by copyright laws and international copyright treaties, as well as\ + \ other intellectual property laws and treaties. The SOFTWARE PRODUCT is licensed, not sold.\ + \ \n1.\tRIGOROUS ENFORCEMENT OF INTELLECTUAL PROPERTY RIGHTS. If the licensed right of use\ + \ for this SOFTWARE PRODUCT is purchased by you with any intent to reverse engineer, decompile,\ + \ create derivative works, and the exploitation or unauthorized transfer of, any JIDE intellectual\ + \ property and trade secrets, to include any exposed methods or source code where provided,\ + \ no licensed right of use shall exist, and any products created as a result shall be judged\ + \ illegal by definition of all applicable law. Any sale or resale of intellectual property\ + \ or created derivatives so obtained will be prosecuted to the fullest extent of all local,\ + \ federal and international law. \n2.\tGRANT OF LICENSE. This SLA, if legally executed as\ + \ defined herein, licenses and so grants you the following rights: \nA.\tSingle Developer\ + \ License. Single Developer License allows an individual developer to use APIs (\"Application\ + \ Programming Interface\") provided by SOFTWARE PRODUCT in any number of projects that he\ + \ or she is working on. A Single Developer License for the SOFTWARE PRODUCT may not be shared\ + \ or used by more than one individual developer. In a project that uses the SOFTWARE PRODUCT,\ + \ each individual developer on the project requires a separate Single Developer License\ + \ as long as they need to write code using JIDE API. \nB.\tSource Code License. In addition\ + \ to the license and rights granted above, JIDE grants you the right to use and modify the\ + \ JIDE source provided you licensed source code. Different from developer license, source\ + \ code license is licensed to a team. Each team only needs to purchase one copy of source\ + \ code license and share it among those developers who have their own Single Developer License.\n\ + I.\tJIDE shall retain all right, title and interest in and to all updates, modifications,\ + \ enhancements and derivative works, in whole or in part, of the JIDE Source Code created\ + \ by you, including all copyrights subsisting therein, to the extent such modifications,\ + \ enhancements or derivative works contain copyrightable code or expression derived from\ + \ the JIDE source code; provided, however, that JIDE grants to you a fully-paid, royalty\ + \ free license, to use copy and modify such updates, modifications, enhancements and derivative\ + \ works or copies thereof for use as authorized in this LICENSE. \nII.\tYou may not distribute\ + \ the JIDE source code, or any modified version or derivative work of the JIDE source code,\ + \ in source code form. \nIII.\tJIDE require all developers in your project who plan to access\ + \ JIDE source code signing on the source code license. As long as they signed, they become\ + \ registered developers. An alternative to this is to let a delegate signs source code license\ + \ as an organization. The delegate will be responsible for letting other developers who\ + \ plan to access the source code reviewing this license agreement first before releasing\ + \ them the access. \nIV.\tThe source code contained herein and in related files is provided\ + \ to the registered developer for the purposes of education and troubleshooting. Under no\ + \ circumstances may any portion of the source code be distributed, disclosed or otherwise\ + \ made available to any third party without the express written consent of JIDE. \nV.\t\ + Under no circumstances may the source code be used in whole or in part, as the basis for\ + \ creating a product that provides the same, or substantially the same, functionality as\ + \ any JIDE products. \nVI.\tThe registered developer acknowledges that this source code\ + \ contains valuable and proprietary trade secrets of JIDE. The registered developer agrees\ + \ to expend every effort to insure its confidentiality. For example, under no circumstances\ + \ may the registered developer allow to put the source code on an internal network where\ + \ he or she has no control.\nVII.\tDue to the insecurity of Java byte-code, if you plan\ + \ to use classes that built from the source code directly, you must agree to obfuscate the\ + \ classes before distributing it to your customers. \nVIII.\tSOURCE CODE IS SOLD AS IS.\ + \ JIDE DOES NOT PROVIDE ANY TECHNICAL SUPPORT FOR SOURCE CODE. \nC.\tAnnual Maintenance\ + \ Renewal. Maintenance includes both technical support and product updates. The initial\ + \ purchase of Single Developer License includes three month maintenance for free. After\ + \ that period, you need to purchase Annual Maintenance Renewal in order to continue receiving\ + \ technical support, product updates.\nD.\tDeployment License. There is no deployment license\ + \ fee unless the number of your application deployments is larger than 1000 times of the\ + \ number of developer licenses you purchased and you are unwilling to acknowledge using\ + \ JIDE. You can acknowledge using JIDE by showing JIDE name and/or logo in about dialog,\ + \ or splash screen or including this SLA in a license folder of your product release where\ + \ has the licenses for all 3rd party libraries you are using or any other places where users\ + \ can easily notice. If you are unwilling to acknowledge using JIDE, a one-time, perpetual\ + \ deployment license fee will be applicable.\n3.\tDESCRIPTION OF OTHER RIGHTS AND LIMITATIONS.\ + \ \n .\tNot for Resale Software. The SOFTWARE PRODUCT is labeled and provided as \"Not for\ + \ Resale\" or \"NFR\", then, notwithstanding other sections of this SLA, you may not resell,\ + \ distribute, or otherwise transfer for value or benefit in any manner, the SOFTWARE PRODUCT\ + \ or any derivative work using the SOFTWARE PRODUCT. You may not transfer, rent, lease,\ + \ lend, copy, modify, translate, sublicense, time-share or electronically transmit the SOFTWARE\ + \ PRODUCT, media or documentation. This also applies to any and all intermediate files,\ + \ source code, and compiled executables. \nA.\tExpose APIs. The SOFTWARE PRODUCT is a software\ + \ library. The exposed APIs is intended to be used by the licensed developers only. If such\ + \ an exposing of APIs is unavoidable in your application or intended due to the nature of\ + \ your application, please contact JIDE for a special agreement and is subject to extra\ + \ charge to get such permission. Exposing the APIs to non-licensed developers without JIDE\ + \ permission is strictly prohibited.\nB.\tLimitations on Reverse Engineering, Decompilation,\ + \ and Disassembly. You may not reverse engineer, decompile, create derivative works, modify,\ + \ translate, or disassemble the SOFTWARE PRODUCT, and only to the extent that such activity\ + \ is expressly permitted by applicable law notwithstanding this limitation. You agree to\ + \ take all reasonable, legal and appropriate measures to prohibit the illegal dissemination\ + \ of the SOFTWARE PRODUCT or any of its constituent parts and redistributables to the fullest\ + \ extent of all applicable local, US Codes and International Laws and Treaties regarding\ + \ anti-circumvention, including but not limited to, the Geneva and Berne World Intellectual\ + \ Property Organization (WIPO) Diplomatic Conferences. \nC.\tRental. You may not rent, lease,\ + \ or lend the SOFTWARE PRODUCT. \nD.\tSeparation of Components, Their Constituent Parts\ + \ and Redistributables. The SOFTWARE PRODUCT is licensed as a single product. The SOFTWARE\ + \ PRODUCT and its constituent parts and any provided redistributables may not be reverse\ + \ engineered, decompiled, disassembled, nor placed for distribution, sale, or resale as\ + \ individual creations by you or any individual not expressly given such permission by JIDE.\ + \ The provision of source code, if included with the SOFTWARE PRODUCT, does not constitute\ + \ transfer of any legal rights to such code, and resale or distribution of all or any portion\ + \ of all source code and intellectual property will be prosecuted to the fullest extent\ + \ of all applicable local, federal and international laws. All JIDE libraries, source code,\ + \ redistributables and other files remain JIDE's exclusive property. You may not distribute\ + \ any files, except those that JIDE has expressly designated as Redistributable. \nThe SOFTWARE\ + \ PRODUCT may include certain files (\"Redistributables\") intended for distribution by\ + \ you to the users of programs you create. Redistributables include jar file (or class files\ + \ if you intend to package all JIDE classes into your own jar). Developer Guide of SOFTWARE\ + \ PRODUCT (if any) or any other documents (such as javadoc) which are intended to teach\ + \ you how to use the SOFTWARE PRODUCT, and sample code are not considered as redistributables.\ + \ Subject to all of the terms and conditions in this SLA, you may reproduce and distribute\ + \ exact copies of the Redistributables, provided that such copies are made from the original\ + \ copy of the SOFTWARE PRODUCT or the copy transferred to a hard disk. Copies of Redistributables\ + \ may only be distributed with and for the sole purpose of executing application programs\ + \ permitted under this SLA that you have created using the SOFTWARE PRODUCT. You may reformat\ + \ or recombine the original distribution format of redistributables provided by JIDE. However\ + \ JIDE will not support or have any liability for such use. \nE.\tInstallation and Use.\ + \ The license granted in this SLA for you to create your own compiled programs and distribute\ + \ your programs and the Redistributables (if any), is subject to all of the following conditions:\ + \ \nI.\tAll copies of the programs you create must bear a valid copyright notice, either\ + \ your own or the JIDE copyright notice that appears on the SOFTWARE PRODUCT. \nII.\tYou\ + \ may not remove or alter any JIDE copyright, trademark or other proprietary rights notice\ + \ contained in any portion of JIDE libraries, source code, Redistributables or other files\ + \ that bear such a notice. \nIII.\tJIDE provides no warranty at all to any person, and you\ + \ will remain solely responsible to anyone receiving your programs for support, service,\ + \ upgrades, or technical or other assistance, and such recipients will have no right to\ + \ contact JIDE for such services or assistance. \nIV.\tYour programs containing the SOFTWARE\ + \ PRODUCT must be written using a licensed, registered copy of the SOFTWARE PRODUCT. \n\ + V.\tYour programs must add primary and substantial functionality, and may not be merely\ + \ a set or subset of any of the libraries, code, Redistributables or other files of the\ + \ SOFTWARE PRODUCT. \nA.\tSupport Services. JIDE may provide you with support services related\ + \ to the SOFTWARE PRODUCT (\"Support Services\"). Use of Support Services is governed by\ + \ JIDE policies and programs described in the user manual, in on-line documentation and/or\ + \ other JIDE provided materials. Any supplemental software code provided to you as part\ + \ of the Support Services shall be considered part of the SOFTWARE PRODUCT and subject to\ + \ the terms and conditions of this SLA. With respect to technical information you provide\ + \ to JIDE as part of the Support Services, JIDE may use such information for its business\ + \ purposes, including for product support and development. \nB.\tSoftware Transfer. You\ + \ may NOT permanently or temporarily transfer ANY of your rights under this SLA to any individual\ + \ or entity. Regardless of any modifications which you make and regardless of how you might\ + \ compile, link, and/or package your programs, under no circumstances may the libraries,\ + \ redistributables, and/or other files of the SOFTWARE PRODUCT (including any portions thereof)\ + \ be used for developing programs by anyone other than you. Only you as the licensed end\ + \ user have the right to use the libraries, redistributables, or other files of the SOFTWARE\ + \ PRODUCT (or any portions thereof) for developing programs created with the SOFTWARE PRODUCT.\ + \ In particular, you may not share copies of the Redistributables with other co-developers.\ + \ If you leave the company or go to another group where JIDE is no longer used, you may\ + \ transfer the license to another developer within the team. After the transfer, you are\ + \ no longer allowed to use SOFTWARE PRODUCT. \nC.\tTermination. Without prejudice to any\ + \ other rights or remedies, JIDE will terminate this SLA upon your failure to comply with\ + \ all the terms and conditions of this SLA. In such event, you must destroy all copies of\ + \ the SOFTWARE PRODUCT and all of its component parts including any related documentation,\ + \ and must remove ANY and ALL use of such technology with the next generally available release\ + \ from any applications using technology contained in the SOFTWARE PRODUCT developed by\ + \ you, whether in native, altered or compiled state. \nD.\tTime Limitation: There is no\ + \ time limitation on using the SOFTWARE PRODUCT as long as you don't violate this license\ + \ agreement.\n4.\tUPGRADES. If the SOFTWARE PRODUCT is labeled as an upgrade, you must be\ + \ properly licensed to use the SOFTWARE PRODUCT identified by JIDE as being eligible for\ + \ the upgrade in order to use the SOFTWARE PRODUCT. A SOFTWARE PRODUCT labeled as an upgrade\ + \ replaces and/or supplements the SOFTWARE PRODUCT that formed the basis for your eligibility\ + \ for the upgrade, and together constitute a single SOFTWARE PRODUCT. You may use the resulting\ + \ upgraded SOFTWARE PRODUCT only in accordance with all the terms of this SLA. \n5.\tCOPYRIGHT.\ + \ All title and copyrights in and to the SOFTWARE PRODUCT (including but not limited to\ + \ any images, demos, source code, intermediate files, packages, photographs, animations,\ + \ video, audio, music, text, and \"applets\" incorporated into the SOFTWARE PRODUCT), the\ + \ accompanying printed materials, and any copies of the SOFTWARE PRODUCT are owned by JIDE\ + \ or its subsidiaries. The SOFTWARE PRODUCT is protected by copyright laws and international\ + \ treaty provisions. Therefore, you must treat the SOFTWARE PRODUCT like any other copyrighted\ + \ material except that you may install the SOFTWARE PRODUCT for use by you, a single developer.\ + \ You may not copy any printed materials accompanying the SOFTWARE PRODUCT. \n6.\tGENERAL\ + \ PROVISIONS. This SLA may only be modified in writing signed by you and an authorized officer\ + \ of JIDE. If any provision of this SLA is found void or unenforceable, the remainder will\ + \ remain valid and enforceable according to its terms. \n7.\tMISCELLANEOUS. If you acquired\ + \ this product in the United States, this SLA is governed by the laws of the State of CA.\ + \ \nIf this SOFTWARE PRODUCT was acquired outside the United States, then you, agree and\ + \ ascend to the adherence to all applicable international treaties regarding copyright and\ + \ intellectual property rights which shall also apply. In addition, you agree that any local\ + \ law(s) to the benefit and protection of JIDE ownership of, and interest in, its intellectual\ + \ property and right of recovery for damages thereto will also apply. \nShould you have\ + \ any questions concerning this SLA, or if you desire to contact JIDE for any reason, please\ + \ contact us via our support web pages at http://www.jidesoft.com/. \n8.\tNO WARRANTIES.\ + \ JIDE EXPRESSLY DISCLAIMS ANY WARRANTY FOR THE SOFTWARE PRODUCT. THE PRODUCT AND ANY RELATED\ + \ DOCUMENTATION IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED,\ + \ INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR\ + \ A PARTICULAR PURPOSE, OR NONINFRINGEMENT. THE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE\ + \ OF THE PRODUCT REMAINS WITH YOU. \n9.\tLIMITATION OF LIABILITY. TO THE MAXIMUM EXTENT\ + \ PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL JIDE OR ITS SUPPLIERS BE LIABLE FOR ANY\ + \ SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT\ + \ LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS\ + \ INFORMATION, ANY OTHER PECUNIARY LOSS, ATTORNEY FEES AND COURT COSTS) ARISING OUT OF THE\ + \ USE OF OR INABILITY TO USE THE SOFTWARE PRODUCT OR THE PROVISION OF OR FAILURE TO PROVIDE\ + \ SUPPORT SERVICES, EVEN IF JIDE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \n\ + \nFor CUSTOMER\t For JIDE Software, Inc.\n\t\nSignature:\t\ + \ Signature:\nName\t \ + \ Name:\nTitle:\t \ + \ Title:\nDate:\t Date:" json: jide-sla.json - yml: jide-sla.yml + yaml: jide-sla.yml html: jide-sla.html - text: jide-sla.LICENSE + license: jide-sla.LICENSE - license_key: jj2000 + category: Free Restricted spdx_license_key: LicenseRef-scancode-jj2000 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "This software module was originally developed by Raphaël Grosbois and\nDiego Santa\ + \ Cruz (Swiss Federal Institute of Technology-EPFL); Joel\nAskelöf (Ericsson Radio Systems\ + \ AB); and Bertrand Berthelot, David\nBouchard, Félix Henry, Gerard Mozelle and Patrice\ + \ Onno (Canon Research\nCentre France S.A) in the course of development of the JPEG2000\n\ + standard as specified by ISO/IEC 15444 (JPEG 2000 Standard). \n\nThis software module is\ + \ an implementation of a part of the JPEG 2000 Standard. \n\nSwiss Federal Institute of\ + \ Technology-EPFL, Ericsson Radio\nSystems AB and Canon Research Centre France S.A (collectively\ + \ JJ2000\nPartners) agree not to assert against ISO/IEC and users of the JPEG\n2000 Standard\ + \ (Users) any of their rights under the copyright, not\nincluding other intellectual property\ + \ rights, for this software module\nwith respect to the usage by ISO/IEC and Users of this\ + \ software module\nor modifications thereof for use in hardware or software products\nclaiming\ + \ conformance to the JPEG 2000 Standard. Those intending to use\nthis software module in\ + \ hardware or software products are advised that\ntheir use may infringe existing patents.\ + \ The original developers of\nthis software module, JJ2000 Partners and ISO/IEC assume no\ + \ liability\nfor use of this software module or modifications thereof. No license\nor right\ + \ to this software module is granted for non JPEG 2000 Standard\nconforming products. JJ2000\ + \ Partners have full right to use this\nsoftware module for his/her own purpose, assign\ + \ or donate this\nsoftware module to any third party and to inhibit third parties from\n\ + using this software module for non JPEG 2000 Standard conforming\nproducts. This copyright\ + \ notice must be included in all copies or\nderivative works of this software module." json: jj2000.json - yml: jj2000.yml + yaml: jj2000.yml html: jj2000.html - text: jj2000.LICENSE + license: jj2000.LICENSE - license_key: jmagnetic + category: Proprietary Free spdx_license_key: LicenseRef-scancode-jmagnetic other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "JMAGNETIC Licence Agreement\n\nThis is a legal agreement between you and Stefan Meier\ + \ covering your use of JMagnetic. Be sure to read the following agreement before using the\ + \ software. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE\ + \ AND DESTROY ALL COPIES OF IT.\n\nThe JMagnetic application, the JMagnetic class package,\ + \ all accompanying documentation and source code (collectively referred to as \"the JMagnetic\ + \ Software\") are copyright (c) 1998-99, Stefan Meier. The JMagnetic Software may be redistributed\ + \ freely under the following conditions:\n(1) That no profit is made from the sale or distribution\ + \ of the JMagnetic Software\n(2) That the source code of the JMagnetic Software, or any\ + \ portion thereof, not be modified in any way or incorporated into any other software without\ + \ pemission. \n(3) That this legal statement be distributed unmodified with the JMagnetic\ + \ Software, and that Stefan Meier be credited for its authorship.\nWith that said, anyone\ + \ who wishes to include any of my code in their own or who wishes to base a new application\ + \ on this code is encouraged to contact me. Commercial usage or redistribution of the JMagnetic\ + \ software is strictly prohibited. Inquiries on commercial distribution of Magnetic Scrolls\ + \ related products should be directly send to Ken Gordon.\n\nThe JMagnetic software and\ + \ related documentation are provided \"AS IS\" and without warranty of any kind and the\ + \ author expressly disclaims all other warranties, express or implied, including, but not\ + \ limited to, the implied warranties of merchantability and fitness for a particular purpose.\ + \ Under no circumstances shall Stefan Meier be liable for any incidental, special or consequential\ + \ damages that result from the use or inability to use the software or related documentation,\ + \ even if Stefan Meier has been advised of the possibility of such damages." json: jmagnetic.json - yml: jmagnetic.yml + yaml: jmagnetic.yml html: jmagnetic.html - text: jmagnetic.LICENSE + license: jmagnetic.LICENSE - license_key: josl-1.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-josl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Jabber Open Source License + Version 1.0 + + This Jabber Open Source License (the "License") applies to Jabber Server and related software products as well as any updates or maintenance releases of that software ("Jabber Products") that are distributed by Jabber.Com, Inc. ("Licensor"). Any Jabber Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product. + + Preamble + + This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble. + + This License complies with the Open Source Definition and has been approved by Open Source Initiative. Software distributed under this License may be marked as "OSI Certified Open Source Software." + + This License provides that: + + 1. You may use, sell or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required. + + 2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.) + + 3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.) + + 4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others. + + 5. You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages. + + 6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for the Source Code. + + 7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate. + + You may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product. + + Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications. + + New versions of this License may be published from time to time. You may choose to continue to use the license terms in this version of the License or those from the new version. However, only the Licensor has the right to change the License terms as they apply to the Licensed Product. + + This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License. + + License Terms + + 1. Grant of License From Licensor. Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + + a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + + b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + + 2. Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + 3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein.No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. + + 4. Your Obligations Regarding Distribution. + + a. Application of This License to Your Modifications.As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder.However, you may include an additional document offering the additional rights described in Section 4(e). + + b. Availability of Source Code. You must make available, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of said Licensed Product or Modifications has been made available. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + + c. Description of Modifications. You must cause any Modifications that you create or to which you contribute, and which you distribute, to contain a file documenting the additions, changes or deletions you made to create or contribute to those Modifications, and the dates of any such additions, changes or deletions. You must include a prominent statement that the Modifications are derived, directly or indirectly, from the Licensed Product and include the names of the Licensor and any Contributor to the Licensed Product in (i) the Source Code and (ii) in any notice displayed by a version of the Licensed Product you distribute or in related documentation in which you describe the origin or ownership of the Licensed Product.You may not modify or delete any preexisting copyright notices in the Licensed Product. + + d. Intellectual Property Matters. + + i. Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained. + + ii. Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file. + + iii. Representations. You represent that, except as disclosed pursuant to 4(d)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License. + + e. Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product.If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product.However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer. + + f. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(e) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), (iii) you retain all existing copyright notices in the Licensed Product, and (iv) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. + + g. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto. + + 5. Inability to Comply Due to Statute or Regulation.If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect.Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it. + + 6. Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference. + + 7. Versions of This License. + + a. New Versions. Licensor may publish from time to time revised and/or new versions of the License. + + b. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version. You may also choose to use such Licensed Product under the terms of any subsequent version of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License. + + c. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor. + + 8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE.NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 9. Termination. + + a. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within thirty (30) days of becoming aware of the breach. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. + + b. Termination Upon Assertion of Patent Infringement.If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period. + + c. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license. + + d. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination. + + 10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + + 11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + + 12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein. + + 13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that any litigation relating to this license shall be subject to the jurisdiction of the Federal Courts of the Northern District of California or the Superior Court of the County of Santa Clara, California (as appropriate), with venue lying in Santa Clara County, California, with the losing party responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. You and Licensor expressly waive any rights to a jury trial in any litigation concerning Licensed Product or this License. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. + + 14. Definition of You in This License.You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, control means (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. + + 15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses. + + Contributor:Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2) + + Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b)) + + License:This Jabber Open Source License. (See first paragraph of License) + + Licensed Product:Any Jabber Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) + + Licensor:Jabber.Com, Inc. (See first paragraph of License) + + Licensed Product:Any Jabber Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) + + Licensor:Jabber.Com, Inc. (See first paragraph of License) + + Modifications:Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2) + + Notice:The notice contained in Exhibit A. (See Section 4(e)) + + Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a)) + + You:This term is defined in Section 14 of this License. + + EXHIBIT A + + The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any nereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions. + + License: + + The contents of this file are subject to the Jabber Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.jabber.com/license/ or at http://www.opensource.org/. + + Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. + + Copyrights: + + Portions created by or assigned to Jabber.com, Inc. are Copyright (c) 1999-2000 Jabber.com, Inc. All Rights Reserved. Contact information for Jabber.com, Inc. is available at http://www.jabber.com/. + + Portions Copyright (c) 1998-1999 Jeremie Miller. + + Acknowledgements + + Special thanks to the Jabber Open Source Contributors for their suggestions and support of Jabber. + + Modifications: json: josl-1.0.json - yml: josl-1.0.yml + yaml: josl-1.0.yml html: josl-1.0.html - text: josl-1.0.LICENSE + license: josl-1.0.LICENSE - license_key: jpnic-idnkit + category: Permissive spdx_license_key: JPNIC other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "By using this file, you agree to the terms and conditions set forth bellow.\n\n \ + \ LICENSE TERMS AND CONDITIONS \n\nThe following License Terms and Conditions\ + \ apply, unless a different\nlicense is obtained from Japan Network Information Center (\"\ + JPNIC\"),\na Japanese association, Kokusai-Kougyou-Kanda Bldg 6F, 2-3-4 Uchi-Kanda,\nChiyoda-ku,\ + \ Tokyo 101-0047, Japan.\n\n1. Use, Modification and Redistribution (including distribution\ + \ of any\n modified or derived work) in source and/or binary forms is permitted\n under\ + \ this License Terms and Conditions.\n\n2. Redistribution of source code must retain the\ + \ copyright notices as they\n appear in each source code file, this License Terms and\ + \ Conditions.\n\n3. Redistribution in binary form must reproduce the Copyright Notice,\n\ + \ this License Terms and Conditions, in the documentation and/or other\n materials provided\ + \ with the distribution. For the purposes of binary\n distribution the \"Copyright Notice\"\ + \ refers to the following language:\n \"Copyright (c) 2000-2002 Japan Network Information\ + \ Center. All rights\n reserved.\"\n\n4. The name of JPNIC may not be used to endorse\ + \ or promote products\n derived from this Software without specific prior written approval\ + \ of\n JPNIC.\n\n5. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY JPNIC\n\ + \ \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO,\ + \ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE\ + \ DISCLAIMED. IN NO EVENT SHALL JPNIC BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL,\ + \ SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\ + \ OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION)\ + \ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY,\ + \ OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\ + \ SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGES." json: jpnic-idnkit.json - yml: jpnic-idnkit.yml + yaml: jpnic-idnkit.yml html: jpnic-idnkit.html - text: jpnic-idnkit.LICENSE + license: jpnic-idnkit.LICENSE - license_key: jpnic-mdnkit + category: Permissive spdx_license_key: LicenseRef-scancode-jpnic-mdnkit other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "By using this file, you agree to the terms and conditions set forth bellow.\n\n\t\t\ + \tLICENSE TERMS AND CONDITIONS \n\nThe following License Terms and Conditions apply, unless\ + \ a different\nlicense is obtained from Japan Network Information Center (\"JPNIC\"),\n\ + a Japanese association, Kokusai-Kougyou-Kanda Bldg 6F, 2-3-4 Uchi-Kanda,\nChiyoda-ku, Tokyo\ + \ 101-0047, Japan.\n\n1. Use, Modification and Redistribution (including distribution of\ + \ any\n modified or derived work) in source and/or binary forms is permitted\n under\ + \ this License Terms and Conditions.\n\n2. Redistribution of source code must retain the\ + \ copyright notices as they\n appear in each source code file, this License Terms and\ + \ Conditions.\n\n3. Redistribution in binary form must reproduce the Copyright Notice,\n\ + \ this License Terms and Conditions, in the documentation and/or other\n materials provided\ + \ with the distribution. For the purposes of binary\n distribution the \"Copyright Notice\"\ + \ refers to the following language:\n \"Copyright (c) Japan Network Information Center.\ + \ All rights reserved.\"\n\n4. Neither the name of JPNIC may be used to endorse or promote\ + \ products\n derived from this Software without specific prior written approval of\n \ + \ JPNIC.\n\n5. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY JPNIC\n\ + \ \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO,\ + \ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE\ + \ DISCLAIMED. IN NO EVENT SHALL JPNIC BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL,\ + \ SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\ + \ OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION)\ + \ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY,\ + \ OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\ + \ SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n6. Indemnification\ + \ by Licensee\n Any person or entities using and/or redistributing this Software under\n\ + \ this License Terms and Conditions shall defend indemnify and hold\n harmless JPNIC\ + \ from and against any and all judgements damages,\n expenses, settlement liabilities,\ + \ cost and other liabilities of any\n kind as a result of use and redistribution of this\ + \ Software or any\n claim, suite, action, litigation or proceeding by any third party\n\ + \ arising out of or relates to this License Terms and Conditions.\n\n7. Governing Law,\ + \ Jurisdiction and Venue\n This License Terms and Conditions shall be governed by and\ + \ and\n construed in accordance with the law of Japan. Any person or entities\n using\ + \ and/or redistributing this Software under this License Terms and\n Conditions hereby\ + \ agrees and consent to the personal and exclusive\n jurisdiction and venue of Tokyo District\ + \ Court of Japan." json: jpnic-mdnkit.json - yml: jpnic-mdnkit.yml + yaml: jpnic-mdnkit.yml html: jpnic-mdnkit.html - text: jpnic-mdnkit.LICENSE + license: jpnic-mdnkit.LICENSE - license_key: jprs-oscl-1.1 + category: Free Restricted spdx_license_key: LicenseRef-scancode-jprs-oscl-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + TERMS AND CONDITIONS + FOR + OPEN SOURCE CODE LICENSE + Version 1.1 + + Japan Registry Services Co., Ltd. ("JPRS"), a Japanese corporation + having its head office at Chiyoda First Bldg. East 13F 3-8-1 Nishi-Kanda, + Chiyoda-ku, Tokyo 101-0065, Japan, grants you the license for open source + code specified in EXHIBIT A the "Code" subject to the following Terms and + Conditions ("OSCL"). + + 1. License Grant. + JPRS hereby grants you a worldwide, royalty-free, non-exclusive + license, subject to third party intellectual property claims: + (a) under intellectual property rights (other than patent or + trademark) licensable by JPRS to use, reproduce, modify, display, + perform, sublicense and distribute the Code (or portions thereof) + with or without modifications, and/or as part of a derivative work; + or + (b) under claims of the infringement through the making, using, + offering to sell and/or otherwise disposing the JPRS Revised Code + (or portions thereof); + (c) the licenses granted in this Section 1(a) and (b) are effective on + the date JPRS first distributes the Code to you under the terms of + this OSCL; + (d) Notwithstanding the above stated terms, no patent license is + granted: + 1) for a code that you delete from the Code; + 2) separate from the Code; or + 3) for infringements caused by: + i) modification of the Code; or + ii) combination of the Code with other software or devices. + + 2. Consents. + You agree that: + (a) you must include a copy of this OSCL and the notice set forth in + EXHIBIT A with every copy of the Code you distribute; + (b) you must include a copy of this OSCL and the notice set forth in + EXHIBIT A with every copy of binary form of the Code in the + documentation and/or other materials provided with the distribution; + (c) you may not offer or impose any terms on any source code version + that alters or restricts the applicable version of this OSCL or + the recipients' rights hereunder. + (d) If the terms and conditions are set forth in EXHIBIT A, you must + comply with those terms and conditions. + + 3. Proprietary Information. + All trademarks, service marks, patents, copyrights, trade secrets, and + other proprietary rights in or related to the Code are and will remain + the exclusive property of JPRS or its licensors, whether or not + specifically recognized or perfected under local law except specified + in this OSCL; provided however you agree and understand that the JPRS + name may not be used to endorse or promote this Code without prior + written approval of JPRS. + + 4. WARRANTY DISCLAIMER. + JPRS MAKES NO REPRESENTATIONS AND WARRANTIES REGARDING THE USE OF THE + CODE, NOR DOES JPRS MAKE ANY REPRESENTATIONS THAT THE CODE WILL BECOME + COMMERCIALLY AVAILABLE. JPRS, ITS AFFILIATES, AND ITS SUPPLIERS DO NOT + WARRANT OR REPRESENT THAT THE CODE IS FREE OF ERRORS OR THAT THE CODE + IS SUITABLE FOR TRANSLATION AND/OR LOCALIZATION. THE CODE IS PROVIDED + ON AN "AS IS" BASIS AND JPRS AND ITS SUPPLIERS HAVE NO OBLIGATION TO + CORRECT ERRORS OR TO SUPPORT THE CODE UNDER THIS OSCL FOR ANY REASON. + TO THE FULL EXTENT PERMITTED BY LAW, ALL OBLIGATIONS ARE HEREBY + EXCLUDED WHETHER EXPRESS, STATUTORY OR IMPLIED UNDER LAW, COURSE OF + DEALING, CUSTOM, TRADE USAGE, ORAL OR WRITTEN STATEMENT OR OTHERWISE, + INCLUDING BUT NOT LIMITED TO ANY IMPLIED WARRANTIES OF MERCHANTABILITY + OR FITNESS FOR A PARTICULAR PURPOSE CONCERNING THE CODE. + + 5. NO LIABILITY. + UNDER NO CIRCUMSTANCES SHALL JPRS AND/OR ITS AFFILIATES, LICENSORS, OR + REPRESENTATIVES BE LIABLE FOR ANY DAMAGES INCLUDING BUT NOT LIMITED TO + CONSEQUENTIAL, INDIRECT, SPECIAL, PUNITIVE OR INCIDENTAL DAMAGES, + WHETHER FORESEEABLE OR UNFORESEEABLE, BASED ON YOUR CLAIMS, INCLUDING, + BUT NOT LIMITED TO, CLAIMS FOR LOSS OF DATA, GOODWILL, PROFITS, USE OF + MONEY, INTERRUPTION IN USE OR AVAILABILITY OF DATA, STOPPAGE, IMPLIED + WARRANTY, BREACH OF CONTRACT, MISREPRESENTATION, NEGLIGENCE, STRICT + LIABILITY IN TORT, OR OTHERWISE. + + 6. Indemnification. + You hereby agree to indemnify, defend, and hold harmless JPRS for any + liability incurred by JRPS due to your terms of warranty, support, + indemnity, or liability offered by you to any third party. + + 7. Termination. + 7.1 This OSCL shall be automatically terminated in the events that: + (a) You fail to comply with the terms herein and fail to cure such + breach within 30 days of becoming aware of the breach; + (b) You initiate patent or copyright infringement litigation against + any party (including a cross-claim or counterclaim in a lawsuit) + alleging that the Code constitutes a direct or indirect patent or + copyright infringement, in such case, this OSCL to you shall + terminate as of the date such litigation is filed; + 7.2 In the event of termination under Sections 7.1(a) or 7.1(b) above, + all end user license agreements (excluding distributors and + resellers) which have been validly granted by You or any distributor + hereunder prior to termination shall survive termination. + + + 8. General. + This OSCL shall be governed by, and construed and enforced in + accordance with, the laws of Japan. Any litigation or arbitration + between the parties shall be conducted exclusively in Tokyo, Japan + except written consent of JPRS provides other venue. + + + EXHIBIT A + + The original open source code of idnkit-2 is idnkit-1.0 developed and + conceived by Japan Network Information Center ("JPNIC"), a Japanese + association, Kokusai-Kougyou-Kanda Bldg 6F, 2-3-4 Uchi-Kanda, + Chiyoda-ku, Tokyo 101-0047, Japan, and JPRS modifies above original code + under following Terms and Conditions set forth by JPNIC. + + JPNIC + + Copyright (c) 2000-2002 Japan Network Information Center. All rights reserved. + + By using this file, you agree to the terms and conditions set forth bellow. + + LICENSE TERMS AND CONDITIONS + + The following License Terms and Conditions apply, unless a different + license is obtained from Japan Network Information Center ("JPNIC"), + a Japanese association, Kokusai-Kougyou-Kanda Bldg 6F, 2-3-4 Uchi-Kanda, + Chiyoda-ku, Tokyo 101-0047, Japan. + + 1. Use, Modification and Redistribution (including distribution of any + modified or derived work) in source and/or binary forms is permitted + under this License Terms and Conditions. + + 2. Redistribution of source code must retain the copyright notices as they + appear in each source code file, this License Terms and Conditions. + + 3. Redistribution in binary form must reproduce the Copyright Notice, + this License Terms and Conditions, in the documentation and/or other + materials provided with the distribution. For the purposes of binary + distribution the "Copyright Notice" refers to the following language: + "Copyright (c) 2000-2002 Japan Network Information Center. All rights reserved." + + 4. The name of JPNIC may not be used to endorse or promote products + derived from this Software without specific prior written approval of + JPNIC. + + 5. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY JPNIC + "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 JPNIC 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 DAMAGES. + + + JPRS Public License Notice + For + idnkit-2. + + The contents of this file are subject to the Terms and Conditions for + the Open Source Code License (the "OSCL"). You may not use this file + except in compliance with above terms and conditions. A copy of the OSCL + is available at . + The JPRS Revised Code is idnkit-2. + The Initial Developer of the JPRS Revised Code is Japan Network + Information Center ("JPNIC"), a Japanese association, + Kokusai-Kougyou-Kanda Bldg 6F, 2-3-4 Uchi-Kanda, Chiyoda-ku, Tokyo + 101-0047, Japan. + "Copyright (c) 2000-2002 Japan Network Information Center. All rights reserved." + "Copyright (c) 2010-2012 Japan Registry Services Co., Ltd. All rights reserved." + Contributor(s): ______________________________________. + + If you wish to allow use of your version of this file only under the + above License(s) and not to allow others to use your version of this + file, please indicate your decision by deleting the relevant provisions + above and replacing them with the notice and other provisions required + by the above License(s). If you do not delete the relevant provisions, + a recipient may use your version of this file under either the above + License(s). json: jprs-oscl-1.1.json - yml: jprs-oscl-1.1.yml + yaml: jprs-oscl-1.1.yml html: jprs-oscl-1.1.html - text: jprs-oscl-1.1.LICENSE + license: jprs-oscl-1.1.LICENSE - license_key: jpython-1.1 + category: Permissive spdx_license_key: LicenseRef-scancode-jpython-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "JPython version 1.1.x\n \n 1. This LICENSE AGREEMENT is between the Corporation for\ + \ National Research\n Initiatives, having an office at 1895 Preston White Drive, Reston,\ + \ VA\n 20191 (\"CNRI\"), and the Individual or Organization (\"Licensee\")\n accessing\ + \ and using JPython version 1.1.x in source or binary form and\n its associated documentation\ + \ as provided herein (\"Software\").\n \n 2. Subject to the terms and conditions of this\ + \ License Agreement, CNRI\n hereby grants Licensee a non-exclusive, non-transferable,\ + \ royalty-free,\n world-wide license to reproduce, analyze, test, perform and/or display\n\ + \ publicly, prepare derivative works, distribute, and otherwise use the\n Software\ + \ alone or in any derivative version, provided, however, that\n CNRI's License Agreement\ + \ and CNRI's notice of copyright, i.e.,\n \"Copyright (c) 1996-1999 Corporation for\ + \ National Research Initiatives;\n All Rights Reserved\" are both retained in the Software,\ + \ alone or in any\n derivative version prepared by Licensee.\n \n Alternatively,\ + \ in lieu of CNRI's License Agreement, Licensee may\n substitute the following text\ + \ (omitting the quotes), provided, however,\n that such text is displayed prominently\ + \ in the Software alone or in any\n derivative version prepared by Licensee: \"JPython\ + \ (Version 1.1.x) is\n made available subject to the terms and conditions in CNRI's\ + \ License\n Agreement. This Agreement may be located on the Internet using the\n \ + \ following unique, persistent identifier (known as a handle):\n 1895.22/1006. The\ + \ License may also be obtained from a proxy server on\n the Web using the following\ + \ URL: http://hdl.handle.net/1895.22/1006.\"\n \n 3. In the event Licensee prepares a derivative\ + \ work that is based on or\n incorporates the Software or any part thereof, and wants\ + \ to make the\n derivative work available to the public as provided herein, then\n \ + \ Licensee hereby agrees to indicate in any such work, in a prominently\n visible\ + \ way, the nature of the modifications made to CNRI's Software.\n \n 4. Licensee may not\ + \ use CNRI trademarks or trade name, including JPython\n or CNRI, in a trademark sense\ + \ to endorse or promote products or\n services of Licensee, or any third party. Licensee\ + \ may use the mark\n JPython in connection with Licensee's derivative versions that\ + \ are\n based on or incorporate the Software, but only in the form\n \"JPython-based\ + \ ,\" or equivalent.\n \n 5. CNRI is making the Software available to Licensee on an \"\ + AS IS\" basis.\n CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY\ + \ WAY\n OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY\n REPRESENTATION\ + \ OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY\n PARTICULAR PURPOSE OR THAT THE\ + \ USE OF THE SOFTWARE WILL NOT INFRINGE\n ANY THIRD PARTY RIGHTS.\n \n 6. CNRI SHALL\ + \ NOT BE LIABLE TO LICENSEE OR OTHER USERS OF THE SOFTWARE FOR\n ANY INCIDENTAL, SPECIAL\ + \ OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF\n USING, MODIFYING OR DISTRIBUTING\ + \ THE SOFTWARE, OR ANY DERIVATIVE\n THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\ + \ SOME STATES DO NOT\n ALLOW THE LIMITATION OR EXCLUSION OF LIABILITY SO THE ABOVE DISCLAIMER\n\ + \ MAY NOT APPLY TO LICENSEE.\n \n 7. This License Agreement may be terminated by CNRI\ + \ (i) immediately upon\n written notice from CNRI of any material breach by the Licensee,\ + \ if the\n nature of the breach is such that it cannot be promptly remedied; or\n \ + \ (ii) sixty (60) days following notice from CNRI to Licensee of a\n material remediable\ + \ breach, if Licensee has not remedied such breach\n within that sixty-day period.\n\ + \ \n 8. This License Agreement shall be governed by and interpreted in all\n respects\ + \ by the law of the State of Virginia, excluding conflict of law\n provisions. Nothing\ + \ in this Agreement shall be deemed to create any\n relationship of agency, partnership,\ + \ or joint venture between CNRI and\n Licensee.\n \n 9. By clicking on the \"ACCEPT\"\ + \ button where indicated, or by installing,\n copying or otherwise using the Software,\ + \ Licensee agrees to be bound by\n the terms and conditions of this License Agreement." json: jpython-1.1.json - yml: jpython-1.1.yml + yaml: jpython-1.1.yml html: jpython-1.1.html - text: jpython-1.1.LICENSE + license: jpython-1.1.LICENSE - license_key: jquery-pd + category: Public Domain spdx_license_key: LicenseRef-scancode-jquery-pd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + jQuery Public Domain License + + NO COPYRIGHTS OR LICENSES. DO WHAT YOU LIKE. This is the new jQuery Tools license. Copyrights and patents are evil. They block the natural progress of development. We all know it: if people start sharing instead of owning the world would be a better place. Today money is king. This results in closed systems and poor quality and in many cases people are even seriously exploited. For businessmen nothing is enough. json: jquery-pd.json - yml: jquery-pd.yml + yaml: jquery-pd.yml html: jquery-pd.html - text: jquery-pd.LICENSE + license: jquery-pd.LICENSE - license_key: jrunner + category: Proprietary Free spdx_license_key: LicenseRef-scancode-jrunner other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "JRunner Software License\nhttps://www.altera.com/download/licensing/lic-jrunner.html\ + \ \n\nSOFTWARE DISTRIBUTION AGREEMENT\n\nTHE JRunner SOFTWARE PROGRAM AND EXECUTABLE FILES,\ + \ AND RELATED SPECIFICATION DOCUMENTATION (\"PROGRAMS\") (AVAILABLE FOR DOWNLOADING FROM\ + \ THIS WEB SITE OR ENCLOSED WITH THE COMPUTER DISK ACCOMPANYING THIS NOTICE), ARE MADE FREELY\ + \ AVAILABLE FOR USE BY ANYONE, SUBJECT TO CERTAIN TERMS AND CONDITIONS SET FORTH BELOW.\ + \ PLEASE READ THESE TERMS AND CONDITIONS CAREFULLY BEFORE DOWNLOADING OR USING THE PROGRAMS.\ + \ BY DOWNLOADING OR USING THE PROGRAMS YOU INDICATE YOUR ACCEPTANCE OF THESE TERMS AND CONDITIONS,\ + \ WHICH CONSTITUTE THE LICENSE AGREEMENT (the \"AGREEMENT\") BETWEEN YOU AND ALTERA CORPORATION\ + \ (\"ALTERA\") WITH REGARD TO THE PROGRAMS. IN THE EVENT THAT YOU DO NOT AGREE WITH ANY\ + \ OF THESE TERMS AND CONDITIONS, DO NOT DOWNLOAD THE PROGRAMS OR PROMPTLY RETURN THE PROGRAMS\ + \ TO ALTERA UNUSED.\n\nLicense Terms\n\nSubject to the terms and conditions of this Agreement,\ + \ Altera grants to you a worldwide, nonexclusive, perpetual license (with the right to grant\ + \ sublicenses, and authorize sublicensees to sublicense further) to use, copy, prepare derivative\ + \ works based on, and distribute the Programs and derivative works thereof, provided that\ + \ any distribution or sublicense is subject to the same terms and conditions that you use\ + \ for distribution of your own comparable software products. Any copies of the Programs\ + \ or derivative works thereof will continue to be subject to the terms and conditions of\ + \ this Agreement. You must include in any copies of the Programs or derivative works thereof\ + \ any trademark, copyright, and other proprietary rights notices included in the Programs\ + \ by Altera.\n\nDisclaimer of Warranties and Remedies\n\nNO WARRANTIES, EITHER EXPRESS OR\ + \ IMPLIED, ARE MADE WITH RESPECT TO THE PROGRAMS, INCLUDING, BUT NOT LIMITED TO, IMPLIED\ + \ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NONINFRINGEMENT,\ + \ AND ALTERA EXPRESSLY DISCLAIM ALL WARRANTIES NOT STATED HEREIN. YOU ASSUME THE ENTIRE\ + \ RISK AS TO THE QUALITY, USE, AND PERFORMANCE OF THE PROGRAMS. SHOULD THE PROGRAMS PROVE\ + \ DEFECTIVE OR FAIL TO PERFORM PROPERLY, YOU -- AND NOT ALTERA -- SHALL ASSUME THE ENTIRE\ + \ COST AND RISK OF ANY REPAIR, SERVICE, CORRECTION, OR ANY OTHER LIABILITY OR DAMAGES CAUSED\ + \ BY OR OTHERWISE ASSOCIATED WITH THE PROGRAMS. ALTERA DOES NOT WARRANT THAT THE PROGRAMS\ + \ WILL MEET YOUR REQUIREMENTS, OR THAT THE OPERATION OF THE PROGRAMS WILL BE UNINTERRUPTED\ + \ OR ERROR-FREE. YOU ALSO ASSUME RESPONSIBILITY FOR THE SELECTION, INSTALLATION, USE, AND\ + \ RESULTS OF USING THE PROGRAMS. Some states do not allow the exclusion of implied warranties,\ + \ so the above exclusion may not apply to you.\n\nALTERA SHALL NOT BE LIABLE TO YOU OR ANY\ + \ OTHER PERSON FOR ANY DAMAGES, INCLUDING ANY INCIDENTAL OR CONSEQUENTIAL DAMAGES, EXPENSES,\ + \ LOST PROFITS, LOST SAVINGS, OR OTHER DAMAGES ARISING OUT OF OR OTHERWISE ASSOCIATED WITH\ + \ THE USE OF OR INABILITY TO USE THE PROGRAMS. IN ANY EVENT, ALTERA'S LIABILITY UNDER THIS\ + \ AGREEMENT SHALL NOT EXCEED THE LARGER OF EITHER THE AMOUNT YOU PAID ALTERA FOR USE OF\ + \ THE PROGRAMS, OR ONE HUNDRED DOLLARS ($100). YOUR SOLE REMEDIES AND ALTERA'S ENTIRE LIABILITY\ + \ ARE AS SET FORTH ABOVE. Some states do not allow the limitation or exclusion of incidental\ + \ or consequential damages, so the above limitations or exclusions may not apply to you.\n\ + \nTo the extent that the Programs are derived from third-party software or other third-party\ + \ materials, no such third-party provides any warranties with respect to the Programs, assumes\ + \ any liability regarding use of the Programs, or undertakes to furnish you any support\ + \ or information relating to the Programs.\n\nGeneral\n\nYou acknowledge that Altera is\ + \ not responsible for and is not obligated to provide, any support, including email and\ + \ telephone support, for any purpose with respect to the Programs.\n\nYou acknowledge that\ + \ the Programs are made freely available in accordance with this Agreement as part of an\ + \ effort to promote broad use of the Programs with minimum interference by you and Altera.\ + \ Accordingly, you agree that, if you obtain any patents relating to inventions or discoveries\ + \ made through use of or access to the Programs or derivative works thereof, or that are\ + \ necessary for the use of the Programs, you will not bring any claim for infringement thereof\ + \ against Altera or any direct or indirect licensee of Altera in connection with or use\ + \ of the Programs or derivative works thereof. The foregoing does not constitute a license\ + \ of any copyright or trade secret.\n\nYou shall not export the Programs, or any product\ + \ programmed by the Programs, without first obtaining any necessary U.S. or other governmental\ + \ licenses and approvals.\n\nThis Agreement is entered into for the benefit of Altera and\ + \ Altera's licensors and all rights granted to you and all obligations owed to Altera shall\ + \ be enforceable by Altera and its licensors. This Agreement constitutes the entire understanding\ + \ and agreement applicable to the Programs, superseding any prior or contemporaneous understandings\ + \ or agreements. It may not be modified except in a writing executed by Altera.\n\nThis\ + \ Agreement will be governed by the laws the State of California. You agree to submit to\ + \ the jurisdiction of the courts in the State of California for the resolution of any dispute\ + \ or claim arising out of or relating to this Agreement.\n\nThe prevailing party in any\ + \ legal action or arbitration arising out of this Agreement shall be entitled to reimbursement\ + \ for its expenses, including court costs and reasonable attorneys' fees, in addition to\ + \ any other rights and remedies such party may have.\n\nBY USING THE PROGRAMS YOU ACKNOWLEDGE\ + \ THAT YOU HAVE READ THIS AGREEMENT, UNDERSTAND IT, AND AGREE TO BE BOUND BY ITS TERMS AND\ + \ CONDITIONS; YOU FURTHER AGREE THAT IT IS THE COMPLETE AND EXCLUSIVE STATEMENT OF THE AGREEMENT\ + \ BETWEEN YOU AND ALTERA WHICH SUPERSEDES ANY PROPOSAL OR PRIOR AGREEMENT, ORAL OR WRITTEN,\ + \ AND ANY OTHER COMMUNICATIONS BETWEEN YOU AND ALTERA RELATING TO THE SUBJECT MATTER OF\ + \ THIS AGREEMENT.\n\nU.S. Government Restricted Rights\n\nThe Programs and any accompanying\ + \ documentation are provided with RESTRICTED RIGHTS. Use, duplication, or disclosure by\ + \ the Government is subject to restrictions as set forth in subparagraph (c)(1)(ii) of The\ + \ Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs\ + \ (c)(1) and (2) of Commercial Computer Software--Restricted Rights at 48 CFR 52.227-19,\ + \ as applicable. Contractor/manufacturer is Altera Corporation, 101 Innovation Drive, San\ + \ Jose, CA 95134 and its licensors." json: jrunner.json - yml: jrunner.yml + yaml: jrunner.yml html: jrunner.html - text: jrunner.LICENSE + license: jrunner.LICENSE - license_key: jscheme + category: Permissive spdx_license_key: LicenseRef-scancode-jscheme other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Permission is granted to anyone to use this software, in source or object code form,\ + \ on any computer system, and to modify, compile, decompile, run, and redistribute it to\ + \ anyone else, subject to the following restrictions:\n\n 1. The author makes no warranty\ + \ of any kind, either expressed or implied, about the suitability of this software for any\ + \ purpose.\n\n 2. The author accepts no liability of any kind for damages or other consequences\ + \ of the use of this software, even if they arise from defects in the software.\n\n 3.\ + \ The origin of this software must not be misrepresented, either by explicit claim or by\ + \ omission.\n\n 4. Altered versions must be plainly marked as such, and must not be misrepresented\ + \ as being the original software. Altered versions may be distributed in packages under\ + \ other licenses (such as the GNU license). \n\nIf you find this software useful, it would\ + \ be nice if you let me (peter@norvig.com) know about it, and nicer still if you send me\ + \ modifications that you are willing to share. However, you are not required to do so." json: jscheme.json - yml: jscheme.yml + yaml: jscheme.yml html: jscheme.html - text: jscheme.LICENSE + license: jscheme.LICENSE - license_key: jsfromhell + category: Permissive spdx_license_key: LicenseRef-scancode-jsfromhell other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Copyright + We authorize the copy and modification of all the codes on the site, since the original author credits are kept. json: jsfromhell.json - yml: jsfromhell.yml + yaml: jsfromhell.yml html: jsfromhell.html - text: jsfromhell.LICENSE + license: jsfromhell.LICENSE - license_key: json + category: Permissive spdx_license_key: JSON other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 shall be used for Good, not Evil. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. json: json.json - yml: json.yml + yaml: json.yml html: json.html - text: json.LICENSE + license: json.LICENSE - license_key: json-js-pd + category: Public Domain spdx_license_key: LicenseRef-scancode-json-js-pd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + Public Domain + + No warranty expressed or implied. Use at your own risk. + + This file has been superceded by http://www.JSON.org/json2.js + + See http://www.JSON.org/js.html json: json-js-pd.json - yml: json-js-pd.yml + yaml: json-js-pd.yml html: json-js-pd.html - text: json-js-pd.LICENSE + license: json-js-pd.LICENSE - license_key: json-pd + category: Public Domain spdx_license_key: LicenseRef-scancode-json-pd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + Public Domain. + + NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. + + See http://www.JSON.org/js.html + + This code should be minified before deployment. + See http://javascript.crockford.com/jsmin.html + + USE YOUR OWN COPY. IT IS EXTREMELY UNWISE TO LOAD CODE FROM SERVERS YOU DO NOT CONTROL. json: json-pd.json - yml: json-pd.yml + yaml: json-pd.yml html: json-pd.html - text: json-pd.LICENSE + license: json-pd.LICENSE - license_key: jsr-107-jcache-spec + category: Proprietary Free spdx_license_key: LicenseRef-scancode-jsr-107-jcache-spec other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + JSR-000107 JavaTM Temporary Caching API Maintenance Release 1 + + ORACLE AMERICA, INC. AND GREG LUCK, SPECIFICATION LEADS, ARE WILLING TO LICENSE THIS SPECIFICATION TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS AGREEMENT. PLEASE READ THE TERMS AND CONDITIONS OF THIS AGREEMENT CAREFULLY. BY DOWNLOADING THIS SPECIFICATION, YOU ACCEPT THE TERMS AND CONDITIONS OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY IT, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THIS PAGE. + + Specification: JSR-107 JCache ("Specification") + + Version: 1.0.1 + + Status: Maintenance Release 1 + + Specification Leads: Oracle America, Inc. and Greg Luck ("Specification Leads") + + Release: November 2015 + + Copyright 2015 Oracle America, Inc. and Greg Luck + All rights reserved. + + LIMITED LICENSE GRANTS + + 1. License for Evaluation Purposes. Specification Leads hereby grant you a fully-paid, non-exclusive, non-transferable, worldwide, limited license (without the right to sublicense), under Specification Leads' applicable intellectual property rights to view, download, use and reproduce the Specification only for the purpose of internal evaluation. This includes (i) developing applications intended to run on an implementation of the Specification, provided that such applications do not themselves implement any portion(s) of the Specification, and (ii) discussing the Specification with any third party; and (iii) excerpting brief portions of the Specification in oral or written communications which discuss the Specification provided that such excerpts do not in the aggregate constitute a significant portion of the Specification. + + 2. License for the Distribution of Compliant Implementations. Specification Leads also grant you a perpetual, non-exclusive, non-transferable, worldwide, fully paid-up, royalty free, limited license (without the right to sublicense) under any applicable copyrights or, subject to the provisions of subsection 4 below, patent rights it may have covering the Specification to create and/or distribute an Independent Implementation of the Specification that: (a) fully implements the Specification including all its required interfaces and functionality; (b) does not modify, subset, superset or otherwise extend the Licensor Name Space, or include any public or protected packages, classes, Java interfaces, fields or methods within the Licensor Name Space other than those required/authorized by the Specification or Specifications being implemented; and (c) passes the Technology Compatibility Kit (including satisfying the requirements of the applicable TCK Users Guide) for such Specification ("Compliant Implementation"). In addition, the foregoing license is expressly conditioned on your not acting outside its scope. No license is granted hereunder for any other purpose (including, for example, modifying the Specification, other than to the extent of your fair use rights, or distributing the Specification to third parties). Also, no right, title, or interest in or to any trademarks, service marks, or trade names of Specification Leads or Specification Leads' licensors is granted hereunder. Java, and Java-related logos, marks and names are trademarks or registered trademarks of Oracle America, Inc. in the U.S. and other countries. + + 3. Pass-through Conditions. You need not include limitations (a)-(c) from the previous paragraph or any other particular "pass through" requirements in any license You grant concerning the use of your Independent Implementation or products derived from it. However, except with respect to Independent Implementations (and products derived from them) that satisfy limitations (a)-(c) from the previous paragraph, You may neither: (a) grant or otherwise pass through to your licensees any licenses under Specification Leads' applicable intellectual property rights; nor (b) authorize your licensees to make any claims concerning their implementation's compliance with the Specification in question. + + 4. Reciprocity Concerning Patent Licenses. + + a. With respect to any patent claims covered by the license granted under subparagraph 2 above that would be infringed by all technically feasible implementations of the Specification, such license is conditioned upon your offering on fair, reasonable and non-discriminatory terms, to any party seeking it from You, a perpetual, non-exclusive, non-transferable, worldwide license under Your patent rights which are or would be infringed by all technically feasible implementations of the Specification to develop, distribute and use a Compliant Implementation. + + b With respect to any patent claims owned by Specification Leads and covered by the license granted under subparagraph 2, whether or not their infringement can be avoided in a technically feasible manner when implementing the Specification, such license shall terminate with respect to such claims if You initiate a claim against Specification Leads that it has, in the course of performing its responsibilities as the Specification Leads, induced any other entity to infringe Your patent rights. + + c Also with respect to any patent claims owned by Specification Leads and covered by the license granted under subparagraph 2 above, where the infringement of such claims can be avoided in a technically feasible manner when implementing the Specification such license, with respect to such claims, shall terminate if You initiate a claim against Specification Leads that its making, having made, using, offering to sell, selling or importing a Compliant Implementation infringes Your patent rights. + + 5. Definitions. For the purposes of this Agreement: "Independent Implementation" shall mean an implementation of the Specification that neither derives from any of Specification Leads' source code or binary code materials nor, except with an appropriate and separate license from Specification Leads, includes any of Specification Leads' source code or binary code materials; "Licensor Name Space" shall mean the public class or interface declarations whose names begin with "java", "javax", "com.oracle", "com.sun" or their equivalents in any subsequent naming convention adopted by Oracle America, Inc. through the Java Community Process, or any recognized successors or replacements thereof; and "Technology Compatibility Kit" or "TCK" shall mean the test suite and accompanying TCK User's Guide provided by Specification Leads which corresponds to the Specification and that was available either (i) from Specification Leads' 120 days before the first release of Your Independent Implementation that allows its use for commercial purposes, or (ii) more recently than 120 days from such release but against which You elect to test Your implementation of the Specification. + + This Agreement will terminate immediately without notice from Specification Leads if you breach the Agreement or act outside the scope of the licenses granted above. + + DISCLAIMER OF WARRANTIES + + THE SPECIFICATION IS PROVIDED "AS IS". SPECIFICATION LEADS MAKE NO REPRESENTATIONS OR WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT (INCLUDING AS A CONSEQUENCE OF ANY PRACTICE OR IMPLEMENTATION OF THE SPECIFICATION), OR THAT THE CONTENTS OF THE SPECIFICATION ARE SUITABLE FOR ANY PURPOSE. This document does not represent any commitment to release or implement any portion of the Specification in any product. In addition, the Specification could include technical inaccuracies or typographical errors. + + LIMITATION OF LIABILITY + + TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SPECIFICATION LEADS OR THEIR LICENSORS BE LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT LIMITATION, LOST REVENUE, PROFITS OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED IN ANY WAY TO YOUR HAVING, IMPELEMENTING OR OTHERWISE USING THE SPECIFICATION, EVEN IF SPECIFICATION LEADS AND/OR THEIR LICENSORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + You will indemnify, hold harmless, and defend Specification Leads and their licensors from any claims arising or resulting from: (i) your use of the Specification; (ii) the use or distribution of your Java application, applet and/or implementation; and/or (iii) any claims that later versions or releases of any Specification furnished to you are incompatible with the Specification provided to you under this license. + + RESTRICTED RIGHTS LEGEND + + U.S. Government: If this Specification is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in the Software and accompanying documentation shall be only as set forth in this license; this is in accordance with 48 C.F.R. 227.7201 through 227.7202-4 (for Department of Defense (DoD) acquisitions) and with 48 C.F.R. 2.101 and 12.212 (for non-DoD acquisitions). + + REPORT + + If you provide Specification Leads with any comments or suggestions concerning the Specification ("Feedback"), you hereby: (i) agree that such Feedback is provided on a non-proprietary and non-confidential basis, and (ii) grant Specification Leads a perpetual, non-exclusive, worldwide, fully paid-up, irrevocable license, with the right to sublicense through multiple levels of sublicensees, to incorporate, disclose, and use without limitation the Feedback for any purpose. + + GENERAL TERMS + + Any action related to this Agreement will be governed by California law and controlling U.S. federal law. The U.N. Convention for the International Sale of Goods and the choice of law rules of any jurisdiction will not apply. + + The Specification is subject to U.S. export control laws and may be subject to export or import regulations in other countries. Licensee agrees to comply strictly with all such laws and regulations and acknowledges that it has the responsibility to obtain such licenses to export, re-export or import as may be required after delivery to Licensee. + + This Agreement is the parties' entire agreement relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, conditions, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification to this Agreement will be binding, unless in writing and signed by an authorized representative of each party. + + Rev. January 2014 json: jsr-107-jcache-spec.json - yml: jsr-107-jcache-spec.yml + yaml: jsr-107-jcache-spec.yml html: jsr-107-jcache-spec.html - text: jsr-107-jcache-spec.LICENSE + license: jsr-107-jcache-spec.LICENSE - license_key: jsr-107-jcache-spec-2013 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-jsr-107-jcache-spec-2013 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + JSR-000107 JCACHE 2.9 Public Review - Updated Specification + + ORACLE AND GREG LUCK ARE WILLING TO LICENSE THIS SPECIFICATION TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS LICENSE AGREEMENT ("AGREEMENT"). PLEASE READ THE TERMS AND CONDITIONS OF THIS AGREEMENT CAREFULLY. BY DOWNLOADING THIS SPECIFICATION, YOU ACCEPT THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY THEM, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THIS PAGE AND THE DOWNLOADING PROCESS WILL NOT CONTINUE. + Specification: JSR-000107 Java(tm) Temporary Caching API Specification ("Specification") + Version: 2.9 + Status: Public Review + Release: 8 August 2013 + + Copyright 2013 ORACLE America, Inc. and Greg Luck + 4150 Network Circle, Santa Clara, California 95054, U.S.A + All rights reserved. + NOTICE + The Specification is protected by copyright and the information described therein may be protected by one or more U.S. patents, foreign patents, or pending applications. Except as provided under the following license, no part of the Specification may be reproduced in any form by any means without the prior written authorization of Oracle USA, Inc. ("Oracle"), Greg Luck ("Greg Luck") and their licensors, if any. Any use of the Specification and the information described therein will be governed by the terms and conditions of this Agreement. + + Subject to the terms and conditions of this license, including your compliance with Paragraphs 1 and 2 below, Oracle and Greg Luck hereby grant you a fully-paid, non-exclusive, non-transferable, limited license (without the right to sublicense) under Oracle and Greg Luck's intellectual property rights to: + + 1.Review the Specification for the purposes of evaluation. This includes: (i) developing implementations of the Specification for your internal, non-commercial use; (ii) discussing the Specification with any third party; and (iii) excerpting brief portions of the Specification in oral or written communications which discuss the Specification provided that such excerpts do not in the aggregate constitute a significant portion of the Technology. 2.Distribute implementations of the Specification to third parties for their testing and evaluation use, provided that any such implementation: + (i) does not modify, subset, superset or otherwise extend the Licensor Name Space, or include any public or protected packages, classes, Java interfaces, fields or methods within the Licensor Name Space other than those required/authorized by the Specification or Specifications being implemented; + (ii) is clearly and prominently marked with the word "UNTESTED" or "EARLY ACCESS" or "INCOMPATIBLE" or "UNSTABLE" or "BETA" in any list of available builds and in proximity to every link initiating its download, where the list or link is under Licensee's control; and + (iii) includes the following notice: + "This is an implementation of an early-draft specification developed under the Java Community Process (JCP) and is made available for testing and evaluation purposes only. The code is not compatible with any specification of the JCP." The grant set forth above concerning your distribution of implementations of the specification is contingent upon your agreement to terminate development and distribution of your "early draft" implementation as soon as feasible following final completion of the specification. If you fail to do so, the foregoing grant shall be considered null and void. No provision of this Agreement shall be understood to restrict your ability to make and distribute to third parties applications written to the Specification. Other than this limited license, you acquire no right, title or interest in or to the Specification or any other Oracle or Greg Luck intellectual property, and the Specification may only be used in accordance with the license terms set forth herein. This license will expire on the earlier of: (a) two (2) years from the date of Release listed above; (b) the date on which the final version of the Specification is publicly released; or (c) the date on which the Java Specification Request (JSR) to which the Specification corresponds is withdrawn. In addition, this license will terminate immediately without notice from Oracle or Greg Luck if you fail to comply with any provision of this license. Upon termination, you must cease use of or destroy the Specification. "Licensor Name Space" means the public class or interface declarations whose names begin with "java", "javax", "com.oracle" or their equivalents in any subsequent naming convention adopted by Oracle or Greg Luck through the Java Community Process, or any recognized successors or replacements thereof + + TRADEMARKS + No right, title, or interest in or to any trademarks, service marks, or trade names of Oracle, Greg Luck or their licensors is granted hereunder. Oracle, the Oracle logo, Java are trademarks or registered trademarks of Oracle USA, Inc. in the U.S. and other countries. + + DISCLAIMER OF WARRANTIES + THE SPECIFICATION IS PROVIDED "AS IS" AND IS EXPERIMENTAL AND MAY CONTAIN DEFECTS OR DEFICIENCIES WHICH CANNOT OR WILL NOT BE CORRECTED BY ORACLE. ORACLE MAKES NO REPRESENTATIONS OR WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT THAT THE CONTENTS OF THE SPECIFICATION ARE SUITABLE FOR ANY PURPOSE OR THAT ANY PRACTICE OR IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADE SECRETS OR OTHER RIGHTS. This document does not represent any commitment to release or implement any portion of the Specification in any product. + + THE SPECIFICATION COULD INCLUDE TECHNICAL INACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION THEREIN; THESE CHANGES WILL BE INCORPORATED INTO NEW VERSIONS OF THE SPECIFICATION, IF ANY. ORACLE MAY MAKE IMPROVEMENTS AND/OR CHANGES TO THE PRODUCT(S) AND/OR THE PROGRAM(S) DESCRIBED IN THE SPECIFICATION AT ANY TIME. Any use of such changes in the Specification will be governed by the then-current license for the applicable version of the Specification. + + LIMITATION OF LIABILITY + TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL ORACLE OR ITS LICENSORS BE LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT LIMITATION, LOST REVENUE, PROFITS OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO ANY FURNISHING, PRACTICING, MODIFYING OR ANY USE OF THE SPECIFICATION, EVEN IF ORACLE AND/OR ITS LICENSORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + You will hold Oracle and Greg Luck (and their licensors) harmless from any claims based on your use of the Specification for any purposes other than the limited right of evaluation as described above, and from any claims that later versions or releases of any Specification furnished to you are incompatible with the Specification provided to you under this license. + + RESTRICTED RIGHTS LEGEND + If this Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in the Software and accompanying documentation shall be only as set forth in this license; this is in accordance with 48 C.F.R. 227.7201 through 227.7202-4 (for Department of Defense (DoD) acquisitions) and with 48 C.F.R. 2.101 and 12.212 (for non-DoD acquisitions). + + REPORT + You may wish to report any ambiguities, inconsistencies or inaccuracies you may find in connection with your evaluation of the Specification ("Feedback"). To the extent that you provide Oracle or Greg Luck with any Feedback, you hereby: (i) agree that such Feedback is provided on a non-proprietary and non-confidential basis, and (ii) grant Oracle and Greg Luck a perpetual, non-exclusive, worldwide, fully paid-up, irrevocable license, with the right to sublicense through multiple levels of sublicensees, to incorporate, disclose, and use without limitation the Feedback for any purpose related to the Specification and future versions, implementations, and test suites thereof. + + GENERAL TERMS + Any action related to this Agreement will be governed by California law and controlling U.S. federal law. The U.N. Convention for the International Sale of Goods and the choice of law rules of any jurisdiction will not apply. + + The Specification is subject to U.S. export control laws and may be subject to export or import regulations in other countries. Licensee agrees to comply strictly with all such laws and regulations and acknowledges that it has the responsibility to obtain such licenses to export, re-export or import as may be required after delivery to Licensee. + + This Agreement is the parties' entire agreement relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, conditions, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification to this Agreement will be binding, unless in writing and signed by an authorized representative of each party. json: jsr-107-jcache-spec-2013.json - yml: jsr-107-jcache-spec-2013.yml + yaml: jsr-107-jcache-spec-2013.yml html: jsr-107-jcache-spec-2013.html - text: jsr-107-jcache-spec-2013.LICENSE + license: jsr-107-jcache-spec-2013.LICENSE - license_key: jython + category: Permissive spdx_license_key: LicenseRef-scancode-jython other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Jython License\nhttp://www.jython.org/license.txt\n\n====================================\n\ + The Jython License\n====================================\n\nA. TERMS AND CONDITIONS FOR\ + \ ACCESSING OR OTHERWISE USING JYTHON\n==================================================================\n\ + \nPYTHON SOFTWARE FOUNDATION LICENSE VERSION 2\n----------------------------------------------------------------------\n\ + \n1. This LICENSE AGREEMENT is between the Python Software Foundation\n(\"PSF\"), and the\ + \ Individual or Organization (\"Licensee\") accessing and\notherwise using this software\ + \ (\"Jython\") in source or binary form and\nits associated documentation.\n\n2. Subject\ + \ to the terms and conditions of this License Agreement, PSF\nhereby grants Licensee a nonexclusive,\ + \ royalty-free, world-wide\nlicense to reproduce, analyze, test, perform and/or display\ + \ publicly,\nprepare derivative works, distribute, and otherwise use Jython alone\nor in\ + \ any derivative version, provided, however, that PSF's License\nAgreement and PSF's notice\ + \ of copyright, i.e., \"Copyright (c) 2007\nPython Software Foundation; All Rights Reserved\"\ + \ are retained in\nJython alone or in any derivative version prepared by Licensee.\n\n3.\ + \ In the event Licensee prepares a derivative work that is based on\nor incorporates Jython\ + \ or any part thereof, and wants to make\nthe derivative work available to others as provided\ + \ herein, then\nLicensee hereby agrees to include in any such work a brief summary of\n\ + the changes made to Jython.\n\n4. PSF is making Jython available to Licensee on an \"AS\ + \ IS\"\nbasis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY\ + \ OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY\ + \ OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF JYTHON WILL\ + \ NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY\ + \ OTHER USERS OF JYTHON\nFOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS\n\ + A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING JYTHON,\nOR ANY DERIVATIVE THEREOF,\ + \ EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n6. This License Agreement will automatically\ + \ terminate upon a material\nbreach of its terms and conditions.\n\n7. Nothing in this License\ + \ Agreement shall be deemed to create any\nrelationship of agency, partnership, or joint\ + \ venture between PSF and\nLicensee. This License Agreement does not grant permission to\ + \ use PSF\ntrademarks or trade name in a trademark sense to endorse or promote\nproducts\ + \ or services of Licensee, or any third party.\n\n8. By copying, installing or otherwise\ + \ using Jython, Licensee\nagrees to be bound by the terms and conditions of this License\n\ + Agreement.\n \nJython 2.0, 2.1 License\n--------------------------------------------\n\n\ + Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Jython Developers\nAll rights\ + \ reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification,\ + \ are permitted provided that the following conditions\nare met:\n\n - Redistributions of\ + \ source code must retain the above copyright\n notice, this list of conditions and the\ + \ following disclaimer.\n\n - Redistributions in binary form must reproduce the above copyright\n\ + \ notice, this list of conditions and the following disclaimer in\n the documentation\ + \ and/or other materials provided with the distribution.\n\n - Neither the name of the Jython\ + \ Developers nor the names of\n its contributors may be used to endorse or promote products\n\ + \ derived from this software without specific prior written permission.\n\nTHIS SOFTWARE\ + \ IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS'' AND ANY EXPRESS OR IMPLIED\ + \ WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR\n\ + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL\ + \ DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\ + \ LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY\n\ + OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE)\ + \ ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGE.\n\nJPython 1.1.x Software License.\n \n\n 1. This LICENSE AGREEMENT is\ + \ between the Corporation for National Research\n Initiatives, having an office at 1895\ + \ Preston White Drive, Reston, VA\n 20191 (\"CNRI\"), and the Individual or Organization\ + \ (\"Licensee\")\n accessing and using JPython version 1.1.x in source or binary form\ + \ and\n its associated documentation as provided herein (\"Software\").\n\n 2. Subject\ + \ to the terms and conditions of this License Agreement, CNRI\n hereby grants Licensee\ + \ a non-exclusive, non-transferable, royalty-free,\n world-wide license to reproduce,\ + \ analyze, test, perform and/or display\n publicly, prepare derivative works, distribute,\ + \ and otherwise use the\n Software alone or in any derivative version, provided, however,\ + \ that\n CNRI's License Agreement and CNRI's notice of copyright, i.e.,\n \"Copyright\ + \ ©1996-1999 Corporation for National Research Initiatives;\n All Rights Reserved\"\ + \ are both retained in the Software, alone or in any\n derivative version prepared by\ + \ Licensee.\n\n Alternatively, in lieu of CNRI's License Agreement, Licensee may\n \ + \ substitute the following text (omitting the quotes), provided, however,\n that\ + \ such text is displayed prominently in the Software alone or in any\n derivative version\ + \ prepared by Licensee: \"JPython (Version 1.1.x) is\n made available subject to the\ + \ terms and conditions in CNRI's License\n Agreement. This Agreement may be located\ + \ on the Internet using the\n following unique, persistent identifier (known as a handle):\n\ + \ 1895.22/1006. The License may also be obtained from a proxy server on\n the Web\ + \ using the following URL: http://hdl.handle.net/1895.22/1006.\"\n\n 3. In the event Licensee\ + \ prepares a derivative work that is based on or\n incorporates the Software or any\ + \ part thereof, and wants to make the\n derivative work available to the public as provided\ + \ herein, then\n Licensee hereby agrees to indicate in any such work, in a prominently\n\ + \ visible way, the nature of the modifications made to CNRI's Software.\n\n 4. Licensee\ + \ may not use CNRI trademarks or trade name, including JPython\n or CNRI, in a trademark\ + \ sense to endorse or promote products or\n services of Licensee, or any third party.\ + \ Licensee may use the mark\n JPython in connection with Licensee's derivative versions\ + \ that are\n based on or incorporate the Software, but only in the form\n \"JPython-based\ + \ ,\" or equivalent.\n\n 5. CNRI is making the Software available to Licensee on an \"\ + AS IS\" basis.\n CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY\ + \ WAY\n OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY\n REPRESENTATION\ + \ OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY\n PARTICULAR PURPOSE OR THAT THE\ + \ USE OF THE SOFTWARE WILL NOT INFRINGE\n ANY THIRD PARTY RIGHTS.\n\n 6. CNRI SHALL\ + \ NOT BE LIABLE TO LICENSEE OR OTHER USERS OF THE SOFTWARE FOR\n ANY INCIDENTAL, SPECIAL\ + \ OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF\n USING, MODIFYING OR DISTRIBUTING\ + \ THE SOFTWARE, OR ANY DERIVATIVE\n THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\ + \ SOME STATES DO NOT\n ALLOW THE LIMITATION OR EXCLUSION OF LIABILITY SO THE ABOVE DISCLAIMER\n\ + \ MAY NOT APPLY TO LICENSEE.\n\n 7. This License Agreement may be terminated by CNRI\ + \ (i) immediately upon\n written notice from CNRI of any material breach by the Licensee,\ + \ if the\n nature of the breach is such that it cannot be promptly remedied; or\n \ + \ (ii) sixty (60) days following notice from CNRI to Licensee of a\n material remediable\ + \ breach, if Licensee has not remedied such breach\n within that sixty-day period.\n\ + \n 8. This License Agreement shall be governed by and interpreted in all\n respects\ + \ by the law of the State of Virginia, excluding conflict of law\n provisions. Nothing\ + \ in this Agreement shall be deemed to create any\n relationship of agency, partnership,\ + \ or joint venture between CNRI and\n Licensee.\n\n 9. By clicking on the \"ACCEPT\"\ + \ button where indicated, or by installing,\n copying or otherwise using the Software,\ + \ Licensee agrees to be bound by\n the terms and conditions of this License Agreement.\n\ + \n [ACCEPT BUTTON]\n\nB. HISTORY OF THE SOFTWARE\n=======================================================\n\ + \nJPython was created in late 1997 by Jim Hugunin. Jim was also the\nprimary developer while\ + \ he was at CNRI. In February 1999 Barry Warsaw\ntook over as primary developer and released\ + \ JPython version 1.1.\n\nIn October 2000 Barry helped move the software to SourceForge\n\ + where it was renamed to Jython. Jython 2.0 and 2.1 were developed\nunder the Jython specific\ + \ license below.\n\nFrom the 2.2 release on, Jython contributors have signed\nPython Software\ + \ Foundation contributor agreements and releases are\ncovered under the Python Software\ + \ Foundation license version 2.\n\nThe standard library is covered by the Python Software\ + \ Foundation\nlicense as well. See the Lib/LICENSE file for details.\n\nThe zxJDBC package\ + \ was written by Brian Zimmer and originally licensed\nunder the GNU Public License. The\ + \ package is now covered by the Jython\nSoftware License.\n\nThe command line interpreter\ + \ is covered by the Apache Software\nLicense. See the org/apache/LICENSE file for details." json: jython.json - yml: jython.yml + yaml: jython.yml html: jython.html - text: jython.LICENSE + license: jython.LICENSE - license_key: kalle-kaukonen + category: Permissive spdx_license_key: LicenseRef-scancode-kalle-kaukonen other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms, with or without modification, + are permitted provided that this copyright notice and disclaimer are retained. + + THIS SOFTWARE IS PROVIDED BY KALLE KAUKONEN 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 KALLE KAUKONEN OR CONTRIBUTORS BE LIABLE FOR ANY + DIRECTI, 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. json: kalle-kaukonen.json - yml: kalle-kaukonen.yml + yaml: kalle-kaukonen.yml html: kalle-kaukonen.html - text: kalle-kaukonen.LICENSE + license: kalle-kaukonen.LICENSE - license_key: karl-peterson + category: Free Restricted spdx_license_key: LicenseRef-scancode-karl-peterson other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + You are free to use this code within your own applications, but you + are expressly forbidden from selling or otherwise distributing this + source code without prior written consent. json: karl-peterson.json - yml: karl-peterson.yml + yaml: karl-peterson.yml html: karl-peterson.html - text: karl-peterson.LICENSE + license: karl-peterson.LICENSE - license_key: katharos-0.1.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-katharos-0.1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + # The Katharos License v0.1.0 + + ## Preamble + + Katharos is the Greek word for "pure" and, correspondingly, the purpose of the Katharos license is to prevent the licensed work from being used to promote destructive activities or to produce other impure or destructive works. + + With the Katharos License we want to promote the openness, sharing, and collaboration that is common in the Open Source community, while at the same time protecting the people who may otherwise become victims of the destructive application of our shared works. We want the works that we share to be uplifting and helpful and we want them to be used to benefit people. + + To accomplish these goals, this license seeks to put limits on what people are allowed to do with the licensed work. This includes, among other things, disallowing the work to be incorporated in or used to produce sexually suggestive or explicit content which we believe is mentally, psychologically, and spiritually harmful. + + The definition of what is "good" can be considered highly subjective. In order to maintain objectivity in a highly subjective matter, there must be some source of truth from which to derive said objectivity. The source of "truth" for the Katharos License, and where the definition of what is "good" and "pure", come from the Word of God, The Holy Bible. The Katharos License is based on the premise that the full 66 books of the Holy Bible are 100% true and inspired by God and that He alone is the ultimate authority for what is good and just. + + This license seeks to allow us to share our works as openly as possible, promoting what is uplifting and "good", while preventing what is harmful and destructive. + + ## Terms + + Copyright © [year] [copyright holder]. All rights reserved. + + The Licensor grants permission by this license (“License”), free of charge, to the extent of Licensor’s rights under applicable copyright and patent law, to any person or entity (the “Licensee”) obtaining a copy of this work and all associated documentation or metadata (the “Work”), to do everything with the Work that would otherwise infringe (i) the Licensor’s copyright in the Work or (ii) any patent claims to the Work that the Licensor can license or becomes able to license, subject to all of the following terms and conditions: + + ### Acceptance + + This License is automatically offered to every person and entity subject to its terms and conditions. Licensee accepts this License and agrees to its terms and conditions by taking any action with the Work that, absent this License, would infringe any intellectual property right held by Licensor. + + ### Notice + + Licensee must ensure that everyone who gets a copy of any part of this Work from Licensee, with or without changes, also receives the License and the above copyright notice (and if included by the Licensor, patent, trademark and attribution notice). Licensee must cause any modified versions of the Work to carry prominent notices stating that Licensee changed the Work. For clarity, although Licensee is free to create modifications of the Work and distribute only the modified portion created by Licensee with additional or different terms, the portion of the Work not modified must be distributed pursuant to this License. If anyone notifies Licensee in writing that Licensee has not complied with this Notice section, Licensee can keep this License by taking all practical steps to comply within 30 days after the notice. If Licensee does not do so, Licensee’s License (and all rights licensed hereunder) shall end immediately. + + ### Endorsement + + Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote any other works, or services derived from the licensed Work without specific prior written permission. + + ### Permitted Use of Work + + 1. The Work shall not be used by any person or entity for any systems, activities, products, services or other uses that (i) lobby for, promote, or support the following activities or materials or (ii) that derive a majority of income from the following activities or materials: + + - sex trafficking + - human trafficking + - slavery + - indentured servitude + - warfare + - weapons manufacturing + - war crimes + - violence ( except when required to protect public safety ) + - weapons of mass destruction + - sexually suggestive or explicit images, artwork, or any other media + - excessively gory and/or violent images, artwork, or any other media + - abortion + - murder + - mass surveillance and/or stealing of private information + - hate speech or discrimination based on age, gender, gender identity, race, sexuality, religion, nationality + + 2. The Work shall not be used by any person, entity, product, service or other use that (i) lobbies against, discourages, or frustrates the following activities or (ii) that derives a majority of income from actions that discourage, or frustrate the following activities: + + - peaceful assembly and association (including worker associations) + - democratic processes + + ### Compliance with Permitted Use of Work & Human Rights Laws + + 1. Permitted Use of Work. + + (a) Licensee shall use the Software in a manner consistent with Permitted Use of Work defined above. + + (b) Unless the Licensor and Licensee agree otherwise, any dispute, controversy, or claim arising out of or relating to (i) Section 1(a) regarding Permitted Use of Work, including the breach of Section 1(a), termination of this License for breach of the Permitted Use of Work, or invalidity of Section 1(a) or (ii) a determination of whether any Law is consistent or in conflict with Permitted Use of Work pursuant to Section 2, below, shall be settled by arbitration in accordance with the Hague Rules on Business and Human Rights Arbitration (the “Rules”); provided, however, that Licensee may elect not to participate in such arbitration, in which event this License (and all rights licensed hereunder) shall end immediately. The number of arbitrators shall be one unless the Rules require otherwise. + + Unless both the Licensor and Licensee agree to the contrary: (1) All documents and information concerning the arbitration shall be public and may be disclosed by any party; (2) The repository referred to under Article 43 of the Rules shall make available to the public in a timely manner all documents concerning the arbitration which are communicated to it, including all submissions of the parties, all evidence admitted into the record of the proceedings, all transcripts or other recordings of hearings and all orders, decisions and awards of the arbitral tribunal, subject only to the arbitral tribunal’s powers to take such measures as may be necessary to safeguard the integrity of the arbitral process pursuant to Articles 18, 33, 41 and 42 of the Rules; and (3) Article 26(6) of the Rules shall not apply. + + 2. Human Rights Laws. The Software shall not be used by any person or entity for any systems, activities, or other uses that violate any Human Rights Laws. “Human Rights Laws” means any applicable laws, regulations, or rules (collectively, “Laws”) that protect human, civil, labor, privacy, political, environmental, security, economic, due process, or similar rights; provided, however, that such Laws are consistent and not in conflict with Permitted Use of Work (a dispute over the consistency or a conflict between Laws and Permitted Use of Work shall be determined by arbitration as stated above). Where the Human Rights Laws of more than one jurisdiction are applicable or in conflict with respect to the use of the Work, the Human Rights Laws that are most aligned with the guidelines defined in the Holy Bible shall apply. + + 3. Indemnity. Licensee shall hold harmless and indemnify Licensor (and any other contributor) against all losses, damages, liabilities, deficiencies, claims, actions, judgments, settlements, interest, awards, penalties, fines, costs, or expenses of whatever kind, including Licensor’s reasonable attorneys’ fees, arising out of or relating to Licensee’s use of the Software in violation of Human Rights Laws or Permitted Use of Work. + + ### Failure to Comply + + Any failure of Licensee to act according to the terms and conditions of this License is both a breach of the License and an infringement of the intellectual property rights of the Licensor (subject to exceptions under Laws, e.g., fair use). In the event of a breach or infringement, the terms and conditions of this License may be enforced by Licensor under the Laws of any jurisdiction to which Licensee is subject. Licensee also agrees that the Licensor may enforce the terms and conditions of this License against Licensee through specific performance (or similar remedy under Laws) to the extent permitted by Laws. For clarity, except in the event of a breach of this License, infringement, or as otherwise stated in this License, Licensor may not terminate this License with Licensee. + + ### Enforceability and Interpretation + + If any term or provision of this License is determined to be invalid, illegal, or unenforceable by a court of competent jurisdiction, then such invalidity, illegality, or unenforceability shall not affect any other term or provision of this License or invalidate or render unenforceable such term or provision in any other jurisdiction; provided, however, subject to a court modification pursuant to the immediately following sentence, if any term or provision of this License pertaining to Human Rights Laws or Permitted Use of Work is deemed invalid, illegal, or unenforceable against Licensee by a court of competent jurisdiction, all rights in the Work granted to Licensee shall be deemed null and void as between Licensor and Licensee. Upon a determination that any term or provision is invalid, illegal, or unenforceable, to the extent permitted by Laws, the court may modify this License to affect the original purpose that the Work be used in compliance with Permitted Use of Work and Human Rights Laws as closely as possible. The language in this License shall be interpreted as to its fair meaning and not strictly for or against any party. + + ### Disclaimer + + TO THE FULL EXTENT ALLOWED BY LAW, THIS SOFTWARE COMES “AS IS,” WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED, AND LICENSOR AND ANY OTHER CONTRIBUTOR SHALL NOT BE LIABLE TO ANYONE FOR ANY DAMAGES OR OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THIS LICENSE, UNDER ANY KIND OF LEGAL CLAIM. + + ## Use of the Katharos License + + ### Creating Derivative Licenses + + You may freely modify and distribute your own derivatives of the Katharos License itself and apply it to your works provided that you do not call the derivative license the "Katharos License" and you clearly indicate that the derivative license is a modification of the Katharos License. Only wholly unmodified versions of the Katharos License may be called the "Katharos License". + + ### Disclaimer + + This Katharos License is offered for use by licensors and licensees at their own risk, on an “AS IS” basis, and with no warranties express or implied, to the maximum extent permitted by Laws. + + ## Attribution + + This license has incorporated verbatim and modified portions of the following licenses: + + - [Hippocratic License Version 2.1](https://firstdonoharm.dev/version/2/1/license.html) + - [Do No Harm License](https://github.com/raisely/NoHarm) + - [BSD 3-Clause](https://spdx.org/licenses/BSD-3-Clause.html) json: katharos-0.1.0.json - yml: katharos-0.1.0.yml + yaml: katharos-0.1.0.yml html: katharos-0.1.0.html - text: katharos-0.1.0.LICENSE + license: katharos-0.1.0.LICENSE - license_key: kde-accepted-gpl + category: Copyleft spdx_license_key: LicenseRef-scancode-kde-accepted-gpl other_spdx_license_keys: - LicenseRef-KDE-Accepted-GPL is_exception: no is_deprecated: no - category: Copyleft + text: | + This library 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) at any later version that is + accepted by the membership of KDE e.V. (or its successor + approved by the membership of KDE e.V.), which shall act as a + proxy as defined in Section 14 of version 3 of the license. + + 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. json: kde-accepted-gpl.json - yml: kde-accepted-gpl.yml + yaml: kde-accepted-gpl.yml html: kde-accepted-gpl.html - text: kde-accepted-gpl.LICENSE + license: kde-accepted-gpl.LICENSE - license_key: kde-accepted-lgpl + category: Copyleft spdx_license_key: LicenseRef-scancode-kde-accepted-lgpl other_spdx_license_keys: - LicenseRef-KDE-Accepted-LGPL is_exception: no is_deprecated: no - category: Copyleft + text: | + 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 3 of the license or (at your option) any later version + that is accepted by the membership of KDE e.V. (or its successor + approved by the membership of KDE e.V.), which shall act as a + proxy as defined in Section 6 of version 3 of the license. + + 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. json: kde-accepted-lgpl.json - yml: kde-accepted-lgpl.yml + yaml: kde-accepted-lgpl.yml html: kde-accepted-lgpl.html - text: kde-accepted-lgpl.LICENSE + license: kde-accepted-lgpl.LICENSE - license_key: keith-rule + category: Permissive spdx_license_key: LicenseRef-scancode-keith-rule other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + You may freely use or modify this code provided this + Copyright is included in all derived versions. json: keith-rule.json - yml: keith-rule.yml + yaml: keith-rule.yml html: keith-rule.html - text: keith-rule.LICENSE + license: keith-rule.LICENSE - license_key: kerberos + category: Permissive spdx_license_key: LicenseRef-scancode-kerberos other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Kerberos License \n\nCopyright @copyright{} 1985-2002 by the Massachusetts Institute\ + \ of Technology.\n\nExport of software employing encryption from the United States of America\ + \ may\nrequire a specific license from the United States Government. It is the\nresponsibility\ + \ of any person or organization contemplating export to obtain such\na license before exporting.\n\ + \nWITHIN THAT CONSTRAINT, permission to use, copy, modify, and distribute this\nsoftware\ + \ and its documentation for any purpose and without fee is hereby\ngranted, provided that\ + \ the above copyright notice appear in all copies and that\nboth that copyright notice and\ + \ this permission notice appear in supporting\ndocumentation, and that the name of M.I.T.\ + \ not be used in advertising or\npublicity pertaining to distribution of the software without\ + \ specific, written\nprior permission. Furthermore if you modify this software you must\ + \ label your\nsoftware as modified software and not distribute it in such a fashion that\ + \ it\nmight be confused with the original MIT software. M.I.T. makes no\nrepresentations\ + \ about the suitability of this software for any purpose. It is\nprovided ``as is'' without\ + \ express or implied warranty.\n\nThe following copyright and permission notice applies\ + \ to the OpenVision Kerberos\nAdministration system located in kadmin/create, kadmin/dbutil,\ + \ kadmin/passwd,\nkadmin/server, lib/kadm5, and portions of lib/rpc:\n\nCopyright, OpenVision\ + \ Technologies, Inc., 1996, All Rights Reserved\n\nWARNING: Retrieving the OpenVision Kerberos\ + \ Administration system source code,\nas described below, indicates your acceptance of the\ + \ following terms. If you do\nnot agree to the following terms, do not retrieve the OpenVision\ + \ Kerberos\nadministration system.\n\nYou may freely use and distribute the Source Code\ + \ and Object Code compiled from\nit, with or without modification, but this Source Code\ + \ is provided to you \"AS\nIS\" EXCLUSIVE OF ANY WARRANTY, INCLUDING, WITHOUT LIMITATION,\ + \ ANY WARRANTIES OF\nMERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY OTHER WARRANTY,\n\ + WHETHER EXPRESS OR IMPLIED. IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY FOR\nANY LOST\ + \ PROFITS, LOSS OF DATA OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES, OR FOR\ + \ ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES ARISING OUT OF\nTHIS AGREEMENT, INCLUDING,\ + \ WITHOUT LIMITATION, THOSE RESULTING FROM THE USE OF\nTHE SOURCE CODE, OR THE FAILURE OF\ + \ THE SOURCE CODE TO PERFORM, OR FOR ANY OTHER\nREASON.\n\nOpenVision retains all copyrights\ + \ in the donated Source Code. OpenVision also\nretains copyright to derivative works of\ + \ the Source Code, whether created by\nOpenVision or by a third party. The OpenVision copyright\ + \ notice must be\npreserved if derivative works are made based on the donated Source Code.\n\ + \nOpenVision Technologies, Inc. has donated this Kerberos Administration system\nto MIT\ + \ for inclusion in the standard Kerberos 5 distribution. This donation\nunderscores our\ + \ commitment to continuing Kerberos technology development and\nour gratitude for the valuable\ + \ work which has been performed by MIT and the\nKerberos community.\n\nThe implementation\ + \ of the Yarrow pseudo-random number generator in\nsrc/lib/crypto/yarrow has the following\ + \ copyright:\n\nCopyright 2000 by Zero-Knowledge Systems, Inc.\n\nPermission to use, copy,\ + \ modify, distribute, and sell this software and its\ndocumentation for any purpose is hereby\ + \ granted without fee, provided that the\nabove copyright notice appear in all copies and\ + \ that both that copyright notice\nand this permission notice appear in supporting documentation,\ + \ and that the name\nof Zero-Knowledge Systems, Inc. not be used in advertising or publicity\n\ + pertaining to distribution of the software without specific, written prior\npermission.\ + \ Zero-Knowledge Systems, Inc. makes no representations about the\nsuitability of this software\ + \ for any purpose. It is provided \"as is\" without\nexpress or implied warranty.\n\nZERO-KNOWLEDGE\ + \ SYSTEMS, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS\nSOFTWARE, INCLUDING ALL IMPLIED\ + \ WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO\nEVENT SHALL ZERO- KNOWLEDGE SYSTEMS,\ + \ INC. BE LIABLE FOR ANY SPECIAL, INDIRECT OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\ + \ RESULTING FROM LOSS OF USE, DATA\nOR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\ + \ OR OTHER TORTUOUS\nACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE\ + \ OF THIS\nSOFTWARE.\n\nThe implementation of the AES encryption algorithm in src/lib/crypto/aes\ + \ has the\nfollowing copyright: Copyright (c) 2001, Dr Brian Gladman ,\n\ + Worcester, UK. All rights reserved. LICENSE TERMS\n\nThe free distribution and use of this\ + \ software in both source and binary form is\nallowed (with or without changes) provided\ + \ that:\n\ndistributions of this source code include the above copyright notice, this list\n\ + of conditions and the following disclaimer;\n\ndistributions in binary form include the\ + \ above copyright notice, this list of\nconditions and the following disclaimer in the documentation\ + \ and/or other\nassociated materials;\n\nthe copyright holder's name is not used to endorse\ + \ products built using this\nsoftware without specific written permission.\n\nDISCLAIMER\n\ + \nThis software is provided 'as is' with no explcit or implied warranties in\nrespect of\ + \ any properties, including, but not limited to, correctness and\nfitness for purpose. University\ + \ of California at Berkeley, which includes this\ncopyright notice:\n\nCopyright @copyright{}\ + \ 1983 Regents of the University of California.@* All\nrights reserved.\n\nRedistribution\ + \ and use in source and binary forms, with or without modification,\nare permitted provided\ + \ that the following conditions are met:\n\nRedistributions of source code must retain the\ + \ above copyright notice, this list\nof conditions and the following disclaimer.\n\nRedistributions\ + \ in binary form must reproduce the above copyright notice, this\nlist of conditions and\ + \ the following disclaimer in the documentation and/or\nother materials provided with the\ + \ distribution.\n\nAll advertising materials mentioning features or use of this software\ + \ must\ndisplay the following acknowledgement:\n\nThis product includes software developed\ + \ by the University of California,\nBerkeley and its contributors.\n\nNeither the name of\ + \ the University nor the names of its contributors may be used\nto endorse or promote products\ + \ derived from this software without specific prior\nwritten permission." json: kerberos.json - yml: kerberos.yml + yaml: kerberos.yml html: kerberos.html - text: kerberos.LICENSE + license: kerberos.LICENSE - license_key: kevan-stannard + category: Permissive spdx_license_key: LicenseRef-scancode-kevan-stannard other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Permission to use, copy, modify, and distribute this software\nand its documentation\ + \ for NON-COMMERCIAL or COMMERCIAL purposes and\nwithout fee is hereby granted. \n\nPlease\ + \ note that this software comes with NO WARRANTY \n\nBECAUSE THE PROGRAM IS LICENSED FREE\ + \ OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED\nBY APPLICABLE\ + \ LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\n\ + PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,\ + \ INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\ + \ FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM\ + \ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY\ + \ SERVICING, REPAIR OR CORRECTION. \n\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR\ + \ AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER\nPARTY WHO MAY MODIFY AND/OR\ + \ REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING\ + \ ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY\ + \ TO USE\nTHE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED\ + \ INACCURATE OR LOSSES SUSTAINED\nBY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO\ + \ OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER\nOR OTHER PARTY HAS BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES." json: kevan-stannard.json - yml: kevan-stannard.yml + yaml: kevan-stannard.yml html: kevan-stannard.html - text: kevan-stannard.LICENSE + license: kevan-stannard.LICENSE - license_key: kevlin-henney + category: Permissive spdx_license_key: LicenseRef-scancode-kevlin-henney other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose is hereby granted without fee, provided + that this copyright and permissions notice appear in all copies and + derivatives. + + This software is supplied "as is" without express or implied warranty. + + But that said, if there are any problems please get in touch. json: kevlin-henney.json - yml: kevlin-henney.yml + yaml: kevlin-henney.yml html: kevlin-henney.html - text: kevlin-henney.LICENSE + license: kevlin-henney.LICENSE - license_key: kfqf-accepted-gpl + category: Copyleft spdx_license_key: LicenseRef-scancode-kfqf-accepted-gpl other_spdx_license_keys: - LicenseRef-KFQF-Accepted-GPL is_exception: yes is_deprecated: no - category: Copyleft + text: | + Alternatively, this file may be used under the terms of the GNU + General Public License version 2.0 or (at your option) the GNU General + Public license version 3 or any later version approved by the KDE Free + Qt Foundation. The licenses are as published by the Free Software + Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 + included in the packaging of this file. Please review the following + information to ensure the GNU General Public License requirements will + be met: https://www.gnu.org/licenses/gpl-2.0.html and + https://www.gnu.org/licenses/gpl-3.0.html. json: kfqf-accepted-gpl.json - yml: kfqf-accepted-gpl.yml + yaml: kfqf-accepted-gpl.yml html: kfqf-accepted-gpl.html - text: kfqf-accepted-gpl.LICENSE + license: kfqf-accepted-gpl.LICENSE - license_key: khronos + category: Permissive spdx_license_key: LicenseRef-scancode-khronos other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and/or associated documentation files (the + "Materials"), to deal in the Materials without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Materials, and to + permit persons to whom the Materials are furnished to do so, subject + to the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Materials. + + THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. json: khronos.json - yml: khronos.yml + yaml: khronos.yml html: khronos.html - text: khronos.LICENSE + license: khronos.LICENSE - license_key: kicad-libraries-exception + category: Copyleft Limited spdx_license_key: KiCad-libraries-exception other_spdx_license_keys: [] - is_exception: no + is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "To the extent that the creation of electronic designs that use 'Licensed Material'\ + \ \ncan be considered to be 'Adapted Material', then the copyright holder waives article\ + \ \n3 of the license with respect to these designs and any generated files which use\n data\ + \ provided as part of the 'Licensed Material'." json: kicad-libraries-exception.json - yml: kicad-libraries-exception.yml + yaml: kicad-libraries-exception.yml html: kicad-libraries-exception.html - text: kicad-libraries-exception.LICENSE + license: kicad-libraries-exception.LICENSE +- license_key: knuth-ctan + category: Permissive + spdx_license_key: Knuth-CTAN + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + This software is copyrighted. Unlimited copying and redistribution + of this package and/or its individual files are permitted + as long as there are no modifications. Modifications, and + redistribution of modifications, are also permitted, but + only if the resulting package and/or files are renamed. + json: knuth-ctan.json + yaml: knuth-ctan.yml + html: knuth-ctan.html + license: knuth-ctan.LICENSE - license_key: kreative-relay-fonts-free-use-1.2f + category: Proprietary Free spdx_license_key: LicenseRef-scancode-kreative-relay-fonts-free-1.2f other_spdx_license_keys: - LicenseRef-scancode-kreative-relay-fonts-free-use-1.2f is_exception: no is_deprecated: no - category: Proprietary Free + text: | + KREATIVE SOFTWARE RELAY FONTS FREE USE LICENSE + version 1.2f + + Permission is hereby granted, free of charge, to any person or entity (the "User") obtaining a copy of the included font files (the "Software") produced by Kreative Software, to utilize, display, embed, or redistribute the Software, subject to the following conditions: + + 1. The User may not sell copies of the Software for a fee. + + 1a. The User may give away copies of the Software free of charge provided this license and any documentation is included verbatim and credit is given to Kreative Korporation or Kreative Software. + + 2. The User may not modify, reverse-engineer, or create any derivative works of the Software. + + 3. Any Software carrying the following font names or variations thereof is not covered by this license and may not be used under the terms of this license: Jewel Hill, Miss Diode n Friends, This is Beckie's font! + + 3a. Any Software carrying a font name ending with the string "Pro CE" is not covered by this license and may not be used under the terms of this license. + + 4. This license becomes null and void if any of the above conditions are not met. + + 5. Kreative Software reserves the right to change this license at any time without notice. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE SOFTWARE OR FROM OTHER DEALINGS IN THE SOFTWARE. json: kreative-relay-fonts-free-use-1.2f.json - yml: kreative-relay-fonts-free-use-1.2f.yml + yaml: kreative-relay-fonts-free-use-1.2f.yml html: kreative-relay-fonts-free-use-1.2f.html - text: kreative-relay-fonts-free-use-1.2f.LICENSE + license: kreative-relay-fonts-free-use-1.2f.LICENSE - license_key: kumar-robotics + category: Permissive spdx_license_key: LicenseRef-scancode-kumar-robotics other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This code is 100% free. Use it anywhere you + want. Rewrite it, restructure it, whatever. If you can write software + that makes money off of it, good for you. I kinda like capitalism. + Please don't blame me if it causes your $30 billion dollar satellite + explode in orbit. If you redistribute it in any form, I'd appreciate it + if you would leave this notice here. json: kumar-robotics.json - yml: kumar-robotics.yml + yaml: kumar-robotics.yml html: kumar-robotics.html - text: kumar-robotics.LICENSE + license: kumar-robotics.LICENSE - license_key: lal-1.2 + category: Copyleft spdx_license_key: LAL-1.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "Licence Art Libre \n\L[ Copyleft Attitude ]\nVersion 1.2\n\nPréambule :\n\nAvec cette\ + \ Licence Art Libre, l’autorisation est donnée de copier, de diffuser et de transformer\ + \ librement les oeuvres dans le respect des droits de l’auteur.\n\nLoin d’ignorer les droits\ + \ de l’auteur, cette licence les reconnaît et les protège. Elle en reformule le principe\ + \ en permettant au public de faire un usage créatif des oeuvres d’art.\L \nAlors que l’usage\ + \ fait du droit de la propriété littéraire et artistique conduit à restreindre l’accès du\ + \ public à l’oeuvre, la Licence Art Libre a pour but de le favoriser.\L \nL’intention est\ + \ d’ouvrir l’accès et d’autoriser l’utilisation des ressources d’une oeuvre par le plus\ + \ grand nombre. En avoir jouissance pour en multiplier les réjouissances, créer de nouvelles\ + \ conditions de création pour amplifier les possibilités de création. Dans le respect des\ + \ auteurs avec la reconnaissance et la défense de leur droit moral.\n\nEn effet, avec la\ + \ venue du numérique, l’invention de l’internet et des logiciels libres, un nouveau mode\ + \ de création et de production est apparu. Il est aussi l’amplification de ce qui a été\ + \ expérimenté par nombre d’artistes contemporains. \nLe savoir et la création sont des ressources\ + \ qui doivent demeurer libres pour être encore véritablement du savoir et de la création.\ + \ C’est à dire rester une recherche fondamentale qui ne soit pas directement liée à une\ + \ application concrète. Créer c’est découvrir l’inconnu, c’est inventer le réel avant tout\ + \ souci de réalisme.\L \nAinsi, l’objet de l’art n’est pas confondu avec l’objet d’art fini\ + \ et défini comme tel.\LC’est la raison essentielle de cette Licence Art Libre : promouvoir\ + \ et protéger des pratiques artistiques libérées des seules règles de l’économie de marché.\n\ + \nDÉFINITIONS\n\n– L’oeuvre :\Lil s’agit d’une oeuvre commune qui comprend l’oeuvre originelle\ + \ ainsi que toutes les contributions postérieures (les originaux conséquents et les copies).\ + \ Elle est créée à l’initiative de l’auteur originel qui par cette licence définit les conditions\ + \ selon lesquelles les contributions sont faites.\n\n– L’oeuvre originelle :\Lc’est-à-dire\ + \ l’oeuvre créée par l’initiateur de l’oeuvre commune dont les copies vont être modifiées\ + \ par qui le souhaite.\n\n– Les oeuvres conséquentes :\Lc’est-à-dire les propositions des\ + \ auteurs qui contribuent à la formation de l’oeuvre en faisant usage des droits de reproduction,\ + \ de diffusion et de modification que leur confère la licence.\n\n– Original (source ou\ + \ ressource de l’oeuvre) :\Lexemplaire daté de l’oeuvre, de sa définition, de sa partition\ + \ ou de son programme que l’auteur présente comme référence pour toutes actualisations,\ + \ interprétations, copies ou reproductions ultérieures.\n\n– Copie :\Ltoute reproduction\ + \ d’un original au sens de cette licence.\n\n– Auteur de l’oeuvre originelle :\Lc’est la\ + \ personne qui a créé l’oeuvre à l’origine d’une arborescence de cette oeuvre modifiée.\ + \ Par cette licence, l’auteur détermine les conditions dans lesquelles ce travail se fait.\n\ + \n– Contributeur :\Ltoute personne qui contribue à la création de l’oeuvre. Il est l’auteur\ + \ d’une oeuvre originale résultant de la modification d’une copie de l’oeuvre originelle\ + \ ou de la modification d’une copie d’une oeuvre conséquente.\n\n1. OBJET \nCette licence\ + \ a pour objet de définir les conditions selon lesquelles vous pouvez jouir librement de\ + \ cette oeuvre.\n\n2. L’ÉTENDUE DE LA JOUISSANCE \nCette oeuvre est soumise au droit d’auteur,\ + \ et l’auteur par cette\Llicence vous indique quelles sont vos libertés pour la copier,\ + \ la\Ldiffuser et la modifier:\n\n2.1 LA LIBERTÉ DE COPIER (OU DE REPRODUCTION) \nVous avez\ + \ la liberté de copier cette oeuvre pour un usage personnel, pour vos amis, ou toute autre\ + \ personne et quelque soit la technique employée.\n\n2.2 LA LIBERTÉ DE DIFFUSER, D’INTERPRÉTER\ + \ (OU DE REPRÉSENTATION) \nVous pouvez diffuser librement les copies de ces oeuvres, modifiées\L\ + ou non, quel que soit le support, quel que soit le lieu, à titre onéreux ou gratuit si vous\ + \ respectez toutes les conditions suivantes:\L \n– joindre aux copies, cette licence à l’identique,\ + \ ou indiquer précisément où se trouve la licence,\L – indiquer au destinataire le nom de\ + \ l’auteur des originaux,\L – indiquer au destinataire où il pourra avoir accès aux originaux\L\ + (originels et/ou conséquents). L’auteur de l’original pourra, s’il le souhaite, vous autoriser\ + \ à diffuser l’original dans les mêmes conditions que les copies.\n\n2.3 LA LIBERTÉ DE MODIFIER\ + \ \nVous avez la liberté de modifier les copies des originaux (originels\Let conséquents),\ + \ qui peuvent être partielles ou non, dans le respect des conditions prévues à l’article\ + \ 2.2 en cas de diffusion (ou représentation) de la copie modifiée.\LL’auteur de l’original\ + \ pourra, s’il le souhaite, vous autoriser à modifier l’original dans les mêmes conditions\ + \ que les copies.\n\n3. L’INCORPORATION DE L’OEUVRE \nTous les éléments de cette oeuvre\ + \ doivent demeurer libres, c’est pourquoi il ne vous est pas permis d’intégrer les originaux\ + \ (originels et conséquents) dans une autre oeuvre qui ne serait pas soumise à cette licence.\n\ + \n4. VOS DROITS D’AUTEUR \nCette licence n’a pas pour objet de nier vos droits d’auteur\ + \ sur votre contribution. En choisissant de contribuer à l’évolution de cette oeuvre, vous\ + \ acceptez seulement d’offrir aux autres les mêmes droits sur votre contribution que ceux\ + \ qui vous ont été accordés par cette licence.\n\n5. LA DURÉE DE LA LICENCE \nCette licence\ + \ prend effet dès votre acceptation de ses dispositions. Le fait de copier, de diffuser,\ + \ ou de modifier l’oeuvre constitue une acception tacite.\LCette licence a pour durée la\ + \ durée des droits d’auteur attachés à l’oeuvre. Si vous ne respectez pas les termes de\ + \ cette licence, vous perdez automatiquement les droits qu’elle vous confère.\LSi le régime\ + \ juridique auquel vous êtes soumis ne vous permet pas de respecter les termes de cette\ + \ licence, vous ne pouvez pas vous prévaloir des libertés qu’elle confère.\n\n6. LES DIFFÉRENTES\ + \ VERSIONS DE LA LICENCE \nCette licence pourra être modifiée régulièrement, en vue de son\ + \ amélioration, par ses auteurs (les acteurs du mouvement « copyleft attitude ») sous la\ + \ forme de nouvelles versions numérotées. \nVous avez toujours le choix entre vous contenter\ + \ des dispositions contenues dans la version sous laquelle la copie vous a été communiquée\ + \ ou alors, vous prévaloir des dispositions d’une des versions ultérieures.\n\n7. LES SOUS-LICENCES\ + \ \nLes sous licences ne sont pas autorisées par la présente. Toute personne qui souhaite\ + \ bénéficier des libertés qu’elle confère sera liée directement à l’auteur de l’oeuvre originelle.\n\ + \n8. LA LOI APPLICABLE AU CONTRAT \nCette licence est soumise au droit français." json: lal-1.2.json - yml: lal-1.2.yml + yaml: lal-1.2.yml html: lal-1.2.html - text: lal-1.2.LICENSE + license: lal-1.2.LICENSE - license_key: lal-1.3 + category: Copyleft spdx_license_key: LAL-1.3 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "Licence Art Libre 1.3 (LAL 1.3)\nPréambule :\n\nAvec la Licence Art Libre, l’autorisation\ + \ est donnée de copier, de diffuser et de transformer librement les œuvres dans le respect\ + \ des droits de l’auteur.\n\nLoin d’ignorer ces droits, la Licence Art Libre les reconnaît\ + \ et les protège. Elle en reformule l’exercice en permettant à tout un chacun de faire un\ + \ usage créatif des productions de l’esprit quels que soient leur genre et leur forme d’expression.\n\ + \nSi, en règle générale, l’application du droit d’auteur conduit à restreindre l’accès aux\ + \ œuvres de l’esprit, la Licence Art Libre, au contraire, le favorise. L’intention est d’autoriser\ + \ l’utilisation des ressources d’une œuvre ; créer de nouvelles conditions de création pour\ + \ amplifier les possibilités de création. La Licence Art Libre permet d’avoir jouissance\ + \ des œuvres tout en reconnaissant les droits et les responsabilités de chacun.\n\nAvec\ + \ le développement du numérique, l’invention d’internet et des logiciels libres, les modalités\ + \ de création ont évolué : les productions de l’esprit s’offrent naturellement à la circulation,\ + \ à l’échange et aux transformations. Elles se prêtent favorablement à la réalisation d’œuvres\ + \ communes que chacun peut augmenter pour l’avantage de tous.\n\nC’est la raison essentielle\ + \ de la Licence Art Libre : promouvoir et protéger ces productions de l’esprit selon les\ + \ principes du copyleft : liberté d’usage, de copie, de diffusion, de transformation et\ + \ interdiction d’appropriation exclusive.\n\nDéfinitions :\n\nNous désignons par « œuvre\ + \ », autant l’œuvre initiale, les œuvres conséquentes, que l’œuvre commune telles que définies\ + \ ci-après :\n\nL’œuvre commune :\LIl s’agit d’une œuvre qui comprend l’œuvre initiale ainsi\ + \ que toutes les contributions postérieures (les originaux conséquents et les copies). Elle\ + \ est créée à l’initiative de l’auteur initial qui par cette licence définit les conditions\ + \ selon lesquelles les contributions sont faites.\n\nL’œuvre initiale :\LC’est-à-dire l’œuvre\ + \ créée par l’initiateur de l’œuvre commune dont les copies vont être modifiées par qui\ + \ le souhaite.\n\nLes œuvres conséquentes :\LC’est-à-dire les contributions des auteurs\ + \ qui participent à la formation de l’œuvre commune en faisant usage des droits de reproduction,\ + \ de diffusion et de modification que leur confère la licence.\n\nOriginaux (sources ou\ + \ ressources de l’œuvre) :\LChaque exemplaire daté de l’œuvre initiale ou conséquente que\ + \ leurs auteurs présentent comme référence pour toutes actualisations, interprétations,\ + \ copies ou reproductions ultérieures.\n\nCopie :\LToute reproduction d’un original au sens\ + \ de cette licence.\n\n1- OBJET. \nCette licence a pour objet de définir les conditions\ + \ selon lesquelles vous pouvez jouir librement de l’œuvre.\n\n2. L’ÉTENDUE DE LA JOUISSANCE.\ + \ \nCette œuvre est soumise au droit d’auteur, et l’auteur par cette licence vous indique\ + \ quelles sont vos libertés pour la copier, la diffuser et la modifier.\n\n2.1 LA LIBERTÉ\ + \ DE COPIER (OU DE REPRODUCTION). \nVous avez la liberté de copier cette œuvre pour vous,\ + \ vos amis ou toute autre personne, quelle que soit la technique employée.\n\n2.2 LA LIBERTÉ\ + \ DE DIFFUSER (INTERPRÉTER, REPRÉSENTER, DISTRIBUER). \nVous pouvez diffuser librement les\ + \ copies de ces œuvres, modifiées ou non, quel que soit le support, quel que soit le lieu,\ + \ à titre onéreux ou gratuit, si vous respectez toutes les conditions suivantes :\n\n1.\t\ + joindre aux copies cette licence à l’identique ou indiquer précisément où se trouve la licence\ + \ ; \n2.\tindiquer au destinataire le nom de chaque auteur des originaux, y compris le vôtre\ + \ si vous avez modifié l’œuvre ; \n3.\tindiquer au destinataire où il pourrait avoir accès\ + \ aux originaux (initiaux et/ou conséquents).\n\nLes auteurs des originaux pourront, s’ils\ + \ le souhaitent, vous autoriser à diffuser l’original dans les mêmes conditions que les\ + \ copies.\n\n2.3 LA LIBERTÉ DE MODIFIER. \nVous avez la liberté de modifier les copies des\ + \ originaux (initiaux et conséquents) dans le respect des conditions suivantes :\n\n1.\t\ + celles prévues à l’article 2.2 en cas de diffusion de la copie modifiée ; \n2.\tindiquer\ + \ qu’il s’agit d’une œuvre modifiée et, si possible, la nature de la modification ; \n3.\t\ + diffuser cette œuvre conséquente avec la même licence ou avec toute licence compatible ;\ + \ \n4.\tLes auteurs des originaux pourront, s’ils le souhaitent, vous autoriser à modifier\ + \ l’original dans les mêmes conditions que les copies.\n\n3. DROITS CONNEXES. \nLes actes\ + \ donnant lieu à des droits d’auteur ou des droits voisins ne doivent pas constituer un\ + \ obstacle aux libertés conférées par cette licence.\LC’est pourquoi, par exemple, les interprétations\ + \ doivent être soumises à la même licence ou une licence compatible. De même, l’intégration\ + \ de l’œuvre à une base de données, une compilation ou une anthologie ne doit pas faire\ + \ obstacle à la jouissance de l’œuvre telle que définie par cette licence.\n\n4. L’ INTÉGRATION\ + \ DE L’ŒUVRE. \nToute intégration de cette œuvre à un ensemble non soumis à la LAL doit\ + \ assurer l’exercice des libertés conférées par cette licence. \nSi l’œuvre n’est plus accessible\ + \ indépendamment de l’ensemble, alors l’intégration n’est possible qu’à condition que l’ensemble\ + \ soit soumis à la LAL ou une licence compatible.\n\n5. CRITÈRES DE COMPATIBILITÉ. \nUne\ + \ licence est compatible avec la LAL si et seulement si :\n\n1.\telle accorde l’autorisation\ + \ de copier, diffuser et modifier des copies de l’œuvre, y compris à des fins lucratives,\ + \ et sans autres restrictions que celles qu’impose le respect des autres critères de compatibilité\ + \ ; \n2.\telle garantit la paternité de l’œuvre et l’accès aux versions antérieures de l’œuvre\ + \ quand cet accès est possible ; \n3.\telle reconnaît la LAL également compatible (réciprocité)\ + \ ; \n4.\telle impose que les modifications faites sur l’œuvre soient soumises à la même\ + \ licence ou encore à une licence répondant aux critères de compatibilité posés par la LAL.\n\ + \n6. VOS DROITS INTELLECTUELS. \nLa LAL n’a pas pour objet de nier vos droits d’auteur sur\ + \ votre contribution ni vos droits connexes. En choisissant de contribuer à l’évolution\ + \ de cette œuvre commune, vous acceptez seulement d’offrir aux autres les mêmes autorisations\ + \ sur votre contribution que celles qui vous ont été accordées par cette licence. Ces autorisations\ + \ n’entraînent pas un dessaisissement de vos droits intellectuels.\n\n7. VOS RESPONSABILITÉS.\ + \ \nLa liberté de jouir de l’œuvre tel que permis par la LAL (liberté de copier, diffuser,\ + \ modifier) implique pour chacun la responsabilité de ses propres faits.\n\n8. LA DURÉE\ + \ DE LA LICENCE. \nCette licence prend effet dès votre acceptation de ses dispositions.\ + \ Le fait de copier, de diffuser, ou de modifier l’œuvre constitue une acceptation tacite.\L\ + \ \nCette licence a pour durée la durée des droits d’auteur attachés à l’œuvre. Si vous\ + \ ne respectez pas les termes de cette licence, vous perdez automatiquement les droits qu’elle\ + \ vous confère.\LSi le régime juridique auquel vous êtes soumis ne vous permet pas de respecter\ + \ les termes de cette licence, vous ne pouvez pas vous prévaloir des libertés qu’elle confère.\n\ + \n9. LES DIFFÉRENTES VERSIONS DE LA LICENCE. \nCette licence pourra être modifiée régulièrement,\ + \ en vue de son amélioration, par ses auteurs (les acteurs du mouvement Copyleft Attitude)\ + \ sous la forme de nouvelles versions numérotées.\L \nVous avez toujours le choix entre\ + \ vous contenter des dispositions contenues dans la version de la LAL sous laquelle la copie\ + \ vous a été communiquée ou alors, vous prévaloir des dispositions d’une des versions ultérieures.\n\ + \n10. LES SOUS-LICENCES. \nLes sous-licences ne sont pas autorisées par la présente. Toute\ + \ personne qui souhaite bénéficier des libertés qu’elle confère sera liée directement aux\ + \ auteurs de l’œuvre commune.\n\n11. LE CONTEXTE JURIDIQUE. \nCette licence est rédigée\ + \ en référence au droit français et à la Convention de Berne relative au droit d’auteur." json: lal-1.3.json - yml: lal-1.3.yml + yaml: lal-1.3.yml html: lal-1.3.html - text: lal-1.3.LICENSE + license: lal-1.3.LICENSE - license_key: larabie + category: Proprietary Free spdx_license_key: LicenseRef-scancode-larabie other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "The fonts contained in this archive are Freeware. No payment is required for the use\ + \ of these fonts. They're free!\nCommercial use? Sure, but a donation or a product sample\ + \ would be appreciated.\n\n$40 US is the usual donation amount per font for commercial use\ + \ but any amount is appreciated.\n\nI make all the fonts (over 400 of them) on my web page\ + \ and they're all free. I offer Deluxe versions of some of my\nfonts for sale. They contain\ + \ several weights and styles of each font. Just click on \"DELUXE FONTS\" at\nLarabie Fonts\ + \ to see them.\n\nThe site is called Larabie Fonts and it can be found at various mirror\ + \ sites:\n\ntry:\nhttp://www.larabiefonts.com\nhttp://uk.zarcrom.com/font/\nhttp://come.to/larabiefonts\n\ + \nI've provided the world with over 400 free fonts, so if you'd like to make a donation\ + \ I'd be more than happy to accept it.\nNo donation is too small.\n\nSend anything at all\ + \ to\n\nRay Larabie\n61 Wesley Ave.\nPort Credit\nOntario, CANADA\nL5H 2M8\n\nIf you decide\ + \ to send a cheque (that's how we spell it in Canada) make it payable to Ray Larabie. If\ + \ you want to\ndouble check the address have a look at the donation section on any of my\ + \ webpages. If you'd like to use a credit card\nto send a donation drop by my site and\ + \ click on the DONATIONS section.\n\nCanadian or US funds? Any funds are fine with me.\ + \ Whatever's easiest for you.\n\nRay Larabie\ndrowsy@cheerful.com or rlarabie@hotmail.com\n\ + \nHere's an unofficial, non-legalese summary of the following contract:\nYou can use the\ + \ font for commercial or non-commercial purposes. You can make things with the font, just\ + \ don't change\nthe font itself or use it to make new fonts. You can give the font away\ + \ as long as it hasn't been altered and this text file\nremains with the font. Don't remove\ + \ or alter the copyright notice on the font. Don't convert the fonts if the conversion\n\ + program alters the copyright notice. If my font makes your hair fall out - thats' too damn\ + \ bad!\n\n\n-------------------------------\nLarabie Fonts End-user license agreement software\ + \ product from Larabie Fonts\n---------------------------------------------------\n\nSOFTWARE\ + \ PRODUCT LICENSE\n\nThe SOFTWARE PRODUCT is protected by copyright laws and international\ + \ copyright treaties,\nas well as other intellectual property laws and treaties. The SOFTWARE\ + \ PRODUCT is licensed,\nnot sold.\n\n1. GRANT OF LICENSE. This document grants you the following\ + \ rights:\n\n- Installation and Use. You may install and use an unlimited number of copies\ + \ of the\nSOFTWARE PRODUCT.\n\n- Reproduction and Distribution. You may reproduce and distribute\ + \ an unlimited number of\ncopies of the SOFTWARE PRODUCT; provided that each copy shall\ + \ be a true and complete copy,\nincluding all copyright and trademark notices (if applicable)\ + \ , and shall be accompanied by\na copy of this text file. Copies of the SOFTWARE PRODUCT\ + \ may not be distributed for profit\neither on a standalone basis or included as part of\ + \ your own product unless by prior\npermission of Larabie Fonts. \n\n2. DESCRIPTION OF OTHER\ + \ RIGHTS AND LIMITATIONS. \n\n- Restrictions on Alteration. You may not rename, edit or\ + \ create any derivative works from\nthe SOFTWARE PRODUCT, other than subsetting when embedding\ + \ them in documents unless you have\npermission from Larabie Fonts.\n\nLIMITED WARRANTY\n\ + NO WARRANTIES. Larabie Fonts expressly disclaims any warranty for the SOFTWARE PRODUCT.\ + \ The\nSOFTWARE PRODUCT and any related documentation is provided \"as is\" without warranty\ + \ of any\nkind, either express or implied, including, without limitation, the implied warranties\ + \ or\nmerchantability, fitness for a particular purpose, or noninfringement. The entire\ + \ risk\narising out of use or performance of the SOFTWARE PRODUCT remains with you.\n\n\ + NO LIABILITY FOR CONSEQUENTIAL DAMAGES. In no event shall Larabie Fonts be liable for any\n\ + damages whatsoever (including, without limitation, damages for loss of business profits,\n\ + business interruption, loss of business information, or any other pecuniary loss) arising\n\ + out of the use of or inability to use this product, even if Larabie Fonts has been advised\n\ + of the possibility of such damages.\n\n3. MISCELLANEOUS\n\nShould you have any questions\ + \ concerning this document, or if you desire to contact\nLarabie Fonts for any reason, please\ + \ contact rlarabie@hotmail.com , or write: Ray Larabie,\n61 Wesley Ave. Mississauga, ON\ + \ Canada L5H 2M8" json: larabie.json - yml: larabie.yml + yaml: larabie.yml html: larabie.html - text: larabie.LICENSE + license: larabie.LICENSE - license_key: latex2e + category: Permissive spdx_license_key: Latex2e other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is granted to make and distribute verbatim copies of this + manual provided the copyright notice and this permission notice are + preserved on all copies. + + Permission is granted to copy and distribute modified versions of this + manual under the conditions for verbatim copying, provided that the + entire resulting derived work is distributed under the terms of a + permission notice identical to this one. + + Permission is granted to copy and distribute translations of this manual + into another language, under the above conditions for modified versions. json: latex2e.json - yml: latex2e.yml + yaml: latex2e.yml html: latex2e.html - text: latex2e.LICENSE + license: latex2e.LICENSE +- license_key: lattice-osl-2017 + category: Copyleft Limited + spdx_license_key: LicenseRef-scancode-lattice-osl-2017 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: "LATTICE OPEN SOURCE LICENSE AGREEMENT\n\nThis is a legal agreement between You (Licensee,\ + \ either a company or an individual), and Lattice Semiconductor Corporation if You are located\ + \ in the United States or Lattice SG Pte. Ltd. if You are located in a country other than\ + \ the United States. Lattice Semiconductor Corporation or Lattice SG Pte. Ltd. is the Provider\ + \ (Licensor) of the Software. If a component covered by this Agreement can be included\ + \ in the output files generated by the Provider’s LatticeMico System or any other Provider\ + \ source code generation tool, then Software refers to such output files that includes that\ + \ component. Otherwise, Software refers to the component on a standalone basis. By proceeding\ + \ with the installation, modification, use or distribution in whole or in part of Software\ + \ that identifies itself as licensed under the Lattice Open Source License Agreement, You\ + \ agree to be bound by the terms of this Agreement. If You do not agree to the terms of\ + \ this Agreement, You are not permitted to use, modify or distribute the Software.\n\n1.\ + \ The Provider grants to You a personal, non-exclusive right to use and distribute the source\ + \ code of the Software provided that:\n - You make distributions free of charge under these\ + \ license terms\n - You ensure that the original copyright notices and limitations of liability\ + \ and warranty sections remain intact.\n\n2. The Provider grants to You a personal, non-exclusive\ + \ right to modify the source code of the Software and incorporate it with other source code\ + \ to create a Derivative Work (as defined below). At Your discretion, You may distribute\ + \ this Derivative Work under terms of Your choosing provided:\n - You arrange Your design\ + \ such that the Derivative Work is an identifiable module within Your overall design.\n\ + \ - You distribute the source code associated with the modules containing the Derivative\ + \ Work in a customarily accepted machine-readable format, free of charge under a license\ + \ agreement that contains these license terms. \n - You ensure that the original copyright\ + \ notices and limitations of liability and warranty sections remain intact.\n - You clearly\ + \ identify areas of the source code that You have modified.\n\n“Derivative Work” means a\ + \ version of the Software in source code form that contains modifications or additions to\ + \ the original source code and includes all Software files used to implement Your design.\ + \ Derivative Work does not include identifiable modules within Your design that are not\ + \ derived from the Software and that can be reasonably considered independent and separate\ + \ modules from the Software.\n\n3. The Provider grants to You a personal, non-exclusive\ + \ right to use object code created from the Software or a Derivative Work to physically\ + \ implement the design in devices such as a programmable logic devices or application specific\ + \ integrated circuits. You may distribute these devices without accompanying them with\ + \ a copy of this license or source code.\n\n4. This Software is provided free of charge.\ + \ IN NO EVENT WILL THE PROVIDER OR ANY OF ITS SUPPLIERS BE LIABLE TO YOU OR ANY OTHER PERSON\ + \ FOR ANY DAMAGES, INCLUDING ANY DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, OR SPECIAL\ + \ DAMAGES, WHETHER CHARACTERIZED AS EXPENSES, LOST PROFITS, LOST SAVINGS, OR OTHER DAMAGES\ + \ OF ANY SORT, ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF THE PROVIDER\ + \ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n5. THE PROVIDER MAKES NO WARRANTIES\ + \ WITH RESPECT TO THE SOFTWARE, WHETHER EXPRESSED, IMPLIED, STATUTORY, OR IN ANY OTHER PROVISION\ + \ OF THIS AGREEMENT OR COMMUNICATION WITH YOU, AND THE PROVIDER SPECIFICALLY DISCLAIMS ANY\ + \ IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT\ + \ OF THIRD PARTY RIGHTS. THE PROVIDER DOES NOT WARRANT THAT USE OF THE SOFTWARE WILL BE\ + \ UNINTERRUPTED OR ERROR FREE. YOU ASSUME RESPONSIBILITY FOR SELECTION OF THE SOFTWARE TO\ + \ ACHIEVE ITS INTENDED RESULTS AND FOR THE PROPER INSTALLATION, USE, AND RESULTS OBTAINED\ + \ FROM THE SOFTWARE. YOU ASSUME THE ENTIRE RISK OF THE SOFTWARE PROVING DEFECTIVE OR FAILING\ + \ TO PERFORM PROPERLY, AND IN SUCH EVENT, YOU ASSUME THE ENTIRE COST AND RISK OF ANY REPAIR,\ + \ SERVICE, CORRECTION, OR ANY OTHER LIABILITIES OR DAMAGES CAUSED BY OR ASSOCIATED WITH\ + \ THE SOFTWARE. THE SOLE LIABILITIES AND REMEDIES ASSOCIATED WITH THE SOFTWARE ARE SET FORTH\ + \ ABOVE. \n\n6. Export Control. You agree that neither the Software nor any Derivative Work\ + \ will be exported, directly or indirectly, into any country or to any person or entity,\ + \ in violation of laws or regulations of the United States or other applicable governments.\ + \ This Agreement will be governed by the substantive laws of the State of Oregon, USA.\n\ + \n7. Default and Termination. This Agreement will continue indefinitely, until and unless\ + \ terminated. You may terminate this Agreement by destroying all copies of the materials\ + \ to which this Agreement applies. The Agreement will terminate automatically if due to\ + \ any event, including court judgment, You fail to perform any of Your obligations hereunder.\ + \ In the event of termination, others that have received software from You under the terms\ + \ of this Agreement may continue to use it provided they remain in compliance with the terms\ + \ of this Agreement.\n\n8. Your use of this Software is governed by this Lattice Open Source\ + \ License Agreement. However, depending on your design, the output files generated by the\ + \ LatticeMico System or by any other Provider source code generation tool may contain open\ + \ source code provided by a third party. Specifically, the output files may contain open\ + \ source code that is licensed pursuant to the terms attached to the LatticeMicoTM System\ + \ License Agreement as Appendix B. By agreeing to the terms of this Lattice Open Source\ + \ License Agreement, you are also agreeing to use such code in accordance with the terms\ + \ of the agreement under which such code has been licensed, if applicable.\n\n9. From time\ + \ to time Lattice may issue revised versions of the Lattice Open Source License Agreement.\ + \ Revisions will follow the spirit of this version but will contain adjustments and clarifications\ + \ to address issues and concerns of Lattice and the user community.\n\n10. Any conflict\ + \ between the terms of this Agreement and the licensing terms included in the header files\ + \ provided with the Software will be resolved in favor of this Agreement.\n\n©2006-2017\ + \ Lattice Semiconductor Corporation. You may freely distribute the text of this Agreement\ + \ provided you include this copyright notice. However, modifications to the substantive\ + \ terms herein are not permitted. \n\n20170329" + json: lattice-osl-2017.json + yaml: lattice-osl-2017.yml + html: lattice-osl-2017.html + license: lattice-osl-2017.LICENSE - license_key: lavantech + category: Commercial spdx_license_key: LicenseRef-scancode-lavantech other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "LavanTech License\nhttp://www.lavantech.com/license.shtml \n\nLicense\nBy using or\ + \ installing any software product(including source code and corresponding documentation)\ + \ created by LavanTech (hereafter referred to as \"Software\"), you are agreeing to be bound\ + \ by the terms and conditions of this License Agreement. As used in this License Agreement,\ + \ \"You\" shall mean the individual using or installing the Software together with any individual\ + \ or entity, including but not limited to your employer, on whose behalf you are acting\ + \ in using or installing the Software. You shall be the \"Licensee\" under this License\ + \ Agreement. This License Agreement constitutes the complete agreement between you and LavanTech.\ + \ No amendment or modification may be made to this Agreement except in writing signed by\ + \ you and LavanTech. If you do not agree to the terms and conditions of the Agreement, discontinue\ + \ use of the Software immediately.\n1. License Grant \nIn consideration for the license\ + \ fee paid, and other good and valuable consideration, LavanTech grants to you only, the\ + \ Licensee, the non-exclusive, world-wide right to use the Software in accordance with the\ + \ license You purchase. If you are using this product for your employer, this agreement\ + \ also includes your employer.\nTrial/Demo License\nSoftware that is distributed as Trial/Demo\ + \ may only be used for testing and evaluation purposes by a single Developer. The Trial/Demo\ + \ Software cannot be distributed as part of your software. The software license is valid\ + \ only for 30 days from the time of download or installation. The Trial/Demo Software should\ + \ be destroyed after the Trial period.\n\nDeveloper License \nSingle Developer License allows\ + \ one developer to use the Software for development and integration of any number of applications.\ + \ If you have more than one developer that will be developing applications using the Software,\ + \ You will need to purchase a Developer License for each additional Developer. The 5 Developer\ + \ License grants the rights of the Developer License for up to 5 developers. The Enterprise\ + \ Developer License grants the rights of the Developer License for unlimited number of Developers\ + \ within a same organization. Personal/Non-Commercial Developer License grants the rights\ + \ of the Developer License for one Developer for Non-Commercial Purposes. \"Non-Commercial\ + \ Purposes\" means use of the software by an individual who does not directly or indirectly\ + \ support any commercial efforts.\n\nThe Developer License allows the developer royalty-free\ + \ unlimited distribution of the Software bundled with an application, provided You adhere\ + \ to the following distribution terms:\n•\tYou may not resell, rent, lease or distribute\ + \ the Software alone. The Software must be distributed as a component of an application\ + \ and bundled with an application or with the application's installation files. The Software\ + \ may only be used as part of, and in connection with, the bundled application.\n•\tYou\ + \ may not resell, rent, lease or distribute Software in any way that would compete with\ + \ LavanTech.\n•\tYou shall protect and keep secure all source code provided with Software.\ + \ All source code provided with Software that is distributed with an application must be\ + \ compiled or password protected to the extent that only the software developer(s) may obtain\ + \ access to it.\n•\tA valid copyright notice must be provided within the user documentation,\ + \ start-up screen or in the help-about section of your application that specifies LavanTech\ + \ as the provider of the Software bundled with Your application, for example: \"<> contains components licensed from LavanTech. These components may only be used\ + \ as part of and in connection with <>.\"\n\nSource Code License\ + \ If a source code license is purchased, LavanTech grants you the right to use and modify\ + \ the LavanTech source under the following condition.\n•\tLavanTech shall retain all right,\ + \ title and interest in and to all updates, modifications, enhancements and derivative works,\ + \ in whole or in part, of the LavanTech Source Code created by you, including all copyrights\ + \ subsisting therein, to the extent such modifications, enhancements or derivative works\ + \ contain copyrightable code or expression derived from the LavanTech source code; provided,\ + \ however, that LavanTech grants to you a fully-paid, royalty free license, to use copy\ + \ and modify such updates, modifications, enhancements and derivative works or copies thereof\ + \ for use as authorized in this License.\n•\tYou may not distribute the LavanTech source\ + \ code, or any modified version or derivative work of the LavanTech source code, in source\ + \ code form.\n•\tLavanTech require all developers who plan to access LavanTech source code\ + \ signing on the source code license. As long as they signed, they become registered developers.\ + \ An alternative to this is to let a delegate signs source code license as an organization.\ + \ The delegate will be responsible for letting other developers who plan to access the source\ + \ code reviewing this license agreement first before releasing them the access.\n•\tThe\ + \ source code contained herein and in related files is provided to the registered developer\ + \ for the purposes of education and troubleshooting. Under no circumstances may any portion\ + \ of the source code be distributed, disclosed or otherwise made available to any third\ + \ party without the express written consent of LavanTech.\n•\tUnder no circumstances may\ + \ the source code be used in whole or in part, as the basis for creating a product that\ + \ provides the same, or substantially the same, functionality as any LavanTech products.\n\ + •\tThe registered developer acknowledges that this source code contains valuable and proprietary\ + \ trade secrets of LavanTech. The registered developer agrees to expend every effort to\ + \ insure its confidentiality. For example, under no circumstances may the registered developer\ + \ allow to put the source code on an internal network where he or she has no control.\n\ + •\tDue to the insecurity of Java byte-code, if you plan to use classes that built from the\ + \ source code directly, you must agree to obfuscate the classes before distributing it to\ + \ your customers.\n2. Copyright\nThe LavanTech Software and the accompanying materials are\ + \ copyrighted and contain proprietary information. Unauthorized copying of the Software\ + \ or accompanying materials even if modified, merged, or included with other software, or\ + \ of the written materials, is expressly forbidden. You may be held legally responsible\ + \ for any infringement of intellectual property rights that is caused or encouraged by your\ + \ failure to abide by the terms of this Agreement. You may make copies of the Software solely\ + \ for backup purposes provided the copyright and trademark notices are reproduced in their\ + \ entirety on the backup copy. LavanTech reserves all rights not specifically granted to\ + \ Licensee.\nThe Software and documentation are licensed, not sold, to you. You may not\ + \ rent, lease, display or distribute copies of the Software to others except under the conditions\ + \ of the Developer License. You may not disassemble, decompose, reverse engineer, or alter\ + \ the Software. \n3. Termination\nThis Agreement is effective until terminated. This Agreement\ + \ will terminate automatically without notice from LavanTech if You fail to comply with\ + \ any provision contained herein or if the funds paid for the license are refunded or are\ + \ not received. Upon termination, you must destroy the Software, and all copies of them,\ + \ in part and in whole, including modified copies, if any. If you have distributed Software\ + \ with an application under the Developer License, you may continue to use said Software\ + \ for up to 90 days after termination. LavanTech reserves the right to terminate the Agreement\ + \ for any reason that competes with or negatively effects LavanTech.\n4. Warranty\nAlthough\ + \ efforts have been made to assure that the Software is date compliant, correct, reliable,\ + \ and technically accurate, the Software is licensed to you as is and without warranties\ + \ as to performance of merchantability, fitness for a particular purpose or use, or any\ + \ other warranties whether expressed or implied. You, your organization and all users of\ + \ the Software, assume all risks when using it. The manufacturers, distributors and resellers\ + \ of the Software shall not be liable for any consequential, incidental, punitive or special\ + \ damages arising out of the use of or inability to use the Software or the provision of\ + \ or failure to provide support services, even if we have been advised of the possibility\ + \ of such damages.\n5. Technical Support\nLavanTech offers free technical support over email\ + \ for all its latest version of the software. \n6. Controlling Law and Severability\nThis\ + \ License Agreement shall be governed by and construed in accordance with the laws of the\ + \ United States and the State of Ohio, as applied to agreements entered into and to be performed\ + \ entirely within Ohio between Ohio residents. The courts of the State of Ohio, County of\ + \ Lake, shall have exclusive jurisdiction and venue over any dispute, proceeding or action\ + \ arising out of or in connection with this License Agreement or your use of the Software.\ + \ If for any reason a court of competent jurisdiction finds any provision of this License\ + \ Agreement, or portion thereof, to be unenforceable, that provision of the License Agreement\ + \ shall be enforced to the maximum extent permissible so as to effect the intent of the\ + \ parties, and the remainder of this License Agreement shall continue in full force and\ + \ effect.\n7. Non-Waiver\nThe failure by either party at any time to enforce any of the\ + \ provisions of this License Agreement or any right or remedy available hereunder or at\ + \ law or in equity, or to exercise any option herein provided, shall not constitute a waiver\ + \ of such provision, right, remedy or option or in any way affect the validity of this License\ + \ Agreement. The waiver of any default by either party shall not be deemed a continuing\ + \ waiver, but shall apply solely to the instance to which such waiver is directed.\n8. Return\ + \ Policy \nAll returns must be received within 30 days of purchase." json: lavantech.json - yml: lavantech.yml + yaml: lavantech.yml html: lavantech.html - text: lavantech.LICENSE + license: lavantech.LICENSE - license_key: lbnl-bsd + category: Permissive spdx_license_key: BSD-3-Clause-LBNL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Copyright (c) 2003, The Regents of the University of California, through\nLawrence\ + \ Berkeley National Laboratory (subject to receipt of any required\napprovals from the U.S.\ + \ Dept. of Energy). All rights reserved. \n\nRedistribution and use in source and binary\ + \ forms, with or without modification,\nare permitted provided that the following conditions\ + \ are met:\n\n(1) Redistributions of source code must retain the above copyright notice,\n\ + this list of conditions and the following disclaimer.\n\n(2) Redistributions in binary form\ + \ must reproduce the above copyright notice,\nthis list of conditions and the following\ + \ disclaimer in the documentation\nand/or other materials provided with the distribution.\n\ + \n(3) Neither the name of the University of California, Lawrence Berkeley National\nLaboratory,\ + \ U.S. Dept. of Energy nor the names of its contributors may be\nused to endorse or promote\ + \ products derived from this software without specific\nprior written permission.\n\nTHIS\ + \ SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS\ + \ OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\ + \ OWNER\nOR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY,\ + \ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS\ + \ OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\nOR BUSINESS INTERRUPTION) HOWEVER CAUSED\ + \ AND ON ANY THEORY OF LIABILITY, WHETHER\nIN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\ + \ NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\ + \ ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\n\nYou are under no obligation whatsoever\ + \ to provide any bug fixes, patches,\nor upgrades to the features, functionality or performance\ + \ of the source code\n(\"Enhancements\") to anyone; however, if you choose to make your\ + \ Enhancements\navailable either publicly, or directly to Lawrence Berkeley National Laboratory,\n\ + without imposing a separate written license agreement for such Enhancements,\nthen you hereby\ + \ grant the following license: a non-exclusive, royalty-free\nperpetual license to install,\ + \ use, modify, prepare derivative works, incorporate\ninto other computer software, distribute,\ + \ and sublicense such Enhancements\nor derivative works thereof, in binary and source code\ + \ form." json: lbnl-bsd.json - yml: lbnl-bsd.yml + yaml: lbnl-bsd.yml html: lbnl-bsd.html - text: lbnl-bsd.LICENSE + license: lbnl-bsd.LICENSE - license_key: lcs-telegraphics + category: Permissive spdx_license_key: LicenseRef-scancode-lcs-telegraphics other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The text and information contained in this file may be freely used, + copied, or distributed without compensation or licensing restrictions. json: lcs-telegraphics.json - yml: lcs-telegraphics.yml + yaml: lcs-telegraphics.yml html: lcs-telegraphics.html - text: lcs-telegraphics.LICENSE + license: lcs-telegraphics.LICENSE - license_key: ldap-sdk-free-use + category: Permissive spdx_license_key: LicenseRef-scancode-ldap-sdk-free-use other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + UnboundID LDAP SDK Free Use License + + THIS IS AN AGREEMENT BETWEEN YOU ("YOU") AND UNBOUNDID CORP. ("UNBOUNDID") + REGARDING YOUR USE OF UNBOUNDID LDAP SDK FOR JAVA AND ANY ASSOCIATED + DOCUMENTATION, OBJECT CODE, COMPILED LIBRARIES, SOURCE CODE AND SOURCE FILES OR + OTHER MATERIALS MADE AVAILABLE BY UNBOUNDID (COLLECTIVELY REFERRED TO IN THIS + AGREEMENT AS THE ("SDK"). + + BY INSTALLING, ACCESSING OR OTHERWISE USING THE SDK, YOU ACCEPT THE TERMS OF + THIS AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, DO NOT + INSTALL, ACCESS OR USE THE SDK. + + USE OF THE SDK. Subject to your compliance with this Agreement, UnboundID + grants to You a non-exclusive, royalty-free license, under UnboundID's + intellectual property rights in the SDK, to use, reproduce, modify and + distribute this release of the SDK; provided that no license is granted herein + under any patents that may be infringed by your modifications, derivative works + or by other works in which the SDK may be incorporated (collectively, your + "Applications"). You may reproduce and redistribute the SDK with your + Applications provided that you (i) include this license file and an + unmodified copy of the unboundid-ldapsdk-se.jar file; and (ii) such + redistribution is subject to a license whose terms do not conflict with or + contradict the terms of this Agreement. You may also reproduce and redistribute + the SDK without your Applications provided that you redistribute the SDK + complete and unmodified (i.e., with all "read me" files, copyright notices, and + other legal notices and terms that UnboundID has included in the SDK). + + SCOPE OF LICENSES. This Agreement does not grant You the right to use any + UnboundID intellectual property which is not included as part of the SDK. The + SDK is licensed, not sold. This Agreement only gives You some rights to use + the SDK. UnboundID reserves all other rights. Unless applicable law gives You + more rights despite this limitation, You may use the SDK only as expressly + permitted in this Agreement. + + SUPPORT. UnboundID is not obligated to provide any technical or other support + ("Support Services") for the SDK to You under this Agreement. However, if + UnboundID chooses to provide any Support Services to You, Your use of such + Support Services will be governed by then-current UnboundID support policies. + + TERMINATION. UnboundID reserves the right to discontinue offering the SDK and + to modify the SDK at any time in its sole discretion. Notwithstanding anything + contained in this Agreement to the contrary, UnboundID may also, in its sole + discretion, terminate or suspend access to the SDK to You or any end user at + any time. In addition, if you fail to comply with the terms of this Agreement, + then any rights granted herein will be automatically terminated if such failure + is not corrected within 30 days of the initial notification of such failure. + You acknowledge that termination and/or monetary damages may not be a + sufficient remedy if You breach this Agreement and that UnboundID will be + entitled, without waiving any other rights or remedies, to injunctive or + equitable relief as may be deemed proper by a court of competent jurisdiction + in the event of a breach. UnboundID may also terminate this Agreement if the + SDK becomes, or in UnboundID?s reasonable opinion is likely to become, the + subject of a claim of intellectual property infringement or trade secret + misappropriation. All rights and licenses granted herein will simultaneously + and automatically terminate upon termination of this Agreement for any reason. + + DISCLAIMER OF WARRANTY. THE SDK IS PROVIDED "AS IS" AND UNBOUNDID DOES NOT + WARRANT THAT THE SDK WILL BE ERROR-FREE, VIRUS-FREE, WILL PERFORM IN AN + UNINTERRUPTED, SECURE OR TIMELY MANNER, OR WILL INTEROPERATE WITH OTHER + HARDWARE, SOFTWARE, SYSTEMS OR DATA. TO THE MAXIMUM EXTENT ALLOWED BY LAW, ALL + CONDITIONS, REPRESENTATIONS AND WARRANTIES, WHETHER EXPRESS, IMPLIED, STATUTORY + OR OTHERWISE INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE (EVEN IF UNBOUNDID HAD BEEN + INFORMED OF SUCH PURPOSE), OR NON-INFRINGEMENT OF THIRD PARTY RIGHTS ARE HEREBY + DISCLAIMED. + + LIMITATION OF LIABILITY. IN NO EVENT WILL UNBOUNDID OR ITS SUPPLIERS BE LIABLE + FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, LOST PROFITS, + REVENUE, DATA OR DATA USE, BUSINESS INTERRUPTION, COST OF COVER, DIRECT, + INDIRECT, SPECIAL, PUNITIVE, INCIDENTAL OR CONSEQUENTIAL DAMAGES OF ANY KIND) + ARISING OUT OF THE USE OF OR INABILITY TO USE THE SDK OR IN ANY WAY RELATED TO + THIS AGREEMENT, EVEN IF UNBOUNDID HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH + DAMAGES. + + ADDITIONAL RIGHTS. Certain states do not allow the exclusion of implied + warranties or limitation of liability for certain kinds of damages, so the + exclusion of limited warranties and limitation of liability set forth above may + not apply to You. + + EXPORT RESTRICTIONS. The SDK is subject to United States export control laws. + You acknowledge and agree that You are responsible for compliance with all + domestic and international export laws and regulations that apply to the SDK. + + MISCELLANEOUS. This Agreement constitutes the entire agreement with respect to + the SDK. If any provision of this Agreement shall be held to be invalid, + illegal or unenforceable, the validity, legality and enforceability of the + remaining provisions shall in no way be affected or impaired thereby. This + Agreement and performance hereunder shall be governed by and construed in + accordance with the laws of the State of Texas without regard to its conflict + of laws rules. Any disputes related to this Agreement shall be exclusively + litigated in the state or federal courts located in Travis County, Texas. json: ldap-sdk-free-use.json - yml: ldap-sdk-free-use.yml + yaml: ldap-sdk-free-use.yml html: ldap-sdk-free-use.html - text: ldap-sdk-free-use.LICENSE + license: ldap-sdk-free-use.LICENSE - license_key: ldpc-1994 + category: Copyleft spdx_license_key: LicenseRef-scancode-ldpc-1994 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "Linux Documentation Project Copying License\nLast modified 30 March 1994\n\nThe following\ + \ copyright license applies to all works by the Linux Documentation Project.\n\nPlease read\ + \ the license carefully---it is somewhat like the GNU General Public License, but there\ + \ are several conditions in it that differ from what you may be used to. If you have any\ + \ questions, please mail Matt Welsh, the LDP coordinator, at mdw@sunsite.unc.edu.\n\nThe\ + \ Linux Documentation Project manuals may be reproduced and distributed in whole or in part,\ + \ subject to the following conditions:\n\nAll Linux Documentation Project manuals are copyrighted\ + \ by their respective authors. THEY ARE NOT IN THE PUBLIC DOMAIN.\n\n The copyright notice\ + \ above and this permission notice must be preserved complete on all complete or partial\ + \ copies.\n Any translation or derivative work of Linux Installation and Getting Started\ + \ must be approved by the author in writing before distribution.\n If you distribute\ + \ Linux Installation and Getting Started in part, instructions for obtaining the complete\ + \ version of this manual must be included, and a means for obtaining a complete version\ + \ provided.\n Small portions may be reproduced as illustrations for reviews or quotes\ + \ in other works without this permission notice if proper citation is given.\n The GNU\ + \ General Public License referenced below may be reproduced under the conditions given within\ + \ it. \n\nExceptions to these rules may be granted for academic purposes: Write to the author\ + \ and ask. These restrictions are here to protect us as authors, not to restrict you as\ + \ educators and learners. All source code in Linux Installation and Getting Started is placed\ + \ under the GNU General Public License, available via anonymous FTP from here.\n\nPublishing\ + \ LDP Manuals\nIf you're a publishing company interested in distributing any of the LDP\ + \ manuals, read on.\n\nBy the license given in the previous section, anyone is allowed to\ + \ publish and distribute verbatim copies of the Linux Documentation Project manuals. You\ + \ don't need our explicit permission for this. However, if you would like to distribute\ + \ a translation or derivative work based on any of the LDP manuals, you must obtain permission\ + \ from the author, in writing, before doing so.\n\nAll translations and derivative works\ + \ of LDP manuals must be placed under the Linux Documentation License given in the previous\ + \ section. That is, if you plan to release a translation of one of the manuals, it must\ + \ be freely distributable by the above terms.\n\nYou may, of course, sell the LDP manuals\ + \ for profit. We encourage you to do so. Keep in mind, however, that because the LDP manuals\ + \ are freely distributable, anyone may photocopy or distribute printed copies free of charge,\ + \ if they wish to do so.\n\nWe do not require to be paid royalties for any profit earned\ + \ from selling LDP manuals. However, we would like to suggest that if you do sell LDP manuals\ + \ for profit, that you either offer the author royalties, or donate a portion of your earnings\ + \ to the author, the LDP as a whole, or to the Linux development community. You may also\ + \ wish to send one or more free copies of the LDP manual that you are distributing to the\ + \ author. Your show of support for the LDP and the Linux community will be very appreciated.\n\ + \nWe would like to be informed of any plans to publish or distribute LDP manuals, just so\ + \ we know how they're becoming available. If you are publishing or planning to publish any\ + \ LDP manuals, please send mail to Matt Welsh (mdw@sunsite.unc.edu) either by electronic\ + \ mail or telephone at +1 607 256 7372.\n\nWe encourage Linux software distributors to distribute\ + \ the LDP manuals (such as the Installation and Getting Started Guide) with their software.\ + \ The LDP manuals are intended to be used as the \"official\" Linux documentation, and we'd\ + \ like to see mail-order distributors bundling the LDP manuals with the software. As the\ + \ LDP manuals mature, hopefully they will fulfill this goal more adequately.\n\nMatt Welsh,\ + \ mdw@sunsite.unc.edu" json: ldpc-1994.json - yml: ldpc-1994.yml + yaml: ldpc-1994.yml html: ldpc-1994.html - text: ldpc-1994.LICENSE + license: ldpc-1994.LICENSE - license_key: ldpc-1997 + category: Copyleft spdx_license_key: LicenseRef-scancode-ldpc-1997 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "Linux Documentation Project Copying License\nLast modified 6 January 1997\n\nThe following\ + \ copyright license applies to all works by the Linux Documentation Project.\n\nPlease read\ + \ the license carefully---it is somewhat like the GNU General Public License, but there\ + \ are several conditions in it that differ from what you may be used to. If you have any\ + \ questions, please email the LDP coordinator, mdw@metalab.unc.edu.\n\nThe Linux Documentation\ + \ Project manuals may be reproduced and distributed in whole or in part, subject to the\ + \ following conditions:\n\nAll Linux Documentation Project manuals are copyrighted by their\ + \ respective authors. THEY ARE NOT IN THE PUBLIC DOMAIN.\n\n The copyright notice above\ + \ and this permission notice must be preserved complete on all complete or partial copies.\n\ + \ Any translation or derivative work of Linux Installation and Getting Started must be\ + \ approved by the author in writing before distribution.\n If you distribute Linux Installation\ + \ and Getting Started in part, instructions for obtaining the complete version of this manual\ + \ must be included, and a means for obtaining a complete version provided.\n Small portions\ + \ may be reproduced as illustrations for reviews or quotes in other works without this permission\ + \ notice if proper citation is given.\n The GNU General Public License referenced below\ + \ may be reproduced under the conditions given within it. \n\nExceptions to these rules\ + \ may be granted for academic purposes: Write to the author and ask. These restrictions\ + \ are here to protect us as authors, not to restrict you as educators and learners. All\ + \ source code in Linux Installation and Getting Started is placed under the GNU General\ + \ Public License, available via anonymous FTP from the GNU archive site.\n\nPublishing LDP\ + \ Manuals\nIf you're a publishing company interested in distributing any of the LDP manuals,\ + \ read on.\n\nBy the license given in the previous section, anyone is allowed to publish\ + \ and distribute verbatim copies of the Linux Documentation Project manuals. You don't need\ + \ our explicit permission for this. However, if you would like to distribute a translation\ + \ or derivative work based on any of the LDP manuals, you must obtain permission from the\ + \ author, in writing, before doing so.\n\nAll translations and derivative works of LDP manuals\ + \ must be placed under the Linux Documentation License given in the previous section. That\ + \ is, if you plan to release a translation of one of the manuals, it must be freely distributable\ + \ by the above terms.\n\nYou may, of course, sell the LDP manuals for profit. We encourage\ + \ you to do so. Keep in mind, however, that because the LDP manuals are freely distributable,\ + \ anyone may photocopy or distribute printed copies free of charge, if they wish to do so.\n\ + \nWe do not require to be paid royalties for any profit earned from selling LDP manuals.\ + \ However, we would like to suggest that if you do sell LDP manuals for profit, that you\ + \ either offer the author royalties, or donate a portion of your earnings to the author,\ + \ the LDP as a whole, or to the Linux development community. You may also wish to send one\ + \ or more free copies of the LDP manual that you are distributing to the author. Your show\ + \ of support for the LDP and the Linux community will be very appreciated.\n\nWe would like\ + \ to be informed of any plans to publish or distribute LDP manuals, just so we know how\ + \ they're becoming available. If you are publishing or planning to publish any LDP manuals,\ + \ please send email to Matt Welsh (email mdw@metalab.unc.edu).\n\nWe encourage Linux software\ + \ distributors to distribute the LDP manuals (such as the Installation and Getting Started\ + \ Guide) with their software. The LDP manuals are intended to be used as the \"official\"\ + \ Linux documentation, and we'd like to see mail-order distributors bundling the LDP manuals\ + \ with the software. As the LDP manuals mature, hopefully they will fulfill this goal more\ + \ adequately." json: ldpc-1997.json - yml: ldpc-1997.yml + yaml: ldpc-1997.yml html: ldpc-1997.html - text: ldpc-1997.LICENSE + license: ldpc-1997.LICENSE - license_key: ldpc-1999 + category: Copyleft spdx_license_key: LicenseRef-scancode-ldpc-1999 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "Linux Documentation Project Copying License\nLast Revision: 16 September 1999\n\nPlease\ + \ read the license carefully---it is somewhat like the GNU General Public License, but there\ + \ are several conditions in it that differ from what you may be used to. If you have any\ + \ questions, please email the LDP coordinator, Guylhem Aznar.\n\nNote: All Linux Documentation\ + \ Project manuals are copyrighted by their respective authors. THEY ARE NOT IN THE PUBLIC\ + \ DOMAIN.\n\nThe Linux Documentation Project manuals (guides) may be reproduced and distributed\ + \ in whole or in part, subject to the following conditions:\n\n The copyright notice\ + \ above and this permission notice must be preserved complete on all complete or partial\ + \ copies.\n Any translation or derivative work of Linux Installation and Getting Started\ + \ must be approved by the author in writing before distribution.\n If you distribute\ + \ Linux Installation and Getting Started in part, instructions for obtaining the complete\ + \ version of this manual must be included, and a means for obtaining a complete version\ + \ provided.\n Small portions may be reproduced as illustrations for reviews or quotes\ + \ in other works without this permission notice if proper citation is given.\n The GNU\ + \ General Public License referenced below may be reproduced under the conditions given within\ + \ it. \n\nExceptions to these rules may be granted for academic purposes: write to the author\ + \ and ask. These restrictions are here to protect us as authors, not to restrict you as\ + \ educators and learners. All source code in Linux Installation and Getting Started is placed\ + \ under the GNU General Public License, available via anonymous FTP from the GNU archive\ + \ site.\n\nPlease read the LDP Manifesto for further information. If you are authoring a\ + \ work, the Manifesto provides a sample copyright (derived from the previous area) to utilize,\ + \ if you so desire. There is also a section devoted to Publishing LDP Manuals. If you're\ + \ a publishing company interested in distributing any of the LDP manuals, please read that\ + \ particular section.\n\nIf you have any questions, please email the LDP coordinator, Guylhem\ + \ Aznar." json: ldpc-1999.json - yml: ldpc-1999.yml + yaml: ldpc-1999.yml html: ldpc-1999.html - text: ldpc-1999.LICENSE + license: ldpc-1999.LICENSE - license_key: ldpgpl-1 + category: Copyleft spdx_license_key: LicenseRef-scancode-ldpgpl-1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + LDP GENERAL PUBLIC LICENSE + Version 1, September 1998 + + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any document which contains a notice + placed by the copyright holder saying it may be distributed + under the terms of this LDP General Public License. + The "Document" below refers to any such document, and + "work based on the Document" means either the Document + or any derivative work under copyright law: that is to say, + a work containing the Document or part 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. + + 1. You may copy and distribute verbatim copies of the Document's + source code as you receive it, in any medium, provided that you + 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 Document a copy of this License along with + the Document. + + You may charge a fee for the physical act of producing or transferring + a copy. + + 2. You may modify your copy or copies of the Document or any portion + of it, thus forming a work based on the Document, 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 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 Document or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) You must not add notes to the Document implying that the + reader had better read something produced using Texinfo. + + 3. You may copy and distribute the Document (or a work based on it, + under Section 2) in any form under the terms of Sections 1 and 2 above + provided that you also either accompany it with the complete corresponding + machine-readable source code, or provide an URL, valid for at least + three months, where this complete corresponding machine-readable source code + is available, and can be retrieved by any anonymous user. + + 4. You may not copy, modify, sublicense, or distribute the Document + except as expressly provided under this License. + + 5. Each time you redistribute the Document (or any work based on the + Document), the recipient automatically receives a license from the + original licensor to copy, distribute or modify the Document subject to + these terms and conditions. You may not impose any further + restrictions on the recipients' exercise of the rights granted herein. json: ldpgpl-1.json - yml: ldpgpl-1.yml + yaml: ldpgpl-1.yml html: ldpgpl-1.html - text: ldpgpl-1.LICENSE + license: ldpgpl-1.LICENSE - license_key: ldpgpl-1a + category: Copyleft spdx_license_key: LicenseRef-scancode-ldpgpl-1a other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + LDP GENERAL PUBLIC LICENSE + Version 1a, November 1998 + + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any document which contains a notice + placed by the copyright holder saying it may be distributed + under the terms of this LDP General Public License. + The "Document" below refers to any such document, and + "work based on the Document" means either the Document + or any derivative work under copyright law: that is to say, + a work containing the Document or part 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. + + 1. You may copy and distribute verbatim copies of the Document's + source code as you receive it, in any medium, provided that you + 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 Document a copy of this License along with + the Document. + + You may charge a fee for the physical act of producing or transferring + a copy. + + 2. You may modify your copy or copies of the Document or any portion + of it, thus forming a work based on the Document, 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 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 Document or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + 3. You may copy and distribute the Document (or a work based on it, + under Section 2) in any form under the terms of Sections 1 and 2 above + provided that you also either accompany it with the complete corresponding + machine-readable source code, or provide an URL, valid for at least + three months, where this complete corresponding machine-readable source code + is available, and can be retrieved by any anonymous user. + + 4. You may not copy, modify, sublicense, or distribute the Document + except as expressly provided under this License. + + 5. Each time you redistribute the Document (or any work based on the + Document), the recipient automatically receives a license from the + original licensor to copy, distribute or modify the Document subject to + these terms and conditions. You may not impose any further + restrictions on the recipients' exercise of the rights granted herein. json: ldpgpl-1a.json - yml: ldpgpl-1a.yml + yaml: ldpgpl-1a.yml html: ldpgpl-1a.html - text: ldpgpl-1a.LICENSE + license: ldpgpl-1a.LICENSE - license_key: ldpl-2.0 + category: Copyleft spdx_license_key: LicenseRef-scancode-ldpl-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "LINUX DOCUMENTATION PROJECT LICENSE (LDPL) v2.0, 12 January 1998\n\n COPYRIGHT\n\ + \n The copyright to each Linux Documentation Project (LDP) document is owned by its author\ + \ or authors.\n\n LICENSE\n\n The following license terms apply to all LDP documents,\ + \ unless otherwise stated in the document. The LDP documents may be reproduced and distributed\ + \ in whole or in part, in any medium physical or electronic, provided that this license\ + \ notice is displayed in the reproduction. Commercial redistribution is permitted and encouraged.\ + \ Thirty days advance notice via email to the author(s) of redistribution is appreciated,\ + \ to give the authors time to provide updated documents.\n\n REQUIREMENTS OF MODIFIED\ + \ WORKS\n\n All modified documents, including translations, anthologies, and partial\ + \ documents, must meet the following requirements:\n\n The modified version must\ + \ be labeled as such.\n The person making the modifications must be identified.\n\ + \ Acknowledgement of the original author must be retained.\n The location\ + \ of the original unmodified document be identified.\n The original author's\ + \ (or authors') name(s) may not be used to assert or imply endorsement of the resulting\ + \ document without the original author's (or authors') permission. \n\n In addition\ + \ it is requested that:\n The modifications (including deletions) be noted.\n\ + \ The author be notified by email of the modification in advance of redistribution,\ + \ if an email address is provided in the document. \n\n As a special exception, anthologies\ + \ of LDP documents may include a single copy of these license terms in a conspicuous location\ + \ within the anthology and replace other copies of this license with a reference to the\ + \ single copy of the license without the document being considered \"modified\" for the\ + \ purposes of this section.\n\n Mere aggregation of LDP documents with other documents\ + \ or programs on the same media shall not cause this license to apply to those other works.\n\ + \n All translations, derivative documents, or modified documents that incorporate\ + \ any LDP document may not have more restrictive license terms than these, except that you\ + \ may require distributors to make the resulting document available in source format.\n\n\ + \ LDP documents are available in source format via the LDP home page at http://sunsite.unc.edu/LDP/.\n\ + \nLDP Policy Appendices\n\n TO USE THE LDP LICENSE\n\n LDP authors who want to use\ + \ the LDP License should put the following statement in their document:\n\n Copyright\ + \ (c) by . This document may be distributed only subject to the terms and conditions set\ + \ forth in the LDP License at . \n\n Authors may include a copy of the license in their\ + \ documents, as well. If they do so, they have the option of ommitting the appendices.\n\ + \n TO USE THE LDP LICENSE, BUT PREVENT MODIFICATION\n\n LDP authors who want to prevent\ + \ modification to their document should put the following statement in their document:\n\ + \n Copyright (c) by . This document may be distributed only subject to the terms\ + \ and conditions set forth in the LDP License at , except that this document must not be\ + \ distributed in modified form without the author's consent. \n\n TO USE YOUR OWN LICENSE\n\ + \n LDP authors who want to include their own license on LDP works may do so, as long\ + \ as their terms are not more restrictive than the LDP license, except that they may require\ + \ that the document may not be modified.\n\n If you have questions about the LDP License,\ + \ please contact Guylhem Aznar, guylhem@metalab.unc.edu." json: ldpl-2.0.json - yml: ldpl-2.0.yml + yaml: ldpl-2.0.yml html: ldpl-2.0.html - text: ldpl-2.0.LICENSE + license: ldpl-2.0.LICENSE - license_key: ldpm-1998 + category: Copyleft spdx_license_key: LicenseRef-scancode-ldpm-1998 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "This is the Linux Documentation Project ``Manifesto''\nLast Revision 21 September 1998,\ + \ by Michael K. Johnson \n\nCopyright and License\nHere is a ``boilerplate'' license you\ + \ may apply to your work. It has not been reviewed by a lawyer; feel free to have your own\ + \ lawyer review it (or your modification of it) for its applicability to your own desires.\ + \ Remember that in order for your document to be part of the LDP, you must allow unlimited\ + \ reproduction and distribution without fee.\n\nThis manual may be reproduced and distributed\ + \ in whole or in part, without fee, subject to the following conditions:\n\n The copyright\ + \ notice above and this permission notice must be preserved complete on all complete or\ + \ partial copies.\n Any translation or derived work must be approved by the author in\ + \ writing before distribution.\n If you distribute this work in part, instructions for\ + \ obtaining the complete version of this manual must be included, and a means for obtaining\ + \ a complete version provided.\n Small portions may be reproduced as illustrations for\ + \ reviews or quotes in other works without this permission notice if proper citation is\ + \ given. \n\nExceptions to these rules may be granted for academic purposes: Write to the\ + \ author and ask. These restrictions are here to protect us as authors, not to restrict\ + \ you as learners and educators.\n\nAll source code in this document is placed under the\ + \ GNU General Public License, available via anonymous FTP from prep.ai.mit.edu:/pub/gnu/COPYING." json: ldpm-1998.json - yml: ldpm-1998.yml + yaml: ldpm-1998.yml html: ldpm-1998.html - text: ldpm-1998.LICENSE + license: ldpm-1998.LICENSE - license_key: leap-motion-sdk-2019 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-leap-motion-sdk-2019 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Leap Motion SDK Agreement + + A note on our SDK Agreement + To help avoid uncertainty about our licensing terms, please note we have a two-tier license structure for distribution of applications or technology developed with or that use our SDK: + + 1. Applications that do not fall under the definition of “Specialized Application” may be distributed by you under the SDK Agreement without requiring a separate license from us. + + 2. Applications that are “Specialized Applications” may only be distributed under a separate license from us. Please contact us at partnerships@leapmotion.com if you wish to distribute a Specialized Application. + + Basically, a Specialized Application means a Leap Motion-enabled Application which is: (i) priced at more than US$500 (or $240/year if on a subscription or similar basis, including without limitation the cumulative value of any Leap Motion-enabled Application lent, leased, let or hired); (ii) for use with a system, machine or device (other than a PC, mobile phone or VR/AR headset), priced at more than US$500 (or $240/year if on a subscription or similar basis); (iii) used for or designed for use with industrial, military, commercial or medical equipment or computer aided design; or (iv) the development of any other commercial product or service other than the Leap Motion-enabled Application itself where the annual revenue in aggregate for the product or service exceeds $50,000. + + Also, please note that our SDK is for use only with Leap Motion hardware and software, and you may not use the SDK to develop or evaluate competing hand tracking technology. + We’ve prepared an FAQ, available here, with discussion of key terms of our SDK Agreement. The FAQ and this note are qualified by the terms of the agreement, which you should review carefully. If you have any questions after reviewing the FAQs, this note and the SDK Agreement, please contact us at developers@leapmotion.com. + + LEAP MOTION SDK AGREEMENT + This Leap Motion SDK Agreement (“Agreement”) is between the individual or entity (“you” or “Developer”) that accepts it, and Ultraleap Ltd. You accept this Agreement by clicking an “agree” or similar button, where this option is provided by Leap Motion, or if you use or access the SDK or any part of the SDK. Your agreement to these terms also binds your authorized users, your company or organization. If you do not agree to the terms of this Agreement, do not accept it. Before accepting this Agreement, please carefully read it. Capitalized terms used but not defined in the body of this Agreement have the meaning given them in the “Definitions” exhibit. + Last updated: May 28, 2019 + + 1. Development License + 1.1. Development License. Conditioned upon compliance with the terms and conditions of this Agreement, Leap Motion hereby grants you a limited, non-exclusive, personal, revocable, non-sublicensable and non-transferable license to: (a) install and use a reasonable number of copies of the SDK on computers owned or controlled by you for the purpose of developing and testing applications that are intended for use solely in connection with a Leap Motion Device, and Leap Motion Software (“Application”); and (b) modify and incorporate into your Application any sample code provided in the SDK. + + 1.2. Restrictions. The license granted to you in Section 1.1 is subject to the following restrictions, as well as others listed in this Agreement: + 1.2.1. Except as expressly permitted in Section 1.1: (a) you may not publish, distribute or copy the SDK, and (b) you may not modify or create derivative works of the SDK. + 1.2.2. You may use the SDK solely in connection with a Leap Motion Device and/or Leap Motion Software. + 1.2.3. You may not use the SDK to create, or to aid the creation, directly or indirectly, of any software or hardware which provides hand tracking functionality or which is otherwise substantially similar to the features or functionality of the Leap Motion Software. + 1.2.4. You may not, and may not enable others to, reverse engineer, decompile, disassemble or otherwise attempt to reconstruct, identify or discover any source code, underlying ideas, techniques, or algorithms in the Leap Motion Software, the Leap Motion Device or any software that forms part of the SDK, nor attempt to circumvent any related security measures (except as and only to the extent any foregoing restriction is prohibited by applicable law or permitted by applicable law notwithstanding the foregoing restriction, or to the extent as may be permitted by licensing terms governing use of any open source software components or sample code included within the SDK). + 1.2.5. You may not remove, obscure, or alter any proprietary rights or confidentiality notices within the SDK or any software, documentation or other materials in it or supplied with it. + 1.2.6. You may not create Applications or other software that prevent or degrade the interaction of Applications developed by others with the Leap Motion Software. + 1.2.7. You may not represent functionality provided by Leap Motion Software as your technology. For example, you may not describe an application, technology or feature developed or distributed by you that incorporates Leap Motion Software as your gesture or touchless control technology without providing attribution to Leap Motion. + 1.3. Updates. The terms of this Agreement will apply to any Updates that Leap Motion makes available to you. You agree that Updates may require you to change or update your Application, and may affect your ability to use, access or interact with the Leap Motion Software, the Leap Motion application store, and/or the SDK. + 1.4. Trademarks. You may indicate that your Application is “for Leap Motion” or “Leap Motion-enabled”. However, unless provided in an agreement between you and Leap Motion, you may not otherwise use “Leap Motion”, “Leap”, or any other trademark of Leap Motion in connection with your Application or company, or in any URL, product, service, name field or logos created by you. + + 2. Distribution License + 2.1. Distribution License. Conditioned upon compliance with the terms and conditions of this Agreement, Leap Motion hereby grants you a limited, non-exclusive, personal, revocable, non-transferable license under Leap Motion’s applicable intellectual property rights to the extent necessary to: (a) copy and distribute (or have copied and distributed) the Leap Motion Redistributables, solely as compiled with, incorporated into, or packaged with, your Application (provided it is not a Specialized Application); and (b) to make (but not have made), use, sell, offer for sale and import your Application (provided it is not a Specialized Application). + 2.2. Restrictions. The license granted to you in Section 2.1 is subject to the following restrictions, as well as others listed in this Agreement: + 2.2.1. Your Application may not be a Specialized Application or for a High Risk Use (as defined in Section 4.1). + 2.2.2. You may not, directly or indirectly, publish, post or otherwise make available the Leap Motion Redistributables other than as compiled with, incorporated into, or packaged with, your Application. + 2.2.3. You may not, and may not enable others to, distribute the Non-Redistributable Materials. + + 3. Open Source Materials, Other Licenses + Example code made publicly available by Leap Motion on its developer web site is provided subject to the Apache 2.0 license, unless otherwise noted in the license, notice or readme files distributed with the example or in related documentation. The SDK may otherwise include software or other materials that are provided under a separate license agreement, and that separate license will govern the use of such software or other materials in the event of a conflict with this Agreement. Any such separate license agreement may be indicated in the license, notice, or readme files distributed with the applicable software or other materials or in related documentation. + + 4. No High Risk Use; Acknowledgment and Waiver + 4.1. Notwithstanding anything in this Agreement, you are not licensed to, and you agree not to, use, copy, sell, offer for sale, or distribute the SDK, Leap Motion Devices, Leap Motion Software or Leap Motion Redistributables (whether compiled with, incorporated into, or packaged with your Application or otherwise), for or in connection with uses where failure or fault of the Leap Motion Device, Leap Motion Software, Leap Motion Redistributables or your Application could lead to death or serious bodily injury of any person, or to severe physical or environmental damage (“High Risk Use”). ANY SUCH USE IS STRICTLY PROHIBITED. + 4.2. You acknowledge the SDK may allow you to develop Applications that enable the control of motorized or mechanical equipment, or other systems, machines or devices. If you elect to use the SDK in such a way, you must take steps to design and test your Applications to ensure that your Applications do not present risks of personal injury or death, property damage, or other losses. The Leap Motion Device, the Leap Motion Software, the Leap Motion Redistributables and other software in the SDK may not always function as intended. You must design your Applications so that any failure of a Leap Motion Device, the Leap Motion Software, a Leap Motion Redistributable and/or such other software does not cause personal injury or death, property damage, or other losses. If you choose to use the SDK, (i) you assume all risk that use of the Leap Motion Device, the Leap Motion Software, the Leap Motion Redistributables and/or such other software by you or by any others causes any harm or loss, including to the end users of your Applications or to third parties, (ii) you hereby waive, on behalf of yourself and your Authorized Users, all claims against Leap Motion and its affiliates related to such use, harm or loss (including, but not limited to, any claim that a Leap Motion Device, the Leap Motion Software, a Leap Motion Redistributable or such other software is defective), and (iii) you agree to hold Leap Motion and its affiliates harmless from such claims. + + 5. Confidentiality and Privacy + 5.1. Beta Software etc. Obligations. You acknowledge and agree that Leap Motion may share alpha or beta software or hardware with you that it identifies as non-public. If so, you agree not to disclose such software or hardware to others without the prior written consent of Leap Motion until the time, if any, it is made public by Leap Motion, and to use such software or hardware only for the purposes expressly permitted by this Agreement. + 5.2. Leap Motion Use of Assets. Subject to the terms and conditions of this Agreement, you grant to Leap Motion and its affiliates a non-exclusive, worldwide and royalty-free limited license to use, reproduce, display, perform, publish and distribute screenshots, elements, assets, photographic, graphic or video reproductions or fragments of your Application in any medium or media, solely for purposes of promotion of your Application or of Leap Motion and its technology and business. This license will terminate if we terminate this Agreement, or, if you terminate it, if you inform us you have terminated it, except that in both cases the license will continue after termination with respect to any materials we created and first distributed prior to our termination or your notice of termination to us. + 5.3. Your Information. Leap Motion may collect personal information provided by you or your Authorized Users to Leap Motion in connection with the SDK, and may collect other information from you or your Authorized Users, including technical, non-personally identifiable and/or aggregated information such as usage statistics, hardware configuration, problem / fault data, IP addresses, version number of the SDK, information about which tools and/or services in the SDK are being used and how they are being used, and any other information described in Leap Motion’s privacy policy, currently available at http://leapmotion.com/legal. Leap Motion may use the information collected to facilitate the provision of Updates and other services to you, to verify compliance with, and enforce, the terms of this Agreement, to improve the SDK and Leap Motion’s products, and for any other purposes set out in Leap Motion’s privacy policy (these uses, collectively, are “Permitted Uses”). By submitting information about you and/or your Authorized Users to Leap Motion through your access and use of the SDK, you consent to Leap Motion’s collection and use of the information for the Permitted Uses and represent that you have obtained all consents and permits necessary under applicable law to disclose your Authorized Users’ information to Leap Motion for the Permitted Uses. You further agree that Leap Motion may provide any information collected under this Section 5.3, including your or your Authorized Users’ user name, IP address or other identifying information to law enforcement authorities or as required by applicable law or regulation. + + 6. Ownership and Feedback + 6.1. Ownership. Except for the license rights granted by you in Section 5.2, and Leap Motion’s ownership of the Leap Motion Software, the Leap Motion application store, and the Leap Motion Redistributables, Leap Motion agrees that it obtains no right, title or interest from you (or your licensors) under this Agreement in or to any of your Applications, including any intellectual property rights which subsist in those Applications. As between Leap Motion and you, Leap Motion owns all right, title and interest, including all intellectual property rights, in and to the SDK, the Leap Motion Software and the Leap Motion Redistributables, other than any third party software or materials incorporated in the SDK, and you agree not to contest Leap Motion’s ownership of any of the foregoing. + 6.2. Feedback. You may (but are not required to) provide feedback, comments and suggestions (collectively, “Feedback”) to Leap Motion. You hereby grant to Leap Motion a non-exclusive, perpetual, irrevocable, paid-up, transferable, sub-licensable, worldwide license under all intellectual property rights covering such Feedback to use, disclose and exploit all such Feedback for any purpose. + + 7. Your Obligations and Warranties + In addition to your other obligations under this Agreement, you warrant and agree that: + 7.1. You are at least 18 years of age and have the right and authority to enter into this Agreement on your own behalf and that of your Authorized Users, or if you are entering into this Agreement on behalf of your company or organization, you have the right and authority to legally bind your company or organization and its Authorized Users. + 7.2. You will use the SDK only in accordance with all accompanying documentation, in the manner expressly permitted by this Agreement, and your use of the SDK, and the marketing, sales and distribution of your Application, will be in compliance with all applicable laws and regulations and all U.S. and local or foreign export and re-export restrictions applicable to the technology and documentation provided under this Agreement (including privacy and data security laws and regulations), and you will not develop any Application which would commit or facilitate the commission of a crime, or other tortious, unlawful, or illegal act. + + 8. Agreement and Development Program + We reserve the right to change this Agreement, the SDK or the Leap Motion development and licensing program at any time in our discretion. Leap Motion may require that you either accept and agree to the new terms of this Agreement, or, if you do not agree to the new terms, cease or terminate your use of the SDK. Your continued use of the SDK after changes to this Agreement take effect will constitute your acceptance of the changes. If you do not agree to a change, you must stop using the SDK and terminate this Agreement. Any termination of this Agreement by you under this Section 8 (and only this Section 8) will not affect your right, subject to your continued compliance with your obligations under this Agreement, to continue to distribute versions of your Application created and first distributed before termination, and will not affect the right of your End Users to continue using such versions of your Application, both of which rights will survive termination. + + 9. Term and Termination + 9.1. Term. This Agreement will continue to apply until terminated by either you or Leap Motion as set out below. + 9.2. Termination by You. If you want to terminate this Agreement, you may terminate it by uninstalling and destroying all copies of the SDK that are in the possession, custody or control of you, your Authorized Users and your organization. + 9.3. Termination by Leap Motion. Leap Motion may at any time, terminate this Agreement with you for any reason or for no reason in Leap Motion’s sole discretion, including as a result of non-compliance by you with the restrictions in Section 1.2 or Section 2.2, or for other reasons. + 9.4. Effect of Termination. Upon termination of this Agreement, all rights granted to you under this Agreement will immediately terminate and you must immediately cease all use and destroy all copies of the SDK in your and your Authorized Users’ possession, custody or control, and, except as specifically set out in Section 8, cease your distribution of Applications. Sections 1.2, 2.2, 2.2.3, 5.1, 5.2, 6, 9.4, and 10 - 13, and the Definitions exhibit, will survive termination of this Agreement. Termination of this Agreement will not affect the right of your End Users who have downloaded your Application prior to termination to continue using it. + + 10. Indemnification. + You agree to indemnify, hold harmless and, at Leap Motion’s option, defend Leap Motion and its affiliates and their respective officers, directors, employees, agents, and representatives harmless from any and all judgments, awards, settlements, liabilities, damages, costs, penalties, fines and other expenses (including court costs and reasonable attorneys’ fees) incurred by them arising out of or relating to any third party claim (a) with respect to your Application, including products liability, privacy, or intellectual property infringement claims, or (b) based upon your negligence or wilful misconduct or any breach or alleged breach of your representations, warranties, and covenants under this Agreement. In no event may you enter into any settlement or like agreement with a third party that affects Leap Motion rights or binds Leap Motion in any way, without the prior written consent of Leap Motion. + + 11. Warranty Disclaimer. + THE SDK, THE LEAP MOTION SOFTWARE AND THE LEAP MOTION REDISTRIBUTABLES ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. LEAP MOTION, ON BEHALF OF ITSELF AND ITS SUPPLIERS, HEREBY DISCLAIMS ALL REPRESENTATIONS, PROMISES, OR WARRANTIES, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH RESPECT TO THE SDK, THE LEAP MOTION SOFTWARE AND THE LEAP MOTION REDISTRIBUTABLES, INCLUDING THEIR CONDITION, AVAILABILITY, OR THE EXISTENCE OF ANY LATENT DEFECTS, AND LEAP MOTION SPECIFICALLY DISCLAIMS ALL IMPLIED WARRANTIES OF MERCHANTABILITY, TITLE, NONINFRINGEMENT, SUITABILITY, AND FITNESS FOR ANY PURPOSE. LEAP MOTION DOES NOT WARRANT THAT THE SDK, THE LEAP MOTION SOFTWARE OR THE LEAP MOTION REDISTRIBUTABLES WILL BE ERROR-FREE OR THAT THEY WILL WORK WITHOUT INTERRUPTION. + + 12. Limitation of Liability. + IN NO EVENT WILL LEAP MOTION'S LIABILITY, OR THOSE OF ITS SUPPLIERS, ARISING OUT OF OR RELATED TO THIS AGREEMENT OR TO THE SDK EXCEED ONE THOUSAND DOLLARS. EXCEPT FOR INDEMNIFICATION OBLIGATIONS, OR A BREACH OF THE LICENSE RESTRICTIONS OR CONFIDENTIALITY OBLIGATIONS, IN NO EVENT WILL EITHER PARTY HAVE ANY LIABILITY FOR ANY INDIRECT, INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES, HOWEVER CAUSED AND BASED ON ANY THEORY OF LIABILITY, WHETHER FOR BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE) OR OTHERWISE, ARISING OUT OF OR RELATED TO THIS AGREEMENT, INCLUDING BUT NOT LIMITED TO LOSS OF ANTICIPATED PROFITS OR BUSINESS INTERRUPTION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS WILL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY. THE PARTIES AGREE THAT THE FOREGOING LIMITATIONS REPRESENT A REASONABLE ALLOCATION OF RISK UNDER THIS AGREEMENT. + + 13. Miscellaneous. + 13.1. Assignment. You may not assign this Agreement without the prior written consent of Leap Motion. Any assignment without such consent is void and of no effect. Leap Motion may assign this Agreement without your consent in connection with (a) a merger or consolidation of Leap Motion, (b) a sale or assignment of substantially all its assets, or (c) any other transaction which results in another entity or person owning substantially all of the assets of Leap Motion. In the event of a permitted assignment, this Agreement will inure to the benefit of and be binding upon the parties and their respective successors and permitted assigns. + 13.2. Waiver; Severability. The failure of the other party to enforce any rights under this Agreement will not be deemed a waiver of any rights. The rights and remedies of the parties in this Agreement are not exclusive and are in addition to any other rights and remedies provided by law. If any provision of this Agreement is held by a court of competent jurisdiction to be contrary to law, the remaining provisions of this Agreement will remain in full force and effect. + 13.3. Reservation. All licenses not expressly granted in this Agreement are reserved and no other licenses, immunity or rights, express or implied, are granted by Leap Motion, by implication, estoppel, or otherwise. The software in the SDK is licensed, not sold. + 13.4. Export Restrictions. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users, and end use. + 13.5. Governing Law and Jurisdiction. This Agreement will be exclusively governed by and construed under the laws of the State of California, without reference to or application of rules governing choice of laws. All disputes arising out of or related to this Agreement will be subject to the exclusive jurisdiction of the state and federal courts located in San Francisco, California and you hereby consent to such jurisdiction. However, Leap Motion may apply to any court or tribunal worldwide, including but not limited to those having jurisdiction over you or your Authorized Users, to seek injunctive relief. + 13.6. Relationship of the Parties. This Agreement does not create any agency, partnership, or joint venture relationship between Leap Motion and you. This Agreement is for the sole benefit of Leap Motion and you (and indemnified parties), and no other persons will have any right or remedy under this Agreement. + 13.7. Notice. The address for notice to Leap Motion under this Agreement is: + Ultraleap Ltd. + The West Wing + Glass Wharf + Bristol, BS2 0EL + United Kingdom + Leap Motion may provide you notice under this Agreement by email or other electronic communication or by posting communications to its development community on the Leap Motion developer portal. You consent to receive such notices in any of the foregoing manners and agree that any such notices by Leap Motion will satisfy any legal communication requirements. + 13.8. Entire Agreement. This Agreement is the entire understanding of the parties with respect to its subject matter and supersedes any previous or contemporaneous communications, whether oral or written with respect to such subject matter. + + Definitions + Whenever capitalized in this Agreement: + “Authorized Users” means your employees and contractors, members of your organization or, if you are an educational institution, your faculty, staff and registered students, who (a) have a demonstrable need to know or use the SDK in order to develop and test Applications on your behalf and (b) each have written and binding agreements with you to protect against the unauthorized use and disclosure of the SDK consistent with the terms and conditions of this Agreement. Authorized Users do not include End Users. + “End User” means your end user customer(s) or licensee(s). + “Leap Motion” “we” or “us” means Ultraleap Ltd., with a principal place of business at The West Wing, Glass Wharf, Bristol, BS2 0EL, United Kingdom. + “Leap Motion Device” means the Leap Motion Controller, a USB peripheral device that detects and reads movements within a 3-D interaction space to precisely interact with and control software on a computing device, or a Leap Motion-authorized embedded optical module. + “Leap Motion Redistributables” means any .lib code, .dll files, .so files, sample code, or other materials we specifically designate in the SDK as made available for incorporation into or distribution with Applications. + “Leap Motion Software” means the Leap Motion core services application and related applications that interact with a Leap Motion Device and an operating system to make motion control functionality available to Applications, and includes any Updates thereto. + “Non-Redistributable Materials” means the Leap Motion Software, and any other code, files or materials that are not specifically designated in the SDK as made available for incorporation into Applications or that are specifically designated in the SDK as not subject to distribution. + “SDK” means, collectively, the Leap Motion Redistributables, tools, APIs, sample code, software, documentation, other materials and any updates to the foregoing that may be provided or made available to you by Leap Motion in connection with this Agreement, via the Leap Motion developer portal or otherwise for use in connection with the Leap Motion development program to develop Applications. + “Specialized Application” means a Leap Motion-enabled Application which is: (i) priced at more than US$500 (or $240/year if on a subscription or similar basis, including without limitation the cumulative value of any Leap Motion-enabled Application lent, leased, let or hired); (ii) for use with a system, machine or device (other than a PC, mobile phone or VR/AR headset), priced at more than US$500 (or $240/year if on a subscription or similar basis); (iii) used for or designed for use with industrial, military, commercial or medical equipment or computer aided design; or (iv) the development of any other commercial product or service other than the Leap Motion-enabled Application itself where the annual revenue in aggregate for the product or service exceeds $50,000. + “Updates” means updates, upgrades, modifications, enhancements, revisions, new releases or new versions to the SDK that Leap Motion may make available to you in connection with this Agreement. + Other capitalized terms used in this Agreement have the meaning given them elsewhere in this Agreement. + + Addendum 1 + (to Leap Motion SDK Agreement) + Additional Terms for Image API + The following terms are in addition to the terms of the Leap Motion SDK Agreement (“Agreement”) and apply to any use of the Leap Motion application programming interface that enables you or your Application to access images and / or video streams from a Leap Motion Device (“Image API”): + + 1. Use of Image API. + 1.1. Purpose. You and/or your Application may access the Image API and use image data available through the Image API only for the purpose of developing and testing Applications, and only for use with a Leap Motion Device. You may not use the Image API to develop or aid development of competing motion tracking hardware or software. Any use of the Image API must be in accordance with the terms of the Agreement and this Addendum. + 1.2. Privacy + 1.2.1. If you and/or your Application collects, uploads, stores, transmits or shares images, videos or other personal information available through the Image API, either through or in connection with your Application, you must expressly provide users with your privacy policy and adhere to it. + 1.2.2. You must get specific opt-in consent from the user for any use that is beyond the limited and express purpose of your Application. + 1.2.3. You and your Application must use and store information collected from users securely and only for as long as it is needed. + 1.2.4. You agree that you will protect the privacy and legal rights of users, and comply with all applicable criminal, civil and statutory privacy laws and regulations. json: leap-motion-sdk-2019.json - yml: leap-motion-sdk-2019.yml + yaml: leap-motion-sdk-2019.yml html: leap-motion-sdk-2019.html - text: leap-motion-sdk-2019.LICENSE + license: leap-motion-sdk-2019.LICENSE - license_key: leptonica + category: Permissive spdx_license_key: Leptonica other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This software is distributed in the hope that it will be useful, but with NO WARRANTY\ + \ OF ANY KIND.\n\nNo author or distributor accepts responsibility to anyone for the consequences\ + \ of using this software, or for whether it serves any particular purpose or works at all,\ + \ unless he or she says so in writing. Everyone is granted permission to copy, modify and\ + \ redistribute this source code, for commercial or non-commercial purposes, with the following\ + \ restrictions: \n\n(1) the origin of this source code must not be misrepresented; \n(2)\ + \ modified versions must be plainly marked as such; and \n(3) this notice may not be removed\ + \ or altered from any source or modified source distribution." json: leptonica.json - yml: leptonica.yml + yaml: leptonica.yml html: leptonica.html - text: leptonica.LICENSE + license: leptonica.LICENSE - license_key: lgpl-2.0 + category: Copyleft Limited spdx_license_key: LGPL-2.0-only other_spdx_license_keys: - LGPL-2.0 @@ -9965,10255 +96225,87808 @@ - LicenseRef-LGPL-2.0 is_exception: no is_deprecated: no - category: Copyleft Limited + text: " GNU LIBRARY GENERAL PUBLIC LICENSE\n Version\ + \ 2, June 1991\n\n Copyright (C) 1991 Free Software Foundation, Inc.\n51 Franklin Street,\ + \ Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute\ + \ verbatim copies\n of this license document, but changing it is not allowed.\n\n[This is\ + \ the first released version of the library GPL. It is\n numbered 2 because it goes with\ + \ version 2 of the ordinary GPL.]\n\n Preamble\n\n The licenses\ + \ for most software are designed to take away your\nfreedom to share and change it. By\ + \ contrast, the GNU General Public\nLicenses are intended to guarantee your freedom to share\ + \ and change\nfree software--to make sure the software is free for all its users.\n\n This\ + \ license, the Library General Public License, applies to some\nspecially designated Free\ + \ Software Foundation software, and to any\nother libraries whose authors decide to use\ + \ it. You can use it for\nyour libraries, too.\n\n When we speak of free software, we\ + \ are referring to freedom, not\nprice. Our General Public Licenses are designed to make\ + \ sure that you\nhave the freedom to distribute copies of free software (and charge for\n\ + this service if you wish), that you receive source code or can get it\nif you want it, that\ + \ you can change the software or use pieces of it\nin new free programs; and that you know\ + \ you can do these things.\n\n To protect your rights, we need to make restrictions that\ + \ forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese\ + \ restrictions translate to certain responsibilities for you if\nyou distribute copies of\ + \ the library, or if you modify it.\n\n For example, if you distribute copies of the library,\ + \ whether gratis\nor for a fee, you must give the recipients all the rights that we gave\n\ + you. You must make sure that they, too, receive or can get the source\ncode. If you link\ + \ a program with the library, you must provide\ncomplete object files to the recipients\ + \ so that they can relink them\nwith the library, after making changes to the library and\ + \ recompiling\nit. And you must show them these terms so they know their rights.\n\n Our\ + \ method of protecting your rights has two steps: (1) copyright\nthe library, and (2) offer\ + \ you this license which gives you legal\npermission to copy, distribute and/or modify the\ + \ library.\n\n Also, for each distributor's protection, we want to make certain\nthat everyone\ + \ understands that there is no warranty for this free\nlibrary. If the library is modified\ + \ by someone else and passed on, we\nwant its recipients to know that what they have is\ + \ not the original\nversion, so that any problems introduced by others will not reflect\ + \ on\nthe original authors' reputations.\n\n Finally, any free program is threatened constantly\ + \ by software\npatents. We wish to avoid the danger that companies distributing free\n\ + software will individually obtain patent licenses, thus in effect\ntransforming the program\ + \ into proprietary software. To prevent this,\nwe have made it clear that any patent must\ + \ be licensed for everyone's\nfree use or not licensed at all.\n\n Most GNU software, including\ + \ some libraries, is covered by the ordinary\nGNU General Public License, which was designed\ + \ for utility programs. This\nlicense, the GNU Library General Public License, applies\ + \ to certain\ndesignated libraries. This license is quite different from the ordinary\n\ + one; be sure to read it in full, and don't assume that anything in it is\nthe same as in\ + \ the ordinary license.\n\n The reason we have a separate public license for some libraries\ + \ is that\nthey blur the distinction we usually make between modifying or adding to a\n\ + program and simply using it. Linking a program with a library, without\nchanging the library,\ + \ is in some sense simply using the library, and is\nanalogous to running a utility program\ + \ or application program. However, in\na textual and legal sense, the linked executable\ + \ is a combined work, a\nderivative of the original library, and the ordinary General Public\ + \ License\ntreats it as such.\n\n Because of this blurred distinction, using the ordinary\ + \ General\nPublic License for libraries did not effectively promote software\nsharing, because\ + \ most developers did not use the libraries. We\nconcluded that weaker conditions might\ + \ promote sharing better.\n\n However, unrestricted linking of non-free programs would\ + \ deprive the\nusers of those programs of all benefit from the free status of the\nlibraries\ + \ themselves. This Library General Public License is intended to\npermit developers of\ + \ non-free programs to use free libraries, while\npreserving your freedom as a user of such\ + \ programs to change the free\nlibraries that are incorporated in them. (We have not seen\ + \ how to achieve\nthis as regards changes in header files, but we have achieved it as regards\n\ + changes in the actual functions of the Library.) The hope is that this\nwill lead to faster\ + \ development of free libraries.\n\n The precise terms and conditions for copying, distribution\ + \ and\nmodification follow. Pay close attention to the difference between a\n\"work based\ + \ on the library\" and a \"work that uses the library\". The\nformer contains code derived\ + \ from the library, while the latter only\nworks together with the library.\n\n Note that\ + \ it is possible for a library to be covered by the ordinary\nGeneral Public License rather\ + \ than by this special one.\n\n GNU LIBRARY GENERAL PUBLIC LICENSE\n \ + \ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement\ + \ applies to any software library which\ncontains a notice placed by the copyright holder\ + \ or other authorized\nparty saying it may be distributed under the terms of this Library\n\ + General Public License (also called \"this License\"). Each licensee is\naddressed as \"\ + you\".\n\n A \"library\" means a collection of software functions and/or data\nprepared\ + \ so as to be conveniently linked with application programs\n(which use some of those functions\ + \ and data) to form executables.\n\n The \"Library\", below, refers to any such software\ + \ library or work\nwhich has been distributed under these terms. A \"work based on the\n\ + Library\" means either the Library or any derivative work under\ncopyright law: that is\ + \ to say, a work containing the Library or a\nportion of it, either verbatim or with modifications\ + \ and/or translated\nstraightforwardly into another language. (Hereinafter, translation\ + \ is\nincluded without limitation in the term \"modification\".)\n\n \"Source code\" for\ + \ a work means the preferred form of the work for\nmaking modifications to it. For a library,\ + \ complete source code means\nall the source code for all modules it contains, plus any\ + \ associated\ninterface definition files, plus the scripts used to control compilation\n\ + and installation of the library.\n\n Activities other than copying, distribution and modification\ + \ are not\ncovered by this License; they are outside its scope. The act of\nrunning a program\ + \ using the Library is not restricted, and output from\nsuch a program is covered only if\ + \ its contents constitute a work based\non the Library (independent of the use of the Library\ + \ in a tool for\nwriting it). Whether that is true depends on what the Library does\nand\ + \ what the program that uses the Library does.\n \n 1. You may copy and distribute verbatim\ + \ copies of the Library's\ncomplete source code as you receive it, in any medium, provided\ + \ that\nyou conspicuously and appropriately publish on each copy an\nappropriate copyright\ + \ notice and disclaimer of warranty; keep intact\nall the notices that refer to this License\ + \ and to the absence of any\nwarranty; and distribute a copy of this License along with\ + \ the\nLibrary.\n\n You may charge a fee for the physical act of transferring a copy,\n\ + and you may at your option offer warranty protection in exchange for a\nfee.\n\n 2. You\ + \ may modify your copy or copies of the Library or any portion\nof it, thus forming a work\ + \ based on the Library, and copy and\ndistribute such modifications or work under the terms\ + \ of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) The\ + \ modified work must itself be a software library.\n\n b) You must cause the files modified\ + \ to carry prominent notices\n stating that you changed the files and the date of any\ + \ change.\n\n c) You must cause the whole of the work to be licensed at no\n charge\ + \ to all third parties under the terms of this License.\n\n d) If a facility in the modified\ + \ Library refers to a function or a\n table of data to be supplied by an application\ + \ program that uses\n the facility, other than as an argument passed when the facility\n\ + \ is invoked, then you must make a good faith effort to ensure that,\n in the event\ + \ an application does not supply such function or\n table, the facility still operates,\ + \ and performs whatever part of\n its purpose remains meaningful.\n\n (For example,\ + \ a function in a library to compute square roots has\n a purpose that is entirely well-defined\ + \ independent of the\n application. Therefore, Subsection 2d requires that any\n \ + \ application-supplied function or table used by this function must\n be optional: if\ + \ the application does not supply it, the square\n root function must still compute square\ + \ roots.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable\ + \ sections of that work are not derived from the Library,\nand can be reasonably considered\ + \ independent and separate works in\nthemselves, then this License, and its terms, do not\ + \ apply to those\nsections when you distribute them as separate works. But when you\ndistribute\ + \ the same sections as part of a whole which is a work based\non the Library, the distribution\ + \ of the whole must be on the terms of\nthis License, whose permissions for other licensees\ + \ extend to the\nentire whole, and thus to each and every part regardless of who wrote\n\ + it.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights\ + \ to work written entirely by you; rather, the intent is to\nexercise the right to control\ + \ the distribution of derivative or\ncollective works based on the Library.\n\nIn addition,\ + \ mere aggregation of another work not based on the Library\nwith the Library (or with a\ + \ work based on the Library) on a volume of\na storage or distribution medium does not bring\ + \ the other work under\nthe scope of this License.\n\n 3. You may opt to apply the terms\ + \ of the ordinary GNU General Public\nLicense instead of this License to a given copy of\ + \ the Library. To do\nthis, you must alter all the notices that refer to this License,\ + \ so\nthat they refer to the ordinary GNU General Public License, version 2,\ninstead of\ + \ to this License. (If a newer version than version 2 of the\nordinary GNU General Public\ + \ License has appeared, then you can specify\nthat version instead if you wish.) Do not\ + \ make any other change in\nthese notices.\n\n Once this change is made in a given copy,\ + \ it is irreversible for\nthat copy, so the ordinary GNU General Public License applies\ + \ to all\nsubsequent copies and derivative works made from that copy.\n\n This option is\ + \ useful when you wish to copy part of the code of\nthe Library into a program that is not\ + \ a library.\n\n 4. You may copy and distribute the Library (or a portion or\nderivative\ + \ of it, under Section 2) in object code or executable form\nunder the terms of Sections\ + \ 1 and 2 above provided that you accompany\nit with the complete corresponding machine-readable\ + \ source code, which\nmust be distributed under the terms of Sections 1 and 2 above on a\n\ + medium customarily used for software interchange.\n\n If distribution of object code is\ + \ made by offering access to copy\nfrom a designated place, then offering equivalent access\ + \ to copy the\nsource code from the same place satisfies the requirement to\ndistribute\ + \ the source code, even though third parties are not\ncompelled to copy the source along\ + \ with the object code.\n\n 5. A program that contains no derivative of any portion of\ + \ the\nLibrary, but is designed to work with the Library by being compiled or\nlinked with\ + \ it, is called a \"work that uses the Library\". Such a\nwork, in isolation, is not a\ + \ derivative work of the Library, and\ntherefore falls outside the scope of this License.\n\ + \n However, linking a \"work that uses the Library\" with the Library\ncreates an executable\ + \ that is a derivative of the Library (because it\ncontains portions of the Library), rather\ + \ than a \"work that uses the\nlibrary\". The executable is therefore covered by this License.\n\ + Section 6 states terms for distribution of such executables.\n\n When a \"work that uses\ + \ the Library\" uses material from a header file\nthat is part of the Library, the object\ + \ code for the work may be a\nderivative work of the Library even though the source code\ + \ is not.\nWhether this is true is especially significant if the work can be\nlinked without\ + \ the Library, or if the work is itself a library. The\nthreshold for this to be true is\ + \ not precisely defined by law.\n\n If such an object file uses only numerical parameters,\ + \ data\nstructure layouts and accessors, and small macros and small inline\nfunctions (ten\ + \ lines or less in length), then the use of the object\nfile is unrestricted, regardless\ + \ of whether it is legally a derivative\nwork. (Executables containing this object code\ + \ plus portions of the\nLibrary will still fall under Section 6.)\n\n Otherwise, if the\ + \ work is a derivative of the Library, you may\ndistribute the object code for the work\ + \ under the terms of Section 6.\nAny executables containing that work also fall under Section\ + \ 6,\nwhether or not they are linked directly with the Library itself.\n\n 6. As an exception\ + \ to the Sections above, you may also compile or\nlink a \"work that uses the Library\"\ + \ with the Library to produce a\nwork containing portions of the Library, and distribute\ + \ that work\nunder terms of your choice, provided that the terms permit\nmodification of\ + \ the work for the customer's own use and reverse\nengineering for debugging such modifications.\n\ + \n You must give prominent notice with each copy of the work that the\nLibrary is used\ + \ in it and that the Library and its use are covered by\nthis License. You must supply\ + \ a copy of this License. If the work\nduring execution displays copyright notices, you\ + \ must include the\ncopyright notice for the Library among them, as well as a reference\n\ + directing the user to the copy of this License. Also, you must do one\nof these things:\n\ + \n a) Accompany the work with the complete corresponding\n machine-readable source\ + \ code for the Library including whatever\n changes were used in the work (which must\ + \ be distributed under\n Sections 1 and 2 above); and, if the work is an executable linked\n\ + \ with the Library, with the complete machine-readable \"work that\n uses the Library\"\ + , as object code and/or source code, so that the\n user can modify the Library and then\ + \ relink to produce a modified\n executable containing the modified Library. (It is\ + \ understood\n that the user who changes the contents of definitions files in the\n \ + \ Library will not necessarily be able to recompile the application\n to use the modified\ + \ definitions.)\n\n b) Accompany the work with a written offer, valid for at\n least\ + \ three years, to give the same user the materials\n specified in Subsection 6a, above,\ + \ for a charge no more\n than the cost of performing this distribution.\n\n c) If\ + \ distribution of the work is made by offering access to copy\n from a designated place,\ + \ offer equivalent access to copy the above\n specified materials from the same place.\n\ + \n d) Verify that the user has already received a copy of these\n materials or that\ + \ you have already sent this user a copy.\n\n For an executable, the required form of the\ + \ \"work that uses the\nLibrary\" must include any data and utility programs needed for\n\ + reproducing the executable from it. However, as a special exception,\nthe source code distributed\ + \ need not include anything that is normally\ndistributed (in either source or binary form)\ + \ with the major\ncomponents (compiler, kernel, and so on) of the operating system on\n\ + which the executable runs, unless that component itself accompanies\nthe executable.\n\n\ + \ It may happen that this requirement contradicts the license\nrestrictions of other proprietary\ + \ libraries that do not normally\naccompany the operating system. Such a contradiction\ + \ means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n\ + \n 7. You may place library facilities that are a work based on the\nLibrary side-by-side\ + \ in a single library together with other library\nfacilities not covered by this License,\ + \ and distribute such a combined\nlibrary, provided that the separate distribution of the\ + \ work based on\nthe Library and of the other library facilities is otherwise\npermitted,\ + \ and provided that you do these two things:\n\n a) Accompany the combined library with\ + \ a copy of the same work\n based on the Library, uncombined with any other library\n\ + \ facilities. This must be distributed under the terms of the\n Sections above.\n\ + \n b) Give prominent notice with the combined library of the fact\n that part of it\ + \ is a work based on the Library, and explaining\n where to find the accompanying uncombined\ + \ form of the same work.\n\n 8. You may not copy, modify, sublicense, link with, or distribute\n\ + the Library except as expressly provided under this License. Any\nattempt otherwise to\ + \ copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically\ + \ terminate your\nrights under this License. However, parties who have received copies,\n\ + or rights, from you under this License will not have their licenses\nterminated so long\ + \ as such parties remain in full compliance.\n\n 9. You are not required to accept this\ + \ License, since you have not\nsigned it. However, nothing else grants you permission to\ + \ modify or\ndistribute the Library or its derivative works. These actions are\nprohibited\ + \ by law if you do not accept this License. Therefore, by\nmodifying or distributing the\ + \ Library (or any work based on the\nLibrary), you indicate your acceptance of this License\ + \ to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe\ + \ Library or works based on it.\n\n 10. Each time you redistribute the Library (or any\ + \ work based on the\nLibrary), the recipient automatically receives a license from the\n\ + original licensor to copy, distribute, link with or modify the Library\nsubject to these\ + \ terms and conditions. You may not impose any further\nrestrictions on the recipients'\ + \ exercise of the rights granted herein.\nYou are not responsible for enforcing compliance\ + \ by third parties to\nthis License.\n\n 11. If, as a consequence of a court judgment or\ + \ allegation of patent\ninfringement or for any other reason (not limited to patent issues),\n\ + conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict\ + \ the conditions of this License, they do not\nexcuse you from the conditions of this License.\ + \ If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\n\ + License and any other pertinent obligations, then as a consequence you\nmay not distribute\ + \ the Library at all. For example, if a patent\nlicense would not permit royalty-free redistribution\ + \ of the Library by\nall those who receive copies directly or indirectly through you, then\n\ + the only way you could satisfy both it and this License would be to\nrefrain entirely from\ + \ distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable\ + \ under any\nparticular circumstance, the balance of the section is intended to apply,\n\ + and the section as a whole is intended to apply in other circumstances.\n\nIt is not the\ + \ purpose of this section to induce you to infringe any\npatents or other property right\ + \ claims or to contest validity of any\nsuch claims; this section has the sole purpose of\ + \ protecting the\nintegrity of the free software distribution system which is\nimplemented\ + \ by public license practices. Many people have made\ngenerous contributions to the wide\ + \ range of software distributed\nthrough that system in reliance on consistent application\ + \ of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute\ + \ software through any other system and a licensee cannot\nimpose that choice.\n\nThis section\ + \ is intended to make thoroughly clear what is believed to\nbe a consequence of the rest\ + \ of this License.\n\n 12. If the distribution and/or use of the Library is restricted\ + \ in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright\ + \ holder who places the Library under this License may add\nan explicit geographical distribution\ + \ limitation excluding those countries,\nso that distribution is permitted only in or among\ + \ countries not thus\nexcluded. In such case, this License incorporates the limitation\ + \ as if\nwritten in the body of this License.\n\n 13. The Free Software Foundation may\ + \ publish revised and/or new\nversions of the Library General Public License from time to\ + \ time.\nSuch new versions will be similar in spirit to the present version,\nbut may differ\ + \ in detail to address new problems or concerns.\n\nEach version is given a distinguishing\ + \ version number. If the Library\nspecifies a version number of this License which applies\ + \ to it and\n\"any later version\", you have the option of following the terms and\nconditions\ + \ either of that version or of any later version published by\nthe Free Software Foundation.\ + \ If the Library does not specify a\nlicense version number, you may choose any version\ + \ ever published by\nthe Free Software Foundation.\n\n 14. If you wish to incorporate parts\ + \ of the Library into other free\nprograms whose distribution conditions are incompatible\ + \ with these,\nwrite to the author to ask for permission. For software which is\ncopyrighted\ + \ by the Free Software Foundation, write to the Free\nSoftware Foundation; we sometimes\ + \ make exceptions for this. Our\ndecision will be guided by the two goals of preserving\ + \ the free status\nof all derivatives of our free software and of promoting the sharing\n\ + and reuse of software generally.\n\n NO WARRANTY\n\n 15. BECAUSE\ + \ THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE\ + \ EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\ + \ HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\n\ + KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES\ + \ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY\ + \ AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU\ + \ ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. IN NO EVENT\ + \ UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER,\ + \ OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE,\ + \ BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL\ + \ DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nLIBRARY (INCLUDING BUT NOT LIMITED\ + \ TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\ + \ PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\nSUCH\ + \ HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n \ + \ END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your\ + \ New Libraries\n\n If you develop a new library, and you want it to be of the greatest\n\ + possible use to the public, we recommend making it free software that\neveryone can redistribute\ + \ and change. You can do so by permitting\nredistribution under these terms (or, alternatively,\ + \ under the terms of the\nordinary General Public License).\n\n To apply these terms, attach\ + \ the following notices to the library. It is\nsafest to attach them to the start of each\ + \ source file to most effectively\nconvey the exclusion of warranty; and each file should\ + \ have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\ + \n \n Copyright\ + \ (C) \n\n This library is free software; you can redistribute\ + \ it and/or\n modify it under the terms of the GNU Library General Public\n License\ + \ as published by the Free Software Foundation; either\n version 2 of the License, or\ + \ (at your option) any later version.\n\n This library is distributed in the hope that\ + \ it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n\ + \ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General\ + \ Public License for more details.\n\n You should have received a copy of the GNU Library\ + \ General Public\n License along with this library; if not, write to the Free Software\n\ + \ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\n\ + Also add information on how to contact you by electronic and paper mail.\n\nYou should also\ + \ get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"\ + copyright disclaimer\" for the library, if\nnecessary. Here is a sample; alter the names:\n\ + \n Yoyodyne, Inc., hereby disclaims all copyright interest in the\n library `Frob' (a\ + \ library for tweaking knobs) written by James Random Hacker.\n\n ,\ + \ 1 April 1990\n Ty Coon, President of Vice\n\nThat's all there is to it!" json: lgpl-2.0.json - yml: lgpl-2.0.yml + yaml: lgpl-2.0.yml html: lgpl-2.0.html - text: lgpl-2.0.LICENSE + license: lgpl-2.0.LICENSE - license_key: lgpl-2.0-fltk + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + FLTK License + December 11, 2001 + + The FLTK library and included programs are provided under the terms + of the GNU Library General Public License (LGPL) with the following + exceptions: + + 1. Modifications to the FLTK configure script, config + header file, and makefiles by themselves to support + a specific platform do not constitute a modified or + derivative work. + + The authors do request that such modifications be + contributed to the FLTK project - send all + contributions to "fltk-bugs@fltk.org". + + 2. Widgets that are subclassed from FLTK widgets do not + constitute a derivative work. + + 3. Static linking of applications and widgets to the + FLTK library does not constitute a derivative work + and does not require the author to provide source + code for the application or widget, use the shared + FLTK libraries, or link their applications or + widgets against a user-supplied version of FLTK. + + If you link the application or widget to a modified + version of FLTK, then the changes to FLTK must be + provided under the terms of the LGPL in sections + 1, 2, and 4. + + 4. You do not have to provide a copy of the FLTK license + with programs that are linked to the FLTK library, nor + do you have to identify the FLTK license in your + program or documentation as required by section 6 + of the LGPL. + + However, programs must still identify their use of FLTK. + The following example statement can be included in user + documentation to satisfy this requirement: + + [program/widget] is based in part on the work of + the FLTK project (http://www.fltk.org). json: lgpl-2.0-fltk.json - yml: lgpl-2.0-fltk.yml + yaml: lgpl-2.0-fltk.yml html: lgpl-2.0-fltk.html - text: lgpl-2.0-fltk.LICENSE + license: lgpl-2.0-fltk.LICENSE - license_key: lgpl-2.0-plus + category: Copyleft Limited spdx_license_key: LGPL-2.0-or-later other_spdx_license_keys: - LGPL-2.0+ - LicenseRef-LGPL is_exception: no is_deprecated: no - category: Copyleft Limited + text: "This library is free software; you can redistribute it and/or modify it under\nthe\ + \ terms of the GNU Library General Public License as published by the Free\nSoftware Foundation;\ + \ either version 2 of the License, or (at your option) any\nlater version.\n\nThis library\ + \ is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without\ + \ even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See\ + \ the GNU Library General Public License for more details.\n\nYou should have received a\ + \ copy of the GNU Library General Public License along\nwith this library; if not, write\ + \ to the Free Software Foundation, Inc., 51\nFranklin St, Fifth Floor, Boston, MA 02110-1301,\ + \ USA.\n\n GNU LIBRARY GENERAL PUBLIC LICENSE\n Version\ + \ 2, June 1991\n\n Copyright (C) 1991 Free Software Foundation, Inc.\n51 Franklin Street,\ + \ Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute\ + \ verbatim copies\n of this license document, but changing it is not allowed.\n\n[This is\ + \ the first released version of the library GPL. It is\n numbered 2 because it goes with\ + \ version 2 of the ordinary GPL.]\n\n Preamble\n\n The licenses\ + \ for most software are designed to take away your\nfreedom to share and change it. By\ + \ contrast, the GNU General Public\nLicenses are intended to guarantee your freedom to share\ + \ and change\nfree software--to make sure the software is free for all its users.\n\n This\ + \ license, the Library General Public License, applies to some\nspecially designated Free\ + \ Software Foundation software, and to any\nother libraries whose authors decide to use\ + \ it. You can use it for\nyour libraries, too.\n\n When we speak of free software, we\ + \ are referring to freedom, not\nprice. Our General Public Licenses are designed to make\ + \ sure that you\nhave the freedom to distribute copies of free software (and charge for\n\ + this service if you wish), that you receive source code or can get it\nif you want it, that\ + \ you can change the software or use pieces of it\nin new free programs; and that you know\ + \ you can do these things.\n\n To protect your rights, we need to make restrictions that\ + \ forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese\ + \ restrictions translate to certain responsibilities for you if\nyou distribute copies of\ + \ the library, or if you modify it.\n\n For example, if you distribute copies of the library,\ + \ whether gratis\nor for a fee, you must give the recipients all the rights that we gave\n\ + you. You must make sure that they, too, receive or can get the source\ncode. If you link\ + \ a program with the library, you must provide\ncomplete object files to the recipients\ + \ so that they can relink them\nwith the library, after making changes to the library and\ + \ recompiling\nit. And you must show them these terms so they know their rights.\n\n Our\ + \ method of protecting your rights has two steps: (1) copyright\nthe library, and (2) offer\ + \ you this license which gives you legal\npermission to copy, distribute and/or modify the\ + \ library.\n\n Also, for each distributor's protection, we want to make certain\nthat everyone\ + \ understands that there is no warranty for this free\nlibrary. If the library is modified\ + \ by someone else and passed on, we\nwant its recipients to know that what they have is\ + \ not the original\nversion, so that any problems introduced by others will not reflect\ + \ on\nthe original authors' reputations.\n\n Finally, any free program is threatened constantly\ + \ by software\npatents. We wish to avoid the danger that companies distributing free\n\ + software will individually obtain patent licenses, thus in effect\ntransforming the program\ + \ into proprietary software. To prevent this,\nwe have made it clear that any patent must\ + \ be licensed for everyone's\nfree use or not licensed at all.\n\n Most GNU software, including\ + \ some libraries, is covered by the ordinary\nGNU General Public License, which was designed\ + \ for utility programs. This\nlicense, the GNU Library General Public License, applies\ + \ to certain\ndesignated libraries. This license is quite different from the ordinary\n\ + one; be sure to read it in full, and don't assume that anything in it is\nthe same as in\ + \ the ordinary license.\n\n The reason we have a separate public license for some libraries\ + \ is that\nthey blur the distinction we usually make between modifying or adding to a\n\ + program and simply using it. Linking a program with a library, without\nchanging the library,\ + \ is in some sense simply using the library, and is\nanalogous to running a utility program\ + \ or application program. However, in\na textual and legal sense, the linked executable\ + \ is a combined work, a\nderivative of the original library, and the ordinary General Public\ + \ License\ntreats it as such.\n\n Because of this blurred distinction, using the ordinary\ + \ General\nPublic License for libraries did not effectively promote software\nsharing, because\ + \ most developers did not use the libraries. We\nconcluded that weaker conditions might\ + \ promote sharing better.\n\n However, unrestricted linking of non-free programs would\ + \ deprive the\nusers of those programs of all benefit from the free status of the\nlibraries\ + \ themselves. This Library General Public License is intended to\npermit developers of\ + \ non-free programs to use free libraries, while\npreserving your freedom as a user of such\ + \ programs to change the free\nlibraries that are incorporated in them. (We have not seen\ + \ how to achieve\nthis as regards changes in header files, but we have achieved it as regards\n\ + changes in the actual functions of the Library.) The hope is that this\nwill lead to faster\ + \ development of free libraries.\n\n The precise terms and conditions for copying, distribution\ + \ and\nmodification follow. Pay close attention to the difference between a\n\"work based\ + \ on the library\" and a \"work that uses the library\". The\nformer contains code derived\ + \ from the library, while the latter only\nworks together with the library.\n\n Note that\ + \ it is possible for a library to be covered by the ordinary\nGeneral Public License rather\ + \ than by this special one.\n\n GNU LIBRARY GENERAL PUBLIC LICENSE\n \ + \ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement\ + \ applies to any software library which\ncontains a notice placed by the copyright holder\ + \ or other authorized\nparty saying it may be distributed under the terms of this Library\n\ + General Public License (also called \"this License\"). Each licensee is\naddressed as \"\ + you\".\n\n A \"library\" means a collection of software functions and/or data\nprepared\ + \ so as to be conveniently linked with application programs\n(which use some of those functions\ + \ and data) to form executables.\n\n The \"Library\", below, refers to any such software\ + \ library or work\nwhich has been distributed under these terms. A \"work based on the\n\ + Library\" means either the Library or any derivative work under\ncopyright law: that is\ + \ to say, a work containing the Library or a\nportion of it, either verbatim or with modifications\ + \ and/or translated\nstraightforwardly into another language. (Hereinafter, translation\ + \ is\nincluded without limitation in the term \"modification\".)\n\n \"Source code\" for\ + \ a work means the preferred form of the work for\nmaking modifications to it. For a library,\ + \ complete source code means\nall the source code for all modules it contains, plus any\ + \ associated\ninterface definition files, plus the scripts used to control compilation\n\ + and installation of the library.\n\n Activities other than copying, distribution and modification\ + \ are not\ncovered by this License; they are outside its scope. The act of\nrunning a program\ + \ using the Library is not restricted, and output from\nsuch a program is covered only if\ + \ its contents constitute a work based\non the Library (independent of the use of the Library\ + \ in a tool for\nwriting it). Whether that is true depends on what the Library does\nand\ + \ what the program that uses the Library does.\n \n 1. You may copy and distribute verbatim\ + \ copies of the Library's\ncomplete source code as you receive it, in any medium, provided\ + \ that\nyou conspicuously and appropriately publish on each copy an\nappropriate copyright\ + \ notice and disclaimer of warranty; keep intact\nall the notices that refer to this License\ + \ and to the absence of any\nwarranty; and distribute a copy of this License along with\ + \ the\nLibrary.\n\n You may charge a fee for the physical act of transferring a copy,\n\ + and you may at your option offer warranty protection in exchange for a\nfee.\n\n 2. You\ + \ may modify your copy or copies of the Library or any portion\nof it, thus forming a work\ + \ based on the Library, and copy and\ndistribute such modifications or work under the terms\ + \ of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) The\ + \ modified work must itself be a software library.\n\n b) You must cause the files modified\ + \ to carry prominent notices\n stating that you changed the files and the date of any\ + \ change.\n\n c) You must cause the whole of the work to be licensed at no\n charge\ + \ to all third parties under the terms of this License.\n\n d) If a facility in the modified\ + \ Library refers to a function or a\n table of data to be supplied by an application\ + \ program that uses\n the facility, other than as an argument passed when the facility\n\ + \ is invoked, then you must make a good faith effort to ensure that,\n in the event\ + \ an application does not supply such function or\n table, the facility still operates,\ + \ and performs whatever part of\n its purpose remains meaningful.\n\n (For example,\ + \ a function in a library to compute square roots has\n a purpose that is entirely well-defined\ + \ independent of the\n application. Therefore, Subsection 2d requires that any\n \ + \ application-supplied function or table used by this function must\n be optional: if\ + \ the application does not supply it, the square\n root function must still compute square\ + \ roots.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable\ + \ sections of that work are not derived from the Library,\nand can be reasonably considered\ + \ independent and separate works in\nthemselves, then this License, and its terms, do not\ + \ apply to those\nsections when you distribute them as separate works. But when you\ndistribute\ + \ the same sections as part of a whole which is a work based\non the Library, the distribution\ + \ of the whole must be on the terms of\nthis License, whose permissions for other licensees\ + \ extend to the\nentire whole, and thus to each and every part regardless of who wrote\n\ + it.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights\ + \ to work written entirely by you; rather, the intent is to\nexercise the right to control\ + \ the distribution of derivative or\ncollective works based on the Library.\n\nIn addition,\ + \ mere aggregation of another work not based on the Library\nwith the Library (or with a\ + \ work based on the Library) on a volume of\na storage or distribution medium does not bring\ + \ the other work under\nthe scope of this License.\n\n 3. You may opt to apply the terms\ + \ of the ordinary GNU General Public\nLicense instead of this License to a given copy of\ + \ the Library. To do\nthis, you must alter all the notices that refer to this License,\ + \ so\nthat they refer to the ordinary GNU General Public License, version 2,\ninstead of\ + \ to this License. (If a newer version than version 2 of the\nordinary GNU General Public\ + \ License has appeared, then you can specify\nthat version instead if you wish.) Do not\ + \ make any other change in\nthese notices.\n\n Once this change is made in a given copy,\ + \ it is irreversible for\nthat copy, so the ordinary GNU General Public License applies\ + \ to all\nsubsequent copies and derivative works made from that copy.\n\n This option is\ + \ useful when you wish to copy part of the code of\nthe Library into a program that is not\ + \ a library.\n\n 4. You may copy and distribute the Library (or a portion or\nderivative\ + \ of it, under Section 2) in object code or executable form\nunder the terms of Sections\ + \ 1 and 2 above provided that you accompany\nit with the complete corresponding machine-readable\ + \ source code, which\nmust be distributed under the terms of Sections 1 and 2 above on a\n\ + medium customarily used for software interchange.\n\n If distribution of object code is\ + \ made by offering access to copy\nfrom a designated place, then offering equivalent access\ + \ to copy the\nsource code from the same place satisfies the requirement to\ndistribute\ + \ the source code, even though third parties are not\ncompelled to copy the source along\ + \ with the object code.\n\n 5. A program that contains no derivative of any portion of\ + \ the\nLibrary, but is designed to work with the Library by being compiled or\nlinked with\ + \ it, is called a \"work that uses the Library\". Such a\nwork, in isolation, is not a\ + \ derivative work of the Library, and\ntherefore falls outside the scope of this License.\n\ + \n However, linking a \"work that uses the Library\" with the Library\ncreates an executable\ + \ that is a derivative of the Library (because it\ncontains portions of the Library), rather\ + \ than a \"work that uses the\nlibrary\". The executable is therefore covered by this License.\n\ + Section 6 states terms for distribution of such executables.\n\n When a \"work that uses\ + \ the Library\" uses material from a header file\nthat is part of the Library, the object\ + \ code for the work may be a\nderivative work of the Library even though the source code\ + \ is not.\nWhether this is true is especially significant if the work can be\nlinked without\ + \ the Library, or if the work is itself a library. The\nthreshold for this to be true is\ + \ not precisely defined by law.\n\n If such an object file uses only numerical parameters,\ + \ data\nstructure layouts and accessors, and small macros and small inline\nfunctions (ten\ + \ lines or less in length), then the use of the object\nfile is unrestricted, regardless\ + \ of whether it is legally a derivative\nwork. (Executables containing this object code\ + \ plus portions of the\nLibrary will still fall under Section 6.)\n\n Otherwise, if the\ + \ work is a derivative of the Library, you may\ndistribute the object code for the work\ + \ under the terms of Section 6.\nAny executables containing that work also fall under Section\ + \ 6,\nwhether or not they are linked directly with the Library itself.\n\n 6. As an exception\ + \ to the Sections above, you may also compile or\nlink a \"work that uses the Library\"\ + \ with the Library to produce a\nwork containing portions of the Library, and distribute\ + \ that work\nunder terms of your choice, provided that the terms permit\nmodification of\ + \ the work for the customer's own use and reverse\nengineering for debugging such modifications.\n\ + \n You must give prominent notice with each copy of the work that the\nLibrary is used\ + \ in it and that the Library and its use are covered by\nthis License. You must supply\ + \ a copy of this License. If the work\nduring execution displays copyright notices, you\ + \ must include the\ncopyright notice for the Library among them, as well as a reference\n\ + directing the user to the copy of this License. Also, you must do one\nof these things:\n\ + \n a) Accompany the work with the complete corresponding\n machine-readable source\ + \ code for the Library including whatever\n changes were used in the work (which must\ + \ be distributed under\n Sections 1 and 2 above); and, if the work is an executable linked\n\ + \ with the Library, with the complete machine-readable \"work that\n uses the Library\"\ + , as object code and/or source code, so that the\n user can modify the Library and then\ + \ relink to produce a modified\n executable containing the modified Library. (It is\ + \ understood\n that the user who changes the contents of definitions files in the\n \ + \ Library will not necessarily be able to recompile the application\n to use the modified\ + \ definitions.)\n\n b) Accompany the work with a written offer, valid for at\n least\ + \ three years, to give the same user the materials\n specified in Subsection 6a, above,\ + \ for a charge no more\n than the cost of performing this distribution.\n\n c) If\ + \ distribution of the work is made by offering access to copy\n from a designated place,\ + \ offer equivalent access to copy the above\n specified materials from the same place.\n\ + \n d) Verify that the user has already received a copy of these\n materials or that\ + \ you have already sent this user a copy.\n\n For an executable, the required form of the\ + \ \"work that uses the\nLibrary\" must include any data and utility programs needed for\n\ + reproducing the executable from it. However, as a special exception,\nthe source code distributed\ + \ need not include anything that is normally\ndistributed (in either source or binary form)\ + \ with the major\ncomponents (compiler, kernel, and so on) of the operating system on\n\ + which the executable runs, unless that component itself accompanies\nthe executable.\n\n\ + \ It may happen that this requirement contradicts the license\nrestrictions of other proprietary\ + \ libraries that do not normally\naccompany the operating system. Such a contradiction\ + \ means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n\ + \n 7. You may place library facilities that are a work based on the\nLibrary side-by-side\ + \ in a single library together with other library\nfacilities not covered by this License,\ + \ and distribute such a combined\nlibrary, provided that the separate distribution of the\ + \ work based on\nthe Library and of the other library facilities is otherwise\npermitted,\ + \ and provided that you do these two things:\n\n a) Accompany the combined library with\ + \ a copy of the same work\n based on the Library, uncombined with any other library\n\ + \ facilities. This must be distributed under the terms of the\n Sections above.\n\ + \n b) Give prominent notice with the combined library of the fact\n that part of it\ + \ is a work based on the Library, and explaining\n where to find the accompanying uncombined\ + \ form of the same work.\n\n 8. You may not copy, modify, sublicense, link with, or distribute\n\ + the Library except as expressly provided under this License. Any\nattempt otherwise to\ + \ copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically\ + \ terminate your\nrights under this License. However, parties who have received copies,\n\ + or rights, from you under this License will not have their licenses\nterminated so long\ + \ as such parties remain in full compliance.\n\n 9. You are not required to accept this\ + \ License, since you have not\nsigned it. However, nothing else grants you permission to\ + \ modify or\ndistribute the Library or its derivative works. These actions are\nprohibited\ + \ by law if you do not accept this License. Therefore, by\nmodifying or distributing the\ + \ Library (or any work based on the\nLibrary), you indicate your acceptance of this License\ + \ to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe\ + \ Library or works based on it.\n\n 10. Each time you redistribute the Library (or any\ + \ work based on the\nLibrary), the recipient automatically receives a license from the\n\ + original licensor to copy, distribute, link with or modify the Library\nsubject to these\ + \ terms and conditions. You may not impose any further\nrestrictions on the recipients'\ + \ exercise of the rights granted herein.\nYou are not responsible for enforcing compliance\ + \ by third parties to\nthis License.\n\n 11. If, as a consequence of a court judgment or\ + \ allegation of patent\ninfringement or for any other reason (not limited to patent issues),\n\ + conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict\ + \ the conditions of this License, they do not\nexcuse you from the conditions of this License.\ + \ If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\n\ + License and any other pertinent obligations, then as a consequence you\nmay not distribute\ + \ the Library at all. For example, if a patent\nlicense would not permit royalty-free redistribution\ + \ of the Library by\nall those who receive copies directly or indirectly through you, then\n\ + the only way you could satisfy both it and this License would be to\nrefrain entirely from\ + \ distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable\ + \ under any\nparticular circumstance, the balance of the section is intended to apply,\n\ + and the section as a whole is intended to apply in other circumstances.\n\nIt is not the\ + \ purpose of this section to induce you to infringe any\npatents or other property right\ + \ claims or to contest validity of any\nsuch claims; this section has the sole purpose of\ + \ protecting the\nintegrity of the free software distribution system which is\nimplemented\ + \ by public license practices. Many people have made\ngenerous contributions to the wide\ + \ range of software distributed\nthrough that system in reliance on consistent application\ + \ of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute\ + \ software through any other system and a licensee cannot\nimpose that choice.\n\nThis section\ + \ is intended to make thoroughly clear what is believed to\nbe a consequence of the rest\ + \ of this License.\n\n 12. If the distribution and/or use of the Library is restricted\ + \ in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright\ + \ holder who places the Library under this License may add\nan explicit geographical distribution\ + \ limitation excluding those countries,\nso that distribution is permitted only in or among\ + \ countries not thus\nexcluded. In such case, this License incorporates the limitation\ + \ as if\nwritten in the body of this License.\n\n 13. The Free Software Foundation may\ + \ publish revised and/or new\nversions of the Library General Public License from time to\ + \ time.\nSuch new versions will be similar in spirit to the present version,\nbut may differ\ + \ in detail to address new problems or concerns.\n\nEach version is given a distinguishing\ + \ version number. If the Library\nspecifies a version number of this License which applies\ + \ to it and\n\"any later version\", you have the option of following the terms and\nconditions\ + \ either of that version or of any later version published by\nthe Free Software Foundation.\ + \ If the Library does not specify a\nlicense version number, you may choose any version\ + \ ever published by\nthe Free Software Foundation.\n\n 14. If you wish to incorporate parts\ + \ of the Library into other free\nprograms whose distribution conditions are incompatible\ + \ with these,\nwrite to the author to ask for permission. For software which is\ncopyrighted\ + \ by the Free Software Foundation, write to the Free\nSoftware Foundation; we sometimes\ + \ make exceptions for this. Our\ndecision will be guided by the two goals of preserving\ + \ the free status\nof all derivatives of our free software and of promoting the sharing\n\ + and reuse of software generally.\n\n NO WARRANTY\n\n 15. BECAUSE\ + \ THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE\ + \ EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\ + \ HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\n\ + KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES\ + \ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY\ + \ AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU\ + \ ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. IN NO EVENT\ + \ UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER,\ + \ OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE,\ + \ BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL\ + \ DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nLIBRARY (INCLUDING BUT NOT LIMITED\ + \ TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\ + \ PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\nSUCH\ + \ HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n \ + \ END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your\ + \ New Libraries\n\n If you develop a new library, and you want it to be of the greatest\n\ + possible use to the public, we recommend making it free software that\neveryone can redistribute\ + \ and change. You can do so by permitting\nredistribution under these terms (or, alternatively,\ + \ under the terms of the\nordinary General Public License).\n\n To apply these terms, attach\ + \ the following notices to the library. It is\nsafest to attach them to the start of each\ + \ source file to most effectively\nconvey the exclusion of warranty; and each file should\ + \ have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\ + \n \n Copyright\ + \ (C) \n\n This library is free software; you can redistribute\ + \ it and/or\n modify it under the terms of the GNU Library General Public\n License\ + \ as published by the Free Software Foundation; either\n version 2 of the License, or\ + \ (at your option) any later version.\n\n This library is distributed in the hope that\ + \ it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n\ + \ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General\ + \ Public License for more details.\n\n You should have received a copy of the GNU Library\ + \ General Public\n License along with this library; if not, write to the Free Software\n\ + \ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\n\ + Also add information on how to contact you by electronic and paper mail.\n\nYou should also\ + \ get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"\ + copyright disclaimer\" for the library, if\nnecessary. Here is a sample; alter the names:\n\ + \n Yoyodyne, Inc., hereby disclaims all copyright interest in the\n library `Frob' (a\ + \ library for tweaking knobs) written by James Random Hacker.\n\n ,\ + \ 1 April 1990\n Ty Coon, President of Vice\n\nThat's all there is to it!" json: lgpl-2.0-plus.json - yml: lgpl-2.0-plus.yml + yaml: lgpl-2.0-plus.yml html: lgpl-2.0-plus.html - text: lgpl-2.0-plus.LICENSE + license: lgpl-2.0-plus.LICENSE - license_key: lgpl-2.0-plus-gcc + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public License + as published by the Free Software Foundation; either version 2, or + (at your option) any later version. + + In addition to the permissions in the GNU Library General Public + License, the Free Software Foundation gives you unlimited + permission to link the compiled version of this file into + combinations with other programs, and to distribute those + combinations without any restriction coming from the use of this + file. (The Library Public License restrictions do apply in other + respects; for example, they cover modification of the file, and + distribution when not linked into a combined executable.) + + 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA + 02110-1301, USA. json: lgpl-2.0-plus-gcc.json - yml: lgpl-2.0-plus-gcc.yml + yaml: lgpl-2.0-plus-gcc.yml html: lgpl-2.0-plus-gcc.html - text: lgpl-2.0-plus-gcc.LICENSE + license: lgpl-2.0-plus-gcc.LICENSE - license_key: lgpl-2.1 + category: Copyleft Limited spdx_license_key: LGPL-2.1-only other_spdx_license_keys: - LGPL-2.1 - LicenseRef-LGPL-2.1 is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + 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. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 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. + + , 1 April 1990 + Ty Coon, President of Vice + + That's all there is to it! json: lgpl-2.1.json - yml: lgpl-2.1.yml + yaml: lgpl-2.1.yml html: lgpl-2.1.html - text: lgpl-2.1.LICENSE + license: lgpl-2.1.LICENSE - license_key: lgpl-2.1-digia-qt + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "Digia Qt LGPL Exception version 1.1\n\nAs an additional permission to the GNU Lesser\ + \ General Public License version\n2.1, the object code form of a \"work that uses the Library\"\ + \ may incorporate\nmaterial from a header file that is part of the Library. You may distribute\n\ + such object code under terms of your choice, provided that:\n (i) the header files\ + \ of the Library have not been modified; and \n (ii) the incorporated material is limited\ + \ to numerical parameters, data\n structure layouts, accessors, macros, inline\ + \ functions and\n templates; and\n (iii) you comply with the terms of Section\ + \ 6 of the GNU Lesser General\n Public License version 2.1.\n\nMoreover, you may\ + \ apply this exception to a modified version of the Library,\nprovided that such modification\ + \ does not involve copying material from the\nLibrary into the modified Library's header\ + \ files unless such material is\nlimited to (i) numerical parameters; (ii) data structure\ + \ layouts;\n(iii) accessors; and (iv) small macros, templates and inline functions of\n\ + five lines or less in length.\n\nFurthermore, you are not required to apply this additional\ + \ permission to a\nmodified version of the Library." json: lgpl-2.1-digia-qt.json - yml: lgpl-2.1-digia-qt.yml + yaml: lgpl-2.1-digia-qt.yml html: lgpl-2.1-digia-qt.html - text: lgpl-2.1-digia-qt.LICENSE + license: lgpl-2.1-digia-qt.LICENSE - license_key: lgpl-2.1-nokia-qt + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "This library is free software; you can redistribute it and/or modify it under\nthe\ + \ terms of the GNU Lesser General Public License as published by the Free\nSoftware Foundation;\ + \ either version 2.1 of the License, or (at your option) any\nlater version.\n\nThis library\ + \ is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without\ + \ even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See\ + \ the GNU Lesser General Public License for more details.\n\nYou should have received a\ + \ copy of the GNU Lesser General Public License along\nwith this library; if not, write\ + \ to the Free Software Foundation, Inc., 51\nFranklin Street, Fifth Floor, Boston, MA 02110-1301\ + \ USA\n\nNokia Qt LGPL Exception version 1.1\n\nAs an additional permission to the GNU\ + \ Lesser General Public License version\n2.1, the object code form of a \"work that uses\ + \ the Library\" may incorporate\nmaterial from a header file that is part of the Library.\ + \ You may distribute\nsuch object code under terms of your choice, provided that:\n \ + \ (i) the header files of the Library have not been modified; and \n (ii) the incorporated\ + \ material is limited to numerical parameters, data\n structure layouts, accessors,\ + \ macros, inline functions and\n templates; and\n (iii) you comply with the\ + \ terms of Section 6 of the GNU Lesser General\n Public License version 2.1.\n\n\ + Moreover, you may apply this exception to a modified version of the Library,\nprovided that\ + \ such modification does not involve copying material from the\nLibrary into the modified\ + \ Library's header files unless such material is\nlimited to (i) numerical parameters; (ii)\ + \ data structure layouts;\n(iii) accessors; and (iv) small macros, templates and inline\ + \ functions of\nfive lines or less in length.\n\nFurthermore, you are not required to apply\ + \ this additional permission to a\nmodified version of the Library." json: lgpl-2.1-nokia-qt.json - yml: lgpl-2.1-nokia-qt.yml + yaml: lgpl-2.1-nokia-qt.yml html: lgpl-2.1-nokia-qt.html - text: lgpl-2.1-nokia-qt.LICENSE + license: lgpl-2.1-nokia-qt.LICENSE - license_key: lgpl-2.1-nokia-qt-1.0 + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + As a special exception to the GNU Lesser General Public License version 2.1, the + object code form of a "work that uses the Library" may incorporate material from + a header file that is part of the Library. You may distribute such object code + under terms of your choice, provided that the incorporated material (i) does not + exceed more than 5% of the total size of the Library; and (ii) is limited to + numerical parameters, data structure layouts, accessors, macros, inline + functions and templates. json: lgpl-2.1-nokia-qt-1.0.json - yml: lgpl-2.1-nokia-qt-1.0.yml + yaml: lgpl-2.1-nokia-qt-1.0.yml html: lgpl-2.1-nokia-qt-1.0.html - text: lgpl-2.1-nokia-qt-1.0.LICENSE + license: lgpl-2.1-nokia-qt-1.0.LICENSE - license_key: lgpl-2.1-nokia-qt-1.1 + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "Nokia Qt LGPL Exception version 1.1\n\nAs an additional permission to the GNU Lesser\ + \ General Public License version\n2.1, the object code form of a \"work that uses the Library\"\ + \ may incorporate\nmaterial from a header file that is part of the Library. You may distribute\n\ + such object code under terms of your choice, provided that:\n (i) the header files\ + \ of the Library have not been modified; and \n (ii) the incorporated material is limited\ + \ to numerical parameters, data\n structure layouts, accessors, macros, inline\ + \ functions and\n templates; and\n (iii) you comply with the terms of Section\ + \ 6 of the GNU Lesser General\n Public License version 2.1.\n\nMoreover, you may\ + \ apply this exception to a modified version of the Library,\nprovided that such modification\ + \ does not involve copying material from the\nLibrary into the modified Library's header\ + \ files unless such material is\nlimited to (i) numerical parameters; (ii) data structure\ + \ layouts;\n(iii) accessors; and (iv) small macros, templates and inline functions of\n\ + five lines or less in length.\n\nFurthermore, you are not required to apply this additional\ + \ permission to a\nmodified version of the Library." json: lgpl-2.1-nokia-qt-1.1.json - yml: lgpl-2.1-nokia-qt-1.1.yml + yaml: lgpl-2.1-nokia-qt-1.1.yml html: lgpl-2.1-nokia-qt-1.1.html - text: lgpl-2.1-nokia-qt-1.1.LICENSE + license: lgpl-2.1-nokia-qt-1.1.LICENSE - license_key: lgpl-2.1-plus + category: Copyleft Limited spdx_license_key: LGPL-2.1-or-later other_spdx_license_keys: - LGPL-2.1+ is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + 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 + + + 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. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 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. + + , 1 April 1990 + Ty Coon, President of Vice + + That's all there is to it! json: lgpl-2.1-plus.json - yml: lgpl-2.1-plus.yml + yaml: lgpl-2.1-plus.yml html: lgpl-2.1-plus.html - text: lgpl-2.1-plus.LICENSE + license: lgpl-2.1-plus.LICENSE - license_key: lgpl-2.1-plus-linking + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + As a special exception, if you link the code in this file with files compiled + with a GNU compiler to produce an executable, that does not cause the resulting + executable to be covered by the GNU Lesser General Public License. This + exception does not however invalidate any other reasons why the executable file + might be covered by the GNU Lesser General Public License. This exception + applies to code released by its copyright holders in files containing the + exception. json: lgpl-2.1-plus-linking.json - yml: lgpl-2.1-plus-linking.yml + yaml: lgpl-2.1-plus-linking.yml html: lgpl-2.1-plus-linking.html - text: lgpl-2.1-plus-linking.LICENSE + license: lgpl-2.1-plus-linking.LICENSE - license_key: lgpl-2.1-plus-unlimited-linking + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + The GNU C 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. + + In addition to the permissions in the GNU Lesser General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version of this file with other programs, and to distribute those programs without any restriction coming from the use of this file. (The GNU Lesser General Public License restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked into another program.) + + Note that people who make modified versions of this file are not obligated to grant this special exception for their modified versions; it is their choice whether to do so. The GNU Lesser General Public License gives permission to release a modified version without this exception; this exception also makes it possible to release a modified version which carries forward this exception. + + The GNU C 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 the GNU C Library; if not, see . json: lgpl-2.1-plus-unlimited-linking.json - yml: lgpl-2.1-plus-unlimited-linking.yml + yaml: lgpl-2.1-plus-unlimited-linking.yml html: lgpl-2.1-plus-unlimited-linking.html - text: lgpl-2.1-plus-unlimited-linking.LICENSE + license: lgpl-2.1-plus-unlimited-linking.LICENSE - license_key: lgpl-2.1-qt-company + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + 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 + + The Qt Company Qt LGPL Exception version 1.1 + + As a special exception to the GNU Lesser General Public License version 2.1, + the object code form of a "work that uses the Library" may incorporate material + from a header file that is part of the Library. You may distribute such object + code under terms of your choice, provided that the incorporated material + (i) does not exceed more than 5% of the total size of the Library; + and (ii) is limited to numerical parameters, data structure layouts, accessors, + macros, inline functions and templates. json: lgpl-2.1-qt-company.json - yml: lgpl-2.1-qt-company.yml + yaml: lgpl-2.1-qt-company.yml html: lgpl-2.1-qt-company.html - text: lgpl-2.1-qt-company.LICENSE + license: lgpl-2.1-qt-company.LICENSE - license_key: lgpl-2.1-qt-company-2017 + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "As an additional permission to the GNU Lesser General Public License version\n2.1,\ + \ the object code form of a \"work that uses the Library\" may incorporate\nmaterial from\ + \ a header file that is part of the Library. You may distribute\nsuch object code under\ + \ terms of your choice, provided that:\n (i) the header files of the Library have not\ + \ been modified; and \n (ii) the incorporated material is limited to numerical parameters,\ + \ data\n structure layouts, accessors, macros, inline functions and\n \ + \ templates; and\n (iii) you comply with the terms of Section 6 of the GNU Lesser General\n\ + \ Public License version 2.1.\n\nMoreover, you may apply this exception to a modified\ + \ version of the Library,\nprovided that such modification does not involve copying material\ + \ from the\nLibrary into the modified Library's header files unless such material is\nlimited\ + \ to (i) numerical parameters; (ii) data structure layouts;\n(iii) accessors; and (iv) small\ + \ macros, templates and inline functions of\nfive lines or less in length.\n\nFurthermore,\ + \ you are not required to apply this additional permission to a\nmodified version of the\ + \ Library." json: lgpl-2.1-qt-company-2017.json - yml: lgpl-2.1-qt-company-2017.yml + yaml: lgpl-2.1-qt-company-2017.yml html: lgpl-2.1-qt-company-2017.html - text: lgpl-2.1-qt-company-2017.LICENSE + license: lgpl-2.1-qt-company-2017.LICENSE - license_key: lgpl-2.1-rxtx + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + RXTX License v 2.1 - LGPL v 2.1 + Linking Over Controlled Interface. + RXTX is a native interface to serial ports in java. + Copyright 1997-2007 by Trent Jarvi tjarvi@qbang.org and others who + actually wrote it. See individual source files for more information. + + 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. + + An executable that contains no derivative of any portion of RXTX, but + is designed to work with RXTX by being dynamically linked with it, + is considered a "work that uses the Library" subject to the terms and + conditions of the GNU Lesser General Public License. + + The following has been added to the RXTX License to remove + any confusion about linking to RXTX. We want to allow in part what + section 5, paragraph 2 of the LGPL does not permit in the special + case of linking over a controlled interface. The intent is to add a + Java Specification Request or standards body defined interface in the + future as another exception but one is not currently available. + + http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface + + As a special exception, the copyright holders of RXTX give you + permission to link RXTX with independent modules that communicate with + RXTX solely through the Sun Microsytems CommAPI interface version 2, + regardless of the license terms of these independent modules, and to copy + and distribute the resulting combined work under terms of your choice, + provided that every copy of the combined work is accompanied by a complete + copy of the source code of RXTX (the version of RXTX used to produce the + combined work), being distributed under the terms of the GNU Lesser General + Public License plus this exception. An independent module is a + module which is not derived from or based on RXTX. + + Note that people who make modified versions of RXTX are not obligated + to grant this special exception for their modified versions; it is + their choice whether to do so. The GNU Lesser General Public License + gives permission to release a modified version without this exception; this + exception also makes it possible to release a modified version which + carries forward this exception. json: lgpl-2.1-rxtx.json - yml: lgpl-2.1-rxtx.yml + yaml: lgpl-2.1-rxtx.yml html: lgpl-2.1-rxtx.html - text: lgpl-2.1-rxtx.LICENSE + license: lgpl-2.1-rxtx.LICENSE - license_key: lgpl-2.1-spell-checker + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + In addition, as a special exception, Dom Lachowicz + gives permission to link the code of this program with + non-LGPL Spelling Provider libraries (eg: a MSFT Office + spell checker backend) 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 said providers. If you modify + this file, you may extend this exception to your version of the + file, but you are not obligated to do so. If you do not wish to + do so, delete this exception statement from your version. json: lgpl-2.1-spell-checker.json - yml: lgpl-2.1-spell-checker.yml + yaml: lgpl-2.1-spell-checker.yml html: lgpl-2.1-spell-checker.html - text: lgpl-2.1-spell-checker.LICENSE + license: lgpl-2.1-spell-checker.LICENSE - license_key: lgpl-3-plus-linking + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + 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 3 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 + + As a special exception to the GNU Lesser General Public License version 3 + ("LGPL3"), the copyright holders of this Library give you permission to convey + to a third party a Combined Work that links statically or dynamically to this + Library without providing any Minimal Corresponding Source or Minimal + Application Code as set out in 4d or providing the installation information set + out in section 4e, provided that you comply with the other provisions of LGPL3 + and provided that you meet, for the Application the terms and conditions of the + license(s) which apply to the Application. + + Except as stated in this special exception, the provisions of LGPL3 will + continue to comply in full to this Library. If you modify this Library, you may + apply this exception to your version of this Library, but you are not obliged to + do so. If you do not wish to do so, delete this exception statement from your + version. This exception does not (and cannot) modify any license terms which + apply to the Application, with which you must still comply. json: lgpl-3-plus-linking.json - yml: lgpl-3-plus-linking.yml + yaml: lgpl-3-plus-linking.yml html: lgpl-3-plus-linking.html - text: lgpl-3-plus-linking.LICENSE + license: lgpl-3-plus-linking.LICENSE - license_key: lgpl-3.0 + category: Copyleft Limited spdx_license_key: LGPL-3.0-only other_spdx_license_keys: - LGPL-3.0 is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates + the terms and conditions of version 3 of the GNU General Public + License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser + General Public License, and the "GNU GPL" refers to version 3 of the GNU + General Public License. + + "The Library" refers to a covered work governed by this License, + other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided + by the Library, but which is not otherwise based on the Library. + Defining a subclass of a class defined by the Library is deemed a mode + of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an + Application with the Library. The particular version of the Library + with which the Combined Work was made is also called the "Linked + Version". + + The "Minimal Corresponding Source" for a Combined Work means the + Corresponding Source for the Combined Work, excluding any source code + for portions of the Combined Work that, considered in isolation, are + based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the + object code and/or source code for the Application, including any data + and utility programs needed for reproducing the Combined Work from the + Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License + without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a + facility refers to a function or data to be supplied by an Application + that uses the facility (other than as an argument passed when the + facility is invoked), then you may convey a copy of the modified + version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from + a header file that is part of the Library. You may convey such object + code under terms of your choice, provided that, if the incorporated + material is not limited to numerical parameters, data structure + layouts and accessors, or small macros, inline functions and templates + (ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, + taken together, effectively do not restrict modification of the + portions of the Library contained in the Combined Work and reverse + engineering for debugging such modifications, if you also do each of + the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the + Library side by side in a single library together with other library + facilities that are not Applications and are not covered by this + License, and convey such a combined library under terms of your + choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions + of the GNU Lesser General Public License from time to time. Such new + versions will be similar in spirit to the present version, but may + differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the + Library as you received it specifies that a certain numbered version + of the GNU Lesser General Public License "or any later version" + applies to it, you have the option of following the terms and + conditions either of that published version or of any later version + published by the Free Software Foundation. If the Library as you + received it does not specify a version number of the GNU Lesser + General Public License, you may choose any version of the GNU Lesser + General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide + whether future versions of the GNU Lesser General Public License shall + apply, that proxy's public statement of acceptance of any version is + permanent authorization for you to choose that version for the + Library. json: lgpl-3.0.json - yml: lgpl-3.0.yml + yaml: lgpl-3.0.yml html: lgpl-3.0.html - text: lgpl-3.0.LICENSE + license: lgpl-3.0.LICENSE - license_key: lgpl-3.0-cygwin + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + The Cygwin API library found in the winsup subdirectory of the source code is covered by the GNU Lesser General Public License (LGPL) version 3 or later. For details of the requirements of LGPLv3, please read the GNU Lesser General Public License (LGPL). + + Cygwin™ Linking Exception + + As a special exception, the copyright holders of the Cygwin library grant you additional permission to link libcygwin.a, crt0.o, and gcrt0.o with independent modules to produce an executable, and to convey the resulting executable under terms of your choice, without any need to comply with the conditions of LGPLv3 section 4. An independent module is a module which is not itself based on the Cygwin library. json: lgpl-3.0-cygwin.json - yml: lgpl-3.0-cygwin.yml + yaml: lgpl-3.0-cygwin.yml html: lgpl-3.0-cygwin.html - text: lgpl-3.0-cygwin.LICENSE + license: lgpl-3.0-cygwin.LICENSE - license_key: lgpl-3.0-linking-exception + category: Copyleft Limited spdx_license_key: LGPL-3.0-linking-exception other_spdx_license_keys: - LicenseRef-scancode-lgpl-3-plus-linking - LicenseRef-scancode-linking-exception-lgpl-3.0 is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception to the GNU Lesser General Public License version 3 + ("LGPL3"), the copyright holders of this Library give you permission to convey + to a third party a Combined Work that links statically or dynamically to this + Library without providing any Minimal Corresponding Source or Minimal + Application Code as set out in 4d or providing the installation information set + out in section 4e, provided that you comply with the other provisions of LGPL3 + and provided that you meet, for the Application the terms and conditions of the + license(s) which apply to the Application. + + Except as stated in this special exception, the provisions of LGPL3 will + continue to comply in full to this Library. If you modify this Library, you may + apply this exception to your version of this Library, but you are not obliged to + do so. If you do not wish to do so, delete this exception statement from your + version. This exception does not (and cannot) modify any license terms which + apply to the Application, with which you must still comply. json: lgpl-3.0-linking-exception.json - yml: lgpl-3.0-linking-exception.yml + yaml: lgpl-3.0-linking-exception.yml html: lgpl-3.0-linking-exception.html - text: lgpl-3.0-linking-exception.LICENSE + license: lgpl-3.0-linking-exception.LICENSE - license_key: lgpl-3.0-plus + category: Copyleft Limited spdx_license_key: LGPL-3.0-or-later other_spdx_license_keys: - LGPL-3.0+ is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + 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 3.0 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 + + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates + the terms and conditions of version 3 of the GNU General Public + License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser + General Public License, and the "GNU GPL" refers to version 3 of the GNU + General Public License. + + "The Library" refers to a covered work governed by this License, + other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided + by the Library, but which is not otherwise based on the Library. + Defining a subclass of a class defined by the Library is deemed a mode + of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an + Application with the Library. The particular version of the Library + with which the Combined Work was made is also called the "Linked + Version". + + The "Minimal Corresponding Source" for a Combined Work means the + Corresponding Source for the Combined Work, excluding any source code + for portions of the Combined Work that, considered in isolation, are + based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the + object code and/or source code for the Application, including any data + and utility programs needed for reproducing the Combined Work from the + Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License + without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a + facility refers to a function or data to be supplied by an Application + that uses the facility (other than as an argument passed when the + facility is invoked), then you may convey a copy of the modified + version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from + a header file that is part of the Library. You may convey such object + code under terms of your choice, provided that, if the incorporated + material is not limited to numerical parameters, data structure + layouts and accessors, or small macros, inline functions and templates + (ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, + taken together, effectively do not restrict modification of the + portions of the Library contained in the Combined Work and reverse + engineering for debugging such modifications, if you also do each of + the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the + Library side by side in a single library together with other library + facilities that are not Applications and are not covered by this + License, and convey such a combined library under terms of your + choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions + of the GNU Lesser General Public License from time to time. Such new + versions will be similar in spirit to the present version, but may + differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the + Library as you received it specifies that a certain numbered version + of the GNU Lesser General Public License "or any later version" + applies to it, you have the option of following the terms and + conditions either of that published version or of any later version + published by the Free Software Foundation. If the Library as you + received it does not specify a version number of the GNU Lesser + General Public License, you may choose any version of the GNU Lesser + General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide + whether future versions of the GNU Lesser General Public License shall + apply, that proxy's public statement of acceptance of any version is + permanent authorization for you to choose that version for the + Library. json: lgpl-3.0-plus.json - yml: lgpl-3.0-plus.yml + yaml: lgpl-3.0-plus.yml html: lgpl-3.0-plus.html - text: lgpl-3.0-plus.LICENSE + license: lgpl-3.0-plus.LICENSE - license_key: lgpl-3.0-plus-openssl + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + 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 http://www.gnu.org/licenses/. + + 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. + + 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: + + 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. + + Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + This notice may not be removed or altered from any source distribution. json: lgpl-3.0-plus-openssl.json - yml: lgpl-3.0-plus-openssl.yml + yaml: lgpl-3.0-plus-openssl.yml html: lgpl-3.0-plus-openssl.html - text: lgpl-3.0-plus-openssl.LICENSE + license: lgpl-3.0-plus-openssl.LICENSE - license_key: lgpl-3.0-zeromq + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + SPECIAL EXCEPTION GRANTED BY COPYRIGHT HOLDERS + + As a special exception, copyright holders give you permission to link this + library with independent modules to produce an executable, regardless of + the license terms of these independent modules, and to copy and distribute + the resulting executable under terms of your choice, provided that you also + meet, for each linked independent module, the terms and conditions of + the license of that module. An independent module is a module which is not + derived from or based on this library. If you modify this library, you must + extend this exception to your version of the library. json: lgpl-3.0-zeromq.json - yml: lgpl-3.0-zeromq.yml + yaml: lgpl-3.0-zeromq.yml html: lgpl-3.0-zeromq.html - text: lgpl-3.0-zeromq.LICENSE + license: lgpl-3.0-zeromq.LICENSE - license_key: lgpllr + category: Copyleft Limited spdx_license_key: LGPLLR other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Lesser General Public License For Linguistic Resources\n\nPreamble\n\nThe licenses\ + \ for most data are designed to take away your freedom to \nshare and change it. By contrast,\ + \ this License is intended to guarantee \nyour freedom to share and change free data--to\ + \ make sure the data are \nfree for all their users.\n\nThis License, the Lesser General\ + \ Public License for Linguistic Resources, \napplies to some specially designated linguistic\ + \ resources -- typically \nlexicons and grammars.\n\n\nTERMS AND CONDITIONS FOR COPYING,\ + \ DISTRIBUTION AND MODIFICATION\n\n0. This License Agreement applies to any Linguistic Resource\ + \ which contains \na notice placed by the copyright holder or other authorized party saying\ + \ it \nmay be distributed under the terms of this Lesser General Public License for \nLinguistic\ + \ Resources (also called \"this License\"). Each licensee is \naddressed as \"you\".\n\n\ + A \"linguistic resource\" means a collection of data about language prepared \nso as to\ + \ be used with application programs.\n\nThe \"Linguistic Resource\", below, refers to any\ + \ such work which has been \ndistributed under these terms. A \"work based on the Linguistic\ + \ Resource\" means \neither the Linguistic Resource or any derivative work under copyright\ + \ law: that \nis to say, a work containing the Linguistic Resource or a portion of it, either\ + \ \nverbatim or with modifications and/or translated straightforwardly into another \nlanguage.\ + \ (Hereinafter, translation is included without limitation in the term \n\"modification\"\ + .)\n\n\"Legible form\" for a linguistic resource means the preferred form of the resource\ + \ \nfor making modifications to it.\n\nActivities other than copying, distribution and modification\ + \ are not covered by \nthis License; they are outside its scope. The act of running a program\ + \ using the \nLinguistic Resource is not restricted, and output from such a program is covered\ + \ \nonly if its contents constitute a work based on the Linguistic Resource \n(independent\ + \ of the use of the Linguistic Resource in a tool for writing it). \nWhether that is true\ + \ depends on what the program that uses the Linguistic \nResource does.\n\n1. You may copy\ + \ and distribute verbatim copies of the Linguistic Resource as you \nreceive it, in any\ + \ medium, provided that you conspicuously and appropriately \npublish on each copy an appropriate\ + \ copyright notice and disclaimer of warranty; \nkeep intact all the notices that refer\ + \ to this License and to the absence of any \nwarranty; and distribute a copy of this License\ + \ along with the Linguistic Resource.\n\nYou may charge a fee for the physical act of transferring\ + \ a copy, and you may at \nyour option offer warranty protection in exchange for a fee.\n\ + \n2. You may modify your copy or copies of the Linguistic Resource or any portion \nof it,\ + \ thus forming a work based on the Linguistic Resource, and copy and distribute \nsuch modifications\ + \ or work under the terms of Section 1 above, provided that you \nalso meet all of these\ + \ conditions:\n\n a) The modified work must itself be a linguistic resource.\n \ + \ b) You must cause the files modified to carry prominent notices stating that \n \ + \ you changed the files and the date of any change.\n c) You must cause the whole of\ + \ the work to be licensed at no charge to all \n third parties under the terms of this\ + \ License.\n\nThese requirements apply to the modified work as a whole. If identifiable\ + \ sections \nof that work are not derived from the Linguistic Resource, and can be reasonably\ + \ \nconsidered independent and separate works in themselves, then this License, and \nits\ + \ terms, do not apply to those sections when you distribute them as separate \nworks. But\ + \ when you distribute the same sections as part of a whole which is a work \nbased on the\ + \ Linguistic Resource, the distribution of the whole must be on the terms \nof this License,\ + \ whose permissions for other licensees extend to the entire whole, \nand thus to each and\ + \ every part regardless of who wrote it.\n\nThus, it is not the intent of this section to\ + \ claim rights or contest your rights to \nwork written entirely by you; rather, the intent\ + \ is to exercise the right to control \nthe distribution of derivative or collective works\ + \ based on the Linguistic Resource.\n\nIn addition, mere aggregation of another work not\ + \ based on the Linguistic Resource \nwith the Linguistic Resource (or with a work based\ + \ on the Linguistic Resource) on a \nvolume of a storage or distribution medium does not\ + \ bring the other work under the \nscope of this License.\n\n3. A program that contains\ + \ no derivative of any portion of the Linguistic Resource, \nbut is designed to work with\ + \ the Linguistic Resource (or an encrypted form of the \nLinguistic Resource) by reading\ + \ it or being compiled or linked with it, is called \na \"work that uses the Linguistic\ + \ Resource\". Such a work, in isolation, is not a \nderivative work of the Linguistic Resource,\ + \ and therefore falls outside the scope \nof this License.\n\nHowever, combining a \"work\ + \ that uses the Linguistic Resource\" with the Linguistic \nResource (or an encrypted form\ + \ of the Linguistic Resource) creates a package that \nis a derivative of the Linguistic\ + \ Resource (because it contains portions of the \nLinguistic Resource), rather than a \"\ + work that uses the Linguistic Resource\". If \nthe package is a derivative of the Linguistic\ + \ Resource, you may distribute the \npackage under the terms of Section 4. Any works containing\ + \ that package also \nfall under Section 4.\n\n4. As an exception to the Sections above,\ + \ you may also combine a \"work that uses \nthe Linguistic Resource\" with the Linguistic\ + \ Resource (or an encrypted form of the \nLinguistic Resource) to produce a package containing\ + \ portions of the Linguistic \nResource, and distribute that package under terms of your\ + \ choice, provided that \nthe terms permit modification of the package for the customer's\ + \ own use and reverse \nengineering for debugging such modifications.\n\nYou must give prominent\ + \ notice with each copy of the package that the Linguistic \nResource is used in it and\ + \ that the Linguistic Resource and its use are covered by \nthis License. You must supply\ + \ a copy of this License. If the package during execution \ndisplays copyright notices,\ + \ you must include the copyright notice for the Linguistic \nResource among them, as well\ + \ as a reference directing the user to the copy of this \nLicense. Also, you must do one\ + \ of these things:\n\n a) Accompany the package with the complete corresponding machine-readable\ + \ \n legible form of the Linguistic Resource including whatever changes were used \n\ + \ in the package (which must be distributed under Sections 1 and 2 above); and, \n\ + \ if the package contains an encrypted form of the Linguistic Resource, with the \n\ + \ complete machine-readable \"work that uses the Linguistic Resource\", as object \n\ + \ code and/or source code, so that the user can modify the Linguistic Resource \n \ + \ and then encrypt it to produce a modified package containing the modified \n \ + \ Linguistic Resource.\n b) Use a suitable mechanism for combining with the Linguistic\ + \ Resource. A \n suitable mechanism is one that will operate properly with a modified\ + \ version \n of the Linguistic Resource, if the user installs one, as long as the modified\ + \ \n version is interface-compatible with the version that the package was made with.\n\ + \ c) Accompany the package with a written offer, valid for at least three years, \n\ + \ to give the same user the materials specified in Subsection 4a, above, for a \n \ + \ charge no more than the cost of performing this distribution.\n d) If distribution\ + \ of the package is made by offering access to copy from a \n designated place, offer\ + \ equivalent access to copy the above specified materials \n from the same place.\n\ + \ e) Verify that the user has already received a copy of these materials or \n \ + \ that you have already sent this user a copy.\n\nIf the package includes an encrypted\ + \ form of the Linguistic Resource, the required form \nof the \"work that uses the Linguistic\ + \ Resource\" must include any data and utility \nprograms needed for reproducing the package\ + \ from it. However, as a special exception, \nthe materials to be distributed need not include\ + \ anything that is normally distributed \n(in either source or binary form) with the major\ + \ components (compiler, kernel, and so on) \nof the operating system on which the executable\ + \ runs, unless that component itself \naccompanies the executable.\n\nIt may happen that\ + \ this requirement contradicts the license restrictions of proprietary \nlibraries that\ + \ do not normally accompany the operating system. Such a contradiction means \nyou cannot\ + \ use both them and the Linguistic Resource together in a package that you distribute.\n\ + \n5. You may not copy, modify, sublicense, link with, or distribute the Linguistic Resource\ + \ \nexcept as expressly provided under this License. Any attempt otherwise to copy, modify,\ + \ \nsublicense, link with, or distribute the Linguistic Resource is void, and will automatically\ + \ \nterminate your rights under this License. However, parties who have received copies,\ + \ or rights, \nfrom you under this License will not have their licenses terminated so long\ + \ as such parties \nremain in full compliance.\n\n6. You are not required to accept this\ + \ License, since you have not signed it. However, nothing \nelse grants you permission to\ + \ modify or distribute the Linguistic Resource or its derivative \nworks. These actions\ + \ are prohibited by law if you do not accept this License. Therefore, by \nmodifying or\ + \ distributing the Linguistic Resource (or any work based on the Linguistic Resource), \n\ + you indicate your acceptance of this License to do so, and all its terms and conditions\ + \ for \ncopying, distributing or modifying the Linguistic Resource or works based on it.\n\ + \n7. Each time you redistribute the Linguistic Resource (or any work based on the Linguistic\ + \ \nResource), the recipient automatically receives a license from the original licensor\ + \ to copy, \ndistribute, link with or modify the Linguistic Resource subject to these terms\ + \ and conditions. \nYou may not impose any further restrictions on the recipients' exercise\ + \ of the rights granted \nherein. You are not responsible for enforcing compliance by third\ + \ parties with this License.\n\n8. If, as a consequence of a court judgment or allegation\ + \ of patent infringement or for any \nother reason (not limited to patent issues), conditions\ + \ are imposed on you (whether by court \norder, agreement or otherwise) that contradict\ + \ the conditions of this License, they do not \nexcuse you from the conditions of this License.\ + \ If you cannot distribute so as to satisfy \nsimultaneously your obligations under this\ + \ License and any other pertinent obligations, then \nas a consequence you may not distribute\ + \ the Linguistic Resource at all. For example, if a \npatent license would not permit royalty-free\ + \ redistribution of the Linguistic Resource by \nall those who receive copies directly or\ + \ indirectly through you, then the only way you could \nsatisfy both it and this License\ + \ would be to refrain entirely from distribution of the \nLinguistic Resource.\n\nIf any\ + \ portion of this section is held invalid or unenforceable under any particular \ncircumstance,\ + \ the balance of the section is intended to apply, and the section as a whole is \nintended\ + \ to apply in other circumstances.\n\nIt is not the purpose of this section to induce you\ + \ to infringe any patents or other property \nright claims or to contest validity of any\ + \ such claims; this section has the sole purpose of \nprotecting the integrity of the free\ + \ resource distribution system which is implemented by public \nlicense practices. Many\ + \ people have made generous contributions to the wide range of data \ndistributed through\ + \ that system in reliance on consistent application of that system; it is up \nto the author/donor\ + \ to decide if he or she is willing to distribute resources through any other \nsystem and\ + \ a licensee cannot impose that choice.\n\nThis section is intended to make thoroughly clear\ + \ what is believed to be a consequence of \nthe rest of this License.\n\n9. If the distribution\ + \ and/or use of the Linguistic Resource is restricted in certain countries \neither by patents\ + \ or by copyrighted interfaces, the original copyright holder who places the \nLinguistic\ + \ Resource under this License may add an explicit geographical distribution limitation \n\ + excluding those countries, so that distribution is permitted only in or among countries\ + \ not \nthus excluded. In such case, this License incorporates the limitation as if written\ + \ in the \nbody of this License.\n\n10. The Free Software Foundation may publish revised\ + \ and/or new versions of the Lesser General \nPublic License for Linguistic Resources from\ + \ time to time. Such new versions will be similar \nin spirit to the present version, but\ + \ may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing\ + \ version number. If the Linguistic Resource specifies a \nversion number of this License\ + \ which applies to it and \"any later version\", you have the \noption of following the\ + \ terms and conditions either of that version or of any later version \npublished by the\ + \ Free Software Foundation. If the Linguistic Resource does not specify a license \nversion\ + \ number, you may choose any version ever published by the Free Software Foundation.\n\n\ + 11. If you wish to incorporate parts of the Linguistic Resource into other free programs\ + \ whose \ndistribution conditions are incompatible with these, write to the author to ask\ + \ for permission.\n\n\nNO WARRANTY\n\n12. BECAUSE THE LINGUISTIC RESOURCE IS LICENSED FREE\ + \ OF CHARGE, THERE IS NO WARRANTY FOR THE \nLINGUISTIC RESOURCE, TO THE EXTENT PERMITTED\ + \ BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN \nWRITING THE COPYRIGHT HOLDERS AND/OR\ + \ OTHER PARTIES PROVIDE THE LINGUISTIC RESOURCE \"AS IS\" \nWITHOUT WARRANTY OF ANY KIND,\ + \ EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF\ + \ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK \nAS TO THE QUALITY\ + \ AND PERFORMANCE OF THE LINGUISTIC RESOURCE IS WITH YOU. SHOULD THE LINGUISTIC \nRESOURCE\ + \ PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\ + \n13. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT\ + \ \nHOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LINGUISTIC RESOURCE\ + \ AS \nPERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL\ + \ OR \nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LINGUISTIC RESOURCE\ + \ \n(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES\ + \ SUSTAINED \nBY YOU OR THIRD PARTIES OR A FAILURE OF THE LINGUISTIC RESOURCE TO OPERATE\ + \ WITH ANY OTHER \nSOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\ + \ POSSIBILITY OF SUCH DAMAGES.\n\nEND OF TERMS AND CONDITIONS" json: lgpllr.json - yml: lgpllr.yml + yaml: lgpllr.yml html: lgpllr.html - text: lgpllr.LICENSE + license: lgpllr.LICENSE - license_key: lha + category: Free Restricted spdx_license_key: LicenseRef-scancode-lha other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + LHA LICENSE + + Permission is given for redistribution, copy, and modification provided + following conditions are met. + 1. Do not remove copyright clause. + 2. Distribution shall conform: + a. The content of redistribution (i.e., source code, documentation, + and reference guide for programmers) shall include original contents. + If contents are modified, the document clearly indicating + the fact of modification must be included. + b. If LHa is redistributed with added values, you must put your best + effort to include them (Translator comment: If read literally, + original Japanese was unclear what "them" means here. But + undoubtedly this "them" means source code for the added value + portion and this is a typical Japanese sloppy writing style to + abbreviate as such) Also the document clearly indicating that + added value was added must be included. + c. Binary only distribution is not allowed (including added value + ones.) + 3. You need to put effort to distribute the latest version (This is not + your duty). + NB: Distribution on Internet is free. Please notify me by e-mail or + other means prior to the distribution if distribution is done through + non-Internet media (Magazine, CDROM etc.) If not, make sure to Email + me later. + 4. Any damage caused by the existence and use of this program will not + be compensated. + 5. Author will not be responsible to correct errors even if program is + defective. + 6. This program, either as a part of this or as a whole of this, may be + included into other programs. In this case, that program is not LHa + and can not call itself LHa. + 7. For commercial use, in addition to above conditions, following + condition needs to be met. + a. The program whose content is mainly this program can not be used + commercially. + b. If the recipient of commercial use deems inappropriate as a + program user, you must not distribute. + c. If used as a method for the installation, you must not force + others to use this program. In this case, commercial user will + perform its work while taking full responsibility of its outcome. + d. If added value is done under the commercial use by using this + program, commercial user shall provide its support. + (Osamu Aoki also comments: + Here "commercial" may be interpreted as "for-fee". "Added value" seems + to mean "feature enhancement". ) + Translated License Statement by Tsugio Okamoto (translated by + GOTO Masanori ): + It's free to distribute on the network, but if you distribute for + the people who cannot access the network (by magazine or CD-ROM), + please send E-Mail (Inter-Net address) to the author before the + distribution. That's well where this software is appeard. + If you cannot do, you must send me the E-Mail later.` json: lha.json - yml: lha.yml + yaml: lha.yml html: lha.html - text: lha.LICENSE + license: lha.LICENSE - license_key: libcap + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + Unless otherwise *explicitly* stated, the following text describes the + licensed conditions under which the contents of this libcap release + may be used and distributed: + + ------------------------------------------------------------------------- + Redistribution and use in source and binary forms of libcap, with + or without modification, are permitted provided that the following + conditions are met: + + 1. Redistributions of source code must retain any existing copyright + notice, and this entire permission notice in its entirety, + including the disclaimer of warranties. + + 2. Redistributions in binary form must reproduce all prior and current + copyright notices, this list of conditions, and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + 3. The name of any author may not be used to endorse or promote + products derived from this software without their specific prior + written permission. + + ALTERNATIVELY, this product may be distributed under the terms of the + GNU General Public License (v2.0 - see below), in which case the + provisions of the GNU GPL are required INSTEAD OF the above + restrictions. (This clause is necessary due to a potential conflict + between the GNU GPL and the restrictions contained in a BSD-style + copyright.) + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + IN NO EVENT SHALL THE AUTHOR(S) 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. + ------------------------------------------------------------------------- json: libcap.json - yml: libcap.yml + yaml: libcap.yml html: libcap.html - text: libcap.LICENSE + license: libcap.LICENSE - license_key: liberation-font-exception + category: Copyleft spdx_license_key: LicenseRef-scancode-liberation-font-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: " LICENSE AGREEMENT AND LIMITED PRODUCT WARRANTY\n LIBERATION FONT SOFTWARE\n \n This\ + \ agreement governs the use of the Software and any updates to the Software, regardless\ + \ of the delivery mechanism. Subject to the following terms, Red Hat, Inc. (\"Red Hat\"\ + ) grants to the user (\"Client\") a license to this work pursuant to the GNU General Public\ + \ License v.2 with the exceptions set forth below and such other terms as are set forth\ + \ in this End User License Agreement.\n \n 1. The Software and License Exception. LIBERATION\ + \ font software (the \"Software\") consists of TrueType-OpenType formatted font software\ + \ for rendering LIBERATION typefaces in sans-serif, serif, and monospaced character styles.\ + \ You are licensed to use, modify, copy, and distribute the Software pursuant to the GNU\ + \ General Public License v.2 with the following exceptions: \n \n (a) As a special exception,\ + \ if you create a document which uses this font, and embed this font or unaltered portions\ + \ of this font into the document, this font does not by itself cause the resulting document\ + \ to be covered by the GNU General Public License. This exception does not however invalidate\ + \ any other reasons why the document might be covered by the GNU General Public License.\ + \ If you modify this font, you may extend this exception to your version of the font, but\ + \ you are not obligated to do so. If you do not wish to do so, delete this exception statement\ + \ from your version.\n \n (b) As a further exception, any distribution of the object code\ + \ of the Software in a physical product must provide you the right to access and modify\ + \ the source code for the Software and to reinstall that modified version of the Software\ + \ in object code form on the same physical product on which you received it.\n \n 2. Intellectual\ + \ Property Rights. The Software and each of its components, including the source code, documentation,\ + \ appearance, structure and organization are owned by Red Hat and others and are protected\ + \ under copyright and other laws. Title to the Software and any component, or to any copy,\ + \ modification, or merged portion shall remain with the aforementioned, subject to the applicable\ + \ license. The \"LIBERATION\" trademark is a trademark of Red Hat, Inc. in the U.S. and\ + \ other countries. This agreement does not permit Client to distribute modified versions\ + \ of the Software using Red Hat's trademarks. If Client makes a redistribution of a modified\ + \ version of the Software, then Client must modify the files names to remove any reference\ + \ to the Red Hat trademarks and must not use the Red Hat trademarks in any way to reference\ + \ or promote the modified Software. \n \n 3. Limited Warranty. To the maximum extent permitted\ + \ under applicable law, the Software is provided and licensed \"as is\" without warranty\ + \ of any kind, expressed or implied, including the implied warranties of merchantability,\ + \ non-infringement or fitness for a particular purpose. Red Hat does not warrant that the\ + \ functions contained in the Software will meet Client's requirements or that the operation\ + \ of the Software will be entirely error free or appear precisely as described in the accompanying\ + \ documentation. \n \n 4. Limitation of Remedies and Liability. To the maximum extent permitted\ + \ by applicable law, Red Hat or any Red Hat authorized dealer will not be liable to Client\ + \ for any incidental or consequential damages, including lost profits or lost savings arising\ + \ out of the use or inability to use the Software, even if Red Hat or such dealer has been\ + \ advised of the possibility of such damages. \n \n 5. General. If any provision of this\ + \ agreement is held to be unenforceable, that shall not affect the enforceability of the\ + \ remaining provisions. This agreement shall be governed by the laws of the State of North\ + \ Carolina and of the United States, without regard to any conflict of laws provisions,\ + \ except that the United Nations Convention on the International Sale of Goods shall not\ + \ apply.\n Copyright © 2007 Red Hat, Inc. All rights reserved. LIBERATION is a trademark\ + \ of Red Hat, Inc." json: liberation-font-exception.json - yml: liberation-font-exception.yml + yaml: liberation-font-exception.yml html: liberation-font-exception.html - text: liberation-font-exception.LICENSE + license: liberation-font-exception.LICENSE - license_key: libgd-2018 + category: Permissive spdx_license_key: GD other_spdx_license_keys: - LicenseRef-scancode-libgd-2018 is_exception: no is_deprecated: no - category: Permissive + text: | + Credits and license terms: + + In order to resolve any possible confusion regarding the authorship of + gd, the following copyright statement covers all of the authors who + have required such a statement. If you are aware of any oversights in + this copyright notice, please contact Pierre-A. Joye who will be + pleased to correct them. + + * Portions copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, + 2002, 2003, 2004 by Cold Spring Harbor Laboratory. Funded under + Grant P41-RR02188 by the National Institutes of Health. + + * Portions copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, + 2004 by Boutell.Com, Inc. + + * Portions relating to GD2 format copyright 1999, 2000, 2001, 2002, + 2003, 2004 Philip Warner. + + * Portions relating to PNG copyright 1999, 2000, 2001, 2002, 2003, + 2004 Greg Roelofs. + + * Portions relating to gdttf.c copyright 1999, 2000, 2001, 2002, + 2003, 2004 John Ellson (ellson@graphviz.org). + + * Portions relating to gdft.c copyright 2001, 2002, 2003, 2004 John + Ellson (ellson@graphviz.org). + + * Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 + Pierre-Alain Joye (pierre@libgd.org). + + * Portions relating to JPEG and to color quantization copyright + 2000, 2001, 2002, 2003, 2004, Doug Becker and copyright (C) 1994, + 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Thomas + G. Lane. This software is based in part on the work of the + Independent JPEG Group. See the file README-JPEG.TXT for more + information. + + * Portions relating to GIF compression copyright 1989 by Jef + Poskanzer and David Rowley, with modifications for thread safety + by Thomas Boutell. + + * Portions relating to GIF decompression copyright 1990, 1991, 1993 + by David Koblas, with modifications for thread safety by Thomas + Boutell. + + * Portions relating to WBMP copyright 2000, 2001, 2002, 2003, 2004 + Maurice Szmurlo and Johan Van den Brande. + + * Portions relating to GIF animations copyright 2004 Jaakko Hyvätti + (jaakko.hyvatti@iki.fi) + + Permission has been granted to copy, distribute and modify gd in + any context without fee, including a commercial application, + provided that this notice is present in user-accessible supporting + documentation. + + This does not affect your ownership of the derived work itself, + and the intent is to assure proper credit for the authors of gd, + not to interfere with your productive use of gd. If you have + questions, ask. "Derived works" includes all programs that utilize + the library. Credit must be given in user-accessible + documentation. + + This software is provided "AS IS." The copyright holders disclaim + all warranties, either express or implied, including but not + limited to implied warranties of merchantability and fitness for a + particular purpose, with respect to this code and accompanying + documentation. + + Although their code does not appear in the current release, the + authors wish to thank David Koblas, David Rowley, and Hutchison + Avenue Software Corporation for their prior contributions. json: libgd-2018.json - yml: libgd-2018.yml + yaml: libgd-2018.yml html: libgd-2018.html - text: libgd-2018.LICENSE + license: libgd-2018.LICENSE - license_key: libgeotiff + category: Permissive spdx_license_key: LicenseRef-scancode-libgeotiff other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + libgeotiff Licensing + ==================== + + All the source code in this toolkit are either in the public domain, or under + an X style license. In any event it is all considered to be free to use + for any purpose (including commercial software). No credit is required + though some of the code requires that the specific source code modules + retain their existing copyright statements. The CSV files, and other tables + derived from the EPSG coordinate system database are also free to use. In + particular, no part of this code is "copyleft", nor does it imply any + requirement for users to disclose this or their own source code. + + All components not carrying their own copyright message, but distributed + with libgeotiff should be considered to be under the same license as + Niles' code. + + --------- + + Code by Frank Warmerdam has this copyright notice (directly copied from + X Consortium licence): + + * Copyright (c) 1999, Frank Warmerdam + * + * 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. + + ----------- + + Code by Niles Ritter is under this licence: + + * Written By: Niles D. Ritter. + * + * copyright (c) 1995 Niles D. Ritter + * + * Permission granted to use this software, so long as this copyright + * notice accompanies any products derived therefrom. + + ----------- + + The EPSG Tables (from which the CSV files, and .inc files are derived) + carried this statement on use of the data (from the EPSG web site): + + Use of the Data + + The user assumes the entire risk as to the accuracy and the use of this + data. The data may be used, copied and distributed subject to the following + conditions: + + 1. INFORMATION PROVIDED IN THIS DOCUMENT IS PROVIDED "AS IS" + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, + INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. + + 2. The data may be included in any commercial package provided that any + commerciality is based on value added by the provider and not on a value + ascribed to the EPSG dataset which is made available at no charge. The + ownership of the EPSG dataset [OGP] must be acknowledged. + + 3. Subsets of information may be extracted from the dataset. Users are + advised that coordinate reference system and coordinate transformation + descriptions are incomplete unless all elements detailed as essential + in OGP Surveying and Positioning Guidance Note 7-1 annex F are included. + + 4. Essential elements should preferably be reproduced as described in the + dataset. Modification of parameter values is permitted as described in + the table below to allow change to the content of the information provided + that numeric equivalence is achieved. Numeric equivalence refers to the + results of geodetic calculations in which the parameters are used, for + example (i) conversion of ellipsoid defining parameters, or (ii) conversion + of parameters between one and two standard parallel projection methods, + or (iii) conversion of parameters between 7-parameter geocentric + transformation methods. + + (EPSG provides a table at this point with some details) + + 5. No data that has been modified other than as permitted in these terms + and conditions shall be described as or attributed to the EPSG dataset. json: libgeotiff.json - yml: libgeotiff.yml + yaml: libgeotiff.yml html: libgeotiff.html - text: libgeotiff.LICENSE + license: libgeotiff.LICENSE - license_key: libmib + category: Permissive spdx_license_key: LicenseRef-scancode-libmib other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + - - - - - - - - - - - - Copyright Notice - - - - - - - - - - - - + + Copyright 1998 Forrest J. Cavalier III + + See http://www.mibsoftware.com/libmib/ for documentation, original copies, and information on supported, industrial quality (non-experimental) versions appropriate for commercial use. This version is considered experimental. + + This software is provided by Forrest J. Cavalier III, d-b-a Mib Software, under the license which follows, which is believed to meet the open-source definition, version 1.0 at http://www.opensource.org + + We would appreciate that you notify us of defect discoveries and enhancements so that others can benefit from work on open-source software. + + Forrest J. Cavalier III, Mib Software http://www.mibsoftware.com We customize and extend reusable and open software. + + - - - - - - - - - - - - - License - - - - - - - - - - - - - - - - - + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software (the "Software"), to deal in the Software without restriction, including 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. + + 1. The above copyright notice and this permission notice shall be included in the source code of all copies or substantial portions of the Software. + + 2. Modifications to the Software may be created. + Unless other licensing agreements are made in writing, these conditions apply when distributing source code. + + a) When source code of the Software is distributed, it shall be in its "pristine", unmodified form. + and + b) Modifications to the Software which are distributed as source code shall be distributed only as "patch files." + and + c) Modified works that are distributed shall be named differently than the original. + + Contact the author to arrange other terms. + + 3. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ json: libmib.json - yml: libmib.yml + yaml: libmib.yml html: libmib.html - text: libmib.LICENSE + license: libmib.LICENSE - license_key: libmng-2007 + category: Permissive spdx_license_key: LicenseRef-scancode-libmng-2007 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The MNG Library is supplied \"AS IS\". The Contributing Authors \ndisclaim\ + \ all warranties, expressed or implied, including, without \nlimitation, the warranties\ + \ of merchantability and of fitness for any \npurpose. The Contributing Authors assume\ + \ no liability for direct, \nindirect, incidental, special, exemplary, or consequential\ + \ damages, \nwhich may result from the use of the MNG Library, even if advised of \n\ + the possibility of such damage. \n \ + \ \nPermission is hereby granted\ + \ to use, copy, modify, and distribute this \nsource code, or portions hereof, for any purpose,\ + \ without fee, subject \nto the following restrictions: \ + \ \n \n1.\ + \ The origin of this source code must not be misrepresented; \n you must not\ + \ claim that you wrote the original software. \n \ + \ \n2. Altered versions must be plainly marked\ + \ as such and must not be \n misrepresented as being the original source. \ + \ \n \ + \ \n3. This Copyright notice may not be removed or altered from any source \n or altered\ + \ source distribution. \n \ + \ \nThe Contributing Authors specifically permit,\ + \ without fee, and \nencourage the use of this source code as a component to supporting\ + \ \nthe MNG and JNG file format in commercial products. If you use this \nsource\ + \ code in a product, acknowledgment would be highly appreciated." json: libmng-2007.json - yml: libmng-2007.yml + yaml: libmng-2007.yml html: libmng-2007.html - text: libmng-2007.LICENSE + license: libmng-2007.LICENSE - license_key: libpbm + category: Permissive spdx_license_key: LicenseRef-scancode-libpbm other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software and its documentation + for any purpose and without fee is hereby granted, provided that the above copyright + notice appear in all copies and that both that copyright notice and this permission + notice appear in supporting documentation. This software is provided "as is" without + express or implied warranty. json: libpbm.json - yml: libpbm.yml + yaml: libpbm.yml html: libpbm.html - text: libpbm.LICENSE + license: libpbm.LICENSE - license_key: libpng + category: Permissive spdx_license_key: Libpng other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This copy of the libpng notices is provided for your convenience. In case of + any discrepancy between this copy and the notices in the file png.h that is + included in the libpng distribution, the latter shall prevail. + + COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: + + If you modify libpng you may insert additional notices immediately following + this sentence. + + libpng versions 1.2.6, August 15, 2004, through 1.2.33, October 31, 2008, are + Copyright (c) 2004, 2006-2008 Glenn Randers-Pehrson, and are + distributed according to the same disclaimer and license as libpng-1.2.5 + with the following individual added to the list of Contributing Authors + + Cosmin Truta + + libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are + Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are + distributed according to the same disclaimer and license as libpng-1.0.6 + with the following individuals added to the list of Contributing Authors + + Simon-Pierre Cadieux + Eric S. Raymond + Gilles Vollant + + and with the following additions to the disclaimer: + + There is no warranty against interference with your enjoyment of the + library or against infringement. There is no warranty that our + efforts or the library will fulfill any of your particular purposes + or needs. This library is provided with all faults, and the entire + risk of satisfactory quality, performance, accuracy, and effort is with + the user. + + libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are + Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are + distributed according to the same disclaimer and license as libpng-0.96, + with the following individuals added to the list of Contributing Authors: + + Tom Lane + Glenn Randers-Pehrson + Willem van Schaik + + libpng versions 0.89, June 1996, through 0.96, May 1997, are + Copyright (c) 1996, 1997 Andreas Dilger + Distributed according to the same disclaimer and license as libpng-0.88, + with the following individuals added to the list of Contributing Authors: + + John Bowler + Kevin Bracey + Sam Bushell + Magnus Holmgren + Greg Roelofs + Tom Tanner + + libpng versions 0.5, May 1995, through 0.88, January 1996, are + Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. + + For the purposes of this copyright and license, "Contributing Authors" + is defined as the following set of individuals: + + Andreas Dilger + Dave Martindale + Guy Eric Schalnat + Paul Schmidt + Tim Wegner + + The PNG Reference Library is supplied "AS IS". The Contributing Authors + and Group 42, Inc. disclaim all warranties, expressed or implied, + including, without limitation, the warranties of merchantability and of + fitness for any purpose. The Contributing Authors and Group 42, Inc. + assume no liability for direct, indirect, incidental, special, exemplary, + or consequential damages, which may result from the use of the PNG + Reference Library, even if advised of the possibility of such damage. + + Permission is hereby granted to use, copy, modify, and distribute this + source code, or portions hereof, for any purpose, without fee, subject + to the following restrictions: + + 1. The origin of this source code must not be misrepresented. + + 2. Altered versions must be plainly marked as such and must not + be misrepresented as being the original source. + + 3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + + The Contributing Authors and Group 42, Inc. specifically permit, without + fee, and encourage the use of this source code as a component to + supporting the PNG file format in commercial products. If you use this + source code in a product, acknowledgment is not required but would be + appreciated. + + + A "png_get_copyright" function is available, for convenient use in "about" + boxes and the like: + + printf("%s",png_get_copyright(NULL)); + + Also, the PNG logo (in PNG format, of course) is supplied in the + files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31). + + Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a + certification mark of the Open Source Initiative. + + Glenn Randers-Pehrson + glennrp at users.sourceforge.net + October 31, 2008 json: libpng.json - yml: libpng.yml + yaml: libpng.yml html: libpng.html - text: libpng.LICENSE + license: libpng.LICENSE - license_key: libpng-v2 + category: Permissive spdx_license_key: libpng-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + COPYRIGHT NOTICE, DISCLAIMER, and LICENSE + ========================================= + + PNG Reference Library License version 2 + --------------------------------------- + + * Copyright (c) 1995-2018 The PNG Reference Library Authors. + * Copyright (c) 2018 Cosmin Truta. + * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson. + * Copyright (c) 1996-1997 Andreas Dilger. + * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + + The software is supplied "as is", without warranty of any kind, + express or implied, including, without limitation, the warranties + of merchantability, fitness for a particular purpose, title, and + non-infringement. In no even shall the Copyright owners, or + anyone distributing the software, be liable for any damages or + other liability, whether in contract, tort or otherwise, arising + from, out of, or in connection with the software, or the use or + other dealings in the software, even if advised of the possibility + of such damage. + + Permission is hereby granted to use, copy, modify, and distribute + this software, or portions hereof, for any purpose, without fee, + 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 Copyright notice may not be removed or altered from any + source or altered source distribution. json: libpng-v2.json - yml: libpng-v2.yml + yaml: libpng-v2.yml html: libpng-v2.html - text: libpng-v2.LICENSE + license: libpng-v2.LICENSE - license_key: librato-exception + category: Proprietary Free spdx_license_key: LicenseRef-scancode-librato-exception other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Librato Open License + Version 1.0, October, 2016 + + 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 11 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by the copyright + owner that is granting the License. Licensor can include Librato as an + original contributor to the Work as defined below. + + "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. + + "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. + + Each time You convey a covered Work, the recipient automatically receives a + license from the original Licensor(s), to run, modify and propagate that work, + subject to this License. You are not responsible for enforcing compliance by + third parties with this License. + + 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 Work or any portion + of it. + + 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: + + 1. You must give any other recipients of the Work or Derivative Works a copy + of this License; and + 2. You must cause any modified files to carry prominent notices stating that + You changed the files; and + 3. 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 + 4. 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. + + 10. Noncompetition + + You may install and execute the Work only in conjunction with the direct use of + Librato software. This Work, any file or any derivative thereof shall not be + used in conjunction with any product that competes with any Librato software. + + 11. Termination + + The License stated above is automatically terminated and revoked if you exceed + its scope or violate any of the terms of this License or any related License or + notice. + + END OF TERMS AND CONDITIONS json: librato-exception.json - yml: librato-exception.yml + yaml: librato-exception.yml html: librato-exception.html - text: librato-exception.LICENSE + license: librato-exception.LICENSE - license_key: libselinux-pd + category: Public Domain spdx_license_key: LicenseRef-scancode-libselinux-pd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + This library is public domain software, i.e. not copyrighted. + + Warranty Exclusion + ------------------ + You agree that this software is a + non-commercially developed program that may contain "bugs" (as that + term is used in the industry) and that it may not function as intended. + The software is licensed "as is". NSA makes no, and hereby expressly + disclaims all, warranties, express, implied, statutory, or otherwise + with respect to the software, including noninfringement and the implied + warranties of merchantability and fitness for a particular purpose. + + Limitation of Liability + ----------------------- + In no event will NSA be liable for any damages, including loss of data, + lost profits, cost of cover, or other special, incidental, + consequential, direct or indirect damages arising from the software or + the use thereof, however caused and on any theory of liability. This + limitation will apply even if NSA has been advised of the possibility + of such damage. You acknowledge that this is a reasonable allocation of + risk. json: libselinux-pd.json - yml: libselinux-pd.yml + yaml: libselinux-pd.yml html: libselinux-pd.html - text: libselinux-pd.LICENSE + license: libselinux-pd.LICENSE - license_key: libsrv-1.0.2 + category: Permissive spdx_license_key: LicenseRef-scancode-libsrv-1.0.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Redistribution and use in source and binary forms, with or without\nmodification, are\ + \ permitted for any legal purpose, provided that the following\nconditions are met:\n *\ + \ Redistributions of source code and/or documentation must retain the above\n copyright\ + \ notice, this list of conditions and the following disclaimer.\n * Redistributions in binary\ + \ form must reproduce the above copyright notice,\n this list of conditions and the following\ + \ disclaimer in the documentation\n and/or other materials provided with the distribution.\n\ + \ * All advertising materials mentioning features or use of this software and/or\n documentation\ + \ must display the following acknowledgement, with \"software\n and/or documentation\"\ + \ made more specific to represent the situation at hand:\n\tThis product includes software\ + \ and/or documentation developed by\n\tRick van Rein and other contributors.\n * Neither\ + \ the name of Rick van Rein nor the names of other contributors may be\n used to endorse\ + \ or promote products derived from this software without\n specific prior digitally signed\ + \ permission.\n * When obtaining the software and/or documentation provided on this site,\ + \ any\n import laws about cryptography or otherwise, must be taken into account.\n Neither\ + \ of Rick van Rein, contributors and the hosting party can be held\n responsible for not\ + \ obeying import laws when retrieving code and/or\n documentation from this site.\n\n\ + THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY OPENFORTRESS AND CONTRIBUTORS\n``AS IS''\ + \ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES\ + \ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL\ + \ OPENFORTRESS OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\ + \ EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\ + \ GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED\ + \ AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING\ + \ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE AND/OR DOCUMENTATION,\ + \ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGE." json: libsrv-1.0.2.json - yml: libsrv-1.0.2.yml + yaml: libsrv-1.0.2.yml html: libsrv-1.0.2.html - text: libsrv-1.0.2.LICENSE + license: libsrv-1.0.2.LICENSE - license_key: libtool-exception + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + As a special exception to the GNU General Public License, if you + distribute this file as part of a program or library that is built using + GNU Libtool, you may include this file under the same distribution terms + that you use for the rest of that program. json: libtool-exception.json - yml: libtool-exception.yml + yaml: libtool-exception.yml html: libtool-exception.html - text: libtool-exception.LICENSE + license: libtool-exception.LICENSE - license_key: libtool-exception-2.0 + category: Copyleft Limited spdx_license_key: Libtool-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception to the GNU General Public License, + if you distribute this file as part of a program or library that + is built using GNU Libtool, you may include this file under the + same distribution terms that you use for the rest of that program. json: libtool-exception-2.0.json - yml: libtool-exception-2.0.yml + yaml: libtool-exception-2.0.yml html: libtool-exception-2.0.html - text: libtool-exception-2.0.LICENSE + license: libtool-exception-2.0.LICENSE +- license_key: libutil-david-nugent + category: Permissive + spdx_license_key: libutil-David-Nugent + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + Redistribution and use in source and binary forms, with or without + modification, is permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice immediately at the beginning of the file, without modification, + 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. This work was done expressly for inclusion into FreeBSD. Other use + is permitted provided this notation is included. + 4. Absolutely no warranty of function or purpose is made by the author + David Nugent. + 5. Modifications may be freely made to this file providing the above + conditions are met. + json: libutil-david-nugent.json + yaml: libutil-david-nugent.yml + html: libutil-david-nugent.html + license: libutil-david-nugent.LICENSE - license_key: libwebsockets-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-libwebsockets-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "Libwebsockets and included programs are provided under the terms of the GNU\nLibrary\ + \ General Public License (LGPL) 2.1, with the following exceptions:\n\n1) Any reference,\ + \ whether in these modifications or in the GNU\nLibrary General Public License 2.1, to this\ + \ License, these terms, the\nGNU Lesser Public License, GNU Library General Public License,\ + \ LGPL, or\nany similar reference shall refer to the GNU Library General Public\nLicense\ + \ 2.1 as modified by these paragraphs 1) through 4).\n\n2) Static linking of programs with\ + \ the libwebsockets library does not\nconstitute a derivative work and does not require\ + \ the author to provide \nsource code for the program, use the shared libwebsockets libraries,\ + \ or\nlink their program against a user-supplied version of libwebsockets.\n\nIf you link\ + \ the program to a modified version of libwebsockets, then the\nchanges to libwebsockets\ + \ must be provided under the terms of the LGPL in\nsections 1, 2, and 4.\n\n3) You do not\ + \ have to provide a copy of the libwebsockets license with\nprograms that are linked to\ + \ the libwebsockets library, nor do you have to\nidentify the libwebsockets license in your\ + \ program or documentation as\nrequired by section 6 of the LGPL.\n\nHowever, programs must\ + \ still identify their use of libwebsockets. The\nfollowing example statement can be included\ + \ in user documentation to\nsatisfy this requirement:\n\n\"[program] is based in part on\ + \ the work of the libwebsockets project\n(https://libwebsockets.org)\"\n\n4) Some sources\ + \ included have their own, more liberal licenses, or options\nto get original sources with\ + \ the liberal terms.\n\nOriginal liberal license retained\n\n - lib/sha-1.c - 3-clause\ + \ BSD license retained, link to original\n - win32port/zlib - ZLIB license (see zlib.h)\n\ + \ - lib/mbedtls_wrapper - Apache 2.0 (only built if linked against mbedtls)\n\nRelicensed\ + \ to libwebsocket license\n\n - lib/base64-decode.c - relicensed to LGPL2.1+SLE, link to\ + \ original\n - lib/daemonize.c - relicensed from Public Domain to LGPL2.1+SLE,\n \ + \ link to original Public Domain version\n\nPublic Domain (CC-zero)\ + \ to simplify reuse\n\n - test-apps/*.c\n - test-apps/*.h\n - lwsws/*\n\n------ end of\ + \ exceptions" json: libwebsockets-exception.json - yml: libwebsockets-exception.yml + yaml: libwebsockets-exception.yml html: libwebsockets-exception.html - text: libwebsockets-exception.LICENSE + license: libwebsockets-exception.LICENSE - license_key: libzip + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + 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 of the authors may not be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT + SHALL THE AUTHORS 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. json: libzip.json - yml: libzip.yml + yaml: libzip.yml html: libzip.html - text: libzip.LICENSE + license: libzip.LICENSE - license_key: license-file-reference + category: Unstated License spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Unstated License + text: json: license-file-reference.json - yml: license-file-reference.yml + yaml: license-file-reference.yml html: license-file-reference.html - text: license-file-reference.LICENSE + license: license-file-reference.LICENSE - license_key: lil-1 + category: Permissive spdx_license_key: LicenseRef-scancode-lil-1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is hereby granted by the authors of this software, to any + person, to use the software for any purpose, free of charge, including + the rights to run, read, copy, change, distribute and sell it, and + including usage rights to any patents the authors may hold on it, + subject to the following conditions: + + This license, or a link to its text, must be included with all copies + of the software and any derivative works. + + Any modification to the software submitted to the authors may be + incorporated into the software under the terms of this license. + + The software is provided "as is", without warranty of any kind, + including but not limited to the warranties of title, fitness, + merchantability and non-infringement. The authors have no obligation + to provide support or updates for the software, and may not be held + liable for any damages, claims or other liability arising from its + use. json: lil-1.json - yml: lil-1.yml + yaml: lil-1.yml html: lil-1.html - text: lil-1.LICENSE + license: lil-1.LICENSE - license_key: liliq-p-1.1 + category: Copyleft Limited spdx_license_key: LiLiQ-P-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Licence Libre du Québec – Permissive (LiLiQ-P)\nVersion 1.1\n\n1. Préambule \nCette\ + \ licence s'applique à tout logiciel distribué dont le titulaire du droit d'auteur précise\ + \ qu'il est sujet aux termes de la Licence Libre du Québec – Permissive (LiLiQ-P) (ci-après\ + \ appelée la « licence »).\n\n2. Définitions \nDans la présente licence, à moins que le\ + \ contexte n'indique un sens différent, on entend par:\n\n« concédant » : le titulaire du\ + \ droit d'auteur sur le logiciel, ou toute personne dûment autorisée par ce dernier à accorder\ + \ la présente licence; \n« contributeur » : le titulaire du droit d'auteur ou toute personne\ + \ autorisée par ce dernier à soumettre au concédant une contribution. Un contributeur dont\ + \ sa contribution est incorporée au logiciel est considéré comme un concédant en regard\ + \ de sa contribution; \n« contribution » : tout logiciel original, ou partie de logiciel\ + \ original soumis et destiné à être incorporé dans le logiciel; \n« distribution » : le\ + \ fait de délivrer une copie du logiciel; \n« licencié » : toute personne qui possède une\ + \ copie du logiciel et qui exerce les droits concédés par la licence; \n« logiciel » : une\ + \ œuvre protégée par le droit d'auteur, telle qu'un programme d'ordinateur et sa documentation,\ + \ pour laquelle le titulaire du droit d'auteur a précisé qu'elle est sujette aux termes\ + \ de la présente licence; \n« logiciel dérivé » : tout logiciel original réalisé par un\ + \ licencié, autre que le logiciel ou un logiciel modifié, qui produit ou reproduit la totalité\ + \ ou une partie importante du logiciel; \n« logiciel modifié » : toute modification par\ + \ un licencié de l'un des fichiers source du logiciel ou encore tout nouveau fichier source\ + \ qui incorpore le logiciel ou une partie importante de ce dernier.\n\n3. Licence de droit\ + \ d'auteur \nSous réserve des termes de la licence, le concédant accorde au licencié une\ + \ licence non exclusive et libre de redevances lui permettant d’exercer les droits suivants\ + \ sur le logiciel :\n\n1 Produire ou reproduire la totalité ou une partie importante; \n\ + 2 Exécuter ou représenter la totalité ou une partie importante en public; \n3 Publier la\ + \ totalité ou une partie importante; \n4 Sous-licencier sous une autre licence libre, approuvée\ + \ ou certifiée par la Free Software Foundation ou l'Open Source Initiative.\n\nCette licence\ + \ est accordée sans limite territoriale et sans limite de temps.\n\nL'exercice complet de\ + \ ces droits est sujet à la distribution par le concédant du code source du logiciel, lequel\ + \ doit être sous une forme permettant d'y apporter des modifications. Le concédant peut\ + \ aussi distribuer le logiciel accompagné d'une offre de distribuer le code source du logiciel,\ + \ sans frais supplémentaires, autres que ceux raisonnables afin de permettre la livraison\ + \ du code source. Cette offre doit être valide pendant une durée raisonnable.\n\n4. Distribution\ + \ \nLe licencié peut distribuer des copies du logiciel, d'un logiciel modifié ou dérivé,\ + \ sous réserve de respecter les conditions suivantes :\n\n1 Le logiciel doit être accompagné\ + \ d'un exemplaire de cette licence; \n2 Si le logiciel a été modifié, le licencié doit en\ + \ faire la mention, de préférence dans chacun des fichiers modifiés dont la nature permet\ + \ une telle mention; \n3 Les étiquettes ou mentions faisant état des droits d'auteur, des\ + \ marques de commerce, des garanties ou de la paternité concernant le logiciel ne doivent\ + \ pas être modifiées ou supprimées, à moins que ces étiquettes ou mentions ne soient inapplicables\ + \ à un logiciel modifié ou dérivé donné.\n\n5. Contributions \nSous réserve d'une entente\ + \ distincte, toute contribution soumise par un contributeur au concédant pour inclusion\ + \ dans le logiciel sera soumise aux termes de cette licence.\n\n6. Marques de commerce \n\ + La licence n'accorde aucune permission particulière qui permettrait d'utiliser les marques\ + \ de commerce du concédant, autre que celle requise permettant d'identifier la provenance\ + \ du logiciel.\n\n7. Garanties \nSauf mention contraire, le concédant distribue le logiciel\ + \ sans aucune garantie, aux risques et périls de l'acquéreur de la copie du logiciel, et\ + \ ce, sans assurer que le logiciel puisse répondre à un besoin particulier ou puisse donner\ + \ un résultat quelconque.\n\nSans lier le concédant d'une quelconque manière, rien n'empêche\ + \ un licencié d'offrir ou d'exclure des garanties ou du support.\n\n8. Responsabilité \n\ + Le licencié est responsable de tout préjudice résultant de l'exercice des droits accordés\ + \ par la licence.\n\nLe concédant ne saurait être tenu responsable de dommages subis par\ + \ le licencié ou par des tiers, pour quelque cause que ce soit en lien avec la licence et\ + \ les droits qui y sont accordés.\n\n9. Résiliation \nLa présente licence est automatiquement\ + \ résiliée dès que les droits qui y sont accordés ne sont pas exercés conformément aux termes\ + \ qui y sont stipulés.\n\nToutefois, si le défaut est corrigé dans un délai de 30 jours\ + \ de sa prise de connaissance par la personne en défaut, et qu'il s'agit du premier défaut,\ + \ la licence est accordée de nouveau.\n\nPour tout défaut subséquent, le consentement exprès\ + \ du concédant est nécessaire afin que la licence soit accordée de nouveau.\n\n10. Version\ + \ de la licence \nLe Centre de services partagés du Québec, ses ayants cause ou toute personne\ + \ qu'il désigne, peuvent diffuser des versions révisées ou modifiées de cette licence. Chaque\ + \ version recevra un numéro unique. Si un logiciel est déjà soumis aux termes d'une version\ + \ spécifique, c'est seulement cette version qui liera les parties à la licence.\n\nLe concédant\ + \ peut aussi choisir de concéder la licence sous la version actuelle ou toute version ultérieure,\ + \ auquel cas le licencié peut choisir sous quelle version la licence lui est accordée.\n\ + \n11. Divers \nDans la mesure où le concédant est un ministère, un organisme public ou une\ + \ personne morale de droit public, créés en vertu d'une loi de l'Assemblée nationale du\ + \ Québec, la licence est régie par le droit applicable au Québec et en cas de contestation,\ + \ les tribunaux du Québec seront seuls compétents.\n\nLa présente licence peut être distribuée\ + \ sans conditions particulières. Toutefois, une version modifiée doit être distribuée sous\ + \ un nom différent. Toute référence au Centre de services partagés du Québec, et, le cas\ + \ échéant, ses ayant cause, doit être retirée, autre que celle permettant d'identifier la\ + \ provenance de la licence." json: liliq-p-1.1.json - yml: liliq-p-1.1.yml + yaml: liliq-p-1.1.yml html: liliq-p-1.1.html - text: liliq-p-1.1.LICENSE + license: liliq-p-1.1.LICENSE - license_key: liliq-r-1.1 + category: Copyleft Limited spdx_license_key: LiLiQ-R-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Licence Libre du Québec – Réciprocité (LiLiQ-R)\nVersion 1.1\n\n1. Préambule \nCette\ + \ licence s'applique à tout logiciel distribué dont le titulaire du droit d'auteur précise\ + \ qu'il est sujet aux termes de la Licence Libre du Québec – Réciprocité (LiLiQ-R) (ci-après\ + \ appelée la « licence »).\n\n2. Définitions \nDans la présente licence, à moins que le\ + \ contexte n'indique un sens différent, on entend par:\n\n« concédant » : le titulaire du\ + \ droit d'auteur sur le logiciel, ou toute personne dûment autorisée par ce dernier à accorder\ + \ la présente licence; \n« contributeur » : le titulaire du droit d'auteur ou toute personne\ + \ autorisée par ce dernier à soumettre au concédant une contribution. Un contributeur dont\ + \ sa contribution est incorporée au logiciel est considéré comme un concédant en regard\ + \ de sa contribution; \n« contribution » : tout logiciel original, ou partie de logiciel\ + \ original soumis et destiné à être incorporé dans le logiciel; \n« distribution » : le\ + \ fait de délivrer une copie du logiciel; \n« licencié » : toute personne qui possède une\ + \ copie du logiciel et qui exerce les droits concédés par la licence; \n« logiciel » : une\ + \ œuvre protégée par le droit d'auteur, telle qu'un programme d'ordinateur et sa documentation,\ + \ pour laquelle le titulaire du droit d'auteur a précisé qu'elle est sujette aux termes\ + \ de la présente licence; \n« logiciel dérivé » : tout logiciel original réalisé par un\ + \ licencié, autre que le logiciel ou un logiciel modifié, qui produit ou reproduit la totalité\ + \ ou une partie importante du logiciel; \n« logiciel modifié » : toute modification par\ + \ un licencié de l'un des fichiers source du logiciel ou encore tout nouveau fichier source\ + \ qui incorpore le logiciel ou une partie importante de ce dernier.\n\n3. Licence de droit\ + \ d'auteur \nSous réserve des termes de la licence, le concédant accorde au licencié une\ + \ licence non exclusive et libre de redevances lui permettant d’exercer les droits suivants\ + \ sur le logiciel :\n\n1 Produire ou reproduire la totalité ou une partie importante; \n\ + 2 Exécuter ou représenter la totalité ou une partie importante en public; \n3 Publier la\ + \ totalité ou une partie importante.\n\nCette licence est accordée sans limite territoriale\ + \ et sans limite de temps.\n\nL'exercice complet de ces droits est sujet à la distribution\ + \ par le concédant du code source du logiciel, lequel doit être sous une forme permettant\ + \ d'y apporter des modifications. Le concédant peut aussi distribuer le logiciel accompagné\ + \ d'une offre de distribuer le code source du logiciel, sans frais supplémentaires, autres\ + \ que ceux raisonnables afin de permettre la livraison du code source. Cette offre doit\ + \ être valide pendant une durée raisonnable.\n\n4. Distribution \nLe licencié peut distribuer\ + \ des copies du logiciel, d'un logiciel modifié ou dérivé, sous réserve de respecter les\ + \ conditions suivantes :\n\n1 Le logiciel doit être accompagné d'un exemplaire de cette\ + \ licence; \n2 Si le logiciel a été modifié, le licencié doit en faire la mention, de préférence\ + \ dans chacun des fichiers modifiés dont la nature permet une telle mention; \n3 Les étiquettes\ + \ ou mentions faisant état des droits d'auteur, des marques de commerce, des garanties ou\ + \ de la paternité concernant le logiciel ne doivent pas être modifiées ou supprimées, à\ + \ moins que ces étiquettes ou mentions ne soient inapplicables à un logiciel modifié ou\ + \ dérivé donné.\n\n4.1. Réciprocité \nChaque fois que le licencié distribue le logiciel,\ + \ le concédant offre au récipiendaire une concession sur le logiciel selon les termes de\ + \ la présente licence. Le licencié doit offrir une concession selon les termes de la présente\ + \ licence pour tout logiciel modifié qu'il distribue.\n\nChaque fois que le licencié distribue\ + \ le logiciel ou un logiciel modifié, ce dernier doit assumer l'obligation d'en distribuer\ + \ le code source, de la manière prévue au troisième alinéa de l'article 3.\n\n4.2. Compatibilité\ + \ \nDans la mesure où le licencié souhaite distribuer un logiciel modifié combiné à un logiciel\ + \ assujetti à une licence compatible, mais dont il ne serait pas possible d'en respecter\ + \ les termes, le concédant offre, en plus de la présente concession, une concession selon\ + \ les termes de cette licence compatible.\n\nUn licencié qui est titulaire exclusif du droit\ + \ d'auteur sur le logiciel assujetti à une licence compatible ne peut pas se prévaloir de\ + \ cette offre. Il en est de même pour toute autre personne dûment autorisée à sous-licencier\ + \ par le titulaire exclusif du droit d'auteur sur le logiciel assujetti à une licence compatible.\n\ + \nEst considérée comme une licence compatible toute licence libre approuvée ou certifiée\ + \ par la Free Software Foundation ou l'Open Source Initiative, dont le niveau de réciprocité\ + \ est comparable ou supérieur à celui de la présente licence, sans toutefois être moindre,\ + \ notamment :\n\n1 Common Development and Distribution License (CDDL-1.0) \n2 Common Public\ + \ License Version 1.0 (CPL-1.0) \n3 Contrat de licence de logiciel libre CeCILL, version\ + \ 2.1 (CECILL-2.1) \n4 Contrat de licence de logiciel libre CeCILL-C (CECILL-C) \n5 Eclipse\ + \ Public License - v 1.0 (EPL-1.0) \n6 European Union Public License, version 1.1 (EUPL\ + \ v. 1.1) \n7 Licence Libre du Québec – Réciprocité forte version 1.1 (LiLiQ-R+ 1.1) \n\ + 8 GNU General Public License Version 2 (GNU GPLv2) \n9 GNU General Public License Version\ + \ 3 (GNU GPLv3) \n10 GNU Lesser General Public License Version 2.1 (GNU LGPLv2.1) \n11 GNU\ + \ Lesser General Public License Version 3 (GNU LGPLv3) \n12 Mozilla Public License Version\ + \ 2.0 (MPL-2.0)\n\n5. Contributions \nSous réserve d'une entente distincte, toute contribution\ + \ soumise par un contributeur au concédant pour inclusion dans le logiciel sera soumise\ + \ aux termes de cette licence.\n\n6. Marques de commerce \nLa licence n'accorde aucune permission\ + \ particulière qui permettrait d'utiliser les marques de commerce du concédant, autre que\ + \ celle requise permettant d'identifier la provenance du logiciel.\n\n7. Garanties \nSauf\ + \ mention contraire, le concédant distribue le logiciel sans aucune garantie, aux risques\ + \ et périls de l'acquéreur de la copie du logiciel, et ce, sans assurer que le logiciel\ + \ puisse répondre à un besoin particulier ou puisse donner un résultat quelconque.\n\nSans\ + \ lier le concédant d'une quelconque manière, rien n'empêche un licencié d'offrir ou d'exclure\ + \ des garanties ou du support.\n\n8. Responsabilité \nLe licencié est responsable de tout\ + \ préjudice résultant de l'exercice des droits accordés par la licence.\n\nLe concédant\ + \ ne saurait être tenu responsable du préjudice subi par le licencié ou par des tiers, pour\ + \ quelque cause que ce soit en lien avec la licence et les droits qui y sont accordés.\n\ + \n9. Résiliation \nLa présente licence est résiliée de plein droit dès que les droits qui\ + \ y sont accordés ne sont pas exercés conformément aux termes qui y sont stipulés.\n\nToutefois,\ + \ si le défaut est corrigé dans un délai de 30 jours de sa prise de connaissance par la\ + \ personne en défaut, et qu'il s'agit du premier défaut, la licence est accordée de nouveau.\n\ + \nPour tout défaut subséquent, le consentement exprès du concédant est nécessaire afin que\ + \ la licence soit accordée de nouveau.\n\n10. Version de la licence \nLe Centre de services\ + \ partagés du Québec, ses ayants cause ou toute personne qu'il désigne, peuvent diffuser\ + \ des versions révisées ou modifiées de cette licence. Chaque version recevra un numéro\ + \ unique. Si un logiciel est déjà soumis aux termes d'une version spécifique, c'est seulement\ + \ cette version qui liera les parties à la licence.\n\nLe concédant peut aussi choisir de\ + \ concéder la licence sous la version actuelle ou toute version ultérieure, auquel cas le\ + \ licencié peut choisir sous quelle version la licence lui est accordée.\n\n11. Divers \n\ + Dans la mesure où le concédant est un ministère, un organisme public ou une personne morale\ + \ de droit public, créés en vertu d'une loi de l'Assemblée nationale du Québec, la licence\ + \ est régie par le droit applicable au Québec et en cas de contestation, les tribunaux du\ + \ Québec seront seuls compétents.\n\nLa présente licence peut être distribuée sans conditions\ + \ particulières. Toutefois, une version modifiée doit être distribuée sous un nom différent.\ + \ Toute référence au Centre de services partagés du Québec, et, le cas échéant, ses ayant\ + \ droit, doit être retirée, autre que celle permettant d'identifier la provenance de la\ + \ licence." json: liliq-r-1.1.json - yml: liliq-r-1.1.yml + yaml: liliq-r-1.1.yml html: liliq-r-1.1.html - text: liliq-r-1.1.LICENSE + license: liliq-r-1.1.LICENSE - license_key: liliq-rplus-1.1 + category: Copyleft spdx_license_key: LiLiQ-Rplus-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "Licence Libre du Québec – Réciprocité forte (LiLiQ-R+)\nVersion 1.1\n\n1. Préambule\ + \ \nCette licence s'applique à tout logiciel distribué dont le titulaire du droit d'auteur\ + \ précise qu'il est sujet aux termes de la Licence Libre du Québec – Réciprocité forte (LiLiQ-R+)\ + \ (ci-après appelée la « licence »).\n\n2. Définitions \nDans la présente licence, à moins\ + \ que le contexte n'indique un sens différent, on entend par:\n\n« concédant » : le titulaire\ + \ du droit d'auteur sur le logiciel, ou toute personne dûment autorisée par ce dernier à\ + \ accorder la présente licence; \n« contributeur » : le titulaire du droit d'auteur ou toute\ + \ personne autorisée par ce dernier à soumettre au concédant une contribution. Un contributeur\ + \ dont sa contribution est incorporée au logiciel est considéré comme un concédant en regard\ + \ de sa contribution; \n« contribution » : tout logiciel original, ou partie de logiciel\ + \ original soumis et destiné à être incorporé dans le logiciel; \n« distribution » : le\ + \ fait de délivrer une copie du logiciel; \n« licencié » : toute personne qui possède une\ + \ copie du logiciel et qui exerce les droits concédés par la licence; \n« logiciel » : une\ + \ œuvre protégée par le droit d'auteur, telle qu'un programme d'ordinateur et sa documentation,\ + \ pour laquelle le titulaire du droit d'auteur a précisé qu'elle est sujette aux termes\ + \ de la présente licence; \n« logiciel dérivé » : tout logiciel original réalisé par un\ + \ licencié, autre que le logiciel ou un logiciel modifié, qui produit ou reproduit la totalité\ + \ ou une partie importante du logiciel; \n« logiciel modifié » : toute modification par\ + \ un licencié de l'un des fichiers source du logiciel ou encore tout nouveau fichier source\ + \ qui incorpore le logiciel ou une partie importante de ce dernier.\n\n3. Licence de droit\ + \ d'auteur \nSous réserve des termes de la licence, le concédant accorde au licencié une\ + \ licence non exclusive et libre de redevances lui permettant d’exercer les droits suivants\ + \ sur le logiciel :\n\n1 Produire ou reproduire la totalité ou une partie importante; \n\ + 2 Exécuter ou représenter la totalité ou une partie importante en public; \n3 Publier la\ + \ totalité ou une partie importante.\n\nCette licence est accordée sans limite territoriale\ + \ et sans limite de temps.\n\nL'exercice complet de ces droits est sujet à la distribution\ + \ par le concédant du code source du logiciel, lequel doit être sous une forme permettant\ + \ d'y apporter des modifications. Le concédant peut aussi distribuer le logiciel accompagné\ + \ d'une offre de distribuer le code source du logiciel, sans frais supplémentaires, autres\ + \ que ceux raisonnables afin de permettre la livraison du code source. Cette offre doit\ + \ être valide pendant une durée raisonnable.\n\n4. Distribution \nLe licencié peut distribuer\ + \ des copies du logiciel, d'un logiciel modifié ou dérivé, sous réserve de respecter les\ + \ conditions suivantes :\n\n1 Le logiciel doit être accompagné d'un exemplaire de cette\ + \ licence; \n2 Si le logiciel a été modifié, le licencié doit en faire la mention, de préférence\ + \ dans chacun des fichiers modifiés dont la nature permet une telle mention; \n3 Les étiquettes\ + \ ou mentions faisant état des droits d'auteur, des marques de commerce, des garanties ou\ + \ de la paternité concernant le logiciel ne doivent pas être modifiées ou supprimées, à\ + \ moins que ces étiquettes ou mentions ne soient inapplicables à un logiciel modifié ou\ + \ dérivé donné.\n\n4.1. Réciprocité \nChaque fois que le licencié distribue le logiciel,\ + \ le concédant offre au récipiendaire une concession sur le logiciel selon les termes de\ + \ la présente licence. Le licencié doit offrir une concession selon les termes de la présente\ + \ licence pour tout logiciel modifié ou dérivé qu'il distribue.\n\nChaque fois que le licencié\ + \ distribue le logiciel, un logiciel modifié, ou un logiciel dérivé, ce dernier doit assumer\ + \ l'obligation d'en distribuer le code source, de la manière prévue au troisième alinéa\ + \ de l'article 3.\n\n4.2. Compatibilité \nDans la mesure où le licencié souhaite distribuer\ + \ un logiciel modifié ou dérivé combiné à un logiciel assujetti à une licence compatible,\ + \ mais dont il ne serait pas possible d'en respecter les termes, le concédant offre, en\ + \ plus de la présente concession, une concession selon les termes de cette licence compatible.\n\ + \nUn licencié qui est titulaire exclusif du droit d'auteur sur le logiciel assujetti à une\ + \ licence compatible ne peut pas se prévaloir de cette offre. Il en est de même pour toute\ + \ autre personne dûment autorisée à sous-licencier par le titulaire exclusif du droit d'auteur\ + \ sur le logiciel assujetti à une licence compatible.\n\nEst considérée comme une licence\ + \ compatible toute licence libre approuvée ou certifiée par la Free Software Foundation\ + \ ou l'Open Source Initiative, dont le niveau de réciprocité est comparable à celui de la\ + \ présente licence, sans toutefois être moindre, notamment :\n\n1 Common Public License\ + \ Version 1.0 (CPL-1.0) \n2 Contrat de licence de logiciel libre CeCILL, version 2.1 (CECILL-2.1)\ + \ \n3 Eclipse Public License - v 1.0 (EPL-1.0) \n4 European Union Public License, version\ + \ 1.1 (EUPL v. 1.1) \n5 GNU General Public License Version 2 (GNU GPLv2) \n6 GNU General\ + \ Public License Version 3 (GNU GPLv3)\n\n5. Contributions \nSous réserve d'une entente\ + \ distincte, toute contribution soumise par un contributeur au concédant pour inclusion\ + \ dans le logiciel sera soumise aux termes de cette licence.\n\n6. Marques de commerce \n\ + La licence n'accorde aucune permission particulière qui permettrait d'utiliser les marques\ + \ de commerce du concédant, autre que celle requise permettant d'identifier la provenance\ + \ du logiciel.\n\n7. Garanties \nSauf mention contraire, le concédant distribue le logiciel\ + \ sans aucune garantie, aux risques et périls de l'acquéreur de la copie du logiciel, et\ + \ ce, sans assurer que le logiciel puisse répondre à un besoin particulier ou puisse donner\ + \ un résultat quelconque.\n\nSans lier le concédant d'une quelconque manière, rien n'empêche\ + \ un licencié d'offrir ou d'exclure des garanties ou du support.\n\n8. Responsabilité \n\ + Le licencié est responsable de tout préjudice résultant de l'exercice des droits accordés\ + \ par la licence.\n\nLe concédant ne saurait être tenu responsable du préjudice subi par\ + \ le licencié ou par des tiers, pour quelque cause que ce soit en lien avec la licence et\ + \ les droits qui y sont accordés.\n\n9. Résiliation \nLa présente licence est résiliée de\ + \ plein droit dès que les droits qui y sont accordés ne sont pas exercés conformément aux\ + \ termes qui y sont stipulés.\n\nToutefois, si le défaut est corrigé dans un délai de 30\ + \ jours de sa prise de connaissance par la personne en défaut, et qu'il s'agit du premier\ + \ défaut, la licence est accordée de nouveau.\n\nPour tout défaut subséquent, le consentement\ + \ exprès du concédant est nécessaire afin que la licence soit accordée de nouveau.\n\n10.\ + \ Version de la licence \nLe Centre de services partagés du Québec, ses ayants cause ou\ + \ toute personne qu'il désigne, peuvent diffuser des versions révisées ou modifiées de cette\ + \ licence. Chaque version recevra un numéro unique. Si un logiciel est déjà soumis aux termes\ + \ d'une version spécifique, c'est seulement cette version qui liera les parties à la licence.\n\ + \nLe concédant peut aussi choisir de concéder la licence sous la version actuelle ou toute\ + \ version ultérieure, auquel cas le licencié peut choisir sous quelle version la licence\ + \ lui est accordée.\n\n11. Divers \nDans la mesure où le concédant est un ministère, un\ + \ organisme public ou une personne morale de droit public, créés en vertu d'une loi de l'Assemblée\ + \ nationale du Québec, la licence est régie par le droit applicable au Québec et en cas\ + \ de contestation, les tribunaux du Québec seront seuls compétents.\n\nLa présente licence\ + \ peut être distribuée sans conditions particulières. Toutefois, une version modifiée doit\ + \ être distribuée sous un nom différent. Toute référence au Centre de services partagés\ + \ du Québec, et, le cas échéant, ses ayant cause, doit être retirée, autre que celle permettant\ + \ d'identifier la provenance de la licence." json: liliq-rplus-1.1.json - yml: liliq-rplus-1.1.yml + yaml: liliq-rplus-1.1.yml html: liliq-rplus-1.1.html - text: liliq-rplus-1.1.LICENSE + license: liliq-rplus-1.1.LICENSE - license_key: lilo + category: Permissive spdx_license_key: LicenseRef-scancode-lilo other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms of parts of or the whole original + or derived work are permitted provided that the original work is properly attributed + to the author. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. This work is + provided "as is" and without any express or implied warranties. json: lilo.json - yml: lilo.yml + yaml: lilo.yml html: lilo.html - text: lilo.LICENSE + license: lilo.LICENSE - license_key: linking-exception-2.0-plus + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-linking-exception-2.0-plus other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, if you link this library with other files, + some of which are compiled with GCC, to produce an executable, + this library does not by itself cause the resulting executable to + be covered by the GNU General Public License.  This exception does + not however invalidate any other reasons why the executable file + might be covered by the GNU General Public License. json: linking-exception-2.0-plus.json - yml: linking-exception-2.0-plus.yml + yaml: linking-exception-2.0-plus.yml html: linking-exception-2.0-plus.html - text: linking-exception-2.0-plus.LICENSE + license: linking-exception-2.0-plus.LICENSE - license_key: linking-exception-2.1-plus + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-linking-exception-2.1-plus other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, if you link the code in this file with + files compiled with a GNU compiler to produce an executable, + that does not cause the resulting executable to be covered by + the GNU Lesser General Public License. This exception does not + however invalidate any other reasons why the executable file + might be covered by the GNU Lesser General Public License. + This exception applies to code released by its copyright holders + in files containing the exception. json: linking-exception-2.1-plus.json - yml: linking-exception-2.1-plus.yml + yaml: linking-exception-2.1-plus.yml html: linking-exception-2.1-plus.html - text: linking-exception-2.1-plus.LICENSE + license: linking-exception-2.1-plus.LICENSE - license_key: linking-exception-agpl-3.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-linking-exception-agpl-3.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + Additional permission under the GNU Affero GPL version 3 section 7: + + If you modify this Program, or any covered work, by linking or + combining it with other code, such other code is not for that reason + alone subject to any of the requirements of the GNU Affero GPL + version 3. json: linking-exception-agpl-3.0.json - yml: linking-exception-agpl-3.0.yml + yaml: linking-exception-agpl-3.0.yml html: linking-exception-agpl-3.0.html - text: linking-exception-agpl-3.0.LICENSE + license: linking-exception-agpl-3.0.LICENSE - license_key: linking-exception-lgpl-2.0-plus + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-linking-exception-lgpl-2.0plus other_spdx_license_keys: - LicenseRef-scancode-linking-exception-lgpl-2.0-plus is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, the copyright holders of this library give + you permission to link this library with independent modules to + produce an executable, regardless of the license terms of these + independent modules, and to copy and distribute the resulting + executable under terms of your choice, provided that you also meet, + for each linked independent module, the terms and conditions of the + license of that module. An independent module is a module which is + not derived from or based on this library. If you modify this library, + you may extend this exception to your version of the library, but + you are not obligated to do so. If you do not wish to do so, delete + this exception statement from your version. json: linking-exception-lgpl-2.0-plus.json - yml: linking-exception-lgpl-2.0-plus.yml + yaml: linking-exception-lgpl-2.0-plus.yml html: linking-exception-lgpl-2.0-plus.html - text: linking-exception-lgpl-2.0-plus.LICENSE + license: linking-exception-lgpl-2.0-plus.LICENSE - license_key: linking-exception-lgpl-3.0 + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + As a special exception to the GNU Lesser General Public License version 3 + ("LGPL3"), the copyright holders of this Library give you permission to convey + to a third party a Combined Work that links statically or dynamically to this + Library without providing any Minimal Corresponding Source or Minimal + Application Code as set out in 4d or providing the installation information set + out in section 4e, provided that you comply with the other provisions of LGPL3 + and provided that you meet, for the Application the terms and conditions of the + license(s) which apply to the Application. + + Except as stated in this special exception, the provisions of LGPL3 will + continue to comply in full to this Library. If you modify this Library, you may + apply this exception to your version of this Library, but you are not obliged to + do so. If you do not wish to do so, delete this exception statement from your + version. This exception does not (and cannot) modify any license terms which + apply to the Application, with which you must still comply. json: linking-exception-lgpl-3.0.json - yml: linking-exception-lgpl-3.0.yml + yaml: linking-exception-lgpl-3.0.yml html: linking-exception-lgpl-3.0.html - text: linking-exception-lgpl-3.0.LICENSE + license: linking-exception-lgpl-3.0.LICENSE - license_key: linotype-eula + category: Commercial spdx_license_key: LicenseRef-scancode-linotype-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "License Agreement for Font Software - Linotype EULA \n\nPreamble: \nThis license agreement\ + \ for Font Software becomes a legally binding contract between the licensee and Linotype\ + \ GmbH when the licensee agrees to the Terms of Condition in an electronic delivery method\ + \ or purchases the Font Software on a storage medium and opens the packaging containing\ + \ the typefaces. \nIf the licensee refuses to accept a contractual obligation through this\ + \ license agreement, he is not permitted to access, use or download the Font Software. The\ + \ licensee should thoroughly and carefully read through the complete license agreement before\ + \ agreeing to the conditions specified here. \n\n\nArticle 1 - License and Usage Rights\ + \ \n\n1.1 The Font Software underlying this contractual agreement is the intellectual property\ + \ of Linotype GmbH. \nThe term \"Font Software\" includes any and all updates, upgrades,\ + \ expansions, modified versions and working copies of the Font Software to which the licensee,\ + \ i.e. a natural person and legal person or, within the scope of a legal person, a subsidiary\ + \ with majority share, has accordingly been granted a license. The Font Software remains\ + \ and shall remain, now and in the future, the property of Linotype GmbH. \n\n1.2 Upon full\ + \ payment of the agreed-upon usage fee, Linotype GmbH grants the licensee the non-exclusive,\ + \ non-transferable right to simultaneously use or store the Font Software - provided said\ + \ software has been released at time of delivery or upon payment made by the licensee -\ + \ on a maximum of five (5) computers (workstations) at one single geographical location\ + \ stipulated by the licensee and, if the Font Software is in the Embedded OpenType (EOT)\ + \ format, use on no more than one (1) Non-Commercial Website. \n\"Non-Commercial Website\"\ + \ shall mean a collection of web pages, images, videos or other digital assets that are\ + \ hosted on one or more web servers, accessed from a common root Uniform Resource Identifier\ + \ (URI) that includes a link to the Font Software (solely if such Font Software is in the\ + \ EOT format) as a font resource for such Non-Commercial Website, but (1) which is only\ + \ used for Personal or Internal Business Use for non-commercial purposes, (2) which contains\ + \ domain locking or access control (or a similar mechanism) that prevents the unauthorized\ + \ use of the Font Software by linking to it from other websites or web domains, and (3)\ + \ which only allows visitors to such Non-Commercial Website to view and print (and not edit,\ + \ alter, enhance or modify) any page contained at such Non-Commercial Website or any document\ + \ located at such Non-Commercial Website. \"Personal or Internal Business Use\" shall mean\ + \ use of the Font Software for your customary personal or internal business purposes and\ + \ shall not mean any distribution whatsoever of the Font Software or any component or derivative\ + \ work thereof. \"Personal or Internal Business Use\" shall include (i) use, if the Font\ + \ Software is in the EOT format, of the Font Software on a server that is permitted by this\ + \ article 1 for a Non-Commercial Website and (ii) use of the Font Software within your Licensed\ + \ Unit by persons that are members of your immediate household, your authorized employees,\ + \ or your authorized agents. All such household members, employees and agents shall be notified\ + \ by you as to the terms and conditions of the Agreement and shall agree to be bound by\ + \ it before they can use the Font Software. \nIn the event that extensions to the above-mentioned\ + \ restriction become necessary, the licensee has to purchase an extended license (see form\ + \ \"Request for Additional Extended Licensing and Services\"). \nThe licensee may install\ + \ the Font Software on a single file server for Use on a single local area network (LAN)\ + \ only when the Use of such Font Software is limited to the Workstations and printers that\ + \ are part of the licensed Unit of which the server is part. \nFor the purpose of determining\ + \ the proper number of Workstations for which a license is needed, the following example\ + \ is supplied for illustration purposes only: If there are 100 Workstations connected to\ + \ the server, with no more than 15 Workstations either using this Font Software currently,\ + \ but the Font Software will be used on 25 different Workstations at various points in time,\ + \ a site license must be obtained creating a licensed unit for 25 workstations. \nThe Font\ + \ Software may not be installed or used on a server that can be accessed via the Internet\ + \ or other external network system (a system other than a LAN) by Workstations, which are\ + \ not part of a licensed Unit unless the Font Software is in the EOT format and then such\ + \ installation must be in compliance with the other terms of this Agreement. Fonts used\ + \ with a server based application require a License Extension for Servers. \nIf the Font\ + \ Software is intended to be used for commercial purposes, each individual license permits\ + \ one additional usage (installation) on a personal home or portable computer. \nFor the\ + \ exclusive purpose of data backup, additional backup copies of the Font Software can be\ + \ made. \n\n1.3 Transferring the license to a third party is essentially not permitted.\ + \ By way of exception, the licensee is authorized to transfer the usage rights and license\ + \ to a third party only upon compliance with all of the following conditions (see form \"\ + Font Software Transfer Deed\"): \nThe third party has expressly declared to the licensee\ + \ to strictly and unrestrictedly submit and adhere to the conditions of this license agreement\ + \ for Font Software. In the event of transfer of the license to a third party, the licensee\ + \ agrees and is obligated to refrain from further usage of the Font Software, and, regardless\ + \ of where it is located, agrees and is obligated to delete said software and is not permitted\ + \ to retain any copies, in whole or in part, of such. \n\n1.4 For the exclusive purpose\ + \ of outputting certain files, the licensee is permitted to transfer a copy of the Font\ + \ Software which is used for creating the pertinent file to a commercial printer or another\ + \ service company. In the event of any text modification, the service company is required\ + \ to possess its own license. The licensee has to inform the commercial printer / service\ + \ company about the content of this License Agreement. \n\n1.5 Embedding of the Font Software\ + \ into electronic documents or Internet pages is only permitted under the absolute assurance\ + \ that the recipient cannot use the Font Software to edit or create a new document (read-only).\ + \ It must be ensured that the Font Software cannot be fully or partially extracted from\ + \ said documents. \n\n1.6 The licensee may electronically distribute Font Software embedded\ + \ in a document for Personal or Internal Business Use only when the Font Software embedded\ + \ in such document is in a static graphic image (for example, a \"gif\") or an embedded\ + \ electronic document, and is distributed in a secure format that permits only the viewing\ + \ and printing (and not the editing, altering, enhancing, or modifying) of such static graphic\ + \ image or embedded document. \nThe licensee may not embed Font Software in a Commercial\ + \ Product without a separate written license from Linotype GmbH, and the licensee may not\ + \ embed Font Software in an electronic document or data file for any reason other than his\ + \ own Personal or Internal Business Use. \n\n1.7 If the licensee intends to edit or modify\ + \ a document containing the embedded Font Software, a request must be made to Linotype GmbH.\ + \ Linotype GmbH or an authorized sales and distribution partner will then conclude a License\ + \ Extension for Font Embedding. This License Extension for Font Embedding is subject to\ + \ an additional fee. \n\n\nArticle 2 - Exclusion of Other Usage \n\n2.1 Subject to the provisions\ + \ in subsections 1.3 and 1.4 of this agreement, selling, lending or otherwise transferring\ + \ the Font Software to a third party or parties is strictly prohibited. In addition, transferring\ + \ the Font Software as a component or sub-component of other products, e.g., electronic\ + \ documents or sublicenses, to a third party or parties is also strictly prohibited. \n\n\ + 2.2 Subject to the provisions in subsections 2.3 and 2.4 of this agreement, the following\ + \ is prohibited: modifying the Font Software, merging it with other software programs, decompiling\ + \ it, using modules from said software for one's own developments or using technical solutions\ + \ contained in the Font Software for purposes other than operation on the licensee's own\ + \ computers. \n\n2.3 Exceptions to subsection 2.2 are only permitted provided they are essential\ + \ to obtaining the necessary information for establishing interoperability of the software\ + \ with other programs, and provided this information is neither published nor accessible\ + \ in any other form and if the licensee is unable to obtain said information from Linotype\ + \ GmbH or its authorized distributors or appointed agents. In this case, the licensee shall\ + \ inform Linotype GmbH in writing as to which portions of the software the licensee is decompiling.\ + \ \n\n2.4 Except with respect to the conversion of the Font Software into the EOT format\ + \ if Font Software is intended to be installed as a font resource on a Non-Commercial Website\ + \ and only if such use is in compliance with the other terms of this Agreement, modifying\ + \ the Font Software is prohibited, even in the event that it is necessary for fulfilling\ + \ personal design requirements. If the licensee wants to make modifications other than an\ + \ allowed conversion to EOT, consent and permission has to be obtained from Linotype GmbH.\ + \ Non-compliance with this provision voids any and all support rights and warranties granted\ + \ by Linotype GmbH and represents a violation and breach of this license agreement. \nFurthermore,\ + \ if the licensee or a third party or parties effect modifications to the Font Software\ + \ despite the prohibition against such modifications, Linotype GmbH becomes the owner of\ + \ that modified data. \nSpecifically, it is prohibited to change or modify the Font/Trademark\ + \ names used as identifying tags in the Font Software in any form or manner. If such changes\ + \ or modifications become necessary, prior written consent has to be obtained from Linotype\ + \ GmbH. \n\n\nArticle 3 - Warranty and Liability \n\n3.1 Upon receipt of the Font Software\ + \ by the licensee, Linotype GmbH grants a 90-day warranty guaranteeing that the Font Software\ + \ is essentially free from material defect in accordance with the documentation. To make\ + \ a warranty claim, the licensee has to return the Font Software, including a copy of the\ + \ sales receipt within the 90-day warranty period to the sales and distribution partner\ + \ from which the licensee obtained it. If the Font Software is not essentially free from\ + \ material defect in accordance with the documentation, the entire and exclusive liability\ + \ and remedy shall be limited to either, at Linotype GmbH's option, the replacement of the\ + \ Software or the refund of the license fee that the licensee paid for the Software. Linotype\ + \ GmbH and its authorized Linotype partner do not and cannot warrant the performance or\ + \ results the licensee may obtain by using the Font Software or documentation. The foregoing\ + \ states the sole and exclusive remedies for Linotype GmbH's or its suppliers' breach of\ + \ warranty. Except for the foregoing limited warranty, Linotype GmbH, its authorized Linotype\ + \ partner, and its suppliers make no warranties, express or implied, as to non-infringement\ + \ of third party rights, merchantability, or fitness for any particular purpose. In no event\ + \ will Linotype GmbH, its authorized Linotype partner, or its suppliers be liable to the\ + \ licensee for any consequential, incidental or special damages, including without limitations\ + \ any lost profits, lost data, lost business opportunities or lost savings, even if Linotype\ + \ GmbH has been advised of the possibility of such damages, or for any claim against the\ + \ licensee by any third party seeking such damages even if Linotype GmbH has been advised\ + \ of the possibility of such damages. \nSome states or jurisdictions do not allow the exclusions\ + \ of limitations of incidental, consequential or special damages, so the above exclusion\ + \ may not apply to the licensee. Also, some states or jurisdictions do not allow the exclusions\ + \ of implied warranties or limitations on how long an implied warranty may last, so the\ + \ above limitations may not apply to the licensee. To the extent permitted by law, any implied\ + \ warranties are limited to ninety (90) days. \nSome jurisdictions do not permit a limitation\ + \ of implied warranties where the product results in injury or death so that such limitations\ + \ may not apply to the licensee. In those jurisdictions, the licensee agrees that Linotype\ + \ GmbH's or its authorized Linotype partner or suppliers' liability for such injury or death\ + \ shall not exceed One Hundred Thousand Euro (€ 100,000), provided that such jurisdictions\ + \ permit a limitation of such liability. This warranty gives the licensee specific legal\ + \ rights. The licensee may have other rights that vary from state to state or jurisdiction\ + \ to jurisdiction. For further warranty information, the licensee should contact the authorized\ + \ Linotype partners from which he received the Font Software and documentation. \n\n3.2\ + \ The licensee agrees that the Font Software and documentation, and all copies thereof,\ + \ are owned by Linotype GmbH; and its design, structure, organization and encoding are valuable\ + \ property of Linotype GmbH and/or its suppliers. The licensee agrees that the Font Software\ + \ and documentation are protected by German trademark and design patent laws, by the copyright\ + \ and trademark laws of other countries, and by international treaties. In addition, the\ + \ licensee agrees to treat the Font Software and documentation in the same manner corresponding\ + \ to other copyrighted and trademark-protected products, e.g., books. With the exception\ + \ of the points explicitly mentioned here, copying the Font Software and documentation is\ + \ not permitted. Any and all copies that the licensee is permitted to produce on the basis\ + \ of this agreement have to have to contain the same copyright, trademark and other property\ + \ clauses as those on or contained in the Font Software and documentation. The licensee\ + \ declares not to modify, adapt or translate the encoding of the Font Software, nor reproduce,\ + \ decompile, disassemble, change, modify or otherwise attempt to reveal the source code\ + \ of the Font Software. The licensee also agrees to use the Trademarks that are connected\ + \ to the Font Software, accordingly to accept usage of the Trademarks (including the identification\ + \ of the owner of the respective Trademark). Trademarks can be used solely for the purpose\ + \ of identifying printed data from the Font Software. \nThe licensee is also aware that\ + \ software is never completely error-free and that the Font Software may therefore contain\ + \ errors, which can affect functionality and operation. \n\n3.3 Claims exceeding the preceding\ + \ warranty claims, e.g., compensation for idle time, loss of production, waste of material\ + \ and other indirect damage, are explicitly excluded, provided said damage was not willfully\ + \ or intentionally brought about or caused by gross negligence on the part of Linotype GmbH.\ + \ Liability is not assumed insofar as the damage does not stem from a grossly negligent\ + \ breach of duty by Linotype GmbH or is not caused by a willful, intentional or grossly\ + \ negligent breach of duty on the part of one of Linotype GmbH's legal representatives or\ + \ vicarious agents. \n\n\nArticle 4 - Termination of License Agreement \n\n4.1 The license\ + \ and usage right guaranteed under subsection 1.2 shall become immediately null and void\ + \ in the event of a breach of this contract. \n\n4.2 If the licensee or one of the licensee's\ + \ employees breaches the agreed-upon license and right of use and/or property rights of\ + \ Linotype GmbH, Linotype GmbH has the right to terminate the license and right of use,\ + \ with termination taking immediate effect. Linotype GmbH reserves the explicit right to\ + \ assert any further claims (specifically information, compensation for damages, etc.).\ + \ \n\n4.3 In the event of termination, the licensee is obligated to delete and return to\ + \ Linotype GmbH the original Font Software affected by and pertaining to the termination,\ + \ including documentation and all copies. \nAt the request of Linotype GmbH, the licensee\ + \ is obligated to provide written assurance that said deletion has occurred. \n\n\nArticle\ + \ 5 - Confidentiality Obligation \n\n5.1 The licensee is obligated to undertake all necessary\ + \ steps to prevent unauthorized access to the Font Software and to any copies of such. \n\ + \n5.2 If the licensee grants his or her employees or representatives access to the Font\ + \ Software, the licensee has to specifically inform them of the content and conditions of\ + \ the license provisions for the relevant Font Software and put said employees or representatives\ + \ under the obligation of compliance with those provisions and conditions. \n\n\nArticle\ + \ 6 - Final Provisions \n\n6.1 This contract, including its attachments, which are a component\ + \ of this contract, represents an agreement between the parties. Verbal collateral agreements\ + \ do not exist. Any verbal agreements are only binding for Linotype GmbH if said verbal\ + \ agreements have been acknowledged and confirmed in writing by Linotype GmbH. \n\n6.2 Changes\ + \ to this contract require written form. This also applies to changes to this written form\ + \ clause. \n\n6.3 Any and all disputes arising from, or in connection with, this contract\ + \ as well as any dispute over the materialization of this contract are exclusively subject\ + \ to the law of the Federal Republic of Germany. The rights and obligations of the parties\ + \ arising from this contract are based on German law, even in the event that the exertion\ + \ or breach of contractual rights takes place in a foreign country. Place of jurisdiction\ + \ is Frankfurt/Main, Germany. \n\n6.4 The invalidity or inoperativeness of one or more provisions\ + \ of this contract does not affect the validity of the rest of the contract and the remaining\ + \ other provisions shall thereby remain unaffected. An invalid provision shall be replaced\ + \ by a provision that is permitted by law and which approaches the invalid provision and\ + \ economic interests intended by the parties. \n\n6.5 This agreement is not governed by\ + \ the \"United Nation Convention on Contracts for the International Sale of Goods (CISG)\"\ + . \n\n\nVersion 05/2009" json: linotype-eula.json - yml: linotype-eula.yml + yaml: linotype-eula.yml html: linotype-eula.html - text: linotype-eula.LICENSE + license: linotype-eula.LICENSE - license_key: linum + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + * 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. json: linum.json - yml: linum.yml + yaml: linum.yml html: linum.html - text: linum.LICENSE + license: linum.LICENSE - license_key: linux-device-drivers + category: Permissive spdx_license_key: LicenseRef-scancode-linux-device-drivers other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The source code in this file can be freely used, adapted, + and redistributed in source or binary form, so long as an + acknowledgment appears in derived source files. The citation + should list that the code comes from the book ""Linux Device + Drivers"" by Alessandro Rubini and Jonathan Corbet, published + by O'Reilly & Associates. No warranty is attached; + we cannot take responsibility for errors or fitness for use. json: linux-device-drivers.json - yml: linux-device-drivers.yml + yaml: linux-device-drivers.yml html: linux-device-drivers.html - text: linux-device-drivers.LICENSE + license: linux-device-drivers.LICENSE - license_key: linux-openib + category: Permissive spdx_license_key: Linux-OpenIB other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. json: linux-openib.json - yml: linux-openib.yml + yaml: linux-openib.yml html: linux-openib.html - text: linux-openib.LICENSE + license: linux-openib.LICENSE - license_key: linux-syscall-exception-gpl + category: Copyleft Limited spdx_license_key: Linux-syscall-note other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + NOTE! This copyright does *not* cover user programs that use kernel + services by normal system calls - this is merely considered normal use + of the kernel, and does *not* fall under the heading of "derived work". + Also note that the GPL below is copyrighted by the Free Software + Foundation, but the instance of code that it refers to (the Linux + kernel) is copyrighted by me and others who actually wrote it. + + Also note that the only valid version of the GPL as far as the kernel + is concerned is _this_ particular version of the license (ie v2, not + v2.2 or v3.x or whatever), unless explicitly otherwise stated. + + Linus Torvalds json: linux-syscall-exception-gpl.json - yml: linux-syscall-exception-gpl.yml + yaml: linux-syscall-exception-gpl.yml html: linux-syscall-exception-gpl.html - text: linux-syscall-exception-gpl.LICENSE + license: linux-syscall-exception-gpl.LICENSE - license_key: linuxbios + category: Permissive spdx_license_key: LicenseRef-scancode-linuxbios other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This software and ancillary information (herein called SOFTWARE) + called LinuxBIOS is made available under the terms described here. + + The SOFTWARE has been approved for release with associated + LA-CC Number 00-34. Unless otherwise indicated, this SOFTWARE has + been authored by an employee or employees of the University of + California, operator of the Los Alamos National Laboratory under + Contract No. W-7405-ENG-36 with the U.S. Department of Energy. + + The U.S. Government has rights to use, reproduce, and distribute this + SOFTWARE. The public may copy, distribute, prepare derivative works + and publicly display this SOFTWARE without charge, provided that this + Notice and any statement of authorship are reproduced on all copies. + + Neither the Government nor the University makes any warranty, express + or implied, or assumes any liability or responsibility for the use of + this SOFTWARE. If SOFTWARE is modified to produce derivative works, + such modified SOFTWARE should be clearly marked, so as not to confuse + it with the version available from LANL. json: linuxbios.json - yml: linuxbios.yml + yaml: linuxbios.yml html: linuxbios.html - text: linuxbios.LICENSE + license: linuxbios.LICENSE - license_key: linuxhowtos + category: Permissive spdx_license_key: LicenseRef-scancode-linuxhowtos other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + All howtos and documents on this site are provided "AS IS," with no + express or implied warranties. Use the information on this site at your + own risk. + + Linux is a registered trademark of Linus Torvalds. Other company, + product, and service names may be trademarks or service marks of others. json: linuxhowtos.json - yml: linuxhowtos.yml + yaml: linuxhowtos.yml html: linuxhowtos.html - text: linuxhowtos.LICENSE + license: linuxhowtos.LICENSE - license_key: llgpl + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-llgpl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + The concept of the GNU Lesser General Public License version 2.1 + ("LGPL") has been adopted to govern the use and distribution of above- + mentioned application. However, the LGPL uses terminology that is more + appropriate for a program written in C than one written in Lisp. + Nevertheless, the LGPL can still be applied to a Lisp program if certain + clarifications are made. This document details those clarifications. + Accordingly, the license for the open-source Lisp applications consists + of this document plus the LGPL. Wherever there is a conflict between + this document and the LGPL, this document takes precedence over the + LGPL. + + A "Library" in Lisp is a collection of Lisp functions, data and foreign + modules. The form of the Library can be Lisp source code (for processing + by an interpreter) or object code (usually the result of compilation of + source code or built with some other mechanisms). Foreign modules are + object code in a form that can be linked into a Lisp executable. When we + speak of functions we do so in the most general way to include, in + addition, methods and unnamed functions. Lisp "data" is also a general + term that includes the data structures resulting from defining Lisp + classes. A Lisp application may include the same set of Lisp objects as + does a Library, but this does not mean that the application is + necessarily a "work based on the Library" it contains. + + The Library consists of everything in the distribution file set before + any modifications are made to the files. If any of the functions or + classes in the Library are redefined in other files, then those + redefinitions ARE considered a work based on the Library. If additional + methods are added to generic functions in the Library, those additional + methods are NOT considered a work based on the Library. If Library + classes are subclassed, these subclasses are NOT considered a work based + on the Library. If the Library is modified to explicitly call other + functions that are neither part of Lisp itself nor an available add-on + module to Lisp, then the functions called by the modified Library ARE + considered a work based on the Library. The goal is to ensure that the + Library will compile and run without getting undefined function errors. + + It is permitted to add proprietary source code to the Library, but it + must be done in a way such that the Library will still run without that + proprietary code present. Section 5 of the LGPL distinguishes between + the case of a library being dynamically linked at runtime and one being + statically linked at build time. Section 5 of the LGPL states that the + former results in an executable that is a "work that uses the Library." + Section 5 of the LGPL states that the latter results in one that is a + "derivative of the Library", which is therefore covered by the LGPL. + Since Lisp only offers one choice, which is to link the Library into an + executable at build time, we declare that, for the purpose applying the + LGPL to the Library, an executable that results from linking a "work + that uses the Library" with the Library is considered a "work that uses + the Library" and is therefore NOT covered by the LGPL. + + Because of this declaration, section 6 of LGPL is not applicable to the + Library. However, in connection with each distribution of this + executable, you must also deliver, in accordance with the terms and + conditions of the LGPL, the source code of Library (or your derivative + thereof) that is incorporated into this executable. json: llgpl.json - yml: llgpl.yml + yaml: llgpl.yml html: llgpl.html - text: llgpl.LICENSE + license: llgpl.LICENSE - license_key: llnl + category: Permissive spdx_license_key: LicenseRef-scancode-llnl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Permission to use, copy, modify, and distribute this software for\nany purpose without\ + \ fee is hereby granted, provided that this en-\ntire notice is included in all copies of\ + \ any software which is or\nincludes a copy or modification of this software and in\ + \ all\ncopies of the supporting documentation for such software. \n \ + \ \nThis work was produced at the University\ + \ of California, Lawrence\nLivermore National Laboratory under contract no. W-7405-ENG-48\n\ + between the U.S. Department of Energy and The Regents of the\nUniversity of California\ + \ for the operation of UC LLNL. \n \ + \ \n DISCLAIMER \ + \ \n \nThis software\ + \ was prepared as an account of work sponsored by an\nagency of the United States Government.\ + \ Neither the United States\nGovernment nor the University of California nor any of their\ + \ em-\nployees, makes any warranty, express or implied, or assumes any\nliability or\ + \ responsibility for the accuracy, completeness, or\nusefulness of any information, apparatus,\ + \ product, or process\ndisclosed, or represents that its use would not infringe\n\ + privately-owned rights. Reference herein to any specific commer-\ncial products, process,\ + \ or service by trade name, trademark,\nmanufacturer, or otherwise, does not necessarily\ + \ constitute or\nimply its endorsement, recommendation, or favoring by the United\nStates\ + \ Government or the University of California. The views and\nopinions of authors expressed\ + \ herein do not necessarily state or\nreflect those of the United States Government or \ + \ the University\nof California, and shall not be used for advertising or product\nendorsement\ + \ purposes." json: llnl.json - yml: llnl.yml + yaml: llnl.yml html: llnl.html - text: llnl.LICENSE + license: llnl.LICENSE - license_key: llvm-exception + category: Permissive spdx_license_key: LLVM-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Permissive + text: | + --- LLVM Exceptions to the Apache 2.0 License ---- + + As an exception, if, as a result of your compiling your source code, portions + of this Software are embedded into an Object form of such source code, you + may redistribute such embedded portions in such Object form without complying + with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + + In addition, if you combine or link compiled forms of this Software with + software that is licensed under the GPLv2 ("Combined Software") and if a + court of competent jurisdiction determines that the patent provision (Section + 3), the indemnity provision (Section 9) or other Section of the License + conflicts with the conditions of the GPLv2, you may retroactively and + prospectively choose to deem waived or otherwise exclude such Section(s) of + the License, but only in their entirety and only with respect to the Combined + Software. json: llvm-exception.json - yml: llvm-exception.yml + yaml: llvm-exception.yml html: llvm-exception.html - text: llvm-exception.LICENSE + license: llvm-exception.LICENSE - license_key: lmbench-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-lmbench-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + Distributed under the FSF GPL with additional restriction that results may be published only if + (1) the benchmark is unmodified, and + (2) the version in the sccsid below is included in the report. json: lmbench-exception-2.0.json - yml: lmbench-exception-2.0.yml + yaml: lmbench-exception-2.0.yml html: lmbench-exception-2.0.html - text: lmbench-exception-2.0.LICENSE + license: lmbench-exception-2.0.LICENSE - license_key: logica-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-logica-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Logica Open Source License Version 1.0\nCopyright (c) 1996-2001 Logica Mobile Networks\ + \ Limited, all rights reserved.\n\nLogica Mobile Networks Limited (\"Logica\") is the owner\ + \ of the rights\nin the software programs (\"Software\"). In the following text, the term\n\ + \"you\" or \"your\" refers to you as an individual and/or (as the case may be)\nto the legal\ + \ entity to which the Software has been supplied. \n\nRedistribution and use in source\ + \ and binary forms, with or without\nmodification, are permitted provided all copies and\ + \ partial copies\nmade and/or distributed (in whatever form) and all associated documentation\n\ + and other material must acknowledge Logica's rights by the inclusion\nof the following notice:\n\ + \n\"Copyright (c) 1996-2001 Logica Mobile Networks Limited;\nthis product includes software\ + \ developed by Logica by whom copyright\nand know-how are retained, all rights reserved.\"\ + \ \n\nThe location of such notice shall be such that it is clearly displayed\nand readable\ + \ to any person accessing the Software. \n\n\nAny use, copying or distribution of the Software\ + \ is subject to the following:\n\n* Your rights in respect of the Software are confined\ + \ to the non-exclusive\n and non-assignable license expressed herein. If you breach any\ + \ of these\n term and conditions then your license may be terminated. \n\n* The copyright\ + \ and other intellectual property rights in and in connection\n with the Software are and\ + \ shall remain the exclusive property of Logica\n or its third party licensors. You must\ + \ not remove or alter any copyright\n or other proprietary notice on any of the software.\ + \ \n\n\nTo the extent permitted by law and in the absence of a formal written contract\n\ + between you and Logica the following limitations and exclusions also apply:\n\n* The Software\ + \ is supplied and licensed on an \"as is\" basis without any\n warranty or representation\ + \ from Logica of any kind. \n\n* Conditions, warranties and representations that might\ + \ be attributed\n to Logica or the Software (including, but not limited to, any implied\n\ + \ condition or warranty relating to merchantability, fitness, suitability\n or quality)\ + \ are excluded.\n\n* In no event shall Logica be liable in respect of or in connection\n\ + \ with the supply, licensing, use or distribution of the software in any\n form for any\ + \ direct, special, indirect or consequential loss or damages\n or for any loss of use,\ + \ loss of data or of profits or for any business\n interruption or loss of goodwill. \n\ + \n* Logica shall have no obligation to fix any defect or deficiency\n in the Software and\ + \ Logica shall have no liability for any consequences\n (direct or consequential) that\ + \ may arise from any such defect or deficiency.\n\n* Logica's maximum liability (if any)\ + \ in relation to the licensing,\n provision and/or performance of the Software shall not\ + \ exceed the price\n you paid to secure your license.\n\nThe laws of Ireland shall apply\ + \ to these terms and conditions and shall\ngovern every aspect of the supply and licensing\ + \ of the Software." json: logica-1.0.json - yml: logica-1.0.yml + yaml: logica-1.0.yml html: logica-1.0.html - text: logica-1.0.LICENSE + license: logica-1.0.LICENSE - license_key: lontium-linux-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-lontium-linux-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Lontium Semiconductor Corp. grants permission to use and redistribute aforementioned firmware file for the use with devices containing Lontium chipsets, but not as part of the Linux kernel or in any other form which would require the file itself to be covered by the terms of the GNU General Public License or the GNU Lesser General Public License. + + The firmware file is distributed in the hope that it will be useful, but is provided WITHOUT ANY WARRANTY, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. json: lontium-linux-firmware.json - yml: lontium-linux-firmware.yml + yaml: lontium-linux-firmware.yml html: lontium-linux-firmware.html - text: lontium-linux-firmware.LICENSE + license: lontium-linux-firmware.LICENSE - license_key: losla + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-losla other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + LEGO® OPEN SOURCE LICENSE AGREEMENT 1.0 LEGO® MINDSTORMS® NXT FIRMWARE + + This LEGO® Open Source License Agreement is an open source license for the firmware of the LEGO® MINDSTORMS® NXT ATMEL microprocessors. + + IMPORTANT -- READ CAREFULLY: THIS AGREEMENT IS THE SOLE AGREEMENT AND IT ONLY COVERS THE FIRMWARE OF THE LEGO® MINDSTORMS® NXT MICROPROCESSOR AND DOES NOT COVER ANY "SOFTWARE" AS DEFINED IN THE MINDSTORMS® NXT END USER LICENSE AGREEMENT (HEREINAFTER THE " MINDSTORMS® NXT EULA"). + + Section 1. Definitions. "Contributor means each entity that creates or contributes to the creation of Modifications. Contributor Version means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. Covered Code means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. Executable means Covered Code in any form other than Source Code. "Larger Work means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. License means this document. Modifications means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is (a) any addition to or deletion from the contents of a file containing Original Code or previous Modifications, or (b) any new file that contains any part of the Original Code or previous Modifications. "Original Code" means Source Code for the firmware of the LEGO® MINDSTORMS® NXT microprocessors as specified in Exhibit A, and which at the time of it’s release under this License is not already Covered Code governed by this License. Source Code means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. "You (or "Your") means an individual or a legal entity exercising rights under this License or a future version of this License issued under Section 6.1. For legal entities, "You includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. + + Section 2. Source Code License and Larger Works. + + 2.1. LEGO Grant. Subject to the terms and conditions of this Agreement, LEGO grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work. + + 2.2. Contributor Grant. Subject to third party intellectual property claims and to the terms and conditions of this Agreement, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work. + + 2.3. Larger Works. You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. + + Section 3. Distribution Obligations. + + 3.1. Application of License. The Modifications which You create or to which You contribute shall be governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. + + 3.2. Availability of Source Code. Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via a generally accepted mechanism for the electronic transfer of data (hereinafter "Electronic Distribution Mechanism"), to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, such source code must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + + 3.3. Description of Modifications. You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by LEGO and including the name of LEGO® in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. + + 3.4. Intellectual Property Matters. (a) Third Party Claims. If Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled "LEGAL which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. (b) Contributor APIs. If Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. (c) Representations. Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. + + 3.5. Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. + + 3.6. Distribution of Executable Versions. You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You must distribute the Executable version of Covered Code under the terms of this License. + + Section 4. Inability to Comply Due to Statute or Regulation. + + If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. + + Section 5. Exclusions. Notwithstanding anything to the contrary herein, no Software (as defined in the Mindstorms® NXT EULA) shall be released or made available as open source under this License, regardless of how any Covered Code interacts with any Software (as defined in the Mindstorms® NXT EULA). + + Section 6. Versions of the License. + + 6.1. New Versions. LEGO may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. + + 6.2. Effect of New Versions. Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by LEGO. No one other than LEGO has the right to modify the terms applicable to Covered Code created under this License. + + Section 7. Disclaimer of Warranty. + + ALL COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT LEGO OR ITS SUPPLIERS OR LICENSORS OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + THE COVERED CODE HAS BEEN DESIGNED TO BE USED IN THE TOY INDUSTRY ONLY. THEREFORE ITS FUNCTIONALITY IS LIMITED AND CAN BE IMPACTED BY NUMEROUS FACTORS SUCH AS POWER FLUCTUATIONS, HARDWARE MALFUNCTIONS, AND MANY OTHER ITEMS. YOU ACKNOWLEDGE AND AGREE THAT THE COVERED CODE SHOULD NOT BE USED IN ANY APPLICATION WHERE ITS FAILURE TO PROPERLY FUNCTION WOULD CREATE A RISK OF HARM TO PROPERTY OR PERSONS. + + Section 8. Termination. + + 8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. 8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against LEGO or a Contributor (LEGO or Contributor against whom You file such action is referred to as "Participant") alleging that such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. 8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. 8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. + + Section 9. Limitation of Liability. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, LEGO, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, PUNITIVE, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + + Section 10. U.S. Government End Users. + + The Covered Code is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. + + Section 11. Responsibility for Claims. + + As between LEGO and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with LEGO and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + + Section 12. Trademarks. + + This License does not grant, nor shall any provision of this License be construed as granting, any rights or permission to use the trade names, trademarks, service marks, or product names of LEGO. + + Section 13. Governing Law + + To the extent possible under applicable law, this License shall be governed by Danish law and shall be subject to the non-exclusive jurisdiction of the Commercial and Maritime Court of Copenhagen. This License will not be governed by the United Nations Convention of Contracts for the International Sale of Goods, the application of which is hereby expressly excluded. You acknowledge that the export of any Covered Code is governed by the export control laws of the United States of America and other countries. If you are downloading any Covered Code, You represent and warrant that You are not located in or under the control of any country which the export laws and regulations of such country or of the United States prohibit the exportation of the Covered Code. + + Section 14. Miscellaneous. + + This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. + + + EXHIBIT A - LEGO® Open Source License Agreement The contents of this file are subject to the LEGO® Open Source License Agreement Version 1.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://mindstorms.lego.com/Overview/NXTreme.aspx Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. Exhibit A.1 includes a list of the original firmware source files which are included within the LEGO® Open Source License Agreement. LEGO is the owner of the Original Code. Portions created by National Instruments and the original Code is Copyright protected © 2006. All Rights Reserved. json: losla.json - yml: losla.yml + yaml: losla.yml html: losla.html - text: losla.LICENSE + license: losla.LICENSE - license_key: lppl-1.0 + category: Copyleft spdx_license_key: LPPL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "LaTeX Project Public License\n============================\n LPPL Version 1.0 1999-03-01\n\ + \nCopyright 1999 LaTeX3 Project\n Everyone is permitted to copy and distribute verbatim\ + \ copies\n of this license document, but modification is not allowed.\n\nPreamble\n========\n\ + The LaTeX Project Public License (LPPL) is the license under which the\nbase LaTeX distribution\ + \ is distributed. As described below you may use\nthis licence for any software that you\ + \ wish to distribute. \n\nIt may be particularly suitable if your software is TeX related\ + \ (such\nas a LaTeX package file) but it may be used for any software, even if\nit is unrelated\ + \ to TeX.\n\nTo use this license, the files of your distribution should have an\nexplicit\ + \ copyright notice giving your name and the year, together\nwith a reference to this license.\n\ + \nA typical example would be\n\n %% pig.sty\n %% Copyright 2001 M. Y. Name\n\n % This\ + \ program can redistributed and/or modified under the terms\n % of the LaTeX Project Public\ + \ License Distributed from CTAN\n % archives in directory macros/latex/base/lppl.txt;\ + \ either\n % version 1 of the License, or (at your option) any later version.\n\nGiven\ + \ such a notice in the file, the conditions of this document would\napply, with:\n\n`The\ + \ Program' referring to the software `pig.sty' and \n`The Copyright Holder' referring to\ + \ the person `M. Y. Name'.\n\nTo see a real example, see the file legal.txt which carries\ + \ the\ncopyright notice for the base latex distribution.\n\nThis license gives terms under\ + \ which files of The Program may be\ndistributed and modified. Individual files may have\ + \ specific further\nconstraints on modification, but no file should have restrictions on\n\ + distribution other than those specified below. \nThis is to ensure that a distributor wishing\ + \ to distribute a complete\nunmodified copy of The Program need only check the conditions\ + \ in this\nfile, and does not need to check every file in The Program for extra\nrestrictions.\ + \ If you do need to modify the distribution terms of some\nfiles, do not refer to this license,\ + \ instead distribute The Program\nunder a different license. You may use the parts of the\ + \ text of LPPL as\na model for your own license, but your license should not directly refer\n\ + to the LPPL or otherwise give the impression that The Program is\ndistributed under the\ + \ LPPL. \n\n\nThe LaTeX Project Public License\n================================\nTerms\ + \ And Conditions For Copying, Distribution And Modification\n===============================================================\n\ + \n\nWARRANTY\n========\nThere is no warranty for The Program, to the extent permitted by\n\ + applicable law. Except when otherwise stated in writing, The\nCopyright Holder provides\ + \ The Program `as is' without warranty of any\nkind, either expressed or implied, including,\ + \ but not limited to, the\nimplied warranties of merchantability and fitness for a particular\n\ + purpose. The entire risk as to the quality and performance of the\nprogram is with you.\ + \ Should The Program prove defective, you assume\nthe cost of all necessary servicing,\ + \ repair or correction.\n\nIn no event unless required by applicable law or agreed to in\ + \ writing\nwill The Copyright Holder, or any of the individual authors named in\nthe source\ + \ for The Program, be liable to you for damages, including\nany general, special, incidental\ + \ or consequential damages arising out\nof any use of The Program or out of inability to\ + \ use The Program\n(including but not limited to loss of data or data being rendered\ninaccurate\ + \ or losses sustained by you or by third parties as a result\nof a failure of The Program\ + \ to operate with any other programs), even\nif such holder or other party has been advised\ + \ of the possibility of\nsuch damages.\n\n\nDISTRIBUTION\n============\nRedistribution of\ + \ unchanged files is allowed provided that all files\nthat make up the distribution of The\ + \ Program are distributed.\nIn particular this means that The Program has to be distributed\n\ + including its documentation if documentation was part of the original\ndistribution.\n\n\ + The distribution of The Program will contain a prominent file\nlisting all the files covered\ + \ by this license.\n\nIf you receive only some of these files from someone, complain!\n\n\ + The distribution of changed versions of certain files included in the\nThe Program, and\ + \ the reuse of code from The Program, are allowed\nunder the following restrictions:\n\n\ + \ * It is allowed only if the legal notice in the file does not\n expressly forbid it.\n\ + \ See note below, under \"Conditions on individual files\".\n \n * You rename the file\ + \ before you make any changes to it, unless the\n file explicitly says that renaming is\ + \ not required. Any such changed\n files must be distributed under a license that forbids\ + \ distribution\n of those files, and any files derived from them, under the names used\n\ + \ by the original files in the distribution of The Program.\n\n * You change any `identification\ + \ string' in The Program to clearly \n indicate that the file is not part of the standard\ + \ system.\n\n * If The Program includes an `error report address' so that errors\n may\ + \ be reported to The Copyright Holder, or other specified\n addresses, this address must\ + \ be changed in any modified versions of\n The Program, so that reports for files not\ + \ maintained by the\n original program maintainers are directed to the maintainers of\ + \ the\n changed files. \n\n * You acknowledge the source and authorship of the original\ + \ version\n in the modified file.\n\n * You also distribute the unmodified version of\ + \ the file or\n alternatively provide sufficient information so that the\n user of your\ + \ modified file can be reasonably expected to be\n able to obtain an original, unmodified\ + \ copy of The Program.\n For example, you may specify a URL to a site that you expect\n\ + \ will freely provide the user with a copy of The Program (either\n the version on which\ + \ your modification is based, or perhaps a\n later version).\n\n * If The Program is intended\ + \ to be used with, or is based on, LaTeX,\n then files with the following file extensions\ + \ which have special\n meaning in LaTeX Software, have special modification rules under\ + \ the\n license:\n \n - Files with extension `.ins' (installation files): these files\ + \ may\n not be modified at all because they contain the legal notices\n that are\ + \ placed in the generated files.\n \n - Files with extension `.fd' (LaTeX font definitions\ + \ files): these\n files are allowed to be modified without changing the name, but\n\ + \ only to enable use of all available fonts and to prevent attempts\n to access\ + \ unavailable fonts. However, modified files are not\n allowed to be distributed in\ + \ place of original files.\n \n - Files with extension `.cfg' (configuration files):\ + \ these files\n can be created or modified to enable easy configuration of the\n \ + \ system. The documentation in cfgguide.tex in the base LaTeX\n distribution describes\ + \ when it makes sense to modify or generate\n such files.\n \n\nThe above restrictions\ + \ are not intended to prohibit, and hence do\nnot apply to, the updating, by any method,\ + \ of a file so that it\nbecomes identical to the latest version of that file in The Program.\n\ + \n========================================================================\n\nNOTES\n=====\n\ + We believe that these requirements give you the freedom you to make\nmodifications that\ + \ conform with whatever technical specifications you\nwish, whilst maintaining the availability,\ + \ integrity and reliability of\nThe Program. If you do not see how to achieve your goal\ + \ whilst\nadhering to these requirements then read the document cfgguide.tex\nin the base\ + \ LaTeX distribution for suggestions. \n\nBecause of the portability and exchangeability\ + \ aspects of systems\nlike LaTeX, The LaTeX3 Project deprecates the distribution of\nnon-standard\ + \ versions of components of LaTeX or of generally available\ncontributed code for them but\ + \ such distributions are permitted under the\nabove restrictions.\n\nThe document modguide.tex\ + \ in the base LaTeX distribution details\nthe reasons for the legal requirements detailed\ + \ above.\nEven if The Program is unrelated to LaTeX, the argument in\nmodguide.tex may still\ + \ apply, and should be read before\na modified version of The Program is distributed.\n\n\ + \nConditions on individual files\n==============================\nThe individual files may\ + \ bear additional conditions which supersede\nthe general conditions on distribution and\ + \ modification contained in\nthis file. If there are any such files, the distribution of\ + \ The\nProgram will contain a prominent file that lists all the exceptional\nfiles.\n\n\ + Typical examples of files with more restrictive modification\nconditions would be files\ + \ that contain the text of copyright notices.\n\n * The conditions on individual files differ\ + \ only in the\n extent of *modification* that is allowed.\n\n * The conditions on *distribution*\ + \ are the same for all the files.\n Thus a (re)distributor of a complete, unchanged copy\ + \ of The Program\n need meet only the conditions in this file; it is not necessary to\n\ + \ check the header of every file in the distribution to check that a\n distribution\ + \ meets these requirements." json: lppl-1.0.json - yml: lppl-1.0.yml + yaml: lppl-1.0.yml html: lppl-1.0.html - text: lppl-1.0.LICENSE + license: lppl-1.0.LICENSE - license_key: lppl-1.1 + category: Copyleft spdx_license_key: LPPL-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "The LaTeX Project Public License\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\nLPPL Version 1.1\ + \ 1999-07-10\n\nCopyright 1999 LaTeX3 Project\n Everyone is allowed to distribute verbatim\ + \ copies of this\n license document, but modification of it is not allowed.\n\n\nPREAMBLE\n\ + ========\nThe LaTeX Project Public License (LPPL) is the license under which the\nbase LaTeX\ + \ distribution is distributed.\n\nYou may use this license for any program that you have\ + \ written and wish\nto distribute. This license may be particularly suitable if your\n\ + program is TeX-related (such as a LaTeX package), but you may use it\neven if your program\ + \ is unrelated to TeX. The section `WHETHER AND HOW\nTO DISTRIBUTE PROGRAMS UNDER THIS\ + \ LICENSE', below, gives instructions,\nexamples, and recommendations for authors who are\ + \ considering\ndistributing their programs under this license.\n\nIn this license document,\ + \ `The Program' refers to any program\ndistributed under this license.\n\nThis license gives\ + \ conditions under which The Program may be distributed\nand conditions under which modified\ + \ versions of The Program may be\ndistributed. Individual files of The Program may bear\ + \ supplementary\nand/or superseding conditions on modification of themselves and on the\n\ + distribution of modified versions of themselves, but *no* file of The\nProgram may bear\ + \ supplementary or superseding conditions on the\ndistribution of an unmodified copy of\ + \ the file. A distributor wishing\nto distribute a complete, unmodified copy of The Program\ + \ therefore\nneeds to check the conditions only in this license and nowhere else.\n\nActivities\ + \ other than distribution and/or modification of The Program\nare not covered by this license;\ + \ they are outside its scope. In\nparticular, the act of running The Program is not restricted.\n\ + \nWe, the LaTeX3 Project, believe that the conditions below give you\nthe freedom to make\ + \ and distribute modified versions of The Program\nthat conform with whatever technical\ + \ specifications you wish while\nmaintaining the availability, integrity, and reliability\ + \ of\nThe Program. If you do not see how to achieve your goal while \nmeeting these conditions,\ + \ then read the document `cfgguide.tex'\nin the base LaTeX distribution for suggestions.\n\ + \n\nCONDITIONS ON DISTRIBUTION AND MODIFICATION\n===========================================\n\ + You may distribute a complete, unmodified copy of The Program.\nDistribution of only part\ + \ of The Program is not allowed.\n\nYou may not modify in any way a file of The Program\ + \ that bears a legal\nnotice forbidding modification of that file.\n\nYou may distribute\ + \ a modified file of The Program if, and only if, the\nfollowing eight conditions are met:\n\ + \n 1. You must meet any additional conditions borne by the file on the\n distribution\ + \ of a modified version of the file as described below\n in the subsection `Additional\ + \ Conditions on Individual Files of\n The Program'.\n \n 2. If the file is a LaTeX\ + \ software file, then you must meet any\n applicable additional conditions on the distribution\ + \ of a modified\n version of the file that are described below in the subsection\n \ + \ `Additional Conditions on LaTeX Software Files'.\n \n 3. You must not distribute the\ + \ modified file with the filename of the\n original file.\n \n 4. In the modified file,\ + \ you must acknowledge the authorship and\n name of the original file, and the name\ + \ (if any) of the program\n which contains it.\n \n 5. You must change any identification\ + \ string in the file to indicate\n clearly that the modified file is not part of The\ + \ Program.\n \n 6. You must change any addresses in the modified file for the\n reporting\ + \ of errors in the file or in The Program generally to\n ensure that reports for files\ + \ no longer maintained by the original\n maintainers will be directed to the maintainers\ + \ of the modified\n files.\n \n 7. You must distribute the modified file under a license\ + \ that forbids\n distribution both of the modified file and of any files derived\n \ + \ from the modified file with the filename of the original file.\n \n 8. You must do\ + \ either (A) or (B):\n\n (A) distribute a copy of The Program (that is, a complete,\n\ + \ unmodified copy of The Program) together with the modified\n file;\ + \ if your distribution of the modified file is made by\n offering access to copy\ + \ the modified file from a designated\n place, then offering equivalent access\ + \ to copy The Program\n from the same place meets this condition, even though\ + \ third\n parties are not compelled to copy The Program along with the\n \ + \ modified file;\n\n (B) provide to those who receive the modified file information\n\ + \ that is sufficient for them to obtain a copy of The Program;\n for\ + \ example, you may provide a Uniform Resource Locator (URL)\n for a site that\ + \ you expect will provide them with a copy of \n The Program free of charge (either\ + \ the version from which\n your modification is derived, or perhaps a later version).\n\ + \nNote that in the above, `distribution' of a file means making the\nfile available to others\ + \ by any means. This includes, for instance,\ninstalling the file on any machine in such\ + \ a way that the file is\naccessible by users other than yourself. `Modification' of a\ + \ file\nmeans any procedure that produces a derivative file under any\napplicable law --\ + \ that is, a file containing the original file or\na significant portion of it, either verbatim\ + \ or with modifications\nand/or translated into another language.\n\nChanging the name of\ + \ a file is considered to be a modification of\nthe file.\n\nThe distribution conditions\ + \ in this license do not have to be\napplied to files that have been modified in accordance\ + \ with the\nabove conditions. Note, however, that Condition 7. does apply to\nany such\ + \ modified file.\n\nThe conditions above are not intended to prohibit, and hence do not\n\ + apply to, the updating, by any method, of a file so that it becomes\nidentical to the latest\ + \ version of that file of The Program.\n\n \nA Recommendation on Modification Without Distribution\n\ + -----------------------------------------------------\nIt is wise never to modify a file\ + \ of The Program, even for your own\npersonal use, without also meeting the above eight\ + \ conditions for\ndistributing the modified file. While you might intend that such\nmodified\ + \ files will never be distributed, often this will happen by\naccident -- you may forget\ + \ that you have modified the file; or it may\nnot occur to you when allowing others to access\ + \ the modified file\nthat you are thus distributing it and violating the conditions of\n\ + this license. It is usually in your best interest to keep your copy\nof The Program identical\ + \ with the public one. Many programs provide\nways to control the behavior of that program\ + \ without altering its\nlicensed files.\n\n\nAdditional Conditions on Individual Files of\ + \ The Program\n--------------------------------------------------------\nAn individual file\ + \ of The Program may bear additional conditions that\nsupplement and/or supersede the conditions\ + \ in this license if, and only\nif, such additional conditions exclusively concern modification\ + \ of the\nfile or distribution of a modified version of the file. The conditions\non individual\ + \ files of The Program therefore may differ only with\nrespect to the kind and extent of\ + \ modification of those files that\nis allowed, and with respect to the distribution of\ + \ modified versions\nof those files.\n\n\nAdditional Conditions on LaTeX Software Files\n\ + ---------------------------------------------\nIf a file of The Program is intended to be\ + \ used with LaTeX (that is,\nif it is a LaTeX software file), then the following additional\n\ + conditions, which supplement and/or supersede the conditions\nabove, apply to the file according\ + \ to its filename extension:\n\n - You may not modify any file with filename extension\ + \ `.ins' since\n these are installation files containing the legal notices that are\n\ + \ placed in the files they generate.\n \n - You may distribute modified versions of\ + \ files with filename\n extension `.fd' (LaTeX font definition files) under the standard\n\ + \ conditions of the LPPL as described above. You may also distribute\n such modified\ + \ LaTeX font definition files with their original names\n provided that:\n (1) the\ + \ only changes to the original files either enable use of\n available fonts or prevent\ + \ attempts to access unavailable fonts;\n (2) you also distribute the original, unmodified\ + \ files (TeX input\n paths can be used to control which set of LaTeX font definition\n\ + \ files is actually used by TeX).\n\n - You may distribute modified versions of\ + \ files with filename\n extension `.cfg' (configuration files) with their original names.\n\ + \ The Program may (and usually will) specify the range of commands\n that are allowed\ + \ in a particular configuration file.\n \nBecause of portability and exchangeability issues\ + \ in LaTeX software,\nThe LaTeX3 Project deprecates the distribution of modified versions\ + \ of\ncomponents of LaTeX or of generally available contributed code for them,\nbut such\ + \ distribution can meet the conditions of this license.\n\n\nNO WARRANTY\n===========\n\ + There is no warranty for The Program. Except when otherwise stated in\nwriting, The Copyright\ + \ Holder provides The Program `as is', without\nwarranty of any kind, either expressed or\ + \ implied, including, but not\nlimited to, the implied warranties of merchantability and\ + \ fitness for\na particular purpose. The entire risk as to the quality and performance\n\ + of The Program is with you. Should The Program prove defective, you\nassume the cost of\ + \ all necessary servicing, repair, or correction.\n\nIn no event unless agreed to in writing\ + \ will The Copyright Holder, or\nany author named in the files of The Program, or any other\ + \ party who may\ndistribute and/or modify The Program as permitted below, be liable to\n\ + you for damages, including any general, special, incidental or\nconsequential damages arising\ + \ out of any use of The Program or out of\ninability to use The Program (including, but\ + \ not limited to, loss of\ndata, data being rendered inaccurate, or losses sustained by\ + \ anyone as\na result of any failure of The Program to operate with any other\nprograms),\ + \ even if The Copyright Holder or said author or said other\nparty has been advised of the\ + \ possibility of such damages.\n\n\nWHETHER AND HOW TO DISTRIBUTE PROGRAMS UNDER THIS LICENSE\n\ + =========================================================\nThis section contains important\ + \ instructions, examples, and\nrecommendations for authors who are considering distributing\ + \ their\nprograms under this license. These authors are addressed as `you' in\nthis section.\n\ + \n\nChoosing This License or Another License\n----------------------------------------\n\ + If for any part of your program you want or need to use *distribution*\nconditions that\ + \ differ from those in this license, then do not refer to\nthis license anywhere in your\ + \ program but instead distribute your\nprogram under a different license. You may use the\ + \ text of this license\nas a model for your own license, but your license should not refer\ + \ to\nthe LPPL or otherwise give the impression that your program is\ndistributed under\ + \ the LPPL.\n\nThe document `modguide.tex' in the base LaTeX distribution explains\nthe\ + \ motivation behind the conditions of this license. It explains,\nfor example, why distributing\ + \ LaTeX under the GNU General Public\nLicense (GPL) was considered inappropriate. Even\ + \ if your program is\nunrelated to LaTeX, the discussion in `modguide.tex' may still be\n\ + relevant, and authors intending to distribute their programs under any\nlicense are encouraged\ + \ to read it.\n\n\nHow to Use This License\n-----------------------\nTo use this license,\ + \ place in each of the files of your program both\nan explicit copyright notice including\ + \ your name and the year and also\na statement that the distribution and/or modification\ + \ of the file is\nconstrained by the conditions in this license.\n\nHere is an example of\ + \ such a notice and statement:\n\n %% pig.dtx\n %% Copyright 2001 M. Y. Name\n %\n %\ + \ This program may be distributed and/or modified under the\n % conditions of the LaTeX\ + \ Project Public License, either version 1.1\n % of this license or (at your option) any\ + \ later version.\n % The latest version of this license is in\n % http://www.latex-project.org/lppl.txt\n\ + \ % and version 1.1 or later is part of all distributions of LaTeX \n % version 1999/06/01\ + \ or later.\n %\n % This program consists of the files pig.dtx and pig.ins\n\nGiven such\ + \ a notice and statement in a file, the conditions given in\nthis license document would\ + \ apply, with `The Program' referring to the\ntwo files `pig.dtx' and `pig.ins', and `The\ + \ Copyright Holder' referring\nto the person `M. Y. Name'.\n\n\nImportant Recommendations\n\ + -------------------------\nDefining What Constitutes The Program\n\n The LPPL requires\ + \ that distributions of The Program contain all the\n files of The Program. It is therefore\ + \ important that you provide a\n way for the licensee to determine which files constitute\ + \ The Program.\n This could, for example, be achieved by explicitly listing all the\n\ + \ files of The Program near the copyright notice of each file or by\n using a line like\n\ + \n % This program consists of all files listed in manifest.txt.\n\n in that place.\ + \ In the absence of an unequivocal list it might be\n impossible for the licensee to\ + \ determine what is considered by you\n to comprise The Program.\n\n Noting Exceptional\ + \ Files\n \n If The Program contains any files bearing additional conditions on\n modification,\ + \ or on distribution of modified versions, of those\n files (other than those listed in\ + \ `Additional Conditions on LaTeX\n Software Files'), then it is recommended that The\ + \ Program contain a\n prominent file that defines the exceptional conditions, and either\n\ + \ lists the exceptional files or defines one or more categories of\n exceptional files.\n\ + \n Files containing the text of a license (such as this file) are\n often examples of\ + \ files bearing more restrictive conditions on\n modification. LaTeX configuration files\ + \ (with filename extension\n `.cfg') are examples of files bearing less restrictive conditions\n\ + \ on the distribution of a modified version of the file. The\n additional conditions\ + \ on LaTeX software given above are examples \n of declaring a category of files bearing\ + \ exceptional additional\n conditions." json: lppl-1.1.json - yml: lppl-1.1.yml + yaml: lppl-1.1.yml html: lppl-1.1.html - text: lppl-1.1.LICENSE + license: lppl-1.1.LICENSE - license_key: lppl-1.2 + category: Copyleft spdx_license_key: LPPL-1.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "The LaTeX Project Public License\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\nLPPL Version 1.2\ + \ 1999-09-03\n\nCopyright 1999 LaTeX3 Project\n Everyone is allowed to distribute verbatim\ + \ copies of this\n license document, but modification of it is not allowed.\n\n\nPREAMBLE\n\ + ========\nThe LaTeX Project Public License (LPPL) is the license under which the\nbase LaTeX\ + \ distribution is distributed.\n\nYou may use this license for any program that you have\ + \ written and wish\nto distribute. This license may be particularly suitable if your\n\ + program is TeX-related (such as a LaTeX package), but you may use it\neven if your program\ + \ is unrelated to TeX. The section `WHETHER AND HOW\nTO DISTRIBUTE PROGRAMS UNDER THIS\ + \ LICENSE', below, gives instructions,\nexamples, and recommendations for authors who are\ + \ considering\ndistributing their programs under this license.\n\nIn this license document,\ + \ `The Program' refers to any program\ndistributed under this license.\n\nThis license gives\ + \ conditions under which The Program may be distributed\nand conditions under which modified\ + \ versions of The Program may be\ndistributed. Individual files of The Program may bear\ + \ supplementary\nand/or superseding conditions on modification of themselves and on the\n\ + distribution of modified versions of themselves, but *no* file of The\nProgram may bear\ + \ supplementary or superseding conditions on the\ndistribution of an unmodified copy of\ + \ the file. A distributor wishing\nto distribute a complete, unmodified copy of The Program\ + \ therefore\nneeds to check the conditions only in this license and nowhere else.\n\nActivities\ + \ other than distribution and/or modification of The Program\nare not covered by this license;\ + \ they are outside its scope. In\nparticular, the act of running The Program is not restricted.\n\ + \nWe, the LaTeX3 Project, believe that the conditions below give you\nthe freedom to make\ + \ and distribute modified versions of The Program\nthat conform with whatever technical\ + \ specifications you wish while\nmaintaining the availability, integrity, and reliability\ + \ of\nThe Program. If you do not see how to achieve your goal while \nmeeting these conditions,\ + \ then read the document `cfgguide.tex'\nin the base LaTeX distribution for suggestions.\n\ + \n\nCONDITIONS ON DISTRIBUTION AND MODIFICATION\n===========================================\n\ + You may distribute a complete, unmodified copy of The Program.\nDistribution of only part\ + \ of The Program is not allowed.\n\nYou may not modify in any way a file of The Program\ + \ that bears a legal\nnotice forbidding modification of that file.\n\nYou may distribute\ + \ a modified file of The Program if, and only if, the\nfollowing eight conditions are met:\n\ + \n 1. You must meet any additional conditions borne by the file on the\n distribution\ + \ of a modified version of the file as described below\n in the subsection `Additional\ + \ Conditions on Individual Files of\n The Program'.\n \n 2. If the file is a LaTeX\ + \ software file, then you must meet any\n applicable additional conditions on the distribution\ + \ of a modified\n version of the file that are described below in the subsection\n \ + \ `Additional Conditions on LaTeX Software Files'.\n \n 3. You must not distribute the\ + \ modified file with the filename of the\n original file.\n \n 4. In the modified file,\ + \ you must acknowledge the authorship and\n name of the original file, and the name\ + \ (if any) of the program\n which contains it.\n \n 5. You must change any identification\ + \ string in the file to indicate\n clearly that the modified file is not part of The\ + \ Program.\n \n 6. You must change any addresses in the modified file for the\n reporting\ + \ of errors in the file or in The Program generally to\n ensure that reports for files\ + \ no longer maintained by the original\n maintainers will be directed to the maintainers\ + \ of the modified\n files.\n \n 7. You must distribute the modified file under a license\ + \ that forbids\n distribution both of the modified file and of any files derived\n \ + \ from the modified file with the filename of the original file.\n \n 8. You must do\ + \ either (A) or (B):\n\n (A) distribute a copy of The Program (that is, a complete,\n\ + \ unmodified copy of The Program) together with the modified\n file;\ + \ if your distribution of the modified file is made by\n offering access to copy\ + \ the modified file from a designated\n place, then offering equivalent access\ + \ to copy The Program\n from the same place meets this condition, even though\ + \ third\n parties are not compelled to copy The Program along with the\n \ + \ modified file;\n\n (B) provide to those who receive the modified file information\n\ + \ that is sufficient for them to obtain a copy of The Program;\n for\ + \ example, you may provide a Uniform Resource Locator (URL)\n for a site that\ + \ you expect will provide them with a copy of \n The Program free of charge (either\ + \ the version from which\n your modification is derived, or perhaps a later version).\n\ + \nNote that in the above, `distribution' of a file means making the\nfile available to others\ + \ by any means. This includes, for instance,\ninstalling the file on any machine in such\ + \ a way that the file is\naccessible by users other than yourself. `Modification' of a\ + \ file\nmeans any procedure that produces a derivative file under any\napplicable law --\ + \ that is, a file containing the original file or\na significant portion of it, either verbatim\ + \ or with modifications\nand/or translated into another language.\n\nChanging the name of\ + \ a file (other than as necessitated by the file\nconventions of the target file systems)\ + \ is considered to be a\nmodification of the file.\n\nThe distribution conditions in this\ + \ license do not have to be\napplied to files that have been modified in accordance with\ + \ the\nabove conditions. Note, however, that Condition 7. does apply to\nany such modified\ + \ file.\n\nThe conditions above are not intended to prohibit, and hence do not\napply to,\ + \ the updating, by any method, of a file so that it becomes\nidentical to the latest version\ + \ of that file of The Program.\n\n \nA Recommendation on Modification Without Distribution\n\ + -----------------------------------------------------\nIt is wise never to modify a file\ + \ of The Program, even for your own\npersonal use, without also meeting the above eight\ + \ conditions for\ndistributing the modified file. While you might intend that such\nmodified\ + \ files will never be distributed, often this will happen by\naccident -- you may forget\ + \ that you have modified the file; or it may\nnot occur to you when allowing others to access\ + \ the modified file\nthat you are thus distributing it and violating the conditions of\n\ + this license. It is usually in your best interest to keep your copy\nof The Program identical\ + \ with the public one. Many programs provide\nways to control the behavior of that program\ + \ without altering its\nlicensed files.\n\n\nAdditional Conditions on Individual Files of\ + \ The Program\n--------------------------------------------------------\nAn individual file\ + \ of The Program may bear additional conditions that\nsupplement and/or supersede the conditions\ + \ in this license if, and only\nif, such additional conditions exclusively concern modification\ + \ of the\nfile or distribution of a modified version of the file. The conditions\non individual\ + \ files of The Program therefore may differ only with\nrespect to the kind and extent of\ + \ modification of those files that\nis allowed, and with respect to the distribution of\ + \ modified versions\nof those files.\n\n\nAdditional Conditions on LaTeX Software Files\n\ + ---------------------------------------------\nIf a file of The Program is intended to be\ + \ used with LaTeX (that is,\nif it is a LaTeX software file), then the following additional\n\ + conditions, which supplement and/or supersede the conditions\nabove, apply to the file according\ + \ to its filename extension:\n\n - You may not modify any file with filename extension\ + \ `.ins' since\n these are installation files containing the legal notices that are\n\ + \ placed in the files they generate.\n \n - You may distribute modified versions of\ + \ files with filename\n extension `.fd' (LaTeX font definition files) under the standard\n\ + \ conditions of the LPPL as described above. You may also distribute\n such modified\ + \ LaTeX font definition files with their original names\n provided that:\n (1) the\ + \ only changes to the original files either enable use of\n available fonts or prevent\ + \ attempts to access unavailable fonts;\n (2) you also distribute the original, unmodified\ + \ files (TeX input\n paths can be used to control which set of LaTeX font definition\n\ + \ files is actually used by TeX).\n\n - You may distribute modified versions of\ + \ files with filename\n extension `.cfg' (configuration files) with their original names.\n\ + \ The Program may (and usually will) specify the range of commands\n that are allowed\ + \ in a particular configuration file.\n \nBecause of portability and exchangeability issues\ + \ in LaTeX software,\nThe LaTeX3 Project deprecates the distribution of modified versions\ + \ of\ncomponents of LaTeX or of generally available contributed code for them,\nbut such\ + \ distribution can meet the conditions of this license.\n\n\nNO WARRANTY\n===========\n\ + There is no warranty for The Program. Except when otherwise stated in\nwriting, The Copyright\ + \ Holder provides The Program `as is', without\nwarranty of any kind, either expressed or\ + \ implied, including, but not\nlimited to, the implied warranties of merchantability and\ + \ fitness for\na particular purpose. The entire risk as to the quality and performance\n\ + of The Program is with you. Should The Program prove defective, you\nassume the cost of\ + \ all necessary servicing, repair, or correction.\n\nIn no event unless agreed to in writing\ + \ will The Copyright Holder, or\nany author named in the files of The Program, or any other\ + \ party who may\ndistribute and/or modify The Program as permitted above, be liable to\n\ + you for damages, including any general, special, incidental or\nconsequential damages arising\ + \ out of any use of The Program or out of\ninability to use The Program (including, but\ + \ not limited to, loss of\ndata, data being rendered inaccurate, or losses sustained by\ + \ anyone as\na result of any failure of The Program to operate with any other\nprograms),\ + \ even if The Copyright Holder or said author or said other\nparty has been advised of the\ + \ possibility of such damages.\n\n\nWHETHER AND HOW TO DISTRIBUTE PROGRAMS UNDER THIS LICENSE\n\ + =========================================================\nThis section contains important\ + \ instructions, examples, and\nrecommendations for authors who are considering distributing\ + \ their\nprograms under this license. These authors are addressed as `you' in\nthis section.\n\ + \n\nChoosing This License or Another License\n----------------------------------------\n\ + If for any part of your program you want or need to use *distribution*\nconditions that\ + \ differ from those in this license, then do not refer to\nthis license anywhere in your\ + \ program but instead distribute your\nprogram under a different license. You may use the\ + \ text of this license\nas a model for your own license, but your license should not refer\ + \ to\nthe LPPL or otherwise give the impression that your program is\ndistributed under\ + \ the LPPL.\n\nThe document `modguide.tex' in the base LaTeX distribution explains\nthe\ + \ motivation behind the conditions of this license. It explains,\nfor example, why distributing\ + \ LaTeX under the GNU General Public\nLicense (GPL) was considered inappropriate. Even\ + \ if your program is\nunrelated to LaTeX, the discussion in `modguide.tex' may still be\n\ + relevant, and authors intending to distribute their programs under any\nlicense are encouraged\ + \ to read it.\n\n\nHow to Use This License\n-----------------------\nTo use this license,\ + \ place in each of the files of your program both\nan explicit copyright notice including\ + \ your name and the year and also\na statement that the distribution and/or modification\ + \ of the file is\nconstrained by the conditions in this license.\n\nHere is an example of\ + \ such a notice and statement:\n\n %% pig.dtx\n %% Copyright 2001 M. Y. Name\n %\n %\ + \ This program may be distributed and/or modified under the\n % conditions of the LaTeX\ + \ Project Public License, either version 1.2\n % of this license or (at your option) any\ + \ later version.\n % The latest version of this license is in\n % http://www.latex-project.org/lppl.txt\n\ + \ % and version 1.2 or later is part of all distributions of LaTeX \n % version 1999/12/01\ + \ or later.\n %\n % This program consists of the files pig.dtx and pig.ins\n\nGiven such\ + \ a notice and statement in a file, the conditions given in\nthis license document would\ + \ apply, with `The Program' referring to the\ntwo files `pig.dtx' and `pig.ins', and `The\ + \ Copyright Holder' referring\nto the person `M. Y. Name'.\n\n\nImportant Recommendations\n\ + -------------------------\nDefining What Constitutes The Program\n\n The LPPL requires\ + \ that distributions of The Program contain all the\n files of The Program. It is therefore\ + \ important that you provide a\n way for the licensee to determine which files constitute\ + \ The Program.\n This could, for example, be achieved by explicitly listing all the\n\ + \ files of The Program near the copyright notice of each file or by\n using a line like\n\ + \n % This program consists of all files listed in manifest.txt.\n\n in that place.\ + \ In the absence of an unequivocal list it might be\n impossible for the licensee to\ + \ determine what is considered by you\n to comprise The Program.\n\n Noting Exceptional\ + \ Files\n \n If The Program contains any files bearing additional conditions on\n modification,\ + \ or on distribution of modified versions, of those\n files (other than those listed in\ + \ `Additional Conditions on LaTeX\n Software Files'), then it is recommended that The\ + \ Program contain a\n prominent file that defines the exceptional conditions, and either\n\ + \ lists the exceptional files or defines one or more categories of\n exceptional files.\n\ + \n Files containing the text of a license (such as this file) are\n often examples of\ + \ files bearing more restrictive conditions on\n modification. LaTeX configuration files\ + \ (with filename extension\n `.cfg') are examples of files bearing less restrictive conditions\n\ + \ on the distribution of a modified version of the file. The\n additional conditions\ + \ on LaTeX software given above are examples \n of declaring a category of files bearing\ + \ exceptional additional\n conditions." json: lppl-1.2.json - yml: lppl-1.2.yml + yaml: lppl-1.2.yml html: lppl-1.2.html - text: lppl-1.2.LICENSE + license: lppl-1.2.LICENSE - license_key: lppl-1.3a + category: Copyleft spdx_license_key: LPPL-1.3a other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "The LaTeX Project Public License\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\nLPPL Version 1.3a\ + \ 2004-10-01\n\nCopyright 1999 2002-04 LaTeX3 Project\n Everyone is allowed to distribute\ + \ verbatim copies of this\n license document, but modification of it is not allowed.\n\ + \n\nPREAMBLE\n========\nThe LaTeX Project Public License (LPPL) is the primary license under\n\ + which the the LaTeX kernel and the base LaTeX packages are distributed.\n\nYou may use this\ + \ license for any work of which you hold the copyright\nand which you wish to distribute.\ + \ This license may be particularly\nsuitable if your work is TeX-related (such as a LaTeX\ + \ package), but\nyou may use it with small modifications even if your work is unrelated\n\ + to TeX.\n\nThe section `WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE',\nbelow,\ + \ gives instructions, examples, and recommendations for authors\nwho are considering distributing\ + \ their works under this license.\n\nThis license gives conditions under which a work may\ + \ be distributed\nand modified, as well as conditions under which modified versions of\n\ + that work may be distributed.\n\nWe, the LaTeX3 Project, believe that the conditions below\ + \ give you\nthe freedom to make and distribute modified versions of your work\nthat conform\ + \ with whatever technical specifications you wish while\nmaintaining the availability, integrity,\ + \ and reliability of\nthat work. If you do not see how to achieve your goal while\nmeeting\ + \ these conditions, then read the document `cfgguide.tex'\nand `modguide.tex' in the base\ + \ LaTeX distribution for suggestions.\n\n\nDEFINITIONS\n===========\n\nIn this license document\ + \ the following terms are used:\n\n `Work'\n Any work being distributed under this\ + \ License.\n \n `Derived Work'\n Any work that under any applicable law is derived\ + \ from the Work.\n\n `Modification' \n Any procedure that produces a Derived Work under\ + \ any applicable\n law -- for example, the production of a file containing an\n original\ + \ file associated with the Work or a significant portion of\n such a file, either verbatim\ + \ or with modifications and/or\n translated into another language.\n\n `Modify'\n \ + \ To apply any procedure that produces a Derived Work under any\n applicable law.\n\ + \ \n `Distribution'\n Making copies of the Work available from one person to another,\ + \ in\n whole or in part. Distribution includes (but is not limited to)\n making any\ + \ electronic components of the Work accessible by\n file transfer protocols such as FTP\ + \ or HTTP or by shared file\n systems such as Sun's Network File System (NFS).\n\n \ + \ `Compiled Work'\n A version of the Work that has been processed into a form where it\n\ + \ is directly usable on a computer system. This processing may\n include using installation\ + \ facilities provided by the Work,\n transformations of the Work, copying of components\ + \ of the Work, or\n other activities. Note that modification of any installation\n \ + \ facilities provided by the Work constitutes modification of the Work.\n\n `Current\ + \ Maintainer'\n A person or persons nominated as such within the Work. If there is\n\ + \ no such explicit nomination then it is the `Copyright Holder' under\n any applicable\ + \ law.\n\n `Base Interpreter' \n A program or process that is normally needed for running\ + \ or\n interpreting a part or the whole of the Work. \n A Base Interpreter may\ + \ depend on external components but these\n are not considered part of the Base Interpreter\ + \ provided that each\n external component clearly identifies itself whenever it is used\n\ + \ interactively. Unless explicitly specified when applying the\n license to the Work,\ + \ the only applicable Base Interpreter is a\n \"LaTeX-Format\".\n\n\n\nCONDITIONS ON\ + \ DISTRIBUTION AND MODIFICATION\n===========================================\n1. Activities\ + \ other than distribution and/or modification of the Work\nare not covered by this license;\ + \ they are outside its scope. In\nparticular, the act of running the Work is not restricted\ + \ and no\nrequirements are made concerning any offers of support for the Work.\n\n2. You\ + \ may distribute a complete, unmodified copy of the Work as you\nreceived it. Distribution\ + \ of only part of the Work is considered\nmodification of the Work, and no right to distribute\ + \ such a Derived\nWork may be assumed under the terms of this clause.\n\n3. You may distribute\ + \ a Compiled Work that has been generated from a\ncomplete, unmodified copy of the Work\ + \ as distributed under Clause 2\nabove, as long as that Compiled Work is distributed in\ + \ such a way that\nthe recipients may install the Compiled Work on their system exactly\n\ + as it would have been installed if they generated a Compiled Work\ndirectly from the Work.\n\ + \n4. If you are the Current Maintainer of the Work, you may, without\nrestriction, modify\ + \ the Work, thus creating a Derived Work. You may\nalso distribute the Derived Work without\ + \ restriction, including\nCompiled Works generated from the Derived Work. Derived Works\n\ + distributed in this manner by the Current Maintainer are considered to\nbe updated versions\ + \ of the Work.\n\n5. If you are not the Current Maintainer of the Work, you may modify\n\ + your copy of the Work, thus creating a Derived Work based on the Work,\nand compile this\ + \ Derived Work, thus creating a Compiled Work based on\nthe Derived Work.\n\n6. If you\ + \ are not the Current Maintainer of the Work, you may\ndistribute a Derived Work provided\ + \ the following conditions are met\nfor every component of the Work unless that component\ + \ clearly states\nin the copyright notice that it is exempt from that condition. Only\n\ + the Current Maintainer is allowed to add such statements of exemption \nto a component of\ + \ the Work. \n\n a. If a component of this Derived Work can be a direct replacement\n \ + \ for a component of the Work when that component is used with the\n Base Interpreter,\ + \ then, wherever this component of the Work\n identifies itself to the user when used\ + \ interactively with that\n Base Interpreter, the replacement component of this Derived\ + \ Work\n clearly and unambiguously identifies itself as a modified version\n of\ + \ this component to the user when used interactively with that\n Base Interpreter.\n\ + \ \n b. Every component of the Derived Work contains prominent notices\n detailing\ + \ the nature of the changes to that component, or a\n prominent reference to another\ + \ file that is distributed as part\n of the Derived Work and that contains a complete\ + \ and accurate log\n of the changes.\n \n c. No information in the Derived Work implies\ + \ that any persons,\n including (but not limited to) the authors of the original version\n\ + \ of the Work, provide any support, including (but not limited to)\n the reporting\ + \ and handling of errors, to recipients of the\n Derived Work unless those persons have\ + \ stated explicitly that\n they do provide such support for the Derived Work.\n\n d.\ + \ You distribute at least one of the following with the Derived Work:\n\n 1. A complete,\ + \ unmodified copy of the Work; \n if your distribution of a modified component\ + \ is made by\n offering access to copy the modified component from a\n \ + \ designated place, then offering equivalent access to copy\n the Work from the\ + \ same or some similar place meets this\n condition, even though third parties\ + \ are not compelled to\n copy the Work along with the modified component;\n\n \ + \ 2. Information that is sufficient to obtain a complete, unmodified\n copy\ + \ of the Work.\n\n7. If you are not the Current Maintainer of the Work, you may\ndistribute\ + \ a Compiled Work generated from a Derived Work, as long as\nthe Derived Work is distributed\ + \ to all recipients of the Compiled\nWork, and as long as the conditions of Clause 6, above,\ + \ are met with\nregard to the Derived Work.\n\n8. The conditions above are not intended\ + \ to prohibit, and hence do\nnot apply to, the modification, by any method, of any component\ + \ so that it\nbecomes identical to an updated version of that component of the Work as\n\ + it is distributed by the Current Maintainer under Clause 4, above.\n\n9. Distribution of\ + \ the Work or any Derived Work in an alternative\nformat, where the Work or that Derived\ + \ Work (in whole or in part) is\nthen produced by applying some process to that format,\ + \ does not relax or\nnullify any sections of this license as they pertain to the results\ + \ of\napplying that process.\n \n10. a. A Derived Work may be distributed under a different\ + \ license\n provided that license itself honors the conditions listed in\n Clause\ + \ 6 above, in regard to the Work, though it does not have\n to honor the rest of the\ + \ conditions in this license.\n \n b. If a Derived Work is distributed under this\ + \ license, that\n Derived Work must provide sufficient documentation as part of\n\ + \ itself to allow each recipient of that Derived Work to honor the \n restrictions\ + \ in Clause 6 above, concerning changes from the Work.\n\n11. This license places no restrictions\ + \ on works that are unrelated to\nthe Work, nor does this license place any restrictions\ + \ on aggregating\nsuch works with the Work by any means.\n\n12. Nothing in this license\ + \ is intended to, or may be used to, prevent\ncomplete compliance by all parties with all\ + \ applicable laws.\n\n\nNO WARRANTY\n===========\nThere is no warranty for the Work. Except\ + \ when otherwise stated in\nwriting, the Copyright Holder provides the Work `as is', without\n\ + warranty of any kind, either expressed or implied, including, but not\nlimited to, the implied\ + \ warranties of merchantability and fitness for\na particular purpose. The entire risk\ + \ as to the quality and performance\nof the Work is with you. Should the Work prove defective,\ + \ you\nassume the cost of all necessary servicing, repair, or correction.\n\nIn no event\ + \ unless required by applicable law or agreed to in writing\nwill The Copyright Holder,\ + \ or any author named in the components of\nthe Work, or any other party who may distribute\ + \ and/or modify the Work\nas permitted above, be liable to you for damages, including any\n\ + general, special, incidental or consequential damages arising out of\nany use of the Work\ + \ or out of inability to use the Work (including,\nbut not limited to, loss of data, data\ + \ being rendered inaccurate, or\nlosses sustained by anyone as a result of any failure of\ + \ the Work to\noperate with any other programs), even if the Copyright Holder or said\n\ + author or said other party has been advised of the possibility of such\ndamages.\n\n\nMAINTENANCE\ + \ OF THE WORK\n=======================\nThe Work has the status `author-maintained' if the\ + \ Copyright Holder\nexplicitly and prominently states near the primary copyright notice\ + \ in\nthe Work that the Work can only be maintained by the Copyright Holder\nor simply that\ + \ is `author-maintained'.\n\nThe Work has the status `maintained' if there is a Current\ + \ Maintainer\nwho has indicated in the Work that they are willing to receive error\nreports\ + \ for the Work (for example, by supplying a valid e-mail\naddress). It is not required for\ + \ the Current Maintainer to acknowledge\nor act upon these error reports.\n\nThe Work changes\ + \ from status `maintained' to `unmaintained' if there\nis no Current Maintainer, or the\ + \ person stated to be Current\nMaintainer of the work cannot be reached through the indicated\ + \ means\nof communication for a period of six months, and there are no other\nsignificant\ + \ signs of active maintenance.\n\nYou can become the Current Maintainer of the Work by agreement\ + \ with\nany existing Current Maintainer to take over this role.\n\nIf the Work is unmaintained,\ + \ you can become the Current Maintainer of\nthe Work through the following steps:\n\n 1.\ + \ Make a reasonable attempt to trace the Current Maintainer (and\n the Copyright Holder,\ + \ if the two differ) through the means of\n an Internet or similar search.\n\n 2. If\ + \ this search is successful, then enquire whether the Work\n is still maintained.\n\n\ + \ a. If it is being maintained, then ask the Current Maintainer\n to update their communication\ + \ data within one month.\n \n b. If the search is unsuccessful or no action to resume\ + \ active\n maintenance is taken by the Current Maintainer, then announce\n within\ + \ the pertinent community your intention to take over\n maintenance. (If the Work is\ + \ a LaTeX work, this could be\n done, for example, by posting to comp.text.tex.)\n\n\ + \ 3a. If the Current Maintainer is reachable and agrees to pass\n maintenance of the\ + \ Work to you, then this takes effect\n immediately upon announcement.\n \n b.\ + \ If the Current Maintainer is not reachable and the Copyright\n Holder agrees that\ + \ maintenance of the Work be passed to you,\n then this takes effect immediately upon\ + \ announcement. \n \n 4. If you make an `intention announcement' as described in 2b.\ + \ above\n and after three months your intention is challenged neither by\n the Current\ + \ Maintainer nor by the Copyright Holder nor by other\n people, then you may arrange\ + \ for the Work to be changed so as\n to name you as the (new) Current Maintainer.\n\ + \ \n 5. If the previously unreachable Current Maintainer becomes\n reachable once\ + \ more within three months of a change completed\n under the terms of 3b) or 4), then\ + \ that Current Maintainer must\n become or remain the Current Maintainer upon request\ + \ provided\n they then update their communication data within one month.\n\nA change\ + \ in the Current Maintainer does not, of itself, alter the fact\nthat the Work is distributed\ + \ under the LPPL license.\n\nIf you become the Current Maintainer of the Work, you should\n\ + immediately provide, within the Work, a prominent and unambiguous\nstatement of your status\ + \ as Current Maintainer. You should also\nannounce your new status to the same pertinent\ + \ community as\nin 2b) above.\n\n\nWHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE\n\ + ======================================================\nThis section contains important\ + \ instructions, examples, and\nrecommendations for authors who are considering distributing\ + \ their\nworks under this license. These authors are addressed as `you' in\nthis section.\n\ + \nChoosing This License or Another License\n----------------------------------------\nIf\ + \ for any part of your work you want or need to use *distribution*\nconditions that differ\ + \ significantly from those in this license, then\ndo not refer to this license anywhere\ + \ in your work but, instead,\ndistribute your work under a different license. You may use\ + \ the text\nof this license as a model for your own license, but your license\nshould not\ + \ refer to the LPPL or otherwise give the impression that\nyour work is distributed under\ + \ the LPPL.\n\nThe document `modguide.tex' in the base LaTeX distribution explains\nthe\ + \ motivation behind the conditions of this license. It explains,\nfor example, why distributing\ + \ LaTeX under the GNU General Public\nLicense (GPL) was considered inappropriate. Even\ + \ if your work is\nunrelated to LaTeX, the discussion in `modguide.tex' may still be\nrelevant,\ + \ and authors intending to distribute their works under any\nlicense are encouraged to read\ + \ it.\n\nA Recommendation on Modification Without Distribution\n-----------------------------------------------------\n\ + It is wise never to modify a component of the Work, even for your own\npersonal use, without\ + \ also meeting the above conditions for\ndistributing the modified component. While you\ + \ might intend that such\nmodifications will never be distributed, often this will happen\ + \ by\naccident -- you may forget that you have modified that component; or\nit may not occur\ + \ to you when allowing others to access the modified\nversion that you are thus distributing\ + \ it and violating the conditions\nof this license in ways that could have legal implications\ + \ and, worse,\ncause problems for the community. It is therefore usually in your\nbest\ + \ interest to keep your copy of the Work identical with the public\none. Many works provide\ + \ ways to control the behavior of that work\nwithout altering any of its licensed components.\n\ + \nHow to Use This License\n-----------------------\nTo use this license, place in each of\ + \ the components of your work both\nan explicit copyright notice including your name and\ + \ the year the work\nwas authored and/or last substantially modified. Include also a\n\ + statement that the distribution and/or modification of that\ncomponent is constrained by\ + \ the conditions in this license.\n\nHere is an example of such a notice and statement:\n\ + \n %% pig.dtx\n %% Copyright 2003 M. Y. Name\n %\n % This work may be distributed and/or\ + \ modified under the\n % conditions of the LaTeX Project Public License, either version\ + \ 1.3\n % of this license or (at your option) any later version.\n % The latest version\ + \ of this license is in\n % http://www.latex-project.org/lppl.txt\n % and version 1.3\ + \ or later is part of all distributions of LaTeX\n % version 2003/12/01 or later.\n %\n\ + \ % This work has the LPPL maintenance status \"maintained\".\n % \n % This Current Maintainer\ + \ of this work is M. Y. Name.\n %\n % This work consists of the files pig.dtx and pig.ins\n\ + \ % and the derived file pig.sty.\n\nGiven such a notice and statement in a file, the conditions\n\ + given in this license document would apply, with the `Work' referring\nto the three files\ + \ `pig.dtx', `pig.ins', and `pig.sty' (the last being\ngenerated from `pig.dtx' using `pig.ins'),\ + \ the `Base Interpreter'\nreferring to any \"LaTeX-Format\", and both `Copyright Holder'\ + \ and\n`Current Maintainer' referring to the person `M. Y. Name'.\n\nIf you do not want\ + \ the Maintenance section of LPPL to apply to your\nWork, change \"maintained\" above into\ + \ \"author-maintained\". \nHowever, we recommend that you use \"maintained\" as the Maintenance\n\ + section was added in order to ensure that your Work remains useful to\nthe community even\ + \ when you can no longer maintain and support it\nyourself.\n\n\nImportant Recommendations\n\ + -------------------------\nDefining What Constitutes the Work\n\n The LPPL requires that\ + \ distributions of the Work contain all the\n files of the Work. It is therefore important\ + \ that you provide a\n way for the licensee to determine which files constitute the Work.\n\ + \ This could, for example, be achieved by explicitly listing all the\n files of the\ + \ Work near the copyright notice of each file or by\n using a line such as:\n\n % This\ + \ work consists of all files listed in manifest.txt.\n \n in that place. In the absence\ + \ of an unequivocal list it might be\n impossible for the licensee to determine what is\ + \ considered by you\n to comprise the Work and, in such a case, the licensee would be\n\ + \ entitled to make reasonable conjectures as to which files comprise\n the Work." json: lppl-1.3a.json - yml: lppl-1.3a.yml + yaml: lppl-1.3a.yml html: lppl-1.3a.html - text: lppl-1.3a.LICENSE + license: lppl-1.3a.LICENSE - license_key: lppl-1.3c + category: Copyleft spdx_license_key: LPPL-1.3c other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "The LaTeX Project Public License\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\n\nLPPL Version\ + \ 1.3c 2008-05-04\n\nCopyright 1999 2002-2008 LaTeX3 Project\n Everyone is allowed to\ + \ distribute verbatim copies of this\n license document, but modification of it is not\ + \ allowed.\n\n\nPREAMBLE\n========\n\nThe LaTeX Project Public License (LPPL) is the primary\ + \ license under\nwhich the LaTeX kernel and the base LaTeX packages are distributed.\n\n\ + You may use this license for any work of which you hold the copyright\nand which you wish\ + \ to distribute. This license may be particularly\nsuitable if your work is TeX-related\ + \ (such as a LaTeX package), but \nit is written in such a way that you can use it even\ + \ if your work is \nunrelated to TeX.\n\nThe section `WHETHER AND HOW TO DISTRIBUTE WORKS\ + \ UNDER THIS LICENSE',\nbelow, gives instructions, examples, and recommendations for authors\n\ + who are considering distributing their works under this license.\n\nThis license gives conditions\ + \ under which a work may be distributed\nand modified, as well as conditions under which\ + \ modified versions of\nthat work may be distributed.\n\nWe, the LaTeX3 Project, believe\ + \ that the conditions below give you\nthe freedom to make and distribute modified versions\ + \ of your work\nthat conform with whatever technical specifications you wish while\nmaintaining\ + \ the availability, integrity, and reliability of\nthat work. If you do not see how to\ + \ achieve your goal while\nmeeting these conditions, then read the document `cfgguide.tex'\n\ + and `modguide.tex' in the base LaTeX distribution for suggestions.\n\n\nDEFINITIONS\n===========\n\ + \nIn this license document the following terms are used:\n\n `Work'\n Any work being\ + \ distributed under this License.\n \n `Derived Work'\n Any work that under any\ + \ applicable law is derived from the Work.\n\n `Modification' \n Any procedure that\ + \ produces a Derived Work under any applicable\n law -- for example, the production of\ + \ a file containing an\n original file associated with the Work or a significant portion\ + \ of\n such a file, either verbatim or with modifications and/or\n translated into\ + \ another language.\n\n `Modify'\n To apply any procedure that produces a Derived Work\ + \ under any\n applicable law.\n \n `Distribution'\n Making copies of the Work\ + \ available from one person to another, in\n whole or in part. Distribution includes\ + \ (but is not limited to)\n making any electronic components of the Work accessible by\n\ + \ file transfer protocols such as FTP or HTTP or by shared file\n systems such as\ + \ Sun's Network File System (NFS).\n\n `Compiled Work'\n A version of the Work that\ + \ has been processed into a form where it\n is directly usable on a computer system.\ + \ This processing may\n include using installation facilities provided by the Work,\n\ + \ transformations of the Work, copying of components of the Work, or\n other activities.\ + \ Note that modification of any installation\n facilities provided by the Work constitutes\ + \ modification of the Work.\n\n `Current Maintainer'\n A person or persons nominated\ + \ as such within the Work. If there is\n no such explicit nomination then it is the\ + \ `Copyright Holder' under\n any applicable law.\n\n `Base Interpreter' \n A program\ + \ or process that is normally needed for running or\n interpreting a part or the whole\ + \ of the Work. \n\n A Base Interpreter may depend on external components but these\n\ + \ are not considered part of the Base Interpreter provided that each\n external component\ + \ clearly identifies itself whenever it is used\n interactively. Unless explicitly specified\ + \ when applying the\n license to the Work, the only applicable Base Interpreter is a\n\ + \ `LaTeX-Format' or in the case of files belonging to the \n `LaTeX-format' a program\ + \ implementing the `TeX language'.\n\n\n\nCONDITIONS ON DISTRIBUTION AND MODIFICATION\n\ + ===========================================\n\n1. Activities other than distribution and/or\ + \ modification of the Work\nare not covered by this license; they are outside its scope.\ + \ In\nparticular, the act of running the Work is not restricted and no\nrequirements are\ + \ made concerning any offers of support for the Work.\n\n2. You may distribute a complete,\ + \ unmodified copy of the Work as you\nreceived it. Distribution of only part of the Work\ + \ is considered\nmodification of the Work, and no right to distribute such a Derived\nWork\ + \ may be assumed under the terms of this clause.\n\n3. You may distribute a Compiled Work\ + \ that has been generated from a\ncomplete, unmodified copy of the Work as distributed under\ + \ Clause 2\nabove, as long as that Compiled Work is distributed in such a way that\nthe\ + \ recipients may install the Compiled Work on their system exactly\nas it would have been\ + \ installed if they generated a Compiled Work\ndirectly from the Work.\n\n4. If you are\ + \ the Current Maintainer of the Work, you may, without\nrestriction, modify the Work, thus\ + \ creating a Derived Work. You may\nalso distribute the Derived Work without restriction,\ + \ including\nCompiled Works generated from the Derived Work. Derived Works\ndistributed\ + \ in this manner by the Current Maintainer are considered to\nbe updated versions of the\ + \ Work.\n\n5. If you are not the Current Maintainer of the Work, you may modify\nyour copy\ + \ of the Work, thus creating a Derived Work based on the Work,\nand compile this Derived\ + \ Work, thus creating a Compiled Work based on\nthe Derived Work.\n\n6. If you are not\ + \ the Current Maintainer of the Work, you may\ndistribute a Derived Work provided the following\ + \ conditions are met\nfor every component of the Work unless that component clearly states\n\ + in the copyright notice that it is exempt from that condition. Only\nthe Current Maintainer\ + \ is allowed to add such statements of exemption \nto a component of the Work. \n\n a.\ + \ If a component of this Derived Work can be a direct replacement\n for a component\ + \ of the Work when that component is used with the\n Base Interpreter, then, wherever\ + \ this component of the Work\n identifies itself to the user when used interactively\ + \ with that\n Base Interpreter, the replacement component of this Derived Work\n \ + \ clearly and unambiguously identifies itself as a modified version\n of this component\ + \ to the user when used interactively with that\n Base Interpreter.\n \n b. Every\ + \ component of the Derived Work contains prominent notices\n detailing the nature of\ + \ the changes to that component, or a\n prominent reference to another file that is\ + \ distributed as part\n of the Derived Work and that contains a complete and accurate\ + \ log\n of the changes.\n \n c. No information in the Derived Work implies that any\ + \ persons,\n including (but not limited to) the authors of the original version\n \ + \ of the Work, provide any support, including (but not limited to)\n the reporting\ + \ and handling of errors, to recipients of the\n Derived Work unless those persons have\ + \ stated explicitly that\n they do provide such support for the Derived Work.\n\n d.\ + \ You distribute at least one of the following with the Derived Work:\n\n 1. A complete,\ + \ unmodified copy of the Work; \n if your distribution of a modified component\ + \ is made by\n offering access to copy the modified component from a\n \ + \ designated place, then offering equivalent access to copy\n the Work from the\ + \ same or some similar place meets this\n condition, even though third parties\ + \ are not compelled to\n copy the Work along with the modified component;\n\n \ + \ 2. Information that is sufficient to obtain a complete,\n unmodified copy\ + \ of the Work.\n\n7. If you are not the Current Maintainer of the Work, you may\ndistribute\ + \ a Compiled Work generated from a Derived Work, as long as\nthe Derived Work is distributed\ + \ to all recipients of the Compiled\nWork, and as long as the conditions of Clause 6, above,\ + \ are met with\nregard to the Derived Work.\n\n8. The conditions above are not intended\ + \ to prohibit, and hence do not\napply to, the modification, by any method, of any component\ + \ so that it\nbecomes identical to an updated version of that component of the Work as\n\ + it is distributed by the Current Maintainer under Clause 4, above.\n\n9. Distribution of\ + \ the Work or any Derived Work in an alternative\nformat, where the Work or that Derived\ + \ Work (in whole or in part) is\nthen produced by applying some process to that format,\ + \ does not relax or\nnullify any sections of this license as they pertain to the results\ + \ of\napplying that process.\n \n10. a. A Derived Work may be distributed under a different\ + \ license\n provided that license itself honors the conditions listed in\n Clause\ + \ 6 above, in regard to the Work, though it does not have\n to honor the rest of the\ + \ conditions in this license.\n \n b. If a Derived Work is distributed under a different\ + \ license, that\n Derived Work must provide sufficient documentation as part of\n\ + \ itself to allow each recipient of that Derived Work to honor the \n restrictions\ + \ in Clause 6 above, concerning changes from the Work.\n\n11. This license places no restrictions\ + \ on works that are unrelated to\nthe Work, nor does this license place any restrictions\ + \ on aggregating\nsuch works with the Work by any means.\n\n12. Nothing in this license\ + \ is intended to, or may be used to, prevent\ncomplete compliance by all parties with all\ + \ applicable laws.\n\n\nNO WARRANTY\n===========\n\nThere is no warranty for the Work. \ + \ Except when otherwise stated in\nwriting, the Copyright Holder provides the Work `as is',\ + \ without\nwarranty of any kind, either expressed or implied, including, but not\nlimited\ + \ to, the implied warranties of merchantability and fitness for a\nparticular purpose. \ + \ The entire risk as to the quality and performance\nof the Work is with you. Should the\ + \ Work prove defective, you assume\nthe cost of all necessary servicing, repair, or correction.\n\ + \nIn no event unless required by applicable law or agreed to in writing\nwill The Copyright\ + \ Holder, or any author named in the components of the\nWork, or any other party who may\ + \ distribute and/or modify the Work as\npermitted above, be liable to you for damages, including\ + \ any general,\nspecial, incidental or consequential damages arising out of any use of\n\ + the Work or out of inability to use the Work (including, but not limited\nto, loss of data,\ + \ data being rendered inaccurate, or losses sustained by\nanyone as a result of any failure\ + \ of the Work to operate with any other\nprograms), even if the Copyright Holder or said\ + \ author or said other\nparty has been advised of the possibility of such damages.\n\n\n\ + MAINTENANCE OF THE WORK\n=======================\n\nThe Work has the status `author-maintained'\ + \ if the Copyright Holder\nexplicitly and prominently states near the primary copyright\ + \ notice in\nthe Work that the Work can only be maintained by the Copyright Holder\nor simply\ + \ that it is `author-maintained'.\n\nThe Work has the status `maintained' if there is a\ + \ Current Maintainer\nwho has indicated in the Work that they are willing to receive error\n\ + reports for the Work (for example, by supplying a valid e-mail\naddress). It is not required\ + \ for the Current Maintainer to acknowledge\nor act upon these error reports.\n\nThe Work\ + \ changes from status `maintained' to `unmaintained' if there\nis no Current Maintainer,\ + \ or the person stated to be Current\nMaintainer of the work cannot be reached through the\ + \ indicated means\nof communication for a period of six months, and there are no other\n\ + significant signs of active maintenance.\n\nYou can become the Current Maintainer of the\ + \ Work by agreement with\nany existing Current Maintainer to take over this role.\n\nIf\ + \ the Work is unmaintained, you can become the Current Maintainer of\nthe Work through the\ + \ following steps:\n\n 1. Make a reasonable attempt to trace the Current Maintainer (and\n\ + \ the Copyright Holder, if the two differ) through the means of\n an Internet or\ + \ similar search.\n\n 2. If this search is successful, then enquire whether the Work\n\ + \ is still maintained.\n\n a. If it is being maintained, then ask the Current Maintainer\n\ + \ to update their communication data within one month.\n \n b. If the search is\ + \ unsuccessful or no action to resume active\n maintenance is taken by the Current Maintainer,\ + \ then announce\n within the pertinent community your intention to take over\n maintenance.\ + \ (If the Work is a LaTeX work, this could be\n done, for example, by posting to comp.text.tex.)\n\ + \n 3a. If the Current Maintainer is reachable and agrees to pass\n maintenance of the\ + \ Work to you, then this takes effect\n immediately upon announcement.\n \n b.\ + \ If the Current Maintainer is not reachable and the Copyright\n Holder agrees that\ + \ maintenance of the Work be passed to you,\n then this takes effect immediately upon\ + \ announcement. \n \n 4. If you make an `intention announcement' as described in 2b.\ + \ above\n and after three months your intention is challenged neither by\n the Current\ + \ Maintainer nor by the Copyright Holder nor by other\n people, then you may arrange\ + \ for the Work to be changed so as\n to name you as the (new) Current Maintainer.\n\ + \ \n 5. If the previously unreachable Current Maintainer becomes\n reachable once\ + \ more within three months of a change completed\n under the terms of 3b) or 4), then\ + \ that Current Maintainer must\n become or remain the Current Maintainer upon request\ + \ provided\n they then update their communication data within one month.\n\nA change\ + \ in the Current Maintainer does not, of itself, alter the fact\nthat the Work is distributed\ + \ under the LPPL license.\n\nIf you become the Current Maintainer of the Work, you should\n\ + immediately provide, within the Work, a prominent and unambiguous\nstatement of your status\ + \ as Current Maintainer. You should also\nannounce your new status to the same pertinent\ + \ community as\nin 2b) above.\n\n\nWHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE\n\ + ======================================================\n\nThis section contains important\ + \ instructions, examples, and\nrecommendations for authors who are considering distributing\ + \ their\nworks under this license. These authors are addressed as `you' in\nthis section.\n\ + \nChoosing This License or Another License\n----------------------------------------\n\n\ + If for any part of your work you want or need to use *distribution*\nconditions that differ\ + \ significantly from those in this license, then\ndo not refer to this license anywhere\ + \ in your work but, instead,\ndistribute your work under a different license. You may use\ + \ the text\nof this license as a model for your own license, but your license\nshould not\ + \ refer to the LPPL or otherwise give the impression that\nyour work is distributed under\ + \ the LPPL.\n\nThe document `modguide.tex' in the base LaTeX distribution explains\nthe\ + \ motivation behind the conditions of this license. It explains,\nfor example, why distributing\ + \ LaTeX under the GNU General Public\nLicense (GPL) was considered inappropriate. Even\ + \ if your work is\nunrelated to LaTeX, the discussion in `modguide.tex' may still be\nrelevant,\ + \ and authors intending to distribute their works under any\nlicense are encouraged to read\ + \ it.\n\nA Recommendation on Modification Without Distribution\n-----------------------------------------------------\n\ + \nIt is wise never to modify a component of the Work, even for your own\npersonal use, without\ + \ also meeting the above conditions for\ndistributing the modified component. While you\ + \ might intend that such\nmodifications will never be distributed, often this will happen\ + \ by\naccident -- you may forget that you have modified that component; or\nit may not occur\ + \ to you when allowing others to access the modified\nversion that you are thus distributing\ + \ it and violating the conditions\nof this license in ways that could have legal implications\ + \ and, worse,\ncause problems for the community. It is therefore usually in your\nbest\ + \ interest to keep your copy of the Work identical with the public\none. Many works provide\ + \ ways to control the behavior of that work\nwithout altering any of its licensed components.\n\ + \nHow to Use This License\n-----------------------\n\nTo use this license, place in each\ + \ of the components of your work both\nan explicit copyright notice including your name\ + \ and the year the work\nwas authored and/or last substantially modified. Include also\ + \ a\nstatement that the distribution and/or modification of that\ncomponent is constrained\ + \ by the conditions in this license.\n\nHere is an example of such a notice and statement:\n\ + \n %% pig.dtx\n %% Copyright 2005 M. Y. Name\n %\n % This work may be distributed and/or\ + \ modified under the\n % conditions of the LaTeX Project Public License, either version\ + \ 1.3\n % of this license or (at your option) any later version.\n % The latest version\ + \ of this license is in\n % http://www.latex-project.org/lppl.txt\n % and version 1.3\ + \ or later is part of all distributions of LaTeX\n % version 2005/12/01 or later.\n %\n\ + \ % This work has the LPPL maintenance status `maintained'.\n % \n % The Current Maintainer\ + \ of this work is M. Y. Name.\n %\n % This work consists of the files pig.dtx and pig.ins\n\ + \ % and the derived file pig.sty.\n\nGiven such a notice and statement in a file, the conditions\n\ + given in this license document would apply, with the `Work' referring\nto the three files\ + \ `pig.dtx', `pig.ins', and `pig.sty' (the last being\ngenerated from `pig.dtx' using `pig.ins'),\ + \ the `Base Interpreter'\nreferring to any `LaTeX-Format', and both `Copyright Holder' and\n\ + `Current Maintainer' referring to the person `M. Y. Name'.\n\nIf you do not want the Maintenance\ + \ section of LPPL to apply to your\nWork, change `maintained' above into `author-maintained'.\ + \ \nHowever, we recommend that you use `maintained', as the Maintenance\nsection was added\ + \ in order to ensure that your Work remains useful to\nthe community even when you can no\ + \ longer maintain and support it\nyourself.\n\nDerived Works That Are Not Replacements\n\ + ---------------------------------------\n\nSeveral clauses of the LPPL specify means to\ + \ provide reliability and\nstability for the user community. They therefore concern themselves\n\ + with the case that a Derived Work is intended to be used as a\n(compatible or incompatible)\ + \ replacement of the original Work. If\nthis is not the case (e.g., if a few lines of code\ + \ are reused for a\ncompletely different task), then clauses 6b and 6d shall not apply.\n\ + \n\nImportant Recommendations\n-------------------------\n\n Defining What Constitutes the\ + \ Work\n\n The LPPL requires that distributions of the Work contain all the\n files\ + \ of the Work. It is therefore important that you provide a\n way for the licensee to\ + \ determine which files constitute the Work.\n This could, for example, be achieved by\ + \ explicitly listing all the\n files of the Work near the copyright notice of each file\ + \ or by\n using a line such as:\n\n % This work consists of all files listed in manifest.txt.\n\ + \ \n in that place. In the absence of an unequivocal list it might be\n impossible\ + \ for the licensee to determine what is considered by you\n to comprise the Work and,\ + \ in such a case, the licensee would be\n entitled to make reasonable conjectures as to\ + \ which files comprise\n the Work." json: lppl-1.3c.json - yml: lppl-1.3c.yml + yaml: lppl-1.3c.yml html: lppl-1.3c.html - text: lppl-1.3c.LICENSE + license: lppl-1.3c.LICENSE - license_key: lsi-proprietary-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-lsi-proprietary-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "USE OF LSI DOCUMENTATION AND SOFTWARE DOWNLOADS IS SUBJECT TO THIS AGREEMENT\n\nIMPORTANT\ + \ - READ CAREFULLY: This Software License Agreement (\"SLA\") is a legal\nagreement between\ + \ you (either an individual or a single entity) and LSI\nCorporation (\"LSI\") for the LSI\ + \ Licensed Software identified herein and licensed\nherein, which includes computer software\ + \ and may include associated media,\nprinted materials, and \"online\" or electronic documentation\ + \ (\"LICENSED\nSOFTWARE\"). By installing, copying, or otherwise using the LICENSED SOFTWARE,\n\ + you agree to be bound by the terms of this SLA. If you do not agree to the terms\nof this\ + \ SLA, you may not install, copy or use the LICENSED SOFTWARE. The\nLICENSED SOFTWARE is\ + \ licensed, not sold.\n\nNOW THEREFORE, in consideration of the foregoing and the mutual\ + \ promises and\ncovenants contained in this SLA (also referred to as \"Agreement\"), the\ + \ parties\nhereby agree as follows:\n\n1. Definitions\n\n 1.1. \"Authorized Use for LSI\ + \ Source Code\" means use of the LSI Source Code\n solely for the purpose of internally\ + \ developing, modifying, integrating and\n testing Licensee's Products to interface with\ + \ LSI Devices authorized for\n such integration, and for no other use or purpose.\n\n\ + \ 1.2. \"Authorized Use for LSI Binary Code\" means use of the LSI Binary Code\n solely\ + \ for the purpose of internal evaluation or developing, integrating,\n testing and use\ + \ of Licensee's Products to interface with LSI Devices and for\n no other application,\ + \ use or purpose.\n\n 1.3. \"Authorized Use for LSI Internal Code\" means use of the\ + \ LSI Internal\n Use Code solely for the purpose of internally developing, modifying,\n\ + \ integrating and testing Licensee's Products to interface with LSI Devices\n authorized\ + \ for such integration, and for no other use or purpose.\n\n 1.4. \"Explanatory Materials\"\ + \ means explanatory and informational materials\n or documentation concerning the LSI\ + \ Licensed Code, in printed or electronic\n format, including without limitation, manuals,\ + \ descriptions, user and/or\n installation instructions, diagrams, printouts, listings,\ + \ flowcharts, and\n training materials, contained on visual media such as paper or photographic\n\ + \ film, or on other physical storage media in machine-readable form.\n Explanatory\ + \ Materials do not include any code.\n\n 1.5. \"LSI Licensed Code\" means collectively\ + \ all the software programs which\n are owned or distributed by LSI and licensed to Licensee\ + \ via the LSI\n Download Center through acceptance of this Agreement. The LSI Licensed\ + \ Code\n is specifically referenced individually in this Agreement as LSI Source\n \ + \ Code, LSI Binary Code, or LSI Internal Use Code.\n\n 1.6. \"Licensee's Products\"\ + \ means the hardware and software (and related\n Licensee documentation) that will be\ + \ developed or modified by or for\n Licensee utilizing the LSI Licensed Code for the\ + \ purpose of interfacing or\n being used with LSI Devices.\n\n 1.7. \"Updates\" means\ + \ maintenance releases, bug fixes, errata or other\n corrections, and minor improvements\ + \ or modifications to the LSI Licensed\n Code which may be provided by LSI to Licensee\ + \ from time to time at LSI's\n sole discretion. LSI is under no obligation to provide\ + \ Updates or provide\n support and maintenance services to Licensee Subsequent Users.\n\ + \n 1.8. \"New Version\" means significant changes, modifications, enhancements,\n \ + \ and/or functional improvements to the LSI Licensed Code. New Versions are\n made and\ + \ generally distributed solely at the discretion of LSI. Licensee\n must use the latest\ + \ New Version of LSI Licensed Code that is available. LSI\n is under no obligation to\ + \ port any development work from one version to the\n latest New Version of LSI Licensed\ + \ Code.\n\n 1.9. \"LSI Devices\" means those LSI products intended for use with the LSI\n\ + \ Licensed Code and purchased from LSI or its agents.\n\n 1.10. \"Derivative Works\"\ + \ means: (a) for copyrightable or copyrighted\n material, any translation (including\ + \ translation into other computer\n languages), port, modification, correction, addition,\ + \ extension, upgrade,\n improvement, compilation, abridgment or other form in which an\ + \ existing work\n may be recast, transformed or adapted; (b) for patentable or patented\n\ + \ material, any improvement thereon; and (c) for material which is protected\n by\ + \ trade secret, any new material derived from such existing trade secret\n material,\ + \ including new material which may be protected by copyright, patent\n and/or trade secret.\n\ + \n 1.11. \"Intellectual Property Rights\" means (by whatever name or term known\n \ + \ or designated) copyrights, trade secrets, patents, moral rights and any\n other intellectual\ + \ and industrial property and proprietary rights (excluding\n trademarks) including registrations,\ + \ applications, renewals and extensions\n of such rights anywhere in the world.\n\n \ + \ 1.12. \"LSI Binary Code\" means the software programs provided for\n distribution\ + \ at the LSI Download Center, in binary form, any other machine\n readable materials,\ + \ including, but not limited to, libraries, source files,\n header files, and data files,\ + \ any Updates and New Versions provided by LSI.\n\n 1.13. \"LSI Source Code\" means the\ + \ software programs provided for\n distribution at the LSI Download Center, in source\ + \ form including, but not\n limited to, libraries, source files, header files, and data\ + \ files, and\n Updates and New Versions provided by LSI.\n\n 1.14. \"LSI Internal\ + \ Use Code\" means the software programs provided for\n distribution at the LSI Download\ + \ Center, in source code or object code\n format including, but not limited to, libraries,\ + \ source files, header files,\n and data files, and Updates and New Versions provided\ + \ by LSI that are only\n for Licensee's internal use.\n\n 1.15. \"JRE Code\" mean\ + \ Oracle Corporation's JAVA SE Runtime Environment Code.\n\n 1.16. \"Subsequent User\"\ + \ means any user subsequent to Licensee, including but\n not limited to, all Licensee\ + \ customers, resellers, end users, and OEMs.\n\n 1.17 \"Taxes\" shall mean all taxes,\ + \ levies, imposts, duties, fines or other\n charges of whatsoever nature however imposed\ + \ by any country or any\n subdivision or authority thereof in any way connected with\ + \ this Agreement or\n any instrument or agreement required hereunder, and all interest,\ + \ penalties\n or similar liabilities with respect thereto, except such taxes as are\n\ + \ imposed on or measured by a party's net income or property.\n\n2. Grant of Rights\n\ + \n2.1 LSI Binary Code. Subject to the terms of this Agreement, LSI grants to\nLicensee a\ + \ non-exclusive, world-wide, revocable (for breach in accordance with\nSection 7), non-transferable\ + \ limited license, without the right to sublicense\nexcept as expressly provided herein,\ + \ solely to:\n\n (a) Use the LSI Binary Code and related Explanatory Materials solely\ + \ for the\n Authorized Use for Binary Code and only with LSI Devices\n\n (b) Make\ + \ copies of the LSI Binary Code and related Explanatory Materials to\n support the Authorized\ + \ Use for Binary Code and for archival and backup\n purposes in support of the Authorized\ + \ Use for Binary Code only with LSI\n Devices;\n\n (c) Distribute the LSI Binary Code\ + \ as incorporated in Licensee's Products or\n for use with LSI Devices to its Subsequent\ + \ Users;\n\n (d) Distribute the Explanatory Materials related to LSI Binary Code only\ + \ for\n use with LSI Devices;\n\n (e) Sublicense the rights provided in paragraphs\ + \ (a) and (b) above in\n accordance with the terms provided in this Agreement to contract\n\ + \ manufacturers (\"CMs\") and/or original design manufacturers (\"ODMs\"), in each\n\ + \ case meeting the requirements of Section 3.1(d) below for the purpose of\n manufacturing\ + \ Licensee's Products; and (f) Sublicense the rights provided in\n paragraphs (b) and\ + \ (c) in accordance with the terms provided in this\n Agreement to Subsequent Users who\ + \ are not end users for the purpose of\n distributing and supporting Licensee's Product.\n\ + \n2.2 LSI Source Code. Subject to the terms of this Agreement, LSI grants to\nLicensee a\ + \ non-exclusive, worldwide, revocable (for breach in accordance with\nSection 7), non-transferable\ + \ limited license, without the right to sublicense\nexcept as expressly provided herein,\ + \ solely to:\n\n (a) Use the LSI Source Code and related Explanatory Materials solely\ + \ for the\n Authorized Use for Source Code and only with LSI Devices;\n\n (b) Make\ + \ copies of the LSI Source Code and related Explanatory Material to\n support the Authorized\ + \ Use for Source Code only and for archival and backup\n purposes in support of the Authorized\ + \ use for Source Code only with LSI\n Devices;\n\n (c) Modify and prepare Derivative\ + \ Works of the LSI Source Code for the\n Authorized Use for LSI Source Code and only\ + \ for use with LSI Devices;\n\n (d) Distribute the binary form only of any authorized\ + \ Derivative Work of the\n LSI Source Code (\"Licensee Binary Derivative\") and necessary\ + \ portions of the\n related Explanatory Materials only for use with LSI Devices; and\n\ + \n (e) Sublicense the rights granted in paragraph (d) above in accordance with\n the\ + \ terms provided in this Agreement to Subsequent Users who are not end\n users for the\ + \ purpose of distributing and supporting Licensee's Product.\n\n2.3 LSI Internal Use Code.\ + \ Subject to the terms of this Agreement, LSI grants to\nLicensee a non-exclusive, worldwide,\ + \ revocable (for breach in accordance with\nSection 7), non-transferable limited license,\ + \ without the right to sublicense or\ndistribute, solely to:\n\n (a) Use the LSI Internal\ + \ Use Code and related Explanatory Materials solely\n for the Authorized Use for Internal\ + \ Code and only with LSI Devices; and\n\n (b) Make copies of the LSI Internal Use Code\ + \ and related Explanatory\n Materials to support the Authorized Use for Internal Code\ + \ only and for\n archival and backup purposes in support of the Authorized use for Internal\n\ + \ Code only with LSI Devices.\n\n2.4 Without limiting Section 4, Licensee may exercise\ + \ the foregoing rights\ndirectly and/or indirectly through its employees and contractors,\ + \ who are bound\nby terms at least as restrictive as this Agreement.\n\n3. License Restrictions\n\ + \n3.1. LSI Binary Code. The Licenses granted in Section 2.1 for LSI Binary Code\nand related\ + \ Explanatory Materials are subject to the following restrictions:\n\n (a) Licensee shall\ + \ not use the LSI Binary Code and related Explanatory\n Materials for any purpose other\ + \ than as expressly provided in Article 2;\n\n (b) Licensee shall reproduce all copyright\ + \ notices and other proprietary\n markings or legends contained within or on the LSI\ + \ Binary Code and related\n Explanatory Materials on any copies it makes; and\n\n \ + \ (c) Licensee shall not distribute or disclose the LSI Binary Code and\n related Explanatory\ + \ Materials except pursuant to an agreement with terms at\n least as protective of LSI's\ + \ Binary Code as the terms of this Agreement.\n Licensee shall not, and shall not allow\ + \ its Subsequent Users to,\n disassemble, de-compile, or reverse engineer the LSI Binary\ + \ Code.\n\n (d) Licensee may grant the sublicense set forth in Section 2.1(e) to its\ + \ CMs\n and ODMs, provided that each such CM and ODM agrees to abide by the terms\n \ + \ and conditions of this Agreement and Licensee shall remain responsible for\n any\ + \ failure by its CMs and ODM to comply with the terms and conditions of\n this Agreement.\n\ + \n3.2. LSI Source Code. The Licenses granted in Section 2.2 for LSI Source Code\nand related\ + \ Explanatory Materials are subject to the following restrictions:\n\n (a) Licensee shall\ + \ not use the LSI Source Code and related Explanatory\n Materials for any purpose other\ + \ than as expressly provided in Article 2;\n\n (b) Licensee shall reproduce all copyright\ + \ notices and other proprietary\n markings or legends contained within or on the LSI\ + \ Source Code and related\n Explanatory Materials on any copies it makes;\n\n (c)\ + \ Licensee shall not distribute or disclose any LSI Source Code and\n related Explanatory\ + \ Materials to any Subsequent Users or third parties,\n without the express written consent\ + \ of LSI;\n\n (d) Licensee shall not knowingly infringe upon the intellectual property\n\ + \ rights of any third party when making Derivative Works to the LSI Source\n Code;\n\ + \n (e) Licensee shall not disassemble, reverse-engineer, or decompile the LSI\n Source\ + \ Code, except for making authorized Derivative Works; and\n\n (f) Licensee shall not\ + \ distribute or disclose the Licensee Binary Derivative\n except pursuant to an agreement\ + \ with terms at least as protective as those\n in this Agreement protecting LSI's Binary\ + \ Code. Licensee shall not, and\n shall not allow its Subsequent Users to, disassemble,\ + \ de-compile, or reverse\n engineer the Licensee Binary Derivative.\n\n3.3. LSI Internal\ + \ Use Code. The Licenses granted in Section 2.3 for LSI Internal\nUse Code and related Explanatory\ + \ Materials are subject to the following\nrestrictions:\n\n (a) Licensee shall not use\ + \ the LSI Internal Use Code and related Explanatory\n Materials for any purpose other\ + \ than as expressly provided in Article 2;\n\n (b) Licensee shall reproduce all copyright\ + \ notices and other proprietary\n markings or legends contained within or on the LSI\ + \ Internal Use Code and\n related Explanatory Materials on any copies it makes;\n\n \ + \ (c) Licensee shall not distribute or disclose any LSI Internal Use Code and\n related\ + \ Explanatory Materials to any Subsequent Users or third parties,\n without the express\ + \ written consent of LSI; and\n\n (d) Licensee shall not disassemble, reverse-engineer,\ + \ or decompile the LSI\n Internal Use Code.\n\n3.4. Derivative Works of LSI Source Code\ + \ Made by Licensee. Subject to LSI's\nrights in the underlying LSI Source Code, Licensee\ + \ shall own all right, title\nand interest in and to the Derivative Works (both binary and\ + \ source format) it\nmakes from LSI Source Code, provided that such Derivative Works are\ + \ not made in\nbreach of this Agreement. Licensee shall not be required to disclose its\n\ + Derivative Works of the LSI Source Code to LSI. LSI shall have no obligations\nwhatsoever\ + \ to support, maintain, contribute to, or provide Updates, New Versions\nor any modifications\ + \ to Licensee Derivative Works of the LSI Source Code and\nshall have no liability whatsoever\ + \ for such Derivative Works. In the event\nLicensee requests LSI's input regarding Licensee\ + \ Derivative Works of LSI Source\nCode and plans to disclose such Derivative Works to LSI,\ + \ a separate written\nagreement shall first be executed by the parties.\n\n3.5. LSI Derivative\ + \ Works. Nothing contained herein shall prevent LSI from\ncreating any Derivative Works\ + \ of its LSI Source Code at any time. Licensee\nfurther agrees that LSI may independently\ + \ create a Derivative Work similar to or\nin competition with the Licensee Derivative Work\ + \ of the LSI Source Code and may\nuse that Derivative Work for any purpose. Licensee grants\ + \ LSI a Covenant Not to\nSue for any independently developed Derivative Works created by\ + \ LSI for its own\nLSI Source Code that Licensee may believe or claim infringes on any of\n\ + Licensee's Intellectual Property Rights relating to the Licensee Derivative\nWorks of the\ + \ LSI Source Code.\n\n3.6. U.S. Government Subsequent Users. All LSI Licensed Code and Explanatory\n\ + Materials qualify as \"commercial items,\" as that term is defined at 48 C.F.R.\n2.101,\ + \ consisting of \"commercial computer software\" and \"commercial computer\nsoftware documentation\"\ + \ as such terms are used in 48 C.F.R. 12.212. Consistent\nwith 48 CFR 52.227-19, 48 C.F.R.12.212\ + \ and 48 C.F.R. 227.7202-1 through\n227.7202-4, Licensee will provide to U.S. Government\ + \ end users such LSI Binary\nCode with only those rights set forth herein that apply to\ + \ non-governmental end\nusers. Use of such LSI Binary Code constitutes agreement by the\ + \ government\nentity that the computer software and computer software documentation is\n\ + commercial and constitutes acceptance of the rights and restrictions herein.\n\n3.7. No\ + \ Implied Licenses. Except for the express and limited licenses granted\nherein for specific\ + \ purposes, no rights or licenses are granted by LSI under\nthis Agreement, by implication,\ + \ inducement, estoppel or otherwise with respect\nto any proprietary information or to any\ + \ patents, copyrights, trade secrets,\ntrademarks, maskworks or other Intellectual Property\ + \ Rights owned or controlled\nby LSI. Any further licenses must be express, in writing and\ + \ signed by an\nauthorized representative of LSI.\n\n3.8. Injunctive Relief. In the event\ + \ of a breach by Licensee of this Section 2\nor 3, LSI shall be entitled to applicable injunctive\ + \ relief and to all remedies\navailable in equity and law to prevent Licensee from disassembling,\ + \ de-\ncompiling, reverse engineering, disclosing or using the LSI Licensed Code in\nwhole\ + \ or in part.\n\n3.9. LSI Licensed Code Containing JRE. Certain LSI Licensed Code may contain\n\ + JRE. Use of the JRE is restricted by JRE licensing terms to General Purpose\nDesktop Computers\ + \ and Servers, as defined below. Licensee may seek its own\nlicense for the JRE directly\ + \ with the owner, if it deems necessary. \"General\nPurposes Desktop Computers and Servers\"\ + \ under JRE licensing terms is defined as\n\"computers, including desktop, laptop and tablet\ + \ computers, or servers, used for\ngeneral computing functions under end user control (such\ + \ as but not specifically\nlimited to email, general purpose Internet browsing and office\ + \ suite\nproductivity tools)\". The full terms and conditions for use of the JRE are\navailable\ + \ at:\nhttp://www.oracle.com/technetwork/java/javase/terms/license/index.html.\n\n3.10.\ + \ Notwithstanding anything to the contrary in this Agreement, to the extent\nthere is a\ + \ conflict between this Agreement’s provisions and any applicable\nlicense to open source\ + \ technology, the provisions of the open source license\nshall take precedence and be followed,\ + \ but only to the minimum extent reasonably\nnecessary to comply with the applicable open\ + \ source license.\n\n4. Confidentiality\n\n 4.1 Licensee agrees to limit access to the\ + \ LSI Licensed Code and Explanatory\n Materials to employees and contractors of Licensee\ + \ (which may include,\n without limitation, contractors retained by Licensee to maintain\ + \ or modify\n the LSI Licensed Code and Explanatory Materials on behalf of Licensee)\n\ + \ having a need to access or know the LSI Licensed Code and Explanatory\n Materials\ + \ and who have executed nondisclosure agreements with Licensee\n obligating them to maintain\ + \ the confidentiality of the LSI Licensed Code and\n Explanatory Materials.\n\n 4.2\ + \ Licensee shall hold in confidence the LSI Licensed Code and Explanatory\n Materials\ + \ as LSI's confidential information (\"Confidential Information\") and\n shall use the\ + \ LSI Code and Explanatory Materials only as expressly provided\n in Section 2, and protect\ + \ the confidentiality of such Confidential\n Information with the same degree of care\ + \ as Licensee uses to protect its own\n confidential or proprietary information of great\ + \ commercial value, but in no\n event less than reasonable care and for no less than\ + \ three (3) years from\n the date of disclosure.\n\n 4.3 Licensee agrees to notify\ + \ LSI immediately after Licensee becomes aware\n of any suspected misuse or unauthorized\ + \ disclosure of any Confidential\n Information. The obligations of confidentiality imposed\ + \ on Licensee under\n this Section 4 shall not apply or shall cease to apply to any of\ + \ such\n Confidential Information that Licensee clearly establishes: (i) was already\n\ + \ rightfully in the possession of Licensee at the time of disclosure as\n evidenced\ + \ by records of Licensee; (ii) is or becomes publicly available\n through no act or omission\ + \ of Licensee; (iii) is rightfully received by\n Licensee from a third party without\ + \ an obligation of confidentiality; (iv)\n is independently developed by Licensee's employees\ + \ or contractors without\n use of or access to the information; or (v) is approved for\ + \ unrestricted\n disclosure in writing by an authorized representative of LSI. LSI makes\ + \ no\n warranty as to the accuracy of any Confidential Information, which is\n furnished\ + \ \"AS IS\" with all faults.\n\n5. Ownership of Code by LSI, Fees, and Taxes\n\n 5.1\ + \ LSI (or its licensors) reserve all right, title, ownership and interest\n in and to\ + \ the LSI Licensed Code and Explanatory Materials existing prior to\n and after the Effective\ + \ Date of this Agreement, or created or generated by\n LSI (or its licensors) at any\ + \ time, subject to any licenses granted. LSI (or\n its licensors) reserves all right,\ + \ title, ownership and interest in and to\n any Derivative Works it creates at any time\ + \ to the LSI Licensed Code and\n Explanatory Materials, subject to any licenses granted.\n\ + \n 5.2 Fees and Taxes. No fees are due in connection with this Agreement unless\n \ + \ separately specified by LSI. If any such fees are separately specified in\n writing,\ + \ the following applies:\n\n 5.2.1 Payment is due by Licensee upon download, at time\ + \ of purchase, or no\n later than within thirty (30) days of date of LSI invoice therefore,\ + \ as\n designated by LSI All payments shall be made in U.S. currency unless\n otherwise\ + \ agreed. If at any time, Licensee is delinquent in the payment of\n any invoice, or\ + \ is otherwise in breach of this Agreement, LSI may, at its\n discretion, and without\ + \ prejudice to its other rights, withhold delivery\n (including partial delivery) of\ + \ any order or may, at its option, require\n Licensee to prepay for further deliveries.\ + \ Any sum not paid by Licensee,\n when due, shall bear interest until paid at a rate\ + \ of 1.5% per month (18%\n per annum) or the maximum rate permitted by law, whichever\ + \ is less.\n\n 5.2.2 All payments or reimbursements due under this Agreement and any\n\ + \ instrument or agreement required hereunder shall be made free and clear and\n without\ + \ deduction for any and all present and future Taxes. Payments due to\n LSI under this\ + \ Agreement and any instrument or agreement required hereunder\n shall be increased so\ + \ that amounts received by LSI, after provisions for\n Taxes and all Taxes on such increase,\ + \ will be equal to the amounts required\n under this Agreement and any instrument or\ + \ agreement required hereunder if\n no Taxes were due on such payments.\n\n 5.2.3\ + \ The Licensee shall indemnify LSI for the full amount of Taxes\n attributable to the\ + \ provision of products or services under this Agreement,\n and any liabilities (including\ + \ penalties, interest and expenses) arising\n from such Taxes, within thirty (30) days\ + \ from any written demand by LSI. The\n Licensee shall provide evidence that all applicable\ + \ Taxes have been paid to\n the appropriate taxing authority by delivering to LSI receipts\ + \ or notarized\n copies thereof within thirty (30) days after the due date for such tax\n\ + \ payments.\n\n 5.2.4 Without prejudice to the survival of any other Agreement of\ + \ Licensee\n hereunder, the obligations of Licensee contained in this section shall\n\ + \ survive the payment in full of all payments hereunder.\n\n6. Support\n\n (a) LSI\ + \ may provide the following support services for the LSI Licensed Code\n to the extent\ + \ LSI deems reasonable: Updates if and when released and errata\n in LSI's sole discretion.\ + \ LSI shall not be responsible for any other support\n or maintenance of LSI Licensed\ + \ Code to Licensee or its Subsequent Users,\n unless otherwise agreed to in writing.\ + \ LSI is under no obligation to provide\n support services and may discontinue support\ + \ services at any time. LSI will\n not provide support for modified LSI Licensed Code\ + \ or Licensee's Derivative\n Works of the LSI Source Code.\n\n (b) Any Updates to\ + \ the LSI Licensed Code provided by LSI (which shall only\n be provided by LSI in its\ + \ sole discretion) shall be governed by the terms of\n this Agreement.\n\n (c) If\ + \ Licensee finds what Licensee considers an error in the LSI Licensed\n Code, Licensee\ + \ will notify LSI so that LSI can, in its sole discretion, make\n corrections to the\ + \ LSI Licensed Code or to future revisions of the LSI\n Licensed Code.\n\n7. Term and\ + \ Termination\n\n 7.1 Term. The term of this Agreement is five (5) years from the Effective\n\ + \ Date, subject to renewal upon mutual agreement of the parties.\n\n 7.2 Termination\ + \ for Breach. If Licensee breaches any material provision of\n this Agreement, LSI shall\ + \ have the right to terminate this Agreement,\n including all licenses granted hereunder,\ + \ in addition to any and all other\n remedies available at law or equity, unless Licensee\ + \ cures such breach\n within sixty (60) days (\"Cure Period\") after receiving written\ + \ notice of the\n breach by LSI. Licensee shall make best efforts to cure the material\ + \ breach\n in the least amount of time possible within the Cure Period.\n\n 7.3 Insolvency.\ + \ If either party: (a) becomes substantially insolvent; (b)\n makes an assignment for\ + \ the benefit of creditors; (c) files or has filed\n against it a petition in bankruptcy\ + \ or seeking reorganization; (d) has a\n receiver appointed; or (e) institutes any proceedings\ + \ for liquidation or\n winding up or have such proceedings instituted against it; then\ + \ the other\n party may, in addition to other rights and remedies it may have, terminate\n\ + \ this Agreement immediately by written notice.\n\n 7.4 Consequences. Upon termination\ + \ or expiration of this Agreement for any\n reason whatsoever, the licenses, rights,\ + \ and covenants granted hereunder and\n any obligations imposed hereunder shall cease\ + \ except as otherwise expressly\n set forth herein as surviving termination or expiration.\n\ + \n 7.5 Return of Confidential Information. Upon expiration or termination of\n this\ + \ Agreement for any reason or upon written request by LSI, Licensee\n agrees to promptly\ + \ return to LSI or, at LSI's request, destroy and certify\n by an officer of Licensee\ + \ in writing the destruction of, all LSI\n Confidential Information furnished to Licensee,\ + \ including all LSI Licensed\n Code and Explanatory Materials.\n\n 7.6 Survival of\ + \ Licenses. Any LSI Licensed Code and Explanatory Materials\n distributed prior to the\ + \ effective date of any termination, expiration,\n breach, or cancellation of this Agreement,\ + \ shall remain licensed (including\n any LSI Licensed Code in inventory, manufactured,\ + \ or work in progress with\n Licensee products) under the terms of this Agreement. Notwithstanding\ + \ the\n foregoing, Licensee may retain an archival copy of portions of the LSI\n Confidential\ + \ Information, including LSI Licensed Code and Explanatory\n Materials, necessary for\ + \ Licensee to provide ongoing technical support to\n Subsequent Users using the LSI Licensed\ + \ Code (\"Archival Materials\") after\n termination, expiration or cancellation of this\ + \ Agreement. Such Archival\n Materials may not be used for any other purpose without\ + \ the written consent\n from LSI. Licensee shall keep such Archival Materials confidential\ + \ for an\n additional five (5) years from the date of termination, expiration , or\n\ + \ cancellation of this Agreement, regardless of when the LSI Confidential\n Information\ + \ was disclosed.\n\n 7.7 Survival. In the event of expiration or termination of this\ + \ Agreement\n for any reason, the following sections of this Agreement shall survive:\ + \ 1,\n 3, 5, 7, 8, 9, 8 and 10. Termination will not prejudice either party to\n require\ + \ performance of any obligation due at the time of termination. All\n end user licenses\ + \ in effect and in compliance with the Agreement prior to\n effective termination or\ + \ expiration shall survive and continue in full force\n and effect in accordance with\ + \ their terms and Licensee may continue to\n perform its obligations thereunder, including\ + \ support obligations.\n\n8. Disclaimer of All Warranties\n\n 8.1 THE PARTIES AGREE THAT\ + \ LSI FURNISHES THE LSI LICENSED CODE AND\n EXPLANATORY MATERIALS TO LICENSEE \"AS IS,\"\ + \ UNSUPPORTED, WITHOUT WARRANTY OF\n ANY KIND. LSI DISCLAIMS ALL WARRANTIES, EXPRESS\ + \ OR IMPLIED, INCLUDING THE\n IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\ + \ PURPOSE AND\n NON-INFRINGEMENT, INCLUDING ANY THAT MAY ARISE FROM A COURSE OF PERFORMANCE,\n\ + \ A COURSE OF DEALING OR TRADE USAGE. LSI SHALL NOT BE LIABLE FOR ANY ERROR,\n OMISSION,\ + \ DEFECT, DEFICIENCY, OR NONCONFORMITY IN THE LSI LICENSED CODE OR\n EXPLANATORY MATERIALS.\ + \ LSI MAKES NO WARRANTY OR REPRESENTATION THAT THE LSI\n LICENSED CODE OR EXPLANATORY\ + \ MATERIALS WILL MEET LICENSEE'S REQUIREMENTS OR\n WILL WORK IN COMBINATION WITH ANY\ + \ HARDWARE OR SOFTWARE APPLICATION.\n\n 8.2 LSI DISCLAIMS ANY AND ALL LIABILITY IN CONNECTION\ + \ WITH LICENSEE'S USE OF\n THE LSI LICENSED CODE IN ANY MEDICAL, NUCLEAR, AVIATION, NAVIGATION,\n\ + \ MILITARY, OR OTHER HIGH RISK DEVICE OR APPLICATION. LICENSEE REPRESENTS AND\n WARRANTS\ + \ THAT IT WILL NOT USE THE LICENSED LSI CODE IN ANY MEDICAL, NUCLEAR,\n AVIATION, NAVIGATION,\ + \ MILITARY, OR OTHER HIGH RISK DEVICE OR APPLICATION.\n LICENSEE SHALL INDEMNIFY, DEFEND,\ + \ AND HOLD LSI HARMLESS AGAINST ANY LOSS,\n LIABILITY, OR DAMAGE OF ANY KIND THAT LSI\ + \ INCURS IN CONNECTION WITH BREACH\n OF THE WARRANTY IN THIS SECTION 8.2.\n\n 8.3\ + \ LSI DISCLAIMS ANY AND ALL LIABILITY IN CONNECTION WITH LICENSEE'S\n CREATION AND USE\ + \ OF DERIVATIVE WORKS OF THE LSI SOURCE CODE. LICENSEE SHALL\n INDEMNIFY, DEFEND, AND\ + \ HOLD LSI HARMLESS AGAINST ANY LOSS, LIABILITY, OR\n DAMAGE OF ANY KIND THAT LSI INCURS\ + \ IN CONNECTION WITH LICENSEE'S DERIVATIVE\n WORKS OF LSI SOURCE CODE.\n\n9. Limitation\ + \ of Liability\n\n IN NO EVENT SHALL LSI, ITS EMPLOYEES, AFFILIATES ORSUPPLIERS BE LIABLE\ + \ FOR\n ANY LOST PROFITS, REVENUE, SALES OR DATA OR COSTS OF PROCURE OF SUBTITUTE\n \ + \ GOODS OR SERVICES, INTERRUPTION, LOSS OF BUSINESS INFORMATION OR ANY\n SPECIAL, DIRECT,\ + \ INDIRECT, INCIDENTAL, CONSEQUENTIAL, ECONOMIC OR PUNITIVE\n DAMAGES, HOWEVER CAUSED,\ + \ AND WHETHER ARISING UNDER CONTRACT, TORT, STRICT\n LIABILITY, NEGLIGENCE OR OTHER THEORY\ + \ OF LIABILITY, ARISING OUT OF THE USE\n OR INABILTY TO USE THE LSI LICENSED CODE OR\ + \ EXPLANATORY MATERIALS, EVEN IF\n LSI OR ITS EMPLOYEES, SUPPLIERS OR AFFILIATES ARE\ + \ ADVISED OF THE POSSIBILTIY\n OF SUCH DAMAGES. IN THE EVENT THAT THE APPLICABLE JURISDICTION\ + \ DOES NOT\n ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY, BUT DOES ALLOW LIABILTY\ + \ TO\n BE LIMITED, THE LIABILITY OF LSI, ITS EMPLOYEES, AFFILIATES, OR SUPPLIERS IN\n\ + \ SUCH CASES, SHALL BE LIMITED TO $100 US DOLLARS.\n\n10. General\n\n 10.1 Assignment.\ + \ Licensee shall not assign this Agreement or any of its\n rights or delegate any of\ + \ its duties under this Agreement without the prior\n written consent of LSI. Subject\ + \ to the foregoing, this Agreement will be\n binding upon, enforceable by, and inure\ + \ to the benefit of the parties and\n their respective successors and assigns. Any attempted\ + \ assignment in\n violation of this Section 10.1 shall be null and void.\n\n 10.2\ + \ Governing Law. This Agreement shall be construed and interpreted in\n accordance with\ + \ the law of the State of California without reference to its\n conflicts of law principles.\n\ + \n 10.3 Exclusive Jurisdiction. All disputes arising out of or related to this\n Agreement\ + \ will be subject to the exclusive jurisdiction and venue of the\n California state courts\ + \ of Santa Clara County, California in United States\n District Court for the Northern\ + \ District of California, and the parties\n consent to the personal and exclusive jurisdiction\ + \ of these courts.\n\n 10.4 Export Control. Licensee shall follow all export control\ + \ laws and\n regulations relating to the LSI Licensed Code and Explanatory Materials.\n\ + \ Licensee hereby acknowledges responsibility for compliance with all\n applicable\ + \ US and local laws and regulations related to import and export\n and acknowledges and\ + \ agrees that the LSI Licensed Code is subject to the\n U.S. Export Administration Regulations.\ + \ Diversion contrary to U.S. law is\n prohibited. Licensee agrees that the LSI Licensed\ + \ Code is being or will be\n acquired for, shipped, transferred, or re-exported, directly\ + \ or indirectly,\n to prohibited or embargoed countries, nor be used for any prohibited\ + \ end-\n use, such as nuclear activities, chemical/biological weapons, or missile\n \ + \ projects, unless expressly authorized by the U.S. Government. Prohibited\n countries\ + \ are set forth in the Supplement 1 to Part 740 of the U.S. Export\n Administration Regulations.\ + \ Countries currently subject to U.S. embargo\n include: Cuba, Iran, N. Korea, Sudan\ + \ and Syria. This list is subject to\n change without further notice from LSI Corporation\ + \ and Licensee understands\n that compliance with the list as it exists in fact, is required.\ + \ Licensee\n assumes sole responsibility for obtaining any/all licenses required for\n\ + \ export or re-export. All ECCN and CCATS numbers and License Exception\n information\ + \ are subject to change without notice. Modification in any way\n nullifies the classification.\ + \ It is therefore your obligation as an exporter\n to verify such information and comply\ + \ with the then currently applicable\n regulations. Any data provided by LSI is for informational\ + \ purposes only.\n LSI Corporation makes no representation or warranty as to the accuracy\ + \ or\n reliability of any classifications or numbers. Any use of such\n classifications\ + \ or numbers by you is without recourse to LSI Corporation and\n is at your own risk.\ + \ LSI Corporation is in no way responsible for any\n damages, whether direct, indirect,\ + \ consequential, incidental or otherwise,\n suffered by you as a result of using or relying\ + \ upon such classifications or\n numbers for any purpose whatsoever. Licensee agrees\ + \ to consult the EAR, the\n Bureau of Industry and Security's Export Counseling Division,\ + \ and other\n appropriate sources before distributing, importing, or using LSI products.\n\ + \ You may request software classification information from LSI or view it at\n LSI.com.\ + \ If requested, Customer agrees to sign written assurances and other\n export-related\ + \ documents as may be required by LSI.\n\n 10.5 Waiver. No failure or delay on the part\ + \ of either party in the exercise\n of any right or privilege hereunder shall operate\ + \ as a waiver thereof or of\n the exercise of any other right or privilege hereunder,\ + \ nor shall any single\n or partial exercise of any such right or privilege preclude\ + \ other or further\n exercise thereof or of any other right or privilege.\n\n 10.6\ + \ Notice. Any notice or claim provided for herein to LSI shall be in\n writing and addressed\ + \ as set forth below, and shall be given (i) by personal\n delivery, effective upon delivery,\ + \ (ii) by first class mail, postage\n prepaid, addressed as set forth below, effective\ + \ one (1) business day after\n proper deposit in the mail, or (iii) by facsimile directed\ + \ to the facsimile\n number set forth below, but only if accompanied by mailing of a\ + \ copy in\n accordance with (ii) above, effective as of the date of facsimile\n transmission.\n\ + \n Vice President\n Global Commercial Law Group\n LSI Corporation\n 1110 American\ + \ Parkway, NE\n Room 12K-302\n Allentown, PA 18109\n Fax: (610) 712-1450 \n\n \ + \ 10.7 Severability. If any term, condition, or provision of this Agreement,\n or portion\ + \ of this Agreement, is found to be invalid, unlawful or\n unenforceable to any extent,\ + \ the parties will endeavor in good faith to\n agree to such amendments that will preserve,\ + \ as far as possible, the\n intentions expressed in this Agreement. Such invalid term,\ + \ condition or\n provision will be severed from the remaining terms, conditions and\n\ + \ provisions, which will continue to be valid and enforceable to the fullest\n extent\ + \ permitted by law.\n\n 10.8 Other Rights. Nothing contained in this Agreement shall\ + \ be construed as\n conferring by implication, estoppel, or otherwise upon either party\ + \ or any\n third party any license or other right except, solely as to the parties\n\ + \ hereto, the rights expressly granted hereunder.\n\n 10.9 Integration; Modification.\ + \ This Agreement embodies the final, complete\n and exclusive statement of the terms\ + \ agreed upon by the parties with respect\n to the subject matter hereof and supersedes\ + \ any prior or contemporaneous\n representations, descriptions, courses of dealing, or\ + \ agreements in regard\n to such subject matter. No amendment or modification of this\ + \ Agreement shall\n be valid or binding upon the parties unless stated in writing and\ + \ signed by\n an authorized representative of each party.\n\n 10.10 Publicity. All\ + \ publicity concerning this transaction referring to the\n other party shall require\ + \ the other party's prior written approval which\n shall not be unreasonably withheld.\n\ + \n 10.11 Relationship of the Parties. The relationship of the parties hereto is\n \ + \ that of independent contractors. Neither party, nor its agents or employees,\n shall\ + \ be deemed to be the agent, employee, joint venture partner, partner or\n fiduciary\ + \ of the other party. Neither party shall have the right to bind the\n other party, transact\ + \ any business on behalf of or in the name of the other\n party, or incur any liability\ + \ for or on behalf of the other party." json: lsi-proprietary-eula.json - yml: lsi-proprietary-eula.yml + yaml: lsi-proprietary-eula.yml html: lsi-proprietary-eula.html - text: lsi-proprietary-eula.LICENSE + license: lsi-proprietary-eula.LICENSE - license_key: lucent-pl-1.0 + category: Copyleft Limited spdx_license_key: LPL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Lucent Public License Version 1.0\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE\ + \ TERMS OF THIS PUBLIC LICENSE\n(\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF\ + \ THE PROGRAM CONSTITUTES\nRECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n\n1. DEFINITIONS\n\ + \n\"Contribution\" means:\n\n 1. in the case of (\"\"), the Original\ + \ Program, and\n 2. in the case of each Contributor,\n 1. changes to the Program,\ + \ and\n\n 2. additions to the Program; where such changes and/or additions to the\n\ + \ Program originate from and are \"Contributed\" by that particular\n Contributor.\n\ + \ \n A Contribution is \"Contributed\" by a Contributor only (i) if it was added\n\ + \ to the Program by such Contributor itself or anyone acting on such\n Contributor's\ + \ behalf, and (ii) the Contributor explicitly consents, in\n accordance with Section\ + \ 3C, to characterization of the changes and/or\n additions as Contributions. Contributions\ + \ do not include additions to the\n Program which: (i) are separate modules of software\ + \ distributed in\n conjunction with the Program under their own license agreement,\ + \ and (ii)\n are not derivative works of the Program.\n\n\"Contributor\" means \ + \ and any other entity that has Contributed a\nContribution to the Program.\n\n\"Distributor\"\ + \ means a Recipient that distributes the Program, modifications to\nthe Program, or any\ + \ part thereof.\n\n\"Licensed Patents\" mean patent claims licensable by a Contributor which\ + \ are\nnecessarily infringed by the use or sale of its Contribution alone or when\ncombined\ + \ with the Program.\n\n\"Original Program\" means the original version of the software accompanying\ + \ this\nAgreement as released by , including source code, object code and\ndocumentation,\ + \ if any.\n\n\"Program\" means the Original Program and Contributions or any part thereof\n\ + \n\"Recipient\" means anyone who receives the Program under this Agreement,\nincluding all\ + \ Contributors.\n\n2. GRANT OF RIGHTS\n\n 1. Subject to the terms of this Agreement, each\ + \ Contributor hereby grants\n Recipient a non-exclusive, worldwide, royalty-free copyright\ + \ license to\n reproduce, prepare derivative works of, publicly display, publicly perform,\n\ + \ distribute and sublicense the Contribution of such Contributor, if any, and\n such\ + \ derivative works, in source code and object code form.\n\n 2. Subject to the terms of\ + \ this Agreement, each Contributor hereby grants\n Recipient a non-exclusive, worldwide,\ + \ royalty-free patent license under\n Licensed Patents to make, use, sell, offer to sell,\ + \ import and otherwise\n transfer the Contribution of such Contributor, if any, in source\ + \ code and\n object code form. The patent license granted by a Contributor shall also\n\ + \ apply to the combination of the Contribution of that Contributor and the\n Program\ + \ if, at the time the Contribution is added by the Contributor, such\n addition of the\ + \ Contribution causes such combination to be covered by the\n Licensed Patents. The patent\ + \ license granted by a Contributor shall not apply\n to (i) any other combinations which\ + \ include the Contribution, nor to (ii)\n Contributions of other Contributors. No hardware\ + \ per se is licensed\n hereunder.\n\n 3. Recipient understands that although each Contributor\ + \ grants the licenses\n to its Contributions set forth herein, no assurances are provided\ + \ by any\n Contributor that the Program does not infringe the patent or other\n intellectual\ + \ property rights of any other entity. Each Contributor disclaims\n any liability to Recipient\ + \ for claims brought by any other entity based on\n infringement of intellectual property\ + \ rights or otherwise. As a condition to\n exercising the rights and licenses granted\ + \ hereunder, each Recipient hereby\n assumes sole responsibility to secure any other intellectual\ + \ property rights\n needed, if any. For example, if a third party patent license is required\ + \ to\n allow Recipient to distribute the Program, it is Recipient's responsibility\n \ + \ to acquire that license before distributing the Program.\n\n 4. Each Contributor represents\ + \ that to its knowledge it has sufficient\n copyright rights in its Contribution, if any,\ + \ to grant the copyright license\n set forth in this Agreement.\n\n3. REQUIREMENTS\n\n\ + A. Distributor may choose to distribute the Program in any form under this\nAgreement or\ + \ under its own license agreement, provided that:\n\n 1. it complies with the terms and\ + \ conditions of this Agreement;\n\n 2. if the Program is distributed in source code or\ + \ other tangible form, a\n copy of this Agreement or Distributor's own license agreement\ + \ is included\n with each copy of the Program; and\n\n 3. if distributed under Distributor's\ + \ own license agreement, such license\n agreement:\n \n 1. effectively disclaims\ + \ on behalf of all Contributors all warranties\n and conditions, express and implied,\ + \ including warranties or conditions\n of title and non-infringement, and implied\ + \ warranties or conditions of\n merchantability and fitness for a particular purpose;\n\ + \n 2. effectively excludes on behalf of all Contributors all liability for\n \ + \ damages, including direct, indirect, special, incidental and\n consequential\ + \ damages, such as lost profits; and\n\n 3. states that any provisions which differ\ + \ from this Agreement are\n offered by that Contributor alone and not by any other\ + \ party.\n\nB. Each Distributor must include the following in a conspicuous location in\ + \ the\nProgram:\n\n Copyright (C) , and others. All Rights Reserved.\ + \ \n\nC. In addition, each Contributor must identify itself as the originator of its\nContribution,\ + \ if any, and indicate its consent to characterization of its\nadditions and/or changes\ + \ as a Contribution, in a manner that reasonably allows\nsubsequent Recipients to identify\ + \ the originator of the Contribution. Once\nconsent is granted, it may not thereafter be\ + \ revoked.\n\n4. COMMERCIAL DISTRIBUTION \nCommercial distributors of software may accept\ + \ certain responsibilities with\nrespect to end users, business partners and the like. While\ + \ this license is\nintended to facilitate the commercial use of the Program, the Distributor\ + \ who\nincludes the Program in a commercial product offering should do so in a manner\n\ + which does not create potential liability for Contributors. Therefore, if a\nDistributor\ + \ includes the Program in a commercial product offering, such\nDistributor (\"Commercial\ + \ Distributor\") hereby agrees to defend and indemnify\nevery Contributor (\"Indemnified\ + \ Contributor\") against any losses, damages and\ncosts (collectively \"Losses\") arising\ + \ from claims, lawsuits and other legal\nactions brought by a third party against the Indemnified\ + \ Contributor to the\nextent caused by the acts or omissions of such Commercial Distributor\ + \ in\nconnection with its distribution of the Program in a commercial product\noffering.\ + \ The obligations in this section do not apply to any claims or Losses\nrelating to any\ + \ actual or alleged intellectual property infringement. In order\nto qualify, an Indemnified\ + \ Contributor must: a) promptly notify the Commercial\nDistributor in writing of such claim,\ + \ and b) allow the Commercial Distributor to\ncontrol, and cooperate with the Commercial\ + \ Distributor in, the defense and any\nrelated settlement negotiations. The Indemnified\ + \ Contributor may participate in\nany such claim at its own expense.\n\nFor example, a Distributor\ + \ might include the Program in a commercial product\noffering, Product X. That Distributor\ + \ is then a Commercial Distributor. If that\nCommercial Distributor then makes performance\ + \ claims, or offers warranties\nrelated to Product X, those performance claims and warranties\ + \ are such\nCommercial Distributor's responsibility alone. Under this section, the\nCommercial\ + \ Distributor would have to defend claims against the Contributors\nrelated to those performance\ + \ claims and warranties, and if a court requires any\nContributor to pay any damages as\ + \ a result, the Commercial Distributor must pay\nthose damages.\n\n5. NO WARRANTY\n\nEXCEPT\ + \ AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN\n\"AS IS\" BASIS,\ + \ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR\nIMPLIED INCLUDING, WITHOUT\ + \ LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY\ + \ OR FITNESS FOR A PARTICULAR PURPOSE. Each\nRecipient is solely responsible for determining\ + \ the appropriateness of using and\ndistributing the Program and assumes all risks associated\ + \ with its exercise of\nrights under this Agreement, including but not limited to the risks\ + \ and costs of\nprogram errors, compliance with applicable laws, damage to or loss of data,\n\ + programs or equipment, and unavailability or interruption of operations.\n\n6. DISCLAIMER\ + \ OF LIABILITY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR\ + \ ANY\nCONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL,\ + \ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST\nPROFITS), HOWEVER\ + \ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT\ + \ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OR DISTRIBUTION\ + \ OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS\nGRANTED HEREUNDER, EVEN IF ADVISED OF THE\ + \ POSSIBILITY OF SUCH DAMAGES.\n\n7. GENERAL\n\nIf any provision of this Agreement is invalid\ + \ or unenforceable under applicable\nlaw, it shall not affect the validity or enforceability\ + \ of the remainder of the\nterms of this Agreement, and without further action by the parties\ + \ hereto, such\nprovision shall be reformed to the minimum extent necessary to make such\n\ + provision valid and enforceable.\n\nIf Recipient institutes patent litigation against a\ + \ Contributor with respect to\na patent applicable to software (including a cross-claim\ + \ or counterclaim in a\nlawsuit), then any patent licenses granted by that Contributor to\ + \ such Recipient\nunder this Agreement shall terminate as of the date such litigation is\ + \ filed. In\naddition, if Recipient institutes patent litigation against any entity\n(including\ + \ a cross-claim or counterclaim in a lawsuit) alleging that the Program\nitself (excluding\ + \ combinations of the Program with other software or hardware)\ninfringes such Recipient's\ + \ patent(s), then such Recipient's rights granted under\nSection 2(b) shall terminate as\ + \ of the date such litigation is filed.\n\nAll Recipient's rights under this Agreement shall\ + \ terminate if it fails to\ncomply with any of the material terms or conditions of this\ + \ Agreement and does\nnot cure such failure in a reasonable period of time after becoming\ + \ aware of\nsuch noncompliance. If all Recipient's rights under this Agreement terminate,\n\ + Recipient agrees to cease use and distribution of the Program as soon as\nreasonably practicable.\ + \ However, Recipient's obligations under this Agreement\nand any licenses granted by Recipient\ + \ relating to the Program shall continue and\nsurvive.\n\n may publish new versions\ + \ (including revisions) of this Agreement from\ntime to time. Each new version of the Agreement\ + \ will be given a distinguishing\nversion number. The Program (including Contributions)\ + \ may always be distributed\nsubject to the version of the Agreement under which it was\ + \ received. In\naddition, after a new version of the Agreement is published, Contributor\ + \ may\nelect to distribute the Program (including its Contributions) under the new\nversion.\ + \ No one other than has the right to modify this Agreement.\nExcept as expressly\ + \ stated in Sections 2(a) and 2(b) above, Recipient receives\nno rights or licenses to the\ + \ intellectual property of any Contributor under this\nAgreement, whether expressly, by\ + \ implication, estoppel or otherwise. All rights\nin the Program not expressly granted under\ + \ this Agreement are reserved.\n\nThis Agreement is governed by the laws of the State of\ + \ and the\nintellectual property laws of the United States of America. No party\ + \ to this\nAgreement will bring a legal action under this Agreement more than one year\n\ + after the cause of action arose. Each party waives its rights to a jury trial in\nany resulting\ + \ litigation." json: lucent-pl-1.0.json - yml: lucent-pl-1.0.yml + yaml: lucent-pl-1.0.yml html: lucent-pl-1.0.html - text: lucent-pl-1.0.LICENSE + license: lucent-pl-1.0.LICENSE - license_key: lucent-pl-1.02 + category: Copyleft Limited spdx_license_key: LPL-1.02 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Lucent Public License Version 1.02\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE\ + \ TERMS OF THIS PUBLIC LICENSE (\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF\ + \ THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n\n1. DEFINITIONS\n\n\ + \"Contribution\" means:\n\n 1. in the case of ORGANIZATION (\"OWNER\"), the Original Program,\ + \ and\n 2. in the case of each Contributor,\n 1. changes to the Program, and\n\ + \ 2. additions to the Program; \n where such changes and/or additions to the\ + \ Program were added to the Program by such Contributor itself or anyone acting on such\ + \ Contributor's behalf, and the Contributor explicitly consents, in accordance with Section\ + \ 3C, to characterization of the changes and/or additions as Contributions. \n\n\"Contributor\"\ + \ means OWNER and any other entity that has Contributed a Contribution to the Program.\n\ + \n\"Distributor\" means a Recipient that distributes the Program, modifications to the Program,\ + \ or any part thereof.\n\n\"Licensed Patents\" mean patent claims licensable by a Contributor\ + \ which are necessarily infringed by the use or sale of its Contribution alone or when combined\ + \ with the Program.\n\n\"Original Program\" means the original version of the software accompanying\ + \ this Agreement as released by OWNER, including source code, object code and documentation,\ + \ if any.\n\n\"Program\" means the Original Program and Contributions or any part thereof\n\ + \n\"Recipient\" means anyone who receives the Program under this Agreement, including all\ + \ Contributors.\n\n2. GRANT OF RIGHTS\n\n a. Subject to the terms of this Agreement, each\ + \ Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright\ + \ license to reproduce, prepare derivative works of, publicly display, publicly perform,\ + \ distribute and sublicense the Contribution of such Contributor, if any, and such derivative\ + \ works, in source code and object code form.\n b. Subject to the terms of this Agreement,\ + \ each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent\ + \ license under Licensed Patents to make, use, sell, offer to sell, import and otherwise\ + \ transfer the Contribution of such Contributor, if any, in source code and object code\ + \ form. The patent license granted by a Contributor shall also apply to the combination\ + \ of the Contribution of that Contributor and the Program if, at the time the Contribution\ + \ is added by the Contributor, such addition of the Contribution causes such combination\ + \ to be covered by the Licensed Patents. The patent license granted by a Contributor shall\ + \ not apply to (i) any other combinations which include the Contribution, nor to (ii) Contributions\ + \ of other Contributors. No hardware per se is licensed hereunder.\n c. Recipient understands\ + \ that although each Contributor grants the licenses to its Contributions set forth herein,\ + \ no assurances are provided by any Contributor that the Program does not infringe the patent\ + \ or other intellectual property rights of any other entity. Each Contributor disclaims\ + \ any liability to Recipient for claims brought by any other entity based on infringement\ + \ of intellectual property rights or otherwise. As a condition to exercising the rights\ + \ and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure\ + \ any other intellectual property rights needed, if any. For example, if a third party patent\ + \ license is required to allow Recipient to distribute the Program, it is Recipient's responsibility\ + \ to acquire that license before distributing the Program.\n d. Each Contributor represents\ + \ that to its knowledge it has sufficient copyright rights in its Contribution, if any,\ + \ to grant the copyright license set forth in this Agreement. \n\n3. REQUIREMENTS\n\nA.\ + \ Distributor may choose to distribute the Program in any form under this Agreement or under\ + \ its own license agreement, provided that:\n\n 1. it complies with the terms and conditions\ + \ of this Agreement;\n 2. if the Program is distributed in source code or other tangible\ + \ form, a copy of this Agreement or Distributor's own license agreement is included with\ + \ each copy of the Program; and\n 3. if distributed under Distributor's own license agreement,\ + \ such license agreement:\n 1. effectively disclaims on behalf of all Contributors\ + \ all warranties and conditions, express and implied, including warranties or conditions\ + \ of title and non-infringement, and implied warranties or conditions of merchantability\ + \ and fitness for a particular purpose;\n 2. effectively excludes on behalf of all\ + \ Contributors all liability for damages, including direct, indirect, special, incidental\ + \ and consequential damages, such as lost profits; and\n 3. states that any provisions\ + \ which differ from this Agreement are offered by that Contributor alone and not by any\ + \ other party. \n\nB. Each Distributor must include the following in a conspicuous location\ + \ in the Program:\n\n Copyright (C) YEAR, ORGANIZATION and others. All Rights Reserved.\ + \ \n\nC. In addition, each Contributor must identify itself as the originator of its Contribution\ + \ in a manner that reasonably allows subsequent Recipients to identify the originator of\ + \ the Contribution. Also, each Contributor must agree that the additions and/or changes\ + \ are intended to be a Contribution. Once a Contribution is contributed, it may not thereafter\ + \ be revoked.\n\n4. COMMERCIAL DISTRIBUTION\n\nCommercial distributors of software may accept\ + \ certain responsibilities with respect to end users, business partners and the like. While\ + \ this license is intended to facilitate the commercial use of the Program, the Distributor\ + \ who includes the Program in a commercial product offering should do so in a manner which\ + \ does not create potential liability for Contributors. Therefore, if a Distributor includes\ + \ the Program in a commercial product offering, such Distributor (\"Commercial Distributor\"\ + ) hereby agrees to defend and indemnify every Contributor (\"Indemnified Contributor\")\ + \ against any losses, damages and costs (collectively \"Losses\") arising from claims, lawsuits\ + \ and other legal actions brought by a third party against the Indemnified Contributor to\ + \ the extent caused by the acts or omissions of such Commercial Distributor in connection\ + \ with its distribution of the Program in a commercial product offering. The obligations\ + \ in this section do not apply to any claims or Losses relating to any actual or alleged\ + \ intellectual property infringement. In order to qualify, an Indemnified Contributor must:\ + \ a) promptly notify the Commercial Distributor in writing of such claim, and b) allow the\ + \ Commercial Distributor to control, and cooperate with the Commercial Distributor in, the\ + \ defense and any related settlement negotiations. The Indemnified Contributor may participate\ + \ in any such claim at its own expense.\n\nFor example, a Distributor might include the\ + \ Program in a commercial product offering, Product X. That Distributor is then a Commercial\ + \ Distributor. If that Commercial Distributor then makes performance claims, or offers warranties\ + \ related to Product X, those performance claims and warranties are such Commercial Distributor's\ + \ responsibility alone. Under this section, the Commercial Distributor would have to defend\ + \ claims against the Contributors related to those performance claims and warranties, and\ + \ if a court requires any Contributor to pay any damages as a result, the Commercial Distributor\ + \ must pay those damages.\n\n5. NO WARRANTY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT,\ + \ THE PROGRAM IS PROVIDED 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. Each\ + \ Recipient is solely responsible for determining the appropriateness of using and distributing\ + \ the Program and assumes all risks associated with its exercise of rights under this Agreement,\ + \ including but not limited to the risks and costs of program errors, compliance with applicable\ + \ laws, damage to or loss of data, programs or equipment, and unavailability or interruption\ + \ of operations.\n\n6. DISCLAIMER OF LIABILITY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS\ + \ AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT,\ + \ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT\ + \ LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER,\ + \ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. EXPORT CONTROL\n\nRecipient\ + \ agrees that Recipient alone is responsible for compliance with the United States export\ + \ administration regulations (and the export control laws and regulation of any other countries).\n\ + \n8. GENERAL\n\nIf any provision of this Agreement is invalid or unenforceable under applicable\ + \ law, it shall not affect the validity or enforceability of the remainder of the terms\ + \ of this Agreement, and without further action by the parties hereto, such provision shall\ + \ be reformed to the minimum extent necessary to make such provision valid and enforceable.\n\ + \nIf Recipient institutes patent litigation against a Contributor with respect to a patent\ + \ applicable to software (including a cross-claim or counterclaim in a lawsuit), then any\ + \ patent licenses granted by that Contributor to such Recipient under this Agreement shall\ + \ terminate as of the date such litigation is filed. In addition, if Recipient institutes\ + \ patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit)\ + \ alleging that the Program itself (excluding combinations of the Program with other software\ + \ or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted\ + \ under Section 2(b) shall terminate as of the date such litigation is filed.\n\nAll Recipient's\ + \ rights under this Agreement shall terminate if it fails to comply with any of the material\ + \ terms or conditions of this Agreement and does not cure such failure in a reasonable period\ + \ of time after becoming aware of such noncompliance. If all Recipient's rights under this\ + \ Agreement terminate, Recipient agrees to cease use and distribution of the Program as\ + \ soon as reasonably practicable. However, Recipient's obligations under this Agreement\ + \ and any licenses granted by Recipient relating to the Program shall continue and survive.\n\ + \nLUCENT may publish new versions (including revisions) of this Agreement from time to time.\ + \ Each new version of the Agreement will be given a distinguishing version number. The Program\ + \ (including Contributions) may always be distributed subject to the version of the Agreement\ + \ under which it was received. In addition, after a new version of the Agreement is published,\ + \ Contributor may elect to distribute the Program (including its Contributions) under the\ + \ new version. No one other than LUCENT has the right to modify this Agreement. Except as\ + \ expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses\ + \ to the intellectual property of any Contributor under this Agreement, whether expressly,\ + \ by implication, estoppel or otherwise. All rights in the Program not expressly granted\ + \ under this Agreement are reserved.\n\nThis Agreement is governed by the laws of the State\ + \ of New York and the intellectual property laws of the United States of America. No party\ + \ to this Agreement will bring a legal action under this Agreement more than one year after\ + \ the cause of action arose. Each party waives its rights to a jury trial in any resulting\ + \ litigation." json: lucent-pl-1.02.json - yml: lucent-pl-1.02.yml + yaml: lucent-pl-1.02.yml html: lucent-pl-1.02.html - text: lucent-pl-1.02.LICENSE + license: lucent-pl-1.02.LICENSE - license_key: lucre + category: Permissive spdx_license_key: LicenseRef-scancode-lucre other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Redistribution and use in source and binary forms, with or without\nmodification, are\ + \ permitted provided that the following conditions\nare met:\n\n1. Redistributions of source\ + \ code must retain the above copyright\n notice, this list of conditions and the following\ + \ disclaimer. \n\n2. Redistributions in binary form must reproduce the above copyright\n\ + \ notice, this list of conditions and the following disclaimer in\n the documentation\ + \ and/or other materials provided with the\n distribution.\n\n3. All advertising materials\ + \ mentioning features or use of this\n software must display the following acknowledgment:\n\ + \ \"This product includes software developed by Ben Laurie\n for use in the Lucre project.\"\ + \n\n4. The name \"Lucre\" must not be used to\n endorse or promote products derived from\ + \ this software without\n prior written permission.\n\n5. Redistributions of any form\ + \ whatsoever must retain the following\n acknowledgment:\n \"This product includes software\ + \ developed by Ben Laurie\n for use in the Lucre project.\"\n\nTHIS SOFTWARE IS PROVIDED\ + \ BY BEN LAURIE ``AS IS'' AND ANY\nEXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\ + \ TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE\ + \ DISCLAIMED. IN NO EVENT SHALL BEN LAURIE OR\nHIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\ + \ INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n\ + NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS;\ + \ OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n\ + STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF\ + \ THE USE OF THIS SOFTWARE, EVEN IF ADVISED\nOF THE POSSIBILITY OF SUCH DAMAGE." json: lucre.json - yml: lucre.yml + yaml: lucre.yml html: lucre.html - text: lucre.LICENSE + license: lucre.LICENSE - license_key: lumisoft-mail-server + category: Proprietary Free spdx_license_key: LicenseRef-scancode-lumisoft-mail-server other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "General usage terms:\n\n *) If you use/redistribute compiled binary, there are no\ + \ restrictions.\n You can use it in any project, commercial and no-commercial.\n\n \ + \ *) It's allowed to complile source code parts to your application,\n but then you\ + \ may not rename class names and namespaces.\n\n *) Anything is possible, if special agreement\ + \ between LumiSoft.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\ + \ EXPRESS OR IMPLIED, \nINCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR \nPURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS\ + \ OR COPYRIGHT HOLDERS BE LIABLE \nFOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\ + \ AN ACTION OF CONTRACT, TORT OR OTHERWISE, \nARISING FROM, OUT OF OR IN CONNECTION WITH\ + \ THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." json: lumisoft-mail-server.json - yml: lumisoft-mail-server.yml + yaml: lumisoft-mail-server.yml html: lumisoft-mail-server.html - text: lumisoft-mail-server.LICENSE + license: lumisoft-mail-server.LICENSE - license_key: luxi + category: Proprietary Free spdx_license_key: LicenseRef-scancode-luxi other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Luxi fonts copyright (c) 2001 by Bigelow & Holmes Inc. Luxi font instruction + code copyright (c) 2001 by URW++ GmbH. All Rights Reserved. Luxi is a regis- + tered trademark of Bigelow & Holmes Inc. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of these Fonts and associated documentation files (the "Font Software"), to + deal in the Font Software, including without limitation the rights to use, + copy, merge, publish, distribute, sublicense, and/or sell copies of the Font + Software, and to permit persons to whom the Font Software is furnished to do + so, subject to the following conditions: + + The above copyright and trademark notices and this permission notice shall be + included in all copies of one or more of the Font Software. + + The Font Software may not be modified, altered, or added to, and in particu- + lar the designs of glyphs or characters in the Fonts may not be modified nor + may additional glyphs or characters be added to the Fonts. This License + becomes null and void when the Fonts or Font Software have been modified. + + THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, + TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BIGELOW & HOLMES INC. OR URW++ + GMBH. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GEN- + ERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN + ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR + INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFT- + WARE. + + Except as contained in this notice, the names of Bigelow & Holmes Inc. and + URW++ GmbH. shall not be used in advertising or otherwise to promote the + sale, use or other dealings in this Font Software without prior written + authorization from Bigelow & Holmes Inc. and URW++ GmbH. + + For further information, contact: + + info@urwpp.de or design@bigelowandholmes.com json: luxi.json - yml: luxi.yml + yaml: luxi.yml html: luxi.html - text: luxi.LICENSE + license: luxi.LICENSE - license_key: lyubinskiy-dropdown + category: Proprietary Free spdx_license_key: LicenseRef-scancode-lyubinskiy-dropdown other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + YOU MAY NOT + (1) Remove or modify this copyright notice. + (2) Re-distribute this code or any part of it. + Instead, you may link to the homepage of this code: + http:www.php-development.ru/javascripts/dropdown.php + + YOU MAY + (1) Use this code on your website. + (2) Use this code as part of another product. + + NO WARRANTY + This code is provided "as is" without warranty of any kind. + You expressly acknowledge and agree that use of this code is at your own risk. json: lyubinskiy-dropdown.json - yml: lyubinskiy-dropdown.yml + yaml: lyubinskiy-dropdown.yml html: lyubinskiy-dropdown.html - text: lyubinskiy-dropdown.LICENSE + license: lyubinskiy-dropdown.LICENSE - license_key: lyubinskiy-popup-window + category: Proprietary Free spdx_license_key: LicenseRef-scancode-lyubinskiy-popup-window other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "YOU MAY NOT \n(1) Remove or modify this copyright notice. \n(2) Re-distribute this\ + \ code or any part of it. \nInstead, you may link to the homepage of this code: \n http://www.php-development.ru/javascripts/popup-window.php\ + \ \n\nYOU MAY \n(1) Use this code on your website. \n(2) Use this code as part of another\ + \ product. \n\nNO WARRANTY \nThis code is provided \"as is\" without warranty of any kind.\ + \ \nYou expressly acknowledge and agree that use of this code is at your own risk." json: lyubinskiy-popup-window.json - yml: lyubinskiy-popup-window.yml + yaml: lyubinskiy-popup-window.yml html: lyubinskiy-popup-window.html - text: lyubinskiy-popup-window.LICENSE + license: lyubinskiy-popup-window.LICENSE - license_key: lzma-cpl-exception + category: Copyleft Limited spdx_license_key: LZMA-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "Special exception for LZMA compression module\n\nIgor Pavlov and Amir Szekely, the\ + \ authors of the LZMA compression module for NSIS, \nexpressly permit you to statically\ + \ or dynamically link your code (or bind by name) \nto the files from the LZMA compression\ + \ module for NSIS without subjecting your linked code \nto the terms of the Common Public\ + \ license version 1.0. Any modifications or additions to \nfiles from the LZMA compression\ + \ module for NSIS, however, are subject to the \nterms of the Common Public License version\ + \ 1.0." json: lzma-cpl-exception.json - yml: lzma-cpl-exception.yml + yaml: lzma-cpl-exception.yml html: lzma-cpl-exception.html - text: lzma-cpl-exception.LICENSE + license: lzma-cpl-exception.LICENSE - license_key: lzma-sdk-2006 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-lzma-sdk-2006 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + LZMA SDK 4.40 Copyright (c) 1999-2006 Igor Pavlov (2006-05-01) + http://www.7-zip.org/ + + LZMA SDK is licensed under two licenses: + 1) GNU Lesser General Public License (GNU LGPL) + 2) Common Public License (CPL) + It means that you can select one of these two licenses and + follow rules of that license. + + SPECIAL EXCEPTION: + Igor Pavlov, as the author of this code, expressly permits you to + statically or dynamically link your code (or bind by name) to the + interfaces of this file without subjecting your linked code to the + terms of the CPL or GNU LGPL. Any modifications or additions + to this file, however, are subject to the LGPL or CPL terms. json: lzma-sdk-2006.json - yml: lzma-sdk-2006.yml + yaml: lzma-sdk-2006.yml html: lzma-sdk-2006.html - text: lzma-sdk-2006.LICENSE + license: lzma-sdk-2006.LICENSE - license_key: lzma-sdk-2006-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-lzma-sdk-2006-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + SPECIAL EXCEPTION: + Igor Pavlov, as the author of this code, expressly permits you to + statically or dynamically link your code (or bind by name) to the + interfaces of this file without subjecting your linked code to the + terms of the CPL or GNU LGPL. Any modifications or additions + to this file, however, are subject to the LGPL or CPL terms. json: lzma-sdk-2006-exception.json - yml: lzma-sdk-2006-exception.yml + yaml: lzma-sdk-2006-exception.yml html: lzma-sdk-2006-exception.html - text: lzma-sdk-2006-exception.LICENSE + license: lzma-sdk-2006-exception.LICENSE - license_key: lzma-sdk-2008 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-lzma-sdk-2008 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "LZMA SDK provides the documentation, samples, header files, libraries, \nand tools\ + \ you need to develop applications that use LZMA compression.\n\nLICENSE\n-------\n\nLZMA\ + \ SDK is available under any of the following licenses:\n\n1) GNU Lesser General Public\ + \ License (GNU LGPL)\n2) Common Public License (CPL)\n3) Common Development and Distribution\ + \ License (CDDL) Version 1.0 \n4) Simplified license for unmodified code (read SPECIAL EXCEPTION)\ + \ \n\nIt means that you can select one of these options and follow rules of that license.\n\ + \n1,2,3) GNU LGPL, CPL and CDDL licenses are classified as \n - \"Free software licenses\"\ + \ at http://www.gnu.org/ \n - \"OSI-approved\" at http://www.opensource.org/\n\n4) Simplified\ + \ license for unmodified code (read SPECIAL EXCEPTION) \n\nIgor Pavlov, as the author of\ + \ this code, expressly permits you \nto statically or dynamically link your code (or bind\ + \ by name) \nto the files from LZMA SDK. \n\nSPECIAL EXCEPTION allows you to use LZMA SDK\ + \ in applications with closed code, \nwhile you keep LZMA SDK code unmodified.\n\nSPECIAL\ + \ EXCEPTION #2: Igor Pavlov, as the author of this code, expressly permits \nyou to use\ + \ this code under the same terms and conditions contained in the License \nAgreement you\ + \ have for any previous version of LZMA SDK developed by Igor Pavlov.\n\nSPECIAL EXCEPTION\ + \ #2 allows owners of proprietary licenses to use latest version \nof LZMA SDK as update\ + \ for previous versions.\n\nSome files in LZMA SDK are placed in public domain.\nSome of\ + \ these \"public domain\" files:\nC\\Types.h,\nC\\LzmaLib.*\nC\\LzmaLibUtil.*\nLzmaAlone.cpp,\ + \ \nLzmaAlone.cs, \nLzmaAlone.java\n\nSo you can change them as you want and use \"SPECIAL\ + \ EXCEPTION\" \nfor other unmodified files. For example, you can edit C\\Types.h to solve\ + \ some \ncompatibility problems with your compiler.\n\n-----\n\nYou should have received\ + \ a copy of the GNU Lesser General Public\nLicense along with this library; if not, write\ + \ to the Free Software\nFoundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307\ + \ USA\n\nYou should have received a copy of the Common Public License\nalong with this\ + \ library.\n\nYou should have received a copy of the Common Development and Distribution\ + \ \nLicense Version 1.0 along with this library." json: lzma-sdk-2008.json - yml: lzma-sdk-2008.yml + yaml: lzma-sdk-2008.yml html: lzma-sdk-2008.html - text: lzma-sdk-2008.LICENSE + license: lzma-sdk-2008.LICENSE +- license_key: lzma-sdk-9.11-to-9.20 + category: Public Domain + spdx_license_key: LZMA-SDK-9.11-to-9.20 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + LICENSE + ------- + + LZMA SDK is written and placed in the public domain by Igor Pavlov. + + Some code in LZMA is based on public domain code from another developers: + 1) PPMd var.H (2001): Dmitry Shkarin + 2) SHA-256: Wei Dai (Crypto++ library) + json: lzma-sdk-9.11-to-9.20.json + yaml: lzma-sdk-9.11-to-9.20.yml + html: lzma-sdk-9.11-to-9.20.html + license: lzma-sdk-9.11-to-9.20.LICENSE +- license_key: lzma-sdk-9.22 + category: Public Domain + spdx_license_key: LZMA-SDK-9.22 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + LICENSE + ------- + + LZMA SDK is written and placed in the public domain by Igor Pavlov. + + Some code in LZMA SDK is based on public domain code from another developers: + 1) PPMd var.H (2001): Dmitry Shkarin + 2) SHA-256: Wei Dai (Crypto++ library) + + Anyone is free to copy, modify, publish, use, compile, sell, or distribute the + original LZMA SDK code, either in source code form or as a compiled binary, for + any purpose, commercial or non-commercial, and by any means. + + LZMA SDK code is compatible with open source licenses, for example, you can + include it to GNU GPL or GNU LGPL code. + json: lzma-sdk-9.22.json + yaml: lzma-sdk-9.22.yml + html: lzma-sdk-9.22.html + license: lzma-sdk-9.22.LICENSE - license_key: lzma-sdk-original + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-lzma-sdk-original other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "LZMA SDK provides the documentation, samples, header files, libraries, \nand tools\ + \ you need to develop applications that use LZMA compression.\n\nLICENSE\n-------\n\nLZMA\ + \ SDK is available under any of the following licenses:\n\n1) GNU Lesser General Public\ + \ License (GNU LGPL)\n2) Common Public License (CPL)\n3) Simplified license for unmodified\ + \ code (read SPECIAL EXCEPTION) \n4) Proprietary license \n\nIt means that you can select\ + \ one of these four options and follow rules of that license.\n\n1,2) GNU LGPL and CPL licenses\ + \ are pretty similar and both these\nlicenses are classified as \n - \"Free software licenses\"\ + \ at http://www.gnu.org/ \n - \"OSI-approved\" at http://www.opensource.org/\n\n3) SPECIAL\ + \ EXCEPTION\n\nIgor Pavlov, as the author of this code, expressly permits you \nto statically\ + \ or dynamically link your code (or bind by name) \nto the files from LZMA SDK without subjecting\ + \ your linked \ncode to the terms of the CPL or GNU LGPL. \nAny modifications or additions\ + \ to files from LZMA SDK, however, \nare subject to the GNU LGPL or CPL terms.\n\nSPECIAL\ + \ EXCEPTION allows you to use LZMA SDK in applications with closed code, \nwhile you keep\ + \ LZMA SDK code unmodified.\n\nSPECIAL EXCEPTION #2: Igor Pavlov, as the author of this\ + \ code, expressly permits \nyou to use this code under the same terms and conditions contained\ + \ in the License \nAgreement you have for any previous version of LZMA SDK developed by\ + \ Igor Pavlov.\n\nSPECIAL EXCEPTION #2 allows owners of proprietary licenses to use latest\ + \ version \nof LZMA SDK as update for previous versions.\n\nSPECIAL EXCEPTION #3: Igor Pavlov,\ + \ as the author of this code, expressly permits \nyou to use code of the following files:\ + \ \nBranchTypes.h, LzmaTypes.h, LzmaTest.c, LzmaStateTest.c, LzmaAlone.cpp, \nLzmaAlone.cs,\ + \ LzmaAlone.java\nas public domain code. \n\n4) Proprietary license\n\nLZMA SDK also can\ + \ be available under a proprietary license which \ncan include:\n\n1) Right to modify code\ + \ without subjecting modified code to the \nterms of the CPL or GNU LGPL\n2) Technical support\ + \ for code\n\nTo request such proprietary license or any additional consultations,\nsend\ + \ email message from that page:\nhttp://www.7-zip.org/support.html\n\nYou should have received\ + \ a copy of the GNU Lesser General Public\nLicense along with this library; if not, write\ + \ to the Free Software\nFoundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307\ + \ USA\n\nYou should have received a copy of the Common Public License\nalong with this\ + \ library." json: lzma-sdk-original.json - yml: lzma-sdk-original.yml + yaml: lzma-sdk-original.yml html: lzma-sdk-original.html - text: lzma-sdk-original.LICENSE + license: lzma-sdk-original.LICENSE - license_key: lzma-sdk-pd + category: Public Domain spdx_license_key: LicenseRef-scancode-lzma-sdk-pd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + LICENSE + ------- + + LZMA SDK is written and placed in the public domain by Igor Pavlov. json: lzma-sdk-pd.json - yml: lzma-sdk-pd.yml + yaml: lzma-sdk-pd.yml html: lzma-sdk-pd.html - text: lzma-sdk-pd.LICENSE + license: lzma-sdk-pd.LICENSE - license_key: m-plus + category: Permissive spdx_license_key: mplus other_spdx_license_keys: - LicenseRef-scancode-m-plus is_exception: no is_deprecated: no - category: Permissive + text: | + These fonts are free software. + Unlimited permission is granted to use, copy, and distribute them, with or + without modification, either commercially or noncommercially. + THESE FONTS ARE PROVIDED "AS IS" WITHOUT WARRANTY. json: m-plus.json - yml: m-plus.yml + yaml: m-plus.yml html: m-plus.html - text: m-plus.LICENSE + license: m-plus.LICENSE - license_key: madwifi-dual + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + 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, + without modification. + 2. Redistributions in binary form must reproduce at minimum a disclaimer + similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any + redistribution must be conditioned upon including a substantially + similar Disclaimer requirement for further binary redistribution. + 3. Neither the names of the above-listed copyright holders nor the names + of any contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + Alternatively, this software may be distributed under the terms of the + GNU General Public License ("GPL") version 2 as published by the Free + Software Foundation. + + NO WARRANTY + 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 NONINFRINGEMENT, MERCHANTIBILITY + AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL + THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR 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 DAMAGES. json: madwifi-dual.json - yml: madwifi-dual.yml + yaml: madwifi-dual.yml html: madwifi-dual.html - text: madwifi-dual.LICENSE + license: madwifi-dual.LICENSE - license_key: magpie-exception-1.0 + category: Copyleft spdx_license_key: LicenseRef-scancode-magpie-exception-1.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: | + MAgPIE LICENSE EXCEPTION + Version 1.0 + + This MAgPIE Exception ("Exception") is an additional permission under + section 7 of the GNU Affero General Public License, version 3 (AGPL-3.0). It + applies to a given file that bears a notice placed by the copyright holder + of the file stating that the file is governed by AGPL-3.0 along with this + Exception. + + Grant of Additional Permissions. + + 1. + In the event that you are required by any provision of the AGPL-3.0 to + provide or make available the Corresponding Source of the Program as defined + under section 1 of the AGPL-3.0, you are exempt from this obligation to the + extent that the definition of Corresponding Source would also cover solver + libraries or other components of the General Algebraic Modeling System + (GAMS) required to run the Program. + + 2. + In the event that you convey the Program and the Program is linked with + libraries written for the R software environment ("R Libraries"), you are + not required to license these R Libraries under the AGPL-3-0 (or a + compatible license), provided the R Libraries are licensed under a Free and + Open Source license ("FOSS License"). A FOSS license is a license that meets + both the Open Source Definition of the Open Source Initaitive and the Free + Software Definition of the Free Software Foundation in its respective most + current form. json: magpie-exception-1.0.json - yml: magpie-exception-1.0.yml + yaml: magpie-exception-1.0.yml html: magpie-exception-1.0.html - text: magpie-exception-1.0.LICENSE + license: magpie-exception-1.0.LICENSE - license_key: make-human-exception + category: Permissive spdx_license_key: LicenseRef-scancode-make-human-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Permissive + text: "MakeHuman output GPL exception\n\n==================================\n\nAs a special\ + \ and limited exception, the copyright holders of the MakeHuman \nassets grants the option\ + \ to use CC0 1.0 Universal as published by the Creative\nCommons,either version 1.0 of the\ + \ License, or (at your option) any later version,\nas a license for the MakeHuman characters\ + \ exported under the conditions that \na) The assets were bundled in an export that was\ + \ made using the file export\nfunctionality inside an OFFICIAL and UNMODIFIED version of\ + \ MakeHuman and/or\nb) the asset solely consists of a 2D binary image in PNG, BMP or JPG\ + \ format.\n\nThe short version of CC0 is as follows:\n\nThe person who associated a work\ + \ with this deed has dedicated the work to the\npublic domain by waiving all of his or her\ + \ rights to the work worldwide under\ncopyright law, including all related and neighboring\ + \ rights, to the extent\nallowed by law. You can copy, modify, distribute and perform the\ + \ work, even\nfor commercial purposes, all without asking permission.\n\nFor an elaboration\ + \ and clarification on our intention and interpretation of \nthese license terms see the\ + \ License Explanation: \nhttp://www.makehuman.org/content/license_explanation.html" json: make-human-exception.json - yml: make-human-exception.yml + yaml: make-human-exception.yml html: make-human-exception.html - text: make-human-exception.LICENSE + license: make-human-exception.LICENSE - license_key: makeindex + category: Copyleft spdx_license_key: MakeIndex other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + MakeIndex Distribution Notice + + Permission is hereby granted to make and distribute original copies of this + program provided that the copyright notice and this permission notice are + preserved and provided that the recipient is not asked to waive or limit his + right to redistribute copies as allowed by this permission notice and provided + that anyone who receives an executable form of this program is granted access + to a machine-readable form of the source code for this program at a cost not + greater than reasonable reproduction, shipping, and handling costs. Executable + forms of this program distributed without the source code must be accompanied + by a conspicuous copy of this permission notice and a statement that tells the + recipient how to obtain the source code. + + Permission is granted to distribute modified versions of all or part of this + program under the conditions above with the additional requirement that the + entire modified work must be covered by a permission notice identical to this + permission notice. Anything distributed with and usable only in conjunction with + something derived from this program, whose useful purpose is to extend or adapt + or add capabilities to this program, is to be considered a modified version of + this program under the requirement above. Ports of this program to other systems + not supported in the distribution are also considered modified versions. All + modified versions should be reported back to the author. + + This program is distributed with no warranty of any sort. No contributor accepts + responsibility for the consequences of using this program or for whether it + serves any particular purpose. json: makeindex.json - yml: makeindex.yml + yaml: makeindex.yml html: makeindex.html - text: makeindex.LICENSE + license: makeindex.LICENSE - license_key: mame + category: Free Restricted spdx_license_key: LicenseRef-scancode-mame other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Redistribution and use of the MAME code or any derivative works are + permitted provided that the following conditions are met: + + Redistributions may not be sold, nor may they be used in a + commercial product or activity. + + Redistributions that are modified from the original source must + include the complete source code, including the source code for all + components used by a binary built from the modified sources. + 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. + + Redistributions 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. json: mame.json - yml: mame.yml + yaml: mame.yml html: mame.html - text: mame.LICENSE + license: mame.LICENSE - license_key: manfred-klein-fonts-tos + category: Free Restricted spdx_license_key: LicenseRef-scancode-manfred-klein-fonts-tos other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Simple Terms of Use + Manfred’s fonts are free for private and charity use. They are even free for commercial use – but if there’s any profit, pls make a donation to organizations like Doctors Without Borders. + + These fonts can NOT be included in any compilation CDs, disks or products, either commercial or shareware unless prior permission granted. + + All typefaces were created by Manfred Klein 2001-2008. json: manfred-klein-fonts-tos.json - yml: manfred-klein-fonts-tos.yml + yaml: manfred-klein-fonts-tos.yml html: manfred-klein-fonts-tos.html - text: manfred-klein-fonts-tos.LICENSE + license: manfred-klein-fonts-tos.LICENSE - license_key: mapbox-tos-2021 + category: Commercial spdx_license_key: LicenseRef-scancode-mapbox-tos-2021 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + Terms of service + Welcome to the future of mapping! We're glad you're here. + + This website, www.mapbox.com (the "site"), is owned and operated by Mapbox, Inc. and our affiliates ("Mapbox", "we" or “us”). By using the site, services provided on the site, our proprietary software made available to you via the site, or map content we make available to you through the services (collectively, "Services"), you agree to be bound by the following Terms of Service, as updated from time to time (collectively, the "Terms"). Please read them carefully. If you don’t agree to these Terms, you may not use the Services. + + Signing up + In order to use most Services, you must register for or authenticate into a Mapbox account. When you use our application program interfaces (APIs), including our SDK Registry/Downloads API, each request to an API must include one of your account's unique API keys. + Please carefully guard the security of your account and monitor use of your API keys. You are responsible for all use of the Services under your account, whether or not authorized, including any use of your API keys. At our discretion, we may make limited exceptions to this policy for unauthorized use of your account if you notify us of the problem promptly. + You must be 13 years or older to use the Services. By registering as a user or providing personal information on the site, you represent that you are at least 13 years old. + If you are entering into this agreement on behalf of your company or another legal entity, you represent that you have the authority to bind that entity to these Terms, in which case "you" will mean the entity you represent. + If you are a United States government user or otherwise accessing or using any Mapbox service in a U.S. government capacity, these Terms are amended as set out in our U.S. Government Terms of Service. + Our services + Subject to these Terms and our Service Terms, we grant you a non-exclusive, non-transferable, non-sublicensable, revocable license and right to: (i) use the Services to develop online services and online, desktop, or mobile applications; (ii) make the Services available to one or more distinct human users (i.e., natural persons) that can access any Licensed Application ("End Users") in connection with their use of your online services and online, desktop, or mobile applications.‍ + Contact us if you are looking to use enterprise-only products and services or to obtain additional volume-based discounts. + We may choose to make available to you products and services that are in beta, being provided for internal evaluation or trial, or otherwise not generally available (“Evaluation Products”). By accessing such Evaluation Products, you agree to only use them for internal evaluation or testing purposes. Upon our written request, you shall immediately cease all use, and destroy all copies, of Evaluation Products, and you shall provide us with written certification of such deletion. + Studio + If you use the places search function provided in the Studio dataset editor to place point features on a map, you must (1) only use such features internally, (2) not resell, sublicense or share such points with any third party, and (3) only use such points in compliance with the Geocoding API terms set forth above. + Boundaries Evaluation + In the event we give you access to our administrative level polygon vector tiles (“Boundaries"), you shall: + only use Boundaries in conjunction with a Mapbox Map for the sole purpose of internally evaluating whether to license Boundaries from us under an enterprise agreement; + not (and shall not permit any third party to) trace or otherwise derive or extract content, data and/or information from Boundaries; + not copy, disassemble, reverse engineer (except to the limited extent such restrictions are expressly prohibited by applicable statutory law), modify or alter any part of Boundaries; and + not use Boundaries to test, validate or benchmark against any other product, service or dataset without our prior written consent (a “Permitted Benchmarking”); if there is a Permitted Benchmarking, you shall provide us with a summary of the results, which we may use free-of-charge and without restriction to improve our products and services. + We may terminate your access to Boundaries at any time. Upon the termination of your access to Boundaries, you shall immediately cease all use, and destroy all copies, of Boundaries. Upon our written request, you shall provide us with written certification of deletion in accordance with the immediately preceding sentence. + End Users and notification + You may not allow your End Users or other third parties to use the Services in any way that would be a violation of these Terms if done by you, and you agree to take reasonable efforts to prevent such use. You agree to promptly notify Mapbox in writing if you become aware of any misappropriation or unauthorized use of the Services. + Documentation + In addition to the requirements above, you agree to adhere to the policies posted on this site in conjunction with the Services, including accompanying documentation. Those policies are incorporated by reference into these Terms. + Charges and payment + You agree to pay all fees owed for your use of the Services (your “Order”), as calculated by our records based on our publicly available pricing, currently located at www.mapbox.com/pricing. All charges are non-refundable unless expressly prohibited by applicable law. We may charge your credit card on an recurring basis for any amounts that you owe us, some of which may require advance payments. + You acknowledge and agree that failure to use the current version of Mapbox Software may result in potentially different (and higher) fees being charged to you, and agree to pay any such fees as calculated by us. + Late payments may bear interest at the rate of 1.5% per month (or the highest rate permitted by law, if less) from the payment due date until paid in full. You will be responsible for all reasonable expenses (including attorneys’ fees) incurred by us in collecting such delinquent amounts. + We are not responsible for any bank fees, interest charges, finance charges, over draft charges, or other fees resulting from charges billed by Mapbox. Currency exchange settlements will be based on agreements between you and the provider of your credit card. + Our listed fees do not include taxes, and you agree to pay all sales/use, gross receipts, value-added, GST, personal property or other tax (including any interest and penalties) with respect to the transactions and payments under these Terms, other than taxes based on our net income, employees or real property. You agree to work with us to help us obtain any necessary withholding or royalty tax exemptions where applicable. + Notwithstanding the foregoing, all payments made by you to us under these Terms will be made free and clear of any deduction or withholding, as may be required by law. If any such deduction or withholding (including but not limited to cross-border withholding taxes) is required on any payment, you will pay such additional amounts as are necessary so that the net amount received by us after such deduction or withholding, will be equal to the full amount that we would have received if no deduction or withholding had been required. The payment of any taxes, charges or fees required to be deducted or withheld from payments due to us, and the filing of any information or tax returns with respect thereto, shall be your responsibility. Upon your reasonable request, we will provide you with any existing tax forms in our possession that would reduce or eliminate the amount of any such withholding or deduction for taxes. + Ownership + Your content + You retain ownership of all content that you contribute to the Services via Mapbox Studio, Mapbox Studio Classic, the Dataset API, the Tileset API, and the Uploads API, excluding any content that you receive from Mapbox ("Your Content"). + Limited to the purpose of hosting Your Content so that we can provide the Services to you, you hereby grant Mapbox a non-exclusive, worldwide, royalty-free, fully paid-up, transferable and sublicensable right and license to (and to engage service providers to) use, copy, cache, publish, display, distribute, modify, create derivative works, and store Your Content. This right and license enables Mapbox to host and mirror your content on its distributed platform. You warrant, represent, and agree that you have the right to grant Mapbox these rights. + On termination of your account, Mapbox will make reasonable efforts to promptly remove from the site and cease use of Your Content; however, you recognize and agree that caching of or references to the content may not be immediately removed.‍ + Our content and third party content + Other than Your Content, all content displayed on the site or accessible through the Services, including text, images, maps, software or source code, are the property of Mapbox and/or third parties and are protected by United States and international intellectual property laws. Logos and product names appearing on or in connection with the Services are proprietary to Mapbox or our licensors. You may not remove any proprietary notices or product identification labels from the Services. + Feedback + You agree that we may freely exploit and make available any and all feedback, suggestions, ideas, enhancement requests, recommendations or other information you provide to us relating to the Services. + Publicity + We're proud to have you as a customer. During the term of this agreement, you hereby grant us a worldwide, non-exclusive, royalty-free, fully paid-up, transferable and sublicensable license to use your trademarks, service marks, and logos for the purpose of identifying you as a Mapbox customer to promote and market our services. But if you prefer we not use your logo or name in a particular way, just let us know, and we will respect that. + Account cancellation or suspension + We don't want you to leave, but you may cancel at any time. However, we do not give pro-rated refunds for unused time if you cancel during the middle of a billing cycle. + If you breach any of these Terms, we may immediately without notice cancel or suspend your account and the limited license granted to you hereunder automatically terminates, without notice to you. Upon termination of the limited license, you agree to immediately destroy any materials downloaded from the Services. In addition, Mapbox may cancel or suspend your account for any reason by providing you 30 days' advance notice. + Upon cancellation or suspension, your right to use the Services will stop immediately. You may not have access to data that you stored on the site after we cancel or suspend your account. You are responsible for backing up data that you use with the Services. If we cancel your account in its entirety without cause, we will refund to you on a pro-rata basis the amount of your payment corresponding to the portion of your service remaining right before we cancelled your account. + Changes to services or terms + We may modify these Terms and other terms related to your use of the Services (like our privacy policy) from time to time, by posting the changed terms on the site. All changes will be effective immediately upon posting to the site unless they specify a later date. Changes will not apply retroactively. Please check these Terms periodically for changes - your continued use of the Services after new terms become effective constitutes your binding acceptance of the new terms. + We may change the features and functions of the Services, including APIs. It is your responsibility to ensure that calls or requests you make to the Services are compatible with our then-current APIs. We attempt to avoid changes to our APIs that are not backwards compatible, but such changes may occasionally be required. If that happens, we will use reasonable efforts to notify you prior to deploying the changes. + Indemnification + You agree to indemnify and hold harmless Mapbox and its subsidiaries, affiliates, officers, agents, partners, and employees from any claim or demand, including reasonable attorneys' fees, arising out of: + Your use of the Services; + Your violation of these Terms; + Your End Users’ use of the Services in or through an application or service you provide; + Content you or your End Users submit, post to, extracts from, or transmit through the Services. + Disclaimers + “As is," "as available" and "with all faults." YOU EXPRESSLY AGREE THAT THE USE OF THE SERVICES IS AT YOUR SOLE RISK. THE SITE AND ITS SOFTWARE, SERVICES, MAPS, AND OTHER CONTENT, INCLUDING ANY THIRD-PARTY SOFTWARE, SERVICES, MEDIA, OR OTHER CONTENT MADE AVAILABLE IN CONJUNCTION WITH OR THROUGH THE SITE, ARE PROVIDED ON AN "AS IS", "AS AVAILABLE", "WITH ALL FAULTS" BASIS AND WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. + No warranties. TO THE FULLEST EXTENT PERMISSIBLE PURSUANT TO APPLICABLE LAW, MAPBOX DISCLAIMS ALL WARRANTIES, STATUTORY, EXPRESS OR IMPLIED, INCLUDING IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT OF PROPRIETARY RIGHTS. NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED BY YOU FROM MAPBOX OR THROUGH THE SITE, WILL CREATE ANY WARRANTY NOT EXPRESSLY STATED HEREIN. + Website operation. MAPBOX DOES NOT WARRANT THAT THE SERVICES, INCLUDING ANY SOFTWARE, SERVICES, MAPS, OR CONTENT OFFERED ON OR THROUGH THE SITE OR ANY THIRD PARTY SITES REFERRED TO ON OR BY THE SITE WILL BE UNINTERRUPTED, OR FREE OF ERRORS, VIRUSES, OR OTHER HARMFUL COMPONENTS AND DOES NOT WARRANT THAT ANY OF THE FOREGOING WILL BE CORRECTED. + Non-Mapbox content. WHEN USING THE SERVICES YOU MAY BE EXPOSED TO USER SUBMISSIONS AND OTHER THIRD PARTY CONTENT ("NON-MAPBOX CONTENT"), AND SOME OF THIS CONTENT MAY BE INACCURATE, OFFENSIVE, INDECENT, OR OTHERWISE OBJECTIONABLE. WE DO NOT ENDORSE ANY NON-MAPBOX CONTENT. UNDER NO CIRCUMSTANCES WILL MAPBOX BE LIABLE FOR OR IN CONNECTION WITH THE NON-MAPBOX CONTENT, INCLUDING FOR ANY INACCURACIES, ERRORS, OR OMISSIONS IN ANY NON-MAPBOX CONTENT, ANY INTELLECTUAL PROPERTY INFRINGEMENT WITH REGARD TO ANY NON-MAPBOX CONTENT, OR FOR ANY LOSS OR DAMAGE OF ANY KIND INCURRED AS A RESULT OF THE USE OF ANY NON-MAPBOX CONTENT. + Accuracy. MAPBOX DOES NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE OR THE RESULTS OF THE USE OF THE SERVICES OR ANY THIRD PARTY SITES REFERRED TO ON OR BY THE SITE IN TERMS OF CORRECTNESS, ACCURACY, RELIABILITY, OR OTHERWISE. + Driving directions. DRIVING CAN BE DANGEROUS, AND USE OF OUR APIS IS ENTIRELY AT YOUR OWN RISK. THE INFORMATION PROVIDED BY OUR DIRECTIONS API AND OPTIMIZED TRIPS API IS NOT INTENDED TO REPLACE THE INFORMATION PRESENTED ON THE ROAD. IN THE EVENT THAT THE INFORMATION PRESENTED ON THE ROAD (FOR EXAMPLE, BY TRAFFIC LIGHTS, TRAFFIC SIGNS, OR POLICE OFFICERS) DIFFERS FROM INFORMATION PROVIDED BY THE API, DO NOT RELY ON THE API. YOU AND YOUR USERS MUST OBSERVE ALL TRAFFIC LAWS WHILE USING THE SERVICE. IF YOU USE THE DIRECTIONS API OR OPTIMIZED TRIPS API IN AN APPLICATION OR SERVICE THAT YOU PROVIDE TO END USERS, YOU MUST DISCLOSE THIS POLICY TO YOUR USERS. + Harm to your computer. YOU UNDERSTAND AND AGREE THAT YOU USE, ACCESS, DOWNLOAD, OR OTHERWISE OBTAIN SOFTWARE, SERVICES, MAPS, OR CONTENT THROUGH THE SITE OR ANY THIRD PARTY SITES REFERRED TO ON OR BY THE SITE AT YOUR OWN DISCRETION AND RISK AND THAT YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY (INCLUDING YOUR COMPUTER SYSTEM) OR LOSS OF DATA THAT RESULTS FROM SUCH DOWNLOAD OR USE. + Jurisdiction. CERTAIN JURISDICTIONS DO NOT ALLOW LIMITATIONS ON IMPLIED WARRANTIES OR THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF YOU RESIDE IN SUCH A JURISDICTION, SOME OR ALL OF THE ABOVE DISCLAIMERS, EXCLUSIONS, OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MAY HAVE ADDITIONAL RIGHTS. THE LIMITATIONS OR EXCLUSIONS OF WARRANTIES, REMEDIES, OR LIABILITY CONTAINED IN THESE TERMS APPLY TO YOU TO THE FULLEST EXTENT SUCH LIMITATIONS OR EXCLUSIONS ARE PERMITTED UNDER THE LAWS OF THE JURISDICTION IN WHICH YOU ARE LOCATED. + Limitation of liability + Limitation of liability. UNDER NO CIRCUMSTANCES, AND UNDER NO LEGAL THEORY, INCLUDING NEGLIGENCE, SHALL MAPBOX OR ITS AFFILIATES, CONTRACTORS, EMPLOYEES, AGENTS, OR THIRD PARTY PARTNERS OR SUPPLIERS, BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL, CONSEQUENTIAL, OR EXEMPLARY DAMAGES (INCLUDING LOSS OF PROFITS, DATA, OR USE OR COST OF COVER) ARISING OUT OF OR RELATING TO THESE TERMS OR THAT RESULT FROM YOUR USE OR THE INABILITY TO USE THE SERVICES OR THE SITE, INCLUDING SOFTWARE, SERVICES. MAPS, CONTENT, USER SUBMISSIONS, OR ANY THIRD PARTY SITES REFERRED TO ON OR BY THE SITE, EVEN IF MAPBOX OR A MAPBOX AUTHORIZED REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + Limitation of damages. IN NO EVENT SHALL THE TOTAL LIABILITY OF MAPBOX OR ITS AFFILIATES, CONTRACTORS, EMPLOYEES, AGENTS, OR THIRD PARTY PARTNERS, LICENSORS, OR SUPPLIERS TO YOU FOR ALL DAMAGES, LOSSES, AND CAUSES OF ACTION ARISING OUT OF OR RELATING TO THESE TERMS THE SERVICES OR YOUR USE OF THE SITE (WHETHER IN CONTRACT, TORT (INCLUDING NEGLIGENCE), WARRANTY, OR OTHERWISE) EXCEED THE GREATER OF ONE HUNDRED DOLLARS ($100 USD) OR FEES PAID OR PAYABLE TO MAPBOX IN THE TWELVE MONTHS PERIOD PRIOR TO THE DATE ON WHICH THE DAMAGE OCCURRED. + Claim period. YOU AND MAPBOX AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF THESE TERMS OR RELATED TO MAPBOX MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED. + Digital Millennium Copyright Act compliance + If you are a copyright owner or an agent thereof, and believe that any user submission or other Mapbox content infringes upon your copyrights, you may submit a notification pursuant to the Digital Millennium Copyright Act ("DMCA") by providing our copyright agent with the following information in writing (see 17 U.S.C § 512(c)(3) for further detail): + A physical or electronic signature of a person authorized to act on behalf of the owner of an exclusive right that is allegedly infringed;Identification of the copyrighted work claimed to have been infringed, or, if multiple copyrighted works on Mapbox are covered by a single notification, a representative list of such works from Mapbox; + Identification of the material that is claimed to be infringing or to be the subject of infringing activity and that is to be removed or access to which is to be disabled, and information reasonably sufficient to permit Mapbox to locate the material; + Information reasonably sufficient to permit Mapbox to contact the complaining party, such as an address, telephone number, and, if available, an electronic mail address; + A statement that the complaining party has a good faith belief that use of the material in the manner complained of is not authorized by the copyright owner, its agent, or the law; and + A statement that the information in the notification is accurate, and under penalty of perjury, that the complaining party is authorized to act on behalf of the owner of an exclusive right that is allegedly infringed. + Please email your notification to the Legal Department at copyright@mapbox.com + Additional terms + You agree to keep the contact information associated with your Mapbox account current and complete. + You may not encourage others to violate these Terms, including by selling products or services that would violate these Terms if the products or services are used in their intended manner. + You may not take any action that improperly decreases the fees that you owe us (e.g., create multiple accounts for the purpose of not exceeding the monthly free usage credits). In the event that we discover any such misuse, you agree that we may (in addition to all other remedies) charge you for all fees that you should have paid if you had not improperly used our Services. + Upon written notice to you, we may (or may appoint appoint a nationally recognized certified public accountant or independent auditor to) audit your use of the Services and Mapbox Software to ensure it is in compliance with these Terms. Any audit will be conducted during regular business hours, no more than once per 12-month period and upon at least 30 days’ prior written notice (except where we have reasonable belief that a violation of these Terms has occurred or is occurring), and will not unreasonably interfere with your business activities. You will provide us with reasonable access to the relevant records and facilities. + You shall not assign these Terms or any right, interest or benefit hereunder without the prior written consent of Mapbox, which may be withheld for any reason or no reason at all. Mapbox may assign (i) these Terms to an affiliate, (ii) these Terms or any right, interest or benefit hereunder to a third party in connection with a collection proceeding against you, and (iii) these Terms in their entirety to its successor in interest pursuant to a merger, acquisition, corporate reorganization, or sale of all or substantially all of that party’s business or assets to which these Terms relate. These Terms shall benefit Mapbox and its successors and assignees. + These Terms are governed by and construed in accordance with the laws of California, without giving effect to any principles of conflicts of law. Any action arising out of or relating to these Terms must be filed in the state or federal courts for San Francisco County, California, USA, and you hereby consent and submit to the exclusive personal jurisdiction and venue of these courts for the purposes of litigating any such action. + A provision of these Terms may be waived only by a written instrument executed by the party entitled to the benefit of such provision. The failure of Mapbox to exercise or enforce any right or provision of these Terms will not constitute a waiver of such right or provision. Mapbox reserves all rights not expressly granted to you. + If any provision of these Terms is held to be unlawful, void, or for any reason unenforceable, then that provision shall be deemed severable from these Terms and shall not affect the validity and enforceability of any remaining provisions. Headings are for convenience only and have no legal or contractual effect. + You agree that no joint venture, partnership, employment, or agency relationship exists between you and Mapbox as a result of these Terms or your use of the Services. You further acknowledge no confidential, fiduciary, contractually implied, or other relationship is created between you and Mapbox other than pursuant to these Terms. json: mapbox-tos-2021.json - yml: mapbox-tos-2021.yml + yaml: mapbox-tos-2021.yml html: mapbox-tos-2021.html - text: mapbox-tos-2021.LICENSE + license: mapbox-tos-2021.LICENSE - license_key: markus-kuhn-license + category: Permissive spdx_license_key: LicenseRef-scancode-markus-kuhn-license other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software + for any purpose and without fee is hereby granted. The author + disclaims all warranties with regard to this software. json: markus-kuhn-license.json - yml: markus-kuhn-license.yml + yaml: markus-kuhn-license.yml html: markus-kuhn-license.html - text: markus-kuhn-license.LICENSE + license: markus-kuhn-license.LICENSE - license_key: martin-birgmeier + category: Permissive spdx_license_key: LicenseRef-scancode-martin-birgmeier other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + You may redistribute unmodified or modified versions of this source + code provided that the above copyright notice and this and the + following conditions are retained. + + This software is provided ``as is'', and comes with no warranties + of any kind. I shall in no event be liable for anything that happens + to anyone/anything when using this software. json: martin-birgmeier.json - yml: martin-birgmeier.yml + yaml: martin-birgmeier.yml html: martin-birgmeier.html - text: martin-birgmeier.LICENSE + license: martin-birgmeier.LICENSE - license_key: marvell-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-marvell-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Redistribution. Redistribution and use in binary form, without \nmodification, are\ + \ permitted provided that the following conditions are \nmet:\n\n* Redistributions must\ + \ reproduce the above copyright notice and the \n following disclaimer in the documentation\ + \ and/or other materials \n provided with the distribution.\n* Neither the name of Marvell\ + \ Corporation nor the names of its suppliers \n may be used to endorse or promote products\ + \ derived from this software \n without specific prior written permission.\n* No reverse\ + \ engineering, decompilation, or disassembly of this software \n is permitted.\n* You may\ + \ not use or attempt to use this software in conjunction with\n any product that is offered\ + \ by a third party as a replacement,\n substitute or alternative to a Marvell Product where\ + \ a Marvell Product\n is defined as a proprietary wireless LAN embedded client solution\ + \ of\n Marvell or a Marvell Affiliate.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE\ + \ COPYRIGHT HOLDERS AND \nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\ + \ INCLUDING, \nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS\ + \ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE \nCOPYRIGHT OWNER OR CONTRIBUTORS\ + \ BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\ + \ DAMAGES (INCLUDING, \nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\ + \ LOSS \nOF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND \nON ANY\ + \ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR \nTORT (INCLUDING NEGLIGENCE\ + \ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE \nUSE OF THIS SOFTWARE, EVEN IF ADVISED OF\ + \ THE POSSIBILITY OF SUCH \nDAMAGE." json: marvell-firmware.json - yml: marvell-firmware.yml + yaml: marvell-firmware.yml html: marvell-firmware.html - text: marvell-firmware.LICENSE + license: marvell-firmware.LICENSE - license_key: marvell-firmware-2019 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-marvell-firmware-2019 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Redistribution and use in binary form is permitted provided that the following + conditions are met: + + 1. Redistributions 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. + + 2. Redistribution and use shall be used only with Marvell silicon products. + Any other use, reproduction, modification, translation, or compilation of the + Software is prohibited. + + 3. No reverse engineering, decompilation, or disassembly is permitted. + + TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THIS SOFTWARE IS PROVIDED + “AS IS” WITHOUT WARRANTY OF ANY KIND, INCLUDING, WITHOUT LIMITATION, ANY EXPRESS + OR IMPLIED WARRANTIES OF MERCHANTABILITY, ACCURACY, FITNESS OR SUFFICIENCY FOR A + PARTICULAR PURPOSE, SATISFACTORY QUALITY, CORRESPONDENCE WITH DESCRIPTION, QUIET + ENJOYMENT OR NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY RIGHTS. + MARVELL, ITS AFFILIATES AND THEIR SUPPLIERS DISCLAIM ANY WARRANTY THAT THE + DELIVERABLES WILL OPERATE WITHOUT INTERRUPTION OR BE ERROR-FREE. json: marvell-firmware-2019.json - yml: marvell-firmware-2019.yml + yaml: marvell-firmware-2019.yml html: marvell-firmware-2019.html - text: marvell-firmware-2019.LICENSE + license: marvell-firmware-2019.LICENSE - license_key: matt-gallagher-attribution + category: Permissive spdx_license_key: LicenseRef-scancode-matt-gallagher-attribution other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is given to use this source code file, free of charge, in any + project, commercial or otherwise, entirely at your risk, with the condition + that any redistribution (in part or whole) of source code must retain + this copyright and permission notice. Attribution in compiled projects is + appreciated but not required. json: matt-gallagher-attribution.json - yml: matt-gallagher-attribution.yml + yaml: matt-gallagher-attribution.yml html: matt-gallagher-attribution.html - text: matt-gallagher-attribution.LICENSE + license: matt-gallagher-attribution.LICENSE - license_key: matthew-kwan + category: Permissive spdx_license_key: LicenseRef-scancode-matthew-kwan other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This software may be modified, redistributed, and used for any purpose, + so long as its origin is acknowledged. json: matthew-kwan.json - yml: matthew-kwan.yml + yaml: matthew-kwan.yml html: matthew-kwan.html - text: matthew-kwan.LICENSE + license: matthew-kwan.LICENSE - license_key: matthew-welch-font-license + category: Free Restricted spdx_license_key: LicenseRef-scancode-matthew-welch-font-license other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + All my fonts are free. You can use them for most personal or business uses you'd like, and I ask for no money. I would, however, like to hear from you. If you use my fonts for something please send me a postcard or e-mail letting me know how you used them. Send me a copy if you can or let me know where I can find your work. + + You may use these fonts for graphical or printed work, but you may not sell them or include them in a collection of fonts (on CD or otherwise) being sold. You can redistribute these fonts as long as you charge nothing to receive them. + + If you use any of these fonts for commercial purposes please credit me in at least some little way. json: matthew-welch-font-license.json - yml: matthew-welch-font-license.yml + yaml: matthew-welch-font-license.yml html: matthew-welch-font-license.html - text: matthew-welch-font-license.LICENSE + license: matthew-welch-font-license.LICENSE - license_key: mattkruse + category: Permissive spdx_license_key: LicenseRef-scancode-mattkruse other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + NOTICE: You may use this code for any purpose, commercial or private, without any further permission from the author. You may remove this notice from your final code if you wish, however it is appreciated by the author if at least my web site address is kept. + + You may *NOT* re-distribute this code in any way except through its use. That means, you can include it in your product, or your web site, or any other form where the code is actually being used. You may not put the plain javascript up on your site for download or include it in your javascript libraries for download. + If you wish to share this code with others, please just point them to the URL instead. + Please DO NOT link directly to my .js files from your site. Copy the files to your server and use them there. Thank you. json: mattkruse.json - yml: mattkruse.yml + yaml: mattkruse.yml html: mattkruse.html - text: mattkruse.LICENSE + license: mattkruse.LICENSE - license_key: maxmind-geolite2-eula-2019 + category: Copyleft spdx_license_key: LicenseRef-scancode-maxmind-geolite2-eula-2019 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "GeoLite2 End User License Agreement\nRevised on December 20, 2019 \n\nBy downloading\ + \ or using our GeoLite2 Database, you are accepting and agreeing to the terms and conditions\ + \ set forth in this GeoLite2 End User License Agreement (this \"Agreement\").\n\nMaxMind,\ + \ Inc. (\"MaxMind\"), a Delaware Corporation, offers a line of free databases that provide\ + \ geographic information and other data associated with specific Internet protocol addresses\ + \ (each a \"GeoLite2 Database\" and collectively the \"GeoLite2 Databases\"). The data available\ + \ through the GeoLite2 Databases is referred to in this Agreement as the \"GeoLite2 Data\"\ + . The term “Services” as used in this Agreement means the Geolite2 Databases and the GeoLite2\ + \ Data available at GeoLite2 Free Downloadable Databases on the MaxMind website, www.maxmind.com\ + \ (the \"Website\").\n\nADDITIONAL POLICIES, TERMS AND CONDITIONS.\n\nThe following policies\ + \ are incorporated into this Agreement by reference and provide additional terms and conditions\ + \ incorporated herein by this reference and/or related to the use of the Website:\n\nCreative\ + \ Commons Corporation Attribution-ShareAlike 4.0 International License (the “Creative Commons\ + \ License”)\nMaxMind Data Processing Addendum (“DPA”)\nMaxMind Privacy Policy (“PP”)\nMaxMind\ + \ Website Terms of Use (“WT”)\nThis Agreement controls in the event of any conflict with\ + \ the above-referenced documents. Thereafter, for any conflicts among the above 4 documents,\ + \ the priority and precedence of interpretation is DPA, PP, WT and Creative Commons License.\n\ + \nOTHER DATABASES AND PRODUCTS.\n\nThis Agreement does not apply to your use of any databases\ + \ or products offered by MaxMind other than the Services. If you use other MaxMind databases\ + \ or products, additional or other terms and conditions shall apply to your use of such\ + \ databases and products, and you agree to pay all applicable charges.\n\nLIMITED GRANT\ + \ OF RIGHTS.\n\nSubject to the terms and conditions of this Agreement, to the extent the\ + \ Services contain any copyrightable elements those copyrightable elements are governed\ + \ by the Creative Commons License. You must provide attribution of your use to MaxMind\ + \ (an example of attribution: “This product includes GeoLite2 data created by MaxMind, available\ + \ from https://www.maxmind.com“).\n\nIn addition\ + \ and if you are using the Services for internal use, subject to the terms and conditions\ + \ of this Agreement, MaxMind also hereby grants you a non-exclusive, non-transferable limited\ + \ license to access and use the Services for your own internal business purposes.\n\nWith\ + \ respect to either or both of the above licenses, (i) you agree to use the Services only\ + \ in a manner that is consistent with applicable laws and (ii) you may not remove or obscure\ + \ any copyright notice or other notice or terms of use contained in the Services.\n\nNO\ + \ USE OF GEOLITE2 DATA FOR FCRA PURPOSES.\n\nThe parties understand and agree that MaxMind\ + \ is not a consumer reporting agency as defined by the Fair Credit Reporting Act, 15 U.S.C.\ + \ §1681 et seq. (\"FCRA\"), and that the Services do not constitute \"consumer reports\"\ + \ as defined in the FCRA. You agree that you will not use the Services to determine any\ + \ consumer's eligibility for any product or service to be used by a consumer for personal,\ + \ family, or household purposes. You also agree that you will not use the Services (i) as\ + \ a factor in establishing a consumer's eligibility for credit, (ii) as a factor in establishing\ + \ a consumer's eligibility for insurance, (iii) for employment purposes, (iv) in connection\ + \ with a determination of an individual's eligibility for a license or other benefit granted\ + \ by a governmental authority, or (v) in connection with any permissible purpose as defined\ + \ by the FCRA.\n\nACCURACY EXPECTATION: NO USE OF GEOLITE2 DATA FOR IDENTIFYING SPECIFIC\ + \ HOUSEHOLDS OR INDIVIDUALS. \n\nDue to the nature of geolocation technology and other factors\ + \ beyond its control, MaxMind cannot and does not guarantee the accuracy of the GeoLite2\ + \ Data. The GeoLite2 Databases contain only the geographic data available and the availability\ + \ of such data is not consistent for all regions. Furthermore, none of the GeoLite2 Data\ + \ reliably identifies any geographic level or division more precise than the zip code or\ + \ postal code associated with an IP address. Accordingly, it is imperative that you and\ + \ your end users not rely on the GeoLite2 Data to identify a specific household, individual,\ + \ or street address. You acknowledge the foregoing limitation of the GeoLite2 Data and\ + \ agree represent and warrant that you will not use or encourage others to use the GeoLite2\ + \ Data for the purpose of identifying or locating a specific household, individual, or\ + \ street address.\n\nADDITIONAL RESTRICTIONS.\n\nDisclosure of Services. Except as explicitly\ + \ permitted by the Creative Commons License, you will not disclose the Services to any third\ + \ party or after notifying MaxMind of the anticipated disclosure and obtaining MaxMind’s\ + \ prior written consent to the disclosure. To the extent you disclose the Services to a\ + \ third party as permitted by this Agreement, you will impose upon the third party the same\ + \ or substantially similar contractual duties imposed on you and the rights provided to\ + \ MaxMind as in this Agreement, including those in LIMITED GRANT OF RIGHTS, ADDITIONAL RESTRICTIONS,\ + \ and DATA PROCESSING and, where not inconsistent with the other terms of this Agreement,\ + \ as in the Creative Commons License. You are responsible for the acts or omissions of\ + \ any third parties with which you share the Services.\nSecurity of the Services. You will\ + \ maintain reasonable and appropriate technical and organizational measures for the protection\ + \ of the security, confidentiality, and integrity of the Services (including protection\ + \ against unauthorized or unlawful processing and against accidental or unlawful destruction,\ + \ loss, or alteration or damage, unauthorized disclosure of, or access to, such data). In\ + \ the event you discover a data incident involving the Services, you shall promptly notify\ + \ MaxMind and fully cooperate with MaxMind, at your own expense, in remediating the incident.\n\ + Destructions of GeoLite2 Database and GeoLite2 Data. From time to time, MaxMind will release\ + \ an updated version of the GeoLite2 Databases, and you agree to promptly use the updated\ + \ version of the GeoLite2 Databases. You shall cease use of and destroy (i) any old versions\ + \ of the Services within thirty (30) days following the release of the updated GeoLite2\ + \ Databases; and (ii) all Services immediately upon termination of the license under this\ + \ Agreement. Upon request, you shall provide MaxMind with written confirmation of such destruction.\n\ + Provision of Data to MaxMind. The Services provided by MaxMind under this Agreement do not\ + \ require MaxMind to process Personal Information on behalf of Licensee. Licensee shall\ + \ not provide any Personal Information to MaxMind nor cause MaxMind to process any Personal\ + \ Information on its behalf.\n\nINDEMNIFICATION.\n\nYou will indemnify and hold MaxMind\ + \ and its affiliates harmless from and against any and all claims, causes of action, liabilities,\ + \ penalties, costs or expenses (including reasonable attorney’s fees) incurred by MaxMind\ + \ or any affiliate thereof as a result of your breach of any of the terms of this Agreement.\n\ + \nFEES.\n\nThe Services are made available to you free of charge. MaxMind reserves the right\ + \ to stop offering the Services free of charge at any time, and charge for future updates\ + \ to the Services.\n\nCHANGES TO THE AGREEMENT/TERMINATION.\n\n(a) MaxMind may amend this\ + \ Agreement at any time. Any such amendment(s) shall be binding and effective upon the earlier\ + \ of (i) the date that is thirty (30) days after the posting of the amended Agreement on\ + \ the Website or (ii) the date that MaxMind provides notice to you of the amended Agreement.\ + \ You may immediately terminate this Agreement upon written notice to MaxMind if a change\ + \ is unacceptable to you. Your continued use of the Services following notice to you of\ + \ a change shall constitute your acceptance of the change.\n\n(b) This Agreement shall terminate\ + \ immediately if, within the reasonable judgment of MaxMind, you materially breach any material\ + \ term or condition of this Agreement and fail to remedy the breach within ten (10) days\ + \ of receipt of written notice thereof stating MaxMind's intent to terminate upon non-cure\ + \ of the breach. Your failure to comply with the Restrictions on Use is a breach of a material\ + \ term of this Agreement.\n\nNO CONSEQUENTIAL DAMAGES/LIMITATION ON LIABILITY.\n\nUnder\ + \ no circumstances, including negligence, shall MaxMind or any related party or supplier\ + \ be liable for indirect, incidental, special, consequential, or punitive damages, or for\ + \ loss of profits, revenue, or data, that are directly or indirectly related to the use\ + \ of or the inability to access and use the Services, whether in an action in contract,\ + \ tort, product liability, strict liability, statute, or otherwise, even if MaxMind has\ + \ been advised of the possibility of those damages. The total liability of MaxMind, in connection\ + \ with a loss or damages arising hereunder (an \"Occurrence\") is limited to the greater\ + \ of $100 or the lowest amount permitted by applicable law.\n\nNO WARRANTIES/AVAILABILITY.\n\ + \nMaxMind furnishes the Services on an as-is, as-available basis. MaxMind makes no warranty,\ + \ express or implied, with respect to their capability, accuracy, or completeness. All warranties\ + \ of any type, express or implied, including the warranties of merchantability, fitness\ + \ for a particular purpose, and non-infringement of third party rights are expressly disclaimed.\ + \ Furthermore, since the availability of Services offered through the Website is dependent\ + \ upon many factors beyond MaxMind's control, MaxMind does not guarantee uninterrupted availability\ + \ of any such Services. Any such Services may be inoperative and/or unavailable due to technical\ + \ difficulties or for maintenance purposes, at any time and without notice. While MaxMind\ + \ does not warrant that the MaxMind Website is free of harmful components, MaxMind shall\ + \ make commercially reasonable efforts to maintain the Website free of viruses and malicious\ + \ code.\n\nGOVERNING LAW.\n\nThis Agreement shall be governed and interpreted pursuant to\ + \ the laws of the Commonwealth of Massachusetts, applicable to contracts made and to be\ + \ performed wholly in Massachusetts, without regard to principles of conflicts of laws.\ + \ You specifically consent to personal jurisdiction in Massachusetts in connection with\ + \ any dispute between you and MaxMind arising out of this Agreement. You agree that the\ + \ exclusive venue for any dispute hereunder shall be in the state and federal courts in\ + \ Boston, Massachusetts. This Agreement shall be construed and interpreted in English, and\ + \ any translation hereof to a language other than English shall be for convenience only.\n\ + \nNOTICES.\n\nNotices given under this Agreement shall be in writing and sent by facsimile,\ + \ email, or by first class mail or equivalent. MaxMind shall direct notice to you at the\ + \ email address or physical mailing address you provided in the registration process. You\ + \ shall direct notice to MaxMind at the following address:\n\nMaxMind, Inc.\n14 Spring Street,\ + \ Suite 3\nWaltham, MA 02451\nU.S.A.\nEmail: legal@maxmind.com\n\nEither party may change\ + \ its notice contact information at any time by giving notice of the new contact information\ + \ as provided in this section.\n\nCOMPLETE AGREEMENT.\n\nThis Agreement (which includes\ + \ the policies, terms and conditions referenced above and incorporated herein) represents\ + \ the entire agreement between you and MaxMind with respect to the subject matter hereof\ + \ and supersedes all previous representations, understandings, or agreements, oral and written,\ + \ between the parties regarding the subject matter hereof. The headings contained in this\ + \ Agreement are for convenience only and shall not govern its interpretation.\n\nASSIGNMENT.\n\ + \nYou may not assign this Agreement without MaxMind's prior written consent. MaxMind may\ + \ assign its rights and obligations under this Agreement without your consent.\n\nSEVERABILITY.\n\ + \nShould any provision of this Agreement be held void, invalid, or inoperative, such decision\ + \ shall not affect any other provision hereof, and the remainder of this Agreement shall\ + \ be effective as though such void, invalid, or inoperative provision had not been contained\ + \ herein.\n\nCOMPLIANCE WITH LAW.\n\nNotwithstanding any provisions of this Agreement to\ + \ the contrary, you shall in performance of this Agreement comply with all applicable laws,\ + \ executive orders, regulations ordinances and rules of all governments (“Applicable Laws”),\ + \ including all applicable export and re-export control laws and regulations, such as the\ + \ Export Administration Regulations (“EAR”) maintained by the USA Department of Commerce,\ + \ trade and economic sanctions maintained by the USA Treasury Department’s Office of Foreign\ + \ Assets Control, and the International Traffic in Arms Regulations (“ITAR”) maintained\ + \ by the USA Department of State. Specifically, and without limitation, you agree that\ + \ you shall not, directly or indirectly, sell, export, re-export, transfer, divert, or otherwise\ + \ dispose of any Services (including products derived from or based on such Services) to\ + \ any destination, entity, or person prohibited by the laws or regulations of the USA, without\ + \ obtaining prior authorization from the competent government authorities as required by\ + \ those laws and regulations." json: maxmind-geolite2-eula-2019.json - yml: maxmind-geolite2-eula-2019.yml + yaml: maxmind-geolite2-eula-2019.yml html: maxmind-geolite2-eula-2019.html - text: maxmind-geolite2-eula-2019.LICENSE + license: maxmind-geolite2-eula-2019.LICENSE - license_key: maxmind-odl + category: Free Restricted spdx_license_key: LicenseRef-scancode-maxmind-odl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "OPEN DATA LICENSE\n\nAll advertising materials and documentation mentioning features\ + \ or use of\nthis database must display the following acknowledgment:\n\"This product includes\ + \ GeoLite data created by MaxMind, available from\nhttp://maxmind.com/\"\n\nRedistribution\ + \ and use with or without modification, are permitted provided\nthat the following conditions\ + \ are met:\n1. Redistributions must retain the above copyright notice, this list of\nconditions\ + \ and the following disclaimer in the documentation and/or other\nmaterials provided with\ + \ the distribution. \n2. All advertising materials and documentation mentioning features\ + \ or use of\nthis database must display the following acknowledgement:\n\"This product includes\ + \ GeoLite data created by MaxMind, available from\nhttp://maxmind.com/\"\n3. \"MaxMind\"\ + \ may not be used to endorse or promote products derived from this\ndatabase without specific\ + \ prior written permission.\n\nTHIS DATABASE IS PROVIDED BY MAXMIND, INC ``AS IS'' AND ANY\ + \ \nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED \nWARRANTIES\ + \ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE \nDISCLAIMED. IN NO EVENT\ + \ SHALL MAXMIND BE LIABLE FOR ANY \nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\ + \ CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\ + \ OR SERVICES; \nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED\ + \ AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT \n(INCLUDING\ + \ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS \nDATABASE, EVEN IF\ + \ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." json: maxmind-odl.json - yml: maxmind-odl.yml + yaml: maxmind-odl.yml html: maxmind-odl.html - text: maxmind-odl.LICENSE + license: maxmind-odl.LICENSE - license_key: mcafee-tou + category: Proprietary Free spdx_license_key: LicenseRef-scancode-mcafee-tou other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + McAfee Software royalty-Free License + + Definitions. + + "Software" means (a) all computer code (whether in binary or source format), programs, and related documentation in any tangible or intangible medium, and all related documentation, that are owned by McAfee and with which this Royalty-Free License is provided or referenced, whether such materials are provided directly by McAfee or by its distributors, resellers, OEM/MSP partners, or other business partners, and (b) all upgrades, modifications, subsequent versions and updates of the Software. For avoidance of doubt, updates include any DAT file (virus signature) updates provided by McAfee. + + "Computer" means a device that accepts information in digital or similar form and manipulates it for a specific result based upon a sequence of instructions. + + License Grant. Subject to the Restrictions below, McAfee hereby grants to You a royalty-free, non-exclusive, non-transferable right under its copyrights to download, install, run, operate and display the Software on computers and computer systems within your internal environment. + + License Restrictions + + No Implied Subscription License – The Software provided hereunder is designed to operate as an independent, stand-alone process, buy may interact with other McAfee software products that are licensed to You under a subscription model. The License Grant herein does not extend, expand, supersede or otherwise grant You rights which are not specifically granted to You in Your subscription licenses for other McAfee software products. + + Third party materials: The Software may include third party materials (e.g. computer code, documentation, etc.) that are subject to an open source licensing model. Your rights to these third party materials may be subject terms and conditions that grant You additional or different rights and restrictions than your rights and restrictions to the Software. + + No reverse engineering, or other modifications: You may not reverse engineer, decompile, or disassemble or attempt to discover the source code of the Software provided in binary form, except to the extent the foregoing restriction is expressly prohibited by applicable law or as expressly permitted in the Software documentation. You may not modify or create derivative works of the Software in whole or in part, except as expressly permitted in the Software documentation. You may not remove or alter any proprietary notices or labels on the Software. + + No transfer or assignment: Except as specifically permitted within this Royalty-Free License, You may not sell, lease, license, rent, loan, resell, assign or otherwise transfer, with or without consideration, your rights to the Software. + + Ownership. The Software is protected by United States’ and other copyright laws, international treaty provisions and other applicable laws in the country in which it is being used. McAfee and its suppliers own and retain all right, title and interest in and to the Software, including all copyrights, patents, trade secret rights, trademarks and other intellectual property rights therein. Your possession, installation, or use of the Software does not transfer to You any title to the intellectual property in the Software, or affect such title, and You will not acquire any ownership of or rights to the Software except as expressly set forth in this Agreement. Any copy of the Software and Documentation authorized to be made hereunder must contain the same proprietary notices that appear on and in the Software and Documentation. All rights not expressly set forth hereunder are reserved by McAfee. + + Third party IT system management. If You employ or contract a third party to manage or operate your computer or information technology resources (a "Managing Party), You may authorize the Managing Party to exercise your license rights under this Royalty-Free License as Your agent, provided that the Managing Party does not violate any of the License Restrictions and that You will be liable for all damages and legal remedies available to McAfee in the event of a breach of this License by your Managing Party. + + Warranty and Disclaimer. THE SOFTWARE IS PROVIDED "AS IS" WITH NO WARRANTY WHATSOEVER, EXPRESS OR IMPLIED, INCLUDING THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE. You assume responsibility for selecting the Software to achieve your intended results, and for the installation of, use of, and results obtained from the Software. Without limiting the foregoing provisions, McAfee makes no warranty that the software will be error-free or free from interruptions or other failures or that the software will meet your requirements. + + NO LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT, CONTRACT, OR OTHERWISE, WILL MCAFEE OR ITS SUPPLIERS BE LIABLE TO YOU FOR ANY DAMAGES OF ANY KIND, WHETHER SUCH DAMAGES ARE CATEGORIZED AS DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS OR GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR FOR ANY OTHER DAMAGE OR LOSS. + + INDEMNIFICATION. You agree to indemnify and hold McAfee and its subsidiaries, affiliates, officers, agents, and employees harmless from any claim or demand, including attorney's fees, made by any third party due to or arising out of Your use of the Software in breach of this Agreement, or in violation of the rights of a third party. + + Notice to United States Government End Users. The Software and accompanying Documentation are deemed to be "commercial computer software" and "commercial computer software documentation," respectively, pursuant to DFAR Section 227.7202 and FAR Section 12.212, as applicable. Any use, modification, reproduction, release, performance, display or disclosure of the Software and accompanying Documentation by the United States Government shall be governed solely by the terms of this Agreement and shall be prohibited except to the extent expressly permitted by the terms of this Agreement. + + Export Controls. You acknowledge that the Software is subject to the export control laws and regulations of the United State of America ("US"), and any amendments thereof. You shall not export or re-export the Software, directly or indirectly, to (i) any countries that are subject to US export restrictions (currently including, but not necessarily limited to, Cuba, Iran, North Korea, Sudan, and Syria); (ii) any end user known, or having reason to be known, will utilize them in the design, development or production of nuclear, chemical or biological weapons; or (iii) any end user who has been prohibited from participating in the US export transactions by any federal agency of the US government. You further acknowledge that Software may include technical data subject to export and re-export restrictions imposed by US law. + + High Risk Activities. The Software is not fault-tolerant and is not designed or intended for use in hazardous environments requiring fail-safe performance, including without limitation, in the operation of nuclear facilities, aircraft navigation or communication systems, air traffic control, weapons systems, direct life-support machines, or any other application in which the failure of the Software could lead directly to death, personal injury, or severe physical or property damage (collectively, "High Risk Activities"). McAfee expressly disclaims any express or implied warranty of fitness for High Risk Activities. + + Governing Law. This Agreement will be governed by and construed in accordance with the substantive laws of the State of California. + + Miscellaneous. This Agreement, including all documents incorporated by reference, represents the entire agreement between the parties, and expressly supersedes and cancels any other communication, representation or advertising whether oral or written, on the subjects herein. This Agreement may not be modified except by a written addendum issued by a duly authorized representative of McAfee. No provision hereof shall be deemed waived unless such waiver shall be in writing and signed by McAfee. If any provision of this Agreement is held invalid, the remainder of this Agreement shall continue in full force and effect. json: mcafee-tou.json - yml: mcafee-tou.yml + yaml: mcafee-tou.yml html: mcafee-tou.html - text: mcafee-tou.LICENSE + license: mcafee-tou.LICENSE - license_key: mcrae-pl-4-r53 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-mcrae-pl-4-r53 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Preamble\n\t--------\n\tYour GRAN.\n\n\n\tMCRAE GENERAL PUBLIC LICENSE (version 4.r53)\n\ + \t--------------------------------------------\n\tThis license applies to any work containing\ + \ a notice placed by the\n\tcopyright holder (that would be ME) saying it is uses the McRae\n\ + \tGeneral Public License. \"The work\" refers to any such work.\n\n\tThis license stipulates\ + \ that it is strictly forbidden to redistribute\n\tor use the work in any manner that could\ + \ possibly be construed as\n\tmaking anybody any money, or I'll sue you. No! You will NOT\ + \ do that!\n\tOkee? And if you don't agree with these terms, you can print out the\n\tsource\ + \ to the work and stick it up your ARSE.\n\n\tAye, but otherwise feel free to take \"the\ + \ work\" and do what you like.\n\tIf you're TOO BLOODY LAZY to do it yourself, I cannae\ + \ help it. OK?" json: mcrae-pl-4-r53.json - yml: mcrae-pl-4-r53.yml + yaml: mcrae-pl-4-r53.yml html: mcrae-pl-4-r53.html - text: mcrae-pl-4-r53.LICENSE + license: mcrae-pl-4-r53.LICENSE - license_key: mediainfo-lib + category: Permissive spdx_license_key: LicenseRef-scancode-mediainfo-lib other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + MediaInfo(Lib) License + + Version 1.1, 3 January 2010 + + Copyright 2002-2010 MediaArea.net SARL. All rights reserved. + + Redistribution and use in source and binary forms, 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. + + Redistribution and use in source and binary forms, with modification, are permitted provided that the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version is met. Dynamic or static linking to this software are not deemed a modification. + + THIS SOFTWARE IS PROVIDED BY MEDIAAREA.NET SARL ``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 MEDIAAREA.NET 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. json: mediainfo-lib.json - yml: mediainfo-lib.yml + yaml: mediainfo-lib.yml html: mediainfo-lib.html - text: mediainfo-lib.LICENSE + license: mediainfo-lib.LICENSE - license_key: melange + category: Proprietary Free spdx_license_key: LicenseRef-scancode-melange other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MELANGE CHAT SERVER/CLIENT PUBLIC LICENSE\nVersion 1.1, 21 October 1998\n\t\nCopyright\ + \ (C) 1998,1999 by Christian Walter, chris@terminal.at\nhttp://www.terminal.at/melange\n\ + \t\t \n1. This software may be freely copied, modified and redistributed without\nfee for\ + \ NON-COMMERCIAL (for commercial use see below) purposes provided that\nthis copyright notice\ + \ and my name are preserved intact on all copies and\nmodified copies, so I get my credit\ + \ for the work I put into this.\nFeel free to run this, modify it, debug it, send me comments,\ + \ insults etc.\n\t \n2. There is no warranty or other guarantee of fitness of this software.\n\ + It is provided solely \"as is\". The author disclaims all\nresponsibility and liability\ + \ with respect to this software's usage\nor its effect upon hardware or computer systems.\n\ + \t\n3. This software is free of charge for non-commercial & commerical USE.\nNo money, donations,\ + \ etc are required. If you want to sell this software,\nno matter if it's sold \"as is\"\ + \ or modified, a licensing agreement is\nrequired. You may send enquiries to: chris@terminal.at\n\ + What does that mean: If you use this software e.g on a commercial or\nnon-commercial website,\ + \ you don't need a license - Only if you make\nmoney with this software or with parts or\ + \ modified parts of this software\nyou have to get a licensing agreement.\n\n4. Have fun\ + \ with it, and feel free to contact me if you have any problems\nnot covered by the documentation\ + \ or if you find a bug.\nIf you want to modify this software, why not choin the DEVELOPER-FORUM\ + \ ?\nDetails at the MELANGE homepage: http://www.terminal.at/melange\n\nChris\n\nVienna,\ + \ October 1998\n\t\n\t \n\t\n NO WARRANTY\n\t\n\tBECAUSE THE PROGRAM\ + \ IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\n\tFOR THE PROGRAM, TO THE EXTENT PERMITTED\ + \ BY APPLICABLE LAW. EXCEPT WHEN\n\tOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\ + \ OTHER PARTIES\n\tPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\n\ + \tOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n\tMERCHANTABILITY\ + \ AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\n\tTO THE QUALITY AND PERFORMANCE\ + \ OF THE PROGRAM IS WITH YOU. SHOULD THE\n\tPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST\ + \ OF ALL NECESSARY SERVICING,\n\tREPAIR OR CORRECTION.\n\t\n\tIN NO EVENT UNLESS REQUIRED\ + \ BY APPLICABLE LAW OR AGREED TO IN WRITING\n\tWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY\ + \ WHO MAY MODIFY AND/OR\n\tREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\ + \ FOR DAMAGES,\n\tINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\n\ + \tOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\n\tTO LOSS OF\ + \ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\n\tYOU OR THIRD PARTIES\ + \ OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\n\tPROGRAMS), EVEN IF SUCH HOLDER\ + \ OR OTHER PARTY HAS BEEN ADVISED OF THE\n\tPOSSIBILITY OF SUCH DAMAGES." json: melange.json - yml: melange.yml + yaml: melange.yml html: melange.html - text: melange.LICENSE + license: melange.LICENSE - license_key: mentalis + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + 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. + + - Neither the name of the copyright owner, 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. json: mentalis.json - yml: mentalis.yml + yaml: mentalis.yml html: mentalis.html - text: mentalis.LICENSE + license: mentalis.LICENSE - license_key: merit-network-derivative + category: Copyleft spdx_license_key: LicenseRef-scancode-merit-network-derivative other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "Permission to use, copy, and modify this software and its documentation \nfor any purpose\ + \ and without fee is hereby granted, provided: \n\n1) that the above copyright notice and\ + \ this permission notice appear in all\n copies of the software and derivative works or\ + \ modified versions thereof, \n\n2) that both the copyright notice and this permission and\ + \ disclaimer notice \n appear in all supporting documentation, and \n\n3) that all derivative\ + \ works made from this material are returned to the\n Regents of the University of Michigan\ + \ and Merit Network, Inc. with\n permission to copy, to display, to distribute, and to\ + \ make derivative\n works from the provided material in whole or in part for any purpose.\n\ + \nUsers of this code are requested to notify Merit Network, Inc. of such use\nby sending\ + \ email to aaa-admin@merit.edu\n\nPlease also use aaa-admin@merit.edu to inform Merit Network,\ + \ Inc of any\nderivative works.\n\nDistribution of this software or derivative works or\ + \ the associated\ndocumentation is not allowed without an additional license.\n\nLicenses\ + \ for other uses are available on an individually negotiated\nbasis. Contact aaa-license@merit.edu\ + \ for more information.\n\nTHIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND,\ + \ EITHER\nEXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF\nMERCHANTABILITY\ + \ AND FITNESS FOR A PARTICULAR PURPOSE. THE REGENTS OF THE\nUNIVERSITY OF MICHIGAN AND\ + \ MERIT NETWORK, INC. DO NOT WARRANT THAT THE\nFUNCTIONS CONTAINED IN THE SOFTWARE WILL\ + \ MEET LICENSEE'S REQUIREMENTS OR\nTHAT OPERATION WILL BE UNINTERRUPTED OR ERROR FREE. \ + \ The Regents of the\nUniversity of Michigan and Merit Network, Inc. shall not be liable\ + \ for any\nspecial, indirect, incidental or consequential damages with respect to any\n\ + claim by Licensee or any third party arising from use of the software." json: merit-network-derivative.json - yml: merit-network-derivative.yml + yaml: merit-network-derivative.yml html: merit-network-derivative.html - text: merit-network-derivative.LICENSE + license: merit-network-derivative.LICENSE - license_key: metageek-inssider-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-metageek-inssider-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + inSSIDer End User License Agreement + + END-USER LICENSE AGREEMENT FOR inSSIDer. IMPORTANT PLEASE READ THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT CAREFULLY BEFORE CONTINUING WITH THIS PROGRAM INSTALL: MetaGeek, LLC's End-User License Agreement ("EULA") is a legal agreement between you, either an individual or a single entity (referred to as the "licensee") and MetaGeek, LLC for the MetaGeek software product(s) identified above which may include associated software components, media, printed materials, and "online" or electronic documentation ("SOFTWARE PRODUCT"). By installing, copying, or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. This license agreement represents the entire agreement concerning the program between you and MetaGeek LLC, (referred to as "licenser"), and it supersedes any prior proposal, representation, or understanding between the parties. If you do not agree to the terms of this EULA, do not install or use the SOFTWARE PRODUCT. + + The SOFTWARE PRODUCT is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The SOFTWARE PRODUCT is licensed, not sold. + + License: + This License is for personal use only. This License permits the licensee to install the SOFTWARE PRODUCT on more than one computer system, as long as the SOFTWARE PRODUCT will not be used on more than one computer system simultaneously. Licensee will not make copies of the SOFTWARE PRODUCT or allow copies of the SOFTWARE PRODUCT to be made by others, unless authorized by this License Agreement. Licensee may make copies of the SOFTWARE PRODUCT for backup purposes only. + + Licensee may not modify or translate the program or documentation. User may not disassemble the program or allow it to be disassembled into its constituent source code. Licensee's use of the SOFTWARE PRODUCT indicates his/her acceptance of these terms and conditions. If the licensee does not agree to these conditions, they should return the distribution media, documentation, and associated materials to the vendor from whom the SOFTWARE PRODUCT was purchased, and erase the SOFTWARE PRODUCT from any and all storage devices upon which it may have been installed. This license agreement shall be governed by the laws of the United States of America, the State of Idaho, and shall inure to the benefit of MetaGeek, LLC or its assigns. + + Disclaimer / limitation of liability: + Licensee acknowledges that the SOFTWARE PRODUCT may not be free from defects and may not satisfy all of the licensee's needs. The SOFTWARE PRODUCT is licensed "as is". In no event will MetaGeek, LLC be liable for direct, indirect, incidental or consequential damage or damages resulting from loss of use, or loss of anticipated profits resulting from any defect in the SOFTWARE PRODUCT, even if it has been advised of the possibility of such damage. Some laws do not allow the exclusion or limitation of implied warranties or liabilities for incidental or consequential damages, so the above limitations or exclusion may not apply. + + Specific restrictions: + In accordance with the computer software rental act of 1990, this SOFTWARE PRODUCT may not be rented, lent or leased. This license is does not extend rights of usage for commercial purposes. + + The SOFTWARE PRODUCT and accompanying documentation may not be provided by a “backup service" or any other vendor which does not provide an original package as composed by MetaGeek, LLC, including but not limited to all original distribution media, documentation, registration cards, and insertions. + + Copyrights: + Copyright 2005-2019 MetaGeek, LLC. All rights reserved. + inSSIDer is copyright 2007-2019 MetaGeek, LLC. All rights reserved. + + Trademarks: + MetaGeek and inSSIDer are registered trademarks of MetaGeek, LLC. json: metageek-inssider-eula.json - yml: metageek-inssider-eula.yml + yaml: metageek-inssider-eula.yml html: metageek-inssider-eula.html - text: metageek-inssider-eula.LICENSE + license: metageek-inssider-eula.LICENSE - license_key: metrolink-1.0 + category: Copyleft spdx_license_key: LicenseRef-scancode-metrolink-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + METRO LINK PUBLIC LICENSE + MOTIF GRAPHICAL USER INTERFACE SOFTWARE + Version 1.00 + + THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS METRO LINK PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + + 1. DEFINITIONS + + "Contribution" means: + + in the case of METRO LINK, INCORPORATED ("METRO LINK"), the Metro Link Program, and + + in the case of each Contributor, + + changes to the Program, and + additions to the Program; + + where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. + + "Contributor" means The Open Group, METRO LINK and any other entity that distributes the Program. + + "Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. + + "Open Source" programs mean software for the source code is available without confidential or trade secret restrictions and for which the source code and object code are available for distribution without license charges. + + "Metro Link Program" means the original version of the software accompanying this Agreement as released by METRO LINK, including source code, object code and documentation, if any. + + "Program" means the Metro Link Program and Contributions. + + "Recipient" means anyone who receives the Program under this Agreement, including all Contributors. + + 2. GRANT OF RIGHTS + + The rights granted under this license are limited solely to distribution and sublicensing of the Contribution(s) on, with or for operating systems which are themselves Open Source programs. + + Subject to the terms of this Agreement, The Open Group Public License Agreement attached hereto ("The Open Group Agreement") and the limitations of this Section 2, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. + + Subject to the terms of this Agreement, The Open Group Agreement and this Section 2, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. + + Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. + + Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. + + + 3. REQUIREMENTS + + A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: + + it complies with the terms and conditions of this Agreement and The Open Group Agreement; and + + its license agreement: + + + effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; + effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; + states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and + states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. + + When the Program is made available in source code form: + + it must be made available under this Agreement and the Open Group Agreement; and + + a copy of this Agreement must be included with each copy of the Program. + + + Each Contributor must include the following in a conspicuous location in the Program: + + Copyright (C) May, 2000 The Open Group, Metro Link, Incorporated and others. All Rights Reserved + + In addition, each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. + + 4. COMMERCIAL DISTRIBUTION + + Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: + + a) promptly notify the Commercial Contributor in writing of such claim, and + + b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. + + The Indemnified Contributor may participate in any such claim at its own expense. + + For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. + + 5. NO WARRANTY + + EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED 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. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. + + 6. DISCLAIMER OF LIABILITY + + EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. GENERAL + + If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + + If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. + + All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. + + METRO LINK may publish new versions (including revisions) of this Agreement from time to time. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. No one other than METRO LINK has the right to modify this Agreement. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. + + This Agreement is governed by the laws of the State of Florida and the intellectual property laws of the United States of America. + + No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. json: metrolink-1.0.json - yml: metrolink-1.0.yml + yaml: metrolink-1.0.yml html: metrolink-1.0.html - text: metrolink-1.0.LICENSE + license: metrolink-1.0.LICENSE - license_key: mgopen-font-license + category: Permissive spdx_license_key: LicenseRef-scancode-mgopen-font-license other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: + + The above copyright and this permission notice shall be included in all copies of one or more of the Font Software typefaces. + + The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing the word "MgOpen", or if the modifications are accepted for inclusion in the Font Software itself by the each appointed Administrator. + + This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "MgOpen" name. + + The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. + + THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL MAGENTA OR PERSONS OR BODIES IN CHARGE OF ADMINISTRATION AND MAINTENANCE OF THE FONT SOFTWARE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. json: mgopen-font-license.json - yml: mgopen-font-license.yml + yaml: mgopen-font-license.yml html: mgopen-font-license.html - text: mgopen-font-license.LICENSE + license: mgopen-font-license.LICENSE - license_key: michael-barr + category: Permissive spdx_license_key: LicenseRef-scancode-michael-barr other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This software is placed into the public domain and may be used for any purpose. + However, this notice must not be changed or removed and no warranty is either + expressed or implied by its publication or distribution. json: michael-barr.json - yml: michael-barr.yml + yaml: michael-barr.yml html: michael-barr.html - text: michael-barr.LICENSE + license: michael-barr.LICENSE - license_key: michigan-disclaimer + category: Permissive spdx_license_key: LicenseRef-scancode-michigan-disclaimer other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is granted to use, copy, create derivative works + and redistribute this software and such derivative works + for any purpose, so long as the name of The University of + Michigan is not used in any advertising or publicity + pertaining to the use of distribution of this software + without specific, written prior authorization. If the + above copyright notice or any other identification of the + University of Michigan is included in any copy of any + portion of this software, then the disclaimer below must + also be included. + + THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION + FROM THE UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY + PURPOSE, AND WITHOUT WARRANTY BY THE UNIVERSITY OF + MICHIGAN OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING + WITHOUT LIMITATION THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE + REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE + FOR ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR + CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING + OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN + IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF + SUCH DAMAGES. json: michigan-disclaimer.json - yml: michigan-disclaimer.yml + yaml: michigan-disclaimer.yml html: michigan-disclaimer.html - text: michigan-disclaimer.LICENSE + license: michigan-disclaimer.LICENSE - license_key: microchip-linux-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-microchip-linux-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + REDISTRIBUTION: Permission is hereby granted by Microchip Technology + Incorporated (Microchip), free of any license fees, to any person obtaining a + copy of this firmware (the "Software"), to install, reproduce, copy and + distribute copies, in binary form, hexadecimal or equivalent formats only, the + Software and to permit persons to whom the Software is provided to do the same, + subject to the following conditions: + + * Any redistribution of the Software must reproduce the above copyright notice, + this license notice, and the following disclaimers and notices in the + documentation and/or other materials provided with the Software. + + * Neither the name of Microchip, its products nor the names of its suppliers + may be used to endorse or promote products derived from this Software without + specific prior written permission. + + * No reverse engineering, decompilation, or disassembly of this Software is + permitted. + + Limited patent license. Microchip grants a world-wide, royalty-free, + non-exclusive, revocable license under any patents that it now has or hereafter + may have, own or control related to the Software to make, have made, use, + import, offer to sell and sell ("Utilize") this Software, but solely to the + extent that any such patent is necessary to Utilize the Software in conjunction + with Microchip processors. The patent license shall not apply to any other + combinations which include this Software nor to any other Microchip patents or + patent rights. No hardware per se is licensed hereunder. + + DISCLAIMER: THIS SOFTWARE IS PROVIDED BY MICROCHIP "AS IS" AND ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE + DISCLAIMED. IN NO EVENT SHALL ATMEL 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. json: microchip-linux-firmware.json - yml: microchip-linux-firmware.yml + yaml: microchip-linux-firmware.yml html: microchip-linux-firmware.html - text: microchip-linux-firmware.LICENSE + license: microchip-linux-firmware.LICENSE +- license_key: microchip-products-2018 + category: Proprietary Free + spdx_license_key: LicenseRef-scancode-microchip-products-2018 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + /*------------------------------------------------------------------------------------------------*/ + /* (c) 2018 Microchip Technology Inc. and its subsidiaries. */ + /* */ + /* You may use this software and any derivatives exclusively with Microchip products. */ + /* */ + /* THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR */ + /* STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY IMPLIED WARRANTIES OF NON-INFRINGEMENT, */ + /* MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE, OR ITS INTERACTION WITH MICROCHIP */ + /* PRODUCTS, COMBINATION WITH ANY OTHER PRODUCTS, OR USE IN ANY APPLICATION. */ + /* */ + /* IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE, INCIDENTAL OR */ + /* CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND WHATSOEVER RELATED TO THE SOFTWARE, */ + /* HOWEVER CAUSED, EVEN IF MICROCHIP HAS BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE */ + /* FORESEEABLE. TO THE FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS */ + /* IN ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY, THAT YOU HAVE */ + /* PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE. */ + /* */ + /* MICROCHIP PROVIDES THIS SOFTWARE CONDITIONALLY UPON YOUR ACCEPTANCE OF THESE TERMS. */ + /*------------------------------------------------------------------------------------------------*/ + json: microchip-products-2018.json + yaml: microchip-products-2018.yml + html: microchip-products-2018.html + license: microchip-products-2018.LICENSE - license_key: microsoft-enterprise-library-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-enterprise-library-eula other_spdx_license_keys: - LicenseRef-scancode-microsoft-enterprise-library-eula is_exception: no is_deprecated: no - category: Proprietary Free + text: | + END USER LICENSE AGREEMENT: + + Enterprise Library + + June 2005 + + This license governs use of the accompanying software and associated documentation and other content ("Software"), and your use of the Software constitutes acceptance of this license. + + Subject to the restrictions below and any guidelines in the accompanying documentation, you may use the Software for any commercial or noncommercial purpose, including making copies, distributing modifications, and combining it with your own products or services. All references to modifications herein mean modifications to the Software and include "derivative works" as such term is defined under U.S. copyright law. + + In return, we simply require that you agree: + + Not to remove any copyright or other notices from the Software. + That you have no right to combine or distribute the Software or modifications with other software or content that is licensed under terms that seek to require that the Software or modifications (or any intellectual property in it) be provided in source code form, licensed to others to allow the creation or distribution of derivative works, or distributed without charge. + That if you distribute: + the Software in source code form, you may do so only under this license (i.e., you must include a complete copy of this license with your distribution), and + the Software solely in object code form, or modifications in either source or object code form, you do so only under a license that complies with this license. + That you will + not use Microsoft's or its suppliers' names, logos, or trademarks in conjunction with distribution of the Software or modifications, unless we give you prior written permission or instruction to do so; + display the following copyright notice on copies of modifications you distribute: + "Contains software or other content adapted from Microsoft patterns & practices Enterprise Library, © 2005 Microsoft Corporation. All rights reserved."; and + + defend, indemnify, and hold harmless us and our suppliers from any claims or lawsuits and associated losses, damages, liabilities, penalties fines, costs, and expenses, including reasonable attorneys' fees, that arise from or relate to the use or distribution of your modifications and any additional software or content you distribute in conjunction with the Software or modifications. + That if you distribute modifications, you will cause the modified files to carry prominent notices so that recipients know they are not receiving the original Software. Such notices must (a) state that you have changed the Software, (b) include the date of any changes, and (c) to the extent reasonably practicable, comply with any guidelines about modifications in the documentation accompanying the Software. + That the Software comes "AS IS", WITH ALL FAULTS. You bear the risk of using it. We give no express warranties, guarantees or conditions. To the extent permitted under your local laws, we exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. Also, you must pass this disclaimer on when you distribute the Software or modifications. + That you can recover from Microsoft and its suppliers only direct damages up to US$5.00. You cannot recover any other damages, including those known as consequential, lost profits, special, indirect or incidental damages. Also, you must pass this limitation of liability on when you distribute the Software or modifications. + That if you sue anyone over patents that you think may apply to the Software for a person's use of the Software, your license to the Software ends automatically. + That the patent rights, if any, granted in this license only apply to the Software, and do NOT extend to any component or file not included in the Software, including any modifications to the Software, any other software or technology needed to use the Software, or any combination of the Software with other software or hardware. + That you may run the Software or modifications only on the Windows platform. + That you may not disclose to anyone, without our prior written permission, the results of any performance tests on the Software. + That we are not required to provide you any support, bug fixes, updates, new versions, or supplements for the Software, but if we do, they will be deemed part of the Software and governed by this license, unless other terms are provided with them. + That if you give us any feedback about the Software, you give us, without charge, the right to use, share and commercialize your feedback in any way and for any purpose. You also agree to give third parties, without charge, any patent rights needed for their products or services to use or interface with any specific parts of our software or service that includes the feedback. You will not give feedback that is subject to a license that seeks to require us to license our software or documentation to third parties because we include your feedback in them. These rights survive this agreement. + That we may collect and use technical information, gathered as part of support or other services provided to you related to the Software, to improve our products or services or provide customized services or technologies to you. We may disclose this information to others, but not in a form that personally identifies you. These rights survive this agreement. + That the Software may be subject to U.S. export jurisdiction at the time we license it to you, and it may be subject to additional export or import laws in other places. You agree to comply with all such laws and regulations that may apply to the Software after we deliver it to you. + That your rights under this license end automatically if you breach it in any way. + That this license contains the only rights associated with the Software, and we reserve all rights not expressly granted to you in this license. + That this license may not be amended except in a writing duly signed by your and our authorized representatives. + That if any of these terms is held void, invalid, illegal, or otherwise unenforceable, the other terms will continue in full force and effect. json: microsoft-enterprise-library-eula.json - yml: microsoft-enterprise-library-eula.yml + yaml: microsoft-enterprise-library-eula.yml html: microsoft-enterprise-library-eula.html - text: microsoft-enterprise-library-eula.LICENSE + license: microsoft-enterprise-library-eula.LICENSE - license_key: microsoft-windows-rally-devkit + category: Proprietary Free spdx_license_key: LicenseRef-scancode-microsoft-windows-rally-devkit other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT WINDOWS RALLY DEVELOPMENT KIT\nThese license\ + \ terms are an agreement (\"Agreement\") between Microsoft Corporation (or based on where\ + \ you live, one of its affiliates) and the individual or entity identified and signing below\ + \ (\"you\"). They apply to the sample code for Link Layer Topology Discovery and Plug and\ + \ Play Extensions (\"Sample Code\"), which includes the media on which you received the\ + \ Sample Code, if any. The terms also apply to any Microsoft\n•\tupdates,\n•\tsupplements,\n\ + •\tInternet-based services, and \n•\tsupport services\nfor this Sample Code, unless other\ + \ terms accompany those items. If so, those terms apply.\nIf You want a license from Microsoft\ + \ to use the Sample Code, You must indicate your agreement to the terms of this Agreement\ + \ by checking the \"I Agree\" box below. If you do not check the \"I Agree\" box, you have\ + \ no right to use the Sample Code. This Agreement is effective on the date you check the\ + \ \"I Agree\" box (the \"Effective Date\").YOU MUST HAVE ENTERED INTO A MICROSOFT WINDOWS\ + \ RALLY COMPONENT LICENSE AGREEMENT (available www.microsoft.com/rally) WITH MICROSOFT (\"\ + Program Agreement\") BEFORE YOU USE THIS SAMPLE CODE..\nIf you accept these license terms\ + \ and you have entered into and are in compliance with the Microsoft Windows Rally Component\ + \ Agreement, you have the rights below.\n1.\tINSTALLATION AND USE RIGHTS. You may install,\ + \ compile and use any number of copies of the Sample Code on your devices to design, develop\ + \ and test your products.\n2.\tADDITIONAL LICENSE RIGHTS AND REQUIREMENTS.\na.\tRight to\ + \ Modify and Distribute. \ni. Distributable Code. You may modify, copy, use and distribute\ + \ the Distributable Code so long as you comply with the Program Agreement as well as all\ + \ applicable terms and conditions of this Agreement. You may, however, sublicense to OEMs\ + \ who have entered into a Program Agreement, the right to modify, copy and distribute the\ + \ Distributable Code, as set forth in Section 2(a)(ii). \"Distributable Code\" means the\ + \ source and object code form of the Sample Code in conjunction with and as part of an implementation\ + \ of the Licensed LLTD Specification as incorporated into a Consumer Product (as such terms\ + \ are defined in the Program Agreement). \nii. Third Party Distribution. The license\ + \ above only provides: (a) the right to grant to OEMs who purchase your products a sublicense\ + \ to modify the Distributable Code only as necessary to customize OEM products that incorporate\ + \ your Consumer Products and only so long as the OEM and the modified Distributable Code\ + \ complies with all terms and conditions of this Agreement and the Program Agreement; (b)\ + \ the right to grant to any of your OEMs, distributors and dealers a license to make, sell,\ + \ offer for sale and distribute an object code copy of the Distributable Code (or OEM modified\ + \ Distributable Code) in accordance with all applicable terms and conditions of this Agreement\ + \ and the Program Agreement; and (c) the right to grant to any end user a license to use\ + \ an object code copy of the Distributable Code (or OEM modified Distributable Code) in\ + \ accordance with all applicable terms and conditions of this Agreement and the Program\ + \ Agreement. With respect to any license or sublicense granted by you pursuant to this Section\ + \ 2: (i) the license or sublicense will terminate immediately and automatically (i.e. without\ + \ any notice or other action by either you or Microsoft) if this Agreement or the Program\ + \ Agreement terminates or expires; (ii) the license or sublicense must have terms and conditions\ + \ that are consistent with the terms and conditions of this Agreement and the Program Agreement;\ + \ and (iii) you will ensure that each licensee or sublicensee complies with the license\ + \ requirements and all other applicable terms and conditions of this Agreement and the Program\ + \ Agreement.\niii. Distribution Requirements. For any Distributable Code you distribute\ + \ or sublicense, you must \n•\trequire distributors, OEMs and end users to agree to terms\ + \ that protect the Distributable Code at least as much as this Agreement and the Program\ + \ Agreement, prohibit reverse engineering of the Distributable Code to the extent permitted\ + \ by applicable law and include disclaimers and limitations of any representations, warranties,\ + \ damages and liabilities of Microsoft and its affiliates to the same extent that your representations,\ + \ warranties, damages and liabilities are disclaimed or limited, provided that such disclaimers\ + \ and warranties need not identify Microsoft or any of its affiliates by name; \n•\tdisplay\ + \ your valid copyright notice on your products; and\n•\tindemnify, defend, and hold harmless\ + \ Microsoft from any claims, including attorneys’ fees, related to the distribution or use\ + \ of your products.\niv. Distribution Restrictions. You may not\n•\talter or remove any\ + \ copyright, trademark or patent notice in the Distributable Code or Sample Code; \n•\t\ + use Microsoft’s trademarks in your products’ names or in a way that suggests your products\ + \ come from or are endorsed by Microsoft, except as may be permitted by a separate written\ + \ agreement with Microsoft;\n•\tinclude Distributable Code in malicious, deceptive or unlawful\ + \ products; or\n•\tmodify the source code of the Sample Code or modify or distribute the\ + \ source code of any Distributable Code so that any part of it becomes subject to an Excluded\ + \ License. An Excluded License is one that requires, as a condition of use, modification\ + \ or distribution, that\n•\tthe code be disclosed or distributed in source code form; \n\ + •\tthat others have the right to modify it; or\n•\tthat the code be disclosed or distributed\ + \ free of charge.\nb.\tSample Code Modifications. You grant to Microsoft, under all patent\ + \ rights you or your affiliates have or obtain in the future and that you or your affiliates\ + \ are authorized to license without paying fees to any third party, and during the time\ + \ any such patent rights are in effect, a personal, nonexclusive, royalty-free, nonsublicensable,\ + \ worldwide license to make, have made, use, sell, offer for sale, import and distribute,\ + \ directly or indirectly, any modifications to or derivative works that you create based\ + \ upon the Sample Code during the first five years after you download it. \n3.\tSCOPE OF\ + \ LICENSE. The Sample Code is licensed, not sold. This Agreement only gives you some rights\ + \ to use the Sample Code. Microsoft reserves all other rights. Unless applicable law gives\ + \ you more rights despite this limitation, you may use the Sample Code only as expressly\ + \ permitted in this Agreement. In doing so, you must comply with any technical limitations\ + \ in the Sample Code that only allow you to use it in certain ways. You may not\n•\t\ + publish the Sample Code for others to copy;\n•\trent, lease or lend the Sample Code; or\n\ + •\ttransfer the Sample Code or this Agreement to any third party.\n4. TERMINATION. Without\ + \ prejudice to any other rights Microsoft may terminate this Agreement if you fail to comply\ + \ with the terms and conditions of this Agreement or the Program Agreement. In such event,\ + \ you must destroy all copies of the Sample Code listed in Exhibit A and discontinue all\ + \ use or distribution of Distributable Code. \n5. EXPORT RESTRICTIONS. The Sample Code\ + \ is subject to United States export laws and regulations. You must comply with all domestic\ + \ and international export laws and regulations that apply to the Sample Code. These laws\ + \ include restrictions on destinations, end users and end use. For additional information,\ + \ see www.microsoft.com/exporting.\n6. SUPPORT SERVICES AND UPDATES. Because this Sample\ + \ Code is \"as is,\" Microsoft may not provide support services or updates for it.\n7. \ + \ ENTIRE AGREEMENT. This Agreement, the Program Agreement, and the terms for related supplements,\ + \ updates, Internet-based services and support services that you use (if any), are the entire\ + \ agreement for the Sample Code and support services. Microsoft may in its discretion\ + \ elect to make available additional software in the future by making available such additional\ + \ software and amended terms of this Agreement at www.microsoft.com. Except in the event\ + \ Microsoft makes such additional software available and you accept applicable terms governing\ + \ their inclusion in this Agreement, no other software or Microsoft enhancements or updates\ + \ to the Sample Code are licensed under this Agreement. \n8. APPLICABLE LAW. This Agreement\ + \ is controlled by the laws of the State of New York as such laws apply to contracts entered\ + \ into by New York residents to be performed entirely within New York. Licensee consents\ + \ to exclusive jurisdiction and venue in the United States District Court for the Southern\ + \ or Eastern Districts of New York. Licensee waives all defenses of lack of personal jurisdiction\ + \ and forum non conveniens.\n9. LEGAL EFFECT. This Agreement describes certain legal rights.\ + \ You may have other rights under the laws of your country. You may also have rights with\ + \ respect to the party from whom you acquired the Sample Code. This Agreement does not\ + \ change your rights under the laws of your country if the laws of your country do not permit\ + \ it to do so.\n10. DISCLAIMER OF WARRANTY. THE SAMPLE CODE IS LICENSED \"AS-IS.\" YOU\ + \ BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS.\ + \ YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT\ + \ CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED\ + \ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\ + 11. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT\ + \ AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER\ + \ DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\ + This limitation applies to\n•\tanything related to the Sample Code, documentation, services,\ + \ content (including code) on third party Internet sites, or third party programs; and\n\ + •\tclaims for breach of contract, breach of warranty, guarantee or condition, strict liability,\ + \ negligence, or other tort to the extent permitted by applicable law.\nIt also applies\ + \ even if Microsoft knew or should have known about the possibility of the damages. The\ + \ above limitation or exclusion may not apply to you because your country may not allow\ + \ the exclusion or limitation of incidental, consequential or other damages.\nPlease note:\ + \ As this Sample Code is distributed in Quebec, Canada, some of the clauses in this Agreement\ + \ are provided below in French.\nRemarque : Ce logiciel étant distribué au Québec, Canada,\ + \ certaines des clauses dans ce contrat sont fournies ci-dessous en français.\nEXONÉRATION\ + \ DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation\ + \ de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune autre garantie\ + \ expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la\ + \ protection dues consommateurs, que ce contrat ne peut modifier. La ou elles sont permises\ + \ par le droit locale, les garanties implicites de qualité marchande, d’adéquation à un\ + \ usage particulier et d’absence de contrefaçon sont exclues.\nLIMITATION DES DOMMAGES-INTÉRÊTS\ + \ ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et\ + \ de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur\ + \ de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages,\ + \ y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices.\nCette\ + \ limitation concerne :\n•\ttout ce qui est relié au logiciel, aux services ou au contenu\ + \ (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers\ + \ ; et\n•\tles réclamations au titre de violation de contrat ou de garantie, ou au titre\ + \ de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée\ + \ par la loi en vigueur.\nElle s’applique également, même si Microsoft connaissait ou devrait\ + \ connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou\ + \ la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque\ + \ nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera\ + \ pas à votre égard.\nEFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques.\ + \ Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat\ + \ ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le\ + \ permettent pas.\nBy checking the \"I Agree\" box, below, you indicate that you accept\ + \ all terms of this Agreement and represent that you have not modified this Agreement in\ + \ any way.\n\n\n \t\tI AGREE\n\n \t\tCOMPANY NAME" json: microsoft-windows-rally-devkit.json - yml: microsoft-windows-rally-devkit.yml + yaml: microsoft-windows-rally-devkit.yml html: microsoft-windows-rally-devkit.html - text: microsoft-windows-rally-devkit.LICENSE + license: microsoft-windows-rally-devkit.LICENSE - license_key: mif-exception + category: Copyleft Limited spdx_license_key: mif-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, you may use this file as part of a free software library + without restriction. Specifically, if other files instantiate templates or use + macros or inline functions from this file, or you compile this file and link it + with other files to produce an executable, this file does not by itself cause + the resulting executable to be covered by the GNU General Public License. This + exception does not however invalidate any other reasons why the executable file + might be covered by the GNU General Public License. json: mif-exception.json - yml: mif-exception.yml + yaml: mif-exception.yml html: mif-exception.html - text: mif-exception.LICENSE + license: mif-exception.LICENSE - license_key: mike95 + category: Free Restricted spdx_license_key: LicenseRef-scancode-mike95 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + This library was downloaded from: http://www.mike95.com + + This library is copyright. It may freely be used for personal purposes + if the restriction listed below is adhered to. + Author: Michael Olivero + Email: mike95@mike95.com + + //=============================== + //Start of Restriction Definition + //=============================== + Anyone can have full use of the library provided they keep this complete comment + with the source. Also I would like to ask if any changes are made to the + code for efficiency reasons, please let me know so I may look into your change and + likewise incorporate it into library. If a suggestion makes it into the library, + your credits will be added to this information. + + Authors of Computer related books are welcome to include this source code as part + of their publishing, provided credit the Author and make note of where the source + code was obtained from: http://www.mike95.com + //============================= + //End of Restriction Definition + //============================= json: mike95.json - yml: mike95.yml + yaml: mike95.yml html: mike95.html - text: mike95.LICENSE + license: mike95.LICENSE - license_key: minecraft-mod + category: Proprietary Free spdx_license_key: LicenseRef-scancode-minecraft-mod other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Minecraft: Denotes a copy of the Minecraft game licensed by Mojang AB + User: Anybody that interacts with the software in one of the following ways: + - play + - decompile + - recompile or compile + - modify + - distribute + Mod: The mod code designated by the present license, in source form, binary + form, as obtained standalone, as part of a wider distribution or resulting from + the compilation of the original or modified sources. + Dependency: Code required for the mod to work properly. This includes + dependencies required to compile the code as well as any file or modification + that is explicitely or implicitely required for the mod to be working. + 1. Scope + -------- + The present license is granted to any user of the mod. As a prerequisite, + a user must own a legally acquired copy of Minecraft + 2. Liability + ------------ + This mod is provided 'as is' with no warranties, implied or otherwise. The owner + of this mod takes no responsibility for any damages incurred from the use of + this mod. This mod alters fundamental parts of the Minecraft game, parts of + Minecraft may not work with this mod installed. All damages caused from the use + or misuse of this mad fall on the user. + 3. Play rights + -------------- + The user is allowed to install this mod on a client or a server and to play + without restriction. + 4. Modification rights + ---------------------- + The user has the right to decompile the source code, look at either the + decompiled version or the original source code, and to modify it. + 5. Derivation rights + -------------------- + The user has the rights to derive code from this mod, that is to say to + write code that extends or instanciate the mod classes or interfaces, refer to + its objects, or calls its functions. This code is known as "derived" code, and + can be licensed under a license different from this mod. + 6. Distribution of original or modified copy rights + --------------------------------------------------- + Is subject to distribution rights this entire mod in its various forms. This + include: + - original binary or source forms of this mod files + - modified versions of these binaries or source files, as well as binaries + resulting from source modifications + - patch to its source or binary files + - any copy of a portion of its binary source files + The user is allowed to redistribute this mod partially, in totality, or + included in a distribution. + When distributing binary files, the user must provide means to obtain its + entire set of sources or modified sources at no costs. + All distributions of this mod must remain licensed under the MMPL. + All dependencies that this mod have on other mods or classes must be licensed + under conditions comparable to this version of MMPL, with the exception of the + Minecraft code and the mod loading framework (e.g. ModLoader, ModLoaderMP or + Bukkit). + Modified version of binaries and sources, as well as files containing sections + copied from this mod, should be distributed under the terms of the present + license. json: minecraft-mod.json - yml: minecraft-mod.yml + yaml: minecraft-mod.yml html: minecraft-mod.html - text: minecraft-mod.LICENSE + license: minecraft-mod.LICENSE - license_key: mini-xml + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "This library is free software; you can redistribute it and/or modify it under the terms\ + \ of the GNU Library General Public License as published by the Free Software Foundation;\ + \ either version 2 of the License, or (at your option) any later version.\n\nThis library\ + \ is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even\ + \ the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\ + \ GNU Library General Public License for more details.\n\nYou should have received a copy\ + \ of the GNU Library 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\n\nMini-XML License (LGPL 2.0 with Exception)\n\nThe Mini-XML library and included\ + \ programs are provided under the terms of the GNU Library General Public License (LGPL)\ + \ with the following exceptions:\n\n1.\tStatic linking of applications to the Mini-XML library\ + \ does not constitute a derivative work and does not require the author to provide source\ + \ code for the application, use the shared Mini-XML libraries, or link their applications\ + \ against a user-supplied version of Mini-XML. \nIf you link the application to a modified\ + \ version of Mini-XML, then the changes to Mini-XML must be provided under the terms of\ + \ the LGPL in sections 1, 2, and 4.\n\n2.\tYou do not have to provide a copy of the Mini-XML\ + \ license with programs that are linked to the Mini-XML library, nor do you have to identify\ + \ the Mini-XML license in your program or documentation as required by section 6 of the\ + \ LGPL.\n\nGNU Library General Public License (LGPL 2.0)\nhttp://www.gnu.org/licenses/old-licenses/lgpl-2.0.html\ + \ - TOC1" json: mini-xml.json - yml: mini-xml.yml + yaml: mini-xml.yml html: mini-xml.html - text: mini-xml.LICENSE + license: mini-xml.LICENSE - license_key: mini-xml-exception-lgpl-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-mini-xml-exception-lgpl-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "Mini-XML License (LGPL 2.0 with Exception)\n\nThe Mini-XML library and included programs\ + \ are provided under the terms of the\nGNU Library General Public License (LGPL) with the\ + \ following exceptions:\n\n1.\tStatic linking of applications to the Mini-XML library does\ + \ not constitute a derivative work and does not require the author to provide source code\ + \ for the application, use the shared Mini-XML libraries, or link their applications against\ + \ a user-supplied version of Mini-XML. \nIf you link the application to a modified version\ + \ of Mini-XML, then the changes to Mini-XML must be provided under the terms of the LGPL\ + \ in sections 1, 2, and 4.\n\n2.\tYou do not have to provide a copy of the Mini-XML license\ + \ with programs that are linked to the Mini-XML library, nor do you have to identify the\ + \ Mini-XML license in your program or documentation as required by section 6 of the LGPL.\n\ + \nGNU Library General Public License (LGPL 2.0)\nhttp://www.gnu.org/licenses/old-licenses/lgpl-2.0.html\ + \ - TOC1" json: mini-xml-exception-lgpl-2.0.json - yml: mini-xml-exception-lgpl-2.0.yml + yaml: mini-xml-exception-lgpl-2.0.yml html: mini-xml-exception-lgpl-2.0.html - text: mini-xml-exception-lgpl-2.0.LICENSE + license: mini-xml-exception-lgpl-2.0.LICENSE - license_key: minpack - spdx_license_key: LicenseRef-scancode-minpack - other_spdx_license_keys: [] - is_exception: no - is_deprecated: no category: Permissive + spdx_license_key: Minpack + other_spdx_license_keys: + - LicenseRef-scancode-minpack + is_exception: no + is_deprecated: no + text: | + Minpack Copyright Notice (1999) University of Chicago. 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 end-user documentation included with the + redistribution, if any, must include the following + acknowledgment: + + "This product includes software developed by the + University of Chicago, as Operator of Argonne National + Laboratory. + + Alternately, this acknowledgment may appear in the software + itself, if and wherever such third-party acknowledgments + normally appear. + + 4. WARRANTY DISCLAIMER. THE SOFTWARE IS SUPPLIED "AS IS" + WITHOUT WARRANTY OF ANY KIND. THE COPYRIGHT HOLDER, THE + UNITED STATES, THE UNITED STATES DEPARTMENT OF ENERGY, AND + THEIR EMPLOYEES: (1) DISCLAIM ANY WARRANTIES, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO ANY IMPLIED WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE + OR NON-INFRINGEMENT, (2) DO NOT ASSUME ANY LEGAL LIABILITY + OR RESPONSIBILITY FOR THE ACCURACY, COMPLETENESS, OR + USEFULNESS OF THE SOFTWARE, (3) DO NOT REPRESENT THAT USE OF + THE SOFTWARE WOULD NOT INFRINGE PRIVATELY OWNED RIGHTS, (4) + DO NOT WARRANT THAT THE SOFTWARE WILL FUNCTION + UNINTERRUPTED, THAT IT IS ERROR-FREE OR THAT ANY ERRORS WILL + BE CORRECTED. + + 5. LIMITATION OF LIABILITY. IN NO EVENT WILL THE COPYRIGHT + HOLDER, THE UNITED STATES, THE UNITED STATES DEPARTMENT OF + ENERGY, OR THEIR EMPLOYEES: BE LIABLE FOR ANY INDIRECT, + INCIDENTAL, CONSEQUENTIAL, SPECIAL OR PUNITIVE DAMAGES OF + ANY KIND OR NATURE, INCLUDING BUT NOT LIMITED TO LOSS OF + PROFITS OR LOSS OF DATA, FOR ANY REASON WHATSOEVER, WHETHER + SUCH LIABILITY IS ASSERTED ON THE BASIS OF CONTRACT, TORT + (INCLUDING NEGLIGENCE OR STRICT LIABILITY), OR OTHERWISE, + EVEN IF ANY OF SAID PARTIES HAS BEEN WARNED OF THE + POSSIBILITY OF SUCH LOSS OR DAMAGES. json: minpack.json - yml: minpack.yml + yaml: minpack.yml html: minpack.html - text: minpack.LICENSE + license: minpack.LICENSE - license_key: mir-os + category: Permissive spdx_license_key: MirOS other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Provided that these terms and disclaimer and all copyright notices + are retained or reproduced in an accompanying document, permission + is granted to deal in this work without restriction, including un‐ + limited rights to use, publicly perform, distribute, sell, modify, + merge, give away, or sublicence. + + This work is provided "AS IS" and WITHOUT WARRANTY of any kind, to + the utmost extent permitted by applicable law, neither express nor + implied; without malicious intent or gross negligence. In no event + may a licensor, author or contributor be held liable for indirect, + direct, other damage, loss, or other issues arising in any way out + of dealing in the work, even if advised of the possibility of such + damage or existence of a defect, except proven that it results out + of said person's immediate fault when using the work as intended. json: mir-os.json - yml: mir-os.yml + yaml: mir-os.yml html: mir-os.html - text: mir-os.LICENSE + license: mir-os.LICENSE - license_key: mit + category: Permissive spdx_license_key: MIT other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. json: mit.json - yml: mit.yml + yaml: mit.yml html: mit.html - text: mit.LICENSE + license: mit.LICENSE - license_key: mit-0 + category: Permissive spdx_license_key: MIT-0 other_spdx_license_keys: - LicenseRef-scancode-ekioh is_exception: no is_deprecated: no - category: Permissive + text: | + 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. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. json: mit-0.json - yml: mit-0.yml + yaml: mit-0.yml html: mit-0.html - text: mit-0.LICENSE + license: mit-0.LICENSE - license_key: mit-1995 + category: Permissive spdx_license_key: LicenseRef-scancode-mit-1995 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + COPYRIGHT 1995 BY: MASSACHUSETTS INSTITUTE OF TECHNOLOGY (MIT), INRIA + + This W3C software is being provided by the copyright holders under the + following license. By obtaining, using and/or copying this software, you + agree that you have read, understood, and will comply with the following + terms and conditions: + + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose and without fee or royalty is hereby granted, + provided that the full text of this NOTICE appears on ALL copies of the + software and documentation or portions thereof, including modifications, + that you make. + + THIS SOFTWARE IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO + REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT + NOT LIMITATION, COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES OF + MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE + SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, + COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. COPYRIGHT HOLDERS WILL BEAR NO + LIABILITY FOR ANY USE OF THIS SOFTWARE OR DOCUMENTATION. + + The name and trademarks of copyright holders may NOT be used in advertising + or publicity pertaining to the software without specific, written prior + permission. Title to copyright in this software and any associated + documentation will at all times remain with copyright holders. json: mit-1995.json - yml: mit-1995.yml + yaml: mit-1995.yml html: mit-1995.html - text: mit-1995.LICENSE + license: mit-1995.LICENSE - license_key: mit-ack + category: Permissive spdx_license_key: MIT-feh other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 + of the Software and its documentation and acknowledgment shall be given in the + documentation and software packages that this Software was used. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR + ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. json: mit-ack.json - yml: mit-ack.yml + yaml: mit-ack.yml html: mit-ack.html - text: mit-ack.LICENSE + license: mit-ack.LICENSE - license_key: mit-addition + category: Permissive spdx_license_key: LicenseRef-scancode-mit-addition other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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" AND WITHOUT WARRANTY OF ANY KIND, + EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY + WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + + IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT + OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER + RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF + THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT + OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + In addition, the following condition applies: + + All redistributions must retain an intact copy of this copyright notice + and disclaimer. json: mit-addition.json - yml: mit-addition.yml + yaml: mit-addition.yml html: mit-addition.html - text: mit-addition.LICENSE + license: mit-addition.LICENSE - license_key: mit-export-control + category: Permissive spdx_license_key: Xerox other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Use and copying of this software and preparation of derivative works + based upon this software are permitted. Any copy of this software or of + any derivative work must include the above copyright notice of + {copyright-holder}, this paragraph and the one after it. Any + distribution of this software or derivative works must comply with all + applicable United States export control laws. + + This software is made available AS IS, and {copyright-holder} DISCLAIMS + ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE, AND NOTWITHSTANDING ANY OTHER PROVISION CONTAINED HEREIN, ANY + LIABILITY FOR DAMAGES RESULTING FROM THE SOFTWARE OR ITS USE IS + EXPRESSLY DISCLAIMED, WHETHER ARISING IN CONTRACT, TORT (INCLUDING + NEGLIGENCE) OR STRICT LIABILITY, EVEN IF {copyright-holder} IS ADVISED + OF THE POSSIBILITY OF SUCH DAMAGES. json: mit-export-control.json - yml: mit-export-control.yml + yaml: mit-export-control.yml html: mit-export-control.html - text: mit-export-control.LICENSE + license: mit-export-control.LICENSE - license_key: mit-license-1998 + category: Permissive spdx_license_key: LicenseRef-scancode-mit-license-1998 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify and distribute this software and its + documentation for any purpose and without fee is hereby granted, + provided that both the above copyright notice and this permission + notice appear in all copies, that both the above copyright notice + and this permission notice appear in all supporting documentation, + and that the name of M.I.T. not be used in advertising or publicity + pertaining to distribution of the software without specific, + written prior permission. M.I.T. makes no representations about + the suitability of this software for any purpose. It is provided + "as is" without express or implied warranty. + + THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''. M.I.T. DISCLAIMS + ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE, + INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT + SHALL M.I.T. 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. json: mit-license-1998.json - yml: mit-license-1998.yml + yaml: mit-license-1998.yml html: mit-license-1998.html - text: mit-license-1998.LICENSE + license: mit-license-1998.LICENSE - license_key: mit-modern + category: Permissive spdx_license_key: MIT-Modern-Variant other_spdx_license_keys: - LicenseRef-scancode-mit-modern is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is hereby granted, without written agreement and without + license or royalty fees, to use, copy, modify, and distribute this + software and its documentation for any purpose, provided that the + above copyright notice and the following two paragraphs appear in + all copies of this software. + + IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR + DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES + ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN + IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + + THE COPYRIGHT HOLDER 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 COPYRIGHT HOLDER HAS NO OBLIGATION TO + PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. json: mit-modern.json - yml: mit-modern.yml + yaml: mit-modern.yml html: mit-modern.html - text: mit-modern.LICENSE + license: mit-modern.LICENSE - license_key: mit-nagy + category: Permissive spdx_license_key: LicenseRef-scancode-mit-nagy other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and/or distribute this code + for any purpose with or without fee is hereby granted. + There is no warranty. json: mit-nagy.json - yml: mit-nagy.yml + yaml: mit-nagy.yml html: mit-nagy.html - text: mit-nagy.LICENSE + license: mit-nagy.LICENSE - license_key: mit-no-advert-export-control + category: Permissive spdx_license_key: LicenseRef-scancode-mit-no-advert-export-control other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Export of this software from the United States of America may require a specific + license from the United States Government. It is the responsibility of any + person or organization contemplating export to obtain such a license before + exporting. + + WITHIN THAT CONSTRAINT, 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 The author not be used in advertising or + publicity pertaining to distribution of the software without specific, written + prior permission. The author makes no representations about the suitability of + this software for any purpose. It is provided "as is" without express or + implied warranty. + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF + MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. json: mit-no-advert-export-control.json - yml: mit-no-advert-export-control.yml + yaml: mit-no-advert-export-control.yml html: mit-no-advert-export-control.html - text: mit-no-advert-export-control.LICENSE + license: mit-no-advert-export-control.LICENSE - license_key: mit-no-false-attribs + category: Permissive spdx_license_key: MITNFA other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. + + Distributions of all or part of the Software intended to be used + by the recipients as they would use the unmodified Software, + containing modifications that substantially alter, remove, or + disable functionality of the Software, outside of the documented + configuration mechanisms provided by the Software, shall be + modified such that the Original Author's bug reporting email + addresses and urls are either replaced with the contact information + of the parties responsible for the changes, or removed entirely. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. json: mit-no-false-attribs.json - yml: mit-no-false-attribs.yml + yaml: mit-no-false-attribs.yml html: mit-no-false-attribs.html - text: mit-no-false-attribs.LICENSE + license: mit-no-false-attribs.LICENSE - license_key: mit-no-trademarks + category: Permissive spdx_license_key: LicenseRef-scancode-mit-no-trademarks other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + MIT Copyright Notice + + Project Athena, Athena Dashboard, Athena MUSE, Kerberos, X Window System, + TechInfo, and Zephyr are trademarks of the Massachusetts Institute of Technology + (MIT). Athena, Discuss, Hesiod, Moria, OLC, and TechMail are registered + trademarks of MIT. No commercial use of these trademarks may be made without + prior written permission of MIT. + + This software is being provided to you, the LICENSEE, by the Massachusetts + Institute of Technology (M.I.T.) under the following license. By obtaining, + using and/or copying this software, you agree that you have read, understood, + and will comply with these terms and conditions: + + Permission to use, copy, modify and distribute this software and its + documentation for any purpose and without fee or royalty is hereby granted, + provided that you agree to comply with the following copyright notice and + statements, including the disclaimer, and that the same appear on ALL copies of + the software and documentation, including modifications that you make for + internal use or for distribution: + + Copyright 1995 by the Massachusetts Institute of Technology. All rights reserved. + + THIS SOFTWARE IS PROVIDED "AS IS", AND M.I.T. MAKES NO REPRESENTATIONS OR + WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not limitation, M.I.T. + MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY + PARTICULAR PURPOSE OR THAT THE USE OF THE LICENSED SOFTWARE OR DOCUMENTATION + WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER + RIGHTS. + + The name of the Massachusetts Institute of Technology or M.I.T. may NOT be used + in advertising or publicity pertaining to distribution of the software. Title to + copyright in this software and any associated documentation shall at all times + remain with M.I.T., and LICENSEE agrees to preserve same. json: mit-no-trademarks.json - yml: mit-no-trademarks.yml + yaml: mit-no-trademarks.yml html: mit-no-trademarks.html - text: mit-no-trademarks.LICENSE + license: mit-no-trademarks.LICENSE - license_key: mit-old-style + category: Permissive spdx_license_key: LicenseRef-scancode-mit-old-style other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, distribute, and sell this software and + its documentation for any purpose is hereby granted without fee, provided that + the above copyright notice appear in all copies and that both that + copyright notice and this permission notice appear in supporting + documentation. No representations are made about the suitability of this + software for any purpose. It is provided "as is" without express or + implied warranty. json: mit-old-style.json - yml: mit-old-style.yml + yaml: mit-old-style.yml html: mit-old-style.html - text: mit-old-style.LICENSE + license: mit-old-style.LICENSE - license_key: mit-old-style-no-advert + category: Permissive spdx_license_key: NTP other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 the authors not be + used in advertising or publicity pertaining to distribution of the + software without specific, written prior permission. The authors + makes no representations about the suitability of this software for any + purpose. It is provided "as is" without express or implied warranty. json: mit-old-style-no-advert.json - yml: mit-old-style-no-advert.yml + yaml: mit-old-style-no-advert.yml html: mit-old-style-no-advert.html - text: mit-old-style-no-advert.LICENSE + license: mit-old-style-no-advert.LICENSE - license_key: mit-old-style-sparse + category: Permissive spdx_license_key: LicenseRef-scancode-mit-old-style-sparse other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software and + its documentation for any purpose and without fee is hereby granted, + provided that the copyright notices appear in all copies and + supporting documentation and that the authors and the University of + California are properly credited. The authors and the University of + California make no representations as to the suitability of this + software for any purpose. It is provided `as is', without express + or implied warranty. json: mit-old-style-sparse.json - yml: mit-old-style-sparse.yml + yaml: mit-old-style-sparse.yml html: mit-old-style-sparse.html - text: mit-old-style-sparse.LICENSE + license: mit-old-style-sparse.LICENSE - license_key: mit-readme + category: Permissive spdx_license_key: LicenseRef-scancode-mit-readme other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and the associated README documentation file (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. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. json: mit-readme.json - yml: mit-readme.yml + yaml: mit-readme.yml html: mit-readme.html - text: mit-readme.LICENSE + license: mit-readme.LICENSE - license_key: mit-specification-disclaimer + category: Permissive spdx_license_key: LicenseRef-scancode-mit-specification-disclaimer other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Use and copying of this software and preparation of derivative works based + upon this software are permitted. Any distribution of this software or + derivative works must comply with all applicable United States export control + laws. + + This software is made available AS IS, and Xerox Corporation makes no warranty + about the software, its performance or its conformity to any specification. json: mit-specification-disclaimer.json - yml: mit-specification-disclaimer.yml + yaml: mit-specification-disclaimer.yml html: mit-specification-disclaimer.html - text: mit-specification-disclaimer.LICENSE + license: mit-specification-disclaimer.LICENSE - license_key: mit-synopsys + category: Permissive spdx_license_key: LicenseRef-scancode-mit-synopsys other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software annotated with this license and 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. + + THIS SOFTWARE IS BEING DISTRIBUTED BY SYNOPSYS SOLELY ON AN "AS IS" + BASIS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE HEREBY DISCLAIMED. IN NO EVENT SHALL SYNOPSYS + 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. json: mit-synopsys.json - yml: mit-synopsys.yml + yaml: mit-synopsys.yml html: mit-synopsys.html - text: mit-synopsys.LICENSE + license: mit-synopsys.LICENSE - license_key: mit-taylor-variant + category: Permissive spdx_license_key: LicenseRef-scancode-mit-taylor-variant other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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", without warranty of any kind, including all + implied warranties of merchantability and fitness. In no event shall the authors + or copyright holders be liable for any claim, damages, or other liability, + whether in an action of contract, tort, or otherwise, arising from, out of, or + in connection with the software or the use or other dealings in the software. json: mit-taylor-variant.json - yml: mit-taylor-variant.yml + yaml: mit-taylor-variant.yml html: mit-taylor-variant.html - text: mit-taylor-variant.LICENSE + license: mit-taylor-variant.LICENSE - license_key: mit-veillard-variant + category: Permissive spdx_license_key: LicenseRef-scancode-mit-veillard-variant other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF + MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND + CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER. json: mit-veillard-variant.json - yml: mit-veillard-variant.yml + yaml: mit-veillard-variant.yml html: mit-veillard-variant.html - text: mit-veillard-variant.LICENSE + license: mit-veillard-variant.LICENSE - license_key: mit-with-modification-obligations + category: Permissive spdx_license_key: LicenseRef-scancode-mit-modification-obligations other_spdx_license_keys: - LicenseRef-scancode-mit-with-modification-obligations is_exception: no is_deprecated: no - category: Permissive + text: | + Export of this software from the United States of America may + require a specific license from the United States Government. + It is the responsibility of any person or organization contemplating + export to obtain such a license before exporting. + + WITHIN THAT CONSTRAINT, 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 M.I.T. not be used in advertising or publicity pertaining + to distribution of the software without specific, written prior + permission. Furthermore if you modify this software you must label + your software as modified software and not distribute it in such a + fashion that it might be confused with the original M.I.T. software. + M.I.T. makes no representations about the suitability of + this software for any purpose. It is provided "as is" without express + or implied warranty. json: mit-with-modification-obligations.json - yml: mit-with-modification-obligations.yml + yaml: mit-with-modification-obligations.yml html: mit-with-modification-obligations.html - text: mit-with-modification-obligations.LICENSE + license: mit-with-modification-obligations.LICENSE - license_key: mit-xfig + category: Permissive spdx_license_key: LicenseRef-scancode-mit-xfig other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Any party obtaining a copy of these files is granted, free of charge, a\nfull and unrestricted\ + \ irrevocable, world-wide, paid up, royalty-free,\nnonexclusive right and license to deal\ + \ in this software and\ndocumentation files (the \"Software\"), including without limitation\ + \ the\nrights to use, copy, modify, merge, publish and/or distribute copies of\nthe Software,\ + \ and to permit persons who receive copies from any such \nparty to do so, with the only\ + \ requirement being that this copyright \nnotice remain intact." json: mit-xfig.json - yml: mit-xfig.yml + yaml: mit-xfig.yml html: mit-xfig.html - text: mit-xfig.LICENSE + license: mit-xfig.LICENSE - license_key: mod-dav-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-mod-dav-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "mod_dav License Agreement v1\n\nThe following text constitutes the license agreement\ + \ for the mod_dav software.\n\nNote: the copyright years were updated on February 3rd, 2000\ + \ and January 19th, 2001. No other changes were made to the license.\n\nCopyright © 1998-2001\ + \ Greg Stein. All rights reserved.\n\nRedistribution and use in source and binary forms,\ + \ with or without modification, are permitted provided that the following conditions are\ + \ met:\n\n1. Redistributions of source code must retain the above copyright notice, this\ + \ list of conditions and the following disclaimer.\n\n2. 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.\n\n3. All\ + \ advertising materials mentioning features or use of this software must display the following\ + \ acknowledgment:\n\nThis product includes software developed by Greg Stein \ + \ for use in the mod_dav module for Apache (http://www.webdav.org/mod_dav/).\n\n4. Products\ + \ derived from this software may not be called \"mod_dav\" nor may \"mod_dav\" appear in\ + \ their names without prior written permission of Greg Stein. For written permission, please\ + \ contact gstein@lyra.org.\n\n5. Redistributions of any form whatsoever must retain the\ + \ following acknowledgment:\n\nThis product includes software developed by Greg Stein \ + \ for use in the mod_dav module for Apache (http://www.webdav.org/mod_dav/).\n\nTHIS SOFTWARE\ + \ IS PROVIDED BY GREG STEIN ``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 GREG STEIN OR THE SOFTWARE'S 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.\n\nGreg Stein \nLast modified: Thu Feb 3 17:34:42 PST 2000" json: mod-dav-1.0.json - yml: mod-dav-1.0.yml + yaml: mod-dav-1.0.yml html: mod-dav-1.0.html - text: mod-dav-1.0.LICENSE + license: mod-dav-1.0.LICENSE - license_key: monetdb-1.1 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-monetdb-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "MonetDB Public License Version 1.1\nThis License is a derivative of the Mozilla Public\ + \ License (MPL) Version 1.1, where the difference is that all references to \"Mozilla\"\ + \ and \"Netscape\" have been changed to \"MonetDB\", and that the License has been made\ + \ subject to the laws of The Netherlands.\n\n1. Definitions.\n1.0.1. \"Commercial Use\"\n\ + means distribution or otherwise making the Covered Code available to a third party.\n1.1.\ + \ \"Contributor\"\nmeans each entity that creates or contributes to the creation of Modifications.\n\ + 1.2. \"Contributor Version\"\nmeans the combination of the Original Code, prior Modifications\ + \ used by a Contributor, and the Modifications made by that particular Contributor.\n1.3.\ + \ \"Covered Code\"\nmeans the Original Code or Modifications or the combination of the Original\ + \ Code and Modifications, in each case including portions thereof.\n1.4. \"Electronic Distribution\ + \ Mechanism\"\nmeans a mechanism generally accepted in the software development community\ + \ for the electronic transfer of data.\n1.5. \"Executable\"\nmeans Covered Code in any form\ + \ other than Source Code.\n1.6. \"Initial Developer\"\nmeans the individual or entity identified\ + \ as the Initial Developer in the Source Code notice required by Exhibit A.\n1.7. \"Larger\ + \ Work\"\nmeans a work which combines Covered Code or portions thereof with code not governed\ + \ by the terms of this License.\n1.8. \"License\"\nmeans this document.\n1.8.1. \"Licensable\"\ + \nmeans having the right to grant, to the maximum extent possible, whether at the time of\ + \ the initial grant or subsequently acquired, any and all of the rights conveyed herein.\n\ + 1.9. \"Modifications\"\nmeans any addition to or deletion from the substance or structure\ + \ of either the Original Code or any previous Modifications. When Covered Code is released\ + \ as a series of files, a Modification is:\n\nAny addition to or deletion from the contents\ + \ of a file containing Original Code or previous Modifications.\nAny new file that contains\ + \ any part of the Original Code or previous Modifications.\n1.10. \"Original Code\"\nmeans\ + \ Source Code of computer software code which is described in the Source Code notice required\ + \ by Exhibit A as Original Code, and which, at the time of its release under this License\ + \ is not already Covered Code governed by this License.\n1.10.1. \"Patent Claims\"\nmeans\ + \ any patent claim(s), now owned or hereafter acquired, including without limitation, method,\ + \ process, and apparatus claims, in any patent Licensable by grantor.\n1.11. \"Source Code\"\ + \nmeans the preferred form of the Covered Code for making modifications to it, including\ + \ all modules it contains, plus any associated interface definition files, scripts used\ + \ to control compilation and installation of an Executable, or source code differential\ + \ comparisons against either the Original Code or another well known, available Covered\ + \ Code of the Contributor's choice. The Source Code can be in a compressed or archival form,\ + \ provided the appropriate decompression or de-archiving software is widely available for\ + \ no charge.\n1.12. \"You\" (or \"Your\")\nmeans an individual or a legal entity exercising\ + \ rights under, and complying with all of the terms of, this License or a future version\ + \ of this License issued under Section 6.1. For legal entities, \"You\" includes any entity\ + \ which controls, is controlled by, or is under common control with You. For purposes of\ + \ this definition, \"control\" means (a) the power, direct or indirect, to cause the direction\ + \ or management of such entity, whether by contract or otherwise, or (b) ownership of more\ + \ than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\ + \n2. Source Code License.\n2.1. The Initial Developer Grant.\nThe Initial Developer hereby\ + \ grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual\ + \ property claims:\nunder intellectual property rights (other than patent or trademark)\ + \ Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense\ + \ and distribute the Original Code (or portions thereof) with or without Modifications,\ + \ and/or as part of a Larger Work; and\nunder Patents Claims infringed by the making, using\ + \ or selling of Original Code, to make, have made, use, practice, sell, and offer for sale,\ + \ and/or otherwise dispose of the Original Code (or portions thereof).\nthe licenses granted\ + \ in this Section 2.1 (a) and (b) are effective on the date Initial Developer first distributes\ + \ Original Code under the terms of this License.\nNotwithstanding Section 2.1 (b) above,\ + \ no patent license is granted: 1) for code that You delete from the Original Code; 2) separate\ + \ from the Original Code; or 3) for infringements caused by: i) the modification of the\ + \ Original Code or ii) the combination of the Original Code with other software or devices.\n\ + \n2.2. Contributor Grant.\nSubject to third party intellectual property claims, each Contributor\ + \ hereby grants You a world-wide, royalty-free, non-exclusive license\nunder intellectual\ + \ property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce,\ + \ modify, display, perform, sublicense and distribute the Modifications created by such\ + \ Contributor (or portions thereof) either on an unmodified basis, with other Modifications,\ + \ as Covered Code and/or as part of a Larger Work; and\nunder Patent Claims infringed by\ + \ the making, using, or selling of Modifications made by that Contributor either alone and/or\ + \ in combination with its Contributor Version (or portions of such combination), to make,\ + \ use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made\ + \ by that Contributor (or portions thereof); and 2) the combination of Modifications made\ + \ by that Contributor with its Contributor Version (or portions of such combination).\n\ + the licenses granted in Sections 2.2 (a) and 2.2 (b) are effective on the date Contributor\ + \ first makes Commercial Use of the Covered Code.\nNotwithstanding Section 2.2 (b) above,\ + \ no patent license is granted: 1) for any code that Contributor has deleted from the Contributor\ + \ Version; 2) separate from the Contributor Version; 3) for infringements caused by: i)\ + \ third party modifications of Contributor Version or ii) the combination of Modifications\ + \ made by that Contributor with other software (except as part of the Contributor Version)\ + \ or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of\ + \ Modifications made by that Contributor.\n\n3. Distribution Obligations.\n\n3.1. Application\ + \ of License.\nThe Modifications which You create or to which You contribute are governed\ + \ by the terms of this License, including without limitation Section 2.2. The Source Code\ + \ version of Covered Code may be distributed only under the terms of this License or a future\ + \ version of this License released under Section 6.1, and You must include a copy of this\ + \ License with every copy of the Source Code You distribute. You may not offer or impose\ + \ any terms on any Source Code version that alters or restricts the applicable version of\ + \ this License or the recipients' rights hereunder. However, You may include an additional\ + \ document offering the additional rights described in Section 3.5.\n\n3.2. Availability\ + \ of Source Code.\nAny Modification which You create or to which You contribute must be\ + \ made available in Source Code form under the terms of this License either on the same\ + \ media as an Executable version or via an accepted Electronic Distribution Mechanism to\ + \ anyone to whom you made an Executable version available; and if made available via Electronic\ + \ Distribution Mechanism, must remain available for at least twelve (12) months after the\ + \ date it initially became available, or at least six (6) months after a subsequent version\ + \ of that particular Modification has been made available to such recipients. You are responsible\ + \ for ensuring that the Source Code version remains available even if the Electronic Distribution\ + \ Mechanism is maintained by a third party.\n\n3.3. Description of Modifications.\nYou must\ + \ cause all Covered Code to which You contribute to contain a file documenting the changes\ + \ You made to create that Covered Code and the date of any change. You must include a prominent\ + \ statement that the Modification is derived, directly or indirectly, from Original Code\ + \ provided by the Initial Developer and including the name of the Initial Developer in (a)\ + \ the Source Code, and (b) in any notice in an Executable version or related documentation\ + \ in which You describe the origin or ownership of the Covered Code.\n\n3.4. Intellectual\ + \ Property Matters\n(a) Third Party Claims\nIf Contributor has knowledge that a license\ + \ under a third party's intellectual property rights is required to exercise the rights\ + \ granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text\ + \ file with the Source Code distribution titled \"LEGAL\" which describes the claim and\ + \ the party making the claim in sufficient detail that a recipient will know whom to contact.\ + \ If Contributor obtains such knowledge after the Modification is made available as described\ + \ in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor\ + \ makes available thereafter and shall take other steps (such as notifying appropriate mailing\ + \ lists or newsgroups) reasonably calculated to inform those who received the Covered Code\ + \ that new knowledge has been obtained.\n\n(b) Contributor APIs\nIf Contributor's Modifications\ + \ include an application programming interface and Contributor has knowledge of patent licenses\ + \ which are reasonably necessary to implement that API, Contributor must also include this\ + \ information in the legal file.\n\n(c) Representations.\nContributor represents that, except\ + \ as disclosed pursuant to Section 3.4 (a) above, Contributor believes that Contributor's\ + \ Modifications are Contributor's original creation(s) and/or Contributor has sufficient\ + \ rights to grant the rights conveyed by this License.\n\n3.5. Required Notices.\nYou must\ + \ duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible\ + \ to put such notice in a particular Source Code file due to its structure, then You must\ + \ include such notice in a location (such as a relevant directory) where a user would be\ + \ likely to look for such a notice. If You created one or more Modification(s) You may add\ + \ your name as a Contributor to the notice described in Exhibit A. You must also duplicate\ + \ this License in any documentation for the Source Code where You describe recipients' rights\ + \ or ownership rights relating to Covered Code. You may choose to offer, and to charge a\ + \ fee for, warranty, support, indemnity or liability obligations to one or more recipients\ + \ of Covered Code. However, You may do so only on Your own behalf, and not on behalf of\ + \ the Initial Developer or any Contributor. You must make it absolutely clear than any such\ + \ warranty, support, indemnity or liability obligation is offered by You alone, and You\ + \ hereby agree to indemnify the Initial Developer and every Contributor for any liability\ + \ incurred by the Initial Developer or such Contributor as a result of warranty, support,\ + \ indemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions.\n\ + You may distribute Covered Code in Executable form only if the requirements of Sections\ + \ 3.1, 3.2, 3.3, 3.4 and 3.5 have been met for that Covered Code, and if You include a notice\ + \ stating that the Source Code version of the Covered Code is available under the terms\ + \ of this License, including a description of how and where You have fulfilled the obligations\ + \ of Section 3.2. The notice must be conspicuously included in any notice in an Executable\ + \ version, related documentation or collateral in which You describe recipients' rights\ + \ relating to the Covered Code. You may distribute the Executable version of Covered Code\ + \ or ownership rights under a license of Your choice, which may contain terms different\ + \ from this License, provided that You are in compliance with the terms of this License\ + \ and that the license for the Executable version does not attempt to limit or alter the\ + \ recipient's rights in the Source Code version from the rights set forth in this License.\ + \ If You distribute the Executable version under a different license You must make it absolutely\ + \ clear that any terms which differ from this License are offered by You alone, not by the\ + \ Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer\ + \ and every Contributor for any liability incurred by the Initial Developer or such Contributor\ + \ as a result of any such terms You offer.\n\n3.7. Larger Works.\nYou may create a Larger\ + \ Work by combining Covered Code with other code not governed by the terms of this License\ + \ and distribute the Larger Work as a single product. In such a case, You must make sure\ + \ the requirements of this License are fulfilled for the Covered Code.\n\n4. Inability to\ + \ Comply Due to Statute or Regulation.\nIf it is impossible for You to comply with any of\ + \ the terms of this License with respect to some or all of the Covered Code due to statute,\ + \ judicial order, or regulation then You must: (a) comply with the terms of this License\ + \ to the maximum extent possible; and (b) describe the limitations and the code they affect.\ + \ Such description must be included in the legal file described in Section 3.4 and must\ + \ be included with all distributions of the Source Code. Except to the extent prohibited\ + \ by statute or regulation, such description must be sufficiently detailed for a recipient\ + \ of ordinary skill to be able to understand it.\n\n5. Application of this License.\nThis\ + \ License applies to code to which the Initial Developer has attached the notice in Exhibit\ + \ A and to related Covered Code.\n\n6. Versions of the License.\n6.1. New Versions\nMonetDB\ + \ B.V. may publish revised and/or new versions of the License from time to time. Each version\ + \ will be given a distinguishing version number.\n\n6.2. Effect of New Versions\nOnce Covered\ + \ Code has been published under a particular version of the License, You may always continue\ + \ to use it under the terms of that version. You may also choose to use such Covered Code\ + \ under the terms of any subsequent version of the License published by MonetDB B.V. No\ + \ one other than MonetDB B.V. has the right to modify the terms applicable to Covered Code\ + \ created under this License.\n\n6.3. Derivative Works\nIf You create or use a modified\ + \ version of this License (which you may only do in order to apply it to code which is not\ + \ already Covered Code governed by this License), You must (a) rename Your license so that\ + \ the phrases \"MonetDB\" or any confusingly similar phrase do not appear in your license\ + \ (except to note that your license differs from this License) and (b) otherwise make it\ + \ clear that Your version of the license contains terms which differ from the MonetDB Public\ + \ License. (Filling in the name of the Initial Developer, Original Code or Contributor in\ + \ the notice described in Exhibit A shall not of themselves be deemed to be modifications\ + \ of this License.)\n\n7. Disclaimer of warranty\nCovered code is provided under this license\ + \ on an \"as is\" basis, without warranty of any kind, either expressed or implied, including,\ + \ without limitation, warranties that the covered code is free of defects, merchantable,\ + \ fit for a particular purpose or non-infringing. The entire risk as to the quality and\ + \ performance of the covered code is with you. Should any covered code prove defective in\ + \ any respect, you (not the initial developer or any other contributor) assume the cost\ + \ of any necessary servicing, repair or correction. This disclaimer of warranty constitutes\ + \ an essential part of this license. No use of any covered code is authorized hereunder\ + \ except under this disclaimer.\n\n8. Termination\n8.1. This License and the rights granted\ + \ hereunder will terminate automatically if You fail to comply with terms herein and fail\ + \ to cure such breach within 30 days of becoming aware of the breach. All sublicenses to\ + \ the Covered Code which are properly granted shall survive any termination of this License.\ + \ Provisions which, by their nature, must remain in effect beyond the termination of this\ + \ License shall survive.\n\n8.2. If You initiate litigation by asserting a patent infringement\ + \ claim (excluding declatory judgment actions) against Initial Developer or a Contributor\ + \ (the Initial Developer or Contributor against whom You file such action is referred to\ + \ as \"Participant\") alleging that:\nsuch Participant's Contributor Version directly or\ + \ indirectly infringes any patent, then any and all rights granted by such Participant to\ + \ You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant\ + \ terminate prospectively, unless if within 60 days after receipt of notice You either:\ + \ (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your\ + \ past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation\ + \ claim with respect to the Contributor Version against such Participant. If within 60 days\ + \ of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in\ + \ writing by the parties or the litigation claim is not withdrawn, the rights granted by\ + \ Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration\ + \ of the 60 day notice period specified above.\nany software, hardware, or device, other\ + \ than such Participant's Contributor Version, directly or indirectly infringes any patent,\ + \ then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are\ + \ revoked effective as of the date You first made, used, sold, distributed, or had made,\ + \ Modifications made by that Participant.\n\n8.3. If You assert a patent infringement claim\ + \ against Participant alleging that such Participant's Contributor Version directly or indirectly\ + \ infringes any patent where such claim is resolved (such as by license or settlement) prior\ + \ to the initiation of patent infringement litigation, then the reasonable value of the\ + \ licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account\ + \ in determining the amount or value of any payment or license.\n\n8.4. In the event of\ + \ termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding\ + \ distributors and resellers) which have been validly granted by You or any distributor\ + \ hereunder prior to termination shall survive termination.\n\n9. Limitation of liability\n\ + Under no circumstances and under no legal theory, whether tort (including negligence), contract,\ + \ or otherwise, shall you, the initial developer, any other contributor, or any distributor\ + \ of covered code, or any supplier of any of such parties, be liable to any person for any\ + \ indirect, special, incidental, or consequential damages of any character including, without\ + \ limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction,\ + \ or any and all other commercial damages or losses, even if such party shall have been\ + \ informed of the possibility of such damages. This limitation of liability shall not apply\ + \ to liability for death or personal injury resulting from such party's negligence to the\ + \ extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion\ + \ or limitation of incidental or consequential damages, so this exclusion and limitation\ + \ may not apply to you.\n\n10. U.S. government end users\nThe Covered Code is a \"commercial\ + \ item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial\ + \ computer software\" and \"commercial computer software documentation,\" as such terms\ + \ are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R.\ + \ 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered\ + \ Code with only those rights set forth herein.\n\n11. Miscellaneous\nThis License represents\ + \ the complete agreement concerning subject matter hereof. If any provision of this License\ + \ is held to be unenforceable, such provision shall be reformed only to the extent necessary\ + \ to make it enforceable. This License shall be governed by the laws of The Netherlands\ + \ and You hereby irrevocably agree that the Courts of Amsterdam, The Netherlands, are to\ + \ have jurisdiction to settle any disputes which may arise out of or in connection with\ + \ this License. The application of the United Nations Convention on Contracts for the International\ + \ Sale of Goods is expressly excluded. Any law or regulation which provides that the language\ + \ of a contract shall be construed against the drafter shall not apply to this License.\n\ + \n12. Responsibility for claims\nAs between Initial Developer and the Contributors, each\ + \ party is responsible for claims and damages arising, directly or indirectly, out of its\ + \ utilization of rights under this License and You agree to work with Initial Developer\ + \ and Contributors to distribute such responsibility on an equitable basis. Nothing herein\ + \ is intended or shall be deemed to constitute any admission of liability.\n\n13. Multiple-licensed\ + \ code\nInitial Developer may designate portions of the Covered Code as \"Multiple-Licensed\"\ + . \"Multiple-Licensed\" means that the Initial Developer permits you to utilize portions\ + \ of the Covered Code under Your choice of the MonetDB Public License or the alternative\ + \ licenses, if any, specified by the Initial Developer in the file described in Exhibit\ + \ A.\n\nExhibit A - MonetDB Public License.\n\"The contents of this file are subject to\ + \ the MonetDB Public License\nVersion 1.1 (the \"License\"); you may not use this file except\ + \ in\ncompliance with the License. You may obtain a copy of the License at\nhttp://www.monetdb.org/Legal/MonetDBLicense\n\ + \nSoftware distributed under the License is distributed on an \"AS IS\"\nbasis, WITHOUT\ + \ WARRANTY OF ANY KIND, either express or implied. See the\nLicense for the specific language\ + \ governing rights and limitations\nunder the License.\n\nThe Original Code is .\n\nThe\ + \ Initial Developer of the Original Code is .\nPortions created by are Copyright (C)\ + \ \n . All Rights Reserved.\n\nContributor(s): .\n\nAlternatively, the contents of this\ + \ file may be used under the terms\nof the license (the \"[ ] License\"), in which\ + \ case the\nprovisions of [ ] License are applicable instead of those\nabove. If you wish\ + \ to allow use of your version of this file only\nunder the terms of the [ ] License and\ + \ not to allow others to use\nyour version of this file under the MonetDB Public License,\ + \ indicate\nyour decision by deleting the provisions above and replace them with\nthe notice\ + \ and other provisions required by the [ ] License. If you\ndo not delete the provisions\ + \ above, a recipient may use your version\nof this file under either the MonetDB Public\ + \ License or the [ ] License.\"\n\nNOTE: The text of this Exhibit A may differ slightly\ + \ from the text of the notices in the Source Code files of the Original Code. You should\ + \ use the text of this Exhibit A rather than the text found in the Original Code Source\ + \ Code for Your Modifications." json: monetdb-1.1.json - yml: monetdb-1.1.yml + yaml: monetdb-1.1.yml html: monetdb-1.1.html - text: monetdb-1.1.LICENSE + license: monetdb-1.1.LICENSE - license_key: mongodb-sspl-1.0 + category: Source-available spdx_license_key: SSPL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: " Server Side Public License\n VERSION 1, OCTOBER\ + \ 16, 2018\n\n Copyright © 2018 MongoDB, Inc.\n\n Everyone is permitted\ + \ to copy and distribute verbatim copies of this\n license document, but changing it is\ + \ not allowed.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n \n\ + \ “This License” refers to Server Side Public License.\n\n “Copyright” also means copyright-like\ + \ laws that apply to other kinds of\n works, such as semiconductor masks.\n\n “The Program”\ + \ refers to any copyrightable work licensed under this\n License. Each licensee is addressed\ + \ as “you”. “Licensees” and\n “recipients” may be individuals or organizations.\n\n To\ + \ “modify” a work means to copy from or adapt all or part of the work in\n a fashion requiring\ + \ copyright permission, other than the making of an\n exact copy. The resulting work is\ + \ called a “modified version” of the\n earlier work or a work “based on” the earlier work.\n\ + \n A “covered work” means either the unmodified Program or a work based on\n the Program.\n\ + \n To “propagate” a work means to do anything with it that, without\n permission, would\ + \ make you directly or secondarily liable for\n infringement under applicable copyright\ + \ law, except executing it on a\n computer or modifying a private copy. Propagation includes\ + \ copying,\n distribution (with or without modification), making available to the\n public,\ + \ and in some countries other activities as well.\n\n To “convey” a work means any kind\ + \ of propagation that enables other\n parties to make or receive copies. Mere interaction\ + \ with a user through a\n computer network, with no transfer of a copy, is not conveying.\n\ + \n An interactive user interface displays “Appropriate Legal Notices” to the\n extent\ + \ that it includes a convenient and prominently visible feature that\n (1) displays an\ + \ appropriate copyright notice, and (2) tells the user that\n there is no warranty for\ + \ the work (except to the extent that warranties\n are provided), that licensees may convey\ + \ the work under this License, and\n how to view a copy of this License. If the interface\ + \ presents a list of\n user commands or options, such as a menu, a prominent item in the\ + \ list\n meets this criterion.\n\n 1. Source Code.\n\n The “source code” for a work means\ + \ the preferred form of the work for\n making modifications to it. “Object code” means\ + \ any non-source form of a\n work.\n\n A “Standard Interface” means an interface that\ + \ either is an official\n standard defined by a recognized standards body, or, in the case\ + \ of\n interfaces specified for a particular programming language, one that is\n widely\ + \ used among developers working in that language. The “System\n Libraries” of an executable\ + \ work include anything, other than the work as\n a whole, that (a) is included in the\ + \ normal form of packaging a Major\n Component, but which is not part of that Major Component,\ + \ and (b) serves\n only to enable use of the work with that Major Component, or to implement\n\ + \ a Standard Interface for which an implementation is available to the\n public in source\ + \ code form. A “Major Component”, in this context, means a\n major essential component\ + \ (kernel, window system, and so on) of the\n specific operating system (if any) on which\ + \ the executable work runs, or\n a compiler used to produce the work, or an object code\ + \ interpreter used\n to run it.\n\n The “Corresponding Source” for a work in object code\ + \ form means all the\n source code needed to generate, install, and (for an executable\ + \ work) run\n the object code and to modify the work, including scripts to control\n those\ + \ activities. However, it does not include the work's System\n Libraries, or general-purpose\ + \ tools or generally available free programs\n which are used unmodified in performing\ + \ those activities but which are\n not part of the work. For example, Corresponding Source\ + \ includes\n interface definition files associated with source files for the work, and\n\ + \ the source code for shared libraries and dynamically linked subprograms\n that the work\ + \ is specifically designed to require, such as by intimate\n data communication or control\ + \ flow between those subprograms and other\n parts of the work.\n\n The Corresponding\ + \ Source need not include anything that users can\n regenerate automatically from other\ + \ parts of the Corresponding Source.\n\n The Corresponding Source for a work in source\ + \ code form is that same work.\n\n 2. Basic Permissions.\n\n All rights granted under\ + \ this License are granted for the term of\n copyright on the Program, and are irrevocable\ + \ provided the stated\n conditions are met. This License explicitly affirms your unlimited\n\ + \ permission to run the unmodified Program, subject to section 13. The\n output from running\ + \ a covered work is covered by this License only if the\n output, given its content, constitutes\ + \ a covered work. This License\n acknowledges your rights of fair use or other equivalent,\ + \ as provided by\n copyright law. Subject to section 13, you may make, run and propagate\n\ + \ covered works that you do not convey, without conditions so long as your\n license otherwise\ + \ remains in force. You may convey covered works to\n others for the sole purpose of having\ + \ them make modifications exclusively\n for you, or provide you with facilities for running\ + \ those works, provided\n that you comply with the terms of this License in conveying all\n\ + \ material for which you do not control copyright. Those thus making or\n running the\ + \ covered works for you must do so exclusively on your\n behalf, under your direction and\ + \ control, on terms that prohibit them\n from making any copies of your copyrighted material\ + \ outside their\n relationship with you.\n\n Conveying under any other circumstances is\ + \ permitted solely under the\n conditions stated below. Sublicensing is not allowed; section\ + \ 10 makes it\n unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention\ + \ Law.\n\n No covered work shall be deemed part of an effective technological\n measure\ + \ under any applicable law fulfilling obligations under article 11\n of the WIPO copyright\ + \ treaty adopted on 20 December 1996, or similar laws\n prohibiting or restricting circumvention\ + \ of such measures.\n\n When you convey a covered work, you waive any legal power to forbid\n\ + \ circumvention of technological measures to the extent such circumvention is\n effected\ + \ by exercising rights under this License with respect to the\n covered work, and you disclaim\ + \ any intention to limit operation or\n modification of the work as a means of enforcing,\ + \ against the work's users,\n your or third parties' legal rights to forbid circumvention\ + \ of\n technological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim\ + \ copies of the Program's source code as you\n receive it, in any medium, provided that\ + \ you conspicuously and\n appropriately publish on each copy an appropriate copyright notice;\ + \ keep\n intact all notices stating that this License and any non-permissive terms\n added\ + \ in accord with section 7 apply to the code; keep intact all notices\n of the absence\ + \ of any warranty; and give all recipients a copy of this\n License along with the Program.\ + \ You may charge any price or no price for\n each copy that you convey, and you may offer\ + \ support or warranty\n protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\ + \n You may convey a work based on the Program, or the modifications to\n produce it from\ + \ the Program, in the form of source code under the terms\n of section 4, provided that\ + \ you also meet all of these conditions:\n\n a) The work must carry prominent notices\ + \ stating that you modified it,\n and giving a relevant date.\n\n b) The work must\ + \ carry prominent notices stating that it is released\n under this License and any conditions\ + \ added under section 7. This\n requirement modifies the requirement in section 4 to\ + \ “keep intact all\n notices”.\n\n c) You must license the entire work, as a whole,\ + \ under this License to\n anyone who comes into possession of a copy. This License will\ + \ therefore\n apply, along with any applicable section 7 additional terms, to the\n \ + \ whole of the work, and all its parts, regardless of how they are\n packaged. This\ + \ License gives no permission to license the work in any\n other way, but it does not\ + \ invalidate such permission if you have\n separately received it.\n\n d) If the work\ + \ has interactive user interfaces, each must display\n Appropriate Legal Notices; however,\ + \ if the Program has interactive\n interfaces that do not display Appropriate Legal Notices,\ + \ your work\n need not make them do so.\n\n A compilation of a covered work with other\ + \ separate and independent\n works, which are not by their nature extensions of the covered\ + \ work, and\n which are not combined with it such as to form a larger program, in or on\n\ + \ a volume of a storage or distribution medium, is called an “aggregate” if\n the compilation\ + \ and its resulting copyright are not used to limit the\n access or legal rights of the\ + \ compilation's users beyond what the\n individual works permit. Inclusion of a covered\ + \ work in an aggregate does\n not cause this License to apply to the other parts of the\ + \ aggregate.\n \n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in\ + \ object code form under the terms of\n sections 4 and 5, provided that you also convey\ + \ the machine-readable\n Corresponding Source under the terms of this License, in one of\ + \ these\n ways:\n\n a) Convey the object code in, or embodied in, a physical product\n\ + \ (including a physical distribution medium), accompanied by the\n Corresponding Source\ + \ fixed on a durable physical medium customarily\n used for software interchange.\n \ + \ \n b) Convey the object code in, or embodied in, a physical product\n (including\ + \ a physical distribution medium), accompanied by a written\n offer, valid for at least\ + \ three years and valid for as long as you\n offer spare parts or customer support for\ + \ that product model, to give\n anyone who possesses the object code either (1) a copy\ + \ of the\n Corresponding Source for all the software in the product that is\n covered\ + \ by this License, on a durable physical medium customarily used\n for software interchange,\ + \ for a price no more than your reasonable cost\n of physically performing this conveying\ + \ of source, or (2) access to\n copy the Corresponding Source from a network server at\ + \ no charge.\n \n c) Convey individual copies of the object code with a copy of the\n\ + \ written offer to provide the Corresponding Source. This alternative is\n allowed\ + \ only occasionally and noncommercially, and only if you received\n the object code with\ + \ such an offer, in accord with subsection 6b.\n \n d) Convey the object code by offering\ + \ access from a designated place\n (gratis or for a charge), and offer equivalent access\ + \ to the\n Corresponding Source in the same way through the same place at no\n further\ + \ charge. You need not require recipients to copy the\n Corresponding Source along with\ + \ the object code. If the place to copy\n the object code is a network server, the Corresponding\ + \ Source may be on\n a different server (operated by you or a third party) that supports\n\ + \ equivalent copying facilities, provided you maintain clear directions\n next to\ + \ the object code saying where to find the Corresponding Source.\n Regardless of what\ + \ server hosts the Corresponding Source, you remain\n obligated to ensure that it is\ + \ available for as long as needed to\n satisfy these requirements.\n \n e) Convey\ + \ the object code using peer-to-peer transmission, provided you\n inform other peers\ + \ where the object code and Corresponding Source of\n the work are being offered to the\ + \ general public at no charge under\n subsection 6d.\n\n A separable portion of the\ + \ object code, whose source code is excluded\n from the Corresponding Source as a System\ + \ Library, need not be included\n in conveying the object code work.\n\n A “User Product”\ + \ is either (1) a “consumer product”, which means any\n tangible personal property which\ + \ is normally used for personal, family,\n or household purposes, or (2) anything designed\ + \ or sold for incorporation\n into a dwelling. In determining whether a product is a consumer\ + \ product,\n doubtful cases shall be resolved in favor of coverage. For a particular\n\ + \ product received by a particular user, “normally used” refers to a\n typical or common\ + \ use of that class of product, regardless of the status\n of the particular user or of\ + \ the way in which the particular user\n actually uses, or expects or is expected to use,\ + \ the product. A product\n is a consumer product regardless of whether the product has\ + \ substantial\n commercial, industrial or non-consumer uses, unless such uses represent\n\ + \ the only significant mode of use of the product.\n\n “Installation Information” for\ + \ a User Product means any methods,\n procedures, authorization keys, or other information\ + \ required to install\n and execute modified versions of a covered work in that User Product\ + \ from\n a modified version of its Corresponding Source. The information must\n suffice\ + \ to ensure that the continued functioning of the modified object\n code is in no case\ + \ prevented or interfered with solely because\n modification has been made.\n\n If you\ + \ convey an object code work under this section in, or with, or\n specifically for use\ + \ in, a User Product, and the conveying occurs as part\n of a transaction in which the\ + \ right of possession and use of the User\n Product is transferred to the recipient in\ + \ perpetuity or for a fixed term\n (regardless of how the transaction is characterized),\ + \ the Corresponding\n Source conveyed under this section must be accompanied by the\n \ + \ Installation Information. But this requirement does not apply if neither\n you nor any\ + \ third party retains the ability to install modified object\n code on the User Product\ + \ (for example, the work has been installed in\n ROM).\n\n The requirement to provide\ + \ Installation Information does not include a\n requirement to continue to provide support\ + \ service, warranty, or updates\n for a work that has been modified or installed by the\ + \ recipient, or for\n the User Product in which it has been modified or installed. Access\n\ + \ to a network may be denied when the modification itself materially\n and adversely affects\ + \ the operation of the network or violates the\n rules and protocols for communication\ + \ across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\ + \ in\n accord with this section must be in a format that is publicly documented\n (and\ + \ with an implementation available to the public in source code form),\n and must require\ + \ no special password or key for unpacking, reading or\n copying.\n\n 7. Additional Terms.\n\ + \n “Additional permissions” are terms that supplement the terms of this\n License by making\ + \ exceptions from one or more of its conditions.\n Additional permissions that are applicable\ + \ to the entire Program shall be\n treated as though they were included in this License,\ + \ to the extent that\n they are valid under applicable law. If additional permissions apply\ + \ only\n to part of the Program, that part may be used separately under those\n permissions,\ + \ but the entire Program remains governed by this License\n without regard to the additional\ + \ permissions. When you convey a copy of\n a covered work, you may at your option remove\ + \ any additional permissions\n from that copy, or from any part of it. (Additional permissions\ + \ may be\n written to require their own removal in certain cases when you modify the\n\ + \ work.) You may place additional permissions on material, added by you to\n a covered\ + \ work, for which you have or can give appropriate copyright\n permission.\n\n Notwithstanding\ + \ any other provision of this License, for material you add\n to a covered work, you may\ + \ (if authorized by the copyright holders of\n that material) supplement the terms of this\ + \ License with terms:\n\n a) Disclaiming warranty or limiting liability differently from\ + \ the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation\ + \ of specified reasonable legal notices or\n author attributions in that material or\ + \ in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting\ + \ misrepresentation of the origin of that material, or\n requiring that modified versions\ + \ of such material be marked in\n reasonable ways as different from the original version;\ + \ or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors\ + \ of the material; or\n\n e) Declining to grant rights under trademark law for use of\ + \ some trade\n names, trademarks, or service marks; or\n\n f) Requiring indemnification\ + \ of licensors and authors of that material\n by anyone who conveys the material (or\ + \ modified versions of it) with\n contractual assumptions of liability to the recipient,\ + \ for any\n liability that these contractual assumptions directly impose on those\n \ + \ licensors and authors.\n\n All other non-permissive additional terms are considered\ + \ “further\n restrictions” within the meaning of section 10. If the Program as you\n received\ + \ it, or any part of it, contains a notice stating that it is\n governed by this License\ + \ along with a term that is a further restriction,\n you may remove that term. If a license\ + \ document contains a further\n restriction but permits relicensing or conveying under\ + \ this License, you\n may add to a covered work material governed by the terms of that\ + \ license\n document, provided that the further restriction does not survive such\n relicensing\ + \ or conveying.\n\n If you add terms to a covered work in accord with this section, you\ + \ must\n place, in the relevant source files, a statement of the additional terms\n that\ + \ apply to those files, or a notice indicating where to find the\n applicable terms. Additional\ + \ terms, permissive or non-permissive, may be\n stated in the form of a separately written\ + \ license, or stated as\n exceptions; the above requirements apply either way.\n\n 8.\ + \ Termination.\n\n You may not propagate or modify a covered work except as expressly\n\ + \ provided under this License. Any attempt otherwise to propagate or modify\n it is void,\ + \ and will automatically terminate your rights under this\n License (including any patent\ + \ licenses granted under the third paragraph\n of section 11).\n\n However, if you cease\ + \ all violation of this License, then your license\n from a particular copyright holder\ + \ is reinstated (a) provisionally,\n unless and until the copyright holder explicitly and\ + \ finally terminates\n your license, and (b) permanently, if the copyright holder fails\ + \ to\n notify you of the violation by some reasonable means prior to 60 days\n after the\ + \ cessation.\n\n Moreover, your license from a particular copyright holder is reinstated\n\ + \ permanently if the copyright holder notifies you of the violation by some\n reasonable\ + \ means, this is the first time you have received notice of\n violation of this License\ + \ (for any work) from that copyright holder, and\n you cure the violation prior to 30 days\ + \ after your receipt of the notice.\n\n Termination of your rights under this section does\ + \ not terminate the\n licenses of parties who have received copies or rights from you under\n\ + \ this License. If your rights have been terminated and not permanently\n reinstated,\ + \ you do not qualify to receive new licenses for the same\n material under section 10.\n\ + \n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this\ + \ License in order to receive or run a\n copy of the Program. Ancillary propagation of\ + \ a covered work occurring\n solely as a consequence of using peer-to-peer transmission\ + \ to receive a\n copy likewise does not require acceptance. However, nothing other than\n\ + \ this License grants you permission to propagate or modify any covered\n work. These\ + \ actions infringe copyright if you do not accept this License.\n Therefore, by modifying\ + \ or propagating a covered work, you indicate your\n acceptance of this License to do so.\n\ + \n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered\ + \ work, the recipient automatically receives\n a license from the original licensors, to\ + \ run, modify and propagate that\n work, subject to this License. You are not responsible\ + \ for enforcing\n compliance by third parties with this License.\n\n An “entity transaction”\ + \ is a transaction transferring control of an\n organization, or substantially all assets\ + \ of one, or subdividing an\n organization, or merging organizations. If propagation of\ + \ a covered work\n results from an entity transaction, each party to that transaction who\n\ + \ receives a copy of the work also receives whatever licenses to the work\n the party's\ + \ predecessor in interest had or could give under the previous\n paragraph, plus a right\ + \ to possession of the Corresponding Source of the\n work from the predecessor in interest,\ + \ if the predecessor has it or can\n get it with reasonable efforts.\n\n You may not impose\ + \ any further restrictions on the exercise of the rights\n granted or affirmed under this\ + \ License. For example, you may not impose a\n license fee, royalty, or other charge for\ + \ exercise of rights granted\n under this License, and you may not initiate litigation\ + \ (including a\n cross-claim or counterclaim in a lawsuit) alleging that any patent claim\n\ + \ is infringed by making, using, selling, offering for sale, or importing\n the Program\ + \ or any portion of it.\n\n 11. Patents.\n\n A “contributor” is a copyright holder who\ + \ authorizes use under this\n License of the Program or a work on which the Program is\ + \ based. The work\n thus licensed is called the contributor's “contributor version”.\n\n\ + \ A contributor's “essential patent claims” are all patent claims owned or\n controlled\ + \ by the contributor, whether already acquired or hereafter\n acquired, that would be infringed\ + \ by some manner, permitted by this\n License, of making, using, or selling its contributor\ + \ version, but do not\n include claims that would be infringed only as a consequence of\ + \ further\n modification of the contributor version. For purposes of this definition,\n\ + \ “control” includes the right to grant patent sublicenses in a manner\n consistent with\ + \ the requirements of this License.\n\n Each contributor grants you a non-exclusive, worldwide,\ + \ royalty-free\n patent license under the contributor's essential patent claims, to make,\n\ + \ use, sell, offer for sale, import and otherwise run, modify and propagate\n the contents\ + \ of its contributor version.\n\n In the following three paragraphs, a “patent license”\ + \ is any express\n agreement or commitment, however denominated, not to enforce a patent\n\ + \ (such as an express permission to practice a patent or covenant not to\n sue for patent\ + \ infringement). To “grant” such a patent license to a party\n means to make such an agreement\ + \ or commitment not to enforce a patent\n against the party.\n\n If you convey a covered\ + \ work, knowingly relying on a patent license, and\n the Corresponding Source of the work\ + \ is not available for anyone to copy,\n free of charge and under the terms of this License,\ + \ through a publicly\n available network server or other readily accessible means, then\ + \ you must\n either (1) cause the Corresponding Source to be so available, or (2)\n arrange\ + \ to deprive yourself of the benefit of the patent license for this\n particular work,\ + \ or (3) arrange, in a manner consistent with the\n requirements of this License, to extend\ + \ the patent license to downstream\n recipients. “Knowingly relying” means you have actual\ + \ knowledge that, but\n for the patent license, your conveying the covered work in a country,\ + \ or\n your recipient's use of the covered work in a country, would infringe\n one or\ + \ more identifiable patents in that country that you have reason\n to believe are valid.\n\ + \n If, pursuant to or in connection with a single transaction or\n arrangement, you convey,\ + \ or propagate by procuring conveyance of, a\n covered work, and grant a patent license\ + \ to some of the parties receiving\n the covered work authorizing them to use, propagate,\ + \ modify or convey a\n specific copy of the covered work, then the patent license you grant\ + \ is\n automatically extended to all recipients of the covered work and works\n based\ + \ on it.\n\n A patent license is “discriminatory” if it does not include within the\n \ + \ scope of its coverage, prohibits the exercise of, or is conditioned on\n the non-exercise\ + \ of one or more of the rights that are specifically\n granted under this License. You\ + \ may not convey a covered work if you are\n a party to an arrangement with a third party\ + \ that is in the business of\n distributing software, under which you make payment to the\ + \ third party\n based on the extent of your activity of conveying the work, and under\n\ + \ which the third party grants, to any of the parties who would receive the\n covered\ + \ work from you, a discriminatory patent license (a) in connection\n with copies of the\ + \ covered work conveyed by you (or copies made from\n those copies), or (b) primarily for\ + \ and in connection with specific\n products or compilations that contain the covered work,\ + \ unless you\n entered into that arrangement, or that patent license was granted, prior\n\ + \ to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\ + \ any\n implied license or other defenses to infringement that may otherwise be\n available\ + \ to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If\ + \ conditions are imposed on you (whether by court order, agreement or\n otherwise) that\ + \ contradict the conditions of this License, they do not\n excuse you from the conditions\ + \ of this License. If you cannot use,\n propagate or convey a covered work so as to satisfy\ + \ simultaneously your\n obligations under this License and any other pertinent obligations,\ + \ then\n as a consequence you may not use, propagate or convey it at all. For\n example,\ + \ if you agree to terms that obligate you to collect a royalty for\n further conveying\ + \ from those to whom you convey the Program, the only way\n you could satisfy both those\ + \ terms and this License would be to refrain\n entirely from conveying the Program.\n\n\ + \ 13. Offering the Program as a Service.\n\n If you make the functionality of the Program\ + \ or a modified version\n available to third parties as a service, you must make the Service\ + \ Source\n Code available via network download to everyone at no charge, under the\n terms\ + \ of this License. Making the functionality of the Program or\n modified version available\ + \ to third parties as a service includes,\n without limitation, enabling third parties\ + \ to interact with the\n functionality of the Program or modified version remotely through\ + \ a\n computer network, offering a service the value of which entirely or\n primarily\ + \ derives from the value of the Program or modified version, or\n offering a service that\ + \ accomplishes for users the primary purpose of the\n Software or modified version.\n\n\ + \ “Service Source Code” means the Corresponding Source for the Program or\n the modified\ + \ version, and the Corresponding Source for all programs that\n you use to make the Program\ + \ or modified version available as a service,\n including, without limitation, management\ + \ software, user interfaces,\n application program interfaces, automation software, monitoring\ + \ software,\n backup software, storage software and hosting software, all such that a\n\ + \ user could run an instance of the service using the Service Source Code\n you make available.\ + \ \n\n 14. Revised Versions of this License.\n\n MongoDB, Inc. may publish revised and/or\ + \ new versions of the Server Side\n Public License from time to time. Such new versions\ + \ will be similar in\n spirit to the present version, but may differ in detail to address\ + \ new\n problems or concerns.\n\n Each version is given a distinguishing version number.\ + \ If the Program\n specifies that a certain numbered version of the Server Side Public\n\ + \ License “or any later version” applies to it, you have the option of\n following the\ + \ terms and conditions either of that numbered version or of\n any later version published\ + \ by MongoDB, Inc. If the Program does not\n specify a version number of the Server Side\ + \ Public License, you may\n choose any version ever published by MongoDB, Inc.\n\n If\ + \ the Program specifies that a proxy can decide which future versions of\n the Server Side\ + \ Public License can be used, that proxy's public statement\n of acceptance of a version\ + \ permanently authorizes you to choose that\n version for the Program.\n\n Later license\ + \ versions may give you additional or different permissions.\n However, no additional obligations\ + \ are imposed on any author or copyright\n holder as a result of your choosing to follow\ + \ a later version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM,\ + \ TO THE EXTENT PERMITTED BY\n APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING\ + \ THE COPYRIGHT\n HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY\n\ + \ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\n THE IMPLIED\ + \ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE. THE ENTIRE RISK\ + \ AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\n IS WITH YOU. SHOULD THE PROGRAM PROVE\ + \ DEFECTIVE, YOU ASSUME THE COST OF\n ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\ + \ \n 16. Limitation of Liability.\n \n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW\ + \ OR AGREED TO IN WRITING\n WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES\ + \ AND/OR CONVEYS\n THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING\n\ + \ ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF\n THE USE OR\ + \ INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO\n LOSS OF DATA OR DATA BEING\ + \ RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU\n OR THIRD PARTIES OR A FAILURE OF THE\ + \ PROGRAM TO OPERATE WITH ANY OTHER\n PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS\ + \ BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGES.\n \n 17. Interpretation of Sections\ + \ 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided above\n\ + \ cannot be given local legal effect according to their terms, reviewing\n courts shall\ + \ apply local law that most closely approximates an absolute\n waiver of all civil liability\ + \ in connection with the Program, unless a\n warranty or assumption of liability accompanies\ + \ a copy of the Program in\n return for a fee.\n \n END OF TERMS\ + \ AND CONDITIONS" json: mongodb-sspl-1.0.json - yml: mongodb-sspl-1.0.yml + yaml: mongodb-sspl-1.0.yml html: mongodb-sspl-1.0.html - text: mongodb-sspl-1.0.LICENSE + license: mongodb-sspl-1.0.LICENSE +- license_key: monkeysaudio + category: Free Restricted + spdx_license_key: LicenseRef-scancode-monkeysaudio + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: "Monkey's Audio Program License Agreement\n\n1. Monkey's Audio is completely free for\ + \ personal, educational, or commercial\nuse.\n\n2. Although the software has been tested\ + \ thoroughly, the author is in no way\nresponsible for damages due to bugs or misuse.\n\n\ + 3. The redistribution of Monkey's Audio is only allowed in cases where the\noriginal installer\ + \ and components therein have not been modified.\n\n4. The use of Monkey's Audio or any\ + \ component thereof from another program\nrequires compliance with the 'Monkey's Audio SDK\ + \ and Source Code License\nAgreement'.\n\n5. Installing and using Monkey's Audio signifies\ + \ the acceptance of these terms.\nIf you do not agree with any of the above terms, you must\ + \ cease using Monkey's\nAudio and remove it from your storage device.\n\nMonkey's Audio\ + \ SDK and Source Code License Agreement\n\n1. The Monkey's Audio SDK and source code can\ + \ be freely used to add APE format\nplayback, encoding, or tagging support to any product,\ + \ free or commercial.\n\n2. Monkey's Audio source can be included in GPL and open-source\ + \ software,\nalthough Monkey's Audio itself will not be subjected to external licensing\n\ + requirements or other viral source restrictions.\n \n3. Any source code, ideas, or libraries\ + \ used must be plainly acknowledged in the\nsoftware using the code.\n \n4. Although the\ + \ software has been tested thoroughly, the author is in no way\nresponsible for damages\ + \ due to bugs or misuse.\n \n5. If you do not completely agree with all of the previous\ + \ stipulations, you\nmust cease using this source code and remove it from your storage device." + json: monkeysaudio.json + yaml: monkeysaudio.yml + html: monkeysaudio.html + license: monkeysaudio.LICENSE - license_key: motorola + category: Permissive spdx_license_key: LicenseRef-scancode-motorola other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "THE SOFTWARE is provided on an \"AS IS\" basis and without warranty.\nTo the maximum\ + \ extent permitted by applicable law,\nMOTOROLA DISCLAIMS ALL WARRANTIES WHETHER EXPRESS\ + \ OR IMPLIED, \nINCLUDING IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR\ + \ PURPOSE\nand any warranty against infringement with regard to the SOFTWARE\n(INCLUDING\ + \ ANY MODIFIED VERSIONS THEREOF) and any accompanying written materials.\n\nTo the maximum\ + \ extent permitted by applicable law,\nIN NO EVENT SHALL MOTOROLA BE LIABLE FOR ANY DAMAGES\ + \ WHATSOEVER\n(INCLUDING WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS,\nBUSINESS\ + \ INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER PECUNIARY LOSS)\nARISING OF THE USE\ + \ OR INABILITY TO USE THE SOFTWARE.\nMotorola assumes no responsibility for the maintenance\ + \ and support of the SOFTWARE.\n\nYou are hereby granted a copyright license to use, modify,\ + \ and distribute the SOFTWARE\nso long as this entire notice is retained without alteration\ + \ in any modified and/or\nredistributed versions, and that such modified versions are clearly\ + \ identified as such.\nNo licenses are granted by implication, estoppel or otherwise under\ + \ any patents\nor trademarks of Motorola, Inc." json: motorola.json - yml: motorola.yml + yaml: motorola.yml html: motorola.html - text: motorola.LICENSE + license: motorola.LICENSE - license_key: motosoto-0.9.1 + category: Copyleft spdx_license_key: Motosoto other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + MOTOSOTO OPEN SOURCE LICENSE - Version 0.9.1 + + This Motosoto Open Source License (the "License") applies to "Community Portal Server" and related software products as well as any updatesor maintenance releases of that software ("Motosoto Products") that are distributed by Motosoto.Com B.V. ("Licensor"). Any Motosoto Product licensed pursuant to this License is a "Licensed Product." Licensed Product, in its entirety, is protected by Dutch copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product and has been submitted to the Open Software Initiative (OSI) for approval. + + Preamble + + This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble. This License complies with the Open Source Definition and has been approved by Open Source Initiative. Software distributed under this License may be marked as "OSI Certified Open Source Software." + + This License provides that: + + 1. You may use, sell or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required. + + 2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.) + + 3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.) + + 4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others. + + 5. You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages. + + 6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for the Source Code. + + 7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate. + + You may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product. + + Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications. + + New versions of this License may be published from time to time. You may choose to continue to use the license terms in this version of the License or those from the new version. However, only the Licensor has the right to change the License terms as they apply to the Licensed Product. This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License. + + License Terms + 1. Grant of License From Licensor. + + Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + + a. Use, reproduce, modify, display, perform, sublicense and distribute Licensed Product or portions thereof (including Modifications as hereinafter defined), in both Source Code or as an executable program. "Source Code" means the preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. + + b. Create Derivative Works (as that term is defined under Dutch copyright law) of Licensed Product by adding to or deleting from the substance or structure of said Licensed Product. + + c. Under claims of patents now or hereafter owned or controlled by Licensor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Licensed Product or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Licensed Product or portions thereof or Derivative Works thereof. + + 2. Grant of License to Modifications From Contributor. + + "Modifications" means any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + + + + + a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + + b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + + 3. Exclusions From License Grant. + + Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. + + 4. Your Obligations Regarding Distribution. + + a. Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(e). + b. Availability of Source Code. You must make available, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of said Licensed Product or Modifications has been made available. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + + c. Description of Modifications. You must cause any Modifications that you create or to which you contribute, and which you distribute, to contain a file documenting the additions, changes or deletions you made to create or contribute to those Modifications, and the dates of any such additions, changes or deletions. You must include a prominent statement that the Modifications are derived, directly or indirectly, from the Licensed Product and include the names of the Licensor and any Contributor to the Licensed Product in (i) the Source Code and (ii) in any notice displayed by a version of the Licensed Product you distribute or in related documentation in which you describe the origin or ownership of the Licensed Product. You may not modify or delete any preexisting copyright notices in the Licensed Product. + + d. Intellectual Property Matters. + + i. Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained. + ii. Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file. + + iii. Representations. You represent that, except as disclosed pursuant to 4(d)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License. + + e. Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer. + + f. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(e) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), (iii) you retain all existing copyright notices in the Licensed Product, and (iv) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. + g. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto. + + 5. Inability to Comply Due to Statute or Regulation. + + If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it. + + 6. Application of This License. + + This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference. + + 7. Versions of This License. + + a. Version. The Motosoto Open Source License is derived from the Jabber Open Source License. All changes are related to applicable law and the location of court. + + b. New Versions. Licensor may publish from time to time revised and/or new versions of the License. + + c. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version. You may also choose to use such Licensed Product under the terms of any subsequent version of the License published by Licensor. No one other than Lic ensor has the right to modify the terms applicable to Licensed Product created under this License. + d. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor. + + 8. Disclaimer of Warranty. + + LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 9. Termination. + + a. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within thirty (30) days of becoming aware of the breach. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. + b. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as "Respondent") alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period. + + c. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license. + + d. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and reselle rs) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination. + + 10. Limitation of Liability. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY’S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + + 11. Responsibility for Claims. + + As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + + 12 .U.S. Government End Users. + + The Licensed Product is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein. + + 13. Miscellaneous. + + This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by Dutch law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. You and Licensor expressly waive any rights to a jury trial in any litigation concerning Licensed Product or this License. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. + + 14. Definition of "You" in This License. + "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, "you" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (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. + + 15. Glossary. + + All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses. + + Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2) + + Derivative Works: That term as used in this License is defined under Dutch copyright law. (See Section 1(b)) + + License: This Motosoto Open Source License. (See first paragraph of License) + + Licensed Product: Any Motosoto Product licensed pursuant to this License. The term + + "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) + + Licensor: Motosoto.Com B.V.. (See first paragraph of License) + + Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2) + + Notice: The notice contained in Exhibit A. (See Section 4(e)) + + Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. json: motosoto-0.9.1.json - yml: motosoto-0.9.1.yml + yaml: motosoto-0.9.1.yml html: motosoto-0.9.1.html - text: motosoto-0.9.1.LICENSE + license: motosoto-0.9.1.LICENSE - license_key: moxa-linux-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-moxa-linux-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + The software accompanying this license statement (the “Software”) + is the property of Moxa Inc. (the “Moxa”), and is protected by + United States and International Copyright Laws and International + treaty provisions. No ownership rights are granted by this + Agreement or possession of the Software. Therefore, you must treat + the Licensed Software like any other copyrighted material. Your + rights and obligations in its use are described as follows: + + 1. You may freely redistribute this software under this license. + 2. You may freely download and use this software on Moxa's device. + 3. You may not modify or attempt to reverse engineer the software, or + make any attempt to change or even examine the source code of the + software. + 4. You may not re-license or sub-license the software to any person or + business, using any other license. + 5. Moxa(r) is worldwide registered trademark. json: moxa-linux-firmware.json - yml: moxa-linux-firmware.yml + yaml: moxa-linux-firmware.yml html: moxa-linux-firmware.html - text: moxa-linux-firmware.LICENSE + license: moxa-linux-firmware.LICENSE - license_key: mozilla-gc + category: Permissive spdx_license_key: LicenseRef-scancode-mozilla-gc other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED + OR IMPLIED. ANY USE IS AT YOUR OWN RISK. + + Permission is hereby granted to use or copy this program for any + purpose, provided the above notices are retained on all copies. + + Permission to modify the code and to distribute modified code is + granted, provided the above notices are retained, and a notice that + the code was modified is included with the above copyright notice. json: mozilla-gc.json - yml: mozilla-gc.yml + yaml: mozilla-gc.yml html: mozilla-gc.html - text: mozilla-gc.LICENSE + license: mozilla-gc.LICENSE - license_key: mozilla-ospl-1.0 + category: Patent License spdx_license_key: LicenseRef-scancode-mozilla-ospl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: "Mozilla Open Software Patent License Agreement v1\nThis Open Software Patent License\ + \ Agreement (\"Agreement\") is made between you and the Licensor identified below. For purposes\ + \ of this Agreement, you means you and your Affiliates, and Licensor means the Mozilla Corporation,\ + \ Mozilla Foundation and any of their Affiliates.\n\n1.\tDefinitions\n\ta.\t\"Affiliate\"\ + \ means any entity owned or controlled by you or Licensor, as applicable, either now or\ + \ in the future.\n\tb.\t\"Mozilla Patents\" means all Patents owned, or licensable as described\ + \ in this Agreement, at any time during the License Term, by Licensor.\n\tc.\t\"Open Patent\ + \ Licensing\" means royalty-free and non-discriminatory licensing or cross-licensing arrangements\ + \ such as open source licenses or open standards licensing.\n\td.\t\"Open Source Software\"\ + \ means Software that is made generally publicly available under an open source license,\ + \ which means a license meeting the Open Source Definition as published by the Open Source\ + \ Initiative. For clarity, Software that is made available under multiple licenses will\ + \ be considered Open Source Software only to the extent it is used under an open source\ + \ license.\n\te.\tA \"Participant\" means any party that is bound to any version of this\ + \ Agreement, including you.\n\tf.\tA \"Patent\" means a patent, and any continuation, divisional,\ + \ continuation-in-part, or other patent that claims priority therefrom.\n\tg.\t\"Software\"\ + \ means instructions for programmable physical apparatus, but excludes all physical apparatus,\ + \ such as computer processors, computer hardware, and peripheral devices. For clarity, \"\ + Software\" excludes semiconductor mask works, and includes services consisting of making\ + \ available the functionality of software.\n\th.\t\"Your Patents\" means all Patents owned,\ + \ or licensable as described in this Agreement, at any time during the License Term, by\ + \ you.\n\n2.\tAcceptance and Effectiveness. You will be bound to this Agreement if you (a)\ + \ make, use, sell, import or otherwise exploit any Software, or practice any method embodied\ + \ in Software, in such a fashion that, absent the licenses granted to you herein, would\ + \ infringe any Licensor Patent; (b) take any action knowingly relying on the licenses granted\ + \ to you herein, or (c) show in any other reasonable way your intention to be bound to this\ + \ Agreement. The License Term will begin upon the first to occur of any of a, b, or c of\ + \ this paragraph and continue unless and until your license is terminated under Section\ + \ 4. In the event it is determined by a court of competent jurisdiction that this Agreement\ + \ is not binding on you, then the licenses granted by Licensor and any other Participant\ + \ to you hereunder will be void ab initio (i.e. will have never been granted to you).\n\n\ + 3.\tConditional License\n\ta.\tSubject to Section 3(b), Licensor, on behalf of itself and\ + \ each of its Affiliates, hereby grants to you and your Affiliates a royalty-free, fully-paid-up,\ + \ worldwide, non-exclusive, non-transferable license under Licensor Patents to make, have\ + \ made, use, sell, offer for sale, import, and otherwise exploit any Software and practice\ + \ any method embodied in Software.\n\tb.\tIn consideration for the rights granted hereunder\ + \ in Section 3(a), you agree to grant, upon request and upon reasonable, non-discriminatory\ + \ and royalty free terms and conditions, to Licensor and any Participant a royalty-free,\ + \ fully-paid-up, worldwide, non-exclusive, non-transferable license under your Patents to\ + \ make, have made, use, sell, offer for sale, import, and otherwise exploit any Open Source\ + \ Software and practice any method embodied in Open Source Software. As used in this paragraph,\ + \ \"reasonable\" means, without limitation, that such terms must not place any restrictions\ + \ on the practice of your Patents that would prohibit use, modification and redistribution\ + \ of the applicable software under the terms of Open Source Licenses. By way of example\ + \ and not limitation, such terms must not restrict the field of use of the Software, or\ + \ prohibit modification of the Software.\n\tc.\tMozilla or others may license Patents to\ + \ you under other terms, such as Open Patent Licensing efforts, and any other such license\ + \ granted to you will not limit your rights under this License.\n\td.\tDuring the License\ + \ Term, you may transfer your rights, licenses and obligations under this Agreement in connection\ + \ with a merger, acquisition, or sale of all or substantially all of your assets related\ + \ to this Agreement, to a party that (1) expresses in writing its intention to be bound\ + \ (sufficient to meet the conditions of Section 2), and (2) has not asserted Claims as described\ + \ in Section 4 prior to the date of transfer.\n\te.\tYou acknowledge that this Agreement\ + \ does not reflect a royalty that might otherwise have been negotiated at arms’ length for\ + \ any Patent, and that this Agreement is not intended to affect any determination of whether\ + \ infringement of any Patent may be adequately compensated by money damages.\n\tf.\tEach\ + \ Participant is an intended third party beneficiary of this Agreement.\n\n4.\tTermination\n\ + \ta.\tIf you bring a Claim, the licenses granted to you by Mozilla and all other Participants\ + \ will immediately terminate as of the date you bring such Claim. For purposes of the foregoing,\ + \ a \"Claim\" means (a) filing any lawsuit or other legal action (including any action to\ + \ enjoin import of products) asserting infringement of your Patent by Software, (b) making\ + \ any written claims of infringement of any of your Patents by Software, including requests\ + \ to cease and desist infringement, or (c) assisting any third party to bring any such claim.\ + \ However, \"Claims\" will not include (x) claims of patent infringement brought by you\ + \ as counter-claims or cross-claims in any third party claim of patent infringement against\ + \ you; or (y) invitations or offers to license Patents in connection with Open Patent Licensing.\n\ + \tb.\tYou may terminate the License Term by making a public statement of your intention\ + \ to no longer be party to this Agreement, stating a date of termination of the License\ + \ Term no earlier than the date of such statement, and stating in good faith that to your\ + \ knowledge, you will not infringe any Mozilla Patent as of the end of the License Term.\ + \ In such case, the licenses granted to you by all Participants will terminate effective\ + \ as of the end of the License Term, and your licenses under Section 3(b) will also terminate\ + \ as of the end of the License Term.\n\n5.\tGeneral\n\ta.\tThis is the entire agreement\ + \ between Mozilla and you on the subject matter of this Agreement. In the event that any\ + \ term or condition contained in this Agreement shall be determined by any court of competent\ + \ jurisdiction to be unenforceable by reason of its extending for too great a period of\ + \ time or over too great a geographical area or by reason of its being too extensive in\ + \ any other respect, it shall be interpreted to extend only over the maximum period of time\ + \ for which it may be enforceable and/or over the maximum geographical area as to which\ + \ it may be enforceable and/or to the maximum extent in all other respects as to which it\ + \ may be enforceable, all as determined by such court in such action.\n\tb.\tThe text of\ + \ this Agreement is provided to you under the CC0 1.0 Universal Waiver.\n\tc.\tAny law or\ + \ regulation which provides that the language of a contract shall be construed against the\ + \ drafter will not be used to construe the terms of this Agreement against any Participant.\n\ + \nIf you would like to show your intention to be bound by this Agreement, you may wish to\ + \ make the following statement: \"ZXQ, Inc. hereby states that it intends to be bound by\ + \ the Mozilla Open Software Patent License Agreement for Mozilla, version , as of [date].\"\ + \n\nIf you would like to use the text of this agreement for your own patent licensing, you\ + \ may feel free to do so. However, to avoid confusion please remove all references to \"\ + Mozilla\" from your version of the agreement. You may wish to say that your agreement is\ + \ \"based on the Mozilla Open Software Patent License Agreement,\" for informational purposes,\ + \ but you are not required to do so." json: mozilla-ospl-1.0.json - yml: mozilla-ospl-1.0.yml + yaml: mozilla-ospl-1.0.yml html: mozilla-ospl-1.0.html - text: mozilla-ospl-1.0.LICENSE + license: mozilla-ospl-1.0.LICENSE - license_key: mpeg-7 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-mpeg-7 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + This software module was originally developed by + + (contributing organizations names) + + in the course of development of the MPEG-7 Experimentation Model. + + This software module is an implementation of a part of one or more MPEG-7 + Experimentation Model tools as specified by the MPEG-7 Requirements. + + ISO/IEC gives users of MPEG-7 free license to this software module or + modifications thereof for use in hardware or software products claiming + conformance to MPEG-7. + + Those intending to use this software module in hardware or software products + are advised that its use may infringe existing patents. The original + developer of this software module and his/her company, the subsequent + editors and their companies, and ISO/IEC have no liability for use of this + software module or modifications thereof in an implementation. + + Copyright is not released for non MPEG-7 conforming products. The + organizations named above retain full right to use the code for their own + purpose, assign or donate the code to a third party and inhibit third parties + from using the code for non MPEG-7 conforming products. + + Copyright (c) 1998-1999. + modified by authors to handle small pictures on Jan. 06, 2000. + modified by authors for compatibility with Visual C++ Compiler Jan.20, 2000 + + This notice must be included in all copies or derivative works. json: mpeg-7.json - yml: mpeg-7.yml + yaml: mpeg-7.yml html: mpeg-7.html - text: mpeg-7.LICENSE + license: mpeg-7.LICENSE - license_key: mpeg-iso + category: Permissive spdx_license_key: LicenseRef-scancode-mpeg-iso other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + /************************* MPEG-2 NBC Audio Decoder ************************** + * * + "This software module was originally developed by + AT&T, Dolby Laboratories, Fraunhofer Gesellschaft IIS in the course of + development of the MPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7, + 14496-1,2 and 3. This software module is an implementation of a part of one or more + MPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4 + Audio standard. ISO/IEC gives users of the MPEG-2 NBC/MPEG-4 Audio + standards free license to this software module or modifications thereof for use in + hardware or software products claiming conformance to the MPEG-2 NBC/MPEG-4 + Audio standards. Those intending to use this software module in hardware or + software products are advised that this use may infringe existing patents. + The original developer of this software module and his/her company, the subsequent + editors and their companies, and ISO/IEC have no liability for use of this software + module or modifications thereof in an implementation. Copyright is not released for + non MPEG-2 NBC/MPEG-4 Audio conforming products.The original developer + retains full right to use the code for his/her own purpose, assign or donate the + code to a third party and to inhibit third party from using the code for non + MPEG-2 NBC/MPEG-4 Audio conforming products. This copyright notice must + be included in all copies or derivative works." + Copyright(c)1996. + * * + ****************************************************************************/ json: mpeg-iso.json - yml: mpeg-iso.yml + yaml: mpeg-iso.yml html: mpeg-iso.html - text: mpeg-iso.LICENSE + license: mpeg-iso.LICENSE - license_key: mpeg-ssg + category: Permissive spdx_license_key: LicenseRef-scancode-mpeg-ssg other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Disclaimer of Warranty + + These software programs are available to the user without any license fee or + royalty on an "as is" basis. The MPEG Software Simulation Group disclaims + any and all warranties, whether express, implied, or statuary, including any + implied warranties or merchantability or of fitness for a particular + purpose. In no event shall the copyright-holder be liable for any + incidental, punitive, or consequential damages of any kind whatsoever + arising from the use of these programs. + + This disclaimer of warranty extends to the user of these programs and user's + customers, employees, agents, transferees, successors, and assigns. + + The MPEG Software Simulation Group does not represent or warrant that the + programs furnished hereunder are free of infringement of any third-party + patents. + + Commercial implementations of MPEG-1 and MPEG-2 video, including shareware, + are subject to royalty fees to patent holders. Many of these patents are + general enough such that they are unavoidable regardless of implementation + design. json: mpeg-ssg.json - yml: mpeg-ssg.yml + yaml: mpeg-ssg.yml html: mpeg-ssg.html - text: mpeg-ssg.LICENSE + license: mpeg-ssg.LICENSE +- license_key: mpi-permissive + category: Permissive + spdx_license_key: mpi-permissive + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: "Permission is hereby granted to use, reproduce, prepare derivative\nworks, and to redistribute\ + \ to others.\n\n\t\t\t DISCLAIMER\n\nNeither Etnus, nor any of their employees, makes any\ + \ warranty\nexpress or implied, or assumes any legal liability or\nresponsibility for the\ + \ accuracy, completeness, or usefulness of any\ninformation, apparatus, product, or process\ + \ disclosed, or\nrepresents that its use would not infringe privately owned rights." + json: mpi-permissive.json + yaml: mpi-permissive.yml + html: mpi-permissive.html + license: mpi-permissive.LICENSE - license_key: mpich + category: Permissive spdx_license_key: mpich2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + COPYRIGHT + + The following is a notice of limited availability of the code, and disclaimer + which must be included in the prologue of the code and in all source listings + of the code. + + Copyright Notice + + 2002 University of Chicago + + Permission is hereby granted to use, reproduce, prepare derivative works, and + to redistribute to others. This software was authored by: + + Mathematics and Computer Science Division + Argonne National Laboratory, Argonne IL 60439 + + (and) + + Department of Computer Science + University of Illinois at Urbana-Champaign + + + GOVERNMENT LICENSE + + Portions of this material resulted from work developed under a U.S. + Government Contract and are subject to the following license: the Government + is granted for itself and others acting on its behalf a paid-up, nonexclusive, + irrevocable worldwide license in this computer software to reproduce, prepare + derivative works, and perform publicly and display publicly. + + DISCLAIMER + + This computer code material was prepared, in part, as an account of work + sponsored by an agency of the United States Government. Neither the United + States, nor the University of Chicago, nor any of their employees, makes any + warranty express or implied, or assumes any legal liability or responsibility + for the accuracy, completeness, or usefulness of any information, apparatus, + product, or process disclosed, or represents that its use would not infringe + privately owned rights. json: mpich.json - yml: mpich.yml + yaml: mpich.yml html: mpich.html - text: mpich.LICENSE + license: mpich.LICENSE - license_key: mpl-1.0 + category: Copyleft Limited spdx_license_key: MPL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + MOZILLA PUBLIC LICENSE + Version 1.0 + + 1. Definitions. + + 1.1. ``Contributor'' means each entity that creates or contributes to the creation of Modifications. + + 1.2. ``Contributor Version'' means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. + + 1.3. ``Covered Code'' means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. + + 1.4. ``Electronic Distribution Mechanism'' means a mechanism generally accepted in the software development community for the electronic transfer of data. + + 1.5. ``Executable'' means Covered Code in any form other than Source Code. + + 1.6. ``Initial Developer'' means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. + + 1.7. ``Larger Work'' means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. + + 1.8. ``License'' means this document. + + 1.9. ``Modifications'' means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: + + A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. + + B. Any new file that contains any part of the Original Code or previous Modifications. + + 1.10. ``Original Code'' means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. + + 1.11. ``Source Code'' means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or a list of source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. + + 1.12. ``You'' means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, ``You'' includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, ``control'' means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. + + 2. Source Code License. + + 2.1. The Initial Developer Grant. The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: + + (a) to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, or as part of a Larger Work; and + + (b) under patents now or hereafter owned or controlled by Initial Developer, to make, have made, use and sell (``Utilize'') the Original Code (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Original Code (or portions thereof) and not to any greater extent that may be necessary to Utilize further Modifications or combinations. + + 2.2. Contributor Grant. Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: + + (a) to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code or as part of a Larger Work; and + + (b) under patents now or hereafter owned or controlled by Contributor, to Utilize the Contributor Version (or portions thereof), but solely to the extent that any such patent is reasonably necessary to enable You to Utilize the Contributor Version (or portions thereof), and not to any greater extent that may be necessary to Utilize further Modifications or combinations. + + 3. Distribution Obligations. + + 3.1. Application of License. The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. + + 3.2. Availability of Source Code. Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + + 3.3. Description of Modifications. You must cause all Covered Code to which you contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. + + 3.4. Intellectual Property Matters + + (a) Third Party Claims. If You have knowledge that a party claims an intellectual property right in particular functionality or code (or its utilization under this License), you must include a text file with the source code distribution titled ``LEGAL'' which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after You make Your Modification available as described in Section 3.2, You shall promptly modify the LEGAL file in all copies You make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. + + (b) Contributor APIs. If Your Modification is an application programming interface and You own or control patents which are reasonably necessary to implement that API, you must also include this information in the LEGAL file. + + 3.5. Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code, and this License in any documentation for the Source Code, where You describe recipients' rights relating to Covered Code. If You created one or more Modification(s), You may add your name as a Contributor to the notice described in Exhibit A. If it is not possible to put such notice in a particular Source Code file due to its structure, then you must include such notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. + + 3.6. Distribution of Executable Versions. You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. + + 3.7. Larger Works. You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. + + 4. Inability to Comply Due to Statute or Regulation. + + If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. + + 5. Application of this License. + + This License applies to code to which the Initial Developer has attached the notice in Exhibit A, and to related Covered Code. + + 6. Versions of the License. + + 6.1. New Versions. Netscape Communications Corporation (``Netscape'') may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. + + 6.2. Effect of New Versions. Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License. + + 6.3. Derivative Works. If you create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), you must (a) rename Your license so that the phrases ``Mozilla'', ``MOZILLAPL'', ``MOZPL'', ``Netscape'', ``NPL'' or any confusingly similar phrase do not appear anywhere in your license and (b) otherwise make it clear that your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) + + 7. DISCLAIMER OF WARRANTY. + + COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN ``AS IS'' BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 8. TERMINATION. + + This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. + + 9. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + + 10. U.S. GOVERNMENT END USERS. + + The Covered Code is a ``commercial item,'' as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of ``commercial computer software'' and ``commercial computer software documentation,'' as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. + + 11. MISCELLANEOUS. + + This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in, the United States of America: (a) unless otherwise agreed in writing, all disputes relating to this License (excepting any dispute relating to intellectual property rights) shall be subject to final and binding arbitration, with the losing party paying all costs of arbitration; (b) any arbitration relating to this Agreement shall be held in Santa Clara County, California, under the auspices of JAMS/EndDispute; and (c) any litigation relating to this Agreement shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. + + 12. RESPONSIBILITY FOR CLAIMS. + + Except in cases where another Contributor has failed to comply with Section 3.4, You are responsible for damages arising, directly or indirectly, out of Your utilization of rights under this License, based on the number of copies of Covered Code you made available, the revenues you received from utilizing such rights, and other relevant factors. You agree to work with affected parties to distribute responsibility on an equitable basis. + + EXHIBIT A. + + ``The contents of this file are subject to the Mozilla Public License Version 1.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.mozilla.org/MPL/ + + Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. + + The Original Code is . + + The Initial Developer of the Original Code is . Portions created by are Copyright (C) . All Rights Reserved. + + Contributor(s): .'' json: mpl-1.0.json - yml: mpl-1.0.yml + yaml: mpl-1.0.yml html: mpl-1.0.html - text: mpl-1.0.LICENSE + license: mpl-1.0.LICENSE - license_key: mpl-1.1 + category: Copyleft Limited spdx_license_key: MPL-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + MOZILLA PUBLIC LICENSE + Version 1.1 + + 1. Definitions. + + 1.0.1. "Commercial Use" means distribution or otherwise making the Covered Code available to a third party. + + 1.1. "Contributor" means each entity that creates or contributes to the creation of Modifications. + + 1.2. "Contributor Version" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. + + 1.3. "Covered Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. + + 1.4. "Electronic Distribution Mechanism" means a mechanism generally accepted in the software development community for the electronic transfer of data. + + 1.5. "Executable" means Covered Code in any form other than Source Code. + + 1.6. "Initial Developer" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. + + 1.7. "Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. + + 1.8. "License" means this document. + + 1.8.1. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. + + 1.9. "Modifications" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. + + B. Any new file that contains any part of the Original Code or previous Modifications. + + 1.10. "Original Code" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. + + 1.10.1. "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. + + 1.11. "Source Code" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. + + 1.12. "You" (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. + + 2. Source Code License. + + 2.1. The Initial Developer Grant. The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: (a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and + + (b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). + + (c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License. + + (d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. + + 2.2. Contributor Grant. Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license + + (a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and + + (b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). + + (c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code. + + (d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. + + 3. Distribution Obligations. + + 3.1. Application of License. The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. + + 3.2. Availability of Source Code. Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + + 3.3. Description of Modifications. You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. + + 3.4. Intellectual Property Matters (a) Third Party Claims. If Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. + + (b) Contributor APIs. If Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. + + (c) Representations. Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. + + 3.5. Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. + + 3.6. Distribution of Executable Versions. You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. + + 3.7. Larger Works. You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. + + 4. Inability to Comply Due to Statute or Regulation. + + If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. + + 5. Application of this License. + + This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. + + 6. Versions of the License. + + 6.1. New Versions. Netscape Communications Corporation ("Netscape") may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. + + 6.2. Effect of New Versions. Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License. + + 6.3. Derivative Works. If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) + + 7. DISCLAIMER OF WARRANTY. + + COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 8. TERMINATION. + + 8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. + + 8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as "Participant") alleging that: + + (a) such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. + + (b) any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. + + 8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. + + 8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. + + 9. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + + 10. U.S. GOVERNMENT END USERS. + + The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. + + 11. MISCELLANEOUS. + + This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. + + 12. RESPONSIBILITY FOR CLAIMS. + + As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + + 13. MULTIPLE-LICENSED CODE. + + Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the NPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. + + EXHIBIT A -Mozilla Public License. + + ``The contents of this file are subject to the Mozilla Public License Version 1.1 (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.mozilla.org/MPL/ + + Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. + + The Original Code is . + + The Initial Developer of the Original Code is . Portions created by are Copyright (C) . All Rights Reserved. + + Contributor(s): . + + Alternatively, the contents of this file may be used under the terms of the license (the "[ ] License"), in which case the provisions of [ ] License are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the [ ] License and not to allow others to use your version of this file under the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [ ] License. If you do not delete the provisions above, a recipient may use your version of this file under either the MPL or the [ ] License." + + [NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.] json: mpl-1.1.json - yml: mpl-1.1.yml + yaml: mpl-1.1.yml html: mpl-1.1.html - text: mpl-1.1.LICENSE + license: mpl-1.1.LICENSE - license_key: mpl-2.0 + category: Copyleft Limited spdx_license_key: MPL-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Mozilla Public License Version 2.0\n==================================\n\n1. Definitions\n\ + --------------\n\n1.1. \"Contributor\"\n means each individual or legal entity that creates,\ + \ contributes to\n the creation of, or owns Covered Software.\n\n1.2. \"Contributor Version\"\ + \n means the combination of the Contributions of others (if any) used\n by a Contributor\ + \ and that particular Contributor's Contribution.\n\n1.3. \"Contribution\"\n means Covered\ + \ Software of a particular Contributor.\n\n1.4. \"Covered Software\"\n means Source Code\ + \ Form to which the initial Contributor has attached\n the notice in Exhibit A, the Executable\ + \ Form of such Source Code\n Form, and Modifications of such Source Code Form, in each\ + \ case\n including portions thereof.\n\n1.5. \"Incompatible With Secondary Licenses\"\ + \n means\n\n (a) that the initial Contributor has attached the notice described\n\ + \ in Exhibit B to the Covered Software; or\n\n (b) that the Covered Software was\ + \ made available under the terms of\n version 1.1 or earlier of the License, but\ + \ not also under the\n terms of a Secondary License.\n\n1.6. \"Executable Form\"\n\ + \ means any form of the work other than Source Code Form.\n\n1.7. \"Larger Work\"\n \ + \ means a work that combines Covered Software with other material, in \n a separate\ + \ file or files, that is not Covered Software.\n\n1.8. \"License\"\n means this document.\n\ + \n1.9. \"Licensable\"\n means having the right to grant, to the maximum extent possible,\n\ + \ whether at the time of the initial grant or subsequently, any and\n all of the rights\ + \ conveyed by this License.\n\n1.10. \"Modifications\"\n means any of the following:\n\ + \n (a) any file in Source Code Form that results from an addition to,\n deletion\ + \ from, or modification of the contents of Covered\n Software; or\n\n (b) any\ + \ new file in Source Code Form that contains any Covered\n Software.\n\n1.11. \"\ + Patent Claims\" of a Contributor\n means any patent claim(s), including without limitation,\ + \ method,\n process, and apparatus claims, in any patent Licensable by such\n Contributor\ + \ that would be infringed, but for the grant of the\n License, by the making, using,\ + \ selling, offering for sale, having\n made, import, or transfer of either its Contributions\ + \ or its\n Contributor Version.\n\n1.12. \"Secondary License\"\n means either the\ + \ GNU General Public License, Version 2.0, the GNU\n Lesser General Public License, Version\ + \ 2.1, the GNU Affero General\n Public License, Version 3.0, or any later versions of\ + \ those\n licenses.\n\n1.13. \"Source Code Form\"\n means the form of the work preferred\ + \ for making modifications.\n\n1.14. \"You\" (or \"Your\")\n means an individual or a\ + \ legal entity exercising rights under this\n License. For legal entities, \"You\" includes\ + \ any entity that\n controls, is controlled by, or is under common control with You.\ + \ For\n purposes of this definition, \"control\" means (a) the power, direct\n or\ + \ indirect, to cause the direction or management of such entity,\n whether by contract\ + \ or otherwise, or (b) ownership of more than\n fifty percent (50%) of the outstanding\ + \ shares or beneficial\n ownership of such entity.\n\n2. License Grants and Conditions\n\ + --------------------------------\n\n2.1. Grants\n\nEach Contributor hereby grants You a\ + \ world-wide, royalty-free,\nnon-exclusive license:\n\n(a) under intellectual property rights\ + \ (other than patent or trademark)\n Licensable by such Contributor to use, reproduce,\ + \ make available,\n modify, display, perform, distribute, and otherwise exploit its\n\ + \ Contributions, either on an unmodified basis, with Modifications, or\n as part of\ + \ a Larger Work; and\n\n(b) under Patent Claims of such Contributor to make, use, sell,\ + \ offer\n for sale, have made, import, and otherwise transfer either its\n Contributions\ + \ or its Contributor Version.\n\n2.2. Effective Date\n\nThe licenses granted in Section\ + \ 2.1 with respect to any Contribution\nbecome effective for each Contribution on the date\ + \ the Contributor first\ndistributes such Contribution.\n\n2.3. Limitations on Grant Scope\n\ + \nThe licenses granted in this Section 2 are the only rights granted under\nthis License.\ + \ No additional rights or licenses will be implied from the\ndistribution or licensing of\ + \ Covered Software under this License.\nNotwithstanding Section 2.1(b) above, no patent\ + \ license is granted by a\nContributor:\n\n(a) for any code that a Contributor has removed\ + \ from Covered Software;\n or\n\n(b) for infringements caused by: (i) Your and any other\ + \ third party's\n modifications of Covered Software, or (ii) the combination of its\n\ + \ Contributions with other software (except as part of its Contributor\n Version);\ + \ or\n\n(c) under Patent Claims infringed by Covered Software in the absence of\n its\ + \ Contributions.\n\nThis License does not grant any rights in the trademarks, service marks,\n\ + or logos of any Contributor (except as may be necessary to comply with\nthe notice requirements\ + \ in Section 3.4).\n\n2.4. Subsequent Licenses\n\nNo Contributor makes additional grants\ + \ as a result of Your choice to\ndistribute the Covered Software under a subsequent version\ + \ of this\nLicense (see Section 10.2) or under the terms of a Secondary License (if\npermitted\ + \ under the terms of Section 3.3).\n\n2.5. Representation\n\nEach Contributor represents\ + \ that the Contributor believes its\nContributions are its original creation(s) or it has\ + \ sufficient rights\nto grant the rights to its Contributions conveyed by this License.\n\ + \n2.6. Fair Use\n\nThis License is not intended to limit any rights You have under\napplicable\ + \ copyright doctrines of fair use, fair dealing, or other\nequivalents.\n\n2.7. Conditions\n\ + \nSections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted\nin Section 2.1.\n\ + \n3. Responsibilities\n-------------------\n\n3.1. Distribution of Source Form\n\nAll distribution\ + \ of Covered Software in Source Code Form, including any\nModifications that You create\ + \ or to which You contribute, must be under\nthe terms of this License. You must inform\ + \ recipients that the Source\nCode Form of the Covered Software is governed by the terms\ + \ of this\nLicense, and how they can obtain a copy of this License. You may not\nattempt\ + \ to alter or restrict the recipients' rights in the Source Code\nForm.\n\n3.2. Distribution\ + \ of Executable Form\n\nIf You distribute Covered Software in Executable Form then:\n\n\ + (a) such Covered Software must also be made available in Source Code\n Form, as described\ + \ in Section 3.1, and You must inform recipients of\n the Executable Form how they can\ + \ obtain a copy of such Source Code\n Form by reasonable means in a timely manner, at\ + \ a charge no more\n than the cost of distribution to the recipient; and\n\n(b) You may\ + \ distribute such Executable Form under the terms of this\n License, or sublicense it\ + \ under different terms, provided that the\n license for the Executable Form does not\ + \ attempt to limit or alter\n the recipients' rights in the Source Code Form under this\ + \ License.\n\n3.3. Distribution of a Larger Work\n\nYou may create and distribute a Larger\ + \ Work under terms of Your choice,\nprovided that You also comply with the requirements\ + \ of this License for\nthe Covered Software. If the Larger Work is a combination of Covered\n\ + Software with a work governed by one or more Secondary Licenses, and the\nCovered Software\ + \ is not Incompatible With Secondary Licenses, this\nLicense permits You to additionally\ + \ distribute such Covered Software\nunder the terms of such Secondary License(s), so that\ + \ the recipient of\nthe Larger Work may, at their option, further distribute the Covered\n\ + Software under the terms of either this License or such Secondary\nLicense(s).\n\n3.4. Notices\n\ + \nYou may not remove or alter the substance of any license notices\n(including copyright\ + \ notices, patent notices, disclaimers of warranty,\nor limitations of liability) contained\ + \ within the Source Code Form of\nthe Covered Software, except that You may alter any license\ + \ notices to\nthe extent required to remedy known factual inaccuracies.\n\n3.5. Application\ + \ of Additional Terms\n\nYou may choose to offer, and to charge a fee for, warranty, support,\n\ + indemnity or liability obligations to one or more recipients of Covered\nSoftware. However,\ + \ You may do so only on Your own behalf, and not on\nbehalf of any Contributor. You must\ + \ make it absolutely clear that any\nsuch warranty, support, indemnity, or liability obligation\ + \ is offered by\nYou alone, and You hereby agree to indemnify every Contributor for any\n\ + liability incurred by such Contributor as a result of warranty, support,\nindemnity or liability\ + \ terms You offer. You may include additional\ndisclaimers of warranty and limitations of\ + \ liability specific to any\njurisdiction.\n\n4. Inability to Comply Due to Statute or Regulation\n\ + ---------------------------------------------------\n\nIf it is impossible for You to comply\ + \ with any of the terms of this\nLicense with respect to some or all of the Covered Software\ + \ due to\nstatute, judicial order, or regulation then You must: (a) comply with\nthe terms\ + \ of this License to the maximum extent possible; and (b)\ndescribe the limitations and\ + \ the code they affect. Such description must\nbe placed in a text file included with all\ + \ distributions of the Covered\nSoftware under this License. Except to the extent prohibited\ + \ by statute\nor regulation, such description must be sufficiently detailed for a\nrecipient\ + \ of ordinary skill to be able to understand it.\n\n5. Termination\n--------------\n\n5.1.\ + \ The rights granted under this License will terminate automatically\nif You fail to comply\ + \ with any of its terms. However, if You become\ncompliant, then the rights granted under\ + \ this License from a particular\nContributor are reinstated (a) provisionally, unless and\ + \ until such\nContributor explicitly and finally terminates Your grants, and (b) on an\n\ + ongoing basis, if such Contributor fails to notify You of the\nnon-compliance by some reasonable\ + \ means prior to 60 days after You have\ncome back into compliance. Moreover, Your grants\ + \ from a particular\nContributor are reinstated on an ongoing basis if such Contributor\n\ + notifies You of the non-compliance by some reasonable means, this is the\nfirst time You\ + \ have received notice of non-compliance with this License\nfrom such Contributor, and You\ + \ become compliant prior to 30 days after\nYour receipt of the notice.\n\n5.2. If You initiate\ + \ litigation against any entity by asserting a patent\ninfringement claim (excluding declaratory\ + \ judgment actions,\ncounter-claims, and cross-claims) alleging that a Contributor Version\n\ + directly or indirectly infringes any patent, then the rights granted to\nYou by any and\ + \ all Contributors for the Covered Software under Section\n2.1 of this License shall terminate.\n\ + \n5.3. In the event of termination under Sections 5.1 or 5.2 above, all\nend user license\ + \ agreements (excluding distributors and resellers) which\nhave been validly granted by\ + \ You or Your distributors under this License\nprior to termination shall survive termination.\n\ + \n************************************************************************\n* \ + \ *\n* 6. Disclaimer of Warranty\ + \ *\n* ------------------------- \ + \ *\n* \ + \ *\n* Covered Software is provided under this License on an \"as is\"\ + \ *\n* basis, without warranty of any kind, either expressed, implied, or *\n* \ + \ statutory, including, without limitation, warranties that the *\n* Covered Software\ + \ is free of defects, merchantable, fit for a *\n* particular purpose or non-infringing.\ + \ The entire risk as to the *\n* quality and performance of the Covered Software is\ + \ with You. *\n* Should any Covered Software prove defective in any respect, You\ + \ *\n* (not any Contributor) assume the cost of any necessary servicing, *\n* repair,\ + \ or correction. This disclaimer of warranty constitutes an *\n* essential part of this\ + \ License. No use of any Covered Software is *\n* authorized under this License except\ + \ under this disclaimer. *\n* \ + \ *\n************************************************************************\n\ + \n************************************************************************\n* \ + \ *\n* 7. Limitation of Liability\ + \ *\n* -------------------------- \ + \ *\n* \ + \ *\n* Under no circumstances and under no legal theory, whether tort\ + \ *\n* (including negligence), contract, or otherwise, shall any *\n* Contributor,\ + \ or anyone who distributes Covered Software as *\n* permitted above, be liable\ + \ to You for any direct, indirect, *\n* special, incidental, or consequential damages\ + \ of any character *\n* including, without limitation, damages for lost profits, loss\ + \ of *\n* goodwill, work stoppage, computer failure or malfunction, or any *\n* \ + \ and all other commercial damages or losses, even if such party *\n* shall have been\ + \ informed of the possibility of such damages. This *\n* limitation of liability shall\ + \ not apply to liability for death or *\n* personal injury resulting from such party's\ + \ negligence to the *\n* extent applicable law prohibits such limitation. Some \ + \ *\n* jurisdictions do not allow the exclusion or limitation of \ + \ *\n* incidental or consequential damages, so this exclusion and *\n* limitation\ + \ may not apply to You. *\n* \ + \ *\n************************************************************************\n\ + \n8. Litigation\n-------------\n\nAny litigation relating to this License may be brought\ + \ only in the\ncourts of a jurisdiction where the defendant maintains its principal\nplace\ + \ of business and such litigation shall be governed by laws of that\njurisdiction, without\ + \ reference to its conflict-of-law provisions.\nNothing in this Section shall prevent a\ + \ party's ability to bring\ncross-claims or counter-claims.\n\n9. Miscellaneous\n----------------\n\ + \nThis License represents the complete agreement concerning the subject\nmatter hereof.\ + \ If any provision of this License is held to be\nunenforceable, such provision shall be\ + \ reformed only to the extent\nnecessary to make it enforceable. Any law or regulation which\ + \ provides\nthat the language of a contract shall be construed against the drafter\nshall\ + \ not be used to construe this License against a Contributor.\n\n10. Versions of the License\n\ + ---------------------------\n\n10.1. New Versions\n\nMozilla Foundation is the license steward.\ + \ Except as provided in Section\n10.3, no one other than the license steward has the right\ + \ to modify or\npublish new versions of this License. Each version will be given a\ndistinguishing\ + \ version number.\n\n10.2. Effect of New Versions\n\nYou may distribute the Covered Software\ + \ under the terms of the version\nof the License under which You originally received the\ + \ Covered Software,\nor under the terms of any subsequent version published by the license\n\ + steward.\n\n10.3. Modified Versions\n\nIf you create software not governed by this License,\ + \ and you want to\ncreate a new license for such software, you may create and use a\nmodified\ + \ version of this License if you rename the license and remove\nany references to the name\ + \ of the license steward (except to note that\nsuch modified license differs from this License).\n\ + \n10.4. Distributing Source Code Form that is Incompatible With Secondary\nLicenses\n\n\ + If You choose to distribute Source Code Form that is Incompatible With\nSecondary Licenses\ + \ under the terms of this version of the License, the\nnotice described in Exhibit B of\ + \ this License must be attached.\n\nExhibit A - Source Code Form License Notice\n-------------------------------------------\n\ + \n This Source Code Form is subject to the terms of the Mozilla Public\n License, v. 2.0.\ + \ If a copy of the MPL was not distributed with this\n file, You can obtain one at http://mozilla.org/MPL/2.0/.\n\ + \nIf it is not possible or desirable to put the notice in a particular\nfile, then You may\ + \ include the notice in a location (such as a LICENSE\nfile in a relevant directory) where\ + \ a recipient would be likely to look\nfor such a notice.\n\nYou may add additional accurate\ + \ notices of copyright ownership.\n\nExhibit B - \"Incompatible With Secondary Licenses\"\ + \ Notice\n---------------------------------------------------------\n\n This Source Code\ + \ Form is \"Incompatible With Secondary Licenses\", as\n defined by the Mozilla Public\ + \ License, v. 2.0." json: mpl-2.0.json - yml: mpl-2.0.yml + yaml: mpl-2.0.yml html: mpl-2.0.html - text: mpl-2.0.LICENSE + license: mpl-2.0.LICENSE - license_key: mpl-2.0-no-copyleft-exception + category: Copyleft Limited spdx_license_key: MPL-2.0-no-copyleft-exception other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. json: mpl-2.0-no-copyleft-exception.json - yml: mpl-2.0-no-copyleft-exception.yml + yaml: mpl-2.0-no-copyleft-exception.yml html: mpl-2.0-no-copyleft-exception.html - text: mpl-2.0-no-copyleft-exception.LICENSE + license: mpl-2.0-no-copyleft-exception.LICENSE - license_key: ms-asp-net-ajax-supplemental-terms + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-asp-net-ajax-supp-terms other_spdx_license_keys: - LicenseRef-scancode-ms-asp-net-ajax-supplemental-terms is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE SUPPLEMENT LICENSE TERMS\nMICROSOFT ASP.NET 2.0 AJAX EXTENSIONS\n\ + Microsoft Corporation (or based on where you live, one of its affiliates) licenses this\ + \ supplement to you. If you are licensed to use Microsoft Windows operating system software\ + \ (the \"software\"), you may use this supplement. You may not use it if you do not have\ + \ a license for the software. You may use a copy of this supplement with each validly licensed\ + \ copy of the software.\nThe following license terms describe additional use terms for this\ + \ supplement. These terms and the license terms for the software apply to your use of the\ + \ supplement. If there is a conflict, these supplemental license terms apply.\n\nBy using\ + \ this supplement, you accept these terms. If you do not accept them, do not use this supplement.\n\ + \n1.\tSUPPORT SERVICES FOR SUPPLEMENT. Microsoft provides support services for this supplement\ + \ as described at www.support.microsoft.com/common/international.aspx .\n\ + \n2.\tADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\na.\tDistributable Code. This\ + \ supplement contains code that you are permitted to distribute in programs you develop\ + \ if you comply with the terms below.\ni.\tRight to Use and Distribute. The code and text\ + \ files listed below are \"Distributable Code.\"\n - REDIST.TXT Files. You may\ + \ copy and distribute the object code form of code listed in REDIST.TXT files.\n \ + \ - Third Party Distribution. You may permit distributors of your programs to copy and\ + \ distribute the Distributable Code as part of those programs.\nii.\tDistribution Requirements.\ + \ For any Distributable Code you distribute, you must\n - add significant primary\ + \ functionality to it in your programs;\n - distribute Distributable Code included\ + \ in a setup program only as part of that setup program without modification;\n \ + \ - require distributors and external end users to agree to terms that protect it at least\ + \ as much as this agreement;\n - display your valid copyright notice on your programs;\ + \ and\n - indemnify, defend, and hold harmless Microsoft from any claims, including\ + \ attorneys’ fees, related to the distribution or use of your programs.\niii.\tDistribution\ + \ Restrictions. You may not\n - alter any copyright, trademark or patent notice\ + \ in the Distributable Code;\n - use Microsoft’s trademarks in your programs’\ + \ names or in a way that suggests your programs come from or are endorsed by Microsoft;\n\ + \ - distribute Distributable Code to run on a platform other than the Windows\ + \ platform;\n - include Distributable Code in malicious, deceptive or unlawful\ + \ programs; or\n - modify or distribute the source code of any Distributable\ + \ Code so that any part of it becomes subject to an Excluded License. An Excluded License\ + \ is one that requires, as a condition of use, \n modification or distribution,\ + \ that\n - the code be disclosed or distributed in source code form; or\n\ + \ - others have the right to modify it.\nb.\tMicrosoft Ajax Library. This\ + \ supplement includes the Microsoft AJAX Library. The license terms accompanying that additional\ + \ software apply to it." json: ms-asp-net-ajax-supplemental-terms.json - yml: ms-asp-net-ajax-supplemental-terms.yml + yaml: ms-asp-net-ajax-supplemental-terms.yml html: ms-asp-net-ajax-supplemental-terms.html - text: ms-asp-net-ajax-supplemental-terms.LICENSE + license: ms-asp-net-ajax-supplemental-terms.LICENSE - license_key: ms-asp-net-mvc3 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-asp-net-mvc3 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "This installation contains the following software, the license terms of each of which\ + \ are included below:\n\n· Microsoft ASP.NET Model View Controller 3 Tools Update\n\ + \n· Microsoft ASP.NET Web Pages\n\n· Microsoft Package Manager for .NET\n\ + \n· Microsoft software update to Visual Studio, KB2483190\n\nMICROSOFT SOFTWARE\ + \ LICENSE TERMS\n\nMICROSOFT ASP.NET MODEL VIEW CONTROLLER 3 TOOLS UPDATE\n\nThese license\ + \ terms are an agreement between Microsoft Corporation (or based on where you live, one\ + \ of its affiliates) and you. Please read them. They apply to the software named above,\ + \ which includes the media on which you received it, if any. The terms also apply to any\ + \ Microsoft\n\n· updates,\n· supplements,\n· Internet-based services,\ + \ and\n· support services\n\nfor this software, unless other terms accompany those\ + \ items. If so, those terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF\ + \ YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\n\nIf you comply with these license terms,\ + \ you have the rights below.\n\n1. INSTALLATION AND USE RIGHTS. One user may install and\ + \ use any number of copies of the software on your devices to design, develop and test your\ + \ ASP.NET programs. You may modify, copy, and distribute or deploy any .js files contained\ + \ in the software as part of your ASP.NET programs.\n\n2. ADDITIONAL LICENSING REQUIREMENTS\ + \ AND/OR USE RIGHTS.\n\na. Distributable Code. In addition to the .js files described\ + \ above, the software contains code that you are permitted to distribute in ASP.NET programs\ + \ you develop if you comply with the terms below.\n\ni. Right to Use and Distribute.\ + \ The code and text files listed below are \"Distributable Code.\"\n\n· System.Web.Mvc.dll.\ + \ You may copy and distribute the object code form of System.Web.Mvc.dll.\n\n· \ + \ Third Party Distribution. You may permit distributors of your programs to copy and distribute\ + \ the Distributable Code as part of those programs.\n\nii. Distribution Requirements.\ + \ For any Distributable Code you distribute, you must\n\n· add significant primary\ + \ functionality to it in your programs;\n\n· require distributors and external end\ + \ users to agree to terms that protect it at least as much as this agreement;\n\n· \ + \ display your valid copyright notice on your programs; and\n\n· indemnify, defend,\ + \ and hold harmless Microsoft from any claims, including attorneys’ fees, related to the\ + \ distribution or use of your programs.\n\niii. Distribution Restrictions. You may not\n\ + \n· alter any copyright, trademark or patent notice in the Distributable Code;\n\ + \n· use Microsoft’s trademarks in your programs’ names or in a way that suggests\ + \ your programs come from or are endorsed by Microsoft;\n\n· distribute Distributable\ + \ Code to run on a platform other than the Windows platform;\n\n· include Distributable\ + \ Code in malicious, deceptive or unlawful programs; or\n\n· modify or distribute\ + \ the source code of any Distributable Code so that any part of it becomes subject to an\ + \ Excluded License. An Excluded License is one that requires, as a condition of use, modification\ + \ or distribution, that\n\n· the code be disclosed or distributed in source code\ + \ form; or\n\n· others have the right to modify it.\n\n3. THIRD PARTY NOTICES.\ + \ The software may include third party code that Microsoft, not the third party, licenses\ + \ to you under this agreement. Notices, if any, for the third party code are included for\ + \ your information only. Microsoft’s service and support obligations, if any, apply only\ + \ to the unmodified third party code running on ASP.NET.\n\n4. SCOPE OF LICENSE. The software\ + \ is licensed, not sold. This agreement only gives you some rights to use the software.\ + \ Microsoft reserves all other rights. Unless applicable law gives you more rights despite\ + \ this limitation, you may use the software only as expressly permitted in this agreement.\ + \ In doing so, you must comply with any technical limitations in the software that only\ + \ allow you to use it in certain ways. You may not\n\n· work around any technical\ + \ limitations in the software;\n\n· reverse engineer, decompile or disassemble the\ + \ software, except and only to the extent that applicable law expressly permits, despite\ + \ this limitation;\n\n· make more copies of the software than specified in this\ + \ agreement or allowed by applicable law, despite this limitation;\n\n· publish\ + \ the software for others to copy;\n\n· rent, lease or lend the software; or\n\n\ + · transfer the software or this agreement to any third party.\n\n5. BACKUP COPY.\ + \ You may make one backup copy of the software. You may use it only to reinstall the software.\n\ + \n6. DOCUMENTATION. Any person that has valid access to your computer or internal network\ + \ may copy and use the documentation for your internal, reference purposes.\n\n7. EXPORT\ + \ RESTRICTIONS. The software is subject to United States export laws and regulations. You\ + \ must comply with all domestic and international export laws and regulations that apply\ + \ to the software. These laws include restrictions on destinations, end users and end use.\ + \ For additional information, see www.microsoft.com/exporting.\n\n8. SUPPORT SERVICES.\ + \ Because this software is \"as is,\" we may not provide support services for it.\n\n9.\ + \ ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based\ + \ services and support services that you use, are the entire agreement for the software\ + \ and support services.\n\n10. APPLICABLE LAW.\n\na. United States. If you acquired the\ + \ software in the United States, Washington state law governs the interpretation of this\ + \ agreement and applies to claims for breach of it, regardless of conflict of laws principles.\ + \ The laws of the state where you live govern all other claims, including claims under state\ + \ consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside the United\ + \ States. If you acquired the software in any other country, the laws of that country apply.\n\ + \n11. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights\ + \ under the laws of your country. You may also have rights with respect to the party from\ + \ whom you acquired the software. This agreement does not change your rights under the laws\ + \ of your country if the laws of your country do not permit it to do so.\n\n12. DISCLAIMER\ + \ OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT\ + \ GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER\ + \ RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED\ + \ UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n13. LIMITATION ON AND EXCLUSION OF REMEDIES\ + \ AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO\ + \ U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS,\ + \ SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to\n\n· anything\ + \ related to the software, services, content (including code) on third party Internet sites,\ + \ or third party programs; and\n· claims for breach of contract, breach of warranty,\ + \ guarantee or condition, strict liability, negligence, or other tort to the extent permitted\ + \ by applicable law.\n\nIt also applies even if Microsoft knew or should have known about\ + \ the possibility of the damages. The above limitation or exclusion may not apply to you\ + \ because your country may not allow the exclusion or limitation of incidental, consequential\ + \ or other damages.\n\n \n\n* * * * *\n\nMICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT\ + \ ASP.NET WEB PAGES\n\nThese license terms are an agreement between Microsoft Corporation\ + \ (or based on where you live, one of its affiliates) and you. Please read them. They apply\ + \ to the software named above, which includes the media on which you received it, if any.\ + \ The terms also apply to any Microsoft\n\n· updates,\n· supplements,\n\ + · Internet-based services, and\n· support services\n\nfor this software,\ + \ unless other terms accompany those items. If so, those terms apply.\n\nBY USING THE SOFTWARE,\ + \ YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\n\nAS DESCRIBED\ + \ BELOW, USING SOME FEATURES ALSO OPERATES AS YOUR CONSENT TO THE TRANSMISSION OF CERTAIN\ + \ STANDARD COMPUTER INFORMATION FOR INTERNET-BASED SERVICES.\n\nIf you comply with these\ + \ license terms, you have the rights below.\n\n1. INSTALLATION AND USE RIGHTS. One user\ + \ may install and use any number of copies of the software on your devices to design, develop\ + \ and test your ASP.NET programs.\n\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\ + \ \n\na. Distributable Code. The software contains code that you are permitted to distribute\ + \ in programs you develop if you comply with the terms below.\n\ni. Right to Use and\ + \ Distribute. The code and text files listed below are \"Distributable Code.\"\n\n· \ + \ Redistributable DLL Files. You may copy and distribute the object code form of the\ + \ following files:\n\n§ Microsoft.Web.Infrastructure.dll;\n§ NuGet.Core.dll;\n§ System.Web.Helpers.dll;\n\ + § System.Web.Razor.dll;\n§ System.Web.WebPages.Administration.dll;\n§ System.Web.WebPages.Deployment.dll;\n\ + § System.Web.WebPages.dll;\n§ System.Web.WebPages.Razor.dll;\n§ WebMatrix.Data.dll;\n\ + § WebMatrix.WebData.dll.\n· Third Party Distribution. You may permit distributors\ + \ of your programs to copy and distribute the Distributable Code as part of those programs.\n\ + \nii. Distribution Requirements. For any Distributable Code you distribute, you must\n\ + \n· add significant primary functionality to it in your programs;\n\n· require\ + \ distributors and external end users to agree to terms that protect it at least as much\ + \ as this agreement;\n\n· display your valid copyright notice on your programs;\ + \ and\n\n· indemnify, defend, and hold harmless Microsoft from any claims, including\ + \ attorneys’ fees, related to the distribution or use of your programs.\n\niii. Distribution\ + \ Restrictions. You may not\n\n· alter any copyright, trademark or patent notice\ + \ in the Distributable Code;\n\n· use Microsoft’s trademarks in your programs’ names\ + \ or in a way that suggests your programs come from or are endorsed by Microsoft;\n\n· \ + \ distribute Distributable Code to run on a platform other than the Windows platform;\n\ + \n· include Distributable Code in malicious, deceptive or unlawful programs; or\n\ + \n· modify or distribute the source code of any Distributable Code so that any part\ + \ of it becomes subject to an Excluded License. An Excluded License is one that requires,\ + \ as a condition of use, modification or distribution, that\n\n· the code be disclosed\ + \ or distributed in source code form; or\n\n· others have the right to modify it.\n\ + \n3. INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software.\ + \ It may change or cancel them at any time.\n\na. Consent for Internet-Based Services.\ + \ The software feature described below connects to Microsoft or service provider computer\ + \ systems over the Internet. In some cases, you will not receive a separate notice when\ + \ they connect. You may elect to not use it. For more information about this feature, see\ + \ the software documentation and the privacy statement available at go.microsoft.com/fwlink/?LinkID=205205.\ + \ BY USING THIS FEATURE, YOU CONSENT TO THE TRANSMISSION OF THIS INFORMATION. Microsoft\ + \ does not use the information to identify or contact you.\n\ni. Computer Information.\ + \ The following feature uses Internet protocols, which send to the appropriate systems computer\ + \ information, such as your Internet protocol address, the type of operating system, browser\ + \ and name and version of the software you are using, and the language code of the device\ + \ where you installed the software. Microsoft or a third-party service provider uses this\ + \ information to make the Internet-based service available to you.\n\nA. Open Data Protocol\ + \ (OData) Service. This software will access a list of packages that is supplied by means\ + \ of an OData service online from Microsoft or a third-party service provider.\n\nii. \ + \ Installing Packages and their Dependencies. Please refer to the \"Package Manager Feature\"\ + \ section below for a description of this feature.\n\niii. Use of Information. We or a\ + \ third-party service provider may use the computer information, to improve our or their\ + \ software and services. We or they may also share it with others, such as hardware and\ + \ software vendors. They may use the information to improve how their products run with\ + \ Microsoft software.\n\nb. Misuse of Internet-based Services. You may not use this service\ + \ in any way that could harm it or impair anyone else’s use of it. You may not use the service\ + \ to try to gain unauthorized access to any service, data, account or network by any means.\n\ + \n4. PACKAGE MANAGER FEATURE. This software includes a package manager feature, which\ + \ enables you to obtain other software packages from other sources. Those packages are\ + \ offered and distributed in some cases by third parties or in some cases by Microsoft,\ + \ but each such package is under its own license terms. Microsoft is not developing, distributing\ + \ or licensing any of the third-party packages to you, but instead, as a convenience, is\ + \ providing you with this package manager feature in order to access any packages for your\ + \ own use. By using this package manager feature, you acknowledge and agree that you may\ + \ be accessing and using the third-party packages as distributed by such third parties and\ + \ under the separate license terms applicable to each package, including any terms applicable\ + \ to software dependencies that may be included in the package. You acknowledge and agree\ + \ that it is your responsibility to locate, understand and comply with all applicable license\ + \ terms for each package and its dependencies, for example, by following the package source\ + \ (feed) URL or by reviewing the packages for embedded notices or license terms. The package\ + \ manager feature may have been pre-set to a feed that is hosted by Microsoft or a third\ + \ party service provider, located at go.microsoft.com/fwlink/?LinkID=206669. The packages\ + \ listed on this feed may include packages submitted by third parties. Microsoft makes\ + \ no representations, warranties or guarantees as to the feed URL, any feeds from such URL,\ + \ the information contained therein, or any packages referenced in or accessed by you through\ + \ such feeds. Microsoft grants you no license rights for third-party software that is obtained\ + \ using this feature or from the feed. You may change the feed URL that the package manager\ + \ feature initially points to at any time at your discretion.\n\n5. THIRD PARTY NOTICES.\ + \ The package manager feature of the software includes third party code. However, such\ + \ code is licensed to you by Microsoft under this license agreement, rather than licensed\ + \ to you by any third party under some other license terms. Notices, if any, for the third\ + \ party code are included with this software for your information only.\n\n6. SCOPE OF\ + \ LICENSE. The software is licensed, not sold. This agreement only gives you some rights\ + \ to use the software. Microsoft reserves all other rights. Unless applicable law gives\ + \ you more rights despite this limitation, you may use the software only as expressly permitted\ + \ in this agreement. In doing so, you must comply with any technical limitations in the\ + \ software that only allow you to use it in certain ways. You may not\n\n· work\ + \ around any technical limitations in the software;\n· reverse engineer, decompile\ + \ or disassemble the software, except and only to the extent that applicable law expressly\ + \ permits, despite this limitation;\n· make more copies of the software than specified\ + \ in this agreement or allowed by applicable law, despite this limitation;\n· publish\ + \ the software for others to copy;\n· rent, lease or lend the software; or\n· \ + \ transfer the software or this agreement to any third party.\n\n7. BACKUP COPY.\ + \ You may make one backup copy of the software. You may use it only to reinstall the software.\n\ + \n8. DOCUMENTATION. Any person that has valid access to your computer or internal network\ + \ may copy and use the documentation for your internal, reference purposes.\n\n9. EXPORT\ + \ RESTRICTIONS. The software is subject to United States export laws and regulations. You\ + \ must comply with all domestic and international export laws and regulations that apply\ + \ to the software. These laws include restrictions on destinations, end users and end use.\ + \ For additional information, see www.microsoft.com/exporting.\n\n10. SUPPORT SERVICES.\ + \ Because this software is \"as is,\" we may not provide support services for it.\n\n11.\ + \ ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based\ + \ services and support services that you use, are the entire agreement for the software\ + \ and support services.\n\n12. APPLICABLE LAW.\n\na. United States. If you acquired the\ + \ software in the United States, Washington state law governs the interpretation of this\ + \ agreement and applies to claims for breach of it, regardless of conflict of laws principles.\ + \ The laws of the state where you live govern all other claims, including claims under state\ + \ consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside the United\ + \ States. If you acquired the software in any other country, the laws of that country apply.\n\ + \n13. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights\ + \ under the laws of your country. You may also have rights with respect to the party from\ + \ whom you acquired the software. This agreement does not change your rights under the laws\ + \ of your country if the laws of your country do not permit it to do so.\n\n14. DISCLAIMER\ + \ OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT\ + \ GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER\ + \ RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED\ + \ UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n15. LIMITATION ON AND EXCLUSION OF REMEDIES\ + \ AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO\ + \ U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS,\ + \ SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to\n\n· anything\ + \ related to the software, services, content (including code) on third party Internet sites,\ + \ or third party programs; and\n· claims for breach of contract, breach of warranty,\ + \ guarantee or condition, strict liability, negligence, or other tort to the extent permitted\ + \ by applicable law.\n\nIt also applies even if Microsoft knew or should have known about\ + \ the possibility of the damages. The above limitation or exclusion may not apply to you\ + \ because your country may not allow the exclusion or limitation of incidental, consequential\ + \ or other damages.\n\n* * * * *\n\nMICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT\ + \ PACKAGE MANAGER FOR .NET\n\nThese license terms are an agreement between Microsoft Corporation\ + \ (or based on where you live, one of its affiliates) and you. Please read them. They apply\ + \ to the software named above, which includes the media on which you received it, if any.\ + \ The terms also apply to any Microsoft\n\n· updates,\n\n· supplements,\n\n· \ + \ Internet-based services, and\n\n· support services\n\nfor this software, unless\ + \ other terms accompany those items. If so, those terms apply.\n\nBY USING THE SOFTWARE,\ + \ YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\n\nAS DESCRIBED\ + \ BELOW, USING SOME FEATURES ALSO OPERATES AS YOUR CONSENT TO THE TRANSMISSION OF CERTAIN\ + \ STANDARD COMPUTER INFORMATION FOR INTERNET-BASED SERVICES.\n\nIf you comply with these\ + \ license terms, you have the rights below.\n\n1. INSTALLATION AND USE RIGHTS. One user\ + \ may install and use any number of copies of the software on your devices to design, develop\ + \ and test your programs.\n\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\n\ + \na. Distributable Code. The software contains code that you are permitted to distribute\ + \ in programs you develop if you comply with the terms below.\n\ni. Right to Use and\ + \ Distribute. The code and text files listed below are \"Distributable Code.\"\n\n· \ + \ NuGet.Core.dll. You may copy and distribute the object code form of NuGet.Core.dll.\n\ + \n· Third Party Distribution. You may permit distributors of your programs to copy\ + \ and distribute the Distributable Code as part of those programs.\n\nii. Distribution\ + \ Requirements. For any Distributable Code you distribute, you must\n\n· add significant\ + \ primary functionality to it in your programs;\n\n· require distributors and external\ + \ end users to agree to terms that protect it at least as much as this agreement;\n\n· \ + \ display your valid copyright notice on your programs; and\n\n· indemnify,\ + \ defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related\ + \ to the distribution or use of your programs.\n\niii. Distribution Restrictions. You\ + \ may not\n\n· alter any copyright, trademark or patent notice in the Distributable\ + \ Code;\n\n· use Microsoft’s trademarks in your programs’ names or in a way that\ + \ suggests your programs come from or are endorsed by Microsoft;\n\n· distribute\ + \ Distributable Code to run on a platform other than the Windows platform;\n\n· \ + \ include Distributable Code in malicious, deceptive or unlawful programs; or\n\n· \ + \ modify or distribute the source code of any Distributable Code so that any part of\ + \ it becomes subject to an Excluded License. An Excluded License is one that requires, as\ + \ a condition of use, modification or distribution, that\n\n· the code be disclosed\ + \ or distributed in source code form; or\n\n· others have the right to modify it.\n\ + \n3. INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software.\ + \ It may change or cancel them at any time.\n\na. Consent for Internet-Based Services.\ + \ The software feature described below connects to Microsoft or service provider computer\ + \ systems over the Internet. In some cases, you will not receive a separate notice when\ + \ they connect. You may elect to not use it. For more information about this feature, see\ + \ the software documentation and the privacy statement available at go.microsoft.com/fwlink/?LinkID=205205.\ + \ BY USING THIS FEATURE, YOU CONSENT TO THE TRANSMISSION OF THIS INFORMATION. Microsoft\ + \ does not use the information to identify or contact you.\n\ni. Computer Information.\ + \ The following feature uses Internet protocols, which send to the appropriate systems computer\ + \ information, such as your Internet protocol address, the type of operating system, browser\ + \ and name and version of the software you are using, and the language code of the device\ + \ where you installed the software. Microsoft or a third-party service provider uses this\ + \ information to make the Internet-based service available to you.\n\nA. Open Data Protocol\ + \ (OData) Service. This software will access a list of packages that is supplied by means\ + \ of an OData service online from Microsoft or a third-party service provider.\n\nii. \ + \ Installing Packages and their Dependencies. Please refer to the \"Package Manager Feature\"\ + \ section below for a description of this feature.\n\niii. Use of Information. We or a\ + \ third-party service provider may use the computer information, to improve our or their\ + \ software and services. We or they may also share it with others, such as hardware and\ + \ software vendors. They may use the information to improve how their products run with\ + \ Microsoft software.\n\nb. Misuse of Internet-based Services. You may not use this service\ + \ in any way that could harm it or impair anyone else’s use of it. You may not use the service\ + \ to try to gain unauthorized access to any service, data, account or network by any means.\n\ + \n4. PACKAGE MANAGER FEATURE. This software includes a package manager feature, which\ + \ enables you to obtain other software packages from other sources. Those packages are\ + \ offered and distributed in some cases by third parties or in some cases by Microsoft,\ + \ but each such package is under its own license terms. Microsoft is not developing, distributing\ + \ or licensing any of the third-party packages to you, but instead, as a convenience, is\ + \ providing you with this package manager feature in order to access any packages for your\ + \ own use. By using this package manager feature, you acknowledge and agree that you may\ + \ be accessing and using the third-party packages as distributed by such third parties and\ + \ under the separate license terms applicable to each package, including any terms applicable\ + \ to software dependencies that may be included in the package. You acknowledge and agree\ + \ that it is your responsibility to locate, understand and comply with all applicable license\ + \ terms for each package and its dependencies, for example, by following the package source\ + \ (feed) URL or by reviewing the packages for embedded notices or license terms. The package\ + \ manager feature may have been pre-set to a feed that is hosted by Microsoft or a third\ + \ party service provider, located at go.microsoft.com/fwlink/?LinkID=206669. The packages\ + \ listed on this feed may include packages submitted by third parties. Microsoft makes\ + \ no representations, warranties or guarantees as to the feed URL, any feeds from such URL,\ + \ the information contained therein, or any packages referenced in or accessed by you through\ + \ such feeds. Microsoft grants you no license rights for third-party software that is obtained\ + \ using this feature or from the feed. You may change the feed URL that the package manager\ + \ feature initially points to at any time at your discretion.\n\n5. THIRD PARTY NOTICES.\ + \ The package manager feature of the software includes third party code. However, such\ + \ code is licensed to you by Microsoft under this license agreement, rather than licensed\ + \ to you by any third party under some other license terms. Notices, if any, for the third\ + \ party code are included with this software for your information only.\n\n6. SCOPE OF\ + \ LICENSE. The software is licensed, not sold. This agreement only gives you some rights\ + \ to use the software. Microsoft reserves all other rights. Unless applicable law gives\ + \ you more rights despite this limitation, you may use the software only as expressly permitted\ + \ in this agreement. In doing so, you must comply with any technical limitations in the\ + \ software that only allow you to use it in certain ways. You may not\n\n· work around\ + \ any technical limitations in the software;\n\n· reverse engineer, decompile or disassemble\ + \ the software, except and only to the extent that applicable law expressly permits, despite\ + \ this limitation;\n\n· make more copies of the software than specified in this agreement\ + \ or allowed by applicable law, despite this limitation;\n\n· publish the software\ + \ for others to copy;\n\n· rent, lease or lend the software; or\n\n· transfer\ + \ the software or this agreement to any third party.\n\n7. BACKUP COPY. You may make one\ + \ backup copy of the software. You may use it only to reinstall the software.\n\n8. DOCUMENTATION.\ + \ Any person that has valid access to your computer or internal network may copy and use\ + \ the documentation for your internal, reference purposes.\n\n9. EXPORT RESTRICTIONS.\ + \ The software is subject to United States export laws and regulations. You must comply\ + \ with all domestic and international export laws and regulations that apply to the software.\ + \ These laws include restrictions on destinations, end users and end use. For additional\ + \ information, see www.microsoft.com/exporting.\n\n10. SUPPORT SERVICES. Because this software\ + \ is \"as is,\" we may not provide support services for it.\n\n11. ENTIRE AGREEMENT. This\ + \ agreement, and the terms for supplements, updates, Internet-based services and support\ + \ services that you use, are the entire agreement for the software and support services.\n\ + \n12. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United\ + \ States, Washington state law governs the interpretation of this agreement and applies\ + \ to claims for breach of it, regardless of conflict of laws principles. The laws of the\ + \ state where you live govern all other claims, including claims under state consumer protection\ + \ laws, unfair competition laws, and in tort.\n\nb. Outside the United States. If you\ + \ acquired the software in any other country, the laws of that country apply.\n\n13. LEGAL\ + \ EFFECT. This agreement describes certain legal rights. You may have other rights under\ + \ the laws of your country. You may also have rights with respect to the party from whom\ + \ you acquired the software. This agreement does not change your rights under the laws of\ + \ your country if the laws of your country do not permit it to do so.\n\n14. DISCLAIMER\ + \ OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT\ + \ GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER\ + \ RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED\ + \ UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n15. LIMITATION ON AND EXCLUSION OF REMEDIES\ + \ AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO\ + \ U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS,\ + \ SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to\n\n· anything\ + \ related to the software, services, content (including code) on third party Internet sites,\ + \ or third party programs; and\n\n· claims for breach of contract, breach of warranty,\ + \ guarantee or condition, strict liability, negligence, or other tort to the extent permitted\ + \ by applicable law.\n\nIt also applies even if Microsoft knew or should have known about\ + \ the possibility of the damages. The above limitation or exclusion may not apply to you\ + \ because your country may not allow the exclusion or limitation of incidental, consequential\ + \ or other damages.\n\n* * * * *\n\n \nMICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT\ + \ SOFTWARE UPDATE TO VISUAL STUDIO, KB2483190\n \nPLEASE NOTE: Microsoft Corporation (or\ + \ based on where you live, one of its affiliates) licenses this supplement to you. You may\ + \ use it with each validly licensed copy of Microsoft Visual Studio 2010 or Microsoft Windows\ + \ operating system software (for which this supplement is applicable) (the \"software\"\ + ). You may not use the supplement if you do not have a license for the software. The license\ + \ terms for the software apply to your use of this supplement. Microsoft provides support\ + \ services for the supplement as described at www.support.microsoft.com/common/international.aspx." json: ms-asp-net-mvc3.json - yml: ms-asp-net-mvc3.yml + yaml: ms-asp-net-mvc3.yml html: ms-asp-net-mvc3.html - text: ms-asp-net-mvc3.LICENSE + license: ms-asp-net-mvc3.LICENSE - license_key: ms-asp-net-mvc4 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-asp-net-mvc4 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT ASP.NET MODEL VIEW CONTROLLER 4\nThese\ + \ license terms are an agreement between Microsoft Corporation (or based on where you live,\ + \ one of its affiliates) and you. Please read them. They apply to the software named above,\ + \ which includes the media on which you received it, if any. The terms also apply to any\ + \ Microsoft\n• updates,\n• supplements,\n• Internet-based services,\ + \ and\n• support services\nfor this software, unless other terms accompany those\ + \ items. If so, those terms apply.\n\nBy using the software, you accept these terms. If\ + \ you do not accept them, do not use the software.\nIf you comply with these license terms,\ + \ you have the perpetual rights below.\n\n1. INSTALLATION AND USE RIGHTS. You may install\ + \ and use any number of copies of the software on your devices for use with your ASP.NET\ + \ programs. You may modify, copy, distribute or deploy any .js files contained in the software\ + \ as part of your ASP.NET programs.\n\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE\ + \ RIGHTS.\na. Distributable Code. In addition to the .js files described above, the software\ + \ contains code that you are permitted to distribute in ASP.NET programs you develop if\ + \ you comply with the terms below.\n\ni. Redistributable DLL files. You may copy and\ + \ distribute the object code form of the following files.\n• System.Net.Http.dll\n• \ + \ System.Net.Http.Formatting.dll\n• System.Web.Http.SelfHost.dll\n• System.Web.Http.WebHost.dll\n\ + • System.Web.Http.dll\n• System.Net.Http.WebRequest.dll\n• System.Web.Mvc.dll\n\n\ + • Third Party Distribution. You may permit distributors of your programs to copy\ + \ and distribute the Distributable Code as part of those programs.\n\nii. Distribution\ + \ Requirements. For any Distributable Code you distribute, you must\n• add significant\ + \ primary functionality to it in your programs;\n• require distributors and external\ + \ end users to agree to terms that protect it at least as much as this agreement;\n• \ + \ display your valid copyright notice on your programs; and\n• indemnify, defend,\ + \ and hold harmless Microsoft from any claims, including attorneys’ fees, related to the\ + \ distribution or use of your programs.\n\niii. Distribution Restrictions. You may not\n\ + • alter any copyright, trademark or patent notice in the Distributable Code;\n• \ + \ use Microsoft’s trademarks in your programs’ names or in a way that suggests your\ + \ programs come from or are endorsed by Microsoft;\n• distribute Distributable Code\ + \ to run on a platform other than the Windows platform;\n• include Distributable\ + \ Code in malicious, deceptive or unlawful programs; or\n• modify or distribute the\ + \ source code of any Distributable Code so that any part of it becomes subject to an Excluded\ + \ License. An Excluded License is one that requires, as a condition of use, modification\ + \ or distribution, that\n• the code be disclosed or distributed in source code form;\ + \ or\n• others have the right to modify it.\n\n3. INTERNET-BASED SERVICES. Microsoft\ + \ provides Internet-based services with the software. It may change or cancel them at any\ + \ time.\n\n4. THIRD PARTY NOTICES. The software may include third party code that Microsoft,\ + \ not the third party, licenses to you under this agreement. Notices, if any, for the third\ + \ party code are included for your information only. \n\n5. SCOPE OF LICENSE. The software\ + \ is licensed, not sold. This agreement only gives you some rights to use the software.\ + \ Microsoft reserves all other rights. Unless applicable law gives you more rights despite\ + \ this limitation, you may use the software only as expressly permitted in this agreement.\ + \ In doing so, you must comply with any technical limitations in the software that only\ + \ allow you to use it in certain ways. You may not\n• disclose the results of any\ + \ benchmark tests of the software to any third party without Microsoft’s prior written approval;\n\ + • work around any technical limitations in the software;\n• reverse engineer,\ + \ decompile or disassemble the software, except and only to the extent that applicable law\ + \ expressly permits, despite this limitation;\n• make more copies of the software\ + \ than specified in this agreement or allowed by applicable law, despite this limitation;\n\ + • publish the software for others to copy;\n• rent, lease or lend the software;\ + \ or\n• transfer the software or this agreement to any third party.\n\n6. BACKUP\ + \ COPY. You may make one backup copy of the software. You may use it only to reinstall the\ + \ software.\n\n7. DOCUMENTATION. Any person that has valid access to your computer or\ + \ internal network may copy and use the documentation for your internal, reference purposes.\n\ + \n8. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations.\ + \ You must comply with all domestic and international export laws and regulations that apply\ + \ to the software. These laws include restrictions on destinations, end users and end use.\ + \ For additional information, see www.microsoft.com/exporting.\n\n9. SUPPORT SERVICES.\ + \ Because this software is \"as is,\" we may not provide support services for it.\n\n10.\ + \ ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based\ + \ services and support services that you use, are the entire agreement for the software\ + \ and support services.\n\n11. APPLICABLE LAW.\na. United States. If you acquired the\ + \ software in the United States, Washington state law governs the interpretation of this\ + \ agreement and applies to claims for breach of it, regardless of conflict of laws principles.\ + \ The laws of the state where you live govern all other claims, including claims under state\ + \ consumer protection laws, unfair competition laws, and in tort.\nb. Outside the United\ + \ States. If you acquired the software in any other country, the laws of that country apply.\n\ + \n12. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights\ + \ under the laws of your country. You may also have rights with respect to the party from\ + \ whom you acquired the software. This agreement does not change your rights under the laws\ + \ of your country if the laws of your country do not permit it to do so.\n\n13. DISCLAIMER\ + \ OF WARRANTY. The software is licensed \"as-is.\" You bear the risk of using it. Microsoft\ + \ gives no express warranties, guarantees or conditions. You may have additional consumer\ + \ rights or statutory guarantees under your local laws which this agreement cannot change.\ + \ To the extent permitted under your local laws, Microsoft excludes the implied warranties\ + \ of merchantability, fitness for a particular purpose and non-infringement.\nFOR AUSTRALIA\ + \ – You have statutory guarantees under the Australian Consumer Law and nothing in these\ + \ terms is intended to affect those rights.\n\n14. LIMITATION ON AND EXCLUSION OF REMEDIES\ + \ AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to\ + \ U.S. $5.00. You cannot recover any other damages, including consequential, lost profits,\ + \ special, indirect or incidental damages.\nThis limitation applies to\n• anything\ + \ related to the software, services, content (including code) on third party Internet sites,\ + \ or third party programs; and\n• claims for breach of contract, breach of warranty,\ + \ guarantee or condition, strict liability, negligence, or other tort to the extent permitted\ + \ by applicable law.\nIt also applies even if Microsoft knew or should have known about\ + \ the possibility of the damages. The above limitation or exclusion may not apply to you\ + \ because your country may not allow the exclusion or limitation of incidental, consequential\ + \ or other damages." json: ms-asp-net-mvc4.json - yml: ms-asp-net-mvc4.yml + yaml: ms-asp-net-mvc4.yml html: ms-asp-net-mvc4.html - text: ms-asp-net-mvc4.LICENSE + license: ms-asp-net-mvc4.LICENSE - license_key: ms-asp-net-mvc4-extensions + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-asp-net-mvc4-extensions other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT PRE-RELEASE SOFTWARE LICENSE TERMS\nMICROSOFT ASP.NET MODEL VIEW CONTROLLER\ + \ 4 EXTENSIONS\nThese license terms are an agreement between Microsoft Corporation (or based\ + \ on where you live, one of its affiliates) and you. Please read them. They apply to the\ + \ pre-release software named above, which includes the media on which you received it, if\ + \ any. The terms also apply to any Microsoft\n\n· updates,\n· supplements,\n\ + · Internet-based services, and\n· support services\n\nfor this software,\ + \ unless other terms accompany those items. If so, those terms apply.\n\nBy using the software,\ + \ you accept these terms. If you do not accept them, do not use the software.\nIf you comply\ + \ with these license terms, you have the rights below.\n\n1. INSTALLATION AND USE RIGHTS.\ + \ You may install and use any number of copies of the software on your devices. \n\n2.\ + \ TERM. This agreement will automatically expire on August 1, 2013 or the commercial\ + \ release of the software, whichever comes first.\n\n3. PRE-RELEASE SOFTWARE. This software\ + \ is a pre-release version. It may not work the way a final version of the software will.\ + \ We may change it for the final, commercial version. We also may not release a commercial\ + \ version.\n\n4. FEEDBACK. If you give feedback about the software to Microsoft, you\ + \ give to Microsoft, without charge, the right to use, share and commercialize your feedback\ + \ in any way and for any purpose. You also give to third parties, without charge, any patent\ + \ rights needed for their products, technologies and services to use or interface with any\ + \ specific parts of a Microsoft software or service that includes the feedback. You will\ + \ not give feedback that is subject to a license that requires Microsoft to license its\ + \ software or documentation to third parties because we include your feedback in them. These\ + \ rights survive this agreement.\n\n5. THIRD PARTY NOTICES. The software may include\ + \ third party code that Microsoft, not the third party, licenses to you under this agreement.\ + \ Notices, if any, for the third party code are included for your information only. \n\n\ + 6. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you\ + \ some rights to use the software. Microsoft reserves all other rights. Unless applicable\ + \ law gives you more rights despite this limitation, you may use the software only as expressly\ + \ permitted in this agreement. In doing so, you must comply with any technical limitations\ + \ in the software that only allow you to use it in certain ways. You may not\n\n· \ + \ disclose the results of any benchmark tests of the software to any third party without\ + \ Microsoft’s prior written approval;\n\n· work around any technical limitations\ + \ in the software;\n\n· reverse engineer, decompile or disassemble the software,\ + \ except and only to the extent that applicable law expressly permits, despite this limitation;\n\ + \n· make more copies of the software than specified in this agreement or allowed\ + \ by applicable law, despite this limitation;\n\n· publish the software for others\ + \ to copy;\n\n· rent, lease or lend the software; or\n\n· transfer the software\ + \ or this agreement to any third party.\n\n7. EXPORT RESTRICTIONS. The software is subject\ + \ to United States export laws and regulations. You must comply with all domestic and international\ + \ export laws and regulations that apply to the software. These laws include restrictions\ + \ on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\ + \n8. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support\ + \ services for it.\n\n9. ENTIRE AGREEMENT. This agreement, and the terms for supplements,\ + \ updates, Internet-based services and support services that you use, are the entire agreement\ + \ for the software and support services.\n\n10. APPLICABLE LAW.\n\na. United States.\ + \ If you acquired the software in the United States, Washington state law governs the interpretation\ + \ of this agreement and applies to claims for breach of it, regardless of conflict of laws\ + \ principles. The laws of the state where you live govern all other claims, including claims\ + \ under state consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside\ + \ the United States. If you acquired the software in any other country, the laws of that\ + \ country apply.\n\n11. LEGAL EFFECT. This agreement describes certain legal rights. You\ + \ may have other rights under the laws of your country. You may also have rights with respect\ + \ to the party from whom you acquired the software. This agreement does not change your\ + \ rights under the laws of your country if the laws of your country do not permit it to\ + \ do so.\n\n12. DISCLAIMER OF WARRANTY. The software is licensed \"as-is.\" You bear the\ + \ risk of using it. Microsoft gives no express warranties, guarantees or conditions. You\ + \ may have additional consumer rights under your local laws which this agreement cannot\ + \ change. To the extent permitted under your local laws, Microsoft excludes the implied\ + \ warranties of merchantability, fitness for a particular purpose and non-infringement.\n\ + \n13. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft\ + \ and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages,\ + \ including consequential, lost profits, special, indirect or incidental damages.\n\nThis\ + \ limitation applies to\n\n· anything related to the software, services, content\ + \ (including code) on third party Internet sites, or third party programs; and\n\n· \ + \ claims for breach of contract, breach of warranty, guarantee or condition, strict\ + \ liability, negligence, or other tort to the extent permitted by applicable law.\n\nIt\ + \ also applies even if Microsoft knew or should have known about the possibility of the\ + \ damages. The above limitation or exclusion may not apply to you because your country may\ + \ not allow the exclusion or limitation of incidental, consequential or other damages.\n\ + \nPlease note: As this software is distributed in Quebec, Canada, some of the clauses in\ + \ this agreement are provided below in French.\n\nRemarque : Ce logiciel étant distribué\ + \ au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français.\n\ + \nEXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute\ + \ utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune\ + \ autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit\ + \ local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles\ + \ sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation\ + \ à un usage particulier et d’absence de contrefaçon sont exclues.\n\nLIMITATION DES DOMMAGES-INTÉRÊTS\ + \ ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et\ + \ de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur\ + \ de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages,\ + \ y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices.\n\n\ + Cette limitation concerne :\n\n· tout ce qui est relié au logiciel, aux services\ + \ ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes\ + \ tiers ; et\n\n· les réclamations au titre de violation de contrat ou de garantie,\ + \ ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite\ + \ autorisée par la loi en vigueur.\n\nElle s’applique également, même si Microsoft connaissait\ + \ ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion\ + \ ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque\ + \ nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera\ + \ pas à votre égard.\n\nEFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques.\ + \ Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat\ + \ ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le\ + \ permettent pas." json: ms-asp-net-mvc4-extensions.json - yml: ms-asp-net-mvc4-extensions.yml + yaml: ms-asp-net-mvc4-extensions.yml html: ms-asp-net-mvc4-extensions.html - text: ms-asp-net-mvc4-extensions.LICENSE + license: ms-asp-net-mvc4-extensions.LICENSE - license_key: ms-asp-net-software + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-asp-net-software other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + MICROSOFT SOFTWARE LICENSE TERMS + + Microsoft ASP.NET Model View Controller, Web API and Web Pages + + Microsoft ASP.NET Web Developer Tools + + Microsoft ASP.NET SignalR + + Microsoft ASP.NET Friendly URLs + + Microsoft ASP.NET Web Optimization Framework + + Microsoft ASP.NET Universal Providers + + These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft + + · updates, + · supplements, + · Internet-based services, and + · support services + + for this software, unless other terms accompany those items. If so, those terms apply. + + By using the software, you accept these terms. If you do not accept them, do not use the software. + + As described below, using some features also operates as your consent to the transmission of certain standard computer information for Internet-based services. + + If you comply with these license terms, you have the perpetual rights below. + + 1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices for use with your ASP.NET programs. You may modify, copy, distribute or deploy any .js files contained in the software as part of your ASP.NET programs. + + 2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS. + + a. Distributable Code. In addition to the .js files described above, the software contains code that you are permitted to distribute in ASP.NET programs you develop if you comply with the terms below. + + i. Right to Use and Distribute. The code and text files listed below are "Distributable Code." + + · Redistributable DLL files. You may copy and distribute the object code form of code and files listed below. + + MICROSOFT ASP.NET Model View Controller (MVC) + + § System.Net.Http.dll + + § System.Net.Http.Formatting.dll + + § System.Web.Http.SelfHost.dll + + § System.Web.Http.WebHost.dll + + § System.Web.Http.dll + + § System.Net.Http.WebRequest.dll + + § System.Web.Mvc.dll + + § System.Web.Http.OData.dll + + § System.Web.Http.Tracing.dll + + § Microsoft.AspNet.Mvc.Facebook + + § Microsoft.Owin.Host.SystemWeb + + Microsoft ASP.NET Web Pages + + § NuGet.Core.dll + + § Microsoft.Web.Infrastructure.dll + + § Microsoft.Web.WebPages.OAuth.dll + + § Microsoft.Web.Helpers.dll + + § System.Web.Helpers.dll + + § System.Web.Razor.dll + + § System.Web.WebPages.dll + + § System.Web.WebPages.Administration.dll + + § System.Web.WebPages.Deployment.dll + + § System.Web.WebPages.Razor.dll + + § WebMatrix.Data.dll + + § WebMatrix.WebData.dll + + Microsoft ASP.NET Web Developer Tools + + § Microsoft.AspNet.Membership.OpenAuth.dll + + § Microsoft.ScriptManager.WebForms.dll + + § Microsoft.ScriptManager.MSAjax.dll + + Microsoft ASP.NET SignalR + + § Microsoft.Asp.Net.SignalR.Core.dll + + § Microsoft.Asp.Net.SignalR.SystemWeb.dll + + § Microsoft.Asp.Net.SignalR.Owin.dll + + § Microsoft.AspNet.SignalR.ServiceBus.dll + + § Microsoft.AspNet.SingnalR.Redis.dll + + § Microsoft.AspNet.SignalR.Client.dll + + § Microsoft.AspNet.SignalR.Utils.exe + + Microsoft ASP.NET Friendly URLs + + § Microsoft.AspNet.FriendlyUrls + + Microsoft ASP.NET Web Optimization Framework + + § System.Web.Optimization.dll + + · Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs. + + ii. Distribution Requirements. For any Distributable Code you distribute, you must + + · add significant primary functionality to it in your programs; + · require distributors and external end users to agree to terms that protect it at least as much as this agreement; + · display your valid copyright notice on your programs; and + · indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your programs. + + iii. Distribution Restrictions. You may not + + · alter any copyright, trademark or patent notice in the Distributable Code; + + · use Microsoft’s trademarks in your programs’ names or in a way that suggests your programs come from or are endorsed by Microsoft; + + · distribute Distributable Code to run on a platform other than the Windows platform; + + · include Distributable Code in malicious, deceptive or unlawful programs; or + + · modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that + + · the code be disclosed or distributed in source code form; or + + · others have the right to modify it. + + 3. INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software. It may change or cancel them at any time. + + a. Consent for Internet-Based Services. The software features described below connect to Microsoft or service provider computer systems over the Internet. In some cases, you will not receive a separate notice when they connect. In some cases, you may switch off these features or not use them. For more information about these features, see software documentation and the privacy statement at go.microsoft.com/fwlink/?LinkID=205205. By using these features, you consent to the transmission of this information. Microsoft does not use the information to identify or contact you. + + i. Computer Information. The following features use Internet protocols, which send to the appropriate systems computer information, such as your Internet protocol address, the type of operating system, browser and name and version of the software you are using, and the language code of the device where you installed the software. Microsoft or a third party service provider uses this information to make the Internet-based services available to you. + + · Customer Experience Improvement Program (CEIP). This software uses CEIP. CEIP automatically sends Microsoft information about your hardware and how you use this software. We do not use this information to identify or contact you. To learn more about CEIP, see http://www.microsoft.com/products/ceip/en-us/privacypolicy.mspx. + + · Error Reports. This software automatically sends error reports to Microsoft. These reports include information about problems that occur in the software. Sometimes reports contain information about other programs that interact with the software. Reports might unintentionally contain personal information. For example, a report that contains a snapshot of computer memory might include your name. Part of a document you were working on could be included as well. Microsoft does not use this information to identify or contact you. To learn more about error reports, see oca.microsoft.com/en/dcp20.asp. + + · Open Data Protocol (OData) Service. This software will access a list of packages that is supplied by means of an OData service online from Microsoft or a third-party service provider. + + ii. Installing Packages and their Dependencies. Please refer to the "Third Party Package Manager" section below for a description of this feature. + + iii. Use of Information. We or the third party service provider may use the computer information, error reports, and CEIP information, to improve our or their software and services. We or they may also share it with others, such as hardware and software vendors. They may use the information to improve how their products run with Microsoft software. + + b. Misuse of Internet-based Services. You may not use this service in any way that could harm it or impair anyone else’s use of it. You may not use the service to try to gain unauthorized access to any service, data, account or network by any means. + + 4. THIRD PARTY PACKAGE MANAGER. This software includes a package manager feature, which enables you to obtain other software packages from other sources. Those packages are offered and distributed in some cases by third parties or in some cases by Microsoft, but each such package is under its own license terms. Microsoft is not developing, distributing or licensing any of the third-party packages to you, but instead, as a convenience, is providing you with this package manager feature in order to access any packages for your own use. By using this package manager feature, you acknowledge and agree that you may be accessing and using the third-party packages as distributed by such third parties and under the separate license terms applicable to each package, including any terms applicable to software dependencies that may be included in the package. You acknowledge and agree that it is your responsibility to locate, understand and comply with all applicable license terms for each package and its dependencies, for example, by following the package source (feed) URL or by reviewing the packages for embedded notices or license terms. The package manager feature may have been pre-set to a feed that is hosted by a third party service provider, located at go.microsoft.com/fwlink/?LinkID=206669. The packages listed on this feed may include packages submitted by third parties. Microsoft makes no representations, warranties or guarantees as to the feed URL, any feeds from such URL, the information contained therein, or any packages referenced in or accessed by you through such feeds. Microsoft grants you no license rights rights for third-party software that is obtained using this feature or from the feed. You may change the feed URL that the package manager feature initially points to at any time at your discretion. + + 5. THIRD PARTY NOTICES. The software, including the package manager feature of the software, may include third party code that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party code are included for your information only. + + 6. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Microsoft grants you no license rights for third-party software that is obtained using this software. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not + + · disclose the results of any benchmark tests of the software to any third party without Microsoft’s prior written approval; + + · work around any technical limitations in the software; + + · reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; + + · publish the software for others to copy; + + · rent, lease or lend the software; or + + · transfer the software or this agreement to any third party. + + 7. .NET FRAMEWORK SOFTWARE. The software contains Microsoft .NET Framework software. This software is part of Windows. The license terms for Windows apply to your use of the .NET Framework software. + + 8. MICROSOFT .NET FRAMEWORK BENCHMARK TESTING. The software includes one or more components of the .NET Framework (".NET Components"). You may conduct internal benchmark testing of those components. You may disclose the results of any benchmark test of those components, provided that you comply with the conditions set forth at go.microsoft.com/fwlink/?LinkID=66406. Notwithstanding any other agreement you may have with Microsoft, if you disclose such benchmark test results, Microsoft shall have the right to disclose the results of benchmark tests it conducts of your products that compete with the applicable .NET Component, provided it complies with the same conditions set forth at go.microsoft.com/fwlink/?LinkID=66406. + + 9. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software. + + 10. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. + + 11. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see http://www.microsoft.com/exporting. + + 12. SUPPORT SERVICES. Because this software is "as is," we may not provide support services for it. + + 13. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. + + 14. APPLICABLE LAW. + + a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. + + b. Outside the United States. If you acquired the software in any other country, the laws of that country apply. + + 15. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so. + + 16. DISCLAIMER OF WARRANTY. The software is licensed "as-is." You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights or statutory guarantees under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. + + FOR AUSTRALIA – You have statutory guarantees under the Australian Consumer Law and nothing in these terms is intended to affect those rights. + + 17. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages. + + This limitation applies to + + · anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and + + · claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + + It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. + + Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French. + + Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français. + + EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon sont exclues. + + LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices. + + Cette limitation concerne : + + · tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et + + · les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur. + + Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. + + EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. json: ms-asp-net-software.json - yml: ms-asp-net-software.yml + yaml: ms-asp-net-software.yml html: ms-asp-net-software.html - text: ms-asp-net-software.LICENSE + license: ms-asp-net-software.LICENSE - license_key: ms-asp-net-tools-pre-release + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-asp-net-tools-pre-release other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT PRE-RELEASE SOFTWARE LICENSE TERMS\nMICROSOFT ASP.NET TOOLS\n \nThese license\ + \ terms are an agreement between Microsoft Corporation (or based on where you live, one\ + \ of its affiliates) and you. Please read them. They apply to the pre-release software named\ + \ above, which includes the media on which you received it, if any. The terms also apply\ + \ to any Microsoft\n\n· updates,\n\n· supplements,\n\n· Internet-based\ + \ services, and\n\n· support services\n\nfor this software, unless other terms accompany\ + \ those items. If so, those terms apply.\n\nBy using the software, you accept these terms.\ + \ If you do not accept them, do not use the software.\n\nAs described below, using some\ + \ features also operates as your consent to the transmission of certain standard computer\ + \ information for Internet-based services.\n\nIf you comply with these license terms, you\ + \ have the rights below.\n\n1. INSTALLATION AND USE RIGHTS.\n\na. Installation and\ + \ Use.\n\n· You may install and use any number of copies of the software on your\ + \ premises to design, develop and test your ASP.NET programs.\n\n· Deploy to Hosting\ + \ Provider. Because the software is a pre-release version, and may not work correctly,\ + \ provided that you take adequate precautionary measures to back up and protect any data\ + \ that may be affected by use of the software, you may deploy your programs to a hosting\ + \ provider for production validation, at your sole discretion and risk on the following\ + \ conditions:\n\no you agree to assume all risk associated with use of the software;\n\ + \no you may not make any representation, warranty or promise on behalf of Microsoft or\ + \ with respect to the software, or its performance; and\n\no you may not use the software\ + \ for hazardous environments that require fail safe controls.\n\n· Distributable\ + \ Code. You may copy and distribute the object code form of code and files listed in the\ + \ packages at http://go.microsoft.com/fwlink/?LinkId=296594 as part of your\ + \ ASP.NET programs deployed to a hosting provider if you comply with the terms below. \n\ + \ni. Distribution Requirements. For any Distributable Code you distribute, you must\n\ + \n· use the Distributable Code in your programs and not as a standalone\ + \ distribution;\n\n· require distributors and your external users to\ + \ agree to terms that protect it at least as much as this agreement; and \ + \ \n\n· indemnify, defend, and hold harmless, Microsoft from any claims,\ + \ including attorneys' fees related to the distribution of your\ + \ programs.\n\n ii. Distribution Restrictions. You may not\n\n· alter any\ + \ copyright, trademark or patent notice in the Distributable Code;\n\n· use Microsoft’s\ + \ trademarks in your programs’ names or in a way that suggests your programs come from or\ + \ are endorsed by Microsoft;\n\n· distribute Distributable Code to run on a platform\ + \ other than the Windows platform;\n\n· include Distributable Code in malicious,\ + \ deceptive or unlawful programs; or\n\n· modify or distribute the source code of\ + \ any Distributable Code so that any part of it becomes subject to an Excluded License.\ + \ An Excluded License is one that requires, as a condition of use, modification or distribution,\ + \ that\n\n· the code be disclosed or distributed in source code form; or\n\n· \ + \ others have the right to modify it.\n\n· Final Versions. When commercially\ + \ available, you must acquire and use the final release version of the software in order\ + \ to develop and distribute versions of your programs that work with the final commercial\ + \ release of the software.\n\nb. Third Party Programs. The software may include third\ + \ party programs that Microsoft, not the third party, licenses to you under this agreement.\ + \ Notices, if any, for the third party program are included for your information only.\n\ + \n2. INDEMNIFICATION. You agree to indemnify, hold harmless, and defend Microsoft from\ + \ and against any claims, allegations, lawsuits, losses and costs (including attorney fees)\ + \ that arise or result from the use, deployment or distribution of your programs that use\ + \ the software.\n\n3. THIRD PARTY NOTICES. The software, including the package manager\ + \ feature of the software, may include third party code that Microsoft, not the third party,\ + \ licenses to you under this agreement. Notices, if any, for the third party code are included\ + \ for your information only.\n\n4. TERM. The term of this agreement is until 30/06/2014\ + \ (day/month/year) or within 90-days of commercial release of the software, whichever is\ + \ first.\n\n5. PRE-RELEASE SOFTWARE. This software is a pre-release version. It may not\ + \ work the way a final version of the software will. We may change it for the final, commercial\ + \ version. We also may not release a commercial version.\n\n6. FEEDBACK. If you give\ + \ feedback about the software to Microsoft, you give to Microsoft, without charge, the right\ + \ to use, share and commercialize your feedback in any way and for any purpose. You also\ + \ give to third parties, without charge, any patent rights needed for their products, technologies\ + \ and services to use or interface with any specific parts of a Microsoft software or service\ + \ that includes the feedback. You will not give feedback that is subject to a license that\ + \ requires Microsoft to license its software or documentation to third parties because we\ + \ include your feedback in them. These rights survive this agreement.\n\n7. SCOPE OF\ + \ LICENSE. The software is licensed, not sold. This agreement only gives you some rights\ + \ to use the software. Microsoft reserves all other rights. Unless applicable law gives\ + \ you more rights despite this limitation, you may use the software only as expressly permitted\ + \ in this agreement. In doing so, you must comply with any technical limitations in the\ + \ software that only allow you to use it in certain ways. You may not\n\n· disclose\ + \ the results of any benchmark tests of the software to any third party without Microsoft’s\ + \ prior written approval;\n\n· work around any technical limitations in the software;\n\ + \n· reverse engineer, decompile or disassemble the software, except and only to\ + \ the extent that applicable law expressly permits, despite this limitation;\n\n· \ + \ publish the software for others to copy;\n\n· rent, lease or lend the software;\ + \ or\n\n· transfer the software or this agreement to any third party.\n\n8. DOCUMENTATION.\ + \ Any person that has valid access to your computer or internal network may copy and use\ + \ the documentation for your internal, reference purposes.\n\n9. EXPORT RESTRICTIONS.\ + \ The software is subject to United States export laws and regulations. You must comply\ + \ with all domestic and international export laws and regulations that apply to the software.\ + \ These laws include restrictions on destinations, end users and end use. For additional\ + \ information, see www.microsoft.com/exporting.\n\n10. SUPPORT SERVICES. Because this software\ + \ is \"as is,\" we may not provide support services for it.\n\n11. ENTIRE AGREEMENT. This\ + \ agreement, and the terms for supplements, updates, Internet-based services and support\ + \ services that you use, are the entire agreement for the software and support services.\n\ + \n12. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United\ + \ States, Washington state law governs the interpretation of this agreement and applies\ + \ to claims for breach of it, regardless of conflict of laws principles. The laws of the\ + \ state where you live govern all other claims, including claims under state consumer protection\ + \ laws, unfair competition laws, and in tort.\n\nb. Outside the United States. If you\ + \ acquired the software in any other country, the laws of that country apply.\n\n13. LEGAL\ + \ EFFECT. This agreement describes certain legal rights. You may have other rights under\ + \ the laws of your country. You may also have rights with respect to the party from whom\ + \ you acquired the software. This agreement does not change your rights under the laws of\ + \ your country if the laws of your country do not permit it to do so.\n\n14. DISCLAIMER\ + \ OF WARRANTY. The software is licensed \"as-is.\" You bear the risk of using it. Microsoft\ + \ gives no express warranties, guarantees or conditions. You may have additional consumer\ + \ rights or statutory guarantees under your local laws which this agreement cannot change.\ + \ To the extent permitted under your local laws, Microsoft excludes the implied warranties\ + \ of merchantability, fitness for a particular purpose and non-infringement.\n\nFOR AUSTRALIA\ + \ – You have statutory guarantees under the Australian Consumer Law and nothing in these\ + \ terms is intended to affect those rights.\n\n15. LIMITATION ON AND EXCLUSION OF REMEDIES\ + \ AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to\ + \ U.S. $5.00. You cannot recover any other damages, including consequential, lost profits,\ + \ special, indirect or incidental damages.\n\nThis limitation applies to\n\n· anything\ + \ related to the software, services, content (including code) on third party Internet sites,\ + \ or third party programs; and\n\n· claims for breach of contract, breach of warranty,\ + \ guarantee or condition, strict liability, negligence, or other tort to the extent permitted\ + \ by applicable law.\n\nIt also applies even if Microsoft knew or should have known about\ + \ the possibility of the damages. The above limitation or exclusion may not apply to you\ + \ because your country may not allow the exclusion or limitation of incidental, consequential\ + \ or other damages." json: ms-asp-net-tools-pre-release.json - yml: ms-asp-net-tools-pre-release.yml + yaml: ms-asp-net-tools-pre-release.yml html: ms-asp-net-tools-pre-release.html - text: ms-asp-net-tools-pre-release.LICENSE + license: ms-asp-net-tools-pre-release.LICENSE - license_key: ms-asp-net-web-optimization-framework + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-asp-net-web-optimization other_spdx_license_keys: - LicenseRef-scancode-ms-asp-net-web-optimization-framework is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT ASP.NET WEB OPTIMIZATION FRAMEWORK\nThese\ + \ license terms are an agreement between Microsoft Corporation (or based on where you live,\ + \ one of its affiliates) and you. Please read them. They apply to the software named above,\ + \ which includes the media on which you received it, if any. The terms also apply to any\ + \ Microsoft\n\n· updates,\n· supplements,\n· Internet-based services,\ + \ and\n· support services\n\nfor this software, unless other terms accompany those\ + \ items. If so, those terms apply.\n\nBy using the software, you accept these terms. If\ + \ you do not accept them, do not use the software.\nIf you comply with these license terms,\ + \ you have the perpetual rights below.\n\n1. INSTALLATION AND USE RIGHTS. You may install\ + \ and use any number of copies of the software on your devices for use with your ASP.NET\ + \ programs.\n\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\n\na. Distributable\ + \ Code. The software contains code that you are permitted to distribute in programs you\ + \ develop if you comply with the terms below.\n\ni. Right to Use and Distribute. You may\ + \ copy and distribute the object code form of System.Web.Optimization.dll file.\n\n· \ + \ Third Party Distribution. You may permit distributors of your programs to copy and\ + \ distribute the Distributable Code as part of those programs.\n\nii.Distribution Requirements.\ + \ For any Distributable Code you distribute, you must\n\n· add significant primary\ + \ functionality to it in your programs;\n· require distributors and external end\ + \ users to agree to terms that protect it at least as much as this agreement;\n· \ + \ display your valid copyright notice on your programs; and\n· indemnify, defend,\ + \ and hold harmless Microsoft from any claims, including attorneys’ fees, related to the\ + \ distribution or use of your programs.\n\niii. Distribution Restrictions. You may not\n\ + \n· alter any copyright, trademark or patent notice in the Distributable Code;\n\ + · use Microsoft’s trademarks in your programs’ names or in a way that suggests your\ + \ programs come from or are endorsed by Microsoft;\n· distribute Distributable Code\ + \ to run on a platform other than the Windows platform;\n· include Distributable\ + \ Code in malicious, deceptive or unlawful programs; or\n· modify or distribute the\ + \ source code of any Distributable Code so that any part of it becomes subject to an Excluded\ + \ License. An Excluded License is one that requires, as a condition of use, modification\ + \ or distribution, that\n· the code be disclosed or distributed in source code form;\ + \ or\n· others have the right to modify it.\n\n3. SCOPE OF LICENSE. The software\ + \ is licensed, not sold. This agreement only gives you some rights to use the software.\ + \ Microsoft reserves all other rights. Unless applicable law gives you more rights despite\ + \ this limitation, you may use the software only as expressly permitted in this agreement.\ + \ In doing so, you must comply with any technical limitations in the software that only\ + \ allow you to use it in certain ways. You may not\n\n· work around any technical\ + \ limitations in the software;\n· reverse engineer, decompile or disassemble the\ + \ software, except and only to the extent that applicable law expressly permits, despite\ + \ this limitation;\n· make more copies of the software than specified in this agreement\ + \ or allowed by applicable law, despite this limitation;\n· publish the software\ + \ for others to copy;\n· rent, lease or lend the software; or\n· transfer\ + \ the software or this agreement to any third party.\n\n4. THIRD PARTY NOTICES. The\ + \ software may include third party code that Microsoft, not the third party, licensees to\ + \ you under this agreement. Notices, if any, for the third party code are included for\ + \ your information only. \n\n5. BACKUP COPY. You may make one backup copy of the software.\ + \ You may use it only to reinstall the software.\n\n6. DOCUMENTATION. Any person that\ + \ has valid access to your computer or internal network may copy and use the documentation\ + \ for your internal, reference purposes.\n\n7. EXPORT RESTRICTIONS. The software is subject\ + \ to United States export laws and regulations. You must comply with all domestic and international\ + \ export laws and regulations that apply to the software. These laws include restrictions\ + \ on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\ + \n8. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support\ + \ services for it.\n\n9. ENTIRE AGREEMENT. This agreement, and the terms for supplements,\ + \ updates, Internet-based services and support services that you use, are the entire agreement\ + \ for the software and support services.\n\n10. APPLICABLE LAW.\n\na. United States.\ + \ If you acquired the software in the United States, Washington state law governs the interpretation\ + \ of this agreement and applies to claims for breach of it, regardless of conflict of laws\ + \ principles. The laws of the state where you live govern all other claims, including claims\ + \ under state consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside\ + \ the United States. If you acquired the software in any other country, the laws of that\ + \ country apply.\n\n11. LEGAL EFFECT. This agreement describes certain legal rights. You\ + \ may have other rights under the laws of your country. You may also have rights with respect\ + \ to the party from whom you acquired the software. This agreement does not change your\ + \ rights under the laws of your country if the laws of your country do not permit it to\ + \ do so.\n\n12. DISCLAIMER OF WARRANTY. The software is licensed \"as-is.\" You bear the\ + \ risk of using it. Microsoft gives no express warranties, guarantees or conditions. You\ + \ may have additional consumer rights or statutory guarantees under your local laws which\ + \ this agreement cannot change. To the extent permitted under your local laws, Microsoft\ + \ excludes the implied warranties of merchantability, fitness for a particular purpose and\ + \ non-infringement.\n\nFOR AUSTRALIA – You have statutory guarantees under the Australian\ + \ Consumer Law and nothing in these terms is intended to affect those rights.\n\n13. LIMITATION\ + \ ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers\ + \ only direct damages up to U.S. $5.00. You cannot recover any other damages, including\ + \ consequential, lost profits, special, indirect or incidental damages.\n\nThis limitation\ + \ applies to\n\n· anything related to the software, services, content (including\ + \ code) on third party Internet sites, or third party programs; and\n· claims for\ + \ breach of contract, breach of warranty, guarantee or condition, strict liability, negligence,\ + \ or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft\ + \ knew or should have known about the possibility of the damages. The above limitation or\ + \ exclusion may not apply to you because your country may not allow the exclusion or limitation\ + \ of incidental, consequential or other damages.\n\nPlease note: As this software is distributed\ + \ in Quebec, Canada, these license terms are provided below in French.\n\nRemarque : Ce\ + \ logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont\ + \ fournies ci-dessous en français.\n\nEXONÉRATION DE GARANTIE. Le logiciel visé par une\ + \ licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque\ + \ et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de\ + \ droits additionnels en vertu du droit local sur la protection des consommateurs, que ce\ + \ contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties\ + \ implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon\ + \ sont exclues.\n\nLIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR\ + \ LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation\ + \ en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre\ + \ à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects\ + \ ou accessoires et pertes de bénéfices.\n\nCette limitation concerne :\n\n• tout ce\ + \ qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur\ + \ des sites Internet tiers ou dans des programmes tiers ; et\n\n• les réclamations au\ + \ titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de\ + \ négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur.\n\nElle\ + \ s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité\ + \ d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité\ + \ pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut\ + \ que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard.\n\nEFFET\ + \ JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres\ + \ droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits\ + \ que vous confèrent les lois de votre pays si celles-ci ne le permettent pas." json: ms-asp-net-web-optimization-framework.json - yml: ms-asp-net-web-optimization-framework.yml + yaml: ms-asp-net-web-optimization-framework.yml html: ms-asp-net-web-optimization-framework.html - text: ms-asp-net-web-optimization-framework.LICENSE + license: ms-asp-net-web-optimization-framework.LICENSE - license_key: ms-asp-net-web-pages-2 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-asp-net-web-pages-2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT ASP.NET WEB PAGES 2\nThese license terms\ + \ are an agreement between Microsoft Corporation (or based on where you live, one of its\ + \ affiliates) and you. Please read them. They apply to the software named above, which includes\ + \ the media on which you received it, if any. The terms also apply to any Microsoft\n\n\ + · updates,\n\n· supplements,\n\n· Internet-based services, and\n\n\ + · support services\n\nfor this software, unless other terms accompany those items.\ + \ If so, those terms apply.\n\nBy using the software, you accept these terms. If you do\ + \ not accept them, do not use the software.\n\nAs described below, using some features also\ + \ operates as your consent to the transmission of certain standard computer information\ + \ for Internet-based services.\n\nIf you comply with these license terms, you have the perpetual\ + \ rights below.\n\n1. INSTALLATION AND USE RIGHTS. You may install and use any number\ + \ of copies of the software on your devices for use with your ASP.NET programs. You may\ + \ modify, copy and distribute or deploy any .js files contained in the software as part\ + \ of your ASP.NET programs. \n\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\n\ + \na. Distributable Code. In addition to the .js files described above, the software contains\ + \ code that you are permitted to distribute in ASP.NET programs you develop if you comply\ + \ with the terms below.\n\ni. Right to Use and Distribute. The code and text files listed\ + \ below are \"Distributable Code.\"\n\n· Redistributable DLL files. You may copy\ + \ and distribute the object code form of the following files.\n\n§ NuGet.Core.dll\n§ Microsoft.Web.Infrastructure.dll\n\ + § Microsoft.Web.WebPages.OAuth.dll\n§ ​Microsoft.Web.Helpers.dll\n§ ​System.Web.Helpers.dll\n\ + § System.Web.Razor.dll\n§ ​System.Web.WebPages.dll\n§ System.Web.WebPages.Administration.dll\n\ + § ​System.Web.WebPages.Deployment.dll\n§ System.Web.WebPages.Razor.dll\n§ ​WebMatrix.Data.dll\n\ + § WebMatrix.WebData.dll\n\n· Third Party Distribution. You may permit distributors\ + \ of your programs to copy and distribute the Distributable Code as part of those programs.\n\ + \nii. Distribution Requirements. For any Distributable Code you distribute, you must\n\ + \n· add significant primary functionality to it in your programs;\n\n· require\ + \ distributors and external end users to agree to terms that protect it at least as much\ + \ as this agreement;\n\n· display your valid copyright notice on your programs; and\n\ + \n· indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’\ + \ fees, related to the distribution or use of your programs.\n\niii. Distribution Restrictions.\ + \ You may not\n\n· alter any copyright, trademark or patent notice in the Distributable\ + \ Code;\n\n· use Microsoft’s trademarks in your programs’ names or in a way that\ + \ suggests your programs come from or are endorsed by Microsoft;\n\n· distribute\ + \ Distributable Code to run on a platform other than the Windows platform;\n\n· include\ + \ Distributable Code in malicious, deceptive or unlawful programs; or\n\n· modify\ + \ or distribute the source code of any Distributable Code so that any part of it becomes\ + \ subject to an Excluded License. An Excluded License is one that requires, as a condition\ + \ of use, modification or distribution, that\n\n· the code be disclosed or distributed\ + \ in source code form; or\n\n· others have the right to modify it.\n\n3. INTERNET-BASED\ + \ SERVICES. Microsoft provides Internet-based services with the software. It may change\ + \ or cancel them at any time.\n\na. Consent for Internet-Based Services. The software\ + \ feature described below connects to Microsoft or service provider computer systems over\ + \ the Internet. In some cases, you will not receive a separate notice when they connect.\ + \ You may switch off this feature or not use it. For more information about this feature,\ + \ see http://docs.nuget.org. By using this feature, you consent to the transmission of this\ + \ information. Microsoft does not use the information to identify or contact you.\n\ni.\ + \ Computer Information. The following feature uses Internet protocols, which send to\ + \ the appropriate systems computer information, such as your Internet protocol address,\ + \ the type of operating system, browser and name and version of the software you are using,\ + \ and the language code of the device where you installed the software. Microsoft uses this\ + \ information to make the Internet-based service available to you.\n\n· Open Data\ + \ (OData) Service. This software will access a list of packages that are supplied by means\ + \ of an OData service online from Microsoft or a third-party service provider.\n\n· \ + \ Installing Packages and their Dependencies. Please refer to the \"Package Manager\ + \ and Third Party Software Installation Features\" section below for a description of this\ + \ feature.\n\n· Use of Information. We or the third-party service provider may use\ + \ the computer information to improve our or their software and services. We or they may\ + \ also share the computer information with others, such as hardware and software vendors.\n\ + \nb. Misuse of Internet-based Services. You may not use this service in any way that\ + \ could harm it or impair anyone else’s use of it. You may not use the service to try to\ + \ gain unauthorized access to any service, data, account or network by any means.\n\n \n\ + \n4. PACKAGE MANAGER AND THIRD PARTY SOFTWARE INSTALLATION FEATURES. The software includes\ + \ the following features (each a \"Feature\"), each of which enables you to obtain software\ + \ applications or packages through the Internet from other sources: Package Manager Feature.\ + \ Those software applications and packages are offered and distributed in some cases by\ + \ third parties and in some cases by Microsoft, but each such application or package is\ + \ under its own license terms. Microsoft is not developing, distributing or licensing any\ + \ of the third-party applications or packages to you, but instead, as a convenience, enables\ + \ you to use the Features to access or obtain those applications or packages directly from\ + \ the third-party application or package providers. By using the Features, you acknowledge\ + \ and agree that: \n\n· you are obtaining the applications or packages from such third\ + \ parties and under separate license terms applicable to each application or package (including,\ + \ with respect to the package-manager Features, any terms applicable to software dependencies\ + \ that may be included in the package);\n\n· that it is your responsibility to locate,\ + \ understand and comply with all applicable license terms for each such application or package;\ + \ and\n\n· with respect to the package-manager Features, this includes your responsibility\ + \ to follow the package source (feed) URL or by reviewing the packages for embedded notices\ + \ or license terms. \n\nMICROSOFT MAKES NO REPRESENTATIONS, WARRANTIES OR GUARANTEES AS\ + \ TO THE FEED OR GALLERY URL, ANY FEEDS OR GALLERIES FROM SUCH URL, THE INFORMATION CONTAINED\ + \ THEREIN, OR ANY SOFTWARE APPLICATIONS OR PACKAGES REFERENCED IN OR ACCESSED BY YOU THROUGH\ + \ SUCH FEEDS OR GALLERIES. MICROSOFT GRANTS YOU NO LICENSE RIGHTS FOR THIRD-PARTY SOFTWARE\ + \ APPLICATIONS OR PACKAGES THAT ARE OBTAINED USING THE FEATURES. \n\n5. THIRD PARTY NOTICES.\ + \ The package manager feature of the software includes third party code. However, all such\ + \ code is licensed by you by Microsoft under this license agreement, rather than licensed\ + \ to you by any third party under some other license terms. Notices, if any, for the third\ + \ party code are included with this software for your information only.\n\n6. SCOPE OF\ + \ LICENSE. The software is licensed, not sold. This agreement only gives you some rights\ + \ to use the software. Microsoft reserves all other rights. Unless applicable law gives\ + \ you more rights despite this limitation, you may use the software only as expressly permitted\ + \ in this agreement. In doing so, you must comply with any technical limitations in the\ + \ software that only allow you to use it in certain ways. You may not\n\n· disclose\ + \ the results of any benchmark tests of the software to any third party without Microsoft’s\ + \ prior written approval;\n\n· work around any technical limitations in the software;\n\ + \n· reverse engineer, decompile or disassemble the software, except and only to the\ + \ extent that applicable law expressly permits, despite this limitation;\n\n· make\ + \ more copies of the software than specified in this agreement or allowed by applicable\ + \ law, despite this limitation;\n\n· publish the software for others to copy;\n\n\ + · rent, lease or lend the software;\n\n· transfer the software or this agreement\ + \ to any third party; or\n\n· use the software for commercial software hosting services.\n\ + \n7. BACKUP COPY. You may make one backup copy of the software. You may use it only to\ + \ reinstall the software.\n\n8. DOCUMENTATION. Any person that has valid access to your\ + \ computer or internal network may copy and use the documentation for your internal, reference\ + \ purposes.\n\n9. EXPORT RESTRICTIONS. The software is subject to United States export\ + \ laws and regulations. You must comply with all domestic and international export laws\ + \ and regulations that apply to the software. These laws include restrictions on destinations,\ + \ end users and end use. For additional information, see www.microsoft.com/exporting.\n\n\ + 10. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services\ + \ for it.\n\n11. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates,\ + \ Internet-based services and support services that you use, are the entire agreement for\ + \ the software and support services.\n\n12. APPLICABLE LAW.\n\na. United States. If you\ + \ acquired the software in the United States, Washington state law governs the interpretation\ + \ of this agreement and applies to claims for breach of it, regardless of conflict of laws\ + \ principles. The laws of the state where you live govern all other claims, including claims\ + \ under state consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside\ + \ the United States. If you acquired the software in any other country, the laws of that\ + \ country apply.\n\n13. LEGAL EFFECT. This agreement describes certain legal rights. You\ + \ may have other rights under the laws of your country. You may also have rights with respect\ + \ to the party from whom you acquired the software. This agreement does not change your\ + \ rights under the laws of your country if the laws of your country do not permit it to\ + \ do so.\n\n14. DISCLAIMER OF WARRANTY. The software is licensed \"as-is.\" You bear the\ + \ risk of using it. Microsoft gives no express warranties, guarantees or conditions. You\ + \ may have additional consumer rights or statutory guarantees under your local laws which\ + \ this agreement cannot change. To the extent permitted under your local laws, Microsoft\ + \ excludes the implied warranties of merchantability, fitness for a particular purpose and\ + \ non-infringement.\n\nFOR AUSTRALIA – You have statutory guarantees under the Australian\ + \ Consumer Law and nothing in these terms is intended to affect those rights.\n\n15. LIMITATION\ + \ ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers\ + \ only direct damages up to U.S. $5.00. You cannot recover any other damages, including\ + \ consequential, lost profits, special, indirect or incidental damages.\n\nThis limitation\ + \ applies to\n\n· anything related to the software, services, content (including\ + \ code) on third party Internet sites, or third party programs; and\n\n· claims for\ + \ breach of contract, breach of warranty, guarantee or condition, strict liability, negligence,\ + \ or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft\ + \ knew or should have known about the possibility of the damages. The above limitation or\ + \ exclusion may not apply to you because your country may not allow the exclusion or limitation\ + \ of incidental, consequential or other damages." json: ms-asp-net-web-pages-2.json - yml: ms-asp-net-web-pages-2.yml + yaml: ms-asp-net-web-pages-2.yml html: ms-asp-net-web-pages-2.html - text: ms-asp-net-web-pages-2.LICENSE + license: ms-asp-net-web-pages-2.LICENSE - license_key: ms-asp-net-web-pages-templates + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-asp-net-web-pages-templates other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT ASP .NET WEB PAGES TEMPLATES\nThese license\ + \ terms are an agreement between Microsoft Corporation (or based on where you live, one\ + \ of its affiliates) and you. Please read them. They apply to the software named above,\ + \ which includes the media on which you received it, if any. The terms also apply to any\ + \ Microsoft\nupdates,\nsupplements,\nInternet-based services, and\nsupport services\nfor\ + \ this software, unless other terms accompany those items. If so, those terms apply.\nBy\ + \ using the software, you accept these terms. If you do not accept them, do not use the\ + \ software.\nIf you comply with these license terms, you have the rights below.\n1. INSTALLATION\ + \ AND USE RIGHTS. You may install and use any number of copies of the software on your devices\ + \ to design, develop and test your programs.\n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR\ + \ USE RIGHTS.\na. Distributable Code. The software contains code that you are permitted\ + \ to distribute in programs you develop if you comply with the terms below.\ni. Right to\ + \ Use and Distribute. The code and text files listed below are “Distributable Code.”\nSample\ + \ Code. You may modify, copy, and distribute the source and object code form of code marked\ + \ as “sample.”\nIcons. You may copy and distribute the icons in the Image Library as described\ + \ in the software documentation.\nThird Party Distribution. You may permit distributors\ + \ of your programs to copy and distribute the Distributable Code as part of those programs.\n\ + ii. Distribution Requirements. For any Distributable Code you distribute, you must\nadd\ + \ significant primary functionality to it in your programs;\nrequire distributors and external\ + \ end users to agree to terms that protect it at least as much as this agreement; \ndisplay\ + \ your valid copyright notice on your programs; and\nindemnify, defend, and hold harmless\ + \ Microsoft from any claims, including attorneys’ fees, related to the distribution or use\ + \ of your programs.\niii. Distribution Restrictions. You may not\nalter any copyright, trademark\ + \ or patent notice in the Distributable Code;\nuse Microsoft’s trademarks in your programs’\ + \ names or in a way that suggests your programs come from or are endorsed by Microsoft;\n\ + distribute Distributable Code to run on a platform other than the Windows platform;\ninclude\ + \ Distributable Code in malicious, deceptive or unlawful programs; or\nmodify or distribute\ + \ the source code of any Distributable Code so that any part of it becomes subject to an\ + \ Excluded License. An Excluded License is one that requires, as a condition of use, modification\ + \ or distribution, that\nthe code be disclosed or distributed in source code form; or\n\ + others have the right to modify it.\n3. SCOPE OF LICENSE. The software is licensed, not\ + \ sold. This agreement only gives you some rights to use the software. Microsoft reserves\ + \ all other rights. Unless applicable law gives you more rights despite this limitation,\ + \ you may use the software only as expressly permitted in this agreement. In doing so, you\ + \ must comply with any technical limitations in the software that only allow you to use\ + \ it in certain ways. You may not\nwork around any technical limitations in the software;\n\ + reverse engineer, decompile or disassemble the software, except and only to the extent that\ + \ applicable law expressly permits, despite this limitation;\nmake more copies of the software\ + \ than specified in this agreement or allowed by applicable law, despite this limitation;\n\ + publish the software for others to copy;\nrent, lease or lend the software;\ntransfer the\ + \ software or this agreement to any third party; or\nuse the software for commercial software\ + \ hosting services.\n4. BACKUP COPY. You may make one backup copy of the software. You may\ + \ use it only to reinstall the software.\n5. DOCUMENTATION. Any person that has valid access\ + \ to your computer or internal network may copy and use the documentation for your internal,\ + \ reference purposes.\n6. EXPORT RESTRICTIONS. The software is subject to United States\ + \ export laws and regulations. You must comply with all domestic and international export\ + \ laws and regulations that apply to the software. These laws include restrictions on destinations,\ + \ end users and end use. For additional information, see www.microsoft.com/exporting.\n\ + 7. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services\ + \ for it.\n8. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates,\ + \ Internet-based services and support services that you use, are the entire agreement for\ + \ the software and support services.\n9. APPLICABLE LAW.\na. United States. If you acquired\ + \ the software in the United States, Washington state law governs the interpretation of\ + \ this agreement and applies to claims for breach of it, regardless of conflict of laws\ + \ principles. The laws of the state where you live govern all other claims, including claims\ + \ under state consumer protection laws, unfair competition laws, and in tort.\nb. Outside\ + \ the United States. If you acquired the software in any other country, the laws of that\ + \ country apply.\n10. LEGAL EFFECT. This agreement describes certain legal rights. You may\ + \ have other rights under the laws of your country. You may also have rights with respect\ + \ to the party from whom you acquired the software. This agreement does not change your\ + \ rights under the laws of your country if the laws of your country do not permit it to\ + \ do so.\n11. DISCLAIMER OF WARRANTY. The software is licensed “as-is.” You bear the risk\ + \ of using it. Microsoft gives no express warranties, guarantees or conditions. You may\ + \ have additional consumer rights under your local laws which this agreement cannot change.\ + \ To the extent permitted under your local laws, Microsoft excludes the implied warranties\ + \ of merchantability, fitness for a particular purpose and non-infringement.\n12. LIMITATION\ + \ ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers\ + \ only direct damages up to U.S. $5.00. You cannot recover any other damages, including\ + \ consequential, lost profits, special, indirect or incidental damages.\nThis limitation\ + \ applies to\nanything related to the software, services, content (including code) on third\ + \ party Internet sites, or third party programs; and\nclaims for breach of contract, breach\ + \ of warranty, guarantee or condition, strict liability, negligence, or other tort to the\ + \ extent permitted by applicable law.\nIt also applies even if Microsoft knew or should\ + \ have known about the possibility of the damages. The above limitation or exclusion may\ + \ not apply to you because your country may not allow the exclusion or limitation of incidental,\ + \ consequential or other damages.\nPlease note: As this software is distributed in Quebec,\ + \ Canada, some of the clauses in this agreement are provided below in French.\nRemarque\ + \ : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat\ + \ sont fournies ci-dessous en français.\nEXONÉRATION DE GARANTIE. Le logiciel visé par une\ + \ licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque\ + \ et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de\ + \ droits additionnels en vertu du droit local sur la protection des consommateurs, que ce\ + \ contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties\ + \ implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon\ + \ sont exclues.\nLIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES\ + \ DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en\ + \ cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à\ + \ aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects\ + \ ou accessoires et pertes de bénéfices.\nCette limitation concerne :\ntout ce qui est relié\ + \ au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet\ + \ tiers ou dans des programmes tiers ; et\nles réclamations au titre de violation de contrat\ + \ ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute\ + \ dans la limite autorisée par la loi en vigueur.\nElle s’applique également, même si Microsoft\ + \ connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise\ + \ pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires\ + \ ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus\ + \ ne s’appliquera pas à votre égard.\nEFFET JURIDIQUE. Le présent contrat décrit certains\ + \ droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays.\ + \ Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays\ + \ si celles-ci ne le permettent pas." json: ms-asp-net-web-pages-templates.json - yml: ms-asp-net-web-pages-templates.yml + yaml: ms-asp-net-web-pages-templates.yml html: ms-asp-net-web-pages-templates.html - text: ms-asp-net-web-pages-templates.LICENSE + license: ms-asp-net-web-pages-templates.LICENSE - license_key: ms-azure-data-studio + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-azure-data-studio other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + MICROSOFT SOFTWARE LICENSE TERMS + + MICROSOFT AZURE DATA STUDIO + + Microsoft Corporation ("Microsoft") grants you a nonexclusive, perpetual, + royalty-free right to use, copy, and modify the software code provided by us + ("Software Code"). You may not sublicense the Software Code or any use of it + (except to your affiliates and to vendors to perform work on your behalf) + through distribution, network access, service agreement, lease, rental, or + otherwise. Unless applicable law gives you more rights, Microsoft reserves all + other rights not expressly granted herein, whether by implication, estoppel or + otherwise. + + THE SOFTWARE CODE 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 MICROSOFT OR ITS LICENSORS + 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 THE + SAMPLE CODE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. json: ms-azure-data-studio.json - yml: ms-azure-data-studio.yml + yaml: ms-azure-data-studio.yml html: ms-azure-data-studio.html - text: ms-azure-data-studio.LICENSE + license: ms-azure-data-studio.LICENSE - license_key: ms-azure-spatialanchors-2.9.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-azure-spatialanchors-2.9.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT AZURE SPATIAL ANCHORS\n________________________________________\n\ + These license terms are an agreement between you and Microsoft Corporation (or one of its\ + \ affiliates). They apply to the software named above and any Microsoft services or software\ + \ updates (except to the extent such services or updates are accompanied by new or additional\ + \ terms, in which case those different terms apply prospectively and do not alter your or\ + \ Microsoft's rights relating to pre-updated software or services). IF YOU COMPLY WITH THESE\ + \ LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS.\n\ + \n1. INSTALLATION AND USE RIGHTS.\n\na) General. You may install and use any number of copies\ + \ of the software to develop and test your applications.\n\nb) Third Party Components. The\ + \ software may include third party components with separate legal notices or governed by\ + \ other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the\ + \ software.\n\n2. DISTRIBUTABLE CODE. The software may contain code you are permitted to\ + \ distribute (i.e. make available for third parties) in applications you develop, as described\ + \ in this Section.\n\na) Distribution Rights. The code and test files described below are\ + \ distributable if included with the software.\ni. Distributables. You may copy and distribute\ + \ the object code form of the software listed in the distributables file list in the software;\n\ + ii. Image Library. You may copy and distribute images, graphics, and animations in the Image\ + \ Library as described in the software documentation;\niii. Sample Code, Templates, and\ + \ Styles. You may copy, modify, and distribute the source and object code form of code marked\ + \ as \"sample\", \"template\", \"simple styles\", and \"sketch styles\"; and\niv. Third\ + \ Party Distribution. You may permit distributors of your applications to copy and distribute\ + \ any of this distributable code you elect to distribute with your applications.\n\nb) Distribution\ + \ Requirements. For any code you distribute, you must:\ni. add significant primary functionality\ + \ to it in your applications;\nii. require distributors and external end users to agree\ + \ to terms that protect it and Microsoft at least as much as this agreement; and\niii. indemnify,\ + \ defend, and hold harmless Microsoft from any claims, including attorneys' fees, related\ + \ to the distribution or use of your applications, except to the extent that any claim is\ + \ based solely on the unmodified distributable code.\n\nc) Distribution Restrictions. You\ + \ may not:\ni. use Microsoft's trademarks or trade dress in your application in any way\ + \ that suggests your application comes from or is endorsed by Microsoft; or\nii. modify\ + \ or distribute the source code of any distributable code so that any part of it becomes\ + \ subject to any license that requires that the distributable code, any other part of the\ + \ software, or any of Microsoft's other intellectual property be disclosed or distributed\ + \ in source code form, or that others have the right to modify it.\n\n3. SCOPE OF LICENSE.\ + \ The software is licensed, not sold. Microsoft reserves all other rights. Unless applicable\ + \ law gives you more rights despite this limitation, you will not (and have no right to):\n\ + \na) work around any technical limitations in the software that only allow you to use it\ + \ in certain ways;\n\nb) reverse engineer, decompile or disassemble the software, or otherwise\ + \ attempt to derive the source code for the software, except and to the extent required\ + \ by third party licensing terms governing use of certain open source components that may\ + \ be included in the software;\n\nc) remove, minimize, block, or modify any notices of Microsoft\ + \ or its suppliers in the software;\n\nd) use the software in any way that is against the\ + \ law or to create or propagate malware; or\n\ne) share, publish, distribute, or lease the\ + \ software (except for any distributable code, subject to the terms above), provide the\ + \ software as a stand-alone offering for others to use, or transfer the software or this\ + \ agreement to any third party.\n\n4. DATA.\n\na) Data Collection. The software may collect\ + \ information about you and your use of the software, and send that to Microsoft. Microsoft\ + \ may use this information to provide services and improve our products and services. You\ + \ may opt-out of many of these scenarios, but not all, as described in the product documentation.\ + \ There are also some features in the software that may enable you to collect data from\ + \ users of your applications. If you use these features to enable data collection in your\ + \ applications, you must comply with applicable law, including providing appropriate notices\ + \ to users of your applications. You can learn more about data collection and use in the\ + \ help documentation and the privacy statement at https://aka.ms/privacy. Your use of the\ + \ software operates as your consent to these practices.\n\nb) Processing of Personal Data.\ + \ To the extent Microsoft is a processor or subprocessor of personal data in connection\ + \ with the software, Microsoft makes the commitments in the European Union General Data\ + \ Protection Regulation Terms of the Online Services Terms to all customers effective May\ + \ 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr.\n\n5. EXPORT RESTRICTIONS. You\ + \ must comply with all domestic and international export laws and regulations that apply\ + \ to the software, which include restrictions on destinations, end users, and end use. For\ + \ further information on export restrictions, visit https://aka.ms/exporting.\n\n6. SUPPORT\ + \ SERVICES. Microsoft is not obligated under this agreement to provide any support services\ + \ for the software. Any support provided is \"as is\", \"with all faults\", and without\ + \ warranty of any kind.\n\n7. UPDATES. The software may periodically check for updates,\ + \ and download and install them for you. You may obtain updates only from Microsoft or authorized\ + \ sources. Microsoft may need to update your system to provide you with updates. You agree\ + \ to receive these automatic updates without any additional notice. Updates may not include\ + \ or support all existing software features, services, or peripheral devices.\n\n8. TERMINATION.\ + \ Without prejudice to any other rights, Microsoft may terminate this agreement if you fail\ + \ to comply with any of its terms or conditions. In such event, you must destroy all copies\ + \ of the software and all of its component parts.\n\n9. ENTIRE AGREEMENT. This agreement,\ + \ and any other terms Microsoft may provide for supplements, updates, or third-party applications,\ + \ is the entire agreement for the software.\n\n10. APPLICABLE LAW AND PLACE TO RESOLVE DISPUTES.\ + \ If you acquired the software in the United States or Canada, the laws of the state or\ + \ province where you live (or, if a business, where your principal place of business is\ + \ located) govern the interpretation of this agreement, claims for its breach, and all other\ + \ claims (including consumer protection, unfair competition, and tort claims), regardless\ + \ of conflict of laws principles. If you acquired the software in any other country, its\ + \ laws apply. If U.S. federal jurisdiction exists, you and Microsoft consent to exclusive\ + \ jurisdiction and venue in the federal court in King County, Washington for all disputes\ + \ heard in court. If not, you and Microsoft consent to exclusive jurisdiction and venue\ + \ in the Superior Court of King County, Washington for all disputes heard in court.\n\n\ + 11. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights.\ + \ You may have other rights, including consumer rights, under the laws of your state or\ + \ country. Separate and apart from your relationship with Microsoft, you may also have rights\ + \ with respect to the party from which you acquired the software. This agreement does not\ + \ change those other rights if the laws of your state or country do not permit it to do\ + \ so. For example, if you acquired the software in one of the below regions, or mandatory\ + \ country law applies, then the following provisions apply to you:\n\na) Australia. You\ + \ have statutory guarantees under the Australian Consumer Law and nothing in this agreement\ + \ is intended to affect those rights.\n\nb) Canada. If you acquired this software in Canada,\ + \ you may stop receiving updates by turning off the automatic update feature, disconnecting\ + \ your device from the Internet (if and when you re-connect to the Internet, however, the\ + \ software will resume checking for and installing updates), or uninstalling the software.\ + \ The product documentation, if any, may also specify how to turn off updates for your specific\ + \ device or software.\n\nc) Germany and Austria.\ni.\tWarranty. The properly licensed software\ + \ will perform substantially as described in any Microsoft materials that accompany the\ + \ software. However, Microsoft gives no contractual guarantee in relation to the licensed\ + \ software.\nii.\tLimitation of Liability. In case of intentional conduct, gross negligence,\ + \ claims based on the Product Liability Act, as well as, in case of death or personal or\ + \ physical injury, Microsoft is liable according to the statutory law.\nSubject to the foregoing\ + \ clause ii., Microsoft will only be liable for slight negligence if Microsoft is in breach\ + \ of such material contractual obligations, the fulfillment of which facilitate the due\ + \ performance of this agreement, the breach of which would endanger the purpose of this\ + \ agreement and the compliance with which a party may constantly trust in (so-called \"\ + cardinal obligations\"). In other cases of slight negligence, Microsoft will not be liable\ + \ for slight negligence.\n\n12. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS IS.\"\ + \ YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES, OR CONDITIONS.\ + \ TO THE EXTENT PERMITTED UNDER APPLICABLE LAWS, MICROSOFT EXCLUDES ALL IMPLIED WARRANTIES,\ + \ INCLUDING MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.\n\n\ + 13. LIMITATION ON AND EXCLUSION OF DAMAGES. IF YOU HAVE ANY BASIS FOR RECOVERING DAMAGES\ + \ DESPITE THE PRECEDING DISCLAIMER OF WARRANTY, YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS\ + \ ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING\ + \ CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT, OR INCIDENTAL DAMAGES.\nThis limitation\ + \ applies to (a) anything related to the software, services, content (including code) on\ + \ third party Internet sites, or third party applications; and (b) claims for breach of\ + \ contract, warranty, guarantee, or condition; strict liability, negligence, or other tort;\ + \ or any other claim; in each case to the extent permitted by applicable law.\nIt also applies\ + \ even if Microsoft knew or should have known about the possibility of the damages. The\ + \ above limitation or exclusion may not apply to you because your state, province, or country\ + \ may not allow the exclusion or limitation of incidental, consequential, or other damages.\n\ + \nPlease note: As this software is distributed in Canada, some of the clauses in this agreement\ + \ are provided below in French.\nRemarque: Ce logiciel étant distribué au Canada, certaines\ + \ des clauses dans ce contrat sont fournies ci-dessous en français.\nEXONÉRATION DE GARANTIE.\ + \ Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel\ + \ est à votre seule risque et péril. Microsoft n'accorde aucune autre garantie expresse.\ + \ Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection\ + \ des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit\ + \ locale, les garanties implicites de qualité marchande, d'adéquation à un usage particulier\ + \ et d'absence de contrefaçon sont exclues.\nLIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION\ + \ DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs\ + \ une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne\ + \ pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages\ + \ spéciaux, indirects ou accessoires et pertes de bénéfices.\nCette limitation concerne:\n\ + •\ttout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant\ + \ sur des sites Internet tiers ou dans des programmes tiers; et\n•\tles réclamations au\ + \ titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de\ + \ négligence ou d'une autre faute dans la limite autorisée par la loi en vigueur.\nElle\ + \ s'applique également, même si Microsoft connaissait ou devrait connaître l'éventualité\ + \ d'un tel dommage. Si votre pays n'autorise pas l'exclusion ou la limitation de responsabilité\ + \ pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut\ + \ que la limitation ou l'exclusion ci-dessus ne s'appliquera pas à votre égard.\nEFFET JURIDIQUE.\ + \ Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d'autres droits\ + \ prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous\ + \ confèrent les lois de votre pays si celles-ci ne le permettent pas." json: ms-azure-spatialanchors-2.9.0.json - yml: ms-azure-spatialanchors-2.9.0.yml + yaml: ms-azure-spatialanchors-2.9.0.yml html: ms-azure-spatialanchors-2.9.0.html - text: ms-azure-spatialanchors-2.9.0.LICENSE + license: ms-azure-spatialanchors-2.9.0.LICENSE - license_key: ms-capicom + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-capicom other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT CAPICOM\nThese license terms are an agreement\ + \ between Microsoft Corporation (or based on where you live, one of its affiliates) and\ + \ you. Please read them. They apply to the software named above, which includes the media\ + \ on which you received it, if any. The terms also apply to any Microsoft\n· updates,\n\ + · supplements,\n· Internet-based services, and\n· support services\nfor\ + \ this software, unless other terms accompany those items. If so, those terms apply.\n\ + BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE\ + \ SOFTWARE.\nIf you comply with these license terms, you have the rights below.\n1. \ + \ INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software\ + \ on your devices running validly licensed copies of Windows 2000, Windows XP, Windows Vista,\ + \ or Windows Server 2003.\n2. Scope of License. The software is licensed, not sold.\ + \ This agreement only gives you some rights to use the software. Microsoft reserves all\ + \ other rights. Unless applicable law gives you more rights despite this limitation, you\ + \ may use the software only as expressly permitted in this agreement. In doing so, you\ + \ must comply with any technical limitations in the software that only allow you to use\ + \ it in certain ways. You may not\n· work around any technical limitations in the\ + \ software;\n· reverse engineer, decompile or disassemble the software, except and\ + \ only to the extent that applicable law expressly permits, despite this limitation;\n·\ + \ make more copies of the software than specified in this agreement or allowed by\ + \ applicable law, despite this limitation;\n· publish the software for others to copy;\n\ + · rent, lease or lend the software; or\n· use the software for commercial software\ + \ hosting services.\n3. BACKUP COPY. You may make one backup copy of the software.\ + \ You may use it only to reinstall the software.\n4. DOCUMENTATION. Any person that\ + \ has valid access to your computer or internal network may copy and use the documentation\ + \ for your internal, reference purposes.\n5. TRANSFER TO A THIRD PARTY. The first\ + \ user of the software may transfer it and this agreement directly to a third party. Before\ + \ the transfer, that party must agree that this agreement applies to the transfer and use\ + \ of the software. The first user must uninstall the software before transferring it separately\ + \ from the device. The first user may not retain any copies.\n6. Export Restrictions.\ + \ The software is subject to United States export laws and regulations. You must comply\ + \ with all domestic and international export laws and regulations that apply to the software.\ + \ These laws include restrictions on destinations, end users and end use. For additional\ + \ information, see www.microsoft.com/exporting .\n7.\ + \ SUPPORT SERVICES. Because this software is as is, we may not provide support services\ + \ for it.\n8. Entire Agreement. This agreement, and the terms for supplements, updates,\ + \ Internet-based services and support services that you use, are the entire agreement for\ + \ the software and support services.\n9. Applicable Law.\na. United States. If\ + \ you acquired the software in the United States, Washington state law governs the interpretation\ + \ of this agreement and applies to claims for breach of it, regardless of conflict of laws\ + \ principles. The laws of the state where you live govern all other claims, including claims\ + \ under state consumer protection laws, unfair competition laws, and in tort.\nb. Outside\ + \ the United States. If you acquired the software in any other country, the laws of that\ + \ country apply.\n10. Legal Effect. This agreement describes certain legal rights.\ + \ You may have other rights under the laws of your country. You may also have rights with\ + \ respect to the party from whom you acquired the software. This agreement does not change\ + \ your rights under the laws of your country if the laws of your country do not permit it\ + \ to do so.\n11. Disclaimer of Warranty. The software is licensed as-is. You bear\ + \ the risk of using it. Microsoft gives no express warranties, guarantees or conditions.\ + \ You may have additional consumer rights under your local laws which this agreement cannot\ + \ change. To the extent permitted under your local laws, Microsoft excludes the implied\ + \ warranties of merchantability, fitness for a particular purpose and non-infringement.\n\ + 12. Limitation on and Exclusion of Remedies and Damages. You can recover from Microsoft\ + \ and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other\ + \ damages, including consequential, lost profits, special, indirect or incidental damages.\n\ + This limitation applies to\n· anything related to the software, services, content\ + \ (including code) on third party Internet sites, or third party programs; and\n· \ + \ claims for breach of contract, breach of warranty, guarantee or condition, strict liability,\ + \ negligence, or other tort to the extent permitted by applicable law.\nIt also applies\ + \ even if Microsoft knew or should have known about the possibility of the damages. The\ + \ above limitation or exclusion may not apply to you because your country may not allow\ + \ the exclusion or limitation of incidental, consequential or other damages.\nPlease note:\ + \ As this software is distributed in Quebec, Canada, some of the clauses in this agreement\ + \ are provided below in French.\nRemarque : Ce logiciel étant distribué au Québec, Canada,\ + \ certaines des clauses dans ce contrat sont fournies ci-dessous en français.\nEXONÉRATION\ + \ DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation\ + \ de ce logiciel est à votre seule risque et péril. Microsoft n\x92accorde aucune autre\ + \ garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local\ + \ sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont\ + \ permises par le droit locale, les garanties implicites de qualité marchande, d\x92adéquation\ + \ à un usage particulier et d\x92absence de contrefaçon sont exclues.\nLIMITATION DES DOMMAGES-INTÉRÊTS\ + \ ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et\ + \ de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur\ + \ de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages,\ + \ y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices.\nCette\ + \ limitation concerne:\n· tout ce qui est relié au logiciel, aux services ou au contenu\ + \ (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers;\ + \ et\n· les réclamations au titre de violation de contrat ou de garantie, ou au titre\ + \ de responsabilité stricte, de négligence ou d\x92une autre faute dans la limite autorisée\ + \ par la loi en vigueur.\nElle s\x92applique également, même si Microsoft connaissait ou\ + \ devrait connaître l\x92éventualité d\x92un tel dommage. Si votre pays n\x92autorise pas\ + \ l\x92exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires\ + \ ou de quelque nature que ce soit, il se peut que la limitation ou l\x92exclusion ci-dessus\ + \ ne s\x92appliquera pas à votre égard.\nEFFET JURIDIQUE. Le présent contrat décrit certains\ + \ droits juridiques. Vous pourriez avoir d\x92autres droits prévus par les lois de votre\ + \ pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre\ + \ pays si celles-ci ne le permettent pas." json: ms-capicom.json - yml: ms-capicom.yml + yaml: ms-capicom.yml html: ms-capicom.html - text: ms-capicom.LICENSE + license: ms-capicom.LICENSE - license_key: ms-cl + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-ms-cl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Microsoft Shared Source Community License (MS-CL) + Published: October 18, 2005 + + This license governs use of the accompanying software. If you use the software, + you accept this license. If you do not accept the license, do not use the + software. + + 1. Definitions + + The terms "reproduce," "reproduction" and "distribution" have the same meaning + here as under U.S. copyright law. + + "You" means the licensee of the software. + + "Larger work" means the combination of the software and any additions or + modifications to the software. + + "Licensed patents" means any Licensor patent claims which read directly on the + software as distributed by the Licensor under this license. + + + 2. Grant of Rights + + (A) Copyright Grant- Subject to the terms of this license, including the + license conditions and limitations in section 3, the Licensor grants you a + non-exclusive, worldwide, royalty-free copyright license to reproduce the + software, prepare derivative works of the software and distribute the software + or any derivative works that you create. + + (B) Patent Grant- Subject to the terms of this license, including the license + conditions and limitations in section 3, the Licensor grants you a non-exclusive, + worldwide, royalty-free patent license under licensed patents to make, have + made, use, practice, sell, and offer for sale, and/or otherwise dispose of the + software or derivative works of the software. + + + 3. Conditions and Limitations + + (A) Reciprocal Grants- Your rights to reproduce and distribute the software (or + any part of the software), or to create and distribute derivative works of the + software, are conditioned on your licensing the software or any larger work you + create under the following terms: + + 1. If you distribute the larger work as a series of files, you must grant all + recipients the copyright and patent licenses in sections 2(A) & 2(B) for + any file that contains code from the software. You must also provide + recipients the source code to any such files that contain code from the + software along with a copy of this license. Any other files which are + entirely your own work and which do not contain any code from the software + may be licensed under any terms you choose. + + 2. If you distribute the larger work as a single file, then you must grant + all recipients the rights set out in sections 2(A) & 2(B) for the entire + larger work. You must also provide recipients the source code to the + larger work along with a copy of this license. + + (B) No Trademark License- This license does not grant you any rights to use the Licensor’s name, logo, or trademarks. + + (C) If you distribute the software in source code form you may do so only under + this license (i.e., you must include a complete copy of this license with your + distribution), and if you distribute the software solely in compiled or object + code form you may only do so under a license that complies with this license. + + (D) If you begin patent litigation against the Licensor over patents that you + think may apply to the software (including a cross-claim or counterclaim in a + lawsuit), your license to the software ends automatically. + + (E) The software is licensed "as-is." You bear the risk of using it. The Licensor + gives no express warranties, guarantees or conditions. You may have additional + consumer rights under your local laws which this license cannot change. To the + extent permitted under your local laws, the Licensor excludes the implied + warranties of merchantability, fitness for a particular purpose and + non-infringement. json: ms-cl.json - yml: ms-cl.yml + yaml: ms-cl.yml html: ms-cl.html - text: ms-cl.LICENSE + license: ms-cl.LICENSE - license_key: ms-cla + category: Patent License spdx_license_key: LicenseRef-scancode-ms-cla other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: "Contribution License Agreement\n\nThis Contribution License Agreement (“Agreement”)\ + \ is agreed to by the party signing below (“You”), and conveys certain license rights to\ + \ Microsoft Corporation and its affiliates (“Microsoft”) for Your contributions to Microsoft\ + \ open source projects. \nThis Agreement is effective as of the latest signature date below.\n\ + \n1. Definitions.\n\n“Code” means the computer software code, whether in human-readable\ + \ or machine-executable form,\nthat is delivered by You to Microsoft under this Agreement.\n\ + \n“Project” means any of the projects owned or managed by Microsoft in which software is\ + \ offered under a license approved by the Open Source Initiative (OSI) (www.opensource.org)\ + \ and documentation offered under an OSI or a Creative Commons license (https://creativecommons.org/licenses).\n\ + \n“Submit” is the act of uploading, submitting, transmitting, or distributing code or other\ + \ content to any Project, 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 Project for the purpose of discussing and improving that Project, but\ + \ excluding communication that is conspicuously marked or otherwise designated in writing\ + \ by You as “Not a Submission.”\n\n“Submission” means the Code and any other copyrightable\ + \ material Submitted by You, including any associated comments and documentation.\n\n2.\ + \ Your Submission. You must agree to the terms of this Agreement before making a Submission\ + \ to any Project. This Agreement covers any and all Submissions that You, now or in the\ + \ future (except as described in Section 4 below), Submit to any Project.\n\n3. Originality\ + \ of Work. You represent that each of Your Submissions is entirely Your original work. Should\ + \ You wish to Submit materials that are not Your original work, You may Submit them separately\ + \ to the Project if You (a) retain all copyright and license information that was in the\ + \ materials as You received them, (b) in the description accompanying Your Submission, include\ + \ the phrase “Submission containing materials of a third party:” followed by the names of\ + \ the third party and any licenses or other restrictions of which You are aware, and (c)\ + \ follow any other instructions in the Project’s written guidelines concerning Submissions.\n\ + \n4. Your Employer. References to “employer” in this Agreement include Your employer or\ + \ anyone else for whom You are acting in making Your Submission, e.g. as a contractor, vendor,\ + \ or agent. If Your Submission is made in the course of Your work for an employer or Your\ + \ employer has intellectual property rights in Your Submission by contract or applicable\ + \ law, You must secure permission from Your employer to make the Submission before signing\ + \ this Agreement. In that case, the term “You” in this Agreement will refer to You and the\ + \ employer collectively. If You change employers in the future and desire to Submit additional\ + \ Submissions for the new employer, then You agree to sign a new Agreement and secure permission\ + \ from the new employer before Submitting those Submissions.\n\n5. Licenses.\n\na. Copyright\ + \ License. You grant Microsoft, and those who receive the Submission directly or indirectly\ + \ from Microsoft, a perpetual, worldwide, non-exclusive, royalty-free, irrevocable license\ + \ in the Submission to reproduce, prepare derivative works of, publicly display, publicly\ + \ perform, and distribute the Submission and such derivative works, and to sublicense any\ + \ or all of the foregoing rights to third parties.\n\nb. Patent License. You grant Microsoft,\ + \ and those who receive the Submission directly or indirectly from Microsoft, a perpetual,\ + \ worldwide, non-exclusive, royalty-free, irrevocable license under Your patent claims that\ + \ are necessarily infringed by the Submission or the combination of the Submission with\ + \ the Project to which it was Submitted to make, have made, use, offer to sell, sell and\ + \ import or otherwise dispose of the Submission alone or with the Project.\n\nc. Other Rights\ + \ Reserved. Each party reserves all rights not expressly granted in this Agreement. No additional\ + \ licenses or rights whatsoever (including, without limitation, any implied licenses) are\ + \ granted by implication, exhaustion, estoppel or otherwise.\n\n6. Representations and Warranties.\ + \ You represent that You are legally entitled to grant the above licenses. You represent\ + \ that each of Your Submissions is entirely Your original work (except as You may have disclosed\ + \ under Section 3). You represent that You have secured permission from Your employer to\ + \ make the Submission in cases where Your Submission is made in the course of Your work\ + \ for Your employer or Your employer has intellectual property rights in Your Submission\ + \ by contract or applicable law. If You are signing this Agreement on behalf of Your employer,\ + \ You represent and warrant that You have the necessary authority to bind the listed employer\ + \ to the obligations contained in this Agreement. You are not expected to provide support\ + \ for Your Submission, unless You choose to do so. UNLESS REQUIRED BY APPLICABLE LAW OR\ + \ AGREED TO IN WRITING, AND EXCEPT FOR THE WARRANTIES EXPRESSLY STATED IN SECTIONS 3, 4,\ + \ AND 6, THE SUBMISSION PROVIDED UNDER THIS AGREEMENT IS PROVIDED WITHOUT WARRANTY OF ANY\ + \ KIND, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY OF NONINFRINGEMENT, MERCHANTABILITY,\ + \ OR FITNESS FOR A PARTICULAR PURPOSE.\n\n7. Notice to Microsoft. You agree to notify Microsoft\ + \ in writing of any facts or circumstances of which You later become aware that would make\ + \ Your representations in this Agreement inaccurate in any respect.\n\n8. Information about\ + \ Submissions. You agree that contributions to Projects and information about contributions\ + \ may be maintained indefinitely and disclosed publicly, including Your name and other information\ + \ that You submit with Your Submission.\n\n9. Governing Law/Jurisdiction. This Agreement\ + \ is governed by the laws of the State of Washington, and the parties consent to exclusive\ + \ jurisdiction and venue in the federal courts sitting in King County, Washington, unless\ + \ no federal subject matter jurisdiction exists, in which case the parties consent to exclusive\ + \ jurisdiction and venue in the Superior Court of King County, Washington. The parties waive\ + \ all defenses of lack of personal jurisdiction and forum non-conveniens.\n\n10. Entire\ + \ Agreement/Assignment. This Agreement is the entire agreement between the parties, and\ + \ supersedes any and all prior agreements, understandings or communications, written or\ + \ oral, between the parties relating to the subject matter hereof. This Agreement may be\ + \ assigned by Microsoft." json: ms-cla.json - yml: ms-cla.yml + yaml: ms-cla.yml html: ms-cla.html - text: ms-cla.LICENSE + license: ms-cla.LICENSE - license_key: ms-control-spy-2.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-control-spy-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT CONTROL SPY 2.0 \nThese license terms are\ + \ an agreement between Microsoft Corporation (or based on where you live, one of its affiliates)\ + \ and you. Please read them. They apply to the software named above, which includes the\ + \ media on which you received it, if any. The terms also apply to any Microsoft\n·\tupdates,\n\ + ·\tsupplements,\n·\tInternet-based services, and \n·\tsupport services\nfor this software,\ + \ unless other terms accompany those items. If so, those terms apply.\nBy using the software,\ + \ you accept these terms. If you do not accept them, do not use the software.\nIf you comply\ + \ with these license terms, you have the rights below.\n1.\tINSTALLATION AND USE RIGHTS.\ + \ You may install and use any number of copies of the software on your devices running\ + \ validly licensed copies of Microsoft Windows XP Home Edition, Microsoft Windows XP Professional,\ + \ Microsoft Windows XP Media Center, and Microsoft Windows XP Tablet PC Edition.\n2.\tScope\ + \ of License. The software is licensed, not sold. This agreement only gives you some rights\ + \ to use the software. Microsoft reserves all other rights. Unless applicable law gives\ + \ you more rights despite this limitation, you may use the software only as expressly permitted\ + \ in this agreement. In doing so, you must comply with any technical limitations in the\ + \ software that only allow you to use it in certain ways. For more information, see www.microsoft.com/licensing/userights\ + \ . You may not\n·\twork around any technical\ + \ limitations in the software;\n·\treverse engineer, decompile or disassemble the software,\ + \ except and only to the extent that applicable law expressly permits, despite this limitation;\n\ + ·\tmake more copies of the software than specified in this agreement or allowed by applicable\ + \ law, despite this limitation;\n·\tpublish the software for others to copy;\n·\trent, lease\ + \ or lend the software; or\n·\tuse the software for commercial software hosting services.\n\ + 3.\tBACKUP COPY. You may make one backup copy of the software. You may use it only to\ + \ reinstall the software.\n4.\tDOCUMENTATION. Any person that has valid access to your\ + \ computer or internal network may copy and use the documentation for your internal, reference\ + \ purposes.\n5.\tTRANSFER TO ANOTHER DEVICE. You may uninstall the software and install\ + \ it on another device for your use. You may not do so to share this license between devices.\n\ + 6.\tTRANSFER TO A THIRD PARTY. The first user of the software may transfer it and this\ + \ agreement directly to a third party. Before the transfer, that party must agree that\ + \ this agreement applies to the transfer and use of the software. The first user must uninstall\ + \ the software before transferring it separately from the device. The first user may not\ + \ retain any copies.\n7.\tExport Restrictions. The software is subject to United States\ + \ export laws and regulations. You must comply with all domestic and international export\ + \ laws and regulations that apply to the software. These laws include restrictions on destinations,\ + \ end users and end use. For additional information, see www.microsoft.com/exporting .\n\ + 8.\tSUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services\ + \ for it.\n9.\tEntire Agreement. This agreement, and the terms for supplements, updates,\ + \ Internet-based services and support services that you use, are the entire agreement for\ + \ the software and support services.\n10.\tApplicable Law.\na.\tUnited States. If you acquired\ + \ the software in the United States, Washington state law governs the interpretation of\ + \ this agreement and applies to claims for breach of it, regardless of conflict of laws\ + \ principles. The laws of the state where you live govern all other claims, including claims\ + \ under state consumer protection laws, unfair competition laws, and in tort.\nb.\tOutside\ + \ the United States. If you acquired the software in any other country, the laws of that\ + \ country apply.\n11.\tLegal Effect. This agreement describes certain legal rights. You\ + \ may have other rights under the laws of your country. You may also have rights with respect\ + \ to the party from whom you acquired the software. This agreement does not change your\ + \ rights under the laws of your country if the laws of your country do not permit it to\ + \ do so.\n12.\tDisclaimer of Warranty. The software is licensed \"as-is.\" You bear the\ + \ risk of using it. Microsoft gives no express warranties, guarantees or conditions. You\ + \ may have additional consumer rights under your local laws which this agreement cannot\ + \ change. To the extent permitted under your local laws, Microsoft excludes the implied\ + \ warranties of merchantability, fitness for a particular purpose and non-infringement.\n\ + 13.\tLimitation on and Exclusion of Remedies and Damages. You can recover from Microsoft\ + \ and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other\ + \ damages, including consequential, lost profits, special, indirect or incidental damages.\n\ + This limitation applies to\n·\tanything related to the software, services, content (including\ + \ code) on third party Internet sites, or third party programs; and\n·\tclaims for breach\ + \ of contract, breach of warranty, guarantee or condition, strict liability, negligence,\ + \ or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft\ + \ knew or should have known about the possibility of the damages. The above limitation\ + \ or exclusion may not apply to you because your country may not allow the exclusion or\ + \ limitation of incidental, consequential or other damages.\nPlease note: As this software\ + \ is distributed in Quebec, Canada, some of the clauses in this agreement are provided below\ + \ in French.\nRemarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses\ + \ dans ce contrat sont fournies ci-dessous en français.\nEXONÉRATION DE GARANTIE. Le logiciel\ + \ visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre\ + \ seule risque et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez\ + \ bénéficier de droits additionnels en vertu du droit local sur la protection dues consommateurs,\ + \ que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties\ + \ implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon\ + \ sont exclues.\nLIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES\ + \ DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en\ + \ cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à\ + \ aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects\ + \ ou accessoires et pertes de bénéfices.\nCette limitation concerne :\n·\ttout ce qui est\ + \ relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites\ + \ Internet tiers ou dans des programmes tiers ; et\n·\tles réclamations au titre de violation\ + \ de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une\ + \ autre faute dans la limite autorisée par la loi en vigueur.\nElle s’applique également,\ + \ même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si\ + \ votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages\ + \ indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation\ + \ ou l’exclusion ci-dessus ne s’appliquera pas à votre égard.\nEFFET JURIDIQUE. Le présent\ + \ contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus\ + \ par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent\ + \ les lois de votre pays si celles ci ne le permettent pas." json: ms-control-spy-2.0.json - yml: ms-control-spy-2.0.yml + yaml: ms-control-spy-2.0.yml html: ms-control-spy-2.0.html - text: ms-control-spy-2.0.LICENSE + license: ms-control-spy-2.0.LICENSE - license_key: ms-data-tier-af-2022 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-data-tier-af-2022 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + MICROSOFT SOFTWARE LICENSE TERMS + MICROSOFT SQL SERVER DATA-TIER APPLICATION FRAMEWORK + + These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft + + updates, + supplements, + Internet-based services, and + support services + for this software, unless other terms accompany those items. If so, those terms apply. + + BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE. + + If you comply with these license terms, you have the rights below. + + INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices to design, develop and test your programs. + + ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS. + a. Distributable Code. + i. Right to Use and Distribute. If you comply with the terms below: + + You may copy and distribute the object code form of the software ("Distributable Code") in programs you develop; and + You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs. + ii. Distribution Requirements. For any Distributable Code you distribute, you must + + add significant primary functionality to it in your programs; + for any Distributable Code having a filename extension of .lib, distribute only the results of running such Distributable Code through a linker with your program; + distribute Distributable Code included in a setup program only as part of that setup program without modification; + require distributors and external end users to agree to terms that protect it at least as much as this agreement; + display your valid copyright notice on your programs; and + indemnify, defend, and hold harmless Microsoft from any claims, including attorneys' fees, related to the distribution or use of your programs. + iii. Distribution Restrictions. You may not + + alter any copyright, trademark or patent notice in the Distributable Code; + use Microsoft's trademarks in your programs' names or in a way that suggests your programs come from or are endorsed by Microsoft; + distribute Distributable Code to run on a platform other than the Windows platform; + include Distributable Code in malicious, deceptive or unlawful programs; or + modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that + the code be disclosed or distributed in source code form; or + others have the right to modify it. + SCOPE OF LICENSE. The software is licensed, not sold. Unless applicable law gives you more rights, Microsoft reserves all other rights not expressly granted under this agreement, whether by implication, estoppel or otherwise. You may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not + + work around any technical limitations in the software; + reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; + make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation; + publish the software for others to copy; + rent, lease or lend the software; + transfer the software or this agreement to any third party; or + use the software for commercial software hosting services. + THIRD PARTY NOTICES. The software may include third party code, that Microsoft, not the third party, licenses to you under the terms set forth in this agreement. Notices, if any, for any third party code are included for your information only. Additionally, any third party scripts, linked to, called or referenced from this software, are licensed to you by the third parties that own such code, not by Microsoft, see ASP.NET Ajax CDN Terms of Use: https://www.asp.net/ajaxlibrary/CDN.ashx. + + BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software. + + DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. + + EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see https://www.microsoft.com/exporting. + + SUPPORT SERVICES. Because this software is "as is," we may not provide support services for it. + + ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. + + APPLICABLE LAW. + + a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. + b. Outside the United States. If you acquired the software in any other country, the laws of that country apply. + + LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so. + + DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED "AS-IS." YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + + FOR AUSTRALIA - YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS. + + LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. + + This limitation applies to + + anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and + claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. + + Please note: As this software is distributed in Quebec, Canada, some of these license terms are provided below in French. + + Remarque : Ce logiciel étant distribué au Québec, Canada, les termes de cette licence sont fournis ci-dessous en français. + + EXCLUSIONS DE GARANTIE. Le logiciel est concédé sous licence « en l'état ». Vous assumez tous les risques liés à son utilisation. Microsoft n'accorde aucune garantie ou condition expresse. Vous pouvez bénéficier de droits des consommateurs supplémentaires ou de garanties statutaires dans le cadre du droit local, que ce contrat ne peut modifier. Lorsque cela est autorisé par le droit local, Microsoft exclut les garanties implicites de qualité, d'adéquation à un usage particulier et d'absence de contrefaçon. + + POUR L'AUSTRALIE - La loi australienne sur la consommation (Australian Consumer Law) vous accorde des garanties statutaires qu'aucun élément du présent accord ne peut affecter. + + LIMITATION ET EXCLUSION DE RECOURS ET DE DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs limitée uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices. + + Cette limitation concerne: + + toute affaire liée au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers et + + les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d'une autre faute dans la limite autorisée par la loi en vigueur. + + Elle s'applique également même si Microsoft connaissait l'éventualité d'un tel dommage. La limitation ou exclusion ci-dessus peut également ne pas vous être applicable, car votre pays n'autorise pas l'exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit. json: ms-data-tier-af-2022.json - yml: ms-data-tier-af-2022.yml + yaml: ms-data-tier-af-2022.yml html: ms-data-tier-af-2022.html - text: ms-data-tier-af-2022.LICENSE + license: ms-data-tier-af-2022.LICENSE - license_key: ms-developer-services-agreement + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-dev-services-agreement other_spdx_license_keys: - LicenseRef-scancode-ms-developer-services-agreement is_exception: no is_deprecated: no - category: Proprietary Free + text: "Microsoft Developer Services Agreement\nUpdated October, 2013\n\nThis agreement is\ + \ between you or the entity you represent and the Microsoft entity listed in Exhibit A,\ + \ and consists of the terms below, Exhibit A, Exhibit B, the SLAs, Offer Details for any\ + \ Service as published on the date of a Service purchase or renewal, terms incorporated\ + \ by reference, terms applicable to other Microsoft web sites and services that you use\ + \ and are necessary to use the Services (for example, your Microsoft Account) and, the Privacy\ + \ Statement (together, the \"Agreement\"). If you are entering into this Agreement on behalf\ + \ of an entity, such as your employer, you represent that you have the legal authority to\ + \ bind that entity. If you specify a company name in connection with signing up for or ordering\ + \ a Service, you will be deemed to have placed that order and to have entered into this\ + \ Agreement on behalf of that organization or company. Key terms are defined in Section\ + \ 11. In addition, if you are a Windows Azure customer, this Agreement supplements your\ + \ existing Windows Azure agreement and governs to the extent of any conflict with the Windows\ + \ Azure terms (except that the Windows Azure billing terms will continue to apply).\n\n\ + 1. Services.\nRight to use. We grant you the right to access and use the Services in accordance\ + \ with this Agreement.\nUser Plan. Each user of the Visual Studio Online portion of the\ + \ Developer Services must be allocated an individual User Plan, whether they access the\ + \ service directly or indirectly.\nManner of use. You may not:\nreverse engineer, decompile,\ + \ disassemble or work around technical limitations in the Services, except to the extent\ + \ that applicable law permits it despite these limitations;\ndisable, tamper with or otherwise\ + \ attempt to circumvent any mechanism that limits your use of the Services;\nrent, lease,\ + \ lend, resell, transfer, or sublicense any Services or portion thereof to or for third\ + \ parties, except as explicitly permitted herein or in license terms that accompany any\ + \ Services component;\nuse the Services for any purpose that is unlawful or prohibited by\ + \ this Agreement; or\nuse the Services in any manner that could damage, disable, overburden,\ + \ or impair any Microsoft service, or the network(s) connected to any Microsoft service,\ + \ or interfere with any other party’s use and enjoyment of any Services.\nUpdates. We may\ + \ make changes to the Services from time to time, including: the availability of features;\ + \ how long, how much or how often any given feature may be used; and feature dependencies\ + \ upon other services or software. We will provide you with prior notice before removing\ + \ any material feature or functionality of the Developer Services (excluding Previews),\ + \ unless security, legal, or system performance considerations require an expedited removal.\n\ + Preview features. We may make features available on a Preview basis. Previews are provided\ + \ \"AS-IS\" and are excluded from the SLAs and warranties in Section 7 below. Previews may\ + \ be subject to reduced or different security, compliance, privacy, availability, reliability,\ + \ and support commitments, as further explained in the Privacy Statement, and any additional\ + \ notices provided with the Preview. We may change or discontinue Previews at any time without\ + \ notice. We also may choose not to release a Preview into \"General Availability\", and\ + \ if we do make Previews \"Generally Available\" we may charge for any such features.\n\n\ + 2. Software.\nUsing Microsoft Software outside the Service. Microsoft may provide you with\ + \ Microsoft Software through or as a part of the Developer Services. Termination of use\ + \ of or access to the Developer Services or the termination of this Agreement terminates\ + \ your right to possess or use any such Microsoft Software; and the suspension or termination\ + \ of a User Plan terminates that user’s right to possess or use any such Microsoft Software\ + \ that was acquired through, is attached to, or otherwise requires that User Plan. You must\ + \ delete all copies of such Microsoft Software licensed under this Agreement and destroy\ + \ any associated media upon the termination of the associated possession or usage rights.\ + \ Microsoft may provide you with Microsoft Software for use outside the Developer Services\ + \ and with (1) the Developer Services or (2) programs you develop using the Developer Services.\ + \ If the Microsoft Software is provided with its own license terms, those terms control\ + \ as modified by the foregoing. If the Microsoft Software does not have its own license\ + \ terms, then you may install and use any number of copies of the Microsoft Software to\ + \ design, develop, and test your programs on devices. This subsection does not apply to\ + \ Microsoft Software addressed in subsection (b) below.\nSoftware on Documentation Portals.Software\ + \ accessible on the Documentation Portals is made available by the designated publisher\ + \ under the associated license terms. If Software is accessible on the Documentation Portals\ + \ without license terms, then subject subsection (c) below you may use it to design, develop,\ + \ and test your programs. If any such Software without license terms is marked as \"sample\"\ + \ or \"example,\" then you may use it under the terms of the Microsoft Limited Public License.\n\ + Scope of rights. All Microsoft Software are the copyrighted works of Microsoft or its suppliers.\ + \ All Microsoft Software are licensed not sold and may not be transferred unless specified\ + \ otherwise in any license terms provided with the Microsoft Software. Rights to access\ + \ Microsoft Software on any device do not give you any right to implement Microsoft patents\ + \ or other Microsoft intellectual property in software or devices that access that device.\n\ + Third party software. You are solely responsible for any third party software that you install,\ + \ connect, or use with any Service. We will not run or make any copies of such third party\ + \ software outside of our relationship with you. You may only install or use any third party\ + \ software with any Service in a way that does not subject our intellectual property or\ + \ technology to any terms governing such software. We are not a party to and are not bound\ + \ by any terms governing your use of any third party software. We do not grant any licenses\ + \ or rights, express or implied, to such third party software.\nOpen source software as\ + \ part of the Service. If the Service uses or distributes any third party software with\ + \ open source software license terms (\"Open Source\"), then such Open Source is licensed\ + \ to you by Microsoft solely to allow you to interact with the Service under terms of this\ + \ Agreement. Copies of those applicable Open Source licenses and any other notices, if any,\ + \ are included for your information only.\nApplication programming interfaces. Microsoft\ + \ will not assert any of its patent rights on account of your products calling application\ + \ programming interfaces that it publishes on the Documentation Portals (\"APIs\") in order\ + \ to receive services from the Microsoft product that exposes the APIs.\n\n3. Microsoft\ + \ Content.\nAll Microsoft Content is the copyrighted work of Microsoft or its suppliers,\ + \ and is governed by the terms of the license agreement that accompanies or is included\ + \ with the Microsoft Content. If the Microsoft Content does not include a license agreement,\ + \ then you may make a reasonable number of copies of the Microsoft Content for your internal\ + \ use in designing, developing, and testing your software, products and services that is\ + \ made available to you on the Documentation Portals without a license agreement. You must\ + \ preserve the copyright notice in all copies of the Microsoft Content and ensure that both\ + \ the copyright notice and this permission notice appear in those copies. Accredited educational\ + \ institutions, such as K-12 schools, universities, and private or public colleges may download\ + \ and reproduce Microsoft Content for distribution in the classroom for educational purposes.\n\ + \n4. Security, privacy, and Customer Data.\nSecurity. We maintain technical and organizational\ + \ measures, internal controls, and data security routines intended to protect Customer Data\ + \ against accidental loss or change, unauthorized disclosure or access, or unlawful destruction.\n\ + Privacy and data location. We treat Customer Data in accordance with the terms herein and\ + \ our Privacy Statement. We may transfer to, store, and process Customer Data in the United\ + \ States or in any country where we or our Affiliates or subcontractors have facilities\ + \ used for Developer Services. You will obtain any necessary consent or rights from end\ + \ users or others whose data or personal information or other data you will be hosting in\ + \ the Services.\nRights to Provide Customer Data. You are solely responsible for your Customer\ + \ Data. You must have, and you hereby grant us, sufficient rights to use and distribute\ + \ Customer Data (including Customer Data sourced from third parties) necessary for us to\ + \ provide you the Developer Services without violating the rights of any third party, or\ + \ otherwise obligating Microsoft to you or to any third party. We do not assume any additional\ + \ obligations that may apply to Customer Data except as required by applicable law.\nOwnership\ + \ of Customer Data. Except for software and Content we license to you, as between the parties,\ + \ you retain all right, title and interest in and to Customer Data. We acquire no rights\ + \ in Customer Data other than as described in this Section 4.\nUse of Customer Data. We\ + \ will use Customer Data to provide the Services. This use may include troubleshooting to\ + \ prevent, find and fix problems with the operation of the Services and ensuring compliance\ + \ with this Agreement. It may also include: providing you with suggestions to help you discover\ + \ and use functionality within the Services; improving the features of our Services; and\ + \ otherwise use patterns, trends, and other statistical data derived from Customer Data\ + \ to provide, operate, maintain, and improve our products and services. We will not use\ + \ Customer Data or derive information from it for any (1) advertising or (2) other commercial\ + \ purposes (beyond providing you with the Services) without your consent.\nCustomer Data\ + \ return and deletion. You may delete your Customer Data at any time. If you terminate your\ + \ account we may delete Customer Data immediately without any retention period. We have\ + \ no additional obligation to continue to hold, export, or return Customer Data and have\ + \ no liability whatsoever for deletion of Customer Data pursuant to this Agreement. The\ + \ Developer Services may have features that incur additional charges or are only available\ + \ at a specific paid-for-service feature tier. If your account is in arrears or is downgraded\ + \ to a lesser service feature tier your Customer Data will be preserved, but certain features\ + \ necessary to access that Customer Data may be inaccessible.\nThird party requests of Customer\ + \ Data. We will not disclose Customer Data to a third party (including law enforcement,\ + \ other government entity, or civil litigant, but excluding our subcontractors) except as\ + \ you direct or unless required by law. We will ask any third party demanding access to\ + \ your Customer Data to contact you directly using your basic contact information. We will\ + \ promptly notify you and provide a copy of the demand unless legally prohibited. You are\ + \ responsible for responding to requests by a third party regarding your use of Services.\n\ + Subcontractors. We may hire other companies to provide limited services on our behalf, such\ + \ as customer support. Any such subcontractors will be permitted to obtain Customer Data\ + \ only to deliver the services we have retained them to provide. We remain responsible for\ + \ our subcontractors’ compliance with the obligations set forth in this Agreement.\nCompliance\ + \ with law. We will comply with all laws applicable to our provision of the Services, including\ + \ applicable security breach notification laws, but not including any laws applicable to\ + \ you or your industry that are not generally applicable to information technology services\ + \ providers. You will comply with all laws applicable to your Customer Data, and use of\ + \ the Services, including any laws applicable to you or your industry.\nCertifications and\ + \ compliance. The Developer Services shall be subject to any security, privacy, and compliance\ + \ practices specifically described for the Developer Services at the Developer Services\ + \ Portal. These obligations do not apply to any other elements of the Services.\nClaims\ + \ of infringement. We will inform you if we receive notice claiming that your usage of the\ + \ Service infringes a third party’s intellectual property rights, and in such instances\ + \ we may provide your basic contact information to the third party. You will promptly respond\ + \ to such complaints.\n\n5. Customer accounts, customer conduct, identity services, and\ + \ feedback.\nAccount creation. If any of the Services requires you to open an account, you\ + \ must complete the registration process by providing us with current, complete and accurate\ + \ information. You may not select an account user name or identifier that impersonates someone\ + \ else, is or may be illegal, or may be protected by trademark or other proprietary rights,\ + \ is vulgar or offensive or may cause confusion. We reserve the right to reject and/or reassign\ + \ these user names and Service identifiers in our sole discretion.\nResponsibility for your\ + \ accounts. You are responsible for: any and all activities that occur under your account;\ + \ maintaining the confidentiality of any non-public authentication credentials associated\ + \ with your use of the Services; and promptly notifying our customer support team about\ + \ any possible misuse of your accounts or authentication credentials, or any security incident\ + \ related to the Services.\nYour conduct and the availability of third party content and\ + \ links to third party content. . For any public, community interaction you undertake on\ + \ the Services you must follow the Rules of Conduct. We have no obligation to monitor the\ + \ content and communications of third parties on the Services; however, we reserve the right\ + \ to review and remove any such materials posted to the Documentation Portals in our sole\ + \ discretion. Third parties that participate on the Services are not authorized Microsoft\ + \ spokespersons, and their views do not necessarily reflect those of Microsoft.\nIdentity\ + \ usage across Services. We may provide Services that supplement Microsoft Software and\ + \ rely upon your user account or other identity mechanism. We may use this information to\ + \ identify you and authorize access to Microsoft Content, Microsoft Software, and other\ + \ resources across the Services.\nSubmissions and feedback. We do not claim ownership of\ + \ any Submission unless otherwise agreed to by the parties. However, by providing a Submission,\ + \ you are irrevocably granting Microsoft and its Affiliates the right to make, use, modify,\ + \ distribute and otherwise commercialize the Submission in any way and for any purpose (including\ + \ by granting the general public the right to use your Submissions in accordance with this\ + \ Agreement, which may change over time). For Submissions provided to the Documentation\ + \ Portals you further grant the right to publish specific identifying information detailed\ + \ in the Privacy Statement in connection with your Submission. These rights are granted\ + \ under all applicable intellectual property rights you own or control. No compensation\ + \ will be paid with respect to the use of your Submissions. Microsoft is under no obligation\ + \ to post or use any Submission, and Microsoft may remove any Submission at any time. By\ + \ providing a Submission you warrant that you own or otherwise control all of the rights\ + \ to your Submission and that your Submission is not subject to any rights of a third party\ + \ (including any personality or publicity rights of any person).\nServices accessible only\ + \ to invited customers. Elements of the Services may be accessible to you on an invitation\ + \ only basis, for example as part of a program for using pre-release Services and providing\ + \ feedback to us (e.g., through the Connect portal). Those Services are confidential information\ + \ of Microsoft. You may not disclose this confidential information to any third party for\ + \ a period of five years. This restriction does not apply to any information that is or\ + \ becomes publicly available without a breach of this restriction, was lawfully known to\ + \ the receiver of the information without an obligation to keep it confidential, is received\ + \ from another source who can disclose it lawfully and without an obligation to keep it\ + \ confidential, or is independently developed. You may disclose this confidential information\ + \ if required to comply with a court order or other government demand that has the force\ + \ of law. Before doing so, you must seek the highest level of protection available and,\ + \ when possible, give us enough prior notice to provide a reasonable chance to seek a protective\ + \ order.\n\n6. Term, termination, and suspension.\nAgreement Term and termination. You may\ + \ terminate this Agreement at any time. If you have purchased access to Developer Services\ + \ through Windows Azure then you must pay any amounts due and owing.\nRegulatory. In any\ + \ country where any current or future government regulation or requirement that applies\ + \ to us, but not generally to businesses operating there, presents a hardship to us operating\ + \ the Services without change, and/or causes us to believe this Agreement or the Services\ + \ may be in conflict with any such regulation or requirement, we may change the Services\ + \ or terminate the Agreement. Your sole remedy for such changes to the Services under this\ + \ Section is to terminate this Agreement.\nSuspension. We may suspend your use of the Services\ + \ if: (1) reasonably needed to prevent unauthorized access to Customer Data; (2) you fail\ + \ to respond to a claim of alleged infringement under Sections 4.k or 8 within a reasonable\ + \ time; or (3) you violate this Agreement. We will attempt to suspend access to the minimum\ + \ necessary part of the Services while the condition or need exists. We will give notice\ + \ before we suspend, except where we reasonably believe we need to suspend immediately.\ + \ If you do not fully address the reasons for the suspension within 60 days after we suspend,\ + \ we may terminate this Agreement and delete your Customer Data without any retention period.\ + \ We may also terminate your account if your use of the Developer Services is suspended\ + \ more than twice in any 12-month period.\nTermination for non-usage. We may suspend or\ + \ terminate a Service account after a prolonged period of inactivity. For Developer Services,\ + \ if you have a free account we may terminate this Agreement and/or delete any Customer\ + \ Data automatically generated during the Developer Services sign up process if you fail\ + \ to upload or create any Customer Data within 90 days of your initial provisioning of the\ + \ Developer Service. We will provide you with notice prior to any account suspension or\ + \ termination, or Customer Data deletion.\nTermination of Access to Documentation Portals.\ + \ We reserve the right to terminate your access to the Documentation Portals at any time,\ + \ without notice, for any reason whatsoever.\n\n7. Warranties.\nMicrosoft Services warranty.\ + \ If you are a Windows Azure customer who has purchased access to the Developer Services,\ + \ then we warrant that the Developer Services will satisfy the SLA during the Term for the\ + \ paid for portion of the Developer Services. Your only remedies for breach of this limited\ + \ warranty are those in the SLA. This warranty is subject to the following limitations:\n\ + any implied warranties, guarantees or conditions not able to be disclaimed as a matter of\ + \ law will last one year from the start of the limited warranty;\nthis limited warranty\ + \ does not cover problems caused by accident, abuse or use of the Developer Services in\ + \ a manner inconsistent with this Agreement or our published documentation or guidance,\ + \ or resulting from events beyond our reasonable control;\nthis limited warranty does not\ + \ apply to problems caused by the failure to meet minimum system requirements; and\nthis\ + \ limited warranty does not apply to Previews or free offerings.\nOTHER THAN THIS WARRANTY,\ + \ OR EXCEPT AS WARRANTED IN A SEPARATE AGREEMENT, MICROSOFT AND ITS RESPECTIVE SUPPLIERS\ + \ PROVIDE THE SERVICES (INCLUDING THE CONTENT AND APIS) \"AS IS,\" \"WITH ALL FAULTS\" AND\ + \ \"AS AVAILABLE.\" YOU BEAR THE RISK OF USING IT. WE PROVIDE NO WARRANTIES, GUARANTEES\ + \ OR CONDITIONS, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES\ + \ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. YOU MAY HAVE\ + \ ADDITIONAL RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. THESE DISCLAIMERS\ + \ WILL APPLY TO THE FULLEST EXTENT PERMITTED UNDER APPLICABLE LAW, INCLUDING APPLICATION\ + \ TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\ + \nThird party content and materials. MICROSOFT DOES NOT CONTROL, REVIEW, REVISE, ENDORSE,\ + \ OR ACCEPT RESPONSIBILITY FOR ANY THIRD PARTY CONTENT, INFORMATION, MESSAGES, MATERIALS,\ + \ PROJECTS ACCESSIBLE FROM OR LINKED THROUGH THE SERVICES, AND, EXCEPT AS WARRANTED IN A\ + \ SEPARATE AGREEMENT, MICROSOFT MAKES NO REPRESENTATIONS OR WARRANTIES WHATSOEVER ABOUT\ + \ AND SHALL NOT BE RESPONSIBLE FOR ANY OF THE FOREGOING. ANY DEALINGS YOU MAY HAVE WITH\ + \ SUCH THIRD PARTIES ARE AT YOUR OWN RISK.\n\n8. Defense of claims.\nDefense. We will defend\ + \ you against any claims made by an unaffiliated third party that the Developer Services\ + \ or Developer Services Software infringe its patent, copyright or trademark or makes unlawful\ + \ use of its trade secret. You will defend us against any claims made by an unaffiliated\ + \ third party that any (1) Non-Microsoft Product that is not made available through the\ + \ Developer Services or Developer Services Software or (2) Customer Data you provide directly\ + \ or indirectly in using the Services infringe the third party’s patent, copyright, or trademark\ + \ or makes unlawful use of its trade secret.\nLimitations. Our obligations in Section 8.a\ + \ will not apply to a claim or award based on: (1) Customer Data, Non-Microsoft Product,\ + \ modifications you make to the Services, or materials you provide or make available as\ + \ part of using the Services; (2) your combination of the Services with, or damages based\ + \ upon the value of, a Non-Microsoft Product, data or business process; (3) your use of\ + \ a Microsoft trademark without our express written consent, or your use of the Services\ + \ after we notify you to stop due to a third-party claim; or (4) your redistribution of\ + \ the Services to, or use for the benefit of, any unaffiliated third party.\nRemedies. If\ + \ we reasonably believe that a claim under Section 8.a may bar your use of the Developer\ + \ Services or Developer Services Software, we will seek to: (1) obtain the right for you\ + \ to keep using it; or (2) modify or replace it with a functional equivalent. If these options\ + \ are not commercially reasonable, we may terminate your rights to use the Developer Services\ + \ or Developer Services Software.\nObligations. Each party must notify the other promptly\ + \ of a claim under this Section 8. The party seeking protection must (1) give the other\ + \ sole control over the defense and settlement of the claim; and (2) give reasonable help\ + \ in defending the claim. The party providing the protection will (1) reimburse the other\ + \ for reasonable out-of-pocket expenses that it incurs in giving that help and (2) pay the\ + \ amount of any resulting adverse final judgment (or settlement that the other consents\ + \ to). The parties’ respective rights to defense and payment of judgments or settlements\ + \ under this Section are in lieu of any common law or statutory indemnification rights or\ + \ analogous rights, and each party waives such common law rights.\n\n9. Limitation of liability.\n\ + Limitation. The aggregate liability of each party under this Agreement is limited to direct\ + \ damages up to the amount paid under this Agreement for the Developer Services giving rise\ + \ to that liability during the 12 months before the liability arose, or for Services provided\ + \ free of charge, Five Hundred United States dollars ($500.00 USD).\nEXCLUSION. NEITHER\ + \ PARTY, NOR ITS SUPPLIERS WILL BE LIABLE FOR LOSS OF REVENUE, LOST PROFITS, OR INDIRECT,\ + \ SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE, OR EXEMPLARY DAMAGES, EVEN IF THE PARTY\ + \ KNEW THEY WERE POSSIBLE.\nExceptions to Limitations. The limits of liability in this Section\ + \ apply to the fullest extent permitted by applicable law, but do not apply to: (1) the\ + \ parties’ obligations under Section 8 or Exhibit A; or (2) breach of any confidentiality\ + \ obligation or violation of the other's intellectual property rights.\n\n10. Miscellaneous.\n\ + No additional rights granted. We reserve all rights not expressly granted under this agreement,\ + \ and no other rights are granted under this agreement by implication or estoppel or otherwise.\n\ + Notices.\nYou must send notices by mail to the address listed for the Microsoft contracting\ + \ entity listed in Exhibit A applicable to your primary place of business, with a copy to:\n\ + Microsoft Legal and Corporate Affairs (Developer Division)\nOne Microsoft Way\nRedmond,\ + \ WA 98052 USA\nYou agree to receive electronic notices from us related to the Services,\ + \ which will be sent by email to your specified end user or administrator contact information\ + \ or presented to you in the Service experience. Notices are effective on the date on the\ + \ return receipt for mail, the date sent for email, and the date presented if within the\ + \ Service experience.\nAssignment. You may not assign this agreement either in whole or\ + \ in part.\nSeverability. If any part of this agreement is held unenforceable, the rest\ + \ remains in full force and effect.\nWaiver. Failure to enforce any provision of this agreement\ + \ will not constitute a waiver.\nNo agency. We are independent contractors. This agreement\ + \ does not create an agency, partnership or joint venture.\nNo third-party beneficiaries.\ + \ There are no third-party beneficiaries to this agreement.\nApplicable law and venue. The\ + \ choice of law and venue applicable to the geography of your primary place of business\ + \ is listed in Exhibit A.\nEntire agreement. This agreement is the entire agreement concerning\ + \ its subject matter and supersedes any prior or concurrent communications. Additional terms\ + \ applicable to this agreement based on the geography of your primary place of business\ + \ are listed in Exhibit A.\nSurvival. The following provisions will survive this agreement’s\ + \ termination: 1.b, 2.a-b, 4, 5.a-d, 5.f-g, 6, 7, 8, 9, 10, 11, Exhibit A and all other\ + \ definitions.\nU.S. export jurisdiction. The Services are subject to U.S. export jurisdiction.\ + \ You must comply with all applicable laws, including the U.S. Export Administration Regulations,\ + \ the International Traffic in Arms Regulations, and end-user, end-use and destination restrictions\ + \ issued by U.S. and other governments. For additional information, see http://www.microsoft.com/exporting/.\n\ + International availability. Availability of the Services, including specific features and\ + \ language versions, varies by country.\nAcquired rights. You will defend us against any\ + \ claim that arises from (1) any aspect of the current or former employment relationship\ + \ between you and any of your current or former personnel or contractors or under any collective\ + \ agreements, including, without limitation, claims for wrongful termination, breach of\ + \ express or implied employment contracts, or payment of benefits or wages, unfair dismissal\ + \ costs, or redundancy costs, or (2) any obligations or liabilities whatsoever arising under\ + \ the Acquired Rights Directive (Council Directive 2001/23/EC, formerly Council Directive\ + \ 77/187/EC as amended by Council Directive 98/50/EC) or any national laws or regulations\ + \ implementing the same, or similar laws or regulations, (including the Transfer of Undertakings\ + \ (Protection of Employment) Regulations 2006 in the United Kingdom) including a claim from\ + \ your current or former personnel or contractors (including a claim in connection with\ + \ the termination of their employment by us following any transfer of their employment to\ + \ us pursuant to such laws or regulations). You must pay the amount of any resulting adverse\ + \ final judgment (or settlement to which you consent). This section provides our exclusive\ + \ remedy for these claims. We will notify you promptly in writing of a claim subject to\ + \ this section. We must (1) give you sole control over the defense or settlement of such\ + \ claim; and (2) provide reasonable assistance in defending the claim. You will reimburse\ + \ us for reasonable out of pocket expenses that we incur in providing assistance.\nForce\ + \ majeure. Neither party will be liable for any failure in performance due to causes beyond\ + \ its reasonable control (such as fire, explosion, power blackout, earthquake, flood, severe\ + \ storms, strike, embargo, labor disputes, acts of civil or military authority, war, terrorism\ + \ including cyber terrorism), acts of God, acts or omissions of Internet traffic carriers,\ + \ actions or omissions of regulatory or governmental bodies (including the passage of laws\ + \ or regulations or other acts of government that impact the delivery of Services).\nModifications.\ + \ We may modify this agreement at any time with or without individual notice to you by posting\ + \ a revised version on the legal information section of the Developer Services and Documentation\ + \ Portals (or an alternate site we identify), or by notifying you in accordance with Section\ + \ 10.b. Any modifications will be effective upon your continued use of a Service.\nNotices\ + \ and procedure for making claims of copyright infringement. Pursuant to Title 17, United\ + \ States Code, Section 512(c)(2), notifications of claimed copyright infringement should\ + \ be sent to our designated agent. ALL INQUIRIES NOT RELEVANT TO THE FOLLOWING PROCEDURE\ + \ WILL NOT RECEIVE A RESPONSE. See Notice and Procedure for Making Claims of Copyright Infringement\ + \ ( http://www.microsoft.com/info/cpyrtInfrg.htm).\n\n11. Definitions.\nAny reference in\ + \ this agreement to \"day\" will be a calendar day.\n\n\"Affiliate\" means any legal entity\ + \ that a party owns or that owns a party, with a 50% or greater interest.\n\n\"Content\"\ + \ means documents, photographs, videos, and other graphical, textual, or audio-visual content\ + \ that may be subject to copyright protection.\n\n\"Customer Data\" means any Content or\ + \ other data, including all text, sound, software, or image files that are provided to us\ + \ by, or on behalf of, you through your use of the Developer Services for use by you or\ + \ your authorized users. Customer Data does not include Submissions or any other Content\ + \ or data that you submit to the Documentation Portals or otherwise provide via the Developer\ + \ Services for public access.\n\n\"Developer Services\" means Visual Studio Online, the\ + \ Developer Services Portal, the Visual Studio profile services, and other services we identify\ + \ as governed by this Agreement.\n\n\"Developer Services Portal\" means the Visual Studio\ + \ Online portal site available at http://www.visualstudio.com.\n\n\"Developer Services Software\"\ + \ means Microsoft software we provide to you as part of the Developer Services for use with\ + \ the Developer Services.\n\n\"Documentation Portals\" means the Microsoft developer network\ + \ content and marketing site available at http://msdn.microsoft.com\" and information technology\ + \ specialist content and marketing site available at http://technet.microsoft.com, or at\ + \ alternate sites we identify.\n\n\"Microsoft Content\" means Content on the Services provided\ + \ by Microsoft and its suppliers.\n\n\"Microsoft Limited Public License\" means the Microsoft\ + \ Limited Public License software license, a copy of which is provided in Exhibit B.\n\n\ + \"Microsoft Software\" means Microsoft software and computer code, including sample code\ + \ and Developer Services Software.\n\n\"Non-Microsoft Product\" is any software, data, service,\ + \ website or other product licensed, sold or otherwise provided to you by an entity other\ + \ than us, whether you obtained it via our Services or elsewhere.\n\n\"Offer Details\" means\ + \ the pricing and related terms applicable to paid for Developer Services.\n\n\"Preview\"\ + \ means preview, beta, or other pre-release versions of the Developer Services or Developer\ + \ Services Software offered by Microsoft.\n\n\"Privacy Statement\" means the Services privacy\ + \ statement ( http://go.microsoft.com/fwlink/?LinkID=246330).\n\n\"Rules of Conduct\" means\ + \ the Services rules of conduct ( http://go.microsoft.com/fwlink/?LinkId=303819).\n\n\"\ + Services\" means the Developer Services, Documentation Portals, the http://connect.microsoft.com\ + \ site, and Microsoft Software we make available to you under this Agreement.\n\n\"SLA\"\ + \ means the commitments we make regarding delivery or performance of the Developer Services\ + \ ( http://go.microsoft.com/fwlink/?LinkId=309360).\n\n\"Submissions\" means Content, code,\ + \ comments, feedback, suggestions, information or materials that you provide via the Documentation\ + \ Portals or any Services for public access (rather than for your personal use or use by\ + \ your authorized users). Submissions do not include Customer Data.\n\n\"User Plan\" means\ + \ a per-user based subscription, trial, or other Microsoft granted benefit that permits\ + \ access to and account services for the Developer Services.\n\n\"we\" and \"us\" means\ + \ the Microsoft entity listed in Exhibit A applicable to your location and its Affiliates,\ + \ as appropriate.\n\n\"you\" and \"your\" means the person or entity accepting this Agreement\ + \ to use the Services.\n\nCOPYRIGHT NOTICE\n\n© 2013 Microsoft Corporation. All rights reserved.\n\ + \nExhibit A\nCustomer Location Agreement Addendum\n\nThe Microsoft entity entering into\ + \ this agreement, the applicable Microsoft entity contact information, the controlling law\ + \ and venue, and additional terms governing this agreement with you are indicated in the\ + \ table below for the country or region of your primary place of business.\n\nIf your primary\ + \ place of business is in Africa, Europe, or the Middle East then these terms apply to our\ + \ agreement.\nMicrosoft Entity and Contact Information\tApplicable Law and Venue\tAdditional\ + \ Terms\nMicrosoft Ireland Operations Limited\nThe Atrium, Block B, Carmenhall Road\nSandyford\ + \ Industrial Estate\nDublin 18\nIreland\tThis agreement is governed by the laws of Ireland,\ + \ without regard to its conflict of laws principles except that (1) if you are a U.S. Government\ + \ entity, this agreement is governed by the laws of the United States, and (2) if you are\ + \ a state or local government entity in the United States, this agreement is governed by\ + \ the laws of that state. If we bring an action to enforce this agreement, we will bring\ + \ it in the jurisdiction where you have your headquarters. If you bring an action to enforce\ + \ this agreement, you will bring it in Ireland. This choice of jurisdiction does not prevent\ + \ either party from seeking injunctive relief in any appropriate jurisdiction with respect\ + \ to violation of intellectual property rights.\t \nIf your primary place of business is\ + \ in American Samoa, Australia, Bangladesh, Bhutan, Brunei Darussalam, Cambodia, East Timor,\ + \ Hong Kong SAR, India, Indonesia, Lao Peoples Democratic Republic, Macau SAR, Malaysia,\ + \ Maldives, Nepal New Zealand, People’s Republic of China, Philippines; Republic of Korea,\ + \ Samoa, Singapore, Sri Lanka, Thailand, Vanuatu or Vietnam then these terms apply to our\ + \ agreement.\nMicrosoft Entity and Contact Information\tApplicable Law and Venue\tAdditional\ + \ Terms\nMicrosoft Regional Sales Corporation \n438B Alexandra Road, #04-09/12,\nBlock B,\ + \ Alexandra Technopark \nSingapore, 119968\t\nThis agreement is governed by State of Washington\ + \ law, without regard to its conflict of laws principles. Subject to sections (i) and (ii)\ + \ below, if we bring an action to enforce this agreement, we will bring it in the jurisdiction\ + \ where you have your headquarters. If you bring an action to enforce this agreement, you\ + \ will bring it in the State of Washington, U.S.A. This choice of jurisdiction does not\ + \ prevent either party from seeking injunctive relief with respect to a violation of intellectual\ + \ property rights.\n\ni. If your principal place of business is in Brunei, Malaysia or Singapore,\ + \ you consent to the non-exclusive jurisdiction of the Singapore courts.\n\nii. If your\ + \ principal place of business is in Bangladesh, Cambodia, India, Indonesia, Macau SAR, the\ + \ People's Republic of China, Sri Lanka, Thailand, The Philippines or Vietnam, any dispute\ + \ arising out of or in connection with this agreement, including any question regarding\ + \ its existence, validity or termination, shall be referred to and finally resolved by arbitration\ + \ in Singapore in accordance with the Arbitration Rules of the Singapore International Arbitration\ + \ Centre (\"SIAC\"), which rules are deemed to be incorporated by reference into this subsection.\ + \ The Tribunal shall consist of one arbitrator to be appointed by the Chairman of SIAC.\ + \ The language of the arbitration shall be English. The decision of the arbitrator shall\ + \ be final, binding and incontestable and may be used as a basis for judgment thereon in\ + \ the above-named countries or elsewhere. To the maximum extent permitted by applicable\ + \ law, the parties waive their right to any form of appeal or other similar recourse to\ + \ a court of law. For the purpose of this agreement only, the People's Republic of China\ + \ does not include Hong Kong SAR, Macau SAR and Taiwan.\n\nThe parties agree that this Agreement\ + \ be written and executed in English and that, in the event this Agreement is translated\ + \ into Bahasa Indonesia to comply with the implementing regulations of Indonesian Law No.\ + \ 24/2009, the English language version of this Agreement controls.\n \nIf your primary\ + \ place of business is in North America, South America, or all remaining regions and countries\ + \ not included in the above and where the Services are lawfully available then these terms\ + \ apply to our agreement.\nMicrosoft Entity and Contact Information\tApplicable Law and\ + \ Venue\tAdditional Terms\nMicrosoft Corporation \nOne Microsoft Way\nRedmond, WA 98052\ + \ (États-Unis)\tThis agreement is governed by State of Washington law, without regard to\ + \ its conflict of laws principles. Any action to enforce this agreement must be brought\ + \ in the State of Washington. This choice of jurisdiction does not prevent either party\ + \ from seeking injunctive relief in any appropriate jurisdiction with respect to violation\ + \ of intellectual property rights.\t \n \n\nExhibit B\nMicrosoft Limited Public License\n\ + \nThis license governs use of code marked as \"sample\" or \"example\" available on this\ + \ web site without a license agreement, as provided under the section above titled \"NOTICE\ + \ SPECIFIC TO SOFTWARE AVAILABLE ON THIS WEB SITE.\" If you use such code (the \"software\"\ + ), you accept this license. If you do not accept the license, do not use the software.\n\ + \n1. Definitions\n\nThe terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and\ + \ \"distribution\" have the same meaning here as under U.S. copyright law.\n\nA \"contribution\"\ + \ is the original software, or any additions or changes to the software.\n\nA \"contributor\"\ + \ is any person that distributes its contribution under this license.\n\n\"Licensed patents\"\ + \ are a contributor’s patent claims that read directly on its contribution.\n\n2. Grant\ + \ of Rights\n\n(A) Copyright Grant - Subject to the terms of this license, including the\ + \ license conditions and limitations in section 3, each contributor grants you a non-exclusive,\ + \ worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative\ + \ works of its contribution, and distribute its contribution or any derivative works that\ + \ you create.\n\n(B) Patent Grant - Subject to the terms of this license, including the\ + \ license conditions and limitations in section 3, each contributor grants you a non-exclusive,\ + \ worldwide, royalty-free license under its licensed patents to make, have made, use, sell,\ + \ offer for sale, import, and/or otherwise dispose of its contribution in the software or\ + \ derivative works of the contribution in the software.\n\n3. Conditions and Limitations\n\ + \n(A) No Trademark License- This license does not grant you rights to use any contributors’\ + \ name, logo, or trademarks.\n\n(B) If you bring a patent claim against any contributor\ + \ over patents that you claim are infringed by the software, your patent license from such\ + \ contributor to the software ends automatically.\n\n(C) If you distribute any portion of\ + \ the software, you must retain all copyright, patent, trademark, and attribution notices\ + \ that are present in the software.\n\n(D) If you distribute any portion of the software\ + \ in source code form, you may do so only under this license by including a complete copy\ + \ of this license with your distribution. If you distribute any portion of the software\ + \ in compiled or object code form, you may only do so under a license that complies with\ + \ this license.\n\n(E) The software is licensed \"as-is.\" You bear the risk of using it.\ + \ The contributors give no express warranties, guarantees or conditions. You may have additional\ + \ consumer rights under your local laws which this license cannot change. To the extent\ + \ permitted under your local laws, the contributors exclude the implied warranties of merchantability,\ + \ fitness for a particular purpose and non-infringement.\n\n(F) Platform Limitation - The\ + \ licenses granted in sections 2(A) and 2(B) extend only to the software or derivative works\ + \ that you create that run on a Microsoft Windows operating system product." json: ms-developer-services-agreement.json - yml: ms-developer-services-agreement.yml + yaml: ms-developer-services-agreement.yml html: ms-developer-services-agreement.html - text: ms-developer-services-agreement.LICENSE + license: ms-developer-services-agreement.LICENSE - license_key: ms-developer-services-agreement-2018-06 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-dev-services-2018-06 other_spdx_license_keys: - LicenseRef-scancode-ms-developer-services-agreement-2018-06 is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Microsoft Developer Agreement + + Last updated: June 2018 + This agreement is between you and Microsoft Corporation (“Microsoft”), and consists of the terms below (“Developer Terms”) and the Microsoft Privacy Statement (together, “Agreement”). + If you are entering into this Agreement on behalf of an entity, such as your employer, you represent that you have the legal authority to bind that entity. If you specify a company name in connection with signing up for or ordering a Service, you will be deemed to have placed that order and to have entered into this Agreement on behalf of that organization or company. Key terms are defined in Section 10. + 1. Offerings + 1. APIs. Your access and use of Microsoft’s APIs are governed by certain terms and conditions. As the developer, you’re responsible for your application and compliance with all the laws and regulations applicable to your use of Microsoft’s APIs, including those laws and regulations that apply to privacy, biometric data, data protection, and confidentiality of communications. Nothing in our governing agreements, or this Agreement, shall be construed as creating a joint controller or processor-sub processor relationship between you and Microsoft. + 1. Accompanying Terms. Your use of Microsoft’s APIs is governed by the terms under which you obtained access. If you access APIs that present accompanying terms (“Accompanying Terms”), then such Accompanying Terms, along with the Microsoft Privacy Statement, will apply to your access and use of the Service. In particular, the Microsoft Graph API is provided pursuant to the terms here. + 2. Application Registration Portal. Certain identity focused Microsoft APIs will require that you register your application here. If you are required to register your application at the following URL, then you must comply with the following terms: + 1. Register your application. Your applications must be registered and have an App ID that is unique to each application. Once you have successfully registered an application, you will be given Access Credentials for your application. “Access Credentials” means the necessary security keys, secrets, tokens, and other credentials to access identity focused Microsoft APIs. The Access Credentials enable us to associate your application with your use of the identity focused Microsoft APIs. All activities that occur using your Access Credentials are your responsibility. Access Credentials are non-transferable and non-assignable. Keep them secret. Do not try to circumvent them. In the event of a change of control, and subject to the acquiring company’s compliance with all of the terms and conditions of the then current Graph API Terms, you may sell, assign, and transfer an application’s App ID to an acquiring company, and such acquiring company may continue to use the App ID as part of the acquired application. + 2. Governing Terms. Unless a particular service presents Accompanying Terms to govern your access to Microsoft APIs, your application’s access to identity focused Microsoft APIs is governed by the then current Microsoft Graph API license terms, as currently available here (“Graph API Terms”). + 2. Services. + 1. Right to use. We may grant you the right to access and use the Services in accordance with this Agreement. + 2. Manner of use. You may not: + 1. reverse engineer, decompile, disassemble or work around technical limitations in the Services, except to the extent that applicable law permits it despite these limitations; + 2. disable, tamper with or otherwise attempt to circumvent any mechanism that limits your use of the Services; + 3. rent, lease, lend, resell, transfer, or sublicense any Services or portion thereof to or for third parties, except as explicitly permitted herein or in license terms that accompany any Services component; + 4. use the Services in a way prohibited by law, regulation, governmental order, or decree or by this Agreement; + 5. use the Services in any manner that could damage, disable, overburden, or impair any Microsoft service, or the network(s) connected to any Microsoft service; + 6. use the Services to violate the rights of others; + 7. use the Services to try to gain unauthorized access to or disrupt any service, device, data, account or network; + 8. use the Services to spam or distribute malware; + 9. use the Services in a way that could harm the Services or impair anyone else’s use of; + 10. engage in activity that is fraudulent, false or misleading (e.g., asking for money under false pretenses, impersonating someone else, manipulating the Services to increase play count, or affect rankings, ratings, or comments). + 11. scrape, build databases or otherwise create copies of any data accessed or obtained using the Services (including end users or their contacts), except as necessary to enable an intended usage scenario for your application; + 12. use the Services in any application or situation where failure of the Services could lead to the death or serious bodily injury of any person, or to severe physical or environmental damage; or + 13. help others break these rules. + 3. Updates. Unless Microsoft otherwise specifies, Microsoft may make commercially reasonable changes to a Service or feature from time to time. Microsoft may further modify or terminate a Service in any country where Microsoft is subject to a government regulation, obligation or other requirement that (1) is not generally applicable to businesses operating there, (2) presents a hardship for Microsoft to continue operating the Service without modification, or (3) causes Microsoft to believe these terms or the Service may conflict with any such requirement or obligation. + 4. Preview features. We may make features available on a Preview basis. Previews are provided “AS-IS” and are excluded from warranties in Section 6 below. Previews may be subject to reduced or different security, compliance, privacy, availability, reliability, and support commitments, as further explained in the Privacy Statement, and any additional notices provided with the Preview. We may change or discontinue Previews at any time without notice. We also may choose not to release a Preview into “General Availability”, and if we do make Previews “Generally Available” we may charge for any such features. + 2. Software and Microsoft Content + 1. Using Microsoft Software and Microsoft Content outside the Service. Microsoft may provide you with Microsoft Software or Microsoft Content through or as a part of the Services. Termination or suspension of this Agreement or of your use or access to the Services terminates your right to possess or use any such Microsoft Software or Microsoft Content unless separately licensed to you. The suspension or termination of a User Plan terminates that user’s right to possess or use any such Microsoft Software or Microsoft Content associated with, or contingent upon that User Plan. You must delete all copies of such Microsoft Software or Microsoft Content licensed under this Agreement and destroy any associated media upon the termination of the associated possession or usage rights. This subsection does not apply to Microsoft Software addressed in subsection (b) below. + 2. Software and Content on Documentation Portals. Third-party software and Content accessible on the Documentation Portals is made available by the designated publisher under the associated license terms. + 3. Scope of rights. All Microsoft Software and Microsoft Content are the copyrighted works of Microsoft or its suppliers are licensed not sold and may not be transferred unless specified otherwise. + 4. Third-party software or Content. You are solely responsible for any third-party software or Content that you install, connect, or use with any Service. We will not run or make any copies of such third-party software or Content outside of our relationship with you. You may only install or use any third-party software or Content with any Service in a way that does not subject our intellectual property or technology to any terms governing such software or Content. We are not a party to and are not bound by any terms governing your use of any third-party software or Content. We do not grant any licenses or rights, express or implied, to such third-party software or Content. + 5. Open source software as part of the Service. If the Service uses or distributes any third-party software with open source software license terms (“Open Source”), then such Open Source is licensed to you under the applicable open source terms. Copies of those applicable Open Source licenses and any other notices, if any, are included for your information only. + 6. Classroom Use. Accredited educational institutions, such as K-12 schools, universities, and private or public colleges may download and reproduce Microsoft Content for distribution in the classroom for educational purposes. + 3. Security and privacy + 1. Security. We maintain technical and organizational measures, internal controls, and data security routines intended to protect User Data against accidental loss or change, unauthorized disclosure or access, or unlawful destruction. + 2. Compliance with applicable laws; deletion of Personal Data + 1. You must comply with all laws and regulations applicable to your use of the Services and all data and Content accessed through the Services including without limitation, laws related to privacy, biometric data, data protection, and confidentiality of communications. + 2. Your use of the Services and Content is conditioned upon implementing and maintaining appropriate protections and measures for your service and application, and that includes your responsibility to the data obtained through the use of the Services. + 3. You must: (a) implement and maintain privacy protections and measures in your products and services, including obtaining necessary consents prior to use of data (and obtain additional consent prior to changing use or purpose of data), and proper data retention periods, (b) comply with applicable notification requirements, (c) maintain and comply with a written privacy policy that describes your privacy practices regarding data and information you collect and use, and which is at least as protective of users as the Privacy Statement, (d) include an accessible link to your privacy policy within your application, and in any app store that so allows, and (e) obtain consent from end users that is sufficient for the purposes of your agreement with the end user prior to giving us information that you independently collected from them. + 4. In addition to complying with your obligations under applicable law (including General Data Protection Regulation (GDPR) (EU) 2016/679) you will use current data. You may keep your data current by regularly refreshing the data, interfacing with a Microsoft API or Microsoft tool to maintain current data, or other processes that ensure changes to Microsoft data are accurately reflected. + 5. Except as otherwise set forth herein, you will promptly delete all data and Content collected or processed through the Services, when: (a) a user abandons your application, uninstalls your application, closes their account with you, or otherwise abandons the account, or (b) you cease use of the Services. You may, however, keep aggregated data, provided that no information identifying a specific person could be inferred or created from such data and such actions otherwise comply with this Agreement and applicable law. + 6. Unless you have a lawful basis for retaining Personal Data (as defined in the GDPR), you must delete all Personal Data accessed or processed through the Services within 30 days of receiving the data. + 3. Compliance with law. We will comply with all laws applicable to our provision of the Services, including applicable security breach notification laws, but not including any laws applicable to you or your industry that are not generally applicable to information technology services providers. You will comply with all laws applicable to your User Data, and use of the Services, including any laws applicable to you or your industry. + 4. Certifications and compliance. The Developer Services shall be subject to any security, privacy, and compliance practices specifically described for the Developer Services. These obligations do not apply to any other elements of the Services. + 5. Monitoring; Audit. We may monitor your access and use of the Services (including applicable products and services, website, Content, and data) for purposes of monitoring your compliance with this Agreement. Further, your access and use of the Services and for five years after, you must, upon reasonable notice from Microsoft, permit Microsoft or its auditor, at Microsoft’s cost, to conduct audits in connection with your use of the Services, to verify that your compliance with this Agreement. You must give Microsoft reasonable access to any personnel, premises, information, systems, books, and records relating to your use of the Services to enable Microsoft to conduct the audit. If requested, you must provide us with proof of your compliance with this Agreement. + 4. Customer accounts, customer conduct, and feedback + 1. Account creation. If any of the Services requires you to open an account, you must complete the registration process by providing us with current, complete and accurate information. You may not select an account user name or identifier that impersonates someone else, is or may be illegal, or may be protected by trademark or other proprietary rights, is vulgar or offensive or may cause confusion. We reserve the right to reject and/or reassign these user names and Service identifiers in our sole discretion. + 2. Responsibility for your accounts. You are responsible for: any and all activities that occur under your account; maintaining the confidentiality of any non-public authentication credentials associated with your use of the Services; and promptly notifying our customer support team about any possible misuse of your accounts or authentication credentials, or any security incident related to the Services. + 3. Your conduct and the availability of third-party content and links to third-party content. We have no obligation to monitor the content and communications of third parties on the Services; however, we reserve the right to review and remove any such materials posted to the Documentation Portals in our sole discretion. Third parties that participate on the Services are not authorized Microsoft spokespersons, and their views do not necessarily reflect those of Microsoft. + 4. Submissions and feedback. We do not claim ownership of any Submission unless otherwise agreed to by the parties. However, by providing a Submission, you are irrevocably granting Microsoft and its affiliates the right to make, use, modify, distribute and otherwise commercialize the Submission in any way and for any purpose (including by granting the general public the right to use your Submissions in accordance with this Agreement, which may change over time). For Submissions provided to the Documentation Portals you further grant the right to publish specific identifying information detailed in the Privacy Statement in connection with your Submission. These rights are granted under all applicable intellectual property rights you own or control. No compensation will be paid with respect to the use of your Submissions. Microsoft is under no obligation to post or use any Submission, and Microsoft may remove any Submission at any time. By providing a Submission you warrant that you own or otherwise control all of the rights to your Submission and that your Submission is not subject to any rights of a third-party (including any personality or publicity rights of any person). + 5. Termination and suspension + 1. Your termination. You may terminate this Agreement at any time. If you have purchased access to Services through Microsoft Azure then you must pay any amounts due and owing. + 2. Microsoft termination. We may terminate this Agreement, any rights granted herein, or your license to the Services, in our sole discretion at any time, for any reason. + 3. Suspension. We may suspend or terminate your use of the Services if: (1) reasonably needed to prevent unauthorized access to User Data; (2) you fail to respond to a claim of alleged infringement within a reasonable time; or (3) you violate, or we reasonably suspect you have violated, this Agreement. We will attempt to suspend access to the minimum necessary part of the Services while the condition or need exists. We will give notice before we suspend or terminate, except where we reasonably believe we need to suspend or terminate immediately. If you do not fully address the reasons for the suspension within 60 days after we suspend, we may terminate this Agreement and delete your User Data without any retention period. + 4. Termination for non-usage. We may suspend or terminate a Service account after a prolonged period of inactivity or for failing to respond to Microsoft communications. For Services, if you have a free account we may terminate this Agreement and/or delete any User Data automatically generated during the Services sign up process if you fail to upload or create any User Data within 90 days of your initial provisioning of the Service. We will provide you with notice prior to any account suspension or termination, or User Data deletion. + 6. Warranties + EXCEPT AS WARRANTED IN ACCOMPANYING TERMS, MICROSOFT AND ITS RESPECTIVE SUPPLIERS PROVIDE THE SERVICES (INCLUDING THE MICROSOFT CONTENT AND MICROSOFT SOFTWARE) “AS IS,” “WITH ALL FAULTS” AND “AS AVAILABLE.” YOU BEAR THE RISK OF USING IT. WE PROVIDE NO WARRANTIES, GUARANTEES OR CONDITIONS, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. YOU MAY HAVE ADDITIONAL RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. THESE DISCLAIMERS WILL APPLY TO THE FULLEST EXTENT PERMITTED UNDER APPLICABLE LAW, INCLUDING APPLICATION TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + Third-party content and materials. MICROSOFT DOES NOT CONTROL, REVIEW, REVISE, ENDORSE, OR ACCEPT RESPONSIBILITY FOR ANY THIRD-PARTY CONTENT, INFORMATION, MESSAGES, MATERIALS, PROJECTS ACCESSIBLE FROM OR LINKED THROUGH THE SERVICES, AND, EXCEPT AS WARRANTED IN A SEPARATE AGREEMENT, MICROSOFT MAKES NO REPRESENTATIONS OR WARRANTIES WHATSOEVER ABOUT AND SHALL NOT BE RESPONSIBLE FOR ANY OF THE FOREGOING. ANY DEALINGS YOU MAY HAVE WITH SUCH THIRD PARTIES ARE AT YOUR OWN RISK. + 7. Defense of claims + 1. Defense. We will defend you against any claims made by an unaffiliated third-party that the Services or Software infringe its patent, copyright or trademark or makes unlawful use of its trade secret. You will defend us against any claims made by an unaffiliated third-party arising from (1) your misuse or your end user's misuse of the Services, Microsoft Content, or Microsoft Software; (2) your violation or your end user's violation of this Agreement; (3) any Content or data routed into or used with the Services, those acting on your behalf, or your end users. + 2. Limitations. Our obligations in Section 7.1 will not apply to a claim or award based on: (1) User Data, Non-Microsoft Product, modifications you make to the Services, or materials you provide or make available as part of using the Services; (2) your combination of the Services with, or damages based upon the value of, a Non-Microsoft Product, data or business process; (3) your use of a Microsoft trademark without our express written consent, or your use of the Services after we notify you to stop due to a third-party claim; or (4) your redistribution of the Services to, or use for the benefit of, any unaffiliated third-party. + 3. Remedies. If we reasonably believe that a claim under Section 7.1 may bar your use of the Services or Software, we will seek to: (1) obtain the right for you to keep using it; or (2) modify or replace it with a functional equivalent. If these options are not commercially reasonable, we may terminate your rights to use the Services or Software. + 4. Obligations. Each party must notify the other promptly of a claim under this Section 7. The party seeking protection must (1) give the other sole control over the defense and settlement of the claim; and (2) give reasonable help in defending the claim. The party providing the protection will (1) reimburse the other for reasonable out-of-pocket expenses that it incurs in giving that help and (2) pay the amount of any resulting adverse final judgment (or settlement that the other consents to). The parties’ respective rights to defense and payment of judgments or settlements under this Section 7 are in lieu of any common law or statutory indemnification rights or analogous rights, and each party waives such common law rights. + 8. Limitation of liability + 1. Limitation. The aggregate liability of each party under this Agreement is limited to direct damages up to the amount paid under this Agreement for the Developer Services giving rise to that liability during the 12 months before the liability arose, or for Services provided free of charge, Five Hundred United States dollars ($500.00 USD). + 2. EXCLUSION. NEITHER PARTY, NOR ITS SUPPLIERS WILL BE LIABLE FOR LOSS OF REVENUE, LOST PROFITS, OR INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE, OR EXEMPLARY DAMAGES, EVEN IF THE PARTY KNEW THEY WERE POSSIBLE. + 3. Exceptions to Limitations. The limits of liability in this Section 8 apply to the fullest extent permitted by applicable law, but do not apply to: (1) the parties’ obligations under Section 7; or (2) breach of Sections 3.2 - 3.4 or violation of the other's intellectual property rights. + 9. Miscellaneous + 1. Reservation of Rights. All rights not expressly granted herein are reserved by Microsoft. You acknowledge that all intellectual property rights within the Services remain the property of Microsoft and nothing within this Agreement will act to transfer any of these intellectual property rights to you. + 2. Notices. You must send notices by mail to: Microsoft One Microsoft Way Redmond, WA 98052 USA + You agree to receive electronic notices from us related to the Services, which will be sent by email to your specified end user or administrator contact information or presented to you in the Service experience. You must keep your contact information updated. Notices are effective on the date on the return receipt for mail, the date sent for email, and the date presented if within the Service experience. + 3. Assignment and Delegation. You may not assign or delegate any rights or obligations under this Agreement either in whole or in part, including in connection with a change of control, except for an App ID, as set forth Section in 1.1. Any purported assignment and delegation by you shall be ineffective. We may freely assign or delegate all rights and obligations under this Agreement, fully or partially without notice to you. + 4. Severability. If any part of this agreement is held unenforceable, the rest remains in full force and effect. + 5. No Waiver. Failure to enforce any provision of this agreement will not constitute a waiver. + 6. No agency. We are independent contractors. This agreement does not create an agency, partnership or joint venture. + 7. No third-party beneficiaries. There are no third-party beneficiaries to this agreement. + 8. Applicable law and venue. If you live in (or, if a business, your principal place of business is in) the United States, the laws of the state where you live (or, if a business, where your principal place of business is located) govern all claims, regardless of conflict of laws principles, except that the Federal Arbitration Act governs all provisions relating to arbitration. You and we irrevocably consent to the exclusive jurisdiction and venue of the state or federal courts in King County, Washington, for all disputes arising out of or relating to these Terms or the Services that are heard in court (excluding arbitration and small claims court). + 9. Entire agreement. This agreement is the entire agreement concerning its subject matter and supersedes any prior or concurrent communications. + 10. Survival. 1.2, 2.3-2.6, 3.2, 3.5, 4.2, 4.4, 5, 6, 7, 8, 9, and 10, and all other definitions. + 11. U.S. export jurisdiction. The Services are subject to U.S. export jurisdiction. You must comply with all applicable laws, including the U.S. Export Administration Regulations, the International Traffic in Arms Regulations, and end-user, end-use and destination restrictions issued by U.S. and other governments. For additional information, see Exporting Microsoft Products. + 12. International availability. Availability of the Services, including specific features and language versions, varies by country. + 13. Force majeure. Neither party will be liable for any failure in performance due to causes beyond its reasonable control (such as fire, explosion, power blackout, earthquake, flood, severe storms, strike, embargo, labor disputes, acts of civil or military authority, war, terrorism including cyber terrorism), acts of God, acts or omissions of Internet traffic carriers, actions or omissions of regulatory or governmental bodies (including the passage of laws or regulations or other acts of government that impact the delivery of Services). + 14. Modifications. We may modify this agreement at any time with or without individual notice to you by posting a revised version on the legal information section of the Developer Services and Documentation Portals (or an alternate site we identify), or by notifying you in accordance with Section 9.b. Any modifications will be effective upon notice to you or posting. Your use of the Services after the changes become effective means you agree to the modifications to the Agreement. If you do not agree to the new Agreement, you must stop using the Services. + 10. Definitions + “Content” means documents, photographs, videos, data, and other graphical, textual, or audio-visual content. + “Developer Services” means services we identify as governed by this Agreement. + “Developer Software” means Microsoft software we provide to you as part of the Developer Services for use with the Developer Services. + “Documentation Portals” means the site available at http://msdn.microsoft.com, http://technet.microsoft.com, http://docs.microsoft.com, http://developer.microsoft.com, or at alternate sites we identify. + “Microsoft Content” means Content on the Services provided by Microsoft and its suppliers. + “Microsoft Software” means Microsoft software and computer code, including sample code and Developer Software. + “Non-Microsoft Product” is any software, data, service, website or other product licensed, sold or otherwise provided to you by an entity other than us, whether you obtained it via our Services or elsewhere. + “Offer Details” means the pricing and related terms applicable to paid Developer Services. + “Preview” means preview, beta, or other pre-release versions of the Developer Services or Developer Software offered by Microsoft. + “Services” means the Developer Services, Documentation Portals, and Microsoft Software we make available to you under this Agreement. + “Submissions” means Content, code, comments, feedback, suggestions, information or materials that you provide via the Documentation Portals or any Services for public access (rather than for your personal use or use by your authorized users). Submissions do not include User Data. + “User Plan” means a per-user based subscription, trial, or other Microsoft granted benefit that permits access to and account services for the Developer Services. + “we” and “us” means Microsoft. + “you” and “your” means the person or entity accepting this Agreement to use the Services. json: ms-developer-services-agreement-2018-06.json - yml: ms-developer-services-agreement-2018-06.yml + yaml: ms-developer-services-agreement-2018-06.yml html: ms-developer-services-agreement-2018-06.html - text: ms-developer-services-agreement-2018-06.LICENSE + license: ms-developer-services-agreement-2018-06.LICENSE - license_key: ms-device-emulator-3.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-device-emulator-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT DEVICE EMULATOR 3.0\n\nThese license\ + \ terms are an agreement between Microsoft Corporation (or based on where you live, one\ + \ of its affiliates) and you. Please read them. They apply to the software named above,\ + \ which includes the media on which you received it, if any. The terms also apply to any\ + \ Microsoft\n\n•\tupdates,\n\n•\tsupplements,\n\n•\tInternet-based services, and \n\n•\t\ + support services\n\nfor this software, unless other terms accompany those items. If so,\ + \ those terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT\ + \ THEM, DO NOT USE THE SOFTWARE.\n\nIf you comply with these license terms, you have the\ + \ rights below.\n\n1.\tINSTALLATION AND USE RIGHTS. You may install and use any number\ + \ of copies of the software on your premises as follows:\n\n•\tPersonal Use. You may install\ + \ and use the software with third party programs designed and developed for use with the\ + \ software.\n\n•\tProduction Use. You may install and use any number of copies of the software\ + \ on your premises to design, develop, test and demonstrate your programs.\n\n2.\tRIGHT\ + \ TO DISTRIBUTE. If you comply with the terms below you may copy and distribute the object\ + \ code form of the software in conjunction with the programs you develop.\n\na.\tDistribution\ + \ Requirements. If you distribute the software, you must:\n\n•\trequire distributors and\ + \ external end users to agree to terms that protect it at least as much as this agreement;\ + \ and\n\n•\tdisplay your valid copyright notice on your programs.\n\nb.\tDistribution Restrictions.\ + \ You may not\n\n•\talter any copyright, trademark or patent notice in the software; \n\ + \n•\tuse Microsoft’s trademarks in your programs in a way that suggests they come from\ + \ or are endorsed by Microsoft; \n\n•\tdistribute the software to run on a platform other\ + \ than the Windows platform;\n\n•\tinclude the software in malicious, deceptive or unlawful\ + \ programs; or\n\n•\tmodify or distribute the software so that any part of it becomes subject\ + \ to an Excluded License. An Excluded License is one that requires, as a condition of use,\ + \ modification or distribution, that\n\n•\tthe code be disclosed or distributed in source\ + \ code form; or \n\n•\tothers have the right to modify it.\n\n3.\tSCOPE OF LICENSE. The\ + \ software is licensed, not sold. This agreement only gives you some rights to use the software.\ + \ Microsoft reserves all other rights. Unless applicable law gives you more rights despite\ + \ this limitation, you may use the software only as expressly permitted in this agreement.\ + \ In doing so, you must comply with any technical limitations in the software that only\ + \ allow you to use it in certain ways. You may not\n\n•\tdisclose the results of any\ + \ benchmark tests of the software to any third party without Microsoft’s prior written approval;\n\ + \n•\twork around any technical limitations in the software;\n\n•\treverse engineer, decompile\ + \ or disassemble the software, except and only to the extent that applicable law expressly\ + \ permits, despite this limitation;\n\n•\tmake more copies of the software than specified\ + \ in this agreement or allowed by applicable law, despite this limitation;\n\n•\tpublish\ + \ the software for others to copy;\n\n•\trent, lease or lend the software;\n\n•\ttransfer\ + \ the software or this agreement to any third party (except as permitted in Section 2);\ + \ or\n\n•\tuse the software for commercial software hosting services.\n\n4.\tBACKUP COPY.\ + \ You may make one backup copy of the software. You may use it only to reinstall the software.\n\ + \n5.\tDOCUMENTATION. Any person that has valid access to your computer or internal network\ + \ may copy and use the documentation for your internal, reference purposes.\n\n6.\tEXPORT\ + \ RESTRICTIONS. The software is subject to United States export laws and regulations. \ + \ You must comply with all domestic and international export laws and regulations that apply\ + \ to the software. These laws include restrictions on destinations, end users and end use.\ + \ For additional information, see www.microsoft.com/exporting.\n\n7.\tSUPPORT SERVICES.\ + \ Because this software is \"as is,\" we may not provide support services for it.\n\n8.\t\ + ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based\ + \ services and support services that you use, are the entire agreement for the software\ + \ and support services.\n\n9.\tAPPLICABLE LAW.\n\na.\tUnited States. If you acquired the\ + \ software in the United States, Washington state law governs the interpretation of this\ + \ agreement and applies to claims for breach of it, regardless of conflict of laws principles.\ + \ The laws of the state where you live govern all other claims, including claims under\ + \ state consumer protection laws, unfair competition laws, and in tort.\n\nb.\tOutside the\ + \ United States. If you acquired the software in any other country, the laws of that country\ + \ apply.\n\n10.\tLEGAL EFFECT. This agreement describes certain legal rights. You may\ + \ have other rights under the laws of your country. You may also have rights with respect\ + \ to the party from whom you acquired the software. This agreement does not change your\ + \ rights under the laws of your country if the laws of your country do not permit it to\ + \ do so.\n\n11.\tDISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR\ + \ THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS.\ + \ YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT\ + \ CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED\ + \ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\ + \n12.\tLIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT\ + \ AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER\ + \ DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\ + \nThis limitation applies to\n\n•\tanything related to the software, services, content (including\ + \ code) on third party Internet sites, or third party programs; and\n\n•\tclaims for breach\ + \ of contract, breach of warranty, guarantee or condition, strict liability, negligence,\ + \ or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft\ + \ knew or should have known about the possibility of the damages. The above limitation\ + \ or exclusion may not apply to you because your country may not allow the exclusion or\ + \ limitation of incidental, consequential or other damages." json: ms-device-emulator-3.0.json - yml: ms-device-emulator-3.0.yml + yaml: ms-device-emulator-3.0.yml html: ms-device-emulator-3.0.html - text: ms-device-emulator-3.0.LICENSE + license: ms-device-emulator-3.0.LICENSE - license_key: ms-direct3d-d3d120n7-1.1.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-direct3d-d3d120n7-1.1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT DIRECT3D 12 ON WINDOWS 7\n________________________________________\n\ + \nThese license terms are an agreement between you and Microsoft Corporation (or one of\ + \ its affiliates). They apply to the software named above and any Microsoft services or\ + \ software updates (except to the extent such services or updates are accompanied by new\ + \ or additional terms, in which case those different terms apply prospectively and do not\ + \ alter your or Microsoft�s rights relating to pre-updated software or services). IF YOU\ + \ COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU\ + \ ACCEPT THESE TERMS.\n\n1.\tINSTALLATION AND USE RIGHTS.\na)\tGeneral. Subject to the terms\ + \ of this Agreement. You may install and use any number of copies of the software. You may\ + \ copy and distribute the software (i.e. make available for third parties) in games you\ + \ develop.\nb)\tIncluded Microsoft Applications. The software may include other Microsoft\ + \ applications. These license terms apply to those included applications, if any, unless\ + \ other license terms are provided with the other Microsoft applications.\nc)\tThird Party\ + \ Software. The software may include third party applications that Microsoft, not the third\ + \ party, licenses to you under this agreement. Any included notices for third party applications\ + \ are for your information only.\nd)\tUtilities. The software may contain some items on\ + \ the Utilities List at http://go.microsoft.com/fwlink/?LinkId=524839. You may copy and\ + \ install those items, if included with the software, on your machines or third party machines\ + \ to debug and deploy the applications and databases you develop with the software. Please\ + \ note that Utilities are designed for temporary use, that Microsoft may not be able to\ + \ patch or update Utilities separately from the rest of the software, and that some Utilities\ + \ by their nature may make it possible for others to access machines on which they are installed.\ + \ You should delete all Utilities you have installed after you finish debugging or deploying\ + \ your applications and databases. Microsoft is not responsible for any third party use\ + \ or access of Utilities you install on any machine.\n\n2.\tDATA COLLECTION. Some features\ + \ in the software may enable collection of data from users of your applications that access\ + \ or use the software. If you use these features to enable data collection in your applications,\ + \ you must comply with applicable law, including getting any required user consent, and\ + \ maintain a prominent privacy policy that accurately informs users about how you use, collect,\ + \ and share their data. You can learn more about Microsoft�s data collection and use in\ + \ the product documentation and the Microsoft Privacy Statement at https://go.microsoft.com/fwlink/?LinkId=521839.\ + \ You agree to comply with all applicable provisions of the Microsoft Privacy Statement.\n\ + \n3.\tSCOPE OF LICENSE. The software is licensed, not sold. Microsoft reserves all other\ + \ rights. Unless applicable law gives you more rights despite this limitation, you will\ + \ not (and have no right to):\na)\twork around any technical limitations in the software\ + \ that only allow you to use it in certain ways;\nb)\treverse engineer, decompile or disassemble\ + \ the software;\nc)\tremove, minimize, block, or modify any notices of Microsoft or its\ + \ suppliers in the software;\nd)\tuse the software in any way that is against the law or\ + \ to create or propagate malware; or\ne)\tshare, publish, distribute, or lend the software,\ + \ (except as expressly stated in Section 1) provide the software as a stand-alone hosted\ + \ solution for others to use, or transfer the software or this agreement to any third party.\n\ + \n4.\tDEVELOPMENT AND TESTING. To ensure your games using Direct3D 12 on Windows 7 also\ + \ run on Windows 10 or successor operating systems, you must:\na)\tensure your games include\ + \ support for both Direct3D 12 on Windows 7 and Direct3D 12 on Windows 10, with the appropriate\ + \ version to be executed at runtime (i.e., all decisions where games change behavior or\ + \ call different APIs based on Windows 7 versus Windows 10 must be made at runtime, and\ + \ must be re-made each time your game is executed); \nb)\tinstall the same files for both\ + \ Windows 7 and Windows 10; and\nc)\tprior to releasing games using Direct3D 12 on Windows\ + \ 7, test your games to confirm they are working as intended when an end user upgrades to\ + \ Windows 10 or a successor operating system without having to re-install the games. \n\ + \n5.\tEXPORT RESTRICTIONS. You must comply with all domestic and international export laws\ + \ and regulations that apply to the software, which include restrictions on destinations,\ + \ end users, and end use. For further information on export restrictions, visit http://aka.ms/exporting.\n\ + \n6.\tSUPPORT SERVICES. Microsoft is not obligated under this agreement to provide any support\ + \ services for the software. Any support provided is �as is�, �with all faults�, and without\ + \ warranty of any kind.\n\n7.\tUPDATES. The software may periodically check for updates,\ + \ and download and install them for you. You may obtain updates only from Microsoft or authorized\ + \ sources. Microsoft may need to update your system to provide you with updates. You agree\ + \ to receive these automatic updates without any additional notice. Updates may not include\ + \ or support all existing software features, services, or peripheral devices.\n\n8.\tENTIRE\ + \ AGREEMENT. This agreement, and any other terms Microsoft may provide for supplements,\ + \ updates, or third-party applications, is the entire agreement for the software.\n\n9.\t\ + APPLICABLE LAW AND PLACE TO RESOLVE DISPUTES. If you acquired the software in the United\ + \ States or Canada, the laws of the state or province where you live (or, if a business,\ + \ where your principal place of business is located) govern the interpretation of this agreement,\ + \ claims for its breach, and all other claims (including consumer protection, unfair competition,\ + \ and tort claims), regardless of conflict of laws principles. If you acquired the software\ + \ in any other country, its laws apply. If U.S. federal jurisdiction exists, you and Microsoft\ + \ consent to exclusive jurisdiction and venue in the federal court in King County, Washington\ + \ for all disputes heard in court. If not, you and Microsoft consent to exclusive jurisdiction\ + \ and venue in the Superior Court of King County, Washington for all disputes heard in court.\n\ + \n10.\tCONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights.\ + \ You may have other rights, including consumer rights, under the laws of your state, province,\ + \ or country. Separate and apart from your relationship with Microsoft, you may also have\ + \ rights with respect to the party from which you acquired the software. This agreement\ + \ does not change those other rights if the laws of your state, province, or country do\ + \ not permit it to do so. For example, if you acquired the software in one of the below\ + \ regions, or mandatory country law applies, then the following provisions apply to you:\n\ + a)\tAustralia. You have statutory guarantees under the Australian Consumer Law and nothing\ + \ in this agreement is intended to affect those rights.\nb)\tCanada. If you acquired this\ + \ software in Canada, you may stop receiving updates by turning off the automatic update\ + \ feature, disconnecting your device from the Internet (if and when you re-connect to the\ + \ Internet, however, the software will resume checking for and installing updates), or uninstalling\ + \ the software. The product documentation, if any, may also specify how to turn off updates\ + \ for your specific device or software.\nc)\tGermany and Austria.\ni.\tWarranty. The properly\ + \ licensed software will perform substantially as described in any Microsoft materials that\ + \ accompany the software. However, Microsoft gives no contractual guarantee in relation\ + \ to the licensed software.\nii.\tLimitation of Liability. In case of intentional conduct,\ + \ gross negligence, claims based on the Product Liability Act, as well as, in case of death\ + \ or personal or physical injury, Microsoft is liable according to the statutory law.\n\ + Subject to the foregoing clause ii., Microsoft will only be liable for slight negligence\ + \ if Microsoft is in breach of such material contractual obligations, the fulfillment of\ + \ which facilitate the due performance of this agreement, the breach of which would endanger\ + \ the purpose of this agreement and the compliance with which a party may constantly trust\ + \ in (so-called \"cardinal obligations\"). In other cases of slight negligence, Microsoft\ + \ will not be liable for slight negligence.\n\n11.\tDISCLAIMER OF WARRANTY. THE SOFTWARE\ + \ IS LICENSED �AS IS.� YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES,\ + \ GUARANTEES, OR CONDITIONS. TO THE EXTENT PERMITTED UNDER APPLICABLE LAWS, MICROSOFT EXCLUDES\ + \ ALL IMPLIED WARRANTIES, INCLUDING MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND\ + \ NON-INFRINGEMENT.\n\n12.\tLIMITATION ON AND EXCLUSION OF DAMAGES. IF YOU HAVE ANY BASIS\ + \ FOR RECOVERING DAMAGES DESPITE THE PRECEDING DISCLAIMER OF WARRANTY, YOU CAN RECOVER FROM\ + \ MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY\ + \ OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL\ + \ DAMAGES.\n\nThis limitation applies to (a) anything related to the software, services,\ + \ content (including code) on third party Internet sites, or third party applications; and\ + \ (b) claims for breach of contract, warranty, guarantee, or condition; strict liability,\ + \ negligence, or other tort; or any other claim; in each case to the extent permitted by\ + \ applicable law.\n\nIt also applies even if Microsoft knew or should have known about the\ + \ possibility of the damages. The above limitation or exclusion may not apply to you because\ + \ your state, province, or country may not allow the exclusion or limitation of incidental,\ + \ consequential, or other damages." json: ms-direct3d-d3d120n7-1.1.0.json - yml: ms-direct3d-d3d120n7-1.1.0.yml + yaml: ms-direct3d-d3d120n7-1.1.0.yml html: ms-direct3d-d3d120n7-1.1.0.html - text: ms-direct3d-d3d120n7-1.1.0.LICENSE + license: ms-direct3d-d3d120n7-1.1.0.LICENSE - license_key: ms-directx-sdk-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-directx-sdk-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "DirectX Software Development Kit END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE\ + \ \n\nIMPORTANT-READ CAREFULLY: This Microsoft End-User License Agreement (\"EULA\") is\ + \ a legal agreement between you (either an individual or a single entity) and Microsoft\ + \ Corporation (\"Microsoft\") for the Microsoft software product identified above, which\ + \ includes computer software and may include associated media and printed materials, and\ + \ \"online\" or electronic documentation (\"SOFTWARE PRODUCT). The SOFTWARE PRODUCT also\ + \ includes any updates and supplements to the original SOFTWARE PRODUCT that is associated\ + \ with a separate end-user license agreement is licensed to you under the terms of that\ + \ license agreement. By installing, copying, downloading, accessing or otherwise using the\ + \ SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. If you do not agree\ + \ to the terms of this EULA, do not install or use the SOFTWARE PRODUCT. \n\nSOFTWARE PRODUCT\ + \ LICENSE\n\nThe SOFTWARE PRODUCT is protected by copyright laws and international copyright\ + \ treaties, as well as other intellectual property laws and treaties. The SOFTWARE PRODUCT\ + \ is licensed, not sold.\n\n1.GRANT OF LICENSE.\n\nThis EULA grants you the following limited,\ + \ non-exclusive rights:\n\nSOFTWARE PRODUCT. You may install and use the SOFTWARE PRODUCT\ + \ on an unlimited number of computers, including workstations, terminals or other digital\ + \ electronic devices (\"COMPUTERS\") to design, develop, and test software application products\ + \ for use with Microsoft operating system products including Windows NT Workstation 4.0,\ + \ Windows NT Server 4.0, Windows 95 and subsequent releases thereto (\"Application\"). \ + \ You may install copies of the SOFTWARE PRODUCT on up to ten (10) COMPUTERS provided that\ + \ you are the only individual using the SOFTWARE PRODUCT on each such COMPUTER. If you\ + \ are an entity, Microsoft grants you the right to designate one individual within your\ + \ organization to have the right to use the SOFTWARE PRODUCT in the manner provided above.\n\ + \nSAMPLE CODE. You may modify the sample source code located in the SOFTWARE PRODUCT's\ + \ \"MSSDK\\Samples\\Multimedia\" directory (\"Sample Code\") to design, develop and test\ + \ your Application. You may also reproduce and distribute the Sample Code in object code\ + \ form along with any modifications you make to the Sample Code, provided that you comply\ + \ with the Distribution Requirements described below. For purposes of this Section, \"\ + modifications\" shall mean enhancements to the functionality of the Sample Code.\n\nREDISTRIBUTABLE\ + \ CODE. Portions of the SOFTWARE PRODUCT are designated as \"Redistributable Code\". If\ + \ you choose to distribute the Redistributable Code, you must include all files listed in\ + \ such \"DirectX\" redist.txt file located in the directory named \\LICENSE. No modifications,\ + \ additions, or deletions to the Redistributable Code are permitted without written permission\ + \ from Microsoft Corporation. Your rights to distribute the Redistributable Code are subject\ + \ to the Distribution Requirements described below.\n\nDISTRIBUTION REQUIREMENTS. You may\ + \ reproduce and distribute an unlimited number of copies of the Sample Code and/or Redistributable\ + \ Code, (collectively \"REDISTRIBUTABLE COMPONENTS\")as described above, provided that (a)\ + \ you distribute the REDISTRIBUTABLE COMPONENTS only as part of, or for use in conjunction\ + \ with your Application; (b) your Application adds significant and primary functionality\ + \ to the REDISTRIBUTABLE COMPONENTS; (c) the REDISTRIBUTABLE COMPONENTS only operate in\ + \ conjunction with Microsoft Windows operating system products including Windows NT Workstation\ + \ 4.0, Windows NT Server 4.0, Windows 95, and subsequent versions thereof, (d) you distribute\ + \ your Application containing the REDISTRIBUTABLE COMPONENTS pursuant to an End-User License\ + \ Agreement (which may be \"break-the-seal\", \"click-wrap\", or signed), with terms no\ + \ less protective than those contained herein; (e) you do not permit further redistribution\ + \ of the REDISTRIBUTABLE COMPONENTS by your end-user customers; (f) you must use the setup\ + \ utility included with the REDISTRIBUTABLE COMPONENTS to install the Redistributable Code;\ + \ (g) you do not use Microsoft's name, logo, or trademarks to market your Application; (h)\ + \ you include all copyright and trademark notices contained in the REDISTRIBUTABLE COMPONENTS;\ + \ (i) you include a valid copyright notice on your Application; and (j) you agree to indemnify,\ + \ hold harmless, and defend Microsoft from any against any claims or lawsuits, including\ + \ attorneys' feeds, that arise or result from the use or distribution of your Application.\ + \ \n\nIf you distribute the Redistributable Code separately for use with your Application\ + \ (such as on your web site or as part of an update to your Application), you must include\ + \ an end user license agreement in the install program for the Redistributable Code in the\ + \ form of \\license\\DirectX End User EULA.txt.\n\nMicrosoft reserves all rights not expressly\ + \ granted to you.\n\nContact Microsoft for the applicable royalties due and other licensing\ + \ terms for all other uses and/or distribution of the REDISTRIBUTABLE COMPONENTS.\n\n2.\ + \ COPYRIGHT.\n\nAll right, title and copyrights in and to the SOFTWARE PRODUCT (including\ + \ but not limited to any images, photographs, animations, video, audio, music, text and\ + \ \"applets,\" incorporated into the SOFTWARE PRODUCT), any accompanying printed materials,\ + \ and any copies of the SOFTWARE PRODUCT, are owned by Microsoft or its suppliers. All\ + \ title and intellectual property rights in and to the content which may by accessed through\ + \ us of the SOFTWARE PRODUCT is the property of the respective content owner and may be\ + \ protected by applicable copyright or other intellectual property laws and treaties . This\ + \ EULA grants you no rights to use such content. All rights not expressly granted are reserved\ + \ by Microsoft. \n\n3. DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS.\n\nLimitations on\ + \ Reverse Engineering, Decompilation and Disassembly. You may not reverse engineer, decompile,\ + \ or disassemble the SOFTWARE PRODUCT, except and only to the extent that such activity\ + \ is expressly permitted by applicable law notwithstanding this limitation.\n\nRental. \ + \ You may not rent, lease or lend the SOFTWARE PRODUCT.\n\nSupport Services. Microsoft\ + \ may provide you with support services related to the SOFTWARE PRODUCT (\"Support Services\"\ + ). Use of the Support Services is governed by the Microsoft policies and programs described\ + \ in the user manual, in \"on line\" documentation and/or other Microsoft-provided materials.\ + \ Any supplemental software code provided to you as part of the Support Services shall be\ + \ considered part of the SOFTWARE PRODUCT and subject to the terms and conditions of this\ + \ EULA. With respect to technical information you provide to Microsoft as part of the Support\ + \ Services, Microsoft may use such information for its business purposes, including for\ + \ product support and development. Microsoft will not utilize such technical information\ + \ in a form that personally identifies you.\n\nSoftware Transfer. You may permanently transfer\ + \ all of your rights under this EULA, provided you retain no copies, you transfer all of\ + \ the SOFTWARE PRODUCT (including all component parts, the media and printed materials,\ + \ any upgrades, this EULA and, if applicable, the Certificate of Authenticity), and the\ + \ recipient agrees to the terms of this EULA. If the SOFTWARE PRODUCT is an upgrade, any\ + \ transfer must include all prior versions of the SOFTWARE PRODUCT. \n\nTermination. Without\ + \ prejudice to any other rights, Microsoft may terminate this EULA if you fail to comply\ + \ with the terms and conditions of this EULA. In such event, you must cease all use or\ + \ distribution and destroy all copies of the SOFTWARE PRODUCT and all of its component parts.\n\ + \n4. U.S. GOVERNMENT RESTRICTED RIGHTS.\n\nAll SOFTWARE PRODUCT provided to the U.S. Government\ + \ pursuant to solicitations issued on or after December 1, 1995 is provided with the commercial\ + \ license rights and restrictions described elsewhere herein. All SOFTWARE PRODUCT provided\ + \ to the U.S. Government pursuant to solicitations issued prior to December 1, 1995 is provided\ + \ with \"Restricted Rights\" as provided for in FAR, 48 CFR 52.227-14 (JUNE 1987) or DFAR,\ + \ 48 CFR 252.227-7013 (OCT 1988), as applicable.\n\n5. EXPORT RESTRICTIONS.\n\nExport\ + \ of the SOFTWARE PRODUCT from the United States is regulated by the Export Administration\ + \ Regulations (EAR, 15 CFR 730-744) of the U.S. Commerce Department, Bureau of Export Administration\ + \ (BXA). You agree to comply with the EAR in the export or re-export of the SOFTWARE PRODUCT:\ + \ (i) to any country to which the U.S. has embargoed or restricted the export of goods or\ + \ services, which include, but are not necessarily limited to Cuba, Iran, Iraq, Libya, North\ + \ Korea, Sudan, Syria, and the Federal Republic of Yugoslavia (including Serbia, but not\ + \ Montenegro), or to any national of any such country, wherever located, who intends to\ + \ transmit or transport the SOFTWARE PRODUCT back to such country; (ii) to any person or\ + \ entity who you know or have reason to know will utilize the SOFTWARE PRODUCT or portion\ + \ thereof in the design, development or production of nuclear, chemical or biological weapons;\ + \ or (iii) to any person or entity who has been prohibited from participating in the U.S.\ + \ export transactions by any federal agency of the U.S. government. You warrant and represent\ + \ that neither the BXA nor any other U.S. federal agency has suspended, revoked or denied\ + \ your export privileges.\n\nNO WARRANTIES. \nDISCLAIMER OF WARRANTIES. TO THE MAXIMUM\ + \ EXTENT PERMITTED BY APPLICABLE LAW, MICROSOFT AND ITS SUPPLIERS PROVIDE TO YOU THE SOFTWARE\ + \ PRODUCT, AND ANY (IF ANY) SUPPORT SERVICES RELATED TO THE SOFTWARE PRODUCT (\"SUPPORT\ + \ SERVICES\") AS IS AND WITH ALL FAULTS; AND MICROSOFT AND ITS SUPPLIERS HEREBY DISCLAIM\ + \ WITH RESPECT TO THE SOFTWARE PRODUCT AND SUPPORT SERVICES ALL WARRANTIES AND CONDITIONS,\ + \ WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) WARRANTIES\ + \ OR CONDITIONS OF OR RELATED TO: TITLE, NON-INFRINGMENT, MERCHANTABILITY, FITNESS FOR A\ + \ PARTICULAR PURPOSE,LACK OF VIRUSES, ACCURACY OR COMPLETENESS OF RESPONSES, RESULTS, LACK\ + \ OF NEGLIGENCE OR LACK OF WORKMANLIKE EFFORT, QUIET ENJOYMENT, QUIET POSSESSION, AND CORRESPONDENCE\ + \ TO DESCRIPTION. THE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE PRODUCT\ + \ AND ANY SUPPORT SERVICES REMAINS WITH YOU.\n\nEXCULSION OF INCIDENTAL, CONSEQUENTIAL AND\ + \ CERTAIN OTHER DAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT\ + \ SHALL MICROSOFT OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL\ + \ DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS,\ + \ BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION,PERSONAL INJURY, LOSS OF PRIVACY,\ + \ FAILURE TO MEET ANY DUTY (INCLUDING OF GOOD FAITH OR OF REASONABLE CARE), NEGLIGENCE,\ + \ AND ANY OTHER PECUNIARY OR OTHER LOSS WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED\ + \ TO THE USE OF OR INABILITY TO USE THE SOFTWARE PRODUCT OR THE PROVISION OF OR FAILURE\ + \ TO PROVIDE SUPPORT SERVICES, EVEN IN THE EVENT OF THE FAULT, TORT (INCLUDING NEGLIGENCE),\ + \ STRICT LIABILITY, BREACH OF CONTRACT OR BREACH OF WARRANTY OF MICROSOFT OR ANY SUPPLIER,\ + \ AND EVEN IF MICROSOFT OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\ + \nLIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING ANY DAMAGES THAT YOU MIGHT INCUR\ + \ FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT LIMITATION, ALL DAMAGES REFERENCED ABOVE\ + \ AND ALL DIRECT OR GENERAL DAMAGES), THE ENTIRE LIABILITY OF MICROSOFT AND ANY OF ITS SUPPLIERS\ + \ UNDER ANY PROVISION OF THIS EULA AND YOUR EXCLUSIVE REMEDY FOR ALL OF THE FOREGOING SHALL\ + \ BE LIMITED TO THE GREATER OF THE AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE PRODUCT\ + \ OR U.S.$5.00. THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS SHALL APPLY TO THE\ + \ MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, EVEN IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE.\n\ + \nIf you acquired this product in the United States, this Agreement is governed by the laws\ + \ of the State of Washington.\n\nIf you acquired this product in Canada, this Agreement\ + \ is governed by the laws of the Province of Ontario, Canada. Each of the parties hereto\ + \ irrevocably attorns to the jurisdiction of the courts of the Province of Ontario and further\ + \ agrees to commence any litigation which may arise hereunder in the courts located in the\ + \ Judicial District of York, Province of Ontario.\n\nIf this product was acquired outside\ + \ the United States, then local law may apply.\n\nShould you have any questions concerning\ + \ this Agreement, or if you desire to contact Microsoft for any reason, please contact the\ + \ Microsoft subsidiary serving your country, or write: Microsoft Customer Sales and Service/One\ + \ Microsoft Way/Redmond, WA 98052-6399." json: ms-directx-sdk-eula.json - yml: ms-directx-sdk-eula.yml + yaml: ms-directx-sdk-eula.yml html: ms-directx-sdk-eula.html - text: ms-directx-sdk-eula.LICENSE + license: ms-directx-sdk-eula.LICENSE - license_key: ms-dxsdk-d3dx-9.29.952.3 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-dxsdk-d3dx-9.29.952.3 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + MICROSOFT SOFTWARE LICENSE TERMS + MICROSOFT DXSDK.D3DX + ________________________________________ + + IF YOU LIVE IN (OR ARE A BUSINESS WITH A PRINCIPAL PLACE OF BUSINESS IN) THE UNITED STATES, PLEASE READ THE "BINDING ARBITRATION AND CLASS ACTION WAIVER" SECTION BELOW. IT AFFECTS HOW DISPUTES ARE RESOLVED. + ________________________________________ + These license terms are an agreement between you and Microsoft Corporation (or one of its affiliates). They apply to the software named above and any Microsoft services or software updates (except to the extent such services or updates are accompanied by new or additional terms, in which case those different terms apply prospectively and do not alter your or Microsoft's rights relating to pre-updated software or services). IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. + + 1. INSTALLATION AND USE RIGHTS. + a) General. Subject to the terms of this agreement, you may install and use any number of copies of the software to develop and test your applications, and solely for use on Windows. + b) Third Party Components. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the NOTICE file accompanying the software. + + 2. DATA. + a) Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the product documentation. There are also some features in the software that may enable you to collect data from users of your applications. If you use these features to enable data collection in your applications, you must comply with applicable law, including providing appropriate notices to users of your applications. You can learn more about data collection and use in the help documentation and the privacy statement at https://aka.ms/privacy. Your use of the software operates as your consent to these practices. + b) Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr. + + 3. DISTRIBUTABLE CODE. The software may contain code you are permitted to distribute (i.e. make available for third parties) in applications you develop, as described in this Section. + a) Distribution Rights. The code and test files described below are distributable if included with the software. + i. Distributables. You may copy and distribute the object code form of the software listed in the distributables file list in the software; and + ii. Third Party Distribution. You may permit distributors of your applications to copy and distribute any of this distributable code you elect to distribute with your applications. + + b) Distribution Requirements. For any code you distribute, you must: + i. add significant primary functionality to it in your applications; + ii. require distributors and external end users to agree to terms that protect it and Microsoft at least as much as this agreement; and + iii. indemnify, defend, and hold harmless Microsoft from any claims, including attorneys' fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified distributable code. + + c) Distribution Restrictions. You may not: + i. use Microsoft's trademarks or trade dress in your application in any way that suggests your application comes from or is endorsed by Microsoft; or + ii. modify or distribute the source code of any distributable code so that any part of it becomes subject to any license that requires that the distributable code, any other part of the software, or any of Microsoft's other intellectual property be disclosed or distributed in source code form, or that others have the right to modify it. + + 4. SCOPE OF LICENSE. The software is licensed, not sold. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you will not (and have no right to): + a) work around any technical limitations in the software that only allow you to use it in certain ways; + b) reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; + c) remove, minimize, block, or modify any notices of Microsoft or its suppliers in the software; + d) use the software in any way that is against the law or to create or propagate malware; or + e) share, publish, distribute, or lease the software (except for any distributable code, subject to the terms above), provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. + + 5. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit https://aka.ms/exporting. + + 6. SUPPORT SERVICES. Microsoft is not obligated under this agreement to provide any support services for the software. Any support provided is "as is", "with all faults", and without warranty of any kind. + + 7. UPDATES. The software may periodically check for updates, and download and install them for you. You may obtain updates only from Microsoft or authorized sources. Microsoft may need to update your system to provide you with updates. You agree to receive these automatic updates without any additional notice. Updates may not include or support all existing software features, services, or peripheral devices. + + 8. BINDING ARBITRATION AND CLASS ACTION WAIVER. This Section applies if you live in (or, if a business, your principal place of business is in) the United States. If you and Microsoft have a dispute, you and Microsoft agree to try for 60 days to resolve it informally. If you and Microsoft can't, you and Microsoft agree to binding individual arbitration before the American Arbitration Association under the Federal Arbitration Act ("FAA"), and not to sue in court in front of a judge or jury. Instead, a neutral arbitrator will decide. Class action lawsuits, class-wide arbitrations, private attorney-general actions, and any other proceeding where someone acts in a representative capacity are not allowed; nor is combining individual proceedings without the consent of all parties. The complete Arbitration Agreement contains more terms and is at https://aka.ms/arb-agreement-4. You and Microsoft agree to these terms. + + 9. ENTIRE AGREEMENT. This agreement, and any other terms Microsoft may provide for supplements, updates, or third-party applications, is the entire agreement for the software. + + 10. APPLICABLE LAW AND PLACE TO RESOLVE DISPUTES. If you acquired the software in the United States or Canada, the laws of the state or province where you live (or, if a business, where your principal place of business is located) govern the interpretation of this agreement, claims for its breach, and all other claims (including consumer protection, unfair competition, and tort claims), regardless of conflict of laws principles, except that the FAA governs everything related to arbitration. If you acquired the software in any other country, its laws apply, except that the FAA governs everything related to arbitration. If U.S. federal jurisdiction exists, you and Microsoft consent to exclusive jurisdiction and venue in the federal court in King County, Washington for all disputes heard in court (excluding arbitration). If not, you and Microsoft consent to exclusive jurisdiction and venue in the Superior Court of King County, Washington for all disputes heard in court (excluding arbitration). + + 11. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you: + a) Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights. + b) Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. + c) Germany and Austria. + i. Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software. + ii. Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law. + Subject to the foregoing clause ii., Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence. + + 12. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED "AS IS." YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES, OR CONDITIONS. TO THE EXTENT PERMITTED UNDER APPLICABLE LAWS, MICROSOFT EXCLUDES ALL IMPLIED WARRANTIES, INCLUDING MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. + + 13. LIMITATION ON AND EXCLUSION OF DAMAGES. IF YOU HAVE ANY BASIS FOR RECOVERING DAMAGES DESPITE THE PRECEDING DISCLAIMER OF WARRANTY, YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT, OR INCIDENTAL DAMAGES. + This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, warranty, guarantee, or condition; strict liability, negligence, or other tort; or any other claim; in each case to the extent permitted by applicable law. + It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state, province, or country may not allow the exclusion or limitation of incidental, consequential, or other damages. json: ms-dxsdk-d3dx-9.29.952.3.json - yml: ms-dxsdk-d3dx-9.29.952.3.yml + yaml: ms-dxsdk-d3dx-9.29.952.3.yml html: ms-dxsdk-d3dx-9.29.952.3.html - text: ms-dxsdk-d3dx-9.29.952.3.LICENSE + license: ms-dxsdk-d3dx-9.29.952.3.LICENSE - license_key: ms-entity-framework-4.1 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-entity-framework-4.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS\nENTITY FRAMEWORK 4.1 \n\nMicrosoft Corporation\ + \ (or based on where you live, one of its affiliates) licenses this supplement to you. If\ + \ you are licensed to use Microsoft Windows Operating System software (the \"software\"\ + ), you may use this supplement. You may not use it if you do not have a license for the\ + \ software. You may use this supplement with each validly licensed copy of the software.\n\ + \nThe following license terms describe additional use terms for this supplement. These terms\ + \ and the license terms for the software apply to your use of the supplement. If there is\ + \ a conflict, these supplemental license terms apply.\n\nBy using this supplement, you accept\ + \ these terms. If you do not accept them, do not use this supplement.\nIf you comply with\ + \ these license terms, you have the rights below.\n\n1.\tDISTRIBUTABLE CODE. The supplement\ + \ is comprised of Distributable Code. \"Distributable Code\" is code that you are permitted\ + \ to distribute in programs you develop if you comply with the terms below.\n\na.\tRight\ + \ to Use and Distribute. \n•\tYou may copy and distribute the object code form of the supplement.\n\ + •\tThird Party Distribution. You may permit distributors of your programs to copy and distribute\ + \ the Distributable Code as part of those programs.\n\nb.\tDistribution Requirements. For\ + \ any Distributable Code you distribute, you must\n•\tadd significant primary functionality\ + \ to it in your programs;\n•\tfor any Distributable Code having a filename extension of\ + \ .lib, distribute only the results of running such Distributable Code through a linker\ + \ with your program;\n•\tdistribute Distributable Code included in a setup program only\ + \ as part of that setup program without modification; \n•\trequire distributors and external\ + \ end users to agree to terms that protect it at least as much as this agreement;\n•\tdisplay\ + \ your valid copyright notice on your programs; and\n•\tindemnify, defend, and hold harmless\ + \ Microsoft from any claims, including attorneys’ fees, related to the distribution or use\ + \ of your programs.\n\nc.\tDistribution Restrictions. You may not\n•\talter any copyright,\ + \ trademark or patent notice in the Distributable Code;\n•\tuse Microsoft’s trademarks in\ + \ your programs’ names or in a way that suggests your programs come from or are endorsed\ + \ by Microsoft;\n•\tdistribute Distributable Code to run on a platform other than the Windows\ + \ platform;\n•\tinclude Distributable Code in malicious, deceptive or unlawful programs;\ + \ or\n•\tmodify or distribute the source code of any Distributable Code so that any part\ + \ of it becomes subject to an Excluded License. An Excluded License is one that requires,\ + \ as a condition of use, modification or distribution, that\n•\tthe code be disclosed or\ + \ distributed in source code form; or\n•\tothers have the right to modify it.\n\n2.\tSUPPORT\ + \ SERVICES FOR SUPPLEMENT. Microsoft provides support services for this software as described\ + \ at www.support.microsoft.com/common/international.aspx.\nPlease note: As this software\ + \ is distributed in Quebec, Canada, these license terms are provided below in French.\n\ + Remarque: Ce logiciel étant distribué au Québec, Canada, les termes de cette licence sont\ + \ fournis ci-dessous en français.\n\nTERMES DU CONTRAT DE LICENCE D’UN SUPPLÉMENT MICROSOFT\n\ + ENTITY FRAMEWORK 4.1 \nMicrosoft Corporation (ou en fonction du lieu où vous vivez, l’un\ + \ de ses affiliés) vous accorde une licence pour ce supplément. Si vous êtes titulaire d’une\ + \ licence d’utilisation du logiciel Microsoft Windows Operating System (le « logiciel »),\ + \ vous pouvez utiliser ce supplément. Vous n’êtes pas autorisé à utiliser ce supplément\ + \ si vous n’êtes pas titulaire d’une licence pour le logiciel. Vous pouvez utiliser une\ + \ copie de ce supplément avec chaque copie concédée sous licence du logiciel.\n\nLes conditions\ + \ de licence suivantes décrivent les conditions d’utilisation supplémentaires applicables\ + \ pour ce supplément. Les présentes conditions et les conditions de licence pour le logiciel\ + \ s'appliquent à l'utilisation du supplément. En cas de conflit, les présentes conditions\ + \ de licence supplémentaires s’appliquent.\n\nEn utilisant ce supplément, vous acceptez\ + \ ces termes. Si vous ne les acceptez pas, n’utilisez pas ce supplément.\nDans le cadre\ + \ du présent accord de licence, vous disposez des droits ci-dessous.\n\n1.\tCODE DISTRIBUABLE.\ + \ Le supplément constitue du Code Distribuable. Le « Code Distribuable » est le code que\ + \ vous êtes autorisé à distribuer dans les programmes que vous développez, sous réserve\ + \ de vous conformer aux termes ci-après.\n\na.\tDroit d’utilisation et de distribution.\ + \ \n•\t Vous êtes autorisé à copier et à distribuer la version en code objet du supplément.\n\ + •\tDistribution par des tierces parties. Vous pouvez autoriser les distributeurs de vos\ + \ programmes à copier et à distribuer le code distribuable en tant que partie intégrante\ + \ de ces programmes.\n\nb.\tConditions de distribution. Pour pouvoir distribuer du code\ + \ distribuable, vous devez :\n•\ty ajouter des fonctionnalités importantes au sein de vos\ + \ programmes,\n•\tpour tout Code distribuable dont l’extension de nom de fichier est .lib,\ + \ distribuer seulement les résultats de l’exécution de ce Code distribuable à l’aide d’un\ + \ éditeur de liens avec votre programme ;\n•\tdistribuer le Code distribuable inclus dans\ + \ un programme d’installation seulement en tant que partie intégrante de ce programme sans\ + \ modification ;\n•\tlier les distributeurs et les utilisateurs externes par un contrat\ + \ dont les termes les protègent autant que le présent contrat,\n•\tafficher votre propre\ + \ mention de droits d’auteur valable sur vos programmes et\n•\tgarantir et défendre Microsoft\ + \ contre toute réclamation, y compris pour les honoraires d’avocats, qui résulterait de\ + \ la distribution ou l’utilisation de vos programmes.\n\nc.\tRestrictions de distribution.\ + \ Vous n’êtes pas autorisé à :\n•\tmodifier toute mention de droits d’auteur, de marques\ + \ ou de droits de propriété industrielle pouvant figurer dans le code distribuable,\n•\t\ + utiliser les marques de Microsoft dans les noms de vos programmes ou d’une façon qui suggère\ + \ que vos programmes sont fournis par Microsoft ou sous la responsabilité de Microsoft,\n\ + •\tdistribuer le Code distribuable en vue de son exécution sur une plate-forme autre que\ + \ la plate-forme Windows,\n•\tinclure le Code distribuable dans des programmes malveillants,\ + \ trompeurs ou interdits par la loi, ou\n•\tmodifier ou distribuer le code source de code\ + \ distribuable de manière à ce qu’il fasse l’objet, en partie ou dans son intégralité, d’une\ + \ Licence Exclue. Une Licence Exclue implique comme condition d’utilisation, de modification\ + \ ou de distribution, que :\n•\tle code soit dévoilé ou distribué dans sa forme de code\ + \ source, ou\n•\td’autres aient le droit de le modifier.\n\n2.\tSERVICES D’ASSISTANCE TECHNIQUE\ + \ POUR LE SUPPLÉMENT. Microsoft fournit des services d’assistance technique pour ce logiciel\ + \ disponibles sur le site www.support.microsoft.com/common/international.aspx." json: ms-entity-framework-4.1.json - yml: ms-entity-framework-4.1.yml + yaml: ms-entity-framework-4.1.yml html: ms-entity-framework-4.1.html - text: ms-entity-framework-4.1.LICENSE + license: ms-entity-framework-4.1.LICENSE - license_key: ms-entity-framework-5 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-entity-framework-5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Entity Framework 5 License + MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS + + ENTITY FRAMEWORK 5.0 FOR MICROSOFT WINDOWS OPERATING SYSTEM + + Microsoft Corporation (or based on where you live, one of its affiliates) licenses this supplement to you. If you are licensed to use Microsoft Windows Operating System software (the "software"), you may use this supplement. You may not use it if you do not have a license for the software. You may use this supplement with each validly licensed copy of the software. + + The following license terms describe additional use terms for this supplement. These terms and the license terms for the software apply to your use of the supplement. If there is a conflict, these supplemental license terms apply. + + By using this supplement, you accept these terms. If you do not accept them, do not use this supplement. + + If you comply with these license terms, you have the rights below. + + 1. DISTRIBUTABLE CODE. The supplement is comprised of Distributable Code. "Distributable Code" is code that you are permitted to distribute in programs you develop if you comply with the terms below. + + a. Right to Use and Distribute. + You may copy and distribute the object code form of the supplement. + Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs. + + b. Distribution Requirements. For any Distributable Code you distribute, you must + add significant primary functionality to it in your programs; + for any Distributable Code having a filename extension of .lib, distribute only the results of running such Distributable Code through a linker with your program; + distribute Distributable Code included in a setup program only as part of that setup program without modification; + require distributors and external end users to agree to terms that protect it at least as much as this agreement; + display your valid copyright notice on your programs; and + indemnify, defend, and hold harmless Microsoft from any claims, including attorneys' fees, related to the distribution or use of your programs. + + c. Distribution Restrictions. You may not + alter any copyright, trademark or patent notice in the Distributable Code; + use Microsoft's trademarks in your programs' names or in a way that suggests your programs come from or are endorsed by Microsoft; + distribute Distributable Code to run on a platform other than the Windows platform; + include Distributable Code in malicious, deceptive or unlawful programs; or + modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that + the code be disclosed or distributed in source code form; or + others have the right to modify it. + + 2. SUPPORT SERVICES FOR SUPPLEMENT. Microsoft provides support services for this software as described at www.support.microsoft.com/common/international.aspx. json: ms-entity-framework-5.json - yml: ms-entity-framework-5.yml + yaml: ms-entity-framework-5.yml html: ms-entity-framework-5.html - text: ms-entity-framework-5.LICENSE + license: ms-entity-framework-5.LICENSE - license_key: ms-eula-win-script-host + category: Commercial spdx_license_key: LicenseRef-scancode-ms-eula-win-script-host other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE IMPORTANT-READ CAREFULLY: + This Microsoft End-User License Agreement ("EULA") is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation for the Microsoft software product accompanying this EULA, which includes computer software and may include associated media, printed materials, and "online" or electronic documentation ("SOFTWARE PRODUCT"). By installing, copying, or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, do not install, copy, or use the SOFTWARE PRODUCT. + The SOFTWARE PRODUCT is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The SOFTWARE PRODUCT is licensed, not sold. + + 1. GRANT OF LICENSE. + a. This EULA grants you the right to install and use one copy of the SOFTWARE PRODUCT on a single computer. + b. Redistributable Components. Provided that you comply with Section 1.c., in addition to the rights granted in Section 1.a., Microsoft grants you a nonexclusive, royalty-free right to reproduce and distribute the object code version of the following files located in the SOFTWARE PRODUCT (the "Redistributables"): jscript.dll (contained only in Microsoft JScript), vbscript.dll, scrobj.dll, scrrun.dll, dispex.dll, cscript.exe, wscript.exe, wshom.ocx, wshext.dll, wshcon.dll and the installation executable (scripten.exe, scr56en.exe or ste56en.exe). + c. Redistribution Requirements. If you redistribute the Redistributables, you agree to: (i) distribute the Redistributables in object code form only and solely in conjunction with your software product that adds significant and primary functionality to the Redistributables ("Licensee Product"); (ii) include Visual Basic, Scripting Edition components (vbscript.dll) in any and all Licensee Products that contain Microsoft JScript (jscript.dll); (iii) include a valid copyright notice on your software product; (iv) not use Microsoft's name, logo, or trademarks to market your software product; (v) indemnify, hold harmless, and defend Microsoft from and against any claims or lawsuits, including attorney's fees, that arise or result from the use or distribution of your software product; and (vi) not permit further distribution of the Redistributables by your end user. + d. Documentation. Microsoft grants you a nonexclusive royalty-free right to reproduce and distribute all or portions of the documentation (i.e., "Using Jscript in HTML" tutorial, "Using VBScript in HTML" tutorial, or "Language and Run-time Reference") provided with the SOFTWARE PRODUCT ("Documentation") solely in conjunction with Licensee Product, provided that: (i) you do not modify the Documentation; and (ii) you retain all proprietary notices of Microsoft Corporation included in the Documentation. + + 2. DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS. + a. Limitations on Reverse Engineering, Decompilation, and Disassembly. You may not reverse engineer, decompile, or disassemble the SOFTWARE PRODUCT, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation. + b. Software Transfer. You may permanently transfer all of your rights under this EULA, provided you retain no copies, you transfer all of the SOFTWARE PRODUCT (including all component parts, the media and printed materials, any upgrades, this EULA, and, if applicable, the Certificate of Authenticity), and the recipient agrees to the terms of this EULA. If the SOFTWARE PRODUCT is an upgrade, any transfer must include all prior versions of the SOFTWARE PRODUCT. + c. Termination. Without prejudice to any other rights, Microsoft may terminate this EULA if you fail to comply with the terms and conditions of this EULA. In such event, you must destroy all copies of the SOFTWARE PRODUCT and all of its component parts. + + 3. UPGRADES. If the SOFTWARE PRODUCT is labeled as an upgrade , you must be properly licensed to use a product identified by Microsoft as being eligible for the upgrade in order to use the SOFTWARE PRODUCT. A SOFTWARE PRODUCT labeled as an upgrade replaces and/or supplements the product that formed the basis for your eligibility for the upgrade. You may use the resulting upgraded product only in accordance with the terms of this EULA. If the SOFTWARE PRODUCT is an upgrade of a component of a package of software programs that you licensed as a single product, the SOFTWARE PRODUCT may be used and transferred only as part of that single product package and may not be separated for use on more than one computer. + + 4. COPYRIGHT. All title and copyrights in and to the SOFTWARE PRODUCT (including but not limited to any images, photographs, animations, video, audio, music, text, and "applets" incorporated into the SOFTWARE PRODUCT), the accompanying printed materials, and any copies of the SOFTWARE PRODUCT are owned by Microsoft or its suppliers. The SOFTWARE PRODUCT is protected by copyright laws and international treaty provisions. Therefore, you must treat the SOFTWARE PRODUCT like any other copyrighted material except that you may install the SOFTWARE PRODUCT on a single computer provided you keep the original solely for backup or archival purposes. You may not copy the printed materials accompanying the SOFTWARE PRODUCT. + + 5. U.S. GOVERNMENT RESTRICTED RIGHTS. The SOFTWARE PRODUCT and documentation are provided with RESTRICTED RIGHTS. Use, duplication, or disclosure by the Government is subject to restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs (c)(1) and (2) of the Commercial Computer Software-Restricted Rights at 48 CFR 52.227-19, as applicable. Manufacturer is Microsoft Corporation/One Microsoft Way/Redmond, WA 98052-6399. + + 6. EXPORT RESTRICTIONS. You agree that neither you nor your customers intend to or will, directly or indirectly, export or transmit (i) the SOFTWARE or related documentation and technical data or (ii) your software product as described in Section 1(b) of this License (or any part thereof), or process, or service that is the direct product of the SOFTWARE, to any country to which such export or transmission is restricted by any applicable U.S. regulation or statute, without the prior written consent, if required, of the Bureau of Export Administration of the U.S. Department of Commerce, or such other governmental entity as may have jurisdiction over such export or transmission. + + MISCELLANEOUS + If you acquired this product in the United States, this EULA is governed by the laws of the State of Washington. + If you acquired this product in Canada, this EULA is governed by the laws of the Province of Ontario, Canada. Each of the parties hereto irrevocably attorns to the jurisdiction of the courts of the Province of Ontario and further agrees to commence any litigation which may arise hereunder in the courts located in the Judicial District of York, Province of Ontario. If this product was acquired outside the United States, then local law may apply. Should you have any questions concerning this EULA, or if you desire to contact Microsoft for any reason, please contact the Microsoft subsidiary serving your country, or write: Microsoft Sales Information Center/One Microsoft Way/Redmond, WA 98052-6399. + + LIMITED WARRANTY + NO WARRANTIES. Microsoft expressly disclaims any warranty for the SOFTWARE PRODUCT. The SOFTWARE PRODUCT and any related documentation is provided "as is" without warranty of any kind, either express or implied, including, without limitation, the implied warranties or merchantability, fitness for a particular purpose, or noninfringement. The entire risk arising out of use or performance of the SOFTWARE PRODUCT remains with you. + NO LIABILITY FOR CONSEQUENTIAL DAMAGES. In no event shall Microsoft or its suppliers be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or any other pecuniary loss) arising out of the use of or inability to use this Microsoft product, even if Microsoft has been advised of the possibility of such damages. Because some states/jurisdictions do not allow the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply to you. json: ms-eula-win-script-host.json - yml: ms-eula-win-script-host.yml + yaml: ms-eula-win-script-host.yml html: ms-eula-win-script-host.html - text: ms-eula-win-script-host.LICENSE + license: ms-eula-win-script-host.LICENSE - license_key: ms-exchange-server-2010-sp2-sdk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-exchange-srv-2010-sp2-sdk other_spdx_license_keys: - LicenseRef-scancode-ms-exchange-server-2010-sp2-sdk is_exception: no is_deprecated: no - category: Proprietary Free + text: | + MICROSOFT EXCHANGE SERVER 2010 SP2 WEB SERVICES SOFTWARE DEVELOPMENT KIT + These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and You. Please read them. They apply to the software named above, which includes the media on which You received it, if any. The terms also apply to any Microsoft + updates, + supplements, + Internet-based services, and + support services + for this software, unless other terms accompany those items. If so, those terms apply. + + BY INSTALLING, ACCESSING OR OTHERWISE USING THE SOFTWARE, YOU ACCEPT THE TERMS OF THIS LICENSE AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE AGREEMENT, DO NOT INSTALL, ACCESS OR USE THE SOFTWARE. + YOU MAY USE THE SOFTWARE SOLELY IN PROGRAMS DEVELOPED BY YOU THAT INTEROPERATE WITH MICROSOFT EXCHANGE SERVER (REFERRED TO AS "AUTHORIZED PROGRAMS"). + If You comply with these license terms, You have the rights below. + + INSTALLATION AND USE. You may install and use any number of copies of the software on Your devices solely to design, develop and test Authorized Programs. + + ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS. + Distributable Code. The software contains code that You are permitted to include in Authorized Programs if You comply with the terms below. + + Right to Use and Distribute. The code and text files listed below are "Distributable Code." + + Sample Code. You may modify, copy and distribute the source code form of code marked as "sample" in the Software. + + Redistribution. You may permit the distributors of Authorized Programs to copy and distribute the Distributable Code as part of those programs. + + Distribution Requirements. For any Distributable Code You distribute, You must + add significant primary functionality to it in Authorized Programs; + require distributors and external end users to agree to terms that protect it at least as much as this agreement; + display Your valid copyright notice on Authorized Programs; and + indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of Authorized Programs. + + Distribution Restrictions. You may not + alter any copyright, trademark or patent notice in the Distributable Code; + use Microsoft’s trademarks in Your programs’ names or in a way that suggests Your programs come from or are endorsed by Microsoft; + include Distributable Code in malicious, deceptive or unlawful programs; or + modify, distribute or convey any Distributable Code so that the Distributable Code or any application to which it links, or of which it is a part, becomes subject to an Excluded License. An Excluded License is any other license that requires, as a condition of use, modification, distribution or conveyance that, + the code be disclosed or distributed in source code form; or + others have the right to modify or create derivative works of it. + + INTERNET BASED SERVICES. Microsoft may provide Internet-based services with the software. It may change or cancel them at any time. + + SCOPE OF LICENSE. You may only use the software in Authorized Programs. The software is licensed, not sold. This agreement only gives You some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives You more rights despite this limitation, You may use the software only as expressly permitted in this agreement. You may not: + work around any explicit instructions in the software that limit or restrict their use; + reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; + use the software in any way that intentionally harms services provided by Microsoft or impairs anyone else's use of such services; + use the software to try to gain unauthorized access to any service, data, account or network by any means; + make more copies of the software than reasonably necessary for You to exercise Your rights under this agreement; + publish the software for others to copy; + rent, lease or lend the software or + publish the software as a hosted service without adding significant primary functionality to them in Authorized Programs. + + TRANSFER TO A THIRD PARTY. The first user of the software may transfer them and this agreement directly to a third party. Before the transfer, that party must agree that this agreement applies to the transfer and use of the software. The first user must uninstall the software before transferring them separately from the device. The first user may not retain any copies. + + EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting. + + SUPPORT. Microsoft is not obligated to provide any technical or other support under this agreement ("Support Services") for the software to You. However, if Microsoft chooses to provide any Support Services to You, Your use of such Support Services will be governed by then-current Microsoft policies (i.e. terms separate from this agreement). With respect to any technical or other information You provide to Microsoft in connection with the Support Services, You agree that Microsoft has an unrestricted right to use such information for its business purposes, including for product support and development. Microsoft will not use such information in a form that personally identifies You. + + RESERVATION OF RIGHTS. Except for the licenses expressly granted under this license, Microsoft and its suppliers retain all right, title and interest in and to the software, and all intellectual property rights therein. You are not authorized to alter, modify, copy, edit, format, create derivative works of or otherwise use any materials, content or technology provided under this license except as explicitly provided in this license or approved in advance in writing by Microsoft. + + ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and Support Services that You use, are the entire agreement with respect to the software. + + APPLICABLE LAW. + United States. If You acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where You live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. + Outside the United States. If You acquired the software in any other country, the laws of that country apply. + + LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of Your country. You may also have rights with respect to the party from whom You acquired the software. This agreement does not change Your rights under the laws of Your country if the laws of Your country do not permit it to do so. + + DISCLAIMER OF WARRANTY. The software are licensed "as-is." You bear the risk of using them. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights under Your local laws which this agreement cannot change. To the extent permitted under Your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. + + LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMANGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages. + This limitation applies to: + anything related to the software, content (including code) on third party Internet sites, or third party programs; and + claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to You because Your country may not allow the exclusion or limitation of incidental, consequential or other damages. + + Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French. + Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français. + EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon sont exclues. + LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices. + Cette limitation concerne : + tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers; et + les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur. + Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. + EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. json: ms-exchange-server-2010-sp2-sdk.json - yml: ms-exchange-server-2010-sp2-sdk.yml + yaml: ms-exchange-server-2010-sp2-sdk.yml html: ms-exchange-server-2010-sp2-sdk.html - text: ms-exchange-server-2010-sp2-sdk.LICENSE + license: ms-exchange-server-2010-sp2-sdk.LICENSE - license_key: ms-iis-container-images-eula-2020 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-iis-container-eula-2020 other_spdx_license_keys: - LicenseRef-scancode-ms-iis-container-images-eula-2020 is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS\nCONTAINER OS IMAGE\n\nMicrosoft Corporation\ + \ (or based on where you live, one of its affiliates)\n(referenced as \"us,\" \"we,\" or\ + \ \"Microsoft\") licenses this Container OS Image\nsupplement to you (\"Supplement\"). You\ + \ are licensed to use this Supplement in\nconjunction with the underlying host operating\ + \ system software (\"Host Software\")\nsolely to assist running the containers feature in\ + \ the Host Software. The Host\nSoftware license terms apply to your use of the Supplement.\ + \ You may not use it\nif you do not have a license for the Host Software. You may use this\ + \ Supplement\nwith each validly licensed copy of the Host Software.\n\nADDITIONAL LICENSING\ + \ REQUIREMENTS AND/OR USE RIGHTS\n\nYour use of the Supplement as specified in the preceding\ + \ paragraph may result in\nthe creation or modification of a container image (\"Container\ + \ Image\") that\nincludes certain Supplement components. For clarity, a Container Image\ + \ is\nseparate and distinct from a virtual machine or virtual appliance image.\nPursuant\ + \ to these license terms, we grant you a restricted right to redistribute\nsuch Supplement\ + \ components under the following conditions:\n\n \t(i) you may use the Supplement components\ + \ only as used in, and as a part of\n \tyour Container Image,\n\n\t(ii) you may use such\ + \ Supplement components in your Container Image as long\n\tas you have significant primary\ + \ functionality in your Container Image that\n\tis materially separate and distinct from\ + \ the Supplement; and\n\n\t(iii) you agree to include these license terms (or similar terms\ + \ required by\n\tus or a hoster) with your Container Image to properly license the possible\n\ + \tuse of the Supplement components by your end-users.\n\nWe reserve all other rights not\ + \ expressly granted herein.\n\nBy using this Supplement, you accept these terms. If you\ + \ do not accept them, do\nnot use this Supplement." json: ms-iis-container-images-eula-2020.json - yml: ms-iis-container-images-eula-2020.yml + yaml: ms-iis-container-images-eula-2020.yml html: ms-iis-container-images-eula-2020.html - text: ms-iis-container-images-eula-2020.LICENSE + license: ms-iis-container-images-eula-2020.LICENSE - license_key: ms-ilmerge + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-ilmerge other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + ILMerge license + MICROSOFT ILMerge + + END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE + + IMPORTANT—READ CAREFULLY: This End-User License Agreement ("EULA") is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation ("Microsoft") for the Microsoft software that accompanies this EULA, which includes computer software and may include associated media, printed materials, "online" or electronic documentation, and Internet-based services ("Software"). An amendment or addendum to this EULA may accompany the Software. YOU AGREE TO BE BOUND BY THE TERMS OF THIS EULA BY INSTALLING, COPYING, OR OTHERWISE USING THE SOFTWARE. IF YOU DO NOT AGREE, DO NOT INSTALL, COPY, OR USE THE SOFTWARE. + + 1. GRANTS OF LICENSE. Microsoft grants you the rights described in this EULA provided that you comply with all terms and conditions of this EULA. + + 1.1 License Grant. Microsoft grants to you a personal, nonexclusive, nontransferable, limited license to install and use a reasonable number of copies of the Software on computers residing on your premises for the purposes of designing, developing, and testing, your software product(s), provided that you are the only individual using the Software. + + 1.2 Documentation. You may make and use a reasonable number of copies of any documentation, provided that such copies shall be used only for your personal purposes and are not to be republished or distributed (either in hard copy or electronic form) beyond your premises. + + 2. RESERVATION OF RIGHTS AND OWNERSHIP. The Software is licensed as a single product. Its component parts may not be separated. Microsoft reserves all rights not expressly granted to you in this EULA. The Software is protected by copyright and other intellectual property laws and treaties, and Microsoft (or its suppliers, where applicable) own all right, title, and interest in all intellectual property rights in the Software. The Software is licensed, not sold. + + 3. LIMITATIONS ON REVERSE ENGINEERING, DECOMPILATION, AND DISASSEMBLY. You may not reverse engineer, decompile, or disassemble the Software, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation. + + 4. NO RENTAL/COMMERCIAL HOSTING. You may not rent, lease, lend or provide commercial hosting services with the Software. + + 5. NO SOFTWARE TRANSFER. You may not assign or otherwise transfer the SOFTWARE or any of your rights hereunder to any third party. + + 6. CONSENT TO USE OF DATA. You agree that Microsoft and its affiliates may collect and use technical information gathered as part of the product support services provided to you, if any, related to the Software. Microsoft may use this information solely to improve our products or to provide customized services or technologies to you and will not disclose this information in a form that personally identifies you. + + 7. ADDITIONAL SOFTWARE/SERVICES. Microsoft is not obligated to provide maintenance, technical supplements, updates, or other support to you for the Software licensed under this EULA. In the event that Microsoft does provide such supplements or updates, this EULA applies to such updates, supplements, or add-on components of the Software that Microsoft may provide to you or make available to you after the date you obtain your initial copy of the Software, unless we provide other terms along with the update, supplement, or add-on component. Microsoft reserves the right to discontinue any Internet-based services provided to you or made available to you through the use of the Software. + + 8. EXPORT RESTRICTIONS. You acknowledge that the Software is subject to U.S. export jurisdiction. You agree to comply with all applicable international and national laws that apply to the Software, including the U.S. Export Administration Regulations, as well as end-user, end-use, and destination restrictions issued by U.S. and other governments. For additional information see http://www.microsoft.com/exporting/. + + 9. TERMINATION. Without prejudice to any other rights, Microsoft may terminate this EULA if you fail to comply with any term or condition of this EULA. In such event, you must destroy all copies of the Software and all of its component parts. + + 10. DISCLAIMER OF WARRANTIES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, MICROSOFT AND ITS SUPPLIERS PROVIDE THE SOFTWARE AND SUPPORT SERVICES (IF ANY) AS IS AND WITH ALL FAULTS, AND HEREBY DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES, DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF RELIABILITY OR AVAILABILITY, OF ACCURACY OR COMPLETENESS OF RESPONSES, OF RESULTS, OF WORKMANLIKE EFFORT, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE, ALL WITH REGARD TO THE SOFTWARE, AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT OR OTHER SERVICES, INFORMATION, SOFTWARE, AND RELATED CONTENT THROUGH THE SOFTWARE OR OTHERWISE ARISING OUT OF THE USE OF THE SOFTWARE. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT WITH REGARD TO THE SOFTWARE. + + 11. EXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER DAMAGES. To the maximum extent permitted by applicable law, in no event shall Microsoft or its suppliers be liable for any special, incidental, punitive, indirect, or consequential damages whatsoever (including, but not limited to, damages for loss of profits, LOSS OF DATA, or confidential or other information, for business interruption, for personal injury, for loss of privacy, for failure to meet any duty including of good faith or of reasonable care, for negligence, and for any other pecuniary or other loss whatsoever) arising out of or in any way related to the use of or inability to use the SOFTWARE, the provision of or failure to provide Support OR OTHER Services, informatIon, software, and related CONTENT through the software or otherwise arising out of the use of the software, or otherwise under or in connection with any provision of this EULA, even in the event of the fault, tort (including negligence), misrepresentation, strict liability, breach of contract or breach of warranty of Microsoft or any supplier, and even if Microsoft or any supplier has been advised of the possibility of such damages. + + 12. LIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING ANY DAMAGES THAT YOU MIGHT INCUR FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT LIMITATION, ALL DAMAGES REFERENCED HEREIN AND ALL DIRECT OR GENERAL DAMAGES IN CONTRACT OR ANYTHING ELSE), THE ENTIRE LIABILITY OF MICROSOFT AND ANY OF ITS SUPPLIERS UNDER ANY PROVISION OF THIS EULA AND YOUR EXCLUSIVE REMEDY HEREUNDER SHALL BE LIMITED TO THE GREATER OF THE ACTUAL DAMAGES YOU INCUR IN REASONABLE RELIANCE ON THE SOFTWARE UP TO THE AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE OR US$5.00. THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, EVEN IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE. + + 13. APPLICABLE LAW. This EULA shall be construed under and governed by the laws of the State of Washington, without regard to conflicts of law principles. + + 14. ENTIRE AGREEMENT; SEVERABILITY. This EULA (including any addendum or amendment to this EULA which is included with the Software) are the entire agreement between you and Microsoft relating to the Software and the support services (if any) and they supersede all prior or contemporaneous oral or written communications, proposals and representations with respect to the Software or any other subject matter covered by this EULA. If any provision of this EULA is held to be void, invalid, unenforceable or illegal, the other provisions shall continue in full force and effect json: ms-ilmerge.json - yml: ms-ilmerge.yml + yaml: ms-ilmerge.yml html: ms-ilmerge.html - text: ms-ilmerge.LICENSE + license: ms-ilmerge.LICENSE - license_key: ms-invisible-eula-1.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-invisible-eula-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Microsoft Invisible Computing + + MICROSOFT SHARED SOURCE LICENSE Version 1.0 FOR MICROSOFT INVISIBLE COMPUTING + This License governs use of the accompanying Software. + You can use this Software for any non-commercial purpose, including distributing derivatives. Running your business operations would not be considered non-commercial. + + For commercial purposes, you can reference this software solely to assist in developing and testing your own software and hardware for the Microsoft Invisible Computing platform. You may not distribute this software in source or object form for commercial purposes under any circumstances. + + In return, we simply require that you agree: + + Not to remove any copyright notices from the Software. + That if you distribute the Software in source code form you do so only under this License (i.e. you must include a complete copy of this License with your distribution), and if you distribute the Software solely in object form you only do so under any license that complies with this License. + + That the Software comes "as is", with no warranties. None whatsoever. This means no implied warranty of merchantability or fitness for a particular purpose or any warranty of non-infringement. Also, you must pass this disclaimer on whenever you distribute the Software. + + That Microsoft will not be liable for any of those types of damages known as indirect, special, consequential, or incidental related to the Software or this License, to the maximum extent the law permits. Also, you must pass this limitation of liability on whenever you distribute the Software. + + That if you sue anyone over patents that you think may apply to the Software for a person's use of the Software, your license to the Software ends automatically. + + That the patent rights Microsoft is licensing only apply to the Software, not to any derivatives you make. + + That your rights under the License end automatically if you breach it in any way. + + ©2004 Microsoft Corporation. All rights reserved. json: ms-invisible-eula-1.0.json - yml: ms-invisible-eula-1.0.yml + yaml: ms-invisible-eula-1.0.yml html: ms-invisible-eula-1.0.html - text: ms-invisible-eula-1.0.LICENSE + license: ms-invisible-eula-1.0.LICENSE - license_key: ms-jdbc-driver-40-sql-server + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-jdbc-driver-40-sql-server other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT JDBC DRIVER 4.0 FOR SQL SERVER \n\nThese\ + \ license terms are an agreement between Microsoft Corporation (or based on where you live,\ + \ one of its affiliates) and you. Please read them. They apply to the software named above,\ + \ which includes the media on which you received it, if any. The terms also apply to any\ + \ Microsoft\n• updates,\n• supplements,\n• Internet-based services, and\n• support services\n\ + for this software, unless other terms accompany those items. If so, those terms apply.\n\ + BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE\ + \ SOFTWARE.\nIf you comply with these license terms, you have the rights below.\n\n1. INSTALLATION\ + \ AND USE RIGHTS. You may install and use any number of copies of the software on your devices\ + \ to design, develop and test your programs.\n\n2. SCOPE OF LICENSE. The software is licensed,\ + \ not sold. This agreement only gives you some rights to use the software. Microsoft reserves\ + \ all other rights. Unless applicable law gives you more rights despite this limitation,\ + \ you may use the software only as expressly permitted in this agreement. In doing so, you\ + \ must comply with any technical limitations in the software that only allow you to use\ + \ it in certain ways. You may not\n• disclose the results of any benchmark tests of the\ + \ software to any third party without Microsoft’s prior written approval;\n• work around\ + \ any technical limitations in the software;\n• reverse engineer, decompile or disassemble\ + \ the software, except and only to the extent that applicable law expressly permits, despite\ + \ this limitation;\n• make more copies of the software than specified in this agreement\ + \ or allowed by applicable law, despite this limitation;\n• publish the software for others\ + \ to copy;\n• rent, lease or lend the software;\n• transfer the software or this agreement\ + \ to any third party; or\n• use the software for commercial software hosting services.\n\ + \n3. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall\ + \ the software.\n\n4. DOCUMENTATION. Any person that has valid access to your computer or\ + \ internal network may copy and use the documentation for your internal, reference purposes.\n\ + \n5. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations.\ + \ You must comply with all domestic and international export laws and regulations that apply\ + \ to the software. These laws include restrictions on destinations, end users and end use.\ + \ For additional information, see www.microsoft.com/exporting.\n\n6. SUPPORT SERVICES. Because\ + \ this software is \"as is,\" we may not provide support services for it.\n\n7. ENTIRE AGREEMENT.\ + \ This agreement, and the terms for supplements, updates, Internet-based services and support\ + \ services that you use, are the entire agreement for the software and support services.\n\ + \n8. APPLICABLE LAW.\na. United States. If you acquired the software in the United States,\ + \ Washington state law governs the interpretation of this agreement and applies to claims\ + \ for breach of it, regardless of conflict of laws principles. The laws of the state where\ + \ you live govern all other claims, including claims under state consumer protection laws,\ + \ unfair competition laws, and in tort.\nb. Outside the United States. If you acquired the\ + \ software in any other country, the laws of that country apply.\n\n9. LEGAL EFFECT. This\ + \ agreement describes certain legal rights. You may have other rights under the laws of\ + \ your country. You may also have rights with respect to the party from whom you acquired\ + \ the software. This agreement does not change your rights under the laws of your country\ + \ if the laws of your country do not permit it to do so.\n\n10. DISCLAIMER OF WARRANTY.\ + \ THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO\ + \ EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS\ + \ UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER\ + \ YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n11. LIMITATION ON AND EXCLUSION OF REMEDIES\ + \ AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO\ + \ U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS,\ + \ SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\nThis limitation applies to\n• anything related\ + \ to the software, services, content (including code) on third party Internet sites, or\ + \ third party programs; and\n• claims for breach of contract, breach of warranty, guarantee\ + \ or condition, strict liability, negligence, or other tort to the extent permitted by applicable\ + \ law.\nIt also applies even if Microsoft knew or should have known about the possibility\ + \ of the damages. The above limitation or exclusion may not apply to you because your country\ + \ may not allow the exclusion or limitation of incidental, consequential or other damages.\n\ + \nPlease note: As this software is distributed in Quebec, Canada, some of the clauses in\ + \ this agreement are provided below in French.\n\nRemarque : Ce logiciel étant distribué\ + \ au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français.\n\ + EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute\ + \ utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune\ + \ autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit\ + \ local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles\ + \ sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation\ + \ à un usage particulier et d’absence de contrefaçon sont exclues.\nLIMITATION DES DOMMAGES-INTÉRÊTS\ + \ ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et\ + \ de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur\ + \ de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages,\ + \ y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices.\nCette\ + \ limitation concerne :\n• tout ce qui est relié au logiciel, aux services ou au contenu\ + \ (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers\ + \ ; et\n• les réclamations au titre de violation de contrat ou de garantie, ou au titre\ + \ de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée\ + \ par la loi en vigueur.\nElle s’applique également, même si Microsoft connaissait ou devrait\ + \ connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou\ + \ la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque\ + \ nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera\ + \ pas à votre égard.\nEFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques.\ + \ Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat\ + \ ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le\ + \ permettent pas." json: ms-jdbc-driver-40-sql-server.json - yml: ms-jdbc-driver-40-sql-server.yml + yaml: ms-jdbc-driver-40-sql-server.yml html: ms-jdbc-driver-40-sql-server.html - text: ms-jdbc-driver-40-sql-server.LICENSE + license: ms-jdbc-driver-40-sql-server.LICENSE - license_key: ms-jdbc-driver-41-sql-server + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-jdbc-driver-41-sql-server other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT JDBC DRIVER 4.1 FOR SQL SERVER\n\nThese\ + \ license terms are an agreement between Microsoft Corporation (or based on where you \n\ + live, one of its affiliates) and you. Please read them. They apply to the software \nnamed\ + \ above, which includes the media on which you received it, if any. The terms also apply\ + \ to \nany Microsoft\n\n• updates,\n• supplements,\n• Internet-based services, and\n• support\ + \ services\n\nfor this software, unless other terms accompany those items. If so, those\ + \ terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT \nACCEPT\ + \ THEM, DO NOT USE THE SOFTWARE.\n\nIf you comply with these license terms, you have the\ + \ rights below.\n\n1. INSTALLATION AND USE RIGHTS. \n\na. Installation and Use.\n\ni. You\ + \ may install and use any number of copies of the software on your devices.\n\nb. Third\ + \ Party Programs. The software may include third party programs that Microsoft, \nnot the\ + \ third party, licenses to you under this agreement. Notices, if any, for the third \nparty\ + \ program are included for your information only.\n\n2. SCOPE OF LICENSE. The software is\ + \ licensed, not sold. This agreement only gives you \nsome rights to use the software. Microsoft\ + \ reserves all other rights. Unless applicable law \ngives you more rights despite this\ + \ limitation, you may use the software only as expressly \npermitted in this agreement.\ + \ In doing so, you must comply with any technical limitations in \nthe software that only\ + \ allow you to use it in certain ways. You may not\n\n• work around any technical limitations\ + \ in the software;\n• reverse engineer, decompile or disassemble the software, except and\ + \ only to the extent \nthat applicable law expressly permits, despite this limitation;\n\ + • make more copies of the software than specified in this agreement or allowed by \napplicable\ + \ law, despite this limitation;\n• publish the software for others to copy;\n• rent, lease\ + \ or lend the software;\n• transfer the software or this agreement to any third party; or\n\ + • use the software for commercial software hosting services.\n\n3. EXPORT RESTRICTIONS.\ + \ The software is subject to United States export laws and \nregulations. You must comply\ + \ with all domestic and international export laws and \nregulations that apply to the software.\ + \ These laws include restrictions on destinations, end \nusers and end use. For additional\ + \ information, see www.microsoft.com/exporting.\n\n4. SUPPORT SERVICES. Because this software\ + \ is \"as is,\" we may not provide support \nservices for it.\n\n5. ENTIRE AGREEMENT. This\ + \ agreement, and the terms for supplements, updates, Internet-\nbased services and support\ + \ services that you use, are the entire agreement for the software \nand support services.\n\ + \n6. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States,\ + \ Washington state law \ngoverns the interpretation of this agreement and applies to claims\ + \ for breach of it, \nregardless of conflict of laws principles. The laws of the state where\ + \ you live govern all \nother claims, including claims under state consumer protection laws,\ + \ unfair competition \nlaws, and in tort.\n\nb. Outside the United States. If you acquired\ + \ the software in any other country, the laws of \nthat country apply.\n\n7. LEGAL EFFECT.\ + \ This agreement describes certain legal rights. You may have other rights \nunder the laws\ + \ of your country. You may also have rights with respect to the party from \nwhom you acquired\ + \ the software. This agreement does not change your rights under the laws \nof your country\ + \ if the laws of your country do not permit it to do so.\n\n8. DISCLAIMER OF WARRANTY. THE\ + \ SOFTWARE IS LICENSED \"AS-IS.\" YOU \nBEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS\ + \ \nWARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE \nADDITIONAL CONSUMER RIGHTS UNDER\ + \ YOUR LOCAL LAWS WHICH THIS \nAGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER \n\ + YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES \nOF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE AND NON-\nINFRINGEMENT.\n\n9. LIMITATION ON AND EXCLUSION OF\ + \ REMEDIES AND DAMAGES. YOU CAN \nRECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES\ + \ UP \nTO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING \nCONSEQUENTIAL, LOST\ + \ PROFITS, SPECIAL, INDIRECT OR INCIDENTAL \nDAMAGES.\n\nThis limitation applies to\n\n\ + • anything related to the software, services, content (including code) on third party Internet\ + \ \nsites, or third party programs, and\n• claims for breach of contract, breach of warranty,\ + \ guarantee or condition, strict liability, \nnegligence, or other tort to the extent permitted\ + \ by applicable law.\n\nIt also applies even if Microsoft knew or should have known about\ + \ the possibility of the \ndamages. The above limitation or exclusion may not apply to you\ + \ because your country may \nnot allow the exclusion or limitation of incidental, consequential\ + \ or other damages.\n\nPlease note: As this software is distributed in Quebec, Canada, some\ + \ of the clauses in this \nagreement are provided below in French.\n\nRemarque : Ce logiciel\ + \ étant distribué au Québec, Canada, certaines des clauses dans ce \ncontrat sont fournies\ + \ ci-dessous en français.\n\nEXONÉRATION DE GARANTIE. Le logiciel visé par une licence est\ + \ offert « tel quel ». \nToute utilisation de ce logiciel est à votre seule risque et péril.\ + \ Microsoft n’accorde aucune \nautre garantie expresse. Vous pouvez bénéficier de droits\ + \ additionnels en vertu du droit local \nsur la protection des consommateurs, que ce contrat\ + \ ne peut modifier. La ou elles sont \npermises par le droit locale, les garanties implicites\ + \ de qualité marchande, d’adéquation à un \nusage particulier et d’absence de contrefaçon\ + \ sont exclues.\n\nLIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE \nRESPONSABILITÉ POUR\ + \ LES DOMMAGES. Vous pouvez obtenir de Microsoft et de \nses fournisseurs une indemnisation\ + \ en cas de dommages directs uniquement à hauteur de 5,00 \n$ US. Vous ne pouvez prétendre\ + \ à aucune indemnisation pour les autres dommages, y \ncompris les dommages spéciaux, indirects\ + \ ou accessoires et pertes de bénéfices.\n\nCette limitation concerne :\n• tout ce qui est\ + \ relié au logiciel, aux services ou au contenu (y compris le code) figurant \nsur des sites\ + \ Internet tiers ou dans des programmes tiers ; et\n• les réclamations au titre de violation\ + \ de contrat ou de garantie, ou au titre de \nresponsabilité stricte, de négligence ou d’une\ + \ autre faute dans la limite autorisée par la loi \nen vigueur.\n\nElle s’applique également,\ + \ même si Microsoft connaissait ou devrait connaître l’éventualité \nd’un tel dommage. Si\ + \ votre pays n’autorise pas l’exclusion ou la limitation de responsabilité \npour les dommages\ + \ indirects, accessoires ou de quelque nature que ce soit, il se peut que la \nlimitation\ + \ ou l’exclusion ci-dessus ne s’appliquera pas à votre égard.\n\nEFFET JURIDIQUE. Le présent\ + \ contrat décrit certains droits juridiques. Vous pourriez avoir \nd’autres droits prévus\ + \ par les lois de votre pays. Le présent contrat ne modifie pas les droits \nque vous confèrent\ + \ les lois de votre pays si celles-ci ne le permettent pas." json: ms-jdbc-driver-41-sql-server.json - yml: ms-jdbc-driver-41-sql-server.yml + yaml: ms-jdbc-driver-41-sql-server.yml html: ms-jdbc-driver-41-sql-server.html - text: ms-jdbc-driver-41-sql-server.LICENSE + license: ms-jdbc-driver-41-sql-server.LICENSE - license_key: ms-jdbc-driver-60-sql-server + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-jdbc-driver-60-sql-server other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT JDBC DRIVER 6.0 FOR SQL SERVER\n\nThese\ + \ license terms are an agreement between Microsoft Corporation (or based on where you \n\ + live, one of its affiliates) and you. Please read them. They apply to the software \nnamed\ + \ above, which includes the media on which you received it, if any. The terms also apply\ + \ to \nany Microsoft\n\n* updates,\n* supplements,\n* Internet-based services, and\n* support\ + \ services\n\nfor this software, unless other terms accompany those items. If so, those\ + \ terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT \nACCEPT\ + \ THEM, DO NOT USE THE SOFTWARE.\n\nIf you comply with these license terms, you have the\ + \ rights below.\n\n1. INSTALLATION AND USE RIGHTS. \n\na. Installation and Use.\n\ni. You\ + \ may install and use any number of copies of the software on your devices.\n\nb. Third\ + \ Party Programs. The software may include third party programs that Microsoft, \nnot the\ + \ third party, licenses to you under this agreement. Notices, if any, for the third \nparty\ + \ program are included for your information only.\n\n2. ADDITIONAL LICENSING REQUIREMENTS\ + \ AND/OR USE RIGHTS.\n\na. Distributable Code.\n\ni.\tRight to Use and Distribute. You are\ + \ permitted to distribute the software in programs you \ndevelop if you comply with the\ + \ terms below:\n\n* You may copy and distribute the object code form of the software (Distributable\ + \ Code) in \nprograms you develop. You may not modify the software.\n* You may permit distributors\ + \ of your programs to copy and distribute the Distributable Code \nas part of those programs.\n\ + ii.\tDistribution Requirements. For any Distributable Code you distribute, you must\n* add\ + \ significant primary functionality to it in your programs;\n* require distributors and\ + \ external end users to agree to terms that protect it at least as \nmuch as this agreement;\n\ + * display your valid copyright notice on your programs; and\n* indemnify, defend, and hold\ + \ harmless Microsoft from any claims, including attorneys fees, \nrelated to the distribution\ + \ or use of your programs.\niii.\tDistribution Restrictions. You may not\n* alter any copyright,\ + \ trademark or patent notice in the Distributable Code;\n* use Microsoft trademarks in your\ + \ programs names or in a way that suggests your programs \ncome from or are endorsed by\ + \ Microsoft;\n* include Distributable Code in malicious, deceptive or unlawful programs;\ + \ or\n* modify or distribute the source code of any Distributable Code so that any part\ + \ of it \nbecomes subject to an Excluded License. An Excluded License is one that requires,\ + \ as a \ncondition of use, modification or distribution, that\n* the code be disclosed or\ + \ distributed in source code form; or\n* others have the right to modify it.\n\n\n3. SCOPE\ + \ OF LICENSE. The software is licensed, not sold. This agreement only gives you \nsome rights\ + \ to use the software. Microsoft reserves all other rights. Unless applicable law \ngives\ + \ you more rights despite this limitation, you may use the software only as expressly \n\ + permitted in this agreement. In doing so, you must comply with any technical limitations\ + \ in \nthe software that only allow you to use it in certain ways. You may not\n\n* work\ + \ around any technical limitations in the software;\n* reverse engineer, decompile or disassemble\ + \ the software, except and only to the extent \nthat applicable law expressly permits, despite\ + \ this limitation;\n* make more copies of the software than specified in this agreement\ + \ or allowed by \napplicable law, despite this limitation;\n* publish the software for others\ + \ to copy;\n* rent, lease or lend the software;\n* transfer the software or this agreement\ + \ to any third party; or\n* use the software for commercial software hosting services.\n\ + \n4. EXPORT RESTRICTIONS. The software is subject to United States export laws and \nregulations.\ + \ You must comply with all domestic and international export laws and \nregulations that\ + \ apply to the software. These laws include restrictions on destinations, end \nusers and\ + \ end use. For additional information, see www.microsoft.com/exporting.\n\n5. SUPPORT SERVICES.\ + \ Because this software is \"as is\" we may not provide support \nservices for it.\n\n6.\ + \ ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-\n\ + based services and support services that you use, are the entire agreement for the software\ + \ \nand support services.\n\n7. APPLICABLE LAW.\n\na. United States. If you acquired the\ + \ software in the United States, Washington state law \ngoverns the interpretation of this\ + \ agreement and applies to claims for breach of it, \nregardless of conflict of laws principles.\ + \ The laws of the state where you live govern all \nother claims, including claims under\ + \ state consumer protection laws, unfair competition \nlaws, and in tort.\n\nb. Outside\ + \ the United States. If you acquired the software in any other country, the laws of \nthat\ + \ country apply.\n\n8. LEGAL EFFECT. This agreement describes certain legal rights. You\ + \ may have other rights \nunder the laws of your country. You may also have rights with\ + \ respect to the party from \nwhom you acquired the software. This agreement does not change\ + \ your rights under the laws \nof your country if the laws of your country do not permit\ + \ it to do so.\n\n9. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS\". YOU \n\ + BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS \nWARRANTIES, GUARANTEES OR CONDITIONS.\ + \ YOU MAY HAVE \nADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS \nAGREEMENT\ + \ CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER \nYOUR LOCAL LAWS, MICROSOFT EXCLUDES THE\ + \ IMPLIED WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-\nINFRINGEMENT.\n\ + \n10. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN \nRECOVER FROM MICROSOFT\ + \ AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP \nTO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER\ + \ DAMAGES, INCLUDING \nCONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL \nDAMAGES.\n\ + \nThis limitation applies to\n\n* anything related to the software, services, content (including\ + \ code) on third party Internet \nsites, or third party programs, and\n* claims for breach\ + \ of contract, breach of warranty, guarantee or condition, strict liability, \nnegligence,\ + \ or other tort to the extent permitted by applicable law.\n\nIt also applies even if Microsoft\ + \ knew or should have known about the possibility of the \ndamages. The above limitation\ + \ or exclusion may not apply to you because your country may \nnot allow the exclusion or\ + \ limitation of incidental, consequential or other damages.\n\nPlease note: As this software\ + \ is distributed in Quebec, Canada, some of the clauses in this \nagreement are provided\ + \ below in French.\n\nRemarque : Ce logiciel Ètant distribuÈ au QuÈbec, Canada, certaines\ + \ des clauses dans ce \ncontrat sont fournies ci-dessous en franÁais.\n\nEXON…RATION DE\ + \ GARANTIE. Le logiciel visÈ par une licence est offert ´ tel quel ª. \nToute utilisation\ + \ de ce logiciel est ‡ votre seule risque et pÈril. Microsoft níaccorde aucune \nautre garantie\ + \ expresse. Vous pouvez bÈnÈficier de droits additionnels en vertu du droit local \nsur\ + \ la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont \n\ + permises par le droit locale, les garanties implicites de qualitÈ marchande, díadÈquation\ + \ ‡ un \nusage particulier et díabsence de contrefaÁon sont exclues.\n\nLIMITATION DES DOMMAGES-INT…R TS\ + \ ET EXCLUSION DE \nRESPONSABILIT… POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et\ + \ de \nses fournisseurs une indemnisation en cas de dommages directs uniquement ‡ hauteur\ + \ de 5,00 \n$ US. Vous ne pouvez prÈtendre ‡ aucune indemnisation pour les autres dommages,\ + \ y \ncompris les dommages spÈciaux, indirects ou accessoires et pertes de bÈnÈfices.\n\n\ + Cette limitation concerne :\n* tout ce qui est reliÈ au logiciel, aux services ou au contenu\ + \ (y compris le code) figurant \nsur des sites Internet tiers ou dans des programmes tiers\ + \ ; et\n* les rÈclamations au titre de violation de contrat ou de garantie, ou au titre\ + \ de \nresponsabilitÈ stricte, de nÈgligence ou díune autre faute dans la limite autorisÈe\ + \ par la loi \nen vigueur.\n\nElle síapplique Ègalement, mÍme si Microsoft connaissait ou\ + \ devrait connaÓtre líÈventualitÈ \ndíun tel dommage. Si votre pays níautorise pas líexclusion\ + \ ou la limitation de responsabilitÈ \npour les dommages indirects, accessoires ou de quelque\ + \ nature que ce soit, il se peut que la \nlimitation ou líexclusion ci-dessus ne síappliquera\ + \ pas ‡ votre Ègard.\n\nEFFET JURIDIQUE. Le prÈsent contrat dÈcrit certains droits juridiques.\ + \ Vous pourriez avoir \ndíautres droits prÈvus par les lois de votre pays. Le prÈsent contrat\ + \ ne modifie pas les droits \nque vous confËrent les lois de votre pays si celles-ci ne\ + \ le permettent pas." json: ms-jdbc-driver-60-sql-server.json - yml: ms-jdbc-driver-60-sql-server.yml + yaml: ms-jdbc-driver-60-sql-server.yml html: ms-jdbc-driver-60-sql-server.html - text: ms-jdbc-driver-60-sql-server.LICENSE + license: ms-jdbc-driver-60-sql-server.LICENSE - license_key: ms-kinext-win-sdk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-kinext-win-sdk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Microsoft Kinect for Windows + Software Development Kit (SDK) + + These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. It also applies to any Microsoft + + updates, + supplements, + documentation, and + support services + + for this software, unless other terms accompany those items. If so, those terms apply. + + The software is licensed, not sold. By downloading, installing, accessing, or using the software, you accept all terms in this agreement. If you do not accept them, do not download, install, access, or use the software. "You" or "you" means the individual who downloads, installs, accesses, or uses the software (and, if you represent a legal entity, it also means that entity, and you represent and warrant that you are authorized to enter into this agreement for that entity). + If you comply with these license terms, you have the rights below. + + INSTALLATION AND USE RIGHTS. + + Installation and Use. You may (i) install and use any number of copies of the software (only when installed using the accompanying software installer package) on your computer to design, develop, and test your programs that run specifically on a Microsoft Windows operating system, and that are intended for use solely in connection with Microsoft Kinect for Windows sensor, and its associated drivers and runtime software, and no other sensor ("Kinect for Windows Applications"), and (ii) distribute your Kinect for Windows Applications, subject to the terms in this agreement. + + Restricted Use with the Kinect for Xbox 360 Sensor. The Kinect for Xbox 360 sensor is sold subject to the terms of a Limited Warranty and Software License Agreement that permits use of the device solely in connection with an Xbox 360 or Xbox 360 S console. Notwithstanding this restriction in the Kinect for Xbox 360 sensor Limited Warranty and Software License Agreement, you may use an unmodified Kinect for Xbox 360 sensor to assist in the design, development, and testing of your Kinect for Windows Applications, subject to the terms and conditions of this agreement. All of the other terms of the Kinect for Xbox 360 Limited Warranty and Software License Agreement remain unchanged. You agree that end users of Kinect for Windows Applications are not licensed to use Kinect for Xbox 360 sensors in connection with such Kinect for Windows Applications, and that you and your distributors will not directly or indirectly assist, encourage, or enable Kinect for Windows Application end users to do so. + + Included Microsoft Programs. The software includes other Microsoft programs. The license terms with those programs apply to your use of them. + + No High Risk Use. WARNING: The Kinect for Xbox 360 sensor and the Kinect for Windows sensor (the "Kinect Sensors"), and the software are not fault-tolerant. The Kinect Sensors and the software are not designed or intended for use with any program where failure or fault of any kind of the Kinect Sensors or software could lead to death or serious bodily injury of any person, or to severe physical or environmental damage ("High Risk Use"). You are not licensed to, and you agree not to, use, distribute, or sublicense the use of the Kinect Sensors and/or software in, or in conjunction with, High Risk Use. High Risk Use is STRICTLY PROHIBITED. High Risk Use includes, for example, the following: aircraft navigation and control of other modes of human mass transportation, nuclear or chemical facilities. + + ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS + + Distributable Code. The software contains code that you are permitted to distribute solely in Kinect for Windows Applications if you comply with the terms below. + + Right to Use and Distribute. The code and text files listed below are "Distributable Code." + REDIST.TXT Files. You may copy and distribute the object code form of code listed in REDIST.TXT files. + Sample Code. You may modify, copy, and distribute the source and object code form of code in the Samples subdirectory. + Third Party Distribution. You may permit distributors of your Kinect for Windows Applications to copy and distribute the Distributable Code as part of those Kinect for Windows Applications. + + Distribution Requirements. For any Distributable Code you distribute, you must: + add significant primary functionality to it in your Kinect for Windows Applications; + distribute Distributable Code included in a setup program only as part of that setup program without modification; + clearly state in marketing materials, documentation, and other materials related to the Kinect for Windows Application (e.g. on the webpages on which the Kinect for Windows Application is described or from which the Kinect for Windows Application may be downloaded or otherwise obtained), that it is intended for use only with the Kinect for Windows sensor; + require distributors and external end users to agree to terms that protect it at least as much as this agreement; and + display your valid copyright notice on your Kinect for Windows Applications. + + Distribution Restrictions. You may not: + alter any copyright, trademark, or patent notice in the Distributable Code; + use Microsoft's trademarks, including, but not limited to Microsoft, Kinect, and Windows, in your Kinect for Windows Applications' names or in a way that suggests your Kinect for Windows Applications come from or are endorsed by Microsoft; + distribute Distributable Code to run on a platform other than a Microsoft Windows operating system; + include Distributable Code in malicious, obscene, deceptive, or unlawful programs; + include Distributable Code for any programs designed or intended for High Risk Use; + or + modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification, or distribution, that + the code be disclosed or distributed in source code form; or + others have the right to modify it. + + SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not: + access or use, or attempt to access or use, features of the Kinect Sensors that are not exposed or enabled by the software; + distribute Kinect for Windows Applications for use with any sensor other than Kinect for Windows sensor, its associated drivers, and runtime software; + use the software or any Kinect for Windows Applications in any High Risk Use; + work around any technical limitations in the software; + reverse engineer, decompile, or disassemble any part of the software not provided in source code form, except and only to the extent that applicable law expressly permits, despite this limitation; + publish the software for others to copy; + rent, lease, or lend the software; + transfer the software or this agreement to any third party; or + use the software for commercial software hosting services. + + REGULATORY COMPLIANCE. You agree that your development, marketing, sales, and distribution of Kinect for Windows Applications shall be in compliance with all applicable legal requirements, including compliance with the medical device regulatory requirements of the U.S. Federal Food, Drug, and Cosmetic Act and any associated requirements, or similar laws, regulations, or policies in other countries or territories. To the extent required by law, you are solely responsible for obtaining or filing any approval, clearance, registration, permit, or other regulatory authorization and shall comply with the requirements of such authorization. + + ACKNOWLEDGEMENT AND WAIVER. You acknowledge the software may allow you to control the Kinect Sensors, which are mechanical hardware devices that include motors to move the device, a fan to cool it, and other mechanical components. Depending on how you elect to use the software, you could harm persons or damage or destroy the Kinect Sensors, products incorporating the Kinect Sensors, or other property. In using the software, you must take steps to design and test your Kinect for Windows Applications to ensure that your applications do not present unreasonable risks of personal injury or death, property damage, or other losses. Kinect Sensors utilize complex hardware and software technology that may not always function as intended. You must design your application so that any failure of a Kinect Sensor and/or the software does not cause personal injury or death, property damage, or other losses. If you choose to use the software, you assume all risk that your use of the Kinect Sensors and/or the software causes any harm or loss, including to the end users of your Kinect for Windows Applications, and you agree to waive all claims against Microsoft and its affiliates related to such use (including, but not limited to, any claim that a Kinect Sensor or the software is defective) and to hold Microsoft and its affiliates harmless from such claims. + + INDEMNIFICATION. You agree to indemnify, defend, and hold harmless Microsoft and its affiliates from any claims, including attorneys' fees, related to the distribution or use of your Kinect for Windows Applications. + + BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software. + + DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. + + SUPPORT SERVICES. Because this software is "as is," we may not provide support services for it. + + EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users, and end use. For additional information, see www.microsoft.com/exporting. + + ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. + + APPLICABLE LAW. + + United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. + + Outside the United States. If you acquired the software in any other country, the laws of that country apply. + + LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your state, province, or country. This agreement does not change your rights under the laws of your state, province, or country if the laws of your state, province, or country do not permit it to do so. + + DISCLAIMER OF WARRANTY. The software is licensed "as-is." You bear all risk of using it. Microsoft gives no express warranties, guarantees, or conditions. You may have additional consumer rights under your local laws that this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose, and non-infringement. + + LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages. + + This limitation applies to + anything related to the software, services, content (including code) on third-party Internet sites, or third-party programs; and + claims for breach of contract; breach of warranty, guarantee, or condition; strict liability, negligence, or other tort, to the extent permitted by applicable law. + + It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state, province, or country may not allow the exclusion or limitation of incidental, consequential, or other damages. + + Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French. + + Remarque: Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français. + + EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft n'accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande, d'adéquation à un usage particulier et d'absence de contrefaçon sont exclues. + + LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices. + + Cette limitation concerne: + + tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers; et + les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d'une autre faute dans la limite autorisée par la loi en vigueur. + + Elle s'applique également, même si Microsoft connaissait ou devrait connaître l'éventualité d'un tel dommage. Si votre pays n'autorise pas l'exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l'exclusion ci-dessus ne s'appliquera pas à votre égard. + + EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d'autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. json: ms-kinext-win-sdk.json - yml: ms-kinext-win-sdk.yml + yaml: ms-kinext-win-sdk.yml html: ms-kinext-win-sdk.html - text: ms-kinext-win-sdk.LICENSE + license: ms-kinext-win-sdk.LICENSE - license_key: ms-limited-community + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-limited-community other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Microsoft Limited Community License (Ms-LCL) + Published: October 18, 2005 + + This license governs use of the accompanying software. If you use the software, + you accept this license. If you do not accept the license, do not use the + software. + + 1. Definitions + + The terms "reproduce," "reproduction" and "distribution" have the same meaning + here as under U.S. copyright law. + + "You" means the licensee of the software. + + "Larger work" means the combination of the software and any additions or + modifications to the software. + + "Licensed patents" means any Licensor patent claims which read directly on the + software as distributed by the Licensor under this license. + + 2. Grant of Rights + + (A) Copyright Grant- Subject to the terms of this license, including the license + conditions and limitations in section 3, the Licensor grants you a non- + exclusive, worldwide, royalty-free copyright license to reproduce the software, + prepare derivative works of the software and distribute the software or any + derivative works that you create. + + (B) Patent Grant- Subject to the terms of this license, including the license + conditions and limitations in section 3, the Licensor grants you a non- + exclusive, worldwide, royalty-free patent license under licensed patents to + make, have made, use, practice, sell, and offer for sale, and/or otherwise + dispose of the software or derivative works of the software. + + 3. Conditions and Limitations + + (A) Reciprocal Grants- Your rights to reproduce and distribute the software (or + any part of the software), or to create and distribute derivative works of the + software, are conditioned on your licensing the software or any larger work you + create under the following terms: + + 1. + + If you distribute the larger work as a series of files, you must grant all + recipients the copyright and patent licenses in sections 2(A) & 2(B) for any + file that contains code from the software. You must also provide recipients + the source code to any such files that contain code from the software along + with a copy of this license. Any other files which are entirely your own work + and which do not contain any code from the software may be licensed under any + terms you choose. + + 2. + + If you distribute the larger work as a single file, then you must grant all + recipients the rights set out in sections 2(A) & 2(B) for the entire larger + work. You must also provide recipients the source code to the larger work + along with a copy of this license. + + (B) No Trademark License- This license does not grant you any rights to use the + Licensor's name, logo, or trademarks. + + (C) If you distribute the software in source code form you may do so only under + this license (i.e., you must include a complete copy of this license with your + distribution), and if you distribute the software solely in compiled or object + code form you may only do so under a license that complies with this license. + + (D) If you begin patent litigation against the Licensor over patents that you + think may apply to the software (including a cross-claim or counterclaim in a + lawsuit), your license to the software ends automatically. + + (E) The software is licensed "as-is." You bear the risk of using it. The + Licensor gives no express warranties, guarantees or conditions. You may have + additional consumer rights under your local laws which this license cannot + change. To the extent permitted under your local laws, the Licensor excludes the + implied warranties of merchantability, fitness for a particular purpose and non- + infringement. + + (F) Platform Limitation- The licenses granted in sections 2(A) & 2(B) extend + only to the software or larger works that you create that run on a Microsoft + Windows operating system product. json: ms-limited-community.json - yml: ms-limited-community.yml + yaml: ms-limited-community.yml html: ms-limited-community.html - text: ms-limited-community.LICENSE + license: ms-limited-community.LICENSE - license_key: ms-limited-public + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + Microsoft Limited Public License (Ms-LPL) + + This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. + + 1. Definitions + + The terms "reproduce," "reproduction," "derivative works," and "distribution" + have the same meaning here as under U.S. copyright law. + + A "contribution" is the original software, or any additions or changes to the + software. + + A "contributor" is any person that distributes its contribution under this + license. + + "Licensed patents" are a contributor’s patent claims that read directly on its contribution. + + 2. Grant of Rights + + (A) Copyright Grant- Subject to the terms of this license, including the license + conditions and limitations in section 3, each contributor grants you a non- + exclusive, worldwide, royalty-free copyright license to reproduce its + contribution, prepare derivative works of its contribution, and distribute its + contribution or any derivative works that you create. + + (B) Patent Grant- Subject to the terms of this license, including the license + conditions and limitations in section 3, each contributor grants you a non- + exclusive, worldwide, royalty-free license under its licensed patents to make, + have made, use, sell, offer for sale, import, and/or otherwise dispose of its + contribution in the software or derivative works of the contribution in the + software. + + 3. Conditions and Limitations + + (A) No Trademark License- This license does not grant you rights to use any + contributors’ name, logo, or trademarks. + + (B) If you bring a patent claim against any contributor over patents that you + claim are infringed by the software, your patent license from such contributor + to the software ends automatically. + + (C) If you distribute any portion of the software, you must retain all + copyright, patent, trademark, and attribution notices that are present in the + software. + + (D) If you distribute any portion of the software in source code form, you may + do so only under this license by including a complete copy of this license with + your distribution. If you distribute any portion of the software in compiled or + object code form, you may only do so under a license that complies with this + license. + + (E) The software is licensed "as-is." You bear the risk of using it. The + contributors give no express warranties, guarantees or conditions. You may have + additional consumer rights under your local laws which this license cannot + change. To the extent permitted under your local laws, the contributors exclude + the implied warranties of merchantability, fitness for a particular purpose and + non-infringement. + + (F) Platform Limitation- The licenses granted in sections 2(A) & 2(B) extend + only to the software or derivative works that you create that run on a Microsoft + Windows operating system product. json: ms-limited-public.json - yml: ms-limited-public.yml + yaml: ms-limited-public.yml html: ms-limited-public.html - text: ms-limited-public.LICENSE + license: ms-limited-public.LICENSE - license_key: ms-lpl - spdx_license_key: LicenseRef-scancode-ms-lpl - other_spdx_license_keys: [] - is_exception: no - is_deprecated: no category: Permissive + spdx_license_key: MS-LPL + other_spdx_license_keys: + - LicenseRef-scancode-ms-lpl + is_exception: no + is_deprecated: no + text: | + Microsoft Limited Permissive License (MS-LPL) + Published: October 12, 2006 + + + This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. + + 1. Definitions + + The terms "reproduce," "reproduction," "derivative works," and "distribution" + have the same meaning here as under U.S. copyright law. + + A "contribution" is the original software, or any additions or changes to the + software. + + A "contributor" is any person that distributes its contribution under this + license. + + "Licensed patents" are a contributor’s patent claims that read directly on its contribution. + + 2. Grant of Rights + + (A) Copyright Grant- Subject to the terms of this license, including the license + conditions and limitations in section 3, each contributor grants you a non- + exclusive, worldwide, royalty-free copyright license to reproduce its + contribution, prepare derivative works of its contribution, and distribute its + contribution or any derivative works that you create. + + (B) Patent Grant- Subject to the terms of this license, including the license + conditions and limitations in section 3, each contributor grants you a non- + exclusive, worldwide, royalty-free license under its licensed patents to make, + have made, use, sell, offer for sale, import, and/or otherwise dispose of its + contribution in the software or derivative works of the contribution in the + software. + + 3. Conditions and Limitations + + (A) No Trademark License- This license does not grant you rights to use any + contributors’ name, logo, or trademarks. + + (B) If you bring a patent claim against any contributor over patents that you + claim are infringed by the software, your patent license from such contributor + to the software ends automatically. + + (C) If you distribute any portion of the software, you must retain all + copyright, patent, trademark, and attribution notices that are present in the + software. + + (D) If you distribute any portion of the software in source code form, you may + do so only under this license by including a complete copy of this license with + your distribution. If you distribute any portion of the software in compiled or + object code form, you may only do so under a license that complies with this + license. + + (E) The software is licensed "as-is." You bear the risk of using it. The + contributors give no express warranties, guarantees or conditions. You may have + additional consumer rights under your local laws which this license cannot + change. To the extent permitted under your local laws, the contributors exclude + the implied warranties of merchantability, fitness for a particular purpose and + non-infringement. + + (F) Platform Limitation- The licenses granted in sections 2(A) & 2(B) extend + only to the software or derivative works that you create that run on a Microsoft + Windows operating system product. json: ms-lpl.json - yml: ms-lpl.yml + yaml: ms-lpl.yml html: ms-lpl.html - text: ms-lpl.LICENSE + license: ms-lpl.LICENSE - license_key: ms-msn-webgrease + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-msn-webgrease other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + MICROSOFT SOFTWARE LICENSE TERMS + MICROSOFT MSN WEBGREASE + + These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft + + · updates, + + · supplements, + + · Internet-based services, and + + · support services + + for this software, unless other terms accompany those items. If so, those terms apply. + + By using the software, you accept these terms. If you do not accept them, do not use the software. + + If you comply with these license terms, you have the perpetual rights below. + + 1. INSTALLATION AND USE RIGHTS. + + a. Installation and Use. One user may install and use any number of copies of the software on your devices. + + b. Third Party Notices. The software may include third party code. Microsoft, not the third party, licenses to you under the terms set forth in this agreement. Notices, if any, for any third party code are included for your information only. + + 2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS. + + a. Distributable Code. The software contains code that you are permitted to distribute in programs you develop if you comply with the terms below. + + i. Right to Use and Distribute. The code and text files listed below are "Distributable Code." + + · Redistributable Files. You may copy and distribute the object code form of the following files. + + § WebGrease.dll + + § WG.exe + + · Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs. + + ii. Distribution Requirements. For any Distributable Code you distribute, you must + + · add primary functionality to it in your programs; + + · for any Distributable Code having a filename extension of .lib, distribute only the results of running such Distributable Code through a linker with your program; + + · distribute Distributable Code included in a setup program only as part of that setup program without modification; + + · require distributors and external end users to agree to terms that protect it at least as much as this agreement; + + · display your valid copyright notice on your programs; and + + · indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your programs. + + iii. Distribution Restrictions. You may not + + · alter any copyright, trademark or patent notice in the Distributable Code; + + · use Microsoft’s trademarks in your programs’ names or in a way that suggests your programs come from or are endorsed by Microsoft; + + · distribute Distributable Code to run on a platform other than the Windows platform; + + · include Distributable Code in malicious, deceptive or unlawful programs; or + + · modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that + + · the code be disclosed or distributed in source code form; or + + · others have the right to modify it. + + 3. INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software. It may change or cancel them at any time. You may not use these services in any way that could harm them or impair anyone else’s use of them. You may not use the services to try to gain unauthorized access to any service, data, account or network by any means. + + 4. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not + + · work around any technical limitations in the software; + + · reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; + + · make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation; + + · publish the software for others to copy; + + · rent, lease or lend the software; or + + · transfer the software or this agreement to any third party. + + 5. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software. + + 6. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. + + 7. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting. + + 8. SUPPORT SERVICES. Because this software is "as is," we may not provide support services for it. + + 9. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. + + 10. APPLICABLE LAW. + + a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. + + b. Outside the United States. If you acquired the software in any other country, the laws of that country apply. + + 11. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so. + + 12. DISCLAIMER OF WARRANTY. The software is licensed "as-is." You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights or statutory guarantees under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. + + FOR AUSTRALIA – You have statutory guarantees under the Australian Consumer Law and nothing in these terms is intended to affect those rights. + + 13. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages. + + This limitation applies to + + · anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and + + · claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + + It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. + + Please note: As this software is distributed in Quebec, Canada, these license terms are provided below in French. + Remarque : Ce logiciel étant distribué au Québec, Canada, les termes de cette licence sont fournis ci-dessous en français. + + TERMES DU CONTRAT DE LICENCE D’UN LOGICIEL MICROSOFT + MICROSOFT MSN WEBGREASE + Les présents termes ont valeur de contrat entre Microsoft Corporation (ou en fonction du lieu où vous vivez, l’un de ses affiliés) et vous. Lisez-les attentivement. Ils portent sur le logiciel nommé ci-dessus, y compris le support sur lequel vous l’avez reçu le cas échéant. Ce contrat porte également sur les produits Microsoft suivants : + + · les mises à jour, + + · les suppléments, + + · les services Internet et + + · les services d’assistance technique + + de ce logiciel à moins que d’autres termes n’accompagnent ces produits, auquel cas, ces derniers prévalent. + + En utilisant le logiciel, vous acceptez ces termes. Si vous ne les acceptez pas, n’utilisez pas le logiciel. + + Si vous respectez les présentes conditions de licence, vous disposez des droits suivants pour la durée des droits de propriété intellectuelle. + + 1. INSTALLATION ET DROITS D’UTILISATION. + + a. Installation et utilisation. Un utilisateur peut installer et utiliser un nombre quelconque de copies du logiciel sur vos dispositifs. + + b. Logiciels tiers. Le logiciel contient des programmes tiers. Les termes qui accompagnent ces programmes s'appliquent, sauf mention contraire dans lesdits termes. + + 2. SERVICES INTERNET. Microsoft fournit des services Internet avec le logiciel. Ils peuvent être modifiés ou interrompus à tout moment. + + 3. PORTEE DE LA LICENCE. Le logiciel est concédé sous licence, pas vendu. Ce contrat vous octroie uniquement certains droits d’utilisation du logiciel. Microsoft se réserve tous les autres droits. À moins que la loi en vigueur vous confère davantage de droits nonobstant cette limitation, vous pouvez utiliser le logiciel uniquement tel qu’explicitement autorisé dans le présent accord. À cette fin, vous devez respecter les restrictions techniques du logiciel qui autorisent uniquement son utilisation de certaines façons. Vous n’êtes pas autorisé à : + + · contourner les limitations techniques du logiciel ; + + · reconstituer la logique du logiciel, le décompiler ou le désassembler, sauf dans la mesure où ces opérations seraient expressément autorisées par la réglementation applicable nonobstant la présente limitation ; + + · faire plus de copies du logiciel que spécifié dans ce contrat ou par la réglementation applicable, nonobstant la présente limitation ; + + · publier le logiciel pour que d’autres le copient ; + + · louer ou prêter le logiciel ; ou + + · transférer le logiciel ou le présent contrat à un tiers. + + 4. COPIE DE SAUVEGARDE. Vous êtes autorisé à effectuer une copie de sauvegarde du logiciel. Vous ne pouvez l’utiliser que dans le but de réinstaller le logiciel. + + 5. DOCUMENTATION. Tout utilisateur disposant d’un accès valide à votre ordinateur ou à votre réseau interne peut copier et utiliser la documentation à des fins de référence interne. + + 6. RESTRICTIONS À L’EXPORTATION. Le logiciel est soumis à la réglementation américaine relative à l’exportation. Vous devez vous conformer à toutes les réglementations nationales et internationales relatives aux exportations concernant le logiciel. Ces réglementations comprennent les restrictions sur les destinations, les utilisateurs finaux et l’utilisation finale. Pour plus d’informations, consultez le site www.microsoft.com/exporting. + + 7. SERVICES D’ASSISTANCE TECHNIQUE. Comme ce logiciel est fourni « en l'état », nous ne fourniront aucun service d’assistance. + + 8. INTÉGRALITÉ DES ACCORDS. Le présent contrat ainsi que les termes concernant les suppléments, les mises à jour, les services Internet et d’assistance technique constituent l’intégralité des accords en ce qui concerne le logiciel et les services d’assistance technique. + + 9. DROIT APPLICABLE. + + a. États-Unis. Si vous avez acquis le logiciel aux États-Unis, les lois de l’État de Washington, États-Unis d’Amérique, régissent l’interprétation de ce contrat et s’appliquent en cas de réclamation pour violation dudit contrat, nonobstant les conflits de principes juridiques. La réglementation du pays dans lequel vous vivez régit toutes les autres réclamations, notamment, et sans limitation, les réclamations dans le cadre des lois en faveur de la protection des consommateurs, relatives à la concurrence et aux délits. + + b. En dehors des États-Unis. Si vous avez acquis le logiciel dans un autre pays, les lois de ce pays s’appliquent. + + 10. EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Vous pourriez également avoir des droits à l’égard de la partie de qui vous avez acquis le logiciel. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre ou pays si celles-ci ne le permettent pas. + + 11. EXCLUSIONS DE GARANTIE. Le logiciel est concédé sous licence « en l’état ». Vous assumez tous les risques liés à son utilisation. Microsoft n’accorde aucune garantie ou condition expresse. Vous pouvez bénéficier de droits des consommateurs supplémentaires dans le cadre du droit local, que ce contrat ne peut modifier. Lorsque cela est autorisé par le droit local, Microsoft exclut les garanties implicites de qualité, d’adéquation à un usage particulier et d’absence de contrefaçon. + + 12. LIMITATION ET EXCLUSION DE RECOURS ET DE DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs limitée uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices. + + Cette limitation concerne : + + · toute affaire liée au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers et + + · les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur. + + Elle s’applique également même si Microsoft connaissait l'éventualité d'un tel dommage. La limitation ou exclusion ci-dessus peut également ne pas vous être applicable, car votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit. json: ms-msn-webgrease.json - yml: ms-msn-webgrease.yml + yaml: ms-msn-webgrease.yml html: ms-msn-webgrease.html - text: ms-msn-webgrease.LICENSE + license: ms-msn-webgrease.LICENSE - license_key: ms-net-framework-4-supplemental-terms + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-net-framework-4-supp-terms other_spdx_license_keys: - LicenseRef-scancode-ms-net-framework-4-supplemental-terms is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS \nMICROSOFT .NET FRAMEWORK 4 FOR MICROSOFT\ + \ WINDOWS OPERATING SYSTEM \nMICROSOFT .NET FRAMEWORK 4 CLIENT PROFILE FOR MICROSOFT WINDOWS\ + \ OPERATING SYSTEM \nAND ASSOCIATED LANGUAGE PACKS \n\nMicrosoft Corporation (or based on\ + \ where you live, one of its affiliates) licenses this supplement to you. If you are licensed\ + \ to use Microsoft Windows operating system software (for which this supplement is applicable)\ + \ (the \"software\"), you may use this supplement. You may not use it if you do not have\ + \ a license for the software. You may use a copy of this supplement with each validly licensed\ + \ copy of the software. \n\nThe following license terms describe additional use terms for\ + \ this supplement. These terms and the license terms for the software apply to your use\ + \ of the supplement. If there is a conflict, these supplemental license terms apply. \n\ + By using this supplement, you accept these terms. If you do not accept them, do not use\ + \ this supplement. \nIf you comply with these license terms, you have the rights below.\ + \ \n\n1.\tSUPPORT SERVICES FOR SUPPLEMENT. Microsoft provides support services for this\ + \ software as described at www.support.microsoft.com/common/international.aspx .\ + \ \n\n2.\tMICROSOFT .NET FRAMEWORK BENCHMARK TESTING. The software includes one or more\ + \ components of the .NET Framework (.NET Components). You may conduct internal benchmark\ + \ testing of those components. You may disclose the results of any benchmark test of those\ + \ components, provided that you comply with the conditions set forth at .\ + \ Notwithstanding any other agreement you may have with Microsoft, if you disclose such\ + \ benchmark test results, Microsoft shall have the right to disclose the results of benchmark\ + \ tests it conducts of your products that compete with the applicable .NET Component, provided\ + \ it complies with the same conditions set forth at ." json: ms-net-framework-4-supplemental-terms.json - yml: ms-net-framework-4-supplemental-terms.yml + yaml: ms-net-framework-4-supplemental-terms.yml html: ms-net-framework-4-supplemental-terms.html - text: ms-net-framework-4-supplemental-terms.LICENSE + license: ms-net-framework-4-supplemental-terms.LICENSE - license_key: ms-net-framework-deployment + category: Commercial spdx_license_key: LicenseRef-scancode-ms-net-framework-deployment other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: ".NET Framework Deployment \nMicrosoft .NET Framework Redistributable EULA\n\nIMPORTANT:\ + \ READ CAREFULLY—These Microsoft Corporation (\"Microsoft\") operating system components,\ + \ including any \"online\" or electronic documentation (\"OS Components\") are subject to\ + \ the terms and conditions of the agreement under which you have licensed the applicable\ + \ Microsoft operating system product (\"OS Product\") described below (each an \"End User\ + \ License Agreement\" or \"EULA\") and the terms and conditions of this Supplemental EULA.\ + \ BY INSTALLING, COPYING OR OTHERWISE USING THE OS COMPONENTS, YOU AGREE TO BE BOUND BY\ + \ THE TERMS AND CONDITIONS OF THE APPLICABLE OS PRODUCT EULA AND THIS SUPPLEMENTAL EULA.\ + \ IF YOU DO NOT AGREE TO THESE TERMS AND CONDITIONS, DO NOT INSTALL, COPY OR USE THE OS\ + \ COMPONENTS.\n\nNOTE: IF YOU DO NOT HAVE A VALID EULA FOR ANY \"OS PRODUCT\" (MICROSOFT\ + \ WINDOWS 98, WINDOWS ME, WINDOWS NT 4.0 (DESKTOP EDITION), WINDOWS 2000 OPERATING SYSTEM,\ + \ WINDOWS XP PROFESSIONAL AND/OR WINDOWS XP HOME EDITION), YOU ARE NOT AUTHORIZED TO INSTALL,\ + \ COPY OR OTHERWISE USE THE OS COMPONENTS AND YOU HAVE NO RIGHTS UNDER THIS SUPPLEMENTAL\ + \ EULA.\n\nCapitalized terms used in this Supplemental EULA and not otherwise defined herein\ + \ shall have the meanings assigned to them in the applicable OS Product EULA.\n\nGeneral.\ + \ The OS Components are provided to you by Microsoft to update, supplement, or replace existing\ + \ functionality of the applicable OS Product Microsoft grants you a license to use the OS\ + \ Components under the terms and conditions of the OS Product EULA for the applicable OS\ + \ Product (which are hereby incorporated by reference) and the terms and conditions set\ + \ forth in this Supplemental EULA, provided that you comply with all such terms and conditions.\ + \ To the extent that any terms in this Supplemental EULA conflict with terms in the applicable\ + \ OS Product EULA, the terms of this Supplemental EULA control solely with respect to the\ + \ OS Components.\n\nAdditional Rights and Limitations.\n*If you have multiple validly licensed\ + \ copies of the applicable OS Product(s), you may reproduce, install and use one copy of\ + \ the OS Components as part of such applicable OS Product(s) on all of your computers running\ + \ validly licensed copies of the OS Product(s) provided that you use such additional copies\ + \ of the OS Components in accordance with the terms and conditions above.\n\n*You may conduct\ + \ internal benchmark testing of the .NET Framework component of the OS Components (\".NET\ + \ Component\"). You may disclose the results of any benchmark test of the .NET Component,\ + \ provided that you comply with the following terms: (1) you must disclose all the information\ + \ necessary for replication of the tests, including complete and accurate details of your\ + \ benchmark testing methodology, the test scripts/cases, tuning parameters applied, hardware\ + \ and software platforms tested, the name and version number of any third party testing\ + \ tool used to conduct the testing, and complete source code for the benchmark suite/harness\ + \ that is developed by or for you and used to test both the .NET Component and the competing\ + \ implementation(s); \n(2) you must disclose the date(s) that you conducted the benchmark\ + \ tests, along with specific version information for all Microsoft software products tested,\ + \ including the .NET Component; \n(3) your benchmark testing was performed using all performance\ + \ tuning and best practice guidance set forth in the product documentation and/or on Microsoft's\ + \ support web sites, and uses the latest updates, patches and fixes available for the .NET\ + \ Component and the relevant Microsoft operating system; \n(4) it shall be sufficient if\ + \ you make the disclosures provided for above at a publicly available location such as a\ + \ website, so long as every public disclosure of the results of your benchmark test expressly\ + \ identifies the public site containing all required disclosures; and \n(5) nothing in this\ + \ provision shall be deemed to waive any other right that you may have to conduct benchmark\ + \ testing. The foregoing obligations shall not apply to your disclosure of the results of\ + \ any customized benchmark test of the .NET Component, whereby such disclosure is made under\ + \ confidentiality in conjunction with a bid request by a prospective customer, such customer's\ + \ application(s) are specifically tested and the results are only disclosed to such specific\ + \ customer. Notwithstanding any other agreement you may have with Microsoft, if you disclose\ + \ such benchmark test results, Microsoft shall have the right to disclose the results of\ + \ benchmark tests it conducts of your products that compete with the .NET Component, provided\ + \ it complies with the same conditions above.\n\n*Microsoft retains all right, title and\ + \ interest in and to the OS Components. All rights not expressly granted are reserved by\ + \ Microsoft.\n\nIF THE APPLICABLE OS PRODUCT WAS LICENSED TO YOU BY MICROSOFT OR ANY OF\ + \ ITS WHOLLY OWNED SUBSIDIARIES, THE LIMITED WARRANTY (IF ANY) INCLUDED IN THE APPLICABLE\ + \ OS PRODUCT EULA APPLIES TO THE OS COMPONENTS PROVIDED THE OS COMPONENTS HAVE BEEN LICENSED\ + \ BY YOU WITHIN THE TERM OF THE LIMITED WARRANTY IN THE APPLICABLE OS PRODUCT EULA. HOWEVER,\ + \ THIS SUPPLEMENTAL EULA DOES NOT EXTEND THE TIME PERIOD FOR WHICH THE LIMITED WARRANTY\ + \ IS PROVIDED.\n\nIF THE APPLICABLE OS PRODUCT WAS LICENSED TO YOU BY AN ENTITY OTHER THAN\ + \ MICROSOFT OR ANY OF ITS WHOLLY OWNED SUBSIDIARIES, MICROSOFT DISCLAIMS ALL WARRANTIES\ + \ WITH RESPECT TO THE OS COMPONENTS AS FOLLOWS:\nDISCLAIMER OF WARRANTIES. TO THE MAXIMUM\ + \ EXTENT PERMITTED BY APPLICABLE LAW, MICROSOFT AND ITS SUPPLIERS PROVIDE TO YOU THE OS\ + \ COMPONENTS, AND ANY (IF ANY) SUPPORT SERVICES RELATED TO THE OS COMPONENTS (\"SUPPORT\ + \ SERVICES\") AS IS AND WITH ALL FAULTS; and Microsoft and its suppliers hereby disclaim\ + \ with respect to THE os COMPONENTS AND SUPPORT SERVICES all warranties and conditions,\ + \ whether express, implied or statutory, including, but not limited to, any (if any) warranties\ + \ or conditions of OR RELATED TO: TITLE, NON-INFRINGEMENT, merchantability, fitness for\ + \ a particular purpose, lack of viruses, accuracy or completeness of responses, results,\ + \ lack of negligence or lack of workmanlike effort, QUIET ENJOYMENT, QUIET POSSESSION, AND\ + \ CORRESPONDENCE TO DESCRIPTION. The entire risk arising out of use or performance of the\ + \ OS Components AND ANY SUPPORT SERVICES remains with you.\n\nEXCLUSION OF INCIDENTAL, CONSEQUENTIAL\ + \ AND CERTAIN OTHER DAMAGES. To the maximum extent permitted by applicable law, in no event\ + \ shall Microsoft or its suppliers be liable for any special, incidental, indirect, or consequential\ + \ damages whatsoever (including, but not limited to, damages for: loss of profits, LOSS\ + \ OF confidential or other information, business interruption, personal injury, loss of\ + \ privacy, failure to meet any duty (including of good faith or of reasonable care), negligence,\ + \ and any other pecuniary or other loss whatsoever) arising out of or in any way related\ + \ to the use of or inability to use the OS Components OR THE SUPPORT SERVICES, OR the provision\ + \ of or failure to provide Support Services, or otherwise under or in connection with any\ + \ provision of this Supplemental EULA, even if Microsoft or any supplier has been advised\ + \ of the possibility of such damages.\n\nLIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING\ + \ ANY DAMAGES THAT YOU MIGHT INCUR FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT LIMITATION,\ + \ ALL DAMAGES REFERENCED ABOVE AND ALL DIRECT OR GENERAL DAMAGES), THE ENTIRE LIABILITY\ + \ OF MICROSOFT AND ANY OF ITS SUPPLIERS UNDER ANY PROVISION OF THIS SUPPLEMENTAL EULA AND\ + \ YOUR EXCLUSIVE REMEDY FOR ALL OF THE FOREGOING SHALL BE LIMITED TO THE GREATER OF THE\ + \ AMOUNT ACTUALLY PAID BY YOU FOR THE OS COMPONENTS OR U.S.$5.00. THE FOREGOING LIMITATIONS,\ + \ EXCLUSIONS AND DISCLAIMERS SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW,\ + \ EVEN IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE.\n\n(French text omitted)" json: ms-net-framework-deployment.json - yml: ms-net-framework-deployment.yml + yaml: ms-net-framework-deployment.yml html: ms-net-framework-deployment.html - text: ms-net-framework-deployment.LICENSE + license: ms-net-framework-deployment.LICENSE - license_key: ms-net-library + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-net-library other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + MICROSOFT SOFTWARE LICENSE TERMS + + MICROSOFT .NET LIBRARY + + These license terms are an agreement between Microsoft Corporation (or based on + where you live, one of its affiliates) and you. Please read them. They apply to + the software named above, which includes the media on which you received it, if + any. The terms also apply to any Microsoft + + . updates, + + . supplements, + + . Internet - based services, and + + . support services + + for this software, unless other terms accompany those items. If so, those terms + apply. + + BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT + USE THE SOFTWARE. + + IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW. + + 1. INSTALLATION AND USE RIGHTS. + + a. Installation and Use. You may install and use any number of copies of the + software to design, develop and test your programs. + + b. Third Party Programs. The software may include third party programs that + Microsoft, not the third party, licenses to you under this agreement. Notices, + if any, for the third party program are included for your information only. + + 2. ADDITIONAL LICENSING REQUIREMENTS AND / OR USE RIGHTS. + + a. DISTRIBUTABLE CODE. The software is comprised of Distributable Code. + "Distributable Code" is code that you are permitted to distribute in programs + you develop if you comply with the terms below. + + i. Right to Use and Distribute. + + . You may copy and distribute the object code form of the software. + + . Third Party Distribution. You may permit distributors of your programs to copy + and distribute the Distributable Code as part of those programs. + + ii. Distribution Requirements. For any Distributable Code you distribute, you + must + + . add significant primary functionality to it in your programs; + + . require distributors and external end users to agree to terms that protect it + at least as much as this agreement; + + . display your valid copyright notice on your programs; and + + . indemnify, defend, and hold harmless Microsoft from any claims, including + attorneys’ fees, related to the distribution or use of your programs. + + iii. Distribution Restrictions. You may not + + . alter any copyright, trademark or patent notice in the Distributable Code; + + . use Microsoft’s trademarks in your programs’ names or in a way that suggests + your programs come from or are endorsed by Microsoft; + + . include Distributable Code in malicious, deceptive or unlawful programs; or + + . modify or distribute the source code of any Distributable Code so that any + part of it becomes subject to an Excluded License. An Excluded License is one + that requires, as a condition of use, modification or distribution, that + + . the code be disclosed or distributed in source code form; or + + . others have the right to modify it. + + 3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only + gives you some rights to use the software. Microsoft reserves all other rights. + Unless applicable law gives you more rights despite this limitation, you may use + the software only as expressly permitted in this agreement. In doing so, you + must comply with any technical limitations in the software that only allow you + to use it in certain ways. You may not + + . work around any technical limitations in the software; + + . reverse engineer, decompile or disassemble the software, except and only to + the extent that applicable law expressly permits, despite this limitation; + + . publish the software for others to copy; + + . rent, lease or lend the software; + + . transfer the software or this agreement to any third party; or + + . use the software for commercial software hosting services. + + 4. BACKUP COPY. You may make one backup copy of the software. You may use it + only to reinstall the software. + + 5. DOCUMENTATION. Any person that has valid access to your computer or internal + network may copy and use the documentation for your internal, reference + purposes. + + 6. EXPORT RESTRICTIONS. The software is subject to United States export laws and + regulations. You must comply with all domestic and international export laws and + regulations that apply to the software. These laws include restrictions on + destinations, end users and end use. For additional information, see + www.microsoft.com/exporting. + + 7. SUPPORT SERVICES. Because this software is "as is," we may not provide + support services for it. + + 8. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, + Internet - based services and support services that you use, are the entire + agreement for the software and support services. + + 9. APPLICABLE LAW. + + a. United States. If you acquired the software in the United States, Washington + state law governs the interpretation of this agreement and applies to claims for + breach of it, regardless of conflict of laws principles. The laws of the state + where you live govern all other claims, including claims under state consumer + protection laws, unfair competition laws, and in tort. + + b. Outside the United States. If you acquired the software in any other country, + the laws of that country apply. + + 10. LEGAL EFFECT. This agreement describes certain legal rights. You may have + other rights under the laws of your country. You may also have rights with + respect to the party from whom you acquired the software. This agreement does + not change your rights under the laws of your country if the laws of your + country do not permit it to do so. + + 11. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED "AS-IS." YOU BEAR THE RISK + OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. + YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL + LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR + LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NON - INFRINGEMENT. + + FOR AUSTRALIA – YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW + AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS. + + 12. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM + MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT + RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, + INDIRECT OR INCIDENTAL DAMAGES. + + This limitation applies to + + . anything related to the software, services, content (including code) on third + party Internet sites, or third party programs; and + + . claims for breach of contract, breach of warranty, guarantee or condition, + strict liability, negligence, or other tort to the extent permitted by + applicable law. + + It also applies even if Microsoft knew or should have known about the + possibility of the damages. The above limitation or exclusion may not apply to + you because your country may not allow the exclusion or limitation of + incidental, consequential or other damages. + + Please note: As this software is distributed in Quebec, Canada, some of the + clauses in this agreement are provided below in French. + + Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses + dans ce contrat sont fournies ci - dessous en français. + + EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel + ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft + n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits + additionnels en vertu du droit local sur la protection des consommateurs, que ce + contrat ne peut modifier. La ou elles sont permises par le droit locale, les + garanties implicites de qualité marchande, d’adéquation à un usage particulier + et d’absence de contrefaçon sont exclues. + + LIMITATION DES DOMMAGES - INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES + DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une + indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous + ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris + les dommages spéciaux, indirects ou accessoires et pertes de bénéfices. + + Cette limitation concerne : + + . tout ce qui est relié au logiciel, aux services ou au contenu (y compris le + code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et + + . les réclamations au titre de violation de contrat ou de garantie, ou au titre + de responsabilité stricte, de négligence ou d’une autre faute dans la limite + autorisée par la loi en vigueur. + + Elle s’applique également, même si Microsoft connaissait ou devrait connaître + l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la + limitation de responsabilité pour les dommages indirects, accessoires ou de + quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci- + dessus ne s’appliquera pas à votre égard. + + EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous + pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent + contrat ne modifie pas les droits que vous confèrent les lois de votre pays si + celles - ci ne le permettent pas. json: ms-net-library.json - yml: ms-net-library.yml + yaml: ms-net-library.yml html: ms-net-library.html - text: ms-net-library.LICENSE + license: ms-net-library.LICENSE - license_key: ms-net-library-2016-05 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-net-library-2016-05 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + MICROSOFT SOFTWARE LICENSE TERMS + + MICROSOFT .NET LIBRARY + + These license terms are an agreement between Microsoft Corporation (or based on + where you live, one of its affiliates) and you. Please read them. They apply to + the software named above, which includes the media on which you received it, if + any. The terms also apply to any Microsoft + + . updates, + + . supplements, + + . Internet-based services, and + + . support services + + for this software, unless other terms accompany those items. If so, those terms + apply. + + BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT + USE THE SOFTWARE. + + IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW. + + 1. INSTALLATION AND USE RIGHTS. + + a. Installation and Use. You may install and use any number of copies of the + software to design, develop and test your programs. + + b. Third Party Programs. The software may include third party programs that + Microsoft, not the third party, licenses to you under this agreement. Notices, + if any, for the third party program are included for your information only. + + 2. DATA. The software may collect information about you and your use of the + software, and send that to Microsoft. Microsoft may use this information to + improve our products and services. You can learn more about data collection and + use in the help documentation and the privacy statement at + http://go.microsoft.com/fwlink/?LinkId=528096 . Your use of the software + operates as your consent to these practices. + + 3. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS. + + a. DISTRIBUTABLE CODE. The software is comprised of Distributable Code. + "Distributable Code" is code that you are permitted to distribute in programs + you develop if you comply with the terms below. + + i . Right to Use and Distribute. + + . You may copy and distribute the object code form of the software. + + . Third Party Distribution. You may permit distributors of your programs to copy + and distribute the Distributable Code as part of those programs. + + ii. Distribution Requirements. For any Distributable Code you distribute, you + must + + . add significant primary functionality to it in your programs; + + . require distributors and external end users to agree to terms that protect it + at least as much as this agreement; + + . display your valid copyright notice on your programs; and + + . indemnify, defend, and hold harmless Microsoft from any claims, including + attorneys' fees, related to the distribution or use of your programs. + + iii. Distribution Restrictions. You may not + + . alter any copyright, trademark or patent notice in the Distributable Code; + + . use Microsoft's trademarks in your programs' names or in a way that suggests + your programs come from or are endorsed by Microsoft; + + . include Distributable Code in malicious, deceptive or unlawful programs; or + + . modify or distribute the source code of any Distributable Code so that any + part of it becomes subject to an Excluded License. An Excluded License is one + that requires, as a condition of use, modification or distribution, that + + . the code be disclosed or distributed in source code form; or + + . others have the right to modify it. + + 4. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only + gives you some rights to use the software. Microsoft reserves all other rights. + Unless applicable law gives you more rights despite this limitation, you may use + the software only as expressly permitted in this agreement. In doing so, you + must comply with any technical limitations in the software that only allow you + to use it in certain ways. You may not + + . work around any technical limitations in the software; + + . reverse engineer, decompile or disassemble the software, except and only to + the extent that applicable law expressly permits, despite this limitation; + + . publish the software for others to copy; + + . rent, lease or lend the software; + + . transfer the software or this agreement to any third party; or + + . use the software for commercial software hosting services. + + 5. BACKUP COPY. You may make one backup copy of the software. You may use it + only to reinstall the software. + + 6. DOCUMENTATION. Any person that has valid access to your computer or internal + network may copy and use the documentation for your internal, reference + purposes. + + 7. EXPORT RESTRICTIONS. The software is subject to United States export laws and + regulations. You must comply with all domestic and international export laws and + regulations that apply to the software. These laws include restrictions on + destinations, end users and end use. For additional information, see + www.microsoft.com/exporting. + + 8. SUPPORT SERVICES. Because this software is "as is," we may not provide + support services for it. + + 9. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, + Internet-based services and support services that you use, are the entire + agreement for the software and support services. + + 10. APPLICABLE LAW. + + a. United States. If you acquired the software in the United States, Washington + state law governs the interpretation of this agreement and applies to claims for + breach of it, regardless of conflict of laws principles. The laws of the state + where you live govern all other claims, including claims under state consumer + protection laws, unfair competition laws, and in tort. + + b. Outside the United States. If you acquired the software in any other country, + the laws of that country apply. + + 11. LEGAL EFFECT. This agreement describes certain legal rights. You may have + other rights under the laws of your country. You may also have rights with + respect to the party from whom you acquired the software. This agreement does + not change your rights under the laws of your country if the laws of your + country do not permit it to do so. + + 12. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED "AS-IS." YOU BEAR THE RISK + OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. + YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL + LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR + LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + + FOR AUSTRALIA – YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW + AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS. + + 13. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM + MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT + RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, + INDIRECT OR INCIDENTAL DAMAGES. + + This limitation applies to + + . anything related to the software, services, content (including code) on third + party Internet sites, or third party programs; and + + . claims for breach of contract, breach of warranty, guarantee or condition, + strict liability, negligence, or other tort to the extent permitted by + applicable law. + + It also applies even if Microsoft knew or should have known about the + possibility of the damages. The above limitation or exclusion may not apply to + you because your country may not allow the exclusion or limitation of + incidental, consequential or other damages. + + Please note: As this software is distributed in Quebec, Canada, some of the + clauses in this agreement are provided below in French. + + Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses + dans ce contrat sont fournies ci-dessous en français. + + EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel + ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft + n'accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits + additionnels en vertu du droit local sur la protection des consommateurs, que ce + contrat ne peut modifier. La ou elles sont permises par le droit locale, les + garanties implicites de qualité marchande, d'adéquation à un usage particulier + et d'absence de contrefaçon sont exclues. + + LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES + DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une + indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous + ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris + les dommages spéciaux, indirects ou accessoires et pertes de bénéfices. + + Cette limitation concerne: + + . tout ce qui est relié au logiciel, aux services ou au contenu (y compris le + code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et + + . les réclamations au titre de violation de contrat ou de garantie, ou au titre + de responsabilité stricte, de négligence ou d'une autre faute dans la limite + autorisée par la loi en vigueur. + + Elle s'applique également, même si Microsoft connaissait ou devrait connaître + l'éventualité d'un tel dommage. Si votre pays n'autorise pas l'exclusion ou la + limitation de responsabilité pour les dommages indirects, accessoires ou de + quelque nature que ce soit, il se peut que la limitation ou l'exclusion ci- + dessus ne s'appliquera pas à votre égard. + + EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous + pourriez avoir d'autres droits prévus par les lois de votre pays. Le présent + contrat ne modifie pas les droits que vous confèrent les lois de votre pays si + celles-ci ne le permettent pas. json: ms-net-library-2016-05.json - yml: ms-net-library-2016-05.yml + yaml: ms-net-library-2016-05.yml html: ms-net-library-2016-05.html - text: ms-net-library-2016-05.LICENSE + license: ms-net-library-2016-05.LICENSE - license_key: ms-net-library-2018-11 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-net-library-2018-11 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + MICROSOFT SOFTWARE LICENSE TERMS + + MICROSOFT .NET LIBRARY + + These license terms are an agreement between Microsoft Corporation + (or based on where you live, one of its affiliates) and you. + They apply to the software named above. + The terms also apply to any Microsoft services or updates for the + software, except to the extent those have different terms. + + If you comply with these license terms, you have the rights below. + + 1. INSTALLATION AND USE RIGHTS. + + You may install and use any number of copies of the software to design, develop + and test you're applications. You may modify, copy, distribute or deploy any .js + files contained in the software as part of your applications. + + 2. THIRD PARTY COMPONENTS. The software may include third party components with + separate legal notices or governed by other agreements, as may be described in + the ThirdPartyNotices file(s) accompanying the software. + + 3. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS. + + a. DISTRIBUTABLE CODE. In addition to the .js files described above, the + software is comprised of Distributable Code. “Distributable Code” is code that + you are permitted to distribute in programs you develop if you comply with the + terms below. + + i. Right to Use and Distribute. + + . You may copy and distribute the object code form of the software. + + . Third Party Distribution. You may permit distributors of your programs to copy + and distribute the Distributable Code as part of those programs. + + ii. Distribution Requirements. For any Distributable Code you distribute, you + must + + . use the Distributable Code in your programs and not as a standalone + distribution; + + . require distributors and external end users to agree to terms that protect it + at least as much as this agreement; + + . display your valid copyright notice on your programs; and + + . indemnify, defend, and hold harmless Microsoft from any claims, including + attorneys' fees, related to the distribution or use of your applications, except + to the extent that any claim is based solely on the Distributable Code. + + iii. Distribution Restrictions. You may not + + . alter any copyright, trademark or patent notice in the Distributable Code; + + . use Microsoft's trademarks in your programs' names or in a way that suggests + your programs come from or are endorsed by Microsoft; + + . include Distributable Code in malicious, deceptive or unlawful programs; or + + . modify or distribute the source code of any Distributable Code so that any + part of it becomes subject to an Excluded License. An Excluded License is one + that requires, as a condition of use, modification or distribution, that + + . the code be disclosed or distributed in source code form; or + + . others have the right to modify it. + + 4. DATA. + + a. Data Collection. The software may collect information about you and your use + of the software, and send that to Microsoft. Microsoft may use this information + to provide services and improve our products and services. You may opt-out of + many of these scenarios, but not all, as described in the product documentation. + There are also some features in the software that may enable you and Microsoft + to collect data from users of your applications. If you use these features, you + must comply with applicable law, including providing appropriate notices to + users of your applications together with a copy of Microsoft's privacy + statement. Our privacy statement is located at + https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data + collection and use in the help documentation and our privacy statement. Your use + of the software operates as your consent to these practices. + + b. Processing of Personal Data. To the extent Microsoft is a processor or + subprocessor of personal data in connection with the software, Microsoft makes + the commitments in the European Union General Data Protection Regulation Terms + of the Online Services Terms to all customers effective May 25, 2018, at + http://go.microsoft.com/?linkid=9840733. + + 5. Scope of License. The software is licensed, not sold. This agreement only + gives you some rights to use the software. Microsoft reserves all other rights. + Unless applicable law gives you more rights despite this limitation, you may use + the software only as expressly permitted in this agreement. In doing so, you + must comply with any technical limitations in the software that only allow you + to use it in certain ways. You may not + + . work around any technical limitations in the software; + + . reverse engineer, decompile or disassemble the software, or otherwise attempt + to derive the source code for the software, except and to the extent required by + third party licensing terms governing use of certain open source components that + may be included in the software; + + . remove, minimize, block or modify any notices of Microsoft or its suppliers in + the software; + + . use the software in any way that is against the law; or + + . share, publish, rent or lease the software, provide the software as a stand- + alone offering for others to use, or transfer the software or this agreement to + any third party. + + 6. Export Restrictions. You must comply with all domestic and international + export laws and regulations that apply to the software, which include + restrictions on destinations, end users, and end use. For further information on + export restrictions, visit www.microsoft.com/exporting. + + 7. SUPPORT SERVICES. Because this software is “as is,” we may not provide + support services for it. + + 8. Entire Agreement. This agreement, and the terms for supplements, updates, + Internet-based services and support services that you use, are the entire + agreement for the software and support services. + + 9. Applicable Law. If you acquired the software in the United States, Washington + law applies to interpretation of and claims for breach of this agreement, and + the laws of the state where you live apply to all other claims. If you acquired + the software in any other country, its laws apply. + + 10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal + rights. You may have other rights, including consumer rights, under the laws of + your state or country. Separate and apart from your relationship with Microsoft, + you may also have rights with respect to the party from which you acquired the + software. This agreement does not change those other rights if the laws of your + state or country do not permit it to do so. For example, if you acquired the + software in one of the below regions, or mandatory country law applies, then the + following provisions apply to you: + + a) Australia. You have statutory guarantees under the Australian Consumer Law + and nothing in this agreement is intended to affect those rights. + + b) Canada. If you acquired this software in Canada, you may stop receiving + updates by turning off the automatic update feature, disconnecting your device + from the Internet (if and when you re-connect to the Internet, however, the + software will resume checking for and installing updates), or uninstalling the + software. The product documentation, if any, may also specify how to turn off + updates for your specific device or software. + + c) Germany and Austria. + + (i) Warranty. The software will perform substantially as described in any + Microsoft materials that accompany it. However, Microsoft gives no contractual + guarantee in relation to the software. + + (ii) Limitation of Liability. In case of intentional conduct, gross negligence, + claims based on the Product Liability Act, as well as in case of death or + personal or physical injury, Microsoft is liable according to the statutory law. + + Subject to the foregoing clause (ii), Microsoft will only be liable for slight + negligence if Microsoft is in breach of such material contractual obligations, + the fulfillment of which facilitate the due performance of this agreement, the + breach of which would endanger the purpose of this agreement and the compliance + with which a party may constantly trust in (so-called "cardinal obligations"). + In other cases of slight negligence, Microsoft will not be liable for slight + negligence + + 11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK + OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO + THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON- + INFRINGEMENT. + + 12. Limitation on and Exclusion of Remedies and Damages. YOU CAN RECOVER FROM + MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT + RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, + INDIRECT OR INCIDENTAL DAMAGES. + + This limitation applies to (a) anything related to the software, services, + content (including code) on third party Internet sites, or third party + applications; and (b) claims for breach of contract, breach of warranty, + guarantee or condition, strict liability, negligence, or other tort to the + extent permitted by applicable law. + + It also applies even if Microsoft knew or should have known about the + possibility of the damages. The above limitation or exclusion may not apply to + you because your state or country may not allow the exclusion or limitation of + incidental, consequential or other damages. + + Please note: As this software is distributed in Quebec, Canada, some of the + clauses in this agreement are provided below in French. + + Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses + dans ce contrat sont fournies ci-dessous en français. + + EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel + ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft + n'accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits + additionnels en vertu du droit local sur la protection des consommateurs, que ce + contrat ne peut modifier. La ou elles sont permises par le droit locale, les + garanties implicites de qualité marchande, d'adéquation à un usage particulier + et d'absence de contrefaçon sont exclues. + + + LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES + DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une + indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous + ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris + les dommages spéciaux, indirects ou accessoires et pertes de bénéfices. + + Cette limitation concerne: + + . tout ce qui est relié au logiciel, aux services ou au contenu (y compris le + code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et + + . les réclamations au titre de violation de contrat ou de garantie, ou au titre + de responsabilité stricte, de négligence ou d'une autre faute dans la limite + autorisée par la loi en vigueur. + + Elle s'applique également, même si Microsoft connaissait ou devrait connaître + l'éventualité d'un tel dommage. Si votre pays n'autorise pas l'exclusion ou la + limitation de responsabilité pour les dommages indirects, accessoires ou de + quelque nature que ce soit, il se peut que la limitation ou l'exclusion ci- + dessus ne s'appliquera pas à votre égard. + + EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous + pourriez avoir d'autres droits prévus par les lois de votre pays. Le présent + contrat ne modifie pas les droits que vous confèrent les lois de votre pays si + celles-ci ne le permettent pas. json: ms-net-library-2018-11.json - yml: ms-net-library-2018-11.yml + yaml: ms-net-library-2018-11.yml html: ms-net-library-2018-11.html - text: ms-net-library-2018-11.LICENSE + license: ms-net-library-2018-11.LICENSE - license_key: ms-net-library-2019-06 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-net-library-2019-06 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT .NET LIBRARY\n\nThese license terms are\ + \ an agreement between you and Microsoft Corporation (or based on where you live, one of\ + \ its affiliates). They apply to the software named above. The terms also apply to any Microsoft\ + \ services or updates for the software, except to the extent those have different terms.\n\ + \nIf you comply with these license terms, you have the rights below.\n1. INSTALLATION AND\ + \ USE RIGHTS.\n\nYou may install and use any number of copies of the software to develop\ + \ and test your applications. \n2. THIRD PARTY COMPONENTS. The software may include third\ + \ party components with separate legal notices or governed by other agreements, as may be\ + \ described in the ThirdPartyNotices file(s) accompanying the software.\n3. ADDITIONAL LICENSING\ + \ REQUIREMENTS AND/OR USE RIGHTS.\na. DISTRIBUTABLE CODE. The software is comprised of Distributable\ + \ Code. “Distributable Code” is code that you are permitted to distribute in applications\ + \ you develop if you comply with the terms below.\ni. Right to Use and Distribute.\n\n.\ + \ You may copy and distribute the object code form of the software.\n\n. Third Party Distribution.\ + \ You may permit distributors of your applications to copy and distribute the Distributable\ + \ Code as part of those applications.\nii. Distribution Requirements. For any Distributable\ + \ Code you distribute, you must\n\n. use the Distributable Code in your applications and\ + \ not as a standalone distribution;\n\n. require distributors and external end users to\ + \ agree to terms that protect it at least as much as this agreement; and\n\n. indemnify,\ + \ defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related\ + \ to the distribution or use of your applications, except to the extent that any claim is\ + \ based solely on the unmodified Distributable Code.\niii. Distribution Restrictions. You\ + \ may not\n\n. use Microsoft’s trademarks in your applications’ names or in a way that suggests\ + \ your applications come from or are endorsed by Microsoft; or\n\n. modify or distribute\ + \ the source code of any Distributable Code so that any part of it becomes subject to an\ + \ Excluded License. An “Excluded License” is one that requires, as a condition of use, modification\ + \ or distribution of code, that (i) it be disclosed or distributed in source code form;\ + \ or (ii) others have the right to modify it.\n4. DATA.\na. Data Collection. The software\ + \ may collect information about you and your use of the software, and send that to Microsoft.\ + \ Microsoft may use this information to provide services and improve our products and services.\ + \ You may opt-out of many of these scenarios, but not all, as described in the software\ + \ documentation. There are also some features in the software that may enable you and Microsoft\ + \ to collect data from users of your applications. If you use these features, you must comply\ + \ with applicable law, including providing appropriate notices to users of your applications\ + \ together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704.\ + \ You can learn more about data collection and its use from the software documentation and\ + \ our privacy statement. Your use of the software operates as your consent to these practices.\n\ + b. Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of\ + \ personal data in connection with the software, Microsoft makes the commitments in the\ + \ European Union General Data Protection Regulation Terms of the Online Services Terms to\ + \ all customers effective May 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr.\n\ + 5. Scope of License. The software is licensed, not sold. This agreement only gives you some\ + \ rights to use the software. Microsoft reserves all other rights. Unless applicable law\ + \ gives you more rights despite this limitation, you may use the software only as expressly\ + \ permitted in this agreement. In doing so, you must comply with any technical limitations\ + \ in the software that only allow you to use it in certain ways. You may not\n\n. work around\ + \ any technical limitations in the software;\n\n. reverse engineer, decompile or disassemble\ + \ the software, or otherwise attempt to derive the source code for the software, except\ + \ and to the extent required by third party licensing terms governing use of certain open\ + \ source components that may be included in the software;\n\n. remove, minimize, block or\ + \ modify any notices of Microsoft or its suppliers in the software;\n\n. use the software\ + \ in any way that is against the law; or\n\n. share, publish, rent or lease the software,\ + \ provide the software as a stand-alone offering for others to use, or transfer the software\ + \ or this agreement to any third party.\n6. Export Restrictions. You must comply with all\ + \ domestic and international export laws and regulations that apply to the software, which\ + \ include restrictions on destinations, end users, and end use. For further information\ + \ on export restrictions, visit www.microsoft.com/exporting. \n7. SUPPORT SERVICES. Because\ + \ this software is “as is,” we may not provide support services for it.\n8. Entire Agreement.\ + \ This agreement, and the terms for supplements, updates, Internet-based services and support\ + \ services that you use, are the entire agreement for the software and support services.\n\ + 9. Applicable Law. If you acquired the software in the United States, Washington law applies\ + \ to interpretation of and claims for breach of this agreement, and the laws of the state\ + \ where you live apply to all other claims. If you acquired the software in any other country,\ + \ its laws apply.\n10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain\ + \ legal rights. You may have other rights, including consumer rights, under the laws of\ + \ your state or country. Separate and apart from your relationship with Microsoft, you may\ + \ also have rights with respect to the party from which you acquired the software. This\ + \ agreement does not change those other rights if the laws of your state or country do not\ + \ permit it to do so. For example, if you acquired the software in one of the below regions,\ + \ or mandatory country law applies, then the following provisions apply to you:\na) Australia.\ + \ You have statutory guarantees under the Australian Consumer Law and nothing in this agreement\ + \ is intended to affect those rights.\nb) Canada. If you acquired this software in Canada,\ + \ you may stop receiving updates by turning off the automatic update feature, disconnecting\ + \ your device from the Internet (if and when you re-connect to the Internet, however, the\ + \ software will resume checking for and installing updates), or uninstalling the software.\ + \ The product documentation, if any, may also specify how to turn off updates for your specific\ + \ device or software.\nc) Germany and Austria.\n\n(i) Warranty. The software will perform\ + \ substantially as described in any Microsoft materials that accompany it. However, Microsoft\ + \ gives no contractual guarantee in relation to the software.\n\n(ii) Limitation of Liability.\ + \ In case of intentional conduct, gross negligence, claims based on the Product Liability\ + \ Act, as well as in case of death or personal or physical injury, Microsoft is liable according\ + \ to the statutory law.\nSubject to the foregoing clause (ii), Microsoft will only be liable\ + \ for slight negligence if Microsoft is in breach of such material contractual obligations,\ + \ the fulfillment of which facilitate the due performance of this agreement, the breach\ + \ of which would endanger the purpose of this agreement and the compliance with which a\ + \ party may constantly trust in (so-called \"cardinal obligations\"). In other cases of\ + \ slight negligence, Microsoft will not be liable for slight negligence\n11. Disclaimer\ + \ of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT\ + \ GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR\ + \ LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR\ + \ A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n12. Limitation on and Exclusion of Remedies\ + \ and Damages. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO\ + \ U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS,\ + \ SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to (a) anything related\ + \ to the software, services, content (including code) on third party Internet sites, or\ + \ third party applications; and (b) claims for breach of contract, breach of warranty, guarantee\ + \ or condition, strict liability, negligence, or other tort to the extent permitted by applicable\ + \ law.\n\nIt also applies even if Microsoft knew or should have known about the possibility\ + \ of the damages. The above limitation or exclusion may not apply to you because your state\ + \ or country may not allow the exclusion or limitation of incidental, consequential or other\ + \ damages." json: ms-net-library-2019-06.json - yml: ms-net-library-2019-06.yml + yaml: ms-net-library-2019-06.yml html: ms-net-library-2019-06.html - text: ms-net-library-2019-06.LICENSE + license: ms-net-library-2019-06.LICENSE - license_key: ms-net-library-2020-09 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-net-library-2020-09 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + MICROSOFT SOFTWARE LICENSE TERMS + + MICROSOFT .NET LIBRARY (INSTALL AND USE) + + These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft + + . updates, + + . supplements, + + . Internet-based services, and + + . support services + + for this software, unless other terms accompany those items. If so, those terms apply. + + BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE. + + IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW. + + 1. INSTALLATION AND USE RIGHTS. + + a. Installation and Use. You may install and use any number of copies of the software to design, develop and test your programs. + + b. Third Party Programs. The software may include third party programs that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party program are included for your information only. + + 2. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not + + . work around any technical limitations in the software; + + . reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; + + . publish the software for others to copy; + + . rent, lease or lend the software; + + . transfer the software or this agreement to any third party; or + + 3. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software. + + 4. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. + + 5. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting. + + 6. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. + + 7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. + + 8. APPLICABLE LAW. + + a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. + + b. Outside the United States. If you acquired the software in any other country, the laws of that country apply. + + 9. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so. + + 10. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + + FOR AUSTRALIA – YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS. + + 11. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. + + This limitation applies to + + . anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and + + . claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + + It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. + + Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French. + + Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français. + + EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon sont exclues. + + LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices. + + Cette limitation concerne : + + . tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et + + . les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur. + + Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. + + EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. json: ms-net-library-2020-09.json - yml: ms-net-library-2020-09.yml + yaml: ms-net-library-2020-09.yml html: ms-net-library-2020-09.html - text: ms-net-library-2020-09.LICENSE + license: ms-net-library-2020-09.LICENSE - license_key: ms-nt-resource-kit + category: Commercial spdx_license_key: LicenseRef-scancode-ms-nt-resource-kit other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Microsoft NT Resource Kit License\nMICROSOFT WINDOWS NT RESOURCE KIT SUPPORT TOOLS\n\ + END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE \n\nIMPORTANT-READ CAREFULLY: This Microsoft\ + \ End-User License Agreement (\"EULA\") is a legal agreement between you (either an individual\ + \ or a single entity) and Microsoft Corporation for the Microsoft software identified above,\ + \ which includes computer software and may include associated media, printed materials,\ + \ and \"online\" or electronic documentation (\"SOFTWARE\"). The SOFTWARE also includes\ + \ any updates and supplements to the original SOFTWARE provided to you by Microsoft. Any\ + \ software provided along with the SOFTWARE that is associated with a separate end-user\ + \ license agreement is licensed to you under the terms of that license agreement. By installing,\ + \ copying, or otherwise using the SOFTWARE, you agree to be bound by the terms of this EULA.\ + \ If you do not agree to the terms of this EULA, do not install or use the SOFTWARE.\n\n\ + SOFTWARE LICENSE: The SOFTWARE is protected by copyright laws and international copyright\ + \ treaties, as well as other intellectual property laws and treaties. The SOFTWARE is licensed,\ + \ not sold.\n\n1. GRANT OF LICENSE. This EULA grants you the following rights:\n\n*Installation\ + \ and Use. Except as otherwise provided herein, you, as an individual may install and use\ + \ copies of the SOFTWARE on an unlimited number of computers, including workstations, terminals\ + \ or other electronic devices (\"Computer(s)\") provided that you are the only individual\ + \ using the SOFTWARE. If you are an entity, you may designate one individual within your\ + \ organization to have the right to use the SOFTWARE in the manner provided above. The SOFTWARE\ + \ is in \"use\" on a Computer when it is loaded into temporary memory (i.e., RAM) or installed\ + \ into permanent memory (e.g., hard disk, CD-ROM, or other storage device) of that Computer.\ + \ \n\n*Client/Server Software. The SOFTWARE may contain one or more components which consist\ + \ of both the following types of software: \"Server Software\" that is installed and provides\ + \ services on a computer acting as a server (\"Server\"); and \"Client Software\" that allows\ + \ a Computer to access or utilize the services provided by the Server Software. If the component\ + \ of the SOFTWARE consists of both Server Software and Client Software which are used together,\ + \ you may also install and use copies of such Client Software on Computers within your organization\ + \ and which are connected to your internal network. Such Computers running this Client Software\ + \ may be used by more than one individual.\n\n2. DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS.\ + \ \n\n*Limitations on Reverse Engineering, Decompilation, and Disassembly. You may not reverse\ + \ engineer, decompile, or disassemble the SOFTWARE, except and only to the extent that such\ + \ activity is expressly permitted by applicable law notwithstanding this limitation. \n\n\ + *Rental. You may not rent, lease or lend the SOFTWARE. \n\n*Support Services. Microsoft\ + \ may provide you with support services related to the SOFTWARE (\"Support Services\").\ + \ Use of Support Services is governed by the Microsoft polices and programs described in\ + \ the user manual, in \"on line\" documentation and/or other Microsoft-provided materials.\ + \ Any supplemental software code provided to you as part of the Support Services shall\ + \ be considered part of the SOFTWARE and subject to the terms and conditions of this EULA.\ + \ With respect to technical information you provide to Microsoft as part of the Support\ + \ Services, Microsoft may use such information for its business purposes, including for\ + \ product support and development. Microsoft will not utilize such technical information\ + \ in a form that personally identifies you. \n\n*Termination. Without prejudice to any other\ + \ rights, Microsoft may terminate this EULA if you fail to comply with the terms and conditions\ + \ of this EULA. In such event, you must destroy all copies of the SOFTWARE and all of its\ + \ component parts.\n\n3. COPYRIGHT. All title and intellectual property rights in and to\ + \ the SOFTWARE (including but not limited to any images, photographs, animations, video,\ + \ audio, music, text, and \"applets\" incorporated into the SOFTWARE), the accompanying\ + \ printed materials, and any copies of the SOFTWARE are owned by Microsoft or its suppliers.\ + \ All title and intellectual property rights in and to the content which may be accessed\ + \ through use of the SOFTWARE is the property of the respective content owner and may be\ + \ protected by applicable copyright or other intellectual property laws and treaties. This\ + \ EULA grants you no rights to use such content. All rights not expressly granted are reserved\ + \ by Microsoft.\n\n4. BACKUP COPY. After installation of one copy of the SOFTWARE pursuant\ + \ to this EULA, you may keep the original media on which the SOFTWARE was provided by Microsoft\ + \ solely for backup or archival purposes. If the original media is required to use the SOFTWARE\ + \ on the Computer, you may make one copy of the SOFTWARE solely for backup or archival purposes.\ + \ Except as expressly provided in this EULA, you may not otherwise make copies of the SOFTWARE\ + \ or the printed materials accompanying the SOFTWARE.\n\n5. U.S. GOVERNMENT RESTRICTED RIGHTS.\ + \ The SOFTWARE and documentation are provided with RESTRICTED RIGHTS. Use, duplication,\ + \ or disclosure by the Government is subject to restrictions as set forth in subparagraph\ + \ (c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013\ + \ or subparagraphs (c)(1) and (2) of the Commercial Computer Software-Restricted Rights\ + \ at 48 CFR 52.227-19, as applicable. Manufacturer is Microsoft Corporation/One Microsoft\ + \ Way/Redmond, WA 98052-6399.\n\n6. EXPORT RESTRICTIONS. You agree that you will not export\ + \ or re-export the SOFTWARE, any part thereof, or any process or service that is the direct\ + \ product of the SOFTWARE (the foregoing collectively referred to as the \"Restricted Components\"\ + ), to any country, person or entity subject to U.S. export restrictions. You specifically\ + \ agree not to export or re-export any of the Restricted Components (i) to any country to\ + \ which the U.S. has embargoed or restricted the export of goods or services, which currently\ + \ include, but are not necessarily limited to Cuba, Iran, Iraq, Libya, North Korea, Sudan\ + \ and Syria, or to any national of any such country, wherever located, who intends to transmit\ + \ or transport the Restricted Components back to such country; (ii) to any entity who you\ + \ know or have reason to know will utilize the Restricted Components in the design, development\ + \ or production of nuclear, chemical or biological weapons; or (iii) to any entity who you\ + \ know or have reason to know has been prohibited from partcipating in U.S. export transactions\ + \ by any federal agency of the U.S. government. You warrant and represent that neither the\ + \ BXA nor any other U.S. federal agency has suspended, revoked or denied your export privileges.\n\ + \n7. NOTE ON JAVA SUPPORT. THE SOFTWARE MAY CONTAIN SUPPORT FOR PROGRAMS WRITTEN IN JAVA.\ + \ JAVA TECHNOLOGY IS NOT FAULT TOLERANT AND IS NOT DESIGNED, MANUFACTURED, OR INTENDED FOR\ + \ USE OR RESALE AS ON-LINE CONTROL EQUIPMENT IN HAZARDOUS ENVIRONMENTS REQUIRING FAIL-SAFE\ + \ PERFORMANCE, SUCH AS IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR COMMUNICATION\ + \ SYSTEMS, AIR TRAFFIC CONTROL, DIRECT LIFE SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH\ + \ THE FAILURE OF JAVA TECHNOLOGY COULD LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SEVERE\ + \ PHYSICAL OR ENVIRONMENTAL DAMAGE.\n\nMISCELLANEOUS\n*If you acquired this SOFTWARE in\ + \ the United States, this EULA is governed by the laws of the State of Washington. *If you\ + \ acquired this SOFTWARE in Canada, this EULA is governed by the laws of the Province of\ + \ Ontario, Canada. In such case, each of the parties hereto irrevocably attorns to the jurisdiction\ + \ of the courts of the Province of Ontario and further agrees to commence any litigation\ + \ which may arise hereunder in the courts located in the Judicial District of York, Province\ + \ of Ontario.\n\n*If this SOFTWARE was acquired outside the United States, then local law\ + \ may apply.\n\n*Should you have any questions concerning this EULA, or if you desire to\ + \ contact Microsoft for any reason, please contact the Microsoft subsidiary serving your\ + \ country, or write: Microsoft Sales Information Center/One Microsoft Way/Redmond, WA 98052-6399.\n\ + \nNO WARRANTIES. MICROSOFT EXPRESSLY DISCLAIMS ANY WARRANTY FOR THE SOFTWARE. THE SOFTWARE\ + \ AND ANY RELATED DOCUMENTATION IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER\ + \ EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. THE ENTIRE RISK ARISING OUT OF USE\ + \ OR PERFORMANCE OF THE SOFTWARE REMAINS WITH YOU.\n\nLIMITATION OF LIABILITY. To the maximum\ + \ extent permitted by applicable law, in no event shall Microsoft or its suppliers be liable\ + \ for any special, incidental, indirect, or consequential damages whatsoever (including,\ + \ without limitation, damages for loss of business profits, business interruption, loss\ + \ of business information, or any other pecuniary loss) arising out of the use of or inability\ + \ to use the SOFTWARE or the provision of or failure to provide Support Services, even if\ + \ Microsoft has been advised of the possibility of such damages. In any case, Microsoft's\ + \ entire liability under any provision of this EULA shall be limited to the greater of the\ + \ amount actually paid by you for the SOFTWARE or US$5.00; provided however, if you have\ + \ entered into a Microsoft Support Services agreement, Microsoft's entire liability regarding\ + \ Support Services shall be governed by the terms of that agreement. Because some states\ + \ and jurisdictions do not allow the exclusion or limitation of liability, the above limitation\ + \ may not apply to you.\n\n(French text omitted)" json: ms-nt-resource-kit.json - yml: ms-nt-resource-kit.yml + yaml: ms-nt-resource-kit.yml html: ms-nt-resource-kit.html - text: ms-nt-resource-kit.LICENSE + license: ms-nt-resource-kit.LICENSE - license_key: ms-nuget + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-nuget other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "NUGET: BEGIN LICENSE TEXT\nMicrosoft grants you the right to use these script files\ + \ for the sole\npurpose of either: \n\n(i) interacting through your browser with the Microsoft\ + \ website or\nonline service, subject to the applicable licensing or use terms;\n\nor (ii)\ + \ using the files as included with a Microsoft product subject to\nthat product's license\ + \ terms. Microsoft reserves all other rights to the\nfiles not expressly granted by Microsoft,\ + \ whether by implication,\nestoppel or otherwise.\n\nInsofar as a script file is dual licensed\ + \ under GPL, Microsoft neither\ntook the code under GPL nor distributes it thereunder but\ + \ under the\nterms set out in this paragraph. All notices and licenses below are for\ninformational\ + \ purposes only.\nNUGET: END LICENSE TEXT" json: ms-nuget.json - yml: ms-nuget.yml + yaml: ms-nuget.yml html: ms-nuget.html - text: ms-nuget.LICENSE + license: ms-nuget.LICENSE - license_key: ms-nuget-package-manager + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-nuget-package-manager other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\n\nNUGET-BASED MICROSOFT PACKAGE MANAGER\n\nThese\ + \ license terms are an agreement between Microsoft Corporation (or based on where you live,\ + \ one of its affiliates) and you. Please read them. They apply to the software named above,\ + \ which includes the media on which you received it, if any. The terms also apply to any\ + \ Microsoft\n\n· updates,\n\n· supplements,\n\n· Internet-based services, and\n\n· support\ + \ services\n\nfor this software, unless other terms accompany those items. If so, those\ + \ terms apply.\n\nBy using the software, you accept these terms. If you do not accept them,\ + \ do not use the software.\n\nAs described below, using some features also operates as your\ + \ consent to the transmission of certain computer information for Internet-based services.\n\ + \nIf you comply with these license terms, you have the perpetual rights below.\n\n1. INSTALLATION\ + \ AND USE RIGHTS. You may install and use any number of copies of the software on your devices.\n\ + \n2. INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software.\ + \ It may change or cancel them at any time.\n\na. Consent for Internet-Based Services. The\ + \ software features described below connect to external computer systems over the Internet.\ + \ These features may collect and send information about your computer and/or your project,\ + \ such as your Internet Protocol address and requested packages (\"Computer Information\"\ + ).\n\n· Package Search and Enumeration. This software feature will access a list of packages\ + \ that are available for download and installation from a package source. If you have specified\ + \ a package source that resides on an external computer, using this feature will connect\ + \ and transmit Computer Information to the external computer system over the Internet. \ + \ By default, a URL under the nuget.org domain is specified as a package source. For more\ + \ information about this feature, see http://docs.nuget.org/docs/start-here/managing-nuget-packages-using-the-dialog.\ + \ You may specify only package sources that reside on internal networks or you may refrain\ + \ from using this feature. By using this feature to access packages hosted on an external\ + \ source, you consent to the transmission of Computer Information.\n\n· Package Download.\ + \ This software feature will download any packages that you have selected for installation\ + \ and will place them into a project folder on your computer. If a package that you have\ + \ selected for installation depends on additional packages that are not already contained\ + \ in your project folder, the software will automatically download those additional packages\ + \ from their respective package sources, some of which may reside on external computer systems.\ + \ You may specify only package sources that reside on internal networks or you may refrain\ + \ from using this feature. By using this feature to download packages hosted on an external\ + \ source, you consent to the transmission of Computer Information.\n\n· Package Restore.\ + \ This software feature will allow you to add package references to your project. If you\ + \ attempt to build a project that includes package references, the software will automatically\ + \ download and install any missing packages from your configured package sources, some of\ + \ which may reside on external computer systems. For more information about this feature,\ + \ see http://docs.nuget.org/docs/reference/package-restore. To prevent the software from\ + \ automatically downloading missing packages during build time, open the Tools > Options\ + \ dialog from within Visual Studio, select \"Package Manager\" from the options, and uncheck\ + \ the \"Allow NuGet to download missing packages\" checkbox. By leaving this checkbox checked,\ + \ you consent to the transmission of Computer Information.\n\n· Use of Information by Microsoft.\ + \ We will treat any Computer Information that we receive from the software in accordance\ + \ with our Privacy Statement set forth at http://www.microsoft.com/web/webpi/eula/package-manager-for-net-privacy.htm\ + \ or another web page that we may specify from time to time. \n\n· Use of Information by\ + \ Third Parties. Computer Information may be sent to third-party external computer systems,\ + \ as described above. Any information you provide to a third party through your use of\ + \ the software is governed by their privacy statements and policies. We do not control,\ + \ and we disclaim any responsibility for, how third-party service providers may use Computer\ + \ Information.\n\nb. Misuse of Internet-based Services. You may not use these Internet-based\ + \ Services in any way that could harm them or impair anyone else’s use of them. You may\ + \ not use these Internet-based Services to try to gain unauthorized access to any service,\ + \ data, account or network by any means.\n\n3. THIRD-PARTY SOFTWARE. Packages that are\ + \ downloaded from external package sources are offered and distributed in some cases by\ + \ third parties and in some cases by Microsoft, but each such package is under its own license\ + \ terms. Microsoft is not developing, distributing or licensing any third-party packages\ + \ to you, but instead, as a convenience, enables you to use the software to access or obtain\ + \ those packages directly from the third-party package providers. By using any of the above\ + \ features, you acknowledge and agree that: \n\n· you are obtaining any third-party packages\ + \ from such third parties and under separate license terms applicable to each package (including\ + \ any terms applicable to software dependencies that may be included in the packages);\n\ + \n· it is your responsibility to locate, understand and comply with all applicable license\ + \ terms for each such package; and\n\n· this includes your responsibility to follow the\ + \ package source (feed) URL and to review the packages for embedded notices or license terms.\ + \ \n\nMicrosoft makes no representations, warranties or guarantees as to any package source,\ + \ including any information or content contained therein, any package source URL, or any\ + \ packages referenced in or accessed by you through such URLs or package sources. Microsoft\ + \ grants you no license rights for any third-party software applications or packages that\ + \ are obtained using the software. \n\n4. THIRD PARTY NOTICES. The software (not including\ + \ any packages that you obtain using the software) includes third-party code. However, all\ + \ such code is licensed to you by Microsoft under this license agreement, rather than licensed\ + \ to you by any third party under some other license terms. Notices, if any, for the third-party\ + \ code are included with this software for your information only.\n\n5. SCOPE OF LICENSE.\ + \ The software is licensed, not sold. This agreement only gives you some rights to use the\ + \ software. Microsoft reserves all other rights. Unless applicable law gives you more rights\ + \ despite this limitation, you may use the software only as expressly permitted in this\ + \ agreement. In doing so, you must comply with any technical limitations in the software\ + \ that only allow you to use it in certain ways. You may not\n\n· work around any technical\ + \ limitations in the software;\n\n· reverse engineer, decompile or disassemble the software,\ + \ except and only to the extent that applicable law expressly permits, despite this limitation;\n\ + \n· publish the software for others to copy;\n\n· rent, lease or lend the software; or\n\ + \n· transfer the software or this agreement to any third party.\n\n6. DOCUMENTATION. Any\ + \ person that has valid access to your computer or internal network may copy and use the\ + \ documentation for your internal, reference purposes.\n\n7. EXPORT RESTRICTIONS. The software\ + \ is subject to United States export laws and regulations. You must comply with all domestic\ + \ and international export laws and regulations that apply to the software. These laws include\ + \ restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\n\ + \n8. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services\ + \ for it.\n\n9. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates,\ + \ Internet-based services and support services that you use, are the entire agreement for\ + \ the software and support services.\n\n10. APPLICABLE LAW.\n\na. United States. If you\ + \ acquired the software in the United States, Washington state law governs the interpretation\ + \ of this agreement and applies to claims for breach of it, regardless of conflict of laws\ + \ principles. The laws of the state where you live govern all other claims, including claims\ + \ under state consumer protection laws, unfair competition laws, and in tort.\n\nb. Outside\ + \ the United States. If you acquired the software in any other country, the laws of that\ + \ country apply.\n\n11. LEGAL EFFECT. This agreement describes certain legal rights. You\ + \ may have other rights under the laws of your country. You may also have rights with respect\ + \ to the party from whom you acquired the software. This agreement does not change your\ + \ rights under the laws of your country if the laws of your country do not permit it to\ + \ do so.\n\n12. DISCLAIMER OF WARRANTY. The software is licensed \"as-is.\" You bear the\ + \ risk of using it. Microsoft gives no express warranties, guarantees or conditions. You\ + \ may have additional consumer rights or statutory guarantees under your local laws which\ + \ this agreement cannot change. To the extent permitted under your local laws, Microsoft\ + \ excludes the implied warranties of merchantability, fitness for a particular purpose and\ + \ non-infringement.\n\nFOR AUSTRALIA – You have statutory guarantees under the Australian\ + \ Consumer Law and nothing in these terms is intended to affect those rights.\n\n13. LIMITATION\ + \ ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers\ + \ only direct damages up to U.S. $5.00. You cannot recover any other damages, including\ + \ consequential, lost profits, special, indirect or incidental damages.\n\nThis limitation\ + \ applies to\n\n· anything related to the software, services, content (including code) on\ + \ third-party Internet sites, or third-party programs; and\n\n· claims for breach of contract,\ + \ breach of warranty, guarantee or condition, strict liability, negligence, or other tort\ + \ to the extent permitted by applicable law.\n\nIt also applies even if Microsoft knew or\ + \ should have known about the possibility of the damages. The above limitation or exclusion\ + \ may not apply to you because your country may not allow the exclusion or limitation of\ + \ incidental, consequential or other damages." json: ms-nuget-package-manager.json - yml: ms-nuget-package-manager.yml + yaml: ms-nuget-package-manager.yml html: ms-nuget-package-manager.html - text: ms-nuget-package-manager.LICENSE + license: ms-nuget-package-manager.LICENSE - license_key: ms-office-extensible-file + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-office-extensible-file other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "This license governs use of the accompanying software. If you use the software, you\n\ + \ accept this license. If you do not accept the license, do not use the software.\n \n1.\ + \ Definitions\n The terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and \"\ + distribution\" have the\n same meaning here as under U.S. copyright law.\n A \"contribution\"\ + \ is the original software, or any additions or changes to the software.\n A \"contributor\"\ + \ is any person that distributes its contribution under this license.\n \"Licensed patents\"\ + \ are a contributor's patent claims that read directly on its contribution.\n \"Excluded\ + \ Products” are software products or components, or web-based or hosted services, that primarily\ + \ perform the same general functions as any of the following software applications: Microsoft\ + \ Office, Word, Excel, PowerPoint, Outlook, OneNote, Publisher, SharePoint, or Access. \n\ + \ \n2. Grant of Rights\n (A) Copyright Grant- Subject to the terms of this license, including\ + \ the license conditions and limitations in section 3, each contributor grants you a non-exclusive,\ + \ worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative\ + \ works of its contribution, and distribute its contribution or any derivative works that\ + \ you create.\n (B) Patent Grant- Subject to the terms of this license, including the license\ + \ conditions and limitations in section 3, each contributor grants you a non-exclusive,\ + \ worldwide, royalty-free license under its licensed patents to make, have made, use, sell,\ + \ offer for sale, import, and/or otherwise dispose of its contribution in the software or\ + \ derivative works of the contribution in the software.\n \n3. Conditions and Limitations\n\ + \ (A) No Trademark License- This license does not grant you rights to use any contributors'\ + \ name, logo, or trademarks.\n (B) If you bring a patent claim against any contributor over\ + \ patents that you claim are infringed by the software, your patent license from such contributor\ + \ to the software ends automatically.\n (C) If you distribute any portion of the software,\ + \ you must retain all copyright, patent, trademark, and attribution notices that are present\ + \ in the software.\n (D) If you distribute any portion of the software in source code form,\ + \ you may do so only under this license by including a complete copy of this license with\ + \ your distribution. If you distribute any portion of the software in compiled or object\ + \ code form, you may only do so under a license that complies with this license.\n (E) The\ + \ software is licensed \"as-is.\" You bear the risk of using it. The contributors give no\ + \ express warranties, guarantees or conditions. You may have additional consumer rights\ + \ under your local laws which this license cannot change. To the extent permitted under\ + \ your local laws, the contributors exclude the implied warranties of merchantability, fitness\ + \ for a particular purpose and non-infringement.\n (F) Platform Limitation- The licenses\ + \ granted in sections 2(A) & 2(B) extend only to the software or derivative works that (1)\ + \ are run on a Microsoft Windows operating system product, and (2) are not Excluded Products." json: ms-office-extensible-file.json - yml: ms-office-extensible-file.yml + yaml: ms-office-extensible-file.yml html: ms-office-extensible-file.html - text: ms-office-extensible-file.LICENSE + license: ms-office-extensible-file.LICENSE - license_key: ms-office-system-programs-eula + category: Commercial spdx_license_key: LicenseRef-scancode-ms-office-system-programs-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "SUPPLEMENTAL END USER LICENSE AGREEMENT FOR \nMICROSOFT OFFICE SYSTEM PROGRAMS SOFTWARE\n\ + \nPLEASE READ THIS SUPPLEMENTAL END-USER LICENSE AGREEMENT (\"SUPPLEMENTAL EULA\") CAREFULLY.\ + \ BY INSTALLING OR USING THE SOFTWARE THAT ACCOMPANIES THIS SUPPLEMENTAL EULA, YOU AGREE\ + \ TO THE TERMS OF THIS SUPPLEMENTAL EULA. IF YOU DO NOT AGREE, DO NOT INSTALL OR USE THE\ + \ SOFTWARE.\n\n1.\tGeneral\n\n\tThe accompanying Microsoft software includes computer software\ + \ and may include associated media, printed materials, online or electronic documentation,\ + \ and Internet-based services (collectively, the \"Components\"). The Components are provided\ + \ to update, supplement, or replace existing functionality of the Microsoft Software named\ + \ above which you previously licensed (the \"Software\"). Your use of the Components is\ + \ subject to the terms and conditions of this Supplemental EULA and, as set forth below,\ + \ the end user license agreement (either from Microsoft or some other entity) under which\ + \ you have previously licensed the Software (the \"Software EULA\"). \n\nIF YOU DO NOT\ + \ HAVE A VALIDLY LICENSED COPY OF THE SOFTWARE, YOU ARE NOT AUTHORIZED TO INSTALL, COPY\ + \ OR OTHERWISE USE THE COMPONENTS AND YOU HAVE NO RIGHTS UNDER THIS SUPPLEMENTAL EULA.\n\ + \n2.\tGeneral Terms and Conditions of Your Use of the Components\n\n 2.1\tMicrosoft\ + \ grants you a license to the Components equivalent to, and subject to the same conditions,\ + \ limitations and restrictions as, the license that the Software EULA grants you with respect\ + \ to the Software, except as set forth below. \n \n 2.2\tYou may reproduce,\ + \ install and use one copy of the Components on each computer running a validly licensed\ + \ copy of the Software. \n \n 2.3\tThe Components are protected by copyright\ + \ and other intellectual property laws and treaties. Microsoft Corporation or its suppliers\ + \ own the title, copyright, and other intellectual property rights in the Components. All\ + \ rights not expressly granted to you in this Supplemental EULA are reserved. The Components\ + \ are licensed, not sold. \n \n 2.4\tMicrosoft also grants you the right\ + \ to reproduce and distribute the .MSI file created on your computer upon installation of\ + \ the Component (the \"Redistributable File\") in object code form only, provided that you\ + \ comply with the following distribution requirements: (a) you distribute the Redistributable\ + \ File only in conjunction with, and as a part of, your software program (\"Program\");\ + \ (b) your Program adds significant and primary functionality to the Redistributable File;\ + \ (c) you do not permit further redistribution of the Redistributable File by your end-user\ + \ customers; (d) you do not use Microsoft's name, logo, or trademarks to market your Program;\ + \ (e) you include a valid copyright notice on your Program; and (f) you agree to indemnify,\ + \ hold harmless, and defend Microsoft from and against any claims or lawsuits, including\ + \ attorneys' fees, that arise or result from the use or distribution of your Program..\n\ + \ \n 2.5\tCapitalized terms used in this Supplemental EULA and not otherwise\ + \ defined herein shall have the meanings assigned to them in the Software EULA.\n\n3.\t\ + Additional Rights and Limitations\n\nIf the Software was licensed to you by Microsoft or\ + \ any of its wholly owned subsidiaries, the limited warranty (if any) included in the Software\ + \ EULA applies to the Components provided that the Components have been licensed to you\ + \ within the term of that limited warranty. However, this Supplemental EULA does not extend\ + \ the time period for which that limited warranty is provided. \n\nIF THE SOFTWARE WAS\ + \ LICENSED TO YOU BY AN ENTITY OTHER THAN MICROSOFT OR ANY OF ITS WHOLLY OWNED SUBSIDIARIES,\ + \ THEN THE FOLLOWING THREE PARAGRAPHS ALSO APPLY:\n\nDISCLAIMER OF WARRANTIES. TO THE MAXIMUM\ + \ EXTENT PERMITTED BY APPLICABLE LAW, MICROSOFT AND ITS SUPPLIERS PROVIDE TO YOU THE COMPONENTS\ + \ AND SUPPORT SERVICES (IF ANY) AS IS AND WITH ALL FAULTS; AND MICROSOFT AND ITS SUPPLIERS\ + \ HEREBY DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS, WHETHER EXPRESS, IMPLIED OR STATUTORY,\ + \ INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES, DUTIES OR CONDITIONS OF\ + \ MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF RELIABILITY OR AVAILABILITY,\ + \ OF ACCURACY OR COMPLETENESS OF RESPONSES, OF RESULTS, OF WORKMANLIKE EFFORT, OF LACK OF\ + \ VIRUSES, AND OF LACK OF NEGLIGENCE, ALL WITH REGARD TO THE COMPONENTS, AND THE PROVISION\ + \ OF OR FAILURE TO PROVIDE SUPPORT OR OTHER SERVICES, INFORMATION, SOFTWARE, AND RELATED\ + \ CONTENT THROUGH THE COMPONENTS OR OTHERWISE ARISING OUT OF THE USE OF THE COMPONENTS.\ + \ ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, QUIET POSSESSION,\ + \ CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT WITH REGARD TO THE COMPONENTS. \n\n\ + EXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER DAMAGES. TO THE MAXIMUM EXTENT\ + \ PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL MICROSOFT OR ITS SUPPLIERS BE LIABLE FOR\ + \ ANY SPECIAL, INCIDENTAL, PUNITIVE, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING,\ + \ BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS OR CONFIDENTIAL OR OTHER INFORMATION,\ + \ FOR BUSINESS INTERRUPTION, FOR PERSONAL INJURY, FOR LOSS OF PRIVACY, FOR FAILURE TO MEET\ + \ ANY DUTY INCLUDING OF GOOD FAITH OR OF REASONABLE CARE, NEGLIGENCE, AND ANY OTHER PECUNIARY\ + \ OR OTHER LOSS WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF OR INABILITY\ + \ TO USE THE COMPONENTS, THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT OR OTHER SERVICES,\ + \ INFORMATION, SOFTWARE, AND RELATED CONTENT THROUGH THE COMPONENTS OR OTHERWISE ARISING\ + \ OUT OF THE USE OF THE COMPONENTS, OR OTHERWISE UNDER OR IN CONNECTION WITH ANY PROVISION\ + \ OF THIS SUPPLEMENTAL EULA, EVEN IN THE EVENT OF THE FAULT, TORT (INCLUDING NEGLIGENCE),\ + \ MISREPRESENTATION, STRICT OR PRODUCT LIABILITY, BREACH OF CONTRACT OR BREACH OF WARRANTY\ + \ OF MICROSOFT OR ANY SUPPLIER, AND EVEN IF MICROSOFT OR ANY SUPPLIER HAS BEEN ADVISED OF\ + \ THE POSSIBILITY OF SUCH DAMAGES. \n\nLIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING\ + \ ANY DAMAGES THAT YOU MIGHT INCUR FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT LIMITATION,\ + \ ALL DAMAGES REFERENCED ABOVE AND ALL DIRECT OR GENERAL DAMAGES IN CONTRACT OR ANYTHING\ + \ ELSE), THE ENTIRE LIABILITY OF MICROSOFT AND ANY OF ITS SUPPLIERS UNDER ANY PROVISION\ + \ OF THIS SUPPLEMENTAL EULA AND YOUR EXCLUSIVE REMEDY FOR ALL OF THE FOREGOING SHALL BE\ + \ LIMITED TO THE GREATER OF THE ACTUAL DAMAGES YOU INCUR IN REASONABLE RELIANCE ON THE COMPONENTS\ + \ UP TO THE AMOUNT ACTUALLY PAID BY YOU FOR THE COMPONENTS OR U.S.$5.00. THE FOREGOING\ + \ LIMITATIONS, EXCLUSIONS AND DISCLAIMERS SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED BY\ + \ APPLICABLE LAW, EVEN IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE.\n\nSi vous avez acquis\ + \ votre produit Microsoft au CANADA, le texte suivant vous concerne :\n\nDÉNI DE GARANTIES.\ + \ DANS LA MESURE MAXIMALE PERMISE PAR LES LOIS APPLICABLES, LES COMPOSANTS OS ET LES SERVICES\ + \ DE SOUTIEN TECHNIQUE (LE CAS ÉCHÉANT) SONT FOURNIS TELS QUELS ET AVEC TOUS LES DÉFAUTS\ + \ PAR MICROSOFT ET SES FOURNISSEURS, LESQUELS PAR LES PRÉSENTES DÉNIENT TOUTES AUTRES GARANTIES\ + \ ET CONDITIONS EXPRESSES, IMPLICITES OU EN VERTU DE LA LOI, NOTAMMENT, MAIS SANS LIMITATION,\ + \ (LE CAS ÉCHÉANT) LES GARANTIES, DEVOIRS OU CONDITIONS IMPLICITES DE QUALITÉ MARCHANDE,\ + \ D’ADAPTATION À UNE FIN PARTICULIÈRE, DE FIABILITÉ OU DE DISPONIBILITÉ, D’EXACTITUDE OU\ + \ D’EXHAUSTIVITÉ DES RÉPONSES, DES RÉSULTATS, DES EFFORTS DÉPLOYÉS SELON LES RÈGLES DE L’ART,\ + \ D’ABSENCE DE VIRUS ET D’ABSENCE DE NÉGLIGENCE, LE TOUT À L’ÉGARD DU LOGICIEL ET DE LA\ + \ PRESTATION OU DE L’OMISSION DE LA PRESTATION DES SERVICES DE SOUTIEN TECHNIQUE OU À L’ÉGARD\ + \ DE LA FOURNITURE OU DE L’OMISSION DE LA FOURNITURE DE TOUS AUTRES SERVICES, RENSEIGNEMENTS,\ + \ LOGICIELS, ET CONTENU QUI S’Y RAPPORTE GRÂCE AU LOGICIEL OU PROVENANT AUTREMENT DE L’UTILISATION\ + \ DU LOGICIEL . PAR AILLEURS, IL N’Y A AUCUNE GARANTIE OU CONDITION QUANT AU TITRE DE PROPRIÉTÉ,\ + \ À LA JOUISSANCE OU LA POSSESSION PAISIBLE, À LA CONCORDANCE À UNE DESCRIPTION NI QUANT\ + \ À UNE ABSENCE DE CONTREFAÇON CONCERNANT LES COMPOSANTS OS.\n\nEXCLUSION DE RESPONSABILITÉ\ + \ POUR LES DOMMAGES ACCESSOIRES, INDIRECTS ET CERTAINS AUTRES TYPES DE DOMMAGES. DANS TOUTE\ + \ LA MESURE PERMISE PAR LE DROIT APPLICABLE, MICROSOFT OU SES FOURNISSEURS NE POURRONT EN\ + \ AUCUN CAS ÊTRE TENUS RESPONSABLES DE TOUT DOMMAGE SPÉCIAL, ACCESSOIRE, INCIDENT OU INDIRECT\ + \ DE QUELQUE NATURE QUE CE SOIT (Y COMPRIS, MAIS NON DE FACON LIMITATIVE, LES PERTES DE\ + \ BÉNÉFICES, PERTES D'INFORMATIONS CONFIDENTIELLES OU AUTRES INFORMATIONS, INTERRUPTIONS\ + \ D'ACTIVITÉ, PRÉJUDICES CORPORELS, ATTEINTES À LA VIE PRIVÉE, MANQUEMENT À TOUTE OBLIGATION\ + \ (NOTAMMENT L'OBLIGATION DE BONNE FOI ET DE DILIGENCE), NÉGLIGENCE, ET POUR TOUTE PERTE\ + \ PÉCUNIAIRE OU AUTRE DE QUELQUE NATURE QUE CE SOIT), RÉSULTANT DE, OU RELATIFS A, L'UTILISATION\ + \ OU L'IMPOSSIBILITÉ D'UTILISER LES COMPOSANTS OS OU LES SERVICES D'ASSISTANCE, OU LA FOURNITURE\ + \ OU LE DÉFAUT DE FOURNITURE DES SERVICES D'ASSISTANCE, OU AUTREMENT EN VERTU DE, OU RELATIVEMENT\ + \ A, TOUTE DISPOSITION DE CE CLUF SUPPLÉMENTAIRE, MÊME SI LA SOCIÉTÉ MICROSOFT OU UN QUELCONQUE\ + \ FOURNISSEUR A ÉTÉ PRÉVENU DE L'ÉVENTUALITÉ DE TELS DOMMAGES.\n\nLIMITATION DE RESPONSABILITÉ\ + \ ET RECOURS. NONOBSTANT TOUT DOMMAGE QUE VOUS POURRIEZ SUBIR POUR QUELQUE MOTIF QUE CE\ + \ SOIT (NOTAMMENT TOUS LES DOMMAGES ÉNUMÉRÉS CI-DESSUS ET TOUS LES DOMMAGES DIRECTS OU GÉNÉRAUX),\ + \ L'ENTIÈRE RESPONSABILITÉ DE MICROSOFT ET DE L'UN QUELCONQUE DE SES FOURNISSEURS AU TITRE\ + \ DE TOUTE STIPULATION DE CE CLUF SUPPLÉMENTAIRE ET VOTRE SEUL RECOURS EN CE QUI CONCERNE\ + \ TOUS LES DOMMAGES PRÉCITÉS NE SAURAIENT EXCÉDER LE MONTANT QUE VOUS AVEZ EFFECTIVEMENT\ + \ PAYÉ POUR LES COMPOSANTS OS OU 5 DOLLARS US (US$ 5,00), SELON LE PLUS ÉLEVÉ DES DEUX\ + \ MONTANTS. LES PRÉSENTES LIMITATIONS ET EXCLUSIONS DEMEURERONT APPLICABLES DANS TOUTE LA\ + \ MESURE PERMISE PAR LE DROIT APPLICABLE QUAND BIEN MÊME UN QUELCONQUE REMÈDE À UN QUELCONQUE\ + \ MANQUEMENT NE PRODUIRAIT PAS D'EFFET.\n\nÀ moins que cela ne soit prohibé par le droit\ + \ local applicable, la présente Convention est régie par les lois de la province d’Ontario,\ + \ Canada. Vous consentez à la compétence des tribunaux fédéraux et provinciaux siégeant\ + \ à Toronto, dans la province d’Ontario.\n\nAu cas où vous auriez des questions concernant\ + \ cette licence ou que vous désiriez vous mettre en rapport avec Microsoft pour quelque\ + \ raison que ce soit, veuillez utiliser l’information contenue dans le Logiciel pour contacter\ + \ la filiale de Microsoft desservant votre pays, ou visitez Microsoft sur le World Wide\ + \ Web à http://www.microsoft.com.\n\nPIA EULA" json: ms-office-system-programs-eula.json - yml: ms-office-system-programs-eula.yml + yaml: ms-office-system-programs-eula.yml html: ms-office-system-programs-eula.html - text: ms-office-system-programs-eula.LICENSE + license: ms-office-system-programs-eula.LICENSE - license_key: ms-patent-promise + category: Patent License spdx_license_key: LicenseRef-scancode-ms-patent-promise other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: "Microsoft Patent Promise for .NET Libraries and Runtime Components \n\nMicrosoft Corporation\ + \ and its affiliates (\"Microsoft\") promise not to assert \nany .NET Patents against you\ + \ for making, using, selling, offering for sale, \nimporting, or distributing Covered Code,\ + \ as part of either a .NET Runtime or \nas part of any application designed to run on a\ + \ .NET Runtime. \n\nIf you file, maintain, or voluntarily participate in any claim in a\ + \ lawsuit \nalleging direct or contributory patent infringement by any Covered Code, or\ + \ \ninducement of patent infringement by any Covered Code, then your rights under \nthis\ + \ promise will automatically terminate. \n\nThis promise is not an assurance that (i) any\ + \ .NET Patents are valid or \nenforceable, or (ii) Covered Code does not infringe patents\ + \ or other \nintellectual property rights of any third party. No rights except those \n\ + expressly stated in this promise are granted, waived, or received by \nMicrosoft, whether\ + \ by implication, exhaustion, estoppel, or otherwise. \nThis is a personal promise directly\ + \ from Microsoft to you, and you agree as a \ncondition of benefiting from it that no Microsoft\ + \ rights are received from \nsuppliers, distributors, or otherwise from any other person\ + \ in connection with \nthis promise. \n\nDefinitions: \n\n\"Covered Code\" means those Microsoft\ + \ .NET libraries and runtime components as \nmade available by Microsoft at https://github.com/dotnet/coreclr,\ + \ \nhttps://github.com/dotnet/corefx and https://github.com/dotnet/corert.\n\n\".NET Patents\"\ + \ are those patent claims, both currently owned by Microsoft and \nacquired in the future,\ + \ that are necessarily infringed by Covered Code. .NET \nPatents do not include any patent\ + \ claims that are infringed by any Enabling \nTechnology, that are infringed only as a consequence\ + \ of modification of \nCovered Code, or that are infringed only by the combination of Covered\ + \ Code \nwith third party code. \n\n\".NET Runtime\" means any compliant implementation\ + \ in software of (a) all of \nthe required parts of the mandatory provisions of Standard\ + \ ECMA-335 – Common \nLanguage Infrastructure (CLI); and (b) if implemented, any additional\ + \ \nfunctionality in Microsoft's .NET Framework, as described in Microsoft's API \ndocumentation\ + \ on its MSDN website. For example, .NET Runtimes include \nMicrosoft's .NET Framework and\ + \ those portions of the Mono Project compliant \nwith (a) and (b). \n\n\"Enabling Technology\"\ + \ means underlying or enabling technology that may be \nused, combined, or distributed in\ + \ connection with Microsoft's .NET Framework \nor other .NET Runtimes, such as hardware,\ + \ operating systems, and applications \nthat run on .NET Framework or other .NET Runtimes." json: ms-patent-promise.json - yml: ms-patent-promise.yml + yaml: ms-patent-promise.yml html: ms-patent-promise.html - text: ms-patent-promise.LICENSE + license: ms-patent-promise.LICENSE - license_key: ms-patent-promise-mono + category: Patent License spdx_license_key: LicenseRef-scancode-ms-patent-promise-mono other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: | + Microsoft Patent Promise for Mono + + Microsoft Corporation and its affiliates (“Microsoft”) promise not to + assert any Applicable Patents against you for making, using, selling, + offering for sale, importing, or distributing Mono. + + If you file, maintain, or voluntarily participate in any claim in a + lawsuit alleging direct or contributory patent infringement by Mono, + or inducement of patent infringement by Mono, then your rights under + this promise will automatically terminate. + + This promise is not an assurance that (i) any Applicable Patents are + valid or enforceable or (ii) Mono does not infringe patents or other + intellectual property rights of any third party. No rights except + those expressly stated in this promise are granted, waived or received + by Microsoft, whether by implication, exhaustion, estoppel or + otherwise. This is a personal promise directly from Microsoft to you, + and you agree as a condition of benefitting from it that no Microsoft + rights are received from suppliers, distributors, or otherwise in + connection with this promise. + + Definitions: + + “Mono” means those portions of the software development technology, as + originally distributed by Xamarin, Inc. or the .NET Foundation under + the name “Mono,” that implement .NET Framework Functionality, provided + that such portions at a minimum implement all of the required parts of + the mandatory provisions of Standard ECMA-335 – Common Language + Infrastructure (CLI). + + “.NET Framework Functionality” means any functionality in Microsoft’s + .NET Framework as described in Microsoft’s API documentation on + Microsoft’s MSDN website, including the functionality in + Windowsbase.dll, but excluding all other functionality in the Windows + Presentation Foundation component of .NET Framework. + + “Applicable Patents” are those patent claims, currently owned by + Microsoft and acquired in the future, that are necessarily infringed + by Mono. For clarity, Applicable Patents do not include any patent + claims that are infringed (x) by any underlying or enabling technology + that may be used, combined, or distributed in connection with Mono + (such as hardware, operating systems, or applications that run on + Mono), (y) only as a consequence of modification of Mono, or (z) only + by the combination of Mono with third party code. json: ms-patent-promise-mono.json - yml: ms-patent-promise-mono.yml + yaml: ms-patent-promise-mono.yml html: ms-patent-promise-mono.html - text: ms-patent-promise-mono.LICENSE + license: ms-patent-promise-mono.LICENSE - license_key: ms-permissive-1.1 + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + Microsoft Permissive License (Ms-PL) v1.1 + + Microsoft Permissive License (Ms-PL) + + This license governs use of the accompanying software. If you use the software, + you accept this license. If you do not accept the license, do not use the + software. + + 1. Definitions + + The terms "reproduce," "reproduction," "derivative works," and "distribution" + have the same meaning here as under U.S. copyright law. + + A "contribution" is the original software, or any additions or changes to the + software. + + A "contributor" is any person that distributes its contribution under this + license. + + "Licensed patents" are a contributor's patent claims that read directly on its + contribution. + + 2. Grant of Rights + + (A) Copyright Grant- Subject to the terms of this license, including the license + conditions and limitations in section 3, each contributor grants you a non- + exclusive, worldwide, royalty-free copyright license to reproduce its + contribution, prepare derivative works of its contribution, and distribute its + contribution or any derivative works that you create. + + (B) Patent Grant- Subject to the terms of this license, including the license + conditions and limitations in section 3, each contributor grants you a non- + exclusive, worldwide, royalty-free license under its licensed patents to make, + have made, use, sell, offer for sale, import, and/or otherwise dispose of its + contribution in the software or derivative works of the contribution in the + software. + + 3. Conditions and Limitations + + (A) No Trademark License- This license does not grant you rights to use any + contributors' name, logo, or trademarks. + + (B) If you bring a patent claim against any contributor over patents that you + claim are infringed by the software, your patent license from such contributor + to the software ends automatically. + + (C) If you distribute any portion of the software, you must retain all + copyright, patent, trademark, and attribution notices that are present in the + software. + + (D) If you distribute any portion of the software in source code form, you may + do so only under this license by including a complete copy of this license with + your distribution. If you distribute any portion of the software in compiled or + object code form, you may only do so under a license that complies with this + license. + + (E) The software is licensed "as-is." You bear the risk of using it. The + contributors give no express warranties, guarantees or conditions. You may have + additional consumer rights under your local laws which this license cannot + change. To the extent permitted under your local laws, the contributors exclude + the implied warranties of merchantability, fitness for a particular purpose and + non-infringement. json: ms-permissive-1.1.json - yml: ms-permissive-1.1.yml + yaml: ms-permissive-1.1.yml html: ms-permissive-1.1.html - text: ms-permissive-1.1.LICENSE + license: ms-permissive-1.1.LICENSE - license_key: ms-pl + category: Permissive spdx_license_key: MS-PL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Microsoft Public License (Ms-PL) + + This license governs use of the accompanying software. If you use the software, + you accept this license. If you do not accept the license, do not use the + software. + + 1. Definitions + + The terms "reproduce," "reproduction," "derivative works," and "distribution" + have the same meaning here as under U.S. copyright law. + + A "contribution" is the original software, or any additions or changes to the + software. + + A "contributor" is any person that distributes its contribution under this + license. + + "Licensed patents" are a contributor's patent claims that read directly on its + contribution. + + 2. Grant of Rights + + (A) Copyright Grant- Subject to the terms of this license, including the license + conditions and limitations in section 3, each contributor grants you a non- + exclusive, worldwide, royalty-free copyright license to reproduce its + contribution, prepare derivative works of its contribution, and distribute its + contribution or any derivative works that you create. + + (B) Patent Grant- Subject to the terms of this license, including the license + conditions and limitations in section 3, each contributor grants you a non- + exclusive, worldwide, royalty-free license under its licensed patents to make, + have made, use, sell, offer for sale, import, and/or otherwise dispose of its + contribution in the software or derivative works of the contribution in the + software. + + 3. Conditions and Limitations + + (A) No Trademark License- This license does not grant you rights to use any + contributors' name, logo, or trademarks. + + (B) If you bring a patent claim against any contributor over patents that you + claim are infringed by the software, your patent license from such contributor + to the software ends automatically. + + (C) If you distribute any portion of the software, you must retain all + copyright, patent, trademark, and attribution notices that are present in the + software. + + (D) If you distribute any portion of the software in source code form, you may + do so only under this license by including a complete copy of this license with + your distribution. If you distribute any portion of the software in compiled or + object code form, you may only do so under a license that complies with this + license. + + (E) The software is licensed "as-is." You bear the risk of using it. The + contributors give no express warranties, guarantees, or conditions. You may have + additional consumer rights under your local laws which this license cannot + change. To the extent permitted under your local laws, the contributors exclude + the implied warranties of merchantability, fitness for a particular purpose and + non-infringement. json: ms-pl.json - yml: ms-pl.yml + yaml: ms-pl.yml html: ms-pl.html - text: ms-pl.LICENSE + license: ms-pl.LICENSE - license_key: ms-platform-sdk + category: Commercial spdx_license_key: LicenseRef-scancode-ms-platform-sdk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Microsoft Platform SDK License\nEND-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE\n\ + MICROSOFT PLATFORM SOFTWARE DEVELOPMENT KIT\n\nIMPORTANT—READ CAREFULLY: This End-User License\ + \ Agreement (\"EULA\") is a legal agreement between you (either an individual or a single\ + \ entity) and Microsoft Corporation for the Microsoft software that accompanies this EULA,\ + \ which includes computer software and may include associated media, printed materials,\ + \ \"online\" or electronic documentation, and Internet-based services (\"Software\"). An\ + \ amendment or addendum to this EULA may accompany the Software. YOU AGREE TO BE BOUND BY\ + \ THE TERMS OF THIS EULA BY INSTALLING, COPYING, OR OTHERWISE USING THE SOFTWARE. IF YOU\ + \ DO NOT AGREE, DO NOT INSTALL, COPY, OR USE THE SOFTWARE; YOU MAY RETURN IT TO YOUR PLACE\ + \ OF PURCHASE FOR A FULL REFUND, IF APPLICABLE.\n\n1.\tGRANT OF LICENSE. Microsoft grants\ + \ you the rights described in this EULA provided that you comply with all terms and conditions\ + \ of this EULA.\n\n1.1\tGeneral License Grant. Microsoft grants you a limited, nonexclusive\ + \ license to use the Software, and to make and use copies of the Software, for the purposes\ + \ of designing, developing and testing your software applications for use with any version\ + \ or edition of a Microsoft Windows operating system for personal computers or servers (\"\ + Microsoft Operating System Product\").\n\n1.2\tSharepoint Portal Server SDK. The Software\ + \ contains the SharePoint Portal Server Software Development Kit (\"SPSSDK\"). In addition\ + \ to the license granted in Section 1.1, Microsoft grants you a limited, nonexclusive license\ + \ to modify the sample source code located in the SPSSDK solely to design, develop, and\ + \ test your application internally within your organization. Your entire license under this\ + \ EULA with respect to the SPSSDK is conditioned on your not using the SPSSDK to create\ + \ software that is incompatible with file formats indexed by Microsoft SharePoint Portal\ + \ Server 2001.\n\n2.\tADDITIONAL LICENSE RIGHTS—REDISTRIBUTABLE COMPONENTS\n\n2.1\tSource\ + \ Code. \"Source Code\" means source code that is located in any directory or sub-directory\ + \ named \"samples\" in the Software or that is otherwise identified as sample code in the\ + \ Software, other than source code included in the SPSSDK, or is identified as Microsoft\ + \ Foundation Class Libraries (\"MFC\"), Template Libraries (\"ATL\"), and C runtimes (CRTs).\ + \ Microsoft grants you a limited, nonexclusive license (a) to use and modify any Source\ + \ Code to design, develop, and test your software applications; and (b) to make and distribute\ + \ copies of the Source Code and your modifications, subject to your compliance with Section\ + \ 3.\n\n2.2\tRedistributable Code. All portions of the Software that are listed in the text\ + \ file \\License\\Redist.txt collectively constitute \"Redistributable Code.\" Microsoft\ + \ grants you a limited, nonexclusive license to reproduce and distribute Redistributable\ + \ Code in object code form only, subject to your compliance with Section 3.\n\n3.\tDISTRIBUTION\ + \ REQUIREMENTS AND LICENSE LIMITATIONS\n\n3.1\tYour licenses under Section 2 to distribute\ + \ Source Code, any modifications you make to the Source Code under Section 2.1, and Redistributable\ + \ Code (collectively, \"Redistributables\") are conditioned on the following: (a) you will\ + \ distribute Redistributables only in object code form and in conjunction with and as a\ + \ part of a software application developed by you that adds significant and primary functionality\ + \ to the Redistributables (\"Application\"); \n(b) the Redistributables will operate only\ + \ in conjunction with a Microsoft Operating System Product; \n(c) your Application will\ + \ invoke the Software only via interfaces described in the documentation accompanying the\ + \ Software; \n(d) you will distribute your Application containing the Redistributables only\ + \ pursuant to an end-user license agreement (which may be break-the-seal, click- wrap or\ + \ signed) with terms no less protective than those contained in this EULA; \n(e) you will\ + \ not use Microsoft’s name, logo, or trademarks to market your Application; \n(f) you will\ + \ include a valid copyright notice on your Application sufficient to protect Microsoft’s\ + \ copyright in the Software; \n(g) you will not remove or obscure any copyright, trademark\ + \ or patent notices that appear on or in the Software as delivered to you; \n(h) you will\ + \ indemnify, hold harmless, and defend Microsoft from and against any claims or lawsuits,\ + \ including attorneys’ and experts’ fees, that arise or result from the use or distribution\ + \ of your Application; and \n(i) you will otherwise comply with the terms of this EULA.\ + \ You may not permit further distribution of Redistributables by your end users except\ + \ that you may permit further redistribution of Redistributables by your distributors to\ + \ end users if your distributors only distribute the Redistributables in conjunction with\ + \ and as part of your Application or Applications, you comply with all other terms of this\ + \ EULA, and your distributors comply with all restrictions of this EULA that are applicable\ + \ to you.\n\n3.2\tRenaming MFC, ATL or CRTs. You must rename all files containing MFC, ATL\ + \ or CRTs prior to distributing them or any modifications to them.\n\n3.3\tLinking .lib\ + \ Files. For any Redistributable Code having a filename extension of .lib, you may distribute\ + \ only the results of running such Redistributable Code through a linker with your application.\n\ + \n3.4\tNotice for Windows Media Technologies. In each Application in which you include any\ + \ Redistributables from the Windows Media Player SDK, Windows Media Services SDK, Windows\ + \ Media Encoder SDK, or Windows Media Software Development Kit (including but not limited\ + \ to, the Windows Media Format SDK) portions of the Software, you must include in your Application’s\ + \ Help-About box (or if there is no such box, then in another location that end users will\ + \ easily discover), a copyright notice stating the following: \"Portions utilize Microsoft\ + \ Windows Media Technologies. Copyright (c) 1999-2002 Microsoft Corporation. All Rights\ + \ Reserved.\"\n\n3.5\tNo Alteration to Setup Programs. If any Redistributables in the Software\ + \ as delivered to you are contained in a separate setup program, then you may only\ndistribute\ + \ those Redistributables as part of that setup program, without alteration to that setup\ + \ program or removal of any of its components.\n\n3.6\tPrerelease Code. The Software may\ + \ contain prerelease code that might not operate correctly, is not at the level of performance\ + \ and compatibility of the final, generally available product offering, and might be substantially\ + \ modified prior to shipment of that offering. Microsoft is not obligated to make this or\ + \ any later version of the Software commercially available. Your license under Section 2\ + \ to distribute any Redistributables identified in the documentation as prerelease, alpha,\ + \ beta or release candidate code or under a similar designation indicating code that is\ + \ not intended for commercial distribution (collectively, \"Prerelease Code\") is conditioned\ + \ upon your marking the version of your Application containing the Prerelease Code as \"\ + BETA,\" \"PRE-RELEASE\" or other reasonable designation of similar import. Your license\ + \ under this Section 3.3 terminates upon Microsoft’s publicly announced commencement of\ + \ the commercial availability of the Microsoft Operating System Product for which your Application\ + \ is developed.\n\n3.7\tIdentified Software. If you use the Redistributables, then in addition\ + \ to your compliance with the applicable distribution requirements described for the Redistributables,\ + \ the following also applies. Your license rights to Redistributables are conditioned on\ + \ your (a) not incorporating Identified Software into or combining Identified Software with\ + \ the Redistributables; (b) not distributing Identified Software in conjunction with the\ + \ Redistributables; and (c) not using Identified Software in the development of a derivative\ + \ work of Source Code. \"Identified Software\" means software that is licensed pursuant\ + \ to terms that directly or indirectly create, or purport to create, obligations for Microsoft\ + \ with respect to the Redistributables or grant, or purport to grant, to any third party\ + \ any rights or immunities under Microsoft’s intellectual property or proprietary rights\ + \ in the Redistributables. Identified Software includes, without limitation, any software\ + \ that requires as a condition of its use, modification and/or distribution that any other\ + \ software incorporated into, derived from or distributed with such software must also be\ + \ disclosed or distributed in source code form, licensed for the purpose of making derivative\ + \ works, or redistributable at no charge.\n\n4.\tCOMPONENT EULAS. As a kit of development\ + \ tools and other Microsoft software programs (each such tool or software program, a \"\ + Component\"), the Software may contain one or more Components for which a separate end-user\ + \ license agreement (a \"Component EULA\") may appear upon installation of the applicable\ + \ Component. In the event of inconsistencies between this EULA and any Component EULA, the\ + \ terms of the Component EULA will control as to the applicable Component.\n\n5.\tRESERVATION\ + \ OF RIGHTS AND OWNERSHIP. The Software is licensed, not sold. Microsoft reserves all rights\ + \ not expressly granted to you in this EULA. The Software is protected by copyright and\ + \ other intellectual property laws and treaties. Microsoft or its suppliers own the title,\ + \ copyright, and other intellectual property rights in the Software.\n\n6.\tLIMITATIONS\ + \ ON REVERSE ENGINEERING, DECOMPILATION, AND DISASSEMBLY. You may not reverse engineer,\ + \ decompile, or disassemble the Software, except and only to the extent that such activity\ + \ is expressly permitted by applicable law notwithstanding this limitation.\n\n7.\tNO RENTAL\ + \ OR COMMERCIAL HOSTING. You may not rent, lease, lend or provide commercial hosting services\ + \ with the Software. \n\n8.\tCONSENT TO USE OF DATA.You agree that Microsoft and its affiliates\ + \ may collect and use technical information gathered as part of the product support services\ + \ provided to you, if any, related to the Software. Microsoft may use this information solely\ + \ to improve our products or to provide customized services or technologies to you and will\ + \ not disclose this information in a form that personally identifies you.\n\n9.\tLINKS TO\ + \ THIRD-PARTY SITES. You may link to third-party sites through the use of the Software.\ + \ The third-party sites are not under the control of Microsoft, and Microsoft is not responsible\ + \ for the contents of any third-party sites, any links contained in third-party sites, or\ + \ any changes or updates to third-party sites. Microsoft is not responsible for web-casting\ + \ or any other form of transmission received from any third- party sites. Microsoft is providing\ + \ these links to third-party sites to you only as a convenience, and the inclusion of any\ + \ link does not imply an endorsement by Microsoft of the third-party site. \n\n10.\tADDITIONAL\ + \ SOFTWARE OR SERVICES. This EULA applies to updates, supplements, add-on components or\ + \ Internet-based services components of the Software that Microsoft may provide to you or\ + \ make available to you after the date you obtain your initial copy of the Software, unless\ + \ Microsoft provides other terms along with the update, supplement, add-on component, or\ + \ Internet-based services component. Microsoft reserves the right to discontinue any Internet-based\ + \ services provided to you or made available to you through the use of the Software.\n\n\ + 11.\tEXPORT RESTRICTIONS. You acknowledge that the Software is subject to U.S. export jurisdiction.\ + \ You agree to comply with all applicable international and national laws that apply to\ + \ the Software, including the U.S. Export Administration Regulations, as well as end-user,\ + \ end-use, and destination restrictions issued by U.S. and other governments. For additional\ + \ information see .\n\n12.\tSOFTWARE TRANSFER. The\ + \ initial user of the Software may make a one-time permanent transfer of this EULA and Software\ + \ to another end user, provided the initial user retains no copies of the Software. This\ + \ transfer must include all of the Software (including all component parts, the media and\ + \ printed materials, any upgrades, this EULA, and, if applicable, the Certificate of Authenticity).\ + \ The transfer may not be an indirect transfer, such as a consignment. Prior to the transfer,\ + \ the end user receiving the Software must agree to all the EULA terms.\n\n13.\tTERMINATION.\ + \ Without prejudice to any other rights, Microsoft may terminate this EULA if you fail to\ + \ comply with the terms and conditions of this EULA.\nIn such event, you must destroy all\ + \ copies of the Software and all of its component parts.\n\n14.\tDISCLAIMER OF WARRANTIES.\ + \ TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, MICROSOFT AND ITS SUPPLIERS PROVIDE\ + \ THE SOFTWARE AND SUPPORT SERVICES (IF ANY) AS IS AND WITH ALL FAULTS, AND HEREBY DISCLAIM\ + \ ALL OTHER WARRANTIES AND CONDITIONS, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING,\ + \ BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES, DUTIES OR CONDITIONS OF MERCHANTABILITY,\ + \ OF FITNESS FOR A PARTICULAR PURPOSE, OF RELIABILITY OR AVAILABILITY, OF ACCURACY OR COMPLETENESS\ + \ OF RESPONSES, OF RESULTS, OF WORKMANLIKE EFFORT, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE,\ + \ ALL WITH REGARD TO THE SOFTWARE AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT OR\ + \ OTHER SERVICES, INFORMATION, SOFTWARE, AND RELATED CONTENT THROUGH THE SOFTWARE OR OTHERWISE\ + \ ARISING OUT OF THE USE OF THE SOFTWARE. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE,\ + \ QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION, OR NON-INFRINGEMENT\ + \ WITH REGARD TO THE SOFTWARE.\n\n15.\tEXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN\ + \ OTHER DAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL MICROSOFT\ + \ OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, PUNITIVE, INDIRECT, OR CONSEQUENTIAL\ + \ DAMAGES WHATSOEVER (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS OR CONFIDENTIAL\ + \ OR OTHER INFORMATION, FOR BUSINESS INTERRUPTION, FOR PERSONAL INJURY, FOR LOSS OF PRIVACY,\ + \ FOR FAILURE TO MEET ANY DUTY INCLUDING OF GOOD FAITH OR OF REASONABLE CARE, FOR NEGLIGENCE,\ + \ AND FOR ANY OTHER PECUNIARY OR OTHER LOSS WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED\ + \ TO THE USE OF OR INABILITY TO USE THE SOFTWARE, THE PROVISION OF OR FAILURE TO PROVIDE\ + \ SUPPORT OR OTHER SERVICES, INFORMATON, SOFTWARE, AND RELATED CONTENT THROUGH THE SOFTWARE\ + \ OR OTHERWISE ARISING OUT OF THE USE OF THE SOFTWARE, OR OTHERWISE UNDER OR IN CONNECTION\ + \ WITH ANY PROVISION OF THIS EULA, EVEN IN THE EVENT OF THE FAULT, TORT (INCLUDING NEGLIGENCE),\ + \ MISREPRESENTATION, STRICT LIABILITY, BREACH OF CONTRACT OR BREACH OF WARRANTY OF MICROSOFT\ + \ OR ANY SUPPLIER, AND EVEN IF MICROSOFT OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGES.\n\n16.\tLIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING ANY DAMAGES\ + \ THAT YOU MIGHT INCUR FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT LIMITATION, ALL DAMAGES\ + \ REFERENCED HEREIN AND ALL DIRECT OR GENERAL DAMAGES IN CONTRACT OR ANYTHING ELSE), THE\ + \ ENTIRE LIABILITY OF MICROSOFT AND ANY OF ITS SUPPLIERS UNDER ANY PROVISION OF THIS EULA\ + \ AND YOUR EXCLUSIVE REMEDY HEREUNDER SHALL BE LIMITED TO THE GREATER OF THE ACTUAL DAMAGES\ + \ YOU INCUR IN REASONABLE RELIANCE ON THE SOFTWARE UP TO THE AMOUNT ACTUALLY PAID BY YOU\ + \ FOR THE SOFTWARE OR US$5.00. THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS (INCLUDING\ + \ SECTIONS 14, 15 AND 16) SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW,\ + \ EVEN IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE.\n\n17.\tU.S. GOVERNMENT LICENSE RIGHTS.\ + \ All Software provided to the U.S. Government pursuant to solicitations issued on or after\ + \ December 1, 1995, is provided with the commercial license rights and restrictions described\ + \ elsewhere herein. All Software provided to the U.S. Government pursuant to solicitations\ + \ issued prior to December 1, 1995, is provided with \"Restricted Rights\" as provided for\ + \ in FAR, 48 CFR 52.227-14 (JUNE 1987) or DFAR, 48 CFR 252.227-7013 (OCT 1988), as applicable.\n\ + \n18.\tAPPLICABLE LAW. If you acquired this Software in the United States, this EULA is\ + \ governed by the laws of the State of Washington. If you acquired this Software in Canada,\ + \ unless expressly prohibited by local law, this EULA is governed by the laws in force in\ + \ the Province of Ontario, Canada; and, in respect of any dispute which may arise hereunder,\ + \ you consent to the jurisdiction of the federal and provincial courts sitting in Toronto,\ + \ Ontario. If you acquired this Software in the European Union, Iceland, Norway, or Switzerland,\ + \ then local law applies. If you acquired this Software in any other country, then local\ + \ law may apply.\n\n19.\tENTIRE AGREEMENT; SEVERABILITY. This EULA (including any addendum\ + \ or amendment to this EULA which is included with the Software) is the entire agreement\ + \ between you and Microsoft relating to the Software and the support services (if any) and\ + \ it supersedes all prior or contemporaneous oral or written communications, proposals and\ + \ representations with respect to the Software or any other subject matter covered by this\ + \ EULA. To the extent the terms of any Microsoft policies or programs for support services\ + \ conflict with the terms of this EULA, the terms of this EULA shall control. If any provision\ + \ of this EULA is held to be void, invalid, unenforceable or illegal, the other provisions\ + \ shall continue in full force and effect." json: ms-platform-sdk.json - yml: ms-platform-sdk.yml + yaml: ms-platform-sdk.yml html: ms-platform-sdk.html - text: ms-platform-sdk.LICENSE + license: ms-platform-sdk.LICENSE - license_key: ms-programsynthesis-7.22.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-programsynthesis-7.22.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT PROGRAM SYNTHESIS USING EXAMPLES\n\nThese\ + \ license terms are an agreement between you and Microsoft Corporation (or one of its affiliates).\ + \ They apply to the software named above and any Microsoft services or software updates\ + \ (except to the extent such services or updates are accompanied by new or additional terms,\ + \ in which case those different terms apply prospectively and do not alter your or Microsoft’s\ + \ rights relating to pre-updated software or services). IF YOU COMPLY WITH THESE LICENSE\ + \ TERMS, YOU HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS.\n\n\ + 1. INSTALLATION AND USE RIGHTS.\na) General. You may install and use any number of copies\ + \ of the software on your devices to design, develop and test your non-commercial programs.\ + \ Whether a program is non-commercial is determined by the program’s purpose and function,\ + \ not by whether a fee is charged for the program. Examples of “non-commercial programs”\ + \ are programs written for the purposes of teaching, academic research, public demonstrations\ + \ and personal experimentation. \nb) Third Party Software. The software may include third\ + \ party applications that Microsoft, not the third party, licenses to you under this agreement.\ + \ Any included notices for third party applications are for your information only.\n\n2.\ + \ DATA COLLECTION. The software may collect information about you and your use of the software\ + \ and send that to Microsoft. Microsoft may use this information to provide services and\ + \ improve Microsoft’s products and services. Your opt-out rights, if any, are described\ + \ in the product documentation. Some features in the software may enable collection of data\ + \ from users of your applications that access or use the software. If you use these features\ + \ to enable data collection in your applications, you must comply with applicable law, including\ + \ getting any required user consent, and maintain a prominent privacy policy that accurately\ + \ informs users about how you use, collect, and share their data. You can learn more about\ + \ Microsoft’s data collection and use in the product documentation and the Microsoft Privacy\ + \ Statement at https://go.microsoft.com/fwlink/?LinkId=521839. You agree to comply with\ + \ all applicable provisions of the Microsoft Privacy Statement.\n\n3. SCOPE OF LICENSE.\ + \ The software is licensed, not sold. Microsoft reserves all other rights. Unless applicable\ + \ law gives you more rights despite this limitation, you will not (and have no right to):\n\ + a) work around any technical limitations in the software that only allow you to use it in\ + \ certain ways;\nb) reverse engineer, decompile, or disassemble the software, or attempt\ + \ to do so, except and only to the extent permitted by licensing terms governing the use\ + \ of open-source components that may be included with the software;\nc) remove, minimize,\ + \ block, or modify any notices of Microsoft or its suppliers in the software;\nd) use the\ + \ software in any way that is against the law or to create or propagate malware; or\ne)\ + \ share, publish, distribute, or lend the software, provide the software as a stand-alone\ + \ hosted solution for others to use, or transfer the software or this agreement to any third\ + \ party.\n\n4. EXPORT RESTRICTIONS. You must comply with all domestic and international\ + \ export laws and regulations that apply to the software, which include restrictions on\ + \ destinations, end users, and end use. For further information on export restrictions,\ + \ visit http://aka.ms/exporting.\n\n5. SUPPORT SERVICES. Microsoft is not obligated under\ + \ this agreement to provide any support services for the software. Any support provided\ + \ is “as is”, “with all faults”, and without warranty of any kind.\n\n6. UPDATES. The software\ + \ may periodically check for updates, and download and install them for you. You may obtain\ + \ updates only from Microsoft or authorized sources. Microsoft may need to update your system\ + \ to provide you with updates. You agree to receive these automatic updates without any\ + \ additional notice. Updates may not include or support all existing software features,\ + \ services, or peripheral devices.\n\n7. PUBLICATION.\na) You may publish (or present papers\ + \ or articles) on your results from using the software provided that no material or substantial\ + \ portion of the software is included in any such publication or presentation. \nb) You\ + \ will provide Microsoft with a copy of any proposed publication (this includes, without\ + \ limitation, manuscripts, abstracts, presentations for professional meetings, and other\ + \ publications) concerning the software, at least thirty (30) days prior to submission for\ + \ publication. Microsoft will have 30 days (the \"Pre-publication Review Period\") to review\ + \ the proposed publication. At Microsoft’s request, the proposed publication may be delayed\ + \ for up to 3 months beyond the end of the Pre-publication Review Period. If Microsoft\ + \ seeks to delay publication, Microsoft will make such request in writing together with\ + \ identification of information or materials of concern and reasons why delay is warranted.\ + \ You will not unreasonably deny, condition, or delay responding to this request. \n\n\ + 8. LICENSE TO MICROSOFT. In the event you provide Microsoft with feedback about the software,\ + \ or modification or derivatives of the software, you hereby grant Microsoft, without any\ + \ restrictions or limitations, a non-exclusive, perpetual, irrevocable, royalty-free, assignable\ + \ and sub-licensable license, to reproduce, publicly perform or display, install, use, modify,\ + \ post, distribute, make and have made, sell and transfer such feedback, modifications and\ + \ derivatives in any way and for any purpose, even if such materials are marked or otherwise\ + \ designated by you as confidential. These rights survive this agreement. \n\n9. ENTIRE\ + \ AGREEMENT. This agreement, and any other terms Microsoft may provide for supplements,\ + \ updates, or third-party applications, is the entire agreement for the software.\n\n10.\ + \ APPLICABLE LAW AND PLACE TO RESOLVE DISPUTES. If you acquired the software in the United\ + \ States or Canada, the laws of the state or province where you live (or, if a business,\ + \ where your principal place of business is located) govern the interpretation of this agreement,\ + \ claims for its breach, and all other claims (including consumer protection, unfair competition,\ + \ and tort claims), regardless of conflict of laws principles. If you acquired the software\ + \ in any other country, its laws apply. If U.S. federal jurisdiction exists, you and Microsoft\ + \ consent to exclusive jurisdiction and venue in the federal court in King County, Washington\ + \ for all disputes heard in court. If not, you and Microsoft consent to exclusive jurisdiction\ + \ and venue in the Superior Court of King County, Washington for all disputes heard in court.\n\ + \n11. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights.\ + \ You may have other rights, including consumer rights, under the laws of your state or\ + \ country. Separate and apart from your relationship with Microsoft, you may also have rights\ + \ with respect to the party from which you acquired the software. This agreement does not\ + \ change those other rights if the laws of your state or country do not permit it to do\ + \ so. For example, if you acquired the software in one of the below regions, or mandatory\ + \ country law applies, then the following provisions apply to you:\na) Australia. You have\ + \ statutory guarantees under the Australian Consumer Law and nothing in this agreement is\ + \ intended to affect those rights.\nb) Canada. If you acquired this software in Canada,\ + \ you may stop receiving updates by turning off the automatic update feature, disconnecting\ + \ your device from the Internet (if and when you re-connect to the Internet, however, the\ + \ software will resume checking for and installing updates), or uninstalling the software.\ + \ The product documentation, if any, may also specify how to turn off updates for your specific\ + \ device or software.\nc) Germany and Austria.\ni.\tWarranty. The properly licensed software\ + \ will perform substantially as described in any Microsoft materials that accompany the\ + \ software. However, Microsoft gives no contractual guarantee in relation to the licensed\ + \ software.\nii.\tLimitation of Liability. In case of intentional conduct, gross negligence,\ + \ claims based on the Product Liability Act, as well as, in case of death or personal or\ + \ physical injury, Microsoft is liable according to the statutory law.\nSubject to the foregoing\ + \ clause ii., Microsoft will only be liable for slight negligence if Microsoft is in breach\ + \ of such material contractual obligations, the fulfillment of which facilitate the due\ + \ performance of this agreement, the breach of which would endanger the purpose of this\ + \ agreement and the compliance with which a party may constantly trust in (so-called \"\ + cardinal obligations\"). In other cases of slight negligence, Microsoft will not be liable\ + \ for slight negligence.\n\n12. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS IS.”\ + \ YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES, OR CONDITIONS.\ + \ TO THE EXTENT PERMITTED UNDER APPLICABLE LAWS, MICROSOFT EXCLUDES ALL IMPLIED WARRANTIES,\ + \ INCLUDING MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.\n\n\ + 13. LIMITATION ON AND EXCLUSION OF DAMAGES. IF YOU HAVE ANY BASIS FOR RECOVERING DAMAGES\ + \ DESPITE THE PRECEDING DISCLAIMER OF WARRANTY, YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS\ + \ ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING\ + \ CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT, OR INCIDENTAL DAMAGES.\n\nThis limitation\ + \ applies to (a) anything related to the software, services, content (including code) on\ + \ third party Internet sites, or third party applications; and (b) claims for breach of\ + \ contract, warranty, guarantee, or condition; strict liability, negligence, or other tort;\ + \ or any other claim; in each case to the extent permitted by applicable law.\n\nIt also\ + \ applies even if Microsoft knew or should have known about the possibility of the damages.\ + \ The above limitation or exclusion may not apply to you because your state, province, or\ + \ country may not allow the exclusion or limitation of incidental, consequential, or other\ + \ damages.\n\nPlease note: As this software is distributed in Canada, some of the clauses\ + \ in this agreement are provided below in French.\n\nRemarque: Ce logiciel étant distribué\ + \ au Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français.\n\ + EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute\ + \ utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune\ + \ autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit\ + \ local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles\ + \ sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation\ + \ à un usage particulier et d’absence de contrefaçon sont exclues.\n\nLIMITATION DES DOMMAGES-INTÉRÊTS\ + \ ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et\ + \ de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur\ + \ de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages,\ + \ y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices.\n\n\ + Cette limitation concerne:\n•\ttout ce qui est relié au logiciel, aux services ou au contenu\ + \ (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers;\ + \ et\n•\tles réclamations au titre de violation de contrat ou de garantie, ou au titre de\ + \ responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par\ + \ la loi en vigueur.\n\nElle s’applique également, même si Microsoft connaissait ou devrait\ + \ connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou\ + \ la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque\ + \ nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera\ + \ pas à votre égard.\n\nEFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques.\ + \ Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat\ + \ ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le\ + \ permettent pas." json: ms-programsynthesis-7.22.0.json - yml: ms-programsynthesis-7.22.0.yml + yaml: ms-programsynthesis-7.22.0.yml html: ms-programsynthesis-7.22.0.html - text: ms-programsynthesis-7.22.0.LICENSE + license: ms-programsynthesis-7.22.0.LICENSE - license_key: ms-python-vscode-pylance-2021 + category: Commercial spdx_license_key: LicenseRef-scancode-ms-python-vscode-pylance-2021 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT PYLANCE EXTENSION FOR VISUAL STUDIO CODE\n\ + \nThese license terms are an agreement between you and Microsoft Corporation (or one of\ + \ its affiliates). They apply to the software named above and any Microsoft services or\ + \ software updates (except to the extent such services or updates are accompanied by new\ + \ or additional terms, in which case those different terms apply prospectively and do not\ + \ alter your or Microsoft’s rights relating to pre-updated software or services). IF YOU\ + \ COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU\ + \ ACCEPT THESE TERMS.\n\nINSTALLATION AND USE RIGHTS. \na) General. You may install and\ + \ use any number of copies of the software only with Microsoft Visual Studio, Visual Studio\ + \ for Mac, Visual Studio Code, Azure DevOps, Team Foundation Server, and successor Microsoft\ + \ products and services (collectively, the “Visual Studio Products and Services”) to develop\ + \ and test your applications. \nb) Third Party Components. The software may include third\ + \ party components with separate legal notices or governed by other agreements, as may be\ + \ described in the ThirdPartyNotices file(s) accompanying the software.\n\nSCOPE OF LICENSE.\ + \ The software is licensed, not sold. This agreement only gives you some rights to use the\ + \ software. Microsoft reserves all other rights. For clarification Microsoft, or its licensors,\ + \ retains ownership of all aspects of the software. Unless applicable law gives you more\ + \ rights despite this limitation, you may use the software only as expressly permitted in\ + \ this agreement. In doing so, you must comply with any technical limitations in the software\ + \ that only allow you to use it in certain ways. For example, if Microsoft technically limits\ + \ or disables extensibility for the software, you may not extend the software by, among\ + \ other things, loading or injecting into the software any non-Microsoft add-ins, macros,\ + \ or packages; modifying the software registry settings; or adding features or functionality\ + \ equivalent to that found in Microsoft products and services. \n\nYou may not: \na) work\ + \ around any technical limitations in the software that only allow you to use it in certain\ + \ ways; \nb) reverse engineer, decompile or disassemble the software, or otherwise attempt\ + \ to derive the source code for the software, except and to the extent required by third\ + \ party licensing terms governing use of certain open source components that may be included\ + \ in the software; \nc) remove, minimize, block, or modify any notices of Microsoft or its\ + \ suppliers in the software; \nd) use the software in any way that is against the law or\ + \ to create or propagate malware; or \ne) share, publish, distribute, or lease the software\ + \ (except for any distributable code, subject to the terms above), provide the software\ + \ as a stand-alone offering for others to use, or transfer the software or this agreement\ + \ to any third party.\n\nDATA. \na) Data Collection. The software may collect information\ + \ about you and your use of the software, and send that to Microsoft. Microsoft may use\ + \ this information to provide services and improve our products and services. You may opt-out\ + \ of many of these scenarios, but not all, as described in the product documentation.  There\ + \ are also some features in the software that may enable you to collect data from users\ + \ of your applications. If you use these features to enable data collection in your applications,\ + \ you must comply with applicable law, including providing appropriate notices to users\ + \ of your applications. You can learn more about data collection and use in the help documentation\ + \ and the privacy statement at https://aka.ms/privacy. Your use of the software operates\ + \ as your consent to these practices. \nb) Processing of Personal Data. To the extent Microsoft\ + \ is a processor or subprocessor of personal data in connection with the software, Microsoft\ + \ makes the commitments in the European Union General Data Protection Regulation Terms of\ + \ the Online Services Terms to all customers effective May 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr.\n\ + \nEXPORT RESTRICTIONS. You must comply with all domestic and international export laws and\ + \ regulations that apply to the software, which include restrictions on destinations, end\ + \ users, and end use. For further information on export restrictions, visit https://aka.ms/exporting.\n\ + \nSUPPORT SERVICES. Microsoft is not obligated under this agreement to provide any support\ + \ services for the software. Any support provided is “as is”, “with all faults”, and without\ + \ warranty of any kind.\n\nENTIRE AGREEMENT. This agreement, and any other terms Microsoft\ + \ may provide for supplements, updates, or third-party applications, is the entire agreement\ + \ for the software.\n\nAPPLICABLE LAW AND PLACE TO RESOLVE DISPUTES. If you acquired the\ + \ software in the United States or Canada, the laws of the state or province where you live\ + \ (or, if a business, where your principal place of business is located) govern the interpretation\ + \ of this agreement, claims for its breach, and all other claims (including consumer protection,\ + \ unfair competition, and tort claims), regardless of conflict of laws principles. If you\ + \ acquired the software in any other country, its laws apply. If U.S. federal jurisdiction\ + \ exists, you and Microsoft consent to exclusive jurisdiction and venue in the federal court\ + \ in King County, Washington for all disputes heard in court. If not, you and Microsoft\ + \ consent to exclusive jurisdiction and venue in the Superior Court of King County, Washington\ + \ for all disputes heard in court.\n\nCONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement\ + \ describes certain legal rights. You may have other rights, including consumer rights,\ + \ under the laws of your state or country. Separate and apart from your relationship with\ + \ Microsoft, you may also have rights with respect to the party from which you acquired\ + \ the software. This agreement does not change those other rights if the laws of your state\ + \ or country do not permit it to do so. For example, if you acquired the software in one\ + \ of the below regions, or mandatory country law applies, then the following provisions\ + \ apply to you: \na) Australia. You have statutory guarantees under the Australian Consumer\ + \ Law and nothing in this agreement is intended to affect those rights. \nb) Canada. If\ + \ you acquired this software in Canada, you may stop receiving updates by turning off the\ + \ automatic update feature, disconnecting your device from the Internet (if and when you\ + \ re-connect to the Internet, however, the software will resume checking for and installing\ + \ updates), or uninstalling the software. The product documentation, if any, may also specify\ + \ how to turn off updates for your specific device or software. \nc) Germany and Austria.\ + \ i. Warranty. The properly licensed software will perform substantially as described in\ + \ any Microsoft materials that accompany the software. However, Microsoft gives no contractual\ + \ guarantee in relation to the licensed software. ii. Limitation of Liability. In case of\ + \ intentional conduct, gross negligence, claims based on the Product Liability Act, as well\ + \ as, in case of death or personal or physical injury, Microsoft is liable according to\ + \ the statutory law. Subject to the foregoing clause ii., Microsoft will only be liable\ + \ for slight negligence if Microsoft is in breach of such material contractual obligations,\ + \ the fulfillment of which facilitate the due performance of this agreement, the breach\ + \ of which would endanger the purpose of this agreement and the compliance with which a\ + \ party may constantly trust in (so-called \"cardinal obligations\"). In other cases of\ + \ slight negligence, Microsoft will not be liable for slight negligence.\n\nDISCLAIMER OF\ + \ WARRANTY. THE SOFTWARE IS LICENSED “AS IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES\ + \ NO EXPRESS WARRANTIES, GUARANTEES, OR CONDITIONS. TO THE EXTENT PERMITTED UNDER APPLICABLE\ + \ LAWS, MICROSOFT EXCLUDES ALL IMPLIED WARRANTIES, INCLUDING MERCHANTABILITY, FITNESS FOR\ + \ A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.\n\nLIMITATION ON AND EXCLUSION OF DAMAGES.\ + \ IF YOU HAVE ANY BASIS FOR RECOVERING DAMAGES DESPITE THE PRECEDING DISCLAIMER OF WARRANTY,\ + \ YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00.\ + \ YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL,\ + \ INDIRECT, OR INCIDENTAL DAMAGES. This limitation applies to (a) anything related to the\ + \ software, services, content (including code) on third party Internet sites, or third party\ + \ applications; and (b) claims for breach of contract, warranty, guarantee, or condition;\ + \ strict liability, negligence, or other tort; or any other claim; in each case to the extent\ + \ permitted by applicable law. It also applies even if Microsoft knew or should have known\ + \ about the possibility of the damages. The above limitation or exclusion may not apply\ + \ to you because your state, province, or country may not allow the exclusion or limitation\ + \ of incidental, consequential, or other damages.\n\nPlease note: As this software is distributed\ + \ in Canada, some of the clauses in this agreement are provided below in French. \nRemarque:\ + \ Ce logiciel étant distribué au Canada, certaines des clauses dans ce contrat sont fournies\ + \ ci-dessous en français. EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est\ + \ offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril.\ + \ Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels\ + \ en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier.\ + \ La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande,\ + \ d’adéquation à un usage particulier et d’absence de contrefaçon sont exclues. LIMITATION\ + \ DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir\ + \ de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement\ + \ à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres\ + \ dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices.\ + \ Cette limitation concerne: • tout ce qui est relié au logiciel, aux services ou au contenu\ + \ (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers;\ + \ et • les réclamations au titre de violation de contrat ou de garantie, ou au titre de\ + \ responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par\ + \ la loi en vigueur. Elle s’applique également, même si Microsoft connaissait ou devrait\ + \ connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou\ + \ la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque\ + \ nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera\ + \ pas à votre égard. EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques.\ + \ Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat\ + \ ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le\ + \ permettent pas." json: ms-python-vscode-pylance-2021.json - yml: ms-python-vscode-pylance-2021.yml + yaml: ms-python-vscode-pylance-2021.yml html: ms-python-vscode-pylance-2021.html - text: ms-python-vscode-pylance-2021.LICENSE + license: ms-python-vscode-pylance-2021.LICENSE - license_key: ms-reactive-extensions-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-reactive-extensions-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Reactive Extensions Eula\nTo download the file you must agree to the following license:\n\ + \nMICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT REACTIVE EXTENSIONS FOR JAVASCRIPT AND .NET\ + \ LIBRARIES\n\nThese license terms are an agreement between Microsoft Corporation (or based\ + \ on where you live, one of its affiliates) and you. Please read them. They apply to the\ + \ software named above, which includes the media on which you received it, if any. The terms\ + \ also apply to any Microsoft\n\nupdates,\nsupplements,\nInternet-based services, and\n\ + support services\nfor this software, unless other terms accompany those items. If so, those\ + \ terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM,\ + \ DO NOT USE THE SOFTWARE.\n\nIf you comply with these license terms, you have the rights\ + \ below.\n\nINSTALLATION AND USE RIGHTS. You may install and use any number of copies of\ + \ the software on your devices to design, develop and test your programs. \n\nADDITIONAL\ + \ LICENSING REQUIREMENTS AND/OR USE RIGHTS.\nDistributable Code.The software contains code\ + \ that you are permitted to distribute in programs you develop if you comply with the terms\ + \ below.\nRight to Use and Distribute. The code and text files listed in the software REDIST.TXT\ + \ files are \"Distributable Code.\"\n\nREDIST.TXT Files. You may copy and distribute the\ + \ object code form of the Distributable Code. You may also combine the object code form\ + \ of the Distributable Code with your programs to develop a unified web solution and permit\ + \ others via online methods to access and use that unified web solution, provided that the\ + \ Distributable Code is only used as part of and in conjunction with your programs.\n\n\ + Third Party Distribution. You may permit distributors of your programs to copy and distribute\ + \ the Distributable Code as part of those programs.\n\nDistributable Code Requirements.\ + \ For any Distributable Code, you must\nadd significant primary functionality to it in your\ + \ programs;\nrequire distributors and external end users to agree to terms that protect\ + \ it at least as much as this agreement;\ndisplay your valid copyright notice on your programs;\ + \ and\nindemnify, defend, and hold harmless Microsoft from any claims, including attorneys’\ + \ fees, related to the distribution or use of your programs.\n\nDistributable Code Restrictions.\ + \ You may not\nalter any copyright, trademark or patent notice in the Distributable Code;\n\ + use Microsoft’s trademarks in your programs’ names or in a way that suggests your programs\ + \ come from or are endorsed by Microsoft;\ninclude Distributable Code in malicious, deceptive\ + \ or unlawful programs; or\nmodify or distribute the source code of any Distributable Code\ + \ so that any part of it becomes subject to an Excluded License. An Excluded License is\ + \ one that requires, as a condition of use, modification or distribution, that\nthe code\ + \ be disclosed or distributed in source code form; or\nothers have the right to modify it.\n\ + \nSCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some\ + \ rights to use the software. Microsoft reserves all other rights. Unless applicable law\ + \ gives you more rights despite this limitation, you may use the software only as expressly\ + \ permitted in this agreement. In doing so, you must comply with any technical limitations\ + \ in the software that only allow you to use it in certain ways. You may not\nwork around\ + \ any technical limitations in the software;\nreverse engineer, decompile or disassemble\ + \ the software, except and only to the extent that applicable law expressly permits, despite\ + \ this limitation;\nmake more copies of the software than specified in this agreement or\ + \ allowed by applicable law, despite this limitation;\npublish the software for others to\ + \ copy;\nrent, lease or lend the software; or\ntransfer the software or this agreement to\ + \ any third party.\n\nBACKUP COPY. You may make one backup copy of the software. You may\ + \ use it only to reinstall the software.\n\nDOCUMENTATION. Any person that has valid access\ + \ to your computer or internal network may copy and use the documentation for your internal,\ + \ reference purposes.\n\nEXPORT RESTRICTIONS. The software is subject to United States export\ + \ laws and regulations. You must comply with all domestic and international export laws\ + \ and regulations that apply to the software. These laws include restrictions on destinations,\ + \ end users and end use. For additional information, see www.microsoft.com/exporting.\n\n\ + SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services\ + \ for it.\n\nENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based\ + \ services and support services that you use, are the entire agreement for the software\ + \ and support services.\n\nAPPLICABLE LAW.\nUnited States. If you acquired the software\ + \ in the United States, Washington state law governs the interpretation of this agreement\ + \ and applies to claims for breach of it, regardless of conflict of laws principles. The\ + \ laws of the state where you live govern all other claims, including claims under state\ + \ consumer protection laws, unfair competition laws, and in tort.\nOutside the United States.\ + \ If you acquired the software in any other country, the laws of that country apply.\n\n\ + LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under\ + \ the laws of your country. You may also have rights with respect to the party from whom\ + \ you acquired the software. This agreement does not change your rights under the laws of\ + \ your country if the laws of your country do not permit it to do so.\n\nDISCLAIMER OF WARRANTY.\ + \ THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO\ + \ EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS\ + \ UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER\ + \ YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nLIMITATION ON AND EXCLUSION OF REMEDIES\ + \ AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO\ + \ U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS,\ + \ SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\nThis limitation applies to\nanything related\ + \ to the software, services, content (including code) on third party Internet sites, or\ + \ third party programs; and\nclaims for breach of contract, breach of warranty, guarantee\ + \ or condition, strict liability, negligence, or other tort to the extent permitted by applicable\ + \ law.\nIt also applies even if Microsoft knew or should have known about the possibility\ + \ of the damages. The above limitation or exclusion may not apply to you because your country\ + \ may not allow the exclusion or limitation of incidental, consequential or other damages." json: ms-reactive-extensions-eula.json - yml: ms-reactive-extensions-eula.yml + yaml: ms-reactive-extensions-eula.yml html: ms-reactive-extensions-eula.html - text: ms-reactive-extensions-eula.LICENSE + license: ms-reactive-extensions-eula.LICENSE - license_key: ms-refl + category: Proprietary Free spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Proprietary Free + text: | + This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. + + 1. Definitions + The terms "reproduce," "reproduction" and "distribution" have the same meaning here as under U.S. copyright law. + + "You" means the licensee of the software. + + "Your company" means the company you worked for when you downloaded the software. + + "Reference use" means use of the software within your company as a reference, in read only form, for the sole purposes of debugging your products, maintaining your products, or enhancing the interoperability of your products with the software, and specifically excludes the right to distribute the software outside of your company. + + "Licensed patents" means any Licensor patent claims which read directly on the software as distributed by the Licensor under this license. + + 2. Grant of Rights + (A) Copyright Grant- Subject to the terms of this license, the Licensor grants you a non-transferable, non-exclusive, worldwide, royalty-free copyright license to reproduce the software for reference use. + + (B) Patent Grant- Subject to the terms of this license, the Licensor grants you a non-transferable, non-exclusive, worldwide, royalty-free patent license under licensed patents for reference use. + + 3. Limitations + (A) No Trademark License- This license does not grant you any rights to use the Licensor's name, + logo, or trademarks. + + (B) If you begin patent litigation against the Licensor over patents that you think may apply to the software (including a cross-claim or counterclaim in a lawsuit), your license to the software ends automatically. + + (C) The software is licensed "as-is." You bear the risk of using it. The Licensor gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the Licensor excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. json: ms-refl.json - yml: ms-refl.yml + yaml: ms-refl.yml html: ms-refl.html - text: ms-refl.LICENSE + license: ms-refl.LICENSE - license_key: ms-remote-ndis-usb-kit + category: Commercial spdx_license_key: LicenseRef-scancode-ms-remote-ndis-usb-kit other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Microsoft Remote NDIS USB Kit EULA\nMICROSOFT REMOTE NDIS USB KIT\nEND-USER LICENSE\ + \ AGREEMENT FOR MICROSOFT SOFTWARE\n\nIMPORTANT-READ CAREFULLY: This End-User License Agreement\ + \ (\"EULA\") is a\nlegal agreement between you (either an individual or a single entity)\ + \ and Microsoft\nCorporation for the Microsoft software that accompanies this EULA, which\ + \ includes\ncomputer software and may include associated media, printed materials, \"online\"\ + \ or\nelectronic documentation, and Internet-based services (\"Software\"). An amendment\ + \ or\naddendum to this EULA may accompany the Software. YOU AGREE TO BE BOUND\nBY THE TERMS\ + \ OF THIS EULA BY INSTALLING, COPYING, OR OTHERWISE\nUSING THE SOFTWARE. IF YOU DO NOT AGREE,\ + \ DO NOT INSTALL, COPY, OR\nUSE THE SOFTWARE; YOU MAY RETURN IT TO YOUR PLACE OF PURCHASE\ + \ (IF\nAPPLICABLE) FOR A FULL REFUND.\n\n1.\tGRANT OF LICENSE. Microsoft grants you the\ + \ following rights provided that you\ncomply with all terms and conditions of this EULA:\ + \ a nonexclusive, worldwide, royalty\nfree right and license to use an unlimited number\ + \ of copies of the Software on\ncomputers, including workstations, terminals, or other devices\ + \ and redistribute the\nSoftware in object code only provided that each copy is a true and\ + \ complete copy of the\nSoftware including the license.txt file.\n\n2.\tADDITIONAL LICENSE\ + \ RIGHTS -- REDISTRIBUTABLE CODE. In addition to the\nrights granted in Section 1, certain\ + \ portions of the Software, as described in this Section\n2, are provided to you with additional\ + \ license rights. These additional license rights are\nconditioned upon your compliance\ + \ with the distribution requirements and license\nrestrictions described in Section 3.\n\ + \n2.1\tRedistributable Code--General. Microsoft grants you a nonexclusive, royalty-free\n\ + right to reproduce and distribute the object code form of any portion of the Software\n\ + listed in REDIST.TXT (\"Redistributable Code\"). For general redistribution requirements\n\ + for Redistributable Code, see Section 3.1, below.\n\n3.\tLICENSE RESTRICTIONS -- DISTRIBUTION\ + \ REQUIREMENTS. If you choose to\nexercise your rights under Section 2, any redistribution\ + \ by you is subject to your\ncompliance with the following terms.\n\n3.1\tIf you are authorized\ + \ and choose to redistribute Redistributable Code as described\nin Section 2, you agree:\ + \ (i) to distribute the Software only in object code form and only\nin conjunction with\ + \ and as a part of your hardware products (\"Licensee Product\") which\nare designed to\ + \ operate in conjunction with Microsoft Windows 2000 operating systems;\n(ii) to distribute\ + \ the Licensee Product containing the Redistributable Code pursuant to\nan end user license\ + \ agreement (which may be \"break-the-seal\", \"click-wrap\" or signed),\nwith terms no\ + \ less protective than those contained in this EULA; (iii) not to use\nMicrosoft's name,\ + \ logo, or trademarks to market the Licensee Product; (iv) to display\nyour own valid copyright\ + \ notice which shall be sufficient to protect Microsoft's copyright\nin the Software; (v)\ + \ not to remove or obscure any copyright, trademark or patent notices\nthat appear on the\ + \ Software as delivered to you; (vi) to indemnify, hold harmless, and\ndefend Microsoft\ + \ from and against any claims or lawsuits, including attorney's fees, that\narise or result\ + \ from the use or distribution of the Licensee Product; (vii) otherwise\ncomply with the\ + \ terms of this EULA; and (viii) agree that Microsoft reserves all rights not\nexpressly\ + \ granted.\nYou also agree not to permit further distribution of the Redistributable Code\ + \ by your end\nusers except you may permit further redistribution of the Redistributable\ + \ Code by your\ndistributors to your end-user customers if your distributors only distribute\ + \ the\nRedistributable Code in conjunction with, and as part of, the Licensee Product and\ + \ you\nand your distributors comply with all other terms of this EULA.\n\n3.2\tIf you use\ + \ the Redistributable Code, then in addition to your compliance with the\napplicable distribution\ + \ requirements described for the Redistributable Code, the\nfollowing also applies. Your\ + \ license rights to the Redistributable Code are conditioned\nupon your not (i) creating\ + \ derivative works of the Redistributable Code in any manner\nthat would cause the Redistributable\ + \ Code in whole or in part to become subject to any\nof the terms of an Excluded License;\ + \ or (ii) distributing the Redistributable Code (or\nderivative works thereof) in any manner\ + \ that would cause the Redistributable Code to\nbecome subject to any of the terms of an\ + \ Excluded License. An \"Excluded License\" is\nany license that requires as a condition\ + \ of use, modification and/or distribution of\nsoftware subject to the Excluded License,\ + \ that such software or other software\ncombined and/or distributed with such software be\ + \ (x) disclosed or distributed in source\ncode form; (y) licensed for the purpose of making\ + \ derivative works; or (z) redistributable\nat no charge.\n\n4.\tRESERVATION OF RIGHTS AND\ + \ OWNERSHIP. Microsoft reserves all rights not\nexpressly granted to you in this EULA. The\ + \ Software is protected by copyright and other\nintellectual property laws and treaties.\ + \ Microsoft or its suppliers own the title, copyright,\nand other intellectual property\ + \ rights in the Software. The Software is licensed, not\nsold.\n\n5.\tLIMITATIONS ON REVERSE\ + \ ENGINEERING, DECOMPILATION, AND\nDISASSEMBLY. You may not reverse engineer, decompile,\ + \ or disassemble the\nSoftware, except and only to the extent that such activity is expressly\ + \ permitted by\napplicable law notwithstanding this limitation.\n\n6. NO RENTAL/COMMERCIAL\ + \ HOSTING. You may not rent, lease, lend or provide\ncommercial hosting services with the\ + \ Software.\n\n7.\tCONSENT TO USE OF DATA. You agree that Microsoft and its affiliates may\n\ + collect and use technical information gathered as part of the product support services\n\ + provided to you, if any, related to the Software. Microsoft may use this information solely\n\ + to improve our products or to provide customized services or technologies to you and\nwill\ + \ not disclose this information in a form that personally identifies you.\n\n8.\tLINKS TO\ + \ THIRD PARTY SITES. You may link to third party sites through the use\nof the Software.\ + \ The third party sites are not under the control of Microsoft, and\nMicrosoft is not responsible\ + \ for the contents of any third party sites, any links contained\nin third party sites,\ + \ or any changes or updates to third party sites. Microsoft is not\nresponsible for webcasting\ + \ or any other form of transmission received from any third\nparty sites. Microsoft is providing\ + \ these links to third party sites to you only as a\nconvenience, and the inclusion of any\ + \ link does not imply an endorsement by Microsoft\nof the third party site.\n\n9.\tADDITIONAL\ + \ SOFTWARE/SERVICES. This EULA applies to updates,\nsupplements, add-on components, or Internet-based\ + \ services components, of the\nSoftware that Microsoft may provide to you or make available\ + \ to you after the date you\nobtain your initial copy of the Software, unless we provide\ + \ other terms along with the\nupdate, supplement, add-on component, or Internet-based services\ + \ component.\nMicrosoft reserves the right to discontinue any Internet-based services provided\ + \ to you\nor made available to you through the use of the Software.\n\n10.\tU.S. GOVERNMENT\ + \ LICENSE RIGHTS. All Software provided to the U.S.\nGovernment pursuant to solicitations\ + \ issued on or after December 1, 1995 is provided\nwith the commercial license rights and\ + \ restrictions described elsewhere herein. All\nSoftware provided to the U.S. Government\ + \ pursuant to solicitations issued prior to\nDecember 1, 1995 is provided with \"Restricted\ + \ Rights\" as provided for in FAR, 48 CFR\n52.227-14 (JUNE 1987) or DFAR, 48 CFR 252.227-7013\ + \ (OCT 1988), as applicable.\n\n11.\tEXPORT RESTRICTIONS. You acknowledge that the Software\ + \ is subject to U.S.\nexport jurisdiction. You agree to comply with all applicable international\ + \ and national\nlaws that apply to the Software, including the U.S. Export Administration\ + \ Regulations, as\nwell as end-user, end-use, and destination restrictions issued by U.S.\ + \ and other\ngovernments. For additional information see http://www.microsoft.com/exporting/.\n\ + \n12.\tSOFTWARE TRANSFER. The initial user of the Software may make a one-time\npermanent\ + \ transfer of this EULA and Software to another end user, provided the initial\nuser retains\ + \ no copies of the Software. The transfer may not be an indirect transfer,\nsuch as a consignment.\ + \ Prior to the transfer, the end user receiving the Software must\nagree to all the EULA\ + \ terms.\n\n13.\tTERMINATION. Without prejudice to any other rights, Microsoft may terminate\ + \ this\nEULA if you fail to comply with the terms and conditions of this EULA. In such event,\n\ + you must destroy all copies of the Software and all of its component parts.\n\n14.\tDISCLAIMER\ + \ OF WARRANTIES. TO THE MAXIMUM EXTENT PERMITTED BY\nAPPLICABLE LAW, MICROSOFT AND ITS SUPPLIERS\ + \ PROVIDE THE SOFTWARE,\nAND SUPPORT SERVICES (IF ANY) AS IS AND WITH ALL FAULTS, AND\n\ + MICROSOFT AND ITS SUPPLIERS HEREBY DISCLAIM ALL OTHER WARRANTIES\nAND CONDITIONS, WHETHER\ + \ EXPRESS, IMPLIED OR STATUTORY, INCLUDING,\nBUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES,\ + \ DUTIES OR\nCONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR\nPURPOSE, OF RELIABILITY\ + \ OR AVAILABILITY, OF ACCURACY OR\nCOMPLETENESS OF RESPONSES, OF RESULTS, OF WORKMANLIKE\ + \ EFFORT,\nOF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE, ALL WITH REGARD TO\nTHE SOFTWARE,\ + \ AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT\nOR OTHER SERVICES, INFORMATION, SOFTWARE,\ + \ AND RELATED CONTENT\nTHROUGH THE SOFTWARE OR OTHERWISE ARISING OUT OF THE USE OF THE\n\ + SOFTWARE. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET\nENJOYMENT, QUIET POSSESSION,\ + \ CORRESPONDENCE TO DESCRIPTION OR\nNON-INFRINGEMENT WITH REGARD TO THE SOFTWARE. THE ENTIRE\ + \ RISK AS\nTO THE QUALITY, OR ARISING OUT OF THE USE OR PERFORMANCE OF THE\nSOFTWARE AND\ + \ ANY SUPPORT SERVICES, REMAINS WITH YOU.\n\n15.\tEXCLUSION OF INCIDENTAL, CONSEQUENTIAL\ + \ AND CERTAIN OTHER\nDAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO\n\ + EVENT SHALL MICROSOFT OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL,\nINCIDENTAL, PUNITIVE,\ + \ INDIRECT, OR CONSEQUENTIAL DAMAGES\nWHATSOEVER (INCLUDING, BUT NOT LIMITED TO, DAMAGES\ + \ FOR LOSS OF\nPROFITS OR CONFIDENTIAL OR OTHER INFORMATION, FOR BUSINESS\nINTERRUPTION,\ + \ FOR PERSONAL INJURY, FOR LOSS OF PRIVACY, FOR FAILURE\nTO MEET ANY DUTY INCLUDING OF GOOD\ + \ FAITH OR OF REASONABLE CARE,\nFOR NEGLIGENCE, AND FOR ANY OTHER PECUNIARY OR OTHER LOSS\n\ + WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF OR\nINABILITY TO USE THE\ + \ SOFTWARE, THE PROVISION OF OR FAILURE TO\nPROVIDE SUPPORT OR OTHER SERVICES, INFORMATION,\ + \ SOFTWARE, AND\nRELATED CONTENT THROUGH THE SOFTWARE OR OTHERWISE ARISING OUT\nOF THE USE\ + \ OF THE SOFTWARE, OR OTHERWISE UNDER OR IN CONNECTION\nWITH ANY PROVISION OF THIS EULA,\ + \ EVEN IN THE EVENT OF THE FAULT, TORT\n(INCLUDING NEGLIGENCE), MISREPRESENTATION, STRICT\ + \ LIABILITY, BREACH\nOF CONTRACT OR BREACH OF WARRANTY OF MICROSOFT OR ANY SUPPLIER,\nAND\ + \ EVEN IF MICROSOFT OR ANY SUPPLIER HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\ + \ BECAUSE SOME STATES/JURISDICTIONS DO\nNOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY\ + \ FOR\nCONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT\nAPPLY TO YOU.\n\ + \n16.\tLIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING ANY\nDAMAGES THAT YOU MIGHT\ + \ INCUR FOR ANY REASON WHATSOEVER\n(INCLUDING, WITHOUT LIMITATION, ALL DAMAGES REFERENCED\ + \ HEREIN AND\nALL DIRECT OR GENERAL DAMAGES IN CONTRACT OR ANYTHING ELSE), THE\nENTIRE LIABILITY\ + \ OF MICROSOFT AND ANY OF ITS SUPPLIERS UNDER ANY\nPROVISION OF THIS EULA AND YOUR EXCLUSIVE\ + \ REMEDY HEREUNDER SHALL\nBE LIMITED TO THE GREATER OF THE ACTUAL DAMAGES YOU INCUR IN\n\ + REASONABLE RELIANCE ON THE SOFTWARE UP TO THE AMOUNT ACTUALLY\nPAID BY YOU FOR THE SOFTWARE\ + \ OR US$5.00. THE FOREGOING LIMITATIONS,\nEXCLUSIONS AND DISCLAIMERS SHALL APPLY TO THE\ + \ MAXIMUM EXTENT\nPERMITTED BY APPLICABLE LAW, EVEN IF ANY REMEDY FAILS ITS ESSENTIAL\n\ + PURPOSE.\n\n17.\tAPPLICABLE LAW. If you acquired this Software in the United States, this\ + \ EULA\nis governed by the laws of the State of Washington. If you acquired this Software\ + \ in\nCanada, unless expressly prohibited by local law, this EULA is governed by the laws\ + \ in\nforce in the Province of Ontario, Canada; and, in respect of any dispute which may\ + \ arise\nhereunder, you consent to the jurisdiction of the federal and provincial courts\ + \ sitting in\nToronto, Ontario. If you acquired this Software in the European Union, Iceland,\ + \ Norway,\nor Switzerland, then local law applies. If you acquired this Software in any\ + \ other country,\nthen local law may apply.\n\n18.\tENTIRE AGREEMENT; SEVERABILITY. This\ + \ EULA (including any addendum or\namendment to this EULA which is included with the Software)\ + \ are the entire agreement\nbetween you and Microsoft relating to the Software and the support\ + \ services (if any) and\nthey supersede all prior or contemporaneous oral or written communications,\ + \ proposals\nand representations with respect to the Software or any other subject matter\ + \ covered by\nthis EULA. To the extent the terms of any Microsoft policies or programs for\ + \ support\nservices conflict with the terms of this EULA, the terms of this EULA shall control.\ + \ If any\nprovision of this EULA is held to be void, invalid, unenforceable or illegal,\ + \ the other\nprovisions shall continue in full force and effect." json: ms-remote-ndis-usb-kit.json - yml: ms-remote-ndis-usb-kit.yml + yaml: ms-remote-ndis-usb-kit.yml html: ms-remote-ndis-usb-kit.html - text: ms-remote-ndis-usb-kit.LICENSE + license: ms-remote-ndis-usb-kit.LICENSE - license_key: ms-research-shared-source + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-research-shared-source other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Microsoft + Research + Shared + Source + License + + Microsoft Research Shared Source License Agreement (Non-commercial Use Only) + + This Microsoft Research Shared Source license agreement ("MSR-SSLA") is a legal agreement between you and Microsoft Corporation ("Microsoft" or "we") for the software or data identified above, which may include source code, and any associated materials, text or speech files, associated media and "online" or electronic documentation and any updates we provide in our discretion (together, the "Software"). + By installing, copying, or otherwise using this Software, found at http://research.microsoft.com/downloads, you agree to be bound by the terms of this MSR-SSLA. If you do not agree, do not install copy or use the Software. The Software is protected by copyright and other intellectual property laws and is licensed, not sold. + + SCOPE OF RIGHTS: + You may use, copy, reproduce, and distribute this Software for any non- commercial purpose, subject to the restrictions in this MSR-SSLA. Some purposes which can be non-commercial are teaching, academic research, public demonstrations and personal experimentation. You may also distribute this Software with books or other teaching materials, or publish the Software on websites, that are intended to teach the use of the Software for academic or other non-commercial purposes. + + You may not use or distribute this Software or any derivative works in any form for commercial purposes. Examples of commercial purposes would be running business operations, licensing, leasing, or selling the Software, distributing the Software for use with commercial products, using the Software in the creation or use of commercial products or any other activity which purpose is to procure a commercial gain to you or others. + + If the Software includes source code or data, you may create derivative works of such portions of the Software and distribute the modified Software for non- commercial purposes, as provided herein. In return, we simply require that you agree: + + 1. That you will not remove any copyright or other notices from the Software. + + 2. That if any of the Software is in binary format, you will not attempt to modify such portions of the Software, or to reverse engineer or decompile them, except and only to the extent authorized by applicable law. + + 3. That if you distribute the Software or any derivative works of the Software, you will distribute them under the same terms and conditions as in this license, and you will not grant other rights to the Software or derivative works that are different from those provided by this MSR-SSLA. + + 4. That if you have created derivative works of the Software, and distribute such derivative works, you will cause the modified files to carry prominent notices so that recipients know that they are not receiving the original Software. Such notices must state: 1. that you have changed the Software; and 2. the date of any changes. + + 5. That Microsoft is granted back, without any restrictions or limitations, a non-exclusive, perpetual, irrevocable, royalty-free, assignable and sub- licensable license, to reproduce, publicly perform or display, install, use, modify, distribute, make and have made, sell and transfer your modifications to and/or derivative works of the Software source code or data, for any purpose. . + + 6. That any feedback about the Software provided by you to us is voluntarily given, and Microsoft shall be free to use the feedback as it sees fit without obligation or restriction of any kind, even if the feedback is designated by you as confidential. + + 7. THAT THE SOFTWARE COMES "AS IS", WITH NO WARRANTIES. THIS MEANS NO EXPRESS, IMPLIED OR STATUTORY WARRANTY, INCLUDING WITHOUT LIMITATION, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, any warranty against interference with your enjoyment of the Software OR ANY WARRANTY OF TITLE OR NON-INFRINGEMENT. There is no warranty that this Software will fulfill any of your particular purposes or needs. ALSO, YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE SOFTWARE OR DERIVATIVE WORKS. + + 8. THAT NEITHER MICROSOFT NOR ANY CONTRIBUTOR TO THE SOFTWARE WILL BE LIABLE FOR ANY DAMAGES RELATED TO THE SOFTWARE OR THIS MSR-SSLA, INCLUDING DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL OR INCIDENTAL DAMAGES, TO THE MAXIMUM EXTENT THE LAW PERMITS, NO MATTER WHAT LEGAL THEORY IT IS BASED ON. ALSO, YOU MUST PASS THIS LIMITATION OF LIABILITY ON WHENEVER YOU DISTRIBUTE THE SOFTWARE OR DERIVATIVE WORKS. + + 9. That we have no duty of reasonable care or lack of negligence, and we are not obligated to (and will not) provide technical support for the Software. + + 10. That if you breach this MSR-SSLA or if you sue anyone over patents that you think may apply to or read on the Software or anyone's use of the Software, this MSR-SSLA (and your license and rights obtained herein) terminate automatically. Upon any such termination, you shall destroy all of your copies of the Software immediately. Sections 5, 6, 7, 8, 9, 10, 13 and 14 of this MSR- SSLA shall survive any termination of this MSR-SSLA. + + 11. That the patent rights, if any, granted to you in this MSR-SSLA only apply to the Software, not to any derivative works you make. + + 12. That the Software may be subject to U.S. export jurisdiction at the time it is licensed to you, and it may be subject to additional export or import laws in other places. You agree to comply with all such laws and regulations that may apply to the Software after delivery of the software to you. + + 13. That all rights not expressly granted to you in this MSR-SSLA are reserved. + + 14. That this MSR-SSLA shall be construed and controlled by the laws of the State of Washington, USA, without regard to conflicts of law. If any provision of this MSR-SSLA shall be deemed unenforceable or contrary to law, the rest of this MSR-SSLA shall remain in full effect and interpreted in an enforceable manner that most nearly captures the intent of the original language. + Copyright (c) Microsoft Corporation. All rights reserved. + + Do you accept all of the terms of the preceding MSR-SSLA license agreement? If you accept the terms, click "I Agree," then "Next." Otherwise click "Cancel." json: ms-research-shared-source.json - yml: ms-research-shared-source.yml + yaml: ms-research-shared-source.yml html: ms-research-shared-source.html - text: ms-research-shared-source.LICENSE + license: ms-research-shared-source.LICENSE - license_key: ms-rl + category: Copyleft Limited spdx_license_key: MS-RL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Microsoft Reciprocal License (Ms-RL) + + This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. + + 1. Definitions + The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. + A "contribution" is the original software, or any additions or changes to the software. + A "contributor" is any person that distributes its contribution under this license. + "Licensed patents" are a contributor's patent claims that read directly on its contribution. + + 2. Grant of Rights + (A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. + (B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. + + 3. Conditions and Limitations + (A) Reciprocal Grants- For any file you distribute that contains code from the software (in source code or binary format), you must provide recipients the source code to that file along with a copy of this license, which license will govern that file. You may license other files that are entirely your own work and do not contain code from the software under any terms you choose. + (B) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks. + (C) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. + (D) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. + (E) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. + (F) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees, or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. json: ms-rl.json - yml: ms-rl.yml + yaml: ms-rl.yml html: ms-rl.html - text: ms-rl.LICENSE + license: ms-rl.LICENSE - license_key: ms-rsl + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-rsl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. + + 1. Definitions + The terms "reproduce," "reproduction" and "distribution" have the same meaning here as under U.S. copyright law. + + "You" means the licensee of the software. + + "Your company" means the company you worked for when you downloaded the software. + + "Reference use" means use of the software within your company as a reference, in read only form, for the sole purposes of debugging your products, maintaining your products, or enhancing the interoperability of your products with the software, and specifically excludes the right to distribute the software outside of your company. + + "Licensed patents" means any Licensor patent claims which read directly on the software as distributed by the Licensor under this license. + + 2. Grant of Rights + (A) Copyright Grant- Subject to the terms of this license, the Licensor grants you a non-transferable, non-exclusive, worldwide, royalty-free copyright license to reproduce the software for reference use. + + (B) Patent Grant- Subject to the terms of this license, the Licensor grants you a non-transferable, non-exclusive, worldwide, royalty-free patent license under licensed patents for reference use. + + 3. Limitations + (A) No Trademark License- This license does not grant you any rights to use the Licensor's name, + logo, or trademarks. + + (B) If you begin patent litigation against the Licensor over patents that you think may apply to the software (including a cross-claim or counterclaim in a lawsuit), your license to the software ends automatically. + + (C) The software is licensed "as-is." You bear the risk of using it. The Licensor gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the Licensor excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. json: ms-rsl.json - yml: ms-rsl.yml + yaml: ms-rsl.yml html: ms-rsl.html - text: ms-rsl.LICENSE + license: ms-rsl.LICENSE - license_key: ms-silverlight-3 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-silverlight-3 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS\nMICROSOFT SILVERLIGHT 3 TOOLS FOR VISUAL\ + \ STUDIO 2008, Service Pack 1\n\nPLEASE NOTE: Microsoft Corporation (or based on where you\ + \ live, one of its affiliates) licenses this supplement to you. You may use it with each\ + \ validly licensed copy of Microsoft Visual Studio 2008 Service Pack 1 and Microsoft Visual\ + \ Web Developer 2008 Express Edition software (for which this supplement is applicable)\ + \ (the \"software\"). You may not use the supplement if you do not have a license for the\ + \ software. The license terms for the software apply to your use of this supplement. Microsoft\ + \ provides support services for the supplement as described at www.support.microsoft.com/common/international.aspx.\ + \ \n\n=============================================\n\nMICROSOFT SOFTWARE LICENSE TERMS\n\ + MICROSOFT SILVERLIGHT 3\n\nThese license terms are an agreement between Microsoft Corporation\ + \ (or based on where you live, one of its affiliates) and you. Please read them. They apply\ + \ to the software named above, which includes the media on which you received it, if any.\ + \ The terms also apply to any Microsoft\n\n·\tUpdates (including but not limited to bug\ + \ fixes, patches, updates, upgrades, enhancements, new versions, and successors to the software,\ + \ collectively called \"Updates\"),\n·\tsupplements,\n·\tInternet-based services, and \n\ + ·\tsupport services\nfor this software, unless other terms accompany those items. If so,\ + \ those terms apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT\ + \ THEM, DO NOT USE THE SOFTWARE.\nAS DESCRIBED BELOW, YOUR INSTALLATION OF THIS SOFTWARE\ + \ ALSO OPERATES AS YOUR CONSENT TO THE TRANSMISSION OF CERTAIN STANDARD COMPUTER INFORMATION\ + \ AND TO THE AUTOMATIC DOWNLOADING AND INSTALLATION OF UPDATES ON YOUR COMPUTER.\n\nIf you\ + \ comply with these license terms, you have the rights below.\n\n1.\tINSTALLATION AND USE\ + \ RIGHTS. You may install and use any number of copies of the software. You may also make\ + \ any number of copies as you need to distribute the software within your organization.\n\ + \n2.\tSCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you\ + \ some rights to use the software. Microsoft reserves all other rights. Unless applicable\ + \ law gives you more rights despite this limitation, you may use the software only as expressly\ + \ permitted in this agreement. In doing so, you must comply with any technical limitations\ + \ in the software that only allow you to use it in certain ways. You may not\n\n·\twork\ + \ around any technical limitations in the software;\n·\treverse engineer, decompile or disassemble\ + \ the software, except and only to the extent that applicable law expressly permits, despite\ + \ this limitation;\n·\tpublish the software for others to copy;\n·\trent, lease or lend\ + \ the software; or\n·\ttransfer the software or this agreement to any third party.\n\n3.\t\ + INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software. It\ + \ may change or cancel them at any time. \n\na.\tAutomatic Updates. This software contains\ + \ an Automatic Update feature that is on by default. For more information about this feature,\ + \ including instructions for to turning it off, see go.microsoft.com/fwlink/?LinkId=147032.\ + \ You may turn off this feature while the software is running (\"opt out\"). Unless you\ + \ expressly opt out of this feature, this feature will (a) connect to Microsoft or service\ + \ provider computer systems over the Internet, (b) use Internet protocols to send to the\ + \ appropriate systems standard computer information, such as your computer’s Internet protocol\ + \ address, the type of operating system, browser and name and version of the software you\ + \ are using, and the language code of the device where you installed the software, and (c)\ + \ automatically download and install, or prompt you to download and/or install, current\ + \ Updates to the software. In some cases, you will not receive a separate notice before\ + \ this feature takes effect. By installing the software, you consent to the transmission\ + \ of standard computer information and the automatic downloading and installation of Updates.\n\ + \nb.\tMicrosoft Digital Rights Management. If you use the software to access content that\ + \ has been protected with Microsoft Digital Rights Management (DRM), in order to let you\ + \ play the content, the software may automatically request media usage rights from a rights\ + \ server on the Internet and download and install available DRM Updates. For more information,\ + \ see go.microsoft.com/fwlink/?LinkId=147032.\n\n4.\tNOTICE ABOUT THE H.264/AVC VISUAL STANDARD,\ + \ AND THE VC-1 VIDEO STANDARD. This software may include H.264/MPEG-4 AVC and/or VC-1decoding\ + \ technology. MPEG LA, L.L.C. requires this notice: \n\nTHIS PRODUCT IS LICENSED UNDER THE\ + \ AVC AND THE VC-1 PATENT PORTFOLIO LICENSES FOR THE PERSONAL AND NON-COMMERCIAL USE OF\ + \ A CONSUMER TO (A) ENCODE VIDEO IN COMPLIANCE WITH THE ABOVE STANDARDS (\"VIDEO STANDARDS\"\ + ) AND/OR (B) DECODE AVC AND VC-1 VIDEO THAT WAS ENCODED BY A CONSUMER ENGAGED IN A PERSONAL\ + \ AND NON-COMMERCIAL ACTIVITY AND/OR WAS OBTAINED FROM A VIDEO PROVIDER LICENSED TO PROVIDE\ + \ SUCH VIDEO. NONE OF THE LICENSES EXTEND TO ANY OTHER PRODUCT REGARDLESS OF WHETHER SUCH\ + \ PRODUCT IS INCLUDED WITH THIS SOFTWARE IN A SINGLE ARTICLE. NO LICENSE IS GRANTED OR SHALL\ + \ BE IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED FROM MPEG LA, L.L.C.\ + \ SEE WWW.MPEGLA.COM.\nFor clarification purposes only, the Notice in this Section does\ + \ not limit or inhibit the use of the software provided under this agreement for normal\ + \ business uses that are personal to that business which do not include (i) redistribution\ + \ of the software to third parties, or (ii) creation of content with the VIDEO STANDARDS\ + \ compliant technologies for distribution to third parties.\n\n5.\tEXPORT RESTRICTIONS.\ + \ The software is subject to United States export laws and regulations. You must comply\ + \ with all domestic and international export laws and regulations that apply to the software.\ + \ These laws include restrictions on destinations, end users and end use. For additional\ + \ information, see www.microsoft.com/exporting. \n\n6.\tSUPPORT SERVICES. Because this software\ + \ is \"as is,\" we may not provide support services for it.\n\n7.\tENTIRE AGREEMENT. This\ + \ agreement, and the terms for supplements, Updates, Internet-based services and support\ + \ services that you use, are the entire agreement for the software and support services.\n\ + \n8.\tAPPLICABLE LAW.\n\na.\tUnited States. If you acquired the software in the United States,\ + \ Washington state law governs the interpretation of this agreement and applies to claims\ + \ for breach of it, regardless of conflict of laws principles. The laws of the state where\ + \ you live govern all other claims, including claims under state consumer protection laws,\ + \ unfair competition laws, and in tort.\n\nb.\tOutside the United States. If you acquired\ + \ the software in any other country, the laws of that country apply.\n\n9.\tLEGAL EFFECT.\ + \ This agreement describes certain legal rights. You may have other rights under the laws\ + \ of your country. You may also have rights with respect to the party from whom you acquired\ + \ the software. This agreement does not change your rights under the laws of your country\ + \ if the laws of your country do not permit it to do so.\n\n10.\tDISCLAIMER OF WARRANTY.\ + \ The software is licensed \"as-is.\" You bear the risk of using it. Microsoft gives no\ + \ express warranties, guarantees or conditions. You may have additional consumer rights\ + \ under your local laws which this agreement cannot change. To the extent permitted under\ + \ your local laws, Microsoft excludes the implied warranties of merchantability, fitness\ + \ for a particular purpose and non-infringement.\n\n11.\tLIMITATION ON AND EXCLUSION OF\ + \ REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages\ + \ up to U.S. $5.00. You cannot recover any other damages, including consequential, lost\ + \ profits, special, indirect or incidental damages.\n\nThis limitation applies to\n·\tanything\ + \ related to the software, services, content (including code) on third party Internet sites,\ + \ or third party programs; and\n·\tclaims for breach of contract, breach of warranty, guarantee\ + \ or condition, strict liability, negligence, or other tort to the extent permitted by applicable\ + \ law.\nIt also applies even if Microsoft knew or should have known about the possibility\ + \ of the damages. The above limitation or exclusion may not apply to you because your country\ + \ may not allow the exclusion or limitation of incidental, consequential or other damages.\n\ + \n=============================================\nMICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT\ + \ SILVERLIGHT 3 SOFTWARE DEVELOPMENT KIT\n\nThese license terms are an agreement between\ + \ Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please\ + \ read them. They apply to the software named above, which includes the media on which you\ + \ received it, if any. The terms also apply to any Microsoft\n\n·\tupdates,\n·\tsupplements,\n\ + ·\tInternet-based services, and\n·\tsupport services\nfor this software, unless other terms\ + \ accompany those items. If so, those terms apply.\n\nBy using the software, you accept\ + \ these terms. If you do not accept them, do not use the software.\n\nThe software is a\ + \ software development kit designed to work with Microsoft Silverlight (collectively \"\ + Microsoft Silverlight\"). This agreement does not give you any rights to install or use\ + \ Microsoft Silverlight. You must acquire a separate license to acquire such rights.\n\n\ + If you comply with these license terms, you have the rights below.\n\n1.\tINSTALLATION AND\ + \ USE RIGHTS. One user may install and use any number of copies of the software on your\ + \ devices to design, develop and test your programs for use with Microsoft Silverlight.\n\ + \n2.\tADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\na.\tDistributable Code. The\ + \ software contains code that you are permitted to distribute in programs you develop for\ + \ use with Microsoft Silverlight if you comply with the terms below.\n\ni.\tRight to Use\ + \ and Distribute. The code and text files listed below are \"Distributable Code.\"\n·\t\ + Sample Code. You may modify, copy, and distribute the source and object code form of code\ + \ marked as \"sample.\"\n·\tSilverlight Libraries. You may copy and distribute the object\ + \ code form of code marked as \"Silverlight Libraries\", \"Client Libraries\" and \"Server\ + \ Libraries.\"\n·\tThird Party Distribution. You may permit distributors of your programs\ + \ to copy and distribute the Distributable Code as part of those programs.\n\nii.\tDistribution\ + \ Requirements. For any Distributable Code you distribute, you must\n·\tadd significant\ + \ primary functionality to it in your programs;\n·\trequire distributors and external end\ + \ users to agree to terms that protect it at least as much as this agreement;\n·\tdisplay\ + \ your valid copyright notice on your programs; and\n·\tindemnify, defend, and hold harmless\ + \ Microsoft from any claims, including attorneys’ fees, related to the distribution or use\ + \ of your programs.\n\niii.\tDistribution Restrictions. You may not\n·\talter any copyright,\ + \ trademark or patent notice in the Distributable Code;\n·\tuse Microsoft’s trademarks in\ + \ your programs’ names or in a way that suggests your programs come from or are endorsed\ + \ by Microsoft;\n·\tinclude Distributable Code in malicious, deceptive or unlawful programs;\ + \ or\n·\tmodify or distribute the source code of any Distributable Code so that any part\ + \ of it becomes subject to an Excluded License. An Excluded License is one that requires,\ + \ as a condition of use, modification or distribution, that\n·\tthe code be disclosed or\ + \ distributed in source code form; or\n·\tothers have the right to modify it.\n\n3.\tSCOPE\ + \ OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights\ + \ to use the software. Microsoft reserves all other rights. Unless applicable law gives\ + \ you more rights despite this limitation, you may use the software only as expressly permitted\ + \ in this agreement. In doing so, you must comply with any technical limitations in the\ + \ software that only allow you to use it in certain ways. You may not\n\n·\twork around\ + \ any technical limitations in the software;\n·\treverse engineer, decompile or disassemble\ + \ the software, except and only to the extent that applicable law expressly permits, despite\ + \ this limitation;\n·\tpublish the software for others to copy;\n·\trent, lease or lend\ + \ the software; or\n·\ttransfer the software or this agreement to any third party.\n\n4.\t\ + BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall\ + \ the software.\n\n5.\tDOCUMENTATION. Any person that has valid access to your computer\ + \ or internal network may copy and use the documentation for your internal, reference purposes.\n\ + \n6.\tNOTICE ABOUT THE H.264/AVC VISUAL STANDARD, AND THE VC-1 VIDEO STANDARD. This software\ + \ may include H.264/MPEG-4 AVC and/or VC-1. MPEG LA, L.L.C. requires this notice: \n\nTHIS\ + \ PRODUCT IS LICENSED UNDER THE AVC AND THE VC-1 PATENT PORTFOLIO LICENSES FOR THE PERSONAL\ + \ AND NON-COMMERCIAL USE OF A CONSUMER TO (1) ENCODE VIDEO IN COMPLIANCE WITH THE ABOVE\ + \ STANDARDS (\"VIDEO STANDARDS\") AND/OR (2) DECODE AVC AND VC-1 VIDEO THAT WAS ENCODED\ + \ BY A CONSUMER ENGAGED IN A PERSONAL AND NON-COMMERCIAL ACTIVITY AND/OR WAS OBTAINED FROM\ + \ A VIDEO PROVIDER LICENSED TO PROVIDE SUCH VIDEO. NO LICENSE IS GRANTED OR SHALL BE IMPLIED\ + \ FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED FROM MPEG LA, L.L.C. SEE WWW.MPEGLA.COM.\n\ + \n7.\tEXPORT RESTRICTIONS. The software is subject to United States export laws and regulations.\ + \ You must comply with all domestic and international export laws and regulations that apply\ + \ to the software. These laws include restrictions on destinations, end users and end use.\ + \ For additional information, see www.microsoft.com/exporting.\n\n8.\tSUPPORT SERVICES.\ + \ Because this software is \"as is,\" we may not provide support services for it.\n\n9.\t\ + ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based\ + \ services and support services that you use, are the entire agreement for the software\ + \ and support services.\n\n10.\tAPPLICABLE LAW.\n\na.\tUnited States. If you acquired the\ + \ software in the United States, Washington state law governs the interpretation of this\ + \ agreement and applies to claims for breach of it, regardless of conflict of laws principles.\ + \ The laws of the state where you live govern all other claims, including claims under state\ + \ consumer protection laws, unfair competition laws, and in tort.\n\nb.\tOutside the United\ + \ States. If you acquired the software in any other country, the laws of that country apply.\n\ + \n11.\tLEGAL EFFECT. This agreement describes certain legal rights. You may have other rights\ + \ under the laws of your country. You may also have rights with respect to the party from\ + \ whom you acquired the software. This agreement does not change your rights under the laws\ + \ of your country if the laws of your country do not permit it to do so.\n\n12.\tDISCLAIMER\ + \ OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT\ + \ GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER\ + \ RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED\ + \ UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n13.\tLIMITATION ON AND EXCLUSION OF\ + \ REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES\ + \ UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST\ + \ PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to\n·\tanything\ + \ related to the software, services, content (including code) on third party Internet sites,\ + \ or third party programs; and\n·\tclaims for breach of contract, breach of warranty, guarantee\ + \ or condition, strict liability, negligence, or other tort to the extent permitted by applicable\ + \ law.\nIt also applies even if Microsoft knew or should have known about the possibility\ + \ of the damages. The above limitation or exclusion may not apply to you because your country\ + \ may not allow the exclusion or limitation of incidental, consequential or other damages." json: ms-silverlight-3.json - yml: ms-silverlight-3.yml + yaml: ms-silverlight-3.yml html: ms-silverlight-3.html - text: ms-silverlight-3.LICENSE + license: ms-silverlight-3.LICENSE - license_key: ms-sql-server-compact-4.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-sql-server-compact-4.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT SQL SERVER COMPACT 4.0 \n\nThese license\ + \ terms are an agreement between Microsoft Corporation (or based on where you live, one\ + \ of its affiliates) and you. Please read them. They apply to the software named above,\ + \ which includes the media on which you received it, if any. The terms also apply to any\ + \ Microsoft\n•\tupdates,\n•\tsupplements,\n•\tInternet-based services, and\n•\tsupport services\n\ + for this software, unless other terms accompany those items. If so, those terms apply.\n\ + BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE\ + \ SOFTWARE.\nIf you comply with these license terms, you have the rights below.\n\n1.\t\ + INSTALLATION AND USE RIGHTS. \na.\tInstallation and Use. You may install and use any number\ + \ of copies of the software on your devices to design, develop and test your programs for\ + \ use with the software.\nb.\tIncluded Microsoft Programs. The software contains the Microsoft\ + \ Visual C++ 2008 Express Edition components listed below. You may only use these components\ + \ with the software. The Microsoft Visual C++ 2008 Express license terms located at %Program\ + \ Files%\\Microsoft SQL Server Compact Edition\\v4.0 apply to your use of them, except that\ + \ the components listed below may be used for commercial hosting services when used in conjunction\ + \ with the software. \n•\tMicrosoft_VC90_CRT_x86.msm\n•\tpolicy_9_0_Microsoft_VC90_CRT_x86.msm\n\ + •\tMicrosoft_VC90_CRT_x86_x64.msm\n•\tpolicy_9_0_Microsoft_VC90_CRT_x86_x64.msm\n•\tVC90.CRT_X86_msvcr90.dll\n\ + •\tVC90.CRT_X86_Microsoft.VC90.CRT.manifest\n•\tVC90.CRT_AMD64_msvcr90.dll\n•\tVC90.CRT_AMD64_Microsoft.VC90.CRT.manifest\n\ + \n2.\tADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\na.\tDistributable Code. The\ + \ software contains code that you are permitted to distribute in programs you develop if\ + \ you comply with the terms below.\ni.\tRight to Use and Distribute. The code and text files\ + \ listed below are \"Distributable Code.\"\n•\tREDIST.TXT Files. You may copy and distribute\ + \ the object code form of code listed in REDIST.TXT files.\n•\tThird Party Distribution.\ + \ You may permit distributors of your programs to copy and distribute the Distributable\ + \ Code as part of those programs.\nii.\tDistribution Requirements. For any Distributable\ + \ Code you distribute, you must\n•\tadd significant primary functionality to it in your\ + \ programs;\n•\tfor any Distributable Code having a filename extension of .lib, distribute\ + \ only the results of running such Distributable Code through a linker with your program;\n\ + •\tdistribute Distributable Code included in a setup program only as part of that setup\ + \ program without modification;\n•\trequire distributors and external end users to agree\ + \ to terms that protect it at least as much as this agreement; \n•\tdisplay your valid copyright\ + \ notice on your programs; and\n•\tindemnify, defend, and hold harmless Microsoft from any\ + \ claims, including attorneys’ fees, related to the distribution or use of your programs.\n\ + iii.\tDistribution Restrictions. You may not\n•\talter any copyright, trademark or patent\ + \ notice in the Distributable Code;\n•\tuse Microsoft’s trademarks in your programs’ names\ + \ or in a way that suggests your programs come from or are endorsed by Microsoft;\n•\tdistribute\ + \ Distributable Code to run on a platform other than the Windows platform;\n•\tinclude Distributable\ + \ Code in malicious, deceptive or unlawful programs; or\n•\tmodify or distribute the source\ + \ code of any Distributable Code so that any part of it becomes subject to an Excluded License.\ + \ An Excluded License is one that requires, as a condition of use, modification or distribution,\ + \ that\n•\tthe code be disclosed or distributed in source code form; or\n•\tothers have\ + \ the right to modify it.\n\n3.\tSCOPE OF LICENSE. The software is licensed, not sold. This\ + \ agreement only gives you some rights to use the software. Microsoft reserves all other\ + \ rights. Unless applicable law gives you more rights despite this limitation, you may use\ + \ the software only as expressly permitted in this agreement. In doing so, you must comply\ + \ with any technical limitations in the software that only allow you to use it in certain\ + \ ways. You may not\n•\twork around any technical limitations in the software;\n•\treverse\ + \ engineer, decompile or disassemble the software, except and only to the extent that applicable\ + \ law expressly permits, despite this limitation;\n•\tmake more copies of the software than\ + \ specified in this agreement or allowed by applicable law, despite this limitation;\n•\t\ + publish the software for others to copy;\n•\trent, lease or lend the software; or\n•\ttransfer\ + \ the software or this agreement to any third party. \n\n4.\tBACKUP COPY. You may make one\ + \ backup copy of the software. You may use it only to reinstall the software.\n\n5.\tDOCUMENTATION.\ + \ Any person that has valid access to your computer or internal network may copy and use\ + \ the documentation for your internal, reference purposes.\n\n6.\tEXPORT RESTRICTIONS. The\ + \ software is subject to United States export laws and regulations. You must comply with\ + \ all domestic and international export laws and regulations that apply to the software.\ + \ These laws include restrictions on destinations, end users and end use. For additional\ + \ information, see www.microsoft.com/exporting.\n\n7.\tSUPPORT SERVICES. Because this software\ + \ is \"as is,\" we may not provide support services for it.\n\n8.\tENTIRE AGREEMENT. This\ + \ agreement, and the terms for supplements, updates, Internet-based services and support\ + \ services that you use, are the entire agreement for the software and support services.\n\ + \n9.\tAPPLICABLE LAW.\na.\tUnited States. If you acquired the software in the United States,\ + \ Washington state law governs the interpretation of this agreement and applies to claims\ + \ for breach of it, regardless of conflict of laws principles. The laws of the state where\ + \ you live govern all other claims, including claims under state consumer protection laws,\ + \ unfair competition laws, and in tort.\nb.\tOutside the United States. If you acquired\ + \ the software in any other country, the laws of that country apply.\n\n10.\tLEGAL EFFECT.\ + \ This agreement describes certain legal rights. You may have other rights under the laws\ + \ of your country. You may also have rights with respect to the party from whom you acquired\ + \ the software. This agreement does not change your rights under the laws of your country\ + \ if the laws of your country do not permit it to do so.\n\n11.\tDISCLAIMER OF WARRANTY.\ + \ THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO\ + \ EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS\ + \ UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER\ + \ YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n12.\tLIMITATION ON AND EXCLUSION OF\ + \ REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES\ + \ UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST\ + \ PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\nThis limitation applies to\n•\tanything\ + \ related to the software, services, content (including code) on third party Internet sites,\ + \ or third party programs; and\n•\tclaims for breach of contract, breach of warranty, guarantee\ + \ or condition, strict liability, negligence, or other tort to the extent permitted by applicable\ + \ law.\nIt also applies even if Microsoft knew or should have known about the possibility\ + \ of the damages. The above limitation or exclusion may not apply to you because your country\ + \ may not allow the exclusion or limitation of incidental, consequential or other damages." json: ms-sql-server-compact-4.0.json - yml: ms-sql-server-compact-4.0.yml + yaml: ms-sql-server-compact-4.0.yml html: ms-sql-server-compact-4.0.html - text: ms-sql-server-compact-4.0.LICENSE + license: ms-sql-server-compact-4.0.LICENSE - license_key: ms-sql-server-data-tools + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-sql-server-data-tools other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + SQL Server Data Tools - License Terms + MICROSOFT SOFTWARE LICENSE TERMS + MICROSOFT SQL SERVER DATA TOOLS + + These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft + + * updates, + * supplements, + * Internet-based services, and + * support services + + for this software, unless other terms accompany those items. If so, those terms apply. + + BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. YOU MAY CHOOSE NOT TO ACCEPT THESE TERMS, IN WHICH CASE YOU MAY NOT USE THE SOFTWARE (IF YOU HAVE NOT ALREADY INSTALLED IT) OR WITHDRAW YOUR ACCEPTANCE ANY TIME BY UNINSTALLING THE SOFTWARE. + + If you comply with these license terms, you have the rights below. + + 1. INSTALLATION AND USE RIGHTS. + + a. Installation and Use. + + * You may install and use any number of copies of the software on your devices to design, develop and test your programs. + + b. Other Microsoft Programs. The software includes other Microsoft SQL Server technologies, Microsoft Visual Studio 2015 Shell (Isolated) Redistributable Package, Microsoft Visual Studio 2015 Shell (Integrated) Redistributable Package, Microsoft Visual Studio Tools for Applications 2015, .NET Framework, Visual C++ Redistributable for Visual Studio 2015, and Microsoft Report Viewer 2016 Runtime in conjunction with the software licensed here. These components are governed by separate agreements and their own product support policies, as described in the license terms found in the installation directory for that component or in the "Licenses" folder accompanying the software. + + 2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS. + + a. Distributable Code. + + i. Right to Use and Distribute. If you comply with the terms below: + + * You may copy and distribute the object code form of the Microsoft SQL Server Data-Tier Application Framework ("Distributable Code") in programs you develop; and + + * You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs. + + ii. Distribution Requirements. For any Distributable Code you distribute, you must + + * add significant primary functionality to it in your programs; + + * for any Distributable Code having a filename extension of .lib, distribute only the results of running such Distributable Code through a linker with your program; + + * distribute Distributable Code included in a setup program only as part of that setup program without modification; + + * require distributors and external end users to agree to the Microsoft license terms included as part of our software setup program; + + * display your valid copyright notice on your programs; and + + * indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your programs. + + iii. Distribution Restrictions. You may not + + * alter any copyright, trademark or patent notice in the Distributable Code; + + * use Microsoft’s trademarks in your programs’ names or in a way that suggests your programs come from or are endorsed by Microsoft; + + * distribute Distributable Code to run on a platform other than the Windows platform; + + * include Distributable Code in malicious, deceptive or unlawful programs; or + + * modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that + + * the code be disclosed or distributed in source code form; or + + * others have the right to modify it. + + 3. INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software. It may change or cancel them at any time. You may not use these devices in any way that could harm them or impair anyone else’s use of them. You may not use the services to try to gain unauthorized access to any service, data, account or network by any means. + + a. SQL Server Reporting Services Map Report Item. The software may include features that retrieve content such as maps, images and other data through the Bing Maps (or successor branded) application programming interface (the "Bing Maps APIs"). The purpose of these features is to create reports displaying data on top of maps, aerial and hybrid imagery. If these features are included, you may use them to create and view dynamic or static documents. This may be done only in conjunction with and through methods and means of access integrated in the software. You may not otherwise copy, store, archive, or create a database of the content available through the Bing Maps APIs. You may not use the following for any purpose even if they are available through the Bing Maps APIs: + + * Bing Maps APIs to provide sensor based guidance/routing, or + + * any Road Traffic Data or Bird’s Eye Imagery (or associated metadata). + + Your use of Bing Maps is also governed by the Bing Maps End User Terms of Use available at http://go.microsoft.com/?linkid=9710837 and the Bing Maps Privacy Statement available at http://go.microsoft.com/fwlink/?LinkID=248686. + + b. This software is designed to allow users of SQL Server Integration Services (SSIS) to (a) move data between on-premises data-stores and Microsoft online services and (b) trigger certain actions in Microsoft online services. In order to do this, the software uses Internet Protocols to (i) send data, including your own data as designated by you and data about the software’s configuration, to these services, and (ii) request data, including your own data as designated by you and data about the nature and configuration of your Microsoft online services, from these services. Once you configure the software to communicate with these services, you may not receive separate notices when the software connects to these services. + + 4. FEEDBACK. If you give feedback about the software to Microsoft, you give to Microsoft, without charge, the right to use, share and commercialize your feedback in any way and for any purpose. You also give to third parties, without charge, any patent rights needed for their products, technologies and services to use or interface with any specific parts of a Microsoft software or service that includes the feedback. You will not give feedback that is subject to a license that requires Microsoft to license its software or documentation to third parties because we include your feedback in them. These rights survive this agreement. + + 5. THIRD PARTY NOTICES. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file accompanying the software. Even if such components are governed by other agreements, the disclaimers and the limitations on and exclusions of damages below also apply. + + 6. .NET FRAMEWORK SOFTWARE. The software contains Microsoft .NET Framework software. This software is part of Windows. The license terms for Windows apply to your use of the .NET Framework software. + + 7. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not + + * disclose the results of any benchmark tests of the software, other than the Microsoft .NET Framework (see separate term above), to any third party without Microsoft’s prior written approval; + + * work around any technical limitations in the software; + + * reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; + + * make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation; + + * publish the software for others to copy; + + * rent, lease or lend the software; + + * transfer the software or this agreement to any third party; or + + * use the software for commercial software hosting services. + + 8. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting. + + 9. UPDATES. The software may install automatic updates, which cannot be turned off. By using the software, you agree to receive automatic updates without any additional notice, and permit Microsoft to download and install them for you. You agree to obtain these updates only from Microsoft or Microsoft authorized sources. If you do not want software updates, disconnect your device from the internet or uninstall the software. + + 10. SUPPORT SERVICES. Because this software is "as is," we may not provide support services for it. + + 11. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. + + 12. APPLICABLE LAW. + + a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. + + b. Outside the United States. If you acquired the software in any other country, the laws of that country apply. + + 13. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so. + + 14. DISCLAIMER OF WARRANTY. The software is licensed "as-is." You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights or statutory guarantees under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. + + FOR AUSTRALIA – You have statutory guarantees under the Australian Consumer Law and nothing in these terms is intended to affect those rights. + + 15. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages. + + This limitation applies to + + * anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and + + * claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + + It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. + + Please note: As this software is distributed in Quebec, Canada, these license terms are provided below in French. + + Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français. + + EXCLUSIONS DE GARANTIE. Le logiciel est concédé sous licence « en l’état ». Vous assumez tous les risques liés à son utilisation. Microsoft n’accorde aucune garantie ou condition expresse. Vous pouvez bénéficier de droits des consommateurs supplémentaires dans le cadre du droit local, que ce contrat ne peut modifier. Lorsque cela est autorisé par le droit local, Microsoft exclut les garanties implicites de qualité, d’adéquation à un usage particulier et d’absence de contrefaçon. + + LIMITATION ET EXCLUSION DE RECOURS ET DE DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs limitée uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices. + + Cette limitation concerne : + + toute affaire liée au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers et + + les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur. + + Elle s’applique également même si Microsoft connaissait l'éventualité d'un tel dommage. La limitation ou exclusion ci-dessus peut également ne pas vous être applicable, car votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit. + + EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. json: ms-sql-server-data-tools.json - yml: ms-sql-server-data-tools.yml + yaml: ms-sql-server-data-tools.yml html: ms-sql-server-data-tools.html - text: ms-sql-server-data-tools.LICENSE + license: ms-sql-server-data-tools.LICENSE - license_key: ms-sspl + category: Permissive spdx_license_key: LicenseRef-scancode-ms-sspl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Microsoft Shared Source Permissive License (SS-PL) \nPublished: October 18, 2005 \n\ + \nThis license governs use of the accompanying software. If you use the software, you accept\ + \ this license. If you do not accept the license, do not use the software. \n\n1. Definitions\ + \ \n\nThe terms \"reproduce,\" \"reproduction\" and \"distribution\" have the same meaning\ + \ here as under U.S. copyright law. \n\n\"You\" means the licensee of the software. \n\n\ + \"Licensed patents\" means any Licensor patent claims which read directly on the software\ + \ as distributed by Licensor under this license. \n\n2. Grant of Rights \n\n(A) Copyright\ + \ Grant- Subject to the terms of this license, including the license conditions and limitations\ + \ in section 3, the Licensor grants you a non-exclusive, worldwide, royalty-free copyright\ + \ license to reproduce the software, prepare derivative works of the software and distribute\ + \ the software or any derivative works that you create. \n\n(B) Patent Grant- Subject to\ + \ the terms of this license, including the license conditions and limitations in section\ + \ 3, the Licensor grants you a non-exclusive, worldwide, royalty-free patent license under\ + \ licensed patents to make, have made, use, practice, sell, and offer for sale, and/or otherwise\ + \ dispose of the software or derivative works of the software. \n\n3. Conditions and Limitations\ + \ \n\n(A) No Trademark License- This license does not grant you any rights to use Licensor's\ + \ name, logo, or trademarks. \n\n(B) If you begin patent litigation against the Licensor\ + \ over patents that you think may apply to the software (including a cross-claim or counterclaim\ + \ in a lawsuit), your license to the software ends automatically. \n\n(C) If you distribute\ + \ copies of the software or derivative works, you must retain all copyright, patent, trademark,\ + \ and attribution notices that are present in the software. \n\n(D) If you distribute the\ + \ software or derivative works in source code form you may do so only under this license\ + \ (i.e., you must include a complete copy of this license with your distribution), and if\ + \ you distribute the software or derivative works in compiled or object code form you may\ + \ only do so under a license that complies with this license. \n\n(E) The software is licensed\ + \ \"as-is.\" You bear the risk of using it. The Licensor gives no express warranties, guarantees\ + \ or conditions. You may have additional consumer rights under your local laws which this\ + \ license cannot change. To the extent permitted under your local laws, the Licensor excludes\ + \ the implied warranties of merchantability, fitness for a particular purpose and non-infringement." json: ms-sspl.json - yml: ms-sspl.yml + yaml: ms-sspl.yml html: ms-sspl.html - text: ms-sspl.LICENSE + license: ms-sspl.LICENSE - license_key: ms-sysinternals-sla + category: Commercial spdx_license_key: LicenseRef-scancode-ms-sysinternals-sla other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Sysinternals Software License Terms\n\n 09/27/2009\n 5 minutes to read\n Contributors\n\ + \ markruss Kent Sharkey \n\nThese license terms are an agreement between Sysinternals\ + \ (a wholly owned subsidiary of Microsoft Corporation) and you. Please read them. They apply\ + \ to the software you are downloading from technet.microsoft.com/sysinternals, which includes\ + \ the media on which you received it, if any. The terms also apply to any Sysinternals\n\ + \n updates,\n supplements,\n Internet-based services,\n and support services\n\ + \nfor this software, unless other terms accompany those items. If so, those terms apply.\n\ + \nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE\ + \ SOFTWARE.\n\nIf you comply with these license terms, you have the rights below.\nInstallation\ + \ and User Rights\n\nYou may install and use any number of copies of the software on your\ + \ devices.\n\nScope of License\n\nThe software is licensed, not sold. This agreement only\ + \ gives you some rights to use the software. Sysinternals reserves all other rights. Unless\ + \ applicable law gives you more rights despite this limitation, you may use the software\ + \ only as expressly permitted in this agreement. In doing so, you must comply with any technical\ + \ limitations in the software that only allow you to use it in certain ways. You may not\n\ + \n work around any technical limitations in the software;\n reverse engineer, decompile\ + \ or disassemble the software, except and only to the extent that applicable law expressly\ + \ permits, despite this limitation;\n make more copies of the software than specified\ + \ in this agreement or allowed by applicable law, despite this limitation;\n publish\ + \ the software for others to copy;\n rent, lease or lend the software;\n transfer\ + \ the software or this agreement to any third party; or\n use the software for commercial\ + \ software hosting services.\n\nSensitive Information\n\nPlease be aware that, similar to\ + \ other debug tools that capture “process state” information, files saved by Sysinternals\ + \ tools may include personally identifiable or other sensitive information (such as usernames,\ + \ passwords, paths to files accessed, and paths to registry accessed). By using this software,\ + \ you acknowledge that you are aware of this and take sole responsibility for any personally\ + \ identifiable or other sensitive information provided to Microsoft or any other party through\ + \ your use of the software.\n\nDocumentation\n\nAny person that has valid access to your\ + \ computer or internal network may copy and use the documentation for your internal, reference\ + \ purposes.\n\nExport Restrictions\n\nThe software is subject to United States export laws\ + \ and regulations. You must comply with all domestic and international export laws and regulations\ + \ that apply to the software. These laws include restrictions on destinations, end users\ + \ and end use. For additional information, see www.microsoft.com/exporting .\n\nSupport\ + \ Services\n\nBecause this software is \"as is,\" we may not provide support services for\ + \ it.\n\nEntire Agreement\n\nThis agreement, and the terms for supplements, updates, Internet-based\ + \ services and support services that you use, are the entire agreement for the software\ + \ and support services.\n\nApplicable Law\n\nUnited States . If you acquired the software\ + \ in the United States , Washington state law governs the interpretation of this agreement\ + \ and applies to claims for breach of it, regardless of conflict of laws principles. The\ + \ laws of the state where you live govern all other claims, including claims under state\ + \ consumer protection laws, unfair competition laws, and in tort.\n\nOutside the United\ + \ States . If you acquired the software in any other country, the laws of that country apply.\n\ + Legal Effect\n\nThis agreement describes certain legal rights. You may have other rights\ + \ under the laws of your country. You may also have rights with respect to the party from\ + \ whom you acquired the software. This agreement does not change your rights under the laws\ + \ of your country if the laws of your country do not permit it to do so.\n\nDisclaimer of\ + \ Warranty\n\nThe software is licensed \"as-is.\" You bear the risk of using it. Sysinternals\ + \ gives no express warranties, guarantees or conditions. You may have additional consumer\ + \ rights under your local laws which this agreement cannot change. To the extent permitted\ + \ under your local laws, sysinternals excludes the implied warranties of merchantability,\ + \ fitness for a particular purpose and non-infringement.\n\nLimitation on and Exclusion\ + \ of Remedies and Damages\n\nYou can recover from sysinternals and its suppliers only direct\ + \ damages up to U.S. $5.00. You cannot recover any other damages, including consequential,\ + \ lost profits, special, indirect or incidental damages.\n\nThis limitation applies to\n\ + \n anything related to the software, services, content (including code) on third party\ + \ Internet sites, or third party programs; and\n claims for breach of contract, breach\ + \ of warranty, guarantee or condition, strict liability, negligence, or other tort to the\ + \ extent permitted by applicable law.\n\nIt also applies even if Sysinternals knew or should\ + \ have known about the possibility of the damages. The above limitation or exclusion may\ + \ not apply to you because your country may not allow the exclusion or limitation of incidental,\ + \ consequential or other damages.\n\nPlease note: As this software is distributed in Quebec\ + \ , Canada , some of the clauses in this agreement are provided below in French.\n\nRemarque\ + \ : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat\ + \ sont fournies ci-dessous en français.\n\nEXONÉRATION DE GARANTIE. Le logiciel visé par\ + \ une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule\ + \ risque et péril. Sysinternals n'accorde aucune autre garantie expresse. Vous pouvez bénéficier\ + \ de droits additionnels en vertu du droit local sur la protection dues consommateurs, que\ + \ ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties\ + \ implicites de qualité marchande, d'adéquation à un usage particulier et d'absence de contrefaçon\ + \ sont exclues.\n\nLIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR\ + \ LES DOMMAGES. Vous pouvez obtenir de Sysinternals et de ses fournisseurs une indemnisation\ + \ en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre\ + \ à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects\ + \ ou accessoires et pertes de bénéfices.\n\nCette limitation concerne :\n\n tout ce qui\ + \ est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des\ + \ sites Internet tiers ou dans des programmes tiers ; et\n les réclamations au titre\ + \ de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence\ + \ ou d'une autre faute dans la limite autorisée par la loi en vigueur.\n\nElle s'applique\ + \ également, même si Sysinternals connaissait ou devrait connaître l'éventualité d'un tel\ + \ dommage. Si votre pays n'autorise pas l'exclusion ou la limitation de responsabilité pour\ + \ les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la\ + \ limitation ou l'exclusion ci-dessus ne s'appliquera pas à votre égard.\n\nEFFET JURIDIQUE.\ + \ Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d'autres droits\ + \ prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous\ + \ confèrent les lois de votre pays si celles-ci ne le permettent pas." json: ms-sysinternals-sla.json - yml: ms-sysinternals-sla.yml + yaml: ms-sysinternals-sla.yml html: ms-sysinternals-sla.html - text: ms-sysinternals-sla.LICENSE + license: ms-sysinternals-sla.LICENSE - license_key: ms-testplatform-17.0.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-testplatform-17.0.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + MICROSOFT SOFTWARE LICENSE TERMS + + MICROSOFT VISUAL STUDIO TEST PLATFORM + + These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have different terms. + + IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. + + 1. INSTALLATION AND USE RIGHTS. + + You may install and use any number of copies of the software. + + 2. TERMS FOR SPECIFIC COMPONENTS. + + a. Third Party Components. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software. Even if such components are governed by other agreements, the disclaimers and the limitations on and exclusions of damages below also apply. + + 3. DATA. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the product documentation. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications and you should provide a copy of Microsoft’s privacy statement to your users. The Microsoft privacy statement is located here https://go.microsoft.com/fwlink/?LinkId=521839. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices. + + 4. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not + + · work around any technical limitations in the software; + + · reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software except, and only to the extent required by third party licensing terms governing the use of certain open source components that may be included in the software; + + · remove, minimize, block or modify any notices of Microsoft or its suppliers in the software; + + · use the software in any way that is against the law; or + + · share, publish, rent or lease the software, or provide the software as a stand-alone hosted as solution for others to use, or transfer the software or this agreement to any third party. + + 5. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting. + + 6. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. + + 7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. + + 8. APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. + + 9. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you: + + a. Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights. + + b. Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. + + c. Germany and Austria. + + (i) Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software. json: ms-testplatform-17.0.0.json - yml: ms-testplatform-17.0.0.yml + yaml: ms-testplatform-17.0.0.yml html: ms-testplatform-17.0.0.html - text: ms-testplatform-17.0.0.LICENSE + license: ms-testplatform-17.0.0.LICENSE - license_key: ms-ttf-eula + category: Commercial spdx_license_key: LicenseRef-scancode-ms-ttf-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Microsoft TrueType Fonts \nEND-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE \n---------------------------------------------------\n\ + IMPORTANT - READ CAREFULLY: This Microsoft End-User License Agreement (\"EULA\") is a legal\ + \ agreement between you (either an individual or a single entity) and Microsoft Corporation\ + \ for the Microsoft software accompanying this EULA, which includes computer software and\ + \ may include associated media, printed materials, and \"on-line\" or electronic documentation\ + \ (\"SOFTWARE PRODUCT\" or \"SOFTWARE\"). By exercising your rights to make and use copies\ + \ of the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. If you do not\ + \ agree to the terms of this EULA, you may not use the SOFTWARE PRODUCT.\n\nSOFTWARE PRODUCT\ + \ LICENSE\nThe SOFTWARE PRODUCT is protected by copyright laws and international copyright\ + \ treaties, as well as other intellectual property laws and treaties. The SOFTWARE PRODUCT\ + \ is licensed, not sold.\n\n1. GRANT OF LICENSE. This EULA grants you the following rights:\n\ + *\tInstallation and Use. You may install and use an unlimited number of copies of the SOFTWARE\ + \ PRODUCT.\n*\tReproduction and Distribution. You may reproduce and distribute an unlimited\ + \ number of copies of the SOFTWARE PRODUCT; provided that each copy shall be a true and\ + \ complete copy, including all copyright and trademark notices, and shall be accompanied\ + \ by a copy of this EULA. Copies of the SOFTWARE PRODUCT may not be distributed for profit\ + \ either on a standalone basis or included as part of your own product.\n\n2.\tDESCRIPTION\ + \ OF OTHER RIGHTS AND LIMITATIONS.\n*\tLimitations on Reverse Engineering, Decompilation,\ + \ and Disassembly. You may not reverse engineer, decompile, or disassemble the SOFTWARE\ + \ PRODUCT, except and only to the extent that such activity is expressly permitted by applicable\ + \ law notwithstanding this limitation.\n*\tRestrictions on Alteration. You may not rename,\ + \ edit or create any derivative works from the SOFTWARE PRODUCT, other than subsetting when\ + \ embedding them in documents.\n*\tSoftware Transfer. You may permanently transfer all of\ + \ your rights under this EULA, provided the recipient agrees to the terms of this EULA.\n\ + *\tTermination. Without prejudice to any other rights, Microsoft may terminate this EULA\ + \ if you fail to comply with the terms and conditions of this EULA. In such event, you must\ + \ destroy all copies of the SOFTWARE PRODUCT and all of its component parts.\n\n3. COPYRIGHT.\ + \ All title and copyrights in and to the SOFTWARE PRODUCT (including but not limited to\ + \ any images, text, and \"applets\" incorporated into the SOFTWARE PRODUCT), the accompanying\ + \ printed materials, and any copies of the SOFTWARE PRODUCT are owned by Microsoft or its\ + \ suppliers. The SOFTWARE PRODUCT is protected by copyright laws and international treaty\ + \ provisions. Therefore, you must treat the SOFTWARE PRODUCT like any other copyrighted\ + \ material.\n\n4.\tU.S. GOVERNMENT RESTRICTED RIGHTS. The SOFTWARE PRODUCT and documentation\ + \ are provided with RESTRICTED RIGHTS. Use, duplication, or disclosure by the Government\ + \ is subject to restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in Technical\ + \ Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs (c)(1) and (2)\ + \ of the Commercial Computer Software-Restricted Rights at 48 CFR 52.227-19, as applicable.\ + \ Manufacturer is Microsoft Corporation/One Microsoft Way/Redmond, WA 98052-6399.\n\nLIMITED\ + \ WARRANTY\nNO WARRANTIES. Microsoft expressly disclaims any warranty for the SOFTWARE PRODUCT.\ + \ The SOFTWARE PRODUCT and any related documentation is provided \"as is\" without warranty\ + \ of any kind, either express or implied, including, without limitation, the implied warranties\ + \ or merchantability, fitness for a particular purpose, or noninfringement. The entire risk\ + \ arising out of use or performance of the SOFTWARE PRODUCT remains with you.\nNO LIABILITY\ + \ FOR CONSEQUENTIAL DAMAGES. In no event shall Microsoft or its suppliers be liable for\ + \ any damages whatsoever (including, without limitation, damages for loss of business profits,\ + \ business interruption, loss of business information, or any other pecuniary loss) arising\ + \ out of the use of or inability to use this Microsoft product, even if Microsoft has been\ + \ advised of the possibility of such damages. Because some states/jurisdictions do not allow\ + \ the exclusion or limitation of liability for consequential or incidental damages, the\ + \ above limitation may not apply to you.\n\nMISCELLANEOUS If you acquired this product in\ + \ the United States, this EULA is governed by the laws of the State of Washington. If this\ + \ product was acquired outside the United States, then local laws may apply. Should you\ + \ have any questions concerning this EULA, or if you desire to contact Microsoft for any\ + \ reason, please contact the Microsoft subsidiary serving your country, or write: Microsoft\ + \ Sales Information Center/One Microsoft Way/Redmond, WA 98052-6399." json: ms-ttf-eula.json - yml: ms-ttf-eula.yml + yaml: ms-ttf-eula.yml html: ms-ttf-eula.html - text: ms-ttf-eula.LICENSE + license: ms-ttf-eula.LICENSE - license_key: ms-typescript-msbuild-4.1.4 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-typescript-msbuild-4.1.4 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT TYPESCRIPT SOFTWARE DEVELOPMENT KIT\n\n\ + These license terms are an agreement between Microsoft Corporation (or based on where you\ + \ live, one \nof its affiliates) and you. They apply to the software named above. The terms\ + \ also apply to any Microsoft \nservices or updates for the software, except to the extent\ + \ those have additional terms.\n\nIF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS\ + \ BELOW.\n\n1.\tINSTALLATION AND USE RIGHTS. You may install and use any number of copies\ + \ of the software.\n\n2.\tTERMS FOR SPECIFIC COMPONENTS. \n\na.\tUtilities. The software\ + \ may contain some items on the Utilities List at \nhttps://go.microsoft.com/fwlink/?linkid=823097.\ + \ You may copy and install these Utilities, if \nincluded with the software, onto devices\ + \ to debug and deploy your applications and databases \nyou developed with the software.\ + \ Please note that Utilities are designed for temporary use, that \nMicrosoft may not be\ + \ able to patch or update Utilities separately from the rest of the software, \nand that\ + \ some Utilities by their nature may make it possible for others to access devices on which\ + \ \nthe Utilities are installed. As a result, you should delete all Utilities you have installed\ + \ after you \nfinish debugging or deploying your applications and databases. Microsoft\ + \ is not responsible for \nany third party use or access of Utilities you install on any\ + \ device.\n\nb.\tMicrosoft Platforms. The software may include components from Microsoft\ + \ Windows; \nMicrosoft Windows Server; Microsoft SQL Server; Microsoft Exchange; Microsoft\ + \ Office; and \nMicrosoft SharePoint. These components are governed by separate agreements\ + \ and their own \nproduct support policies, as described in the Microsoft \"Licenses\" folder\ + \ accompanying the \nsoftware, except that, if license terms for those components are also\ + \ included in the associated \ninstallation directory, those license terms control.\n\n\ + c.\tThird Party Components. The software may include third party components with separate\ + \ \nlegal notices or governed by other agreements, as may be described in the ThirdPartyNotices\ + \ \nfile(s) accompanying the software. \n\n3.\tDATA. \n\na.\tData Collection. The software\ + \ may collect information about you and your use of the software, \nand send that to Microsoft.\ + \ Microsoft may use this information to provide services and improve \nour products and\ + \ services. You may opt-out of many of these scenarios, but not all, as described \nin\ + \ the product documentation. There are also some features in the software that may enable\ + \ \nyou and Microsoft to collect data from users of your applications. If you use these\ + \ features, you \nmust comply with applicable law, including providing appropriate notices\ + \ to users of your \napplications together with a copy of Microsoft's privacy statement.\ + \ Our privacy statement is \nlocated at https://go.microsoft.com/fwlink/?LinkID=824704.\ + \ You can learn more about data \ncollection and use in the help documentation and our privacy\ + \ statement. Your use of the software \noperates as your consent to these practices.\n\n\ + b.\tProcessing of Personal Data. To the extent Microsoft is a processor or subprocessor\ + \ of \npersonal data in connection with the software, Microsoft makes the commitments in\ + \ the \nEuropean Union General Data Protection Regulation Terms of the Online Services Terms\ + \ to all \ncustomers effective May 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr.\ + \ \n\n4.\tSCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives\ + \ you some rights \nto use the software. Microsoft reserves all other rights. Unless applicable\ + \ law gives you more rights \ndespite this limitation, you may use the software only as\ + \ expressly permitted in this agreement. In \ndoing so, you must comply with any technical\ + \ limitations in the software that only allow you to use it \nin certain ways. For more\ + \ information, see www.microsoft.com/licensing/userights. You may not\n*\twork around any\ + \ technical limitations in the software;\n*\treverse engineer, decompile or disassemble\ + \ the software, or attempt to do so, except and only to \nthe extent required by third party\ + \ licensing terms governing use of certain open-source \ncomponents that may be included\ + \ with the software;\n*\tremove, minimize, block or modify any notices of Microsoft or its\ + \ suppliers in the software; \n*\tuse the software in any way that is against the law; or\n\ + *\tshare, publish, rent, or lease the software, or provide the software as a stand-alone\ + \ offering for \nothers to use.\n\n5.\tEXPORT RESTRICTIONS. You must comply with all domestic\ + \ and international export laws and \nregulations that apply to the software, which include\ + \ restrictions on destinations, end users and end \nuse. For further information on export\ + \ restrictions, visit (aka.ms/exporting).\n\n6.\tSUPPORT SERVICES. Because this software\ + \ is \"as is,\" we may not provide support services for it.\n\n7.\tENTIRE AGREEMENT. This\ + \ agreement, and the terms for supplements, updates, Internet-based \nservices and support\ + \ services that you use, are the entire agreement for the software and support \nservices.\n\ + \n8.\tAPPLICABLE LAW. If you acquired the software in the United States, Washington law\ + \ applies to \ninterpretation of and claims for breach of this agreement, and the laws of\ + \ the state where you live \napply to all other claims. If you acquired the software in\ + \ any other country, its laws apply.\n\n9.\tCONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement\ + \ describes certain legal rights. \nYou may have other rights, including consumer rights,\ + \ under the laws of your state or country. \nSeparate and apart from your relationship with\ + \ Microsoft, you may also have rights with respect to \nthe party from which you acquired\ + \ the software. This agreement does not change those other rights \nif the laws of your\ + \ state or country do not permit it to do so. For example, if you acquired the \nsoftware\ + \ in one of the below regions, or mandatory country law applies, then the following provisions\ + \ \napply to you:\n\na.\tAustralia. You have statutory guarantees under the Australian Consumer\ + \ Law and nothing in \nthis agreement is intended to affect those rights.\n\nb.\tCanada.\ + \ If you acquired this software in Canada, you may stop receiving updates by turning off\ + \ \nthe automatic update feature, disconnecting your device from the Internet (if and when\ + \ you re-\nconnect to the Internet, however, the software will resume checking for and installing\ + \ updates), \nor uninstalling the software. The product documentation, if any, may also\ + \ specify how to turn off \nupdates for your specific device or software.\n\nc.\tGermany\ + \ and Austria.\n(i)\tWarranty. The properly licensed software will perform substantially\ + \ as described in any \nMicrosoft materials that accompany the software. However, Microsoft\ + \ gives no contractual \nguarantee in relation to the licensed software.\n(ii)\tLimitation\ + \ of Liability. In case of intentional conduct, gross negligence, claims based \non the\ + \ Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft\ + \ is \nliable according to the statutory law.\n\nSubject to the foregoing clause (ii), Microsoft\ + \ will only be liable for slight negligence if Microsoft is \nin breach of such material\ + \ contractual obligations, the fulfillment of which facilitate the due \nperformance of\ + \ this agreement, the breach of which would endanger the purpose of this \nagreement and\ + \ the compliance with which a party may constantly trust in (so-called \"cardinal \nobligations\"\ + ). In other cases of slight negligence, Microsoft will not be liable for slight negligence.\n\ + \n10.\tDISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK \n\ + OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR \nCONDITIONS. TO THE EXTENT\ + \ PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT \nEXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY,\ + \ FITNESS FOR A \nPARTICULAR PURPOSE AND NON-INFRINGEMENT. \n\n11.\tLIMITATION ON AND EXCLUSION\ + \ OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT \nAND ITS SUPPLIERS ONLY DIRECT DAMAGES UP\ + \ TO U.S. $5.00. YOU CANNOT RECOVER \nANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS,\ + \ SPECIAL, \nINDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to (a) anything\ + \ related to the software, services, content (including code) on \nthird party Internet\ + \ sites, or third party applications; and (b) claims for breach of contract, breach of \n\ + warranty, guarantee or condition, strict liability, negligence, or other tort to the extent\ + \ permitted by \napplicable law.\n\nIt also applies even if Microsoft knew or should have\ + \ known about the possibility of the damages. \nThe above limitation or exclusion may not\ + \ apply to you because your country may not allow the \nexclusion or limitation of incidental,\ + \ consequential or other damages.\n\nPlease note: As this software is distributed in Quebec,\ + \ Canada, some of the clauses in this \nagreement are provided below in French.\nRemarque\ + \ : Ce logiciel �tant distribu� au Qu�bec, Canada, certaines des clauses dans ce \ncontrat\ + \ sont fournies ci-dessous en fran�ais.\n\nEXON�RATION DE GARANTIE. Le logiciel vis� par\ + \ une licence est offert \" tel quel \". Toute utilisation \nde ce logiciel est � votre\ + \ seule risque et p�ril. Microsoft n'accorde aucune autre garantie expresse. Vous \npouvez\ + \ b�n�ficier de droits additionnels en vertu du droit local sur la protection des consommateurs,\ + \ que \nce contrat ne peut modifier. La ou elles sont permises par le droit locale, les\ + \ garanties implicites de \nqualit� marchande, d'ad�quation � un usage particulier et d'absence\ + \ de contrefa�on sont exclues.\n\nLIMITATION DES DOMMAGES-INT�R�TS ET EXCLUSION DE RESPONSABILIT�\ + \ POUR LES \nDOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation\ + \ en cas de \ndommages directs uniquement � hauteur de 5,00 $ US. Vous ne pouvez pr�tendre\ + \ � aucune \nindemnisation pour les autres dommages, y compris les dommages sp�ciaux, indirects\ + \ ou accessoires et \npertes de b�n�fices.\n\nCette limitation concerne:\n* \ttout ce\ + \ qui est reli� au logiciel, aux services ou au contenu (y compris le code) figurant sur\ + \ des sites \nInternet tiers ou dans des programmes tiers ; et\n* les r�clamations au\ + \ titre de violation de contrat ou de garantie, ou au titre de responsabilit� stricte, \n\ + de n�gligence ou d'une autre faute dans la limite autoris�e par la loi en vigueur.\nElle\ + \ s'applique �galement, m�me si Microsoft connaissait ou devrait conna�tre l'�ventualit�\ + \ d'un tel \ndommage. Si votre pays n'autorise pas l'exclusion ou la limitation de responsabilit�\ + \ pour les dommages \nindirects, accessoires ou de quelque nature que ce soit, il se peut\ + \ que la limitation ou l'exclusion ci-dessus \nne s'appliquera pas � votre �gard.\n\nEFFET\ + \ JURIDIQUE. Le pr�sent contrat d�crit certains droits juridiques. Vous pourriez avoir d'autres\ + \ \ndroits pr�vus par les lois de votre pays. Le pr�sent contrat ne modifie pas les droits\ + \ que vous conf�rent \nles lois de votre pays si celles-ci ne le permettent pas.\n\n2019AUG09_RTM_EXT\n\ + (Typescript SDK)" json: ms-typescript-msbuild-4.1.4.json - yml: ms-typescript-msbuild-4.1.4.yml + yaml: ms-typescript-msbuild-4.1.4.yml html: ms-typescript-msbuild-4.1.4.html - text: ms-typescript-msbuild-4.1.4.LICENSE + license: ms-typescript-msbuild-4.1.4.LICENSE - license_key: ms-visual-2008-runtime + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-visual-2008-runtime other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT VISUAL C++ 2008 RUNTIME LIBRARIES (X86,\ + \ IA64 AND X64)\n\nThese license terms are an agreement between Microsoft Corporation (or\ + \ based on where you live, one of its affiliates) and you. Please read them. They apply\ + \ to the software named above, which includes the media on which you received it, if any.\ + \ The terms also apply to any Microsoft\n\n¥ updates,\n\n¥ supplements,\n\n¥ Internet-based\ + \ services, and \n\n¥ support services\n\nfor this software, unless other terms accompany\ + \ those items. If so, those terms apply.\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS.\ + \ IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\n\nIf you comply with these license\ + \ terms, you have the rights below.\n\n1. INSTALLATION AND USE RIGHTS. You may install\ + \ and use any number of copies of the software on your devices.\n\n2. SCOPE OF LICENSE.\ + \ The software is licensed, not sold. This agreement only gives you some rights to use\ + \ the software. Microsoft reserves all other rights. Unless applicable law gives you more\ + \ rights despite this limitation, you may use the software only as expressly permitted in\ + \ this agreement. In doing so, you must comply with any technical limitations in the software\ + \ that only allow you to use it in certain ways. You may not\n\n¥ disclose the results\ + \ of any benchmark tests of the software to any third party without Microsoft\x92s prior\ + \ written approval;\n\n¥ work around any technical limitations in the software;\n\n¥ reverse\ + \ engineer, decompile or disassemble the software, except and only to the extent that applicable\ + \ law expressly permits, despite this limitation;\n\n¥ make more copies of the software\ + \ than specified in this agreement or allowed by applicable law, despite this limitation;\n\ + \n¥ publish the software for others to copy;\n\n¥ rent, lease or lend the software;\n\n\ + ¥ transfer the software or this agreement to any third party; or\n\n¥ use the software for\ + \ commercial software hosting services.\n\n3. BACKUP COPY. You may make one backup copy\ + \ of the software. You may use it only to reinstall the software.\n\n4. DOCUMENTATION.\ + \ Any person that has valid access to your computer or internal network may copy and use\ + \ the documentation for your internal, reference purposes.\n\n5. EXPORT RESTRICTIONS. The\ + \ software is subject to United States export laws and regulations. You must comply with\ + \ all domestic and international export laws and regulations that apply to the software.\ + \ These laws include restrictions on destinations, end users and end use. For additional\ + \ information, see www.microsoft.com/exporting.\n\n6. SUPPORT SERVICES. Because this software\ + \ is as is, we may not provide support services for it.\n\n7. ENTIRE AGREEMENT. This\ + \ agreement, and the terms for supplements, updates, Internet-based services and support\ + \ services that you use, are the entire agreement for the software and support services.\n\ + \n8. APPLICABLE LAW.\n\na. United States. If you acquired the software in the United States,\ + \ Washington state law governs the interpretation of this agreement and applies to claims\ + \ for breach of it, regardless of conflict of laws principles. The laws of the state where\ + \ you live govern all other claims, including claims under state consumer protection laws,\ + \ unfair competition laws, and in tort.\n\nb. Outside the United States. If you acquired\ + \ the software in any other country, the laws of that country apply.\n\n9. LEGAL EFFECT.\ + \ This agreement describes certain legal rights. You may have other rights under the laws\ + \ of your country. You may also have rights with respect to the party from whom you acquired\ + \ the software. This agreement does not change your rights under the laws of your country\ + \ if the laws of your country do not permit it to do so.\n\n10. DISCLAIMER OF WARRANTY.\ + \ THE SOFTWARE IS LICENSED AS-IS. YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES\ + \ NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS\ + \ UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER\ + \ YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n11. LIMITATION ON AND EXCLUSION OF REMEDIES\ + \ AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP\ + \ TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS,\ + \ SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\nThis limitation applies to\n\n¥ anything related\ + \ to the software, services, content (including code) on third party Internet sites, or\ + \ third party programs; and\n\n¥ claims for breach of contract, breach of warranty, guarantee\ + \ or condition, strict liability, negligence, or other tort to the extent permitted by applicable\ + \ law.\nIt also applies even if Microsoft knew or should have known about the possibility\ + \ of the damages. The above limitation or exclusion may not apply to you because your country\ + \ may not allow the exclusion or limitation of incidental, consequential or other damages." json: ms-visual-2008-runtime.json - yml: ms-visual-2008-runtime.yml + yaml: ms-visual-2008-runtime.yml html: ms-visual-2008-runtime.html - text: ms-visual-2008-runtime.LICENSE + license: ms-visual-2008-runtime.LICENSE - license_key: ms-visual-2010-runtime + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-visual-2010-runtime other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT VISUAL C++ 2010 RUNTIME LIBRARIES\n\nThese\ + \ license terms are an agreement between Microsoft Corporation (or based on where you live,\ + \ one of its affiliates) and you. Please read them. They apply to the software named above,\ + \ which includes the media on which you received it, if any. The terms also apply to any\ + \ Microsoft\n•\tupdates,\n•\tsupplements,\n•\tInternet-based services, and \n•\tsupport\ + \ services\nfor this software, unless other terms accompany those items. If so, those terms\ + \ apply.\n\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO\ + \ NOT USE THE SOFTWARE.\nIf you comply with these license terms, you have the rights below.\n\ + \n1.\tINSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software\ + \ on your devices.\n\n2.\tScope of License. The software is licensed, not sold. This agreement\ + \ only gives you some rights to use the software. Microsoft reserves all other rights. Unless\ + \ applicable law gives you more rights despite this limitation, you may use the software\ + \ only as expressly permitted in this agreement. In doing so, you must comply with any technical\ + \ limitations in the software that only allow you to use it in certain ways. You may not\n\ + •\tdisclose the results of any benchmark tests of the software to any third party without\ + \ Microsoft’s prior written approval;\n•\twork around any technical limitations in the software;\n\ + •\treverse engineer, decompile or disassemble the software, except and only to the extent\ + \ that applicable law expressly permits, despite this limitation;\n•\tmake more copies of\ + \ the software than specified in this agreement or allowed by applicable law, despite this\ + \ limitation;\n•\tpublish the software for others to copy;\n•\trent, lease or lend the software;\n\ + •\ttransfer the software or this agreement to any third party; or\n•\tuse the software for\ + \ commercial software hosting services.\n\n3.\tBACKUP COPY. You may make one backup copy\ + \ of the software. You may use it only to reinstall the software.\n\n4.\tDOCUMENTATION.\ + \ Any person that has valid access to your computer or internal network may copy and use\ + \ the documentation for your internal, reference purposes.\n\n5.\tExport Restrictions. The\ + \ software is subject to United States export laws and regulations. You must comply with\ + \ all domestic and international export laws and regulations that apply to the software.\ + \ These laws include restrictions on destinations, end users and end use. For additional\ + \ information, see www.microsoft.com/exporting.\n\n6.\tSUPPORT SERVICES. Because this software\ + \ is \"as is,\" we may not provide support services for it.\n\n7.\tEntire Agreement. This\ + \ agreement, and the terms for supplements, updates, Internet-based services and support\ + \ services that you use, are the entire agreement for the software and support services.\n\ + \n8.\tApplicable Law.\na.\tUnited States. If you acquired the software in the United States,\ + \ Washington state law governs the interpretation of this agreement and applies to claims\ + \ for breach of it, regardless of conflict of laws principles. The laws of the state where\ + \ you live govern all other claims, including claims under state consumer protection laws,\ + \ unfair competition laws, and in tort.\nb.\tOutside the United States. If you acquired\ + \ the software in any other country, the laws of that country apply.\n\n9.\tLegal Effect.\ + \ This agreement describes certain legal rights. You may have other rights under the laws\ + \ of your country. You may also have rights with respect to the party from whom you acquired\ + \ the software. This agreement does not change your rights under the laws of your country\ + \ if the laws of your country do not permit it to do so.\n\n10.\tDisclaimer of Warranty.\ + \ The software is licensed \"as-is.\" You bear the risk of using it. Microsoft gives no\ + \ express warranties, guarantees or conditions. You may have additional consumer rights\ + \ under your local laws which this agreement cannot change. To the extent permitted under\ + \ your local laws, Microsoft excludes the implied warranties of merchantability, fitness\ + \ for a particular purpose and non-infringement.\n\n11.\tLimitation on and Exclusion of\ + \ Remedies and Damages. You can recover from Microsoft and its suppliers only direct damages\ + \ up to U.S. $5.00. You cannot recover any other damages, including consequential, lost\ + \ profits, special, indirect or incidental damages.\nThis limitation applies to\n•\tanything\ + \ related to the software, services, content (including code) on third party Internet sites,\ + \ or third party programs; and\n•\tclaims for breach of contract, breach of warranty, guarantee\ + \ or condition, strict liability, negligence, or other tort to the extent permitted by applicable\ + \ law.\nIt also applies even if Microsoft knew or should have known about the possibility\ + \ of the damages. The above limitation or exclusion may not apply to you because your country\ + \ may not allow the exclusion or limitation of incidental, consequential or other damages." json: ms-visual-2010-runtime.json - yml: ms-visual-2010-runtime.yml + yaml: ms-visual-2010-runtime.yml html: ms-visual-2010-runtime.html - text: ms-visual-2010-runtime.LICENSE + license: ms-visual-2010-runtime.LICENSE - license_key: ms-visual-2015-sdk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-visual-2015-sdk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + MICROSOFT VISUAL STUDIO 2015 SOFTWARE DEVELOPMENT KIT + + These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have additional terms. + + IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. + + INSTALLATION AND USE RIGHTS. + Installation and Use. One user may use the software to develop and test their applications. + Demo Use. The uses permitted above include use of the software in demonstrating your applications. + Backup Copy. You may make one backup copy of the software, for reinstalling the software. + DISTRIBUTABLE CODE. The software contains code that you are permitted to distribute in applications you develop as described in this Section. (For this Section the term “distribution” also means deployment of your applications for third parties to access over the Internet.) + Right to Use and Distribute. The code and text files listed below are “Distributable Code.” + REDIST.TXT Files. You may copy and distribute the object code form of code listed on the REDIST list located at: http://go.microsoft.com/fwlink/?LinkId=523763&clcid=0x409. + Sample Code and Templates and Styles. You may copy, modify and distribute the source and object code form of code marked as “sample”, “template”, and “Simple Styles” or “Sketch Styles”. + Image Library. You may copy and distribute images, graphics and animations in the Image Library as described in the software documentation. + Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. + Distribution Requirements. For any Distributable Code you distribute, you must: + add significant primary functionality to it in your applications; + require distributors and external end users to agree to terms that protect the Distributable Code at least as much as this agreement and, except that with respect to the Visual Studio Shell, you must require your customers to agree to terms that protect the Shell at least as much as its Microsoft Software License Terms, which grant your customers installation and use rights to the Visual Studio Shell; and, + indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the Distributable Code. + Distribution Restrictions. You may not: + use Microsoft’s trademarks in your applications’ names or branding in a way that suggests your applications come from or are endorsed by Microsoft; or, + modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that (i) the code be disclosed or distributed in source code form; or (ii) others have the right to modify it. + Developing for the Visual Studio Shell (Integrated and Isolated Modes). In addition to the requirements and restrictions for Distributable Code described above, the following applies to your applications that work with a Visual Studio Shell: + Visual Studio Shell (Isolated) – Product Information. You will not alter or hide our Visual Studio sub-branding in the corner of the splash screen of the Visual Studio Shell (Isolated), and you will supply your own primary branding for your applications to indicate to your customers that such applications are yours. + Limits on Extensions. You will not develop or enable others to develop extensions for Visual Studio which circumvent the technical limitations implemented in the software. For example, there are technical limitations in the Visual Studio Shell (Isolated) such that extensions to it may not load certain Microsoft packages (including packages from commercial Visual Studio product software) that may already be installed in the end user’s machine. + No Degrading Visual Studio. You will design and test the installation, uninstallation, and operation of your applications to ensure that such processes do not disable any features or adversely affect the functionality of any edition of the Visual Studio family of products. + DATA. + Collection and Use. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the product documentation. There are also some features in the software that may enable you to collect data from users of your applications. If you use these features to enable data collection in your applications, you must comply with applicable law, including providing appropriate notices to users of your applications. You can learn more about data collection and use in the help documentation and the privacy statement at http://go.microsoft.com/fwlink/?LinkID=528096. Your use of the software operates as your consent to these practices. + Automatic Download Feature. The Visual Studio Shell includes a feature that will detect whether your customer’s machine contains Microsoft components that are needed for the Visual Studio Shell to run, such as the .NET Framework. Visual Studio Shells will automatically download and install such components over the Internet if they are not present on your customer’s machine. Visual Studio Shell does not notify the user that such components are being installed. You will comply with all applicable laws and notice obligations necessary to inform your customer of this automatic download feature. + SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not + work around any technical limitations in the software; + reverse engineer, decompile or disassemble the software, or attempt to do so, except, and only to the extent required by third party licensing terms governing the use of certain open-source components that may be included with the software; + remove, minimize, block or modify any notices of Microsoft or its suppliers in the software; + use the software in any way that is against the law; or + share, publish, rent or lease the software, or provide the software as a stand-alone hosted solution for others to use. + EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit (aka.ms/exporting). + SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. + ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. + APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. + CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you: + Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights. + Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. + Germany and Austria. + Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software. + Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law. + + Subject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called “cardinal obligations”). In other cases of slight negligence, Microsoft will not be liable for slight negligence. + DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. + This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. + + Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French. + + Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français. + + EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection dues consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon sont exclues. + + LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices. + + Cette limitation concerne: + + tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et + les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur. + + Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. + + EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles ci ne le permettent pas. json: ms-visual-2015-sdk.json - yml: ms-visual-2015-sdk.yml + yaml: ms-visual-2015-sdk.yml html: ms-visual-2015-sdk.html - text: ms-visual-2015-sdk.LICENSE + license: ms-visual-2015-sdk.LICENSE - license_key: ms-visual-cpp-2015-runtime + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-visual-cpp-2015-runtime other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + MICROSOFT SOFTWARE LICENSE TERMS + + MICROSOFT VISUAL C++ 2015 - 2022 RUNTIME + + These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have different terms. + + IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. + + 1. INSTALLATION AND USE RIGHTS. + + You may install and use any number of copies of the software. + + 2. TERMS FOR SPECIFIC COMPONENTS. + + a. Microsoft Platforms. The software may include components from Microsoft Windows; Microsoft Windows Server; Microsoft SQL Server; Microsoft Exchange; Microsoft Office; and Microsoft SharePoint. These components are governed by separate agreements and their own product support policies, as described in the Microsoft “Licenses” folder accompanying the software, except that, if license terms for those components are also included in the associated installation directory, those license terms control. + + b. Third Party Components. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the notices file(s) accompanying the software. + + 3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not + + · work around any technical limitations in the software; + + · reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software except, and only to the extent required by third party licensing terms governing the use of certain open source components that may be included in the software; + + · remove, minimize, block or modify any notices of Microsoft or its suppliers in the software; + + · use the software in any way that is against the law; + + · share, publish, rent or lease the software; or + + · provide the software as a stand-alone offering or combined with any of your applications for others to use, or transfer the software or this agreement to any third party. + + 4. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting. + + 5. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. + + 6. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. + + 7. APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. + + 8. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you: + + a. Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights. + + b. Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. + + c. Germany and Austria. + + (i) Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software. + + (ii) Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law. + + Subject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence. + + 9. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + + 10. LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. + + This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + + It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. + + EULA ID: Cpp_2015-2022_ENU.1033 json: ms-visual-cpp-2015-runtime.json - yml: ms-visual-cpp-2015-runtime.yml + yaml: ms-visual-cpp-2015-runtime.yml html: ms-visual-cpp-2015-runtime.html - text: ms-visual-cpp-2015-runtime.LICENSE + license: ms-visual-cpp-2015-runtime.LICENSE - license_key: ms-visual-studio-2017 + category: Commercial spdx_license_key: LicenseRef-scancode-ms-visual-studio-2017 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + MICROSOFT SOFTWARE LICENSE TERMS + + MICROSOFT VISUAL STUDIO ENTERPRISE 2017, VISUAL STUDIO PROFESSIONAL 2017, VISUAL STUDIO TEST PROFESSIONAL 2017 AND TRIAL EDITION + + These license terms are an agreement between you and Microsoft Corporation (or based on where you live, one of its affiliates). They apply to the software named above. The terms also apply to any Microsoft services and updates for the software, except to the extent those have different terms. + + BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE. INSTEAD, RETURN IT TO THE RETAILER FOR A REFUND OR CREDIT. If you cannot obtain a refund there, contact Microsoft about Microsoft’s refund policies. See www.microsoft.com/worldwide. In the United States and Canada, call (800) MICROSOFT or see www.microsoft.com/info/nareturns.htm. + + ________________________________________________________________________________________ + + TRIAL EDITION USE RIGHTS. If the software is a trial edition, this Section applies to your use of the trial edition. + + A. GENERAL. You may use any number of copies of the trial edition on your devices. You may only use the trial edition for internal evaluation purposes, and only during the trial period. You may not distribute or deploy any applications you make with the trial edition to a production environment. You may run load tests of up to 250 virtual users during the trial period. + + B. TRIAL PERIOD AND CONVERSION. The trial period lasts for 30 days after you install the trial edition, plus any permitted extension period. After the expiration of the trial period, the trial edition will stop running. You may extend the trial period an additional 90 days if you sign in to the software. You may not be able to access data used with the trial edition when it stops running. You may convert your trial rights at any time to the full-use rights described below by acquiring a valid full-use license. + + C. DISCLAIMER OF WARRANTY. THE TRIAL EDITION IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + + FOR AUSTRALIA – YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS. + + D. SUPPORT. Because the trial edition is “as is,” we may not provide support services for it. + + E. LIMITATIONS ON DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. + + This limitation applies to (a) anything related to the trial version, services, content (including code) on third party Internet sites, or third party programs; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + + It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. + + FULL-USE LICENSE TERMS FOR THE SOFTWARE: When you acquire a valid license and either enter a product key or sign in to the software, the terms below apply. You may not share your product key or access credentials. + + 1. OVERVIEW. + + a. Software. The software includes development tools, applications and documentation. + + b. License Model. The software is licensed on a per user basis. + + 2. USE RIGHTS. + + a. General. One user may use copies of the software on your devices to develop and test applications. This includes using copies of the software on your own internal servers that remain fully dedicated to your own use. You may not, however, separate the components of the software and run those in a production environment, + + or on third party devices (except as otherwise stated in this agreement), or for any purpose other than developing and testing your applications. Running the software on Microsoft Azure requires a separate license. + + b. Workloads. These license terms apply to your use of the Workloads made available to you within the software, except to the extent a Workload or a Workload component comes with different terms. + + c. Demo Use. The use permitted above includes use of the software in demonstrating your applications. + + d. Backup copy. You may make one backup copy of the software, for reinstalling the software. + + 3. TERMS FOR SPECIFIC COMPONENTS. a. Utilities. The software contains items on the Utilities List at https://go.microsoft.com/fwlink/?linkid=823097. You may copy and install those items, if included with the software, onto your devices to debug and deploy your applications and databases you developed with the software. Please note that Utilities are designed for temporary use, that Microsoft may not be able to patch or update Utilities separately from the rest of the software, and that some Utilities by their nature may make it possible for others to access the devices on which they are installed. As a result, you should delete all Utilities you have installed after you finish debugging or deploying your applications and databases. Microsoft is not responsible for any third party use or access of Utilities you install on any device. + + b. Build Tools. You may copy and install files from the software onto your build devices, including physical devices and virtual machines or containers on those machines, whether on-premises or remote machines that are owned by you, hosted on Azure for you, or dedicated solely to your use (collectively, “Build Devices”). You and others in your organization may use these files on your Build Devices solely to compile, build, and verify applications or run quality or performance tests of those applications as part of the build process. For clarity, “applications” means applications developed by you and others in your organization who are each licensed to use the software. + + c. Font Components. While the software is running, you may use its fonts to display and print content. You may only: (i) embed fonts in content as permitted by the embedding restrictions in the fonts; and (ii) temporarily download them to a printer or other output device to help print content. + + d. Licenses for Other Components. + + · Microsoft Platforms. The software may include components from Microsoft Windows; Microsoft Windows Server; Microsoft SQL Server; Microsoft Exchange; Microsoft Office; and Microsoft SharePoint. These components are governed by separate agreements and their own product support policies, as described in the Microsoft “Licenses” folder accompanying the software, except that, if separate license terms for those components are included in the associated installation directly, those license terms control. + + · Developer resources. The software includes compilers, languages, runtimes, environments, and other resources. These components may be governed by separate agreements and have their own product support policies. A list of these other components is located at https://support.microsoft.com. + + Third Party Components. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software. + + e. PACKAGE MANAGERS. The software includes package managers, like NuGet, that give you the option to download other Microsoft and third party software packages to use with your application. Those packages are under their own licenses, and not this agreement. Microsoft does not distribute, license or provide any warranties for any of the third party packages. + + 4. DISTRIBUTABLE CODE. The software contains code that you are permitted to distribute in applications you develop as described in this Section. (For this Section the term “distribution” also means deployment of your applications for third parties to access over the Internet.) + + a. Right to Use and Distribute. The code and text files listed below are “Distributable Code.” + + * REDIST.TXT Files. You may copy and distribute the object code form of code listed on the REDIST list located at https://go.microsoft.com/fwlink/?linkid=823097. + + * Sample Code, Templates and Styles. You may copy, modify and distribute the source and object code form of code marked as “sample”, “template”, “simple styles” and “sketch styles”. + + * Image Library. You may copy and distribute images, graphics and animations in the Image Library as described in the software documentation. + + * Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. + + b. Distribution Requirements. For any Distributable Code you distribute, you must: + + * add significant primary functionality to it in your applications; + + * require distributors and external end users to agree to terms that protect the Distributable Code at least as much as this agreement; and + + * indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the Distributable Code. + + c. Distribution Restrictions. You may not: + + * use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or + + * modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. + + 5. DATA. + + a. Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the product documentation. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices. + + b. Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at http://go.microsoft.com/?linkid=9840733. + + 6. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not + + * work around any technical limitations in the software; + + * reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; + + * remove, minimize, block or modify any notices of Microsoft or its suppliers in the software; + + * use the software in any way that is against the law; + + * share, publish, rent or lease the software, or provide the software as a stand-alone offering for others to use. + + 7. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. + + 8. NOT FOR RESALE SOFTWARE. You may not sell software marked as “NFR” or “Not for Resale.” + + 9. RIGHTS TO USE OTHER VERSIONS AND LOWER EDITIONS. You may use the software and any prior version on any device. You may create, store, install, run, or access in place of the version licensed, a copy or + + instance of a prior version, different permitted language version, or lower edition. + + 10. PROOF OF LICENSE. If you acquired the software on a disc or other media, your proof of license is the Microsoft certificate of authenticity label, the accompanying product key, and your receipt. If you purchased an online copy of the software, your proof of license is the Microsoft product key you received with your purchase and your receipt and/or being able to access the software service through your Microsoft account. To identify genuine Microsoft software, see www.howtotell.com. + + 11. TRANSFER TO A THIRD PARTY. If you are a valid licensee of the software, you may transfer it and this agreement directly to another party. Before the transfer, that party must agree that this agreement applies to the transfer and use of the software. The transfer must include the software, genuine Microsoft product key, and (if applicable) the Proof of License label. The transferor must uninstall all copies of the software after transferring it from the device. The transferor may not retain any copies of the genuine Microsoft product key to be transferred, and may only retain copies of the software if otherwise licensed to do so. If you have acquired a non-perpetual license to use the software or if the software is marked Not for Resale you may not transfer the software or the software license agreement to another party. + + 12. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting. 13. SUPPORT. Microsoft provides support for the software as described at https://support.microsoft.com. + + 14. ENTIRE AGREEMENT. This agreement (including the warranty below), and the terms for supplements, updates, Internet-based services and support services, are the entire agreement for the software and support services. + + 15. APPLICABLE LAW. If you acquired the software in the United States, Washington State law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquire the software in any other country, its laws apply. + + 16. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or if mandatory country law applies, then the following provisions apply to you: + + a) Australia. References to “Limited Warranty” mean the express warranty provided by Microsoft or the manufacturer or installer. This warranty is in addition to other rights and remedies you may have under law, including your rights and remedies under the statutory guarantees in the Australian Consumer Law. + + In this section, “goods” refers to the software for which Microsoft or the manufacturer or installer provides the express warranty. Our goods come with guarantees that cannot be excluded under the Australian Consumer Law. You are entitled to a replacement or refund for a major failure and compensation for any other reasonably foreseeable loss or damage. You are also entitled to have the goods repaired or replaced if the goods fail to be of acceptable quality and the failure does not amount to a major failure. + + b) Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. + + c) Germany and Austria. + + (i) Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. + + (ii) Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, and death or personal or physical injury, Microsoft is liable according to the statutory law. + + Subject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence. + + 17. LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO THE AMOUNT YOU PAID FOR THE SOFTWARE. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. + + This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + + It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state or country may not allow the exclusion or limitation of incidental, consequential or other damages. + + ************************************************************************* + + LIMITED WARRANTY + + A. LIMITED WARRANTY. If you follow the instructions, the software will perform substantially as described in the Microsoft materials that you receive in or with the software. + + References to “limited warranty” are references to the express warranty provided by Microsoft. This warranty is given in addition to other rights and remedies you may have under law, including your rights and remedies in accordance with the statutory guarantees under local Consumer Law. + + B. TERM OF WARRANTY; WARRANTY RECIPIENT; LENGTH OF ANY IMPLIED WARRANTIES. THE LIMITED WARRANTY COVERS THE SOFTWARE FOR ONE YEAR AFTER ACQUIRED BY THE FIRST USER. IF YOU RECEIVE SUPPLEMENTS, UPDATES, OR REPLACEMENT SOFTWARE DURING THAT YEAR, THEY WILL BE COVERED FOR THE REMAINDER OF THE WARRANTY OR 30 DAYS, WHICHEVER IS LONGER. If the first user transfers the software, the remainder of the warranty will apply to the recipient. + + TO THE EXTENT PERMITTED BY LAW, ANY IMPLIED WARRANTIES, GUARANTEES OR CONDITIONS LAST ONLY DURING THE TERM OF THE LIMITED WARRANTY. Some states do not allow limitations on how long an implied warranty lasts, so these limitations may not apply to you. They also might not apply to you because some countries may not allow limitations on how long an implied warranty, guarantee or condition lasts. + + C. EXCLUSIONS FROM WARRANTY. This warranty does not cover problems caused by your acts (or failures to act), the acts of others, or events beyond Microsoft’s reasonable control. + + D. REMEDY FOR BREACH OF WARRANTY. MICROSOFT WILL REPAIR OR REPLACE THE SOFTWARE AT NO CHARGE. IF MICROSOFT CANNOT REPAIR OR REPLACE IT, MICROSOFT WILL REFUND THE AMOUNT SHOWN ON YOUR RECEIPT FOR THE SOFTWARE. IT WILL ALSO REPAIR OR REPLACE SUPPLEMENTS, UPDATES AND REPLACEMENT SOFTWARE AT NO CHARGE. IF MICROSOFT CANNOT REPAIR OR REPLACE THEM, IT WILL REFUND THE AMOUNT YOU PAID FOR THEM, IF ANY. YOU MUST UNINSTALL THE SOFTWARE AND RETURN ANY MEDIA AND OTHER ASSOCIATED MATERIALS TO MICROSOFT WITH PROOF OF PURCHASE TO OBTAIN A REFUND. THESE ARE YOUR ONLY REMEDIES FOR BREACH OF THE LIMITED WARRANTY. + + E. CONSUMER RIGHTS NOT AFFECTED. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS, WHICH THIS AGREEMENT CANNOT CHANGE. + + F. WARRANTY PROCEDURES. You need proof of purchase for warranty service. + + 1. United States and Canada. For warranty service or information about how to obtain a refund for software acquired in the United States and Canada, contact Microsoft at: + + * (800) MICROSOFT; + + * Microsoft Customer Service and Support, One Microsoft Way, Redmond, WA 98052-6399; or + + * visit (aka.ms/nareturns). + + 2. Europe, Middle East, and Africa. If you acquired the software in Europe, the Middle East, or Africa, Microsoft Ireland Operations Limited makes this limited warranty. To make a claim under this warranty, you should contact either: + + * Microsoft Ireland Operations Limited, Customer Care Centre, Atrium Building Block B, Carmanhall Road, Sandyford Industrial Estate, Dublin 18, Ireland; or + + * the Microsoft affiliate serving your country (see aka.ms/msoffices). + + 3. Australia. For Warranty Services and to claim expenses in relation to the warranty (if applicable) for software acquired in Australia, contact Microsoft at: + + * 13 20 58; or + + * Microsoft Pty Ltd, 1 Epping Road, North Ryde NSW 2113, Australia. + + 4. Outside the United States, Canada, Europe, Middle East, Africa, and Australia. If you acquired the software outside the United States, Canada, Europe, the Middle East, Africa, and Australia, contact the Microsoft affiliate serving your country (see aka.ms/msoffices). + + G. NO OTHER WARRANTIES. THE LIMITED WARRANTY IS THE ONLY DIRECT WARRANTY FROM + + MICROSOFT. MICROSOFT GIVES NO OTHER EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. WHERE ALLOWED BY YOUR LOCAL LAWS, MICROSOFT EXCLUDES IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. If your local laws give you any implied warranties, guarantees or conditions, despite this exclusion, your remedies are described in the Remedy for Breach of Warranty clause above, to the extent permitted by your local laws. + + FOR AUSTRALIA ONLY. References to “Limited Warranty” are references to the warranty provided by Microsoft. This warranty is given in addition to other rights and remedies you may have under law, including your rights and remedies in accordance with the statutory guarantees under the Australian Consumer Law. Our goods come with guarantees that cannot be excluded under the Australian Consumer Law. You are entitled to a replacement or refund for a major failure and compensation for any other reasonably foreseeable loss or damage. You are also entitled to have the goods repaired or replaced if the goods fail to be of acceptable quality and the failure does not amount to a major failure. Goods presented for repair may be replaced by refurbished goods of the same type rather than being replaced. Refurbished parts may be used to repair the goods. + + H. LIMITATION ON AND EXCLUSION OF DAMAGES FOR BREACH OF WARRANTY. THE LIMITATION ON AND EXCLUSION OF DAMAGES CLAUSE ABOVE APPLIES TO BREACHES OF THIS LIMITED WARRANTY. + + THIS WARRANTY GIVES YOU SPECIFIC LEGAL RIGHTS, AND YOU MAY ALSO HAVE OTHER RIGHTS WHICH VARY FROM STATE TO STATE. YOU MAY ALSO HAVE OTHER RIGHTS WHICH VARY FROM COUNTRY TO COUNTRY. + + EULA ID: VS2017_ENT_PRO_TRIAL_RTW.2_ENU json: ms-visual-studio-2017.json - yml: ms-visual-studio-2017.yml + yaml: ms-visual-studio-2017.yml html: ms-visual-studio-2017.html - text: ms-visual-studio-2017.LICENSE + license: ms-visual-studio-2017.LICENSE - license_key: ms-visual-studio-2017-tools + category: Commercial spdx_license_key: LicenseRef-scancode-ms-visual-studio-2017-tools other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + MICROSOFT SOFTWARE LICENSE TERMS + + MICROSOFT VISUAL STUDIO 2017 TOOLS, ADD-ONs and EXTENSIONS + + These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have different terms. + + IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. + + 1. INSTALLATION AND USE RIGHTS. + + You may install and use any number of copies of the software. + + 2. TERMS FOR SPECIFIC COMPONENTS. + + a. Utilities. The software may contain some items on the Utilities List at https://go.microsoft.com/fwlink/?linkid=823097. You may copy and install these Utilities, if included with the software, onto devices to debug and deploy your applications and databases you developed with the software. Please note that Utilities are designed for temporary use, that Microsoft may not be able to patch or update Utilities separately from the rest of the software, and that some Utilities by their nature may make it possible for others to access devices on which the Utilities are installed. As a result, you should delete all Utilities you have installed after you finish debugging or deploying your applications and databases. Microsoft is not responsible for any third party use or access of Utilities you install on any device. + + b. Build Tools. The software may include build tools which have specific use terms. For build tools, you may copy and install files from the software onto your build devices, including physical devices and virtual machines or containers on those machines, whether on-premises or remote machines that are owned by you, hosted on Azure for you, or dedicated solely to your use (collectively, “Build Devices”). You and others in your organization may use these files on your Build Devices solely to compile, build, and verify applications or run quality or performance tests of those applications as part of the build process. For clarity, “applications” means applications developed by you and others in your organization who are each licensed to use the software. + + c. Microsoft Platforms. The software may include components from Microsoft Windows; Microsoft Windows Server; Microsoft SQL Server; Microsoft Exchange; Microsoft Office; and Microsoft SharePoint. These components are governed by separate agreements and their own product support policies, as described in the Microsoft “Licenses” folder accompanying the software, except that, if license terms for those components are also included in the associated installation directory, those license terms control. + + d. Third Party Components. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software. + + 3. DATA. + + a. Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the product documentation. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications and you should provide a copy of Microsoft’s privacy statement to your users. The Microsoft privacy statement is located here https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices. + + b. Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at http://go.microsoft.com/?linkid=9840733. + + 4. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not + + · work around any technical limitations in the software; + + · reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the + + software except, and only to the extent required by third party licensing terms governing the use of certain open source components that may be included in the software; + + · remove, minimize, block or modify any notices of Microsoft or its suppliers in the software; + + · use the software in any way that is against the law; or + + · share, publish, rent or lease the software, or provide the software as a stand-alone hosted as solution for others to use, or transfer the software or this agreement to any third party. + + 5. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting. + + 6. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. + + 7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. + + 8. APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. + + 9. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you: + + a. Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights. + + b. Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. + + c. Germany and Austria. + + (i) Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software. + + (ii) Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law. + + Subject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence. + + 10. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + + 11. LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. + + This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + + It also applies even if Microsoft knew or should have known about the possibility of the damages. The above + + limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. + + EULA ID: VS 2017_TOOLS_ADDONs_C++_RTW.3_ENU json: ms-visual-studio-2017-tools.json - yml: ms-visual-studio-2017-tools.yml + yaml: ms-visual-studio-2017-tools.yml html: ms-visual-studio-2017-tools.html - text: ms-visual-studio-2017-tools.LICENSE + license: ms-visual-studio-2017-tools.LICENSE - license_key: ms-visual-studio-code + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-visual-studio-code other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + MICROSOFT SOFTWARE LICENSE TERMS + MICROSOFT VISUAL STUDIO CODE + + These license terms are an agreement between Microsoft Corporation (or based on + where you live, one of its affiliates) and you. They apply to the software named + above. The terms also apply to any Microsoft services or updates for the + software, except to the extent those have additional terms. + + IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. + + 1. INSTALLATION AND USE RIGHTS. + + a. General. You may use any number of copies of the software to develop and test + your applications, including deployment within your internal corporate network. + + b. Demo use. The uses permitted above include use of the software in demonstrating + your applications. + + c. Backup copy. You may make one or more backup copies of the software, for + reinstalling the software. + + d. Third Party Programs. The software may include third party components with + separate legal notices or governed by other agreements, as described in the + ThirdPartyNotices file accompanying the software. Even if such components are + governed by other agreements, the disclaimers and the limitations on and + exclusions of damages below also apply. + + The software contains third party components licensed under open source licenses + with source code availability obligations. Copies of those licenses are included + in the ThirdPartyNotices file or accompanying credits file. You may obtain the + complete corresponding source code from us if and as required under the relevant + open source licenses by sending a money order or check for $5.00 to: Source Code + Compliance Team, Microsoft Corporation, 1 Microsoft Way, Redmond, WA 98052 USA. + Please write "third party source code for Visual Studio Code" in the memo line + of your payment. We may also make the source available at + http://thirdpartysource.microsoft.com/. + + e. Extensions.The software gives you the option to download other Microsoft and + third party software packages from our extension marketplace or package + managers. Those packages are under their own licenses, and not this agreement. + Microsoft does not distribute, license or provide any warranties for any of the + third party packages. + + 2. DATA. The software may collect information about you and your use of the + software, and send that to Microsoft. Microsoft may use this information to + provide services and improve our products and services. There may also be some + features in the software that enable you to collect data from users of your + applications. If you use these features to enable data collection in your + applications, you must comply with applicable law, including providing + appropriate notices to users of your applications. + + You can learn more about data collection and use in the help documentation and + the privacy statement at + http://go.microsoft.com/fwlink/?LinkID=528096&clcid=0x409. Your use of the + software operates as your consent to these practices. + + 3. UPDATES. The software may install automatic updates. By using the software, + you agree to receive automatic updates without any additional notice, and permit + Microsoft to download and install them for you. If you do not want automatic + updates, you may turn them off by following the instructions in the + documentation at http://go.microsoft.com/fwlink/?LinkID=616397. + + 4. FEEDBACK. If you give feedback about the software to Microsoft, you give to + Microsoft, without charge, the right to use, share and commercialize your + feedback in any way and for any purpose. You will not give feedback that is + subject to a license that requires Microsoft to license its software or + documentation to third parties because we include your feedback in them. These + rights survive this agreement. + + 5. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only + gives you some rights to use the software. Microsoft reserves all other rights. + Unless applicable law gives you more rights despite this limitation, you may use + the software only as expressly permitted in this agreement. In doing so, you + must comply with any technical limitations in the software that only allow you + to use it in certain ways. You may not + + * work around any technical limitations in the software; + + * reverse engineer, decompile or disassemble the software, or otherwise attempt + to derive the source code for the software except, and solely to the extent: (i) + permitted by applicable law, despite this limitation; or (ii) required to debug + changes to any libraries licensed under the GNU Lesser General Public License + which are included with and linked to by the software; + + * remove, minimize, block or modify any notices of Microsoft or its suppliers in + the software; + + * use the software in any way that is against the law; or + + * share, publish, or lend the software, or provide it as a hosted solution for + others to use, or transfer the software or this agreement to any third party. + + 6. SUPPORT SERVICES. Because this software is "as is," we may not provide + support services for it. + + 7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, + Internet-based services and support services that you use, are the entire + agreement for the software and support services. + + 8. EXPORT RESTRICTIONS. Microsoft software, online services, professional + services and related technology are subject to U.S. export jurisdiction. You + must comply with all applicable international and national laws including the + U.S. Export Administration Regulations, the International Traffic in Arms + Regulations, Office of Foreign Assets Control sanction programs, and end-user, + end use and destination restrictions by the U.S. and other governments related + to Microsoft products, services and technologies. For additional information, + see http://www.microsoft.com/exporting. + + 9. APPLICABLE LAW. If you acquired the software in the United States, Washington + law applies to interpretation of and claims for breach of this agreement, and + the laws of the state where you live apply to all other claims. If you acquired + the software in any other country, its laws apply. + + 10. LEGAL EFFECT. This agreement describes certain legal rights. You may have + other rights under the laws of your state or country. This agreement does not + change your rights under the laws of your state or country if the laws of your + state or country do not permit it to do so. Without limiting the foregoing, for + Australia, YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND + NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS. + + 11. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED "AS-IS."" YOU BEAR THE RISK + OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO + THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON- + INFRINGEMENT. + + 12. LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND + ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER + DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL + DAMAGES. + + This limitation applies to (a) anything related to the software, services, + content (including code) on third party Internet sites, or third party + applications; and (b) claims for breach of contract, breach of warranty, + guarantee or condition, strict liability, negligence, or other tort to the + extent permitted by applicable law. + + It also applies even if Microsoft knew or should have known about the + possibility of the damages. The above limitation or exclusion may not apply to + you because your state or country may not allow the exclusion or limitation of + incidental, consequential or other damages. json: ms-visual-studio-code.json - yml: ms-visual-studio-code.yml + yaml: ms-visual-studio-code.yml html: ms-visual-studio-code.html - text: ms-visual-studio-code.LICENSE + license: ms-visual-studio-code.LICENSE - license_key: ms-visual-studio-code-2018 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-visual-studio-code-2018 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + MICROSOFT SOFTWARE LICENSE TERMS + MICROSOFT VISUAL STUDIO CODE + + These license terms are an agreement between you and Microsoft Corporation (or + based on where you live, one of its affiliates). They apply to the software + named above. The terms also apply to any Microsoft services or updates for the + software, except to the extent those have different terms. + + IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. + + 1. INSTALLATION AND USE RIGHTS. + + a. General. You may use any number of copies of the software to develop and test + your applications, including deployment within your internal corporate network. + + b. Demo use. The uses permitted above include use of the software in + demonstrating your applications. + + c. Backup copy. You may make one or more backup copies of the software, for + reinstalling the software. + + d. Third Party Programs. The software may include third party components with + separate legal notices or governed by other agreements, as may be described in + the ThirdPartyNotices file accompanying the software. + + e. Extensions. The software gives you the option to download other Microsoft and + third party software packages from our extension marketplace or package + managers. Those packages are under their own licenses, and not this agreement. + Microsoft does not distribute, license or provide any warranties for any of the + third party packages. + + 2. DATA. + + a. Data Collection. The software may collect information about you and your use + of the software, and send that to Microsoft. Microsoft may use this information + to provide services and improve our products and services. You may opt-out of + many of these scenarios, but not all, as described in the product documentation. + There may also be some features in the software that may enable you and + Microsoft to collect data from users of your applications. If you use these + features, you must comply with applicable law, including providing appropriate + notices to users of your applications together with Microsoft’s privacy + statement. Our privacy statement is located at + https://go.microsoft.com/fwlink/?LinkID=824704 . You can learn more about data + collection and use in the help documentation and our privacy statement. Your use + of the software operates as your consent to these practices. + + b. Processing of Personal Data. To the extent Microsoft is a processor or + subprocessor of personal data in connection with the software, Microsoft makes + the commitments in the European Union General Data Protection Regulation Terms + of the Online Services Terms to all customers effective May 25, 2018, at + http://go.microsoft.com/?linkid=9840733 . + + 3. UPDATES. The software may periodically check for updates, and download and + install them for you. You may obtain updates only from Microsoft or authorized + sources. Microsoft may need to update your system to provide you with updates. + You agree to receive these automatic updates without any additional notice. + Updates may not include or support all existing software features, services, or + peripheral devices. + + 4. FEEDBACK. If you give feedback about the software to Microsoft, you give to + Microsoft, without charge, the right to use, share and commercialize your + feedback in any way and for any purpose. You will not give feedback that is + subject to a license that requires Microsoft to license its software or + documentation to third parties because we include your feedback in them. These + rights survive this agreement. + + 5. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only + gives you some rights to use the software. Microsoft reserves all other rights. + Unless applicable law gives you more rights despite this limitation, you may use + the software only as expressly permitted in this agreement. In doing so, you + must comply with any technical limitations in the software that only allow you + to use it in certain ways. You may not + + * work around any technical limitations in the software; + + * reverse engineer, decompile or disassemble the software, or otherwise attempt + to derive the source code for the software, except and to the extent required by + third party licensing terms governing use of certain open source components that + may be included in the software; + + *remove, minimize, block or modify any notices of Microsoft or its suppliers in + the software; + + * use the software in any way that is against the law; + + * share, publish, rent or lease the software, or provide the software as a + stand-alone offering for others to use. + + 6. SUPPORT SERVICES. Because this software is “as is,” we may not provide + support services for it. + + 7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, + Internet-based services and support services that you use, are the entire + agreement for the software and support services. + + 8. EXPORT RESTRICTIONS. You must comply with all domestic and international + export laws and regulations that apply to the software, which include + restrictions on destinations, end-users, and end use. For further information on + export restrictions, see http://www.microsoft.com/exporting . + + 9. APPLICABLE LAW. If you acquired the software in the United States, Washington + law applies to interpretation of and claims for breach of this agreement, and + the laws of the state where you live apply to all other claims. If you acquired + the software in any other country, its laws apply. + + 10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal + rights. You may have other rights, including consumer rights, under the laws of + your state or country. Separate and apart from your relationship with Microsoft, + you may also have rights with respect to the party from which you acquired the + software. This agreement does not change those other rights if the laws of your + state or country do not permit it to do so. For example, if you acquired the + software in one of the below regions, or mandatory country law applies, then the + following provisions apply to you: + + a. Australia. You have statutory guarantees under the Australian Consumer Law + and nothing in this agreement is intended to affect those rights. + + b. Canada. If you acquired this software in Canada, you may stop receiving + updates by turning off the automatic update feature, disconnecting your device + from the Internet (if and when you re-connect to the Internet, however, the + software will resume checking for and installing updates), or uninstalling the + software. The product documentation, if any, may also specify how to turn off + updates for your specific device or software. + + c. Germany and Austria. + + i. Warranty. The properly licensed software will perform substantially as + described in any Microsoft materials that accompany the software. However, + Microsoft gives no contractual guarantee in relation to the licensed software. + + ii. Limitation of Liability. In case of intentional conduct, gross negligence, + claims based on the Product Liability Act, as well as, in case of death or + personal or physical injury, Microsoft is liable according to the statutory + law. + + Subject to the foregoing clause (ii), Microsoft will only be liable for slight + negligence if Microsoft is in breach of such material contractual obligations, + the fulfillment of which facilitate the due performance of this agreement, the + breach of which would endanger the purpose of this agreement and the compliance + with which a party may constantly trust in (so-called "cardinal obligations"). + In other cases of slight negligence, Microsoft will not be liable for slight + negligence. + + 11. DISCLAIMER OF WARRANTY. The software is licensed “as-is.” You bear the risk + of using it. Microsoft gives no express warranties, guarantees or conditions. To + the extent permitted under your local laws, Microsoft excludes the implied + warranties of merchantability, fitness for a particular purpose and non- + infringement. + + 12. LIMITATION ON AND EXCLUSION OF DAMAGES. You can recover from Microsoft and + its suppliers only direct damages up to U.S. $5.00. You cannot recover any other + damages, including consequential, lost profits, special, indirect or incidental + damages. This limitation applies to (a) anything related to the software, + services, content (including code) on third party Internet sites, or third party + applications; and (b) claims for breach of contract, breach of warranty, + guarantee or condition, strict liability, negligence, or other tort to the + extent permitted by applicable law. It also applies even if Microsoft knew or + should have known about the possibility of the damages. The above limitation or + exclusion may not apply to you because your state or country may not allow the + exclusion or limitation of incidental, consequential or other damages. json: ms-visual-studio-code-2018.json - yml: ms-visual-studio-code-2018.yml + yaml: ms-visual-studio-code-2018.yml html: ms-visual-studio-code-2018.html - text: ms-visual-studio-code-2018.LICENSE + license: ms-visual-studio-code-2018.LICENSE - license_key: ms-visual-studio-code-2022 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-visual-studio-code-2022 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + MICROSOFT SOFTWARE LICENSE TERMS + MICROSOFT VISUAL STUDIO CODE + + These license terms are an agreement between you and Microsoft Corporation (or + based on where you live, one of its affiliates). They apply to the software + named above. The terms also apply to any Microsoft services or updates for the + software, except to the extent those have different terms. + + IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. + + 1. INSTALLATION AND USE RIGHTS. + + a. General. You may use any number of copies of the software to develop and test + your applications, including deployment within your internal corporate network. + + b. Demo use. The uses permitted above include use of the software in + demonstrating your applications. + + c. Third Party Components. The software may include third party components with + separate legal notices or governed by other agreements, as may be described in + the ThirdPartyNotices file accompanying the software. + + d. Extensions. The software gives you the option to download other Microsoft and + third party software packages from our extension marketplace or package + managers. Those packages are under their own licenses, and not this agreement. + Microsoft does not distribute, license or provide any warranties for any of the + third party packages. By accessing or using our extension marketplace, you agree + to the extension marketplace terms located at https://aka.ms/vsmarketplace-ToU . + + 2. DATA. + + a. Data Collection. The software may collect information about you and your use + of the software, and send that to Microsoft. Microsoft may use this information + to provide services and improve our products and services. You may opt-out of + many of these scenarios, but not all, as described in the product documentation + located at https://code.visualstudio.com/docs/supporting/faq#_how-to-disable- + telemetry-reporting . There may also be some features in the software that may + enable you and Microsoft to collect data from users of your applications. If you + use these features, you must comply with applicable law, including providing + appropriate notices to users of your applications together with Microsoft’s + privacy statement. Our privacy statement is located at + https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data + collection and use in the help documentation and our privacy statement. Your use + of the software operates as your consent to these practices. + + b. Processing of Personal Data. To the extent Microsoft is a processor or + subprocessor of personal data in connection with the software, Microsoft makes + the commitments in the European Union General Data Protection Regulation Terms + of the Online Services Terms to all customers effective May 25, 2018, at + https://docs.microsoft.com/legal/gdpr . + + 3. UPDATES. The software may periodically check for updates and download and + install them for you. You may obtain updates only from Microsoft or authorized + sources. Microsoft may need to update your system to provide you with updates. + You agree to receive these automatic updates without any additional notice. + Updates may not include or support all existing software features, services, or + peripheral devices. If you do not want automatic updates, you may turn them off + by following the instructions in the documentation at + https://go.microsoft.com/fwlink/?LinkID=616397 . + + 4. FEEDBACK. If you give feedback about the software to Microsoft, you give to + Microsoft, without charge, the right to use, share and commercialize your + feedback in any way and for any purpose. You will not give feedback that is + subject to a license that requires Microsoft to license its software or + documentation to third parties because we include your feedback in them. These + rights survive this agreement. + + 5. SCOPE OF LICENSE. This license applies to the Visual Studio Code product. + Source code for Visual Studio Code is available at + https://github.com/Microsoft/vscode under the MIT license agreement. The + software is licensed, not sold. This agreement only gives you some rights to use + the software. Microsoft reserves all other rights. Unless applicable law gives + you more rights despite this limitation, you may use the software only as + expressly permitted in this agreement. In doing so, you must comply with any + technical limitations in the software that only allow you to use it in certain + ways. You may not + + * reverse engineer, decompile or disassemble the software, or otherwise attempt + to derive the source code for the software except and solely to the extent + required by third party licensing terms governing use of certain open source + components that may be included in the software; + + *remove, minimize, block or modify any notices of Microsoft or its suppliers in + the software; + + * use the software in any way that is against the law; + + * share, publish, rent or lease the software, or provide the software as a + stand-alone offering for others to use. + + 6. SUPPORT SERVICES. Because this software is “as is,” we may not provide + support services for it. + + 7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, + Internet-based services and support services that you use, are the entire + agreement for the software and support services. + + 8. EXPORT RESTRICTIONS. You must comply with all domestic and international + export laws and regulations that apply to the software, which include + restrictions on destinations, end-users, and end use. For further information on + export restrictions, see https://www.microsoft.com/exporting . + + 9. APPLICABLE LAW. If you acquired the software in the United States, Washington + law applies to interpretation of and claims for breach of this agreement, and + the laws of the state where you live apply to all other claims. If you acquired + the software in any other country, its laws apply. + + 10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal + rights. You may have other rights, including consumer rights, under the laws of + your state or country. Separate and apart from your relationship with Microsoft, + you may also have rights with respect to the party from which you acquired the + software. This agreement does not change those other rights if the laws of your + state or country do not permit it to do so. For example, if you acquired the + software in one of the below regions, or mandatory country law applies, then the + following provisions apply to you: + + a. Australia. You have statutory guarantees under the Australian Consumer Law + and nothing in this agreement is intended to affect those rights. + + b. Canada. If you acquired this software in Canada, you may stop receiving + updates by turning off the automatic update feature, disconnecting your device + from the Internet (if and when you re-connect to the Internet, however, the + software will resume checking for and installing updates), or uninstalling the + software. The product documentation, if any, may also specify how to turn off + updates for your specific device or software. + + c. Germany and Austria. + + i. Warranty. The properly licensed software will perform substantially as + described in any Microsoft materials that accompany the software. However, + Microsoft gives no contractual guarantee in relation to the licensed software. + + ii. Limitation of Liability. In case of intentional conduct, gross negligence, + claims based on the Product Liability Act, as well as, in case of death or + personal or physical injury, Microsoft is liable according to the statutory + law. + + Subject to the foregoing clause (ii), Microsoft will only be liable for slight + negligence if Microsoft is in breach of such material contractual obligations, + the fulfillment of which facilitate the due performance of this agreement, the + breach of which would endanger the purpose of this agreement and the compliance + with which a party may constantly trust in (so-called "cardinal obligations"). + In other cases of slight negligence, Microsoft will not be liable for slight + negligence. + + 11. DISCLAIMER OF WARRANTY. The software is licensed “as-is.” You bear the risk + of using it. Microsoft gives no express warranties, guarantees or conditions. To + the extent permitted under your local laws, Microsoft excludes the implied + warranties of merchantability, fitness for a particular purpose and non- + infringement. + + 12. LIMITATION ON AND EXCLUSION OF DAMAGES. You can recover from Microsoft and + its suppliers only direct damages up to U.S. $5.00. You cannot recover any other + damages, including consequential, lost profits, special, indirect or incidental + damages. This limitation applies to (a) anything related to the software, + services, content (including code) on third party Internet sites, or third party + applications; and (b) claims for breach of contract, breach of warranty, + guarantee or condition, strict liability, negligence, or other tort to the + extent permitted by applicable law. It also applies even if Microsoft knew or + should have known about the possibility of the damages. The above limitation or + exclusion may not apply to you because your state or country may not allow the + exclusion or limitation of incidental, consequential or other damages. json: ms-visual-studio-code-2022.json - yml: ms-visual-studio-code-2022.yml + yaml: ms-visual-studio-code-2022.yml html: ms-visual-studio-code-2022.html - text: ms-visual-studio-code-2022.LICENSE + license: ms-visual-studio-code-2022.LICENSE - license_key: ms-vs-addons-ext-17.2.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-vs-addons-ext-17.2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\n\nMICROSOFT VISUAL STUDIO ADD-ONs and EXTENSIONS\ + \ \n\nThese license terms are an agreement between Microsoft Corporation (or based on where\ + \ you live, one of its affiliates) and you. They apply to the software named above. The\ + \ terms also apply to any Microsoft services or updates for the software, except to the\ + \ extent those have different terms.\n\nIF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE\ + \ THE RIGHTS BELOW.\n\n1. INSTALLATION AND USE RIGHTS. \n\n\tYou may install and use any\ + \ number of copies of the software to use solely with\n\t\t* Visual Studio Community \n\t\ + \t* Visual Studio Professional \n\t\t* Visual Studio Enterprise \n\t\t* Visual Studio Code\ + \ \n\n2. TERMS FOR SPECIFIC COMPONENTS.\n\ta. Microsoft Platforms. The software may include\ + \ components from Microsoft Windows, Microsoft Windows Server, Microsoft SQL Server, Microsoft\ + \ Exchange, Microsoft Office, or Microsoft SharePoint. These components are governed by\ + \ separate agreements and their own product support policies, as described in the Microsoft\ + \ Licenses folder accompanying the software, except that, if license terms for those components\ + \ are also included in the associated installation directory, those license terms control.\n\ + \tb. Third Party Components. The software may include third party components with separate\ + \ legal notices or governed by other agreements, as may be described in the ThirdPartyNotices\ + \ file(s) accompanying the software. \n\tc. Package Managers. The software includes package\ + \ managers, like NuGet, that give you the option to download other Microsoft and third party\ + \ software packages to use with your applications. Those packages are under their own licenses,\ + \ and not these license terms. Microsoft does not distribute, license or provide any warranties\ + \ for any of the third party packages.\n\n3. DATA. \n\ta. Data Collection. The software\ + \ may collect information about you and your use of the software, and send that to Microsoft.\ + \ Microsoft may use this information to provide services and improve our products and services.\ + \ You may opt-out of many of these scenarios, but not all, as described in the software\ + \ documentation. There are also some features in the software that may enable you and Microsoft\ + \ to collect data from users of your applications. If you use these features, you must comply\ + \ with applicable law, including providing appropriate notices to users of your applications\ + \ and you should provide a copy of Microsoft's privacy statement to your users. The Microsoft\ + \ privacy statement is located here https://go.microsoft.com/fwlink/?LinkID=824704. You\ + \ can learn more about data collection and use from the software documentation and our privacy\ + \ statement. Your use of the software operates as your consent to these practices.\n\tb.\ + \ Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of\ + \ personal data in connection with the software, Microsoft makes the commitments in the\ + \ European Union General Data Protection Regulation Terms of the Online Services Terms to\ + \ all customers effective May 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr.\n\ + \n4. SCOPE OF LICENSE. The software is licensed, not sold. These license terms only give\ + \ you some rights to use the software. Microsoft reserves all other rights. Unless applicable\ + \ law gives you more rights despite this limitation, you may use the software only as expressly\ + \ permitted in these license terms. In doing so, you must comply with any technical limitations\ + \ in the software that only allow you to use it in certain ways. In addition, you may not\n\ + \t* work around any technical limitations in the software;\n\t* reverse engineer, decompile\ + \ or disassemble the software, or otherwise attempt to derive the source code for the software\ + \ except, and only to the extent required by third party licensing terms governing the use\ + \ of certain open source components that may be included in the software;\n\t* remove, minimize,\ + \ block or modify any notices of Microsoft or its suppliers in the software; \n\t* use the\ + \ software in any way that is against the law; \n\t* share, publish, rent, or lease the\ + \ software; or \n\t* provide the software as a stand-alone offering or combine it with any\ + \ of your applications for others to use, or transfer the software or this agreement to\ + \ any third party.\n\n5. EXPORT RESTRICTIONS. You must comply with all domestic and international\ + \ export laws and regulations that apply to the software, which include restrictions on\ + \ destinations, end users, and end use. For further information on export restrictions,\ + \ visit www.microsoft.com/exporting. \n\n6. SUPPORT SERVICES. Because this software is \"\ + as is\", we may not provide support services for it.\n\n7. ENTIRE AGREEMENT. This agreement,\ + \ and the terms for supplements, updates, Internet-based services and support services that\ + \ you use, are the entire agreement for the software and support services.\n\n8. APPLICABLE\ + \ LAW. If you acquired the software in the United States, Washington law applies to interpretation\ + \ of and claims for breach of this agreement, and the laws of the state where you live apply\ + \ to all other claims. If you acquired the software in any other country, its laws apply.\n\ + \n9. CONSUMER RIGHTS; REGIONAL VARIATIONS. These license terms describe certain legal rights.\ + \ You may have other rights, including consumer rights, under the laws of your state or\ + \ country. You may also have rights with respect to the party from which you acquired the\ + \ software. This agreement does not change those other rights if the laws of your state\ + \ or country do not permit it to do so. For example, if you acquired the software in one\ + \ of the below regions, or mandatory country law applies, then the following provisions\ + \ apply to you:\n\ta. Australia. You have statutory guarantees under the Australian Consumer\ + \ Law and nothing in this agreement is intended to affect those rights.\n\tb. Canada. You\ + \ may stop receiving updates on your device by turning off Internet access. If and when\ + \ you re-connect to the Internet, the software will resume checking for and installing updates.\n\ + \tc. Germany and Austria.\n\t\t(i)\tWarranty. The properly licensed software will perform\ + \ substantially as described in any Microsoft materials that accompany the software. However,\ + \ Microsoft gives no contractual guarantee in relation to the licensed software.\n\t\t(ii)\t\ + Limitation of Liability. In case of intentional conduct, gross negligence, claims based\ + \ on the Product Liability Act, as well as, in the case of death or personal or physical\ + \ injury, Microsoft is liable according to the statutory law.\n\n\tSubject to the preceding\ + \ sentence (ii), Microsoft will only be liable for slight negligence if Microsoft is in\ + \ breach of such material contractual obligations, the fulfillment of which facilitate the\ + \ due performance of this agreement, the breach of which would endanger the purpose of this\ + \ agreement and the compliance with which a party may constantly trust in (so-called \"\ + cardinal obligations\"). In other cases of slight negligence, Microsoft will not be liable\ + \ for slight negligence.\n\n10. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS\"\ + . YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS.\ + \ TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES\ + \ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n11. LIMITATION\ + \ ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT\ + \ DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL,\ + \ LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\nThis limitation applies to (a)\ + \ anything related to the software, services, content (including code) on third party Internet\ + \ sites, or third party applications; and (b) claims for breach of contract, breach of warranty,\ + \ guarantee or condition, strict liability, negligence, or other tort to the extent permitted\ + \ by applicable law.\nIt also applies even if Microsoft knew or should have known about\ + \ the possibility of the damages. The above limitation or exclusion may not apply to you\ + \ because your country may not allow the exclusion or limitation of incidental, consequential\ + \ or other damages." json: ms-vs-addons-ext-17.2.0.json - yml: ms-vs-addons-ext-17.2.0.yml + yaml: ms-vs-addons-ext-17.2.0.yml html: ms-vs-addons-ext-17.2.0.html - text: ms-vs-addons-ext-17.2.0.LICENSE + license: ms-vs-addons-ext-17.2.0.LICENSE - license_key: ms-web-developer-tools-1.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-web-developer-tools-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + MICROSOFT SOFTWARE LICENSE TERMS + MICROSOFT WEB DEVELOPER TOOLS 1.0 + These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft + + · updates, + + · supplements, + + · Internet-based services, and + + · support services + + for this software, unless other terms accompany those items. If so, those terms apply. + + By using the software, you accept these terms. If you do not accept them, do not use the software. + + If you comply with these license terms, you have the perpetual rights below. + + 1. INSTALLATION AND USE RIGHTS. + + a. Installation and Use. You may install and use any number of copies of the software for use with your ASP.NET programs on your devices running validly licensed copies of Microsoft Visual Studio. You may modify, copy and distribute or deploy any .js files contained in the software as part of your ASP.NET programs. + + 2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS. + + a. Distributable Code. In addition to the .js files described above, the software contains code that you are permitted to distribute in ASP.NET programs you develop if you comply with the terms below. + + i. Right to Use and Distribute. The code and text files listed below are "Distributable Code." + + · You may copy and distribute the object code form of code and files listed below. + + · Microsoft.AspNet.Membership.OpenAuth.dll + · Microsoft.ScriptManager.WebForms.dII + · Microsoft.ScriptManager.MSAjax.dII + + · Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs. + + ii. Distribution Requirements. For any Distributable Code you distribute, you must + + · add significant primary functionality to it in your programs; + + · require distributors and external end users to agree to terms that protect it at least as much as this agreement; + + · display your valid copyright notice on your programs; and + + · indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your programs. + + iii. Distribution Restrictions. You may not + + · alter any copyright, trademark or patent notice in the Distributable Code; + + · use Microsoft’s trademarks in your programs’ names or in a way that suggests your programs come from or are endorsed by Microsoft; + + · distribute Distributable Code to run on a platform other than the Windows platform; + + · include Distributable Code in malicious, deceptive or unlawful programs; or + + · modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that + + · the code be disclosed or distributed in source code form; or + + · others have the right to modify it. + + 3. THIRD PARTY NOTICES. The software may include third party code that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party code are included for your information only. + + 4. INTERNET-BASED SERVICES. Microsoft provides Internet-based services with the software. It may change or cancel them at any time. + + 5. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not + + · work around any technical limitations in the software; + + · reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; + + · make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation; + + · publish the software for others to copy; + + · rent, lease or lend the software; or + + · transfer the software or this agreement to any third party. + + 6. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software. + + 7. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. + + 8. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting. + + 9. SUPPORT SERVICES. Because this software is "as is," we may not provide support services for it. + + 10. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. + + 11. APPLICABLE LAW. + + a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. + + b. Outside the United States. If you acquired the software in any other country, the laws of that country apply. + + 12. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so. + + 13. DISCLAIMER OF WARRANTY. The software is licensed "as-is." You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights or statutory guarantees under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. + + FOR AUSTRALIA – You have statutory guarantees under the Australian Consumer Law and nothing in these terms is intended to affect those rights. + + 14. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages. + + This limitation applies to + + · anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and + + · claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + + It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. json: ms-web-developer-tools-1.0.json - yml: ms-web-developer-tools-1.0.yml + yaml: ms-web-developer-tools-1.0.yml html: ms-web-developer-tools-1.0.html - text: ms-web-developer-tools-1.0.LICENSE + license: ms-web-developer-tools-1.0.LICENSE - license_key: ms-windows-container-base-image-eula-2020 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-win-container-eula-2020 other_spdx_license_keys: - LicenseRef-scancode-ms-windows-container-base-image-eula-2020 is_exception: no is_deprecated: no - category: Proprietary Free + text: | + MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE + FOR WINDOWS CONTAINER BASE IMAGE + + This Supplemental License is for the Windows Container Base Image ("Container Image"). If you comply with the terms of this Supplemental License you may use the Container Image as described below. + + The Container Image may only be used with a validly licensed copy of: + * Windows Server Standard or Windows Server Datacenter software (collectively "Server Host Software"), or + * Microsoft Windows Operating System (version 10) software ("Client Host Software"), or + * Windows 10 IoT Enterprise and Windows 10 IoT Core (collectively "IoT Host Software"). + + The Server Host Software, Client Host Software, and IoT Host Software are collectively referred to as the "Host Software" and a license for Host Software is a "Host License". + + You may not use the Container Image if you do not have a corresponding version and edition of the Host License. Certain restrictions and additional terms may apply, which are described herein. If licensing terms herein conflict with Host License, then this Supplemental License shall govern with respect to the Container Image. BY ACCEPTING THIS SUPPLEMENTAL LICENSE OR USING THE CONTAINER IMAGE, YOU AGREE TO ALL OF THESE TERMS. IF YOU DO NOT ACCEPT AND COMPLY WITH THESE TERMS, YOU MAY NOT USE THE CONTAINER IMAGE. + + DEFINITIONS + + Windows Server Container (without Hyper-V isolation) is a feature of Microsoft Windows Server software. + + Windows Server Container with Hyper-V isolation.[0] Section 2(k) of the Microsoft Windows Server (version 10) license terms is hereby deleted in its entirety and replaced with the revised terms as shown in "UPDATED" below. + UPDATED: Windows Server Container with Hyper-V isolation (formerly known as Hyper-V Container) is a container technology in Windows Server which utilizes a virtual operating system environment to host one or more Windows Server Container(s). Each Hyper-V isolation instance used to host one or more Windows Server Container(s) is considered one virtual operating system environment. + + LICENSE TERMS + + Host License. The Host License terms apply to your use of the Container Image and any Windows container(s) created with the Container Image which are distinct and separate from a virtual machine. + + Use Rights. The Container Image may be used to create an isolated virtualized Windows operating system environment that includes at least one application that adds primary and significant functionality. You may use the Container Image only to create, build, and run Windows container(s) on Host Software. Updates to the Host Software may not update the Container Image so you may re-create any Windows containers based on an updated Container Image. + + Restrictions. You may not remove this Supplemental License document file from the Container Image. You may not enable remote access to the application(s) you run within your container to avoid applicable license fees. You may not reverse engineer, decompile, or disassemble the Container Image, or attempt to do so, except and only to the extent required by third party licensing terms governing the use of certain open-source components that may be included with the software. Additional restrictions in the Host License may apply. + + ADDITIONAL TERMS + + Client Host Software. When running a Container Image on Client Host Software you may run any number of the Container Image instantiated as Windows containers for test or development purposes only. You may not use these Windows containers in a production environment on Client Host Software. + + IoT Host Software. When running a Container Image on IoT Host Software you may run any number of the Container Image instantiated as Windows containers for test or development purposes only. You may only use the Container Image in a production environment if you have agreed to the Microsoft Commercial Terms of Use for Windows 10 Core Runtime Images or the Windows 10 IoT Enterprise Device License ("Windows IoT Commercial Agreement"). Additional terms and restrictions in the Windows IoT Commercial Agreements apply to your use of Container Image in a production environment. + + Third Party Software. The Container Image may include third party applications that are licensed to you under this Supplemental License or under their own terms. License terms, notices, and acknowledgements, if any, for the third-party applications may be accessible online at http://aka.ms/thirdpartynotices or in an accompanying notices file. Even if such applications are governed by other agreements, the disclaimer, limitations on, and exclusions of damages in the Host License also apply to the extent allowed by applicable law. + + Open Source Components. The Container Image may contain third party copyrighted software licensed under open source licenses with source code availability obligations. Copies of those licenses are included in the ThirdPartyNotices file or other accompanying notices file. You may obtain the complete corresponding source code from Microsoft if and as required under the relevant open source license by sending a money order or check for $5.00 to: Source Code Compliance Team, Microsoft Corporation, 1 Microsoft Way, Redmond, WA 98052, USA. Please include the name "Microsoft Software Supplemental License for Windows Container base image", the open source component name and version number in the memo line of your payment. You may also find a copy of the source at http://aka.ms/getsource. json: ms-windows-container-base-image-eula-2020.json - yml: ms-windows-container-base-image-eula-2020.yml + yaml: ms-windows-container-base-image-eula-2020.yml html: ms-windows-container-base-image-eula-2020.html - text: ms-windows-container-base-image-eula-2020.LICENSE + license: ms-windows-container-base-image-eula-2020.LICENSE - license_key: ms-windows-driver-kit + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-windows-driver-kit other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT WINDOWS DRIVER KIT\nThese license terms\ + \ are an agreement between Microsoft Corporation (or based on where you live, one of its\ + \ affiliates) and you. Please read them. They apply to the software named above, which includes\ + \ the media on which you received it, if any. The terms also apply to any Microsoft\n updates,\ + \ \n supplements, \n Internet-based services, and \n support services\nfor this software,\ + \ unless other terms accompany those items. If so, those terms apply.\n\nBy using the software,\ + \ you accept these terms. If you do not accept them, do not use the software. If you comply\ + \ with these license terms, you have the rights below. \n\n1.\tINSTALLATION AND USE RIGHTS.\n\ + a.\tInstallation and Use. One user may install and use any number of copies of the software\ + \ on your devices to design, develop and test your programs.\nb. Included Microsoft Programs.\ + \ The software contains other Microsoft programs. In some cases, those programs and the\ + \ license terms that apply to your use of them are addressed specifically in these license\ + \ terms. For all other included Microsoft programs, these license terms govern your use.\n\ + c.\tDevice Simulation Framework. One user may install and use any number of copies of the\ + \ Device Simulation Framework on your devices for the sole purpose of testing the interoperability\ + \ of your devices, drivers and firmware with Windows. For the avoidance of doubt, the Device\ + \ Simulation Framework shall not be used for testing software you have designed and developed\ + \ using a software development kit other than the Windows Driver Kit.\nd. Third Party Programs.\ + \ The software contains third party programs. These license terms as well as any license\ + \ terms accompanying the third party program files apply to your use of them.\n\n2.\tADDITIONAL\ + \ LICENSING REQUIREMENTS AND/OR USE RIGHTS.\n a.\tDistributable Code. The software contains\ + \ code that you are permitted to distribute in\nprograms you develop if you comply with\ + \ the terms below.\ni.\tRight to Use and Distribute. The code and text files listed below\ + \ are \"Distributable Code.\"\n\tREDIST.TXT Files. You may copy and distribute the object\ + \ code form of code listed in REDIST.TXT files.\n\tSample Code. You may modify, copy and\ + \ distribute only in object code form the sample code found in the SRC directory of the\ + \ Windows Driver Kit, except that you may also modify, copy, and distribute in source code\ + \ form the sample code listed in the SAMPLES.TXT file.\n\tThird Party Distribution. You\ + \ may permit distributors of your programs to copy and distribute the Distributable Code\ + \ as part of those programs.\nii.\tDistribution Requirements. For any Distributable Code\ + \ you distribute, you must \n\tadd significant primary functionality to it in your programs;\ + \ \n\trequire distributors and external end users to agree to terms that protect it at\ + \ least\nas much as this agreement; \n\tdisplay your valid copyright notice on your programs;\ + \ and \n\tindemnify, defend, and hold harmless Microsoft from any claims, including\nattorneys’\ + \ fees, related to the distribution or use of your programs. \n\niii. Distribution Restrictions.\ + \ You may not\n\talter any copyright, trademark or patent notice in the Distributable Code;\ + \ \n\tuse Microsoft’s trademarks in your programs’ names or in a way that suggests your\n\ + programs come from or are endorsed by Microsoft; \n\tdistribute Distributable Code to run\ + \ on a platform other than the Windows platform;\n\tinclude Distributable Code in malicious,\ + \ deceptive or unlawful programs; or \n\tmodify or distribute the source code of any Distributable\ + \ Code so that any part of it becomes subject to an Excluded License. An Excluded License\ + \ is one that requires, as a condition of use, modification or distribution, that the code\ + \ be disclosed or distributed in source code form; or others have the right to modify it.\ + \ \n\n3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives\ + \ you some rights to use the software. Microsoft reserves all other rights. Unless applicable\ + \ law gives you more rights despite this limitation, you may use the software only as expressly\ + \ permitted in this agreement. In doing so, you must comply with any technical limitations\ + \ in the software that only allow you to use it in certain ways.\tYou may not\n\twork around\ + \ any technical limitations in the software; \n\treverse engineer, decompile or disassemble\ + \ the software, except and only to the extent that applicable law expressly permits, despite\ + \ this limitation; \n\tmake more copies of the software than specified in this agreement\ + \ or allowed by applicable law, despite this limitation; \n\tpublish the software for others\ + \ to copy; \n\trent, lease or lend the software; \n\ttransfer the software or this agreement\ + \ to any third party; or \n\tuse the software for commercial software hosting services.\n\ + \n4. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall\ + \ the software.\n\n5. DOCUMENTATION. Any person that has valid access to your computer or\ + \ internal network may copy and use the documentation for your internal, reference purposes.\n\ + \n6. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations.\ + \ You must comply with all domestic and international export laws and regulations that apply\ + \ to the software. These laws include restrictions on destinations, end users and end use.\ + \ For additional information, see www.microsoft.com/exporting.\n\n7.\tSUPPORT SERVICES.\ + \ Because this software is \"as is,\" we may not provide support services for it. \n\n8.\ + \ ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based\ + \ services and support services that you use, are the entire agreement for the software\ + \ and support services.\n\n9.\tAPPLICABLE LAW. \na.\tUnited States. If you acquired the\ + \ software in the United States, Washington state law governs the interpretation of this\ + \ agreement and applies to claims for breach of it, regardless of conflict of laws principles.\ + \ The laws of the state where you live govern all other claims, including claims under state\ + \ consumer protection laws, unfair competition laws, and in tort.\nb. Outside the United\ + \ States. If you acquired the software in any other country, the laws of that country apply.\n\ + \n10. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights\ + \ under the laws of your country. You may also have rights with respect to the party from\ + \ whom you acquired the software. This agreement does not change your rights under the laws\ + \ of your country if the laws of your country do not permit it to do so.\n\n11. DISCLAIMER\ + \ OF WARRANTY. The software is licensed \"as-is.\" You bear the risk of using it. Microsoft\ + \ gives no express warranties, guarantees or conditions. You may have additional consumer\ + \ rights under your local laws which this agreement cannot change. To the extent permitted\ + \ under your local laws, Microsoft excludes the implied warranties of merchantability, fitness\ + \ for a particular purpose and non-infringement.\n\n12. LIMITATION ON AND EXCLUSION OF REMEDIES\ + \ AND DAMAGES.\tYou can recover from Microsoft and its suppliers only direct damages up\ + \ to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits,\ + \ special, indirect or incidental damages.\nThis limitation applies to\n\tanything related\ + \ to the software, services, content (including code) on third party Internet sites, or\ + \ third party programs; and\n\tclaims for breach of contract, breach of warranty, guarantee\ + \ or condition, strict liability, negligence, or other tort to the extent permitted by applicable\ + \ law.\nIt also applies even if Microsoft knew or should have known about the possibility\ + \ of the damages. The above limitation or exclusion may not apply to you because your country\ + \ may not allow the exclusion or limitation of incidental, consequential or other damages." json: ms-windows-driver-kit.json - yml: ms-windows-driver-kit.yml + yaml: ms-windows-driver-kit.yml html: ms-windows-driver-kit.html - text: ms-windows-driver-kit.LICENSE + license: ms-windows-driver-kit.LICENSE - license_key: ms-windows-identity-foundation + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-windows-identity-foundation other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS\nWINDOWS IDENTITY FOUNDATION FOR MICROSOFT\ + \ WINDOWS OPERATING SYSTEMS \n\nMicrosoft Corporation (or based on where you live, one of\ + \ its affiliates) licenses this supplement to you. If you are licensed to use Microsoft\ + \ Windows operating systems software (for which this supplement is applicable) (the \"software\"\ + ), you may use this supplement. You may not use it if you do not have a license for the\ + \ software. You may use this supplement with each validly licensed copy of the software.\n\ + The following license terms describe additional use terms for this supplement. These terms\ + \ and the license terms for the software apply to your use of the supplement. If there is\ + \ a conflict, these supplemental license terms apply.\n\nBy using this supplement, you accept\ + \ these terms. If you do not accept them, do not use this supplement.\nIf you comply with\ + \ these license terms, you have the rights below.\n\n1.\tDISTRIBUTABLE CODE. The supplement\ + \ is comprised of Distributable Code. \"Distributable Code\" is code that you are permitted\ + \ to distribute in programs you develop if you comply with the terms below.\n\na.\tRight\ + \ to Use and Distribute. \n•\tYou may copy and distribute the object code form of the supplement.\n\ + •\tThird Party Distribution. You may permit distributors of your programs to copy and distribute\ + \ the Distributable Code as part of those programs.\n\nb.\tDistribution Requirements. For\ + \ any Distributable Code you distribute, you must\n•\tadd significant primary functionality\ + \ to it in your programs;\n•\tfor any Distributable Code having a filename extension of\ + \ .lib, distribute only the results of running such Distributable Code through a linker\ + \ with your program;\n•\tdistribute Distributable Code included in a setup program only\ + \ as part of that setup program without modification; \n•\trequire distributors and external\ + \ end users to agree to terms that protect it at least as much as this agreement;\n•\tdisplay\ + \ your valid copyright notice on your programs; and\n•\tindemnify, defend, and hold harmless\ + \ Microsoft from any claims, including attorneys’ fees, related to the distribution or use\ + \ of your programs.\n\nc.\tDistribution Restrictions. You may not\n•\talter any copyright,\ + \ trademark or patent notice in the Distributable Code;\n•\tuse Microsoft’s trademarks in\ + \ your programs’ names or in a way that suggests your programs come from or are endorsed\ + \ by Microsoft;\n•\tdistribute Distributable Code to run on a platform other than the Windows\ + \ platform;\n•\tinclude Distributable Code in malicious, deceptive or unlawful programs;\ + \ or\n•\tmodify or distribute the source code of any Distributable Code so that any part\ + \ of it becomes subject to an Excluded License. An Excluded License is one that requires,\ + \ as a condition of use, modification or distribution, that\n•\tthe code be disclosed or\ + \ distributed in source code form; or\n•\tothers have the right to modify it.\n\n2.\tSUPPORT\ + \ SERVICES FOR SUPPLEMENT. Microsoft provides support services for this software as described\ + \ at www.support.microsoft.com/common/international.aspx.\n\nPlease note: As this software\ + \ is distributed in Quebec, Canada, these license terms are provided below in French.\n\ + Remarque : Ce logiciel étant distribué au Québec, Canada, les termes de cette licence sont\ + \ fournis ci-dessous en français.TERMES DU CONTRAT DE LICENCE D’UN SUPPLÉMENT MICROSOFT\n\ + WINDOWS IDENTITY FOUNDATION POUR MICROSOFT WINDOWS OPERATING SYSTEMS \nMicrosoft Corporation\ + \ (ou en fonction du lieu où vous vivez, l’un de ses affiliés) vous accorde une licence\ + \ pour ce supplément. Si vous êtes titulaire d’une licence d’utilisation du logiciel Microsoft\ + \ Windows operating systems (auquel s’applique ce supplément) (le « logiciel »), vous pouvez\ + \ utiliser ce supplément. Vous n’êtes pas autorisé à utiliser ce supplément si vous n’êtes\ + \ pas titulaire d’une licence pour le logiciel. Vous pouvez utiliser une copie de ce supplément\ + \ avec chaque copie concédée sous licence du logiciel.\nLes conditions de licence suivantes\ + \ décrivent les conditions d’utilisation supplémentaires applicables pour ce supplément.\ + \ Les présentes conditions et les conditions de licence pour le logiciel s'appliquent à\ + \ l'utilisation du supplément. En cas de conflit, les présentes conditions de licence supplémentaires\ + \ s’appliquent.\nEn utilisant ce supplément, vous acceptez ces termes. Si vous ne les acceptez\ + \ pas, n’utilisez pas ce supplément.\nDans le cadre du présent accord de licence, vous disposez\ + \ des droits ci-dessous.\n1.\tCODE DISTRIBUABLE. Le supplément constitue du Code Distribuable.\ + \ Le « Code Distribuable » est le code que vous êtes autorisé à distribuer dans les programmes\ + \ que vous développez, sous réserve de vous conformer aux termes ci-après.\na.\tDroit d’utilisation\ + \ et de distribution. \n•\tVous êtes autorisé à copier et à distribuer la version en code\ + \ objet du supplément.\n•\tDistribution par des tierces parties. Vous pouvez autoriser les\ + \ distributeurs de vos programmes à copier et à distribuer le code distribuable en tant\ + \ que partie intégrante de ces programmes.\nb.\tConditions de distribution. Pour pouvoir\ + \ distribuer du code distribuable, vous devez :\n•\ty ajouter des fonctionnalités importantes\ + \ au sein de vos programmes,\n•\tpour tout Code distribuable dont l’extension de nom de\ + \ fichier est .lib, distribuer seulement les résultats de l’exécution de ce Code distribuable\ + \ à l’aide d’un éditeur de liens avec votre programme ;\n•\tdistribuer le Code distribuable\ + \ inclus dans un programme d’installation seulement en tant que partie intégrante de ce\ + \ programme sans modification ;\n•\tlier les distributeurs et les utilisateurs externes\ + \ par un contrat dont les termes les protègent autant que le présent contrat,\n•\tafficher\ + \ votre propre mention de droits d’auteur valable sur vos programmes et\n•\tgarantir et\ + \ défendre Microsoft contre toute réclamation, y compris pour les honoraires d’avocats,\ + \ qui résulterait de la distribution ou l’utilisation de vos programmes.\nc.\tRestrictions\ + \ de distribution. Vous n’êtes pas autorisé à :\n•\tmodifier toute mention de droits d’auteur,\ + \ de marques ou de droits de propriété industrielle pouvant figurer dans le code distribuable,\n\ + •\tutiliser les marques de Microsoft dans les noms de vos programmes ou d’une façon qui\ + \ suggère que vos programmes sont fournis par Microsoft ou sous la responsabilité de Microsoft,\n\ + •\tdistribuer le Code distribuable en vue de son exécution sur une plate-forme autre que\ + \ la plate-forme Windows,\n•\tinclure le Code distribuable dans des programmes malveillants,\ + \ trompeurs ou interdits par la loi, ou\n•\tmodifier ou distribuer le code source de code\ + \ distribuable de manière à ce qu’il fasse l’objet, en partie ou dans son intégralité, d’une\ + \ Licence Exclue. Une Licence Exclue implique comme condition d’utilisation, de modification\ + \ ou de distribution, que :\n•\tle code soit dévoilé ou distribué dans sa forme de code\ + \ source, ou\n•\td’autres aient le droit de le modifier.\n2.\tSERVICES D’ASSISTANCE TECHNIQUE\ + \ POUR LE SUPPLÉMENT. Microsoft fournit des services d’assistance technique pour ce logiciel\ + \ disponibles sur le site www.support.microsoft.com/common/international.aspx." json: ms-windows-identity-foundation.json - yml: ms-windows-identity-foundation.yml + yaml: ms-windows-identity-foundation.yml html: ms-windows-identity-foundation.html - text: ms-windows-identity-foundation.LICENSE + license: ms-windows-identity-foundation.LICENSE - license_key: ms-windows-os-2018 + category: Commercial spdx_license_key: LicenseRef-scancode-ms-windows-os-2018 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Last updated June 2018\nMICROSOFT SOFTWARE LICENSE TERMS\nWINDOWS OPERATING SYSTEM\n\ + IF YOU LIVE IN (OR IF YOUR PRINCIPAL PLACE OF BUSINESS IS IN) THE UNITED STATES, PLEASE\ + \ READ THE BINDING ARBITRATION CLAUSE AND CLASS ACTION WAIVER IN SECTION 11. IT AFFECTS\ + \ HOW DISPUTES ARE RESOLVED.\nThank you for choosing Microsoft!\nDepending on how you obtained\ + \ the Windows software, this is a license agreement between (i) you and the device manufacturer\ + \ or software installer that distributes the software with your device; or (ii) you and\ + \ Microsoft Corporation (or, based on where you live or, if a business, where your principal\ + \ place of business is located, one of its affiliates) if you acquired the software from\ + \ a retailer. Microsoft is the device manufacturer for devices produced by Microsoft or\ + \ one of its affiliates, and Microsoft is the retailer if you acquired the software directly\ + \ from Microsoft. Note that if you are a volume license customer, use of this software is\ + \ subject to your volume license agreement rather than this agreement.\nThis agreement describes\ + \ your rights and the conditions upon which you may use the Windows software. You should\ + \ review the entire agreement, including any supplemental license terms that accompany the\ + \ software and any linked terms, because all of the terms are important and together create\ + \ this agreement that applies to you. You can review linked terms by pasting the (aka.ms/)\ + \ link into a browser window.\nBy accepting this agreement or using the software, you agree\ + \ to all of these terms, and consent to the transmission of certain information during activation\ + \ and during your use of the software as per the privacy statement described in Section\ + \ 3. If you do not accept and comply with these terms, you may not use the software or its\ + \ features. You may contact the device manufacturer or installer, or your retailer if you\ + \ purchased the software directly, to determine its return policy and return the software\ + \ or device for a refund or credit under that policy. You must comply with that policy,\ + \ which might require you to return the software with the entire device on which the software\ + \ is installed for a refund or credit, if any.\n1.\tOverview.\na.\tApplicability. This agreement\ + \ applies to the Windows software that is preinstalled on your device, or acquired from\ + \ a retailer and installed by you, the media on which you received the software (if any),\ + \ any fonts, icons, images or sound files included with the software, and also any Microsoft\ + \ updates, upgrades, supplements or services for the software, unless other terms come with\ + \ them. It also applies to Windows apps developed by Microsoft that provide functionality\ + \ such as mail, contacts, music and photos that are included with and are a part of Windows.\ + \ If this agreement contains terms regarding a feature or service not available on your\ + \ device, then those terms do not apply.\nb.\tAdditional terms. Additional Microsoft and\ + \ third-party terms may apply to your use of certain features, services and apps, depending\ + \ on your device’s capabilities, how it is configured, and how you use it. Please be sure\ + \ to read them.\n(i)\tSome Windows apps provide an access point to, or rely on, online services,\ + \ and the use of those services is sometimes governed by separate terms and privacy policies,\ + \ such as the Microsoft Services Agreement at (aka.ms/msa). You can view these terms and\ + \ policies by looking at the service terms of use or the app’s settings, as applicable.\ + \ The services may not be available in all regions.\n(ii)\tMicrosoft, the device manufacturer\ + \ or installer may include additional apps, which will be subject to separate license terms\ + \ and privacy policies.\n(iii)\tThe software includes Adobe Flash Player that is licensed\ + \ under terms from Adobe Systems Incorporated at (aka.ms/adobeflash). Adobe and Flash are\ + \ either registered trademarks or trademarks of Adobe Systems Incorporated in the United\ + \ States and/or other countries.\n(iv)\tThe software may include third-party programs that\ + \ are licensed to you under this agreement, or under their own terms. License terms, notices\ + \ and acknowledgements, if any, for the third-party programs can be viewed at (aka.ms/thirdpartynotices).\n\ + (v)\tTo the extent included with Windows, Word, Excel, PowerPoint and OneNote are licensed\ + \ for your personal, non-commercial use, unless you have commercial use rights under a separate\ + \ agreement.\n2.\tInstallation and Use Rights.\na.\tLicense. The software is licensed, not\ + \ sold. Under this agreement, we grant you the right to install and run one instance of\ + \ the software on your device (the licensed device), for use by one person at a time, so\ + \ long as you comply with all the terms of this agreement. Updating or upgrading from non-genuine\ + \ software with software from Microsoft or authorized sources does not make your original\ + \ version or the updated/upgraded version genuine, and in that situation, you do not have\ + \ a license to use the software.\nb.\tDevice. In this agreement, “device” means a hardware\ + \ system (whether physical or virtual) with an internal storage device capable of running\ + \ the software. A hardware partition or blade is considered to be a device.\nc.\tRestrictions.\ + \ The device manufacturer or installer and Microsoft reserve all rights (such as rights\ + \ under intellectual property laws) not expressly granted in this agreement. For example,\ + \ this license does not give you any right to, and you may not:\n(i)\tuse or virtualize\ + \ features of the software separately;\n(ii)\tpublish, copy (other than the permitted backup\ + \ copy), rent, lease, or lend the software;\n(iii)\ttransfer the software (except as permitted\ + \ by this agreement);\n(iv)\twork around any technical restrictions or limitations in the\ + \ software;\n(v)\tuse the software as server software, for commercial hosting, make the\ + \ software available for simultaneous use by multiple users over a network, install the\ + \ software on a server and allow users to access it remotely, or install the software on\ + \ a device for use only by remote users;\n(vi)\treverse engineer, decompile, or disassemble\ + \ the software, or attempt to do so, except and only to the extent that the foregoing restriction\ + \ is (a) permitted by applicable law; (b) permitted by licensing terms governing the use\ + \ of open-source components that may be included with the software; or (c) required to debug\ + \ changes to any libraries licensed under the GNU Lesser General Public License which are\ + \ included with and linked to by the software; and\n(vii)\twhen using Internet-based features\ + \ you may not use those features in any way that could interfere with anyone else’s use\ + \ of them, or to try to gain access to or use any service, data, account, or network, in\ + \ an unauthorized manner.\nd.\tMulti use scenarios.\n(i)\tMultiple versions. If when acquiring\ + \ the software you were provided with multiple versions (such as 32-bit and 64-bit versions),\ + \ you may install and activate only one of those versions at a time.\n(ii)\tMultiple or\ + \ pooled connections. Hardware or software you use to multiplex or pool connections, or\ + \ reduce the number of devices or users that access or use the software, does not reduce\ + \ the number of licenses you need. You may only use such hardware or software if you have\ + \ a license for each instance of the software you are using.\n(iii)\tDevice connections.\ + \ You may allow up to 20 other devices to access the software installed on the licensed\ + \ device for the purpose of using the following software features: file services, print\ + \ services, Internet information services, and Internet connection sharing and telephony\ + \ services on the licensed device. You may allow any number of devices to access the software\ + \ on the licensed device to synchronize data between devices. This section does not mean,\ + \ however, that you have the right to install the software, or use the primary function\ + \ of the software (other than the features listed in this section), on any of these other\ + \ devices.\n(iv)\tUse in a virtualized environment. This license allows you to install only\ + \ one instance of the software for use on one device, whether that device is physical or\ + \ virtual. If you want to use the software on more than one virtual device, you must obtain\ + \ a separate license for each instance.\n(v)\tRemote access. No more than once every 90\ + \ days, you may designate a single user who physically uses the licensed device as the licensed\ + \ user. The licensed user may access the licensed device from another device using remote\ + \ access technologies. Other users, at different times, may access the licensed device from\ + \ another device using remote access technologies, but only on devices separately licensed\ + \ to run the same or higher edition of this software.\n(vi)\tRemote assistance. You may\ + \ use remote assistance technologies to share an active session without obtaining any additional\ + \ licenses for the software. Remote assistance allows one user to connect directly to another\ + \ user’s computer, usually to correct problems.\ne.\tBackup copy. You may make a single\ + \ copy of the software for backup purposes, and may also use that backup copy to transfer\ + \ the software if it was acquired as stand-alone software, as described in Section 4 below.\n\ + 3.\tPrivacy; Consent to Use of Data. Your privacy is important to us. Some of the software\ + \ features send or receive information when using those features. Many of these features\ + \ can be switched off in the user interface, or you can choose not to use them. By accepting\ + \ this agreement and using the software you agree that Microsoft may collect, use, and disclose\ + \ the information as described in the Microsoft Privacy Statement (aka.ms/privacy), and\ + \ as may be described in the user interface associated with the software features.\n4.\t\ + Transfer. The provisions of this section do not apply if you acquired the software in Germany\ + \ or in any of the countries listed on this site (aka.ms/transfer), in which case any transfer\ + \ of the software to a third party, and the right to use it, must comply with applicable\ + \ law.\na.\tSoftware preinstalled on device. If you acquired the software preinstalled on\ + \ a device (and also if you upgraded from software preinstalled on a device), you may transfer\ + \ the license to use the software directly to another user, only with the licensed device.\ + \ The transfer must include the software and, if provided with the device, an authentic\ + \ Windows label including the product key. Before any permitted transfer, the other party\ + \ must agree that this agreement applies to the transfer and use of the software.\nb.\t\ + Stand-alone software. If you acquired the software as stand-alone software (and also if\ + \ you upgraded from software you acquired as stand-alone software), you may transfer the\ + \ software to another device that belongs to you. You may also transfer the software to\ + \ a device owned by someone else if (i) you are the first licensed user of the software\ + \ and (ii) the new user agrees to the terms of this agreement. You may use the backup copy\ + \ we allow you to make or the media that the software came on to transfer the software.\ + \ Every time you transfer the software to a new device, you must remove the software from\ + \ the prior device. You may not transfer the software to share licenses between devices.\n\ + 5.\tAuthorized Software and Activation. You are authorized to use this software only if\ + \ you are properly licensed and the software has been properly activated with a genuine\ + \ product key or by other authorized method. When you connect to the Internet while using\ + \ the software, the software will automatically contact Microsoft or its affiliate to conduct\ + \ activation to associate it with a certain device. You can also activate the software manually\ + \ by Internet or telephone. In either case, transmission of certain information will occur,\ + \ and Internet, telephone and SMS service charges may apply. During activation (or reactivation\ + \ that may be triggered by changes to your device’s components), the software may determine\ + \ that the installed instance of the software is counterfeit, improperly licensed or includes\ + \ unauthorized changes. If activation fails, the software will attempt to repair itself\ + \ by replacing any tampered Microsoft software with genuine Microsoft software. You may\ + \ also receive reminders to obtain a proper license for the software. Successful activation\ + \ does not confirm that the software is genuine or properly licensed. You may not bypass\ + \ or circumvent activation. To help determine if your software is genuine and whether you\ + \ are properly licensed, see (aka.ms/genuine). Certain updates, support, and other services\ + \ might only be offered to users of genuine Microsoft software.\n6.\tUpdates. The software\ + \ periodically checks for system and app updates, and downloads and installs them for you.\ + \ You may obtain updates only from Microsoft or authorized sources, and Microsoft may need\ + \ to update your system to provide you with those updates. By accepting this agreement,\ + \ you agree to receive these types of automatic updates without any additional notice.\n\ + 7.\tDowngrade Rights. If you acquired a device from a manufacturer or installer with a Professional\ + \ version of Windows preinstalled on it and it is configured to run in full feature mode,\ + \ you may use either a Windows 8.1 Pro or Windows 7 Professional version, but only for so\ + \ long as Microsoft provides support for that earlier version as set forth in (aka.ms/windowslifecycle).\ + \ This agreement applies to your use of the earlier versions. If the earlier version includes\ + \ different components, any terms for those components in the agreement that comes with\ + \ the earlier version apply to your use of such components. Neither the device manufacturer\ + \ or installer, nor Microsoft, is obligated to supply earlier versions to you. You must\ + \ obtain the earlier version separately, for which you may be charged a fee. At any time,\ + \ you may replace an earlier version with the version you originally acquired.\n8.\tExport\ + \ Restrictions. You must comply with all domestic and international export laws and regulations\ + \ that apply to the software, which include restrictions on destinations, end users, and\ + \ end use. For further information on export restrictions, visit (aka.ms/exporting).\n\ + 9.\tWarranty, Disclaimer, Remedy, Damages and Procedures. \na.\tLimited Warranty. Depending\ + \ on how you obtained the Windows software, Microsoft, or the device manufacturer or installer,\ + \ warrants that properly licensed software will perform substantially as described in any\ + \ Microsoft materials that accompany the software. This limited warranty does not cover\ + \ problems that you cause, that arise when you fail to follow instructions, or that are\ + \ caused by events beyond the reasonable control of Microsoft, or the device manufacturer\ + \ or installer. The limited warranty starts when the first user acquires the software, and\ + \ lasts for one year if acquired from Microsoft, or for 90 days if acquired from a device\ + \ manufacturer or installer. If you obtain updates or supplements directly from Microsoft\ + \ during the 90-day term of the device manufacturer’s or installer’s limited warranty, Microsoft\ + \ provides the limited warranty for those updates or supplements. Any supplements, updates,\ + \ or replacement software that you may receive from Microsoft during that year are also\ + \ covered, but only for the remainder of that one-year period if acquired from Microsoft,\ + \ or for 90 days if acquired from a device manufacturer or installer, or for 30 days, whichever\ + \ is longer. Transferring the software will not extend the limited warranty.\nb.\tDisclaimer.\ + \ Neither Microsoft, nor the device manufacturer or installer, gives any other express warranties,\ + \ guarantees, or conditions. Microsoft and the device manufacturer and installer exclude\ + \ all implied warranties and conditions, including those of merchantability, fitness for\ + \ a particular purpose, and non-infringement. If your local law does not allow the exclusion\ + \ of implied warranties, then any implied warranties, guarantees, or conditions last only\ + \ during the term of the limited warranty and are limited as much as your local law allows.\ + \ If your local law requires a longer limited warranty term, despite this agreement, then\ + \ that longer term will apply, but you can recover only the remedies this agreement allows.\n\ + c.\tLimited Remedy. If Microsoft, or the device manufacturer or installer, breaches its\ + \ limited warranty, it will, at its election, either: (i) repair or replace the software\ + \ at no charge, or (ii) accept return of the software (or at its election the device on\ + \ which the software was preinstalled) for a refund of the amount paid, if any. The device\ + \ manufacturer or installer (or Microsoft if you acquired them directly from Microsoft)\ + \ may also repair or replace supplements, updates, and replacement of the software or provide\ + \ a refund of the amount you paid for them, if any. These are your only remedies for breach\ + \ of warranty. This limited warranty gives you specific legal rights, and you may also have\ + \ other rights which vary from state to state or country to country. \nd.\tDamages. Except\ + \ for any repair, replacement, or refund that Microsoft, or the device manufacturer or installer,\ + \ may provide, you may not under this limited warranty, under any other part of this agreement,\ + \ or under any theory, recover any damages or other remedy, including lost profits or direct,\ + \ consequential, special, indirect, or incidental damages. The damage exclusions and remedy\ + \ limitations in this agreement apply even if repair, replacement, or a refund does not\ + \ fully compensate you for any losses, if Microsoft, or the device manufacturer or installer,\ + \ knew or should have known about the possibility of the damages, or if the remedy fails\ + \ of its essential purpose. Some states and countries do not allow the exclusion or limitation\ + \ of incidental, consequential, or other damages, so those limitations or exclusions may\ + \ not apply to you. If your local law allows you to recover damages from Microsoft, or the\ + \ device manufacturer or installer, even though this agreement does not, you cannot recover\ + \ more than you paid for the software (or up to $50 USD if you acquired the software for\ + \ no charge).\ne.\tWarranty and Refund Procedures. For service or refund, you must provide\ + \ a copy of your proof of purchase and comply with Microsoft’s return policies if you acquired\ + \ the software from Microsoft, or the device manufacturer’s or installer’s return policies\ + \ if you acquired the software from a device manufacturer or installer. If you purchased\ + \ stand-alone software, those return policies might require you to uninstall the software\ + \ and return it to Microsoft. If you acquired the software pre-installed on a device, those\ + \ return policies may require return of the software with the entire device on which the\ + \ software is installed; the certificate of authenticity label including the product key\ + \ (if provided with your device) must remain affixed. Contact the device manufacturer or\ + \ installer at the address or toll-free telephone number provided with your device to find\ + \ out how to obtain warranty service for the software. If Microsoft is your device manufacturer\ + \ or if you acquired the software from a retailer, contact Microsoft at:\n(i)\tUnited States\ + \ and Canada. For warranty service or information about how to obtain a refund for software\ + \ acquired in the United States or Canada, contact Microsoft via telephone at (800) MICROSOFT;\ + \ via mail at Microsoft Customer Service and Support, One Microsoft Way, Redmond, WA 98052-6399;\ + \ or visit (aka.ms/nareturns).\n(ii)\tEurope, Middle East, and Africa. If you acquired the\ + \ software in Europe, the Middle East, or Africa, contact either Microsoft Ireland Operations\ + \ Limited, Customer Care Centre, Atrium Building Block B, Carmanhall Road, Sandyford Industrial\ + \ Estate, Dublin 18, Ireland, or the Microsoft affiliate serving your country (aka.ms/msoffices).\n\ + (iii)\tAustralia. If you acquired the software in Australia, contact Microsoft to make a\ + \ claim at 13 20 58; or Microsoft Pty Ltd, 1 Epping Road, North Ryde NSW 2113 Australia.\n\ + (iv)\tOther countries. If you acquired the software in another country, contact the Microsoft\ + \ affiliate serving your country (aka.ms/msoffices).\n10.\tSupport.\na.\tFor software preinstalled\ + \ on a device. For the software generally, contact the device manufacturer or installer\ + \ for support options. Refer to the support number provided with the software. For updates\ + \ and supplements obtained directly from Microsoft, Microsoft may provide limited support\ + \ services for properly licensed software as described at (aka.ms/mssupport). \nb.\tFor\ + \ software acquired from a retailer. Microsoft provides limited support services for properly\ + \ licensed software as described at (aka.ms/mssupport).\n11.\tBinding Arbitration and Class\ + \ Action Waiver if You Live in (or, if a Business, Your Principal Place of Business is in)\ + \ the United States.\nWe hope we never have a dispute, but if we do, you and we agree to\ + \ try for 60 days to resolve it informally. If we can’t, you and we agree to binding individual\ + \ arbitration before the American Arbitration Association (“AAA”) under the Federal Arbitration\ + \ Act (“FAA”), and not to sue in court in front of a judge or jury. Instead, a neutral arbitrator\ + \ will decide and the arbitrator’s decision will be final except for a limited right of\ + \ review under the FAA. Class action lawsuits, class-wide arbitrations, private attorney-general\ + \ actions, and any other proceeding where someone acts in a representative capacity aren’t\ + \ allowed. Nor is combining individual proceedings without the consent of all parties. “We,”\ + \ “our,” and “us” includes Microsoft, the device manufacturer, and software installer.\n\ + a.\tDisputes covered—everything except IP. The term “dispute” is as broad as it can be.\ + \ It includes any claim or controversy between you and the device manufacturer or installer,\ + \ or you and Microsoft, concerning the software, its price, or this agreement, under any\ + \ legal theory including contract, warranty, tort, statute, or regulation, except disputes\ + \ relating to the enforcement or validity of your, your licensors’, our, or our licensors’\ + \ intellectual property rights.\nb.\tMail a Notice of Dispute first. If you have a dispute\ + \ and our customer service representatives can’t resolve it, send a Notice of Dispute by\ + \ U.S. Mail to the device manufacturer or installer, ATTN: LEGAL DEPARTMENT. If your dispute\ + \ is with Microsoft, mail it to Microsoft Corporation, ATTN: CELA ARBITRATION, One Microsoft\ + \ Way, Redmond, WA 98052-6399. Tell us your name, address, how to contact you, what the\ + \ problem is, and what you want. A form is available at (aka.ms/disputeform). We’ll do the\ + \ same if we have a dispute with you. After 60 days, you or we may start an arbitration\ + \ if the dispute is unresolved.\nc.\tSmall claims court option. Instead of mailing a Notice\ + \ of Dispute, and if you meet the court’s requirements, you may sue us in small claims court\ + \ in your county of residence (or, if a business, your principal place of business) or our\ + \ principal place of business—King County, Washington USA if your dispute is with Microsoft.\ + \ \nd.\tArbitration procedure. The AAA will conduct any arbitration under its Commercial\ + \ Arbitration Rules (or if you are an individual and use the software for personal or household\ + \ use, or if the value of the dispute is $75,000 USD or less whether or not you are an individual\ + \ or how you use the software, its Consumer Arbitration Rules). For more information, see\ + \ (aka.ms/adr) or call 1-800-778-7879. To start an arbitration, submit the form available\ + \ at (aka.ms/arbitration) to the AAA; mail a copy to the device manufacturer or installer\ + \ (or to Microsoft if your dispute is with Microsoft). In a dispute involving $25,000 USD\ + \ or less, any hearing will be telephonic unless the arbitrator finds good cause to hold\ + \ an in-person hearing instead. Any in-person hearing will take place in your county of\ + \ residence (or, if a business, your principal place of business) or our principal place\ + \ of business—King County, Washington if your dispute is with Microsoft. You choose. The\ + \ arbitrator may award the same damages to you individually as a court could. The arbitrator\ + \ may award declaratory or injunctive relief only to you individually to satisfy your individual\ + \ claim. Under AAA rules, the arbitrator rules on his or her own jurisdiction, including\ + \ the arbitrability of any claim. But a court has exclusive authority to enforce the prohibition\ + \ on arbitration on a class-wide basis or in a representative capacity.\ne.\tArbitration\ + \ fees and payments.\n(i)\tDisputes involving $75,000 USD or less. The device manufacturer\ + \ or installer (or Microsoft if your dispute is with Microsoft) will promptly reimburse\ + \ your filing fees and pay the AAA’s and arbitrator’s fees and expenses. If you reject our\ + \ last written settlement offer made before the arbitrator was appointed, your dispute goes\ + \ all the way to an arbitrator’s decision (called an “award”), and the arbitrator awards\ + \ you more than this last written offer, the device manufacturer or installer (or Microsoft\ + \ if your dispute is with Microsoft) will: (1) pay the greater of the award or $1,000 USD;\ + \ (2) pay your reasonable attorney’s fees, if any; and (3) reimburse any expenses (including\ + \ expert witness fees and costs) that your attorney reasonably accrues for investigating,\ + \ preparing, and pursuing your claim in arbitration.\n(ii)\tDisputes involving more than\ + \ $75,000 USD. The AAA rules will govern payment of filing fees and the AAA’s and arbitrator’s\ + \ fees and expenses.\nf.\tMust file within one year. You and we must file in small claims\ + \ court or arbitration any claim or dispute (except intellectual property disputes — see\ + \ Section 11.a.) within one year from when it first could be filed. Otherwise, it’s permanently\ + \ barred.\ng.\tSeverability. If any part of Section 11 (Binding Arbitration and Class Action\ + \ Waiver) is found to be illegal or unenforceable, the remainder will remain in effect (with\ + \ an arbitration award issued before any court proceeding begins), except that if a finding\ + \ of partial illegality or unenforceability would allow class-wide or representative arbitration,\ + \ Section 11 will be unenforceable in its entirety.\nh.\tConflict with AAA rules. This agreement\ + \ governs if it conflicts with the AAA’s Commercial Arbitration Rules or Consumer Arbitration\ + \ Rules.\ni.\tMicrosoft as party or third-party beneficiary. If Microsoft is the device\ + \ manufacturer or if you acquired the software from a retailer, Microsoft is a party to\ + \ this agreement. Otherwise, Microsoft is not a party but is a third-party beneficiary of\ + \ your agreement with the device manufacturer or installer to resolve disputes through informal\ + \ negotiation and arbitration.\n12.\tGoverning Law. The laws of the state or country where\ + \ you live (or, if a business, where your principal place of business is located) govern\ + \ all claims and disputes concerning the software, its price, or this agreement, including\ + \ breach of contract claims and claims under consumer protection laws, unfair competition\ + \ laws, implied warranty laws, for unjust enrichment, and in tort, regardless of conflict\ + \ of law principles. In the United States, the FAA governs all provisions relating to arbitration.\n\ + 13.\tConsumer Rights, Regional Variations. This agreement describes certain legal rights.\ + \ You may have other rights, including consumer rights, under the laws of your state or\ + \ country. You may also have rights with respect to the party from which you acquired the\ + \ software. This agreement does not change those other rights if the laws of your state\ + \ or country do not permit it to do so. For example, if you acquired the software in one\ + \ of the below regions, or mandatory country law applies, then the following provisions\ + \ apply to you:\na.\tAustralia. References to “Limited Warranty” are references to the express\ + \ warranty provided by Microsoft or the device manufacturer or installer. This warranty\ + \ is given in addition to other rights and remedies you may have under law, including your\ + \ rights and remedies under the Australian Consumer Law consumer guarantees. Nothing in\ + \ this agreement limits or changes those rights and remedies. In particular:.\n(i)\tthe\ + \ provisions excluding and limiting warranties, guarantees, damages and remedies, and limiting\ + \ duration of your rights under local laws in Section 9 headed Warranty, Disclaimer, Remedy,\ + \ Damages and Procedures do not apply to the Australian Consumer Law consumer guarantees\ + \ and your rights and remedies under them;\n(ii)\tsupport and refund policies referred to\ + \ in Section 10 are subject to the Australian Consumer Law;\n(iii)\tthe Australian Consumer\ + \ Law consumer guarantees apply to the evaluation software described in Section 14 d (ii)\ + \ and the preview software described in Section 14 d (iv); and\n(iv)\tour goods come with\ + \ guarantees that cannot be excluded under the Australian Consumer Law. In this section,\ + \ “goods” refers to the software for which Microsoft, the device manufacturer or installer\ + \ provides the express warranty. You are entitled to a replacement or refund for a major\ + \ failure and compensation for any other reasonably foreseeable loss or damage. You are\ + \ also entitled to have the goods repaired or replaced if the goods fail to be of acceptable\ + \ quality and the failure does not amount to a major failure.\nTo learn more about your\ + \ rights under the Australian Consumer Law, please review the information at (aka.ms/acl).\n\ + b.\tCanada. You may stop receiving updates on your device by turning off Internet access.\ + \ If and when you re-connect to the Internet, the software will resume checking for and\ + \ installing updates.\nc.\tEuropean Union. The academic use restriction in Section 14.d(i)\ + \ below does not apply in the jurisdictions listed on this site: (aka.ms/academicuse).\n\ + d.\tGermany and Austria.\n(i)\tWarranty. The properly licensed software will perform substantially\ + \ as described in any Microsoft materials that accompany the software. However, the device\ + \ manufacturer or installer, and Microsoft, give no contractual guarantee in relation to\ + \ the licensed software.\n(ii)\tLimitation of Liability. In case of intentional conduct,\ + \ gross negligence, claims based on the Product Liability Act, as well as, in case of death\ + \ or personal or physical injury, the device manufacturer or installer, or Microsoft is\ + \ liable according to the statutory law.\nSubject to the preceding sentence, the device\ + \ manufacturer or installer, or Microsoft will only be liable for slight negligence if the\ + \ device manufacturer or installer or Microsoft is in breach of such material contractual\ + \ obligations, the fulfillment of which facilitate the due performance of this agreement,\ + \ the breach of which would endanger the purpose of this agreement and the compliance with\ + \ which a party may constantly trust in (so-called \"cardinal obligations\"). In other cases\ + \ of slight negligence, the device manufacturer or installer or Microsoft will not be liable\ + \ for slight negligence.\ne.\tOther regions. See (aka.ms/variations) for a current list\ + \ of regional variations.\n14.\tAdditional Notices.\na.\tNetworks, data and Internet usage.\ + \ Some features of the software and services accessed through the software may require your\ + \ device to access the Internet. Your access and usage (including charges) may be subject\ + \ to the terms of your cellular or internet provider agreement. Certain features of the\ + \ software may help you access the Internet more efficiently, but the software’s usage calculations\ + \ may be different from your service provider’s measurements. You are always responsible\ + \ for (i) understanding and complying with the terms of your own plans and agreements, and\ + \ (ii) any issues arising from using or accessing networks, including public/open networks.\ + \ You may use the software to connect to networks, and to share access information about\ + \ those networks, only if you have permission to do so.\nb.\tH.264/AVC and MPEG-4 visual\ + \ standards and VC-1 video standards. The software may include H.264/MPEG-4 AVC and/or VC-1\ + \ decoding technology. MPEG LA, L.L.C. requires this notice:\nTHIS PRODUCT IS LICENSED UNDER\ + \ THE AVC, THE VC-1, AND THE MPEG-4 PART 2 VISUAL PATENT PORTFOLIO LICENSES FOR THE PERSONAL\ + \ AND NON-COMMERCIAL USE OF A CONSUMER TO (i) ENCODE VIDEO IN COMPLIANCE WITH THE ABOVE\ + \ STANDARDS (“VIDEO STANDARDS”) AND/OR (ii) DECODE AVC, VC-1, AND MPEG-4 PART 2 VIDEO THAT\ + \ WAS ENCODED BY A CONSUMER ENGAGED IN A PERSONAL AND NON-COMMERCIAL ACTIVITY AND/OR WAS\ + \ OBTAINED FROM A VIDEO PROVIDER LICENSED TO PROVIDE SUCH VIDEO. NO LICENSE IS GRANTED OR\ + \ SHALL BE IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED FROM MPEG LA,\ + \ L.L.C. SEE (AKA.MS/MPEGLA).\nc.\tMalware protection. Microsoft cares about protecting\ + \ your device from malware. The software will turn on malware protection if other protection\ + \ is not installed or has expired. To do so, other antimalware software will be disabled\ + \ or may have to be removed.\nd.\tLimited rights versions. If the software version you acquired\ + \ is marked or otherwise intended for a specific or limited use, then you may only use it\ + \ as specified. You may not use such versions of the software for commercial, non-profit,\ + \ or revenue-generating activities.\n(i)\tAcademic. For academic use, you must be a student,\ + \ faculty or staff of an educational institution at the time of purchase.\n(ii)\tEvaluation.\ + \ For evaluation (or test or demonstration) use, you may not sell the software, use it in\ + \ a live operating environment, or use it after the evaluation period. Notwithstanding anything\ + \ to the contrary in this Agreement, evaluation software is provided “AS IS” and no warranty,\ + \ implied or express (including the Limited Warranty), applies to these versions.\n(iii)\t\ + NFR. You may not sell software marked as “NFR” or “Not for Resale”.\n(iv)\tPreview. You\ + \ may choose to use preview, insider, beta, or other pre-release versions of the software\ + \ (“previews”) that Microsoft may make available. You may use previews only up to the software’s\ + \ expiration date and so long as you comply with all the terms of this agreement. Previews\ + \ are experimental and may be substantially different from the commercially released version.\ + \ Notwithstanding anything to the contrary in this agreement, previews are provided “AS\ + \ IS,” and no warranty, implied or express (including the Limited Warranty), applies to\ + \ these versions. By installing previews on your device, you may void or impact your device\ + \ warranty and may not be entitled to support from your device manufacturer or network operator,\ + \ if applicable. Microsoft is not responsible for any damage thereby caused to you. Microsoft\ + \ may not provide support services for previews. If you provide Microsoft comments, suggestions\ + \ or other feedback about the preview (“submission”), you grant Microsoft and its partners\ + \ rights to use the submission in any way and for any purpose.\n15.\tEntire Agreement. This\ + \ agreement (together with the printed paper license terms or other terms accompanying any\ + \ software supplements, updates, and services that are provided by the device manufacturer\ + \ or installer, or Microsoft, and that you use), and the terms contained in web links listed\ + \ in this agreement, are the entire agreement for the software and any such supplements,\ + \ updates, and services (unless the device manufacturer or installer, or Microsoft, provides\ + \ other terms with such supplements, updates, or services). You can review this agreement\ + \ after your software is running by going to (aka.ms/useterms) or going to Settings - System\ + \ - About within the software. You can also review the terms at any of the links in this\ + \ agreement by typing the URLs into a browser address bar, and you agree to do so. You agree\ + \ that you will read the terms before using the software or services, including any linked\ + \ terms. You understand that by using the software and services, you ratify this agreement\ + \ and the linked terms. There are also informational links in this agreement. The links\ + \ containing notices and binding terms are:\n·\tMicrosoft Privacy Statement (aka.ms/privacy)\n\ + ·\tMicrosoft Services Agreement (aka.ms/msa)\n·\tAdobe Flash Player License Terms (aka.ms/adobeflash)" json: ms-windows-os-2018.json - yml: ms-windows-os-2018.yml + yaml: ms-windows-os-2018.yml html: ms-windows-os-2018.html - text: ms-windows-os-2018.LICENSE + license: ms-windows-os-2018.LICENSE - license_key: ms-windows-sdk-server-2008-net-3.5 + category: Commercial spdx_license_key: LicenseRef-scancode-ms-win-sdk-server-2008-net-3.5 other_spdx_license_keys: - LicenseRef-scancode-ms-windows-sdk-server-2008-net-3.5 is_exception: no is_deprecated: no - category: Commercial + text: "Microsoft Windows SDK for Windows Server 2008 and .NET Framework 3.5 License\n\nMICROSOFT\ + \ SOFTWARE LICENSE TERMS\nThese license terms are an agreement between Microsoft Corporation\ + \ (or based on where you live, one of its affiliates) and you. Please read them. They apply\ + \ to the software named above, which includes the media on which you received it, if any.\ + \ The terms also apply to any Microsoft \n\U0010FC00 updates,\n\U0010FC00 supplements,\n\ + \U0010FC00 Internet-based services, and \n\U0010FC00 support services \nfor this software,\ + \ unless other terms accompany those items. If so, those terms apply.\n\nBY USING THE SOFTWARE,\ + \ YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\nIf you comply\ + \ with these license terms, you have the rights below. \n\n1. INSTALLATION AND USE RIGHTS.\n\ + a. Installation and Use. One user may install and use any number of copies of the software\ + \ on your devices to design, develop and test your programs that run on a Microsoft Windows\ + \ operating system.\nb. Included Microsoft Programs. The software contains other Microsoft\ + \ programs. These license terms apply to your use of those programs.\n\n2. ADDITIONAL LICENSING\ + \ REQUIREMENTS AND/OR USE RIGHTS. \n\na. Distributable Code. The software contains code\ + \ that you are permitted to distribute in programs you develop if you comply with the terms\ + \ below. \ni. Right to Use and Distribute. \nThe code and text files listed below are \"\ + Distributable Code.\"\n\U0010FC00 REDIST.TXT Files. You may copy and distribute the object\ + \ code form of code listed in REDIST.TXT files. \n\U0010FC00 Sample Code. You may modify,\ + \ copy, and distribute the source and object code form of code marked as \"sample.\"\n\U0010FC00\ + \ Microsoft Merge Modules. You may copy and distribute the unmodified output of Microsoft\ + \ Merge Modules. \n\U0010FC00 Third Party Distribution. You may permit distributors of your\ + \ programs to copy and distribute the Distributable Code as part of those programs.\nii.\ + \ Distribution Requirements. For any Distributable Code you distribute, \nyou must\n\U0010FC00\ + \ add significant primary functionality to it in your programs; \n\U0010FC00 for any Distributable\ + \ Code having a filename extension of .lib, distribute only the results of running such\ + \ Distributable Code through a linker with your application; \n\U0010FC00 distribute Distributable\ + \ Code included in a setup program only as part of that setup program without modification;\ + \ \n\U0010FC00 require distributors and external end users to agree to terms that protect\ + \ it at least as much as this agreement; \n\U0010FC00 display your valid copyright notice\ + \ on your programs;\n\U0010FC00 for Distributable Code from the Windows Media Services SDK\ + \ portions of the software, include in your program’s Help-About box (or in another obvious\ + \ place if there is no box) the following copyright notice: \"Portions utilize Microsoft\ + \ Windows Media Technologies. Copyright (c) 2006 Microsoft Corporation. All Rights Reserved\"\ + ; and \n\U0010FC00 indemnify, defend, and hold harmless Microsoft from any claims, including\ + \ attorneys’ fees, related to the distribution or use of your programs.\niii. Distribution\ + \ Restrictions. \nYou may not \n\U0010FC00 alter any copyright, trademark or patent notice\ + \ in the Distributable Code; \n\U0010FC00 use Microsoft’s trademarks in your programs’ names\ + \ or in a way that suggests your programs come from or are endorsed by Microsoft; \n\U0010FC00\ + \ include Distributable Code in malicious, deceptive or unlawful programs; or \n\U0010FC00\ + \ modify or distribute the source code of any Distributable Code so that any part of it\ + \ becomes subject to an Excluded License. An Excluded License is one that requires, as a\ + \ condition of use, modification or distribution, that \n\U0010FC00 the code be disclosed\ + \ or distributed in source code form; or \n\U0010FC00 others have the right to modify it.\ + \ \n\nb. Additional Functionality. Microsoft may provide additional functionality for the\ + \ software. Other license terms and fees may apply.\n\n3. INTERNET-BASED SERVICES. Microsoft\ + \ provides Internet-based services with the software. It may change or cancel them at any\ + \ time. You may not use this service in any way that could harm it or impair anyone else’s\ + \ use of it. You may not use the service to try to gain unauthorized access to any service,\ + \ data, account or network by any means.\n\n4. MICROSOFT .NET BENCHMARK TESTING. The software\ + \ includes one or more components of the .NET Framework 3.5 (\".NET Components\"). You may\ + \ conduct internal benchmark testing of those components. You may disclose the results of\ + \ any benchmark test of those components, provided that you comply with the conditions set\ + \ forth at http://go.microsoft.com/fwlink/?LinkID=66406. Notwithstanding any other agreement\ + \ you may have with Microsoft, if you disclose such benchmark test results, Microsoft shall\ + \ have the right to disclose the results of benchmark tests it conducts of your products\ + \ that compete with the applicable .NET Component, provided it complies with the same conditions\ + \ set forth at http://go.microsoft.com/fwlink/?LinkID=66406.\n\n5. SCOPE OF LICENSE. The\ + \ software is licensed, not sold. This agreement only gives you some rights to use the software.\ + \ Microsoft reserves all other rights. Unless applicable law gives you more rights despite\ + \ this limitation, you may use the software only as expressly permitted in this agreement.\ + \ In doing so, you must comply with any technical limitations in the software that only\ + \ allow you to use it in certain ways. For more information, see www.microsoft.com/licensing/userights\ + \ . \nYou may not\n\U0010FC00 work around\ + \ any technical limitations in the software; \n\U0010FC00 reverse engineer, decompile or\ + \ disassemble the software, except and only to the extent that applicable law expressly\ + \ permits, despite this limitation; \n\U0010FC00 make more copies of the software than specified\ + \ in this agreement or allowed by applicable law, despite this limitation; \n\U0010FC00\ + \ publish the software for others to copy; \n\U0010FC00 rent, lease or lend the software;\ + \ or \n\U0010FC00 use the software for commercial software hosting services.\n\n6. CODE\ + \ GENERATION AND OPTIMIZATION TOOLS. You may not use the code generation or optimization\ + \ tools in the software (such as compilers, linkers, assemblers, runtime code generators,\ + \ and \ncode generating design and modeling tools) to create programs, object code, libraries,\ + \ assemblies, or executables to run on a platform other than Microsoft operating systems,\ + \ run-time technologies, or application platforms.\n\n7. BACKUP COPY. You may make one backup\ + \ copy of the software. You may use it only to reinstall the software.\n\n8. DOCUMENTATION.\ + \ Any person that has valid access to your computer or internal network may copy and use\ + \ the documentation for your internal, reference purposes.\n\n9. TRANSFER TO A THIRD PARTY.\ + \ The first user of the software may transfer it, and this agreement, directly to a third\ + \ party. Before the transfer, that party must agree that this agreement applies to the transfer\ + \ and use of the software. The first user must uninstall the software before transferring\ + \ it separately from the device. The first user may not retain any copies.\n\n10. EXPORT\ + \ RESTRICTIONS. The software is subject to United States export laws and regulations. You\ + \ must comply with all domestic and international export laws and regulations that apply\ + \ to the software. These laws include restrictions on destinations, end users and end use.\ + \ For additional information, see www.microsoft.com/exporting .\n\ + \n11. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services\ + \ for it.\n\n12. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates,\ + \ Internet-based services and support services that you use, are the entire agreement for\ + \ the software and support services.\n\n13. APPLICABLE LAW.\na. United States. If you acquired\ + \ the software in the United States, Washington state law governs the interpretation of\ + \ this agreement and applies to claims for breach of it, regardless of conflict of laws\ + \ principles. The laws of the state where you live govern all other claims, including claims\ + \ under state consumer protection laws, unfair competition laws, and in tort.\nb. Outside\ + \ the United States. If you acquired the software in any other country, the laws of that\ + \ country apply.\n\n14. LEGAL EFFECT. This agreement describes certain legal rights. You\ + \ may have other rights under the laws of your country. You may also have rights with respect\ + \ to the party from whom you acquired the software. This agreement does not change your\ + \ rights under the laws of your country if the laws of your country do not permit it to\ + \ do so.\n\n15. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE\ + \ RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU\ + \ MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT\ + \ CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED\ + \ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\ + \n16. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT\ + \ AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES,\ + \ INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\nThis\ + \ limitation applies to \n\U0010FC00 anything related to the software, services, content\ + \ (including code) on third party Internet sites, or third party programs; and \n\U0010FC00\ + \ claims for breach of contract, breach of warranty, guarantee or condition, strict liability,\ + \ negligence, or other tort to the extent permitted by applicable law.\nIt also applies\ + \ even if Microsoft knew or should have known about the possibility of the damages. The\ + \ above limitation or exclusion may not apply to you because your country may not allow\ + \ the exclusion or limitation of incidental, consequential or other damages.\n\n" json: ms-windows-sdk-server-2008-net-3.5.json - yml: ms-windows-sdk-server-2008-net-3.5.yml + yaml: ms-windows-sdk-server-2008-net-3.5.yml html: ms-windows-sdk-server-2008-net-3.5.html - text: ms-windows-sdk-server-2008-net-3.5.LICENSE + license: ms-windows-sdk-server-2008-net-3.5.LICENSE - license_key: ms-windows-sdk-win10 + category: Commercial spdx_license_key: LicenseRef-scancode-ms-windows-sdk-win10 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + MICROSOFT SOFTWARE LICENSE TERMS + 03/26/2021 + + Microsoft Enterprise Windows Driver Kit + Windows Software Developer Kit for Windows 10 + Windows Driver Kit for Windows 10 + Build Tools for Visual Studio 2017 + + IF YOU LIVE IN, OR YOUR PRINCIPAL PLACE OF BUSINESS IS IN, THE UNITED STATES, PLEASE READ THE BINDING ARBITRATION AGREEMENT AND CLASS ACTION WAIVER (SECTION 20). IT AFFECTS HOW DISPUTES ARE RESOLVED. + + These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft + + updates, + supplements, + Internet-based services, and + support services, + for this software, unless other terms accompany those items. If so, those terms apply. + + By using the software, you accept these terms. If you do not accept them, do not use the software. ******************************************************************* + + If you comply with these license terms, you have the perpetual rights below. + + 1. INSTALLATION AND USE RIGHTS. + + a. Installation and use. One user may install and use any number of copies of the software on your devices to design, develop and test your device drivers and supporting components, as defined by DCHU. Further, you may install, use and/or deploy via a network management system or as part of a desktop image, any number of copies of the software on computer devices within your internal corporate network to design, develop and test your device drivers and supporting components, as defined by DCHU, that run on a Microsoft operating system. Each copy must be complete, including all copyright and trademark notices. You must require end users to agree to terms that protect the software as much as these license terms. + + b. Included Microsoft Programs. The software contains other Microsoft programs. These license terms govern your use of included Microsoft programs. + + c. Utilities. The software contains certain components that are identified in the Utilities List located https://go.microsoft.com/fwlink/?LinkId=524839. Depending on the specific edition of the software, the number of Utility files you receive with the software may not be equal to the number of Utilities listed in the Utilities List. Except as otherwise provided on the Utilities List for specific files, you may copy and install the Utilities you receive with the software on to other third party machines. These Utilities may only be used to debug and deploy your programs and databases you have developed with the software. You must delete all the Utilities installed onto a third party machine within the earlier of (i) when you have finished debugging or deploying your programs; or (ii) thirty (30) days after installation of the Utilities onto that machine. We may add additional files to this list from time to time. + + d. Build Server List. The software includes the Visual Studio 2017 Build Tools. It also contains certain components that are identified in the Build Server List located at https://go.microsoft.com/fwlink/?LinkId=524838. You may install copies of the Visual Studio 2017 Build Tools and copies of the files listed in the Build Server list, onto your build machines, solely for the purpose of compiling, building, verifying and archiving your device drivers. These components may only be used in order to create and configure build systems internal to your organization to support your internal build environment. These components do not provide external distribution rights to any of the software or enable you to provide a build environment as a service to third parties. We may add additional files to this list from time to time. + + e. Third Party Programs. The software may include third party code that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party code are included for your information only and may be found in the credits.rtf or ThirdPartyNotices.txt file associated with the software. + + 2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS. + a. Distributable Code. The software contains code that you are permitted to distribute in programs you develop if you comply with the terms below. + + i. Right to Use and Distribute. The code and text files listed below are “Distributable Code.” + + REDIST.TXT Files. You may copy and distribute the object code form of code listed in REDIST.TXT files plus any of the files listed on the REDIST list located at https://go.microsoft.com/fwlink/?LinkId=294840. + + Third party distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs. + + ii. Distribution Requirements. For any Distributable Code you distribute, you must + + add significant primary functionality to it in your programs; + for any Distributable Code having a filename extension of .lib, distribute only the results of running such Distributable Code through a linker with your program; + distribute Distributable Code included in a setup program only as part of that setup program without modification; + require distributors and external end users to agree to terms that protect it at least as much as this agreement; + display your valid copyright notice on your programs; and + indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your programs. + + iii. Distribution Restrictions. You may not + + alter any copyright, trademark or patent notice in the Distributable Code; + use Microsoft’s trademarks in your programs’ names or in a way that suggests your programs come from or are endorsed by Microsoft; + distribute Distributable Code to run on a platform other than the Windows platform; + include Distributable Code in malicious, deceptive or unlawful programs; or + modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that + the code be disclosed or distributed in source code form; or + others have the right to modify it. + + iv. Distribution Rights for Features made Available with the Software. + + Windows App Requirements. If you intend to make your program available in the Microsoft Store, the program must comply with the Certification as defined and described in the App Developer Agreement, currently available at: msdn.microsoft.com/en-us/library/windows/apps/hh694058.aspx. + + Bing Maps. The software may include features that retrieve content such as maps, images, and other data through the Bing Maps (or successor branded) application programming interface (the “Bing Maps API”) to create reports displaying data on top of maps, aerial and hybrid imagery. If these features are included, you may use these features to create and view dynamic or static documents only in conjunction with and through methods and means of access integrated in the software. You may not otherwise copy, store, archive, or create a database of the entity information including business names, addresses and geocodes available through the Bing Maps API. You may not use the Bing Maps API to provide sensor based guidance/routing, nor use any Road Traffic Data or Bird’s Eye Maps API and associated content is also subject to the additional terms and conditions at https://go.microsoft.com/fwlink/?LinkID=21969. + + Additional Mapping APIs. The software may include application programming interfaces that provide maps and other related mapping features and services that are not provided by Bing (the “Additional Mapping APIs”). These Additional Mapping APIs are subject to additional terms and conditions and may require payment of fees to Microsoft and/or third party providers based on the use or volume of use of such Additional Mapping APIs. These terms and conditions will be provided when you obtain any necessary license keys to use such Additional Mapping APIs or when you review or receive documentation related to the use of such Additional Mapping APIs. + + Push Notifications. The Microsoft Push Notification Service may not be used to send notifications that are mission critical or otherwise could affect matters of life or death, including without limitation critical notifications related to a medical device or condition. MICROSOFT EXPRESSLY DISCLAIMS ANY WARRANTIES THAT THE USE OF THE MICROSOFT PUSH NOTIFICATION SERVICE OR DELIVERY OF MICROSOFT PUSH NOTIFICATION SERVICE NOTIFICATIONS WILL BE UNINTERRUPTED, ERROR FREE, OR OTHERWISE GUARANTEED TO OCCUR ON A REAL-TIME BASIS. + + Speech namespace API. Using speech recognition functionality via the Speech namespace APIs in a program requires the support of a speech recognition service. The service may require network connectivity at the time of recognition (e.g., when using a predefined grammar). In addition, the service may also collect speech-related data in order to provide and improve the service. The speech-related data may include, for example, information related to grammar size and string phrases in a grammar. + + Also, in order for a user to use speech recognition on the phone they must first accept certain terms of use. The terms of use notify the user that data related to their use of the speech recognition service will be collected and used to provide and improve the service. If a user does not accept the terms of use and speech recognition is attempted by the application, the operation will not work and an error will be returned to the application. + + API Use. We may monitor and collect data related to a program’s use of APIs in order to provide, improve and personalize Microsoft products and services. End user information collected by Microsoft’s monitoring and data collection related to your program’s use of APIs is subject to the Microsoft Consumer Privacy Statement. + + Location Framework. The software may contain a location framework component that enables support of location services in programs. In addition to the other limitations in this agreement, you must comply with all applicable local laws and regulations when using the location framework component or the rest of the software. + + Device ID Access. The software may contain a component that enables programs to access the device ID of the device that is running the program. In addition to the other limitations in this agreement, you must comply with all applicable local laws and regulations when using the device ID access component or the rest of the software. + + PlayReady Support. The software may include the Windows Emulator, which contains Microsoft’s PlayReady content access technology. Content owners use Microsoft PlayReady content access technology to protect their intellectual property, including copyrighted content. This software uses PlayReady technology to access PlayReady-protected content and/or WMDRM-protected content. Microsoft may decide to revoke the software’s ability to consume PlayReady-protected content for reasons including but not limited to (i) if a breach or potential breach of PlayReady technology occurs, (ii) proactive robustness enhancement, and (iii) if Content owners require the revocation because the software fails to properly enforce restrictions on content usage. Revocation should not affect unprotected content or content protected by other content access technologies. Content owners may require you to upgrade PlayReady to access their content. If you decline an upgrade, you will not be able to access content that requires the upgrade and may not be able to install other operating system updates or upgrades. + + Package Managers. The software may include package managers, like NuGet, that give you the option to download other Microsoft and third party software packages to use with your application. Those packages are under their own licenses, and not this agreement. Microsoft does not distribute, license or provide any warranties for any of the third party packages. + + Font Components. While the software is running, you may use its fonts to display and print content. You may only embed fonts in content as permitted by the embedding restrictions in the fonts; and temporarily download them to a printer or other output device to help print content. + + Notice about the H.264/AVD Visual Standard, and the VC-1 Video Standard. This software may include H.264/MPEG-4 AVC and/or VD-1 decoding technology. MPEG LA, L.L.C. requires this notice: THIS PRODUCT IS LICENSED UNDER THE AVC AND THE VC-1 PATENT PORTFOLIO LICENSES FOR THE PERSONAL AND NON-COMMERCIAL USE OF A CONSUMER TO (i) ENCODE VIDEO IN COMPLIANCE WITH THE ABOVE STANDARDS (“VIDEO STANDARDS”) AND/OR (ii) DECODE AVC, AND VC-1 VIDEO THAT WAS ENCODED BY A CONSUMER ENGAGED IN A PERSONAL AND NON-COMMERCIAL ACTIVITY AND/OR WAS OBTAINED FROM A VIDEO PROVIDER LICENSED TO PROVIDE SUCH VIDEO. NONE OF THE LICENSES EXTEND TO ANY OTHER PRODUCT REGARDLESS OF WHETHER SUCH PRODUCT IS INCLUDED WITH THIS SOFTWARE IN A SINGLE ARTICLE. NO LICENSE IS GRANTED OR SHALL BE IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED FROM MPEG LA, L.L.C. SEE WWW.MPEGLA.COM. + + For clarification purposes, this notice does not limit or inhibit the use of the software for normal business uses that are personal to that business which do not include (i) redistribution of the software to third parties, or (ii) creation of content with the VIDEO STANDARDS compliant technologies for distribution to third parties. + + DATA. The software may collect information about you and your use of the software and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. Your opt-out rights, if any, are described in the product documentation. Some features in the software may enable collection of data from users of your applications that access or use the software. If you use these features to enable data collection in your applications, you must comply with applicable law, including getting any required user consent, and maintain a prominent privacy policy that accurately informs users about how you use, collect, and share their data. You can learn more about Microsoft’s data collection and use in the help documentation and the Microsoft Privacy Statement at https://go.microsoft.com/fwlink/?LinkId=521839. You agree to comply with all applicable provisions of the Microsoft Privacy Statement. + + SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not + + a. work around any technical limitations in the software; + b. reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; + c. make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation; + d. publish the software for others to copy; + e. rent, lease or lend the software; + f. transfer the software or this agreement to any third party; or + g. use the software for commercial software hosting services. + + .NET FRAMEWORK SOFTWARE. The software contains Microsoft .NET Framework software. This software is part of Windows. The license terms for Windows apply to your use of the .NET Framework software. + + BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software. + + DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. + + EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit (aka.ms/exporting). + + SUPPORT SERVICES. We are not obligated under this agreement to provide any support services for the software. If we elect to do so, any such support is “as is”, “with all faults”, and without warranty of any kind. + + BINDING ARBITRATION AND CLASS ACTION WAIVER IF YOU LIVE (OR, IF A BUSINESS, YOUR PRINCIPAL PLACE OF BUSINESS IS) IN THE UNITED STATES. If we have a dispute, you and we agree to try for 60 days to resolve it informally. If we can’t, you and we agree to binding individual arbitration before the American Arbitration Association under the Federal Arbitration Act, and not to sue in court in front of a judge or jury. Instead, a neutral arbitrator will decide. Class action lawsuits, class-wide arbitrations, private attorney-general actions, and any other proceeding where someone acts in a representative capacity are not allowed; nor is combining individual proceedings without the consent of all parties. The complete Arbitration Agreement and Class Action Waiver contains more terms and is at https://www.microsoft.com/en-us/legal/arbitration/default.aspx. You and we agree to these terms. + + ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. + + CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you: + + a. Australia. You have statutory guarantees under the Australian Consumer Law and nothing in these terms is intended to affect those rights. + + b. Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. + + c. Germany and Austria. + + i. Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software. + + ii. Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law. + + Subject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence. + + DISCLAIMER OF WARRANTY. The software is licensed “as-is.” You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights or statutory guarantees under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. + + LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages. + + a. This limitation applies to + i. anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and + ii. claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + + It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. + + Please note: As this software is distributed in Quebec, Canada, these license terms are provided below in French. + + Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français. + + EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon sont exclues. + + LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices. Cette limitation concerne : + + tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et + + les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur. + + Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. + + EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. json: ms-windows-sdk-win10.json - yml: ms-windows-sdk-win10.yml + yaml: ms-windows-sdk-win10.yml html: ms-windows-sdk-win10.html - text: ms-windows-sdk-win10.LICENSE + license: ms-windows-sdk-win10.LICENSE - license_key: ms-windows-sdk-win7-net-4 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-windows-sdk-win7-net-4 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "MICROSOFT SOFTWARE LICENSE TERMS\nMICROSOFT WINDOWS SOFTWARE DEVELOPMENT KIT FOR WINDOWS\ + \ 7 and .NET FRAMEWORK 4\nThese license terms are an agreement between Microsoft Corporation\ + \ (or based on where you live, one of its affiliates) and you. Please read them. They\ + \ apply to the software named above, which includes the media on which you received it,\ + \ if any. The terms also apply to any Microsoft\n• updates,\n• supplements,\n\ + • Internet-based services, and \n• support services\nfor this software,\ + \ unless other terms accompany those items. If so, those terms apply.\nBY USING THE SOFTWARE,\ + \ YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\nIf you comply\ + \ with these license terms, you have the rights below.\n1. INSTALLATION AND USE RIGHTS.\ + \ \na. Installation and Use. You may install and use any number of copies of the\ + \ software on your devices to design, develop and test your programs that run on a Microsoft\ + \ Windows operating system. Further, you may install, use and/or deploy via a network management\ + \ system or as part of a desktop image, any number of copies of the software on computer\ + \ devices within your internal corporate network to design, develop and test your programs\ + \ that run on a Microsoft Windows operating system. Each copy must be complete, including\ + \ all copyright and trademark notices. You must require end users to agree to the terms\ + \ that protect the software as much as these License terms.\nb. Included Microsoft\ + \ Programs. The software contains other Microsoft programs. These license terms apply\ + \ to your use of those programs. \n2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE\ + \ RIGHTS.\na. Distributable Code. The software contains code that you are permitted\ + \ to distribute in programs you develop if you comply with the terms below.\ni. \ + \ Right to Use and Distribute. The code and text files listed below are \"Distributable\ + \ Code.\"\n• REDIST.TXT Files. You may copy and distribute the object code form\ + \ of code listed in REDIST.TXT files, plus any files listed on the REDIST list located at\ + \ .\n• Sample Code. \ + \ You may modify, copy, and distribute the source and object code form of code marked as\ + \ \"sample.\"\n•\tSample Code for Microsoft Bing Maps AJAX Control. The software contains\ + \ sample code that makes use of the Bing Maps AJAX Control. Your use and access of the\ + \ Bing Maps AJAX Control is subject to the \"Microsoft Bing Maps Platform API’s Terms of\ + \ Use\" which is located at: .\ + \ \n• Microsoft Merge Modules. You may copy and distribute the unmodified output\ + \ of Microsoft Merge Modules.\n• Third Party Distribution. You may permit distributors\ + \ of your programs to copy and distribute the Distributable Code as part of those programs.\n\ + ii. Distribution Requirements. For any Distributable Code you distribute, you must\n\ + • add significant primary functionality to it in your programs;\n• for any\ + \ Distributable Code having a filename extension of .lib, distribute only the results of\ + \ running such Distributable Code through a linker with your application;\n• distribute\ + \ Distributable Code included in a setup program only as part of that setup program without\ + \ modification;\n• require distributors and external end users to agree to terms\ + \ that protect it at least as much as this agreement; \n• display your valid copyright\ + \ notice on your programs; \n• for Distributable Code from the Windows Media Services\ + \ SDK portions of the software, include in your program’s Help-About box (or in another\ + \ obvious place if there is no box) the following copyright notice: \"Portions utilize\ + \ Microsoft Windows Media Technologies. Copyright (c) 2006 Microsoft Corporation. All\ + \ Rights Reserved\"; and\n• indemnify, defend, and hold harmless Microsoft from\ + \ any claims, including attorneys’ fees, related to the distribution or use of your programs.\n\ + iii. Distribution Restrictions. You may not\n• alter any copyright, trademark\ + \ or patent notice in the Distributable Code; \n• use Microsoft’s trademarks in\ + \ your programs’ names or in a way that suggests your programs come from or are endorsed\ + \ by Microsoft; \n• distribute Distributable Code to run on a platform other than\ + \ the Windows platform;\n• include Distributable Code in malicious, deceptive or\ + \ unlawful programs; or\n• modify or distribute the source code of any Distributable\ + \ Code so that any part of it becomes subject to an Excluded License. An Excluded License\ + \ is one that requires, as a condition of use, modification or distribution, that\n• \ + \ the code be disclosed or distributed in source code form; or \n• others have\ + \ the right to modify it.\nb. Additional Functionality. Microsoft may provide additional\ + \ functionality for the software. Other license terms and fees may apply.\n3. INTERNET-BASED\ + \ SERVICES. Microsoft provides Internet-based services with the software. It may change\ + \ or cancel them at any time. You may not use this service in any way that could harm it\ + \ or impair anyone else’s use of it. You may not use the service to try to gain unauthorized\ + \ access to any service, data, account or network by any means.\n4. SCOPE OF LICENSE.\ + \ The software is licensed, not sold. This agreement only gives you some rights to use\ + \ the software. Microsoft reserves all other rights. Unless applicable law gives you more\ + \ rights despite this limitation, you may use the software only as expressly permitted in\ + \ this agreement. In doing so, you must comply with any technical limitations in the software\ + \ that only allow you to use it in certain ways. For more information, see www.microsoft.com/licensing/userights\ + \ . You may not\n• work around any\ + \ technical limitations in the software;\n• reverse engineer, decompile or disassemble\ + \ the software, except and only to the extent that applicable law expressly permits, despite\ + \ this limitation;\n• make more copies of the software than specified in this agreement\ + \ or allowed by applicable law, despite this limitation;\n• publish the software\ + \ for others to copy;\n• rent, lease or lend the software; or\n• use the\ + \ software for commercial software hosting services.\n5.\tBACKUP COPY. You may make one\ + \ backup copy of the software. You may use it only to reinstall the software.\n6. DOCUMENTATION.\ + \ Any person that has valid access to your computer or internal network may copy and use\ + \ the documentation for your internal, reference purposes.\n7. TRANSFER TO A THIRD\ + \ PARTY. The first user of the software may transfer it, and this agreement, directly to\ + \ a third party. Before the transfer, that party must agree that this agreement applies\ + \ to the transfer and use of the software. The first user must uninstall the software before\ + \ transferring it separately from the device. The first user may not retain any copies.\n\ + 8. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations.\ + \ You must comply with all domestic and international export laws and regulations that\ + \ apply to the software. These laws include restrictions on destinations, end users and\ + \ end use. For additional information, see www.microsoft.com/exporting .\n\ + 9. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support services\ + \ for it.\n10. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates,\ + \ Internet-based services and support services that you use, are the entire agreement for\ + \ the software and support services.\n11. APPLICABLE LAW.\na. United States. If you\ + \ acquired the software in the United States, Washington state law governs the interpretation\ + \ of this agreement and applies to claims for breach of it, regardless of conflict of laws\ + \ principles. The laws of the state where you live govern all other claims, including claims\ + \ under state consumer protection laws, unfair competition laws, and in tort.\nb. Outside\ + \ the United States. If you acquired the software in any other country, the laws of that\ + \ country apply.\n12. LEGAL EFFECT. This agreement describes certain legal rights. You\ + \ may have other rights under the laws of your country. You may also have rights with respect\ + \ to the party from whom you acquired the software. This agreement does not change your\ + \ rights under the laws of your country if the laws of your country do not permit it to\ + \ do so.\n13. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE\ + \ RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU\ + \ MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT\ + \ CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED\ + \ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\ + 14. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT\ + \ AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER\ + \ DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\n\ + This limitation applies to\n• anything related to the software, services, content\ + \ (including code) on third party Internet sites, or third party programs; and\n• \ + \ claims for breach of contract, breach of warranty, guarantee or condition, strict liability,\ + \ negligence, or other tort to the extent permitted by applicable law.\nIt also applies\ + \ even if Microsoft knew or should have known about the possibility of the damages. The\ + \ above limitation or exclusion may not apply to you because your country may not allow\ + \ the exclusion or limitation of incidental, consequential or other damages.\n(French text\ + \ omitted)" json: ms-windows-sdk-win7-net-4.json - yml: ms-windows-sdk-win7-net-4.yml + yaml: ms-windows-sdk-win7-net-4.yml html: ms-windows-sdk-win7-net-4.html - text: ms-windows-sdk-win7-net-4.LICENSE + license: ms-windows-sdk-win7-net-4.LICENSE - license_key: ms-windows-server-2003-ddk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-windows-server-2003-ddk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Microsoft Windows Server 2003 DDK License\n\nEND-USER LICENSE AGREEMENT FOR MICROSOFT\ + \ SOFTWARE\nMICROSOFT WINDOWS SERVER 2003 DRIVER DEVELOPMENT KIT SERVICE PACK 1\n\nIMPORTANT-READ\ + \ CAREFULLY: This End-User License Agreement (\"EULA\") is a legal agreement between you\ + \ (either an individual or a single entity) and Microsoft Corporation (\"Microsoft\") for\ + \ the Microsoft software that accompanies this EULA, which includes computer software and\ + \ may include associated media, printed materials, \"online\" or electronic documentation,\ + \ and Internet-based services (\"Software\"). An amendment or addendum to this EULA may\ + \ accompany the Software. YOU AGREE TO BE BOUND BY THE TERMS OF THIS EULA BY INSTALLING,\ + \ COPYING, OR OTHERWISE USING THE SOFTWARE. IF YOU DO NOT AGREE, DO NOT INSTALL, COPY, OR\ + \ USE THE SOFTWARE; YOU MAY RETURN IT TO YOUR PLACE OF PURCHASE (IF APPLICABLE) FOR A FULL\ + \ REFUND.\n\n1.\tGRANTS OF LICENSE. Microsoft grants you the rights described in this EULA\ + \ provided that you comply with all terms and conditions of this EULA. \n1.1\tGeneral License\ + \ Grant. Microsoft grants to you a personal, non-exclusive, nontransferable, royalty-free\ + \ license to use the Software, and to make and use five (5) copies of the Software on one\ + \ or more computers located at your premises solely for the purpose of designing, developing\ + \ and testing drivers that operate in conjunction with the Software for use with Microsoft\ + \ Windows 2000 Professional, Microsoft Windows 2000 Server, Microsoft Windows 2000 Advanced\ + \ Server and Microsoft Windows 2000 Datacenter Server; Microsoft Windows XP, Microsoft Windows\ + \ XP Service Pack 1; Microsoft Windows Server 2003 Standard Edition, Microsoft Windows\ + \ Server 2003 Enterprise Edition and Microsoft Windows Server 2003 Datacenter Edition operating\ + \ system products and any Microsoft operating system product that is a successor to any\ + \ of the foregoing (each an \"OS Product\"). \n1.2\tDocumentation. You may make and use\ + \ an unlimited number of copies of any documentation, provided that such copies shall be\ + \ used only for personal purposes and are not to be republished or distributed (either in\ + \ hard copy or electronic form) beyond your premises. \n\n2.\tADDITIONAL LICENSE RIGHTS\ + \ -- REDISTRIBUTABLE CODE. In addition to the rights granted in Section 1, certain portions\ + \ of the Software, as described in this Section 2, are provided to you with additional license\ + \ rights. These additional license rights are conditioned upon your compliance with the\ + \ distribution requirements and license limitations described in Section 3.\n2.1\tSample\ + \ Code. Microsoft grants you a limited, nonexclusive, royalty-free license to: (a) use\ + \ and modify the source code version of those portions of the Software identified as \"\ + Samples\" in the Software (\"Sample Code\") for the sole purposes of designing, developing,\ + \ and testing your software product(s), and (b) reproduce and distribute the Sample Code,\ + \ along with any modifications thereof, in object code form (\"Redistributable Code\").\ + \ For applicable redistribution requirements for Sample Code, see Section 3 below.\n\n\ + 3.\tDISTRIBUTION REQUIREMENTS AND OTHER LICENSE RIGHTS AND LIMITATIONS. If you choose to\ + \ exercise your rights under Section 2, any redistribution by you is subject to your compliance\ + \ with this Section 3.\n(a)\tIf you choose to redistribute Sample Code, or Redistributable\ + \ Code (collectively, the \"Redistributables\") as described in Section 2, you agree: (i)\ + \ except as otherwise noted in Section 2.1 (Sample Code), to distribute the Redistributables\ + \ only in object code form and in conjunction with and as a part of software developed by\ + \ you that adds significant and primary functionality to the Redistributables (\"Licensee\ + \ Software\"); (ii) that the Redistributables only operate in conjunction with Microsoft\ + \ Windows platforms; (iii) that if the Licensee Software is distributed beyond Licensee's\ + \ premises or externally from Licensee's organization, to distribute the Licensee Software\ + \ containing the Redistributables pursuant to an end user license agreement (which may be\ + \ \"break-the-seal\", \"click-wrap\" or signed), with terms no less protective than those\ + \ contained in this EULA; (iv) not to use Microsoft's name, logo, or trademarks to market\ + \ the Licensee Software; (v) to display your own valid copyright notice which shall be sufficient\ + \ to protect Microsoft's copyright in the Software; (vi) not to remove or obscure any copyright,\ + \ trademark or patent notices that appear on the Software as delivered to you; (vii) to\ + \ indemnify, hold harmless, and defend Microsoft from and against any claims or lawsuits,\ + \ including attorney's fees, that arise or result from the use or distribution of the Licensee\ + \ Software; (viii) to otherwise comply with the terms of this EULA; and (ix) agree that\ + \ Microsoft reserves all rights not expressly granted. \nYou also agree not to permit further\ + \ distribution of the Redistributables by your end users except you may permit further redistribution\ + \ of the Redistributables by your distributors to your end-user customers if (i) your distributors\ + \ only distribute the Redistributables in conjunction with, and as part of, the Licensee\ + \ Software, (ii) you comply with all other terms of this EULA, and (ii) your distributors\ + \ comply with all restrictions of this EULA that are applicable to you. \n(b)\tIf you use\ + \ the Redistributable Code, then in addition to your compliance with the applicable distribution\ + \ requirements described for the Redistributable Code, the following also applies. Your\ + \ license rights to the Redistributable Code are conditioned upon your not (i) creating\ + \ derivative works of the Redistributable Code in any manner that would cause the Redistributable\ + \ Code in whole or in part to become subject to any of the terms of an Excluded License;\ + \ or (ii) distributing the Redistributable Code (or derivative works thereof) in any manner\ + \ that would cause the Redistributable Code to become subject to any of the terms of an\ + \ Excluded License. An \"Excluded License\" is any license that requires as a condition\ + \ of use, modification and/or distribution of software subject to the Excluded License,\ + \ that such software or other software combined and/or distributed with such software be\ + \ (x) disclosed or distributed in source code form; (y) licensed for the purpose of making\ + \ derivative works; or (z) redistributable at no charge.\n(c)\tIf you have developed, tested\ + \ and submitted drivers for WQHL certification using the Windows Server 2003 Service Pack\ + \ 1 Driver Development Kit Release Candidate 2 and such drivers have been certified, such\ + \ drivers shall be considered Redistributables under this EULA.\n\n4.\tRESERVATION OF RIGHTS\ + \ AND OWNERSHIP. Microsoft reserves all rights not expressly granted to you in this EULA.\ + \ The Software is protected by copyright and other intellectual property laws and treaties.\ + \ Microsoft or its suppliers own the title, copyright, and other intellectual property rights\ + \ in the Software. The Software is licensed, not sold.\n\n5.\tLIMITATIONS ON REVERSE ENGINEERING,\ + \ DECOMPILATION, AND DISASSEMBLY. You may not reverse engineer, decompile, or disassemble\ + \ the Software, except and only to the extent that such activity is expressly permitted\ + \ by applicable law notwithstanding this limitation.\n\n6.\tNO RENTAL/COMMERCIAL HOSTING.\ + \ You may not rent, lease, lend or provide commercial hosting services with the Software.\n\ + \n7.\tCONSENT TO USE OF DATA. You agree that Microsoft and its affiliates may collect and\ + \ use technical information gathered as part of the product support services provided to\ + \ you, if any, related to the Software. Microsoft may use this information solely to improve\ + \ our products or to provide customized services or technologies to you and will not disclose\ + \ this information in a form that personally identifies you. \n\n8.\tLINKS TO THIRD PARTY\ + \ SITES. You may link to third party sites through the use of the Software. The third\ + \ party sites are not under the control of Microsoft, and Microsoft is not responsible for\ + \ the contents of any third party sites, any links contained in third party sites, or any\ + \ changes or updates to third party sites. Microsoft is not responsible for webcasting\ + \ or any other form of transmission received from any third party sites. Microsoft is providing\ + \ these links to third party sites to you only as a convenience, and the inclusion of any\ + \ link does not imply an endorsement by Microsoft of the third party site.\n\n9.\tADDITIONAL\ + \ SOFTWARE/SERVICES. This EULA applies to updates, supplements, add-on components, or Internet-based\ + \ services components, of the Software that Microsoft may provide to you or make available\ + \ to you after the date you obtain your initial copy of the Software, unless we provide\ + \ other terms along with the update, supplement, add-on component, or Internet-based services\ + \ component. Microsoft reserves the right to discontinue any Internet-based services provided\ + \ to you or made available to you through the use of the Software. \n\n10.\tNOT FOR RESALE\ + \ SOFTWARE. Software identified as \"Not For Resale\" or \"NFR,\" may not be sold or otherwise\ + \ transferred for value, or used for any purpose other than demonstration, test or evaluation.\n\ + \n11.\tACADEMIC EDITION SOFTWARE. To use Software identified as \"Academic Edition\" or\ + \ \"AE,\" you must be a \"Qualified Educational User.\" For qualification-related questions,\ + \ please contact the Microsoft Sales Information Center/One Microsoft Way/Redmond, WA 98052-6399\ + \ or the Microsoft subsidiary serving your country.\n\n12.\tEXPORT RESTRICTIONS. You acknowledge\ + \ that the Software is subject to U.S. export jurisdiction. You agree to comply with all\ + \ applicable international and national laws that apply to the Software, including the U.S.\ + \ Export Administration Regulations, as well as end-user, end-use, and destination restrictions\ + \ issued by U.S. and other governments. For additional information see .\n\ + \n13.\tSOFTWARE TRANSFER. The initial user of the Software may make a one-time permanent\ + \ transfer of this EULA and Software to another end user, provided the initial user retains\ + \ no copies of the Software. This transfer must include all of the Software (including\ + \ all component parts, the media and printed materials, any upgrades, this EULA, and, if\ + \ applicable, the Certificate of Authenticity). The transfer may not be an indirect transfer,\ + \ such as a consignment. Prior to the transfer, the end user receiving the Software must\ + \ agree to all the EULA terms.\n\n14.\tTERMINATION. Without prejudice to any other rights,\ + \ Microsoft may terminate this EULA if you fail to comply with the terms and conditions\ + \ of this EULA. In such event, you must destroy all copies of the Software and all of its\ + \ component parts.\n\n15. \tLIMITED WARRANTY FOR SOFTWARE ACQUIRED IN THE US AND CANADA.\ + \ \nMicrosoft warrants that the Software will perform substantially in accordance with\ + \ the accompanying materials for a period of ninety (90) days from the date of receipt.\ + \ \nIf an implied warranty or condition is created by your state/jurisdiction and federal\ + \ or state/provincial law prohibits disclaimer of it, you also have an implied warranty\ + \ or condition, BUT ONLY AS TO DEFECTS DISCOVERED DURING THE PERIOD OF THIS LIMITED WARRANTY\ + \ (NINETY DAYS). AS TO ANY DEFECTS DISCOVERED AFTER THE NINETY-DAY PERIOD, THERE IS NO WARRANTY\ + \ OR CONDITION OF ANY KIND. Some states/jurisdictions do not allow limitations on how long\ + \ an implied warranty or condition lasts, so the above limitation may not apply to you.\n\ + Any supplements or updates to the Software, including without limitation, any (if any) service\ + \ packs or hot fixes provided to you after the expiration of the ninety day Limited Warranty\ + \ period are not covered by any warranty or condition, express, implied or statutory.\n\ + LIMITATION ON REMEDIES; NO CONSEQUENTIAL OR OTHER DAMAGES. Your exclusive remedy for any\ + \ breach of this Limited Warranty is as set forth below. Except for any refund elected\ + \ by Microsoft, YOU ARE NOT ENTITLED TO ANY DAMAGES, INCLUDING BUT NOT LIMITED TO CONSEQUENTIAL\ + \ DAMAGES, if the Software does not meet Microsoft's Limited Warranty, and, to the maximum\ + \ extent allowed by applicable law, even if any remedy fails of its essential purpose. \ + \ The terms of Section 17 (\"Exclusion of Incidental, Consequential and Certain Other Damages\"\ + ) are also incorporated into this Limited Warranty. Some states/jurisdictions do not allow\ + \ the exclusion or limitation of incidental or consequential damages, so the above limitation\ + \ or exclusion may not apply to you. This Limited Warranty gives you specific legal rights.\ + \ You may have other rights which vary from state/jurisdiction to state/jurisdiction. YOUR\ + \ EXCLUSIVE REMEDY. Microsoft's and its suppliers' entire liability and your exclusive\ + \ remedy for any breach of this Limited Warranty or for any other breach of this EULA or\ + \ for any other liability relating to the Software shall be, at Microsoft's option from\ + \ time to time exercised subject to applicable law, (a) return of the amount paid (if any)\ + \ for the Software, or (b) repair or replacement of the Software, that does not meet this\ + \ Limited Warranty and that is returned to Microsoft with a copy of your receipt. You will\ + \ receive the remedy elected by Microsoft without charge, except that you are responsible\ + \ for any expenses you may incur (e.g. cost of shipping the Software to Microsoft). This\ + \ Limited Warranty is void if failure of the Software has resulted from accident, abuse,\ + \ misapplication, abnormal use or a virus. Any replacement Software will be warranted for\ + \ the remainder of the original warranty period or thirty (30) days, whichever is longer,\ + \ and Microsoft will use commercially reasonable efforts to provide your remedy within a\ + \ commercially reasonable time of your compliance with Microsoft's warranty remedy procedures.\ + \ Outside the United States or Canada, neither these remedies nor any product support services\ + \ offered by Microsoft are available without proof of purchase from an authorized international\ + \ source. To exercise your remedy, contact: Microsoft, Attn. Microsoft Sales Information\ + \ Center/One Microsoft Way/Redmond, WA 98052-6399, or the Microsoft subsidiary serving your\ + \ country. \n\n16.\tDISCLAIMER OF WARRANTIES. The Limited Warranty that appears above\ + \ is the only express warranty made to you and is provided in lieu of any other express\ + \ warranties or similar obligations (if any) created by any advertising, documentation,\ + \ packaging, or other communications. Except for the Limited Warranty and to the maximum\ + \ extent permitted by applicable law, Microsoft and its suppliers provide the Software and\ + \ support services (if any) AS IS AND WITH ALL FAULTS, and hereby disclaim all other warranties\ + \ and conditions, whether express, implied or statutory, including, but not limited to,\ + \ any (if any) implied warranties, duties or conditions of merchantability, of fitness for\ + \ a particular purpose, of reliability or availability, of accuracy or completeness of responses,\ + \ of results, of workmanlike effort, of lack of viruses, and of lack of negligence, all\ + \ with regard to the Software, and the provision of or failure to provide support or other\ + \ services, information, software, and related content through the Software or otherwise\ + \ arising out of the use of the Software. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE,\ + \ QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT WITH\ + \ REGARD TO THE SOFTWARE.\n\n17.\tEXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER\ + \ DAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL MICROSOFT\ + \ OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, PUNITIVE, INDIRECT, OR CONSEQUENTIAL\ + \ DAMAGES WHATSOEVER (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS OR CONFIDENTIAL\ + \ OR OTHER INFORMATION, FOR BUSINESS INTERRUPTION, FOR PERSONAL INJURY, FOR LOSS OF PRIVACY,\ + \ FOR FAILURE TO MEET ANY DUTY INCLUDING OF GOOD FAITH OR OF REASONABLE CARE, FOR NEGLIGENCE,\ + \ AND FOR ANY OTHER PECUNIARY OR OTHER LOSS WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED\ + \ TO THE USE OF OR INABILITY TO USE THE SOFTWARE, THE PROVISION OF OR FAILURE TO PROVIDE\ + \ SUPPORT OR OTHER SERVICES, INFORMATION, SOFTWARE, AND RELATED CONTENT THROUGH THE SOFTWARE\ + \ OR OTHERWISE ARISING OUT OF THE USE OF THE SOFTWARE, OR OTHERWISE UNDER OR IN CONNECTION\ + \ WITH ANY PROVISION OF THIS EULA, EVEN IN THE EVENT OF THE FAULT, TORT (INCLUDING NEGLIGENCE),\ + \ MISREPRESENTATION, STRICT LIABILITY, BREACH OF CONTRACT OR BREACH OF WARRANTY OF MICROSOFT\ + \ OR ANY SUPPLIER, AND EVEN IF MICROSOFT OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGES. \n\n18.\tLIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING ANY DAMAGES\ + \ THAT YOU MIGHT INCUR FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT LIMITATION, ALL DAMAGES\ + \ REFERENCED HEREIN AND ALL DIRECT OR GENERAL DAMAGES IN CONTRACT OR ANYTHING ELSE), THE\ + \ ENTIRE LIABILITY OF MICROSOFT AND ANY OF ITS SUPPLIERS UNDER ANY PROVISION OF THIS EULA\ + \ AND YOUR EXCLUSIVE REMEDY HEREUNDER (EXCEPT FOR ANY REMEDY OF REPAIR OR REPLACEMENT ELECTED\ + \ BY MICROSOFT WITH RESPECT TO ANY BREACH OF THE LIMITED WARRANTY) SHALL BE LIMITED TO THE\ + \ GREATER OF THE ACTUAL DAMAGES YOU INCUR IN REASONABLE RELIANCE ON THE SOFTWARE UP TO THE\ + \ AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE OR US$5.00. THE FOREGOING LIMITATIONS, EXCLUSIONS\ + \ AND DISCLAIMERS (INCLUDING SECTIONS 15, 16 AND 17) SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED\ + \ BY APPLICABLE LAW, EVEN IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE.\n\n19.\tU.S. GOVERNMENT\ + \ LICENSE RIGHTS. All Software provided to the U.S. Government pursuant to solicitations\ + \ issued on or after December 1, 1995 is provided with the commercial license rights and\ + \ restrictions described elsewhere herein. All Software provided to the U.S. Government\ + \ pursuant to solicitations issued prior to December 1, 1995 is provided with \"Restricted\ + \ Rights\" as provided for in FAR, 48 CFR 52.227-14 (JUNE 1987) or DFAR, 48 CFR 252.227-7013\ + \ (OCT 1988), as applicable. \n\n20.\tGOVERNING LAW; ATTORNEYS' FEES. This Agreement shall\ + \ be construed and controlled by the laws of the State of Washington, and you consent to\ + \ the jurisdiction and venue in the federal courts sitting in King County, Washington, unless\ + \ no federal subject matter jurisdiction exists, in which case you consent to the jurisdiction\ + \ and venue in the Superior Court of King County, Washington. You waive all defenses of\ + \ lack of personal jurisdiction and forum non conveniens. Process may be served on either\ + \ party in the manner authorized by applicable law or court rule. If either Microsoft or\ + \ you employ attorneys to enforce any rights arising out of or relating to this Agreement,\ + \ the prevailing party shall be entitled to recover reasonable attorneys' fees.\n\n21.\t\ + ENTIRE AGREEMENT; SEVERABILITY. This EULA (including any addendum or amendment to this\ + \ EULA which is included with the Software) are the entire agreement between you and Microsoft\ + \ relating to the Software and the support services (if any) and they supersede all prior\ + \ or contemporaneous oral or written communications, proposals and representations with\ + \ respect to the Software or any other subject matter covered by this EULA. To the extent\ + \ the terms of any Microsoft policies or programs for support services conflict with the\ + \ terms of this EULA, the terms of this EULA shall control. If any provision of this EULA\ + \ is held to be void, invalid, unenforceable or illegal, the other provisions shall continue\ + \ in full force and effect.\n\n" json: ms-windows-server-2003-ddk.json - yml: ms-windows-server-2003-ddk.yml + yaml: ms-windows-server-2003-ddk.yml html: ms-windows-server-2003-ddk.html - text: ms-windows-server-2003-ddk.LICENSE + license: ms-windows-server-2003-ddk.LICENSE - license_key: ms-windows-server-2003-sdk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-windows-server-2003-sdk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Microsoft Windows Server 2003 SP1 Platform SDK License\n\nMICROSOFT SOFTWARE LICENSE\ + \ TERMS\nMICROSOFT PLATFORM SOFTWARE DEVELOPMENT KIT \nFOR MICROSOFT WINDOWS SERVER 2003\ + \ SERVICE PACK 1\nThese license terms are an agreement between Microsoft Corporation (or\ + \ based on where you live, one of its affiliates) and you. Please read them. They apply\ + \ to the software named above, which includes the media on which you received it, if any.\ + \ The terms also apply to any Microsoft:\n • updates,\n • supplements,\n • Internet-based\ + \ services, and\n • support services\nfor this software, unless other terms accompany\ + \ those items. If so, those terms apply.\nBy using this software, you accept these terms.\ + \ If you do not accept them, do not use the software.\nIf you comply with these license\ + \ terms, you have the rights below:\n\n1. USE RIGHTS. \na. Use. You may install\ + \ the software on any number of devices to design, develop and test your programs that run\ + \ on a Microsoft Windows operating system.\nb. Other Microsoft Programs. The software\ + \ contains other Microsoft programs. The license terms with those programs apply to your\ + \ use of them.\nc. Distributable Code. The software contains code that you are permitted\ + \ to copy and distribute in programs you develop if you comply with the terms below.\n \ + \ i. Right to Use and Distribute. The code and text files listed below are \"Distributable\ + \ Code.\" You may:\n • REDIST.TXT Files. Copy and distribute the object code form\ + \ of code listed in REDIST.TXT files;\n • Sample Code. Modify, copy and distribute\ + \ the source and object code form of code marked as \"sample\" except for files identified\ + \ as MFCs, ATLs and CRTs (see below);\n • MFCs, ATLs and CRTs. Modify the source\ + \ code form of Microsoft Foundation Classes (MFCs), Active Template Libraries (ATLs), and\ + \ C runtimes (CRTs) to design, develop and test your programs, and copy and distribute the\ + \ object code form of your modified files under a new name; and\n • Third Party Distribution.\ + \ Permit distributors of your programs to copy and distribute the Distributable Code as\ + \ part of those programs.\n ii. Distribution Requirements. For any Distributable Code\ + \ you distribute, you must:\n • add significant primary functionality to it in your\ + \ programs;\n • only invoke the software via interfaces described in the software\ + \ documentation;\n • for any Distributable Code having a filename extension of .lib,\ + \ distribute only the results of running such Distributable Code through a linker with your\ + \ application;\n • distribute Distributable Code included in a setup program only\ + \ as part of that setup program without modification;\n • require distributors and\ + \ external end users to agree to terms that protect it at least as much as this agreement;\n\ + \ • display your valid copyright notice on your programs;\n • for Distributable\ + \ Code from the Windows Media Services SDK portions of the software, include in your program’s\ + \ Help-About box (or in another obvious place if there is no box) the following copyright\ + \ notice: \"Portions utilize Microsoft Windows Media Technologies. Copyright (c) 1999-2005\ + \ Microsoft Corporation. All Rights Reserved\"; and\n • indemnify, defend, and hold\ + \ harmless Microsoft from any claims, including attorneys’ fees, related to the distribution\ + \ or use of your programs.\n iii. Distribution Restrictions. You may not:\n •\ + \ alter any copyright, trademark or patent notice in the Distributable Code;\n •\ + \ use Microsoft’s trademarks in your programs’ names or in a way that suggests your programs\ + \ come from or are endorsed by Microsoft;\n • distribute Distributable Code to run\ + \ on a platform other than the Windows platform;\n • include Distributable Code in\ + \ malicious, deceptive or unlawful programs; or\n • modify or distribute the source\ + \ code of any Distributable Code so that any part of it becomes subject to an Excluded License.\ + \ An Excluded License is one that requires, as a condition of use, modification or distribution,\ + \ that:\n o the code be disclosed or distributed in source code form, or\n \ + \ o others have the right to modify it.\n\n2. TRANSFER. The first user of the\ + \ software may transfer it and this agreement directly to a third party. Before the transfer,\ + \ that party must agree that this agreement applies to the transfer and use of the software.\ + \ The first user must uninstall the software before transferring it separately from the\ + \ device. The first user may not retain any copies.\n\n3. BACKUP COPY. You may make\ + \ one backup copy of the software. You may use it only to reinstall the software.\n\n4.\ + \ DOCUMENTATION. You may copy and use the documentation for your internal, reference\ + \ purposes.\n\n5. EXPORT RESTRICTIONS. The software is subject to United States export\ + \ laws and regulations. You must comply with all domestic and international export laws\ + \ and regulations that apply to the software. These laws include restrictions on destinations,\ + \ end users and end use. For additional information, see www.microsoft.com/exporting.\n\ + \n6. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support\ + \ services for it. \n\n7. SCOPE OF LICENSE. The software is licensed, not sold. This\ + \ agreement only gives you some rights to use the software. Microsoft reserves all other\ + \ rights. Unless applicable law gives you more rights despite this limitation, you may\ + \ use the software only as expressly permitted in this agreement. In doing so, you must\ + \ comply with any technical limitations in the software that only allow you to use it in\ + \ certain ways. You may not:\n • work around any technical limitations in the software,\n\ + \ • reverse engineer, decompile or disassemble the software, except and only to the extent\ + \ that applicable law expressly permits, despite this limitation,\n • make more copies\ + \ of the software than specified in this agreement or allowed by applicable law, despite\ + \ this limitation,\n • publish the software for others to copy,\n • rent, lease or\ + \ lend the software, or\n • use the software for commercial software hosting services.\n\ + \n8. ENTIRE AGREEMENT. This agreement and the terms for supplements, updates, Internet-based\ + \ services and support services that you use are the entire agreement for the software and\ + \ support services.\n\n9. APPLICABLE LAW.\na. United States. If you acquired\ + \ the software in the United States, Washington state law governs the interpretation of\ + \ this agreement and applies to claims for breach of it, regardless of conflict of laws\ + \ principles. The laws of the state where you live govern all other claims, including claims\ + \ under state consumer protection laws, unfair competition laws, and in tort.\nb. Outside\ + \ the United States. If you acquired the software in any other country, the laws of that\ + \ country apply.\n\n10. LEGAL EFFECT. This agreement describes certain legal rights. \ + \ You may have other rights under the laws of your country. You may also have rights with\ + \ respect to the party from whom you acquired the software. This agreement does not change\ + \ your rights under the laws of your country if the laws of your country do not permit it\ + \ to do so.\n\n11. DISCLAIMER OF WARRANTY. The software is licensed \"as-is\". You bear\ + \ the risk of using it. Microsoft gives no express warranties, guarantees or conditions.\ + \ You may have additional consumer rights under your local laws which this agreement cannot\ + \ change. To the extent permitted under your local laws, Microsoft excludes the implied\ + \ warranties of merchantability, fitness for a particular purpose and non-infringement.\n\ + \n12. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft\ + \ and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages,\ + \ including consequential, lost profits, special, indirect or incidental damages. This\ + \ limitation applies to:\n • anything related to the software, services, content (including\ + \ code) on third party Internet sites, or third party programs, and\n • claims for breach\ + \ of contract, breach of warranty, guarantee or condition, strict liability, negligence,\ + \ or other tort to the extent permitted by applicable law.\nIt also applies even if Microsoft\ + \ knew or should have known about the possibility of the damages. The above limitation or\ + \ exclusion may not apply to you because your country may not allow the exclusion or limitation\ + \ of incidental, consequential or other damages.\n\n." json: ms-windows-server-2003-sdk.json - yml: ms-windows-server-2003-sdk.yml + yaml: ms-windows-server-2003-sdk.yml html: ms-windows-server-2003-sdk.html - text: ms-windows-server-2003-sdk.LICENSE + license: ms-windows-server-2003-sdk.LICENSE - license_key: ms-ws-routing-spec + category: Permissive spdx_license_key: LicenseRef-scancode-ms-ws-routing-spec other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Microsoft WS Routing Specifications License WS/WS-Routing.xsd + + Copyright 2001 Microsoft Corporation. All rights reserved. + + The presentation, distribution or other dissemination of the information contained herein by Microsoft is not a license, either expressly or impliedly, to any intellectual property owned or controlled by Microsoft. + + This document and the information contained herein is provided on an "AS IS" basis and to the maximum extent permitted by applicable law, Microsoft provides the document AS IS AND WITH ALL FAULTS, and hereby disclaims all other warranties and conditions, either express, implied or statutory, including, but not limited to, any (if any) implied warranties, duties or conditions of merchantability, of fitness for a particular purpose, of accuracy or completeness of responses, of results, of workmanlike effort, of lack of viruses, and of lack of negligence, all with regard to the document. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT WITH REGARD TO THE DOCUMENT. + + IN NO EVENT WILL MICROSOFT BE LIABLE TO ANY OTHER PARTY FOR THE COST OF PROCURING SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS OF USE, LOSS OF DATA, OR ANY INCIDENTAL, CONSEQUENTIAL, DIRECT, INDIRECT, OR SPECIAL DAMAGES WHETHER UNDER CONTRACT, TORT, WARRANTY, OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY OTHER AGREEMENT RELATING TO THIS DOCUMENT, WHETHER OR NOT SUCH PARTY HAD ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. json: ms-ws-routing-spec.json - yml: ms-ws-routing-spec.yml + yaml: ms-ws-routing-spec.yml html: ms-ws-routing-spec.html - text: ms-ws-routing-spec.LICENSE + license: ms-ws-routing-spec.LICENSE - license_key: ms-xamarin-uitest3.2.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-xamarin-uitest3.2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Xamarin.UITest 3.2.0\nLicense file\nMICROSOFT SOFTWARE LICENSE TERMS\n\n**Xamarin.UITest\ + \ **\n\nThese license terms are an agreement between Microsoft Corporation (or based on\ + \ where you live, one of its affiliates) and you. They apply to the software named above.\ + \ The terms also apply to any Microsoft services or updates for the software, except to\ + \ the extent those have different terms.\n\nIF YOU COMPLY WITH THESE LICENSE TERMS, YOU\ + \ HAVE THE RIGHTS BELOW.\n\n**1. INSTALLATION AND USE RIGHTS. **\nYou may install and use\ + \ any number of copies of the software.\n\n2. TERMS FOR SPECIFIC COMPONENTS.\n\na. Third\ + \ Party Components. The software may include third party components with separate legal\ + \ notices or governed by other agreements, as may be described in the ThirdPartyNotices\ + \ file(s) accompanying the software. \n\n3. SCOPE OF LICENSE. The software is licensed,\ + \ not sold. This agreement only gives you some rights to use the software. Microsoft reserves\ + \ all other rights. Unless applicable law gives you more rights despite this limitation,\ + \ you may use the software only as expressly permitted in this agreement. In doing so, you\ + \ must comply with any technical limitations in the software that only allow you to use\ + \ it in certain ways. You may not\n\n* work around any technical limitations in the software;\n\ + * reverse engineer, decompile or disassemble the software, or otherwise attempt to derive\ + \ the source code for the software except, and only to the extent required by third party\ + \ licensing terms governing the use of certain open source components that may be included\ + \ in the software;\n* remove, minimize, block or modify any notices of Microsoft or its\ + \ suppliers in the software; \n* use the software in any way that is against the law; or\n\ + * share, publish, rent or lease the software, or provide the software as a stand-alone offering\ + \ for others to use, or transfer the software or this agreement to any third party.\n\n\ + 4. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws\ + \ and regulations that apply to the software, which include restrictions on destinations,\ + \ end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting.\ + \ \n\n5. SUPPORT SERVICES. Because this software is \"as is,\" we may not provide support\ + \ services for it.\n\n6. ENTIRE AGREEMENT. This agreement, and the terms for supplements,\ + \ updates, Internet-based services and support services that you use, are the entire agreement\ + \ for the software and support services.\n\n7. APPLICABLE LAW. If you acquired the software\ + \ in the United States, Washington law applies to interpretation of and claims for breach\ + \ of this agreement, and the laws of the state where you live apply to all other claims.\ + \ If you acquired the software in any other country, its laws apply.\n\n8. CONSUMER RIGHTS;\ + \ REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other\ + \ rights, including consumer rights, under the laws of your state or country. Separate and\ + \ apart from your relationship with Microsoft, you may also have rights with respect to\ + \ the party from which you acquired the software. This agreement does not change those other\ + \ rights if the laws of your state or country do not permit it to do so. For example, if\ + \ you acquired the software in one of the below regions, or mandatory country law applies,\ + \ then the following provisions apply to you:\n\na. Australia. You have statutory guarantees\ + \ under the Australian Consumer Law and nothing in this agreement is intended to affect\ + \ those rights.\n\nb. Canada. If you acquired this software in Canada, you may stop receiving\ + \ updates by turning off the automatic update feature, disconnecting your device from the\ + \ Internet (if and when you re-connect to the Internet, however, the software will resume\ + \ checking for and installing updates), or uninstalling the software. The product documentation,\ + \ if any, may also specify how to turn off updates for your specific device or software.\n\ + \nc. Germany and Austria.\n\n(i) Warranty. The properly licensed software will perform substantially\ + \ as described in any Microsoft materials that accompany the software. However, Microsoft\ + \ gives no contractual guarantee in relation to the licensed software.\n\n(ii) Limitation\ + \ of Liability. In case of intentional conduct, gross negligence, claims based on the Product\ + \ Liability Act, as well as, in case of death or personal or physical injury, Microsoft\ + \ is liable according to the statutory law.\n\nSubject to the foregoing clause (ii), Microsoft\ + \ will only be liable for slight negligence if Microsoft is in breach of such material contractual\ + \ obligations, the fulfillment of which facilitate the due performance of this agreement,\ + \ the breach of which would endanger the purpose of this agreement and the compliance with\ + \ which a party may constantly trust in (so-called \"cardinal obligations\"). In other cases\ + \ of slight negligence, Microsoft will not be liable for slight negligence.\n\n9. DISCLAIMER\ + \ OF WARRANTY. THE SOFTWARE IS LICENSED \"AS-IS.\" YOU BEAR THE RISK OF USING IT. MICROSOFT\ + \ GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR\ + \ LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR\ + \ A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n10. LIMITATION ON AND EXCLUSION OF DAMAGES.\ + \ YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00.\ + \ YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL,\ + \ INDIRECT OR INCIDENTAL DAMAGES.\nThis limitation applies to (a) anything related to the\ + \ software, services, content (including code) on third party Internet sites, or third party\ + \ applications; and (b) claims for breach of contract, breach of warranty, guarantee or\ + \ condition, strict liability, negligence, or other tort to the extent permitted by applicable\ + \ law.\n\nIt also applies even if Microsoft knew or should have known about the possibility\ + \ of the damages. The above limitation or exclusion may not apply to you because your country\ + \ may not allow the exclusion or limitation of incidental, consequential or other damages." json: ms-xamarin-uitest3.2.0.json - yml: ms-xamarin-uitest3.2.0.yml + yaml: ms-xamarin-uitest3.2.0.yml html: ms-xamarin-uitest3.2.0.html - text: ms-xamarin-uitest3.2.0.LICENSE + license: ms-xamarin-uitest3.2.0.LICENSE - license_key: ms-xml-core-4.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ms-xml-core-4.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Microsoft XML Core Services (MSXML) 4.0 EULA\nEND-USER LICENSE AGREEMENT FOR MICROSOFT\ + \ SOFTWARE\nMicrosoft xml CORE SERVICES (MSXML) 4.0 \n\nIMPORTANT-READ CAREFULLY: This Microsoft\ + \ End-User License Agreement (\"EULA\") is a legal agreement between you (either an individual\ + \ or a single entity) and Microsoft Corporation for the Microsoft software identified above,\ + \ which may include computer software, associated media, printed materials, and \"online\"\ + \ or electronic documentation (\"SOFTWARE\"). By downloading, installing, copying, or otherwise\ + \ using the SOFTWARE, you agree to be bound by the terms of this EULA. If you do not agree\ + \ to the terms of this EULA, do not install or use the SOFTWARE.\n\nThe SOFTWARE is protected\ + \ by copyright laws and international copyright treaties, as well as other intellectual\ + \ property laws and treaties. Microsoft or its suppliers own the title, copyright and other\ + \ intellectual property rights in the SOFTWARE. The SOFTWARE is licensed, not sold.\n\n\ + The SOFTWARE consists of two elements: (1) XML Core Services component (\"COMPONENT\")\ + \ which contains, among other items, files with \".dll\" extensions which expose application\ + \ programming interfaces that provide implementation to read, write, transform and make\ + \ other manipulations with XML; and (2) MSXML software development kit (\"SDK\") which may\ + \ include documentation, sample code, and other information designed to assist in the development\ + \ of your applications.\n\n1.\tGRANT OF LICENSE. This EULA grants you the following rights:\n\ + a.\tGeneral. You may install and use any number of copies of the SOFTWARE on any number\ + \ of computers, including workstations, terminals or other digital electronic devices, for\ + \ the purpose of designing, developing and testing your application(s) which work in conjunction\ + \ with XML (\"Application(s)\"). \nb.\tSample Code. You may modify the portions of the SDK\ + \ designated as \"Sample Code\" for the purpose of designing, developing and testing your\ + \ Application.\nc.\tRedistribution of SOFTWARE and/or COMPONENT. You may copy and redistribute\ + \ the SOFTWARE (in its entirety) and/or the COMPONENT (in its entirety) either in conjunction\ + \ with your Application or standalone in and of itself, subject to the following restrictions\ + \ and limitations:\n(i)\tIf you redistribute the SOFTWARE and/or COMPONENT in their entirety,\ + \ your copy must be a true and complete copy of the SOFTWARE and/or COMPONENT, including\ + \ Microsoft’s set up and all copyright notices, logos, end user license agreement and/or\ + \ trademarks that appear in the SOFTWARE and/or COMPONENT as received from Microsoft;\n\ + (ii)\tIf you redistribute the SOFTWARE and/or COMPONENT in conjunction with your Application,\ + \ your Application must include a valid copyright notice in your own name, which notice\ + \ shall be sufficient to protect Microsoft’s copyright in the SOFTWARE and/or COMPONENT;\n\ + (iii)\tIf you redistribute the SOFTWARE and/or COMPONENT in conjunction with your Application,\ + \ and if your Application does not display Microsoft’s end user license agreement to your\ + \ end user, then your Application must be accompanied by license terms that are at least\ + \ as restrictive as, and as protective of Microsoft as, those contained in this EULA.;\n\ + (iv)\tYou shall not use Microsoft’s name, logo or trademarks to market your Application;\n\ + (v)\tYou shall not modify or alter the SOFTWARE and/or COMPONENT in any way; provided that\ + \ you may merge those files in the SOFTWARE and/or COMPONENT with \"msm\" extensions into\ + \ the \"msm\" files of your Application;\n(vi)\tYou shall not redistribute individual parts\ + \ or files of the COMPONENT; you must redistribute the COMPONENT in its entirety;\n(vii)\t\ + You shall not redistribute the SDK separately; the SDK may only be redistributed as part\ + \ of the SOFTWARE in its entirety; and\n(viii)\tYou agree to indemnify, hold harmless and\ + \ defend Microsoft from and against any claims or lawsuits, including reasonable attorneys’\ + \ fees, which arise or result from your distribution of the SOFTWARE and/or COMPONENT and/or\ + \ your Application.\nd.\tRedistribution of Sample Code as Modified by You. You may copy\ + \ and redistribute any Sample Code that you have modified as described in Section 1(b) above\ + \ and incorporated into your Application, in both source code form and object code form,\ + \ subject to the following restrictions and limitations:\n(i)\tYou shall distribute the\ + \ modified Sample Code only in conjunction with and as part of an Application that adds\ + \ significant and primary functionality to the Sample Code;\n(ii)\tYou shall not use Microsoft’s\ + \ name, logo or trademarks to market your Application;\n(iii)\tYou shall to include a valid\ + \ copyright notice in your own name in your Application, which notice shall be sufficient\ + \ to protect Microsoft’s copyright in the modified Sample Code; and\n(iv)\tYou agree to\ + \ indemnify, hold harmless and defend Microsoft from and against any claims or lawsuits\ + \ including reasonable attorneys’ fees, which arise or result from the use or distribution\ + \ of the modified Sample Code and/or your Application.\ne.\t\tIdentified Software. Your\ + \ license rights to the SOFTWARE are conditioned upon your (a) not incorporating Identified\ + \ Software into, or combining Identified Software with, the SOFTWARE, or a derivative work\ + \ thereof; (b) not distributing Identified Software in conjunction with the SOFTWARE; and\ + \ (c) not using Identified Software in the development of a derivative work of the SOFTWARE.\ + \ \"Identified Software\" means software which is licensed pursuant to terms that directly\ + \ or indirectly (i) create, or purport to create, obligations for Microsoft with respect\ + \ to the SOFTWARE or derivative work thereof or (ii) grant, or purport to grant, to any\ + \ third party any rights or immunities under Microsoft’s intellectual property or proprietary\ + \ rights in the SOFTWARE or derivative work thereof. Identified Software includes, without\ + \ limitation, any software that requires as a condition of use, modification and/or distribution\ + \ of such software that other software incorporated into, derived from or distributed with\ + \ such software be (a) disclosed or distributed in source code form; (b) be licensed for\ + \ the purpose of making derivative works; or (c) be redistributable at no charge.\nf.\t\ + Benchmark Testing. You may not disclose the results of any benchmark test using the SOFTWARE\ + \ to any third party without Microsoft’s prior written approval. \ng.\tReservation of\ + \ Rights. Microsoft reserves all rights not expressly granted herein. \n\n2.\tLIMITATIONS\ + \ ON REVERSE ENGINEERING, DECOMPILATION, AND DISASSEMBLY. You may not reverse engineer,\ + \ decompile, or disassemble the SOFTWARE, except and only to the extent that such activity\ + \ is expressly permitted by applicable law notwithstanding this limitation.\n3.\tNO RENTAL.\ + \ You may not rent, lease, or lend the SOFTWARE.\n\n4.\tSUPPORT SERVICES. In the event Microsoft\ + \ does provide you with support services related to the SOFTWARE (\"Support Services\"),\ + \ use of such Support Services is governed by the Microsoft policies and programs described\ + \ in the user manual, in \"online\" documentation, and/or in other Microsoft-provided materials.\ + \ Any supplemental software code provided to you as part of the Support Services shall be\ + \ considered part of the SOFTWARE and subject to the terms and conditions of this EULA.\ + \ With respect to technical information you provide to Microsoft as part of the Support\ + \ Services, Microsoft may use such information for its business purposes, including for\ + \ product support and development. Microsoft will not utilize such technical information\ + \ in a form that personally identifies you.\n\n5.\tTERMINATION. Without prejudice to any\ + \ other rights, Microsoft may terminate this EULA if you fail to comply with the terms and\ + \ conditions of this EULA. In such event, you must destroy all copies of the SOFTWARE and\ + \ all of its component parts.\n\n6.\tINTELLECTUAL PROPERTY RIGHTS. All title and intellectual\ + \ property rights in and to the SOFTWARE (including but not limited to any images, photographs,\ + \ animations, video, audio, music, text and \"applets\" incorporated into the SOFTWARE),\ + \ and any copies you are permitted to make herein are owned by Microsoft or its suppliers.\ + \ All title and intellectual property rights in and to the content which may be accessed\ + \ through use of the SOFTWARE is the property of the respective content owner and may be\ + \ protected by applicable copyright or other intellectual property laws and treaties. This\ + \ EULA grants you no rights to use such content. \n\n7.\tU.S. GOVERNMENT LICENSE RIGHTS.\ + \ SOFTWARE provided to the U.S. Government pursuant to solicitations issued on or after\ + \ December 1, 1995 is provided with the commercial license rights and restrictions described\ + \ elsewhere herein. SOFTWARE provided to the U.S. Government pursuant to solicitations\ + \ issued prior to December 1, 1995 is provided with \"Restricted Rights\" as provided for\ + \ in FAR, 48 CFR 52.227-14 (JUNE 1987) or DFAR, 48 CFR 252.227-7013 (OCT 1988), as applicable.\ + \ \n\n8.\tEXPORT RESTRICTIONS. You agree that the SOFTWARE is subject to U.S. export jurisdiction.\ + \ You agree to comply with all applicable international and national laws that apply to\ + \ the SOFTWARE including the U.S. Export Administration Regulations, as well as end-user,\ + \ end use and destination restrictions issued by the U.S. and other governments. For additional\ + \ information see http://www.microsoft.com/exporting/.\n\n9. \tDISCLAIMER OF WARRANTIES.\ + \ To the maximum extent permitted by applicable law, Microsoft and its suppliers provide\ + \ the SOFTWARE and any (if any) Support Services AS IS AND WITH ALL FAULTS, and hereby disclaim\ + \ all warranties and conditions, either express, implied or statutory, including, but not\ + \ limited to, any (if any) implied warranties or conditions of merchantability, of fitness\ + \ for a particular purpose, of lack of viruses, of accuracy or completeness of responses,\ + \ of results, and of lack of negligence or lack of workmanlike effort, all with regard to\ + \ the SOFTWARE, and the provision of or failure to provide Support Services. ALSO, THERE\ + \ IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE\ + \ TO DESCRIPTION OR NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE. THE ENTIRE RISK AS TO\ + \ THE QUALITY OF OR ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE AND SUPPORT SERVICES,\ + \ IF ANY, REMAINS WITH YOU.\n\n10. EXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER\ + \ DAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL MICROSOFT\ + \ OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, PUNITIVE, OR CONSEQUENTIAL\ + \ DAMAGES WHATSOEVER (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS OR CONFIDENTIAL\ + \ OR OTHER INFORMATION, FOR BUSINESS INTERRUPTION, FOR PERSONAL INJURY, FOR LOSS OF PRIVACY,\ + \ FOR FAILURE TO MEET ANY DUTY INCLUDING OF GOOD FAITH OR OF REASONABLE CARE, FOR NEGLIGENCE,\ + \ AND FOR ANY OTHER PECUNIARY OR OTHER LOSS WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED\ + \ TO THE USE OF OR INABILITY TO USE THE SOFTWARE, THE PROVISION OF OR FAILURE TO PROVIDE\ + \ SUPPORT SERVICES, OR OTHERWISE UNDER OR IN CONNECTION WITH ANY PROVISION OF THIS EULA,\ + \ EVEN IN THE EVENT OF THE FAULT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, BREACH\ + \ OF CONTRACT OR BREACH OF WARRANTY OF MICROSOFT OR ANY SUPPLIER, AND EVEN IF MICROSOFT\ + \ OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \n\n11. \tLIMITATION\ + \ OF LIABILITY AND REMEDIES. Notwithstanding any damages that you might incur for any reason\ + \ whatsoever (including, without limitation, all damages referenced above and all direct\ + \ or general damages), the entire liability of Microsoft and any of its suppliers under\ + \ any provision of this EULA and your exclusive remedy for all of the foregoing shall be\ + \ limited to the greater of the amount actually paid by you for the SOFTWARE or U.S.$5.00.\ + \ The foregoing limitations, exclusions and disclaimers shall apply to the maximum extent\ + \ permitted by applicable law, even if any remedy fails its essential purpose.\n\n12.\t\ + APPLICABLE LAW. If you acquired this SOFTWARE in the United States, this EULA is governed\ + \ by the laws of the State of Washington. If you acquired this SOFTWARE in Canada, unless\ + \ expressly prohibited by local law, this EULA is governed by the laws in force in the Province\ + \ of Ontario, Canada; and, in respect of any dispute which may arise hereunder, you consent\ + \ to the jurisdiction of the federal and provincial courts sitting in Toronto, Ontario.\ + \ If this SOFTWARE was acquired outside the United States, then local law may apply.\n\n\ + 13.\tENTIRE AGREEMENT. This EULA (including any addendum or amendment to this EULA which\ + \ is included with the SOFTWARE) is the entire agreement between you and Microsoft relating\ + \ to the SOFTWARE and the Support Services (if any) and it supersedes all prior or contemporaneous\ + \ oral or written communications, proposals and representations with respect to the SOFTWARE\ + \ or any other subject matter covered by this EULA. To the extent the terms of any Microsoft\ + \ policies or programs for Support Services conflict with the terms of this EULA, the terms\ + \ of this EULA shall control.\n\n14. \tQUESTIONS? Should you have any questions concerning\ + \ this EULA, or if you desire to contact Microsoft for any reason, please contact the Microsoft\ + \ subsidiary serving your country, or write: Microsoft Sales Information Center/One Microsoft\ + \ Way/Redmond, WA 98052-6399. \n\n" json: ms-xml-core-4.0.json - yml: ms-xml-core-4.0.yml + yaml: ms-xml-core-4.0.yml html: ms-xml-core-4.0.html - text: ms-xml-core-4.0.LICENSE + license: ms-xml-core-4.0.LICENSE - license_key: msj-sample-code + category: Permissive spdx_license_key: LicenseRef-scancode-msj-sample-code other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Microsoft grants to you a royalty-free right to use and modify the source code version\ + \ and to reproduce and distribute the object code version of the sample code, icons, cursors,\ + \ and bitmaps provided within the Sample Code bin/folder on the SOFTWARE (\"Sample Code\"\ + ) provided that you:\n\ndistribute the Sample Code only in conjunction with and as a part\ + \ of your software product that adds primary and significant functionality to the sample\ + \ code;\n\ndo not use Microsoft's name, logo, or trademarks to market your software product;\ + \ and\n\nagree to indemnify, hold harmless, and defend Microsoft and its suppliers from\ + \ and against any claims or lawsuits, including attorneys' fees, that arise or result from\ + \ your distribution of your software product and \n\nall Microsoft Systems Journal (MSJ)\ + \ code used within your program(s) must be flagged: \nCopyright {year of publication}, Microsoft\ + \ Systems Journal.\n\nMSJ does not make any representation or warranty, express or implied\ + \ with respect to any code or other information herein. \n\nMSJ disclaims any liability\ + \ whatsoever for any use of such code or other information." json: msj-sample-code.json - yml: msj-sample-code.yml + yaml: msj-sample-code.yml html: msj-sample-code.html - text: msj-sample-code.LICENSE + license: msj-sample-code.LICENSE - license_key: msntp + category: Copyleft spdx_license_key: LicenseRef-scancode-msntp other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + General Public Licence for the software known as MSNTP + ------------------------------------------------------ + + (c) Copyright, N.M. Maclaren, 1996, 1997, 2000 + (c) Copyright, University of Cambridge, 1996, 1997, 2000 + + Free use of MSNTP in source and binary forms is permitted, provided that this + entire licence is duplicated in all copies, and that any documentation, + announcements, and other materials related to use acknowledge that the software + was developed by N.M. Maclaren (hereafter refered to as the Author) at the + University of Cambridge. Neither the name of the Author nor the University of + Cambridge may be used to endorse or promote products derived from this material + without specific prior written permission. + + The Author and the University of Cambridge retain the copyright and all other + legal rights to the software and make it available non-exclusively. All users + must ensure that the software in all its derivations carries a copyright notice + in the form: + (c) Copyright N.M. Maclaren, + (c) Copyright University of Cambridge. + + + + NO WARRANTY + + Because the MSNTP software is licensed free of charge, the Author and the + University of Cambridge provide absolutely no warranty, 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 MSNTP software is with you. Should MSNTP + prove defective, you assume the cost of all necessary servicing or repair. + + In no event, unless required by law, will the Author or the University of + Cambridge, or any other party who may modify and redistribute this software as + permitted in accordance with the provisions below, be liable for damages for + any losses whatsoever, including but not limited to lost profits, lost monies, + lost or corrupted data, or other special, incidental or consequential losses + that may arise out of the use or inability to use the MSNTP software. + + COPYING POLICY + + Permission is hereby granted for copying and distribution of copies of the + MSNTP source and binary files, and of any part thereof, subject to the + following licence conditions: + + 1. You may distribute MSNTP or components of MSNTP, with or without additions + developed by you or by others. No charge, other than an "at-cost" distribution + fee, may be charged for copies, derivations, or distributions of this material + without the express written consent of the copyright holders. + + 2. You may also distribute MSNTP along with any other product for sale, + provided that the cost of the bundled package is the same regardless of whether + MSNTP is included or not, and provided that those interested only in MSNTP must + be notified that it is a product freely available from the University of + Cambridge. + + 3. If you distribute MSNTP software or parts of MSNTP, with or without + additions developed by you or others, then you must either make available the + source to all portions of the MSNTP system (exclusive of any additions made by + you or by others) upon request, or instead you may notify anyone requesting + source that it is freely available from the University of Cambridge. + + 4. You may not omit any of the copyright notices on either the source files, + the executable files, or the documentation. + + 5. You may not omit transmission of this License agreement with whatever + portions of MSNTP that are distributed. + + 6. Any users of this software must be notified that it is without warranty or + guarantee of any nature, express or implied, nor is there any fitness for use + represented. + + October 1996 + April 1997 + October 2000 json: msntp.json - yml: msntp.yml + yaml: msntp.yml html: msntp.html - text: msntp.LICENSE + license: msntp.LICENSE - license_key: msppl + category: Proprietary Free spdx_license_key: LicenseRef-scancode-msppl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Microsoft patterns & practices License + patterns & practices Developer Center + This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. + 1. Definitions + The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. + A "contribution" is the original software, or any additions or changes to the software. + A "contributor" is any person that distributes its contribution under this license. + "Licensed patents" are a contributor's patent claims that read directly on its contribution. + 2. Grant of Rights + (A) Code + * Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of any contribution for which source code is provided, and distribute its contribution or any permitted derivative works that you create. + * Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or permitted derivative works of the contribution in the software. + (B) Documentation + * Documentation is governed by the Creative Commons Attribution License 3.0, a copy of which is attached below, and not by the other terms of this Microsoft patterns & practices license. + 3. Conditions and Limitations + (A) No Trademark License - This license does not grant you rights to use any contributors' name, logo, or trademarks. + (B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. + (C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. + (D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. + (E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. + (F) Platform Limitation - The licenses granted in section 2(A) extend only to the software or permitted derivative works that you create that run directly on a Microsoft Windows operating system product, Microsoft run-time technology (such as the .NET Framework or Silverlight), or Microsoft application platform (such as Microsoft Office or Microsoft Dynamics). + (G) Binary Code Files - The software may include certain binary code files for which its source code is not included as part of the software, or that are packaged without the source code in an installable or executable package. As to these binary code files, unless applicable law gives you more rights despite this limitation, you must comply with all technical limitations in those files that only allow you to use it in certain ways. You may not modify, work around any technical limitations in, or reverse engineer, decompile or disassemble these binary code files, except and only to the extent that applicable law expressly permits, despite this limitation. + (H) Feedback - If you give feedback about the software to Microsoft, you give to Microsoft, without charge, the right to use, share and commercialize your feedback in any way and for any purpose. You also give to third parties, without charge, any patent rights needed for their products, technologies and services to use or interface with any specific parts of a Microsoft software or service that includes the feedback. You will not give feedback that is subject to a license that requires Microsoft to license its software or documentation to third parties because we include your feedback in them. These rights survive this agreement. + * * * * * + Creative Commons Attribution License 3.0 Unported + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + 1. Definitions + a. "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with one or more other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. + b. "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. + c. "Licensor" means the individual, individuals, entity or entities that offers the Work under the terms of this License. + d. "Original Author" means the individual, individuals, entity or entities who created the Work. + e. "Work" means the copyrightable work of authorship offered under the terms of this License. + f. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. + 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. + 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: + a. to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; + b. to create and reproduce Derivative Works provided that any such Derivative Work, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified."; + c. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; + d. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works. + e. For the avoidance of doubt, where the Work is a musical composition: + i. Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or, in the event that Licensor is a member of a performance rights society (e.g. ASCAP, BMI, SESAC), via that society, royalties for the public performance or public digital performance (e.g. webcast) of the Work. + ii. Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions). + f. Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions). + The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. + 4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: + a. You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of a recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. When You distribute, publicly display, publicly perform, or publicly digitally perform the Work, You may not impose any technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by Section 4(b), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by Section 4(b), as requested. + b. If You distribute, publicly display, publicly perform, or publicly digitally perform the Work (as defined in Section 1 above) or any Derivative Works (as defined in Section 1 above) or Collective Works (as defined in Section 1 above), You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and, consistent with Section 3(b) in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4(b) may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear, if a credit for all contributing authors of the Derivative Work or Collective Work appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties. + 5. Representations, Warranties and Disclaimer + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND ONLY TO THE EXTENT OF ANY RIGHTS HELD IN THE LICENSED WORK BY THE LICENSOR. THE LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MARKETABILITY, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + 7. Termination + a. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works (as defined in Section 1 above) or Collective Works (as defined in Section 1 above) from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + b. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. + 8. Miscellaneous + a. Each time You distribute or publicly digitally perform the Work (as defined in Section 1 above) or a Collective Work (as defined in Section 1 above), the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. + b. Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. + c. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + d. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. + e. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + 201011 json: msppl.json - yml: msppl.yml + yaml: msppl.yml html: msppl.html - text: msppl.LICENSE + license: msppl.LICENSE - license_key: mtll + category: Permissive spdx_license_key: MTLL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Software License for MTL\n\n\nThis file is part of the Matrix Template Library\n\n\ + Dresden University of Technology -- short TUD -- and Indiana University \n-- short IU --\ + \ have the exclusive rights to license this product under the\nfollowing license.\n\nRedistribution\ + \ and use in source and binary forms, with or without modification, are permitted provided\ + \ that the following conditions are met: \n1. All redistributions of source code must retain\ + \ the above copyright notice, the list of authors in the original source code, this list\ + \ of conditions and the disclaimer listed in this license; \n2. All redistributions in binary\ + \ form must reproduce the above copyright notice, this list of conditions and the disclaimer\ + \ listed in this license in the documentation and/or other materials provided with the distribution;\ + \ \n3. Any documentation included with all redistributions must include the following acknowledgement:\ + \ \n\"This product includes software developed at the University of Notre Dame, the Pervasive\ + \ Technology Labs at Indiana University, and Dresden University of Technology. For technical\ + \ information contact Andrew Lumsdaine at the Pervasive Technology Labs at Indiana University.\ + \ For administrative and license questions contact the Advanced Research and Technology\ + \ Institute at 1100 Waterway Blvd. Indianapolis, Indiana 46202, phone 317-274-5905, fax\ + \ 317-274-5902.\" \nAlternatively, this acknowledgement may appear in the software itself,\ + \ and wherever such third-party acknowledgments normally appear. \n4. The name \"MTL\" shall\ + \ not be used to endorse or promote products derived from this software without prior written\ + \ permission from IU or TUD. For written permission, please contact Indiana University Advanced\ + \ Research & Technology Institute. \n5. Products derived from this software may not be called\ + \ \"MTL\", nor may \"MTL\" appear in their name, without prior written permission of Indiana\ + \ University Advanced Research & Technology Institute.\n\nTUD and IU provide no reassurances\ + \ that the source code provided does not infringe the patent or any other intellectual property\ + \ rights of any other entity. TUD and IU disclaim any liability to any recipient for claims\ + \ brought by any other entity based on infringement of intellectual property rights or otherwise.\n\ + \nLICENSEE UNDERSTANDS THAT SOFTWARE IS PROVIDED \"AS IS\" FOR WHICH NO WARRANTIES AS TO\ + \ CAPABILITIES OR ACCURACY ARE MADE. DRESDEN UNIVERSITY OF TECHNOLOGY AND INDIANA UNIVERSITY\ + \ GIVE NO WARRANTIES AND MAKE NO REPRESENTATION THAT SOFTWARE IS FREE OF INFRINGEMENT OF\ + \ THIRD PARTY PATENT, COPYRIGHT, OR OTHER PROPRIETARY RIGHTS. DRESDEN UNIVERSITY OF TECHNOLOGY\ + \ AND INDIANA UNIVERSITY MAKE NO WARRANTIES THAT SOFTWARE IS FREE FROM \"BUGS\", \"VIRUSES\"\ + , \"TROJAN HORSES\", \"TRAP DOORS\", \"WORMS\", OR OTHER HARMFUL CODE. LICENSEE ASSUMES\ + \ THE ENTIRE RISK AS TO THE PERFORMANCE OF SOFTWARE AND/OR ASSOCIATED MATERIALS, AND TO\ + \ THE PERFORMANCE AND VALIDITY OF INFORMATION GENERATED USING SOFTWARE." json: mtll.json - yml: mtll.yml + yaml: mtll.yml html: mtll.html - text: mtll.LICENSE + license: mtll.LICENSE - license_key: mtx-licensing-statement + category: Proprietary Free spdx_license_key: LicenseRef-scancode-mtx-licensing-statement other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Patent License Grant. Monotype hereby grants to All a worldwide, non-exclusive, nocharge, royalty-free, irrevocable license under the Licensed Patents to make, use for any purpose, sell, and otherwise distribute and provide Licensed Products and Services, said license having a term until the last to expire of the Licensed Patents. + + Code and Format License. Monotype hereby grants to All a perpetual, worldwide, nonexclusive, no-charge, royalty-free, irrevocable license under its copyright rights to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, distribute, and otherwise use in Licensed Products and Services the Licensed Software and the Licensed Format, said license having a term until expiration of the foregoing copyright rights. + + For purposes of this Licensing Statement, the following definitions apply: + + “Licensed Patents” means United States Patent No. 6,031,622 as well as all patents and patent applications that on or after December 28, 2011 are owned by Monotype and would necessarily be infringed through the use of the Licensed Technology in making, using, or selling any Licensed Products and Services. + + “Licensed Products and Services” means all products (including but not limited to software products) and systems incorporating any part of or all of the Licensed Technology, and services utilizing any part of or all of the Licensed Technology. + + “Licensed Format” means the MicroType Express (MTX) Font Format in the form that it exists as of December 28, 2011 a copy of which can be found at http://www.w3.org/Submission/MTX/. + + “Licensed Software” means Monotype's code disclosed in its Member Submission to the W3C dated March 5, 2008, a copy of which can be found at http://www.w3.org/Submission/MTX/, but means solely that code. + + “Licensed Technology” means the Licensed Format and the Licensed Software. + + “All” and “Anyone” means any and all entities and individuals. json: mtx-licensing-statement.json - yml: mtx-licensing-statement.yml + yaml: mtx-licensing-statement.yml html: mtx-licensing-statement.html - text: mtx-licensing-statement.LICENSE + license: mtx-licensing-statement.LICENSE - license_key: mulanpsl-1.0 + category: Permissive spdx_license_key: MulanPSL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 木兰宽松许可证, 第1版 + 木兰宽松许可证, 第1版 + + 2019年8月 http://license.coscl.org.cn/MulanPSL + + 您对“软件”的复制、使用、修改及分发受木兰宽松许可证,第1版(“本许可证”)的如下条款的约束: + + 0. 定义 + + “软件”是指由“贡献”构成的许可在“本许可证”下的程序和相关文档的集合。 + + “贡献者”是指将受版权法保护的作品许可在“本许可证”下的自然人或“法人实体”。 + + “法人实体”是指提交贡献的机构及其“关联实体”。 + + “关联实体”是指,对“本许可证”下的一方而言,控制、受控制或与其共同受控制的机构,此处的控制是指有受控方或共同受控方至少50%直接或间接的投票权、资金或其他有价证券。 + + “贡献”是指由任一“贡献者”许可在“本许可证”下的受版权法保护的作品。 + + 1. 授予版权许可 + + 每个“贡献者”根据“本许可证”授予您永久性的、全球性的、免费的、非独占的、不可撤销的版权许可,您可以复制、使用、修改、分发其“贡献”,不论修改与否。 + + 2. 授予专利许可 + + 每个“贡献者”根据“本许可证”授予您永久性的、全球性的、免费的、非独占的、不可撤销的(根据本条规定撤销除外)专利许可,供您制造、委托制造、使用、许诺销售、销售、进口其“贡献”或以其他方式转移其“贡献”。前述专利许可仅限于“贡献者”现在或将来拥有或控制的其“贡献”本身或其“贡献”与许可“贡献”时的“软件”结合而将必然会侵犯的专利权利要求,不包括仅因您或他人修改“贡献”或其他结合而将必然会侵犯到的专利权利要求。如您或您的“关联实体”直接或间接地(包括通过代理、专利被许可人或受让人),就“软件”或其中的“贡献”对任何人发起专利侵权诉讼(包括反诉或交叉诉讼)或其他专利维权行动,指控其侵犯专利权,则“本许可证”授予您对“软件”的专利许可自您提起诉讼或发起维权行动之日终止。 + + 3. 无商标许可 + + “本许可证”不提供对“贡献者”的商品名称、商标、服务标志或产品名称的商标许可,但您为满足第4条规定的声明义务而必须使用除外。 + + 4. 分发限制 + + 您可以在任何媒介中将“软件”以源程序形式或可执行形式重新分发,不论修改与否,但您必须向接收者提供“本许可证”的副本,并保留“软件”中的版权、商标、专利及免责声明。 + + 5. 免责声明与责任限制 + + “软件”及其中的“贡献”在提供时不带任何明示或默示的担保。在任何情况下,“贡献者”或版权所有者不对任何人因使用“软件”或其中的“贡献”而引发的任何直接或间接损失承担责任,不论因何种原因导致或者基于何种法律理论,即使其曾被建议有此种损失的可能性。 + + 条款结束 + + 如何将木兰宽松许可证,第1版,应用到您的软件 + + 如果您希望将木兰宽松许可证,第1版,应用到您的新软件,为了方便接收者查阅,建议您完成如下三步: + + 1, 请您补充如下声明中的空白,包括软件名、软件的首次发表年份以及您作为版权人的名字; + + 2, 请您在软件包的一级目录下创建以“LICENSE”为名的文件,将整个许可证文本放入该文件中; + + 3, 请将如下声明文本放入每个源文件的头部注释中。 + + Copyright (c) [2019] [name of copyright holder] + [Software Name] is licensed under the Mulan PSL v1. + You can use this software according to the terms and conditions of the Mulan PSL v1. + You may obtain a copy of Mulan PSL v1 at: + http://license.coscl.org.cn/MulanPSL + THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR + PURPOSE. + See the Mulan PSL v1 for more details. + Mulan Permissive Software License,Version 1 + Mulan Permissive Software License,Version 1 (Mulan PSL v1) + + August 2019 http://license.coscl.org.cn/MulanPSL + + Your reproduction, use, modification and distribution of the Software shall be subject to Mulan PSL v1 (this License) with following terms and conditions: + + 0. Definition + + Software means the program and related documents which are comprised of those Contribution and licensed under this License. + + Contributor means the Individual or Legal Entity who licenses its copyrightable work under this License. + + Legal Entity means the entity making a Contribution and all its Affiliates. + + Affiliates means entities that control, or are controlled by, or are under common control with a party to this License, ‘control’ means direct or indirect ownership of at least fifty percent (50%) of the voting power, capital or other securities of controlled or commonly controlled entity. + + Contribution means the copyrightable work licensed by a particular Contributor under this License. + + 1. Grant of Copyright License + + Subject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable copyright license to reproduce, use, modify, or distribute its Contribution, with modification or not. + + 2. Grant of Patent License + + Subject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable (except for revocation under this Section) patent license to make, have made, use, offer for sale, sell, import or otherwise transfer its Contribution where such patent license is only limited to the patent claims owned or controlled by such Contributor now or in future which will be necessarily infringed by its Contribution alone, or by combination of the Contribution with the Software to which the Contribution was contributed, excluding of any patent claims solely be infringed by your or others’ modification or other combinations. If you or your Affiliates directly or indirectly (including through an agent, patent licensee or assignee), institute patent litigation (including a cross claim or counterclaim in a litigation) or other patent enforcement activities against any individual or entity by alleging that the Software or any Contribution in it infringes patents, then any patent license granted to you under this License for the Software shall terminate as of the date such litigation or activity is filed or taken. + + 3. No Trademark License + + No trademark license is granted to use the trade names, trademarks, service marks, or product names of Contributor, except as required to fulfill notice requirements in section 4. + + 4. Distribution Restriction + + You may distribute the Software in any medium with or without modification, whether in source or executable forms, provided that you provide recipients with a copy of this License and retain copyright, patent, trademark and disclaimer statements in the Software. + + 5. Disclaimer of Warranty and Limitation of Liability + + The Software and Contribution in it are provided without warranties of any kind, either express or implied. In no event shall any Contributor or copyright holder be liable to you for any damages, including, but not limited to any direct, or indirect, special or consequential damages arising from your use or inability to use the Software or the Contribution in it, no matter how it’s caused or based on which legal theory, even if advised of the possibility of such damages. + + End of the Terms and Conditions + + How to apply the Mulan Permissive Software License,Version 1 (Mulan PSL v1) to your software + + To apply the Mulan PSL v1 to your work, for easy identification by recipients, you are suggested to complete following three steps: + + Fill in the blanks in following statement, including insert your software name, the year of the first publication of your software, and your name identified as the copyright owner; + Create a file named “LICENSE” which contains the whole context of this License in the first directory of your software package; + Attach the statement to the appropriate annotated syntax at the beginning of each source file. + Copyright (c) [2019] [name of copyright holder] + [Software Name] is licensed under the Mulan PSL v1. + You can use this software according to the terms and conditions of the Mulan PSL v1. + You may obtain a copy of Mulan PSL v1 at: + http://license.coscl.org.cn/MulanPSL + THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR + PURPOSE. + See the Mulan PSL v1 for more details. json: mulanpsl-1.0.json - yml: mulanpsl-1.0.yml + yaml: mulanpsl-1.0.yml html: mulanpsl-1.0.html - text: mulanpsl-1.0.LICENSE + license: mulanpsl-1.0.LICENSE - license_key: mulanpsl-1.0-en + category: Permissive spdx_license_key: LicenseRef-scancode-mulanpsl-1.0-en other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Mulan Permissive Software License,Version 1 + + Mulan Permissive Software License,Version 1 (Mulan PSL v1) + + August 2019 http://license.coscl.org.cn/MulanPSL + + Your reproduction, use, modification and distribution of the Software shall be subject to Mulan PSL v1 (this License) with following terms and conditions: + + 0. Definition + + Software means the program and related documents which are comprised of those Contribution and licensed under this License. + + Contributor means the Individual or Legal Entity who licenses its copyrightable work under this License. + + Legal Entity means the entity making a Contribution and all its Affiliates. + + Affiliates means entities that control, or are controlled by, or are under common control with a party to this License, ‘control’ means direct or indirect ownership of at least fifty percent (50%) of the voting power, capital or other securities of controlled or commonly controlled entity. + + Contribution means the copyrightable work licensed by a particular Contributor under this License. + + 1. Grant of Copyright License + + Subject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable copyright license to reproduce, use, modify, or distribute its Contribution, with modification or not. + + 2. Grant of Patent License + + Subject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable (except for revocation under this Section) patent license to make, have made, use, offer for sale, sell, import or otherwise transfer its Contribution where such patent license is only limited to the patent claims owned or controlled by such Contributor now or in future which will be necessarily infringed by its Contribution alone, or by combination of the Contribution with the Software to which the Contribution was contributed, excluding of any patent claims solely be infringed by your or others’ modification or other combinations. If you or your Affiliates directly or indirectly (including through an agent, patent licensee or assignee), institute patent litigation (including a cross claim or counterclaim in a litigation) or other patent enforcement activities against any individual or entity by alleging that the Software or any Contribution in it infringes patents, then any patent license granted to you under this License for the Software shall terminate as of the date such litigation or activity is filed or taken. + + 3. No Trademark License + + No trademark license is granted to use the trade names, trademarks, service marks, or product names of Contributor, except as required to fulfill notice requirements in section 4. + + 4. Distribution Restriction + + You may distribute the Software in any medium with or without modification, whether in source or executable forms, provided that you provide recipients with a copy of this License and retain copyright, patent, trademark and disclaimer statements in the Software. + + 5. Disclaimer of Warranty and Limitation of Liability + + The Software and Contribution in it are provided without warranties of any kind, either express or implied. In no event shall any Contributor or copyright holder be liable to you for any damages, including, but not limited to any direct, or indirect, special or consequential damages arising from your use or inability to use the Software or the Contribution in it, no matter how it’s caused or based on which legal theory, even if advised of the possibility of such damages. + + End of the Terms and Conditions + + How to apply the Mulan Permissive Software License,Version 1 (Mulan PSL v1) to your software + + To apply the Mulan PSL v1 to your work, for easy identification by recipients, you are suggested to complete following three steps: + + Fill in the blanks in following statement, including insert your software name, the year of the first publication of your software, and your name identified as the copyright owner; + Create a file named “LICENSE” which contains the whole context of this License in the first directory of your software package; + Attach the statement to the appropriate annotated syntax at the beginning of each source file. + + Copyright (c) [2019] [name of copyright holder] + [Software Name] is licensed under the Mulan PSL v1. + You can use this software according to the terms and conditions of the Mulan PSL v1. + You may obtain a copy of Mulan PSL v1 at: + http://license.coscl.org.cn/MulanPSL + THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR + PURPOSE. + See the Mulan PSL v1 for more details. json: mulanpsl-1.0-en.json - yml: mulanpsl-1.0-en.yml + yaml: mulanpsl-1.0-en.yml html: mulanpsl-1.0-en.html - text: mulanpsl-1.0-en.LICENSE + license: mulanpsl-1.0-en.LICENSE - license_key: mulanpsl-2.0 + category: Permissive spdx_license_key: MulanPSL-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 木兰宽松许可证, 第2版 + 木兰宽松许可证, 第2版 + + 2020年1月 http://license.coscl.org.cn/MulanPSL2 + + 您对“软件”的复制、使用、修改及分发受木兰宽松许可证,第2版(“本许可证”)的如下条款的约束: + + 0. 定义 + + “软件” 是指由“贡献”构成的许可在“本许可证”下的程序和相关文档的集合。 + + “贡献” 是指由任一“贡献者”许可在“本许可证”下的受版权法保护的作品。 + + “贡献者” 是指将受版权法保护的作品许可在“本许可证”下的自然人或“法人实体”。 + + “法人实体” 是指提交贡献的机构及其“关联实体”。 + + “关联实体” 是指,对“本许可证”下的行为方而言,控制、受控制或与其共同受控制的机构,此处的控制是指有受控方或共同受控方至少50%直接或间接的投票权、资金或其他有价证券。 + + 1. 授予版权许可 + + 每个“贡献者”根据“本许可证”授予您永久性的、全球性的、免费的、非独占的、不可撤销的版权许可,您可以复制、使用、修改、分发其“贡献”,不论修改与否。 + + 2. 授予专利许可 + + 每个“贡献者”根据“本许可证”授予您永久性的、全球性的、免费的、非独占的、不可撤销的(根据本条规定撤销除外)专利许可,供您制造、委托制造、使用、许诺销售、销售、进口其“贡献”或以其他方式转移其“贡献”。前述专利许可仅限于“贡献者”现在或将来拥有或控制的其“贡献”本身或其“贡献”与许可“贡献”时的“软件”结合而将必然会侵犯的专利权利要求,不包括对“贡献”的修改或包含“贡献”的其他结合。如果您或您的“关联实体”直接或间接地,就“软件”或其中的“贡献”对任何人发起专利侵权诉讼(包括反诉或交叉诉讼)或其他专利维权行动,指控其侵犯专利权,则“本许可证”授予您对“软件”的专利许可自您提起诉讼或发起维权行动之日终止。 + + 3. 无商标许可 + + “本许可证”不提供对“贡献者”的商品名称、商标、服务标志或产品名称的商标许可,但您为满足第4条规定的声明义务而必须使用除外。 + + 4. 分发限制 + + 您可以在任何媒介中将“软件”以源程序形式或可执行形式重新分发,不论修改与否,但您必须向接收者提供“本许可证”的副本,并保留“软件”中的版权、商标、专利及免责声明。 + + 5. 免责声明与责任限制 + + “软件”及其中的“贡献”在提供时不带任何明示或默示的担保。在任何情况下,“贡献者”或版权所有者不对任何人因使用“软件”或其中的“贡献”而引发的任何直接或间接损失承担责任,不论因何种原因导致或者基于何种法律理论,即使其曾被建议有此种损失的可能性。 + + 6. 语言 + + “本许可证”以中英文双语表述,中英文版本具有同等法律效力。如果中英文版本存在任何冲突不一致,以中文版为准。 + + 条款结束 + + 如何将木兰宽松许可证,第2版,应用到您的软件 + + 如果您希望将木兰宽松许可证,第2版,应用到您的新软件,为了方便接收者查阅,建议您完成如下三步: + + 1, 请您补充如下声明中的空白,包括软件名、软件的首次发表年份以及您作为版权人的名字; + + 2, 请您在软件包的一级目录下创建以“LICENSE”为名的文件,将整个许可证文本放入该文件中; + + 3, 请将如下声明文本放入每个源文件的头部注释中。 + + Copyright (c) [Year] [name of copyright holder] + [Software Name] is licensed under Mulan PSL v2. + You can use this software according to the terms and conditions of the Mulan PSL v2. + You may obtain a copy of Mulan PSL v2 at: + http://license.coscl.org.cn/MulanPSL2 + THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, + EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, + MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. + See the Mulan PSL v2 for more details. + Mulan Permissive Software License,Version 2 + Mulan Permissive Software License,Version 2 (Mulan PSL v2) + + January 2020 http://license.coscl.org.cn/MulanPSL2 + + Your reproduction, use, modification and distribution of the Software shall be subject to Mulan PSL v2 (this License) with the following terms and conditions: + + 0. Definition + + Software means the program and related documents which are licensed under this License and comprise all Contribution(s). + + Contribution means the copyrightable work licensed by a particular Contributor under this License. + + Contributor means the Individual or Legal Entity who licenses its copyrightable work under this License. + + Legal Entity means the entity making a Contribution and all its Affiliates. + + Affiliates means entities that control, are controlled by, or are under common control with the acting entity under this License, ‘control’ means direct or indirect ownership of at least fifty percent (50%) of the voting power, capital or other securities of controlled or commonly controlled entity. + + 1. Grant of Copyright License + + Subject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable copyright license to reproduce, use, modify, or distribute its Contribution, with modification or not. + + 2. Grant of Patent License + + Subject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable (except for revocation under this Section) patent license to make, have made, use, offer for sale, sell, import or otherwise transfer its Contribution, where such patent license is only limited to the patent claims owned or controlled by such Contributor now or in future which will be necessarily infringed by its Contribution alone, or by combination of the Contribution with the Software to which the Contribution was contributed. The patent license shall not apply to any modification of the Contribution, and any other combination which includes the Contribution. If you or your Affiliates directly or indirectly institute patent litigation (including a cross claim or counterclaim in a litigation) or other patent enforcement activities against any individual or entity by alleging that the Software or any Contribution in it infringes patents, then any patent license granted to you under this License for the Software shall terminate as of the date such litigation or activity is filed or taken. + + 3. No Trademark License + + No trademark license is granted to use the trade names, trademarks, service marks, or product names of Contributor, except as required to fulfill notice requirements in section 4. + + 4. Distribution Restriction + + You may distribute the Software in any medium with or without modification, whether in source or executable forms, provided that you provide recipients with a copy of this License and retain copyright, patent, trademark and disclaimer statements in the Software. + + 5. Disclaimer of Warranty and Limitation of Liability + + THE SOFTWARE AND CONTRIBUTION IN IT ARE PROVIDED WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED. IN NO EVENT SHALL ANY CONTRIBUTOR OR COPYRIGHT HOLDER BE LIABLE TO YOU FOR ANY DAMAGES, INCLUDING, BUT NOT LIMITED TO ANY DIRECT, OR INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING FROM YOUR USE OR INABILITY TO USE THE SOFTWARE OR THE CONTRIBUTION IN IT, NO MATTER HOW IT’S CAUSED OR BASED ON WHICH LEGAL THEORY, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 6. Language + + THIS LICENSE IS WRITTEN IN BOTH CHINESE AND ENGLISH, AND THE CHINESE VERSION AND ENGLISH VERSION SHALL HAVE THE SAME LEGAL EFFECT. IN THE CASE OF DIVERGENCE BETWEEN THE CHINESE AND ENGLISH VERSIONS, THE CHINESE VERSION SHALL PREVAIL. + + END OF THE TERMS AND CONDITIONS + + How to Apply the Mulan Permissive Software License,Version 2 (Mulan PSL v2) to Your Software + + To apply the Mulan PSL v2 to your work, for easy identification by recipients, you are suggested to complete following three steps: + + Fill in the blanks in following statement, including insert your software name, the year of the first publication of your software, and your name identified as the copyright owner; + Create a file named "LICENSE" which contains the whole context of this License in the first directory of your software package; + Attach the statement to the appropriate annotated syntax at the beginning of each source file. + Copyright (c) [Year] [name of copyright holder] + [Software Name] is licensed under Mulan PSL v2. + You can use this software according to the terms and conditions of the Mulan PSL v2. + You may obtain a copy of Mulan PSL v2 at: + http://license.coscl.org.cn/MulanPSL2 + THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, + EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, + MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. + See the Mulan PSL v2 for more details. + Copyright © 中国开源云联盟 京ICP备05013730号-37 json: mulanpsl-2.0.json - yml: mulanpsl-2.0.yml + yaml: mulanpsl-2.0.yml html: mulanpsl-2.0.html - text: mulanpsl-2.0.LICENSE + license: mulanpsl-2.0.LICENSE - license_key: mulanpsl-2.0-en + category: Permissive spdx_license_key: LicenseRef-scancode-mulanpsl-2.0-en other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Mulan Permissive Software License,Version 2 + + Mulan Permissive Software License,Version 2 (Mulan PSL v2) + + January 2020 http://license.coscl.org.cn/MulanPSL2 + + Your reproduction, use, modification and distribution of the Software shall be subject to Mulan PSL v2 (this License) with the following terms and conditions: + + 0. Definition + + Software means the program and related documents which are licensed under this License and comprise all Contribution(s). + + Contribution means the copyrightable work licensed by a particular Contributor under this License. + + Contributor means the Individual or Legal Entity who licenses its copyrightable work under this License. + + Legal Entity means the entity making a Contribution and all its Affiliates. + + Affiliates means entities that control, are controlled by, or are under common control with the acting entity under this License, ‘control’ means direct or indirect ownership of at least fifty percent (50%) of the voting power, capital or other securities of controlled or commonly controlled entity. + + 1. Grant of Copyright License + + Subject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable copyright license to reproduce, use, modify, or distribute its Contribution, with modification or not. + + 2. Grant of Patent License + + Subject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable (except for revocation under this Section) patent license to make, have made, use, offer for sale, sell, import or otherwise transfer its Contribution, where such patent license is only limited to the patent claims owned or controlled by such Contributor now or in future which will be necessarily infringed by its Contribution alone, or by combination of the Contribution with the Software to which the Contribution was contributed. The patent license shall not apply to any modification of the Contribution, and any other combination which includes the Contribution. If you or your Affiliates directly or indirectly institute patent litigation (including a cross claim or counterclaim in a litigation) or other patent enforcement activities against any individual or entity by alleging that the Software or any Contribution in it infringes patents, then any patent license granted to you under this License for the Software shall terminate as of the date such litigation or activity is filed or taken. + + 3. No Trademark License + + No trademark license is granted to use the trade names, trademarks, service marks, or product names of Contributor, except as required to fulfill notice requirements in section 4. + + 4. Distribution Restriction + + You may distribute the Software in any medium with or without modification, whether in source or executable forms, provided that you provide recipients with a copy of this License and retain copyright, patent, trademark and disclaimer statements in the Software. + + 5. Disclaimer of Warranty and Limitation of Liability + + THE SOFTWARE AND CONTRIBUTION IN IT ARE PROVIDED WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED. IN NO EVENT SHALL ANY CONTRIBUTOR OR COPYRIGHT HOLDER BE LIABLE TO YOU FOR ANY DAMAGES, INCLUDING, BUT NOT LIMITED TO ANY DIRECT, OR INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING FROM YOUR USE OR INABILITY TO USE THE SOFTWARE OR THE CONTRIBUTION IN IT, NO MATTER HOW IT’S CAUSED OR BASED ON WHICH LEGAL THEORY, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 6. Language + + THIS LICENSE IS WRITTEN IN BOTH CHINESE AND ENGLISH, AND THE CHINESE VERSION AND ENGLISH VERSION SHALL HAVE THE SAME LEGAL EFFECT. IN THE CASE OF DIVERGENCE BETWEEN THE CHINESE AND ENGLISH VERSIONS, THE CHINESE VERSION SHALL PREVAIL. + + END OF THE TERMS AND CONDITIONS + + How to Apply the Mulan Permissive Software License,Version 2 (Mulan PSL v2) to Your Software + + To apply the Mulan PSL v2 to your work, for easy identification by recipients, you are suggested to complete following three steps: + + Fill in the blanks in following statement, including insert your software name, the year of the first publication of your software, and your name identified as the copyright owner; + Create a file named "LICENSE" which contains the whole context of this License in the first directory of your software package; + Attach the statement to the appropriate annotated syntax at the beginning of each source file. + + Copyright (c) [Year] [name of copyright holder] + [Software Name] is licensed under Mulan PSL v2. + You can use this software according to the terms and conditions of the Mulan PSL v2. + You may obtain a copy of Mulan PSL v2 at: + http://license.coscl.org.cn/MulanPSL2 + THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, + EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, + MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. + See the Mulan PSL v2 for more details. json: mulanpsl-2.0-en.json - yml: mulanpsl-2.0-en.yml + yaml: mulanpsl-2.0-en.yml html: mulanpsl-2.0-en.html - text: mulanpsl-2.0-en.LICENSE + license: mulanpsl-2.0-en.LICENSE - license_key: mule-source-1.1.3 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-mule-source-1.1.3 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "MuleSource Public License\nVersion 1.1.3\n\nThe MuleSource Public License Version (\"\ + MSPL\") consists of the Mozilla Public\nLicense Version 1.1, modified to be specific to\ + \ MuleSource, with the Additional\nTerms in Exhibit B. The original Mozilla Public License\ + \ 1.1 can be found at:\nhttp://www.mozilla.org/MPL/MPL-1.1.html\n\n1. Definitions.\n\n1.0.1.\ + \ \"Commercial Use\" means distribution or otherwise making the Covered Code\navailable\ + \ to a third party.\n\n1.1. \"Contributor\" means each entity that creates or contributes\ + \ to the creation\nof Modifications.\n\n1.2. \"Contributor Version\" means the combination\ + \ of the Original Code, prior\nModifications used by a Contributor, and the Modifications\ + \ made by that\nparticular Contributor.\n\n1.3. \"Covered Code\" means the Original Code\ + \ or Modifications or the combination\nof the Original Code and Modifications, in each case\ + \ including portions thereof.\n\n1.4. \"Electronic Distribution Mechanism\". means a mechanism\ + \ generally accepted\nin the software development community for the electronic transfer\ + \ of data.\n\n1.5. \"Executable\" means Covered Code in any form other than Source Code.\n\ + \n1.6. \"Initial Developer\" means the individual or entity identified as the\nInitial Developer\ + \ in the Source Code notice required by Exhibit A.\n\n1.7. \"Larger Work\" means a work\ + \ which combines Covered Code or portions thereof\nwith code not governed by the terms of\ + \ this License.\n\n1.8. \"License\" means this document.\n\n1.8.1. \"Licensable\" means\ + \ having the right to grant, to the maximum extent\npossible, whether at the time of the\ + \ initial grant or subsequently acquired, any\nand all of the rights conveyed herein.\n\n\ + 1.9. \"Modifications\" means any addition to or deletion from the substance or\nstructure\ + \ of either the Original Code or any previous Modifications. When\nCovered Code is released\ + \ as a series of files, a Modification is:\n\nA. Any addition to or deletion from the contents\ + \ of a file containing Original\nCode or previous Modifications.\n\nB. Any new file that\ + \ contains any part of the Original Code or previous\nModifications.\n\n1.10. \"Original\ + \ Code\" means Source Code of computer software code which is\ndescribed in the Source Code\ + \ notice required by Exhibit A as Original Code, and\nwhich, at the time of its release\ + \ under this License is not already Covered Code\ngoverned by this License.\n\n1.10.1. \"\ + Patent Claims\" means any patent claim(s), now owned or hereafter\nacquired, including without\ + \ limitation, method, process, and apparatus claims,\nin any patent Licensable by grantor.\n\ + \n1.11. \"Source Code\" means the preferred form of the Covered Code for making\nmodifications\ + \ to it, including all modules it contains, plus any associated\ninterface definition files,\ + \ scripts used to control compilation and installation\nof an Executable, or source code\ + \ differential comparisons against either the\nOriginal Code or another well known, available\ + \ Covered Code of the Contributor's\nchoice. The Source Code can be in a compressed or archival\ + \ form, provided the\nappropriate decompression or de-archiving software is widely available\ + \ for no\ncharge.\n\n1.12. \"You\" (or \"Your\") means an individual or a legal entity exercising\ + \ rights\nunder, and complying with all of the terms of, this License or a future version\n\ + of this License issued under Section 6.1. For legal entities, \"You\" includes any\nentity\ + \ which controls, is controlled by, or is under common control with You.\nFor purposes of\ + \ this definition, \"control\" means (a) the power, direct or\nindirect, to cause the direction\ + \ or management of such entity, whether by\ncontract or otherwise, or (b) ownership of more\ + \ than fifty percent (50%) of the\noutstanding shares or beneficial ownership of such entity.\n\ + \n2. Source Code License..\n\n2.1. The Initial Developer Grant.\n\nThe Initial Developer\ + \ hereby grants You a world-wide, royalty-free, non-\nexclusive license, subject to third\ + \ party intellectual property claims:\n\n(a) under intellectual property rights (other than\ + \ patent or trademark)\nLicensable by Initial Developer to use, reproduce, modify, display,\ + \ perform,\nsublicense and distribute the Original Code (or portions thereof) with or\n\ + without Modifications, and/or as part of a Larger Work; and\n\n(b) under Patents Claims\ + \ infringed by the making, using or selling of Original\nCode, to make, have made, use,\ + \ practice, sell, and offer for sale, and/or\notherwise dispose of the Original Code (or\ + \ portions thereof).\n\n(c) the licenses granted in this Section 2.1(a) and (b) are effective\ + \ on the\ndate Initial Developer first distributes Original Code under the terms of this\n\ + License.\n\n(d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for\n\ + code that You delete from the Original Code; 2) separate from the Original Code;\nor 3)\ + \ for infringements caused by: i) the modification of the Original Code or\nii) the combination\ + \ of the Original Code with other software or devices.\n\n2.2. Contributor Grant.\n\nSubject\ + \ to third party intellectual property claims, each Contributor hereby\ngrants You a world-wide,\ + \ royalty-free, non-exclusive license\n\n(a) under intellectual property rights (other than\ + \ patent or trademark)\nLicensable by Contributor, to use, reproduce, modify, display, perform,\n\ + sublicense and distribute the Modifications created by such Contributor (or\nportions thereof)\ + \ either on an unmodified basis, with other Modifications, as\nCovered Code and/or as part\ + \ of a Larger Work; and\n\n(b) under Patent Claims infringed by the making, using, or selling\ + \ of\nModifications made by that Contributor either alone and/or in combination with\nits\ + \ Contributor Version (or portions of such combination), to make, use, sell,\noffer for\ + \ sale, have made, and/or otherwise dispose of: 1) Modifications made by\nthat Contributor\ + \ (or portions thereof); and 2) the combination of Modifications\nmade by that Contributor\ + \ with its Contributor Version (or portions of such\ncombination).\n\n(c) the licenses granted\ + \ in Sections 2.2(a) and 2.2(b) are effective on the date\nContributor first makes Commercial\ + \ Use of the Covered Code.\n\n(d) Notwithstanding Section 2.2(b) above, no patent license\ + \ is granted: 1) for\nany code that Contributor has deleted from the Contributor Version;\ + \ 2) separate\nfrom the Contributor Version; 3) for infringements caused by: i) third party\n\ + modifications of Contributor Version or ii) the combination of Modifications\nmade by that\ + \ Contributor with other software (except as part of the Contributor\nVersion) or other\ + \ devices; or 4) under Patent Claims infringed by Covered Code\nin the absence of Modifications\ + \ made by that Contributor.\n\n3. Distribution Obligations.\n\n3.1. Application of License.\n\ + \nThe Modifications which You create or to which You contribute are governed by\nthe terms\ + \ of this License, including without limitation Section 2.2. The Source\nCode version of\ + \ Covered Code may be distributed only under the terms of this\nLicense or a future version\ + \ of this License released under Section 6.1, and You\nmust include a copy of this License\ + \ with every copy of the Source Code You\ndistribute. You may not offer or impose any terms\ + \ on any Source Code version\nthat alters or restricts the applicable version of this License\ + \ or the\nrecipients' rights hereunder. However, You may include an additional document\n\ + offering the additional rights described in Section 3.5.\n\n3.2. Availability of Source\ + \ Code.\n\nAny Modification which You create or to which You contribute must be made\navailable\ + \ in Source Code form under the terms of this License either on the same\nmedia as an Executable\ + \ version or via an accepted Electronic Distribution\nMechanism to anyone to whom you made\ + \ an Executable version available; and if\nmade available via Electronic Distribution Mechanism,\ + \ must remain available for\nat least twelve (12) months after the date it initially became\ + \ available, or at\nleast six (6) months after a subsequent version of that particular Modification\n\ + has been made available to such recipients. You are responsible for ensuring\nthat the Source\ + \ Code version remains available even if the Electronic\nDistribution Mechanism is maintained\ + \ by a third party.\n\n3.3. Description of Modifications.\n\nYou must cause all Covered\ + \ Code to which You contribute to contain a file\ndocumenting the changes You made to create\ + \ that Covered Code and the date of any\nchange. You must include a prominent statement\ + \ that the Modification is derived,\ndirectly or indirectly, from Original Code provided\ + \ by the Initial Developer and\nincluding the name of the Initial Developer in (a) the Source\ + \ Code, and (b) in\nany notice in an Executable version or related documentation in which\ + \ You\ndescribe the origin or ownership of the Covered Code.\n\n3.4. Intellectual Property\ + \ Matters.\n\n(a) Third Party Claims.\n\nIf Contributor has knowledge that a license under\ + \ a third party's intellectual\nproperty rights is required to exercise the rights granted\ + \ by such Contributor\nunder Sections 2.1 or 2.2, Contributor must include a text file with\ + \ the Source\nCode distribution titled \"LEGAL\" which describes the claim and the party\ + \ making\nthe claim in sufficient detail that a recipient will know whom to contact. If\n\ + Contributor obtains such knowledge after the Modification is made available as\ndescribed\ + \ in Section 3.2, Contributor shall promptly modify the LEGAL file in\nall copies Contributor\ + \ makes available thereafter and shall take other steps\n(such as notifying appropriate\ + \ mailing lists or newsgroups) reasonably\ncalculated to inform those who received the Covered\ + \ Code that new knowledge has\nbeen obtained.\n\n(b) Contributor APIs.\n\nIf Contributor's\ + \ Modifications include an application programming interface and\nContributor has knowledge\ + \ of patent licenses which are reasonably necessary to\nimplement that API, Contributor\ + \ must also include this information in the LEGAL\nfile.\n\n(c) Representations.\n\nContributor\ + \ represents that, except as disclosed pursuant to Section 3.4(a)\nabove, Contributor believes\ + \ that Contributor's Modifications are Contributor's\noriginal creation(s) and/or Contributor\ + \ has sufficient rights to grant the\nrights conveyed by this License.\n\n3.5. Required\ + \ Notices.\n\nYou must duplicate the notice in Exhibit A in each file of the Source Code.\ + \ If\nit is not possible to put such notice in a particular Source Code file due to\nits\ + \ structure, then You must include such notice in a location (such as a\nrelevant directory)\ + \ where a user would be likely to look for such a notice. If\nYou created one or more Modification(s)\ + \ You may add your name as a Contributor\nto the notice described in Exhibit A. You must\ + \ also duplicate this License in\nany documentation for the Source Code where You describe\ + \ recipients' rights or\nownership rights relating to Covered Code. You may choose to offer,\ + \ and to\ncharge a fee for, warranty, support, indemnity or liability obligations to one\n\ + or more recipients of Covered Code. However, You may do so only on Your own\nbehalf, and\ + \ not on behalf of the Initial Developer or any Contributor. You must\nmake it absolutely\ + \ clear than any such warranty, support, indemnity or liability\nobligation is offered by\ + \ You alone, and You hereby agree to indemnify the\nInitial Developer and every Contributor\ + \ for any liability incurred by the\nInitial Developer or such Contributor as a result of\ + \ warranty, support,\nindemnity or liability terms You offer.\n\n3.6. Distribution of Executable\ + \ Versions.\n\nYou may distribute Covered Code in Executable form only if the requirements\ + \ of\nSection 3.1-3.5 have been met for that Covered Code, and if You include a notice\n\ + stating that the Source Code version of the Covered Code is available under the\nterms of\ + \ this License, including a description of how and where You have\nfulfilled the obligations\ + \ of Section 3.2. The notice must be conspicuously\nincluded in any notice in an Executable\ + \ version, related documentation or\ncollateral in which You describe recipients' rights\ + \ relating to the Covered\nCode. You may distribute the Executable version of Covered Code\ + \ or ownership\nrights under a license of Your choice, which may contain terms different\ + \ from\nthis License, provided that You are in compliance with the terms of this License\n\ + and that the license for the Executable version does not attempt to limit or\nalter the\ + \ recipient's rights in the Source Code version from the rights set\nforth in this License.\ + \ If You distribute the Executable version under a\ndifferent license You must make it absolutely\ + \ clear that any terms which differ\nfrom this License are offered by You alone, not by\ + \ the Initial Developer or any\nContributor. You hereby agree to indemnify the Initial Developer\ + \ and every\nContributor for any liability incurred by the Initial Developer or such\nContributor\ + \ as a result of any such terms You offer.\n\n3.7. Larger Works.\n\nYou may create a Larger\ + \ Work by combining Covered Code with other code not\ngoverned by the terms of this License\ + \ and distribute the Larger Work as a single\nproduct. In such a case, You must make sure\ + \ the requirements of this License are\nfulfilled for the Covered Code.\n\n4. Inability\ + \ to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to comply with\ + \ any of the terms of this License with\nrespect to some or all of the Covered Code due\ + \ to statute, judicial order, or\nregulation then You must: (a) comply with the terms of\ + \ this License to the\nmaximum extent possible; and (b) describe the limitations and the\ + \ code they\naffect. Such description must be included in the LEGAL file described in Section\n\ + 3.4 and must be included with all distributions of the Source Code. Except to\nthe extent\ + \ prohibited by statute or regulation, such description must be\nsufficiently detailed for\ + \ a recipient of ordinary skill to be able to understand\nit.\n\n5. Application of this\ + \ License.\n\nThis License applies to code to which the Initial Developer has attached the\n\ + notice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n\n6.1.\ + \ New Versions.\n\nMuleSource Inc. (\"MuleSource\") may publish revised and/or new versions\ + \ of the\nLicense from time to time. Each version will be given a distinguishing version\n\ + number.\n\n6.2. Effect of New Versions.\n\nOnce Covered Code has been published under a\ + \ particular version of the License,\nYou may always continue to use it under the terms\ + \ of that version. You may also\nchoose to use such Covered Code under the terms of any\ + \ subsequent version of the\nLicense published by MuleSource. No one other than MuleSource\ + \ has the right to\nmodify the terms applicable to Covered Code created under this License.\n\ + \n6.3. Derivative Works.\n\nIf You create or use a modified version of this License (which\ + \ you may only do\nin order to apply it to code which is not already Covered Code governed\ + \ by this\nLicense), You must (a) rename Your license so that the phrases \"MuleSource\"\ + ,\n\"MSPL\" or any confusingly similar phrase do not appear in your license (except\nto\ + \ note that your license differs from this License) and (b) otherwise make it\nclear that\ + \ Your version of the license contains terms which differ from the\nMuleSource Public License.\ + \ (Filling in the name of the Initial Developer,\nOriginal Code or Contributor in the notice\ + \ described in Exhibit A shall not of\nthemselves be deemed to be modifications of this\ + \ License.)\n\n7. DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE\ + \ ON AN \"AS IS\" BASIS, WITHOUT\nWARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\ + \ WITHOUT\nLIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE,\n\ + FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE\nQUALITY AND PERFORMANCE\ + \ OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE\nPROVE DEFECTIVE IN ANY RESPECT,\ + \ YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER\nCONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY\ + \ SERVICING, REPAIR OR CORRECTION.\nTHIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL\ + \ PART OF THIS LICENSE. NO\nUSE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER\ + \ THIS DISCLAIMER.\n\n8. TERMINATION.\n\n8.1. This License and the rights granted hereunder\ + \ will terminate automatically\nif You fail to comply with terms herein and fail to cure\ + \ such breach within 30\ndays of becoming aware of the breach. All sublicenses to the Covered\ + \ Code which\nare properly granted shall survive any termination of this License. Provisions\n\ + which, by their nature, must remain in effect beyond the termination of this\nLicense shall\ + \ survive.\n\n8.2. If You initiate litigation by asserting a patent infringement claim\n\ + (excluding declatory judgment actions) against Initial Developer or a\nContributor (the\ + \ Initial Developer or Contributor against whom You file such\naction is referred to as\ + \ \"Participant\") alleging that:\n\n(a) such Participant's Contributor Version directly\ + \ or indirectly infringes any\npatent, then any and all rights granted by such Participant\ + \ to You under\nSections 2.1 and/or 2.2 of this License shall, upon 60 days notice from\n\ + Participant terminate prospectively, unless if within 60 days after receipt of\nnotice You\ + \ either: (i) agree in writing to pay Participant a mutually agreeable\nreasonable royalty\ + \ for Your past and future use of Modifications made by such\nParticipant, or (ii) withdraw\ + \ Your litigation claim with respect to the\nContributor Version against such Participant.\ + \ If within 60 days of notice, a\nreasonable royalty and payment arrangement are not mutually\ + \ agreed upon in\nwriting by the parties or the litigation claim is not withdrawn, the rights\n\ + granted by Participant to You under Sections 2.1 and/or 2.2 automatically\nterminate at\ + \ the expiration of the 60 day notice period specified above.\n\n(b) any software, hardware,\ + \ or device, other than such Participant's Contributor\nVersion, directly or indirectly\ + \ infringes any patent, then any rights granted to\nYou by such Participant under Sections\ + \ 2.1(b) and 2.2(b) are revoked effective\nas of the date You first made, used, sold, distributed,\ + \ or had made,\nModifications made by that Participant.\n\n8.3. If You assert a patent infringement\ + \ claim against Participant alleging that\nsuch Participant's Contributor Version directly\ + \ or indirectly infringes any\npatent where such claim is resolved (such as by license or\ + \ settlement) prior to\nthe initiation of patent infringement litigation, then the reasonable\ + \ value of\nthe licenses granted by such Participant under Sections 2.1 or 2.2 shall be\n\ + taken into account in determining the amount or value of any payment or license.\n\n8.4.\ + \ In the event of termination under Sections 8.1 or 8.2 above, all end user\nlicense agreements\ + \ (excluding distributors and resellers) which have been\nvalidly granted by You or any\ + \ distributor hereunder prior to termination shall\nsurvive termination.\n\n9. LIMITATION\ + \ OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY,\nWHETHER TORT (INCLUDING\ + \ NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE\nINITIAL DEVELOPER, ANY OTHER CONTRIBUTOR,\ + \ OR ANY DISTRIBUTOR OF COVERED CODE, OR\nANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE\ + \ TO ANY PERSON FOR ANY INDIRECT,\nSPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY\ + \ CHARACTER INCLUDING,\nWITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE,\ + \ COMPUTER\nFAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN\n\ + IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS\nLIMITATION\ + \ OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL\nINJURY RESULTING FROM\ + \ SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\nPROHIBITS SUCH LIMITATION. SOME\ + \ JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR\nLIMITATION OF INCIDENTAL OR CONSEQUENTIAL\ + \ DAMAGES, SO THIS EXCLUSION AND\nLIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT\ + \ END USERS. The Covered Code is a \"commercial item,\" as that\nterm is defined in 48 C.F.R.\ + \ 2.101 (Oct. 1995), consisting of \"commercial\ncomputer software\" and \"commercial computer\ + \ software documentation,\" as such\nterms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent\ + \ with 48 C.F.R.\n12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S.\n\ + Government End Users acquire Covered Code with only those rights set forth\nherein.\n\n\ + 11. MISCELLANEOUS. This License represents the complete agreement concerning\nsubject matter\ + \ hereof. If any provision of this License is held to be\nunenforceable, such provision\ + \ shall be reformed only to the extent necessary to\nmake it enforceable. This License shall\ + \ be governed by California law provisions\n(except to the extent applicable law, if any,\ + \ provides otherwise), excluding its\nconflict-of-law provisions. With respect to disputes\ + \ in which at least one party\nis a citizen of, or an entity chartered or registered to\ + \ do business in the\nUnited States of America, any litigation relating to this License\ + \ shall be\nsubject to the jurisdiction of the Federal Courts of the Northern District of\n\ + California, with venue lying in Santa Clara County, California, with the losing\nparty responsible\ + \ for costs, including without limitation, court costs and\nreasonable attorneys' fees and\ + \ expenses. The application of the United Nations\nConvention on Contracts for the International\ + \ Sale of Goods is expressly\nexcluded. Any law or regulation which provides that the language\ + \ of a contract\nshall be construed against the drafter shall not apply to this License.\n\ + \n12. RESPONSIBILITY FOR CLAIMS. As between Initial Developer and the\nContributors, each\ + \ party is responsible for claims and damages arising, directly\nor indirectly, out of its\ + \ utilization of rights under this License and You agree\nto work with Initial Developer\ + \ and Contributors to distribute such\nresponsibility on an equitable basis. Nothing herein\ + \ is intended or shall be\ndeemed to constitute any admission of liability.\n\n13. MULTIPLE-LICENSED\ + \ CODE. Initial Developer may designate portions of the\nCovered Code as \"Multiple-Licensed\"\ + . \"Multiple-Licensed\" means that the Initial\nDeveloper permits you to utilize portions\ + \ of the Covered Code under Your choice\nof the SPL or the alternative licenses, if any,\ + \ specified by the Initial\nDeveloper in the file described in Exhibit A.\n\nMuleSource\ + \ Public License 1.1.3 - Exhibit A\n\nThe contents of this file are subject to the MuleSource\ + \ Public License Version\n1.1.3 (\"License\"); You may not use this file except in compliance\ + \ with the\nLicense. You may obtain a copy of the License at http://www.MuleSource.com/MSPL\n\ + Software distributed under the License is distributed on an \"AS IS\" basis,\nWITHOUT WARRANTY\ + \ OF ANY KIND, either express or implied. See the License for the\nspecific language governing\ + \ rights and limitations under the License.\n\nThe Original Code is: MuleSource Mule\n\n\ + The Initial Developer of the Original Code is MuleSource, Inc.\nPortions created by MuleSource\ + \ are Copyright (C) 2003 MuleSource, Inc.;\nAll Rights Reserved.\nContributor(s): ______________________________________.\n\ + \n[NOTE: The text of this Exhibit A may differ slightly from the text of the\nnotices in\ + \ the Source Code files of the Original Code. You should use the text\nof this Exhibit A\ + \ rather than the text found in the Original Code Source Code\nfor Your Modifications.]\n\ + \nMuleSource Public License 1.1.3 - Exhibit B\nAdditional Terms applicable to the MuleSource\ + \ Public License.\n\nI. Effect.These additional terms described in this MuleSource Public\ + \ License -\nAdditional Terms shall apply to the Covered Code under this License.\n\nII.\ + \ MuleSource and logo. This License does not grant any rights to use the\ntrademarks \"\ + MuleSource\", \"Mule\" and the \"MuleSource\", \"Mule\" logos even if\nsuch marks are included\ + \ in the Original Code or Modifications. \n\nHowever, in addition to the other notice obligations,\ + \ all copies of the Covered Code in Executable\nand Source Code form distributed must, as\ + \ a form of attribution of the original\nauthor, include on each user interface screen (i)\ + \ the \"Powered by Mule\" logo and\n(ii) the copyright notice in the same form as the latest\ + \ version of the Covered\nCode distributed by MuleSource, Inc. at the time of distribution\ + \ of such copy.\nIn addition, the \"Powered by Mule\" logo must be visible to all users\ + \ and be\nlocated at the very bottom center of each user interface screen. Notwithstanding\n\ + the above, the dimensions of the \"Powered by Mule\" logo must be at least 130 x\n25 pixels.\ + \ When users click on the \"Powered by Mule\" logo it must direct them\nback to http://www.MuleSource.com.\ + \ In addition, the copyright notice must remain\nvisible to all users at all times at the\ + \ bottom of the user interface screen.\nWhen users click on the copyright notice, it must\ + \ direct them back to\nhttp://www.MuleSource.com" json: mule-source-1.1.3.json - yml: mule-source-1.1.3.yml + yaml: mule-source-1.1.3.yml html: mule-source-1.1.3.html - text: mule-source-1.1.3.LICENSE + license: mule-source-1.1.3.LICENSE - license_key: mule-source-1.1.4 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-mule-source-1.1.4 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + MuleSource Public License + Version 1.1.4 + + The MuleSource Public License Version ("MSPL") consists of the Mozilla Public + License Version 1.1, modified to be specific to MuleSource, with the Additional + Terms in Exhibit B. The original Mozilla Public License 1.1 can be found at: + http://www.mozilla.org/MPL/MPL-1.1.html + + 1. Definitions. + + 1.0.1. "Commercial Use" means distribution or otherwise making the Covered Code + available to a third party. + + 1.1. "Contributor" means each entity that creates or contributes to the creation + of Modifications. + + 1.2. "Contributor Version" means the combination of the Original Code, prior + Modifications used by a Contributor, and the Modifications made by that + particular Contributor. + + 1.3. "Covered Code" means the Original Code or Modifications or the combination + of the Original Code and Modifications, in each case including portions thereof. + + 1.4. "Electronic Distribution Mechanism". means a mechanism generally accepted + in the software development community for the electronic transfer of data. + + 1.5. "Executable" means Covered Code in any form other than Source Code. + + 1.6. "Initial Developer" means the individual or entity identified as the + Initial Developer in the Source Code notice required by Exhibit A. + + 1.7. "Larger Work" means a work which combines Covered Code or portions thereof + with code not governed by the terms of this License. + + 1.8. "License" means this document. + + 1.8.1. "Licensable" means having the right to grant, to the maximum extent + possible, whether at the time of the initial grant or subsequently acquired, any + and all of the rights conveyed herein. + + 1.9. "Modifications" means any addition to or deletion from the substance or + structure of either the Original Code or any previous Modifications. When + Covered Code is released as a series of files, a Modification is: + + A. Any addition to or deletion from the contents of a file containing Original + Code or previous Modifications. + + B. Any new file that contains any part of the Original Code or previous + Modifications. + + 1.10. "Original Code" means Source Code of computer software code which is + described in the Source Code notice required by Exhibit A as Original Code, and + which, at the time of its release under this License is not already Covered Code + governed by this License. + + 1.10.1. "Patent Claims" means any patent claim(s), now owned or hereafter + acquired, including without limitation, method, process, and apparatus claims, + in any patent Licensable by grantor. + + 1.11. "Source Code" means the preferred form of the Covered Code for making + modifications to it, including all modules it contains, plus any associated + interface definition files, scripts used to control compilation and installation + of an Executable, or source code differential comparisons against either the + Original Code or another well known, available Covered Code of the Contributor's + choice. The Source Code can be in a compressed or archival form, provided the + appropriate decompression or de-archiving software is widely available for no + charge. + + 1.12. "You" (or "Your") means an individual or a legal entity exercising rights + under, and complying with all of the terms of, this License or a future version + of this License issued under Section 6.1. For legal entities, "You" includes any + entity which controls, is controlled by, or is under common control with You. + For purposes of this definition, "control" means (a) the power, direct or + indirect, to cause the direction or management of such entity, whether by + contract or otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. + + 2. Source Code License.. + + 2.1. The Initial Developer Grant. + + The Initial Developer hereby grants You a world-wide, royalty-free, non- + exclusive license, subject to third party intellectual property claims: + + (a) under intellectual property rights (other than patent or trademark) + Licensable by Initial Developer to use, reproduce, modify, display, perform, + sublicense and distribute the Original Code (or portions thereof) with or + without Modifications, and/or as part of a Larger Work; and + + (b) under Patents Claims infringed by the making, using or selling of Original + Code, to make, have made, use, practice, sell, and offer for sale, and/or + otherwise dispose of the Original Code (or portions thereof). + + (c) the licenses granted in this Section 2.1(a) and (b) are effective on the + date Initial Developer first distributes Original Code under the terms of this + License. + + (d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for + code that You delete from the Original Code; 2) separate from the Original Code; + or 3) for infringements caused by: i) the modification of the Original Code or + ii) the combination of the Original Code with other software or devices. + + 2.2. Contributor Grant. + + Subject to third party intellectual property claims, each Contributor hereby + grants You a world-wide, royalty-free, non-exclusive license + + (a) under intellectual property rights (other than patent or trademark) + Licensable by Contributor, to use, reproduce, modify, display, perform, + sublicense and distribute the Modifications created by such Contributor (or + portions thereof) either on an unmodified basis, with other Modifications, as + Covered Code and/or as part of a Larger Work; and + + (b) under Patent Claims infringed by the making, using, or selling of + Modifications made by that Contributor either alone and/or in combination with + its Contributor Version (or portions of such combination), to make, use, sell, + offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by + that Contributor (or portions thereof); and 2) the combination of Modifications + made by that Contributor with its Contributor Version (or portions of such + combination). + + (c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date + Contributor first makes Commercial Use of the Covered Code. + + (d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for + any code that Contributor has deleted from the Contributor Version; 2) separate + from the Contributor Version; 3) for infringements caused by: i) third party + modifications of Contributor Version or ii) the combination of Modifications + made by that Contributor with other software (except as part of the Contributor + Version) or other devices; or 4) under Patent Claims infringed by Covered Code + in the absence of Modifications made by that Contributor. + + 3. Distribution Obligations. + + 3.1. Application of License. + + The Modifications which You create or to which You contribute are governed by + the terms of this License, including without limitation Section 2.2. The Source + Code version of Covered Code may be distributed only under the terms of this + License or a future version of this License released under Section 6.1, and You + must include a copy of this License with every copy of the Source Code You + distribute. You may not offer or impose any terms on any Source Code version + that alters or restricts the applicable version of this License or the + recipients' rights hereunder. However, You may include an additional document + offering the additional rights described in Section 3.5. + + 3.2. Availability of Source Code. + + Any Modification which You create or to which You contribute must be made + available in Source Code form under the terms of this License either on the same + media as an Executable version or via an accepted Electronic Distribution + Mechanism to anyone to whom you made an Executable version available; and if + made available via Electronic Distribution Mechanism, must remain available for + at least twelve (12) months after the date it initially became available, or at + least six (6) months after a subsequent version of that particular Modification + has been made available to such recipients. You are responsible for ensuring + that the Source Code version remains available even if the Electronic + Distribution Mechanism is maintained by a third party. + + 3.3. Description of Modifications. + + You must cause all Covered Code to which You contribute to contain a file + documenting the changes You made to create that Covered Code and the date of any + change. You must include a prominent statement that the Modification is derived, + directly or indirectly, from Original Code provided by the Initial Developer and + including the name of the Initial Developer in (a) the Source Code, and (b) in + any notice in an Executable version or related documentation in which You + describe the origin or ownership of the Covered Code. + + 3.4. Intellectual Property Matters. + + (a) Third Party Claims. + + If Contributor has knowledge that a license under a third party's intellectual + property rights is required to exercise the rights granted by such Contributor + under Sections 2.1 or 2.2, Contributor must include a text file with the Source + Code distribution titled "LEGAL" which describes the claim and the party making + the claim in sufficient detail that a recipient will know whom to contact. If + Contributor obtains such knowledge after the Modification is made available as + described in Section 3.2, Contributor shall promptly modify the LEGAL file in + all copies Contributor makes available thereafter and shall take other steps + (such as notifying appropriate mailing lists or newsgroups) reasonably + calculated to inform those who received the Covered Code that new knowledge has + been obtained. + + (b) Contributor APIs. + + If Contributor's Modifications include an application programming interface and + Contributor has knowledge of patent licenses which are reasonably necessary to + implement that API, Contributor must also include this information in the LEGAL + file. + + (c) Representations. + + Contributor represents that, except as disclosed pursuant to Section 3.4(a) + above, Contributor believes that Contributor's Modifications are Contributor's + original creation(s) and/or Contributor has sufficient rights to grant the + rights conveyed by this License. + + 3.5. Required Notices. + + You must duplicate the notice in Exhibit A in each file of the Source Code. If + it is not possible to put such notice in a particular Source Code file due to + its structure, then You must include such notice in a location (such as a + relevant directory) where a user would be likely to look for such a notice. If + You created one or more Modification(s) You may add your name as a Contributor + to the notice described in Exhibit A. You must also duplicate this License in + any documentation for the Source Code where You describe recipients' rights or + ownership rights relating to Covered Code. You may choose to offer, and to + charge a fee for, warranty, support, indemnity or liability obligations to one + or more recipients of Covered Code. However, You may do so only on Your own + behalf, and not on behalf of the Initial Developer or any Contributor. You must + make it absolutely clear than any such warranty, support, indemnity or liability + obligation is offered by You alone, and You hereby agree to indemnify the + Initial Developer and every Contributor for any liability incurred by the + Initial Developer or such Contributor as a result of warranty, support, + indemnity or liability terms You offer. + + 3.6. Distribution of Executable Versions. + + You may distribute Covered Code in Executable form only if the requirements of + Section 3.1-3.5 have been met for that Covered Code, and if You include a notice + stating that the Source Code version of the Covered Code is available under the + terms of this License, including a description of how and where You have + fulfilled the obligations of Section 3.2. The notice must be conspicuously + included in any notice in an Executable version, related documentation or + collateral in which You describe recipients' rights relating to the Covered + Code. You may distribute the Executable version of Covered Code or ownership + rights under a license of Your choice, which may contain terms different from + this License, provided that You are in compliance with the terms of this License + and that the license for the Executable version does not attempt to limit or + alter the recipient's rights in the Source Code version from the rights set + forth in this License. If You distribute the Executable version under a + different license You must make it absolutely clear that any terms which differ + from this License are offered by You alone, not by the Initial Developer or any + Contributor. You hereby agree to indemnify the Initial Developer and every + Contributor for any liability incurred by the Initial Developer or such + Contributor as a result of any such terms You offer. + + 3.7. Larger Works. + + You may create a Larger Work by combining Covered Code with other code not + governed by the terms of this License and distribute the Larger Work as a single + product. In such a case, You must make sure the requirements of this License are + fulfilled for the Covered Code. + + 4. Inability to Comply Due to Statute or Regulation. + + If it is impossible for You to comply with any of the terms of this License with + respect to some or all of the Covered Code due to statute, judicial order, or + regulation then You must: (a) comply with the terms of this License to the + maximum extent possible; and (b) describe the limitations and the code they + affect. Such description must be included in the LEGAL file described in Section + 3.4 and must be included with all distributions of the Source Code. Except to + the extent prohibited by statute or regulation, such description must be + sufficiently detailed for a recipient of ordinary skill to be able to understand + it. + + 5. Application of this License. + + This License applies to code to which the Initial Developer has attached the + notice in Exhibit A and to related Covered Code. + + 6. Versions of the License. + + 6.1. New Versions. + + MuleSource Inc. ("MuleSource") may publish revised and/or new versions of the + License from time to time. Each version will be given a distinguishing version + number. + + 6.2. Effect of New Versions. + + Once Covered Code has been published under a particular version of the License, + You may always continue to use it under the terms of that version. You may also + choose to use such Covered Code under the terms of any subsequent version of the + License published by MuleSource. No one other than MuleSource has the right to + modify the terms applicable to Covered Code created under this License. + + 6.3. Derivative Works. + + If You create or use a modified version of this License (which you may only do + in order to apply it to code which is not already Covered Code governed by this + License), You must (a) rename Your license so that the phrases "MuleSource", + "MSPL" or any confusingly similar phrase do not appear in your license (except + to note that your license differs from this License) and (b) otherwise make it + clear that Your version of the license contains terms which differ from the + MuleSource Public License. (Filling in the name of the Initial Developer, + Original Code or Contributor in the notice described in Exhibit A shall not of + themselves be deemed to be modifications of this License.) + + 7. DISCLAIMER OF WARRANTY. + + COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT + WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT + LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, + FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE + QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE + PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER + CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. + THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO + USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 8. TERMINATION. + + 8.1. This License and the rights granted hereunder will terminate automatically + if You fail to comply with terms herein and fail to cure such breach within 30 + days of becoming aware of the breach. All sublicenses to the Covered Code which + are properly granted shall survive any termination of this License. Provisions + which, by their nature, must remain in effect beyond the termination of this + License shall survive. + + 8.2. If You initiate litigation by asserting a patent infringement claim + (excluding declatory judgment actions) against Initial Developer or a + Contributor (the Initial Developer or Contributor against whom You file such + action is referred to as "Participant") alleging that: + + (a) such Participant's Contributor Version directly or indirectly infringes any + patent, then any and all rights granted by such Participant to You under + Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from + Participant terminate prospectively, unless if within 60 days after receipt of + notice You either: (i) agree in writing to pay Participant a mutually agreeable + reasonable royalty for Your past and future use of Modifications made by such + Participant, or (ii) withdraw Your litigation claim with respect to the + Contributor Version against such Participant. If within 60 days of notice, a + reasonable royalty and payment arrangement are not mutually agreed upon in + writing by the parties or the litigation claim is not withdrawn, the rights + granted by Participant to You under Sections 2.1 and/or 2.2 automatically + terminate at the expiration of the 60 day notice period specified above. + + (b) any software, hardware, or device, other than such Participant's Contributor + Version, directly or indirectly infringes any patent, then any rights granted to + You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective + as of the date You first made, used, sold, distributed, or had made, + Modifications made by that Participant. + + 8.3. If You assert a patent infringement claim against Participant alleging that + such Participant's Contributor Version directly or indirectly infringes any + patent where such claim is resolved (such as by license or settlement) prior to + the initiation of patent infringement litigation, then the reasonable value of + the licenses granted by such Participant under Sections 2.1 or 2.2 shall be + taken into account in determining the amount or value of any payment or license. + + 8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user + license agreements (excluding distributors and resellers) which have been + validly granted by You or any distributor hereunder prior to termination shall + survive termination. + + 9. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, + WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE + INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR + ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, + SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, + WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER + FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN + IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS + LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL + INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW + PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR + LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND + LIMITATION MAY NOT APPLY TO YOU. + + 10. U.S. GOVERNMENT END USERS. The Covered Code is a "commercial item," as that + term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial + computer software" and "commercial computer software documentation," as such + terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. + 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. + Government End Users acquire Covered Code with only those rights set forth + herein. + + 11. MISCELLANEOUS. This License represents the complete agreement concerning + subject matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent necessary to + make it enforceable. This License shall be governed by California law provisions + (except to the extent applicable law, if any, provides otherwise), excluding its + conflict-of-law provisions. With respect to disputes in which at least one party + is a citizen of, or an entity chartered or registered to do business in the + United States of America, any litigation relating to this License shall be + subject to the jurisdiction of the Federal Courts of the Northern District of + California, with venue lying in Santa Clara County, California, with the losing + party responsible for costs, including without limitation, court costs and + reasonable attorneys' fees and expenses. The application of the United Nations + Convention on Contracts for the International Sale of Goods is expressly + excluded. Any law or regulation which provides that the language of a contract + shall be construed against the drafter shall not apply to this License. + + 12. RESPONSIBILITY FOR CLAIMS. As between Initial Developer and the + Contributors, each party is responsible for claims and damages arising, directly + or indirectly, out of its utilization of rights under this License and You agree + to work with Initial Developer and Contributors to distribute such + responsibility on an equitable basis. Nothing herein is intended or shall be + deemed to constitute any admission of liability. + + 13. MULTIPLE-LICENSED CODE. Initial Developer may designate portions of the + Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial + Developer permits you to utilize portions of the Covered Code under Your choice + of the SPL or the alternative licenses, if any, specified by the Initial + Developer in the file described in Exhibit A. + + MuleSource Public License 1.1.4 - Exhibit A + + The contents of this file are subject to the MuleSource Public License Version + 1.1.4 ("License"); You may not use this file except in compliance with the + License. You may obtain a copy of the License at http://www.MuleSource.com/MSPL + Software distributed under the License is distributed on an "AS IS" basis, + WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + specific language governing rights and limitations under the License. + + The Original Code is: MuleSource Mule + + The Initial Developer of the Original Code is MuleSource, Inc. + Portions created by MuleSource are Copyright (C) 2003 MuleSource, Inc.; + All Rights Reserved. + Contributor(s): ______________________________________. + + [NOTE: The text of this Exhibit A may differ slightly from the text of the + notices in the Source Code files of the Original Code. You should use the text + of this Exhibit A rather than the text found in the Original Code Source Code + for Your Modifications.] + + MuleSource Public License 1.1.4 - Exhibit B + Additional Terms applicable to the MuleSource Public License. + + I. Effect.These additional terms described in this MuleSource Public License - + Additional Terms shall apply to the Covered Code under this License. + + II. MuleSource and logo. This License does not grant any rights to use the + trademarks "MuleSource", "Mule" and the "MuleSource", "Mule" logos even if + such marks are included in the Original Code or Modifications. + + Redistributions of the Covered Code in binary form or source code form, must + ensure that the first time the resulting executable program is launched, a + user interface, if any, shall include the attribution information set forth + below prominently. If the executable program does not launch a user interface, + the Company name and URL shall be included in the notice section of each file + of the Covered Code. : + + (a) MuleSource Inc. + (b) Logo image: http://www.mulesource.com/images/mulesource_logo.gif + (c) http://www.mulesource.com json: mule-source-1.1.4.json - yml: mule-source-1.1.4.yml + yaml: mule-source-1.1.4.yml html: mule-source-1.1.4.html - text: mule-source-1.1.4.LICENSE + license: mule-source-1.1.4.LICENSE - license_key: mulle-kybernetik + category: Permissive spdx_license_key: LicenseRef-scancode-mulle-kybernetik other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Mulle Kybernetik License + + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the software, derivative works or modified versions, and any portions thereof, and that both notices appear in supporting documentation, and that credit is given to Mulle Kybernetik in all documents and publicity pertaining to direct or indirect use of this code or its derivatives. + + THIS IS EXPERIMENTAL SOFTWARE AND IT IS KNOWN TO HAVE BUGS, SOME OF WHICH MAY HAVE SERIOUS CONSEQUENCES. THE COPYRIGHT HOLDER ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION. THE COPYRIGHT HOLDER DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING DIRECTLY OR INDIRECTLY FROM THE USE OF THIS SOFTWARE OR OF ANY DERIVATIVE WORK. json: mulle-kybernetik.json - yml: mulle-kybernetik.yml + yaml: mulle-kybernetik.yml html: mulle-kybernetik.html - text: mulle-kybernetik.LICENSE + license: mulle-kybernetik.LICENSE - license_key: multics + category: Permissive spdx_license_key: Multics other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute these programs and their + documentation for any purpose and without fee is hereby granted,provided + that the below copyright notice and historical background appear in all + copies and that both the copyright notice and historical background and + this permission notice appear in supporting documentation, and that + the names of MIT, HIS, BULL or BULL HN not be used in advertising or + publicity pertaining to distribution of the programs without specific + prior written permission. + Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information + Systems Inc. + Copyright 2006 by BULL HN Information Systems Inc. + Copyright 2006 by Bull SAS + All Rights Reserved json: multics.json - yml: multics.yml + yaml: multics.yml html: multics.html - text: multics.LICENSE + license: multics.LICENSE - license_key: mup + category: Permissive spdx_license_key: Mup other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. Any additions, deletions, or changes to the original files must be clearly indicated in accompanying documentation. including the reasons for the changes, and the names of those who made the modifications. + + DISCLAIMER + + THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS 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. json: mup.json - yml: mup.yml + yaml: mup.yml html: mup.html - text: mup.LICENSE + license: mup.LICENSE - license_key: musl-exception + category: Permissive spdx_license_key: LicenseRef-scancode-musl-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Permissive + text: | + In addition, permission is hereby granted for all public header files + (include/* and arch/*/bits/*) and crt files intended to be linked into + applications (crt/*, ldso/dlstart.c, and arch/*/crt_arch.h) to omit + the copyright notice and permission notice otherwise required by the + license, and to use these files without any requirement of + attribution. These files include substantial contributions from: + + Bobby Bingham + John Spencer + Nicholas J. Kain + Rich Felker + Richard Pennington + Stefan Kristiansson + Szabolcs Nagy + + all of whom have explicitly granted such permission. json: musl-exception.json - yml: musl-exception.yml + yaml: musl-exception.yml html: musl-exception.html - text: musl-exception.LICENSE + license: musl-exception.LICENSE - license_key: mvt-1.1 + category: Free Restricted spdx_license_key: LicenseRef-scancode-mvt-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + MVT License 1.1 + =============== + + 1. Definitions + -------------- + + 1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + + 1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + + 1.3. "Contribution" + means Covered Software of a particular Contributor. + + 1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + + 1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + + 1.6. "Executable Form" + means any form of the work other than Source Code Form. + + 1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + + 1.8. "License" + means this document. + + 1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + + 1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + + 1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + + 1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + + 1.13. "Source Code Form" + means the form of the work preferred for making modifications. + + 1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + + 1.15. "Data" + means any data extracted from an electronic device with or without + use of Covered Software, and/or analysed using Covered Software or + a Larger Work. + + 1.16. "Device Owner" (or "Device Owners") + means an individual or a legal entity with legal ownership of an + electronic device which is being analysed through the use of + Covered Software or a Larger Work, or from which Data was extracted + for subsequent analysis. + + 1.17. "Data Owner" (or "Data Owners") + means an individual or group of individuals who made legitimate use + of the electronic device from which Data that is extracted and/or + analyzed originated. "Data Owner" might or might not differ from + "Device Owner". + + 2. License Grants and Conditions + -------------------------------- + + 2.1. Grants + + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license: + + (a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + + (b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + + 2.2. Effective Date + + The licenses granted in Section 2.1 with respect to any Contribution + become effective for each Contribution on the date the Contributor first + distributes such Contribution. + + 2.3. Limitations on Grant Scope + + The licenses granted in this Section 2 are the only rights granted under + this License. No additional rights or licenses will be implied from the + distribution or licensing of Covered Software under this License. + Notwithstanding Section 2.1(b) above, no patent license is granted by a + Contributor: + + (a) for any code that a Contributor has removed from Covered Software; + or + + (b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + + (c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + + This License does not grant any rights in the trademarks, service marks, + or logos of any Contributor (except as may be necessary to comply with + the notice requirements in Section 3.4). + + 2.4. Subsequent Licenses + + No Contributor makes additional grants as a result of Your choice to + distribute the Covered Software under a subsequent version of this + License (see Section 10.2) or under the terms of a Secondary License (if + permitted under the terms of Section 3.3). + + 2.5. Representation + + Each Contributor represents that the Contributor believes its + Contributions are its original creation(s) or it has sufficient rights + to grant the rights to its Contributions conveyed by this License. + + 2.6. Fair Use + + This License is not intended to limit any rights You have under + applicable copyright doctrines of fair use, fair dealing, or other + equivalents. + + 2.7. Conditions + + Sections 3.0, 3.1, 3.2, 3.3, and 3.6 are conditions of the licenses + granted in Section 2.1. + + 3. Responsibilities + ------------------- + + 3.0. Consensual Use Restriction + + Use of Covered Software or of a Larger Work is permitted provided that + the Data Owner must explicitly consent to the procedure, free from any + form of coercion, and must be fully informed about the nature of the + procedure, its privacy implications, and any data retention and disposal + policy. + + 3.1. Distribution of Source Form + + All distribution of Covered Software in Source Code Form, including any + Modifications that You create or to which You contribute, must be under + the terms of this License. You must inform recipients that the Source + Code Form of the Covered Software is governed by the terms of this + License, and how they can obtain a copy of this License. You may not + attempt to alter or restrict the recipients' rights in the Source Code + Form. + + 3.2. Distribution of Executable Form + + If You distribute Covered Software in Executable Form then: + + (a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + + (b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + + 3.3. Distribution of a Larger Work + + You may create and distribute a Larger Work under terms of Your choice, + provided that You also comply with the requirements of this License for + the Covered Software. If the Larger Work is a combination of Covered + Software with a work governed by one or more Secondary Licenses, and the + Covered Software is not Incompatible With Secondary Licenses, this + License permits You to additionally distribute such Covered Software + under the terms of such Secondary License(s), so that the recipient of + the Larger Work may, at their option, further distribute the Covered + Software under the terms of either this License or such Secondary + License(s). + + 3.4. Notices + + You may not remove or alter the substance of any license notices + (including copyright notices, patent notices, disclaimers of warranty, + or limitations of liability) contained within the Source Code Form of + the Covered Software, except that You may alter any license notices to + the extent required to remedy known factual inaccuracies. + + 3.5. Application of Additional Terms + + You may choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of Covered + Software. However, You may do so only on Your own behalf, and not on + behalf of any Contributor. You must make it absolutely clear that any + such warranty, support, indemnity, or liability obligation is offered by + You alone, and You hereby agree to indemnify every Contributor for any + liability incurred by such Contributor as a result of warranty, support, + indemnity or liability terms You offer. You may include additional + disclaimers of warranty and limitations of liability specific to any + jurisdiction. + + 4. Inability to Comply Due to Statute or Regulation + --------------------------------------------------- + + If it is impossible for You to comply with any of the terms of this + License with respect to some or all of the Covered Software due to + statute, judicial order, or regulation then You must: (a) comply with + the terms of this License to the maximum extent possible; and (b) + describe the limitations and the code they affect. Such description must + be placed in a text file included with all distributions of the Covered + Software under this License. Except to the extent prohibited by statute + or regulation, such description must be sufficiently detailed for a + recipient of ordinary skill to be able to understand it. + + 5. Termination + -------------- + + 5.1. The rights granted under this License will terminate automatically + if You fail to comply with any of its terms. However, if You become + compliant, then the rights granted under this License from a particular + Contributor are reinstated (a) provisionally, unless and until such + Contributor explicitly and finally terminates Your grants, and (b) on an + ongoing basis, if such Contributor fails to notify You of the + non-compliance by some reasonable means prior to 60 days after You have + come back into compliance. Moreover, Your grants from a particular + Contributor are reinstated on an ongoing basis if such Contributor + notifies You of the non-compliance by some reasonable means, this is the + first time You have received notice of non-compliance with this License + from such Contributor, and You become compliant prior to 30 days after + Your receipt of the notice. + + 5.2. If You initiate litigation against any entity by asserting a patent + infringement claim (excluding declaratory judgment actions, + counter-claims, and cross-claims) alleging that a Contributor Version + directly or indirectly infringes any patent, then the rights granted to + You by any and all Contributors for the Covered Software under Section + 2.1 of this License shall terminate. + + 5.3. In the event of termination under Sections 5.1 or 5.2 above, all + end user license agreements (excluding distributors and resellers) which + have been validly granted by You or Your distributors under this License + prior to termination shall survive termination. + + ************************************************************************ + * * + * 6. Disclaimer of Warranty * + * ------------------------- * + * * + * Covered Software is provided under this License on an "as is" * + * basis, without warranty of any kind, either expressed, implied, or * + * statutory, including, without limitation, warranties that the * + * Covered Software is free of defects, merchantable, fit for a * + * particular purpose or non-infringing. The entire risk as to the * + * quality and performance of the Covered Software is with You. * + * Should any Covered Software prove defective in any respect, You * + * (not any Contributor) assume the cost of any necessary servicing, * + * repair, or correction. This disclaimer of warranty constitutes an * + * essential part of this License. No use of any Covered Software is * + * authorized under this License except under this disclaimer. * + * * + ************************************************************************ + + ************************************************************************ + * * + * 7. Limitation of Liability * + * -------------------------- * + * * + * Under no circumstances and under no legal theory, whether tort * + * (including negligence), contract, or otherwise, shall any * + * Contributor, or anyone who distributes Covered Software as * + * permitted above, be liable to You for any direct, indirect, * + * special, incidental, or consequential damages of any character * + * including, without limitation, damages for lost profits, loss of * + * goodwill, work stoppage, computer failure or malfunction, or any * + * and all other commercial damages or losses, even if such party * + * shall have been informed of the possibility of such damages. This * + * limitation of liability shall not apply to liability for death or * + * personal injury resulting from such party's negligence to the * + * extent applicable law prohibits such limitation. Some * + * jurisdictions do not allow the exclusion or limitation of * + * incidental or consequential damages, so this exclusion and * + * limitation may not apply to You. * + * * + ************************************************************************ + + 8. Litigation + ------------- + + Any litigation relating to this License may be brought only in the + courts of a jurisdiction where the defendant maintains its principal + place of business and such litigation shall be governed by laws of that + jurisdiction, without reference to its conflict-of-law provisions. + Nothing in this Section shall prevent a party's ability to bring + cross-claims or counter-claims. + + 9. Miscellaneous + ---------------- + + This License represents the complete agreement concerning the subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. Any law or regulation which provides + that the language of a contract shall be construed against the drafter + shall not be used to construe this License against a Contributor. + + 10. Versions of the License + --------------------------- + + 10.1. New Versions + + Claudio Guarnieri is the license steward. Except as provided in Section + 10.3, no one other than the license steward has the right to modify or + publish new versions of this License. Each version will be given a + distinguishing version number. + + 10.2. Effect of New Versions + + You may distribute the Covered Software under the terms of the version + of the License under which You originally received the Covered Software, + or under the terms of any subsequent version published by the license + steward. + + 10.3. Modified Versions + + If you create software not governed by this License, and you want to + create a new license for such software, you may create and use a + modified version of this License if you rename the license and remove + any references to the name of the license steward (except to note that + such modified license differs from this License). + + 10.4. Distributing Source Code Form that is Incompatible With Secondary + Licenses + + If You choose to distribute Source Code Form that is Incompatible With + Secondary Licenses under the terms of this version of the License, the + notice described in Exhibit B of this License must be attached. + + Exhibit A - Source Code Form License Notice + ------------------------------------------- + + This Source Code Form is subject to the terms of the MVT License, + v. 1.1. If a copy of the MVT License was not distributed with this + file, You can obtain one at https://license.mvt.re/1.1/. + + If it is not possible or desirable to put the notice in a particular + file, then You may include the notice in a location (such as a LICENSE + file in a relevant directory) where a recipient would be likely to look + for such a notice. + + You may add additional accurate notices of copyright ownership. + + Exhibit B - "Incompatible With Secondary Licenses" Notice + --------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the MVT License, v. 1.1. + + + This license is an adaption of Mozilla Public License, v. 2.0. json: mvt-1.1.json - yml: mvt-1.1.yml + yaml: mvt-1.1.yml html: mvt-1.1.html - text: mvt-1.1.LICENSE + license: mvt-1.1.LICENSE - license_key: mx4j + category: Permissive spdx_license_key: LicenseRef-scancode-mx4j other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The MX4J License, Version 1.0 + + Copyright (c) by the MX4J 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. The end-user documentation included with the redistribution, + if any, must include the following acknowledgment: + "This product includes software developed by the + MX4J project (http://mx4j.sourceforge.net)." + Alternately, this acknowledgment may appear in the software itself, + if and wherever such third-party acknowledgments normally appear. + + 4. The name "MX4J" must not be used to endorse or promote + products derived from this software without prior written + permission. + For written permission, please contact biorn_steedom@users.sourceforge.net + + 5. Products derived from this software may not be called "MX4J", + nor may "MX4J" appear in their name, without prior written + permission of Simone Bordet. + + THIS SOFTWARE IS PROVIDED ``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 MX4J 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 software consists of voluntary contributions made by many + individuals on behalf of the MX4J project. For more information on + MX4J, please see + . json: mx4j.json - yml: mx4j.yml + yaml: mx4j.yml html: mx4j.html - text: mx4j.LICENSE + license: mx4j.LICENSE - license_key: mysql-connector-odbc-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-mysql-con-odbc-exception-2.0 other_spdx_license_keys: - LicenseRef-scancode-mysql-connector-odbc-exception-2.0 is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "As a special exception to the MySQL Connector/ODBC GPL license, one is allowed \nto\ + \ use the product with any ODBC manager, even if the ODBC manager is not licensed under\ + \ the GPL. In other words: The ODBC manager itself is not affected by the MySQL Connector/ODBC\ + \ GPL license." json: mysql-connector-odbc-exception-2.0.json - yml: mysql-connector-odbc-exception-2.0.yml + yaml: mysql-connector-odbc-exception-2.0.yml html: mysql-connector-odbc-exception-2.0.html - text: mysql-connector-odbc-exception-2.0.LICENSE + license: mysql-connector-odbc-exception-2.0.LICENSE - license_key: mysql-floss-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-mysql-floss-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + MySQL FLOSS License Exception + The MySQL AB Exception for Free/Libre and Open Source Software-only + Applications Using MySQL Client Libraries (the "FLOSS Exception"). + Version 0.6, 7 March 2007 + Exception Intent + We want specified Free/Libre and Open Source Software (``FLOSS'') + applications to be able to use specified GPL-licensed MySQL client + libraries (the ``Program'') despite the fact that not all FLOSS licenses + are compatible with version 2 of the GNU General Public License (the + ``GPL''). + Legal Terms and Conditions + As a special exception to the terms and conditions of version 2.0 of the + GPL: + 1. You are free to distribute a Derivative Work that is formed entirely + from the Program and one or more works (each, a "FLOSS Work") licensed + under one or more of the licenses listed below in section 1, as long as: + a. You obey the GPL in all respects for the Program and the Derivative + Work, except for identifiable sections of the Derivative Work which are not + derived from the Program, and which can reasonably be considered + independent and separate works in themselves, + b. all identifiable sections of the Derivative Work which are not derived + from the Program, and which can reasonably be considered independent and + separate works in themselves, + i. are distributed subject to one of the FLOSS licenses listed below, and + ii. the object code or executable form of those sections are accompanied by + the complete corresponding machine-readable source code for those sections + on the same medium and under the same FLOSS license as + the corresponding object code or executable forms of those sections, and + c. any works which are aggregated with the Program or with a Derivative + Work on a volume of a storage or distribution medium in accordance with the + GPL, can reasonably be considered independent and separate works in + themselves + which are not derivatives of either the Program, a Derivative Work or a + FLOSS Work. + If the above conditions are not met, then the Program may only be copied, + modified, distributed or used under the terms and conditions of the GPL or + another valid licensing option from MySQL AB. + 2. FLOSS License List + License name Version(s)/Copyright Date + Academic Free License 2.0 + Apache Software License 1.0/1.1/2.0 + Apple Public Source License 2.0 + Artistic license From Perl 5.8.0 + BSD license "July 22 1999" + Common Development and Distribution License (CDDL) 1.0 + Common Public License 1.0 + Eclipse Public License 1.0 + GNU Library or "Lesser" General Public License (LGPL) 2.0/2.1 + Jabber Open Source License 1.0 + MIT license (As listed in file MIT-License.txt) --- + Mozilla Public License (MPL) 1.0/1.1 + Open Software License 2.0 + OpenSSL license (with original SSLeay license) "2003" ("1998") + PHP License 3.0 + Python license (CNRI Python License) --- + Python Software Foundation License 2.1.1 + Sleepycat License "1999" + University of Illinois/NCSA Open Source License --- + W3C License "2001" + X11 License "2001" + Zlib/libpng License --- + Zope Public License 2.0 + Due to the many variants of some of the above licenses, we require that any + version follow the 2003 version of the Free Software Foundation's Free + Software Definition (http://www.gnu.org/philosophy/free-sw.html) or version + 1.9 of the Open Source Definition by the Open Source Initiative + http://www.opensource.org/docs/definition.php). + 3. Definitions + a. Terms used, but not defined, herein shall have the meaning provided in + the GPL. + b. Derivative Work means a derivative work under copyright law. + 4. Applicability: This FLOSS Exception applies to all Programs that contain + a notice placed by MySQL AB saying that the Program may be distributed + under the terms of this FLOSS Exception. If you create or distribute a work + which is a Derivative Work of both the Program and any other work licensed + under the GPL, then this FLOSS Exception is not available for that work; + thus, you must remove the FLOSS Exception notice from that work and comply + with the GPL in all respects, including by retaining all GPL notices. You + may choose to redistribute a copy of the Program exclusively under the + terms of the GPL by removing the FLOSS Exception notice from that copy of + the Program, provided that the copy has never been modified by you or any + third party. + Appendix A. Qualified Libraries and Packages + The following is a non-exhaustive list of libraries and packages which are + covered by the FLOSS License Exception. Please note that this appendix is + provided merely as an additional service to + specific FLOSS projects wishing to simplify licensing information for their + users. Compliance with one of the licenses noted under the "FLOSS license + list" section remains a prerequisite. + Package Name Qualifying License and Version + Apache Portable Runtime (APR) Apache Software License 2.0 json: mysql-floss-exception-2.0.json - yml: mysql-floss-exception-2.0.yml + yaml: mysql-floss-exception-2.0.yml html: mysql-floss-exception-2.0.html - text: mysql-floss-exception-2.0.LICENSE + license: mysql-floss-exception-2.0.LICENSE - license_key: mysql-linking-exception-2018 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-mysql-linking-exception-2018 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + This program is also distributed with certain software (including + but not limited to OpenSSL) that is licensed under separate terms, + as designated in a particular file or component or in included license + documentation. The authors of MySQL hereby grant you an additional + permission to link the program and your derivative works with the + separately licensed software that they have included with MySQL. json: mysql-linking-exception-2018.json - yml: mysql-linking-exception-2018.yml + yaml: mysql-linking-exception-2018.yml html: mysql-linking-exception-2018.html - text: mysql-linking-exception-2018.LICENSE + license: mysql-linking-exception-2018.LICENSE - license_key: naist-2003 + category: Permissive spdx_license_key: NAIST-2003 other_spdx_license_keys: - LicenseRef-scancode-naist-2003 is_exception: no is_deprecated: no - category: Permissive + text: | + Use, reproduction, and distribution of this software is permitted. + Any copy of this software, whether in its original form or modified, + must include both the above copyright notice and the following + paragraphs. + + Nara Institute of Science and Technology (NAIST), + the copyright holders, disclaims all warranties with regard to this + software, including all implied warranties of merchantability and + fitness, in no event shall NAIST be liable for + any special, indirect or consequential damages or any damages + whatsoever resulting from loss of use, data or profits, whether in an + action of contract, negligence or other tortuous action, arising out + of or in connection with the use or performance of this software. + + A large portion of the dictionary entries + originate from ICOT Free Software. The following conditions for ICOT + Free Software applies to the current dictionary as well. + + Each User may also freely distribute the Program, whether in its + original form or modified, to any third party or parties, PROVIDED + that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear + on, or be attached to, the Program, which is distributed substantially + in the same form as set out herein and that such intended + distribution, if actually made, will neither violate or otherwise + contravene any of the laws and regulations of the countries having + jurisdiction over the User or the intended distribution itself. + + NO WARRANTY + + The program was produced on an experimental basis in the course of the + research and development conducted during the project and is provided + to users as so produced on an experimental basis. Accordingly, the + program is provided without any warranty whatsoever, whether express, + implied, statutory or otherwise. The term "warranty" used herein + includes, but is not limited to, any warranty of the quality, + performance, merchantability and fitness for a particular purpose of + the program and the nonexistence of any infringement or violation of + any right of any third party. + + Each user of the program will agree and understand, and be deemed to + have agreed and understood, that there is no warranty whatsoever for + the program and, accordingly, the entire risk arising from or + otherwise connected with the program is assumed by the user. + + Therefore, neither ICOT, the copyright holder, or any other + organization that participated in or was otherwise related to the + development of the program and their respective officials, directors, + officers and other employees shall be held liable for any and all + damages, including, without limitation, general, special, incidental + and consequential damages, arising out of or otherwise in connection + with the use or inability to use the program or any product, material + or result produced or otherwise obtained by using the program, + regardless of whether they have been advised of, or otherwise had + knowledge of, the possibility of such damages at any time during the + project or thereafter. Each user will be deemed to have agreed to the + foregoing by his or her commencement of use of the program. The term + "use" as used herein includes, but is not limited to, the use, + modification, copying and distribution of the program and the + production of secondary products from the program. + + In the case where the program, whether in its original form or + modified, was distributed or delivered to or received by a user from + any person, organization or entity other than ICOT, unless it makes or + grants independently of ICOT any specific warranty to the user in + writing, such person, organization or entity, will also be exempted + from and not be held liable to the user for any such damages as noted + above as far as the program is concerned. json: naist-2003.json - yml: naist-2003.yml + yaml: naist-2003.yml html: naist-2003.html - text: naist-2003.LICENSE + license: naist-2003.LICENSE - license_key: nant-exception-2.0-plus + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-nant-exception-2.0-plus other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "In addition, as a special exception, Gerry Shaw gives permission to link the \ncode\ + \ of this program with the Microsoft .NET library (or with modified versions \nof Microsoft\ + \ .NET library that use the same license as the Microsoft .NET \nlibrary), and distribute\ + \ linked combinations including the two. You must obey \nthe GNU General Public License\ + \ in all respects for all of the code used other \nthan the Microsoft .NET library. If\ + \ you modify this file, you may extend this \nexception to your version of the file, but\ + \ you are not obligated to do so. If \nyou do not wish to do so, delete this exception\ + \ statement from your version." json: nant-exception-2.0-plus.json - yml: nant-exception-2.0-plus.yml + yaml: nant-exception-2.0-plus.yml html: nant-exception-2.0-plus.html - text: nant-exception-2.0-plus.LICENSE + license: nant-exception-2.0-plus.LICENSE - license_key: nasa-1.3 + category: Copyleft Limited spdx_license_key: NASA-1.3 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "NASA OPEN SOURCE AGREEMENT VERSION 1.3\n\nTHIS OPEN SOURCE AGREEMENT (\"AGREEMENT\"\ + ) DEFINES THE RIGHTS OF USE, REPRODUCTION, DISTRIBUTION, MODIFICATION AND REDISTRIBUTION\ + \ OF CERTAIN COMPUTER SOFTWARE ORIGINALLY RELEASED BY THE UNITED STATES GOVERNMENT AS REPRESENTED\ + \ BY THE GOVERNMENT AGENCY LISTED BELOW (\"GOVERNMENT AGENCY\"). THE UNITED STATES GOVERNMENT,\ + \ AS REPRESENTED BY GOVERNMENT AGENCY, IS AN INTENDED THIRD-PARTY BENEFICIARY OF ALL SUBSEQUENT\ + \ DISTRIBUTIONS OR REDISTRIBUTIONS OF THE SUBJECT SOFTWARE. ANYONE WHO USES, REPRODUCES,\ + \ DISTRIBUTES, MODIFIES OR REDISTRIBUTES THE SUBJECT SOFTWARE, AS DEFINED HEREIN, OR ANY\ + \ PART THEREOF, IS, BY THAT ACTION, ACCEPTING IN FULL THE RESPONSIBILITIES AND OBLIGATIONS\ + \ CONTAINED IN THIS AGREEMENT.\n\nGovernment Agency: \nGovernment Agency Original Software\ + \ Designation: \nGovernment Agency Original Software Title: \nUser Registration Requested.\ + \ Please Visit http:// \nGovernment Agency Point of Contact for Original Software: \n\ + \n1. DEFINITIONS\n\nA. \"Contributor\" means Government Agency, as the developer of the\ + \ Original Software, and any entity that makes a Modification.\nB. \"Covered Patents\" mean\ + \ patent claims licensable by a Contributor that are necessarily infringed by the use or\ + \ sale of its Modification alone or when combined with the Subject Software.\nC. \"Display\"\ + \ means the showing of a copy of the Subject Software, either directly or by means of an\ + \ image, or any other device.\nD. \"Distribution\" means conveyance or transfer of the Subject\ + \ Software, regardless of means, to another.\nE. \"Larger Work\" means computer software\ + \ that combines Subject Software, or portions thereof, with software separate from the Subject\ + \ Software that is not governed by the terms of this Agreement.\nF. \"Modification\" means\ + \ any alteration of, including addition to or deletion from, the substance or structure\ + \ of either the Original Software or Subject Software, and includes derivative works, as\ + \ that term is defined in the Copyright Statute, 17 USC 101. However, the act of including\ + \ Subject Software as part of a Larger Work does not in and of itself constitute a Modification.\n\ + G. \"Original Software\" means the computer software first released under this Agreement\ + \ by Government Agency with Government Agency designation and entitled , including source\ + \ code, object code and accompanying documentation, if any.\nH. \"Recipient\" means anyone\ + \ who acquires the Subject Software under this Agreement, including all Contributors.\n\ + I. \"Redistribution\" means Distribution of the Subject Software after a Modification has\ + \ been made.\nJ. \"Reproduction\" means the making of a counterpart, image or copy of the\ + \ Subject Software.\nK. \"Sale\" means the exchange of the Subject Software for money or\ + \ equivalent value.\nL. \"Subject Software\" means the Original Software, Modifications,\ + \ or any respective parts thereof.\nM. \"Use\" means the application or employment of the\ + \ Subject Software for any purpose.\n\n2. GRANT OF RIGHTS\n\nA. Under Non-Patent Rights:\ + \ Subject to the terms and conditions of this Agreement, each Contributor, with respect\ + \ to its own contribution to the Subject Software, hereby grants to each Recipient a non-exclusive,\ + \ world-wide, royalty-free license to engage in the following activities pertaining to the\ + \ Subject Software:\n\n1. Use\n2. Distribution\n3. Reproduction\n4. Modification\n5. Redistribution\n\ + 6. Display\n\nB. Under Patent Rights: Subject to the terms and conditions of this Agreement,\ + \ each Contributor, with respect to its own contribution to the Subject Software, hereby\ + \ grants to each Recipient under Covered Patents a non-exclusive, world-wide, royalty-free\ + \ license to engage in the following activities pertaining to the Subject Software: \n\n\ + 1. Use\n2. Distribution\n3. Reproduction\n4. Sale\n5. Offer for Sale\n\nC. The rights granted\ + \ under Paragraph B. also apply to the combination of a Contributor's Modification and the\ + \ Subject Software if, at the time the Modification is added by the Contributor, the addition\ + \ of such Modification causes the combination to be covered by the Covered Patents. It does\ + \ not apply to any other combinations that include a Modification.\n\nD. The rights granted\ + \ in Paragraphs A. and B. allow the Recipient to sublicense those same rights. Such sublicense\ + \ must be under the same terms and conditions of this Agreement.\n\n3. OBLIGATIONS OF RECIPIENT\n\ + \nA. Distribution or Redistribution of the Subject Software must be made under this Agreement\ + \ except for additions covered under paragraph 3H.\n\n1. Whenever a Recipient distributes\ + \ or redistributes the Subject Software, a copy of this Agreement must be included with\ + \ each copy of the Subject Software; and\n2. If Recipient distributes or redistributes the\ + \ Subject Software in any form other than source code, Recipient must also make the source\ + \ code freely available, and must provide with each copy of the Subject Software information\ + \ on how to obtain the source code in a reasonable manner on or through a medium customarily\ + \ used for software exchange.\n\nB. Each Recipient must ensure that the following copyright\ + \ notice appears prominently in the Subject Software:\n\n[Government Agency will insert\ + \ the applicable copyright notice in each agreement accompanying the initial distribution\ + \ of original software and remove this bracketed language.]\n\n[The following copyright\ + \ notice will be used if created by a contractor pursuant to Government Agency contract\ + \ and rights obtained from creator by assignment. Government Agency will insert the year\ + \ and its Agency designation and remove the bracketed language.] Copyright \" {YEAR} United\ + \ States Government as represented by . All Rights Reserved.\n\n[The following copyright\ + \ notice will be used if created by civil servants only. Government Agency will insert the\ + \ year and its Agency designation and remove the bracketed language.] Copyright \" {YEAR}\ + \ United States Government as represented by . No copyright is claimed in the United\ + \ States under Title 17, U.S.Code. All Other Rights Reserved.\n\n\nC. Each Contributor must\ + \ characterize its alteration of the Subject Software as a Modification and must identify\ + \ itself as the originator of its Modification in a manner that reasonably allows subsequent\ + \ Recipients to identify the originator of the Modification. In fulfillment of these requirements,\ + \ Contributor must include a file (e.g., a change log file) that describes the alterations\ + \ made and the date of the alterations, identifies Contributor as originator of the alterations,\ + \ and consents to characterization of the alterations as a Modification, for example, by\ + \ including a statement that the Modification is derived, directly or indirectly, from Original\ + \ Software provided by Government Agency. Once consent is granted, it may not thereafter\ + \ be revoked.\n\nD. A Contributor may add its own copyright notice to the Subject Software.\ + \ Once a copyright notice has been added to the Subject Software, a Recipient may not remove\ + \ it without the express permission of the Contributor who added the notice.\n\nE. A Recipient\ + \ may not make any representation in the Subject Software or in any promotional, advertising\ + \ or other material that may be construed as an endorsement by Government Agency or by any\ + \ prior Recipient of any product or service provided by Recipient, or that may seek to obtain\ + \ commercial advantage by the fact of Government Agency's or a prior Recipient's participation\ + \ in this Agreement.\n\nF. In an effort to track usage and maintain accurate records of\ + \ the Subject Software, each Recipient, upon receipt of the Subject Software, is requested\ + \ to register with Government Agency by visiting the following website: . Recipient's name\ + \ and personal information shall be used for statistical purposes only. Once a Recipient\ + \ makes a Modification available, it is requested that the Recipient inform Government Agency\ + \ at the web site provided above how to access the Modification.\n\n[Alternative paragraph\ + \ for use when a web site for release and monitoring of subject software will not be supported\ + \ by releasing Government Agency] In an effort to track usage and maintain accurate records\ + \ of the Subject Software, each Recipient, upon receipt of the Subject Software, is requested\ + \ to provide Government Agency, by e-mail to the Government Agency Point of Contact listed\ + \ in clause 5.F., the following information: . Recipient's name and personal information\ + \ shall be used for statistical purposes only. Once a Recipient makes a Modification available,\ + \ it is requested that the Recipient inform Government Agency, by e-mail to the Government\ + \ Agency Point of Contact listed in clause 5.F., how to access the Modification.\n\nG. Each\ + \ Contributor represents that that its Modification is believed to be Contributor's original\ + \ creation and does not violate any existing agreements, regulations, statutes or rules,\ + \ and further that Contributor has sufficient rights to grant the rights conveyed by this\ + \ Agreement.\n\nH. A Recipient may choose to offer, and to charge a fee for, warranty, support,\ + \ indemnity and/or liability obligations to one or more other Recipients of the Subject\ + \ Software. A Recipient may do so, however, only on its own behalf and not on behalf of\ + \ Government Agency or any other Recipient. Such a Recipient must make it absolutely clear\ + \ that any such warranty, support, indemnity and/or liability obligation is offered by that\ + \ Recipient alone. Further, such Recipient agrees to indemnify Government Agency and every\ + \ other Recipient for any liability incurred by them as a result of warranty, support, indemnity\ + \ and/or liability offered by such Recipient.\n\nI. A Recipient may create a Larger Work\ + \ by combining Subject Software with separate software not governed by the terms of this\ + \ agreement and distribute the Larger Work as a single product. In such case, the Recipient\ + \ must make sure Subject Software, or portions thereof, included in the Larger Work is subject\ + \ to this Agreement.\n\n\nJ. Notwithstanding any provisions contained herein, Recipient\ + \ is hereby put on notice that export of any goods or technical data from the United States\ + \ may require some form of export license from the U.S. Government. Failure to obtain necessary\ + \ export licenses may result in criminal liability under U.S. laws. Government Agency neither\ + \ represents that a license shall not be required nor that, if required, it shall be issued.\ + \ Nothing granted herein provides any such export license.\n\n4. DISCLAIMER OF WARRANTIES\ + \ AND LIABILITIES; WAIVER AND INDEMNIFICATION\n\nA. No Warranty: THE SUBJECT SOFTWARE IS\ + \ PROVIDED \"AS IS\" WITHOUT ANY WARRANTY OF ANY KIND, EITHER EXPRESSED, IMPLIED, OR STATUTORY,\ + \ INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY THAT THE SUBJECT SOFTWARE WILL CONFORM TO\ + \ SPECIFICATIONS, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,\ + \ OR FREEDOM FROM INFRINGEMENT, ANY WARRANTY THAT THE SUBJECT SOFTWARE WILL BE ERROR FREE,\ + \ OR ANY WARRANTY THAT DOCUMENTATION, IF PROVIDED, WILL CONFORM TO THE SUBJECT SOFTWARE.\ + \ THIS AGREEMENT DOES NOT, IN ANY MANNER, CONSTITUTE AN ENDORSEMENT BY GOVERNMENT AGENCY\ + \ OR ANY PRIOR RECIPIENT OF ANY RESULTS, RESULTING DESIGNS, HARDWARE, SOFTWARE PRODUCTS\ + \ OR ANY OTHER APPLICATIONS RESULTING FROM USE OF THE SUBJECT SOFTWARE. FURTHER, GOVERNMENT\ + \ AGENCY DISCLAIMS ALL WARRANTIES AND LIABILITIES REGARDING THIRD-PARTY SOFTWARE, IF PRESENT\ + \ IN THE ORIGINAL SOFTWARE, AND DISTRIBUTES IT \"AS IS.\"\n\nB. Waiver and Indemnity: RECIPIENT\ + \ AGREES TO WAIVE ANY AND ALL CLAIMS AGAINST THE UNITED STATES GOVERNMENT, ITS CONTRACTORS\ + \ AND SUBCONTRACTORS, AS WELL AS ANY PRIOR RECIPIENT. IF RECIPIENT'S USE OF THE SUBJECT\ + \ SOFTWARE RESULTS IN ANY LIABILITIES, DEMANDS, DAMAGES, EXPENSES OR LOSSES ARISING FROM\ + \ SUCH USE, INCLUDING ANY DAMAGES FROM PRODUCTS BASED ON, OR RESULTING FROM, RECIPIENT'S\ + \ USE OF THE SUBJECT SOFTWARE, RECIPIENT SHALL INDEMNIFY AND HOLD HARMLESS THE UNITED STATES\ + \ GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY PRIOR RECIPIENT, TO THE\ + \ EXTENT PERMITTED BY LAW. RECIPIENT'S SOLE REMEDY FOR ANY SUCH MATTER SHALL BE THE IMMEDIATE,\ + \ UNILATERAL TERMINATION OF THIS AGREEMENT.\n\n5. GENERAL TERMS\n\nA. Termination: This\ + \ Agreement and the rights granted hereunder will terminate automatically if a Recipient\ + \ fails to comply with these terms and conditions, and fails to cure such noncompliance\ + \ within thirty (30) days of becoming aware of such noncompliance. Upon termination, a Recipient\ + \ agrees to immediately cease use and distribution of the Subject Software. All sublicenses\ + \ to the Subject Software properly granted by the breaching Recipient shall survive any\ + \ such termination of this Agreement.\n\nB. Severability: If any provision of this Agreement\ + \ is invalid or unenforceable under applicable law, it shall not affect the validity or\ + \ enforceability of the remainder of the terms of this Agreement.\n\nC. Applicable Law:\ + \ This Agreement shall be subject to United States federal law only for all purposes, including,\ + \ but not limited to, determining the validity of this Agreement, the meaning of its provisions\ + \ and the rights, obligations and remedies of the parties.\n\nD. Entire Understanding: This\ + \ Agreement constitutes the entire understanding and agreement of the parties relating to\ + \ release of the Subject Software and may not be superseded, modified or amended except\ + \ by further written agreement duly executed by the parties. \n\n\nE. Binding Authority:\ + \ By accepting and using the Subject Software under this Agreement, a Recipient affirms\ + \ its authority to bind the Recipient to all terms and conditions of this Agreement and\ + \ that that Recipient hereby agrees to all terms and conditions herein.\n\nF. Point of Contact:\ + \ Any Recipient contact with Government Agency is to be directed to the designated representative\ + \ as follows: ." json: nasa-1.3.json - yml: nasa-1.3.yml + yaml: nasa-1.3.yml html: nasa-1.3.html - text: nasa-1.3.LICENSE + license: nasa-1.3.LICENSE - license_key: naughter + category: Free Restricted spdx_license_key: LicenseRef-scancode-naughter other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Naughter Software License + + You are allowed to include the source code in any product (commercial, shareware, freeware or otherwise) when your product is released in binary form. + + You are allowed to modify the source code in any way you want except you cannot modify the copyright details at the top of each module. + + If you want to distribute source code with your application, then you are only allowed to distribute versions released by the author. This is to maintain a single distribution point for the source code. + + The executable file itself, namely "ShelExec.exe" can be freely redistributed by anyone. json: naughter.json - yml: naughter.yml + yaml: naughter.yml html: naughter.html - text: naughter.LICENSE + license: naughter.LICENSE - license_key: naumen + category: Permissive spdx_license_key: Naumen other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "NAUMEN Public License\n\nThis software is Copyright (c) NAUMEN (tm) and Contributors.\ + \ All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\ + \ modification, are permitted provided that the following conditions are met:\n\n1. Redistributions\ + \ in source code must retain the above copyright notice, this list of conditions, and the\ + \ following disclaimer.\n\n2. 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.\n\n3. The name NAUMEN (tm) must not be\ + \ used to endorse or promote products derived from this software without prior written permission\ + \ from NAUMEN.\n\n4. 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 NAUMEN.\n\n\ + 5. If any files originating from NAUMEN or Contributors are modified, you must cause the\ + \ modified files to carry prominent notices stating that you changed the files and the date\ + \ of any change.\n\nDisclaimer:\n\n THIS SOFTWARE IS PROVIDED BY NAUMEN \"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\ + \ NAUMEN 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. \n\nThis software consists of contributions made by\ + \ NAUMEN and Contributors. Specific attributions are listed in the accompanying credits\ + \ file." json: naumen.json - yml: naumen.yml + yaml: naumen.yml html: naumen.html - text: naumen.LICENSE + license: naumen.LICENSE - license_key: nbpl-1.0 + category: Copyleft Limited spdx_license_key: NBPL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "The Net Boolean Public License \n\nVersion 1, 22 August 1998 \nCopyright 1998, Net\ + \ Boolean Incorporated, Redwood City, California, USA \nAll Rights Reserved. \n\nNote: \n\ + This license is derived from the \"Artistic License\" as distributed \nwith the Perl Programming\ + \ Language. Its terms are different from \nthose of the \"Artistic License.\" \n\nPREAMBLE\ + \ \n\nThe intent of this document is to state the conditions under which a \nPackage may\ + \ be copied, such that the Copyright Holder maintains some \nsemblance of artistic control\ + \ over the development of the package, \nwhile giving the users of the package the right\ + \ to use and distribute \nthe Package in a more-or-less customary fashion, plus the right\ + \ to make \nreasonable modifications. \n\nDefinitions: \n\n\"Package\" refers to the collection\ + \ of files distributed by the \nCopyright Holder, and derivatives of that collection of\ + \ files \ncreated through textual modification. \n\n\"Standard Version\" refers to such\ + \ a Package if it has not been \nmodified, or has been modified in accordance with the wishes\ + \ \nof the Copyright Holder. \n\n\"Copyright Holder\" is whoever is named in the copyright\ + \ or \ncopyrights for the package. \n\n\"You\" is you, if you're thinking about copying\ + \ or distributing \nthis Package. \n\n\"Reasonable copying fee\" is whatever you can justify\ + \ on the \nbasis of media cost, duplication charges, time of people involved, \nand so on.\ + \ (You will not be required to justify it to the \nCopyright Holder, but only to the computing\ + \ community at large \nas a market that must bear the fee.) \n\n\"Freely Available\" means\ + \ that no fee is charged for the item \nitself, though there may be fees involved in handling\ + \ the item. \nIt also means that recipients of the item may redistribute it \nunder the\ + \ same conditions they received it. \n\n1. You may make and give away verbatim copies of\ + \ the source form of the \nStandard Version of this Package without restriction, provided\ + \ that you \nduplicate all of the original copyright notices and associated disclaimers.\ + \ \n\n2. You may apply bug fixes, portability fixes and other modifications \nderived from\ + \ the Public Domain or from the Copyright Holder. A Package \nmodified in such a way shall\ + \ still be considered the Standard Version. \n\n3. You may otherwise modify your copy of\ + \ this Package in any way, provided \nthat you insert a prominent notice in each changed\ + \ file stating how and \nwhen you changed that file, and provided that you do at least ONE\ + \ of the \nfollowing: \n\na) place your modifications in the Public Domain or otherwise\ + \ make them \nFreely Available, such as by posting said modifications to Usenet or \nan\ + \ equivalent medium, or placing the modifications on a major archive \nsite such as uunet.uu.net,\ + \ or by allowing the Copyright Holder to include \nyour modifications in the Standard Version\ + \ of the Package. \n\nb) use the modified Package only within your corporation or organization.\ + \ \n\nc) rename any non-standard executables so the names do not conflict \nwith standard\ + \ executables, which must also be provided, and provide \na separate manual page for each\ + \ non-standard executable that clearly \ndocuments how it differs from the Standard Version.\ + \ \n\nd) make other distribution arrangements with the Copyright Holder. \n\n4. You may\ + \ distribute the programs of this Package in object code or \nexecutable form, provided\ + \ that you do at least ONE of the following: \n\na) distribute a Standard Version of the\ + \ executables and library files, \ntogether with instructions (in the manual page or equivalent)\ + \ on where \nto get the Standard Version. \n\nb) accompany the distribution with the machine-readable\ + \ source of \nthe Package with your modifications. \n\nc) accompany any non-standard executables\ + \ with their corresponding \nStandard Version executables, giving the non-standard executables\ + \ \nnon-standard names, and clearly documenting the differences in manual \npages (or equivalent),\ + \ together with instructions on where to get \nthe Standard Version. \n\nd) make other distribution\ + \ arrangements with the Copyright Holder. \n\n5. You may charge a reasonable copying fee\ + \ for any distribution of this \nPackage. You may charge any fee you choose for support\ + \ of this Package. \nYou may not charge a fee for this Package itself. However, \nyou may\ + \ distribute this Package in aggregate with other (possibly \ncommercial) programs as part\ + \ of a larger (possibly commercial) software \ndistribution provided that you do not advertise\ + \ this Package as a \nproduct of your own. \n\n6. The scripts and library files supplied\ + \ as input to or produced as \noutput from the programs of this Package do not automatically\ + \ fall \nunder the copyright of this Package, but belong to whomever generated \nthem, and\ + \ may be sold commercially, and may be aggregated with this \nPackage. \n\n7. C subroutines\ + \ supplied by you and linked into this Package in order \nto emulate subroutines and variables\ + \ of the language defined by this \nPackage shall not be considered part of this Package,\ + \ but are the \nequivalent of input as in Paragraph 6, provided these subroutines do \n\ + not change the language in any way that would cause it to fail the \nregression tests for\ + \ the language. \n\n8. The name of the Copyright Holder may not be used to endorse or promote\ + \ \nproducts derived from this software without specific prior written permission. \n\n\ + 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR \nIMPLIED WARRANTIES, INCLUDING,\ + \ WITHOUT LIMITATION, THE IMPLIED \nWARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR\ + \ PURPOSE. \n\nThe End" json: nbpl-1.0.json - yml: nbpl-1.0.yml + yaml: nbpl-1.0.yml html: nbpl-1.0.html - text: nbpl-1.0.LICENSE + license: nbpl-1.0.LICENSE - license_key: ncbi + category: Public Domain spdx_license_key: LicenseRef-scancode-ncbi other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + PUBLIC DOMAIN NOTICE + National Center for Biotechnology Information + + With the exception of certain third-party files summarized below, this + software is a "United States Government Work" under the terms of the + United States Copyright Act. It was written as part of the authors' + official duties as United States Government employees and thus cannot + be copyrighted. This software is freely available to the public for + use. The National Library of Medicine and the U.S. Government have not + placed any restriction on its use or reproduction. + + Although all reasonable efforts have been taken to ensure the accuracy + and reliability of the software and data, the NLM and the U.S. + Government do not and cannot warrant the performance or results that + may be obtained by using this software or data. The NLM and the U.S. + Government disclaim all warranties, express or implied, including + warranties of performance, merchantability or fitness for any + particular purpose. + + Please cite the authors in any work or product based on this material. json: ncbi.json - yml: ncbi.yml + yaml: ncbi.yml html: ncbi.html - text: ncbi.LICENSE + license: ncbi.LICENSE - license_key: ncgl-uk-2.0 + category: Free Restricted spdx_license_key: NCGL-UK-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Non-Commercial Government Licence + for public sector information + + You are encouraged to use and re-use the Information that is available under this licence freely and flexibly, with only a few conditions. + + Using information under this licence + Use of copyright and database right material expressly made available under this licence (the ‘Information’) indicates your acceptance of the terms and conditions below. + + The Licensor grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information for Non-Commercial purposes only subject to the conditions below. + + This licence does not affect your freedom under fair dealing or fair use or any other copyright or database right exceptions and limitations. + + You are free to: + copy, publish, distribute and transmit the Information; + adapt the Information; + exploit the Information for Non-Commercial purposes for example, by combining it with other information in your own product or application. + + You are not permitted to: + exercise any of the rights granted to you by this licence in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. + + You must, where you do any of the above: + acknowledge the source of the Information by including any attribution statement specified by the Information Provider(s) and, where possible, provide a link to this licence; + If the Information Provider does not provide a specific attribution statement, you must use the following: + + Contains information licensed under the Non-Commercial Government Licence v2.0. + + If you are using Information from several Information Providers and listing multiple attributions is not practical in your product or application, you may include a URI or hyperlink to a resource that contains the required attribution statements. + + ensure that any onward licensing of the Information – for example when combined with other information – is for Non-Commercial purposes only. + + These are important conditions of this licence and if you fail to comply with them or use the Information other than for Non-Commercial purposes the rights granted to you under this licence, or any similar licence granted by the Licensor, will end automatically. + + Exemptions + This licence does not cover the use of: + + personal data in the Information; + Information that has not been accessed by way of publication or disclosure under information access legislation (including the Freedom of Information Acts for the UK and Scotland) by or with the consent of the Information Provider; + departmental or public sector organisation logos, crests, military insignia and the Royal Arms except where they form an integral part of a document or dataset; + military insignia + third party rights the Information Provider is not authorised to license; + other intellectual property rights, including patents, trade marks, and design rights; and + identity documents such as the British Passport. + + Non-endorsement + This licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider and/or Licensor endorse you or your use of the Information. + + No warranty + The Information is licensed ‘as is’ and the Information Provider excludes all representations, warranties, obligations and liabilities in relation to the Information to the maximum extent permitted by law. + + The Information Provider is not liable for any errors or omissions in the Information and shall not be liable for any loss, injury or damage of any kind caused by its use. The Information Provider does not guarantee the continued supply of the Information. + + Governing Law + This licence is governed by the laws of the jurisdiction in which the Information Provider has its principal place of business, unless otherwise specified by the Information Provider. + + Definitions + In this licence the terms below have the following meanings: + + ‘Information’ + means information protected by copyright or by database right (for example, literary and artistic works, content, data and source code) offered for use under the terms of this licence. + + ‘Information Provider’ + means the person or organisation providing the Information under this licence. + + ‘Licensor’ + means any Information Provider which has the authority to offer Information under the terms of this licence or the Keeper of the Public Records, who has the authority to offer Information subject to Crown copyright and Crown database rights and Information subject to copyright and database right that has been assigned to or acquired by the Crown, under the terms of this licence. + + ‘Non-Commercial purposes’ + means not intended for or directed toward commercial advantage or private monetary compensation. For the purposes of this licence, ‘private monetary compensation’ does not include the exchange of the Information for other copyrighted works by means of digital file-sharing or otherwise provided there is no payment of any monetary compensation in connection with the exchange of the Information. + + ‘Use’ + as a verb, means doing any act which is restricted by copyright or database right, whether in the original medium or in any other medium, and includes without limitation distributing, copying, adapting, modifying as may be technically necessary to use it in a different mode or format. + + ‘You’ + means the natural or legal person, or body of persons corporate or incorporate, acquiring rights under this licence. json: ncgl-uk-2.0.json - yml: ncgl-uk-2.0.yml + yaml: ncgl-uk-2.0.yml html: ncgl-uk-2.0.html - text: ncgl-uk-2.0.LICENSE + license: ncgl-uk-2.0.LICENSE - license_key: nero-eula + category: Commercial spdx_license_key: LicenseRef-scancode-nero-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Licensor: Nero AG (\"Nero\") \nTHIS IS A LEGAL AGREEMENT BETWEEN YOU, THE \"END USER\"\ + , AND NERO AG, RÜPPURRER STRASSE 1A, 76307 KARLSRUHE, GERMANY. \n\nCONCLUSION OF THE CONTRACT\ + \ \nTHIS AGREEMENT IS EFFECTIVE \nBY OPENING THE SEALED PACKING OF NERO´S SOFTWARE ON THE\ + \ \"EFFECTIVE DATE,\" YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS AGREEMENT. IF YOU\ + \ DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, PROMPTLY RETURN THE SOFTWARE AND ALL THE\ + \ ACCOMPANYING ITEMS (INCLUDING WRITTEN MATERIALS AND BINDERS OR OTHER CONTAINERS) TO THE\ + \ PLACE YOU OBTAINED THEM FOR A FULL REFUND. \nOR \nBY INSTALLING OR USING THE DOWNLOADED\ + \ SOFTWARE, YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS AGREEMENT BY MEANS OF CLICKING\ + \ THE \"ACCEPT\" BUTTON DURING THE INSTALLATION OF THE SOFTWARE. IF YOU DO NOT AGREE TO\ + \ THE TERMS OF THIS AGREEMENT, REFRAIN FROM INSTALLING THE SOFTWARE OR PROMPTLY UNINSTALL\ + \ AND DELETE THE SOFTWARE AND ALL THE ACCOMPANYING ITEMS (INCLUDING DOCUMENTATION OR MANUALS)\ + \ IF THE TERMS OF THIS AGREEMENT COMPRISE AN OFFER BY NERO, THEN YOUR ACCEPTANCE IS EXPRESSLY\ + \ LIMITED TO THE TERMS CONTAINED HEREIN. \n\nThe terms of your license agreement (\"Agreement\"\ + ) for the Software described above depend on whether you obtained the Software by: \n(a)\ + \ Purchase from a Nero OEM partner; or \n(b) Purchase from Nero or a Nero distributor;\ + \ or \n(c) Downloading a free or trial version of the Software. \n(d) Participation in\ + \ a Nero Beta program \nwhich can be distinguished as follows: \nIf the jewel box in which\ + \ you received the Software includes the word \"OEM\" or \"Essentials\" on its cover (or\ + \ on the disc itself), you have acquired a copy of the Software from a Nero OEM partner.\ + \ \nThis also applies if you downloaded Software which only allows you to install under\ + \ the condition that you need to connect a hardware device to your PC. \nIf the jewel box\ + \ in which you received the Software has only Nero's label on it and does not include the\ + \ word \"OEM\" or \"Essentials\" on its cover (or on the disc itself), you have acquired\ + \ a copy of the Software from either Nero or a Nero distributor. \nIf the disc containing\ + \ the software or the Software itself is labeled \"TRIAL\",\"DEMO\",\"FREE\", \"FREEMIUM\"\ + \ ,\"LITE\" or similar terms and was downloaded free of charge via Nero’s official website\ + \ www.nero.com you have obtained a free or trial version of the Software. \nIf the disc\ + \ containing the software or the Software itself is labeled \"BETA\", \"PRE RELEASE\" or\ + \ similar you have obtained the Software via participation in a Nero Beta program. \nCERTAIN\ + \ TERMS MAY ALSO VARY DEPENDING ON \n(e) THE AREA YOU USUALLY RESIDE AND OBTAINED THE SOFTWARE\ + \ IN \n(f) If the Software was obtained via an offer labeled \"Family\", \"Family\" Pack\ + \ or similar\n\nYOU MAY ALSO HAVE CONCLUDED ANOTHER AGREEMENT DIRECTLY WITH NERO THAT SUPPLEMENTS\ + \ OR SUPERSEDES ALL OR PORTIONS OF THIS AGREEMENT \n\nA. LICENSE TERMS AND CONDITIONS\ + \ APPLICABLE TO SOFTWARE ACQUIRED FROM OEM PARTNER \nI. Grant of license \nThis Agreement\ + \ permits you to use one copy of the Software acquired with this license on any single computer\ + \ (\"OEM License\"), provided the Software is in use on only one computer at any given time.\ + \ If you have acquired a multiple license for the Software, then at any one time you may\ + \ have in use up to as many copies of the Software as you have licenses. The Software is\ + \ \"in use\" on a computer when it is loaded into the temporary memory or installed into\ + \ the permanent memory (e.g. hard disk, CD ROM, or other storage device) of that computer,\ + \ except that a copy installed on a network server for the sole purpose of distribution\ + \ to other computers is not considered \"in use\". If the anticipated number of users of\ + \ the Software might exceed the authorized number of applicable licenses, then you must\ + \ have a reasonable mechanism or process in place to assure that the number of concurrent\ + \ uses of the Software does not exceed the number of licenses. \nTHE OEM LICENSE GRANTED\ + \ HEREIN IS ONLY VALID IF ACQUIRED AS A BUNDLE WITH CD/DVD-RECORDING HARDWARE. \n\n\nII.\ + \ Copyright \nThe Software is owned by Nero or its licensors and is protected by copyright\ + \ laws, international treaty provisions, and other national laws. You agree that you have\ + \ no right, title or interest in the Software, except as set forth in Subsection I. If the\ + \ Software is not copy protected you may either \n(a) make one copy of the Software solely\ + \ for backup or archival purposes, or \n(b) transfer the Software to a single hard disk\ + \ provided you keep the original solely for backup or archival purposes. \nProduct manual(s)\ + \ or written materials accompanying the Software may not be copied. \n\n\nIII. Other restrictions\ + \ \nYou may not rent or lease the Software, but you may permanently transfer your rights\ + \ under this Agreement provided that: \n(a) you transfer all copies of the Software and\ + \ all written materials; \n(b) the recipient agrees to be bound by the terms of this Agreement;\ + \ and \n(c) you remove any and all copies of the Software from your computer and cease\ + \ any further use of the Software. \nAny transfer must include the most recent update and\ + \ all prior versions. You may not copy the Software except as expressly set forth above.\ + \ You may not reverse engineer, decompile or disassemble the Software unless this right\ + \ is specifically granted to you by applicable law to decompile only to achieve interoperability\ + \ with other Software. You are not allowed to post or otherwise make the Software available\ + \ on the World Wide Web. If you did not acquire the Software in its original packaging and\ + \ you are not a transfer recipient under this subsection, you are not licensed to use the\ + \ Software. \nUpdates and Upgrades: You will have the opportunity to maintain the Software\ + \ by means of Updates and Upgrades. An \"Update\" is a new release of the existing Software\ + \ and is provided to You free of charge by Nero. An \"Upgrade\" is a major functional enhancement\ + \ to the Software that You can purchase via the Nero website (www.nero.com). Should you\ + \ decide to install an Update, the provisions of this Agreement will apply to such Update.\ + \ Should you purchase an Upgrade, your rights to install and use the Software will be limited\ + \ to either the originally purchased version of the Software or the Upgrade, but not both,\ + \ in accordance with the provisions of this Agreement. For the avoidance of doubt, this\ + \ Agreement permits you to install and use only one version (either the original version\ + \ or the Upgrade) of the Software at any one time and you agree not to use, transfer or\ + \ permit any third party to use the version that you have not installed. \n\n\nIV. Warranties\ + \ \nTHE LIMITED WARRANTY SET FORTH IN THIS SECTION PROVIDES YOU WITH SPECIFIC LEGAL RIGHTS.\ + \ YOU MAY HAVE ADDITIONAL RIGHTS BY LAW WHICH VARY FROM JURISDICTION TO JURISDICTION. NERO\ + \ DOES EXPLICITLY NOT INTEND TO LIMIT YOUR WARRANTY RIGHTS TO AN EXTENT NOT PERMITTED BY\ + \ LAW. PLEASE SEE SECTION E. \"LICENSE TERMS AND CONDITIONS APPLICABLE TO CERTAIN JURISDICTIONS\"\ + \ FOR PROVISIONS THAT APPLY TO SPECIFIC JURISDICTIONS. \nNERO MAKES NO WARRANTIES TO YOU\ + \ IN CONNECTION WITH THIS OEM LICENSE, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF\ + \ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. The party from whom you purchased\ + \ the product with which this Software has been bundled may have warranty and/or support\ + \ obligations to you. \n\n\nV. Liability for consequential damages \nANY CLAIMS CONCERNING\ + \ PRODUCT LIABILITY FACING NERO DUE TO REGULATION 85/374/EEC WILL BE GRANTED AND ARE NOT\ + \ SUBJECT OF THIS AGREEMENT. \nYOU MAY HAVE ADDITIONAL RIGHTS BY LAW WHICH VARY FROM JURISDICTION\ + \ TO JURISDICTION. NERO DOES EXPLICITLY NOT INTEND TO LIMIT YOUR LIABILITY RIGHTS TO AN\ + \ EXTENT NOT PERMITTED BY LAW. PLEASE SEE SECTION E. \"LICENSE TERMS AND CONDITIONS APPLICABLE\ + \ TO CERTAIN JURISDICTIONS\" FOR PROVISIONS THAT APPLY TO SPECIFIC JURISDICTIONS. \nIn no\ + \ event shall Nero or its licensors be liable for any other damages whatsoever (including,\ + \ without limitation, damages for loss of business profits, business interruption, loss\ + \ of business information, or other pecuniary loss) arising out of the use of or inability\ + \ to use the Software, even if Nero has been advised of the possibility of such damages.\ + \ You are required to take reasonable measures to avoid, damages, especially to make backup\ + \ copies of the software and any valuable data stored on your PC. Nero OEM Partners are\ + \ liable for those damages concerning software purchased from OEM. \n\n\nVI. Reservation\ + \ of proprietary rights \nAll proprietary rights on delivered Software are reserved to Nero\ + \ unless all claims against the End User are paid off or the cheque is cashed in. If reservation\ + \ of proprietary rights is performed by Nero, the End User is no longer entitled to use\ + \ the Software furthermore. All copies made of Nero´s Software have to be deleted completely\ + \ and ultimately by the End User. \n\n\nVII. Duration of the agreement \nThe agreement\ + \ is concluded for an undefined period of time. By violating the provisions about copyright\ + \ and other restrictions according to II. and III. the End User is no longer entitled to\ + \ use Nero´s Software and its accompanying items. In this case End User is obligated to\ + \ resend original discs and all copies of data carriers and to erase completely and ultimately\ + \ all data from End User´s computer established by means of Nero´s Software. The observance\ + \ of this agreement is conditional for the legal use of the Software and its accompanying\ + \ items. In case of violation of any obligation stipulated in this agreement by the End\ + \ User, Nero is entitled to terminate this agreement extraordinarily and immediately. \n\ + \n\nVIII. Safeguard measures \nEnd User will keep the Software in safe custody and\ + \ will indicate his members of household to follow the obligations stipulated in this agreement.\ + \ End User will follow all relevant legal provisions, especially the laws on intellectual\ + \ property and copyright. \n\n\nIX. Disclaimer \nTHE SOFTWARE IS DESIGNED TO ASSIST YOU\ + \ IN REPRODUCING MATERIAL IN WHICH YOU OWN THE COPYRIGHT OR HAVE OBTAINED PERMISSION TO\ + \ COPY FROM THE COPYRIGHT OWNER. UNLESS YOU OWN THE COPYRIGHT OR HAVE PERMISSION TO COPY\ + \ FROM THE COPYRIGHT OWNER, YOU MAY BE VIOLATING COPYRIGHT LAW AND BE SUBJECT TO PAYMENT\ + \ OF DAMAGES AND OTHER REMEDIES. IF YOU ARE UNCERTAIN ABOUT YOUR RIGHTS, YOU SHOULD CONTACT\ + \ YOUR LEGAL ADVISOR. YOU ASSUME FULL RESPONSIBILITY FOR THE LEGAL AND RESPONSIBLE USE OF\ + \ THE SOFTWARE. \n\n\nX. U.S. Government Restricted Rights \nAny use of the Nero Software\ + \ by the U.S. Government is conditioned upon the Government agreeing that the Software is\ + \ subject to Restricted Rights as provided under the provisions set forth in subdivision\ + \ (c)(1)(ii) of Clause 252.227-7013 of the Defense Federal Acquisition Regulations Supplement,\ + \ or the similar acquisition regulations of other applicable U.S. Government organizations.\ + \ The Contractor/Manufacturer is Nero AG, Rüppurrer Strasse 1a, 76137, Karlsruhe, Germany.\ + \ \n\n\n\nXI. Web Search Feature \nNero has integrated in some of Nero' software applications\ + \ a feature that enables you to enter a search request through the Software which will provide\ + \ you with search results from a variety of sources, including the World Wide Web (the \"\ + Web Search Feature\"). Nero and its affiliates do not and cannot guarantee the continuous\ + \ operation of this Web Search Feature. Nero reserves the right to change the functionality\ + \ of this feature or to cease supporting or integrating such feature into the Software without\ + \ further notice to you. \nYou acknowledge and agree that Nero and its affiliates shall\ + \ not be liable for any delays, failures or outages relating to or arising out of use of\ + \ the Web Search Feature. For additional information concerning the Web Search Feature,\ + \ please visit www.nero.com. \n\n\nXII. Hosting Services \nNero has integrated a function\ + \ into some of the Nero software applications which supports the upload, download, as well\ + \ as the viewing of videos, photos, or music on \"hosting services\" (e.g. My Nero, YouTube,\ + \ My Space, Flickr, or ccMixter). Nero, its affiliated companies and service providers do\ + \ not provide any guarantee for the uninterrupted service of this function. Nero reserves\ + \ the right to change the functionality or to cease the support or the integration of this\ + \ function in the software at any time without further notice. You hereby confirm that Nero\ + \ and its affiliated companies do not assume any accountability for delays, errors, or failures\ + \ which concern this function or which arise as a result of using the function. \n\n\nXIII.\ + \ Autobackup Function \nSome Nero applications have an autobackup function included\ + \ that is hosted by a third party and is subject to separate terms and conditions. Nero,\ + \ its affiliated companies and service providers do not provide any guarantee for the uninterrupted\ + \ service of this function. Nero reserves the right to change the functionality or to cease\ + \ the support or the integration of this function in the software at any time without further\ + \ notice. You hereby confirm that Nero and its affiliated companies do not assume any accountability\ + \ for delays, errors, or failures which concern this function or which arise as a result\ + \ of using the function. \n\n\nXIV. Gracenote ® music recognition service \nSome Nero software\ + \ applications have the Gracenote ® music recognition service included as a demo version,\ + \ others as a full version. The complete Gracenote ® music recognition service can be obtained\ + \ by purchasing the Gracenote plug-in. Nero, its affiliated companies and service providers\ + \ do not provide any guarantee for the uninterrupted service of this function. Nero reserves\ + \ the right to change the functionality or to cease the support or the integration of this\ + \ function in the software at any time without further notice. You hereby confirm that Nero\ + \ and its affiliated companies do not assume any accountability for delays, errors, or failures\ + \ which concern this function or which arise as a result of using the function. \n\n\nXV.\ + \ Patent Activation \nSome applications within Nero require third-party technologies,\ + \ some of which are available in this edition as limited (demo) versions. Online activation\ + \ is available to acquire unlimited access to these technologies. This will help ensure\ + \ full functionality of the Software. Internet connection or fax equipment is required for\ + \ this activation. \nNero will transmit and process only the data that is necessary for\ + \ activating the third-party technologies. \nThe Software will not send any such data without\ + \ your prior consent. \nOther than the Internet protocol address that may be considered\ + \ personally identifiable information in some jurisdictions no personally identifiable information\ + \ is provided to Nero. \nYou won’t need to provide your name or other personal information\ + \ during the activation process. \nFor further information please see our privacy statement\ + \ available on www.nero.com. \n\n\nB. LICENSE TERMS AND CONDITIONS APPLICABLE TO SOFTWARE\ + \ ACQUIRED FROM NERO OR A NERO DISTRIBUTOR \nThe license terms and conditions applicable\ + \ to Software purchased from Nero or a Nero Distributor are exactly the same as set forth\ + \ in Section A above, except that Subsection I (Grant of license) and Subsection IV (Warranties)\ + \ shall read as follows: \n\n\nI. Grant of license \nThis Agreement permits you to\ + \ use one copy of the Software acquired with this license on any single computer, provided\ + \ the Software is in use on only one computer at any given time. If you have acquired a\ + \ multiple license for the Software, then at any one time you may have in use up to as many\ + \ copies of the Software as you have licenses. The Software is \"in use\" on a computer\ + \ when it is loaded into the temporary memory or installed into the permanent memory (e.g.\ + \ hard disk, CD ROM, or other storage device) of that computer, except that a copy installed\ + \ on a network server for the sole purpose of distribution to other computers is not considered\ + \ \"in use\". If the anticipated number of users of the Software might exceed the authorized\ + \ number of applicable licenses, then you must have a reasonable mechanism or process in\ + \ place to assure that the number of concurrent uses of the Software does not exceed the\ + \ number of licenses. \n\n\nII. Warranties \nTHE LIMITED WARRANTY SET FORTH IN THIS SECTION\ + \ PROVIDES YOU WITH SPECIFIC LEGAL RIGHTS. YOU MAY HAVE ADDITIONAL RIGHTS BY LAW WHICH VARY\ + \ FROM JURISDICTION TO JURISDICTION. NERO DOES EXPLICITLY NOT INTEND TO LIMIT YOUR WARRANTY\ + \ RIGHTS TO AN EXTENT NOT PERMITTED BY LAW. PLEASE SEE SECTION E. \"LICENSE TERMS AND CONDITIONS\ + \ APPLICABLE TO CERTAIN JURISDICTIONS\" \" FOR PROVISIONS THAT APPLY TO SPECIFIC JURISDICTIONS.\ + \ \nNero warrants that for a period of ninety (90) days from the date of receipt, the Software\ + \ will perform substantially in accordance with the accompanying documentation. Any implied\ + \ warranties on the Software are limited to 90 days or the shortest period permitted by\ + \ applicable law, whichever is greater. Nero’s entire liability and your exclusive remedy\ + \ for a breach of this warranty shall be, at Nero’s sole option, either (a) return of the\ + \ price paid or (b) repair or replacement of the Software that does not meet Nero’s limited\ + \ warranty and that is returned to Nero with a copy of your receipt. If failure of the Software\ + \ is the result of accident, abuse, or misapplication, this limited warranty shall be void.\ + \ Any replacement Software will be warranted for the remainder of the original warranty\ + \ period or 30 days, whichever is longer. NERO MAKES NO OTHER WARRANTIES TO YOU IN CONNECTION\ + \ WITH THIS LICENSE, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND FITNESS FOR A PARTICULAR PURPOSE. \n\n\nIII. Liability for consequential damages\ + \ \nANY CLAIMS CONCERNING PRODUCT LIABILITY FACING NERO DUE TO REGULATION 85/374/EEC WILL\ + \ BE GRANTED AND ARE NOT SUBJECT OF THIS AGREEMENT. \nYOU MAY HAVE ADDITIONAL RIGHTS BY\ + \ LAW WHICH VARY FROM JURISDICTION TO JURISDICTION. NERO DOES EXPLICITLY NOT INTEND TO LIMIT\ + \ YOUR LIABILITY RIGHTS TO AN EXTENT NOT PERMITTED BY LAW. PLEASE SEE SECTION E. \"LICENSE\ + \ TERMS AND CONDITIONS APPLICABLE TO CERTAIN JURISDICTIONS\" FOR PROVISIONS THAT APPLY TO\ + \ SPECIFIC JURISDICTIONS. \nIn no event shall Nero or its licensors be liable for any other\ + \ damages whatsoever (including, without limitation, damages for loss of business profits,\ + \ business interruption, loss of business information, or other pecuniary loss) arising\ + \ out of the use of or inability to use the Software, even if Nero has been advised of the\ + \ possibility of such damages. You are required to take reasonable measures to avoid, damages,\ + \ especially to make backup copies of the software and any valuable data stored on your\ + \ PC. \n\n\nC. LICENSE TERMS AND CONDITIONS APPLICABLE TO DOWNLOADED FREE SOFTWARE PRODUCTS\ + \ AND/OR TRIAL (DEMO) VERSIONS \nThe license terms and conditions applicable to downloaded\ + \ free Software products and/or trial (demo) Versions are exactly the same as set forth\ + \ in Section A above, except that Subsection I (Grant of license) and Subsection IV (Warranties)\ + \ and Subsection V (Liability for consequential damages) shall read as follows and Subsections\ + \ XV (Commercial use) and XVI (Distribution of free versions) shall be added: \n\n\nI. \ + \ Grant of license \nThis Agreement permits you to use one copy of the Software acquired\ + \ with this license on any single computer, provided the Software is in use on only one\ + \ computer at any given time. For the avoidance of doubt, downloading multiple Copies of\ + \ the Software does not imply an extension of the license beyond usage on one single computer.\ + \ \nThe Software is \"in use\" on a computer when it is loaded into the temporary memory\ + \ or installed into the permanent memory (e.g. hard disk, CD ROM, or other storage device)\ + \ of that computer. If the anticipated number of users of the Software might exceed the\ + \ authorized number of licenses, then you must have a reasonable mechanism or process in\ + \ place to assure that the number of concurrent uses of the Software does not exceed the\ + \ number of licenses. UNDER NO CONDITIONS MAY A FREE DOWNLOAD BE DISTRIBUTED WITHOUT THE\ + \ PRIOR WRITTEN PERMISSION OF NERO. TO REQUEST SUCH PERMISSION EMAIL: PRESS@NERO.COM. \n\ + \n\nII. Warranties \n(a) The user is aware that it is not possible to create software\ + \ programs with zero defects. \n(b) NERO MAKES NO WARRANTIES TO YOU IN CONNECTION WITH THIS\ + \ FREE/TRIAL LICENSE, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND FITNESS FOR A PARTICULAR PURPOSE EXCEPT THOSE WARRANTIES INDISPENSABLE BY LAW. \n\n\ + \nIII. Liability for consequential damages \nANY CLAIMS CONCERNING PRODUCT LIABILITY FACING\ + \ NERO DUE TO REGULATION 85/374/EEC WILL BE GRANTED AND ARE NOT SUBJECT OF THIS AGREEMENT.\ + \ \nNero is liable for damages due to lack of property, especially for violating third party\ + \ copyrights. Nero does not accept liability for any offences against this agreement caused\ + \ by negligence, except from offences that caused physical injury. \n\n\nIV. Commercial\ + \ use \nFree and trial (demo) versions of the Software are offered solely for personal,\ + \ non-commercial use. Any distribution, purchase, sale delivery or utilization in combination\ + \ with any product or service to a third party or other commercial or business purposes\ + \ is expressly prohibited unless such right is specifically explicitly granted by Nero in\ + \ writing. \n\n\nV. Distribution \nThis license does not grant you the right to sublicense\ + \ or distribute the Software in any form if not expressly granted by Nero in writing. \n\ + \n\nD. LICENSE TERMS AND CONDITIONS APPLICABLE TO SOFTWARE PROVIDED WITHIN A NERO BETA\ + \ PROGRAM \nTHE LICENSE TERMS AND CONDITIONS APPLICABLE TO SOFTWARE PROVIDED WITHIN A NERO\ + \ BETA PROGRAM ARE EXACTLY THE SAME AS SET FORTH IN SECTION A ABOVE, EXCEPT THAT IF THIS\ + \ SOFTWARE IS DISTRIBUTED AS PART OF A NERO BETA PROGRAM THEN THE TERMS OF THE NERO BETA\ + \ PARTICIPANT AGREEMENT, WHETHER OR NOT SIGNED BY BETA PARTICIPANT, WILL OVERRIDE ANY CONFLICTING\ + \ TERMS IN THIS END USER LICENSE AGREEMENT. \nFOR AVOIDANCE OF DOUBT IT IS EXPRESSLY STATED\ + \ THAT USE OF ANY BETA SOFTWARE IS AT YOUR OWN RISK. \nIF YOU HAVE ANY QUESTIONS ABOUT WHETHER\ + \ YOUR USE OF THE SOFTWARE IS SUBJECT TO THE TERMS OF THE NERO BETA PARTICIPANT AGREEMENT\ + \ THEN PLEASE CHECK WITH THE PARTY THROUGH WHOM THE SOFTWARE WAS OBTAINED \n\n\nE. LICENSE\ + \ TERMS AND CONDITIONS APPLICABLE TO CERTAIN JURISDICTIONS \nTHIS SECTION SETS FORTH SPECIFIC\ + \ PROVISIONS APPLICABLE TO CERTAIN JURISDICTIONS. \nIF ANY PROVISION IN THIS SECTION IS\ + \ IN CONFLICT WITH ANY OTHER TERM OR CONDITION IN THIS AGREEMENT, THE REGULATIONS AS SET\ + \ FORTH IN THIS SECTION SHALL APPLY. \nTHIS SHALL NOT APPLY IN CASE OF CONFLICTS WITH SECTIONS\ + \ C OR D OF THIS AGREEMENT \n\n\nI. Provisions applicable in the European Union \n\ + If you are a consumer residing in a country that is part of the European union (EU) and\ + \ obtained the Software in such country, the license terms and conditions applicable to\ + \ your jurisdiction are exactly the same as set forth in the applicable Section A or B above,\ + \ except that Sections A.IV. or B.II. (\"Warranties\") shall read as follows: \n\n\nII.\ + \ Warranties \n(a) Defects in the Software supplied including the manuals and other\ + \ documentation shall be corrected by Nero within the warranty period of two years from\ + \ delivery following appropriate notification by the user. This shall take the form of rectification\ + \ of defects or replacement delivery at the user's choice. \n(b) Should Nero not be prepared\ + \ or able to effect this rectification or replacement delivery, or should this take longer\ + \ than a suitable deadline set by the user or fail for other reasons, the user shall be\ + \ entitled to withdraw from the Contract or to demand that the sale be canceled or the purchased\ + \ price reduced. Failure to rectify the defects or effect replacement delivery shall only\ + \ be assumed if Nero has been afforded ample opportunity to effect the rectification or\ + \ replacement delivery without the desired success being achieved, if the rectification\ + \ or replacement delivery is not possible or if it is refused or unacceptably delayed by\ + \ Nero, or if the rectification of defects has already been performed unsuccessfully twice.\ + \ The right of the user to demand compensation under § 437 of the German Civil Code remains\ + \ unaffected. \n(c) The user is aware that it is not possible to create software programs\ + \ with zero defects. Nero shall only warrant against software defects that significantly\ + \ reduce the Software's value or suitability for use as stipulated in the contract. \n(d)\ + \ It is the responsibility of the user to determine the destination for use of the software\ + \ and to select the suitable hardware/computer types. Nero shall not be liable for this.\ + \ \n(e) Unless otherwise specified in section \"Liability for consequential damages\",\ + \ Nero shall only be liable for damage to the Software supplied itself; in particular Nero\ + \ shall accept no liability for loss of data or other indirect losses. \nIf failure of the\ + \ Software is the result of accident, abuse, or misapplication, this warranty shall be void.\ + \ Any replacement Software will be warranted for the remainder of the original warranty.\ + \ NERO MAKES NO WARRANTIES TO YOU IN CONNECTION WITH IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND FITNESS FOR A PARTICULAR PURPOSE. \n\n\nIII. Provisions applicable in Germany and\ + \ Austria \nIf you are a consumer residing in either Germany or Austria and obtained the\ + \ Software in such country, the license terms and conditions applicable to your jurisdiction\ + \ are exactly the same as set forth in the applicable Section A . or B . above, except that\ + \ Sections A.V. or B.III (\"Liability for consequential damages\") shall read as follows:\ + \ \n\n\nIV. Liability for consequential damages \nNero will only be liable up to the\ + \ amount of damages as typically foreseeable at the time of entering into the agreement\ + \ in respect of damages caused by a slightly negligent breach of a material contractual\ + \ obligation and will not be liable for damages caused by a slightly negligent breach of\ + \ a non-material contractual obligation while any of the above limitations will not apply\ + \ to any statutory liability such as liability under the German Product Liability Act (\"\ + Produkthaftungsgesetz\") or liability for culpably caused personal injuries. \n\n\nF. \ + \ LICENSE TERMS AND CONDITIONS APPLICABLE TO SOFTWARE PROVIDED WITHIN A NERO FAMILY PACK\ + \ \nThe license terms and conditions applicable to Software products obtained as part of\ + \ a Nero Family Pack are exactly the same as set forth in Section A above, except that Subsection\ + \ I (\"Grant of license\") shall read as follows and Subsections II. (\"Commercial use\"\ + ) and III. (\"Restrictions of Family Pack Licenses\") shall be added:\n\nI. Grant of\ + \ license\n\nThis agreement permits you to use one copy of the software acquired with this\ + \ license on any single computer in your household , provided the software is in use on\ + \ only one computer at any given time. If you have acquired a multiple license for the software,\ + \ then at any one time you may have in use up to as many copies of the software in your\ + \ household as you have licenses. \nThe software is \"in use\" on a computer when it\ + \ is loaded into the temporary memory or installed into the permanent memory (e.g. Hard\ + \ disk, cd rom, or other storage device) of that computer. If the anticipated number of\ + \ users of the software might exceed the authorized number of licenses, then you must have\ + \ a reasonable mechanism or process in place to assure that the number of concurrent uses\ + \ of the software does not exceed the number of licenses. \n\n\nII. Commercial use\ + \ \nFamily Pack versions of the Software are offered solely for personal, non-commercial\ + \ use. Any distribution, purchase, sale delivery or utilization in combination with any\ + \ product or service to a third party or other commercial or business purposes is expressly\ + \ prohibited. \n\n\nIII. Restrictions of Family Pack Licenses \nFamily Pack versions of\ + \ the Software are only transferable in accordance with Section A. III if such transfer\ + \ is done with all licenses obtained as part of a Nero Family Pack. Licenses obtained with\ + \ a Nero Family Pack can not be tranferred seperately. \n\n\nG. TERMS AND CONDITIONS\ + \ APPLICABLE TO ALL LICENSES \nI. Third Party Disclaimer and Limitations \n\n\n1. \ + \ WM-DRM: \nWM-DRM: Content providers are using the Microsoft digital rights management\ + \ technology for Windows Media (\"WM-DRM\") to protect the integrity of their content (\"\ + Secure Content\") so that their intellectual property, including copyright, in such content\ + \ is not misappropriated. Portions of this Software and other third party applications (\"\ + WM-DRM Software\") use WM-DRM to transfer or play Secure Content. If the WM-DRM Software’s\ + \ security has been compromised, owners of Secure Content (\"Secure Content Owners\") may\ + \ request that Microsoft revoke the WM-DRM Software’s right to copy, display, transfer and/or\ + \ play Secure Content. Revocation does not alter the WM-DRM Software’s ability to play unprotected\ + \ content. A list of revoked WM-DRM Software is sent to your computer whenever you download\ + \ a license for Secure Content from the Internet. Microsoft may, in conjunction with such\ + \ license, also download revocation lists onto your computer on behalf of Secure Content\ + \ Owners. Secure Content Owners may also require you to upgrade some of the WM-DRM components\ + \ distributed with this Software (\"WM-DRM Upgrades\") before accessing their content. When\ + \ you attempt to play such content, WM-DRM Software built by Microsoft will notify you that\ + \ a WM-DRM Upgrade is required and then ask for your consent before the WM-DRM Upgrade is\ + \ downloaded. WM-DRM Software used by third parties may do the same. If you decline the\ + \ upgrade, you will not be able to access content that requires the WM-DRM Upgrade; however,\ + \ you will still be able to access unprotected content and Secure Content that does not\ + \ require the upgrade. \n\n\n2. MPEG-2: \nIf the product you purchased was provided as\ + \ \"MPEG-2 Royalty Product\" the following applies: \nMPEG-2 ROYALTY PRODUCT. ANY USE OF\ + \ THIS PRODUCT OTHER THAN CONSUMER PERSONAL USE IN ANY MANNER THAT COMPLIES WITH THE MPEG-2\ + \ STANDARD FOR ENCODING VIDEO INFORMATION FOR PACKAGED MEDIA IS EXPRESSLY PROHIBITED WITHOUT\ + \ A LICENSE UNDER APPLICABLE PATENTS IN THE MPEG-2 PATENT PORTFOLIO, WHICH LICENSE IS AVAILABLE\ + \ FROM MPEG LA L.L.C., 250 STEELE STREET, SUITE 300, DENVER, COLORADO 80206. OTHER THIRD-PARTY\ + \ LICENSES INCLUDED ONLY IF GRANTED IN WRITTEN. \nIf the product you purchased was not provided\ + \ as \"MPEG-2 Royalty Product\" the following applies: \nMPEG-2 INTERMEDIATE PRODUCT. USE\ + \ OF THIS PRODUCT IN ANY MANNER THAT COMPLIES WITH THE MPEG-2 STANDARD IS EXPRESSLY PROHIBITED\ + \ WITHOUT A LICENSE UNDER APPLICABLE PATENTS IN THE MPEG-2 PATENT PORTFOLIO, WHICH LICENSE\ + \ IS AVAILABLE FROM MPEG LA, L.L.C., 250 STEELE STREET, SUITE 300, DENVER, COLORADO 80206.\ + \ OTHER THIRD-PARTY LICENSES INCLUDED ONLY IF GRANTED IN WRITTEN. \n\n\n3. MPEG-4: \n\ + Use of this product in any manner that complies with the MPEG-4 Visual Standard is prohibited,\ + \ except for use by a consumer engaging in personal and non-commercial activities. \n\n\n\ + 4. MP3 and mp3PRO: \nSupply of this product only conveys a license for private, non-commercial\ + \ use and does not convey a license nor imply any right to use this product in any commercial\ + \ (i.e. revenue-generating) real time broadcasting (terrestrial, satellite, cable and/or\ + \ any other media), broadcasting / streaming via Internet, intranets and/or other networks\ + \ or in other electronic content distribution systems, such as pay-audio or audio-on-demand\ + \ applications. An independent license for such use is required. For details, please visit\ + \ www.mp3licensing.com. \n\n\n5. Dolby: \nSupply of this implementation of Dolby Technology\ + \ does not convey a license nor imply a right under any patent, or any other industrial\ + \ or intellectual property right of Dolby Laboratories, to use this implementation in any\ + \ finished end-user or ready-to-use final product. It is hereby notified that a license\ + \ for such use is required from Dolby Laboratories. \nConfidential information – Limited\ + \ distribution to authorized persons only. This Dolby Software is protected under U.S. copyright\ + \ laws as an unpublished work. They are confidential and proprietary to Dolby Laboratories.\ + \ Their reproduction or disclosure, in whole or in part, or the production of derivative\ + \ works therefrom without the express permission of Dolby Laboratories is prohibited. Do\ + \ not copy. Copyright © 1992-1999 Dolby Laboratories, Inc. All rights reserved \n\n\n6.\ + \ aac: \nThe aac Plug-In is using the MP4 file format I/O library. This library is available\ + \ under MPL from www.mpeg4ip.net. aacPlus developed by Coding Technologies (\"CT\"). www.codingtechnologies.com\ + \ Trademarks of CT are the property of CT. \n\n\nII. Embedded Software \nYou acknowledge\ + \ that the Software licensed hereunder contains third party components that are licensed\ + \ pursuant to its own terms and conditions (\"Embedded Software\"), as specified below.\ + \ A copy or location of the licenses associated with such Embedded Software is provided\ + \ below. NOTWITHSTANDING ANYTHING ELSE TO THE CONTRARY IN THIS AGREEMENT, EMBEDDED 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 FOUNDATION 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.\" \n\n\n1. OpenSSL License: \nOpen SSL is copyright © 1998-2005 The OpenSSL\ + \ Project. All rights reserved. Redistribution and use of Open SSL in source and binary\ + \ forms, with or without modification, are permitted provided that the following conditions\ + \ are met: 1. Redistributions of Open SSL source code must retain the above copyright notice,\ + \ this list of conditions and the following disclaimer. 2. Redistributions of Open SSL 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 the Open SSL 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/)\". Open SSL TOOLKIT 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.\ + \ \n\n\n2. PuTTY: \nNero BackItUp uses PuTTY to transfer data over SSH. PuTTY is copyright\ + \ 1997-2005 Simon Tatham. Portions of PuTTY are copyright Robert de Bath, Joris van Rantwijk,\ + \ Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford,\ + \ Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus Kuhn, and CORE SDI S.A. Permission is\ + \ hereby granted, free of charge, to any person obtaining a copy of PuTTY 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: PuTTY 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 SIMON TATHAM 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. \n\n\n3. AES: \nAES software used in Nero BackItUp is copyright\ + \ © 2002, Dr Brian Gladman, Worcester, UK. All rights reserved. The free distribution and\ + \ use of AES software in both source and binary form is allowed (with or without changes)\ + \ provided that: 1. Distributions of the AES source code include the above copyright notice,\ + \ this list of conditions and the following disclaimer; 2. Distributions in binary form\ + \ include the above copyright notice, this list of conditions and the following disclaimer\ + \ in the documentation and/or other associated materials; 3. The copyright holder's name\ + \ is not used to endorse products built using the AES software without specific written\ + \ permission. AES software is provided 'as is' with no explicit or implied warranties in\ + \ respect of its properties, including, but not limited to, correctness and/or fitness for\ + \ purpose. The AES source code can be fetched from http://fp.gladman.plus.com. \n\n\n4.\ + \ 7zip: \nThis 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. \nThis 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. \nhttp://www.7-zip.org/license.txt \n\ + In order to comply with the terms and conditions of certain Embedded Software, you may download\ + \ the source code of the 7zip library from http://www.nero.com/link.php?topic_id=7106. \n\ + \n\n5. NeVP6DecLib: \nNeVP6DecLib is derived from FFmpeg sources. FFmpeg is a trademark\ + \ of Fabrice Bellard (originator of the FFmpeg project - FFmpeg project, http://ffmpeg.mplayerhq.hu)\ + \ \nNeVP6DecLib is licensed under the Lesser GNU Lesser General Public License. GNU Lesser\ + \ General Public, Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,\ + \ MA 02110-1301 USA and you can distribute it and/or modify it under the terms of such license.\ + \ \nIn order to comply with the terms and conditions of certain Embedded Software, you may\ + \ download the source code of the NeVP6DecLib library from http://www.nero.com/link.php?topic_id=7107.\ + \ \n\n\n6. Gracenote ® music recognition service: \nThis application contains software\ + \ from Gracenote, Inc. of Emeryville, California (\"Gracenote\"). The software from Gracenote\ + \ (the \"Gracenote Client\") enables this application to do online disc identification and\ + \ obtain music-related information, including name, artist, track, and title information\ + \ (\"Gracenote Data\") from online servers (\"Gracenote Servers\") and to perform other\ + \ functions. You may use Gracenote Data only by means of the intended End-User functions\ + \ of this application software. \nYou agree that you will use Gracenote Data, the Gracenote\ + \ Client, and Gracenote Servers for your own personal non-commercial use only. You agree\ + \ not to assign, copy, transfer or transmit the Gracenote Client or any Gracenote Data to\ + \ any third party. YOU AGREE NOT TO USE OR EXPLOIT GRACENOTE DATA, THE GRACENOTE CLIENT,\ + \ OR GRACENOTE SERVERS, EXCEPT AS EXPRESSLY PERMITTED HEREIN. \nYou agree that your non-exclusive\ + \ license to use the Gracenote Data, the Gracenote Client, and Gracenote Servers will terminate\ + \ if you violate these restrictions. If your license terminates, you agree to cease any\ + \ and all use of the Gracenote Data, the Gracenote Client, and Gracenote Servers. Gracenote\ + \ reserves all rights in Gracenote Data, the Gracenote Client, and the Gracenote Servers,\ + \ including all ownership rights. You agree that Gracenote, Inc. may enforce its rights\ + \ under this Agreement against you directly in its own name. \nThe Gracenote Service uses\ + \ a unique identifier to track queries for statistical purposes. The purpose of a randomly\ + \ assigned numeric identifier is to allow the Gracenote service to count queries without\ + \ knowing anything about who you are. For more information, see the web page for the Gracenote\ + \ Privacy Policy for the Gracenote Service. \nBy using the software, you agree that the\ + \ Gracenote software may submit a waveform signature to Gracenote. A waveform signature\ + \ is a distillation of the sound-wave information in the music itself and helps the Gracenote\ + \ service to identify artist and title information for digital music files. A waveform signature\ + \ does not contain any information about you or your computer, and computing the waveform\ + \ signature should have no noticeable effect on the performance of your computer. For more\ + \ information, see the FAQ (Frequently Asked Questions) page, and the Privacy Policy for\ + \ the Gracenote Service. \nThe Gracenote Client and each item of Gracenote Data are licensed\ + \ to you \"AS IS.\" Gracenote makes no representations or warranties, express or implied,\ + \ regarding the accuracy of any Gracenote Data from in the Gracenote Servers. Gracenote\ + \ reserves the right to delete Data from the Gracenote Servers or to change Data categories\ + \ for any cause that Gracenote deems sufficient. No warranty is made that the Gracenote\ + \ Client or Gracenote Servers are error-free or that functioning of Gracenote Client or\ + \ Gracenote Servers will be uninterrupted. Gracenote is not obligated to provide you with\ + \ any new enhanced or additional Data types or categories that Gracenote may choose to provide\ + \ in the future and is free to discontinue its online service at any time. \nGRACENOTE DISCLAIMS\ + \ ALL WARRANTIES EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\ + \ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT. GRACENOTE\ + \ DOES NOT WARRANT THE RESULTS THAT WILL BE OBTAINED BY YOUR USE OF THE GRACENOTE CLIENT\ + \ OR ANY GRACENOTE CDDB SERVER. IN NO CASE WILL GRACENOTE BE LIABLE FOR ANY CONSEQUENTIAL\ + \ OR INCIDENTAL DAMAGES OR FOR ANY LOST PROFITS OR LOST REVENUES. \nCD and music-related\ + \ data from Gracenote, Inc., copyright © 2000-2008 Gracenote. Gracenote Software, copyright\ + \ © 2000-2008 Gracenote. This product and service may practice one or more of the following\ + \ U.S. Patents: #5,987,525; #6,061,680; #6,154,773, #6,161,132, #6,230,192, #6,230,207,\ + \ #6,240,459, #6,330,593, and other patents issued or pending. Some services supplied under\ + \ license from Open Globe, Inc. for U.S. Patent: #6,304,523 \nGracenote and CDDB are registered\ + \ trademarks of Gracenote. The Gracenote logo and logotype, and the \"Powered by Gracenote\"\ + \ logo are trademarks of Gracenote. For more information, please visit www.gracenote.com.\ + \ \n\n\n7. Microsoft Redistributable Software Components: \nSome of the Software products\ + \ that are object of this agreement may contain redistributable update packages of Microsoft\ + \ Corporation. Those update packages are for example, but not limited to, Windows6.0-KB843524-ia64.msu,\ + \ Windows6.0-KB843524-x64.msu, and Windows6.0-KB843524-x86.msu. The license granted to you\ + \ hereunder is a non-exclusive, royalty-free, non-transferable, non-assignable, revocable,\ + \ limited, fully paid-up license to use and reproduce the Redistributable Software Component\ + \ solely for your personal and internal business operations. With installing those components\ + \ to your system you agree that you own a validly licensed copy of the Licensed Product\ + \ for which the Redistributable Software Component applies. All other provisions of this\ + \ agreement also apply to Microsoft Redistributable Software Components. \nCopyright © 2008\ + \ Microsoft Corporation. All rights reserved. \n\n\n8. MD5: \nSome of the Software products\ + \ that are object of this agreement may contain RSA Data Security, Inc. MD5 Message-Digest\ + \ Algorithm cryptographic algorithm. \nLicense to copy and use this MD5 Message-Digest Algorithm\ + \ cryptographic algorithm is granted provided that it is identified as the \"RSA Data Security,\ + \ Inc. MD5 Message-Digest Algorithm\" in all material mentioning or referencing this software\ + \ or this function. \nLicense is also granted to make and use derivative works provided\ + \ that such works are identified as \"derived from the RSA Data Security, Inc. MD5 Message-Digest\ + \ Algorithm\" in all material mentioning or referencing the derived work. \nRSA Data Security,\ + \ Inc. makes no representations concerning either the merchantability of this MD5 Message-Digest\ + \ Algorithm cryptographic algorithm or the suitability of it for any particular purpose.\ + \ It is provided \"as is\" without express or implied warranty of any kind. \nCopyright\ + \ (C) 1991-2, RSA Data Security, Inc. Created 1991. All rights reserved.\n\n\n\nIII. Governing\ + \ Law \n\nIf any dispute shall arise pursuant to any provision of this Agreement, the plaintiff\ + \ must choose place of performance or residence of the defendant as place of jurisdiction.\ + \ If any term or provision of this Agreement shall be declared invalid in arbitration or\ + \ by a court of competent jurisdiction, such invalidity shall be limited solely to the specific\ + \ term or provision invalidated, and the remainder of this Agreement shall remain in full\ + \ force and effect, according to its terms. \nAny provision declared invalid shall be modified\ + \ to the legal provisions. \nCopyright © 1996-2012 Nero AG and its licensors. All rights\ + \ reserved. \nNero, Nero BackItUp, Nero Burn, Nero Digital, Nero Express, Nero MediaStreaming,\ + \ Nero Recode, Nero RescueAgent, Nero SmartDetect, Nero Simply Enjoy, Nero SmoothPlay, Nero\ + \ StartSmart, Nero Surround, Burn-At-Once, LayerMagic, Liquid Media, SecurDisc, the SecurDisc\ + \ logo, Superresolution, UltraBuffer, Nero Burning ROM, Nero Kwik Blu-ray, Nero Kwik Media,\ + \ Nero Kwik Burn, Nero Kwik Play, Nero Kwik DVD, Nero Kwik Photobook, Nero Kwik Faces, Nero\ + \ Kwik Move it, Nero Kwik Sync , Nero Kwik Themes, Nero Video, Nero Video Express, Nero\ + \ SoundTrax, Nero WaveEditor and Nero CoverDesigner are common law trademarks or registered\ + \ trademarks of Nero AG. \nPortions of the Software utilize Microsoft Windows Media Technologies.\ + \ Copyright © 1999-2002. Microsoft Corporation. All Rights Reserved. \nThis product contains\ + \ portions of imaging code owned by Pegasus Software LLC, Tampa, FL. \nGracenote, CDDB,\ + \ MusicID, MediaVOCS, the Gracenote logo and logotype, and the \"Powered by Gracenote\"\ + \ logo are either registered trademarks or trademarks of Gracenote in the United States\ + \ and/or other countries. \nManufactured under license from Dolby Laboratories. Dolby, Pro\ + \ Logic, and the double-D symbol are registered trademarks of Dolby Laboratories, Inc. Confidential\ + \ unpublished works. Copyright 2011 Dolby Laboratories. All rights reserved. \nManufactured\ + \ under license under U.S. Patent Nos: 5,956,674; 5,974,380; 6,487,535 & other U.S. and\ + \ worldwide patents issued & pending. DTS, the Symbol, & DTS and the Symbol together are\ + \ registered trademarks & DTS Digital Surround, DTS 2.0+Digital Out and the DTS logos are\ + \ trademarks of DTS, Inc. Product includes software. © DTS, Inc. All Rights Reserved. \n\ + AVCHD and AVCHD logo, AVCHD Lite and AVCHD Lite logo are trademarks of Panasonic Corporation\ + \ and Sony Corporation. \nFacebook is a registered trademark of Facebook, Inc. \nYahoo!\ + \ and Flickr are registered trademarks of Yahoo! Inc. \nMy Space is a trademark of MySpace,\ + \ Inc., \nGoogle, Android and YouTube are trademarks of Google, Inc. \nApple, Apple TV,\ + \ iTunes, iTunes Store, iPad, iPod, iPod touch, iPhone, Mac and QuickTime are trademarks\ + \ of Apple Inc. registered in the U.S and other countries. \nBlu-ray Disc, Blu-ray, Blu-ray\ + \ 3D, BD-Live, BONUSVIEW, BDXL, AVCREC and the logos are trademarks of the Blu-ray Disc\ + \ Association. \nDVD Logo is a trademark of Format/Logo Licensing Corp. registered in the\ + \ U.S., Japan and other countries. \nBluetooth is a trademark owned by Bluetooth SIG, Inc.\ + \ \nThe USB logo is a trademark of Universal Serial Bus Implementers Corporation. \nActiveX,\ + \ ActiveSync, Aero, Authenticode, Bing, DirectX, DirectShow, Internet Explorer, Microsoft,\ + \ MSN, Outlook, Windows, Windows Mail, Windows Media, Windows Media Player, Windows Mobile,\ + \ Windows.NET, Windows Server, Windows Vista, Windows XP, Windows 7, Xbox, Xbox 360, PowerPoint,\ + \ Silverlight, the Silverlight logo, Visual C++, the Windows Vista start button, and the\ + \ Windows logo are trademarks or registered trademarks of Microsoft Corporation in the United\ + \ States and other countries. \nFaceVACS and Cognitec are either registered trademarks or\ + \ trademarks of Cognitec Systems GmbH. \nDivX and DivX Certified are registered trademarks\ + \ of DivX, Inc. \nDVB is a registered trademark of the DVB Project. \nNVIDIA, GeForce, ForceWare,\ + \ and CUDA are trademarks or registered trademarks of NVIDIA. \nSony, Memory Stick, PlayStation,\ + \ and PSP are trademarks or registered trademarks of Sony Corporation. \nHDV is a trademark\ + \ of Sony Corporation and Victor Company of Japan, Limited (JVC). \n3GPP is a trademark\ + \ of European Telecommunications Standards Institute (ETSI) \nAdobe, Acrobat, Reader, Premiere,\ + \ AIR, and Flash are trademarks or registered trademarks of Adobe Systems, Incorporated.\ + \ \nAMD Athlon, AMD Opteron, AMD Sempron, AMD Turion, ATI Catalyst, ATI Radeon, ATI, Remote\ + \ Wonder, and TV Wonder are trademarks or registered trademarks of Advanced Micro Devices,\ + \ Inc. \nLinux is a registered trademark of Linus Torvalds. \nCompactFlash is a registered\ + \ trademark of SanDisk Corporation \nUPnP is a registered trademark of UPnP Implementers\ + \ Corporation. \nAsk and Ask.com are registered trademarks of IAC Search & Media. \nIEEE\ + \ is a registered trademark of The Institute of Electrical and Electronics Engineers, Inc.\ + \ \nPhilips is a registered trademark of Koninklijke Philips Electronics.N.V. \nInstallShield\ + \ is a registered trademark of Macrovision Corporation. \nUnicode is a registered trademark\ + \ of Unicode, Inc. \nCheck Point is a registered trademark of Check Point Software Technologies\ + \ Ltd. \nLabelflash is a trademark of Yamaha Corporation \nLightScribe is a registered trademark\ + \ of the Hewlett-Packard Development Company, L.P. \nIntel, Intel Media SDK, Intel Core,\ + \ Intel XScale and Pentium are trademarks or registered trademarks of Intel Corporation\ + \ in the U.S. and/or other countries. \nMP3 SURROUND, MP3PRO and their logos are trademarks\ + \ of Thomson S.A. \nThis product is furnished under U.S. and foreign patents owned and licensed\ + \ by AT&T Corp. \nOther product and brand names may be trademarks of their respective owners\ + \ and do not imply affiliation with, sponsorship, or endorsement by owners. \nwww.nero.com\ + \ \n\nIf you have any questions concerning this Agreement contact us via legal@nero.com.\ + \ \n© 2012 Nero AG. All rights reserved." json: nero-eula.json - yml: nero-eula.yml + yaml: nero-eula.yml html: nero-eula.html - text: nero-eula.LICENSE + license: nero-eula.LICENSE - license_key: net-snmp + category: Permissive spdx_license_key: Net-SNMP other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Net SNMP License\nhttp://net-snmp.sourceforge.net/about/license.html \n\nVarious copyrights\ + \ apply to this package, listed in various separate parts \nbelow. Please make sure that\ + \ you read all the parts. Up until 2001, the \nproject was based at UC Davis, and the first\ + \ part covers all code written \nduring this time. From 2001 onwards, the project has been\ + \ based at \nSourceForge, and Networks Associates Technology, Inc hold the copyright on\ + \ \nbehalf of the wider Net-SNMP community, covering all derivative work done \nsince then.\ + \ An additional copyright section has been added as Part 3 below \nalso under a BSD license\ + \ for the work contributed by Cambridge Broadband Ltd. \nto the project since 2001.\n\n\ + An additional copyright section has been added as Part 4 below also under a \nBSD license\ + \ for the work contributed by Sun Microsystems, Inc. to the project \nsince 2003. \n \n\ + Code has been contributed to this project by many people over the years it \nhas been in\ + \ development, and a full list of contributors can be found in the \nREADME file under the\ + \ THANKS section. \n \n---- Part 1: CMU/UCD copyright notice: (BSD like) ----- \n \n \n\ + \ Copyright 1989, 1991, 1992 by Carnegie Mellon University \n \n Derivative Work\ + \ - 1996, 1998-2000 \nCopyright 1996, 1998-2000 The Regents of the University of California\ + \ \n \n All Rights Reserved \n \nPermission to use, copy, modify and distribute this\ + \ software and its \ndocumentation for any purpose and without fee is hereby granted, provided\ + \ \nthat the above copyright notice appears in all copies and that both that \ncopyright\ + \ notice and this permission notice appear in \nsupporting documentation, and that the name\ + \ of CMU and The Regents of the \nUniversity of California not be used in advertising or\ + \ publicity pertaining \nto distribution of the software without specific written permission.\ + \ \n \nCMU AND THE REGENTS OF THE UNIVERSITY OF CALIFORNIA DISCLAIM ALL WARRANTIES \nWITH\ + \ REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF \nMERCHANTABILITY AND FITNESS.\ + \ IN NO EVENT SHALL CMU OR \nTHE REGENTS OF THE UNIVERSITY OF CALIFORNIA BE LIABLE FOR\ + \ ANY SPECIAL, \nINDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING \n\ + FROM THE LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, \nNEGLIGENCE OR\ + \ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE \nUSE OR PERFORMANCE OF\ + \ THIS SOFTWARE. \n \nPart 2: Networks Associates Technology, Inc copyright notice (BSD)\ + \ \n \nCopyright (c) 2001-2003, Networks Associates Technology, Inc \nAll rights reserved.\ + \ \n \nRedistribution and use in source and binary forms, with or without \nmodification,\ + \ are permitted provided that the following conditions are met: \n \nRedistributions of\ + \ source code must retain the above copyright notice, \nthis list of conditions and the\ + \ following disclaimer. \n \nRedistributions in binary form must reproduce the above copyright\ + \ notice, \nthis list of conditions and the following disclaimer in the documentation \n\ + and/or other materials provided with the distribution. \n \nNeither the name of the Networks\ + \ Associates Technology, Inc nor the names of \nits contributors may be used to endorse\ + \ or promote products derived from this \nsoftware without specific prior written permission.\ + \ \n \nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' \n\ + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES\ + \ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE \nARE DISCLAIMED. IN NO EVENT\ + \ SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE \nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\ + \ SPECIAL, EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\ + \ OF \nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS \nINTERRUPTION)\ + \ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN \nCONTRACT, STRICT LIABILITY,\ + \ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS\ + \ SOFTWARE, EVEN IF ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE. \n \n---- Part 3: Cambridge\ + \ Broadband Ltd. copyright notice (BSD) ----- \n \nPortions of this code are copyright (c)\ + \ 2001-2003, Cambridge Broadband Ltd. \nAll rights reserved. \n \nRedistribution and use\ + \ in source and binary forms, with or without \nmodification, are permitted provided that\ + \ the following conditions are met: \n \nRedistributions of source code must retain the\ + \ above copyright notice, his \nlist of conditions and the following disclaimer. \n \n\ + Redistributions in binary form must reproduce the above copyright notice, \nthis list of\ + \ conditions and the following disclaimer in the documentation \nand/or other materials\ + \ provided with the distribution. \n \nThe name of Cambridge Broadband Ltd. may not be\ + \ used to endorse or promote \nproducts derived from this software without specific prior\ + \ written \npermission. \n \nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER ``AS IS''\ + \ AND ANY \nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED\ + \ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR \nPURPOSE ARE DISCLAIMED. \ + \ IN NO EVENT SHALL THE COPYRIGHT HOLDER BE \nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\ + \ SPECIAL, EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\ + \ OF \nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR \nBUSINESS INTERRUPTION)\ + \ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, \nWHETHER IN CONTRACT, STRICT LIABILITY,\ + \ OR TORT (INCLUDING NEGLIGENCE \nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\ + \ SOFTWARE, EVEN \nIF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \n \n---- Part 4: Sun Microsystems,\ + \ Inc. copyright notice (BSD) ----- \n \nCopyright © 2003 Sun Microsystems, Inc., 4150 Network\ + \ Circle, Santa Clara, \nCalifornia 95054, U.S.A. All rights reserved. \n \nUse is subject\ + \ to license terms below. \n \nThis distribution may include materials developed by third\ + \ parties. \n \nSun, Sun Microsystems, the Sun logo and Solaris are trademarks or registered\ + \ \ntrademarks of Sun Microsystems, Inc. in the U.S. and other countries. \n \nRedistribution\ + \ and use in source and binary forms, with or without \nmodification, are permitted provided\ + \ that the following conditions are met: \n \nRedistributions of source code must retain\ + \ the above copyright notice, this \nlist of conditions and the following disclaimer. \n\ + \ \nRedistributions in binary form must reproduce the above copyright notice, \nthis list\ + \ of conditions and the following disclaimer in the documentation \nand/or other materials\ + \ provided with the distribution. \n \nNeither the name of the Sun Microsystems, Inc. nor\ + \ the names of its \ncontributors may be used to endorse or promote products derived from\ + \ this \nsoftware without specific prior written permission. \n \nTHIS SOFTWARE IS PROVIDED\ + \ BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' \nAND ANY EXPRESS OR IMPLIED WARRANTIES,\ + \ INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\ + \ FOR A PARTICULAR PURPOSE \nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR\ + \ CONTRIBUTORS BE \nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\ + \ \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF \nSUBSTITUTE GOODS\ + \ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS \nINTERRUPTION) HOWEVER CAUSED\ + \ AND ON ANY THEORY OF LIABILITY, WHETHER IN \nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\ + \ NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\ + \ ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE. \n \n---- Part 5: Sparta, Inc copyright notice\ + \ (BSD) ----- \n \nCopyright (c) 2003-2006, Sparta, Inc \nAll rights reserved. \n \nRedistribution\ + \ and use in source and binary forms, with or without \nmodification, are permitted provided\ + \ that the following conditions are met: \n \nRedistributions of source code must retain\ + \ the above copyright notice, this \nlist of conditions and the following disclaimer. \n\ + \ \nRedistributions in binary form must reproduce the above copyright notice, \nthis\ + \ list of conditions and the following disclaimer in the documentation \nand/or other\ + \ materials provided with the distribution. \n \nNeither the name of Sparta, Inc nor the\ + \ names of its contributors may be \nused to endorse or promote products derived from this\ + \ software without \nspecific prior written permission. \n \nTHIS SOFTWARE IS PROVIDED\ + \ BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' \nAND ANY EXPRESS OR IMPLIED WARRANTIES,\ + \ INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\ + \ FOR A PARTICULAR PURPOSE \nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR\ + \ CONTRIBUTORS BE \nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\ + \ \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF \nSUBSTITUTE GOODS\ + \ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS \nINTERRUPTION) HOWEVER CAUSED\ + \ AND ON ANY THEORY OF LIABILITY, WHETHER IN \nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\ + \ NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\ + \ ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE. \n \n---- Part 6: Cisco/BUPTNIC copyright\ + \ notice (BSD) ----- \n \nCopyright (c) 2004, Cisco, Inc and Information Network Center\ + \ of Beijing \nUniversity of Posts and Telecommunications. \nAll rights reserved. \n \n\ + Redistribution and use in source and binary forms, with or without \nmodification, are permitted\ + \ provided that the following conditions are met: \n \nRedistributions of source code must\ + \ retain the above copyright notice, this \nlist of conditions and the following disclaimer.\ + \ \n \nRedistributions in binary form must reproduce the above copyright notice, \n\ + this list of conditions and the following disclaimer in the documentation \nand/or other\ + \ materials provided with the distribution. \n \nNeither the name of Cisco, Inc, Beijing\ + \ University of Posts and \nTelecommunications, nor the names of their contributors may\ + \ be used to \nendorse or promote products derived from this software without specific prior\ + \ \nwritten permission. \n \nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\ + \ ``AS IS'' \nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\ + \ \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE \nARE DISCLAIMED.\ + \ IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE \nLIABLE FOR ANY DIRECT, INDIRECT,\ + \ INCIDENTAL, SPECIAL, EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\ + \ TO, PROCUREMENT OF \nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\ + \ \nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN \nCONTRACT,\ + \ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT\ + \ OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE. \n \n\ + ---- Part 7: Fabasoft R&D Software GmbH & Co KG copyright notice (BSD) ----- \n \nCopyright\ + \ (c) Fabasoft R&D Software GmbH & Co KG, 2003 \noss@fabasoft.com \nAuthor: Bernhard Penz\ + \ \n \nRedistribution and use in source and binary forms, with or without \nmodification,\ + \ are permitted provided that the following conditions are met: \n \nRedistributions of\ + \ source code must retain the above copyright notice, this \nlist of conditions and the\ + \ following disclaimer. \n \nRedistributions in binary form must reproduce the above copyright\ + \ notice, \nthis list of conditions and the following disclaimer in the documentation\ + \ \nand/or other materials provided with the distribution. \n \nThe name of Fabasoft R&D\ + \ Software GmbH & Co KG or any of its subsidiaries, \nbrand or product names may not be\ + \ used to endorse or promote products derived \nfrom this software without specific prior\ + \ written permission. \n \nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER ``AS IS'' AND\ + \ ANY \nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES\ + \ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR \nPURPOSE ARE DISCLAIMED. IN NO EVENT\ + \ SHALL THE COPYRIGHT HOLDER BE \nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\ + \ EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF \n\ + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR \nBUSINESS INTERRUPTION)\ + \ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, \nWHETHER IN CONTRACT, STRICT LIABILITY,\ + \ OR TORT (INCLUDING NEGLIGENCE \nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\ + \ SOFTWARE, EVEN \nIF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." json: net-snmp.json - yml: net-snmp.yml + yaml: net-snmp.yml html: net-snmp.html - text: net-snmp.LICENSE + license: net-snmp.LICENSE - license_key: netapp-sdk-aug2020 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-netapp-sdk-aug2020 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "NETAPP MANAGEABILITY SDK LICENSE AGREEMENT\n\nThis NetApp Manageability SDK License\ + \ Agreement (“License”) is entered into between you (as an individual and/or on behalf of\ + \ the company by which you are employed) (“You”, “Your” or “Licensee”) and NetApp, Inc.,\ + \ located at 1395 Crossman Avenue, Sunnyvale, California 94089 (“NetApp”), and provides\ + \ the terms under which NetApp licenses the NetApp Manageability SDK (“SDK”) to You.\n\n\ + If You are accessing the SDK electronically from the NetApp Support Site (\"NSS\"), indicate\ + \ your acceptance of these terms by selecting the \"Accept\" button. By accepting the terms\ + \ of the License, You agree to be bound by the terms of the License, which includes any\ + \ other applicable licenses provided with the SDK. If You do not agree to all of the terms,\ + \ do not download the SDK. This License only applies to the SDK licensed by NetApp, Inc.\ + \ or its affiliates (collectively, \"NetApp\") and expressly excludes any software that\ + \ may be made available on the NSS by third parties.\n \n1.\tSOFTWARE DEVELOPMENT KIT LICENSE\ + \ GRANT. The following license terms apply to the NetApp Manageability Software Development\ + \ Kit. Subject to the terms and conditions of this License, NetApp grants You a license\ + \ to:\n \ni. Internally use the documentation which may include the \"Getting Started Guide,\"\ + \ FAQs, API documentation, and trouble-shooting guidelines (collectively, the \"SDK Documentation\"\ + ) solely for the purpose of researching, designing, developing and testing a software application\ + \ product (the \"Licensee Application)\" for use with NetApp products;\n\nii. Use, reproduce\ + \ and distribute the language libraries in object code form for those languages where such\ + \ use, reproduction and distribution is possible in object code form and in source code\ + \ form only for those languages where such use, reproduction and distribution in object\ + \ code form is not possible, such as scripting languages, and only as incorporated into\ + \ the Licensee Application; provided, however, that You (A) do not modify the language libraries;\ + \ (B) reproduce and include the copyright notice that appears in the language libraries\ + \ as provided by NetApp, and (C) distribute the Licensee Application incorporating the language\ + \ libraries pursuant to terms no less restrictive than those set forth herein; and\n\niii.\ + \ Use, reproduce, modify and create derivatives of the sample code which may include utilities\ + \ (the \"Sample Derivatives\") and reproduce and distribute the Sample Derivatives in object\ + \ code form as incorporated in the Licensee Application; provided, however, that You (A)\ + \ reproduce and include the copyright notice that appears in the sample code as provided\ + \ by NetApp, and (B) distribute the Licensee Application incorporating the Sample Derivatives\ + \ pursuant to terms no less restrictive than those set forth herein. You will promptly disclose\ + \ to NetApp all Sample Derivatives made by or created for You. NetApp will not provide technical\ + \ support, phone support, or updates to You for the sample code licensed under this License.\ + \ If NetApp, at its sole option, supplies updates to You, the updates will be considered\ + \ part of the sample code, and subject to the terms of this License.\n \n1.1 You shall not\ + \ combine the language libraries or the Sample Derivatives into a Licensee Application such\ + \ that the language libraries or Sample Derivatives would be licensed under a license that\ + \ requires the language libraries or Sample Derivatives to be (a) disclosed or distributed\ + \ in source code form, (b) licensed for the purpose of making derivative works, or (c) redistributable\ + \ at no charge.\n \n1.2 Third Party Software. Notwithstanding other statements in this License,\ + \ the SDK may include third party software including free, copyleft and open source software\ + \ components (collectively referred to as \"Third Party Software\") that are distributed\ + \ in compliance with the particular licensing terms and conditions attributable to the Third\ + \ Party Software. NetApp provides the Third Party Software to you \"AS IS\" without any\ + \ warranties or indemnities of any kind. Copyright notices and licensing terms and conditions\ + \ applicable to the Third Party Software are available for review with the SDK Documentation\ + \ at https://mysupport.netapp.com/documentation/productlibrary/index.html?productID=60427,\ + \ and are included in a NOTICES file included within the downloaded files.\L \n\n2. \tSNAPDIFF\ + \ API. This License does not include a license for the NetApp SnapDiff APIs and accompanying\ + \ API documentation (collectively, \"SnapDiff\"). If You require a license to SnapDiff,\ + \ please contact your NetApp representative\n\n3.\tRESTRICTIONS. NetApp shall retain all\ + \ right, title and interest in and to the SDK and SDK Documentation, and all copies thereof\ + \ (hereafter referred to collectively as the \"NetApp Software\"). Except as set forth in\ + \ Section 1 above, Licensee shall not make any copies of the NetApp Software except as reasonably\ + \ required for backup purposes. Licensee shall not, nor shall Licensee allow any third party\ + \ to: (a) decompile, disassemble, decrypt, extract, or otherwise reverse engineer or attempt\ + \ to reconstruct, or discover any source code or underlying ideas, algorithms, or file formats\ + \ of, or used in, the NetApp Software by any means whatever; or (b) remove or conceal any\ + \ product identification, copyright or other notices contained in or on the NetApp Software;\ + \ (c) publish or provide any results of benchmark tests run on the NetApp Software to a\ + \ third party without NetApp's prior written consent; or (d) modify the NetApp Software\ + \ or cause it to be modified, incorporate it into or with other software, display, reproduce,\ + \ publish, sell, offer for sale or create a derivative work of any part of the NetApp Software\ + \ except as expressly permitted in this License. Any such modification of the NetApp Software\ + \ will breach this License, and such derivative work is and shall be owned entirely by NetApp;\ + \ You hereby assign and agree to assign to NetApp all right, title and interest in and to\ + \ said derivative work. NetApp, and any relevant third parties, reserve the right to revise,\ + \ including bug fixes and/or patches, upgrade or otherwise change or modify the NetApp Software\ + \ (\"Upgrade\") at any time. Licensee shall implement each Upgrade as it is made generally\ + \ available by NetApp and is prohibited and shall immediately cease use of any version of\ + \ the NetApp Software not incorporating such Upgrade. The NetApp Software is protected by\ + \ copyrights, one or more U.S. patents issued or pending, and other applicable laws. Licensee\ + \ agrees to take all adequate steps to protect the NetApp Software from unauthorized disclosure\ + \ or use.\n \n4.\tCONFIDENTIALITY.\L\n4.1 You acknowledge that the NetApp Software and the\ + \ terms of this License, the APIs, the API documentation, and the source code are proprietary\ + \ and confidential information of NetApp (hereafter \"Confidential Information\"). You shall\ + \ not make the Confidential Information available in any form to any person other than to\ + \ Your employees or consultants with a need to know and who are under an obligation of confidentiality\ + \ not to disclose such Confidential Information. You shall use the same degree of care to\ + \ protect the confidentiality of such Confidential Information as You use to protect Your\ + \ own confidential information but in no event shall such degree of care be less than a\ + \ reasonable degree of care. Confidential Information shall not include any information\ + \ that (a) You can prove was received by You without confidentiality obligations of any\ + \ kind prior to the time of disclosure, provided You did not receive the information from\ + \ any third party in violation of that party's confidentiality obligations, (b) is in the\ + \ public domain at the time of disclosure, (c) enters the public domain after the time of\ + \ disclosure through no fault of Yours, or (d) is independently developed by You.\n \n5.\t\ + TERMINATION OF LICENSE. This License is effective until terminated. This License will terminate\ + \ automatically if You breach any material provision of this License. Upon termination,\ + \ Licensee shall immediately cease all use of the NetApp Software, de-install it, and return\ + \ or destroy all copies of the NetApp Software and all portions thereof and the accompanying\ + \ documentation and, where requested by NetApp, shall certify so in writing to NetApp. Termination\ + \ is not an exclusive remedy and all other remedies at law or in equity will be available\ + \ to NetApp whether or not the License is terminated. Sections 1.1, 1.2, 3, 4 through 13\ + \ will survive termination of this License.\n \n6.\tWARRANTY DISCLAIMER. THE NETAPP SOFTWARE\ + \ IS PROVIDED BY NETAPP \"AS IS\" AND WITHOUT WARRANTY OF ANY KIND. ANY EXPRESS OR IMPLIED\ + \ WARRANTIES, INCLUDING BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT,\ + \ AND FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED. IN NO EVENT SHALL NETAPP BE LIABLE\ + \ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, CONSEQUENTIAL OR OTHER DAMAGES.\ + \ SOME JURISDICTIONS DO NOT ALLOW LIMITATIONS OF IMPLIED WARRANTIES; THESE LIMITATIONS MAY\ + \ NOT APPLY.\n \n7.\tLIMITATIONS OF LIABILITY & DAMAGES. NETAPP SHALL NOT BE LIABLE FOR\ + \ LOSS OR INTERRUPTION OF BUSINESS, LOSS OF REVENUE OR PROFITS, OR LOSS OR CORRUPTION OF\ + \ DATA, HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY. SUCH THEORIES OF LIABILITY INCLUDE\ + \ CONTRACT OR TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE) OR OTHERWISE, ARISING OUT\ + \ OF OR IN CONNECTION WITH THE DOWNLOAD, INSTALLATION, USE, OPERATION, OR MAINTENACE OF\ + \ THE NETAPP SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE OR LOSS. IT IS\ + \ UNDERSTOOD THAT THE NETAPP SOFTWARE IS LICENSED TO YOU WITHOUT CHARGE. THEREFORE, NETAPP'S\ + \ TOTAL LIABILITY FOR ANY DAMAGE OR CLAIM ARISING FROM LICENSING OR USE OF THE NETAPP SOFTWARE\ + \ OR THE ACCOMPANYING DOCUMENTATION SHALL NOT EXCEED ONE HUNDRED DOLLARS (US$100.00). IN\ + \ NO EVENT SHALL NETAPP BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, EXEMPLARY, SPECIAL\ + \ OR CONSEQUENTIAL DAMAGES; LOST OR CORRUPTED DATA, LOSS OF PROFITS, SAVINGS, OR REVENUES;\ + \ OR FOR ANY OCCURRENCE BEYOND ITS CONTROL ARISING OUT OF THIS LICENSE OR FROM YOUR USE\ + \ OF THE NETAPP SOFTWARE.\n \nWARNING: The NetApp Software is not designed or intended for\ + \ use in on-line control of equipment in hazardous environments such as the operation of\ + \ nuclear facilities, aircraft, air traffic, aircraft navigation or aircraft communications,\ + \ or in the design, construction, operation or maintenance of any nuclear facility, or in\ + \ the operation or maintenance of any direct life support system. NetApp disclaims any express\ + \ or implied warranty of fitness for such uses and shall not be liable for any costs, liabilities\ + \ or damages resulting from the use of the NetApp Software in such an environment. Licensee\ + \ agrees that it will not use or license the NetApp Software for such purposes.\n \n8.\t\ + U.S. GOVERNMENT AND EXPORT REGULATIONS; COMPLIANCE WITH LAWS. This Section 9 applies to\ + \ You only if You are a U.S. Federal Government end user. The Software and Documentation\ + \ is “commercial” computer software and documentation and is licensed to You in accordance\ + \ with the rights articulated in applicable U.S. government acquisition regulations (e.g.\ + \ FAR, DFARs) pertaining to commercial computer software and documentation. You will not\ + \ be subject to applicable audit costs specified in Section 9. Any dispute between You and\ + \ NetApp will be subject to resolution pursuant to the Contract Disputes Act of 1978. Nothing\ + \ contained in this License is meant to derogate the rights of the U.S. Department of Justice\ + \ as identified in 28 U.S.C. §516. All other provisions of this License remain in effect\ + \ as written.\n \n9.\tLICENSEE INDEMNITY. You shall defend, indemnify and hold NetApp and\ + \ its directors, employees subsidiaries, affiliates, successors and assigns harmless from\ + \ and against all claims, damages, losses, costs and expenses, including attorneys' fees,\ + \ arising from any third party claims asserted against NetApp and its employees, subsidiaries,\ + \ affiliates, successors and assigns, that are based in whole or in part on any of the following:\ + \ (a) Licensee's use or misuse of the NetApp Software in violation of this License; (b)\ + \ use of the NetApp Software in combination with any other software not provided hereunder;\ + \ (c) Your breach of this License; or (d) a claim based upon an actual or alleged infringement\ + \ of an intellectual property right of a third party arising from or related to the Licensee\ + \ Application.\n \n10.\tCOMPLIANCE WITH LAWS. Each party shall comply with all applicable\ + \ federal, state, local and foreign laws and ordinances including, but not limited to all\ + \ export laws, restrictions and regulations of the Department of Commerce or other United\ + \ States or foreign agency or authority, the Occupational Safety and Health Act of 1970\ + \ (29 U.S.C. Sections 651, 678), the Fair Labor Standards Act of 1938 (29 U.S.C. Sections\ + \ 201-219), the Work Hours and Safety Act of 1962 (40 U.S.C. Sections 327, 333), the Equal\ + \ Employment Opportunity (42 U.S.C. Sections 2000e, et seq.) and federal regulations governing\ + \ affirmative action programs.\n \n11.\tGOVERNING LAW. This License shall be construed in\ + \ accordance with and all disputes hereunder shall be governed by the laws of the State\ + \ of California, excepting its conflicts of law rules. All disputes arising out of this\ + \ License shall be subject to the exclusive jurisdiction and venue of the Superior Court\ + \ of the State of California of Santa Clara County and the Federal District Court of the\ + \ Northern District of California, United States of America, and You consent to the personal\ + \ and exclusive jurisdiction and venue of such courts. The United Nations Convention on\ + \ Contracts for the International Sales of Goods is specifically disclaimed.\n \n12.\tSEVERABILITY. If\ + \ any provision of this License is held to be unenforceable, this License will remain in\ + \ effect with the provision omitted, unless omission would frustrate the intent of the parties,\ + \ in which case this License will immediately terminate.\n \n13.\tINTEGRATION. This License\ + \ is the entire agreement between You and NetApp relating to its subject matter. It supersedes\ + \ all prior or contemporaneous oral or written communications, proposals, representations\ + \ and warranties and prevails over any conflicting or additional terms of any quote, order,\ + \ acknowledgment, or other communication between the parties relating to its subject matter\ + \ during the term of this License. No modification of this License will be binding, unless\ + \ in writing and signed by an authorized representative of each party.\n \nNetApp SDK License\ + \ Agreement rev. Aug2020" json: netapp-sdk-aug2020.json - yml: netapp-sdk-aug2020.yml + yaml: netapp-sdk-aug2020.yml html: netapp-sdk-aug2020.html - text: netapp-sdk-aug2020.LICENSE + license: netapp-sdk-aug2020.LICENSE - license_key: netcat + category: Permissive spdx_license_key: LicenseRef-scancode-netcat other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Netcat is entirely my own creation, although plenty of other code was used as + examples. It is freely given away to the Internet community in the hope that + it will be useful, with no restrictions except giving credit where it is due. + No GPLs, Berkeley copyrights or any of that nonsense. The author assumes NO + responsibility for how anyone uses it. If netcat makes you rich somehow and + you're feeling generous, mail me a check. If you are affiliated in any way + with Microsoft Network, get a life. Always ski in control. Comments, + questions, and patches to nc110-devel@lists.sourceforge.net. json: netcat.json - yml: netcat.yml + yaml: netcat.yml html: netcat.html - text: netcat.LICENSE + license: netcat.LICENSE - license_key: netcdf + category: Permissive spdx_license_key: NetCDF other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Portions of this software were developed by the Unidata Program at the + University Corporation for Atmospheric Research. + + Access and use of this software shall impose the following obligations and + understandings on the user. The user is granted the right, without any fee or + cost, to use, copy, modify, alter, enhance and distribute this software, and any + derivative works thereof, and its supporting documentation for any purpose + whatsoever, provided that this entire notice appears in all copies of the + software, derivative works and supporting documentation. Further, UCAR requests + that the user credit UCAR/Unidata in any publications that result from the use + of this software or in any product that includes this software, although this is + not an obligation. The names UCAR and/or Unidata, however, may not be used in + any advertising or publicity to endorse or promote any products or commercial + entity unless specific written permission is obtained from UCAR/Unidata. The + user also understands that UCAR/Unidata is not obligated to provide the user + with any support, consulting, training or assistance of any kind with regard to + the use, operation and performance of this software nor to provide the user with + any updates, revisions, new versions or "bug fixes." + + THIS SOFTWARE IS PROVIDED BY UCAR/UNIDATA "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 UCAR/UNIDATA 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 ACCESS, USE OR PERFORMANCE OF THIS SOFTWARE. json: netcdf.json - yml: netcdf.yml + yaml: netcdf.yml html: netcdf.html - text: netcdf.LICENSE + license: netcdf.LICENSE - license_key: netcomponents + category: Permissive spdx_license_key: LicenseRef-scancode-netcomponents other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Savarese.Org\nCopyright © 1996-1999 Daniel F. Savarese.\nCopyright in this document\ + \ and the software accompanying this document is owned by Daniel F. Savarese. All rights\ + \ reserved.\n\nNetComponents License\nDaniel F. Savarese, hereinafter referred to as Daniel,\ + \ grants you a non-exclusive, non-transferable limited license to use the software components\ + \ comprising the NetComponents Java class package (\"Licensed Software\"). There is no fee\ + \ for this license. You may not redistribute any of the Licensed Software except as follows:\n\ + \n 1. You may reproduce and redistribute the Licensed Software in object code form only\ + \ (Java .class files) and only when incorporated into your software product which adds substantial\ + \ and primary functionality to the Licensed Software.\n 2. You may not permit further\ + \ redistribution of the Licensed Software by your end users except as part of a new software\ + \ product you develop that meets the restricions of item 1. \n\nTo clarify, you may use\ + \ the Licensed Software only to build new software you develop, and you may only distribute\ + \ the Licensed Software as part of this new software. You may not include the Licensed Software\ + \ in a software development kit or other library or development tool that exposes the API's\ + \ of the Licensed Software without first negotiating a specific license for that purpose\ + \ with Daniel. Except as permitted by applicable law and this License, you may not decompile,\ + \ reverse engineer, disassemble, modify, rent, lease, loan, distribute, create derivative\ + \ works from the Licensed Software or transmit the Licensed Software over a network.\n\n\ + You may not use or otherwise export or reexport the Licensed Software except as authorized\ + \ by United States law and the laws of the jurisdiction in which the Licensed Software was\ + \ obtained. In particular, but without limitation, the Licensed Software may not be used\ + \ or otherwise exported or reexported (1) into (or to a national or resident of) any United\ + \ States embargoed country or (2) to anyone on the U.S. Treasury Department't list of Specially\ + \ Designated Nationals or the U.S. Department of Commerce's Table of Denial Orders. By using\ + \ the Licensed Software, you represent and warrant that you are not located in, under control\ + \ of, or a national or resident of any such country or on any such list.\n\nDANIEL MAKES\ + \ NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE LICENSED SOFTWARE, EITHER\ + \ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. ORO SHALL NOT BE LIABLE FOR ANY\ + \ DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE LICENSED\ + \ SOFTWARE OR ITS DERIVATIVES. THE LICENSED SOFTWARE IS NOT DESIGNED FOR USE IN HIGH RISK\ + \ ACTIVITIES REQUIRING FAIL-SAFE PERFORMANCE. ORO DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY\ + \ OF FITNESS FOR HIGH RISK ACTIVITIES.\nRestricted Rights Legend\n\nThe Licensed Software\ + \ and documentation is a \"commercial item,\" as defined in 48 C.F.R. 2.101 (10/95), consisting\ + \ of \"commercial computer software\" and \"commercial computer software documentation,\"\ + \ as defined in 48 C.F.R. 12.212 (9/95). Use, duplication, or disclosure by the U.S. Government\ + \ is subject to the restrictions of U.S. GOVERNMENT END USERS consistent with 48 C.F.R.\ + \ 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (6/95).\nTrademarks\nORO, the ORO logo,\ + \ Original Reusable Objects, Component software for the Internet, and NetComponents are\ + \ trademarks or registered trademarks of Daniel F. Savarese in the United States and other\ + \ countries.\n\nJava is trademark of Sun Microsystems, Inc. Netscape is a trademark of Netscape\ + \ Communications Corporation. All other product names mentioned are the trademarks of their\ + \ respective owners." json: netcomponents.json - yml: netcomponents.yml + yaml: netcomponents.yml html: netcomponents.html - text: netcomponents.LICENSE + license: netcomponents.LICENSE - license_key: netron + category: Permissive spdx_license_key: LicenseRef-scancode-netron other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "END USER LICENSE AGREEMENT (∞2006); FRANCOIS VANDERSEYPEN \"THE NETRON PROJECT\".\n\ + \nIMPORTANT PLEASE READ CAREFULLY\n\nBefore reading the articles below, please take good\ + \ notice of the following preliminary terms and definitions:\n\nDEFINITIONS\n\n\"Agreement\"\ + : this End User License Agreement, as may be renewed, modified and/or amended from time\ + \ to time.\n\n\"Documentation\": any online or otherwise enclosed documentation provided\ + \ by THE NETRON PROJECT.\n\n\"IP Rights\": any and all intellectual property rights, including\ + \ but not limited to copyrights, trademarks and patents, as well as know how and trade secrets\ + \ contained in or relating to the THE NETRON PROJECT Software, the Documentation, the THE\ + \ NETRON PROJECT Website or the THE NETRON PROJECT Promotional Materials.\n\nTHE NETRON\ + \ PROJECT: refers to the open source project, hosted on Sourceforge.Net, owned by Dr.F.M.Vanderseypen,\ + \ Belgium.\n\n\"Netron Graph Library\": also called \"Netron graph control\", refers to\ + \ the software this license agreement applies to, the API, UI and Documentation, as well\ + \ as any future programming fixes, updates and upgrade thereof.\n\n\"Terms of Service\"\ + : means the agreement between THE NETRON PROJECT and You for the use of the software.\n\n\ + \"UI\": the user interface of the software.\n\n\"You\": you, the end user of the THE NETRON\ + \ PROJECT software, also used in the form ìYourî where applicable.\n\n\"THE NETRON PROJECT\ + \ website\": the webspace located at http://www.netronproject.com.\n\nENTERING INTO THIS\ + \ AGREEMENT\n\nThis End User License Agreement constitutes a valid and binding agreement\ + \ between THE NETRON PROJECTand You, as a user, for the use of the THE NETRON PROJECT software.\ + \ You must enter into this Agreement by clicking on the ACCEPT button in order to be able\ + \ to install and use the THE NETRON PROJECTsoftware. You hereby agree and acknowledge that\ + \ this Agreement covers all Your use of THE NETRON PROJECT software, whether it be from\ + \ this installation or from any other terminals where THE NETRON PROJECT software has been\ + \ installed, by You or by third parties. Furthermore, by installing and (continuously) using\ + \ the THE NETRON PROJECT software You agree to be bound by the terms of this Agreement and\ + \ any new versions hereof.\n\n\nNO WARRANTY \n\nBecause 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. \nIn 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.\ + \ \n\n\nLICENSE AND RESTRICTIONS\n\nPermission 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: \n\n1. 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. \n\n2. Altered source versions must be plainly marked\ + \ as such, and must not be misrepresented as being the original software. \n\n3. This notice\ + \ may not be removed or altered from any source distribution. \n\n4. Exclusive Ownership.\ + \ You acknowledge and agree that any and all IP Rights to or arising from the THE NETRON\ + \ PROJECT software are and shall remain the exclusive property of THE NETRON PROJECT and/or\ + \ its licensors. Nothing in this Agreement intends to transfer any such IP Rights to, or\ + \ to vest any such IP Rights in, You. You are only entitled to the limited use of the IP\ + \ Rights granted to You in this Agreement. You will not take any action to jeopardize, limit\ + \ or interfere with the IP Rights. You acknowledge and agree that any unauthorized use of\ + \ the IP Rights is a violation of this Agreement as well as a violation of intellectual\ + \ property laws, including without limitation copyright laws and trademark laws.\n\n5.Paid\ + \ Services. This Agreement applies to downloading, installing and using the THE NETRON PROJECT\ + \ software, free of charge. The use of any paid services which may be offered by THE NETRON\ + \ PROJECT or its Affiliates, is subject to the additional Terms of Service that are published\ + \ on the THE NETRON PROJECT Website.\n\nYOU EXPRESSLY ACKNOWLEDGE THAT YOU HAVE READ THIS\ + \ AGREEMENT AND UNDERSTAND THE RIGHTS, OBLIGATIONS, TERMS AND CONDITIONS SET FORTH HEREIN.\ + \ BY CLICKING ON THE ACCEPT BUTTON AND/OR CONTINUING TO INSTALL THE THE NETRON PROJECT SOFTWARE,\ + \ YOU EXPRESSLY CONSENT TO BE BOUND BY ITS TERMS AND CONDITIONS AND GRANT TO THE NETRON\ + \ PROJECT THE RIGHTS SET FORTH HEREIN." json: netron.json - yml: netron.yml + yaml: netron.yml html: netron.html - text: netron.LICENSE + license: netron.LICENSE - license_key: netronome-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-netronome-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Agilio(r) Firmware License Agreement (the "AGREEMENT") + + BY INSTALLING OR USING IN ANY MANNER THE SOFTWARE THAT ACCOMPANIES THIS + AGREEMENT (THE "SOFTWARE") YOU (THE "LICENSEE") ACKNOWLEDGE TO BE BOUND + BY ALL OF THE TERMS OF THIS AGREEMENT. + + LICENSE GRANT. Subject to the terms and conditions set forth herein, + Netronome Systems, Inc. ("NETRONOME") hereby grants LICENSEE a non- + exclusive license to use, reproduce and distribute the SOFTWARE + exclusively in object form. + + Restrictions. LICENSEE agrees that, (a) unless explicitly provided by + NETRONOME, the source code of the SOFTWARE is not being provided to + LICENSEE and is confidential and proprietary to NETRONOME and that + LICENSEE has no right to access or use such source code. Accordingly, + LICENSEE agrees that it shall not cause or permit the disassembly, + decompilation or reverse engineering of the SOFTWARE or otherwise attempt + to gain access to the source code for the SOFTWARE; and (b) LICENSEE + agrees that it shall not subject the SOFTWARE in whole or in part, to the + terms of any software license that requires, as a condition of use, + modification and/or distribution that the source code of the SOFTWARE, or + the SOFTWARE be i) disclosed or distributed in source code form; ii) + licensed for the purpose of making derivative works of the source code of + the SOFTWARE; or iii) redistribution of the source code of the SOFTWARE + at no charge. + + DISCLAIMER OF ALL WARRANTIES. THE SOFTWARE IS PROVIDED "AS IS" AND WITH + ALL FAULTS AND NETRONOME AND ITS LICENSORS HEREBY DISCLAIM ALL EXPRESS OR + IMPLIED WARRANTIES OF ANY KIND, INCLUDING, WITHOUT LIMITATION, ANY + WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT AND FITNESS FOR A + PARTICULAR PURPOSE. + + LIMITATIONS OF LIABILITY. EXCEPT WHERE PROHIBITED BY LAW, IN NO EVENT + SHALL NETRONOME OR ANY OTHER PARTY INVOLVED IN THE CREATION, PRODUCTION, + OR DELIVERY OF THE SOFTWARE BE LIABLE FOR ANY LOSS OF PROFITS, DATA, USE + OF THE SOFTWARE, DOCUMENTATION OR EQUIPMENT, OR FOR ANY SPECIAL, + INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, PUNITIVE, MULTIPLE OR OTHER + DAMAGES, ARISING FROM OR IN CONNECTION WITH THE SOFTWARE EVEN IF + NETRONOME OR ITS LICENSORS HAVE BEEN MADE AWARE OF THE POSSIBILITY OF + SUCH DAMAGES AND NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY + LIMITED REMEDY. + + EXPORT COMPLIANCE. LICENSEE shall not use or export or transmit the + SOFTWARE, directly or indirectly, to any restricted countries or in any + other manner that would violate any applicable US and other export + control and other regulations and laws as shall from time to time govern + the delivery, license and use of technology, including without limitation + the Export Administration Act of 1979, as amended, and any regulations + issued thereunder. + + PROHIBITION OF SOFTWARE USE IN HIGH RISK ACTIVITIES AND LIFE + SUPPORT APPLICATIONS. The SOFTWARE is not designed, manufactured or + intended for use as on-line control equipment in hazardous environments + requiring fail-safe performance, such as in the operation of nuclear + facilities, aircraft navigation or communications systems, air traffic + control, life support systems, human implantation or any other + application where product failure could lead to loss of life or + catastrophic property damage or weapons systems, in which the failure of + the SOFTWARE could lead directly to death, personal injury, or severe + physical or environmental damage ("High Risk Activities"). Accordingly + NETRONOME and, where applicable, NETRONOME'S third party licensors + specifically disclaim any express or implied warranty of fitness for High + Risk Activities. json: netronome-firmware.json - yml: netronome-firmware.yml + yaml: netronome-firmware.yml html: netronome-firmware.html - text: netronome-firmware.LICENSE + license: netronome-firmware.LICENSE - license_key: network-time-protocol + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: "Network Time Protocol License\nhttp://www.eecis.udel.edu/~mills/ntp/html/copyright.html\ + \ \n\nPermission to use, copy, modify, and distribute this software and its\ndocumentation\ + \ for any purpose with or without fee is hereby granted,\nprovided that the above copyright\ + \ notice appears in all copies and\nthat both the copyright notice and this permission notice\ + \ appear in\nsupporting documentation, and that the name University of Delaware not\nbe\ + \ used in advertising or publicity pertaining to distribution of the\nsoftware without specific,\ + \ written prior permission. The University of\nDelaware makes no representations about the\ + \ suitability this software\nfor any purpose. It is provided \"as is\" without express or\ + \ implied\nwarranty." json: network-time-protocol.json - yml: network-time-protocol.yml + yaml: network-time-protocol.yml html: network-time-protocol.html - text: network-time-protocol.LICENSE + license: network-time-protocol.LICENSE - license_key: new-relic + category: Proprietary Free spdx_license_key: LicenseRef-scancode-new-relic other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + All other components of this product are + Copyright (c) 2008-2014 New Relic, Inc. All rights reserved. + + Certain inventions disclosed in this file may be claimed within + patents owned or patent applications filed by New Relic, Inc. or third + parties. + + Subject to the terms of this notice, New Relic grants you a + nonexclusive, nontransferable license, without the right to + sublicense, to (a) install and execute one copy of these files on any + number of workstations owned or controlled by you and (b) distribute + verbatim copies of these files to third parties. As a condition to the + foregoing grant, you must provide this notice along with each copy you + distribute and you must not remove, alter, or obscure this notice. All + other use, reproduction, modification, distribution, or other + exploitation of these files is strictly prohibited, except as may be set + forth in a separate written license agreement between you and New + Relic. The terms of any such license agreement will control over this + notice. The license stated above will be automatically terminated and + revoked if you exceed its scope or violate any of the terms of this + notice. + + This License does not grant permission to use the trade names, + trademarks, service marks, or product names of New Relic, except as + required for reasonable and customary use in describing the origin of + this file and reproducing the content of this notice. You may not + mark or brand this file with any trade name, trademarks, service + marks, or product names other than the original brand (if any) + provided by New Relic. + + Unless otherwise expressly agreed by New Relic in a separate written + license agreement, these files are provided AS IS, WITHOUT WARRANTY OF + ANY KIND, including without any implied warranties of MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE, TITLE, or NON-INFRINGEMENT. As a + condition to your use of these files, you are solely responsible for + such use. New Relic will have no liability to you for direct, + indirect, consequential, incidental, special, or punitive damages or + for lost profits or data. json: new-relic.json - yml: new-relic.yml + yaml: new-relic.yml html: new-relic.html - text: new-relic.LICENSE + license: new-relic.LICENSE - license_key: newlib-historical + category: Permissive spdx_license_key: LicenseRef-scancode-newlib-historical other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. json: newlib-historical.json - yml: newlib-historical.yml + yaml: newlib-historical.yml html: newlib-historical.html - text: newlib-historical.LICENSE + license: newlib-historical.LICENSE - license_key: newran + category: Permissive spdx_license_key: LicenseRef-scancode-newran other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + There are no restrictions on the use of newran except that I take no liability for any problems that may arise from its use. + + I welcome its distribution as part of low cost CD-ROM collections. + + You can use it in your commercial projects. However, if you distribute the source, please make it clear which parts are mine and that they are available essentially for free over the Internet. json: newran.json - yml: newran.yml + yaml: newran.yml html: newran.html - text: newran.LICENSE + license: newran.LICENSE - license_key: newsletr + category: Permissive spdx_license_key: Newsletr other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is granted to anyone to use this software for any purpose + on any computer system, and to redistribute it freely, subject to the + following restrictions: + + 1. This software 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. + + 2. Altered versions must be plainly marked as such, and must not be + misrepresented as being the original software. json: newsletr.json - yml: newsletr.yml + yaml: newsletr.yml html: newsletr.html - text: newsletr.LICENSE + license: newsletr.LICENSE - license_key: newton-king-cla + category: CLA spdx_license_key: LicenseRef-scancode-newton-king-cla other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Unstated License + text: | + Contributor License Agreement + + By contributing your code to Json.NET you grant James Newton-King a non-exclusive, irrevocable, worldwide, + royalty-free, sublicenseable, transferable license under all of Your relevant intellectual property rights + (including copyright, patent, and any other rights), to use, copy, prepare derivative works of, distribute and + publicly perform and display the Contributions on any licensing terms, including without limitation: + (a) open source licenses like the MIT license; and (b) binary, proprietary, or commercial licenses. Except for the + licenses granted herein, You reserve all right, title, and interest in and to the Contribution. + + You confirm that you are able to grant us these rights. You represent that You are legally entitled to grant the + above license. If Your employer has rights to intellectual property that You create, You represent that You have + received permission to make the Contributions on behalf of that employer, or that Your employer has waived such + rights for the Contributions. + + You represent that the Contributions are Your original works of authorship, and to Your knowledge, no other person + claims, or has the right to claim, any right in any invention or patent related to the Contributions. You also + represent that You are not legally obligated, whether by entering into an agreement or otherwise, in any way that + conflicts with the terms of this license. + + James Newton-King acknowledges that, except as explicitly described in this Agreement, any Contribution which + you provide is 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. json: newton-king-cla.json - yml: newton-king-cla.yml + yaml: newton-king-cla.yml html: newton-king-cla.html - text: newton-king-cla.LICENSE + license: newton-king-cla.LICENSE - license_key: nexb-eula-saas-1.1.0 + category: Commercial spdx_license_key: LicenseRef-scancode-nexb-eula-saas-1.1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "NEXB INC.\nEND USER AGREEMENT FOR SOFTWARE AS A SERVICE\nREAD THIS AGREEMENT CAREFULLY.\n\ + \nThis Agreement is a legally binding agreement between you (meaning the person or the entity\ + \ that obtained the Service under the terms and conditions of this Agreement and referred\ + \ to below as \"You\" or \"Customer\") and nexB (meaning nexB Inc.). You are agreeing to\ + \ be bound by all terms and conditions of this Agreement. \n\nBy clicking on the \"Agree\"\ + \ or \"Accept\" or similar button in this Agreement, or proceeding with the use of the Service,\ + \ or authorizing any other person to do so, You are representing that You are (i) authorized\ + \ to bind the Customer to the terms of this Agreement; and (ii) agreeing on behalf of the\ + \ Customer that the terms of this Agreement shall govern the relationship of the parties\ + \ with regard to the subject matter in this Agreement, and waiving any rights, to the maximum\ + \ extent permitted by applicable law, to any claim anywhere in the world concerning the\ + \ enforceability or validity of this Agreement.\n\nIf You do not have authority to agree\ + \ to the terms of this Agreement on behalf of the Customer, or do not accept the terms of\ + \ this Agreement on behalf of the Customer, click on the \"Cancel\" or \"Decline\" or other\ + \ similar button and/or immediately cease any further attempt to use the Service.\n\n1.\t\ + DEFINITIONS\n\n(a) \"Agreement\" means this End User Agreement for Software as a Service.\n\ + \n(b) \"Service\" means the software as a service that you have purchased from nexB, including\ + \ accompanying Software, Content and Documentation.\n\n(c) \"Software\" means the software\ + \ program(s) and third-party software programs that nexB uses to deliver the Service, and\ + \ updates to any such Software which Licensee is entitled to receive from nexB for the purposes\ + \ of this Agreement..\n\n(d) \"Content\" means any information or data supplied by nexB\ + \ to Customer to be used in or with the Service, including but not limited to, information\ + \ and data about software licenses and software components.\n\n(e) \"Documentation\" means\ + \ any documentation supplied by nexB including associated media, printed materials, and\ + \ online or electronic documentation.\n\n(f) \"Updates\" means the provision by nexB to\ + \ Customer of Software updates and/or enhancements made generally available to customers\ + \ from time to time.\n\n(g) \"Support\" means online technical support (and where applicable,\ + \ phone or other support) for the sole purpose of addressing technical issues relating to\ + \ the use of the Service.\n\n(h) \"Order Form\" means a signed sales order or quote from\ + \ nexB form under which Licensee may order a Software Evaluation or Subscription License\ + \ from nexB in the form of Exhibit A.\n\n(i) \"User\" means each employee, agent, representative\ + \ or other person working directly or indirectly for or on behalf of Customer organization\ + \ who has access to and may potentially use the Service.\n\n(j) \"Subscription Fees\" means\ + \ the fees to be paid by Customer to nexB in connection with the use of the Service for\ + \ the duration of any Subscription Period.\n\n(k) \"Subscription Period\" means the amount\ + \ of calendar time that the Customer is authorized to use the Service.\n\n(l) \"Evaluation\ + \ Period\" means the amount of calendar time that the Customer is authorized to use the\ + \ Service for evaluation purposes only. The Evaluation Period is 30 days unless otherwise\ + \ agreed in writing between the parties.\n\n(m) \"Open Source Software\" means any software\ + \ that is subject to an Open Source License.\n\n(n) \"Open Source License\" means any license\ + \ that allows software to be freely used, modified, and shared. An Open Source License may\ + \ require a Customer to acknowledge the author of the software and also to redistribute\ + \ source code for the software or derivative works of the software. Open Source Licenses\ + \ include, but are not limited to, the GNU GPL, GNU LGPL, MPL, Apache, BSD and MIT licenses.\n\ + \n2.\tRIGHTS GRANTED\n\nSubject to the terms and conditions of this Agreement, nexB grants\ + \ to Customer a non-exclusive, non-assignable right during the Subscription (or Evaluation)\ + \ Period to:\n \n(a)\tUse the Service for the number of Users and according to other parameters\ + \ specified on an Order Form for your internal business purposes.\n\n(b)\tUse, copy, reproduce,\ + \ adapt and modify the Documentation for your internal business purposes.\n\n(c)\tBack up\ + \ and archive your data from the Service at any time. \n\n\n3.\tOWNERSHIP\n\n(a)\tThe Service,\ + \ including without limitation all know-how, concepts, logic and specifications, is a proprietary\ + \ product belonging to us and our licensors, and is protected throughout the world by copyright\ + \ and other intellectual property rights.\n\n(b)\tYou retain all ownership and intellectual\ + \ property rights in and to your data. nexB retains all ownership and intellectual property\ + \ rights to the Service, Software, Content and Documentation. nexB also retains all ownership\ + \ and intellectual property rights to anything developed and delivered under this Agreement.\n\ + \n(c)\tYou shall not (and shall not allow any third party to) copy, modify, create a derivative\ + \ work from, reverse engineer, reverse assemble or otherwise attempt to discover any source\ + \ code, or sell, assign, sublicense, grant a security interest in or otherwise transfer\ + \ any right in the Software. You agree not to modify the Service in any manner or form,\ + \ or to use modified versions of the Software, including (without limitation) for the purpose\ + \ of obtaining unauthorized access to the Service. You agree not to access the Service by\ + \ any means other than through the interface that is provided by nexB for use in accessing\ + \ the Service.\n\n(d)\tCustomer acknowledges that any symbols, trademarks, tradenames, and\ + \ service marks adopted by nexB to identify the Service, Software and Content belong to\ + \ nexB and that Customer shall have no rights therein.\n\n\n4.\tCONFIDENTIALITY\nCustomer\ + \ acknowledges that the Service contains proprietary trade secrets and other intellectual\ + \ property of nexB and hereby agrees to maintain the confidentiality of the Software using\ + \ at least the same degree of care as used to maintain the confidentiality of its own most\ + \ confidential information. Customer agrees to communicate the terms and conditions of this\ + \ Agreement to those persons employed by Customer or otherwise within its organization who\ + \ come into contact with the Service, and to use its best efforts to ensure their compliance\ + \ with such terms and conditions, including, without limitation, not permitting such persons\ + \ to use any portion of the Service for the purpose of deriving the source code of the Software.\n\ + \n5.\tPRIVACY AND SECURITY\n\n(a)\tYou acknowledge and agree that it may be necessary for\ + \ us to collect and process certain information relating to Customer and individual Users\ + \ in order to perform the Service, and that such information may include proprietary, confidential\ + \ and/or personal data, including without limitation (i) names, email addresses, telephone\ + \ numbers and other contact details; (ii) account usernames; (iii) IP addresses; and (iv)\ + \ usage information.\n\n(b)\tYou further acknowledge and agree that nexB may access or disclose\ + \ information about Customer, including the content of Customer communications, in order\ + \ to: (i) comply with the law or respond to lawful requests or legal process; (ii) protect\ + \ the rights or property of nexB or nexB's customers, including the enforcement of nexB's\ + \ agreements or policies governing Customer's use of the Service; or (iii) act on a good\ + \ faith belief that such access or disclosure is necessary to protect the personal safety\ + \ of nexB employees, customers, or the public.\n\n6.\tTHIRD-PARTY SOFTWARE\n\n(a)\tThe Service\ + \ may operate or interface with software or other technology which is not owned by us and\ + \ is licensed to us by third parties (\"Third Party Licensors\"), but which we have the\ + \ necessary rights to license to you (\"Third Party Software\"). You agree that (i) you\ + \ will use such Third Party Software in accordance with this Agreement, (ii) no Third Party\ + \ Licensor makes any warranties, conditions, undertakings or representations of any kind,\ + \ either express or implied, to you concerning such Third Party Software or the Service\ + \ itself, (iii) no Third Party Licensor will have any obligation or liability to you as\ + \ a result of this Agreement or your use of such Third Party Software, (iv) such Third Party\ + \ Software may be licensed under license terms which grant you additional rights or contain\ + \ additional restrictions in relation to such materials, beyond those set forth in this\ + \ Agreement, and such additional license rights and restrictions are described or linked\ + \ to within the applicable Documentation or within the Service itself.\n\n(b)\tnexB will\ + \ notify Customer in writing whether whether there is any Open Source Software embedded\ + \ in the Software. For any such Open Source Software, nexB warrants that it has complied\ + \ with any Open Source License terms and conditions and provided Licensee with the license\ + \ terms, source code or other information necessary for Licensee's compliance with such\ + \ license terms and conditions. nexB warrants that it will provide an updated disclosure\ + \ of Open Source Software in the documentation for each new release of the Software.\n\n\ + 7.\tLIMITED WARRANTY\n\n(a)\tIf Customer has paid a Subscription Fee for the Service, nexB\ + \ warrants to Customer during the Subscription Period that the Service when used for its\ + \ intended purpose will achieve in all material respects the functionality described in\ + \ the Documentation. nexB does not warrant that the Service will be error-free. This warranty\ + \ is only for the benefit of the Customer.\n\n(b)\tCustomer’s sole and exclusive remedy\ + \ for nexB’s breach of this warranty shall be that nexB shall be required to use commercially\ + \ reasonable efforts to modify the Service to achieve in all material respects the functionality\ + \ described in the Documentation. If nexB is unable to restore such functionality, then\ + \ Customer shall be entitled to terminate the Agreement and shall be entitled to receive\ + \ a pro-rata refund of the Subscription Fees paid for under the Agreement for its use of\ + \ the Service but which use has not yet been furnished by nexB as of the date of such termination.\ + \ nexB shall have no obligation with respect to a warranty claim unless notified in accordance\ + \ with subsection (c) below of such claim within thirty (30) days after Customer first learns\ + \ or should have learned of any material functionality problem.\n\n(c)\tIn the event of\ + \ a failure of the Service to achieve the functionality described in the Documentation,\ + \ Customer will notify nexB of the problem using nexB's online tracking system with sufficient\ + \ details as reasonably requested by nexB in order to allow nexB to attempt to reproduce\ + \ the problem. nexB shall use its best efforts to provide a correction or workaround to\ + \ the Customer within the time period specified for the problem severity at https://dejacode.zendesk.com/home\ + \ . We reserve the right to limit the number of Users who may contact our technical support\ + \ team.\n\n(d)\tWe reserve the right, in our sole discretion, to change, update, and enhance\ + \ the Service at any time including to add functionality or features to, or remove them\ + \ from, the Service. We may also suspend the Service or stop providing the Service altogether.\ + \ If nexB suspends or stops providing the Service or removes functionality or features that\ + \ Customer deems essential for its use of the Service, then Customer shall be entitled to\ + \ terminate the Agreement and shall be entitled to receive a pro-rata refund of the Subscription\ + \ Fees paid for under the Agreement for its use of the Service but which use has not yet\ + \ been furnished by nexB as of the date of such termination.\n\n(e)\tEXCEPT AS EXPRESSLY\ + \ SET FORTH IN THIS SECTION 7, THE SERVICE IS PROVIDED TO CUSTOMER ON AN \"AS IS\" BASIS,\ + \ WITH ANY AND ALL FAULTS, AND WITHOUT ANY WARRANTY OF ANY KIND; AND NEXB AND ITS RESELLERS\ + \ EXPRESSLY DISCLAIM ALL REPRESENTATIONS, WARRANTIES AND CONDITIONS WHETHER EXPRESS, IMPLIED,\ + \ STATUTORY, OR OTHERWISE, INCLUDING WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR PURPOSE, SATISFACTORY QUALITY, AND NON-INFRINGEMENT OF THIRD-PARTY\ + \ RIGHTS. NEXB DOES NOT WARRANT THAT THE SERVICE WILL MEET CUSTOMER’S OR ITS END USERS’\ + \ REQUIREMENTS, OR THAT THE OPERATION OF THE SERVICE WILL BE UNINTERRUPTED OR ERROR-FREE,\ + \ OR THAT DEFECTS IN THE SERVICE WILL BE CORRECTED. CUSTOMER EXPRESSLY ACKNOWLEDGES AND\ + \ AGREES THAT THE USE OF THE SERVICE AND ALL RESULTS OF SUCH USE IS SOLELY AT CUSTOMER’S\ + \ AND ITS END USERS’ OWN RISK. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY NEXB OR\ + \ ITS AUTHORIZED REPRESENTATIVES SHALL CREATE A WARRANTY OR IN ANY WAY INCREASE THE SCOPE\ + \ OF ANY WARRANTY. SOME JURISDICTIONS MAY NOT ALLOW THE EXCLUSION AND/OR LIMITATION OF IMPLIED\ + \ WARRANTIES OR CONDITIONS, OR ALLOW LIMITATIONS ON HOW LONG AN IMPLIED WARRANTY LASTS,\ + \ SO THE ABOVE LIMITATIONS OR EXCLUSIONS MAY NOT APPLY TO CUSTOMER. IN SUCH EVENT, NEXB’S\ + \ WARRANTIES AND CONDITIONS WITH RESPECT TO THE SERVICE WILL BE LIMITED TO THE GREATEST\ + \ EXTENT PERMITTED BY APPLICABLE LAW IN SUCH JURISDICTION.\n\n8.\tINDEMNIFICATION\n\n(a)\t\ + nexB will defend and indemnify Customer for all reasonable costs arising from a claim that\ + \ Service furnished and used within the scope of this Agreement infringes a U.S. copyright\ + \ or U.S. patent provided that: (i) Customer notifies nexB in writing within 30 days after\ + \ Customer learns or should have learned of the claim; (ii) nexB has sole control of the\ + \ defense and all related settlement negotiations; and (iii) Customer provides nexB with\ + \ the assistance, information, and authority necessary to perform the above.\n\n(b)\tIn\ + \ the event the Service is held or believed by nexB to infringe, or Customer's use of the\ + \ Service is enjoined, nexB will have the option, at its expense, to: (i) modify the Service\ + \ to cause it to become non-infringing; (ii) obtain a license for Customer to continue using\ + \ the Service; or (iii) if none of the foregoing remedies are commercially feasible, terminate\ + \ this Agreement and refund any Subscription Fees paid for the Service, prorated over the\ + \ term from the effective date of the Agreement.\n\nThis Section 8 states nexB's entire\ + \ liability for infringement.\n\n9.\tLIMITATION OF LIABILITY\n\n(a)\tIn no event will nexB\ + \ or its resellers be liable to Customer or any third party for any incidental or consequential\ + \ damages (including, without limitation, indirect, special, punitive, or exemplary damages\ + \ for loss of business, loss of profits, business interruption, or loss of business information)\ + \ arising out of or related to the use of or inability to use the Software or Content, or\ + \ for any claim by any other party, even if nexB has been advised of the possibility of\ + \ such damages.\n\n(b)\tnexB's aggregate liability with respect to its obligations under\ + \ this Agreement or otherwise with respect to the Service or otherwise shall not exceed\ + \ the Subscription Fees received by nexB from Customer during the 12 month period immediately\ + \ preceding the event that gave rise to the claim. Because some states and/or countries\ + \ do not allow the exclusion or limitation of liability for consequential or incidental\ + \ damages, the above limitation may not apply.\n\n10.\tNO LEGAL ADVICE\nCustomer’s use of\ + \ the Service is not intended to create, and does not constitute, an attorney-client relationship\ + \ between Customer and any person or entity connected with nexB. The Service should not\ + \ be used as a substitute for competent legal advice from a lawyer whom Customer has retained.\ + \ Neither the Service, the Content, the Documentation nor any communications between nexB\ + \ and Customer or any User is intended to provide, and in no event shall it be treated as\ + \ providing or constituting legal advice.\n\n11.\tEXPORT RESTRICTIONS\nnexB makes no representation\ + \ that the Service is appropriate or available for use outside of the United States of America.\ + \ The Service is further subject to United States export controls. Software, Content or\ + \ Documentation from the Service may not be used, disclosed or transported (i) into (or\ + \ to a national or resident of) Cuba, Iran, Iraq, Libya, North Korea, Sudan, Syria, or any\ + \ other country to which the United States has embargoed goods; or (ii) to anyone on the\ + \ U.S. Treasury Department's List of Specially Designated Nationals or the U.S. Commerce\ + \ Department's Table of Deny Orders. By using the Service, Customer represents and warrants\ + \ that it is not located in, under the control of, or a national or resident of any such\ + \ country or on any such list.\n\n12.\tU.S. GOVERNMENT RESTRICTED RIGHTS\nThe Service has\ + \ been developed entirely at private expense and is provided as \"Commercial Computer Software\"\ + \ or \"restricted computer software\". Use, duplication, or disclosure by the United States\ + \ Government is subject to restrictions as set forth in subparagraph (c) (1) (ii) of the\ + \ Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs\ + \ (c) (1) and (2) of the Commercial Computer Software-Restricted Rights clause at 48 CFR\ + \ 52.227-19, and successor thereof, as applicable.\n\n13.\tTERMINATION\n\n(a)\tIf Customer\ + \ fails to comply with the terms and conditions of this Agreement, this Agreement and Customer's\ + \ right and license to use the Service will terminate immediately. Customer may terminate\ + \ this Agreement at any time by notifying nexB in writing. Upon the termination of this\ + \ Agreement, Customer must cease using the Service.\n\n(b)\tIf Customer uses the Service\ + \ during an Evaluation Period, nexB may terminate this Agreement for convenience and for\ + \ any or no reason and may, at its sole discretion, require Customer to discontinue Customer\ + \ access to the Service at any time.\n\n(c)\tIn addition to any other termination rights\ + \ provided in this Agreement, either party may terminate this Agreement immediately upon\ + \ written notice if the other party materially breaches any provision of this Agreement\ + \ and fails to cure such breach within 30 days after delivery of a written notice describing\ + \ the breach.\n\n14.\tMARKETING\nCustomer agrees to be identified as a customer of nexB\ + \ and that nexB may refer to Customer by name, trade name and trademark, if applicable,\ + \ and may briefly describe Customer's business in nexB's marketing materials, on nexB's\ + \ web site, and in public or legal documents. Customer can deny nexB this right at any time\ + \ by submitting a written request via email to marketing@nexb.com, requesting to be excluded\ + \ from Software marketing material.\n\n15.\tTAXES\nSubscription Fees are exclusive of sales,\ + \ use, value-added or other similar taxes. Customer shall pay or reimburse nexB for such\ + \ taxes on or related to the Service whether assessed at the time of Your purchase or thereafter\ + \ determined to have been due, unless an exemption certificate or a direct payment permit\ + \ is provided to nexB for each taxing jurisdiction for which You claim exemption.\n\n16.\t\ + GENERAL\n\n(a)\tCustomer agrees that all agreements, notices, disclosures, and other communications\ + \ that nexB provides to Customer electronically satisfy any legal requirement that such\ + \ communications be in writing, to the extent permitted by applicable law.\n\n(b)\tCustomer\ + \ shall not assign this Agreement or transfer any of its rights hereunder, or delegate the\ + \ performance of any of its duties or obligations arising under this Agreement, whether\ + \ by merger, acquisition, sale of assets, operation of law, or otherwise, without the prior\ + \ written consent of nexB. Subject to the foregoing, this Agreement shall be binding upon,\ + \ and inure to the benefit of, the successors and assigns of the parties thereto. Except\ + \ as otherwise specified in this Agreement, this Agreement may be amended or supplemented\ + \ only by a writing that refers explicitly to this Agreement and that is signed on behalf\ + \ of both parties. No waiver will be implied from conduct or failure to enforce rights.\n\ + \n(c)\tThis Agreement will be governed by the laws of the State of California without regard\ + \ to conflicts of law provisions thereof. The parties expressly disclaim the application\ + \ of the United Nations Convention on Contracts for the International Sale of Goods and\ + \ the Uniform Computer Information Transactions Act. Each party irrevocably consents to\ + \ the exclusive jurisdiction of and venue in the US federal or state courts seated in the\ + \ Counties of San Francisco, San Mateo or Santa Clara, California, USA.\n\n(d)\tAny terms\ + \ of this Agreement that by their nature extend beyond the termination of this Agreement\ + \ shall remain in effect until fulfilled, and such terms shall apply to the respective successors\ + \ and assigns of either party. Terms that survive include, but are not limited to, the\ + \ provisions of Sections 4 (Ownership), 5 (Confidentiality), 7 (Limited Warranty), 9 (Limitation\ + \ of Liability) and 16 (General).\n\n(e)\tIf any term of this Agreement is found invalid\ + \ or unenforceable, that term will be enforced to the maximum extent permitted by law and\ + \ the remainder of this Agreement will remain in full force.\n\n(f)\tThe parties are independent\ + \ contractors and nothing contained herein shall be construed as creating an agency, partnership,\ + \ or other form of joint enterprise between the parties.\n\n(g)\tThis Agreement, including\ + \ the third-party software license agreements and any Order Forms that incorporate this\ + \ Agreement, represents the entire agreement between the parties relating to Customer's\ + \ use of the Service and supersedes any and all prior or contemporaneous oral or written\ + \ representations, communications, or advertising with respect to the Service.\n\n17.\t\ + CHANGES TO THIS AGREEMENT \n\nWe may update or modify this Agreement from time to time,\ + \ including any referenced policies or other documents. If a revision meaningfully reduces\ + \ your rights, we will use reasonable efforts to notify You (by, for example, sending an\ + \ email to the billing or technical contact you designate in the applicable Order, posting\ + \ on our blog, through your nexB account, or in the Product itself). If we modify the Agreement\ + \ during Your Subscription Period, the modified version will be effective upon Your next\ + \ renewal of a Subscription Period.. In this case, if You object to the updated Agreement,\ + \ as Your exclusive remedy, you may choose not to renew, including cancelling any terms\ + \ set to auto-renew. You may be required to click through the updated Agreement to show\ + \ Your acceptance. For the avoidance of doubt, any Order Form is subject to the version\ + \ of the Agreement in effect at the time the Order Form is accepted.\n\nRevision: 1.1.0\ + \ October 2017" json: nexb-eula-saas-1.1.0.json - yml: nexb-eula-saas-1.1.0.yml + yaml: nexb-eula-saas-1.1.0.yml html: nexb-eula-saas-1.1.0.html - text: nexb-eula-saas-1.1.0.LICENSE + license: nexb-eula-saas-1.1.0.LICENSE - license_key: nexb-ssla-1.1.0 + category: Commercial spdx_license_key: LicenseRef-scancode-nexb-ssla-1.1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "nexB Software Subscription License Agreement\n\nThis Software Subscription License\ + \ Agreement (the \"Agreement) is entered into by and between nexB Inc., a California corporation,\ + \ having its principal place of business at 735 Industrial Road Suite 101, San Carlos, CA\ + \ 94070 and ___________________, a ______________ corporation, having its principal place\ + \ of business at _________________________________________________ (\"Licensee\"). This\ + \ Agreement is effective as of _________________ (\"Effective Date\").\n \n\n1.\tDEFINITIONS\n\ + \ \n(a) \"Agreement\" means this Software Subscription License Agreement.\n\n(b) \"Software\ + \ Subscription License\" means a license to use the Software subject to the duration of\ + \ a Subscription or Evaluation Period.\n\n(c) \"Software\" means the DejaCode software program(s)\ + \ and third-party software programs supplied by nexB, and updates to any such Software which\ + \ Licensee is entitled to receive from nexB for the purposes of this Agreement.\n\n(d) \ + \ \"Content\" means any information or data supplied by nexB to Licensee to be used in or\ + \ with the Software, including but not limited to, information and data about software licenses\ + \ and software components.\n\n(e) \"Documentation\" means any documentation supplied by\ + \ nexB including associated media, printed materials, and online or electronic documentation.\n\ + \n(f) \"Updates\" means the provision by nexB to Licensee of Software updates and/or enhancements\ + \ made generally available to customers from time to time.\n\n(g) \"Support\" means online\ + \ technical support (and where applicable, phone or other support) for the sole purpose\ + \ of addressing technical issues relating to the use of the Software.\n\n(h) \"Order Form\"\ + \ means a signed sales order or quote form under which Licensee may order a Software Evaluation\ + \ or Subscription License from nexB in the form of Exhibit A.\n\n(i) \"User\" means each\ + \ employee, agent, representative or other person working directly or indirectly for or\ + \ on behalf of Licensee organization who has access to and may potentially use the Software.\n\ + \n(j) \"Subscription Fees\" means the fees to be paid by Licensee to nexB in connection\ + \ with licensing the Software for the duration of any Subscription Period as specified by\ + \ an Order Form.\n\n(k) \"Subscription Period\" means the amount of calendar time that\ + \ the Licensee is authorized to use the Software as specified by an Order Form.\n\n(l) \ + \ \"Evaluation Period\" means the amount of calendar time that the Licensee is authorized\ + \ to use the Software for evaluation purposes only. The Evaluation Period is 30 days unless\ + \ otherwise agreed between the parties.\n\n(m) \"Open Source Software\" means any software\ + \ that is subject to an Open Source License.\n\n(n) \"Open Source License\" means any license\ + \ that allows software to be freely used, modified, and shared. An Open Source License may\ + \ require a licensee to acknowledge the author of the software and also to redistribute\ + \ source code for the software or derivative works of the software. Open Source Licenses\ + \ include, but are not limited to, the GNU GPL, GNU LGPL, MPL, Apache, BSD and MIT licenses.\n\ + \n2.\tLICENSE GRANT\n\n(a)\tSubject to the terms and conditions of this Agreement, nexB\ + \ grants to Licensee a non-exclusive, non-transferable license during the Subscription or\ + \ Evaluation Period to install and use the Software on the number of computers and for the\ + \ number of Users specified in the Order Form.\n\n(b)\tSubject to the terms and conditions\ + \ of this Agreement, nexB grants to Licensee a non-exclusive, non-transferable license during\ + \ the Subscription or Evaluation Period to install and use the Content on the number of\ + \ computers and for the number of Users specified in the Order Form.\n\n(c)\tThis is not\ + \ a perpetual license. Licensee has no right to retain or to use the Software or Content\ + \ after termination of the applicable Subscription or Evaluation Period for any reason.\ + \ Licensee may not permit access to or use of the Software by any Users other than the Users\ + \ licensed and paid for by Licensee.\n\n(d)\tLicensee may make a reasonable number of copies\ + \ of the Software exclusively for back-up, non-production testing, disaster recovery, failover\ + \ or archival purposes. Licensee may not publish, display, disclose, rent, lease, modify,\ + \ loan, distribute, transfer, assign or sublicense the Software or create derivative works\ + \ based on the Software or any part thereof. Licensee may not reverse engineer, decompile,\ + \ translate, adapt, or disassemble the Software, nor shall the Licensee attempt to create\ + \ the source code from the object code for the Software.\n\n3.\tUPDATES\nnexB, at its sole\ + \ discretion, may provide updates in connection with the Software. Updates may be provided\ + \ by email, downloads or otherwise as nexB deems appropriate. Updates will be provided without\ + \ charge during the Subscription Period.\n\n4.\tOWNERSHIP\n\n(a)\tThe Software is the property\ + \ of nexB or its suppliers. The Software is licensed, not sold. Title and copyrights to\ + \ the Software, in whole and in part and all copies thereof, and all modifications, enhancements,\ + \ derivatives and other alterations of the Software regardless of who made any modifications,\ + \ if any, are, and will remain, the sole and exclusive property of nexB and its suppliers.\n\ + Licensee has a limited license to use the Software (i) for as long as this Agreement remains\ + \ in full force and effect and subject to any applicable Subscription (or Evaluation) Period,\ + \ (ii) provided that any other agreement concerning Licensee’s use of the Software remains\ + \ in full force and effect and (iii) for so long as Licensee has timely made payment of\ + \ any Subscription Fees due nexB. Any other use of the Software by any person, business,\ + \ corporation, government organization or any other entity is strictly forbidden and a violation\ + \ of this Agreement.\n\n(b)\tThe Software is protected by United States Copyright Law and\ + \ International Treaty provisions. Further, the structure, organization, and code embodied\ + \ in the Software are the valuable and confidential trade secrets of nexB and its suppliers\ + \ and are protected by intellectual property laws and treaties. All rights not expressly\ + \ granted to Licensee herein are expressly reserved by nexB. Licensee may not remove any\ + \ proprietary notices from any copy of the Software or Documentation. Licensee agrees to\ + \ abide by the copyright law and all other applicable laws of the United States including,\ + \ but not limited to, export control laws.\n\n(c)\tLicensee acknowledges that any symbols,\ + \ trademarks, tradenames, and service marks adopted by nexB to identify the Software belong\ + \ to nexB and that Licensee shall have no rights therein.\n\n5.\tCONFIDENTIALITY\nLicensee\ + \ acknowledges that the Software contains proprietary trade secrets of nexB and hereby agrees\ + \ to maintain the confidentiality of the Software using at least the same degree of care\ + \ as used to maintain the confidentiality of their own most confidential information. Licensee\ + \ agrees to reasonably communicate the terms and conditions of this Agreement to those persons\ + \ employed by Licensee or otherwise within their organization who come into contact with\ + \ the Software, and to use reasonable best efforts to ensure their compliance with such\ + \ terms and conditions, including, without limitation, not knowingly permitting such persons\ + \ to use any portion of the Software for the purpose of deriving the source code of the\ + \ Software.\n\n6.\tTHIRD-PARTY SOFTWARE\n\n(a)\tThe Licensee acknowledges that the Software\ + \ may contain third-party software, including Open Source Software, which is licensed to\ + \ Licensee in accordance with the separate license agreements included with the Software,\ + \ and subject to any obligations or restrictions set forth herein. Licensee agrees to abide\ + \ by the terms and conditions of the third-party software license agreements. nexB will\ + \ have no responsibility with respect to any third-party software, and Licensee will look\ + \ solely to the licensor(s) of the third-party software for any remedy. nexB claims no right\ + \ in the third-party software.\n\n(b)\tnexB will notify Licensee in writing whether there\ + \ is any Open Source Software embedded in the Software. For any such Open Source Software,\ + \ nexB warrants that it has complied with any Open Source License terms and conditions and\ + \ provided Licensee with the license terms, source code or other information necessary for\ + \ Licensee's compliance with such license terms and conditions. nexB warrants that it will\ + \ provide an updated disclosure of Open Source Software in the documentation for each new\ + \ release of the Software. Licensee may also request a separate disclosure of the Open Source\ + \ Software used in the current version of the Software.\n\n7.\tLIMITED WARRANTY\n\n(a)\t\ + If Licensee has paid a license fee for the Software, nexB warrants to Licensee during the\ + \ Subscription Period that the Software when used for its intended purpose will achieve\ + \ in all material respects the functionality described in the Documentation. nexB does not\ + \ warrant that the Software will be error-free. This warranty is only for the benefit of\ + \ the Licensee.\n\n(b)\tLicensee’s sole and exclusive remedy for nexB’s breach of this warranty\ + \ shall be that nexB shall be required to use commercially reasonable efforts to modify\ + \ the Software to achieve in all material respects the functionality described in the Documentation\ + \ and if nexB is unable to restore such functionality, then Licensee shall be entitled to\ + \ terminate the Agreement and shall be entitled to receive a pro-rata refund of the license\ + \ fees paid for under the Agreement for its use of the Software but which use has not yet\ + \ been furnished by nexB as of the date of such termination. nexB shall have no obligation\ + \ with respect to a warranty claim unless notified of such claim within thirty (30) days\ + \ after Licensee first learns or should have learned of any material functionality problem.\n\ + \n(c)\tIn the event of a failure of the Software to achieve the functionality described\ + \ in the Documentation, Licensee will notify nexB of the problem using nexB's online tracking\ + \ system with sufficient details as reasonably requested by nexB in order to allow nexB\ + \ to attempt to reproduce the problem. nexB shall use its best efforts to provide a correction\ + \ or workaround to the Licensee within the time period specified for the problem severity\ + \ in Exhibit B.\n\n(d)\tnexB reserves the right, in our sole discretion, to change, update,\ + \ and enhance the Software at any time including to add functionality or features to, or\ + \ remove them from, the Software, If nexB removes functionality or features that Licensee\ + \ deems essential for its use of the Software, then Licensee shall be entitled to terminate\ + \ the Agreement and shall be entitled to receive a pro-rata refund of the Subscription Fees\ + \ paid for under the Agreement for its use of the Software, but which use has not yet been\ + \ furnished by nexB as of the date of such termination.\n\n(e)\tEXCEPT AS EXPRESSLY SET\ + \ FORTH IN THIS SECTION 7, THE SOFTWARE IS PROVIDED TO LICENSEE ON AN \"AS IS\" BASIS, WITH\ + \ ANY AND ALL FAULTS, AND WITHOUT ANY WARRANTY OF ANY KIND; AND nexB EXPRESSLY DISCLAIMS\ + \ ALL REPRESENTATIONS, WARRANTIES AND CONDITIONS WHETHER EXPRESS, IMPLIED, STATUTORY, OR\ + \ OTHERWISE, INCLUDING WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE, SATISFACTORY QUALITY, AND NON-INFRINGEMENT OF THIRD-PARTY RIGHTS.\ + \ nexB DOES NOT WARRANT THAT THE SOFTWARE OR SERVICES WILL MEET LICENSEE’S OR ITS END USERS’\ + \ REQUIREMENTS, OR THAT THE OPERATION OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE,\ + \ OR THAT DEFECTS IN THE SOFTWARE OR SERVICES WILL BE CORRECTED. LICENSEE EXPRESSLY ACKNOWLEDGES\ + \ AND AGREES THAT THE USE OF THE SOFTWARE AND SERVICES AND ALL RESULTS OF SUCH USE IS SOLELY\ + \ AT LICENSEE’S AND ITS END USERS’ OWN RISK. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN\ + \ BY nexB OR ITS AUTHORIZED REPRESENTATIVES SHALL CREATE A WARRANTY OR IN ANY WAY INCREASE\ + \ THE SCOPE OF ANY WARRANTY. SOME JURISDICTIONS MAY NOT ALLOW THE EXCLUSION AND/OR LIMITATION\ + \ OF IMPLIED WARRANTIES OR CONDITIONS, OR ALLOW LIMITATIONS ON HOW LONG AN IMPLIED WARRANTY\ + \ LASTS, SO THE ABOVE LIMITATIONS OR EXCLUSIONS MAY NOT APPLY TO LICENSEE. IN SUCH EVENT,\ + \ nexB’S WARRANTIES AND CONDITIONS WITH RESPECT TO THE SOFTWARE AND SERVICES WILL BE LIMITED\ + \ TO THE GREATEST EXTENT PERMITTED BY APPLICABLE LAW IN SUCH JURISDICTION.\n\n8.\tINDEMNIFICATION\n\ + \n(a)\tnexB will defend and indemnify Licensee for all reasonable costs arising from a claim\ + \ that Software furnished and used within the scope of this Agreement infringes a U.S. copyright\ + \ or U.S. patent provided that:\n(i) Licensee notifies nexB in writing within 30 days after\ + \ Licensee learns or should have learned of the claim\n(ii) nexB has sole control of the\ + \ defense and all related settlement negotiations, and\n(iii) Licensee provides nexB with\ + \ the assistance, information, and authority necessary to perform the above.\n\n(b)\tnexB\ + \ will have no liability for any claim of infringement based on:\n(i) code contained within\ + \ the Software which was not created by nexB including, but not limited to, the third-party\ + \ software or Open Source Software;\n(ii) use of a superseded or altered release of the\ + \ Software, except for such alteration(s) or modification(s) which have been made by nexB\ + \ or under nexB's direction, if such infringement would have been avoided by the use of\ + \ a current, unaltered release of the Software that nexB provides to Licensee, or\n(iii)\ + \ the combination, operation, or use of any Software furnished under this Agreement with\ + \ programs or data not furnished by nexB if such infringement would have been avoided by\ + \ the use of the Software without such programs or data.\n\n(c)\tIn the event the Software\ + \ is held or believed by nexB to infringe, or Licensee's use of the Software is enjoined,\ + \ nexB will have the option, at its expense, to:\n(i) modify the Software to cause it to\ + \ become non-infringing;\n(ii) obtain a license for Licensee to continue using the Software;\n\ + (iii) substitute the Software with other Software reasonably suitable to Licensee, or\n\ + (iv) if none of the foregoing remedies are commercially feasible, terminate the license\ + \ for the infringing Software and refund any Subscription Fees paid for the Software, prorated\ + \ over the term from the effective date of the Agreement.\n\nThis Section states nexB's\ + \ entire liability for infringement.\n\n9.\tLIMITATION OF LIABILITY\n\n(a)\tIn no event\ + \ will nexB be liable to Licensee or any third party for any incidental or consequential\ + \ damages (including, without limitation, indirect, special, punitive, or exemplary damages\ + \ for loss of business, loss of profits, business interruption, or loss of business information)\ + \ arising out of the use of or inability to use the Software, or for any claim by any other\ + \ party, even if nexB has been advised of the possibility of such damages.\n\n(b)\tnexB's\ + \ aggregate liability with respect to its obligations under this Agreement or otherwise\ + \ with respect to the Software, Content and Documentation or otherwise shall not exceed\ + \ the Subscription Fees received by nexB from Licensee during the 12 month period immediately\ + \ preceding the event that gave rise to the claim. Because some states and/or countries\ + \ do not allow the exclusion or limitation of liability for consequential or incidental\ + \ damages, the above limitation may not apply.\n\n10.\tNO LEGAL ADVICE\nLicensee’s use of\ + \ the Software, Content and Documentation is not intended to create, and does not constitute,\ + \ an attorney-client relationship between Licensee and any person or entity connected with\ + \ nexB. The Software, Content and Documentation should not be used as a substitute for\ + \ competent legal advice from a lawyer whom Licensee has retained. Neither the Software,\ + \ the Documentation nor any communications between nexB and Licensee or any User is intended\ + \ to provide, and in no event shall it be treated as providing, legal advice.\n\n11.\tEXPORT\ + \ RESTRICTIONS\nnexB makes no representation that the Software, Content or Documentation\ + \ is appropriate or available for use outside of the United States of America. Software,\ + \ Content and Documentation are further subject to United States export controls. No Software,\ + \ Content or Documentation may be downloaded or otherwise exported or re-exported (1) into\ + \ (or to a national or resident of) Cuba, Iran, Iraq, Libya, North Korea, Sudan, Syria,\ + \ or any other country to which the United States has embargoed goods; or (2) to anyone\ + \ on the U.S. Treasury Department's List of Specially Designated Nationals or the U.S. Commerce\ + \ Department's Table of Deny Orders. By downloading or using the Software, Content or Documentation,\ + \ Licensee represents and warrants that they are not located in, under the control of, or\ + \ a national or resident of any such country or on any such list.\n\n12.\tU.S GOVERNMENT\ + \ RESTRICTED RIGHTS\nThe Software has been developed entirely at private expense and is\ + \ provided as \"Commercial Computer Software\" or \"restricted computer software\". Use,\ + \ duplication, or disclosure by the United States Government is subject to restrictions\ + \ as set forth in subparagraph (c) (1) (ii) of the Rights in Technical Data and Computer\ + \ Software clause at DFARS 252.227-7013 or subparagraphs (c) (1) and (2) of the Commercial\ + \ Computer Software-Restricted Rights clause at 48 CFR 52.227-19, and successor thereof,\ + \ as applicable.\n\n13.\tTERMINATION\n\n(a)\tIf Licensee fails to comply with the terms\ + \ and conditions of this Agreement, this Agreement and Licensee's right and license to use\ + \ the Software will terminate immediately. Licensee may terminate this Agreement at any\ + \ time by notifying nexB. Upon the termination of this Agreement, Licensee must cease using\ + \ the Software and delete the Software from its computers and archives.\n\n(b)\tDuring an\ + \ Evaluation Period, nexB may terminate this License Agreement for convenience and for any\ + \ or no reason and may, at its sole discretion, require Licensee to return the Software\ + \ to nexB or discontinue Licensee access to the Software at any time.\n\n(c)\tIn addition\ + \ to any other termination rights provided in this Agreement, either party may terminate\ + \ this Agreement immediately upon written notice if the other party materially breaches\ + \ any provision of this Agreement and fails to cure such breach within 30 days after delivery\ + \ of a written notice describing the breach.\n\n14.\tMARKETING\nLicensee agrees to be identified\ + \ as a customer of nexB and that nexB may refer to Licensee by name, trade name and trademark,\ + \ if applicable, and may briefly describe Licensee's business in nexB's marketing materials,\ + \ on nexB's web site, in public or legal documents. Licensee can deny nexB this right at\ + \ any time by submitting a written request via email to sales@nexb.com, requesting to be\ + \ excluded from Software marketing material.\n\n15.\tPAYMENT\nSubscription Fees are exclusive\ + \ of sales and use taxes. Licensee shall pay or reimburse nexB for such taxes on or related\ + \ to the Software unless an exemption certificate or a direct payment permit is provided\ + \ to nexB. Unless otherwise agreed upon by the parties in writing, all undisputed invoices\ + \ will be paid thirty (30) days from the Effective Date of the Agreement.\n\n16.\tGENERAL\n\ + \n(a)\tLicensee agrees that all agreements, notices, disclosures, and other communications\ + \ that nexB provides to Licensee electronically satisfy any legal requirement that such\ + \ communications be in writing, to the extent permitted by applicable law.\n\n(b)\tLicensee\ + \ shall not assign this Agreement or transfer any of its rights hereunder, or delegate the\ + \ performance of any of its duties or obligations arising under this Agreement, whether\ + \ by merger, acquisition, sale of assets, operation of law, or otherwise, without the prior\ + \ written consent of nexB. Subject to the foregoing, this Agreement shall be binding upon,\ + \ and inure to the benefit of, the successors and assigns of the parties thereto. Except\ + \ as otherwise specified in this Agreement, this Agreement may be amended or supplemented\ + \ only by a writing that refers explicitly to this Agreement and that is signed on behalf\ + \ of both parties. No waiver will be implied from conduct or failure to enforce rights.\n\ + \n(c)\tThis Agreement will be governed by the laws of the State of California without regard\ + \ to conflicts of law provisions thereof. The parties expressly disclaim the application\ + \ of the United Nations Convention on Contracts for the International Sale of Goods and\ + \ the Uniform Computer Information Transactions Act. Each party irrevocably consents to\ + \ the exclusive jurisdiction of and venue in the federal or state courts seated in the Counties\ + \ of San Francisco, San Mateo or Santa Clara, California.\n\n(d)\tAny terms of this Agreement\ + \ that by their nature extend beyond the termination of this Agreement shall remain in effect\ + \ until fulfilled, and such terms shall apply to the respective successors and assigns of\ + \ either party. Terms that survive include, but are not limited to, the provisions of Sections\ + \ 4 (Ownership), 5 (Confidentiality), 7 (Limited Warranty), 9 (Limitation of Liability)\ + \ and 16 (General).\n\n(e)\tIf any term of this Agreement is found invalid or unenforceable\ + \ that term will be enforced to the maximum extent permitted by law and the remainder of\ + \ this Agreement will remain in full force.\n\n(f)\tThe parties are independent contractors\ + \ and nothing contained herein shall be construed as creating an agency, partnership, or\ + \ other form of joint enterprise between the parties. \n\n(g)\tThis Agreement, including\ + \ the third-party software license agreements and any Order Forms that incorporate this\ + \ Agreement, represents the entire agreement between the parties relating to Licensee's\ + \ use of the Software, Content and Documentation and supersedes any and all prior or contemporaneous\ + \ oral or written representations, communications, or advertising with respect to the Software,\ + \ Content and Documentation whether written or oral, except to the extent nexB makes any\ + \ software or services available to Licensee under separate written terms. \n\nIN WITNESS\ + \ WHEREOF, each of the parties hereto has caused this Agreement to be executed on its behalf\ + \ by its duly authorized representative.\n\nnexB\t\t \ + \ Licensee -\ + \ \n\nBy:\t\t \ + \ By:\t\n\nName:\t\t \ + \ \ + \ Name:\t\n\nTitle:\t\t \ + \ Title:\t\n\nRevision 1.1.0 October 2017" json: nexb-ssla-1.1.0.json - yml: nexb-ssla-1.1.0.yml + yaml: nexb-ssla-1.1.0.yml html: nexb-ssla-1.1.0.html - text: nexb-ssla-1.1.0.LICENSE + license: nexb-ssla-1.1.0.LICENSE - license_key: ngpl + category: Copyleft Limited spdx_license_key: NGPL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Nethack General Public License + Copyright (c) 1989 M. Stephenson + (Based on the BISON general public license, copyright 1988 Richard M. Stallman) + Everyone is permitted to copy and distribute verbatim copies of this license, but changing it is not allowed. You can also use this wording to make the terms for other programs. + + The license agreements of most software companies keep you at the mercy of those companies. By contrast, our general public license is intended to give everyone the right to share NetHack. To make sure that you get the rights we want you to have, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. Hence this license agreement. + + Specifically, we want to make sure that you have the right to give away copies of NetHack, that you receive source code or else can get it if you want it, that you can change NetHack or use pieces of it in new free programs, and that you know you can do these things. + + To make sure that everyone has such rights, we have to forbid you to deprive anyone else of these rights. For example, if you distribute copies of NetHack, 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 tell them their rights. + + Also, for our own protection, we must make certain that everyone finds out that there is no warranty for NetHack. If NetHack is modified by someone else and passed on, we want its recipients to know that what they have is not what we distributed. + + Therefore we (Mike Stephenson and other holders of NetHack copyrights) make the following terms which say what you must do to be allowed to distribute or change NetHack. + COPYING POLICIES + + 1. You may copy and distribute verbatim copies of NetHack source code as you receive it, in any medium, provided that you keep intact the notices on all files that refer to copyrights, to this License Agreement, and to the absence of any warranty; and give any other recipients of the NetHack program a copy of this License Agreement along with the program. + 2. You may modify your copy or copies of NetHack or any portion of it, and copy and distribute such modifications under the terms of Paragraph 1 above (including distributing this License Agreement), provided that you also do the following: + + a) cause the modified files to carry prominent notices stating that you changed the files and the date of any change; and + + b) cause the whole of any work that you distribute or publish, that in whole or in part contains or is a derivative of NetHack or any part thereof, to be licensed at no charge to all third parties on terms identical to those contained in this License Agreement (except that you may choose to grant more extensive warranty protection to some or all third parties, at your option) + + c) You may charge a distribution fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + 3. You may copy and distribute NetHack (or a portion or derivative of it, under Paragraph 2) in object code or executable form under the terms of Paragraphs 1 and 2 above provided that you also do one of the following: + + a) accompany it with the complete machine-readable source code, which must be distributed under the terms of Paragraphs 1 and 2 above; or, + + b) accompany it with full information as to how to obtain the complete machine-readable source code from an appropriate archive site. (This alternative is allowed only for noncommercial distribution.) + + For these purposes, complete source code means either the full source distribution as originally released over Usenet or updated copies of the files in this distribution used to create the object code or executable. + 4. You may not copy, sublicense, distribute or transfer NetHack except as expressly provided under this License Agreement. Any attempt otherwise to copy, sublicense, distribute or transfer NetHack is void and your rights to use the program under this License agreement shall be automatically terminated. However, parties who have received computer software programs from you with this License Agreement will not have their licenses terminated so long as such parties remain in full compliance. + + Stated plainly: You are permitted to modify NetHack, or otherwise use parts of NetHack, provided that you comply with the conditions specified above; in particular, your modified NetHack or program containing parts of NetHack must remain freely available as provided in this License Agreement. In other words, go ahead and share NetHack, but don't try to stop anyone else from sharing it farther. json: ngpl.json - yml: ngpl.yml + yaml: ngpl.yml html: ngpl.html - text: ngpl.LICENSE + license: ngpl.LICENSE - license_key: nice + category: Permissive spdx_license_key: LicenseRef-scancode-nice other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and/or distribute this software for any purpose with or + without fee is hereby granted. + + This software and this license are NOT allowed to be used by any person who writes + programming source code but: + + - Does not write documentation of their source code's public Application Programming + Interface (API). + - Negligently writes documentation of their source code's public API in order to bypass + this restriction. + + 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. json: nice.json - yml: nice.yml + yaml: nice.yml html: nice.html - text: nice.LICENSE + license: nice.LICENSE - license_key: nicta-exception + category: Copyleft spdx_license_key: LicenseRef-scancode-nicta-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: | + No right, title or interest in or to any trade mark, service mark, logo + or trade name of National ICT Australia Limited, ABN 62 102 206 173 + (“NICTA”) or its licensors is granted. Modified versions of the Program + must be plainly marked as such, and must not be distributed using + “eChronos” as a trade mark or product name, or misrepresented as being + the original Program. json: nicta-exception.json - yml: nicta-exception.yml + yaml: nicta-exception.yml html: nicta-exception.html - text: nicta-exception.LICENSE + license: nicta-exception.LICENSE - license_key: nicta-psl - spdx_license_key: LicenseRef-scancode-nicta-psl - other_spdx_license_keys: [] - is_exception: no - is_deprecated: no category: Permissive + spdx_license_key: NICTA-1.0 + other_spdx_license_keys: + - LicenseRef-scancode-nicta-psl + is_exception: no + is_deprecated: no + text: "NICTA Public Software Licence\nVersion 1.0\n\nCopyright © 2004 National ICT Australia\ + \ Ltd\n\nAll rights reserved.\n\nBy this licence, National ICT Australia Ltd (NICTA) grants\ + \ permission,\nfree of charge, to any person who obtains a copy of this software\nand any\ + \ associated documentation files (\"the Software\") to use and\ndeal with the Software in\ + \ source code and binary forms without\nrestriction, with or without modification, and to\ + \ permit persons\nto whom the Software is furnished to do so, provided that the\nfollowing\ + \ conditions are met:\n\n- Redistributions of source code must retain the above copyright\n\ + \ notice, this list of conditions and the following disclaimers.\n- Redistributions in\ + \ binary form must reproduce the above copyright\n notice, this list of conditions and\ + \ the following disclaimers in\n the documentation and/or other materials provided with\ + \ the\n distribution.\n- The name of NICTA may not be used to endorse or promote products\n\ + \ derived from this Software without specific prior written permission.\n\nEXCEPT AS EXPRESSLY\ + \ STATED IN THIS LICENCE AND TO THE FULL EXTENT\nPERMITTED BY APPLICABLE LAW, THE SOFTWARE\ + \ IS PROVIDED \"AS-IS\" AND\nNICTA MAKES NO REPRESENTATIONS, WARRANTIES OR CONDITIONS OF\ + \ ANY\nKIND, EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY\nREPRESENTATIONS, WARRANTIES\ + \ OR CONDITIONS REGARDING THE CONTENTS\nOR ACCURACY OF THE SOFTWARE, OR OF TITLE, MERCHANTABILITY,\ + \ FITNESS\nFOR A PARTICULAR PURPOSE, NONINFRINGEMENT, THE ABSENCE OF LATENT\nOR OTHER DEFECTS,\ + \ OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR\nNOT DISCOVERABLE.\n\nTO THE FULL EXTENT\ + \ PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL\nNICTA BE LIABLE ON ANY LEGAL THEORY (INCLUDING,\ + \ WITHOUT LIMITATION,\nNEGLIGENCE) FOR ANY LOSS OR DAMAGE WHATSOEVER, INCLUDING (WITHOUT\n\ + LIMITATION) LOSS OF PRODUCTION OR OPERATION TIME, LOSS, DAMAGE OR\nCORRUPTION OF DATA OR\ + \ RECORDS; OR LOSS OF ANTICIPATED SAVINGS,\nOPPORTUNITY, REVENUE, PROFIT OR GOODWILL, OR\ + \ OTHER ECONOMIC LOSS;\nOR ANY SPECIAL, INCIDENTAL, INDIRECT, CONSEQUENTIAL, PUNITIVE OR\n\ + EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH THIS LICENCE,\nTHE SOFTWARE OR THE\ + \ USE OF THE SOFTWARE, EVEN IF NICTA HAS BEEN\nADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\ + \nIf applicable legislation implies warranties or conditions, or\nimposes obligations or\ + \ liability on NICTA in respect of the Software\nthat cannot be wholly or partly excluded,\ + \ restricted or modified,\nNICTA's liability is limited, to the full extent permitted by\ + \ the\napplicable legislation, at its option, to:\n\na. in the case of goods, any one or\ + \ more of the following:\n i. the replacement of the goods or the supply of equivalent\ + \ goods;\n ii. the repair of the goods;\n iii. the payment of the cost of replacing the\ + \ goods or of acquiring\n equivalent goods;\n iv. the payment of the cost of having\ + \ the goods repaired; or\nb. in the case of services:\n i. the supplying of the services\ + \ again; or \n ii. the payment of the cost of having the services supplied\n again." json: nicta-psl.json - yml: nicta-psl.yml + yaml: nicta-psl.yml html: nicta-psl.html - text: nicta-psl.LICENSE + license: nicta-psl.LICENSE - license_key: niels-ferguson + category: Permissive spdx_license_key: LicenseRef-scancode-niels-ferguson other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Copyright (c) 2002 by Niels Ferguson. + + The author hereby grants a perpetual license to everybody to use this + code for any purpose as long as the copyright message is included in the + source code of this or any derived work. + + Yes, this means that you, your company, your club, and anyone else can + use this code anywhere you want. You can change it and distribute it + under the GPL, include it in your commercial product without releasing + the source code, put it on the web, etc. The only thing you cannot do is + remove my copyright message, or distribute any source code based on this + implementation that does not include my copyright message. + + I appreciate a mention in the documentation or credits, but I understand + if that is difficult to do. I also appreciate it if you tell me where + and why you used my code. + + DISCLAIMER: As I'm giving away my work for free, I'm of course not going + to accept any liability of any form. This code, or the Twofish cipher, + might very well be flawed; you have been warned. This software is + provided as-is, without any kind of warrenty or guarantee. And that is + really all you can expect when you download code for free from the + Internet. json: niels-ferguson.json - yml: niels-ferguson.yml + yaml: niels-ferguson.yml html: niels-ferguson.html - text: niels-ferguson.LICENSE + license: niels-ferguson.LICENSE - license_key: nilsson-historical + category: Permissive spdx_license_key: LicenseRef-scancode-nilsson-historical other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software is + freely granted, provided that the above copyright notice, this notice + and the following disclaimer are preserved with no changes. + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. json: nilsson-historical.json - yml: nilsson-historical.yml + yaml: nilsson-historical.yml html: nilsson-historical.html - text: nilsson-historical.LICENSE + license: nilsson-historical.LICENSE - license_key: nist-pd + category: Public Domain spdx_license_key: NIST-PD other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + Conditions Of Use + + This software was developed by employees of the National Institute of + Standards and Technology (NIST), an agency of the Federal Government. + Pursuant to title 15 Untied States Code Section 105, works of NIST + employees are not subject to copyright protection in the United States + and are considered to be in the public domain. As a result, a formal + license is not needed to use the software. + + This software is provided by NIST as a service and is expressly + provided "AS IS." NIST MAKES NO WARRANTY OF ANY KIND, EXPRESS, IMPLIED + OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTY OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT + AND DATA ACCURACY. NIST does not warrant or make any representations + regarding the use of the software or the results thereof, including but + not limited to the correctness, accuracy, reliability or usefulness of + the software. + + Permission to use this software is contingent upon your acceptance + of the terms of this agreement json: nist-pd.json - yml: nist-pd.yml + yaml: nist-pd.yml html: nist-pd.html - text: nist-pd.LICENSE + license: nist-pd.LICENSE - license_key: nist-pd-fallback + category: Permissive spdx_license_key: NIST-PD-fallback other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This software was developed by employees of the National Institute of Standards\nand\ + \ Technology (NIST), an agency of the Federal Government and is being made\navailable as\ + \ a public service. Pursuant to title 17 United States Code Section\n105, works of NIST\ + \ employees are not subject to copyright protection in the\nUnited States. This software\ + \ may be subject to foreign copyright. Permission\nin the United States and in foreign\ + \ countries, to the extent that NIST may hold\ncopyright, to use, copy, modify, create derivative\ + \ works, and distribute this\nsoftware and its documentation without fee is hereby granted\ + \ on a non-exclusive\nbasis, provided that this notice and disclaimer of warranty appears\ + \ in all\ncopies.\n\nTHE SOFTWARE IS PROVIDED 'AS IS' WITHOUT ANY WARRANTY OF ANY KIND,\ + \ EITHER\nEXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY\n\ + THAT THE SOFTWARE WILL CONFORM TO SPECIFICATIONS, ANY IMPLIED WARRANTIES OF\nMERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR PURPOSE, AND FREEDOM FROM\nINFRINGEMENT, AND ANY WARRANTY THAT\ + \ THE DOCUMENTATION WILL CONFORM TO THE\nSOFTWARE, OR ANY WARRANTY THAT THE SOFTWARE WILL\ + \ BE ERROR FREE. IN NO EVENT\nSHALL NIST BE LIABLE FOR ANY DAMAGES, INCLUDING, BUT NOT\ + \ LIMITED TO, DIRECT,\nINDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES, ARISING OUT OF, RESULTING\ + \ FROM, OR \nN ANY WAY CONNECTED WITH THIS SOFTWARE, WHETHER OR NOT BASED UPON WARRANTY,\n\ + CONTRACT, TORT, OR OTHERWISE, WHETHER OR NOT INJURY WAS SUSTAINED BY PERSONS OR\nPROPERTY\ + \ OR OTHERWISE, AND WHETHER OR NOT LOSS WAS SUSTAINED FROM, OR AROSE OUT\nOF THE RESULTS\ + \ OF, OR USE OF, THE SOFTWARE OR SERVICES PROVIDED HEREUNDER." json: nist-pd-fallback.json - yml: nist-pd-fallback.yml + yaml: nist-pd-fallback.yml html: nist-pd-fallback.html - text: nist-pd-fallback.LICENSE + license: nist-pd-fallback.LICENSE - license_key: nist-srd + category: Permissive spdx_license_key: LicenseRef-scancode-nist-srd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: Copyright protection on this compilation of data has been secured by the Secretary of + the U.S. Department of Commerce on behalf of the United States in the United States and + all countries that are parties to the Universal Copyright Convention, pursuant to Section + 290(e) of Title 15 of the United States Code. json: nist-srd.json - yml: nist-srd.yml + yaml: nist-srd.yml html: nist-srd.html - text: nist-srd.LICENSE + license: nist-srd.LICENSE - license_key: nlod-1.0 + category: Permissive spdx_license_key: NLOD-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Norwegian Licence for Open Government Data (NLOD)\nPreface of licence\n\nThis licence\ + \ grants you the right to copy, use and distribute information, provided you acknowledge\ + \ the contributors and comply with the terms and conditions stipulated in this licence.\ + \ By using information made available under this licence, you accept the terms and conditions\ + \ set forth in this licence. As set out in Section 7, the licensor disclaims any and all\ + \ liability for the quality of the information and what the information is used for.\n\n\ + This licence shall not impose any limitations on the rights or freedoms of the licensee\ + \ under the Norwegian Freedom of Information Act or any other legislation granting the general\ + \ public a right of access to public sector information, or that follow from exemptions\ + \ or limitations stipulated in the Norwegian Copyright Act. Further, the licence shall not\ + \ impose any limitations on the licensee's freedom of expression recognized by law.\n\n\ + 1. Definitions\n\n«Database» shall mean a database or similar protected under Section 43\ + \ of the Norwegian Copyright Act. \n«Information» shall mean texts, images, recordings,\ + \ data sets or other works protected under Section 1 of the Norwegian Copyright Act, or\ + \ which are protected under provisions addressing what is referred to as «neighbouring rights»\ + \ in Chapter 5 of the Norwegian Copyright Act (including databases and photographs), and\ + \ which are distributed under this licence. \n«Copy» shall mean reproduction in any form.\ + \ \n«Licensee» and «you» shall mean natural or legal persons using information under this\ + \ licence. \n«Licensor» shall mean the natural or legal person that makes information available\ + \ under this licence. \n«Distribute» shall mean any actions whereby information is made\ + \ available, including to distribute, transfer, communicate, disperse, show, perform, sell,\ + \ lend and rent. \n«Use» shall mean one or more actions relevant to copyright law requiring\ + \ permission from the owner of the copyright.\n\n2. Licence \nThe licensee, subject to the\ + \ limitations that follow from this licence, may use the information for any purpose and\ + \ in all contexts, by:\n\n* copying the information and distributing the information to\ + \ others, \n* modifying the information and/or combining the information with other information,\ + \ and \n* copying and distributing such changed or combined information. \n* This is a non-exclusive,\ + \ free, perpetual and worldwide licence. The information may be used in any medium and format\ + \ known today and/or which will become known in the future. The Licensee shall not sub-license\ + \ or transfer this licence.\n\n3. Exemptions \nThe licence does not apply to and therefore\ + \ does not grant a right to use:\n\n* information which contains personal data covered by\ + \ the Norwegian Personal Data Act unless there is a legitimate basis for the disclosure\ + \ and further processing of the personal data \n* information distributed in violation of\ + \ a statutory obligation to observe confidentiality \n* information excluded from public\ + \ disclosure pursuant to law, including information deemed sensitive under the Norwegian\ + \ National Security Act \n* information subject to third party rights which the licensor\ + \ is not authorised to license to the licensee \n* information protected by intellectual\ + \ property rights other than copyright and neighbouring rights in accordance with Chapter\ + \ 5 of the Norwegian Copyright Act, such as trademarks, patents and design rights, but this\ + \ does not entail an impediment to use information where the licensor's logo has been permanently\ + \ integrated into the information or to attribute the origin of the information in accordance\ + \ with the article below relating to attribution.\n\nIf the licensor has made available\ + \ information not covered by the licence according to the above list, the licensee must\ + \ cease all use of the information under the licence, and erase the information as soon\ + \ as he or she becomes aware of or should have understood that the information is not covered\ + \ by the licence.\n\n4. Effects of breach of the licence \nThe licence is subject to the\ + \ licensee's compliance with the terms and conditions of this licence. In the event that\ + \ the licensee commits a breach of this licence, this will entail that the licensee's right\ + \ to use the information will be revoked immediately without further notice. In case of\ + \ such a breach, the licensee must immediately and without further notice take measures\ + \ to cause the infringement to end. Because the right to use the information has been terminated,\ + \ the licensee must cease all use of the information by virtue of the licence.\n\n5. Attribution\ + \ \nThe licensee shall attribute the licensor as specified by the licensor and include a\ + \ reference to this licence. To the extent practically possible, the licensee shall provide\ + \ a link to both this licence and the source of the information.\n\nIf the licensor has\ + \ not specified how attributions shall be made, the licensee shall normally state the following:\ + \ «Contains data under the Norwegian licence for Open Government data (NLOD) distributed\ + \ by [name of licensor]».\n\nIf the licensor has specified that the information shall only\ + \ be available under a specific version of this licence, cf. Section 10, the licensee shall\ + \ also state this.\n\nIf the information has been changed, the licensee must clearly indicate\ + \ that changes have been made by the licensee.\n\n6. Proper use \nThe licensee shall not\ + \ use the information in a manner that appears misleading nor present the information in\ + \ a distorted or incorrect manner. \nNeither the licensor's nor other contributors' names\ + \ or trademarks must be used to support, recommend or market the licensee or any products\ + \ or services using the information.\n\n7. Disclaimer of liability \nThe information is\ + \ licensed «as is». The information may contain errors and omissions. The licensor provides\ + \ no warranties, including relating to the content and relevance of the information.\n\n\ + The licensor disclaims any liability for errors and defects associated with the information\ + \ to the maximum extent permitted by law.\n\nThe licensor shall not be liable for direct\ + \ or indirect losses as a result of use of the information or in connection with copying\ + \ or further distribution of the information.\n\n8. Guarantees regarding data quality and\ + \ accessibility \nThis licence does not prevent the licensor from issuing supplementary\ + \ statements regarding expected or intended data quality and accessibility. Such statements\ + \ shall be regarded as indicative in nature and not binding on the part of the licensor.\ + \ The disclaimers in Section 7 also apply in full for such indicative statements. Based\ + \ on separate agreement, the licensor may provide guarantees and distribute the information\ + \ on terms and conditions different from those set forth in this licence.\n\n9. Licence\ + \ compatibility \nIf the licensee is to distribute an adapted or combined work based on\ + \ information covered by this licence and some other work licensed under a licence compatible\ + \ by contract, such distribution may be based on an appropriate licence compatible by contract,\ + \ cf. the list below.\n\nA licence compatible by contract shall mean the following licences:\n\ + \n* for all information: Open Government Licence (version 1.0), \n* for those parts of the\ + \ information which do not constitute databases: Creative Commons Attribution Licence (generic\ + \ version 1.0, 2.0, 2.5 and unported version 3.0) and Creative Commons Navngivelse 3.0 Norge,\ + \ \n* for those parts of the information which constitute databases: Open Data Commons Attribution\ + \ License (version 1.0).\n\nThis provision does not prevent other licences from being compatible\ + \ with this licence based on their content.\n\n10. New versions of the licence \nThe licensee\ + \ may choose to use the information covered by this licence under any new versions of the\ + \ Norwegian licence for Open Government data (NLOD) issued by the responsible ministry (currently\ + \ the Ministry of Government Administration, Reform and Church Affairs) when these versions\ + \ are final and official, unless the licensor when making the information available under\ + \ this licence specifically has stated that solely version 1.0 of this licence may be used.\n\ + \n11. Governing law and legal venue \nThis licence, including its formation, and any disputes\ + \ and claims arising in connection with or relating to this licence, shall be regulated\ + \ by Norwegian law. The legal venue shall be the licensor's ordinary legal venue. The licensor\ + \ may, with regard to intellectual proprietary rights, choose to pursue a claim at other\ + \ competent legal venues and/or based on the laws of the country where the intellectual\ + \ property rights are sought enforced." json: nlod-1.0.json - yml: nlod-1.0.yml + yaml: nlod-1.0.yml html: nlod-1.0.html - text: nlod-1.0.LICENSE + license: nlod-1.0.LICENSE - license_key: nlod-2.0 + category: Permissive spdx_license_key: NLOD-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Norwegian Licence for Open Government Data (NLOD) 2.0\n\nPreface of licence\n\nThis\ + \ licence grants you the right to copy, use and distribute information, provided you acknowledge\ + \ the contributors and comply with the terms and conditions stipulated in this licence.\ + \ By using information made available under this licence, you accept the terms and conditions\ + \ set forth in this licence. As set out in Section 7, the licensor disclaims any and all\ + \ liability for the quality of the information and what the information is used for.\n\n\ + This licence shall not impose any limitations on the rights or freedoms of the licensee\ + \ under the Norwegian Freedom of Information Act or any other legislation granting the general\ + \ public a right of access to public sector information, or that follow from exemptions\ + \ or limitations stipulated in the Norwegian Copyright Act. Further, the licence shall not\ + \ impose any limitations on the licensee’s freedom of expression recognized by law.\n\n\ + 1. Definitions\n\n «Database» shall mean a database or similar protected under Section\ + \ 43 of the Norwegian Copyright Act.\n «Information» shall mean texts, images, recordings,\ + \ data sets or other works protected under Section 1 of the Norwegian Copyright Act, or\ + \ which are protected under provisions addressing what is referred to as «neighbouring rights»\ + \ in Chapter 5 of the Norwegian Copyright Act (including databases and photographs), and\ + \ which are distributed under this licence.\n «Copy» shall mean reproduction in any\ + \ form.\n «Licensee» and «you» shall mean natural or legal persons using information\ + \ under this licence.\n «Licensor» shall mean the natural or legal person that makes\ + \ information available under this licence.\n «Distribute» shall mean any actions whereby\ + \ information is made available, including to distribute, transfer, communicate, disperse,\ + \ show, perform, sell, lend and rent.\n «Use» shall mean one or more actions relevant\ + \ to copyright law requiring permission from the owner of the copyright.\n\n2. Licence\n\ + The licensee, subject to the limitations that follow from this licence, may use the information\ + \ for any purpose and in all contexts, by:\n\n * copying the information and distributing\ + \ the information to others,\n * modifying the information and/or combining the information\ + \ with other information, and\n * copying and distributing such changed or combined\ + \ information.\n\nThis is a non-exclusive, free, perpetual and worldwide licence. The information\ + \ may be used in any medium and format known today and/or which will become known in the\ + \ future. The Licensee shall not sub-license or transfer this licence.\n\n3. Exemptions\n\ + The licence does not apply to and therefore does not grant a right to use:\n\n * information\ + \ which contains personal data covered by the Norwegian Personal Data Act unless there is\ + \ a legitimate basis for the disclosure and further processing of the personal data\n \ + \ * information distributed in violation of a statutory obligation to observe confidentiality\n\ + \ * information excluded from public disclosure pursuant to law, including information\ + \ deemed sensitive under the Norwegian National Security Act\n * information subject\ + \ to third party rights which the licensor is not authorised to license to the licensee\n\ + \ * information protected by intellectual property rights other than copyright and neighbouring\ + \ rights in accordance with Chapter 5 of the Norwegian Copyright Act, such as trademarks,\ + \ patents and design rights, but this does not entail an impediment to use information where\ + \ the licensor’s logo has been permanently integrated into the information or to attribute\ + \ the origin of the information in accordance with the article below relating to attribution.\n\ + \nIf the licensor has made available information not covered by the licence according to\ + \ the above list, the licensee must cease all use of the information under the licence,\ + \ and erase the information as soon as he or she becomes aware of or should have understood\ + \ that the information is not covered by the licence.\n\n4. Effects of breach of the licence\n\ + The licence is subject to the licensee’s compliance with the terms and conditions of this\ + \ licence. In the event that the licensee commits a breach of this licence, this will entail\ + \ that the licensee’s right to use the information will be revoked immediately without further\ + \ notice. In case of such a breach, the licensee must immediately and without further notice\ + \ take measures to cause the infringement to end. Because the right to use the information\ + \ has been terminated, the licensee must cease all use of the information by virtue of the\ + \ licence.\n\n5. Attribution\nThe licensee shall attribute the licensor as specified by\ + \ the licensor and include a reference to this licence. To the extent practically possible,\ + \ the licensee shall provide a link to both this licence and the source of the information.\n\ + \nIf the licensor has not specified how attributions shall be made, the licensee shall normally\ + \ state the following: «Contains data under the Norwegian licence for Open Government data\ + \ (NLOD) distributed by [name of licensor]».\n\nIf the licensor has specified that the information\ + \ shall only be available under a specific version of this licence, cf. Section 10, the\ + \ licensee shall also state this.\n\nIf the information has been changed, the licensee must\ + \ clearly indicate that changes have been made by the licensee.\n\n6. Proper use\nThe licensee\ + \ shall not use the information in a manner that appears misleading nor present the information\ + \ in a distorted or incorrect manner.\nNeither the licensor’s nor other contributors' names\ + \ or trademarks must be used to support, recommend or market the licensee or any products\ + \ or services using the information.\n\n7. Disclaimer of liability\nThe information is licensed\ + \ «as is». The information may contain errors and omissions. The licensor provides no warranties,\ + \ including relating to the content and relevance of the information.\n\nThe licensor disclaims\ + \ any liability for errors and defects associated with the information to the maximum extent\ + \ permitted by law.\n\nThe licensor shall not be liable for direct or indirect losses as\ + \ a result of use of the information or in connection with copying or further distribution\ + \ of the information.\n\n8. Guarantees regarding data quality and accessibility\nThis licence\ + \ does not prevent the licensor from issuing supplementary statements regarding expected\ + \ or intended data quality and accessibility. Such statements shall be regarded as indicative\ + \ in nature and not binding on the part of the licensor. The disclaimers in Section 7 also\ + \ apply in full for such indicative statements. Based on separate agreement, the licensor\ + \ may provide guarantees and distribute the information on terms and conditions different\ + \ from those set forth in this licence.\n\n9. Licence compatibility\nIf the licensee is\ + \ to distribute an adapted or combined work based on information covered by this licence\ + \ and some other work licensed under a licence compatible by contract, such distribution\ + \ may be based on an appropriate licence compatible by contract, cf. the list below.\n\n\ + A licence compatible by contract shall mean the following licences:\n\n * for all information:\ + \ Open Government Licence (version 1.0, 2.0 and 3.0), Creative Commons Attribution Licence\ + \ (international version 4.0 and norwegian version 4.0),\n * for those parts of the\ + \ information which do not constitute databases: Creative Commons Attribution Licence (generic\ + \ version 1.0, 2.0, 2.5 and unported version 3.0) and Creative Commons Navngivelse 3.0 Norge,\n\ + \ * for those parts of the information which constitute databases: Open Data Commons\ + \ Attribution License (version 1.0).\n \nThis provision does not prevent other licences\ + \ from being compatible with this licence based on their content.\n\n10. New versions of\ + \ the licence\nThe licensee may choose to use the information covered by this licence under\ + \ any new versions of the Norwegian licence for Open Government data (NLOD) issued by the\ + \ responsible ministry (currently the Ministry of Local Government and Modernisation) when\ + \ these versions are final and official, unless the licensor when making the information\ + \ available under this licence specifically has stated that solely version 2.0 of this licence\ + \ may be used.\n\n11. Governing law and legal venue\nThis licence, including its formation,\ + \ and any disputes and claims arising in connection with or relating to this licence, shall\ + \ be regulated by Norwegian law. The legal venue shall be the licensor’s ordinary legal\ + \ venue. The licensor may, with regard to intellectual proprietary rights, choose to pursue\ + \ a claim at other competent legal venues and/or based on the laws of the country where\ + \ the intellectual property rights are sought enforced." json: nlod-2.0.json - yml: nlod-2.0.yml + yaml: nlod-2.0.yml html: nlod-2.0.html - text: nlod-2.0.LICENSE + license: nlod-2.0.LICENSE - license_key: nlpl + category: Public Domain spdx_license_key: NLPL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + NO LIMIT PUBLIC LICENSE + Version 0, June 2012 + + Gilles LAMIRAL + La Billais + 35580 Baulon + France + + NO LIMIT PUBLIC LICENSE + Terms and conditions for copying, distribution, modification + or anything else. + + 0. No limit to do anything with this work and this license. json: nlpl.json - yml: nlpl.yml + yaml: nlpl.yml html: nlpl.html - text: nlpl.LICENSE + license: nlpl.LICENSE - license_key: no-license + category: Unstated License spdx_license_key: LicenseRef-scancode-no-license other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Unstated License + text: json: no-license.json - yml: no-license.yml + yaml: no-license.yml html: no-license.html - text: no-license.LICENSE + license: no-license.LICENSE - license_key: node-js + category: Permissive spdx_license_key: LicenseRef-scancode-node-js other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Node's license follows: + + ==== + + Copyright Joyent, Inc. and other Node contributors. All rights reserved. + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. + + ==== + + This license applies to all parts of Node that are not externally + maintained libraries. The externally maintained libraries used by Node are: + + - V8, located at deps/v8. V8's license follows: + """ + This license applies to all parts of V8 that are not externally + maintained libraries. The externally maintained libraries used by V8 + are: + + - PCRE test suite, located in + test/mjsunit/third_party/regexp-pcre.js. This is based on the + test suite from PCRE-7.3, which is copyrighted by the University + of Cambridge and Google, Inc. The copyright notice and license + are embedded in regexp-pcre.js. + + - Layout tests, located in test/mjsunit/third_party. These are + based on layout tests from webkit.org which are copyrighted by + Apple Computer, Inc. and released under a 3-clause BSD license. + + - Strongtalk assembler, the basis of the files assembler-arm-inl.h, + assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h, + assembler-ia32.cc, assembler-ia32.h, assembler-x64-inl.h, + assembler-x64.cc, assembler-x64.h, assembler-mips-inl.h, + assembler-mips.cc, assembler-mips.h, assembler.cc and assembler.h. + This code is copyrighted by Sun Microsystems Inc. and released + under a 3-clause BSD license. + + - Valgrind client API header, located at third_party/valgrind/valgrind.h + This is release under the BSD license. + + These libraries have their own licenses; we recommend you read them, + as their terms may differ from the terms below. + + Copyright 2006-2012, the V8 project authors. All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + """ + + - C-Ares, an asynchronous DNS client, located at deps/cares. C-Ares license + follows: + """ + /* Copyright 1998 by the Massachusetts Institute of Technology. + * + * 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 M.I.T. not be used in + * advertising or publicity pertaining to distribution of the + * software without specific, written prior permission. + * M.I.T. makes no representations about the suitability of + * this software for any purpose. It is provided "as is" + * without express or implied warranty. + """ + + - OpenSSL located at deps/openssl. OpenSSL is cryptographic software written + by Eric Young (eay@cryptsoft.com) to provide SSL/TLS encryption. OpenSSL's + license follows: + """ + /* ==================================================================== + * 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). + * + */ + """ + + - HTTP Parser, located at deps/http_parser. HTTP Parser's license follows: + """ + http_parser.c is based on src/http/ngx_http_parse.c from NGINX copyright + Igor Sysoev. + + Additional changes are licensed under the same terms as NGINX and + copyright Joyent, Inc. and other Node contributors. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. + """ + + - Closure Linter is located at tools/closure_linter. Closure's license + follows: + """ + # Copyright (c) 2007, Google Inc. + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions are + # met: + # + # * Redistributions of source code must retain the above copyright + # notice, this list of conditions and the following disclaimer. + # * Redistributions in binary form must reproduce the above + # copyright notice, this list of conditions and the following disclaimer + # in the documentation and/or other materials provided with the + # distribution. + # * Neither the name of Google Inc. nor the names of its + # contributors may be used to endorse or promote products derived from + # this software without specific prior written permission. + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + """ + + - tools/cpplint.py is a C++ linter. Its license follows: + """ + # Copyright (c) 2009 Google Inc. All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions are + # met: + # + # * Redistributions of source code must retain the above copyright + # notice, this list of conditions and the following disclaimer. + # * Redistributions in binary form must reproduce the above + # copyright notice, this list of conditions and the following disclaimer + # in the documentation and/or other materials provided with the + # distribution. + # * Neither the name of Google Inc. nor the 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. + """ + + - lib/punycode.js is copyright 2011 Mathias Bynens + and released under the MIT license. + """ + * Punycode.js + * Copyright 2011 Mathias Bynens + * Available under MIT license + """ + + - tools/gyp. GYP is a meta-build system. GYP's license follows: + """ + Copyright (c) 2009 Google Inc. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following disclaimer + in the documentation and/or other materials provided with the + distribution. + * Neither the name of Google Inc. nor the 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. + """ + + - Zlib at deps/zlib. zlib's license follows: + """ + /* zlib.h -- interface of the 'zlib' general purpose compression library + 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 + */ + """ + + - npm is a package manager program located at deps/npm. + npm's license follows: + """ + Copyright (c) Isaac Z. Schlueter + All rights reserved. + + npm is released under the Artistic 2.0 License. + The text of the License follows: + + + -------- + + + The Artistic License 2.0 + + Copyright (c) 2000-2006, The Perl Foundation. + + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + This license establishes the terms under which a given free software + Package may be copied, modified, distributed, and/or redistributed. + The intent is that the Copyright Holder maintains some artistic + control over the development of that Package while still keeping the + Package available as open source and free software. + + You are always permitted to make arrangements wholly outside of this + license directly with the Copyright Holder of a given Package. If the + terms of this license do not permit the full use that you propose to + make of the Package, you should contact the Copyright Holder and seek + a different licensing arrangement. + + Definitions + + "Copyright Holder" means the individual(s) or organization(s) + named in the copyright notice for the entire Package. + + "Contributor" means any party that has contributed code or other + material to the Package, in accordance with the Copyright Holder's + procedures. + + "You" and "your" means any person who would like to copy, + distribute, or modify the Package. + + "Package" means the collection of files distributed by the + Copyright Holder, and derivatives of that collection and/or of + those files. A given Package may consist of either the Standard + Version, or a Modified Version. + + "Distribute" means providing a copy of the Package or making it + accessible to anyone else, or in the case of a company or + organization, to others outside of your company or organization. + + "Distributor Fee" means any fee that you charge for Distributing + this Package or providing support for this Package to another + party. It does not mean licensing fees. + + "Standard Version" refers to the Package if it has not been + modified, or has been modified only in ways explicitly requested + by the Copyright Holder. + + "Modified Version" means the Package, if it has been changed, and + such changes were not explicitly requested by the Copyright + Holder. + + "Original License" means this Artistic License as Distributed with + the Standard Version of the Package, in its current version or as + it may be modified by The Perl Foundation in the future. + + "Source" form means the source code, documentation source, and + configuration files for the Package. + + "Compiled" form means the compiled bytecode, object code, binary, + or any other form resulting from mechanical transformation or + translation of the Source form. + + + Permission for Use and Modification Without Distribution + + (1) You are permitted to use the Standard Version and create and use + Modified Versions for any purpose without restriction, provided that + you do not Distribute the Modified Version. + + + Permissions for Redistribution of the Standard Version + + (2) You may Distribute verbatim copies of the Source form of the + Standard Version of this Package in any medium without restriction, + either gratis or for a Distributor Fee, provided that you duplicate + all of the original copyright notices and associated disclaimers. At + your discretion, such verbatim copies may or may not include a + Compiled form of the Package. + + (3) You may apply any bug fixes, portability changes, and other + modifications made available from the Copyright Holder. The resulting + Package will still be considered the Standard Version, and as such + will be subject to the Original License. + + + Distribution of Modified Versions of the Package as Source + + (4) You may Distribute your Modified Version as Source (either gratis + or for a Distributor Fee, and with or without a Compiled form of the + Modified Version) provided that you clearly document how it differs + from the Standard Version, including, but not limited to, documenting + any non-standard features, executables, or modules, and provided that + you do at least ONE of the following: + + (a) make the Modified Version available to the Copyright Holder + of the Standard Version, under the Original License, so that the + Copyright Holder may include your modifications in the Standard + Version. + + (b) ensure that installation of your Modified Version does not + prevent the user installing or running the Standard Version. In + addition, the Modified Version must bear a name that is different + from the name of the Standard Version. + + (c) allow anyone who receives a copy of the Modified Version to + make the Source form of the Modified Version available to others + under + + (i) the Original License or + + (ii) a license that permits the licensee to freely copy, + modify and redistribute the Modified Version using the same + licensing terms that apply to the copy that the licensee + received, and requires that the Source form of the Modified + Version, and of any works derived from it, be made freely + available in that license fees are prohibited but Distributor + Fees are allowed. + + + Distribution of Compiled Forms of the Standard Version + or Modified Versions without the Source + + (5) You may Distribute Compiled forms of the Standard Version without + the Source, provided that you include complete instructions on how to + get the Source of the Standard Version. Such instructions must be + valid at the time of your distribution. If these instructions, at any + time while you are carrying out such distribution, become invalid, you + must provide new instructions on demand or cease further distribution. + If you provide valid instructions or cease distribution within thirty + days after you become aware that the instructions are invalid, then + you do not forfeit any of your rights under this license. + + (6) You may Distribute a Modified Version in Compiled form without + the Source, provided that you comply with Section 4 with respect to + the Source of the Modified Version. + + + Aggregating or Linking the Package + + (7) You may aggregate the Package (either the Standard Version or + Modified Version) with other packages and Distribute the resulting + aggregation provided that you do not charge a licensing fee for the + Package. Distributor Fees are permitted, and licensing fees for other + components in the aggregation are permitted. The terms of this license + apply to the use and Distribution of the Standard or Modified Versions + as included in the aggregation. + + (8) You are permitted to link Modified and Standard Versions with + other works, to embed the Package in a larger work of your own, or to + build stand-alone binary or bytecode versions of applications that + include the Package, and Distribute the result without restriction, + provided the result does not expose a direct interface to the Package. + + + Items That are Not Considered Part of a Modified Version + + (9) Works (including, but not limited to, modules and scripts) that + merely extend or make use of the Package, do not, by themselves, cause + the Package to be a Modified Version. In addition, such works are not + considered parts of the Package itself, and are not subject to the + terms of this license. + + + General Provisions + + (10) Any use, modification, and distribution of the Standard or + Modified Versions is governed by this Artistic License. By using, + modifying or distributing the Package, you accept this license. Do not + use, modify, or distribute the Package, if you do not accept this + license. + + (11) If your Modified Version has been derived from a Modified + Version made by someone other than you, you are nevertheless required + to ensure that your Modified Version complies with the requirements of + this license. + + (12) This license does not grant you the right to use any trademark, + service mark, tradename, or logo of the Copyright Holder. + + (13) This license includes the non-exclusive, worldwide, + free-of-charge patent license to make, have made, use, offer to sell, + sell, import and otherwise transfer the Package with respect to any + patent claims licensable by the Copyright Holder that are necessarily + infringed by the Package. If you institute patent litigation + (including a cross-claim or counterclaim) against any party alleging + that the Package constitutes direct or contributory patent + infringement, then this Artistic License to you shall terminate on the + date that such litigation is filed. + + (14) Disclaimer of Warranty: + THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS + IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR + NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL + LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL + BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL + DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + -------- + + + "Node.js" and "node" trademark Joyent, Inc. npm is not officially + part of the Node.js project, and is neither owned by nor + officially affiliated with Joyent, Inc. + + Packages published in the npm registry (other than the Software and + its included dependencies) are not part of npm itself, are the sole + property of their respective maintainers, and are not covered by + this license. + + "npm Logo" created by Mathias Pettersson and Brian Hammond, + used with permission. + + "Gubblebum Blocky" font + Copyright (c) by Tjarda Koster, http://jelloween.deviantart.com + included for use in the npm website and documentation, + used with permission. + + This program uses several Node modules contained in the node_modules/ + subdirectory, according to the terms of their respective licenses. + """ + + - tools/doc/node_modules/marked. Marked is a Markdown parser. Marked's + license follows: + """ + Copyright (c) 2011-2012, Christopher Jeffrey (https://github.com/chjj/) + + 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. + """ + + - test/gc/node_modules/weak. Node-weak is a node.js addon that provides garbage + collector notifications. Node-weak's license follows: + """ + Copyright (c) 2011, Ben Noordhuis + + 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. + """ + + - src/ngx-queue.h. ngx-queue.h is taken from the nginx source tree. nginx's + license follows: + """ + Copyright (C) 2002-2012 Igor Sysoev + Copyright (C) 2011,2012 Nginx, Inc. + + 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 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 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. + """ + + - wrk is located at tools/wrk. wrk's license follows: + """ + + 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 json: node-js.json - yml: node-js.yml + yaml: node-js.yml html: node-js.html - text: node-js.LICENSE + license: node-js.LICENSE - license_key: nokia-qt-exception-1.1 + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: | + Nokia Qt LGPL Exception version 1.1 + + As an additional permission to the GNU Lesser General Public License version + 2.1, the object code form of a "work that uses the Library" may incorporate + material from a header file that is part of the Library. You may distribute + such object code under terms of your choice, provided that: + + (i) the header files of the Library have not been modified; and + (ii) the incorporated material is limited to numerical parameters, data + structure layouts, accessors, macros, inline functions and templates; and + (iii) you comply with the terms of Section 6 of the GNU Lesser + General Public License version 2.1. + + Moreover, you may apply this exception to a modified version of the Library, + provided that such modification does not involve copying material from the + Library into the modified Library's header files unless such material is limited + to + + (i) numerical parameters; + (ii) data structure layouts; + (iii) accessors; and + (iv) small macros, templates and inline functions of five lines or less in length. + + Furthermore, you are not required to apply this additional permission to a + modified version of the Library. json: nokia-qt-exception-1.1.json - yml: nokia-qt-exception-1.1.yml + yaml: nokia-qt-exception-1.1.yml html: nokia-qt-exception-1.1.html - text: nokia-qt-exception-1.1.LICENSE + license: nokia-qt-exception-1.1.LICENSE - license_key: nokos-1.0a + category: Copyleft Limited spdx_license_key: Nokia other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Nokia Open Source License (NOKOS License) Version 1.0a\n\n 1. DEFINITIONS.\n\n\"Affiliates\"\ + \ of a party shall mean an entity\n\na) which is directly or indirectly controlling such\ + \ party;\n\nb) which is under the same direct or indirect ownership or control as such party;\ + \ or\n\nc) which is directly or indirectly owned or controlled by such party.\n\nFor these\ + \ purposes, an entity shall be treated as being controlled by another if that\nother entity\ + \ has fifty percent (50%) or more of the votes in such entity, is able to\ndirect its affairs\ + \ and/or to control the composition of its board of directors or\nequivalent body.\n\n\"\ + Commercial Use\" shall mean distribution or otherwise making the Covered Software\navailable\ + \ to a third party.\n\n''Contributor'' shall mean each entity that creates or contributes\ + \ to the creation of\nModifications.\n\n''Contributor Version'' shall mean in case of any\ + \ Contributor the combination of the\nOriginal Software, prior Modifications used by a Contributor,\ + \ and the Modifications\nmade by that particular Contributor and in case of Nokia in addition\ + \ the Original\nSoftware in any form, including the form as Exceutable.\n\n''Covered Software''\ + \ shall mean the Original Software or Modifications or the\ncombination of the Original\ + \ Software and Modifications, in each case including\nportions thereof.\n\n''Electronic\ + \ Distribution Mechanism'' shall mean a mechanism generally accepted in\nthe software development\ + \ community for the electronic transfer of data.\n\n''Executable'' shall mean Covered Software\ + \ in any form other than Source Code.\n\n''Nokia'' shall mean Nokia Corporation and its\ + \ Affiliates.\n\n''Larger Work'' shall mean a work, which combines Covered Software or portions\n\ + thereof with code not governed by the terms of this License.\n\n''License'' shall mean this\ + \ document.\n\n\"Licensable\" shall mean having the right to grant, to the maximum extent\ + \ possible,\nwhether at the time of the initial grant or subsequently acquired, any and\ + \ all of the\nrights conveyed herein.\n\n''Modifications'' shall mean any addition to or\ + \ deletion from the substance or\nstructure of either the Original Software or any previous\ + \ Modifications. When Covered\nSoftware is released as a series of files, a Modification\ + \ is:\n\na) Any addition to or deletion from the contents of a file containing Original\n\ + Software or previous Modifications.\n\nb) Any new file that contains any part of the Original\ + \ Software or previous\nModifications.\n\n''Original Software'' shall mean the Source Code\ + \ of computer software code which is\ndescribed in the Source Code notice required by Exhibit\ + \ A as Original Software, and\nwhich, at the time of its release under this License is not\ + \ already Covered Software\ngoverned by this License.\n\n\"Patent Claims\" shall mean any\ + \ patent claim(s), now owned or hereafter acquired,\nincluding without limitation, method,\ + \ process, and apparatus claims, in any patent\nLicensable by grantor.\n\n''Source Code''\ + \ shall mean the preferred form of the Covered Software for making\nmodifications to it,\ + \ including all modules it contains, plus any associated interface\ndefinition files, scripts\ + \ used to control compilation and installation of an\nExecutable, or source code differential\ + \ comparisons against either the Original\nSoftware or another well known, available Covered\ + \ Software of the Contributor's\nchoice. The Source Code can be in a compressed or archival\ + \ form, provided the\nappropriate decompression or de-archiving software is widely available\ + \ for no charge.\n\n\"You'' (or \"Your\") shall mean an individual or a legal entity exercising\ + \ rights\nunder, and complying with all of the terms of, this License or a future version\ + \ of\nthis License issued under Section 6.1. For legal entities, \"You'' includes Affiliates\n\ + of such entity.\n\n2. SOURCE CODE LICENSE.\n\n2.1 Nokia Grant.\n\nSubject to the terms of\ + \ this License, Nokia hereby grants You a world-wide, royalty-\nfree, non-exclusive license,\ + \ subject to third party intellectual property claims:\n\na) under copyrights Licensable\ + \ by Nokia to use, reproduce, modify, display, perform,\nsublicense and distribute the Original\ + \ Software (or portions thereof) with or without\nModifications, and/or as part of a Larger\ + \ Work;\n\nb) and under Patents Claims necessarily infringed by the making, using or selling\ + \ of\nOriginal Software, to make, have made, use, practice, sell, and offer for sale,\n\ + and/or otherwise dispose of the Original Software (or portions thereof).\n\nc) The licenses\ + \ granted in this Section 2.1(a) and (b) are effective on the date\nNokia first distributes\ + \ Original Software under the terms of this License.\n\nd) Notwithstanding Section 2.1(b)\ + \ above, no patent license is granted: 1) for code\nthat You delete from the Original Software;\ + \ 2) separate from the Original Software;\nor 3) for infringements caused by: i) the modification\ + \ of the Original Software or\nii) the combination of the Original Software with other software\ + \ or devices.\n\n2.2 Contributor Grant.\n\nSubject to the terms of this License and subject\ + \ to third party intellectual property\nclaims, each Contributor hereby grants You a world-wide,\ + \ royalty-free, non-exclusive\nlicense\n\na) under copyrights Licensable by Contributor,\ + \ to use, reproduce, modify, display,\nperform, sublicense and distribute the Modifications\ + \ created by such Contributor (or\nportions thereof) either on an unmodified basis, with\ + \ other Modifications, as Covered\nSoftware and/or as part of a Larger Work; and\n\nb) under\ + \ Patent Claims necessarily infringed by the making, using, or selling of\nModifications\ + \ made by that Contributor either alone and/or in combination with its\nContributor Version\ + \ (or portions of such combination), to make, use, sell, offer for\nsale, have made, and/or\ + \ otherwise dispose of: 1) Modifications made by that\nContributor (or portions thereof);\ + \ and 2) the combination of Modifications made by\nthat Contributor with its Contributor\ + \ Version (or portions of such combination).\n\nc) The licenses granted in Sections 2.2(a)\ + \ and 2.2(b) are effective on the date\nContributor first makes Commercial Use of the Covered\ + \ Software.\n\nd) Notwithstanding Section 2.2(b) above, no patent license is granted: 1)\ + \ for any\ncode that Contributor has deleted from the Contributor Version; 2) separate from\ + \ the\nContributor Version; 3) for infringements caused by: i) third party modifications\ + \ of\nContributor Version or ii) the combination of Modifications made by that Contributor\n\ + with other software (except as part of the Contributor Version) or other devices; or\n4)\ + \ under Patent Claims infringed by Covered Software in the absence of Modifications\nmade\ + \ by that Contributor.\n\n3. DISTRIBUTION OBLIGATIONS.\n\n3.1 Application of License.\n\n\ + \nThe Modifications which You create or to which You contribute are governed by the\nterms\ + \ of this License, including without limitation Section 2.2. The Source Code\nversion of\ + \ Covered Software may be distributed only under the terms of this License\nor a future\ + \ version of this License released under Section 6.1, and You must include\na copy of this\ + \ License with every copy of the Source Code You distribute. You may not\noffer or impose\ + \ any terms on any Source Code version that alters or restricts the\napplicable version\ + \ of this License or the recipients' rights hereunder. However, You\nmay include an additional\ + \ document offering the additional rights described in\nSection 3.5.\n\n3.2 Availability\ + \ of Source Code.\n\nAny Modification which You create or to which You contribute must be\ + \ made available\nin Source Code form under the terms of this License either on the same\ + \ media as an\nExecutable version or via an accepted Electronic Distribution Mechanism to\ + \ anyone to\nwhom you made an Executable version available; and if made available via Electronic\n\ + Distribution Mechanism, must remain available for at least twelve (12) months after\nthe\ + \ date it initially became available, or at least six (6) months after a subsequent\nversion\ + \ of that particular Modification has been made available to such recipients.\nYou are responsible\ + \ for ensuring that the Source Code version remains available even\nif the Electronic Distribution\ + \ Mechanism is maintained by a third party.\n\n3.3 Description of Modifications.\n\nYou\ + \ must cause all Covered Software to which You contribute to contain a file\ndocumenting\ + \ the changes You made to create that Covered Software and the date of any\nchange. You\ + \ must include a prominent statement that the Modification is derived,\ndirectly or indirectly,\ + \ from Original Software provided by Nokia and including the\nname of Nokia in (a) the Source\ + \ Code, and (b) in any notice in an Executable version\nor related documentation in which\ + \ You describe the origin or ownership of the Covered\nSoftware.\n\n3.4 Intellectual Property\ + \ Matters\n\n(a) Third Party Claims.\n\nIf Contributor has knowledge that a license under\ + \ a third party's intellectual\nproperty rights is required to exercise the rights granted\ + \ by such Contributor under\nSections 2.1 or 2.2, Contributor must include a text file with\ + \ the Source Code\ndistribution titled \"LEGAL'' which describes the claim and the party\ + \ making the claim\nin sufficient detail that a recipient will know whom to contact. If\ + \ Contributor\nobtains such knowledge after the Modification is made available as described\ + \ in\nSection 3.2, Contributor shall promptly modify the LEGAL file in all copies\nContributor\ + \ makes available thereafter and shall take other steps (such as notifying\nappropriate\ + \ mailing lists or newsgroups) reasonably calculated to inform those who\nreceived the Covered\ + \ Software that new knowledge has been obtained.\n\n(b) Contributor APIs.\n\nIf Contributor's\ + \ Modifications include an application programming interface and\nContributor has knowledge\ + \ of patent licenses which are reasonably necessary to\nimplement that API, Contributor\ + \ must also include this information in the LEGAL file.\n\n(c) Representations.\n\nContributor\ + \ represents that, except as disclosed pursuant to Section 3.4(a) above,\nContributor believes\ + \ that Contributor's Modifications are Contributor's original\ncreation(s) and/or Contributor\ + \ has sufficient rights to grant the rights conveyed by\nthis License.\n\n3.5 Required Notices.\n\ + \nYou must duplicate the notice in Exhibit A in each file of the Source Code. If it is\n\ + not possible to put such notice in a particular Source Code file due to its\nstructure,\ + \ then You must include such notice in a location (such as a relevant\ndirectory) where\ + \ a user would be likely to look for such a notice. If You created one\nor more Modification(s)\ + \ You may add your name as a Contributor to the notice\ndescribed in Exhibit A. You must\ + \ also duplicate this License in any documentation for\nthe Source Code where You describe\ + \ recipients' rights or ownership rights relating to\nCovered Software. You may choose to\ + \ offer, and to charge a fee for, warranty,\nsupport, indemnity or liability obligations\ + \ to one or more recipients of Covered\nSoftware. However, You may do so only on Your own\ + \ behalf, and not on behalf of Nokia\nor any Contributor. You must make it absolutely clear\ + \ that any such warranty,\nsupport, indemnity or liability obligation is offered by You\ + \ alone, and You hereby\nagree to indemnify Nokia and every Contributor for any liability\ + \ incurred by Nokia or\nsuch Contributor as a result of warranty, support, indemnity or\ + \ liability terms You\noffer.\n\n3.6 Distribution of Executable Versions.\n\nYou may distribute\ + \ Covered Software in Executable form only if the requirements of\nSection 3.1-3.5 have\ + \ been met for that Covered Software, and if You include a notice\nstating that the Source\ + \ Code version of the Covered Software is available under the\nterms of this License, including\ + \ a description of how and where You have fulfilled\nthe obligations of Section 3.2. The\ + \ notice must be conspicuously included in any\nnotice in an Executable version, related\ + \ documentation or collateral in which You\ndescribe recipients' rights relating to the\ + \ Covered Software. You may distribute the\nExecutable version of Covered Software or ownership\ + \ rights under a license of Your\nchoice, which may contain terms different from this License,\ + \ provided that You are in\ncompliance with the terms of this License and that the license\ + \ for the Executable\nversion does not attempt to limit or alter the recipient's rights\ + \ in the Source Code\nversion from the rights set forth in this License. If You distribute\ + \ the Executable\nversion under a different license You must make it absolutely clear that\ + \ any terms\nwhich differ from this License are offered by You alone, not by Nokia or any\n\ + Contributor. You hereby agree to indemnify Nokia and every Contributor for any\nliability\ + \ incurred by Nokia or such Contributor as a result of any such terms You\noffer.\n\n3.7\ + \ Larger Works.\n\nYou may create a Larger Work by combining Covered Software with other\ + \ software not\ngoverned by the terms of this License and distribute the Larger Work as\ + \ a single\nproduct. In such a case, You must make sure the requirements of this License\ + \ are\nfulfilled for the Covered Software.\n\n4. INABILITY TO COMPLY DUE TO STATUTE OR REGULATION.\n\ + \nIf it is impossible for You to comply with any of the terms of this License with\nrespect\ + \ to some or all of the Covered Software due to statute, judicial order, or\nregulation\ + \ then You must: (a) comply with the terms of this License to the maximum\nextent possible;\ + \ and (b) describe the limitations and the code they affect. Such\ndescription must be included\ + \ in the LEGAL file described in Section 3.4 and must be\nincluded with all distributions\ + \ of the Source Code.\n\nExcept to the extent prohibited by statute or regulation, such\ + \ description must be\nsufficiently detailed for a recipient of ordinary skill to be able\ + \ to understand it.\n\n5. APPLICATION OF THIS LICENSE.\n\nThis License applies to code to\ + \ which Nokia has attached the notice in Exhibit A and\nto related Covered Software.\n\n\ + 6. VERSIONS OF THE LICENSE.\n\n\n6.1 New Versions.\n\nNokia may publish revised and/or new\ + \ versions of the License from time to time. Each\nversion will be given a distinguishing\ + \ version number.\n\n6.2 Effect of New Versions.\n\nOnce Covered Software has been published\ + \ under a particular version of the License,\nYou may always continue to use it under the\ + \ terms of that version. You may also\nchoose to use such Covered Software under the terms\ + \ of any subsequent version of the\nLicense published by Nokia. No one other than Nokia\ + \ has the right to modify the terms\napplicable to Covered Software created under this License.\n\ + \n7. DISCLAIMER OF WARRANTY.\n\nCOVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN \"\ + AS IS'' BASIS, WITHOUT\nWARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT\ + \ LIMITATION,\nWARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT\ + \ FOR A\nPARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND\nPERFORMANCE\ + \ OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE\nDEFECTIVE IN ANY\ + \ RESPECT, YOU (NOT NOKIA, ITS LICENSORS OR AFFILIATES OR ANY OTHER\nCONTRIBUTOR) ASSUME\ + \ THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS\nDISCLAIMER OF WARRANTY\ + \ CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY\nCOVERED SOFTWARE IS AUTHORIZED\ + \ HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n\n8.1 This License and the\ + \ rights granted hereunder will terminate automatically if You\nfail to comply with terms\ + \ herein and fail to cure such breach within 30 days of\nbecoming aware of the breach. All\ + \ sublicenses to the Covered Software which are\nproperly granted shall survive any termination\ + \ of this License. Provisions which, by\ntheir nature, must remain in effect beyond the\ + \ termination of this License shall\nsurvive.\n\n8.2 If You initiate litigation by asserting\ + \ a patent infringement claim (excluding\ndeclatory judgment actions) against Nokia or a\ + \ Contributor (Nokia or Contributor\nagainst whom You file such action is referred to as\ + \ \"Participant\") alleging that:\n\na) such Participant's Contributor Version directly\ + \ or indirectly infringes any\npatent, then any and all rights granted by such Participant\ + \ to You under Sections 2.1\nand/or 2.2 of this License shall, upon 60 days notice from\ + \ Participant terminate\nprospectively, unless if within 60 days after receipt of notice\ + \ You either: (i) agree\nin writing to pay Participant a mutually agreeable reasonable royalty\ + \ for Your past\nand future use of Modifications made by such Participant, or (ii) withdraw\ + \ Your\nlitigation claim with respect to the Contributor Version against such Participant.\ + \ If\nwithin 60 days of notice, a reasonable royalty and payment arrangement are not\nmutually\ + \ agreed upon in writing by the parties or the litigation claim is not\nwithdrawn, the rights\ + \ granted by Participant to You under Sections 2.1 and/or 2.2\nautomatically terminate at\ + \ the expiration of the 60 day notice period specified\nabove.\n\nb) any software, hardware,\ + \ or device, other than such Participant's Contributor\nVersion, directly or indirectly\ + \ infringes any patent, then any rights granted to You\nby such Participant under Sections\ + \ 2.1(b) and 2.2(b) are revoked effective as of the\ndate You first made, used, sold, distributed,\ + \ or had made, Modifications made by that\nParticipant.\n\n8.3 If You assert a patent infringement\ + \ claim against Participant alleging that such\nParticipant's Contributor Version directly\ + \ or indirectly infringes any patent where\nsuch claim is resolved (such as by license or\ + \ settlement) prior to the initiation of\npatent infringement litigation, then the reasonable\ + \ value of the licenses granted by\nsuch Participant under Sections 2.1 or 2.2 shall be\ + \ taken into account in determining\nthe amount or value of any payment or license.\n\n\ + 8.4 In the event of termination under Sections 8.1 or 8.2 above, all end user license\n\ + agreements (excluding distributors and resellers) which have been validly granted by\nYou\ + \ or any distributor hereunder prior to termination shall survive termination.\n\n9. LIMITATION\ + \ OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING\n\ + NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, NOKIA, ANY OTHER CONTRIBUTOR, OR ANY\nDISTRIBUTOR\ + \ OF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO\nANY PERSON\ + \ FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY\nCHARACTER INCLUDING,\ + \ WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE,\nCOMPUTER FAILURE OR\ + \ MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES,\nEVEN IF SUCH PARTY SHALL\ + \ HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS\nLIMITATION OF LIABILITY SHALL\ + \ NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH PARTY'S NEGLIGENCE\ + \ TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH\nLIMITATION. SOME JURISDICTIONS DO NOT ALLOW\ + \ THE EXCLUSION OR LIMITATION OF INCIDENTAL\nOR CONSEQUENTIAL DAMAGES, BUT MAY ALLOW LIABILITY\ + \ TO BE LIMITED; IN SUCH CASES, A\nPARTY's, ITS EMPLOYEES, LICENSORS OR AFFILIATES' LIABILITY\ + \ SHALL BE LIMITED TO U.S.\n$50. Nothing contained in this License shall prejudice the statutory\ + \ rights of any\nparty dealing as a consumer.\n\n10. MISCELLANEOUS.\n\nThis License represents\ + \ the complete agreement concerning subject matter hereof. All\nrights in the Covered Software\ + \ not expressly granted under this License are reserved.\nNothing in this License shall\ + \ grant You any rights to use any of the trademarks of\nNokia or any of its Affiliates,\ + \ even if any of such trademarks are included in any\npart of Covered Software and/or documentation\ + \ to it.\n\nThis License is governed by the laws of Finland excluding its conflict-of-law\n\ + provisions. All disputes arising from or relating to this Agreement shall be settled\nby\ + \ a single arbitrator appointed by the Central Chamber of Commerce of Finland. The\narbitration\ + \ procedure shall take place in Helsinki, Finland in the English language.\nIf any part\ + \ of this Agreement is found void and unenforceable, it will not affect the\nvalidity of\ + \ the balance of the Agreement, which shall remain valid and enforceable\naccording to its\ + \ terms.\n\n11. RESPONSIBILITY FOR CLAIMS.\n\nAs between Nokia and the Contributors, each\ + \ party is responsible for claims and\ndamages arising, directly or indirectly, out of its\ + \ utilization of rights under this\nLicense and You agree to work with Nokia and Contributors\ + \ to distribute such\nresponsibility on an equitable basis. Nothing herein is intended or\ + \ shall be deemed\nto constitute any admission of liability.\n\n \n\nEXHIBIT A\n\nThe contents\ + \ of this file are subject to the NOKOS License Version 1.0 (the\n\"License\"); you may\ + \ not use this file except in compliance with the License.\n\nSoftware distributed under\ + \ the License is distributed on an \"AS IS\" basis, WITHOUT\nWARRANTY OF ANY KIND, either\ + \ express or implied. See the License for the specific\nlanguage governing rights and limitations\ + \ under the License.\n\nThe Original Software is\n .\n\nCopyright © Nokia and others.\ + \ All Rights Reserved." json: nokos-1.0a.json - yml: nokos-1.0a.yml + yaml: nokos-1.0a.yml html: nokos-1.0a.html - text: nokos-1.0a.LICENSE + license: nokos-1.0a.LICENSE - license_key: non-violent-4.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-non-violent-4.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + NON-VIOLENT PUBLIC LICENSE v4 + + Preamble + + The Non-Violent Public license is a freedom-respecting sharealike license + for both the author of a work as well as those subject to a work. It aims + to protect the basic rights of human beings from exploitation and the earth + from plunder. It aims to ensure a copyrighted work is forever available + for public use, modification, and redistribution under the same terms so + long as the work is not used for harm. For more information about the NPL + refer to the official webpage + + Official Webpage: https://thufie.lain.haus/NPL.html + + Terms and Conditions + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS + NON-VIOLENT PUBLIC LICENSE v4 ("LICENSE"). THE WORK IS PROTECTED BY + COPYRIGHT AND ALL OTHER APPLICABLE LAWS. ANY USE OF THE WORK OTHER THAN + AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. BY + EXERCISING ANY RIGHTS TO THE WORK PROVIDED IN THIS LICENSE, YOU AGREE + TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE + MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS + CONTAINED HERE IN AS CONSIDERATION FOR ACCEPTING THE TERMS AND + CONDITIONS OF THIS LICENSE AND FOR AGREEING TO BE BOUND BY THE TERMS + AND CONDITIONS OF THIS LICENSE. + + 1. DEFINITIONS + + a. "Act of War" means any action of one country against any group + either with an intention to provoke a conflict or an action that + occurs during a declared war or during armed conflict between + military forces of any origin. This includes but is not limited + to enforcing sanctions or sieges, supplying armed forces, + or profiting from the manufacture of tools or weaponry used in + military conflict. + + b. "Adaptation" means a work based upon the Work, or upon the + Work and other pre-existing works, such as a translation, + adaptation, derivative work, arrangement of music or other + alterations of a literary or artistic work, or phonogram or + performance and includes cinematographic adaptations or any + other form in which the Work may be recast, transformed, or + adapted including in any form recognizably derived from the + original, except that a work that constitutes a Collection will + not be considered an Adaptation for the purpose of this License. + For the avoidance of doubt, where the Work is a musical work, + performance or phonogram, the synchronization of the Work in + timed-relation with a moving image ("synching") will be + considered an Adaptation for the purpose of this License. + + c. "Bodily Harm" means any physical hurt or injury to a person that + interferes with the health or comfort of the person and that is more + more than merely transient or trifling in nature. + + d. "Collection" means a collection of literary or artistic + works, such as encyclopedias and anthologies, or performances, + phonograms or broadcasts, or other works or subject matter other + than works listed in Section 1(i) below, which, by reason of the + selection and arrangement of their contents, constitute + intellectual creations, in which the Work is included in its + entirety in unmodified form along with one or more other + contributions, each constituting separate and independent works + in themselves, which together are assembled into a collective + whole. A work that constitutes a Collection will not be + considered an Adaptation (as defined above) for the purposes of + this License. + + e. "Distribute" means to make available to the public the + original and copies of the Work or Adaptation, as appropriate, + through sale, gift or any other transfer of possession or + ownership. + + f. "Incarceration" means confinement in a jail, prison, or any + other place where individuals of any kind are held against + either their will or the will of their legal guardians. + + g. "Licensor" means the individual, individuals, entity or + entities that offer(s) the Work under the terms of this License. + + h. "Original Author" means, in the case of a literary or + artistic work, the individual, individuals, entity or entities + who created the Work or if no individual or entity can be + identified, the publisher; and in addition (i) in the case of a + performance the actors, singers, musicians, dancers, and other + persons who act, sing, deliver, declaim, play in, interpret or + otherwise perform literary or artistic works or expressions of + folklore; (ii) in the case of a phonogram the producer being the + person or legal entity who first fixes the sounds of a + performance or other sounds; and, (iii) in the case of + broadcasts, the organization that transmits the broadcast. + + i. "Work" means the literary and/or artistic work offered under + the terms of this License including without limitation any + production in the literary, scientific and artistic domain, + whatever may be the mode or form of its expression including + digital form, such as a book, pamphlet and other writing; a + lecture, address, sermon or other work of the same nature; a + dramatic or dramatico-musical work; a choreographic work or + entertainment in dumb show; a musical composition with or + without words; a cinematographic work to which are assimilated + works expressed by a process analogous to cinematography; a work + of drawing, painting, architecture, sculpture, engraving or + lithography; a photographic work to which are assimilated works + expressed by a process analogous to photography; a work of + applied art; an illustration, map, plan, sketch or + three-dimensional work relative to geography, topography, + architecture or science; a performance; a broadcast; a + phonogram; a compilation of data to the extent it is protected + as a copyrightable work; or a work performed by a variety or + circus performer to the extent it is not otherwise considered a + literary or artistic work. + + j. "You" means an individual or entity exercising rights under + this License who has not previously violated the terms of this + License with respect to the Work, or who has received express + permission from the Licensor to exercise rights under this + License despite a previous violation. + + k. "Publicly Perform" means to perform public recitations of the + Work and to communicate to the public those public recitations, + by any means or process, including by wire or wireless means or + public digital performances; to make available to the public + Works in such a way that members of the public may access these + Works from a place and at a place individually chosen by them; + to perform the Work to the public by any means or process and + the communication to the public of the performances of the Work, + including by public digital performance; to broadcast and + rebroadcast the Work by any means including signs, sounds or + images. + + l. "Reproduce" means to make copies of the Work by any means + including without limitation by sound or visual recordings and + the right of fixation and reproducing fixations of the Work, + including storage of a protected performance or phonogram in + digital form or other electronic medium. + + m. "Software" means any digital Work which, through use of a + third-party piece of Software or through the direct usage of + itself on a computer system, the memory of the computer is + modified dynamically or semi-dynamically. "Software", + secondly, processes or interprets information. + + n. "Source Code" means the human-readable form of Software + through which the Original Author and/or Distributor originally + created, derived, and/or modified it. + + o. "Surveilling" means the use of the Work to either + overtly or covertly observe and record persons and or their + activities. + + p. "Web Service" means the use of a piece of Software to + interpret or modify information that is subsequently and directly + served to users over the Internet. + + q. "Discriminate" means the use of a work to differentiate between + humans in a such a way which prioritizes some above others on the + basis of percieved membership within certain groups. + + r. "Hate Speech" means communication or any form + of expression which is solely for the purpose of expressing hatred + for some group or advocating a form of Discrimination + (to Discriminate per definition in (q)) between humans. + + 2. FAIR DEALING RIGHTS + + Nothing in this License is intended to reduce, limit, or restrict any + uses free from copyright or rights arising from limitations or + exceptions that are provided for in connection with the copyright + protection under copyright law or other applicable laws. + + 3. LICENSE GRANT + + Subject to the terms and conditions of this License, Licensor hereby + grants You a worldwide, royalty-free, non-exclusive, perpetual (for the + duration of the applicable copyright) license to exercise the rights in + the Work as stated below: + + a. to Reproduce the Work, to incorporate the Work into one or + more Collections, and to Reproduce the Work as incorporated in + the Collections; + + b. to create and Reproduce Adaptations provided that any such + Adaptation, including any translation in any medium, takes + reasonable steps to clearly label, demarcate or otherwise + identify that changes were made to the original Work. For + example, a translation could be marked "The original work was + translated from English to Spanish," or a modification could + indicate "The original work has been modified."; + + c. to Distribute and Publicly Perform the Work including as + incorporated in Collections; and, + + d. to Distribute and Publicly Perform Adaptations. The above + rights may be exercised in all media and formats whether now + known or hereafter devised. The above rights include the right + to make such modifications as are technically necessary to + exercise the rights in other media and formats. Subject to + Section 8(g), all rights not expressly granted by Licensor are + hereby reserved. + + 4. RESTRICTIONS + + The license granted in Section 3 above is expressly made subject to and + limited by the following restrictions: + + a. You may Distribute or Publicly Perform the Work only under + the terms of this License. You must include a copy of, or the + Uniform Resource Identifier (URI) for, this License with every + copy of the Work You Distribute or Publicly Perform. You may not + offer or impose any terms on the Work that restrict the terms of + this License or the ability of the recipient of the Work to + exercise the rights granted to that recipient under the terms of + the License. You may not sublicense the Work. You must keep + intact all notices that refer to this License and to the + disclaimer of warranties with every copy of the Work You + Distribute or Publicly Perform. When You Distribute or Publicly + Perform the Work, You may not impose any effective technological + measures on the Work that restrict the ability of a recipient of + the Work from You to exercise the rights granted to that + recipient under the terms of the License. This Section 4(a) + applies to the Work as incorporated in a Collection, but this + does not require the Collection apart from the Work itself to be + made subject to the terms of this License. If You create a + Collection, upon notice from any Licensor You must, to the + extent practicable, remove from the Collection any credit as + required by Section 4(f), as requested. If You create an + Adaptation, upon notice from any Licensor You must, to the + extent practicable, remove from the Adaptation any credit as + required by Section 4(f), as requested. + + b. If the Work meets the definition of Software, You may exercise + the rights granted in Section 3 only if You provide a copy of the + corresponding Source Code from which the Work was derived in digital + form, or You provide a URI for the corresponding Source Code of + the Work, to any recipients upon request. + + c. If the Work is used as or for a Web Service, You may exercise + the rights granted in Section 3 only if You provide a copy of the + corresponding Source Code from which the Work was derived in digital + form, or You provide a URI for the corresponding Source Code to the + Work, to any recipients of the data served or modified by the Web + Service. + + d. You may exercise the rights granted in Section 3 for + any purposes only if: + + i. You do not use the Work for the purpose of inflicting + Bodily Harm on human beings (subject to criminal + prosecution or otherwise) outside of providing medical aid. + ii.You do not use the Work for the purpose of Surveilling + or tracking individuals for financial gain. + iii. You do not use the Work in an Act of War. + iv. You do not use the Work for the purpose of supporting + or profiting from an Act of War. + v. You do not use the Work for the purpose of Incarceration. + vi. You do not use the Work for the purpose of extracting + oil, gas, or coal. + vii. You do not use the Work for the purpose of + expediting, coordinating, or facilitating paid work + undertaken by individuals under the age of 12 years. + viii. You do not use the Work to either Discriminate or + spread Hate Speech on the basis of sex, sexual orientation, + gender identity, race, age, disability, color, national origin, + religion, or lower economic status. + + e. If You Distribute, or Publicly Perform the Work or any + Adaptations or Collections, You must, unless a request has been + made pursuant to Section 4(a), keep intact all copyright notices + for the Work and provide, reasonable to the medium or means You + are utilizing: (i) the name of the Original Author (or + pseudonym, if applicable) if supplied, and/or if the Original + Author and/or Licensor designate another party or parties (e.g., + a sponsor institute, publishing entity, journal) for attribution + ("Attribution Parties") in Licensor!s copyright notice, terms of + service or by other reasonable means, the name of such party or + parties; (ii) the title of the Work if supplied; (iii) to the + extent reasonably practicable, the URI, if any, that Licensor + specifies to be associated with the Work, unless such URI does + not refer to the copyright notice or licensing information for + the Work; and, (iv) consistent with Section 3(b), in the case of + an Adaptation, a credit identifying the use of the Work in the + Adaptation (e.g., "French translation of the Work by Original + Author," or "Screenplay based on original Work by Original + Author"). The credit required by this Section 4(e) may be + implemented in any reasonable manner; provided, however, that in + the case of an Adaptation or Collection, at a minimum such credit + will appear, if a credit for all contributing authors of the + Adaptation or Collection appears, then as part of these credits + and in a manner at least as prominent as the credits for the + other contributing authors. For the avoidance of doubt, You may + only use the credit required by this Section for the purpose of + attribution in the manner set out above and, by exercising Your + rights under this License, You may not implicitly or explicitly + assert or imply any connection with, sponsorship or endorsement + by the Original Author, Licensor and/or Attribution Parties, as + appropriate, of You or Your use of the Work, without the + separate, express prior written permission of the Original + Author, Licensor and/or Attribution Parties. + + f. Except as otherwise agreed in writing by the Licensor or as + may be otherwise permitted by applicable law, if You Reproduce, + Distribute or Publicly Perform the Work either by itself or as + part of any Adaptations or Collections, You must not distort, + mutilate, modify or take other derogatory action in relation to + the Work which would be prejudicial to the Original Author's + honor or reputation. Licensor agrees that in those jurisdictions + (e.g. Japan), in which any exercise of the right granted in + Section 3(b) of this License (the right to make Adaptations) + would be deemed to be a distortion, mutilation, modification or + other derogatory action prejudicial to the Original Author's + honor and reputation, the Licensor will waive or not assert, as + appropriate, this Section, to the fullest extent permitted by + the applicable national law, to enable You to reasonably + exercise Your right under Section 3(b) of this License (right to + make Adaptations) but not otherwise. + + g. Do not make any legal claim against anyone accusing the + Work, with or without changes, alone or with other works, + of infringing any patent claim. + + 5. REPRESENTATIONS, WARRANTIES AND DISCLAIMER + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR + OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY + KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, + INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, + FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF + LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF + ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW + THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO + YOU. + + 6. LIMITATION ON LIABILITY + + EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL + LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF + THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED + OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. TERMINATION + + a. This License and the rights granted hereunder will terminate + automatically upon any breach by You of the terms of this + License. Individuals or entities who have received Adaptations + or Collections from You under this License, however, will not + have their licenses terminated provided such individuals or + entities remain in full compliance with those licenses. Sections + 1, 2, 5, 6, 7, and 8 will survive any termination of this + License. + + b. Subject to the above terms and conditions, the license + granted here is perpetual (for the duration of the applicable + copyright in the Work). Notwithstanding the above, Licensor + reserves the right to release the Work under different license + terms or to stop distributing the Work at any time; provided, + however that any such election will not serve to withdraw this + License (or any other license that has been, or is required to + be, granted under the terms of this License), and this License + will continue in full force and effect unless terminated as + stated above. + + 8. REVISED LICENSE VERSIONS + + a. This License may receive future revisions in the original + spirit of the license intended to strengthen This License. + Each version of This License has an incrementing version number. + + b. Unless otherwise specified like in Section 8(c) The Licensor + has only granted this current version of This License for The Work. + In this case future revisions do not apply. + + c. The Licensor may specify that the latest available + revision of This License be used for The Work by either explicitly + writing so or by suffixing the License URI with a "+" symbol. + + d. The Licensor may specify that The Work is also available + under the terms of This License's current revision as well + as specific future revisions. The Licensor may do this by + writing it explicitly or suffixing the License URI with any + additional version numbers each separated by a comma. + + 9. MISCELLANEOUS + + a. Each time You Distribute or Publicly Perform the Work or a + Collection, the Licensor offers to the recipient a license to + the Work on the same terms and conditions as the license granted + to You under this License. + + b. Each time You Distribute or Publicly Perform an Adaptation, + Licensor offers to the recipient a license to the original Work + on the same terms and conditions as the license granted to You + under this License. + + c. If the Work is classified as Software, each time You Distribute + or Publicly Perform an Adaptation, Licensor offers to the recipient + a copy and/or URI of the corresponding Source Code on the same + terms and conditions as the license granted to You under this License. + + d. If the Work is used as a Web Service, each time You Distribute + or Publicly Perform an Adaptation, or serve data derived from the + Software, the Licensor offers to any recipients of the data a copy + and/or URI of the corresponding Source Code on the same terms and + conditions as the license granted to You under this License. + + e. If any provision of this License is invalid or unenforceable + under applicable law, it shall not affect the validity or + enforceability of the remainder of the terms of this License, + and without further action by the parties to this agreement, + such provision shall be reformed to the minimum extent necessary + to make such provision valid and enforceable. + + f. No term or provision of this License shall be deemed waived + and no breach consented to unless such waiver or consent shall + be in writing and signed by the party to be charged with such + waiver or consent. + + g. This License constitutes the entire agreement between the + parties with respect to the Work licensed here. There are no + understandings, agreements or representations with respect to + the Work not specified here. Licensor shall not be bound by any + additional provisions that may appear in any communication from + You. This License may not be modified without the mutual written + agreement of the Licensor and You. + + h. The rights granted under, and the subject matter referenced, + in this License were drafted utilizing the terminology of the + Berne Convention for the Protection of Literary and Artistic + Works (as amended on September 28, 1979), the Rome Convention of + 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances + and Phonograms Treaty of 1996 and the Universal Copyright + Convention (as revised on July 24, 1971). These rights and + subject matter take effect in the relevant jurisdiction in which + the License terms are sought to be enforced according to the + corresponding provisions of the implementation of those treaty + provisions in the applicable national law. If the standard suite + of rights granted under applicable copyright law includes + additional rights not granted under this License, such + additional rights are deemed to be included in the License; this + License is not intended to restrict the license of any rights + under applicable law. json: non-violent-4.0.json - yml: non-violent-4.0.yml + yaml: non-violent-4.0.yml html: non-violent-4.0.html - text: non-violent-4.0.LICENSE + license: non-violent-4.0.LICENSE - license_key: nonexclusive + category: Permissive spdx_license_key: LicenseRef-scancode-nonexclusive other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The recipient, and any party obtaining a copy of these files from + the recipient, directly or indirectly, is granted, free of charge, a + full and unrestricted irrevocable, world-wide, paid up, royalty-free, + nonexclusive right and license to deal in this software and + documentation files (the "Software"), including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons who receive + copies from any such party to do so. This license includes without + limitation a license to do the foregoing actions under any patents of + the party supplying this software to the recipient. json: nonexclusive.json - yml: nonexclusive.yml + yaml: nonexclusive.yml html: nonexclusive.html - text: nonexclusive.LICENSE + license: nonexclusive.LICENSE - license_key: nortel-dasa + category: Permissive spdx_license_key: LicenseRef-scancode-nortel-dasa other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Nortel DASA License + + Created by F.Schnekenbuehl from clk_rcc8000.c + Nortel DASA Network Systems GmbH, Department: ND250 + A Joint venture of Daimler-Benz Aerospace and Nortel + + 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. json: nortel-dasa.json - yml: nortel-dasa.yml + yaml: nortel-dasa.yml html: nortel-dasa.html - text: nortel-dasa.LICENSE + license: nortel-dasa.LICENSE - license_key: northwoods-sla-2021 + category: Commercial spdx_license_key: LicenseRef-scancode-northwoods-sla-2021 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + NORTHWOODS SOFTWARE CORPORATION + Software License Agreement + + This Software License Agreement (this “Agreement”) is a legal agreement between Northwoods Software Corporation, a New Hampshire corporation (“Northwoods”), and you, either an individual or a single entity. This Software License Agreement sets forth the terms and conditions under which Northwoods grants to you a license to use one or more computer software products of Northwoods and Northwoods’ related documentation therefor. Certain capitalized terms used in this Agreement are defined in Section 1.0 below. + + Each Licensed Product is identified in a License Certificate issued by Northwoods to you. If two or more Licensed Products are listed on a License Certificate, the License shall apply to each such Licensed Product. + + This Agreement sets forth the terms and conditions applicable to your License of the Licensed Software and the Documentation. Please note that, as more particularly set forth in this Agreement, certain of the terms and conditions set forth in this Agreement may not be applicable to your License, depending on the type of License that you purchased and the terms of your License Certificate. + *** IMPORTANT NOTICE *** + + BY INSTALLING, COPYING, OR OTHERWISE USING ANY OF THE LICENSED SOFTWARE, YOU AGREE TO BE BOUND BY THE TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT, THEN YOU SHOULD NOT INSTALL ANY OF THE LICENSED SOFTWARE. + + NOTE: Unless you have purchased a Development and Distribution License, your usage of any Licensed Software and related Documentation is governed by an Evaluation License. + + In addition to the foregoing, the terms and conditions of this Agreement include the following: + + 1.0 DEFINITIONS + + The following terms and variations thereof shall have the following meanings: + + “Agreement” + means this Software License Agreement between Northwoods and Customer. + “Customer” + means you, the individual or single entity in whose name the License Certificate was issued. + “Developer” + means, with respect to a particular Licensed Product, an Internal User who (a) is a member of the Licensed Group for such Licensed Product and (b) uses such Licensed Product to develop one or more Licensed Applications. + “Documentation” + means, with respect to any Licensed Software, such assistance manuals, online help files, release notes, Sample Code, or other materials, in printed or electronic form, including any Updates thereof, that may be provided by Northwoods to assist a Developer in the use of such Licensed Software. + “Domain Name” + means a unique name that identifies an Internet resource, such as a web site (e.g., nwoods.com). + “Evaluation License” + means a License permitting Customer to use a Licensed Product in accordance with the provisions of Section 2.1.1(a) below and the further terms and conditions of this Agreement. + “External User” + means someone other than an Internal User. + “Intellectual Property Right” + means any U.S. or foreign patent, copyright, trade secret, trademark, industrial property, or other proprietary or intellectual property right of any kind. + “Internal User” + means an employee or contractor of Customer. For purposes hereof, “contractor” + means someone who is not an employee of Customer but who is under contract with Customer to perform services of a type that otherwise might be performed by an employee of Customer. + “License” + means Northwoods’ grant to you of a non-exclusive, non-transferable right to use a Licensed Product, subject to and in accordance with the terms and conditions of this Agreement. There are two different types of Licenses - an Evaluation License and a Development and Distribution License. + “License Certificate” + means, with respect to a particular Licensed Product that is licensed by Northwoods to Customer under this Agreement, a certificate issued by Northwoods to Customer that identifies the applicable Licensed Software and the License-Specific Terms applicable to Customer’s use of such Licensed Product. + “License Effective Date” + means the date on which Customer first installs any Licensed Software on a computer for evaluation purposes, or, if the Customer purchased a Development and Distribution License, the date on which Customer placed the order therefor. + “License-Specific Terms” + means, with respect to a particular Licensed Product that is licensed by Northwoods to Customer under this Agreement, the identity of the applicable Licensed Software that is part of such Licensed Product together with certain additional licensing terms applicable to Customer’s use of such Licensed Product that are set forth in the License Certificate for such Licensed Product. The License-Specific Terms are recorded in Northwoods’ records. In the event of any inconsistency between the License-Specific Terms contained in Northwoods’ records and the License-Specific Terms stated in any printed, electronic, or other copy of a License Certificate (whether due to an alteration of such License Certificate or other cause), the License-Specific Terms contained in Northwoods’ records shall be controlling. + “License Term” + means the duration of the License, which depends on the type of License and the License-Specific Terms, all as more particularly set forth in this Agreement. + “Licensed Application” + means a software application (including Redistributables) developed by a Developer by use of the Licensed Software. The License-Specific Terms may further define what constitutes a Licensed Application. + “Licensed Application End User” + means an authorized user of a Licensed Application. + “Licensed Domain” + means a Domain Name from which a Licensed Application End User is able to access a Licensed Application via the Internet. For the avoidance of doubt, if two or more Domain Names identify the same web site or other Internet resource (i.e., there is a single primary Domain Name from which a Licensed Application End User is able to access a Licensed Application via the Internet and there are also one or more alias Domain Names that point to that same primary Domain Name), then there will only be considered to be one Licensed Domain and the alias Domain Name(s) will not be counted. + “Licensed Group” + means, with respect to a particular Licensed Product, such Internal Users who are permitted to be Developers for such Licensed Product, as set forth in the License Certificate for such Licensed Product. By way of examples, if the License Certificate for a Licensed Product states that the Licensed Group for such Licensed Product (a) is a particular business unit within Customer, only an Internal User within such business unit may be a Developer for such Licensed Product, or (b) is unlimited, any Internal User of Customer may be a Developer for such Licensed Product, in both cases subject to such additional limitations as are otherwise set forth in this Agreement and the applicable License Certificate (including any limitation on the number of Developers who may develop Licensed Applications for such Licensed Product). + “Licensed Product” + means, collectively, Licensed Software that is licensed by Northwoods for use by Customer under this Agreement and the related Documentation for such Licensed Software. + “Licensed Software” + means any Northwoods’ computer software product licensed for use under this Agreement, including any Updates of such computer software product that may be supplied to Customer by Northwoods. The Licensed Software is identified in the License-Specific Terms. + “Northwoods” + means Northwoods Software Corporation, a New Hampshire corporation, and its successors and assigns. + “Object Code” + means, with respect to software, an encoded form of such software that allows such software to be used on a computer, but which is not intended to allow such software to be enhanced or otherwise modified. + “Development and Distribution License” + means a License permitting Customer to use a Licensed Product in accordance with the provisions of Section 2.1.1(b) below and the further terms and conditions of this Agreement. + “Redistributables” + means (a) the Object Code form of portions of the Licensed Software, which portions are described as such in the Documentation and are usually provided as Dynamic Link Libraries (DLL’s), tar files, zip files, JAR files, or obfuscated javascript files (depending on the specific product), and (b) also the Source Code or Object Code form of the Sample Code as originally supplied to, or as modified by, Customer. For the avoidance of doubt, obfuscated javascript files are considered to be Object Code and not Source Code. + “Sample Code” + means the Source Code version of the computer software supplied by Northwoods and described as “sample code” + in the Documentation, which computer software is intended to illustrate how to use the Licensed Software. For the avoidance of doubt, Sample Code is part of the Documentation and not part of the Licensed Software. + “Source Code” + means, with respect to software, an encoded form of such software that allows a software developer to enhance and otherwise modify such software and that can be used, with certain software development tools, to produce Object Code. + “Trial Period” + means, with respect to an Evaluation License, a period of thirty (30) days following the License Effective Date therefor or such longer period of time, if any, as may be specified as the License Term for such Evaluation License in the License-Specific Terms therefor. + “Update” + means any bug fix, correction, patch, workaround, enhancement, release, version, or other update of a Licensed Product provided by Northwoods to Customer after the initial delivery of such Licensed Product. + + 2.0 LICENSE PROVISIONS + 2.1 License Grant and Restrictions + + 2.1.1 Subject to the further terms and conditions of this Agreement, Northwoods grants to Customer a worldwide License to use each Licensed Product, as follows: + + Evaluation License. If the License is an Evaluation License, then: + Customer may only use the Licensed Product for evaluation purposes; and + the License Term shall commence on the License Effective Date and shall continue thereafter for the Trial Period, subject to termination of the License during the License Term as otherwise set forth in this Agreement. + The Licensed Software may include a duration limitation that tracks the License Term and may disable the Licensed Software when the License Term expires. If Customer purchases a Development and Distribution License for the Licensed Product, Northwoods will provide Customer with a software code which, when activated, will deactivate any such duration limitation. + Development and Distribution License. If the License is a Development and Distribution License, then: + the License Term shall commence on the License Effective Date and shall continue thereafter for the period set forth in the License-Specific Terms, subject to termination of the License during the License Term as otherwise set forth in this Agreement; + the aggregate number of Developers who may use the Licensed Software to develop Licensed Applications is specified in the License-Specific Terms; + the aggregate number of Licensed Applications that such Developer(s) may develop is specified in the License-Specific Terms; + the Licensed Application End Users may be Internal Users or External Users; and + the aggregate number of Licensed Application End Users who are authorized to use each Licensed Application is not limited; and + for those Licensed Products that enable Licensed Applications to be accessed via the Internet, the aggregate number of Licensed Domains from which Licensed Application End Users may access any such Licensed Application is specified in the License-Specific Terms. + For the avoidance of doubt, upon the expiration or earlier termination of the License Term (unless, and then only to the extent that, the License Term is renewed by Northwoods), (A) no further Licensed Applications may be developed, and (B) with respect to any Licensed Application that was developed prior to such expiration or termination, any Licensed Application End User who was using such Licensed Application prior to such expiration or termination may continue to use such Licensed Application after such expiration or termination, but no other Licensed Application End Users or anyone else may use such Licensed Application. + The parties agree that, for purposes of this Agreement, all Licensed Products shall be delivered by Northwoods to Customer in the State of New Hampshire. + + 2.1.2 Customer may make such number of copies of each Licensed Product as may reasonably be required for Customer’s exercise of its License rights and for archival purposes. Each such copy shall be and remain subject to all usage and other restrictions applicable to such Licensed Product under this Agreement. All such copies are and shall remain the sole property of Northwoods and subject to this Agreement. All Intellectual Property Rights notices included in such Licensed Product must be maintained in all such copies and may not be altered or removed. + + 2.1.3 Customer is solely responsible for all hardware, infrastructure systems, and third party software associated with operating the Licensed Software. + + 2.1.4 Except as may otherwise expressly be permitted by this Agreement, and subject to such additional limitations and restrictions as are set forth in this Agreement, CUSTOMER MAY NOT: + + use, copy, display, publish, or transfer any Licensed Product; + modify any Licensed Product, or create any derivative work of any Licensed Product; + reverse engineer, disassemble, decompile, or take any other action to derive the Source Code form of any of the Licensed Software; + use any Licensed Product, nor permit any Licensed Product to be used, other than by one or more Developers (the number of permitted Developers being specified in the License-Specific Terms) to develop a Licensed Application; + rent, lease, transfer, sell, sublicense, or distribute any Licensed Product thereof to any third party without the express written consent of Northwoods; for the avoidance of doubt, no time-sharing or service-sharing use of any Licensed Product by any third party is permitted; + use any Licensed Product to develop a Licensed Application unless Customer includes substantial added value in such Licensed Application in addition to the Redistributables; + use any Licensed Product to develop a Licensed Application if such Licensed Application would be competitive with such Licensed Product; nor + distribute any portion of any Licensed Product other than the Redistributables, which may only be distributed in Object Code form and only as part of a Licensed Application. + + 2.1.5 Except as otherwise set forth in this Section, the Licensed Software is provided and may only be used in Object Code form. If the License-Specific Terms expressly provide that any of the Licensed Software is being licensed with Source Code rights, then such Licensed Software shall also be provided and may be used in Source Code form. In such case, Customer: + + may modify such Licensed Software and use the modified Licensed Software in the same fashion, and subject to the same restrictions, as the unmodified Licensed Software (however, for the avoidance of doubt, Customer shall not redistribute any Source Code); and + shall defend, indemnify, and hold harmless Northwoods and its affiliates, and its and their respective successors and assigns, and all of the respective officers, directors, employees, stockholders, managers, members, agents, and representatives of any of the foregoing (each, an “Indemnitee”) from and against any and all claims, losses, damages, liabilities, costs, and expenses (including reasonable attorneys’ and other professional fees) suffered or incurred by Northwoods or any other Indemnitee that arise out of or relate to any modifications of such Licensed Software made by Customer. + + 2.2 License Termination + + 2.2.1 With respect to each Licensed Product that is listed in a License Certificate, the License of such Licensed Product shall commence on the License Effective Date and shall continue thereafter for the applicable License Term, subject to earlier termination as follows: + + Customer may terminate such License at any time and for any reason by written notice to Northwoods; + if Customer breaches any of its obligations under this Agreement, then such License shall automatically terminate; provided, that, if such breach is curable, then such License shall terminate if such breach is not cured by Customer within thirty (30) days of notice from Northwoods; and + if Customer is declared bankrupt, becomes insolvent, or commences liquidation or receivership proceedings, then such License may be terminated by Northwoods. + + Upon termination of all License(s) granted under this Agreement, this Agreement shall automatically terminate; provided, that the following provisions of this Agreement shall survive any such termination: Sections 1.0 (to the extent that any term defined therein is used in any other Section which survives such termination), 2.2.2, 2.3, 2.4, 3.2, 4.0, 5.0, and 6.0. + + 2.2.2 Upon the expiration or earlier termination of such License, Customer shall: + + immediately cease all use of such Licensed Product; + promptly destroy all copies (including tangible, electronic, magnetic, and other copies) of such Licensed Product; provided, that to the extent that Customer archives electronic information in the ordinary course of its business, Customer shall not be required to destroy such electronic copies of such Licensed Product as are so included in such archives, so long as such electronic copies are not otherwise copied or used by Customer, and + promptly certify in writing to Northwoods that Customer has complied with its obligations hereunder and is no longer using or in possession of any copy of such Licensed Product. + + 2.3 Proprietary Rights + + 2.3.1 Each Licensed Product and all Intellectual Property Rights therein are the exclusive property of Northwoods or its licensors. All rights in and to each Licensed Product not specifically granted to Customer under this Agreement are reserved to Northwoods. + + 2.3.2 Customer shall not alter or remove any Intellectual Property Rights notices or any other legal notices contained on or in copies of any Licensed Product. If Customer is permitted by Northwoods to make any copies of any Licensed Product, Customer shall reproduce all such notices on or in all copies. The existence of any copyright notice shall not constitute publication and shall not be construed as an admission or presumption of publication of any Licensed Product. + + 2.3.3 All Updates of a Licensed Product provided by Northwoods (regardless of any payments made by Customer therefor) shall belong to and be owned by Northwoods, shall be considered to be part of such Licensed Product, and shall be licensed to Customer on the same terms and conditions as are applicable to such Licensed Product under this Agreement (including the License-Specific Terms). + 2.4 Confidentiality + + 2.4.1 Customer agrees that each Licensed Product is confidential and proprietary to Northwoods. Customer agrees to hold each Licensed Product in confidence and not to disclose such Licensed Product without the prior written approval of Northwoods, except: + + to Customer’s Developer(s) to whom disclosure is necessary for Customer’s permitted use of such Licensed Product, provided that (i) Customer shall ensure that each such Developer agrees to comply with all of Customer’s obligations under this Agreement, and (ii) the acts and omissions of Customer’s Developer(s) shall be deemed to be the acts and omissions of Customer and Customer shall be responsible therefor and for any breach of this Agreement caused thereby, or + as required by applicable law, rule, or regulation, or by an order of a court or governmental or law enforcement agency or other authority, each of competent jurisdiction, provided that Customer shall have used reasonable efforts to secure confidential treatment of any such information to be disclosed, or + that Customer may distribute Redistributables (in Object Code form) as part of Licensed Applications as permitted by Section 2.1. + + 2.4.2 Customer shall take all reasonable steps to safeguard all copies of each Licensed Product and ensure that no persons, whether or not authorized to have access to a Licensed Product, shall take any action in violation of this Agreement. + + 3.0 LIMITED WARRANTY; WARRANTY LIMITATIONS AND DISCLAIMERS + 3.1 Limited Warranty. + + If the License is a Development and Distribution License, then Northwoods warrants (the “Limited Warranty”) that the Licensed Software will, for a period of thirty (30) days following the date on which the Licensed Software was first delivered to Customer (the “Limited Warranty Period”), function substantially as set forth in the Documentation therefor. The Limited Warranty is only for the benefit of Customer. The Limited Warranty shall not apply to an Evaluation License. + Customer’s sole and exclusive remedy for any breach of the Limited Warranty shall be as follows: + If the Limited Warranty is breached, Customer must, during the Limited Warranty Period, notify Northwoods in writing of the non-conformity in the Licensed Software that constitutes the breach. + In the event such a notification is given to Northwoods during the Limited Warranty Period, Northwoods will attempt to verify the non-conformity reported by Customer and, if verified, ascertain the reason for the non-conformity and supply a correction or bypass. + If Northwoods verifies the reported non-conformity but is unable to repair or replace the defective Licensed Software, or determines that such repair or replacement is impractical in Northwoods’ sole judgment, then Northwoods may terminate the License by providing written notice thereof to Customer. Likewise, if Northwoods verifies the reported non-conformity but fails to repair or replace the defective Licensed Software within thirty (30) days after Northwoods’ receipt of Customer’s notice of the breach, then, during the continuance of such failure, Customer may elect to terminate the License by providing written notice thereof to Northwoods. In the event of any such termination, Customer shall comply with its obligations under Section 2.2.2 and, upon Northwoods’ receipt of Customer’s written certification pursuant to Section 2.2.2(c), Northwoods shall refund to Customer the License fee paid by Customer for the defective Licensed Product. + The Limited Warranty shall not apply if any breach of the Limited Warranty is due to: (i) the use of the Licensed Software other than in accordance with the Documentation; or (ii) any modification of the Licensed Software other than an Update provided by Northwoods during the Limited Warranty Period. + + 3.2 Disclaimers. + + All software contains errors, and Customer acknowledges that the use of any software (including the Licensed Software) entails the likelihood of some human and machine errors, omissions, delays, interruptions, and losses, including inadvertent loss of data or damage to media, which may give rise to loss or damage. Accordingly, NORTHWOODS MAKES NO WARRANTY THAT THE LICENSED SOFTWARE IS ERROR-FREE. + NORTHWOODS ALSO MAKES NO WARRANTY THAT ANY LICENSED PRODUCT WILL MEET CUSTOMER’S REQUIREMENTS. + EXCEPT FOR THE LIMITED WARRANTY (WHICH APPLIES ONLY TO A DEVELOPMENT AND DISTRIBUTION LICENSE, AND NOT TO AN EVALUATION LICENSE), EACH LICENSED PRODUCT IS PROVIDED “AS IS” AND NORTHWOODS MAKES NO WARRANTIES, EXPRESS OR IMPLIED, WITH RESPECT TO ANY LICENSED PRODUCT. WITHOUT LIMITING THE GENERALITY OF THE FOREGOING, NORTHWOODS DISCLAIMS AND EXCLUDES ANY AND ALL IMPLIED WARRANTIES, INCLUDING ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND ANY OTHER IMPLIED WARRANTY ARISING OUT OF OR IN CONNECTION WITH THE DELIVERY, USE, OR PERFORMANCE OF ANY LICENSED PRODUCT. + + 4.0 LIMITATION OF LIABILITY + + 4.1 THE TOTAL LIABILITY OF NORTHWOODS UNDER THIS AGREEMENT (INCLUDING AS A RESULT OF A BREACH OF ANY OF NORTHWOODS’ OBLIGATIONS HEREUNDER AND/OR FOR THE DELIVERY, USE, PERFORMANCE, OR NON-PERFORMANCE OF ANY LICENSED PRODUCT), WHETHER ARISING IN CONTRACT, NEGLIGENCE, STRICT LIABILITY, TORT, OR OTHER CLAIM OR ACTION, SHALL BE LIMITED TO THE DIRECT LOSSES AND DAMAGES SUFFERED BY CUSTOMER THAT ARE OTHERWISE RECOVERABLE UNDER THIS AGREEMENT, IN AN AMOUNT NOT TO EXCEED THE LICENSE FEE PAID TO NORTHWOODS FOR SUCH LICENSED PRODUCT UNDER THIS AGREEMENT. + + 4.2 NORTHWOODS NEITHER ASSUMES, NOR AUTHORIZES ANY OTHER PERSON TO ASSUME ON NORTHWOODS’ BEHALF, ANY LIABILITIES IN ADDITION TO THOSE LIABILITIES OF NORTHWOODS SPECIFICALLY SET FORTH IN THIS AGREEMENT. + + 4.3 Except as otherwise expressly set forth in Section 3.1(b)(iii), ALL AMOUNTS PAID BY CUSTOMER TO NORTHWOODS ARE NON-REFUNDABLE. + + 4.5 Customer is responsible for any and all uses of each Licensed Product (including testing of the same to determine whether it does or does not meet Customer’s requirements, and in the case of the Sample Code that any Open Source Software referenced therein has acceptable license terms), and for the distribution and use of any Redistributables as part of Licensed Applications. Customer agrees that Northwoods shall have no liability or responsibility for any use of any Redistributable as part of any Licensed Application, and Customer shall defend, indemnify, and hold harmless Northwoods and all other Indemnitees from and against any and all claims, losses, damages, liabilities, costs, and expenses (including reasonable attorneys’ and other professional fees) that arise out of or relate to any such uses. + + 4.6 Customer acknowledges that the limitations on Northwoods’ liability set forth in this Agreement are a material part of the consideration payable by Customer to Northwoods under this Agreement and that Northwoods would not have entered into this Agreement without such limitations. + + 5.0 TAXES; GOVERNMENTAL RESTRICTIONS + + 5.1 Customer is solely responsible for any and all sales, use, and other taxes and governmental charges applicable to this Agreement and/or each Licensed Product, including the transfer of any media and/or data. Notwithstanding the foregoing, in no event shall Customer be responsible for any taxes based on the net income of Northwoods. + + 5.2 Customer may not export or otherwise use any Licensed Product or any Redistributable except as authorized by United States law and the laws of the jurisdiction(s) in which such Licensed Product or Redistributable is to be used. In particular, but without limitation, no Licensed Product or Redistributable may be exported or re-exported (a) into any U.S. embargoed countries or (b) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Department of Commerce Denied Person’s List or Entity List. Customer represents and warrants that Customer is not located in any such country or on any such list. + + 5.3 If any Licensed Product is licensed to or for use by the U.S. Government or any agency thereof, the following provisions shall apply: Such license and usage rights include only those rights expressly set forth in this Agreement (which are the rights customarily provided by Northwoods to the public) and do not include any additional rights to use, modify, reproduce, release, perform, display, or disclose any Licensed Product or Redistributable. All Licensed Software and Redistributables are “Commercial Computer Software”, and all Documentation is “Commercial Computer Software Documentation”, within the meaning of the applicable civilian and military Federal acquisition regulations and any supplement thereto. If a government agency has a need for rights not conveyed under these terms, it must negotiate with Northwoods to determine if there are acceptable terms for transferring such rights, and a mutually acceptable written addendum specifically conveying such rights must be executed and delivered by Northwoods and the government agency. The contractor/manufacturer is Northwoods Software Corporation, 4 Water Street, Suite 101, Nashua, New Hampshire, USA. + + 5.4 All unpublished rights are reserved under the copyright laws of the United States and all applicable foreign countries. + + 6.0 GENERAL PROVISIONS + + 6.1 Governing Law; Jurisdiction. + + This Agreement shall be governed by and construed in accordance with the laws of the State of New Hampshire, USA, without reference to its conflict of laws principles. The provisions of the United Nations Convention on Contracts for the International Sale of Goods are excluded. + The parties agree that, in the event of any action for enforcement of or breach of this Agreement, the Federal and State courts of the State of New Hampshire shall have exclusive jurisdiction over the enforcement of this Agreement, and the parties specifically consent to, and agree that they are subject to, the jurisdiction of such courts; provided, that Northwoods shall be entitled to seek injunctive or other equitable relief in any court of competent jurisdiction. + + 6.2 Notices. Except as otherwise specifically set forth in this Agreement, all notices and other communications required to be given under this Agreement shall be in writing and shall be deemed to have been sufficiently given if sent by registered or certified mail, return receipt requested, or by a nationally recognized express courier. Any such notice (a) if given to Northwoods, shall be sent to Northwoods at its address set forth on its web site (https://www.nwoods.com or any successor thereto), or (b) if given to Customer, shall be sent to Customer at its address set forth in the License-Specific Terms or such other address as Customer may have notified Northwoods in writing. + + 6.3 Assignment. This Agreement is assignable by Northwoods. This Agreement is not assignable, in whole or in part, by Customer without the prior written consent of Northwoods, and any assignment or attempted assignment of this Agreement (including an assignment by operation of law) by Customer without such consent shall be void and shall also constitute a breach of this Agreement; provided, however, that Customer may assign this Agreement to a purchaser or other acquirer of all or substantially all of Customer’s assets or business if, within thirty (30) days following such assignment, said purchaser or acquirer provides Northwoods with written notice of such permitted assignment and a written certification signed by the purchaser or acquirer agreeing to be bound by and perform all of Customer’s obligations under this Agreement. This Agreement is binding on and for the benefit of Customer and its permitted successors and assigns, as well as Northwoods and its successors and assigns. + + 6.4 Enforceability. Each provision of this Agreement shall be valid and enforced to the fullest extent permitted by law. If there is any conflict between any provision of this Agreement and any statute, law, or governmental ordinance, order, rule, or regulation, the latter shall prevail; provided, that any such conflicting provision shall be curtailed and limited only to the extent necessary to bring it within the legal requirements and the remainder of this Agreement shall not be affected thereby. + + 6.5 Waiver. The failure of any party to enforce any term or condition of this Agreement shall not constitute a waiver of such party’s right to enforce such term or condition or any other term or condition of this Agreement, unless waived in writing. + + 6.6 Force Majeure. Neither party will be liable for any failure to perform any of such party’s obligations under this Agreement (excluding, however, a party’s payment obligations) due to any causes beyond such party’s reasonable control, including acts of God (including earthquakes and other natural disasters), war, riot, embargoes, acts of civil or military authorities, fire, flood, accident, and strikes. In the event of any such cause, the affected party’s time for delivery or other performance will be extended for a period equal to the duration of the delay caused thereby. + + 6.7 Interpretation. Section headings are inserted for convenience of reference only and shall not affect the construction of this Agreement. The singular number shall include the plural, and vice versa. Any use of the word “including” will be interpreted to mean “including, but not limited to,” unless otherwise indicated. References to any individual or entity shall be construed to mean such individual or entity and his, her, or its successors in interest and permitted assigns, as applicable. + + 6.8 Entire Agreement. This Agreement, including the License-Specific Terms, (a) is the entire agreement between Northwoods and Customer with respect to Northwoods’ license to Customer of the Licensed Product(s) and Customer’s right to use the same, and (b) supersedes all prior agreements, covenants, understandings, representations, warranties, and undertakings, whether written, electronic, or oral, between the parties regarding such matters. + + 6.9 Amendments. This Agreement may only be amended by a writing duly executed and delivered by each party. + + 6.10 Publicity. Northwoods shall be permitted to include Customer’s name and logo in a list of Northwoods other customers on a Northwoods’ website. Neither party may issue press releases including the other party’s name without prior written consent of the other party. + + Northwoods Software Corporation + 4 Water Street, Suite 101, Nashua, NH 03060 US + Internet: https://www.nwoods.com + E-mail: GoSales@nwoods.com + + Copyright © 1999-2021 Northwoods Software Corporation. All rights reserved. json: northwoods-sla-2021.json - yml: northwoods-sla-2021.yml + yaml: northwoods-sla-2021.yml html: northwoods-sla-2021.html - text: northwoods-sla-2021.LICENSE + license: northwoods-sla-2021.LICENSE - license_key: nosl-1.0 + category: Copyleft Limited spdx_license_key: NOSL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "The Netizen Open Source License (NOSL) is a license based on the Mozilla Public License\ + \ (MPL).\n\nNETIZEN OPEN SOURCE LICENSE Version 1.0\n\n1. Definitions.\n\n 1.0.1. \"\ + Commercial Use\" means distribution or otherwise making the\n Covered Code available\ + \ to a third party.\n\n 1.1. \"Contributor\" means each entity that creates or contributes\ + \ to\n the creation of Modifications.\n\n 1.2. \"Contributor Version\" means the\ + \ combination of the Original\n Code, prior Modifications used by a Contributor, and\ + \ the Modifications\n made by that particular Contributor.\n\n 1.3. \"Covered\ + \ Code\" means the Original Code or Modifications or the\n combination of the Original\ + \ Code and Modifications, in each case\n including portions thereof.\n\n 1.4.\ + \ \"Electronic Distribution Mechanism\" means a mechanism generally\n accepted in the\ + \ software development community for the electronic\n transfer of data.\n\n 1.5.\ + \ \"Executable\" means Covered Code in any form other than Source\n Code.\n\n \ + \ 1.6. \"Initial Developer\" means the individual or entity identified\n as the Initial\ + \ Developer in the Source Code notice required by Exhibit\n A.\n\n 1.7. \"Larger\ + \ Work\" means a work which combines Covered Code or\n portions thereof with code not\ + \ governed by the terms of this License.\n\n 1.8. \"License\" means this document.\n\ + \n 1.8.1. \"Licensable\" means having the right to grant, to the maximum\n extent\ + \ possible, whether at the time of the initial grant or\n subsequently acquired, any\ + \ and all of the rights conveyed herein.\n\n 1.9. \"Modifications\" means any addition\ + \ to or deletion from the\n substance or structure of either the Original Code or any\ + \ previous\n Modifications. When Covered Code is released as a series of files, a\n\ + \ Modification is:\n A. Any addition to or deletion from the contents of\ + \ a file\n containing Original Code or previous Modifications.\n\n B.\ + \ Any new file that contains any part of the Original Code or\n previous Modifications.\n\ + \n 1.10. \"Original Code\" means Source Code of computer software code\n which\ + \ is described in the Source Code notice required by Exhibit A as\n Original Code,\ + \ and which, at the time of its release under this\n License is not already Covered\ + \ Code governed by this License.\n\n 1.10.1. \"Patent Claims\" means any patent claim(s),\ + \ now owned or\n hereafter acquired, including without limitation, method, process,\n\ + \ and apparatus claims, in any patent Licensable by grantor.\n\n 1.11. \"Source\ + \ Code\" means the preferred form of the Covered Code for\n making modifications to\ + \ it, including all modules it contains, plus\n any associated interface definition\ + \ files, scripts used to control\n compilation and installation of an Executable, or\ + \ source code\n differential comparisons against either the Original Code or another\n\ + \ well known, available Covered Code of the Contributor's choice. The\n Source\ + \ Code can be in a compressed or archival form, provided the\n appropriate decompression\ + \ or de-archiving software is widely available\n for no charge.\n\n 1.12. \"You\"\ + \ (or \"Your\") means an individual or a legal entity\n exercising rights under, and\ + \ complying with all of the terms of, this\n License or a future version of this License\ + \ issued under Section 6.1.\n For legal entities, \"You\" includes any entity which\ + \ controls, is\n controlled by, or is under common control with You. For purposes of\n\ + \ this definition, \"control\" means (a) the power, direct or indirect,\n to cause\ + \ the direction or management of such entity, whether by\n contract or otherwise, or\ + \ (b) ownership of more than fifty percent\n (50%) of the outstanding shares or beneficial\ + \ ownership of such\n entity.\n\n2. Source Code License.\n\n 2.1. The Initial\ + \ Developer Grant.\n The Initial Developer hereby grants You a world-wide, royalty-free,\n\ + \ non-exclusive license, subject to third party intellectual property\n claims:\n\ + \ (a) under intellectual property rights (other than patent or\n trademark)\ + \ Licensable by Initial Developer to use, reproduce,\n modify, display, perform,\ + \ sublicense and distribute the Original\n Code (or portions thereof) with or\ + \ without Modifications, and/or\n as part of a Larger Work; and\n\n \ + \ (b) under Patents Claims infringed by the making, using or\n selling of Original\ + \ Code, to make, have made, use, practice,\n sell, and offer for sale, and/or\ + \ otherwise dispose of the\n Original Code (or portions thereof).\n\n \ + \ (c) the licenses granted in this Section 2.1(a) and (b) are\n effective on\ + \ the date Initial Developer first distributes\n Original Code under the terms\ + \ of this License.\n\n (d) Notwithstanding Section 2.1(b) above, no patent license\ + \ is\n granted: 1) for code that You delete from the Original Code; 2)\n \ + \ separate from the Original Code; or 3) for infringements caused\n by:\ + \ i) the modification of the Original Code or ii) the\n combination of the Original\ + \ Code with other software or devices.\n\n 2.2. Contributor Grant.\n Subject to\ + \ third party intellectual property claims, each Contributor\n hereby grants You a\ + \ world-wide, royalty-free, non-exclusive license\n\n (a) under intellectual\ + \ property rights (other than patent or\n trademark) Licensable by Contributor,\ + \ to use, reproduce, modify,\n display, perform, sublicense and distribute the\ + \ Modifications\n created by such Contributor (or portions thereof) either on\ + \ an\n unmodified basis, with other Modifications, as Covered Code\n \ + \ and/or as part of a Larger Work; and\n\n (b) under Patent Claims infringed\ + \ by the making, using, or\n selling of Modifications made by that Contributor\ + \ either alone\n and/or in combination with its Contributor Version (or portions\n\ + \ of such combination), to make, use, sell, offer for sale, have\n made,\ + \ and/or otherwise dispose of: 1) Modifications made by that\n Contributor (or\ + \ portions thereof); and 2) the combination of\n Modifications made by that Contributor\ + \ with its Contributor\n Version (or portions of such combination).\n\n \ + \ (c) the licenses granted in Sections 2.2(a) and 2.2(b) are\n effective on\ + \ the date Contributor first makes Commercial Use of\n the Covered Code.\n\n \ + \ (d) Notwithstanding Section 2.2(b) above, no patent license is\n \ + \ granted: 1) for any code that Contributor has deleted from the\n Contributor\ + \ Version; 2) separate from the Contributor Version;\n 3) for infringements\ + \ caused by: i) third party modifications of\n Contributor Version or ii) the\ + \ combination of Modifications made\n by that Contributor with other software\ + \ (except as part of the\n Contributor Version) or other devices; or 4) under\ + \ Patent Claims\n infringed by Covered Code in the absence of Modifications made\ + \ by\n that Contributor.\n\n3. Distribution Obligations.\n\n 3.1. Application\ + \ of License.\n The Modifications which You create or to which You contribute are\n\ + \ governed by the terms of this License, including without limitation\n Section\ + \ 2.2. The Source Code version of Covered Code may be\n distributed only under the\ + \ terms of this License or a future version\n of this License released under Section\ + \ 6.1, and You must include a\n copy of this License with every copy of the Source\ + \ Code You\n distribute. You may not offer or impose any terms on any Source Code\n\ + \ version that alters or restricts the applicable version of this\n License or\ + \ the recipients' rights hereunder. However, You may include\n an additional document\ + \ offering the additional rights described in\n Section 3.5.\n\n 3.2. Availability\ + \ of Source Code.\n Any Modification which You create or to which You contribute must\ + \ be\n made available in Source Code form under the terms of this License\n either\ + \ on the same media as an Executable version or via an accepted\n Electronic Distribution\ + \ Mechanism to anyone to whom you made an\n Executable version available; and if made\ + \ available via Electronic\n Distribution Mechanism, must remain available for at least\ + \ twelve (12)\n months after the date it initially became available, or at least six\n\ + \ (6) months after a subsequent version of that particular Modification\n has\ + \ been made available to such recipients. You are responsible for\n ensuring that the\ + \ Source Code version remains available even if the\n Electronic Distribution Mechanism\ + \ is maintained by a third party.\n\n 3.3. Description of Modifications.\n You\ + \ must cause all Covered Code to which You contribute to contain a\n file documenting\ + \ the changes You made to create that Covered Code and\n the date of any change. You\ + \ must include a prominent statement that\n the Modification is derived, directly or\ + \ indirectly, from Original\n Code provided by the Initial Developer and including\ + \ the name of the\n Initial Developer in (a) the Source Code, and (b) in any notice\ + \ in an\n Executable version or related documentation in which You describe the\n \ + \ origin or ownership of the Covered Code.\n\n 3.4. Intellectual Property Matters\n\ + \ (a) Third Party Claims.\n If Contributor has knowledge that a license\ + \ under a third party's\n intellectual property rights is required to exercise\ + \ the rights\n granted by such Contributor under Sections 2.1 or 2.2,\n \ + \ Contributor must include a text file with the Source Code\n distribution\ + \ titled \"LEGAL\" which describes the claim and the\n party making the claim\ + \ in sufficient detail that a recipient will\n know whom to contact. If Contributor\ + \ obtains such knowledge after\n the Modification is made available as described\ + \ in Section 3.2,\n Contributor shall promptly modify the LEGAL file in all copies\n\ + \ Contributor makes available thereafter and shall take other steps\n \ + \ (such as notifying appropriate mailing lists or newsgroups)\n reasonably calculated\ + \ to inform those who received the Covered\n Code that new knowledge has been\ + \ obtained.\n\n (b) Contributor APIs.\n If Contributor's Modifications\ + \ include an application programming\n interface and Contributor has knowledge\ + \ of patent licenses which\n are reasonably necessary to implement that API, Contributor\ + \ must\n also include this information in the LEGAL file.\n\n (c)\ + \ Representations.\n Contributor represents that, except as disclosed pursuant\ + \ to\n Section 3.4(a) above, Contributor believes that Contributor's\n \ + \ Modifications are Contributor's original creation(s) and/or\n Contributor\ + \ has sufficient rights to grant the rights conveyed by\n this License.\n\n \ + \ 3.5. Required Notices.\n You must duplicate the notice in Exhibit A in each file\ + \ of the Source\n Code. If it is not possible to put such notice in a particular Source\n\ + \ Code file due to its structure, then You must include such notice in a\n location\ + \ (such as a relevant directory) where a user would be likely\n to look for such a\ + \ notice. If You created one or more Modification(s)\n You may add your name as a\ + \ Contributor to the notice described in\n Exhibit A. You must also duplicate this\ + \ License in any documentation\n for the Source Code where You describe recipients'\ + \ rights or ownership\n rights relating to Covered Code. You may choose to offer,\ + \ and to\n charge a fee for, warranty, support, indemnity or liability\n obligations\ + \ to one or more recipients of Covered Code. However, You\n may do so only on Your\ + \ own behalf, and not on behalf of the Initial\n Developer or any Contributor. You\ + \ must make it absolutely clear than\n any such warranty, support, indemnity or liability\ + \ obligation is\n offered by You alone, and You hereby agree to indemnify the Initial\n\ + \ Developer and every Contributor for any liability incurred by the\n Initial\ + \ Developer or such Contributor as a result of warranty,\n support, indemnity or liability\ + \ terms You offer.\n\n 3.6. Distribution of Executable Versions.\n You may distribute\ + \ Covered Code in Executable form only if the\n requirements of Section 3.1-3.5 have\ + \ been met for that Covered Code,\n and if You include a notice stating that the Source\ + \ Code version of\n the Covered Code is available under the terms of this License,\n\ + \ including a description of how and where You have fulfilled the\n obligations\ + \ of Section 3.2. The notice must be conspicuously included\n in any notice in an Executable\ + \ version, related documentation or\n collateral in which You describe recipients'\ + \ rights relating to the\n Covered Code. You may distribute the Executable version\ + \ of Covered\n Code or ownership rights under a license of Your choice, which may\n\ + \ contain terms different from this License, provided that You are in\n compliance\ + \ with the terms of this License and that the license for the\n Executable version\ + \ does not attempt to limit or alter the recipient's\n rights in the Source Code version\ + \ from the rights set forth in this\n License. If You distribute the Executable version\ + \ under a different\n license You must make it absolutely clear that any terms which\ + \ differ\n from this License are offered by You alone, not by the Initial\n Developer\ + \ or any Contributor. You hereby agree to indemnify the\n Initial Developer and every\ + \ Contributor for any liability incurred by\n the Initial Developer or such Contributor\ + \ as a result of any such\n terms You offer.\n\n 3.7. Larger Works.\n You\ + \ may create a Larger Work by combining Covered Code with other code\n not governed\ + \ by the terms of this License and distribute the Larger\n Work as a single product.\ + \ In such a case, You must make sure the\n requirements of this License are fulfilled\ + \ for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\n\n \ + \ If it is impossible for You to comply with any of the terms of this\n License with\ + \ respect to some or all of the Covered Code due to\n statute, judicial order, or regulation\ + \ then You must: (a) comply with\n the terms of this License to the maximum extent\ + \ possible; and (b)\n describe the limitations and the code they affect. Such description\n\ + \ must be included in the LEGAL file described in Section 3.4 and must\n be included\ + \ with all distributions of the Source Code. Except to the\n extent prohibited by statute\ + \ or regulation, such description must be\n sufficiently detailed for a recipient of\ + \ ordinary skill to be able to\n understand it.\n\n5. Application of this License.\n\ + \n This License applies to code to which the Initial Developer has\n attached\ + \ the notice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n\n\ + \ 6.1. New Versions.\n Netizen Pty Ltd (\"Netizen \") may publish revised and/or\ + \ new versions \n of the License from time to time. Each version will be given a \n\ + \ distinguishing version number.\n\n 6.2. Effect of New Versions.\n Once\ + \ Covered Code has been published under a particular version of the\n License, You\ + \ may always continue to use it under the terms of that\n version. You may also choose\ + \ to use such Covered Code under the terms\n of any subsequent version of the License\ + \ published by Netizen. No one\n other than Netizen has the right to modify the terms\ + \ applicable to\n Covered Code created under this License.\n\n 6.3. Derivative\ + \ Works.\n If You create or use a modified version of this License (which you may\n\ + \ only do in order to apply it to code which is not already Covered Code\n governed\ + \ by this License), You must (a) rename Your license so that\n the phrases \"Netizen\"\ + , \"NOSL\" or any confusingly similar phrase do not \n appear in your license (except\ + \ to note that your license differs from \n this License) and (b) otherwise make it\ + \ clear that Your version of the \n license contains terms which differ from the Netizen\ + \ Open Source \n License and Xen Open Source License. (Filling in the name of the \n\ + \ Initial Developer, Original Code or Contributor in the notice described \n in\ + \ Exhibit A shall not of themselves be deemed to be modifications of\n this License.)\n\ + \n7. DISCLAIMER OF WARRANTY.\n\n COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN\ + \ \"AS IS\" BASIS,\n WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\n\ + \ WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF\n DEFECTS, MERCHANTABLE,\ + \ FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.\n THE ENTIRE RISK AS TO THE QUALITY\ + \ AND PERFORMANCE OF THE COVERED CODE\n IS WITH YOU. SHOULD ANY COVERED CODE PROVE\ + \ DEFECTIVE IN ANY RESPECT,\n YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR)\ + \ ASSUME THE\n COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER\n\ + \ OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF\n ANY COVERED\ + \ CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n 7.1 To the extent\ + \ permitted by law and except as expressly provided \n to the contrary in this Agreement,\ + \ all warranties whether express, \n implied, statutory or otherwise, relating in any\ + \ way to the subject\n matter of this Agreement or to this Agreement generally, are\ + \ excluded. \n Where legislation implies in this Agreement any condition or warranty\ + \ \n and that legislation avoids or prohibits provisions in a contract \n excluding\ + \ or modifying the application of or the exercise of or \n liability under such term,\ + \ such term shall be deemed to be included \n in this Agreement. However, the liability\ + \ of Supplier for any breach \n of such term shall be limited, at the option of Supplier,\ + \ to any one \n or more of the following: if the breach related to goods: the \n \ + \ replacement of the goods or the supply of equivalent goods; the repair \n of such\ + \ goods; the payment of the cost of replacing the goods or of \n acquiring equivalent\ + \ goods; or the payment of the cost of having the \n goods repaired; and if the breach\ + \ relates to services the supplying \n of the services again; or the payment of the\ + \ cost of having the \n services supplied again.\n\n8. TERMINATION.\n\n 8.1. \ + \ This License and the rights granted hereunder will terminate\n automatically if You\ + \ fail to comply with terms herein and fail to cure\n such breach within 30 days of\ + \ becoming aware of the breach. All\n sublicenses to the Covered Code which are properly\ + \ granted shall\n survive any termination of this License. Provisions which, by their\n\ + \ nature, must remain in effect beyond the termination of this License\n shall\ + \ survive.\n\n 8.2. If You initiate litigation by asserting a patent infringement\n\ + \ claim (excluding declatory judgment actions) against Initial Developer\n or\ + \ a Contributor (the Initial Developer or Contributor against whom\n You file such\ + \ action is referred to as \"Participant\") alleging that:\n\n (a) such Participant's\ + \ Contributor Version directly or indirectly\n infringes any patent, then any and all\ + \ rights granted by such\n Participant to You under Sections 2.1 and/or 2.2 of this\ + \ License\n shall, upon 60 days notice from Participant terminate prospectively,\n\ + \ unless if within 60 days after receipt of notice You either: (i)\n agree in\ + \ writing to pay Participant a mutually agreeable reasonable\n royalty for Your past\ + \ and future use of Modifications made by such\n Participant, or (ii) withdraw Your\ + \ litigation claim with respect to\n the Contributor Version against such Participant.\ + \ If within 60 days\n of notice, a reasonable royalty and payment arrangement are\ + \ not\n mutually agreed upon in writing by the parties or the litigation claim\n \ + \ is not withdrawn, the rights granted by Participant to You under\n Sections 2.1\ + \ and/or 2.2 automatically terminate at the expiration of\n the 60 day notice period\ + \ specified above.\n\n (b) any software, hardware, or device, other than such Participant's\n\ + \ Contributor Version, directly or indirectly infringes any patent, then\n any\ + \ rights granted to You by such Participant under Sections 2.1(b)\n and 2.2(b) are\ + \ revoked effective as of the date You first made, used,\n sold, distributed, or had\ + \ made, Modifications made by that\n Participant.\n\n 8.3. If You assert a patent\ + \ infringement claim against Participant\n alleging that such Participant's Contributor\ + \ Version directly or\n indirectly infringes any patent where such claim is resolved\ + \ (such as\n by license or settlement) prior to the initiation of patent\n infringement\ + \ litigation, then the reasonable value of the licenses\n granted by such Participant\ + \ under Sections 2.1 or 2.2 shall be taken\n into account in determining the amount\ + \ or value of any payment or\n license.\n\n 8.4. In the event of termination\ + \ under Sections 8.1 or 8.2 above,\n all end user license agreements (excluding distributors\ + \ and resellers)\n which have been validly granted by You or any distributor hereunder\n\ + \ prior to termination shall survive termination.\n\n9. LIMITATION OF LIABILITY.\n\n\ + \ UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\n (INCLUDING\ + \ NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL\n DEVELOPER, ANY OTHER\ + \ CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,\n OR ANY SUPPLIER OF ANY OF SUCH\ + \ PARTIES, BE LIABLE TO ANY PERSON FOR\n ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL\ + \ DAMAGES OF ANY\n CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,\n\ + \ WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\n COMMERCIAL\ + \ DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\n INFORMED OF THE POSSIBILITY\ + \ OF SUCH DAMAGES. THIS LIMITATION OF\n LIABILITY SHALL NOT APPLY TO LIABILITY FOR\ + \ DEATH OR PERSONAL INJURY\n RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE\ + \ LAW\n PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE\n EXCLUSION\ + \ OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO\n THIS EXCLUSION AND LIMITATION\ + \ MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS.\n\n The Covered Code is a\ + \ \"commercial item,\" as that term is defined in\n 48 C.F.R. 2.101 (Oct. 1995), consisting\ + \ of \"commercial computer\n software\" and \"commercial computer software documentation,\"\ + \ as such\n terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48\n \ + \ C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),\n all\ + \ U.S. Government End Users acquire Covered Code with only those\n rights set forth\ + \ herein.\n\n11. MISCELLANEOUS.\n\n This License represents the complete agreement\ + \ concerning subject\n matter hereof. If any provision of this License is held to be\n\ + \ unenforceable, such provision shall be reformed only to the extent\n necessary\ + \ to make it enforceable.\n\n This Agreement shall be governed by and construed according\ + \ to the \n law of the State of Victoria. The parties irrevocably submit to the \n\ + \ exclusive jurisdiction of the Courts of Victoria and Australia and \n any Courts\ + \ hearing appeals from such Courts. This Agreement is \n deemed to have been made\ + \ in Victoria.\n\n The application of the United Nations Convention on\n Contracts\ + \ for the International Sale of Goods is expressly excluded.\n Any law or regulation\ + \ which provides that the language of a contract\n shall be construed against the drafter\ + \ shall not apply to this\n License.\n\n12. RESPONSIBILITY FOR CLAIMS.\n\n As\ + \ between Initial Developer and the Contributors, each party is\n responsible for claims\ + \ and damages arising, directly or indirectly,\n out of its utilization of rights under\ + \ this License and You agree to\n work with Initial Developer and Contributors to distribute\ + \ such\n responsibility on an equitable basis. Nothing herein is intended or\n \ + \ shall be deemed to constitute any admission of liability.\n\n13. MULTIPLE-LICENSED CODE.\n\ + \n Initial Developer may designate portions of the Covered Code as\n \"Multiple-Licensed\"\ + . \"Multiple-Licensed\" means that the Initial\n Developer permits you to utilize\ + \ portions of the Covered Code under\n Your choice of the NPL or the alternative licenses,\ + \ if any, specified\n by the Initial Developer in the file described in Exhibit A.\n\ + \nEXHIBIT A - Netizen Open Source License\n\n ``The contents of this file are subject\ + \ to the Netizen Open Source\n License Version 1.0 (the \"License\"); you may not use\ + \ this file except \n in compliance with the License. You may obtain a copy of the\ + \ License at\n http://netizen.com.au/licenses/NOPL/\n\n Software distributed under\ + \ the License is distributed on an \"AS IS\"\n basis, WITHOUT WARRANTY OF ANY KIND,\ + \ either express or implied. See the\n License for the specific language governing\ + \ rights and limitations\n under the License.\n\n The Original Code is .\n\n\ + \ The Initial Developer of the Original Code is .\n Portions created by are\ + \ Copyright (C) \n . All Rights Reserved.\n\n Contributor(s): .\n\n Alternatively,\ + \ the contents of this file may be used under the terms\n of the license (the \"\ + [ ] License\"), in which case the\n provisions of [ ] License are applicable instead\ + \ of those\n above. If you wish to allow use of your version of this file only\n \ + \ under the terms of the [ ] License and not to allow others to use\n your version\ + \ of this file under the NOSL, indicate your decision by\n deleting the provisions\ + \ above and replace them with the notice and\n other provisions required by the [\ + \ ] License. If you do not delete\n the provisions above, a recipient may use your\ + \ version of this file\n under either the NOSL or the [ ] License.\"\n\n [NOTE:\ + \ The text of this Exhibit A may differ slightly from the text of\n the notices in\ + \ the Source Code files of the Original Code. You should\n use the text of this Exhibit\ + \ A rather than the text found in the\n Original Code Source Code for Your Modifications.]\n\ + \n ----------------------------------------------------------------------" json: nosl-1.0.json - yml: nosl-1.0.yml + yaml: nosl-1.0.yml html: nosl-1.0.html - text: nosl-1.0.LICENSE + license: nosl-1.0.LICENSE - license_key: nosl-3.0 + category: Copyleft spdx_license_key: NPOSL-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + Non-Profit Open Software License ("Non-Profit OSL") 3.0 + + This Non-Profit Open Software License ("Non-Profit OSL") version 3.0 (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: + + Licensed under the Non-Profit Open Software License version 3.0 + + 1) Grant of Copyright License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, for the duration of the copyright, to do the following: + + a) to reproduce the Original Work in copies, either alone or as part of a collective work; + + b) to translate, adapt, alter, transform, modify, or arrange the Original Work, thereby creating derivative works ("Derivative Works") based upon the Original Work; + + c) to distribute or communicate copies of the Original Work and Derivative Works to the public, with the proviso that copies of Original Work or Derivative Works that You distribute or communicate shall be licensed under this Non-Profit Open Software License or as provided in section 17(d); + + d) to perform the Original Work publicly; and + + e) to display the Original Work publicly. + + 2) Grant of Patent License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, for the duration of the patents, to make, use, sell, offer for sale, have made, and import the Original Work and Derivative Works. + + 3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work. + + 4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior permission of the Licensor. Except as expressly stated herein, nothing in this License grants any license to Licensor's trademarks, copyrights, patents, trade secrets or any other intellectual property. No patent license is granted to make, use, sell, offer for sale, have made, or import embodiments of any patent claims other than the licensed claims defined in Section 2. No license is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under terms different from this License any Original Work that Licensor otherwise would have a right to license. + + 5) External Deployment. The term "External Deployment" means the use, distribution, or communication of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether those works are distributed or communicated to those persons or made available as an application intended for use over a network. As an express condition for the grants of license hereunder, You must treat any External Deployment by You of the Original Work or a Derivative Work as a distribution under section 1(c). + + 6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent, or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. + + 7) Warranty of Provenance and Disclaimer of Warranty. The Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of non-infringement, merchantability or fitness for a particular purpose. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to the Original Work is granted by this License except under this disclaimer. + + 8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to anyone for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to the extent applicable law prohibits such limitation. + + 9) Acceptance and Termination. If, at any time, You expressly assented to this License, that assent indicates your clear and irrevocable acceptance of this License and all of its terms and conditions. If You distribute or communicate copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. This License conditions your rights to undertake the activities listed in Section 1, including your right to create Derivative Works based upon the Original Work, and doing so without honoring these terms and conditions is prohibited by copyright law and international treaty. Nothing in this License is intended to affect copyright exceptions and limitations (including "fair use" or "fair dealing"). This License shall terminate immediately and You may no longer exercise any of the rights granted to You by this License upon your failure to honor the conditions in Section 1(c). + + 10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. + + 11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of copyright or patent law in the appropriate jurisdiction. This section shall survive the termination of this License. + + 12) Attorneys' Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. + + 13) Miscellaneous. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. + + 14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (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. + + 15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. + + 16) Modification of This License. This License is Copyright © 2005 Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the "Modified License") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the "Open Software License" or "OSL" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice "Licensed under " or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process. + + 17) Non-Profit Amendment. The name of this amended version of the Open Software License ("OSL 3.0") is "Non-Profit Open Software License 3.0". The original OSL 3.0 license has been amended as follows: + + (a) Licensor represents and declares that it is a not-for-profit organization that derives no revenue whatsoever from the distribution of the Original Work or Derivative Works thereof, or from support or services relating thereto. + + (b) The first sentence of Section 7 ["Warranty of Provenance"] of OSL 3.0 has been stricken. For Original Works licensed under this Non-Profit OSL 3.0, LICENSOR OFFERS NO WARRANTIES WHATSOEVER. + + (c) In the first sentence of Section 8 ["Limitation of Liability"] of this Non-Profit OSL 3.0, the list of damages for which LIABILITY IS LIMITED now includes "direct" damages. + + (d) The proviso in Section 1(c) of this License now refers to this "Non-Profit Open Software License" rather than the "Open Software License". You may distribute or communicate the Original Work or Derivative Works thereof under this Non-Profit OSL 3.0 license only if You make the representation and declaration in paragraph (a) of this Section 17. Otherwise, You shall distribute or communicate the Original Work or Derivative Works thereof only under the OSL 3.0 license and You shall publish clear licensing notices so stating. Also by way of clarification, this License does not authorize You to distribute or communicate works under this Non-Profit OSL 3.0 if You received them under the original OSL 3.0 license. + + (e) Original Works licensed under this license shall reference "Non-Profit OSL 3.0" in licensing notices to distinguish them from works licensed under the original OSL 3.0 license. json: nosl-3.0.json - yml: nosl-3.0.yml + yaml: nosl-3.0.yml html: nosl-3.0.html - text: nosl-3.0.LICENSE + license: nosl-3.0.LICENSE - license_key: notre-dame + category: Permissive spdx_license_key: LicenseRef-scancode-notre-dame other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + COPYRIGHT NOTICE: + Copyright 1997-2000, University of Notre Dame. + Authors: Jeremy G. Siek, Jeffery M. Squyres, Michael P. McNally, and + Andrew Lumsdaine + + LICENSE AGREEMENT: + In consideration of being allowed to copy and/or use this software, + user agrees to be bound by the terms and conditions of this License + Agreement as "Licensee." This Agreement gives you, the LICENSEE, + certain rights and obligations. By using the software, you indicate + that you have read, understood, and will comply with the following + terms and conditions. + + Permission is hereby granted to use or copy this program for any + purpose, provided the text of this NOTICE (to include COPYRIGHT + NOTICE, LICENSE AGREEMENT, and DISCLAIMER) is retained with all + copies. Permission to modify the code and to distribute modified code + is granted, provided the text of this NOTICE is retained, a notice + that the code was modified is included with the above COPYRIGHT NOTICE + and with the COPYRIGHT NOTICE in any modified files, and that this + file ("LICENSE") is distributed with the modified code. + + Title to copyright to this software and its derivatives and to any + associated documentation shall at all times remain with Licensor and + LICENSEE agrees to preserve the same. Nothing in this Agreement shall + be construed as conferring rights to use in advertising, publicity or + otherwise any trademark or the name of the University of Notre Dame du + Lac. + + DISCLAIMER: + + LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. + By way of example, but not limitation, Licensor MAKES NO + REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY + PARTICULAR PURPOSE OR THAT THE USE OF THE LICENSED SOFTWARE COMPONENTS + OR DOCUMENTATION WILL NOT INFRINGE ANY PATENTS, COPYRIGHTS, TRADEMARKS + OR OTHER RIGHTS. + + The Authors and the University of Notre Dame du Lac shall not be held + liable for any liability nor for any direct, indirect or consequential + damages with respect to any claim by LICENSEE or any third party on + account of or arising from this Agreement or use of this software. + + Any disputes arising out of this Agreement or LICENSEE'S use of the + software at any time shall be resolved by the courts of the state of + Indiana. LICENSEE hereby consents to the jurisdiction of the Indiana + courts and waives the right to challenge the jurisdiction thereof in + any dispute arising out of this Agreement or Licensee's use of the + software. json: notre-dame.json - yml: notre-dame.yml + yaml: notre-dame.yml html: notre-dame.html - text: notre-dame.LICENSE + license: notre-dame.LICENSE - license_key: noweb + category: Copyleft Limited spdx_license_key: Noweb other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Noweb is protected by copyright. It is not public-domain\nsoftware or shareware, and\ + \ it is not protected by a ``copyleft''\nagreement like the one used by the Free Software\ + \ Foundation.\n\nNoweb is available free for any use in any field of endeavor. You may\n\ + redistribute noweb in whole or in part provided you acknowledge its\nsource and include\ + \ this COPYRIGHT file. You may modify noweb and\ncreate derived works, provided you retain\ + \ this copyright notice, but\nthe result may not be called noweb without my written consent.\ + \ \n\nYou may sell noweb if you wish. For example, you may sell a CD-ROM\nincluding noweb.\ + \ \n\nYou may sell a derived work, provided that all source code for your\nderived work\ + \ is available, at no additional charge, to anyone who buys\nyour derived work in any form.\ + \ You must give permisson for said\nsource code to be used and modified under the terms\ + \ of this license.\nYou must state clearly that your work uses or is based on noweb and\n\ + that noweb is available free of change. You must also request that\nbug reports on your\ + \ work be reported to you." json: noweb.json - yml: noweb.yml + yaml: noweb.yml html: noweb.html - text: noweb.LICENSE + license: noweb.LICENSE - license_key: npl-1.0 + category: Copyleft Limited spdx_license_key: NPL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "NETSCAPE PUBLIC LICENSE\nVersion 1.0\n\n1. Definitions.\n\n1.1. ``Contributor'' means\ + \ each entity that creates or contributes to the creation of Modifications.\n1.2. ``Contributor\ + \ Version'' means the combination of the Original Code, prior Modifications used by a Contributor,\ + \ and the Modifications made by that particular Contributor.\n\n1.3. ``Covered Code'' means\ + \ the Original Code or Modifications or the combination of the Original Code and Modifications,\ + \ in each case including portions thereof.\n\n1.4. ``Electronic Distribution Mechanism''\ + \ means a mechanism generally accepted in the software development community for the electronic\ + \ transfer of data.\n\n1.5. ``Executable'' means Covered Code in any form other than Source\ + \ Code.\n\n1.6. ``Initial Developer'' means the individual or entity identified as the Initial\ + \ Developer in the Source Code notice required by Exhibit A.\n\n1.7. ``Larger Work'' means\ + \ a work which combines Covered Code or portions thereof with code not governed by the terms\ + \ of this License.\n\n1.8. ``License'' means this document.\n\n1.9. ``Modifications'' means\ + \ any addition to or deletion from the substance or structure of either the Original Code\ + \ or any previous Modifications. When Covered Code is released as a series of files, a Modification\ + \ is:\n\nA. Any addition to or deletion from the contents of a file containing Original\ + \ Code or previous Modifications.\n\nB. Any new file that contains any part of the Original\ + \ Code or previous Modifications.\n\n1.10. ``Original Code'' means Source Code of computer\ + \ software code which is described in the Source Code notice required by Exhibit A as Original\ + \ Code, and which, at the time of its release under this License is not already Covered\ + \ Code governed by this License.\n\n1.11. ``Source Code'' means the preferred form of the\ + \ Covered Code for making modifications to it, including all modules it contains, plus any\ + \ associated interface definition files, scripts used to control compilation and installation\ + \ of an Executable, or a list of source code differential comparisons against either the\ + \ Original Code or another well known, available Covered Code of the Contributor's choice.\ + \ The Source Code can be in a compressed or archival form, provided the appropriate decompression\ + \ or de-archiving software is widely available for no charge.\n\n1.12. ``You'' means an\ + \ individual or a legal entity exercising rights under, and complying with all of the terms\ + \ of, this License or a future version of this License issued under Section 6.1. For legal\ + \ entities, ``You'' includes any entity which controls, is controlled by, or is under common\ + \ control with You. For purposes of this definition, ``control'' means (a) the power, direct\ + \ or indirect, to cause the direction or management of such entity, whether by contract\ + \ or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares\ + \ or beneficial ownership of such entity.\n\n2. Source Code License.\n2.1. The Initial Developer\ + \ Grant. \nThe Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive\ + \ license, subject to third party intellectual property claims:\n(a) to use, reproduce,\ + \ modify, display, perform, sublicense and distribute the Original Code (or portions thereof)\ + \ with or without Modifications, or as part of a Larger Work; and\n\n(b) under patents now\ + \ or hereafter owned or controlled by Initial Developer, to make, have made, use and sell\ + \ (``Utilize'') the Original Code (or portions thereof), but solely to the extent that any\ + \ such patent is reasonably necessary to enable You to Utilize the Original Code (or portions\ + \ thereof) and not to any greater extent that may be necessary to Utilize further Modifications\ + \ or combinations.\n\n2.2. Contributor Grant. \nEach Contributor hereby grants You a world-wide,\ + \ royalty-free, non-exclusive license, subject to third party intellectual property claims:\n\ + \n(a) to use, reproduce, modify, display, perform, sublicense and distribute the Modifications\ + \ created by such Contributor (or portions thereof) either on an unmodified basis, with\ + \ other Modifications, as Covered Code or as part of a Larger Work; and\n\n(b) under patents\ + \ now or hereafter owned or controlled by Contributor, to Utilize the Contributor Version\ + \ (or portions thereof), but solely to the extent that any such patent is reasonably necessary\ + \ to enable You to Utilize the Contributor Version (or portions thereof), and not to any\ + \ greater extent that may be necessary to Utilize further Modifications or combinations.\n\ + \n3. Distribution Obligations.\n3.1. Application of License. \nThe Modifications which You\ + \ create or to which You contribute are governed by the terms of this License, including\ + \ without limitation Section 2.2. The Source Code version of Covered Code may be distributed\ + \ only under the terms of this License or a future version of this License released under\ + \ Section 6.1, and You must include a copy of this License with every copy of the Source\ + \ Code You distribute. You may not offer or impose any terms on any Source Code version\ + \ that alters or restricts the applicable version of this License or the recipients' rights\ + \ hereunder. However, You may include an additional document offering the additional rights\ + \ described in Section 3.5.\n3.2. Availability of Source Code. \nAny Modification which\ + \ You create or to which You contribute must be made available in Source Code form under\ + \ the terms of this License either on the same media as an Executable version or via an\ + \ accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version\ + \ available; and if made available via Electronic Distribution Mechanism, must remain available\ + \ for at least twelve (12) months after the date it initially became available, or at least\ + \ six (6) months after a subsequent version of that particular Modification has been made\ + \ available to such recipients. You are responsible for ensuring that the Source Code version\ + \ remains available even if the Electronic Distribution Mechanism is maintained by a third\ + \ party.\n\n3.3. Description of Modifications. \nYou must cause all Covered Code to which\ + \ you contribute to contain a file documenting the changes You made to create that Covered\ + \ Code and the date of any change. You must include a prominent statement that the Modification\ + \ is derived, directly or indirectly, from Original Code provided by the Initial Developer\ + \ and including the name of the Initial Developer in (a) the Source Code, and (b) in any\ + \ notice in an Executable version or related documentation in which You describe the origin\ + \ or ownership of the Covered Code.\n\n3.4. Intellectual Property Matters\n\n(a) Third Party\ + \ Claims. \nIf You have knowledge that a party claims an intellectual property right in\ + \ particular functionality or code (or its utilization under this License), you must include\ + \ a text file with the source code distribution titled ``LEGAL'' which describes the claim\ + \ and the party making the claim in sufficient detail that a recipient will know whom to\ + \ contact. If you obtain such knowledge after You make Your Modification available as described\ + \ in Section 3.2, You shall promptly modify the LEGAL file in all copies You make available\ + \ thereafter and shall take other steps (such as notifying appropriate mailing lists or\ + \ newsgroups) reasonably calculated to inform those who received the Covered Code that new\ + \ knowledge has been obtained.\n\n(b) Contributor APIs. \nIf Your Modification is an application\ + \ programming interface and You own or control patents which are reasonably necessary to\ + \ implement that API, you must also include this information in the LEGAL file.\n\n3.5.\ + \ Required Notices. \nYou must duplicate the notice in Exhibit A in each file of the Source\ + \ Code, and this License in any documentation for the Source Code, where You describe recipients'\ + \ rights relating to Covered Code. If You created one or more Modification(s), You may add\ + \ your name as a Contributor to the notice described in Exhibit A. If it is not possible\ + \ to put such notice in a particular Source Code file due to its structure, then you must\ + \ include such notice in a location (such as a relevant directory file) where a user would\ + \ be likely to look for such a notice. You may choose to offer, and to charge a fee for,\ + \ warranty, support, indemnity or liability obligations to one or more recipients of Covered\ + \ Code. However, You may do so only on Your own behalf, and not on behalf of the Initial\ + \ Developer or any Contributor. You must make it absolutely clear than any such warranty,\ + \ support, indemnity or liability obligation is offered by You alone, and You hereby agree\ + \ to indemnify the Initial Developer and every Contributor for any liability incurred by\ + \ the Initial Developer or such Contributor as a result of warranty, support, indemnity\ + \ or liability terms You offer.\n\n3.6. Distribution of Executable Versions. \nYou may distribute\ + \ Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been\ + \ met for that Covered Code, and if You include a notice stating that the Source Code version\ + \ of the Covered Code is available under the terms of this License, including a description\ + \ of how and where You have fulfilled the obligations of Section 3.2. The notice must be\ + \ conspicuously included in any notice in an Executable version, related documentation or\ + \ collateral in which You describe recipients' rights relating to the Covered Code. You\ + \ may distribute the Executable version of Covered Code under a license of Your choice,\ + \ which may contain terms different from this License, provided that You are in compliance\ + \ with the terms of this License and that the license for the Executable version does not\ + \ attempt to limit or alter the recipient's rights in the Source Code version from the rights\ + \ set forth in this License. If You distribute the Executable version under a different\ + \ license You must make it absolutely clear that any terms which differ from this License\ + \ are offered by You alone, not by the Initial Developer or any Contributor. You hereby\ + \ agree to indemnify the Initial Developer and every Contributor for any liability incurred\ + \ by the Initial Developer or such Contributor as a result of any such terms You offer.\n\ + \n3.7. Larger Works. \nYou may create a Larger Work by combining Covered Code with other\ + \ code not governed by the terms of this License and distribute the Larger Work as a single\ + \ product. In such a case, You must make sure the requirements of this License are fulfilled\ + \ for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\nIf it is\ + \ impossible for You to comply with any of the terms of this License with respect to some\ + \ or all of the Covered Code due to statute or regulation then You must: (a) comply with\ + \ the terms of this License to the maximum extent possible; and (b) describe the limitations\ + \ and the code they affect. Such description must be included in the LEGAL file described\ + \ in Section 3.4 and must be included with all distributions of the Source Code. Except\ + \ to the extent prohibited by statute or regulation, such description must be sufficiently\ + \ detailed for a recipient of ordinary skill to be able to understand it.\n\n5. Application\ + \ of this License.\nThis License applies to code to which the Initial Developer has attached\ + \ the notice in Exhibit A, and to related Covered Code.\n6. Versions of the License.\n6.1.\ + \ New Versions. \nNetscape Communications Corporation (``Netscape'') may publish revised\ + \ and/or new versions of the License from time to time. Each version will be given a distinguishing\ + \ version number.\n6.2. Effect of New Versions. \nOnce Covered Code has been published under\ + \ a particular version of the License, You may always continue to use it under the terms\ + \ of that version. You may also choose to use such Covered Code under the terms of any subsequent\ + \ version of the License published by Netscape. No one other than Netscape has the right\ + \ to modify the terms applicable to Covered Code created under this License.\n\n6.3. Derivative\ + \ Works. \nIf you create or use a modified version of this License (which you may only do\ + \ in order to apply it to code which is not already Covered Code governed by this License),\ + \ you must (a) rename Your license so that the phrases ``Mozilla'', ``MOZILLAPL'', ``MOZPL'',\ + \ ``Netscape'', ``NPL'' or any confusingly similar phrase do not appear anywhere in your\ + \ license and (b) otherwise make it clear that your version of the license contains terms\ + \ which differ from the Mozilla Public License and Netscape Public License. (Filling in\ + \ the name of the Initial Developer, Original Code or Contributor in the notice described\ + \ in Exhibit A shall not of themselves be deemed to be modifications of this License.)\n\ + \n7. DISCLAIMER OF WARRANTY.\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN ``AS IS''\ + \ BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION,\ + \ WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR\ + \ PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED\ + \ CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE\ + \ INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING,\ + \ REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS\ + \ LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\ + 8. TERMINATION.\nThis License and the rights granted hereunder will terminate automatically\ + \ if You fail to comply with terms herein and fail to cure such breach within 30 days of\ + \ becoming aware of the breach. All sublicenses to the Covered Code which are properly granted\ + \ shall survive any termination of this License. Provisions which, by their nature, must\ + \ remain in effect beyond the termination of this License shall survive.\n9. LIMITATION\ + \ OF LIABILITY.\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING\ + \ NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR,\ + \ OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE\ + \ TO YOU OR ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\ + \ OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE,\ + \ COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN\ + \ IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION\ + \ OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM\ + \ SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS\ + \ DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT\ + \ EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n10. U.S. GOVERNMENT END USERS.\nThe Covered\ + \ Code is a ``commercial item,'' as that term is defined in 48 C.F.R. 2.101 (Oct. 1995),\ + \ consisting of ``commercial computer software'' and ``commercial computer software documentation,''\ + \ as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212\ + \ and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users\ + \ acquire Covered Code with only those rights set forth herein.\n11. MISCELLANEOUS.\nThis\ + \ License represents the complete agreement concerning subject matter hereof. If any provision\ + \ of this License is held to be unenforceable, such provision shall be reformed only to\ + \ the extent necessary to make it enforceable. This License shall be governed by California\ + \ law provisions (except to the extent applicable law, if any, provides otherwise), excluding\ + \ its conflict-of-law provisions. With respect to disputes in which at least one party is\ + \ a citizen of, or an entity chartered or registered to do business in, the United States\ + \ of America: (a) unless otherwise agreed in writing, all disputes relating to this License\ + \ (excepting any dispute relating to intellectual property rights) shall be subject to final\ + \ and binding arbitration, with the losing party paying all costs of arbitration; (b) any\ + \ arbitration relating to this Agreement shall be held in Santa Clara County, California,\ + \ under the auspices of JAMS/EndDispute; and (c) any litigation relating to this Agreement\ + \ shall be subject to the jurisdiction of the Federal Courts of the Northern District of\ + \ California, with venue lying in Santa Clara County, California, with the losing party\ + \ responsible for costs, including without limitation, court costs and reasonable attorneys\ + \ fees and expenses. The application of the United Nations Convention on Contracts for the\ + \ International Sale of Goods is expressly excluded. Any law or regulation which provides\ + \ that the language of a contract shall be construed against the drafter shall not apply\ + \ to this License.\n12. RESPONSIBILITY FOR CLAIMS.\nExcept in cases where another Contributor\ + \ has failed to comply with Section 3.4, You are responsible for damages arising, directly\ + \ or indirectly, out of Your utilization of rights under this License, based on the number\ + \ of copies of Covered Code you made available, the revenues you received from utilizing\ + \ such rights, and other relevant factors. You agree to work with affected parties to distribute\ + \ responsibility on an equitable basis.\nAMENDMENTS\nAdditional Terms applicable to the\ + \ Netscape Public License.\nI. Effect. \nThese additional terms described in this Netscape\ + \ Public License -- Amendments shall apply to the Mozilla Communicator client code and to\ + \ all Covered Code under this License.\n\nII. ``Netscape's Branded Code'' means Covered\ + \ Code that Netscape distributes and/or permits others to distribute under one or more trademark(s)\ + \ which are controlled by Netscape but which are not licensed for use under this License.\n\ + \nIII. Netscape and logo. \nThis License does not grant any rights to use the trademark\ + \ ``Netscape'', the ``Netscape N and horizon'' logo or the Netscape lighthouse logo, even\ + \ if such marks are included in the Original Code.\n\nIV. Inability to Comply Due to Contractual\ + \ Obligation. \nPrior to licensing the Original Code under this License, Netscape has licensed\ + \ third party code for use in Netscape's Branded Code. To the extent that Netscape is limited\ + \ contractually from making such third party code available under this License, Netscape\ + \ may choose to reintegrate such code into Covered Code without being required to distribute\ + \ such code in Source Code form, even if such code would otherwise be considered ``Modifications''\ + \ under this License.\n\nV. Use of Modifications and Covered Code by Initial Developer.\n\ + \nV.1. In General. \nThe obligations of Section 3 apply to Netscape, except to the extent\ + \ specified in this Amendment, Section V.2 and V.3.\n\nV.2. Other Products. \nNetscape may\ + \ include Covered Code in products other than the Netscape's Branded Code which are released\ + \ by Netscape during the two (2) years following the release date of the Original Code,\ + \ without such additional products becoming subject to the terms of this License, and may\ + \ license such additional products on different terms from those contained in this License.\n\ + \nV.3. Alternative Licensing. \nNetscape may license the Source Code of Netscape's Branded\ + \ Code, including Modifications incorporated therein, without such additional products becoming\ + \ subject to the terms of this License, and may license such additional products on different\ + \ terms from those contained in this License.\n\nVI. Arbitration and Litigation. \nNotwithstanding\ + \ the limitations of Section 11 above, the provisions regarding arbitration and litigation\ + \ in Section 11(a), (b) and (c) of the License shall apply to all disputes relating to this\ + \ License.\n\nEXHIBIT A.\n``The contents of this file are subject to the Netscape Public\ + \ License Version 1.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.mozilla.org/NPL/\n\ + Software distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY\ + \ OF ANY KIND, either express or implied. See the License for the specific language governing\ + \ rights and limitations under the License.\n\nThe Original Code is Mozilla Communicator\ + \ client code, released March 31, 1998.\n\nThe Initial Developer of the Original Code is\ + \ Netscape Communications Corporation. Portions created by Netscape are Copyright (C) 1998\ + \ Netscape Communications Corporation. All Rights Reserved.\n\nContributor(s): .''\n\n\n\ + [NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the\ + \ Source Code files of the Original Code. This is due to time constraints encountered in\ + \ simultaneously finalizing the License and in preparing the Original Code for release.\ + \ You should use the text of this Exhibit A rather than the text found in the Original Code\ + \ Source Code for Your Modifications.]" json: npl-1.0.json - yml: npl-1.0.yml + yaml: npl-1.0.yml html: npl-1.0.html - text: npl-1.0.LICENSE + license: npl-1.0.LICENSE - license_key: npl-1.1 + category: Copyleft Limited spdx_license_key: NPL-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "AMENDMENTS\nThe Netscape Public License Version 1.1 (\"NPL\") consists of the Mozilla\ + \ Public License Version 1.1 with the following Amendments, including Exhibit A-Netscape\ + \ Public License. Files identified with \"Exhibit A-Netscape Public License\" are governed\ + \ by the Netscape Public License Version 1.1.\n\nAdditional Terms applicable to the Netscape\ + \ Public License.\n\nI. Effect. \nThese additional terms described in this Netscape Public\ + \ License -- Amendments shall apply to the Mozilla Communicator client code and to all Covered\ + \ Code under this License.\nII. ''Netscape's Branded Code'' means Covered Code that Netscape\ + \ distributes and/or permits others to distribute under one or more trademark(s) which are\ + \ controlled by Netscape but which are not licensed for use under this License.\n\nIII.\ + \ Netscape and logo. \nThis License does not grant any rights to use the trademarks \"Netscape'',\ + \ the \"Netscape N and horizon'' logo or the \"Netscape lighthouse\" logo, \"Netcenter\"\ + , \"Gecko\", \"Java\" or \"JavaScript\", \"Smart Browsing\" even if such marks are included\ + \ in the Original Code or Modifications.\n\nIV. Inability to Comply Due to Contractual Obligation.\ + \ \nPrior to licensing the Original Code under this License, Netscape has licensed third\ + \ party code for use in Netscape's Branded Code. To the extent that Netscape is limited\ + \ contractually from making such third party code available under this License, Netscape\ + \ may choose to reintegrate such code into Covered Code without being required to distribute\ + \ such code in Source Code form, even if such code would otherwise be considered ''Modifications''\ + \ under this License.\n\nV. Use of Modifications and Covered Code by Initial Developer.\n\ + \nV.1. In General. \nThe obligations of Section 3 apply to Netscape, except to the extent\ + \ specified in this Amendment, Section V.2 and V.3.\nV.2. Other Products. \nNetscape may\ + \ include Covered Code in products other than the Netscape's Branded Code which are released\ + \ by Netscape during the two (2) years following the release date of the Original Code,\ + \ without such additional products becoming subject to the terms of this License, and may\ + \ license such additional products on different terms from those contained in this License.\n\ + \nV.3. Alternative Licensing. \nNetscape may license the Source Code of Netscape's Branded\ + \ Code, including Modifications incorporated therein, without such Netscape Branded Code\ + \ becoming subject to the terms of this License, and may license such Netscape Branded Code\ + \ on different terms from those contained in this License. \n \n\nVI. Litigation. \nNotwithstanding\ + \ the limitations of Section 11 above, the provisions regarding litigation in Section 11(a),\ + \ (b) and (c) of the License shall apply to all disputes relating to this License.\n\nEXHIBIT\ + \ A-Netscape Public License.\n\n\n''The contents of this file are subject to the Netscape\ + \ Public License Version 1.1 (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.mozilla.org/NPL/\n\ + Software distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY\ + \ OF ANY KIND, either express or implied. See the License for the specific language governing\ + \ rights and limitations under the License.\n\nThe Original Code is Mozilla Communicator\ + \ client code, released March 31, 1998.\n\nThe Initial Developer of the Original Code is\ + \ Netscape Communications Corporation. Portions created by Netscape are Copyright (C) 1998-1999\ + \ Netscape Communications Corporation. All Rights Reserved.\n\nContributor(s): .\n\n\n\ + Alternatively, the contents of this file may be used under the terms of the license (the\ + \ \"[ ] License\"), in which case the provisions of [ ] License are applicable instead\ + \ of those above. If you wish to allow use of your version of this file only under the\ + \ terms of the [ ] License and not to allow others to use your version of this file under\ + \ the NPL, indicate your decision by deleting the provisions above and replace them with\ + \ the notice and other provisions required by the [ ] License. If you do not delete the\ + \ provisions above, a recipient may use your version of this file under either the NPL or\ + \ the [ ] License.\"" json: npl-1.1.json - yml: npl-1.1.yml + yaml: npl-1.1.yml html: npl-1.1.html - text: npl-1.1.LICENSE + license: npl-1.1.LICENSE +- license_key: npsl-exception-0.92 + category: Copyleft + spdx_license_key: LicenseRef-scancode-npsl-exception-0.92 + other_spdx_license_keys: [] + is_exception: yes + is_deprecated: no + text: "Nmap Public Source License Version 0.92\nFor more information on this license, see\ + \ https://nmap.org/npsl/\n\n0. Preamble\n\nThe intent of this license is to establish freedom\ + \ to share and change\nthe software regulated by this license under the open source model.\ + \ It\nalso includes a Contributor Agreement and disclaims any warranty on\nCovered Software.\ + \ Proprietary software companies wishing to use or\nincorporate Covered Software within\ + \ their programs must contact\nLicensor to purchase a separate license. Open source developers\ + \ who\nwish to incorporate parts of Covered Software into free software with\nconflicting\ + \ licenses may write Licensor to request a waiver of terms.\n\nIf the Nmap Project (directly\ + \ or through one of its commercial\nlicensing customers) has granted you additional rights\ + \ to Nmap or Nmap\nOEM, those additional rights take precedence where they conflict with\n\ + the terms of this license agreement.\n\nThis License represents the complete agreement concerning\ + \ subject\nmatter hereof. It contains the license terms themselves, but not the\nreasoning\ + \ behind them or detailed explanations. For further\ninformation about this License, see\ + \ https://nmap.org/npsl/ . That page\nmakes a good faith attempt to explain this License,\ + \ but it does not\nand can not modify its governing terms in any way.\n\n1. Definitions\n\ + \n* \"Contribution\" means any work of authorship, including the original\n version of\ + \ the Work and any modifications or additions to that Work\n or Derivative Works thereof,\ + \ that is intentionally submitted to\n Licensor by the copyright owner or by an individual\ + \ or Legal Entity\n authorized to submit on behalf of the copyright owner. For the\n purposes\ + \ of this definition, \"submitted\" means any form of\n electronic, verbal, or written\ + \ communication sent to the Licensor or\n its representatives, including but not limited\ + \ to communication on\n electronic mailing lists, source code control systems, web sites,\n\ + \ and issue tracking systems that are managed by, or on behalf of, the\n Licensor for\ + \ the purpose of discussing and improving the Work, but\n excluding communication that\ + \ is conspicuously marked or otherwise\n designated in writing by the copyright owner as\ + \ \"Not a\n Contribution.\"\n\n* \"Contributor\" means Licensor and any individual or Legal\ + \ Entity on\n behalf of whom a Contribution has been received by Licensor and\n subsequently\ + \ incorporated within the Work.\n\n* \"Covered Software\" means the work of authorship,\ + \ whether in Source\n or Object form, made available under the License, as indicated by\ + \ a\n copyright notice that is included in or attached to the work\n\n* \"Derivative Work\"\ + \ or \"Collective Work\" means any work, whether in\n Source or Object form, that is based\ + \ on (or derived from) the Work\n and for which the editorial revisions, annotations, elaborations,\ + \ or\n other modifications represent, as a whole, an original work of\n authorship. It\ + \ includes software as described in Section 3 of this\n License.\n\n* \"Executable\" means\ + \ Covered Software in any form other than Source Code.\n\n* \"Externally Deploy\" means\ + \ to Deploy the Covered Software in any way\n that may be accessed or used by anyone other\ + \ than You, used to\n provide any services to anyone other than You, or used in any way\ + \ to\n deliver any content to anyone other than You, whether the Covered\n Software is\ + \ distributed to those parties, made available as an\n application intended for use over\ + \ a computer network, or used to\n provide services or otherwise deliver content to anyone\ + \ other than\n You.\n\n* \"GPL\" means the GNU General Public License Version 2, as published\n\ + \ by the Free Software Foundation and provided in Exhibit A.\n\n* \"Legal Entity\" means\ + \ the union of the acting entity and all other\n entities that control, are controlled\ + \ by, or are under common\n control with that entity. For the purposes of this definition,\n\ + \ \"control\" means (i) the power, direct or indirect, to cause the\n direction or management\ + \ of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent\ + \ (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\ + \n* \"License\" means this document, including Exhibits.\n\n* \"Licensor\" means Insecure.Com\ + \ LLC and its successors and assigns.\n\n* \"Main License Body\" means all of the terms\ + \ of this document,\n excluding Exhibits.\n\n* \"You\" (or \"Your\") means an individual\ + \ or Legal Entity exercising\n permissions granted by this License.\n\n2. General Terms\n\ + \nCovered Software is licensed to you under the terms of the GPL\n(Exhibit A), with all\ + \ the exceptions, clarifications, and additions\nnoted in this Main License Body. Where\ + \ the terms in this Main License\nBody conflict in any way with the GPL, the Main License\ + \ Body terms\nshall take precedence. These additional terms mean that You may not\ndistribute\ + \ Covered Software or Derivative Works under plain GPL terms\nwithout special permission\ + \ from Licensor.\n\nYou are not required to accept this License. However, nothing else\n\ + grants You permission to use, copy, modify or distribute the software\nor its derivative\ + \ works. These actions are prohibited by law if You do\nnot accept this License. Therefore,\ + \ by modifying, copying or\ndistributing the software (or any work based on the software),\ + \ You\nindicate your acceptance of this License to do so, and all its terms\nand conditions.\ + \ In addition, you agree to the terms of this License by\nclicking the Accept button or\ + \ downloading the software.\n\n3. Derivative Works\n\nThis License (including the GPL portion)\ + \ places important restrictions\non derived works. Licensor interprets that term quite broadly.\ + \ To\navoid any misunderstandings, we consider software to constitute a\n\"derivative work\"\ + \ of Covered Software for the purposes of this license\nif it does any of the following:\n\ + \n* Integrates source code from Covered Software\n\n* Reads or includes Covered Software\ + \ data files, such as nmap-os-db or\n nmap-service-probes.\n\n* Is designed specifically\ + \ to execute Covered Software and parse the\n results (as opposed to typical shell or execution-menu\ + \ apps, which\n will execute anything you tell them to).\n\n* Includes Covered Software\ + \ in a proprietary executable installer. The\n installers produced by InstallShield are\ + \ an example of\n this. Including Nmap with other software in compressed or archival\n\ + \ form does not trigger this provision, provided appropriate open\n source decompression\ + \ or de-archiving software is widely available\n for no charge. For the purposes of this\ + \ license, an installer is\n considered to include Covered Software even if it actually\ + \ retrieves\n a copy of Covered Software from another source during runtime (such\n as\ + \ by downloading it from the Internet).\n\n* Links (statically or dynamically) to a library\ + \ which does any of the\n above\n\n* Executes a helper program, module, or script to do\ + \ any of the above.\n This list is not exclusive, but is meant to clarify Licensor's\n\ + \ intentions with some common examples. Distribution of any works\n which meet these criteria\ + \ must be under the terms of this license\n (including this Main License Body and GPL),\ + \ with no additional\n conditions or restrictions. They must abide by all restrictions\ + \ that\n the GPL places on derivative or collective works, including the\n requirements\ + \ for distributing their source code and allowing\n royalty-free redistribution.\n\n4.\ + \ Contributor Agreement (Grant of Copyright and Patent Licenses)\n\nEach Contributor hereby\ + \ grants to Licensor a perpetual, worldwide,\nnon-exclusive, no-charge, royalty-free, irrevocable\ + \ copyright license\nto reproduce, prepare Derivative Works of, publicly display, publicly\n\ + perform, sublicense, and distribute the Contribution and such\nDerivative Works in Source\ + \ or Object form.\n\nEach Contributor hereby grants to You and Licensor a perpetual,\nworldwide,\ + \ non-exclusive, no-charge, royalty-free, irrevocable (except\nas stated in this section)\ + \ patent license to make, have made, use,\noffer to sell, sell, import, and otherwise transfer\ + \ the Work, where\nsuch license applies only to those patent claims licensable by such\n\ + Contributor that are necessarily infringed by their Contribution(s)\nalone or by combination\ + \ of their Contribution(s) with the Work to\nwhich such Contribution(s) was submitted. If\ + \ You institute patent\nlitigation against any entity (including a cross-claim or counterclaim\n\ + in a lawsuit) alleging that the Work or a Contribution incorporated\nwithin the Work constitutes\ + \ direct or contributory patent\ninfringement, then any patent licenses granted to You under\ + \ this\nLicense for that Work shall terminate as of the date such litigation\nis filed.\n\ + \nContributors may impose different terms on their Contributions by\nstating those terms\ + \ in writing at the time the Contribution is\nmade. Contributors may withhold all authority\ + \ from Licensor to\nincorporate submissions by conspicuously marking or otherwise\ndesignating\ + \ them in writing as \"Not a Contribution\" at the time they\nmake the work available.\n\ + \n5. Disclaimer of Warranty and Limitation of Liability\n\nUnless required by applicable\ + \ law or agreed to in writing, Licensor\nprovides the Covered Software (and each Contributor\ + \ provides its\nContributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS\n\ + OF ANY KIND, either express or implied, including, without limitation,\nany warranties or\ + \ conditions of TITLE, NON-INFRINGEMENT,\nMERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE.\ + \ You are solely\nresponsible for determining the appropriateness of using or\nredistributing\ + \ the Covered Software and assume any risks associated\nwith Your exercise of permissions\ + \ under this License.\n\nIn no event and under no legal theory, whether in tort (including\n\ + negligence), contract, or otherwise, unless required by applicable law\n(such as deliberate\ + \ and grossly negligent acts) or agreed to in\nwriting, shall any Contributor be liable\ + \ to You for damages, including\nany direct, indirect, special, incidental, or consequential\ + \ damages of\nany character arising as a result of this License or out of the use or\ninability\ + \ to use the Covered Software (including but not limited to\ndamages for loss of goodwill,\ + \ work stoppage, computer failure or\nmalfunction, or any and all other commercial damages\ + \ or losses), even\nif such Contributor has been advised of the possibility of such\ndamages.\n\ + \n6. External Deployment\n\nIf You Externally Deploy Covered Software, such as hosting a\ + \ website\ndesigned to execute Nmap scans for users, the system and its\ndocumentation must,\ + \ if technically feasible, prominently display a\nnotice stating that the system uses the\ + \ Nmap Security Scanner to\nperform its tasks. If technically feasible, the notice must\ + \ contain a\nhyperlink to https://nmap.org/ or provide that URL in the text.\n\n7. Trademarks\n\ + \nThis License does not grant permission to use the trade names,\ntrademarks, service marks,\ + \ or product names of the Licensor, except as\nrequired for reasonable and customary use\ + \ in describing the origin of\nthe Covered Software.\n\n8. Termination for Patent Action\n\ + \nThis License shall terminate automatically and You may no longer\nexercise any of the\ + \ rights granted to You by this License as of the\ndate You commence an action, including\ + \ a cross-claim or counterclaim,\nagainst Licensor or any licensee alleging that the Covered\ + \ Software\ninfringes a patent. This termination provision shall not apply for an\naction\ + \ alleging patent infringement by combinations of the Covered\nSoftware with other software\ + \ or hardware.\n\n9. Jurisdiction, Venue and Governing Law\n\nThis License is governed by\ + \ the laws of the State of Washington and\nthe intellectual property laws of the United\ + \ States of America,\nexcluding the jurisdiction's conflict-of-law provisions. Any\nlitigation\ + \ or other dispute resolution between You and Licensor\nrelating to this License shall take\ + \ place in the Northern District of\nCalifornia, and You and Licensor hereby consent to\ + \ the personal\njurisdiction of, and venue in, the state and federal courts within\nthat\ + \ District with respect to this License. The application of the\nUnited Nations Convention\ + \ on Contracts for the International Sale of\nGoods is expressly excluded.\n\n10. Npcap\ + \ and the Official Nmap Windows Builds\n\nThe official Windows Nmap builds includes the\ + \ Npcap driver and library\n(https://npcap.org) for packet capture and transmission on\n\ + Windows. That software is under its own separate license terms rather\nthan this license.\ + \ Therefore anyone wishing to use or redistribute\nboth pieces of software must comply with\ + \ both licenses. Since Npcap\ndoes not allow for redistribution without special permission,\ + \ the\nofficial Nmap Windows builds which include Npcap may not be\nredistributed without\ + \ special permission. Such permission can be\nrequested by email to sales@nmap.com.\n\n\ + 11. Permission to link with OpenSSL\n\nLicensor grants permission to link Covered Software\ + \ with any version\nof the OpenSSL library from OpenSSL.Org, and distribute linked\ncombinations\ + \ including the two (assuming such distribution is\notherwise allowed by this agreement).\ + \ You must obey this License in\nall respects for all code used other than OpenSSL.\n\n\ + 12. Waiver; Construction\n\nFailure by Licensor or any Contributor to enforce any provision\ + \ of\nthis License will not be deemed a waiver of future enforcement of that\nor any other\ + \ provision. Any law or regulation which provides that the\nlanguage of a contract shall\ + \ be construed against the drafter will not\napply to this License.\n\n13. Enforceability\n\ + \nIf any provision of this License is invalid or unenforceable under\napplicable law, it\ + \ shall not affect the validity or enforceability of\nthe remainder of the terms of this\ + \ License, and without further action\nby the parties hereto, such provision shall be reformed\ + \ to the minimum\nextent necessary to make such provision valid and enforceable.\n\nExhibit\ + \ A. The GNU General Public License Version 2\nGNU GENERAL PUBLIC LICENSE\nVersion 2, June\ + \ 1991\n\nCopyright (C) 1989, 1991 Free Software Foundation, Inc. \n51 Franklin Street,\ + \ Fifth Floor, Boston, MA 02110-1301, USA\n\nEveryone is permitted to copy and distribute\ + \ verbatim copies\nof this license document, but changing it is not allowed.\nPreamble\n\ + \nThe licenses for most software are designed to take away your freedom\nto share and change\ + \ it. By contrast, the GNU General Public License is\nintended to guarantee your freedom\ + \ to share and change free\nsoftware--to make sure the software is free for all its users.\ + \ This\nGeneral Public License applies to most of the Free Software\nFoundation's software\ + \ and to any other program whose authors commit to\nusing it. (Some other Free Software\ + \ Foundation software is covered by\nthe GNU Lesser General Public License instead.) You\ + \ can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring\ + \ to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\n\ + have the freedom to distribute copies of free software (and charge for\nthis service if\ + \ you wish), that you receive source code or can get it\nif you want it, that you can change\ + \ the software or use pieces of it\nin new free programs; and that you know you can do these\ + \ things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to\ + \ deny you these rights or to ask you to surrender the\nrights. These restrictions translate\ + \ to certain responsibilities for\nyou if you distribute copies of the software, or if you\ + \ modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis\ + \ or for a fee, you must give the recipients all the rights that\nyou have. You must make\ + \ sure that they, too, receive or can get the\nsource code. And you must show them these\ + \ terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright\ + \ the software, and\n(2) offer you this license which gives you legal permission to copy,\n\ + distribute and/or modify the software.\n\nAlso, for each author's protection and ours, we\ + \ want to make certain\nthat everyone understands that there is no warranty for this free\n\ + software. If the software is modified by someone else and passed on,\nwe want its recipients\ + \ to know that what they have is not the\noriginal, so that any problems introduced by others\ + \ will not reflect\non the original authors' reputations.\n\nFinally, any free program is\ + \ threatened constantly by software\npatents. We wish to avoid the danger that redistributors\ + \ of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram\ + \ proprietary. To prevent this, we have made it clear that any\npatent must be licensed\ + \ for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for\ + \ copying, distribution and\nmodification follow.\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION\ + \ AND MODIFICATION\n\n0. This License applies to any program or other work which contains\ + \ a\nnotice placed by the copyright holder saying it may be distributed\nunder the terms\ + \ of this General Public License. The \"Program\", below,\nrefers to any such program or\ + \ work, and a \"work based on the Program\"\nmeans either the Program or any derivative\ + \ work under copyright law:\nthat is to say, a work containing the Program or a portion\ + \ of it,\neither verbatim or with modifications and/or translated into another\nlanguage.\ + \ (Hereinafter, translation is included without limitation in\nthe term \"modification\"\ + .) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution\ + \ and modification are not\ncovered by this License; they are outside its scope. The act\ + \ of\nrunning the Program is not restricted, and the output from the Program\nis covered\ + \ only if its contents constitute a work based on the Program\n(independent of having been\ + \ made by running the Program). Whether that\nis true depends on what the Program does.\n\ + \n1. You may copy and distribute verbatim copies of the Program's source\ncode as you receive\ + \ it, in any medium, provided that you conspicuously\nand appropriately publish on each\ + \ copy an appropriate copyright notice\nand disclaimer of warranty; keep intact all the\ + \ notices that refer to\nthis License and to the absence of any warranty; and give any other\n\ + recipients of the Program a copy of this License along with the\nProgram.\n\nYou may charge\ + \ a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty\ + \ protection in exchange for a\nfee.\n\n2. You may modify your copy or copies of the Program\ + \ or any portion of\nit, thus forming a work based on the Program, and copy and distribute\n\ + such modifications or work under the terms of Section 1 above,\nprovided that you also meet\ + \ all of these conditions:\n\na) You must cause the modified files to carry prominent notices\n\ + stating that you changed the files and the date of any change.\n\nb) You must cause any\ + \ work that you distribute or publish, that in\nwhole or in part contains or is derived\ + \ from the Program or any part\nthereof, to be licensed as a whole at no charge to all third\ + \ parties\nunder the terms of this License.\n\nc) If the modified program normally reads\ + \ commands interactively when\nrun, you must cause it, when started running for such interactive\ + \ use\nin the most ordinary way, to print or display an announcement\nincluding an appropriate\ + \ copyright notice and a notice that there is\nno warranty (or else, saying that you provide\ + \ a warranty) and that\nusers may redistribute the program under these conditions, and telling\n\ + the user how to view a copy of this License. (Exception: if the\nProgram itself is interactive\ + \ but does not normally print such an\nannouncement, your work based on the Program is not\ + \ required to print\nan announcement.)\n\nThese requirements apply to the modified work\ + \ as a whole. If\nidentifiable sections of that work are not derived from the Program,\n\ + and can be reasonably considered independent and separate works in\nthemselves, then this\ + \ License, and its terms, do not apply to those\nsections when you distribute them as separate\ + \ works. But when you\ndistribute the same sections as part of a whole which is a work based\n\ + on the Program, the distribution of the whole must be on the terms of\nthis License, whose\ + \ permissions for other licensees extend to the\nentire whole, and thus to each and every\ + \ part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim\ + \ rights or contest\nyour rights to work written entirely by you; rather, the intent is\ + \ to\nexercise the right to control the distribution of derivative or\ncollective works\ + \ based on the Program.\n\nIn 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.\n\ + \n3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in\ + \ object code or executable form under the terms of\nSections 1 and 2 above provided that\ + \ you also do one of the following:\n\na) Accompany it with the complete corresponding machine-readable\n\ + source code, which must be distributed under the terms of Sections 1\nand 2 above on a medium\ + \ customarily used for software interchange; or,\n\nb) Accompany it with a written offer,\ + \ valid for at least three years,\nto give any third party, for a charge no more than your\ + \ cost of\nphysically performing source distribution, a complete machine-readable\ncopy\ + \ of the corresponding source code, to be distributed under the\nterms of Sections 1 and\ + \ 2 above on a medium customarily used for\nsoftware interchange; or,\n\nc) Accompany it\ + \ with the information you received as to the offer to\ndistribute corresponding source\ + \ code. (This alternative is allowed\nonly for noncommercial distribution and only if you\ + \ received the\nprogram in object code or executable form with such an offer, in\naccord\ + \ with Subsection b above.)\n\nThe source code for a work means the preferred form of the\ + \ work for\nmaking modifications to it. For an executable work, complete source\ncode means\ + \ all the source code for all modules it contains, plus any\nassociated interface definition\ + \ files, plus the scripts used to\ncontrol compilation and installation of the executable.\ + \ However, as a\nspecial exception, the source code distributed need not include\nanything\ + \ that is normally distributed (in either source or binary\nform) with the major components\ + \ (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless\ + \ that component\nitself accompanies the executable.\n\nIf distribution of executable or\ + \ object code is made by offering\naccess to copy from a designated place, then offering\ + \ equivalent\naccess to copy the source code from the same place counts as\ndistribution\ + \ of the source code, even though third parties are not\ncompelled to copy the source along\ + \ with the object code.\n\n4. You may not copy, modify, sublicense, or distribute the Program\n\ + except as expressly provided under this License. Any attempt otherwise\nto copy, modify,\ + \ sublicense or distribute the Program is void, and\nwill automatically terminate your rights\ + \ under this License. However,\nparties who have received copies, or rights, from you under\ + \ this\nLicense will not have their licenses terminated so long as such\nparties remain\ + \ in full compliance.\n\n5. You are not required to accept this License, since you have\ + \ not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the\ + \ Program or its derivative works. These actions are\nprohibited by law if you do not accept\ + \ this License. Therefore, by\nmodifying or distributing the Program (or any work based\ + \ on the\nProgram), you indicate your acceptance of this License to do so, and\nall its\ + \ terms and conditions for copying, distributing or modifying\nthe Program or works based\ + \ on it.\n\n6. Each time you redistribute the Program (or any work based on the\nProgram),\ + \ the recipient automatically receives a license from the\noriginal licensor to copy, distribute\ + \ or modify the Program subject to\nthese terms and conditions. You may not impose any further\n\ + restrictions on the recipients' exercise of the rights granted\nherein. You are not responsible\ + \ for enforcing compliance by third\nparties to this License.\n\n7. If, as a consequence\ + \ of a court judgment or allegation of patent\ninfringement or for any other reason (not\ + \ limited to patent issues),\nconditions are imposed on you (whether by court order, agreement\ + \ or\notherwise) that contradict the conditions of this License, they do not\nexcuse you\ + \ from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously\ + \ your obligations under this\nLicense and any other pertinent obligations, then as a consequence\ + \ you\nmay not distribute the Program at all. For example, if a patent\nlicense would not\ + \ permit royalty-free redistribution of the Program by\nall those who receive copies directly\ + \ or indirectly through you, then\nthe only way you could satisfy both it and this License\ + \ would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this\ + \ section is held invalid or unenforceable under\nany particular circumstance, the balance\ + \ of the section is intended to\napply and the section as a whole is intended to apply in\ + \ other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe\ + \ any\npatents or other property right claims or to contest validity of any\nsuch claims;\ + \ this section has the sole purpose of protecting the\nintegrity of the free software distribution\ + \ system, which is\nimplemented by public license practices. Many people have made\ngenerous\ + \ contributions to the wide range of software distributed\nthrough that system in reliance\ + \ on consistent application of that\nsystem; it is up to the author/donor to decide if he\ + \ or she is willing\nto distribute software through any other system and a licensee cannot\n\ + impose that choice.\n\nThis section is intended to make thoroughly clear what is believed\ + \ to\nbe a consequence of the rest of this License.\n\n8. If the distribution and/or use\ + \ of the Program is restricted in\ncertain countries either by patents or by copyrighted\ + \ interfaces, the\noriginal copyright holder who places the Program under this License\n\ + may add an explicit geographical distribution limitation excluding\nthose countries, so\ + \ that distribution is permitted only in or among\ncountries not thus excluded. In such\ + \ case, this License incorporates\nthe limitation as if written in the body of this License.\n\ + \n9. The Free Software Foundation may publish revised and/or new\nversions of the General\ + \ Public License from time to time. Such new\nversions will be similar in spirit to the\ + \ present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach\ + \ version is given a distinguishing version number. If the Program\nspecifies a version\ + \ number of this License which applies to it and\n\"any later version\", you have the option\ + \ of following the terms and\nconditions either of that version or of any later version\ + \ published by\nthe Free Software Foundation. If the Program does not specify a\nversion\ + \ number of this License, you may choose any version ever\npublished by the Free Software\ + \ Foundation.\n\n10. If you wish to incorporate parts of the Program into other free\nprograms\ + \ whose distribution conditions are different, write to the\nauthor to ask for permission.\ + \ For software which is copyrighted by the\nFree Software Foundation, write to the Free\ + \ Software Foundation; we\nsometimes make exceptions for this. Our decision will be guided\ + \ by the\ntwo goals of preserving the free status of all derivatives of our free\nsoftware\ + \ and of promoting the sharing and reuse of software generally.\n\nNO WARRANTY\n\n11. BECAUSE\ + \ THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE\ + \ EXTENT PERMITTED BY APPLICABLE\nLAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\ + \ HOLDERS\nAND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF\nANY KIND,\ + \ EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF\ + \ MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY\ + \ AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\n\ + THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n12. IN NO EVENT UNLESS REQUIRED\ + \ BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY\ + \ WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\n\ + FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING\ + \ OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\ + \ DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR\ + \ A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR\ + \ OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\nEND OF TERMS AND\ + \ CONDITIONS\n\n[For brevity, we've cut out the GPL's final section on \"How to Apply\n\ + Tehse Terms to Your New Program\", but you can find that at\nhttps://www.gnu.org/licenses/gpl-2.0.html#SEC4\ + \ ]" + json: npsl-exception-0.92.json + yaml: npsl-exception-0.92.yml + html: npsl-exception-0.92.html + license: npsl-exception-0.92.LICENSE - license_key: npsl-exception-0.93 + category: Copyleft spdx_license_key: LicenseRef-scancode-npsl-exception-0.93 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: "Nmap Public Source License Version 0.93\nFor more information on this license, see\ + \ https://nmap.org/npsl/\n\n0. Preamble\n\nThe intent of this license is to establish freedom\ + \ to share and change\nthe software regulated by this license under the open source model.\ + \ It\nalso includes a Contributor Agreement and disclaims any warranty on\nCovered Software.\ + \ Companies wishing to use or incorporate Covered\nSoftware within their own products may\ + \ find that our Nmap OEM product\n(https://nmap.org/oem/) better suits their needs. Open\ + \ source\ndevelopers who wish to incorporate parts of Covered Software into free\nsoftware\ + \ with conflicting licenses may write Licensor to request a\nwaiver of terms.\n\nIf the\ + \ Nmap Project (directly or through one of its commercial\nlicensing customers) has granted\ + \ you additional rights to Nmap or Nmap\nOEM, those additional rights take precedence where\ + \ they conflict with\nthe terms of this license agreement.\n\nThis License represents the\ + \ complete agreement concerning subject\nmatter hereof. It contains the license terms themselves,\ + \ but not the\nreasoning behind them or detailed explanations. For further\ninformation\ + \ about this License, see https://nmap.org/npsl/ . That page\nmakes a good faith attempt\ + \ to explain this License, but it does not\nand can not modify its governing terms in any\ + \ way.\n\n1. Definitions\n\n* \"Contribution\" means any work of authorship, including the\ + \ original\n version of the Work and any modifications or additions to that Work\n or\ + \ Derivative Works thereof, that is intentionally submitted to\n Licensor by the copyright\ + \ owner or by an individual or Legal Entity\n authorized to submit on behalf of the copyright\ + \ owner. For the\n purposes of this definition, \"submitted\" means any form of\n electronic,\ + \ verbal, or written communication sent to the Licensor or\n its representatives, including\ + \ but not limited to communication on\n electronic mailing lists, source code control systems,\ + \ web sites,\n and issue tracking systems that are managed by, or on behalf of, the\n \ + \ Licensor for the purpose of discussing and improving the Work, but\n excluding communication\ + \ that is conspicuously marked or otherwise\n designated in writing by the copyright owner\ + \ as \"Not a\n Contribution.\"\n\n* \"Contributor\" means Licensor and any individual or\ + \ Legal Entity on\n behalf of whom a Contribution has been received by Licensor and\n \ + \ subsequently incorporated within the Work.\n\n* \"Covered Software\" means the work of\ + \ authorship, whether in Source\n or Object form, made available under the License, as\ + \ indicated by a\n copyright notice that is included in or attached to the work\n\n* \"\ + Derivative Work\" or \"Collective Work\" means any work, whether in\n Source or Object\ + \ form, that is based on (or derived from) the Work\n and for which the editorial revisions,\ + \ annotations, elaborations, or\n other modifications represent, as a whole, an original\ + \ work of\n authorship. It includes software as described in Section 3 of this\n License.\n\ + \n* \"Executable\" means Covered Software in any form other than Source Code.\n\n* \"Externally\ + \ Deploy\" means to Deploy the Covered Software in any way\n that may be accessed or used\ + \ by anyone other than You, used to\n provide any services to anyone other than You, or\ + \ used in any way to\n deliver any content to anyone other than You, whether the Covered\n\ + \ Software is distributed to those parties, made available as an\n application intended\ + \ for use over a computer network, or used to\n provide services or otherwise deliver content\ + \ to anyone other than\n You.\n\n* \"GPL\" means the GNU General Public License Version\ + \ 2, as published\n by the Free Software Foundation and provided in Exhibit A.\n\n* \"\ + Legal Entity\" means the union of the acting entity and all other\n entities that control,\ + \ are controlled by, or are under common\n control with that entity. For the purposes of\ + \ this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n\ + \ direction or management of such entity, whether by contract or\n otherwise, or (ii)\ + \ ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial\ + \ ownership of such entity.\n\n* \"License\" means this document, including Exhibits.\n\n\ + * \"Licensor\" means Insecure.Com LLC and its successors and assigns.\n\n* \"Main License\ + \ Body\" means all of the terms of this document,\n excluding Exhibits.\n\n* \"You\" (or\ + \ \"Your\") means an individual or Legal Entity exercising\n permissions granted by this\ + \ License.\n\n2. General Terms\n\nCovered Software is licensed to you under the terms of\ + \ the GPL\n(Exhibit A), with all the exceptions, clarifications, and additions\nnoted in\ + \ this Main License Body. Where the terms in this Main License\nBody conflict in any way\ + \ with the GPL, the Main License Body terms\nshall take precedence. These additional terms\ + \ mean that You may not\ndistribute Covered Software or Derivative Works under plain GPL\ + \ terms\nwithout special permission from Licensor.\n\nYou are not required to accept this\ + \ License. However, nothing else\ngrants You permission to use, copy, modify or distribute\ + \ the software\nor its derivative works. These actions are prohibited by law if You do\n\ + not accept this License. Therefore, by modifying, copying or\ndistributing the software\ + \ (or any work based on the software), You\nindicate your acceptance of this License to\ + \ do so, and all its terms\nand conditions. In addition, you agree to the terms of this\ + \ License by\nclicking the Accept button or downloading the software.\n\n3. Derivative Works\n\ + \nThis License (including the GPL portion) places important restrictions\non derived works.\ + \ Licensor interprets that term quite broadly. To\navoid any misunderstandings, we consider\ + \ software to constitute a\n\"derivative work\" of Covered Software for the purposes of\ + \ this license\nif it does any of the following:\n\n* Integrates source code from Covered\ + \ Software\n\n* Reads or includes Covered Software data files, such as nmap-os-db or\n \ + \ nmap-service-probes.\n\n* Is designed specifically to execute Covered Software and parse\ + \ the\n results (as opposed to typical shell or execution-menu apps, which\n will execute\ + \ anything you tell them to).\n\n* Includes Covered Software in a proprietary executable\ + \ installer. The\n installers produced by InstallShield are an example of\n this. Including\ + \ Nmap with other software in compressed or archival\n form does not trigger this provision,\ + \ provided appropriate open\n source decompression or de-archiving software is widely available\n\ + \ for no charge. For the purposes of this license, an installer is\n considered to include\ + \ Covered Software even if it actually retrieves\n a copy of Covered Software from another\ + \ source during runtime (such\n as by downloading it from the Internet).\n\n* Links (statically\ + \ or dynamically) to a library which does any of the\n above\n\n* Executes a helper program,\ + \ module, or script to do any of the above.\n This list is not exclusive, but is meant\ + \ to clarify Licensor's\n intentions with some common examples. Distribution of any works\n\ + \ which meet these criteria must be under the terms of this license\n (including this\ + \ Main License Body and GPL), with no additional\n conditions or restrictions. They must\ + \ abide by all restrictions that\n the GPL places on derivative or collective works, including\ + \ the\n requirements for distributing their source code and allowing\n royalty-free redistribution.\n\ + \n4. Contributor Agreement (Grant of Copyright and Patent Licenses)\n\nEach Contributor\ + \ hereby grants to Licensor a perpetual, worldwide,\nnon-exclusive, no-charge, royalty-free,\ + \ irrevocable copyright license\nto reproduce, prepare Derivative Works of, publicly display,\ + \ publicly\nperform, sublicense, and distribute the Contribution and such\nDerivative Works\ + \ in Source or Object form.\n\nEach Contributor hereby grants to You and Licensor a perpetual,\n\ + worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except\nas stated in this\ + \ section) patent license to make, have made, use,\noffer to sell, sell, import, and otherwise\ + \ transfer the Work, where\nsuch license applies only to those patent claims licensable\ + \ by such\nContributor that are necessarily infringed by their Contribution(s)\nalone or\ + \ by combination of their Contribution(s) with the Work to\nwhich such Contribution(s) was\ + \ submitted. If You institute patent\nlitigation against any entity (including a cross-claim\ + \ or counterclaim\nin a lawsuit) alleging that the Work or a Contribution incorporated\n\ + within the Work constitutes direct or contributory patent\ninfringement, then any patent\ + \ licenses granted to You under this\nLicense for that Work shall terminate as of the date\ + \ such litigation\nis filed.\n\nContributors may impose different terms on their Contributions\ + \ by\nstating those terms in writing at the time the Contribution is\nmade. Contributors\ + \ may withhold all authority from Licensor to\nincorporate submissions by conspicuously\ + \ marking or otherwise\ndesignating them in writing as \"Not a Contribution\" at the time\ + \ they\nmake the work available.\n\n5. Disclaimer of Warranty and Limitation of Liability\n\ + \nUnless required by applicable law or agreed to in writing, Licensor\nprovides the Covered\ + \ Software (and each Contributor provides its\nContributions) on an \"AS IS\" BASIS, WITHOUT\ + \ WARRANTIES OR CONDITIONS\nOF ANY KIND, either express or implied, including, without limitation,\n\ + any warranties or conditions of TITLE, NON-INFRINGEMENT,\nMERCHANTABILITY, or FITNESS FOR\ + \ A PARTICULAR PURPOSE. You are solely\nresponsible for determining the appropriateness\ + \ of using or\nredistributing the Covered Software and assume any risks associated\nwith\ + \ Your exercise of permissions under this License.\n\nIn no event and under no legal theory,\ + \ whether in tort (including\nnegligence), contract, or otherwise, unless required by applicable\ + \ law\n(such as deliberate and grossly negligent acts) or agreed to in\nwriting, shall any\ + \ Contributor be liable to You for damages, including\nany direct, indirect, special, incidental,\ + \ or consequential damages of\nany character arising as a result of this License or out\ + \ of the use or\ninability to use the Covered Software (including but not limited to\ndamages\ + \ for loss of goodwill, work stoppage, computer failure or\nmalfunction, or any and all\ + \ other commercial damages or losses), even\nif such Contributor has been advised of the\ + \ possibility of such\ndamages.\n\n6. External Deployment\n\nIf You Externally Deploy Covered\ + \ Software, such as hosting a website\ndesigned to execute Nmap scans for users, the system\ + \ and its\ndocumentation must, if technically feasible, prominently display a\nnotice stating\ + \ that the system uses the Nmap Security Scanner to\nperform its tasks. If technically feasible,\ + \ the notice must contain a\nhyperlink to https://nmap.org/ or provide that URL in the text.\n\ + \n7. Trademarks\n\nThis License does not grant permission to use the trade names,\ntrademarks,\ + \ service marks, or product names of the Licensor, except as\nrequired for reasonable and\ + \ customary use in describing the origin of\nthe Covered Software.\n\n8. Termination for\ + \ Patent Action\n\nThis License shall terminate automatically and You may no longer\nexercise\ + \ any of the rights granted to You by this License as of the\ndate You commence an action,\ + \ including a cross-claim or counterclaim,\nagainst Licensor or any licensee alleging that\ + \ the Covered Software\ninfringes a patent. This termination provision shall not apply for\ + \ an\naction alleging patent infringement by combinations of the Covered\nSoftware with\ + \ other software or hardware.\n\n9. Jurisdiction, Venue and Governing Law\n\nThis License\ + \ is governed by the laws of the State of Washington and\nthe intellectual property laws\ + \ of the United States of America,\nexcluding the jurisdiction's conflict-of-law provisions.\ + \ Any\nlitigation or other dispute resolution between You and Licensor\nrelating to this\ + \ License shall take place in the Northern District of\nCalifornia, and You and Licensor\ + \ hereby consent to the personal\njurisdiction of, and venue in, the state and federal courts\ + \ within\nthat District with respect to this License. The application of the\nUnited Nations\ + \ Convention on Contracts for the International Sale of\nGoods is expressly excluded.\n\n\ + 10. Npcap and the Official Nmap Windows Builds\n\nThe official Windows Nmap builds includes\ + \ the Npcap driver and library\n(https://npcap.org) for packet capture and transmission\ + \ on\nWindows. That software is under its own separate license terms rather\nthan this license.\ + \ Therefore anyone wishing to use or redistribute\nboth pieces of software must comply with\ + \ both licenses. Since Npcap\ndoes not allow for redistribution without special permission,\ + \ the\nofficial Nmap Windows builds which include Npcap may not be\nredistributed without\ + \ special permission. Such permission can be\nrequested by email to sales@nmap.com.\n\n\ + 11. Permission to link with OpenSSL\n\nLicensor grants permission to link Covered Software\ + \ with any version\nof the OpenSSL library from OpenSSL.Org, and distribute linked\ncombinations\ + \ including the two (assuming such distribution is\notherwise allowed by this agreement).\ + \ You must obey this License in\nall respects for all code used other than OpenSSL.\n\n\ + 12. Waiver; Construction\n\nFailure by Licensor or any Contributor to enforce any provision\ + \ of\nthis License will not be deemed a waiver of future enforcement of that\nor any other\ + \ provision. Any law or regulation which provides that the\nlanguage of a contract shall\ + \ be construed against the drafter will not\napply to this License.\n\n13. Enforceability\n\ + \nIf any provision of this License is invalid or unenforceable under\napplicable law, it\ + \ shall not affect the validity or enforceability of\nthe remainder of the terms of this\ + \ License, and without further action\nby the parties hereto, such provision shall be reformed\ + \ to the minimum\nextent necessary to make such provision valid and enforceable.\n\nExhibit\ + \ A. The GNU General Public License Version 2\nGNU GENERAL PUBLIC LICENSE\nVersion 2, June\ + \ 1991\n\nCopyright (C) 1989, 1991 Free Software Foundation, Inc. \n51 Franklin Street,\ + \ Fifth Floor, Boston, MA 02110-1301, USA\n\nEveryone is permitted to copy and distribute\ + \ verbatim copies\nof this license document, but changing it is not allowed.\nPreamble\n\ + \nThe licenses for most software are designed to take away your freedom\nto share and change\ + \ it. By contrast, the GNU General Public License is\nintended to guarantee your freedom\ + \ to share and change free\nsoftware--to make sure the software is free for all its users.\ + \ This\nGeneral Public License applies to most of the Free Software\nFoundation's software\ + \ and to any other program whose authors commit to\nusing it. (Some other Free Software\ + \ Foundation software is covered by\nthe GNU Lesser General Public License instead.) You\ + \ can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring\ + \ to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\n\ + have the freedom to distribute copies of free software (and charge for\nthis service if\ + \ you wish), that you receive source code or can get it\nif you want it, that you can change\ + \ the software or use pieces of it\nin new free programs; and that you know you can do these\ + \ things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to\ + \ deny you these rights or to ask you to surrender the\nrights. These restrictions translate\ + \ to certain responsibilities for\nyou if you distribute copies of the software, or if you\ + \ modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis\ + \ or for a fee, you must give the recipients all the rights that\nyou have. You must make\ + \ sure that they, too, receive or can get the\nsource code. And you must show them these\ + \ terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright\ + \ the software, and\n(2) offer you this license which gives you legal permission to copy,\n\ + distribute and/or modify the software.\n\nAlso, for each author's protection and ours, we\ + \ want to make certain\nthat everyone understands that there is no warranty for this free\n\ + software. If the software is modified by someone else and passed on,\nwe want its recipients\ + \ to know that what they have is not the\noriginal, so that any problems introduced by others\ + \ will not reflect\non the original authors' reputations.\n\nFinally, any free program is\ + \ threatened constantly by software\npatents. We wish to avoid the danger that redistributors\ + \ of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram\ + \ proprietary. To prevent this, we have made it clear that any\npatent must be licensed\ + \ for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for\ + \ copying, distribution and\nmodification follow.\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION\ + \ AND MODIFICATION\n\n0. This License applies to any program or other work which contains\ + \ a\nnotice placed by the copyright holder saying it may be distributed\nunder the terms\ + \ of this General Public License. The \"Program\", below,\nrefers to any such program or\ + \ work, and a \"work based on the Program\"\nmeans either the Program or any derivative\ + \ work under copyright law:\nthat is to say, a work containing the Program or a portion\ + \ of it,\neither verbatim or with modifications and/or translated into another\nlanguage.\ + \ (Hereinafter, translation is included without limitation in\nthe term \"modification\"\ + .) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution\ + \ and modification are not\ncovered by this License; they are outside its scope. The act\ + \ of\nrunning the Program is not restricted, and the output from the Program\nis covered\ + \ only if its contents constitute a work based on the Program\n(independent of having been\ + \ made by running the Program). Whether that\nis true depends on what the Program does.\n\ + \n1. You may copy and distribute verbatim copies of the Program's source\ncode as you receive\ + \ it, in any medium, provided that you conspicuously\nand appropriately publish on each\ + \ copy an appropriate copyright notice\nand disclaimer of warranty; keep intact all the\ + \ notices that refer to\nthis License and to the absence of any warranty; and give any other\n\ + recipients of the Program a copy of this License along with the\nProgram.\n\nYou may charge\ + \ a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty\ + \ protection in exchange for a\nfee.\n\n2. You may modify your copy or copies of the Program\ + \ or any portion of\nit, thus forming a work based on the Program, and copy and distribute\n\ + such modifications or work under the terms of Section 1 above,\nprovided that you also meet\ + \ all of these conditions:\n\na) You must cause the modified files to carry prominent notices\n\ + stating that you changed the files and the date of any change.\n\nb) You must cause any\ + \ work that you distribute or publish, that in\nwhole or in part contains or is derived\ + \ from the Program or any part\nthereof, to be licensed as a whole at no charge to all third\ + \ parties\nunder the terms of this License.\n\nc) If the modified program normally reads\ + \ commands interactively when\nrun, you must cause it, when started running for such interactive\ + \ use\nin the most ordinary way, to print or display an announcement\nincluding an appropriate\ + \ copyright notice and a notice that there is\nno warranty (or else, saying that you provide\ + \ a warranty) and that\nusers may redistribute the program under these conditions, and telling\n\ + the user how to view a copy of this License. (Exception: if the\nProgram itself is interactive\ + \ but does not normally print such an\nannouncement, your work based on the Program is not\ + \ required to print\nan announcement.)\n\nThese requirements apply to the modified work\ + \ as a whole. If\nidentifiable sections of that work are not derived from the Program,\n\ + and can be reasonably considered independent and separate works in\nthemselves, then this\ + \ License, and its terms, do not apply to those\nsections when you distribute them as separate\ + \ works. But when you\ndistribute the same sections as part of a whole which is a work based\n\ + on the Program, the distribution of the whole must be on the terms of\nthis License, whose\ + \ permissions for other licensees extend to the\nentire whole, and thus to each and every\ + \ part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim\ + \ rights or contest\nyour rights to work written entirely by you; rather, the intent is\ + \ to\nexercise the right to control the distribution of derivative or\ncollective works\ + \ based on the Program.\n\nIn 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.\n\ + \n3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in\ + \ object code or executable form under the terms of\nSections 1 and 2 above provided that\ + \ you also do one of the following:\n\na) Accompany it with the complete corresponding machine-readable\n\ + source code, which must be distributed under the terms of Sections 1\nand 2 above on a medium\ + \ customarily used for software interchange; or,\n\nb) Accompany it with a written offer,\ + \ valid for at least three years,\nto give any third party, for a charge no more than your\ + \ cost of\nphysically performing source distribution, a complete machine-readable\ncopy\ + \ of the corresponding source code, to be distributed under the\nterms of Sections 1 and\ + \ 2 above on a medium customarily used for\nsoftware interchange; or,\n\nc) Accompany it\ + \ with the information you received as to the offer to\ndistribute corresponding source\ + \ code. (This alternative is allowed\nonly for noncommercial distribution and only if you\ + \ received the\nprogram in object code or executable form with such an offer, in\naccord\ + \ with Subsection b above.)\n\nThe source code for a work means the preferred form of the\ + \ work for\nmaking modifications to it. For an executable work, complete source\ncode means\ + \ all the source code for all modules it contains, plus any\nassociated interface definition\ + \ files, plus the scripts used to\ncontrol compilation and installation of the executable.\ + \ However, as a\nspecial exception, the source code distributed need not include\nanything\ + \ that is normally distributed (in either source or binary\nform) with the major components\ + \ (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless\ + \ that component\nitself accompanies the executable.\n\nIf distribution of executable or\ + \ object code is made by offering\naccess to copy from a designated place, then offering\ + \ equivalent\naccess to copy the source code from the same place counts as\ndistribution\ + \ of the source code, even though third parties are not\ncompelled to copy the source along\ + \ with the object code.\n\n4. You may not copy, modify, sublicense, or distribute the Program\n\ + except as expressly provided under this License. Any attempt otherwise\nto copy, modify,\ + \ sublicense or distribute the Program is void, and\nwill automatically terminate your rights\ + \ under this License. However,\nparties who have received copies, or rights, from you under\ + \ this\nLicense will not have their licenses terminated so long as such\nparties remain\ + \ in full compliance.\n\n5. You are not required to accept this License, since you have\ + \ not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the\ + \ Program or its derivative works. These actions are\nprohibited by law if you do not accept\ + \ this License. Therefore, by\nmodifying or distributing the Program (or any work based\ + \ on the\nProgram), you indicate your acceptance of this License to do so, and\nall its\ + \ terms and conditions for copying, distributing or modifying\nthe Program or works based\ + \ on it.\n\n6. Each time you redistribute the Program (or any work based on the\nProgram),\ + \ the recipient automatically receives a license from the\noriginal licensor to copy, distribute\ + \ or modify the Program subject to\nthese terms and conditions. You may not impose any further\n\ + restrictions on the recipients' exercise of the rights granted\nherein. You are not responsible\ + \ for enforcing compliance by third\nparties to this License.\n\n7. If, as a consequence\ + \ of a court judgment or allegation of patent\ninfringement or for any other reason (not\ + \ limited to patent issues),\nconditions are imposed on you (whether by court order, agreement\ + \ or\notherwise) that contradict the conditions of this License, they do not\nexcuse you\ + \ from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously\ + \ your obligations under this\nLicense and any other pertinent obligations, then as a consequence\ + \ you\nmay not distribute the Program at all. For example, if a patent\nlicense would not\ + \ permit royalty-free redistribution of the Program by\nall those who receive copies directly\ + \ or indirectly through you, then\nthe only way you could satisfy both it and this License\ + \ would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this\ + \ section is held invalid or unenforceable under\nany particular circumstance, the balance\ + \ of the section is intended to\napply and the section as a whole is intended to apply in\ + \ other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe\ + \ any\npatents or other property right claims or to contest validity of any\nsuch claims;\ + \ this section has the sole purpose of protecting the\nintegrity of the free software distribution\ + \ system, which is\nimplemented by public license practices. Many people have made\ngenerous\ + \ contributions to the wide range of software distributed\nthrough that system in reliance\ + \ on consistent application of that\nsystem; it is up to the author/donor to decide if he\ + \ or she is willing\nto distribute software through any other system and a licensee cannot\n\ + impose that choice.\n\nThis section is intended to make thoroughly clear what is believed\ + \ to\nbe a consequence of the rest of this License.\n\n8. If the distribution and/or use\ + \ of the Program is restricted in\ncertain countries either by patents or by copyrighted\ + \ interfaces, the\noriginal copyright holder who places the Program under this License\n\ + may add an explicit geographical distribution limitation excluding\nthose countries, so\ + \ that distribution is permitted only in or among\ncountries not thus excluded. In such\ + \ case, this License incorporates\nthe limitation as if written in the body of this License.\n\ + \n9. The Free Software Foundation may publish revised and/or new\nversions of the General\ + \ Public License from time to time. Such new\nversions will be similar in spirit to the\ + \ present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach\ + \ version is given a distinguishing version number. If the Program\nspecifies a version\ + \ number of this License which applies to it and\n\"any later version\", you have the option\ + \ of following the terms and\nconditions either of that version or of any later version\ + \ published by\nthe Free Software Foundation. If the Program does not specify a\nversion\ + \ number of this License, you may choose any version ever\npublished by the Free Software\ + \ Foundation.\n\n10. If you wish to incorporate parts of the Program into other free\nprograms\ + \ whose distribution conditions are different, write to the\nauthor to ask for permission.\ + \ For software which is copyrighted by the\nFree Software Foundation, write to the Free\ + \ Software Foundation; we\nsometimes make exceptions for this. Our decision will be guided\ + \ by the\ntwo goals of preserving the free status of all derivatives of our free\nsoftware\ + \ and of promoting the sharing and reuse of software generally.\n\nNO WARRANTY\n\n11. BECAUSE\ + \ THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE\ + \ EXTENT PERMITTED BY APPLICABLE\nLAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\ + \ HOLDERS\nAND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF\nANY KIND,\ + \ EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF\ + \ MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY\ + \ AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\n\ + THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n12. IN NO EVENT UNLESS REQUIRED\ + \ BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY\ + \ WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\n\ + FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING\ + \ OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\ + \ DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR\ + \ A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR\ + \ OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\nEND OF TERMS AND\ + \ CONDITIONS\n\n[For brevity, we've cut out the GPL's final section on \"How to Apply\n\ + Tehse Terms to Your New Program\", but you can find that at\nhttps://www.gnu.org/licenses/gpl-2.0.html#SEC4\ + \ ]" json: npsl-exception-0.93.json - yml: npsl-exception-0.93.yml + yaml: npsl-exception-0.93.yml html: npsl-exception-0.93.html - text: npsl-exception-0.93.LICENSE + license: npsl-exception-0.93.LICENSE +- license_key: npsl-exception-0.94 + category: Copyleft + spdx_license_key: LicenseRef-scancode-npsl-exception-0.94 + other_spdx_license_keys: [] + is_exception: yes + is_deprecated: no + text: "Nmap Public Source License Version 0.94\nFor more information on this license, see\ + \ https://nmap.org/npsl/\n\n0. Preamble\n\nThe intent of this license is to establish freedom\ + \ to share and change\nthe software regulated by this license under the open source model.\ + \ It\nalso includes a Contributor Agreement and disclaims any warranty on\nCovered Software.\ + \ Companies wishing to use or incorporate Covered\nSoftware within their own products may\ + \ find that our Nmap OEM product\n(https://nmap.org/oem/) better suits their needs. Open\ + \ source\ndevelopers who wish to incorporate parts of Covered Software into free\nsoftware\ + \ with conflicting licenses may write Licensor to request a\nwaiver of terms.\n\nIf the\ + \ Nmap Project (directly or through one of its commercial\nlicensing customers) has granted\ + \ you additional rights to Nmap or Nmap\nOEM, those additional rights take precedence where\ + \ they conflict with\nthe terms of this license agreement.\n\nThis License represents the\ + \ complete agreement concerning subject\nmatter hereof. It contains the license terms themselves,\ + \ but not the\nreasoning behind them or detailed explanations. For further\ninformation\ + \ about this License, see https://nmap.org/npsl/ . That page\nmakes a good faith attempt\ + \ to explain this License, but it does not\nand can not modify its governing terms in any\ + \ way.\n\n1. Definitions\n\n* \"Contribution\" means any work of authorship, including the\ + \ original\n version of the Work and any modifications or additions to that Work\n or\ + \ Derivative Works thereof, that is intentionally submitted to\n Licensor by the copyright\ + \ owner or by an individual or Legal Entity\n authorized to submit on behalf of the copyright\ + \ owner. For the\n purposes of this definition, \"submitted\" means any form of\n electronic,\ + \ verbal, or written communication sent to the Licensor or\n its representatives, including\ + \ but not limited to communication on\n electronic mailing lists, source code control systems,\ + \ web sites,\n and issue tracking systems that are managed by, or on behalf of, the\n \ + \ Licensor for the purpose of discussing and improving the Work, but\n excluding communication\ + \ that is conspicuously marked or otherwise\n designated in writing by the copyright owner\ + \ as \"Not a\n Contribution.\"\n\n* \"Contributor\" means Licensor and any individual or\ + \ Legal Entity on\n behalf of whom a Contribution has been received by Licensor and\n \ + \ subsequently incorporated within the Work.\n\n* \"Covered Software\" means the work of\ + \ authorship, whether in Source\n or Object form, made available under the License, as\ + \ indicated by a\n copyright notice that is included in or attached to the work\n\n* \"\ + Derivative Work\" or \"Collective Work\" means any work, whether in\n Source or Object\ + \ form, that is based on (or derived from) the Work\n and for which the editorial revisions,\ + \ annotations, elaborations, or\n other modifications represent, as a whole, an original\ + \ work of\n authorship. It includes software as described in Section 3 of this\n License.\n\ + \n* \"Executable\" means Covered Software in any form other than Source Code.\n\n* \"Externally\ + \ Deploy\" means to Deploy the Covered Software in any way\n that may be accessed or used\ + \ by anyone other than You, used to\n provide any services to anyone other than You, or\ + \ used in any way to\n deliver any content to anyone other than You, whether the Covered\n\ + \ Software is distributed to those parties, made available as an\n application intended\ + \ for use over a computer network, or used to\n provide services or otherwise deliver content\ + \ to anyone other than\n You.\n\n* \"GPL\" means the GNU General Public License Version\ + \ 2, as published\n by the Free Software Foundation and provided in Exhibit A.\n\n* \"\ + Legal Entity\" means the union of the acting entity and all other\n entities that control,\ + \ are controlled by, or are under common\n control with that entity. For the purposes of\ + \ this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n\ + \ direction or management of such entity, whether by contract or\n otherwise, or (ii)\ + \ ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial\ + \ ownership of such entity.\n\n* \"License\" means this document, including Exhibits.\n\n\ + * \"Licensor\" means Nmap Software LLC and its successors and assigns.\n\n* \"Main License\ + \ Body\" means all of the terms of this document,\n excluding Exhibits.\n\n* \"You\" (or\ + \ \"Your\") means an individual or Legal Entity exercising\n permissions granted by this\ + \ License.\n\n2. General Terms\n\nCovered Software is licensed to you under the terms of\ + \ the GPL\n(Exhibit A), with all the exceptions, clarifications, and additions\nnoted in\ + \ this Main License Body. Where the terms in this Main License\nBody conflict in any way\ + \ with the GPL, the Main License Body terms\nshall take precedence. These additional terms\ + \ mean that You may not\ndistribute Covered Software or Derivative Works under plain GPL\ + \ terms\nwithout special permission from Licensor.\n\nYou are not required to accept this\ + \ License. However, nothing else\ngrants You permission to use, copy, modify or distribute\ + \ the software\nor its derivative works. These actions are prohibited by law if You do\n\ + not accept this License. Therefore, by modifying, copying or\ndistributing the software\ + \ (or any work based on the software), You\nindicate your acceptance of this License to\ + \ do so, and all its terms\nand conditions. In addition, you agree to the terms of this\ + \ License by\nclicking the Accept button or downloading the software.\n\n3. Derivative Works\n\ + \nThis License (including the GPL portion) places important restrictions\non derived works.\ + \ Licensor interprets that term quite broadly. To\navoid any misunderstandings, we consider\ + \ software to constitute a\n\"derivative work\" of Covered Software for the purposes of\ + \ this license\nif it does any of the following:\n\n* Integrates source code from Covered\ + \ Software\n\n* Reads or includes Covered Software data files, such as nmap-os-db or\n \ + \ nmap-service-probes.\n\n* Is designed specifically to execute Covered Software and parse\ + \ the\n results (as opposed to typical shell or execution-menu apps, which\n will execute\ + \ anything you tell them to).\n\n* Includes Covered Software in a proprietary executable\ + \ installer. The\n installers produced by InstallShield are an example of\n this. Including\ + \ Nmap with other software in compressed or archival\n form does not trigger this provision,\ + \ provided appropriate open\n source decompression or de-archiving software is widely available\n\ + \ for no charge. For the purposes of this license, an installer is\n considered to include\ + \ Covered Software even if it actually retrieves\n a copy of Covered Software from another\ + \ source during runtime (such\n as by downloading it from the Internet).\n\n* Links (statically\ + \ or dynamically) to a library which does any of the\n above\n\n* Executes a helper program,\ + \ module, or script to do any of the above.\n This list is not exclusive, but is meant\ + \ to clarify Licensor's\n intentions with some common examples. Distribution of any works\n\ + \ which meet these criteria must be under the terms of this license\n (including this\ + \ Main License Body and GPL), with no additional\n conditions or restrictions. They must\ + \ abide by all restrictions that\n the GPL places on derivative or collective works, including\ + \ the\n requirements for distributing their source code and allowing\n royalty-free redistribution.\n\ + \n4. Contributor Agreement (Grant of Copyright and Patent Licenses)\n\nEach Contributor\ + \ hereby grants to Licensor a perpetual, worldwide,\nnon-exclusive, no-charge, royalty-free,\ + \ irrevocable copyright license\nto reproduce, prepare Derivative Works of, publicly display,\ + \ publicly\nperform, sublicense, and distribute the Contribution and such\nDerivative Works\ + \ in Source or Object form.\n\nEach Contributor hereby grants to You and Licensor a perpetual,\n\ + worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except\nas stated in this\ + \ section) patent license to make, have made, use,\noffer to sell, sell, import, and otherwise\ + \ transfer the Work, where\nsuch license applies only to those patent claims licensable\ + \ by such\nContributor that are necessarily infringed by their Contribution(s)\nalone or\ + \ by combination of their Contribution(s) with the Work to\nwhich such Contribution(s) was\ + \ submitted. If You institute patent\nlitigation against any entity (including a cross-claim\ + \ or counterclaim\nin a lawsuit) alleging that the Work or a Contribution incorporated\n\ + within the Work constitutes direct or contributory patent\ninfringement, then any patent\ + \ licenses granted to You under this\nLicense for that Work shall terminate as of the date\ + \ such litigation\nis filed.\n\nContributors may impose different terms on their Contributions\ + \ by\nstating those terms in writing at the time the Contribution is\nmade. Contributors\ + \ may withhold all authority from Licensor to\nincorporate submissions by conspicuously\ + \ marking or otherwise\ndesignating them in writing as \"Not a Contribution\" at the time\ + \ they\nmake the work available.\n\n5. Disclaimer of Warranty and Limitation of Liability\n\ + \nUnless required by applicable law or agreed to in writing, Licensor\nprovides the Covered\ + \ Software (and each Contributor provides its\nContributions) on an \"AS IS\" BASIS, WITHOUT\ + \ WARRANTIES OR CONDITIONS\nOF ANY KIND, either express or implied, including, without limitation,\n\ + any warranties or conditions of TITLE, NON-INFRINGEMENT,\nMERCHANTABILITY, or FITNESS FOR\ + \ A PARTICULAR PURPOSE. You are solely\nresponsible for determining the appropriateness\ + \ of using or\nredistributing the Covered Software and assume any risks associated\nwith\ + \ Your exercise of permissions under this License.\n\nIn no event and under no legal theory,\ + \ whether in tort (including\nnegligence), contract, or otherwise, unless required by applicable\ + \ law\n(such as deliberate and grossly negligent acts) or agreed to in\nwriting, shall any\ + \ Contributor be liable to You for damages, including\nany direct, indirect, special, incidental,\ + \ or consequential damages of\nany character arising as a result of this License or out\ + \ of the use or\ninability to use the Covered Software (including but not limited to\ndamages\ + \ for loss of goodwill, work stoppage, computer failure or\nmalfunction, or any and all\ + \ other commercial damages or losses), even\nif such Contributor has been advised of the\ + \ possibility of such\ndamages.\n\n6. External Deployment\n\nIf You Externally Deploy Covered\ + \ Software, such as hosting a website\ndesigned to execute Nmap scans for users, the system\ + \ and its\ndocumentation must, if technically feasible, prominently display a\nnotice stating\ + \ that the system uses the Nmap Security Scanner to\nperform its tasks. If technically feasible,\ + \ the notice must contain a\nhyperlink to https://nmap.org/ or provide that URL in the text.\n\ + \n7. Trademarks\n\nThis License does not grant permission to use the trade names,\ntrademarks,\ + \ service marks, or product names of the Licensor, except as\nrequired for reasonable and\ + \ customary use in describing the origin of\nthe Covered Software.\n\n8. Termination for\ + \ Patent Action\n\nThis License shall terminate automatically and You may no longer\nexercise\ + \ any of the rights granted to You by this License as of the\ndate You commence an action,\ + \ including a cross-claim or counterclaim,\nagainst Licensor or any licensee alleging that\ + \ the Covered Software\ninfringes a patent. This termination provision shall not apply for\ + \ an\naction alleging patent infringement by combinations of the Covered\nSoftware with\ + \ other software or hardware.\n\n9. Jurisdiction, Venue and Governing Law\n\nThis License\ + \ is governed by the laws of the State of Washington and\nthe intellectual property laws\ + \ of the United States of America,\nexcluding the jurisdiction's conflict-of-law provisions.\ + \ Any\nlitigation or other dispute resolution between You and Licensor\nrelating to this\ + \ License shall take place in the Northern District of\nCalifornia, and You and Licensor\ + \ hereby consent to the personal\njurisdiction of, and venue in, the state and federal courts\ + \ within\nthat District with respect to this License. The application of the\nUnited Nations\ + \ Convention on Contracts for the International Sale of\nGoods is expressly excluded.\n\n\ + 10. Npcap and the Official Nmap Windows Builds\n\nThe official Windows Nmap builds includes\ + \ the Npcap driver and library\n(https://npcap.org) for packet capture and transmission\ + \ on\nWindows. That software is under its own separate license terms rather\nthan this license.\ + \ Therefore anyone wishing to use or redistribute\nboth pieces of software must comply with\ + \ both licenses. Since Npcap\ndoes not allow for redistribution without special permission,\ + \ the\nofficial Nmap Windows builds which include Npcap may not be\nredistributed without\ + \ special permission. Such permission can be\nrequested by email to sales@nmap.com.\n\n\ + 11. Permission to link with OpenSSL\n\nLicensor grants permission to link Covered Software\ + \ with any version\nof the OpenSSL library from OpenSSL.Org, and distribute linked\ncombinations\ + \ including the two (assuming such distribution is\notherwise allowed by this agreement).\ + \ You must obey this License in\nall respects for all code used other than OpenSSL.\n\n\ + 12. Waiver; Construction\n\nFailure by Licensor or any Contributor to enforce any provision\ + \ of\nthis License will not be deemed a waiver of future enforcement of that\nor any other\ + \ provision. Any law or regulation which provides that the\nlanguage of a contract shall\ + \ be construed against the drafter will not\napply to this License.\n\n13. Enforceability\n\ + \nIf any provision of this License is invalid or unenforceable under\napplicable law, it\ + \ shall not affect the validity or enforceability of\nthe remainder of the terms of this\ + \ License, and without further action\nby the parties hereto, such provision shall be reformed\ + \ to the minimum\nextent necessary to make such provision valid and enforceable.\n\nExhibit\ + \ A. The GNU General Public License Version 2\nGNU GENERAL PUBLIC LICENSE\nVersion 2, June\ + \ 1991\n\nCopyright (C) 1989, 1991 Free Software Foundation, Inc. \n51 Franklin Street,\ + \ Fifth Floor, Boston, MA 02110-1301, USA\n\nEveryone is permitted to copy and distribute\ + \ verbatim copies\nof this license document, but changing it is not allowed.\nPreamble\n\ + \nThe licenses for most software are designed to take away your freedom\nto share and change\ + \ it. By contrast, the GNU General Public License is\nintended to guarantee your freedom\ + \ to share and change free\nsoftware--to make sure the software is free for all its users.\ + \ This\nGeneral Public License applies to most of the Free Software\nFoundation's software\ + \ and to any other program whose authors commit to\nusing it. (Some other Free Software\ + \ Foundation software is covered by\nthe GNU Lesser General Public License instead.) You\ + \ can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring\ + \ to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\n\ + have the freedom to distribute copies of free software (and charge for\nthis service if\ + \ you wish), that you receive source code or can get it\nif you want it, that you can change\ + \ the software or use pieces of it\nin new free programs; and that you know you can do these\ + \ things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to\ + \ deny you these rights or to ask you to surrender the\nrights. These restrictions translate\ + \ to certain responsibilities for\nyou if you distribute copies of the software, or if you\ + \ modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis\ + \ or for a fee, you must give the recipients all the rights that\nyou have. You must make\ + \ sure that they, too, receive or can get the\nsource code. And you must show them these\ + \ terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright\ + \ the software, and\n(2) offer you this license which gives you legal permission to copy,\n\ + distribute and/or modify the software.\n\nAlso, for each author's protection and ours, we\ + \ want to make certain\nthat everyone understands that there is no warranty for this free\n\ + software. If the software is modified by someone else and passed on,\nwe want its recipients\ + \ to know that what they have is not the\noriginal, so that any problems introduced by others\ + \ will not reflect\non the original authors' reputations.\n\nFinally, any free program is\ + \ threatened constantly by software\npatents. We wish to avoid the danger that redistributors\ + \ of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram\ + \ proprietary. To prevent this, we have made it clear that any\npatent must be licensed\ + \ for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for\ + \ copying, distribution and\nmodification follow.\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION\ + \ AND MODIFICATION\n\n0. This License applies to any program or other work which contains\ + \ a\nnotice placed by the copyright holder saying it may be distributed\nunder the terms\ + \ of this General Public License. The \"Program\", below,\nrefers to any such program or\ + \ work, and a \"work based on the Program\"\nmeans either the Program or any derivative\ + \ work under copyright law:\nthat is to say, a work containing the Program or a portion\ + \ of it,\neither verbatim or with modifications and/or translated into another\nlanguage.\ + \ (Hereinafter, translation is included without limitation in\nthe term \"modification\"\ + .) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution\ + \ and modification are not\ncovered by this License; they are outside its scope. The act\ + \ of\nrunning the Program is not restricted, and the output from the Program\nis covered\ + \ only if its contents constitute a work based on the Program\n(independent of having been\ + \ made by running the Program). Whether that\nis true depends on what the Program does.\n\ + \n1. You may copy and distribute verbatim copies of the Program's source\ncode as you receive\ + \ it, in any medium, provided that you conspicuously\nand appropriately publish on each\ + \ copy an appropriate copyright notice\nand disclaimer of warranty; keep intact all the\ + \ notices that refer to\nthis License and to the absence of any warranty; and give any other\n\ + recipients of the Program a copy of this License along with the\nProgram.\n\nYou may charge\ + \ a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty\ + \ protection in exchange for a\nfee.\n\n2. You may modify your copy or copies of the Program\ + \ or any portion of\nit, thus forming a work based on the Program, and copy and distribute\n\ + such modifications or work under the terms of Section 1 above,\nprovided that you also meet\ + \ all of these conditions:\n\na) You must cause the modified files to carry prominent notices\n\ + stating that you changed the files and the date of any change.\n\nb) You must cause any\ + \ work that you distribute or publish, that in\nwhole or in part contains or is derived\ + \ from the Program or any part\nthereof, to be licensed as a whole at no charge to all third\ + \ parties\nunder the terms of this License.\n\nc) If the modified program normally reads\ + \ commands interactively when\nrun, you must cause it, when started running for such interactive\ + \ use\nin the most ordinary way, to print or display an announcement\nincluding an appropriate\ + \ copyright notice and a notice that there is\nno warranty (or else, saying that you provide\ + \ a warranty) and that\nusers may redistribute the program under these conditions, and telling\n\ + the user how to view a copy of this License. (Exception: if the\nProgram itself is interactive\ + \ but does not normally print such an\nannouncement, your work based on the Program is not\ + \ required to print\nan announcement.)\n\nThese requirements apply to the modified work\ + \ as a whole. If\nidentifiable sections of that work are not derived from the Program,\n\ + and can be reasonably considered independent and separate works in\nthemselves, then this\ + \ License, and its terms, do not apply to those\nsections when you distribute them as separate\ + \ works. But when you\ndistribute the same sections as part of a whole which is a work based\n\ + on the Program, the distribution of the whole must be on the terms of\nthis License, whose\ + \ permissions for other licensees extend to the\nentire whole, and thus to each and every\ + \ part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim\ + \ rights or contest\nyour rights to work written entirely by you; rather, the intent is\ + \ to\nexercise the right to control the distribution of derivative or\ncollective works\ + \ based on the Program.\n\nIn addition, mere aggregation of another work not based on the\ + \ Program\nwith the Program (or with a work based on the Program) on a volume of\na storage\ + \ or distribution medium does not bring the other work under\nthe scope of this License.\n\ + \n3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in\ + \ object code or executable form under the terms of\nSections 1 and 2 above provided that\ + \ you also do one of the following:\n\na) Accompany it with the complete corresponding machine-readable\n\ + source code, which must be distributed under the terms of Sections 1\nand 2 above on a medium\ + \ customarily used for software interchange; or,\n\nb) Accompany it with a written offer,\ + \ valid for at least three years,\nto give any third party, for a charge no more than your\ + \ cost of\nphysically performing source distribution, a complete machine-readable\ncopy\ + \ of the corresponding source code, to be distributed under the\nterms of Sections 1 and\ + \ 2 above on a medium customarily used for\nsoftware interchange; or,\n\nc) Accompany it\ + \ with the information you received as to the offer to\ndistribute corresponding source\ + \ code. (This alternative is allowed\nonly for noncommercial distribution and only if you\ + \ received the\nprogram in object code or executable form with such an offer, in\naccord\ + \ with Subsection b above.)\n\nThe source code for a work means the preferred form of the\ + \ work for\nmaking modifications to it. For an executable work, complete source\ncode means\ + \ all the source code for all modules it contains, plus any\nassociated interface definition\ + \ files, plus the scripts used to\ncontrol compilation and installation of the executable.\ + \ However, as a\nspecial exception, the source code distributed need not include\nanything\ + \ that is normally distributed (in either source or binary\nform) with the major components\ + \ (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless\ + \ that component\nitself accompanies the executable.\n\nIf distribution of executable or\ + \ object code is made by offering\naccess to copy from a designated place, then offering\ + \ equivalent\naccess to copy the source code from the same place counts as\ndistribution\ + \ of the source code, even though third parties are not\ncompelled to copy the source along\ + \ with the object code.\n\n4. You may not copy, modify, sublicense, or distribute the Program\n\ + except as expressly provided under this License. Any attempt otherwise\nto copy, modify,\ + \ sublicense or distribute the Program is void, and\nwill automatically terminate your rights\ + \ under this License. However,\nparties who have received copies, or rights, from you under\ + \ this\nLicense will not have their licenses terminated so long as such\nparties remain\ + \ in full compliance.\n\n5. You are not required to accept this License, since you have\ + \ not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the\ + \ Program or its derivative works. These actions are\nprohibited by law if you do not accept\ + \ this License. Therefore, by\nmodifying or distributing the Program (or any work based\ + \ on the\nProgram), you indicate your acceptance of this License to do so, and\nall its\ + \ terms and conditions for copying, distributing or modifying\nthe Program or works based\ + \ on it.\n\n6. Each time you redistribute the Program (or any work based on the\nProgram),\ + \ the recipient automatically receives a license from the\noriginal licensor to copy, distribute\ + \ or modify the Program subject to\nthese terms and conditions. You may not impose any further\n\ + restrictions on the recipients' exercise of the rights granted\nherein. You are not responsible\ + \ for enforcing compliance by third\nparties to this License.\n\n7. If, as a consequence\ + \ of a court judgment or allegation of patent\ninfringement or for any other reason (not\ + \ limited to patent issues),\nconditions are imposed on you (whether by court order, agreement\ + \ or\notherwise) that contradict the conditions of this License, they do not\nexcuse you\ + \ from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously\ + \ your obligations under this\nLicense and any other pertinent obligations, then as a consequence\ + \ you\nmay not distribute the Program at all. For example, if a patent\nlicense would not\ + \ permit royalty-free redistribution of the Program by\nall those who receive copies directly\ + \ or indirectly through you, then\nthe only way you could satisfy both it and this License\ + \ would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this\ + \ section is held invalid or unenforceable under\nany particular circumstance, the balance\ + \ of the section is intended to\napply and the section as a whole is intended to apply in\ + \ other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe\ + \ any\npatents or other property right claims or to contest validity of any\nsuch claims;\ + \ this section has the sole purpose of protecting the\nintegrity of the free software distribution\ + \ system, which is\nimplemented by public license practices. Many people have made\ngenerous\ + \ contributions to the wide range of software distributed\nthrough that system in reliance\ + \ on consistent application of that\nsystem; it is up to the author/donor to decide if he\ + \ or she is willing\nto distribute software through any other system and a licensee cannot\n\ + impose that choice.\n\nThis section is intended to make thoroughly clear what is believed\ + \ to\nbe a consequence of the rest of this License.\n\n8. If the distribution and/or use\ + \ of the Program is restricted in\ncertain countries either by patents or by copyrighted\ + \ interfaces, the\noriginal copyright holder who places the Program under this License\n\ + may add an explicit geographical distribution limitation excluding\nthose countries, so\ + \ that distribution is permitted only in or among\ncountries not thus excluded. In such\ + \ case, this License incorporates\nthe limitation as if written in the body of this License.\n\ + \n9. The Free Software Foundation may publish revised and/or new\nversions of the General\ + \ Public License from time to time. Such new\nversions will be similar in spirit to the\ + \ present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach\ + \ version is given a distinguishing version number. If the Program\nspecifies a version\ + \ number of this License which applies to it and\n\"any later version\", you have the option\ + \ of following the terms and\nconditions either of that version or of any later version\ + \ published by\nthe Free Software Foundation. If the Program does not specify a\nversion\ + \ number of this License, you may choose any version ever\npublished by the Free Software\ + \ Foundation.\n\n10. If you wish to incorporate parts of the Program into other free\nprograms\ + \ whose distribution conditions are different, write to the\nauthor to ask for permission.\ + \ For software which is copyrighted by the\nFree Software Foundation, write to the Free\ + \ Software Foundation; we\nsometimes make exceptions for this. Our decision will be guided\ + \ by the\ntwo goals of preserving the free status of all derivatives of our free\nsoftware\ + \ and of promoting the sharing and reuse of software generally.\n\nNO WARRANTY\n\n11. BECAUSE\ + \ THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE\ + \ EXTENT PERMITTED BY APPLICABLE\nLAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\ + \ HOLDERS\nAND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF\nANY KIND,\ + \ EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF\ + \ MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY\ + \ AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\n\ + THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n12. IN NO EVENT UNLESS REQUIRED\ + \ BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY\ + \ WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\n\ + FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING\ + \ OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\ + \ DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR\ + \ A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR\ + \ OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\nEND OF TERMS AND\ + \ CONDITIONS\n\n[For brevity, we've cut out the GPL's final section on \"How to Apply\n\ + These Terms to Your New Program\", but you can find that at\nhttps://www.gnu.org/licenses/gpl-2.0.html#SEC4\ + \ ]" + json: npsl-exception-0.94.json + yaml: npsl-exception-0.94.yml + html: npsl-exception-0.94.html + license: npsl-exception-0.94.LICENSE - license_key: nrl + category: Permissive spdx_license_key: NRL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "NRL License\nCOPYRIGHT NOTICE\n\nAll of the documentation and software included in\ + \ this software distribution from the US Naval Research Laboratory (NRL) are copyrighted\ + \ by their respective developers.\n\nPortions of the software are derived from the Net/2\ + \ and 4.4-Lite Berkeley Software Distributions (BSD) of the University of California at\ + \ Berkeley and those portions are copyright by The Regents of the University of California.\ + \ All Rights Reserved. The UC Berkeley Copyright and License agreement is binding on those\ + \ portions of the software. In all cases, the NRL developers have retained the original\ + \ UC Berkeley copyright and license notices in the respective files in accordance with the\ + \ UC Berkeley copyrights and license.\n\nPortions of this software and documentation were\ + \ developed at NRL by various people. Those developers have each copyrighted the portions\ + \ that they developed at NRL and have assigned All Rights for those portions to NRL. Outside\ + \ the USA, NRL has copyright on some of the software developed at NRL. The affected files\ + \ all contain specific copyright notices and those notices must be retained in any derived\ + \ work.\n\nNRL LICENSE\n\nNRL grants permission for redistribution and use in source and\ + \ binary forms, with or without modification, of the software and documentation created\ + \ at NRL provided that the following conditions are met:\n\n1. All terms of the UC Berkeley\ + \ copyright and license must be followed. \n2. Redistributions of source code must retain\ + \ the above copyright notice, this list of conditions and the following disclaimer. \n3.\ + \ 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. \n4. All advertising materials mentioning features or use of this\ + \ software must display the following acknowledgements:\n\nThis product includes software\ + \ developed by the University of California, Berkeley and its contributors.\n\nThis product\ + \ includes software developed at the Information Technology Division, US Naval Research\ + \ Laboratory.\n\n5. Neither the name of the NRL nor the names of its contributors may be\ + \ used to endorse or promote products derived from this software without specific prior\ + \ written permission.\n\nTHE SOFTWARE PROVIDED BY NRL IS PROVIDED BY NRL 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 NRL 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.\n\nThe 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 the US Naval Research Laboratory (NRL)." json: nrl.json - yml: nrl.yml + yaml: nrl.yml html: nrl.html - text: nrl.LICENSE + license: nrl.LICENSE - license_key: nrl-permission + category: Permissive spdx_license_key: LicenseRef-scancode-nrl-permission other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify and distribute this software and its + documentation is hereby granted, provided that both the copyright + notice and this permission notice appear in all copies of the software, + derivative works or modified versions, and any portions thereof, and + that both notices appear in supporting documentation. + + NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND + DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER + RESULTING FROM THE USE OF THIS SOFTWARE. json: nrl-permission.json - yml: nrl-permission.yml + yaml: nrl-permission.yml html: nrl-permission.html - text: nrl-permission.LICENSE + license: nrl-permission.LICENSE - license_key: ntlm + category: Permissive spdx_license_key: LicenseRef-scancode-ntlm other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + COPYRIGHT AND LICENCE + + This application is free software. This code 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. You may freely use, copy and distribute this software as long as all copyright notices, including this notice, remain intact and that you do not try to claim it as your own or try to sell it. You may alter the code as long as you send me any diffs (this will ensure that you have an easier time of it when you upgrade ;). + + Parts of this code Copyright (C) 2007 David (Buzz) Bussenschutt. + + Perl port of this code is Copyright (C) 2001 Mark Bush. + + The code is originally based on fetchmail code which is Copyright (C) 1997 Eric S. Raymond. + + Fetchmail uses SMB/Netbios code from samba which is Copyright (C) Andrew Tridgell 1992-1998 with modifications from Jeremy Allison. json: ntlm.json - yml: ntlm.yml + yaml: ntlm.yml html: ntlm.html - text: ntlm.LICENSE + license: ntlm.LICENSE - license_key: ntp-0 + category: Permissive spdx_license_key: NTP-0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software and + its documentation for any purpose is hereby granted, provided that + the names of M.I.T. and the M.I.T. S.I.P.B. not be used in + advertising or publicity pertaining to distribution of the software + without specific, written prior permission. M.I.T. and the + M.I.T. S.I.P.B. make no representations about the suitability of + this software for any purpose. It is provided "as is" without + express or implied warranty. json: ntp-0.json - yml: ntp-0.yml + yaml: ntp-0.yml html: ntp-0.html - text: ntp-0.LICENSE + license: ntp-0.LICENSE - license_key: ntpl + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose with or without fee is hereby granted, + provided that the above copyright notice appears in all copies and + that both the copyright notice and this permission notice appear in + supporting documentation, and that the name of the authors not be + used in advertising or publicity pertaining to distribution of the + software without specific, written prior permission. The authors + makes no representations about the suitability this software for any + purpose. It is provided "as is" without express or implied warranty. json: ntpl.json - yml: ntpl.yml + yaml: ntpl.yml html: ntpl.html - text: ntpl.LICENSE + license: ntpl.LICENSE - license_key: ntpl-origin + category: Permissive spdx_license_key: LicenseRef-scancode-ntpl-origin other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 appears in all copies and + that both the copyright notice and this permission notice appear in + supporting documentation. This software is supported as is and without + any express or implied warranties, including, without limitation, the + implied warranties of merchantability and fitness for a particular + purpose. The name Origin B.V. must not be used to endorse or promote + products derived from this software without prior written permission. json: ntpl-origin.json - yml: ntpl-origin.yml + yaml: ntpl-origin.yml html: ntpl-origin.html - text: ntpl-origin.LICENSE + license: ntpl-origin.LICENSE - license_key: numerical-recipes-notice + category: Commercial spdx_license_key: LicenseRef-scancode-numerical-recipes-notice other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + Types of License Offered + + Here are the types of licenses that we offer. Note that some types are + automatically acquired with the purchase of media from Cambridge University + Press, or of an unlocking password from the Numerical Recipes On-Line Software + Store, while other types of licenses require that you communicate specifically with + Numerical Recipes Software (email: orders@nr.com or fax: 781 863-1739). Our + Web site http://www.nr.com has additional information. + + - "Immediate License" If you are the individual owner of a copy of this book and + you type one or more of its routines into your computer, we authorize you to use + them on that computer for your own personal and noncommercial purposes. You + are not authorized to transfer or distribute machine-readable copies to any other + person, or to use the routines on more than one machine, or to distribute executable + programs containing our routines. This is the only free license. + + - "Single-Screen License" This is the most common type of low-cost license, with + terms governed by our Single Screen (Shrinkwrap) License document (complete + terms available through ourWeb site). Basically, this license lets you use Numerical + Recipes routines on any one screen (PC, workstation, X-terminal, etc.). You may + also, under this license, transfer pre-compiled, executable programs incorporating + our routines to other, unlicensed, screens or computers, providing that (i) your + application is noncommercial (i.e., does not involve the selling of your program + for a fee), (ii) the programs were first developed, compiled, and successfully run + on a licensed screen, and (iii) our routines are bound into the programs in such a + manner that they cannot be accessed as individual routines and cannot practicably + be unbound and used in other programs. That is, under this license, your program + user must not be able to use our programs as part of a program library or "mix-andmatch" + workbench. Conditions for other types of commercial or noncommercial + distribution may be found on our Web site (http://www.nr.com). + + - "Multi-Screen, Server, Site, and Corporate Licenses" The terms of the Single + Screen License can be extended to designated groups of machines, defined by + number of screens, number of machines, locations, or ownership. Significant + discounts from the corresponding single-screen prices are available when the + estimated number of screens exceeds 40. Contact Numerical Recipes Software + (email: orders@nr.com or fax: 781 863-1739) for details. + + - "Course Right-to-Copy License" Instructors at accredited educational institutions + who have adopted this book for a course, and who have already purchased a Single + Screen License (either acquired with the purchase of media, or from the Numerical + Recipes On-Line Software Store), may license the programs for use in that course + as follows: Mail your name, title, and address; the course name, number, dates, + and estimated enrollment; and advance payment of $5 per (estimated) student' + to Numerical Recipes Software, at this address: P.O. Box 243, Cambridge, MA + 02238 (USA). You will receive by return mail a license authorizing you to make + copies of the programs for use by your students, and/or to transfer the programs to + a machine accessible to your students (but only for the duration of the course). + + About Copyrights on Computer Programs + Like artistic or literary compositions, computer programs are protected by + copyright. Generally it is an infringement for you to copy into your computer a + program from a copyrighted source. (It is also not a friendly thing to do, since it + deprives the program's author of compensation for his or her creative effort.) Under + copyright law, all "derivative works" (modified versions, or translations into another + computer language) also come under the same copyright as the original work. + Copyright does not protect ideas, but only the expression of those ideas in + a particular form. In the case of a computer program, the ideas consist of the + program's methodology and algorithm, including the necessary sequence of steps + adopted by the programmer. The expression of those ideas is the program source + code (particularly any arbitrary or stylistic choices embodied in it), its derived object + code, and any other derivative works. + + If you analyze the ideas contained in a program, and then express those + ideas in your own completely different implementation, then that new program + implementation belongs to you. That is what we have done for those programs in + this book that are not entirely of our own devising. When programs in this book are + said to be "based" on programs published in copyright sources, we mean that the + ideas are the same. The expression of these ideas as source code is our own. We + believe that no material in this book infringes on an existing copyright. + + Trademarks + Several registered trademarks appear within the text of this book: Sun is a + trademark of Sun Microsystems, Inc. SPARC and SPARCstation are trademarks + of SPARC International, Inc. Microsoft, Windows 95, Windows NT, PowerStation, + and MS are trademarks of Microsoft Corporation. DEC, VMS, Alpha AXP, and + ULTRIX are trademarks of Digital Equipment Corporation. IBM is a trademark of + International Business Machines Corporation. Apple and Macintosh are trademarks + of Apple Computer, Inc. UNIX is a trademark licensed exclusively through X/Open + Co. Ltd. IMSL is a trademark of Visual Numerics, Inc. NAG refers to proprietary + computer software of Numerical Algorithms Group (USA) Inc. PostScript and + Adobe Illustrator are trademarks of Adobe Systems Incorporated. Last, and no doubt + least, Numerical Recipes (when identifying products) is a trademark of Numerical + Recipes Software. + + Attributions + The fact that ideas are legally "free as air" in no way supersedes the ethical + requirement that ideas be credited to their known originators. When programs in + this book are based on known sources, whether copyrighted or in the public domain, + published or "handed-down," we have attempted to give proper attribution. Unfortunately, + the lineage of many programs in common circulation is often unclear. We + would be grateful to readers for new or corrected information regarding attributions, + which we will attempt to incorporate in subsequent printings. json: numerical-recipes-notice.json - yml: numerical-recipes-notice.yml + yaml: numerical-recipes-notice.yml html: numerical-recipes-notice.html - text: numerical-recipes-notice.LICENSE + license: numerical-recipes-notice.LICENSE - license_key: nunit-v2 + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: "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.\n\ + \nPermission 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:\n\ + \n1. 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\ + \ (see the following) in the product documentation is required.\n\nPortions Copyright ©\ + \ 2002-2012 Charlie Poole \nor Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei\ + \ A. Vorontsov \nor Copyright © 2000-2002 Philip A. Craig\n\n2. Altered source versions\ + \ must be plainly marked as such, and must not be misrepresented as being the original software.\n\ + \n3. This notice may not be removed or altered from any source distribution." json: nunit-v2.json - yml: nunit-v2.yml + yaml: nunit-v2.yml html: nunit-v2.html - text: nunit-v2.LICENSE + license: nunit-v2.LICENSE - license_key: nvidia + category: Permissive spdx_license_key: LicenseRef-scancode-nvidia other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "NOTICE TO USER: The source code is copyrighted under U.S. and international laws. NVIDIA,\ + \ Corp. of Sunnyvale, California owns the copyright and as design patents pending on the\ + \ design and interface of the NV chips. \nUsers and possessors of this source code are hereby\ + \ granted a nonexclusive, royalty-free copyright and design patent license to use this code\ + \ in individual and commercial software.\n\nAny use of this source code must include, in\ + \ the user documentation and internal comments to the code, notices to the end user as follows:\n\ + \nCopyright (c) 1996-1998 NVIDIA, Corp. NVIDIA design patents pending in the U.S. and foreign\ + \ countries.\n\nNVIDIA, CORP. MAKES NO REPRESENTATION ABOUT THE SUITABILITY OF THIS SOURCE\ + \ CODE FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\" WITHOUT EXPRESS OR IMPLIED WARRANTY OF\ + \ ANY KIND. NVIDIA, CORP. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOURCE CODE, INCLUDING\ + \ ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO\ + \ EVENT SHALL NVIDIA, CORP. BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL, 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 SOURCE CODE." json: nvidia.json - yml: nvidia.yml + yaml: nvidia.yml html: nvidia.html - text: nvidia.LICENSE + license: nvidia.LICENSE - license_key: nvidia-2002 + category: Permissive spdx_license_key: LicenseRef-scancode-nvidia-2002 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "NVIDIA Corporation(\"NVIDIA\") supplies this software to you in\nconsideration of your\ + \ agreement to the following terms, and your use,\ninstallation, modification or redistribution\ + \ of this NVIDIA software\nconstitutes acceptance of these terms. If you do not agree with\ + \ these\nterms, please do not use, install, modify or redistribute this NVIDIA\nsoftware.\n\ + \nIn consideration of your agreement to abide by the following terms, and\nsubject to these\ + \ terms, NVIDIA grants you a personal, non-exclusive\nlicense, under NVIDIA's copyrights\ + \ in this original NVIDIA software (the\n\"NVIDIA Software\"), to use, reproduce, modify\ + \ and redistribute the\nNVIDIA Software, with or without modifications, in source and/or\ + \ binary\nforms; provided that if you redistribute the NVIDIA Software, you must\nretain\ + \ the copyright notice of NVIDIA, this notice and the following\ntext and disclaimers in\ + \ all such redistributions of the NVIDIA Software.\nNeither the name, trademarks, service\ + \ marks nor logos of NVIDIA\nCorporation may be used to endorse or promote products derived\ + \ from the\nNVIDIA Software without specific prior written permission from NVIDIA.\nExcept\ + \ as expressly stated in this notice, no other rights or licenses\nexpress or implied, are\ + \ granted by NVIDIA herein, including but not\nlimited to any patent rights that may be\ + \ infringed by your derivative\nworks or by other works in which the NVIDIA Software may\ + \ be\nincorporated. No hardware is licensed hereunder. \n\nTHE NVIDIA SOFTWARE IS BEING\ + \ PROVIDED ON AN \"AS IS\" BASIS, WITHOUT\nWARRANTIES OR CONDITIONS OF ANY KIND, EITHER\ + \ EXPRESS OR IMPLIED,\nINCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF TITLE,\n\ + NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\nITS USE AND OPERATION\ + \ EITHER ALONE OR IN COMBINATION WITH OTHER\nPRODUCTS.\n\nIN NO EVENT SHALL NVIDIA BE LIABLE\ + \ FOR ANY SPECIAL, INDIRECT,\nINCIDENTAL, EXEMPLARY, CONSEQUENTIAL DAMAGES (INCLUDING, BUT\ + \ NOT LIMITED\nTO, LOST PROFITS; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\n\ + USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) OR ARISING IN ANY WAY\nOUT OF THE USE,\ + \ REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE\nNVIDIA SOFTWARE, HOWEVER CAUSED\ + \ AND WHETHER UNDER THEORY OF CONTRACT,\nTORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR\ + \ OTHERWISE, EVEN IF\nNVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." json: nvidia-2002.json - yml: nvidia-2002.yml + yaml: nvidia-2002.yml html: nvidia-2002.html - text: nvidia-2002.LICENSE + license: nvidia-2002.LICENSE - license_key: nvidia-apex-sdk-eula-2011 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-nvidia-apex-sdk-eula-2011 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "NVIDIA CORPORATION\nNVIDIA APEX SDK END USER LICENSE AGREEMENT\nWelcome to the new\ + \ world of game development physical asset creation provided to you\nwith the APEX SDK from\ + \ NVIDIA®.\n\nNVIDIA Corporation (“NVIDIA”) is willing to license the APEX SDK and the\n\ + accompanying documentation, samples applications, utilities, and asset authoring\nlibraries\ + \ to you only on the condition that you accept all the terms in this License\nAgreement\ + \ (“Agreement”).\n\nIMPORTANT: READ THE FOLLOWING TERMS AND CONDITIONS BEFORE\nUSING THE\ + \ ACCOMPANYING NVIDIA APEX SDK.\nIF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, NVIDIA\ + \ IS\nNOT WILLING TO LICENSE THE APEX SDK TO YOU. IF YOU DO NOT AGREE\nTO THESE TERMS, YOU\ + \ SHALL DESTROY THIS ENTIRE PRODUCT AND\nPROVIDE EMAIL VERIFICATION TO PHYSXLICENCING@NVIDIA.COM\ + \ OF\nDELETION OF ALL COPIES OF THE ENTIRE PRODUCT.\nNVIDIA MAY MODIFY THE TERMS OF THIS\ + \ AGREEMENT FROM TIME TO\nTIME. ANY USE OF THE APEX SDK WILL BE SUBJECT TO SUCH UPDATED\n\ + TERMS. A CURRENT VERSION OF THIS AGREEMENT IS POSTED ON\nNVIDIA’S DEVELOPER WEBSITE: www.developer.nvidia.com/apex\n\ + \n1. Definitions.\n“Physics Application” means a software application designed for use and\ + \ fully\ncompatible with the PhysX and APEX SDK and/or NVIDIA Graphics processor\nproducts,\ + \ including but not limited to, a video game, visual simulation, movie, or other\nproduct.\ + \ “APEX Software Development Kit” or “APEX SDK” means the set of\ninstructions for computers,\ + \ in executable form and in any media (which may include\ndiskette, CD-ROM, downloadable\ + \ internet, hardware, or firmware) comprising\nNVIDIA’s proprietary Software Development\ + \ Kit and related media and printed\nmaterials, including Redistributable Code, Sample Code,\ + \ reference guides and manuals,\ninstallation routines, API’s, libraries, any subsequent\ + \ updates or adaptations provided by\nNVIDIA, whether with this installation or as separately\ + \ downloaded. “Sample Code”\nmeans the sample interface or application source and object\ + \ code files contained within\nthe APEX SDK’s “Samples” directory or made available for\ + \ download from the PhysX\ndeveloper site and designated as sample code.\n\n2. License.\ + \ NVIDIA grants you (“you”) a limited, non-exclusive, non-transferable\nworld-wide, royalty-free\ + \ license to (a) internally install, use and display the APEX SDK, \nsolely for purposes\ + \ of developing APEX asset content for Physics Applications; (b)\ninternally use, copy,\ + \ modify and compile the Sample Code to design, develop and test\nAPEX assets; and (c) reproduce\ + \ and distribute the Redistributable Code only in object\ncode form and only as fully integrated\ + \ into Physics Applications, provided you meet and\ncomply with all requirements of this\ + \ Agreement.\n\nIn addition, you may not and shall not permit others to:\n(i) modify, reproduce,\ + \ de-compile, reverse engineer or translate the APEX\nSDK; or\n(ii) distribute or transfer\ + \ the APEX SDK other than as part of the Physics\nApplication.\n\nExcept as expressly granted\ + \ herein, no other license under any patent, copyright, trade\nsecret, trademark or other\ + \ intellectual property right is granted to or conferred upon you\nby this Agreement. All\ + \ other rights are expressly reserved by NVIDIA and its licensors.\n\n3. Redistribution;\ + \ Physics Applications. Any redistribution of the APEX SDK (in\naccordance with Section\ + \ 2 above) or portions thereof must be subject to an end user\nlicense agreement including\ + \ language that\n(a) prohibits the end user from modifying, reproducing, de-compiling, reverse\n\ + engineering or translating the APEX SDK;\n(b) prohibits the end user from distributing or\ + \ transferring the APEX SDK other\nthan as part of the Physics Application;\n(c) disclaims\ + \ any and all warranties on behalf of NVIDIA and its affiliated\ncompanies and licensors;\n\ + (d) disclaims, to the maximum extent permitted by law, NVIDIA’s, its affiliated\ncompanies\ + \ and its licensors' liability for all damages, direct or indirect, incidental or\nconsequential,\ + \ that may arise from any use of the APEX SDK and/or Physics\nApplication;\n(e) requires\ + \ the end user to agree not to export the APEX SDK and/or Physics\nApplication, directly\ + \ or indirectly, in violation of any U.S. laws; and\n\nYOU ARE REQUIRED TO NOTIFY NVIDIA\ + \ PRIOR TO USE OF THE APEX SDK\nIN THE DEVELOPMENT OF ANY COMMERCIAL PHYSICS APPLICATION.\n\ + PLEASE SEND NOTIFICATION BY EMAIL TO:\nPHYSXLICENSING@NVIDIA.COM AND PROVIDE THE FOLLOWING\n\ + INFORMATION IN THE EMAIL:\n- COMPANY NAME\n- PUBLISHER NAME\n- GAME TITLE\n- PLATFORMS (I.E.\ + \ PC, XBOX, PS3, WII)\n- SCHEDULED SHIP DATE\n\nANY COMMERCIAL PHYSICS APPLICATION INTEGRATING\ + \ THE APEX SDK IS\nSUBJECT TO A LICENSE TO NVIDIA FOR USE AND PUBLIC DISPLAY OF\nSUCH PHYSICS\ + \ APPLICATION FOR ADVERTISING AND MARKETING\nPURPOSES.\n\nFAILURE TO NOTIFY NVIDIA PURSUANT\ + \ TO THIS SECTION AND FAILURE\nTO PROVIDE ATTRIBUTION PURSUANT TO SECTION 6 SHALL BE\nCONSIDERED\ + \ A MATERIAL BREACH OF THIS AGREEMENT.\n\n4. Ownership, Protections. The APEX SDK is owned\ + \ by NVIDIA and NVIDIA\nlicensors, and is protected by United States copyright laws, international\ + \ treaty\nprovisions, and other applicable laws. With regard to any copies made, you agree\ + \ to\nreproduce any copyright notices and other proprietary legends included on the original.\n\ + NVIDIA copyright notice(s) may appear in any of several forms, including machinereadable\ + \ \nform, and you agree to reproduce such notice in each form in which it appears.\nTitle\ + \ and copyrights to the APEX SDK and any copies made by you remain with\nNVIDIA and its\ + \ licensors. You acknowledge that the APEX SDK contain valuable\nproprietary information\ + \ and trade secrets and that unauthorized or improper use of the\nAPEX SDK will result in\ + \ irreparable harm to NVIDIA and its licensors for which\nmonetary damages would be inadequate\ + \ and for which NVIDIA and its licensors will be\nentitled to immediate injunctive relief.\ + \ Subject to the rights of NVIDIA and its licensors\nin the APEX SDK and the Sample Code,\ + \ you own your modifications to the Sample\nCode.\n\n5. Restrictions. You will not, and\ + \ will not permit others to: (a) modify, translate,\ndecompile, bootleg, reverse engineer,\ + \ disassemble, or extract the inner workings of any\nportion of the APEX SDK except the\ + \ Sample Code, (b) copy the look-and-feel or\nfunctionality of any portion of the APEX SDK\ + \ except the Sample Code; (c) remove any\nproprietary notices, marks, labels, or logos from\ + \ the APEX SDK or any portion thereof;\n(d) rent, transfer or use as a service bureau all\ + \ or some of the APEX SDK without\nNVIDIA’s prior written consent, except in the form of\ + \ Physics Applications and subject\nto the requirements of this Agreement; (e) utilize any\ + \ computer software or hardware\nwhich is designed to defeat any copy protection device,\ + \ should the APEX SDK be\nequipped with such a protection device; or (f) use the NVIDIA\ + \ Licensed Software in any\nmanner that would cause the NVIDIA Licensed Software to become\ + \ subject to an Open\nSource License. \"Open Source License\" includes, without limitation,\ + \ a software license\nthat requires as a condition of use, modification, and/or distribution\ + \ of such software that\nthe NVIDIA Licensed Software be (i) disclosed or distributed in\ + \ source code form; (ii) be\nlicensed for the purpose of making derivative works; or (iii)\ + \ be redistributable at no\ncharge. Unauthorized copying of the APEX SDK, or failure to\ + \ comply with any of the\nprovisions of this Agreement, will result in automatic termination\ + \ of this license.\n\n6. Attribution Requirements and Trademark License. You must provide\ + \ attribution\nto NVIDIA.\n\nA: You will include a reference to the APEX SDK and NVIDIA\ + \ in any press releases\nfor such Game that relate to NVIDIA, or in-game physics, and will\ + \ identify \nNVIDIA as the provider of \"APEX\" (or such other term or phrase as indicated\ + \ by\nNVIDIA from time to time).\n\nB: For Games, Demos, and Videos that incorporate the\ + \ APEX SDK or portions\nthereof, the NVIDIA logos must appear:\na. on the back cover of\ + \ the instruction manual or similar placement in an\nelectronic file for the purpose of\ + \ acknowledgement/copyright/trademark\nnotice;\nb. on external packaging;\nc. during opening\ + \ marquee or credits with inclusion of “NVIDIA”;\nd. must appear on title marketing feature\ + \ list with a specific call-out of\nNVIDIA APEX Technology\ne. on the credit screen; and\n\ + f. in the “About” or “Info” box menu items (or equivalent) of all Physics\nGames or Applications\ + \ using any portion of the APEX SDK.\n\nC: Provide a quote citing the Licensee’s integration\ + \ of the APEX SDK into the Game\nor Application for NVIDIA’s use in press materials and\ + \ website.\n\nD: Refer to NVIDIA’s APEX SDK in all press coverage referring to the use APEX\n\ + in the development of any Game or Application.\nFAILURE TO PROVIDE ATTRIBUTION PURSUANT\ + \ TO THIS SECTION SHALL\nBE CONSIDERED A MATERIAL BREACH OF THIS AGREEMENT.\n\nExcept as\ + \ expressly set forth in this Section 6, or in a separate written agreement with\nNVIDIA,\ + \ you may not use NVIDIA's trademarks, whether registered or unregistered, in\nconnection\ + \ with the Physics Application in any manner or imply that NVIDIA endorses\nor otherwise\ + \ approves of the Physics Application or that you and NVIDIA are in any way\naffiliated.\ + \ Your use of the NVIDIA name under this Agreement does not create any\nright, title or\ + \ interest in the NVIDIA name or any NVIDIA trademarks and all goodwill\narising from your\ + \ use inure solely to the benefit of NVIDIA.\n\n7. DISCLAIMER. EXCEPT FOR THE ABOVE EXPRESS\ + \ LIMITED\nWARRANTY, THE APEX SDK IS PROVIDED “AS IS” AND NVIDIA AND ITS\nLICENSORS MAKE,\ + \ AND YOU RECEIVE, NO OTHER WARRANTIES OF ANY\nKIND, WHETHER EXPRESS, IMPLIED, STATUTORY,\ + \ OR IN ANY\nCOMMUNICATION WITH YOU. NVIDIA SPECIFICALLY DISCLAIMS ANY\nOTHER WARRANTY INCLUDING\ + \ THE IMPLIED WARRANTIES OF\nMERCHANTABILITY, NON-INFRINGEMENT, OR FITNESS FOR A PARTICULAR\n\ + PURPOSE. NVIDIA DOES NOT WARRANT THAT THE OPERATION OF THE\nSOFTWARE WILL BE UNINTERRUPTED\ + \ OR ERROR FREE OR THAT DEFECTS\nIN THE SOFTWARE WILL BE CORRECTED. NVIDIA MAKES NO WARRANTY\n\ + WITH RESPECT TO THE CORRECTNESS, ACCURACY, OR RELIABILITY OF\nTHE SOFTWARE AND DOCUMENTATION.\ + \ Some jurisdictions do not allow the\nexclusion of implied warranties, so the above exclusion\ + \ may not apply to you.\n\n8. Remedies. The entire liability of NVIDIA and its licensors,\ + \ and your exclusive\nremedy under the warranty provided herein will be, at NVIDIA’s option,\ + \ to replace any\nmedia found to be defective within the warranty period, or to refund the\ + \ purchase price \nand terminate this Agreement. To seek such a remedy, you must return\ + \ the entire APEX\nSDK to NVIDIA, with a copy of the original purchase receipt within the\ + \ warranty period.\n\n9. Confidential Information. All technical and business information\ + \ disclosed by\nNVIDIA to you under this Agreement, including but not limited to source\ + \ code,\ndocumentation, technical assistance and any confidential information pertaining\ + \ to\nNVIDIA’s business or products, are to be considered “NVIDIA Confidential\nInformation.”\ + \ You will not disclose any portion of NVIDIA Confidential Information to\nany third party\ + \ and will protect all NVIDIA Confidential Information with the same\ndegree of care as\ + \ you use to protect your own information of a confidential or proprietary\nnature, but\ + \ always with at least a reasonable degree of care. This obligation of\nconfidentiality\ + \ will survive termination and/or expiration of this Agreement for any\nreason.\n\n10. LIMITATION\ + \ OF LIABILITY. THE TOTAL LIABILITY OF NVIDIA AND\nITS LICENSORS UNDER THIS AGREEMENT FOR\ + \ DAMAGES WILL NOT\nEXCEED $100 IN THE AGGREGATE. IN NO EVENT WILL NVIDIA OR ITS\nLICENSORS\ + \ BE LIABLE IN ANY WAY FOR INCIDENTAL, CONSEQUENTIAL,\nINDIRECT, SPECIAL OR PUNITIVE DAMAGES\ + \ OF ANY NATURE, INCLUDING\nWITHOUT LIMITATION, LOST BUSINESS PROFITS, OR LIABILITY OR INJURY\n\ + TO THIRD PERSONS, WHETHER FORESEEABLE OR NOT, REGARDLESS OF\nWHETHER NVIDIA OR ITS LICENSORS\ + \ HAVE BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES. Some jurisdictions do not permit\ + \ limitations of\nliability for incidental or consequential damages, so the above exclusions\ + \ may not apply\nto you.\n\n11. Customer and Technical Support. You will be solely responsible\ + \ for providing\ncustomer and technical support to end users of the Physics Application\ + \ for all features of\nthe Physics Application, including those features that relate to\ + \ integration, functionality\nor compatibility of the Physics Application with NVIDIA products.\ + \ NVIDIA may\nprovide you with technical support related to use of the APEX SDK under terms\ + \ and\nconditions as posted on the NVIDIA PhysX developer website, which may, in NVIDIA’s\n\ + sole discretion, be changed from time to time.\n\n12. Term of License; Termination. Your\ + \ right to use the APEX SDK will begin when\nyou click the “ACCEPT” button, which constitutes\ + \ acceptance of the terms and\nconditions herein. The license is effective until otherwise\ + \ terminated. You may\nterminate it at any time by destroying the APEX SDK and all portions\ + \ thereof, together\nwith all copies in any form. If you fail to comply with any material\ + \ term or condition of\nthis Agreement and do not cure the noncompliance within 30 days\ + \ of receipt of written\nnotice of noncompliance from NVIDIA, NVIDIA may terminate your\ + \ rights to conduct\nany further development under Sections 2(a) and (b) of this Agreement\ + \ (\"Partial\nTermination\"). Upon Partial Termination, you will certify to NVIDIA in writing\ + \ that the\noriginal and all stand-alone copies, in whole or in part, of the APEX SDK have\ + \ been\ndestroyed. Upon Partial Termination, you may continue to distribute any Physics\n\ + Application that has been commercially released prior to such termination subject to\nprospective\ + \ compliance with this Agreement. Upon any other termination, you will\ncertify to NVIDIA\ + \ in writing that the original and all copies, in whole or in part, of the \nAPEX SDK have\ + \ been destroyed, including those portions contained within any\nunshipped Physics Applications.\n\ + \n13. Governing Law. This Agreement will be governed by the laws of the United\nStates of\ + \ America to the extent that they apply and otherwise by the laws of the State of\nCalifornia,\ + \ without reference to principles of conflicts of law.\n\n14. Export. You agree and certify\ + \ that no portion of the APEX SDK nor any other\ntechnical data received from NVIDIA will\ + \ be exported outside the United States except\nas authorized and as permitted by the laws\ + \ and regulations of the United States. If you\nhave rightfully obtained the APEX SDK outside\ + \ of the United States, you agree that you\nwill not re-export any portion of the APEX SDK\ + \ nor any other technical data received\nfrom NVIDIA, except as permitted by the laws and\ + \ regulations of the United States and\nthe laws and regulations of the jurisdiction in\ + \ which you obtained the APEX SDK.\n\n15. Assignment. You may not sublicense, assign or\ + \ transfer this Agreement or the\nAPEX SDK except as expressly provided in this Agreement.\ + \ Any attempt to otherwise\nsublicense, assign or transfer any of the rights, duties or\ + \ obligations hereunder is null and\nvoid.\n\n16. Survival. The parties agree that where\ + \ the context of any provision indicates an\nintent that it will survive the term of this\ + \ Agreement, then it will survive. All terms of\nthis Agreement survive Partial Termination\ + \ except Sections 2(a) and (b).\n\n17. Entire Agreement. This Agreement contains the parties’\ + \ entire agreement\nregarding your use of the APEX SDK and may be amended only in writing\ + \ signed by\nboth parties.\n\nCopyright 2011 NVIDIA Corporation. All rights reserved.\n\ + US AND INTERNATIONAL PATENTS PENDING.\nRev (7-22-11)" json: nvidia-apex-sdk-eula-2011.json - yml: nvidia-apex-sdk-eula-2011.yml + yaml: nvidia-apex-sdk-eula-2011.yml html: nvidia-apex-sdk-eula-2011.html - text: nvidia-apex-sdk-eula-2011.LICENSE + license: nvidia-apex-sdk-eula-2011.LICENSE - license_key: nvidia-cuda-supplement-2020 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-nvidia-cuda-supplement-2020 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "The terms in this supplement govern your use of the NVIDIA CUDA Toolkit SDK under the\ + \ terms of your license agreement (“Agreement”) as modified by this supplement. Capitalized\ + \ terms used but not defined below have the meaning assigned to them in the Agreement.\n\ + \nThis supplement is an exhibit to the Agreement and is incorporated as an integral part\ + \ of the Agreement. In the event of conflict between the terms in this supplement and the\ + \ terms in the Agreement, the terms in this supplement govern.\n\n2.1. License Scope\nThe\ + \ SDK is licensed for you to develop applications only for use in systems with NVIDIA GPUs.\n\ + \n2.2. Distribution\nThe portions of the SDK that are distributable under the Agreement\ + \ are listed in Attachment A.\n\n2.3. Operating Systems\nThose portions of the SDK designed\ + \ exclusively for use on the Linux or FreeBSD operating systems, or other operating systems\ + \ derived from the source code to these operating systems, may be copied and redistributed\ + \ for use in accordance with this Agreement, provided that the object code files are not\ + \ modified in any way (except for unzipping of compressed files).\n\n2.4. Audio and Video\ + \ Encoders and Decoders\nYou acknowledge and agree that it is your sole responsibility to\ + \ obtain any additional third-party licenses required to make, have made, use, have used,\ + \ sell, import, and offer for sale your products or services that include or incorporate\ + \ any third-party software and content relating to audio and/or video encoders and decoders\ + \ from, including but not limited to, Microsoft, Thomson, Fraunhofer IIS, Sisvel S.p.A.,\ + \ MPEG-LA, and Coding Technologies. NVIDIA does not grant to you under this Agreement any\ + \ necessary patent or other rights with respect to any audio and/or video encoders and decoders.\n\ + \n2.5. Licensing\nIf the distribution terms in this Agreement are not suitable for your\ + \ organization, or for any questions regarding this Agreement, please contact NVIDIA at\ + \ nvidia-compute-license-questions@nvidia.com.\n\n2.6. Attachment A\nThe following CUDA\ + \ Toolkit files may be distributed with Licensee Applications developed by you, including\ + \ certain variations of these files that have version number or architecture specific information\ + \ embedded in the file name - as an example only, for release version 9.0 of the 64-bit\ + \ Windows software, the file cudart64_90.dll is redistributable.\n\nComponent\tCUDA Runtime\n\ + Windows\tcudart.dll, cudart_static.lib, cudadevrt.lib\nMac OSX\tlibcudart.dylib, libcudart_static.a,\ + \ libcudadevrt.a\nLinux\tlibcudart.so, libcudart_static.a, libcudadevrt.a\nAndroid\tlibcudart.so,\ + \ libcudart_static.a, libcudadevrt.a\nComponent\tCUDA FFT Library\nWindows\tcufft.dll, cufftw.dll,\ + \ cufft.lib, cufftw.lib\nMac OSX\tlibcufft.dylib, libcufft_static.a, libcufftw.dylib, libcufftw_static.a\n\ + Linux\tlibcufft.so, libcufft_static.a, libcufftw.so, libcufftw_static.a\nAndroid\tlibcufft.so,\ + \ libcufft_static.a, libcufftw.so, libcufftw_static.a\nComponent\tCUDA BLAS Library\nWindows\t\ + cublas.dll, cublasLt.dll\nMac OSX\tlibcublas.dylib, libcublasLt.dylib, libcublas_static.a,\ + \ libcublasLt_static.a\nLinux\tlibcublas.so, libcublasLt.so, libcublas_static.a, libcublasLt_static.a\n\ + Android\tlibcublas.so, libcublasLt.so, libcublas_static.a, libcublasLt_static.a\nComponent\t\ + NVIDIA \"Drop-in\" BLAS Library\nWindows\tnvblas.dll\nMac OSX\tlibnvblas.dylib\nLinux\t\ + libnvblas.so\nComponent\tCUDA Sparse Matrix Library\nWindows\tcusparse.dll, cusparse.lib\n\ + Mac OSX\tlibcusparse.dylib, libcusparse_static.a\nLinux\tlibcusparse.so, libcusparse_static.a\n\ + Android\tlibcusparse.so, libcusparse_static.a\nComponent\tCUDA Linear Solver Library\nWindows\t\ + cusolver.dll, cusolver.lib\nMac OSX\tlibcusolver.dylib, libcusolver_static.a\nLinux\tlibcusolver.so,\ + \ libcusolver_static.a\nAndroid\tlibcusolver.so, libcusolver_static.a\nComponent\tCUDA Random\ + \ Number Generation Library\nWindows\tcurand.dll, curand.lib\nMac OSX\tlibcurand.dylib,\ + \ libcurand_static.a\nLinux\tlibcurand.so, libcurand_static.a\nAndroid\tlibcurand.so, libcurand_static.a\n\ + Component\tNVIDIA Performance Primitives Library\nWindows\tnppc.dll, nppc.lib, nppial.dll,\ + \ nppial.lib, nppicc.dll, nppicc.lib, nppicom.dll, nppicom.lib, nppidei.dll, nppidei.lib,\ + \ nppif.dll, nppif.lib, nppig.dll, nppig.lib, nppim.dll, nppim.lib, nppist.dll, nppist.lib,\ + \ nppisu.dll, nppisu.lib, nppitc.dll, nppitc.lib, npps.dll, npps.lib\nMac OSX\tlibnppc.dylib,\ + \ libnppc_static.a, libnppial.dylib, libnppial_static.a, libnppicc.dylib, libnppicc_static.a,\ + \ libnppicom.dylib, libnppicom_static.a, libnppidei.dylib, libnppidei_static.a, libnppif.dylib,\ + \ libnppif_static.a, libnppig.dylib, libnppig_static.a, libnppim.dylib, libnppisu_static.a,\ + \ libnppitc.dylib, libnppitc_static.a, libnpps.dylib, libnpps_static.a\nLinux\tlibnppc.so,\ + \ libnppc_static.a, libnppial.so, libnppial_static.a, libnppicc.so, libnppicc_static.a,\ + \ libnppicom.so, libnppicom_static.a, libnppidei.so, libnppidei_static.a, libnppif.so, libnppif_static.a\ + \ libnppig.so, libnppig_static.a, libnppim.so, libnppim_static.a, libnppist.so, libnppist_static.a,\ + \ libnppisu.so, libnppisu_static.a, libnppitc.so libnppitc_static.a, libnpps.so, libnpps_static.a\n\ + Android\tlibnppc.so, libnppc_static.a, libnppial.so, libnppial_static.a, libnppicc.so, libnppicc_static.a,\ + \ libnppicom.so, libnppicom_static.a, libnppidei.so, libnppidei_static.a, libnppif.so, libnppif_static.a\ + \ libnppig.so, libnppig_static.a, libnppim.so, libnppim_static.a, libnppist.so, libnppist_static.a,\ + \ libnppisu.so, libnppisu_static.a, libnppitc.so libnppitc_static.a, libnpps.so, libnpps_static.a\n\ + Component\tNVIDIA JPEG Library\nLinux\tlibnvjpeg.so, libnvjpeg_static.a\nComponent\tInternal\ + \ common library required for statically linking to cuBLAS, cuSPARSE, cuFFT, cuRAND, nvJPEG\ + \ and NPP\nMac OSX\tlibculibos.a\nLinux\tlibculibos.a\nComponent\tNVIDIA Runtime Compilation\ + \ Library and Header\nAll\tnvrtc.h\nWindows\tnvrtc.dll, nvrtc-builtins.dll\nMac OSX\tlibnvrtc.dylib,\ + \ libnvrtc-builtins.dylib\nLinux\tlibnvrtc.so, libnvrtc-builtins.so\nComponent\tNVIDIA Optimizing\ + \ Compiler Library\nWindows\tnvvm.dll\nMac OSX\tlibnvvm.dylib\nLinux\tlibnvvm.so\nComponent\t\ + NVIDIA Common Device Math Functions Library\nWindows\tlibdevice.10.bc\nMac OSX\tlibdevice.10.bc\n\ + Linux\tlibdevice.10.bc\nComponent\tCUDA Occupancy Calculation Header Library\nAll\tcuda_occupancy.h\n\ + Component\tCUDA Half Precision Headers\nAll\tcuda_fp16.h, cuda_fp16.hpp\nComponent\tCUDA\ + \ Profiling Tools Interface (CUPTI) Library\nWindows\tcupti.dll\nMac OSX\tlibcupti.dylib\n\ + Linux\tlibcupti.so\nComponent\tNVIDIA Tools Extension Library\nWindows\tnvToolsExt.dll,\ + \ nvToolsExt.lib\nMac OSX\tlibnvToolsExt.dylib\nLinux\tlibnvToolsExt.so\nComponent\tNVIDIA\ + \ CUDA Driver Libraries\nLinux\tlibcuda.so, libnvidia-ptxjitcompiler.so\n\nThe NVIDIA CUDA\ + \ Driver Libraries are only distributable in applications that meet this criteria:\n\nThe\ + \ application was developed starting from a NVIDIA CUDA container obtained from Docker Hub\ + \ or the NVIDIA GPU Cloud, and\nThe resulting application is packaged as a Docker container\ + \ and distributed to users on Docker Hub or the NVIDIA GPU Cloud only.\n\nIn addition to\ + \ the rights above, for parties that are developing software intended solely for use on\ + \ Jetson development kits or Jetson modules, and running Linux for Tegra software, the following\ + \ shall apply:\nThe SDK may be distributed in its entirety, as provided by NVIDIA, and without\ + \ separation of its components, for you and/or your licensees to create software development\ + \ kits for use only on the Jetson platform and running Linux for Tegra software.\n\n2.7.\ + \ Attachment B\n\nAdditional Licensing Obligations\nThe following third party components\ + \ included in the SOFTWARE are licensed to Licensee pursuant to the following terms and\ + \ conditions:\n\nLicensee's use of the GDB third party component is subject to the terms\ + \ and conditions of GNU GPL v3:\nThis product includes copyrighted third-party software\ + \ licensed\nunder the terms of the GNU General Public License v3 (\"GPL v3\").\nAll third-party\ + \ software packages are copyright by their respective\nauthors. GPL v3 terms and conditions\ + \ are hereby incorporated into\nthe Agreement by this reference: http://www.gnu.org/licenses/gpl.txt\n\ + \nConsistent with these licensing requirements, the software listed below is provided under\ + \ the terms of the specified open source software licenses. To obtain source code for software\ + \ provided under licenses that require redistribution of source code, including the GNU\ + \ General Public License (GPL) and GNU Lesser General Public License (LGPL), contact oss-requests@nvidia.com.\ + \ This offer is valid for a period of three (3) years from the date of the distribution\ + \ of this product by NVIDIA CORPORATION.\nComponent License\nCUDA-GDB \ + \ GPL v3\nLicensee represents and warrants that any and all third party licensing and/or\ + \ royalty payment obligations in connection with Licensee's use of the H.264 video codecs\ + \ are solely the responsibility of Licensee.\n\nLicensee's use of the Thrust library is\ + \ subject to the terms and conditions of the Apache License Version 2.0. All third-party\ + \ software packages are copyright by their respective authors. Apache License Version 2.0\ + \ terms and conditions are hereby incorporated into the Agreement by this reference. http://www.apache.org/licenses/LICENSE-2.0.html\n\ + \nIn addition, Licensee acknowledges the following notice: Thrust includes source code from\ + \ the Boost Iterator, Tuple, System, and Random Number libraries.\n\nBoost Software License\ + \ - Version 1.0 - August 17th, 2003\n. . . .\n\nPermission is hereby granted, free of charge,\ + \ to any person or \norganization obtaining a copy of the software and accompanying \ndocumentation\ + \ covered by this license (the \"Software\") to use, \nreproduce, display, distribute, execute,\ + \ and transmit the Software, \nand to prepare derivative works of the Software, and to permit\ + \ \nthird-parties to whom the Software is furnished to do so, all \nsubject to the following:\n\ + \nThe copyright notices in the Software and this entire statement, \nincluding the above\ + \ license grant, this restriction and the following \ndisclaimer, must be included in all\ + \ copies of the Software, in whole \nor in part, and all derivative works of the Software,\ + \ unless such \ncopies or derivative works are solely in the form of machine-executable\ + \ \nobject code generated by a source language processor.\n\nTHE SOFTWARE IS PROVIDED \"\ + AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO\ + \ THE WARRANTIES OF \nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND \nNON-INFRINGEMENT.\ + \ IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR \nANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\ + \ FOR ANY DAMAGES OR \nOTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING\ + \ \nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR \nOTHER DEALINGS IN THE\ + \ SOFTWARE.\nLicensee's use of the LLVM third party component is subject to the following\ + \ terms and conditions:\n======================================================\nLLVM Release\ + \ License\n======================================================\nUniversity of Illinois/NCSA\n\ + Open Source License\n\nCopyright (c) 2003-2010 University of Illinois at Urbana-Champaign.\n\ + All rights reserved.\n\nDeveloped by:\n\n LLVM Team\n\n University of Illinois at\ + \ Urbana-Champaign\n\n http://llvm.org\n\nPermission is hereby granted, free of charge,\ + \ to any person obtaining a copy\nof this software and associated documentation files (the\ + \ \"Software\"), to \ndeal with the Software without restriction, including without limitation\ + \ the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or \nsell\ + \ copies of the Software, and to permit persons to whom the Software is \nfurnished to do\ + \ so, subject to the following conditions:\n\n* Redistributions of source code must retain\ + \ the above copyright notice, \n this list of conditions and the following disclaimers.\n\ + \n* Redistributions in binary form must reproduce the above copyright \n notice, this\ + \ list of conditions and the following disclaimers in the \n documentation and/or other\ + \ materials provided with the distribution.\n\n* Neither the names of the LLVM Team, University\ + \ of Illinois at Urbana-\n Champaign, nor the names of its contributors may be used to\ + \ endorse or\n promote products derived from this Software without specific prior \n \ + \ written permission.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\ + \ EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, \n\ + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL \nTHE CONTRIBUTORS\ + \ OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR \nOTHER LIABILITY, WHETHER IN\ + \ AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH\ + \ THE SOFTWARE OR THE USE OR OTHER\nDEALINGS WITH THE SOFTWARE.\nLicensee's use (e.g. nvprof)\ + \ of the PCRE third party component is subject to the following terms and conditions:\n\ + ------------\nPCRE LICENCE\n------------\nPCRE is a library of functions to support regular\ + \ expressions whose syntax\nand semantics are as close as possible to those of the Perl\ + \ 5 language.\nRelease 8 of PCRE is distributed under the terms of the \"BSD\" licence,\ + \ as\nspecified below. The documentation for PCRE, supplied in the \"doc\" \ndirectory,\ + \ is distributed under the same terms as the software itself. The\nbasic library functions\ + \ are written in C and are freestanding. Also \nincluded in the distribution is a set of\ + \ C++ wrapper functions, and a just-\nin-time compiler that can be used to optimize pattern\ + \ matching. These are \nboth optional features that can be omitted when the library is built.\n\ + \nTHE BASIC LIBRARY FUNCTIONS\n---------------------------\nWritten by: Philip Hazel\n\ + Email local part: ph10\nEmail domain: cam.ac.uk\nUniversity of Cambridge Computing Service,\n\ + Cambridge, England.\nCopyright (c) 1997-2012 University of Cambridge\nAll rights reserved.\n\ + \nPCRE JUST-IN-TIME COMPILATION SUPPORT\n-------------------------------------\nWritten\ + \ by: Zoltan Herczeg\nEmail local part: hzmester\nEmain domain: freemail.hu\n\ + Copyright(c) 2010-2012 Zoltan Herczeg\nAll rights reserved.\n\nSTACK-LESS JUST-IN-TIME COMPILER\n\ + --------------------------------\nWritten by: Zoltan Herczeg\nEmail local part: hzmester\n\ + Emain domain: freemail.hu\nCopyright(c) 2009-2012 Zoltan Herczeg\nAll rights reserved.\n\ + \nTHE C++ WRAPPER FUNCTIONS\n-------------------------\nContributed by: Google Inc.\n\ + Copyright (c) 2007-2012, Google Inc.\nAll rights reserved.\nTHE \"BSD\" LICENCE\n-----------------\n\ + Redistribution and use in source and binary forms, with or without\nmodification, are permitted\ + \ provided that the following conditions are met:\n\n * Redistributions of source code\ + \ must retain the above copyright notice, \n this list of conditions and the following\ + \ disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright \n\ + \ notice, this list of conditions and the following disclaimer in the \n documentation\ + \ and/or other materials provided with the distribution.\n\n * Neither the name of the\ + \ University of Cambridge nor the name of Google \n Inc. nor the names of their contributors\ + \ may be used to endorse or \n promote products derived from this software without specific\ + \ prior \n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS\ + \ AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\ + \ LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\ + \ \nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE \nLIABLE FOR\ + \ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING,\ + \ BUT NOT LIMITED TO, PROCUREMENT OF \nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\ + \ OR PROFITS; OR BUSINESS \nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\ + \ WHETHER IN \nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \n\ + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE \nPOSSIBILITY\ + \ OF SUCH DAMAGE.\nSome of the cuBLAS library routines were written by or derived from code\ + \ written by Vasily Volkov and are subject to the Modified Berkeley Software Distribution\ + \ License as follows:\nCopyright (c) 2007-2009, Regents of the University of California\n\ + \nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\n\ + modification, are permitted provided that the following conditions are\nmet:\n * Redistributions\ + \ of source code must retain the above copyright\n notice, this list of conditions\ + \ and the following disclaimer.\n * Redistributions in binary form must reproduce the\ + \ above\n copyright notice, this list of conditions and the following\n disclaimer\ + \ in the documentation and/or other materials provided\n with the distribution.\n \ + \ * Neither the name of the University of California, Berkeley nor\n the names of\ + \ its contributors may be used to endorse or promote\n products derived from this software\ + \ without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE\ + \ AUTHOR \"AS IS\" AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\ + \ THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n\ + DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL,\ + \ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\ + \ OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n\ + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR\ + \ TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\nIN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\ + \ EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\nSome of the cuBLAS library routines\ + \ were written by or derived from code written by Davide Barbieri and are subject to the\ + \ Modified Berkeley Software Distribution License as follows:\nCopyright (c) 2008-2009 Davide\ + \ Barbieri @ University of Rome Tor Vergata.\n\nAll rights reserved.\n\nRedistribution and\ + \ use in source and binary forms, with or without\nmodification, are permitted provided\ + \ that the following conditions are\nmet:\n * Redistributions of source code must retain\ + \ the above copyright\n notice, this list of conditions and the following disclaimer.\n\ + \ * Redistributions in binary form must reproduce the above\n copyright notice,\ + \ this list of conditions and the following\n disclaimer in the documentation and/or\ + \ other materials provided\n with the distribution.\n * The name of the author may\ + \ not be used to endorse or promote\n products derived from this software without specific\ + \ prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR \"AS IS\"\ + \ AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES\ + \ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL\ + \ THE AUTHOR BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\ + \ DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES;\ + \ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY\ + \ OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\ + \ OTHERWISE) ARISING\nIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n\ + POSSIBILITY OF SUCH DAMAGE.\nSome of the cuBLAS library routines were derived from code\ + \ developed by the University of Tennessee and are subject to the Modified Berkeley Software\ + \ Distribution License as follows:\nCopyright (c) 2010 The University of Tennessee.\n\n\ + All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\n\ + modification, are permitted provided that the following conditions are\nmet:\n * Redistributions\ + \ of source code must retain the above copyright\n notice, this list of conditions\ + \ and the following disclaimer.\n * Redistributions in binary form must reproduce the\ + \ above\n copyright notice, this list of conditions and the following\n disclaimer\ + \ listed in this license in the documentation and/or\n other materials provided with\ + \ the distribution.\n * Neither the name of the copyright holders nor the names of its\n\ + \ contributors may be used to endorse or promote products derived\n from this\ + \ software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE\ + \ COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,\ + \ BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR\ + \ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE\ + \ FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\ + \ BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA,\ + \ OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY,\ + \ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\ + \ IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\ + \ DAMAGE.\nSome of the cuBLAS library routines were written by or derived from code written\ + \ by Jonathan Hogg and are subject to the Modified Berkeley Software Distribution License\ + \ as follows:\nCopyright (c) 2012, The Science and Technology Facilities Council (STFC).\n\ + \nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\n\ + modification, are permitted provided that the following conditions are\nmet:\n * Redistributions\ + \ of source code must retain the above copyright\n notice, this list of conditions\ + \ and the following disclaimer.\n * Redistributions in binary form must reproduce the\ + \ above\n copyright notice, this list of conditions and the following\n disclaimer\ + \ in the documentation and/or other materials provided\n with the distribution.\n \ + \ * Neither the name of the STFC nor the names of its contributors\n may be used\ + \ to endorse or promote products derived from this\n software without specific prior\ + \ written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\ + \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED\ + \ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN\ + \ NO EVENT SHALL THE STFC BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\ + \ OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS\ + \ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED\ + \ AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\ + \ NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\nIF\ + \ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nSome of the cuBLAS library routines were written\ + \ by or derived from code written by Ahmad M. Abdelfattah, David Keyes, and Hatem Ltaief,\ + \ and are subject to the Apache License, Version 2.0, as follows:\n -- (C) Copyright 2013\ + \ King Abdullah University of Science and Technology\n Authors:\n Ahmad Abdelfattah (ahmad.ahmad@kaust.edu.sa)\n\ + \ David Keyes (david.keyes@kaust.edu.sa)\n Hatem Ltaief (hatem.ltaief@kaust.edu.sa)\n\n\ + \ Redistribution and use in source and binary forms, with or without\n modification,\ + \ are permitted provided that the following conditions\n are met:\n\n * Redistributions\ + \ of source code must retain the above copyright\n notice, this list of conditions\ + \ and the following disclaimer.\n * Redistributions in binary form must reproduce\ + \ the above copyright\n notice, this list of conditions and the following disclaimer\ + \ in the\n documentation and/or other materials provided with the distribution.\n *\ + \ Neither the name of the King Abdullah University of Science and\n Technology nor\ + \ the names of its contributors may be used to endorse \n or promote products derived\ + \ from this software without specific prior \n written permission.\n\n THIS SOFTWARE\ + \ IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS\ + \ OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\ + \ HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, \ + \ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT\ + \ OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\ + \ HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\ + \ OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF\ + \ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE\nSome of the cuSPARSE\ + \ library routines were written by or derived from code written by Li-Wen Chang and are\ + \ subject to the NCSA Open Source License as follows:\nCopyright (c) 2012, University of\ + \ Illinois.\n\nAll rights reserved.\n\nDeveloped by: IMPACT Group, University of Illinois,\ + \ http://impact.crhc.illinois.edu\n\nPermission is hereby granted, free of charge, to any\ + \ person obtaining\na copy of this software and associated documentation files (the\n\"\ + Software\"), to deal with the Software without restriction, including\nwithout limitation\ + \ the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell\ + \ copies of the Software, and to\npermit persons to whom the Software is furnished to do\ + \ so, subject to\nthe following conditions:\n * Redistributions of source code must retain\ + \ the above copyright\n notice, this list of conditions and the following disclaimer.\n\ + \ * Redistributions in binary form must reproduce the above\n copyright notice,\ + \ this list of conditions and the following\n disclaimers in the documentation and/or\ + \ other materials provided\n with the distribution.\n * Neither the names of IMPACT\ + \ Group, University of Illinois, nor\n the names of its contributors may be used to\ + \ endorse or promote\n products derived from this Software without specific prior\n\ + \ written permission.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY\ + \ KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS\ + \ OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN\ + \ AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR\nIN CONNECTION WITH\ + \ THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE\nSOFTWARE.\nSome of the cuRAND library\ + \ routines were written by or derived from code written by Mutsuo Saito and Makoto Matsumoto\ + \ and are subject to the following license:\nCopyright (c) 2009, 2010 Mutsuo Saito, Makoto\ + \ Matsumoto and Hiroshima\nUniversity. All rights reserved.\n\nCopyright (c) 2011 Mutsuo\ + \ Saito, Makoto Matsumoto, Hiroshima\nUniversity and University of Tokyo. All rights reserved.\n\ + \nRedistribution and use in source and binary forms, with or without\nmodification, are\ + \ permitted provided that the following conditions are\nmet:\n * Redistributions of source\ + \ code must retain the above copyright\n notice, this list of conditions and the following\ + \ disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright\ + \ notice, this list of conditions and the following\n disclaimer in the documentation\ + \ and/or other materials provided\n with the distribution.\n * Neither the name\ + \ of the Hiroshima University nor the names of\n its contributors may be used to endorse\ + \ or promote products\n derived from this software without specific prior written\n\ + \ permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\ + \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED\ + \ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN\ + \ NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\ + \ INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED\ + \ TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS\ + \ INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\ + \ LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\ + \ USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nSome of the\ + \ cuRAND library routines were derived from code developed by D. E. Shaw Research and are\ + \ subject to the following license:\nCopyright 2010-2011, D. E. Shaw Research.\n\nAll rights\ + \ reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification,\ + \ are permitted provided that the following conditions are\nmet:\n * Redistributions\ + \ of source code must retain the above copyright\n notice, this list of conditions,\ + \ and the following disclaimer.\n * Redistributions in binary form must reproduce the\ + \ above\n copyright notice, this list of conditions, and the following\n disclaimer\ + \ in the documentation and/or other materials provided\n with the distribution.\n \ + \ * Neither the name of D. E. Shaw Research nor the names of its\n contributors may\ + \ be used to endorse or promote products derived\n from this software without specific\ + \ prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\ + \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED\ + \ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN\ + \ NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\ + \ INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED\ + \ TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS\ + \ INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\ + \ LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\ + \ USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nSome of the\ + \ Math library routines were written by or derived from code developed by Norbert Juffa\ + \ and are subject to the following license:\nCopyright (c) 2015-2017, Norbert Juffa\nAll\ + \ rights reserved.\n\nRedistribution and use in source and binary forms, with or without\ + \ \nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions\ + \ of source code must retain the above copyright \n notice, this list of conditions and\ + \ the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above\ + \ copyright\n notice, this list of conditions and the following disclaimer in the\n \ + \ documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE\ + \ IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \n\"AS IS\" AND ANY EXPRESS OR IMPLIED\ + \ WARRANTIES, INCLUDING, BUT NOT \nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\ + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY,\ + \ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT \nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\ + \ OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED\ + \ AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT \n(INCLUDING\ + \ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF\ + \ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nLicensee's use of the lz4 third party component\ + \ is subject to the following terms and conditions:\nCopyright (C) 2011-2013, Yann Collet.\n\ + BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)\n\nRedistribution\ + \ and use in source and binary forms, with or without\nmodification, are permitted provided\ + \ that the following conditions are\nmet:\n\n * Redistributions of source code must retain\ + \ the above copyright\nnotice, this list of conditions and the following disclaimer.\n \ + \ * Redistributions in binary form must reproduce the above\ncopyright notice, this list\ + \ of conditions and the following disclaimer\nin the documentation and/or other materials\ + \ provided with the\ndistribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS\ + \ AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\ + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE\ + \ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY\ + \ DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\ + \ BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA,\ + \ OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY,\ + \ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\ + \ IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\ + \ DAMAGE.\nThe NPP library uses code from the Boost Math Toolkit, and is subject to the\ + \ following license:\nBoost Software License - Version 1.0 - August 17th, 2003\n. . . .\n\ + \nPermission is hereby granted, free of charge, to any person or \norganization obtaining\ + \ a copy of the software and accompanying \ndocumentation covered by this license (the \"\ + Software\") to use, \nreproduce, display, distribute, execute, and transmit the Software,\ + \ \nand to prepare derivative works of the Software, and to permit \nthird-parties to whom\ + \ the Software is furnished to do so, all \nsubject to the following:\n\nThe copyright notices\ + \ in the Software and this entire statement, \nincluding the above license grant, this restriction\ + \ and the following \ndisclaimer, must be included in all copies of the Software, in whole\ + \ \nor in part, and all derivative works of the Software, unless such \ncopies or derivative\ + \ works are solely in the form of machine-executable \nobject code generated by a source\ + \ language processor.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\ + \ \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF \nMERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR PURPOSE, TITLE AND \nNON-INFRINGEMENT. IN NO EVENT SHALL THE\ + \ COPYRIGHT HOLDERS OR \nANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR \n\ + OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING \nFROM, OUT OF OR IN CONNECTION\ + \ WITH THE SOFTWARE OR THE USE OR \nOTHER DEALINGS IN THE SOFTWARE.\nPortions of the Nsight\ + \ Eclipse Edition is subject to the following license:\nThe Eclipse Foundation makes available\ + \ all content in this plug-in\n(\"Content\"). Unless otherwise indicated below, the Content\ + \ is provided\nto you under the terms and conditions of the Eclipse Public License\nVersion\ + \ 1.0 (\"EPL\"). A copy of the EPL is available at http://\nwww.eclipse.org/legal/epl-v10.html.\ + \ For purposes of the EPL, \"Program\"\nwill mean the Content.\n\nIf you did not receive\ + \ this Content directly from the Eclipse\nFoundation, the Content is being redistributed\ + \ by another party\n(\"Redistributor\") and different terms and conditions may apply to\ + \ your\nuse of any object code in the Content. Check the Redistributor's\nlicense that was\ + \ provided with the Content. If no such license exists,\ncontact the Redistributor. Unless\ + \ otherwise indicated below, the terms\nand conditions of the EPL still apply to any source\ + \ code in the\nContent and such source code may be obtained at http://www.eclipse.org.\n\ + Some of the cuBLAS library routines uses code from OpenAI, which is subject to the following\ + \ license:\nLicense URL \nhttps://github.com/openai/openai-gemm/blob/master/LICENSE\n\n\ + License Text \nThe MIT License\n\nCopyright (c) 2016 OpenAI (http://openai.com), 2016 Google\ + \ Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\n\ + of this software and associated documentation files (the \"Software\"), to deal\nin the\ + \ Software without restriction, including without limitation the rights\nto use, copy, modify,\ + \ merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit\ + \ persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\ + \nThe above copyright notice and this permission notice shall be included in\nall copies\ + \ or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT\ + \ WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\ + \ OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT\ + \ SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY,\ + \ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION\ + \ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE. \nLicensee's use of the\ + \ Visual Studio Setup Configuration Samples is subject to the following license:\nThe MIT\ + \ License (MIT) \nCopyright (C) Microsoft Corporation. All rights reserved.\n\nPermission\ + \ is hereby granted, free of charge, to any person \nobtaining a copy of this software and\ + \ associated documentation \nfiles (the \"Software\"), to deal in the Software without restriction,\ + \ \nincluding without limitation the rights to use, copy, modify, merge, \npublish, distribute,\ + \ sublicense, and/or sell copies of the Software, \nand to permit persons to whom the Software\ + \ is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice\ + \ and this permission notice shall be included \nin all copies or substantial portions of\ + \ the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\ + \ \nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, \nFITNESS\ + \ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE \nAUTHORS OR COPYRIGHT\ + \ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER \nLIABILITY, WHETHER IN AN ACTION OF\ + \ CONTRACT, TORT OR OTHERWISE, ARISING FROM, \nOUT OF OR IN CONNECTION WITH THE SOFTWARE\ + \ OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nLicensee's use of linmath.h header for\ + \ CPU functions for GL vector/matrix operations from lunarG is subject to the Apache License\ + \ Version 2.0.\nThe DX12-CUDA sample uses the d3dx12.h header, which is subject to the MIT\ + \ license ." json: nvidia-cuda-supplement-2020.json - yml: nvidia-cuda-supplement-2020.yml + yaml: nvidia-cuda-supplement-2020.yml html: nvidia-cuda-supplement-2020.html - text: nvidia-cuda-supplement-2020.LICENSE + license: nvidia-cuda-supplement-2020.LICENSE - license_key: nvidia-gov + category: Permissive spdx_license_key: LicenseRef-scancode-nvidia-gov other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Copyright 1993-2012 NVIDIA Corporation. All rights reserved.\n\nNOTICE TO USER: \ + \ \n\nThis source code is subject to NVIDIA ownership rights under U.S. and\ninternational\ + \ Copyright laws. Users and possessors of this source code\nare hereby granted a nonexclusive,\ + \ royalty-free license to use this code\nin individual and commercial software.\n\nNVIDIA\ + \ MAKES NO REPRESENTATION ABOUT THE SUITABILITY OF THIS SOURCE\nCODE FOR ANY PURPOSE. IT\ + \ IS PROVIDED \"AS IS\" WITHOUT EXPRESS OR\nIMPLIED WARRANTY OF ANY KIND. NVIDIA DISCLAIMS\ + \ ALL WARRANTIES WITH\nREGARD TO THIS SOURCE CODE, INCLUDING ALL IMPLIED WARRANTIES OF\n\ + MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE.\nIN NO EVENT SHALL\ + \ NVIDIA BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL,\nOR CONSEQUENTIAL DAMAGES, OR\ + \ ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION\ + \ OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH\ + \ THE USE\nOR PERFORMANCE OF THIS SOURCE CODE. \n\nU.S. Government End Users. This source\ + \ code is a \"commercial item\" as\nthat term is defined at 48 C.F.R. 2.101 (OCT 1995),\ + \ consisting of\n\"commercial computer software\" and \"commercial computer software\n\ + documentation\" as such terms are used in 48 C.F.R. 12.212 (SEPT 1995)\nand is provided\ + \ to the U.S. Government only as a commercial end item. \nConsistent with 48 C.F.R.12.212\ + \ and 48 C.F.R. 227.7202-1 through\n227.7202-4 (JUNE 1995), all U.S. Government End Users\ + \ acquire the\nsource code with only those rights set forth herein.\n\nAny use of this source\ + \ code in individual and commercial software must\ninclude, in the user documentation and\ + \ internal comments to the code,\nthe above Disclaimer and U.S. Government End Users Notice." json: nvidia-gov.json - yml: nvidia-gov.yml + yaml: nvidia-gov.yml html: nvidia-gov.html - text: nvidia-gov.LICENSE + license: nvidia-gov.LICENSE - license_key: nvidia-isaac-eula-2019.1 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-nvidia-isaac-eula-2019.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + SOFTWARE LICENSE AGREEMENT FOR NVIDIA SOFTWARE DEVELOPMENT KITS + + This Software License Agreement, including exhibits attached ("Agreement”) is a + legal agreement between you and NVIDIA Corporation ("NVIDIA") and governs your + use of a NVIDIA software development kit (“SDK”). + + Each SDK has its own set of software and materials, but here is a description of + the types of items that may be included in a SDK: source code, header files, + APIs, data sets and assets (examples include images, textures, models, scenes, + videos, native API input/output files), binary software, sample code, libraries, + utility programs, programming code and documentation. + + This Agreement can be accepted only by an adult of legal age of majority in the + country in which the SDK is used. + + If you are entering into this Agreement on behalf of a company or other legal + entity, you represent that you have the legal authority to bind the entity to + this Agreement, in which case “you” will mean the entity you represent. + + If you don’t have the required age or authority to accept this Agreement, or if + you don’t accept all the terms and conditions of this Agreement, do not + download, install, copy or use the SDK. + + You agree to use the SDK only for purposes that are permitted by (a) this + Agreement, and (b) any applicable law, regulation or generally accepted + practices or guidelines in the relevant jurisdictions. + + 1. License. + + 1.1 Grant + + Subject to the terms of this Agreement, NVIDIA hereby grants you a non- + exclusive, non-transferable license, without the right to sublicense (except as + expressly provided in this Agreement) to: + + (i) Install and use the SDK, + + (ii) Modify and create derivative works of sample source code delivered in + the SDK, and + + (iii) Distribute those portions of the SDK that are identified in this + Agreement as distributable, as incorporated in object code format into a + software application that meets the distribution requirements indicated in + this Agreement. + + 1.2 Distribution Requirements + + These are the distribution requirements for you to exercise the distribution grant: + + (i) Your application must have material additional functionality, beyond the + included portions of the SDK. + + (ii) The distributable portions of the SDK shall only be accessed by your + application. + + (iii) The following notice shall be included in modifications and derivative + works of sample source code distributed: “This software contains source code + provided by NVIDIA Corporation.” + + (iv) Unless a developer tool is identified in this Agreement as + distributable, it is delivered for your internal use only. + + (v) The terms under which you distribute your application must be consistent + with the terms of this Agreement, including (without limitation) terms + relating to the license grant and license restrictions and protection of + NVIDIA’s intellectual property rights. Additionally, you agree that you will + protect the privacy, security and legal rights of your application users. + + (vi) You agree to notify NVIDIA in writing of any known or suspected + distribution or use of the SDK not in compliance with the requirements of + this Agreement, and to enforce the terms of your agreements with respect to + distributed SDK. + + 1.3 Authorized Users + + You may allow employees and contractors of your entity or of your + subsidiary(ies) to access and use the SDK from your secure network to perform + work on your behalf. + + If you are an academic institution you may allow users enrolled or employed by + the academic institution to access and use the SDK from your secure network. + + You are responsible for the compliance with the terms of this Agreement by your + authorized users. If you become aware that your authorized users didn’t follow + the terms of this Agreement, you agree to take reasonable steps to resolve the + non-compliance and prevent new occurrences. + + 1.4 Pre-Release SDK + + The SDK versions identified as alpha, beta, preview or otherwise as pre-release, + may not be fully functional, may contain errors or design flaws, and may have + reduced or different security, privacy, accessibility, availability, and + reliability standards relative to commercial versions of NVIDIA software and + materials. Use of a pre-release SDK may result in unexpected results, loss of + data, project delays or other unpredictable damage or loss. + + You may use a pre-release SDK at your own risk, understanding that pre-release + SDKs are not intended for use in production or business-critical systems. + + NVIDIA may choose not to make available a commercial version of any pre-release + SDK. NVIDIA may also choose to abandon development and terminate the + availability of a pre-release SDK at any time without liability. + + 1.5 Updates + + NVIDIA may, at its option, make available patches, workarounds or other updates + to this SDK. Unless the updates are provided with their separate governing + terms, they are deemed part of the SDK licensed to you as provided in this + Agreement. + + You agree that the form and content of the SDK that NVIDIA provides may change + without prior notice to you. While NVIDIA generally maintains compatibility + between versions, NVIDIA may in some cases make changes that introduce + incompatibilities in future versions of the SDK. + + 1.6 Third Party Licenses + + The SDK may come bundled with, or otherwise include or be distributed with, + third party software licensed by a NVIDIA supplier and/or open source software + provided under an open source license. Use of third party software is subject to + the third party license terms, or in the absence of third party terms, the terms + of this Agreement. Copyright to third party software is held by the copyright + holders indicated in the third-party software or license. + + You acknowledge and agree that it is your sole responsibility to obtain any + additional third party licenses required to make, have made, use, have used, + sell, import, and offer for sale your products or services that include or + incorporate any third-party software and content relating to audio and/or video + encoders and decoders from, including but not limited to, Microsoft, Thomson, + Fraunhofer IIS, Sisvel S.p.A., MPEG-LA, and Coding Technologies. NVIDIA does not + grant to you under this Agreement any necessary patent or other rights with + respect to any audio and/or video encoders and decoders. + + 1.7 Reservation of Rights + + NVIDIA reserves all rights, title and interest in and to the SDK not expressly + granted to you under this Agreement. + + 2. Limitations. + + The following license limitations apply to your use of the SDK: + + 2.1 You may not reverse engineer, decompile or disassemble, or remove copyright + or other proprietary notices from any portion of the SDK or copies of the SDK. + + 2.2 Except as expressly provided in this Agreement, you may not copy, sell, + rent, sublicense, transfer, distribute, modify, or create derivative works of + any portion of the SDK. For clarity, you may not distribute or sublicense the + SDK as a stand-alone product. + + 2.3 Unless you have an agreement with NVIDIA for this purpose, you may not + indicate that an application created with the SDK is sponsored or endorsed by + NVIDIA. + + 2.4 You may not bypass, disable, or circumvent any encryption, security, digital + rights management or authentication mechanism in the SDK. + + 2.5 You may not use the SDK in any manner that would cause it to become subject + to an open source software license. As examples, licenses that require as a + condition of use, modification, and/or distribution that the SDK be (i) + disclosed or distributed in source code form; (ii) licensed for the purpose of + making derivative works; or (iii) redistributable at no charge. + + 2.6 Unless you have an agreement with NVIDIA for this purpose, you may not use + the SDK with any system or application where the use or failure of the system or + application can reasonably be expected to threaten or result in personal injury, + death, or catastrophic loss. Examples include use in nuclear, avionics, + navigation, military, medical, life support or other life critical applications. + NVIDIA does not design, test or manufacture the SDK for these critical uses and + NVIDIA shall not be liable to you or any third party, in whole or in part, for + any claims or damages arising from such uses. + + 2.7 You agree to defend, indemnify and hold harmless NVIDIA and its affiliates, + and their respective employees, contractors, agents, officers and directors, + from and against any and all claims, damages, obligations, losses, liabilities, + costs or debt, fines, restitutions and expenses (including but not limited to + attorney’s fees and costs incident to establishing the right of indemnification) + arising out of or related to your use of the SDK outside of the scope of this + Agreement, or not in compliance with its terms. + + 3. Ownership. + + 3.1 NVIDIA or its licensors hold all rights, title and interest in and to the + SDK and its modifications and derivative works, including their respective + intellectual property rights, subject to your rights under Section 3.2. This SDK + may include software and materials from NVIDIA’s licensors, and these licensors + are intended third party beneficiaries that may enforce this Agreement with + respect to their intellectual property rights. + + 3.2 You hold all rights, title and interest in and to your applications and your + derivative works of the sample source code delivered in the SDK, including their + respective intellectual property rights, subject to NVIDIA’s rights under + section 3.1. + + 3.3 You may, but don’t have to, provide to NVIDIA suggestions, feature requests + or other feedback regarding the SDK, including possible enhancements or + modifications to the SDK. For any feedback that you voluntarily provide, you + hereby grant NVIDIA and its affiliates a perpetual, non-exclusive, worldwide, + irrevocable license to use, reproduce, modify, license, sublicense (through + multiple tiers of sublicensees), and distribute (through multiple tiers of + distributors) it without the payment of any royalties or fees to you. NVIDIA + will decide if and how to respond to feedback and if to incorporate feedback + into the SDK. NVIDIA is constantly looking for ways to improve its products, so + you may send feedback to NVIDIA through the developer portal at + https://developer.nvidia.com. + + 4. No Warranties. + + THE SDK IS PROVIDED BY NVIDIA “AS IS” AND “WITH ALL FAULTS.” TO THE MAXIMUM + EXTENT PERMITTED BY LAW, NVIDIA + + AND ITS AFFILIATES EXPRESSLY DISCLAIM ALL WARRANTIES OF ANY KIND OR NATURE, + WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON- + INFRINGEMENT, OR THE ABSENCE OF ANY DEFECTS THEREIN, WHETHER LATENT OR PATENT. + NO WARRANTY IS MADE ON THE BASIS OF TRADE USAGE, COURSE OF DEALING OR COURSE OF + TRADE. + + 5. Limitations of Liability. + + TO THE MAXIMUM EXTENT PERMITTED BY LAW, NVIDIA AND ITS AFFILIATES SHALL NOT BE + LIABLE FOR ANY SPECIAL, INCIDENTAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR ANY + LOST PROFITS, LOSS OF USE, LOSS OF DATA OR LOSS OF GOODWILL, OR THE COSTS OF + PROCURING SUBSTITUTE PRODUCTS, ARISING OUT OF OR IN CONNECTION WITH THIS + AGREEMENT OR THE USE OR PERFORMANCE OF THE SDK, WHETHER SUCH LIABILITY ARISES + FROM ANY CLAIM BASED UPON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT + (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER CAUSE OF ACTION OR THEORY + OF LIABILITY. IN NO EVENT WILL NVIDIA’S AND ITS AFFILIATES TOTAL CUMULATIVE + LIABILITY UNDER OR ARISING OUT OF THIS AGREEMENT EXCEED US$10.00. THE NATURE OF + THE LIABILITY OR THE NUMBER OF CLAIMS OR SUITS SHALL NOT ENLARGE OR EXTEND THIS + LIMIT. + + These exclusions and limitations of liability shall apply regardless if NVIDIA + or its affiliates have been advised of the possibility of such damages, and + regardless of whether a remedy fails its essential purpose. These exclusions and + limitations of liability form an essential basis of the bargain between the + parties, and, absent any of these exclusions or limitations of liability, the + provisions of this Agreement, including, without limitation, the economic terms, + would be substantially different. + + 6. Termination. + + 6.1 This Agreement will continue to apply until terminated by either you or + NVIDIA as described below. + + 6.2 If you want to terminate this Agreement, you may do so by stopping to use + the SDK. + + 6.3 NVIDIA may, at any time, terminate this Agreement if: (i) you fail to comply + with any term of this Agreement and the non-compliance is not fixed within + thirty (30) days following notice from NVIDIA (or immediately if you violate + NVIDIA’s intellectual property rights); (ii) you commence or participate in any + legal proceeding against NVIDIA with respect to the SDK; or (iii) NVIDIA decides + to no longer provide the SDK in a country or, in NVIDIA’s sole discretion, the + continued use of it is no longer commercially viable. + + 6.4 Upon any termination of this Agreement, you agree to promptly discontinue + use of the SDK and destroy all copies in your possession or control. Your prior + distributions in accordance with this Agreement are not affected by the + termination of this Agreement. Upon written request, you will certify in writing + that you have complied with your commitments under this section. Upon any + termination of this Agreement all provisions survive except for the licenses + granted to you. + + 7. General. + + If you wish to assign this Agreement or your rights and obligations, including + by merger, consolidation, dissolution or operation of law, contact NVIDIA to ask + for permission. Any attempted assignment not approved by NVIDIA in writing shall + be void and of no effect. NVIDIA may assign, delegate or transfer this Agreement + and its rights and obligations, and if to a non-affiliate you will be notified. + + You agree to cooperate with NVIDIA and provide reasonably requested information + to verify your compliance with this Agreement. + + This Agreement will be governed in all respects by the laws of the United States + and of the State of Delaware as those laws are applied to contracts entered into + and performed entirely within Delaware by Delaware residents, without regard to + the + + conflicts of laws principles. The United Nations Convention on Contracts for the + International Sale of Goods is specifically disclaimed. You agree to all terms + of this Agreement in the English language. + + The state or federal courts residing in Santa Clara County, California shall + have exclusive jurisdiction over any dispute or claim arising out of this + Agreement. Notwithstanding this, you agree that NVIDIA shall still be allowed to + apply for injunctive remedies or an equivalent type of urgent legal relief in + any jurisdiction. + + If any court of competent jurisdiction determines that any provision of this + Agreement is illegal, invalid or unenforceable, such provision will be construed + as limited to the extent necessary to be consistent with and fully enforceable + under the law and the remaining provisions will remain in full force and effect. + Unless otherwise specified, remedies are cumulative. + + Each party acknowledges and agrees that the other is an independent contractor + in the performance of this Agreement. + + Neither party will be responsible for any failure or delay in its performance + under this Agreement to the extent due to causes beyond its reasonable control + for so long as the cause or event continues in effect. + + The SDK has been developed entirely at private expense and is “commercial items” + consisting of “commercial computer software” and “commercial computer software + documentation” provided with RESTRICTED RIGHTS. Use, duplication or disclosure + by the U.S. Government or a U.S. Government subcontractor is subject to the + restrictions in this Agreement pursuant to DFARS 227.7202-3(a) or as set forth + in subparagraphs (b)(1) and (2) of the Commercial Computer Software - Restricted + Rights clause at FAR 52.227-19, as applicable. Contractor/manufacturer is + NVIDIA, 2788 San Tomas Expressway, Santa Clara, CA 95051. + + The SDK is subject to United States export laws and regulations. You agree that + you will not ship, transfer or export the SDK into any country, or use the SDK + in any manner, prohibited by the United States Bureau of Industry and Security + or economic sanctions regulations administered by the U.S. Department of + Treasury’s Office of Foreign Assets Control (OFAC), or any applicable export + laws, restrictions or regulations. These laws include restrictions on + destinations, end users and end use. By accepting this Agreement, you confirm + that you are not a resident or citizen of any country currently embargoed by the + U.S. and that you are not otherwise prohibited from receiving the SDK. + + Any notice delivered by NVIDIA to you under this Agreement will be delivered via + mail, email or fax. You agree that any notices that NVIDIA sends you + electronically will satisfy any legal communication requirements. Please direct + your legal notices or other correspondence to NVIDIA Corporation, 2788 San Tomas + Expressway, Santa Clara, California 95051, United States of America, Attention: + Legal Department. + + This Agreement and any exhibits incorporated to this Agreement constitute the + entire agreement of the parties with respect to the subject matter of this + Agreement and supersede all prior negotiations, conversations, or discussions + between the parties relating to this subject matter. Any additional and/or + conflicting terms on documents issued by you are null, void, and invalid. Any + amendment or waiver under this Agreement shall be in writing and signed by + representatives of both parties. + + (v. March 8, 2019) + + + ISAAC SUPPLEMENT + + TO SOFTWARE LICENSE AGREEMENT FOR NVIDIA SOFTWARE DEVELOPMENT KITS + + The terms in this supplement govern your use of the NVIDIA Isaac SDK under the + terms of your software license agreement (“Agreement”) as modified by this + supplement. Capitalized terms used but not defined below have the meaning + assigned to them in the Agreement. + + This supplement is an exhibit to the Agreement and is incorporated as an + integral part of the Agreement. In the event of conflict between the terms in + this supplement and the terms in the Agreement, the terms in this supplement + govern. + + 1. Distribution. The following portions of the SDK are distributable under + the Agreement: the runtimes files ending with .so and .a as part of your + application. + + 2. Samples. In this SDK, the folder that contains sample source code is the + apps/samples folder. With respect to source code samples licensed to you, + NVIDIA and its affiliates are free to continue independently developing + source code samples and you covenant not to sue NVIDIA, its affiliates or + their licensees with respect to later versions of NVIDIA released source + code samples. + + 3. Restrictions. The following restrictions apply: + + I. You are not permitted to disclose the results of any benchmarking or + other competitive analysis relating to the SDK without the prior written + permission from NVIDIA; and + + II. The SDK is licensed for use with a computer system incorporating one + or more NVIDIA GPU hardware products and running NVIDIA software + drivers. + + 4. Source Code Modification and Ownership. Subject to the terms of the + Agreement and this supplement, NVIDIA hereby grants you a non-exclusive, + non-transferable license, without the right to sublicense to modify and + create derivative works of software provided to you by NVIDIA in source code + form, except for header files. As between you and NVIDIA, NVIDIA holds all + rights, title and interest in and to your modifications and derivative works + of the source code software. Subject to NVIDIA’s rights described in the + Agreement and this section, you retain all rights, title and in and to your + software and products developed independently from the use of the SDK (as + may be demonstrated by documentation). You have no obligation to provide to + NVIDIA your modifications to the NVIDIA source code. + + 5. Indemnity. You agree to defend, indemnify and hold harmless NVIDIA and + its affiliates, and their respective employees, contractors, agents, + officers and directors, from and against any and all claims, damages, + obligations, losses, liabilities, costs or debt, fines, restitutions and + expenses (including but not limited to attorney’s fees and costs incident to + establishing the right of indemnification) arising out of or related to any + damages, or injuries, illness or death related to the use of goods and/or + services that include or utilize the SDK. + + (v. March 8, 2019) json: nvidia-isaac-eula-2019.1.json - yml: nvidia-isaac-eula-2019.1.yml + yaml: nvidia-isaac-eula-2019.1.yml html: nvidia-isaac-eula-2019.1.html - text: nvidia-isaac-eula-2019.1.LICENSE + license: nvidia-isaac-eula-2019.1.LICENSE - license_key: nvidia-ngx-eula-2019 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-nvidia-ngx-eula-2019 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Abstract + This document is the End User License Agreement (EULA) for NVIDIA NGX. This document contains specific license terms and conditions for NVIDIA NGX. By accepting this agreement, you agree to comply with all the terms and conditions applicable to the specific product(s) included herein. + + LICENSE AGREEMENT FOR NVIDIA SOFTWARE DEVELOPMENT KITS + This license agreement, including exhibits attached ("Agreement”) is a legal agreement between you and NVIDIA Corporation ("NVIDIA") and governs your use of a NVIDIA software development kit (“SDK”). + + Each SDK has its own set of software and materials, but here is a description of the types of items that may be included in a SDK: source code, header files, APIs, data sets and assets (examples include images, textures, models, scenes, videos, native API input/output files), binary software, sample code, libraries, utility programs, programming code and documentation. + + This Agreement can be accepted only by an adult of legal age of majority in the country in which the SDK is used. + + If you are entering into this Agreement on behalf of a company or other legal entity, you represent that you have the legal authority to bind the entity to this Agreement, in which case “you” will mean the entity you represent. + + If you don’t have the required age or authority to accept this Agreement, or if you don’t accept all the terms and conditions of this Agreement, do not download, install or use the SDK. + + You agree to use the SDK only for purposes that are permitted by (a) this Agreement, and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions. + + 1. License. + 1.1. Grant + Subject to the terms of this Agreement, NVIDIA hereby grants you a non-exclusive, non-transferable license, without the right to sublicense (except as expressly provided in this Agreement) to: + + (i) Install and use the SDK, + + (ii) Modify and create derivative works of sample source code delivered in the SDK, and + + (iii) Distribute those portions of the SDK that are identified in this Agreement as distributable, as incorporated in object code format into a software application that meets the distribution requirements indicated in this Agreement. + + 1.2. Distribution Requirements + These are the distribution requirements for you to exercise the distribution grant: + + (i) Your application must have material additional functionality, beyond the included portions of the SDK. + + (ii) The distributable portions of the SDK shall only be accessed by your application. + + (iii) The following notice shall be included in modifications and derivative works of sample source code distributed: “This software contains source code provided by NVIDIA Corporation.” + + (iv) Unless a developer tool is identified in this Agreement as distributable, it is delivered for your internal use only. + + (v) The terms under which you distribute your application must be consistent with the terms of this Agreement, including (without limitation) terms relating to the license grant and license restrictions and protection of NVIDIA’s intellectual property rights. Additionally, you agree that you will protect the privacy, security and legal rights of your application users. + + (vi) You agree to notify NVIDIA in writing of any known or suspected distribution or use of the SDK not in compliance with the requirements of this Agreement, and to enforce the terms of your agreements with respect to distributed SDK. + + 1.3. Authorized Users + You may allow employees and contractors of your entity or of your subsidiary(ies) to access and use the SDK from your secure network to perform work on your behalf. + + If you are an academic institution you may allow users enrolled or employed by the academic institution to access and use the SDK from your secure network. + + You are responsible for the compliance with the terms of this Agreement by your authorized users. If you become aware that your authorized users didn’t follow the terms of this Agreement, you agree to take reasonable steps to resolve the non-compliance and prevent new occurrences. + + 1.4. Pre-Release SDK + The SDK versions identified as alpha, beta, preview or otherwise as pre-release, may not be fully functional, may contain errors or design flaws, and may have reduced or different security, privacy, accessibility, availability, and reliability standards relative to commercial versions of NVIDIA software and materials. Use of a pre-release SDK may result in unexpected results, loss of data, project delays or other unpredictable damage or loss. + + You may use a pre-release SDK at your own risk, understanding that pre-release SDKs are not intended for use in production or business-critical systems. + + NVIDIA may choose not to make available a commercial version of any pre-release SDK. NVIDIA may also choose to abandon development and terminate the availability of a pre-release SDK at any time without liability. + + 1.5. Updates + NVIDIA may, at its option, make available patches, workarounds or other updates to this SDK. Unless the updates are provided with their separate governing terms, they are deemed part of the SDK licensed to you as provided in this Agreement. + + You agree that the form and content of the SDK that NVIDIA provides may change without prior notice to you. While NVIDIA generally maintains compatibility between versions, NVIDIA may in some cases make changes that introduce incompatibilities in future versions of the SDK. + + 1.6. Third Party Licenses + The SDK may come bundled with, or otherwise include or be distributed with, third party software licensed by a NVIDIA supplier and/or open source software provided under an open source license. Use of third party software is subject to the third-party license terms, or in the absence of third party terms, the terms of this Agreement. Copyright to third party software is held by the copyright holders indicated in the third-party software or license. + + 1.7. Reservation of Rights + NVIDIA reserves all rights, title and interest in and to the SDK not expressly granted to you under this Agreement. + + 2. Limitations. + The following license limitations apply to your use of the SDK: + + 2.1 + You may not reverse engineer, decompile or disassemble, or remove copyright or other proprietary notices from any portion of the SDK or copies of the SDK. + + 2.2 + Except as expressly provided in this Agreement, you may not copy, sell, rent, sublicense, transfer, distribute, modify, or create derivative works of any portion of the SDK. For clarity, you may not distribute or sublicense the SDK as a stand-alone product. + + 2.3 + Unless you have an agreement with NVIDIA for this purpose, you may not indicate that an application created with the SDK is sponsored or endorsed by NVIDIA. + + 2.4 + You may not bypass, disable, or circumvent any encryption, security, digital rights management or authentication mechanism in the SDK. + + 2.5 + You may not use the SDK in any manner that would cause it to become subject to an open source software license. As examples, licenses that require as a condition of use, modification, and/or distribution that the SDK be (i) disclosed or distributed in source code form; (ii) licensed for the purpose of making derivative works; or (iii) redistributable at no charge. + + 2.6 + Unless you have an agreement with NVIDIA for this purpose, you may not use the SDK with any system or application where the use or failure of the system or application can reasonably be expected to threaten or result in personal injury, death, or catastrophic loss. Examples include use in nuclear, avionics, navigation, military, medical, life support or other life critical applications. NVIDIA does not design, test or manufacture the SDK for these critical uses and NVIDIA shall not be liable to you or any third party, in whole or in part, for any claims or damages arising from such uses. + + 2.7 + 2.7 You agree to defend, indemnify and hold harmless NVIDIA and its affiliates, and their respective employees, contractors, agents, officers and directors, from and against any and all claims, damages, obligations, losses, liabilities, costs or debt, fines, restitutions and expenses (including but not limited to attorney’s fees and costs incident to establishing the right of indemnification) arising out of or related to your use of the SDK outside of the scope of this Agreement, or not in compliance with its terms. + + 3. Ownership. + 3.1 + NVIDIA or its licensors hold all rights, title and interest in and to the SDK and its modifications and derivative works, including their respective intellectual property rights, subject to your rights under Section 3.2. This SDK may include software and materials from NVIDIA’s licensors, and these licensors are intended third party beneficiaries that may enforce this Agreement with respect to their intellectual property rights. + + 3.2 + You hold all rights, title and interest in and to your applications and your derivative works of the sample source code delivered in the SDK, including their respective intellectual property rights, subject to NVIDIA’s rights under section 3.1. + + 3.3 + You may, but don’t have to, provide to NVIDIA suggestions, feature requests or other feedback regarding the SDK, including possible enhancements or modifications to the SDK. For any feedback that you voluntarily provide, you hereby grant NVIDIA and its affiliates a perpetual, non-exclusive, worldwide, irrevocable license to use, reproduce, modify, license, sublicense (through multiple tiers of sublicensees), and distribute (through multiple tiers of distributors) it without the payment of any royalties or fees to you. NVIDIA will use feedback at its choice. NVIDIA is constantly looking for ways to improve its products, so you may send feedback to NVIDIA through the developer portal at https://developer.nvidia.com. + + 4. No Warranties. + THE SDK IS PROVIDED BY NVIDIA “AS IS” AND “WITH ALL FAULTS.” TO THE MAXIMUM EXTENT PERMITTED BY LAW, NVIDIA AND ITS AFFILIATES EXPRESSLY DISCLAIM ALL WARRANTIES OF ANY KIND OR NATURE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, OR THE ABSENCE OF ANY DEFECTS THEREIN, WHETHER LATENT OR PATENT. NO WARRANTY IS MADE ON THE BASIS OF TRADE USAGE, COURSE OF DEALING OR COURSE OF TRADE. + + 5. Limitations of Liability. + TO THE MAXIMUM EXTENT PERMITTED BY LAW, NVIDIA AND ITS AFFILIATES SHALL NOT BE LIABLE FOR ANY SPECIAL, INCIDENTAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR ANY LOST PROFITS, LOSS OF USE, LOSS OF DATA OR LOSS OF GOODWILL, OR THE COSTS OF PROCURING SUBSTITUTE PRODUCTS, ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT OR THE USE OR PERFORMANCE OF THE SDK, WHETHER SUCH LIABILITY ARISES FROM ANY CLAIM BASED UPON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER CAUSE OF ACTION OR THEORY OF LIABILITY. IN NO EVENT WILL NVIDIA’S AND ITS AFFILIATES TOTAL CUMULATIVE LIABILITY UNDER OR ARISING OUT OF THIS AGREEMENT EXCEED US$10.00. THE NATURE OF THE LIABILITY OR THE NUMBER OF CLAIMS OR SUITS SHALL NOT ENLARGE OR EXTEND THIS LIMIT. + + These exclusions and limitations of liability shall apply regardless if NVIDIA or its affiliates have been advised of the possibility of such damages, and regardless of whether a remedy fails its essential purpose. These exclusions and limitations of liability form an essential basis of the bargain between the parties, and, absent any of these exclusions or limitations of liability, the provisions of this Agreement, including, without limitation, the economic terms, would be substantially different. + + 6. Termination. + 6.1 + This Agreement will continue to apply until terminated by either you or NVIDIA as described below. + + 6.2 + If you want to terminate this Agreement, you may do so by stopping to use the SDK. + + 6.3 + NVIDIA may, at any time, terminate this Agreement if: (i) you fail to comply with any term of this Agreement and the non-compliance is not fixed within thirty (30) days following notice from NVIDIA (or immediately if you violate NVIDIA’s intellectual property rights); (ii) you commence or participate in any legal proceeding against NVIDIA with respect to the SDK; or (iii) NVIDIA decides to no longer provide the SDK in a country or, in NVIDIA’s sole discretion, the continued use of it is no longer commercially viable. + + 6.4 + Upon any termination of this Agreement, you agree to promptly discontinue use of the SDK and destroy all copies in your possession or control. Your prior distributions in accordance with this Agreement are not affected by the termination of this Agreement. Upon written request, you will certify in writing that you have complied with your commitments under this section. Upon any termination of this Agreement all provisions survive except for the license grant provisions. + + 7. General. + If you wish to assign this Agreement or your rights and obligations, including by merger, consolidation, dissolution or operation of law, contact NVIDIA to ask for permission. Any attempted assignment not approved by NVIDIA in writing shall be void and of no effect. NVIDIA may assign, delegate or transfer this Agreement and its rights and obligations, and if to a non-affiliate you will be notified. + + You agree to cooperate with NVIDIA and provide reasonably requested information to verify your compliance with this Agreement. + + This Agreement will be governed in all respects by the laws of the United States and of the State of Delaware as those laws are applied to contracts entered into and performed entirely within Delaware by Delaware residents, without regard to the conflicts of laws principles. The United Nations Convention on Contracts for the International Sale of Goods is specifically disclaimed. You agree to all terms of this Agreement in the English language. + + The state or federal courts residing in Santa Clara County, California shall have exclusive jurisdiction over any dispute or claim arising out of this Agreement. Notwithstanding this, you agree that NVIDIA shall still be allowed to apply for injunctive remedies or an equivalent type of urgent legal relief in any jurisdiction. + + If any court of competent jurisdiction determines that any provision of this Agreement is illegal, invalid or unenforceable, such provision will be construed as limited to the extent necessary to be consistent with and fully enforceable under the law and the remaining provisions will remain in full force and effect. Unless otherwise specified, remedies are cumulative. + + Each party acknowledges and agrees that the other is an independent contractor in the performance of this Agreement. + + The SDK has been developed entirely at private expense and is “commercial items” consisting of “commercial computer software” and “commercial computer software documentation” provided with RESTRICTED RIGHTS. Use, duplication or disclosure by the U.S. Government or a U.S. Government subcontractor is subject to the restrictions in this Agreement pursuant to DFARS 227.7202-3(a) or as set forth in subparagraphs (c)(1) and (2) of the Commercial Computer Software - Restricted Rights clause at FAR 52.227-19, as applicable. Contractor/manufacturer is NVIDIA, 2788 San Tomas Expressway, Santa Clara, CA 95051. + + The SDK is subject to United States export laws and regulations. You agree that you will not ship, transfer or export the SDK into any country, or use the SDK in any manner, prohibited by the United States Bureau of Industry and Security or economic sanctions regulations administered by the U.S. Department of Treasury’s Office of Foreign Assets Control (OFAC), or any applicable export laws, restrictions or regulations. These laws include restrictions on destinations, end users and end use. By accepting this Agreement, you confirm that you are not a resident or citizen of any country currently embargoed by the U.S. and that you are not otherwise prohibited from receiving the SDK. + + Any notice delivered by NVIDIA to you under this Agreement will be delivered via mail, email or fax. You agree that any notices that NVIDIA sends you electronically will satisfy any legal communication requirements. Please direct your legal notices or other correspondence to NVIDIA Corporation, 2788 San Tomas Expressway, Santa Clara, California 95051, United States of America, Attention: Legal Department. + + This Agreement and any exhibits incorporated into this Agreement constitute the entire agreement of the parties with respect to the subject matter of this Agreement and supersede all prior negotiations or documentation exchanged between the parties relating to this SDK license. Any additional and/or conflicting terms on documents issued by you are null, void, and invalid. Any amendment or waiver under this Agreement shall be in writing and signed by representatives of both parties. + + 8. NVIDIA RTX SUPPLEMENT TO SOFTWARE LICENSE AGREEMENT FOR NVIDIA SOFTWARE DEVELOPMENT KITS + NVIDIA RTX SUPPLEMENT TO SOFTWARE LICENSE AGREEMENT FOR NVIDIA SOFTWARE DEVELOPMENT KITS + The terms in this supplement govern your use of the NVIDIA RTX SDK under the terms of your license agreement (“Agreement”) as modified by this supplement. Capitalized terms used but not defined below have the meaning assigned to them in the Agreement. + + This supplement is an exhibit to the Agreement and is incorporated as an integral part of the Agreement. In the event of conflict between the terms in this supplement and the terms in the Agreement, the terms in this supplement govern. + + 1. Interoperability. + Your applications that incorporate, or are based on, the SDK must be fully interoperable with GPU hardware products designed by NVIDIA or its affiliates. + + 2. Limitations. + Your applications that incorporate, or are based on, the SDK may be deployed in a cloud service that runs on systems that consume NVIDIA vGPU software, and any other cloud service use of the SDK or its functionality is outside of the scope of the Agreement. For the purpose of this section, cloud services include application service providers or service bureaus, operators of hosted/virtual system environments, or hosting, time sharing or providing any other type of service to others. + + 3. Distribution. + The following portions of the SDK are distributable under the Agreement in applications developed for authorized platforms only, as described in the documentation provided by NVIDIA: any software or materials within the SDK, other than developer tools provided for your internal use. + + 4. Notification. + You are required to notify NVIDIA prior to commercial release of an application (including a plug-in to a commercial application). Please send notifications to: https://developer.nvidia.com/sw-notification and provide the following information in the email: company name, publisher and developer name, application name, platform (i.e. PC, Linux), scheduled ship date, and webLink to product/video. + + 5. Audio and Video Encoders and Decoders. + You acknowledge and agree that it is your sole responsibility to obtain any additional third-party licenses required to make, have made, use, have used, sell, import, and offer for sale your products or services that include or incorporate any third-party software and content relating to audio and/or video encoders and decoders from, including but not limited to, Microsoft, Thomson, Fraunhofer IIS, Sisvel S.p.A., MPEG-LA, and Coding Technologies. NVIDIA does not grant to you under this Agreement any necessary patent or other rights with respect to any audio and/or video encoders and decoders. + + 6. Marketing. + 6.1 Marketing Activities. Your license to the SDK under the Agreement is subject to your compliance with the following marketing terms: + (a) Identification by You. During the term of the Agreement, NVIDIA agrees that you may identify NVIDIA on your websites, printed collateral, trade-show displays and other retail packaging materials, as the supplier of the NVIDIA RTX SDK for the applications that were developed with use of the SDK, provided that all such references to NVIDIA will be subject to NVIDIA's prior review and written approval, which will not be unreasonably withheld or delayed. + + (b) NVIDIA Trademark Placement in Applications. For applications that incorporate the NVIDIA RTX SDK or portions thereof, you must attribute the use of the RTX SDK by including the NVIDIA Marks on splash screens, in the about box of the application (if present), and in credits for game applications. + + (c) Marketing and Promotion by You. You will include a reference to the NVIDIA RTX SDK and NVIDIA in all of your press releases for the applications that were developed with use of the SDK, and you will identify NVIDIA as the provider of “NVIDIA RTX™” (or such other term or phrase as indicated by NVIDIA from time to time). + + (d) Identification by NVIDIA. You agree that NVIDIA may identify you on NVIDIA's websites, printed collateral, trade-show displays, and other retail packaging materials as an individual or entity that produces products and services which incorporate the NVIDIA RTX SDK. To the extent that you provide NVIDIA with input or usage requests with regard to the use of your logo or materials, NVIDIA will use commercially reasonable efforts to comply with such requests. For the avoidance of doubt, NVIDIA’s rights pursuant to this section shall survive any expiration or termination of the Agreement with respect to existing applications which incorporate the NVIDIA RTX SDK. + + (e) Applications Marketing Material. You may provide NVIDIA with screenshots, imagery, and video footage of applications representative of your use of the NVIDIA RTX SDKs in your application (collectively, “Assets”). You hereby grant to NVIDIA the right to create and display self-promotional demo materials using the Assets, and after release of the application to the public to distribute, sub-license, and use the Assets to promote and market the NVIDIA RTX SDK. To the extent you provide NVIDIA with input or usage requests with regard to the use of your logo or materials, NVIDIA will use commercially reasonable efforts to comply with such requests. For the avoidance of doubt, NVIDIA’s rights pursuant to this section shall survive any termination of the Agreement with respect to applications which incorporate the NVIDIA RTX SDK. + + 6.2 Trademark Ownership and Licenses. Trademarks are owned and licenses as follows: + (a) Ownership of Trademarks. Each party owns the trademarks, logos, and trade names (collectively "Marks") for their respective products or services, including without limitation in applications, and the NVIDIA RTX SDK. Each party agrees to use the Marks of the other only as permitted in this exhibit. + + (b) Trademark License to NVIDIA. You grant to NVIDIA a non-exclusive, non-sub licensable, non-transferable (except as set forth in the assignment provision of the Agreement), worldwide license to refer to you and your applications, and to use your Marks on NVIDIA's marketing materials and on NVIDIA's website (subject to any reasonable conditions of you) solely for NVIDIA’s marketing activities set forth in this exhibit Sections (d)-(e) above. NVIDIA will follow your specifications for your Marks as to style, color, and typeface as reasonably provided to NVIDIA. + + (c) Trademark License to You. NVIDIA grants to you a non-exclusive, non-sub licensable, non-transferable (except as set forth in the assignment provision of the Agreement), worldwide license, subject to the terms of this exhibit and the Agreement, to use NVIDIA RTX™, NVIDIA GeForce RTX™ in combination with GeForce products, and/or NVIDIA Quadro RTX™ in combination with Quadro products (collectively, the “NVIDIA Marks”) on your marketing materials and on your website (subject to any reasonable conditions of NVIDIA) solely for your marketing activities set forth in this exhibit Sections 6.1 (a)-(c) above. For the avoidance of doubt, you will not and will not permit others to use any NVIDIA Mark for any other goods or services, or in a way that tarnishes, degrades, disparages or reflects adversely any of the NVIDIA Marks or NVIDIA’s business or reputation, or that dilutes or otherwise harms the value, reputation or distinctiveness of or NVIDIA’s goodwill in any NVIDIA Mark. In addition to the termination rights set forth in the Agreement, NVIDIA may terminate this trademark license at any time upon written notice to you. You will follow NVIDIA's use guidelines and specifications for NVIDIA's Marks as to style, color and typeface as provided in NVIDIA Marks and submit a sample of each proposed use of NVIDIA's Marks at least one (1) weeks prior to the desired implementation of such use to obtain NVIDIA's prior written approval (which approval will not be unreasonably withheld or delayed). If NVIDIA does not respond within ten (10) business days of your submission of such sample, the sample will be deemed unapproved. All goodwill associated with use of NVIDIA Marks will inure to the sole benefit of NVIDIA. + 6.3 Use Guidelines. Use of the NVIDIA Marks is subject to the following guidelines: + (a) Business Practices. You covenant that you will: (a) conduct business with respect to NVIDIA’s products in a manner that reflects favorably at all times on the good name, goodwill and reputation of such products; (b) avoid deceptive, misleading or unethical practices that are detrimental to NVIDIA, its customers, or end users; (c) make no false or misleading representations with regard to NVIDIA or its products; and (d) not publish or employ or cooperate in the publication or employment of any misleading or deceptive advertising or promotional materials. + + (b) No Combination Marks or Similar Marks. You agree not to (a) combine NVIDIA Marks with any other content without NVIDIA’s prior written approval, or (b) use any other trademark, trade name, or other designation of source which creates a likelihood of confusion with NVIDIA Marks. + + (c) No Harm to Marks. You agree that you will take such steps as are reasonably necessary to ensure that neither you, nor any person under your control (including your customers), will take or cause to be taken any action that brings NVIDIA or NVIDIA Marks into disrepute. You agree that you will not, directly or indirectly, in any country or governing body, apply to register in your own name, or otherwise attempt to acquire any legal interest in or right in or to, any NVIDIA Mark. + + 7. Licensing. + If the distribution terms in this Agreement are not suitable for your organization, if you want to engage with NVIDIA for marketing of your applications, or for any questions regarding this Agreement, please contact NVIDIA at nvidia-rtx-license-questions@nvidia.com. + + Notices + Notice + THE INFORMATION IN THIS GUIDE AND ALL OTHER INFORMATION CONTAINED IN NVIDIA DOCUMENTATION REFERENCED IN THIS GUIDE IS PROVIDED “AS IS.” NVIDIA MAKES NO WARRANTIES, EXPRESSED, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO THE INFORMATION FOR THE PRODUCT, AND EXPRESSLY DISCLAIMS ALL IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE. Notwithstanding any damages that customer might incur for any reason whatsoever, NVIDIA’s aggregate and cumulative liability towards customer for the product described in this guide shall be limited in accordance with the NVIDIA terms and conditions of sale for the product. + + THE NVIDIA PRODUCT DESCRIBED IN THIS GUIDE IS NOT FAULT TOLERANT AND IS NOT DESIGNED, MANUFACTURED OR INTENDED FOR USE IN CONNECTION WITH THE DESIGN, CONSTRUCTION, MAINTENANCE, AND/OR OPERATION OF ANY SYSTEM WHERE THE USE OR A FAILURE OF SUCH SYSTEM COULD RESULT IN A SITUATION THAT THREATENS THE SAFETY OF HUMAN LIFE OR SEVERE PHYSICAL HARM OR PROPERTY DAMAGE (INCLUDING, FOR EXAMPLE, USE IN CONNECTION WITH ANY NUCLEAR, AVIONICS, LIFE SUPPORT OR OTHER LIFE CRITICAL APPLICATION). NVIDIA EXPRESSLY DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR SUCH HIGH RISK USES. NVIDIA SHALL NOT BE LIABLE TO CUSTOMER OR ANY THIRD PARTY, IN WHOLE OR IN PART, FOR ANY CLAIMS OR DAMAGES ARISING FROM SUCH HIGH RISK USES. + + NVIDIA makes no representation or warranty that the product described in this guide will be suitable for any specified use without further testing or modification. Testing of all parameters of each product is not necessarily performed by NVIDIA. It is customer’s sole responsibility to ensure the product is suitable and fit for the application planned by customer and to do the necessary testing for the application in order to avoid a default of the application or the product. Weaknesses in customer’s product designs may affect the quality and reliability of the NVIDIA product and may result in additional or different conditions and/or requirements beyond those contained in this guide. NVIDIA does not accept any liability related to any default, damage, costs or problem which may be based on or attributable to: (i) the use of the NVIDIA product in any manner that is contrary to this guide, or (ii) customer product designs. + + Other than the right for customer to use the information in this guide with the product, no other license, either expressed or implied, is hereby granted by NVIDIA under this guide. Reproduction of information in this guide is permissible only if reproduction is approved by NVIDIA in writing, is reproduced without alteration, and is accompanied by all associated conditions, limitations, and notices. + + Trademarks + NVIDIA, the NVIDIA logo, and cuBLAS, CUDA, cuDNN, cuFFT, cuSPARSE, DIGITS, DGX, DGX-1, DGX Station, GRID, Jetson, Kepler, NGX, NVIDIA GPU Cloud, Maxwell, NCCL, NVLink, Pascal, Tegra, TensorRT, Tesla and Volta are trademarks and/or registered trademarks of NVIDIA Corporation in the Unites States and other countries. Other company and product names may be trademarks of the respective companies with which they are associated. + + Copyright + © 2019 NVIDIA Corporation. All rights reserved. json: nvidia-ngx-eula-2019.json - yml: nvidia-ngx-eula-2019.yml + yaml: nvidia-ngx-eula-2019.yml html: nvidia-ngx-eula-2019.html - text: nvidia-ngx-eula-2019.LICENSE + license: nvidia-ngx-eula-2019.LICENSE - license_key: nvidia-sdk-eula-v0.11 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-nvidia-sdk-eula-v0.11 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "License Agreement for NVIDIA Software Development Kits\nRelease date: January 28, 2020\ + \ \n\n1.1. License \n\n1.1.1. License Grant \n\nSubject to the terms of this Agreement,\ + \ NVIDIA hereby grants you a non-exclusive, nontransferable \nlicense, without the right\ + \ to sublicense (except as expressly provided in this \nAgreement) to:\n\n1. \nInstall and\ + \ use the SDK, \n2. \nModify and create derivative works of sample source code delivered\ + \ in the SDK, \nand \n3. \nDistribute those portions of the SDK that are identified in this\ + \ Agreement as \ndistributable, as incorporated in object code format into a software application\ + \ that \nmeets the distribution requirements indicated in this Agreement. \n\n1.1.2. Distribution\ + \ Requirements \n\nThese are the distribution requirements for you to exercise the distribution\ + \ grant:\n1. \nYour application must have material additional functionality, beyond the\ + \ included \nportions of the SDK. \n2. \nThe distributable portions of the SDK shall only\ + \ be accessed by your application. \n3. \nThe following notice shall be included in modifications\ + \ and derivative works of \nsample source code distributed: “This software contains source\ + \ code provided by \nNVIDIA Corporation.” \n4. \nUnless a developer tool is identified in\ + \ this Agreement as distributable, it is \ndelivered for your internal use only. \n5. \n\ + The terms under which you distribute your application must be consistent with the \nterms\ + \ of this Agreement, including (without limitation) terms relating to the license \ngrant\ + \ and license restrictions and protection of NVIDIA’s intellectual property \nrights. Additionally,\ + \ you agree that you will protect the privacy, security and legal \nrights of your application\ + \ users. \n6. \nYou agree to notify NVIDIA in writing of any known or suspected distribution\ + \ or \nuse of the SDK not in compliance with the requirements of this Agreement, and to\ + \ \nenforce the terms of your agreements with respect to distributed SDK. \n\n1.1.3. Authorized\ + \ Users \n\nYou may allow employees and contractors of your entity or of your subsidiary(ies)\ + \ to \naccess and use the SDK from your secure network to perform work on your behalf. \n\ + \nIf you are an academic institution you may allow users enrolled or employed by the \n\ + academic institution to access and use the SDK from your secure network. \n\nYou are responsible\ + \ for the compliance with the terms of this Agreement by your \nauthorized users. If you\ + \ become aware that your authorized users didn’t follow \nthe terms of this Agreement, you\ + \ agree to take reasonable steps to resolve the noncompliance \nand prevent new occurrences.\ + \ \n\n1.1.4. Pre-Release SDK \n\nThe SDK versions identified as alpha, beta, preview or\ + \ otherwise as pre-release, may \nnot be fully functional, may contain errors or design\ + \ flaws, and may have reduced or \ndifferent security, privacy, accessibility, availability,\ + \ and reliability standards relative to \ncommercial versions of NVIDIA software and materials.\ + \ Use of a pre-release SDK may \nresult in unexpected results, loss of data, project delays\ + \ or other unpredictable damage \nor loss. \n\nYou may use a pre-release SDK at your own\ + \ risk, understanding that pre-release SDKs \nare not intended for use in production or\ + \ business-critical systems. \n\nNVIDIA may choose not to make available a commercial version\ + \ of any pre-release SDK. \nNVIDIA may also choose to abandon development and terminate\ + \ the availability of a \npre-release SDK at any time without liability. \n\n1.1.5. Updates\ + \ \n\nNVIDIA may, at its option, make available patches, workarounds or other updates to\ + \ \nthis SDK. Unless the updates are provided with their separate governing terms, they\ + \ are \ndeemed part of the SDK licensed to you as provided in this Agreement. You agree\ + \ that \nthe form and content of the SDK that NVIDIA provides may change without prior notice\ + \ \nto you. While NVIDIA generally maintains compatibility between versions, NVIDIA \nmay\ + \ in some cases make changes that introduce incompatibilities in future versions of \nthe\ + \ SDK. \n\n1.1.6. Third Party Licenses \n\nThe SDK may come bundled with, or otherwise include\ + \ or be distributed with, third \nparty software licensed by a NVIDIA supplier and/or open\ + \ source software provided \nunder an open source license. Use of third party software is\ + \ subject to the third-party \nlicense terms, or in the absence of third party terms, the\ + \ terms of this Agreement. \nCopyright to third party software is held by the copyright\ + \ holders indicated in the third-\nparty software or license. \n\n1.1.7. Reservation of\ + \ Rights \n\nNVIDIA reserves all rights, title, and interest in and to the SDK, not expressly\ + \ granted to \nyou under this Agreement. \n\n1.2. Limitations \n\nThe following license\ + \ limitations apply to your use of the SDK:\n1. \nYou may not reverse engineer, decompile\ + \ or disassemble, or remove copyright or \nother proprietary notices from any portion of\ + \ the SDK or copies of the SDK. \n2. \nExcept as expressly provided in this Agreement, you\ + \ may not copy, sell, rent, \nsublicense, transfer, distribute, modify, or create derivative\ + \ works of any portion of \nthe SDK. For clarity, you may not distribute or sublicense the\ + \ SDK as a stand-alone \nproduct. \n3. \nUnless you have an agreement with NVIDIA for this\ + \ purpose, you may not indicate \nthat an application created with the SDK is sponsored\ + \ or endorsed by NVIDIA. \n4. \nYou may not bypass, disable, or circumvent any encryption,\ + \ security, digital rights \nmanagement or authentication mechanism in the SDK. \n5. \n\ + You may not use the SDK in any manner that would cause it to become subject to \nan open\ + \ source software license. As examples, licenses that require as a condition of \nuse, modification,\ + \ and/or distribution that the SDK be: \na. \nDisclosed or distributed in source code form;\ + \ \nb. \nLicensed for the purpose of making derivative works; or \nc. \nRedistributable\ + \ at no charge. \n6. \nUnless you have an agreement with NVIDIA for this purpose, you may\ + \ not use \nthe SDK with any system or application where the use or failure of the system\ + \ or \napplication can reasonably be expected to threaten or result in personal injury,\ + \ \ndeath, or catastrophic loss. Examples include use in avionics, navigation, military,\ + \ \nmedical, life support or other life critical applications. NVIDIA does not design, test\ + \ \nor manufacture the SDK for these critical uses and NVIDIA shall not be liable to you\ + \ \nor any third party, in whole or in part, for any claims or damages arising from such\ + \ \nuses. \n7. \nYou agree to defend, indemnify and hold harmless NVIDIA and its affiliates,\ + \ and \ntheir respective employees, contractors, agents, officers and directors, from and\ + \ \nagainst any and all claims, damages, obligations, losses, liabilities, costs or debt,\ + \ \nfines, restitutions and expenses (including but not limited to attorney’s fees and \n\ + costs incident to establishing the right of indemnification) arising out of or related \n\ + to your use of the SDK outside of the scope of this Agreement, or not in compliance \nwith\ + \ its terms. \n\n1.3. Ownership\n1. \nNVIDIA or its licensors hold all rights, title and\ + \ interest in and to the SDK and its \nmodifications and derivative works, including their\ + \ respective intellectual property \nrights, subject to your rights described in this section.\ + \ This SDK may include \nsoftware and materials from NVIDIA’s licensors, and these licensors\ + \ are intended \nthird party beneficiaries that may enforce this Agreement with respect\ + \ to their \nintellectual property rights.\n2. \nYou hold all rights, title and interest\ + \ in and to your applications and your derivative \nworks of the sample source code delivered\ + \ in the SDK, including their respective \nintellectual property rights, subject to NVIDIA’s\ + \ rights described in this section. \n3. \nYou may, but don’t have to, provide to NVIDIA\ + \ suggestions, feature requests \nor other feedback regarding the SDK, including possible\ + \ enhancements or \nmodifications to the SDK. For any feedback that you voluntarily provide,\ + \ you \nhereby grant NVIDIA and its affiliates a perpetual, non-exclusive, worldwide, \n\ + irrevocable license to use, reproduce, modify, license, sublicense (through multiple \n\ + tiers of sublicensees), and distribute (through multiple tiers of distributors) it \nwithout\ + \ the payment of any royalties or fees to you. NVIDIA will use feedback \nat its choice.\ + \ NVIDIA is constantly looking for ways to improve its products, \nso you may send feedback\ + \ to NVIDIA through the developer portal at https:// \ndeveloper.nvidia.com. \n\n1.4. No\ + \ Warranties \n\nTHE SDK IS PROVIDED BY NVIDIA “AS IS” AND “WITH ALL FAULTS.” TO \nTHE MAXIMUM\ + \ EXTENT PERMITTED BY LAW, NVIDIA AND ITS AFFILIATES \nEXPRESSLY DISCLAIM ALL WARRANTIES\ + \ OF ANY KIND OR NATURE, WHETHER \nEXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED\ + \ TO, ANY \nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, \nTITLE, NON-INFRINGEMENT,\ + \ OR THE ABSENCE OF ANY DEFECTS THEREIN, \nWHETHER LATENT OR PATENT. NO WARRANTY IS MADE\ + \ ON THE BASIS OF \nTRADE USAGE, COURSE OF DEALING OR COURSE OF TRADE. \n\n1.5. Limitation\ + \ of Liability \n\nTO THE MAXIMUM EXTENT PERMITTED BY LAW, NVIDIA AND ITS AFFILIATES \n\ + SHALL NOT BE LIABLE FOR ANY SPECIAL, INCIDENTAL, PUNITIVE OR \nCONSEQUENTIAL DAMAGES, OR\ + \ ANY LOST PROFITS, LOSS OF USE, LOSS OF \nDATA OR LOSS OF GOODWILL, OR THE COSTS OF PROCURING\ + \ SUBSTITUTE \nPRODUCTS, ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT \nOR THE USE\ + \ OR PERFORMANCE OF THE SDK, WHETHER SUCH LIABILITY \nARISES FROM ANY CLAIM BASED UPON BREACH\ + \ OF CONTRACT, BREACH \nOF WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR \n\ + ANY OTHER CAUSE OF ACTION OR THEORY OF LIABILITY. IN NO EVENT WILL \nNVIDIA’S AND ITS AFFILIATES\ + \ TOTAL CUMULATIVE LIABILITY UNDER OR \nARISING OUT OF THIS AGREEMENT EXCEED US$10.00. THE\ + \ NATURE OF THE \nLIABILITY OR THE NUMBER OF CLAIMS OR SUITS SHALL NOT ENLARGE OR \nEXTEND\ + \ THIS LIMIT. \n\nThese exclusions and limitations of liability shall apply regardless if\ + \ NVIDIA or its \naffiliates have been advised of the possibility of such damages, and regardless\ + \ of \nwhether a remedy fails its essential purpose. These exclusions and limitations of\ + \ liability \nform an essential basis of the bargain between the parties, and, absent any\ + \ of these \nexclusions or limitations of liability, the provisions of this Agreement, including,\ + \ without \nlimitation, the economic terms, would be substantially different. \n\n1.6. Termination\n\ + 1. \nThis Agreement will continue to apply until terminated by either you or NVIDIA as \n\ + described below. \n2. \nIf you want to terminate this Agreement, you may do so by stopping\ + \ to use the SDK. \n3. \nNVIDIA may, at any time, terminate this Agreement if: \na. \n(i)\ + \ you fail to comply with any term of this Agreement and the non-compliance \nis not fixed\ + \ within thirty (30) days following notice from NVIDIA (or \nimmediately if you violate\ + \ NVIDIA’s intellectual property rights); \nb. \n(ii) you commence or participate in any\ + \ legal proceeding against NVIDIA with \nrespect to the SDK; or \nc. \n(iii) NVIDIA decides\ + \ to no longer provide the SDK in a country or, in NVIDIA’s \nsole discretion, the continued\ + \ use of it is no longer commercially viable. \n4. \nUpon any termination of this Agreement,\ + \ you agree to promptly discontinue \nuse of the SDK and destroy all copies in your possession\ + \ or control. Your prior \ndistributions in accordance with this Agreement are not affected\ + \ by the termination \nof this Agreement. Upon written request, you will certify in writing\ + \ that you have \ncomplied with your commitments under this section. Upon any termination\ + \ of this \nAgreement all provisions survive except for the license grant provisions. \n\ + \n1.7. General \n\nIf you wish to assign this Agreement or your rights and obligations,\ + \ including by \nmerger, consolidation, dissolution or operation of law, contact NVIDIA\ + \ to ask for \npermission. Any attempted assignment not approved by NVIDIA in writing shall\ + \ be \nvoid and of no effect. NVIDIA may assign, delegate or transfer this Agreement and\ + \ its \nrights and obligations, and if to a non-affiliate you will be notified. \n\nYou\ + \ agree to cooperate with NVIDIA and provide reasonably requested information to \nverify\ + \ your compliance with this Agreement. \n\nThis Agreement will be governed in all respects\ + \ by the laws of the United States and of \nthe State of Delaware as those laws are applied\ + \ to contracts entered into and performed \nentirely within Delaware by Delaware residents,\ + \ without regard to the conflicts of laws \nprinciples. The United Nations Convention on\ + \ Contracts for the International Sale of \nGoods is specifically disclaimed. You agree\ + \ to all terms of this Agreement in the English \nlanguage. \n\nThe state or federal courts\ + \ residing in Santa Clara County, California shall have exclusive \njurisdiction over any\ + \ dispute or claim arising out of this Agreement. Notwithstanding \nthis, you agree that\ + \ NVIDIA shall still be allowed to apply for injunctive remedies or an \nequivalent type\ + \ of urgent legal relief in any jurisdiction. \n\nIf any court of competent jurisdiction\ + \ determines that any provision of this Agreement is \nillegal, invalid or unenforceable,\ + \ such provision will be construed as limited to the extent \nnecessary to be consistent\ + \ with and fully enforceable under the law and the remaining \nprovisions will remain in\ + \ full force and effect. Unless otherwise specified, remedies are \ncumulative. \n\nEach\ + \ party acknowledges and agrees that the other is an independent contractor in the \nperformance\ + \ of this Agreement. \n\nThe SDK has been developed entirely at private expense and is “commercial\ + \ items” \nconsisting of “commercial computer software” and “commercial computer software\ + \ \ndocumentation” provided with RESTRICTED RIGHTS. Use, duplication or disclosure \nby\ + \ the U.S. Government or a U.S. Government subcontractor is subject to the restrictions\ + \ \nin this Agreement pursuant to DFARS 227.7202-3(a) or as set forth in subparagraphs \n\ + (c)(1) and (2) of the Commercial Computer Software - Restricted Rights clause at \nFAR 52.227-19,\ + \ as applicable. Contractor/manufacturer is NVIDIA, 2788 San Tomas \nExpressway, Santa Clara,\ + \ CA 95051. \n\nThe SDK is subject to United States export laws and regulations. You agree\ + \ that you will \nnot ship, transfer or export the SDK into any country, or use the SDK\ + \ in any manner, \nprohibited by the United States Bureau of Industry and Security or economic\ + \ sanctions \nregulations administered by the U.S. Department of Treasury’s Office of Foreign\ + \ Assets \nControl (OFAC), or any applicable export laws, restrictions or regulations. These\ + \ \nlaws include restrictions on destinations, end users and end use. By accepting this\ + \ \nAgreement, you confirm that you are not a resident or citizen of any country currently\ + \ \nembargoed by the U.S. and that you are not otherwise prohibited from receiving the \n\ + SDK. \n\nAny notice delivered by NVIDIA to you under this Agreement will be delivered via\ + \ \nmail, email or fax. You agree that any notices that NVIDIA sends you electronically\ + \ \nwill satisfy any legal communication requirements. Please direct your legal notices\ + \ or \nother correspondence to NVIDIA Corporation, 2788 San Tomas Expressway, Santa Clara,\ + \ \nCalifornia 95051, United States of America, Attention: Legal Department. \n\nThis Agreement\ + \ and any exhibits incorporated into this Agreement constitute the \nentire agreement of\ + \ the parties with respect to the subject matter of this Agreement \nand supersede all prior\ + \ negotiations or documentation exchanged between the parties \n\nwww.nvidia.com \nEnd User\ + \ License Agreements (EULA) \nDR-06739-001_v01_v11.0" json: nvidia-sdk-eula-v0.11.json - yml: nvidia-sdk-eula-v0.11.yml + yaml: nvidia-sdk-eula-v0.11.yml html: nvidia-sdk-eula-v0.11.html - text: nvidia-sdk-eula-v0.11.LICENSE + license: nvidia-sdk-eula-v0.11.LICENSE - license_key: nvidia-video-codec-agreement + category: Proprietary Free spdx_license_key: LicenseRef-scancode-nvidia-video-codec-agreement other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "NVIDIA VIDEO CODEC SDK LICENSE AGREEMENT (“Agreement”)\n\nBY DOWNLOADING, INSTALLING\ + \ OR USING THE SOFTWARE AND OTHER AVAILABLE MATERIALS, YOU (“LICENSEE”) AGREE TO BE BOUND\ + \ BY THE FOLLOWING TERMS AND CONDITIONS OF THIS AGREEMENT. If Licensee does not agree to\ + \ the terms and condition of this Agreement, THEN do not downLOAD, INSTALL OR USE the SOFTWARE\ + \ AND MATERIALS.\n\nThe materials available for download to Licensees may include software\ + \ in both sample source code (\"Source Code\") and object code (\"Object Code\") versions\ + \ (collectively, the “Software”), documentation and other materials (collectively, these\ + \ code and materials referred to herein as \"Licensed Materials\"). Except as expressly\ + \ indicated herein, all terms and conditions of this Agreement apply to all of the Licensed\ + \ Materials.\n\nExcept as expressly set forth herein, NVIDIA owns all of the Licensed Materials\ + \ and makes them available to Licensee only under the terms and conditions set forth in\ + \ this Agreement.\n\nLicense: Subject to Licensee’s compliance with the terms of this Agreement,\ + \ NVIDIA grants to Licensee a nonexclusive, non-transferable, worldwide, royalty-free, fully\ + \ paid-up license and right to install, use, reproduce, display, perform, modify the Source\ + \ Code of the Software, and to prepare and have prepared derivative works thereof, and distribute\ + \ the Software and derivative works thereof (in object code only) as integrated in Licensee\ + \ software products solely for use with supported NVIDIA GPU hardware products as specified\ + \ in the accompanying release notes. The following terms apply to the Licensed Material:\n\ + \nDerivative Works: Subject to the License Grant Back below, Licensee shall own any Derivative\ + \ Works it creates directly to the Source Code that integrates with Licensee’s software\ + \ product (\"Modification(s)\") subject to NVIDIA’s ownership of the underlying Source Code\ + \ and all intellectual property rights therein. \n\nDistribution: Licensee may distribute\ + \ the Software (in object code form) integrated with Licensee software products only to\ + \ Licensee’s authorized distributors, resellers, and others in Licensee’s distribution chain\ + \ for Licensee product and end users and grant to such third party a sublicense to use the\ + \ Software under a written, legally enforceable agreement that has the effect of protecting\ + \ the Software and the rights of NVIDIA under terms no less restrictive than this Agreement.\n\ + \nLimitations: Unless otherwise authorized in the Agreement, Licensee shall not otherwise\ + \ assign, sublicense, lease, or in any other way transfer or disclose Software to any third\ + \ party. Licensee agrees not to disassemble, decompile or reverse engineer the Object Code\ + \ or use or modify any of the Licensed Materials to enable screen scraping, data scraping,\ + \ or any other activity with the purpose of capturing copyright protected content in violation\ + \ of a third party party’s intellectual property or other proprietary rights. Licensee\ + \ shall indemnify NVIDIA for any and all claims, liabilities, damages, expenses and costs\ + \ arising from Licensee’s breach of the foregoing limitations. \n\nLicense Grant Back: Licensee\ + \ hereby grants to NVIDIA and its affiliates a worldwide, non-exclusive, irrevocable, perpetual,\ + \ sublicenseable (through multiple tiers of sublicensees), royalty-free and fully paid-up\ + \ right and license to the Modification(s) created by or on behalf of Licensee so that NVIDIA\ + \ may copy, modify, create derivatives works thereof, to use, have used, import, make, have\ + \ made, sell, offer to sell, sublicense (through multiple tiers of sublicensees), distribute\ + \ (through multiple tiers of distributors) such derivative work(s) on a stand-alone basis\ + \ or as incorporated into the Licensed Materials or other related technologies. For the\ + \ sake of clarity, NVIDIA is not prohibited or otherwise restricted from independently developing\ + \ new features or functionality with respect to the Licensed Materials\n\nNo Other License:\ + \ No rights or licenses with respect to any proprietary information or patent, copyright,\ + \ trade secret or other intellectual property right owned or controlled by NVIDIA are granted\ + \ by NVIDIA to Licensee under this Agreement, expressly or by implication, except as expressly\ + \ provided in this Agreement. \n\nConfidentiality: If applicable, any exchange of Confidential\ + \ Information (as defined in the NDA) shall be made pursuant to the terms and conditions\ + \ of a separately signed Non-Disclosure Agreement (“NDA”) by and between NVIDIA and You.\ + \ For the sake of clarity, You agree that (a) the Software (in source code form); and (b)\ + \ Your use of the Software is considered Confidential Information of NVIDIA.\n\nIf You wish\ + \ to have a third party consultant or subcontractor (\"Contractor\") perform work on Your\ + \ behalf which involves access to or use of Software, You shall obtain a written confidentiality\ + \ agreement from the Contractor which contains terms and obligations with respect to access\ + \ to or use of Software no less restrictive than those set forth in this Agreement and excluding\ + \ any distribution or sublicense rights, and use for any other purpose than permitted in\ + \ this Agreement. Otherwise, You shall not disclose the terms or existence of this Agreement\ + \ or use NVIDIA's name in any publications, advertisements, or other announcements without\ + \ NVIDIA's prior written consent. Unless otherwise provided in this Agreement, You do not\ + \ have any rights to use any NVIDIA trademarks or logos.\n\nIntellectual Property Ownership:\ + \ Except as expressly licensed to Licensee under this Agreement, NVIDIA reserves all right,\ + \ title and interest, including but not limited to all intellectual property rights, in\ + \ and to the Licensed Materials and any derivative work(s) made thereto. The algorithms,\ + \ structure, organization and Source Code are the valuable trade secrets and confidential\ + \ information of NVIDIA.\n\nLicensee acknowledges and agrees that it is Licensee’s sole\ + \ responsibility to obtain any, additional, third party licenses required to make, have\ + \ made, use, have used, sell, import, and offer for sale Licensee products that include\ + \ or incorporate any third party technology such as operating systems, audio and/or video\ + \ encoders and decoders or any technology from, including but not limited to, Microsoft,\ + \ Thomson, Fraunhofer IIS, Sisvel S.p.A., MPEG-LA, and Coding Technologies (“Third Party\ + \ Technology”). Licensee acknowledges and agrees that NVIDIA has not granted to Licensee\ + \ under this Agreement any necessary patent rights with respect to the Third Party Technology.\ + \ As such, Licensee’s use of the Third Party Technology may be subject to further restrictions\ + \ and terms and conditions. Licensee acknowledges and agrees that Licensee is solely and\ + \ exclusively responsible for obtaining any and all authorizations and licenses required\ + \ for the use, distribution and/or incorporation of the Third Party Technology.\n\nLicensee\ + \ shall, at its own expense fully indemnify, hold harmless, defend and/or settle any claim,\ + \ suit or proceeding that is asserted by a third party against NVIDIA and its officers,\ + \ employees or agents, to the extent such claim, suit or proceeding arising from or related\ + \ to Licensee’s failure to fully satisfy and/or comply with the third party licensing obligations\ + \ related to the Third Party Technology (a “Claim”). In the event of a Claim, Licensee\ + \ agrees to: (a) pay all damages or settlement amounts, which shall not be finalized without\ + \ the prior written consent of NVIDIA, (including other reasonable costs incurred by NVIDIA,\ + \ including reasonable attorneys fees, in connection with enforcing this paragraph); (b)\ + \ reimburse NVIDIA for any licensing fees and/or penalties incurred by NVIDIA in connection\ + \ with a Claim; and (c) immediately procure/satisfy the third party licensing obligations\ + \ before using the Software pursuant to this Agreement.\n\nTerm of Agreement: This Agreement\ + \ shall become effective from the date of the initial download and shall remain in effect\ + \ for one year thereafter, unless terminated as provided below. Unless either party notifies\ + \ the other party of its intent to terminate this Agreement at least thirty (30) days prior\ + \ to the end of the Initial Term or the applicable renewal period, this Agreement will be\ + \ automatically renewed for one (1) year renewal periods thereafter, unless terminated in\ + \ accordance with the “Termination” provision of this Agreement.\n\nNVIDIA may terminate\ + \ this Agreement (and with it, all of Licensee’s right to the Licensed Materials) if (i)\ + \ Licensee fails to comply with any of the terms and conditions of this Agreement and if\ + \ the breach is not cured within thirty (30) days after notice thereof. Upon expiration\ + \ or termination of this Agreement pursuant to this paragraph, Licensee shall immediately\ + \ cease using the Licensed Materials and return or destroy or copies thereof in its possession.\n\ + \nDefensive Suspension:If Licensee commences or participates in any legal proceeding against\ + \ NVIDIA, then NVIDIA may, in its sole discretion, suspend or terminate all license grants\ + \ and any other rights provided under this Agreement.\n\nNo Support: NVIDIA has no obligation\ + \ to support or to continue providing or updating any of the Licensed Materials.\n\nNo Warranty:\ + \ THE LICENSED MATERIALS PROVIDED BY NVIDIA TO LICENSEE HEREUNDER ARE PROVIDED \"AS IS.\"\ + \ NVIDIA DISCLAIMS ALL WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, INCLUDING, WITHOUT LIMITATION,\ + \ THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\ + \ NONINFRINGEMENT.\n\nLimitation of Liability: NVIDIA SHALL NOT BE LIABLE TO LICENSEE, LICENSEE’S\ + \ CUSTOMERS, OR ANY OTHER PERSON OR ENTITY CLAIMING THROUGH OR UNDER LICENSEE FOR ANY LOSS\ + \ OF PROFITS, INCOME, SAVINGS, OR ANY OTHER CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE,\ + \ DIRECT OR INDIRECT DAMAGES (WHETHER IN AN ACTION IN CONTRACT, TORT OR BASED ON A WARRANTY),\ + \ EVEN IF NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS\ + \ SHALL APPLY NOTWITHSTANDING ANY FAILURE OF THE ESSENTIAL PURPOSE OF ANY LIMITED REMEDY.\ + \ IN NO EVENT SHALL NVIDIA’S AGGREGATE LIABILITY TO LICENSEE OR ANY OTHER PERSON OR ENTITY\ + \ CLAIMING THROUGH OR UNDER LICENSEE EXCEED THE AMOUNT OF MONEY ACTUALLY PAID BY LICENSEE\ + \ TO NVIDIA FOR THE LICENSED MATERIALS.\n\nApplicable Law and Jurisdiction: This Agreement\ + \ shall be deemed to have been made in, and shall be construed pursuant to, the laws of\ + \ the State of Delaware. The state and/or federal courts residing in Santa Clara County,\ + \ California shall have exclusive jurisdiction over any dispute or claim arising out of\ + \ this Agreement. The United Nations Convention on Contracts for the International Sale\ + \ of Goods is specifically disclaimed.\n\nFeedback:Licensee may, but is not obligated to,\ + \ provide to NVIDIA any suggestions, comments and feedback regarding the Licensed Materials\ + \ that are delivered by NVIDIA to Licensee under this Agreement (collectively, “Licensee\ + \ Feedback”). NVIDIA may use and include any Licensee Feedback that Licensee voluntarily\ + \ provides to improve the Licensed Materials or other related NVIDIA technologies. Accordingly,\ + \ if Licensee provides Licensee Feedback, Licensee grants NVIDIA and its licensees a perpetual,\ + \ irrevocable, worldwide, royalty-free, fully paid-up license grant to freely use, have\ + \ used, sell, modify, reproduce, transmit, license, sublicense (through multiple tiers of\ + \ sublicensees), distribute (through multiple tiers of distributors), and otherwise commercialize\ + \ the Licensee Feedback in the Licensed Materials or other related technologies. \n\nRESTRICTED\ + \ RIGHTS NOTICE: Licensed Materials has been developed entirely at private expense and is\ + \ commercial computer software provided with RESTRICTED RIGHTS. Use, duplication or disclosure\ + \ by the U.S. Government or a U.S. Government subcontractor is subject to the restrictions\ + \ set forth in the license agreement under which Licensed Materials was obtained pursuant\ + \ to DFARS 227.7202-3(a) or as set forth in subparagraphs (c)(1) and (2) of the Commercial\ + \ Computer Software - Restricted Rights clause at FAR 52.227-19, as applicable. Contractor/manufacturer\ + \ is NVIDIA, 2701 San Tomas Expressway, Santa Clara, CA 95050.\n\nMiscellaneous: If any\ + \ provision of this Agreement is inconsistent with, or cannot be fully enforced under, the\ + \ law, such provision will be construed as limited to the extent necessary to be consistent\ + \ with and fully enforceable under the law. This Agreement is the final, complete and exclusive\ + \ agreement between the parties relating to the subject matter hereof, and supersedes all\ + \ prior or contemporaneous understandings and agreements relating to such subject matter,\ + \ whether oral or written. This Agreement is solely between NVIDIA and Licensee. There\ + \ are no third party beneficiaries, express or implied, to this Agreement. This Agreement\ + \ may only be modified in writing signed by an authorized officer of NVIDIA. Licensee agrees\ + \ that it will not ship, transfer or export the Licensed Materials into any country, or\ + \ use the Licensed Materials in any manner, prohibited by the United States Bureau of Industry\ + \ and Security or any export laws, restrictions or regulations. This Agreement, and Licensee’s\ + \ rights and obligations herein, may not be assigned, subcontracted, delegated, or otherwise\ + \ transferred by Licensee without NVIDIA’s prior written consent, and any attempted assignment,\ + \ subcontract, delegation, or transfer in violation of the foregoing will be null and void.\ + \ The terms of this Agreement shall be binding upon assignees." json: nvidia-video-codec-agreement.json - yml: nvidia-video-codec-agreement.yml + yaml: nvidia-video-codec-agreement.yml html: nvidia-video-codec-agreement.html - text: nvidia-video-codec-agreement.LICENSE + license: nvidia-video-codec-agreement.LICENSE - license_key: nwhm + category: Permissive spdx_license_key: LicenseRef-scancode-nwhm other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: If you are not a white heterosexual male you are permitted to copy, sell and use this + work in any manner you choose without need to include any attribution you do not see fit. + You are asked as a courtesy to retain this license in any derivatives but you are not required. + If you are a white heterosexual male you are provided the same permissions (reuse, modification, + resale) but are required to include this license in any documentation and any public facing + derivative. You are also required to include attribution to the original author or to an + author responsible for redistribution of a derivative. json: nwhm.json - yml: nwhm.yml + yaml: nwhm.yml html: nwhm.html - text: nwhm.LICENSE + license: nwhm.LICENSE - license_key: nxp-firmware-patent + category: Proprietary Free spdx_license_key: LicenseRef-scancode-nxp-firmware-patent other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Redistribution. Reproduction and redistribution in binary form, without + modification, for use solely in conjunction with a NXP + chipset, is permitted provided that the following conditions are met: + + . Redistributions must reproduce the above copyright notice and the following + disclaimer in the documentation and/or other materials provided with the + distribution. + + . Neither the name of NXP nor the names of its suppliers + may be used to endorse or promote products derived from this Software + without specific prior written permission. + + . No reverse engineering, decompilation, or disassembly of this Software is + permitted. + + Limited patent license. NXP (.Licensor.) grants you + (.Licensee.) a limited, worldwide, royalty-free, non-exclusive license under + the Patents to make, have made, use, import, offer to sell and sell the + Software. No hardware per se is licensed hereunder. + The term .Patents. as used in this agreement means only those patents or patent + applications owned solely and exclusively by Licensor as of the date of + Licensor.s submission of the Software and any patents deriving priority (i.e., + having a first effective filing date) therefrom. The term .Software. as used in + this agreement means the firmware image submitted by Licensor, under the terms + of this license, to git://git.kernel.org/pub/scm/linux/kernel/git/firmware/ + linux-firmware.git. + Notwithstanding anything to the contrary herein, Licensor does not grant and + Licensee does not receive, by virtue of this agreement or the Licensor's + submission of any Software, any license or other rights under any patent or + patent application owned by any affiliate of Licensor or any other entity + (other than Licensor), whether expressly, impliedly, by virtue of estoppel or + exhaustion, or otherwise. + + 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. json: nxp-firmware-patent.json - yml: nxp-firmware-patent.yml + yaml: nxp-firmware-patent.yml html: nxp-firmware-patent.html - text: nxp-firmware-patent.LICENSE + license: nxp-firmware-patent.LICENSE - license_key: nxp-linux-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-nxp-linux-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Redistribution and use in binary form is permitted provided that the following + conditions are met: + + 1. Redistributions 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. + + 2. Redistribution and use shall be used only with NXP B.V. silicon products. + Any other use, reproduction, modification, translation, or compilation of the + Software is prohibited. + + 3. No reverse engineering, decompilation, or disassembly is permitted. + + TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THIS SOFTWARE IS PROVIDED + "AS IS" WITHOUT WARRANTY OF ANY KIND, INCLUDING, WITHOUT LIMITATION, ANY EXPRESS + OR IMPLIED WARRANTIES OF MERCHANTABILITY, ACCURACY, FITNESS OR SUFFICIENCY FOR A + PARTICULAR PURPOSE, SATISFACTORY QUALITY, CORRESPONDENCE WITH DESCRIPTION, QUIET + ENJOYMENT OR NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY RIGHTS. + NXP B.V., ITS AFFILIATES AND THEIR SUPPLIERS DISCLAIM ANY WARRANTY THAT THE + DELIVERABLES WILL OPERATE WITHOUT INTERRUPTION OR BE ERROR-FREE. json: nxp-linux-firmware.json - yml: nxp-linux-firmware.yml + yaml: nxp-linux-firmware.yml html: nxp-linux-firmware.html - text: nxp-linux-firmware.LICENSE + license: nxp-linux-firmware.LICENSE - license_key: nxp-mc-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-nxp-mc-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Software License Agreement ("Agreement") + + ANY USE, REPRODUCTION, OR DISTRIBUTION OF THE ACCOMPANYING BINARY SOFTWARE + CONSTITUTES LICENSEE'S ACCEPTANCE OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. + + Licensed Software. "Binary Software" means software in binary form specified in + ANNEX A. Subject to the terms and conditions of this Agreement, NXP USA, Inc. + ("Licensor"), grants to you ("Licensee") a worldwide, non-exclusive, and + royalty-free license to reproduce and distribute the Binary Software in its + complete and unmodified binary form as provided by Licensor, for use solely in + conjunction with a programmable processing unit supplied directly or indirectly + from Licensor. + + Restrictions. Licensee must reproduce the Licensor copyright notice above with + each binary copy of the Binary Software or in the accompanying documentation. + Licensee must not reverse engineer, decompile, disassemble or modify in any way + the Binary Software. Licensee must not use the Binary Software in violation of + any applicable law or regulation. This Agreement shall automatically terminate + upon Licensee's breach of any term or condition of this Agreement in which case, + Licensee shall destroy all copies of the Binary Software. Neither the name of + Licensor nor the names of its suppliers may be used to endorse or promote + products derived from this Binary Software without specific prior written + permission. + + Disclaimer. TO THE MAXIMUM EXTENT PERMITTED BY LAW, LICENSOR EXPRESSLY + DISCLAIMS ANY WARRANTY FOR THE BINARY SOFTWARE. THE BINARY SOFTWARE IS PROVIDED + "AS IS", WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING + WITHOUT LIMITATION THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + PARTICULAR PURPOSE, OR NON-INFRINGEMENT. WITHOUT LIMITING THE GENERALITY OF THE + FOREGOING, LICENSOR DOES NOT WARRANT THAT THE BINARY SOFTWARE IS ERROR-FREE OR + WILL OPERATE WITHOUT INTERRUPTION, AND LICENSOR GRANTS NO WARRANTY REGARDING ITS + USE OR THE RESULTS THEREFROM, INCLUDING ITS CORRECTNESS, ACCURACY, OR + RELIABILITY. + + Limitation of Liability. IN NO EVENT WILL LICENSOR, OR ANY OF LICENSOR'S + LICENSORS HAVE ANY LIABILITY HEREUNDER FOR ANY INDIRECT, SPECIAL, OR + CONSEQUENTIAL DAMAGES, HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER + FOR BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, ARISING OUT + OF THIS AGREEMENT, INCLUDING DAMAGES FOR LOSS OF PROFITS, OR THE COST OF + PROCUREMENT OF SUBSTITUTE GOODS, EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE + POSSIBILITY OF SUCH DAMAGES. LICENSOR'S TOTAL LIABILITY FOR ALL COSTS, DAMAGES, + CLAIMS, OR LOSSES WHATSOEVER ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT + OR THE BINARY SOFTWARE SUPPLIED UNDER THIS AGREEMENT IS LIMITED TO THE AGGREGATE + AMOUNT PAID BY LICENSEE TO LICENSOR IN CONNECTION WITH THE BINARY SOFTWARE TO + WHICH LOSSES OR DAMAGES ARE CLAIMED. + + Trade Compliance. Licensee shall comply with all applicable export and import + control laws and regulations including but not limited to the US Export + Administration Regulation (including prohibited party lists issued by other + federal governments), Catch-all regulations and all national and international + embargoes. Licensee further agrees that it will not knowingly transfer, divert, + export or re-export, directly or indirectly, any product, software, including + software source code, or technology restricted by such regulations or by other + applicable national regulations, received from Licensor under this Agreement, + or any direct product of such software or technical data to any person, firm, + entity, country or destination to which such transfer, diversion, export or + re-export is restricted or prohibited, without obtaining prior written + authorization from the applicable competent government authorities to the extent + required by those laws. Licensee acknowledge that the "restricted encryption + software" that is subject to the US Export Administration Regulations (EAR), is + not intended for use by a government end user, as defined in part 772 of the + EAR. This provision shall survive termination or expiration of this Agreement. + + Assignment. Licensee may not assign this Agreement without the prior written + consent of Licensor. Licensor may assign this Agreement without Licensee's + consent. + + Governing Law. This Agreement will be governed by, construed, and enforced in + accordance with the laws of the State of Texas, USA, without regard to conflicts + of laws principles, will apply to all matters relating to this Agreement or the + Binary Software, and Licensee agrees that any litigation will be subject to the + exclusive jurisdiction of the state or federal courts Texas, USA. The United + Nations Convention on Contracts for the International Sale of Goods will not + apply to this Agreement. + + Restrictions, Warranty Disclaimer, Limitation of Liability, Trade Compliance, + Assignment, Governing Law, and Third Party Terms shall survive termination or + expiration of this Agreement. + + Third Party Terms. The licensed Binary Software includes the following third + party software for which the following terms apply: + + Libfdt - Flat Device Tree manipulation + Copyright (c) 2006 David Gibson, IBM Corporation + All rights reserved. + + Redistributions 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. + + LibElf + Copyright (c) 2006,2008-2011 Joseph Koshy + All rights reserved. + + Redistributions 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. + + + ANNEX A + BINARY SOFTWARE + Only software in binary form may be provided under this Agreement json: nxp-mc-firmware.json - yml: nxp-mc-firmware.yml + yaml: nxp-mc-firmware.yml html: nxp-mc-firmware.html - text: nxp-mc-firmware.LICENSE + license: nxp-mc-firmware.LICENSE - license_key: nxp-microcontroller-proprietary + category: Proprietary Free spdx_license_key: LicenseRef-scancode-nxp-microctl-proprietary other_spdx_license_keys: - LicenseRef-scancode-nxp-microcontroller-proprietary is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Software that is described herein is for illustrative purposes only + which provides customers with programming information regarding the + products. This software is supplied ""AS IS"" without any warranties. + NXP Semiconductors assumes no responsibility or liability for the + use of the software, conveys no license or title under any patent, + copyright, or mask work right to the product. NXP Semiconductors + reserves the right to make changes in the software without + notification. NXP Semiconductors also make no representation or + warranty that such application will be suitable for the specified + use without further testing or modification. + + Permission to use, copy, modify, and distribute this software and its + documentation is hereby granted, under NXP Semiconductors' and its + licensor's relevant copyrights in the software, without fee, provided that it + is used in conjunction with NXP Semiconductors microcontrollers. This + copyright, permission, and disclaimer notice must appear in all copies of + this code. json: nxp-microcontroller-proprietary.json - yml: nxp-microcontroller-proprietary.yml + yaml: nxp-microcontroller-proprietary.yml html: nxp-microcontroller-proprietary.html - text: nxp-microcontroller-proprietary.LICENSE + license: nxp-microcontroller-proprietary.LICENSE - license_key: nxp-warranty-disclaimer + category: Proprietary Free spdx_license_key: LicenseRef-scancode-nxp-warranty-disclaimer other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Software that is described herein is for illustrative purposes only + which provides customers with programming information regarding the + products. This software is supplied "AS IS" without any warranties. + NXP Semiconductors assumes no responsibility or liability for the + use of the software, conveys no license or title under any patent, + copyright, or mask work right to the product. NXP Semiconductors + reserves the right to make changes in the software without + notification. NXP Semiconductors also make no representation or + warranty that such application will be suitable for the specified + use without further testing or modification. json: nxp-warranty-disclaimer.json - yml: nxp-warranty-disclaimer.yml + yaml: nxp-warranty-disclaimer.yml html: nxp-warranty-disclaimer.html - text: nxp-warranty-disclaimer.LICENSE + license: nxp-warranty-disclaimer.LICENSE - license_key: nysl-0.9982 + category: Permissive spdx_license_key: LicenseRef-scancode-nysl-0.9982 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + NYSL Version 0.9982 (en) (Unofficial) + ---------------------------------------- + A. This software is "Everyone'sWare". It means: + Anybody who has this software can use it as if he/she is + the author. + + A-1. Freeware. No fee is required. + A-2. You can freely redistribute this software. + A-3. You can freely modify this software. And the source + may be used in any software with no limitation. + A-4. When you release a modified version to public, you + must publish it with your name. + + B. The author is not responsible for any kind of damages or loss + while using or misusing this software, which is distributed + "AS IS". No warranty of any kind is expressed or implied. + You use AT YOUR OWN RISK. + + C. Copyrighted to + + D. Above three clauses are applied both to source and binary + form of this software. json: nysl-0.9982.json - yml: nysl-0.9982.yml + yaml: nysl-0.9982.yml html: nysl-0.9982.html - text: nysl-0.9982.LICENSE + license: nysl-0.9982.LICENSE - license_key: nysl-0.9982-jp + category: Permissive spdx_license_key: LicenseRef-scancode-nysl-0.9982-jp other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + NYSL Version 0.9982 + ---------------------------------------- + + A. 本ソフトウェアは Everyone'sWare です。このソフトを手にした一人一人が、 + ご自分の作ったものを扱うのと同じように、自由に利用することが出来ます。 + + A-1. フリーウェアです。作者からは使用料等を要求しません。 + A-2. 有料無料や媒体の如何を問わず、自由に転載・再配布できます。 + A-3. いかなる種類の 改変・他プログラムでの利用 を行っても構いません。 + A-4. 変更したものや部分的に使用したものは、あなたのものになります。 + 公開する場合は、あなたの名前の下で行って下さい。 + + B. このソフトを利用することによって生じた損害等について、作者は + 責任を負わないものとします。各自の責任においてご利用下さい。 + + C. 著作者人格権は に帰属します。著作権は放棄します。 + + D. 以上の3項は、ソース・実行バイナリの双方に適用されます。 json: nysl-0.9982-jp.json - yml: nysl-0.9982-jp.yml + yaml: nysl-0.9982-jp.yml html: nysl-0.9982-jp.html - text: nysl-0.9982-jp.LICENSE + license: nysl-0.9982-jp.LICENSE - license_key: o-uda-1.0 + category: Permissive spdx_license_key: O-UDA-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Open Use of Data Agreement v1.0 + This is the Open Use of Data Agreement, Version 1.0 (the "O-UDA"). Capitalized terms are defined in Section 5. Data Provider and you agree as follows: + + Provision of the Data + + 1.1. You may use, modify, and distribute the Data made available to you by the Data Provider under this O-UDA if you follow the O-UDA's terms. + + 1.2. Data Provider will not sue you or any Downstream Recipient for any claim arising out of the use, modification, or distribution of the Data provided you meet the terms of the O-UDA. + + 1.3 This O-UDA does not restrict your use, modification, or distribution of any portions of the Data that are in the public domain or that may be used, modified, or distributed under any other legal exception or limitation. + + No Restrictions on Use or Results + + 2.1. The O-UDA does not impose any restriction with respect to: + + 2.1.1. the use or modification of Data; or + + 2.1.2. the use, modification, or distribution of Results. + + Redistribution of Data + + 3.1. You may redistribute the Data under terms of your choice, so long as: + + 3.1.1. You include with any Data you redistribute all credit or attribution information that you received with the Data, and your terms require any Downstream Recipient to do the same; and + + 3.1.2. Your terms include a warranty disclaimer and limitation of liability for Upstream Data Providers at least as broad as those contained in Section 4.2 and 4.3 of the O-UDA. + + No Warranty, Limitation of Liability + + 4.1. Data Provider does not represent or warrant that it has any rights whatsoever in the Data. + + 4.2. THE DATA IS PROVIDED 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. + + 4.3. NEITHER DATA PROVIDER NOR ANY UPSTREAM DATA PROVIDER SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 DATA OR RESULTS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + Definitions + + 5.1. "Data" means the material you receive under the O-UDA in modified or unmodified form, but not including Results. + + 5.2. "Data Provider" means the source from which you receive the Data and with whom you enter into the O-UDA. + + 5.3. "Downstream Recipient" means any person or persons who receives the Data directly or indirectly from you in accordance with the O-UDA. + + 5.4. "Result" means anything that you develop or improve from your use of Data that does not include more than a de minimis portion of the Data on which the use is based. Results may include de minimis portions of the Data necessary to report on or explain use that has been conducted with the Data, such as figures in scientific papers, but do not include more. Artificial intelligence models trained on Data (and which do not include more than a de minimis portion of Data) are Results. + + 5.5. "Upstream Data Providers" means the source or sources from which the Data Provider directly or indirectly received, under the terms of the O-UDA, material that is included in the Data. json: o-uda-1.0.json - yml: o-uda-1.0.yml + yaml: o-uda-1.0.yml html: o-uda-1.0.html - text: o-uda-1.0.LICENSE + license: o-uda-1.0.LICENSE - license_key: o-young-jong + category: Permissive spdx_license_key: LicenseRef-scancode-o-young-jong other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Copying or modifying this code for any purpose is permitted, provided that this + copyright notice is preserved in its entirety in all copies or modifications. + + No warranties is provided, as to this code. json: o-young-jong.json - yml: o-young-jong.yml + yaml: o-young-jong.yml html: o-young-jong.html - text: o-young-jong.LICENSE + license: o-young-jong.LICENSE - license_key: oasis-ipr-2013 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-oasis-ipr-2013 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Intellectual Property Rights (IPR) Policy + 1. INTRODUCTION + 2. DEFINITIONS + 3. CONFIDENTIALITY + 4. TC FORMATION + 5. CONTRIBUTIONS + 6. LIMITED PATENT COVENANT FOR SPECIFICATION DEVELOPMENT + 7. FEEDBACK + 8. DISCLOSURE + 9. TYPES OF OBLIGATIONS + 10. LICENSING REQUIREMENTS + 11. WITHDRAWAL AND TERMINATION + 12. LIMITATIONS OF LIABILITY + 13. GENERAL + 14. NOTICES + Appendix A. Feedback License + Appendix B. Copyright License Grant + + + 1. INTRODUCTION + The OASIS Intellectual Property Rights (IPR) Policy governs the treatment of intellectual property in the production + of deliverables by OASIS Open (hereafter referred to as OASIS). + This Policy applies to all members of OASIS and their Affiliates (as defined below). The OASIS Board of Directors + may amend this Policy at any time in its sole discretion. In the event of such change to this Policy, the Board will + provide instructions for transition of membership and Technical Committees to the new Policy; however, no + amendment to this Policy will be effective in less than 60 calendar days from the date that written notice of such + amendment is given to the Member at its address of record with OASIS. + + + 2. DEFINITIONS + Each capitalized term within this document shall have the meaning provided below: + + 1. Affiliate – any entity that directly or indirectly controls, is controlled by, or is under common control with, + another entity, so long as such control exists. In the event that such control ceases to exist, such Affiliate will + be deemed to have withdrawn from OASIS pursuant to the terms set forth in the withdrawal provisions in + Section 11. For purposes of this definition, with respect to a business entity, control means direct or indirect + beneficial ownership of or the right to exercise (i) greater than fifty percent (50%) of the voting stock or + equity in an entity; or (ii) greater than fifty percent (50%) of the ownership interest representing the right to + make the decisions for the subject entity in the event that there is no voting stock or equity. + + 2. Beneficiary – any organization, including its Affiliates as defined in this Policy, or individual who benefits + from the OASIS Non-Assertion Covenant with respect to Essential Claims from Obligated Parties for a + particular OASIS Standards Final Deliverable. A Beneficiary need not be an OASIS member. + + 3. Continuing Licensing or Non-Assertion Obligation – a licensing or non-assertion obligation, of the types + defined by Section 9 of this Policy, which survives a TC Party’s withdrawal from an OASIS Technical + Committee. + + 4. Contribution – any material submitted to an OASIS Technical Committee by a TC Member in writing or + electronically, whether in an in-person meeting or in any electronic conference or mailing list maintained by + OASIS for the OASIS Technical Committee and which is or was proposed for inclusion in an OASIS Deliverable. + + 5. Contribution Obligation – a licensing or non-assertion requirement, as described in Section 10 that results + from making a Contribution as described in Section 9.1. + + 6. Contributor – a TC Party on whose behalf a Contribution is made by the TC Party’s TC Member. + + 7. Covered Product – includes only those specific portions of a product (hardware, software or combinations + thereof) that (a) implement and are compliant with all Normative Portions of an OASIS Standards Final + Deliverable produced by a Non-Assertion Mode TC that must be implemented to comply with such + deliverable, and (b) to the extent that the product implements one or more optional portions of such + deliverable, those portions that implement and are compliant with all Normative Portions that must be + implemented to comply with such optional portions of the deliverable. + + 8. Eligible Person – one of a class of individuals that include: persons holding individual memberships in + OASIS, employees or designees of organizational members of OASIS, and such other persons as may be + designated by the OASIS Board of Directors. + + 9. Essential Claims – those claims in any patent or patent application in any jurisdiction in the world that + would necessarily be infringed by an implementation of those portions of a particular OASIS Standards Final + Deliverable created within the scope of the TC charter in effect at the time such deliverable was developed. + A claim is necessarily infringed hereunder only when it is not possible to avoid infringing it because there is + no non-infringing alternative for implementing the Normative Portions of that particular OASIS Standards + Final Deliverable. Existence of a non-infringing alternative shall be judged based on the state of the art at + the time the OASIS Standards Final Deliverable is approved. + + 10. Feedback – any written or electronic input provided to an OASIS Technical Committee by individuals who + are not TC Members and which is proposed for inclusion in an OASIS Deliverable. All such Feedback must be + made under the terms of the Feedback License (Appendix A). + + 11. Final Maintenance Deliverable – Any OASIS Standards Final Deliverable that results entirely from + Maintenance Activity. + + 12. IPR Mode – an element of an OASIS TC charter, which specifies the type of licenses or non-assertion + covenants required for any Essential Claims associated with the output produced by a given Technical + Committee. This is further described in Section 4. + + 13. Licensed Products – include only those specific portions of a Licensee’s products (hardware, software or + combinations thereof) that (a) implement and are compliant with all Normative Portions of an OASIS + Standards Final Deliverable that must be implemented to comply with such deliverable, and (b) to the + extent that the Licensee’s products implement one or more optional portions of such deliverable, those + portions of Licensee’s products that implement and are compliant with all Normative Portions that must be + implemented to comply with such optional portions of the deliverable. + + 14. Licensee – any organization, including its Affiliates as defined in this Policy, or individual that licenses + Essential Claims from Obligated Parties for a particular OASIS Standards Final Deliverable. Licensees need + not be OASIS members. + + 15. Maintenance Activity – Any drafting or development work to modify an OASIS Standards Final Deliverable + that (a) constitutes only error corrections, bug fixes or editorial formatting changes to the OASIS Standards + Final Deliverable; and (b) does not add any feature; and (c) is within the scope of the TC that approved the + OASIS Standards Final Deliverable (whether or not the work is conducted by the same TC). + + 16. Normative Portion – a portion of an OASIS Standards Final Deliverable that must be implemented to + comply with such deliverable. If such deliverable defines optional parts, Normative Portions include those + portions of the optional part that must be implemented if the implementation is to comply with such + optional part. Examples and/or reference implementations and other specifications or standards that were + developed outside the TC and which are referenced in the body of a particular OASIS Standards Final + Deliverable that may be included in such deliverable are not Normative Portions. + + 17. Non-Assertion Mode TC – an OASIS TC that is chartered under the Non-Assertion IPR Mode described in + Section 4. + + 18. OASIS Deliverable – a work product developed by a Technical Committee within the scope of its charter + which is enumerated in and developed in accordance with the OASIS Technical Committee Process. + + 19. OASIS Standards Draft Deliverable – an OASIS Deliverable that has been designated and approved by a + Technical Committee as an OASIS Standards Draft Deliverable and which is enumerated in and developed + in accordance with the OASIS Technical Committee Process. + + 20. OASIS Standards Final Deliverable – an OASIS Deliverable that has been designated and approved by a + Technical Committee as an OASIS Standards Final Deliverable and which is enumerated in and developed + in accordance with the OASIS Technical Committee Process. + + 21. OASIS Party – a member of OASIS (i.e., an entity that has executed an OASIS Membership Agreement) and + its Affiliates. + + 22. OASIS TC Administrator – the person(s) appointed to represent OASIS in administrative matters relating to + TCs as provided by the OASIS Technical Committee Process. + + 23. OASIS Technical Committee (TC) – a group of Eligible Persons formed, and whose actions are conducted, + according to the provisions of the OASIS Technical Committee Process. + + 24. OASIS Technical Committee Process – the "OASIS OPEN TECHNICAL COMMITTEE PROCESS", as from time to + time amended, which describes the operation of Technical Committees at OASIS. + + 25. Obligated Party – a TC Party that incurs a licensing or non-assertion obligation for its Essential Claims by + either a Contribution Obligation or a Participation Obligation. + + 26. Participation Obligation – a licensing or non-assertion requirement, as described in Section 10, that arises + from membership in an OASIS Technical Committee, as described in Section 9.2. + + 27. RAND Mode TC – an OASIS TC that is chartered under the RAND IPR Mode described in Section 4. + + 28. RF Mode TC – an OASIS TC that is chartered under one of the RF IPR Modes described in Section 4. + + 29. TC Member – an Eligible Person who has completed the requirements to join a TC during the period in which + s/he maintains his or her membership as described by the OASIS Technical Committee Process. A TC + Member may represent the interests of a TC Party in the TC. + + 30. TC Party – an OASIS Party that is, or is represented by, a TC Member in the relevant Technical Committee. + + + 3. CONFIDENTIALITY + Neither Contributions nor Feedback that are subject to any requirement of confidentiality may be considered in + any part of the OASIS Technical Committee Process. All Contributions and Feedback will therefore be deemed to + have been submitted on a non-confidential basis, notwithstanding any markings or representations to the + contrary, and OASIS shall have no obligation to treat any such material as confidential. + + + 4. TC FORMATION + At the time a TC is chartered, the proposal to form the TC must specify the IPR Mode under which the Technical + Committee will operate. This Policy describes the following IPR Modes: + + 1. RAND – requires all Obligated Parties to license their Essential Claims using the RAND licensing elements + described in Section 10.1. + + 2. RF on RAND Terms – requires all Obligated Parties to license their Essential Claims using the RF licensing + elements described in Sections 10.2.1 and 10.2.2. + + 3. RF on Limited Terms – requires all Obligated Parties to license their Essential Claims using the RF licensing + elements described in Sections 10.2.1 and 10.2.3. + + 4. Non-Assertion – requires all Obligated Parties to provide an OASIS Non-Assertion Covenant as described in + Section 10.3. + A TC may not change its IPR Mode without closing and submitting a new charter. + + + 5. CONTRIBUTIONS + + 5.1 General + At the time of submission of a Contribution for consideration by an OASIS Technical Committee, each named coContributor (and its respective Affiliates) is deemed to agree to the following terms and conditions and to make + the following representations (based on the actual knowledge of the TC Member(s) making the Contribution, with + respect to items 3 – 5 below, inclusive): + + 1. OASIS has no duty to publish or otherwise use or disseminate any Contribution. + + 2. OASIS may reference the name(s) of the Contributor(s) for the purpose of acknowledging and publishing + the Contribution. + + 3. The Contribution properly identifies any holders of copyright interests in the Contribution. + + 4. No information in the Contribution is confidential, and OASIS may freely disclose any information in the + Contribution. + + 5. There are no limits to the Contributor’s ability to make the grants, acknowledgments, and agreements + required by this Policy with respect to such Contribution. + + + 5.2 Copyright Licenses + + 1. To the extent that a Contributor holds a copyright interest in its Contribution, such Contributor grants to + OASIS a perpetual, irrevocable, non-exclusive, royalty-free, worldwide copyright license, with the right to + directly and indirectly sublicense, to copy, publish, and distribute the Contribution in any way, and to + prepare derivative works that are based on or incorporate all or part of the Contribution solely for the + purpose of developing and promoting the OASIS Deliverable and enabling (subject to the rights of the + owners of any Essential Claims) the implementation of the same by Licensees or Beneficiaries. + + 2. To the extent that a Contribution is subject to copyright by parties that are not Contributors, the + submitter(s) must provide OASIS with a signed “Copyright License Grant” (Appendix B) from each such + copyright owner whose permission would be required to permit OASIS to exercise the rights described in + Appendix B. + + + 5.3 Trademarks + + 1. Trademarks or service marks that are not owned by OASIS shall not be used by OASIS, except as approved + by the OASIS Board of Directors, to refer to work conducted at OASIS, including the use in the name of an + OASIS TC, an OASIS Deliverable, or incorporated into such work. + + 2. No OASIS Party may use an OASIS trademark or service mark in connection with an OASIS Deliverable or + otherwise, except in compliance with such license and usage guidelines as OASIS may from time to time + require. + + + 6. LIMITED PATENT COVENANT FOR DELIVERABLE DEVELOPMENT + + To permit TC Members and their TC Parties to develop implementations of OASIS Standards Draft Deliverables + being developed by a TC, each TC Party represented by a TC Member in a TC, at such time that the TC Member + joins the TC, grants to each other TC Party in that TC automatically and without further action on its part, and on + an ongoing basis, a limited covenant not to assert any Essential Claims required to implement such OASIS + Standards Draft Deliverable and covering making or using (but not selling or otherwise distributing) an + implementation of such OASIS Standards Draft Deliverable, solely for the purpose of testing and developing such + deliverable and only until either the OASIS Standards Draft Deliverable is approved as an OASIS Standards Final + Deliverable or the Technical Committee is closed. + + + 7. FEEDBACK + + 1. OASIS encourages Feedback to OASIS Deliverables from both OASIS Parties who are not TC Parties and the + public at large. Feedback will be accepted only under the "Feedback License" (Appendix A). + + 2. OASIS will require that submitters of Feedback agree to the terms of the Feedback License before + transmitting submitted Feedback to the Technical Committee. + + + 8. DISCLOSURE + + 1. Disclosure Obligations – Each TC Party shall disclose to OASIS in writing the existence of all patents and/or + patent applications owned or claimed by such TC Party that are actually known to the TC Member directly + participating in the TC, and which such TC Member believes may contain any Essential Claims or claims + that might become Essential Claims upon approval of an OASIS Standards Final Deliverable as such + document then exists (collectively, “Disclosed Claims”). + + 2. Disclosure of Third Party Patent Claims – Each TC Party whose TC Members become aware of patents or + patent applications owned or claimed by a third party that contain claims that might become Essential + Claims upon approval of an OASIS Standards Final Deliverable should disclose them, provided that such + disclosure is not prohibited by any confidentiality obligation binding upon them. It is understood that any TC + Party that discloses third party patent claims to OASIS does not take a position on the essentiality or + relevance of the third party claims to the OASIS Standards Final Deliverable in its then-current form. + In both cases (Sections 8.1 and 8.2), it is understood and agreed that such TC Party(s)’ TC Member(s) do not + represent that they know of all potentially pertinent claims of patents and patent applications owned or + claimed by the TC Party or any third parties. For the avoidance of doubt, while the disclosure obligation + under Sections 8.1 and 8.2 applies directly to all TC Parties, this obligation is triggered based on the actual + knowledge of the TC Party’s TC Members regarding the TC Party’s patents or patent applications that may + contain Essential Claims. + + 3. Disclosure Requests – Disclosure requests will be included as described in Section 12 with all public review + copies of OASIS Standards Final Deliverables. All OASIS Parties are encouraged to review such OASIS + Standards Final Deliverables and make appropriate disclosures. + + 4. Limitations – A disclosure request and the obligation to disclose set forth above do not imply any + obligations on the recipients of disclosure requests (collectively or individually) or on any OASIS Party to + perform or conduct patent searches. Nothing in this Policy nor the act of receiving a disclosure request for + an OASIS Standards Final Deliverable, regardless of whether it is responded to, shall be construed or + otherwise interpreted as any kind of express or implied representation with respect to the existence or nonexistence of patents or patent applications which contain Essential Claims, other than that such TC Party + has acted in good faith with respect to its disclosure obligations. + + 5. Information – Any disclosure of Disclosed Claims shall include (a) in the case of issued patents and + published patent applications, the patent or patent application publication number, the associated country + and, as reasonably practicable, the relevant portions of the applicable OASIS Standards Final Deliverable; + and (b) in the case of unpublished patent applications, the existence of the unpublished application and, as + reasonably practicable, the relevant portions of the applicable OASIS Standards Final Deliverable. + + + 9. TYPES OF OBLIGATIONS + + 9.1 Contribution Obligation + A TC Party has a Contribution Obligation, which arises at the time the Contribution is submitted to a TC, to license + or provide under non-assertion covenants as appropriate for the IPR mode described in Section 10, any claims + under its patents or patent applications that become Essential Claims when such Contribution is incorporated + (either in whole or in part) into (a) the OASIS Standards Final Deliverable produced by the TC that received the + Contribution, or (b) any Final Maintenance Deliverable with respect to that OASIS Standards Final Deliverable. + + 9.2 Participation Obligation + A TC Party has a Participation Obligation to license or provide under non-assertion covenant as appropriate for + the IPR mode, as described in Section 10, any claims under its patents or patent applications that would be + Essential Claims in the then current OASIS Standards Draft Deliverable, if that draft subsequently becomes an + OASIS Standards Final Deliverable, even if the TC Party is not a Contributor, when all of the following conditions are + met: + + - An OASIS Standards Final Deliverable is finally approved that incorporates such OASIS Standards Draft + Deliverable, either in whole or in part; + + - The TC Party has been on, or has been represented by TC Member(s) on such TC for a total of sixty (60) + calendar days, which need not be continuous; + + - The TC Party is on, or is represented by TC Member(s) on such TC after a period of seven (7) calendar days + after the ballot to approve such OASIS Standards Draft Deliverable has elapsed. + + + Once the foregoing conditions are met, that TC Party’s Participation Obligation so to license or provide a nonassertion covenant continues with respect to that OASIS Standards Final Deliverable, and any Final Maintenance + + Deliverable subsequently approved with respect to that OASIS Standards Final Deliverable. + For organizational TC Parties, the membership threshold is met by one or more employees or organizational + designees of such Parties having been a TC Member on any 60 calendar days, although any given calendar day + is only one day of membership, regardless of the number of participants on that day. + + Each time a new OASIS Standards Draft Deliverable is approved by the TC, the Participation Obligation adjusts to + encompass the material in the latest OASIS Standards Draft Deliverable seven days after such draft has been + approved for publication. + + + 10. LICENSING REQUIREMENTS + + 10.1 RAND Mode TC Requirements + + For an OASIS Standards Final Deliverable developed by a RAND Mode TC, except where a Licensee has a separate, + signed agreement under which the Essential Claims are licensed to such Licensee on more favorable terms and + conditions than set forth in this section (in which case such separate signed agreement shall supersede this + Limited Patent License), each Obligated Party in such TC hereby covenants that, upon request and subject to + Section 11, it will grant to any OASIS Party or third party: a nonexclusive, worldwide, non-sublicensable, perpetual + patent license (or an equivalent non-assertion covenant) under its Essential Claims covered by its Contribution + Obligations or Participation Obligations on fair, reasonable, and non-discriminatory terms to make, have made, + use, market, import, offer to sell, and sell, and to otherwise directly or indirectly distribute (a) Licensed Products + that implement such OASIS Standards Final Deliverable, and (b) Licensed Products that implement any Final + Maintenance Deliverable with respect to that OASIS Standards Final Deliverable. Such license need not extend to + features of a Licensed Product that are not required to comply with the Normative Portions of such OASIS + Standards Final Deliverable or Final Maintenance Deliverable. For the sake of clarity, the rights set forth above + include the right to directly or indirectly authorize a third party to make unmodified copies of the Licensee’s + Licensed Products and to license (optionally under the third party’s license) the Licensee’s Licensed Products + within the scope of, and subject to the terms of, the Obligated Party’s license. + + At the election of the Obligated Party, such license may include a term requiring the Licensee to grant a reciprocal + license to its Essential Claims (if any) covering the same OASIS Standards Final Deliverable and any such Final + Maintenance Deliverable. Such term may require the Licensee to grant licenses to all implementers of such + deliverable. The Obligated Party may also include a term providing that such license may be suspended with + respect to the Licensee if that Licensee first sues the Obligated Party for infringement by the Obligated Party of any + of the Licensee’s Essential Claims covering the same OASIS Standards Final Deliverable or any such Final + Maintenance Deliverable. + + License terms that are fair, reasonable, and non-discriminatory beyond those specifically mentioned above are + left to the Licensees and Obligated Parties involved. + + 10.2 RF Mode TC Requirements + + 10.2.1 Common + + For an OASIS Standards Final Deliverable developed by an RF Mode TC, except where a Licensee has a separate, + signed agreement under which the Essential Claims are licensed to such Licensee on more favorable terms and + conditions than set forth in this section (in which case such separate signed agreement shall supersede this + Limited Patent License), each Obligated Party in such TC hereby covenants that, upon request and subject to + Section 11, it will grant to any OASIS Party or third party: a nonexclusive, worldwide, non-sublicensable, perpetual + patent license (or an equivalent non-assertion covenant) under its Essential Claims covered by its Contribution + Obligations or Participation Obligations without payment of royalties or fees, and subject to the applicable Section + + 10.2.2 or 10.2.3, to make, have made, use, market, import, offer to sell, and sell, and to otherwise directly or indirectly + distribute (a) Licensed Products that implement such OASIS Standards Final Deliverable, and (b) Licensed + Products that implement any Final Maintenance Deliverable with respect to that OASIS Standards Final + Deliverable. Such license need not extend to features of a Licensed Product that are not required to comply with + the Normative Portions of such OASIS Standards Final Deliverable or Final Maintenance Deliverable. For the sake of + clarity, the rights set forth above include the right to directly or indirectly authorize a third party to make + unmodified copies of the Licensee’s Licensed Products and to license (optionally under the third party’s license) + the Licensee’s Licensed Products, within the scope of, and subject to the terms of, the Obligated Party’s license. + At the election of the Obligated Party, such license may include a term requiring the Licensee to grant a reciprocal + license to its Essential Claims (if any) covering the same OASIS Standards Final Deliverable and any such Final + Maintenance Deliverable. Such term may require the Licensee to grant licenses to all implementers of such + deliverable. The Obligated Party may also include a term providing that such license may be suspended with + respect to the Licensee if that Licensee first sues the Obligated Party for infringement by the Obligated Party of any + of the Licensee’s Essential Claims covering the same OASIS Standards Final Deliverable and any such Final + Maintenance Deliverable. + + 10.2.2 RF on RAND Terms + + With TCs operating under the RF on RAND Terms IPR Mode, license terms that are fair, reasonable, and nondiscriminatory beyond those specifically mentioned in Section 10.2.1 may also be included, and such additional + RAND terms are left to the Licensees and Obligated Parties involved. + + 10.2.3 RF on Limited Terms + + With TCs operating under the RF on Limited Terms IPR Mode, Obligated Parties may not impose any further + conditions or restrictions beyond those specifically mentioned in Section 10.2.1 on the use of any technology or + intellectual property rights, or other restrictions on behavior of the Licensee, but may include reasonable, + customary terms relating to operation or maintenance of the license relationship, including the following: choice + of law and dispute resolution. + + 10.3. Non-Assertion Mode TC Requirements + + 10.3.1. For an OASIS Standards Final Deliverable developed by a Non-Assertion Mode TC, and any Final + Maintenance Deliverable with respect to that OASIS Standards Final Deliverable, each Obligated Party in such TC + hereby makes the following world-wide “OASIS Non-Assertion Covenant”. + Each Obligated Party in a Non-Assertion Mode TC irrevocably covenants that, subject to Section 10.3.2 and Section + 11 of the OASIS IPR Policy, it will not assert any of its Essential Claims covered by its Contribution Obligations or + Participation Obligations against any OASIS Party or third party for making, having made, using, marketing, + importing, offering to sell, selling, and otherwise distributing Covered Products that implement an OASIS Standards + Final Deliverable developed by that TC and Covered Products that implement any Final Maintenance Deliverable + with respect to that OASIS Standards Final Deliverable. + + 10.3.2. The covenant described in Section 10.3.1 may be suspended or revoked by the Obligated Party with respect + to any OASIS Party or third party if that OASIS Party or third party asserts an Essential Claim in a suit first brought + against, or attempts in writing to assert an Essential Claim against, a Beneficiary with respect to a Covered + Product that implements the same OASIS Standards Final Deliverable or any such Final Maintenance Deliverable. + + + 11. WITHDRAWAL AND TERMINATION + + A TC Party may withdraw from a TC at any time by notifying the OASIS TC Administrator in writing of such decision + to withdraw. Withdrawal shall be deemed effective when such written notice is sent. + + 11.1 Withdrawal from a Technical Committee + A TC Party that withdraws from an OASIS Technical Committee shall have Continuing Licensing or Non-Assertion + Obligations based on its Contribution Obligations and Participation Obligations as follows: + + 1. A TC Party that has incurred neither a Contribution Obligation nor a Participation Obligation prior to + withdrawal has no licensing or non-assertion obligations for OASIS Standards Final Deliverable(s) + originating from that OASIS TC. + + 2. A TC Party that has incurred a Contribution Obligation prior to withdrawal continues to be subject to its + Contribution Obligation. + + 3. A TC Party that has incurred a Participation Obligation prior to withdrawal continues to be subject to its + Participation Obligation but only with respect to OASIS Standards Draft Deliverable(s) approved more than + seven (7) calendar days prior to its withdrawal. + + 11.2 Termination of an OASIS Membership + An OASIS Party that terminates its OASIS membership (voluntarily or involuntarily) is deemed to withdraw from all + TCs in which that OASIS Party has TC Member(s) representing it, and such OASIS Party remains subject to + Continuing Licensing or Non-Assertion Obligations for each such TC based on its Obligated Party status in that TC + on the date that its membership termination becomes effective. + + + 12. LIMITATIONS OF LIABILITY + + All OASIS Deliverables are provided “as is”, without warranty of any kind, express or implied, and OASIS, as well as + all OASIS Parties and TC Members, expressly disclaim any warranty of merchantability, fitness for a particular or + intended purpose, accuracy, completeness, non-infringement of third party rights, or any other warranty. + In no event shall OASIS or any of its constituent parts (including, but not limited to, the OASIS Board of Directors), + be liable to any other person or entity for any loss of profits, loss of use, direct, indirect, incidental, consequential, + punitive, or special damages, whether under contract, tort, warranty, or otherwise, arising in any way out of this + Policy, whether or not such party had advance notice of the possibility of such damages. + In addition, except for grossly negligent or intentionally fraudulent acts, OASIS Parties and TC Members (or their + representatives), shall not be liable to any other person or entity for any loss of profits, loss of use, direct, indirect, + incidental, consequential, punitive, or special damages, whether under contract, tort, warranty, or otherwise, + arising in any way out of this Policy, whether or not such party had advance notice of the possibility of such + damages. + OASIS assumes no responsibility to compile, confirm, update or make public any assertions of Essential Claims or + other intellectual property rights that might be infringed by an implementation of an OASIS Deliverable. + If OASIS at any time refers to any such assertions by any owner of such claims, OASIS takes no position as to the + validity or invalidity of such assertions, or that all such assertions that have or may be made have been referred + to. + + + 13. GENERAL + + 13.1. By ratifying this document, OASIS warrants that it will not inhibit the traditional open and free access to OASIS + documents for which license and right have been assigned or obtained according to the procedures set forth in + this section. This warranty is perpetual and will not be revoked by OASIS or its successors or assigns as to any + already adopted OASIS Standards Final Deliverable; provided, however, that neither OASIS nor its assigns shall be + obligated to: + + 1. 13.1.1. Perpetually maintain its existence; nor + + 2. 13.1.2. Provide for the perpetual existence of a website or other public means of accessing OASIS Standards + Final Deliverables; nor + + 3. 13.1.3. Maintain the public availability of any given OASIS Standards Final Deliverable that has been retired or + superseded, or which is no longer being actively utilized in the marketplace. + + 13.2. Where any copyrights, trademarks, patents, patent applications, or other proprietary rights are known, or + claimed, with respect to any OASIS Deliverable and are formally brought to the attention of the OASIS TC + Administrator, OASIS shall consider appropriate action, which may include disclosure of the existence of such + rights, or claimed rights. The OASIS Technical Committee Process shall prescribe the method for providing this + information. + + 1. 13.2.1. OASIS disclaims any responsibility for identifying the existence of or for evaluating the applicability of + any claimed copyrights, trademarks, patents, patent applications, or other rights, and will make no + assurances on the validity or scope of any such rights. + + 2. 13.2.2. Where the OASIS TC Administrator is formally notified of rights, or claimed rights under Section 8.8 with + respect to entities other than Obligated Parties, the OASIS President shall attempt to obtain from the + claimant of such rights a written assurance that any Licensee will be able to obtain the right to utilize, use, + and distribute the technology or works when implementing, using, or distributing technology based upon + the specific OASIS Standards Final Deliverable (or, in the case of an OASIS Standards Draft Deliverable, that + any Licensee will then be able to obtain such a right) under terms that are consistent with this Policy. All + such information will be made available to the TC that produced such deliverable, but the failure to obtain + such written assurance shall not prevent votes from being conducted, except that the OASIS TC + Administrator may defer approval for a reasonable period of time where a delay may facilitate the + obtaining of such assurances. The results will, however, be recorded by the OASIS TC Administrator, and + made available to the public. The OASIS Board of Directors may also direct that a summary of the results be + included in any published OASIS Standards Final Deliverable. + + 3. 13.2.3. Except for the rights expressly provided herein, neither OASIS nor any OASIS Party grants or receives, by + implication, estoppel, or otherwise, any rights under any patents or other intellectual property rights of the + OASIS Party, OASIS, any other OASIS Party, or any third party. + + 13.3. Solely for purposes of Section 365(n) of Title 11, United States Bankruptcy Code, and any equivalent law in any + foreign jurisdiction, the promises under Section 10 will be treated as if they were a license and any OASIS Party or + third-party may elect to retain its rights under this promise if Obligated Party, as a debtor in possession, or a + bankruptcy trustee in a case under the United States Bankruptcy Code, rejects any obligations stated in Section + 10. + + + 14. Required Notice + + 14.1 Documents + Any OASIS Deliverable shall include the following notices replacing [copyright year] with the year or range of years + of publication (bracketed language, other than the date, need only appear in OASIS Standards Final Deliverable + documents): + + Copyright © OASIS Open [copyright year]. All Rights Reserved. + All capitalized terms in the following text have the meanings assigned to them in the OASIS Intellectual Property + + Rights Policy (the "OASIS IPR Policy"). The full Policy may be found at the OASIS website: [http://www.oasisopen.org/policies-guidelines/ipr] + This document and translations of it may be copied and furnished to others, and derivative works that comment + on or otherwise explain it or assist in its implementation may be prepared, copied, published, and distributed, in + whole or in part, without restriction of any kind, provided that the above copyright notice and this section are + included on all such copies and derivative works. However, this document itself may not be modified in any way, + including by removing the copyright notice or references to OASIS, except as needed for the purpose of + developing any document or deliverable produced by an OASIS Technical Committee (in which case the rules + applicable to copyrights, as set forth in the OASIS IPR Policy, must be followed) or as required to translate it into + languages other than English. + The limited permissions granted above are perpetual and will not be revoked by OASIS or its successors or + assigns. + This document and the information contained herein is provided on an “AS IS” basis and OASIS DISCLAIMS ALL + + WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE + INFORMATION HEREIN WILL NOT INFRINGE ANY OWNERSHIP RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY + OR FITNESS FOR A PARTICULAR PURPOSE. OASIS AND ITS MEMBERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, + SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THIS DOCUMENT OR ANY PART THEREOF. + + [OASIS requests that any OASIS Party or any other party that believes it has patent claims that would necessarily + be infringed by implementations of this OASIS Standards Final Deliverable, to notify OASIS TC Administrator and + provide an indication of its willingness to grant patent licenses to such patent claims in a manner consistent with + the IPR Mode of the OASIS Technical Committee that produced this deliverable.] + [OASIS invites any party to contact the OASIS TC Administrator if it is aware of a claim of ownership of any patent + claims that would necessarily be infringed by implementations of this OASIS Standards Final Deliverable by a + patent holder that is not willing to provide a license to such patent claims in a manner consistent with the IPR + Mode of the OASIS Technical Committee that produced this OASIS Standards Final Deliverable. OASIS may include + such claims on its website, but disclaims any obligation to do so.] + + [OASIS takes no position regarding the validity or scope of any intellectual property or other rights that might be + claimed to pertain to the implementation or use of the technology described in this OASIS Standards Final + Deliverable or the extent to which any license under such rights might or might not be available; neither does it + represent that it has made any effort to identify any such rights. Information on OASIS’ procedures with respect + to rights in any document or deliverable produced by an OASIS Technical Committee can be found on the OASIS + website. Copies of claims of rights made available for publication and any assurances of licenses to be made + available, or the result of an attempt made to obtain a general license or permission for the use of such + proprietary rights by implementers or users of this OASIS Standards Final Deliverable, can be obtained from the + OASIS TC Administrator. OASIS makes no representation that any information or list of intellectual property rights + will at any time be complete, or that any claims in such list are, in fact, Essential Claims.] + + + 14.2 Alternative Notice + + Other OASIS Deliverables that are primarily intended for machine rather than human consumption and whose + format requires terse expression may, as an alternative to Section 14.1, include just the short-form notice as follows + replacing [copyright year] with the year or year range of publication: + Copyright © OASIS Open [copyright year]. All Rights Reserved. + Distributed under the terms of the OASIS IPR Policy, [http://www.oasis-open.org/policies-guidelines/ipr], AS-IS, + WITHOUT ANY IMPLIED OR EXPRESS WARRANTY; there is no warranty of MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE or NONINFRINGEMENT of the rights of others. + + 14.3 Additional Copyright Notices + + Additional copyright notices identifying Contributors may also be included with the OASIS copyright notice. + + + Appendix A. Feedback License + + The "OASIS ___________ Technical Committee" is developing technology (the "OASIS ____________ + Deliverable") as defined by its charter and welcomes input, suggestions and other feedback ("Feedback") on the + OASIS ____________ Deliverable. By the act of submitting, you (on behalf of yourself if you are an individual, + and your organization and its Affiliates if you are providing Feedback on behalf of that organization) agree to the + following terms (all capitalized terms are defined in the OASIS Intellectual Property Rights ("IPR") Policy, see + http://www.oasis-open.org/who/intellectualproperty.php): + + 1. Copyright – You (and your represented organization and its Affiliates) grant to OASIS a perpetual, + irrevocable, non-exclusive, royalty-free, worldwide copyright license, with the right to directly and indirectly + sublicense, to copy, publish, and distribute the Feedback in any way, and to prepare derivative works that + are based on or incorporate all or part of the Feedback, solely for the purpose of developing and promoting + the OASIS Deliverable and enabling the implementation of the same by Licensees or Beneficiaries. + + 2. Essential Claims – You covenant to grant a patent license or offer an OASIS Non-Assertion Covenant as + appropriate under any patent claims that you (or your represented organization or its Affiliates) own or + control that become Essential Claims because of the incorporation of such Feedback into the OASIS + Standards Final Deliverable, and any Final Maintenance Deliverable with respect to that OASIS Standards + Final Deliverable, on terms consistent with Section 10 of the OASIS IPR Policy for the IPR Mode specified in the + charter of this OASIS Technical Committee. + + 3. Right to Provide – You warrant to the best of your knowledge that you have rights to provide this Feedback, + and if you are providing Feedback on behalf of an organization, you warrant that you have the rights to + provide Feedback on behalf of your organization and to bind your organization and its Affiliates to the + licensing or non-assertion obligations provided above. + + 4. Confidentiality – You further warrant that no information in this Feedback is confidential, and that OASIS + may freely disclose any information in the Feedback. + + 5. No requirement to Use – You also acknowledge that OASIS is not required to incorporate your Feedback into + any version of this OASIS Deliverable. + Assent of Feedback Provider: By: _________________________ (Signature) Name: + _______________________ Title: ________________________ Organization: ________________ + Date: ________________________ Email: _______________________ + + Appendix B. Copyright License Grant + + The undersigned, on its own behalf and on behalf of its represented organization and its Affiliates, if any, with + respect to their collective copyright ownership rights in the Contribution "__________________," grants to + OASIS a perpetual, irrevocable, non-exclusive, royalty-free, world-wide copyright license, with the right to directly + and indirectly sublicense, to copy, publish, and distribute the Contribution in any way, and to prepare derivative + works that are based on or incorporate all or part of the Contribution solely for the purpose of developing and + promoting the OASIS Deliverable and enabling the implementation of the same by Licensees or Beneficiaries (all + above capitalized terms are defined in the OASIS Intellectual Property Rights ("IPR") Policy, see http://www.oasisopen.org/who/intellectualproperty.php). + + Assent of the Undersigned: By: __________________________ (Signature) Name: + _______________________ Title: ________________________ Organization: ________________ + Date: ________________________ Email: _______________________ + + Historical revisions of this policy + Approved 07/31/2013 + Intellectual Property Rights (IPR) Policy + + Approved 05/02/2012 + Intellectual Property Rights (IPR) Policy (2 May 2012) + + Approved 05/02/2012 + Intellectual Property Rights (IPR) Policy (21 June 2012) + + Approved 07/28/2010 + Intellectual Property Rights (IPR) Policy (28 July 2010) + + Approved 05/19/2009 + IPR (19 May 2009) json: oasis-ipr-2013.json - yml: oasis-ipr-2013.yml + yaml: oasis-ipr-2013.yml html: oasis-ipr-2013.html - text: oasis-ipr-2013.LICENSE + license: oasis-ipr-2013.LICENSE - license_key: oasis-ipr-policy-2014 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-oasis-ipr-policy-2014 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Intellectual Property Rights (IPR) Policy\n\n1. INTRODUCTION\n2. DEFINITIONS\n3. CONFIDENTIALITY\n\ + 4. TC FORMATION\n5. CONTRIBUTIONS\n6. LIMITED PATENT COVENANT FOR SPECIFICATION DEVELOPMENT\n\ + 7. FEEDBACK\n8. DISCLOSURE\n9. TYPES OF OBLIGATIONS\n10. LICENSING REQUIREMENTS\n11. WITHDRAWAL\ + \ AND TERMINATION\n12. LIMITATIONS OF LIABILITY\n13. GENERAL\n14. NOTICES\nAppendix A. Feedback\ + \ License\nAppendix B. Copyright License Grant\n\n1. INTRODUCTION\n\nThe OASIS Intellectual\ + \ Property Rights (IPR) Policy governs the treatment of intellectual property in the production\ + \ of deliverables by OASIS Open (hereafter referred to as OASIS).\n\nThis Policy applies\ + \ to all members of OASIS and their Affiliates (as defined below). The OASIS Board of Directors\ + \ may amend this Policy at any time in its sole discretion. In the event of such change\ + \ to this Policy, the Board will provide instructions for transition of membership and Technical\ + \ Committees to the new Policy; however, no amendment to this Policy will be effective in\ + \ less than 60 calendar days from the date that written notice of such amendment is given\ + \ to the Member at its address of record with OASIS.\n\n2. DEFINITIONS\n\nEach capitalized\ + \ term within this document shall have the meaning provided below:\n\n Affiliate - any\ + \ entity that directly or indirectly controls, is controlled by, or is under common control\ + \ with, another entity, so long as such control exists. In the event that such control ceases\ + \ to exist, such Affiliate will be deemed to have withdrawn from OASIS pursuant to the terms\ + \ set forth in the withdrawal provisions in Section 11. For purposes of this definition,\ + \ with respect to a business entity, control means direct or indirect beneficial ownership\ + \ of or the right to exercise (i) greater than fifty percent (50%) of the voting stock or\ + \ equity in an entity; or (ii) greater than fifty percent (50%) of the ownership interest\ + \ representing the right to make the decisions for the subject entity in the event that\ + \ there is no voting stock or equity.\n Beneficiary - any organization, including its\ + \ Affiliates as defined in this Policy, or individual who benefits from the OASIS Non-Assertion\ + \ Covenant with respect to Essential Claims from Obligated Parties for a particular OASIS\ + \ Standards Final Deliverable. A Beneficiary need not be an OASIS member.\n Continuing\ + \ Licensing or Non-Assertion Obligation - a licensing or non-assertion obligation, of the\ + \ types defined by Section 9 of this Policy, which survives a TC Party's withdrawal from\ + \ an OASIS Technical Committee.\n Contribution - any material submitted to an OASIS Technical\ + \ Committee by a TC Member in writing or electronically, whether in an in-person meeting\ + \ or in any electronic conference or mailing list maintained by OASIS for the OASIS Technical\ + \ Committee and which is or was proposed for inclusion in an OASIS Deliverable.\n Contribution\ + \ Obligation - a licensing or non-assertion requirement, as described in Section 10 that\ + \ results from making a Contribution as described in Section 9.1.\n Contributor - a TC\ + \ Party on whose behalf a Contribution is made by the TC Party's TC Member.\n Covered\ + \ Product - includes only those specific portions of a product (hardware, software or combinations\ + \ thereof) that (a) implement and are compliant with all Normative Portions of an OASIS\ + \ Standards Final Deliverable produced by a Non-Assertion Mode TC that must be implemented\ + \ to comply with such deliverable, and (b) to the extent that the product implements one\ + \ or more optional portions of such deliverable, those portions that implement and are compliant\ + \ with all Normative Portions that must be implemented to comply with such optional portions\ + \ of the deliverable.\n Eligible Person - one of a class of individuals that include:\ + \ persons holding individual memberships in OASIS, employees or designees of organizational\ + \ members of OASIS, and such other persons as may be designated by the OASIS Board of Directors.\n\ + \ Essential Claims - those claims in any patent or patent application in any jurisdiction\ + \ in the world that would necessarily be infringed by an implementation of those portions\ + \ of a particular OASIS Standards Final Deliverable created within the scope of the TC charter\ + \ in effect at the time such deliverable was developed. A claim is necessarily infringed\ + \ hereunder only when it is not possible to avoid infringing it because there is no non-infringing\ + \ alternative for implementing the Normative Portions of that particular OASIS Standards\ + \ Final Deliverable. Existence of a non-infringing alternative shall be judged based on\ + \ the state of the art at the time the OASIS Standards Final Deliverable is approved.\n\ + \ Feedback - any written or electronic input provided to an OASIS Technical Committee\ + \ by individuals who are not TC Members and which is proposed for inclusion in an OASIS\ + \ Deliverable. All such Feedback must be made under the terms of the Feedback License (Appendix\ + \ A).\n Final Maintenance Deliverable - Any OASIS Standards Final Deliverable that results\ + \ entirely from Maintenance Activity.\n IPR Mode - an element of an OASIS TC charter,\ + \ which specifies the type of licenses or non-assertion covenants required for any Essential\ + \ Claims associated with the output produced by a given Technical Committee. This is further\ + \ described in Section 4.\n Licensed Products - include only those specific portions\ + \ of a Licensee's products (hardware, software or combinations thereof) that (a) implement\ + \ and are compliant with all Normative Portions of an OASIS Standards Final Deliverable\ + \ that must be implemented to comply with such deliverable, and (b) to the extent that the\ + \ Licensee's products implement one or more optional portions of such deliverable, those\ + \ portions of Licensee's products that implement and are compliant with all Normative Portions\ + \ that must be implemented to comply with such optional portions of the deliverable.\n \ + \ Licensee - any organization, including its Affiliates as defined in this Policy, or\ + \ individual that licenses Essential Claims from Obligated Parties for a particular OASIS\ + \ Standards Final Deliverable. Licensees need not be OASIS members.\n Maintenance Activity\ + \ - Any drafting or development work to modify an OASIS Standards Final Deliverable that\ + \ (a) constitutes only error corrections, bug fixes or editorial formatting changes to the\ + \ OASIS Standards Final Deliverable; and (b) does not add any feature; and (c) is within\ + \ the scope of the TC that approved the OASIS Standards Final Deliverable (whether or not\ + \ the work is conducted by the same TC).\n Normative Portion - a portion of an OASIS\ + \ Standards Final Deliverable that must be implemented to comply with such deliverable.\ + \ If such deliverable defines optional parts, Normative Portions include those portions\ + \ of the optional part that must be implemented if the implementation is to comply with\ + \ such optional part. Examples and/or reference implementations and other specifications\ + \ or standards that were developed outside the TC and which are referenced in the body of\ + \ a particular OASIS Standards Final Deliverable that may be included in such deliverable\ + \ are not Normative Portions.\n Non-Assertion Mode TC - an OASIS TC that is chartered\ + \ under the Non-Assertion IPR Mode described in Section 4.\n OASIS Deliverable - a work\ + \ product developed by a Technical Committee within the scope of its charter which is enumerated\ + \ in and developed in accordance with the OASIS Technical Committee Process.\n OASIS\ + \ Standards Draft Deliverable - an OASIS Deliverable that has been designated and approved\ + \ by a Technical Committee as an OASIS Standards Draft Deliverable and which is enumerated\ + \ in and developed in accordance with the OASIS Technical Committee Process.\n OASIS\ + \ Standards Final Deliverable - an OASIS Deliverable that has been designated and approved\ + \ by a Technical Committee as an OASIS Standards Final Deliverable and which is enumerated\ + \ in and developed in accordance with the OASIS Technical Committee Process.\n OASIS\ + \ Party - a member of OASIS (i.e., an entity that has executed an OASIS Membership Agreement)\ + \ and its Affiliates.\n OASIS TC Administrator - the person(s) appointed to represent\ + \ OASIS in administrative matters relating to TCs as provided by the OASIS Technical Committee\ + \ Process.\n OASIS Technical Committee (TC) - a group of Eligible Persons formed, and\ + \ whose actions are conducted, according to the provisions of the OASIS Technical Committee\ + \ Process.\n OASIS Technical Committee Process - the \"OASIS OPEN TECHNICAL COMMITTEE\ + \ PROCESS\", as from time to time amended, which describes the operation of Technical Committees\ + \ at OASIS.\n Obligated Party - a TC Party that incurs a licensing or non-assertion obligation\ + \ for its Essential Claims by either a Contribution Obligation or a Participation Obligation.\n\ + \ Participation Obligation - a licensing or non-assertion requirement, as described in\ + \ Section 10, that arises from membership in an OASIS Technical Committee, as described\ + \ in Section 9.2.\n RAND Mode TC - an OASIS TC that is chartered under the RAND IPR Mode\ + \ described in Section 4.\n RF Mode TC - an OASIS TC that is chartered under one of the\ + \ RF IPR Modes described in Section 4.\n TC Member - an Eligible Person who has completed\ + \ the requirements to join a TC during the period in which s/he maintains his or her membership\ + \ as described by the OASIS Technical Committee Process. A TC Member may represent the interests\ + \ of a TC Party in the TC.\n TC Party - an OASIS Party that is, or is represented by,\ + \ a TC Member in the relevant Technical Committee.\n\n3. CONFIDENTIALITY\n\nNeither Contributions\ + \ nor Feedback that are subject to any requirement of confidentiality may be considered\ + \ in any part of the OASIS Technical Committee Process. All Contributions and Feedback will\ + \ therefore be deemed to have been submitted on a non-confidential basis, notwithstanding\ + \ any markings or representations to the contrary, and OASIS shall have no obligation to\ + \ treat any such material as confidential.\n\n4. TC FORMATION\n\nAt the time a TC is chartered,\ + \ the proposal to form the TC must specify the IPR Mode under which the Technical Committee\ + \ will operate. This Policy describes the following IPR Modes:\n\n RAND - requires all\ + \ Obligated Parties to license their Essential Claims using the RAND licensing elements\ + \ described in Section 10.1.\n RF on RAND Terms - requires all Obligated Parties to license\ + \ their Essential Claims using the RF licensing elements described in Sections 10.2.1 and\ + \ 10.2.2.\n RF on Limited Terms - requires all Obligated Parties to license their Essential\ + \ Claims using the RF licensing elements described in Sections 10.2.1 and 10.2.3.\n Non-Assertion\ + \ - requires all Obligated Parties to provide an OASIS Non-Assertion Covenant as described\ + \ in Section 10.3.\n\nA TC may not change its IPR Mode without closing and submitting a\ + \ new charter.\n\n5. CONTRIBUTIONS\n\n5.1 General\n\nAt the time of submission of a Contribution\ + \ for consideration by an OASIS Technical Committee, each named co-Contributor (and its\ + \ respective Affiliates) is deemed to agree to the following terms and conditions and to\ + \ make the following representations (based on the actual knowledge of the TC Member(s)\ + \ making the Contribution, with respect to items 3 - 5 below, inclusive):\n\n OASIS has\ + \ no duty to publish or otherwise use or disseminate any Contribution.\n OASIS may reference\ + \ the name(s) of the Contributor(s) for the purpose of acknowledging and publishing the\ + \ Contribution.\n The Contribution properly identifies any holders of copyright interests\ + \ in the Contribution.\n No information in the Contribution is confidential, and OASIS\ + \ may freely disclose any information in the Contribution.\n There are no limits to the\ + \ Contributor's ability to make the grants, acknowledgments, and agreements required by\ + \ this Policy with respect to such Contribution.\n\n5.2 Copyright Licenses\n\n To the\ + \ extent that a Contributor holds a copyright interest in its Contribution, such Contributor\ + \ grants to OASIS a perpetual, irrevocable, non-exclusive, royalty-free, worldwide copyright\ + \ license, with the right to directly and indirectly sublicense, to copy, publish, and distribute\ + \ the Contribution in any way, and to prepare derivative works that are based on or incorporate\ + \ all or part of the Contribution solely for the purpose of developing and promoting the\ + \ OASIS Deliverable and enabling (subject to the rights of the owners of any Essential Claims)\ + \ the implementation of the same by Licensees or Beneficiaries.\n To the extent that\ + \ a Contribution is subject to copyright by parties that are not Contributors, the submitter(s)\ + \ must provide OASIS with a signed \"Copyright License Grant\" (Appendix B) from each such\ + \ copyright owner whose permission would be required to permit OASIS to exercise the rights\ + \ described in Appendix B.\n\n5.3 Trademarks\n\n Trademarks or service marks that are\ + \ not owned by OASIS shall not be used by OASIS, except as approved by the OASIS Board of\ + \ Directors, to refer to work conducted at OASIS, including the use in the name of an OASIS\ + \ TC, an OASIS Deliverable, or incorporated into such work.\n No OASIS Party may use\ + \ an OASIS trademark or service mark in connection with an OASIS Deliverable or otherwise,\ + \ except in compliance with such license and usage guidelines as OASIS may from time to\ + \ time require.\n\n6. LIMITED PATENT COVENANT FOR DELIVERABLE DEVELOPMENT\n\nTo permit TC\ + \ Members and their TC Parties to develop implementations of OASIS Standards Draft Deliverables\ + \ being developed by a TC, each TC Party represented by a TC Member in a TC, at such time\ + \ that the TC Member joins the TC, grants to each other TC Party in that TC automatically\ + \ and without further action on its part, and on an ongoing basis, a limited covenant not\ + \ to assert any Essential Claims required to implement such OASIS Standards Draft Deliverable\ + \ and covering making or using (but not selling or otherwise distributing) an implementation\ + \ of such OASIS Standards Draft Deliverable, solely for the purpose of testing and developing\ + \ such deliverable and only until either the OASIS Standards Draft Deliverable is approved\ + \ as an OASIS Standards Final Deliverable or the Technical Committee is closed.\n\n7. FEEDBACK\n\ + \n OASIS encourages Feedback to OASIS Deliverables from both OASIS Parties who are not\ + \ TC Parties and the public at large. Feedback will be accepted only under the \"Feedback\ + \ License\" (Appendix A).\n OASIS will require that submitters of Feedback agree to the\ + \ terms of the Feedback License before transmitting submitted Feedback to the Technical\ + \ Committee.\n\n8. DISCLOSURE\n\n Disclosure Obligations - Each TC Party shall disclose\ + \ to OASIS in writing the existence of all patents and/or patent applications owned or claimed\ + \ by such TC Party that are actually known to the TC Member directly participating in the\ + \ TC, and which such TC Member believes may contain any Essential Claims or claims that\ + \ might become Essential Claims upon approval of an OASIS Standards Final Deliverable as\ + \ such document then exists (collectively, \"Disclosed Claims\").\n Disclosure of Third\ + \ Party Patent Claims - Each TC Party whose TC Members become aware of patents or patent\ + \ applications owned or claimed by a third party that contain claims that might become Essential\ + \ Claims upon approval of an OASIS Standards Final Deliverable should disclose them, provided\ + \ that such disclosure is not prohibited by any confidentiality obligation binding upon\ + \ them. It is understood that any TC Party that discloses third party patent claims to OASIS\ + \ does not take a position on the essentiality or relevance of the third party claims to\ + \ the OASIS Standards Final Deliverable in its then-current form.\n\n In both cases (Sections\ + \ 8.1 and 8.2), it is understood and agreed that such TC Party(s)' TC Member(s) do not represent\ + \ that they know of all potentially pertinent claims of patents and patent applications\ + \ owned or claimed by the TC Party or any third parties. For the avoidance of doubt, while\ + \ the disclosure obligation under Sections 8.1 and 8.2 applies directly to all TC Parties,\ + \ this obligation is triggered based on the actual knowledge of the TC Party's TC Members\ + \ regarding the TC Party's patents or patent applications that may contain Essential Claims.\n\ + \ Disclosure Requests - Disclosure requests will be included as described in Section\ + \ 12 with all public review copies of OASIS Standards Final Deliverables. All OASIS Parties\ + \ are encouraged to review such OASIS Standards Final Deliverables and make appropriate\ + \ disclosures.\n Limitations - A disclosure request and the obligation to disclose set\ + \ forth above do not imply any obligations on the recipients of disclosure requests (collectively\ + \ or individually) or on any OASIS Party to perform or conduct patent searches. Nothing\ + \ in this Policy nor the act of receiving a disclosure request for an OASIS Standards Final\ + \ Deliverable, regardless of whether it is responded to, shall be construed or otherwise\ + \ interpreted as any kind of express or implied representation with respect to the existence\ + \ or non-existence of patents or patent applications which contain Essential Claims, other\ + \ than that such TC Party has acted in good faith with respect to its disclosure obligations.\n\ + \ Information - Any disclosure of Disclosed Claims shall include (a) in the case of issued\ + \ patents and published patent applications, the patent or patent application publication\ + \ number, the associated country and, as reasonably practicable, the relevant portions of\ + \ the applicable OASIS Standards Final Deliverable; and (b) in the case of unpublished patent\ + \ applications, the existence of the unpublished application and, as reasonably practicable,\ + \ the relevant portions of the applicable OASIS Standards Final Deliverable.\n\n9. TYPES\ + \ OF OBLIGATIONS\n\n9.1 Contribution Obligation\n\nA TC Party has a Contribution Obligation,\ + \ which arises at the time the Contribution is submitted to a TC, to license or provide\ + \ under non-assertion covenants as appropriate for the IPR mode described in Section 10,\ + \ any claims under its patents or patent applications that become Essential Claims when\ + \ such Contribution is incorporated (either in whole or in part) into (a) the OASIS Standards\ + \ Final Deliverable produced by the TC that received the Contribution, or (b) any Final\ + \ Maintenance Deliverable with respect to that OASIS Standards Final Deliverable.\n\n9.2\ + \ Participation Obligation\n\nA TC Party has a Participation Obligation to license or provide\ + \ under non-assertion covenant as appropriate for the IPR mode, as described in Section\ + \ 10, any claims under its patents or patent applications that would be Essential Claims\ + \ in the then current OASIS Standards Draft Deliverable, if that draft subsequently becomes\ + \ an OASIS Standards Final Deliverable, even if the TC Party is not a Contributor, when\ + \ all of the following conditions are met:\n\n An OASIS Standards Final Deliverable is\ + \ finally approved that incorporates such OASIS Standards Draft Deliverable, either in whole\ + \ or in part;\n The TC Party has been on, or has been represented by TC Member(s) on\ + \ such TC for a total of sixty (60) calendar days, which need not be continuous;\n The\ + \ TC Party is on, or is represented by TC Member(s) on such TC after a period of seven (7)\ + \ calendar days after the ballot to approve such OASIS Standards Draft Deliverable has elapsed.\n\ + \nOnce the foregoing conditions are met, that TC Party's Participation Obligation so to\ + \ license or provide a non-assertion covenant continues with respect to that OASIS Standards\ + \ Final Deliverable, and any Final Maintenance Deliverable subsequently approved with respect\ + \ to that OASIS Standards Final Deliverable.\n\nFor organizational TC Parties, the membership\ + \ threshold is met by one or more employees or organizational designees of such Parties\ + \ having been a TC Member on any 60 calendar days, although any given calendar day is only\ + \ one day of membership, regardless of the number of participants on that day.\n\nEach time\ + \ a new OASIS Standards Draft Deliverable is approved by the TC, the Participation Obligation\ + \ adjusts to encompass the material in the latest OASIS Standards Draft Deliverable seven\ + \ days after such draft has been approved for publication.\n\n10. LICENSING REQUIREMENTS\n\ + \n10.1 RAND Mode TC Requirements\n\nFor an OASIS Standards Final Deliverable developed by\ + \ a RAND Mode TC, except where a Licensee has a separate, signed agreement under which the\ + \ Essential Claims are licensed to such Licensee on more favorable terms and conditions\ + \ than set forth in this section (in which case such separate signed agreement shall supersede\ + \ this Limited Patent License), each Obligated Party in such TC hereby covenants that, upon\ + \ request and subject to Section 11, it will grant to any OASIS Party or third party: a\ + \ nonexclusive, worldwide, non-sublicensable, perpetual patent license (or an equivalent\ + \ non-assertion covenant) under its Essential Claims covered by its Contribution Obligations\ + \ or Participation Obligations on fair, reasonable, and non-discriminatory terms to make,\ + \ have made, use, market, import, offer to sell, and sell, and to otherwise directly or\ + \ indirectly distribute (a) Licensed Products that implement such OASIS Standards Final\ + \ Deliverable, and (b) Licensed Products that implement any Final Maintenance Deliverable\ + \ with respect to that OASIS Standards Final Deliverable. Such license need not extend to\ + \ features of a Licensed Product that are not required to comply with the Normative Portions\ + \ of such OASIS Standards Final Deliverable or Final Maintenance Deliverable. For the sake\ + \ of clarity, the rights set forth above include the right to directly or indirectly authorize\ + \ a third party to make unmodified copies of the Licensee's Licensed Products and to license\ + \ (optionally under the third party's license) the Licensee's Licensed Products within the\ + \ scope of, and subject to the terms of, the Obligated Party's license.\n\nAt the election\ + \ of the Obligated Party, such license may include a term requiring the Licensee to grant\ + \ a reciprocal license to its Essential Claims (if any) covering the same OASIS Standards\ + \ Final Deliverable and any such Final Maintenance Deliverable. Such term may require the\ + \ Licensee to grant licenses to all implementers of such deliverable. The Obligated Party\ + \ may also include a term providing that such license may be suspended with respect to the\ + \ Licensee if that Licensee first sues the Obligated Party for infringement by the Obligated\ + \ Party of any of the Licensee's Essential Claims covering the same OASIS Standards Final\ + \ Deliverable or any such Final Maintenance Deliverable.\n\nLicense terms that are fair,\ + \ reasonable, and non-discriminatory beyond those specifically mentioned above are left\ + \ to the Licensees and Obligated Parties involved.\n\n10.2 RF Mode TC Requirements\n\n10.2.1\ + \ Common\n\nFor an OASIS Standards Final Deliverable developed by an RF Mode TC, except\ + \ where a Licensee has a separate, signed agreement under which the Essential Claims are\ + \ licensed to such Licensee on more favorable terms and conditions than set forth in this\ + \ section (in which case such separate signed agreement shall supersede this Limited Patent\ + \ License), each Obligated Party in such TC hereby covenants that, upon request and subject\ + \ to Section 11, it will grant to any OASIS Party or third party: a nonexclusive, worldwide,\ + \ non-sublicensable, perpetual patent license (or an equivalent non-assertion covenant)\ + \ under its Essential Claims covered by its Contribution Obligations or Participation Obligations\ + \ without payment of royalties or fees, and subject to the applicable Section 10.2.2 or\ + \ 10.2.3, to make, have made, use, market, import, offer to sell, and sell, and to otherwise\ + \ directly or indirectly distribute (a) Licensed Products that implement such OASIS Standards\ + \ Final Deliverable, and (b) Licensed Products that implement any Final Maintenance Deliverable\ + \ with respect to that OASIS Standards Final Deliverable. Such license need not extend to\ + \ features of a Licensed Product that are not required to comply with the Normative Portions\ + \ of such OASIS Standards Final Deliverable or Final Maintenance Deliverable. For the sake\ + \ of clarity, the rights set forth above include the right to directly or indirectly authorize\ + \ a third party to make unmodified copies of the Licensee's Licensed Products and to license\ + \ (optionally under the third party's license) the Licensee's Licensed Products, within\ + \ the scope of, and subject to the terms of, the Obligated Party's license.\n\nAt the election\ + \ of the Obligated Party, such license may include a term requiring the Licensee to grant\ + \ a reciprocal license to its Essential Claims (if any) covering the same OASIS Standards\ + \ Final Deliverable and any such Final Maintenance Deliverable. Such term may require the\ + \ Licensee to grant licenses to all implementers of such deliverable. The Obligated Party\ + \ may also include a term providing that such license may be suspended with respect to the\ + \ Licensee if that Licensee first sues the Obligated Party for infringement by the Obligated\ + \ Party of any of the Licensee's Essential Claims covering the same OASIS Standards Final\ + \ Deliverable and any such Final Maintenance Deliverable.\n\n10.2.2 RF on RAND Terms\n\n\ + With TCs operating under the RF on RAND Terms IPR Mode, license terms that are fair, reasonable,\ + \ and non-discriminatory beyond those specifically mentioned in Section 10.2.1 may also\ + \ be included, and such additional RAND terms are left to the Licensees and Obligated Parties\ + \ involved.\n\n10.2.3 RF on Limited Terms\n\nWith TCs operating under the RF on Limited\ + \ Terms IPR Mode, Obligated Parties may not impose any further conditions or restrictions\ + \ beyond those specifically mentioned in Section 10.2.1 on the use of any technology or\ + \ intellectual property rights, or other restrictions on behavior of the Licensee, but may\ + \ include reasonable, customary terms relating to operation or maintenance of the license\ + \ relationship, including the following: choice of law and dispute resolution.\n\n10.3.\ + \ Non-Assertion Mode TC Requirements\n\n10.3.1. For an OASIS Standards Final Deliverable\ + \ developed by a Non-Assertion Mode TC, and any Final Maintenance Deliverable with respect\ + \ to that OASIS Standards Final Deliverable, each Obligated Party in such TC hereby makes\ + \ the following world-wide \"OASIS Non-Assertion Covenant\".\n\n Each Obligated Party\ + \ in a Non-Assertion Mode TC irrevocably covenants that, subject to Section 10.3.2 and Section\ + \ 11 of the OASIS IPR Policy, it will not assert any of its Essential Claims covered by\ + \ its Contribution Obligations or Participation Obligations against any OASIS Party or third\ + \ party for making, having made, using, marketing, importing, offering to sell, selling,\ + \ and otherwise distributing Covered Products that implement an OASIS Standards Final Deliverable\ + \ developed by that TC and Covered Products that implement any Final Maintenance Deliverable\ + \ with respect to that OASIS Standards Final Deliverable.\n\n10.3.2. The covenant described\ + \ in Section 10.3.1 may be suspended or revoked by the Obligated Party with respect to any\ + \ OASIS Party or third party if that OASIS Party or third party asserts an Essential Claim\ + \ in a suit first brought against, or attempts in writing to assert an Essential Claim against,\ + \ a Beneficiary with respect to a Covered Product that implements the same OASIS Standards\ + \ Final Deliverable or any such Final Maintenance Deliverable.\n\n11. WITHDRAWAL AND TERMINATION\n\ + \nA TC Party may withdraw from a TC at any time by notifying the OASIS TC Administrator\ + \ in writing of such decision to withdraw. Withdrawal shall be deemed effective when such\ + \ written notice is sent.\n\n11.1 Withdrawal from a Technical Committee\n\nA TC Party that\ + \ withdraws from an OASIS Technical Committee shall have Continuing Licensing or Non-Assertion\ + \ Obligations based on its Contribution Obligations and Participation Obligations as follows:\n\ + \n A TC Party that has incurred neither a Contribution Obligation nor a Participation\ + \ Obligation prior to withdrawal has no licensing or non-assertion obligations for OASIS\ + \ Standards Final Deliverable(s) originating from that OASIS TC.\n A TC Party that has\ + \ incurred a Contribution Obligation prior to withdrawal continues to be subject to its\ + \ Contribution Obligation.\n A TC Party that has incurred a Participation Obligation\ + \ prior to withdrawal continues to be subject to its Participation Obligation but only with\ + \ respect to OASIS Standards Draft Deliverable(s) approved more than seven (7) calendar\ + \ days prior to its withdrawal.\n\n11.2 Termination of an OASIS Membership\n\nAn OASIS Party\ + \ that terminates its OASIS membership (voluntarily or involuntarily) is deemed to withdraw\ + \ from all TCs in which that OASIS Party has TC Member(s) representing it, and such OASIS\ + \ Party remains subject to Continuing Licensing or Non-Assertion Obligations for each such\ + \ TC based on its Obligated Party status in that TC on the date that its membership termination\ + \ becomes effective.\n\n12. LIMITATIONS OF LIABILITY\n\nAll OASIS Deliverables are provided\ + \ \"as is\", without warranty of any kind, express or implied, and OASIS, as well as all\ + \ OASIS Parties and TC Members, expressly disclaim any warranty of merchantability, fitness\ + \ for a particular or intended purpose, accuracy, completeness, non-infringement of third\ + \ party rights, or any other warranty.\n\nIn no event shall OASIS or any of its constituent\ + \ parts (including, but not limited to, the OASIS Board of Directors), be liable to any\ + \ other person or entity for any loss of profits, loss of use, direct, indirect, incidental,\ + \ consequential, punitive, or special damages, whether under contract, tort, warranty, or\ + \ otherwise, arising in any way out of this Policy, whether or not such party had advance\ + \ notice of the possibility of such damages.\n\nIn addition, except for grossly negligent\ + \ or intentionally fraudulent acts, OASIS Parties and TC Members (or their representatives),\ + \ shall not be liable to any other person or entity for any loss of profits, loss of use,\ + \ direct, indirect, incidental, consequential, punitive, or special damages, whether under\ + \ contract, tort, warranty, or otherwise, arising in any way out of this Policy, whether\ + \ or not such party had advance notice of the possibility of such damages.\n\nOASIS assumes\ + \ no responsibility to compile, confirm, update or make public any assertions of Essential\ + \ Claims or other intellectual property rights that might be infringed by an implementation\ + \ of an OASIS Deliverable.\n\nIf OASIS at any time refers to any such assertions by any\ + \ owner of such claims, OASIS takes no position as to the validity or invalidity of such\ + \ assertions, or that all such assertions that have or may be made have been referred to.\n\ + \n13. GENERAL\n\n13.1. By ratifying this document, OASIS warrants that it will not inhibit\ + \ the traditional open and free access to OASIS documents for which license and right have\ + \ been assigned or obtained according to the procedures set forth in this section. This\ + \ warranty is perpetual and will not be revoked by OASIS or its successors or assigns as\ + \ to any already adopted OASIS Standards Final Deliverable; provided, however, that neither\ + \ OASIS nor its assigns shall be obligated to:\n\n 13.1.1. Perpetually maintain its existence;\ + \ nor\n 13.1.2. Provide for the perpetual existence of a website or other public means\ + \ of accessing OASIS Standards Final Deliverables; nor\n 13.1.3. Maintain the public\ + \ availability of any given OASIS Standards Final Deliverable that has been retired or superseded,\ + \ or which is no longer being actively utilized in the marketplace.\n\n13.2. Where any copyrights,\ + \ trademarks, patents, patent applications, or other proprietary rights are known, or claimed,\ + \ with respect to any OASIS Deliverable and are formally brought to the attention of the\ + \ OASIS TC Administrator, OASIS shall consider appropriate action, which may include disclosure\ + \ of the existence of such rights, or claimed rights. The OASIS Technical Committee Process\ + \ shall prescribe the method for providing this information.\n\n 13.2.1. OASIS disclaims\ + \ any responsibility for identifying the existence of or for evaluating the applicability\ + \ of any claimed copyrights, trademarks, patents, patent applications, or other rights,\ + \ and will make no assurances on the validity or scope of any such rights.\n 13.2.2.\ + \ Where the OASIS TC Administrator is formally notified of rights, or claimed rights under\ + \ Section 8.8 with respect to entities other than Obligated Parties, the OASIS President\ + \ shall attempt to obtain from the claimant of such rights a written assurance that any\ + \ Licensee will be able to obtain the right to utilize, use, and distribute the technology\ + \ or works when implementing, using, or distributing technology based upon the specific\ + \ OASIS Standards Final Deliverable (or, in the case of an OASIS Standards Draft Deliverable,\ + \ that any Licensee will then be able to obtain such a right) under terms that are consistent\ + \ with this Policy. All such information will be made available to the TC that produced\ + \ such deliverable, but the failure to obtain such written assurance shall not prevent votes\ + \ from being conducted, except that the OASIS TC Administrator may defer approval for a\ + \ reasonable period of time where a delay may facilitate the obtaining of such assurances.\ + \ The results will, however, be recorded by the OASIS TC Administrator, and made available\ + \ to the public. The OASIS Board of Directors may also direct that a summary of the results\ + \ be included in any published OASIS Standards Final Deliverable.\n 13.2.3. Except for\ + \ the rights expressly provided herein, neither OASIS nor any OASIS Party grants or receives,\ + \ by implication, estoppel, or otherwise, any rights under any patents or other intellectual\ + \ property rights of the OASIS Party, OASIS, any other OASIS Party, or any third party.\n\ + \n13.3. Solely for purposes of Section 365(n) of Title 11, United States Bankruptcy Code,\ + \ and any equivalent law in any foreign jurisdiction, the promises under Section 10 will\ + \ be treated as if they were a license and any OASIS Party or third-party may elect to retain\ + \ its rights under this promise if Obligated Party, as a debtor in possession, or a bankruptcy\ + \ trustee in a case under the United States Bankruptcy Code, rejects any obligations stated\ + \ in Section 10.\n\n14. Required Notice\n\n14.1 Documents\n\nAny OASIS Deliverable shall\ + \ include the following notices replacing [copyright year] with the year or range of years\ + \ of publication (bracketed language, other than the date, need only appear in OASIS Standards\ + \ Final Deliverable documents):\n\n Copyright © OASIS Open [copyright year]. All Rights\ + \ Reserved.\n\n All capitalized terms in the following text have the meanings assigned\ + \ to them in the OASIS Intellectual Property Rights Policy (the \"OASIS IPR Policy\"). The\ + \ full Policy may be found at the OASIS website: [http://www.oasis-open.org/policies-guidelines/ipr]\n\ + \n This document and translations of it may be copied and furnished to others, and derivative\ + \ works that comment on or otherwise explain it or assist in its implementation may be prepared,\ + \ copied, published, and distributed, in whole or in part, without restriction of any kind,\ + \ provided that the above copyright notice and this section are included on all such copies\ + \ and derivative works. However, this document itself may not be modified in any way, including\ + \ by removing the copyright notice or references to OASIS, except as needed for the purpose\ + \ of developing any document or deliverable produced by an OASIS Technical Committee (in\ + \ which case the rules applicable to copyrights, as set forth in the OASIS IPR Policy, must\ + \ be followed) or as required to translate it into languages other than English.\n\n \ + \ The limited permissions granted above are perpetual and will not be revoked by OASIS or\ + \ its successors or assigns.\n\n This document and the information contained herein is\ + \ provided on an \"AS IS\" basis and OASIS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,\ + \ INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL\ + \ NOT INFRINGE ANY OWNERSHIP RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS\ + \ FOR A PARTICULAR PURPOSE. OASIS AND ITS MEMBERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT,\ + \ SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THIS DOCUMENT OR ANY PART THEREOF.\n\ + \n [OASIS requests that any OASIS Party or any other party that believes it has patent\ + \ claims that would necessarily be infringed by implementations of this OASIS Standards\ + \ Final Deliverable, to notify OASIS TC Administrator and provide an indication of its willingness\ + \ to grant patent licenses to such patent claims in a manner consistent with the IPR Mode\ + \ of the OASIS Technical Committee that produced this deliverable.]\n\n [OASIS invites\ + \ any party to contact the OASIS TC Administrator if it is aware of a claim of ownership\ + \ of any patent claims that would necessarily be infringed by implementations of this OASIS\ + \ Standards Final Deliverable by a patent holder that is not willing to provide a license\ + \ to such patent claims in a manner consistent with the IPR Mode of the OASIS Technical\ + \ Committee that produced this OASIS Standards Final Deliverable. OASIS may include such\ + \ claims on its website, but disclaims any obligation to do so.]\n\n [OASIS takes no\ + \ position regarding the validity or scope of any intellectual property or other rights\ + \ that might be claimed to pertain to the implementation or use of the technology described\ + \ in this OASIS Standards Final Deliverable or the extent to which any license under such\ + \ rights might or might not be available; neither does it represent that it has made any\ + \ effort to identify any such rights. Information on OASIS' procedures with respect to rights\ + \ in any document or deliverable produced by an OASIS Technical Committee can be found on\ + \ the OASIS website. Copies of claims of rights made available for publication and any assurances\ + \ of licenses to be made available, or the result of an attempt made to obtain a general\ + \ license or permission for the use of such proprietary rights by implementers or users\ + \ of this OASIS Standards Final Deliverable, can be obtained from the OASIS TC Administrator.\ + \ OASIS makes no representation that any information or list of intellectual property rights\ + \ will at any time be complete, or that any claims in such list are, in fact, Essential\ + \ Claims.]\n\n14.2 Alternative Notice\n\nOther OASIS Deliverables that are primarily intended\ + \ for machine rather than human consumption and whose format requires terse expression may,\ + \ as an alternative to Section 14.1, include just the short-form notice as follows replacing\ + \ [copyright year] with the year or year range of publication:\n\n Copyright © OASIS\ + \ Open [copyright year]. All Rights Reserved.\n Distributed under the terms of the OASIS\ + \ IPR Policy, [http://www.oasis-open.org/policies-guidelines/ipr], AS-IS, WITHOUT ANY IMPLIED\ + \ OR EXPRESS WARRANTY; there is no warranty of MERCHANTABILITY, FITNESS FOR A PARTICULAR\ + \ PURPOSE or NONINFRINGEMENT of the rights of others.\n\n14.3 Additional Copyright Notices\n\ + \nAdditional copyright notices identifying Contributors may also be included with the OASIS\ + \ copyright notice.\n\nAppendix A. Feedback License\n\nThe \"OASIS ___________ Technical\ + \ Committee\" is developing technology (the \"OASIS ____________ Deliverable\") as defined\ + \ by its charter and welcomes input, suggestions and other feedback (\"Feedback\") on the\ + \ OASIS ____________ Deliverable. By the act of submitting, you (on behalf of yourself if\ + \ you are an individual, and your organization and its Affiliates if you are providing Feedback\ + \ on behalf of that organization) agree to the following terms (all capitalized terms are\ + \ defined in the OASIS Intellectual Property Rights (\"IPR\") Policy, see http://www.oasis-open.org/who/intellectualproperty.php):\n\ + \n Copyright - You (and your represented organization and its Affiliates) grant to\ + \ OASIS a perpetual, irrevocable, non-exclusive, royalty-free, worldwide copyright license,\ + \ with the right to directly and indirectly sublicense, to copy, publish, and distribute\ + \ the Feedback in any way, and to prepare derivative works that are based on or incorporate\ + \ all or part of the Feedback, solely for the purpose of developing and promoting the OASIS\ + \ Deliverable and enabling the implementation of the same by Licensees or Beneficiaries.\n\ + \ Essential Claims - You covenant to grant a patent license or offer an OASIS Non-Assertion\ + \ Covenant as appropriate under any patent claims that you (or your represented organization\ + \ or its Affiliates) own or control that become Essential Claims because of the incorporation\ + \ of such Feedback into the OASIS Standards Final Deliverable, and any Final Maintenance\ + \ Deliverable with respect to that OASIS Standards Final Deliverable, on terms consistent\ + \ with Section 10 of the OASIS IPR Policy for the IPR Mode specified in the charter of this\ + \ OASIS Technical Committee.\n Right to Provide - You warrant to the best of your\ + \ knowledge that you have rights to provide this Feedback, and if you are providing Feedback\ + \ on behalf of an organization, you warrant that you have the rights to provide Feedback\ + \ on behalf of your organization and to bind your organization and its Affiliates to the\ + \ licensing or non-assertion obligations provided above.\n Confidentiality - You\ + \ further warrant that no information in this Feedback is confidential, and that OASIS may\ + \ freely disclose any information in the Feedback.\n No requirement to Use - You\ + \ also acknowledge that OASIS is not required to incorporate your Feedback into any version\ + \ of this OASIS Deliverable.\n\n Assent of Feedback Provider:\n By: _________________________\ + \ (Signature)\n Name: _______________________\n Title: ________________________ Organization:\ + \ ________________\n Date: ________________________ Email: _______________________\n\n\ + Appendix B. Copyright License Grant\n\nThe undersigned, on its own behalf and on behalf\ + \ of its represented organization and its Affiliates, if any, with respect to their collective\ + \ copyright ownership rights in the Contribution \"__________________,\" grants to OASIS\ + \ a perpetual, irrevocable, non-exclusive, royalty-free, world-wide copyright license, with\ + \ the right to directly and indirectly sublicense, to copy, publish, and distribute the\ + \ Contribution in any way, and to prepare derivative works that are based on or incorporate\ + \ all or part of the Contribution solely for the purpose of developing and promoting the\ + \ OASIS Deliverable and enabling the implementation of the same by Licensees or Beneficiaries\ + \ (all above capitalized terms are defined in the OASIS Intellectual Property Rights (\"\ + IPR\") Policy, see http://www.oasis-open.org/who/intellectualproperty.php).\n\n Assent\ + \ of the Undersigned:\n By: __________________________ (Signature)\n Name: _______________________\n\ + \ Title: ________________________ Organization: ________________\n Date: ________________________\ + \ Email: _______________________\n\nDates\nApproved: \nWed, 2013-07-31\nEffective: \nWed,\ + \ 2014-10-15" json: oasis-ipr-policy-2014.json - yml: oasis-ipr-policy-2014.yml + yaml: oasis-ipr-policy-2014.yml html: oasis-ipr-policy-2014.html - text: oasis-ipr-policy-2014.LICENSE + license: oasis-ipr-policy-2014.LICENSE - license_key: oasis-ws-security-spec + category: Permissive spdx_license_key: LicenseRef-scancode-oasis-ws-security-spec other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Oasis WS Security Specification License + + OASIS takes no position regarding the validity or scope of any intellectual + property or other rights that might be claimed to pertain to the implementation + or use of the technology described in this document or the extent to which any + license under such rights might or might not be available; neither does it + represent that it has made any effort to identify any such rights. Information + on OASIS's procedures with respect to rights in OASIS specifications can be + found at the OASIS website. Copies of claims of rights made available for + publication and any assurances of licenses to be made available, or the result + of an attempt made to obtain a general license or permission for the use of such + proprietary rights by implementors or users of this specification, can be + obtained from the OASIS Executive Director. + + OASIS invites any interested party to bring to its attention any copyrights, + patents or patent applications, or other proprietary rights which may cover + technology that may be required to implement this specification. Please address + the information to the OASIS Executive Director. + + Copyright © OASIS Open 2002-2004. All Rights Reserved. + + This document and translations of it may be copied and furnished to others, and + derivative works that comment on or otherwise explain it or assist in its + implementation may be prepared, copied, published and distributed, in whole or + in part, without restriction of any kind, provided that the above copyright + notice and this paragraph are included on all such copies and derivative works. + However, this document itself does not be modified in any way, such as by + removing the copyright notice or references to OASIS, except as needed for the + purpose of developing OASIS specifications, in which case the procedures for + copyrights defined in the OASIS Intellectual Property Rights document must be + followed, or as required to translate it into languages other than English. + + The limited permissions granted above are perpetual and will not be revoked by + OASIS or its successors or assigns. This document and the information contained + herein is provided on an "AS IS" basis and OASIS DISCLAIMS ALL WARRANTIES, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF + THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF + MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. json: oasis-ws-security-spec.json - yml: oasis-ws-security-spec.yml + yaml: oasis-ws-security-spec.yml html: oasis-ws-security-spec.html - text: oasis-ws-security-spec.LICENSE + license: oasis-ws-security-spec.LICENSE - license_key: ocaml-lgpl-linking-exception + category: Copyleft Limited spdx_license_key: OCaml-LGPL-linking-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "OCaml LGPL Linking Exception\n\nAs a special exception to the GNU Lesser General Public\ + \ License, you may link, \nstatically or dynamically, a \"work that uses the OCaml Core\ + \ System \" with a \npublicly distributed version of the OCaml Core System to produce an\ + \ executable \nfile containing portions of the OCaml Core System , and distribute that \n\ + executable file under terms of your choice, without any of the additional \nrequirements\ + \ listed in clause 6 of the GNU Lesser General Public License. By \n\"a publicly distributed\ + \ version of the OCaml Core System \", we mean either the \nunmodified OCaml Core System\ + \ as distributed by INRIA , or a modified version of \nthe OCaml Core System that is distributed\ + \ under the conditions defined in clause \n2 of the GNU Lesser General Public License. This\ + \ exception does not however \ninvalidate any other reasons why the executable file might\ + \ be covered by the GNU \nLesser General Public License." json: ocaml-lgpl-linking-exception.json - yml: ocaml-lgpl-linking-exception.yml + yaml: ocaml-lgpl-linking-exception.yml html: ocaml-lgpl-linking-exception.html - text: ocaml-lgpl-linking-exception.LICENSE + license: ocaml-lgpl-linking-exception.LICENSE - license_key: ocb-non-military-2013 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ocb-non-military-2013 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + License for Non-Military Software Implementations of OCB + January 10, 2013 + 1 Definitions + 1.1 "Licensor" means Phillip Rogaway. + 1.2 "Licensed Patents" means any patent that claims priority to United States Patent Application No. 09/918,615 entitled "Method and Apparatus for Facilitating Efficient Authenticated Encryption," and any utility, divisional, provisional, continuation, continuations-in-part, reexamination, reissue, or foreign counterpart patents that may issue with respect to the aforesaid patent application. This includes, but is not limited to, United States Patent No. 7,046,802; United States Patent No. 7,200,227; United States Patent No. 7,949,129; United States Patent No. 8,321,675; and any patent that issues out of United States Patent Application No. 13/669,114. + 1.3 "Use" means any practice of any invention claimed in the Licensed Patents. + 1.4 "Military Use" means any Use by, in cooperation with, on behalf of, or paid for by: the U.S. Department of Defense; U.S. Armed Forces (including the Army, Navy, Marines, Air Force, and Coast Guard); U.S. Department of Energy; U.S. Department of Homeland Security; U.S. intelligence agencies (including reconnaissance agencies); or foreign counterparts of these organizations. + 1.5 "Research Use" means any Use by an accredited academic institution, by a commercial research laboratory, or by an employee or student of such an institution when such Use is made in the course of their employment or studies. + 1.6 "Noncommercial Use" means any Use that is not intended for or directed toward commercial advantage or private monetary compensation. + 1.7 "Software Implementation" means any practice of any invention claimed in the Licensed Patents that takes the form of software executing on a userprogrammable, general-purpose computer or that takes the form of a computerreadable medium storing such software. Software Implementation does not include, for example, application-specific integrated circuits (ASICs), fieldprogrammable gate arrays (FPGAs), embedded systems, or IP cores. + 2 License Grant + 2.1 License. Subject to your compliance with the terms of this license, including the restrictions set forth in Section 2.2, Licensor hereby grants to you a perpetual, worldwide, non-exclusive, non-transferable, non-sublicenseable, no-charge, royalty-free, irrevocable license to practice any invention claimed in the Licensed Patents (i) for any Research Use, (ii) for any Noncommercial Use, and (iii) in any Software Implementation. + 2.2 Restrictions + + 2.2.1 The license above does not apply to and no license is granted for any Military Use of the Licensed Patents. + + 2.2.2 + + The license above does not apply to and no license is granted for any Software Implementation that does not include the full text of this license in user-readable source code or documentation. The requirement of this paragraph may be satisfied by presenting the full text of this license to end users during software installation. + + 2.2.3 + + If you or your affiliates institute patent litigation (including, but not limited to, a cross-claim or counterclaim in a lawsuit) against any entity alleging that any Use authorized by this license infringes another patent, then any rights granted to you under this license automatically terminate as of the date such litigation is filed. + + 3 Disclaimer + + YOUR USE OF THE LICENSED PATENTS IS AT YOUR OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELATED TO ANY USE OF THE LICENSED PATENTS, INCLUDING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. json: ocb-non-military-2013.json - yml: ocb-non-military-2013.yml + yaml: ocb-non-military-2013.yml html: ocb-non-military-2013.html - text: ocb-non-military-2013.LICENSE + license: ocb-non-military-2013.LICENSE - license_key: ocb-open-source-2013 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ocb-open-source-2013 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + License for Open Source Software Implementations of OCB + January 9, 2013 + 1 Definitions + 1.1 "Licensor" means Phillip Rogaway. + 1.2 "Licensed Patents" means any patent that claims priority to United States Patent Application No. 09/918,615 entitled "Method and Apparatus for Facilitating Efficient Authenticated Encryption," and any utility, divisional, provisional, continuation, continuations-in-part, reexamination, reissue, or foreign counterpart patents that may issue with respect to the aforesaid patent application. This includes, but is not limited to, United States Patent No. 7,046,802; United States Patent No. 7,200,227; United States Patent No. 7,949,129; United States Patent No. 8,321,675; and any patent that issues out of United States Patent Application No. 13/669,114. + 1.3 "Use" means any practice of any invention claimed in the Licensed Patents. + 1.4 "Software Implementation" means any practice of any invention claimed in the Licensed Patents that takes the form of software executing on a userprogrammable, general-purpose computer or that takes the form of a computerreadable medium storing such software. Software Implementation does not include, for example, application-specific integrated circuits (ASICs), fieldprogrammable gate arrays (FPGAs), embedded systems, or IP cores. + 1.5 "Open Source Software" means software whose source code is published and made available for inspection and use by anyone because either (a) the source code is subject to a license that permits recipients to copy, modify, and distribute the source code without payment of fees or royalties, or (b) the source code is in the public domain, including code released for public use through a CC0 waiver. All licenses certified by the Open Source Initiative at opensource.org as of January 9, 2013 and all Creative Commons licenses identified on the creativecommons.org website as of January 9, 2013, including the Public License Fallback of the CC0 waiver, satisfy these requirements for the purposes of this license. + 1.6 "Open Source Software Implementation" means a Software Implementation in which the software implicating the Licensed Patents is Open Source Software. Open Source Software Implementation does not include any Software Implementation in which the software implicating the Licensed Patents is combined, so as to form a larger program, with software that is not Open Source Software. + 2 License Grant + 2.1 License. Subject to your compliance with the terms of this license, including the restriction set forth in Section 2.2, Licensor hereby grants to you a perpetual, worldwide, non-exclusive, non-transferable, non-sublicenseable, no-charge, + royalty-free, irrevocable license to practice any invention claimed in the Licensed Patents in any Open Source Software Implementation. + 2.2 Restriction. If you or your affiliates institute patent litigation (including, but not limited to, a cross-claim or counterclaim in a lawsuit) against any entity alleging that any Use authorized by this license infringes another patent, then any rights granted to you under this license automatically terminate as of the date such litigation is filed. + 3 Disclaimer + YOUR USE OF THE LICENSED PATENTS IS AT YOUR OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELATED TO ANY USE OF THE LICENSED PATENTS, INCLUDING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. json: ocb-open-source-2013.json - yml: ocb-open-source-2013.yml + yaml: ocb-open-source-2013.yml html: ocb-open-source-2013.html - text: ocb-open-source-2013.LICENSE + license: ocb-open-source-2013.LICENSE - license_key: ocb-patent-openssl-2013 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ocb-patent-openssl-2013 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Patent License for OpenSSL + 1. Definitions + 1.1 " Licensor" means Phillip Rogaway. orOne Shields Avenue, Davis, CA 95616-8562. + 1.2 " Licensed Patents" means any patent that claims priority to United States Patent Application No. 09/918 ,615 entitled "Method and Apparatus for Facilitating Efficient Authenticated Encryption," and any utili ty, divisional, provisional, continuation, continuat ions in part, reexami nation , reissue, or foreign counterpart patents that may issue with respect to the aforesaid patent application. This includes, but is not limited to, Uni ted States Patent No. 7,046,802; United States Palen I No. 7,200,227; United States Patent No. 7,949, 129; United States Patent No.8 ,321 ,675; and any patent that issues out or Uni ted States Patent Application No. 13/669, 114. + 1.3 " Use in OpenSSL" means using, making, copying, modifying, distribu ting, having made, importing or having imported any program, software, or computer system containing or based upon the OpenSSL toolkit, but does not include any imp lementation of the Licensed Patents that is unrelated to the OpenSSL toolkit. + 1.4 "Licensee" means the OpenSSL Software Foundation, at 1829 Mount Ephraim Road, Adamstown , MD 21710, its affiliates, assignees. or sllccessors in interest, or anyone using, making, copying, modifying, di stributing, having made, importing, or having imported any program, software, or computer system including or based upon the OpenSSL toolkit, or their customers, supp liers, importers, manufacturers, distributors, or insurers. + 2, Grant of License + 2.1 Licensor hereby grants to Licensee a perpetual, worldwide, non-exclusive, nontransferable, non-sublicenseable, no-charge, royalty-free, irrevocab le license to Use in OpenSSL any invention claimed in the Licensed Patents. + 3. Disclaimer + 3. 1 LICENSEE'S USE OF THE LICENSED PATENTS IS AT LICENSEE'S OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNfNG THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDfNG, WITHOUT LIM ITATION, WARRANTIES OF TITLE, MERCHANTIB ILlTY, FITNESS FOR A PARTICULAR PURPOSE, OR NON INFRfNGEMENT. fN NO EVENT W ILL LICENSOR BE LIABLE FOR ANY CLA IM, DAMAGES OR OTHER + LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELAT ED TO ANY USE OF THE LICENSED PATENTS, INCLUD ING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADV ISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. + Dated: November 13, 2013 + Phillip Rogaway json: ocb-patent-openssl-2013.json - yml: ocb-patent-openssl-2013.yml + yaml: ocb-patent-openssl-2013.yml html: ocb-patent-openssl-2013.html - text: ocb-patent-openssl-2013.LICENSE + license: ocb-patent-openssl-2013.LICENSE - license_key: occt-exception-1.0 + category: Copyleft Limited spdx_license_key: OCCT-exception-1.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + Open CASCADE Exception (version 1.0) to GNU LGPL version 2.1. + + The object code (i.e. not a source) form of a "work that uses the Library" can incorporate material from a header file that is part of the Library. As a special exception to the GNU Lesser General Public License version 2.1, you may distribute such object code incorporating material from header files provided with the Open CASCADE Technology libraries (including code of CDL generic classes) under terms of your choice, provided that you give prominent notice in supporting documentation to this code that it makes use of or is based on facilities provided by the Open CASCADE Technology software. json: occt-exception-1.0.json - yml: occt-exception-1.0.yml + yaml: occt-exception-1.0.yml html: occt-exception-1.0.html - text: occt-exception-1.0.LICENSE + license: occt-exception-1.0.LICENSE - license_key: occt-pl + category: Copyleft Limited spdx_license_key: OCCT-PL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Open CASCADE Technology Public License \nVersion 6.6, April 2013\nOPEN CASCADE releases\ + \ and makes publicly available the source code of the software Open CASCADE Technology to\ + \ the free software development community under the terms and conditions of this license.\n\ + \nIt is not the purpose of this license to induce you to infringe any patents or other property\ + \ right claims or to contest validity of any such claims; this license 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.\n\nPlease\ + \ read this license carefully and completely before downloading this software. By downloading,\ + \ using, modifying, distributing and sublicensing this software, you indicate your acceptance\ + \ to be bound by the terms and conditions of this license. If you do not want to accept\ + \ or cannot accept for any reasons the terms and conditions of this license, please do not\ + \ download or use in any manner this software. \n \n1. Definitions\n\nUnless there is something\ + \ in the subject matter or in the context inconsistent therewith, the capitalized terms\ + \ used in this License shall have the following meaning.\n\n\"Applicable Intellectual Property\ + \ Rights\" means (a) with respect to the Initial Developer, any rights under patents or\ + \ patents applications or other intellectual property rights that are now or hereafter acquired,\ + \ owned by or assigned to the Initial Developer and that cover subject matter contained\ + \ in the Original Code, but only to the extent necessary to use, reproduce, modify, distribute\ + \ or sublicense the Original Code without infringement; and (b) with respect to You or any\ + \ Contributor, any rights under patents or patents applications or other intellectual property\ + \ rights that are now or hereafter acquired, owned by or assigned to You or to such Contributor\ + \ and that cover subject matter contained in Your Modifications or in such Contributor's\ + \ Modifications, taken alone or in combination with Original Code.\n\n\"Contributor\" means\ + \ each individual or legal entity that creates or contributes to the creation of any Modification,\ + \ including the Initial Developer.\n\n\"Derivative Program\": means a new program combining\ + \ the Software or portions thereof with other source code not governed by the terms of this\ + \ License.\n\n\"Initial Developer\": means OPEN CASCADE, with main offices at 1, place des\ + \ Frères Montgolfier, 78280, Guyancourt, France.\n\n\"Modifications\": mean any addition\ + \ to, deletion from or change to the substance or the structure of the Software. When source\ + \ code of the Software is released as a series of files, a Modification is: (a) any addition\ + \ to, deletion from or change to the contents of a file containing the Software or (b) any\ + \ new file or other representation of computer program statements that contains any part\ + \ of the Software. By way of example, Modifications include any debug of, or improvement\ + \ to, the Original Code or any of its components or portions as well as its next versions\ + \ or releases thereof.\n\n\"Original Code\": means (a) the source code of the software Open\ + \ CASCADE Technology originally made available by the Initial Developer under this License,\ + \ including the source code of any updates or upgrades of the Original Code and (b) the\ + \ object code compiled from such source code and originally made available by Initial Developer\ + \ under this License.\n\n\"Software\": means the Original Code, the Modifications, the combination\ + \ of Original Code and any Modifications or any respective portions thereof.\n\n\"You\"\ + \ or \"Your\": means an individual or a legal entity exercising rights under this License\ + \ \n \n2. Acceptance of license \nBy using, reproducing, modifying, distributing or sublicensing\ + \ the Software or any portion thereof, You expressly indicate Your acceptance of the terms\ + \ and conditions of this License and undertake to act in accordance with all the provisions\ + \ of this License applicable to You. \n \n3. Scope and purpose \nThis License applies to\ + \ the Software and You may not use, reproduce, modify, distribute, sublicense or circulate\ + \ the Software, or any portion thereof, except as expressly provided under this License.\ + \ Any attempt to otherwise use, reproduce, modify, distribute or sublicense the Software\ + \ is void and will automatically terminate Your rights under this License. \n \n4. Contributor\ + \ license \nSubject to the terms and conditions of this License, the Initial Developer and\ + \ each of the Contributors hereby grant You a world-wide, royalty-free, irrevocable and\ + \ non-exclusive license under the Applicable Intellectual Property Rights they own or control,\ + \ to use, reproduce, modify, distribute and sublicense the Software provided that:\n\nYou\ + \ reproduce in all copies of the Software the copyright and other proprietary notices and\ + \ disclaimers of the Initial Developer as they appear in the Original Code and attached\ + \ hereto as Schedule \"A\" and any other notices or disclaimers attached to the Software\ + \ and keep intact all notices in the Original Code that refer to this License and to the\ + \ absence of any warranty;\n\nYou include a copy of this License with every copy of the\ + \ Software You distribute;\n\nIf you distribute or sublicense the Software (as modified\ + \ by You or on Your behalf as the case may be), You cause such Software to be licensed as\ + \ a whole, at no charge, to all third parties, under the terms and conditions of the License,\ + \ making in particular available to all third parties the source code of the Software;\n\ + \nYou document all Your Modifications, indicate the date of each such Modification, designate\ + \ the version of the Software You used, prominently include a file carrying such information\ + \ with respect to the Modifications and duplicate the copyright and other proprietary notices\ + \ and disclaimers attached hereto as Schedule \"B\" or any other notices or disclaimers\ + \ attached to the Software with your Modifications.\n\nFor greater certainty, it is expressly\ + \ understood that You may freely create Derivative Programs (without any obligation to publish\ + \ such Derivative Program) and distribute same as a single product. In such case, You must\ + \ ensure that all the requirements of this License are fulfilled for the Software or any\ + \ portion thereof.\n\n5. Your license \nYou hereby grant all Contributors and anyone who\ + \ becomes a party under this License a world-wide, non-exclusive, royalty-free and irrevocable\ + \ license under the Applicable Intellectual Property Rights owned or controlled by You,\ + \ to use, reproduce, modify, distribute and sublicense all Your Modifications under the\ + \ terms and conditions of this License.\n\n6. Software subject to license \nYour Modifications\ + \ shall be governed by the terms and conditions of this License. You are not authorized\ + \ to impose any other terms or conditions than those prevailing under this License when\ + \ You distribute and/or sublicense the Software, save and except as permitted under Section\ + \ 7 hereof.\n\n7. Additional terms \nYou may choose to offer, on a non-exclusive basis,\ + \ and to charge a fee for any warranty, support, maintenance, liability obligations or other\ + \ rights consistent with the scope of this License with respect to the Software (the \"\ + Additional Terms\") to the recipients of the Software. However, You may do so only on Your\ + \ own behalf and on Your sole and exclusive responsibility. You must obtain the recipient's\ + \ agreement that any such Additional Terms are offered by You alone, and You hereby agree\ + \ to indemnify, defend and hold the Initial Developer and any Contributor harmless for any\ + \ liability incurred by or claims asserted against the Initial Developer or any Contributors\ + \ with respect to any such Additional Terms.\n\n8. Disclaimer of warranty \nThe Software\ + \ is provided under this License on an \"as is\" basis, without warranty of any kind, including\ + \ without limitation, warranties that the Software is free of defects, merchantable, fit\ + \ for a particular purpose or non-infringing. The entire risk as to the quality and performance\ + \ of the Software is with You.\n\n9. Liability \nUnder no circumstances shall You, the Initial\ + \ Developer or any Contributor be liable to any person for any direct or indirect damages\ + \ of any kind including, without limitation, damages for loss of goodwill, loss of data,\ + \ work stoppage, computer failure or malfunction or any and all other commercial damages\ + \ or losses resulting from or relating to this License or indirectly to the use of the Software.\n\ + \n10. Trademark \nThis License does not grant any rights to use the trademarks, trade names\ + \ and domain names \"MATRA\", \"EADS Matra Datavision\", \"CAS.CADE\", \"Open CASCADE\"\ + , \"opencascade.com\" and \"opencascade.org\" or any other trademarks, trade names or domain\ + \ names used or owned by the Initial Developer.\n\n11. Copyright \nThe Initial Developer\ + \ retains all rights, title and interest in and to the Original Code. You may not remove\ + \ the copyright © notice which appears when You download the Software.\n\n12. Term \nThis\ + \ License is granted to You for a term equal to the remaining period of protection covered\ + \ by the intellectual property rights applicable to the Original Code.\n\n13. Termination\ + \ \nIn case of termination, as provided in Section 3 above, You agree to immediately stop\ + \ any further use, reproduction, modification, distribution and sublicensing of the Software\ + \ and to destroy all copies of the Software that are in Your possession or control. All\ + \ sublicenses of the Software which have been properly granted prior to termination shall\ + \ survive any termination of this License. In addition, Sections 5, 8 to 11, 13.2 and 15.2\ + \ of this License, in reason of their nature, shall survive the termination of this License\ + \ for a period of fifteen (15) years.\n\n14. Versions of the license \nThe Initial Developer\ + \ may publish new versions of this License from time to time. Once Original Code has been\ + \ published under a particular version of this License, You may choose to continue to use\ + \ it under the terms and conditions of that version or use the Original Code under the terms\ + \ of any subsequent version of this License published by the Initial Developer.\n\n15. Miscellaneous\ + \ \n15.1 Relationship of the Parties This License will not be construed as creating an agency,\ + \ partnership, joint venture or any other form of legal association between You and the\ + \ Initial Developer, and You will not represent to the contrary, whether expressly, by implication\ + \ or otherwise.\n\n15.2 Independent Development Nothing in this License will impair the\ + \ Initial Developer's right to acquire, license, develop, have others develop for it, market\ + \ or distribute technology or products that perform the same or similar functions as, or\ + \ otherwise compete with, Modifications, Derivative Programs, technology or products that\ + \ You may develop, produce, market or distribute.\n\n15.3 Severability If for any reason\ + \ a court of competent jurisdiction finds any provision of this License, or portion thereof,\ + \ to be unenforceable, that provision of the License will be enforced to the maximum extent\ + \ permissible so as to effect the economic benefits and intent of the parties, and the remainder\ + \ of this License will continue in full force and extent.\n\nEND OF THE TERMS AND CONDITIONS\ + \ OF THIS LICENSE\n\nOPEN CASCADE is a French société par actions simplifiée having its\ + \ registered head office at 1, place des Frères Montgolfier, 78280, Guyancourt, France and\ + \ main offices at 1, place des Frères Montgolfier, 78280, Guyancourt, France. Its web site\ + \ is located at the following address opencascade.com\n\nOpen CASCADE Technology Public\ + \ License \nSchedule \"A\"\n\nThe content of this file is subject to the Open CASCADE Technology\ + \ Public License (the \"License\"). You may not use the content of this file except in compliance\ + \ with the License. Please obtain a copy of the License at opencascade.com and read it completely\ + \ before using this file.\n\nThe Initial Developer of the Original Code is OPEN CASCADE,\ + \ with main offices at 1, place des Frères Montgolfier, 78280, Guyancourt, France. The Original\ + \ Code is copyright © OPEN CASCADE SAS, 2001. All rights reserved. \"The Original Code and\ + \ all software distributed under the License are distributed on an \"AS IS\" basis, without\ + \ warranty of any kind, and the Initial Developer hereby disclaims all such warranties,\ + \ including without limitation, any warranties of merchantability, fitness for a particular\ + \ purpose or non-infringement.\n\nPlease see the License for the specific terms and conditions\ + \ governing rights and limitations under the License\". \nEnd of Schedule \"A\"\n\nOpen\ + \ CASCADE Technology Public License \nSchedule \"B\"\n\n\"The content of this file is subject\ + \ to the Open CASCADE Technology Public License (the \"License\"). You may not use the content\ + \ of this file except in compliance with the License. Please obtain a copy of the License\ + \ at opencascade.com and read it completely before using this file.\n\nThe Initial Developer\ + \ of the Original Code is OPEN CASCADE, with main offices at 1, place des Frères Montgolfier,\ + \ 78280, Guyancourt, France. The Original Code is copyright © Open CASCADE SAS, 2001. All\ + \ rights reserved.\n\nModifications to the Original Code have been made by . Modifications\ + \ are copyright © [Year to be included]. All rights reserved.\n\nThe software Open CASCADE\ + \ Technology and all software distributed under the License are distributed on an \"AS IS\"\ + \ basis, without warranty of any kind, and the Initial Developer hereby disclaims all such\ + \ warranties, including without limitation, any warranties of merchantability, fitness for\ + \ a particular purpose or non-infringement.\n\nPlease see the License for the specific terms\ + \ and conditions governing rights and limitations under the License\" \nEnd of Schedule\ + \ \"B\"" json: occt-pl.json - yml: occt-pl.yml + yaml: occt-pl.yml html: occt-pl.html - text: occt-pl.LICENSE + license: occt-pl.LICENSE - license_key: oclc-1.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-oclc-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + OCLC Research Public License 1.0 + Terms & Conditions Of Use + November, 2000 + Copyright © 2000. OCLC Research. All Rights Reserved + + PLEASE READ THIS DOCUMENT CAREFULLY. BY DOWNLOADING OR USING THE CODE BASE AND DOCUMENTATION ACCOMPANYING THIS LICENSE (THE "License"), YOU AGREE TO THE FOLLOWING TERMS AND CONDITIONS OF THIS LICENSE. + Section One: Your Rights + + Subject to these terms and conditions of this License, the OCLC Office of Research (the "Original Contributor") and each subsequent contributor (collectively with the Original Contributor, the "Contributors") hereby grants you a non-exclusive, worldwide, no-charge, transferable, copyright license to execute, prepare derivative works of, and distribute (internally and externally), for commercial and noncommercial purposes, the original code contributed by Original Contributor and all Modifications (collectively called the "Program"). + + This non-exclusive license (with respect to the grant from a particular Contributor) automatically terminates for any entity that initiates legal action for intellectual property infringement against such Contributor as of the initiation of such action. + Section Two: Your License Grant + + If you make a Modification and distribute it externally you are a Contributor, and you must provide such Modification in source code form to the Original Contributor within thirty (30) days of such distribution under the terms of the license in Section 1 above in accordance with the instructions below. A "Modification" to the Program is any addition to or deletion from the contents of any file of the Program or of any Modifications and any new file that contains any part of the Program or of any Modifications. + + As a Contributor you represent that your contributions are your original creation(s) and, to the best of your knowledge, no third party has any claim (including but not limited to intellectual property claims) relating to your Modification. You represent that your contribution submission includes complete details of any license or other restriction associated with any part of your Modification (including a copy of any applicable license agreement). + + If, after submitting your contribution, you learn of a third party claim or other restriction relating to your contribution, you shall promptly modify your contribution submission and take all reasonable steps to inform those who may have received the Program containing such Modification. + Section Three: Redistribution + + If you distribute the Program or any derivative work of the Program in a form to which the recipient can make Modifications, you must ensure that the recipient of the Program or derivative work of the Program accepts the terms of this License with respect to the Program and any Modifications included your distribution. In addition, in each source and data file of the Program and any Modification you distribute must contain the following: + + "The contents of this file, as updated from time to time by the OCLC Office of Research, are subject to OCLC Research Public License Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a current copy of the License at http://purl.oclc.org/oclc/research/ORPL/. + + Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. + + This software consists of voluntary contributions made by many individuals on behalf of OCLC Research. For more information on OCLC Research, please see http://www.oclc.org/oclc/research/. + + The Original Code is . + + The Initial Developer of the Original Code is . Portions created by are Copyright (C) . All Rights Reserved. + + Contributor(s): ." + + If you redistribute the Program or any derivative work of the Program in a form to which the recipient can not make Modifications, you must include the following in appropriate and conspicuous locations: + + "Includes software, which is Copyright (c) 2000- (insert then current year) OCLC OCLC Research and others. All rights reserved." + + Any redistribution must be made without any further restriction on the recipient's exercise of the rights granted herein. + Section Four: Termination + + If you fail to comply with this License, your rights (but not your obligations) under this License shall terminate automatically unless you cure such breach within thirty days of becoming aware of the noncompliance. All sublicenses granted by you which preexist such termination and are properly granted shall survive such termination. + Section Five: Other Terms + + Except for the copyright notices required above or as otherwise agreed in writing, you may not use any trademark of any of the Contributors. + + All transfers of the Program or any part thereof shall be made in compliance with U.S. Trade regulations or other restrictions of the U.S. Department of Commerce, as well as other similar trade or commerce restrictions which might apply. + + Any patent obtained by any party covering the Program or any part thereof must include a provision providing for the free, perpetual and unrestricted commercial and noncommercial use by any third party. + + 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. + + YOU AGREE THAT THE PROGRAM IS PROVIDED AS-IS, WITHOUT WARRANTY OF ANY KIND (EITHER EXPRESS OR IMPLIED) INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTY OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND ANY WARRANTY OF NON INFRINGEMENT. IN NO EVENT SHALL THE 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 THE PROGRAM, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + The Original Contributor from time to time may change this License, and the amended license will apply to all copies of the Program downloaded after the new license is posted. This License provides you no implied rights or licenses to the intellectual property of any Contributor. json: oclc-1.0.json - yml: oclc-1.0.yml + yaml: oclc-1.0.yml html: oclc-1.0.html - text: oclc-1.0.LICENSE + license: oclc-1.0.LICENSE - license_key: oclc-2.0 + category: Copyleft Limited spdx_license_key: OCLC-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "OCLC Research Public License 2.0\nTerms & Conditions Of Use\nMay, 2002\nCopyright (C)\ + \ 2002. OCLC Research. All Rights Reserved\n \nPLEASE READ THIS DOCUMENT CAREFULLY. BY DOWNLOADING\ + \ OR USING THE CODE BASE \nAND/OR DOCUMENTATION ACCOMPANYING THIS LICENSE (THE \"License\"\ + ), YOU AGREE TO \nTHE FOLLOWING TERMS AND CONDITIONS OF THIS LICENSE. \n\nSection 1.\tYour\ + \ Rights\n\n\tSubject to these terms and conditions of this License, the OCLC Office of\ + \ Research (the \n\"Original Contributor\") and each subsequent contributor (collectively\ + \ with the Original Contributor, the \n\"Contributors\") hereby grant you a non-exclusive,\ + \ worldwide, no-charge, transferable license to execute, \nprepare derivative works of,\ + \ and distribute (internally and externally), for commercial and noncommercial \npurposes,\ + \ the original code contributed by Original Contributor and all Modifications (collectively\ + \ called \nthe \"Program\").\n\nSection 2.\tDefinitions \n\nA \"Modification\" to the Program\ + \ is any addition to or deletion from the contents of any file of \nthe Program and any\ + \ new file that contains any part of the Program. If you make a Modification and \ndistribute\ + \ the Program externally you are a \"Contributor.\" The distribution of the Program must\ + \ be under \nthe terms of this license including those in Section 3 below. \n\nA \"Combined\ + \ Work\" results from combining and integrating all or parts of the Program with \nother\ + \ code. A Combined Work may be thought of as having multiple parents or being result of\ + \ multiple \nlines of code development. \n\nSection 3.\tDistribution Licensing Terms \n\n\ + A.\tGeneral Requirements\n\nExcept as necessary to recognize third-party rights or third-party\ + \ restriction (see \nbelow), a distribution of the Program in any of the forms listed below\ + \ must not put any \nfurther restrictions on the recipient's exercise of the rights granted\ + \ herein.\n\nAs a Contributor, you represent that your Modification(s) are your original\ + \ creation(s) \nand, to the best of your knowledge, no third party has any claim (including\ + \ but not \nlimited to intellectual property claims) relating to your Modification(s). You\ + \ represent \nthat each of your Modifications includes complete details of any third-party\ + \ right or \nother third-party restriction associated with any part of your Modification\ + \ (including a \ncopy of any applicable license agreement).\n\nThe Program must be distributed\ + \ without charge beyond the costs of physically \ntransferring the files to the recipient.\n\ + \nThis Warranty Disclaimer/Limitation of Liability must be prominently displayed with \n\ + every distribution of the Program in any form:\n\nYOU AGREE THAT THE PROGRAM IS PROVIDED\ + \ AS-IS, WITHOUT WARRANTY \nOF ANY KIND (EITHER EXPRESS OR IMPLIED). ACCORDINGLY, OCLC\ + \ MAKES \nNO WARRANTIES, REPRESENTATIONS OR GUARANTEES, EITHER EXPRESS \nOR IMPLIED, AND\ + \ DISCLAIMS ALL SUCH WARRANTIES, REPRESENTATIONS OR \nGUARANTEES, INCLUDING, WITHOUT LIMITATION,\ + \ THE IMPLIED WARRANTIES \nOF MERCHANTABILITY AND FITNESS FOR ANY PARTICULAR PURPOSE, AS\ + \ TO: \n(A) THE FUNCTIONALITY OR NONINFRINGEMENT OF PROGRAM, ANY \nMODIFICATION, A COMBINED\ + \ WORK OR AN AGGREGATE WORK; OR (B) THE \nRESULTS OF ANY PROJECT UNDERTAKEN USING THE PROGRAM,\ + \ ANY \nMODIFICATION, A COMBINED WORK OR AN AGGREGATE WORK. IN NO EVENT \nSHALL THE CONTRIBUTORS\ + \ BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, CONSEQUENTIAL OR\ + \ ANY OTHER \nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE \nGOODS\ + \ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS \nINTERRUPTION) HOWEVER CAUSED\ + \ AND ON ANY THEORY OF LIABILITY, \nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\ + \ \nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THE \nPROGRAM, EVEN IF\ + \ ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. YOU \nHEREBY WAIVE ANY CLAIMS FOR DAMAGES\ + \ OF ANY KIND AGAINST \nCONTRIBUTORS WHICH MAY RESULT FROM YOUR USE OF THE PROGRAM.\n\n\ + B.\tRequirements for a Distribution of Modifiable Code \n\nIf you distribute the Program\ + \ in a form to which the recipient can make Modifications \n(e.g. source code), the terms\ + \ of this license apply to use by recipient. In addition, each \nsource and data file of\ + \ the Program and any Modification you distribute must contain \nthe following notice: \n\ + \n\"Copyright (c) 2000- (insert then current year) OCLC Online Computer Library Center,\ + \ \nInc. and other contributors. All rights reserved. The contents of this file, as updated\ + \ \nfrom time to time by the OCLC Office of Research, are subject to OCLC Research \nPublic\ + \ License Version 2.0 (the \"License\"); you may not use this file except in \ncompliance\ + \ with the License. You may obtain a current copy of the License at \nhttp://purl.oclc.org/oclc/research/ORPL/.\ + \ Software distributed under the License is \ndistributed on an \"AS IS\" basis, WITHOUT\ + \ WARRANTY OF ANY KIND, either express \nor implied. See the License for the specific language\ + \ governing rights and limitations \nunder the License. This software consists of voluntary\ + \ contributions made by many \nindividuals on behalf of OCLC Research. For more information\ + \ on OCLC Research, \nplease see http://www.oclc.org/oclc/research/. The Original Code\ + \ is \n . The Initial Developer of the Original Code is \n . Portions created by are\ + \ \nCopyright (C) . All Rights Reserved. Contributor(s): \n .\"\n\nC.\tRequirements for\ + \ a Distribution of Non-modifiable Code \n\nIf you distribute the Program in a form to which\ + \ the recipient cannot make Modifications \n(e.g. object code), the terms of this license\ + \ apply to use by recipient and you must \ninclude the following statement in appropriate\ + \ and conspicuous locations:\n\n\"Copyright (c) 2000- (insert then current year) OCLC Online\ + \ Computer Library Center, \nInc. and other contributors. All rights reserved.\"\n\nIn addition,\ + \ the source code must be included with the object code distribution or the \ndistributor\ + \ must provide the source code to the recipient upon request.\n\nD.\tRequirements for a\ + \ Combined Work Distribution\n\nDistributions of Combined Works are subject to the terms\ + \ of this license and must be \nmade at no charge to the recipient beyond the costs of physically\ + \ transferring the files \nto recipient.\n\nA Combined Work may be distributed as either\ + \ modifiable or non-modifiable code. The \nrequirements of Section 3.B or 3.C above (as\ + \ appropriate) apply to such distributions.\n\nAn \"Aggregate Work\" is when the Program\ + \ exists, without integration, with other \nprograms on a storage medium. This License does\ + \ not apply to portions of an \nAggregate Work which are not covered by the definition of\ + \ \"Program\" provided in this \nLicense. You are not forbidden from selling an Aggregate\ + \ Work. However, the Program \ncontained in an Aggregate Work is subject to this License.\ + \ Also, should the Program \nbe extracted from an Aggregate Work, this License applies\ + \ to any use of the Program \napart from the Aggregate Work.\n\nSection 4.\tLicense Grant\n\ + \nFor purposes of permitting use of your Modifications by OCLC and other licensees \nhereunder,\ + \ you hereby grant to OCLC and such other licensees the non-exclusive, worldwide, royalty-\n\ + free, transferable, sublicenseable license to execute, copy, alter, delete, modify, adapt,\ + \ change, revise, \nenhance, develop, publicly display, distribute (internally and externally)\ + \ and/or create derivative works \nbased on your Modifications (and derivative works thereof)\ + \ in accordance with these Terms. This Section \n4 shall survive termination of this License\ + \ for any reason.\n\nSection 5.\tTermination of Rights\n\nThis non-exclusive license (with\ + \ respect to the grant from a particular Contributor) \nautomatically terminates for any\ + \ entity that initiates legal action for intellectual property infringement (with \nrespect\ + \ to the Program) against such Contributor as of the initiation of such action.\n\nIf you\ + \ fail to comply with this License, your rights (but not your obligations) under this \n\ + License shall terminate automatically unless you cure such breach within thirty (30) days\ + \ of becoming \naware of the noncompliance. All sublicenses granted by you which preexist\ + \ such termination and are \nproperly granted shall survive such termination.\n\nSection\ + \ 6.\tOther Terms\n\nExcept for the copyright notices required above, you may not use any\ + \ trademark of any of \nthe Contributors without the prior written consent of the relevant\ + \ Contributor. You agree not to remove, \nalter or obscure any copyright or other proprietary\ + \ rights notice contained in the Program. \n\nAll transfers of the Program or any part thereof\ + \ shall be made in compliance with U.S. \nimport/export regulations or other restrictions\ + \ of the U.S. Department of Commerce, as well as other \nsimilar trade or commerce restrictions\ + \ which might apply.\n\nAny patent obtained by any party covering the Program or any part\ + \ thereof must include a \nprovision providing for the free, perpetual and unrestricted\ + \ commercial and noncommercial use by any \nthird party.\n\nIf, as a consequence of a court\ + \ judgment or settlement relating to intellectual property \ninfringement or any other cause\ + \ of action, conditions are imposed on you that contradict the conditions of \nthis License,\ + \ such conditions do not excuse you from compliance with this License. If you cannot \n\ + distribute the Program so as to simultaneously satisfy your obligations under this License\ + \ and such other \nconditions, you may not distribute the Program at all. For example, if\ + \ a patent license would not permit \nroyalty-free redistribution of the Program by all\ + \ those who receive copies directly or indirectly through you, \nyou could not satisfy both\ + \ the patent license and this License, and you would be required to refrain \nentirely from\ + \ distribution of the Program.\n\nIf you learn of a third party claim or other restriction\ + \ relating to a Program you have already \ndistributed you shall promptly redo your Program\ + \ to address the issue and take all reasonable steps to \ninform those who may have received\ + \ the Program at issue. An example of an appropriate reasonable \nstep to inform would be\ + \ posting an announcement on an appropriate web bulletin board. \n\nThe provisions of this\ + \ License are deemed to be severable, and the invalidity or unenforceability of \nany provision\ + \ shall not affect or impair the remaining provisions which shall continue in full force\ + \ and effect. In \nsubstitution for any provision held unlawful, there shall be substituted\ + \ a provision of similar import reflecting the \noriginal intent of the parties hereto to\ + \ the extent permissible under law.\n\nThe Original Contributor from time to time may change\ + \ this License, and the amended \nlicense will apply to all copies of the Program downloaded\ + \ after the new license is posted. This License \ngrants only the rights expressly stated\ + \ herein and provides you with no implied rights or licenses to the \nintellectual property\ + \ of any Contributor.\n\n\t\tThis License is the complete and exclusive statement of the\ + \ agreement between the \nparties concerning the subject matter hereof and may not be amended\ + \ except by the written agreement of \nthe parties. This License shall be governed by and\ + \ construed in accordance with the laws of the State of \nOhio and the United States of\ + \ America, without regard to principles of conflicts of law." json: oclc-2.0.json - yml: oclc-2.0.yml + yaml: oclc-2.0.yml html: oclc-2.0.html - text: oclc-2.0.LICENSE + license: oclc-2.0.LICENSE - license_key: ocsl-1.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-ocsl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Version 1.0 + ORACLE COMMUNITY SOURCE LICENSE + + THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ORACLE COMMUNITY SOURCE LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES YOUR ACCEPTANCE OF THIS AGREEMENT. + 1. RIGHTS GRANTED. + + Oracle Corporation ("Oracle") hereby grants You (as either an individual or a legal entity exercising rights under this license) a worldwide, royalty-free, non-exclusive copyright license to use, copy, modify, distribute and sublicense the software program accompanying this license (the "Program"), including any end user documentation accompanying the software program (the "Documentation"), in source and binary forms. Oracle also grants You a worldwide, royalty-free, non-exclusive patent license under Oracle's Licensed Patents solely to make, use, sell, offer to sell, import and otherwise transfer the Program in source code and object code form and to sublicense, directly and indirectly, such rights. This license shall not apply to any modifications of the Program or to any combination of the Program with any other technology. "Licensed Patents" shall mean patent claims that are licensable by Oracle and that are necessarily infringed by the use or sale of the Program. You agree not to remove any product identification, copyright notices, or other notices or proprietary restrictions contained in the Programs. + + Other than as expressly provided in this paragraph, You receive no right or license to the intellectual property of Oracle under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. + 2. DISTRIBUTION REQUIREMENTS. + + If You choose to distribute the Program, You must also comply with the following requirements: + + 1. If You distribute the Program in source code form, you must license the Program under the same terms as set forth in this Agreement; + 2. If You distribute the Program in object code form, You must make the source code for the Program available on a medium customarily used for software exchange; + 3. If You distribute the Program in object code form, You may do so under Your own license agreement provided that Your license: + 1. does not conflict with the terms and conditions of this Agreement; + 2. effectively disclaims on behalf of Oracle all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantibilty or fitness for a particular purpose; + 3. effectively excludes Oracle's liability for ALL damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; + 4. states that any provisions that differ from this Agreement are offered by You alone; and + 5. states that source code for the Program is available from You and informs licensees how to obtain the source code from You. + 4. Any distribution of the Program must contain the following copyright notice in a conspicuous location: + "Copyright 1999, 2000 Oracle Corporation. All rights reserved." + In addition, if You modify the Program, you must identify yourself as the author of the modification in such a way that allows subsequent recipients to identify the originator of the modification. + + 3. ADDITIONAL TERMS OFFERED BY YOU. + + In distributing the Program, You may choose to accept certain responsibilities regarding the Program with respect to end users, business partners and the like. If You choose to offer terms in addition to those provided in this Agreement, for example warranty, support or indemnity terms, You may do so solely on Your own behalf and You agree to indemnify, defend and hold Oracle harmless for any liability, damages or losses arising from claims brought by a third party against Oracle related to any such additional terms. In addition, You agree to indemnify Oracle for any liability, damages or losses arising from a claim brought by a third party that Your distribution of the Program in a modified format or as combined with other technology infringes a copyright, patent, trade secret or other intellectual property right. For purposes of clarity, You shall not have an obligation to indemnify Oracle for a claim of infringement to the extent such a claim is based on the Program, in its unmodified or standalone form, infringing a third party's intellectual property rights. You agree that You will not enter into any settlement that binds Oracle without Oracle's prior written consent. + 4. PUBLICITY. + + You may not use "Oracle", any term beginning with the letters "Ora", any other term likely to cause confusion with "Oracle" or any trademarks adopted by Oracle to identify the Program as any portion of your tradename or trademark or to otherwise endorse or promote products derived from the Program. + 5. NO WARRANTY. + + This Program is provided "as is", without warranty of any kind. ALL EXPRESSED OR IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OR MERCHANTIBILITY, NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE, ARE HEREBY DISCLAIMED. + 6. LIABILITY. + + IN NO EVENT SHALL ORACLE CORPORATION 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 PROGRAM, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + 7. GENERAL. + + Your rights under this Agreement shall immediately terminate if You fail to comply with any of the material terms of this Agreement. In addition, if You institute patent litigation against Oracle with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by Oracle to You under this Agreement shall automatically terminate as of the date such litigation is filed. In addition, if You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program infringes Your patent(s) or contributes to or induces infringement of Your patent(s), then any patent rights granted to You under this Agreement shall automatically terminate as of the date the litigation is filed. Upon termination of this Agreement, You agree to immediately cease use and distribution of the Program. However, Your obligations under Paragraph 3 ("Additional Terms Offered By You") of this Agreement shall survive termination. + + The Program is a "commercial item" as defined in FAR 2.101. Government software rights in the Program include only those rights customarily provided to the public as defined in this License. This customary commercial license in computer software is provided in accordance with FAR 12.212 (Computer Software) and, for the Department of Defense purchases, DFAR 227.7202-3 (Rights in Commercial Computer Software or Computer Software Documentation). Accordingly, all U.S. Government End Users acquire Program with only those rights set forth herein. + + You agree to comply fully with all laws and regulations of the United States and other countries ("Export Laws")to assure that neither the Program, nor any direct products thereof are (1) exported, directly or indirectly, in violation of Export Laws, or (2) are used for any purpose prohibited by Export Laws, including, without limitation, nuclear, chemical, or biological weapons proliferation. + + If any provision or provisions of this Agreement shall be held to be invalid, illegal or unenforceable, the validity, legality and enforceability of the remaining provisions shall not in any way be affected or impaired thereby. This Agreement will be governed by and construed under the laws of the State of California, without giving effect to such state's conflict of law principles. Any legal action or proceeding relating to this Agreement shall be instituted in a state or federal court in San Francisco or San Mateo County, California. You agree to submit to the jurisdiction of, and agree that venue is proper in, these courts in any such legal action or proceeding. + + This Agreement constitutes the entire agreement of the parties concerning its subject matter and supersedes any and all prior or contemporaneous, written or oral negotiations, correspondence, understandings and agreements between the parties respecting the subject matter of this Agreement. Only Oracle may modify this Agreement. Oracle may choose to publish new versions of this Agreement from time to time. Each new version of this Agreement will be given a distinguishing version number. The Program may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, You may elect to distribute the Program under the new version. The failure of Oracle to enforce any of the provisions of this Agreement shall not be construed to be a waiver of the right of Oracle to later enforce such provisions. json: ocsl-1.0.json - yml: ocsl-1.0.yml + yaml: ocsl-1.0.yml html: ocsl-1.0.html - text: ocsl-1.0.LICENSE + license: ocsl-1.0.LICENSE - license_key: oculus-sdk + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-oculus-sdk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Effective date: 6/1/2020 + + Copyright © Facebook Technologies, LLC and its affiliates. All rights reserved. + + This Oculus SDK License Agreement (“Agreement”) is a legal agreement between you and Oculus governing your use of our Oculus Software Development Kit. Oculus Software Development Kit means any SDK, application programming interfaces (“APIs”), tools, plugins, code, technology, specification, documentation, Platform Services, and/or content made available by us to others, including app developers and content providers (collectively, the “SDK”). + + By downloading or using our SDK, you are agreeing to this Agreement along with other applicable terms and conditions such as the additional terms or documents accompanying the SDK, the Oculus Terms of Service, and our Privacy Policy (collectively, “Terms”). If you use the SDK as an interface to, or in conjunction with other Oculus products or services, then the terms for those other products or services also apply. + + Here, "Oculus" means Facebook Technologies, LLC, formerly known as Oculus VR, LLC, a Delaware limited liability company with its principal place of business at 1 Hacker Way, Menlo Park, California 94025, United States unless set forth otherwise. We may refer to "Oculus" as "we", "our", or "us" in the Agreement. + + You may not use the SDK and may not accept the Agreement if (1) you are a person with whom Oculus is prohibited from transacting business under applicable law, or (2) you are a person barred from using or receiving the SDK by Oculus or under the applicable laws of the United States or other countries including the country in which you are resident or from which you use the SDK. If you are using the SDK on behalf of an entity, you represent and warrant that you have authority to bind that entity to the Agreement and by accepting the Agreement, you are doing so on behalf of that entity (and all references to "you" in the Agreement refer to that entity). + + This Agreement requires the resolution of most disputes between you and Oculus by binding arbitration on an individual basis; class actions and jury trials are not permitted. + + 1. License Grant + 1.1 License. Subject to the Terms and the restrictions in this Section, Oculus hereby grants you a limited, royalty-free, non-exclusive, non-transferrable, non-sublicensable, revocable copyright license (“License”) during the term of this Agreement to use and reproduce the SDK solely to develop, test, or distribute your Application (defined below) and to enable you and/or your end users access to Oculus features through your Application. You may only use the SDK to develop Applications in connection with Oculus approved hardware and software products (“Oculus Approved Products”) unless the documentation accompanying the SDK expressly authorizes broader use such as with other third-party platforms. + + 1.1.1 If the SDK includes any libraries, sample source code, or other materials that we make available specifically for incorporation in your Application (as indicated by applicable documentation), you may incorporate those materials and reproduce and distribute them as part of your Application, including by distributing those materials to third parties contributing to your Application. + + 1.1.2 The SDK may include other content (e.g., sample code) that is for demonstration, reference, or other purposes and is subject to terms and conditions included with such materials. Such materials will be clearly marked in the applicable documentation. Absent such additional terms and conditions, you may modify, distribute, and sublicense any sample source made available as part of the SDK pursuant to the Terms. + + 1.1.3 The SDK may include Oculus content that is subject to your additional right to display the content to your end users through the use of the corresponding SDK, as contemplated by the documentation accompanying such SDK. For example, the SDK may include avatars that you may display to your end users. + + 1.2 General Restrictions. The License grant in this Section is solely for the purpose of developing, testing, and promoting your engines, tools, applications, content, games and demos, or other products and features (collectively, “Application”) and providing you and/or your end users access to Oculus services and features through your Application as contemplated by applicable documentation accompanying the SDK. You may not (or allow those acting on your behalf to): + + 1.2.1 modify or create derivative works from any SDK or its component (other than sample source code described in this Section or expressly authorized by the documents accompanying the SDK); + + 1.2.2 misrepresent or mask either your identity or your Application's identity when using the SDK or developer accounts; + + 1.2.3 attempt to circumvent any limitations documented with the SDK (e.g., limiting the number of requests you may make or end users you may serve); + + 1.2.4 reverse engineer, decompile, disassemble, or otherwise attempt to extract the source code from the SDK, except to the extent that applicable law expressly permits despite this limitation; + + 1.2.5 alter, restrict, or interfere with the normal operation or functionality of the SDK, the Oculus hardware or software, or Oculus Approved Products, including, but not limited to: (a) the behavior of the “Oculus button” and “XBox button” implemented by the Oculus system software; (b) any on-screen messages or information; (c) the behavior of the proximity sensor in the Oculus hardware implemented by the Oculus system software; (d) any Oculus hardware or software security features; (e) any end user's settings; and (f) the Oculus Flash Screen Warnings or Health and Safety Warnings; + + 1.2.6 use the SDK or your Application in a manner that violates: (a) the Oculus Data Use Policy (where applicable); (b) the Oculus Content Guidelines, or other applicable terms and policies made available on our Developer Policy portal; (c) any rights of Oculus or third parties; (d) applicable laws (such as laws regarding import, export, privacy, health & safety); or (e) other terms of service with Oculus or its affiliates; + + 1.2.7 remove, obscure, or alter any Oculus Terms or any links to or notices of those Terms; or + + 1.2.8 use or redistribute the SDK or any portion thereof in any manner that would cause the SDK (or any portion thereof) or Oculus to become subject to the terms of any open source license or other restrictions. + + 1.3 Distribution and Sublicense Restrictions. The redistribution and sublicense rights under this Section are further subject to the following restrictions: (1) redistribution of sample source code or other materials must include the following copyright notice: “Copyright © Facebook Technologies, LLC and its affiliates. All rights reserved;” and (2) If the sample source code or other materials include a "License" or "Notice" text file, you must provide a copy of the License or Notice file with the sample code. + + 1.4 Privacy and Security. + + 1.4.1 You are responsible for the data of your Application and agree to comply with all applicable privacy and data protection laws, as well as our applicable terms and policies, particularly the Oculus Developer Data Use Policy. You represent and warrant that you have provided robust and sufficiently prominent notice to users regarding data processing that includes, at a minimum, that third parties, including Oculus and its affiliates, may collect or receive information from your Application. + + 1.4.2 For purposes of the GDPR, you acknowledge and agree that you are a separate and independent controller of the Developer User Data (as defined in the Oculus Developer Data Use Policy) and Facebook Technologies Ireland Limited (an affiliate of Oculus) is a separate and independent controller of the Oculus User Data (as defined in the Oculus Developer Data Use Policy). The parties do not and will not process Developer User Data nor Oculus User Data as joint controllers. Each party shall comply with the obligations that apply to it as a controller under the GDPR, and each party shall be individually and separately responsible for its own compliance. + + 1.4.3 Notwithstanding the foregoing, to the extent the Developer User Data contain personal data which you process subject to the GDPR, you acknowledge and agree that only for purposes of providing/operating some APIs (for example, Spatial Audio VoIP API) as described in the Data Processing Terms, you have instructed Facebook Technologies Ireland Limited to process such personal data on your behalf as your processor pursuant to this Agreement and the Data Processing Terms, which are incorporated herein by reference. + + 1.4.4 “Personal data,” “controller,” “processor,” and “process” in this Section have the meanings set out in the Data Processing Terms. + + 1.5 No Obligations. You have no obligations under this Agreement to license or make available your Application to Oculus or any third parties. Nothing in this Agreement obligates Oculus to enable you or any of your Applications to access, interact with, or retrieve or publish content to any Oculus platform or service. However, Oculus may require you to agree to additional terms as a condition of providing you with such platform services in connection with your use of the SDK. You acknowledge and agree that Oculus may develop products or services that may compete with your Application or any other products or services of yours. + + 2. Oculus Platform Services + Oculus and/or its affiliates makes certain Platform Services (defined below) available to you to include and enable in your Application on our Platform. An Application that enables or includes any Platform Service must implement the Oculus Platform Framework with the Application. Once your Application has been authorized for use of the Platform Services, you are not required to update your Application to include new Platform Services that Oculus and/or its affiliates may make available as part of the Oculus Platform Framework. For more information, please visit https://developer.oculus.com. + + 2.1 For the purpose of this Section, + + 2.1.1 “Application Services” means services provided by Oculus and/or its affiliates associated with the Platform, including, but not limited to, in-app purchasing, multiplayer matchmaking, friends, leader boards, achievements, Virtual Reality Real Time Systems (“VERTS”), voice over IP and cloud saves, which list may be changed from time to time in Oculus' or its affiliates’ sole discretion. + + 2.1.2 "Oculus Platform Framework" means the suite of Oculus platform services, including, but not limited to, the Oculus file distribution and update system (enabling distribution and updates of Applications by Oculus and/or its affiliates, including through generated activation Keys), entitlement system, and account authentication, which list may be changed from time to time in Oculus' or its affiliates’ sole discretion. + + 2.1.3 "Platform" means the virtual, mixed, and augmented reality platform made available by Oculus and/or its affiliates, including, but not limited to, the user experience, user interface, store, and social features, usable on hardware approved by Oculus or its affiliates or any third-party device or operating system, including, but not limited to, iOS, Android, Windows, OS X, Linux, and Windows Mobile. + + 2.1.4 "Platform Services" means the Oculus Platform Framework and the Application Services. + + 2.2 Key Provision and Redemption. If you request that Oculus generate activation keys for your Application on the Platform ("Keys") and Oculus agrees, you hereby grant Oculus and its affiliates (1) the right to generate Keys for you and (2) a license to make available, reproduce, distribute, perform, and display the Application to end users who have submitted a Key to Oculus or its affiliates. Oculus agrees to authenticate and make the Application available to any end user supplying a valid Key (or have its affiliates do so) (unless the Application has been removed or withdrawn). + + 2.3 Platform Services Requirements. You will not make any use of any API, software, code or other item or information supplied by Oculus or its affiliates in connection with the Platform Services other than to enhance the functionality of your Application. In particular, you must not (nor enable others to): (1) defame, abuse, harass, stalk, or threaten others, or to promote or facilitate any prohibited or illegal activities; (2) enable any functionality in your Application that would generate excessive traffic over the Oculus network or servers that would negatively impact other users' experience, or otherwise interfere with or restrict the operation of the Platform Services, or Oculus' or its affiliates’ servers or networks providing the Platform Services; (3) remove, obscure, or alter any license terms, policies or terms of service or any links to or notices thereto provided by Oculus or its affiliates; or (4) violate any rights of Oculus, its affiliates, or any third parties. You may not sublicense any software, firmware or other item or information supplied by Oculus or its affiliates in connection with the Platform Services for use by a third party, unless expressly authorized by Oculus or its affiliates to do so. You agree not to use (or encourage the use of) the Platform Services for mission critical, life saving or ultra-hazardous activities. Oculus or its affiliates may suspend operation of or remove any Application that does not comply with the restrictions in this Agreement. + + 2.4 Oculus and/or its affiliates may discontinue or change functionality of the Platform Services at any time, and your continued use of the Platform Services or use of any modified or additional Platform Services is conditioned upon your adherence to the terms of this Agreement, as modified by Oculus or its affiliates from time to time. + + 3. Intellectual Property + 3.1 Ownership. As between you and Oculus, Oculus and/or its affiliates or licensors own all rights, title, and interest, including all Intellectual Property Rights, in and to the SDK (including associated Oculus content and sample code) and all derivatives thereof. Oculus reserves all rights not expressly granted under the License. As between you and Oculus, you and/or your licensors own all rights, title, and interest in and to your Application, (excluding our SDK), including all Intellectual Property Rights. “Intellectual Property Rights” means any and all worldwide rights under applicable laws of patent, copyright, trade secret, trademark, rights of publicity and privacy, and other proprietary rights. + + 3.2 Third-Party Materials. Our SDK may include third-party software offered under an open source license or third-party content subject to a separate third-party agreement. To the extent any of such third-party terms conflicts with this Agreement, such third-party terms will control solely with respect to such third-party software or content. + + 3.3 Feedback. If you provide comments, suggestions, recommendations, or other feedback about our SDK or any other Oculus or affiliate product or service, we (and our affiliates and those we allow) may use such information for any purposes without obligation to you. + + 3.4 Brand Attribution. This Agreement does not grant you or any third party permission to use our trade names, trademarks, service marks, logos, domain names, and other distinctive brand features (collectively, “Brand Features”) except as required for reasonable and customary use in describing the origin of the SDK or reproduction of the copyright notice as required under the License grant. You will not make any statement regarding the SDK or your Application which suggests partnership with, sponsorship by, or endorsement by Oculus or its employee, contractor, contributor, licensor, affiliate, or partner without our prior written permission. + + 4. Confidentiality + 4.1 Confidentiality. Our communications to you and our SDK may contain Oculus confidential information, which includes information that is marked confidential or that would normally be considered confidential under the circumstances. If you receive any such information, you will not disclose it to any third party without Oculus' prior written consent. Oculus confidential information does not include information that you independently developed, that was rightfully given to you by a third party without a confidentiality obligation with regard to such information, or that becomes public through no fault of your own. You may disclose Oculus confidential information when compelled to do so by law if you provide us reasonable prior notice, unless a court order prohibits such notice. + + 5. Termination + 5.1 Termination. The term of this Agreement will begin on the date on which you click accept, download, or use the SDK or any of its components and will continue until terminated as set forth in this Agreement. Oculus reserves the right to terminate this Agreement with you, or to discontinue or suspend the SDK or any portion or feature or your access thereto for any reason or no reason and at any time without liability or other obligation to you. Without limiting the generality of the foregoing, Oculus reserves the right to terminate this Agreement, including the License, immediately in the event you breach any material provisions of this Agreement or the Terms. + + 5.2 Effect of Termination. Upon termination of this Agreement, you will immediately stop using, distributing, or otherwise making available the SDK and all Applications that incorporate the SDK or any of its components, cease all use of the Oculus Brand Features, and destroy or return any cached or stored content, software, or other materials obtained through our SDK. + + 5.3 Surviving Provisions. When the Agreement comes to an end, those terms that by their nature are intended to continue indefinitely will continue to apply, including, but not limited to, Section 3 (Intellectual Property), Section 4 (Confidentiality), Section 5 (Termination), Section 6 (Liability) and Section 7 (General Provisions). + + 6. Liability + 6.1 Indemnification. Unless prohibited by applicable law, you will indemnify and (at Oculus’s option), defend Oculus, its affiliates, subsidiaries, agents, licensors, contributors, directors, officers, employees, suppliers, and distributors (collectively, “Oculus Parties”) against all liabilities, damages, losses, costs, fees (including legal fees), and expenses relating to any allegation or third-party legal proceeding arising from: (1) your use of the SDK, or any negligence or misconduct by you, or your employees, agents, vendors, or contractors (collectively “Developer Parties”); (2) any Developer Parties’ violation of the Agreement, Terms, or any applicable law and regulation; (3) any of your Application; or (4) End User Data (defined in SDK Data Use Policy). + + 6.2 WARRANTIES. EXCEPT AS EXPRESSLY SET OUT IN THE TERMS, THE SDK IS PROVIDED “AS IS” WITHOUT ANY SPECIFIC PROMISES OR WARRANTIES, INCLUDING, BUT NOT LIMITED TO, ANY COMMITMENTS ABOUT THE CONTENT ACCESSED THROUGH THE SDK, THE SPECIFIC FUNCTIONS OF THE SDK OR OUR PLATFORM SERVICE, OR THEIR RELIABILITY, AVAILABILITY, OR ABILITY TO MEET YOUR NEEDS. THE OCULUS PARTIES HEREBY DISCLAIM ANY IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. SOME JURISDICTIONS DO NOT PERMIT THE EXCLUSION OR LIMITATION OF IMPLIED WARRANTIES, SO YOU MAY HAVE ADDITIONAL RIGHTS. + + 6.3 LIMITATION OF LIABILITY. TO THE EXTENT PERMITTED BY APPLICABLE LAW, OCULUS PARTIES WILL NOT BE RESPONSIBLE FOR LOST PROFITS, BUSINESS OR GOODWILL, REVENUES, OR DATA; FINANCIAL LOSSES; OR INDIRECT, SPECIAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING AS A RESULT OF THIS AGREEMENT, USE OF THE SDK OR ANY MODIFIED SAMPLE CODE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. YOU AGREE THAT YOUR REMEDIES UNDER THIS AGREEMENT ARE LIMITED SOLELY TO THE RIGHT TO COLLECT MONEY DAMAGES, IF ANY, AND YOU HEREBY WAIVE YOUR RIGHT TO SEEK INJUNCTIVE RELIEF OR OTHER EQUITABLE RELIEF. IF YOU ARE A CALIFORNIA RESIDENT, YOU AGREE TO WAIVE CALIFORNIA CIVIL CODE § 1542, WHICH SAYS: “A GENERAL RELEASE DOES NOT EXTEND TO CLAIMS WHICH THE CREDITOR DOES NOT KNOW OR SUSPECT TO EXIST IN HIS OR HER FAVOR AT THE TIME OF EXECUTING THE RELEASE, WHICH IF KNOWN BY HIM OR HER MUST HAVE MATERIALLY AFFECTED HIS OR HER SETTLEMENT WITH THE DEBTOR.” TO THE EXTENT PERMITTED BY LAW, THE CUMULATIVE, AGGREGATE LIABILITY OF OCULUS PARTIES, FOR ANY CLAIM UNDER THE AGREEMENT SHALL NOT EXCEED THE GREATER OF ONE HUNDRED US DOLLARS ($100) OR THE AMOUNT YOU HAVE PAID US IN THE PAST TWELVE MONTHS. IN ALL CASES, OCULUS PARTIES WILL NOT BE LIABLE FOR ANY EXPENSE, LOSS, OR DAMAGE THAT IS NOT REASONABLY FORESEEABLE. + + 7. General Provisions + 7.1 Updates. We may need to update the Agreement from time to time, including to accurately reflect the access or uses of our SDK, and so we encourage you to check the Agreement regularly. By continuing to access or use our SDK after any notice of an update to this Agreement, you agree to be bound by them. Any updates to the Disputes section of this Agreement will apply only to disputes that arise after notice of the update takes place. If you do not agree to the updated terms, please stop all access or use of our SDK. You cannot sidestep your compliance obligations under an updated version of the Agreement by developing against an older release of the SDK or relying on the older Agreement and all updates to your application are subject to the modified Agreement. + + 7.2 Authorization. You hereby grant Oculus and its contractors and affiliates the authorization reasonably necessary for Oculus to exercise its rights and perform its obligations under this Agreement, including a limited, royalty-free, non-exclusive license to use, perform, and display the Application you provide to Oculus for testing, evaluation, and approval purposes. + + 7.3 General Provisions. You and Oculus are independent contractors with regard to each other. The Agreement does not create any third-party beneficiary rights or any agency, partnership, employment, or joint venture. We are not liable for failure or delay in performance to the extent caused by circumstances beyond our reasonable control. If you do not comply with the Agreement, and Oculus does not take action right away or does not enforce any provision of the Agreement, this inaction or lack of enforcement will not act as a waiver by Oculus of any rights that it may have (such as taking action in the future) or in any way affect the validity of this Agreement or parts thereof. If a particular provision of this Agreement is deemed unenforceable, it will be deemed modified to the minimum extent necessary to render it enforceable and most nearly reflect the intent of the original provision, and all other provisions in this Agreement shall remain in full force and effect. You may not assign or delegate this Agreement or any obligations under this Agreement without our advance written consent. Any such prohibited attempted assignment will be void. Oculus may assign or delegate this Agreement and any of its rights or obligations under the Agreement without your consent or notice to you. This Agreement shall bind the parties and their respective heirs, successors, and permitted assigns. The Agreement is the entire agreement between you and Oculus relating to its subject and supersede any prior or contemporaneous agreements on that subject. + + 7.4 Dispute Resolution. + + 7.4.1 If you reside outside the US or your business is located outside the US: You agree that any claim, cause of action, or dispute you have against us that arises out of or relates to any access or use of the SDK must be resolved exclusively in the U.S. District Court for the Northern District of California or a state court located in San Mateo County, that you submit to the personal jurisdiction of either of these courts for the purpose of litigating any such claim, and that the laws of the State of California will govern this Agreement and any such claim, without regard to conflict of law provisions. + + 7.4.2 If you reside in the US or your business is located in the US: You and we agree to arbitrate any claim, cause of action, or dispute between you and us that arises out of or relates to any access or use of the SDK for business or commercial purposes (“commercial claim”). This provision does not cover any commercial claims relating to violations of your or our intellectual property rights, including, but not limited to, copyright infringement, patent infringement, trademark infringement, violations of the brand guidelines, violations of your or our confidential information or trade secrets, or efforts to interfere with our products or engage with our products in unauthorized ways (for example, automated ways). + + 7.4.3 We and you agree that, by entering into this arbitration provision all parties are waiving their respective rights to a trial by jury or to participate in a class or representative action. THE PARTIES AGREE THAT EACH MAY BRING COMMERCIAL CLAIMS AGAINST THE OTHER ONLY IN ITS INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS, REPRESENTATIVE, OR PRIVATE ATTORNEY GENERAL PROCEEDING. You may bring a commercial claim only on your own behalf and cannot seek relief that would affect other parties. If there is a final judicial determination that any particular commercial claim (or a request for particular relief) cannot be arbitrated in accordance with this paragraph’s limitations, then only that commercial claim (or only that request for relief) may be brought in court. All other commercial claims (or requests for relief) remain subject to this paragraph. + + 7.4.4 The Federal Arbitration Act governs the interpretation and enforcement of this arbitration provision. All issues are for an arbitrator to decide, except that only a court may decide issues relating to the scope or enforceability of this arbitration provision or the interpretation of the prohibition of class and representative actions. + + 7.4.5 If any party intends to seek arbitration of a dispute, that party must provide the other party with notice in writing. + + 7.4.6 The arbitration will be governed by the AAA’s Commercial Arbitration Rules (“AAA Rules”), as modified by this Agreement, and will be administered by the AAA. If the AAA is unavailable, the parties will agree to another arbitration provider or the court will appoint a substitute. The arbitrator will not be bound by rulings in other arbitrations in which you are not a party. To the fullest extent permitted by applicable law, any evidentiary submissions made in arbitration will be maintained as confidential in the absence of good cause for its disclosure. The arbitrator’s award will be maintained as confidential only to the extent necessary to protect either party’s trade secrets or proprietary business information or to comply with a legal requirement mandating confidentiality. Each party will be responsible for paying any AAA filing, administrative and arbitrator fees in accordance with AAA Rules, except that we will pay for your filing, administrative, and arbitrator fees if your commercial claim for damages does not exceed $75,000 and is non-frivolous (as measured by the standards set forth in Federal Rule of Civil Procedure 11(b)). + + 7.4.7 If you do not wish to be bound by this provision (including its waiver of class and representative claims), you must notify us as set forth below within 30 days of the first acceptance date of any version of this Agreement containing an arbitration provision. Your notice to us under this subsection must be submitted to the address here: Facebook Technologies, LLC, 1 Hacker Way, Menlo Park, California 94025 + + 7.4.8 All commercial claims between us, whether subject to arbitration or not, will be governed by California law, excluding California’s conflict of laws rules, except to the extent that California law is contrary to or preempted by federal law. + + 7.4.9 If a commercial claim between you and us is not subject to arbitration, you agree that the claim must be resolved exclusively in the U.S. District Court for the Northern District of California or a state court located in San Mateo County, and that you submit to the personal jurisdiction of either of these courts for the purpose of litigating any such claim. + + 7.4.10 If any provision of this dispute resolution provision is found unenforceable, that provision will be severed and the balance of the dispute resolution provision will remain in full force and effect. json: oculus-sdk.json - yml: oculus-sdk.yml + yaml: oculus-sdk.yml html: oculus-sdk.html - text: oculus-sdk.LICENSE + license: oculus-sdk.LICENSE - license_key: oculus-sdk-2020 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-oculus-sdk-2020 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Oculus SDK License Agreement + Effective date: 10/13/2020 + + Copyright © Facebook Technologies, LLC and its affiliates. All rights reserved. + + The text of this may be found at: https://developer.oculus.com/licenses/oculussdk/ + + This Oculus SDK License Agreement (“Agreement”) is a legal agreement between you and Oculus governing your use of our Oculus Software Development Kit. Oculus Software Development Kit means any SDK, application programming interfaces (“APIs”), tools, plugins, code, technology, specification, documentation, Platform Services, and/or content made available by us to others, including app developers and content providers (collectively, the “SDK”). + + By downloading or using our SDK, you are agreeing to this Agreement along with other applicable terms and conditions such as the additional terms or documents accompanying the SDK and the Terms of Service, and acknowledging our Privacy Policy (collectively, “Terms”). If you use the SDK as an interface to, or in conjunction with other Oculus products or services, then the terms for those other products or services also apply. + + Here, "Oculus" means Facebook Technologies, LLC, formerly known as Oculus VR, LLC, a Delaware limited liability company with its principal place of business at 1 Hacker Way, Menlo Park, California 94025, United States unless set forth otherwise. We may refer to "Oculus" as "we", "our", or "us" in the Agreement. + + You may not use the SDK and may not accept the Agreement if (1) you are a person with whom Oculus is prohibited from transacting business under applicable law, or (2) you are a person barred from using or receiving the SDK by Oculus or under the applicable laws of the United States or other countries including the country in which you are resident or from which you use the SDK. If you are using the SDK on behalf of an entity, you represent and warrant that you have authority to bind that entity to the Agreement and by accepting the Agreement, you are doing so on behalf of that entity (and all references to "you" in the Agreement refer to that entity). + + This Agreement requires the resolution of most disputes between you and Oculus by binding arbitration on an individual basis; class actions and jury trials are not permitted. + + 1. License Grant + 1.1 License. Subject to the Terms and the restrictions in this Section, Oculus hereby grants you a limited, royalty-free, non-exclusive, non-transferrable, non-sublicensable, revocable copyright license (“License”) during the term of this Agreement to use and reproduce the SDK solely to develop, test, or distribute your Application (defined below) and to enable you and/or your end users access to Oculus features through your Application. You may only use the SDK to develop Applications in connection with Oculus approved hardware and software products (“Oculus Approved Products”) unless the documentation accompanying the SDK expressly authorizes broader use such as with other third-party platforms. + + 1.1.1 If the SDK includes any libraries, sample source code, or other materials that we make available specifically for incorporation in your Application (as indicated by applicable documentation), you may incorporate those materials and reproduce and distribute them as part of your Application, including by distributing those materials to third parties contributing to your Application. + + 1.1.2 The SDK may include other content (e.g., sample code) that is for demonstration, reference, or other purposes and is subject to terms and conditions included with such materials. Such materials will be clearly marked in the applicable documentation. Absent such additional terms and conditions, you may modify, distribute, and sublicense any sample source made available as part of the SDK pursuant to the Terms. + + 1.1.3 The SDK may include Oculus content that is subject to your additional right to display the content to your end users through the use of the corresponding SDK, as contemplated by the documentation accompanying such SDK. For example, the SDK may include avatars that you may display to your end users. + + 1.2 General Restrictions. The License grant in this Section is solely for the purpose of developing, testing, and promoting your engines, tools, applications, content, games and demos, or other products and features (collectively, “Application”) and providing you and/or your end users access to Oculus services and features through your Application as contemplated by applicable documentation accompanying the SDK. You may not (or allow those acting on your behalf to): + + 1.2.1 modify or create derivative works from any SDK or its component (other than sample source code described in this Section or expressly authorized by the documents accompanying the SDK); + + 1.2.2 misrepresent or mask either your identity or your Application's identity when using the SDK or developer accounts; + + 1.2.3 attempt to circumvent any limitations documented with the SDK (e.g., limiting the number of requests you may make or end users you may serve); + + 1.2.4 reverse engineer, decompile, disassemble, or otherwise attempt to extract the source code from the SDK, except to the extent that applicable law expressly permits despite this limitation; + + 1.2.5 alter, restrict, or interfere with the normal operation or functionality of the SDK, the Oculus hardware or software, or Oculus Approved Products, including, but not limited to: (a) the behavior of the “Oculus button” and “XBox button” implemented by the Oculus system software; (b) any on-screen messages or information; (c) the behavior of the proximity sensor in the Oculus hardware implemented by the Oculus system software; (d) any Oculus hardware or software security features; (e) any end user's settings; and (f) the Oculus Flash Screen Warnings or Health and Safety Warnings; + + 1.2.6 use the SDK or your Application in a manner that violates: (a) the Oculus Data Use Policy (where applicable); (b) the Oculus Content Guidelines, or other applicable terms and policies made available on our Developer Policy portal; (c) any rights of Oculus or third parties; (d) applicable laws (such as laws regarding import, export, privacy, health & safety); or (e) other terms of service with Oculus or its affiliates; + + 1.2.7 remove, obscure, or alter any Oculus Terms or any links to or notices of those Terms; or + + 1.2.8 use or redistribute the SDK or any portion thereof in any manner that would cause the SDK (or any portion thereof) or Oculus to become subject to the terms of any open source license or other restrictions. + + 1.3 Distribution and Sublicense Restrictions. The redistribution and sublicense rights under this Section are further subject to the following restrictions: (1) redistribution of sample source code or other materials must include the following copyright notice: “Copyright © Facebook Technologies, LLC and its affiliates. All rights reserved;” and (2) If the sample source code or other materials include a "License" or "Notice" text file, you must provide a copy of the License or Notice file with the sample code. + + 1.4 Privacy and Security. + + 1.4.1 You are responsible for the data of your Application and agree to comply with all applicable privacy and data protection laws, as well as our applicable terms and policies, particularly the Oculus Developer Data Use Policy. You represent and warrant that you have provided robust and sufficiently prominent notice to users regarding data processing that includes, at a minimum, that third parties, including Oculus and its affiliates, may collect or receive information from your Application. + + 1.4.2 For purposes of the GDPR, you acknowledge and agree that you are a separate and independent controller of the Developer User Data (as defined in the Oculus Developer Data Use Policy) and Facebook Ireland Limited (an affiliate of Oculus) is a separate and independent controller for any processing of personal data, except as provided in Section 1.4.3, including the Oculus User Data (as defined in the Oculus Developer Data Use Policy). The parties do not and will not process Developer User Data nor Oculus User Data as joint controllers. Each party shall comply with the obligations that apply to it as a controller under the GDPR, and each party shall be individually and separately responsible for its own compliance. + + 1.4.3 1.4.3. Notwithstanding the foregoing, where the Developer User Data contain personal data which you process subject to the GDPR, you acknowledge and agree that to the extent that we process such data on your behalf as a processor, such as for purposes of providing/operating some APIs (for example, Spatial Audio VoIP API) as described in the Data Processing Terms, you have instructed Facebook Ireland Limited to process such personal data pursuant to this Agreement and the Data Processing Terms, which are incorporated herein by reference. + + 1.4.4 “Personal data,” “controller,” “processor,” and “process” in this Section have the meanings set out in the Data Processing Terms. + + 1.5 You have no obligations under this Agreement to license or make available your Application to Oculus, its affiliates, or any third parties. Nothing in this Agreement obligates Oculus or its affiliates to enable you or any of your Applications to access, interact with, or retrieve or publish content to any Oculus platform or service. However, Oculus and/or its affiliates may require you to agree to additional terms as a condition of providing you with such platform services in connection with your use of the SDK. You acknowledge and agree that Oculus and its affiliates may develop products or services that may compete with your Application or any other products or services of yours. + + 2. Oculus Platform Services + Oculus and/or its affiliates makes certain Platform Services (defined below) available to you to include and enable in your Application on our Platform. An Application that enables or includes any Platform Service must implement the Oculus Platform Framework with the Application. Once your Application has been authorized for use of the Platform Services, you are not required to update your Application to include new Platform Services that Oculus and/or its affiliates may make available as part of the Oculus Platform Framework. For more information, please visit https://developer.oculus.com. + + 2.1 For the purpose of this Section, + + 2.1.1 “Application Services” means services provided by Oculus and/or its affiliates associated with the Platform, including, but not limited to, in-app purchasing, multiplayer matchmaking, friends, leader boards, achievements, Virtual Reality Real Time Systems (“VERTS”), voice over IP and cloud saves, which list may be changed from time to time in Oculus' or its affiliates’ sole discretion. + + 2.1.2 "Oculus Platform Framework" means the suite of Oculus platform services, including, but not limited to, the Oculus file distribution and update system (enabling distribution and updates of Applications by Oculus and/or its affiliates, including through generated activation Keys), entitlement system, and account authentication, which list may be changed from time to time in Oculus' or its affiliates’ sole discretion. + + 2.1.3 "Platform" means the virtual, mixed, and augmented reality platform made available by Oculus and/or its affiliates, including, but not limited to, the user experience, user interface, store, and social features, usable on hardware approved by Oculus or its affiliates or any third-party device or operating system, including, but not limited to, iOS, Android, Windows, OS X, Linux, and Windows Mobile. + + 2.1.4 "Platform Services" means the Oculus Platform Framework and the Application Services. + + 2.2 Key Provision and Redemption. If you request that Oculus generate activation keys for your Application on the Platform ("Keys") and Oculus agrees, you hereby grant Oculus and its affiliates (1) the right to generate Keys for you and (2) a license to make available, reproduce, distribute, perform, and display the Application to end users who have submitted a Key to Oculus or its affiliates. Oculus agrees to authenticate and make the Application available to any end user supplying a valid Key (or have its affiliates do so) (unless the Application has been removed or withdrawn). + + 2.3 Platform Services Requirements. You will not make any use of any API, software, code or other item or information supplied by Oculus or its affiliates in connection with the Platform Services other than to enhance the functionality of your Application. In particular, you must not (nor enable others to): (1) defame, abuse, harass, stalk, or threaten others, or to promote or facilitate any prohibited or illegal activities; (2) enable any functionality in your Application that would generate excessive traffic over the Oculus network or servers that would negatively impact other users' experience, or otherwise interfere with or restrict the operation of the Platform Services, or Oculus' or its affiliates’ servers or networks providing the Platform Services; (3) remove, obscure, or alter any license terms, policies or terms of service or any links to or notices thereto provided by Oculus or its affiliates; or (4) violate any rights of Oculus, its affiliates, or any third parties. You may not sublicense any software, firmware or other item or information supplied by Oculus or its affiliates in connection with the Platform Services for use by a third party, unless expressly authorized by Oculus or its affiliates to do so. You agree not to use (or encourage the use of) the Platform Services for mission critical, life saving or ultra-hazardous activities. Oculus or its affiliates may suspend operation of or remove any Application that does not comply with the restrictions in this Agreement. + + 2.4 Changes to Platform or Platform Services. Oculus and/or its affiliates may change the Platform or the functionality of the Platform Services at any time, including discontinuing some of the functionality of the Platform Services, and your continued use of the Platform or Platform Services or use of any modified or additional Platform Services is conditioned upon your adherence to the terms of this Agreement, as modified by Oculus or its affiliates from time to time. + + 3. Intellectual Property + 3.1 Ownership. As between you and Oculus, Oculus and/or its affiliates or licensors own all rights, title, and interest, including all Intellectual Property Rights, in and to the SDK (including associated Oculus content and sample code) and all derivatives thereof. Oculus reserves all rights not expressly granted under the License. As between you and Oculus, you and/or your licensors own all rights, title, and interest in and to your Application, (excluding our SDK), including all Intellectual Property Rights. “Intellectual Property Rights” means any and all worldwide rights under applicable laws of patent, copyright, trade secret, trademark, rights of publicity and privacy, and other proprietary rights. + + 3.2 Third-Party Materials. Our SDK may include third-party software offered under an open source license or third-party content subject to a separate third-party agreement. To the extent any of such third-party terms conflicts with this Agreement, such third-party terms will control solely with respect to such third-party software or content. + + 3.3 Feedback. If you provide comments, suggestions, recommendations, or other feedback about our SDK or any other Oculus or affiliate product or service, we (and our affiliates and those we allow) may use such information for any purposes without obligation to you. + + 3.4 Brand Attribution. This Agreement does not grant you or any third party permission to use our trade names, trademarks, service marks, logos, domain names, and other distinctive brand features (collectively, “Brand Features”) except as required for reasonable and customary use in describing the origin of the SDK or reproduction of the copyright notice as required under the License grant. You will not use our SDK or make any statement regarding the SDK or your Application which suggests partnership with, sponsorship by, or endorsement by Oculus or its employee, contractor, contributor, licensor, affiliate, or partner without our prior written permission. + + 4. Confidentiality + 4.1 Confidentiality. Our communications to you and our SDK may contain Oculus confidential information, which includes information that is marked confidential or that would normally be considered confidential under the circumstances. If you receive any such information, you will not disclose it to any third party without Oculus' prior written consent. Oculus confidential information does not include information that you independently developed, that was rightfully given to you by a third party without a confidentiality obligation with regard to such information, or that becomes public through no fault of your own. You may disclose Oculus confidential information when compelled to do so by law if you provide us reasonable prior notice, unless a court order prohibits such notice. + + 5. Termination + 5.1 Termination. The term of this Agreement will begin on the date on which you click accept, download, or use the SDK or any of its components and will continue until terminated as set forth in this Agreement. Oculus reserves the right to terminate this Agreement with you, or to discontinue or suspend the SDK or any portion or feature or your access thereto in the event you breach any material provisions of this Agreement or the Terms, without liability or other obligation to you. + + 5.2. Discontinuation of SDK. Oculus reserves the right to discontinue the SDK at any time, in our sole discretion, without notice to you, and without liability or other obligation to you. This Agreement will terminate automatically and without notice to you in the event that the SDK is discontinued. + + 5.3 Effect of Termination. Upon termination of this Agreement, you will immediately stop using, distributing, or otherwise making available the SDK and all Applications that incorporate the SDK or any of its components, cease all use of the Oculus Brand Features, and destroy or return any cached or stored content, software, or other materials obtained through our SDK. + + 5.4 Surviving Provisions. When the Agreement comes to an end, those terms that by their nature are intended to continue indefinitely will continue to apply, including, but not limited to, Section 3 (Intellectual Property), Section 4 (Confidentiality), Section 5 (Termination), Section 6 (Liability) and Section 7 (General Provisions). + + 6. Liability + 6.1 Indemnification. Unless prohibited by applicable law, you will indemnify and (at Oculus’s option), defend Oculus, its affiliates, subsidiaries, agents, licensors, contributors, directors, officers, employees, suppliers, and distributors (collectively, “Oculus Parties”) against all liabilities, damages, losses, costs, fees (including legal fees), and expenses relating to any allegation or third-party legal proceeding arising from: (1) your use of the SDK, or any negligence or misconduct by you, or your employees, agents, vendors, or contractors (collectively “Developer Parties”); (2) any Developer Parties’ violation of the Agreement, Terms, or any applicable law and regulation; (3) any of your Application; or (4) End User Data (defined in SDK Data Use Policy). + + 6.2 WARRANTIES. EXCEPT AS EXPRESSLY SET OUT IN THE TERMS, THE SDK IS PROVIDED “AS IS” WITHOUT ANY SPECIFIC PROMISES OR WARRANTIES, INCLUDING, BUT NOT LIMITED TO, ANY COMMITMENTS ABOUT THE CONTENT ACCESSED THROUGH THE SDK, THE SPECIFIC FUNCTIONS OF THE SDK OR OUR PLATFORM SERVICE, OR THEIR RELIABILITY, AVAILABILITY, OR ABILITY TO MEET YOUR NEEDS. THE OCULUS PARTIES HEREBY DISCLAIM ANY IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. SOME JURISDICTIONS DO NOT PERMIT THE EXCLUSION OR LIMITATION OF IMPLIED WARRANTIES, SO YOU MAY HAVE ADDITIONAL RIGHTS. + + 6.3 LIMITATION OF LIABILITY. TO THE EXTENT PERMITTED BY APPLICABLE LAW, OCULUS PARTIES WILL NOT BE RESPONSIBLE FOR LOST PROFITS, BUSINESS OR GOODWILL, REVENUES, OR DATA; FINANCIAL LOSSES; OR INDIRECT, SPECIAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING AS A RESULT OF THIS AGREEMENT, USE OF THE SDK OR ANY MODIFIED SAMPLE CODE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. YOU AGREE THAT YOUR REMEDIES UNDER THIS AGREEMENT ARE LIMITED SOLELY TO THE RIGHT TO COLLECT MONEY DAMAGES, IF ANY, AND YOU HEREBY WAIVE YOUR RIGHT TO SEEK INJUNCTIVE RELIEF OR OTHER EQUITABLE RELIEF. IF YOU ARE A CALIFORNIA RESIDENT, YOU AGREE TO WAIVE CALIFORNIA CIVIL CODE § 1542, WHICH SAYS: “A GENERAL RELEASE DOES NOT EXTEND TO CLAIMS WHICH THE CREDITOR DOES NOT KNOW OR SUSPECT TO EXIST IN HIS OR HER FAVOR AT THE TIME OF EXECUTING THE RELEASE, WHICH IF KNOWN BY HIM OR HER MUST HAVE MATERIALLY AFFECTED HIS OR HER SETTLEMENT WITH THE DEBTOR.” TO THE EXTENT PERMITTED BY LAW, THE CUMULATIVE, AGGREGATE LIABILITY OF OCULUS PARTIES, FOR ANY CLAIM UNDER THE AGREEMENT SHALL NOT EXCEED THE GREATER OF ONE HUNDRED US DOLLARS ($100) OR THE AMOUNT YOU HAVE PAID US IN THE PAST TWELVE MONTHS. IN ALL CASES, OCULUS PARTIES WILL NOT BE LIABLE FOR ANY EXPENSE, LOSS, OR DAMAGE THAT IS NOT REASONABLY FORESEEABLE. + + 7. General Provisions + 7.1 Updates. We may need to update the Agreement from time to time, including to accurately reflect the access or uses of our SDK, and so we encourage you to check the Agreement regularly. By continuing to access or use our SDK after any notice of an update to this Agreement, you agree to be bound by them. Any updates to the Disputes section of this Agreement will apply only to disputes that arise after notice of the update takes place. If you do not agree to the updated terms, please stop all access or use of our SDK. You cannot sidestep your compliance obligations under an updated version of the Agreement by developing against an older release of the SDK or relying on the older Agreement and all updates to your application are subject to the modified Agreement. + + 7.2 Authorization. You hereby grant Oculus and its contractors and affiliates the authorization reasonably necessary for Oculus to exercise its rights and perform its obligations under this Agreement, including a limited, royalty-free, non-exclusive license to use, perform, and display the Application you provide to Oculus for testing, evaluation, and approval purposes. + + 7.3 General Provisions. You and Oculus are independent contractors with regard to each other. The Agreement does not create any third-party beneficiary rights or any agency, partnership, employment, or joint venture. We are not liable for failure or delay in performance to the extent caused by circumstances beyond our reasonable control. If you do not comply with the Agreement, and Oculus does not take action right away or does not enforce any provision of the Agreement, this inaction or lack of enforcement will not act as a waiver by Oculus of any rights that it may have (such as taking action in the future) or in any way affect the validity of this Agreement or parts thereof. If a particular provision of this Agreement is deemed unenforceable, it will be deemed modified to the minimum extent necessary to render it enforceable and most nearly reflect the intent of the original provision, and all other provisions in this Agreement shall remain in full force and effect. You may not assign or delegate this Agreement or any obligations under this Agreement without our advance written consent. Any such prohibited attempted assignment will be void. Oculus may assign or delegate this Agreement and any of its rights or obligations under the Agreement without your consent or notice to you. This Agreement shall bind the parties and their respective heirs, successors, and permitted assigns. The Agreement is the entire agreement between you and Oculus relating to its subject and supersede any prior or contemporaneous agreements on that subject. + + 7.4 Dispute Resolution. + + 7.4.1 If you reside outside the US or your business is located outside the US: You agree that any claim, cause of action, or dispute you have against us that arises out of or relates to any access or use of the SDK must be resolved exclusively in the U.S. District Court for the Northern District of California or a state court located in San Mateo County, that you submit to the personal jurisdiction of either of these courts for the purpose of litigating any such claim, and that the laws of the State of California will govern this Agreement and any such claim, without regard to conflict of law provisions. + + 7.4.2 If you reside in the US or your business is located in the US: You and we agree to arbitrate any claim, cause of action, or dispute between you and us that arises out of or relates to any access or use of the SDK for business or commercial purposes (“commercial claim”). This provision does not cover any commercial claims relating to violations of your or our intellectual property rights, including, but not limited to, copyright infringement, patent infringement, trademark infringement, violations of the brand guidelines, violations of your or our confidential information or trade secrets, or efforts to interfere with our products or engage with our products in unauthorized ways (for example, automated ways). + + 7.4.3 We and you agree that, by entering into this arbitration provision all parties are waiving their respective rights to a trial by jury or to participate in a class or representative action. THE PARTIES AGREE THAT EACH MAY BRING COMMERCIAL CLAIMS AGAINST THE OTHER ONLY IN ITS INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS, REPRESENTATIVE, OR PRIVATE ATTORNEY GENERAL PROCEEDING. You may bring a commercial claim only on your own behalf and cannot seek relief that would affect other parties. If there is a final judicial determination that any particular commercial claim (or a request for particular relief) cannot be arbitrated in accordance with this paragraph’s limitations, then only that commercial claim (or only that request for relief) may be brought in court. All other commercial claims (or requests for relief) remain subject to this paragraph. + + 7.4.4 The Federal Arbitration Act governs the interpretation and enforcement of this arbitration provision. All issues are for an arbitrator to decide, except that only a court may decide issues relating to the scope or enforceability of this arbitration provision or the interpretation of the prohibition of class and representative actions. + + 7.4.5 If any party intends to seek arbitration of a dispute, that party must provide the other party with notice in writing. + + 7.4.6 The arbitration will be governed by the AAA’s Commercial Arbitration Rules (“AAA Rules”), as modified by this Agreement, and will be administered by the AAA. If the AAA is unavailable, the parties will agree to another arbitration provider or the court will appoint a substitute. The arbitrator will not be bound by rulings in other arbitrations in which you are not a party. To the fullest extent permitted by applicable law, any evidentiary submissions made in arbitration will be maintained as confidential in the absence of good cause for its disclosure. The arbitrator’s award will be maintained as confidential only to the extent necessary to protect either party’s trade secrets or proprietary business information or to comply with a legal requirement mandating confidentiality. Each party will be responsible for paying any AAA filing, administrative and arbitrator fees in accordance with AAA Rules, except that we will pay for your filing, administrative, and arbitrator fees if your commercial claim for damages does not exceed $75,000 and is non-frivolous (as measured by the standards set forth in Federal Rule of Civil Procedure 11(b)). + + 7.4.7 If you do not wish to be bound by this provision (including its waiver of class and representative claims), you must notify us as set forth below within 30 days of the first acceptance date of any version of this Agreement containing an arbitration provision. Your notice to us under this subsection must be submitted to the address here: Facebook Technologies, LLC, 1 Hacker Way, Menlo Park, California 94025 + + 7.4.8 All commercial claims between us, whether subject to arbitration or not, will be governed by California law, excluding California’s conflict of laws rules, except to the extent that California law is contrary to or preempted by federal law. + + 7.4.9 If a commercial claim between you and us is not subject to arbitration, you agree that the claim must be resolved exclusively in the U.S. District Court for the Northern District of California or a state court located in San Mateo County, and that you submit to the personal jurisdiction of either of these courts for the purpose of litigating any such claim. + + 7.4.10 If any provision of this dispute resolution provision is found unenforceable, that provision will be severed and the balance of the dispute resolution provision will remain in full force and effect. json: oculus-sdk-2020.json - yml: oculus-sdk-2020.yml + yaml: oculus-sdk-2020.yml html: oculus-sdk-2020.html - text: oculus-sdk-2020.LICENSE + license: oculus-sdk-2020.LICENSE - license_key: oculus-sdk-3.5 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-oculus-sdk-3.5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Oculus Software Development Kit License Agreement + + Copyright © Facebook Technologies, LLC and its affiliates. All rights reserved. + + The Oculus SDK License Agreement became effective on June 1, 2020, and governs your use of all Oculus SDKs. The agreement below is no longer in effect. + + *************************************************************** + + The text of this may be found at: https://developer.oculus.com/licenses/sdk-3.5/ + + In order to obtain and use the Oculus Software Development Kit for mobile or for PC, You must first agree to the terms of this License. If you agree to the terms of this License, you may use the Oculus Software Development Kit. If you do not agree to the terms of this License, then you may not use the Oculus Software Development Kit. + OCULUS SDK LICENSE + + 1. Subject to the terms and conditions of this License Agreement (the "License"), Facebook Technologies, LLC formerly known as Oculus VR, LLC ("Oculus") hereby grants to you a worldwide, non-exclusive, no-charge, royalty-free, sublicenseable copyright license to use, reproduce and redistribute (subject to restrictions below) the software contained in this Oculus Software Development Kit for PC and/or mobile ("Oculus SDK"), including, but not limited to, the samples, headers, LibOVR and VRLib headers, LibOVR and VRLib source and, subject to your compliance with Section 3, the headers, libraries and APIs to enable the Platform Services. This License is subject to the following terms and conditions: + + 1.1 This license grants you the non-exclusive license and right to use (i) the Oculus SDK to make engines, tools, applications, content, games and demos (collectively and generally referred to as "Developer Content") for use on the Oculus approved hardware and software products ("Oculus Approved Products") and which may incorporate the Oculus SDK in whole or in part in binary or object code; and (ii) the headers, libraries, APIs and other tools made available by Oculus to enable the use of Platform Services with your Developer Content. + + 1.2 For the sake of clarification, when you use the Oculus SDK in or with Developer Content, you retain all rights to your Developer Content, and you have no obligations to share or license Developer Content (including your source and object code) to Oculus or any third parties; provided, however, Oculus retains all rights to the Oculus SDK and the headers, libraries and APIs to the Platform Services and other tools made available by Oculus, including those that may be incorporated into your Developer Content. + + 1.3 You agree that as a condition of this License you will design and distribute your Developer Content to ensure that your Developer Content and any software required to use your Developer Content does not, and you will not, alter or interfere with the normal operation, behavior or functionality of the Oculus hardware or software or Oculus Approved Products, including: (i) the behavior of the "Oculus button" and "XBox button" implemented by the Oculus system software; (ii) any on-screen messages or information; (iii) the behavior of the proximity sensor in the Oculus hardware implemented by the Oculus system software; (iv) Oculus hardware or software security features; (v) end user's settings; or (vi) the Oculus Flash Screen Warnings. You also agree not to commit any act intended to interfere with the normal operation of the Oculus hardware or software or Oculus Approved Products, or provide software to Oculus users or developers that would induce breach of any Oculus agreements or that contains malware, viruses, hacks, bots, Trojan horses, or other malicious code. + + 1.4 You may not use the Oculus SDK for any purpose not expressly permitted by this License. You may not (except as and only to the extent any following restriction is prohibited by applicable law): (a) decompile; (b) reverse engineer; (c) disassemble; (d) attempt to derive the source code of the Oculus SDK or any part of the Oculus SDK, or any other software or firmware provided to you by Oculus. + REDISTRIBUTION + + 2. Subject to the terms and conditions of this License, your license to redistribute and sublicense the Oculus SDK is also expressly made subject to the following conditions: + + 2.1 You may sublicense and redistribute the source, binary, or object code of the Oculus SDK in whole for no charge or as part of a for-charge piece of Developer Content; provided, however, you may only license, sublicense or redistribute the source, binary or object code of the Oculus SDK in its entirety. The Oculus SDK (including, but not limited to LibOVR and VRLib), and any Developer Content that includes any portion of the Oculus SDK, may only be used with Oculus Approved Products and may not be used, licensed, or sublicensed to interface with software or hardware or other commercial headsets, mobile tablets or phones that are not authorized and approved by Oculus; + + 2.2 You must include with all such redistributed or sublicensed Oculus SDK code the following copyright notice: “Copyright © Facebook Technologies, LLC and its affiliates. All rights reserved.” + + 2.3 You must give any other recipients of the Oculus SDK a copy of this License as such recipients, licensees or sublicensees may only use the Oculus SDK subject to the terms of this License and such recipient's, licensee's or sublicensee's agreement to and acceptance of this License with Oculus; and + + 2.4 The Oculus SDK includes a "LICENSE" text file (the "License Notice"), and any Oculus SDK distribution that you distribute must include a copy of this License with the License Notice. + OCULUS PLATFORM SERVICES + + 3. Oculus makes the headers, libraries and APIs, software, and other tools made available by Oculus to enable Platform Services in connection with your Developer Content. You agree not to use any API, code or other tools, instruction or service provided by Oculus to enable or use a Platform Service other than in compliance with these terms. For more information go to https://developer.oculus.com. + + "Oculus Platform Framework" means the suite of Oculus platform services, including but not limited to the Oculus file distribution and update system (enabling distribution and updates of Developer Content by Oculus, including through generated activation Keys), entitlement system, and account authentication, which list may be changed from time to time in Oculus' sole discretion. + "Application Services" means services provided by Oculus associated with the Platform, including but not limited to in-app purchasing, multiplayer matchmaking, friends, leader boards, achievements, rooms, voice over IP and cloud saves, which list may be changed from time to time in Oculus' sole discretion. + "Platform" means the Oculus virtual reality platform, including but not limited to the user experience, user interface, store, and social features, usable on Oculus approved hardware or any third-party device or operating system, including but not limited to iOS, Android, Windows, OS X, Linux, and Windows Mobile. + "Platform Services" means the Oculus Platform Framework and the Application Services. + + 3.1 Oculus Platform Services. Oculus makes certain Platform Services available to you to include and enable in your Developer Content. Developer Content that enables or includes any Platform Service must implement the Oculus Platform Framework with that Developer Content. Once your Developer Content has been authorized for use of the Platform Services, you are not required to update your Developer Content to include new Platform Services Oculus may make available as part of the Oculus Platform Framework. + + 3.2 Limited Authorization. You hereby grant Oculus the limited authorization reasonably necessary for Oculus's exercise of its rights and performance of its obligations under this Section 3. You agree that Oculus may use its contractors and affiliates for the purposes of exercising its rights and licenses set forth in this Section 3. + + 3.3. Internal Use. You agree that Oculus may grant its employees and internal contractors the right to use, perform and display the Developer Content you provide to Oculus for testing, evaluation and approval purposes, which shall be on a royalty-free basis. + + 3.4 Key Provision and Redemption. If you request that Oculus generate activation keys for your Developer Content on the Platform ("Keys") and Oculus agrees, you hereby grant Oculus (i) the right to generate Keys for you and (ii) a license to make available, reproduce, distribute, perform, and display the Developer Content to end users who have submitted a Key to Oculus. Oculus agrees to authenticate and make Developer Content available to any end user supplying a valid Key (unless the Developer Content has been removed or withdrawn). + + 3.5 Platform Services Requirements. You will not make any use of any API, software, code or other item or information supplied by Oculus in connection with the Platform Services other than to enhance the functionality of your Developer Content. In particular, you must not (nor enable others to): (i) defame, abuse, harass, stalk, or threaten others, or to promote or facilitate any prohibited or illegal activities; (ii) enable any functionality in your Developer Content that would generate excessive traffic over the Oculus network or servers that would negatively impact other users' experience, or otherwise interfere with or restrict the operation of the Platform Services, or Oculus's servers or networks providing the Platform Services; or (iii) remove, obscure, or alter any Oculus license terms, policies or terms of service or any links to or notices thereto. You may not sublicense any software, firmware or other item or information supplied by Oculus in connection with the Platform Service for use by a third party, unless expressly authorized by Oculus to do so. You agree not to use (or encourage the use of) the Platform Services for mission critical, life saving or ultra-hazardous activities. Oculus may suspend operation of or remove any Developer Content that does not comply with the restrictions in this License. + + You will not use the Oculus Avatar associated with the Oculus ID of any end user in your Developer Content without the express permission of that end user unless, (i) that end user is actively engaged with your Developer Content or (ii) that end user remains part of an active session of your Developer Content with whom other end users are interacting, whether or not that end user is then online. + GENERAL PROVISIONS + + 4. Additional Materials + + 4.1 Oculus may include in this Oculus SDK additional content (e.g., samples) for demonstration, references or other specific purposes. Such content will be clearly marked in the Oculus SDK and is subject to any included terms and conditions. + + 4.2 Your use of third-party materials included in the Oculus SDK may be subject to other terms and conditions typically found in separate third-party license agreements or "READ ME" files included with such third-party materials. To the extent such other terms and conditions conflict with the terms and conditions of this License, the former will control with respect to the applicable third-party materials. + + 5. THE OCULUS SDK AND ANY COMPONENT THEREOF, THE OCULUS HEADERS, LIBRARIES AND APIS, AND THE PLATFORM SERVICES FROM OCULUS AND ITS CONTRIBUTORS ARE PROVIDED "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 OCULUS AS THE COPYRIGHT OWNER 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 OCULUS SDK, THE OCULUS HEADERS, LIBRARIES AND APIS OR THE PLATFORM SERVICES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. SOME JURISDICTIONS DO NOT PERMIT THE EXCLUSION OR LIMITATION OF IMPLIED WARRANTIES, SO YOU MAY HAVE ADDITIONAL RIGHTS. + + 6. This License does not grant permission to use the trade names, trademarks, service marks, or product names of Oculus, except as required for reasonable and customary use in describing the origin of the Oculus SDK, and reproducing the content of the License Notice file. Oculus reserves all rights not expressly granted to you under this License. Neither the name of Facebook Technologies, LLC, Oculus VR, LLC, Oculus, nor the names of Oculus’s contributors, licensors, employees, or contractors, may be used to endorse or promote products developed using the Oculus SDK without specific prior written permission of Oculus. + + 7. You are responsible for ensuring that your use of the Oculus SDK and your Developer Content, including enabled Platform Services, complies with all applicable laws (including privacy laws) wherever your Developer Content is made available. You acknowledge and agree that you are solely responsible for any health and safety issues arising from your Developer Content. You will not collect end users' content or information, or otherwise access any Oculus site, using automated means (such as harvesting bots, robots, spiders, or scrapers) without Oculus' prior permission. + + 8. Your acceptance of the terms and conditions of this License in and of itself and for all Developer Content created as of March 28, 2016, may be evidenced by any of the following: your usage of the Oculus SDK, or acceptance of the license agreement. As this License is updated for future releases of the Oculus SDK, you agree to abide by and meet all requirements of future updates of this License for those future Oculus SDK releases, with acceptance evidenced by usage of the Oculus SDK or any element thereof and the future updates of this License will apply for that future Developer Content that may be developed for or with that future Oculus SDK or any element thereof (i.e., you cannot sidestep out of the requirements of future updates of the License by developing against an older release of the Oculus SDK or License). + + 9. Oculus reserves the right to terminate this License and all your rights hereunder immediately in the event you materially breach this License. + + 10. Furthermore, Oculus also reserves the right to cancel or terminate this License for any of the following reasons: + + Intellectual property infringement by you with Developer Content created by you that is used with or by the Oculus SDK, or any of the Platform Services; + Developer Content (including enabling Platform Services) that violates applicable law; + Health and safety issues associated with your Developer Content; + Failure to comply with or use properly the Oculus Flash Screen Warnings; + Use of the Oculus SDK with a commercial product other than an Oculus Approved Product; + Failure to provide required notices as set forth above; and + Failure to observe the restrictions in Section 3.5. + + 11. You agree to fully indemnify Oculus from any and all losses, costs, damages and expenses (including reasonable attorney's fees) arising out of your Developer Content or any matter set forth in Sections 6, 7 and 10(a) through (g). + + 12. Oculus may discontinue or change functionality of the Platform Services at any time, and your continued use of the Platform Services or use of any modified or additional Platform Services is conditioned upon your adherence to the terms of this License, as modified by Oculus from time to time. + + 13. In the event any provision of this License is determined to be invalid, prohibited or unenforceable by a court or other body of competent jurisdiction, this License shall be construed as if such invalid, prohibited or unenforceable provision has been more narrowly drawn so as not to be invalid, prohibited or unenforceable. + + 14. You may not assign any rights or obligations under this License without the advance written consent of Oculus, which may be withheld in its sole discretion. Oculus may assign its rights or obligations under this License in its sole discretion. + + 15. Failure of either party at any time to enforce any of the provisions of this License will not be construed as a waiver of such provisions or in any way affect the validity of this License or parts thereof. + + 16. Your remedies under this License shall be limited to the right to collect money damages, if any, and you hereby waive your right to injunctive or other equitable relief. + + 17. You will comply, and will not cause Oculus to not comply (by for example, providing Developer Content to Oculus under this Agreement for which required export clearances have not been obtained), with all applicable export control laws of the United States and any other applicable governmental authority, including without limitation, the U.S. Export Administration Regulations. You agree that this License and the Oculus SDK and accompanying documentation are Oculus's confidential information (and is not publicly available), and you will not use it, disclose it or make it available to others except in accordance with the terms of this License. + + 18. This License shall be governed by the laws of the State of California, without giving effect to conflict of laws provisions or principles thereof. The parties agree that, except as provided below, all disputes relating to this License shall be resolved by binding non-appearance-based arbitration before a single neutral arbitrator in San Francisco, California. The arbitration will be conducted in the English language by a single arbitrator who is an attorney-at-law with at least fifteen (15) years’ experience in consumer and technology transactions and who is also a member of the JAMS roster of arbitrators. If You and Oculus cannot agree on a mutually acceptable arbitrator within thirty (30) days after the arbitration is initiated, then JAMS will pick a neutral arbitrator who meets such qualifications. The arbitration shall be conducted in accordance with the rules and procedures of JAMS then in effect, and the judgment of the arbitrator shall be final and capable of entry in any court of competent jurisdiction. The parties undertake to keep confidential all awards in their arbitration, together with all materials in the proceedings created for the purpose of the arbitration and all other documents produced by another party in the proceedings not otherwise in the public domain, save and to the extent that disclosure may be required of a party by legal duty, to protect or pursue a legal right or to enforce or challenge an award in legal proceedings before a court or other judicial authority. You and Oculus agree the following may be submitted to a court of competent jurisdiction located within San Francisco, California and further agree to submit to the personal jurisdiction of the courts located within San Francisco, California in connection with (a) any entrance of an arbitrator's judgment or decision, (b) any dispute with respect to the arbitration process or procedure, (c) Oculus’ exercise of any of its equitable rights or remedies or (d) any claims regarding the ownership, validity, enforceability and/or infringement of any intellectual property rights. json: oculus-sdk-3.5.json - yml: oculus-sdk-3.5.yml + yaml: oculus-sdk-3.5.yml html: oculus-sdk-3.5.html - text: oculus-sdk-3.5.LICENSE + license: oculus-sdk-3.5.LICENSE - license_key: odbl-1.0 + category: Copyleft spdx_license_key: ODbL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "## ODC Open Database License (ODbL)\n\n### Preamble\n\nThe Open Database License (ODbL)\ + \ is a license agreement intended to\nallow users to freely share, modify, and use this\ + \ Database while\nmaintaining this same freedom for others. Many databases are covered by\n\ + copyright, and therefore this document licenses these rights. Some\njurisdictions, mainly\ + \ in the European Union, have specific rights that\ncover databases, and so the ODbL addresses\ + \ these rights, too. Finally,\nthe ODbL is also an agreement in contract for users of this\ + \ Database to\nact in certain ways in return for accessing this Database.\n\nDatabases can\ + \ contain a wide variety of types of content (images,\naudiovisual material, and sounds\ + \ all in the same database, for example),\nand so the ODbL only governs the rights over\ + \ the Database, and not the\ncontents of the Database individually. Licensors should use\ + \ the ODbL\ntogether with another license for the contents, if the contents have a\nsingle\ + \ set of rights that uniformly covers all of the contents. If the\ncontents have multiple\ + \ sets of different rights, Licensors should\ndescribe what rights govern what contents\ + \ together in the individual\nrecord or in some other way that clarifies what rights apply.\ + \ \n\nSometimes the contents of a database, or the database itself, can be\ncovered by other\ + \ rights not addressed here (such as private contracts,\ntrade mark over the name, or privacy\ + \ rights / data protection rights\nover information in the contents), and so you are advised\ + \ that you may\nhave to consult other documents or clear other rights before doing\nactivities\ + \ not covered by this License.\n\n------\n\nThe Licensor (as defined below) \n\nand \n\n\ + You (as defined below) \n\nagree as follows: \n\n### 1.0 Definitions of Capitalised Words\n\ + \n\"Collective Database\" – Means this Database in unmodified form as part\nof a collection\ + \ of independent databases in themselves that together are\nassembled into a collective\ + \ whole. A work that constitutes a Collective\nDatabase will not be considered a Derivative\ + \ Database.\n\n\"Convey\" – As a verb, means Using the Database, a Derivative Database,\n\ + or the Database as part of a Collective Database in any way that enables\na Person to make\ + \ or receive copies of the Database or a Derivative\nDatabase. Conveying does not include\ + \ interaction with a user through a\ncomputer network, or creating and Using a Produced\ + \ Work, where no\ntransfer of a copy of the Database or a Derivative Database occurs.\n\"\ + Contents\" – The contents of this Database, which includes the\ninformation, independent\ + \ works, or other material collected into the\nDatabase. For example, the contents of the\ + \ Database could be factual\ndata or works such as images, audiovisual material, text, or\ + \ sounds.\n\n\"Database\" – A collection of material (the Contents) arranged in a\nsystematic\ + \ or methodical way and individually accessible by electronic\nor other means offered under\ + \ the terms of this License.\n\n\"Database Directive\" – Means Directive 96/9/EC of the\ + \ European\nParliament and of the Council of 11 March 1996 on the legal protection\nof databases,\ + \ as amended or succeeded.\n\n\"Database Right\" – Means rights resulting from the Chapter\ + \ III (\"sui\ngeneris\") rights in the Database Directive (as amended and as transposed\n\ + by member states), which includes the Extraction and Re-utilisation of\nthe whole or a Substantial\ + \ part of the Contents, as well as any similar\nrights available in the relevant jurisdiction\ + \ under Section 10.4. \n\n\"Derivative Database\" – Means a database based upon the Database,\ + \ and\nincludes any translation, adaptation, arrangement, modification, or any\nother alteration\ + \ of the Database or of a Substantial part of the\nContents. This includes, but is not limited\ + \ to, Extracting or\nRe-utilising the whole or a Substantial part of the Contents in a new\n\ + Database.\n\n\"Extraction\" – Means the permanent or temporary transfer of all or a\nSubstantial\ + \ part of the Contents to another medium by any means or in\nany form.\n\n\"License\" –\ + \ Means this license agreement and is both a license of rights\nsuch as copyright and Database\ + \ Rights and an agreement in contract.\n\n\"Licensor\" – Means the Person that offers the\ + \ Database under the terms\nof this License. \n\n\"Person\" – Means a natural or legal person\ + \ or a body of persons\ncorporate or incorporate.\n\n\"Produced Work\" – a work (such as\ + \ an image, audiovisual material, text,\nor sounds) resulting from using the whole or a\ + \ Substantial part of the\nContents (via a search or other query) from this Database, a\ + \ Derivative\nDatabase, or this Database as part of a Collective Database. \n\n\"Publicly\"\ + \ – means to Persons other than You or under Your control by\neither more than 50% ownership\ + \ or by the power to direct their\nactivities (such as contracting with an independent consultant).\ + \ \n\n\"Re-utilisation\" – means any form of making available to the public all\nor a Substantial\ + \ part of the Contents by the distribution of copies, by\nrenting, by online or other forms\ + \ of transmission.\n\n\"Substantial\" – Means substantial in terms of quantity or quality\ + \ or a\ncombination of both. The repeated and systematic Extraction or\nRe-utilisation of\ + \ insubstantial parts of the Contents may amount to the\nExtraction or Re-utilisation of\ + \ a Substantial part of the Contents.\n\n\"Use\" – As a verb, means doing any act that is\ + \ restricted by copyright\nor Database Rights whether in the original medium or any other;\ + \ and\nincludes without limitation distributing, copying, publicly performing,\npublicly\ + \ displaying, and preparing derivative works of the Database, as\nwell as modifying the\ + \ Database as may be technically necessary to use it\nin a different mode or format. \n\n\ + \"You\" – Means a Person exercising rights under this License who has not\npreviously violated\ + \ the terms of this License with respect to the\nDatabase, or who has received express permission\ + \ from the Licensor to\nexercise rights under this License despite a previous violation.\n\ + \nWords in the singular include the plural and vice versa.\n\n### 2.0 What this License\ + \ covers\n\n2.1. Legal effect of this document. This License is:\n\na. A license of applicable\ + \ copyright and neighbouring rights;\n\nb. A license of the Database Right; and\n\nc. An\ + \ agreement in contract between You and the Licensor.\n\n2.2 Legal rights covered. This\ + \ License covers the legal rights in the\nDatabase, including:\n\na. Copyright. Any copyright\ + \ or neighbouring rights in the Database.\nThe copyright licensed includes any individual\ + \ elements of the\nDatabase, but does not cover the copyright over the Contents\nindependent\ + \ of this Database. See Section 2.4 for details. Copyright\nlaw varies between jurisdictions,\ + \ but is likely to cover: the Database\nmodel or schema, which is the structure, arrangement,\ + \ and organisation\nof the Database, and can also include the Database tables and table\n\ + indexes; the data entry and output sheets; and the Field names of\nContents stored in the\ + \ Database;\n\nb. Database Rights. Database Rights only extend to the Extraction and\nRe-utilisation\ + \ of the whole or a Substantial part of the Contents.\nDatabase Rights can apply even when\ + \ there is no copyright over the\nDatabase. Database Rights can also apply when the Contents\ + \ are removed\nfrom the Database and are selected and arranged in a way that would\nnot\ + \ infringe any applicable copyright; and\n\nc. Contract. This is an agreement between You\ + \ and the Licensor for\naccess to the Database. In return you agree to certain conditions\ + \ of\nuse on this access as outlined in this License. \n\n2.3 Rights not covered. \n\na.\ + \ This License does not apply to computer programs used in the making\nor operation of the\ + \ Database; \n\nb. This License does not cover any patents over the Contents or the\nDatabase;\ + \ and\n\nc. This License does not cover any trademarks associated with the\nDatabase. \n\ + \n2.4 Relationship to Contents in the Database. The individual items of\nthe Contents contained\ + \ in this Database may be covered by other rights,\nincluding copyright, patent, data protection,\ + \ privacy, or personality\nrights, and this License does not cover any rights (other than\ + \ Database\nRights or in contract) in individual Contents contained in the Database.\nFor\ + \ example, if used on a Database of images (the Contents), this\nLicense would not apply\ + \ to copyright over individual images, which could\nhave their own separate licenses, or\ + \ one single license covering all of\nthe rights over the images. \n\n### 3.0 Rights granted\n\ + \n3.1 Subject to the terms and conditions of this License, the Licensor\ngrants to You a\ + \ worldwide, royalty-free, non-exclusive, terminable (but\nonly under Section 9) license\ + \ to Use the Database for the duration of\nany applicable copyright and Database Rights.\ + \ These rights explicitly\ninclude commercial use, and do not exclude any field of endeavour.\ + \ To\nthe extent possible in the relevant jurisdiction, these rights may be\nexercised in\ + \ all media and formats whether now known or created in the\nfuture. \n\nThe rights granted\ + \ cover, for example:\n\na. Extraction and Re-utilisation of the whole or a Substantial\ + \ part of\nthe Contents;\n\nb. Creation of Derivative Databases;\n\nc. Creation of Collective\ + \ Databases;\n\nd. Creation of temporary or permanent reproductions by any means and\nin\ + \ any form, in whole or in part, including of any Derivative\nDatabases or as a part of\ + \ Collective Databases; and\n\ne. Distribution, communication, display, lending, making\ + \ available, or\nperformance to the public by any means and in any form, in whole or in\n\ + part, including of any Derivative Database or as a part of Collective\nDatabases.\n\n3.2\ + \ Compulsory license schemes. For the avoidance of doubt:\n\na. Non-waivable compulsory\ + \ license schemes. In those jurisdictions in\nwhich the right to collect royalties through\ + \ any statutory or\ncompulsory licensing scheme cannot be waived, the Licensor reserves\n\ + the exclusive right to collect such royalties for any exercise by You\nof the rights granted\ + \ under this License;\n\nb. Waivable compulsory license schemes. In those jurisdictions\ + \ in\nwhich the right to collect royalties through any statutory or\ncompulsory licensing\ + \ scheme can be waived, the Licensor waives the\nexclusive right to collect such royalties\ + \ for any exercise by You of\nthe rights granted under this License; and,\n\nc. Voluntary\ + \ license schemes. The Licensor waives the right to collect\nroyalties, whether individually\ + \ or, in the event that the Licensor is\na member of a collecting society that administers\ + \ voluntary licensing\nschemes, via that society, from any exercise by You of the rights\n\ + granted under this License.\n\n3.3 The right to release the Database under different terms,\ + \ or to stop\ndistributing or making available the Database, is reserved. Note that\nthis\ + \ Database may be multiple-licensed, and so You may have the choice\nof using alternative\ + \ licenses for this Database. Subject to Section\n10.4, all other rights not expressly granted\ + \ by Licensor are reserved.\n\n### 4.0 Conditions of Use\n\n4.1 The rights granted in Section\ + \ 3 above are expressly made subject to\nYour complying with the following conditions of\ + \ use. These are important\nconditions of this License, and if You fail to follow them,\ + \ You will be\nin material breach of its terms.\n\n4.2 Notices. If You Publicly Convey this\ + \ Database, any Derivative\nDatabase, or the Database as part of a Collective Database,\ + \ then You\nmust: \n\na. Do so only under the terms of this License or another license\n\ + permitted under Section 4.4;\n\nb. Include a copy of this License (or, as applicable, a\ + \ license\npermitted under Section 4.4) or its Uniform Resource Identifier (URI)\nwith the\ + \ Database or Derivative Database, including both in the\nDatabase or Derivative Database\ + \ and in any relevant documentation; and\n\nc. Keep intact any copyright or Database Right\ + \ notices and notices\nthat refer to this License.\n\nd. If it is not possible to put the\ + \ required notices in a particular\nfile due to its structure, then You must include the\ + \ notices in a\nlocation (such as a relevant directory) where users would be likely to\n\ + look for it.\n\n4.3 Notice for using output (Contents). Creating and Using a Produced\n\ + Work does not require the notice in Section 4.2. However, if you\nPublicly Use a Produced\ + \ Work, You must include a notice associated with\nthe Produced Work reasonably calculated\ + \ to make any Person that uses,\nviews, accesses, interacts with, or is otherwise exposed\ + \ to the Produced\nWork aware that Content was obtained from the Database, Derivative\n\ + Database, or the Database as part of a Collective Database, and that it\nis available under\ + \ this License.\n\na. Example notice. The following text will satisfy notice under\nSection\ + \ 4.3:\n\nContains information from DATABASE NAME, which is made available\nhere under the\ + \ Open Database License (ODbL).\n\nDATABASE NAME should be replaced with the name of the\ + \ Database and a\nhyperlink to the URI of the Database. \"Open Database License\" should\n\ + contain a hyperlink to the URI of the text of this License. If\nhyperlinks are not possible,\ + \ You should include the plain text of the\nrequired URI's with the above notice.\n\n4.4\ + \ Share alike. \n\na. Any Derivative Database that You Publicly Use must be only under\n\ + the terms of: \n\ni. This License;\n\nii. A later version of this License similar in spirit\ + \ to this\nLicense; or\n\niii. A compatible license. \n\nIf You license the Derivative Database\ + \ under one of the licenses\nmentioned in (iii), You must comply with the terms of that\ + \ license. \n\nb. For the avoidance of doubt, Extraction or Re-utilisation of the\nwhole\ + \ or a Substantial part of the Contents into a new database is a\nDerivative Database and\ + \ must comply with Section 4.4. \n\nc. Derivative Databases and Produced Works. A Derivative\ + \ Database is\nPublicly Used and so must comply with Section 4.4. if a Produced Work\ncreated\ + \ from the Derivative Database is Publicly Used.\n\nd. Share Alike and additional Contents.\ + \ For the avoidance of doubt,\nYou must not add Contents to Derivative Databases under Section\ + \ 4.4 a\nthat are incompatible with the rights granted under this License. \n\ne. Compatible\ + \ licenses. Licensors may authorise a proxy to determine\ncompatible licenses under Section\ + \ 4.4 a iii. If they do so, the\nauthorised proxy's public statement of acceptance of a\ + \ compatible\nlicense grants You permission to use the compatible license.\n\n\n4.5 Limits\ + \ of Share Alike. The requirements of Section 4.4 do not apply\nin the following:\n\na.\ + \ For the avoidance of doubt, You are not required to license\nCollective Databases under\ + \ this License if You incorporate this\nDatabase or a Derivative Database in the collection,\ + \ but this License\nstill applies to this Database or a Derivative Database as a part of\n\ + the Collective Database; \n\nb. Using this Database, a Derivative Database, or this Database\ + \ as\npart of a Collective Database to create a Produced Work does not\ncreate a Derivative\ + \ Database for purposes of Section 4.4; and\n\nc. Use of a Derivative Database internally\ + \ within an organisation is\nnot to the public and therefore does not fall under the requirements\n\ + of Section 4.4.\n\n4.6 Access to Derivative Databases. If You Publicly Use a Derivative\n\ + Database or a Produced Work from a Derivative Database, You must also\noffer to recipients\ + \ of the Derivative Database or Produced Work a copy\nin a machine readable form of:\n\n\ + a. The entire Derivative Database; or\n\nb. A file containing all of the alterations made\ + \ to the Database or\nthe method of making the alterations to the Database (such as an\n\ + algorithm), including any additional Contents, that make up all the\ndifferences between\ + \ the Database and the Derivative Database.\n\nThe Derivative Database (under a.) or alteration\ + \ file (under b.) must be\navailable at no more than a reasonable production cost for physical\n\ + distributions and free of charge if distributed over the internet.\n\n4.7 Technological\ + \ measures and additional terms\n\na. This License does not allow You to impose (except\ + \ subject to\nSection 4.7 b.) any terms or any technological measures on the\nDatabase,\ + \ a Derivative Database, or the whole or a Substantial part of\nthe Contents that alter\ + \ or restrict the terms of this License, or any\nrights granted under it, or have the effect\ + \ or intent of restricting\nthe ability of any person to exercise those rights.\n\nb. Parallel\ + \ distribution. You may impose terms or technological\nmeasures on the Database, a Derivative\ + \ Database, or the whole or a\nSubstantial part of the Contents (a \"Restricted Database\"\ + ) in\ncontravention of Section 4.74 a. only if You also make a copy of the\nDatabase or\ + \ a Derivative Database available to the recipient of the\nRestricted Database:\n\ni. That\ + \ is available without additional fee;\n\nii. That is available in a medium that does not\ + \ alter or restrict\nthe terms of this License, or any rights granted under it, or have\n\ + the effect or intent of restricting the ability of any person to\nexercise those rights\ + \ (an \"Unrestricted Database\"); and\n\niii. The Unrestricted Database is at least as accessible\ + \ to the\nrecipient as a practical matter as the Restricted Database.\n\nc. For the avoidance\ + \ of doubt, You may place this Database or a\nDerivative Database in an authenticated environment,\ + \ behind a\npassword, or within a similar access control scheme provided that You\ndo not\ + \ alter or restrict the terms of this License or any rights\ngranted under it or have the\ + \ effect or intent of restricting the\nability of any person to exercise those rights. \n\ + \n4.8 Licensing of others. You may not sublicense the Database. Each time\nYou communicate\ + \ the Database, the whole or Substantial part of the\nContents, or any Derivative Database\ + \ to anyone else in any way, the\nLicensor offers to the recipient a license to the Database\ + \ on the same\nterms and conditions as this License. You are not responsible for\nenforcing\ + \ compliance by third parties with this License, but You may\nenforce any rights that You\ + \ have over a Derivative Database. You are\nsolely responsible for any modifications of\ + \ a Derivative Database made\nby You or another Person at Your direction. You may not impose\ + \ any\nfurther restrictions on the exercise of the rights granted or affirmed\nunder this\ + \ License.\n\n### 5.0 Moral rights\n\n5.1 Moral rights. This section covers moral rights,\ + \ including any rights\nto be identified as the author of the Database or to object to treatment\n\ + that would otherwise prejudice the author's honour and reputation, or\nany other derogatory\ + \ treatment:\n\na. For jurisdictions allowing waiver of moral rights, Licensor waives\n\ + all moral rights that Licensor may have in the Database to the fullest\nextent possible\ + \ by the law of the relevant jurisdiction under Section\n10.4; \n\nb. If waiver of moral\ + \ rights under Section 5.1 a in the relevant\njurisdiction is not possible, Licensor agrees\ + \ not to assert any moral\nrights over the Database and waives all claims in moral rights\ + \ to the\nfullest extent possible by the law of the relevant jurisdiction under\nSection\ + \ 10.4; and\n\nc. For jurisdictions not allowing waiver or an agreement not to assert\n\ + moral rights under Section 5.1 a and b, the author may retain their\nmoral rights over certain\ + \ aspects of the Database.\n\nPlease note that some jurisdictions do not allow for the waiver\ + \ of moral\nrights, and so moral rights may still subsist over the Database in some\njurisdictions.\n\ + \n### 6.0 Fair dealing, Database exceptions, and other rights not affected \n\n6.1 This\ + \ License does not affect any rights that You or anyone else may\nindependently have under\ + \ any applicable law to make any use of this\nDatabase, including without limitation:\n\n\ + a. Exceptions to the Database Right including: Extraction of Contents\nfrom non-electronic\ + \ Databases for private purposes, Extraction for\npurposes of illustration for teaching\ + \ or scientific research, and\nExtraction or Re-utilisation for public security or an administrative\n\ + or judicial procedure. \n\nb. Fair dealing, fair use, or any other legally recognised limitation\n\ + or exception to infringement of copyright or other applicable laws. \n\n6.2 This License\ + \ does not affect any rights of lawful users to Extract\nand Re-utilise insubstantial parts\ + \ of the Contents, evaluated\nquantitatively or qualitatively, for any purposes whatsoever,\ + \ including\ncreating a Derivative Database (subject to other rights over the\nContents,\ + \ see Section 2.4). The repeated and systematic Extraction or\nRe-utilisation of insubstantial\ + \ parts of the Contents may however amount\nto the Extraction or Re-utilisation of a Substantial\ + \ part of the\nContents.\n\n### 7.0 Warranties and Disclaimer\n\n7.1 The Database is licensed\ + \ by the Licensor \"as is\" and without any\nwarranty of any kind, either express, implied,\ + \ or arising by statute,\ncustom, course of dealing, or trade usage. Licensor specifically\n\ + disclaims any and all implied warranties or conditions of title,\nnon-infringement, accuracy\ + \ or completeness, the presence or absence of\nerrors, fitness for a particular purpose,\ + \ merchantability, or otherwise.\nSome jurisdictions do not allow the exclusion of implied\ + \ warranties, so\nthis exclusion may not apply to You.\n\n### 8.0 Limitation of liability\n\ + \n8.1 Subject to any liability that may not be excluded or limited by law,\nthe Licensor\ + \ is not liable for, and expressly excludes, all liability\nfor loss or damage however and\ + \ whenever caused to anyone by any use\nunder this License, whether by You or by anyone\ + \ else, and whether caused\nby any fault on the part of the Licensor or not. This exclusion\ + \ of\nliability includes, but is not limited to, any special, incidental,\nconsequential,\ + \ punitive, or exemplary damages such as loss of revenue,\ndata, anticipated profits, and\ + \ lost business. This exclusion applies\neven if the Licensor has been advised of the possibility\ + \ of such\ndamages.\n\n8.2 If liability may not be excluded by law, it is limited to actual\ + \ and\ndirect financial loss to the extent it is caused by proved negligence on\nthe part\ + \ of the Licensor.\n\n### 9.0 Termination of Your rights under this License\n\n9.1 Any breach\ + \ by You of the terms and conditions of this License\nautomatically terminates this License\ + \ with immediate effect and without\nnotice to You. For the avoidance of doubt, Persons\ + \ who have received the\nDatabase, the whole or a Substantial part of the Contents, Derivative\n\ + Databases, or the Database as part of a Collective Database from You\nunder this License\ + \ will not have their licenses terminated provided\ntheir use is in full compliance with\ + \ this License or a license granted\nunder Section 4.8 of this License. Sections 1, 2, 7,\ + \ 8, 9 and 10 will\nsurvive any termination of this License.\n\n9.2 If You are not in breach\ + \ of the terms of this License, the Licensor\nwill not terminate Your rights under it. \n\ + \n9.3 Unless terminated under Section 9.1, this License is granted to You\nfor the duration\ + \ of applicable rights in the Database. \n\n9.4 Reinstatement of rights. If you cease any\ + \ breach of the terms and\nconditions of this License, then your full rights under this\ + \ License\nwill be reinstated:\n\na. Provisionally and subject to permanent termination\ + \ until the 60th\nday after cessation of breach; \n\nb. Permanently on the 60th day after\ + \ cessation of breach unless\notherwise reasonably notified by the Licensor; or\n\nc. Permanently\ + \ if reasonably notified by the Licensor of the\nviolation, this is the first time You have\ + \ received notice of\nviolation of this License from the Licensor, and You cure the\nviolation\ + \ prior to 30 days after your receipt of the notice.\n\nPersons subject to permanent termination\ + \ of rights are not eligible to\nbe a recipient and receive a license under Section 4.8.\n\ + \n9.5 Notwithstanding the above, Licensor reserves the right to release\nthe Database under\ + \ different license terms or to stop distributing or\nmaking available the Database. Releasing\ + \ the Database under different\nlicense terms or stopping the distribution of the Database\ + \ will not\nwithdraw this License (or any other license that has been, or is\nrequired to\ + \ be, granted under the terms of this License), and this\nLicense will continue in full\ + \ force and effect unless terminated as\nstated above.\n\n### 10.0 General\n\n10.1 If any\ + \ provision of this License is held to be invalid or\nunenforceable, that must not affect\ + \ the validity or enforceability of\nthe remainder of the terms and conditions of this License\ + \ and each\nremaining provision of this License shall be valid and enforced to the\nfullest\ + \ extent permitted by law. \n\n10.2 This License is the entire agreement between the parties\ + \ with\nrespect to the rights granted here over the Database. It replaces any\nearlier understandings,\ + \ agreements or representations with respect to\nthe Database. \n\n10.3 If You are in breach\ + \ of the terms of this License, You will not be\nentitled to rely on the terms of this License\ + \ or to complain of any\nbreach by the Licensor. \n\n10.4 Choice of law. This License takes\ + \ effect in and will be governed by\nthe laws of the relevant jurisdiction in which the\ + \ License terms are\nsought to be enforced. If the standard suite of rights granted under\n\ + applicable copyright law and Database Rights in the relevant\njurisdiction includes additional\ + \ rights not granted under this License,\nthese additional rights are granted in this License\ + \ in order to meet the\nterms of this License." json: odbl-1.0.json - yml: odbl-1.0.yml + yaml: odbl-1.0.yml html: odbl-1.0.html - text: odbl-1.0.LICENSE + license: odbl-1.0.LICENSE - license_key: odc-1.0 + category: Copyleft spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Copyleft + text: | + ODC Attribution License (ODC-By) + Preamble + The Open Data Commons Attribution License is a license agreement + intended to allow users to freely share, modify, and use this Database + subject only to the attribution requirements set out in Section 4. + + Databases can contain a wide variety of types of content (images, + audiovisual material, and sounds all in the same database, for example), + and so this license only governs the rights over the Database, and not + the contents of the Database individually. Licensors may therefore wish + to use this license together with another license for the contents. + + Sometimes the contents of a database, or the database itself, can be + covered by other rights not addressed here (such as private contracts, + trademark over the name, or privacy rights / data protection rights + over information in the contents), and so you are advised that you may + have to consult other documents or clear other rights before doing + activities not covered by this License. + + The Licensor (as defined below) + + and + + You (as defined below) + + agree as follows: + + 1.0 Definitions of Capitalised Words + "Collective Database" – Means this Database in unmodified form as part + of a collection of independent databases in themselves that together are + assembled into a collective whole. A work that constitutes a Collective + Database will not be considered a Derivative Database. + + "Convey" – As a verb, means Using the Database, a Derivative Database, + or the Database as part of a Collective Database in any way that enables + a Person to make or receive copies of the Database or a Derivative + Database. Conveying does not include interaction with a user through a + computer network, or creating and Using a Produced Work, where no + transfer of a copy of the Database or a Derivative Database occurs. + + "Contents" – The contents of this Database, which includes the + information, independent works, or other material collected into the + Database. For example, the contents of the Database could be factual + data or works such as images, audiovisual material, text, or sounds. + + "Database" – A collection of material (the Contents) arranged in a + systematic or methodical way and individually accessible by electronic + or other means offered under the terms of this License. + + "Database Directive" – Means Directive 96/9/EC of the European + Parliament and of the Council of 11 March 1996 on the legal protection + of databases, as amended or succeeded. + + "Database Right" – Means rights resulting from the Chapter III ("sui + generis") rights in the Database Directive (as amended and as transposed + by member states), which includes the Extraction and Re-utilisation of + the whole or a Substantial part of the Contents, as well as any similar + rights available in the relevant jurisdiction under Section 10.4. + + "Derivative Database" – Means a database based upon the Database, and + includes any translation, adaptation, arrangement, modification, or any + other alteration of the Database or of a Substantial part of the + Contents. This includes, but is not limited to, Extracting or + Re-utilising the whole or a Substantial part of the Contents in a new + Database. + + "Extraction" – Means the permanent or temporary transfer of all or a + Substantial part of the Contents to another medium by any means or in + any form. + + "License" – Means this license agreement and is both a license of rights + such as copyright and Database Rights and an agreement in contract. + + "Licensor" – Means the Person that offers the Database under the terms + of this License. + + "Person" – Means a natural or legal person or a body of persons + corporate or incorporate. + + "Produced Work" – a work (such as an image, audiovisual material, text, + or sounds) resulting from using the whole or a Substantial part of the + Contents (via a search or other query) from this Database, a Derivative + Database, or this Database as part of a Collective Database. + + "Publicly" – means to Persons other than You or under Your control by + either more than 50% ownership or by the power to direct their + activities (such as contracting with an independent consultant). + + "Re-utilisation" – means any form of making available to the public all + or a Substantial part of the Contents by the distribution of copies, by + renting, by online or other forms of transmission. + + "Substantial" – Means substantial in terms of quantity or quality or a + combination of both. The repeated and systematic Extraction or + Re-utilisation of insubstantial parts of the Contents may amount to the + Extraction or Re-utilisation of a Substantial part of the Contents. + + "Use" – As a verb, means doing any act that is restricted by copyright + or Database Rights whether in the original medium or any other; and + includes without limitation distributing, copying, publicly performing, + publicly displaying, and preparing derivative works of the Database, as + well as modifying the Database as may be technically necessary to use it + in a different mode or format. + + "You" – Means a Person exercising rights under this License who has not + previously violated the terms of this License with respect to the + Database, or who has received express permission from the Licensor to + exercise rights under this License despite a previous violation. + + Words in the singular include the plural and vice versa. + + 2.0 What this License covers + 2.1. Legal effect of this document. This License is: + + a. A license of applicable copyright and neighbouring rights; + + b. A license of the Database Right; and + + c. An agreement in contract between You and the Licensor. + + 2.2 Legal rights covered. This License covers the legal rights in the + Database, including: + + a. Copyright. Any copyright or neighbouring rights in the Database. + The copyright licensed includes any individual elements of the + Database, but does not cover the copyright over the Contents + independent of this Database. See Section 2.4 for details. Copyright + law varies between jurisdictions, but is likely to cover: the Database + model or schema, which is the structure, arrangement, and organisation + of the Database, and can also include the Database tables and table + indexes; the data entry and output sheets; and the Field names of + Contents stored in the Database; + + b. Database Rights. Database Rights only extend to the Extraction and + Re-utilisation of the whole or a Substantial part of the Contents. + Database Rights can apply even when there is no copyright over the + Database. Database Rights can also apply when the Contents are removed + from the Database and are selected and arranged in a way that would + not infringe any applicable copyright; and + + c. Contract. This is an agreement between You and the Licensor for + access to the Database. In return you agree to certain conditions of + use on this access as outlined in this License. + + 2.3 Rights not covered. + + a. This License does not apply to computer programs used in the making + or operation of the Database; + + b. This License does not cover any patents over the Contents or the + Database; and + + c. This License does not cover any trademarks associated with the + Database. + + 2.4 Relationship to Contents in the Database. The individual items of + the Contents contained in this Database may be covered by other rights, + including copyright, patent, data protection, privacy, or personality + rights, and this License does not cover any rights (other than Database + Rights or in contract) in individual Contents contained in the Database. + For example, if used on a Database of images (the Contents), this + License would not apply to copyright over individual images, which could + have their own separate licenses, or one single license covering all of + the rights over the images. + + 3.0 Rights granted + 3.1 Subject to the terms and conditions of this License, the Licensor + grants to You a worldwide, royalty-free, non-exclusive, terminable (but + only under Section 9) license to Use the Database for the duration of + any applicable copyright and Database Rights. These rights explicitly + include commercial use, and do not exclude any field of endeavour. To + the extent possible in the relevant jurisdiction, these rights may be + exercised in all media and formats whether now known or created in the + future. + + The rights granted cover, for example: + + a. Extraction and Re-utilisation of the whole or a Substantial part of + the Contents; + + b. Creation of Derivative Databases; + + c. Creation of Collective Databases; + + d. Creation of temporary or permanent reproductions by any means and + in any form, in whole or in part, including of any Derivative + Databases or as a part of Collective Databases; and + + e. Distribution, communication, display, lending, making available, or + performance to the public by any means and in any form, in whole or in + part, including of any Derivative Database or as a part of Collective + Databases. + + 3.2 Compulsory license schemes. For the avoidance of doubt: + + a. Non-waivable compulsory license schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme cannot be waived, the Licensor reserves + the exclusive right to collect such royalties for any exercise by You + of the rights granted under this License; + + b. Waivable compulsory license schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme can be waived, the Licensor waives the + exclusive right to collect such royalties for any exercise by You of + the rights granted under this License; and, + + c. Voluntary license schemes. The Licensor waives the right to collect + royalties, whether individually or, in the event that the Licensor is + a member of a collecting society that administers voluntary licensing + schemes, via that society, from any exercise by You of the rights + granted under this License. + + 3.3 The right to release the Database under different terms, or to stop + distributing or making available the Database, is reserved. Note that + this Database may be multiple-licensed, and so You may have the choice + of using alternative licenses for this Database. Subject to Section + 10.4, all other rights not expressly granted by Licensor are reserved. + + 4.0 Conditions of Use + 4.1 The rights granted in Section 3 above are expressly made subject to + Your complying with the following conditions of use. These are important + conditions of this License, and if You fail to follow them, You will be + in material breach of its terms. + + 4.2 Notices. If You Publicly Convey this Database, any Derivative + Database, or the Database as part of a Collective Database, then You + must: + + a. Do so only under the terms of this License; + + b. Include a copy of this License or its Uniform Resource Identifier (URI) + with the Database or Derivative Database, including both in the + Database or Derivative Database and in any relevant documentation; + + c. Keep intact any copyright or Database Right notices and notices + that refer to this License; and + + d. If it is not possible to put the required notices in a particular + file due to its structure, then You must include the notices in a + location (such as a relevant directory) where users would be likely to + look for it. + + 4.3 Notice for using output (Contents). Creating and Using a Produced + Work does not require the notice in Section 4.2. However, if you + Publicly Use a Produced Work, You must include a notice associated with + the Produced Work reasonably calculated to make any Person that uses, + views, accesses, interacts with, or is otherwise exposed to the Produced + Work aware that Content was obtained from the Database, Derivative + Database, or the Database as part of a Collective Database, and that it + is available under this License. + + a. Example notice. The following text will satisfy notice under + Section 4.3: + + Contains information from DATABASE NAME which is made available + under the ODC Attribution License. + DATABASE NAME should be replaced with the name of the Database and a + hyperlink to the location of the Database. "ODC Attribution License" + should contain a hyperlink to the URI of the text of this License. If + hyperlinks are not possible, You should include the plain text of the + required URI’s with the above notice. + + 4.4 Licensing of others. You may not sublicense the Database. Each time + You communicate the Database, the whole or Substantial part of the + Contents, or any Derivative Database to anyone else in any way, the + Licensor offers to the recipient a license to the Database on the same + terms and conditions as this License. You are not responsible for + enforcing compliance by third parties with this License, but You may + enforce any rights that You have over a Derivative Database. You are + solely responsible for any modifications of a Derivative Database made + by You or another Person at Your direction. You may not impose any + further restrictions on the exercise of the rights granted or affirmed + under this License. + + 5.0 Moral rights + 5.1 Moral rights. This section covers moral rights, including any rights + to be identified as the author of the Database or to object to treatment + that would otherwise prejudice the author’s honour and reputation, or + any other derogatory treatment: + + a. For jurisdictions allowing waiver of moral rights, Licensor waives + all moral rights that Licensor may have in the Database to the fullest + extent possible by the law of the relevant jurisdiction under Section + 10.4; + + b. If waiver of moral rights under Section 5.1 a in the relevant + jurisdiction is not possible, Licensor agrees not to assert any moral + rights over the Database and waives all claims in moral rights to the + fullest extent possible by the law of the relevant jurisdiction under + Section 10.4; and + + c. For jurisdictions not allowing waiver or an agreement not to assert + moral rights under Section 5.1 a and b, the author may retain their + moral rights over certain aspects of the Database. + + Please note that some jurisdictions do not allow for the waiver of moral + rights, and so moral rights may still subsist over the Database in some + jurisdictions. + + 6.0 Fair dealing, Database exceptions, and other rights not affected + 6.1 This License does not affect any rights that You or anyone else may + independently have under any applicable law to make any use of this + Database, including without limitation: + + a. Exceptions to the Database Right including: Extraction of Contents + from non-electronic Databases for private purposes, Extraction for + purposes of illustration for teaching or scientific research, and + Extraction or Re-utilisation for public security or an administrative + or judicial procedure. + + b. Fair dealing, fair use, or any other legally recognised limitation + or exception to infringement of copyright or other applicable laws. + + 6.2 This License does not affect any rights of lawful users to Extract + and Re-utilise insubstantial parts of the Contents, evaluated + quantitatively or qualitatively, for any purposes whatsoever, including + creating a Derivative Database (subject to other rights over the + Contents, see Section 2.4). The repeated and systematic Extraction or + Re-utilisation of insubstantial parts of the Contents may however amount + to the Extraction or Re-utilisation of a Substantial part of the + Contents. + + 7.0 Warranties and Disclaimer + 7.1 The Database is licensed by the Licensor "as is" and without any + warranty of any kind, either express, implied, or arising by statute, + custom, course of dealing, or trade usage. Licensor specifically + disclaims any and all implied warranties or conditions of title, + non-infringement, accuracy or completeness, the presence or absence of + errors, fitness for a particular purpose, merchantability, or otherwise. + Some jurisdictions do not allow the exclusion of implied warranties, so + this exclusion may not apply to You. + + 8.0 Limitation of liability + 8.1 Subject to any liability that may not be excluded or limited by law, + the Licensor is not liable for, and expressly excludes, all liability + for loss or damage however and whenever caused to anyone by any use + under this License, whether by You or by anyone else, and whether caused + by any fault on the part of the Licensor or not. This exclusion of + liability includes, but is not limited to, any special, incidental, + consequential, punitive, or exemplary damages such as loss of revenue, + data, anticipated profits, and lost business. This exclusion applies + even if the Licensor has been advised of the possibility of such + damages. + + 8.2 If liability may not be excluded by law, it is limited to actual and + direct financial loss to the extent it is caused by proved negligence on + the part of the Licensor. + + 9.0 Termination of Your rights under this License + 9.1 Any breach by You of the terms and conditions of this License + automatically terminates this License with immediate effect and without + notice to You. For the avoidance of doubt, Persons who have received the + Database, the whole or a Substantial part of the Contents, Derivative + Databases, or the Database as part of a Collective Database from You + under this License will not have their licenses terminated provided + their use is in full compliance with this License or a license granted + under Section 4.8 of this License. Sections 1, 2, 7, 8, 9 and 10 will + survive any termination of this License. + + 9.2 If You are not in breach of the terms of this License, the Licensor + will not terminate Your rights under it. + + 9.3 Unless terminated under Section 9.1, this License is granted to You + for the duration of applicable rights in the Database. + + 9.4 Reinstatement of rights. If you cease any breach of the terms and + conditions of this License, then your full rights under this License + will be reinstated: + + a. Provisionally and subject to permanent termination until the 60th + day after cessation of breach; + + b. Permanently on the 60th day after cessation of breach unless + otherwise reasonably notified by the Licensor; or + + c. Permanently if reasonably notified by the Licensor of the + violation, this is the first time You have received notice of + violation of this License from the Licensor, and You cure the + violation prior to 30 days after your receipt of the notice. + + 9.5 Notwithstanding the above, Licensor reserves the right to release + the Database under different license terms or to stop distributing or + making available the Database. Releasing the Database under different + license terms or stopping the distribution of the Database will not + withdraw this License (or any other license that has been, or is + required to be, granted under the terms of this License), and this + License will continue in full force and effect unless terminated as + stated above. + + 10.0 General + 10.1 If any provision of this License is held to be invalid or + unenforceable, that must not affect the validity or enforceability of + the remainder of the terms and conditions of this License and each + remaining provision of this License shall be valid and enforced to the + fullest extent permitted by law. + + 10.2 This License is the entire agreement between the parties with + respect to the rights granted here over the Database. It replaces any + earlier understandings, agreements or representations with respect to + the Database. + + 10.3 If You are in breach of the terms of this License, You will not be + entitled to rely on the terms of this License or to complain of any + breach by the Licensor. + + 10.4 Choice of law. This License takes effect in and will be governed by + the laws of the relevant jurisdiction in which the License terms are + sought to be enforced. If the standard suite of rights granted under + applicable copyright law and Database Rights in the relevant + jurisdiction includes additional rights not granted under this License, + these additional rights are granted in this License in order to meet the + terms of this License. json: odc-1.0.json - yml: odc-1.0.yml + yaml: odc-1.0.yml html: odc-1.0.html - text: odc-1.0.LICENSE + license: odc-1.0.LICENSE - license_key: odc-by-1.0 + category: Permissive spdx_license_key: ODC-By-1.0 other_spdx_license_keys: - LicenseRef-scancode-odc-1.0 is_exception: no is_deprecated: no - category: Permissive + text: | + Open Data Commons Attribution License (ODC-By) v1.0 + ODC Attribution License (ODC-By) + Preamble + + The Open Data Commons Attribution License is a license agreement + intended to allow users to freely share, modify, and use this Database + subject only to the attribution requirements set out in Section 4. + + Databases can contain a wide variety of types of content (images, + audiovisual material, and sounds all in the same database, for example), + and so this license only governs the rights over the Database, and not + the contents of the Database individually. Licensors may therefore wish + to use this license together with another license for the contents. + + Sometimes the contents of a database, or the database itself, can be + covered by other rights not addressed here (such as private contracts, + trademark over the name, or privacy rights / data protection rights + over information in the contents), and so you are advised that you may + have to consult other documents or clear other rights before doing + activities not covered by this License. + + The Licensor (as defined below) + + and + + You (as defined below) + + agree as follows: + 1.0 Definitions of Capitalised Words + + "Collective Database" – Means this Database in unmodified form as part + of a collection of independent databases in themselves that together are + assembled into a collective whole. A work that constitutes a Collective + Database will not be considered a Derivative Database. + + "Convey" – As a verb, means Using the Database, a Derivative Database, + or the Database as part of a Collective Database in any way that enables + a Person to make or receive copies of the Database or a Derivative + Database. Conveying does not include interaction with a user through a + computer network, or creating and Using a Produced Work, where no + transfer of a copy of the Database or a Derivative Database occurs. + + "Contents" – The contents of this Database, which includes the + information, independent works, or other material collected into the + Database. For example, the contents of the Database could be factual + data or works such as images, audiovisual material, text, or sounds. + + "Database" – A collection of material (the Contents) arranged in a + systematic or methodical way and individually accessible by electronic + or other means offered under the terms of this License. + + "Database Directive" – Means Directive 96/9/EC of the European + Parliament and of the Council of 11 March 1996 on the legal protection + of databases, as amended or succeeded. + + "Database Right" – Means rights resulting from the Chapter III ("sui + generis") rights in the Database Directive (as amended and as transposed + by member states), which includes the Extraction and Re-utilisation of + the whole or a Substantial part of the Contents, as well as any similar + rights available in the relevant jurisdiction under Section 10.4. + + "Derivative Database" – Means a database based upon the Database, and + includes any translation, adaptation, arrangement, modification, or any + other alteration of the Database or of a Substantial part of the + Contents. This includes, but is not limited to, Extracting or + Re-utilising the whole or a Substantial part of the Contents in a new + Database. + + "Extraction" – Means the permanent or temporary transfer of all or a + Substantial part of the Contents to another medium by any means or in + any form. + + "License" – Means this license agreement and is both a license of rights + such as copyright and Database Rights and an agreement in contract. + + "Licensor" – Means the Person that offers the Database under the terms + of this License. + + "Person" – Means a natural or legal person or a body of persons + corporate or incorporate. + + "Produced Work" – a work (such as an image, audiovisual material, text, + or sounds) resulting from using the whole or a Substantial part of the + Contents (via a search or other query) from this Database, a Derivative + Database, or this Database as part of a Collective Database. + + "Publicly" – means to Persons other than You or under Your control by + either more than 50% ownership or by the power to direct their + activities (such as contracting with an independent consultant). + + "Re-utilisation" – means any form of making available to the public all + or a Substantial part of the Contents by the distribution of copies, by + renting, by online or other forms of transmission. + + "Substantial" – Means substantial in terms of quantity or quality or a + combination of both. The repeated and systematic Extraction or + Re-utilisation of insubstantial parts of the Contents may amount to the + Extraction or Re-utilisation of a Substantial part of the Contents. + + "Use" – As a verb, means doing any act that is restricted by copyright + or Database Rights whether in the original medium or any other; and + includes without limitation distributing, copying, publicly performing, + publicly displaying, and preparing derivative works of the Database, as + well as modifying the Database as may be technically necessary to use it + in a different mode or format. + + "You" – Means a Person exercising rights under this License who has not + previously violated the terms of this License with respect to the + Database, or who has received express permission from the Licensor to + exercise rights under this License despite a previous violation. + + Words in the singular include the plural and vice versa. + 2.0 What this License covers + + 2.1. Legal effect of this document. This License is: + + a. A license of applicable copyright and neighbouring rights; + + b. A license of the Database Right; and + + c. An agreement in contract between You and the Licensor. + + 2.2 Legal rights covered. This License covers the legal rights in the + Database, including: + + a. Copyright. Any copyright or neighbouring rights in the Database. + The copyright licensed includes any individual elements of the + Database, but does not cover the copyright over the Contents + independent of this Database. See Section 2.4 for details. Copyright + law varies between jurisdictions, but is likely to cover: the Database + model or schema, which is the structure, arrangement, and organisation + of the Database, and can also include the Database tables and table + indexes; the data entry and output sheets; and the Field names of + Contents stored in the Database; + + b. Database Rights. Database Rights only extend to the Extraction and + Re-utilisation of the whole or a Substantial part of the Contents. + Database Rights can apply even when there is no copyright over the + Database. Database Rights can also apply when the Contents are removed + from the Database and are selected and arranged in a way that would + not infringe any applicable copyright; and + + c. Contract. This is an agreement between You and the Licensor for + access to the Database. In return you agree to certain conditions of + use on this access as outlined in this License. + + 2.3 Rights not covered. + + a. This License does not apply to computer programs used in the making + or operation of the Database; + + b. This License does not cover any patents over the Contents or the + Database; and + + c. This License does not cover any trademarks associated with the + Database. + + 2.4 Relationship to Contents in the Database. The individual items of + the Contents contained in this Database may be covered by other rights, + including copyright, patent, data protection, privacy, or personality + rights, and this License does not cover any rights (other than Database + Rights or in contract) in individual Contents contained in the Database. + For example, if used on a Database of images (the Contents), this + License would not apply to copyright over individual images, which could + have their own separate licenses, or one single license covering all of + the rights over the images. + 3.0 Rights granted + + 3.1 Subject to the terms and conditions of this License, the Licensor + grants to You a worldwide, royalty-free, non-exclusive, terminable (but + only under Section 9) license to Use the Database for the duration of + any applicable copyright and Database Rights. These rights explicitly + include commercial use, and do not exclude any field of endeavour. To + the extent possible in the relevant jurisdiction, these rights may be + exercised in all media and formats whether now known or created in the + future. + + The rights granted cover, for example: + + a. Extraction and Re-utilisation of the whole or a Substantial part of + the Contents; + + b. Creation of Derivative Databases; + + c. Creation of Collective Databases; + + d. Creation of temporary or permanent reproductions by any means and + in any form, in whole or in part, including of any Derivative + Databases or as a part of Collective Databases; and + + e. Distribution, communication, display, lending, making available, or + performance to the public by any means and in any form, in whole or in + part, including of any Derivative Database or as a part of Collective + Databases. + + 3.2 Compulsory license schemes. For the avoidance of doubt: + + a. Non-waivable compulsory license schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme cannot be waived, the Licensor reserves + the exclusive right to collect such royalties for any exercise by You + of the rights granted under this License; + + b. Waivable compulsory license schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme can be waived, the Licensor waives the + exclusive right to collect such royalties for any exercise by You of + the rights granted under this License; and, + + c. Voluntary license schemes. The Licensor waives the right to collect + royalties, whether individually or, in the event that the Licensor is + a member of a collecting society that administers voluntary licensing + schemes, via that society, from any exercise by You of the rights + granted under this License. + + 3.3 The right to release the Database under different terms, or to stop + distributing or making available the Database, is reserved. Note that + this Database may be multiple-licensed, and so You may have the choice + of using alternative licenses for this Database. Subject to Section + 10.4, all other rights not expressly granted by Licensor are reserved. + 4.0 Conditions of Use + + 4.1 The rights granted in Section 3 above are expressly made subject to + Your complying with the following conditions of use. These are important + conditions of this License, and if You fail to follow them, You will be + in material breach of its terms. + + 4.2 Notices. If You Publicly Convey this Database, any Derivative + Database, or the Database as part of a Collective Database, then You + must: + + a. Do so only under the terms of this License; + + b. Include a copy of this License or its Uniform Resource Identifier (URI) + with the Database or Derivative Database, including both in the + Database or Derivative Database and in any relevant documentation; + + c. Keep intact any copyright or Database Right notices and notices + that refer to this License; and + + d. If it is not possible to put the required notices in a particular + file due to its structure, then You must include the notices in a + location (such as a relevant directory) where users would be likely to + look for it. + + 4.3 Notice for using output (Contents). Creating and Using a Produced + Work does not require the notice in Section 4.2. However, if you + Publicly Use a Produced Work, You must include a notice associated with + the Produced Work reasonably calculated to make any Person that uses, + views, accesses, interacts with, or is otherwise exposed to the Produced + Work aware that Content was obtained from the Database, Derivative + Database, or the Database as part of a Collective Database, and that it + is available under this License. + + a. Example notice. The following text will satisfy notice under + Section 4.3: + + Contains information from DATABASE NAME which is made available + under the ODC Attribution License. + + DATABASE NAME should be replaced with the name of the Database and a + hyperlink to the location of the Database. "ODC Attribution License" + should contain a hyperlink to the URI of the text of this License. If + hyperlinks are not possible, You should include the plain text of the + required URI’s with the above notice. + + 4.4 Licensing of others. You may not sublicense the Database. Each time + You communicate the Database, the whole or Substantial part of the + Contents, or any Derivative Database to anyone else in any way, the + Licensor offers to the recipient a license to the Database on the same + terms and conditions as this License. You are not responsible for + enforcing compliance by third parties with this License, but You may + enforce any rights that You have over a Derivative Database. You are + solely responsible for any modifications of a Derivative Database made + by You or another Person at Your direction. You may not impose any + further restrictions on the exercise of the rights granted or affirmed + under this License. + 5.0 Moral rights + + 5.1 Moral rights. This section covers moral rights, including any rights + to be identified as the author of the Database or to object to treatment + that would otherwise prejudice the author’s honour and reputation, or + any other derogatory treatment: + + a. For jurisdictions allowing waiver of moral rights, Licensor waives + all moral rights that Licensor may have in the Database to the fullest + extent possible by the law of the relevant jurisdiction under Section + 10.4; + + b. If waiver of moral rights under Section 5.1 a in the relevant + jurisdiction is not possible, Licensor agrees not to assert any moral + rights over the Database and waives all claims in moral rights to the + fullest extent possible by the law of the relevant jurisdiction under + Section 10.4; and + + c. For jurisdictions not allowing waiver or an agreement not to assert + moral rights under Section 5.1 a and b, the author may retain their + moral rights over certain aspects of the Database. + + Please note that some jurisdictions do not allow for the waiver of moral + rights, and so moral rights may still subsist over the Database in some + jurisdictions. + 6.0 Fair dealing, Database exceptions, and other rights not affected + + 6.1 This License does not affect any rights that You or anyone else may + independently have under any applicable law to make any use of this + Database, including without limitation: + + a. Exceptions to the Database Right including: Extraction of Contents + from non-electronic Databases for private purposes, Extraction for + purposes of illustration for teaching or scientific research, and + Extraction or Re-utilisation for public security or an administrative + or judicial procedure. + + b. Fair dealing, fair use, or any other legally recognised limitation + or exception to infringement of copyright or other applicable laws. + + 6.2 This License does not affect any rights of lawful users to Extract + and Re-utilise insubstantial parts of the Contents, evaluated + quantitatively or qualitatively, for any purposes whatsoever, including + creating a Derivative Database (subject to other rights over the + Contents, see Section 2.4). The repeated and systematic Extraction or + Re-utilisation of insubstantial parts of the Contents may however amount + to the Extraction or Re-utilisation of a Substantial part of the + Contents. + 7.0 Warranties and Disclaimer + + 7.1 The Database is licensed by the Licensor "as is" and without any + warranty of any kind, either express, implied, or arising by statute, + custom, course of dealing, or trade usage. Licensor specifically + disclaims any and all implied warranties or conditions of title, + non-infringement, accuracy or completeness, the presence or absence of + errors, fitness for a particular purpose, merchantability, or otherwise. + Some jurisdictions do not allow the exclusion of implied warranties, so + this exclusion may not apply to You. + 8.0 Limitation of liability + + 8.1 Subject to any liability that may not be excluded or limited by law, + the Licensor is not liable for, and expressly excludes, all liability + for loss or damage however and whenever caused to anyone by any use + under this License, whether by You or by anyone else, and whether caused + by any fault on the part of the Licensor or not. This exclusion of + liability includes, but is not limited to, any special, incidental, + consequential, punitive, or exemplary damages such as loss of revenue, + data, anticipated profits, and lost business. This exclusion applies + even if the Licensor has been advised of the possibility of such + damages. + + 8.2 If liability may not be excluded by law, it is limited to actual and + direct financial loss to the extent it is caused by proved negligence on + the part of the Licensor. + 9.0 Termination of Your rights under this License + + 9.1 Any breach by You of the terms and conditions of this License + automatically terminates this License with immediate effect and without + notice to You. For the avoidance of doubt, Persons who have received the + Database, the whole or a Substantial part of the Contents, Derivative + Databases, or the Database as part of a Collective Database from You + under this License will not have their licenses terminated provided + their use is in full compliance with this License or a license granted + under Section 4.8 of this License. Sections 1, 2, 7, 8, 9 and 10 will + survive any termination of this License. + + 9.2 If You are not in breach of the terms of this License, the Licensor + will not terminate Your rights under it. + + 9.3 Unless terminated under Section 9.1, this License is granted to You + for the duration of applicable rights in the Database. + + 9.4 Reinstatement of rights. If you cease any breach of the terms and + conditions of this License, then your full rights under this License + will be reinstated: + + a. Provisionally and subject to permanent termination until the 60th + day after cessation of breach; + + b. Permanently on the 60th day after cessation of breach unless + otherwise reasonably notified by the Licensor; or + + c. Permanently if reasonably notified by the Licensor of the + violation, this is the first time You have received notice of + violation of this License from the Licensor, and You cure the + violation prior to 30 days after your receipt of the notice. + + 9.5 Notwithstanding the above, Licensor reserves the right to release + the Database under different license terms or to stop distributing or + making available the Database. Releasing the Database under different + license terms or stopping the distribution of the Database will not + withdraw this License (or any other license that has been, or is + required to be, granted under the terms of this License), and this + License will continue in full force and effect unless terminated as + stated above. + 10.0 General + + 10.1 If any provision of this License is held to be invalid or + unenforceable, that must not affect the validity or enforceability of + the remainder of the terms and conditions of this License and each + remaining provision of this License shall be valid and enforced to the + fullest extent permitted by law. + + 10.2 This License is the entire agreement between the parties with + respect to the rights granted here over the Database. It replaces any + earlier understandings, agreements or representations with respect to + the Database. + + 10.3 If You are in breach of the terms of this License, You will not be + entitled to rely on the terms of this License or to complain of any + breach by the Licensor. + + 10.4 Choice of law. This License takes effect in and will be governed by + the laws of the relevant jurisdiction in which the License terms are + sought to be enforced. If the standard suite of rights granted under + applicable copyright law and Database Rights in the relevant + jurisdiction includes additional rights not granted under this License, + these additional rights are granted in this License in order to meet the + terms of this License. json: odc-by-1.0.json - yml: odc-by-1.0.yml + yaml: odc-by-1.0.yml html: odc-by-1.0.html - text: odc-by-1.0.LICENSE + license: odc-by-1.0.LICENSE - license_key: odl + category: Permissive spdx_license_key: LicenseRef-scancode-odl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Open Directory License\n\nThe Open Directory is a compilation of many different editors'\ + \ contributions. Netscape Communications Corporation (`Netscape') owns the copyright to\ + \ the compilation of the different contributions, and makes the Open Directory available\ + \ to you to use under the following license agreement terms and conditions (`Open Directory\ + \ License'). For purposes of this Open Directory License, `Open Directory' means only the\ + \ Open Directory Project currently hosted at http://dmoz.org (or at another site as may\ + \ be designated by Netscape in the future), and does not include any other versions of directories,\ + \ even if referred to as an `Open Directory,' that may be hosted by Netscape on other web\ + \ pages (e.g., Netscape Netcenter).\n\n1. Basic License. Netscape grants you a non-exclusive,\ + \ royalty-free license to use, reproduce, modify and create derivative works from, and distribute\ + \ and publish the Open Directory and your derivative works thereof, subject to all of the\ + \ terms and conditions of this Open Directory License. You may authorize others to exercise\ + \ the foregoing rights; provided, however, that you must have an agreement with your sublicensees\ + \ that passes on the requirements and obligations of Sections 2 and 4 below and which must\ + \ include a limitation of liability provision no less protective of Netscape than Section\ + \ 6 below.\n\nDue to the nature of the content of the Open Directory, many third parties'\ + \ trade names and trademarks will be identified within the content of the Open Directory\ + \ (e.g., as part of URLs and description of link). Except for the limited license to use\ + \ the Netscape attribution in Section 2 below, nothing herein shall be deemed to grant you\ + \ any license to use any Netscape or third party trademark or tradename.\n\n2. Attribution\ + \ Requirement. As a material condition of this Open Directory License, you must provide\ + \ the below applicable attribution statements on (1) all copies of the Open Directory, in\ + \ whole or in part, and derivative works thereof which are either distributed (internally\ + \ or otherwise) or published (made available on the Internet and/or internally over any\ + \ internal network/intranet or otherwise), whether distributed or published electronically,\ + \ on hard copy media or by any other means, and (2) on any program/web page from which you\ + \ directly link to/access any information contained within the Open Directory, in whole\ + \ or in part, or any derivative work thereof:\n 1. If the Open Directory in whole or\ + \ in part, or any derivative work thereof, is made available via the Internet or internal\ + \ network/intranet and/or information contained therein is directly accessed or linked via\ + \ the Internet or internal network/intranet then you must provide the appropriate Netscape\ + \ attribution statement as described in the page(s) at the URL(s): http://dmoz.org/become_an_editor.\n\ + \ 2. If the Open Directory in whole or in part, or any derivative work thereof, is made\ + \ available on any hard copy media (e.g., CD-ROM, diskette), you must place on the packaging\ + \ a notice providing Netscape attribution as described in the page(s) at the URL(s): http://dmoz.org/become_an_editor.\ + \ If there is no `packaging', the previous attribution notice should be placed conspicuously\ + \ such that it would be reasonably viewed by the recipient of the Open Directory.\n 3.\ + \ If you are using or distributing the Open Directory in modified form (i.e., with additions\ + \ or deletions), you must include a statement indicating you have made modifications to\ + \ it. Such statement should be placed with the attribution notices required by Sections\ + \ 2(a) and 2(b) above.\n\nNetscape grants you the non-exclusive, royalty-free license to\ + \ use the above identified Netscape attribution statements solely for the purpose of the\ + \ above attribution requirements, and such use must be in accordance with the usage guidelines\ + \ that may be published by Netscape from time to time as part of the above URLs.\n \n3.\ + \ Right To Identify Licensee. You agree that Netscape has the right to publicly identify\ + \ you as a user/licensee of the Open Directory.\n\n4. Errors and Changes. From time to\ + \ time Netscape may elect to post on the page(s) at the URL http://dmoz.org/become_an_editor\ + \ certain specific changes to the Open Directory and/or above attribution statements, which\ + \ changes may be to correct errors and/or remove content alleged to be improperly in the\ + \ Open Directory. So long as you are exercising the license to Open Directory hereunder,\ + \ you agree to use commercially reasonable efforts to check the page(s) at the URL http://dmoz.org/become_an_editor\ + \ from time to time, and to use commercially reasonable efforts to make the changes/corrections/deletion\ + \ of content from the Open Directory and/or attribution statements as may be indicated at\ + \ such URL. Any changes to the Open Directory content posted at the page(s) at the URL\ + \ http://dmoz.org/become_an_editor are part of Open Directory.\n\n5. No Warranty/Use At\ + \ Your Risk. THE OPEN DIRECTORY AND ANY NETSCAPE TRADEMARKS AND LOGOS CONTAINED WITH THE\ + \ REQUIRED ATTRIBUTION STATEMENTS ARE MADE AVAILABLE UNDER THIS OPEN DIRECTORY LICENSE AT\ + \ NO CHARGE. ACCORDINGLY, THE OPEN DIRECTORY AND THE NETSCAPE TRADEMARKS AND LOGOS ARE\ + \ PROVIDED `AS IS,' WITHOUT WARRANTY OF ANY KIND, INCLUDING WITHOUT LIMITATION THE WARRANTIES\ + \ THAT THEY ARE MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. YOU ARE SOLELY\ + \ RESPONSIBLE FOR YOUR USE, DISTRIBUTION, MODIFICATION, REPRODUCTION AND PUBLICATION OF\ + \ THE OPEN DIRECTORY AND ANY DERIVATIVE WORKS THEREOF BY YOU AND ANY OF YOUR SUBLICENSEES\ + \ (COLLECTIVELY, `YOUR OPEN DIRECTORY USE'). THE ENTIRE RISK AS TO YOUR OPEN DIRECTORY USE\ + \ IS BORNE BY YOU. YOU AGREE TO INDEMNIFY AND HOLD NETSCAPE, ITS SUBSIDIARIES AND AFFILIATES\ + \ HARMLESS FROM ANY CLAIMS ARISING FROM OR RELATING TO YOUR OPEN DIRECTORY USE.\n\n6. Limitation\ + \ of Liability. IN NO EVENT SHALL NETSCAPE, ITS SUBSIDIARIES OR AFFILIATES, OR THE OPEN\ + \ DIRECTORY CONTRIBUTING EDITORS, BE LIABLE FOR ANY INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL\ + \ DAMAGES, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL OR ANY AND ALL OTHER\ + \ COMMERCIAL DAMAGES OR LOSSES, EVEN IF ADVISED OF THE POSSIBILITY THEREOF, AND REGARDLESS\ + \ OF WHETHER ANY CLAIM IS BASED UPON ANY CONTRACT, TORT OR OTHER LEGAL OR EQUITABLE THEORY,\ + \ RELATING OR ARISING FROM THE OPEN DIRECTORY, YOUR OPEN DIRECTORY USE OR THIS OPEN DIRECTORY\ + \ LICENSE AGREEMENT.\n\n7. California Law. This Open Directory License will be governed\ + \ by the laws of the State of California, excluding its conflict of laws provisions." json: odl.json - yml: odl.yml + yaml: odl.yml html: odl.html - text: odl.LICENSE + license: odl.LICENSE - license_key: odmg + category: Permissive spdx_license_key: LicenseRef-scancode-odmg other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + License Agreement + + Redistribution of this software is permitted provided that the following + conditions are met: + + 1. Redistributions of source or binary code formats must retain the above + copyright notice. + + 2. Redistribution in any product and all advertising materials mentioning + features or use of this software must display the following acknowledgment: + “This product includes copyrighted software developed by E. Wray Johnson for use + and distribution by the Object Data Management Group (http://www.odmg.org/).” + + No-Nonsense Disclaimer + + THIS SOFTWARE IS FREE AND PROVIDED “AS-IS” BY THE AUTHOR E. WRAY JOHNSON WHO + ASSUMES LIABILITY TO THE EXTENT OF THE AMOUNT THAT IS HEREBY BEING CHARGED FOR + THE SOFTWARE. json: odmg.json - yml: odmg.yml + yaml: odmg.yml html: odmg.html - text: odmg.LICENSE + license: odmg.LICENSE - license_key: ofl-1.0 + category: Permissive spdx_license_key: OFL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "-----------------------------------------------------------\nSIL OPEN FONT LICENSE\ + \ Version 1.0 - 22 November 2005\n-----------------------------------------------------------\n\ + \nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment\ + \ of cooperative font projects, to support the font creation\nefforts of academic and linguistic\ + \ communities, and to provide an open\nframework in which fonts may be shared and improved\ + \ in partnership with\nothers.\n\nThe OFL allows the licensed fonts to be used, studied,\ + \ modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts,\ + \ including any derivative works, can be bundled, embedded, \nredistributed and sold with\ + \ any software provided that the font\nnames of derivative works are changed. The fonts\ + \ and derivatives,\nhowever, cannot be released under any other type of license.\n\nDEFINITIONS\n\ + \"Font Software\" refers to any and all of the following:\n - font files\n - data\ + \ files\n - source code\n - build scripts\n - documentation\n\n\"Reserved Font\ + \ Name\" refers to the Font Software name as seen by\nusers and any other names as specified\ + \ after the copyright statement.\n\n\"Standard Version\" refers to the collection of Font\ + \ Software\ncomponents as distributed by the Copyright Holder.\n\n\"Modified Version\" refers\ + \ to any derivative font software made by\nadding to, deleting, or substituting -- in part\ + \ or in whole --\nany of the components of the Standard Version, by changing formats\nor\ + \ by porting the Font Software to a new environment.\n\n\"Author\" refers to any designer,\ + \ engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\ + \nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\n\ + a copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and\ + \ sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\ + \n1) Neither the Font Software nor any of its individual components,\nin Standard or Modified\ + \ Versions, may be sold by itself.\n\n2) Standard or Modified Versions of the Font Software\ + \ may be bundled,\nredistributed and sold with any software, provided that each copy\ncontains\ + \ the above copyright notice and this license. These can be\nincluded either as stand-alone\ + \ text files, human-readable headers or\nin the appropriate machine-readable metadata fields\ + \ within text or\nbinary files as long as those fields can be easily viewed by the user.\n\ + \n3) No Modified Version of the Font Software may use the Reserved Font\nName(s), in part\ + \ or in whole, unless explicit written permission is\ngranted by the Copyright Holder. This\ + \ restriction applies to all \nreferences stored in the Font Software, such as the font\ + \ menu name and\nother font description fields, which are used to differentiate the\nfont\ + \ from others.\n\n4) The name(s) of the Copyright Holder or the Author(s) of the Font\n\ + Software shall not be used to promote, endorse or advertise any\nModified Version, except\ + \ to acknowledge the contribution(s) of the\nCopyright Holder and the Author(s) or with\ + \ their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in\ + \ part or in whole,\nmust be distributed using this license, and may not be distributed\n\ + under any other license.\n\nTERMINATION\nThis license becomes null and void if any of the\ + \ above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\"\ + , WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES\ + \ OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT,\ + \ PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR\ + \ ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL,\ + \ OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n\ + FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE\ + \ FONT SOFTWARE." json: ofl-1.0.json - yml: ofl-1.0.yml + yaml: ofl-1.0.yml html: ofl-1.0.html - text: ofl-1.0.LICENSE + license: ofl-1.0.LICENSE - license_key: ofl-1.0-no-rfn + category: Permissive spdx_license_key: OFL-1.0-no-RFN other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This Font Software is licensed under the SIL Open Font License, Version 1.0.\nwith\ + \ no Reserved Font Name for this Font Software.\nNo modification of the license is permitted,\ + \ only verbatim copy is allowed.\nThis license is copied below, and is also available with\ + \ a FAQ at:\nhttp://scripts.sil.org/OFL\n\n-----------------------------------------------------------\n\ + SIL OPEN FONT LICENSE Version 1.0 - 22 November 2005\n-----------------------------------------------------------\n\ + \nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment\ + \ of cooperative font projects, to support the font creation\nefforts of academic and linguistic\ + \ communities, and to provide an open\nframework in which fonts may be shared and improved\ + \ in partnership with\nothers.\n\nThe OFL allows the licensed fonts to be used, studied,\ + \ modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts,\ + \ including any derivative works, can be bundled, embedded, \nredistributed and sold with\ + \ any software provided that the font\nnames of derivative works are changed. The fonts\ + \ and derivatives,\nhowever, cannot be released under any other type of license.\n\nDEFINITIONS\n\ + \"Font Software\" refers to any and all of the following:\n - font files\n - data\ + \ files\n - source code\n - build scripts\n - documentation\n\n\"Reserved Font\ + \ Name\" refers to the Font Software name as seen by\nusers and any other names as specified\ + \ after the copyright statement.\n\n\"Standard Version\" refers to the collection of Font\ + \ Software\ncomponents as distributed by the Copyright Holder.\n\n\"Modified Version\" refers\ + \ to any derivative font software made by\nadding to, deleting, or substituting -- in part\ + \ or in whole --\nany of the components of the Standard Version, by changing formats\nor\ + \ by porting the Font Software to a new environment.\n\n\"Author\" refers to any designer,\ + \ engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\ + \nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\n\ + a copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and\ + \ sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\ + \n1) Neither the Font Software nor any of its individual components,\nin Standard or Modified\ + \ Versions, may be sold by itself.\n\n2) Standard or Modified Versions of the Font Software\ + \ may be bundled,\nredistributed and sold with any software, provided that each copy\ncontains\ + \ the above copyright notice and this license. These can be\nincluded either as stand-alone\ + \ text files, human-readable headers or\nin the appropriate machine-readable metadata fields\ + \ within text or\nbinary files as long as those fields can be easily viewed by the user.\n\ + \n3) No Modified Version of the Font Software may use the Reserved Font\nName(s), in part\ + \ or in whole, unless explicit written permission is\ngranted by the Copyright Holder. This\ + \ restriction applies to all \nreferences stored in the Font Software, such as the font\ + \ menu name and\nother font description fields, which are used to differentiate the\nfont\ + \ from others.\n\n4) The name(s) of the Copyright Holder or the Author(s) of the Font\n\ + Software shall not be used to promote, endorse or advertise any\nModified Version, except\ + \ to acknowledge the contribution(s) of the\nCopyright Holder and the Author(s) or with\ + \ their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in\ + \ part or in whole,\nmust be distributed using this license, and may not be distributed\n\ + under any other license.\n\nTERMINATION\nThis license becomes null and void if any of the\ + \ above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\"\ + , WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES\ + \ OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT,\ + \ PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR\ + \ ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL,\ + \ OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n\ + FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE\ + \ FONT SOFTWARE." json: ofl-1.0-no-rfn.json - yml: ofl-1.0-no-rfn.yml + yaml: ofl-1.0-no-rfn.yml html: ofl-1.0-no-rfn.html - text: ofl-1.0-no-rfn.LICENSE + license: ofl-1.0-no-rfn.LICENSE - license_key: ofl-1.0-rfn + category: Permissive spdx_license_key: OFL-1.0-RFN other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: " is a Reserved Font Name for this Font Software.\n\ + \ is a Reserved Font Name for this Font Software.\n\nThis Font Software is licensed under\ + \ the SIL Open Font License, Version 1.0.\nNo modification of the license is permitted,\ + \ only verbatim copy is allowed.\nThis license is copied below, and is also available with\ + \ a FAQ at:\nhttp://scripts.sil.org/OFL\n\n-----------------------------------------------------------\n\ + SIL OPEN FONT LICENSE Version 1.0 - 22 November 2005\n-----------------------------------------------------------\n\ + \nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment\ + \ of cooperative font projects, to support the font creation\nefforts of academic and linguistic\ + \ communities, and to provide an open\nframework in which fonts may be shared and improved\ + \ in partnership with\nothers.\n\nThe OFL allows the licensed fonts to be used, studied,\ + \ modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts,\ + \ including any derivative works, can be bundled, embedded, \nredistributed and sold with\ + \ any software provided that the font\nnames of derivative works are changed. The fonts\ + \ and derivatives,\nhowever, cannot be released under any other type of license.\n\nDEFINITIONS\n\ + \"Font Software\" refers to any and all of the following:\n - font files\n - data\ + \ files\n - source code\n - build scripts\n - documentation\n\n\"Reserved Font\ + \ Name\" refers to the Font Software name as seen by\nusers and any other names as specified\ + \ after the copyright statement.\n\n\"Standard Version\" refers to the collection of Font\ + \ Software\ncomponents as distributed by the Copyright Holder.\n\n\"Modified Version\" refers\ + \ to any derivative font software made by\nadding to, deleting, or substituting -- in part\ + \ or in whole --\nany of the components of the Standard Version, by changing formats\nor\ + \ by porting the Font Software to a new environment.\n\n\"Author\" refers to any designer,\ + \ engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\ + \nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\n\ + a copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and\ + \ sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\ + \n1) Neither the Font Software nor any of its individual components,\nin Standard or Modified\ + \ Versions, may be sold by itself.\n\n2) Standard or Modified Versions of the Font Software\ + \ may be bundled,\nredistributed and sold with any software, provided that each copy\ncontains\ + \ the above copyright notice and this license. These can be\nincluded either as stand-alone\ + \ text files, human-readable headers or\nin the appropriate machine-readable metadata fields\ + \ within text or\nbinary files as long as those fields can be easily viewed by the user.\n\ + \n3) No Modified Version of the Font Software may use the Reserved Font\nName(s), in part\ + \ or in whole, unless explicit written permission is\ngranted by the Copyright Holder. This\ + \ restriction applies to all \nreferences stored in the Font Software, such as the font\ + \ menu name and\nother font description fields, which are used to differentiate the\nfont\ + \ from others.\n\n4) The name(s) of the Copyright Holder or the Author(s) of the Font\n\ + Software shall not be used to promote, endorse or advertise any\nModified Version, except\ + \ to acknowledge the contribution(s) of the\nCopyright Holder and the Author(s) or with\ + \ their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in\ + \ part or in whole,\nmust be distributed using this license, and may not be distributed\n\ + under any other license.\n\nTERMINATION\nThis license becomes null and void if any of the\ + \ above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\"\ + , WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES\ + \ OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT,\ + \ PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR\ + \ ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL,\ + \ OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n\ + FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE\ + \ FONT SOFTWARE." json: ofl-1.0-rfn.json - yml: ofl-1.0-rfn.yml + yaml: ofl-1.0-rfn.yml html: ofl-1.0-rfn.html - text: ofl-1.0-rfn.LICENSE + license: ofl-1.0-rfn.LICENSE - license_key: ofl-1.1 + category: Permissive spdx_license_key: OFL-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + ----------------------------------------------------------- + SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 + ----------------------------------------------------------- + + PREAMBLE + The goals of the Open Font License (OFL) are to stimulate worldwide + development of collaborative font projects, to support the font creation + efforts of academic and linguistic communities, and to provide a free and + open framework in which fonts may be shared and improved in partnership + with others. + + The OFL allows the licensed fonts to be used, studied, modified and + redistributed freely as long as they are not sold by themselves. The + fonts, including any derivative works, can be bundled, embedded, + redistributed and/or sold with any software provided that any reserved + names are not used by derivative works. The fonts and derivatives, + however, cannot be released under any other type of license. The + requirement for fonts to remain under this license does not apply + to any document created using the fonts or their derivatives. + + DEFINITIONS + "Font Software" refers to the set of files released by the Copyright + Holder(s) under this license and clearly marked as such. This may + include source files, build scripts and documentation. + + "Reserved Font Name" refers to any names specified as such after the + copyright statement(s). + + "Original Version" refers to the collection of Font Software components as + distributed by the Copyright Holder(s). + + "Modified Version" refers to any derivative made by adding to, deleting, + or substituting -- in part or in whole -- any of the components of the + Original Version, by changing formats or by porting the Font Software to a + new environment. + + "Author" refers to any designer, engineer, programmer, technical + writer or other person who contributed to the Font Software. + + PERMISSION & CONDITIONS + Permission is hereby granted, free of charge, to any person obtaining + a copy of the Font Software, to use, study, copy, merge, embed, modify, + redistribute, and sell modified and unmodified copies of the Font + Software, subject to the following conditions: + + 1) Neither the Font Software nor any of its individual components, + in Original or Modified Versions, may be sold by itself. + + 2) Original or Modified Versions of the Font Software may be bundled, + redistributed and/or sold with any software, provided that each copy + contains the above copyright notice and this license. These can be + included either as stand-alone text files, human-readable headers or + in the appropriate machine-readable metadata fields within text or + binary files as long as those fields can be easily viewed by the user. + + 3) No Modified Version of the Font Software may use the Reserved Font + Name(s) unless explicit written permission is granted by the corresponding + Copyright Holder. This restriction only applies to the primary font name as + presented to the users. + + 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font + Software shall not be used to promote, endorse or advertise any + Modified Version, except to acknowledge the contribution(s) of the + Copyright Holder(s) and the Author(s) or with their explicit written + permission. + + 5) The Font Software, modified or unmodified, in part or in whole, + must be distributed entirely under this license, and must not be + distributed under any other license. The requirement for fonts to + remain under this license does not apply to any document created + using the Font Software. + + TERMINATION + This license becomes null and void if any of the above conditions are + not met. + + DISCLAIMER + THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT + OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE + COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL + DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM + OTHER DEALINGS IN THE FONT SOFTWARE. json: ofl-1.1.json - yml: ofl-1.1.yml + yaml: ofl-1.1.yml html: ofl-1.1.html - text: ofl-1.1.LICENSE + license: ofl-1.1.LICENSE - license_key: ofl-1.1-no-rfn + category: Permissive spdx_license_key: OFL-1.1-no-RFN other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This Font Software is licensed under the SIL Open Font License, Version 1.1. + with no Reserved Font Name for this Font Software. + This license is copied below, and is also available with a FAQ at: + http://scripts.sil.org/OFL + ----------------------------------------------------------- + SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 + ----------------------------------------------------------- + + PREAMBLE + The goals of the Open Font License (OFL) are to stimulate worldwide + development of collaborative font projects, to support the font creation + efforts of academic and linguistic communities, and to provide a free and + open framework in which fonts may be shared and improved in partnership + with others. + + The OFL allows the licensed fonts to be used, studied, modified and + redistributed freely as long as they are not sold by themselves. The + fonts, including any derivative works, can be bundled, embedded, + redistributed and/or sold with any software provided that any reserved + names are not used by derivative works. The fonts and derivatives, + however, cannot be released under any other type of license. The + requirement for fonts to remain under this license does not apply + to any document created using the fonts or their derivatives. + + DEFINITIONS + "Font Software" refers to the set of files released by the Copyright + Holder(s) under this license and clearly marked as such. This may + include source files, build scripts and documentation. + + "Reserved Font Name" refers to any names specified as such after the + copyright statement(s). + + "Original Version" refers to the collection of Font Software components as + distributed by the Copyright Holder(s). + + "Modified Version" refers to any derivative made by adding to, deleting, + or substituting -- in part or in whole -- any of the components of the + Original Version, by changing formats or by porting the Font Software to a + new environment. + + "Author" refers to any designer, engineer, programmer, technical + writer or other person who contributed to the Font Software. + + PERMISSION & CONDITIONS + Permission is hereby granted, free of charge, to any person obtaining + a copy of the Font Software, to use, study, copy, merge, embed, modify, + redistribute, and sell modified and unmodified copies of the Font + Software, subject to the following conditions: + + 1) Neither the Font Software nor any of its individual components, + in Original or Modified Versions, may be sold by itself. + + 2) Original or Modified Versions of the Font Software may be bundled, + redistributed and/or sold with any software, provided that each copy + contains the above copyright notice and this license. These can be + included either as stand-alone text files, human-readable headers or + in the appropriate machine-readable metadata fields within text or + binary files as long as those fields can be easily viewed by the user. + + 3) No Modified Version of the Font Software may use the Reserved Font + Name(s) unless explicit written permission is granted by the corresponding + Copyright Holder. This restriction only applies to the primary font name as + presented to the users. + + 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font + Software shall not be used to promote, endorse or advertise any + Modified Version, except to acknowledge the contribution(s) of the + Copyright Holder(s) and the Author(s) or with their explicit written + permission. + + 5) The Font Software, modified or unmodified, in part or in whole, + must be distributed entirely under this license, and must not be + distributed under any other license. The requirement for fonts to + remain under this license does not apply to any document created + using the Font Software. + + TERMINATION + This license becomes null and void if any of the above conditions are + not met. + + DISCLAIMER + THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT + OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE + COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL + DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM + OTHER DEALINGS IN THE FONT SOFTWARE. json: ofl-1.1-no-rfn.json - yml: ofl-1.1-no-rfn.yml + yaml: ofl-1.1-no-rfn.yml html: ofl-1.1-no-rfn.html - text: ofl-1.1-no-rfn.LICENSE + license: ofl-1.1-no-rfn.LICENSE - license_key: ofl-1.1-rfn + category: Permissive spdx_license_key: OFL-1.1-RFN other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + with Reserved Font Name . + with Reserved Font Name . + + This Font Software is licensed under the SIL Open Font License, Version 1.1. + This license is copied below, and is also available with a FAQ at: + http://scripts.sil.org/OFL + + ----------------------------------------------------------- + SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 + ----------------------------------------------------------- + + PREAMBLE + The goals of the Open Font License (OFL) are to stimulate worldwide + development of collaborative font projects, to support the font creation + efforts of academic and linguistic communities, and to provide a free and + open framework in which fonts may be shared and improved in partnership + with others. + + The OFL allows the licensed fonts to be used, studied, modified and + redistributed freely as long as they are not sold by themselves. The + fonts, including any derivative works, can be bundled, embedded, + redistributed and/or sold with any software provided that any reserved + names are not used by derivative works. The fonts and derivatives, + however, cannot be released under any other type of license. The + requirement for fonts to remain under this license does not apply + to any document created using the fonts or their derivatives. + + DEFINITIONS + "Font Software" refers to the set of files released by the Copyright + Holder(s) under this license and clearly marked as such. This may + include source files, build scripts and documentation. + + "Reserved Font Name" refers to any names specified as such after the + copyright statement(s). + + "Original Version" refers to the collection of Font Software components as + distributed by the Copyright Holder(s). + + "Modified Version" refers to any derivative made by adding to, deleting, + or substituting -- in part or in whole -- any of the components of the + Original Version, by changing formats or by porting the Font Software to a + new environment. + + "Author" refers to any designer, engineer, programmer, technical + writer or other person who contributed to the Font Software. + + PERMISSION & CONDITIONS + Permission is hereby granted, free of charge, to any person obtaining + a copy of the Font Software, to use, study, copy, merge, embed, modify, + redistribute, and sell modified and unmodified copies of the Font + Software, subject to the following conditions: + + 1) Neither the Font Software nor any of its individual components, + in Original or Modified Versions, may be sold by itself. + + 2) Original or Modified Versions of the Font Software may be bundled, + redistributed and/or sold with any software, provided that each copy + contains the above copyright notice and this license. These can be + included either as stand-alone text files, human-readable headers or + in the appropriate machine-readable metadata fields within text or + binary files as long as those fields can be easily viewed by the user. + + 3) No Modified Version of the Font Software may use the Reserved Font + Name(s) unless explicit written permission is granted by the corresponding + Copyright Holder. This restriction only applies to the primary font name as + presented to the users. + + 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font + Software shall not be used to promote, endorse or advertise any + Modified Version, except to acknowledge the contribution(s) of the + Copyright Holder(s) and the Author(s) or with their explicit written + permission. + + 5) The Font Software, modified or unmodified, in part or in whole, + must be distributed entirely under this license, and must not be + distributed under any other license. The requirement for fonts to + remain under this license does not apply to any document created + using the Font Software. + + TERMINATION + This license becomes null and void if any of the above conditions are + not met. + + DISCLAIMER + THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT + OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE + COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL + DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM + OTHER DEALINGS IN THE FONT SOFTWARE. json: ofl-1.1-rfn.json - yml: ofl-1.1-rfn.yml + yaml: ofl-1.1-rfn.yml html: ofl-1.1-rfn.html - text: ofl-1.1-rfn.LICENSE + license: ofl-1.1-rfn.LICENSE +- license_key: ofrak-community-1.0 + category: Free Restricted + spdx_license_key: LicenseRef-scancode-ofrak-community-1.0 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: "OFRAK COMMUNITY LICENSE AGREEMENT \nVersion 1.0 \nEffective: August 8, 2022\n\nThank\ + \ you for your interest in OFRAK (Open Firmware Reverse Analysis Konsole).\nThis OFRAK Community\ + \ License Agreement (“Agreement”) provides users the right\nto use OFRAK and its components\ + \ for personal or academic, non-commercial use,\nas detailed below. This includes educational\ + \ purposes and non-funded academic\nresearch. This Agreement does not permit use for any\ + \ other purposes, including\ncommercial purposes. For any such use, you will need to reach\ + \ out to Red\nBalloon Security, Inc. at https://ofrak.com/license and request an OFRAK Pro\n\ + License, OFRAK Enterprise License or a custom agreement. Below are the details\nregarding\ + \ use of OFRAK. Note: As of August 2022, and for a limited period,\nOFRAK Pro Licenses are\ + \ available at no cost. RED BALLOON SECURITY, INC. (“RED\nBALLOON”) IS ONLY WILLING TO\ + \ LICENSE OFRAK AND RELATED DOCUMENTATION PURSUANT\nTO THIS AGREEMENT. READ THIS AGREEMENT\ + \ CAREFULLY BEFORE DOWNLOADING AND\nINSTALLING AND USING OFRAK. BY ACCESSING, INSTALLING,\ + \ COPYING OR OTHERWISE\nUSING OFRAK, YOU ACKNOWLEDGE AND AGREE ON BEHALF OF YOURSELF AND\ + \ YOUR\nEMPLOYER/INSTITUTION (“YOU”) TO BE BOUND TO THIS AGREEMENT AND THAT YOU\nACKNOWLEDGE\ + \ THAT THIS AGREEMENT CREATES A LEGALLY ENFORCEABLE CONTRACT AND\nCONSTITUTES ACCEPTANCE\ + \ OF ALL TERMS AND CONDITIONS OF THIS AGREEMENT WITHOUT\nMODIFICATION. YOU REPRESENT THAT\ + \ YOU ARE AUTHORIZED TO ACCEPT THIS AGREEMENT\nON YOUR EMPLOYER’S BEHALF. IF YOU DO NOT\ + \ AGREE TO THE FOREGOING TERMS AND\nCONDITIONS, DO NOT INSTALL, COPY OR USE OFRAK.\n\n1.\t\ + Definitions. 1.1\t“OFRAK” consists of (a) the source code\nrepository for OFRAK, which\ + \ can be found at\nhttps://github.com/redballoonsecurity/ofrak; (b) the following Python\n\ + packages, which are also available via PyPI, the Python Package Index: ofrak,\nofrak_components,\ + \ ofrak_io, ofrak_type, ofrak_patch_maker, ofrak_angr,\nofrak_binary_ninja, ofrak_ghidra;\ + \ (c) the OFRAK graphical user interface (GUI);\n(d) OFRAK documentation. OFRAK includes\ + \ all updates, improvements, APIs and\nadd-ons provided by Red Balloon with respect thereto,\ + \ which Red Balloon\nspecifies is licensed under this Community License Agreement. OFRAK\ + \ is\npresently made available in three formats: (i) source code repository, (ii)\nPyPI\ + \ Packages and (iii) Docker images with dependencies preinstalled.\n\n1.2\t“Academic Purposes”\ + \ means use within a non-profit academic institution\nby its then-current faculty and students\ + \ for the purposes of non-profit\nscholarly research, classroom and education, and not any\ + \ other use (including\nwithout limitation, directly or indirectly in connection with any\ + \ commercial\nactivity such as, for example, sponsored research or consulting services).\n\ + Shared Use of OFRAK for an Academic Purpose is permitted only when (a) used for\neducational\ + \ purposes, (b) access is restricted and not provided to the general\npublic, (c) access\ + \ is limited to employees and/or students of the same\ninstitution involved in a specific\ + \ educational activity, and (d) all users\naccept and are subject to this Agreement.\n\n\ + 1.3\t“Non-Commercial Use” means personal research, evaluation, or\ndevelopment use by an\ + \ individual, and not use by or on behalf of any commercial\nentity or organization or directly\ + \ or indirectly in connection with any\ncommercial activity. For clarity, you cannot make\ + \ money off of redistributing\nOFRAK code (including Derivatives), OFRAK analysis, OFRAK-modified\ + \ binaries, or\nother OFRAK outputs. Non-Commercial Use also excludes any Shared Use.\n\ + \ \n1.4\t“Commercial Use” means any use other than Academic Purposes or\nNon-Commercial\ + \ Use, including, without limitation, use for any commercial\npurpose or by any commercial\ + \ entity, including without limitation\nredistributing the OFRAK code (including Derivatives),\ + \ OFRAK analysis,\nOFRAK-modified binaries, or other OFRAK outputs for any monetary or other\n\ + commercial consideration.\n\n1.5\t“Derivatives” means any modifications, additions, enhancements,\ + \ or\nderivative works of OFRAK or any component thereof. For purposes of this\nAgreement,\ + \ Derivatives shall not include works that remain separable from, or\nmerely link to, the\ + \ interfaces of OFRAK or any Derivatives.\n\n1.6\t“Shared Use” means any use of OFRAK where\ + \ the person who set up a\nparticular instance of OFRAK is not the same person interacting\ + \ with that\ninstance of OFRAK, or where a single instance of OFRAK is used by more than\ + \ one\nperson (whether on the same or different occasions). This includes, but is not\n\ + limited to, the use of OFRAK on a server that is accessible by more than one\nperson, or\ + \ by any person other than the person who set up the use of OFRAK on\nthe said server.\n\ + \n2.\tLicense. Subject to the terms and conditions of this Agreement, Red\nBalloon grants\ + \ to you a nonexclusive, nonsublicensable, nontransferable,\nno-charge, royalty-free, limited\ + \ license to install, use, copy, modify, create\nderivative works of OFRAK only for (a)\ + \ Academic Purposes and (b) Non-Commercial\nUse and to share Derivatives (i) publicly within\ + \ the community (via publicly\navailable forks on GitHub.com), (ii) for Shared Use for an\ + \ Academic Purpose,\nand (iii) with Red Balloon, for the purposes stated in this Agreement.\ + \ For\nclarity, the foregoing license does not grant to you any right or license to\ncommercialize,\ + \ distribute or use OFRAK, Derivatives, OFRAK code, OFRAK\nanalysis, OFRAK-modified binaries,\ + \ or other OFRAK outputs for any other purpose\nwhatsoever, including Commercial Use, other\ + \ than Academic Purposes or\nNon-Commercial Use. In the event that you wish to use OFRAK\ + \ for any other\npurpose, including Commercial Use, you need to contact Red Balloon and\ + \ enter\ninto a separate OFRAK Pro License, OFRAK Enterprise License or other custom\nagreement.\ + \ Except for the limited rights and licenses expressly granted\nhereunder, no other license\ + \ is granted, no other use is permitted.\n\n3.\tDerivatives. To the extent that you prepare\ + \ or create any Derivatives,\nyou shall and hereby grant to (a) all users of OFRAK a right\ + \ and license to\nsuch Derivatives upon the terms and conditions set forth in this Agreement\ + \ and\n(b) Red Balloon a perpetual, fully paid-up, royalty-free, worldwide and\nirrevocable,\ + \ right and license to use, copy, modify, enhance, prepare\nderivative works of, distribute,\ + \ with unlimited right to sublicense, make, have\nmade, sell, have sold, import, export\ + \ and otherwise commercialize such\nDerivatives. You acknowledge that Red Balloon may,\ + \ but is not obligated to,\ninclude your Derivatives in, and otherwise incorporate your\ + \ Derivatives into,\nthe core OFRAK codebase. In the event that you create Derivatives,\ + \ you must\n(i) retain all copyright and other proprietary rights licenses included in the\n\ + original OFRAK code, and any other Derivatives, and (ii) make it clear that you\nmodified\ + \ the original version of OFRAK. Red Balloon encourages you to make\nyour Derivatives available\ + \ to the community by forking the OFRAK source code\nrepository on GitHub and publishing\ + \ your Derivatives on your forked repository,\nbut you are not required to do so. You represent\ + \ and warrant that you have\nsufficient rights to any Derivatives and are legally entitled\ + \ to grant the\nabove rights and licenses. If you are an individual and your\nemployer(s)/institution(s)\ + \ have rights to intellectual property that you create\nthat includes your Derivatives,\ + \ you represent that you have received permission\nto make and contribute Derivatives on\ + \ behalf of that employer/institution.\n\n4.\tOwnership; Restrictions. Except as expressly\ + \ and unambiguously set\nforth herein, Red Balloon and its licensors and contributors retain\ + \ all right,\ntitle and interest in and to OFRAK, Derivatives, all copies, modifications\ + \ and\nderivative works thereof, including without limitation, all rights to patent,\ncopyright,\ + \ trade secret and other proprietary or intellectual property rights\nrelated to any of\ + \ the foregoing. To the extent that you create any\nDerivatives, subject to the rights\ + \ and licenses granted herein, you retain\nownership of all right, title and interest in\ + \ and to such Derivatives,\nincluding without limitation, all intellectual property rights\ + \ related to any\nof the foregoing. You will maintain the copyright notice and any other\ + \ notices\nor identifications that appear on or in OFRAK and any Derivatives or any other\n\ + media or documentation that is subject to this Agreement. You will not (and\nwill not allow\ + \ any third party to): (a) use OFRAK or any Derivatives, except\nas expressly permitted\ + \ in this Agreement, (b) provide, lease, lend, disclose,\nuse for timesharing or service\ + \ bureau purposes, or otherwise use or allow\nothers to use for the benefit of any third\ + \ party, OFRAK, (c) possess or use\nOFRAK, or allow the transfer, transmission, export,\ + \ or re-export of OFRAK or\nportion thereof in violation of any export control laws or regulations\n\ + administered by the U.S. Commerce Department, U.S. Treasury Department’s Office\nof Foreign\ + \ Assets Control, or any other government agency, (d) use OFRAK in any\nway that violates\ + \ any applicable law, rule or regulation or for any illegal use\nor activity; or (e) seek\ + \ any patent or other intellectual property rights or\nprotections over or in connection\ + \ with OFRAK or any Derivatives you create.\n\n5.\tFeedback. In addition to Derivatives,\ + \ you may, from time to time and\nin your sole discretion, make suggestions for changes,\ + \ modifications or\nimprovements to OFRAK (“Feedback”). Red Balloon shall have an irrevocable,\n\ + perpetual, worldwide, sublicenseable, transferable, full paid-up, royalty free\nright and\ + \ license to use, distribute and otherwise exploit all Feedback for any\npurpose.\n\n6.\t\ + No Cost License. OFRAK and any Derivatives provided pursuant to this\nAgreement shall be\ + \ provided during the Term at no charge to you. \n\n7. Services. No training or support\ + \ services are provided under this Agreement.\nRed Balloon may in its discretion respond\ + \ to support inquiries through Red\nBalloon’s support channels, such as Slack.\n\n8.\tTerm\ + \ and Termination. This Agreement shall commence upon the initial\ndownload of OFRAK and\ + \ shall continue until and unless terminated as set forth\nherein (the “Term”). This Agreement\ + \ may be terminated by Red Balloon\nimmediately upon notice to you in the event that you\ + \ breach any term or\ncondition of this Agreement. Upon any termination, you shall immediately\ + \ cease\nall use of OFRAK. This sentence and the following provisions will survive\ntermination:\ + \ 1, 3 - 5 and 9 - 12. Termination is not an exclusive remedy and\nall other remedies will\ + \ remain available.\n\n9.\tWarranty Disclaimer. The parties acknowledge that OFRAK is provided\n\ + “AS IS” and may not be functional on any machine or in any environment.\nNEITHER RED BALLOON\ + \ NOR ANY CONTRIBUTOR OF ANY DERIVATIVES MAKE ANY WARRANTIES,\nEXPRESS OR IMPLIED, EITHER\ + \ IN FACT OR BY OPERATION OF LAW, STATUTORY OR\nOTHERWISE, AND RED BALLOON AND ANY CONTRIBUTOR\ + \ OF ANY DERIVATIVES EXPRESSLY\nEXCLUDES AND DISCLAIMS ANY WARRANTY OF MERCHANTABILITY,\ + \ FITNESS FOR A\nPARTICULAR PURPOSE, TITLE, ACCURACY, FREEDOM FROM ERRORS, FREEDOM FROM\n\ + PROGRAMMING DEFECTS, NONINTERFERENCE AND NONINFRINGEMENT, AND ALL IMPLIED\nWARRANTIES ARISING\ + \ OUT OF COURSE OF DEALING, COURSE OF PERFORMANCE AND USAGE OF\nTRADE. THIS AGREEMENT IS\ + \ NOT INTENDED FOR USE OF OFRAK IN HAZARDOUS\nENVIRONMENTS REQUIRING FAIL-SAFE PERFORMANCE\ + \ WHERE THE FAILURE OF OFRAK COULD\nLEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SIGNIFICANT\ + \ PHYSICAL OR\nENVIRONMENTAL DAMAGE (“HIGH RISK ACTIVITIES”). USE OF OFRAK IN HIGH RISK\n\ + ACTIVITIES IS NOT AUTHORIZED PURSUANT TO THIS AGREEMENT. THE PARTIES AGREE\nTHAT THIS SECTION\ + \ 9 REPRESENTS A REASONABLE ALLOCATION OF RISK AND THAT RED\nBALLOON WOULD NOT PROCEED IN\ + \ THE ABSENCE OF SUCH ALLOCATION.\n\n10.\tLimitations. NEITHER RED BALLOON NOR ANY CONTRIBUTOR\ + \ OF DERIVATIVES\nSHALL BE RESPONSIBLE OR LIABLE WITH RESPECT TO ANY SUBJECT MATTER OF THIS\n\ + AGREEMENT OR TERMS AND CONDITIONS RELATED THERETO UNDER ANY CONTRACT,\nNEGLIGENCE, STRICT\ + \ LIABILITY OR OTHER THEORY (A) FOR LOSS OR INACCURACY OF\nDATA, OR COST OF PROCUREMENT\ + \ OF SUBSTITUTE GOODS, SERVICES OR TECHNOLOGY; (B)\nFOR ANY DIRECT, INDIRECT, PUNITIVE,\ + \ INCIDENTAL, RELIANCE, SPECIAL, EXEMPLARY OR\nCONSEQUENTIAL DAMAGES INCLUDING, BUT NOT\ + \ LIMITED TO, LOSS OF REVENUES AND LOSS\nOF PROFITS TO LICENSEE OR ANY THIRD PARTIES; (C)\ + \ FOR ANY MATTER BEYOND ITS\nREASONABLE CONTROL OR (D) FOR USE YOU OR OTHERS MAY MAKE OF\ + \ OFRAK, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n11.\tIndemnification. \ + \ You agree that (a) Red Balloon and any contributors\nshall have no liability whatsoever\ + \ for your use of OFRAK or any Derivatives and\n(b) you shall indemnify, and hold harmless,\ + \ and (upon request) defend Red\nBalloon and any other user or contributor from and against\ + \ any and all claims,\ndamages, liabilities, losses, and costs (including reasonable attorneys’\ + \ fees)\nsuffered or incurred by such party which arise from or relate to your (i) use\n\ + of OFRAK or Derivatives, or (ii) breach of this Agreement.\n\n12.\tMiscellaneous. Neither\ + \ this Agreement nor the licenses granted\nhereunder are assignable or transferable by you;\ + \ any attempt to do so shall be\nvoid. Red Balloon may assign this Agreement in whole or\ + \ in part. Any notice,\nreport, approval or consent required or permitted hereunder shall\ + \ be in\nwriting. The provisions hereof are for the benefit of the parties only and not\n\ + for any other person or entity. If any provision of this Agreement shall be\nadjudged by\ + \ any court of competent jurisdiction to be unenforceable or invalid,\nthat provision shall\ + \ be limited or eliminated to the minimum extent necessary\nso that this Agreement shall\ + \ otherwise remain in full force and effect and\nenforceable. This Agreement shall be deemed\ + \ to have been made in, and shall be\nconstrued pursuant to the laws of the State of New\ + \ York, without regard to\nconflicts of laws provisions thereof, and without regard to the\ + \ United Nations\nConvention on the International Sale of Goods or the Uniform Computer\n\ + Information Transactions Act. Any waivers or amendments shall be effective only\nif made\ + \ in writing. This Agreement is the complete and exclusive statement of\nthe mutual understanding\ + \ of the parties and supersedes and cancels all previous\nwritten and oral agreements and\ + \ communications relating to the subject matter\nof this Agreement." + json: ofrak-community-1.0.json + yaml: ofrak-community-1.0.yml + html: ofrak-community-1.0.html + license: ofrak-community-1.0.LICENSE - license_key: ogc + category: Permissive spdx_license_key: LicenseRef-scancode-ogc other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This OGC work (including software, documents, or other related items) is being + provided by the copyright holders under the following license. By obtaining, + using and/or copying this work, you (the licensee) agree that you have read, + understood, and will comply with the following terms and conditions: + + Permission to use, copy, and modify this software and its documentation, with or + without modification, for any purpose and without fee or royalty is hereby + granted, provided that you include the following on ALL copies of the software + and documentation or portions thereof, including modifications, that you make: + + 1. The full text of this NOTICE in a location viewable to users of the + redistributed or derivative work. + + 2. Notice of any changes or modifications to the OGC files, including the date + changes were made. (We recommend you provide URIs to the location from which the + code is derived.) + + THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE + NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT + THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY + PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. + + COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. + + The name and trademarks of copyright holders may NOT be used in advertising or + publicity pertaining to the software without specific, written prior permission. + Title to copyright in this software and any associated documentation will at all + times remain with copyright holders. json: ogc.json - yml: ogc.yml + yaml: ogc.yml html: ogc.html - text: ogc.LICENSE + license: ogc.LICENSE - license_key: ogc-1.0 + category: Permissive spdx_license_key: OGC-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "OGC Software License, Version 1.0\n\nThis OGC work (including software, documents,\ + \ or other related items) is being\nprovided by the copyright holders under the following\ + \ license. By obtaining,\nusing and/or copying this work, you (the licensee) agree that\ + \ you have read,\nunderstood, and will comply with the following terms and conditions:\n\ + \nPermission to use, copy, and modify this software and its documentation, with or\nwithout\ + \ modification, for any purpose and without fee or royalty is hereby\ngranted, provided\ + \ that you include the following on ALL copies of the software\nand documentation or portions\ + \ thereof, including modifications, that you make:\n\n1. The full text of this NOTICE in\ + \ a location viewable to users of the\nredistributed or derivative work.\n\n2. Any pre-existing\ + \ intellectual property disclaimers, notices, or terms and\nconditions. If none exist, a\ + \ short notice of the following form (hypertext is\npreferred, text is permitted) should\ + \ be used within the body of any redistributed\nor derivative code: \"Copyright © [$date-of-document]\ + \ Open Geospatial Consortium, Inc. \nAll Rights Reserved. http://www.ogc.org/ogc/legal \n\ + (Hypertext is preferred, but a textual representation is permitted.)\n\n3. Notice of any\ + \ changes or modifications to the OGC files, including the date\nchanges were made. (We\ + \ recommend you provide URIs to the location from which the\ncode is derived.)\n \nTHIS\ + \ SOFTWARE AND DOCUMENTATION IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE\nNO REPRESENTATIONS\ + \ OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\nTO, WARRANTIES OF MERCHANTABILITY\ + \ OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT\nTHE USE OF THE SOFTWARE OR DOCUMENTATION\ + \ WILL NOT INFRINGE ANY THIRD PARTY\nPATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\n\ + COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR\nCONSEQUENTIAL\ + \ DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.\n\nThe name and trademarks\ + \ of copyright holders may NOT be used in advertising or\npublicity pertaining to the software\ + \ without specific, written prior permission.\nTitle to copyright in this software and any\ + \ associated documentation will at all\ntimes remain with copyright holders." json: ogc-1.0.json - yml: ogc-1.0.yml + yaml: ogc-1.0.yml html: ogc-1.0.html - text: ogc-1.0.LICENSE + license: ogc-1.0.LICENSE - license_key: ogc-2006 + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + This OGC work (including software, documents, or other related items) is being + provided by the copyright holders under the following license. By obtaining, + using and/or copying this work, you (the licensee) agree that you have read, + understood, and will comply with the following terms and conditions: + + Permission to use, copy, and modify this software and its documentation, with or + without modification, for any purpose and without fee or royalty is hereby + granted, provided that you include the following on ALL copies of the software + and documentation or portions thereof, including modifications, that you make: + + 1. The full text of this NOTICE in a location viewable to users of the + redistributed or derivative work. + + 2. Any pre-existing intellectual property disclaimers, notices, or terms and + conditions. If none exist, a short notice of the following form (hypertext is + preferred, text is permitted) should be used within the body of any + redistributed or derivative code: "Copyright © [$date-of-document] Open + Geospatial Consortium, Inc. All Rights Reserved. + http://www.opengeospatial.org/ogc/legal (Hypertext is preferred, but a textual + representation is permitted.) + + 3. Notice of any changes or modifications to the OGC files, including the date + changes were made. (We recommend you provide URIs to the location from which the + code is derived.) + + THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE + NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT + THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY + PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. + + COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. + + The name and trademarks of copyright holders may NOT be used in advertising or + publicity pertaining to the software without specific, written prior permission. + Title to copyright in this software and any associated documentation will at all + times remain with copyright holders. json: ogc-2006.json - yml: ogc-2006.yml + yaml: ogc-2006.yml html: ogc-2006.html - text: ogc-2006.LICENSE + license: ogc-2006.LICENSE - license_key: ogc-document-2020 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ogc-document-2020 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Document Notice\n\nPublic documents on the OGC site are provided by the copyright holders\ + \ under the\nfollowing license. The software or Document Type Definitions (DTDs) associated\ + \ \nwith OGC specifications are governed by the Software Notice. By using and/or \ncopying\ + \ this document, or the OGC document from which this statement is linked, \nyou (the licensee)\ + \ agree that you have read, understood, and will comply with \nthe following terms and conditions:\n\ + \nPermission to use, copy, and distribute the contents of this document, or the \nOGC document\ + \ from which this statement is linked, in any medium for any purpose \nand without fee or\ + \ royalty is hereby granted, provided that you include the \nfollowing on ALL copies of\ + \ the document, or portions thereof, that you use:\n\n 1. Include a link or URL to the\ + \ original OGC document.\n 2. The pre-existing copyright notice of the original author,\ + \ or if it doesn't \n exist, a notice of the form: \"Copyright © \ + \ Open \n Geospatial Consortium, Inc. All Rights Reserved. \n http://www.opengeospatial.org/ogc/document\ + \ (Hypertext is preferred, but a \n textual representation is permitted.)\n 3. If\ + \ it exists, the STATUS of the OGC document.\n\nWhen space permits, inclusion of the full\ + \ text of this NOTICE should be \nprovided. We request that authorship attribution be provided\ + \ in any software, \ndocuments, or other items or products that you create pursuant to the\ + \ \nimplementation of the contents of this document, or any portion thereof.\n\nNo right\ + \ to create modifications or derivatives of OGC documents is granted \npursuant to this\ + \ license. However, if additional requirements (documented in the \nCopyright FAQ) are satisfied,\ + \ the right to create modifications or derivatives \nis sometimes granted by the OGC to\ + \ individuals complying with those requirements.\n\nTHIS DOCUMENT IS PROVIDED \"AS IS,\"\ + \ AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS \nOR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING,\ + \ BUT NOT LIMITED TO, WARRANTIES OF \nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,\ + \ NON-INFRINGEMENT, OR TITLE; \nTHAT THE CONTENTS OF THE DOCUMENT ARE SUITABLE FOR ANY PURPOSE;\ + \ NOR THAT THE \nIMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS,\ + \ \nCOPYRIGHTS, TRADEMARKS OR OTHER RIGHTS\n\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY\ + \ DIRECT, INDIRECT, SPECIAL OR \nCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE DOCUMENT\ + \ OR THE PERFORMANCE \nOR IMPLEMENTATION OF THE CONTENTS THEREOF.\n\nThe name and trademarks\ + \ of copyright holders may NOT be used in advertising or \npublicity pertaining to this\ + \ document or its contents without specific, written \nprior permission. Title to copyright\ + \ in this document will at all times remain \nwith copyright holders." json: ogc-document-2020.json - yml: ogc-document-2020.yml + yaml: ogc-document-2020.yml html: ogc-document-2020.html - text: ogc-document-2020.LICENSE + license: ogc-document-2020.LICENSE - license_key: ogdl-taiwan-1.0 + category: Permissive spdx_license_key: OGDL-Taiwan-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Open Government Data License, version 1.0 + + The Open Government Data License (the License) is intended to facilitate government data sharing and application among the public in outreaching and promotion method, and to advance government service efficacy and government data value and quality in collaboration with the creative private sector. + + 1. Definition + + 1.1. "Data Providing Organization" refers to government agency, government-owned business, public school and administrative legal entity that has various types of electronic data released to the public under the License when it is obtained or made in the scope of performance for public duties. + + 1.2. "User" refers to individual, legal entity or group that receives and uses Open Data under the License, including individual, legal entity or group who is receiving and using Open Data as the recipient of the former Users under the sublicensing scenario. + + 1.3. "Open Data" means data that the Data Providing Organization owns its copyright in whole or has full authority to provide it to third parties in sublicensing way, and provides it in an open and modifiable form such that there are no unnecessary technological obstacles to the performance of the licensed rights, including but not limited to the following creation protected by copyright: + + a. "Compilation Work" means a work formed by the creative selection and arrangement of data, and can be protected by copyright law, such as database or other qualified structured data combination. + + b. "Material" means a separate work, that is collected into the Open Data aggregation and can be protected by copyright law independently. + + 1.4. "Derivative Work" means any adaptation based upon the Open Data provided under the License and in which the original data is reproduced, adapted, compiled, or otherwise modified. + + 1.5. "Information" means the pure record that is not subject to copyright law and providing along with the Open Data. Accordingly, the granting of copyright license hereunder does not apply to such Information, however, other provisions of the License shall be applied to it as well as to the Open Data. + + 2. Grant of Copyright License + + 2.1. The Data Providing Organization grants User a perpetual, worldwide, non-exclusive, irrevocable, royalty-free copyright license to reproduce, distribute, publicly transmit, publicly broadcast, publicly recite, publicly present, publicly perform, compile, adapt to the Open Data provided for any purpose, including but not limited to making all kinds of Derivative Works either as products or services. + + 2.2. User can sublicense the copyrights which he/she is granted through 2.1. to others. + + 2.3. Any additional written offer or other formality for copyright license from the Data Providing Organization is not required, if User makes use of Open Data in compliance with the License. + + 2.4. The License does not grant any rights in the patents and trademarks. + + 3. Condition and Obligation + + 3.1. By utilizing the Open Data provided under the License, User indicates his/her acceptance of this License and all its terms and conditions overall to do so, and shall make the reasonable efforts with respect to moral right protection of the third parties involved. + + 3.2. When User makes use of the Open Data and its Derivative Work, he/she must make an explicit notice of statement as attribution requested in the Exhibit below by the Data Providing Organization. If User fails to comply with the attribution requirement, the rights granted under this License shall be deemed to have been void ab initio. + + 4. License Version and Compatibility + + 4.1. When a new version of the License has been updated and declared, if not the Data Providing Organization has already appointed a specific version of the License for the Open Data it provided, User may make use of the Open Data under the terms of the version of the License under which he/she originally received, or under the terms of any subsequent version published thereafter. + + 4.2. The License is compatible with the Creative Commons Attribution License 4.0 International. This means that when the Open Data is provided under the License, User automatically satisfies the conditions of this License when he/she makes use of the Open Data in compliance with the Creative Commons Attribution License 4.0 International thereafter. + + 5. Cessation of Data Providing + + 5.1. Under the circumstances described hereunder, the Data Providing Organization may cease to provide all or part of a specific Open Data, and User shall not claim any damages or compensations on account of that to the provider: + + a. It has been evaluated by the Data Providing Organization that continuously providing of a specific Open Data as not being met the requirement of public interest due to the change of circumstances unpredictable or for a legitimate cause. + + b. A provided Open Data might jeopardize third parties' intellectual property rights, privacy rights, or other interests protected at law. + + 6. Disclaimer + + 6.1. The providing of Open Data under the License shall not be construed as any statement, warranty, or implication to the recommendation, permission, approval, or sanction of all kinds of authoritative declaration of intention made by the Data Providing Organization. And the Data Providing Organization shall only be liable to make the correcting and updating when the errors or omissions of Open Data provided by it has been acknowledged. + + 6.2. The Data Providing Organization shall not be liable for damage or loss User encounters when he/she makes use of the Open Data provided under the License. This disclaimer applies as well when User has third parties encountered damage or loss and thus has been claimed for remedies. Unless otherwise specified according to law, the Data Providing Organization shall not be held responsible for any damages or compensations herein. + + 6.3. User shall be liable for the damages to the Data Providing Organization, if he/she has used the Open Data provided wrongfully due to an intentional or negligent misconduct and caused damages to the Data Providing Organization. The same reimbursement rule for wrongful misconducting shall be applied to the User when the damaged one is a third party and the compensations have already been disbursed by the Data Providing Organization to the third party due to a legal claim. + + 7. Governing Law + + 7.1. The interpretation, validity, enforcement and matters not mentioned herein for the License is governed by the Laws of Republic of China (Taiwan). + + Exhibit - Attribution + + a. Data Providing Organization/Agency [year] [distinguishing full name of the released Open Data and its version number] + + b. The Open Data is made available to the public under the Open Government Data License, User can make use of it when complying to the condition and obligation of its terms. + + c. Open Government Data License:https://data.gov.tw/license json: ogdl-taiwan-1.0.json - yml: ogdl-taiwan-1.0.yml + yaml: ogdl-taiwan-1.0.yml html: ogdl-taiwan-1.0.html - text: ogdl-taiwan-1.0.LICENSE + license: ogdl-taiwan-1.0.LICENSE - license_key: ogl-1.0a + category: Permissive spdx_license_key: LicenseRef-scancode-ogl-1.0a other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + OPEN GAME LICENSE Version 1.0a + + The following text is the property of Wizards of the Coast, Inc. and is + Copyright 2000 Wizards of the Coast, Inc ("Wizards"). All Rights Reserved. + + 1. Definitions: (a) "Contributors" means the copyright and/or trademark owners + who have contributed Open Game Content; (b) "Derivative Material" means + copyrighted material including derivative works and translations (including into + other computer languages), potation, modification, correction, addition, + extension, upgrade, improvement, compilation, abridgment or other form in which + an existing work may be recast, transformed or adapted; (c) "Distribute" means + to reproduce, license, rent, lease, sell, broadcast, publicly display, transmit + or otherwise distribute; (d) "Open Game Content" means the game mechanic and + includes the methods, procedures, processes and routines to the extent such + content does not embody the Product Identity and is an enhancement over the + prior art and any additional content clearly identified as Open Game Content by + the Contributor, and means any work covered by this License, including + translations and derivative works under copyright law, but specifically excludes + Product Identity; (e) "Product Identity" means product and product line names, + logos and identifying marks including trade dress; artifacts; creatures; + characters; stories, storylines, plots, thematic elements, dialogue, incidents, + language, artwork, symbols, designs, depictions, likenesses, formats, poses, + concepts, themes and graphic, photographic and other visual or audio + representations; names and descriptions of characters, spells, enchantments, + personalities, teams, personas, likenesses and special abilities; places, + locations, environments, creatures, equipment, magical or supernatural abilities + or effects, logos, symbols, or graphic designs; and any other trademark or + registered trademark clearly identified as Product Identity by the owner of the + Product Identity, and which specifically excludes the Open Game Content; (f) + "Trademark" means the logos, names, mark, sign, motto, designs that are used by + a Contributor to identify itself or its products or the associated products + contributed to the Open Game License by the Contributor; (g) "Use", "Used" or + "Using" means to use, Distribute, copy, edit, format, modify, translate and + otherwise create Derivative Material of Open Game Content; (h) "You" or "Your" + means the licensee in terms of this agreement. + + 2. The License: This License applies to any Open Game Content that contains a + notice indicating that the Open Game Content may only be Used under and in terms + of this License. You must affix such a notice to any Open Game Content that You + Use. No terms may be added to or subtracted from this License except as + described by the License itself. No other terms or conditions may be applied to + any Open Game Content Distributed using this License. + + 3. Offer and Acceptance: By Using the Open Game Content You indicate Your + acceptance of the terms of this License. + + 4. Grant and Consideration: In consideration for agreeing to use this License, + the Contributors grant You a perpetual, worldwide, royalty-free, non-exclusive + license with the exact terms of this License to Use, the Open Game Content. + + 5. Representation of Authority to Contribute: If You are contributing original + material as Open Game Content, You represent that Your contributions are Your + original creation and/or You have sufficient rights to grant the rights conveyed + by this License. + + 6. Notice of License Copyright: You must update the COPYRIGHT NOTICE portion of + this License to include the exact text of the COPYRIGHT NOTICE of any Open Game + Content You are copying, modifying or Distributing, and You must add the title, + the copyright date, and the copyright holder's name to the COPYRIGHT NOTICE of + any original Open Game Content You Distribute. + + 7. Use of Product Identity: You agree not to Use any Product Identity, including + as an indication as to compatibility, except as expressly licensed in another, + independent agreement with the owner of each element of that Product Identity. + You agree not to indicate compatibility or co-adaptability with any Trademark or + registered Trademark in conjunction with a work containing Open Game Content + except as expressly licensed in another, independent agreement with the owner of + such Trademark or registered Trademark. The Use of any Product Identity in Open + Game Content does not constitute a challenge to the ownership of that Product + Identity. The owner of any Product Identity Used in Open Game Content shall + retain all rights, title and interest in and to that Product Identity. + + 8. Identification: If You Distribute Open Game Content You must clearly indicate + which portions of the work that You are Distributing are Open Game Content. + + 9. Updating the License: Wizards or its designated Agents may publish updated + versions of this License. You may use any authorized version of this License to + copy, modify and Distribute any Open Game Content originally Distributed under + any version of this License. + + 10. Copy of this License: You MUST include a copy of this License with every + copy of the Open Game Content You Distribute. + + 11. Use of Contributor Credits: You may not market or advertise the Open Game + Content using the name of any Contributor unless You have written permission + from the Contributor to do so. + + 12. Inability to Comply: If it is impossible for You to comply with any of the + terms of this License with respect to some or all of the Open Game Content due + to statute, judicial order, or governmental regulation then You may not Use any + Open Game Material so affected. + + 13. Termination: This License will terminate automatically if You fail to comply + with all terms herein and fail to cure such breach within 30 days of becoming + aware of the breach. All sublicenses shall survive the termination of this + License. + + 14. Reformation: If any provision of this License is held to be unenforceable, + such provision shall be reformed only to the extent necessary to make it + enforceable. + + 15. COPYRIGHT NOTICE + Open Game License v 1.0a Copyright 2000, Wizards of the Coast, Inc. json: ogl-1.0a.json - yml: ogl-1.0a.yml + yaml: ogl-1.0a.yml html: ogl-1.0a.html - text: ogl-1.0a.LICENSE + license: ogl-1.0a.LICENSE - license_key: ogl-canada-2.0-fr + category: Permissive spdx_license_key: LicenseRef-scancode-ogl-canada-2.0-fr other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Licence du gouvernement ouvert – Canada + + Nous vous encourageons à utiliser l'Information offerte en vertu de la présente licence, sous réserve de quelques conditions. + Utilisation de l'Information visée par cette licence + + L'utilisation de l'Information indique que vous acceptez les modalités énoncées ci-dessous. + Le Fournisseur d’information vous octroie une licence mondiale, libre de redevances, perpétuelle et non exclusive pour l'utilisation de l'Information, y compris à des fins commerciales, sous réserve des modalités énoncées ci-dessous. + + Vous êtes libre : + + de copier, de modifier, de publier, de traduire, d’adapter, de distribuer ou d’utiliser autrement l'Information, quel que soit le support, mode ou format employé, à toutes fins légitimes. + + Vous êtes tenu, lorsque vous exercez l'une ou l'autre des activités susmentionnées : + + de reconnaître la source de l'Information en ajoutant tout énoncé d'attribution précisé par le ou les fournisseurs d'information et, lorsque possible, de fournir un lien vers cette licence. + Si le Fournisseur d'information ne vous fournit pas un énoncé d'attribution précis, ou si vous utilisez de l'Information provenant de plusieurs fournisseurs d'information et que la présence de multiples énoncés ne se prête pas à votre produit ou à votre application, vous devez utiliser l'énoncé d'attribution suivant : + + Contient de l'information visée par la Licence du gouvernement ouvert – Canada. + + Les modalités de cette licence sont importantes, et si vous ne respectez pas l'une ou l'autre d'entre elles, les droits qui vous sont concédés aux termes de la présente licence ou de toute autre licence semblable octroyée par le Fournisseur d’information vous seront retirés automatiquement. + Exemptions + + La présente licence ne confère pas le droit d'utiliser : + + des Renseignements personnels; + des droits de tierces parties que le Fournisseur d'information n'est pas autorisé à accorder; + les noms, les emblèmes, les logos ou d'autres symboles officiels du Fournisseur d’information; + l'Information qui est assujettie à d'autres droits de propriété intellectuelle, y compris les brevets, les marques de commerce et les marques officielles. + + Non-approbation + + La présente licence ne vous accorde pas le droit d’utiliser l’Information de manière à suggérer un statut officiel ou laisser entendre que le Fournisseur d’information vous appuie ou approuve votre utilisation de l’Information. + Absence de garantie + + L'Information est offerte sous licence « telle quelle » et le Fournisseur d'information, ni implicitement ni expressément, ne fait aucune déclaration, n'accorde aucune garantie et n'assume aucune obligation ou responsabilité dans la mesure où la loi le lui permet. + + Le Fournisseur d'information ne peut être tenu responsable de la présence d'erreurs ou d'omissions dans l'Information et ne se verra en aucun cas imputer la responsabilité de quelque perte, blessure ou dommage direct(e), indirect(e), spécial(e), accessoire, consécutif(ve) ou autre causé(e) par son utilisation ou découlant autrement de la présente licence ou de l’Information, même s’il est avisé de la possibilité d’un tel préjudice. + Lois applicables + + Cette licence est régie par les lois de la province de l’Ontario et les lois applicables du Canada. + + Toute procédure judiciaire se rapportant à cette licence ne pourra être portée que devant les tribunaux de l’Ontario ou la Cour fédérale du Canada. + Définitions + + Les définitions des termes employés dans la présente licence ont la signification suivante : + + « Fournisseur d'information » + S'entend de Sa Majesté la Reine du chef du Canada. + « Information » + S'entend des renseignements protégés par des droits d'auteur ou des autres renseignements qui sont offerts pour utilisation aux termes de la présente licence. + « Renseignements personnels » + S’entend des « renseignements personnels » au sens de l’article 3 de la Loi sur la protection des renseignements personnels, L.R.C. 1985, c. P-21. + « Vous » + S'entend d'une personne physique ou morale, ou d'un groupe de personnes constitué en société ou autre, qui acquiert des droits en vertu de la présente licence. + + Contrôle des versions + + Il s'agit de la version 2.0 de la Licence du gouvernement ouvert – Canada. Le Fournisseur d’information peut apporter des modifications périodiques aux conditions de cette licence et produire une nouvelle version de celle-ci. Votre utilisation de l'Information sera régie par les conditions précisées dans la licence en vigueur à la date où vous avez accédé à l'Information. json: ogl-canada-2.0-fr.json - yml: ogl-canada-2.0-fr.yml + yaml: ogl-canada-2.0-fr.yml html: ogl-canada-2.0-fr.html - text: ogl-canada-2.0-fr.LICENSE + license: ogl-canada-2.0-fr.LICENSE - license_key: ogl-uk-1.0 + category: Permissive spdx_license_key: OGL-UK-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "You are encouraged to use and re-use the Information that is available under this\n\ + \ licence, the Open Government Licence, freely and flexibly, with only a few conditions.\n\ + \nUsing information under this licence\nUse of copyright and database right material expressly\ + \ made available under this licence\n (the ‘Information’) indicates your acceptance of the\ + \ terms and conditions below.\n\nThe Licensor grants you a worldwide, royalty-free, perpetual,\ + \ non-exclusive licence to\nuse the Information subject to the conditions below.\n\nThis\ + \ licence does not affect your freedom under fair dealing or fair use or any other\n copyright\ + \ or database right exceptions and limitations.\n\nYou are free to:\ncopy, publish, distribute\ + \ and transmit the Information;\nadapt the Information;\nexploit the Information commercially\ + \ for example, by combining it with other Information,\nor by including it in your own product\ + \ or application.\nYou must, where you do any of the above:\nacknowledge the source of the\ + \ Information by including any attribution statement specified\nby the Information Provider(s)\ + \ and, where possible, provide a link to this licence;\nIf the Information Provider does\ + \ not provide a specific attribution statement, or if you are\nusing Information from several\ + \ Information Providers and multiple attributions are not\npractical in your product or\ + \ application, you may consider using the following:\n\nContains public sector information\ + \ licensed under the Open Government Licence v1.0.\n\nensure that you do not use the Information\ + \ in a way that suggests any official status or\nthat the Information Provider endorses\ + \ you or your use of the Information;\nensure that you do not mislead others or misrepresent\ + \ the Information or its source;\nensure that your use of the Information does not breach\ + \ the Data Protection Act 1998 or\nthe Privacy and Electronic Communications (EC Directive)\ + \ Regulations 2003.\nThese are important conditions of this licence and if you fail to comply\ + \ with them the rights\ngranted to you under this licence, or any similar licence granted\ + \ by the Licensor, will end automatically.\n\nExemptions\nThis licence does not cover the\ + \ use of:\n\npersonal data in the Information;\nInformation that has neither been published\ + \ nor disclosed under information access \nlegislation (including the Freedom of Information\ + \ Acts for the UK and Scotland) by \nor with the consent of the Information Provider;\n\ + departmental or public sector organisation logos, crests and the Royal Arms except \nwhere\ + \ they form an integral part of a document or dataset;\nmilitary insignia;\nthird party\ + \ rights the Information Provider is not authorised to license;\nInformation subject to\ + \ other intellectual property rights, including patents, trademarks,\nand design rights;\ + \ and\nidentity documents such as the British Passport.\nNo warranty\nThe Information is\ + \ licensed ‘as is’ and the Information Provider excludes all representations,\nwarranties,\ + \ obligations and liabilities in relation to the Information to the maximum extent permitted\ + \ by law.\n\nThe Information Provider is not liable for any errors or omissions in the Information\ + \ and\nshall not be liable for any loss, injury or damage of any kind caused by its use.\n\ + The Information Provider does not guarantee the continued supply of the Information.\n\n\ + Governing Law\nThis licence is governed by the laws of the jurisdiction in which the Information\ + \ Provider\nhas its principal place of business, unless otherwise specified by the Information\ + \ Provider.\n\nDefinitions\nIn this licence, the terms below have the following meanings:\n\ + \n‘Information’\nmeans information protected by copyright or by database right (for example,\ + \ literary\nand artistic works, content, data and source code) offered for use under the\ + \ terms of this licence.\n\n‘Information Provider’\nmeans the person or organisation providing\ + \ the Information under this licence.\n\n‘Licensor’\nmeans any Information Provider which\ + \ has the authority to offer Information under the\nterms of this licence or the Controller\ + \ of Her Majesty’s Stationery Office, who has the\nauthority to offer Information subject\ + \ to Crown copyright and Crown database rights and\nInformation subject to copyright and\ + \ database right that has been assigned to or acquired \nby the Crown, under the terms of\ + \ this licence.\n\n‘Use’\nas a verb, means doing any act which is restricted by copyright\ + \ or database right, whether\nin the original medium or in any other medium, and includes\ + \ without limitation distributing,\ncopying, adapting, modifying as may be technically necessary\ + \ to use it in a different mode or format.\n\n‘You’\nmeans the natural or legal person,\ + \ or body of persons corporate or incorporate, acquiring rights under this licence.\n\n\ + About the Open Government Licence\nThe Controller of Her Majesty’s Stationery Office (HMSO)\ + \ has developed this licence as a\ntool to enable Information Providers in the public sector\ + \ to license the use and re-use\nof their Information under a common open licence. The Controller\ + \ invites public sector\nbodies owning their own copyright and database rights to permit\ + \ the use of their Information under this licence.\n\nThe Controller of HMSO has authority\ + \ to license Information subject to copyright and\ndatabase right owned by the Crown. The\ + \ extent of the Controller’s offer to license this\nInformation under the terms of this\ + \ licence is set out in the UK Government Licensing Framework.\n\nThis is version 1.0 of\ + \ the Open Government Licence. The Controller of HMSO may, from\ntime to time, issue new\ + \ versions of the Open Government Licence. However, you may continue\nto use Information\ + \ licensed under this version should you wish to do so.\n\nThese terms have been aligned\ + \ to be interoperable with any Creative Commons Attribution Licence,\nwhich covers copyright,\ + \ and Open Data Commons Attribution License, which covers database rights and applicable\ + \ copyrights.\n\nFurther context, best practice and guidance can be found in the UK Government\ + \ Licensing Framework section on The National Archives website." json: ogl-uk-1.0.json - yml: ogl-uk-1.0.yml + yaml: ogl-uk-1.0.yml html: ogl-uk-1.0.html - text: ogl-uk-1.0.LICENSE + license: ogl-uk-1.0.LICENSE - license_key: ogl-uk-2.0 + category: Permissive spdx_license_key: OGL-UK-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + You are encouraged to use and re-use the Information that is available under this licence freely and flexibly, with only a few conditions. + Using Information under this licence + + Use of copyright and database right material expressly made available under this licence (the ‘Information’) indicates your acceptance of the terms and conditions below. + + The Licensor grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information subject to the conditions below. + + This licence does not affect your freedom under fair dealing or fair use or any other copyright or database right exceptions and limitations. + You are free to: + + copy, publish, distribute and transmit the Information; + adapt the Information; + exploit the Information commercially and non-commercially for example, by combining it with other Information, or by including it in your own product or application. + + You must, where you do any of the above: + + acknowledge the source of the Information by including any attribution statement specified by the Information Provider(s) and, where possible, provide a link to this licence; + + If the Information Provider does not provide a specific attribution statement, or if you are using Information from several Information Providers and multiple attributions are not practical in your product or application, you may use the following: + + Contains public sector information licensed under the Open Government Licence v2.0. + + These are important conditions of this licence and if you fail to comply with them the rights granted to you under this licence, or any similar licence granted by the Licensor, will end automatically. + Exemptions + + This licence does not cover: + + personal data in the Information; + information that has neither been published nor disclosed under information access legislation (including the Freedom of Information Acts for the UK and Scotland) by or with the consent of the Information Provider; + departmental or public sector organisation logos, crests and the Royal Arms except where they form an integral part of a document or dataset; + military insignia; + third party rights the Information Provider is not authorised to license; + other intellectual property rights, including patents, trade marks, and design rights; and + identity documents such as the British Passport + + Non-endorsement + + This licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider endorses you or your use of the Information. + Non warranty + + The Information is licensed ‘as is’ and the Information Provider excludes all representations, warranties, obligations and liabilities in relation to the Information to the maximum extent permitted by law. + + The Information Provider is not liable for any errors or omissions in the Information and shall not be liable for any loss, injury or damage of any kind caused by its use. The Information Provider does not guarantee the continued supply of the Information. + Governing Law + + This licence is governed by the laws of the jurisdiction in which the Information Provider has its principal place of business, unless otherwise specified by the Information Provider. + Definitions + + In this licence, the terms below have the following meanings: + + ‘Information’ + means information protected by copyright or by database right (for example, literary and artistic works, content, data and source code) offered for use under the terms of this licence. + + ‘Information Provider’ + means the person or organisation providing the Information under this licence. + + ‘Licensor’ + means any Information Provider who has the authority to offer Information under the terms of this licence. It includes the Controller of Her Majesty’s Stationery Office, who has the authority to offer Information subject to Crown copyright and Crown database rights, and Information subject to copyright and database rights which have been assigned to or acquired by the Crown, under the terms of this licence. + + ‘Use’ + means doing any act which is restricted by copyright or database right, whether in the original medium or in any other medium, and includes without limitation distributing, copying, adapting, modifying as may be technically necessary to use it in a different mode or format. + + ‘You’ + means the natural or legal person, or body of persons corporate or incorporate, acquiring rights under this licence. + About the Open Government Licence + + The Controller of Her Majesty’s Stationery Office (HMSO) has developed this licence as a tool to enable Information Providers in the public sector to license the use and re-use of their Information under a common open licence. The Controller invites public sector bodies owning their own copyright and database rights to permit the use of their Information under this licence. + + The Controller of HMSO has authority to license Information subject to copyright and database right owned by the Crown. The extent of the Controller’s offer to license this Information under the terms of this licence is set out on The National Archives website. + + This is version 2.0 of the Open Government Licence. The Controller of HMSO may, from time to time, issue new versions of the Open Government Licence. If you are already using Information under a previous version of the Open Government Licence, the terms of that licence will continue to apply. + + These terms are compatible with the Creative Commons Attribution License 4.0 and the Open Data Commons Attribution License, both of which license copyright and database rights. This means that when the Information is adapted and licensed under either of those licences, you automatically satisfy the conditions of the OGL when you comply with the other licence. The OGLv2.0 is Open Definition compliant. + + Further context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website. json: ogl-uk-2.0.json - yml: ogl-uk-2.0.yml + yaml: ogl-uk-2.0.yml html: ogl-uk-2.0.html - text: ogl-uk-2.0.LICENSE + license: ogl-uk-2.0.LICENSE - license_key: ogl-uk-3.0 + category: Permissive spdx_license_key: OGL-UK-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + You are encouraged to use and re-use the Information that is available under this licence freely and flexibly, with only a few conditions. + Using Information under this licence + + Use of copyright and database right material expressly made available under this licence (the 'Information') indicates your acceptance of the terms and conditions below. + + The Licensor grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information subject to the conditions below. + + This licence does not affect your freedom under fair dealing or fair use or any other copyright or database right exceptions and limitations. + You are free to: + + copy, publish, distribute and transmit the Information; + adapt the Information; + exploit the Information commercially and non-commercially for example, by combining it with other Information, or by including it in your own product or application. + + You must (where you do any of the above): + + acknowledge the source of the Information in your product or application by including or linking to any attribution statement specified by the Information Provider(s) and, where possible, provide a link to this licence; + + If the Information Provider does not provide a specific attribution statement, you must use the following: + + Contains public sector information licensed under the Open Government Licence v3.0. + + If you are using Information from several Information Providers and listing multiple attributions is not practical in your product or application, you may include a URI or hyperlink to a resource that contains the required attribution statements. + + These are important conditions of this licence and if you fail to comply with them the rights granted to you under this licence, or any similar licence granted by the Licensor, will end automatically. + Exemptions + + This licence does not cover: + + personal data in the Information; + Information that has not been accessed by way of publication or disclosure under information access legislation (including the Freedom of Information Acts for the UK and Scotland) by or with the consent of the Information Provider; + departmental or public sector organisation logos, crests and the Royal Arms except where they form an integral part of a document or dataset; + military insignia; + third party rights the Information Provider is not authorised to license; + other intellectual property rights, including patents, trade marks, and design rights; and + identity documents such as the British Passport + + Non-endorsement + + This licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider and/or Licensor endorse you or your use of the Information. + No warranty + + The Information is licensed 'as is' and the Information Provider and/or Licensor excludes all representations, warranties, obligations and liabilities in relation to the Information to the maximum extent permitted by law. + + The Information Provider and/or Licensor are not liable for any errors or omissions in the Information and shall not be liable for any loss, injury or damage of any kind caused by its use. The Information Provider does not guarantee the continued supply of the Information. + Governing Law + + This licence is governed by the laws of the jurisdiction in which the Information Provider has its principal place of business, unless otherwise specified by the Information Provider. + Definitions + + In this licence, the terms below have the following meanings: + + 'Information' means information protected by copyright or by database right (for example, literary and artistic works, content, data and source code) offered for use under the terms of this licence. + + 'Information Provider' means the person or organisation providing the Information under this licence. + + 'Licensor' means any Information Provider which has the authority to offer Information under the terms of this licence or the Keeper of Public Records, who has the authority to offer Information subject to Crown copyright and Crown database rights and Information subject to copyright and database right that has been assigned to or acquired by the Crown, under the terms of this licence. + + 'Use' means doing any act which is restricted by copyright or database right, whether in the original medium or in any other medium, and includes without limitation distributing, copying, adapting, modifying as may be technically necessary to use it in a different mode or format. + + 'You', 'you' and 'your' means the natural or legal person, or body of persons corporate or incorporate, acquiring rights in the Information (whether the Information is obtained directly from the Licensor or otherwise) under this licence. + About the Open Government Licence + + The National Archives has developed this licence as a tool to enable Information Providers in the public sector to license the use and re-use of their Information under a common open licence. The National Archives invites public sector bodies owning their own copyright and database rights to permit the use of their Information under this licence. + + The Keeper of the Public Records has authority to license Information subject to copyright and database right owned by the Crown. The extent of the offer to license this Information under the terms of this licence is set out in the UK Government Licensing Framework. + + This is version 3.0 of the Open Government Licence. The National Archives may, from time to time, issue new versions of the Open Government Licence. If you are already using Information under a previous version of the Open Government Licence, the terms of that licence will continue to apply. + + These terms are compatible with the Creative Commons Attribution License 4.0 and the Open Data Commons Attribution License, both of which license copyright and database rights. This means that when the Information is adapted and licensed under either of those licences, you automatically satisfy the conditions of the OGL when you comply with the other licence. The OGLv3.0 is Open Definition compliant. + + Further context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website. json: ogl-uk-3.0.json - yml: ogl-uk-3.0.yml + yaml: ogl-uk-3.0.yml html: ogl-uk-3.0.html - text: ogl-uk-3.0.LICENSE + license: ogl-uk-3.0.LICENSE - license_key: ogl-wpd-3.0 + category: Permissive spdx_license_key: LicenseRef-scancode-ogl-wpd-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Open Data Licence + + Below is WPD's Open Data Licence (latest version December 2020). These licence terms and conditions (the “Licence”) apply to the WPD's datasets as specified within the ‘Connected Data’ data access service. These terms are based on the Open Government Licence v3.0. + + You are encouraged to use and re-use Information that is available under this licence freely and flexibly, with only a few conditions. + 1. Using the WPD Open Data Licence + + 1.1 WPD is the 'Licensor' and the 'Information Provider' for the purpose of this Licence. + + 1.2 On the ’Connected Data’ data access service, this Licence applies to each data set marked as being provided on an 'Open' basis. It is your responsibility to check which data sets are made available under this Licence. If in doubt please email us for clarification at dsodigitalisation@westernpower.co.uk. + + 1.3 The conditions of this Licence are important and if you fail to comply with them the rights granted to you under this Licence, or any similar Licence granted by Licensor, will end automatically. + 2. Using Information under this Licence + + 2.1 Use of copyright and database right material expressly made available under this Licence (the 'Information') indicates your acceptance of the terms and conditions of this licence. + + 2.2 The Licensor grants you a worldwide, royalty-free, perpetual, non-exclusive licence to use the Information subject to the conditions below. + + 2.3 This Licence does not affect your freedom under fair dealing or fair use or any other copyright or database right exceptions and limitations. + 3. You are free to: + + 3.1 copy, publish, distribute and transmit the Information; + + 3.2 adapt the Information; + + 3.3 exploit the Information commercially and non-commercially for example, by combining it with other Information, or by including it in your own product or application. + 4. You must (where you do any of the above): + + 4.1 acknowledge WPD as the source of the Information by including the following attribution statement ‘Supported by WPD Open Data'; + + 4.2 acknowledge that our other intellectual property rights, including all logos, design rights, patents and trademarks, are not covered under this Licence and this Licence will not transfer these to You or any third party. + 5. Exemptions + + 5.1 The Licence does not cover: + + (a) personal data in the Information; + + (b) Information that has not been accessed by way of publication or disclosure under information access legislation (including the Freedom of Information Acts for the UK and Scotland) by or with the consent of the Information Provider; + + (c) departmental or public sector organisation logos, crests and the Royal Arms except where they form an integral part of a document or dataset; + + (d) military insignia; + + (e) third party rights the Information Provider is not authorised to license; + + (f) other intellectual property rights, including patents, trademarks, and design rights; and + + (g) identity documents such as the British Passport. + + 5.2 Where it is believed that the overall service is being degraded by excessive use, the Licensor reserves the right to throttle or limit access to feeds as considered appropriate. + 6. Non-endorsement + + This Licence does not grant you any right to use the Information in a way that suggests any official status or that the Information Provider and/or Licensor endorse you or your use of the Information. + 7. No warranty + + 7.1 The Information is licensed ‘as is’ and the Information Provider and/or Licensor excludes all representations, warranties, obligations and liabilities in relation to the Information to the maximum extent permitted by law. + + 7.2 The Information Provider and/or Licensor are not liable for any errors or omissions in the Information and shall not be liable for any loss, injury or damage of any kind caused by its use. The Information Provider does not guarantee the continued supply of the Information. + 8. Governing Law + + This Licence is governed by the laws of England and Wales and shall be shall be subject to the exclusive jurisdiction of the English and Welsh courts. + 9. Definitions + + In this Licence, the terms below have the following meanings: + + 'Information’ means information protected by copyright or by database right (for example, literary and artistic works, content, data and source code) offered for use under the terms of this Licence. + + ‘Information Provider’ means the person or organisation providing the Information under this Licence. + + ‘Licensor’ means any Information Provider which has the authority to offer Information under the terms of this Licence or the Keeper of Public Records, who has the authority to offer Information subject to Crown copyright and Crown database rights and Information subject to copyright and database right that has been assigned to or acquired by the Crown, under the terms of this Licence. + + ‘Use’ means doing any act which is restricted by copyright or database right, whether in the original medium or in any other medium, and includes without limitation distributing, copying, adapting, modifying as may be technically necessary to use it in a different mode or format. + + 'WPD' means Western Power Distribution Plc 09223384; Western Power Distribution (East Midlands) Plc (company number 02366923); Western Power Distribution (West Midlands) Plc (company number 03600574); Western Power Distribution (South West) Plc (company number 02366894); Western Power Distribution (South Wales) Plc (company number 02366985); WPD Smart Metering Limited ( company number 07139151); South Western Helicopters Limited (company number 02439215); WPD Property Investments Limited (company number 02373239) and WPD Telecoms Limited (company number 02386327). All are registered to Avonbank, Feeder Road, Bristol BS2 0TB. + + ‘You’, ‘you’ and ‘your’ means the natural or legal person, or body of persons corporate or incorporate, acquiring rights in the Information (whether the Information is obtained directly from the Licensor or otherwise) under this Licence. + About the Open Government Licence 3.0 + + This Licence was based on version 3.0 of the Open Government Licence. The National Archives has developed the Open Government Licence 3.0 as a tool to enable Information Providers in the public sector to license the use and re-use of their Information under a common open licence. The National Archives invites public sector bodies owning their own copyright and database rights to permit the use of their Information under this licence. + + The Keeper of the Public Records has authority to license Information subject to copyright and database right owned by the Crown. The extent of the offer to license this Information under the terms of this licence is set out in the UK Government Licensing Framework. + + The National Archives may, from time to time, issue new versions of the Open Government Licence. If you are already using Information under a previous version of the Open Government Licence, the terms of that licence will continue to apply. + + The Open Government Licence 3.0 is compatible with the Creative Commons Attribution License 4.0 and the Open Data Commons Attribution License, both of which license copyright and database rights. This means that when the Information is adapted and licensed under either of those licences, you automatically satisfy the conditions of the OGL when you comply with the other licence. The OGLv3.0 is Open Definition compliant. + + Further context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website. json: ogl-wpd-3.0.json - yml: ogl-wpd-3.0.yml + yaml: ogl-wpd-3.0.yml html: ogl-wpd-3.0.html - text: ogl-wpd-3.0.LICENSE + license: ogl-wpd-3.0.LICENSE - license_key: ohdl-1.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-ohdl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Open Hardware Description License Version 1.0\n(Based on the MPL 2.0 RC2)\n========================================================\n\ + \n1. Definitions\n--------------\n\n1.1. \"Contributor\"\n means each individual or legal\ + \ entity that creates, contributes to\n the creation of, or owns a Covered Hardware Description.\n\ + \n1.2. \"Contributor Version\"\n means the combination of the Contributions of others\ + \ (if any) used\n by a Contributor and that particular Contributor's Contribution.\n\n\ + 1.3. \"Contribution\"\n means Covered Hardware Description of a particular Contributor.\n\ + \n1.4. \"Covered Hardware Description\"\n means Source Code Form to which the initial\ + \ Contributor has attached\n the notice in Exhibit A, the Processed Form of such Source\ + \ Code\n Form, and Modifications of such Source Code Form, in each case\n including\ + \ portions thereof.\n\n1.5. \"Incompatible With Secondary Licenses\"\n means that the\ + \ initial Contributor has attached the notice described in\n Exhibit B to the Covered\ + \ Hardware Description\n\n1.6. \"Processed Form\"\n means any form of the work other\ + \ than Source Code Form.\n\n1.7. \"Larger Work\"\n means a work that combines a Covered\ + \ Hardware Description with code in a \n separate file or files not governed by the terms\ + \ of this License.\n\n1.8. \"License\"\n means this document.\n\n1.9. \"Licensable\"\n\ + \ means having the right to grant, to the maximum extent possible,\n whether at the\ + \ time of the initial grant or subsequently, any and\n all of the rights conveyed by\ + \ this License.\n\n1.10. \"Modifications\"\n means any of the following:\n\n (a) any\ + \ file in Source Code Form that results from an addition to,\n deletion from, or\ + \ modification of the contents of a Covered\n Hardware Description; or\n\n (b)\ + \ any new file in Source Code Form that contains any Covered\n Hardware Description\ + \ Source.\n\n1.11. \"Patent Claims\" of a Contributor\n means any patent claim(s), including\ + \ without limitation, method,\n process, and apparatus claims, in any patent Licensable\ + \ by such\n Contributor that would be infringed, but for the grant of the\n License,\ + \ by the making, using, selling, offering for sale, having\n made, import, or transfer\ + \ of either its Contributions or its\n Contributor Version.\n\n1.12. \"Secondary License\"\ + \n means either the GNU General Public License, Version 2.0 or later,\n the GNU Lesser\ + \ General Public License, Version 2.1 or later, or the\n GNU Affero General Public License,\ + \ Version 3.0 or later, or the\n TAPR Open Hardware License, Version 1.0 or later, or\ + \ the CERN OHL,\n Verstion 1.1 or later.\n\n1.13. \"Source Code Form\"\n means the\ + \ form of the work preferred for making modifications.\n\n1.14. \"You\" (or \"Your\")\n\ + \ means an individual or a legal entity exercising rights under this\n License. For\ + \ legal entities, \"You\" includes any entity that\n controls, is controlled by, or is\ + \ under common control with You. For\n purposes of this definition, \"control\" means\ + \ (a) the power, direct\n or indirect, to cause the direction or management of such entity,\n\ + \ whether by contract or otherwise, or (b) ownership of more than\n fifty percent\ + \ (50%) of the outstanding shares or beneficial\n ownership of such entity.\n\n2. License\ + \ Grants and Conditions\n--------------------------------\n\n2.1. Grants\n\nEach Contributor\ + \ hereby grants You a world-wide, royalty-free,\nnon-exclusive license:\n\n(a) under intellectual\ + \ property rights (other than patent or trademark)\n Licensable by such Contributor to\ + \ use, reproduce, make available,\n modify, display, perform, distribute, and otherwise\ + \ exploit its\n Contributions, either on an unmodified basis, with Modifications, or\n\ + \ as part of a Larger Work; and\n\n(b) under Patent Claims of such Contributor to make,\ + \ use, sell, offer\n for sale, have made, import, and otherwise transfer either its\n\ + \ Contributions or its Contributor Version.\n\n2.2. Effective Date\n\nThe licenses granted\ + \ in Section 2.1 with respect to any Contribution\nbecome effective for each Contribution\ + \ on the date the Contributor first\ndistributes such Contribution.\n\n2.3. Limitations\ + \ on Grant Scope\n\nThe licenses granted in this Section 2 are the only rights granted under\n\ + this License. No additional rights or licenses will be implied from the\ndistribution or\ + \ licensing of Covered Hardware Description under this License.\nNotwithstanding Section\ + \ 2.1(b) above, no patent license is granted by a\nContributor:\n\n(a) for any code that\ + \ a Contributor has removed from Covered Hardware \n Description; or\n\n(b) for infringements\ + \ caused by: (i) Your and any other third party's\n modifications of a Covered Hardware\ + \ Description, or (ii) the combination \n of its Contributions with other Source (except\ + \ as part of its Contributor\n Version); or\n\n(c) under Patent Claims infringed by a\ + \ Covered Hardware Description in the \n absence of its Contributions.\n\nThis License\ + \ does not grant any rights in the trademarks, service marks,\nor logos of any Contributor\ + \ (except as may be necessary to comply with\nthe notice requirements in Section 3.4).\n\ + \n2.4. Subsequent Licenses\n\nNo Contributor makes additional grants as a result of Your\ + \ choice to\ndistribute the Covered Hardware Description under a subsequent version of this\n\ + License (see Section 10.2) or under the terms of a Secondary License (if\npermitted under\ + \ the terms of Section 3.3).\n\n2.5. Representation\n\nEach Contributor represents that\ + \ the Contributor believes its\nContributions are its original creation(s) or it has sufficient\ + \ rights\nto grant the rights to its Contributions conveyed by this License.\n\n2.6. Fair\ + \ Use\n\nThis License is not intended to limit any rights You have under\napplicable copyright\ + \ doctrines of fair use, fair dealing, or other\nequivalents.\n\n2.7. Conditions\n\nSections\ + \ 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted\nin Section 2.1.\n\n3. Responsibilities\n\ + -------------------\n\n3.1. Distribution of Source Form\n\nAll distribution of Covered Hardware\ + \ Description in Source Code Form, \nincluding any Modifications that You create or to which\ + \ You contribute, must be\nunder the terms of this License. You must inform recipients that\ + \ the Source\nCode Form of the Covered Hardware Description is governed by the terms of\ + \ this\nLicense, and how they can obtain a copy of this License. You may not\nattempt to\ + \ alter or restrict the recipients' rights in the Source Code\nForm.\n\n3.2. Distribution\ + \ of Processed Form\n\nIf You distribute Covered Hardware Description in Processed Form\ + \ then:\n\n(a) such Covered Hardware Description must also be made available in Source \n\ + \ Code Form, as described in Section 3.1, and You must inform recipients of\n the\ + \ Processed Form how they can obtain a copy of such Source Code\n Form by reasonable\ + \ means in a timely manner, at a charge no more\n than the cost of distribution to the\ + \ recipient; and\n\n(b) You may distribute such Processed Form under the terms of this\n\ + \ License, or sublicense it under different terms, provided that the\n license for\ + \ the Processed Form does not attempt to limit or alter\n the recipients' rights in the\ + \ Source Code Form under this License.\n\n3.3. Distribution of a Larger Work\n\nYou may\ + \ create and distribute a Larger Work under terms of Your choice,\nprovided that You also\ + \ comply with the requirements of this License for\nthe Covered Hardware Description. If\ + \ the Larger Work is a combination of a \nCovered Hardware Description with a work governed\ + \ by a Secondary License, and \nthe Covered Hardware Description is not Incompatible With\ + \ Secondary Licenses, \nthis License permits You to additionally distribute such Covered\ + \ Hardware \nDescription under the terms of that Secondary License, so that the recipient\ + \ of\nthe Larger Work may, at their option, further distribute the Covered Hardware \nDescription\ + \ under the terms of either this License or that Secondary License.\n\n3.4. Notices\n\n\ + You may not remove or alter the substance of any license notices\n(including copyright notices,\ + \ patent notices, disclaimers of warranty,\nor limitations of liability) contained within\ + \ the Source Code Form of\nthe Covered Hardware Description, except that You may alter any\ + \ license notices\nto the extent required to remedy known factual inaccuracies.\n\n3.5.\ + \ Application of Additional Terms\n\nYou may choose to offer, and to charge a fee for, warranty,\ + \ support,\nindemnity or liability obligations to one or more recipients of a Covered\n\ + Hardware Description. However, You may do so only on Your own behalf, and not \non behalf\ + \ of any Contributor. You must make it absolutely clear that any\nsuch warranty, support,\ + \ indemnity, or liability obligation is offered by\nYou alone, and You hereby agree to indemnify\ + \ every Contributor for any\nliability incurred by such Contributor as a result of warranty,\ + \ support,\nindemnity or liability terms You offer. You may include additional\ndisclaimers\ + \ of warranty and limitations of liability specific to any\njurisdiction.\n\n4. Inability\ + \ to Comply Due to Statute or Regulation\n---------------------------------------------------\n\ + \nIf it is impossible for You to comply with any of the terms of this\nLicense with respect\ + \ to some or all of the Covered Hardware Description due to\nstatute, judicial order, or\ + \ regulation then You must: (a) comply with\nthe terms of this License to the maximum extent\ + \ possible; and (b)\ndescribe the limitations and the code they affect. Such description\ + \ must\nbe placed in a text file included with all distributions of the Covered\nHardware\ + \ Description under this License. Except to the extent prohibited by \nstatute or regulation,\ + \ such description must be sufficiently detailed for a\nrecipient of ordinary skill to be\ + \ able to understand it.\n\n5. Termination\n--------------\n\n5.1. The rights granted under\ + \ this License will terminate automatically\nif You fail to comply with any of its terms.\ + \ However, if You become\ncompliant, then the rights granted under this License from a particular\n\ + Contributor are reinstated (a) provisionally, unless and until such\nContributor explicitly\ + \ and finally terminates Your grants, and (b) on an\nongoing basis, if such Contributor\ + \ fails to notify You of the\nnon-compliance by some reasonable means prior to 60 days after\ + \ You have\ncome back into compliance. Moreover, Your grants from a particular\nContributor\ + \ are reinstated on an ongoing basis if such Contributor\nnotifies You of the non-compliance\ + \ by some reasonable means, this is the\nfirst time You have received notice of non-compliance\ + \ with this License\nfrom such Contributor, and You become compliant prior to 30 days after\n\ + Your receipt of the notice.\n\n5.2. If You initiate litigation against any entity by asserting\ + \ a patent\ninfringement claim (excluding declaratory judgment actions,\ncounter-claims,\ + \ and cross-claims) alleging that a Contributor Version\ndirectly or indirectly infringes\ + \ any patent, then the rights granted to\nYou by any and all Contributors for the Covered\ + \ Hardware Description under \nSection 2.1 of this License shall terminate.\n\n5.3. In the\ + \ event of termination under Sections 5.1 or 5.2 above, all\nend user license agreements\ + \ (excluding distributors and resellers) which\nhave been validly granted by You or Your\ + \ distributors under this License\nprior to termination shall survive termination.\n\n************************************************************************\n\ + * *\n* 6. Disclaimer\ + \ of Warranty *\n* -------------------------\ + \ *\n* \ + \ *\n* The Covered Hardware Description is provided under\ + \ this License on *\n* an \"as is\" basis, without warranty of any kind, either expressed,\ + \ *\n* implied, or statutory, including, without limitation, warranties *\n* that\ + \ the Covered Hardware Description is free of defects, *\n* merchantable, fit\ + \ for a particular purpose or non-infringing. The *\n* entire risk as to the quality\ + \ and performance of the Covered *\n* Hardware Description is with You. Should any\ + \ Covered Hardware *\n* Description prove defective in any respect, You (not any\ + \ *\n* Contributor) assume the cost of any necessary servicing, repair, or *\n\ + * correction. This disclaimer of warranty constitutes an essential *\n* part of this\ + \ License. No use of any Covered Hardware Description is *\n* authorized under this License\ + \ except under this disclaimer. *\n* \ + \ *\n************************************************************************\n\ + \n************************************************************************\n* \ + \ *\n* 7. Limitation of Liability\ + \ *\n* -------------------------- \ + \ *\n* \ + \ *\n* Under no circumstances and under no legal theory, whether tort\ + \ *\n* (including negligence), contract, or otherwise, shall any *\n* Contributor,\ + \ or anyone who distributes Covered Hardware Description *\n* as permitted above, be liable\ + \ to You for any direct, indirect, *\n* special, incidental, or consequential damages\ + \ of any character *\n* including, without limitation, damages for lost profits, loss\ + \ of *\n* goodwill, work stoppage, computer failure or malfunction, or any *\n* \ + \ and all other commercial damages or losses, even if such party *\n* shall have been\ + \ informed of the possibility of such damages. This *\n* limitation of liability shall\ + \ not apply to liability for death or *\n* personal injury resulting from such party's\ + \ negligence to the *\n* extent applicable law prohibits such limitation. Some \ + \ *\n* jurisdictions do not allow the exclusion or limitation of \ + \ *\n* incidental or consequential damages, so this exclusion and *\n* limitation\ + \ may not apply to You. *\n* \ + \ *\n************************************************************************\n\ + \n8. Litigation\n-------------\n\nAny litigation relating to this License may be brought\ + \ only in the\ncourts of a jurisdiction where the defendant maintains its principal\nplace\ + \ of business and such litigation shall be governed by laws of that\njurisdiction, without\ + \ reference to its conflict-of-law provisions.\nNothing in this Section shall prevent a\ + \ party's ability to bring\ncross-claims or counter-claims.\n\n9. Miscellaneous\n----------------\n\ + \nThis License represents the complete agreement concerning the subject\nmatter hereof.\ + \ If any provision of this License is held to be\nunenforceable, such provision shall be\ + \ reformed only to the extent\nnecessary to make it enforceable. Any law or regulation which\ + \ provides\nthat the language of a contract shall be construed against the drafter\nshall\ + \ not be used to construe this License against a Contributor.\n\n10. Versions of the License\n\ + ---------------------------\n\n10.1. New Versions\n\nJulius Baxter is the license steward.\ + \ Except as provided in Section\n10.3, no one other than the license steward has the right\ + \ to modify or\npublish new versions of this License. Each version will be given a\ndistinguishing\ + \ version number.\n\n10.2. Effect of New Versions\n\nYou may distribute the Covered Hardware\ + \ Description under the terms of the \nversion of the License under which You originally\ + \ received the Covered Hardware\nDescription, or under the terms of any subsequent version\ + \ published by the \nlicense steward.\n\n10.3. Modified Versions\n\nIf you create designs\ + \ not governed by this License, and you want to\ncreate a new license for such designs,\ + \ you may create and use a\nmodified version of this License if you rename the license and\ + \ remove\nany references to the name of the license steward (except to note that\nsuch modified\ + \ license differs from this License).\n\n10.4. Distributing Source Code Form that is Incompatible\ + \ With Secondary\nLicenses\n\nIf You choose to distribute Source Code Form that is Incompatible\ + \ With\nSecondary Licenses under the terms of this version of the License, the\nnotice described\ + \ in Exhibit B of this License must be attached.\n\nExhibit A - Source Code Form License\ + \ Notice\n-------------------------------------------\n\n This Source Code Form is subject\ + \ to the terms of the \n Open Hardware Description License, v. 1.0. If a copy \n of the\ + \ OHDL was not distributed with this file, You \n can obtain one at http://juliusbaxter.net/ohdl/ohdl.txt\n\ + \nIf it is not possible or desirable to put the notice in a particular\nfile, then You may\ + \ include the notice in a location (such as a LICENSE\nfile in a relevant directory) where\ + \ a recipient would be likely to look\nfor such a notice.\n\nYou may add additional accurate\ + \ notices of copyright ownership.\n\nExhibit B - \"Incompatible With Secondary Licenses\"\ + \ Notice\n---------------------------------------------------------\n\n This Source Code\ + \ Form is \"Incompatible With Secondary Licenses\", as\n defined by the Open Hardware Description\ + \ License, v. 1.0." json: ohdl-1.0.json - yml: ohdl-1.0.yml + yaml: ohdl-1.0.yml html: ohdl-1.0.html - text: ohdl-1.0.LICENSE + license: ohdl-1.0.LICENSE - license_key: okl + category: Copyleft spdx_license_key: LicenseRef-scancode-okl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + 1. Redistribution and use of (Software) 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 this clause 1 + (including paragraphs (a), (b) and (c)), clause 2 and clause 3 + (Licence Terms) and the above copyright notice. + + (b) Redistributions in binary form must reproduce the above + copyright notice and the Licence Terms in the documentation and/or + other materials provided with the distribution. + + (c) Redistributions in any form must be accompanied by information on + how to obtain complete source code for: + (i) the Software; and + (ii) all accompanying software that uses (or is intended to + use) the Software whether directly or indirectly. Such source + code must: + (iii) either be included in the distribution or be available + for no more than the cost of distribution plus a nominal fee; + and + (iv) be licensed by each relevant holder of copyright under + either the Licence Terms (with an appropriate copyright notice) + or the terms of a licence which is approved by the Open Source + Initative. For an executable file, "complete source code" + means the source code for all modules it contains and includes + associated build and other files reasonably required to produce + the executable. + + 2. THIS SOFTWARE IS PROVIDED ``AS IS'' AND, TO THE EXTENT PERMITTED BY + LAW, 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. WHERE ANY WARRANTY IS + IMPLIED AND IS PREVENTED BY LAW FROM BEING DISCLAIMED THEN TO THE + EXTENT PERMISSIBLE BY LAW: (A) THE WARRANTY IS READ DOWN IN FAVOUR OF + THE COPYRIGHT HOLDER (AND, IN THE CASE OF A PARTICIPANT, THAT + PARTICIPANT) AND (B) ANY LIMITATIONS PERMITTED BY LAW (INCLUDING AS TO + THE EXTENT OF THE WARRANTY AND THE REMEDIES AVAILABLE IN THE EVENT OF + BREACH) ARE DEEMED PART OF THIS LICENCE IN A FORM MOST FAVOURABLE TO + THE COPYRIGHT HOLDER (AND, IN THE CASE OF A PARTICIPANT, THAT + PARTICIPANT). IN THE LICENCE TERMS, "PARTICIPANT" INCLUDES EVERY + PERSON WHO HAS CONTRIBUTED TO THE SOFTWARE OR WHO HAS BEEN INVOLVED IN + THE DISTRIBUTION OR DISSEMINATION OF THE SOFTWARE. + + 3. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR ANY OTHER PARTICIPANT 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. json: okl.json - yml: okl.yml + yaml: okl.yml html: okl.html - text: okl.LICENSE + license: okl.LICENSE +- license_key: olf-ccla-1.0 + category: CLA + spdx_license_key: LicenseRef-scancode-olf-ccla-1.0 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: "Open Logistics Foundation\nCorporate Contributor License Agreement (“CLA”) \nVersion\ + \ 1.0, March 2022 \nhttps://www.openlogisticsfoundation.org/licenses\n\nThe Open Logistics\ + \ Foundation provides a framework for the design, development and use of open source solutions\ + \ in logistics. Within this framework, developers bring together their efforts for increased\ + \ efficiency and successful commercial use on the basis of open source components.\n\nThis\ + \ CLA enables the Contributor to submit Contributions to the Open Logistics Foundation,\ + \ or to have them submitted, and to grant the rights stated below in such Contribution/s\ + \ in their entirety. This CLA determines which of the Contributor’s rights in their Contributions\ + \ to the Open Logistics Foundation will be granted by the Contributor to the Open Logistics\ + \ Foundation and the conditions that must be observed in that regard.\n\nBy way of conclusion\ + \ of this CLA, the Contributor accepts the following conditions for their current and future\ + \ Contributions to the Open Logistics Foundation. Except for the licenses granted in this\ + \ CLA to the Open Logistics Foundation and the recipients of Works containing such Contribution\ + \ distributed by the Open Logistics Foundation, the Contributor reserves all rights in their\ + \ Contributions.\n\nPlease complete, sign and send this Agreement to info@openlogisticsfoundation.org.\ + \ The CLA is concluded when the Open Logistics Foundation expressly confirms the conclusion\ + \ of the CLA or activates access to the Open Logistics Repository for the Contributor, thereby\ + \ enabling the Contributor to submit Contributions.\n\nCorporation name: \nCorporation address:\n\ + Point of Contact / CLA-Manager:\nE-Mail:\nPhone:\n\nReferred to as “Contributor” or “you”\n\ + \n1 Definitions\n\n(1) “Contribution” means any work protected under copyright, design and/or\ + \ patent law, including any modifications of or additions to this work as well as adaptations\ + \ of the work, that are submitted by the Contributor as copyright holder or by parties legally\ + \ or contractually entitled to do so by copyright holders to the Open Logistics Foundation\ + \ for inclusion in works developed and distributed by the Open Logistics Foundation. Within\ + \ the meaning of this definition, “submit” means any form of electronic or written communication\ + \ which is intentionally submitted to the Open Logistics Foundation to discuss or improve\ + \ a current or future work or project undertaken by the Open Logistics Foundation, including\ + \ but not limited to communications sent via electronic mailing lists, source code control\ + \ systems and issue tracking systems; however, communications that the Contributor or any\ + \ employee specifically named by him/her have clearly marked as “no contribution”, or which\ + \ are otherwise identified as such in writing, are excluded.\n\n(2) “Work” means any work\ + \ protected under copyright, design and/or patent law containing a Contribution.\n\n(3)\ + \ “Committers” are persons named by the Open Logistics Foundation or by Contributors who\ + \ have write access to works or projects undertaken by the Open Logistics Foundation in\ + \ the version control system.\n\n(4) “Source Code” means the version of the code of the\ + \ respective Contribution – if the Contribution is a software – in the programming language.\n\ + \n(5) “Object Code” means the intermediate product of a compilation or translation process\ + \ of the Source Code.\n\n2 Granting of usage rights\nThe Contributor hereby grants the Open\ + \ Logistics Foundation and any third party who receives and/or uses a Work or the Contributions\ + \ themselves – whether adapted or not - for the duration of the existence of the copyrights\ + \ pertaining to such Contributions\n• the royalty-free and non-exclusive right,\n• sublicensable\ + \ for commercial and non-commercial purposes\n• worldwide and perpetual,\n• irrevocable\ + \ and non-terminable,\nto use the Contributions in their original form or in modified, translated,\ + \ edited or transformed form on their own or as a part of a Work in the following ways:\n\ + • use them in any hardware and software environment, - insofar as the Contribution is a\ + \ software – in particular to store or load them permanently or temporarily, to display\ + \ them and run them, including to the extent reproductions are necessary to that end,\n\ + • modify, translate, edit or transform them in another way,\n• store, reproduce, exhibit\ + \ or publish them, distribute them in tangible or intangible form, on any medium or in any\ + \ other way, for commercial and non-commercial purposes, in particular to communicate them\ + \ privately or publicly, also through image, audio and other information carriers, irrespective\ + \ of whether by wire or wireless means,\n• use them in databases, data networks and online\ + \ services, including the right to make it available in Source Code or Object Code to users\ + \ of the aforementioned databases, networks and online services for research and retrieval\ + \ purposes,\n• allow third parties to use or operate them,\n• use them not only for own\ + \ purposes but also to provide services to third parties,\n• distribute them.\n\nThe above\ + \ right of use relates to the Contributions, in particular – insofar as the Contribution\ + \ is a software– their Source Code and Object Code in any and all forms. The above usage\ + \ rights include – where applicable – design rights.\n\n3 Granting of a patent license\n\ + \n(1) For any patents (including pending patent applications) owned and licensable by the\ + \ Contributor at the time of the submission of the Contribution, the Contributor hereby\ + \ grants the Open Logistics Foundation and any third party who receives and/or uses a Work\ + \ containing the Contributions or the Contributions themselves - adapted or not - a\n• perpetual,\n\ + • worldwide,\n• non-exclusive,\n• free of charge,\n• irrevocable\npatent license in all\ + \ rights deriving from the patent to\n• produce,\n• arrange to have produced,\n• use,\n\ + • offer for sale,\n• sell,\n• import and otherwise transfer\n\n the Work or the respective\ + \ Contributions.\n\nHowever, this patent license covers only those rights deriving from\ + \ the patent of the respective Contributor as are indispensable in order not to infringe\ + \ that patent and only to the extent that the use of the Contributor’s respective Contribution,\ + \ whether in itself or as a combination with other Contributions of the Contributor or any\ + \ third parties together with the Work for which these Contributions were submitted, would\ + \ otherwise infringe that patent. For avoidance of doubt, no patent licenses are granted\ + \ for the use of a Work or the Contribution which become necessary for lawful use because\ + \ third party modifications are made to the Work or the respective Contribution after the\ + \ Contribution has been submitted by the Contributor.\n\n(2) If any entity or person institutes\ + \ patent litigation against You or any other entity or person (including a cross-claim or\ + \ counterclaim in a lawsuit) alleging that your Contribution, or the Work to which you have\ + \ contributed, constitutes direct or contributory patent infringement, then any patent licenses\ + \ granted to that person or entity under this CLA for that Contribution or Work shall terminate\ + \ as of the date such litigation is filed.\n\n(3) The Contributor is entitled to decide\ + \ in its own discretion to abandon respectively maintain any patent for which he has granted\ + \ a patent license in accordance with para. 1 of this Section 3.\n\n4 Contributor’s binding\ + \ representations\n\n(1) The Contributor hereby represents that\na. it is entitled to grant\ + \ the usage rights and - to the extent applicable - patent licenses for Contributions under\ + \ this CLA, and\nb. by granting usage rights under Section 2 above and patent licenses under\ + \ Section 3 above, they are not infringing any rights granted by the Contributor to third\ + \ parties.\n\n(2) Furthermore, the Contributor hereby undertakes to identify by name all\ + \ employees and service providers who submit Contributions or otherwise make them available\ + \ to the Open Logistics Foundation in the Contributor’s name, and that all employees and\ + \ service providers they identify by name to the Open Logistics Foundation are authorised\ + \ to submit Contributions in the Contributor’s name; identifying the employees in this regard\ + \ shall be at least in text form (as per Sec. 126b German Civil Code). It is the Contributor’s\ + \ sole responsibility to notify the Open Logistics Foundation if changes need to be made\ + \ to the list of named employees authorised to make Contributions in the Contributor’s name.\n\ + \n(3) If the Contributor wishes to submit a third-party work, this must take place separately\ + \ from any Contribution, in which case the complete details of the source and all licenses\ + \ or other limitations (including but not limited to any associated patents, trademarks\ + \ and licensing agreements) which they are personally aware of must be provided. The corresponding\ + \ work must be clearly identified as a third-party work when it is submitted.\n\n5 Trademarks\n\ + The Contributor does not grant permission to use its trade names, trademarks, service marks\ + \ or product names.\n\n6 No restriction on other use by the Contributor\nThe Contributor\ + \ is expressly permitted to use and exploit the Contributions on a commercial or non– commercial\ + \ basis – individually, in part or as part of another work – in accordance with the rights\ + \ held by the Contributor, provided that such other use or exploitation does not conflict\ + \ with the rights granted under this CLA.\n\n7 Obligations of the Open Logistics Foundation\n\ + \n(1) The Open Logistics Foundation is not obliged to incorporate the Contributor’s Contributions\ + \ into any Work or to use them in any other way.\n\n(2) If a Work is distributed by the\ + \ Open Logistics Foundation by way of incorporation of the Contributor’s Contributions or\ + \ if the Contributions themselves are distributed, the Open Logistics Foundation is obliged\ + \ - irrespective of whether the Contributions have been modified by the Open Logistics Foundation\ + \ or any third party -\na. to retain and to oblige the recipients of the Work to retain\ + \ all copyright, patent, trade mark and name credit notices in the Contributions - in the\ + \ form as distributed - with the exception of those notices that do not pertain to any part\ + \ of the distributed Contributions;\nb. to grant the Contributor a license to the rights\ + \ in the distributed Work that contains the Contributor’s Contributions, corresponding to\ + \ Sections 2 and 3 above.\n\n8 Contributor’s assumption of the role of Committer\nIf the\ + \ Open Logistics Foundation under a separate agreement assigns the role of a Committer to\ + \ the Contributor and the Contributor accepts the role, the Contributor must comply with\ + \ the guidelines, policies and codes of conduct imposed as part of the assignment.\n\n9\ + \ Limitation of liability\nExcept in cases of intent and gross negligence or causing personal\ + \ injury, the Contributor, its legal representatives, trustees, officers and employees shall\ + \ not be liable towards the Open Logistics Foundation for direct or indirect, material or\ + \ immaterial losses of any kind arising from the use of the Contributions; this includes\ + \ but is not limited to loss of goodwill, interruption of production, computer failures\ + \ or errors, loss of data or economic losses, even if the Contributor has been made aware\ + \ of the possibility of such losses. Notwithstanding the above, the Contributor shall only\ + \ be liable under product liability law to the extent that the respective provisions are\ + \ applicable to the Contributions.\nExcept in case of intent or gross negligence the Contributor,\ + \ its legal representatives, trustees, officers and employees shall not be liable that any\ + \ of the Contributions is free from any claim of infringement of any patent or any other\ + \ intellectual property right owned by any third party, accurate, devoid of mistakes, complete\ + \ and/or usable for any purpose.\n\n10 Other provisions\n\n(1) This CLA is governed by German\ + \ law, excluding the UN Convention on Contracts for the International Sale of Goods (CISG).\ + \ Exclusive place of jurisdiction for all disputes between the parties regarding\n the interpretation\ + \ of this CLA is Dortmund. This CLA or any provision thereof may be amended or modified\ + \ only with the mutual consent of the contracting parties as set out in a written instrument.\ + \ This requirement of written form can only be deviated from in writing.\n\n(2) Any failure\ + \ by the Open Logistics Foundation or the Contributor to insist that the other Party adhere\ + \ to a provision of this CLA in a given situation does not affect the right of such Party\ + \ to require adherence in the same regard at a later date. Waiving compliance with a provision\ + \ in one situation shall not be deemed a waiver of compliance with that provision in the\ + \ future or as a waiver of the provision in its entirety.\n\n(3) If any provision of this\ + \ CLA should prove to be invalid and unenforceable, then the validity of the remaining provisions\ + \ shall remain unaffected. In this case, that provision will be replaced, as far as possible,\ + \ by an enforceable provision that most closely reflects the meaning of the original provision.\n\ + \nLocation: \nDate: \nSignature: \nTitle and name: \nPosition and corporation: \n\n*****\n\ + Initial list of designated employees. The authorization is not tied to particular Contributions.\n\ + Full Name\nE-Mail\n\nIt is your responsibility to notify the Foundation when any change\ + \ is required to the list of designated employees authorized to submit Contributions on\ + \ behalf of the Corporation, or to the Corporation's Point of Contact with the Foundation.\n\ + \nOpen Logistics Foundation Emil-Figge-Straße 80 | D-44227 Dortmund | Germany\nBoardJochen\ + \ Thewes – Chairman | Stefan Hohm and Dr. Stephan Peters – Deputy Chairmen\nManaging Directors\ + \ Andreas Nettsträter | Thorsten Hülsmann\nCheques and transfers payable to Sparkasse Dortmund\ + \ | IBAN DE63440501990001146017 | BIC (Swift Code) DORTDE33XXX VAT Ident no. DE350640517\ + \ | Tax no. 315/5704/0848 | Supervisory authority Bezirksregierung Arnsberg" + json: olf-ccla-1.0.json + yaml: olf-ccla-1.0.yml + html: olf-ccla-1.0.html + license: olf-ccla-1.0.LICENSE +- license_key: oll-1.0 + category: Permissive + spdx_license_key: LicenseRef-scancode-oll-1.0 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + Open Logistics License + Version 1.0, March 2022 + https://www.openlogisticsfoundation.org/licenses/ + + TERMS AND CONDITIONS FOR THE USE, REPRODUCTION AND DISTRIBUTION + + ß1 Definitions + + (1) "Subject Matter of the License" means the copyrighted works of the software + components in source code or object code as well as the other components + protected under copyright, design and/or patent law which are made available + under this license in accordance with a copyright notice inserted into or + attached to the work as well as the application and user documentation. + + (2) "License" means the terms and conditions for the use, reproduction and + distribution of the Subject Matter of the License in accordance with the + provisions of this document. + + (3) "Licensor(s)" means the copyright holder(s) or the entity authorised by law + or contract by the copyright holder(s) to grant the license. + + (4) "You" (or "Your") means a natural or legal person exercising the + permissions granted by this License. + + (5) "Source Code" means the version of the code of the software components of + the Subject Matter of the License in the programming language. + + (6) "Object Code" means the interim product after compilation or interpretation + of the Source Code. + + (7) "Derivative Works" shall mean any work, whether in Source or Object Code or + any other form, that is based on (or derived from) the Subject Matter of the + License 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 Subject Matter of the License and Derivative Works thereof. + + (8) "Contribution" means any proprietary work, including the original version + of the Subject Matter of the License and any changes or additions to such work, + or Derivative Works of such work, that the copyright holder, or a natural or + legal person authorised to make submissions, intentionally submits to the + Licensor or one of the Licensors to be incorporated into the Subject Matter of + the License. For the purposes of this definition, "submit" means any form of + electronic or written communication which is sent to the Licensor (or one of + the Licensors) or its representatives to discuss or improve the Subject Matter + of the License, including, but not limited to, communications sent via + electronic mailing lists, source code control systems and issue tracking + systems; however, communications that are clearly labelled as "no contribution" + by the copyright holder or otherwise identified as such in writing are + excluded. + + (9) "Contributor" means the Licensor and/or any natural or legal person on + whose behalf the Licensor receives any Contribution subsequently incorporated + into the Subject Matter of the License. + + ß2 Granting of usage rights + + Subject to the terms and conditions of this License and compliance with the + provisions of this License, You are hereby granted by all Contributors, for the + term of the copyrights in the Subject Matter of the License, the + + - royalty-free and non-exclusive, + - sub-licensable for commercial and non-commercial purposes, + - worldwide and perpetual, + - irrevocable and non-terminable + + right + + - to use in any hardware and software environment, - with regard to the + software and data components - in particular to store or load it permanently + or temporarily, to display it and run it, including to the extent + reproductions are necessary to that end, + - to modify, interpret, edit or redesign in another way, + - to store, reproduce, exhibit, publish, distribute in tangible or intangible + form, on any medium or in any other way, for commercial and non-commercial + purposes, in particular to communicate privately or publicly, also through + image, audio and other information carriers, irrespective of whether by wire + or wireless means, + - to use in databases, data networks and online services, including the right + to make the software and data components of the Subject Matter of the License + available in source code or object code to users of the aforementioned + databases, networks and online services for research and retrieval purposes, + - to allow third parties to use or operate, + - to use for own purposes but also to provide services to third parties, + - to distribute + + the Subject Matter of the License in its original or modified, interpreted, + edited or redesigned form. + + This right of use relates to the Subject Matter of the License in particular + its source code and object code of the software components in all forms + (including - where applicable - design rights). + + ß3 Grant of a patent license + + Subject to the terms and conditions of this License and compliance with the + provisions of this License, You are hereby granted by each Contributor a + + - perpetual, + - worldwide, + - non-exclusive, + - free of charge, + - irrevocable (with the exception of the restrictions set out in this + Section 3) + + patent license in all rights deriving from the patents, owned and licensable by + the Contributor at the time of the submission of the Contribution, to + + - produce, + - have produced, + - use, + - offer for sale, + - sell, + - import and otherwise transfer + + the Subject Matter of the License. + + However, this patent license covers only those rights deriving from the patents + of the respective Contributors as are indispensable in order not to infringe + that patent and only to the extent that the use of the Contributor's respective + Contributions, whether in itself or as a combination with other Contributions + of the Contributors or any third parties together with the Subject Matter of + the License for which these Contributions were submitted, would otherwise + infringe that patent. For avoidance of doubt, no patent licenses are granted + for the use of the Subject Matter of the License or the Contributions which + become necessary for lawful use because third party modifications are made to + the Subject Matter of the License or the respective Contributions after the + Contributions has been submitted by the Contributors. Under no circumstances + will anything in this Section 3 be construed as granting, by implication, + estoppel or otherwise, a license to any patent for which the respective + Contributors have not granted patent rights when they submitted their + respective Contributions. + + In the event that You institute judicial patent proceedings against any entity + or person (including a counterclaim or countersuit in a legal dispute), arguing + that the Subject Matter of the License or a Contribution incorporated or + contained therein constitutes a patent infringement or a contributory factor to + a patent infringement, all patent licenses which have been granted to You under + this License for the Subject Matter of the License as well as this License in + itself shall be deemed terminated as of the date on which the action is filed. + + For avoidance of doubt, the Contributors are entitled to decide in their own + discretion to abandon respectively maintain any patent designated by patent + number upon delivery of the Subject Matter of the License. + + ß4 Distribution + + You may reproduce and distribute copies of the Subject Matter of the License or + Derivative Works on any medium, with or without modifications, (with regard to + software components) in Source or Object Code, provided that You comply with + the following rules: + + - You must provide all other recipients of the Subject Matter of the License or + of Derivative Works with a copy of this License and inform them that the + Subject Matter of the License was originally licensed under this License. + - You must ensure that modified files contain prominent notices indicating that + You have modified the files. + - You must retain all copyright, patent, trademark and name credit notices in + the Subject Matter of the License in the source code of any Derivative Works + You distribute, with the exception of those notices which do not belong to + any part of the Derivative Works. + - You must oblige the recipients of the Subject Matter of the License or + Derivative Works to incorporate the provisions of this Section 4 into any + license under which they distribute the the Subject Matter of the License or + Derivative Works to any other recipients. + + You may add Your own copyright notices to Your modifications and state any + additional or different license conditions and conditions for the use, + reproduction or distribution of Your modifications or for these Derivative + Works as a whole, provided that Your use, reproduction and distribution of the + work in all other respects complies with the terms and conditions set out in + this License. + + ß5 Submission of Contributions + + Unless expressly stated otherwise, every Contribution that You have + intentionally submitted for inclusion in the Subject Matter of the License is + subject to this License without any additional terms or conditions applying. + Irrespective of the above, none of the terms or conditions contained herein may + be interpreted to replace or change the terms or conditions of a separate + licensing agreement that You may have concluded with a Licensor for such + Contributions, such as a so-called "Contributor License Agreement" (CLA). + + ß6 Trademarks + + This License does not grant permission to use the trade names, trademarks, + service marks or product names of the Licensor or of a Contributor. + + ß7 Limited warranty + + This License is granted free of charge and thus constitutes a gift. + Accordingly, any warranty is excluded. Work on the Subject Matter of the + License continues on an ongoing basis; it is constantly improved by countless + Contributors. The Subject Matter of the License is not completed and may + therefore contain errors ("bugs") or additional patents of Contributors or + third parties, as is inherent to this type of development. + + ß8 Limitation of liability + + Except in cases of intent and gross negligence or causing personal injury, the + Contributors, their legal representatives, trustees, officers and employees + shall not be liable for direct or indirect, material or immaterial loss or + damage of any kind arising from the License or the use of the Subject Matter of + the License; this applies, among other things, but not exclusively, to loss of + goodwill, loss of production, computer failures or errors, loss of data or + economic loss or damage, even if the Contributor has been notified of the + possibility of such loss or damage. Irrespective of the above, the Licensor + shall only be liable in the scope of statutory product liability, to the extent + the respective provisions are applicable to the Subject Matter of the License + or the Contribution. + + Except in the case of intent, the Contributors, their legal representatives, + trustees, officers and employees shall not be liable that any of the + Contributions are free from any claim of infringement of any patent or any + other intellectual property right owned by any third party, accurate, devoid of + mistakes, complete and/or usable for any purpose. + + ß9 Provision of warranties or assumption of additional liability in the event + of distribution of the Subject Matter of the License + + In the event of distribution of the Subject Matter of the License or Derivative + Works, You are free to assume support, warranty, indemnity or other liability + obligations and/or rights in accordance with this License and to charge a fee + in return. 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 You hereby 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. + + ß10 Applicable law + + This License is governed by German law with the exclusion of its provisions on + the conflict of laws and with the exclusion of the UN Convention on Contracts + for the International Sale of Goods (CISG). + + END OF TERMS AND CONDITIONS + json: oll-1.0.json + yaml: oll-1.0.yml + html: oll-1.0.html + license: oll-1.0.LICENSE +- license_key: ooura-2001 + category: Permissive + spdx_license_key: LicenseRef-scancode-ooura-2001 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: "You may use, copy, modify this code for any purpose and \nwithout fee. You may distribute\ + \ this ORIGINAL package." + json: ooura-2001.json + yaml: ooura-2001.yml + html: ooura-2001.html + license: ooura-2001.LICENSE - license_key: open-diameter + category: Copyleft spdx_license_key: LicenseRef-scancode-open-diameter other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + Open Diameter License + + Open Diameter: Open-source software for the Diameter and Diameter related protocols + + Copyright (C) 2002-2007 Open Diameter Project + + This software consists of two parts, namely LGPL Part and GPL Part, which use different licences as described below. + + ========= LGPL Part ========= + + Each of the following libraries: + + - libdiamparser (Diameter parser library) - libdiameter (Diameter library) - libdiametereap (Diameter EAP application library) - libdiameternasreq (Diameter NASREQ application library) - libeap (EAP library) - libeaparchie (EAP-Archie method library) - libpana (PANA library) + + is licensed under the following terms and conditions. + + 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. + + In addition, when you copy and redistribute some or the entire part of the source code of this software with or without modification, you MUST include this copyright notice in each copy. + + If you make any changes that are appeared to be useful, please send sources that include the changed part to diameter-developers@lists.sourceforge.net so that we can reflect your changes to one unified version of this software. + + ======== GPL Part ======== + + Each of the following programs (libraries are also programs): + + - libeaptls (EAP-TLS method library) - libNASREQ (Diameter - freeradius translator) - panad (PANA daemon) - nasd (NAS daemon, including hostapdPatch) - aaad (AAA server daemon) + + is licensed under the following terms and conditions. + + 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 2 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, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US. + + If you make any changes that are appeared to be useful, please send sources that include the changed part to diameter-developers@lists.sourceforge.net so that we can reflect your changes to one unified version of this software. json: open-diameter.json - yml: open-diameter.yml + yaml: open-diameter.yml html: open-diameter.html - text: open-diameter.LICENSE + license: open-diameter.LICENSE - license_key: open-group + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-open-group other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "THE OPEN GROUP PUBLIC LICENSE\n\nMOTIF GRAPHICAL USER INTERFACE SOFTWARE\n\nTHE ACCOMPANYING\ + \ PROGRAM IS\nPROVIDED UNDER THE TERMS OF THIS THE OPEN GROUP PUBLIC LICENSE\n(\"AGREEMENT\"\ + ). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM\nCONSTITUTES RECIPIENT'S ACCEPTANCE\ + \ OF THIS AGREEMENT.\n\n DEFINITIONS\n\n\"Contribution\" means:\n\n in the case of The\ + \ Open Group, L.L.C. (\"The Open Group\"), the Original Program, and \n in the case of\ + \ each Contributor,\n \ni.\ + \ †changes to the Program, and\n \ + \ \nii. additions to the Program;\n\nwhere such changes\nand/or additions to the\ + \ Program originate from and are distributed by that\nparticular Contributor. A Contribution\ + \ 'originates' from a Contributor if it\nwas added to the Program by such Contributor itself\ + \ or anyone acting on such\nContributor's behalf. Contributions do not include additions\ + \ to the Program\nwhich:\n \ni. are separate modules\ + \ of software distributed in conjunction\nwith the Program under their own license agreement,\ + \ even if the separate\nmodules are linked in binary form to the Program, and \n \ + \ \nii. are not derivative works of the Program.\n\n \"Contributor\"\ + \ means The Open Group and any other entity that distributes the Program.\n\n \"Licensed\ + \ Patents\" mean patent claims licensable by a Contributor which are\nnecessarily infringed\ + \ by the use or sale of its Contribution alone or when\ncombined with the Program.\n\n \"\ + Open Source\" programs mean software for which the source code is\navailable without confidential\ + \ or trade secret restrictions and for which the\nsource code and object code are available\ + \ for distribution without license\ncharges.\n\n\"Original Program\" means the original\ + \ version of the software accompanying\nthis Agreement as released by The Open Group, including\ + \ source code, object\ncode and documentation, if any.\n\n \"Program\" means the Original\ + \ Program and Contributions.\n\n \"Recipient\" means anyone who receives the Program under\ + \ this Agreement, including all Contributors.\n\nGRANT OF RIGHTS\n\nThe rights\ngranted\ + \ under this license are limited solely to distribution and sublicensing\nof the Contribution(s)\ + \ on, with, or for operating systems which are themselves\nOpen Source programs. Contact\ + \ The Open Group for a license allowing\ndistribution and sublicensing of the Original Program\ + \ on, with, or for\noperating systems which are not Open Source programs.\n\n Subject to\ + \ the terms of this Agreement and the\n limitations of this Section 2, each Contributor\ + \ hereby grants Recipient a\n non-exclusive, worldwide, royalty-free copyright license\ + \ to reproduce,\n prepare derivative works of, publicly display, publicly perform,\n\ + \ distribute and sublicense the Contribution of such Contributor, if any,\n and\ + \ such derivative works, in source code and object code form.\n \n †Subject to\n the\ + \ terms of this Agreement and the limitations of this Section 2, each\n Contributor\ + \ hereby grants Recipient a non-exclusive, worldwide,\n royalty-free patent license\ + \ under Licensed Patents to make, use, sell,\n offer to sell, import and otherwise\ + \ transfer the Contribution of such\n Contributor, if any, in source code and object\ + \ code form. This patent\n license shall apply to the combination of the Contribution\ + \ and the\n Program if, at the time the Contribution is added by the Contributor,\n\ + \ such addition of the Contribution causes such combination to be covered\n by\ + \ the Licensed Patents. The patent license shall not apply to any other\n combinations\ + \ which include the Contribution. No hardware per se is\n licensed hereunder.\n \n\ + \ Recipient understands that although each\n Contributor grants the licenses to its\ + \ Contributions set forth herein, no\n assurances are provided by any Contributor that\ + \ the Program does not\n infringe the patent or other intellectual property rights\ + \ of any other\n entity. Each Contributor disclaims any liability to Recipient for\ + \ claims\n brought by any other entity based on infringement of intellectual\n \ + \ property rights or otherwise. As a condition to exercising the rights and\n licenses\ + \ granted hereunder, each Recipient hereby assumes sole\n responsibility to secure\ + \ any other intellectual property rights needed,\n if any. For example, if a third\ + \ party patent license is required to allow\n Recipient to distribute the Program,\ + \ it is Recipient's responsibility to\n acquire that license before distributing the\ + \ Program.\n \n Each Contributor represents that to its knowledge\n it has sufficient\ + \ copyright rights in its Contribution, if any, to grant\n the copyright license set\ + \ forth in this Agreement. \n \n REQUIREMENTS\n\nA Contributor may choose to distribute\ + \ the Program in object code form under its own license agreement, provided that:\n\na.\ + \ it\ncomplies with the terms and conditions of this Agreement; and\n\nb. its license\ + \ agreement:\n \ni. effectively\ + \ disclaims on behalf of all Contributors all\nwarranties and conditions, express and implied,\ + \ including warranties or\nconditions of title and non-infringement, and implied warranties\ + \ or conditions\nof merchantability and fitness for a particular purpose;\n \ + \ \nii. effectively excludes on behalf of all\ + \ Contributors all\nliability for damages, including direct, indirect, special, incidental\ + \ and\nconsequential damages, such as lost profits;\n \ + \ \niii. states that any provisions which differ from this Agreement\n\ + are offered by that Contributor alone and not by any other party; and\n \ + \ \niv. states that source code for the Program is available\ + \ from such\nContributor, and informs licensees how to obtain it in a reasonable manner\ + \ on\nor through a medium customarily used for software exchange.\n\nWhen the Program is\ + \ made available in source code form:\n\na. it must be made available under this Agreement;\ + \ and\n\nb. a copy of this Agreement must be included with each copy of the Program.\n\ + \nEach Contributor must include the following in a conspicuous location in the Program:\n\ + \nCopyright (c) {date here}, The Open Group Ltd. and others. All Rights Reserved.\n\nIn\ + \ addition,\neach Contributor must identify itself as the originator of its Contribution,\ + \ if\nany, in a manner that reasonably allows subsequent Recipients to identify the\noriginator\ + \ of the Contribution.\n\nCOMMERCIAL DISTRIBUTION\n\nCommercial\ndistributors of software\ + \ may accept certain responsibilities with respect to\nend users, business partners and\ + \ the like. While this license is intended to\nfacilitate the commercial use of the Program,\ + \ subject to the limitations\nprovided in Section 2, the Contributor who includes the Program\ + \ in a commercial\nproduct offering should do so in a manner which does not create potential\n\ + liability for other Contributors. Therefore, if a Contributor includes the\nProgram in a\ + \ commercial product offering, such Contributor (\"Commercial\nContributor\") hereby agrees\ + \ to defend and indemnify every other\nContributor (\"Indemnified Contributor\") against\ + \ any losses, damages\nand costs (collectively \"Losses\") arising from claims, lawsuits\ + \ and\nother legal actions brought by a third party against the Indemnified\nContributor\ + \ to the extent caused by the acts or omissions of such Commercial\nContributor in connection\ + \ with its distribution of the Program in a commercial\nproduct offering. The obligations\ + \ in this section do not apply to any claims or\nLosses relating to any actual or alleged\ + \ intellectual property infringement. In\norder to qualify, an Indemnified Contributor must:\n\ + \na. promptly notify the Commercial Contributor in writing of such claim, and\n\nb.\ + \ allow the Commercial Contributor to control, and cooperate with the Commercial\nContributor\ + \ in, the defence and any related settlement negotiations.\n\nThe Indemnified Contributor\ + \ may participate in any such claim at its own expense.\n\nFor example, a\nContributor might\ + \ include the Program in a commercial product offering, Product\nX. That Contributor is\ + \ then a Commercial Contributor. If that Commercial\nContributor then makes performance\ + \ claims, or offers warranties related to\nProduct X, those performance claims and warranties\ + \ are such Commercial\nContributor's responsibility alone. Under this section, the Commercial\n\ + Contributor would have to defend claims against the other Contributors related\nto those\ + \ performance claims and warranties, and if a court requires any other\nContributor to pay\ + \ any damages as a result, the Commercial Contributor must pay\nthose damages.\n\n NO WARRANTY\n\ + \nEXCEPT AS\nEXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN \"AS\n\ + IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR\nIMPLIED INCLUDING,\ + \ WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY\ + \ OR FITNESS FOR A PARTICULAR PURPOSE. Each\nRecipient is solely responsible for determining\ + \ the appropriateness of using\nand distributing the Program and assumes all risks associated\ + \ with its exercise\nof rights under this Agreement, including but not limited to the risks\ + \ and\ncosts of program errors, compliance with applicable laws, damage to or loss of\n\ + data, programs or equipment, and unavailability or interruption of operations.\n\n DISCLAIMER\ + \ OF LIABILITY\n\nEXCEPT AS\nEXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR\ + \ ANY CONTRIBUTORS\nSHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n\ + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST\nPROFITS), HOWEVER\ + \ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT\ + \ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY\nWAY OUT OF THE USE OR DISTRIBUTION\ + \ OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS\nGRANTED HEREUNDER, EVEN IF ADVISED OF THE\ + \ POSSIBILITY OF SUCH DAMAGES.\n\n GENERAL\n\nIf any provision\nof this Agreement is invalid\ + \ or unenforceable under applicable law, it shall\nnot affect the validity or enforceability\ + \ of the remainder of the terms of this\nAgreement, and without further action by the parties\ + \ hereto, such provision\nshall be reformed to the minimum extent necessary to make such\ + \ provision valid\nand enforceable.\n\nIf Recipient\ninstitutes patent litigation or other\ + \ similar official proceedings to enforce\npatent rights against a Contributor with respect\ + \ to a patent applicable to\nsoftware (including a cross-claim or counterclaim in a lawsuit),\ + \ then any\npatent licenses granted by that Contributor to such Recipient under this\nAgreement\ + \ shall terminate as of the date such litigation is filed. In addition,\nIf Recipient institutes\ + \ patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit)\ + \ alleging that the Program itself\n(excluding combinations of the Program with other software\ + \ or hardware)\ninfringes such Recipient's patent(s), then such Recipient's rights granted\n\ + under Section 2(b) shall terminate as of the date such litigation is filed.\n\nAll Recipient's\n\ + rights under this Agreement shall terminate if it fails to comply with any of\nthe material\ + \ terms or conditions of this Agreement and does not cure such\nfailure in a reasonable\ + \ period of time after becoming aware of such\nnon-compliance. If all Recipient's rights\ + \ under this Agreement terminate,\nRecipient agrees to cease use and distribution of the\ + \ Program as soon as\nreasonably practicable. However, Recipient's obligations under this\ + \ Agreement\nand any licenses granted by Recipient relating to the Program shall continue\n\ + and survive.\n\nThe Open Group\nmay publish new versions (including revisions) of this Agreement\ + \ from time to\ntime. Each new version of the Agreement will be given a distinguishing version\n\ + number. The Program (including Contributions) may always be distributed subject\nto the\ + \ version of the Agreement under which it was received. In addition, after\na new version\ + \ of the Agreement is published, Contributor may elect to\ndistribute the Program (including\ + \ its Contributions) under the new version. No\none other than The Open Group has the right\ + \ to modify this Agreement. Except as\nexpressly stated in Sections 2(a) and 2(b) above,\ + \ Recipient receives no rights\nor licenses to the intellectual property of any Contributor\ + \ under this\nAgreement, whether expressly, by implication, estoppel or otherwise. All rights\n\ + in the Program not expressly granted under this Agreement are reserved.\n\nNo party to this\n\ + Agreement will bring a legal action under this Agreement more than one year\nafter the cause\ + \ of action arose. Each party waives its rights to a jury trial\nin any resulting litigation." json: open-group.json - yml: open-group.yml + yaml: open-group.yml html: open-group.html - text: open-group.LICENSE + license: open-group.LICENSE - license_key: open-public + category: Copyleft Limited spdx_license_key: OPL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "OPEN PUBLIC LICENSE\nVersion 1.0\n\n1. Definitions. \n1.1. \"Contributor\" means each\ + \ entity that creates or contributes to the creation of \nModifications.\n\n1.2. \"Contributor\ + \ Version\" means the combination of the Original Code, prior \nModifications used by a\ + \ Contributor, and the Modifications made by that particular \nContributor.\n\n1.3. \"Covered\ + \ Code\" means the Original Code or Modifications or the combination \nof the Original Code\ + \ and Modifications, in each case including portions thereof.\n\n1.4. \"Electronic Distribution\ + \ Mechanism\" means a mechanism generally accepted \nin the software development community\ + \ for the electronic transfer of data.\n\n1.5. \"Executable\" means Covered Code in any\ + \ form other than Source Code.\n\n1.6. \"Initial Developer\" means the individual or entity\ + \ identified as the Initial \nDeveloper in the Source Code notice required by Exhibit A.\n\ + \n1.7. \"Larger Work\" means a work, which combines Covered Code or portions \nthereof with\ + \ code not governed by the terms of this License.\n\n1.8. \"License\" means this document\ + \ and the corresponding addendum describe in \nsection 6.4 below.\n\n1.9. \"Modifications\"\ + \ means any addition to or deletion from the substance or \nstructure of either the Original\ + \ Code or any previous Modifications. When Covered \nCode is released as a series of files,\ + \ a Modification is:\n\nA. Any addition to or deletion from the contents of a file containing\ + \ Original \nCode or previous Modifications.\nB. Any new file that contains any part of\ + \ the Original Code or previous \nModifications.\n\n1.10. \"Original Code\" means Source\ + \ Code of computer software code which is \ndescribed in the Source Code notice required\ + \ by Exhibit A as Original Code, and \nwhich, at the time of its release under this License\ + \ is not already Covered Code \ngoverned by this License.\n\n1.11. \"Source Code\" means\ + \ the preferred form of the Covered Code for making \nmodifications to it, including all\ + \ modules it contains, plus any associated interface \ndefinition files, scripts used to\ + \ control compilation and installation of an Executable, \nor a list of source code differential\ + \ comparisons against either the Original Code or \nanother well known, available Covered\ + \ Code of the Contributor's choice. The Source \nCode can be in a compressed or archival\ + \ form, provided the appropriate \ndecompression or de-archiving software is widely available\ + \ for no charge.\n\n1.12. \"You\" means an individual or a legal entity exercising rights\ + \ under, and \ncomplying with all of the terms of, this License or a future version of this\ + \ License \nissued under Section 6.1. For legal entities, \"You\" includes any entity which\ + \ controls, \nis controlled by, or is under common control with You. For purposes of this\ + \ definition, \n\"control\" means (a) the power, direct or indirect, to cause the direction\ + \ or \nmanagement of such entity, whether by contract or otherwise, or (b) ownership of\ + \ \nfifty percent (50%) or more of the outstanding shares or beneficial ownership of such\ + \ \nentity.\n\n1.13 \"License Author\" means Lutris Technologies, Inc.\n\n2. Source Code\ + \ License.\n2.1. The Initial Developer Grant.\nThe Initial Developer hereby grants You a\ + \ worldwide, royalty-free, non-exclusive \nlicense, subject to third party intellectual\ + \ property claims:\n(a) under intellectual property rights (other than patent or trademark)\ + \ to use, \nreproduce, modify, display, perform, sublicense and distribute the Original\ + \ \nCode (or portions thereof) with or without Modifications, or as part of a Larger \n\ + Work; and\n(b) under patents now or hereafter owned or controlled by Initial Developer,\ + \ \nto make, have made, use and sell (\"offer to sell and import\") the Original \nCode\ + \ (or portions thereof), but solely to the extent that any such patent is \nreasonably necessary\ + \ to enable You to Utilize the Original Code (or portions \nthereof) and not to any greater\ + \ extent that may be necessary to Utilize further \nModifications or combinations.\n\n2.2.\ + \ Contributor Grant.\nEach Contributor hereby grants You a worldwide, royalty-free, non-exclusive\ + \ license, \nsubject to third party intellectual property claims:\n\n(a) under intellectual\ + \ property rights (other than patent or trademark) to use, \nreproduce, modify, display,\ + \ perform, sublicense and distribute the \nModifications created by such Contributor (or\ + \ portions thereof) either on an \nunmodified basis, with other Modifications, as Covered\ + \ Code or as part of a \nLarger Work; and\n(b) under patents now or hereafter owned or controlled\ + \ by Contributor, to to \nmake, have made, use and sell (\"offer to sell and import\") the\ + \ Contributor \nVersion (or portions thereof), but solely to the extent that any such patent\ + \ is \nreasonably necessary to enable You to Utilize the Contributor Version (or \nportions\ + \ thereof), and not to any greater extent that may be necessary to \nUtilize further Modifications\ + \ or combinations. \n\n3. Distribution Obligations. \n3.1. Application of License.\nThe\ + \ Modifications which You create or to which You contribute are governed by the \nterms\ + \ of this License, including without limitation Section 2.2. The Source Code \nversion of\ + \ Covered Code may be distributed only under the terms of this License or a \nfuture version\ + \ of this License released under Section 6.1, and You must include a \ncopy of this License\ + \ with every copy of the Source Code You distribute. You may not \noffer or impose any terms\ + \ on any Source Code version that alters or restricts the \napplicable version of this License\ + \ or the recipients' rights hereunder. However, You \nmay include an additional document\ + \ offering the additional rights described in \nSection 3.5.\n\n3.2. Availability of Source\ + \ Code.\nAny Modification which You create or to which You contribute must be made \navailable,\ + \ prior to any use, except for internal development and practice, in Source \nCode form\ + \ under the terms of this License either on the same media as an \nExecutable version or\ + \ via an accepted Electronic Distribution Mechanism to anyone \nto whom you made an Executable\ + \ version available; and if made available via \nElectronic Distribution Mechanism, must\ + \ remain available for at least twelve (12) \nmonths after the date it initially became\ + \ available, or at least six (6) months after a \nsubsequent version of that particular\ + \ Modification has been made available to such \nrecipients. You shall notify the Initial\ + \ Developer of the Modification and the location of \nthe Source Code via the contact means\ + \ provided for in the Developer Specific \nlicense. Initial Developer will be acting as\ + \ maintainer of the Source Code and may \nprovide an Electronic Distribution mechanism for\ + \ the Modification to be made \navailable.\n\n3.3. Description of Modifications.\nYou must\ + \ cause all Covered Code to which you contribute to contain a file \ndocumenting the changes\ + \ You made to create that Covered Code and the date of \nany change. You must include a\ + \ prominent statement that the Modification is derived, \ndirectly or indirectly, from Original\ + \ Code provided by the Initial Developer and \nincluding the name of the Initial Developer\ + \ in (a) the Source Code, and (b) in any \nnotice in an Executable version or related documentation\ + \ in which You describe the \norigin or ownership of the Covered Code.\n\n3.4. Intellectual\ + \ Property Matters\n\n(a) Third Party Claims.\nIf You have knowledge that a party claims\ + \ an intellectual property right in \nparticular functionality or code (or its utilization\ + \ under this License), you must \ninclude a text file with the source code distribution\ + \ titled \"LEGAL\" which \ndescribes the claim and the party making the claim in sufficient\ + \ detail that a \nrecipient will know whom to contact. If you obtain such knowledge after\ + \ You \nmake Your Modification available as described in Section 3.2, You shall \npromptly\ + \ modify the LEGAL file in all copies You make available thereafter \nand shall take other\ + \ steps (such as notifying appropriate mailing lists or \nnewsgroups) reasonably calculated\ + \ to inform those who received the \nCovered Code that new knowledge has been obtained.\n\ + (b) Representations. \nContributor represents that, except as disclosed pursuant to Section\ + \ 3.4(a) \nabove, Contributor believes that Contributor's Modifications are Contributor's\ + \ \noriginal creation(s) and/or Contributor has sufficient rights to grant the rights \n\ + conveyed by this License.\n\n3.5. Required Notices.\nYou must duplicate the notice in Exhibit\ + \ A in each file of the Source Code, and this \nLicense in any documentation for the Source\ + \ Code, where You describe recipients' \nrights relating to Covered Code. If You created\ + \ one or more Modification(s), You may \nadd your name as a Contributor to the notice described\ + \ in Exhibit A. If it is not \npossible to put such notice in a particular Source Code file\ + \ due to its structure, then \nyou must include such notice in a location (such as a relevant\ + \ directory file) where a \nuser would be likely to look for such a notice. You may choose\ + \ to offer, and to charge \na fee for, warranty, support, indemnity or liability obligations\ + \ to one or more recipients \nof Covered Code. However, You may do so only on Your own behalf,\ + \ and not on \nbehalf of the Initial Developer or any Contributor. You must make it absolutely\ + \ clear \nthat any such warranty, support, indemnity or liability obligation is offered\ + \ by You \nalone, and You hereby agree to indemnify the Initial Developer and every Contributor\ + \ \nfor any liability incurred by the Initial Developer or such Contributor as a result\ + \ of \nwarranty, support, indemnity or liability terms You offer.\n\n3.6. Distribution of\ + \ Executable Versions.\nYou may distribute Covered Code in Executable form only if the requirements\ + \ of \nSection 3.1-3.5 have been met for that Covered Code, and if You include a notice\ + \ \nstating that the Source Code version of the Covered Code is available under the \nterms\ + \ of this License, including a description of how and where You have fulfilled the \nobligations\ + \ of Section 3.2. The notice must be conspicuously included in any notice \nin an Executable\ + \ version, related documentation or collateral in which You describe \nrecipients' rights\ + \ relating to the Covered Code. You may distribute the Executable \nversion of Covered Code\ + \ under a license of Your choice, which may contain terms \ndifferent from this License,\ + \ provided that You are in compliance with the terms of this \nLicense and that the license\ + \ for the Executable version does not attempt to limit or \nalter the recipient's rights\ + \ in the Source Code version from the rights set forth in this \nLicense. If You distribute\ + \ the Executable version under a different license You must \nmake it absolutely clear that\ + \ any terms which differ from this License are offered by \nYou alone, not by the Initial\ + \ Developer or any Contributor. You hereby agree to \nindemnify the Initial Developer and\ + \ every Contributor for any liability incurred by the \nInitial Developer or such Contributor\ + \ as a result of any such terms You offer. If you \ndistribute executable versions containing\ + \ Covered Code, you must reproduce the \nnotice in Exhibit B in the documentation and/or\ + \ other materials provided with the \nproduct.\n\n3.7. Larger Works.\nYou may create a Larger\ + \ Work by combining Covered Code with other code not \ngoverned by the terms of this License\ + \ and distribute the Larger Work as a single \nproduct. In such a case, You must make sure\ + \ the requirements of this License are \nfulfilled for the Covered Code. \n\n4. Inability\ + \ to Comply Due to Statute or Regulation.\nIf it is impossible for You to comply with any\ + \ of the terms of this License with respect \nto some or all of the Covered Code due to\ + \ statute or regulation then You must: (a) \ncomply with the terms of this License to the\ + \ maximum extent possible; and (b) Cite \nall of the statutes or regulations that prohibit\ + \ you from complying fully with this \nlicense. (c) describe the limitations and the code\ + \ they affect. Such description must \nbe included in the LEGAL file described in Section\ + \ 3.4 and must be included with all \ndistributions of the Source Code. Except to the extent\ + \ prohibited by statute or \nregulation, such description must be sufficiently detailed\ + \ for a recipient of ordinary \nskill to be able to understand it. \n\n5. Application of\ + \ this License.\nThis License applies to code to which the Initial Developer has attached\ + \ the notice in \nExhibit A, and to related Covered Code.\n\n6. Versions of the License.\n\ + 6.1. New Versions.\nLicense Author may publish revised and/or new versions of the License\ + \ from time to \ntime. Each version will be given a distinguishing version number and shall\ + \ be \nsubmitted to opensource.org for certification.\n6.2. Effect of New Versions.\nOnce\ + \ Covered Code has been published under a particular version of the License, \nYou may always\ + \ continue to use it under the terms of that version. You may also \nchoose to use such\ + \ Covered Code under the terms of any subsequent version of the \nLicense published by Initial\ + \ Developer. No one other than Initial Developer has the \nright to modify the terms applicable\ + \ to Covered Code created under this License.\n\n6.3. Derivative Works.\nIf you create or\ + \ use a modified version of this License, except in association with the \nrequired Devloper\ + \ Specific License described in section 6.4, (which you may only do \nin order to apply\ + \ it to code which is not already Covered Code governed by this \nLicense), you must (a)\ + \ rename Your license so that the phrases \"Open\", \"OpenPL\", \n\"OPL\" or any confusingly\ + \ similar phrase do not appear anywhere in your license and \n(b) otherwise make it clear\ + \ that your version of the license contains terms which differ \nfrom the Open Public License.\ + \ (Filling in the name of the Initial Developer, Original \nCode or Contributor in the notice\ + \ described in Exhibit A shall not of themselves be \ndeemed to be modifications of this\ + \ License.)\n\n6.4. Required Additional Developer Specific License\nThis license is a union\ + \ of the following two parts that should be found as text files in \nthe same place (directory),\ + \ in the order of preeminence:\n\n[1] A Developer specific license.\n\n[2] The contents\ + \ of this file OPL.html, stating the general licensing policy of \nthe software.\n\nIn case\ + \ of conflicting dispositions in the parts of this license, the terms of the lower-\nnumbered\ + \ part will always be superseded by the terms of the higher numbered part.\n\n7. DISCLAIMER\ + \ OF WARRANTY. \nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, \nWITHOUT\ + \ WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, \nINCLUDING, WITHOUT LIMITATION, WARRANTIES\ + \ THAT THE COVERED CODE \nIS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE\ + \ \nOR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND \nPERFORMANCE OF THE COVERED\ + \ CODE IS WITH YOU. SHOULD ANY \nCOVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE\ + \ \nINITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF \nANY NECESSARY SERVICING,\ + \ REPAIR OR CORRECTION. THIS DISCLAIMER \nOF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS\ + \ LICENSE. NO \nUSE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER \nTHIS DISCLAIMER.\ + \ \n\n8. TERMINATION. \n8.1 Termination upon Breach\nThis License and the rights granted\ + \ hereunder will terminate automatically if You fail \nto comply with terms herein and fail\ + \ to cure such breach within 30 days of becoming \naware of the breach. All sublicenses\ + \ to the Covered Code, which are properly \ngranted, shall survive any termination of this\ + \ License. Provisions that, by their nature, \nmust remain in effect beyond the termination\ + \ of this License shall survive. \n8.2. Termination Upon Litigation.\nIf You initiate litigation\ + \ by asserting a patent \ninfringement claim (excluding declatory judgment actions) against\ + \ Initial Developer or \na Contributor (the Initial Developer or Contributor against whom\ + \ You file such action \nis referred to as \"Participant\") alleging that:\n\n(a) such Participant's\ + \ Contributor Version directly or indirectly infringes any \npatent, then any and all rights\ + \ granted by such Participant to You under \nSections 2.1 and/or 2.2 of this License shall,\ + \ upon 60 days notice from \nParticipant terminate prospectively, unless if within 60 days\ + \ after receipt of \nnotice You either: (i) agree in writing to pay Participant a mutually\ + \ agreeable \nreasonable royalty for Your past and future use of Modifications made by \n\ + such Participant, or (ii) withdraw Your litigation claim with respect to the \nContributor\ + \ Version against such Participant. If within 60 days of notice, a \nreasonable royalty\ + \ and payment arrangement are not mutually agreed upon \nin writing by the parties or the\ + \ litigation claim is not withdrawn, the rights \ngranted by Participant to You under Sections\ + \ 2.1 and/or 2.2 automatically \nterminate at the expiration of the 60 day notice period\ + \ specified above.\n(b) any software, hardware, or device, other than such Participant's\ + \ \nContributor Version, directly or indirectly infringes any patent, then any rights \n\ + granted to You by such Participant under Sections 2.1(b) and 2.2(b) are \nrevoked effective\ + \ as of the date You first made, used, sold, distributed, or \nhad made, Modifications made\ + \ by that Participant.\n\n8.3. If You assert a patent infringement claim against Participant\ + \ alleging that such \nParticipant's Contributor Version directly or indirectly infringes\ + \ any patent where such \nclaim is resolved (such as by license or settlement) prior to\ + \ the initiation of patent \ninfringement litigation, then the reasonable value of the licenses\ + \ granted by such \nParticipant under Sections 2.1 or 2.2 shall be taken into account in\ + \ determining the \namount or value of any payment or license.\n\n8.4. In the event of termination\ + \ under Sections 8.1 or 8.2 above, all end user license \nagreements (excluding distributors\ + \ and resellers) which have been validly granted by \nYou or any distributor hereunder prior\ + \ to termination shall survive termination.\n9. LIMITATION OF LIABILITY.\nUNDER NO CIRCUMSTANCES\ + \ AND UNDER NO LEGAL THEORY, WHETHER \nTORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE,\ + \ SHALL THE \nINITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF \nCOVERED\ + \ CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE \nTO YOU OR ANY OTHER PERSON FOR\ + \ ANY INDIRECT, SPECIAL, INCIDENTAL, \nOR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING,\ + \ WITHOUT \nLIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, \nCOMPUTER FAILURE\ + \ OR MALFUNCTION, OR ANY AND ALL OTHER \nCOMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY\ + \ SHALL HAVE \nBEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION \nOF LIABILITY\ + \ SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL \nINJURY RESULTING FROM SUCH PARTY'S\ + \ NEGLIGENCE TO THE EXTENT \nAPPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS\ + \ DO \nNOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR \nCONSEQUENTIAL DAMAGES, SO\ + \ THAT EXCLUSION AND LIMITATION MAY \nNOT APPLY TO YOU. \n10. U.S. GOVERNMENT END USERS.\ + \ \nThe Covered Code is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101\ + \ \n(Oct. 1995), consisting of \"commercial computer software\" and \"commercial \ncomputer\ + \ software documentation,\" as such terms are used in 48 C.F.R. 12.212 \n(Sept. 1995). Consistent\ + \ with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through \n227.7202-4 (June 1995), all U.S.\ + \ Government End Users acquire Covered Code with \nonly those rights set forth herein. \n\ + 11. MISCELLANEOUS. \nThis section was intentionally left blank. The contents of this section\ + \ are found in the \ncorresponding addendum described above.\n12. RESPONSIBILITY FOR CLAIMS.\ + \ \nExcept in cases where another Contributor has failed to comply with Section 3.4, You\ + \ \nare responsible for damages arising, directly or indirectly, out of Your utilization\ + \ of \nrights under this License, based on the number of copies of Covered Code you made\ + \ \navailable, the revenues you received from utilizing such rights, and other relevant\ + \ \nfactors. You agree to work with affected parties to distribute with Initial Developer\ + \ \nresponsibility on an equitable basis. \nExhibit A. \nText for this Exhibit A is found\ + \ in the corresponding addendum, described in section \n6.4 above, text file provided by\ + \ the Initial Developer. This license is not valid or \ncomplete with out that file. \n\ + Exhibit B. \nText for this Exhibit B is found in the corresponding addendum, described in\ + \ section \n6.4 above, text file provided by the Initial Developer. This license is not\ + \ valid or \ncomplete with out that file." json: open-public.json - yml: open-public.yml + yaml: open-public.yml html: open-public.html - text: open-public.LICENSE + license: open-public.LICENSE - license_key: openbd-exception-3.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-openbd-exception-3.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "Additional Permission Granted by tagServlet Ltd: \n tagServlet Ltd grants the user\ + \ the exception to distribute the entire \n Open BlueDragon runtime libraries without the\ + \ web application (.cfml, .html, \n .js, .css, etc) that Open BlueDragon powers, from itself\ + \ being licensed\n under the GNU General Public License (v3), as long the entire runtime\ + \ \n remains intact and includes all license information.\n \n This exception does not\ + \ overrule the embedded JAR files and where applicable\n the entire Open BlueDragon runtime\ + \ only, must be available for inspection if \n ever asked, complete with all these copyright\ + \ and license information.\n \n This applies only to distribution for the purpose of powering\ + \ end-user CFML\n applications. This exception does not include embedding/linking any\ + \ part of the \n runtime of Open BlueDragon within any other application other than a Servlet\ + \ container \n whose sole purpose is to render CFML applications. Linking or usage by\ + \ any\n Java application (even through CFML), is not permitted.\n \n Any modification,\ + \ enhancements, linking, to the Open BlueDragon runtime still falls \n under the GNU General\ + \ Public License (v3)." json: openbd-exception-3.0.json - yml: openbd-exception-3.0.yml + yaml: openbd-exception-3.0.yml html: openbd-exception-3.0.html - text: openbd-exception-3.0.LICENSE + license: openbd-exception-3.0.LICENSE - license_key: opengroup + category: Copyleft Limited spdx_license_key: OGTSL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "The Open Group Test Suite License\n\nPreamble\n\nThe intent of this document is to\ + \ state the conditions under which a Package may be copied, such that the Copyright Holder\ + \ maintains some semblance of artistic control over the development of the package, while\ + \ giving the users of the package the right to use and distribute the Package in a more-or-less\ + \ customary fashion, plus the right to make reasonable modifications.\n\nTesting is essential\ + \ for proper development and maintenance of standards-based products.\n\nFor buyers: adequate\ + \ conformance testing leads to reduced integration costs and protection of investments in\ + \ applications, software and people.\n\nFor software developers: conformance testing of\ + \ platforms and middleware greatly reduces the cost of developing and maintaining multi-platform\ + \ application software.\n\nFor suppliers: In-depth testing increases customer satisfaction\ + \ and keeps development and support costs in check. API conformance is highly measurable\ + \ and suppliers who claim it must be able to substantiate that claim.\n\nAs such, since\ + \ these are benchmark measures of conformance, we feel the integrity of test tools is of\ + \ importance. In order to preserve the integrity of the existing conformance modes of this\ + \ test package and to permit recipients of modified versions of this package to run the\ + \ original test modes, this license requires that the original test modes be preserved.\n\ + \nIf you find a bug in one of the standards mode test cases, please let us know so we can\ + \ feed this back into the original, and also raise any specification issues with the appropriate\ + \ bodies (for example the POSIX committees).\n\nDefinitions:\n\n * \"Package\" refers\ + \ to the collection of files distributed by the Copyright Holder, and derivatives of that\ + \ collection of files created through textual modification.\n * \"Standard Version\"\ + \ refers to such a Package if it has not been modified, or has been modified in accordance\ + \ with the wishes of the Copyright Holder.\n * \"Copyright Holder\" is whoever is named\ + \ in the copyright or copyrights for the package. \"You\" is you, if you're thinking about\ + \ copying or distributing this Package.\n * \"Reasonable copying fee\" is whatever you\ + \ can justify on the basis of media cost, duplication charges, time of people involved,\ + \ and so on. (You will not be required to justify it to the Copyright Holder, but only to\ + \ the computing community at large as a market that must bear the fee.)\n * \"Freely\ + \ Available\" means that no fee is charged for the item itself, though there may be fees\ + \ involved in handling the item. It also means that recipients of the item may redistribute\ + \ it under the same conditions they received it. \n\n\n*\n\n1. You may make and give away\ + \ verbatim copies of the source form of the Standard Version of this Package without restriction,\ + \ provided that you duplicate all of the original copyright notices and associated disclaimers.\n\ + \n2. You may apply bug fixes, portability fixes and other modifications derived from the\ + \ Public Domain or from the Copyright Holder. A Package modified in such a way shall still\ + \ be considered the Standard Version.\n\n3. You may otherwise modify your copy of this Package\ + \ in any way, provided that you insert a prominent notice in each changed file stating how\ + \ and when you changed that file, and provided that you do at least the following:\n\n \ + \ rename any non-standard executables and testcases so the names do not conflict with\ + \ standard executables and testcases, which must also be provided, and provide a separate\ + \ manual page for each non-standard executable and testcase that clearly documents how it\ + \ differs from the Standard Version.\n\n4. You may distribute the programs of this Package\ + \ in object code or executable form, provided that you do at least the following:\n\n \ + \ accompany any non-standard executables and testcases with their corresponding Standard\ + \ Version executables and testcases, giving the non-standard executables and testcases non-standard\ + \ names, and clearly documenting the differences in manual pages (or equivalent), together\ + \ with instructions on where to get the Standard Version.\n\n5. You may charge a reasonable\ + \ copying fee for any distribution of this Package. You may charge any fee you choose for\ + \ support of this Package. You may not charge a fee for this Package itself. However, you\ + \ may distribute this Package in aggregate with other (possibly commercial) programs as\ + \ part of a larger (possibly commercial) software distribution provided that you do not\ + \ advertise this Package as a product of your own.\n\n6. The scripts and library files supplied\ + \ as input to or produced as output from the programs of this Package do not automatically\ + \ fall under the copyright of this Package, but belong to whomever generated them, and may\ + \ be sold commercially, and may be aggregated with this Package.\n\n7.Subroutines supplied\ + \ by you and linked into this Package shall not be considered part of this Package.\n\n\ + 8. The name of the Copyright Holder may not be used to endorse or promote products derived\ + \ from this software without specific prior written permission.\n\n9. THIS PACKAGE IS PROVIDED\ + \ \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION,\ + \ THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nThe\ + \ End" json: opengroup.json - yml: opengroup.yml + yaml: opengroup.yml html: opengroup.html - text: opengroup.LICENSE + license: opengroup.LICENSE - license_key: openi-pl-1.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-openi-pl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "The OpenI Public License Version 1.0 (\"OPL\") consists of the Mozilla Public \nLicense\ + \ Version 1.1, modified to be specific to OpenI, with the Additional \nTerms in Exhibit\ + \ B. The original Mozilla Public License 1.1 can be found at: \nhttp://www.mozilla.org/MPL/MPL-1.1.html\ + \ \n\nOPENI PUBLIC LICENSE \nVersion 1.0\n\n--------------------------------------------------------------------------------\n\ + \n1. Definitions. \n\n1.0.1. \"Commercial Use\" means distribution or otherwise making the\ + \ Covered \nCode available to a third party. \n1.1. ''Contributor'' means each entity that\ + \ creates or contributes to the \ncreation of Modifications. \n\n1.2. ''Contributor Version''\ + \ means the combination of the Original Code, prior \nModifications used by a Contributor,\ + \ and the Modifications made by that \nparticular Contributor. \n\n1.3. ''Covered Code''\ + \ means the Original Code or Modifications or the \ncombination of the Original Code and\ + \ Modifications, in each case including \nportions thereof. \n\n1.4. ''Electronic Distribution\ + \ Mechanism'' means a mechanism generally accepted \nin the software development community\ + \ for the electronic transfer of data. \n\n1.5. ''Executable'' means Covered Code in any\ + \ form other than Source Code. \n\n1.6. ''Initial Developer'' means the individual or entity\ + \ identified as the \nInitial Developer in the Source Code notice required by Exhibit A.\ + \ \n\n1.7. ''Larger Work'' means a work which combines Covered Code or portions \nthereof\ + \ with code not governed by the terms of this License. \n\n1.8. ''License'' means this document.\ + \ \n\n1.8.1. \"Licensable\" means having the right to grant, to the maximum extent \npossible,\ + \ whether at the time of the initial grant or subsequently acquired, \nany and all of the\ + \ rights conveyed herein. \n\n1.9. ''Modifications'' means any addition to or deletion from\ + \ the substance \nor structure of either the Original Code or any previous Modifications.\ + \ When \nCovered Code is released as a series of files, a Modification is: \n\nA. Any addition\ + \ to or deletion from the contents of a file containing Original \nCode or previous Modifications.\ + \ \nB. Any new file that contains any part of the Original Code or previous \nModifications.\ + \ \n \n\n1.10. ''Original Code'' means Source Code of computer software code which is \n\ + described in the Source Code notice required by Exhibit A as Original Code, \nand which,\ + \ at the time of its release under this License is not already Covered \nCode governed by\ + \ this License. \n1.10.1. \"Patent Claims\" means any patent claim(s), now owned or hereafter\ + \ \nacquired, including without limitation, method, process, and apparatus claims, \nin\ + \ any patent Licensable by grantor. \n\n1.11. ''Source Code'' means the preferred form of\ + \ the Covered Code for making \nmodifications to it, including all modules it contains,\ + \ plus any associated \ninterface definition files, scripts used to control compilation\ + \ and installation \nof an Executable, or source code differential comparisons against either\ + \ the \nOriginal Code or another well known, available Covered Code of the Contributor's\ + \ \nchoice. The Source Code can be in a compressed or archival form, provided the \nappropriate\ + \ decompression or de-archiving software is widely available for no \ncharge. \n\n1.12.\ + \ \"You'' (or \"Your\") means an individual or a legal entity exercising \nrights under,\ + \ and complying with all of the terms of, this License or a future \nversion of this License\ + \ issued under Section 6.1. For legal entities, \"You'' \nincludes any entity which controls,\ + \ is controlled by, or is under common \ncontrol with You. For purposes of this definition,\ + \ \"control'' means (a) the \npower, direct or indirect, to cause the direction or management\ + \ of such entity, \nwhether by contract or otherwise, or (b) ownership of more than fifty\ + \ percent \n(50%) of the outstanding shares or beneficial ownership of such entity.\n\n\ + 2. Source Code License. \n2.1. The Initial Developer Grant. \nThe Initial Developer hereby\ + \ grants You a world-wide, royalty-free, \nnon-exclusive license, subject to third party\ + \ intellectual property claims: \n(a) under intellectual property rights (other than patent\ + \ or trademark) \nLicensable by Initial Developer to use, reproduce, modify, display, perform,\ + \ \nsublicense and distribute the Original Code (or portions thereof) with or \nwithout\ + \ Modifications, and/or as part of a Larger Work; and \n(b) under Patents Claims infringed\ + \ by the making, using or selling of Original \nCode, to make, have made, use, practice,\ + \ sell, and offer for sale, and/or \notherwise dispose of the Original Code (or portions\ + \ thereof). \n\n \n(c) the licenses granted in this Section 2.1(a) and (b) are effective\ + \ on \nthe date Initial Developer first distributes Original Code under the terms \nof this\ + \ License. \n(d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1)\ + \ for \ncode that You delete from the Original Code; 2) separate from the Original Code;\ + \ \nor 3) for infringements caused by: i) the modification of the Original Code or \nii)\ + \ the combination of the Original Code with other software or devices. \n \n\n2.2. Contributor\ + \ Grant. \nSubject to third party intellectual property claims, each Contributor hereby\ + \ \ngrants You a world-wide, royalty-free, non-exclusive license \n \n(a) under intellectual\ + \ property rights (other than patent or trademark) \nLicensable by Contributor, to use,\ + \ reproduce, modify, display, perform, \nsublicense and distribute the Modifications created\ + \ by such Contributor \n(or portions thereof) either on an unmodified basis, with other\ + \ Modifications, \nas Covered Code and/or as part of a Larger Work; and \n(b) under Patent\ + \ Claims infringed by the making, using, or selling of \nModifications made by that Contributor\ + \ either alone and/or in combination with \nits Contributor Version (or portions of such\ + \ combination), to make, use, sell, \noffer for sale, have made, and/or otherwise dispose\ + \ of: 1) Modifications made \nby that Contributor (or portions thereof); and 2) the combination\ + \ of \nModifications made by that Contributor with its Contributor Version (or portions\ + \ \nof such combination). \n\n(c) the licenses granted in Sections 2.2(a) and 2.2(b) are\ + \ effective on the date \nContributor first makes Commercial Use of the Covered Code. \n\ + \n(d) Notwithstanding Section 2.2(b) above, no patent license is granted: \n1) for any\ + \ code that Contributor has deleted from the Contributor Version; \n2) separate from the\ + \ Contributor Version; 3) for infringements caused \nby: i) third party modifications\ + \ of Contributor Version or ii) the \ncombination of Modifications made by that Contributor\ + \ with other software \n(except as part of the Contributor Version) or other devices; or\ + \ 4) under \nPatent Claims infringed by Covered Code in the absence of Modifications \n\ + made by that Contributor.\n\n\n3. Distribution Obligations. \n\n3.1. Application of License.\ + \ \nThe Modifications which You create or to which You contribute are \ngoverned by the\ + \ terms of this License, including without limitation \nSection 2.2. The Source Code version\ + \ of Covered Code may be distributed \nonly under the terms of this License or a future\ + \ version of this License \nreleased under Section 6.1, and You must include a copy of this\ + \ License\nwith every copy of the Source Code You distribute. You may not offer or \nimpose\ + \ any terms on any Source Code version that alters or restricts the \napplicable version\ + \ of this License or the recipients' rights hereunder. \nHowever, You may include an additional\ + \ document offering the additional \nrights described in Section 3.5. \n3.2. Availability\ + \ of Source Code. \nAny Modification which You create or to which You contribute must be\ + \ made \navailable in Source Code form under the terms of this License either on \nthe same\ + \ media as an Executable version or via an accepted Electronic \nDistribution Mechanism\ + \ to anyone to whom you made an Executable version \navailable; and if made available via\ + \ Electronic Distribution Mechanism, \nmust remain available for at least twelve (12) months\ + \ after the date it \ninitially became available, or at least six (6) months after a subsequent\ + \ \nversion of that particular Modification has been made available to such \nrecipients.\ + \ You are responsible for ensuring that the Source Code version \nremains available even\ + \ if the Electronic Distribution Mechanism is \nmaintained by a third party. \n\n3.3. Description\ + \ of Modifications. \nYou must cause all Covered Code to which You contribute to contain\ + \ a file \ndocumenting the changes You made to create that Covered Code and the date of\ + \ \nany change. You must include a prominent statement that the Modification is \nderived,\ + \ directly or indirectly, from Original Code provided by the Initial \nDeveloper and including\ + \ the name of the Initial Developer in (a) the Source \nCode, and (b) in any notice in an\ + \ Executable version or related documentation \nin which You describe the origin or ownership\ + \ of the Covered Code. \n\n3.4. Intellectual Property Matters \n\n(a) Third Party Claims.\ + \ \nIf Contributor has knowledge that a license under a third party's intellectual \nproperty\ + \ rights is required to exercise the rights granted by such Contributor \nunder Sections\ + \ 2.1 or 2.2, Contributor must include a text file with the Source \nCode distribution titled\ + \ \"LEGAL'' which describes the claim and the party making \nthe claim in sufficient detail\ + \ that a recipient will know whom to contact. If \nContributor obtains such knowledge after\ + \ the Modification is made available as \ndescribed in Section 3.2, Contributor shall promptly\ + \ modify the LEGAL file in \nall copies Contributor makes available thereafter and shall\ + \ take other steps \n(such as notifying appropriate mailing lists or newsgroups) reasonably\ + \ calculated \nto inform those who received the Covered Code that new knowledge has been\ + \ obtained. \n(b) Contributor APIs. \nIf Contributor's Modifications include an application\ + \ programming interface and \nContributor has knowledge of patent licenses which are reasonably\ + \ necessary to \nimplement that API, Contributor must also include this information in the\ + \ LEGAL \nfile. \n \n\n (c) Representations. \nContributor represents that,\ + \ except as disclosed pursuant to Section 3.4(a) \nabove, Contributor believes that Contributor's\ + \ Modifications are Contributor's \noriginal creation(s) and/or Contributor has sufficient\ + \ rights to grant the \nrights conveyed by this License.\n\n3.5. Required Notices. \nYou\ + \ must duplicate the notice in Exhibit A in each file of the Source Code. \nIf it is not\ + \ possible to put such notice in a particular Source Code file \ndue to its structure, then\ + \ You must include such notice in a location (such \nas a relevant directory) where a user\ + \ would be likely to look for such a \nnotice. If You created one or more Modification(s)\ + \ You may add your name as \na Contributor to the notice described in Exhibit A. You must\ + \ also duplicate \nthis License in any documentation for the Source Code where You describe\ + \ \nrecipients' rights or ownership rights relating to Covered Code. You may \nchoose to\ + \ offer, and to charge a fee for, warranty, support, indemnity or \nliability obligations\ + \ to one or more recipients of Covered Code. However, You \nmay do so only on Your own behalf,\ + \ and not on behalf of the Initial Developer \nor any Contributor. You must make it absolutely\ + \ clear than any such warranty, \nsupport, indemnity or liability obligation is offered\ + \ by You alone, and You \nhereby agree to indemnify the Initial Developer and every Contributor\ + \ for any \nliability incurred by the Initial Developer or such Contributor as a result\ + \ of \nwarranty, support, indemnity or liability terms You offer. \n\n3.6. Distribution\ + \ of Executable Versions. \nYou may distribute Covered Code in Executable form only if the\ + \ requirements \nof Section 3.1-3.5 have been met for that Covered Code, and if You include\ + \ \na notice stating that the Source Code version of the Covered Code is available \nunder\ + \ the terms of this License, including a description of how and where \nYou have fulfilled\ + \ the obligations of Section 3.2. The notice must be \nconspicuously included in any notice\ + \ in an Executable version, related \ndocumentation or collateral in which You describe\ + \ recipients' rights relating \nto the Covered Code. You may distribute the Executable version\ + \ of Covered \nCode or ownership rights under a license of Your choice, which may contain\ + \ \nterms different from this License, provided that You are in compliance with \nthe terms\ + \ of this License and that the license for the Executable version \ndoes not attempt to\ + \ limit or alter the recipient's rights in the Source Code \nversion from the rights set\ + \ forth in this License. If You distribute the \nExecutable version under a different license\ + \ You must make it absolutely \nclear that any terms which differ from this License are\ + \ offered by You alone, \nnot by the Initial Developer or any Contributor. You hereby agree\ + \ to indemnify \nthe Initial Developer and every Contributor for any liability incurred\ + \ by the \nInitial Developer or such Contributor as a result of any such terms You offer.\ + \ \n\n3.7. Larger Works. \nYou may create a Larger Work by combining Covered Code with other\ + \ code not \ngoverned by the terms of this License and distribute the Larger Work as a \n\ + single product. In such a case, You must make sure the requirements of this \nLicense are\ + \ fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\ + \ \nIf it is impossible for You to comply with any of the terms of this License\nwith respect\ + \ to some or all of the Covered Code due to statute, judicial order, \nor regulation then\ + \ You must: (a) comply with the terms of this License to the \nmaximum extent possible;\ + \ and (b) describe the limitations and the code they \naffect. Such description must be\ + \ included in the LEGAL file described in \nSection 3.4 and must be included with all distributions\ + \ of the Source Code. \nExcept to the extent prohibited by statute or regulation, such description\ + \ \nmust be sufficiently detailed for a recipient of ordinary skill to be able \nto understand\ + \ it.\n5. Application of this License. \nThis License applies to code to which the Initial\ + \ Developer has attached the \nnotice in Exhibit A and to related Covered Code.\n6. Versions\ + \ of the License. \n6.1. New Versions. \nLoyalty Matrix Inc. (''Loyalty Matrix'') may publish\ + \ revised and/or new \nversions of the License from time to time. Each version will be given\ + \ a \ndistinguishing version number. \n6.2. Effect of New Versions. \nOnce Covered Code\ + \ has been published under a particular version of the License, \nYou may always continue\ + \ to use it under the terms of that version. You may also \nchoose to use such Covered Code\ + \ under the terms of any subsequent version of the \nLicense published by Loyalty Matrix.\ + \ No one other than Loyalty Matrix has the \nright to modify the terms applicable to Covered\ + \ Code created under this License. \n\n6.3. Derivative Works. \nIf You create or use a modified\ + \ version of this License (which you may only do \nin order to apply it to code which is\ + \ not already Covered Code governed by this \nLicense), You must (a) rename Your license\ + \ so that the phrases ''OpenI'', \n''OPL'', ''Loyalty Matrix'', or any confusingly similar\ + \ phrase do not appear in \nyour license (except to note that your license differs from\ + \ this License) and \n(b) otherwise make it clear that Your version of the license contains\ + \ terms \nwhich differ from the OpenI Public License. (Filling in the name of the Initial\ + \ \nDeveloper, Original Code or Contributor in the notice described in Exhibit A \nshall\ + \ not of themselves be deemed to be modifications of this License.)\n\n7. DISCLAIMER OF\ + \ WARRANTY. \nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS'' BASIS, WITHOUT\ + \ WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES\ + \ \nTHAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE\ + \ \nOR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED\ + \ \nCODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT \n\ + THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY \nSERVICING,\ + \ REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL \nPART OF THIS\ + \ LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT \nUNDER THIS DISCLAIMER.\n\ + \n8. TERMINATION. \n8.1. This License and the rights granted hereunder will terminate automatically\ + \ if \nYou fail to comply with terms herein and fail to cure such breach within 30 days\ + \ of \nbecoming aware of the breach. All sublicenses to the Covered Code which are properly\ + \ \ngranted shall survive any termination of this License. Provisions which, by their \n\ + nature, must remain in effect beyond the termination of this License shall survive. \n\n\ + 8.2. If You initiate litigation by asserting a patent infringement claim (excluding \n\ + declatory judgment actions) against Initial Developer or a Contributor (the Initial \nDeveloper\ + \ or Contributor against whom You file such action is referred to as \n\"Participant\")\ + \ alleging that: \n\n(a) such Participant's Contributor Version directly or indirectly\ + \ infringes any patent, \nthen any and all rights granted by such Participant to You under\ + \ Sections 2.1 and/or \n2.2 of this License shall, upon 60 days notice from Participant\ + \ terminate prospectively, \nunless if within 60 days after receipt of notice You either:\ + \ (i) agree in writing to \npay Participant a mutually agreeable reasonable royalty for\ + \ Your past and future use \nof Modifications made by such Participant, or (ii) withdraw\ + \ Your litigation claim \nwith respect to the Contributor Version against such Participant.\ + \ If within 60 days \nof notice, a reasonable royalty and payment arrangement are not mutually\ + \ agreed upon \nin writing by the parties or the litigation claim is not withdrawn, the\ + \ rights granted \nby Participant to You under Sections 2.1 and/or 2.2 automatically terminate\ + \ at the \nexpiration of the 60 day notice period specified above. \n\n(b) any software,\ + \ hardware, or device, other than such Participant's Contributor Version, \ndirectly or\ + \ indirectly infringes any patent, then any rights granted to You by such \nParticipant\ + \ under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You \nfirst made,\ + \ used, sold, distributed, or had made, Modifications made by that Participant. \n\n8.3.\ + \ If You assert a patent infringement claim against Participant alleging that such \nParticipant's\ + \ Contributor Version directly or indirectly infringes any patent where such \nclaim is\ + \ resolved (such as by license or settlement) prior to the initiation of patent \ninfringement\ + \ litigation, then the reasonable value of the licenses granted by such \nParticipant under\ + \ Sections 2.1 or 2.2 shall be taken into account in determining the \namount or value of\ + \ any payment or license. \n\n8.4. In the event of termination under Sections 8.1 or 8.2\ + \ above, all end user license \nagreements (excluding distributors and resellers) which\ + \ have been validly granted by You \nor any distributor hereunder prior to termination shall\ + \ survive termination.\n\n9. LIMITATION OF LIABILITY. \nUNDER NO CIRCUMSTANCES AND UNDER\ + \ NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), \nCONTRACT, OR OTHERWISE, SHALL\ + \ YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY \nDISTRIBUTOR OF COVERED CODE,\ + \ OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY \nPERSON FOR ANY INDIRECT, SPECIAL,\ + \ INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER \nINCLUDING, WITHOUT LIMITATION,\ + \ DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER \nFAILURE OR MALFUNCTION, OR ANY\ + \ AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH \nPARTY SHALL HAVE BEEN INFORMED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF \nLIABILITY SHALL NOT APPLY TO\ + \ LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH \nPARTY'S NEGLIGENCE TO THE\ + \ EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME \nJURISDICTIONS DO NOT ALLOW THE\ + \ EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL \nDAMAGES, SO THIS EXCLUSION AND\ + \ LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS. \nThe Covered Code\ + \ is a ''commercial item,'' as that term is defined in 48 C.F.R. 2.101 \n(Oct. 1995), consisting\ + \ of ''commercial computer software'' and ''commercial computer \nsoftware documentation,''\ + \ as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). \nConsistent with 48 C.F.R. 12.212\ + \ and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), \nall U.S. Government End Users\ + \ acquire Covered Code with only those rights set forth herein.\n\n11. MISCELLANEOUS. \n\ + This License represents the complete agreement concerning subject matter hereof. If \nany\ + \ provision of this License is held to be unenforceable, such provision shall be \nreformed\ + \ only to the extent necessary to make it enforceable. This License shall be \ngoverned\ + \ by California law provisions (except to the extent applicable law, if any, \nprovides\ + \ otherwise), excluding its conflict-of-law provisions. With respect to disputes \nin which\ + \ at least one party is a citizen of, or an entity chartered or registered to do \nbusiness\ + \ in the United States of America, any litigation relating to this License shall \nbe subject\ + \ to the jurisdiction of the Federal Courts of the Northern District of California, \nwith\ + \ venue lying in Santa Clara County, California, with the losing party responsible for \n\ + costs, including without limitation, court costs and reasonable attorneys' fees and expenses.\ + \ \nThe application of the United Nations Convention on Contracts for the International\ + \ Sale of \nGoods is expressly excluded. Any law or regulation which provides that the language\ + \ of a \ncontract shall be construed against the drafter shall not apply to this License.\n\ + \n12. RESPONSIBILITY FOR CLAIMS. \nAs between Initial Developer and the Contributors, each\ + \ party is responsible for claims \nand damages arising, directly or indirectly, out of\ + \ its utilization of rights under this \nLicense and You agree to work with Initial Developer\ + \ and Contributors to distribute such \nresponsibility on an equitable basis. Nothing herein\ + \ is intended or shall be deemed to \nconstitute any admission of liability.\n\n13. MULTIPLE-LICENSED\ + \ CODE. \nInitial Developer may designate portions of the Covered Code as “Multiple-Licensed”.\ + \ \n“Multiple-Licensed” means that the Initial Developer permits you to utilize portions\ + \ of \nthe Covered Code under Your choice of the SPL or the alternative licenses, if any,\ + \ specified \nby the Initial Developer in the file described in Exhibit A.\n\n\nOpenI Public\ + \ License 1.0 - Exhibit A\nThe contents of this file are subject to the OpenI Public License\ + \ Version 1.0\n(\"License\"); You may not use this file except in compliance with the \n\ + License. You may obtain a copy of the License at http://www.openi.org/docs/opl-1.0.txt\n\ + Software distributed under the License is distributed on an \"AS IS\" basis,\nWITHOUT WARRANTY\ + \ OF ANY KIND, either express or implied. See the License for\nthe specific language governing\ + \ rights and limitations under the License.\n\nThe Original Code is: OpenI Open Source\n\ + \nThe Initial Developer of the Original Code is Loyalty Matrix, Inc.\nPortions created by\ + \ Loyalty Matrix are Copyright (C) 2005 Loyalty Matrix, Inc.;\nAll Rights Reserved.\nContributor(s):\ + \ ______________________________________.\n\n\n[NOTE: The text of this Exhibit A may differ\ + \ slightly from the text of the notices \nin the Source Code files of the Original Code.\ + \ You should use the text of this \nExhibit A rather than the text found in the Original\ + \ Code Source Code for Your \nModifications.]\n\n\nOpenI Public License 1.0 - Exhibit B\n\ + \nAdditional Terms applicable to the OpenI Public License.\n\nI. Effect.\nThese additional\ + \ terms described in this OpenI Public License - Additional Terms \nshall apply to the Covered\ + \ Code under this License.\n\nII. OpenI and logo. \n\nThis License does not grant any rights\ + \ to use the trademarks \"OpenI\", \n\"Open Intelligence\", and the \"OpenI\" logos even\ + \ if such marks are included in the \nOriginal Code or Modifications." json: openi-pl-1.0.json - yml: openi-pl-1.0.yml + yaml: openi-pl-1.0.yml html: openi-pl-1.0.html - text: openi-pl-1.0.LICENSE + license: openi-pl-1.0.LICENSE - license_key: openjdk-assembly-exception-1.0 + category: Copyleft Limited spdx_license_key: OpenJDK-assembly-exception-1.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + OpenJDK Assembly Exception + + The OpenJDK source code made available by Oracle America, Inc. (Oracle) at + openjdk.java.net ("OpenJDK Code") is distributed under the terms of the GNU + General Public License version 2 + only ("GPL2"), with the following clarification and special exception. + + Linking this OpenJDK Code statically or dynamically with other code + is making a combined work based on this library. Thus, the terms + and conditions of GPL2 cover the whole combination. + + As a special exception, Oracle gives you permission to link this + OpenJDK Code with certain code licensed by Oracle as indicated at + http://openjdk.java.net/legal/exception-modules-2007-05-08.html + ("Designated Exception Modules") to produce an executable, + regardless of the license terms of the Designated Exception Modules, + and to copy and distribute the resulting executable under GPL2, + provided that the Designated Exception Modules continue to be + governed by the licenses under which they were offered by Oracle. + + As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code + to build an executable that includes those portions of necessary code that + Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 + with the Classpath exception). If you modify or add to the OpenJDK code, + that new GPL2 code may still be combined with Designated Exception Modules + if the new code is made subject to this exception by its copyright holder. json: openjdk-assembly-exception-1.0.json - yml: openjdk-assembly-exception-1.0.yml + yaml: openjdk-assembly-exception-1.0.yml html: openjdk-assembly-exception-1.0.html - text: openjdk-assembly-exception-1.0.LICENSE + license: openjdk-assembly-exception-1.0.LICENSE - license_key: openjdk-classpath-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-openjdk-classpath-exception2.0 other_spdx_license_keys: - LicenseRef-scancode-openjdk-classpath-exception-2.0 is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + OPENJDK ASSEMBLY EXCEPTION + + The OpenJDK source code made available openjdk.dev.java.net ("OpenJDK Code") is distributed under + the terms of the GNU General Public License version 2 + only ("GPL2"), with the following clarification and special exception. + + Linking this OpenJDK Code statically or dynamically with other code + is making a combined work based on this library. Thus, the terms + and conditions of GPL2 cover the whole combination. + + As a special exception, Sun gives you permission to link this + OpenJDK Code with certain code licensed by Sun as indicated at + http://openjdk.java.net/legal/exception-modules-2007-05-08.html + ("Designated Exception Modules") to produce an executable, + regardless of the license terms of the Designated Exception Modules, + and to copy and distribute the resulting executable under GPL2, + provided that the Designated Exception Modules continue to be + governed by the licenses under which they were offered by Sun. + + As such, it allows licensees and sublicensees of Sun's GPL2 OpenJDK Code + to build an executable that includes those portions of necessary code that + Sun could not provide under GPL2 (or that Sun has provided under GPL2 + with the Classpath exception). If you modify or add to the OpenJDK code, + that new GPL2 code may still be combined with Designated Exception Modules + if the new code is made subject to this exception by its copyright holder. json: openjdk-classpath-exception-2.0.json - yml: openjdk-classpath-exception-2.0.yml + yaml: openjdk-classpath-exception-2.0.yml html: openjdk-classpath-exception-2.0.html - text: openjdk-classpath-exception-2.0.LICENSE + license: openjdk-classpath-exception-2.0.LICENSE - license_key: openjdk-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-openjdk-exception other_spdx_license_keys: - Assembly-exception is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + "CLASSPATH" EXCEPTION TO THE GPL + + Certain source files distributed by Oracle America and/or its affiliates are + subject to the following clarification and special exception to the GPL, but + only where Oracle has expressly included in the particular source file's header + the words "Oracle designates this particular file as subject to the "Classpath" + exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. + + OpenJDK Assembly Exception + + The OpenJDK source code made available by Sun at openjdk.java.net and + openjdk.dev.java.net ("OpenJDK Code") is distributed under the terms of + the GNU General Public License + version 2 only ("GPL2"), with the following clarification and special + exception. + + Linking this OpenJDK Code statically or dynamically with other code is + making a combined work based on this library. Thus, the terms and + conditions of GPL2 cover the whole combination. + + As a special exception, Sun gives you permission to link this OpenJDK + Code with certain code licensed by Sun as indicated at + http://openjdk.java.net/legal/exception-modules-2007-05-08.html + ("Designated Exception Modules") to produce an executable, regardless of + the license terms of the Designated Exception Modules, and to copy and + distribute the resulting executable under GPL2, provided that the + Designated Exception Modules continue to be governed by the licenses + under which they were offered by Sun. + + As such, it allows licensees and sublicensees of Sun's GPL2 OpenJDK Code + to build an executable that includes those portions of necessary code + that Sun could not provide under GPL2 (or that Sun has provided under + GPL2 with the Classpath exception). If you modify or add to the OpenJDK + code, that new GPL2 code may still be combined with Designated Exception + Modules if the new code is made subject to this exception by its + copyright holder. + + + OpenJDK Designated Exception Modules + + 8 May 2007 + + For purposes of those files in the OpenJDK distribution that are subject + to the Assembly Exception, the following shall be deemed Designated + Exception Modules: + + Those files in the OpenJDK distribution available at openjdk.java.net, + openjdk.dev.java.net, and download.java.net to which Sun has applied the + Classpath Exception, + + Any of your derivative works of #1 above, to the extent you license them + under the GPLv2 with the Classpath Exception as defined in the OpenJDK + distribution available at openjdk.java.net, openjdk.dev.java.net, or + download.java.net, + + Any files in the OpenJDK distribution that are made available at + openjdk.java.net, openjdk.dev.java.net, or download.java.net under a + binary code license, and + + Any files in the OpenJDK distribution that are made available at + openjdk.java.net, openjdk.dev.java.net, or download.java.net under an + open source license other than GPL, and your derivatives thereof that + are in compliance with the applicable open source license. json: openjdk-exception.json - yml: openjdk-exception.yml + yaml: openjdk-exception.yml html: openjdk-exception.html - text: openjdk-exception.LICENSE + license: openjdk-exception.LICENSE - license_key: openldap-1.1 + category: Copyleft Limited spdx_license_key: OLDAP-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "The OpenLDAP Public License \n\nVersion 1.1, 25 August 1998 \nCopyright 1998, The OpenLDAP\ + \ Foundation. \nAll Rights Reserved. \n\nNote: \nThis license is derived from the \"Artistic\ + \ License\" as distributed \nwith the Perl Programming Language. Its terms are different\ + \ from \nthose of the \"Artistic License.\" \n\nPREAMBLE \n\nThe intent of this document\ + \ is to state the conditions under which a \nPackage may be copied, such that the Copyright\ + \ Holder maintains some \nsemblance of artistic control over the development of the package,\ + \ \nwhile giving the users of the package the right to use and distribute \nthe Package\ + \ in a more-or-less customary fashion, plus the right to make \nreasonable modifications.\ + \ \n\nDefinitions: \n\n\"Package\" refers to the collection of files distributed by the\ + \ \nCopyright Holder, and derivatives of that collection of files \ncreated through textual\ + \ modification. \n\n\"Standard Version\" refers to such a Package if it has not been \n\ + modified, or has been modified in accordance with the wishes \nof the Copyright Holder.\ + \ \n\n\"Copyright Holder\" is whoever is named in the copyright or \ncopyrights for the\ + \ package. \n\n\"You\" is you, if you're thinking about copying or distributing \nthis Package.\ + \ \n\n\"Reasonable copying fee\" is whatever you can justify on the \nbasis of media cost,\ + \ duplication charges, time of people involved, \nand so on. (You will not be required to\ + \ justify it to the \nCopyright Holder, but only to the computing community at large \n\ + as a market that must bear the fee.) \n\n\"Freely Available\" means that no fee is charged\ + \ for the item \nitself, though there may be fees involved in handling the item. \nIt also\ + \ means that recipients of the item may redistribute it \nunder the same conditions they\ + \ received it. \n\n1. You may make and give away verbatim copies of the source form of the\ + \ \nStandard Version of this Package without restriction, provided that you \nduplicate\ + \ all of the original copyright notices and associated disclaimers. \n\n2. You may apply\ + \ bug fixes, portability fixes and other modifications \nderived from the Public Domain\ + \ or from the Copyright Holder. A Package \nmodified in such a way shall still be considered\ + \ the Standard Version. \n\n3. You may otherwise modify your copy of this Package in any\ + \ way, provided \nthat you insert a prominent notice in each changed file stating how and\ + \ \nwhen you changed that file, and provided that you do at least ONE of the \nfollowing:\ + \ \n\na) place your modifications in the Public Domain or otherwise make them \nFreely Available,\ + \ such as by posting said modifications to Usenet or \nan equivalent medium, or placing\ + \ the modifications on a major archive \nsite such as uunet.uu.net, or by allowing the Copyright\ + \ Holder to include \nyour modifications in the Standard Version of the Package. \n\nb)\ + \ use the modified Package only within your corporation or organization. \n\nc) rename any\ + \ non-standard executables so the names do not conflict \nwith standard executables, which\ + \ must also be provided, and provide \na separate manual page for each non-standard executable\ + \ that clearly \ndocuments how it differs from the Standard Version. \n\nd) make other distribution\ + \ arrangements with the Copyright Holder. \n\n4. You may distribute the programs of this\ + \ Package in object code or \nexecutable form, provided that you do at least ONE of the\ + \ following: \n\na) distribute a Standard Version of the executables and library files,\ + \ \ntogether with instructions (in the manual page or equivalent) on where \nto get the\ + \ Standard Version. \n\nb) accompany the distribution with the machine-readable source of\ + \ \nthe Package with your modifications. \n\nc) accompany any non-standard executables with\ + \ their corresponding \nStandard Version executables, giving the non-standard executables\ + \ \nnon-standard names, and clearly documenting the differences in manual \npages (or equivalent),\ + \ together with instructions on where to get \nthe Standard Version. \n\nd) make other distribution\ + \ arrangements with the Copyright Holder. \n\n5. You may charge a reasonable copying fee\ + \ for any distribution of this \nPackage. You may charge any fee you choose for support\ + \ of this Package. \nYou may not charge a fee for this Package itself. However, \nyou may\ + \ distribute this Package in aggregate with other (possibly \ncommercial) programs as part\ + \ of a larger (possibly commercial) software \ndistribution provided that you do not advertise\ + \ this Package as a \nproduct of your own. \n\n6. The scripts and library files supplied\ + \ as input to or produced as \noutput from the programs of this Package do not automatically\ + \ fall \nunder the copyright of this Package, but belong to whomever generated \nthem, and\ + \ may be sold commercially, and may be aggregated with this \nPackage. \n\n7. C subroutines\ + \ supplied by you and linked into this Package in order \nto emulate subroutines and variables\ + \ of the language defined by this \nPackage shall not be considered part of this Package,\ + \ but are the \nequivalent of input as in Paragraph 6, provided these subroutines do \n\ + not change the language in any way that would cause it to fail the \nregression tests for\ + \ the language. \n\n8. The name of the Copyright Holder may not be used to endorse or promote\ + \ \nproducts derived from this software without specific prior written permission. \n\n\ + 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR \nIMPLIED WARRANTIES, INCLUDING,\ + \ WITHOUT LIMITATION, THE IMPLIED \nWARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR\ + \ PURPOSE. \n\nThe End" json: openldap-1.1.json - yml: openldap-1.1.yml + yaml: openldap-1.1.yml html: openldap-1.1.html - text: openldap-1.1.LICENSE + license: openldap-1.1.LICENSE - license_key: openldap-1.2 + category: Copyleft Limited spdx_license_key: OLDAP-1.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "The OpenLDAP Public License \n\nVersion 1.2, 1 September 1998 \nCopyright 1998, The\ + \ OpenLDAP Foundation. \nAll Rights Reserved. \n\nNote: \nThis license is derived from the\ + \ \"Artistic License\" as distributed \nwith the Perl Programming Language. As differences\ + \ may exist, \nthe complete license should be read. \n\nPREAMBLE \n\nThe intent of this\ + \ document is to state the conditions under which \na Package may be copied, such that the\ + \ Copyright Holder maintains \nsome semblance of artistic control over the development of\ + \ the \npackage, while giving the users of the package the right to use \nand distribute\ + \ the Package in a more-or-less customary fashion, \nplus the right to make reasonable modifications.\ + \ \n\nDefinitions: \n\n\"Package\" refers to the collection of files distributed by the\ + \ \nCopyright Holder, and derivatives of that collection of files \ncreated through textual\ + \ modification. \n\n\"Standard Version\" refers to such a Package if it has not been \n\ + modified, or has been modified in accordance with the wishes \nof the Copyright Holder.\ + \ \n\n\"Copyright Holder\" is whoever is named in the copyright or \ncopyrights for the\ + \ package. \n\n\"You\" is you, if you're thinking about copying or distributing \nthis Package.\ + \ \n\n\"Reasonable copying fee\" is whatever you can justify on the \nbasis of media cost,\ + \ duplication charges, time of people \ninvolved, and so on. (You will not be required to\ + \ justify it \nto the Copyright Holder, but only to the computing community \nat large as\ + \ a market that must bear the fee.) \n\n\"Freely Available\" means that no fee is charged\ + \ for the item \nitself, though there may be fees involved in handling the item. \nIt also\ + \ means that recipients of the item may redistribute it \nunder the same conditions they\ + \ received it. \n\n1. You may make and give away verbatim copies of the source form \nof\ + \ the Standard Version of this Package without restriction, provided \nthat you duplicate\ + \ all of the original copyright notices and \nassociated disclaimers. \n\n2. You may apply\ + \ bug fixes, portability fixes and other modifications \nderived from the Public Domain\ + \ or from the Copyright Holder. A \nPackage modified in such a way shall still be considered\ + \ the Standard \nVersion. \n\n3. You may otherwise modify your copy of this Package in any\ + \ way, \nprovided that you insert a prominent notice in each changed file \nstating how\ + \ and when you changed that file, and provided that you \ndo at least ONE of the following:\ + \ \n\na) place your modifications in the Public Domain or otherwise \nmake them Freely Available,\ + \ such as by posting said modifications \nto Usenet or an equivalent medium, or placing\ + \ the modifications \non a major archive site such as uunet.uu.net, or by allowing \nthe\ + \ Copyright Holder to include your modifications in the \nStandard Version of the Package.\ + \ \n\nb) use the modified Package only within your corporation or \norganization. \n\nc)\ + \ rename any non-standard executables so the names do not \nconflict with standard executables,\ + \ which must also be provided, \nand provide a separate manual page for each non-standard\ + \ \nexecutable that clearly documents how it differs from the \nStandard Version. \n\nd)\ + \ make other distribution arrangements with the Copyright \nHolder. \n\n4. You may distribute\ + \ the programs of this Package in object code \nor executable form, provided that you do\ + \ at least ONE of the \nfollowing: \n\na) distribute a Standard Version of the executables\ + \ and library \nfiles, together with instructions (in the manual page or \nequivalent) on\ + \ where to get the Standard Version. \n\nb) accompany the distribution with the machine-readable\ + \ source \nof the Package with your modifications. \n\nc) accompany any non-standard executables\ + \ with their corresponding \nStandard Version executables, giving the non-standard executables\ + \ \nnon-standard names, and clearly documenting the differences in \nmanual pages (or equivalent),\ + \ together with instructions on \nwhere to get the Standard Version. \n\nd) make other distribution\ + \ arrangements with the Copyright \nHolder. \n\n5. You may charge a reasonable copying fee\ + \ for any distribution of \nthis Package. You may charge any fee you choose for support\ + \ of \nthis Package. You may not charge a fee for this Package itself. \nHowever, you may\ + \ distribute this Package in aggregate with other \n(possibly commercial) programs as part\ + \ of a larger (possibly \ncommercial) software distribution provided that you do not advertise\ + \ \nthis Package as a product of your own. \n\n6. The scripts and library files supplied\ + \ as input to or produced \nas output from the programs of this Package do not automatically\ + \ \nfall under the copyright of this Package, but belong to whomever \ngenerated them, and\ + \ may be sold commercially, and may be aggregated \nwith this Package. \n\n7. C subroutines\ + \ supplied by you and linked into this Package in \norder to emulate subroutines and variables\ + \ of the language defined \nby this Package shall not be considered part of this Package,\ + \ but \nare the equivalent of input as in Paragraph 6, provided these \nsubroutines do not\ + \ change the language in any way that would cause \nit to fail the regression tests for\ + \ the language. \n\n8. The name of the Copyright Holder may not be used to endorse or \n\ + promote products derived from this software without specific prior \nwritten permission.\ + \ \n\n9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR \nIMPLIED WARRANTIES,\ + \ INCLUDING, WITHOUT LIMITATION, THE IMPLIED \nWARRANTIES OF MERCHANTIBILITY AND FITNESS\ + \ FOR A PARTICULAR PURPOSE. \n\nThe End" json: openldap-1.2.json - yml: openldap-1.2.yml + yaml: openldap-1.2.yml html: openldap-1.2.html - text: openldap-1.2.LICENSE + license: openldap-1.2.LICENSE - license_key: openldap-1.3 + category: Copyleft Limited spdx_license_key: OLDAP-1.3 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "The OpenLDAP Public License \n\nVersion 1.3, 17 January 1999 \nCopyright 1998-1999,\ + \ The OpenLDAP Foundation. \nAll Rights Reserved. \n\nNote: \nThis license is derived from\ + \ the \"Artistic License\" as distributed \nwith the Perl Programming Language. As significant\ + \ differences \nexist, the complete license should be read. \n\nPREAMBLE \n\nThe intent\ + \ of this document is to state the conditions under which \na Package may be copied, such\ + \ that the Copyright Holder maintains \nsome semblance of artistic control over the development\ + \ of the \npackage, while giving the users of the package the right to use \nand distribute\ + \ the Package in a more-or-less customary fashion, \nplus the right to make reasonable modifications.\ + \ \n\nDefinitions: \n\n\"Package\" refers to the collection of files distributed by the\ + \ \nCopyright Holder, and derivatives of that collection of files \ncreated through textual\ + \ modification. \n\n\"Standard Version\" refers to such a Package if it has not been \n\ + modified, or has been modified in accordance with the wishes \nof the Copyright Holder.\ + \ \n\n\"Copyright Holder\" is whoever is named in the copyright or \ncopyrights for the\ + \ package. \n\n\"You\" is you, if you're thinking about copying or distributing \nthis Package.\ + \ \n\n\"Reasonable copying fee\" is whatever you can justify on the \nbasis of media cost,\ + \ duplication charges, time of people \ninvolved, and so on. (You will not be required to\ + \ justify it \nto the Copyright Holder, but only to the computing community \nat large as\ + \ a market that must bear the fee.) \n\n\"Freely Available\" means that no fee is charged\ + \ for the item \nitself, though there may be fees involved in handling the item. \nIt also\ + \ means that recipients of the item may redistribute it \nunder the same conditions they\ + \ received it. \n\n1. You may make and give away verbatim copies of the source form \nof\ + \ the Standard Version of this Package without restriction, provided \nthat you duplicate\ + \ all of the original copyright notices and \nassociated disclaimers. \n\n2. You may apply\ + \ bug fixes, portability fixes and other modifications \nderived from the Public Domain\ + \ or from the Copyright Holder. A \nPackage modified in such a way shall still be considered\ + \ the Standard \nVersion. \n\n3. You may otherwise modify your copy of this Package in any\ + \ way, \nprovided that you insert a prominent notice in each changed file \nstating how\ + \ and when you changed that file, and provided that you \ndo at least ONE of the following:\ + \ \n\na) place your modifications in the Public Domain or otherwise \nmake them Freely Available,\ + \ such as by posting said modifications \nto Usenet or an equivalent medium, or placing\ + \ the modifications \non a major archive site such as uunet.uu.net, or by allowing \nthe\ + \ Copyright Holder to include your modifications in the \nStandard Version of the Package.\ + \ \n\nb) use the modified Package only within your corporation or \norganization. \n\nc)\ + \ rename any non-standard executables so the names do not \nconflict with standard executables,\ + \ which must also be provided, \nand provide a separate manual page for each non-standard\ + \ \nexecutable that clearly documents how it differs from the \nStandard Version. \n\nd)\ + \ make other distribution arrangements with the Copyright \nHolder. \n\n4. You may distribute\ + \ the programs of this Package in object code \nor executable form, provided that you do\ + \ at least ONE of the \nfollowing: \n\na) distribute a Standard Version of the executables\ + \ and library \nfiles, together with instructions (in the manual page or \nequivalent) on\ + \ where to get the Standard Version. \n\nb) accompany the distribution with the machine-readable\ + \ source \nof the Package with your modifications. \n\nc) accompany any non-standard executables\ + \ with their corresponding \nStandard Version executables, giving the non-standard executables\ + \ \nnon-standard names, and clearly documenting the differences in \nmanual pages (or equivalent),\ + \ together with instructions on \nwhere to get the Standard Version. \n\nd) make other distribution\ + \ arrangements with the Copyright \nHolder. \n\n5. You may charge a reasonable copying fee\ + \ for any distribution of \nthis Package. You may charge any fee you choose for support\ + \ of \nthis Package. You may not charge a fee for this Package itself. \nHowever, you may\ + \ distribute this Package in aggregate with other \n(possibly commercial) programs as part\ + \ of a larger (possibly \ncommercial) software distribution provided that you do not advertise\ + \ \nthis Package as a product of your own. \n\n6. The scripts and library files supplied\ + \ as input to or produced \nas output from the programs of this Package do not automatically\ + \ \nfall under the copyright of this Package, but belong to whomever \ngenerated them, and\ + \ may be sold commercially, and may be aggregated \nwith this Package. \n\n7. C subroutines\ + \ supplied by you and linked into this Package in \norder to emulate subroutines and variables\ + \ defined by this Package \nshall not be considered part of this Package, but are the equivalent\ + \ \nof input as in Paragraph 6, provided these subroutines do not change \nthe behavior\ + \ of the Package in any way that would cause it to fail \nthe regression tests for the Package.\ + \ \n\n8. Software supplied by you and linked with this Package in order \nto use subroutines\ + \ and variables defined by this Package shall not \nbe considered part of this Package and\ + \ do not automatically fall \nunder the copyright of this Package, and the executables produced\ + \ \nby linking your software with this Package may be used and \nredistributed without restriction\ + \ and may be sold commercially. \n\n9. The name of the Copyright Holder may not be used\ + \ to endorse or \npromote products derived from this software without specific prior \n\ + written permission. \n\n10. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\ + \ \nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED \nWARRANTIES OF MERCHANTIBILITY\ + \ AND FITNESS FOR A PARTICULAR PURPOSE. \n\nThe End" json: openldap-1.3.json - yml: openldap-1.3.yml + yaml: openldap-1.3.yml html: openldap-1.3.html - text: openldap-1.3.LICENSE + license: openldap-1.3.LICENSE - license_key: openldap-1.4 + category: Copyleft Limited spdx_license_key: OLDAP-1.4 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "The OpenLDAP Public License \n\nVersion 1.4, 18 January 1999 \nCopyright 1998-1999,\ + \ The OpenLDAP Foundation. \nAll Rights Reserved. \n\nNote: \nThis license is derived from\ + \ the \"Artistic License\" as distributed \nwith the Perl Programming Language. As significant\ + \ differences \nexist, the complete license should be read. \n\nPREAMBLE \n\nThe intent\ + \ of this document is to state the conditions under which \na Package may be copied, such\ + \ that the Copyright Holder maintains \nsome semblance of artistic control over the development\ + \ of the \npackage, while giving the users of the package the right to use \nand distribute\ + \ the Package in a more-or-less customary fashion, \nplus the right to make reasonable modifications.\ + \ \n\nDefinitions: \n\n\"Package\" refers to the collection of files distributed by the\ + \ \nCopyright Holder, and derivatives of that collection of files \ncreated through textual\ + \ modification. \n\n\"Standard Version\" refers to such a Package if it has not been \n\ + modified, or has been modified in accordance with the wishes \nof the Copyright Holder.\ + \ \n\n\"Copyright Holder\" is whoever is named in the copyright or \ncopyrights for the\ + \ package. \n\n\"You\" is you, if you're thinking about copying or distributing \nthis Package.\ + \ \n\n\"Reasonable copying fee\" is whatever you can justify on the \nbasis of media cost,\ + \ duplication charges, time of people \ninvolved, and so on. (You will not be required to\ + \ justify it \nto the Copyright Holder, but only to the computing community \nat large as\ + \ a market that must bear the fee.) \n\n\"Freely Available\" means that no fee is charged\ + \ for the item \nitself, though there may be fees involved in handling the item. \nIt also\ + \ means that recipients of the item may redistribute it \nunder the same conditions they\ + \ received it. \n\n1. You may make and give away verbatim copies of the source form \nof\ + \ the Standard Version of this Package without restriction, provided \nthat you duplicate\ + \ all of the original copyright notices and \nassociated disclaimers. \n\n2. You may apply\ + \ bug fixes, portability fixes and other modifications \nderived from the Public Domain\ + \ or from the Copyright Holder. A \nPackage modified in such a way shall still be considered\ + \ the Standard \nVersion. \n\n3. You may otherwise modify your copy of this Package in any\ + \ way, \nprovided that you insert a prominent notice in each changed file \nstating how\ + \ and when you changed that file, and provided that you \ndo at least ONE of the following:\ + \ \n\na) place your modifications in the Public Domain or otherwise \nmake them Freely Available,\ + \ such as by posting said modifications \nto Usenet or an equivalent medium, or placing\ + \ the modifications \non a major archive site such as uunet.uu.net, or by allowing \nthe\ + \ Copyright Holder to include your modifications in the \nStandard Version of the Package.\ + \ \n\nb) use the modified Package only within your corporation or \norganization. \n\nc)\ + \ rename any non-standard executables so the names do not \nconflict with standard executables,\ + \ which must also be provided, \nand provide a separate manual page for each non-standard\ + \ \nexecutable that clearly documents how it differs from the \nStandard Version. \n\nd)\ + \ make other distribution arrangements with the Copyright \nHolder. \n\n4. You may distribute\ + \ the programs of this Package in object code \nor executable form, provided that you do\ + \ at least ONE of the \nfollowing: \n\na) distribute a Standard Version of the executables\ + \ and library \nfiles, together with instructions (in the manual page or \nequivalent) on\ + \ where to get the Standard Version. \n\nb) accompany the distribution with the machine-readable\ + \ source \nof the Package with your modifications. \n\nc) accompany any non-standard executables\ + \ with their corresponding \nStandard Version executables, giving the non-standard executables\ + \ \nnon-standard names, and clearly documenting the differences in \nmanual pages (or equivalent),\ + \ together with instructions on \nwhere to get the Standard Version. \n\nd) make other distribution\ + \ arrangements with the Copyright \nHolder. \n\n5. You may charge a reasonable copying fee\ + \ for any distribution of \nthis Package. You may charge any fee you choose for support\ + \ of \nthis Package. You may not charge a fee for this Package itself. \nHowever, you may\ + \ distribute this Package in aggregate with other \n(possibly commercial) programs as part\ + \ of a larger (possibly \ncommercial) software distribution provided that you do not advertise\ + \ \nthis Package as a product of your own. \n\n6. The scripts and library files supplied\ + \ as input to or produced \nas output from the programs of this Package do not automatically\ + \ \nfall under the copyright of this Package, but belong to whomever \ngenerated them, and\ + \ may be sold commercially, and may be aggregated \nwith this Package. \n\n7. C subroutines\ + \ supplied by you and linked into this Package in \norder to emulate subroutines and variables\ + \ defined by this Package \nshall not be considered part of this Package, but are the equivalent\ + \ \nof input as in Paragraph 6, provided these subroutines do not change \nthe behavior\ + \ of the Package in any way that would cause it to fail \nthe regression tests for the Package.\ + \ \n\n8. Software supplied by you and linked with this Package in order \nto use subroutines\ + \ and variables defined by this Package shall not \nbe considered part of this Package and\ + \ do not automatically fall \nunder the copyright of this Package. Executables produced\ + \ \nby linking your software with this Package may be used and \nredistributed without restriction\ + \ and may be sold commercially \nso long as the primary function of your software is different\ + \ \nthan the package itself. \n\n9. The name of the Copyright Holder may not be used to\ + \ endorse or \npromote products derived from this software without specific prior \nwritten\ + \ permission. \n\n10. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR \nIMPLIED\ + \ WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED \nWARRANTIES OF MERCHANTIBILITY\ + \ AND FITNESS FOR A PARTICULAR PURPOSE. \n\nThe End" json: openldap-1.4.json - yml: openldap-1.4.yml + yaml: openldap-1.4.yml html: openldap-1.4.html - text: openldap-1.4.LICENSE + license: openldap-1.4.LICENSE - license_key: openldap-2.0 + category: Permissive spdx_license_key: OLDAP-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The OpenLDAP Public License \n\nVersion 2.0, 7 June 1999 \nCopyright 1999, The OpenLDAP\ + \ Foundation, Redwood City, California, USA. \nAll Rights Reserved. \n\nRedistribution and\ + \ use of this software and associated documentation \n(\"Software\"), with or without modification,\ + \ are permitted provided \nthat the following conditions are met: \n\n1. Redistributions\ + \ of source code must retain copyright \nstatements and notices. Redistributions must also\ + \ contain a \ncopy of this document. \n\n2. Redistributions in binary form must reproduce\ + \ the \nabove copyright notice, this list of conditions and the \nfollowing disclaimer in\ + \ the documentation and/or other \nmaterials provided with the distribution. \n\n3. The\ + \ name \"OpenLDAP\" must not be used to endorse or promote \nproducts derived from this\ + \ Software without prior written \npermission of the OpenLDAP Foundation. For written permission,\ + \ \nplease contact foundation@openldap.org. \n\n4. Products derived from this Software may\ + \ not be called \"OpenLDAP\" \nnor may \"OpenLDAP\" appear in their names without prior\ + \ written \npermission of the OpenLDAP Foundation. OpenLDAP is a registered \ntrademark\ + \ of the OpenLDAP Foundation. \n\n5. Due credit should be given to the OpenLDAP Project\ + \ \n(http://www.openldap.org/). \n\nTHIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION\ + \ AND CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT \n\ + NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR\ + \ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP FOUNDATION OR ITS CONTRIBUTORS\ + \ BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\ + \ DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \nSERVICES;\ + \ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER CAUSED AND ON ANY THEORY\ + \ OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\ + \ OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED \nOF\ + \ THE POSSIBILITY OF SUCH DAMAGE." json: openldap-2.0.json - yml: openldap-2.0.yml + yaml: openldap-2.0.yml html: openldap-2.0.html - text: openldap-2.0.LICENSE + license: openldap-2.0.LICENSE - license_key: openldap-2.0.1 + category: Permissive spdx_license_key: OLDAP-2.0.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The OpenLDAP Public License \n\nVersion 2.0.1, 21 December 1999 \nCopyright 1999, The\ + \ OpenLDAP Foundation, Redwood City, California, USA. \nAll Rights Reserved. \n\nRedistribution\ + \ and use of this software and associated documentation \n(\"Software\"), with or without\ + \ modification, are permitted provided \nthat the following conditions are met: \n\n1. Redistributions\ + \ of source code must retain copyright \nstatements and notices. Redistributions must also\ + \ contain a \ncopy of this document. \n\n2. Redistributions in binary form must reproduce\ + \ the \nabove copyright notice, this list of conditions and the \nfollowing disclaimer in\ + \ the documentation and/or other \nmaterials provided with the distribution. \n\n3. The\ + \ name \"OpenLDAP\" must not be used to endorse or promote \nproducts derived from this\ + \ Software without prior written \npermission of the OpenLDAP Foundation. For written permission,\ + \ \nplease contact foundation@openldap.org. \n\n4. Products derived from this Software may\ + \ not be called \"OpenLDAP\" \nnor may \"OpenLDAP\" appear in their names without prior\ + \ written \npermission of the OpenLDAP Foundation. OpenLDAP is a trademark \nof the OpenLDAP\ + \ Foundation. \n\n5. Due credit should be given to the OpenLDAP Project \n(http://www.openldap.org/).\ + \ \n\nTHIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS \n``AS IS''\ + \ AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT \nNOT LIMITED TO, THE IMPLIED\ + \ WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN\ + \ NO EVENT SHALL \nTHE OPENLDAP FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\ + \ \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT\ + \ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS;\ + \ OR BUSINESS INTERRUPTION) \nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\ + \ CONTRACT, \nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN\ + \ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED \nOF THE POSSIBILITY OF SUCH\ + \ DAMAGE." json: openldap-2.0.1.json - yml: openldap-2.0.1.yml + yaml: openldap-2.0.1.yml html: openldap-2.0.1.html - text: openldap-2.0.1.LICENSE + license: openldap-2.0.1.LICENSE - license_key: openldap-2.1 + category: Permissive spdx_license_key: OLDAP-2.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The OpenLDAP Public License \n\nVersion 2.1, 29 February 2000 \nCopyright 1999-2000,\ + \ The OpenLDAP Foundation, Redwood City, California, USA. \nAll Rights Reserved. \n\nRedistribution\ + \ and use of this software and associated documentation \n(\"Software\"), with or without\ + \ modification, are permitted provided \nthat the following conditions are met: \n\n1. Redistributions\ + \ of source code must retain copyright \nstatements and notices. Redistributions must also\ + \ contain a \ncopy of this document. \n\n2. Redistributions in binary form must reproduce\ + \ the \nabove copyright notice, this list of conditions and the \nfollowing disclaimer in\ + \ the documentation and/or other \nmaterials provided with the distribution. \n\n3. The\ + \ name \"OpenLDAP\" must not be used to endorse or promote \nproducts derived from this\ + \ Software without prior written \npermission of the OpenLDAP Foundation. For written permission,\ + \ \nplease contact foundation@openldap.org. \n\n4. Products derived from this Software may\ + \ not be called \"OpenLDAP\" \nnor may \"OpenLDAP\" appear in their names without prior\ + \ written \npermission of the OpenLDAP Foundation. OpenLDAP is a trademark \nof the OpenLDAP\ + \ Foundation. \n\n5. Due credit should be given to the OpenLDAP Project \n(http://www.openldap.org/).\ + \ \n\n6. The OpenLDAP Foundation may revise this license from time to \ntime. Each revision\ + \ is distinguished by a version number. You \nmay use the Software under terms of this license\ + \ revision or under \nthe terms of any subsequent license revision. \n\nTHIS SOFTWARE IS\ + \ PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED OR\ + \ IMPLIED WARRANTIES, INCLUDING, BUT \nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND \nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP\ + \ FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL,\ + \ EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\ + \ GOODS OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER\ + \ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY, OR TORT\ + \ (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\ + \ EVEN IF ADVISED \nOF THE POSSIBILITY OF SUCH DAMAGE." json: openldap-2.1.json - yml: openldap-2.1.yml + yaml: openldap-2.1.yml html: openldap-2.1.html - text: openldap-2.1.LICENSE + license: openldap-2.1.LICENSE - license_key: openldap-2.2 + category: Permissive spdx_license_key: OLDAP-2.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The OpenLDAP Public License \nVersion 2.2, 1 March 2000 \n\nRedistribution and use\ + \ of this software and associated documentation \n(\"Software\"), with or without modification,\ + \ are permitted provided \nthat the following conditions are met: \n\n1. Redistributions\ + \ of source code must retain copyright statements \nand notices. Redistributions must also\ + \ contain a copy of this \ndocument. \n\n2. Redistributions in binary form must reproduce\ + \ the above copyright \nnotice, this list of conditions and the following disclaimer in\ + \ \nthe documentation and/or other materials provided with the \ndistribution. \n\n3. The\ + \ name \"OpenLDAP\" must not be used to endorse or promote \nproducts derived from this\ + \ Software without prior written permission \nof the OpenLDAP Foundation. \n\n4. Products\ + \ derived from this Software may not be called \"OpenLDAP\" \nnor may \"OpenLDAP\" appear\ + \ in their names without prior written \npermission of the OpenLDAP Foundation. \n\n5. Due\ + \ credit should be given to the OpenLDAP Project \n(http://www.openldap.org/). \n\n6. The\ + \ OpenLDAP Foundation may revise this license from time to \ntime. Each revision is distinguished\ + \ by a version number. You \nmay use the Software under terms of this license revision or\ + \ under \nthe terms of any subsequent the license. \n\nTHIS SOFTWARE IS PROVIDED BY THE\ + \ OPENLDAP FOUNDATION AND CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\ + \ INCLUDING, BUT \nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS\ + \ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP FOUNDATION OR\ + \ ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\ + \ OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\ + \ OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER CAUSED\ + \ AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY, OR TORT (INCLUDING\ + \ NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\ + \ ADVISED \nOF THE POSSIBILITY OF SUCH DAMAGE. \n\nOpenLDAP is a trademark of the OpenLDAP\ + \ Foundation. \n\nCopyright 1999-2000, The OpenLDAP Foundation, Redwood City, \nCalifornia,\ + \ USA. All Rights Reserved. Permission to copy and \ndistributed verbatim copies of this\ + \ document is granted." json: openldap-2.2.json - yml: openldap-2.2.yml + yaml: openldap-2.2.yml html: openldap-2.2.html - text: openldap-2.2.LICENSE + license: openldap-2.2.LICENSE - license_key: openldap-2.2.1 + category: Permissive spdx_license_key: OLDAP-2.2.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The OpenLDAP Public License \nVersion 2.2.1, 1 March 2000 \n\nRedistribution and use\ + \ of this software and associated documentation \n(\"Software\"), with or without modification,\ + \ are permitted provided \nthat the following conditions are met: \n\n1. Redistributions\ + \ of source code must retain copyright statements \nand notices. Redistributions must also\ + \ contain a copy of this \ndocument. \n\n2. Redistributions in binary form must reproduce\ + \ the above copyright \nnotice, this list of conditions and the following disclaimer in\ + \ \nthe documentation and/or other materials provided with the \ndistribution. \n\n3. The\ + \ name \"OpenLDAP\" must not be used to endorse or promote \nproducts derived from this\ + \ Software without prior written permission \nof the OpenLDAP Foundation. \n\n4. Products\ + \ derived from this Software may not be called \"OpenLDAP\" \nnor may \"OpenLDAP\" appear\ + \ in their names without prior written \npermission of the OpenLDAP Foundation. \n\n5. Due\ + \ credit should be given to the OpenLDAP Project \n(http://www.openldap.org/). \n\n6. The\ + \ OpenLDAP Foundation may revise this license from time to \ntime. Each revision is distinguished\ + \ by a version number. You \nmay use the Software under terms of this license revision or\ + \ under \nthe terms of any subsequent revision of the license. \n\nTHIS SOFTWARE IS PROVIDED\ + \ BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\ + \ INCLUDING, BUT \nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS\ + \ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP FOUNDATION OR\ + \ ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\ + \ OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\ + \ OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER CAUSED\ + \ AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY, OR TORT (INCLUDING\ + \ NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\ + \ ADVISED \nOF THE POSSIBILITY OF SUCH DAMAGE. \n\nOpenLDAP is a trademark of the OpenLDAP\ + \ Foundation. \n\nCopyright 1999-2000 The OpenLDAP Foundation, Redwood City, \nCalifornia,\ + \ USA. All Rights Reserved. Permission to copy and \ndistributed verbatim copies of this\ + \ document is granted." json: openldap-2.2.1.json - yml: openldap-2.2.1.yml + yaml: openldap-2.2.1.yml html: openldap-2.2.1.html - text: openldap-2.2.1.LICENSE + license: openldap-2.2.1.LICENSE - license_key: openldap-2.2.2 + category: Permissive spdx_license_key: OLDAP-2.2.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The OpenLDAP Public License \nVersion 2.2.2, 28 July 2000 \n\nRedistribution and use\ + \ of this software and associated documentation \n(\"Software\"), with or without modification,\ + \ are permitted provided \nthat the following conditions are met: \n\n1. Redistributions\ + \ of source code must retain copyright statements \nand notices. \n\n2. Redistributions\ + \ in binary form must reproduce applicable copyright \nstatements and notices, this list\ + \ of conditions, and the following \ndisclaimer in the documentation and/or other materials\ + \ provided \nwith the distribution. \n\n3. Redistributions must contain a verbatim copy\ + \ of this document. \n\n4. The name \"OpenLDAP\" must not be used to endorse or promote\ + \ \nproducts derived from this Software without prior written permission \nof the OpenLDAP\ + \ Foundation. \n\n5. Products derived from this Software may not be called \"OpenLDAP\"\ + \ \nnor may \"OpenLDAP\" appear in their names without prior written \npermission of the\ + \ OpenLDAP Foundation. \n\n6. Due credit should be given to the OpenLDAP Project \n(http://www.openldap.org/).\ + \ \n\n7. The OpenLDAP Foundation may revise this license from time to \ntime. Each revision\ + \ is distinguished by a version number. You \nmay use the Software under terms of this license\ + \ revision or under \nthe terms of any subsequent revision of the license. \n\nTHIS SOFTWARE\ + \ IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED\ + \ OR IMPLIED WARRANTIES, INCLUDING, BUT \nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND \nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP\ + \ FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL,\ + \ EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\ + \ GOODS OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER\ + \ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY, OR TORT\ + \ (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\ + \ EVEN IF ADVISED \nOF THE POSSIBILITY OF SUCH DAMAGE. \n\nOpenLDAP is a trademark of the\ + \ OpenLDAP Foundation. \n\nCopyright 1999-2000 The OpenLDAP Foundation, Redwood City, \n\ + California, USA. All Rights Reserved. Permission to copy and \ndistributed verbatim copies\ + \ of this document is granted." json: openldap-2.2.2.json - yml: openldap-2.2.2.yml + yaml: openldap-2.2.2.yml html: openldap-2.2.2.html - text: openldap-2.2.2.LICENSE + license: openldap-2.2.2.LICENSE - license_key: openldap-2.3 + category: Permissive spdx_license_key: OLDAP-2.3 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The OpenLDAP Public License \nVersion 2.3, 28 July 2000 \n\nRedistribution and use\ + \ of this software and associated documentation \n(\"Software\"), with or without modification,\ + \ are permitted provided \nthat the following conditions are met: \n\n1. Redistributions\ + \ of source code must retain copyright statements \nand notices. \n\n2. Redistributions\ + \ in binary form must reproduce applicable copyright \nstatements and notices, this list\ + \ of conditions, and the following \ndisclaimer in the documentation and/or other materials\ + \ provided \nwith the distribution. \n\n3. Redistributions must contain a verbatim copy\ + \ of this document. \n\n4. The name \"OpenLDAP\" must not be used to endorse or promote\ + \ \nproducts derived from this Software without prior written permission \nof the OpenLDAP\ + \ Foundation. \n\n5. Products derived from this Software may not be called \"OpenLDAP\"\ + \ \nnor may \"OpenLDAP\" appear in their names without prior written \npermission of the\ + \ OpenLDAP Foundation. \n\n6. Due credit should be given to the OpenLDAP Project \n(http://www.openldap.org/).\ + \ \n\n7. The OpenLDAP Foundation may revise this license from time to \ntime. Each revision\ + \ is distinguished by a version number. You \nmay use the Software under terms of this license\ + \ revision or under \nthe terms of any subsequent revision of the license. \n\nTHIS SOFTWARE\ + \ IS PROVIDED BY THE OPENLDAP FOUNDATION AND CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED\ + \ OR IMPLIED WARRANTIES, INCLUDING, BUT \nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND \nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP\ + \ FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL,\ + \ EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\ + \ GOODS OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER\ + \ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY, OR TORT\ + \ (INCLUDING NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\ + \ EVEN IF ADVISED \nOF THE POSSIBILITY OF SUCH DAMAGE. \n\nOpenLDAP is a trademark of the\ + \ OpenLDAP Foundation. \n\nCopyright 1999-2000 The OpenLDAP Foundation, Redwood City, \n\ + California, USA. All Rights Reserved. Permission to copy and \ndistributed verbatim copies\ + \ of this document is granted." json: openldap-2.3.json - yml: openldap-2.3.yml + yaml: openldap-2.3.yml html: openldap-2.3.html - text: openldap-2.3.LICENSE + license: openldap-2.3.LICENSE - license_key: openldap-2.4 + category: Permissive spdx_license_key: OLDAP-2.4 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The OpenLDAP Public License \nVersion 2.4, 8 December 2000 \n\nRedistribution and use\ + \ of this software and associated documentation \n(\"Software\"), with or without modification,\ + \ are permitted provided \nthat the following conditions are met: \n\n1. Redistributions\ + \ of source code must retain copyright statements \nand notices. \n\n2. Redistributions\ + \ in binary form must reproduce applicable copyright \nstatements and notices, this list\ + \ of conditions, and the following \ndisclaimer in the documentation and/or other materials\ + \ provided \nwith the distribution. \n\n3. Redistributions must contain a verbatim copy\ + \ of this document. \n\n4. The names and trademarks of the authors and copyright holders\ + \ \nmust not be used in advertising or otherwise to promote the sale, \nuse or other dealing\ + \ in this Software without specific, written \nprior permission. \n\n5. Due credit should\ + \ be given to the OpenLDAP Project. \n\n6. The OpenLDAP Foundation may revise this license\ + \ from time to \ntime. Each revision is distinguished by a version number. You \nmay use\ + \ the Software under terms of this license revision or under \nthe terms of any subsequent\ + \ revision of the license. \n\nTHIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND\ + \ CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT \nNOT\ + \ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR PURPOSE\ + \ ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP FOUNDATION OR ITS CONTRIBUTORS BE LIABLE\ + \ FOR ANY \nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL \nDAMAGES\ + \ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE \nGOODS OR SERVICES; LOSS OF\ + \ USE, DATA, OR PROFITS; OR BUSINESS \nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\ + \ LIABILITY, WHETHER \nIN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR \n\ + OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN \nIF ADVISED OF THE\ + \ POSSIBILITY OF SUCH DAMAGE. \n\nOpenLDAP is a trademark of the OpenLDAP Foundation. \n\ + \nCopyright 1999-2000 The OpenLDAP Foundation, Redwood City, \nCalifornia, USA. All Rights\ + \ Reserved. Permission to copy and \ndistributed verbatim copies of this document is granted." json: openldap-2.4.json - yml: openldap-2.4.yml + yaml: openldap-2.4.yml html: openldap-2.4.html - text: openldap-2.4.LICENSE + license: openldap-2.4.LICENSE - license_key: openldap-2.5 + category: Permissive spdx_license_key: OLDAP-2.5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The OpenLDAP Public License \nVersion 2.5, 11 May 2001 \n\nRedistribution and use of\ + \ this software and associated documentation \n(\"Software\"), with or without modification,\ + \ are permitted provided \nthat the following conditions are met: \n\n1. Redistributions\ + \ of source code must retain copyright statements \nand notices. \n\n2. Redistributions\ + \ in binary form must reproduce applicable copyright \nstatements and notices, this list\ + \ of conditions, and the following \ndisclaimer in the documentation and/or other materials\ + \ provided \nwith the distribution. \n\n3. Redistributions must contain a verbatim copy\ + \ of this document. \n\n4. The names and trademarks of the authors and copyright holders\ + \ \nmust not be used in advertising or otherwise to promote the sale, \nuse or other dealing\ + \ in this Software without specific, written \nprior permission. \n\n5. Due credit should\ + \ be given to the authors of the Software. \n\n6. The OpenLDAP Foundation may revise this\ + \ license from time to \ntime. Each revision is distinguished by a version number. You \n\ + may use the Software under terms of this license revision or under \nthe terms of any subsequent\ + \ revision of the license. \n\nTHIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND\ + \ CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT \nNOT\ + \ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS FOR A PARTICULAR PURPOSE\ + \ ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE\ + \ AUTHOR(S) OR \nOWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL,\ + \ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, \nBUT NOT LIMITED TO, PROCUREMENT\ + \ OF SUBSTITUTE GOODS OR SERVICES; \nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\ + \ HOWEVER \nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT \nLIABILITY,\ + \ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN \nANY WAY OUT OF THE USE OF THIS\ + \ SOFTWARE, EVEN IF ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE. \n\nOpenLDAP is a trademark\ + \ of the OpenLDAP Foundation. \n\nCopyright 1999-2001 The OpenLDAP Foundation, Redwood City,\ + \ \nCalifornia, USA. All Rights Reserved. Permission to copy and \ndistributed verbatim\ + \ copies of this document is granted." json: openldap-2.5.json - yml: openldap-2.5.yml + yaml: openldap-2.5.yml html: openldap-2.5.html - text: openldap-2.5.LICENSE + license: openldap-2.5.LICENSE - license_key: openldap-2.6 + category: Permissive spdx_license_key: OLDAP-2.6 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The OpenLDAP Public License \nVersion 2.6, 14 June 2001 \n\nRedistribution and use\ + \ of this software and associated documentation \n(\"Software\"), with or without modification,\ + \ are permitted provided \nthat the following conditions are met: \n\n1. Redistributions\ + \ of source code must retain copyright statements \nand notices. \n\n2. Redistributions\ + \ in binary form must reproduce applicable copyright \nstatements and notices, this list\ + \ of conditions, and the following \ndisclaimer in the documentation and/or other materials\ + \ provided \nwith the distribution. \n\n3. Redistributions must contain a verbatim copy\ + \ of this document. \n\n4. The names and trademarks of the authors and copyright holders\ + \ \nmust not be used in advertising or otherwise to promote the sale, \nuse or other dealing\ + \ in this Software without specific, written \nprior permission. \n\n5. The OpenLDAP Foundation\ + \ may revise this license from time to \ntime. Each revision is distinguished by a version\ + \ number. You \nmay use the Software under terms of this license revision or under \nthe\ + \ terms of any subsequent revision of the license. \n\nTHIS SOFTWARE IS PROVIDED BY THE\ + \ OPENLDAP FOUNDATION AND CONTRIBUTORS \n``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\ + \ INCLUDING, BUT \nNOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS\ + \ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \nTHE OPENLDAP FOUNDATION,\ + \ ITS CONTRIBUTORS, OR THE AUTHOR(S) OR \nOWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT,\ + \ INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, \nBUT\ + \ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; \nLOSS OF USE, DATA, OR PROFITS;\ + \ OR BUSINESS INTERRUPTION) HOWEVER \nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\ + \ CONTRACT, STRICT \nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN \n\ + ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE.\ + \ \n\nOpenLDAP is a trademark of the OpenLDAP Foundation. \n\nCopyright 1999-2001 The OpenLDAP\ + \ Foundation, Redwood City, \nCalifornia, USA. All Rights Reserved. Permission to copy and\ + \ \ndistributed verbatim copies of this document is granted." json: openldap-2.6.json - yml: openldap-2.6.yml + yaml: openldap-2.6.yml html: openldap-2.6.html - text: openldap-2.6.LICENSE + license: openldap-2.6.LICENSE - license_key: openldap-2.7 + category: Permissive spdx_license_key: OLDAP-2.7 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The OpenLDAP Public License \nVersion 2.7, 7 September 2001 \n\nRedistribution and\ + \ use of this software and associated documentation \n(\"Software\"), with or without modification,\ + \ are permitted provided \nthat the following conditions are met: \n\n1. Redistributions\ + \ of source code must retain copyright statements \nand notices, \n\n2. Redistributions\ + \ in binary form must reproduce applicable copyright \nstatements and notices, this list\ + \ of conditions, and the following \ndisclaimer in the documentation and/or other materials\ + \ provided \nwith the distribution, and \n\n3. Redistributions must contain a verbatim copy\ + \ of this document. \n\nThe OpenLDAP Foundation may revise this license from time to time.\ + \ \nEach revision is distinguished by a version number. You may use \nthis Software under\ + \ terms of this license revision or under the \nterms of any subsequent revision of the\ + \ license. \n\nTHIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS \nCONTRIBUTORS\ + \ ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, \nINCLUDING, BUT NOT LIMITED TO, THE\ + \ IMPLIED WARRANTIES OF MERCHANTABILITY \nAND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\ + \ IN NO EVENT \nSHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) \nOR OWNER(S)\ + \ OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY,\ + \ OR CONSEQUENTIAL DAMAGES (INCLUDING, \nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\ + \ OR SERVICES; \nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER \nCAUSED\ + \ AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT \nLIABILITY, OR TORT (INCLUDING\ + \ NEGLIGENCE OR OTHERWISE) ARISING IN \nANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\ + \ ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE. \n\nThe names of the authors and copyright\ + \ holders must not be used in \nadvertising or otherwise to promote the sale, use or other\ + \ dealing \nin this Software without specific, written prior permission. Title \nto copyright\ + \ in this Software shall at all times remain with \ncopyright holders. \n\nOpenLDAP is a\ + \ registered trademark of the OpenLDAP Foundation. \n\nCopyright 1999-2001 The OpenLDAP\ + \ Foundation, Redwood City, \nCalifornia, USA. All Rights Reserved. Permission to copy and\ + \ \ndistribute verbatim copies of this document is granted." json: openldap-2.7.json - yml: openldap-2.7.yml + yaml: openldap-2.7.yml html: openldap-2.7.html - text: openldap-2.7.LICENSE + license: openldap-2.7.LICENSE - license_key: openldap-2.8 + category: Permissive spdx_license_key: OLDAP-2.8 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The OpenLDAP Public License + Version 2.8, 17 August 2003 + + Redistribution and use of this software and associated documentation + ("Software"), with or without modification, are permitted provided + that the following conditions are met: + + 1. Redistributions in source form must retain copyright statements + and notices, + + 2. Redistributions in binary form must reproduce applicable copyright + statements and notices, this list of conditions, and the following + disclaimer in the documentation and/or other materials provided + with the distribution, and + + 3. Redistributions must contain a verbatim copy of this document. + + The OpenLDAP Foundation may revise this license from time to time. + Each revision is distinguished by a version number. You may use + this Software under terms of this license revision or under the + terms of any subsequent revision of the license. + + THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS + CONTRIBUTORS ``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 OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) + OR OWNER(S) OF THE 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. + + The names of the authors and copyright holders must not be used in + advertising or otherwise to promote the sale, use or other dealing + in this Software without specific, written prior permission. Title + to copyright in this Software shall at all times remain with copyright + holders. + + OpenLDAP is a registered trademark of the OpenLDAP Foundation. + + Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, + California, USA. All Rights Reserved. Permission to copy and + distribute verbatim copies of this document is granted. json: openldap-2.8.json - yml: openldap-2.8.yml + yaml: openldap-2.8.yml html: openldap-2.8.html - text: openldap-2.8.LICENSE + license: openldap-2.8.LICENSE - license_key: openmap + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-openmap other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "OpenMap Software License Agreement\n ----------------------------------\n\ + \nThis Agreement sets forth the terms and conditions under which\nthe software known as\ + \ OpenMap(tm) will be licensed by BBN\nTechnologies (\"BBN\") to you (\"Licensee\"), and\ + \ by which Derivative \nWorks (as hereafter defined) of OpenMap will be licensed by you\ + \ to BBN.\n\nDefinitions:\n\n \"Derivative Work(s)\" shall mean any revision, enhancement,\n\ + \ modification, translation, abridgement, condensation or\n expansion created by Licensee\ + \ or BBN that is based upon the\n Software or a portion thereof that would be a copyright\n\ + \ infringement if prepared without the authorization of the\n copyright owners of the Software\ + \ or portion thereof.\n\n \"OpenMap\" shall mean a programmer's toolkit for building map\n\ + \ based applications as originally created by BBN, and any\n Derivative Works thereof as\ + \ created by either BBN or Licensee,\n but shall include only those Derivative Works BBN\ + \ has approved\n for inclusion into, and BBN has integrated into OpenMap.\n\n \"Standard\ + \ Version\" shall mean OpenMap, as originally created by\n BBN.\n\n \"Software\" shall mean\ + \ OpenMap and the Derivative Works created\n by Licensee and the collection of files distributed\ + \ by the\n Licensee with OpenMap, and the collection of files created\n through textual\ + \ modifications.\n\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights\ + \ for the Derivative Works.\n\n \"Licensee\" is you, only if you agree to be bound by the\ + \ terms\n and conditions set forth in this Agreement.\n\n \"Reasonable copying fee\" is\ + \ whatever you can justify on the\n basis of media cost, duplication charges, time of people\n\ + \ involved.\n\n \"Freely Available\" means that no fee is charged for the item\n itself,\ + \ though there may be fees involved in handling the item.\n It also means that recipients\ + \ of the item may redistribute it\n under the same conditions that they received it.\n\n\ + 1. BBN maintains all rights, title and interest in and to\nOpenMap, including all applicable\ + \ copyrights, trade secrets,\npatents and other intellectual rights therein. Licensee hereby\n\ + grants to BBN all right, title and interest into the compilation\nof OpenMap. Licensee\ + \ shall own all rights, title and interest\ninto the Derivative Works created by Licensee\ + \ (subject to the\ncompilation ownership by BBN).\n\n2. BBN hereby grants to Licensee a\ + \ royalty free, worldwide right\nand license to use, copy, distribute and make Derivative\ + \ Works of\nOpenMap, and sublicensing rights of any of the foregoing in\naccordance with\ + \ the terms and conditions of this Agreement,\nprovided that you duplicate all of the original\ + \ copyright notices\nand associated disclaimers.\n\n3. Licensee hereby grants to BBN a royalty\ + \ free, worldwide right\nand license to use, copy, distribute and make Derivative Works\ + \ of\nDerivative Works created by Licensee and sublicensing rights of\nany of the foregoing.\n\ + \n4. Licensee's right to create Derivative Works in the Software is\nsubject to Licensee\ + \ agreement to insert a prominent notice in\neach changed file stating how and when you\ + \ changed that file, and\nprovided that you do at least ONE of the following:\n\n a)\ + \ place your modifications in the Public Domain or otherwise\n make them Freely Available,\ + \ such as by posting said\n modifications to Usenet or an equivalent medium, or\n\ + \ placing the modifications on a major archive site and by\n providing your\ + \ modifications to the Copyright Holder.\n\n b) use the modified Package only within\ + \ your corporation or\n organization.\n\n c) rename any non-standard executables\ + \ so the names do not\n conflict with standard executables, which must also be\n \ + \ provided, and provide a separate manual page for each\n non-standard executable\ + \ that clearly documents how it\n differs from OpenMap.\n\n d) make other distribution\ + \ arrangements with the Copyright\n Holder.\n\n5. Licensee may distribute the programs\ + \ of this Software in\nobject code or executable form, provided that you do at least ONE\n\ + of the following:\n\n a) distribute an OpenMap version of the executables and\n \ + \ library files, together with instructions (in the manual\n page or equivalent)\ + \ on where to get OpenMap.\n\n b) accompany the distribution with the machine-readable\n\ + \ source code with your modifications.\n\n c) accompany any non-standard executables\ + \ with their\n corresponding OpenMap executables, giving the non-standard\n \ + \ executables non-standard names, and clearly documenting\n the differences in manual\ + \ pages (or equivalent), together\n with instructions on where to get OpenMap.\n\n\ + \ d) make other distribution arrangements with the Copyright\n Holder.\n\n6. You\ + \ may charge a reasonable copying fee for any distribution\nof this Software. You may charge\ + \ any fee you choose for support\nof this Software. You may not charge a fee for this Software\n\ + itself. However, you may distribute this Software in aggregate\nwith other (possibly commercial)\ + \ programs as part of a larger\n(possibly commercial) software distribution provided that\ + \ you do\nnot advertise this Software as a product of your own.\n\n7. The data and images\ + \ supplied as input to or produced as output\nfrom the Software do not automatically fall\ + \ under the copyright\nof this Software, but belong to whomever generated them, and may\n\ + be sold commercially, and may be aggregated with this Software.\n\n8. BBN makes no representation\ + \ about the suitability of OpenMap\nfor any purposes. BBN shall have no duty or requirement\ + \ to\ninclude any Derivative Works into OpenMap.\n\n9. Each party hereto represents and\ + \ warrants that they have the\nfull unrestricted right to grant all rights and licenses\ + \ granted\nto the other party herein.\n\n10. THIS PACKAGE IS PROVIDED \"AS IS\" WITHOUT\ + \ WARRANTIES OF ANY\nKIND, WHETHER EXPRESS OR IMPLIED, INCLUDING (BUT NOT LIMITED TO)\n\ + ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, AND\nWITHOUT ANY WARRANTIES AS TO\ + \ NONINFRINGEMENT.\n\n11. IN NO EVENT SHALL COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT,\n\ + SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER RESULTING\nFROM LOSS OF USE OF DATA\ + \ OR PROFITS, WHETHER IN AN ACTION OF\nCONTRACT, NEGLIGENCE OR OTHER TORTIOUS CONDUCT, ARISING\ + \ OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS PACKAGE.\n\n12. Without limitation\ + \ of the foregoing, You agree to commit no\nact which, directly or indirectly, would violate\ + \ any U.S. law,\nregulation, or treaty, or any other international treaty or\nagreement\ + \ to which the United States adheres or with which the\nUnited States complies, relating\ + \ to the export or re-export of\nany commodities, software, or technical data." json: openmap.json - yml: openmap.yml + yaml: openmap.yml html: openmap.html - text: openmap.LICENSE + license: openmap.LICENSE - license_key: openmarket-fastcgi + category: Permissive spdx_license_key: LicenseRef-scancode-openmarket-fastcgi other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + OpenMarket FastCGI + + This FastCGI application library source and object code (the "Software") and its documentation (the "Documentation") are copyrighted by Open Market, Inc ("Open Market"). The following terms apply to all files associated with the Software and Documentation unless explicitly disclaimed in individual files. + + Open Market permits you to use, copy, modify, distribute, and license this Software and the Documentation solely for the purpose of implementing the FastCGI specification defined by Open Market or derivative specifications publicly endorsed by Open Market and promulgated by an open standards organization and for no other 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 and Documentation may be copyrighted by their authors and need not follow the licensing terms described here, but the modified Software and Documentation must be used for the sole purpose of implementing the FastCGI specification defined by Open Market or derivative specifications publicly endorsed by Open Market and promulgated by an open standards organization and for no other purpose. If modifications to this Software and Documentation have new licensing terms, the new terms must protect Open Market's proprietary rights in the Software and Documentation to the same extent as these licensing terms and must be clearly indicated on the first page of each file where they apply. + + Open Market shall retain all right, title and interest in and to the Software and Documentation, including without limitation all patent, copyright, trade secret and other proprietary rights. + + OPEN MARKET MAKES NO EXPRESS OR IMPLIED WARRANTY WITH RESPECT TO THE SOFTWARE OR THE DOCUMENTATION, INCLUDING WITHOUT LIMITATION ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL OPEN MARKET BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY DAMAGES ARISING FROM OR RELATING TO THIS SOFTWARE OR THE DOCUMENTATION, INCLUDING, WITHOUT LIMITATION, ANY INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES OR SIMILAR DAMAGES, INCLUDING LOST PROFITS OR LOST DATA, EVEN IF OPEN MARKET HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS IS". OPEN MARKET HAS NO LIABILITY IN CONTRACT, TORT, NEGLIGENCE OR OTHERWISE ARISING OUT OF THIS SOFTWARE OR THE DOCUMENTATION. json: openmarket-fastcgi.json - yml: openmarket-fastcgi.yml + yaml: openmarket-fastcgi.yml html: openmarket-fastcgi.html - text: openmarket-fastcgi.LICENSE + license: openmarket-fastcgi.LICENSE - license_key: openmotif-exception-2.0-plus + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-openmotif-exception-2.0-plus other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + In addition, as a special exception to the GNU GPL, the copyright holders + give permission to link the code of this program with the Motif and Open + Motif libraries (or with modified versions of these that use the same + license), and distribute linked combinations including the two. You + must obey the GNU General Public License in all respects for all of + the code used other than linking with Motif/Open Motif. If you modify + this file, you may extend this exception to your version of the file, + but you are not obligated to do so. If you do not wish to do so, + delete this exception statement from your version. json: openmotif-exception-2.0-plus.json - yml: openmotif-exception-2.0-plus.yml + yaml: openmotif-exception-2.0-plus.yml html: openmotif-exception-2.0-plus.html - text: openmotif-exception-2.0-plus.LICENSE + license: openmotif-exception-2.0-plus.LICENSE - license_key: opennetcf-shared-source + category: Proprietary Free spdx_license_key: LicenseRef-scancode-opennetcf-shared-source other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + NOTICE + This license governs use of the accompanying software ("Software"), and your use of the Software constitutes acceptance of this license. + Subject to the restrictions below, you may use the Software for any commercial or noncommercial purpose, including distributing derivative works. + + SECTION 1: DEFINITIONS + A. "OpenNETCF" refers to OpenNETCF Consulting, LLC, a limited liability corporation organized and operating under the laws of the state of Maryland. + + B. "SDF" refers to the OpenNETCF Smart Device Framework, which is an OpenNETCF software product + + C. "SOFTWARE" refers to the source code, compiled binaries, installation files documentation and any other materials provided by OpenNETCF. + + SECTION 2: LICENSE + You agree that: + A. You are NOT allowed to combine or distribute the SOFTWARE with other software that is licensed under terms that seek to require that the SOFTWARE (or any intellectual property in it) be provided in source code form, licensed to others to allow the creation or distribution of derivative works, or distributed without charge. + + B. You may NOT distribute the SOFTWARE in source code form to any other person, company, government, group or entity. + + C. You may NOT decompile, disassemble, reverse engineer or otherwise attempt to extract, generate or retrieve source code from any compiled binary provided in the SOFTWARE. + + D. You will (a) NOT use OpenNETCF's name, logo, or trademarks in association with distribution of the SOFTWARE or derivative works unless otherwise permitted in writing; and (b) you WILL indemnify, hold harmless, and defend OpenNETCF from and against any claims or lawsuits, including attorneys fees, that arise or result from the use or distribution of your modifications to the SOFTWARE and any additional software you distribute along with the SOFTWARE. + + E. The SOFTWARE comes "as is", with no warranties. None whatsoever. This means no express, implied or statutory warranty, including without limitation, warranties of merchantability or fitness for a particular purpose or any warranty of title or non-infringement. + + F. Neither OpenNETCF nor its suppliers will be liable for any of those types of damages known as indirect, special, consequential, or incidental related to the SOFTWARE or this license, to the maximum extent the law permits, no matter what legal theory its based on. Also, you must pass this limitation of liability on whenever you distribute the SOFTWARE or derivative works. + + G. If you sue anyone over patents that you think may apply to the SOFTWARE for a person's use of the SOFTWARE, your license to the SOFTWARE ends automatically. + + H. The patent rights, if any, granted in this license only apply to the SOFTWARE, not to any derivative works you make. + + I. The SOFTWARE is subject to U.S. export jurisdiction at the time it is licensed to you, and it may be subject to additional export or import laws in other places. You agree to comply with all such laws and regulations that may apply to the SOFTWARE after delivery of the SOFTWARE to you. + + J. If you are an agency of the U.S. Government, (i) the SOFTWARE is provided pursuant to a solicitation issued on or after December 1, 1995, is provided with the commercial license rights set forth in this license, and (ii) the SOFTWARE is provided pursuant to a solicitation issued prior to December 1, 1995, is provided with Restricted Rights as set forth in FAR, 48 C.F.R. 52.227-14 (June 1987) or DFAR, 48 C.F.R. 252.227-7013 (Oct 1988), as applicable. + + K. Your rights under this license end automatically if you breach it in any way. + + L. This license contains the only rights associated with the SOFTWARE and OpenNETCF reserves all rights not expressly granted to you in this license. + + © 2006-2012 OpenNETCF Consulting, LLC. All rights reserved. json: opennetcf-shared-source.json - yml: opennetcf-shared-source.yml + yaml: opennetcf-shared-source.yml html: opennetcf-shared-source.html - text: opennetcf-shared-source.LICENSE + license: opennetcf-shared-source.LICENSE - license_key: openorb-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-openorb-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "================================================================================\n\ + The OpenORB Community Software License, Version 1.0\n================================================================================\n\ + \n Copyright (C) 2002 The OpenORB Project. All rights reserved.\n\n Redistribution and use\ + \ in source and binary forms, with or without modifica-\n tion, are permitted provided that\ + \ the following conditions are met:\n \n 1. Redistributions of source code must retain\ + \ the above copyright notice,\n this list of conditions and the following disclaimer.\n\ + \ \n 2. Redistributions in binary form must reproduce the above copyright notice,\n this\ + \ list of conditions and the following disclaimer in the documentation\n and/or other\ + \ materials provided with the distribution.\n \n 3. The end-user documentation included\ + \ with the redistribution, if any, must\n include the following acknowledgment: \"\ + This product includes software\n developed by the OpenORB Community Project \n (http://sourceforge.net/projects/openorb/).\"\ + \ together with the due credit \n statements listed below.\n Alternately, this acknowledgment\ + \ and due credits may appear in the soft-\n ware itself, if and wherever such third-party\ + \ acknowledgments normally \n appear.\n \n THIS SOFTWARE IS PROVIDED ``AS IS'' AND\ + \ ANY EXPRESSED OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\ + \ OF MERCHANTABILITY AND\n FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT\ + \ SHALL THE\n MEMBERS OF THE OPENORB COMMUNITY PROJECT OR ITS CONTRIBUTORS BE LIABLE\ + \ FOR \n ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL \ + \ \n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \n SERVICES;\ + \ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER \n CAUSED AND ON ANY\ + \ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, \n OR TORT (INCLUDING NEGLIGENCE\ + \ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE \n USE OF THIS SOFTWARE, EVEN IF ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGE.\n \n This software consists of voluntary contributions\ + \ made by many individuals to \n the OpenORB Community Project. For more information on\ + \ the OpenORB Community \n Project, please refer to ." json: openorb-1.0.json - yml: openorb-1.0.yml + yaml: openorb-1.0.yml html: openorb-1.0.html - text: openorb-1.0.LICENSE + license: openorb-1.0.LICENSE - license_key: openpbs-2.3 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-openpbs-2.3 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + OpenPBS (Portable Batch System) v2.3 Software License + + Copyright (c) 1999-2000 Veridian Information Solutions, Inc. + All rights reserved. + + --------------------------------------------------------------------------- + For a license to use or redistribute the OpenPBS software under conditions + other than those described below, or to purchase support for this software, + please contact Veridian Systems, PBS Products Department ("Licensor") at: + + www.OpenPBS.org +1 650 967-4675 sales@OpenPBS.org + 877 902-4PBS (US toll-free) + --------------------------------------------------------------------------- + + This license covers use of the OpenPBS v2.3 software (the "Software") at + your site or location, and, for certain users, redistribution of the + Software to other sites and locations. Use and redistribution of + OpenPBS v2.3 in source and binary forms, with or without modification, + are permitted provided that all of the following conditions are met. + After December 31, 2001, only conditions 3-6 must be met: + + 1. Commercial and/or non-commercial use of the Software is permitted + provided a current software registration is on file at www.OpenPBS.org. + If use of this software contributes to a publication, product, or + service, proper attribution must be given; see www.OpenPBS.org/credit.html + + 2. Redistribution in any form is only permitted for non-commercial, + non-profit purposes. There can be no charge for the Software or any + software incorporating the Software. Further, there can be no + expectation of revenue generated as a consequence of redistributing + the Software. + + 3. Any Redistribution of source code must retain the above copyright notice + and the acknowledgment contained in paragraph 6, this list of conditions + and the disclaimer contained in paragraph 7. + + 4. Any Redistribution in binary form must reproduce the above copyright + notice and the acknowledgment contained in paragraph 6, this list of + conditions and the disclaimer contained in paragraph 7 in the + documentation and/or other materials provided with the distribution. + + 5. Redistributions in any form must be accompanied by information on how to + obtain complete source code for the OpenPBS software and any + modifications and/or additions to the OpenPBS 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 all modifications + and additions to the Software must be freely redistributable by any party + (including Licensor) without restriction. + + 6. All advertising materials mentioning features or use of the Software must + display the following acknowledgment: + + "This product includes software developed by NASA Ames Research Center, + Lawrence Livermore National Laboratory, and Veridian Information Solutions, + Inc. Visit www.OpenPBS.org for OpenPBS software support, + products, and information." + + 7. DISCLAIMER OF WARRANTY + + THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. ANY EXPRESS + OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT + ARE EXPRESSLY DISCLAIMED. + + IN NO EVENT SHALL VERIDIAN CORPORATION, ITS AFFILIATED COMPANIES, OR THE + U.S. GOVERNMENT OR ANY OF ITS AGENCIES BE LIABLE FOR ANY DIRECT OR INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + This license will be governed by the laws of the Commonwealth of Virginia, + without reference to its choice of law rules. json: openpbs-2.3.json - yml: openpbs-2.3.yml + yaml: openpbs-2.3.yml html: openpbs-2.3.html - text: openpbs-2.3.LICENSE + license: openpbs-2.3.LICENSE - license_key: openpub + category: Permissive spdx_license_key: OPUBL-1.0 other_spdx_license_keys: - LicenseRef-scancode-openpub is_exception: no is_deprecated: no - category: Permissive + text: "Open Publication License\nv1.0, 8 June 1999\n\nI. REQUIREMENTS ON BOTH UNMODIFIED AND\ + \ MODIFIED VERSIONS\n\nThe Open Publication works may be reproduced and distributed in whole\ + \ or in part, in any medium physical or electronic, provided that the terms of this license\ + \ are adhered to, and that this license or an incorporation of it by reference (with any\ + \ options elected by the author(s) and/or publisher) is displayed in the reproduction.\n\ + \nProper form for an incorporation by reference is as follows:\n\n Copyright (c) \ + \ by . This material may be distributed only subject to the terms\ + \ and conditions set forth in the Open Publication License, vX.Y or later (the latest version\ + \ is presently available at http://www.opencontent.org/openpub/).\n\nThe reference must\ + \ be immediately followed with any options elected by the author(s) and/or publisher of\ + \ the document (see section VI).\n\nCommercial redistribution of Open Publication-licensed\ + \ material is permitted.\n\nAny publication in standard (paper) book form shall require\ + \ the citation of the original publisher and author. The publisher and author's names shall\ + \ appear on all outer surfaces of the book. On all outer surfaces of the book the original\ + \ publisher's name shall be as large as the title of the work and cited as possessive with\ + \ respect to the title.\n\n\nII. COPYRIGHT\n\nThe copyright to each Open Publication is\ + \ owned by its author(s) or designee.\n\n\nIII. SCOPE OF LICENSE\n\nThe following license\ + \ terms apply to all Open Publication works, unless otherwise explicitly stated in the document.\n\ + \nMere aggregation of Open Publication works or a portion of an Open Publication work with\ + \ other works or programs on the same media shall not cause this license to apply to those\ + \ other works. The aggregate work shall contain a notice specifying the inclusion of the\ + \ Open Publication material and appropriate copyright notice.\n\nSEVERABILITY. If any part\ + \ of this license is found to be unenforceable in any jurisdiction, the remaining portions\ + \ of the license remain in force.\n\nNO WARRANTY. Open Publication works are licensed and\ + \ provided \"as is\" without warranty of any kind, express or implied, including, but not\ + \ limited to, the implied warranties of merchantability and fitness for a particular purpose\ + \ or a warranty of non-infringement.\n\n\nIV. REQUIREMENTS ON MODIFIED WORKS\n\nAll modified\ + \ versions of documents covered by this license, including translations, anthologies, compilations\ + \ and partial documents, must meet the following requirements:\n\n 1. The modified version\ + \ must be labeled as such.\n 2. The person making the modifications must be identified\ + \ and the modifications dated.\n 3. Acknowledgement of the original author and publisher\ + \ if applicable must be retained according to normal academic citation practices.\n 4.\ + \ The location of the original unmodified document must be identified.\n 5. The original\ + \ author's (or authors') name(s) may not be used to assert or imply endorsement of the resulting\ + \ document without the original author's (or authors') permission. \n\n\nV. GOOD-PRACTICE\ + \ RECOMMENDATIONS\n\nIn addition to the requirements of this license, it is requested from\ + \ and strongly recommended of redistributors that:\n\n 1. If you are distributing Open\ + \ Publication works on hardcopy or CD-ROM, you provide email notification to the authors\ + \ of your intent to redistribute at least thirty days before your manuscript or media freeze,\ + \ to give the authors time to provide updated documents. This notification should describe\ + \ modifications, if any, made to the document.\n 2. All substantive modifications (including\ + \ deletions) be either clearly marked up in the document or else described in an attachment\ + \ to the document.\n 3. Finally, while it is not mandatory under this license, it is considered\ + \ good form to offer a free copy of any hardcopy and CD-ROM expression of an Open Publication-licensed\ + \ work to its author(s). \n\n\nVI. LICENSE OPTIONS\n\nThe author(s) and/or publisher of\ + \ an Open Publication-licensed document may elect certain options by appending language\ + \ to the reference to or copy of the license. These options are considered part of the license\ + \ instance and must be included with the license (or its incorporation by reference) in\ + \ derived works.\n\nA. To prohibit distribution of substantively modified versions without\ + \ the explicit permission of the author(s). \"Substantive modification\" is defined as a\ + \ change to the semantic content of the document, and excludes mere changes in format or\ + \ typographical corrections.\n\nTo accomplish this, add the phrase `Distribution of substantively\ + \ modified versions of this document is prohibited without the explicit permission of the\ + \ copyright holder.' to the license reference or copy.\n\nB. To prohibit any publication\ + \ of this work or derivative works in whole or in part in standard (paper) book form for\ + \ commercial purposes unless prior permission is obtained from the copyright holder.\n\n\ + To accomplish this, add the phrase 'Distribution of the work or derivative of the work in\ + \ any standard (paper) book form is prohibited unless prior permission is obtained from\ + \ the copyright holder.' to the license reference or copy." json: openpub.json - yml: openpub.yml + yaml: openpub.yml html: openpub.html - text: openpub.LICENSE + license: openpub.LICENSE - license_key: opensaml-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-opensaml-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The OpenSAML License, Version 1. \nCopyright (c) 2002 \nUniversity Corporation for\ + \ Advanced Internet Development, Inc. \nAll rights reserved\n\nRedistribution and use in\ + \ source and binary forms, with or without \nmodification, are permitted provided that the\ + \ following conditions are met:\n\nRedistributions of source code must retain the above\ + \ copyright notice, this \nlist of conditions and the following disclaimer.\n\nRedistributions\ + \ in binary form must reproduce the above copyright notice, \nthis list of conditions and\ + \ the following disclaimer in the documentation \nand/or other materials provided with the\ + \ distribution, if any, must include \nthe following acknowledgment: \"This product includes\ + \ software developed by \nthe University Corporation for Advanced Internet Development \n\ + Internet2 Project. Alternately, this acknowledegement \nmay appear\ + \ in the software itself, if and wherever such third-party \nacknowledgments normally appear.\n\ + \nNeither the name of OpenSAML nor the names of its contributors, nor \nInternet2, nor the\ + \ University Corporation for Advanced Internet Development, \nInc., nor UCAID may be used\ + \ to endorse or promote products derived from this \nsoftware without specific prior written\ + \ permission. For written permission, \nplease contact opensaml@opensaml.org\n\nProducts\ + \ derived from this software may not be called OpenSAML, Internet2, \nUCAID, or the University\ + \ Corporation for Advanced Internet Development, nor \nmay OpenSAML appear in their name,\ + \ without prior written permission of the \nUniversity Corporation for Advanced Internet\ + \ Development.\n\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\ + \ \"AS IS\" \nAND WITH ALL FAULTS. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\ + \ \nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A \nPARTICULAR PURPOSE,\ + \ AND NON-INFRINGEMENT ARE DISCLAIMED AND THE ENTIRE RISK \nOF SATISFACTORY QUALITY, PERFORMANCE,\ + \ ACCURACY, AND EFFORT IS WITH LICENSEE. \nIN NO EVENT SHALL THE COPYRIGHT OWNER, CONTRIBUTORS\ + \ OR THE UNIVERSITY \nCORPORATION FOR ADVANCED INTERNET DEVELOPMENT, INC. BE LIABLE FOR\ + \ ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES \n(INCLUDING,\ + \ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; \nLOSS OF USE, DATA,\ + \ OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND \nON ANY THEORY OF LIABILITY,\ + \ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT \n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\ + \ IN ANY WAY OUT OF THE USE OF THIS \nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\ + \ DAMAGE." json: opensaml-1.0.json - yml: opensaml-1.0.yml + yaml: opensaml-1.0.yml html: opensaml-1.0.html - text: opensaml-1.0.LICENSE + license: opensaml-1.0.LICENSE - license_key: opensc-openssl-openpace-exception-gpl + category: Copyleft spdx_license_key: LicenseRef-scancode-openpace-exception-gpl other_spdx_license_keys: - LicenseRef-scancode-opensc-openssl-openpace-exception-gpl is_exception: yes is_deprecated: no - category: Copyleft + text: "Additional permission under GNU GPL version 3 section 7\n\nIf you modify this Program,\ + \ or any covered work, by linking or combining it\nwith OpenSSL (or a modified version of\ + \ that library), containing\nparts covered by the terms of OpenSSL's license, the licensors\ + \ of\nthis Program grant you additional permission to convey the resulting work.\nCorresponding\ + \ Source for a non-source form of such a combination shall include\nthe source code for\ + \ the parts of OpenSSL used as well as that of the\ncovered work.\n\nIf you modify this\ + \ Program, or any covered work, by linking or combining it\nwith OpenSC (or a modified version\ + \ of that library), containing\nparts covered by the terms of OpenSC's license, the licensors\ + \ of\nthis Program grant you additional permission to convey the resulting work. \nCorresponding\ + \ Source for a non-source form of such a combination shall include\nthe source code for\ + \ the parts of OpenSC used as well as that of the\ncovered work." json: opensc-openssl-openpace-exception-gpl.json - yml: opensc-openssl-openpace-exception-gpl.yml + yaml: opensc-openssl-openpace-exception-gpl.yml html: opensc-openssl-openpace-exception-gpl.html - text: opensc-openssl-openpace-exception-gpl.LICENSE + license: opensc-openssl-openpace-exception-gpl.LICENSE - license_key: openssh + category: Permissive spdx_license_key: SSH-OpenSSH other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This file is part of the OpenSSH software.\n\nThe licences which components of this\ + \ software fall under are as\nfollows. First, we will summarize and say that all components\n\ + are under a BSD licence, or a licence more free than that.\n\nOpenSSH contains no GPL code.\n\ + \n1)\n * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland\n * \ + \ All rights reserved\n *\n * As far as I am concerned, the code\ + \ I have written for this software\n * can be used freely for any purpose. Any derived\ + \ versions of this\n * software must be clearly marked as such, and if the derived work\ + \ is\n * incompatible with the protocol description in the RFC file, it must be\n \ + \ * called by a name other than \"ssh\" or \"Secure Shell\".\n\n [Tatu continues]\n\ + \ * However, I am not implying to give any licenses to any patents or\n * copyrights\ + \ held by third parties, and the software includes parts that\n * are not under my direct\ + \ control. As far as I know, all included\n * source code is used in accordance with\ + \ the relevant license agreements\n * and can be used freely for any purpose (the GNU\ + \ license being the most\n * restrictive); see below for details.\n\n [However, none\ + \ of that term is relevant at this point in time. All of\n these restrictively licenced\ + \ software components which he talks about\n have been removed from OpenSSH, i.e.,\n\n\ + \ - RSA is no longer included, found in the OpenSSL library\n - IDEA is no longer\ + \ included, its use is deprecated\n - DES is now external, in the OpenSSL library\n\ + \ - GMP is no longer used, and instead we call BN code from OpenSSL\n - Zlib is\ + \ now external, in a library\n - The make-ssh-known-hosts script is no longer included\n\ + \ - TSS has been removed\n - MD5 is now external, in the OpenSSL library\n -\ + \ RC4 support has been replaced with ARC4 support from OpenSSL\n - Blowfish is now external,\ + \ in the OpenSSL library\n\n [The licence continues]\n\n Note that any information\ + \ and cryptographic algorithms used in this\n software are publicly available on the\ + \ Internet and at any major\n bookstore, scientific library, and patent office worldwide.\ + \ More\n information can be found e.g. at \"http://www.cs.hut.fi/crypto\".\n\n The\ + \ legal status of this program is some combination of all these\n permissions and restrictions.\ + \ Use only at your own responsibility.\n You will be responsible for any legal consequences\ + \ yourself; I am not\n making any claims whether possessing or using this is legal or\ + \ not in\n your country, and I am not taking any responsibility on your behalf.\n\n\n\ + \t\t\t NO WARRANTY\n\n BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\ + \ WARRANTY\n FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\n\ + \ OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\n PROVIDE\ + \ THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\n OR IMPLIED,\ + \ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS\ + \ FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\n TO THE QUALITY AND PERFORMANCE OF THE\ + \ PROGRAM IS WITH YOU. SHOULD THE\n PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\ + \ ALL NECESSARY SERVICING,\n REPAIR OR CORRECTION.\n\n IN NO EVENT UNLESS REQUIRED\ + \ BY APPLICABLE LAW OR AGREED TO IN WRITING\n WILL ANY COPYRIGHT HOLDER, OR ANY OTHER\ + \ PARTY WHO MAY MODIFY AND/OR\n REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE\ + \ TO YOU FOR DAMAGES,\n INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES\ + \ ARISING\n OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\n\ + \ TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\n YOU OR\ + \ THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\n PROGRAMS), EVEN\ + \ IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGES.\n\ + \n2)\n The 32-bit CRC compensation attack detector in deattack.c was\n contributed\ + \ by CORE SDI S.A. under a BSD-style license.\n\n * Cryptographic attack detector for\ + \ ssh - source code\n *\n * Copyright (c) 1998 CORE SDI S.A., Buenos Aires, Argentina.\n\ + \ *\n * All rights reserved. Redistribution and use in source and binary\n *\ + \ forms, with or without modification, are permitted provided that\n * this copyright\ + \ notice is retained.\n *\n * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS\ + \ OR IMPLIED\n * WARRANTIES ARE DISCLAIMED. IN NO EVENT SHALL CORE SDI S.A. BE\n \ + \ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY OR\n * CONSEQUENTIAL\ + \ DAMAGES RESULTING FROM THE USE OR MISUSE OF THIS\n * SOFTWARE.\n *\n * Ariel\ + \ Futoransky \n * \n\n3)\n ssh-keyscan\ + \ was contributed by David Mazieres under a BSD-style\n license.\n\n * Copyright\ + \ 1995, 1996 by David Mazieres .\n *\n * Modification and redistribution\ + \ in source and binary forms is\n * permitted provided that due credit is given to the\ + \ author and the\n * OpenBSD project by leaving this copyright notice intact.\n\n4)\n\ + \ The Rijndael implementation by Vincent Rijmen, Antoon Bosselaers\n and Paulo Barreto\ + \ is in the public domain and distributed\n with the following license:\n\n * @version\ + \ 3.0 (December 2000)\n *\n * Optimised ANSI C code for the Rijndael cipher (now\ + \ AES)\n *\n * @author Vincent Rijmen \n \ + \ * @author Antoon Bosselaers \n * @author Paulo\ + \ Barreto \n *\n * This code is hereby placed in the\ + \ public domain.\n *\n * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND\ + \ ANY EXPRESS\n * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n\ + \ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED.\ + \ IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE\n * LIABLE FOR ANY DIRECT, INDIRECT,\ + \ INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\ + \ TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\ + \ OR\n * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n \ + \ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n * OR OTHERWISE)\ + \ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n * EVEN IF ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGE.\n\n5)\n One component of the ssh source code is under a 3-clause BSD\ + \ license,\n held by the University of California, since we pulled these parts from\n\ + \ original Berkeley code.\n\n * Copyright (c) 1983, 1990, 1992, 1993, 1995\n \ + \ * The Regents of the University of California. All rights reserved.\n *\n \ + \ * Redistribution and use in source and binary forms, with or without\n * modification,\ + \ are permitted provided that the following conditions\n * are met:\n * 1. Redistributions\ + \ of source code must retain the above copyright\n * notice, this list of conditions\ + \ and the following disclaimer.\n * 2. Redistributions in binary form must reproduce\ + \ the above copyright\n * notice, this list of conditions and the following disclaimer\ + \ in the\n * documentation and/or other materials provided with the distribution.\n\ + \ * 3. Neither the name of the University nor the names of its contributors\n *\ + \ may be used to endorse or promote products derived from this software\n * without\ + \ specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS\ + \ AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT\ + \ NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\ + \ PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n\ + \ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n \ + \ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR\ + \ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED\ + \ AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT\ + \ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS\ + \ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\n6)\n Remaining\ + \ components of the software are provided under a standard\n 2-term BSD licence with\ + \ the following names as copyright holders:\n\n\tMarkus Friedl\n\tTheo de Raadt\n\tNiels\ + \ Provos\n\tDug Song\n\tAaron Campbell\n\tDamien Miller\n\tKevin Steves\n\tDaniel Kouril\n\ + \tWesley Griffin\n\tPer Allansson\n\tNils Nordman\n\tSimon Wilkinson\n\n Portable OpenSSH\ + \ additionally includes code from the following copyright\n holders, also under the 2-term\ + \ BSD license:\n\n\tBen Lindstrom\n\tTim Rice\n\tAndre Lucas\n\tChris Adams\n\tCorinna Vinschen\n\ + \tCray Inc.\n\tDenis Parker\n\tGert Doering\n\tJakob Schlyter\n\tJason Downs\n\tJuha Yrjˆl‰\n\ + \tMichael Stone\n\tNetworks Associates Technology, Inc.\n\tSolar Designer\n\tTodd C. Miller\n\ + \tWayne Schroeder\n\tWilliam Jones\n\tDarren Tucker\n\tSun Microsystems\n\tThe SCO Group\n\ + \tDaniel Walsh\n\tRed Hat, Inc\n\tSimon Vallet / Genoscope\n\n * Redistribution and\ + \ use in source and binary forms, with or without\n * modification, are permitted provided\ + \ that the following conditions\n * are met:\n * 1. Redistributions of source code\ + \ must retain the above copyright\n * notice, this list of conditions and the following\ + \ disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n\ + \ * notice, this list of conditions and the following disclaimer in the\n * \ + \ documentation and/or other materials provided with the distribution.\n *\n *\ + \ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES,\ + \ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS\ + \ FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n * IN NO EVENT SHALL THE AUTHOR BE LIABLE\ + \ FOR ANY DIRECT, INDIRECT,\n * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\ + \ (INCLUDING, BUT\n * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\ + \ OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\ + \ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING\ + \ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n * THIS SOFTWARE, EVEN\ + \ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n8) Portable OpenSSH contains the following\ + \ additional licenses:\n\n a) md5crypt.c, md5crypt.h\n\n\t * \"THE BEER-WARE LICENSE\"\ + \ (Revision 42):\n\t * wrote this file. As long as you retain this\n\ + \t * notice you can do whatever you want with this stuff. If we meet\n\t * some day, and\ + \ you think this stuff is worth it, you can buy me a\n\t * beer in return. Poul-Henning\ + \ Kamp\n\n b) snprintf replacement\n\n\t* Copyright Patrick Powell 1995\n\t* This code\ + \ is based on code written by Patrick Powell\n\t* (papowell@astart.com) It may be used for\ + \ any purpose as long as this\n\t* notice remains intact on all source code distributions\n\ + \n c) Compatibility code (openbsd-compat)\n\n Apart from the previously mentioned\ + \ licenses, various pieces of code\n in the openbsd-compat/ subdirectory are licensed\ + \ as follows:\n\n Some code is licensed under a 3-term BSD license, to the following\n\ + \ copyright holders:\n\n\tTodd C. Miller\n\tTheo de Raadt\n\tDamien Miller\n\tEric\ + \ P. Allman\n\tThe Regents of the University of California\n\tConstantin S. Svintsoff\n\n\ + \t* Redistribution and use in source and binary forms, with or without\n\t* modification,\ + \ are permitted provided that the following conditions\n\t* are met:\n\t* 1. Redistributions\ + \ of source code must retain the above copyright\n\t* notice, this list of conditions\ + \ and the following disclaimer.\n\t* 2. Redistributions in binary form must reproduce the\ + \ above copyright\n\t* notice, this list of conditions and the following disclaimer in\ + \ the\n\t* documentation and/or other materials provided with the distribution.\n\t*\ + \ 3. Neither the name of the University nor the names of its contributors\n\t* may be\ + \ used to endorse or promote products derived from this software\n\t* without specific\ + \ prior written permission.\n\t*\n\t* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS\ + \ ``AS IS'' AND\n\t* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n\ + \t* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n\t* ARE\ + \ DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n\t* FOR ANY DIRECT,\ + \ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n\t* DAMAGES (INCLUDING, BUT\ + \ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n\t* OR SERVICES; LOSS OF USE, DATA, OR\ + \ PROFITS; OR BUSINESS INTERRUPTION)\n\t* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\ + \ WHETHER IN CONTRACT, STRICT\n\t* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\ + \ ARISING IN ANY WAY\n\t* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY\ + \ OF\n\t* SUCH DAMAGE.\n\n Some code is licensed under an ISC-style license, to the\ + \ following\n copyright holders:\n\n\tInternet Software Consortium.\n\tTodd C. Miller\n\ + \tReyk Floeter\n\tChad Mynhier\n\n\t* Permission to use, copy, modify, and distribute this\ + \ software for any\n\t* purpose with or without fee is hereby granted, provided that the\ + \ above\n\t* copyright notice and this permission notice appear in all copies.\n\t*\n\t\ + * THE SOFTWARE IS PROVIDED \"AS IS\" AND TODD C. MILLER DISCLAIMS ALL\n\t* WARRANTIES WITH\ + \ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n\t* OF MERCHANTABILITY AND FITNESS.\ + \ IN NO EVENT SHALL TODD C. MILLER BE LIABLE\n\t* FOR ANY SPECIAL, DIRECT, INDIRECT, OR\ + \ CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n\t* WHATSOEVER RESULTING FROM LOSS OF USE, DATA\ + \ OR PROFITS, WHETHER IN AN ACTION\n\t* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\ + \ ARISING OUT OF OR IN\n\t* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n\ + \ Some code is licensed under a MIT-style license to the following\n copyright\ + \ holders:\n\n\tFree Software Foundation, Inc.\n\n\t* Permission is hereby granted, free\ + \ of charge, to any person obtaining a *\n\t* copy of this software and associated documentation\ + \ files (the *\n\t* \"Software\"), to deal in the Software without restriction,\ + \ including *\n\t* without limitation the rights to use, copy, modify, merge, publish,\ + \ *\n\t* distribute, distribute with modifications, sublicense, and/or sell *\n\ + \t* copies of the Software, and to permit persons to whom the Software is *\n\t* furnished\ + \ to do so, subject to the following conditions: *\n\t* \ + \ *\n\t* The above copyright notice\ + \ and this permission notice shall be included *\n\t* in all copies or substantial portions\ + \ of the Software. *\n\t* \ + \ *\n\t* THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY\ + \ OF ANY KIND, EXPRESS *\n\t* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\ + \ *\n\t* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\ + \ *\n\t* IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *\n\t\ + * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *\n\t* OTHERWISE,\ + \ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *\n\t* THE USE OR OTHER\ + \ DEALINGS IN THE SOFTWARE. *\n\t* \ + \ *\n\t* Except as contained in this notice,\ + \ the name(s) of the above copyright *\n\t* holders shall not be used in advertising or\ + \ otherwise to promote the *\n\t* sale, use or other dealings in this Software without\ + \ prior written *\n\t* authorization. \ + \ *\n\t****************************************************************************/\n\ + \n\n------\n$OpenBSD: LICENCE,v 1.19 2004/08/30 09:18:08 markus Exp $" json: openssh.json - yml: openssh.yml + yaml: openssh.yml html: openssh.html - text: openssh.LICENSE + license: openssh.LICENSE - license_key: openssl + category: Permissive spdx_license_key: LicenseRef-scancode-openssl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 + licensing@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. json: openssl.json - yml: openssl.yml + yaml: openssl.yml html: openssl.html - text: openssl.LICENSE + license: openssl.LICENSE - license_key: openssl-exception-agpl-3.0 + category: Copyleft spdx_license_key: LicenseRef-scancode-openssl-exception-agpl-3.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: | + As a special exception, the copyright holders give permission to link the + code of portions of this program with the OpenSSL library under certain + conditions as described in each individual source file and distribute + linked combinations including the program with the OpenSSL library. You + must comply with the GNU Affero General Public License in all respects for + all of the code used other than as permitted herein. 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 in the license file. json: openssl-exception-agpl-3.0.json - yml: openssl-exception-agpl-3.0.yml + yaml: openssl-exception-agpl-3.0.yml html: openssl-exception-agpl-3.0.html - text: openssl-exception-agpl-3.0.LICENSE + license: openssl-exception-agpl-3.0.LICENSE - license_key: openssl-exception-agpl-3.0-monit + category: Copyleft spdx_license_key: LicenseRef-scancode-openssl-exception-agpl3.0monit other_spdx_license_keys: - LicenseRef-scancode-openssl-exception-agpl-3.0-monit is_exception: yes is_deprecated: no - category: Copyleft + text: | + * In addition, as a special exception, the copyright holders give + * permission to link the code of portions of this program with the + * OpenSSL library under certain conditions as described in each + * individual source file, and distribute linked combinations + * including the two. + * + * You must obey the GNU Affero General Public License in all respects + * for all of the code used other than OpenSSL. json: openssl-exception-agpl-3.0-monit.json - yml: openssl-exception-agpl-3.0-monit.yml + yaml: openssl-exception-agpl-3.0-monit.yml html: openssl-exception-agpl-3.0-monit.html - text: openssl-exception-agpl-3.0-monit.LICENSE + license: openssl-exception-agpl-3.0-monit.LICENSE - license_key: openssl-exception-agpl-3.0-plus + category: Copyleft spdx_license_key: LicenseRef-scancode-openssl-exception-agpl3.0plus other_spdx_license_keys: - LicenseRef-scancode-openssl-exception-agpl-3.0-plus is_exception: yes is_deprecated: no - category: Copyleft + text: | + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations + including the two. + + You must obey the GNU Affero General Public License V3 or later in all respects + for all of the code used other than OpenSSL or the components mentioned + above. 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. json: openssl-exception-agpl-3.0-plus.json - yml: openssl-exception-agpl-3.0-plus.yml + yaml: openssl-exception-agpl-3.0-plus.yml html: openssl-exception-agpl-3.0-plus.html - text: openssl-exception-agpl-3.0-plus.LICENSE + license: openssl-exception-agpl-3.0-plus.LICENSE - license_key: openssl-exception-gpl-2.0 - spdx_license_key: LicenseRef-scancode-openssl-exception-gpl-2.0 + category: Copyleft + spdx_license_key: x11vnc-openssl-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: | + The OpenSSL Exception: + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations + including the two. + You must obey the GNU 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. json: openssl-exception-gpl-2.0.json - yml: openssl-exception-gpl-2.0.yml + yaml: openssl-exception-gpl-2.0.yml html: openssl-exception-gpl-2.0.html - text: openssl-exception-gpl-2.0.LICENSE + license: openssl-exception-gpl-2.0.LICENSE - license_key: openssl-exception-gpl-2.0-plus + category: Copyleft spdx_license_key: LicenseRef-scancode-openssl-exception-gpl-2.0-plus other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: | + As a special exception to the GNU General Public License terms, + permission is hereby granted to link the code of this program, with or + without modification, with any version of the OpenSSL library and/or any + version of unRAR, and to distribute such linked combinations. You must + obey the GNU GPL in all respects for all of the code used other than + OpenSSL and unRAR. If you modify this program, you may extend this + exception to your version of the program, but you are not obligated to + do so. (In other words, you may release your derived work under pure + GNU GPL version 2 or later as published by the FSF.) json: openssl-exception-gpl-2.0-plus.json - yml: openssl-exception-gpl-2.0-plus.yml + yaml: openssl-exception-gpl-2.0-plus.yml html: openssl-exception-gpl-2.0-plus.html - text: openssl-exception-gpl-2.0-plus.LICENSE + license: openssl-exception-gpl-2.0-plus.LICENSE - license_key: openssl-exception-gpl-3.0-plus + category: Copyleft spdx_license_key: LicenseRef-scancode-openssl-exception-gpl-3.0-plus other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: | + In addition, as a special exception, the copyright holders give permission to + link the code of portions of this program with the OpenSSL library under certain + conditions as described in each individual source file, and distribute linked + combinations including the two. + + You must obey the GNU 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. json: openssl-exception-gpl-3.0-plus.json - yml: openssl-exception-gpl-3.0-plus.yml + yaml: openssl-exception-gpl-3.0-plus.yml html: openssl-exception-gpl-3.0-plus.html - text: openssl-exception-gpl-3.0-plus.LICENSE + license: openssl-exception-gpl-3.0-plus.LICENSE - license_key: openssl-exception-lgpl + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-openssl-exception-lgpl other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, 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. json: openssl-exception-lgpl.json - yml: openssl-exception-lgpl.yml + yaml: openssl-exception-lgpl.yml html: openssl-exception-lgpl.html - text: openssl-exception-lgpl.LICENSE + license: openssl-exception-lgpl.LICENSE - license_key: openssl-exception-lgpl-2.0-plus + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-openssl-exception-lgpl2.0plus other_spdx_license_keys: - LicenseRef-scancode-openssl-exception-lgpl-2.0-plus is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + LICENSE EXCEPTION FOR OPENSSL + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library, and distribute linked combinations + including the two. + You must obey the GNU Library 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. json: openssl-exception-lgpl-2.0-plus.json - yml: openssl-exception-lgpl-2.0-plus.yml + yaml: openssl-exception-lgpl-2.0-plus.yml html: openssl-exception-lgpl-2.0-plus.html - text: openssl-exception-lgpl-2.0-plus.LICENSE + license: openssl-exception-lgpl-2.0-plus.LICENSE - license_key: openssl-exception-lgpl-3.0-plus + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-openssl-exception-lgpl3.0plus other_spdx_license_keys: - LicenseRef-scancode-openssl-exception-lgpl-3.0-plus is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + 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. json: openssl-exception-lgpl-3.0-plus.json - yml: openssl-exception-lgpl-3.0-plus.yml + yaml: openssl-exception-lgpl-3.0-plus.yml html: openssl-exception-lgpl-3.0-plus.html - text: openssl-exception-lgpl-3.0-plus.LICENSE + license: openssl-exception-lgpl-3.0-plus.LICENSE - license_key: openssl-exception-mongodb-sspl + category: Copyleft spdx_license_key: LicenseRef-scancode-openssl-exception-mongodb-sspl other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: | + As a special exception, the copyright holders give permission to link the + code of portions of this program with the OpenSSL library under certain + conditions as described in each individual source file and distribute + linked combinations including the program with the OpenSSL library. You + must comply with the Server Side Public License in all respects for + all of the code used other than as permitted herein. 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 in the license file. json: openssl-exception-mongodb-sspl.json - yml: openssl-exception-mongodb-sspl.yml + yaml: openssl-exception-mongodb-sspl.yml html: openssl-exception-mongodb-sspl.html - text: openssl-exception-mongodb-sspl.LICENSE + license: openssl-exception-mongodb-sspl.LICENSE - license_key: openssl-nokia-psk-contribution + category: Patent License spdx_license_key: LicenseRef-scancode-openssl-nokia-psk-contribution other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Patent License + text: | + The portions of the attached software ("Contribution") is developed by + Nokia Corporation and is licensed pursuant to the OpenSSL open source + license. + + The Contribution, originally written by Mika Kousa and Pasi Eronen of + Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites + support (see RFC 4279) to OpenSSL. + + No patent licenses or other rights except those expressly stated in + the OpenSSL open source license shall be deemed granted or received + expressly, by implication, estoppel, or otherwise. + + No assurances are provided by Nokia that the Contribution does not + infringe the patent or other intellectual property rights of any third + party or that the license provides you with all the necessary rights + to make use of the Contribution. + + THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN + ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA + SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY + OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR + OTHERWISE. json: openssl-nokia-psk-contribution.json - yml: openssl-nokia-psk-contribution.yml + yaml: openssl-nokia-psk-contribution.yml html: openssl-nokia-psk-contribution.html - text: openssl-nokia-psk-contribution.LICENSE + license: openssl-nokia-psk-contribution.LICENSE - license_key: openssl-ssleay + category: Permissive spdx_license_key: OpenSSL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "LICENSE ISSUES\n ==============\n\n The OpenSSL toolkit stays under a dual license,\ + \ i.e. both the conditions of\n the OpenSSL License and the original SSLeay license apply\ + \ to the toolkit.\n See below for the actual license texts. Actually both licenses are\ + \ BSD-style\n Open Source licenses. In case of any license issues related to OpenSSL\n\ + \ please contact openssl-core@openssl.org.\n\n OpenSSL License\n ---------------\n\n\ + Redistribution and use in source and binary forms, with or without\nmodification, are permitted\ + \ provided that the following conditions\nare met:\n\n1. Redistributions of source code\ + \ must retain the above copyright\n notice, this list of conditions and the following\ + \ disclaimer. \n\n2. Redistributions in binary form must reproduce the above copyright\n\ + \ notice, this list of conditions and the following disclaimer in\n the documentation\ + \ and/or other materials provided with the\n distribution.\n\n3. All advertising materials\ + \ mentioning features or use of this\n software must display the following acknowledgment:\n\ + \ \"This product includes software developed by the OpenSSL Project\n for use in the\ + \ OpenSSL Toolkit. (http://www.openssl.org/)\"\n\n4. The names \"OpenSSL Toolkit\" and \"\ + OpenSSL Project\" must not be used to\n endorse or promote products derived from this\ + \ software without\n prior written permission. For written permission, please contact\n\ + \ openssl-core@openssl.org.\n\n5. Products derived from this software may not be called\ + \ \"OpenSSL\"\n nor may \"OpenSSL\" appear in their names without prior written\n permission\ + \ of the OpenSSL Project.\n\n6. Redistributions of any form whatsoever must retain the following\n\ + \ acknowledgment:\n \"This product includes software developed by the OpenSSL Project\n\ + \ for use in the OpenSSL Toolkit (http://www.openssl.org/)\"\n\nTHIS SOFTWARE IS PROVIDED\ + \ BY THE OpenSSL PROJECT ``AS IS'' AND ANY\nEXPRESSED OR IMPLIED WARRANTIES, INCLUDING,\ + \ BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n\ + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR\nITS CONTRIBUTORS BE LIABLE\ + \ FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\ + \ BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA,\ + \ OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\ + \ WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n\ + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\nOF THE POSSIBILITY\ + \ OF SUCH DAMAGE.\n\n\nThis product includes cryptographic software written by Eric Young\n\ + (eay@cryptsoft.com). This product includes software written by Tim\nHudson (tjh@cryptsoft.com).\n\ + \n\n Original SSLeay License\n -----------------------\n\nCopyright (C) 1995-1998 Eric Young\ + \ (eay@cryptsoft.com)\nAll rights reserved.\n\nThis package is an SSL implementation written\n\ + by Eric Young (eay@cryptsoft.com).\nThe implementation was written so as to conform with\ + \ Netscapes SSL.\n\nThis library is free for commercial and non-commercial use as long as\n\ + the following conditions are aheared to. The following conditions\napply to all code found\ + \ in this distribution, be it the RC4, RSA,\nlhash, DES, etc., code; not just the SSL code.\ + \ The SSL documentation\nincluded with this distribution is covered by the same copyright\ + \ terms\nexcept that the holder is Tim Hudson (tjh@cryptsoft.com).\n\nCopyright remains\ + \ Eric Young's, and as such any Copyright notices in\nthe code are not to be removed.\n\ + If this package is used in a product, Eric Young should be given attribution\nas the author\ + \ of the parts of the library used.\nThis can be in the form of a textual message at program\ + \ startup or\nin documentation (online or textual) provided with the package.\n\nRedistribution\ + \ and use in source and binary forms, with or without\nmodification, are permitted provided\ + \ that the following conditions\nare met:\n1. Redistributions of source code must retain\ + \ the copyright\n notice, this list of conditions and the following disclaimer.\n2. Redistributions\ + \ in binary form must reproduce the above copyright\n notice, this list of conditions\ + \ and the following disclaimer in the\n documentation and/or other materials provided\ + \ with the distribution.\n3. All advertising materials mentioning features or use of this\ + \ software\n must display the following acknowledgement:\n \"This product includes cryptographic\ + \ software written by\n Eric Young (eay@cryptsoft.com)\"\n The word 'cryptographic'\ + \ can be left out if the rouines from the library\n being used are not cryptographic related\ + \ :-).\n4. If you include any Windows specific code (or a derivative thereof) from \n \ + \ the apps directory (application code) you must include an acknowledgement:\n \"This\ + \ product includes software written by Tim Hudson (tjh@cryptsoft.com)\"\n\nTHIS SOFTWARE\ + \ IS PROVIDED BY ERIC YOUNG ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,\ + \ BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\ + \ PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\nFOR\ + \ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING,\ + \ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR\ + \ PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER\ + \ IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\ + \ ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH\ + \ DAMAGE.\n\nThe licence and distribution terms for any publically available version or\n\ + derivative of this code cannot be changed. i.e. this code cannot simply be\ncopied and\ + \ put under another distribution licence\n[including the GNU Public Licence.]" json: openssl-ssleay.json - yml: openssl-ssleay.yml + yaml: openssl-ssleay.yml html: openssl-ssleay.html - text: openssl-ssleay.LICENSE + license: openssl-ssleay.LICENSE - license_key: openvpn-as-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-openvpn-as-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + OpenVPN Access Server End User License Agreement (OpenVPN-AS EULA) + + 1. Copyright Notice: OpenVPN Access Server License; + Copyright (c) 2009-2013 OpenVPN Technologies, Inc. All rights reserved. + "OpenVPN" is a trademark of OpenVPN Technologies, Inc. + + 2. Redistribution of OpenVPN Access Server binary forms and related documents, + are permitted provided that redistributions of OpenVPN Access Server binary + forms and related documents reproduce the above copyright notice as well as a + complete copy of this EULA. + + 3. You agree not to reverse engineer, decompile, disassemble, modify, translate, + make any attempt to discover the source code of this software, or create + derivative works from this software. + + 4. The OpenVPN Access Server is bundled with other open source software + components, some of which fall under different licenses. By using OpenVPN or any + of the bundled components, you agree to be bound by the conditions of the + license for each respective component. For more information, you can find our + complete EULA (End-User License Agreement) on our website (http://openvpn.net), + and a copy of the EULA is also distributed with the Access Server in the file + /usr/local/openvpn_as/license.txt. + + 5. This software is provided "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 OpenVPN + Technologies, Inc. be liable for any direct, indirect, incidental, special, + exemplary, or consequential damages (including, but not limited to, procurement + of substitute goods or services; loss of use, data, or profits; or business + interruption) however caused and on any theory of liability, whether in + contract, strict liability, or tort (including negligence or otherwise) arising + in any way out of the use of this software, even if advised of the possibility + of such damage. + + 6. OpenVPN Technologies, Inc. is the sole distributor of OpenVPN Access Server + licenses. This agreement and licenses granted by it may not be assigned, + sublicensed, or otherwise transferred by licensee without prior written consent + of OpenVPN Technologies Inc. Any licenses violating this provision will be + subject to revocation and deactivation, and will not be eligible for refunds. + + 7. A purchased license entitles you to use this software for the duration of + time denoted on your license key on any one (1) particular device, up to the + concurrent user limit specified by your license. Multiple license keys may be + activated to achieve a desired concurrency limit on this given device. Unless + otherwise prearranged with OpenVPN Technologies, Inc., concurrency counts on + license keys are not to be divided for use amongst multiple devices. Upon + activation of the first purchased license key in this software, you agree to + forego any free licenses or keys that were given to you for demonstration + purposes, and as such, the free licenses will not appear after the activation of + a purchased key. You are responsible for the timely activation of these licenses + on your desired server of choice. Refunds on purchased license keys are only + possible within 30 days of purchase of license key, and then only if the license + key has not already been activated on a system. To request a refund, contact us + through our support ticket system using the account you have used to purchase + the license key. Exceptions to this policy may be given for machines under + failover mode, and when the feature is used as directed in the OpenVPN Access + Server user manual. In these circumstances, a user is granted one (1) license + key (per original license key) for use solely on failover purposes free of + charge. Other failover and/or load balancing use cases will not be eligible for + this exception, and a separate license key would have to be acquired to satisfy + the licensing requirements. To request a license exception, please file a + support ticket in the OpenVPN Access Server ticketing system. A staff member + will be responsible for determining exception eligibility, and we reserve the + right to decline any requests not meeting our eligibility criteria, or requests + which we believe may be fraudulent in nature. + + 8. Activating a license key ties it to the specific hardware/software + combination that it was activated on, and activated license keys are + nontransferable. Substantial software and/or hardware changes may invalidate an + activated license. In case of substantial software and/or hardware changes, + caused by for example, but not limited to failure and subsequent repair or + alterations of (virtualized) hardware/software, our software product will + automatically attempt to contact our online licensing systems to renegotiate the + licensing state. On any given license key, you are limited to three (3) + automatic renegotiations within the license key lifetime. After these + renegotiations are exhausted, the license key is considered invalid, and the + activation state will be locked to the last valid system configuration it was + activated on. OpenVPN Technologies, Inc. reserves the right to grant exceptions + to this policy for license holders under extenuating circumstances, and such + exceptions can be requested through a ticket via the OpenVPN Access Server + ticketing system. + + 9. Once an activated license key expires or becomes invalid, the concurrency + limit on our software product will decrease by the amount of concurrent + connections previously granted by the license key. If all of your purchased + license key(s) have expired, the product will revert to demonstration mode, + which allows a maximum of two (2) concurrent users to be connected to your + server. Prior to your license expiration date(s), OpenVPN Technologies, Inc. + will attempt to remind you to renew your license(s) by sending periodic email + messages to the licensee email address on record. You are solely responsible for + the timely renewal of your license key(s) prior to their expiration if continued + operation is expected after the license expiration date(s). OpenVPN + Technologies, Inc. will not be responsible for any misdirected and/or + undeliverable email messages, nor does it have an obligation to contact you + regarding your expiring license keys. + + 10. Any valid license key holder is entitled to use our ticketing system for + support questions or issues specifically related to the OpenVPN Access Server + product. To file a ticket, go to our website at http://openvpn.net/ and sign in + using the account that was registered and used to purchase the license key(s). + You can then access the support ticket system through our website and submit a + support ticket. Tickets filed in the ticketing system are answered on a best- + effort basis. OpenVPN Technologies, Inc. staff reserve the right to limit + responses to users of our demo / expired licenses, as well as requests that + substantively deviate from the OpenVPN Access Server product line. Tickets + related to the open source version of OpenVPN will not be handled here. + + 11. Purchasing a license key does not entitle you to any special rights or + privileges, except the ones explicitly outlined in this user agreement. Unless + otherwise arranged prior to your purchase with OpenVPN Technologies, Inc., + software maintenance costs and terms are subject to change after your initial + purchase without notice. In case of price decreases or special promotions, + OpenVPN Technologies, Inc. will not retrospectively apply credits or price + adjustments toward any licenses that have already been issued. Furthermore, no + discounts will be given for license maintenance renewals unless this is + specified in your contract with OpenVPN Technologies, Inc. json: openvpn-as-eula.json - yml: openvpn-as-eula.yml + yaml: openvpn-as-eula.yml html: openvpn-as-eula.html - text: openvpn-as-eula.LICENSE + license: openvpn-as-eula.LICENSE - license_key: openvpn-openssl-exception + category: Copyleft Limited spdx_license_key: openvpn-openssl-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + Special exception for linking OpenVPN with OpenSSL: + + In addition, as a special exception, OpenVPN Technologies, Inc. gives permission + to link the code of 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 General Public License in + all respects for all of the code used other than OpenSSL. If you modify this + file, you may extend this exception to your version of the file, but you are not + obligated to do so. If you do not wish to do so, delete this exception statement + from your version. json: openvpn-openssl-exception.json - yml: openvpn-openssl-exception.yml + yaml: openvpn-openssl-exception.yml html: openvpn-openssl-exception.html - text: openvpn-openssl-exception.LICENSE + license: openvpn-openssl-exception.LICENSE - license_key: opera-eula-2018 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-opera-eula-2018 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + End User License Agreement + Opera for Computers + Last updated: December 14, 2018 + + This end user license agreement (“EULA”) governs your download and/or use of the executable code for the Opera for Computers desktop software application, including any update or upgrade thereto (“Software”). This EULA forms a binding contract between you and Opera Unite Pte. Ltd., a Singapore company with a registered address at 8 Burn Road #07-07 Trivex, Singapore 369977 (“Opera”). + + Terms & Conditions + 1. This is a contract. This EULA constitutes a contract between you and Opera. You may not use the Software if you do not accept the terms in this EULA. By downloading and/or using the Software, you agree to be bound by all the terms and conditions set forth in this EULA. If you are under thirteen (13) years of age, or at least thirteen (13) years of age but a minor where you live, you must have your parent or legal guardian accept this EULA on your behalf and approve your use of the Software. + + 2. You are only granted a limited license to use the Software. Subject to the terms and conditions of this EULA, Opera hereby grants you a personal, limited, non-exclusive, non-transferable, non-sublicensable license to: + + (A) use the executable code version of the Software solely as installed on your personal computer; and + + (B) reproduce and distribute the Software solely as included in an application repository for a desktop open source operating system distribution PROVIDED THAT in all cases the Software is distributed: (i) without modification; (ii) free of charge to end-users; and (iii) with a copy of this EULA. Distribution for embedded open source operating systems is not permitted. For the avoidance of doubt, the Software must be distributed without modification (including as to the default search engine(s) in the Software settings), both at the time of distribution as well as after the Software is installed. + + You may only use the Software as expressly authorized in this Section 2. + + 3. You must respect our rights in the Software. Unless expressly permitted by law, you may not copy, decompile, reverse engineer, disassemble, attempt to derive the source code of, modify, or create derivative works of the Software. You may not remove, obscure, or alter any copyright notice or other proprietary rights notices affixed to or contained within the Software. You may not separate the component programs of the Software for use on different computers or sublicense, lease, rent, loan, or distribute the Software to any third party. You may not permit, direct or authorize any third party to take any action with respect to the Software which is inconsistent with the terms set forth in this EULA. + + 4. The Software contains our valuable intellectual property. You acknowledge and agree that the Software, including its sequence, structure, organization, source code and applicable documentation, contains valuable trade secrets and other intellectual property of Opera and its suppliers. The Software is licensed and not sold to you, and no title or ownership to such Software or the intellectual property rights embodied therein is granted to you. The Software is the exclusive property of Opera and its suppliers, and all rights in and to the Software not expressly granted to you in this Agreement are reserved. Nothing in this EULA will be deemed to grant, by implication, estoppel or otherwise, a license under any existing or future patents of Opera, except to the extent necessary for you to use the Software as expressly permitted under this EULA. You acknowledge and agree that any actual or threatened breach of this EULA will constitute immediate, irreparable harm to Opera for which monetary damages would be an inadequate remedy, and that injunctive relief is an appropriate remedy for any such breach or violation. + + 5. Components from third parties may be delivered along with the Software. The Software is delivered along with certain software components provided by third parties (“Third Party Software”). Opera shall not be responsible for any such Third-Party Software. Third-Party Software, particularly open source software, may be subject to separate license terms included with, or contained in the setup installation segments of such Third-Party Software. The terms set forth in this EULA do not apply to Third-Party Software to the extent they are inconsistent with such Third-Party Software licenses. This EULA governs your use of the Software in executable form. Source code for any open source Third-Party Software delivered along with the Software can be obtained at http://sourcecode.opera.com or by sending an email message to opensource@opera.com. + + 6. The Software may provide for access to additional services. Various services may be offered where available via or as integrated into the Software (“Services”). By using any such Services, you agreed to the terms of service at https://www.opera.com/terms (“Terms of Service”). The Terms of Service are incorporated into this EULA by this reference. As is more fully explained in the Terms of Service, some Services are offered by Opera, others by third parties (which may be subject to separate terms – please refer to the Terms of Service for more information). Opera reserves the right at any time and from time to time to modify or discontinue, temporarily or permanently, the Services (or any part thereof) with or without notice. You agree that Opera shall not be liable to you or to any third party for any modification, suspension or discontinuance of the Services. + + 7. Our Software and Services are ad-supported. The Software is free to download and our Services are generally provided free of charge. Opera incurs substantial development, collocation and bandwidth expenses in doing this. To support our business and continue providing you with the Software and Services for free, we will display the advertisements of select partners to you. By using our Software and Services, you consent to the placement of such advertisements within the Software and Services. + + 8. Your privacy is important to us. Opera takes the protection and security of its users’ information very seriously and will treat any and all such information in accordance with our privacy statement, which is currently posted at https://www.opera.com/privacy (“Privacy Statement”). The Privacy Statement is incorporated into this EULA by this reference. You agree to the use of your data in accordance with Opera’s Privacy Statement. + + 9. Your license to use the Software terminates if you breach this EULA. This EULA will commence upon your download of the Software and continue in perpetuity unless terminated earlier as provided herein. This EULA will immediately terminate upon your breach of any of the terms or conditions set forth herein. Upon the termination of the EULA, you will discontinue all use of the Software, promptly destroy or have destroyed the Software and any copies thereof, and, upon request by Opera, certify in writing that such destruction has taken place. These remedies are cumulative and in addition to any other remedies which may be available. Section 1, as well as Sections 3 through 14 of this EULA shall survive termination. + + 10. The Software is provided without any warranties or guarantees. THE SOFTWARE IS PROVIDED “AS IS”, AND OPERA DISCLAIMS ALL WARRANTIES WITH REGARD TO THE SOFTWARE WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR USE, SATISFACTORY QUALITY, OR QUIET ENJOYMENT. OPERA DOES NOT WARRANT THAT THE USE OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR FREE OR THAT THE SOFTWARE DOES NOT CONTAIN ANY VIRUSES. THIS WARRANTY DISCLAIMER IS A FUNDAMENTAL ELEMENT OF THE BASIS OF THE BARGAIN BETWEEN YOU AND OPERA. OPERA WOULD NOT PROVIDE THE SOFTWARE ABSENT SUCH DISCLAIMER. NO REPRESENTATIONS OR WARRANTIES ARE MADE BY ANY OF OPERA’S CUSTOMERS OR SUPPLIERS UNDER OR BY VIRTUE OF THIS AGREEMENT. IF YOU ARE DISSATISFIED WITH ANY PORTION OF THE SOFTWARE, OR WITH ANY OF THESE TERMS, YOUR SOLE AND EXCLUSIVE REMEDY IS TO DISCONTINUE USING THE SOFTWARE. + + 11. Opera is not liable for any damages you may incur. IN NO EVENT SHALL OPERA, ITS AFFILIATES, OR THEIR RESPECTIVE SUPPLIERS OR CUSTOMERS BE LIABLE FOR ANY INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR INDIRECT DAMAGES OF ANY KIND (INCLUDING WITHOUT LIMITATION DAMAGES FOR INTERRUPTION OF BUSINESS, LOST DATA, LOST PROFITS, OR THE LIKE) REGARDLESS OF THE FORM OF ACTION, WHETHER IN CONTRACT, TORT (INCLUDING WITHOUT LIMITATION NEGLIGENCE), PRODUCT LIABILITY, OR OTHER THEORY, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN NO EVENT WILL THE CUMULATIVE LIABILITY OF OPERA ARISING OUT OF OR RELATED TO THIS AGREEMENT EXCEED THE AMOUNT PAID TO OPERA IN RESPECT OF THE SOFTWARE GIVING RISE TO THE CLAIM OR, IF NO FEES WERE PAID, THEN FIVE HUNDRED EUROS. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE FOREGOING EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. THIS LIMITATION OF LIABILITY WILL APPLY NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY SET FORTH HEREIN. THIS LIMITATION OF LIABILITY IS A FUNDAMENTAL ELEMENT OF THE BASIS OF THE BARGAIN BETWEEN YOU AND OPERA. OPERA WOULD NOT PROVIDE THE SOFTWARE TO YOU ABSENT SUCH LIMITATION. + + 12. This contract is based on English law. This EULA will be governed by the laws of England and Wales, without giving effect to any conflicts of law principles that may require the application of the laws of a different country. Any and all disputes arising out of or in connection with this EULA, including any question regarding its existence, validity or termination, shall be referred to and finally resolved by arbitration in English in accordance with the UNCITRAL Arbitration Rules for the time being in force at the commencement of the arbitration. The place of arbitration shall be Singapore before a tribunal of three arbitrators, one to be appointed by each of the parties and the third by the two so chosen, unless the parties have agreed to the appointment of a sole arbitrator. The parties agree that the seat of the arbitration shall remain in London. Notwithstanding this, you agree that Opera shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction. If any provision of this EULA is determined by a court of competent jurisdiction to be invalid, illegal, or unenforceable, the remaining provisions of this EULA shall not be affected or impaired thereby + + 13. Opera may modify these terms. Opera may update the terms of this EULA, the Privacy Statement or the Terms of Service. The current version of this EULA is posted at https://www.opera.com/eula/computers, the latest version of the Privacy Statement is posted at https://www.opera.com/privacy, and the Terms of Service are posted at https://www.opera.com/terms. It is your responsibility to remain informed of any changes as you are bound by the latest version of the EULA, Privacy Statement and Terms of Service. + + 14. General. You acknowledge and agree that the Software may contain cryptographic functionality the export of which may be restricted under applicable export control law. You will comply with all applicable laws and regulations in your activities with regard to the Software. You will not export or re-export the Software in violation of such laws or regulations or without all required licenses and authorizations. You may not assign or transfer this contract without obtaining Opera’s prior written consent, and any purported assignment or transfer in violation of this restriction will be null and void. json: opera-eula-2018.json - yml: opera-eula-2018.yml + yaml: opera-eula-2018.yml html: opera-eula-2018.html - text: opera-eula-2018.LICENSE + license: opera-eula-2018.LICENSE - license_key: opera-eula-eea-2018 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-opera-eula-eea-2018 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + End User License Agreement + Opera for Computers + Last updated: December 14, 2018 + + This end user license agreement (“EULA”) governs your download and/or use of the executable code for the Opera for Computers desktop software application, including any update or upgrade thereto (“Software”). This EULA forms a binding contract between you and Opera Software AS, a Norwegian company with an address at P.O. Box 4214 Nydalen, NO-0401 Oslo, Norway (“Opera”). + + Terms & Conditions + 1. This is a contract. This EULA constitutes a contract between you and Opera. You may not use the Software if you do not accept the terms in this EULA. By downloading and/or using the Software, you agree to be bound by all the terms and conditions set forth in this EULA. If you are under thirteen (13) years of age, or at least thirteen (13) years of age but a minor where you live, you must have your parent or legal guardian accept this EULA on your behalf and approve your use of the Software. + + 2. You are only granted a limited license to use the Software. Subject to the terms and conditions of this EULA, Opera hereby grants you a personal, limited, non-exclusive, non-transferable, non-sublicensable license to: + + (A) use the executable code version of the Software solely as installed on your personal computer; and + + (B) reproduce and distribute the Software solely as included in an application repository for a desktop open source operating system distribution PROVIDED THAT in all cases the Software is distributed: (i) without modification; (ii) free of charge to end-users; and (iii) with a copy of this EULA. Distribution for embedded open source operating systems is not permitted. For the avoidance of doubt, the Software must be distributed without modification (including as to the default search engine(s) in the Software settings), both at the time of distribution as well as after the Software is installed. + + You may only use the Software as expressly authorized in this Section 2. + + 3. You must respect our rights in the Software. Unless expressly permitted by law, you may not copy, decompile, reverse engineer, disassemble, attempt to derive the source code of, modify, or create derivative works of the Software. You may not remove, obscure, or alter any copyright notice or other proprietary rights notices affixed to or contained within the Software. You may not separate the component programs of the Software for use on different computers or sublicense, lease, rent, loan, or distribute the Software to any third party. You may not permit, direct or authorize any third party to take any action with respect to the Software which is inconsistent with the terms set forth in this EULA. + + 4. The Software contains our valuable intellectual property. You acknowledge and agree that the Software, including its sequence, structure, organization, source code and applicable documentation, contains valuable trade secrets and other intellectual property of Opera and its suppliers. The Software is licensed and not sold to you, and no title or ownership to such Software or the intellectual property rights embodied therein is granted to you. The Software is the exclusive property of Opera and its suppliers, and all rights in and to the Software not expressly granted to you in this Agreement are reserved. Nothing in this EULA will be deemed to grant, by implication, estoppel or otherwise, a license under any existing or future patents of Opera, except to the extent necessary for you to use the Software as expressly permitted under this EULA. You acknowledge and agree that any actual or threatened breach of this EULA will constitute immediate, irreparable harm to Opera for which monetary damages would be an inadequate remedy, and that injunctive relief is an appropriate remedy for any such breach or violation. + + 5. Components from third parties may be delivered along with the Software. The Software is delivered along with certain software components provided by third parties (“Third Party Software”). Opera shall not be responsible for any such Third-Party Software. Third-Party Software, particularly open source software, may be subject to separate license terms included with, or contained in the setup installation segments of such Third-Party Software. The terms set forth in this EULA do not apply to Third-Party Software to the extent they are inconsistent with such Third-Party Software licenses. This EULA governs your use of the Software in executable form. Source code for any open source Third-Party Software delivered along with the Software can be obtained at http://sourcecode.opera.com or by sending an email message to opensource@opera.com. + + 6. The Software may provide for access to additional services. Various services may be offered where available via or as integrated into the Software (“Services”). By using any such Services, you agreed to the terms of service at https://www.opera.com/terms (“Terms of Service”). The Terms of Service are incorporated into this EULA by this reference. As is more fully explained in the Terms of Service, some Services are offered by Opera, others by third parties (which may be subject to separate terms – please refer to the Terms of Service for more information). Opera reserves the right at any time and from time to time to modify or discontinue, temporarily or permanently, the Services (or any part thereof) with or without notice. You agree that Opera shall not be liable to you or to any third party for any modification, suspension or discontinuance of the Services. + + 7. Our Software and Services are ad-supported. The Software is free to download and our Services are generally provided free of charge. Opera incurs substantial development, collocation and bandwidth expenses in doing this. To support our business and continue providing you with the Software and Services for free, we will display the advertisements of select partners to you. By using our Software and Services, you consent to the placement of such advertisements within the Software and Services. + + 8. Your privacy is important to us. Opera takes the protection and security of its users’ information very seriously and will treat any and all such information in accordance with our privacy statement, which is currently posted at https://www.opera.com/privacy (“Privacy Statement”). The Privacy Statement is incorporated into this EULA by this reference. You agree to the use of your data in accordance with Opera’s Privacy Statement. + + 9. Your license to use the Software terminates if you breach this EULA. This EULA will commence upon your download of the Software and continue in perpetuity unless terminated earlier as provided herein. This EULA will immediately terminate upon your breach of any of the terms or conditions set forth herein. Upon the termination of the EULA, you will discontinue all use of the Software, promptly destroy or have destroyed the Software and any copies thereof, and, upon request by Opera, certify in writing that such destruction has taken place. These remedies are cumulative and in addition to any other remedies which may be available. Section 1, as well as Sections 3 through 14 of this EULA shall survive termination. + + 10. The Software is provided without any warranties or guarantees. THE SOFTWARE IS PROVIDED “AS IS”, AND OPERA DISCLAIMS ALL WARRANTIES WITH REGARD TO THE SOFTWARE WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR USE, SATISFACTORY QUALITY, OR QUIET ENJOYMENT. OPERA DOES NOT WARRANT THAT THE USE OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR FREE OR THAT THE SOFTWARE DOES NOT CONTAIN ANY VIRUSES. THIS WARRANTY DISCLAIMER IS A FUNDAMENTAL ELEMENT OF THE BASIS OF THE BARGAIN BETWEEN YOU AND OPERA. OPERA WOULD NOT PROVIDE THE SOFTWARE ABSENT SUCH DISCLAIMER. NO REPRESENTATIONS OR WARRANTIES ARE MADE BY ANY OF OPERA’S CUSTOMERS OR SUPPLIERS UNDER OR BY VIRTUE OF THIS AGREEMENT. IF YOU ARE DISSATISFIED WITH ANY PORTION OF THE SOFTWARE, OR WITH ANY OF THESE TERMS, YOUR SOLE AND EXCLUSIVE REMEDY IS TO DISCONTINUE USING THE SOFTWARE. + + 11. Opera is not liable for any damages you may incur. IN NO EVENT SHALL OPERA, ITS AFFILIATES, OR THEIR RESPECTIVE SUPPLIERS OR CUSTOMERS BE LIABLE FOR ANY INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR INDIRECT DAMAGES OF ANY KIND (INCLUDING WITHOUT LIMITATION DAMAGES FOR INTERRUPTION OF BUSINESS, LOST DATA, LOST PROFITS, OR THE LIKE) REGARDLESS OF THE FORM OF ACTION, WHETHER IN CONTRACT, TORT (INCLUDING WITHOUT LIMITATION NEGLIGENCE), PRODUCT LIABILITY, OR OTHER THEORY, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN NO EVENT WILL THE CUMULATIVE LIABILITY OF OPERA ARISING OUT OF OR RELATED TO THIS AGREEMENT EXCEED THE AMOUNT PAID TO OPERA IN RESPECT OF THE SOFTWARE GIVING RISE TO THE CLAIM OR, IF NO FEES WERE PAID, THEN FIVE HUNDRED EUROS. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE FOREGOING EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. THIS LIMITATION OF LIABILITY WILL APPLY NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY SET FORTH HEREIN. THIS LIMITATION OF LIABILITY IS A FUNDAMENTAL ELEMENT OF THE BASIS OF THE BARGAIN BETWEEN YOU AND OPERA. OPERA WOULD NOT PROVIDE THE SOFTWARE TO YOU ABSENT SUCH LIMITATION. + + 12. This contract is based on Norwegian law. This EULA will be governed by the laws of Norway without giving effect to any conflicts of law principles that may require the application of the laws of a different country. The United Nations Convention on Contracts for the International Sale of Goods does not apply to this Agreement. All actions or proceedings arising under or related to this Agreement must be brought in the Oslo City Court, and you hereby agree to irrevocably submit to the exclusive jurisdiction and venue of any such court in all such actions or proceedings. Notwithstanding this, you agree that Opera shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction. If any provision of this EULA is determined by a court of competent jurisdiction to be invalid, illegal, or unenforceable, the remaining provisions of this EULA shall not be affected or impaired thereby. + + 13. Opera may modify these Terms. Opera may update the terms of this EULA, the Privacy Statement or the Terms of Service. The current version of this EULA is posted at https://www.opera.com/eula/computers, the latest version of the Privacy Statement is posted at https://www.opera.com/privacy, and the Terms of Service are posted at https://www.opera.com/terms. It is your responsibility to remain informed of any changes as you are bound by the latest version of the EULA, Privacy Statement and Terms of Service. + + 14. General. You acknowledge and agree that the Software may contain cryptographic functionality the export of which may be restricted under applicable export control law. You will comply with all applicable laws and regulations in your activities with regard to the Software. You will not export or re-export the Software in violation of such laws or regulations or without all required licenses and authorizations. You may not assign or transfer this contract without obtaining Opera’s prior written consent, and any purported assignment or transfer in violation of this restriction will be null and void. json: opera-eula-eea-2018.json - yml: opera-eula-eea-2018.yml + yaml: opera-eula-eea-2018.yml html: opera-eula-eea-2018.html - text: opera-eula-eea-2018.LICENSE + license: opera-eula-eea-2018.LICENSE - license_key: opera-widget-1.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-opera-widget-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "OPERA Widget License Version 1. 0\n© Copyright 2006 Opera Software ASA. All rights\ + \ reserved. \n\nOPERA SOFTWARE ASA (OPERA) IS WILLING TO PERMIT USE OF THIS SOFTWARE BY\ + \ \nYOU, ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED \nIN THIS DOCUMENT.\ + \ PLEASE READ THE TERMS AND CONDITIONS OF THIS AGREEMENT \nCAREFULLY. IF YOU ARE NOT WILLING\ + \ TO BE BOUND, YOU ARE NOT ALLOWED TO \nACCESS THE CONTENTS OF, STUDY OR MAKE USE OF THE\ + \ SOFTWARE IN ANY WAY. \n\n\nTerms of Agreement\n\n\n1. Definitions\n\ta) \"Original Code\"\ + \ means:\nThe original version of the program accompanying this Agreement as \nreleased\ + \ by Opera Software ASA (\"OPERA\") , including source code, object \ncode and documentation,\ + \ if any. \n\tb) \"Covered Code\" means:\nThe Original Source Code, Contributions, the\ + \ combination of the Original \nCode and Contributions, and/or any respective portions thereof.\ + \ \n\tc) \"Contribution\" means:\nin the case of OPERA, the Original Code, and\nin the\ + \ case of each Contributor, changes to the Original code, and \nadditions to the Original\ + \ Code; where such changes and/or additions to \nthe Original Code originate from and are\ + \ distributed by that particular \nContributor. A Contribution 'originates' from a Contributor\ + \ if it was \nadded to the Original Code by such Contributor itself or anyone acting \n\ + on such Contributor's behalf. \nContributions do not include additions to the Original\ + \ Code which: (i) \nare separate modules of software distributed in conjunction with the\ + \ \nOriginal Code under their own license agreement, and (ii) are not \nderivative works\ + \ of the Original Code. \n\td) \"Contributor\" means:\nOPERA and any other entity that\ + \ distributes the Covered Code. \n\te) \"Recipient\" means:\nAnyone who receives the Covered\ + \ Code under this Agreement, including all \nContributors. \n\tf) \"Larger Work\" means:\n\ + A work which combines Covered Code or portions thereof with code not \ngoverned by the terms\ + \ of this Agreement, specifically additions to the \nOriginal Code which: (i) are separate\ + \ modules of software distributed in \nconjunction with the Original Code under their own\ + \ license agreement, \nand (ii) are not derivative works of the Original Code. \n\n\n\ + 2. Grant of Rights\n\ta) Subject to the terms of this Agreement, each Contributor hereby\ + \ grants \nRecipient a non-exclusive, worldwide, royalty-free copyright license to \nreproduce,\ + \ prepare derivative works of, publicly display, publicly \nperform, distribute and sublicense\ + \ the Contribution of such Contributor, \nif any, and such derivative works, in source code\ + \ and object code form. \nThe limited license granted in this Section is only for the integration\ + \ \nof the Contribution with or for the use of the Contribution in \nconnection with other\ + \ proprietary software of OPERA, including but not \nlimited to OPERA’s browser software.\ + \ \n\tb) Recipient understands that although each Contributor grants the \nlicenses to\ + \ its Contributions set forth herein, no assurances are \nprovided by any Contributor that\ + \ the Covered Code does not infringe the \npatent or other intellectual property rights\ + \ of any other entity. Each \nContributor disclaims any liability to Recipient for claims\ + \ brought by \nany other entity based on infringement of intellectual property rights \n\ + or otherwise. As a condition to exercising the rights and licenses \ngranted hereunder,\ + \ each Recipient hereby assumes sole responsibility to \nsecure any other intellectual property\ + \ rights needed, if any. \n\tc) Each Contributor represents that to its knowledge it has\ + \ sufficient \ncopyright rights in its Contribution, if any, to grant the copyright \nlicense\ + \ set forth in this Agreement. \n\n\n3. Requirements\n\ta) A Contributor may choose to\ + \ distribute the Larger Work under its own \nlicense agreement, provided that: \n\t\ti.\ + \ it complies with the terms and conditions of this Agreement; \n\t\tii. and its license\ + \ agreement: \n\t\t\t1. effectively disclaims on behalf of all Contributors all warranties\ + \ and \nconditions, express and implied, including warranties or conditions of \ntitle and\ + \ non-infringement, and implied warranties or conditions of \nmerchantability and fitness\ + \ for a particular purpose; \n\t\t\t2. effectively excludes on behalf of all Contributors\ + \ all liability for \ndamages, including direct, indirect, special, incidental and \nconsequential\ + \ damages, such as lost profits; \n\t\t\t3. states that any provisions which differ from\ + \ this Agreement are \noffered by that Contributor alone and not by any other party; \n\t\ + \t\t4. states that the Contribution only may be integrated with or used with \nother proprietary\ + \ software of OPERA, including but not limited to \nOPERA’s browser software. \n\t\t\t\ + 5. and states that source code for the Covered Code is available from \nsuch Contributor,\ + \ and informs licensees how to obtain it in a reasonable \nmanner on or through a medium\ + \ customarily used for software exchange. \n\tb) When the Covered Code is made available:\ + \ \n\t\ti. it must be made available under this Agreement; and a copy of this \nAgreement\ + \ must be included with each copy of the Covered Code. \n\t\tii. Each Contributor must\ + \ duplicate, to the extent it does not already \nexist, the notice in Exhibit A in each\ + \ file of the Covered Code of all \nContributions, and cause the modified files to carry\ + \ prominent notices \nstating that the contributor changed the files and the date of any\ + \ \nchange. \n\t\tiii. In addition, each Contributor must identify itself as the originator\ + \ \nof its Contribution, if any, in a manner that reasonably allows \nsubsequent Recipients\ + \ to identify the originator of the Contribution. \n\n\n4. No Warranty \nEXCEPT AS EXPRESSLY\ + \ SET FORTH IN THIS AGREEMENT, THE COVERED CODE IS \nPROVIDED ON AN \"AS IS\" BASIS, WITHOUT\ + \ WARRANTIES OR CONDITIONS OF ANY \nKIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,\ + \ ANY \nWARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR \nFITNESS\ + \ FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible \nfor determining the\ + \ appropriateness of using and distributing the \nCovered Code for commercial and non-commercial\ + \ purposes and assumes all \nrisks associated with its exercise of rights under this Agreement,\ + \ \nincluding but not limited to the risks and costs of Covered Code errors, \ncompliance\ + \ with applicable laws, damage to or loss of data, code or \nequipment, and unavailability\ + \ or interruption of operations.\n\n\n5. Disclaimer of Liability \nEXCEPT AS EXPRESSLY SET\ + \ FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR \nANY CONTRIBUTORS SHALL HAVE ANY LIABILITY\ + \ FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING\ + \ \nWITHOUT LIMITATION LOST PROFITS) , HOWEVER CAUSED AND ON ANY THEORY OF \nLIABILITY,\ + \ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING \nNEGLIGENCE OR OTHERWISE) \ + \ ARISING IN ANY WAY OUT OF THE USE OR \nDISTRIBUTION OF THE COVERED CODE OR THE EXERCISE\ + \ OF ANY RIGHTS GRANTED \nHEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\ + \ \n\n\n6. General \nIf any provision of this Agreement is invalid or unenforceable under\ + \ \napplicable law, it shall not affect the validity or enforceability of \nthe remainder\ + \ of the terms of this Agreement, and without further action \nby the parties hereto, such\ + \ provision shall be reformed to the minimum \nextent necessary to make such provision valid\ + \ and enforceable. \n\nAll Recipient's rights under this Agreement shall terminate if it\ + \ fails \nto comply with any of the material terms or conditions of this Agreement \nand\ + \ does not cure such failure in a reasonable period of time after \nbecoming aware of such\ + \ noncompliance. If all Recipient's rights under \nthis Agreement terminate, Recipient\ + \ agrees to cease use and distribution \nof the Covered Code as soon as reasonably practicable.\ + \ However, \nRecipient's obligations under this Agreement and any licenses granted by \n\ + Recipient relating to the Covered Code shall continue and survive. \n\nOPERA may publish\ + \ new versions (including revisions) of this Agreement \nfrom time to time. Each new version\ + \ of the Agreement will be given a \ndistinguishing version number. The Covered Code (including\ + \ \nContributions) may always be distributed subject to the version of the \nAgreement\ + \ under which it was received. In addition, after a new version \nof the Agreement is published,\ + \ Contributor may elect to distribute the \nCovered Code (including its Contributions) \ + \ under the new version. No one \nother than OPERA has the right to modify this Agreement.\ + \ Except as \nexpressly stated in Section 2(a) , Recipient receives no rights or \nlicenses\ + \ to the intellectual property of any Contributor under this \nAgreement, whether expressly,\ + \ by implication, estoppel or otherwise. All \nrights in the Covered Code not expressly\ + \ granted under this Agreement \nare reserved. \n\nThis Agreement is governed by the laws\ + \ of Norway. Any and all disputes \narising out of the rights and obligations in this Agreement\ + \ shall be \nsubmitted to ordinary court proceedings. You accept the Oslo City Court \n\ + as legal venue under this Agreement." json: opera-widget-1.0.json - yml: opera-widget-1.0.yml + yaml: opera-widget-1.0.yml html: opera-widget-1.0.html - text: opera-widget-1.0.LICENSE + license: opera-widget-1.0.LICENSE - license_key: opl-1.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-opl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + OpenContent License (OPL) + Version 1.0, July 14. 1998 + + This document outlines the principles underlying the OpenContent (OC) movement and may be redistributed provided it remains unaltered. For legal purposes, this document is the license under which OpenContent is made available for use. + + The original version of this document may be found at http://www.opencontent.org/opl.html + + LICENSE + + Terms and Conditions for Copying, Distributing, and Modifying + + Items other than copying, distributing, and modifying the Content with which this license was distributed (such as using, etc.) are outside the scope of this license. + + 1. You may copy and distribute exact replicas of the OpenContent (OC) 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 OC a copy of this License along with the OC. You may at your option charge a fee for the media and/or handling involved in creating a unique copy of the OC for use offline, you may at your option offer instructional support for the OC in exchange for a fee, or you may at your option offer warranty in exchange for a fee. You may not charge a fee for the OC itself. You may not charge a fee for the sole service of providing access to and/or use of the OC via a network (e.g. the Internet), whether it be via the world wide web, FTP, or any other method. + + 2. You may modify your copy or copies of the OpenContent or any portion of it, thus forming works based on the Content, 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 content to carry prominent notices stating that you changed it, the exact nature and content of the changes, 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 OC or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License, unless otherwise permitted under applicable Fair Use law. + + These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the OC, 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 OC, 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. Exceptions are made to this requirement to release modified works free of charge under this license only in compliance with Fair Use law where applicable. + + 3. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to copy, distribute or modify the OC. These actions are prohibited by law if you do not accept this License. Therefore, by distributing or translating the OC, or by deriving works herefrom, you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or translating the OC. + + NO WARRANTY + 4. BECAUSE THE OPENCONTENT (OC) IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE OC, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE OC "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 OF USE OF THE OC IS WITH YOU. SHOULD THE OC PROVE FAULTY, INACCURATE, OR OTHERWISE UNACCEPTABLE YOU ASSUME THE COST OF ALL NECESSARY REPAIR OR CORRECTION. + + 5. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MIRROR AND/OR REDISTRIBUTE THE OC 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 OC, EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. json: opl-1.0.json - yml: opl-1.0.yml + yaml: opl-1.0.yml html: opl-1.0.html - text: opl-1.0.LICENSE + license: opl-1.0.LICENSE - license_key: opml-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-opml-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and these paragraphs are included on all such copies and derivative works. + + This document may not be modified in any way, such as by removing the copyright notice or references to UserLand or other organizations. Further, while these copyright restrictions apply to the written OPML specification, no claim of ownership is made by UserLand to the format it describes. Any party may, for commercial or non-commercial purposes, implement this protocol without royalty or license fee to UserLand. The limited permissions granted herein are perpetual and will not be revoked by UserLand or its successors or assigns. + + This document and the information contained herein is provided on an "AS IS" basis and USERLAND DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. json: opml-1.0.json - yml: opml-1.0.yml + yaml: opml-1.0.yml html: opml-1.0.html - text: opml-1.0.LICENSE + license: opml-1.0.LICENSE - license_key: opnl-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-opnl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Released under the Open Innovation License\n\nVersion 1, 10th November 2020\n\nCopyright\ + \ © 2020 Stark Drones Corporation\nCopyright © 2020 Andrew Magdy Kamal\n\nThis project is\ + \ licensed under the Open Innovation License. This means any code, file, diagrams, data\ + \ format, or other innovation containing this license within it can be copied, modified,\ + \ redistributed, published, or even used for commercial purposes within the context of this\ + \ license.\n\nAny code, file, diagrams, data format, or other innovation containing this\ + \ license is understood to be fully \"AS IS\", no claims are made in regards to safety,\ + \ security, warranty, usability, or other form of merchantability and market-readiness.\ + \ \nIn no events are copyright holders, authors, or publishers are to be held liable for\ + \ any claims, damage or results from usage of what have been licensed under this license.\n\ + The context of this license includes: Keeping this original license text verbatim and permissive\ + \ notice, as well as the copyright notice included in any redistribution of said project.\ + \ Project is defined as what is using this license. \nFor purposes of context, the copyright\ + \ notice above version and year is meant to be modified for whomsoever publishes or releases\ + \ \"any code, file, diagrams, data format, or other innovation\", so that they can include\ + \ their information.\nAfter modifying, the comment saying \"// Insert information of license\ + \ holder\" which starts with // can be removed. This current paragraph however, will remain\ + \ in-tact.\n\nAnybody who releases software under the \"Open Innovation License\" agrees\ + \ to at goodwill, build or release technology for the betterment of humanity not meant with\ + \ the intention to harm a human being.\nThey agree to a prima facie moral duty through consequential\ + \ deontology to understand that technology should be within the concept of moral good or\ + \ outcomes that are morally right and/or ethical. They agree at goodwill to promote the\ + \ advancement of humanity and civilization as a whole.\nThey agree to a sense of adventurement,\ + \ edification, and the expansion of the human mind.\n\nSaid agreement which is within the\ + \ last paragraph prior to this sentence is meant to be taken as a general consensus, but\ + \ not legally enforceable. Again for context, the last paragraph which starts with \"Anybody\"\ + \ and ends with \"human mind\" minus quotations, is outside of the boundaries of being legally\ + \ enforceable and within the duties of oneselve's actions. \nThe rest of the license which\ + \ includes the copyright notice and its context is within a legally enforceable context.\ + \ For secondary context, the rest of the license refers to anything outside of that said\ + \ paragraph." json: opnl-1.0.json - yml: opnl-1.0.yml + yaml: opnl-1.0.yml html: opnl-1.0.html - text: opnl-1.0.LICENSE + license: opnl-1.0.LICENSE - license_key: opnl-2.0 + category: Permissive spdx_license_key: LicenseRef-scancode-opnl-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The Open Innovation License\nVersion 2, 28th December 2020\nCopyright © 2020 Stark\ + \ Drones Corporation\nCopyright © 2020 Andrew Magdy Kamal\n\nPreamble\nThe Stark Drones\ + \ Corporation believes in building or releasing technology for the betterment of humanity.\ + \ Technology should not be meant with the intention of harming a human being. We believe\ + \ in a prima facie moral duty through personal moral obligation to understand that technology\ + \ should be within the concept of moral good or outcomes that are morally right and/or ethical.\ + \ We believe in promoting the advancement of humanity and civilization as a whole. \nWe\ + \ believe in a sense of adventurement, edification, and the expansion of the human mind.\n\ + \nReleased under the Open Innovation License\n\nThis project is licensed under the Open\ + \ Innovation License. This means any code, file, diagrams, data format, or other innovation\ + \ containing this license within it can be copied, modified, redistributed, published, or\ + \ even used for non and/or commercial purposes within the context of this license.\n\nAny\ + \ code, file, diagrams, data format, or other innovation containing this license is understood\ + \ to be fully \"AS IS\", no claims are made in regards to safety, security, warranty, usability,\ + \ or other form of merchantability and market-readiness. \nIn no events are copyright holders,\ + \ authors, or publishers are to be held liable for any claims, damage or results from usage\ + \ of what have been licensed under this license.\nThe context of this license includes:\ + \ Keeping this original license text and file verbatim, as well as the copyright notice\ + \ included in any redistribution of said project. Project is defined as what is using this\ + \ license.\nFor purposes of context, the copyright notice after the preamble is meant to\ + \ be modified for whomsoever publishes or releases \"any code, file, diagrams, data format,\ + \ or other innovation\", so that they can include their information." json: opnl-2.0.json - yml: opnl-2.0.yml + yaml: opnl-2.0.yml html: opnl-2.0.html - text: opnl-2.0.LICENSE + license: opnl-2.0.LICENSE - license_key: oracle-bcl-javaee + category: Proprietary Free spdx_license_key: LicenseRef-scancode-oracle-bcl-javaee other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Oracle Binary Code License Agreement for Java EE Technologies\n\nORACLE AMERICA, INC.\ + \ (\"ORACLE\"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON\ + \ CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU\ + \ ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL\ + \ LICENSE TERMS (COLLECTIVELY \"AGREEMENT\"). PLEASE READ THE AGREEMENT CAREFULLY. BY\ + \ SELECTING THE \"ACCEPT LICENSE AGREEMENT\" (OR THE EQUIVALENT) BUTTON AND/OR BY USING\ + \ THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE\ + \ AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT\ + \ YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE\ + \ SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE \"DECLINE\ + \ LICENSE AGREEMENT\" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS\ + \ SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED.\n\n1. DEFINITIONS. \"Software\"\ + \ means the software identified above in binary form that you selected for download, install\ + \ or use (in the version You selected for download, install or use) from Oracle or its authorized\ + \ licensees, any other machine readable materials (including, but not limited to, libraries,\ + \ source files, header files, and data files), any updates or error corrections provided\ + \ by Oracle, and any user manuals, programming guides and other documentation provided to\ + \ you by Oracle under this Agreement. \"Programs\" means Java technology applets and applications\ + \ intended to run on the Java Platform, Enterprise Edition platform. \"README File\" means\ + \ the README file for the Software set forth in the Software or otherwise available from\ + \ Oracle at or through the following URL: http://www.oracle.com/technetwork/java/javaee/documentation/index.html.\ + \ \n\n2. LICENSE TO USE. Subject to the terms and conditions of this Agreement including,\ + \ but not limited to, the Java Technology Restrictions of the Supplemental License Terms,\ + \ Oracle grants you a non-exclusive, non-transferable, limited license without license fees\ + \ to reproduce and use internally the Software complete and unmodified for the sole purpose\ + \ of running Programs.\n\n3. RESTRICTIONS. Software is copyrighted. Title to Software\ + \ and all associated intellectual property rights is retained by Oracle and/or its licensors.\ + \ Unless enforcement is prohibited by applicable law, you may not modify, decompile, or\ + \ reverse engineer Software. You acknowledge that the Software is developed for general\ + \ use in a variety of information management applications; it is not developed or intended\ + \ for use in any inherently dangerous applications, including applications that may create\ + \ a risk of personal injury. If you use the Software in dangerous applications, then you\ + \ shall be responsible to take all appropriate fail-safe, backup, redundancy, and other\ + \ measures to ensure its safe use. Oracle disclaims any express or implied warranty of\ + \ fitness for such uses. No right, title or interest in or to any trademark, service mark,\ + \ logo or trade name of Oracle or its licensors is granted under this Agreement. Additional\ + \ restrictions for developers are set forth in the Supplemental License Terms.\n\n4. DISCLAIMER\ + \ OF WARRANTY. THE SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. ORACLE\ + \ FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY\ + \ IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.\n\ + \n5. LIMITATION OF LIABILITY. IN NO EVENT SHALL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL,\ + \ SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA\ + \ OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT,\ + \ EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY\ + \ FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000). \n\n\ + 6. TERMINATION. This Agreement is effective until terminated. You may terminate this\ + \ Agreement at any time by destroying all copies of Software. This Agreement will terminate\ + \ immediately without notice from Oracle if you fail to comply with any provision of this\ + \ Agreement. Either party may terminate this Agreement immediately should any Software\ + \ become, or in either party's opinion be likely to become, the subject of a claim of infringement\ + \ of any intellectual property right. Upon termination, you must destroy all copies of\ + \ Software.\n\n7. EXPORT REGULATIONS. You agree that U.S. export control laws and other\ + \ applicable export and import laws govern your use of the Software, including technical\ + \ data; additional information can be found on Oracle's Global Trade Compliance web site\ + \ (http://www.oracle.com/products/export). You agree that neither the Software nor any direct\ + \ product thereof will be exported, directly, or indirectly, in violation of these laws,\ + \ or will be used for any purpose prohibited by these laws including, without limitation,\ + \ nuclear, chemical, or biological weapons proliferation. \n\n8. TRADEMARKS AND LOGOS.\ + \ You acknowledge and agree as between you and Oracle that Oracle owns the ORACLE and JAVA\ + \ trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other\ + \ brand designations (\"Oracle Marks\"), and you agree to comply with the Third Party Usage\ + \ Guidelines for Oracle Trademarks currently located at http://www.oracle.com/us/legal/third-party-trademarks/index.html.\ + \ Any use you make of the Oracle Marks inures to Oracle's benefit. \n\n9. U.S. GOVERNMENT\ + \ LICENSE RIGHTS. If Software is being acquired by or on behalf of the U.S. Government\ + \ or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's\ + \ rights in Software and accompanying documentation shall be only those set forth in this\ + \ Agreement. \n\n10. GOVERNING LAW. This agreement is governed by the substantive and\ + \ procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction\ + \ of, and venue in, the courts of San Francisco, or Santa Clara counties in California in\ + \ any dispute arising out of or relating to this agreement. \n\n11. SEVERABILITY. If\ + \ any provision of this Agreement is held to be unenforceable, this Agreement will remain\ + \ in effect with the provision omitted, unless omission would frustrate the intent of the\ + \ parties, in which case this Agreement will immediately terminate.\n\n12. INTEGRATION.\ + \ This Agreement is the entire agreement between you and Oracle relating to its subject\ + \ matter. It supersedes all prior or contemporaneous oral or written communications, proposals,\ + \ representations and warranties and prevails over any conflicting or additional terms of\ + \ any quote, order, acknowledgment, or other communication between the parties relating\ + \ to its subject matter during the term of this Agreement. No modification of this Agreement\ + \ will be binding, unless in writing and signed by an authorized representative of each\ + \ party.\n\nSUPPLEMENTAL LICENSE TERMS\n\nThese Supplemental License Terms add to or modify\ + \ the terms of the Binary Code License Agreement. Capitalized terms not defined in these\ + \ Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License\ + \ Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms\ + \ in the Binary Code License Agreement, or in any license contained within the Software.\n\ + \nA. SOFTWARE INTERNAL USE FOR DEVELOPMENT LICENSE GRANT. Subject to the terms and conditions\ + \ of this Agreement and restrictions and exceptions set forth in the README File incorporated\ + \ herein by reference, including, but not limited to the Java Technology Restrictions of\ + \ these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited\ + \ license without fees to reproduce internally and use internally the Software complete\ + \ and unmodified for the purpose of designing, developing, and testing your Programs.\n\n\ + B. LICENSE TO DISTRIBUTE SOFTWARE. Subject to the terms and conditions of this Agreement\ + \ and restrictions and exceptions set forth in the README File, including, but not limited\ + \ to the Java Technology Restrictions of these Supplemental Terms, Oracle grants you a non-exclusive,\ + \ non-transferable, limited license without fees to reproduce and distribute the Software,\ + \ provided that (i) you distribute the Software complete and unmodified and only bundled\ + \ as part of, and for the sole purpose of running, your Programs, (ii) the Programs add\ + \ significant and primary functionality to the Software, (iii) you do not distribute additional\ + \ software intended to replace any component(s) of the Software, (iv) you do not remove\ + \ or alter any proprietary legends or notices contained in the Software, (v) you only distribute\ + \ the Software subject to a license agreement that protects Oracle's interests consistent\ + \ with the terms contained in this Agreement, and (vi) you agree to defend and indemnify\ + \ Oracle and its licensors from and against any damages, costs, liabilities, settlement\ + \ amounts and/or expenses (including attorneys' fees) incurred in connection with any\ + \ claim, lawsuit or action by any third party that arises or results from the use or distribution\ + \ of any and all Programs and/or Software. The license set forth in this Section B does\ + \ not extend to the Software identified in Section D.\n\nC. LICENSE TO DISTRIBUTE REDISTRIBUTABLES.\ + \ Subject to the terms and conditions of this Agreement and restrictions and exceptions\ + \ set forth in the README File, including but not limited to the Java Technology Restrictions\ + \ of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited\ + \ license without fees to reproduce and distribute those files specifically identified\ + \ as redistributable in the README File (\"Redistributables\") provided that: (i) you distribute\ + \ the Redistributables complete and unmodified, and only bundled as part of Programs, (ii)\ + \ the Programs add significant and primary functionality to the Redistributables, (iii)\ + \ you do not distribute additional software intended to supersede any component(s) of the\ + \ Redistributables (unless otherwise specified in the applicable README File), (iv) you\ + \ do not remove or alter any proprietary legends or notices contained in or on the Redistributables,\ + \ (v) you only distribute the Redistributables pursuant to a license agreement that protects\ + \ Oracle's interests consistent with the terms contained in the Agreement, (vi) you agree\ + \ to defend and indemnify Oracle and its licensors from and against any damages, costs,\ + \ liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred\ + \ in connection with any claim, lawsuit or action by any third party that arises or results\ + \ from the use or distribution of any and all Programs and/or Software. The license set\ + \ forth in this Section C does not extend to the Software identified in Section D.\n\nD.\ + \ JAVA TECHNOLOGY RESTRICTIONS. You may not create, modify, or change the behavior of,\ + \ or authorize your licensees to create, modify, or change the behavior of, classes, interfaces,\ + \ or subpackages that are in any way identified as \"java\", \"javax\", \"javafx\", \"\ + javaee\", \"sun\", \"oracle\" or similar convention as specified by Oracle in any naming\ + \ convention designation. You shall not redistribute the Software listed on Schedule 1.\n\ + \nE. SOURCE CODE. Software may contain source code that, unless expressly licensed for\ + \ other purposes, is provided solely for reference purposes pursuant to the terms of this\ + \ Agreement. Source code may not be redistributed unless expressly provided for in this\ + \ Agreement.\n\nF. THIRD PARTY CODE. Additional copyright notices and license terms applicable\ + \ to portions of the Software are set forth in the THIRDPARTYLICENSEREADME file set forth\ + \ in the Software or otherwise available from Oracle at or through the following URL: http://www.oracle.com/technetwork/java/javaee/documentation/index.html\ + \ . In addition to any terms and conditions of any third party opensource/freeware license\ + \ identified in the THIRDPARTYLICENSEREADME file, the disclaimer of warranty and limitation\ + \ of liability provisions in paragraphs 4 and 5 of the Binary Code License Agreement shall\ + \ apply to all Software in this distribution.\n\nG. TERMINATION FOR INFRINGEMENT. Either\ + \ party may terminate this Agreement immediately should any Software become, or in either\ + \ party's opinion be likely to become, the subject of a claim of infringement of any intellectual\ + \ property right.\n\nH. INSTALLATION AND AUTO-UPDATE. The Software's installation and\ + \ auto-update processes transmit a limited amount of data to Oracle (or its service provider)\ + \ about those specific processes to help Oracle understand and optimize them. Oracle does\ + \ not associate the data with personally identifiable information. You can find more information\ + \ about the data Oracle collects as a result of your Software download at http://www.oracle.com/technetwork/java/javaee/documentation/index.html.\ + \ \n\nFor inquiries please contact: Oracle America, Inc., 500 Oracle Parkway,\nRedwood\ + \ Shores, California 94065, USA.\n\nLicense for Archived Java EE Technologies; Last updated\ + \ 30 January 2012 \nSchedule 1 to Supplemental Terms\nNon-redistributable Java Technologies\n\ + \nJava Platform, Enterprise Edition, Software Development Kit (except those files specifically\ + \ identified as redistributable in the README File)\n\nJava Platform, Standard Edition,\ + \ Software Development Kit\n\nJava Application Verification Kit (AVK) for Enterprise\n\n\ + Java Message Service API Demo\n\nJava Message Service\n\nJava Platform, Enterprise Edition\ + \ Deployment API\n\nJava Database Connectivity (JDBC) API Test Suite\n\nJava Web Services\ + \ Developer Pack and Documentation\n\nJava Web Services Tutorial\n\nJava Platform, Enterprise\ + \ Edition Client Provisioning" json: oracle-bcl-javaee.json - yml: oracle-bcl-javaee.yml + yaml: oracle-bcl-javaee.yml html: oracle-bcl-javaee.html - text: oracle-bcl-javaee.LICENSE + license: oracle-bcl-javaee.LICENSE - license_key: oracle-bcl-javase-javafx-2012 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-oracle-bcl-javase-javafx-2012 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX\n\ + \ \nORACLE AMERICA, INC. (\"ORACLE\"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES\ + \ AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON\ + \ THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE\ + \ AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\"). PLEASE READ THE\ + \ AGREEMENT CAREFULLY. BY SELECTING THE \"ACCEPT LICENSE AGREEMENT\" (OR THE EQUIVALENT)\ + \ BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE\ + \ TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY,\ + \ YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS.\ + \ IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN\ + \ SELECT THE \"DECLINE LICENSE AGREEMENT\" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE\ + \ THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED.\n \n\ + 1. DEFINITIONS. \"Software\" means the software identified above in binary form that you\ + \ selected for download, install or use (in the version You selected for download, install\ + \ or use) from Oracle or its authorized licensees, any other machine readable materials\ + \ (including, but not limited to, libraries, source files, header files, and data files),\ + \ any updates or error corrections provided by Oracle, and any user manuals, programming\ + \ guides and other documentation provided to you by Oracle under this Agreement. \"General\ + \ Purpose Desktop Computers and Servers\" means computers, including desktop and laptop\ + \ computers, or servers, used for general computing functions under end user control (such\ + \ as but not specifically limited to email, general purpose Internet browsing, and office\ + \ suite productivity tools). The use of Software in systems and solutions that provide\ + \ dedicated functionality (other than as mentioned above) or designed for use in embedded\ + \ or function-specific software applications, for example but not limited to: Software embedded\ + \ in or bundled with industrial control systems, wireless mobile telephones, wireless handheld\ + \ devices, netbooks, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control\ + \ switching equipment, printers and storage management systems, and other related systems\ + \ are excluded from this definition and not licensed under this Agreement. \"Programs\"\ + \ means (a) Java technology applets and applications intended to run on the Java Platform,\ + \ Standard Edition platform on Java-enabled General Purpose Desktop Computers and Servers;\ + \ and (b) JavaFX technology applications intended to run on the JavaFX Runtime on JavaFX-enabled\ + \ General Purpose Desktop Computers and Servers. \"Commercial Features\" means those features\ + \ identified in Table 1-1 (Commercial Features In Java SE Product Editions) of the Java\ + \ SE documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html.\ + \ \"README File\" means the README file for the Software accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html.\n\ + \ \n2. LICENSE TO USE. Subject to the terms and conditions of this Agreement including,\ + \ but not limited to, the Java Technology Restrictions of the Supplemental License Terms,\ + \ Oracle grants you a non-exclusive, non-transferable, limited license without license fees\ + \ to reproduce and use internally the Software complete and unmodified for the sole purpose\ + \ of running Programs. THE LICENSE SET FORTH IN THIS SECTION 2 DOES NOT EXTEND TO THE\ + \ COMMERCIAL FEATURES. YOUR RIGHTS AND OBLIGATIONS RELATED TO THE COMMERCIAL FEATURES ARE\ + \ AS SET FORTH IN THE SUPPLEMENTAL TERMS ALONG WITH ADDITIONAL LICENSES FOR DEVELOPERS AND\ + \ PUBLISHERS.\n \n3. RESTRICTIONS. Software is copyrighted. Title to Software and all\ + \ associated intellectual property rights is retained by Oracle and/or its licensors. Unless\ + \ enforcement is prohibited by applicable law, you may not modify, decompile, or reverse\ + \ engineer Software. You acknowledge that the Software is developed for general use in\ + \ a variety of information management applications; it is not developed or intended for\ + \ use in any inherently dangerous applications, including applications that may create a\ + \ risk of personal injury. If you use the Software in dangerous applications, then you shall\ + \ be responsible to take all appropriate fail-safe, backup, redundancy, and other measures\ + \ to ensure its safe use. Oracle disclaims any express or implied warranty of fitness for\ + \ such uses. No right, title or interest in or to any trademark, service mark, logo or\ + \ trade name of Oracle or its licensors is granted under this Agreement. Additional restrictions\ + \ for developers and/or publishers licenses are set forth in the Supplemental License Terms.\n\ + \ \n4. DISCLAIMER OF WARRANTY. THE SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF\ + \ ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT\ + \ LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\ + \ OR NONINFRINGEMENT. \n \n5. LIMITATION OF LIABILITY. IN NO EVENT SHALL ORACLE BE LIABLE\ + \ FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR\ + \ LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER\ + \ IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF\ + \ SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED\ + \ ONE THOUSAND DOLLARS (U.S. $1,000).\n \n6. TERMINATION. This Agreement is effective\ + \ until terminated. You may terminate this Agreement at any time by destroying all copies\ + \ of Software. This Agreement will terminate immediately without notice from Oracle if\ + \ you fail to comply with any provision of this Agreement. Either party may terminate\ + \ this Agreement immediately should any Software become, or in either party's opinion be\ + \ likely to become, the subject of a claim of infringement of any intellectual property\ + \ right. Upon termination, you must destroy all copies of Software.\n \n7. EXPORT REGULATIONS.\ + \ You agree that U.S. export control laws and other applicable export and import laws govern\ + \ your use of the Software, including technical data; additional information can be found\ + \ on Oracle's Global Trade Compliance web site (http://www.oracle.com/products/export).\ + \ You agree that neither the Software nor any direct product thereof will be exported, directly,\ + \ or indirectly, in violation of these laws, or will be used for any purpose prohibited\ + \ by these laws including, without limitation, nuclear, chemical, or biological weapons\ + \ proliferation. \n \n8. TRADEMARKS AND LOGOS. You acknowledge and agree as between you\n\ + and Oracle that Oracle owns the ORACLE and JAVA trademarks and all ORACLE- and JAVA-related\ + \ trademarks, service marks, logos and other brand\ndesignations (\"Oracle Marks\"), and\ + \ you agree to comply with the Third\nParty Usage Guidelines for Oracle Trademarks currently\ + \ located at\nhttp://www.oracle.com/us/legal/third-party-trademarks/index.html. Any use\ + \ you make of the Oracle Marks inures to Oracle's benefit.\n \n9. U.S. GOVERNMENT LICENSE\ + \ RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a\ + \ U.S. Government prime contractor or subcontractor (at any tier), then the Government's\ + \ rights in Software and accompanying documentation shall be only those set forth in this\ + \ Agreement. \n \n10. GOVERNING LAW. This agreement is governed by the substantive and\ + \ procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction\ + \ of, and venue in, the courts of San Francisco, or Santa Clara counties in California in\ + \ any dispute arising out of or relating to this agreement. \n \n11. SEVERABILITY. If\ + \ any provision of this Agreement is held to be unenforceable, this Agreement will remain\ + \ in effect with the provision omitted, unless omission would frustrate the intent of the\ + \ parties, in which case this Agreement will immediately terminate.\n \n12. INTEGRATION.\ + \ This Agreement is the entire agreement between you and Oracle relating to its subject\ + \ matter. It supersedes all prior or contemporaneous oral or written communications, proposals,\ + \ representations and warranties and prevails over any conflicting or additional terms\ + \ of any quote, order, acknowledgment, or other communication between the parties relating\ + \ to its subject matter during the term of this Agreement. No modification of this Agreement\ + \ will be binding, unless in writing and signed by an authorized representative of each\ + \ party.\n \nSUPPLEMENTAL LICENSE TERMS\n \nThese Supplemental License Terms add to or modify\ + \ the terms of the Binary Code License Agreement. Capitalized terms not defined in these\ + \ Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License\ + \ Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting\ + \ terms in the Binary Code License Agreement, or in any license contained within the Software.\n\ + \ \nA. COMMERCIAL FEATURES. You may not use the Commercial Features for running Programs,\ + \ Java applets or applications in your internal business operations or for any commercial\ + \ or production purpose, or for any purpose other than as set forth in Sections B, C, D\ + \ and E of these Supplemental Terms. If You want to use the Commercial Features for any\ + \ purpose other than as permitted in this Agreement, You must obtain a separate license\ + \ from Oracle.\n \nB. SOFTWARE INTERNAL USE FOR DEVELOPMENT LICENSE GRANT. Subject to\ + \ the terms and conditions of this Agreement and restrictions and exceptions set forth in\ + \ the README File incorporated herein by reference, including, but not limited to the Java\ + \ Technology Restrictions of these Supplemental Terms, Oracle grants you a non-exclusive,\ + \ non-transferable, limited license without fees to reproduce internally and use internally\ + \ the Software complete and unmodified for the purpose of designing, developing, and testing\ + \ your Programs.\n \nC. LICENSE TO DISTRIBUTE SOFTWARE. Subject to the terms and conditions\ + \ of this Agreement and restrictions and exceptions set forth in the README File, including,\ + \ but not limited to the Java Technology Restrictions and Limitations on Redistribution\ + \ of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited\ + \ license without fees to reproduce and distribute the Software, provided that (i) you distribute\ + \ the Software complete and unmodified and only bundled as part of, and for the sole purpose\ + \ of running, your Programs, (ii) the Programs add significant and primary functionality\ + \ to the Software, (iii) you do not distribute additional software intended to replace\ + \ any component(s) of the Software, (iv) you do not remove or alter any proprietary legends\ + \ or notices contained in the Software, (v) you only distribute the Software subject to\ + \ a license agreement that: (a) is a complete, unmodified reproduction of this Agreement;\ + \ or (b) protects Oracle's interests consistent with the terms contained in this Agreement\ + \ and that includes the notice set forth in Section H, and (vi) you agree to defend and\ + \ indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement\ + \ amounts and/or expenses (including attorneys' fees) incurred in connection with any\ + \ claim, lawsuit or action by any third party that arises or results from the use or distribution\ + \ of any and all Programs and/or Software. The license set forth in this Section C does\ + \ not extend to the Software identified in Section G.\n \nD. LICENSE TO DISTRIBUTE REDISTRIBUTABLES.\ + \ Subject to the terms and conditions of this Agreement and restrictions and exceptions\ + \ set forth in the README File, including but not limited to the Java Technology Restrictions\ + \ and Limitations on Redistribution of these Supplemental Terms, Oracle grants you a non-exclusive,\ + \ non-transferable, limited license without fees to reproduce and distribute those files\ + \ specifically identified as redistributable in the README File (\"Redistributables\") provided\ + \ that: (i) you distribute the Redistributables complete and unmodified, and only bundled\ + \ as part of Programs, (ii) the Programs add significant and primary functionality to the\ + \ Redistributables, (iii) you do not distribute additional software intended to supersede\ + \ any component(s) of the Redistributables (unless otherwise specified in the applicable\ + \ README File), (iv) you do not remove or alter any proprietary legends or notices contained\ + \ in or on the Redistributables, (v) you only distribute the Redistributables pursuant to\ + \ a license agreement that: (a) is a complete, unmodified reproduction of this Agreement;\ + \ or (b) protects Oracle's interests consistent with the terms contained in the Agreement\ + \ and includes the notice set forth in Section H, (vi) you agree to defend and indemnify\ + \ Oracle and its licensors from and against any damages, costs, liabilities, settlement\ + \ amounts and/or expenses (including attorneys' fees) incurred in connection with any claim,\ + \ lawsuit or action by any third party that arises or results from the use or distribution\ + \ of any and all Programs and/or Software. The license set forth in this Section D does\ + \ not extend to the Software identified in Section G.\n \nE. DISTRIBUTION BY PUBLISHERS.\ + \ This section pertains to your distribution of the JavaTM SE Development Kit Software\ + \ (\"JDK\") with your printed book or magazine (as those terms are commonly used in the\ + \ industry) relating to Java technology (\"Publication\"). Subject to and conditioned upon\ + \ your compliance with the restrictions and obligations contained in the Agreement, Oracle\ + \ hereby grants to you a non-exclusive, nontransferable limited right to reproduce complete\ + \ and unmodified copies of the JDK on electronic media (the \"Media\") for the sole purpose\ + \ of inclusion and distribution with your Publication(s), subject to the following terms:\ + \ (i) You may not distribute the JDK on a stand-alone basis; it must be distributed with\ + \ your Publication(s); (ii) You are responsible for downloading the JDK from the applicable\ + \ Oracle web site; (iii) You must refer to the JDK as JavaTM SE Development Kit; (iv) The\ + \ JDK must be reproduced in its entirety and without any modification whatsoever (including\ + \ with respect to all proprietary notices) and distributed with your Publication subject\ + \ to a license agreement that is a complete, unmodified reproduction of this Agreement;\ + \ (v) The Media label shall include the following information: \"Copyright [YEAR], Oracle\ + \ America, Inc. All rights reserved. Use is subject to license terms. ORACLE and JAVA\ + \ trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other\ + \ brand designations are trademarks or registered trademarks of Oracle in the U.S. and other\ + \ countries.\" [YEAR] is the year of Oracle's release of the Software; the year information\ + \ can typically be found in the Software’s \"About\" box or screen. This information must\ + \ be placed on the Media label in such a manner as to only apply to the JDK; (vi) You must\ + \ clearly identify the JDK as Oracle's product on the Media holder or Media label, and you\ + \ may not state or imply that Oracle is responsible for any third-party software contained\ + \ on the Media; (vii) You may not include any third party software on the Media which is\ + \ intended to be a replacement or substitute for the JDK; (viii) You agree to defend and\ + \ indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement\ + \ amounts and/or expenses (including attorneys' fees) incurred in connection with any claim,\ + \ lawsuit or action by any third party that arises or results from the use or distribution\ + \ of the JDK and/or the Publication; ; and (ix) You shall provide Oracle with a written\ + \ notice for each Publication; such notice shall include the following information: (1)\ + \ title of Publication, (2) author(s), (3) date of Publication, and (4) ISBN or ISSN numbers.\ + \ Such notice shall be sent to Oracle America, Inc., 500 Oracle Parkway, Redwood Shores,\ + \ California 94065 U.S.A , Attention: General Counsel.\n \nF. JAVA TECHNOLOGY RESTRICTIONS.\ + \ You may not create, modify, or change the behavior of, or authorize your licensees to\ + \ create, modify, or change the behavior of, classes, interfaces, or subpackages that are\ + \ in any way identified as \"java\", \"javax\", \"sun\", \"oracle\" or similar convention\ + \ as specified by Oracle in any naming convention designation.\n \nG. LIMITATIONS ON\ + \ REDISTRIBUTION. You may not redistribute or otherwise transfer: (a) JavaFX Runtime prior\ + \ to version 2.0.2, (b) JavaFX Development Kit prior to version 2.0.2, or (c) any and all\ + \ patches, bug fixes and updates made available by Oracle through Oracle Premier Support,\ + \ including those made available under Oracle's Java SE Support program.\n \nH. COMMERCIAL\ + \ FEATURES NOTICE. For purpose of complying with Supplemental Term Section C.(v)(b) and\ + \ D.(v)(b), your license agreement shall include the following notice, where the notice\ + \ is displayed in a manner that anyone using the Software will see the notice:\n \nUse of\ + \ the Commercial Features for any commercial or production purpose requires a separate license\ + \ from Oracle. \"Commercial Features\" means those features identified Table 1-1 (Commercial\ + \ Features In Java SE Product Editions) of the Java SE documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html\n\ + \ \nI. SOURCE CODE. Software may contain source code that, unless expressly licensed\ + \ for other purposes, is provided solely for reference purposes pursuant to the terms of\ + \ this Agreement. Source code may not be redistributed unless expressly provided for in\ + \ this Agreement.\n \nJ. THIRD PARTY CODE. Additional copyright notices and license terms\ + \ applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME file\ + \ accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html.\ + \ In addition to any terms and conditions of any third party opensource/freeware license\ + \ identified in the THIRDPARTYLICENSEREADME file, the disclaimer of warranty and limitation\ + \ of liability provisions in paragraphs 4 and 5 of the Binary Code License Agreement shall\ + \ apply to all Software in this distribution.\n \nK. TERMINATION FOR INFRINGEMENT. Either\ + \ party may terminate this Agreement immediately should any Software become, or in either\ + \ party's opinion be likely to become, the subject of a claim of infringement of any intellectual\ + \ property right.\n \nL. INSTALLATION AND AUTO-UPDATE. The Software's installation and\ + \ auto-update processes transmit a limited amount of data to Oracle (or its service provider)\ + \ about those specific processes to help Oracle understand and optimize them. Oracle does\ + \ not associate the data with personally identifiable information. You can find more information\ + \ about the data Oracle collects as a result of your Software download at http://www.oracle.com/technetwork/java/javase/documentation/index.html.\n\ + \ \n \nFor inquiries please contact: Oracle America, Inc., 500 Oracle Parkway,\nRedwood\ + \ Shores, California 94065, USA.\n \nLast updated 25 April 2012" json: oracle-bcl-javase-javafx-2012.json - yml: oracle-bcl-javase-javafx-2012.yml + yaml: oracle-bcl-javase-javafx-2012.yml html: oracle-bcl-javase-javafx-2012.html - text: oracle-bcl-javase-javafx-2012.LICENSE + license: oracle-bcl-javase-javafx-2012.LICENSE - license_key: oracle-bcl-javase-javafx-2013 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-oracle-bcl-javase-javafx-2013 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Oracle Binary Code License Agreement for Java SE and JavaFX Technologies\n\nORACLE\ + \ AMERICA, INC. (\"ORACLE\"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES\ + \ UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION\ + \ THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL\ + \ LICENSE TERMS (COLLECTIVELY \"AGREEMENT\"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING\ + \ THE \"ACCEPT LICENSE AGREEMENT\" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE\ + \ YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO\ + \ THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE\ + \ THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY,\ + \ OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE \"DECLINE LICENSE AGREEMENT\"\ + \ (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER\ + \ MEDIA ON WHICH THE SOFTWARE IS CONTAINED.\n\n1. DEFINITIONS. \"Software\" means the software\ + \ identified above in binary form that you selected for download, install or use (in the\ + \ version You selected for download, install or use) from Oracle or its authorized licensees,\ + \ any other machine readable materials (including, but not limited to, libraries, source\ + \ files, header files, and data files), any updates or error corrections provided by Oracle,\ + \ and any user manuals, programming guides and other documentation provided to you by Oracle\ + \ under this Agreement. \"General Purpose Desktop Computers and Servers\" means computers,\ + \ including desktop and laptop computers, or servers, used for general computing functions\ + \ under end user control (such as but not specifically limited to email, general purpose\ + \ Internet browsing, and office suite productivity tools). The use of Software in systems\ + \ and solutions that provide dedicated functionality (other than as mentioned above) or\ + \ designed for use in embedded or function-specific software applications, for example but\ + \ not limited to: Software embedded in or bundled with industrial control systems, wireless\ + \ mobile telephones, wireless handheld devices, netbooks, kiosks, TV/STB, Blu-ray Disc devices,\ + \ telematics and network control switching equipment, printers and storage management systems,\ + \ and other related systems are excluded from this definition and not licensed under this\ + \ Agreement. \"Programs\" means: (a) Java technology applets and applications intended to\ + \ run on the Java Platform, Standard Edition platform on Java-enabled General Purpose Desktop\ + \ Computers and Servers, and (b) JavaFX technology applications intended to run on the JavaFX\ + \ Runtime on JavaFX-enabled General Purpose Desktop Computers and Servers. \"README File\"\ + \ means the README file for the Software set forth in the Software or otherwise available\ + \ from Oracle at or through the following URL: http://www.oracle.com/technetwork/java/javase/documentation/index.html\n\ + \n2. LICENSE TO USE. Subject to the terms and conditions of this Agreement including, but\ + \ not limited to, the Java Technology Restrictions of the Supplemental License Terms, Oracle\ + \ grants you a non-exclusive, non-transferable, limited license without license fees to\ + \ reproduce and use internally the Software complete and unmodified for the sole purpose\ + \ of running Programs.\n\n3. RESTRICTIONS. Software is copyrighted. Title to Software and\ + \ all associated intellectual property rights is retained by Oracle and/or its licensors.\ + \ Unless enforcement is prohibited by applicable law, you may not modify, decompile, or\ + \ reverse engineer Software. You acknowledge that the Software is developed for general\ + \ use in a variety of information management applications; it is not developed or intended\ + \ for use in any inherently dangerous applications, including applications that may create\ + \ a risk of personal injury. If you use the Software in dangerous applications, then you\ + \ shall be responsible to take all appropriate fail-safe, backup, redundancy, and other\ + \ measures to ensure its safe use. Oracle disclaims any express or implied warranty of fitness\ + \ for such uses. No right, title or interest in or to any trademark, service mark, logo\ + \ or trade name of Oracle or its licensors is granted under this Agreement. Additional restrictions\ + \ for developers and/or publishers licenses are set forth in the Supplemental License Terms.\n\ + \n4. DISCLAIMER OF WARRANTY. THE SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY\ + \ KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT\ + \ LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\ + \ OR NONINFRINGEMENT.\n\n5. LIMITATION OF LIABILITY. IN NO EVENT SHALL ORACLE BE LIABLE\ + \ FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR\ + \ LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER\ + \ IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF\ + \ SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED\ + \ ONE THOUSAND DOLLARS (U.S. $1,000).\n\n6. TERMINATION. This Agreement is effective until\ + \ terminated. You may terminate this Agreement at any time by destroying all copies of Software.\ + \ This Agreement will terminate immediately without notice from Oracle if you fail to comply\ + \ with any provision of this Agreement. Either party may terminate this Agreement immediately\ + \ should any Software become, or in either party's opinion be likely to become, the subject\ + \ of a claim of infringement of any intellectual property right. Upon termination, you must\ + \ destroy all copies of Software.\n\n7. EXPORT REGULATIONS. You agree that U.S. export control\ + \ laws and other applicable export and import laws govern your use of the Software, including\ + \ technical data; additional information can be found on Oracle's Global Trade Compliance\ + \ web site (http://www.oracle.com/products/export). You agree that neither the Software\ + \ nor any direct product thereof will be exported, directly, or indirectly, in violation\ + \ of these laws, or will be used for any purpose prohibited by these laws including, without\ + \ limitation, nuclear, chemical, or biological weapons proliferation.\n\n8. TRADEMARKS AND\ + \ LOGOS. You acknowledge and agree as between you and Oracle that Oracle owns the ORACLE\ + \ and JAVA trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos\ + \ and other brand designations (\"Oracle Marks\"), and you agree to comply with the Third\ + \ Party Usage Guidelines for Oracle Trademarks currently located at http://www.oracle.com/us/legal/third-party-trademarks/index.html\ + \ . Any use you make of the Oracle Marks inures to Oracle's benefit.\n\n9. U.S. GOVERNMENT\ + \ LICENSE RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or\ + \ by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's\ + \ rights in Software and accompanying documentation shall be only those set forth in this\ + \ Agreement.\n\n10. GOVERNING LAW. This agreement is governed by the substantive and procedural\ + \ laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and\ + \ venue in, the courts of San Francisco, or Santa Clara counties in California in any dispute\ + \ arising out of or relating to this agreement.\n\n11. SEVERABILITY. If any provision of\ + \ this Agreement is held to be unenforceable, this Agreement will remain in effect with\ + \ the provision omitted, unless omission would frustrate the intent of the parties, in which\ + \ case this Agreement will immediately terminate.\n\n12. INTEGRATION. This Agreement is\ + \ the entire agreement between you and Oracle relating to its subject matter. It supersedes\ + \ all prior or contemporaneous oral or written communications, proposals, representations\ + \ and warranties and prevails over any conflicting or additional terms of any quote, order,\ + \ acknowledgment, or other communication between the parties relating to its subject matter\ + \ during the term of this Agreement. No modification of this Agreement will be binding,\ + \ unless in writing and signed by an authorized representative of each party.\n\nSUPPLEMENTAL\ + \ LICENSE TERMS\n\nThese Supplemental License Terms add to or modify the terms of the Binary\ + \ Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall\ + \ have the same meanings ascribed to them in the Binary Code License Agreement. These Supplemental\ + \ Terms shall supersede any inconsistent or conflicting terms in the Binary Code License\ + \ Agreement, or in any license contained within the Software.\n\nA. SOFTWARE INTERNAL USE\ + \ FOR DEVELOPMENT LICENSE GRANT. Subject to the terms and conditions of this Agreement and\ + \ restrictions and exceptions set forth in the README File incorporated herein by reference,\ + \ including, but not limited to the Java Technology Restrictions of these Supplemental Terms,\ + \ Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce\ + \ internally and use internally the Software complete and unmodified for the purpose of\ + \ designing, developing, and testing your Programs.\n\nB. LICENSE TO DISTRIBUTE SOFTWARE.\ + \ Subject to the terms and conditions of this Agreement and restrictions and exceptions\ + \ set forth in the README File, including, but not limited to the Java Technology Restrictions\ + \ of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited\ + \ license without fees to reproduce and distribute the Software, provided that (i) you distribute\ + \ the Software complete and unmodified and only bundled as part of, and for the sole purpose\ + \ of running, your Programs, (ii) the Programs add significant and primary functionality\ + \ to the Software, (iii) you do not distribute additional software intended to replace any\ + \ component(s) of the Software, (iv) you do not remove or alter any proprietary legends\ + \ or notices contained in the Software, (v) you only distribute the Software subject to\ + \ a license agreement that protects Oracle's interests consistent with the terms contained\ + \ in this Agreement, and (vi) you agree to defend and indemnify Oracle and its licensors\ + \ from and against any damages, costs, liabilities, settlement amounts and/or expenses (including\ + \ attorneys' fees) incurred in connection with any claim, lawsuit or action by any third\ + \ party that arises or results from the use or distribution of any and all Programs and/or\ + \ Software. The license set forth in this Section B does not extend to the Software identified\ + \ in Section D.\n\nC. LICENSE TO DISTRIBUTE REDISTRIBUTABLES. Subject to the terms and conditions\ + \ of this Agreement and restrictions and exceptions set forth in the README File, including\ + \ but not limited to the Java Technology Restrictions of these Supplemental Terms, Oracle\ + \ grants you a non-exclusive, non-transferable, limited license without fees to reproduce\ + \ and distribute those files specifically identified as redistributable in the README File\ + \ (\"Redistributables\") provided that: (i) you distribute the Redistributables complete\ + \ and unmodified, and only bundled as part of Programs, (ii) the Programs add significant\ + \ and primary functionality to the Redistributables, (iii) you do not distribute additional\ + \ software intended to supersede any component(s) of the Redistributables (unless otherwise\ + \ specified in the applicable README File), (iv) you do not remove or alter any proprietary\ + \ legends or notices contained in or on the Redistributables, (v) you only distribute the\ + \ Redistributables pursuant to a license agreement that protects Oracle's interests consistent\ + \ with the terms contained in the Agreement, (vi) you agree to defend and indemnify Oracle\ + \ and its licensors from and against any damages, costs, liabilities, settlement amounts\ + \ and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit\ + \ or action by any third party that arises or results from the use or distribution of any\ + \ and all Programs and/or Software. The license set forth in this Section C does not extend\ + \ to the Software identified in Section D.\n\nD. JAVA TECHNOLOGY RESTRICTIONS. You may not\ + \ create, modify, or change the behavior of, or authorize your licensees to create, modify,\ + \ or change the behavior of, classes, interfaces, or subpackages that are in any way identified\ + \ as \"java\", \"javax\", \"javafx\", \"sun\", \"oracle\" or similar convention as specified\ + \ by Oracle in any naming convention designation. You shall not redistribute the Software\ + \ listed on Schedule 1.\n\nE. SOURCE CODE. Software may contain source code that, unless\ + \ expressly licensed for other purposes, is provided solely for reference purposes pursuant\ + \ to the terms of this Agreement. Source code may not be redistributed unless expressly\ + \ provided for in this Agreement.\n\nF. THIRD PARTY CODE. Additional copyright notices and\ + \ license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME\ + \ file set forth in the Software or otherwise available from Oracle at or through the following\ + \ URL: http://www.oracle.com/technetwork/java/javase/documentation/index.html. In addition\ + \ to any terms and conditions of any third party opensource/freeware license identified\ + \ in the THIRDPARTYLICENSEREADME file, the disclaimer of warranty and limitation of liability\ + \ provisions in paragraphs 4 and 5 of the Binary Code License Agreement shall apply to all\ + \ Software in this distribution.\n\nG. TERMINATION FOR INFRINGEMENT. Either party may terminate\ + \ this Agreement immediately should any Software become, or in either party's opinion be\ + \ likely to become, the subject of a claim of infringement of any intellectual property\ + \ right.\n\nH. INSTALLATION AND AUTO-UPDATE. The Software's installation and auto-update\ + \ processes transmit a limited amount of data to Oracle (or its service provider) about\ + \ those specific processes to help Oracle understand and optimize them. Oracle does not\ + \ associate the data with personally identifiable information. You can find more information\ + \ about the data Oracle collects as a result of your Software download at http://www.oracle.com/technetwork/java/javase/documentation/index.html.\n\ + \nFor inquiries please contact: Oracle America, Inc., 500 Oracle Parkway,\n\nRedwood Shores,\ + \ California 94065, USA.\n\nLicense for Archived Java SE Technologies; last updated 02 April\ + \ 2013\n\n\nSchedule 1 to Supplemental Terms\n\nNon-redistributable Java Technologies\n\ + \ \nJavaFX Runtime versions prior to version 2.0.2, except for version 1.3.1\n\nJavaFX Development\ + \ Kit (or SDK) versions prior to version 2.0.2, except for the version 1.3.1 Runtime components\ + \ which are included in the version 1.3.1 Development Kit\n\nJavaFX Production Suite\n\n\ + Java Naming and Directory Interface(TM)\n\nJava Cryptography Extension (JCE) Unlimited Strength\ + \ Jurisdiction Policy Files\n\nJvmstat\n\nAny patches, bug fixes or updates made available\ + \ by Oracle through Oracle Premier Support, including those made available under Oracle's\ + \ Java SE Support program" json: oracle-bcl-javase-javafx-2013.json - yml: oracle-bcl-javase-javafx-2013.yml + yaml: oracle-bcl-javase-javafx-2013.yml html: oracle-bcl-javase-javafx-2013.html - text: oracle-bcl-javase-javafx-2013.LICENSE + license: oracle-bcl-javase-javafx-2013.LICENSE - license_key: oracle-bcl-javase-platform-javafx-2013 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-oracle-bcl-java-platform-2013 other_spdx_license_keys: - LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2013 is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX + + ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE "ACCEPT LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE "DECLINE LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED. + + 1. DEFINITIONS. "Software" means the software identified above in binary form that you selected for download, install or use (in the version You selected for download, install or use) from Oracle or its authorized licensees, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Oracle, and any user manuals, programming guides and other documentation provided to you by Oracle under this Agreement. "General Purpose Desktop Computers and Servers" means computers, including desktop and laptop computers, or servers, used for general computing functions under end user control (such as but not specifically limited to email, general purpose Internet browsing, and office suite productivity tools). The use of Software in systems and solutions that provide dedicated functionality (other than as mentioned above) or designed for use in embedded or function-specific software applications, for example but not limited to: Software embedded in or bundled with industrial control systems, wireless mobile telephones, wireless handheld devices, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control switching equipment, printers and storage management systems, and other related systems are excluded from this definition and not licensed under this Agreement. "Programs" means (a) Java technology applets and applications intended to run on the Java Platform, Standard Edition platform on Java-enabled General Purpose Desktop Computers and Servers; and (b) JavaFX technology applications intended to run on the JavaFX Runtime on JavaFX-enabled General Purpose Desktop Computers and Servers. "Commercial Features" means those features identified in Table 1-1 (Commercial Features In Java SE Product Editions) of the Java SE documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html. "README File" means the README file for the Software accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html. + + 2. LICENSE TO USE. Subject to the terms and conditions of this Agreement including, but not limited to, the Java Technology Restrictions of the Supplemental License Terms, Oracle grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally the Software complete and unmodified for the sole purpose of running Programs. THE LICENSE SET FORTH IN THIS SECTION 2 DOES NOT EXTEND TO THE COMMERCIAL FEATURES. YOUR RIGHTS AND OBLIGATIONS RELATED TO THE COMMERCIAL FEATURES ARE AS SET FORTH IN THE SUPPLEMENTAL TERMS ALONG WITH ADDITIONAL LICENSES FOR DEVELOPERS AND PUBLISHERS. + + 3. RESTRICTIONS. Software is copyrighted. Title to Software and all associated intellectual property rights is retained by Oracle and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that the Software is developed for general use in a variety of information management applications; it is not developed or intended for use in any inherently dangerous applications, including applications that may create a risk of personal injury. If you use the Software in dangerous applications, then you shall be responsible to take all appropriate fail-safe, backup, redundancy, and other measures to ensure its safe use. Oracle disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Oracle or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms. + + 4. DISCLAIMER OF WARRANTY. THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT. + + 5. LIMITATION OF LIABILITY. IN NO EVENT SHALL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000). + + 6. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Oracle if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon termination, you must destroy all copies of Software. + + 7. EXPORT REGULATIONS. You agree that U.S. export control laws and other applicable export and import laws govern your use of the Software, including technical data; additional information can be found on Oracle's Global Trade Compliance web site (http://www.oracle.com/us/products/export). You agree that neither the Software nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation. + + 8. TRADEMARKS AND LOGOS. You acknowledge and agree as between you + and Oracle that Oracle owns the ORACLE and JAVA trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other brand + designations ("Oracle Marks"), and you agree to comply with the Third + Party Usage Guidelines for Oracle Trademarks currently located at + http://www.oracle.com/us/legal/third-party-trademarks/index.html . Any use you make of the Oracle Marks inures to Oracle's benefit. + + 9. U.S. GOVERNMENT LICENSE RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation shall be only those set forth in this Agreement. + + 10. GOVERNING LAW. This agreement is governed by the substantive and procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco, or Santa Clara counties in California in any dispute arising out of or relating to this agreement. + + 11. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. + + 12. INTEGRATION. This Agreement is the entire agreement between you and Oracle relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. + + SUPPLEMENTAL LICENSE TERMS + + These Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. + + A. COMMERCIAL FEATURES. You may not use the Commercial Features for running Programs, Java applets or applications in your internal business operations or for any commercial or production purpose, or for any purpose other than as set forth in Sections B, C, D and E of these Supplemental Terms. If You want to use the Commercial Features for any purpose other than as permitted in this Agreement, You must obtain a separate license from Oracle. + + B. SOFTWARE INTERNAL USE FOR DEVELOPMENT LICENSE GRANT. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File incorporated herein by reference, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs. + + C. LICENSE TO DISTRIBUTE SOFTWARE. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File, including, but not limited to the Java Technology Restrictions and Limitations on Redistribution of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that: (a) is a complete, unmodified reproduction of this Agreement; or (b) protects Oracle's interests consistent with the terms contained in this Agreement and that includes the notice set forth in Section H, and (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section C does not extend to the Software identified in Section G. + + D. LICENSE TO DISTRIBUTE REDISTRIBUTABLES. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the README File, including but not limited to the Java Technology Restrictions and Limitations on Redistribution of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the README File ("Redistributables") provided that: (i) you distribute the Redistributables complete and unmodified, and only bundled as part of Programs, (ii) the Programs add significant and primary functionality to the Redistributables, (iii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable README File), (iv) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (v) you only distribute the Redistributables pursuant to a license agreement that: (a) is a complete, unmodified reproduction of this Agreement; or (b) protects Oracle's interests consistent with the terms contained in the Agreement and includes the notice set forth in Section H, (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section D does not extend to the Software identified in Section G. + + E. DISTRIBUTION BY PUBLISHERS. This section pertains to your distribution of the JavaTM SE Development Kit Software ("JDK") with your printed book or magazine (as those terms are commonly used in the industry) relating to Java technology ("Publication"). Subject to and conditioned upon your compliance with the restrictions and obligations contained in the Agreement, Oracle hereby grants to you a non-exclusive, nontransferable limited right to reproduce complete and unmodified copies of the JDK on electronic media (the "Media") for the sole purpose of inclusion and distribution with your Publication(s), subject to the following terms: (i) You may not distribute the JDK on a stand-alone basis; it must be distributed with your Publication(s); (ii) You are responsible for downloading the JDK from the applicable Oracle web site; (iii) You must refer to the JDK as JavaTM SE Development Kit; (iv) The JDK must be reproduced in its entirety and without any modification whatsoever (including with respect to all proprietary notices) and distributed with your Publication subject to a license agreement that is a complete, unmodified reproduction of this Agreement; (v) The Media label shall include the following information: "Copyright [YEAR], Oracle America, Inc. All rights reserved. Use is subject to license terms. ORACLE and JAVA trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other brand designations are trademarks or registered trademarks of Oracle in the U.S. and other countries." [YEAR] is the year of Oracle's release of the Software; the year information can typically be found in the Software’s "About" box or screen. This information must be placed on the Media label in such a manner as to only apply to the JDK; (vi) You must clearly identify the JDK as Oracle's product on the Media holder or Media label, and you may not state or imply that Oracle is responsible for any third-party software contained on the Media; (vii) You may not include any third party software on the Media which is intended to be a replacement or substitute for the JDK; (viii) You agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of the JDK and/or the Publication; ; and (ix) You shall provide Oracle with a written notice for each Publication; such notice shall include the following information: (1) title of Publication, (2) author(s), (3) date of Publication, and (4) ISBN or ISSN numbers. Such notice shall be sent to Oracle America, Inc., 500 Oracle Parkway, Redwood Shores, California 94065 U.S.A , Attention: General Counsel. + + F. JAVA TECHNOLOGY RESTRICTIONS. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun", "oracle" or similar convention as specified by Oracle in any naming convention designation. + + G. LIMITATIONS ON REDISTRIBUTION. You may not redistribute or otherwise transfer patches, bug fixes or updates made available by Oracle through Oracle Premier Support, including those made available under Oracle's Java SE Support program. + + H. COMMERCIAL FEATURES NOTICE. For purpose of complying with Supplemental Term Section C.(v)(b) and D.(v)(b), your license agreement shall include the following notice, where the notice is displayed in a manner that anyone using the Software will see the notice: + + Use of the Commercial Features for any commercial or production purpose requires a separate license from Oracle. "Commercial Features" means those features identified Table 1-1 (Commercial Features In Java SE Product Editions) of the Java SE documentation accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html + + + I. SOURCE CODE. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. + + J. THIRD PARTY CODE. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME file accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME file, the disclaimer of warranty and limitation of liability provisions in paragraphs 4 and 5 of the Binary Code License Agreement shall apply to all Software in this distribution. + + K. TERMINATION FOR INFRINGEMENT. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. + + L. INSTALLATION AND AUTO-UPDATE. The Software's installation and auto-update processes transmit a limited amount of data to Oracle (or its service provider) about those specific processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. You can find more information about the data Oracle collects as a result of your Software download at http://www.oracle.com/technetwork/java/javase/documentation/index.html. + + For inquiries please contact: Oracle America, Inc., 500 Oracle Parkway, + + Redwood Shores, California 94065, USA. + + Last updated 02 April 2013 json: oracle-bcl-javase-platform-javafx-2013.json - yml: oracle-bcl-javase-platform-javafx-2013.yml + yaml: oracle-bcl-javase-platform-javafx-2013.yml html: oracle-bcl-javase-platform-javafx-2013.html - text: oracle-bcl-javase-platform-javafx-2013.LICENSE + license: oracle-bcl-javase-platform-javafx-2013.LICENSE - license_key: oracle-bcl-javase-platform-javafx-2017 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-oracle-bcl-java-platform-2017 other_spdx_license_keys: - LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2017 is_exception: no is_deprecated: no - category: Proprietary Free + text: "Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX\n\ + \nORACLE AMERICA, INC. (\"ORACLE\"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND\ + \ AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE\ + \ CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT\ + \ AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\"). PLEASE READ THE AGREEMENT\ + \ CAREFULLY. BY SELECTING THE \"ACCEPT LICENSE AGREEMENT\" (OR THE EQUIVALENT) BUTTON AND/OR\ + \ BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM.\ + \ IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT\ + \ THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT\ + \ HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE \"\ + DECLINE LICENSE AGREEMENT\" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE\ + \ ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED.\n\n1. DEFINITIONS.\ + \ \"Software\" means the software identified above in binary form that you selected for\ + \ download, install or use (in the version You selected for download, install or use) from\ + \ Oracle or its authorized licensees and/or those portions of such software produced by\ + \ jlink as output using a Program’s code, when such output is in unmodified form in combination,\ + \ and for sole use with, that Program, as well as any other machine readable materials (including,\ + \ but not limited to, libraries, source files, header files, and data files), any updates\ + \ or error corrections provided by Oracle, and any user manuals, programming guides and\ + \ other documentation provided to you by Oracle under this Agreement. The Java Linker (jlink)\ + \ is available with Java 9 and later versions. \"General Purpose Desktop Computers and\ + \ Servers\" means computers, including desktop and laptop computers, or servers, used for\ + \ general computing functions under end user control (such as but not specifically limited\ + \ to email, general purpose Internet browsing, and office suite productivity tools). The\ + \ use of Software in systems and solutions that provide dedicated functionality (other than\ + \ as mentioned above) or designed for use in embedded or function-specific software applications,\ + \ for example but not limited to: Software embedded in or bundled with industrial control\ + \ systems, wireless mobile telephones, wireless handheld devices, kiosks, TV/STB, Blu-ray\ + \ Disc devices, telematics and network control switching equipment, printers and storage\ + \ management systems, and other related systems are excluded from this definition and not\ + \ licensed under this Agreement. \"Programs\" means (a) Java technology applets and applications\ + \ intended to run on the Java Platform, Standard Edition platform on Java-enabled General\ + \ Purpose Desktop Computers and Servers; and (b) JavaFX technology applications intended\ + \ to run on the JavaFX Runtime on JavaFX-enabled General Purpose Desktop Computers and Servers.\ + \ \"Java SE LIUM\" means the Licensing Information User Manual – Oracle Java SE and Oracle\ + \ Java Embedded Products Document accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html.\ + \ \"Commercial Features\" means those features that are identified as such in the Java SE\ + \ LIUM under the \"Description of Product Editions and Permitted Features\" section.\n\n\ + 2. LICENSE TO USE. Subject to the terms and conditions of this Agreement including, but\ + \ not limited to, the Java Technology Restrictions of the Supplemental License Terms, Oracle\ + \ grants you a non-exclusive, non-transferable, limited license without license fees to\ + \ reproduce and use internally the Software complete and unmodified for the sole purpose\ + \ of running Programs. THE LICENSE SET FORTH IN THIS SECTION 2 DOES NOT EXTEND TO THE COMMERCIAL\ + \ FEATURES. YOUR RIGHTS AND OBLIGATIONS RELATED TO THE COMMERCIAL FEATURES ARE AS SET FORTH\ + \ IN THE SUPPLEMENTAL TERMS ALONG WITH ADDITIONAL LICENSES FOR DEVELOPERS AND PUBLISHERS.\n\ + \n3. RESTRICTIONS. Software is copyrighted. Title to Software and all associated intellectual\ + \ property rights is retained by Oracle and/or its licensors. Unless enforcement is prohibited\ + \ by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge\ + \ that the Software is developed for general use in a variety of information management\ + \ applications; it is not developed or intended for use in any inherently dangerous applications,\ + \ including applications that may create a risk of personal injury. If you use the Software\ + \ in dangerous applications, then you shall be responsible to take all appropriate fail-safe,\ + \ backup, redundancy, and other measures to ensure its safe use. Oracle disclaims any express\ + \ or implied warranty of fitness for such uses. No right, title or interest in or to any\ + \ trademark, service mark, logo or trade name of Oracle or its licensors is granted under\ + \ this Agreement. Additional restrictions for developers and/or publishers licenses are\ + \ set forth in the Supplemental License Terms.\n\n4. DISCLAIMER OF WARRANTY. THE SOFTWARE\ + \ IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES,\ + \ EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.\n\n5. LIMITATION OF LIABILITY. IN\ + \ NO EVENT SHALL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL\ + \ DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR\ + \ ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL\ + \ IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).\n\n6. TERMINATION. This Agreement\ + \ is effective until terminated. You may terminate this Agreement at any time by destroying\ + \ all copies of Software. This Agreement will terminate immediately without notice from\ + \ Oracle if you fail to comply with any provision of this Agreement. Either party may terminate\ + \ this Agreement immediately should any Software become, or in either party's opinion be\ + \ likely to become, the subject of a claim of infringement of any intellectual property\ + \ right. Upon termination, you must destroy all copies of Software.\n\n7. EXPORT REGULATIONS.\ + \ You agree that U.S. export control laws and other applicable export and import laws govern\ + \ your use of the Software, including technical data; additional information can be found\ + \ on Oracle's Global Trade Compliance web site (http://www.oracle.com/us/products/export).\ + \ You agree that neither the Software nor any direct product thereof will be exported, directly,\ + \ or indirectly, in violation of these laws, or will be used for any purpose prohibited\ + \ by these laws including, without limitation, nuclear, chemical, or biological weapons\ + \ proliferation.\n\n8. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and\ + \ Oracle that Oracle owns the ORACLE and JAVA trademarks and all ORACLE- and JAVA-related\ + \ trademarks, service marks, logos and other brand designations (\"Oracle Marks\"), and\ + \ you agree to comply with the Third Party Usage Guidelines for Oracle Trademarks currently\ + \ located at http://www.oracle.com/us/legal/third-party-trademarks/index.html. Any use you\ + \ make of the Oracle Marks inures to Oracle's benefit.\n\n9. U.S. GOVERNMENT LICENSE RIGHTS.\ + \ If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government\ + \ prime contractor or subcontractor (at any tier), then the Government's rights in Software\ + \ and accompanying documentation shall be only those set forth in this Agreement.\n\n10.\ + \ GOVERNING LAW. This agreement is governed by the substantive and procedural laws of California.\ + \ You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts\ + \ of San Francisco, or Santa Clara counties in California in any dispute arising out of\ + \ or relating to this agreement.\n\n11. SEVERABILITY. If any provision of this Agreement\ + \ is held to be unenforceable, this Agreement will remain in effect with the provision omitted,\ + \ unless omission would frustrate the intent of the parties, in which case this Agreement\ + \ will immediately terminate.\n\n12. INTEGRATION. This Agreement is the entire agreement\ + \ between you and Oracle relating to its subject matter. It supersedes all prior or contemporaneous\ + \ oral or written communications, proposals, representations and warranties and prevails\ + \ over any conflicting or additional terms of any quote, order, acknowledgment, or other\ + \ communication between the parties relating to its subject matter during the term of this\ + \ Agreement. No modification of this Agreement will be binding, unless in writing and signed\ + \ by an authorized representative of each party.\n\nSUPPLEMENTAL LICENSE TERMS\n\nThese\ + \ Supplemental License Terms add to or modify the terms of the Binary Code License Agreement.\ + \ Capitalized terms not defined in these Supplemental Terms shall have the same meanings\ + \ ascribed to them in the Binary Code License Agreement. These Supplemental Terms shall\ + \ supersede any inconsistent or conflicting terms in the Binary Code License Agreement,\ + \ or in any license contained within the Software.\n\nA. COMMERCIAL FEATURES. You may not\ + \ use the Commercial Features for running Programs, Java applets or applications in your\ + \ internal business operations or for any commercial or production purpose, or for any purpose\ + \ other than as set forth in Sections B, C, D and E of these Supplemental Terms. If You\ + \ want to use the Commercial Features for any purpose other than as permitted in this Agreement,\ + \ You must obtain a separate license from Oracle.\n\nB. SOFTWARE INTERNAL USE FOR DEVELOPMENT\ + \ LICENSE GRANT. Subject to the terms and conditions of this Agreement and restrictions\ + \ and exceptions set forth in the Java SE LIUM incorporated herein by reference, including,\ + \ but not limited to the Java Technology Restrictions of these Supplemental Terms, Oracle\ + \ grants you a non-exclusive, non-transferable, limited license without fees to reproduce\ + \ internally and use internally the Software complete and unmodified for the purpose of\ + \ designing, developing, and testing your Programs.\n\nC. LICENSE TO DISTRIBUTE SOFTWARE.\ + \ Subject to the terms and conditions of this Agreement and restrictions and exceptions\ + \ set forth in the Java SE LIUM, including, but not limited to the Java Technology Restrictions\ + \ and Limitations on Redistribution of these Supplemental Terms, Oracle grants you a non-exclusive,\ + \ non-transferable, limited license without fees to reproduce and distribute the Software,\ + \ provided that (i) you distribute the Software complete and unmodified and only bundled\ + \ as part of, and for the sole purpose of running, your Programs, (ii) the Programs add\ + \ significant and primary functionality to the Software, (iii) you do not distribute additional\ + \ software intended to replace any component(s) of the Software, (iv) you do not remove\ + \ or alter any proprietary legends or notices contained in the Software, (v) you only distribute\ + \ the Software subject to a license agreement that: (a) is a complete, unmodified reproduction\ + \ of this Agreement; or (b) protects Oracle's interests consistent with the terms contained\ + \ in this Agreement and that includes the notice set forth in Section H, and (vi) you agree\ + \ to defend and indemnify Oracle and its licensors from and against any damages, costs,\ + \ liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in\ + \ connection with any claim, lawsuit or action by any third party that arises or results\ + \ from the use or distribution of any and all Programs and/or Software. The license set\ + \ forth in this Section C does not extend to the Software identified in Section G.\n\nD.\ + \ LICENSE TO DISTRIBUTE REDISTRIBUTABLES. Subject to the terms and conditions of this Agreement\ + \ and restrictions and exceptions set forth in the Java SE LIUM, including but not limited\ + \ to the Java Technology Restrictions and Limitations on Redistribution of these Supplemental\ + \ Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees\ + \ to reproduce and distribute those files specifically identified as redistributable in\ + \ the Java SE LIUM (\"Redistributables\") provided that: (i) you distribute the Redistributables\ + \ complete and unmodified, and only bundled as part of Programs, (ii) the Programs add significant\ + \ and primary functionality to the Redistributables, (iii) you do not distribute additional\ + \ software intended to supersede any component(s) of the Redistributables (unless otherwise\ + \ specified in the applicable Java SE LIUM), (iv) you do not remove or alter any proprietary\ + \ legends or notices contained in or on the Redistributables, (v) you only distribute the\ + \ Redistributables pursuant to a license agreement that: (a) is a complete, unmodified reproduction\ + \ of this Agreement; or (b) protects Oracle's interests consistent with the terms contained\ + \ in the Agreement and includes the notice set forth in Section H, (vi) you agree to defend\ + \ and indemnify Oracle and its licensors from and against any damages, costs, liabilities,\ + \ settlement amounts and/or expenses (including attorneys' fees) incurred in connection\ + \ with any claim, lawsuit or action by any third party that arises or results from the use\ + \ or distribution of any and all Programs and/or Software. The license set forth in this\ + \ Section D does not extend to the Software identified in Section G.\n\nE. DISTRIBUTION\ + \ BY PUBLISHERS. This section pertains to your distribution of the JavaTM SE Development\ + \ Kit Software (\"JDK\") with your printed book or magazine (as those terms are commonly\ + \ used in the industry) relating to Java technology (\"Publication\"). Subject to and conditioned\ + \ upon your compliance with the restrictions and obligations contained in the Agreement,\ + \ Oracle hereby grants to you a non-exclusive, nontransferable limited right to reproduce\ + \ complete and unmodified copies of the JDK on electronic media (the \"Media\") for the\ + \ sole purpose of inclusion and distribution with your Publication(s), subject to the following\ + \ terms: (i) You may not distribute the JDK on a stand-alone basis; it must be distributed\ + \ with your Publication(s); (ii) You are responsible for downloading the JDK from the applicable\ + \ Oracle web site; (iii) You must refer to the JDK as JavaTM SE Development Kit; (iv) The\ + \ JDK must be reproduced in its entirety and without any modification whatsoever (including\ + \ with respect to all proprietary notices) and distributed with your Publication subject\ + \ to a license agreement that is a complete, unmodified reproduction of this Agreement;\ + \ (v) The Media label shall include the following information: \"Copyright [YEAR], Oracle\ + \ America, Inc. All rights reserved. Use is subject to license terms. ORACLE and JAVA trademarks\ + \ and all ORACLE- and JAVA-related trademarks, service marks, logos and other brand designations\ + \ are trademarks or registered trademarks of Oracle in the U.S. and other countries.\" [YEAR]\ + \ is the year of Oracle's release of the Software; the year information can typically be\ + \ found in the Software’s \"About\" box or screen. This information must be placed on the\ + \ Media label in such a manner as to only apply to the JDK; (vi) You must clearly identify\ + \ the JDK as Oracle's product on the Media holder or Media label, and you may not state\ + \ or imply that Oracle is responsible for any third-party software contained on the Media;\ + \ (vii) You may not include any third party software on the Media which is intended to be\ + \ a replacement or substitute for the JDK; (viii) You agree to defend and indemnify Oracle\ + \ and its licensors from and against any damages, costs, liabilities, settlement amounts\ + \ and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit\ + \ or action by any third party that arises or results from the use or distribution of the\ + \ JDK and/or the Publication; ; and (ix) You shall provide Oracle with a written notice\ + \ for each Publication; such notice shall include the following information: (1) title of\ + \ Publication, (2) author(s), (3) date of Publication, and (4) ISBN or ISSN numbers. Such\ + \ notice shall be sent to Oracle America, Inc., 500 Oracle Parkway, Redwood Shores, California\ + \ 94065 U.S.A , Attention: General Counsel.\n\nF. JAVA TECHNOLOGY RESTRICTIONS. You may\ + \ not create, modify, or change the behavior of, or authorize your licensees to create,\ + \ modify, or change the behavior of, classes, interfaces, or subpackages that are in any\ + \ way identified as \"java\", \"javax\", \"sun\", \"oracle\" or similar convention as specified\ + \ by Oracle in any naming convention designation.\n\nG. LIMITATIONS ON REDISTRIBUTION. You\ + \ may not redistribute or otherwise transfer patches, bug fixes or updates made available\ + \ by Oracle through Oracle Premier Support, including those made available under Oracle's\ + \ Java SE Support program.\n\nH. COMMERCIAL FEATURES NOTICE. For purpose of complying with\ + \ Supplemental Term Section C.(v)(b) and D.(v)(b), your license agreement shall include\ + \ the following notice, where the notice is displayed in a manner that anyone using the\ + \ Software will see the notice:\n\nUse of the Commercial Features for any commercial or\ + \ production purpose requires a separate license from Oracle. \"Commercial Features\" means\ + \ those features that are identified as such in the Licensing Information User Manual –\ + \ Oracle Java SE and Oracle Java Embedded Products Document, accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html,\ + \ under the \"Description of Product Editions and Permitted Features\" section.\n \nI. SOURCE\ + \ CODE. Software may contain source code that, unless expressly licensed for other purposes,\ + \ is provided solely for reference purposes pursuant to the terms of this Agreement. Source\ + \ code may not be redistributed unless expressly provided for in this Agreement.\n\nJ. THIRD\ + \ PARTY CODE. Additional copyright notices and license terms applicable to portions of the\ + \ Software are set forth in the Java SE LIUM accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html.\ + \ In addition to any terms and conditions of any third party opensource/freeware license\ + \ identified in the Java SE LIUM, the disclaimer of warranty and limitation of liability\ + \ provisions in paragraphs 4 and 5 of the Binary Code License Agreement shall apply to all\ + \ Software in this distribution.\n\nK. TERMINATION FOR INFRINGEMENT. Either party may terminate\ + \ this Agreement immediately should any Software become, or in either party's opinion be\ + \ likely to become, the subject of a claim of infringement of any intellectual property\ + \ right.\n\nL. INSTALLATION AND AUTO-UPDATE. The Software's installation and auto-update\ + \ processes transmit a limited amount of data to Oracle (or its service provider) about\ + \ those specific processes to help Oracle understand and optimize them. Oracle does not\ + \ associate the data with personally identifiable information. You can find more information\ + \ about the data Oracle collects as a result of your Software download at http://www.oracle.com/technetwork/java/javase/documentation/index.html.\n\ + \nFor inquiries please contact: Oracle America, Inc., 500 Oracle Parkway,\n\nRedwood Shores,\ + \ California 94065, USA.\n\nLast updated 21 September 2017" json: oracle-bcl-javase-platform-javafx-2017.json - yml: oracle-bcl-javase-platform-javafx-2017.yml + yaml: oracle-bcl-javase-platform-javafx-2017.yml html: oracle-bcl-javase-platform-javafx-2017.html - text: oracle-bcl-javase-platform-javafx-2017.LICENSE + license: oracle-bcl-javase-platform-javafx-2017.LICENSE - license_key: oracle-bcl-jsse-1.0.3 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-oracle-bcl-jsse-1.0.3 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Oracle Binary Code License Agreement for Java Secure Sockets Extension 1.0.3\nfor Connected\ + \ Device Configuration 1.0.2\n\nORACLE AMERICA, INC. (\"ORACLE\"), FOR AND ON BEHALF OF\ + \ ITSELF AND ITS\nSUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE\ + \ THE\nSOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS\nCONTAINED\ + \ IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE\nTERMS (COLLECTIVELY \"\ + AGREEMENT\"). PLEASE READ THE AGREEMENT CAREFULLY. BY\nSELECTING THE \"ACCEPT LICENSE AGREEMENT\"\ + \ (OR THE EQUIVALENT) BUTTON AND/OR BY\nUSING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE\ + \ READ THE TERMS AND AGREE TO\nTHEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY\ + \ OR OTHER\nLEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE\n\ + LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO\nNOT WISH TO\ + \ BE BOUND BY THE TERMS, THEN SELECT THE \"DECLINE LICENSE\nAGREEMENT\" (OR THE EQUIVALENT)\ + \ BUTTON AND YOU MUST NOT USE THE SOFTWARE ON\nTHIS SITE OR ANY OTHER MEDIA ON WHICH THE\ + \ SOFTWARE IS CONTAINED.\n\n1. DEFINITIONS. \"Software\" means the software identified above\ + \ in binary\nform that you selected for download, install or use (in the version You\nselected\ + \ for download, install or use) from Oracle or its authorized\nlicensees, any other machine\ + \ readable materials (including, but not limited\nto, libraries, source files, header files,\ + \ and data files), any updates\nor error corrections provided by Oracle, and any user manuals,\ + \ programming\nguides and other documentation provided to you by Oracle under this\nAgreement.\ + \ \"Programs\" means Java technology applets and applications\nintended to run on the Java\ + \ Platform, Micro Edition platform. \"README File\"\nmeans the README file for the Software\ + \ set forth in the Software or otherwise\navailable from Oracle.\n\n2. LICENSE TO USE. Subject\ + \ to the terms and conditions of this Agreement\nincluding, but not limited to, the Java\ + \ Technology Restrictions of the\nSupplemental License Terms, Oracle grants you a non-exclusive,\ + \ nontransferable,\nlimited license without license fees to reproduce and use\ninternally\ + \ the Software complete and unmodified for the sole purpose of\nrunning Programs.\n\n3.\ + \ RESTRICTIONS. Software is copyrighted. Title to Software and all\nassociated intellectual\ + \ property rights is retained by Oracle and/or its\nlicensors. Unless enforcement is prohibited\ + \ by applicable law, you may not\nmodify, decompile, or reverse engineer Software. You acknowledge\ + \ that the\nSoftware is developed for general use in a variety of information management\n\ + applications; it is not developed or intended for use in any inherently\ndangerous applications,\ + \ including applications that may create a risk of\npersonal injury. If you use the Software\ + \ in dangerous applications, then you\nshall be responsible to take all appropriate fail-safe,\ + \ backup, redundancy,\nand other measures to ensure its safe use. Oracle disclaims any express\ + \ or\nimplied warranty of fitness for such uses. No right, title or interest in or\nto any\ + \ trademark, service mark, logo or trade name of Oracle or its licensors\nis granted under\ + \ this Agreement. Additional restrictions for developers are\nset forth in the Supplemental\ + \ License Terms.\n\n4. DISCLAIMER OF WARRANTY. THE SOFTWARE IS PROVIDED \"AS IS\" WITHOUT\n\ + WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND\nIMPLIED, INCLUDING\ + \ WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR\ + \ PURPOSE OR NONINFRINGEMENT.\n\n5. LIMITATION OF LIABILITY. IN NO EVENT SHALL ORACLE BE\ + \ LIABLE FOR ANY\nINDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES\n\ + FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD\nPARTY, WHETHER\ + \ IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN\nADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY FOR\nDAMAGES HEREUNDER SHALL IN NO EVENT EXCEED\ + \ ONE THOUSAND DOLLARS (U.S.\n$1,000).\n\n6. TERMINATION. This Agreement is effective until\ + \ terminated. You may\nterminate this Agreement at any time by destroying all copies of\ + \ Software.\nThis Agreement will terminate immediately without notice from Oracle if you\n\ + fail to comply with any provision of this Agreement. Either party may\nterminate this Agreement\ + \ immediately should any Software become, or in either\nparty's opinion be likely to become,\ + \ the subject of a claim of infringement\nof any intellectual property right. Upon termination,\ + \ you must destroy all\ncopies of Software.\n\n7. EXPORT REGULATIONS. You agree that U.S.\ + \ export control laws and other\napplicable export and import laws govern your use of the\ + \ Software, including\ntechnical data; additional information can be found on Oracle's Global\ + \ Trade\nCompliance web site (http://www.oracle.com/products/export). You agree that\nneither\ + \ the Software nor any direct product thereof will be exported,\ndirectly, or indirectly,\ + \ in violation of these laws, or will be used for any\npurpose prohibited by these laws\ + \ including, without limitation, nuclear,\nchemical, or biological weapons proliferation.\n\ + \n8. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and\nOracle that Oracle\ + \ owns the ORACLE and JAVA trademarks and all ORACLE- and\nJAVA-related trademarks, service\ + \ marks, logos and other brand designations\n(\"Oracle Marks\"), and you agree to comply\ + \ with the Third Party Usage\nGuidelines for Oracle Trademarks currently located at\nhttp://www.oracle.com/us/legal/third-party-trademarks/index.html.\ + \ Any\nuse you make of the Oracle Marks inures to Oracle's benefit.\n\n9. U.S. GOVERNMENT\ + \ LICENSE RIGHTS. If Software is being acquired by or on\nbehalf of the U.S. Government\ + \ or by a U.S. Government prime contractor or\nsubcontractor (at any tier), then the Government's\ + \ rights in Software and\naccompanying documentation shall be only those set forth in this\ + \ Agreement.\n\n10. GOVERNING LAW. This agreement is governed by the substantive and\nprocedural\ + \ laws of California. You and Oracle agree to submit to the\nexclusive jurisdiction of,\ + \ and venue in, the courts of San Francisco, or\nSanta Clara counties in California in any\ + \ dispute arising out of or relating\nto this agreement.\n\n11. SEVERABILITY. If any provision\ + \ of this Agreement is held to be\nunenforceable, this Agreement will remain in effect with\ + \ the provision\nomitted, unless omission would frustrate the intent of the parties, in\ + \ which\ncase this Agreement will immediately terminate.\n\n12. INTEGRATION. This Agreement\ + \ is the entire agreement between you and\nOracle relating to its subject matter. It supersedes\ + \ all prior or\ncontemporaneous oral or written communications, proposals, representations\n\ + and warranties and prevails over any conflicting or additional terms of any\nquote, order,\ + \ acknowledgment, or other communication between the parties\nrelating to its subject matter\ + \ during the term of this Agreement. No \nmodification of this Agreement will be binding,\ + \ unless in writing and signed\nby an authorized representative of each party.\n\nSUPPLEMENTAL\ + \ LICENSE TERMS\nThese Supplemental License Terms add to or modify the terms of the Binary\n\ + Code License Agreement. Capitalized terms not defined in these Supplemental\nTerms shall\ + \ have the same meanings ascribed to them in the Binary Code\nLicense Agreement. These Supplemental\ + \ Terms shall supersede any inconsistent\nor conflicting terms in the Binary Code License\ + \ Agreement, or in any license\ncontained within the Software.\n\nA. SOFTWARE INTERNAL USE\ + \ FOR DEVELOPMENT LICENSE GRANT. Subject to the\nterms and conditions of this Agreement\ + \ and restrictions and exceptions set\nforth in the README File incorporated herein by reference,\ + \ including, but not\nlimited to the Java Technology Restrictions of these Supplemental\ + \ Terms,\nOracle grants you a non-exclusive, non-transferable, limited license without\n\ + fees to reproduce internally and use internally the Software complete and\nunmodified for\ + \ the purpose of designing, developing, and testing your\nPrograms.\n\nB. LICENSE TO DISTRIBUTE\ + \ SOFTWARE. Subject to the terms and conditions of\nthis Agreement and restrictions and\ + \ exceptions set forth in the README File,\nincluding, but not limited to the Java Technology\ + \ Restrictions of these\nSupplemental Terms, Oracle grants you a non-exclusive, non-transferable,\n\ + limited license without fees to reproduce and distribute the Software,\nprovided that (i)\ + \ you distribute the Software complete and unmodified and\nonly bundled as part of, and\ + \ for the sole purpose of running, your Programs,\n(ii) the Programs add significant and\ + \ primary functionality to the Software,\n(iii) you do not distribute additional software\ + \ intended to replace any\ncomponent(s) of the Software, (iv) you do not remove or alter\ + \ any proprietary\nlegends or notices contained in the Software, (v) you only distribute\ + \ the\nSoftware subject to a license agreement that protects Oracle's interests\nconsistent\ + \ with the terms contained in this Agreement, (vi) you only\ndistribute the Software tightly\ + \ integrated and configured to run with your\nimplementation of JSR 36 (Connected Device\ + \ Configuration) and JSR 46\nFoundation Profile; (vii) you have a valid license from Oracle\ + \ for JSR 36\n(Connected Device Configuration) and JSR 46 Foundation Profile, and (viii)\n\ + you agree to defend and indemnify Oracle and its licensors from and against\nany damages,\ + \ costs, liabilities, settlement amounts and/or expenses\n(including attorneys' fees) incurred\ + \ in connection with any claim, lawsuit\nor action by any third party that arises or results\ + \ from the use or\ndistribution of any and all Programs and/or Software.\n\nC. JAVA TECHNOLOGY\ + \ RESTRICTIONS. You may not create, modify, or change the\nbehavior of, or authorize your\ + \ licensees to create, modify, or change the\nbehavior of, classes, interfaces, or subpackages\ + \ that are in any way\nidentified as \"java\", \"javax\", \"javafx\", \"javaee\", \"sun\"\ + , \"oracle\" or\nsimilar convention as specified by Oracle in any naming convention\ndesignation.\n\ + \nD. SOURCE CODE. Software may contain source code that, unless expressly\nlicensed for\ + \ other purposes, is provided solely for reference purposes\npursuant to the terms of this\ + \ Agreement. Source code may not be\nredistributed unless expressly provided for in this\ + \ Agreement.\n\nE. THIRD PARTY CODE. Additional copyright notices and license terms\napplicable\ + \ to portions of the Software are set forth in the\nTHIRDPARTYLICENSEREADME file set forth\ + \ in the Software or otherwise available\nfrom Oracle. In addition to any terms and conditions\ + \ of any third party\nopensource/freeware license identified in the THIRDPARTYLICENSEREADME\ + \ file,\nthe disclaimer of warranty and limitation of liability provisions in\nparagraphs\ + \ 4 and 5 of the Binary Code License Agreement shall apply to all\nSoftware in this distribution.\n\ + \nF. TERMINATION FOR INFRINGEMENT. Either party may terminate this Agreement\nimmediately\ + \ should any Software become, or in either party's opinion be\nlikely to become, the subject\ + \ of a claim of infringement of any intellectual\nproperty right.\n\nFor inquiries please\ + \ contact: Oracle America, Inc., 500 Oracle Parkway,\nRedwood Shores, California 94065,\ + \ USA.\n\nLicense for Archived Java Secure Sockets Extension 1.0.3 for Connected Device\n\ + Configuration 1.0.2; Last updated 9 March 2012" json: oracle-bcl-jsse-1.0.3.json - yml: oracle-bcl-jsse-1.0.3.yml + yaml: oracle-bcl-jsse-1.0.3.yml html: oracle-bcl-jsse-1.0.3.html - text: oracle-bcl-jsse-1.0.3.LICENSE + license: oracle-bcl-jsse-1.0.3.LICENSE - license_key: oracle-bsd-no-nuclear + category: Free Restricted spdx_license_key: BSD-3-Clause-No-Nuclear-License-2014 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Use is subject to license terms. + + 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 Oracle Corporation 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. + + You acknowledge that this software is not designed, licensed or intended for use + in the design, construction, operation or maintenance of any nuclear facility. json: oracle-bsd-no-nuclear.json - yml: oracle-bsd-no-nuclear.yml + yaml: oracle-bsd-no-nuclear.yml html: oracle-bsd-no-nuclear.html - text: oracle-bsd-no-nuclear.LICENSE + license: oracle-bsd-no-nuclear.LICENSE - license_key: oracle-code-samples-bsd + category: Free Restricted spdx_license_key: LicenseRef-scancode-oracle-code-samples-bsd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + Redistribution of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + Redistribution 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 Oracle and/or its affiliates. or the names of + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + This software is provided "AS IS," without a warranty of any kind. ALL + EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING + ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE OR NON- INFRINGEMENT, ARE HEREBY EXCLUDED. Oracle and/or its + affiliates. ("SUN") AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY + DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR + ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR + DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE + DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, + ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, EVEN IF SUN + HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + You acknowledge that this software is not designed, licensed or intended + for use in the design, construction, operation or maintenance of any + nuclear facility. json: oracle-code-samples-bsd.json - yml: oracle-code-samples-bsd.yml + yaml: oracle-code-samples-bsd.yml html: oracle-code-samples-bsd.html - text: oracle-code-samples-bsd.LICENSE + license: oracle-code-samples-bsd.LICENSE - license_key: oracle-commercial-database-11g2 + category: Commercial spdx_license_key: LicenseRef-scancode-oracle-commercial-db-11g2 other_spdx_license_keys: - LicenseRef-scancode-oracle-commercial-database-11g2 is_exception: no is_deprecated: no - category: Commercial + text: This Oracle database is subject to commercial licensing terms. Refer to http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm + for complete details. json: oracle-commercial-database-11g2.json - yml: oracle-commercial-database-11g2.yml + yaml: oracle-commercial-database-11g2.yml html: oracle-commercial-database-11g2.html - text: oracle-commercial-database-11g2.LICENSE + license: oracle-commercial-database-11g2.LICENSE - license_key: oracle-devtools-vsnet-dev + category: Proprietary Free spdx_license_key: LicenseRef-scancode-oracle-devtools-vsnet-dev other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Oracle Technology Network \nOracle Developer Tools for Visual Studio .NET Development\ + \ License Terms\n \nExport Controls on the Programs \nSelecting the \"Accept License Agreement\"\ + \ button is a confirmation of your agreement that you comply, now and during the trial term,\ + \ with each of the following statements:\n \n-You are not a citizen, national, or resident\ + \ of, and are not under control of, the government of Cuba, Iran, Sudan, Libya, North Korea,\ + \ Syria, nor any country to which the United States has prohibited export. \n-You will not\ + \ download or otherwise export or re-export the Programs, directly or indirectly, to the\ + \ above mentioned countries nor to citizens, nationals or residents of those countries.\ + \ \n-You are not listed on the United States Department of Treasury lists of Specially Designated\ + \ Nationals, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers,\ + \ nor are you listed on the United States Department of Commerce Table of Denial Orders.\n\ + \ \nYou will not download or otherwise export or re-export the Programs, directly or indirectly,\ + \ to persons on the above mentioned lists.\n \nYou will not use the Programs for, and will\ + \ not allow the Programs to be used for, any purposes prohibited by United States law, including,\ + \ without limitation, for the development, design, manufacture or production of nuclear,\ + \ chemical or biological weapons of mass destruction.\n \nEXPORT RESTRICTIONS \nYou agree\ + \ that U.S. export control laws and other applicable export and import laws govern your\ + \ use of the programs, including technical data; additional information can be found on\ + \ Oracle®'s Global Trade Compliance web site (http://www.oracle.com/products/export).\n\ + \ \nYou agree that neither the programs nor any direct product thereof will be exported,\ + \ directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited\ + \ by these laws including, without limitation, nuclear, chemical, or biological weapons\ + \ proliferation.\n \nOracle Employees: Under no circumstances are Oracle Employees authorized\ + \ to download software for the purpose of distributing it to customers. Oracle products\ + \ are available to employees for internal use or demonstration purposes only. In keeping\ + \ with Oracle's trade compliance obligations under U.S. and applicable multilateral law,\ + \ failure to comply with this policy could result in disciplinary action up to and including\ + \ termination.\n \nNote: You are bound by the Oracle Technology Network (\"OTN\") License\ + \ Agreement terms. The OTN License Agreement terms also apply to all updates you receive\ + \ under your Technology Track subscription.\n \nThe OTN License Agreement terms below supercede\ + \ any shrinkwrap license on the OTN Technology Track software CDs and previous OTN License\ + \ terms (including the Oracle Program License as modified by the OTN Program Use Certificate).\n\ + \ \nORACLE TECHNOLOGY NETWORK LICENSE AGREEMENT\n\"We,\" \"us,\" and \"our\" refers to Oracle\ + \ America, Inc., for and on behalf of itself and its subsidiaries and affiliates under common\ + \ control. \"You\" and \"your\" refers to the individual or entity that wishes to use the\ + \ programs from Oracle. \"Programs\" refers to the Oracle Developer Tools for Visual Studio.NET\ + \ software product you wish to download and use and program documentation. \"License\" refers\ + \ to your right to use the programs under the terms of this agreement. This agreement is\ + \ governed by the substantive and procedural laws of California. You and Oracle agree to\ + \ submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco, San\ + \ Mateo, or Santa Clara counties in California in any dispute arising out of or relating\ + \ to this agreement.\n\nWe are willing to license the programs to you only upon the condition\ + \ that you accept all of the terms contained in this agreement. Read the terms carefully\ + \ and select the \"Accept\" button at the bottom of the page to confirm your acceptance.\ + \ If you are not willing to be bound by these terms, select the \"Do Not Accept\" button\ + \ and the registration process will not continue.\n\nLicense Rights \nWe grant you a nonexclusive,\ + \ nontransferable limited license to use the programs for purposes of developing your applications.\ + \ If you want to use the programs for any purpose other than as expressly permitted under\ + \ this agreement you must contact us, or an Oracle reseller, to obtain the appropriate license.\ + \ We may audit your use of the programs. Program documentation is provided with the programs.\n\ + \nOwnership and Restrictions \nWe retain all ownership and intellectual property rights\ + \ in the programs. You may make a sufficient number of copies of the programs for the licensed\ + \ use and one copy of the programs for backup purposes.\n\nYou may not: \n- use the programs\ + \ for any purpose other than as provided above; \n- distribute the programs; \n- charge\ + \ your end users for use of the programs; \n- remove or modify any program markings or any\ + \ notice of our proprietary rights; \n- use the programs to provide third party training\ + \ on the content and/or functionality of the programs, - assign this agreement or give the\ + \ programs, program access or an interest in the programs to any individual or entity \n\ + - cause or permit reverse engineering (unless required by law for interoperability), disassembly\ + \ or decompilation of the programs; \n- disclose results of any program benchmark tests\ + \ without our prior consent; or, \n- use any Oracle name, trademark or logo.\n\nExport \n\ + You agree that U.S. export control laws and other applicable export and import laws govern\ + \ your use of the programs, including technical data; additional information can be found\ + \ on Oracle's Global Trade Compliance web site located at http://www.oracle.com/products/export/index.html?content.html.\ + \ You agree that neither the programs nor any direct product thereof will be exported, directly,\ + \ or indirectly, in violation of these laws, or will be used for any purpose prohibited\ + \ by these laws including, without limitation, nuclear, chemical, or biological weapons\ + \ proliferation.\n\nDisclaimer of Warranty and Exclusive Remedies\n\nTHE PROGRAMS ARE PROVIDED\ + \ \"AS IS\" WITHOUT WARRANTY OF ANY KIND. WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND\ + \ IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.\n\nIN NO EVENT SHALL WE BE LIABLE FOR ANY\ + \ INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS\ + \ OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN\ + \ AN ACTION IN CONTRACT OR TORT, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH\ + \ DAMAGES. OUR ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND\ + \ DOLLARS (U.S. $1,000).\n\nNo Technical Support \nOur technical support organization will\ + \ not provide technical support, phone support, or updates to you for the programs licensed\ + \ under this agreement.\n\nRestricted Rights \nIf you distribute a license to the United\ + \ States government, the programs, including documentation, shall be considered commercial\ + \ computer software and you will place a legend, in addition to applicable copyright notices,\ + \ on the documentation, and on the media label, substantially similar to the following:\n\ + \nNOTICE OF RESTRICTED RIGHTS \n\"Programs delivered subject to the DOD FAR Supplement are\ + \ 'commercial computer software' and use, duplication, and disclosure of the programs, including\ + \ documentation, shall be subject to the licensing restrictions set forth in the applicable\ + \ Oracle license agreement. Otherwise, programs delivered subject to the Federal Acquisition\ + \ Regulations are 'restricted computer software' and use, duplication, and disclosure of\ + \ the programs, including documentation, shall be subject to the restrictions in FAR 52.227-19,\ + \ Commercial Computer Software-Restricted Rights (June 1987). Oracle America, Inc., 500\ + \ Oracle Parkway, Redwood City, CA 94065.\"\n\nEnd of Agreement \nYou may terminate this\ + \ agreement by destroying all copies of the programs. We have the right to terminate your\ + \ right to use the programs if you fail to comply with any of the terms of this agreement,\ + \ in which case you shall destroy all copies of the programs.\n\nRelationship Between the\ + \ Parties \nThe relationship between you and us is that of licensee/licensor. Neither party\ + \ will represent that it has any authority to assume or create any obligation, express or\ + \ implied, on behalf of the other party, nor to represent the other party as agent, employee,\ + \ franchisee, or in any other capacity. Nothing in this agreement shall be construed to\ + \ limit either party's right to independently develop or distribute software that is functionally\ + \ similar to the other party's products, so long as proprietary information of the other\ + \ party is not included in such software.\n\nOpen Source \n\"Open Source\" software - software\ + \ available without charge for use, modification and distribution - is often licensed under\ + \ terms that require the user to make the user's modifications to the Open Source software\ + \ or any software that the user 'combines' with the Open Source software freely available\ + \ in source code form. If you use Open Source software in conjunction with the programs,\ + \ you must ensure that your use does not: (i) create, or purport to create, obligations\ + \ of us with respect to the Oracle programs; or (ii) grant, or purport to grant, to any\ + \ third party any rights to or immunities under our intellectual property or proprietary\ + \ rights in the Oracle. For example, you may not develop a software program using an Oracle\ + \ program and an Open Source program where such use results in a program file(s) that contains\ + \ code from both the Oracle program and the Open Source program (including without limitation\ + \ libraries) if the Open Source program is licensed under a license that requires any \"\ + modifications\" be made freely available. You also may not combine the Oracle program with\ + \ programs licensed under the GNU General Public License (\"GPL\") in any manner that could\ + \ cause, or could be interpreted or asserted to cause, the Oracle program, or any modifications\ + \ thereto, to become subject to the terms of the GPL.\n\nEntire Agreement \nYou agree that\ + \ this agreement is the complete agreement for the programs and licenses, and this agreement\ + \ supersedes all prior or contemporaneous agreements or representations. If any term of\ + \ this agreement is found to be invalid or unenforceable, the remaining provisions will\ + \ remain effective.\n\nLast updated: 04/21/05\n\nShould you have any questions concerning\ + \ this License Agreement, or if you desire to contact Oracle for any reason, please write:\ + \ \nOracle America, Inc. \n500 Oracle Parkway, \nRedwood City, CA 94065\n\nOracle may contact\ + \ you to ask if you had a satisfactory experience installing and using this OTN software\ + \ download." json: oracle-devtools-vsnet-dev.json - yml: oracle-devtools-vsnet-dev.yml + yaml: oracle-devtools-vsnet-dev.yml html: oracle-devtools-vsnet-dev.html - text: oracle-devtools-vsnet-dev.LICENSE + license: oracle-devtools-vsnet-dev.LICENSE - license_key: oracle-entitlement-05-15 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-oracle-entitlement-05-15 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Oracle Corporation (\"ORACLE\") ENTITLEMENT for SOFTWARE\n\nLicensee/Company: Entity\ + \ receiving Software.\n\nEffective Date: Date of delivery of the Software to You.\n\nSoftware:\ + \ Product\n\nLicense Term: Perpetual (subject to termination under the SLA).\n\nLicensed\ + \ Unit: Software Copy.\n\nLicensed unit Count: Unlimited.\n\nPermitted Uses: \n\n1. You\ + \ may reproduce and use the Software for Your own Individual,\nCommercial and Research and\ + \ Instructional Use only for the purposes of\ndesigning, developing, testing, and running\ + \ Your applets and\napplications (\"Programs\").\n\n2. Subject to the terms and conditions\ + \ of this Agreement and\nrestrictions and exceptions set forth in the Software's documentation,\n\ + You may reproduce and distribute portions of Software identified as a\nredistributable in\ + \ the documentation (each a \"Redistributable\"),\nprovided that You comply with the following\ + \ (note that You may be\nentitled to reproduce and distribute other portions of the Software\ + \ not\ndefined in the documentation as a Redistributable under certain other\nlicenses as\ + \ described in the THIRDPARTYLICENSEREADME, if applicable):\n\n(a) You distribute Redistributable\ + \ complete and unmodified and only\nbundled as part of Your Programs,\n\n(b) Your Programs\ + \ add significant and primary functionality to the\nRedistributable,\n\n(c) You distribute\ + \ Redistributable for the sole purpose of running Your\nPrograms,\n\n(d) You do not distribute\ + \ additional software intended to replace any\ncomponent(s) of the Redistributable,\n\n\ + (e) You do not remove or alter any proprietary legends or notices\ncontained in or on the\ + \ Redistributable.\n\n(f) You only distribute the Redistributable subject to a license\n\ + agreement that protects Oracle's interests consistent with the terms\ncontained in this\ + \ Agreement, and\n\n(g) You agree to defend and indemnify Oracle and its licensors from\ + \ and\nagainst any damages, costs, liabilities, settlement amounts and/or\nexpenses (including\ + \ attorneys' fees) incurred in connection with any\nclaim, lawsuit or action by any third\ + \ party that arises or results from\nthe use or distribution of any and all Programs and/or\n\ + Redistributable.\n\n3. Java Technology Restrictions. You may not create, modify, or change\n\ + the behavior of, or authorize Your licensees to create, modify, or\nchange the behavior\ + \ of, classes, interfaces, or subpackages that are in\nany way identified as \"java\", \"\ + javax\", \"sun\" or similar convention as\nspecified by Oracle in any naming convention\ + \ designation.\n\n4. No Diagnostic, Maintenance, Repair or Technical Support Services.\n\ + The scope of Your license does not include any right, express or\nimplied, (i) to access,\ + \ copy, distribute, display or use the Software\nto provide diagnostic, maintenance, repair\ + \ or technical support\nservices for Oracle software or Oracle hardware on behalf of any\ + \ third party\nfor Your direct or indirect commercial gain or advantage, without Oracle's\n\ + prior written authorization, or (ii) for any third party to access,\ncopy, distribute, display\ + \ or use the Software to provide diagnostic,\nmaintenance, repair or technical support services\ + \ for Oracle software or\nOracle hardware on Your behalf for such party's direct or indirect\n\ + commercial gain or advantage, without Oracle's prior written\nauthorization. The limitations\ + \ set forth in this paragraph apply to any\nand all error corrections, patches, updates,\ + \ and upgrades to the\nSoftware You may receive, access, download or otherwise obtain from\n\ + Oracle.\n\n5. Records and Documentation. During the term of the SLA and\nEntitlement, and\ + \ for a period of three (3) years thereafter, You agree\nto keep proper records and documentation\ + \ of Your compliance with the\nSLA and Entitlement. Upon Oracle's reasonable request, You\ + \ will provide\ncopies of such records and documentation to Oracle for the purpose of\n\ + confirming Your compliance with the terms and conditions of the SLA and\nEntitlement. This\ + \ section will survive any termination of the SLA and\nEntitlement. You may terminate this\ + \ SLA and Entitlement at any time by\ndestroying all copies of the Software in which case\ + \ the obligations set\nforth in Section 7 of the SLA shall apply.\n\n\nOracle Corporation\ + \ (\"ORACLE\")\nSOFTWARE LICENSE AGREEMENT\n\nREAD THE TERMS OF THIS AGREEMENT (\"AGREEMENT\"\ + ) CAREFULLY BEFORE OPENING\nSOFTWARE MEDIA PACKAGE. BY OPENING SOFTWARE MEDIA PACKAGE, YOU\ + \ AGREE TO\nTHE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING SOFTWARE\nELECTRONICALLY,\ + \ INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING\nTHE \"ACCEPT\" BUTTON AT THE END\ + \ OF THIS AGREEMENT. IF YOU DO NOT AGREE\nTO ALL OF THE TERMS, PROMPTLY RETURN THE UNUSED\ + \ SOFTWARE TO YOUR PLACE\nOF PURCHASE FOR A REFUND OR, IF SOFTWARE IS ACCESSED ELECTRONICALLY,\n\ + SELECT THE \"DECLINE\" (OR \"EXIT\") BUTTON AT THE END OF THIS AGREEMENT.\nIF YOU HAVE SEPARATELY\ + \ AGREED TO LICENSE TERMS (\"MASTER TERMS\") FOR\nYOUR LICENSE TO THIS SOFTWARE, THEN SECTIONS\ + \ 1-6 OF THIS AGREEMENT\n(\"SUPPLEMENTAL LICENSE TERMS\") SHALL SUPPLEMENT AND SUPERSEDE\ + \ THE\nMASTER TERMS IN RELATION TO THIS SOFTWARE.\n\n1.\tDefinitions.\n\n(a) \"Entitlement\"\ + \ means the collective set of applicable documents\nauthorized by Oracle evidencing your\ + \ obligation to pay associated fees (if\nany) for the license, associated Services, and\ + \ the authorized scope of\nuse of Software under this Agreement.\n\n(b) \"Licensed Unit\"\ + \ means the unit of measure by which your use of\nSoftware and/or Service is licensed, as\ + \ described in your Entitlement.\n\n(c) \"Permitted Use\" means the licensed Software\ + \ use(s) authorized\nin this Agreement as specified in your Entitlement. The Permitted Use\n\ + for any bundled Oracle software not specified in your Entitlement will be\nevaluation use\ + \ as provided in Section 3.\n\n(d) \"Service\" means the service(s) that Oracle or its\ + \ delegate will\nprovide, if any, as selected in your Entitlement and as further\ndescribed\ + \ in the applicable service listings at\nwww.sun.com/service/servicelist.\n\n(e) \"\ + Software\" means the Oracle software described in your\nEntitlement. Also, certain software\ + \ may be included for evaluation use\nunder Section 3.\n\n(f) \"You\" and \"Your\" means\ + \ the individual or legal entity specified\nin the Entitlement, or for evaluation purposes,\ + \ the entity performing\nthe evaluation.\n\n2. License Grant and Entitlement.\n\nSubject\ + \ to the terms of your Entitlement, Oracle grants you a\nnonexclusive, nontransferable limited\ + \ license to use Software for its\nPermitted Use for the license term. Your Entitlement\ + \ will specify (a)\nSoftware licensed, (b) the Permitted Use, (c) the license term, and\ + \ (d)\nthe Licensed Units.\n\nAdditionally, if your Entitlement includes Services, then\ + \ it will also\nspecify the (e) Service and (f) service term.\n\nIf your rights to Software\ + \ or Services are limited in duration and the\ndate such rights begin is other than the\ + \ purchase date, your\nEntitlement will provide that beginning date(s).\n\nThe Entitlement\ + \ may be delivered to you in various ways depending on\nthe manner in which you obtain Software\ + \ and Services, for example, the\nEntitlement may be provided in your receipt, invoice or\ + \ your contract\nwith Oracle or authorized Oracle reseller. It may also be in electronic\n\ + format if you download Software.\n\n3. Permitted Use.\n\nAs selected in your Entitlement,\ + \ one or more of the following Permitted\nUses will apply to your use of Software. Unless\ + \ you have an Entitlement\nthat expressly permits it, you may not use Software for any of\ + \ the\nother Permitted Uses. If you don't have an Entitlement, or if your\nEntitlement doesn't\ + \ cover additional software delivered to you, then\nsuch software is for your Evaluation\ + \ Use.\n\n(a) Evaluation Use. You may evaluate Software internally for a period\nof 90 days\ + \ from your first use.\n\n(b) Research and Instructional Use. You may use Software internally\ + \ to\ndesign, develop and test, and also to provide instruction on such\nuses.\n\n(c) Individual\ + \ Use. You may use Software internally for personal,\nindividual use.\n\n(d) Commercial\ + \ Use. You may use Software internally for your own\ncommercial purposes.\n\n(e) Service\ + \ Provider Use. You may make Software functionality\naccessible (but not by providing Software\ + \ itself or through outsourcing\nservices) to your end users in an extranet deployment,\ + \ but not to your\naffiliated companies or to government agencies.\n\n4. Licensed Units.\n\ + \nYour Permitted Use is limited to the number of Licensed Units stated in\nyour Entitlement.\ + \ If you require additional Licensed Units, you will\nneed additional Entitlement(s).\n\n\ + 5. Restrictions.\n\n(a) The copies of Software provided to you under this Agreement\ + \ are\nlicensed, not sold, to you by Oracle. Oracle reserves all rights not\nexpressly granted.\ + \ (b) You may make a single archival copy of Software,\nbut otherwise may not copy, modify,\ + \ or distribute Software. However if\nthe Oracle documentation accompanying Software lists\ + \ specific portions of\nSoftware, such as header files, class libraries, reference source\ + \ code,\nand/or redistributable files, that may be handled differently, you may\ndo so only\ + \ as provided in the Oracle documentation. (c) You may not rent,\nlease, lend or encumber\ + \ Software. (d) Unless enforcement is prohibited\nby applicable law, you may not decompile,\ + \ or reverse engineer Software.\n(e) The terms and conditions of this Agreement will apply\ + \ to any\nSoftware updates, provided to you at Oracle's discretion, that replace\nand/or\ + \ supplement the original Software, unless such update contains a\nseparate license. (f)\ + \ You may not publish or provide the results of any\nbenchmark or comparison tests run on\ + \ Software to any third party\nwithout the prior written consent of Oracle. (g) Software\ + \ is confidential\nand copyrighted. (h) Unless otherwise specified, if Software is\ndelivered\ + \ with embedded or bundled software that enables functionality\nof Software, you may not\ + \ use such software on a stand-alone basis or\nuse any portion of such software to interoperate\ + \ with any program(s)\nother than Software. (i) Software may contain programs that perform\n\ + automated collection of system data and/or automated software updating\nservices. System\ + \ data collected through such programs may be used by\nOracle, its subcontractors, and its\ + \ service delivery partners for the\npurpose of providing you with remote system services\ + \ and/or improving\nOracle's software and systems. (j) Software is not designed, licensed\ + \ or\nintended for use in the design, construction, operation or maintenance\nof any nuclear\ + \ facility and Oracle and its licensors disclaim any express\nor implied warranty of fitness\ + \ for such uses. (k) No right, title or\ninterest in or to any trademark, service mark,\ + \ logo or trade name of\nOracle or its licensors is granted under this Agreement.\n\n6.\ + \ Java Compatibility and Open Source.\n\nSoftware may contain Java technology. You\ + \ may not create additional\nclasses to, or modifications of, the Java technology, except\ + \ under\ncompatibility requirements available under a separate agreement\navailable at www.java.net.\n\ + \nOracle supports and benefits from the global community of open source\ndevelopers, and\ + \ thanks the community for its important contributions\nand open standards-based technology,\ + \ which Oracle has adopted into many of\nits products.\n\nPlease note that portions of Software\ + \ may be provided with notices and\nopen source licenses from such communities and third\ + \ parties that\ngovern the use of those portions, and any licenses granted hereunder do\n\ + not alter any rights and obligations you may have under such open\nsource licenses, however,\ + \ the disclaimer of warranty and limitation of\nliability provisions in this Agreement will\ + \ apply to all Software in\nthis distribution.\n\n7. Term and Termination.\n\nThe license\ + \ and service term are set forth in your Entitlement(s). Your\nrights under this Agreement\ + \ will terminate immediately without notice\nfrom Oracle if you materially breach it or\ + \ take any action in derogation\nof Oracle's and/or its licensors' rights to Software. Oracle\ + \ may terminate\nthis Agreement should any Software become, or in Oracle's reasonable\n\ + opinion likely to become, the subject of a claim of intellectual\nproperty infringement\ + \ or trade secret misappropriation. Upon\ntermination, you will cease use of, and destroy,\ + \ Software and confirm\ncompliance in writing to Oracle. Sections 1, 5, 6, 7, and 9-15 will\n\ + survive termination of the Agreement.\n\n8. Limited Warranty.\n\nOracle warrants to\ + \ you that for a period of 90 days from the date of\npurchase, as evidenced by a copy of\ + \ the receipt, the media on which\nSoftware is furnished (if any) will be free of defects\ + \ in materials and\nworkmanship under normal use. Except for the foregoing, Software is\n\ + provided \"AS IS\". Your exclusive remedy and Oracle's entire liability\nunder this limited\ + \ warranty will be at Oracle's option to replace Software\nmedia or refund the fee paid\ + \ for Software. Some states do not allow\nlimitations on certain implied warranties, so\ + \ the above may not apply\nto you. This limited warranty gives you specific legal rights.\ + \ You may\nhave others, which vary from state to state.\n\n9. Disclaimer of Warranty.\n\ + \nUNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS,\nREPRESENTATIONS\ + \ AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR\ + \ PURPOSE OR NON-INFRINGEMENT\nARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS\ + \ ARE HELD TO\nBE LEGALLY INVALID.\n\n10. Limitation of Liability.\n\nTO THE EXTENT\ + \ NOT PROHIBITED BY LAW, IN NO EVENT WILL ORACLE OR ITS\nLICENSORS BE LIABLE FOR ANY LOST\ + \ REVENUE, PROFIT OR DATA, OR FOR\nSPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE\ + \ DAMAGES,\nHOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR\nRELATED\ + \ TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF ORACLE HAS\nBEEN ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGES. In no event will Oracle's\nliability to you, whether in contract, tort\ + \ (including negligence), or\notherwise, exceed the amount paid by you for Software under\ + \ this\nAgreement. The foregoing limitations will apply even if the above\nstated warranty\ + \ fails of its essential purpose. Some states do not\nallow the exclusion of incidental\ + \ or consequential damages, so some of\nthe terms above may not be applicable to you.\n\n\ + 11. Export Regulations.\n\nAll Software, documents, technical data, and any other materials\n\ + delivered under this Agreement are subject to U.S. export control laws\nand may be subject\ + \ to export or import regulations in other countries.\nYou agree to comply strictly with\ + \ these laws and regulations and\nacknowledge that you have the responsibility to obtain\ + \ any licenses to\nexport, re-export, or import as may be required after delivery to you.\n\ + \n12. U.S. Government Restricted Rights.\n\nIf Software is being acquired by or on behalf\ + \ of the U.S. Government or\nby a U.S. Government prime contractor or subcontractor (at\ + \ any tier),\nthen the Government's rights in Software and accompanying documentation\n\ + will be only as set forth in this Agreement; this is in accordance with\n48 CFR 227.7201\ + \ through 227.7202-4 (for Department of Defense (DOD)\nacquisitions) and with 48 CFR 2.101\ + \ and 12.212 (for non-DOD\nacquisitions).\n\n13. Governing Law.\n\nAny action related\ + \ to this Agreement will be governed by California law\nand controlling U.S. federal law.\ + \ No choice of law rules of any\njurisdiction will apply.\n\n14. Severability.\n\nIf\ + \ any provision of this Agreement is held to be unenforceable, this\nAgreement will remain\ + \ in effect with the provision omitted, unless\nomission would frustrate the intent of the\ + \ parties, in which case this\nAgreement will immediately terminate.\n\n15. Integration.\n\ + \nThis Agreement, including any terms contained in your Entitlement, is\nthe entire agreement\ + \ between you and Oracle relating to its subject\nmatter. It supersedes all prior or contemporaneous\ + \ oral or written\ncommunications, proposals, representations and warranties and prevails\n\ + over any conflicting or additional terms of any quote, order,\nacknowledgment, or other\ + \ communication between the parties relating to\nits subject matter during the term of this\ + \ Agreement. No modification\nof this Agreement will be binding, unless in writing and signed\ + \ by an\nauthorized representative of each party.\n\nFor inquiries please contact: Oracle\ + \ Corporation, 500 Oracle Parkway,\nRedwood Shores, California 94065, USA." json: oracle-entitlement-05-15.json - yml: oracle-entitlement-05-15.yml + yaml: oracle-entitlement-05-15.yml html: oracle-entitlement-05-15.html - text: oracle-entitlement-05-15.LICENSE + license: oracle-entitlement-05-15.LICENSE - license_key: oracle-java-ee-sdk-2010 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-oracle-java-ee-sdk-2010 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Oracle Technology Network Developer License Terms for JAVA EE SDK\n\nExport Controls\ + \ on the Programs Selecting the \"Accept License Agreement\" button is a confirmation of\ + \ your agreement that you comply, now and during the trial term, with each of the following\ + \ statements:\n\n-You are not a citizen, national, or resident of, and are not under control\ + \ of, the government of Cuba, Iran, Sudan, Libya, North Korea, Syria, nor any country to\ + \ which the United States has prohibited export.\n\n-You will not download or otherwise\ + \ export or re-export the Programs, directly or indirectly, to the above mentioned countries\ + \ nor to citizens, nationals or residents of those countries.\n\n-You are not listed on\ + \ the United States Department of Treasury lists of Specially Designated Nationals, Specially\ + \ Designated Terrorists, and Specially Designated Narcotic Traffickers, nor are you listed\ + \ on the United States Department of Commerce Table of Denial Orders.\n\nYou will not download\ + \ or otherwise export or re-export the Programs, directly or indirectly, to persons on the\ + \ above mentioned lists.\n\nYou will not use the Programs for, and will not allow the Programs\ + \ to be used for, any purposes prohibited by United States law, including, without limitation,\ + \ for the development, design, manufacture or production of nuclear, chemical or biological\ + \ weapons of mass destruction.\n\nEXPORT RESTRICTIONS You agree that U.S. export control\ + \ laws and other applicable export and import laws govern your use of the programs, including\ + \ technical data; additional information can be found on Oracle®'s Global Trade Compliance\ + \ web site (http://www.oracle.com/products/export).\n\nYou agree that neither the programs\ + \ nor any direct product thereof will be exported, directly, or indirectly, in violation\ + \ of these laws, or will be used for any purpose prohibited by these laws including, without\ + \ limitation, nuclear, chemical, or biological weapons proliferation.\n\nOracle Employees:\ + \ Under no circumstances are Oracle Employees authorized to download software for the purpose\ + \ of distributing it to customers. Oracle products are available to employees for internal\ + \ use or demonstration purposes only. In keeping with Oracle's trade compliance obligations\ + \ under U.S. and applicable multilateral law, failure to comply with this policy could result\ + \ in disciplinary action up to and including termination.\n\nNote: You are bound by the\ + \ Oracle Technology Network (\"OTN\") License Agreement terms. The OTN License Agreement\ + \ terms also apply to all updates you receive under your Technology Track subscription.\n\ + \nThe OTN License Agreement terms below supercede any shrinkwrap license on the OTN Technology\ + \ Track software CDs and previous OTN License terms (including the Oracle Program License\ + \ as modified by the OTN Program Use Certificate). \n\nOracle Technology Network Development\ + \ License Agreement for JAVA EE SDK\n\n\"We,\" \"us,\" and \"our\" refers to Oracle America,\ + \ Inc., for and on behalf of itself and its subsidiaries and affiliates under common control.\ + \ \"You\" and \"your\" refers to the individual or entity that wishes to use the programs\ + \ from Oracle. \"Programs\" refers to the Java EE SDK software product you wish to download\ + \ and use and program documentation. \"License\" refers to your right to use the programs\ + \ under the terms of this agreement. This agreement is governed by the substantive and procedural\ + \ laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and\ + \ venue in, the courts of San Francisco, San Mateo, or Santa Clara counties in California\ + \ in any dispute arising out of or relating to this agreement.\n\nWe are willing to license\ + \ the programs to you only upon the condition that you accept all of the terms contained\ + \ in this agreement. Read the terms carefully and select the \"Accept\" button at the bottom\ + \ of the page to confirm your acceptance. If you are not willing to be bound by these terms,\ + \ select the \"Do Not Accept\" button and the registration process will not continue.\n\n\ + License Rights\n\nWe grant you a nonexclusive, nontransferable limited license to use the\ + \ programs for purposes of developing your applications. If you want to use the programs\ + \ for any purpose other than as expressly permitted under this agreement you must contact\ + \ us, or an Oracle reseller, to obtain the appropriate license. We may audit your use of\ + \ the programs. Program documentation is provided with the programs.\n\nOwnership and Restrictions\n\ + \nWe retain all ownership and intellectual property rights in the programs. You may make\ + \ a sufficient number of copies of the programs for the licensed use and one copy of the\ + \ programs for backup purposes.\n\nYou may not:\n\n· use the programs for any purpose other\ + \ than as provided above; \n· distribute the programs; \n· charge your end users for use\ + \ of the programs; \n· remove or modify any program markings or any notice of our proprietary\ + \ rights; \n· use the programs to provide third party training on the content and/or functionality\ + \ of the programs; \n· assign this agreement or give the programs, program access or an\ + \ interest in the programs to any individual or entity; \n· cause or permit reverse engineering\ + \ (unless required by law for interoperability), disassembly or decompilation of the programs;\ + \ \n· disclose results of any program benchmark tests without our prior consent; or, \n\ + · use any Oracle name, trademark or logo.\n\nExport\n\nYou agree that U.S. export control\ + \ laws and other applicable export and import laws govern your use of the programs, including\ + \ technical data; additional information can be found on Oracle's Global Trade Compliance\ + \ web site located at http://www.oracle.com/products/export/index.html. You agree that neither\ + \ the programs nor any direct product thereof will be exported, directly, or indirectly,\ + \ in violation of these laws, or will be used for any purpose prohibited by these laws including,\ + \ without limitation, nuclear, chemical, or biological weapons proliferation.\n\nDisclaimer\ + \ of Warranty and Exclusive Remedies\n\nTHE PROGRAMS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY\ + \ OF ANY KIND. WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT\ + \ LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\ + \ OR NONINFRINGEMENT. IN NO EVENT SHALL WE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL,\ + \ PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA\ + \ USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN\ + \ IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. OUR ENTIRE LIABILITY FOR DAMAGES\ + \ HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).\n\nNo Technical\ + \ Support\n\nOur technical support organization will not provide technical support, phone\ + \ support, or updates to you for the programs licensed under this agreement.\n\nRestricted\ + \ Rights\n\nIf you distribute a license to the United States government, the programs, including\ + \ documentation, shall be considered commercial computer software and you will place a legend,\ + \ in addition to applicable copyright notices, on the documentation, and on the media label,\ + \ substantially similar to the following:\n\nNOTICE OF RESTRICTED RIGHTS\n\n\"Programs delivered\ + \ subject to the DOD FAR Supplement are 'commercial computer software' and use, duplication,\ + \ and disclosure of the programs, including documentation, shall be subject to the licensing\ + \ restrictions set forth in the applicable Oracle license agreement. Otherwise, programs\ + \ delivered subject to the Federal Acquisition Regulations are 'restricted computer software'\ + \ and use, duplication, and disclosure of the programs, including documentation, shall be\ + \ subject to the restrictions in FAR 52.227-19, Commercial Computer Software-Restricted\ + \ Rights (June 1987). Oracle America, Inc., 500 Oracle Parkway, Redwood City, CA 94065.\"\ + \n\nEnd of Agreement\n\nYou may terminate this agreement by destroying all copies of the\ + \ programs. We have the right to terminate your right to use the programs if you fail to\ + \ comply with any of the terms of this agreement, in which case you shall destroy all copies\ + \ of the programs.\n\nRelationship Between the Parties\n\nThe relationship between you and\ + \ us is that of licensee/licensor. Neither party will represent that it has any authority\ + \ to assume or create any obligation, express or implied, on behalf of the other party,\ + \ nor to represent the other party as agent, employee, franchisee, or in any other capacity.\ + \ Nothing in this agreement shall be construed to limit either party's right to independently\ + \ develop or distribute software that is functionally similar to the other party's products,\ + \ so long as proprietary information of the other party is not included in such software.\n\ + \nOpen Source\n\n\"Open Source\" software - software available without charge for use, modification\ + \ and distribution - is often licensed under terms that require the user to make the user's\ + \ modifications to the Open Source software or any software that the user 'combines' with\ + \ the Open Source software freely available in source code form. If you use Open Source\ + \ software in conjunction with the programs, you must ensure that your use does not: (i)\ + \ create, or purport to create, obligations of us with respect to the Oracle programs; or\ + \ (ii) grant, or purport to grant, to any third party any rights to or immunities under\ + \ our intellectual property or proprietary rights in the Oracle. For example, you may not\ + \ develop a software program using an Oracle program and an Open Source program where such\ + \ use results in a program file(s) that contains code from both the Oracle program and the\ + \ Open Source program (including without limitation libraries) if the Open Source program\ + \ is licensed under a license that requires any \"modifications\" be made freely available.\ + \ You also may not combine the Oracle program with programs licensed under the GNU General\ + \ Public License (\"GPL\") in any manner that could cause, or could be interpreted or asserted\ + \ to cause, the Oracle program, or any modifications thereto, to become subject to the terms\ + \ of the GPL.\n\nEntire Agreement\n\nYou agree that this agreement is the complete agreement\ + \ for the programs and licenses, and this agreement supersedes all prior or contemporaneous\ + \ agreements or representations. If any term of this agreement is found to be invalid or\ + \ unenforceable, the remaining provisions will remain effective.\n\nLast updated: 05/10/2010\ + \ Should you have any questions concerning this License Agreement, or if you desire to contact\ + \ Oracle for any reason, please write: Oracle America, Inc. 500 Oracle Parkway, Redwood\ + \ City, CA 94065\n\nOracle may contact you to ask if you had a satisfactory experience installing\ + \ and using this OTN software download." json: oracle-java-ee-sdk-2010.json - yml: oracle-java-ee-sdk-2010.yml + yaml: oracle-java-ee-sdk-2010.yml html: oracle-java-ee-sdk-2010.html - text: oracle-java-ee-sdk-2010.LICENSE + license: oracle-java-ee-sdk-2010.LICENSE - license_key: oracle-master-agreement + category: Commercial spdx_license_key: LicenseRef-scancode-oracle-master-agreement other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + The Oracle Master Agreement (OMA) is the standard agreement that is used to license Oracle programs and acquire related services. + + See http://www.oracle.com/us/corporate/contracts/oma/index.html + + Oracle 1-800-633-0738 json: oracle-master-agreement.json - yml: oracle-master-agreement.yml + yaml: oracle-master-agreement.yml html: oracle-master-agreement.html - text: oracle-master-agreement.LICENSE + license: oracle-master-agreement.LICENSE - license_key: oracle-mysql-foss-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-oracle-mysql-foss-exception2.0 other_spdx_license_keys: - LicenseRef-scancode-oracle-mysql-foss-exception-2.0 is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + Oracle's FOSS License Exception Terms and Conditions + + 1. Definitions. "Derivative Work" means a derivative work, as defined + under applicable copyright law, formed entirely from the Program and + one or more FOSS Applications. + + "FOSS Application" means a free and open source software application + distributed subject to a license listed in the section below titled + "FOSS License List." + + "FOSS Notice" means a notice placed by Oracle or MySQL in a copy of + the MySQL Client Libraries stating that such copy of the MySQL Client + Libraries may be distributed under Oracle's or MySQL's FOSS (or FLOSS) + License Exception. + + "Independent Work" means portions of the Derivative Work that are not + derived from the Program and can reasonably be considered independent + and separate works. + + "Program" means a copy of Oracle's MySQL Client Libraries that + contains a FOSS Notice. + + 2. A FOSS application developer ("you" or "your") may distribute a + Derivative Work provided that you and the Derivative Work meet all of + the following conditions: + + a. You obey the GPL in all respects for the Program and all portions + (including modifications) of the Program included in the + Derivative Work (provided that this condition does not apply to + Independent Works); + b. The Derivative Work does not include any work licensed under the + GPL other than the Program; + c. You distribute Independent Works subject to a license listed in + the section below titled "FOSS License List"; + d. You distribute Independent Works in object code or executable + form with the complete corresponding machine-readable source code + on the same medium and under the same FOSS license applying to + the object code or executable forms; + e. All works that are aggregated with the Program or the Derivative + Work on a medium or volume of storage are not derivative works of + the Program, Derivative Work or FOSS Application, and must + reasonably be considered independent and separate works. + + 3. Oracle reserves all rights not expressly granted in these terms and + conditions. If all of the above conditions are not met, then this FOSS + License Exception does not apply to you or your Derivative Work. + + FOSS License List + + +------------------------------------------------------------------------+ + |License Name |Version(s)/Copyright Date| + |----------------------------------------------+-------------------------| + |Academic Free License |2.0 | + |----------------------------------------------+-------------------------| + |Apache Software License |1.0/1.1/2.0 | + |----------------------------------------------+-------------------------| + |Apple Public Source License |2.0 | + |----------------------------------------------+-------------------------| + |Artistic license |From Perl 5.8.0 | + |----------------------------------------------+-------------------------| + |BSD license |"July 22 1999" | + |----------------------------------------------+-------------------------| + |Common Development and Distribution License |1.0 | + |(CDDL) | | + |----------------------------------------------+-------------------------| + |Common Public License |1.0 | + |----------------------------------------------+-------------------------| + |Eclipse Public License |1.0 | + |----------------------------------------------+-------------------------| + |European Union Public License (EUPL)¹ |1.1 | + |----------------------------------------------+-------------------------| + |GNU Affero General Public License (AGPL) |3.0 | + |----------------------------------------------+-------------------------| + |GNU Library or "Lesser" General Public License|2.0/2.1/3.0 | + |(LGPL) | | + |----------------------------------------------+-------------------------| + |GNU General Public License (GPL) |3.0 | + |----------------------------------------------+-------------------------| + |IBM Public License |1.0 | + |----------------------------------------------+-------------------------| + |Jabber Open Source License |1.0 | + |----------------------------------------------+-------------------------| + |MIT License (As listed in file |- | + |MIT-License.txt) | | + |----------------------------------------------+-------------------------| + |Mozilla Public License (MPL) |1.0/1.1 | + |----------------------------------------------+-------------------------| + |Open Software License |2.0 | + |----------------------------------------------+-------------------------| + |OpenSSL license (with original SSLeay license)|"2003" ("1998") | + |----------------------------------------------+-------------------------| + |PHP License |3.0/3.01 | + |----------------------------------------------+-------------------------| + |Python license (CNRI Python License) |- | + |----------------------------------------------+-------------------------| + |Python Software Foundation License |2.1.1 | + |----------------------------------------------+-------------------------| + |Sleepycat License |"1999" | + |----------------------------------------------+-------------------------| + |University of Illinois/NCSA Open Source |- | + |License | | + |----------------------------------------------+-------------------------| + |W3C License |"2001" | + |----------------------------------------------+-------------------------| + |X11 License |"2001" | + |----------------------------------------------+-------------------------| + |Zlib/libpng License |- | + |----------------------------------------------+-------------------------| + |Zope Public License |2.0 | + +------------------------------------------------------------------------+ + + ¹) When an Independent Work is licensed under a "Compatible License" + pursuant to the EUPL, the Compatible License rather than the EUPL is the + applicable license for purposes of these FOSS License Exception Terms and + Conditions. json: oracle-mysql-foss-exception-2.0.json - yml: oracle-mysql-foss-exception-2.0.yml + yaml: oracle-mysql-foss-exception-2.0.yml html: oracle-mysql-foss-exception-2.0.html - text: oracle-mysql-foss-exception-2.0.LICENSE + license: oracle-mysql-foss-exception-2.0.LICENSE - license_key: oracle-nftc-2021 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-oracle-nftc-2021 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Oracle No-Fee Terms and Conditions (NFTC) + + Definitions + + "Oracle" refers to Oracle America, Inc. "You" and "Your" refers to (a) a company or organization (each an "Entity") accessing the Programs, if use of the Programs will be on behalf of such Entity; or (b) an individual accessing the Programs, if use of the Programs will not be on behalf of an Entity. "Program(s)" refers to Oracle software provided by Oracle pursuant to the following terms and any updates, error corrections, and/or Program Documentation provided by Oracle. "Program Documentation" refers to Program user manuals and Program installation manuals, if any. If available, Program Documentation may be delivered with the Programs and/or may be accessed from www.oracle.com/documentation. "Separate Terms" refers to separate license terms that are specified in the Program Documentation, readmes or notice files and that apply to Separately Licensed Technology. "Separately Licensed Technology" refers to Oracle or third party technology that is licensed under Separate Terms and not under the terms of this license. + + Separately Licensed Technology + + Oracle may provide certain notices to You in Program Documentation, readmes or notice files in connection with Oracle or third party technology provided as or with the Programs. If specified in the Program Documentation, readmes or notice files, such technology will be licensed to You under Separate Terms. Your rights to use Separately Licensed Technology under Separate Terms are not restricted in any way by the terms herein. For clarity, notwithstanding the existence of a notice, third party technology that is not Separately Licensed Technology shall be deemed part of the Programs licensed to You under the terms of this license. + + Source Code for Open Source Software + + For software that You receive from Oracle in binary form that is licensed under an open source license that gives You the right to receive the source code for that binary, You can obtain a copy of the applicable source code from https://oss.oracle.com/sources/ or http://www.oracle.com/goto/opensourcecode. If the source code for such software was not provided to You with the binary, You can also receive a copy of the source code on physical media by submitting a written request pursuant to the instructions in the "Written Offer for Source Code" section of the latter website. + + ------------------------------------------------------------------------------- + + The following license terms apply to those Programs that are not provided to You under Separate Terms. + + License Rights and Restrictions + + Oracle grants to You, as a recipient of this Program, subject to the conditions stated herein, a nonexclusive, nontransferable, limited license to: + + (a) internally use the unmodified Programs for the purposes of developing, testing, prototyping and demonstrating your applications, and running the Program for Your own personal use or internal business operations; and + + (b) redistribute the unmodified Program and Program Documentation, under the terms of this License, provided that You do not charge Your licensees any fees associated with such distribution or use of the Program, including, without limitation, fees for products that include or are bundled with a copy of the Program or for services that involve the use of the distributed Program. + + You may make copies of the Programs to the extent reasonably necessary for exercising the license rights granted herein and for backup purposes. You are granted the right to use the Programs to provide third party training in the use of the Programs and associated Separately Licensed Technology only if there is express authorization of such use by Oracle on the Program's download page or in the Program Documentation. + + Your license is contingent on compliance with the following conditions: + + - You do not remove markings or notices of either Oracle's or a licensor's proprietary rights from the Programs or Program Documentation; + + - You comply with all U.S. and applicable export control and economic sanctions laws and regulations that govern Your use of the Programs (including technical data); + + - You do not cause or permit reverse engineering, disassembly or decompilation of the Programs (except as allowed by law) by You nor allow an associated party to do so. + + For clarity, any source code that may be included in the distribution with the Programs is provided solely for reference purposes and may not be modified, unless such source code is under Separate Terms permitting modification. + + Ownership + + Oracle or its licensors retain all ownership and intellectual property rights to the Programs. + + Information Collection + + The Programs' installation and/or auto-update processes, if any, may transmit a limited amount of data to Oracle or its service provider about those processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. Refer to Oracle's Privacy Policy at www.oracle.com/privacy. + + Disclaimer of Warranties; Limitation of Liability + + THE PROGRAMS ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL ORACLE 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. + + Last updated: 12 September 2021 json: oracle-nftc-2021.json - yml: oracle-nftc-2021.yml + yaml: oracle-nftc-2021.yml html: oracle-nftc-2021.html - text: oracle-nftc-2021.LICENSE + license: oracle-nftc-2021.LICENSE - license_key: oracle-openjdk-classpath-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-oracle-openjdk-exception-2.0 other_spdx_license_keys: - LicenseRef-scancode-oracle-openjdk-classpath-exception-2.0 is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + "CLASSPATH" EXCEPTION TO THE GPL + + Certain source files distributed by Oracle America and/or its affiliates are + subject to the following clarification and special exception to the GPL, but + only where Oracle has expressly included in the particular source file's header + the words "Oracle designates this particular file as subject to the "Classpath" + exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. json: oracle-openjdk-classpath-exception-2.0.json - yml: oracle-openjdk-classpath-exception-2.0.yml + yaml: oracle-openjdk-classpath-exception-2.0.yml html: oracle-openjdk-classpath-exception-2.0.html - text: oracle-openjdk-classpath-exception-2.0.LICENSE + license: oracle-openjdk-classpath-exception-2.0.LICENSE - license_key: oracle-otn-javase-2019 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-oracle-otn-javase-2019 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Oracle Technology Network License Agreement for Oracle Java SE + + Oracle is willing to authorize Your access to software associated with this License Agreement (“Agreement”) only upon the condition that You accept that this Agreement governs Your use of the software. By selecting the "Accept License Agreement" button or box (or the equivalent) or installing or using the Programs, You indicate Your acceptance of this Agreement and Your agreement, as an authorized representative of Your company or organization (if being acquired for use by an entity) or as an individual, to comply with the license terms that apply to the software that You wish to download and access. If You are not willing to be bound by this Agreement, do not select the “Accept License Agreement” button or box (or the equivalent) and do not download or access the software. + + Definitions"Oracle" refers to Oracle America, Inc. + + "You" and "Your" refers to (a) a company or organization (“Entity”) accessing the Programs, if use of the Programs will be on behalf of such Entity; or (b) an individual accessing the Programs (“Individual”), if use of the Programs will not be on behalf of an Entity. + + “Contractors” refers to Your agents and contractors (including, without limitation, outsourcers). + + “Development Use” refers to Your internal use of the Programs to develop, test, prototype and demonstrate Your Applications. For purposes of clarity, the “to develop” grant includes using the Programs to run profilers, debuggers and Integrated Development Environments (IDE Tools) where the primary purpose of the IDE Tools is profiling, debugging and source code editing Applications. + + "Program(s)" refers to Oracle software provided by Oracle pursuant to this Agreement and any updates, error corrections, and/or Program Documentation provided by Oracle. + + “Program Documentation” refers to the Licensing Information User Manual for Oracle Java SE for the applicable version accessible at https://www.oracle.com/technetwork/java/javase/documentation/ and other documentation provided by Oracle with the Programs or accessible at https://docs.oracle.com/en/java. + + “Separate Terms” refers to separate license terms that are specified in the Program Documentation, readmes or notice files and that apply to Separately Licensed Third Party Technology. + + “Separately Licensed Third Party Technology” refers to third party technology that is licensed under Separate Terms and not under the terms of this Agreement. + + “Application” refers to applications intended to run on the Java Platform, Standard Edition. + + “Personal Use” refers to an Individual's use of the Programs solely on a desktop or laptop computer under such Individual's control only to run Personal Applications. + + “Personal Applications” refers to Applications designed for individual personal use only, such as games or personal productivity tools. + + “Oracle Approved Product Use” refers to Your internal use of the Programs only to run: (a) the product(s) identified as Schedule A Products at https://java.com/oaa; and/or (b) software Applications developed using the products identified as Schedule B Products at java.com/oaa by an Oracle authorized licensee of such Schedule B Products. If You are unsure whether the Application You intend to run using the Programs is developed using a Schedule B Product, please contact your Application provider. + + “Oracle Cloud Infrastructure Use (“OCI Use”)” refers to Your use of the Programs on Oracle's Cloud Infrastructure with the Oracle Cloud Infrastructure products identified in the Oracle PaaS and IaaS Universal Credits Service Descriptions available at http://oracle.com/contracts during the period in which You maintain a subscription for such Oracle Cloud Infrastructure products. + + License Rights and Restrictions Oracle grants You a nonexclusive, nontransferable, limited license to use the Programs, subject to the restrictions stated in this Agreement and Program Documentation, only for: + + (i) Personal Use, + (ii) Development Use, + (iii) Oracle Approved Product Use, and/or + (iv) Oracle Cloud Infrastructure Use. + You may allow Your Contractor(s) to use the Programs, provided they are acting on Your behalf to exercise license rights granted in this Agreement and further provided that You are responsible for their compliance with this Agreement in such use. You will have a written agreement with Your Contractor(s) that strictly limits their right to use the Programs and that otherwise protects Oracle's intellectual property rights to the same extent as this Agreement. You may make copies of the Programs to the extent reasonably necessary to exercise the license rights granted in this Agreement. + + You may not: + + remove or modify any Program markings or any notice of Oracle's or a licensor's proprietary rights; + make the Programs available in any manner to any third party (other than Contractors acting on Your behalf as set forth in this Agreement); + assign this Agreement or distribute, give, or transfer the Programs or an interest in them to any third party, except as expressly permitted in this Agreement for Contractors (the foregoing shall not be construed to limit the rights You may otherwise have with respect to Separately Licensed Third Party Technology); + cause or permit reverse engineering (unless required by law for interoperability), disassembly or decompilation of the Programs; and + create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun", “oracle” or similar convention as specified by Oracle in any naming convention designation. + + The Programs may contain source code that, unless expressly licensed in this Agreement for other purposes (for example, licensed under an open source license), is provided solely for reference purposes pursuant to the terms of this Agreement and may not be modified. + + All rights not expressly granted in this Agreement are reserved by Oracle. If You want to use the Programs for any purpose other than as expressly permitted under this Agreement, You must obtain from Oracle or an Oracle reseller a valid Program license under a separate agreement permitting such use. + + OwnershipOracle or its licensors retain all ownership and intellectual property rights to the Programs. + + Third-Party Technology The Programs may contain or require the use of third party technology that is provided with the Programs. Oracle may provide certain notices to You in Program Documentation, readmes or notice files in connection with such third party technology. Third party technology will be licensed to You either under the terms of this Agreement or, if specified in the Program Documentation, readmes or notice files, under Separate Terms. Your rights to use Separately Licensed Third Party Technology under Separate Terms are not restricted in any way by this Agreement. However, for clarity, notwithstanding the existence of a notice, third party technology that is not Separately Licensed Third Party Technology shall be deemed part of the Programs and is licensed to You under the terms of this Agreement. + + Source Code for Open Source SoftwareFor software that You receive from Oracle in binary form that is licensed under an open source license that gives You the right to receive the source code for that binary, You can obtain a copy of the applicable source code from https://oss.oracle.com/sources/ or http://www.oracle.com/goto/opensourcecode. If the source code for such software was not provided to You with the binary, You can also receive a copy of the source code on physical media by submitting a written request pursuant to the instructions in the "Written Offer for Source Code" section of the latter website. + + Export Controls Export laws and regulations of the United States and any other relevant local export laws and regulations apply to the Programs. You agree that such export control laws govern Your use of the Programs (including technical data) and any services deliverables provided under this agreement, and You agree to comply with all such export laws and regulations (including "deemed export" and "deemed re-export" regulations). You agree that no data, information, program and/or materials resulting from Programs or services (or direct products thereof) will be exported, directly or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation, or development of missile technology. Accordingly, You confirm: + + You will not download, provide, make available or otherwise export or re-export the Programs, directly or indirectly, to countries prohibited by applicable laws and regulations nor to citizens, nationals or residents of those countries. + You are not listed on the United States Department of Treasury lists of Specially Designated Nationals and Blocked Persons, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers, nor are You listed on the United States Department of Commerce Table of Denial Orders. + You will not download or otherwise export or re-export the Programs, directly or indirectly, to persons on the above mentioned lists. + You will not use the Programs for, and will not allow the Programs to be used for, any purposes prohibited by applicable law, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction. + + Information CollectionThe Programs' installation and/or update processes, if any, may transmit a limited amount of data to Oracle or its service provider about those processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. Refer to Oracle's Privacy Policy at www.oracle.com/privacy. + + Disclaimer of Warranties; Limitation of Liability THE PROGRAMS ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. + + IN NO EVENT WILL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY FOR DAMAGES UNDER THIS AGREEMENT SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000). + + No Technical Support Oracle does not provide technical support, phone support, or updates under this Agreement. + + Audit; Termination Oracle may audit an Entity's use of the Programs. You may terminate this Agreement by destroying all copies of the Programs. This Agreement shall automatically terminate without notice if You fail to comply with any of the terms of this Agreement, in which case You shall promptly destroy all copies of the Programs. + + Relationship Between the Parties Oracle is an independent contractor and we agree that no partnership, joint venture, or agency relationship exists between us. We each will be responsible for paying our own employees, including employment related taxes and insurance. Nothing in this Agreement shall be construed to limit either party's right to independently develop or distribute software that is functionally similar to the other party's products, so long as proprietary information of the other party is not included in such software. + + Entire Agreement; Governing Law You agree that this Agreement is the complete agreement for the Programs and this Agreement supersedes all prior or contemporaneous agreements or representations, including any clickwrap, shrinkwrap or similar licenses, or license agreements for prior versions of the Programs. This Agreement may not be modified and the rights and restrictions may not be altered or waived except in a writing signed by authorized representatives of You and of Oracle. If any term of this Agreement is found to be invalid or unenforceable, the remaining provisions will remain effective. + + This Agreement is governed by the substantive and procedural laws of the State of California, USA, and You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco or Santa Clara counties in California in any dispute arising out of or relating to this Agreement. + + Notices Should You have any questions concerning this Agreement, or if You desire to contact Oracle for any reason, please write: + + Oracle America, Inc. + 500 Oracle Parkway + Redwood City, CA 94065 + + Oracle Employees: Under no circumstances are Oracle employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to Oracle employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, an Oracle employee's failure to comply with this policy could result in disciplinary action up to and including termination. + + Last updated: April 10, 2019 json: oracle-otn-javase-2019.json - yml: oracle-otn-javase-2019.yml + yaml: oracle-otn-javase-2019.yml html: oracle-otn-javase-2019.html - text: oracle-otn-javase-2019.LICENSE + license: oracle-otn-javase-2019.LICENSE - license_key: oracle-sql-developer + category: Proprietary Free spdx_license_key: LicenseRef-scancode-oracle-sql-developer other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Oracle SQL Developer License Terms \nOracle SQL Developer Data Modeler License Terms\n\ + \nExport Controls on the Programs \nSelecting the \"Accept License Agreement\" button is\ + \ a confirmation of your agreement that you comply, now and during the trial term, with\ + \ each of the following statements:\n\n-You are not a citizen, national, or resident of,\ + \ and are not under control of, the government of Cuba, Iran, Sudan, Libya, North Korea,\ + \ Syria, nor any country to which the United States has prohibited export. \n-You will not\ + \ download or otherwise export or re-export the Programs, directly or indirectly, to the\ + \ above mentioned countries nor to citizens, nationals or residents of those countries.\ + \ \n-You are not listed on the United States Department of Treasury lists of Specially Designated\ + \ Nationals, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers,\ + \ nor are you listed on the United States Department of Commerce Table of Denial Orders.\n\ + \n\nYou will not download or otherwise export or re-export the Programs, directly or indirectly,\ + \ to persons on the above mentioned lists.\n\nYou will not use the Programs for, and will\ + \ not allow the Programs to be used for, any purposes prohibited by United States law, including,\ + \ without limitation, for the development, design, manufacture or production of nuclear,\ + \ chemical or biological weapons of mass destruction.\n\nEXPORT RESTRICTIONS \nYou agree\ + \ that U.S. export control laws and other applicable export and import laws govern your\ + \ use of the programs, including technical data; additional information can be found on\ + \ Oracle®'s Global Trade Compliance web site (http://www.oracle.com/products/export).\n\n\ + You agree that neither the programs nor any direct product thereof will be exported, directly,\ + \ or indirectly, in violation of these laws, or will be used for any purpose prohibited\ + \ by these laws including, without limitation, nuclear, chemical, or biological weapons\ + \ proliferation.\n\nOracle Employees: Under no circumstances are Oracle Employees authorized\ + \ to download software for the purpose of distributing it to customers. Oracle products\ + \ are available to employees for internal use or demonstration purposes only. In keeping\ + \ with Oracle's trade compliance obligations under U.S. and applicable multilateral law,\ + \ failure to comply with this policy could result in disciplinary action up to and including\ + \ termination.\n\nNote: You are bound by the Oracle Technology Network (\"OTN\") License\ + \ Agreement terms. The OTN License Agreement terms also apply to all updates you receive\ + \ under your Technology Track subscription.\n\nThe OTN License Agreement terms below supercede\ + \ any shrinkwrap license on the OTN Technology Track software CDs and previous OTN License\ + \ terms (including the Oracle Program License as modified by the OTN Program Use Certificate).\n\ + \nOracle SQL Developer License Agreement \nOracle SQL Developer Data Modeler License Agreement\n\ + \nWe,\" \"us,\" and \"our\" refers to Oracle America, Inc., for and on behalf of itself\ + \ and its subsidiaries and affiliates under common control. \"You\" and \"your\" refers\ + \ to the individual or entity that wishes to use the programs from Oracle. \"Programs\"\ + \ refers to the Oracle software product you wish to download and use and program documentation.\ + \ \"License\" refers to your right to use the programs under the terms of this agreement.\ + \ This agreement is governed by the substantive and procedural laws of California. You and\ + \ Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San\ + \ Francisco, San Mateo, or Santa Clara counties in California in any dispute arising out\ + \ of or relating to this agreement.\n\nWe are willing to license the programs to you only\ + \ upon the condition that you accept all of the terms contained in this agreement. Read\ + \ the terms carefully and select the \"Accept\" button at the bottom of the page to confirm\ + \ your acceptance. If you are not willing to be bound by these terms, select the \"Do Not\ + \ Accept\" button and the registration process will not continue.\n\nLICENSE RIGHTS \nWe\ + \ grant you a nonexclusive, nontransferable limited license to use the programs solely for\ + \ your business operations and any third party training as part of such business operations.\ + \ We may audit your use of the programs. Program documentation may be accessed online at\ + \ http://www.oracle.com/technetwork/indexes/documentation/index.html. \n\nOwnership and\ + \ Restrictions \nWe retain all ownership and intellectual property rights in the programs.\ + \ You may make a sufficient number of copies of the programs for the licensed use and one\ + \ copy of the programs for backup purposes.\n\nYou may not: \n- remove or modify any program\ + \ markings or any notice of our proprietary rights; \n- make the programs available in any\ + \ manner to any third party, other than as specified above; \n- use the programs for any\ + \ purpose other than as provided above; \n- assign this agreement or give or transfer the\ + \ programs or an interest in them to another individual or entity; \n- cause or permit reverse\ + \ engineering (unless required by law for interoperability), disassembly or decompilation\ + \ of the programs; \n- disclose results of any program benchmark tests without our prior\ + \ consent.\n\nExport \nYou agree that U.S. export control laws and other applicable export\ + \ and import laws govern your use of the programs, including technical data; additional\ + \ information can be found on Oracle's Global Trade Compliance web site located at http://www.oracle.com/products/export/index.html?content.html.\ + \ You agree that neither the programs nor any direct product thereof will be exported, directly,\ + \ or indirectly, in violation of these laws, or will be used for any purpose prohibited\ + \ by these laws including, without limitation, nuclear, chemical, or biological weapons\ + \ proliferation.\n\nDisclaimer of Warranty and Exclusive Remedies\nTHE PROGRAMS ARE PROVIDED\ + \ \"AS IS\" WITHOUT WARRANTY OF ANY KIND. WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND\ + \ IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.\n\nIN NO EVENT SHALL WE BE LIABLE FOR ANY\ + \ INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS\ + \ OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN\ + \ AN ACTION IN CONTRACT OR TORT, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH\ + \ DAMAGES. OUR ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND\ + \ DOLLARS (U.S. $1,000).\n\nTrial Programs Included With Orders \nWe may include additional\ + \ programs with an order which may be used for trial purposes only. You will have 30 days\ + \ from the delivery date to evaluate these programs. Any use of these programs after the\ + \ 30 day trial period requires you to obtain the applicable license. Programs licensed for\ + \ trial purposes are provided \"as is\" and we do not provide technical support or any warranties\ + \ for these programs.\n\nTechnical Support \nOur technical support organization does not\ + \ provide technical support, phone support, or updates specifically for the programs licensed\ + \ under this agreement. However, if you have a supported license of an Oracle database program,\ + \ then the technical support organization will provide technical support, phone support\ + \ for the program licensed hereunder in conjunction with the Oracle database program license.\n\ + \nEnd of Agreement \nYou may terminate this agreement by destroying all copies of the programs.\ + \ We have the right to terminate your right to use the programs if you fail to comply with\ + \ any of the terms of this agreement, in which case you shall destroy all copies of the\ + \ programs.\n\nRelationship Between the Parties \nThe relationship between you and us is\ + \ that of licensee/licensor. Neither party will represent that it has any authority to assume\ + \ or create any obligation, express or implied, on behalf of the other party, nor to represent\ + \ the other party as agent, employee, franchisee, or in any other capacity. Nothing in this\ + \ agreement shall be construed to limit either party's right to independently develop or\ + \ distribute software that is functionally similar to the other party's products, so long\ + \ as proprietary information of the other party is not included in such software.\n\nOpen\ + \ Source \nThird party technology that may be appropriate or necessary for use with the\ + \ program may be specified in the program documentation. To the extent stated in the program\ + \ documentation, such third party technology is licensed to you under the terms of the third\ + \ party technology license agreement specified in the program documentation and not under\ + \ the terms of this agreement. Nothing in this agreement should be construed as modifying\ + \ or limiting your rights to use such third party technology under the terms of the specified\ + \ third party license.\n\nEntire Agreement \nYou agree that this agreement is the complete\ + \ agreement for the programs and licenses, and this agreement supersedes all prior or contemporaneous\ + \ agreements or representations. If any term of this agreement is found to be invalid or\ + \ unenforceable, the remaining provisions will remain effective.\n\nLast updated: 09/17/10\ + \ (jlr)\nShould you have any questions concerning this License Agreement, or if you desire\ + \ to contact Oracle for any reason, please write: \nOracle America, Inc. \n500 Oracle Parkway,\ + \ \nRedwood City, CA 94065 \n\nOracle may contact you to ask if you had a satisfactory experience\ + \ installing and using this OTN software download." json: oracle-sql-developer.json - yml: oracle-sql-developer.yml + yaml: oracle-sql-developer.yml html: oracle-sql-developer.html - text: oracle-sql-developer.LICENSE + license: oracle-sql-developer.LICENSE - license_key: oracle-web-sites-tou + category: Proprietary Free spdx_license_key: LicenseRef-scancode-oracle-web-sites-tou other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Oracle Web Sites Terms of Use + + http://www.oracle.com/html/terms.html + + Terms of Use LAST REVISED: February 11, 2009 + + BY USING THE ORACLE WEB SITES, YOU AGREE TO THESE TERMS OF USE. IF YOU DO NOT AGREE TO THESE TERMS OF USE, PLEASE DO NOT USE THE ORACLE WEB SITES. + + Welcome to the Oracle Web sites (the "Site"). Through the Site, you have access to a variety of resources and content. These include: + + (a) software and software as a service offerings ("Software"); (b) Web pages, data, messages, text, images, photographs, graphics, audio and video such as podcasts and Webcasts, and documents such as press releases, white papers and product data sheets ("Materials"); and (c) forums, discussion groups, chat areas, bulletin boards, blogs, wikis, e-mail functions, and other services in connection with which you can upload, download, share, email, post, publish, transmit or otherwise access or make available Content (as defined below) ("Community Services"). + + Software, Materials, Community Services, and other information, content and services are collectively referred to as "Content." By accessing or using the Site or the Content provided on or through the Site, you agree to follow and be bound by the following terms and conditions concerning your access to and use of the Site and the Content provided on or through the Site ("Terms of Use") and our Privacy Policy. Oracle Corporation and its affiliated companies ("We" or "Oracle") may revise the Terms of Use and Privacy Policy at any time without notice to you. The revised Terms of Use and Privacy Policy will be effective when posted. You can review the most current Terms of Use at http://www.oracle.com/html/terms.html and Privacy Policy + + at http://www.oracle.com/html/privacy.html. + + 1. Terms Applicable to Specific Content and Areas of the Site + + Some areas of the Site or Content provided on or through the Site may have additional rules, guidelines, license agreements, user agreements or other terms and conditions that apply to your access or use of that area of the Site or Content (including terms and conditions applicable to a corporation or other organization and its users). If there is a conflict or inconsistency between the Terms of Use and the rules, guidelines, license agreement, user agreement or other terms and conditions for a specific area of the Site or for specific Content, the latter shall have precedence with respect to your access and use of that area of the Site or Content. + + 2. Use of Software + + Your use of Software is subject to all agreements such as a license agreement or user agreement that accompanies or is included with the Software, ordering documents, exhibits, and other terms and conditions that apply ("License Terms"). In the event that Software is provided on or through the Site and is not licensed for your use through License Terms specific to the Software, you may use the Software subject to the following: (a) the Software may be used solely for your personal, informational, noncommercial purposes; (b) the Software may not be modified or altered in any way; and (c) the Software may not be redistributed. + + 3. Use of Materials + + You may download, store, display on your computer, view, listen to, play and print Materials that Oracle publishes or broadcasts on the Site or makes available for download through the Site subject to the following: (a) the Materials may be used solely for your personal, informational, noncommercial purposes; (b) the Materials may not be modified or altered in any way; and (c) the Materials may not be redistributed. + + 4. Use of Community Services + + Community Services are provided as a convenience to users and Oracle is not obligated to provide anytechnical support for, or participate in, Community Services. While Community Services may include information regarding Oracle products and services, including information from Oracle employees, they are not an official customer support channel for Oracle. + + You may use Community Services subject to the following: (a) Community Services may be used solely for your personal, informational, noncommercial purposes; (b) Content provided on or through Community Services may not be redistributed; and (c) personal data about other users may not be stored or collected except where expressly authorized by Oracle. + + 5. Reservation of Rights + + The Site and Content provided on or through the Site are the intellectual property and copyrighted works of Oracle or a third party provider. All rights, title and interest not expressly granted with respect to the Site and Content provided on or through the Site are reserved. All Content is provided on an "As Is" and "As Available" basis, and Oracle reserves the right to terminate the permissions granted to you in Sections 2, 3 and 4 above and your use of the Content at any time. + + 6. Your Content + + You agree that you will only upload, share, post, publish, transmit, or otherwise make available ("Share") on or through the Site Content that you have the right and authority to Share and for which you have the right and authority to grant to Oracle all of the licenses and rights set forth herein. By Sharing Content, you grant Oracle a worldwide, perpetual, royalty-free, irrevocable, nonexclusive, fully sublicensable license to use, reproduce, modify, adapt, translate, publish, publicly perform, publicly display, broadcast, transmit and distribute the Content for any purpose and in any form, medium, or technology now known or later developed. This includes, without limitation, the right to incorporate or implement the Content into any Oracle product or service, and to display, market, sublicense and distribute the Content as incorporated or embedded in any product or service distributed or offered by Oracle without compensation to you. You warrant that: (a) you have the right and authority to grant this license; (b) Oracle's exercise of the rights granted pursuant to this license will not infringe or otherwise violate any third party rights; and (c) all so-called moral rights in the Content have been waived to the full extent allowed by law. + + You agree that you will not Share any Content that: (a) is binary executable code; (b) is false or misleading; (c) is defamatory, derogatory, degrading or harassing of another or constitutes a personal attack; (d) invades another's privacy or includes another's confidential, sensitive or personal information; (e) promotes bigotry, racism, hatred or harm against any group or individual; (f) is obscene or not in good taste; (g) violates or infringes or promotes the violation or infringement of another's rights, including intellectual property rights; (h) you do not have the right and authority to Share and grant the necessary rights and licenses for; (i) violates or promotes the violation of any applicable laws or regulations; (j) contains a solicitation of funds, goods or services, or promotes or advertises goods or services; or (k) contains any viruses, Trojan horses, or other components designed to limit or harm the functionality of a computer. + + Oracle does not want to receive confidential information from you through or in connection with the Site. Notwithstanding anything that you may note or state in connection with Sharing Content, it shall not be considered confidential information and shall be received and treated by Oracle on a non-confidential and unrestricted basis. + + 7. Security, Passwords and Means of Accessing the Site and Content + + You agree not to access or use the Site in any manner that could damage, disable, overburden, or impair any Oracle accounts, computer systems or networks. You agree not to attempt to gain unauthorized access to any parts of the Site or any Oracle accounts, computer systems or networks. You agree not to interfere or attempt to interfere with the proper working of the Site or any Oracle accounts, computer systems or networks. You agree not to use any robot, spider, scraper or other automated means to access the Site or any Oracle accounts, computer systems or networks without Oracle's express written permission. + + Access to and use of password protected or secure areas of the Site is restricted to authorized users only. You agree not to share your password(s), account information, or access to the Site. You are responsible for maintaining the confidentiality of password(s) and account information, and you are responsible for all activities that occur under your password(s) or account(s) or as a result of your access to the Site. You agree to notify Oracle immediately of any unauthorized use of your password(s) or account(s). + + 8. No Unlawful or Prohibited Use + + You agree not to use the Site or Content provided on or through the Site for any purpose that is unlawful or prohibited by these Terms of Use, or the rules, guidelines or terms of use posted for a specific area of the Site or Content provided on or through the Site. + + 9. Indemnity + + You agree to indemnify and hold harmless Oracle, its officers, directors, employees and agents from and against any and all claims, liabilities, damages, losses or expenses, including reasonable attorneys' fees and costs, due to or arising out of Content that you Share, your violation of the Terms of Use or any additional rules, guidelines or terms of use posted for a specific area of the Site or Content provided on or through the Site, or your violation or infringement of any third party rights. + + 10. Monitoring + + Oracle has no obligation to monitor the Site or screen Content that is Shared on or through the Site. However, Oracle reserves the right to review the Site and Content and to monitor all use of and activity on the Site, and to remove or choose not to make available on or through the Site any Content at its sole discretion. + + 11. Termination of Use + + Oracle may, in its sole discretion, at any time discontinue providing or limit access to the Site, any areas of the Site or Content provided on or through the Site. You agree that Oracle may, in its sole discretion, at any time, terminate or limit your access to or use of the Site or any Content. Oracle will terminate or limit your access to or use of the Site if, under appropriate circumstances, you are determined to be a repeat infringer of third party copyright rights. You agree that Oracle shall not be liable to you or any third-party for any termination or limitation of your access to or use of the Site or any Content. + + 12. Third Party Web Sites, Content, Products and Services + + The Site provides links to Web sites and access to Content, products and services of third parties, including users, advertisers, affiliates and sponsors of the Site. Oracle is not responsible for third party Content provided on or through the Site and you bear all risks associated with the access and use of such Web sites and third party Content, products and services. + + 13. Disclaimer + + EXCEPT WHERE EXPRESSLY PROVIDED OTHERWISE, THE SITE, AND ALL CONTENT PROVIDED ON OR THROUGH THE SITE, ARE PROVIDED ON AN "AS IS" AND "AS AVAILABLE" BASIS. ORACLE EXPRESSLY DISCLAIMS ALL WARRANTIES OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT WITH RESPECT TO THE SITE AND ALL CONTENT PROVIDED ON OR THROUGH THE SITE. ORACLE MAKES NO WARRANTY THAT: (A) THE SITE OR CONTENT WILL MEET YOUR REQUIREMENTS; (B) THE SITE WILL BE AVAILABLE ON AN UNINTERRUPTED, TIMELY, SECURE, OR ERROR-FREE BASIS; (C) THE RESULTS THAT MAY BE OBTAINED FROM THE USE OF THE SITE OR ANY CONTENT PROVIDED ON OR THROUGH THE SITE WILL BE ACCURATE OR RELIABLE; OR (D) THE QUALITY OF ANY CONTENT PURCHASED OR OBTAINED BY YOU ON OR THROUGH THE SITE WILL MEET YOUR EXPECTATIONS. + + ANY CONTENT ACCESSED, DOWNLOADED OR OTHERWISE OBTAINED ON OR THROUGH THE USE OF THE SITE IS USED AT YOUR OWN DISCRETION AND RISK. ORACLE SHALL HAVE NO RESPONSIBILITY FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR LOSS OF DATA THAT RESULTS FROM THE DOWNLOAD OR USE OF CONTENT. + + ORACLE RESERVES THE RIGHT TO MAKE CHANGES OR UPDATES TO, AND MONITOR THE USE OF, THE SITE AND CONTENT PROVIDED ON OR THROUGH THE SITE AT ANY TIME WITHOUT NOTICE. + + 14. Limitation of Liability + + IN NO EVENT SHALL ORACLE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, ARISING FROM YOUR ACCESS TO, OR USE OF, THE SITE OR ANY CONTENT PROVIDED ON OR THROUGH THE SITE. + + 15. Exclusions and Limitations + + SOME JURISDICTIONS DO NOT ALLOW THE DISCLAIMER OR EXCLUSION OF CERTAIN WARRANTIES OR THE DISCLAIMER, EXCLUSION OR LIMITATION OF CERTAIN LIABILITIES. TO THE EXTENT THAT THEY ARE HELD TO BE LEGALLY INVALID, DISCLAIMERS, EXCLUSIONS AND LIMITATIONS SET FORTH IN THESE TERMS OF USE, INCLUDING THOSE SET FORTH IN SECTIONS 13 AND 14, DO NOT APPLY AND ALL OTHER TERMS SHALL REMAIN IN FULL FORCE AND EFFECT. + + 16. Privacy Policy + + Oracle is concerned about your privacy and has developed a policy to address privacy concerns. For more information, please see Oracle's Privacy Policy. Any personal information collected on this Site may be accessed and stored globally and will be treated in accordance with Oracle's Privacy Policy. + + 17. Note About Minors + + Minors are not eligible to use the Site, and we ask that they do not submit any information to us. + + 18. Export Restrictions/Legal Compliance + + You may not access, download, use or export the Site, or the Content provided on or through the Site, in violation of U.S. export laws or regulations, or in violation of any other applicable laws or regulations. You agree to comply with all export laws and restrictions and regulations of any United States or foreign agency or authority, and not to directly or indirectly provide or otherwise make available the services and products of Oracle in violation of any such restrictions, laws or regulations, or without all necessary approvals, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction and of missile technology. As applicable, you shall obtain and bear all expenses relating to any necessary licenses and/or exemptions with respect to your own use of the services of Oracle outside the U.S. Neither the services of Oracle nor the underlying information or technology may be downloaded or otherwise provided or made available, either directly or indirectly, (a) into Cuba, Iran, North Korea, Sudan, Syria or any other country subject to U.S. trade sanctions, to individuals or entities controlled by such countries, or to nationals or residents of such countries other than nationals who are lawfully admitted permanent residents of countries not subject to such sanctions; or (b) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals and Blocked Persons or the U.S. Commerce Department's Table of Denial Orders. By agreeing to these Terms of Use, you agree to the foregoing and represent and warrant that you are not located in, under the control of, or a national or resident of any such country or on any such list. + + 19. Applicable Laws + + All matters relating to your access to, and use of, the Site and Content provided on or through or uploaded to the Site shall be governed by U.S. federal law or the laws of the State of California. Any legal action or proceeding relating to your access to, or use of, the Site or Content shall be instituted in a state or federal court in San Francisco, San Mateo or Santa Clara County, California. You and Oracle agree to submit to the jurisdiction of, and agree that venue is proper in, these courts in any such legal action or proceeding. + + 20. Copyright/Trademark + + Copyright© 1995, 2010, Oracle and/or its affiliates. All rights reserved. + + Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names appearing on the Site may be trademarks of their respective owners. + + For information on use of Oracle trademarks, go here. + + For information on making claims of copyright infringement, go here. + + 21. Contact Information + + If you have any questions regarding these Terms of Use, please contact Oracle at trademar_us@oracle.com. If you have any other questions, contact information is available at the Contact Oracle page on the Site. json: oracle-web-sites-tou.json - yml: oracle-web-sites-tou.yml + yaml: oracle-web-sites-tou.yml html: oracle-web-sites-tou.html - text: oracle-web-sites-tou.LICENSE + license: oracle-web-sites-tou.LICENSE - license_key: oreilly-notice + category: Permissive spdx_license_key: LicenseRef-scancode-oreilly-notice other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Our books are here to help you get your job done. In general, you may use the + code in our books in your programs and documentation. You do not need to contact + us for permission unless you're reproducing a significant portion of the code. + For example, writing a program that uses several chunks of code from our books + does not require permission. Answering a question by citing our books and + quoting example code does not require permission. On the other hand, selling or + distributing a CD-ROM of examples from O'Reilly books does require permission. + Incorporating a significant amount of example code from our books into your + product's documentation does require permission. + + We appreciate, but do not require, attribution. An attribution usually includes + the title, author, publisher, and ISBN. + + If you think your use of code examples falls outside fair use or the permission + given here, feel free to contact us at permissions@oreilly.com. json: oreilly-notice.json - yml: oreilly-notice.yml + yaml: oreilly-notice.yml html: oreilly-notice.html - text: oreilly-notice.LICENSE + license: oreilly-notice.LICENSE - license_key: oset-pl-2.1 + category: Copyleft Limited spdx_license_key: OSET-PL-2.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "OSET Public License\n(c) 2015 ALL RIGHTS RESERVED VERSION 2.1\n\nTHIS LICENSE DEFINES\ + \ THE RIGHTS OF USE, REPRODUCTION, DISTRIBUTION, MODIFICATION, AND REDISTRIBUTION OF CERTAIN\ + \ COVERED SOFTWARE (AS DEFINED BELOW) ORIGINALLY RELEASED BY THE OPEN SOURCE ELECTION TECHNOLOGY\ + \ FOUNDATION (FORMERLY \"THE OSDV FOUNDATION\"). ANYONE WHO USES, REPRODUCES, DISTRIBUTES,\ + \ MODIFIES, OR REDISTRIBUTES THE COVERED SOFTWARE, OR ANY PART THEREOF, IS BY THAT ACTION,\ + \ ACCEPTING IN FULL THE TERMS CONTAINED IN THIS AGREEMENT. IF YOU DO NOT AGREE TO SUCH TERMS,\ + \ YOU ARE NOT PERMITTED TO USE THE COVERED SOFTWARE.\n\nThis license was prepared based\ + \ on the Mozilla Public License (\"MPL\"), version 2.0. For annotation of the differences\ + \ between this license and MPL 2.0, please see the OSET Foundation web site at www.OSETFoundation.org/public-license.\n\ + \nThe text of the license begins here:\n\n1. Definitions\n\n1.1 \"Contributor\" means each\ + \ individual or legal entity that creates, contributes to the creation of, or owns Covered\ + \ Software. \n1.2 \"Contributor Version\" means the combination of the Contributions of\ + \ others (if any) used by a Contributor and that particular Contributor’s Contribution.\ + \ \n1.3 \"Contribution\" means Covered Software of a particular Contributor. \n1.4 \"Covered\ + \ Software\" means Source Code Form to which the initial Contributor has attached the notice\ + \ in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such\ + \ Source Code Form, in each case including portions thereof. \n1.5 \"Incompatible With Secondary\ + \ Licenses\" means: a. That the initial Contributor has attached the notice described in\ + \ Exhibit B to the Covered Software; or b. that the Covered Software was made available\ + \ under the terms of version 1.x or earlier of the License, but not also under the terms\ + \ of a Secondary License. \n1.6 \"Executable Form\" means any form of the work other than\ + \ Source Code Form. \n1.7 \"Larger Work\" means a work that combines Covered Software with\ + \ other material, in a separate file (or files) that is not Covered Software. \n1.8 \"License\"\ + \ means this document. \n1.9 \"Licensable\" means having the right to grant, to the maximum\ + \ extent possible, whether at the time of the initial grant or subsequently, any and all\ + \ of the rights conveyed by this License. \n1.10 \"Modifications\" means any of the following:\ + \ a. any file in Source Code Form that results from an addition to, deletion from, or modification\ + \ of the contents of Covered Software; or b. any new file in Source Code Form that contains\ + \ any Covered Software. \n1.11 \"Patent Claims\" of a Contributor means any patent claim(s),\ + \ including without limitation, method, process, and apparatus claims, in any patent Licensable\ + \ by such Contributor that would be infringed, but for the grant of the License, by the\ + \ making, using, selling, offering for sale, having made, import, or transfer of either\ + \ its Contributions or its Contributor Version. \n1.12 \"Secondary License\" means one of:\ + \ the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version\ + \ 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those\ + \ licenses. \n1.13 \"Source Code Form\" means the form of the work preferred for making\ + \ modifications. \n1.14 \"You\" (or \"Your\") means an individual or a legal entity exercising\ + \ rights under this License. For legal entities, \"You\" includes any entity that controls,\ + \ is controlled by, or is under common control with You. For purposes of this definition,\ + \ \"control\" means: (a) the power, direct or indirect, to cause the direction or management\ + \ of such entity, whether by contract or otherwise, or (b) ownership of more than fifty\ + \ percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2.\ + \ License Grants and Conditions\n\n2.1 Grants Each Contributor hereby grants You a world-wide,\ + \ royalty-free, non-exclusive license: a. under intellectual property rights (other than\ + \ patent or trademark) Licensable by such Contributor to use, reproduce, make available,\ + \ modify, display, perform, distribute, and otherwise exploit its Contributions, either\ + \ on an unmodified basis, with Modifications, or as part of a Larger Work; and b. under\ + \ Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import,\ + \ and otherwise transfer either its Contributions or its Contributor Version.\n\n2.2 Effective\ + \ Date The licenses granted in Section 2.1 with respect to any Contribution become effective\ + \ for each Contribution on the date the Contributor first distributes such Contribution.\n\ + \n2.3 Limitations on Grant Scope The licenses granted in this Section 2 are the only rights\ + \ granted under this License. No additional rights or licenses will be implied from the\ + \ distribution or licensing of Covered Software under this License. Notwithstanding Section\ + \ 2.1(b) above, no patent license is granted by a Contributor: a. for any code that a\ + \ Contributor has removed from Covered Software; or b. for infringements caused by: (i)\ + \ Your and any other third party’s modifications of Covered Software, or (ii) the combination\ + \ of its Contributions with other software (except as part of its Contributor Version);\ + \ or c. under Patent Claims infringed by Covered Software in the absence of its Contributions.\ + \ This License does not grant any rights in the trademarks, service marks, or logos of\ + \ any Contributor (except as may be necessary to comply with the notice requirements in\ + \ Section 3.4).\n\n2.4 Subsequent Licenses No Contributor makes additional grants as a\ + \ result of Your choice to distribute the Covered Software under a subsequent version of\ + \ this License (see Section 10.2) or under the terms of a Secondary License (if permitted\ + \ under the terms of Section 3.3).\n\n2.5 Representation Each Contributor represents that\ + \ the Contributor believes its Contributions are its original creation(s) or it has sufficient\ + \ rights to grant the rights to its Contributions conveyed by this License.\n\n2.6 Fair\ + \ Use This License is not intended to limit any rights You have under applicable copyright\ + \ doctrines of fair use, fair dealing, or other equivalents.\n\n2.7 Conditions Sections\ + \ 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1.\n\n3. Responsibilities\n\ + \n3.1 Distribution of Source Form All distribution of Covered Software in Source Code Form,\ + \ including any Modifications that You create or to which You contribute, must be under\ + \ the terms of this License. You must inform recipients that the Source Code Form of the\ + \ Covered Software is governed by the terms of this License, and how they can obtain a copy\ + \ of this License. You must cause any of Your Modifications to carry prominent notices stating\ + \ that You changed the files. You may not attempt to alter or restrict the recipients’ rights\ + \ in the Source Code Form.\n\n3.2 Distribution of Executable Form If You distribute Covered\ + \ Software in Executable Form then: \na. such Covered Software must also be made available\ + \ in Source Code Form, as described in Section 3.1, and You must inform recipients of the\ + \ Executable Form how they can obtain a copy of such Source Code Form by reasonable means\ + \ in a timely manner, at a charge no more than the cost of distribution to the recipient;\ + \ and b. You may distribute such Executable Form under the terms of this License, or sublicense\ + \ it under different terms, provided that the license for the Executable Form does not attempt\ + \ to limit or alter the recipients’ rights in the Source Code Form under this License.\n\ + \n3.3 Distribution of a Larger Work You may create and distribute a Larger Work under terms\ + \ of Your choice, provided that You also comply with the requirements of this License for\ + \ the Covered Software. If the Larger Work is a combination of Covered Software with a work\ + \ governed by one or more Secondary Licenses, and the Covered Software is not Incompatible\ + \ With Secondary Licenses, this License permits You to additionally distribute such Covered\ + \ Software under the terms of such Secondary License(s), so that the recipient of the Larger\ + \ Work may, at their option, further distribute the Covered Software under the terms of\ + \ either this License or such Secondary License(s).\n\n3.4 Notices You may not remove or\ + \ alter the substance of any license notices (including copyright notices, patent notices,\ + \ disclaimers of warranty, or limitations of liability) contained within the Source Code\ + \ Form of the Covered Software, except that You may alter any license notices to the extent\ + \ required to remedy known factual inaccuracies.\n\n3.5 Application of Additional Terms\n\ + \n3.5.1 You may choose to offer, and to charge a fee for, warranty, support, indemnity or\ + \ liability obligations to one or more recipients of Covered Software. However, You may\ + \ do so only on Your own behalf, and not on behalf of any Contributor. You must make it\ + \ absolutely clear that any such warranty, support, indemnity, or liability obligation is\ + \ offered by You alone, and You hereby agree to indemnify every Contributor for any liability\ + \ incurred by such Contributor as a result of warranty, support, indemnity or liability\ + \ terms You offer. You may include additional disclaimers of warranty and limitations of\ + \ liability specific to any jurisdiction. \n3.5.2 You may place additional conditions upon\ + \ the rights granted in this License to the extent necessary due to statute, judicial order,\ + \ regulation (including without limitation state and federal procurement regulation), national\ + \ security, or public interest. Any such additional conditions must be clearly described\ + \ in the notice provisions required under Section 3.4. Any alteration of the terms of this\ + \ License will apply to all copies of the Covered Software distributed by You or by any\ + \ downstream recipients that receive the Covered Software from You.\n\n4. Inability to Comply\ + \ Due to Statute or Regulation If it is impossible for You to comply with any of the terms\ + \ of this License with respect to some or all of the Covered Software due to statute, judicial\ + \ order, or regulation, then You must: (a) comply with the terms of this License to the\ + \ maximum extent possible; and (b) describe the limitations and the code they affect. Such\ + \ description must be included in the notices required under Section 3.4. Except to the\ + \ extent prohibited by statute or regulation, such description must be sufficiently detailed\ + \ for a recipient of ordinary skill to be able to understand it.\n\n5. Termination\n\n5.1\ + \ Failure to Comply The rights granted under this License will terminate automatically\ + \ if You fail to comply with any of its terms. However, if You become compliant, then the\ + \ rights granted under this License from a particular Contributor are reinstated (a) provisionally,\ + \ unless and until such Contributor explicitly and finally terminates Your grants, and (b)\ + \ on an ongoing basis, if such Contributor fails to notify You of the non-compliance by\ + \ some reasonable means prior to 60-days after You have come back into compliance. Moreover,\ + \ Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor\ + \ notifies You of the non-compliance by some reasonable means, this is the first time You\ + \ have received notice of non-compliance with this License from such Contributor, and You\ + \ become compliant prior to 30-days after Your receipt of the notice.\n\n5.2 Patent Infringement\ + \ Claims If You initiate litigation against any entity by asserting a patent infringement\ + \ claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging\ + \ that a Contributor Version directly or indirectly infringes any patent, then the rights\ + \ granted to You by any and all Contributors for the Covered Software under Section 2.1\ + \ of this License shall terminate.\n\n5.3 Additional Compliance Terms Notwithstanding the\ + \ foregoing in this Section 5, for purposes of this Section, if You breach Section 3.1 (Distribution\ + \ of Source Form), Section 3.2 (Distribution of Executable Form), Section 3.3 (Distribution\ + \ of a Larger Work), or Section 3.4 (Notices), then becoming compliant as described in Section\ + \ 5.1 must also include, no later than 30 days after receipt by You of notice of such violation\ + \ by a Contributor, making the Covered Software available in Source Code Form as required\ + \ by this License on a publicly available computer network for a period of no less than\ + \ three (3) years.\n\n5.4 Contributor Remedies If You fail to comply with the terms of\ + \ this License and do not thereafter become compliant in accordance with Section 5.1 and,\ + \ if applicable, Section 5.3, then each Contributor reserves its right, in addition to any\ + \ other rights it may have in law or in equity, to bring an action seeking injunctive relief,\ + \ or damages for willful copyright or patent infringement (including without limitation\ + \ damages for unjust enrichment, where available under law), for all actions in violation\ + \ of rights that would otherwise have been granted under the terms of this License.\n\n\ + 5.5 End User License Agreements In the event of termination under this Section 5, all end\ + \ user license agreements (excluding distributors and resellers), which have been validly\ + \ granted by You or Your distributors under this License prior to termination shall survive\ + \ termination.\n\n6. Disclaimer of Warranty Covered Software is provided under this License\ + \ on an \"as is\" basis, without warranty of any kind, either expressed, implied, or statutory,\ + \ including, without limitation, warranties that the Covered Software is free of defects,\ + \ merchantable, fit for a particular purpose or non-infringing. The entire risk as to the\ + \ quality and performance of the Covered Software is with You. Should any Covered Software\ + \ prove defective in any respect, You (not any Contributor) assume the cost of any necessary\ + \ servicing, repair, or correction. This disclaimer of warranty constitutes an essential\ + \ part of this License. No use of any Covered Software is authorized under this License\ + \ except under this disclaimer.\n\n7. Limitation of Liability Under no circumstances and\ + \ under no legal theory, whether tort (including negligence), contract, or otherwise, shall\ + \ any Contributor, or anyone who distributes Covered Software as permitted above, be liable\ + \ to You for any direct, indirect, special, incidental, or consequential damages of any\ + \ character including, without limitation, damages for lost profits, loss of goodwill, work\ + \ stoppage, computer failure or malfunction, or any and all other commercial damages or\ + \ losses, even if such party shall have been informed of the possibility of such damages.\ + \ This limitation of liability shall not apply to liability for death or personal injury\ + \ resulting from such party’s negligence to the extent applicable law prohibits such limitation.\ + \ Some jurisdictions do not allow the exclusion or limitation of incidental or consequential\ + \ damages, so this exclusion and limitation may not apply to You.\n\n8. Litigation Any litigation\ + \ relating to this License may be brought only in the courts of a jurisdiction where the\ + \ defendant maintains its principal place of business and such litigation shall be governed\ + \ by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing\ + \ in this Section shall prevent a party’s ability to bring cross-claims or counter-claims.\n\ + \n9. Government Terms\n\n9.1 Commercial Item The Covered Software is a \"commercial item,\"\ + \ as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer\ + \ software\" and \"commercial computer software documentation,\" as such terms are used\ + \ in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1\ + \ through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software\ + \ with only those rights set forth herein.\n\n9.2 No Sovereign Immunity The U.S. federal\ + \ government and states that use or distribute Covered Software hereby waive their sovereign\ + \ immunity with respect to enforcement of the provisions of this License.\n\n9.3 Choice\ + \ of Law and Venue\n\n9.3.1 If You are a government of a state of the United States, or\ + \ Your use of the Covered Software is pursuant to a procurement contract with such a state\ + \ government, this License shall be governed by the law of such state, excluding its conflict-of-law\ + \ provisions, and the adjudication of disputes relating to this License will be subject\ + \ to the exclusive jurisdiction of the state and federal courts located in such state. \n\ + 9.3.2 If You are an agency of the United States federal government, or Your use of the Covered\ + \ Software is pursuant to a procurement contract with such an agency, this License shall\ + \ be governed by federal law for all purposes, and the adjudication of disputes relating\ + \ to this License will be subject to the exclusive jurisdiction of the federal courts located\ + \ in Washington, D.C. \n9.3.3 You may alter the terms of this Section 9.3 for this License\ + \ as described in Section 3.5.2.\n\n9.4 Supremacy This Section 9 is in lieu of, and supersedes,\ + \ any other Federal Acquisition Regulation, Defense Federal Acquisition Regulation, or other\ + \ clause or provision that addresses government rights in computer software under this License.\n\ + \n10. Miscellaneous This License represents the complete agreement concerning the subject\ + \ matter hereof. If any provision of this License is held to be unenforceable, such provision\ + \ shall be reformed only to the extent necessary to make it enforceable. Any law or regulation,\ + \ which provides that the language of a contract shall be construed against the drafter,\ + \ shall not be used to construe this License against a Contributor.\n\n11. Versions of the\ + \ License\n\n11.1 New Versions The Open Source Election Technology Foundation (\"OSET\"\ + ) (formerly known as the Open Source Digital Voting Foundation) is the steward of this License.\ + \ Except as provided in Section 11.3, no one other than the license steward has the right\ + \ to modify or publish new versions of this License. Each version will be given a distinguishing\ + \ version number.\n\n11.2 Effects of New Versions You may distribute the Covered Software\ + \ under the terms of the version of the License under which You originally received the\ + \ Covered Software, or under the terms of any subsequent version published by the license\ + \ steward.\n\n11.3 Modified Versions If You create software not governed by this License,\ + \ and You want to create a new license for such software, You may create and use a modified\ + \ version of this License if You rename the license and remove any references to the name\ + \ of the license steward (except to note that such modified license differs from this License).\n\ + \n11.4 Distributing Source Code Form That is Incompatible With Secondary Licenses If You\ + \ choose to distribute Source Code Form that is Incompatible With Secondary Licenses under\ + \ the terms of this version of the License, the notice described in Exhibit B of this License\ + \ must be attached.\n\nEXHIBIT A – Source Code Form License Notice\n\nThis Source Code Form\ + \ is subject to the terms of the OSET Public License, v.2.1 (\"OSET-PL-2.1\"). If a copy\ + \ of the OPL was not distributed with this file, You can obtain one at: www.OSETFoundation.org/public-license.\n\ + \nIf it is not possible or desirable to put the Notice in a particular file, then You may\ + \ include the Notice in a location (e.g., such as a LICENSE file in a relevant directory)\ + \ where a recipient would be likely to look for such a notice. You may add additional accurate\ + \ notices of copyright ownership.\n\nEXHIBIT B - \"Incompatible With Secondary License\"\ + \ Notice\n\nThis Source Code Form is \"Incompatible With Secondary Licenses\", as defined\ + \ by the OSET Public License, v.2.1." json: oset-pl-2.1.json - yml: oset-pl-2.1.yml + yaml: oset-pl-2.1.yml html: oset-pl-2.1.html - text: oset-pl-2.1.LICENSE + license: oset-pl-2.1.LICENSE - license_key: osetpl-2.1 + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Copyleft Limited + text: "OSET Public License\n(c) 2015 ALL RIGHTS RESERVED VERSION 2.1\n\nTHIS LICENSE DEFINES\ + \ THE RIGHTS OF USE, REPRODUCTION, DISTRIBUTION, MODIFICATION, AND REDISTRIBUTION OF CERTAIN\ + \ COVERED SOFTWARE (AS DEFINED BELOW) ORIGINALLY RELEASED BY THE OPEN SOURCE ELECTION TECHNOLOGY\ + \ FOUNDATION (FORMERLY \"THE OSDV FOUNDATION\"). ANYONE WHO USES, REPRODUCES, DISTRIBUTES,\ + \ MODIFIES, OR REDISTRIBUTES THE COVERED SOFTWARE, OR ANY PART THEREOF, IS BY THAT ACTION,\ + \ ACCEPTING IN FULL THE TERMS CONTAINED IN THIS AGREEMENT. IF YOU DO NOT AGREE TO SUCH TERMS,\ + \ YOU ARE NOT PERMITTED TO USE THE COVERED SOFTWARE.\n\nThis license was prepared based\ + \ on the Mozilla Public License (\"MPL\"), version 2.0. For annotation of the differences\ + \ between this license and MPL 2.0, please see the OSET Foundation web site at www.OSETFoundation.org/public-license.\n\ + \nThe text of the license begins here:\n\n1. Definitions\n\n1.1 \"Contributor\" means each\ + \ individual or legal entity that creates, contributes to the creation of, or owns Covered\ + \ Software. \n1.2 \"Contributor Version\" means the combination of the Contributions of\ + \ others (if any) used by a Contributor and that particular Contributor’s Contribution.\ + \ \n1.3 \"Contribution\" means Covered Software of a particular Contributor. \n1.4 \"Covered\ + \ Software\" means Source Code Form to which the initial Contributor has attached the notice\ + \ in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such\ + \ Source Code Form, in each case including portions thereof. \n1.5 \"Incompatible With Secondary\ + \ Licenses\" means: a. That the initial Contributor has attached the notice described in\ + \ Exhibit B to the Covered Software; or b. that the Covered Software was made available\ + \ under the terms of version 1.x or earlier of the License, but not also under the terms\ + \ of a Secondary License. \n1.6 \"Executable Form\" means any form of the work other than\ + \ Source Code Form. \n1.7 \"Larger Work\" means a work that combines Covered Software with\ + \ other material, in a separate file (or files) that is not Covered Software. \n1.8 \"License\"\ + \ means this document. \n1.9 \"Licensable\" means having the right to grant, to the maximum\ + \ extent possible, whether at the time of the initial grant or subsequently, any and all\ + \ of the rights conveyed by this License. \n1.10 \"Modifications\" means any of the following:\ + \ a. any file in Source Code Form that results from an addition to, deletion from, or modification\ + \ of the contents of Covered Software; or b. any new file in Source Code Form that contains\ + \ any Covered Software. \n1.11 \"Patent Claims\" of a Contributor means any patent claim(s),\ + \ including without limitation, method, process, and apparatus claims, in any patent Licensable\ + \ by such Contributor that would be infringed, but for the grant of the License, by the\ + \ making, using, selling, offering for sale, having made, import, or transfer of either\ + \ its Contributions or its Contributor Version. \n1.12 \"Secondary License\" means one of:\ + \ the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version\ + \ 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those\ + \ licenses. \n1.13 \"Source Code Form\" means the form of the work preferred for making\ + \ modifications. \n1.14 \"You\" (or \"Your\") means an individual or a legal entity exercising\ + \ rights under this License. For legal entities, \"You\" includes any entity that controls,\ + \ is controlled by, or is under common control with You. For purposes of this definition,\ + \ \"control\" means: (a) the power, direct or indirect, to cause the direction or management\ + \ of such entity, whether by contract or otherwise, or (b) ownership of more than fifty\ + \ percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2.\ + \ License Grants and Conditions\n\n2.1 Grants Each Contributor hereby grants You a world-wide,\ + \ royalty-free, non-exclusive license: a. under intellectual property rights (other than\ + \ patent or trademark) Licensable by such Contributor to use, reproduce, make available,\ + \ modify, display, perform, distribute, and otherwise exploit its Contributions, either\ + \ on an unmodified basis, with Modifications, or as part of a Larger Work; and b. under\ + \ Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import,\ + \ and otherwise transfer either its Contributions or its Contributor Version.\n\n2.2 Effective\ + \ Date The licenses granted in Section 2.1 with respect to any Contribution become effective\ + \ for each Contribution on the date the Contributor first distributes such Contribution.\n\ + \n2.3 Limitations on Grant Scope The licenses granted in this Section 2 are the only rights\ + \ granted under this License. No additional rights or licenses will be implied from the\ + \ distribution or licensing of Covered Software under this License. Notwithstanding Section\ + \ 2.1(b) above, no patent license is granted by a Contributor: a. for any code that a\ + \ Contributor has removed from Covered Software; or b. for infringements caused by: (i)\ + \ Your and any other third party’s modifications of Covered Software, or (ii) the combination\ + \ of its Contributions with other software (except as part of its Contributor Version);\ + \ or c. under Patent Claims infringed by Covered Software in the absence of its Contributions.\ + \ This License does not grant any rights in the trademarks, service marks, or logos of\ + \ any Contributor (except as may be necessary to comply with the notice requirements in\ + \ Section 3.4).\n\n2.4 Subsequent Licenses No Contributor makes additional grants as a\ + \ result of Your choice to distribute the Covered Software under a subsequent version of\ + \ this License (see Section 10.2) or under the terms of a Secondary License (if permitted\ + \ under the terms of Section 3.3).\n\n2.5 Representation Each Contributor represents that\ + \ the Contributor believes its Contributions are its original creation(s) or it has sufficient\ + \ rights to grant the rights to its Contributions conveyed by this License.\n\n2.6 Fair\ + \ Use This License is not intended to limit any rights You have under applicable copyright\ + \ doctrines of fair use, fair dealing, or other equivalents.\n\n2.7 Conditions Sections\ + \ 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1.\n\n3. Responsibilities\n\ + \n3.1 Distribution of Source Form All distribution of Covered Software in Source Code Form,\ + \ including any Modifications that You create or to which You contribute, must be under\ + \ the terms of this License. You must inform recipients that the Source Code Form of the\ + \ Covered Software is governed by the terms of this License, and how they can obtain a copy\ + \ of this License. You must cause any of Your Modifications to carry prominent notices stating\ + \ that You changed the files. You may not attempt to alter or restrict the recipients’ rights\ + \ in the Source Code Form.\n\n3.2 Distribution of Executable Form If You distribute Covered\ + \ Software in Executable Form then: \na. such Covered Software must also be made available\ + \ in Source Code Form, as described in Section 3.1, and You must inform recipients of the\ + \ Executable Form how they can obtain a copy of such Source Code Form by reasonable means\ + \ in a timely manner, at a charge no more than the cost of distribution to the recipient;\ + \ and b. You may distribute such Executable Form under the terms of this License, or sublicense\ + \ it under different terms, provided that the license for the Executable Form does not attempt\ + \ to limit or alter the recipients’ rights in the Source Code Form under this License.\n\ + \n3.3 Distribution of a Larger Work You may create and distribute a Larger Work under terms\ + \ of Your choice, provided that You also comply with the requirements of this License for\ + \ the Covered Software. If the Larger Work is a combination of Covered Software with a work\ + \ governed by one or more Secondary Licenses, and the Covered Software is not Incompatible\ + \ With Secondary Licenses, this License permits You to additionally distribute such Covered\ + \ Software under the terms of such Secondary License(s), so that the recipient of the Larger\ + \ Work may, at their option, further distribute the Covered Software under the terms of\ + \ either this License or such Secondary License(s).\n\n3.4 Notices You may not remove or\ + \ alter the substance of any license notices (including copyright notices, patent notices,\ + \ disclaimers of warranty, or limitations of liability) contained within the Source Code\ + \ Form of the Covered Software, except that You may alter any license notices to the extent\ + \ required to remedy known factual inaccuracies.\n\n3.5 Application of Additional Terms\n\ + \n3.5.1 You may choose to offer, and to charge a fee for, warranty, support, indemnity or\ + \ liability obligations to one or more recipients of Covered Software. However, You may\ + \ do so only on Your own behalf, and not on behalf of any Contributor. You must make it\ + \ absolutely clear that any such warranty, support, indemnity, or liability obligation is\ + \ offered by You alone, and You hereby agree to indemnify every Contributor for any liability\ + \ incurred by such Contributor as a result of warranty, support, indemnity or liability\ + \ terms You offer. You may include additional disclaimers of warranty and limitations of\ + \ liability specific to any jurisdiction. \n3.5.2 You may place additional conditions upon\ + \ the rights granted in this License to the extent necessary due to statute, judicial order,\ + \ regulation (including without limitation state and federal procurement regulation), national\ + \ security, or public interest. Any such additional conditions must be clearly described\ + \ in the notice provisions required under Section 3.4. Any alteration of the terms of this\ + \ License will apply to all copies of the Covered Software distributed by You or by any\ + \ downstream recipients that receive the Covered Software from You.\n\n4. Inability to Comply\ + \ Due to Statute or Regulation If it is impossible for You to comply with any of the terms\ + \ of this License with respect to some or all of the Covered Software due to statute, judicial\ + \ order, or regulation, then You must: (a) comply with the terms of this License to the\ + \ maximum extent possible; and (b) describe the limitations and the code they affect. Such\ + \ description must be included in the notices required under Section 3.4. Except to the\ + \ extent prohibited by statute or regulation, such description must be sufficiently detailed\ + \ for a recipient of ordinary skill to be able to understand it.\n\n5. Termination\n\n5.1\ + \ Failure to Comply The rights granted under this License will terminate automatically\ + \ if You fail to comply with any of its terms. However, if You become compliant, then the\ + \ rights granted under this License from a particular Contributor are reinstated (a) provisionally,\ + \ unless and until such Contributor explicitly and finally terminates Your grants, and (b)\ + \ on an ongoing basis, if such Contributor fails to notify You of the non-compliance by\ + \ some reasonable means prior to 60-days after You have come back into compliance. Moreover,\ + \ Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor\ + \ notifies You of the non-compliance by some reasonable means, this is the first time You\ + \ have received notice of non-compliance with this License from such Contributor, and You\ + \ become compliant prior to 30-days after Your receipt of the notice.\n\n5.2 Patent Infringement\ + \ Claims If You initiate litigation against any entity by asserting a patent infringement\ + \ claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging\ + \ that a Contributor Version directly or indirectly infringes any patent, then the rights\ + \ granted to You by any and all Contributors for the Covered Software under Section 2.1\ + \ of this License shall terminate.\n\n5.3 Additional Compliance Terms Notwithstanding the\ + \ foregoing in this Section 5, for purposes of this Section, if You breach Section 3.1 (Distribution\ + \ of Source Form), Section 3.2 (Distribution of Executable Form), Section 3.3 (Distribution\ + \ of a Larger Work), or Section 3.4 (Notices), then becoming compliant as described in Section\ + \ 5.1 must also include, no later than 30 days after receipt by You of notice of such violation\ + \ by a Contributor, making the Covered Software available in Source Code Form as required\ + \ by this License on a publicly available computer network for a period of no less than\ + \ three (3) years.\n\n5.4 Contributor Remedies If You fail to comply with the terms of\ + \ this License and do not thereafter become compliant in accordance with Section 5.1 and,\ + \ if applicable, Section 5.3, then each Contributor reserves its right, in addition to any\ + \ other rights it may have in law or in equity, to bring an action seeking injunctive relief,\ + \ or damages for willful copyright or patent infringement (including without limitation\ + \ damages for unjust enrichment, where available under law), for all actions in violation\ + \ of rights that would otherwise have been granted under the terms of this License.\n\n\ + 5.5 End User License Agreements In the event of termination under this Section 5, all end\ + \ user license agreements (excluding distributors and resellers), which have been validly\ + \ granted by You or Your distributors under this License prior to termination shall survive\ + \ termination.\n\n6. Disclaimer of Warranty Covered Software is provided under this License\ + \ on an \"as is\" basis, without warranty of any kind, either expressed, implied, or statutory,\ + \ including, without limitation, warranties that the Covered Software is free of defects,\ + \ merchantable, fit for a particular purpose or non-infringing. The entire risk as to the\ + \ quality and performance of the Covered Software is with You. Should any Covered Software\ + \ prove defective in any respect, You (not any Contributor) assume the cost of any necessary\ + \ servicing, repair, or correction. This disclaimer of warranty constitutes an essential\ + \ part of this License. No use of any Covered Software is authorized under this License\ + \ except under this disclaimer.\n\n7. Limitation of Liability Under no circumstances and\ + \ under no legal theory, whether tort (including negligence), contract, or otherwise, shall\ + \ any Contributor, or anyone who distributes Covered Software as permitted above, be liable\ + \ to You for any direct, indirect, special, incidental, or consequential damages of any\ + \ character including, without limitation, damages for lost profits, loss of goodwill, work\ + \ stoppage, computer failure or malfunction, or any and all other commercial damages or\ + \ losses, even if such party shall have been informed of the possibility of such damages.\ + \ This limitation of liability shall not apply to liability for death or personal injury\ + \ resulting from such party’s negligence to the extent applicable law prohibits such limitation.\ + \ Some jurisdictions do not allow the exclusion or limitation of incidental or consequential\ + \ damages, so this exclusion and limitation may not apply to You.\n\n8. Litigation Any litigation\ + \ relating to this License may be brought only in the courts of a jurisdiction where the\ + \ defendant maintains its principal place of business and such litigation shall be governed\ + \ by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing\ + \ in this Section shall prevent a party’s ability to bring cross-claims or counter-claims.\n\ + \n9. Government Terms\n\n9.1 Commercial Item The Covered Software is a \"commercial item,\"\ + \ as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer\ + \ software\" and \"commercial computer software documentation,\" as such terms are used\ + \ in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1\ + \ through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software\ + \ with only those rights set forth herein.\n\n9.2 No Sovereign Immunity The U.S. federal\ + \ government and states that use or distribute Covered Software hereby waive their sovereign\ + \ immunity with respect to enforcement of the provisions of this License.\n\n9.3 Choice\ + \ of Law and Venue\n\n9.3.1 If You are a government of a state of the United States, or\ + \ Your use of the Covered Software is pursuant to a procurement contract with such a state\ + \ government, this License shall be governed by the law of such state, excluding its conflict-of-law\ + \ provisions, and the adjudication of disputes relating to this License will be subject\ + \ to the exclusive jurisdiction of the state and federal courts located in such state. \n\ + 9.3.2 If You are an agency of the United States federal government, or Your use of the Covered\ + \ Software is pursuant to a procurement contract with such an agency, this License shall\ + \ be governed by federal law for all purposes, and the adjudication of disputes relating\ + \ to this License will be subject to the exclusive jurisdiction of the federal courts located\ + \ in Washington, D.C. \n9.3.3 You may alter the terms of this Section 9.3 for this License\ + \ as described in Section 3.5.2.\n\n9.4 Supremacy This Section 9 is in lieu of, and supersedes,\ + \ any other Federal Acquisition Regulation, Defense Federal Acquisition Regulation, or other\ + \ clause or provision that addresses government rights in computer software under this License.\n\ + \n10. Miscellaneous This License represents the complete agreement concerning the subject\ + \ matter hereof. If any provision of this License is held to be unenforceable, such provision\ + \ shall be reformed only to the extent necessary to make it enforceable. Any law or regulation,\ + \ which provides that the language of a contract shall be construed against the drafter,\ + \ shall not be used to construe this License against a Contributor.\n\n11. Versions of the\ + \ License\n\n11.1 New Versions The Open Source Election Technology Foundation (\"OSET\"\ + ) (formerly known as the Open Source Digital Voting Foundation) is the steward of this License.\ + \ Except as provided in Section 11.3, no one other than the license steward has the right\ + \ to modify or publish new versions of this License. Each version will be given a distinguishing\ + \ version number.\n\n11.2 Effects of New Versions You may distribute the Covered Software\ + \ under the terms of the version of the License under which You originally received the\ + \ Covered Software, or under the terms of any subsequent version published by the license\ + \ steward.\n\n11.3 Modified Versions If You create software not governed by this License,\ + \ and You want to create a new license for such software, You may create and use a modified\ + \ version of this License if You rename the license and remove any references to the name\ + \ of the license steward (except to note that such modified license differs from this License).\n\ + \n11.4 Distributing Source Code Form That is Incompatible With Secondary Licenses If You\ + \ choose to distribute Source Code Form that is Incompatible With Secondary Licenses under\ + \ the terms of this version of the License, the notice described in Exhibit B of this License\ + \ must be attached.\n\nEXHIBIT A – Source Code Form License Notice\n\nThis Source Code Form\ + \ is subject to the terms of the OSET Public License, v.2.1 (\"OSET-PL-2.1\"). If a copy\ + \ of the OPL was not distributed with this file, You can obtain one at: www.OSETFoundation.org/public-license.\n\ + \nIf it is not possible or desirable to put the Notice in a particular file, then You may\ + \ include the Notice in a location (e.g., such as a LICENSE file in a relevant directory)\ + \ where a recipient would be likely to look for such a notice. You may add additional accurate\ + \ notices of copyright ownership.\n\nEXHIBIT B - \"Incompatible With Secondary License\"\ + \ Notice\n\nThis Source Code Form is \"Incompatible With Secondary Licenses\", as defined\ + \ by the OSET Public License, v.2.1." json: osetpl-2.1.json - yml: osetpl-2.1.yml + yaml: osetpl-2.1.yml html: osetpl-2.1.html - text: osetpl-2.1.LICENSE + license: osetpl-2.1.LICENSE - license_key: osf-1990 + category: Permissive spdx_license_key: LicenseRef-scancode-osf-1990 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "To anyone who acknowledges that this file is provided \"AS IS\"\nwithout any express\ + \ or implied warranty: \npermission to use, copy, modify, and distribute this file \nfor\ + \ any purpose is hereby granted without fee, \nprovided that the above copyright notices\ + \ and\nthis notice appears in all source code copies, \nand that none of the names of {copyright\ + \ holders} \nbe used in advertising or publicity pertaining to distribution \nof the software\ + \ without specific, written prior permission. \nNeither {copyright holders} makes \nany\ + \ representations about the suitability of\nthis software for any purpose." json: osf-1990.json - yml: osf-1990.yml + yaml: osf-1990.yml html: osf-1990.html - text: osf-1990.LICENSE + license: osf-1990.LICENSE - license_key: osgi-spec-2.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-osgi-spec-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + OSGi Specification License, Version 2.0. + + License Grant + + OSGi Alliance ("OSGi") hereby grants you a fully-paid, non-exclusive, non- + transferable, worldwide, limited license (without the right to sublicense), + under OSGi’s applicable intellectual property rights to view, download, and + reproduce this OSGi Specification ("Specification") which follows this License + Agreement ("Agreement"). You are not authorized to create any derivative work of + the Specification. However, to the extent that an implementation of the + Specification would necessarily be a derivative work of the Specification, OSGi + also grants you a perpetual, non-exclusive, worldwide, fully paid-up, royalty + free, limited license (without the right to sublicense) under any applicable + copyrights, to create and/or distribute an implementation of the Specification + that: (i) fully implements the Specification including all its required + interfaces and functionality; (ii) does not modify, subset, superset or + otherwise extend the OSGi Name Space, or include any public or protected + packages, classes, Java interfaces, fields or methods within the OSGi Name Space + other than those required and authorized by the Specification. An implementation + that does not satisfy limitations (i)-(ii) is not considered an implementation + of the Specification, does not receive the benefits of this license, and must + not be described as an implementation of the Specification. An implementation of + the Specification must not claim to be a compliant implementation of the + Specification unless it passes the OSGi Compliance Tests for the Specification + in accordance with OSGi processes. "OSGi Name Space" shall mean the public class + or interface declarations whose names begin with "org.osgi" or any recognized + successors or replacements thereof. + + OSGi Participants (as such term is defined in the OSGi Intellectual Property + Rights Policy) have made non-assert and licensing commitments regarding patent + claims necessary to implement the Specification, if any, under the OSGi + Intellectual Property Rights Policy which is available for examination on the + OSGi public web site (www.osgi.org). + + No Warranties and Limitation of Liability + + THE SPECIFICATION IS PROVIDED "AS IS," AND OSGi AND ANY OTHER AUTHORS MAKE NO + REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED + TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON- + INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE SPECIFICATION ARE SUITABLE FOR + ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY + THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. OSGi AND ANY OTHER + AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SPECIFICATION OR THE + PERFORMANCE OR IMPLEMENTATION OF THE CONTENTS THEREOF. + + Covenant Not to Assert + + As a material condition to this license you hereby agree, to the extent that you + have any patent claims which are necessarily infringed by an implementation of + the Specification, not to assert any such patent claims against the creation, + distribution or use of an implementation of the Specification. + + General + + The name and trademarks of OSGi or any other Authors may NOT be used in any + manner, including advertising or publicity pertaining to the Specification or + its contents without specific, written prior permission. Title to copyright in + the Specification will at all times remain with OSGi. + + No other rights are granted by implication, estoppel or otherwise. json: osgi-spec-2.0.json - yml: osgi-spec-2.0.yml + yaml: osgi-spec-2.0.yml html: osgi-spec-2.0.html - text: osgi-spec-2.0.LICENSE + license: osgi-spec-2.0.LICENSE - license_key: osl-1.0 + category: Copyleft spdx_license_key: OSL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + Open Software License, v 1.0 + + The Open Software License + v. 1.0 + + This Open Software License (the "License") applies to any original + work of authorship (the "Original Work") whose owner (the "Licensor") + has placed the following notice immediately following the copyright + notice for the Original Work: "Licensed under the Open Software + License version 1.0" + + License Terms + + 1) Grant of Copyright License. Licensor hereby grants You a + world-wide, royalty-free, non-exclusive, perpetual, non-sublicenseable + license to do the following: + + a) to reproduce the Original Work in copies; + + b) to prepare derivative works ("Derivative Works") based upon the + Original Work; + + c) to distribute copies of the Original Work and Derivative Works + to the public, with the proviso that copies of Original Work or + Derivative Works that You distribute shall be licensed under the + Open Software License; + + d) to perform the Original Work publicly; and + + e) to display the Original Work publicly. + + 2) Grant of Patent License. Licensor hereby grants You a world-wide, + royalty-free, non-exclusive, perpetual, non-sublicenseable license, + under patent claims owned or controlled by the Licensor that are + embodied in the Original Work as furnished by the Licensor ("Licensed + Claims") to make, use, sell and offer for sale the Original Work. + Licensor hereby grants You a world-wide, royalty-free, non-exclusive, + perpetual, non-sublicenseable license under the Licensed Claims to + make, use, sell and offer for sale Derivative Works. + + 3) Grant of Source Code License. The term "Source Code" means the + preferred form of the Original Work for making modifications to it and + all available documentation describing how to access and modify the + Original Work. Licensor hereby agrees to provide a machine-readable + copy of the Source Code of the Original Work along with each copy of + the Original Work that Licensor distributes. Licensor reserves the + right to satisfy this obligation by placing a machine-readable copy of + the Source Code in an information repository reasonably calculated to + permit inexpensive and convenient access by You for as long as + Licensor continues to distribute the Original Work, and by publishing + the address of that information repository in a notice immediately + following the copyright notice that applies to the Original Work. + + 4) Exclusions From License Grant. Nothing in this License shall be + deemed to grant any rights to trademarks, copyrights, patents, trade + secrets or any other intellectual property of Licensor except as + expressly stated herein. No patent license is granted to make, use, + sell or offer to sell embodiments of any patent claims other than the + Licensed Claims defined in Section 2. No right is granted to the + trademarks of Licensor even if such marks are included in the Original + Work. Nothing in this License shall be interpreted to prohibit + Licensor from licensing under different terms from this License any + Original Work that Licensor otherwise would have a right to license. + + 5) External Deployment. The term "External Deployment" means the use + or distribution of the Original Work or Derivative Works in any way + such that the Original Work or Derivative Works may be accessed or + used by anyone other than You, whether the Original Work or Derivative + Works are distributed to those persons, made available as an + application intended for use over a computer network, or used to + provide services or otherwise deliver content to anyone other than + You. As an express condition for the grants of license hereunder, You + agree that any External Deployment by You shall be deemed a + distribution and shall be licensed to all under the terms of this + License, as prescribed in section 1(c) herein. + + 6) Warranty and Disclaimer of Warranty. LICENSOR WARRANTS THAT THE + COPYRIGHT IN AND TO THE ORIGINAL WORK IS OWNED BY THE LICENSOR OR THAT + THE ORIGINAL WORK IS DISTRIBUTED BY LICENSOR UNDER A VALID CURRENT + LICENSE FROM THE COPYRIGHT OWNER. EXCEPT AS EXPRESSLY STATED IN THE + IMMEDIATELY PRECEEDING SENTENCE, THE ORIGINAL WORK IS PROVIDED UNDER + THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY, EITHER EXPRESS OR + IMPLIED, INCLUDING, WITHOUT LIMITATION, THE WARRANTY OF + NON-INFRINGEMENT AND WARRANTIES THAT THE ORIGINAL WORK IS MERCHANTABLE + OR FIT FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF + THE ORIGINAL WORK IS WITH YOU. THIS DISCLAIMER OF WARRANTY CONSTITUTES + AN ESSENTIAL PART OF THIS LICENSE. NO LICENSE TO ORIGINAL WORK IS + GRANTED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 7) Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL + THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, + SHALL THE LICENSOR BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, + SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING + AS A RESULT OF THIS LICENSE OR THE USE OF THE ORIGINAL WORK INCLUDING, + WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, + COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL + DAMAGES OR LOSSES, EVEN IF SUCH PERSON SHALL HAVE BEEN INFORMED OF THE + POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT + APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH + PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH + LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR + LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION + AND LIMITATION MAY NOT APPLY TO YOU. + + 8) Acceptance and Termination. Nothing else but this License (or + another written agreement between Licensor and You) grants You + permission to create Derivative Works based upon the Original Work, + and any attempt to do so except under the terms of this License (or + another written agreement between Licensor and You) is expressly + prohibited by U.S. copyright law, the equivalent laws of other + countries, and by international treaty. Therefore, by exercising any + of the rights granted to You in Sections 1 and 2 herein, You indicate + Your acceptance of this License and all of its terms and conditions. + This license shall terminate immediately and you may no longer + exercise any of the rights granted to You by this License upon Your + failure to honor the proviso in Section 1(c) herein. + + 9) Mutual Termination for Patent Action. This License shall terminate + automatically and You may no longer exercise any of the rights granted + to You by this License if You file a lawsuit in any court alleging + that any OSI Certified open source software that is licensed under any + license containing this "Mutual Termination for Patent Action" clause + infringes any patent claims that are essential to use that software. + + 10) Jurisdiction, Venue and Governing Law. You agree that any lawsuit + arising under or relating to this License shall be maintained in the + courts of the jurisdiction wherein the Licensor resides or in which + Licensor conducts its primary business, and under the laws of that + jurisdiction excluding its conflict-of-law provisions. The application + of the United Nations Convention on Contracts for the International + Sale of Goods is expressly excluded. Any use of the Original Work + outside the scope of this License or after its termination shall be + subject to the requirements and penalties of the U.S. Copyright Act, + 17 U.S.C. § 101 et seq., the equivalent laws of other countries, and + international treaty. This section shall survive the termination of + this License. + + 11) Attorneys Fees. In any action to enforce the terms of this License + or seeking damages relating thereto, the prevailing party shall be + entitled to recover its costs and expenses, including, without + limitation, reasonable attorneys' fees and costs incurred in + connection with such action, including any appeal of such action. This + section shall survive the termination of this License. + + 12) Miscellaneous. This License represents the complete agreement + concerning the subject matter hereof. If any provision of this License + is held to be unenforceable, such provision shall be reformed only to + the extent necessary to make it enforceable. + + 13) Definition of "You" in This License. "You" throughout this + License, whether in upper or lower case, means an individual or a + legal entity exercising rights under, and complying with all of the + terms of, this License. For legal entities, "You" includes any entity + that controls, is controlled by, or is under common control with you. + For purposes of this definition, "control" means (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. + + This license is Copyright (C) 2002 Lawrence E. Rosen. All rights + reserved. Permission is hereby granted to copy and distribute this + license without modification. This license may not be modified without + the express written permission of its copyright owner. json: osl-1.0.json - yml: osl-1.0.yml + yaml: osl-1.0.yml html: osl-1.0.html - text: osl-1.0.LICENSE + license: osl-1.0.LICENSE - license_key: osl-1.1 + category: Copyleft spdx_license_key: OSL-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + The Open Software License v. 1.1 + This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: + + Licensed under the Open Software License version 1.1 + + 1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, non-sublicenseable license to do the following: + + a) to reproduce the Original Work in copies; + + b) to prepare derivative works ("Derivative Works") based upon the Original Work; + + c) to distribute copies of the Original Work and Derivative Works to the public, with the proviso that copies of Original Work or Derivative Works that You distribute shall be licensed under the Open Software License; + + d) to perform the Original Work publicly; and + + e) to display the Original Work publicly. + + 2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, non-sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor ("Licensed Claims") to make, use, sell and offer for sale the Original Work. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, non-sublicenseable license under the Licensed Claims to make, use, sell and offer for sale Derivative Works. + + 3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work. + + 4) Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the Licensed Claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license. + + 5) External Deployment. The term "External Deployment" means the use or distribution of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether the Original Work or Derivative Works are distributed to those persons or made available as an application intended for use over a computer network. As an express condition for the grants of license hereunder, You agree that any External Deployment by You of a Derivative Work shall be deemed a distribution and shall be licensed to all under the terms of this License, as prescribed in section 1(c) herein. + + 6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. + + 7) Warranty and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work is owned by the Licensor or that the Original Work is distributed by Licensor under a valid current license from the copyright owner. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer. + + 8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. + + 9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express and volitional assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Sections 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Sections 1 herein, You indicate Your acceptance of this License and all of its terms and conditions. This License shall terminate immediately and you may no longer exercise any of the rights granted to You by this License upon Your failure to honor the proviso in Section 1(c) herein. + + 10) Mutual Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License if You file a lawsuit in any court alleging that any OSI Certified open source software that is licensed under any license containing this "Mutual Termination for Patent Action" clause infringes any patent claims that are essential to use that software. + + 11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. å¤ 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License. + + 12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. + + 13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. + + 14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (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. + + 15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. + + This license is Copyright (C) 2002 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner. json: osl-1.1.json - yml: osl-1.1.yml + yaml: osl-1.1.yml html: osl-1.1.html - text: osl-1.1.LICENSE + license: osl-1.1.LICENSE - license_key: osl-2.0 + category: Copyleft spdx_license_key: OSL-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + Open Software License v. 2.0 + + This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: + Licensed under the Open Software License version 2.0 + + 1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following: + a) to reproduce the Original Work in copies; + + b) to prepare derivative works ("Derivative Works") based upon the Original Work; + + c) to distribute copies of the Original Work and Derivative Works to the public, with the proviso that copies of Original Work or Derivative Works that You distribute shall be licensed under the Open Software License; + + d) to perform the Original Work publicly; and + + e) to display the Original Work publicly. + + 2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works. + + 3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work. + + 4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license. + + 5) External Deployment. The term "External Deployment" means the use or distribution of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether the Original Work or Derivative Works are distributed to those persons or made available as an application intended for use over a computer network. As an express condition for the grants of license hereunder, You agree that any External Deployment by You of a Derivative Work shall be deemed a distribution and shall be licensed to all under the terms of this License, as prescribed in section 1(c) herein. + + 6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. + + 7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer. + + 8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. + + 9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions. This License shall terminate immediately and you may no longer exercise any of the rights granted to You by this License upon Your failure to honor the proviso in Section 1(c) herein. + + 10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, for patent infringement (i) against Licensor with respect to a patent applicable to software or (ii) against any entity with respect to a patent applicable to the Original Work (but excluding combinations of the Original Work with other software or hardware). + + 11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License. + + 12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. + + 13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. + + 14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (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. + + 15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. + + This license is Copyright (C) 2003 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner. json: osl-2.0.json - yml: osl-2.0.yml + yaml: osl-2.0.yml html: osl-2.0.html - text: osl-2.0.LICENSE + license: osl-2.0.LICENSE - license_key: osl-2.1 + category: Copyleft spdx_license_key: OSL-2.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + Open Software License v. 2.1 + + This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: + + Licensed under the Open Software License version 2.1 + + 1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following: + + * to reproduce the Original Work in copies; + * to prepare derivative works ("Derivative Works") based upon the Original Work; + * to distribute copies of the Original Work and Derivative Works to the public, with the proviso that copies of Original Work or Derivative Works that You distribute shall be licensed under the Open Software License; + * to perform the Original Work publicly; and + * to display the Original Work publicly. + + 2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works. + + 3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work. + + 4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license. + + 5) External Deployment. The term "External Deployment" means the use or distribution of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether the Original Work or Derivative Works are distributed to those persons or made available as an application intended for use over a computer network. As an express condition for the grants of license hereunder, You agree that any External Deployment by You of a Derivative Work shall be deemed a distribution and shall be licensed to all under the terms of this License, as prescribed in section 1(c) herein. + + 6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. + + 7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer. + + 8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. + + 9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions. This License shall terminate immediately and you may no longer exercise any of the rights granted to You by this License upon Your failure to honor the proviso in Section 1(c) herein. + + 10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. + + 11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License. + + 12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. + + 13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. + + 14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (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. + + 15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. + + This license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner. json: osl-2.1.json - yml: osl-2.1.yml + yaml: osl-2.1.yml html: osl-2.1.html - text: osl-2.1.LICENSE + license: osl-2.1.LICENSE - license_key: osl-3.0 + category: Copyleft spdx_license_key: OSL-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + Open Software License ("OSL") v. 3.0 + + This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: + + Licensed under the Open Software License version 3.0 + + 1) Grant of Copyright License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, for the duration of the copyright, to do the following: + + a) to reproduce the Original Work in copies, either alone or as part of a collective work; + + b) to translate, adapt, alter, transform, modify, or arrange the Original Work, thereby creating derivative works ("Derivative Works") based upon the Original Work; + + c) to distribute or communicate copies of the Original Work and Derivative Works to the public, with the proviso that copies of Original Work or Derivative Works that You distribute or communicate shall be licensed under this Open Software License; + + d) to perform the Original Work publicly; and + + e) to display the Original Work publicly. + + 2) Grant of Patent License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, for the duration of the patents, to make, use, sell, offer for sale, have made, and import the Original Work and Derivative Works. + + 3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work. + + 4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior permission of the Licensor. Except as expressly stated herein, nothing in this License grants any license to Licensor's trademarks, copyrights, patents, trade secrets or any other intellectual property. No patent license is granted to make, use, sell, offer for sale, have made, or import embodiments of any patent claims other than the licensed claims defined in Section 2. No license is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under terms different from this License any Original Work that Licensor otherwise would have a right to license. + + 5) External Deployment. The term "External Deployment" means the use, distribution, or communication of the Original Work or Derivative Works in any way such that the Original Work or Derivative Works may be used by anyone other than You, whether those works are distributed or communicated to those persons or made available as an application intended for use over a network. As an express condition for the grants of license hereunder, You must treat any External Deployment by You of the Original Work or a Derivative Work as a distribution under section 1(c). + + 6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent, or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. + + 7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately preceding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of non-infringement, merchantability or fitness for a particular purpose. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to the Original Work is granted by this License except under this disclaimer. + + 8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to anyone for any indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to the extent applicable law prohibits such limitation. + + 9) Acceptance and Termination. If, at any time, You expressly assented to this License, that assent indicates your clear and irrevocable acceptance of this License and all of its terms and conditions. If You distribute or communicate copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. This License conditions your rights to undertake the activities listed in Section 1, including your right to create Derivative Works based upon the Original Work, and doing so without honoring these terms and conditions is prohibited by copyright law and international treaty. Nothing in this License is intended to affect copyright exceptions and limitations (including "fair use" or "fair dealing"). This License shall terminate immediately and You may no longer exercise any of the rights granted to You by this License upon your failure to honor the conditions in Section 1(c). + + 10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. + + 11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of copyright or patent law in the appropriate jurisdiction. This section shall survive the termination of this License. + + 12) Attorneys' Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. + + 13) Miscellaneous. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. + + 14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (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. + + 15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. + + 16) Modification of This License. This License is Copyright © 2005 Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the "Modified License") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the "Open Software License" or "OSL" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice "Licensed under " or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process. json: osl-3.0.json - yml: osl-3.0.yml + yaml: osl-3.0.yml html: osl-3.0.html - text: osl-3.0.LICENSE + license: osl-3.0.LICENSE - license_key: ossn-3.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ossn-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "OPEN SOURCE SOCIAL NETWORK LICENSE (OSSN LICENSE) v3.0\nCopyright (C) 2014-2017 OPEN\ + \ SOURCE SOCIAL NETWORK. \n\nThe Open Source\ + \ Social Network License does not permit incorporating your program/software into proprietary\ + \ program/software.\n\nPermission is hereby granted, free of charge, to any person obtaining\ + \ a copy of this Program/Software and associated documentation files (the \"Program/Software\"\ + ), to deal in the Program/Software with restriction, including limitation the rights to\ + \ use, copy, modify, distribute, or sell copies of the Program/Software.\n\n1. Definitions\n\ + \n\"Copyright\" also means copyright-like laws that apply to other kinds of works, such\ + \ as semiconductor masks.\nTo \"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.\n\"You\" refers to the individual/organization that uses\ + \ the program/software.\n\n2. Modifying, copy, distribution/selling of Program.\n\n2.1\ + \ You are allowed to modify the program/software subject to the following conditions:\n\ + \ 2.1.0 You shall not remove the copyrights including powered by notice/links.\n \ + \ 2.1.1 You shall not try to apply any techniques that hides copyright, 'powered by'\ + \ notice/links.\n2.2 You are allowed to distribute/sell the copies of product keeping the\ + \ section 2.1 in mind.\n\n3. Other 3rd party open source program/software\n\nSome of other\ + \ open source program/software within this program/software released under different license\ + \ like GPL, LGPL, MIT etc, you shall agree to the respective license. We tried to put the\ + \ license name in the comment section of respective file or sub-program/software.\n\n4.\ + \ Violation and Termination of License.\n\nIf your use of program/software violates the\ + \ license, the license and the use of program/software shall terminated immediately. \n\ + 5. Revised Versions of this License.\nThe Open Source Social Network Authors may publish\ + \ revised and/or new versions of the Open Source Social Network License from time to time.\ + \ Such new versions will be similar to the present version, but may differ in detail to\ + \ address new problems or concerns. Each version is given a distinguishing version number.\ + \ \n\n6. Disclaimer of Warranty.\n\nTHERE 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.\n\n7. Limitation of Liability.\n\nIN 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.\n\n8. Interpretation\ + \ of Sections 6 and 7\n\nIf 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." json: ossn-3.0.json - yml: ossn-3.0.yml + yaml: ossn-3.0.yml html: ossn-3.0.html - text: ossn-3.0.LICENSE + license: ossn-3.0.LICENSE - license_key: oswego-concurrent + category: Permissive spdx_license_key: LicenseRef-scancode-oswego-concurrent other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html\n\nAll classes\ + \ are released to the public domain and may be used for any purpose\nwhatsoever without\ + \ permission or acknowledgment. Portions of the CopyOnWriteArrayList\nand ConcurrentReaderHashMap\ + \ classes are adapted from Sun JDK source code. These are\ncopyright of Sun Microsystems,\ + \ Inc, and are used with their kind permission, as\ndescribed in this license.\n\nhttp://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/sun-u.c.license.pdf\n\ + \nTECHNOLOGY LICENSE FROM SUN MICROSYSTEMS, INC. TO DOUG LEA\n\nWhereas Doug Lea desires\ + \ to utlized certain Java Software technologies in the\nutil.concurrent technology; and\ + \ Whereas Sun Microsystems, Inc. (\"Sun\") desires that\nDoug Lea utilize certain Java Software\ + \ technologies in the util.concurrent\ntechnology; Therefore the parties agree as follows,\ + \ effective May 31, 2002:\n\n\"Java Software technologies\" means classes/java/util/ArrayList.java,\ + \ and\nclasses/java/util/HashMap.java.\n\nThe Java Software technologies are Copyright (c)\ + \ 1994-2000 Sun Microsystems, Inc. All\nrights reserved. \n\nSun hereby grants Doug Lea\ + \ a non-exclusive, worldwide, non- transferrable license to\nuse, reproduce, create derivate\ + \ works of, and distribute the Java Software and\nderivative works thereof in source and\ + \ binary forms as part of a larger work, and to\nsublicense the right to use, reproduce\ + \ and distribute the Java Software and Doug\nLea's derivative works as the part of larger\ + \ works through multiple tiers of\nsublicensees provided that the following conditions are\ + \ met: \n\n-Neither the name of or trademarks of Sun may be used to endorse or promote products\n\ + including or derived from the Java Software technology without specific prior written\n\ + permission; and \n\n-Redistributions of source or binary code must contain the above copyright\ + \ notice,\nthis notice and and the following disclaimers:\n\nThis software is provided \"\ + AS IS,\" without a warranty of any kind. ALL EXPRESS OR\nIMPLIED CONDITIONS, REPRESENTATIONS\ + \ AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR\ + \ PURPOSE OR NON-INFRINGEMENT, ARE HEREBY\nEXCLUDED. SUN MICROSYSTEMS, INC. AND ITS LICENSORS\ + \ SHALL NOT BE LIABLE FOR ANY\nDAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING\ + \ OR DISTRIBUTING THE\nSOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN MICROSYSTEMS, INC.\ + \ OR ITS LICENSORS\nBE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT,\ + \ SPECIAL,\nCONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS\ + \ OF THE\nTHEORY OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USESOFTWARE, EVEN\ + \ IF\nSUN MICROSYSTEMS, INC. HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nYou\ + \ acknowledge that Software is not designed,licensed or intended for use in the\ndesign,\ + \ construction, operation or maintenance of any nuclear facility.\n\nsigned [Doug Lea] dated" json: oswego-concurrent.json - yml: oswego-concurrent.yml + yaml: oswego-concurrent.yml html: oswego-concurrent.html - text: oswego-concurrent.LICENSE + license: oswego-concurrent.LICENSE - license_key: other-copyleft + category: Copyleft spdx_license_key: LicenseRef-scancode-other-copyleft other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + This component contains third-party subcomponents licensed under + one or more copyleft licenses in the style of GPL, LGPL, MPL or EPL. + The license obligations of these subcomponents may apply when a subcomponent + depending on how the subcomponent is used and/or redistributed. json: other-copyleft.json - yml: other-copyleft.yml + yaml: other-copyleft.yml html: other-copyleft.html - text: other-copyleft.LICENSE + license: other-copyleft.LICENSE - license_key: other-permissive + category: Permissive spdx_license_key: LicenseRef-scancode-other-permissive other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This component contains multiple third-party subcomponents licensed + under permissive licenses in the style of MIT, BSD, X11, and/or Apache. json: other-permissive.json - yml: other-permissive.yml + yaml: other-permissive.yml html: other-permissive.html - text: other-permissive.LICENSE + license: other-permissive.LICENSE - license_key: otn-dev-dist + category: Proprietary Free spdx_license_key: LicenseRef-scancode-otn-dev-dist other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Oracle Technology Network Development and Distribution License Terms\nhttp://www.oracle.com/technetwork/licenses/distribution-license-152002.html\n\ + \nExport Controls on the Programs \nSelecting the \"Accept License Agreement\" button is\ + \ a confirmation of your agreement that you comply, now and during the trial term, with\ + \ each of the following statements:\n -You are not a citizen, national, or resident of,\ + \ and are not under control of, the government of Cuba, Iran, Sudan, Libya, North Korea,\ + \ Syria, nor any country to which the United States has prohibited export. \n-You will not\ + \ download or otherwise export or re-export the Programs, directly or indirectly, to the\ + \ above mentioned countries nor to citizens, nationals or residents of those countries.\ + \ \n-You are not listed on the United States Department of Treasury lists of Specially Designated\ + \ Nationals, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers,\ + \ nor are you listed on the United States Department of Commerce Table of Denial Orders.\n\ + You will not download or otherwise export or re-export the Programs, directly or indirectly,\ + \ to persons on the above mentioned lists.\nYou will not use the Programs for, and will\ + \ not allow the Programs to be used for, any purposes prohibited by United States law, including,\ + \ without limitation, for the development, design, manufacture or production of nuclear,\ + \ chemical or biological weapons of mass destruction.\n \nEXPORT RESTRICTIONS \nYou agree\ + \ that U.S. export control laws and other applicable export and import laws govern your\ + \ use of the programs, including technical data; additional information can be found on\ + \ Oracle®'s Global Trade Compliance web site (http://www.oracle.com/products/export).\n\ + You agree that neither the programs nor any direct product thereof will be exported, directly,\ + \ or indirectly, in violation of these laws, or will be used for any purpose prohibited\ + \ by these laws including, without limitation, nuclear, chemical, or biological weapons\ + \ proliferation.\nOracle Employees: Under no circumstances are Oracle Employees authorized\ + \ to download software for the purpose of distributing it to customers. Oracle products\ + \ are available to employees for internal use or demonstration purposes only. In keeping\ + \ with Oracle's trade compliance obligations under U.S. and applicable multilateral law,\ + \ failure to comply with this policy could result in disciplinary action up to and including\ + \ termination.\n \nNote: You are bound by the Oracle Technology Network (\"OTN\") License\ + \ Agreement terms. The OTN License Agreement terms also apply to all updates you receive\ + \ under your Technology Track subscription.\n\nThe OTN License Agreement terms below supercede\ + \ any shrinkwrap license on the OTN Technology Track software CDs and previous OTN License\ + \ terms (including the Oracle Program License as modified by the OTN Program Use Certificate).\n\ + \ \nOracle Technology Network Development and Distribution License Agreement\n\n\"We,\"\ + \ \"us,\" and \"our\" refers to Oracle America, Inc., for and on behalf of itself and its\ + \ subsidiaries and affiliates under common control. \"You\" and \"your\" refers to the individual\ + \ or entity that wishes to use the programs from Oracle. \"Programs\" refers to the software\ + \ product you wish to download and use and program documentation. \"License\" refers to\ + \ your right to use the programs under the terms of this agreement. This agreement is governed\ + \ by the substantive and procedural laws of California. You and Oracle agree to submit to\ + \ the exclusive jurisdiction of, and venue in, the courts of San Francisco, San Mateo, or\ + \ Santa Clara counties in California in any dispute arising out of or relating to this agreement.\n\ + We are willing to license the programs to you only upon the condition that you accept all\ + \ of the terms contained in this agreement. Read the terms carefully and select the \"Accept\"\ + \ button at the bottom of the page to confirm your acceptance. If you are not willing to\ + \ be bound by these terms, select the \"Do Not Accept\" button and the registration process\ + \ will not continue.\nLicense Rights \nWe grant you a nonexclusive, nontransferable limited\ + \ license to use the programs: (a) for purposes of developing, testing, prototyping and\ + \ running applications you have developed for your own internal data processing operations;\ + \ (b) to distribute the programs with applications you have developed to your customers\ + \ provided that each such licensee agrees to license terms consistent with the terms of\ + \ this Agreement, you do not charge your end users any additional fees for the use of the\ + \ programs, and your end users may only use the programs to run your applications for their\ + \ own business operations; and (c) to use the programs to provide third party demonstrations\ + \ and training. You are not permitted to use the programs for any purpose other than as\ + \ permitted under this Agreement. If you want to use the programs for any purpose other\ + \ than as expressly permitted under this agreement you must contact us, or an Oracle reseller,\ + \ to obtain the appropriate license. We may audit your use and distribution of the programs.\ + \ Program documentation is either shipped with the programs, or documentation may accessed\ + \ online at http://www.oracle.com/technetwork/indexes/documentation/index.html.\nOwnership\ + \ and Restrictions \nWe retain all ownership and intellectual property rights in the programs.\ + \ You may make a sufficient number of copies of the programs for the licensed use and one\ + \ copy of the programs for backup purposes.\nYou may not: \n- use the programs for any purpose\ + \ other than as provided above; \n- distribute the programs unless accompanied with your\ + \ applications; \n- charge your end users for use of the programs; \n- remove or modify\ + \ any program markings or any notice of our proprietary rights; \n- use the programs to\ + \ provide third party training on the content and/or functionality of the programs, except\ + \ for training your licensed users; \n- assign this agreement or give the programs, program\ + \ access or an interest in the programs to any individual or entity except as provided under\ + \ this agreement; \n- cause or permit reverse engineering (unless required by law for interoperability),\ + \ disassembly or decompilation of the programs; \n- disclose results of any program benchmark\ + \ tests without our prior consent.\nProgram Distribution \nWe grant you a nonexclusive,\ + \ nontransferable right to copy and distribute the programs to your end users provided that\ + \ you do not charge your end users for use of the programs and provided your end users may\ + \ only use the programs to run your applications for their business operations. Prior to\ + \ distributing the programs you shall require your end users to execute an agreement binding\ + \ them to terms consistent with those contained in this section and the sections of this\ + \ agreement entitled \"License Rights,\" \"Ownership and Restrictions,\" \"Export,\" \"\ + Disclaimer of Warranties and Exclusive Remedies,\" \"No Technical Support,\" \"End of Agreement,\"\ + \ \"Relationship Between the Parties,\" and \"Open Source.\" You must also include a provision\ + \ stating that your end users shall have no right to distribute the programs, and a provision\ + \ specifying us as a third party beneficiary of the agreement. You are responsible for obtaining\ + \ these agreements with your end users.\nYou agree to: (a) defend and indemnify us against\ + \ all claims and damages caused by your distribution of the programs in breach of this agreements\ + \ and/or failure to include the required contractual provisions in your end user agreement\ + \ as stated above; (b) keep executed end user agreements and records of end user information\ + \ including name, address, date of distribution and identity of programs distributed; (c)\ + \ allow us to inspect your end user agreements and records upon request; and, (d) enforce\ + \ the terms of your end user agreements so as to effect a timely cure of any end user breach,\ + \ and to notify us of any breach of the terms.\nExport \nYou agree that U.S. export control\ + \ laws and other applicable export and import laws govern your use of the programs, including\ + \ technical data; additional information can be found on Oracle's Global Trade Compliance\ + \ web site located at http://www.oracle.com/products/export/index.html?content.html. You\ + \ agree that neither the programs nor any direct product thereof will be exported, directly,\ + \ or indirectly, in violation of these laws, or will be used for any purpose prohibited\ + \ by these laws including, without limitation, nuclear, chemical, or biological weapons\ + \ proliferation.\nDisclaimer of Warranty and Exclusive Remedies\nTHE PROGRAMS ARE PROVIDED\ + \ \"AS IS\" WITHOUT WARRANTY OF ANY KIND. WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND\ + \ IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.\nIN NO EVENT SHALL WE BE LIABLE FOR ANY INDIRECT,\ + \ INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS,\ + \ REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN\ + \ CONTRACT OR TORT, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. OUR\ + \ ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S.\ + \ $1,000).\nNo Technical Support \nOur technical support organization will not provide technical\ + \ support, phone support, or updates to you for the programs licensed under this agreement.\n\ + Restricted Rights \nIf you distribute a license to the United States government, the programs,\ + \ including documentation, shall be considered commercial computer software and you will\ + \ place a legend, in addition to applicable copyright notices, on the documentation, and\ + \ on the media label, substantially similar to the following:\nNOTICE OF RESTRICTED RIGHTS\n\ + \"Programs delivered subject to the DOD FAR Supplement are 'commercial computer software'\ + \ and use, duplication, and disclosure of the programs, including documentation, shall be\ + \ subject to the licensing restrictions set forth in the applicable Oracle license agreement.\ + \ Otherwise, programs delivered subject to the Federal Acquisition Regulations are 'restricted\ + \ computer software' and use, duplication, and disclosure of the programs, including documentation,\ + \ shall be subject to the restrictions in FAR 52.227-19, Commercial Computer Software-Restricted\ + \ Rights (June 1987). Oracle America, Inc., 500 Oracle Parkway, Redwood City, CA 94065.\"\ + \nEnd of Agreement \nYou may terminate this agreement by destroying all copies of the programs.\ + \ We have the right to terminate your right to use the programs if you fail to comply with\ + \ any of the terms of this agreement, in which case you shall destroy all copies of the\ + \ programs.\nRelationship Between the Parties \nThe relationship between you and us is that\ + \ of licensee/licensor. Neither party will represent that it has any authority to assume\ + \ or create any obligation, express or implied, on behalf of the other party, nor to represent\ + \ the other party as agent, employee, franchisee, or in any other capacity. Nothing in this\ + \ agreement shall be construed to limit either party's right to independently develop or\ + \ distribute software that is functionally similar to the other party's products, so long\ + \ as proprietary information of the other party is not included in such software.\nOpen\ + \ Source \n\"Open Source\" software - software available without charge for use, modification\ + \ and distribution - is often licensed under terms that require the user to make the user's\ + \ modifications to the Open Source software or any software that the user 'combines' with\ + \ the Open Source software freely available in source code form. If you use Open Source\ + \ software in conjunction with the programs, you must ensure that your use does not: (i)\ + \ create, or purport to create, obligations of us with respect to the Oracle programs; or\ + \ (ii) grant, or purport to grant, to any third party any rights to or immunities under\ + \ our intellectual property or proprietary rights in the Oracle programs. For example, you\ + \ may not develop a software program using an Oracle program and an Open Source program\ + \ where such use results in a program file(s) that contains code from both the Oracle program\ + \ and the Open Source program (including without limitation libraries) if the Open Source\ + \ program is licensed under a license that requires any \"modifications\" be made freely\ + \ available. You also may not combine the Oracle program with programs licensed under the\ + \ GNU General Public License (\"GPL\") in any manner that could cause, or could be interpreted\ + \ or asserted to cause, the Oracle program or any modifications thereto to become subject\ + \ to the terms of the GPL.\nEntire Agreement \nYou agree that this agreement is the complete\ + \ agreement for the programs and licenses, and this agreement supersedes all prior or contemporaneous\ + \ agreements or representations. If any term of this agreement is found to be invalid or\ + \ unenforceable, the remaining provisions will remain effective.\nLast updated: 01/24/09\n\ + \ \nShould you have any questions concerning this License Agreement, or if you desire to\ + \ contact Oracle for any reason, please write: \nOracle America, Inc. \n500 Oracle Parkway,\ + \ \nRedwood City, CA 94065\n \nOracle may contact you to ask if you had a satisfactory experience\ + \ installing and using this OTN software download." json: otn-dev-dist.json - yml: otn-dev-dist.yml + yaml: otn-dev-dist.yml html: otn-dev-dist.html - text: otn-dev-dist.LICENSE + license: otn-dev-dist.LICENSE - license_key: otn-dev-dist-2009 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-otn-dev-dist-2009 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Oracle Technology Network Developer License Terms \n\nExport Controls on the Programs\n\ + Selecting the \"Accept License Agreement\" button is a confirmation of your agreement that\ + \ you comply, now and during the trial term, with each of the following statements:\n\n\ + -You are not a citizen, national, or resident of, and are not under control of, the government\ + \ of Cuba, Iran, Sudan, Libya, North Korea, Syria, nor any country to which the United States\ + \ has prohibited export.\n-You will not download or otherwise export or re-export the Programs,\ + \ directly or indirectly, to the above mentioned countries nor to citizens, nationals or\ + \ residents of those countries.\n-You are not listed on the United States Department of\ + \ Treasury lists of Specially Designated Nationals, Specially Designated Terrorists, and\ + \ Specially Designated Narcotic Traffickers, nor are you listed on the United States Department\ + \ of Commerce Table of Denial Orders.\n\nYou will not download or otherwise export or re-export\ + \ the Programs, directly or indirectly, to persons on the above mentioned lists.\n\nYou\ + \ will not use the Programs for, and will not allow the Programs to be used for, any purposes\ + \ prohibited by United States law, including, without limitation, for the development, design,\ + \ manufacture or production of nuclear, chemical or biological weapons of mass destruction.\n\ + \nEXPORT RESTRICTIONS\nYou agree that U.S. export control laws and other applicable export\ + \ and import laws govern your use of the programs, including technical data; additional\ + \ information can be found on Oracle®'s Global Trade Compliance web site (http://www.oracle.com/products/export).\n\ + \nYou agree that neither the programs nor any direct product thereof will be exported, directly,\ + \ or indirectly, in violation of these laws, or will be used for any purpose prohibited\ + \ by these laws including, without limitation, nuclear, chemical, or biological weapons\ + \ proliferation.\n\nOracle Employees: Under no circumstances are Oracle Employees authorized\ + \ to download software for the purpose of distributing it to customers. Oracle products\ + \ are available to employees for internal use or demonstration purposes only. In keeping\ + \ with Oracle's trade compliance obligations under U.S. and applicable multilateral law,\ + \ failure to comply with this policy could result in disciplinary action up to and including\ + \ termination.\n\nNote: You are bound by the Oracle Technology Network (\"OTN\") License\ + \ Agreement terms. The OTN License Agreement terms also apply to all updates you receive\ + \ under your Technology Track subscription.\n\nThe OTN License Agreement terms below supercede\ + \ any shrinkwrap license on the OTN Technology Track software CDs and previous OTN License\ + \ terms (including the Oracle Program License as modified by the OTN Program Use Certificate).\n\ + \nOracle Technology Network Development License Agreement\n\"We,\" \"us,\" and \"our\" refers\ + \ to Oracle America, Inc., for and on behalf of itself and its subsidiaries and affiliates\ + \ under common control. \"You\" and \"your\" refers to the individual or entity that wishes\ + \ to use the programs from Oracle. \"Programs\" refers to the Oracle software product you\ + \ wish to download and use and program documentation. \"License\" refers to your right to\ + \ use the programs under the terms of this agreement. This agreement is governed by the\ + \ substantive and procedural laws of California. You and Oracle agree to submit to the exclusive\ + \ jurisdiction of, and venue in, the courts of San Francisco, San Mateo, or Santa Clara\ + \ counties in California in any dispute arising out of or relating to this agreement.\n\n\ + We are willing to license the programs to you only upon the condition that you accept all\ + \ of the terms contained in this agreement. Read the terms carefully and select the \"Accept\ + \ License Agreement\" button to confirm your acceptance. If you are not willing to be bound\ + \ by these terms, select the \"Decline License Agreement\" button and the registration process\ + \ will not continue.\n\nLICENSE RIGHTS\nWe grant you a nonexclusive, nontransferable limited\ + \ license to use the programs only for the purpose of developing, testing, prototyping and\ + \ demonstrating your application, and not for any other purpose. If you use the application\ + \ you develop under this license for any internal data processing or for any commercial\ + \ or production purposes, or you want to use the programs for any purpose other than as\ + \ permitted under this agreement, you must obtain a production release version of the program\ + \ by contacting us or an Oracle reseller to obtain the appropriate license. You acknowledge\ + \ that we may not produce a production release version of the program and any development\ + \ efforts undertaken by you are at your own risk. We may audit your use of the programs.\ + \ Program documentation, if available, may accessed online at http://www.oracle.com/technetwork/documentation/index.html.\n\ + \nOwnership and Restrictions We retain all ownership and intellectual property rights in\ + \ the programs. The programs may be installed on one computer only, and used by one person\ + \ in the operating environment identified by us. You may make one copy of the programs for\ + \ backup purposes.\n\nYou may not:\n- use the programs for your own internal data processing\ + \ or for any commercial or production purposes, or use the programs for any purpose except\ + \ the development of your application;\n- use the application you develop with the programs\ + \ for any internal data processing or commercial or production purposes without securing\ + \ an appropriate license from us;\n- continue to develop your application after you have\ + \ used it for any internal data processing, commercial or production purpose without securing\ + \ an appropriate license from us, or an Oracle reseller;\n- remove or modify any program\ + \ markings or any notice of our proprietary rights;\n- make the programs available in any\ + \ manner to any third party;\n- use the programs to provide third party training;\n- assign\ + \ this agreement or give or transfer the programs or an interest in them to another individual\ + \ or entity; - cause or permit reverse engineering (unless required by law for interoperability),\ + \ disassembly or decompilation of the programs;\n- disclose results of any program benchmark\ + \ tests without our prior consent.\n\nExport\nYou agree that U.S. export control laws and\ + \ other applicable export and import laws govern your use of the programs, including technical\ + \ data; additional information can be found on Oracle's Global Trade Compliance web site\ + \ located at http://www.oracle.com/products/export/index.html?content.html. You agree that\ + \ neither the programs nor any direct product thereof will be exported, directly, or indirectly,\ + \ in violation of these laws, or will be used for any purpose prohibited by these laws including,\ + \ without limitation, nuclear, chemical, or biological weapons proliferation.\n\nDisclaimer\ + \ of Warranty and Exclusive Remedies\nTHE PROGRAMS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY\ + \ OF ANY KIND. WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT\ + \ LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\ + \ OR NONINFRINGEMENT.\n\nIN NO EVENT SHALL WE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL,\ + \ PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA\ + \ USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN\ + \ IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. OUR ENTIRE LIABILITY FOR DAMAGES\ + \ HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).\n\nTrial Programs\ + \ Included With Orders\nWe may include additional programs with an order which may be used\ + \ for trial purposes only. You will have 30 days from the delivery date to evaluate these\ + \ programs. Any use of these programs after the 30 day trial period requires you to obtain\ + \ the applicable license. Programs licensed for trial purposes are provided \"as is\" and\ + \ we do not provide technical support or any warranties for these programs.\n\nNo Technical\ + \ Support\nOur technical support organization will not provide technical support, phone\ + \ support, or updates to you for the programs licensed under this agreement.\n\nEnd of Agreement\n\ + You may terminate this agreement by destroying all copies of the programs. We have the right\ + \ to terminate your right to use the programs if you fail to comply with any of the terms\ + \ of this agreement, in which case you shall destroy all copies of the programs.\n\nRelationship\ + \ Between the Parties\nThe relationship between you and us is that of licensee/licensor.\ + \ Neither party will represent that it has any authority to assume or create any obligation,\ + \ express or implied, on behalf of the other party, nor to represent the other party as\ + \ agent, employee, franchisee, or in any other capacity. Nothing in this agreement shall\ + \ be construed to limit either party's right to independently develop or distribute software\ + \ that is functionally similar to the other party's products, so long as proprietary information\ + \ of the other party is not included in such software.\n\nOpen Source\n\"Open Source\" software\ + \ - software available without charge for use, modification and distribution - is often\ + \ licensed under terms that require the user to make the user's modifications to the Open\ + \ Source software or any software that the user 'combines' with the Open Source software\ + \ freely available in source code form. If you use Open Source software in conjunction with\ + \ the programs, you must ensure that your use does not: (i) create, or purport to create,\ + \ obligations of us with respect to the Oracle programs; or (ii) grant, or purport to grant,\ + \ to any third party any rights to or immunities under our intellectual property or proprietary\ + \ rights in the Oracle programs. For example, you may not develop a software program using\ + \ an Oracle program and an Open Source program where such use results in a program file(s)\ + \ that contains code from both the Oracle program and the Open Source program (including\ + \ without limitation libraries) if the Open Source program is licensed under a license that\ + \ requires any \"modifications\" be made freely available. You also may not combine the\ + \ Oracle program with programs licensed under the GNU General Public License (\"GPL\") in\ + \ any manner that could cause, or could be interpreted or asserted to cause, the Oracle\ + \ program or any modifications thereto to become subject to the terms of the GPL.\n\nEntire\ + \ Agreement\nYou agree that this agreement is the complete agreement for the programs and\ + \ licenses, and this agreement supersedes all prior or contemporaneous agreements or representations.\ + \ If any term of this agreement is found to be invalid or unenforceable, the remaining provisions\ + \ will remain effective.\n\nLast updated: 01/24/09\n\nShould you have any questions concerning\ + \ this License Agreement, or if you desire to contact Oracle for any reason, please write:\n\ + Oracle America, Inc.\n500 Oracle Parkway,\nRedwood City, CA 94065\n\n \nOracle may contact\ + \ you to ask if you had a satisfactory experience installing and using this OTN software\ + \ download." json: otn-dev-dist-2009.json - yml: otn-dev-dist-2009.yml + yaml: otn-dev-dist-2009.yml html: otn-dev-dist-2009.html - text: otn-dev-dist-2009.LICENSE + license: otn-dev-dist-2009.LICENSE - license_key: otn-dev-dist-2014 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-otn-dev-dist-2014 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Oracle Technology Network Free Developer License Terms\n\nExport Controls on the Programs\n\ + \nExport laws and regulations of the United States and any other relevant local export laws\ + \ and regulations apply to the Programs. You agree that such export control laws govern\ + \ your use of the Programs (including technical data) and any services deliverables provided\ + \ under this agreement, and you agree to comply with all such export laws and regulations\ + \ (including \"deemed export\" and \"deemed re-export\" regulations). You agree that no\ + \ data, information, program, and/or materials resulting from services (or direct product\ + \ thereof) will be exported, directly or indirectly, in violation of these laws, or will\ + \ be used for any purpose prohibited by these laws including, without limitation, nuclear,\ + \ chemical, or biological weapons proliferation, or development of missile technology. \n\ + \nAccordingly, you confirm:\n\n-You will not download, provide, make available or otherwise\ + \ export or re-export the Programs, directly or indirectly, to countries prohibited by applicable\ + \ laws and regulations nor to citizens, nationals or residents of those countries.\n-You\ + \ are not listed on the United States Department of Treasury lists of Specially Designated\ + \ Nationals and Blocked Persons, Specially Designated Terrorists, and Specially Designated\ + \ Narcotic Traffickers, nor are you listed on the United States Department of Commerce Table\ + \ of Denial Orders.\n- You will not download or otherwise export or re-export the Programs,\ + \ directly or indirectly, to persons on the above mentioned lists.\n- You will not use the\ + \ Program for, and will not allow the Program to be used for, any purposes prohibited by\ + \ applicable law, including, without limitation, for the development, design, manufacture\ + \ or production of nuclear, chemical or biological weapons of mass destruction. \n\nOracle\ + \ Employees: Under no circumstances are Oracle Employees authorized to download software\ + \ for the purpose of distributing it to customers. Oracle products are available to employees\ + \ for internal use or demonstration purposes only. In keeping with Oracle's trade compliance\ + \ obligations under U.S. and applicable multilateral law, failure to comply with this policy\ + \ could result in disciplinary action up to and including termination. \n\nNote: You are\ + \ bound by the Oracle Technology Network (\"OTN\") License Agreement terms. The OTN License\ + \ Agreement terms also apply to all updates you receive under your Technology Track subscription.\ + \ \n\nThe OTN License Agreement terms below supersede any shrinkwrap license on the OTN\ + \ Technology Track software CDs and previous OTN License terms (including the Oracle Program\ + \ License as modified by the OTN Program Use Certificate).\n\nORACLE TECHNOLOGY NETWORK\ + \ DEVELOPMENT LICENSE AGREEMENT \n\n\"We,\" \"us,\" and \"our\" refers to Oracle America,\ + \ Inc., for and on behalf of itself and its subsidiaries and affiliates under common control.\ + \ \"You\" and \"your\" refers to the individual or entity that wishes to use the Programs\ + \ from Oracle. \"Programs\" refers to the software product associated with this agreement\ + \ that you wish to download and use and program documentation. \"Developer Desktop Computer\"\ + \ refers to your physical computer that is accessed and used for software development and\ + \ testing purposes by only one person (each \"Your Developer\") and with respect to use\ + \ of the Programs does not participate in a Shared Development Environment. A Developer\ + \ Desktop Computer may, for Your Developer's sole use, host one or more multiple virtual\ + \ machines containing the Programs. \"Shared Development Environment\" refers to (a) software\ + \ development occurring in a network or computer infrastructure shared by multiple people;\ + \ and/or (b) software development occurring on a computer that is not dedicated to use only\ + \ by Your Developer. \"Unit Testing\" refers to the testing of sets of one or more computer\ + \ program modules making up a portion of an application together with control data, usage\ + \ procedures, and operating procedures to determine if such computer program module(s) meet\ + \ operation objectives. \"License\" refers to your right to use the Programs under the terms\ + \ of this agreement.\n\nThis agreement is governed by the substantive and procedural laws\ + \ of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue\ + \ in, the courts of San Francisco or Santa Clara counties in California in any dispute arising\ + \ out of or relating to this agreement.\n\nWe are willing to license the Programs to you\ + \ only upon the condition that you accept all of the terms contained in this agreement.\ + \ Read the terms carefully and select the \"Accept License Agreement\" button to confirm\ + \ your acceptance. If you are not willing to be bound by these terms, select the \"Decline\ + \ License Agreement\" button and the registration process will not continue.\n\nLicense\ + \ Rights\n\nWe grant you a nonexclusive, nontransferable limited license to use the Programs\ + \ only for the purpose of developing, testing (including Unit Testing with production data),\ + \ prototyping and demonstrating your application(s), and not for any other purpose. This\ + \ license permits you to allow each of Your Developers to deploy the Programs on one Developer\ + \ Desktop Computer. You may not use the Programs in a Shared Development Environment. For\ + \ deployment of the application(s) you develop under this license for any internal data\ + \ processing or for any commercial or production purposes, or if you want to use the Programs\ + \ for any purpose other than as permitted under this agreement, you must first obtain a\ + \ production release version of the Programs by contacting us or an Oracle reseller to obtain\ + \ the appropriate license. You may continue to develop, test, prototype and demonstrate\ + \ your application(s) with the Programs under this license after you have deployed the application(s)\ + \ for any internal data processing, commercial or production purposes (subject to the requirement\ + \ to procure a production release version of the Programs as described in the preceding\ + \ sentence). You acknowledge that we may not produce a production release version of the\ + \ program and any development efforts undertaken by you are at your own risk. We may audit\ + \ your use of the Programs. Program documentation, if available, may be accessed online\ + \ at http://www.oracle.com/technetwork/indexes/documentation/index.html. We reserve all\ + \ rights not expressly granted in this agreement.\n\nOwnership and Restrictions\n\nWe retain\ + \ all ownership and intellectual property rights in the Programs. For each of Your Developers,\ + \ the Programs may be installed on one Developer Desktop Computer only, and used by Your\ + \ Developer in the operating environment identified by us. You may make one copy of the\ + \ Programs for backup purposes. You are responsible for each of Your Developer’s compliance\ + \ with this agreement.\n\nYou may not: \n- use the Programs for your own internal data processing\ + \ or for any commercial or production purposes, or use the Programs for any purpose except\ + \ the development, testing, prototyping, and demonstrating of your application(s); \n- use\ + \ the application(s) you develop with the Programs for any internal data processing or commercial\ + \ or production purposes , including testing or running production or commercial workloads\ + \ on the developer desktop, without obtaining an appropriate license from us; \n- remove\ + \ or modify any program markings or any notice of our proprietary rights; \n- make the Programs\ + \ available in any manner to any third party; \n- use the Programs to provide third party\ + \ training; \n- assign this agreement or give or transfer the Programs or an interest in\ + \ them to another individual or entity; - cause or permit reverse engineering (unless required\ + \ by law for interoperability), disassembly or decompilation of the Programs; \n- disclose\ + \ results of any program benchmark tests without our prior consent.\n\nDisclaimer of Warranty\ + \ and Exclusive Remedies\n\nTHE PROGRAMS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY\ + \ KIND. WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION,\ + \ ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.\n\ + \n\nIN NO EVENT SHALL WE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL\ + \ DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR\ + \ ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF WE HAVE BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES. OUR ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN\ + \ NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).\n\nTrial Programs Included With Orders\n\ + \nWe may include additional Programs with an order which may be used for trial purposes\ + \ only. You will have 30 days from the delivery date to evaluate these Programs. Any use\ + \ of these Programs after the 30 day trial period requires you to obtain the applicable\ + \ license. Programs licensed for trial purposes are provided \"as is\" and we do not provide\ + \ technical support or any warranties for these Programs.\n\nNo Technical Support\n\nOur\ + \ technical support organization will not provide technical support, phone support, or updates\ + \ to you for the Programs licensed under this agreement.\n\nEnd of Agreement\n\nYou may\ + \ terminate this agreement by destroying all copies of the Programs. We have the right to\ + \ terminate your right to use the Programs if you fail to comply with any of the terms of\ + \ this agreement, in which case you shall destroy all copies of the Programs.\n\nRelationship\ + \ Between the Parties\n\nThe relationship between you and us is that of licensee/licensor.\ + \ Neither party will represent that it has any authority to assume or create any obligation,\ + \ express or implied, on behalf of the other party, nor to represent the other party as\ + \ agent, employee, franchisee, or in any other capacity. Nothing in this agreement shall\ + \ be construed to limit either party's right to independently develop or distribute software\ + \ that is functionally similar to the other party's products, so long as proprietary information\ + \ of the other party is not included in such software.\n\nOpen Source\n\n\"Open Source\"\ + \ software - software available without charge for use, modification and distribution -\ + \ is often licensed under terms that require the user to make the user's modifications to\ + \ the Open Source software or any software that the user 'combines' with the Open Source\ + \ software freely available in source code form. If you use Open Source software in conjunction\ + \ with the Programs, you must ensure that your use does not: (i) create, or purport to create,\ + \ obligations of us with respect to the Oracle Programs; or (ii) grant, or purport to grant,\ + \ to any third party any rights to or immunities under our intellectual property or proprietary\ + \ rights in the Oracle Programs. For example, you may not develop a software program using\ + \ the Oracle Programs and an Open Source program where such use results in a program file(s)\ + \ that contains code from both the Oracle Programs and the Open Source program (including\ + \ without limitation libraries) if the Open Source program is licensed under a license that\ + \ requires any \"modifications\" be made freely available. You also may not combine the\ + \ Oracle Programs with programs licensed under the GNU General Public License (\"GPL\")\ + \ in any manner that could cause, or could be interpreted or asserted to cause, the Oracle\ + \ program or any modifications thereto to become subject to the terms of the GPL.\n\nEntire\ + \ Agreement\n\nYou agree that this agreement is the complete agreement for the Programs\ + \ and licenses, and this agreement supersedes all prior or contemporaneous agreements or\ + \ representations. If any term of this agreement is found to be invalid or unenforceable,\ + \ the remaining provisions will remain effective.\n\nLast updated: 11 July 2014\n\nShould\ + \ you have any questions concerning this License Agreement, or if you desire to contact\ + \ Oracle for any reason, please write: \nOracle America, Inc. \n500 Oracle Parkway, \nRedwood\ + \ City, CA 94065\n\nOracle may contact you to ask if you had a satisfactory experience installing\ + \ and using this OTN software download." json: otn-dev-dist-2014.json - yml: otn-dev-dist-2014.yml + yaml: otn-dev-dist-2014.yml html: otn-dev-dist-2014.html - text: otn-dev-dist-2014.LICENSE + license: otn-dev-dist-2014.LICENSE - license_key: otn-dev-dist-2016 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-otn-dev-dist-2016 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Oracle Technology Network License Agreement\n\nOracle is willing to authorize Your\ + \ access to software associated with this License Agreement (\"Agreement\") only upon the\ + \ condition that You accept that this Agreement governs Your use of the software. By selecting\ + \ the \"Accept License Agreement\" button or box (or the equivalent) or installing or using\ + \ the Programs You indicate Your acceptance of this Agreement and Your agreement, as an\ + \ authorized representative of Your company or organization (if being acquired for use by\ + \ an entity) or as an individual, to comply with the license terms that apply to the software\ + \ that You wish to download and access. If You are not willing to be bound by this Agreement,\ + \ do not select the \"Accept License Agreement\" button or box (or the equivalent) and do\ + \ not download or access the software.\n\nDefinitions \n\"Oracle\" refers to Oracle America,\ + \ Inc. \"You\" and \"Your\" refers to (a) a company or organization (each an \"Entity\"\ + ) accessing the Programs, if use of the Programs will be on behalf of such Entity; or (b)\ + \ an individual accessing the Programs, if use of the Programs will not be on behalf of\ + \ an Entity. \"Contractors\" refers to Your agents and contractors (including, without limitation,\ + \ outsourcers). \"Program(s)\" refers to Oracle software provided by Oracle pursuant to\ + \ this Agreement and any updates, error corrections, and/or Program Documentation provided\ + \ by Oracle. \"Program Documentation\" refers to Program user manuals and Program installation\ + \ manuals, if any. If available, Program Documentation may be delivered with the Programs\ + \ and/or may be accessed from www.oracle.com/documentation. \"Associated Product\" refers\ + \ to the Oracle product(s), if any, and as identified in the Programs documentation or on\ + \ the Programs download site, with which the Programs are intended to enable or enhance\ + \ interoperation with Your application(s). \"Separate Terms\" refers to separate license\ + \ terms that are specified in the Program Documentation, readmes or notice files and that\ + \ apply to Separately Licensed Third Party Technology. \"Separately Licensed Third Party\ + \ Technology\" refers to third party technology that is licensed under Separate Terms and\ + \ not under the terms of this Agreement.\n\nLicense Rights and Restrictions\nOracle grants\ + \ You a nonexclusive, nontransferable, limited license to, subject to the restrictions stated\ + \ in this Agreement, (a) internally use the Programs solely for the purposes of developing,\ + \ testing, prototyping and demonstrating Your applications, and running the Programs for\ + \ Your own internal business operations; and (b) redistribute unmodified Programs and Programs\ + \ Documentation pursuant to the Programs Redistribution section below. You may allow Your\ + \ Contractor(s) to use the Programs, provided they are acting on Your behalf to exercise\ + \ license rights granted in this Agreement and further provided that You are responsible\ + \ for their compliance with this Agreement in such use. You will have a written agreement\ + \ with Your Contractor(s) that strictly limits their right to use the Programs and that\ + \ otherwise protects Oracle’s intellectual property rights to the same extent as this Agreement.\ + \ You may make copies of the Programs to the extent reasonably necessary to exercise the\ + \ license rights granted in this Agreement. You may make one copy of the Programs for backup\ + \ purposes.\n\nFurther, You may not:\n\nremove or modify any Program markings or any notice\ + \ of Oracle’s or a licensor’s proprietary rights;\nuse the Programs to provide third party\ + \ training;\nassign this Agreement or distribute, give, or transfer the Programs or an interest\ + \ in them to any third party, except as expressly permitted in this Agreement (the foregoing\ + \ shall not be construed to limit the rights You may otherwise have with respect to Separately\ + \ Licensed Third Party Technology);\ncause or permit reverse engineering (unless required\ + \ by law for interoperability), disassembly or decompilation of the Programs; and\ndisclose\ + \ results of any Program benchmark tests without Oracle’s prior consent.\nThe Programs may\ + \ contain source code that, unless expressly licensed in this Agreement for other purposes\ + \ (for example, licensed under an open source license), is provided solely for reference\ + \ purposes pursuant to the terms of this Agreement and may not be modified.\n\nAll rights\ + \ not expressly granted in this Agreement are reserved by Oracle. If You want to use the\ + \ Programs or Your application for any purpose other than as expressly permitted under this\ + \ Agreement, You must obtain from Oracle or an Oracle reseller a valid Programs license\ + \ under a separate agreement permitting such use. However, You acknowledge that the Programs\ + \ may not be intended for production use and/or Oracle may not make a version of the Programs\ + \ available for production or other purposes; any development or other work You undertake\ + \ with the Programs is at Your sole risk.\n\nPrograms Redistribution \nWe grant You a nonexclusive,\ + \ nontransferable right to copy and distribute unmodified Programs and Programs Documentation\ + \ as part of and included in Your application that is intended to interoperate with the\ + \ Associated Product, if any, provided that You do not charge Your end users any additional\ + \ fees for the use of the Programs. Prior to distributing the Programs and Programs Documentation,\ + \ You shall require Your end users to execute an agreement binding them to terms, with respect\ + \ to the Programs and Programs Documentation, materially consistent and no less restrictive\ + \ than those contained in this section and the sections of this Agreement entitled \"License\ + \ Rights\" (except that the redistribution right granted to You shall not be included; Your\ + \ end users may not distribute Programs and Programs Documentation to any third parties),\ + \ \"Ownership and Restrictions,\" \"Export Controls,\" \"Disclaimer of Warranties and Exclusive\ + \ Remedies,\" \"No Technical Support\" (with respect to Oracle support; You may provide\ + \ Your own support for Programs at Your discretion), \"End of Agreement,\" \"Relationship\ + \ Between the Parties,\" \"Open Source Software,\" and \"U.S. Government End Users.\" You\ + \ must also include a provision stating that Your end users shall have no right to distribute\ + \ the Programs and Programs Documentation, and a provision specifying us as a third party\ + \ beneficiary of the agreement. You are responsible for obtaining these agreements with\ + \ Your end users.\n\nYou agree to: (a) defend and indemnify us against all claims and damages\ + \ caused by Your distribution of the Programs and Programs Documentation in breach of this\ + \ Agreement and/or failure to include the required contractual provisions in Your end user\ + \ agreement as stated above; (b) keep executed end user agreements and records of end user\ + \ information including name, address, date of distribution and identity of Programs distributed;\ + \ (c) allow us to inspect Your end user agreements and records upon request; and, (d) enforce\ + \ the terms of Your end user agreements so as to effect a timely cure of any end user breach,\ + \ and to notify us of any breach of the terms.\n\nOwnership\nOracle or its licensors retain\ + \ all ownership and intellectual property rights to the Programs.\n\nThird-Party Technology\ + \ \nThe Programs may contain or require the use of third party technology that is provided\ + \ with the Programs. Oracle may provide certain notices to You in Program Documentation,\ + \ readmes or notice files in connection with such third party technology. Third party technology\ + \ will be licensed to You either under the terms of this Agreement or, if specified in the\ + \ Program Documentation, readmes or notice files, under Separate Terms. Your rights to use\ + \ Separately Licensed Third Party Technology under Separate Terms are not restricted in\ + \ any way by this Agreement. However, for clarity, notwithstanding the existence of a notice,\ + \ third party technology that is not Separately Licensed Third Party Technology shall be\ + \ deemed part of the Programs and is licensed to You under the terms of this Agreement.\n\ + \nSource Code for Open Source Software \nFor software that You receive from Oracle in binary\ + \ form that is licensed under an open source license that gives You the right to receive\ + \ the source code for that binary, You can obtain a copy of the applicable source code from\ + \ https://oss.oracle.com/sources/ or http://www.oracle.com/goto/opensourcecode. If the source\ + \ code for such software was not provided to You with the binary, You can also receive a\ + \ copy of the source code on physical media by submitting a written request pursuant to\ + \ the instructions in the \"Written Offer for Source Code\" section of the latter website.\n\ + \nExport Controls \nExport laws and regulations of the United States and any other relevant\ + \ local export laws and regulations apply to the Programs . You agree that such export control\ + \ laws govern Your use of the Programs (including technical data) and any services deliverables\ + \ provided under this agreement, and You agree to comply with all such export laws and regulations\ + \ (including \"deemed export\" and \"deemed re-export\" regulations). You agree that no\ + \ data, information, program and/or materials resulting from Programs or services (or direct\ + \ products thereof) will be exported, directly or indirectly, in violation of these laws,\ + \ or will be used for any purpose prohibited by these laws including, without limitation,\ + \ nuclear, chemical, or biological weapons proliferation, or development of missile technology.\ + \ Accordingly, You confirm:\n\nYou will not download, provide, make available or otherwise\ + \ export or re-export the Programs, directly or indirectly, to countries prohibited by applicable\ + \ laws and regulations nor to citizens, nationals or residents of those countries.\nYou\ + \ are not listed on the United States Department of Treasury lists of Specially Designated\ + \ Nationals and Blocked Persons, Specially Designated Terrorists, and Specially Designated\ + \ Narcotic Traffickers, nor are You listed on the United States Department of Commerce Table\ + \ of Denial Orders.\nYou will not download or otherwise export or re-export the Programs,\ + \ directly or indirectly, to persons on the above mentioned lists.\nYou will not use the\ + \ Programs for, and will not allow the Programs to be used for, any purposes prohibited\ + \ by applicable law, including, without limitation, for the development, design, manufacture\ + \ or production of nuclear, chemical or biological weapons of mass destruction.\nInformation\ + \ Collection \nThe Programs’ installation and/or auto-update processes, if any, may transmit\ + \ a limited amount of data to Oracle or its service provider about those processes to help\ + \ Oracle understand and optimize them. Oracle does not associate the data with personally\ + \ identifiable information. Refer to Oracle’s Privacy Policy at www.oracle.com/privacy.\n\ + \nDisclaimer of Warranties; Limitation of Liability\nTHE PROGRAMS ARE PROVIDED \"AS IS\"\ + \ WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED,\ + \ INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\ + \ PARTICULAR PURPOSE, OR NONINFRINGEMENT .\n\nIN NO EVENT WILL ORACLE BE LIABLE FOR ANY\ + \ INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS\ + \ OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN\ + \ AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\ + \ DAMAGES. ORACLE’S ENTIRE LIABILITY FOR DAMAGES UNDER THIS AGREEMENT SHALL IN NO EVENT\ + \ EXCEED ONE THOUSAND DOLLARS (U.S. $1,000) .\n\nNo Technical Support \nUnless Oracle support\ + \ for the Programs, if any, is expressly included in a separate, current support agreement\ + \ between You and Oracle, Oracle’s technical support organization will not provide technical\ + \ support, phone support, or updates to You for the Programs provided under this Agreement.\n\ + \nAudit; Termination \nOracle may audit Your use of the Programs. You may terminate this\ + \ Agreement by destroying all copies of the Programs. This Agreement shall automatically\ + \ terminate without notice if You fail to comply with any of the terms of this Agreement,\ + \ in which case You shall promptly destroy all copies of the Programs.\n\nU.S. Government\ + \ End Users \nPrograms and/or Programs Documentation delivered to U.S. Government end users\ + \ are \"commercial computer software\" pursuant to the applicable Federal Acquisition Regulation\ + \ and agency-specific supplemental regulations. As such, use, duplication, disclosure, modification,\ + \ and adaptation of the Programs and/or Programs Documentation shall be subject to the license\ + \ terms and license restrictions set forth in this Agreement. No other rights are granted\ + \ to the U.S. Government.\n\nRelationship Between the Parties \nOracle is an independent\ + \ contractor and we agree that no partnership, joint venture, or agency relationship exists\ + \ between us. We each will be responsible for paying our own employees, including employment\ + \ related taxes and insurance.. Nothing in this agreement shall be construed to limit either\ + \ party's right to independently develop or distribute software that is functionally similar\ + \ to the other party's products, so long as proprietary information of the other party is\ + \ not included in such software.\n\nEntire Agreement; Governing Law \nYou agree that this\ + \ Agreement is the complete agreement for the Programs and this Agreement supersedes all\ + \ prior or contemporaneous agreements or representations, including any clickwrap, shrinkwrap\ + \ or similar licenses, or license agreements for prior versions of the Programs. This Agreement\ + \ may not be modified and the rights and restrictions may not be altered or waived except\ + \ in a writing signed by authorized representatives of You and of Oracle. If any term of\ + \ this Agreement is found to be invalid or unenforceable, the remaining provisions will\ + \ remain effective.\n\nThis Agreement is governed by the substantive and procedural laws\ + \ of the State of California, USA, and You and Oracle agree to submit to the exclusive jurisdiction\ + \ of, and venue in, the courts of San Francisco or Santa Clara counties in California in\ + \ any dispute arising out of or relating to this Agreement.\n\nNotices \nShould you have\ + \ any questions concerning this License Agreement, or if you desire to contact Oracle for\ + \ any reason, please write:\n\nOracle America, Inc.\n500 Oracle Parkway \nRedwood City,\ + \ CA 94065\n\nOracle Employees: Under no circumstances are Oracle Employees authorized to\ + \ download software for the purpose of distributing it to customers. Oracle products are\ + \ available to employees for internal use or demonstration purposes only. In keeping with\ + \ Oracle's trade compliance obligations under U.S. and applicable multilateral law, failure\ + \ to comply with this policy could result in disciplinary action up to and including termination.\n\ + \nLast updated: 11 August 2016" json: otn-dev-dist-2016.json - yml: otn-dev-dist-2016.yml + yaml: otn-dev-dist-2016.yml html: otn-dev-dist-2016.html - text: otn-dev-dist-2016.LICENSE + license: otn-dev-dist-2016.LICENSE - license_key: otn-early-adopter-2018 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-otn-early-adopter-2018 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Oracle Technology Network Early Adopter License Agreement for Oracle Solaris\n\nOracle\ + \ is willing to authorize Your access to Oracle Solaris pre-GA software under this License\ + \ Agreement (“Agreement”) only upon the condition that You accept that this Agreement governs\ + \ Your use of the pre-GA Oracle Solaris and any updated versions of such pre-GA software.\ + \ By selecting the “Accept License Agreement” button or box (or the equivalent) or installing\ + \ or using the Programs You indicate Your acceptance of this Agreement and Your agreement,\ + \ as an authorized representative of Your company or organization (if being acquired for\ + \ use by an entity) or as an individual, to comply with the license terms that apply to\ + \ the software that You wish to download and access. If You are not willing to be bound\ + \ by this Agreement, do not select the “Accept License Agreement” button or box (or the\ + \ equivalent) and do not download or access the software.\n\nDefinitions\n\n\"Oracle\" refers\ + \ to Oracle America, Inc. \"You\" and \"Your\" refers to (a) a company or organization (each\ + \ an “Entity”) accessing the Programs, if use of the Programs will be on behalf of such\ + \ Entity; or (b) an individual accessing the Programs, if use of the Programs will not be\ + \ on behalf of an Entity. “Contractors” refers to Your agents and contractors (including,\ + \ without limitation, outsourcers). \"Program(s)\" refers to Oracle software provided by\ + \ Oracle pursuant to this Agreement and any updates, error corrections, and/or Program Documentation\ + \ provided by Oracle. “Program Documentation” refers to Program user manuals and Program\ + \ installation manuals, if any. If available, Program Documentation may be delivered with\ + \ the Programs and/or may be accessed from https://docs.oracle.com/en/ . “Separate Terms”\ + \ refers to separate license terms that are specified in the Program Documentation, readmes\ + \ or notice files and that apply to Separately Licensed Third Party Technology. “Separately\ + \ Licensed Third Party Technology” refers to third party technology that is licensed under\ + \ Separate Terms and not under the terms of this Agreement. “Supplemental Programs” refer\ + \ to any supplemental Oracle production software as may be provided by Oracle for operation\ + \ of the Programs. If included, Supplemental Programs are listed in Exhibit A to this Agreement.\ + \ Programs and any Supplemental Programs are collectively “Oracle Technology”. \"License\"\ + \ refers to Your right to use the Oracle Technology under the terms of this Agreement.\n\ + \nLicense Rights and Restrictions\n\nOracle grants You a revocable, nonexclusive, nontransferable,\ + \ limited license to internally (a) use three (3) copies of the binary portions of the Oracle\ + \ Technology, subject to the restrictions stated in this Agreement, solely for the purpose\ + \ of non-production and non-commercial evaluation and testing of the Oracle Technology,\ + \ including developing no more than a single prototype of each of Your applications; and\ + \ (b) if provided by Oracle at its sole discretion, view the source code portions of the\ + \ Programs internally for the purposes of evaluation and testing only. You may allow Your\ + \ Contractor(s) to use the Oracle Technology , provided they are acting on Your behalf to\ + \ exercise license rights granted in this Agreement and further provided that You are responsible\ + \ for their compliance with this Agreement in such use. You will have a written agreement\ + \ with Your Contractor(s) that strictly limits their right to use the Oracle Technology\ + \ and that otherwise protects Oracle’s intellectual property rights to the same extent as\ + \ this Agreement. You may make copies of the Oracle Technology to the extent reasonably\ + \ necessary to exercise the license rights granted in this Agreement. The Oracle Technology\ + \ may be installed on three (3) computers only, and used by Your employees or agents in\ + \ the operating environment identified by Oracle. You may make one copy of the Oracle Technology\ + \ for backup purposes.\n\nFurther, You may not:\n\nremove or modify any Oracle Technology\ + \ markings or any notice of Oracle’s or a licensor’s proprietary rights;\nmake the Oracle\ + \ Technology available in any manner to any third party (other than Contractors acting on\ + \ Your behalf as set forth in this Agreement);\nuse the Oracle Technology to provide third\ + \ party training;\nassign this Agreement or distribute, give, or transfer the Oracle Technology\ + \ or an interest in them to any third party, except as expressly permitted in this Agreement\ + \ for Contractors (the foregoing shall not be construed to limit the rights You may otherwise\ + \ have with respect to Separately Licensed Third Party Technology);\ncause or permit reverse\ + \ engineering (unless required by law for interoperability), disassembly or decompilation\ + \ of the Oracle Technology; and\ndisclose results of any Oracle Technology benchmark tests\ + \ without Oracle’s prior consent.\nThe Oracle Technology may contain source code that, unless\ + \ expressly licensed in this Agreement for other purposes (for example, licensed under an\ + \ open source license), is provided solely for reference purposes pursuant to the terms\ + \ of this Agreement and may not be modified.\n\nAll rights not expressly granted in this\ + \ Agreement are reserved by Oracle. If You want to use the Oracle Technology or Your application\ + \ for any purpose other than as expressly permitted under this Agreement, You must obtain\ + \ from Oracle or an Oracle reseller valid Oracle Technology licenses under a separate agreement\ + \ permitting such use. However, You acknowledge that the Oracle Technology may not be intended\ + \ for production use and/or Oracle may not make a version of the Oracle Technology available\ + \ for production or other purposes; any development or other work You undertake with the\ + \ Oracle Technology is at Your sole risk.\n\nYou acknowledge that (1) the Programs are not\ + \ generally available and may have defects, security vulnerabilities, or other deficiencies\ + \ that may not and/or cannot be corrected by Oracle and are subject to change at Oracle’s\ + \ sole discretion; and (2) Oracle may not produce a production release version of the Programs\ + \ and any development efforts undertaken by You are at Your own risk. Oracle may audit Your\ + \ use of the Oracle Technology.\n\nThe Oracle Technology will either be hosted by Oracle\ + \ or provided to You. In the event that the Oracle Technology are provided to You in a hosted\ + \ environment, Oracle may provide certain passwords and/or other access information to enable\ + \ You to access the Oracle Technology. These passwords and/or access information shall be\ + \ and are Oracle Confidential Information (as further defined below) under the terms of\ + \ this agreement and shall be used solely for the purpose of accessing the Oracle Technology\ + \ for the evaluation and testing purposes described above. Any hosted instance of the Oracle\ + \ Technology is provided as is and without warranty. Oracle makes no assurances that any\ + \ data loaded into the hosted instance will be secured or that such data will remain confidential.\ + \ Further, Oracle, at its discretion, (a) may access, monitor, and/or review Your activity\ + \ and data in the hosted instance, and (b) may delete Your files within the hosted instance.\ + \ Accordingly, Oracle advises You not to place any personal information or other production\ + \ data into the hosted instance. You agree to take all reasonable steps to prevent improper\ + \ or unauthorized access to or use of the Oracle Technology.\n\nOwnership\n\nOracle or its\ + \ licensors retain all ownership and intellectual property rights to the Oracle Technology\ + \ .\n\nThird-Party Technology\n\nThe Oracle Technology may contain or require the use of\ + \ third party technology that is provided with the Oracle Technology. Oracle may provide\ + \ certain notices to You in Program Documentation, readmes or notice files in connection\ + \ with such third party technology. Third party technology will be licensed to You either\ + \ under the terms of this Agreement or, if specified in the Program Documentation, readmes\ + \ or notice files, under Separate Terms. Your rights to use Separately Licensed Third Party\ + \ Technology under Separate Terms are not restricted in any way by this Agreement. However,\ + \ for clarity, notwithstanding the existence of a notice, third party technology that is\ + \ not Separately Licensed Third Party Technology shall be deemed part of the Oracle Technology\ + \ and is licensed to You under the terms of this Agreement.\n\nSource Code for Open Source\ + \ Software\n\nFor software that you receive from Oracle in binary form that is licensed\ + \ under an open source license that gives you the right to receive the source code for that\ + \ binary, you can obtain a copy of the applicable source code from https://oss.oracle.com/sources/\ + \ or http://www.oracle.com/goto/opensourcecode. If the source code for such software was\ + \ not provided to you with the binary, you can also receive a copy of the source code on\ + \ physical media by submitting a written request pursuant to the instructions in the \"\ + Written Offer for Source Code\" section of the latter website.\n\nFeedback\n\n”Feedback”\ + \ shall mean any input provided to Oracle, in any manner, regarding Oracle’s products, documentation\ + \ and/or services, including changes or suggested changes to Oracle’s current or future\ + \ products, documentation, and/or services, and benchmark test results. You grant to Oracle\ + \ a worldwide, royalty-free, non-exclusive, perpetual, and irrevocable right to use Feedback\ + \ for any purpose, including but not limited to, incorporation of such Feedback into the\ + \ Oracle Technology or other software products without compensation to You. Any Feedback\ + \ shall be Oracle Confidential Information. You shall not be identified with Feedback if\ + \ Oracle provides it to a third party.\n\nExport Controls\n\nExport laws and regulations\ + \ of the United States and any other relevant local export laws and regulations apply to\ + \ the Oracle Technology . You agree that such export control laws govern Your use of the\ + \ Oracle Technology (including technical data) and any services deliverables provided under\ + \ this agreement, and You agree to comply with all such export laws and regulations (including\ + \ \"deemed export\" and \"deemed re-export\" regulations). You agree that no data, information,\ + \ program and/or materials resulting from Oracle Technology or services (or direct products\ + \ thereof) will be exported, directly or indirectly, in violation of these laws, or will\ + \ be used for any purpose prohibited by these laws including, without limitation, nuclear,\ + \ chemical, or biological weapons proliferation, or development of missile technology. Accordingly,\ + \ You confirm:\n\nYou will not download, provide, make available or otherwise export or\ + \ re-export the Oracle Technology, directly or indirectly, to countries prohibited by applicable\ + \ laws and regulations nor to citizens, nationals or residents of those countries.\nYou\ + \ are not listed on the United States Department of Treasury lists of Specially Designated\ + \ Nationals and Blocked Persons, Specially Designated Terrorists, and Specially Designated\ + \ Narcotic Traffickers, nor are You listed on the United States Department of Commerce Table\ + \ of Denial Orders.\nYou will not download or otherwise export or re-export the Oracle Technology,\ + \ directly or indirectly, to persons on the above mentioned lists.\nYou will not use the\ + \ Oracle Technology for, and will not allow the Oracle Technology to be used for, any purposes\ + \ prohibited by applicable law, including, without limitation, for the development, design,\ + \ manufacture or production of nuclear, chemical or biological weapons of mass destruction.\n\ + Information Collection\n\nThe Oracle Technology’s ’ installation and/or auto-update processes,\ + \ if any, may transmit a limited amount of data to Oracle or its service provider about\ + \ those processes to help Oracle understand and optimize them. Further, the Oracle Technology\ + \ may collect certain technical information regarding Your use of the Oracle Technology\ + \ for the purpose of improving the functionality of the Oracle Technology. Except as set\ + \ forth above with respect to Oracle-hosted instances of the Oracle Technology, Oracle will\ + \ comply with its Privacy Policy in effect as data collection services are performed, refer\ + \ to Oracle’s Privacy Policy at http://www.oracle.com/legal/privacy/privacy-policy.html\ + \ .\n\nOracle Confidential Information\n\n“Oracle Confidential Information” includes the\ + \ Software, any information related to the Software, and Feedback. Oracle Confidential Information\ + \ shall not include information which: (a) is or becomes a part of the public domain through\ + \ no act or omission of the other party; or (b) was in the other party’s lawful possession\ + \ prior to the disclosure and had not been obtained by the other party either directly or\ + \ indirectly from the disclosing party; or (c) is lawfully disclosed to the other party\ + \ by a third party without restriction on disclosure; or (d) except for Feedback (defined\ + \ below), is independently developed by You.\n\nYou agree, both during the term of this\ + \ Agreement and for a period of three years after termination of this Agreement and of all\ + \ licenses granted hereunder, to hold Oracle Confidential Information in confidence. You\ + \ agree not to make Oracle’s Confidential Information available in any form to any unauthorized\ + \ third parties. You agree to take all reasonable steps to ensure that Confidential Information\ + \ is not disclosed or distributed by Your employees or agents in violation of the provisions\ + \ of this Agreement.\n\nDisclaimer of Warranties; Limitation of Liability\n\nTHE ORACLE\ + \ TECHNOLOGY IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS\ + \ ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES\ + \ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT .\n\nIN NO EVENT\ + \ WILL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL\ + \ DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR\ + \ ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE’S ENTIRE LIABILITY FOR DAMAGES UNDER THIS AGREEMENT\ + \ SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (USD $1,000) .\n\nNo Technical Support\n\ + \nUnless Oracle support for the Oracle Technology, if any, is expressly included in a separate,\ + \ current support agreement between You and Oracle, Oracle’s technical support organization\ + \ will not provide technical support, phone support, or updates to You for the Oracle Technology\ + \ provided under this Agreement.\n\nAudit; Termination\n\nOracle may audit Your use of the\ + \ Oracle Technology. You may terminate this Agreement by destroying all copies of the Oracle\ + \ Technology. This Agreement shall automatically terminate without notice if You fail to\ + \ comply with any of the terms of this Agreement, in which case You shall promptly destroy\ + \ all copies of the Oracle Technology.\n\nRelationship Between the Parties \n\nOracle is\ + \ an independent contractor and we agree that no partnership, joint venture, or agency relationship\ + \ exists between us. We each will be responsible for paying our own employees, including\ + \ employment related taxes and insurance.. Nothing in this agreement shall be construed\ + \ to limit either party's right to independently develop or distribute software that is\ + \ functionally similar to the other party's products, so long as proprietary information\ + \ of the other party is not included in such software.\n\nEntire Agreement; Governing Law\n\ + \nYou agree that this Agreement is the complete agreement for the Oracle Technology and\ + \ this Agreement supersedes all prior or contemporaneous agreements or representations,\ + \ including any clickwrap, shrinkwrap or similar licenses, or license agreements for prior\ + \ versions of the Oracle Technology This Agreement may not be modified and the rights and\ + \ restrictions may not be altered or waived except in a writing signed by authorized representatives\ + \ of You and of Oracle. If any term of this Agreement is found to be invalid or unenforceable,\ + \ the remaining provisions will remain effective.\n\nThis Agreement is governed by the substantive\ + \ and procedural laws of the State of California, USA, and You and Oracle agree to submit\ + \ to the exclusive jurisdiction of, and venue in, the courts of San Francisco or Santa Clara\ + \ counties in California in any dispute arising out of or relating to this Agreement.\n\n\ + Notices\n\nShould you have any questions concerning this License Agreement, or if you desire\ + \ to contact Oracle for any reason, please write:\n\nOracle America, Inc.\n500 Oracle Parkway\n\ + Redwood City, CA 94065\n\nOracle Employees: Under no circumstances are Oracle Employees\ + \ authorized to download software for the purpose of distributing it to customers. Oracle\ + \ products are available to employees for internal use or demonstration purposes only. In\ + \ keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral\ + \ law, failure to comply with this policy could result in disciplinary action up to and\ + \ including termination.\n\nLast updated: 17 January 2018" json: otn-early-adopter-2018.json - yml: otn-early-adopter-2018.yml + yaml: otn-early-adopter-2018.yml html: otn-early-adopter-2018.html - text: otn-early-adopter-2018.LICENSE + license: otn-early-adopter-2018.LICENSE - license_key: otn-early-adopter-development + category: Proprietary Free spdx_license_key: LicenseRef-scancode-otn-early-adopter-development other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Oracle Technology Network Early Adopter Development License Agreement\n\nEXPORT CONTROLS\n\ + Export laws and regulations of the United States and any other relevant local export laws\ + \ and regulations apply to the Oracle Technology. You agree that such export control laws\ + \ govern your use of the Oracle Technology (including technical data) and any services deliverables\ + \ provided under this agreement, and you agree to comply with all such export laws and regulations\ + \ (including \"deemed export\" and \"deemed re-export\" regulations). You agree that no\ + \ data, information, program and/or materials resulting from services (or direct product\ + \ thereof) will be exported, directly or indirectly, in violation of these laws, or will\ + \ be used for any purpose prohibited by these laws including, without limitation, nuclear,\ + \ chemical, or biological weapons proliferation, or development of missile technology.\n\ + \nAccordingly, you confirm:\n\n-You will not download, provide, make available or otherwise\ + \ export or re-export the Oracle Technology, directly or indirectly, to countries prohibited\ + \ by applicable laws and regulations nor to citizens, nationals or residents of those countries.\n\ + \n-You are not listed on the United States Department of Treasury lists of Specially Designated\ + \ Nationals and Blocked Persons, Specially Designated Terrorists, and Specially Designated\ + \ Narcotic Traffickers, nor are you listed on the United States Department of Commerce Table\ + \ of Denial Orders.\n\n- You will not download or otherwise export or re-export the Oracle\ + \ Technology, directly or indirectly, to persons on the above mentioned lists.\n\n- You\ + \ will not use the Oracle Technology for, and will not allow the Oracle Technology to be\ + \ used for, any purposes prohibited by applicable law, including, without limitation, for\ + \ the development, design, manufacture or production of nuclear, chemical or biological\ + \ weapons of mass destruction.\n\nOracle Employees: Under no circumstances are Oracle Employees\ + \ authorized to download software for the purpose of distributing it to customers. Oracle\ + \ products are available to employees for internal use or demonstration purposes only. In\ + \ keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral\ + \ law, failure to comply with this policy could result in disciplinary action up to and\ + \ including termination.\n\n \n\nNote: You are bound by the Oracle Technology Network (\"\ + OTN\") Early Adopter Development License Agreement (\"OTN License Agreement\") terms. The\ + \ OTN License Agreement terms also apply to all updates You receive under Your Technology\ + \ Track subscription.\n\nThe OTN License Agreement terms below supercede any shrinkwrap\ + \ license on the OTN Technology Track software CDs and previous OTN License terms (including\ + \ the Oracle Program License as modified by the OTN Program Use Certificate).\n\nPLEASE\ + \ READ THE FOLLOWING LICENSE AGREEMENT TERMS AND CONDITIONS CAREFULLY BEFORE ACCESSING,\ + \ DOWNLOADING, INSTALLING OR USING THE ORACLE TECHNOLOGY. THESE TERMS AND CONDITIONS CONSTITUTE\ + \ A LEGAL AGREEMENT BETWEEN YOU AND ORACLE .\n\nOracle Technology Network Early Adopter\ + \ Development License Agreement\n\n\"Oracle,\" We,\" \"Us,\" and \"Our\" refers to Oracle\ + \ America, Inc., for and on behalf of itself and its subsidiaries and affiliates under common\ + \ control. \"You\" and \"Your\" refers to the individual or entity, for which you are an\ + \ authorized representative with full authority to enter into this agreement on behalf of,\ + \ that wishes to use the Programs. \"Programs\" refers to the pre-production version of\ + \ the Oracle software product You wish to access and use or download and use, including\ + \ program documentation, if any. \"Supplemental Programs\" refer to any supplemental Oracle\ + \ production software as may be provided by Oracle for operation of the Programs. If included,\ + \ Supplemental Programs are listed in Exhibit A to this Agreement. Programs and any Supplemental\ + \ Programs are collectively \"Oracle Technology\". \"License\" refers to Your right to use\ + \ the Oracle Technology under the terms of this license agreement. \"Oracle Confidential\ + \ Information\" includes the Software, any information related to the Software and Feedback.\ + \ Oracle Confidential Information shall not include information which: (a) is or becomes\ + \ a part of the public domain through no act or omission of the other party; or (b) was\ + \ in the other party’s lawful possession prior to the disclosure and had not been obtained\ + \ by the other party either directly or indirectly from the disclosing party; or (c) is\ + \ lawfully disclosed to the other party by a third party without restriction on disclosure;\ + \ or (d) except for Feedback, is independently developed by You. You agree, both during\ + \ the term of this Agreement and for a period of three years after termination of this Agreement\ + \ and of all licenses granted hereunder, to hold Oracle’s Confidential Information in confidence.\ + \ You agree not to make Oracle’s Confidential Information available in any form to any unauthorized\ + \ third parties. Company agrees to take all reasonable steps to ensure that Confidential\ + \ Information is not disclosed or distributed by its employees or agents in violation of\ + \ the provisions of this Agreement.\n\nThis agreement is governed by California law, except\ + \ for that body of laws related to the conflict of laws. You agree to submit to the exclusive\ + \ jurisdiction of, and venue in, the courts located in San Francisco or Santa Clara counties\ + \ in California in any dispute arising out of or relating to this agreement or the Oracle\ + \ Technology.\n\nIn order to use the Oracle Technology, You must first agree to the license\ + \ terms below by selecting the \"Accept License Agreement\" (or the equivalent) button below.\ + \ If You do not or cannot agree to these license terms, You are not permitted to access,\ + \ download or use the Oracle Technology.\n\nLicense Rights\nWe grant You a revocable, nonexclusive,\ + \ nontransferable, royalty-free and limited right to (a) use one (1) copy of the binary\ + \ portions of the Programs and any Supplemental Programs for the sole purpose of internal\ + \ non-production and non-commercial evaluation and testing of the Programs, including, developing\ + \ no more than a single prototype of each of Your applications; and (b) if provided by Us\ + \ at our sole discretion, view the source code portions of the Programs internally for the\ + \ purposes of evaluation and testing only (collectively, \"Authorized Use\").\n\nAll rights\ + \ not expressly granted above are hereby reserved. If You want to use the Oracle Technology\ + \ for any purpose other than as permitted under this agreement, including but not limited\ + \ to distribution of the Oracle Technology or the application You develop or any use of\ + \ the Oracle Technology or the application You develop for Your internal business purposes\ + \ (other than the Authorized Use), You must obtain a valid Oracle license permitting such\ + \ use.\n\nYou acknowledge that (1) the Programs are not generally available and may have\ + \ defects, security vulnerabilities, or other deficiencies that may not and/or cannot be\ + \ corrected by Us and are subject to change at Our sole discretion; and (2) We may not produce\ + \ a production release version of the Programs and any development efforts undertaken by\ + \ You are at Your own risk. We may audit Your use of the Oracle Technology.\n\nThe Oracle\ + \ Technology will either be hosted by Oracle or provided to You. In the event that the Oracle\ + \ Technology are provided to You in a hosted environment, Oracle may provide certain passwords\ + \ and/or other access information to enable You to access the Oracle Technology. These passwords\ + \ and/or access information shall be and are Oracle Confidential Information under the terms\ + \ of this agreement and shall be used solely for the purpose of accessing the Oracle Technology\ + \ for the evaluation and testing purposes described above. Any hosted instance of the Oracle\ + \ Technology is provided as is and without warranty. Oracle makes no assurances that any\ + \ data loaded into the hosted instance will be secured or that such data will remain confidential.\ + \ Further, Oracle, at its discretion, (a) may access, monitor, and/or review Your activity\ + \ and data in the hosted instance, and (b) may delete Your files within the hosted instance.\ + \ Accordingly, Oracle advises You not to place any personal information or other production\ + \ data into the hosted instance. You agree to take all reasonable steps to prevent improper\ + \ or unauthorized access to or use of the Oracle Technology.\n\nCollection of Information\n\ + \nThe Oracle Technology may collect certain technical information regarding Your use of\ + \ the Oracle Technology for the purpose of improving the functionality of the Oracle Technology.\ + \ Except as set forth above with respect to Oracle-hosted instances of the Oracle Technology,\ + \ Oracle will comply with its Privacy Policy in effect as data collection services are performed,\ + \ which is available at http://www.oracle.com/us/legal/privacy/index.html.\n\nOwnership\ + \ and Restrictions\nWe retain all ownership and intellectual property rights in the Oracle\ + \ Technology. The Oracle Technology may be accessed from the hosted environment or if the\ + \ Oracle Technology are provided to You, the Oracle Technology may be installed on one computer\ + \ only, and used by Your employees in the operating environment identified by Us. You may\ + \ make one copy of the Oracle Technology for backup purposes.\n\nThe license grant set forth\ + \ above is subject to the following additional specific agreements and covenants:\n\n(i)\ + \ You shall not use the Oracle Technology for training, commercial time-sharing or service\ + \ bureau use;\n\n(ii) You agree that it will not make copies of the Oracle Technology except\ + \ for backup purposes;\n\n(iii) You agree not to cause or permit the disassembly, reverse\ + \ compilation, or reverse engineering of the Oracle Technology, except as otherwise specified\ + \ by law; and\n\n(iv) You shall not remove any product identification, copyright notices,\ + \ or other notices or proprietary restrictions from the Oracle Technology.\n\nFeedback\n\ + \n\"Feedback\" shall mean any input provided to Us, in any manner, regarding Oracle’s products,\ + \ documentation and/or services, including changes or suggested changes to Oracle’s current\ + \ or future products, documentation, and/or services, and benchmark test results. You grant\ + \ to Oracle a worldwide, royalty-free, non-exclusive, perpetual, and irrevocable right to\ + \ use Feedback for any purpose, including but not limited to, incorporation of such Feedback\ + \ into the Software or other software products without compensation to You. Any Feedback\ + \ shall be Oracle Confidential Information. Company shall not be identified with Feedback\ + \ if Oracle provides it to a third party.\n\nExport\nYou agree to comply fully with export\ + \ laws and regulations of the United States and any other applicable export laws (\"Export\ + \ Laws\") to assure that neither the Software, Confidential Information nor any direct product\ + \ thereof are: (1) exported, directly or indirectly, in violation of this Agreement or\ + \ Export Laws; or (2) used for any purposes prohibited by the Export Laws, including, without\ + \ limitation, nuclear, chemical, or biological weapons proliferation, or development of\ + \ missile technology. \n\nDisclaimer of Warranty and Exclusive Remedies\nTHE ORACLE TECHNOLOGY\ + \ IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND. WE FURTHER DISCLAIM ALL WARRANTIES,\ + \ EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY,\ + \ SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, ACCURACY, TIMELINESS OR NONINFRINGEMENT.\n\ + \nIN NO EVENT SHALL WE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL\ + \ DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR\ + \ ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF WE HAVE BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES. OUR ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN\ + \ NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000).\n\nAdditional Trial Programs\nWe may\ + \ include additional trial programs with the Programs licensed under this agreement which\ + \ You download or access in the hosted environment. You will have 30 days from the delivery\ + \ date or hosted environment access date to evaluate these additional trial programs. Any\ + \ use of these trial programs after the 30 day trial period requires You to obtain the applicable\ + \ license. Any additional trial programs are provided \"as is\" and We do not provide technical\ + \ support or any warranties for these programs.\n\nNo Technical Support\nOur technical support\ + \ organization will not provide technical support, phone support, or updates to You for\ + \ the Oracle Technology licensed under this agreement.\n\nEnd of Agreement\nThis agreement,\ + \ and Your right to use the Programs, will be terminated: (i) automatically upon the general\ + \ commercial availability of the Programs, or six months from the date You download the\ + \ Programs, whichever is first to occur, in which case You shall cease using and destroy\ + \ all copies of the Oracle Technology in Your possession or control; (ii) by You, by ceasing\ + \ to use and destroying all copies of the Oracle Technology in Your possession or control;\ + \ or, (iii) by Us if You fail to comply with any of the terms of this agreement, in which\ + \ case You shall cease using and destroy all copies of the Oracle Technology in Your possession\ + \ or control.\n\nRelationship Between the Parties\nThe relationship between You and Us is\ + \ that of licensee/licensor. Neither party will represent that it has any authority to assume\ + \ or create any obligation, express or implied, on behalf of the other party, nor to represent\ + \ the other party as agent, employee, franchisee, or in any other capacity. Nothing in this\ + \ agreement shall be construed to limit either party's right to independently develop or\ + \ distribute software that is functionally similar to the other party's products, so long\ + \ as proprietary information of the other party is not included in such software. \n\n\ + Third-Party Technology\n\nThe Oracle Technology may be distributed to You with third party\ + \ technology or derivatives of third party technology (\"Third Party Technology\"). Oracle\ + \ may provide certain notices to You in Oracle Technology documentation, readmes or otherwise\ + \ in connection with such Third Party Technology. \n\nThird Party Technology will be licensed\ + \ to You either under the terms of this agreement, or, if specified in the Oracle Technology\ + \ documentation, readme files or otherwise, under separate license terms (\"Separate Terms\"\ + ) and not under the terms of this agreement (\"Separately Licensed Third Party Technology\"\ + ). Your rights to use such Separately Licensed Third Party Technology under the Separate\ + \ Terms are not restricted or modified in any way by this agreement.\n\nEntire Agreement\n\ + You agree that this agreement is the complete agreement for the Oracle Technology and licenses,\ + \ and, except as may be expressly set forth in Exhibit A, this agreement supersedes all\ + \ prior or contemporaneous agreements or representations, including any clickwrap, shrinkwrap\ + \ or similar licenses. If any term of this agreement is found to be invalid or unenforceable,\ + \ the remaining provisions will remain effective.\n\nLast updated: 19 April 2013\n\nShould\ + \ You have any questions concerning this License Agreement, or if You desire to contact\ + \ Oracle for any reason, please write: \nOracle America, Inc. \n500 Oracle Parkway, \nRedwood\ + \ City, CA 94065\n\nOracle may contact You to ask if You had a satisfactory experience installing\ + \ and using this software download and/or accessing and using the hosted environment." json: otn-early-adopter-development.json - yml: otn-early-adopter-development.yml + yaml: otn-early-adopter-development.yml html: otn-early-adopter-development.html - text: otn-early-adopter-development.LICENSE + license: otn-early-adopter-development.LICENSE - license_key: otn-standard-2014-09 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-otn-standard-2014-09 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Oracle Technology Network License Agreement + + Oracle is willing to authorize Your access to software associated with this License Agreement (“Agreement”) only upon the condition that You accept that this Agreement governs Your use of the software. By selecting the “Accept License Agreement” button or box (or the equivalent) or installing or using the Programs You indicate Your acceptance of this Agreement and Your agreement, as an authorized representative of Your company or organization (if being acquired for use by an entity) or as an individual, to comply with the license terms that apply to the software that You wish to download and access. If You are not willing to be bound by this Agreement, do not select the “Accept License Agreement” button or box (or the equivalent) and do not download or access the software. + + Definitions + "Oracle" refers to Oracle America, Inc. "You" and "Your" refers to (a) a company or organization (each an “Entity”) accessing the Programs, if use of the Programs will be on behalf of such Entity; or (b) an individual accessing the Programs, if use of the Programs will not be on behalf of an Entity. “Contractors” refers to Your agents and contractors (including, without limitation, outsourcers). "Program(s)" refers to Oracle software provided by Oracle pursuant to this Agreement and any updates, error corrections, and/or Program Documentation provided by Oracle. “Program Documentation” refers to Program user manuals and Program installation manuals, if any. If available, Program Documentation may be delivered with the Programs and/or may be accessed from www.oracle.com/documentation. “Separate Terms” refers to separate license terms that are specified in the Program Documentation, readmes or notice files and that apply to Separately Licensed Third Party Technology. “Separately Licensed Third Party Technology” refers to third party technology that is licensed under Separate Terms and not under the terms of this Agreement. + + License Rights and Restrictions + Oracle grants You a nonexclusive, nontransferable, limited license to internally use the Programs, subject to the restrictions stated in this Agreement, only for the purpose of developing, testing, prototyping, and demonstrating Your application and only as long as Your application has not been used for any data processing, business, commercial, or production purposes, and not for any other purpose. You may allow Your Contractor(s) to use the Programs, provided they are acting on Your behalf to exercise license rights granted in this Agreement and further provided that You are responsible for their compliance with this Agreement in such use. You will have a written agreement with Your Contractor(s) that strictly limits their right to use the Programs and that otherwise protects Oracle’s intellectual property rights to the same extent as this Agreement. You may make copies of the Programs to the extent reasonably necessary to exercise the license rights granted in this Agreement. You may make one copy of the Programs for backup purposes. + + Further, You may not: + + remove or modify any Program markings or any notice of Oracle’s or a licensor’s proprietary rights; + make the Programs available in any manner to any third party (other than Contractors acting on Your behalf as set forth in this Agreement); + use the Programs to provide third party training; + assign this Agreement or distribute, give, or transfer the Programs or an interest in them to any third party, except as expressly permitted in this Agreement for Contractors (the foregoing shall not be construed to limit the rights You may otherwise have with respect to Separately Licensed Third Party Technology); + cause or permit reverse engineering (unless required by law for interoperability), disassembly or decompilation of the Programs; and + disclose results of any Program benchmark tests without Oracle’s prior consent. + + The Programs may contain source code that, unless expressly licensed in this Agreement for other purposes (for example, licensed under an open source license), is provided solely for reference purposes pursuant to the terms of this Agreement and may not be modified. + + All rights not expressly granted in this Agreement are reserved by Oracle. If You want to use the Programs or Your application for any purpose other than as expressly permitted under this Agreement, You must obtain from Oracle or an Oracle reseller a valid Programs license under a separate agreement permitting such use. However, You acknowledge that the Programs may not be intended for production use and/or Oracle may not make a version of the Programs available for production or other purposes; any development or other work You undertake with the Programs is at Your sole risk. + + Ownership + Oracle or its licensors retain all ownership and intellectual property rights to the Programs. + + Third-Party Technology + The Programs may contain or require the use of third party technology that is provided with the Programs. Oracle may provide certain notices to You in Program Documentation, readmes or notice files in connection with such third party technology. Third party technology will be licensed to You either under the terms of this Agreement or, if specified in the Program Documentation, readmes or notice files, under Separate Terms. Your rights to use Separately Licensed Third Party Technology under Separate Terms are not restricted in any way by this Agreement. However, for clarity, notwithstanding the existence of a notice, third party technology that is not Separately Licensed Third Party Technology shall be deemed part of the Programs and is licensed to You under the terms of this Agreement. + + Source Code for Open Source Software + For software that you receive from Oracle in binary form that is licensed under an open source license that gives you the right to receive the source code for that binary, you can obtain a copy of the applicable source code from https://oss.oracle.com/sources/ or http://www.oracle.com/goto/opensourcecode. If the source code for such software was not provided to you with the binary, you can also receive a copy of the source code on physical media by submitting a written request pursuant to the instructions in the "Written Offer for Source Code" section of the latter website. + + Export Controls + Export laws and regulations of the United States and any other relevant local export laws and regulations apply to the Programs . You agree that such export control laws govern Your use of the Programs (including technical data) and any services deliverables provided under this agreement, and You agree to comply with all such export laws and regulations (including "deemed export" and "deemed re-export" regulations). You agree that no data, information, program and/or materials resulting from Programs or services (or direct products thereof) will be exported, directly or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation, or development of missile technology. Accordingly, You confirm: + + You will not download, provide, make available or otherwise export or re-export the Programs, directly or indirectly, to countries prohibited by applicable laws and regulations nor to citizens, nationals or residents of those countries. + You are not listed on the United States Department of Treasury lists of Specially Designated Nationals and Blocked Persons, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers, nor are You listed on the United States Department of Commerce Table of Denial Orders. + You will not download or otherwise export or re-export the Programs, directly or indirectly, to persons on the above mentioned lists. + You will not use the Programs for, and will not allow the Programs to be used for, any purposes prohibited by applicable law, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction. + + Information Collection + The Programs’ installation and/or auto-update processes, if any, may transmit a limited amount of data to Oracle or its service provider about those processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. Refer to Oracle’s Privacy Policy at www.oracle.com/privacy. + + Disclaimer of Warranties; Limitation of Liability + THE PROGRAMS ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT . + + IN NO EVENT WILL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE’S ENTIRE LIABILITY FOR DAMAGES UNDER THIS AGREEMENT SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000) . + + No Technical Support + Unless Oracle support for the Programs, if any, is expressly included in a separate, current support agreement between You and Oracle, Oracle’s technical support organization will not provide technical support, phone support, or updates to You for the Programs provided under this Agreement. + + Audit; Termination + Oracle may audit Your use of the Programs. You may terminate this Agreement by destroying all copies of the Programs. This Agreement shall automatically terminate without notice if You fail to comply with any of the terms of this Agreement, in which case You shall promptly destroy all copies of the Programs. + + Relationship Between the Parties + Oracle is an independent contractor and we agree that no partnership, joint venture, or agency relationship exists between us. We each will be responsible for paying our own employees, including employment related taxes and insurance.. Nothing in this agreement shall be construed to limit either party's right to independently develop or distribute software that is functionally similar to the other party's products, so long as proprietary information of the other party is not included in such software. + + Entire Agreement; Governing Law + You agree that this Agreement is the complete agreement for the Programs and this Agreement supersedes all prior or contemporaneous agreements or representations, including any clickwrap, shrinkwrap or similar licenses, or license agreements for prior versions of the Programs. This Agreement may not be modified and the rights and restrictions may not be altered or waived except in a writing signed by authorized representatives of You and of Oracle. If any term of this Agreement is found to be invalid or unenforceable, the remaining provisions will remain effective. + + This Agreement is governed by the substantive and procedural laws of the State of California, USA, and You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco or Santa Clara counties in California in any dispute arising out of or relating to this Agreement. + + Notices + Should you have any questions concerning this License Agreement, or if you desire to contact Oracle for any reason, please write: + + Oracle America, Inc. + 500 Oracle Parkway + Redwood City, CA 94065 + + Oracle Employees : Under no circumstances are Oracle Employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, failure to comply with this policy could result in disciplinary action up to and including termination. + + Last updated: 09 September 2014 json: otn-standard-2014-09.json - yml: otn-standard-2014-09.yml + yaml: otn-standard-2014-09.yml html: otn-standard-2014-09.html - text: otn-standard-2014-09.LICENSE + license: otn-standard-2014-09.LICENSE - license_key: owal-1.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-owal-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + OPERA Web Applications License Version 1.0 + © Copyright 2006 Opera Software ASA. All rights reserved. + OPERA SOFTWARE ASA ("OPERA") IS WILLING TO PERMIT USE OF THIS SOFTWARE + BY YOU, ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS + CONTAINED IN THIS DOCUMENT. PLEASE READ THE TERMS AND CONDITIONS OF THIS + AGREEMENT CAREFULLY. IF YOU ARE NOT WILLING TO BE BOUND, YOU ARE NOT + ALLOWED TO ACCESS THE CONTENTS OF, STUDY OR MAKE USE OF THE SOFTWARE IN + ANY WAY. + + Terms of Agreement + + 1.Definitions + a)"Original Code" means: + The original version of the program accompanying this Agreement as + released by Opera Software ASA ("OPERA"), including source code, object + code and documentation, if any. + b)"Covered Code" means: + The Original Source Code, Contributions, the combination of the Original + Code and Contributions, and/or any respective portions thereof. + c)"Contribution" means: + in the case of OPERA, the Original Code, and + in the case of each Contributor, changes to the Original code, and + additions to the Original Code; where such changes and/or additions to + the Original Code originate from and are distributed by that particular + Contributor. A Contribution 'originates' from a Contributor if it was + added to the Original Code by such Contributor itself or anyone acting + on such Contributor's behalf. + Contributions do not include additions to the Original Code which: (i) + are separate modules of software distributed in conjunction with the + Original Code under their own license agreement, and (ii) are not + derivative works of the Original Code. + d)"Contributor" means: + OPERA and any other entity that distributes the Covered Code. + e)"Recipient" means: + Anyone who receives the Covered Code under this Agreement, including all + Contributors. + f)"Larger Work" means: + A work which combines Covered Code or portions thereof with code not + governed by the terms of this Agreement, specifically additions to the + Original Code which: (i) are separate modules of software distributed in + conjunction with the Original Code under their own license agreement, + and (ii) are not derivative works of the Original Code. + 2.Grant of Rights + a)Subject to the terms of this Agreement, each Contributor hereby grants + Recipient a non-exclusive, worldwide, royalty-free copyright license to + reproduce, prepare derivative works of, publicly display, publicly + perform, distribute and sublicense the Contribution of such Contributor, + if any, and such derivative works, in source code and object code form. + The limited license granted in this Section is only for the integration + of the Contribution with or for the use of the Contribution in + connection with other proprietary software of OPERA, including but not + limited to OPERA’s browser software. + b)Recipient understands that although each Contributor grants the + licenses to its Contributions set forth herein, no assurances are + provided by any Contributor that the Covered Code does not infringe the + patent or other intellectual property rights of any other entity. Each + Contributor disclaims any liability to Recipient for claims brought by + any other entity based on infringement of intellectual property rights + or otherwise. As a condition to exercising the rights and licenses + granted hereunder, each Recipient hereby assumes sole responsibility to + secure any other intellectual property rights needed, if any. + c)Each Contributor represents that to its knowledge it has sufficient + copyright rights in its Contribution, if any, to grant the copyright + license set forth in this Agreement. + d)Except as expressly stated in this Agreement, no other rights or + licenses, express or implied, are granted by OPERA herein, including but + not limited to any rights to trademarks, service marks or logos + belonging to OPERA, OPERA’s suppliers or to any Contributor. + + 3.Requirements + a)A Contributor may choose to distribute the Larger Work under its own + license agreement, provided that: + 1.it complies with the terms and conditions of this Agreement; + 2.and its license agreement: + 1.effectively disclaims on behalf of all Contributors all warranties and + conditions, express and implied, including warranties or conditions of + title and non-infringement, and implied warranties or conditions of + merchantability and fitness for a particular purpose; + 2.effectively excludes on behalf of all Contributors all liability for + damages, including direct, indirect, special, incidental and + consequential damages, such as lost profits; + 3.states that any provisions which differ from this Agreement are + offered by that Contributor alone and not by any other party; + 4.states that the Contribution only may be integrated with or used with + other proprietary software of OPERA, including but not limited to + OPERA’s browser software. + 5.and states that source code for the Covered Code is available from + such Contributor, and informs licensees how to obtain it in a reasonable + manner on or through a medium customarily used for software exchange. + b)When the Covered Code is made available: + 1. it must be made available under this Agreement; and a copy of this + Agreement must be included with each copy of the Covered Code. + 2.Each Contributor must duplicate, to the extent it does not already + exist, the notice in Exhibit A in each file of the Covered Code of all + Contributions, and cause the modified files to carry prominent notices + stating that the contributor changed the files and the date of any + change. + 3.In addition, each Contributor must identify itself as the originator + of its Contribution, if any, in a manner that reasonably allows + subsequent Recipients to identify the originator of the Contribution. + + 4.No Warranty + EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE COVERED CODE IS + PROVIDED 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. Each Recipient is solely responsible + for determining the appropriateness of using and distributing the + Covered Code for commercial and non-commercial purposes and assumes all + risks associated with its exercise of rights under this Agreement, + including but not limited to the risks and costs of Covered Code errors, + compliance with applicable laws, damage to or loss of data, code or + equipment, and unavailability or interruption of operations. + 5.Disclaimer of Liability + EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR + ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING + WITHOUT LIMITATION LOST PROFITS), 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 OR + DISTRIBUTION OF THE COVERED CODE OR THE EXERCISE OF ANY RIGHTS GRANTED + HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + 6. General + If any provision of this Agreement is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability of + the remainder of the terms of this Agreement, and without further action + by the parties hereto, such provision shall be reformed to the minimum + extent necessary to make such provision valid and enforceable. + + All Recipient's rights under this Agreement shall terminate if it fails + to comply with any of the material terms or conditions of this Agreement + and does not cure such failure in a reasonable period of time after + becoming aware of such noncompliance. If all Recipient's rights under + this Agreement terminate, Recipient agrees to cease use and distribution + of the Covered Code as soon as reasonably practicable. However, + Recipient's obligations under this Agreement and any licenses granted by + Recipient relating to the Covered Code shall continue and survive. + + OPERA may publish new versions (including revisions) of this Agreement + from time to time. Each new version of the Agreement will be given a + distinguishing version number. The Covered Code (including + Contributions) may always be distributed subject to the version of the + Agreement under which it was received. In addition, after a new version + of the Agreement is published, Contributor may elect to distribute the + Covered Code (including its Contributions) under the new version. No one + other than OPERA has the right to modify this Agreement. Except as + expressly stated in Section 2(a), Recipient receives no rights or + licenses to the intellectual property of any Contributor under this + Agreement, whether expressly, by implication, estoppel or otherwise. All + rights in the Covered Code not expressly granted under this Agreement + are reserved. + + This Agreement is governed by the laws of Norway. Any and all disputes + arising out of the rights and obligations in this Agreement shall be + submitted to ordinary court proceedings. You accept the Oslo City Court + as legal venue under this Agreement. json: owal-1.0.json - yml: owal-1.0.yml + yaml: owal-1.0.yml html: owal-1.0.html - text: owal-1.0.LICENSE + license: owal-1.0.LICENSE - license_key: owf-cla-1.0-copyright + category: CLA spdx_license_key: LicenseRef-scancode-owf-cla-1.0-copyright other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + OWF Contributor License Agreement 1.0 - Copyright + Open Web Foundation + Contributor License Agreement (CLA 1.0) + (Copyright Only) + + 1. The Purpose of this Contributor License Agreement. This CLA sets forth the terms under which I will participate in and contribute to the development of the Specification. Capitalized terms are defined in the CLA’s last section. + + 2. Copyrights. + + 2.1. Copyright Grant. I grant to you a perpetual (for the duration of the applicable copyright), worldwide, non-exclusive, no-charge, royalty-free, copyright license, without any obligation for accounting to me, to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, distribute, and implement any Contribution to the full extent of my copyright interest in the Contribution. + + 2.2. Attribution. As a condition of the copyright grant, you must include an attribution to the Specification in any derivative work you make based on the Specification. That attribution must include, at minimum, the Specification name and version number.3. No Other Rights. Except as specifically set forth in this CLA, no other express or implied patent, trademark, copyright, or other property rights are granted under this CLA, including by implication, waiver, or estoppel. + + 4. Open Web Foundation Agreement ("OWFa") version 1.0 Execution. I acknowledge that the goal of this CLA is to develop a specification that will be subject to the OWFa version 1.0. While I have no legal obligation to execute the OWFa version 1.0 for any version of the specification being developed under this CLA, I agree that the selection and terms of the OWFa version 1.0 will not be subject to negotiation. + + 5. Antitrust Compliance. I acknowledge that I may compete with other participants, that I am under no obligation to implement the Specification, that each participant is free to develop competing technologies and standards, and that each party is free to license its patent rights to third parties, including for the purpose of enabling competing technologies and standards. + + 6. Non-Circumvention. I agree that I will not intentionally take or willfully assist any third party to take any action for the purpose of circumventing my obligations under this CLA. + + 7. Representations, Warranties and Disclaimers. I represent and warrant that 1) I am legally entitled to grant the rights and promises set forth in this CLA and 2) I will not intentionally include any third party materials in any Contribution unless those materials are available under terms that do not conflict with this CLA. IN ALL OTHER RESPECTS MY CONTRIBUTIONS ARE PROVIDED "AS IS." The entire risk as to implementing or otherwise using the Contribution or the Specification is assumed by the implementer and user. Except as stated herein, I expressly disclaim any warranties (express, implied, or otherwise), including implied warranties of merchantability, non-infringement, fitness for a particular purpose, or title, related to the Contribution or the Specification. IN NO EVENT WILL ANY PARTY BE LIABLE TO ANY OTHER PARTY FOR LOST PROFITS OR ANY FORM OF INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER FROM ANY CAUSES OF ACTION OF ANY KIND WITH RESPECT TO THIS CLA, WHETHER BASED ON BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT THE OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Nothing in this CLA requires me to undertake a patent search. + + 8. Definitions. + + 8.1. Bound Entities. “Bound Entities” means the entity listed below and any entities that the Bound Entity Controls. + + 8.2. CLA. “CLA” means this document, which sets forth the rights, grants, promises, limitations, conditions, obligations, and disclaimers made available for my Contributions to the particular Specification. + + 8.3. Contribution. “Contribution” means any original work of authorship, including any modifications or additions to an existing work, that I intentionally submit for inclusion in the Specification, which is included in the Specification. For the purposes of this definition, “submit” means any form of electronic, oral, or written communication for the purpose of discussing and improving the Specification, but excluding communication that I conspicuously designate in writing as not a contribution. + + 8.4. Control. “Control” means direct or indirect control of more than 50% of the voting power to elect directors of that corporation, or for any other entity, the power to direct management of such entity. + + 8.5. I, Me, or My. “I,” “me,” or “my” refers to the signatory below and its Bound Entities, if applicable. + + 8.6. Specification. “Specification” means the Specification identified below as of the date of my last Contribution. + + 8.7. You or Your. “You,” “you,” or “your” means any person or entity who exercises copyright rights granted under this CLA, and any person or entity you Control. json: owf-cla-1.0-copyright.json - yml: owf-cla-1.0-copyright.yml + yaml: owf-cla-1.0-copyright.yml html: owf-cla-1.0-copyright.html - text: owf-cla-1.0-copyright.LICENSE + license: owf-cla-1.0-copyright.LICENSE - license_key: owf-cla-1.0-copyright-patent + category: CLA spdx_license_key: LicenseRef-scancode-owf-cla-1.0-copyright-patent other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: "OWF Contributor License Agreement 1.0 - Copyright and Patent\nOpen Web Foundation\n\ + Contributor License Agreement (CLA 1.0)\n(Patent and Copyright Grants)\n\n1. The Purpose\ + \ of this Contributor License Agreement. This CLA sets forth the terms under which I will\ + \ participate in and contribute to the development of the Specification. Capitalized terms\ + \ are defined in the CLA’s last section.\n\n2. Copyrights.\n\n2.1. Copyright Grant. \ + \ I grant to you a perpetual (for the duration of the applicable copyright), worldwide,\ + \ non-exclusive, no-charge, royalty-free, copyright license, without any obligation for\ + \ accounting to me, to reproduce, prepare derivative works of, publicly display, publicly\ + \ perform, sublicense, distribute, and implement any Contribution to the full extent of\ + \ my copyright interest in the Contribution.\n\n2.2. Attribution. As a condition of the\ + \ copyright grant, you must include an attribution to the Specification in any derivative\ + \ work you make based on the Specification. That attribution must include, at minimum,\ + \ the Specification name and version number. \n\n3. Patents.\n\n3.1. Patent Non-Assert.\n\ + \n3.1.1. The Promise. I, on behalf of myself and my successors in interest and assigns,\ + \ irrevocably promise not to assert my Granted Claims against you for your Permitted Uses,\ + \ subject to the terms and conditions of Section 3.1. This is a personal promise directly\ + \ from me to you, and you acknowledge as a condition of benefiting from it that no rights\ + \ from me are received from suppliers, distributors, or otherwise in connection with this\ + \ promise. This promise also applies to your Permitted Uses of any other specifications\ + \ incorporating all required portions of the Specification.\n\n3.1.2. Termination.\n\n\ + 3.1.2.1. As a Result of Claims by You. All rights, grants, and promises made by me to\ + \ you under this CLA are terminated if you file, maintain, or voluntarily participate in\ + \ a lawsuit against me or any person or entity asserting that its Permitted Uses infringe\ + \ any Granted Claims you would have had the right to enforce had you signed this CLA, unless\ + \ that suit was in response to a corresponding suit first brought against you.\n\n3.1.2.2.\ + \ As a Result of Claims by a Related Entity of Mine. If a Related Entity of mine files,\ + \ maintains, or voluntarily participates in a lawsuit asserting that a Permitted Use infringes\ + \ any Granted Claims it would have had the right to enforce had it signed this CLA, then\ + \ I relinquish any rights, grants, and promises I have received for the Specification from\ + \ other signatories of this CLA, unless a) my promise to you was terminated pursuant to\ + \ section 3.1.2.1, or b) that suit was in response to a corresponding suit first brought\ + \ by you against the Related Entity.\n\n3.1.3. Additional Conditions. This promise is\ + \ not an assurance (i) that any of my copyrights or issued patent claims cover an implementation\ + \ of the Specification or are enforceable or (ii) that an implementation of the Specification\ + \ would not infringe intellectual property rights of any third party. Notwithstanding the\ + \ personal nature of my promise, this promise is intended to be binding on any future owner,\ + \ assignee or exclusive licensee who has been given the right to enforce any Granted Claims\ + \ against third parties.\n\n3.1.4. Bankruptcy. Solely for purposes of Section 365(n) of\ + \ Title 11, United States Bankruptcy Code and any equivalent law in any foreign jurisdiction,\ + \ this promise will be treated as if it were a license and you may elect to retain your\ + \ rights under this promise if I (or any owner of any patents or patent applications referenced\ + \ herein), as a debtor in possession, or a bankruptcy trustee, reject this non-assert.\n\ + \n3.2. Patent License Commitment. In addition to rights granted in 3.1, on behalf of me\ + \ and my successors in interest and assigns, I agree to grant to you a no charge, royalty\ + \ free license to my Granted Claims on reasonable and non-discriminatory terms, where such\ + \ license applies only to those Granted Claims infringed by the implementation of my Contribution(s)\ + \ alone or by combination of my Contribution(s) with the Specification, solely for your\ + \ Permitted Uses.\n\n4. No Other Rights. Except as specifically set forth in this CLA,\ + \ no other express or implied patent, trademark, copyright, or other property rights are\ + \ granted under this CLA, including by implication, waiver, or estoppel.\n\n5. Limited\ + \ Opt-Out. I may withdraw my Contribution by providing written notice of that withdrawal\ + \ within 45 days of submitting that Contribution. Notice of a Contribution withdrawal must\ + \ be made, at minimum, in writing using the same communication mechanisms that were used\ + \ to submit the corresponding Contribution and must include the exact material being withdrawn.\ + \ Upon providing such valid notice, any obligations I incurred under this CLA for that particular\ + \ identified Contribution will be null and void.\n\n6. Open Web Foundation Agreement (\"\ + OWFa\") version 1.0 Execution. I acknowledge that the goal of this CLA is to develop a\ + \ specification that will be subject to the OWFa version 1.0. While I have no legal obligation\ + \ to execute the OWFa version 1.0 for any version of the specification being developed under\ + \ this CLA, I agree that the selection and terms of the OWFa version 1.0 will not be subject\ + \ to negotiation.\n\n7. Antitrust Compliance. I acknowledge that I may compete with other\ + \ participants, that I am under no obligation to implement the Specification, that each\ + \ participant is free to develop competing technologies and standards, and that each party\ + \ is free to license its patent rights to third parties, including for the purpose of enabling\ + \ competing technologies and standards.\n\n8. Non-Circumvention. I agree that I will not\ + \ intentionally take or willfully assist any third party to take any action for the purpose\ + \ of circumventing my obligations under this CLA.\n\n9. Representations, Warranties and\ + \ Disclaimers. I represent and warrant that 1) I am legally entitled to grant the rights\ + \ and promises set forth in this CLA and 2) I will not intentionally include any third party\ + \ materials in any Contribution unless those materials are available under terms that do\ + \ not conflict with this CLA. IN ALL OTHER RESPECTS MY CONTRIBUTIONS ARE PROVIDED \"AS IS.\"\ + \ The entire risk as to implementing or otherwise using the Contribution or the Specification\ + \ is assumed by the implementer and user. Except as stated herein, I expressly disclaim\ + \ any warranties (express, implied, or otherwise), including implied warranties of merchantability,\ + \ non-infringement, fitness for a particular purpose, or title, related to the Contribution\ + \ or the Specification. IN NO EVENT WILL ANY PARTY BE LIABLE TO ANY OTHER PARTY FOR LOST\ + \ PROFITS OR ANY FORM OF INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY\ + \ CHARACTER FROM ANY CAUSES OF ACTION OF ANY KIND WITH RESPECT TO THIS CLA, WHETHER BASED\ + \ ON BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT THE\ + \ OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. All of my obligations\ + \ under Section 3 regarding the transfer, successors in interest, or assignment of Granted\ + \ Claims will be satisfied if I notify the transferee or assignee of any patent that I know\ + \ contains Granted Claims of the obligations under Section 3. Nothing in this CLA requires\ + \ me to undertake a patent search.\n\n10. Definitions.\n\n10.1. Bound Entities. “Bound\ + \ Entities” means the entity listed below and any entities that the Bound Entity Controls.\n\ + \n10.2. CLA. “CLA” means this document, which sets forth the rights, grants, promises,\ + \ limitations, conditions, obligations, and disclaimers made available for my Contributions\ + \ to the particular Specification.\n\n10.3. Contribution. “Contribution” means any original\ + \ work of authorship, including any modifications or additions to an existing work, that\ + \ I intentionally submit for inclusion in the Specification, which is included in the Specification.\ + \ For the purposes of this definition, “submit” means any form of electronic, oral, or\ + \ written communication for the purpose of discussing and improving the Specification, but\ + \ excluding communication that I conspicuously designate in writing as not a contribution.\n\ + \n10.4. Control. “Control” means direct or indirect control of more than 50% of the voting\ + \ power to elect directors of that corporation, or for any other entity, the power to direct\ + \ management of such entity.\n\n10.5. Granted Claims. \"Granted Claims\" are those patent\ + \ claims that I own or control, including those patent claims I acquire or control after\ + \ the Date below, that are infringed by Permitted Uses. Granted Claims include only those\ + \ patent claims that are infringed by the implementation of any portions of the Specification\ + \ where the Specification describes the functionality causing the infringement in detail\ + \ and does not merely reference the functionality causing the infringement. Granted Claims\ + \ under this CLA exclude those patent claims that would be infringed by an implementation\ + \ of the Specification if my Contribution to that Specification were removed.\n\n10.6. \ + \ I, Me, or My. “I,” “me,” or “my” refers to the signatory below and its Bound Entities,\ + \ if applicable.\n\n10.7. Permitted Uses. “Permitted Uses” means making, using, selling,\ + \ offering for sale, importing or distributing any implementation of the Specification 1)\ + \ only to the extent it implements the Specification and 2) so long as all required portions\ + \ of the Specification are implemented. Permitted Uses do not extend to any portion of an\ + \ implementation that is not included in the Specification.\n\n10.8. Related Entities.\ + \ “Related Entities” means 1) any entity that Controls the Bound Entity (“Upstream Entity”),\ + \ and 2) any other entity that is Controlled by an Upstream Entity that is not itself a\ + \ Bound Entity.\n\n10.9. Specification. “Specification” means the Specification identified\ + \ below as of the date of my last Contribution.\n\n10.10. You or Your. “You,” “you,” or\ + \ “your” means any person or entity who exercises copyright or patent rights granted under\ + \ this CLA, and any person or entity you Control." json: owf-cla-1.0-copyright-patent.json - yml: owf-cla-1.0-copyright-patent.yml + yaml: owf-cla-1.0-copyright-patent.yml html: owf-cla-1.0-copyright-patent.html - text: owf-cla-1.0-copyright-patent.LICENSE + license: owf-cla-1.0-copyright-patent.LICENSE - license_key: owfa-1-0-patent-only + category: Patent License spdx_license_key: LicenseRef-scancode-owfa-1.0-patent-only other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: | + OWFa 1.0 - Patent Only + Open Web Foundation + Final Specification Agreement (OWFa 1.0) + (Patent Only) + + 1. The Purpose of this Agreement. This Agreement sets forth the terms under which I make certain patent rights available to you for your Permitted Uses of the Specification. Capitalized terms are defined in the Agreement’s last section. + + 2. Patents. + + 2.1. Patent Non-Assert. + + 2.1.1. The Promise. I, on behalf of myself and my successors in interest and assigns, irrevocably promise not to assert my Granted Claims against you for your Permitted Uses, subject to the terms and conditions of Section 2.1. This is a personal promise directly from me to you, and you acknowledge as a condition of benefiting from it that no rights from me are received from suppliers, distributors, or otherwise in connection with this promise. This promise also applies to your Permitted Uses of any other specifications incorporating all required portions of the Specification. + + 2.1.2. Termination. + + 2.1.2.1. As a Result of Claims by You. All rights, grants, and promises made by me to you under this Agreement are terminated if you file, maintain, or voluntarily participate in a lawsuit against me or any person or entity asserting that its Permitted Uses infringe any Granted Claims you would have had the right to enforce had you signed this Agreement, unless that suit was in response to a corresponding suit first brought against you. + + 2.1.2.2. As a Result of Claims by a Related Entity of Mine. If a Related Entity of mine files, maintains, or voluntarily participates in a lawsuit asserting that a Permitted Use infringes any Granted Claims it would have had the right to enforce had it signed this Agreement, then I relinquish any rights, grants, and promises I have received for the Specification from other signatories of this Agreement, unless a) my promise to you was terminated pursuant to section 2.1.2.1, or b) that suit was in response to a corresponding suit first brought by you against the Related Entity. + + 2.1.3. Additional Conditions. This promise is not an assurance (i) that any of my copyrights or issued patent claims cover an implementation of the Specification or are enforceable or (ii) that an implementation of the Specification would not infringe intellectual property rights of any third party. Notwithstanding the personal nature of my promise, this promise is intended to be binding on any future owner, assignee or exclusive licensee to whom has been given the right to enforce any Granted Claims against third parties. + + 2.1.4. Bankruptcy. Solely for purposes of Section 365(n) of Title 11, United States Bankruptcy Code and any equivalent law in any foreign jurisdiction, this promise will be treated as if it were a license and you may elect to retain your rights under this promise if I (or any owner of any patents or patent applications referenced herein), as a debtor in possession, or a bankruptcy trustee, reject this non-assert. + + 2.2. Patent License Commitment. In addition to rights granted in 2.1, on behalf of me and my successors in interest and assigns, I agree to grant to you a no charge, royalty free license to my Granted Claims on reasonable and non-discriminatory terms, where such license applies only to those Granted Claims infringed by the implementation of the Specification, solely for your Permitted Uses. + + 3. No Other Rights. Except as specifically set forth in this Agreement, no other express or implied patent, trademark, copyright, or other property rights are granted under this Agreement, including by implication, waiver, or estoppel. + + 4. Antitrust Compliance. I acknowledge that I may compete with other participants, that I am under no obligation to implement the Specification, that each participant is free to develop competing technologies and standards, and that each party is free to license its patent rights to third parties, including for the purpose of enabling competing technologies and standards. + + 5. Non-Circumvention. I agree that I will not intentionally take or willfully assist any third party to take any action for the purpose of circumventing my obligations under this Agreement. + + 6. Representations, Warranties and Disclaimers. I represent and warrant that I am legally entitled to grant the rights and promises set forth in this Agreement. IN ALL OTHER RESPECTS THE SPECIFICATION IS PROVIDED "AS IS." The entire risk as to implementing or otherwise using the Specification is assumed by the implementer and user. Except as stated herein, I expressly disclaim any warranties (express, implied, or otherwise), including implied warranties of merchantability, non-infringement, fitness for a particular purpose, or title, related to the Specification. IN NO EVENT WILL ANY PARTY BE LIABLE TO ANY OTHER PARTY FOR LOST PROFITS OR ANY FORM OF INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER FROM ANY CAUSES OF ACTION OF ANY KIND WITH RESPECT TO THIS AGREEMENT, WHETHER BASED ON BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT THE OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. All of my obligations under Section 2 regarding the transfer, successors in interest, or assignment of Granted Claims will be satisfied if I notify the transferee or assignee of any patent that I know contains Granted Claims of the obligations under Section 2. Nothing in this Agreement requires me to undertake a patent search. + + 7. Definitions. + + 7.1. Agreement. “Agreement” means this document, which sets forth the rights, grants, promises, limitations, conditions, obligations, and disclaimers made available for the particular Specification. + + 7.2. Bound Entities. “Bound Entities” means the entity listed below and any entities that the Bound Entity Controls. + + 7.3. Control. “Control” means direct or indirect control of more than 50% of the voting power to elect directors of that corporation, or for any other entity, the power to direct management of such entity. + + 7.4. Granted Claims. "Granted Claims" are those patent claims that I own or control, including those patent claims I acquire or control after the Date below, that are infringed by Permitted Uses. Granted Claims include only those patent claims that are infringed by the implementation of any portions of the Specification where the Specification describes the functionality causing the infringement in detail and does not merely reference the functionality causing the infringement. + + 7.5. I, Me, or My. “I,” “me,” or “my” refers to the signatory below and its Bound Entities, if applicable. + + 7.6. Permitted Uses. “Permitted Uses” means making, using, selling, offering for sale, importing or distributing any implementation of the Specification 1) only to the extent it implements the Specification and 2) so long as all required portions of the Specification are implemented. Permitted Uses do not extend to any portion of an implementation that is not included in the Specification. + + 7.7. Related Entities. “Related Entities” means 1) any entity that Controls the Bound Entity (“Upstream Entity”), and 2) any other entity that is Controlled by an Upstream Entity that is not itself a Bound Entity. + + 7.8. Specification. “Specification” means the Specification identified below. + + 7.9. You or Your. “You,” “you,” or “your” means any person or entity who exercises copyright or patent rights granted under this Agreement, and any person or entity you Control. json: owfa-1-0-patent-only.json - yml: owfa-1-0-patent-only.yml + yaml: owfa-1-0-patent-only.yml html: owfa-1-0-patent-only.html - text: owfa-1-0-patent-only.LICENSE + license: owfa-1-0-patent-only.LICENSE - license_key: owfa-1.0 + category: Patent License spdx_license_key: LicenseRef-scancode-owfa-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: "OWFa 1.0\nOpen Web Foundation\nFinal Specification Agreement (OWFa 1.0)\n(Patent and\ + \ Copyright Grants)\n \n1. The Purpose of this Agreement. This Agreement sets forth the\ + \ terms under which I make certain copyright and patent rights available to you for your\ + \ Permitted Uses of the Specification. Capitalized terms are defined in the Agreement’s\ + \ last section.\n\n2. Copyrights.\n \n2.1. Copyright Grant. I grant to you a perpetual\ + \ (for the duration of the applicable copyright), worldwide, non-exclusive, no-charge, royalty-free,\ + \ copyright license, without any obligation for accounting to me, to reproduce, prepare\ + \ derivative works of, publicly display, publicly perform, sublicense, distribute, and implement\ + \ the Specification to the full extent of my copyright interest in the Specification.\n\ + \ \n2.2. Attribution. As a condition of the copyright grant, you must include an attribution\ + \ to the Specification in any derivative work you make based on the Specification. That\ + \ attribution must include, at minimum, the Specification name and version number.\n \n\ + 3. Patents.\n \n3.1. Patent Non-Assert.\n \n3.1.1. The Promise. I, on behalf of myself\ + \ and my successors in interest and assigns, irrevocably promise not to assert my Granted\ + \ Claims against you for your Permitted Uses, subject to the terms and conditions of Section\ + \ 3.1. This is a personal promise directly from me to you, and you acknowledge as a condition\ + \ of benefiting from it that no rights from me are received from suppliers, distributors,\ + \ or otherwise in connection with this promise. This promise also applies to your Permitted\ + \ Uses of any other specifications incorporating all required portions of the Specification.\n\ + \ \n3.1.2. Termination.\n \n3.1.2.1. As a Result of Claims by You. All rights, grants,\ + \ and promises made by me to you under this Agreement are terminated if you file, maintain,\ + \ or voluntarily participate in a lawsuit against me or any person or entity asserting that\ + \ its Permitted Uses infringe any Granted Claims you would have had the right to enforce\ + \ had you signed this Agreement, unless that suit was in response to a corresponding suit\ + \ first brought against you.\n \n3.1.2.2. As a Result of Claims by a Related Entity of\ + \ Mine. If a Related Entity of mine files, maintains, or voluntarily participates in a\ + \ lawsuit asserting that a Permitted Use infringes any Granted Claims it would have had\ + \ the right to enforce had it signed this Agreement, then I relinquish any rights, grants,\ + \ and promises I have received for the Specification from other signatories of this Agreement,\ + \ unless a) my promise to you was terminated pursuant to section 3.1.2.1, or b) that suit\ + \ was in response to a corresponding suit first brought by you against the Related Entity.\n\ + \ \n3.1.3. Additional Conditions. This promise is not an assurance (i) that any of my\ + \ copyrights or issued patent claims cover an implementation of the Specification or are\ + \ enforceable or (ii) that an implementation of the Specification would not infringe intellectual\ + \ property rights of any third party. Notwithstanding the personal nature of my promise,\ + \ this promise is intended to be binding on any future owner, assignee or exclusive licensee\ + \ to whom has been given the right to enforce any Granted Claims against third parties.\n\ + \ \n3.1.4. Bankruptcy. Solely for purposes of Section 365(n) of Title 11, United States\ + \ Bankruptcy Code and any equivalent law in any foreign jurisdiction, this promise will\ + \ be treated as if it were a license and you may elect to retain your rights under this\ + \ promise if I (or any owner of any patents or patent applications referenced herein), as\ + \ a debtor in possession, or a bankruptcy trustee, reject this non-assert.\n \n3.2. Patent\ + \ License Commitment. In addition to rights granted in 3.1, on behalf of me and my successors\ + \ in interest and assigns, I agree to grant to you a no charge, royalty free license to\ + \ my Granted Claims on reasonable and non-discriminatory terms, where such license applies\ + \ only to those Granted Claims infringed by the implementation of the Specification, solely\ + \ for your Permitted Uses.\n\n4. No Other Rights. Except as specifically set forth in this\ + \ Agreement, no other express or implied patent, trademark, copyright, or other property\ + \ rights are granted under this Agreement, including by implication, waiver, or estoppel.\n\ + \n5. Antitrust Compliance. I acknowledge that I may compete with other participants, that\ + \ I am under no obligation to implement the Specification, that each participant is free\ + \ to develop competing technologies and standards, and that each party is free to license\ + \ its patent rights to third parties, including for the purpose of enabling competing technologies\ + \ and standards.\n\n6. Non-Circumvention. I agree that I will not intentionally take or\ + \ willfully assist any third party to take any action for the purpose of circumventing my\ + \ obligations under this Agreement.\n\n7. Representations, Warranties and Disclaimers.\ + \ I represent and warrant that I am legally entitled to grant the rights and promises set\ + \ forth in this Agreement. IN ALL OTHER RESPECTS THE SPECIFICATION IS PROVIDED \"AS IS.\"\ + \ The entire risk as to implementing or otherwise using the Specification is assumed by\ + \ the implementer and user. Except as stated herein, I expressly disclaim any warranties\ + \ (express, implied, or otherwise), including implied warranties of merchantability, non-infringement,\ + \ fitness for a particular purpose, or title, related to the Specification. IN NO EVENT\ + \ WILL ANY PARTY BE LIABLE TO ANY OTHER PARTY FOR LOST PROFITS OR ANY FORM OF INDIRECT,\ + \ SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER FROM ANY CAUSES OF ACTION\ + \ OF ANY KIND WITH RESPECT TO THIS AGREEMENT, WHETHER BASED ON BREACH OF CONTRACT, TORT\ + \ (INCLUDING NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT THE OTHER PARTY HAS BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGE. All of my obligations under Section 3 regarding the\ + \ transfer, successors in interest, or assignment of Granted Claims will be satisfied if\ + \ I notify the transferee or assignee of any patent that I know contains Granted Claims\ + \ of the obligations under Section 3. Nothing in this Agreement requires me to undertake\ + \ a patent search.\n\n8. Definitions.\n \n8.1. Agreement. \"Agreement\" means this OWFa\ + \ document, which sets forth the rights, grants, promises, limitations, conditions, obligations,\ + \ and disclaimers made available for the particular Specification.\n \n8.2. Bound Entities.\ + \ \"Bound Entities\" means the entity listed below and any entities that the Bound Entity\ + \ Controls.\n \n8.3. Control. \"Control\" means direct or indirect control of more than\ + \ 50% of the voting power to elect directors of that corporation, or for any other entity,\ + \ the power to direct management of such entity.\n \n8.4. Granted Claims. \"Granted Claims\"\ + \ are those patent claims that I own or control, including those patent claims I acquire\ + \ or control after the Date below, that are infringed by Permitted Uses. Granted Claims\ + \ include only those patent claims that are infringed by the implementation of any portions\ + \ of the Specification where the Specification describes the functionality causing the infringement\ + \ in detail and does not merely reference the functionality causing the infringement.\n\ + \ \n8.5. I, Me, or My. \"I,\" \"me,\" or \"my\" refers to the signatory below and its\ + \ Bound Entities, if applicable.\n \n8.6. Permitted Uses. \"Permitted Uses\" means making,\ + \ using, selling, offering for sale, importing or distributing any implementation of the\ + \ Specification 1) only to the extent it implements the Specification and 2) so long as\ + \ all required portions of the Specification are implemented. Permitted Uses do not extend\ + \ to any portion of an implementation that is not included in the Specification.\n \n8.7.\ + \ Related Entities. \"Related Entities\" means 1) any entity that Controls the Bound Entity\ + \ (\"Upstream Entity\"), and 2) any other entity that is Controlled by an Upstream Entity\ + \ that is not itself a Bound Entity.\n \n8.8. Specification. \"Specification\" means the\ + \ Specification identified below.\n \n8.9. You or Your. \"You,\" \"you,\" or \"your\"\ + \ means any person or entity who exercises copyright or patent rights granted under this\ + \ Agreement, and any person or entity you Control." json: owfa-1.0.json - yml: owfa-1.0.yml + yaml: owfa-1.0.yml html: owfa-1.0.html - text: owfa-1.0.LICENSE + license: owfa-1.0.LICENSE - license_key: owtchart + category: Permissive spdx_license_key: LicenseRef-scancode-owtchart other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "OWTChart License\n\nCopyright and License Terms\n\nOWTChart is Open Source, which means\ + \ that it can be used freely, for\npersonnal or commercial application, as long as the authors'\ + \ Copyright\nand Distribution terms are respected. It is based on the GDChart\nlibrary,\ + \ which in turn uses Boutell.com's GD (GifDraw) library, so this\nmeans 3 sets of Copyright\ + \ and Distribution terms to follow.\n\nThe application part of OWTChart was developed by\ + \ Daniel Morissette\n(danmo@videotron.ca), and part of it was done under contract with Health\n\ + Canada. It is covered by the following Copyright and Distribution terms:\nCopyright (c)\ + \ 1998, 1999, Daniel Morissette\n\nPermission is hereby granted, free of charge, to any\ + \ person obtaining a\ncopy of this software and associated documentation files (the\n\"\ + Software\"), to deal in the Software without restriction, including\nwithout limitation\ + \ the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell\ + \ copies of the Software, and to\npermit persons to whom the Software is furnished to do\ + \ so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission\ + \ notice shall be included\nin all copies or substantial portions of the Software. THE SOFTWARE\ + \ IS\nPROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\nINCLUDING BUT\ + \ NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND\ + \ NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\ + \ CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\ + \ ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS\ + \ IN THE SOFTWARE.\n\nThe underlying GDChart library comes with the following Copyright\ + \ notice\nfrom its author, Bruce Verderaime (brv@fred.net): GDChart is free for\nuse in\ + \ your applications and for chart generation. YOU MAY NOT re-\ndistribute or represent the\ + \ code as your own. Any re-distributions of\nthe code MUST reference the author, and include\ + \ any and all original\ndocumentaion.\n\nIOW: Use it. Don't plagiarize it!\n\nFinally, the\ + \ GD (GifDraw) library comes with the following Copyright\nnotices: Portions copyright 1994,\ + \ 1995, 1996, 1997, 1998, by Cold Spring\nHarbor Laboratory. Funded under Grant P41-RR02188\ + \ by the National\nInstitutes of Health.\n\nPortions copyright 1996, 1997, 1998, by Boutell.Com,\ + \ Inc. GIF\ndecompression code copyright 1990, 1991, 1993, by David Koblas\n(koblas@netcom.com).\ + \ Non-LZW-based GIF compression code copyright 1998,\nby Hutchison Avenue Software Corporation.\ + \ \n\nPermission has been granted to copy and distribute gd in any context,\nincluding a\ + \ commercial application, provided that this notice is present\nin user-accessible supporting\ + \ documentation. This does not affect your\nownership of the derived work itself, and the\ + \ intent is to assure proper\ncredit for the authors of gd, not to interfere with your productive\ + \ use\nof gd. If you have questions, ask. \"Derived works\" includes all programs\nthat\ + \ utilize the library. Credit must be given in user- accessible\ndocumentation. Permission\ + \ to use, copy, modify, and distribute this\nsoftware and its documentation for any purpose\ + \ and without fee is hereby\ngranted, provided that the above copyright notice appear in\ + \ all copies\nand that both that copyright notice and this permission notice appear in\n\ + supporting documentation. This software is provided \"as is\" without\nexpress or implied\ + \ warranty." json: owtchart.json - yml: owtchart.yml + yaml: owtchart.yml html: owtchart.html - text: owtchart.LICENSE + license: owtchart.LICENSE - license_key: oxygen-xml-webhelp-eula + category: Commercial spdx_license_key: LicenseRef-scancode-oxygen-xml-webhelp-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Oxygen XML WebHelp license\n\nIMPORTANT:THIS SOFTWARE END USER LICENSE AGREEMENT (\"\ + EULA\") IS A LEGAL AGREEMENT BETWEEN YOU (EITHER AN INDIVIDUAL OR, IF PURCHASED OR OTHERWISE\ + \ ACQUIRED BY OR FOR AN ENTITY, A SINGLE LEGAL ENTITY) AND SYNCRO. READ IT CAREFULLY BEFORE\ + \ COMPLETING THE INSTALLATION PROCESS AND USING THIS SOFTWARE. IT PROVIDES A LICENSE TO\ + \ USE THIS SOFTWARE AND CONTAINS WARRANTY INFORMATION AND LIABILITY DISCLAIMERS. BY DOWNLOADING\ + \ OR INSTALLING THE SOFTWARE YOU ARE INDICATING YOUR ASSENT TO THE TERMS OF THIS LICENSE.\ + \ IF YOU DO NOT AGREE TO ALL OF THE FOLLOWING TERMS, DO NOT DOWNLOAD OR INSTALL THE SOFTWARE\ + \ OR DISCONTINUE USE IMMEDIATELY AND DESTROY ALL COPIES IN YOUR POSSESSION. YOU ALSO ACCEPT\ + \ AND ASSENT TO THE SYNCRO PRIVACY POLICY LOCATED AT http://www.oxygenxml.com/privacy_policy.html\ + \ AND YOU AGREE TO RECEIVE NOTICES FROM SYNCRO ELECTRONICALLY.\n\n\n1. DEFINITION\n\n \ + \ a) \"Syncro\" means Syncro Soft SRL.\n b) \"Software\" means the executable code of\ + \ oXygen XML Web Help plugin (DITA-Open Toolkit plugin for generating Web Help output from\ + \ DITA sources and Docbook XML source transformation to Webhelp output as an extension of\ + \ the Docbook XSL distribution available at Sourceforge.net.), any updates or error corrections\ + \ provided by Syncro and on-line or electronic documentation.\n c) \"Process\" means\ + \ any automated process that is authorized by You to access and use the Software through\ + \ the assignment of a single process ID and includes, without limitation, automated controls\ + \ and background jobs.\n d) \"License Key\" means a unique key-code issued to You by Syncro\ + \ (or its authorized reseller) to activate and use the Software.\n e) \"Maintenance Pack\"\ + \ is a time-limited right to technical support and Software updates and upgrades which you\ + \ may elect to purchase in addition to your Software license. Technical support only covers\ + \ issues or questions resulting directly out of the operation of the Software. Syncro will\ + \ not provide You with generic consultation, assistance, or advice under any other circumstances.\n\ + \n2. LICENSE GRANTS\n\n 2.1. Upon your payment of the license fee and subject to the terms\ + \ and conditions contained herein, Syncro or its authorized reseller provides you with a\ + \ License Key and grants you a limited, non-exclusive, non-transferable license to: \n \ + \ a) incorporate, integrate, include and use the Software for your internal business\ + \ purpose on a Process basis meaning specific Processes are authorized to access the Software\ + \ and the total number of Processes may not exceed the total number licensed by You.\n \ + \ b) copy the Software in machine-readable form solely for backup purposes.\n 2.2. In\ + \ addition to the rights specified above in section 2.1, You shall be entitled to use the\ + \ licensed Software by an additional Process that mirrors or duplicates the licensed Process,\ + \ solely for the purpose of testing internally of the Software output or for backup purposes.\n\ + \ 2.3. Certain rights are not granted under this Agreement, but may be available under\ + \ a separate agreement. If you would like to enter into a distribution agreement contact\ + \ Syncro (support@oxygenxml.com)\n\n3. LICENSE RESTRICTIONS\n 3.1. You may not provide or\ + \ make available by any means the License Key to any third party. You undertake to take\ + \ such steps as are necessary in order to protect the License Key against unauthorized use.\n\ + \ 3.2. You may not sell, rent, lease, sub-license, transfer, resell or otherwise distribute\ + \ the Software or any part thereof.\n 3.3. You may not remove or obscure any copyright notices\ + \ relating to the Software.\n\n4. OWNERSHIP AND INTELLECTUAL PROPERTY RIGHTS\n 4.1. This\ + \ Agreement gives you limited rights to use the Software. Syncro retains any and all rights,\ + \ title and interest in and to the Software and all copies thereof, including copyrights,\ + \ patents, trade secret rights, trademarks and other intellectual property rights. All rights\ + \ not specifically granted in this Agreement, including International Copyrights, are reserved\ + \ by Syncro. The structure, organization and code of the Software are valuable trade secrets\ + \ and confidential information of Syncro. \n\n5. PATENT AND COPYRIGHT INDEMNITY\n 5.1. Syncro\ + \ will defend and indemnify You for all costs (including reasonable attorneys fees) arising\ + \ from a claim that Software furnished and used within the scope of this Agreement infringes\ + \ the copyright or other intellectual property rights protected by United States or European\ + \ Union law of any third party, provided that: (i) You notify Syncro in writing within ten\ + \ (10) business days of the claim, (ii) Syncro has sole control of the defense and all related\ + \ settlement negotiations, and (iii) You provide Syncro with the assistance, information,\ + \ and authority necessary to perform the above. \n 5.2. Syncro will have no liability for\ + \ any claim of infringement based on (i) code contained within the Software which was not\ + \ created by Syncro (ii) use of a superseded or altered release of the Software, except\ + \ for such alteration(s) or modification(s) which have been made by Syncro or under Syncro'\ + \ direction, if such infringement would have been avoided by the use of a current, unaltered\ + \ release of the Software that Syncro provides to You, or (iii)the combination, operation,\ + \ or use of any Software furnished under this Agreement with programs or data not furnished\ + \ by Syncro if such infringement would have been avoided by the use of the Software without\ + \ such programs or data. \n 5.3. In the event the Software is held or believed by Syncro\ + \ to infringe, or Your use of the Software is enjoined, Syncro will have the option, at\ + \ its expense, to (i) modify the Software to cause it to become non-infringing, (ii) obtain\ + \ for You a license to continue using the Software, (iii) substitute the Software with other\ + \ Software reasonably suitable to You, or (iv) if none of the foregoing remedies are commercially\ + \ feasible, terminate the license for the infringing Software and refund any license fees\ + \ paid for the Software, prorated over a three-year term from the effective date of the\ + \ Agreement. This Section states Syncro' entire liability for infringement. \n\n6. LIMITED\ + \ WARRANTIES\n 6.1. Syncro warrants that is holds the proper rights allowing it to license\ + \ the Software and is not currently aware of any actions that may affect its rights to do\ + \ so.\n 6.2. THE SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS, EXCEPT AS EXPRESSLY SET FORTH\ + \ ABOVE, SYNCRO MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION\ + \ ANY IMPLIED WARRANTY OR MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. WITHOUT LIMITATION,\ + \ YOU ASSUME SOLE RESPONSIBILITY FOR SELECTING THE SOFTWARE TO ACHIEVE YOUR INTENDED RESULTS\ + \ AND FOR THE INSTALLATION, USE AND RESULTS OBTAINED FROM THE SOFTWARE. SYNCRO MAKES NO\ + \ WARRANTY THAT THE SOFTWARE WILL BE ERROR FREE OR FREE FROM INTERRUPTIONS OR OTHER FAILURES.\ + \ IN PARTICULAR, THE SOFTWARE IS NOT DESIGNED FOR USE IN HAZARDOUS ENVIRONMENTS REQUIRING\ + \ FAIL-SAFE PERFORMANCE. SYNCRO EXPRESSLY DISCLAIMS ANY WARRANTY OF FITNESS FOR HIGH-RISK\ + \ ACTIVITIES.\n\n7. SUPPORT AND MAINTENANCE PACK\n 7.1. Subject to payment of the applicable\ + \ fees for Maintenance Pack under this Agreement Syncro shall provide maintenance and support\ + \ services in accordance with its standard maintenance and support terms for such services.\ + \ Syncro technical support policies are posted on Oxygen XML’s website (www.oxygenxml.com)\ + \ and Syncro reserves the right to amend and modify its technical support policies from\ + \ time to time, in its sole discretion. \n 7.2. At any time prior to the expiration of your\ + \ Maintenance Pack and fourteen (14) days after, you may purchase a renewal of your Maintenance\ + \ Pack. This additional Maintenance Pack will extend the availability of your current Maintenance\ + \ Pack for a period of time beginning with the date when your Maintenance Pack expires.\ + \ If you do not purchase any additional Maintenance Pack, you will lose the right to technical\ + \ support and Software updates and upgrades as of the date your current Maintenance Pack\ + \ expires. However, you will not lose the right to use the Software or the technical support,updates\ + \ and upgrades provided free by Syncro.\n 7.3. If you have purchased or already own multiple\ + \ licenses and you elect to purchase or renew their Maintenance Pack, you must purchase\ + \ a Maintenance Pack for each license.\n 7.4. Technical support incidents can be submitted\ + \ via e-mail or by phone. Syncro will use its best efforts to provide you with technical\ + \ support within forty-eight (48) business hours of your request. \n 7.5. The latest information\ + \ regarding Maintenance Pack (terms and conditions, prices, online purchase, etc.) is provided\ + \ on the web site at: http://www.oxygenxml.com/support.html.\n\n8. LIMITATION OF LIABILITY\n\ + \ 8.1. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL SYNCRO OR ITS\ + \ SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER\ + \ (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS OR CONFIDENTIAL OR OTHER INFORMATION,\ + \ FOR BUSINESS INTERRUPTION, FOR PERSONAL INJURY, FOR LOSS OF PRIVACY, FOR FAILURE TO MEET\ + \ ANY DUTY INCLUDING OF GOOD FAITH OR OF REASONABLE CARE, FOR NEGLIGENCE, AND FOR ANY OTHER\ + \ PECUNIARY OR OTHER LOSS WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OR\ + \ INABILITY TO USE THE SOFTWARE, THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES,\ + \ OR OTHERWISE UNDER OR IN CONNECTION WITH ANY PROVISION OF THIS EULA, EVEN IN EVENT OF\ + \ FAULT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, BREACH OF CONTRACT OR BREACH OF\ + \ WARRANTY OF SYNCRO OR ANY SUPPLIER, AND EVEN IF SYNCRO OR ANY SUPPLIER HAS BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES. IN ANY CASE, SYNCRO ENTIRE LIABILITY UNDER ANY PROVISION\ + \ OF THIS EULA SHALL BE LIMITED TO THE GREATER OF THE AMOUNT ACTUALLY PAID BY YOU FOR THE\ + \ SOFTWARE OR U.S.$5.00. Because some states and jurisdictions do not allow the exclusion\ + \ or limitation of liability, the above limitation may not apply to you. In such states\ + \ and jurisdictions, Syncro's liability shall be limited to the greatest extent permitted\ + \ by law and the limitations or exclusions of warranties and liability contained herein\ + \ do not prejudice applicable statutory consumer rights of person acquiring goods otherwise\ + \ than in the course of business. The disclaimer and limited liability above are fundamental\ + \ to this Agreement between Syncro and you.\n\n9. HIGH RISK ACTIVITIES\n 9.1. The Software\ + \ is not fault-tolerant and is not designed, manufactured or intended for use or resale\ + \ as on-line control equipment in hazardous environments requiring fail-safe performance,\ + \ such as in the operation of nuclear facilities, aircraft navigation or communication systems,\ + \ air traffic control, direct life support machines, or weapons systems, in which the failure\ + \ of the Software could lead directly to death, personal injury, or severe physical or environmental\ + \ damage (\"High Risk Activities\"). Syncro and its suppliers specifically disclaim any\ + \ express or implied warranty of fitness for High Risk Activities.\n\n10. THIRD PARTY SOFTWARE\n\ + \ 10.1. The Software contains the following third party software that requires additional\ + \ terms and conditions: \n 10.1.1. jQuery JavaScript Library and jQuery Plug-Ins\n 10.1.2.\ + \ jQuery Mobile JavaScript LibraryThe required third party software notices and/or additional\ + \ terms and conditions are located at: http://www.oxygenxml.com/thirdparty/index.html and\ + \ are made a part of and incorporated by reference into this Agreement. By accepting this\ + \ Agreement, You are also accepting the additional terms and conditions, if any, forth therein.\n\ + \n11. TERMINATION\n 11.1. You may terminate the Agreement at any time by destroying all\ + \ copies of the Software. Syncro may terminate the Agreement and license granted herein\ + \ immediately if you breach any provision of this Agreement or at the request of an authorized\ + \ Syncro reseller in the event that you fail to make your license payment or other monies\ + \ due and payable. \n\n12. EXPORT REGULATIONS\n 12.1. You acknowledge that the Software\ + \ may be subject to export restrictions of various countries. You shall fully comply with\ + \ all applicable export license restrictions and requirements as well as with all laws and\ + \ regulations relating to the importation of the Software, in the United States and in any\ + \ foreign jurisdiction in which the Software is used. Without limiting the foregoing, the\ + \ Software may not be downloaded or otherwise exported or re-exported (i) into (or to a\ + \ national or resident of) any country to which the U.S. has embargoed goods; or (ii) to\ + \ anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the\ + \ U.S. Commerce Department's Table of Denial Orders. By downloading or using the Software,\ + \ you are agreeing to the foregoing and you are representing and warranting that you are\ + \ not located in, under the control of, or a national or resident of any such country or\ + \ on any such list.\n\n13. GENERAL\n 13.1. Syncro makes efforts to provide updates or new\ + \ versions of the Software, but Syncro reserves the right at any time not to release updates\ + \ or new versions of the Software or, if released, to alter prices, features, specifications,\ + \ capabilities, functions, licensing terms, release dates, general availability or other\ + \ characteristics of the Software. \n 13.2. If any provision hereof shall be held illegal,\ + \ invalid or unenforceable, in whole or in part, such provision shall be modified to the\ + \ minimum extent necessary to make it legal, valid and enforceable, and the legality, validity\ + \ and enforceability of all other provisions of this Agreement shall not be affected. \n\ + \ 13.3. This Agreement will be governed by and construed in accordance with the laws of\ + \ England and Wales. In the event of any disputes arising out of the interpretation or performance\ + \ of this Agreement, the parties shall endeavor to settle the matter out of court prior\ + \ to any court action. If no agreement can be reached to settle a dispute concerning the\ + \ interpretation or performance of this Agreement, the competent courts of England and Wales\ + \ shall have exclusive jurisdiction. Service of process upon either party shall be valid\ + \ if served by registered or certified mail, return receipt requested and to the most current\ + \ address provided by such party. The United Nations Convention on Contracts for the International\ + \ Sale of Goods shall not apply to this Agreement. \n 13.4. You may not assign this Agreement\ + \ in whole or in part, without Syncro prior written consent. Any attempt by You to assign\ + \ this Agreement without such consent will be null and void. \n 13.5. This Agreement constitutes\ + \ the entire agreement between Syncro and You related to the Software and supersedes any\ + \ and all previous and contemporaneous understandings or agreements between the parties\ + \ with respect to the same subject matter. No purchase order, other ordering document or\ + \ any other document which purports to modify or supplement this Agreement shall add to\ + \ or vary the terms and conditions of this Agreement unless executed by both Syncro and\ + \ You. Syncro's acceptance of any purchase order placed by You is expressly made conditional\ + \ on your assent to the terms set forth in this Agreement, and not those contained in your\ + \ purchase order, and such purchase order terms shall have no effect on this Agreement.\ + \ All questions concerning this Agreement shall be directed to support@oxygenxml.com" json: oxygen-xml-webhelp-eula.json - yml: oxygen-xml-webhelp-eula.yml + yaml: oxygen-xml-webhelp-eula.yml html: oxygen-xml-webhelp-eula.html - text: oxygen-xml-webhelp-eula.LICENSE + license: oxygen-xml-webhelp-eula.LICENSE - license_key: ozplb-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-ozplb-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Australian Public Licence B Version 1-0 + OZPLB Licence + + Version 1-0 + Copyright (c) 2006, National ICT Australia, Ltd + All rights reserved. + + Developed by: Embedded, Real-time and Operating Systems Program (ERTOS) + National ICT Australia + http://www.ertos.nicta.com.au + + Permission is granted by National ICT Australia, free of charge, to any person obtaining a copy of this software and any associated documentation files (the "Software") to deal with the software without restriction, including (without limitation) the rights to use, copy, modify, adapt, merge, publish, distribute, communicate to the public, sublicense, and/or sell, lend or rent out copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimers in the documentation and/or other materials provided + with the distribution. + + * Neither the name of National ICT Australia, nor the names of its + contributors, may be used to endorse or promote products derived + from this Software without specific prior written permission. + + EXCEPT AS EXPRESSLY STATED IN THIS LICENCE AND TO THE FULL EXTENT PERMITTED BY APPLICABLE LAW, THE SOFTWARE IS PROVIDED "AS-IS", AND NATIONAL ICT AUSTRALIA AND ITS CONTRIBUTORS MAKE NO REPRESENTATIONS, WARRANTIES OR CONDITIONS OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY REPRESENTATIONS, WARRANTIES OR CONDITIONS REGARDING THE CONTENTS OR ACCURACY OF THE SOFTWARE, OR OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, THE ABSENCE OF LATENT OR OTHER DEFECTS, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. + + TO THE FULL EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL NATIONAL ICT AUSTRALIA OR ITS CONTRIBUTORS BE LIABLE ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHERWISE) FOR ANY CLAIM, LOSS, DAMAGES OR OTHER LIABILITY, INCLUDING (WITHOUT LIMITATION) LOSS OF PRODUCTION OR OPERATION TIME, LOSS, DAMAGE OR CORRUPTION OF DATA OR RECORDS; OR LOSS OF ANTICIPATED SAVINGS, OPPORTUNITY, REVENUE, PROFIT OR GOODWILL, OR OTHER ECONOMIC LOSS; OR ANY SPECIAL, INCIDENTAL, INDIRECT, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES, ARISING OUT OF OR IN CONNECTION WITH THIS LICENCE, THE SOFTWARE OR THE USE OF OR OTHER DEALINGS WITH THE SOFTWARE, EVEN IF NATIONAL ICT AUSTRALIA OR ITS + CONTRIBUTORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH CLAIM, LOSS, DAMAGES OR OTHER LIABILITY. + + If applicable legislation implies representations, warranties, or conditions, or imposes obligations or liability on National ICT Australia or one of its contributors in respect of the Software that + cannot be wholly or partly excluded, restricted or modified, the liability of National ICT Australia or the contributor is limited, to the full extent permitted by the applicable legislation, at its + option, to: + a. in the case of goods, any one or more of the following: + i. the replacement of the goods or the supply of equivalent goods; + ii. the repair of the goods; + iii. the payment of the cost of replacing the goods or of acquiring + equivalent goods; + iv. the payment of the cost of having the goods repaired; or + b. in the case of services: + i. the supplying of the services again; or + ii. the payment of the cost of having the services supplied again. + + The construction, validity and performance of this licence is governed by the laws in force in New South Wales, Australia. json: ozplb-1.0.json - yml: ozplb-1.0.yml + yaml: ozplb-1.0.yml html: ozplb-1.0.html - text: ozplb-1.0.LICENSE + license: ozplb-1.0.LICENSE - license_key: ozplb-1.1 + category: Permissive spdx_license_key: LicenseRef-scancode-ozplb-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Australian Public Licence B (OZPLB)\n\nVersion 1-1\n\nCopyright (c) 2006, P2P Networks\ + \ and Applications Research Group, The University\nof Melbourne\n\nAll rights reserved.\n\ + \nDeveloped by: P2P Networks and Applications Research Group\n The University\ + \ of Melbourne, Australia\n http://www.cs.mu.oz.au/p2p\n\nWhere the country\ + \ of The University of Melbourne (as indicated above) is not \nAustralia, permission is\ + \ granted by The University of Melbourne, free of charge, \nto any person obtaining a copy\ + \ of this software and any associated documentation \nfiles (the \"Software\") to deal with\ + \ the Software, without restriction, under the \nterms of the University of Illinois/NCSA\ + \ Open Source License (available at \nhttp://www.opensource.org/licenses/UoI-NCSA.php),\ + \ in which case the provisions \nof the University of Illinois/NCSA Open Source License\ + \ are applicable instead of \nthose of this licence.\n\nPermission is otherwise granted\ + \ by The University of Melbourne, free of charge, \nto any person obtaining a copy of the\ + \ Software to deal with the Software without\nrestriction, including (without limitation)\ + \ the rights to use, copy, modify, \nadapt, merge, publish, distribute, communicate to the\ + \ public, sublicense, and/or \nsell, lend or rent out copies of the Software, and to permit\ + \ persons to whom the \nSoftware is furnished to do so, subject to the following conditions:\n\ + \n- Redistributions of source code must retain the above copyright notice, the \n above\ + \ permissions, this list of conditions and the following disclaimers and \n limitations.\ + \ \n\n- Redistributions in binary form must reproduce the above copyright notice, the \n\ + \ above permissions, this list of conditions and the following disclaimers in \n the documentation\ + \ and/or other materials provided with the distribution and \n limitations. \n\n- Neither\ + \ the name of The University of Melbourne, nor the names of its \n contributors, may be\ + \ used to endorse or promote products derived from this \n Software without specific prior\ + \ written permission. \n\n- The construction, validity and performance of this licence is\ + \ governed by the \n laws in force in Victoria, Australia.\n\nEXCEPT AS EXPRESSLY STATED\ + \ IN THIS LICENCE AND TO THE FULL EXTENT PERMITTED BY \nAPPLICABLE LAW, THE SOFTWARE IS\ + \ PROVIDED \"AS-IS\", AND The University of \nMelboune AND ITS CONTRIBUTORS MAKE NO REPRESENTATIONS,\ + \ WARRANTIES OR CONDITIONS \nOF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\ + \ TO ANY \nREPRESENTATIONS, WARRANTIES OR CONDITIONS REGARDING THE CONTENTS OR ACCURACY\ + \ OF \nTHE SOFTWARE, OR OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, \n\ + NONINFRINGEMENT, THE ABSENCE OF LATENT OR OTHER DEFECTS, OR THE PRESENCE OR \nABSENCE OF\ + \ ERRORS, WHETHER OR NOT DISCOVERABLE.\n\nTO THE FULL EXTENT PERMITTED BY APPLICABLE LAW,\ + \ IN NO EVENT SHALL The University\nof Melbourne OR ITS CONTRIBUTORS BE LIABLE ON ANY LEGAL\ + \ THEORY (INCLUDING, \nWITHOUT LIMITATION, IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHERWISE)\ + \ FOR ANY \nCLAIM, LOSS, DAMAGES OR OTHER LIABILITY, INCLUDING (WITHOUT LIMITATION) LOSS\ + \ OF \nPRODUCTION OR OPERATION TIME, LOSS, DAMAGE OR CORRUPTION OF DATA OR RECORDS; OR \n\ + LOSS OF ANTICIPATED SAVINGS, OPPORTUNITY, REVENUE, PROFIT OR GOODWILL, OR OTHER \nECONOMIC\ + \ LOSS; OR ANY SPECIAL, INCIDENTAL, INDIRECT, CONSEQUENTIAL, PUNITIVE OR \nEXEMPLARY DAMAGES,\ + \ ARISING OUT OF OR IN CONNECTION WITH THIS LICENCE, THE \nSOFTWARE OR THE USE OF OR OTHER\ + \ DEALINGS WITH THE SOFTWARE, EVEN IF The \nUniversity of Melbourne OR ITS CONTRIBUTORS\ + \ HAVE BEEN ADVISED OF THE POSSIBILITY \nOF SUCH CLAIM, LOSS, DAMAGES OR OTHER LIABILITY.\n\ + \nIf applicable legislation implies representations, warranties, or conditions, or\nimposes\ + \ obligations or liability on The University of Melbourne or one of its \ncontributors in\ + \ respect of the Software that cannot be wholly or partly excluded, \nrestricted or modified,\ + \ the liability of The University of Melbourne or the \ncontributor is limited, to the full\ + \ extent permitted by the applicable \nlegislation, at its option, to:\n\na. in the case\ + \ of goods, any one or more of the following:\n\ni. the replacement of the goods or the\ + \ supply of equivalent goods;\nii. the repair of the goods;\niii. the payment of the cost\ + \ of replacing the goods or of acquiring equivalent \n goods;\niv. the payment of the\ + \ cost of having the goods repaired; or\n\nb. in the case of services:\n\ni. the supplying\ + \ of the services again; or\nii. the payment of the cost of having the services supplied\ + \ again." json: ozplb-1.1.json - yml: ozplb-1.1.yml + yaml: ozplb-1.1.yml html: ozplb-1.1.html - text: ozplb-1.1.LICENSE + license: ozplb-1.1.LICENSE - license_key: paint-net + category: Proprietary Free spdx_license_key: LicenseRef-scancode-paint-net other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Paint.NET is free for use in any environment, including but not necessarily limited\ + \ to: personal, academic, commercial, government, business, non-profit, and for-profit.\ + \ \"Free\" in the preceding sentence means that there is no cost or charge associated with\ + \ the installation and use of Paint.NET. Donations are always appreciated, of course! http://www.getpaint.net/donate.html\ + \ \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this\ + \ software (the \"Software\"), to use the Software without restriction, including the rights\ + \ to use, copy, publish, and distribute the Software, and to permit persons to whom the\ + \ Software is furnished to do so.\n\nYou may not modify, adapt, rent, lease, loan, sell,\ + \ or create derivative works based upon the Software or any part thereof. However, certain\ + \ icons used in the Paint.NET user interface are from or adapted from those in the \"Crystal\"\ + \ icon set, http://www.everaldo.com/crystal/, or the \"Oxygen\" icon set, http://www.oxygen-icons.org/.\ + \ These icons are covered by the LGPL license, http://www.gnu.org/copyleft/lesser.html.\ + \ These icons are stored as \"loose\" PNG image files in the Resources\\en-US\\ directory\ + \ where Paint.NET is installed.\n\nThe above copyright notice and this permission notice\ + \ shall be included in all copies of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\"\ + , WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\ + \ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT\ + \ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\ + \ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\ + \ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." json: paint-net.json - yml: paint-net.yml + yaml: paint-net.yml html: paint-net.html - text: paint-net.LICENSE + license: paint-net.LICENSE - license_key: paolo-messina-2000 + category: Permissive spdx_license_key: LicenseRef-scancode-paolo-messina-2000 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Free for non-commercial and commercial use, provided that the original author's name and copyright is quoted somewhere in the final executable and in the program's help or documentation. + + You may change the code to your needs, provided that credits to the original author are given in the modified files. + + Also a copy of your enhancements would be nice, but it's not required. Please, consider to share your work on CodeProject. json: paolo-messina-2000.json - yml: paolo-messina-2000.yml + yaml: paolo-messina-2000.yml html: paolo-messina-2000.html - text: paolo-messina-2000.LICENSE + license: paolo-messina-2000.LICENSE - license_key: paraview-1.2 + category: Permissive spdx_license_key: LicenseRef-scancode-paraview-1.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Parts of ParaView are under the following licenses:\n\nParaView License Version 1.2\n\ + ========================================================================\n\nCopyright (c)\ + \ 2005-2008 Sandia Corporation, Kitware Inc.\n\nSandia National Laboratories, New Mexico\n\ + PO Box 5800\nAlbuquerque, NM 87185\n\nKitware Inc.\n28 Corporate Drive\nClifton Park, NY\ + \ 12065\nUSA\n\nUnder the terms of Contract DE-AC04-94AL85000, there is a\nnon-exclusive\ + \ license for use of this work by or on behalf of the\nU.S. Government. \n\nRedistribution\ + \ and use in source and binary forms, with or without\nmodification, are permitted provided\ + \ that the following conditions are\nmet:\n\n * Redistributions of source code must retain\ + \ the above copyright\n notice, this list of conditions and the following disclaimer.\n\ + \n * Redistributions in binary form must reproduce the above copyright\n notice, this\ + \ list of conditions and the following disclaimer in the\n documentation and/or other\ + \ materials provided with the\n distribution.\n\n * Neither the name of Kitware nor the\ + \ names of any contributors may\n be used to endorse or promote products derived from\ + \ this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED\ + \ BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\ + \ INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\ + \ FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR\nCONTRIBUTORS\ + \ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL\ + \ DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\ + \ LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY\ + \ OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR\ + \ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE\ + \ POSSIBILITY OF SUCH DAMAGE.\n========================================================================\n\ + \nOther licenses:\n\n========================================================================\n\ + \nCopyright (c) 2000-2005 Kitware Inc. 28 Corporate Drive, Suite 204,\nClifton Park, NY,\ + \ 12065, USA.\nAll rights reserved.\n\nRedistribution and use in source and binary forms,\ + \ with or without\nmodification, are permitted provided that the following conditions are\n\ + met:\n\n * Redistributions of source code must retain the above copyright\n notice, this\ + \ list of conditions and the following disclaimer.\n\n * Redistributions in binary form\ + \ must reproduce the above copyright\n notice, this list of conditions and the following\ + \ disclaimer in the\n documentation and/or other materials provided with the\n distribution.\n\ + \n * Neither the name of Kitware nor the names of any contributors may\n be used to endorse\ + \ or promote products derived from this software\n without specific prior written permission.\n\ + \nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n``AS IS'' AND ANY\ + \ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES\ + \ OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\ + \ THE AUTHORS OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n\ + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE\ + \ GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED\ + \ AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n\ + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGE.\n\n========================================================================\n\ + \nCopyright (c) 2002-2005 Los Alamos National Laboratory\n\nThis software and ancillary\ + \ information known as vtk_ext (and herein\ncalled \"SOFTWARE\") is made available under\ + \ the terms described below.\nThe SOFTWARE has been approved for release with associated\ + \ LA_CC\nNumber 99-44, granted by Los Alamos National Laboratory in July 1999.\n\nUnless\ + \ otherwise indicated, this SOFTWARE has been authored by an\nemployee or employees of the\ + \ University of California, operator of the\nLos Alamos National Laboratory under Contract\ + \ No. W-7405-ENG-36 with\nthe United States Department of Energy.\n\nThe United States Government\ + \ has rights to use, reproduce, and\ndistribute this SOFTWARE. The public may copy, distribute,\ + \ prepare\nderivative works and publicly display this SOFTWARE without charge,\nprovided\ + \ that this Notice and any statement of authorship are\nreproduced on all copies.\n\nNeither\ + \ the U. S. Government, the University of California, nor the\nAdvanced Computing Laboratory\ + \ makes any warranty, either express or\nimplied, nor assumes any liability or responsibility\ + \ for the use of\nthis SOFTWARE.\n\nIf SOFTWARE is modified to produce derivative works,\ + \ such modified\nSOFTWARE should be clearly marked, so as not to confuse it with the\nversion\ + \ available from Los Alamos National Laboratory.\n\n========================================================================\n\ + \nVTK License\n\n========================================================================\n\ + \nCopyright (c) 2000-2006 Kitware Inc. 28 Corporate Drive, Suite 204,\nClifton Park, NY,\ + \ 12065, USA.\nAll rights reserved.\n\nRedistribution and use in source and binary forms,\ + \ with or without\nmodification, are permitted provided that the following conditions are\n\ + \ met:\n\n * Redistributions of source code must retain the above copyright\n notice,\ + \ this list of conditions and the following disclaimer.\n\n * Redistributions in binary\ + \ form must reproduce the above copyright\n notice, this list of conditions and the following\ + \ disclaimer in the\n documentation and/or other materials provided with the\n distribution.\n\ + \n * Neither the name of Kitware nor the names of any contributors may\n be used to endorse\ + \ or promote products derived from this software\n without specific prior written permission.\n\ + \nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n``AS IS'' AND ANY\ + \ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES\ + \ OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\ + \ THE AUTHORS OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n\ + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE\ + \ GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED\ + \ AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n\ + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGE.\n\n========================================================================\n\ + \nHDF5 License\n\n========================================================================\n\ + \nNCSA HDF5 (Hierarchical Data Format 5) Software Library and Utilities\nCopyright 1998,\ + \ 1999, 2000, 2001, 2002, 2003, 2004, 2005 by the Board of\nTrustees of the University of\ + \ Illinois All rights reserved.\n\nContributors: National Center for Supercomputing Applications\ + \ (NCSA) at the\nUniversity of Illinois at Urbana-Champaign (UIUC), Lawrence Livermore National\n\ + Laboratory (LLNL), Sandia National Laboratories (SNL), Los Alamos National\nLaboratory (LANL),\ + \ Jean-loup Gailly and Mark Adler (gzip library).\n\nRedistribution and use in source and\ + \ binary forms, with or without\nmodification, are permitted for any purpose (including\ + \ commercial purposes)\nprovided that the following conditions are met:\n\n 1. Redistributions\ + \ of source code must retain the above copyright notice,\n this list of conditions,\ + \ and the following disclaimer.\n 2. Redistributions in binary form must reproduce the\ + \ above copyright notice,\n this list of conditions, and the following disclaimer in\ + \ the\n documentation and/or materials provided with the distribution.\n 3. In addition,\ + \ redistributions of modified forms of the source or binary\n code must carry prominent\ + \ notices stating that the original code was\n changed and the date of the change.\n\ + \ 4. All publications or advertising materials mentioning features or use of\n this\ + \ software are asked, but not required, to acknowledge that it was\n developed by the\ + \ National Center for Supercomputing Applications at the\n University of Illinois at\ + \ Urbana-Champaign and to credit the\n contributors.\n 5. Neither the name of the\ + \ University nor the names of the Contributors may\n be used to endorse or promote\ + \ products derived from this software without\n specific prior written permission from\ + \ the University or the\n Contributors, as appropriate for the name(s) to be used.\n\ + \ 6. THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY AND THE CONTRIBUTORS \"AS IS\"\n \ + \ WITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED. In no event\n shall the\ + \ University or the Contributors be liable for any damages\n suffered by the users\ + \ arising out of the use of this software, even if\n advised of the possibility of\ + \ such damage. \n\nPortions of HDF5 were developed with support from the University of California,\n\ + Lawrence Livermore National Laboratory (UC LLNL). The following statement\napplies to those\ + \ portions of the product and must be retained in any\nredistribution of source code, binaries,\ + \ documentation, and/or accompanying\nmaterials:\nThis work was partially produced at the\ + \ University of California, Lawrence\nLivermore National Laboratory (UC LLNL) under contract\ + \ no. W-7405-ENG-48\n(Contract 48) between the U.S. Department of Energy (DOE) and The Regents\ + \ of\nthe University of California (University) for the operation of UC LLNL.\n\nDISCLAIMER:\ + \ This work was prepared as an account of work sponsored by an agency\nof the United States\ + \ Government. Neither the United States Government nor the\nUniversity of California nor\ + \ any of their employees, makes any warranty,\nexpress or implied, or assumes any liability\ + \ or responsibility for the\naccuracy, completeness, or usefulness of any information, apparatus,\ + \ product,\nor process disclosed, or represents that its use would not infringe privately-\n\ + owned rights. Reference herein to any specific commercial products, process, or\nservice\ + \ by trade name, trademark, manufacturer, or otherwise, does not\nnecessarily constitute\ + \ or imply its endorsement, recommendation, or favoring by\nthe United States Government\ + \ or the University of California. The views and\nopinions of authors expressed herein do\ + \ not necessarily state or reflect those\nof the United States Government or the University\ + \ of California, and shall not\nbe used for advertising or product endorsement purposes.\ + \ \n\n========================================================================\n\nXdmf License\n\ + \n========================================================================\n\nCopyright\ + \ (c) 2002 U.S. Army Research Laboratory \nAll rights reserved.\n\nRedistribution and use\ + \ in source and binary forms, with or without\nmodification, are permitted provided that\ + \ the following conditions are met:\n\n * Redistributions of source code must retain the\ + \ above copyright notice,\n this list of conditions and the following disclaimer.\n\n\ + \ * Redistributions in binary form must reproduce the above copyright notice,\n this list\ + \ of conditions and the following disclaimer in the documentation\n and/or other materials\ + \ provided with the distribution.\n\n * Neither the name of the U.S. Army Research Laboratory\ + \ nor the names\n of any contributors may be used to endorse or promote products derived\n\ + \ from this software without specific prior written permission.\n\n * Modified source\ + \ versions must be plainly marked as such, and must not be\n misrepresented as being the\ + \ original software.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\ + \ ``AS IS''\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n\ + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED.\ + \ IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL,\ + \ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\ + \ OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\ + \ HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n\ + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE,\ + \ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." json: paraview-1.2.json - yml: paraview-1.2.yml + yaml: paraview-1.2.yml html: paraview-1.2.html - text: paraview-1.2.LICENSE + license: paraview-1.2.LICENSE - license_key: parity-6.0.0 + category: Copyleft spdx_license_key: Parity-6.0.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + The Parity Public License 6.0.0 + + Contributor: contributor name + + Source Code: source + + This license lets you use and share this software for free, as long as you contribute software you make with it. Specifically: + + If you follow the rules below, you may do everything with this software that would otherwise infringe either the contributor's copyright in it, any patent claim the contributor can license, or both. + + 1. Contribute changes and additions you make to this software. + + 2. If you combine this software with other software, contribute that other software. + + 3. Contribute software you develop, deploy, monitor, or run with this software. + + 4. Ensure everyone who gets a copy of this software from you, in source code or any other form, gets the text of this license and the contributor and source code lines above. + + 5. Do not make any legal claim against anyone accusing this software, with or without changes, alone or with other software, of infringing any patent claim. + + To contribute software, publish all its source code, in the preferred form for making changes, through a freely accessible distribution system widely used for similar source code, and license contributions not already licensed to the public on terms as permissive as this license accordingly. + + You are excused for unknowingly breaking 1, 2, or 3 if you contribute as required, or stop doing anything requiring this license, within 30 days of learning you broke the rule. + + **As far as the law allows, this software comes as is, without any warranty, and the contributor will not be liable to anyone for any damages related to this software or this license, for any kind of legal claim.** json: parity-6.0.0.json - yml: parity-6.0.0.yml + yaml: parity-6.0.0.yml html: parity-6.0.0.html - text: parity-6.0.0.LICENSE + license: parity-6.0.0.LICENSE - license_key: parity-7.0.0 + category: Copyleft spdx_license_key: Parity-7.0.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + The Parity Public License 7.0.0 + + Contributor: contributor name + + Source Code: source + + Purpose + This license allows you to use and share this software for free, but you have to share software that builds on it alike. + + Agreement + In order to receive this license, you have to agree to its rules. Those rules are both obligations under that agreement and conditions to your license. Don’t do anything with this software that triggers a rule you can’t or won’t follow. + + Notices + Make sure everyone who gets a copy of any part of this software from you, with or without changes, also gets the text of this license and the contributor and source code lines above. + + Copyleft + Contribute software you develop, operate, or analyze with this software, including changes or additions to this software. When in doubt, contribute. + + Prototypes + You don’t have to contribute any change, addition, or other software that meets all these criteria: + + You don’t use it for more than thirty days. + + You don’t share it outside the team developing it, other than for non-production user testing. + + You don’t develop, operate, or analyze other software with it for anyone outside the team developing it. + + Reverse Engineering + You may use this software to operate and analyze software you can’t contribute in order to develop alternatives you can and do contribute. + + Contribute + To contribute software: + + Publish all source code for the software in the preferred form for making changes through a freely accessible distribution system widely used for similar source code so the contributor and others can find and copy it. + + Make sure every part of the source code is available under this license or another license that allows everything this license does, such as the Blue Oak Model License 1.0.0, the Apache License 2.0, the MIT license, or the two-clause BSD license. + + Take these steps within thirty days. + + Note that this license does not allow you to change the license terms for this software. You must follow Notices. + + Excuse + You’re excused for unknowingly breaking Copyleft if you contribute as required, or stop doing anything requiring this license, within thirty days of learning you broke the rule. You’re excused for unknowingly breaking Notices if you take all practical steps to comply within thirty days of learning you broke the rule. + + Defense + Don’t make any legal claim against anyone accusing this software, with or without changes, alone or with other technology, of infringing any patent. + + Copyright + The contributor licenses you to do everything with this software that would otherwise infringe their copyright in it. + + Patent + The contributor licenses you to do everything with this software that would otherwise infringe any patents they can license or become able to license. + + Reliability + The contributor can’t revoke this license. + + No Liability + As far as the law allows, this software comes as is, without any warranty or condition, and the contributor won’t be liable to anyone for any damages related to this software or this license, under any kind of legal claim. json: parity-7.0.0.json - yml: parity-7.0.0.yml + yaml: parity-7.0.0.yml html: parity-7.0.0.html - text: parity-7.0.0.LICENSE + license: parity-7.0.0.LICENSE - license_key: passive-aggressive + category: Proprietary Free spdx_license_key: LicenseRef-scancode-passive-aggressive other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Permission is hereby given to the user, with free of charge, to any person obtaining a copy of this software and its all associated documentation files, to deal in the software without restriction, including without limitation the rights to copy, modify, merge, publish, distribute, sublicense, and/orsell copies of the Software, but NOT including the right to run, execute or use the Software or any executable binaries built from the source code. + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE json: passive-aggressive.json - yml: passive-aggressive.yml + yaml: passive-aggressive.yml html: passive-aggressive.html - text: passive-aggressive.LICENSE + license: passive-aggressive.LICENSE - license_key: patent-disclaimer + category: Permissive spdx_license_key: LicenseRef-scancode-patent-disclaimer other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: json: patent-disclaimer.json - yml: patent-disclaimer.yml + yaml: patent-disclaimer.yml html: patent-disclaimer.html - text: patent-disclaimer.LICENSE + license: patent-disclaimer.LICENSE - license_key: paul-hsieh-derivative + category: Free Restricted spdx_license_key: LicenseRef-scancode-paul-hsieh-derivative other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Paul Hsieh derivative license + + The derivative content includes raw computer source code, ideas, opinions, and + excerpts whose original source is covered under another license and + transformations of such derivatives. Note that mere excerpts by themselves (with + the exception of raw source code) are not considered derivative works under this + license. Use and redistribution is limited to the following conditions: + + One may not create a derivative work which, in any way, violates the Paul + Hsieh exposition license described above on the original content. + + One may not apply a license to a derivative work that precludes anyone else + from using and redistributing derivative content. + + One may not attribute any derivative content to authors not involved in the + creation of the content, though an attribution to the author is not + necessary. json: paul-hsieh-derivative.json - yml: paul-hsieh-derivative.yml + yaml: paul-hsieh-derivative.yml html: paul-hsieh-derivative.html - text: paul-hsieh-derivative.LICENSE + license: paul-hsieh-derivative.LICENSE - license_key: paul-hsieh-exposition + category: Free Restricted spdx_license_key: LicenseRef-scancode-paul-hsieh-exposition other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Paul Hsieh exposition license + The content of all text, figures, tables and displayed layout is copyrighted by its author and owner Paul Hsieh unless specifically denoted otherwise. Redistribution is limited to the following conditions: + + The redistributor must fully attribute the content's authorship and make a good faith effort to cite the original location of the original content. + + The content may not be modified via excerpt or otherwise with the exception of additional citations such as described above without prior consent of Paul Hsieh. + + The content may not be subject to a change in license without prior consent of Paul Hsieh. + + The content may be used for commercial purposes. json: paul-hsieh-exposition.json - yml: paul-hsieh-exposition.yml + yaml: paul-hsieh-exposition.yml html: paul-hsieh-exposition.html - text: paul-hsieh-exposition.LICENSE + license: paul-hsieh-exposition.LICENSE - license_key: paul-mackerras + category: Permissive spdx_license_key: LicenseRef-scancode-paul-mackerras other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 name(s) of the authors of this software must not be used to + endorse or promote products derived from this software without + prior written permission. + + 3. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by Paul Mackerras + ". + + THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO + THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS, IN NO EVENT SHALL THE AUTHORS 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. json: paul-mackerras.json - yml: paul-mackerras.yml + yaml: paul-mackerras.yml html: paul-mackerras.html - text: paul-mackerras.LICENSE + license: paul-mackerras.LICENSE - license_key: paul-mackerras-binary + category: Permissive spdx_license_key: LicenseRef-scancode-paul-mackerras-binary other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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(s) of the authors of this software must not be used to + endorse or promote products derived from this software without + prior written permission. + + 4. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by Paul Mackerras + ". + + THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO + THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS, IN NO EVENT SHALL THE AUTHORS 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. json: paul-mackerras-binary.json - yml: paul-mackerras-binary.yml + yaml: paul-mackerras-binary.yml html: paul-mackerras-binary.html - text: paul-mackerras-binary.LICENSE + license: paul-mackerras-binary.LICENSE - license_key: paul-mackerras-new + category: Permissive spdx_license_key: LicenseRef-scancode-paul-mackerras-new other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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(s) of the authors of this software must not be used to + endorse or promote products derived from this software without + prior written permission. + + THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO + THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS, IN NO EVENT SHALL THE AUTHORS 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. json: paul-mackerras-new.json - yml: paul-mackerras-new.yml + yaml: paul-mackerras-new.yml html: paul-mackerras-new.html - text: paul-mackerras-new.LICENSE + license: paul-mackerras-new.LICENSE - license_key: paul-mackerras-simplified + category: Permissive spdx_license_key: LicenseRef-scancode-paul-mackerras-simplified other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 name(s) of the authors of this software must not be used to + endorse or promote products derived from this software without + prior written permission. + + THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO + THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS, IN NO EVENT SHALL THE AUTHORS 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. json: paul-mackerras-simplified.json - yml: paul-mackerras-simplified.yml + yaml: paul-mackerras-simplified.yml html: paul-mackerras-simplified.html - text: paul-mackerras-simplified.LICENSE + license: paul-mackerras-simplified.LICENSE - license_key: paulo-soares + category: Permissive spdx_license_key: LicenseRef-scancode-paulo-soares other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + These specific metrics files were created by Paulo Soares and may be used, + copied, and distributed for any purpose and without charge, with or without + modification. json: paulo-soares.json - yml: paulo-soares.yml + yaml: paulo-soares.yml html: paulo-soares.html - text: paulo-soares.LICENSE + license: paulo-soares.LICENSE - license_key: paypal-sdk-2013-2016 + category: Permissive spdx_license_key: LicenseRef-scancode-paypal-sdk-2013-2016 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The PayPal SDK is released under the following license:\n\nCopyright (c) 2013-2016\ + \ PAYPAL, INC.\n\nSDK LICENSE\n\nNOTICE TO USER: PayPal, Inc. is providing the Software\ + \ and Documentation for use under the terms of \nthis Agreement. Any use, reproduction,\ + \ modification or distribution of the Software or Documentation, \nor any derivatives or\ + \ portions hereof, constitutes your acceptance of this Agreement.\n\nAs used in this Agreement,\ + \ \"PayPal\" means PayPal, Inc. \"Software\" means the software code accompanying\nthis\ + \ agreement. \"Documentation\" means the documents, specifications and all other items accompanying\ + \ \nthis Agreement other than the Software. \n\n1. LICENSE GRANT Subject to the terms\ + \ of this Agreement, PayPal hereby grants you a non-exclusive, \nworldwide, royalty free\ + \ license to use, reproduce, prepare derivative works from, publicly display, \npublicly\ + \ perform, distribute and sublicense the Software for any purpose, provided the copyright\ + \ notice\nbelow appears in a conspicuous location within the source code of the distributed\ + \ Software and this \nlicense is distributed in the supporting documentation of the Software\ + \ you distribute. Furthermore, \nyou must comply with all third party licenses in order\ + \ to use the third party software contained in the \nSoftware.\n\nSubject to the terms of\ + \ this Agreement, PayPal hereby grants you a non-exclusive, worldwide, royalty free\nlicense\ + \ to use, reproduce, publicly display, publicly perform, distribute and sublicense the Documentation\ + \ \nfor any purpose. You may not modify the Documentation.\n\nNo title to the intellectual\ + \ property in the Software or Documentation is transferred to you under the \nterms of this\ + \ Agreement. You do not acquire any rights to the Software or the Documentation except as\ + \ \nexpressly set forth in this Agreement.\n\nIf you choose to distribute the Software in\ + \ a commercial product, you do so with the understanding that \nyou agree to defend, indemnify\ + \ and hold harmless PayPal and its suppliers against any losses, damages and \ncosts arising\ + \ from the claims, lawsuits or other legal actions arising out of such distribution. You\ + \ may \ndistribute the Software in object code form under your own license, provided that\ + \ your license agreement:\n\n(a) complies with the terms and conditions of this license\ + \ agreement; \n\n(b) effectively disclaims all warranties and conditions, express or implied,\ + \ on behalf of PayPal;\n\n(c) effectively excludes all liability for damages on behalf of\ + \ PayPal;\n\n(d) states that any provisions that differ from this Agreement are offered\ + \ by you alone and not PayPal; and\n\n(e) states that the Software is available from you\ + \ or PayPal and informs licensees how to obtain it in a \nreasonable manner on or through\ + \ a medium customarily used for software exchange. \n\n2. DISCLAIMER OF WARRANTY\nPAYPAL\ + \ LICENSES THE SOFTWARE AND DOCUMENTATION TO YOU ONLY ON AN \"AS IS\" BASIS WITHOUT WARRANTIES\ + \ OR CONDITIONS \nOF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY\ + \ WARRANTIES OR CONDITIONS OF TITLE, \nNON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR\ + \ A PARTICULAR PURPOSE. PAYPAL MAKES NO WARRANTY THAT THE \nSOFTWARE OR DOCUMENTATION WILL\ + \ BE ERROR-FREE. Each user of the Software or Documentation is solely responsible \nfor\ + \ determining the appropriateness of using and distributing the Software and Documentation\ + \ and assumes all \nrisks associated with its exercise of rights under this Agreement, including\ + \ but not limited to the risks and \ncosts of program errors, compliance with applicable\ + \ laws, damage to or loss of data, programs, or equipment, \nand unavailability or interruption\ + \ of operations. Use of the Software and Documentation is made with the \nunderstanding\ + \ that PayPal will not provide you with any technical or customer support or maintenance.\ + \ Some \nstates or jurisdictions do not allow the exclusion of implied warranties or limitations\ + \ on how long an implied \nwarranty may last, so the above limitations may not apply to\ + \ you. To the extent permissible, any implied \nwarranties are limited to ninety (90) days.\n\ + \n\n3. LIMITATION OF LIABILITY\nPAYPAL AND ITS SUPPLIERS SHALL NOT BE LIABLE FOR LOSS OR\ + \ DAMAGE ARISING OUT OF THIS AGREEMENT OR FROM THE USE \nOF THE SOFTWARE OR DOCUMENTATION.\ + \ IN NO EVENT WILL PAYPAL OR ITS SUPPLIERS BE LIABLE TO YOU OR ANY THIRD PARTY \nFOR ANY\ + \ DIRECT, INDIRECT, CONSEQUENTIAL, INCIDENTAL, OR SPECIAL DAMAGES INCLUDING LOST PROFITS,\ + \ LOST SAVINGS, \nCOSTS, FEES, OR EXPENSES OF ANY KIND ARISING OUT OF ANY PROVISION OF THIS\ + \ AGREEMENT OR THE USE OR THE INABILITY \nTO USE THE SOFTWARE OR DOCUMENTATION, HOWEVER\ + \ CAUSED AND UNDER ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY OR TORT\ + \ INCLUDING NEGLIGENCE OR OTHERWISE), EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\ + \ \nPAYPAL'S AGGREGATE LIABILITY AND THAT OF ITS SUPPLIERS UNDER OR IN CONNECTION WITH THIS\ + \ AGREEMENT SHALL BE \nLIMITED TO THE AMOUNT PAID BY YOU FOR THE SOFTWARE AND DOCUMENTATION.\ + \ \n\n4. TRADEMARK USAGE\nPayPal is a trademark PayPal, Inc. in the United States and other\ + \ countries. Such trademarks may not be used \nto endorse or promote any product unless\ + \ expressly permitted under separate agreement with PayPal. \n\n5. TERM\nYour rights under\ + \ this Agreement shall terminate if you fail to comply with any of the material terms or\ + \ \nconditions of this Agreement and do not cure such failure in a reasonable period of\ + \ time after becoming \naware of such noncompliance. If all your rights under this Agreement\ + \ terminate, you agree to cease use \nand distribution of the Software and Documentation\ + \ as soon as reasonably practicable. \n\n6. GOVERNING LAW AND JURISDICTION. This Agreement\ + \ is governed by the statutes and laws of the State of \nCalifornia, without regard to the\ + \ conflicts of law principles thereof. If any part of this Agreement is \nfound void and\ + \ unenforceable, it will not affect the validity of the balance of the Agreement, which\ + \ shall \nremain valid and enforceable according to its terms. Any dispute arising out\ + \ of or related to this Agreement \nshall be brought in the courts of Santa Clara County,\ + \ California, USA." json: paypal-sdk-2013-2016.json - yml: paypal-sdk-2013-2016.yml + yaml: paypal-sdk-2013-2016.yml html: paypal-sdk-2013-2016.html - text: paypal-sdk-2013-2016.LICENSE + license: paypal-sdk-2013-2016.LICENSE - license_key: pbl-1.0 + category: Free Restricted spdx_license_key: LicenseRef-scancode-pbl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "Permissive Binary License\n\nVersion 1.0, September 2015\n\nRedistribution. Redistribution\ + \ and use in binary form, without\nmodification, are permitted provided that the following\ + \ conditions are\nmet:\n\n1) Redistributions must reproduce the above copyright notice and\ + \ the\n following disclaimer in the documentation and/or other materials\n provided\ + \ with the distribution.\n\n2) Unless to the extent explicitly permitted by law, no reverse\n\ + \ engineering, decompilation, or disassembly of this software is\n permitted.\n\n3)\ + \ Redistribution as part of a software development kit must include the\n accompanying\ + \ file named \"DEPENDENCIES\" and any dependencies listed in\n that file.\n\n4) Neither\ + \ the name of the copyright holder nor the names of its\n contributors may be used to\ + \ endorse or promote products derived from\n this software without specific prior written\ + \ permission. \n\nLimited patent license. The copyright holders (and contributors) grant\ + \ a\nworldwide, non-exclusive, no-charge, royalty-free patent license to\nmake, have made,\ + \ use, offer to sell, sell, import, and otherwise\ntransfer this software, where such license\ + \ applies only to those patent\nclaims licensable by the copyright holders (and contributors)\ + \ that are\nnecessarily infringed by this software. This patent license shall not\napply\ + \ to any combinations that include this software. No hardware is\nlicensed hereunder.\n\ + \nIf you institute patent litigation against any entity (including a\ncross-claim or counterclaim\ + \ in a lawsuit) alleging that the software\nitself infringes your patent(s), then your rights\ + \ granted under this\nlicense shall terminate as of the date such litigation is filed.\n\ + \nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\nCONTRIBUTORS \"AS\ + \ IS.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT\nNOT LIMITED TO, THE IMPLIED WARRANTIES\ + \ OF MERCHANTABILITY AND FITNESS\nFOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\ + \ THE COPYRIGHT\nHOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\ + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, PROCUREMENT\ + \ OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION)\ + \ HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\ + \ OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n\ + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." json: pbl-1.0.json - yml: pbl-1.0.yml + yaml: pbl-1.0.yml html: pbl-1.0.html - text: pbl-1.0.LICENSE + license: pbl-1.0.LICENSE - license_key: pcre + category: Permissive spdx_license_key: LicenseRef-scancode-pcre other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "PCRE LICENCE \n------------ \n\nPCRE is a library of functions to support regular expressions\ + \ whose\nsyntax and semantics are as close as possible to those of the Perl 5\nlanguage.\n\ + \nWritten by: Philip Hazel \nUniversity of Cambridge Computing Service,\ + \ Cambridge, England. \nPhone: +44 1223 334714.\nCopyright (c) 1997-2001 University of Cambridge\n\ + \nPermission is granted to anyone to use this software for any purpose on\nany computer\ + \ system, and to redistribute it freely, subject to the\nfollowing restrictions:\n\n1. This\ + \ software is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY;\ + \ without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\ + \n2. The origin of this software must not be misrepresented, either by\nexplicit claim or\ + \ by omission. In practice, this means that if you use\nPCRE in software which you distribute\ + \ to others, commercially or\notherwise, you must put a sentence like this\n\"Regular expression\ + \ support is provided by the PCRE library package,\nwhich is open source software, written\ + \ by Philip Hazel, and copyright by\nthe University of Cambridge, England\" \n\nsomewhere\ + \ reasonably visible in your documentation and in any relevant\nfiles or online help data\ + \ or similar.\n\nA reference to the ftp site for the source, that is, to\nftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/\ + \ \nshould also be given in the documentation.\n\n3. Altered versions must be plainly marked\ + \ as such, and must not be\nmisrepresented as being the original software.\n\n4. If PCRE\ + \ is embedded in any software that is released under the GNU\nGeneral Purpose Licence (GPL),\ + \ or Lesser General Purpose Licence (LGPL),\nthen the terms of that licence shall supersede\ + \ any condition above with\nwhich it is incompatible.\n\nThe documentation for PCRE, supplied\ + \ in the \"doc\" directory, is\ndistributed under the same terms as the software itself.\n\ + \nEnd PCRE LICENCE" json: pcre.json - yml: pcre.yml + yaml: pcre.yml html: pcre.html - text: pcre.LICENSE + license: pcre.LICENSE - license_key: pd-mit + category: Permissive spdx_license_key: LicenseRef-scancode-pd-mit other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Modified MIT License for Public Domain software\n\nPublic Domain or legal equivalent\n\ + Original authorship by [authors] (the \"Authors\") in [year]\n\nPermission is hereby granted,\ + \ free of charge, to any person obtaining a \ncopy of this software and associated documentation\ + \ files (the \n\"Software\"), to deal in the Software without restriction, including \n\ + without limitation the rights to use, copy, modify, merge, publish, \ndistribute, sublicense,\ + \ and/or sell copies of the Software, and to \npermit persons to whom the Software is furnished\ + \ to do so.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\ + \ \nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF \nMERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS BE LIABLE\ + \ FOR ANY CLAIM, DAMAGES OR OTHER \nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\ + \ OTHERWISE, ARISING \nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\ + \ \nDEALINGS IN THE SOFTWARE." json: pd-mit.json - yml: pd-mit.yml + yaml: pd-mit.yml html: pd-mit.html - text: pd-mit.LICENSE + license: pd-mit.LICENSE - license_key: pd-programming + category: Permissive spdx_license_key: LicenseRef-scancode-pd-programming other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Coords.js is free for both commercial and non-commercial use and + redistribution, provided that PD'Programming's copyright and disclaimer are + retained intact. You are free to modify coords.js for your own use and + to redistribute coords.js with your modifications, provided that the + modifications are clearly documented. + + 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. Please use it AT + YOUR OWN RISK. json: pd-programming.json - yml: pd-programming.yml + yaml: pd-programming.yml html: pd-programming.html - text: pd-programming.LICENSE + license: pd-programming.LICENSE - license_key: pddl-1.0 + category: Public Domain spdx_license_key: PDDL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: "Open Data Commons – Public Domain Dedication & Licence (PDDL)\nPreamble\nThe Open Data\ + \ Commons – Public Domain Dedication & Licence is a document intended to allow you to freely\ + \ share, modify, and use this work for any purpose and without any restrictions. This licence\ + \ is intended for use on databases or their contents (\"data\"), either together or individually.\n\ + \nMany databases are covered by copyright. Some jurisdictions, mainly in Europe, have specific\ + \ special rights that cover databases called the \"sui generis\" database right. Both of\ + \ these sets of rights, as well as other legal rights used to protect databases and data,\ + \ can create uncertainty or practical difficulty for those wishing to share databases and\ + \ their underlying data but retain a limited amount of rights under a \"some rights reserved\"\ + \ approach to licensing as outlined in the Science Commons Protocol for Implementing Open\ + \ Access Data. As a result, this waiver and licence tries to the fullest extent possible\ + \ to eliminate or fully license any rights that cover this database and data. Any Community\ + \ Norms or similar statements of use of the database or data do not form a part of this\ + \ document, and do not act as a contract for access or other terms of use for the database\ + \ or data.\n\nThe position of the recipient of the work\n\nBecause this document places\ + \ the database and its contents in or as close as possible within the public domain, there\ + \ are no restrictions or requirements placed on the recipient by this document. Recipients\ + \ may use this work commercially, use technical protection measures, combine this data or\ + \ database with other databases or data, and share their changes and additions or keep them\ + \ secret. It is not a requirement that recipients provide further users with a copy of this\ + \ licence or attribute the original creator of the data or database as a source. The goal\ + \ is to eliminate restrictions held by the original creator of the data and database on\ + \ the use of it by others.\n\nThe position of the dedicator of the work\n\nCopyright law,\ + \ as with most other law under the banner of \"intellectual property\", is inherently national\ + \ law. This means that there exists several differences in how copyright and other intellectual\ + \ property rights can be relinquished, waived or licensed in the many legal jurisdictions\ + \ of the world. This is despite much harmonisation of minimum levels of protection. The\ + \ internet and other communication technologies span these many disparate legal jurisdictions\ + \ and thus pose special difficulties for a document relinquishing and waiving intellectual\ + \ property rights, including copyright and database rights, for use by the global community.\ + \ Because of this feature of intellectual property law, this document first relinquishes\ + \ the rights and waives the relevant rights and claims. It then goes on to license these\ + \ same rights for jurisdictions or areas of law that may make it difficult to relinquish\ + \ or waive rights or claims.\n\nThe purpose of this document is to enable rightsholders\ + \ to place their work into the public domain. Unlike licences for free and open source software,\ + \ free cultural works, or open content licences, rightsholders will not be able to \"dual\ + \ license\" their work by releasing the same work under different licences. This is because\ + \ they have allowed anyone to use the work in whatever way they choose. Rightsholders therefore\ + \ can't re-license it under copyright or database rights on different terms because they\ + \ have nothing left to license. Doing so creates truly accessible data to build rich applications\ + \ and advance the progress of science and the arts.\n\nThis document can cover either or\ + \ both of the database and its contents (the data). Because databases can have a wide variety\ + \ of content – not just factual data – rightsholders should use the Open Data Commons –\ + \ Public Domain Dedication & Licence for an entire database and its contents only if everything\ + \ can be placed under the terms of this document. Because even factual data can sometimes\ + \ have intellectual property rights, rightsholders should use this licence to cover both\ + \ the database and its factual data when making material available under this document;\ + \ even if it is likely that the data would not be covered by copyright or database rights.\ + \ \n\nRightsholders can also use this document to cover any copyright or database rights\ + \ claims over only a database, and leave the contents to be covered by other licences or\ + \ documents. They can do this because this document refers to the \"Work\", which can be\ + \ either – or both – the database and its contents. As a result, rightsholders need to clearly\ + \ state what they are dedicating under this document when they dedicate it.\n\nJust like\ + \ any licence or other document dealing with intellectual property, rightsholders should\ + \ be aware that one can only license what one owns. Please ensure that the rights have been\ + \ cleared to make this material available under this document.\n\nThis document permanently\ + \ and irrevocably makes the Work available to the public for any use of any kind, and it\ + \ should not be used unless the rightsholder is prepared for this to happen. \n\nPart I:\ + \ Introduction\n\nThe Rightsholder (the Person holding rights or claims over the Work) agrees\ + \ as follows: \n1.0 \tDefinitions of Capitalised Words\n\n\"Copyright\" – Includes rights\ + \ under copyright and under neighbouring rights and similarly related sets of rights under\ + \ the law of the relevant jurisdiction under Section 6.4.\n\n\"Data\" – The contents of\ + \ the Database, which includes the information, independent works, or other material collected\ + \ into the Database offered under the terms of this Document. \n\n\"Database\" – A collection\ + \ of Data arranged in a systematic or methodical way and individually accessible by electronic\ + \ or other means offered under the terms of this Document. \n\n\"Database Right\" – Means\ + \ rights over Data resulting from the Chapter III (\"sui generis\") rights in the Database\ + \ Directive (Directive 96/9/EC of the European Parliament and of the Council of 11 March\ + \ 1996 on the legal protection of databases) and any future updates as well as any similar\ + \ rights available in the relevant jurisdiction under Section 6.4. \n\n\"Document\" – means\ + \ this relinquishment and waiver of rights and claims and back up licence agreement. \n\n\ + \"Person\" – Means a natural or legal person or a body of persons corporate or incorporate.\n\ + \n\"Use\" – As a verb, means doing any act that is restricted by Copyright or Database\ + \ Rights whether in the original medium or any other; and includes modifying the Work as\ + \ may be technically necessary to use it in a different mode or format. This includes the\ + \ right to sublicense the Work.\n\n\"Work\" – Means either or both of the Database and Data\ + \ offered under the terms of this Document. \n\n\"You\" – the Person acquiring rights under\ + \ the licence elements of this Document.\n\nWords in the singular include the plural and\ + \ vice versa.\n2.0 \tWhat this document covers\n\n2.1. Legal effect of this Document. This\ + \ Document is:\n\na. A dedication to the public domain and waiver of Copyright and Database\ + \ Rights over the Work; and\n\nb. A licence of Copyright and Database Rights over the Work\ + \ in jurisdictions that do not allow for relinquishment or waiver.\n\n2.2. Legal rights\ + \ covered.\n\n a. Copyright. Any copyright or neighbouring rights in the Work. Copyright\ + \ law varies between jurisdictions, but is likely to cover: the Database model or schema,\ + \ which is the structure, arrangement, and organisation of the Database, and can also include\ + \ the Database tables and table indexes; the data entry and output sheets; and the Field\ + \ names of Data stored in the Database. Copyright may also cover the Data depending on the\ + \ jurisdiction and type of Data; and\n\n b. Database Rights. Database Rights only extend\ + \ to the extraction and re-utilisation of the whole or a substantial part of the Data. Database\ + \ Rights can apply even when there is no copyright over the Database. Database Rights can\ + \ also apply when the Data is removed from the Database and is selected and arranged in\ + \ a way that would not infringe any applicable copyright.\n\n2.2 Rights not covered. \n\n\ + a. This Document does not apply to computer programs used in the making or operation of\ + \ the Database; \n\nb. This Document does not cover any patents over the Data or the Database.\ + \ Please see Section 4.2 later in this Document for further details; and\n\nc. This Document\ + \ does not cover any trade marks associated with the Database. Please see Section 4.3 later\ + \ in this Document for further details.\n\nUsers of this Database are cautioned that they\ + \ may have to clear other rights or consult other licences.\n\n2.3 Facts are free. The Rightsholder\ + \ takes the position that factual information is not covered by Copyright. This Document\ + \ however covers the Work in jurisdictions that may protect the factual information in the\ + \ Work by Copyright, and to cover any information protected by Copyright that is contained\ + \ in the Work.\nPart II: Dedication to the public domain\n3.0 \tDedication, waiver, and\ + \ licence of Copyright and Database Rights\n\n3.1 Dedication of Copyright and Database Rights\ + \ to the public domain. The Rightsholder by using this Document, dedicates the Work to the\ + \ public domain for the benefit of the public and relinquishes all rights in Copyright and\ + \ Database Rights over the Work.\n\na. The Rightsholder realises that once these rights\ + \ are relinquished, that the Rightsholder has no further rights in Copyright and Database\ + \ Rights over the Work, and that the Work is free and open for others to Use.\n\nb. The\ + \ Rightsholder intends for their relinquishment to cover all present and future rights in\ + \ the Work under Copyright and Database Rights, whether they are vested or contingent rights,\ + \ and that this relinquishment of rights covers all their heirs and successors.\n\nThe above\ + \ relinquishment of rights applies worldwide and includes media and formats now known or\ + \ created in the future.\n\n3.2 Waiver of rights and claims in Copyright and Database Rights\ + \ when Section 3.1 dedication inapplicable. If the dedication in Section 3.1 does not apply\ + \ in the relevant jurisdiction under Section 6.4, the Rightsholder waives any rights and\ + \ claims that the Rightsholder may have or acquire in the future over the Work in:\n\na.\ + \ Copyright; and\n\nb. Database Rights.\n\n To the extent possible in the relevant jurisdiction,\ + \ the above waiver of rights and claims applies worldwide and includes media and formats\ + \ now known or created in the future. The Rightsholder agrees not to assert the above rights\ + \ and waives the right to enforce them over the Work. \n\n3.3 Licence of Copyright and Database\ + \ Rights when Sections 3.1 and 3.2 inapplicable. If the dedication and waiver in Sections\ + \ 3.1 and 3.2 does not apply in the relevant jurisdiction under Section 6.4, the Rightsholder\ + \ and You agree as follows:\n\na. The Licensor grants to You a worldwide, royalty-free,\ + \ non-exclusive, licence to Use the Work for the duration of any applicable Copyright and\ + \ Database Rights. These rights explicitly include commercial use, and do not exclude any\ + \ field of endeavour. To the extent possible in the relevant jurisdiction, these rights\ + \ may be exercised in all media and formats whether now known or created in the future.\n\ + \n3.4 Moral rights. This section covers moral rights, including the right to be identified\ + \ as the author of the Work or to object to treatment that would otherwise prejudice the\ + \ author's honour and reputation, or any other derogatory treatment:\n\na. For jurisdictions\ + \ allowing waiver of moral rights, Licensor waives all moral rights that Licensor may have\ + \ in the Work to the fullest extent possible by the law of the relevant jurisdiction under\ + \ Section 6.4; \n\nb. If waiver of moral rights under Section 3.4 a in the relevant jurisdiction\ + \ is not possible, Licensor agrees not to assert any moral rights over the Work and waives\ + \ all claims in moral rights to the fullest extent possible by the law of the relevant jurisdiction\ + \ under Section 6.4; and\n\nc. For jurisdictions not allowing waiver or an agreement not\ + \ to assert moral rights under Section 3.4 a and b, the author may retain their moral rights\ + \ over the copyrighted aspects of the Work.\n\nPlease note that some jurisdictions do not\ + \ allow for the waiver of moral rights, and so moral rights may still subsist over the work\ + \ in some jurisdictions.\n\n4.0 \tRelationship to other rights\n\n4.1 No other contractual\ + \ conditions. The Rightsholder makes this Work available to You without any other contractual\ + \ obligations, either express or implied. Any Community Norms statement associated with\ + \ the Work is not a contract and does not form part of this Document.\n\n4.2 Relationship\ + \ to patents. This Document does not grant You a licence for any patents that the Rightsholder\ + \ may own. Users of this Database are cautioned that they may have to clear other rights\ + \ or consult other licences.\n\n4.3 Relationship to trade marks. This Document does not\ + \ grant You a licence for any trade marks that the Rightsholder may own or that the Rightsholder\ + \ may use to cover the Work. Users of this Database are cautioned that they may have to\ + \ clear other rights or consult other licences.\n\nPart III: General provisions\n\n5.0 \t\ + Warranties, disclaimer, and limitation of liability\n\n5.1 The Work is provided by the Rightsholder\ + \ \"as is\" and without any warranty of any kind, either express or implied, whether of\ + \ title, of accuracy or completeness, of the presence of absence of errors, of fitness for\ + \ purpose, or otherwise. Some jurisdictions do not allow the exclusion of implied warranties,\ + \ so this exclusion may not apply to You.\n\n5.2 Subject to any liability that may not be\ + \ excluded or limited by law, the Rightsholder is not \nliable for, and expressly excludes,\ + \ all liability for loss or damage however and whenever caused to anyone by any use under\ + \ this Document, whether by You or by anyone else, and whether caused by any fault on the\ + \ part of the Rightsholder or not. This exclusion of liability includes, but is not limited\ + \ to, any special, incidental, consequential, punitive, or exemplary damages. This exclusion\ + \ applies even if the Rightsholder has been advised of the possibility of such damages.\n\ + \n5.3 If liability may not be excluded by law, it is limited to actual and direct financial\ + \ loss to the extent it is caused by proved negligence on the part of the Rightsholder.\n\ + \n6.0 \tGeneral\n\n6.1 If any provision of this Document is held to be invalid or unenforceable,\ + \ that must not affect the validity or enforceability of the remainder of the terms of this\ + \ Document. \n\n6.2 This Document is the entire agreement between the parties with respect\ + \ to the Work covered here. It replaces any earlier understandings, agreements or representations\ + \ with respect to the Work not specified here. \n\n6.3 This Document does not affect any\ + \ rights that You or anyone else may independently have under any applicable law to make\ + \ any use of this Work, including (for jurisdictions where this Document is a licence) fair\ + \ dealing, fair use, database exceptions, or any other legally recognised limitation or\ + \ exception to infringement of copyright or other applicable laws. \n\n6.4 This Document\ + \ takes effect in the relevant jurisdiction in which the Document terms are sought to be\ + \ enforced. If the rights waived or granted under applicable law in the relevant jurisdiction\ + \ includes additional rights not waived or granted under this Document, these additional\ + \ rights are included in this Document in order to meet the intent of this Document." json: pddl-1.0.json - yml: pddl-1.0.yml + yaml: pddl-1.0.yml html: pddl-1.0.html - text: pddl-1.0.LICENSE + license: pddl-1.0.LICENSE - license_key: pdf-creator-pilot + category: Commercial spdx_license_key: LicenseRef-scancode-pdf-creator-pilot other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "PDF Creator Pilot License Agreement\n \nThis is a legal agreement ('Agreement') between\ + \ you, the end user, and Two Pilots. This agreement defines the licensing terms for the\ + \ PDF Creator Pilot which is software shipped as a Windows Installer Package and includes\ + \ all related documentation, examples, web pages, and other materials which support the\ + \ use of the PDF Creator Pilot (collectively, the 'Software').\nThis license is granted\ + \ by Two Pilots for all products purchased either directly or through any authorized agent\ + \ of the company.\nIMPORTANT: CAREFULLY READ THIS LICENSE BEFORE USING THIS PRODUCT. INSTALLING,\ + \ COPYING, OR OTHERWISE USING THIS PRODUCT INDICATES YOUR ACKNOWLEDGMENT THAT YOU HAVE READ\ + \ THIS LICENSE AND AGREE TO ITS TERMS. IF YOU DO NOT AGREE, RETURN THE COMPLETE PRODUCT\ + \ TO TWO PILOTS FOR A FULL REFUND. THIS LICENSE AGREEMENT IS YOUR PROOF OF LICENSE. PLEASE\ + \ TREAT IT AS VALUABLE PROPERTY.\nThis License will continue as long as you use the Software.\ + \ However, it will terminate if you fail to comply with any of its terms or conditions.\ + \ You must agree, upon termination, to destroy all copies of PDF Creator Pilot that you\ + \ have. \n \n1. Ownership. The Software is and shall remain a proprietary product of Two\ + \ Pilots. Two Pilots and Two Pilots' licensors shall retain ownership of all copyrights,\ + \ patents, trademarks, trade names, trade secrets, and other proprietary rights relating\ + \ to or residing in the Software. Except for the license grant provided in Section 2, you\ + \ shall have no right, title, or interest in or to the Software. The Software is licensed,\ + \ not sold, to you for you to use only under the terms of this Agreement. If you agree to\ + \ be bound by all of the terms of this Agreement, you will only own the media (if any) on\ + \ which the Software may have been provided, not the Software itself. \n \n2. Grant of License.\n\ + Types of licenses. There are 5 (five) types of licenses issued for PDF Creator Pilot. These\ + \ are: \n a. Small Business License. License issued per company, for an unlimited number\ + \ of developers provided that total number of employees at time of purchase is less than\ + \ or equal to 10 (ten). License grants the right to use the Software by web and desktop\ + \ applications that your company exposes to clients. Only disk-based generation is enabled.\ + \ The 'Producer' field (a tag which exists in the properties of the generated PDF) always\ + \ contains the 'PDF Creator Pilot' string. \n b. Web License for Small Business. License\ + \ issued per company, for an unlimited number of developers provided that total number of\ + \ employees at time of purchase is less than or equal to 10 (ten). License grants right\ + \ to use the Software by web and desktop applications that your company exposes to clients.\ + \ Disk-based and in-memory generation is enabled. You may change the 'Producer' field of\ + \ generated PDF files. \n c. In-House License. License issued per company, for an unlimited\ + \ number of developers. License grants right to use the Software by both web and desktop\ + \ applications used within your company only. Disk-based and in-memory generation is enabled.\ + \ The 'Producer' field (a tag which exists in the properties of the generated PDF) always\ + \ contains the 'PDF Creator Pilot' string. \n d. Application License. License issued per\ + \ company, for an unlimited number of developers. License grants right to use the Software\ + \ by desktop applications that your company sells/distributes to clients. Only disk-based\ + \ generation is enabled. You may change the 'Producer' field of generated PDF files. \n\ + \ e. Web License. License issued per company, for an unlimited number of developers. License\ + \ grants right to use the Software by both web and desktop applications that your company\ + \ exposes/sells/distributes to clients. Disk-based and in-memory generation is enabled.\ + \ You may change the 'Producer' field of generated PDF files.\nInstallation and Use. Two\ + \ Pilots grants a limited, non-exclusive, non-transferable right to use the Software for\ + \ the purpose of developing web (if the Software is licensed under any license type except\ + \ Application License) and desktop applications. You may install and use the Software on\ + \ any number of developer computers your company owns. You may also make copies of the Software\ + \ for backup and archival purposes. You may use the Software in your specific purpose application\ + \ programs, in which case Two Pilots grants you permission under Two Pilots copyright to\ + \ use the Software as part of your programs. Also, if you purchased a Small Business License,\ + \ Web License for Small Business, Application License, or Web License, Two Pilots grants\ + \ you permission to give away or sell such programs without additional licenses or fees\ + \ (i.e. 'royalty-free'), as long as all copies of these programs bear a valid copyright\ + \ notice and provided that your program is not merely a set or subset of the Software or\ + \ a compilation or development tool or library which includes all or a portion of the Software,\ + \ or is otherwise a product that is generally competitive with or a substitute for software.\ + \ This permission is granted solely for the purpose set forth above, and you are not authorized\ + \ to use the Software in any other manner.\nRedistribution. Two Pilots grants you a royalty-free\ + \ right to distribute copies of the runtime files for use with applications you have developed\ + \ using the Software, if the Software is licensed under a Small Business License, Web License\ + \ for Small Business, Application License, or Web License. Distribution of Software runtime\ + \ files is forbidden if the Software is licensed under an In-House License. Software runtime\ + \ files are listed in Exhibit A. These libraries may not be distributed for any other purpose\ + \ than to accompany software that you have developed using the Software. \n \n3. Other Restrictions.\ + \ You may not rent, lease, sub-license, transfer, or sell the Software. You may not translate,\ + \ reverse engineer, decompile, or disassemble the Software except (and only to the extent)\ + \ that such activity is expressly permitted by applicable law notwithstanding this limitation.\ + \ Two Pilots reserves all rights not expressly granted to you. \n \n4. Two Pilots may provide\ + \ you with support services related to the Software during the 12 months after the Software\ + \ is purchased. Use of support services is governed by Two Pilots policies. Any supplemental\ + \ Software code provided to you as part of the support services shall be considered part\ + \ of the Software and subject to the terms and conditions of this Agreement. With respect\ + \ to technical information you provide to Two Pilots as part of the support services, Two\ + \ Pilots may use such information for its business purposes, including product support and\ + \ development. Two Pilots will not utilize such technical information in a form that personally\ + \ identifies you. \n \n5. Copyright. PDF Creator Pilot is owned by Two Pilots and is protected\ + \ by United States copyright laws and international treaty provisions. You may make copies\ + \ of PDF Creator Pilot for backup and archival purposes. You may not, under any circumstances,\ + \ copy the manual and other written materials that accompany the Software. \n \n6. Free\ + \ and Trial Versions. Where the Software is provided free on a permanent, semi-permanent,\ + \ limited use, or trial basis, all the terms relating to licensing shall be identical, save\ + \ that you accept that there has been no financial gain on Two Pilots' part and as such\ + \ you use the Software without warranty or guarantees of any kind. The risk is entirely\ + \ yours, and you acknowledge this. You agree to indemnify us against all claims by you or\ + \ any third party for any reason whatsoever. You accept that we have provided the Software\ + \ for your sole benefit and have received nothing to our benefit and as such cannot be held\ + \ responsible in any way or for any reason. \n \n7. Limited Warranty. Two Pilots does not\ + \ warrant that the functions contained in the Software will meet your requirement or that\ + \ the operation of the Software will be uninterrupted or error free. The Software is provided\ + \ \"as is\" without warranty of any kind, either expressed or implied, including but not\ + \ limited to the implied warranties of merchantability and/or suitability for a particular\ + \ purpose. The user assumes the entire risk of any damage caused by the Software. \n \n\ + 8. Limitation of Liability. In no event shall Two Pilots or its licensors be liable to you\ + \ for any consequential, special, incidental, or indirect damages of any kind arising out\ + \ of the delivery, performance, or use of the Software, even if Two Pilots has been advised\ + \ of the possibility of such damages. In any event, Two Pilots' liability for any claim,\ + \ whether in contract, tort, or any other theory of liability will not exceed the license\ + \ fee paid by you. \n \n9. Governing law and general provisions. This Agreement will be\ + \ governed by the laws of the United States of America, excluding the application of its\ + \ conflicts of law rules. If any part of this Agreement is found void and unenforceable,\ + \ it will not affect the validity of the rest of the Agreement, which shall remain valid\ + \ and enforceable according to its terms. You may not ship, transfer, or export the Software\ + \ into any country or use it in any manner prohibited by any export laws, restrictions,\ + \ or regulations. This Agreement shall automatically terminate upon failure by you to comply\ + \ with its terms. \n \nCopyright © 1999-2012 Two Pilots and its licensors. All rights reserved.\ + \ The Software is copyrighted and protected by U.S. copyright laws and international copyright\ + \ treaties, as well as other intellectual property laws and treaties.\nWeb site: http://www.colorpilot.com/\n\ + \ \nExhibit A\nPDFCreatorPilot.DLL \nPDFCreatorPilot.MSI" json: pdf-creator-pilot.json - yml: pdf-creator-pilot.yml + yaml: pdf-creator-pilot.yml html: pdf-creator-pilot.html - text: pdf-creator-pilot.LICENSE + license: pdf-creator-pilot.LICENSE - license_key: pdl-1.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-pdl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + PUBLIC DOCUMENTATION LICENSE + Version 1.0 + + 1.0 DEFINITIONS. + + 1.1. "Commercial Use" means distribution or otherwise making the + Documentation available to a third party. + + 1.2. "Contributor" means a person or entity who creates or contributes + to the creation of Modifications. + + 1.3. "Documentation" means the Original Documentation or Modifications + or the combination of the Original Documentation and Modifications, in + each case including portions thereof. + + 1.4. "Electronic Distribution Mechanism" means a mechanism generally + accepted for the electronic transfer of data. + + 1.5. "Initial Writer" means the individual or entity identified as the + Initial Writer in the notice required by the Appendix. + + 1.6. "Larger Work" means a work which combines Documentation or portions + thereof with documentation or other writings not governed by the terms + of this License. + + 1.7. "License" means this document. + + 1.8. "Modifications" means any addition to or deletion from the + substance or structure of either the Original Documentation or any + previous Modifications, such as a translation, abridgment, condensation, + or any other form in which the Original Documentation or previous + Modifications may be recast, transformed or adapted. A work consisting + of editorial revisions, annotations, elaborations, and other + modifications which, as a whole represent an original work of + authorship, is a Modification. For example, when Documentation is + released as a series of documents, a Modification is: + + A. Any addition to or deletion from the contents of the Original + Documentation or previous Modifications. + + B. Any new documentation that contains any part of the Original + Documentation or previous Modifications. + + 1.9. "Original Documentation" means documentation described as Original + Documentation in the notice required by the Appendix, and which, at the + time of its release under this License is not already Documentation + governed by this License. + + 1.10. "Editable Form" means the preferred form of the Documentation for + making Modifications to it. The Documentation can be in an electronic, + compressed or archival form, provided the appropriate decompression or + de-archiving software is widely available for no charge. + + 1.11. "You" (or "Your") means an individual or a legal entity exercising + rights under, and complying with all of the terms of this License or a + future version of this License issued under Section 5.0 ("Versions of + the License"). For legal entities, "You" includes any entity which + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct or + indirect, to cause the direction or management of such entity, whether + by contract or otherwise, or (b) ownership of more than fifty percent + (50%) of the outstanding shares or beneficial ownership of such entity. + + 2.0 LICENSE GRANTS. + + 2.1 Initial Writer Grant. + + The Initial Writer hereby grants You a world-wide, royalty-free, non- + exclusive license to use, reproduce, prepare Modifications of, compile, + publicly perform, publicly display, demonstrate, market, disclose and + distribute the Documentation in any form, on any media or via any + Electronic Distribution Mechanism or other method now known or later + discovered, and to sublicense the foregoing rights to third parties + through multiple tiers of sublicensees in accordance with the terms of + this License. + + The license rights granted in this Section 2.1 ("Initial Writer Grant") + are effective on the date Initial Writer first distributes Original + Documentation under the terms of this License. + + 2.2. Contributor Grant. + + Each Contributor hereby grants You a world-wide, royalty-free, non- + exclusive license to use, reproduce, prepare Modifications of, compile, + publicly perform, publicly display, demonstrate, market, disclose and + distribute the Documentation in any form, on any media or via any + Electronic Distribution Mechanism or other method now known or later + discovered, and to sublicense the foregoing rights to third parties + through multiple tiers of sublicensees in accordance with the terms of + this License. + + The license rights granted in this Section 2.2 ("Contributor Grant") are + effective on the date Contributor first makes Commercial Use of the + Documentation. + + 3.0 DISTRIBUTION OBLIGATIONS + + 3.1. Application of License + + The Modifications which You create or to which You contribute are + governed by the terms of this License, including without limitation + Section 2.2 ("Contributor Grant"). The Documentation may be distributed + only under the terms of this License or a future version of this License + released in accordance with Section 5.0 ("Versions of the License"), and + You must include a copy of this License with every copy of the + Documentation You distribute. You may not offer or impose any terms that + alter or restrict the applicable version of this License or the + recipients' rights hereunder. However, You may include an additional + document offering the additional rights described in Section 3.5 + ("Required Notices"). + + 3.2. Availability of Documentation. + + Any Modification which You create or to which You contribute must be + made available publicly in Editable Form under the terms of this License + via a fixed medium or an accepted Electronic Distribution Mechanism. + + 3.3. Description of Modifications. + + All Documentation to which You contribute must identify the changes You + made to create that Documentation and the date of any change. You must + include a prominent statement that the Modification is derived, directly + or indirectly, from Original Documentation provided by the Initial + Writer and include the name of the Initial Writer in the Documentation + or via an electronic link that describes the origin or ownership of the + Documentation. The foregoing change documentation may be created by + using an electronic program that automatically tracks changes to the + Documentation, and such changes must be available publicly for at least + five years following release of the changed Documentation. + + 3.4. Intellectual Property Matters. + + Contributor represents that Contributor believes that Contributor's + Modifications are Contributor's original creation(s) and/or Contributor + has sufficient rights to grant the rights conveyed by this License. + + 3.5. Required Notices. + + You must duplicate the notice in the Appendix in each file of the + Documentation. If it is not possible to put such notice in a particular + Documentation file due to its structure, then You must include such + notice in a location (such as a relevant directory) where a reader would + be likely to look for such a notice, for example, via a hyperlink in + each file of the Documentation that takes the reader to a page that + describes the origin and ownership of the Documentation. If You created + one or more Modification(s) You may add your name as a Contributor to + the notice described in the Appendix. + + You must also duplicate this License in any Documentation file (or with + a hyperlink in each file of the Documentation) where You describe + recipients' rights or ownership rights. + + You may choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of + Documentation. However, You may do so only on Your own behalf, and not + on behalf of the Initial Writer or any Contributor. You must make it + absolutely clear than any such warranty, support, indemnity or liability + obligation is offered by You alone, and You hereby agree to indemnify + the Initial Writer and every Contributor for any liability incurred by + the Initial Writer or such Contributor as a result of warranty, support, + indemnity or liability terms You offer. + + 3.6. Larger Works. + + You may create a Larger Work by combining Documentation with other + documents not governed by the terms of this License and distribute the + Larger Work as a single product. In such a case, You must make sure the + requirements of this License are fulfilled for the Documentation. + + 4.0 APPLICATION OF THIS LICENSE. + + This License applies to Documentation to which the Initial Writer has + attached this License and the notice in the Appendix. + + 5.0 VERSIONS OF THE LICENSE. + + 5.1. New Versions. + + Initial Writer may publish revised and/or new versions of the License + from time to time. Each version will be given a distinguishing version + number. + + 5.2. Effect of New Versions. + + Once Documentation has been published under a particular version of the + License, You may always continue to use it under the terms of that + version. You may also choose to use such Documentation under the terms + of any subsequent version of the License published by + [Insert name of the foundation, company, Initial + Writer, or whoever may modify this License]. No one other than + [Insert name of the foundation, company, Initial + Writer, or whoever may modify this License] has the right to modify the + terms of this License. Filling in the name of the Initial Writer, + Original Documentation or Contributor in the notice described in the + Appendix shall not be deemed to be Modifications of this License. + + 6.0 DISCLAIMER OF WARRANTY. + + DOCUMENTATION IS PROVIDED UNDER THIS LICENSE ON AN "AS IS'' BASIS, + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + WITHOUT LIMITATION, WARRANTIES THAT THE DOCUMENTATION IS FREE OF + DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. + THE ENTIRE RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE + DOCUMENTATION IS WITH YOU. SHOULD ANY DOCUMENTATION PROVE DEFECTIVE IN + ANY RESPECT, YOU (NOT THE INITIAL WRITER OR ANY OTHER CONTRIBUTOR) + ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS + DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO + USE OF ANY DOCUMENTATION IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS + DISCLAIMER. + + 7.0 TERMINATION. + + This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to cure + such breach within 30 days of becoming aware of the breach. All + sublicenses to the Documentation which are properly granted shall + survive any termination of this License. Provisions which, by their + nature, must remain in effect beyond the termination of this License + shall survive. + + 8.0 LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT + (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL + WRITER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF DOCUMENTATION, OR + ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY + DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY + CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, + WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER + DAMAGES OR LOSSES ARISING OUT OF OR RELATING TO THE USE OF THE + DOCUMENTATION, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE + POSSIBILITY OF SUCH DAMAGES. + + 9.0 U.S. GOVERNMENT END USERS. + + If Documentation is being acquired by or on behalf of the U.S. + Government or by a U.S. Government prime contractor or subcontractor (at + any tier), then the Government's rights in Documentation will be only as + set forth in this Agreement; this is in accordance with 48 CFR 227.7201 + through 227.7202-4 (for Department of Defense (DOD) acquisitions) and + with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). + + 10.0 MISCELLANEOUS. + + This License represents the complete agreement concerning the subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. This License shall be governed by + California law, excluding its conflict-of-law provisions. With respect + to disputes or any litigation relating to this License, the losing party + is responsible for costs, including without limitation, court costs and + reasonable attorneys' fees and expenses. The application of the United + Nations Convention on Contracts for the International Sale of Goods is + expressly excluded. Any law or regulation which provides that the + language of a contract shall be construed against the drafter shall not + apply to this License. + + Appendix + + Public Documentation License Notice + + The contents of this Documentation are subject to the Public + Documentation License Version 1.0 (the "License"); you may only use this + Documentation if you comply with the terms of this License. A copy of + the License is available at [Insert hyperlink]. + + The Original Documentation is . The Initial Writer of + the Original Documentation is Copyright (C) [Insert + year(s)]. All Rights Reserved. (Initial Writer + contact(s): [Insert hyperlink/alias]). + + Contributor(s): . + + Portions created by are Copyright (C) [Insert year(s)]. + All Rights Reserved. (Contributor contact(s): [Insert + hyperlink/alias]). + + NOTE: The text of this Appendix may differ slightly from the text of the + notices in the files of the Original Documentation. You should use the + text of this Appendix rather than the text found in the Original + Documentation for Your Modifications. json: pdl-1.0.json - yml: pdl-1.0.yml + yaml: pdl-1.0.yml html: pdl-1.0.html - text: pdl-1.0.LICENSE + license: pdl-1.0.LICENSE - license_key: perl-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-perl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Perl Kit, Version 1.0\n\n\t\t Copyright (c) 1987, Larry Wall\n\nYou may copy the\ + \ perl kit in whole or in part as long as you don't try to\nmake money off it, or pretend\ + \ that you wrote it." json: perl-1.0.json - yml: perl-1.0.yml + yaml: perl-1.0.yml html: perl-1.0.html - text: perl-1.0.LICENSE + license: perl-1.0.LICENSE - license_key: peter-deutsch-document + category: Permissive spdx_license_key: LicenseRef-scancode-peter-deutsch-document other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is granted to copy and distribute this document for any + purpose and without charge, including translations into other + languages and incorporation into compilations, provided that the + copyright notice and this notice are preserved, and that any + substantive changes or deletions from the original are clearly + marked. json: peter-deutsch-document.json - yml: peter-deutsch-document.yml + yaml: peter-deutsch-document.yml html: peter-deutsch-document.html - text: peter-deutsch-document.LICENSE + license: peter-deutsch-document.LICENSE - license_key: pfe-proprietary-notice + category: Proprietary Free spdx_license_key: LicenseRef-scancode-pfe-proprietary-notice other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + You expect me to believe that this stuff is free? + I could get people to pay for this? Yes, it's completely free - you'll find the minimalist terms and conditions in the various readme files (you do look at readme files, don't you?) in the release ZIP archives and in the help file; but basically you can use PFE at home, at work, in the car and any improbable location of your choice without paying me a penny (or cent, if you're across the planet from where I am). + + But in the unlikely circumstance that you actually think you'd like to distribute PFE with your commercial product - (no, don't laugh - it was known to happen) - I would want to sell you a licence. Well, I do have a mortgage to pay and a computer to support. json: pfe-proprietary-notice.json - yml: pfe-proprietary-notice.yml + yaml: pfe-proprietary-notice.yml html: pfe-proprietary-notice.html - text: pfe-proprietary-notice.LICENSE + license: pfe-proprietary-notice.LICENSE - license_key: pftijah-1.1 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-pftijah-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "PfTijah Public License Version 1.1\n\nThis License is a derivative of the MonetDB Public\ + \ License Version 1.1, where the difference is that all references to \"MonetDB\" and \"\ + CWI\" have been changed to \"PfTijah\" and \"University of Twente\"\n\n1. Definitions.\n\ + 1.0.1. \"Commercial Use\"\nmeans distribution or otherwise making the Covered Code available\ + \ to a third party.\n1.1. \"Contributor\"\nmeans each entity that creates or contributes\ + \ to the creation of Modifications.\n1.2. \"Contributor Version\"\nmeans the combination\ + \ of the Original Code, prior Modifications used by a Contributor, and the Modifications\ + \ made by that particular Contributor.\n1.3. \"Covered Code\"\nmeans the Original Code or\ + \ Modifications or the combination of the Original Code and Modifications, in each case\ + \ including portions thereof.\n1.4. \"Electronic Distribution Mechanism\"\nmeans a mechanism\ + \ generally accepted in the software development community for the electronic transfer of\ + \ data.\n1.5. \"Executable\"\nmeans Covered Code in any form other than Source Code.\n1.6.\ + \ \"Initial Developer\"\nmeans the individual or entity identified as the Initial Developer\ + \ in the Source Code notice required by Exhibit A.\n1.7. \"Larger Work\"\nmeans a work which\ + \ combines Covered Code or portions thereof with code not governed by the terms of this\ + \ License.\n1.8. \"License\"\nmeans this document.\n1.8.1. \"Licensable\"\nmeans having\ + \ the right to grant, to the maximum extent possible, whether at the time of the initial\ + \ grant or subsequently acquired, any and all of the rights conveyed herein.\n1.9. \"Modifications\"\ + \nmeans any addition to or deletion from the substance or structure of either the Original\ + \ Code or any previous Modifications. When Covered Code is released as a series of files,\ + \ a Modification is:\nAny addition to or deletion from the contents of a file containing\ + \ Original Code or previous Modifications.\nAny new file that contains any part of the Original\ + \ Code or previous Modifications.\n1.10. \"Original Code\"\nmeans Source Code of computer\ + \ software code which is described in the Source Code notice required by Exhibit A as Original\ + \ Code, and which, at the time of its release under this License is not already Covered\ + \ Code governed by this License.\n1.10.1. \"Patent Claims\"\nmeans any patent claim(s),\ + \ now owned or hereafter acquired, including without limitation, method, process, and apparatus\ + \ claims, in any patent Licensable by grantor.\n1.11. \"Source Code\"\nmeans the preferred\ + \ form of the Covered Code for making modifications to it, including all modules it contains,\ + \ plus any associated interface definition files, scripts used to control compilation and\ + \ installation of an Executable, or source code differential comparisons against either\ + \ the Original Code or another well known, available Covered Code of the Contributor's choice.\ + \ The Source Code can be in a compressed or archival form, provided the appropriate decompression\ + \ or de-archiving software is widely available for no charge.\n1.12. \"You\" (or \"Your\"\ + )\nmeans an individual or a legal entity exercising rights under, and complying with all\ + \ of the terms of, this License or a future version of this License issued under Section\ + \ 6.1. For legal entities, \"You\" includes any entity which controls, is controlled by,\ + \ or is under common control with You. For purposes of this definition, \"control\" means\ + \ (a) the power, direct or indirect, to cause the direction or management of such entity,\ + \ whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of\ + \ the outstanding shares or beneficial ownership of such entity.\n\n2. Source Code License.\n\ + \n2.1. The Initial Developer Grant.\nThe Initial Developer hereby grants You a world-wide,\ + \ royalty-free, non-exclusive license, subject to third party intellectual property claims:\n\ + under intellectual property rights (other than patent or trademark) Licensable by Initial\ + \ Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original\ + \ Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work;\ + \ and\nunder Patents Claims infringed by the making, using or selling of Original Code,\ + \ to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose\ + \ of the Original Code (or portions thereof).\nthe licenses granted in this Section 2.1\ + \ (a) and (b) are effective on the date Initial Developer first distributes Original Code\ + \ under the terms of this License.\nNotwithstanding Section 2.1 (b) above, no patent license\ + \ is granted: 1) for code that You delete from the Original Code; 2) separate from the Original\ + \ Code; or 3) for infringements caused by: i) the modification of the Original Code or ii)\ + \ the combination of the Original Code with other software or devices.\n\n2.2. Contributor\ + \ Grant.\nSubject to third party intellectual property claims, each Contributor hereby grants\ + \ You a world-wide, royalty-free, non-exclusive license\nunder intellectual property rights\ + \ (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify,\ + \ display, perform, sublicense and distribute the Modifications created by such Contributor\ + \ (or portions thereof) either on an unmodified basis, with other Modifications, as Covered\ + \ Code and/or as part of a Larger Work; and\nunder Patent Claims infringed by the making,\ + \ using, or selling of Modifications made by that Contributor either alone and/or in combination\ + \ with its Contributor Version (or portions of such combination), to make, use, sell, offer\ + \ for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor\ + \ (or portions thereof); and 2) the combination of Modifications made by that Contributor\ + \ with its Contributor Version (or portions of such combination).\nthe licenses granted\ + \ in Sections 2.2 (a) and 2.2 (b) are effective on the date Contributor first makes Commercial\ + \ Use of the Covered Code.\nNotwithstanding Section 2.2 (b) above, no patent license is\ + \ granted: 1) for any code that Contributor has deleted from the Contributor Version; 2)\ + \ separate from the Contributor Version; 3) for infringements caused by: i) third party\ + \ modifications of Contributor Version or ii) the combination of Modifications made by that\ + \ Contributor with other software (except as part of the Contributor Version) or other devices;\ + \ or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made\ + \ by that Contributor.\n\n3. Distribution Obligations.\n\n3.1. Application of License.\n\ + The Modifications which You create or to which You contribute are governed by the terms\ + \ of this License, including without limitation Section 2.2. The Source Code version of\ + \ Covered Code may be distributed only under the terms of this License or a future version\ + \ of this License released under Section 6.1, and You must include a copy of this License\ + \ with every copy of the Source Code You distribute. You may not offer or impose any terms\ + \ on any Source Code version that alters or restricts the applicable version of this License\ + \ or the recipients' rights hereunder. However, You may include an additional document offering\ + \ the additional rights described in Section 3.5.\n\n3.2. Availability of Source Code.\n\ + Any Modification which You create or to which You contribute must be made available in Source\ + \ Code form under the terms of this License either on the same media as an Executable version\ + \ or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable\ + \ version available; and if made available via Electronic Distribution Mechanism, must remain\ + \ available for at least twelve (12) months after the date it initially became available,\ + \ or at least six (6) months after a subsequent version of that particular Modification\ + \ has been made available to such recipients. You are responsible for ensuring that the\ + \ Source Code version remains available even if the Electronic Distribution Mechanism is\ + \ maintained by a third party.\n\n3.3. Description of Modifications.\nYou must cause all\ + \ Covered Code to which You contribute to contain a file documenting the changes You made\ + \ to create that Covered Code and the date of any change. You must include a prominent statement\ + \ that the Modification is derived, directly or indirectly, from Original Code provided\ + \ by the Initial Developer and including the name of the Initial Developer in (a) the Source\ + \ Code, and (b) in any notice in an Executable version or related documentation in which\ + \ You describe the origin or ownership of the Covered Code.\n\n3.4. Intellectual Property\ + \ Matters\n(a) Third Party Claims\nIf Contributor has knowledge that a license under a third\ + \ party's intellectual property rights is required to exercise the rights granted by such\ + \ Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source\ + \ Code distribution titled \"LEGAL\" which describes the claim and the party making the\ + \ claim in sufficient detail that a recipient will know whom to contact. If Contributor\ + \ obtains such knowledge after the Modification is made available as described in Section\ + \ 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes\ + \ available thereafter and shall take other steps (such as notifying appropriate mailing\ + \ lists or newsgroups) reasonably calculated to inform those who received the Covered Code\ + \ that new knowledge has been obtained.\n\n(b) Contributor APIs\nIf Contributor's Modifications\ + \ include an application programming interface and Contributor has knowledge of patent licenses\ + \ which are reasonably necessary to implement that API, Contributor must also include this\ + \ information in the LEGAL file.\n\n(c) Representations.\nContributor represents that, except\ + \ as disclosed pursuant to Section 3.4 (a) above, Contributor believes that Contributor's\ + \ Modifications are Contributor's original creation(s) and/or Contributor has sufficient\ + \ rights to grant the rights conveyed by this License.\n\n3.5. Required Notices.\nYou must\ + \ duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible\ + \ to put such notice in a particular Source Code file due to its structure, then You must\ + \ include such notice in a location (such as a relevant directory) where a user would be\ + \ likely to look for such a notice. If You created one or more Modification(s) You may add\ + \ your name as a Contributor to the notice described in Exhibit A. You must also duplicate\ + \ this License in any documentation for the Source Code where You describe recipients' rights\ + \ or ownership rights relating to Covered Code. You may choose to offer, and to charge a\ + \ fee for, warranty, support, indemnity or liability obligations to one or more recipients\ + \ of Covered Code. However, You may do so only on Your own behalf, and not on behalf of\ + \ the Initial Developer or any Contributor. You must make it absolutely clear than any such\ + \ warranty, support, indemnity or liability obligation is offered by You alone, and You\ + \ hereby agree to indemnify the Initial Developer and every Contributor for any liability\ + \ incurred by the Initial Developer or such Contributor as a result of warranty, support,\ + \ indemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions.\n\ + You may distribute Covered Code in Executable form only if the requirements of Sections\ + \ 3.1, 3.2, 3.3, 3.4 and 3.5 have been met for that Covered Code, and if You include a notice\ + \ stating that the Source Code version of the Covered Code is available under the terms\ + \ of this License, including a description of how and where You have fulfilled the obligations\ + \ of Section 3.2. The notice must be conspicuously included in any notice in an Executable\ + \ version, related documentation or collateral in which You describe recipients' rights\ + \ relating to the Covered Code. You may distribute the Executable version of Covered Code\ + \ or ownership rights under a license of Your choice, which may contain terms different\ + \ from this License, provided that You are in compliance with the terms of this License\ + \ and that the license for the Executable version does not attempt to limit or alter the\ + \ recipient's rights in the Source Code version from the rights set forth in this License.\ + \ If You distribute the Executable version under a different license You must make it absolutely\ + \ clear that any terms which differ from this License are offered by You alone, not by the\ + \ Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer\ + \ and every Contributor for any liability incurred by the Initial Developer or such Contributor\ + \ as a result of any such terms You offer.\n\n3.7. Larger Works.\nYou may create a Larger\ + \ Work by combining Covered Code with other code not governed by the terms of this License\ + \ and distribute the Larger Work as a single product. In such a case, You must make sure\ + \ the requirements of this License are fulfilled for the Covered Code.\n\n4. Inability to\ + \ Comply Due to Statute or Regulation.\n\nIf it is impossible for You to comply with any\ + \ of the terms of this License with respect to some or all of the Covered Code due to statute,\ + \ judicial order, or regulation then You must: (a) comply with the terms of this License\ + \ to the maximum extent possible; and (b) describe the limitations and the code they affect.\ + \ Such description must be included in the LEGAL file described in Section 3.4 and must\ + \ be included with all distributions of the Source Code. Except to the extent prohibited\ + \ by statute or regulation, such description must be sufficiently detailed for a recipient\ + \ of ordinary skill to be able to understand it.\n\n5. Application of this License.\n\n\ + This License applies to code to which the Initial Developer has attached the notice in Exhibit\ + \ A and to related Covered Code.\n\n6. Versions of the License.\n\n6.1. New Versions\nThe\ + \ \"University of Twente\" may publish revised and/or new versions of the License from time\ + \ to time. Each version will be given a distinguishing version number.\n\n6.2. Effect of\ + \ New Versions\nOnce Covered Code has been published under a particular version of the License,\ + \ You may always continue to use it under the terms of that version. You may also choose\ + \ to use such Covered Code under the terms of any subsequent version of the License published\ + \ by \"University of Twente\". No one other than \"University of Twente\" has the right\ + \ to modify the terms applicable to Covered Code created under this License.\n\n6.3. Derivative\ + \ Works\nIf You create or use a modified version of this License (which you may only do\ + \ in order to apply it to code which is not already Covered Code governed by this License),\ + \ You must (a) rename Your license so that the phrases \"PfTijah\", \"University of Twente\"\ + \ or any confusingly similar phrase do not appear in your license (except to note that your\ + \ license differs from this License) and (b) otherwise make it clear that Your version of\ + \ the license contains terms which differ from the PfTijah Public License. (Filling in the\ + \ name of the Initial Developer, Original Code or Contributor in the notice described in\ + \ Exhibit A shall not of themselves be deemed to be modifications of this License.)\n\n\ + 7. DISCLAIMER OF WARRANTY\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\"\ + \ BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION,\ + \ WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR\ + \ PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED\ + \ CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE\ + \ INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING,\ + \ REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS\ + \ LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\ + \n8. Termination\n\n8.1. This License and the rights granted hereunder will terminate automatically\ + \ if You fail to comply with terms herein and fail to cure such breach within 30 days of\ + \ becoming aware of the breach. All sublicenses to the Covered Code which are properly granted\ + \ shall survive any termination of this License. Provisions which, by their nature, must\ + \ remain in effect beyond the termination of this License shall survive.\n\n8.2. If You\ + \ initiate litigation by asserting a patent infringement claim (excluding declatory judgment\ + \ actions) against Initial Developer or a Contributor (the Initial Developer or Contributor\ + \ against whom You file such action is referred to as \"Participant\") alleging that:\n\ + such Participant's Contributor Version directly or indirectly infringes any patent, then\ + \ any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of\ + \ this License shall, upon 60 days notice from Participant terminate prospectively, unless\ + \ if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant\ + \ a mutually agreeable reasonable royalty for Your past and future use of Modifications\ + \ made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor\ + \ Version against such Participant. If within 60 days of notice, a reasonable royalty and\ + \ payment arrangement are not mutually agreed upon in writing by the parties or the litigation\ + \ claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or\ + \ 2.2 automatically terminate at the expiration of the 60 day notice period specified above.\n\ + any software, hardware, or device, other than such Participant's Contributor Version, directly\ + \ or indirectly infringes any patent, then any rights granted to You by such Participant\ + \ under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made,\ + \ used, sold, distributed, or had made, Modifications made by that Participant.\n\n8.3.\ + \ If You assert a patent infringement claim against Participant alleging that such Participant's\ + \ Contributor Version directly or indirectly infringes any patent where such claim is resolved\ + \ (such as by license or settlement) prior to the initiation of patent infringement litigation,\ + \ then the reasonable value of the licenses granted by such Participant under Sections 2.1\ + \ or 2.2 shall be taken into account in determining the amount or value of any payment or\ + \ license.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all end\ + \ user license agreements (excluding distributors and resellers) which have been validly\ + \ granted by You or any distributor hereunder prior to termination shall survive termination.\n\ + \n9. LIMITATION OF LIABILITY\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER\ + \ TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER,\ + \ ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH\ + \ PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL\ + \ DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,\ + \ WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES\ + \ OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES.\ + \ THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\ + \ RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION.\ + \ SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL\ + \ DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. government\ + \ end users\n\nThe Covered Code is a \"commercial item,\" as that term is defined in 48\ + \ C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"commercial\ + \ computer software documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995).\ + \ Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),\ + \ all U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n\ + \n11. Miscellaneous\n\nThis License represents the complete agreement concerning subject\ + \ matter hereof. If any provision of this License is held to be unenforceable, such provision\ + \ shall be reformed only to the extent necessary to make it enforceable. This License shall\ + \ be governed by the laws of The Netherlands and You hereby irrevocably agree that the Courts\ + \ of Amsterdam, The Netherlands, are to have jurisdiction to settle any disputes which may\ + \ arise out of or in connection with this License. The application of the United Nations\ + \ Convention on Contracts for the International Sale of Goods is expressly excluded. Any\ + \ law or regulation which provides that the language of a contract shall be construed against\ + \ the drafter shall not apply to this License.\n\n12. Responsibility for claims\n\nAs between\ + \ Initial Developer and the Contributors, each party is responsible for claims and damages\ + \ arising, directly or indirectly, out of its utilization of rights under this License and\ + \ You agree to work with Initial Developer and Contributors to distribute such responsibility\ + \ on an equitable basis. Nothing herein is intended or shall be deemed to constitute any\ + \ admission of liability.\n\n13. Multiple-licensed code\n\nInitial Developer may designate\ + \ portions of the Covered Code as \"Multiple-Licensed\". \"Multiple-Licensed\" means that\ + \ the Initial Developer permits you to utilize portions of the Covered Code under Your choice\ + \ of the PfTijah Public License or the alternative licenses, if any, specified by the Initial\ + \ Developer in the file described in Exhibit A.\n\nExhibit A - PfTijah Public License.\n\ + \n\"The contents of this file are subject to the PfTijah Public License\nVersion 1.1 (the\ + \ \"License\"); you may not use this file except in\ncompliance with the License. You may\ + \ obtain a copy of the License at\nhttp://dbappl.cs.utwente.nl/Legal/PfTijah-1.1.html\n\n\ + Software distributed under the License is distributed on an \"AS IS\"\nbasis, WITHOUT WARRANTY\ + \ OF ANY KIND, either express or implied. See the\nLicense for the specific language governing\ + \ rights and limitations\nunder the License.\n\nThe Original Code is .\n\nThe Initial Developer\ + \ of the Original Code is .\nPortions created by are Copyright (C) \n . All Rights Reserved.\n\ + \nContributor(s): .\n\nAlternatively, the contents of this file may be used under the terms\n\ + of the license (the \"[ ] License\"), in which case the\nprovisions of [ ] License\ + \ are applicable instead of those\nabove. If you wish to allow use of your version of this\ + \ file only\nunder the terms of the [ ] License and not to allow others to use\nyour version\ + \ of this file under the PfTijah Public License, indicate\nyour decision by deleting the\ + \ provisions above and replace them with\nthe notice and other provisions required by the\ + \ [ ] License. If you\ndo not delete the provisions above, a recipient may use your version\n\ + of this file under either the PfTijah Public License or the [ ] License.\"\nNOTE: The\ + \ text of this Exhibit A may differ slightly from the text of the notices in the Source\ + \ Code files of the Original Code. You should use the text of this Exhibit A rather than\ + \ the text found in the Original Code Source Code for Your Modifications." json: pftijah-1.1.json - yml: pftijah-1.1.yml + yaml: pftijah-1.1.yml html: pftijah-1.1.html - text: pftijah-1.1.LICENSE + license: pftijah-1.1.LICENSE - license_key: pftus-1.1 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-pftus-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + The P.F.T.U.S(Protected Free To Use Software) License + + Version 1.1x + Unless required by applicable law or agreed to in writing, software + distributed under this License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + You are not allowed to re-license this Software, Product, Binary, Source + Code at all; unless you are the copyright holder. + Your use of this software indicates your acceptance of this license agreement + and warranty. We reserve rights to change this license or completely remove it + at ANY TIME without ANY notice. + Please notice that you are refereed to as "You", "Your" and "Mirrorer" and + "Re-distributor" + + SOURCE CODE + 1. You do not have permissions to use this code to make a profit in ANY + POSSIBLE WAY, NOR are you allowed to use it for competing purposes[1]; + contributing to the source code is allowed provided you do it either + via forking or similar way AND you don't make any kind of profit from it + unless you were specifically hired to contribute. + 2. Mirroring is allowed as long as the mirrorer don't make any profit from + mirroring of the code. + + BINARIES + 1. Binaries may not be re-distributed at all[2] + 2. Mirroring is allowed as long as the mirrorer don't make any profit + from mirroring the produced binaries. + + DOCUMENTATION + 1. Redistribution of the included documentation is allowed as long as the + re-distributor comply the the following term(s): + a. You shall not make any more profit from it than what the upkeep of + the documentation costs. + b. You shall link back to the original documentation in the header of + the redistribution web-page. + 2. Re-writing new documentation is allowed as long as it comply to the + following term(s): + a. It's clearly stated in the documentation that it isn't official. + b. You are allowed to make a profit from it; as long as it is under + 10 000 USD annually. + Please notice that you can request written permission from the owner of this + Source Code/Binary or Project for Redistribution, using this software + for competing purposes or/and bypass the whole license. + 1. "competing purposes" means ANY software on ANY platform that is designed to + be used in similar fashion(eg serves the same or similar purposes as the + original software). + 2. This doesn't apply to the following domains: + * github.com + * AND any domain with written permissions + Changing is not permitted, + redistribution is allowed. Some rights reserved. json: pftus-1.1.json - yml: pftus-1.1.yml + yaml: pftus-1.1.yml html: pftus-1.1.html - text: pftus-1.1.LICENSE + license: pftus-1.1.LICENSE - license_key: phil-bunce + category: Public Domain spdx_license_key: LicenseRef-scancode-phil-bunce other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: Feel free to use this code any way you wish, but please remember it comes without any + sort of warranty. json: phil-bunce.json - yml: phil-bunce.yml + yaml: phil-bunce.yml html: phil-bunce.html - text: phil-bunce.LICENSE + license: phil-bunce.LICENSE - license_key: philippe-de-muyter + category: Permissive spdx_license_key: LicenseRef-scancode-philippe-de-muyter other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. json: philippe-de-muyter.json - yml: philippe-de-muyter.yml + yaml: philippe-de-muyter.yml html: philippe-de-muyter.html - text: philippe-de-muyter.LICENSE + license: philippe-de-muyter.LICENSE - license_key: philips-proprietary-notice-2000 + category: Commercial spdx_license_key: LicenseRef-scancode-philips-proprietary-notice2000 other_spdx_license_keys: - LicenseRef-scancode-philips-proprietary-notice-2000 is_exception: no is_deprecated: no - category: Commercial + text: "This source code and any compilation or derivative thereof is the sole \nproperty\ + \ of Philips Corporation and is provided pursuant to a Software \nLicense Agreement.\ + \ This code is the proprietary information of \nPhilips Corporation and is\ + \ confidential in nature. Its use and \ndissemination by any party other than\ + \ Philips Corporation is strictly \nlimited by the confidential information provisions\ + \ of the Agreement \nreferenced above." json: philips-proprietary-notice-2000.json - yml: philips-proprietary-notice-2000.yml + yaml: philips-proprietary-notice-2000.yml html: philips-proprietary-notice-2000.html - text: philips-proprietary-notice-2000.LICENSE + license: philips-proprietary-notice-2000.LICENSE - license_key: phorum-2.0 + category: Permissive spdx_license_key: LicenseRef-scancode-phorum-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The Phorum License 2.0. + + Copyright (c) 2001 The Phorum Development Team. All rights + reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 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 end-user documentation included with the redistribution, + if any, must include the following acknowledgment: + "This product includes software developed by the + Phorum Development Team (http://phorum.org/)." + Alternately, this acknowledgment may appear in the software itself, + if and wherever such third-party acknowledgments normally appear. + + 4. The names "Phorum" and "Phorum Development Team" must + not be used to endorse or promote products derived from this + software without prior written permission. For written + permission, please contact core@phorum.org. + + 5. Products derived from this software may not be called "Phorum", + nor may "Phorum" appear in their name, without prior written + permission of the Phorum Development Team. + + THIS SOFTWARE IS PROVIDED ``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 PHORUM DEVELOPMENT TEAM 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 software consists of voluntary contributions made by many + individuals on behalf of the Phorum Development Team. For more + information on Phorum , please see + . + + This license is based on The Apache Software License Version 1.1. + Only the names, email addresses and urls were changed. + Permission was granted from The Apache Software Foundation to use + their license. + + The original version of the license is copyright (c) 2000 The Apache + Software Foundation. All rights reserved. + + For more information on the Apache Software Foundation, please + see . json: phorum-2.0.json - yml: phorum-2.0.yml + yaml: phorum-2.0.yml html: phorum-2.0.html - text: phorum-2.0.LICENSE + license: phorum-2.0.LICENSE - license_key: php-2.0.2 + category: Permissive spdx_license_key: LicenseRef-scancode-php-2.0.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "-------------------------------------------------------------------- \n \ + \ The PHP License, version 2.02\nCopyright (c) 1999 - 2002 The PHP Group. All rights\ + \ reserved.\n-------------------------------------------------------------------- \n\nRedistribution\ + \ and use in source and binary forms, with or without\nmodification, is permitted provided\ + \ that the following conditions\nare met:\n\n 1. Redistributions of source code must retain\ + \ the above copyright\n notice, this list of conditions and the following disclaimer.\ + \ \n \n 2. Redistributions in binary form must reproduce the above \n copyright notice,\ + \ this list of conditions and the following \n disclaimer in the documentation and/or\ + \ other materials provided\n with the distribution.\n \n 3. The name \"PHP\" must not\ + \ be used to endorse or promote products \n derived from this software without prior\ + \ permission from the \n PHP Group. This does not apply to add-on libraries or tools\n\ + \ that work in conjunction with PHP. In such a case the PHP\n name may be used\ + \ to indicate that the product supports PHP.\n \n 4. The PHP Group may publish revised\ + \ and/or new versions of the\n license from time to time. Each version will be given\ + \ a\n distinguishing version number.\n Once covered code has been published under\ + \ a particular version\n of the license, you may always continue to use it under the\n\ + \ terms of that version. You may also choose to use such covered\n code under the\ + \ terms of any subsequent version of the license\n published by the PHP Group. No one\ + \ other than the PHP Group has\n the right to modify the terms applicable to covered\ + \ code created\n under this License.\n\n 5. Redistributions of any form whatsoever\ + \ must retain the following\n acknowledgment:\n \"This product includes PHP, freely\ + \ available from\n http://www.php.net/\".\n\n 6. The software incorporates the Zend\ + \ Engine, a product of Zend\n Technologies, Ltd. (\"Zend\"). The Zend Engine is licensed\ + \ to the\n PHP Association (pursuant to a grant from Zend that can be\n found at\ + \ http://www.php.net/license/ZendGrant/) for\n distribution to you under this license\ + \ agreement, only as a\n part of PHP. In the event that you separate the Zend Engine\n\ + \ (or any portion thereof) from the rest of the software, or\n modify the Zend Engine,\ + \ or any portion thereof, your use of the\n separated or modified Zend Engine software\ + \ shall not be governed\n by this license, and instead shall be governed by the license\n\ + \ set forth at http://www.zend.com/license/ZendLicense/. \n\n\n\nTHIS SOFTWARE IS PROVIDED\ + \ BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND \nANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING,\ + \ BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A \nPARTICULAR\ + \ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PHP\nDEVELOPMENT TEAM OR ITS CONTRIBUTORS\ + \ BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\ + \ DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \nSERVICES;\ + \ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY\ + \ OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\ + \ OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\nOF THE\ + \ POSSIBILITY OF SUCH DAMAGE.\n\n--------------------------------------------------------------------\ + \ \n\nThis software consists of voluntary contributions made by many\nindividuals on behalf\ + \ of the PHP Group.\n\nThe PHP Group can be contacted via Email at group@php.net.\n\nFor\ + \ more information on the PHP Group and the PHP project, \nplease see ." json: php-2.0.2.json - yml: php-2.0.2.yml + yaml: php-2.0.2.yml html: php-2.0.2.html - text: php-2.0.2.LICENSE + license: php-2.0.2.LICENSE - license_key: php-3.0 + category: Permissive spdx_license_key: PHP-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "-------------------------------------------------------------------- \n \ + \ The PHP License, version 3.0\nCopyright (c) 1999 - 2006 The PHP Group. All rights\ + \ reserved.\n-------------------------------------------------------------------- \n\nRedistribution\ + \ and use in source and binary forms, with or without\nmodification, is permitted provided\ + \ that the following conditions\nare met:\n\n 1. Redistributions of source code must retain\ + \ the above copyright\n notice, this list of conditions and the following disclaimer.\n\ + \ \n 2. Redistributions in binary form must reproduce the above copyright\n notice,\ + \ this list of conditions and the following disclaimer in\n the documentation and/or\ + \ other materials provided with the\n distribution.\n \n 3. The name \"PHP\" must not\ + \ be used to endorse or promote products\n derived from this software without prior\ + \ written permission. For\n written permission, please contact group@php.net.\n \n\ + \ 4. Products derived from this software may not be called \"PHP\", nor\n may \"PHP\"\ + \ appear in their name, without prior written permission\n from group@php.net. You\ + \ may indicate that your software works in\n conjunction with PHP by saying \"Foo for\ + \ PHP\" instead of calling\n it \"PHP Foo\" or \"phpfoo\"\n \n 5. The PHP Group may\ + \ publish revised and/or new versions of the\n license from time to time. Each version\ + \ will be given a\n distinguishing version number.\n Once covered code has been\ + \ published under a particular version\n of the license, you may always continue to\ + \ use it under the terms\n of that version. You may also choose to use such covered\ + \ code\n under the terms of any subsequent version of the license\n published by\ + \ the PHP Group. No one other than the PHP Group has\n the right to modify the terms\ + \ applicable to covered code created\n under this License.\n\n 6. Redistributions of\ + \ any form whatsoever must retain the following\n acknowledgment:\n \"This product\ + \ includes PHP, freely available from\n \".\n\nTHIS SOFTWARE IS\ + \ PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND \nANY EXPRESSED OR IMPLIED WARRANTIES,\ + \ INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\ + \ FOR A \nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PHP\nDEVELOPMENT TEAM\ + \ OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\ + \ OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\ + \ OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED\ + \ AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING\ + \ NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\ + \ ADVISED\nOF THE POSSIBILITY OF SUCH DAMAGE.\n\n--------------------------------------------------------------------\ + \ \n\nThis software consists of voluntary contributions made by many\nindividuals on behalf\ + \ of the PHP Group.\n\nThe PHP Group can be contacted via Email at group@php.net.\n\nFor\ + \ more information on the PHP Group and the PHP project, \nplease see .\n\ + \nThis product includes the Zend Engine, freely available at\n." json: php-3.0.json - yml: php-3.0.yml + yaml: php-3.0.yml html: php-3.0.html - text: php-3.0.LICENSE + license: php-3.0.LICENSE - license_key: php-3.01 + category: Permissive spdx_license_key: PHP-3.01 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The PHP License, version 3.01 \n\nCopyright (c) 1999 - 2012 The PHP Group. All rights\ + \ reserved. \n\nRedistribution and use in source and binary forms, with or without \nmodification,\ + \ is permitted provided that the following conditions \nare met: \n\n1. Redistributions\ + \ of source code must retain the above copyright \nnotice, this list of conditions and the\ + \ following disclaimer. \n\n2. Redistributions in binary form must reproduce the above copyright\ + \ \nnotice, this list of conditions and the following disclaimer in \nthe documentation\ + \ and/or other materials provided with the \ndistribution. \n\n3. The name \"PHP\" must\ + \ not be used to endorse or promote products \nderived from this software without prior\ + \ written permission. For \nwritten permission, please contact group@php.net. \n\n4. Products\ + \ derived from this software may not be called \"PHP\", nor \nmay \"PHP\" appear in their\ + \ name, without prior written permission \nfrom group@php.net. You may indicate that your\ + \ software works in \nconjunction with PHP by saying \"Foo for PHP\" instead of calling\ + \ \nit \"PHP Foo\" or \"phpfoo\" \n\n5. The PHP Group may publish revised and/or new versions\ + \ of the \nlicense from time to time. Each version will be given a \ndistinguishing version\ + \ number. \nOnce covered code has been published under a particular version \nof the license,\ + \ you may always continue to use it under the terms \nof that version. You may also choose\ + \ to use such covered code \nunder the terms of any subsequent version of the license \n\ + published by the PHP Group. No one other than the PHP Group has \nthe right to modify the\ + \ terms applicable to covered code created \nunder this License. \n\n6. Redistributions\ + \ of any form whatsoever must retain the following \nacknowledgment: \n\"This product includes\ + \ PHP software, freely available from \n\". \n\nTHIS SOFTWARE\ + \ IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND \nANY EXPRESSED OR IMPLIED WARRANTIES,\ + \ INCLUDING, BUT NOT LIMITED TO, \nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\ + \ FOR A \nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PHP \nDEVELOPMENT TEAM\ + \ OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\ + \ OR CONSEQUENTIAL DAMAGES \n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\ + \ OR \nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER CAUSED\ + \ AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, \nSTRICT LIABILITY, OR TORT (INCLUDING\ + \ NEGLIGENCE OR OTHERWISE) \nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\ + \ ADVISED \nOF THE POSSIBILITY OF SUCH DAMAGE. \n\n--------------------------------------------------------------------\ + \ \n\nThis software consists of voluntary contributions made by many \nindividuals on behalf\ + \ of the PHP Group. \n\nThe PHP Group can be contacted via Email at group@php.net. \n\n\ + For more information on the PHP Group and the PHP project, \nplease see .\ + \ \n\nPHP includes the Zend Engine, freely available at \n." json: php-3.01.json - yml: php-3.01.yml + yaml: php-3.01.yml html: php-3.01.html - text: php-3.01.LICENSE + license: php-3.01.LICENSE - license_key: pine + category: Permissive spdx_license_key: LicenseRef-scancode-pine other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Pine License and Legal Notices\n\nPine and Pico are registered trademarks of the University\ + \ of Washington. No commercial use of these\ntrademarks may be made without prior written\ + \ permission of the University of Washington.\n\nPine, Pico, and Pilot software and its\ + \ included text are Copyright 1989-2007 by\nthe University of Washington. \n\nUse of Pine/Pico/Pilot:\ + \ You may compile and execute these programs for any purpose, including\ncommercial, without\ + \ paying anything to the University of Washington, provided that the legal notices are\n\ + maintained intact and honored.\n\nLocal modification of this release is permitted as follows,\ + \ or by mutual agreement: In order to\nreduce confusion and facilitate debugging, we request\ + \ that locally modified versions be denoted by\nappending the letter \"L\" to the current\ + \ version number, and that the local changes be\nenumerated in the integral release notes\ + \ and associated documentation.\n\nRedistribution of this release is permitted as follows,\ + \ or by mutual\nagreement:\n (a) In free-of-charge or at-cost distributions by non-profit\ + \ concerns;\n (b) In free-of-charge distributions by for-profit concerns;\n (c) Inclusion\ + \ in a CD-ROM collection of free-of-charge, shareware, or\n\t non-proprietary software\ + \ for which a fee may be charged for the \n\t packaged distribution.\n\nRedistribution\ + \ of binary versions is further constrained by license agreements for incorporated\nlibraries\ + \ from third parties, e.g. LDAP, GSSAPI.\n\nThe University of Washington encourages unrestricted\ + \ distribution of\nindividual patches to the Pine system. By \"patches\" we mean\n\"difference\"\ + \ files that can be applied to the University of\nWashington Pine source distribution in\ + \ order to accomplish bug fixes,\nminor enhancements, or adaptation to new operating systems.\ + \ Submission of\nthese patches to University of Washington for possible inclusion in future\n\ + Pine versions is also encouraged, with the understanding that they would\nbe treated the\ + \ same as all other Pine code in terms of licensing and the\nsubmission does not include\ + \ any software which infringes third party rights.\n\nThe above permissions are hereby granted,\ + \ provided that the Pine and\nPico copyright and trademark notices appear in all copies\ + \ and that both\nthe above copyright notice and this permission notice appear in supporting\n\ + documentation, and that the name of the University of Washington not be\nused in advertising\ + \ or publicity pertaining to distribution of the\nsoftware without specific, prior written\ + \ permission, and provided you\nacknowledge that pursuant to U.S. laws, Pine, Pico & Pilot\ + \ software may\nnot be downloaded, acquired or otherwise exported or re-exported (i) into,\n\ + or to a national or resident of any country to which the U.S. has\nembargoed goods; or (ii)\ + \ to anyone on the U.S. Treasury Department's list\nof Specially Designated Nations or the\ + \ U.S. Commerce Department's Table of\nDenial Orders.\n\nBy downloading the software, you\ + \ represent that: 1) you are not located in\nor under the control of a national or resident\ + \ of any such country or on\nany such list; and 2) you will not export or re-export the\ + \ software to any\nprohibited country, or to any prohibited person, entity, or end-user\ + \ as\nspecified by U.S. export controls.\n\nThis software is made available \"as is\", and\n\ + THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD TO\ + \ THIS\nSOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND FITNESS FOR A\nPARTICULAR PURPOSE, AND IN NO EVENT SHALL THE UNIVERSITY OF WASHINGTON\ + \ BE LIABLE FOR ANY SPECIAL,\nINDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\ + \ RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, TORT (INCLUDING\ + \ NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN\nCONNECTION WITH THE USE OR PERFORMANCE\ + \ OF THIS SOFTWARE. \n\nOther licensing terms are available by mutual agreement.\n\nPlease\ + \ see the Pine FAQ for more information on Pine Legal Issues.\n\nEnd of Pine License and\ + \ Legal Notices" json: pine.json - yml: pine.yml + yaml: pine.yml html: pine.html - text: pine.LICENSE + license: pine.LICENSE - license_key: pivotal-tou + category: Commercial spdx_license_key: LicenseRef-scancode-pivotal-tou other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Pivotal Software, Inc. Terms of Use\n\nSee https://pivotal.io/terms-of-use for complete\ + \ text. \n\nUse of Software\n\nTo the extent that Pivotal provides for the download of proprietary\n\ + Pivotal software or open source software from Pivotal Websites\n(\"Software\"), such Software\ + \ is protected by the applicable copyright,\npatent or other intellectual property rights\ + \ of either Pivotal or the\nthird-party licensor. Any use of the Software is subject to\ + \ the terms of\nthe applicable end-user or open source license agreement.\n\nAll evaluation\ + \ Software is provided \"AS IS\" for evaluation and internal\nuse only. You may not use\ + \ evaluation Software for commercial,\ndevelopment or production purposes. In addition,\ + \ evaluation Software\nmay be time-disabled and may cease to operate after a period of time." json: pivotal-tou.json - yml: pivotal-tou.yml + yaml: pivotal-tou.yml html: pivotal-tou.html - text: pivotal-tou.LICENSE + license: pivotal-tou.LICENSE - license_key: pixabay-content + category: Free Restricted spdx_license_key: LicenseRef-scancode-pixabay-content other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + License for Content – Pixabay License + + Content on Pixabay is made available to you on the following terms ("Pixabay License"). Under the Pixabay License you are granted an irrevocable, worldwide, non-exclusive and royalty free right to use, download, copy, modify or adapt the Content for commercial or non-commercial purposes. Attribution of the photographer, videographer, musician or Pixabay is not required but is always appreciated. + + The Pixabay License does not allow: + + Sale or distribution of Content as digital Content or as digital wallpapers (such as on stock media websites); + Sale or distribution of Content e.g. as a posters, digital prints, music files or physical products, without adding any additional elements or otherwise adding value + Depiction of identifiable persons in an offensive, pornographic, obscene, immoral, defamatory or libelous way; or + Any suggestion that there is an endorsement of products and services by depicted persons, brands, vocalists and organisations, unless permission was granted. + + Please be aware that while all Content on Pixabay is free to use for commercial and non-commercial purposes, items in the Content, such as identifiable people, logos, brands, audio samples etc. may be subject to additional copyrights, property rights, privacy rights, trademarks etc. and may require the consent of a third party or the license of these rights - particularly for commercial applications. Pixabay does not represent or warrant that such consents or licenses have been obtained, and expressly disclaims any liability in this respect. json: pixabay-content.json - yml: pixabay-content.yml + yaml: pixabay-content.yml html: pixabay-content.html - text: pixabay-content.LICENSE + license: pixabay-content.LICENSE - license_key: planet-source-code + category: Free Restricted spdx_license_key: LicenseRef-scancode-planet-source-code other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "Terms of Agreement: \nBy using this code, you agree to the following terms... \n\ + \nYou may use this code in your own programs (and may compile it into a program and distribute\ + \ it in compiled format for languages that allow it) freely and with no charge.\n\nYou MAY\ + \ NOT redistribute this code (for example to a web site) without written permission from\ + \ the original author. Failure to do so is a violation of copyright laws. \n\nYou may\ + \ link to this code from another website, but ONLY if it is not wrapped in a frame.\n\n\ + You will abide by any additional copyright restrictions which the author may have placed\ + \ in the code or code's description." json: planet-source-code.json - yml: planet-source-code.yml + yaml: planet-source-code.yml html: planet-source-code.html - text: planet-source-code.LICENSE + license: planet-source-code.LICENSE +- license_key: plural-20211124 + category: Source-available + spdx_license_key: LicenseRef-scancode-plural-20211124 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + Plural Licensing + + SOFTWARE LICENSING + + You are licensed to use compiled versions of the Plural platform produced by Plural Labs, Inc. under an MIT LICENSE + + You may be licensed to use source code to create compiled versions not produced by Plural Labs, Inc. in one of three ways: + + 1. Under the Free Software Foundation’s GNU AGPL v.3.0, subject to the exceptions outlined in this policy; or + 2. Under a commercial license available from Plural Labs, Inc. by contacting commercial@plural.sh + 3. Creating a licensed installation on app.plural.sh + + You are licensed to use the source code in Admin Tools and Configuration Files (plural/) under the Apache License v2.0. + + We promise that we will not enforce the copyleft provisions in AGPL v3.0 against you if your application (a) does not + link to the Plural Platform directly, but exclusively uses the Plural Admin Tools and Configuration Files, and + (b) you have not modified, added to or adapted the source code of Plural in a way that results in the creation of + a “modified version” or “work based on” Plural as these terms are defined in the AGPL v3.0 license. + + + ------------------------------------------------------------------------------------------------------------------------------ + MIT License + + Copyright (c) 2021 Plural Labs, Inc + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + + ------------------------------------------------------------------------------------------------------------------------------ + + 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. + + ------------------------------------------------------------------------------ + + The software is released under the terms of the GNU Affero General Public + License, version 3. + + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for + software and other kinds of works, specifically designed to ensure + cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed + to take away your freedom to share and change the works. By contrast, + our General Public Licenses are 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. + + 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. + + Developers that use our General Public Licenses protect your rights + with two steps: (1) assert copyright on the software, and (2) offer + you this License which gives you legal permission to copy, distribute + and/or modify the software. + + A secondary benefit of defending all users' freedom is that + improvements made in alternate versions of the program, if they + receive widespread use, become available for other developers to + incorporate. Many developers of free software are heartened and + encouraged by the resulting cooperation. However, in the case of + software used on network servers, this result may fail to come about. + The GNU General Public License permits making a modified version and + letting the public access it on a server without ever releasing its + source code to the public. + + The GNU Affero General Public License is designed specifically to + ensure that, in such cases, the modified source code becomes available + to the community. It requires the operator of a network server to + provide the source code of the modified version running there to the + users of that server. Therefore, public use of a modified version, on + a publicly accessible server, gives the public access to the source + code of the modified version. + + An older license, called the Affero General Public License and + published by Affero, was designed to accomplish similar goals. This is + a different license, not a version of the Affero GPL, but Affero has + released a new version of the Affero GPL which permits relicensing under + this license. + + 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 Affero 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. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the + Program, your modified version must prominently offer all users + interacting with it remotely through a computer network (if your version + supports such interaction) an opportunity to receive the Corresponding + Source of your version by providing access to the Corresponding Source + from a network server at no charge, through some standard or customary + means of facilitating copying of software. This Corresponding Source + shall include the Corresponding Source for any work covered by version 3 + of the GNU General Public License that is incorporated pursuant to the + following paragraph. + + 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 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 work with which it is combined will remain governed by version + 3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of + the GNU Affero 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 Affero 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 Affero 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 Affero General Public License can be used, that proxy's + public statement of acceptance of a version permanently authorizes you + to choose that version for the Program. + + Later license versions may give you additional or different + permissions. However, no additional obligations are imposed on any + author or copyright holder as a result of your choosing to follow a + later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY + APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT + HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY + OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM + IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF + ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING + WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS + THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY + GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE + USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF + DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD + PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), + EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF + SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided + above cannot be given local legal effect according to their terms, + reviewing courts shall apply local law that most closely approximates + an absolute waiver of all civil liability in connection with the + Program, unless a warranty or assumption of liability accompanies a + copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest + possible use to the public, the best way to achieve this is to make it + free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest + to attach them to the start of each source file to most effectively + state the exclusion of warranty; and each file should have at least + the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + + Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer + network, you should also make sure that it provides a way for users to + get its source. For example, if your program is a web application, its + interface could display a "Source" link that leads users to an archive + of the code. There are many ways you could offer source, and different + solutions will be better for different programs; see section 13 for the + specific requirements. + + 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 AGPL, see + . + json: plural-20211124.json + yaml: plural-20211124.yml + html: plural-20211124.html + license: plural-20211124.LICENSE - license_key: pml-2020 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-pml-2020 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Last updated January 9, 2020\n\nCurrent developers See what’s changed?\nProgram Materials\ + \ License Agreement\n\nThis is an agreement (the “License Agreement”) between the individual\ + \ or entity (“you”) that receives or uses any of the Program Materials (as defined below)\ + \ and Amazon.com Services LLC, Amazon Media EU S.à r.l. and their respective affiliates\ + \ that make available Program Materials under this License Agreement (each, an “Amazon Party”\ + \ and, together with their affiliates, “Amazon,” “we,” or “us”).\n\nIf you receive or use\ + \ any Program Materials, you accept and agree to be bound by this License Agreement and\ + \ represent that you have the authority to bind yourself or the entity you represent to\ + \ this License Agreement.\n\n1. Structure of Agreement\n\n This License Agreement includes\ + \ (a) the body of the agreement below and (b) the schedules to this agreement and any other\ + \ additional terms provided with the delivery of specific Program Materials (collectively,\ + \ “Additional Terms”). However, any Additional Terms only apply to you if you engage in\ + \ the activity or use the Program Materials to which those Additional Terms apply (for instance,\ + \ the terms of the Restricted Program Materials Schedule only apply to you if you receive\ + \ or use Restricted Program Materials, as defined in that schedule). To the extent there\ + \ is any conflict between the body of the agreement and any Additional Terms, the Additional\ + \ Terms control with respect to the Program Materials to which they apply.\n\n2. Program\ + \ Materials\n\n “Program Materials” means any Software or Equipment an Amazon Party makes\ + \ available to you under this License Agreement for use in connection with an Amazon program\ + \ or service (each, an “Amazon Program”). “Software” means software, software development\ + \ kits, libraries, application programming interfaces, sample code, templates, documentation,\ + \ and other related materials. “Equipment” means physical hardware, including consumer electronics\ + \ devices.\n\n3. License\n\n The Amazon Party that makes Program Materials available\ + \ to you grants you a limited, revocable, non-exclusive, royalty-free, non-transferable,\ + \ non-sub-licensable license to use the Program Materials and reproduce the Software (if\ + \ applicable) solely for the purposes of developing, testing, and promoting your digital\ + \ and physical products (“Your Products”) and providing end users access to Amazon Programs\ + \ through Your Products, in each case, as contemplated by the documentation for the applicable\ + \ Program Materials. You may use Program Materials only in connection with the Amazon Program\ + \ for which they are made available, unless the documentation for the applicable Program\ + \ Materials authorizes broader use. If the Program Materials include any libraries, source\ + \ code, or other materials we make available specifically for incorporation in Your Products\ + \ (as indicated by the applicable documentation), you may incorporate those materials in\ + \ Your Products and reproduce and distribute those Program Materials as incorporated in\ + \ Your Products. You may also modify any such source code to the extent necessary to incorporate\ + \ it in Your Products. We may modify or discontinue (including by ceasing our distribution\ + \ of or support for) any or all of the Program Materials at any time without notice and\ + \ you are solely responsible for ensuring that Your Products function properly after any\ + \ such modification or discontinuation.\n\n4. Limitations\n\n You may use the Program\ + \ Materials only as expressly authorized under this License Agreement, and only through\ + \ the interfaces and functionality we designate. You must comply with all instructions and\ + \ requirements in any integration documents, guidelines, or other documentation that we\ + \ provide, including any usage limits or quotas.\n\n Except as expressly permitted under\ + \ Section 3, you will not: (a) incorporate or compile any portion of the Program Materials\ + \ into Your Products or other digital or physical products; (b) distribute, sub-license,\ + \ resell, lease, transfer, or otherwise provide access to any portion of the Program Materials\ + \ to any third party; or (c) modify or create derivative works of the Program Materials.\ + \ You will not circumvent or disable any copy protection, security, or other controls in\ + \ the Program Materials or use the Program Materials in a way intended to avoid incurring\ + \ any applicable fees or exceeding usage limits or quotas. You will not reverse engineer,\ + \ disassemble or decompile the Program Materials (except to the extent applicable law doesn’t\ + \ allow this restriction); remove any embedded Software from any Equipment; copy any embedded\ + \ Software; or use any Software provided with Equipment separate from the Equipment for\ + \ which it was provided. You will not use the Program Materials with any software or other\ + \ materials that are subject to licenses or restrictions (e.g., open source software licenses)\ + \ that, when combined with the Program Materials, would require you or us to disclose, license,\ + \ distribute or otherwise make all or any part of such Program Materials available to anyone.\ + \ You will not remove, modify, or obscure any copyright, patent, trademark or other proprietary\ + \ or attribution notices on or in any Program Materials. You will not direct, encourage,\ + \ or assist any other party to take any action prohibited by this License Agreement.\n\n\ + \ All licenses granted to you in this License Agreement are conditional on your continued\ + \ compliance with this License Agreement and any other agreements you have entered into\ + \ with Amazon related to your participation in an Amazon Program, and will immediately and\ + \ automatically terminate if you do not comply with any term of such agreements.\n\n5. Reservation\ + \ of Rights; Other Licenses\n\n The Program Materials are the intellectual property of\ + \ Amazon or its licensors. Except for the rights explicitly granted to you in this License\ + \ Agreement, all right, title and interest in and to the Program Materials are reserved\ + \ and retained by us and our licensors. If you provide suggestions, ideas, or other feedback\ + \ to us about the Amazon Programs or Program Materials, we will be free to exercise all\ + \ rights in such feedback without restriction and without compensating you. The Program\ + \ Materials may include or be distributed with Software that is provided under a separate\ + \ license agreement (such as an open source license). To the extent there is a conflict\ + \ between this License Agreement and any separate license, the separate license controls\ + \ with respect to the Software that is the subject of such separate license. Any such separate\ + \ license agreement may be indicated in the schedules to this License Agreement, in the\ + \ license, notice, or readme files distributed with the applicable Software, or in related\ + \ documentation.\n\n6. Disclaimers and Limitation on Liability\n\n THE PROGRAM MATERIALS\ + \ ARE PROVIDED “AS IS,” AND WITHOUT WARRANTIES, OR REPRESENTATIONS OF ANY KIND, AND AMAZON,\ + \ ITS LICENSORS, AND EACH OF THEIR RESPECTIVE AFFILIATES AND SUPPLIERS DISCLAIM ALL WARRANTIES,\ + \ EXPRESS, IMPLIED, OR STATUTORY, INCLUDING ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR\ + \ A PARTICULAR PURPOSE, TITLE, OR NON-INFRINGEMENT. YOUR USE OF THE PROGRAM MATERIALS IS\ + \ AT YOUR SOLE RISK. IN NO EVENT WILL AMAZON, ITS LICENSORS, OR ANY OF THEIR RESPECTIVE\ + \ AFFILIATES OR SUPPLIERS BE LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT LIMITATION ANY DIRECT,\ + \ INDIRECT, CONSEQUENTIAL, SPECIAL, INCIDENTAL, PUNITIVE, OR EXEMPLARY DAMAGES (INCLUDING\ + \ FOR ANY LOSS OF GOODWILL, BUSINESS INTERRUPTION, LOST PROFITS OR DATA, COST OF COVER,\ + \ OR COMPUTER FAILURE OR MALFUNCTION) ARISING FROM OR RELATING TO THE PROGRAM MATERIALS\ + \ OR THIS LICENSE AGREEMENT, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, EVEN\ + \ IF AMAZON HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS AND DISCLAIMERS\ + \ APPLY EXCEPT TO THE EXTENT PROHIBITED BY APPLICABLE LAW.\n\n7. Indemnification\n\n \ + \ You release us and will indemnify, defend and hold us (including any respective officers,\ + \ directors, employees, contractors and assigns) harmless from and against any loss, expense,\ + \ claim, liability, damage, action or cause of action (including reasonable attorneys’ fees)\ + \ that arises out of any claim relating to Your Products or your breach or non-compliance\ + \ with this License Agreement (each, a “Claim”). You will not consent to the entry of a\ + \ judgment or settle a Claim without our prior written consent, which may not be unreasonably\ + \ withheld. You will use counsel reasonably satisfactory to us to defend each Claim. If\ + \ we reasonably determine that a Claim might adversely affect us, we may take control of\ + \ the defense at our expense (and without limiting your indemnification obligations). Your\ + \ obligations under this Section 7 are independent of your other obligations under this\ + \ License Agreement.\n\n8. Compliance with Laws\n\n You will comply with all applicable\ + \ laws, rules, regulations, orders, and other requirements of governmental agencies (together,\ + \ “Laws”) in your use of the Program Materials and in the development and distribution of\ + \ Your Products that use any Program Materials. Without limiting the foregoing, you will\ + \ comply with all export, re-export, and import Laws of the United States and other countries\ + \ that may apply to the Program Materials, and will not transfer, or encourage, assist,\ + \ or authorize the transfer of, the Program Materials to a prohibited country or otherwise\ + \ in violation of any applicable Laws. You will not engage in any activity using or related\ + \ to the Program Materials, including the development or distribution of Your Products,\ + \ that (a) infringes, violates, or misappropriates our rights or the rights of any third\ + \ party, or (b) interferes with, damages, or uses in any unauthorized manner the hardware,\ + \ software, networks, technologies, or other properties or services of ours or of any end\ + \ user or other third party.\n\n9. Agreement Changes\n\n We reserve the right to change\ + \ this License Agreement at any time in our discretion. We will give you notice of the changes\ + \ by posting an updated version of this License Agreement online. Changes to this License\ + \ Agreement will be effective as of the date we post them, unless we specify a different\ + \ effective date when we make a particular change. You are responsible for checking for\ + \ License Agreement updates. Your continued use of Program Materials after changes to this\ + \ License Agreement take effect will constitute your acceptance of the changes. If you do\ + \ not agree to a change, you must stop using the Program Materials and terminate this License\ + \ Agreement.\n \n10. Termination\n\n We may terminate this License Agreement or your\ + \ right to use any or all of the Program Materials at any time without advance notice to\ + \ you, in which case you must cease all use of the Program Materials, destroy all copies\ + \ of the Software in your possession or control, and, at Amazon’s direction, return or destroy\ + \ any Equipment provided to you. You may terminate this License Agreement at any time by\ + \ taking all actions that would be required if we terminated the License Agreement. The\ + \ following provisions of this License Agreement will survive termination: Sections 1-2,\ + \ 4-8, 10-12, and any other provisions that, by their nature, are intended to survive.\n\ + \n11. U.S. Government Rights\n\n The Program Materials are provided to the U.S. Government\ + \ as “commercial items,” “commercial computer software,” “commercial computer software documentation,”\ + \ and “technical data” (each, as defined in the Federal Acquisition Regulation and the Defense\ + \ Federal Acquisition Regulation Supplement) with the same rights and restrictions generally\ + \ applicable to others under this License Agreement. If you are using the Program Materials\ + \ on behalf of the U.S. Government and these terms fail to meet the U.S. Government’s needs\ + \ or are inconsistent in any respect with federal law, you must immediately discontinue\ + \ use of the Program Materials.\n\n12. General\n\n If any provision of this License Agreement\ + \ is held invalid by a court with jurisdiction over the parties to this License Agreement,\ + \ such provision will be deemed to be restated to reflect as nearly as possible the original\ + \ intentions of the parties in accordance with applicable law, and the remainder of this\ + \ License Agreement will remain in full force and effect. You may not assign any of your\ + \ rights or obligations under this License Agreement, whether by operation of law or otherwise,\ + \ without our prior written consent. Each party may use one or more subcontractors to exercise\ + \ its rights and perform its obligations hereunder. Each party will be responsible for ensuring\ + \ that its subcontractors comply with the applicable portions of this License Agreement\ + \ when performing work on its behalf and will be liable for any noncompliance. Our failure\ + \ to insist upon or enforce your strict compliance with this License Agreement will not\ + \ constitute a waiver of any of our rights. In addition to the Amazon Parties, our licensors\ + \ may enforce this License Agreement against you with respect to their software and other\ + \ materials included in the Program Materials, and our licensors are third-party beneficiaries\ + \ of this License Agreement solely for that purpose. The word “including” will be interpreted\ + \ without limitation when used in this License Agreement. This License Agreement is governed\ + \ by the laws of the State of Washington, without reference to rules governing choice of\ + \ laws or the U.N. Convention on Contracts for the International Sale of Goods, and you\ + \ irrevocably consent to the exclusive jurisdiction and venue of the federal and state courts\ + \ located in King County, Washington. HOWEVER, WE MAY SEEK INJUNCTIVE (OR SIMILAR) REMEDIES\ + \ IN ANY JURISDICTION. This License Agreement supersedes all prior or contemporaneous representations,\ + \ understandings, agreements, or communications between you and us, whether written or verbal,\ + \ regarding the subject matter of this License Agreement. Each party will be responsible,\ + \ as required under applicable law, for identifying and paying all taxes and other governmental\ + \ fees and charges that are imposed on that party upon or with respect to the transactions\ + \ under this License Agreement. For the transfer of any Equipment by Amazon to you, title\ + \ (but not the intellectual property rights therein or any ownership interest in any embedded\ + \ or related Software) will pass to you upon our handing them to a common carrier at our\ + \ location. If Equipment is shipped to a location outside the United States, you will be\ + \ the importer of record for the Equipment and will be solely responsible for all costs\ + \ incurred during the transfer of and while holding the Equipment (e.g., customs duties,\ + \ taxes, tariffs) as well as any risk of loss. Delivery terms for Equipment shipped to you\ + \ will be Free Carrier (FCA) Incoterms 2010.\n\n\nMaps API Schedule\n\nIf you use the Program\ + \ Materials we make available to enable the use of mapping-related features within Your\ + \ Products (such materials, the “Maps API”), including through Amazon Maps redirection,\ + \ you accept and agree to be bound by the HERE Materials Terms and Conditions, which apply\ + \ to the portions of the Maps API provided by HERE North America, LLC or its affiliates.\n\ + \n\nAmazon Mobile Ads API Schedule\n\nIf you use the Program Materials we make available\ + \ to enable the use of our Amazon Mobile Ad Network within Your Products, including any\ + \ component of our Amazon Mobile Ads API, you accept and agree to be bound by our Mobile\ + \ Ad Network Publisher Agreement.\n\n\nRestricted Program Materials Schedule\n\nThe terms\ + \ of this schedule apply to you if you receive or use any Program Materials we designate\ + \ as confidential, restricted, prototype, beta, or for evaluation purposes (“Restricted\ + \ Program Materials”).\n\n1. Confidentiality. You will protect and keep confidential any\ + \ Restricted Program Materials and other non-public information or technology you may receive\ + \ in connection with this License Agreement (including design elements, look and feel, features,\ + \ functionality, product details, reference designs, and information regarding product launches)\ + \ that is identified as confidential or proprietary or that, given the nature of such information\ + \ or technology or the manner of its disclosure, reasonably should be considered confidential\ + \ or proprietary (“Confidential Information”). You will (a) not disclose Confidential Information,\ + \ (b) use Confidential Information only for the purpose provided and during any use period\ + \ identified by Amazon, (c) restrict access to Confidential Information to your personnel\ + \ that have a need to know the specific Confidential Information and have entered into written\ + \ nondisclosure agreements, and (d) promptly upon termination of this License Agreement,\ + \ destroy all Confidential Information (or at our direction return such Confidential Information\ + \ to us). You may not take photos or videos of any Restricted Program Materials. You acknowledge\ + \ that any violation of this schedule could cause irreparable harm to Amazon for which monetary\ + \ damages may be difficult to ascertain or an inadequate remedy. You therefore agree that\ + \ Amazon will have the right, in addition to its other rights and remedies, to seek injunctive\ + \ relief for any violation of this schedule without any obligation to prove damages or post\ + \ a bond or any other security.\n\n2. Distribution. You may not distribute any of Your Products\ + \ that incorporate or were developed using Restricted Program Materials unless: (a) you\ + \ submit Your Product to us for approval and we specifically approve the distribution in\ + \ writing and (b) if any Restricted Program Materials incorporated in Your Product were\ + \ provided to you in source code form, such Restricted Program Materials (and modifications\ + \ thereof) are distributed solely in binary form as incorporated in Your Products.\n\n3.\ + \ No Use of Contractors. Notwithstanding anything to the contrary in the License Agreement,\ + \ you may not provide Restricted Program Materials to any contractor or other third-party\ + \ without our prior written permission.\n\n4. Additional Restrictions. If we inform you\ + \ that additional restrictions apply to certain Restricted Program Materials (e.g., that\ + \ you must comply with specific equipment handling guidelines, limit use to locations authorized\ + \ by us, or limit access to only specific employees), you will comply with those restrictions.\n\ + \n5. Survival. All sections of this schedule will survive any termination of the License\ + \ Agreement.\n\n\nAVS Component Schedule\n\nThe terms of this schedule apply if Your Products\ + \ are designed to be incorporated as components of, or used in the development of, other\ + \ applications or devices that provide end users access to the Amazon Alexa voice service\ + \ (“AVS Components”).\n\n1. Flow-through Requirement. Prior to distributing any AVS Component\ + \ that incorporates any Program Materials, you must ensure the recipient of the AVS Component\ + \ agrees to a binding written agreement that: (a) subjects the recipient to this License\ + \ Agreement and any additional terms that apply to the applicable Program Materials and\ + \ (b) designates Amazon as a third-party beneficiary.\n\n\nChanges to Program Materials\ + \ License Agreement posted January 9, 2020\n\nWe’ve updated the Program Materials License\ + \ Agreement to change one of the Amazon entities to Amazon.com Services LLC.\n\n\nChanges\ + \ to Program Materials License Agreement posted August 22, 2018\n\nWe’ve updated the Program\ + \ Materials License Agreement to add the AVS Component Schedule applicable to certain AVS\ + \ developers.\n\n\nChanges to Program Materials License Agreement posted December 1, 2017\n\ + \nIn certain circumstances, we provide developers with access to prototype and confidential\ + \ Program Materials or to certain hardware in connection with specific Amazon Programs.\ + \ We updated the Program Materials License Agreement to include terms specific to these\ + \ types of Program Materials and to make other updates. Please review the full text of the\ + \ updated License Agreement carefully." json: pml-2020.json - yml: pml-2020.yml + yaml: pml-2020.yml html: pml-2020.html - text: pml-2020.LICENSE + license: pml-2020.LICENSE - license_key: pngsuite + category: Permissive spdx_license_key: LicenseRef-scancode-pngsuite other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify and distribute these images for any + purpose and without fee is hereby granted. json: pngsuite.json - yml: pngsuite.yml + yaml: pngsuite.yml html: pngsuite.html - text: pngsuite.LICENSE + license: pngsuite.LICENSE - license_key: politepix-pl-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-politepix-pl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Politepix Public License version 1.0 + + Definitions + + "Politepix" refers to Politepix UG (haftungsbeschrankt), which may also be known as Politepix or Politepix UG, and which may at a later date be known as Politepix GmbH. + "Software" refers to all elements of the OpenEars framework that are copyrighted to Politepix. + "Application" for the purpose of this license refers exclusively to a self-contained compiled software program of the type that can be downloaded from the iTunes App Store or Cydia for use on an enduser's device, commonly known as an App. It explicitly excludes the following: frameworks, SDKs or client or server systems used for the creation of such software programs or for the creation of other types of software, as well as reusable components, operating systems, and plugins which modify apps, frameworks or operating systems. + + Granted Rights + + You are granted the non-exclusive rights set forth in this license provided you agree to and comply with any and all conditions in this license. It is transferable to other parties provided that they agree to and comply with any and all conditions in this license. Use of the software signifies acceptance of this license. + + 1. You may make modifications to the Software and you may use the original or modified versions of the Software to link, compile and build Applications, including commercial Applications. + 2. You may distribute these Applications in a binary, machine-executable form. + + If your project wants more rights than this, please feel welcome to get in touch at http://www.politepix.com/contact and inquire about whether it is possible to obtain other licensing terms. Educational and public good projects are especially encouraged to inquire. + + Credit + + You must include credit in your Application as follows in a user-readable form in an accessible view of your Application, replacing with the name of your Application: + uses the CMU Pocketsphinx library, the CMU Flite library, the CMU CMUCMLTK library (http://cmusphinx.sourceforge.net) and Politepix’s OpenEars (http://www.politepix.com/openears). + + Contributions + + Each contributor, defined as a party who submits source code modifications for the Software whose purpose is to modify the behavior of the Software, also commonly known as patches or fixes, hereby grants Politepix a world-wide, royalty-free, non-exclusive license to use, reproduce, modify, display, perform, sublicense and distribute the modifications or portions thereof either on an unmodified basis or with other modifications. Submitting a contribution is defined as intentionally communicating the information to Politepix employees and representatives, including posts on the Politepix forums, sending uploads or diffs or pull requests to Politepix/OpenEars repositories or servers, and emails to Politepix employees or representatives. + + Termination and Survival + + The rights granted hereunder will terminate automatically if you fail to comply with terms herein. The other provisions shall survive. + + Miscellaneous + + This license represents the complete agreement concerning subject matter hereof. If any provision of this license is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This license and any litigation relating to it shall be subject to the jurisdiction of the courts located in Berlin, Germany. + + Limitation of Liability + + The Software and this license document are provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, ACCURACY AND TITLE, AND THOSE ARISING FROM A COURSE OF DEALING OR USAGE OF TRADE. POLITEPIX UG (HAFTUNGSBESCHRANKT) SHALL NOT BE LIABLE FOR, AND HEREBY EXPRESSLY DISCLAIMS ANY LIABILITY FOR: DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, LOSS OF BUSINESS, OR ANY AND ALL OTHER CONSEQUENTIAL, SPECIAL, COMMERCIAL, INDIRECT OR PUNITIVE DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY ANY THIRD-PARTY. json: politepix-pl-1.0.json - yml: politepix-pl-1.0.yml + yaml: politepix-pl-1.0.yml html: politepix-pl-1.0.html - text: politepix-pl-1.0.LICENSE + license: politepix-pl-1.0.LICENSE - license_key: polyform-defensive-1.0.0 + category: Source-available spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Source-available + text: | + # PolyForm Defensive License 1.0.0 + + + + ## Acceptance + + In order to get any license under these terms, you must agree + to them as both strict obligations and conditions to all + your licenses. + + ## Copyright License + + The licensor grants you a copyright license for the + software to do everything you might do with the software + that would otherwise infringe the licensor's copyright + in it for any permitted purpose. However, you may + only distribute the software according to [Distribution + License](#distribution-license) and make changes or new works + based on the software according to [Changes and New Works + License](#changes-and-new-works-license). + + ## Distribution License + + The licensor grants you an additional copyright license + to distribute copies of the software. Your license + to distribute covers distributing the software with + changes and new works permitted by [Changes and New Works + License](#changes-and-new-works-license). + + ## Notices + + You must ensure that anyone who gets a copy of any part of + the software from you also gets a copy of these terms or the + URL for them above, as well as copies of any plain-text lines + beginning with `Required Notice:` that the licensor provided + with the software. For example: + + > Required Notice: Copyright Yoyodyne, Inc. (http://example.com) + + ## Changes and New Works License + + The licensor grants you an additional copyright license to + make changes and new works based on the software for any + permitted purpose. + + ## Patent License + + The licensor grants you a patent license for the software that + covers patent claims the licensor can license, or becomes able + to license, that you would infringe by using the software. + + ## Noncompete + + Any purpose is a permitted purpose, except for providing any + product that competes with the software or any product the + licensor or any of its affiliates provides using the software. + + ## Competition + + Goods and services compete even when they provide functionality + through different kinds of interfaces or for different technical + platforms. Applications can compete with services, libraries + with plugins, frameworks with development tools, and so on, + even if they're written in different programming languages + or for different computer architectures. Goods and services + compete even when provided free of charge. If you market a + product as a practical substitute for the software or another + product, it definitely competes. + + ## New Products + + If you are using the software to provide a product that does + not compete, but the licensor or any of its affiliates brings + your product into competition by providing a new version of + the software or another product using the software, you may + continue using versions of the software available under these + terms beforehand to provide your competing product, but not + any later versions. + + ## Discontinued Products + + You may begin using the software to compete with a product + or service that the licensor or any of its affiliates has + stopped providing, unless the licensor includes a plain-text + line beginning with `Licensor Line of Business:` with the + software that mentions that line of business. For example: + + > Licensor Line of Business: YoyodyneCMS Content Management + System (http://example.com/cms) + + ## Sales of Business + + If the licensor or any of its affiliates sells a line of + business developing the software or using the software + to provide a product, the buyer can also enforce + [Noncompete](#noncompete) for that product. + + ## Fair Use + + You may have "fair use" rights for the software under the + law. These terms do not limit them. + + ## No Other Rights + + These terms do not allow you to sublicense or transfer any of + your licenses to anyone else, or prevent the licensor from + granting licenses to anyone else. These terms do not imply + any other licenses. + + ## Patent Defense + + If you make any written claim that the software infringes or + contributes to infringement of any patent, your patent license + for the software granted under these terms ends immediately. If + your company makes such a claim, your patent license ends + immediately for work on behalf of your company. + + ## Violations + + The first time you are notified in writing that you have + violated any of these terms, or done anything with the software + not covered by your licenses, your licenses can nonetheless + continue if you come into full compliance with these terms, + and take practical steps to correct past violations, within + 32 days of receiving notice. Otherwise, all your licenses + end immediately. + + ## No Liability + + ***As far as the law allows, the software comes as is, without + any warranty or condition, and the licensor will not be liable + to you for any damages arising out of these terms or the use + or nature of the software, under any kind of legal claim.*** + + ## Definitions + + The **licensor** is the individual or entity offering these + terms, and the **software** is the software the licensor makes + available under these terms. + + A **product** can be a good or service, or a combination + of them. + + **You** refers to the individual or entity agreeing to these + terms. + + **Your company** is any legal entity, sole proprietorship, + or other kind of organization that you work for, plus all + its affiliates. + + **Affiliates** means the other organizations than an + organization has control over, is under the control of, or is + under common control with. + + **Control** means ownership of substantially all the assets of + an entity, or the power to direct its management and policies + by vote, contract, or otherwise. Control can be direct or + indirect. + + **Your licenses** are all the licenses granted to you for the + software under these terms. + + **Use** means anything you do with the software requiring one + of your licenses. json: polyform-defensive-1.0.0.json - yml: polyform-defensive-1.0.0.yml + yaml: polyform-defensive-1.0.0.yml html: polyform-defensive-1.0.0.html - text: polyform-defensive-1.0.0.LICENSE + license: polyform-defensive-1.0.0.LICENSE - license_key: polyform-free-trial-1.0.0 + category: Source-available spdx_license_key: LicenseRef-scancode-polyform-free-trial-1.0.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + # Polyform Free Trial License 1.0.0 + + + + ## Acceptance + + In order to get any license under these terms, you must agree + to them as both strict obligations and conditions to all + your licenses. + + ## Copyright License + + The licensor grants you a copyright license for the software + to do everything you might do with the software that would + otherwise infringe the licensor's copyright in it for any + permitted purpose. However, you may only make changes or + new works based on the software according to [Changes and New + Works License](#changes-and-new-works-license), and you may + not distribute copies of the software. + + ## Changes and New Works License + + The licensor grants you an additional copyright license to + make changes and new works based on the software for any + permitted purpose. + + ## Patent License + + The licensor grants you a patent license for the software that + covers patent claims the licensor can license, or becomes able + to license, that you would infringe by using the software. + + ## Fair Use + + You may have "fair use" rights for the software under the + law. These terms do not limit them. + + ## Free Trial + + Use to evaluate whether the software suits a particular + application for less than 32 consecutive calendar days, on + behalf of you or your company, is use for a permitted purpose. + + ## No Other Rights + + These terms do not allow you to sublicense or transfer any of + your licenses to anyone else, or prevent the licensor from + granting licenses to anyone else. These terms do not imply + any other licenses. + + ## Patent Defense + + If you make any written claim that the software infringes or + contributes to infringement of any patent, your patent license + for the software granted under these terms ends immediately. If + your company makes such a claim, your patent license ends + immediately for work on behalf of your company. + + ## Violations + + If you violate any of these terms, or do anything with the + software not covered by your licenses, all your licenses + end immediately. + + ## No Liability + + ***As far as the law allows, the software comes as is, without + any warranty or condition, and the licensor will not be liable + to you for any damages arising out of these terms or the use + or nature of the software, under any kind of legal claim.*** + + ## Definitions + + The **licensor** is the individual or entity offering these + terms, and the **software** is the software the licensor makes + available under these terms. + + **You** refers to the individual or entity agreeing to these + terms. + + **Your company** is any legal entity, sole proprietorship, + or other kind of organization that you work for, plus all + organizations that have control over, are under the control of, + or are under common control with that organization. **Control** + means ownership of substantially all the assets of an entity, + or the power to direct its management and policies by vote, + contract, or otherwise. Control can be direct or indirect. + + **Your licenses** are all the licenses granted to you for the + software under these terms. + + **Use** means anything you do with the software requiring one + of your licenses. json: polyform-free-trial-1.0.0.json - yml: polyform-free-trial-1.0.0.yml + yaml: polyform-free-trial-1.0.0.yml html: polyform-free-trial-1.0.0.html - text: polyform-free-trial-1.0.0.LICENSE + license: polyform-free-trial-1.0.0.LICENSE - license_key: polyform-internal-use-1.0.0 + category: Source-available spdx_license_key: LicenseRef-scancode-polyform-internal-use-1.0.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + # Polyform Internal Use License 1.0.0 + + + + ## Acceptance + + In order to get any license under these terms, you must agree + to them as both strict obligations and conditions to all + your licenses. + + ## Copyright License + + The licensor grants you a copyright license for the software + to do everything you might do with the software that would + otherwise infringe the licensor's copyright in it for any + permitted purpose. However, you may only make changes or + new works based on the software according to [Changes and New + Works License](#changes-and-new-works-license), and you may + not distribute the software. + + ## Changes and New Works License + + The licensor grants you an additional copyright license to + make changes and new works based on the software for any + permitted purpose. + + ## Patent License + + The licensor grants you a patent license for the software that + covers patent claims the licensor can license, or becomes able + to license, that you would infringe by using the software. + + ## Fair Use + + You may have "fair use" rights for the software under the + law. These terms do not limit them. + + ## Internal Business Use + + Use of the software for the internal business operations of + you and your company is use for a permitted purpose. + + ## No Other Rights + + These terms do not allow you to sublicense or transfer any of + your licenses to anyone else, or prevent the licensor from + granting licenses to anyone else. These terms do not imply + any other licenses. + + ## Patent Defense + + If you make any written claim that the software infringes or + contributes to infringement of any patent, your patent license + for the software granted under these terms ends immediately. If + your company makes such a claim, your patent license ends + immediately for work on behalf of your company. + + ## Violations + + The first time you are notified in writing that you have + violated any of these terms, or done anything with the software + not covered by your licenses, your licenses can nonetheless + continue if you come into full compliance with these terms, + and take practical steps to correct past violations, within + 32 days of receiving notice. Otherwise, all your licenses + end immediately. + + ## No Liability + + ***As far as the law allows, the software comes as is, without + any warranty or condition, and the licensor will not be liable + to you for any damages arising out of these terms or the use + or nature of the software, under any kind of legal claim.*** + + ## Definitions + + The **licensor** is the individual or entity offering these + terms, and the **software** is the software the licensor makes + available under these terms. + + **You** refers to the individual or entity agreeing to these + terms. + + **Your company** is any legal entity, sole proprietorship, + or other kind of organization that you work for, plus all + organizations that have control over, are under the control of, + or are under common control with that organization. **Control** + means ownership of substantially all the assets of an entity, + or the power to direct its management and policies by vote, + contract, or otherwise. Control can be direct or indirect. + + **Your licenses** are all the licenses granted to you for the + software under these terms. + + **Use** means anything you do with the software requiring one + of your licenses. json: polyform-internal-use-1.0.0.json - yml: polyform-internal-use-1.0.0.yml + yaml: polyform-internal-use-1.0.0.yml html: polyform-internal-use-1.0.0.html - text: polyform-internal-use-1.0.0.LICENSE + license: polyform-internal-use-1.0.0.LICENSE - license_key: polyform-noncommercial-1.0.0 + category: Source-available spdx_license_key: PolyForm-Noncommercial-1.0.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + # Polyform Noncommercial License 1.0.0 + + + + ## Acceptance + + In order to get any license under these terms, you must agree + to them as both strict obligations and conditions to all + your licenses. + + ## Copyright License + + The licensor grants you a copyright license for the + software to do everything you might do with the software + that would otherwise infringe the licensor's copyright + in it for any permitted purpose. However, you may + only distribute the software according to [Distribution + License](#distribution-license) and make changes or new works + based on the software according to [Changes and New Works + License](#changes-and-new-works-license). + + ## Distribution License + + The licensor grants you an additional copyright license + to distribute copies of the software. Your license + to distribute covers distributing the software with + changes and new works permitted by [Changes and New Works + License](#changes-and-new-works-license). + + ## Notices + + You must ensure that anyone who gets a copy of any part of + the software from you also gets a copy of these terms or the + URL for them above, as well as copies of any plain-text lines + beginning with `Required Notice:` that the licensor provided + with the software. For example: + + > Required Notice: Copyright Yoyodyne, Inc. (http://example.com) + + ## Changes and New Works License + + The licensor grants you an additional copyright license to + make changes and new works based on the software for any + permitted purpose. + + ## Patent License + + The licensor grants you a patent license for the software that + covers patent claims the licensor can license, or becomes able + to license, that you would infringe by using the software. + + ## Noncommercial Purposes + + Any noncommercial purpose is a permitted purpose. + + ## Personal Uses + + Personal use for research, experiment, and testing for + the benefit of public knowledge, personal study, private + entertainment, hobby projects, amateur pursuits, or religious + observance, without any anticipated commercial application, + is use for a permitted purpose. + + ## Noncommercial Organizations + + Use by any charitable organization, educational institution, + public research organization, public safety or health + organization, environmental protection organization, + or government institution is use for a permitted purpose + regardless of the source of funding or obligations resulting + from the funding. + + ## Fair Use + + You may have "fair use" rights for the software under the + law. These terms do not limit them. + + ## No Other Rights + + These terms do not allow you to sublicense or transfer any of + your licenses to anyone else, or prevent the licensor from + granting licenses to anyone else. These terms do not imply + any other licenses. + + ## Patent Defense + + If you make any written claim that the software infringes or + contributes to infringement of any patent, your patent license + for the software granted under these terms ends immediately. If + your company makes such a claim, your patent license ends + immediately for work on behalf of your company. + + ## Violations + + The first time you are notified in writing that you have + violated any of these terms, or done anything with the software + not covered by your licenses, your licenses can nonetheless + continue if you come into full compliance with these terms, + and take practical steps to correct past violations, within + 32 days of receiving notice. Otherwise, all your licenses + end immediately. + + ## No Liability + + ***As far as the law allows, the software comes as is, without + any warranty or condition, and the licensor will not be liable + to you for any damages arising out of these terms or the use + or nature of the software, under any kind of legal claim.*** + + ## Definitions + + The **licensor** is the individual or entity offering these + terms, and the **software** is the software the licensor makes + available under these terms. + + **You** refers to the individual or entity agreeing to these + terms. + + **Your company** is any legal entity, sole proprietorship, + or other kind of organization that you work for, plus all + organizations that have control over, are under the control of, + or are under common control with that organization. **Control** + means ownership of substantially all the assets of an entity, + or the power to direct its management and policies by vote, + contract, or otherwise. Control can be direct or indirect. + + **Your licenses** are all the licenses granted to you for the + software under these terms. + + **Use** means anything you do with the software requiring one + of your licenses. json: polyform-noncommercial-1.0.0.json - yml: polyform-noncommercial-1.0.0.yml + yaml: polyform-noncommercial-1.0.0.yml html: polyform-noncommercial-1.0.0.html - text: polyform-noncommercial-1.0.0.LICENSE + license: polyform-noncommercial-1.0.0.LICENSE - license_key: polyform-perimeter-1.0.0 + category: Source-available spdx_license_key: LicenseRef-scancode-polyform-perimeter-1.0.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + # PolyForm Perimeter License 1.0.0 + + + + ## Acceptance + + In order to get any license under these terms, you must agree + to them as both strict obligations and conditions to all + your licenses. + + ## Copyright License + + The licensor grants you a copyright license for the + software to do everything you might do with the software + that would otherwise infringe the licensor's copyright + in it for any permitted purpose. However, you may + only distribute the software according to [Distribution + License](#distribution-license) and make changes or new works + based on the software according to [Changes and New Works + License](#changes-and-new-works-license). + + ## Distribution License + + The licensor grants you an additional copyright license + to distribute copies of the software. Your license + to distribute covers distributing the software with + changes and new works permitted by [Changes and New Works + License](#changes-and-new-works-license). + + ## Notices + + You must ensure that anyone who gets a copy of any part of + the software from you also gets a copy of these terms or the + URL for them above, as well as copies of any plain-text lines + beginning with `Required Notice:` that the licensor provided + with the software. For example: + + > Required Notice: Copyright Yoyodyne, Inc. (http://example.com) + + ## Changes and New Works License + + The licensor grants you an additional copyright license to + make changes and new works based on the software for any + permitted purpose. + + ## Patent License + + The licensor grants you a patent license for the software that + covers patent claims the licensor can license, or becomes able + to license, that you would infringe by using the software. + + ## Noncompete + + Any purpose is a permitted purpose, except for providing to + others any product that competes with the software. + + ## Competition + + If you use this software to market a product as a substitute + for the functionality or value of the software, it competes + with the software. A product may compete regardless how it is + designed or deployed. For example, a product may compete even + if it provides its functionality via any kind of interface + (including services, libraries or plug-ins), even if it is + ported to a different platforms or programming languages, + and even if it is provided free of charge. + + ## Fair Use + + You may have "fair use" rights for the software under the + law. These terms do not limit them. + + ## No Other Rights + + These terms do not allow you to sublicense or transfer any of + your licenses to anyone else, or prevent the licensor from + granting licenses to anyone else. These terms do not imply + any other licenses. + + ## Patent Defense + + If you make any written claim that the software infringes or + contributes to infringement of any patent, your patent license + for the software granted under these terms ends immediately. If + your company makes such a claim, your patent license ends + immediately for work on behalf of your company. + + ## Violations + + The first time you are notified in writing that you have + violated any of these terms, or done anything with the software + not covered by your licenses, your licenses can nonetheless + continue if you come into full compliance with these terms, + and take practical steps to correct past violations, within + 32 days of receiving notice. Otherwise, all your licenses + end immediately. + + ## No Liability + + ***As far as the law allows, the software comes as is, without + any warranty or condition, and the licensor will not be liable + to you for any damages arising out of these terms or the use + or nature of the software, under any kind of legal claim.*** + + ## Definitions + + The **licensor** is the individual or entity offering these + terms, and the **software** is the software the licensor makes + available under these terms. + + A **product** can be a good or service, or a combination + of them. + + **You** refers to the individual or entity agreeing to these + terms. + + **Your company** is any legal entity, sole proprietorship, + or other kind of organization that you work for, plus all + organizations that have control over, are under the control of, + or are under common control with that organization. **Control** + means ownership of substantially all the assets of an entity, + or the power to direct its management and policies by vote, + contract, or otherwise. Control can be direct or indirect. + + **Your licenses** are all the licenses granted to you for the + software under these terms. + + **Use** means anything you do with the software requiring one + of your licenses. json: polyform-perimeter-1.0.0.json - yml: polyform-perimeter-1.0.0.yml + yaml: polyform-perimeter-1.0.0.yml html: polyform-perimeter-1.0.0.html - text: polyform-perimeter-1.0.0.LICENSE + license: polyform-perimeter-1.0.0.LICENSE - license_key: polyform-shield-1.0.0 + category: Source-available spdx_license_key: LicenseRef-scancode-polyform-shield-1.0.0 other_spdx_license_keys: - LicenseRef-scancode-polyform-defensive-1.0.0 is_exception: no is_deprecated: no - category: Source-available + text: | + # PolyForm Shield License 1.0.0 + + + + ## Acceptance + + In order to get any license under these terms, you must agree + to them as both strict obligations and conditions to all + your licenses. + + ## Copyright License + + The licensor grants you a copyright license for the + software to do everything you might do with the software + that would otherwise infringe the licensor's copyright + in it for any permitted purpose. However, you may + only distribute the software according to [Distribution + License](#distribution-license) and make changes or new works + based on the software according to [Changes and New Works + License](#changes-and-new-works-license). + + ## Distribution License + + The licensor grants you an additional copyright license + to distribute copies of the software. Your license + to distribute covers distributing the software with + changes and new works permitted by [Changes and New Works + License](#changes-and-new-works-license). + + ## Notices + + You must ensure that anyone who gets a copy of any part of + the software from you also gets a copy of these terms or the + URL for them above, as well as copies of any plain-text lines + beginning with `Required Notice:` that the licensor provided + with the software. For example: + + > Required Notice: Copyright Yoyodyne, Inc. (http://example.com) + + ## Changes and New Works License + + The licensor grants you an additional copyright license to + make changes and new works based on the software for any + permitted purpose. + + ## Patent License + + The licensor grants you a patent license for the software that + covers patent claims the licensor can license, or becomes able + to license, that you would infringe by using the software. + + ## Noncompete + + Any purpose is a permitted purpose, except for providing any + product that competes with the software or any product the + licensor or any of its affiliates provides using the software. + + ## Competition + + Goods and services compete even when they provide functionality + through different kinds of interfaces or for different technical + platforms. Applications can compete with services, libraries + with plugins, frameworks with development tools, and so on, + even if they're written in different programming languages + or for different computer architectures. Goods and services + compete even when provided free of charge. If you market a + product as a practical substitute for the software or another + product, it definitely competes. + + ## New Products + + If you are using the software to provide a product that does + not compete, but the licensor or any of its affiliates brings + your product into competition by providing a new version of + the software or another product using the software, you may + continue using versions of the software available under these + terms beforehand to provide your competing product, but not + any later versions. + + ## Discontinued Products + + You may begin using the software to compete with a product + or service that the licensor or any of its affiliates has + stopped providing, unless the licensor includes a plain-text + line beginning with `Licensor Line of Business:` with the + software that mentions that line of business. For example: + + > Licensor Line of Business: YoyodyneCMS Content Management + System (http://example.com/cms) + + ## Sales of Business + + If the licensor or any of its affiliates sells a line of + business developing the software or using the software + to provide a product, the buyer can also enforce + [Noncompete](#noncompete) for that product. + + ## Fair Use + + You may have "fair use" rights for the software under the + law. These terms do not limit them. + + ## No Other Rights + + These terms do not allow you to sublicense or transfer any of + your licenses to anyone else, or prevent the licensor from + granting licenses to anyone else. These terms do not imply + any other licenses. + + ## Patent Defense + + If you make any written claim that the software infringes or + contributes to infringement of any patent, your patent license + for the software granted under these terms ends immediately. If + your company makes such a claim, your patent license ends + immediately for work on behalf of your company. + + ## Violations + + The first time you are notified in writing that you have + violated any of these terms, or done anything with the software + not covered by your licenses, your licenses can nonetheless + continue if you come into full compliance with these terms, + and take practical steps to correct past violations, within + 32 days of receiving notice. Otherwise, all your licenses + end immediately. + + ## No Liability + + ***As far as the law allows, the software comes as is, without + any warranty or condition, and the licensor will not be liable + to you for any damages arising out of these terms or the use + or nature of the software, under any kind of legal claim.*** + + ## Definitions + + The **licensor** is the individual or entity offering these + terms, and the **software** is the software the licensor makes + available under these terms. + + A **product** can be a good or service, or a combination + of them. + + **You** refers to the individual or entity agreeing to these + terms. + + **Your company** is any legal entity, sole proprietorship, + or other kind of organization that you work for, plus all + its affiliates. + + **Affiliates** means the other organizations than an + organization has control over, is under the control of, or is + under common control with. + + **Control** means ownership of substantially all the assets of + an entity, or the power to direct its management and policies + by vote, contract, or otherwise. Control can be direct or + indirect. + + **Your licenses** are all the licenses granted to you for the + software under these terms. + + **Use** means anything you do with the software requiring one + of your licenses. json: polyform-shield-1.0.0.json - yml: polyform-shield-1.0.0.yml + yaml: polyform-shield-1.0.0.yml html: polyform-shield-1.0.0.html - text: polyform-shield-1.0.0.LICENSE + license: polyform-shield-1.0.0.LICENSE - license_key: polyform-small-business-1.0.0 + category: Source-available spdx_license_key: PolyForm-Small-Business-1.0.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + # Polyform Small Business License 1.0.0 + + + + ## Acceptance + + In order to get any license under these terms, you must agree + to them as both strict obligations and conditions to all + your licenses. + + ## Copyright License + + The licensor grants you a copyright license for the + software to do everything you might do with the software + that would otherwise infringe the licensor's copyright + in it for any permitted purpose. However, you may + only distribute the software according to [Distribution + License](#distribution-license) and make changes or new works + based on the software according to [Changes and New Works + License](#changes-and-new-works-license). + + ## Distribution License + + The licensor grants you an additional copyright license + to distribute copies of the software. Your license + to distribute covers distributing the software with + changes and new works permitted by [Changes and New Works + License](#changes-and-new-works-license). + + ## Notices + + You must ensure that anyone who gets a copy of any part of + the software from you also gets a copy of these terms or the + URL for them above, as well as copies of any plain-text lines + beginning with `Required Notice:` that the licensor provided + with the software. For example: + + > Required Notice: Copyright Yoyodyne, Inc. (http://example.com) + + ## Changes and New Works License + + The licensor grants you an additional copyright license to + make changes and new works based on the software for any + permitted purpose. + + ## Patent License + + The licensor grants you a patent license for the software that + covers patent claims the licensor can license, or becomes able + to license, that you would infringe by using the software. + + ## Fair Use + + You may have "fair use" rights for the software under the + law. These terms do not limit them. + + ## Small Business + + Use of the software for the benefit of your company is use for + a permitted purpose if your company has fewer than 100 total + individuals working as employees and independent contractors, + and less than 1,000,000 USD (2019) total revenue in the prior + tax year. Adjust this revenue threshold for inflation according + to the United States Bureau of Labor Statistics' consumer price + index for all urban consumers, U.S. city average, for all items, + not seasonally adjusted, with 1982–1984=100 reference base. + + ## No Other Rights + + These terms do not allow you to sublicense or transfer any of + your licenses to anyone else, or prevent the licensor from + granting licenses to anyone else. These terms do not imply + any other licenses. + + ## Patent Defense + + If you make any written claim that the software infringes or + contributes to infringement of any patent, your patent license + for the software granted under these terms ends immediately. If + your company makes such a claim, your patent license ends + immediately for work on behalf of your company. + + ## Violations + + The first time you are notified in writing that you have + violated any of these terms, or done anything with the software + not covered by your licenses, your licenses can nonetheless + continue if you come into full compliance with these terms, + and take practical steps to correct past violations, within + 32 days of receiving notice. Otherwise, all your licenses + end immediately. + + ## No Liability + + ***As far as the law allows, the software comes as is, without + any warranty or condition, and the licensor will not be liable + to you for any damages arising out of these terms or the use + or nature of the software, under any kind of legal claim.*** + + ## Definitions + + The **licensor** is the individual or entity offering these + terms, and the **software** is the software the licensor makes + available under these terms. + + **You** refers to the individual or entity agreeing to these + terms. + + **Your company** is any legal entity, sole proprietorship, + or other kind of organization that you work for, plus all + organizations that have control over, are under the control of, + or are under common control with that organization. **Control** + means ownership of substantially all the assets of an entity, + or the power to direct its management and policies by vote, + contract, or otherwise. Control can be direct or indirect. + + **Your licenses** are all the licenses granted to you for the + software under these terms. + + **Use** means anything you do with the software requiring one + of your licenses. json: polyform-small-business-1.0.0.json - yml: polyform-small-business-1.0.0.yml + yaml: polyform-small-business-1.0.0.yml html: polyform-small-business-1.0.0.html - text: polyform-small-business-1.0.0.LICENSE + license: polyform-small-business-1.0.0.LICENSE - license_key: polyform-strict-1.0.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-polyform-strict-1.0.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + # Polyform Strict License 1.0.0 + + + + ## Acceptance + + In order to get any license under these terms, you must agree + to them as both strict obligations and conditions to all + your licenses. + + ## Copyright License + + The licensor grants you a copyright license for the software + to do everything you might do with the software that would + otherwise infringe the licensor's copyright in it for any + permitted purpose, other than distributing the software or + making changes or new works based on the software. + + ## Patent License + + The licensor grants you a patent license for the software that + covers patent claims the licensor can license, or becomes able + to license, that you would infringe by using the software. + + ## Noncommercial Purposes + + Any noncommercial purpose is a permitted purpose. + + ## Personal Uses + + Personal use for research, experiment, and testing for + the benefit of public knowledge, personal study, private + entertainment, hobby projects, amateur pursuits, or religious + observance, without any anticipated commercial application, + is use for a permitted purpose. + + ## Noncommercial Organizations + + Use by any charitable organization, educational institution, + public research organization, public safety or health + organization, environmental protection organization, + or government institution is use for a permitted purpose + regardless of the source of funding or obligations resulting + from the funding. + + ## Fair Use + + You may have "fair use" rights for the software under the + law. These terms do not limit them. + + ## No Other Rights + + These terms do not allow you to sublicense or transfer any of + your licenses to anyone else, or prevent the licensor from + granting licenses to anyone else. These terms do not imply + any other licenses. + + ## Patent Defense + + If you make any written claim that the software infringes or + contributes to infringement of any patent, your patent license + for the software granted under these terms ends immediately. If + your company makes such a claim, your patent license ends + immediately for work on behalf of your company. + + ## Violations + + The first time you are notified in writing that you have + violated any of these terms, or done anything with the software + not covered by your licenses, your licenses can nonetheless + continue if you come into full compliance with these terms, + and take practical steps to correct past violations, within + 32 days of receiving notice. Otherwise, all your licenses + end immediately. + + ## No Liability + + ***As far as the law allows, the software comes as is, without + any warranty or condition, and the licensor will not be liable + to you for any damages arising out of these terms or the use + or nature of the software, under any kind of legal claim.*** + + ## Definitions + + The **licensor** is the individual or entity offering these + terms, and the **software** is the software the licensor makes + available under these terms. + + **You** refers to the individual or entity agreeing to these + terms. + + **Your company** is any legal entity, sole proprietorship, + or other kind of organization that you work for, plus all + organizations that have control over, are under the control of, + or are under common control with that organization. **Control** + means ownership of substantially all the assets of an entity, + or the power to direct its management and policies by vote, + contract, or otherwise. Control can be direct or indirect. + + **Your licenses** are all the licenses granted to you for the + software under these terms. + + **Use** means anything you do with the software requiring one + of your licenses. json: polyform-strict-1.0.0.json - yml: polyform-strict-1.0.0.yml + yaml: polyform-strict-1.0.0.yml html: polyform-strict-1.0.0.html - text: polyform-strict-1.0.0.LICENSE + license: polyform-strict-1.0.0.LICENSE - license_key: postgresql + category: Permissive spdx_license_key: PostgreSQL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + PostgreSQL is released under the PostgreSQL License, a liberal Open Source license, similar to the BSD or MIT licenses. + + PostgreSQL Database Management System + (formerly known as Postgres, then as Postgres95) + + Portions Copyright (c) The 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. json: postgresql.json - yml: postgresql.yml + yaml: postgresql.yml html: postgresql.html - text: postgresql.LICENSE + license: postgresql.LICENSE - license_key: powervr-tools-software-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-powervr-tools-software-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Imagination Technologies Limited ("Imagination") provides this Software subject to the terms of this Agreement. If you do not agree with any of these terms, then do not install or otherwise use the Software. + + Definitions + "Software" means all or any component comprising the software in source or binary form, documentation, or other materials including any related updates or upgrades made available by Imagination under this Agreement from time to time. + + License Grant + Subject to your compliance with the terms of this Agreement, Imagination grants to you a non-exclusive, non-assignable license to: + + (a) use the Software for the sole purpose of developing, profiling, or assisting in the optimisation of internal, commercial, or non-commercial applications; + + (b) distribute the Software as a component of your application, provided that: + + you do not distribute the Software on a stand alone basis; + you distribute such Software under terms no less restrictive than those in this Agreement; + you comply with the attribution requirements set out in Appendix 1; + you are solely responsible for any update, support obligation or other liability that may arise from such distribution; and + you do not make any statements that your application or its performance are certified, guaranteed or otherwise endorsed by Imagination; and + (c) use the Software as expressly authorised by Imagination in writing, on the payment and/or support terms set out in Appendix 2 (if applicable). + + Restrictions + Other than as expressly permitted herein, you may not: (i) use the Software for any unauthorised purpose; (ii) modify, disassemble, decompile, reverse engineer, revise or enhance the Software, create derivative works or attempt to discover the source code for any element of the Software not already provided in source code form; (iii) remove any proprietary or copyright notices on or accompanying the Software; or (iv) incorporate or combine the Software, with any open source software in such a way that would cause the Software, or any portion thereof, to be subject to all or part of the license obligations or other intellectual property related terms with respect to such open source software. + + Ownership and Contributions + Imagination retains all ownership of the Software, including without limitation all copyrights and other intellectual property rights therein. To the extent you provide any feedback or make any contributions in connection with the Software (collectively "contributions"), you agree to assign all intellectual property rights in such contribution to Imagination and agree not to assert any related rights against Imagination or any of its customers or licensees. You understand and agree that Imagination is not required to make any use of any contribution that you provide, but that if Imagination makes use of your contribution, neither Imagination nor any of its customers or licensees are required to credit or compensate you for your contribution. You represent and warrant that you have sufficient rights in your contribution to comply with the foregoing. + + Warranty Disclaimer + THE SOFTWARE IS PROVIDED "AS IS". IMAGINATION HEREBY DISCLAIMS ALL EXPRESS OR IMPLIED WARRANTIES AND CONDITIONS WITH REGARD TO THE SOFTWARE, INCLUDING ALL WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. + + Limitation of Liability + IN NO EVENT WILL IMAGINATION BE LIABLE TO YOU FOR ANY DAMAGES, CLAIMS OR COSTS WHATSOEVER ARISING FROM THIS AGREEMENT AND/OR YOUR USE OF THE SOFTWARE OR ANY COMPONENT THEREOF, INCLUDING WITHOUT LIMITATION ANY CONSEQUENTIAL, INDIRECT, INCIDENTAL DAMAGES, OR ANY LOST PROFITS OR LOST SAVINGS, EVEN IF IMAGINATION HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS OR FOR ANY CLAIM BY ANY THIRD PARTY. THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION. + + Third Party Materials + All third party materials packaged with the Software, including without limitation, artwork, graphics, game demos and patches, are the sole and exclusive property of such third parties. Imagination makes no representations or warranties about the accuracy, usability or validity of any third party materials, and disclaims all liabilities in connection with such third party materials. + + Term + This Agreement is effective until terminated. Imagination has the right to terminate this Agreement immediately if you fail to comply with any term of this Agreement. You may terminate this Agreement by destroying or returning to Imagination all copies of the Software in your possession. + + Governing Law + This Agreement is governed by and shall be construed in accordance with English law and each party agrees to submit to the exclusive jurisdiction of the courts of England. + + APPENDIX 1: ATTRIBUTION REQUIREMENTS + If source code is released as it is, the Copyright notice should be kept in a visible position. If object code is bundled with a product, all branding should be kept as it was originally, and the following acknowledgement should be displayed clearly in any associated documentation or other collateral in printed or electronic form distributed with the product incorporating the Software: "This product includes components of the PowerVR Tools Software from Imagination Technologies Limited". If source code is used to compile a product, the following acknowledgement should be displayed clearly in any associated documentation or other collateral in printed or electronic form distributed with the product incorporating the Software: "This product includes components of the PowerVR Tools Software from Imagination Technologies Limited". + + APPENDIX 2: FEES + LICENSE FEES: 0 (Zero) + + ROYALTY FEES: 0 (Zero) + + SUPPORT AND MAINTENANCE TERMS AND FEES: 0 (Zero) json: powervr-tools-software-eula.json - yml: powervr-tools-software-eula.yml + yaml: powervr-tools-software-eula.yml html: powervr-tools-software-eula.html - text: powervr-tools-software-eula.LICENSE + license: powervr-tools-software-eula.LICENSE - license_key: ppp + category: Permissive spdx_license_key: LicenseRef-scancode-ppp other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 and the following disclaimer are included verbatim in + any distributions. No written agreement, license, or royalty fee is + required for any of the authorized uses. + + THIS SOFTWARE IS PROVIDED BY THE 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 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. json: ppp.json - yml: ppp.yml + yaml: ppp.yml html: ppp.html - text: ppp.LICENSE + license: ppp.LICENSE - license_key: proguard-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-proguard-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + ProGuard is free. You can use it freely for processing your applications, + commercial or not. Your code obviously remains yours after having been processed, and its license can remain the same. + + The ProGuard code itself is copyrighted, but its distribution license provides you with some rights for modifying and redistributing its code and its documentation. More specifically, ProGuard is distributed under the terms of the GNU General Public License (GPL), version 2, as published by the Free Software Foundation (FSF). In short, this means that you may freely redistribute the program, modified or as is, on the condition that you make the complete source code available as well. If you develop a program that is linked with ProGuard, the program as a whole has to be distributed at no charge under the GPL. I am granting a special exception to the latter clause (in wording suggested by the FSF), for combinations with the following stand-alone applications: Apache Ant, Apache Maven, the Google Android SDK, the Eclipse ProGuardDT GUI, the EclipseME JME IDE, the Oracle NetBeans Java IDE, the Oracle JME Wireless Toolkit, the Intel TXE SDK, the Simple Build Tool for Scala, the NeoMAD Tools by Neomades, the Javaground Tools, and the Sanaware Tools. + + The ProGuard user documentation is copyrighted as well. It may only be redistributed without changes, along with the unmodified version of the code. json: proguard-exception-2.0.json - yml: proguard-exception-2.0.yml + yaml: proguard-exception-2.0.yml html: proguard-exception-2.0.html - text: proguard-exception-2.0.LICENSE + license: proguard-exception-2.0.LICENSE - license_key: proprietary + category: Proprietary Free spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Proprietary Free + text: json: proprietary.json - yml: proprietary.yml + yaml: proprietary.yml html: proprietary.html - text: proprietary.LICENSE + license: proprietary.LICENSE - license_key: proprietary-license + category: Commercial spdx_license_key: LicenseRef-scancode-proprietary-license other_spdx_license_keys: - LicenseRef-LICENSE - LicenseRef-LICENSE.md is_exception: no is_deprecated: no - category: Commercial + text: "This component is normally licensed under a proprietary license agreement with \na\ + \ supplier that has terms and conditions that restrict the use of the code, \nbut may not\ + \ require payment to the supplier." json: proprietary-license.json - yml: proprietary-license.yml + yaml: proprietary-license.yml html: proprietary-license.html - text: proprietary-license.LICENSE + license: proprietary-license.LICENSE - license_key: prosperity-1.0.1 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-prosperity-1.0.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + The Prosperity Public License 1.0.1 + + Copyright Notice: {Licensor Name} + + Source Notice: {https://example.com/project} + + This license lets you use and share this software for free, + with a trial-length time limit on commercial use. Specifically: + + If you follow the rules below, you may do everything with this + software that would otherwise infringe my copyright in it or any + patent claim I can license that covers this software as of my + latest contribution. + + 1. You must limit use of this software in any manner primarily + intended for or directed toward commercial advantage or + private monetary compensation to a trial period of 32 + consecutive calendar days. This limit does not apply to use in + developing feedback, modifications, or extensions that you + contribute back to those giving this license. + + 2. Ensure everyone who gets a copy of this software from you, + in source code or any other form, gets the text of this + license and the copyright and source notices above. + + 3. Do not make any legal claim against anyone for infringing + any patent claim they would infringe by using this software + alone, accusing this software, with or without changes, + alone or as part of a larger program. + + You are excused for unknowingly breaking rule 1 if you stop + doing anything requiring this license within 30 days of + learning you broke the rule. + + **This software comes as is, without any warranty at all. As far + as the law allows, I will not be liable for any damages related + to this software or this license, for any kind of legal claim.** json: prosperity-1.0.1.json - yml: prosperity-1.0.1.yml + yaml: prosperity-1.0.1.yml html: prosperity-1.0.1.html - text: prosperity-1.0.1.LICENSE + license: prosperity-1.0.1.LICENSE - license_key: prosperity-2.0 + category: Source-available spdx_license_key: LicenseRef-scancode-prosperity-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + The Prosperity Public License 2.0 + + Copyright Notice: {Licensor Name} + + Source Notice: {https://example.com/project} + + This license lets you use and share this software for free, + with a trial-length time limit on commercial use. Specifically: + + If you follow the rules below, you may do everything with this + software that would otherwise infringe either the contributor's + copyright in it, any patent claim the contributor can license + that covers this software as of the contributor's latest + contribution, or both. + + 1. You must limit use of this software in any manner primarily + intended for or directed toward commercial advantage or + private monetary compensation to a trial period of 32 + consecutive calendar days. This limit does not apply to use in + developing feedback, modifications, or extensions that you + contribute back to those giving this license. + + 2. Ensure everyone who gets a copy of this software from you, in + source code or any other form, gets the text of this license + and the contributor and source code lines above. + + 3. Do not make any legal claim against anyone for infringing any + patent claim they would infringe by using this software alone, + accusing this software, with or without changes, alone or as + part of a larger application. + + You are excused for unknowingly breaking rule 1 if you stop + doing anything requiring this license within 30 days of + learning you broke the rule. + + **This software comes as is, without any warranty at all. As far + as the law allows, the contributor will not be liable for any + damages related to this software or this license, for any kind of + legal claim.** json: prosperity-2.0.json - yml: prosperity-2.0.yml + yaml: prosperity-2.0.yml html: prosperity-2.0.html - text: prosperity-2.0.LICENSE + license: prosperity-2.0.LICENSE - license_key: prosperity-3.0 + category: Source-available spdx_license_key: LicenseRef-scancode-prosperity-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + # The Prosperity Public License 3.0.0 + + Contributor: $name + + Source Code: $address + + ## Purpose + + This license allows you to use and share this software for noncommercial purposes for free and to try this software for commercial purposes for thirty days. + + ## Agreement + + In order to receive this license, you have to agree to its rules. Those rules are both obligations under that agreement and conditions to your license. Don't do anything with this software that triggers a rule you can't or won't follow. + + ## Notices + + Make sure everyone who gets a copy of any part of this software from you, with or without changes, also gets the text of this license and the contributor and source code lines above. + + ## Commercial Trial + + Limit your use of this software for commercial purposes to a thirty-day trial period. If you use this software for work, your company gets one trial period for all personnel, not one trial per person. + + ## Contributions Back + + Developing feedback, changes, or additions that you contribute back to the contributor on the terms of a standardized public software license such as [the Blue Oak Model License 1.0.0](https://blueoakcouncil.org/license/1.0.0), [the Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0.html), [the MIT license](https://spdx.org/licenses/MIT.html), or [the two-clause BSD license](https://spdx.org/licenses/BSD-2-Clause.html) doesn't count as use for a commercial purpose. + + ## Personal Uses + + Personal use for research, experiment, and testing for the benefit of public knowledge, personal study, private entertainment, hobby projects, amateur pursuits, or religious observance, without any anticipated commercial application, doesn't count as use for a commercial purpose. + + ## Noncommercial Organizations + + Use by any charitable organization, educational institution, public research organization, public safety or health organization, environmental protection organization, or government institution doesn't count as use for a commercial purpose regardless of the source of funding or obligations resulting from the funding. + + ## Defense + + Don't make any legal claim against anyone accusing this software, with or without changes, alone or with other technology, of infringing any patent. + + ## Copyright + + The contributor licenses you to do everything with this software that would otherwise infringe their copyright in it. + + ## Patent + + The contributor licenses you to do everything with this software that would otherwise infringe any patents they can license or become able to license. + + ## Reliability + + The contributor can't revoke this license. + + ## Excuse + + You're excused for unknowingly breaking [Notices](#notices) if you take all practical steps to comply within thirty days of learning you broke the rule. + + ## No Liability + + ***As far as the law allows, this software comes as is, without any warranty or condition, and the contributor won't be liable to anyone for any damages related to this software or this license, under any kind of legal claim.*** json: prosperity-3.0.json - yml: prosperity-3.0.yml + yaml: prosperity-3.0.yml html: prosperity-3.0.html - text: prosperity-3.0.LICENSE + license: prosperity-3.0.LICENSE - license_key: protobuf + category: Permissive spdx_license_key: LicenseRef-scancode-protobuf other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following disclaimer + in the documentation and/or other materials provided with the + distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + Code generated by the Protocol Buffer compiler is owned by the owner + of the input file used when generating it. This code is not + standalone and requires a support library to be linked with it. This + support library is itself covered by the above license. json: protobuf.json - yml: protobuf.yml + yaml: protobuf.yml html: protobuf.html - text: protobuf.LICENSE + license: protobuf.LICENSE - license_key: ps-or-pdf-font-exception-20170817 + category: Copyleft Limited spdx_license_key: PS-or-PDF-font-exception-20170817 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + The font and related files in this directory are distributed under the + GNU AFFERO GENERAL PUBLIC LICENSE Version 3 (see the file COPYING), with + the following exemption: + + As a special exception, permission is granted to include these font + programs in a Postscript or PDF file that consists of a document that + contains text to be displayed or printed using this font, regardless + of the conditions or license applying to the document itself. json: ps-or-pdf-font-exception-20170817.json - yml: ps-or-pdf-font-exception-20170817.yml + yaml: ps-or-pdf-font-exception-20170817.yml html: ps-or-pdf-font-exception-20170817.html - text: ps-or-pdf-font-exception-20170817.LICENSE + license: ps-or-pdf-font-exception-20170817.LICENSE - license_key: psf-2.0 + category: Permissive spdx_license_key: PSF-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 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. json: psf-2.0.json - yml: psf-2.0.yml + yaml: psf-2.0.yml html: psf-2.0.html - text: psf-2.0.LICENSE + license: psf-2.0.LICENSE - license_key: psf-3.7.2 + category: Permissive spdx_license_key: LicenseRef-scancode-psf-3.7.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + PSF LICENSE AGREEMENT FOR PYTHON 3.7.2 + + 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and + the Individual or Organization ("Licensee") accessing and otherwise using Python + 3.7.2 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 3.7.2 alone or in any derivative + version, provided, however, that PSF's License Agreement and PSF's notice of + copyright, i.e., "Copyright © 2001-2019 Python Software Foundation; All Rights + Reserved" are retained in Python 3.7.2 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 3.7.2 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 + 3.7.2. + + 4. PSF is making Python 3.7.2 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 3.7.2 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 3.7.2 + FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF + MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 3.7.2, 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 3.7.2, Licensee agrees + to be bound by the terms and conditions of this License Agreement. json: psf-3.7.2.json - yml: psf-3.7.2.yml + yaml: psf-3.7.2.yml html: psf-3.7.2.html - text: psf-3.7.2.LICENSE + license: psf-3.7.2.LICENSE - license_key: psfrag + category: Permissive spdx_license_key: psfrag other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This system 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. Don't come complaining to us if you modify this file and + it doesn't work! If this file is modified by anyone but the authors, those + changes and their authors must be explicitly stated HERE. json: psfrag.json - yml: psfrag.yml + yaml: psfrag.yml html: psfrag.html - text: psfrag.LICENSE + license: psfrag.LICENSE - license_key: psutils + category: Permissive spdx_license_key: psutils other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + PS Utilities Package + + The constituent files of this package listed below are copyright (C) 1991-1995 Angus J. C. Duggan. + + LICENSE Makefile.msc Makefile.nt Makefile.os2 + Makefile.unix README config.h descrip.mms + epsffit.c epsffit.man extractres.man extractres.pl + fixdlsrps.man fixdlsrps.pl fixfmps.man fixfmps.pl + fixmacps.man fixmacps.pl fixpsditps.man fixpsditps.pl + fixpspps.man fixpspps.pl fixscribeps.man fixscribeps.pl + fixtpps.man fixtpps.pl fixwfwps.man fixwfwps.pl + fixwpps.man fixwpps.pl fixwwps.man fixwwps.pl + getafm getafm.man includeres.man includeres.pl + maketext patchlev.h psbook.c psbook.man + pserror.c pserror.h psmerge.man psmerge.pl + psnup.c psnup.man psresize.c psresize.man + psselect.c psselect.man psspec.c psspec.h + pstops.c pstops.man psutil.c psutil.h + showchar + + They may be copied and used for any purpose (including distribution as part of a for-profit product), provided: + + 1) The original attribution of the programs is clearly displayed in the product and/or documentation, even if the programs are modified and/or renamed as part of the product. + + 2) The original source code of the programs is provided free of charge (except for reasonable distribution costs). For a definition of reasonable distribution costs, see the Gnu General Public License or Larry Wall's Artistic License (provided with the Perl 4 kit). The GPL and Artistic License in NO WAY affect this license; they are merely used as examples of the spirit in which it is intended. + + 3) These programs are provided "as-is". No warranty or guarantee of their fitness for any particular task is provided. Use of these programs is completely at your own risk. + + Basically, I don't mind how you use the programs so long as you acknowledge the author, and give people the originals if they want them. json: psutils.json - yml: psutils.yml + yaml: psutils.yml html: psutils.html - text: psutils.LICENSE + license: psutils.LICENSE - license_key: psytec-freesoft + category: Permissive spdx_license_key: LicenseRef-scancode-psytec-freesoft other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "(translated from the Japanese)\nAbout the license\t\t\t\t\n · Distribution of this\ + \ software is free. \n · Recognize the use of part or all of the source code, the use of\ + \ it and modify. \n · It is not necessary according to the name of our need to ask permission\ + \ to us when you use the source code, nor." json: psytec-freesoft.json - yml: psytec-freesoft.yml + yaml: psytec-freesoft.yml html: psytec-freesoft.html - text: psytec-freesoft.LICENSE + license: psytec-freesoft.LICENSE - license_key: public-domain + category: Public Domain spdx_license_key: LicenseRef-scancode-public-domain other_spdx_license_keys: - LicenseRef-PublicDomain is_exception: no is_deprecated: no - category: Public Domain + text: json: public-domain.json - yml: public-domain.yml + yaml: public-domain.yml html: public-domain.html - text: public-domain.LICENSE + license: public-domain.LICENSE - license_key: public-domain-disclaimer + category: Public Domain spdx_license_key: LicenseRef-scancode-public-domain-disclaimer other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + This code is hereby placed in the public domain. + + THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS + OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. json: public-domain-disclaimer.json - yml: public-domain-disclaimer.yml + yaml: public-domain-disclaimer.yml html: public-domain-disclaimer.html - text: public-domain-disclaimer.LICENSE + license: public-domain-disclaimer.LICENSE - license_key: purdue-bsd + category: Permissive spdx_license_key: LicenseRef-scancode-purdue-bsd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This software is not subject to any license of the American Telephone + and Telegraph Company or the Regents of the University of California. + + Permission is granted to anyone to use this software for any purpose on any + computer system, and to alter it and redistribute it freely, subject to the following + restrictions: + + 1. Neither the authors nor Purdue University are responsible for any + consequences of the use of this software. + + 2. The origin of this software must not be misrepresented, either by + explicit claim or by omission. Credit to the authors and Purdue + University must appear in documentation and sources. + + 3. Altered versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + 4. This notice may not be removed or altered. json: purdue-bsd.json - yml: purdue-bsd.yml + yaml: purdue-bsd.yml html: purdue-bsd.html - text: purdue-bsd.LICENSE + license: purdue-bsd.LICENSE - license_key: pybench + category: Permissive spdx_license_key: LicenseRef-scancode-pybench other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + pybench License + --------------- + This copyright notice and license applies to all files in the pybench + directory of the pybench distribution. + Copyright (c), 1997-2006, Marc-Andre Lemburg (mal@lemburg.com) + Copyright (c), 2000-2006, eGenix.com Software GmbH (info@egenix.com) + All Rights Reserved. + + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose and without fee or royalty 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 or portions thereof, including + modifications, that you make. + + THE AUTHOR MARC-ANDRE LEMBURG 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, + 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 ! json: pybench.json - yml: pybench.yml + yaml: pybench.yml html: pybench.html - text: pybench.LICENSE + license: pybench.LICENSE - license_key: pycrypto + category: Permissive spdx_license_key: LicenseRef-scancode-pycrypto other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "PyCrypto License\nThe following software may be included in this product:\n\nPyCrypto\ + \ - The Python Cryptography Toolkit \n\n===================================================================\ + \ \nDistribute and use freely; there are no restrictions on further \ndissemination and\ + \ usage except those imposed by the laws of your \ncountry of residence. This software\ + \ is provided \"as is\" without \nwarranty of fitness for use or suitability for any purpose,\ + \ express \nor implied. Use at your own risk or not at all. \n===================================================================\ + \ \n\nIncorporating the code into commercial products is permitted; you do \nnot have to\ + \ make source available or contribute your changes back \n(though that would be nice)." json: pycrypto.json - yml: pycrypto.yml + yaml: pycrypto.yml html: pycrypto.html - text: pycrypto.LICENSE + license: pycrypto.LICENSE - license_key: pygres-2.2 + category: Permissive spdx_license_key: LicenseRef-scancode-pygres-2.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + PyGres, version 2.2 A Python interface for PostgreSQL database. Written by + D'Arcy J.M. Cain, (darcy@druid.net). Based heavily on code written by + Pascal Andre, andre@chimay.via.ecp.fr. Copyright (c) 1995, Pascal Andre + (andre@via.ecp.fr). + + 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 or in + any new file that contains a substantial portion of this file. + + IN NO EVENT SHALL THE AUTHOR 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 + AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + THE AUTHOR 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 + AUTHOR HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, + ENHANCEMENTS, OR MODIFICATIONS. + + Further modifications copyright 1997, 1998, 1999 by D'Arcy J.M. Cain + (darcy@druid.net) subject to the same terms and conditions as above. json: pygres-2.2.json - yml: pygres-2.2.yml + yaml: pygres-2.2.yml html: pygres-2.2.html - text: pygres-2.2.LICENSE + license: pygres-2.2.LICENSE - license_key: python + category: Permissive spdx_license_key: Python-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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) 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. json: python.json - yml: python.yml + yaml: python.yml html: python.html - text: python.LICENSE + license: python.LICENSE +- license_key: python-2.0.1 + category: Permissive + spdx_license_key: Python-2.0.1 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 + -------------------------------------------- + + 1. This LICENSE AGREEMENT is between the Python Software Foundation + ("PSF"), and the Individual or Organization ("Licensee") accessing and + otherwise using this software ("Python") in source or binary form and + its associated documentation. + + 2. Subject to the terms and conditions of this License Agreement, PSF hereby + grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, + analyze, test, perform and/or display publicly, prepare derivative works, + distribute, and otherwise use Python alone or in any derivative version, + provided, however, that PSF's License Agreement and PSF's notice of copyright, + i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, + 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Python Software Foundation; + All Rights Reserved" are retained in Python alone or in any derivative version + prepared by Licensee. + + 3. In the event Licensee prepares a derivative work that is based on + or incorporates Python or any part thereof, and wants to make + the derivative work available to others as provided herein, then + Licensee hereby agrees to include in any such work a brief summary of + the changes made to Python. + + 4. PSF is making Python available to Licensee on an "AS IS" + basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR + IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND + DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS + FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT + INFRINGE ANY THIRD PARTY RIGHTS. + + 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON + FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS + A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, + OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material + breach of its terms and conditions. + + 7. Nothing in this License Agreement shall be deemed to create any + relationship of agency, partnership, or joint venture between PSF and + Licensee. This License Agreement does not grant permission to use PSF + trademarks or trade name in a trademark sense to endorse or promote + products or services of Licensee, or any third party. + + 8. By copying, installing or otherwise using Python, Licensee + agrees to be bound by the terms and conditions of this License + Agreement. + + + BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 + ------------------------------------------- + + BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + + 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an + office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the + Individual or Organization ("Licensee") accessing and otherwise using + this software in source or binary form and its associated + documentation ("the Software"). + + 2. Subject to the terms and conditions of this BeOpen Python License + Agreement, BeOpen hereby grants Licensee a non-exclusive, + royalty-free, world-wide license to reproduce, analyze, test, perform + and/or display publicly, prepare derivative works, distribute, and + otherwise use the Software alone or in any derivative version, + provided, however, that the BeOpen Python License is retained in the + Software, alone or in any derivative version prepared by Licensee. + + 3. BeOpen is making the Software available to Licensee on an "AS IS" + basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR + IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND + DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS + FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT + INFRINGE ANY THIRD PARTY RIGHTS. + + 4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE + SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS + AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY + DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 5. This License Agreement will automatically terminate upon a material + breach of its terms and conditions. + + 6. This License Agreement shall be governed by and interpreted in all + respects by the law of the State of California, excluding conflict of + law provisions. Nothing in this License Agreement shall be deemed to + create any relationship of agency, partnership, or joint venture + between BeOpen and Licensee. This License Agreement does not grant + permission to use BeOpen trademarks or trade names in a trademark + sense to endorse or promote products or services of Licensee, or any + third party. As an exception, the "BeOpen Python" logos available at + http://www.pythonlabs.com/logos.html may be used according to the + permissions granted on that web page. + + 7. By copying, installing or otherwise using the software, Licensee + agrees to be bound by the terms and conditions of this License + Agreement. + + + CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 + --------------------------------------- + + 1. This LICENSE AGREEMENT is between the Corporation for National + Research Initiatives, having an office at 1895 Preston White Drive, + Reston, VA 20191 ("CNRI"), and the Individual or Organization + ("Licensee") accessing and otherwise using Python 1.6.1 software in + source or binary form and its associated documentation. + + 2. Subject to the terms and conditions of this License Agreement, CNRI + hereby grants Licensee a nonexclusive, royalty-free, world-wide + license to reproduce, analyze, test, perform and/or display publicly, + prepare derivative works, distribute, and otherwise use Python 1.6.1 + alone or in any derivative version, provided, however, that CNRI's + License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) + 1995-2001 Corporation for National Research Initiatives; All Rights + Reserved" are retained in Python 1.6.1 alone or in any derivative + version prepared by Licensee. Alternately, in lieu of CNRI's License + Agreement, Licensee may substitute the following text (omitting the + quotes): "Python 1.6.1 is made available subject to the terms and + conditions in CNRI's License Agreement. This Agreement together with + Python 1.6.1 may be located on the internet using the following + unique, persistent identifier (known as a handle): 1895.22/1013. This + Agreement may also be obtained from a proxy server on the internet + using the following URL: http://hdl.handle.net/1895.22/1013". + + 3. In the event Licensee prepares a derivative work that is based on + or incorporates Python 1.6.1 or any part thereof, and wants to make + the derivative work available to others as provided herein, then + Licensee hereby agrees to include in any such work a brief summary of + the changes made to Python 1.6.1. + + 4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" + basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR + IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND + DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS + FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT + INFRINGE ANY THIRD PARTY RIGHTS. + + 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON + 1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS + A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, + OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material + breach of its terms and conditions. + + 7. This License Agreement shall be governed by the federal + intellectual property law of the United States, including without + limitation the federal copyright law, and, to the extent such + U.S. federal law does not apply, by the law of the Commonwealth of + Virginia, excluding Virginia's conflict of law provisions. + Notwithstanding the foregoing, with regard to derivative works based + on Python 1.6.1 that incorporate non-separable material that was + previously distributed under the GNU General Public License (GPL), the + law of the Commonwealth of Virginia shall govern this License + Agreement only as to issues arising under or with respect to + Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this + License Agreement shall be deemed to create any relationship of + agency, partnership, or joint venture between CNRI and Licensee. This + License Agreement does not grant permission to use CNRI trademarks or + trade name in a trademark sense to endorse or promote products or + services of Licensee, or any third party. + + 8. By clicking on the "ACCEPT" button where indicated, or by copying, + installing or otherwise using Python 1.6.1, Licensee agrees to be + bound by the terms and conditions of this License Agreement. + + ACCEPT + + + CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 + -------------------------------------------------- + + Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, + The Netherlands. All rights reserved. + + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose and without fee is hereby granted, + provided that the above copyright notice appear in all copies and that + both that copyright notice and this permission notice appear in + supporting documentation, and that the name of Stichting Mathematisch + Centrum or CWI not be used in advertising or publicity pertaining to + distribution of the software without specific, written prior + permission. + + STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO + THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE + FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT + OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + ZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON DOCUMENTATION + ---------------------------------------------------------------------- + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR + OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THIS SOFTWARE. + json: python-2.0.1.json + yaml: python-2.0.1.yml + html: python-2.0.1.html + license: python-2.0.1.LICENSE - license_key: python-cwi + category: Permissive spdx_license_key: LicenseRef-scancode-python-cwi other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Permission to use, copy, modify, and distribute this software and its \ndocumentation\ + \ for any purpose and without fee is hereby granted, \nprovided that the above copyright\ + \ notice appear in all copies and that \nboth that copyright notice and this permission\ + \ notice appear in \nsupporting documentation, and that the name of Stichting Mathematisch\ + \ \nCentrum or CWI not be used in advertising or publicity pertaining to \ndistribution\ + \ of the software without specific, written prior \npermission. \n\nSTICHTING MATHEMATISCH\ + \ CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO \nTHIS SOFTWARE, INCLUDING ALL IMPLIED\ + \ WARRANTIES OF MERCHANTABILITY AND \nFITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH\ + \ CENTRUM BE LIABLE \nFOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\ + \ \nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN \nACTION OF CONTRACT,\ + \ NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT \nOF OR IN CONNECTION WITH THE USE OR\ + \ PERFORMANCE OF THIS SOFTWARE." json: python-cwi.json - yml: python-cwi.yml + yaml: python-cwi.yml html: python-cwi.html - text: python-cwi.LICENSE + license: python-cwi.LICENSE - license_key: qaplug + category: Proprietary Free spdx_license_key: LicenseRef-scancode-qaplug other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + END USER LICENSE AGREEMENT + + SolDevelo ("Licensor") will license the software application ("Software") to the User ("Licensee"), upon the condition that Licensee accept all of the Terms and Conditions of this End User License Agreement ("Agreement"). + Please read the Terms and Conditions of this Agreement. + + Terms and Conditions + + 1. Use. + Licensee may use the Software solely in accordance with the Documentation or any other use restrictions contained herein. + Licensee may install the Software on any number of machines that are under Licensee’s personal control. + + 2. Use Restrictions. + Licensee agrees not to modify, change, disassemble, decompile or otherwise reverse engineer the Software. + + 3. Bug Fixes. + Licensee shall have access to any bug fixes for the Software that Licensor makes available to its general customer base. + + 4. Ownership. + The Software is owned by Licensor. + The Software is protected by copyright and other laws. + SolDevelo reserves the right to any and all protected components of its Software – including but not content with: the name of software, design, artwork, individual features. + You cannot copy, modify, adapt, distribute, reverse engineer and decompile any part of the Software which is in the possession of SolDevelo or persons who created them. + + 5. Disclaimer of Warranty. + The Software is provided without warranty in its current "AS IS" condition. + LICENSOR MAKES NO WARRANTY OF ANY KIND WHATSOEVER, WHETHER EXPRESSED OR IMPLIED, INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + + 6. Limitation of Liability. + IN NO EVENT SHALL LICENSOR BE LIABLE UNDER ANY THEORY OF LIABILITY, WHETHER IN AN EQUITABLE, LEGAL, OR COMMON LAW ACTION ARISING HEREUNDER FOR CONTRACT, STRICT LIABILITY, INDEMNITY, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, FOR ANY DAMAGES. + IN NO EVENT SHALL LICENSOR BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, EXEMPLARY, PUNITIVE, OR CONSEQUENTIAL DAMAGES OF ANY KIND AND HOWEVER CAUSED, INCLUDING BUT NOT LIMITED TO BUSINESS INTERRUPTION OR LOSS OF PROFITS, BUSINESS OPPORTUNITIES, OR GOOD WILL EVEN IF NOTIFIED OF THE POSSIBILITY OF SUCH DAMAGE, AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. + + 7. Confidential Information. + Licensee agrees to keep confidential all technical, product, business, and other information regarding the Software (the "Confidential Information"), including but not limited to programming techniques and methods, research and development, computer programs, documentation, marketing plans, and business methods. + Licensee shall at all times protect and safeguard the Confidential Information and agrees not to disclose, give, transmit or otherwise convey any Confidential Information, in whole or in part, to any other party. + Licensee further agrees not to attempt to ascertain the source code of any computer program by unauthorized access or review, reverse engineering, decompilation, disassembly, or any other technique or method. + Licensee agrees that it will not use any Confidential Information for its own purpose or for the benefit of any third party and shall honor the copyrights of and will not copy, duplicate, or in any manner reproduce any such copyrighted materials. + The provisions of this Section shall survive termination or expiration of this Agreement. + + 8. Entire Agreement. + This Agreement constitutes the entire agreement and understanding between the parties relating to the subject matter hereof. + This Agreement may not be amended except by a written document signed by both parties. + + 9. Severability. + Each provision of this Agreement is a separately enforceable provision. + If any provision of this Agreement is determined to be or becomes unenforceable or illegal, such provision shall be reformed to the minimum extent necessary in order for this Agreement to remain in effect in accordance with its terms as modified by such reformation. json: qaplug.json - yml: qaplug.yml + yaml: qaplug.yml html: qaplug.html - text: qaplug.LICENSE + license: qaplug.LICENSE - license_key: qca-linux-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-qca-linux-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Redistribution. Reproduction and redistribution in binary form, without + modification, for use solely in conjunction with a Qualcomm Atheros, Inc. + chipset, is permitted provided that the following conditions are met: + + • Redistributions must reproduce the above copyright notice and the following + disclaimer in the documentation and/or other materials provided with the + distribution. + + • Neither the name of Qualcomm Atheros, Inc. nor the names of its suppliers + may be used to endorse or promote products derived from this Software + without specific prior written permission. + + • No reverse engineering, decompilation, or disassembly of this Software is + permitted. + + Limited patent license. Qualcomm Atheros, Inc. (“Licensor”) grants you + (“Licensee”) a limited, worldwide, royalty-free, non-exclusive license under + the Patents to make, have made, use, import, offer to sell and sell the + Software. No hardware per se is licensed hereunder. + The term “Patents” as used in this agreement means only those patents or patent + applications owned solely and exclusively by Licensor as of the date of + Licensor’s submission of the Software and any patents deriving priority (i.e., + having a first effective filing date) therefrom. The term “Software” as used in + this agreement means the firmware image submitted by Licensor, under the terms + of this license, to git://git.kernel.org/pub/scm/linux/kernel/git/firmware/ + linux-firmware.git. + Notwithstanding anything to the contrary herein, Licensor does not grant and + Licensee does not receive, by virtue of this agreement or the Licensor’s + submission of any Software, any license or other rights under any patent or + patent application owned by any affiliate of Licensor or any other entity + (other than Licensor), whether expressly, impliedly, by virtue of estoppel or + exhaustion, or otherwise. + + 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. json: qca-linux-firmware.json - yml: qca-linux-firmware.yml + yaml: qca-linux-firmware.yml html: qca-linux-firmware.html - text: qca-linux-firmware.LICENSE + license: qca-linux-firmware.LICENSE - license_key: qca-technology + category: Proprietary Free spdx_license_key: LicenseRef-scancode-qca-technology other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Redistribution and use in binary forms, without + modification, are permitted (subject to the limitations in the + disclaimer below) provided that the following conditions are met: + + * Redistributions 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 Qualcomm Atheros, Inc. nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + * No Reverse engineering, decompiling, decrypting, or disassembling of + this software is permitted. + + 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. NO LICENSES OR OTHER RIGHTS, + WHETHER EXPRESS, IMPLIED, BASED ON ESTOPPEL OR OTHERWISE, ARE GRANTED + TO ANY PARTY'S PATENTS, PATENT APPLICATIONS, OR PATENTABLE INVENTIONS + BY VIRTUE OF THIS LICENSE OR THE DELIVERY OR PROVISION BY QUALCOMM + ATHEROS, INC. OF THE SOFTWARE. + + IN NO EVENT SHALL THE COPYRIGHT OWNER OR ANY CONTRIBUTOR BE LIABLE FOR + ANY 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 REGARDLESS OF ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + OTHERWISE) ARISING IN ANY WAY OUT OF OR RESULTING FROM THE USE OF THE + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ANY + EVENT, THE TOTAL AGGREGATE LIABILITY THAT MAY BE IMPOSED ON QUALCOMM + ATHEROS, INC. FOR ANY DIRECT DAMAGES ARISING UNDER OR RESULTING FROM + THIS AGREEMENT OR IN CONNECTION WITH ANY USE OF THE SOFTWARE SHALL NOT + EXCEED A TOTAL AMOUNT OF US$5.00. + + IF ANY OF THE ABOVE PROVISIONS ARE HELD TO BE VOID, INVALID, + UNENFORCEABLE, OR ILLEGAL, THE OTHER PROVISIONS SHALL CONTINUE IN FULL + FORCE AND EFFECT. json: qca-technology.json - yml: qca-technology.yml + yaml: qca-technology.yml html: qca-technology.html - text: qca-technology.LICENSE + license: qca-technology.LICENSE - license_key: qcad-exception-gpl + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-qcad-exception-gpl other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "Linking QCAD libraries statically or dynamically with other modules is making \na combined\ + \ work based on the QCAD libraries. Thus, the terms and conditions of \nthe GNU General\ + \ Public License cover the whole combination.\n\nAs a special exception, the copyright holders\ + \ of QCAD give you permission to \nlink the QCAD libraries with independent modules to produce\ + \ an executable or script, \nregardless of the license terms of these independent modules,\ + \ and to copy and \ndistribute the resulting executable or script under terms of your choice,\ + \ provided \nthat you also meet, for each linked independent module, the terms and conditions\ + \ \nof the license of that module. An independent module is a module which is not \nderived\ + \ from or based on QCAD. \n\nIf you modify QCAD, you may extend this exception to your version\ + \ of QCAD, but \nyou are not obliged to do so. If you do not wish to do so, delete this\ + \ exception \nstatement from your version." json: qcad-exception-gpl.json - yml: qcad-exception-gpl.yml + yaml: qcad-exception-gpl.yml html: qcad-exception-gpl.html - text: qcad-exception-gpl.LICENSE + license: qcad-exception-gpl.LICENSE - license_key: qhull + category: Copyleft Limited spdx_license_key: Qhull other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Qhull, Copyright (c) 1993-2003 + + The National Science and Technology Research Center for Computation and Visualization of Geometric Structures (The Geometry Center) University of Minnesota + + email: qhull@qhull.org + + This software includes Qhull from The Geometry Center. Qhull is copyrighted as noted above. Qhull is free software and may be obtained via http from www.qhull.org. It may be freely copied, modified, and redistributed under the following conditions: + + 1. All copyright notices must remain intact in all files. + + 2. A copy of this text file must be distributed along with any copies of Qhull that you redistribute; this includes copies that you have modified, or copies of programs or other software products that include Qhull. + + 3. If you modify Qhull, you must include a notice giving the name of the person performing the modification, the date of modification, and the reason for such modification. + + 4. When distributing modified versions of Qhull, or other software products that include Qhull, you must provide notice that the original source code may be obtained as noted above. + + 5. There is no warranty or other guarantee of fitness for Qhull, it is provided solely "as is". Bug reports or fixes may be sent to qhull_bug@qhull.org; the authors may or may not act on them as they desire. json: qhull.json - yml: qhull.yml + yaml: qhull.yml html: qhull.html - text: qhull.LICENSE + license: qhull.LICENSE - license_key: qlogic-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-qlogic-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Redistribution and use in binary form, without modification, for use in conjunction + with QLogic authorized products is permitted provided that the following conditions + are met: + + 1. Redistribution 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. + 2. The name of QLogic Corporation may not be used to endorse or promote products + derived from this software without specific prior written permission. + 3. Reverse engineering, decompilation, or disassembly of this firmware is not + permitted. + + REGARDLESS OF WHAT LICENSING MECHANISM IS USED OR APPLICABLE,THIS PROGRAM IS + PROVIDED BY QLOGIC CORPORATION "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. + + USER ACKNOWLEDGES AND AGREES THAT USE OF THIS PROGRAM WILL NOT CREATE OR GIVE + GROUNDS FOR A LICENSE BY IMPLICATION, ESTOPPEL, OR OTHERWISE IN ANY INTELLECTUAL + PROPERTY RIGHTS (PATENT, COPYRIGHT, TRADE SECRET, MASK WORK, OR OTHER PROPRIETARY + RIGHT) EMBODIED IN ANY OTHER QLOGIC HARDWARE OR SOFTWARE EITHER SOLELY OR IN + COMBINATION WITH THIS PROGRAM. json: qlogic-firmware.json - yml: qlogic-firmware.yml + yaml: qlogic-firmware.yml html: qlogic-firmware.html - text: qlogic-firmware.LICENSE + license: qlogic-firmware.LICENSE - license_key: qlogic-microcode + category: Permissive spdx_license_key: LicenseRef-scancode-qlogic-microcode other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + You may redistribute the hardware specific firmware binary file + under the following terms: + + 1. Redistribution of source code (only if applicable), + must retain the above copyright notice, this list of + conditions and the following disclaimer. + + 2. Redistribution 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 QLogic Corporation may not be used to + endorse or promote products derived from this software + without specific prior written permission + + REGARDLESS OF WHAT LICENSING MECHANISM IS USED OR APPLICABLE, + THIS PROGRAM IS PROVIDED BY QLOGIC CORPORATION "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. + + USER ACKNOWLEDGES AND AGREES THAT USE OF THIS PROGRAM WILL NOT + CREATE OR GIVE GROUNDS FOR A LICENSE BY IMPLICATION, ESTOPPEL, OR + OTHERWISE IN ANY INTELLECTUAL PROPERTY RIGHTS (PATENT, COPYRIGHT, + TRADE SECRET, MASK WORK, OR OTHER PROPRIETARY RIGHT) EMBODIED IN + ANY OTHER QLOGIC HARDWARE OR SOFTWARE EITHER SOLELY OR IN + COMBINATION WITH THIS PROGRAM. json: qlogic-microcode.json - yml: qlogic-microcode.yml + yaml: qlogic-microcode.yml html: qlogic-microcode.html - text: qlogic-microcode.LICENSE + license: qlogic-microcode.LICENSE - license_key: qpl-1.0 + category: Copyleft Limited spdx_license_key: QPL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + The Q Public License Version 1.0 + + Copyright (C) 1999 Trolltech AS, Norway. + Everyone is permitted to copy and distribute this license document. + + The intent of this license is to establish freedom to share and change the software regulated by this license under the open source model. + + This license applies to any software containing a notice placed by the copyright holder saying that it may be distributed under the terms of the Q Public License version 1.0. Such software is herein referred to as the Software. This license covers modification and distribution of the Software, use of third-party application programs based on the Software, and development of free software which uses the Software. + + Granted Rights + + 1. You are granted the non-exclusive rights set forth in this license provided you agree to and comply with any and all conditions in this license. Whole or partial distribution of the Software, or software items that link with the Software, in any form signifies acceptance of this license. + + 2. You may copy and distribute the Software in unmodified form provided that the entire package, including - but not restricted to - copyright, trademark notices and disclaimers, as released by the initial developer of the Software, is distributed. + + 3. You may make modifications to the Software and distribute your modifications, in a form that is separate from the Software, such as patches. The following restrictions apply to modifications: + + a. Modifications must not alter or remove any copyright notices in the Software. + + b. When modifications to the Software are released under this license, a non-exclusive royalty-free right is granted to the initial developer of the Software to distribute your modification in future versions of the Software provided such versions remain available under these terms in addition to any other license(s) of the initial developer. + + 4. You may distribute machine-executable forms of the Software or machine-executable forms of modified versions of the Software, provided that you meet these restrictions: + + a. You must include this license document in the distribution. + + b. You must ensure that all recipients of the machine-executable forms are also able to receive the complete machine-readable source code to the distributed Software, including all modifications, without any charge beyond the costs of data transfer, and place prominent notices in the distribution explaining this. + + c. You must ensure that all modifications included in the machine-executable forms are available under the terms of this license. + + 5. You may use the original or modified versions of the Software to compile, link and run application programs legally developed by you or by others. + + 6. You may develop application programs, reusable components and other software items that link with the original or modified versions of the Software. These items, when distributed, are subject to the following requirements: + + a. You must ensure that all recipients of machine-executable forms of these items are also able to receive and use the complete machine-readable source code to the items without any charge beyond the costs of data transfer. + + b. You must explicitly license all recipients of your items to use and re-distribute original and modified versions of the items in both machine-executable and source code forms. The recipients must be able to do so without any charges whatsoever, and they must be able to re-distribute to anyone they choose. + + c. If the items are not available to the general public, and the initial developer of the Software requests a copy of the items, then you must supply one. + + Limitations of Liability + In no event shall the initial developers or copyright holders be liable for any damages whatsoever, including - but not restricted to - lost revenue or profits or other direct, indirect, special, incidental or consequential damages, even if they have been advised of the possibility of such damages, except to the extent invariable law, if any, provides otherwise. + + No Warranty + The Software and this license document are provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + Choice of Law + This license is governed by the Laws of Norway. Disputes shall be settled by Oslo City Court. json: qpl-1.0.json - yml: qpl-1.0.yml + yaml: qpl-1.0.yml html: qpl-1.0.html - text: qpl-1.0.LICENSE + license: qpl-1.0.LICENSE - license_key: qpopper + category: Permissive spdx_license_key: LicenseRef-scancode-qpopper other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Qpopper(tm) is licensed by QUALCOMM Incorporated under the following\n terms and\ + \ conditions. ANY USE OF QPOPPER CONSTITUTES AGREEMENT TO\n THESE TERMS.\n\n1. Warranty\ + \ Disclaimer. QPOPPER SOFTWARE IS PROVIDED TO THE USER \"AS\n IS.\" QUALCOMM MAKES NO\ + \ WARRANTIES, EITHER EXPRESS OR IMPLIED, WITH\n RESPECT TO THE QPOPPER SOFTWARE AND/OR\ + \ ASSOCIATED MATERIALS\n PROVIDED TO THE USER, INCLUDING BUT NOT LIMITED TO ANY WARRANTY\ + \ OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR AGAINST\n INFRINGEMENT.\ + \ QUALCOMM does not warrant that the functions\n contained in the software will meet\ + \ your requirements, or that the\n operation of the software will be uninterrupted or\ + \ error-free, or\n that defects in the software will be corrected. Furthermore,\n \ + \ QUALCOMM does not warrant or make any representations regarding\n the use or the results\ + \ of the use of the software or any\n documentation provided therewith in terms of their\ + \ correctness,\n accuracy, reliability, or otherwise. No oral or written\n information\ + \ or advice given by QUALCOMM or a QUALCOMM\n representative shall create a warranty\ + \ or in any way increase the\n scope of this warranty.\n\n2. Limitation of Liability.\ + \ QUALCOMM AND ITS LICENSORS ARE NOT LIABLE\n FOR ANY CLAIMS OR DAMAGES WHATSOEVER ARISING\ + \ IN CONNECTION WITH\n THE QPOPPER SOFTWARE, INCLUDING WITHOUT LIMITATION PROPERTY\n\ + \ DAMAGE, PERSONAL INJURY, INTELLECTUAL PROPERTY INFRINGEMENT, LOSS\n OF PROFITS,\ + \ OR INTERRUPTION OF BUSINESS, OR FOR ANY SPECIAL,\n CONSEQUENTIAL OR INCIDENTAL DAMAGES,\ + \ HOWEVER CAUSED, WHETHER\n ARISING OUT OF BREACH OF WARRANTY, CONTRACT, TORT (INCLUDING\n\ + \ NEGLIGENCE), STRICT LIABILITY, OR OTHERWISE.\n\n3. Using and Distributing Qpopper.\ + \ If a party agrees to these terms\n and conditions, such party may copy and use Qpopper\ + \ for any\n purpose, and distribute unmodified complete copies of Qpopper to\n any\ + \ third party provided that such third party must agree to these\n terms and conditions\ + \ prior to any use of Qpopper. Failure to\n include these license terms when distributing\ + \ Qpopper shall be a\n material breach of this agreement, and the party committing such\n\ + \ breach shall defend and indemnify QUALCOMM Incorporated against\n all claims, losses,\ + \ liabilities, damages, costs and expenses,\n including attorney's fees, which QUALCOMM\ + \ may incur in connection\n with such breach.\n\n4. Modifying Qpopper. Qpopper consists\ + \ of (i) intellectual property\n owned by QUALCOMM Incorporated, and (ii) intellectual\ + \ property\n owned by the Regents of the University of California. Any\n modifications\ + \ to the U.C.-owned portions of Qpopper are subject to\n the provisions of Section 7\ + \ below. A party to this agreement may\n create derivative works of the QUALCOMM-owned\ + \ portions of the\n Qpopper software, distribute such derivative works to third\n \ + \ parties, and permit such third parties to copy and use such\n derivative works subject\ + \ to the following restrictions:\n \n (a) The protocol greeting banner and the CAPA\ + \ IMPLEMENTATION\n response tag must include clear notification that Qpopper has\n\ + \ been modified (for example,\n \"FooPopper-by-Foo-Networks-hacked-from-Qpopper-4.0\"\ + ).\n \n (b) Detailed notification of all modifications must be clearly and\n \ + \ conspicuously included within the modified source files, and\n in a separate\ + \ document. All of the source files and the\n document describing the changes must\ + \ be distributed with the\n modified software.\n \n (c) When distributing\ + \ the modified software the distributing party\n must clearly and conspicuously\ + \ communicate to all recipients\n that the modified software is produced by the\ + \ party that\n modified the software and is not a QUALCOMM product.\n\n (d) \ + \ The term \"Qpopper\" shall not be used in connection with the\n modified software\ + \ except in a purely factual manner when\n describing the history or development\ + \ of the software.\n\n (e) The modified software must be licensed to end users using\ + \ a\n license agreement which expressly states that portions of the\n modified\ + \ software are based on code owned by QUALCOMM\n Incorporated, that such QUALCOMM\ + \ code is only provided on the\n terms stated in this agreement, and that QUALCOMM\ + \ bears no\n responsibility whatsoever for any modifications to the QUALCOMM\n \ + \ code.\n\n (f) The modifying party shall defend and indemnify QUALCOMM\n \ + \ Incorporated against all claims, losses, liabilities, damages,\n costs and\ + \ expenses, including attorney's fees, which QUALCOMM\n may incur in connection\ + \ with any intellectual property\n infringement or similar claim related to the\ + \ modified\n software, if such claim is related to that party's\n modifications.\n\ + \n5. Notices. QUALCOMM is a registered trademark and registered service\n mark of QUALCOMM\ + \ Incorporated. Qpopper is a trademark of QUALCOMM\n Incorporated. QUALCOMM does not\ + \ grant any party the right to use\n such marks on any modified version of the Qpopper\ + \ software. All\n other trademarks and service marks are the property of their\n \ + \ respective owners. The Qpopper software, excluding the portions\n owned by the Regents\ + \ of the University of California, is Copyright\n 1993-2006 QUALCOMM Incorporated. All\ + \ rights not expressly granted\n herein are reserved by QUALCOMM.\n\n6. General. This\ + \ agreement is governed and interpreted in accordance\n with the laws of the State of\ + \ California without giving effect to\n its conflict of laws provisions. Any claim arising\ + \ out of or\n related to this agreement must be brought exclusively in the state\n \ + \ or federal courts located in San Diego County, California. The\n United Nations Convention\ + \ on Contracts for the International Sale\n of Goods is expressly disclaimed. If any\ + \ provision of this\n agreement shall be invalid, the validity of the remaining\n \ + \ provisions of this agreement shall not be affected. This\n agreement is the entire\ + \ and exclusive agreement between QUALCOMM\n and any user of the Qpopper software with\ + \ respect to the software\n and supersedes all prior agreements (whether written or oral)\ + \ and\n other communications related to the software.\n\n7. IMPORTANT.\n\n This software\ + \ program contains code, and/or derivatives or\n modifications of code originating from\ + \ the software program\n \"Popper.\" Popper is (c) Copyright 1989-1991 The Regents of\ + \ the\n University of California, All Rights Reserved. Popper was\n created by Austin\ + \ Shelton, Information Systems and Technology,\n University of California, Berkeley.\ + \ Permission from the Regents of\n the University of California to use, copy, modify,\ + \ and distribute\n the \"Popper\" software contained herein for any purpose, without\n\ + \ fee, and without a written agreement is hereby granted, provided\n that the above\ + \ copyright notice and this paragraph and the\n following two paragraphs appear in all\ + \ copies. HOWEVER, ADDITIONAL\n PERMISSIONS MAY BE NECESSARY FROM OTHER PERSONS OR ENTITIES,\ + \ TO\n USE DERIVATIVES OR MODIFICATIONS OF POPPER.\n\n IN NO EVENT SHALL THE UNIVERSITY\ + \ OF CALIFORNIA BE LIABLE TO ANY\n PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR\ + \ CONSEQUENTIAL\n DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THE\n \ + \ POPPER SOFTWARE, OR ITS DERIVATIVES OR MODIFICATIONS, AND ITS\n DOCUMENTATION, EVEN\ + \ IF THE UNIVERSITY OF CALIFORNIA HAS BEEN\n ADVISED OF THE POSSIBLITY OF SUCH DAMAGE.\n\ + \n THE UNIVERSITY OF CALIFORNIA, SPECIFICALLY DISCLAIMS ANY\n WARRANTIES, INCLUDING,\ + \ BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\ + \ PURPOSE. THE\n POPPER SOFTWARE PROVIDED HEREUNDER IS ON AN \"AS IS\" BASIS, AND THE\n\ + \ UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE\n MAINTENANCE, SUPPORT, UPDATES,\ + \ ENCHANCEMENTS, OR MODIFICATIONS." json: qpopper.json - yml: qpopper.yml + yaml: qpopper.yml html: qpopper.html - text: qpopper.LICENSE + license: qpopper.LICENSE - license_key: qt-commercial-1.1 + category: Commercial spdx_license_key: LicenseRef-scancode-qt-commercial-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Qt FOR APPLICATION DEVELOPMENT LICENSE AGREEMENT\n\nAgreement version 1.1\n\nThis Qt\ + \ for Application Development License Agreement (\"Agreement\") is a legal agreement between\ + \ The Qt Company Ltd (\"The Qt Company\") with its registered office at Valimotie 21, 00380\ + \ Helsinki, Finland and you (either an individual or a legal entity) (\"Licensee\") for\ + \ the Licensed Software (as defined below).\n\nPlease, read these license terms through\ + \ carefully. By selecting \"I accept the Agreement\", you are deemed to accept these license\ + \ terms and to commit yourself to observing them. When representing a legal entity, you\ + \ should ensure your due authorization to approve these terms before you select \"I accept\ + \ the Agreement\". Otherwise, we regard you as personally responsible for compliance with\ + \ this Agreement. For clarity, please note that in case there already exists a signed license\ + \ agreement between you and The Qt Company, this Agreement shall not override such an existing\ + \ agreement but it shall continue to be valid subject to its applicable terms.\n\nUnder\ + \ this Agreement, the Licensee has purchased one (1) of the three (3) different below mentioned\ + \ rights applicable to the Licensed Software (as defined below):\n(i) A perpetual license,\ + \ which shall be valid for an unlimited time as further stated in this Agreement (\"Perpetual\ + \ License\"); or\n(ii) A subscription license, which shall be valid for the time period\ + \ specified by the Qt Company (\"Subscription License\"); or\n(iii) A limited subscription\ + \ license, which includes a discount in payment based on Licensee´s limited annual sales\ + \ revenue, as further stated in Section 14.5 and www.qt.io, and which shall be valid for\ + \ the time period specified by the Qt Company (\"Limited Subscription License\"). For clarity,\ + \ Limited Subscription License shall not include any Support (as defined below).\n\n \n\ + 1. DEFINITIONS\n\n\"Affiliate\" of a Party shall mean an entity (i) which is directly or\ + \ indirectly controlling such Party; (ii) which is under the same direct or indirect ownership\ + \ or control as such Party; or (iii) which is directly or indirectly owned or controlled\ + \ by such Party. For these purposes, an entity shall be treated as being controlled by another\ + \ if that other entity has fifty percent (50 %) or more of the votes in such entity, is\ + \ able to direct its affairs and/or to control the composition of its board of directors\ + \ or equivalent body.\n\n\"Applications\" shall mean Licensee’s software products created\ + \ using the Licensed Software which may include portions of the Licensed Software.\n\n\"\ + Continued-Usage Term\" shall mean, depending on the option purchased by Licensee, either\ + \ a) if the Licensee has purchased Perpetual License; perpetuity; or b) if the Licensee\ + \ has purchased Subscription License or Limited Subscription License; the paid term.\n\n\ + \"Deployment Platforms\" shall mean those operating systems in which the Licensed Software\ + \ can be distributed on according to the terms and conditions of this Agreement, especially\ + \ Section 5.2.\n\n\"Development Platforms\" shall mean those operating systems in which\ + \ the Licensed Software can be used only for designing, developing and testing Applications,\ + \ but not distributed in any form or used for any other purpose.\n\n\"Designated User(s)\"\ + \ shall mean the employee(s) of Licensee acting within the scope of their employment or\ + \ Licensee’s consultant(s) or contractor(s) acting within the scope of their services for\ + \ Licensee and on behalf of Licensee.\n\n\"License Certificate\" shall mean the document\ + \ accompanying the Licensed Software which specifies the modules which are licensed under\ + \ the Agreement, Development Platforms, Deployment Platforms and Designated Users.\n\n\"\ + Licensed Software\" shall mean the computer software, \"online\" or electronic documentation,\ + \ associated media and printed materials, including the source code, example programs and\ + \ the documentation delivered by The Qt Company to Licensee in conjunction with this Agreement.\ + \ Licensed Software does not include Third Party Software (as defined in Section 7).\n\n\ + \"Modified Software\" shall mean modifications made to the Licensed Software by Licensee.\n\ + \n\"Online Services\" shall mean any services or access to systems provided by The Qt Company\ + \ to the Licensee over Internet in conjunction with the Licensed Software or for the purpose\ + \ of use by the Licensee of the Licensed Software or Support. Using some of the Online Services\ + \ may be subject to additional fees.\n\n\"Party or Parties\" shall mean Licensee and/or\ + \ The Qt Company.\n\n\"Redistributables\" shall mean the portions of the Licensed Software\ + \ set forth in Appendix 1, Section 1 that may be distributed with or as part of Applications\ + \ in object code form.\n\n\"Renewal Term\" shall mean a) in case the Licensee has purchased\ + \ a Perpetual License: a time period of twelve (12) months, and b) in case the Licensee\ + \ has purchased Subscription License or Limited Subscription License, a time period specified\ + \ by the Qt Company at www.qt.io or directly to the Licensee.\n\n\"Start-For-Free Term\"\ + \ shall mean the period from the later of (a) the Effective Date; or (b) the date the Licensed\ + \ Software was initially delivered to Licensee by The Qt Company prior to the Supported\ + \ Term. If no specific Effective Date is set forth in the Agreement, the Effective Date\ + \ shall be deemed to be the date the Licensed Software was initially delivered to Licensee.\ + \ Unless otherwise agreed with The Qt Company in writing, the maximum duration of Start-For-Free\ + \ Term shall be thirty (30) days.\n\n\"Support\" shall mean standard developer support that\ + \ is provided by The Qt Company to assist eligible Designated Users in using the Licensed\ + \ Software in accordance with its established standard support procedures.\n\n\"Supported\ + \ Term\" shall mean a time period that the Licensee has selected and paid for Support for\ + \ the Licensed Software, calculated from either (i) the end of the Start-For-Free Term,\ + \ or (ii) from the purchase of the Supported Term, or (iii) from end of the previous Supported\ + \ Term, as applicable. For the Limited Subscription License, Supported Term shall mean a\ + \ time period for which the Licensee has selected and paid for usage of Licensed Software.\n\ + \n\"Updates\" shall mean a release or version of the Licensed Software containing enhancements,\ + \ new features, bug fixes, error corrections and other changes that are generally made available\ + \ to users of the Licensed Software that have contracted for maintenance and support.\n\n\ + \ \n2. OWNERSHIP\n\nThe Licensed Software is protected by copyright laws and international\ + \ copyright treaties, as well as other intellectual property laws and treaties. The Licensed\ + \ Software is licensed, not sold.\nTo the extent Licensee submits bug fixes or error corrections,\ + \ including information related thereto, Licensee hereby grants The Qt Company a sublicensable,\ + \ irrevocable, perpetual, worldwide, non-exclusive, royalty-free and fully paid-up copyright\ + \ and trade secret license to reproduce, adapt, translate, modify, and prepare derivative\ + \ works of, publicly display, publicly perform, sublicense, make available and distribute\ + \ error corrections and bug fixes, including derivative works thereof. All The Qt Company’s\ + \ and/or its licensors’ trademarks, service marks, trade names, logos or other words or\ + \ symbols are and shall remain the exclusive property of The Qt Company or its licensors\ + \ respectively.\n\n \n3. MODULES\n\nSome of the files in the Licensed Software have been\ + \ grouped into modules. These files contain specific notices defining the module of which\ + \ they are a part. The modules licensed to Licensee are specified in the License Certificate\ + \ accompanying the Licensed Software. The terms of the License Certificate are considered\ + \ part of the Agreement. In the event of inconsistency or conflict between the language\ + \ of this Agreement and the License Certificate, the provisions of this Agreement shall\ + \ govern.\n\n \n4. VALIDITY OF THE AGREEMENT\n\nBy installing, copying, or otherwise using\ + \ the Licensed Software, Licensee agrees to be bound by the terms of this Agreement. If\ + \ Licensee does not agree to the terms of this Agreement, Licensee should not install, copy,\ + \ or otherwise use the Licensed Software. In addition, by installing, copying, or otherwise\ + \ using any Updates or other components of the Licensed Software that Licensee receives\ + \ separately as part of the Licensed Software, Licensee agrees to be bound by any additional\ + \ license terms that accompany such Updates, if any. If Licensee does not agree to the additional\ + \ license terms that accompany such Updates, Licensee should not install, copy, or otherwise\ + \ use such Updates.\n\nUpon Licensee’s acceptance of the terms and conditions of this Agreement,\ + \ The Qt Company grants Licensee the right to use the Licensed Software in the manner provided\ + \ below.\n\n \n5. LICENSES GRANTED\n\n5.1 General\n\n5.1.1 Licensee is hereby granted a\ + \ free of charge license for the Start-For-Free Term as described in Section 5.2 below.\ + \ For clarity, Section 5.3 shall not apply for the Start-For-Free Term.\n\n5.1.2 Licensee\ + \ may purchase additional license(s) for Continued-Usage Term, as described in Sections\ + \ 5.2 and 5.3 below, subject to The Qt Company’s payment terms and conditions applicable\ + \ at the time of purchase. In addition, Licensee may purchase license(s) for the Continued-Usage\ + \ Term without such a preceding Start-For-Free Term.\n\n5.2 Licenses granted during the\ + \ Start-For-Free Term and the Continued-Usage Term\n\n5.2.1 Using, Modifying and Copying\n\ + \nThe Qt Company grants to Licensee a non-exclusive, non-transferable, limited term license\ + \ to use, modify and copy the Licensed Software for Designated Users specified in the License\ + \ Certificate for the sole purposes of:\n\n(i) designing, developing, and testing Application(s);\n\ + (ii) modifying the Licensed Software as limited by section 8 below; and\n(iii) compiling\ + \ the Licensed Software and/or Modified Software source code into object code.\n\nLicensee\ + \ may install copies of the Licensed Software on an unlimited number of computers provided\ + \ that only the Designated Users use the Licensed Software.\nLicensee may at any time during\ + \ the Supported Term designate another Designated User to replace a then-current Designated\ + \ User by notifying The Qt Company, provided that a) the then-current Designated User has\ + \ not been designated as a replacement during the last six (6) months; and b) there is no\ + \ more than the specified number of Designated Users at any given time.\n\n5.3 Limited Redistribution\ + \ right for the Continued-Usage Term only\n\nThe limited distribution licenses granted in\ + \ this Section 5.3 shall only be applicable to the Continued-Usage Term, but not to Start-For-Free\ + \ Term.\n\na) The Qt Company grants Licensee a non-exclusive, royalty-free right to reproduce\ + \ and distribute the object code form of Redistributables (listed in Appendix 1, Section\ + \ 1) for execution on the specified Deployment Platforms, excluding the Joint Hardware and\ + \ Software Distribution as defined in b) below. Copies of Redistributables may only be distributed\ + \ with and for the sole purpose of executing Applications permitted under this Agreement\ + \ that Licensee has created using the Licensed Software. Under no circumstances may any\ + \ copies of Redistributables be distributed separately. This Agreement does not give Licensee\ + \ any rights to distribute any of the parts of the Licensed Software listed in Appendix\ + \ 1, Section 2, neither as a whole nor as parts or snippets of code.\n\nb) Licensee may\ + \ not distribute, transfer, assign or otherwise dispose of Applications and/or Redistributables,\ + \ in binary/compiled form, or in any other form, if such action is part of a Joint Software\ + \ and Hardware Distribution, except as provided by a separate runtime distribution license\ + \ with The Qt Company or one of its authorized distributors. A Joint Hardware and Software\ + \ Distribution shall be defined as either:\n\n(i) distribution of a hardware device where,\ + \ in its final end user configuration, the main user interface of the device is provided\ + \ by Application(s) created by Licensee or others, using Licensed Software or Licensed Software\ + \ based software product, and depends on the Licensed Software or an open source version\ + \ of Qt or any Qt based software product; or\n\n(ii) distribution of the Licensed Software\ + \ with a device designed to facilitate the installation of the Licensed Software onto the\ + \ same device where the main user interface of such device is provided by Application(s)\ + \ created by Licensee or others, using the Licensed Software, and depends on the Licensed\ + \ Software.\n\nc) For the avoidance of doubt, should the Licensee wish to distribute Licensed\ + \ Software as a part of software development kit (SDK) for the purpose of developing Applications\ + \ by Licensee´s customers for Licensee´s products, such distribution is subject to a separate\ + \ Qt SDK distribution license agreement to be concluded with The Qt Company.\n\nThe licenses\ + \ granted in this Section 5 by The Qt Company to Licensee are subject to Licensee’s compliance\ + \ with Section 8 of this Agreement.\n\n \n6. VERIFICATION\n\nThe Qt Company or a certified\ + \ auditor on The Qt Company’s behalf, may, upon its reasonable request and at its expense,\ + \ audit Licensee with respect to the use of the Licensed Software. Such audit may be conducted\ + \ by mail, electronic means or through an in-person visit to Licensee’s place of business.\ + \ Any such in-person audit shall be conducted during regular business hours at Licensee’s\ + \ facilities and shall not unreasonably interfere with Licensee’s business activities. The\ + \ Qt Company will not remove, copy, or redistribute any electronic material during the course\ + \ of an audit. If an audit reveals that Licensee is using the Licensed Software in a way\ + \ that is in material violation of the terms of the Agreement, then Licensee shall pay The\ + \ Qt Company’s reasonable costs of conducting the audit. In the case of a material violation,\ + \ Licensee agrees to pay The Qt Company any amounts owing that are attributable to the unauthorized\ + \ use. Alternatively, The Qt Company reserves the right, at The Qt Company’s sole option,\ + \ to terminate the licenses for the Licensed Software.\n\n \n7. THIRD PARTY SOFTWARE\n\n\ + The Licensed Software may provide links to third party libraries or code (collectively \"\ + Third Party Software\") to implement various functions. Third Party Software does not comprise\ + \ part of the Licensed Software. In some cases, access to Third Party Software may be included\ + \ along with the Licensed Software delivery as a convenience for development and testing\ + \ only. Such source code and libraries may be listed in the \"…/src/3rdparty\" source tree\ + \ delivered with the Licensed Software or documented in the Licensed Software where the\ + \ Third Party Software is used, as may be amended from time to time, do not comprise the\ + \ Licensed Software. Licensee acknowledges (i) that some part of Third Party Software may\ + \ require additional licensing of copyright and patents from the owners of such, and (ii)\ + \ that distribution of any of the Licensed Software referencing any portion of a Third Party\ + \ Software may require appropriate licensing from such third parties.\n\n \n8. CONDITIONS\ + \ FOR CREATING APPLICATIONS\n\nThe licenses granted in this Agreement for Licensee to create,\ + \ modify and distribute Applications is subject to all of the following conditions: (i)\ + \ all copies of the Applications Licensee creates must bear a valid copyright notice either\ + \ Licensee’s own or the copyright notice that appears on the Licensed Software; (ii) Licensee\ + \ may not remove or alter any copyright, trademark or other proprietary rights notice contained\ + \ in any portion of the Licensed Software including but not limited to the About Boxes;\ + \ (iii) Licensee will indemnify and hold The Qt Company, its Affiliates, contractors, and\ + \ its suppliers, harmless from and against any claims or liabilities arising out of the\ + \ use, reproduction or distribution of Applications; (iv) Applications must be developed\ + \ using a licensed, registered copy of the Licensed Software; (v) Applications must add\ + \ primary and substantial functionality to the Licensed Software; (vi) Applications may\ + \ not pass on functionality which in any way makes it possible for others to create software\ + \ with the Licensed Software; however Licensee may use the Licensed Software’s scripting\ + \ and QML (\"Qt Quick\") functionality solely in order to enable scripting, themes and styles\ + \ that augment the functionality and appearance of the Application(s) without adding primary\ + \ and substantial functionality to the Application(s); (vii) Licensee may create Modified\ + \ Software that breaks the source or binary compatibility with the Licensed Software. This\ + \ includes, but is not limited to, changing the application programming interfaces (\"API\"\ + ) by adding, changing or deleting any variable, method, or class signature in the Licensed\ + \ Software, the inter-process QCop specification, and/or any inter-process protocols, services\ + \ or standards in the Licensed Software libraries. To the extent that Licensee breaks source\ + \ or binary compatibility with the Licensed Software, Licensee acknowledges that The Qt\ + \ Company’s ability to provide Support may be prevented or limited and Licensee’s ability\ + \ to make use of Updates may be restricted; (viii) Applications may not compete with the\ + \ Licensed Software; (ix) Licensee may not use The Qt Company’s or any of its suppliers’\ + \ names, logos, or trademarks to market Applications, except to state that Licensee’s Application(s)\ + \ was developed using the Licensed Software; and (x) each Designated User creating the Application(s)\ + \ needs to have a separate license for the Licensed Software.\n\nNOTE: If Licensee, or another\ + \ third party, has, at any time, developed or distributed all (or any portions of) the Application(s)\ + \ using an open source version of Qt licensed under the terms of the GNU Lesser General\ + \ Public License, version 2.1 or later (\"LGPL\") or the GNU General Public License version\ + \ 2.0 or later (\"GPL\"), Licensee may contact The Qt Company via email to address sales@qt.io\ + \ to ask for the necessary permission to combine such development work with the Licensed\ + \ Software. The Qt Company shall evaluate Licensee´s request, and respond to the request\ + \ with estimated license costs and other applicable terms and details relating to the permission\ + \ for the Licensee, depending on the actual situation in question. Copies of the licenses\ + \ referred to above are located at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html,\ + \ http://www.gnu.org/licenses/lgpl-3.0.html, http://www.fsf.org/licensing/licenses/info/GPLv2.html,\ + \ and http://www.gnu.org/copyleft/gpl-3.0.html.\n\n \n9. PRE-RELEASE CODE\n\nThe Licensed\ + \ Software may contain pre-release code and functionality marked or otherwise stated as\ + \ \"Technology Preview\", \"Alpha\", \"Beta\" or similar. Such pre-release code may be present\ + \ in order to provide experimental support for new platforms or preliminary version of new\ + \ functionality. The pre-release code is not at the level of performance and compatibility\ + \ of a final, generally available, product offering. The pre-release parts of the Licensed\ + \ Software may not operate correctly and may be substantially modified prior to the first\ + \ commercial product release, if any. The Qt Company is under no obligation to make pre-release\ + \ code commercially available, or provide any Support or Updates relating thereto.\n\n \n\ + 10. LIMITED WARRANTY AND WARRANTY DISCLAIMER\n\nThe Qt Company hereby represents and warrants\ + \ with respect to the Licensed Software that it has the power and authority to grant the\ + \ rights and licenses granted to Licensee under this Agreement. Except as set forth above,\ + \ the Licensed Software is licensed to Licensee \"as is\". To the maximum extent permitted\ + \ by applicable law, The Qt Company on behalf of itself and its suppliers, disclaims all\ + \ warranties and conditions, either express or implied, including, but not limited to, implied\ + \ warranties of merchantability and fitness for a particular purpose, title and non-infringement\ + \ regarding to the Licensed Software.\n\n \n11. LIMITATION OF LIABILITY\n\nIf, The Qt Company’s\ + \ warranty disclaimer notwithstanding, The Qt Company is held to be liable to Licensee whether\ + \ in contract, tort, or any other legal theory, based on the Licensed Software, The Qt Company’s\ + \ entire liability to Licensee and Licensee’s exclusive remedy shall be, at The Qt Company’s\ + \ option, either (a) return of the price Licensee paid for the Licensed Software, or (b)\ + \ repair or replacement of the Licensed Software, provided Licensee returns all copies of\ + \ the Licensed Software to The Qt Company as originally delivered to Licensee. The Qt Company\ + \ shall not under any circumstances be liable to Licensee based on failure of the Licensed\ + \ Software if the failure resulted from accident, abuse or misapplication, nor shall The\ + \ Qt Company, under any circumstances, be liable for special damages, punitive or exemplary\ + \ damages, damages for loss of profits or interruption of business or for loss or corruption\ + \ of data. Any award of damages from The Qt Company to Licensee shall not exceed the total\ + \ amount Licensee has paid to The Qt Company in connection with this Agreement.\n\n \n12.\ + \ SUPPORT, UPDATES AND ONLINE SERVICES\n\nLicensee will be eligible to receive Support and\ + \ Updates and to use the Online Services during the Supported Term, in accordance with The\ + \ Qt Company’s then current policies and procedures, if any. Such policies and procedures\ + \ may be changed from time to time. For clarity, under the Limited Subscription License,\ + \ the Licensee shall not be eligible to receive any Support for the Licensed Software.\n\ + \nAs for the Perpetual License, unless Licensee notifies The Qt Company in writing no less\ + \ than thirty (30) days prior to each expiry of Supported Term, Supported Term may, at the\ + \ Qt Company’s option be extended by Renewal Term, subject to due payments by Licensee and\ + \ subject to The Qt Company’s terms and conditions applicable at the time of extension.\n\ + \nIn the event Licensee selects not to have Supported Term extended, The Qt Company shall,\ + \ following the expiry of Supported Term, no longer make the Licensed Software, Support,\ + \ Updates or Online Services available to Licensee.\n\n \n13. CONFIDENTIALITY\n\nEach party\ + \ acknowledges that during the Start-For-Free-Term and Supported Term of this Agreement\ + \ it shall have access to information about the other party’s business, business methods,\ + \ business plans, customers, business relations, technology, and other information, including\ + \ the terms of this Agreement, that is confidential and of great value to the other party,\ + \ and the value of which would be significantly reduced if disclosed to third parties (\"\ + Confidential Information\"). Accordingly, when a party (the \"Receiving Party\") receives\ + \ Confidential Information from another party (the \"Disclosing Party\"), the Receiving\ + \ Party shall, and shall obligate its employees and agents and employees and agents of its\ + \ Affiliates to: (i) maintain the Confidential Information in strict confidence; (ii) not\ + \ disclose the Confidential Information to a third party without the Disclosing Party’s\ + \ prior written approval; and (iii) not, directly or indirectly, use the Confidential Information\ + \ for any purpose other than for exercising its rights and fulfilling its responsibilities\ + \ pursuant to this Agreement. Each party shall take reasonable measures to protect the Confidential\ + \ Information of the other party, which measures shall not be less than the measures taken\ + \ by such party to protect its own confidential and proprietary information.\n\n\"Confidential\ + \ Information\" shall not include information that (a) is or becomes generally known to\ + \ the public through no act or omission of the Receiving Party; (b) was in the Receiving\ + \ Party’s lawful possession prior to the disclosure hereunder and was not subject to limitations\ + \ on disclosure or use; (c) is developed by employees of the Receiving Party or other persons\ + \ working for the Receiving Party who have not had access to the Confidential Information\ + \ of the Disclosing Party, as proven by the written records of the Receiving Party or by\ + \ persons who have not had access to the Confidential Information of the Disclosing Party\ + \ as proven by the written records of the Receiving Party; (d) is lawfully disclosed to\ + \ the Receiving Party without restrictions, by a third party not under an obligation of\ + \ confidentiality; or (e) the Receiving Party is legally compelled to disclose the information,\ + \ in which case the Receiving Party shall assert the privileged and confidential nature\ + \ of the information and cooperate fully with the Disclosing Party to protect against and\ + \ prevent disclosure of any Confidential Information and to limit the scope of disclosure\ + \ and the dissemination of disclosed Confidential Information by all legally available means.\n\ + The obligations of the Receiving Party under this Section shall continue during the Supported\ + \ Term and for a period of five (5) years after expiration or termination of this Agreement.\ + \ To the extent that the terms of the Non-Disclosure Agreement between The Qt Company and\ + \ Licensee conflict with the terms of this Section 13, this Section 13 shall be controlling\ + \ over the terms of the Non-Disclosure Agreement.\n\n \n14. GENERAL PROVISIONS\n\n14.1 No\ + \ Assignment\nLicensee shall not be entitled to assign or transfer all or any of its rights,\ + \ benefits and obligations under this Agreement without the prior written consent of The\ + \ Qt Company, which shall not be unreasonably withheld. The Qt Company shall be entitled\ + \ to assign or transfer any of its rights, benefits or obligations under this Agreement\ + \ on an unrestricted basis.\n\n14.2 Termination\nThe Qt Company may terminate the Agreement\ + \ at any time immediately upon written notice by The Qt Company to Licensee if Licensee\ + \ breaches this Agreement.\nEither party shall have the right to terminate this Agreement\ + \ immediately upon written notice in the event that the other party becomes insolvent, files\ + \ for any form of bankruptcy, makes any assignment for the benefit of creditors, has a receiver,\ + \ administrative receiver or officer appointed over the whole or a substantial part of its\ + \ assets, ceases to conduct business, or an act equivalent to any of the above occurs under\ + \ the laws of the jurisdiction of the other party.\nUpon termination of the Licenses, Licensee\ + \ shall cease using the Licensed Software and return to The Qt Company all copies of Licensed\ + \ Software that were supplied by The Qt Company. All other copies of Licensed Software in\ + \ the possession or control of Licensee must be erased or destroyed. An officer of Licensee\ + \ must promptly deliver to The Qt Company a written confirmation that this has occurred.\n\ + \n14.3 Surviving Sections\nAny terms and conditions that by their nature or otherwise reasonably\ + \ should survive a cancellation or termination of this Agreement shall also be deemed to\ + \ survive. Such surviving terms and conditions include, but are not limited to the Section\ + \ 13.\n\n14.4 Entire Agreement\nThis Agreement constitutes the complete agreement between\ + \ the parties and supersedes all prior or contemporaneous discussions, representations,\ + \ and proposals, written or oral, with respect to the subject matters discussed herein,\ + \ with the exception of the non-disclosure agreement executed by the parties in connection\ + \ with this Agreement (\"Non-Disclosure Agreement\"), if any, shall be subject to Section\ + \ 13. No modification of this Agreement shall be effective unless contained in a writing\ + \ executed by an authorized representative of each party. No term or condition contained\ + \ in Licensee’s purchase order shall apply unless expressly accepted by The Qt Company in\ + \ writing. If any provision of the Agreement is found void or unenforceable, the remainder\ + \ shall remain valid and enforceable according to its terms. If any remedy provided is determined\ + \ to have failed for its essential purpose, all limitations of liability and exclusions\ + \ of damages set forth in this Agreement shall remain in effect.\n\n14.5 Payment and Taxes\n\ + If credit has been extended to Licensee by The Qt Company, all payments under this Agreement\ + \ are due within thirty (30) days of the date The Qt Company mails its invoice to Licensee.\ + \ If The Qt Company has not extended credit to Licensee, Licensee shall be required to make\ + \ payment concurrent with the delivery of the Licensed Software by The Qt Company. All amounts\ + \ payable are gross amounts but exclusive of any value added tax, use tax, sales tax or\ + \ similar tax. Licensee shall be entitled to withhold from payments any applicable withholding\ + \ taxes and comply with all applicable tax and employment legislation. Each party shall\ + \ pay all taxes (including, but not limited to, taxes based upon its income) or levies imposed\ + \ on it under applicable laws, regulations and tax treaties as a result of this Agreement\ + \ and any payments made hereunder (including those required to be withheld or deducted from\ + \ payments). Each party shall furnish evidence of such paid taxes as is sufficient to enable\ + \ the other party to obtain any credits available to it, including original withholding\ + \ tax certificates.\n\nAs for the Limited Subscription License, the fees under this Agreement\ + \ applicable for the Licensee, as further stated in www.qt.io, are subject to Licensee´s\ + \ annual sales revenue being smaller than one hundred thousand (<100,000) USD. In case the\ + \ Licensee´s annual sales revenue would increase up to one hundred thousand (100,000) USD\ + \ or more, (i) the Licensee shall inform The Qt Company without undue delay in written form\ + \ of such increase, and (ii) The Qt Company shall reserve the right to change applicable\ + \ pricing for The Licensee, depending on The Qt Company´s then current pricing, as further\ + \ stated in www.qt.io. The Licensee shall have the obligation, upon reasonable prior request\ + \ by The Qt Company, to prove that its annual sales revenue is smaller than one hundred\ + \ thousand (<100,000) USD in order for the Licensee to be entitled to continue using the\ + \ Limited Subscription License.\n\n14.6 Force Majeure\nNeither party shall be liable to\ + \ the other for any delay or non-performance of its obligations hereunder other than the\ + \ obligation of paying the license fees in the event and to the extent that such delay or\ + \ non-performance is due to an event of Force Majeure (as defined below). If any event of\ + \ Force Majeure results in a delay or non-performance of a party for a period of three (3)\ + \ months or longer, then either party shall have the right to terminate this Agreement with\ + \ immediate effect without any liability (except for the obligations of payment arising\ + \ prior to the event of Force Majeure) towards the other party. A \"Force Majeure\" event\ + \ shall mean an act of God, terrorist attack or other catastrophic event of nature that\ + \ prevents either party for fulfilling its obligations under this Agreement.\n\n14.7 Notices\n\ + Any notice given by one party to the other shall be deemed properly given and deemed received\ + \ if specifically acknowledged by the receiving party in writing or when successfully delivered\ + \ to the recipient by hand, fax, or special courier during normal business hours on a business\ + \ day to the addresses specified below. Each communication and document made or delivered\ + \ by one party to the other party pursuant to this Agreement shall be in the English language\ + \ or accompanied by a translation thereof.\nNotices to The Qt Company shall be given to:\n\ + The Qt Company Ltd\nAttn: Legal\nValimotie 21\nFI-00380 Helsinki\nFinland\nFax: +358 10\ + \ 313 3700\n\n14.8 Export Control\nLicensee acknowledges that the Licensed Software may\ + \ be subject to export control restrictions of various countries. Licensee shall fully comply\ + \ with all applicable export license restrictions and requirements as well as with all laws\ + \ and regulations relating to the importation of the Licensed Software and/or Modified Software\ + \ and/or Applications and shall procure all necessary governmental authorizations, including\ + \ without limitation, all necessary licenses, approvals, permissions or consents, where\ + \ necessary for the re-exportation of the Licensed Software, Modified Software or Applications.\n\ + \n14.9 Personal Data\nFor the purposes of this Agreement, personal data shall include but\ + \ is not limited to: individual user´s name, email address, telephone number, profile, and\ + \ any other information from which the individual user can be identified (\"Personal Data\"\ + ). Upon signing of this Agreement, the Licensee explicitly gives its consent to the process\ + \ and transfer of any Personal Data relating to the Licensee or its Designated Users, for\ + \ the purposes stated below.\n\nThe Qt Company may pass Personal Data outside The Qt Company\ + \ group (1) if and to the extent a third party service provider has a strict need-to-know\ + \ basis for such Personal Data to be able to provide its services to The Qt Company, or\ + \ (2) in order to comply with the law or requests of governmental entities. Given the global\ + \ nature of The Qt Company´s business, processing information for such purposes may involve\ + \ a cross-border transfer of Personal Data. In addition, The Qt Company may collect individual\ + \ user´s IP address and browser cookies about the use of services or tools relating to Licensed\ + \ Software, and visits to The Qt Company´s web pages.\n\nIn processing and transferring\ + \ Personal Data The Qt Company shall comply with all applicable European or foreign data\ + \ protection laws as effective from time to time.\n\n14.10 Governing Law and Legal Venue\n\ + This Agreement shall be construed and interpreted in accordance with the laws of Finland,\ + \ excluding its choice of law provisions. Any disputes, controversy or claim arising out\ + \ of or relating to this Agreement, or the breach, termination or validity thereof shall\ + \ be shall be finally settled by arbitration in accordance with the Arbitration Rules of\ + \ the Finland Chamber of Commerce. The arbitration tribunal shall consist of one (1), or\ + \ if either Party so requires, of three (3), arbitrators. The award shall be final and binding\ + \ and enforceable in any court of competent jurisdiction. The arbitration shall be held\ + \ in Helsinki, Finland and the process shall be conducted in the English language.\n\n14.11\ + \ No Implied License\nThere are no implied licenses or other implied rights granted under\ + \ this Agreement, and all rights, save for those expressly granted hereunder, shall remain\ + \ with The Qt Company and its licensors. In addition, no licenses or immunities are granted\ + \ to the combination of the Licensed Software and/or Modified Software, as applicable, with\ + \ any other software or hardware not delivered by The Qt Company under this Agreement.\n\ + \n \nAppendix 1\n\n1. Parts of the Licensed Software that are permitted for distribution\ + \ (\"Redistributables\")\n– The Licensed Software’s essential and add-on libraries that\ + \ have been included in an officially released version of the Licensed Software, in object\ + \ code form\n– The Licensed Software’s configuration tool (\"qtconfig\")\n– The Licensed\ + \ Software’s help tool in object code/executable form (\"Qt Assistant\")\n– The Licensed\ + \ Software’s internationalization tools in object code/executable form (\"Qt Linguist\"\ + , \"lupdate\", \"lrelease\")\n– The Licensed Software’s designer tool (\"Qt Designer\")\n\ + – The Licensed Software’s IDE tool (\"Qt Creator\"), excluding any parts or plug-ins which\ + \ are delivered to Licensee only in object code\n– The Licensed Software’s QML (\"Qt Quick\"\ + ) launcher tool (\"qmlscene\" and \"qmlviewer\") in object code/executable form\n– The Licensed\ + \ Software’s installer framework\n\n2. Parts of the Licensed Software that are not permitted\ + \ for distribution without a separate SDK distribution license agreement include, but are\ + \ not limited to\n– The Licensed Software’s source code and header files\n– The Licensed\ + \ Software’s documentation\n– The Licensed Software’s documentation generation tool (\"\ + qdoc\")\n– The Licensed Software’s tool for writing makefiles (\"qmake\")\n– The Licensed\ + \ Software’s Meta Object Compiler (\"moc\")\n– The Licensed Software’s User Interface Compiler\ + \ (\"uic\" or in the case of Qt Jambi: \"juic\")\n– The Licensed Software’s Resource Compiler\ + \ (\"rcc\")\n– The Licensed Software’s generator (only in the case of Qt Jambi if applicable)\n\ + – The Licensed Software’s parts of the IDE tool (\"Qt Creator\") that are delivered to Licensee\ + \ only in object code\n– The Licensed Software’s Emulator" json: qt-commercial-1.1.json - yml: qt-commercial-1.1.yml + yaml: qt-commercial-1.1.yml html: qt-commercial-1.1.html - text: qt-commercial-1.1.LICENSE + license: qt-commercial-1.1.LICENSE +- license_key: qt-commercial-agreement-4.4.1 + category: Commercial + spdx_license_key: LicenseRef-scancode-qt-commercial-agreement-4.4.1 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: "Qt LICENSE AGREEMENT \n\nAgreement version 4.4.1 \n\nThis Qt License Agreement (“Agreement”)\ + \ is a legal agreement for the licensing of Licensed Software (as defined below) between\ + \ The Qt Company (as defined below) and the Licensee who has accepted the terms of this\ + \ Agreement by signing this Agreement or by downloading or using the Licensed Software or\ + \ in any other appropriate means. \n\nCapitalized terms used herein are defined in Section\ + \ 1. \n\nWHEREAS: \n\n Licensee wishes to use the Licensed Software for the purpose of\ + \ developing and distributing Applications and/or Devices (each as defined below); \n \ + \ The Qt Company is willing to grant the Licensee a right to use Licensed Software for\ + \ such a purpose pursuant to term and conditions of this Agreement; and \n Parties wish\ + \ to enable that their respective Affiliates also can sell and purchase licenses to serve\ + \ Licensee Affiliates’ needs to use Licensed Software pursuant to terms of the Agreement.\ + \ Any such license purchases by Licensee Affiliates from The Qt Company or its Affiliates\ + \ will create contractual relationship directly between the relevant The Qt Company and\ + \ the respective ordering Licensee Affiliate (“Acceding Agreement”). Accordingly, Licensee\ + \ shall not be a party to any such Acceding Agreement, and no rights or obligations are\ + \ created to the Licensee thereunder but all rights and obligations under such Acceding\ + \ Agreement are vested and borne solely by the ordering Licensee Affiliate and the relevant\ + \ The Qt Company as a contracting parties under such Acceding Agreement. \n\nNOW, THEREFORE,\ + \ THE PARTIES HEREBY AGREE AS FOLLOWS: \n\n1. DEFINITIONS\n\n“Affiliate” of a Party shall\ + \ mean an entity (i) which is directly or indirectly controlling such Party; (ii) which\ + \ is under the same direct or indirect ownership or control as such Party; or (iii) which\ + \ is directly or indirectly owned or controlled by such Party. For these purposes, an entity\ + \ shall be treated as being controlled by another if that other entity has fifty percent\ + \ (50 %) or more of the votes in such entity, is able to direct its affairs and/or to control\ + \ the composition of its board of directors or equivalent body. \n\n“Add-on Products” shall\ + \ mean The Qt Company’s specific add-on software products which are not licensed as part\ + \ of The Qt Company’s standard product offering, but shall be included into the scope of\ + \ Licensed Software only if so specifically agreed between the Parties. \n\n“Agreement Term”\ + \ shall mean the validity period of this Agreement, as set forth in Section 12. \n\n“Applications”\ + \ shall mean software products created using the Licensed Software, which include the Redistributables,\ + \ or part thereof. \n\n“Contractor(s)” shall mean third party consultants, distributors\ + \ and contractors performing services to the Licensee under applicable contractual arrangement.\ + \ \n\n“Customer(s)” shall mean Licensee’s customers to whom Licensee, directly or indirectly,\ + \ distributes copies of the Redistributables as integrated or incorporated into Applications\ + \ or Devices. \n\n“Data Protection Legislation” shall mean the General Data Protection Regulation\ + \ (EU 2016/679) (GDPR) and any national implementing laws, regulations and secondary legislation,\ + \ as may be amended or updated from time to time, as well as any other data protection laws\ + \ or regulations applicable in relevant territory. \n\n“Deployment Platforms” shall mean\ + \ target operating systems and/or hardware specified in the License Certificate, on which\ + \ the Redistributables can be distributed pursuant to the terms and conditions of this Agreement.\ + \ \n\n“Designated User(s)” shall mean the employee(s) of Licensee or Licensee’s Affiliates\ + \ acting within the scope of their employment or Licensee's Contractors acting within the\ + \ scope of their services on behalf of Licensee. \n\n“Development License” shall mean the\ + \ license needed by the Licensee for each Designated User to use the Licensed Software under\ + \ the license grant described in Section 3.1 of this Agreement. Development Licenses are\ + \ available per respective Licensed Software products, each product having its designated\ + \ scope and purpose of use. \n\n“Development License Term” shall mean the agreed validity\ + \ period of the Development License or QA Tools license during which time the relevant Licensed\ + \ Software product can be used pursuant to this Agreement. Agreed Development License Term,\ + \ as ordered and paid for by the Licensee, shall be memorialized in the applicable License\ + \ Certificate. \n\n“Development Platforms” shall mean those host operating systems specified\ + \ in the License Certificate, in which the Licensed Software can be used under the Development\ + \ License. \n\n“Devices” shall mean\n\n hardware devices or products that\n are\ + \ manufactured and/or distributed by the Licensee, its Affiliates, Contractors or Customers,\ + \ and\n incorporate, integrate or link to Applications such that substantial functionality\ + \ of such unit, when used by an End User, is provided by Application(s) or otherwise depends\ + \ on the Licensed Software, regardless of whether the Application is developed by Licensee\ + \ or its Contractors; or\n Applications designed for the hardware devices specified in\ + \ item (1).\n\nDevices covered by this Agreement shall be specified in Appendix 2 or in\ + \ a quote. \n\n“Distribution License(s)” shall mean a royalty-bearing license required for\ + \ any kind of sale, trade, exchange, loan, lease, rental or other distribution by or on\ + \ behalf of Licensee to a third party of Redistributables in connection with Devices pursuant\ + \ to license grant described in Section 3.3 of this Agreement. Distribution Licensed are\ + \ sold separately for each type of Device respectively and cannot be used for any type of\ + \ Devices at Licensee’s discretion. \n\n“Distribution License Packs” shall mean set of\ + \ prepaid Distribution Licenses for distribution of Redistributables, as defined in The\ + \ Qt Company’s standard price list, quote, Purchase Order confirmation or in an Appendix\ + \ 2 hereto, as the case may be. \n\n“End User” shall mean the final end user of the Application\ + \ or a Device. \n\n“Evaluation License Term” shall mean a time period specified in the License\ + \ Certificate for the Licensee to use the relevant Licensed Software for evaluation purposes\ + \ according to Section 3.6 herein. \n\n“Intellectual Property Rights” shall mean patents\ + \ (including utility models), design patents, and designs (whether or not capable of registration),\ + \ chip topography rights and other like protection, copyrights, trademarks, service marks,\ + \ trade names, logos or other words or symbols and any other form of statutory protection\ + \ of any kind and applications for any of the foregoing as well as any trade secrets. \n\ + \n“License Certificate” shall mean a certificate generated by The Qt Company for each Designated\ + \ User respectively upon them downloading the Licensed Software, which will be available\ + \ under respective Designated User’s Qt Account at account.qt.io. License Certificates will\ + \ specify relevant information pertaining the Licensed Software purchased by Licensee and\ + \ Designated User’s license to the Licensed Software. \n\n“License Fee” shall mean the\ + \ fee charged to the Licensee for rights granted under the terms of this Agreement. \n\n\ + “Licensed Software” shall mean specified product of commercially licensed version of Qt\ + \ Software and/or QA Tools defined in Appendix 1 and/or Appendix 3, which Licensee has purchased\ + \ and which is provided to Licensee under the terms of this Agreement. Licensed Software\ + \ shall include corresponding online or electronic documentation, associated media and printed\ + \ materials, including the source code (where applicable), example programs and the documentation.\ + \ Licensed Software does not include Third Party Software (as defined in Section 4) or Open\ + \ Source Qt. The Qt Company may, in the course of its development activities, at its free\ + \ and absolute discretion and without any obligation to send or publish any notifications\ + \ to the Licensee or in general, make changes, additions or deletions in the components\ + \ and functionalities of the Licensed Software, provided that no such changes, additions\ + \ or deletions will affect the already released version of the Licensed Software, but only\ + \ upcoming version(s). \n\n“Licensee” shall mean the individual or legal entity that is\ + \ party to this Agreement. \n\n“Licensee’s Records” shall mean books and records that contain\ + \ information bearing on Licensee’s compliance with this Agreement, Licensee’s use of Open\ + \ Source Qt and/or the payments due to The Qt Company under this Agreement, including, but\ + \ not limited to user information, assembly logs, sales records and distribution records.\ + \ \n\n“Modified Software” shall have the meaning as set forth in Section 2.3. \n\n“Online\ + \ Services” shall mean any services or access to systems made available by The Qt Company\ + \ to the Licensee over the Internet relating to the Licensed Software or for the purpose\ + \ of use by the Licensee of the Licensed Software or Support. Use of any such Online Services\ + \ is discretionary for the Licensee and some of them may be subject to additional fees.\ + \ \n\n“Open Source Qt” shall mean Qt Software available under the terms of the GNU Lesser\ + \ General Public License, version 2.1 or later (“LGPL”) or the GNU General Public License,\ + \ version 2.0 or later (“GPL”). For clarity, Open Source Qt shall not be provided, governed\ + \ or used under this Agreement. \n\n”Party” or “Parties” shall mean Licensee and/or The\ + \ Qt Company. \n\n“Permitted Software” shall mean (i) third party open source software products\ + \ that are generally available for public in source code form and free of any charge under\ + \ any of the licenses approved by Open Source Initiative as listed on https://opensource.org/licenses,\ + \ which may include parts of Open Source Qt or be developed using Open Source Qt; and (ii)\ + \ software The Qt Company has made available via its Qt Marketplace online distribution\ + \ channel. \n\n“Pre-Release Code” shall have the meaning as set forth in Section 4. \n\n\ + “Prohibited Combination” shall mean any effort to use, combine, incorporate, link or integrate\ + \ Licensed Software with any software created with or incorporating Open Source Qt, or use\ + \ Licensed Software for creation of any such software. \n\n“Purchase Order” shall have the\ + \ meaning as set forth in Section 10.2. \n\n\"QA Tools” shall mean software libraries and\ + \ tools as defined in Appendix 1 depending on which product(s) the Licensee has purchased\ + \ under the Agreement. \n\n“Qt Software” shall mean the software libraries and tools of\ + \ The Qt Company, which The Qt Company makes available under commercial and/or open source\ + \ licenses. \n\n“Redistributables\" shall mean the portions of the Licensed Software set\ + \ forth in Appendix 1 that may be distributed pursuant to the terms of this Agreement in\ + \ object code form only, including any relevant documentation. Where relevant, any reference\ + \ to Licensed Software in this Agreement shall include and refer also to Redistributables.\ + \ \n\n“Renewal Term” shall mean an extension of previous Development License Term as agreed\ + \ between the Parties. \n\n“Submitted Modified Software” shall have the meaning as set forth\ + \ in Section 2.3. \n\n“Support” shall mean standard developer support that is provided by\ + \ The Qt Company to assist Designated Users in using the Licensed Software in accordance\ + \ with this Agreement and the Support Terms. \n\n“Support Terms” shall mean The Qt Company’s\ + \ standard support terms specified in Appendix 9 hereto. \n\n“Taxes” shall have the meaning\ + \ set forth in Section 10.5. \n\n“The Qt Company” shall mean: \n\n in the event Licensee\ + \ is an individual residing in the United States or a legal entity incorporated in the United\ + \ States or having its headquarters in the United States, The Qt Company Inc., a Delaware\ + \ corporation with its office at 3031 Tisch Way, 110 Plazbertela West, San Jose, CA 95128,\ + \ USA.; or \n in the event the Licensee is an individual residing outside of the United\ + \ States or a legal entity incorporated outside of the United States or having its registered\ + \ office outside of the United States, The Qt Company Ltd., a Finnish company with its registered\ + \ office at Miestentie 7, 02150 Espoo, Finland. \n\n\"Third-Party Software\" shall have\ + \ the meaning set forth in Section 4. \n\n“Updates” shall mean a release or version of the\ + \ Licensed Software containing bug fixes, error corrections and other changes that are generally\ + \ made available to users of the Licensed Software that have contracted for Support. Updates\ + \ are generally depicted as a change to the digits following the decimal in the Licensed\ + \ Software version number. The Qt Company shall make Updates available to the Licensee under\ + \ the Support. Updates shall be considered as part of the Licensed Software hereunder. \n\ + \n“Upgrades” shall mean a release or version of the Licensed Software containing enhancements\ + \ and new features and are generally depicted as a change to the first digit of the Licensed\ + \ Software version number. In the event Upgrades are provided to the Licensee under this\ + \ Agreement, they shall be considered as part of the Licensed Software hereunder. \n\n2.\ + \ OWNERSHIP\n\n2.1. Ownership of The Qt Company\n\nThe Licensed Software is protected by\ + \ copyright laws and international copyright treaties, as well as other intellectual property\ + \ laws and treaties. The Licensed Software is licensed, not sold. \n\nAll of The Qt Company's\ + \ Intellectual Property Rights are and shall remain the exclusive property of The Qt Company\ + \ or its licensors respectively. No rights to The Qt Company’s Intellectual Property Rights\ + \ are assigned or granted to Licensee under this Agreement, except when and to the extent\ + \ expressly specified herein. \n\n2.2. Ownership of Licensee\n\nAll the Licensee’s Intellectual\ + \ Property Rights are and shall remain the exclusive property of the Licensee or its licensors\ + \ respectively. \n\nAll Intellectual Property Rights to the Modified Software, Applications\ + \ and Devices shall remain with the Licensee and no rights thereto shall be granted by the\ + \ Licensee to The Qt Company under this Agreement (except as set forth in Section 2.3 below).\ + \ \n\n2.3. Modified Software \n\nLicensee may create bug-fixes, error corrections, patches\ + \ or modifications to the Licensed Software (“Modified Software”). Such Modified Software\ + \ may break the source or binary compatibility with the Licensed Software (including without\ + \ limitation through changing the application programming interfaces (“API”) or by adding,\ + \ changing or deleting any variable, method, or class signature in the Licensed Software\ + \ and/or any inter-process protocols, services or standards in the Licensed Software libraries).\ + \ To the extent that Licensee’s Modified Software so breaks source or binary compatibility\ + \ with the Licensed Software, Licensee acknowledges that The Qt Company’s ability to provide\ + \ Support may be prevented or limited and Licensee’s ability to make use of Updates may\ + \ be restricted. \n\nLicensee may, at its sole and absolute discretion, choose to submit\ + \ Modified Software to The Qt Company (“Submitted Modified Software”) in connection with\ + \ Licensee’s Support request, service request or otherwise. In the event Licensee does so,\ + \ then, Licensee hereby grants The Qt Company a sublicensable, assignable, irrevocable,\ + \ perpetual, worldwide, non-exclusive, royalty-free and fully paid-up license, under all\ + \ of Licensee’s Intellectual Property Rights, to reproduce, adapt, translate, modify, and\ + \ prepare derivative works of, publicly display, publicly perform, sublicense, make available\ + \ and distribute such Submitted Modified Software as The Qt Company sees fit at its free\ + \ and absolute discretion. \n\n3. LICENSES GRANTED\n\n3.1. Development with Licensed Software\n\ + \nSubject to the terms of this Agreement, The Qt Company grants to Licensee a worldwide,\ + \ non-exclusive, non-transferable license, valid for each Development License Term, to use,\ + \ modify and copy the Licensed Software by Designated Users on the Development Platforms\ + \ for the sole purposes of designing, developing, demonstrating and testing Application(s)\ + \ and/or Devices, and to provide thereto related support and other related services to Customers.\ + \ Each Application and/or Device can only include, incorporate or integrate contributions\ + \ by such Designated Users who are duly licensed for the applicable Development Platform(s)\ + \ and Deployment Platform(s) (i.e have a valid license for the appropriate Licensed Software\ + \ product). \n\nLicensee may install copies of the Licensed Software on five (5) computers\ + \ per Designated User, provided that only the Designated Users who have a valid Development\ + \ License may use the Licensed Software. \n\nLicensee may at any time designate another\ + \ Designated User to replace a then-current Designated User by notifying The Qt Company\ + \ in writing, where such replacement is due to termination of employment, change of job\ + \ duties, long time absence or other such permanent reason affecting Designated User’s need\ + \ for Licensed Software. \n\nUpon expiry of the initially agreed Development License Term,\ + \ the respective Development License Term shall be automatically extended to one or more\ + \ Renewal Term(s), unless and until either Party notifies the other Party in writing, or\ + \ any other method acceptable to The Qt Company (it being specifically acknowledged and\ + \ understood that verbal notification is explicitly deemed inadequate in all circumstances),\ + \ that it does not wish to continue the Development License Term, such notification to be\ + \ provided to the other Party no less than thirty (30) days before expiry of the respective\ + \ Development License Term. The Qt Company shall, in good time before the due date for the\ + \ above notification, remind the Licensee on the coming Renewal Term. Unless otherwise agreed\ + \ between the Parties, Renewal Term shall be 12 months. \n\nAny such Renewal Term shall\ + \ be subject to License Fees agreed between the Parties or, if no advance agreement exists,\ + \ subject to The Qt Company’s standard list pricing applicable at the commencement date\ + \ of any such Renewal Term. \n\nThe Qt Company may either request the Licensee to place\ + \ a purchase order corresponding to a quote by The Qt Company, or use Licensee’s stored\ + \ Credit Card information in the Qt Account to automatically charge the Licensee for the\ + \ relevant Renewal Term. \n\n3.2. Distribution of Applications \n\nSubject to the terms\ + \ of this Agreement, The Qt Company grants to Licensee a worldwide, non-exclusive, non-transferable,\ + \ revocable (for cause pursuant to this Agreement), right and license, valid for the Agreement\ + \ Term, to \n\n distribute, by itself or through its Contractors, Redistributables as\ + \ installed, incorporated or integrated into Applications for execution on the Deployment\ + \ Platforms, and \n grant perpetual and irrevocable sublicenses to Redistributables,\ + \ as distributed hereunder, for Customers solely to the extent necessary in order for the\ + \ Customers to use the Applications for their respective intended purposes. \n\nRight to\ + \ distribute the Redistributables as part of an Application as provided herein is not royalty-bearing\ + \ but is conditional upon the Application having been created, updated and maintained under\ + \ a valid and duly paid Development Licenses. \n\n3.3. Distribution of Devices\n\nSubject\ + \ to the terms of this Agreement, The Qt Company grants to Licensee a worldwide, non-exclusive,\ + \ non-transferable, revocable (for cause pursuant to this Agreement), right and license,\ + \ valid for the Agreement Term, to \n\n distribute, by itself or through one or more\ + \ tiers of Contractors, Redistributables as installed, incorporated or integrated, or intended\ + \ to be installed, incorporated or integrated into Devices for execution on the Deployment\ + \ Platforms, and \n grant perpetual and irrevocable sublicenses to Redistributables,\ + \ as distributed hereunder, for Customers solely to the extent necessary in order for the\ + \ Customers to use the Devices for their respective intended purposes. \n\nRight to distribute\ + \ the Devices as provided herein is conditional upon (i) the Devices having been created,\ + \ updated and maintained under a valid and duly paid Development Licenses, and (ii) the\ + \ Licensee having acquired corresponding Distribution Licenses at the time of distribution\ + \ of any Devices to Customers. \n\n3.4. Further Requirements\n\nThe licenses granted above\ + \ in this Section 3 by The Qt Company to Licensee are conditional and subject to Licensee's\ + \ compliance with the following terms: \n\n Licensee acknowledges that The Qt Company\ + \ has separate products of Licensed Software for the purpose of Applications and Devices\ + \ respectively, where development and distribution of Devices is only allowed using the\ + \ correct designated product. Licensee shall make sure and bear the burden of proof that\ + \ Licensee is using a correct product of Licensed Software entitling Licensee to development\ + \ and distribution of Devices; \n Licensee shall not remove or alter any copyright,\ + \ trademark or other proprietary rights notice(s) contained in any portion of the Licensed\ + \ Software; \n Applications must add primary and substantial functionality to the Licensed\ + \ Software so as not to compete with the Licensed Software; \n Applications may not\ + \ pass on functionality which in any way makes it possible for others to create software\ + \ with the Licensed Software; provided however that Licensee may use the Licensed Software's\ + \ scripting and QML (\"Qt Quick\") functionality solely in order to enable scripting, themes\ + \ and styles that augment the functionality and appearance of the Application(s) without\ + \ adding primary and substantial functionality to the Application(s); \n Licensee shall\ + \ not use Licensed Software in any manner or for any purpose that infringes, misappropriates\ + \ or otherwise violates any Intellectual property or right of any third party, or that violates\ + \ any applicable law; \n Licensee shall not use The Qt Company's or any of its suppliers'\ + \ names, logos, or trademarks to market Applications, except that Licensee may use “Built\ + \ with Qt” logo to indicate that Application(s) or Device(s) was developed using the Licensed\ + \ Software; \n Licensee shall not distribute, sublicense or disclose source code of\ + \ Licensed Software to any third party (provided however that Licensee may appoint employee(s)\ + \ of Contractors and Affiliates as Designated Users to use Licensed Software pursuant to\ + \ this Agreement). Such right may be available for the Licensee subject to a separate software\ + \ development kit (“SDK”) license agreement to be concluded with The Qt Company; \n Licensee\ + \ shall not grant the Customers a right to (a) make copies of the Redistributables except\ + \ when and to the extent required to use the Applications and/or Devices for their intended\ + \ purpose, (b) modify the Redistributables or create derivative works thereof, (c) decompile,\ + \ disassemble or otherwise reverse engineer Redistributables, or (d) redistribute any copy\ + \ or portion of the Redistributables to any third party, except as part of the onward sale\ + \ of the Application or Device on which the Redistributables are installed; \n Licensee\ + \ shall not and shall cause that its Affiliates or Contractors shall not use Licensed Software\ + \ in any Prohibited Combination, unless Licensee has received an advance written permission\ + \ from The Qt Company to do so. Absent such written permission, any and all distribution\ + \ by the Licensee during the Agreement Term of a hardware device or product a) which incorporate\ + \ or integrate any part of Licensed Software or Open Source Qt; or b) where substantial\ + \ functionality is provided by software built with Licensed Software or Open Source Qt or\ + \ otherwise depends on the Licensed Software or Open Source Qt, shall be considered to be\ + \ Device distribution under this Agreement and shall be dependent on Licensee’s compliance\ + \ thereof (including but not limited to obligation to pay applicable License Fees for such\ + \ distribution). Notwithstanding what is provided above in this sub-section (ix), Licensee\ + \ is entitled to use and combine Licensed Software with any Permitted Software; \n Licensee\ + \ shall cause all of its Affiliates, Contractors and Customers entitled to make use of the\ + \ licenses granted under this Agreement, to be contractually bound to comply with the relevant\ + \ terms of this Agreement and not to use the Licensed Software beyond the terms hereof and\ + \ for any purposes other than operating within the scope of their services for Licensee.\ + \ Licensee shall be responsible for any and all actions and omissions of its Affiliates\ + \ and Contractors relating to the Licensed Software and use thereof (including but not limited\ + \ to payment of all applicable License Fees); \n Except when and to the extent explicitly\ + \ provided in this Section 3, Licensee shall not transfer, publish, disclose, display or\ + \ otherwise make available the Licensed Software; and \n Licensee shall not attempt or\ + \ enlist a third party to conduct or attempt to conduct any of the above. \n\nAbove terms\ + \ shall not be applicable if and to the extent they conflict with any mandatory provisions\ + \ of any applicable laws. \n\nAny use of Licensed Software beyond the provisions of this\ + \ Agreement is strictly prohibited and requires an additional license from The Qt Company.\ + \ \n\n3.5 QA Tools License \n\nSubject to the terms of this Agreement, The Qt Company grants\ + \ to Licensee a worldwide, non-exclusive, non-transferable license, valid for the Development\ + \ License Term, to use the QA Tools for Licensee's internal business purposes in the manner\ + \ provided below and in Appendix 1 hereto. \n\nLicensee may modify the QA Tools except for\ + \ altering or removing any details of ownership, copyright, trademark or other property\ + \ right connected with the QA Tools. \n\nLicensee shall not distribute the QA Tools or any\ + \ part thereof, modified or unmodified, separately or as part of any software package, Application\ + \ or Device. \n\nUpon expiry of the initially agreed Development License Term, the respective\ + \ Development License Term shall be automatically extended to one or more Renewal Term(s),\ + \ unless and until either Party notifies the other Party in writing, or any other method\ + \ acceptable to The Qt Company (it being specifically acknowledged and understood that verbal\ + \ notification is explicitly deemed inadequate in all circumstances), that it does not wish\ + \ to continue the Development License Term, such notification to be provided to the other\ + \ Party no less than thirty (30) days before expiry of the respective Development License\ + \ Term. The Qt Company shall, in good time before the due date for the above notification,\ + \ remind the Licensee on the coming Renewal Term. Unless otherwise agreed between the Parties,\ + \ Renewal Term shall be 12 months. \n\nAny such Renewal Term shall be subject to License\ + \ Fees agreed between the Parties or, if no advance agreement exists, subject to The Qt\ + \ Company’s standard list pricing applicable at the commencement date of any such Renewal\ + \ Term. \n\n3.6 Evaluation License \n\nSubject to the terms of this Agreement, The Qt Company\ + \ grants to Licensee a worldwide, non-exclusive, non-transferable license, valid for the\ + \ Evaluation License Term to use the Licensed Software solely for the Licensee’s internal\ + \ use to evaluate and determine whether the Licensed Software meets Licensee's business\ + \ requirements, specifically excluding any commercial use of the Licensed Software or any\ + \ derived work thereof. \n\nUpon the expiry of the Evaluation License Term, Licensee must\ + \ either discontinue use of the relevant Licensed Software or acquire a commercial Development\ + \ License or QA Tools License specified herein. \n\n4. THIRD-PARTY SOFTWARE\n\nThe Licensed\ + \ Software may provide links or access to third party libraries or code (collectively \"\ + Third-Party Software\") to implement various functions. Third-Party Software does not, however,\ + \ comprise part of the Licensed Software, but is provided to Licensee complimentary and\ + \ use thereof is discretionary for the Licensee. Third-Party Software will be listed in\ + \ the \".../src/3rdparty\" source tree delivered with the Licensed Software or documented\ + \ in the Licensed Software, as such may be amended from time to time. Licensee acknowledges\ + \ that use or distribution of Third-Party Software is in all respects subject to applicable\ + \ license terms of applicable third-party right holders. \n\n5. PRE-RELEASE CODE\n\nThe\ + \ Licensed Software may contain pre-release code and functionality, or sample code marked\ + \ or otherwise stated with appropriate designation such as “Technology Preview”, “Alpha”,\ + \ “Beta”, “Sample”, “Example” etc. (“Pre-Release Code”). \n\nSuch Pre-Release Code may\ + \ be present complimentary for the Licensee, in order to provide experimental support or\ + \ information for new platforms or preliminary versions of one or more new functionalities\ + \ or for other similar reasons. The Pre-Release Code may not be at the level of performance\ + \ and compatibility of a final, generally available, product offering. The Pre-Release\ + \ Code may not operate correctly, may contain errors and may be substantially modified by\ + \ The Qt Company prior to the first commercial product release, if any. The Qt Company is\ + \ under no obligation to make Pre-Release Code commercially available, or provide any Support\ + \ or Updates relating thereto. The Qt Company assumes no liability whatsoever regarding\ + \ any Pre-Release Code, but any use thereof is exclusively at Licensee’s own risk and expense.\ + \ \n\nFor clarity, unless Licensed Software specifies different license terms for the respective\ + \ Pre-Release Code, the Licensee is entitled to use such pre-release code pursuant to Section\ + \ 3, just like other Licensed Software. \n\n6. LIMITED WARRANTY AND WARRANTY DISCLAIMER\n\ + \nThe Qt Company hereby represents and warrants that (i) it has the power and authority\ + \ to grant the rights and licenses granted to Licensee under this Agreement, and (ii) Licensed\ + \ Software will operate materially in accordance with its specifications. \n\nExcept as\ + \ set forth above, the Licensed Software is licensed to Licensee \"as is\" and Licensee’s\ + \ exclusive remedy and The Qt Company’s entire liability for errors in the Licensed Software\ + \ shall be limited, at The Qt Company’s option, to correction of the error, replacement\ + \ of the Licensed Software or return of the applicable fees paid for the defective Licensed\ + \ Software for the time period during which the License is not able to utilize the Licensed\ + \ Software under the terms of this Agreement. \n\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE\ + \ LAW, THE QT COMPANY ON BEHALF OF ITSELF AND ITS LICENSORS, SUPPLIERS AND AFFILIATES, DISCLAIMS\ + \ ALL OTHER WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES\ + \ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT WITH\ + \ REGARD TO THE LICENSED SOFTWARE. THE QT COMPANY DOES NOT WARRANT THAT THE LICENSED SOFTWARE\ + \ WILL SATISFY LICENSEE’S REQUIREMENTS OR THAT IT WILL OPERATE WITHOUT DEFECT OR ERROR OR\ + \ THAT THE OPERATION THEREOF WILL BE UNINTERRUPTED. \n\n7. LIMITATION OF LIABILITY\n\nEXCEPT\ + \ FOR (I) CASES OF GROSS NEGLIGENCE OR INTENTIONAL MISCONDUCT, AND (II) BREACH OF CONFIDENTIALITY,\ + \ AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL EITHER PARTY BE LIABLE\ + \ TO THE OTHER PARTY FOR ANY LOSS OF PROFIT, LOSS OF DATA, LOSS OF BUSINESS OR GOODWILL\ + \ OR ANY OTHER INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE COST, DAMAGES OR\ + \ EXPENSE OF ANY KIND, HOWSOEVER ARISING UNDER OR IN CONNECTION WITH THIS AGREEMENT. \n\n\ + EXCEPT FOR (I) CASES OF GROSS NEGLIGENCE OR INTENTIONAL MISCONDUCT, AND (II) BREACH OF CONFIDENTIALITY,\ + \ AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL EITHER PARTY’S TOTAL\ + \ AGGREGATE LIABILITY UNDER THIS AGREEMENT EXCEED THE AGGREGATE LICENSE FEES PAID OR PAYABLE\ + \ TO THE QT COMPANY BY LICENSEE DURING THE DEVELOPMENT LICENSE TERM DURING WHICH THE EVENT\ + \ RESULTING IN SUCH LIABILITY OCCURRED. \n\nTHE PROVISIONS OF THIS SECTION 7 ALLOCATE THE\ + \ RISKS UNDER THIS AGREEMENT BETWEEN THE QT COMPANY AND LICENSEE AND THE PARTIES HAVE RELIED\ + \ UPON THE LIMITATIONS SET FORTH HEREIN IN DETERMINING WHETHER TO ENTER INTO THIS AGREEMENT.\ + \ \n\nNOTWITHSTANDING ANYTHING TO THE CONTRARY IN THIS AGREEMENT, LICENSEE SHALL ALWAYS\ + \ BE LIABLE TO PAY THE APPLICABLE LICENSE FEES CORRESPONDING TO ITS ACTUAL USE OF LICENSED\ + \ SOFTWARE. \n\n8. SUPPORT, UPDATES AND ONLINE SERVICES\n\nUpon due payment of the agreed\ + \ License Fees the Licensee will be eligible to receive Support and Updates and to use the\ + \ Online Services during the agreed Development License Term or other agreed fixed time\ + \ period. Support is provided according to agreed support level and subject to applicable\ + \ requirements and restrictions, as specified in the Support Terms. \n\nUnless otherwise\ + \ decided by The Qt Company at its free and absolute discretion, Upgrades will not be included\ + \ in the Support but may be available subject to additional fees. \n\nFrom time to time\ + \ The Qt Company may change the Support Terms, provided that during the respective ongoing\ + \ Support period the level of Support may not be reduced without the consent of the Licensee.\ + \ \n\nUnless otherwise agreed, The Qt Company shall not be responsible for providing any\ + \ service or support to Customers. \n\n9. CONFIDENTIALITY\n\nEach Party acknowledges that\ + \ during the Agreement Term each Party may receive information about the other Party's business,\ + \ business methods, business plans, customers, business relations, technology, and other\ + \ information, including the terms of this Agreement, that is confidential and of great\ + \ value to the other Party, and the value of which would be significantly reduced if disclosed\ + \ to third parties (“Confidential Information”). Accordingly, when a Party (the “Receiving\ + \ Party”) receives Confidential Information from the other Party (the “Disclosing Party”),\ + \ the Receiving Party shall only disclose such information to employees and Contractors\ + \ on a need to know basis, and shall cause its employees and employees of its Affiliates\ + \ to: (i) maintain any and all Confidential Information in confidence; (ii) not disclose\ + \ the Confidential Information to a third party without the Disclosing Party's prior written\ + \ approval; and (iii) not, directly or indirectly, use the Confidential Information for\ + \ any purpose other than for exercising its rights and fulfilling its responsibilities pursuant\ + \ to this Agreement. Each Party shall take reasonable measures to protect the Confidential\ + \ Information of the other Party, which measures shall not be less than the measures taken\ + \ by such Party to protect its own confidential and proprietary information. \n\nObligation\ + \ of confidentiality shall not apply to information that (i) is or becomes generally known\ + \ to the public through no act or omission of the Receiving Party; (ii) was in the Receiving\ + \ Party's lawful possession prior to the disclosure hereunder and was not subject to limitations\ + \ on disclosure or use; (iii) is developed independently by employees or Contractors of\ + \ the Receiving Party or other persons working for the Receiving Party who have not had\ + \ access to the Confidential Information of the Disclosing Party, as proven by the written\ + \ records of the Receiving Party; (iv) is lawfully disclosed to the Receiving Party without\ + \ restrictions, by a third party not under an obligation of confidentiality; or (v) the\ + \ Receiving Party is legally compelled to disclose, in which case the Receiving Party shall\ + \ notify the Disclosing Party of such compelled disclosure and assert the privileged and\ + \ confidential nature of the information and cooperate fully with the Disclosing Party to\ + \ limit the scope of disclosure and the dissemination of disclosed Confidential Information\ + \ to the minimum extent necessary. \n\nThe obligations under this Section 9 shall continue\ + \ to remain in force for a period of five (5) years after the last disclosure, and, with\ + \ respect to trade secrets, for so long as such trade secrets are protected under applicable\ + \ trade secret laws. \n\n10. FEES, DELIVERY AND PAYMENT\n\n10.1. License Fees\n\nLicense\ + \ Fees are described in The Qt Company’s standard price list, quote or Purchase Order confirmation\ + \ or in an Appendix 2 hereto, as the case may be. \n\nUnless otherwise expressly provided\ + \ in this Agreement, the License Fees shall not be refunded or claimed as a credit in any\ + \ event or for any reason whatsoever. \n\n10.2. Ordering Licenses\n\nLicensee may purchase\ + \ Development Licenses, Distribution Licenses and QA Tools Licenses pursuant to agreed pricing\ + \ terms or, if no specific pricing terms have been agreed upon, at The Qt Company's standard\ + \ pricing terms applicable at the time of purchase. \n\nUnless expressly otherwise agreed,\ + \ any price or other term quoted to the Licensee or specified herein shall only be valid\ + \ for the thirty (30) days from the effective date of this Agreement, Appendix 2 or the\ + \ date of the quote, as applicable. \n\nLicensee shall submit all purchase orders for Development\ + \ Licenses and Distribution Licenses to The Qt Company by email or any other method acceptable\ + \ to The Qt Company (each such order is referred to herein as a “Purchase Order”) for confirmation,\ + \ whereupon the Purchase Order shall become binding between the Parties. \n\nLicensee acknowledges\ + \ and agrees that all Purchase Orders for Licensed Software the Licensee makes during the\ + \ Agreement Term shall be governed exclusively under the terms of this Agreement. \n\n10.3.\ + \ Distribution License Packs\n\nUnless otherwise agreed, Distribution Licenses shall be\ + \ purchased by way of Distribution License Packs. \n\nUpon due payment of the ordered Distribution\ + \ License Pack(s), the Licensee will have an account of Distribution Licenses available\ + \ for distributing the Redistributables in accordance with this Agreement. \n\nEach time\ + \ Licensee distributes a copy of Redistributables, then one Distribution License is used,\ + \ and Licensee’s account of available Distribution Licenses is decreased accordingly. \n\ + \nLicensee may distribute copies of the Redistributables so long as Licensee has Distribution\ + \ Licenses remaining on its account. \n\n10.4. Payment Terms\n\nLicense Fees and any other\ + \ charges under this Agreement shall be paid by Licensee no later than thirty (30) days\ + \ from the date of the applicable invoice from The Qt Company. \n\nThe Qt Company will\ + \ submit an invoice to Licensee after the date of this Agreement and/or after The Qt Company\ + \ receives a Purchase Order from Licensee. \n\nA late payment charge of the lower of (a)\ + \ one percent per month; or (b) the interest rate stipulated by applicable law, shall be\ + \ charged on any unpaid balances that remain past due and which have not been disputed by\ + \ the Licensee in good faith. \n\n10.5. Taxes\n\nAll License Fees and other charges payable\ + \ hereunder are gross amounts but exclusive of any value added tax, use tax, sales tax,\ + \ withholding tax and other taxes, duties or tariffs (“Taxes”) levied directly for the sale,\ + \ delivery or use of Licensed Software hereunder pursuant to any applicable law. Such applicable\ + \ Taxes shall be paid by Licensee to The Qt Company, or, where applicable, in lieu of payment\ + \ of such Taxes to The Qt Company, Licensee shall provide an exemption certificate to The\ + \ Qt Company and any applicable authority. \n\n11. RECORD-KEEPING AND REPORTING OBLIGATIONS;\ + \ AUDIT RIGHTS \n\n11.1. Licensee’s Record-keeping \n\nLicensee shall at all times during\ + \ the Agreement Term and for a period of two (2) years thereafter maintain Licensee’s Records\ + \ in an accurate and up-to-date form. Licensee’s Records shall be adequate to reasonably\ + \ enable The Qt Company to determine Licensee’s compliance with the provisions of this Agreement.\ + \ The records shall conform to general good accounting practices. \n\nLicensee shall,\ + \ within thirty (30) days from receiving The Qt Company’s request to that effect, deliver\ + \ to The Qt Company a report based on Licensee’s Records, such report to contain information,\ + \ in sufficient detail, on (i) number and identity of users working with Licensed Software\ + \ or Open Source Qt, (ii) copies of Redistributables distributed by Licensee during the\ + \ most recent calendar quarter and/or any other term specified by The Qt Company, , and\ + \ (iii) any other information pertaining to Licensee’s compliance with the terms of this\ + \ Agreement (like e.g. information on products and/or projects relating to use of Distribution\ + \ Licenses), as The Qt Company may reasonably require from time to time. \n\n11.2. The Qt\ + \ Company’s Audit Rights \n\nThe Qt Company or an independent auditor acting on behalf of\ + \ The Qt Company’s, may, upon at least thirty (30) days’ prior written notice and at its\ + \ expense, audit Licensee with respect to the Licensee’s use of the Licensed Software, but\ + \ not more frequently than once during each 6-month period. Such audit may be conducted\ + \ by mail, electronic means or through an in-person visit to Licensee’s place of business.\ + \ Any possible in-person audit shall be conducted during regular business hours at Licensee's\ + \ facilities and shall not unreasonably interfere with Licensee's business activities and\ + \ shall be limited in scope to verify Licensee’s compliance with the terms of this Agreement.\ + \ The Qt Company or the independent auditor acting on behalf of The Qt Company shall be\ + \ entitled to inspect Licensee’s Records and conduct necessary interviews of Licensee’s\ + \ relevant employees and Contractors. All such Licensee’s Records and use thereof shall\ + \ be subject to an obligation of confidentiality under this Agreement. \n\nIf an audit\ + \ reveals that Licensee is using the Licensed Software beyond scope of the licenses Licensee\ + \ has paid for, Licensee shall pay to The Qt Company any amounts owed for such unauthorized\ + \ use within 30 days from receipt of the corresponding invoice from The Qt Company. \n\ + \nIn addition, in the event the audit reveals a material violation of the terms of this\ + \ Agreement (without limitation, either (i) underpayment of more than 10 % of License Fees\ + \ or 10,000 euros (whichever is more) or (ii) distribution of products, which include or\ + \ result from Prohibited Combination, shall be deemed a material violation for purposes\ + \ of this section), then the Licensee shall pay The Qt Company's reasonable cost of conducting\ + \ such audit. \n\n12. TERM AND TERMINATION \n\n12.1. Agreement Term \n\nThis Agreement\ + \ shall enter into force upon due acceptance by both Parties and remain in force until terminated\ + \ pursuant to the terms of this Section 12 (“Agreement Term”). \n\n12.2. Termination for\ + \ breach and suspension of rights \n\nEither Party shall have the right to terminate this\ + \ Agreement upon thirty (30) days prior written notice if the other Party commits a material\ + \ breach of any obligation of this Agreement and fails to remedy such breach within such\ + \ notice period. \n\nInstead of termination, The Qt Company shall have the right to suspend\ + \ or withhold grants of all rights to the Licensed Software hereunder, including but not\ + \ limited to the Development Licenses, Distribution License, and Support, should Licensee\ + \ fail to make payment in timely fashion or otherwise violates or is reasonably suspected\ + \ to violate its obligations or terms of this Agreement, and where such violation or breach\ + \ is not cured within ten (10) business days following The Qt Company’s written notice thereof.\ + \ \n\n12.3. Termination for insolvency \n\nEither Party shall have the right to terminate\ + \ this Agreement immediately upon written notice in the event that the other Party becomes\ + \ insolvent, files for any form of bankruptcy, makes any assignment for the benefit of creditors,\ + \ has a receiver, administrative receiver or officer appointed over the whole or a substantial\ + \ part of its assets, ceases to conduct business, or an act equivalent to any of the above\ + \ occurs under the laws of the jurisdiction of the other Party. \n\n12.4. Parties´ Rights\ + \ and Duties upon Termination \n\nUpon expiry or termination of the Agreement, Licensee\ + \ shall cease and shall cause all Designated Users (including those of its Affiliates’ and\ + \ Contractors’) to cease using the Licensed Software under this Agreement. For clarity,\ + \ a Development License of a Designated User or a QA Tools License, and all rights relating\ + \ thereto, shall always terminate at the expiry of the respective Development License Term,\ + \ even if the Agreement continues to remain in force. \n\nUpon such termination the Licensee\ + \ shall destroy or return to The Qt Company all copies of the Licensed Software and all\ + \ related materials and will certify the same by Licensee’s duly authorized officer to The\ + \ Qt Company upon its request, provided however that Licensee may retain and exploit such\ + \ copies of the Licensed Software as it may reasonably require in providing continued support\ + \ to Customers. \n\nExcept when this Agreement is terminated by The Qt Company due to Licensee’s\ + \ material breach as set forth in Section 12.2, the Licensee may continue distribution of\ + \ Applications and Devices under the terms of this Agreement despite the termination of\ + \ this Agreement. In such event the terms hereof will continue to be applicable and govern\ + \ any such distribution of Applications and Devices beyond the expiry or termination of\ + \ this Agreement. In case of termination by The Qt Company due to Licensee’s material breach,\ + \ Licensee must cease any distribution of Applications and Devices at the date of termination\ + \ of this Agreement. \n\nExpiry or termination of this Agreement for any reason whatsoever\ + \ shall not relieve Licensee of its obligation to pay any License Fees accrued or payable\ + \ to The Qt Company prior to the effective date of termination, and Licensee pay to The\ + \ Qt Company all such fees within 30 days from the effective date of termination of this\ + \ Agreement. \n\nTermination of this Agreement shall not affect any rights of Customers\ + \ to continue use of Applications and Devices (and therein incorporated Redistributables).\ + \ \n\n12.5. Extension of Rights under Special Circumstances \n\nIn the event of The Qt Company\ + \ choosing not to renew the Development License(s) or QA Tools Licenses, as set forth in\ + \ Section 3.1 and 3.5 respectively, and where such decision of non-renewal is not due to\ + \ any ongoing breach or alleged breach (as reasonably determined by The Qt Company) by Licensee\ + \ of the terms of this Agreement or any applicable license terms of Open Source Qt, then\ + \ all valid and affected Development Licenses and QA Tools licenses possessed by the Licensee\ + \ at such date shall be extended to be valid in perpetuity under the terms of this Agreement\ + \ and Licensee is entitled to purchase additional licenses as set forth in Section 10.2.\ + \ \n\nIn the event The Qt Company is declared bankrupt under a final, non-cancellable decision\ + \ by relevant court of law, and this Agreement is not, at the date of expiry of the Development\ + \ License(s) or QA Tools Licenses, assigned to party, who has assumed The Qt Company’s position\ + \ as a legitimate licensor of Licensed Software under this Agreement, then all valid Development\ + \ Licenses and QA Tools Licenses possessed by the Licensee at such date of expiry, and which\ + \ the Licensee has not notified for expiry, shall be extended to be valid in perpetuity\ + \ under the terms of this Agreement. \n\nFor clarity, in case of an extension under this\ + \ Section 12.5, any such extension shall not apply to The Qt Company’s Support obligations,\ + \ but Support shall be provided only up until the end of the respective fixed Development\ + \ License Term regardless of the extension of relevant Development License or QA Tools License,\ + \ unless otherwise agreed between the Parties. \n\n13. GOVERNING LAW AND LEGAL VENUE \n\ + \nIn the event this Agreement is in the name of The Qt Company Inc., a Delaware Corporation,\ + \ then: \n\n this Agreement shall be construed and interpreted in accordance with the\ + \ laws of the State of California, USA, excluding its choice of law provisions; \n the\ + \ United Nations Convention on Contracts for the International Sale of Goods will not apply\ + \ to this Agreement; and \n any dispute, claim or controversy arising out of or relating\ + \ to this Agreement or the breach, termination, enforcement, interpretation or validity\ + \ thereof, including the determination of the scope or applicability of this Agreement to\ + \ arbitrate, shall be determined by arbitration in San Francisco, USA, before one arbitrator.\ + \ The arbitration shall be administered by JAMS pursuant to JAMS' Streamlined Arbitration\ + \ Rules and Procedures. Judgment on the Award may be entered in any court having jurisdiction.\ + \ This Section shall not preclude parties from seeking provisional remedies in aid of arbitration\ + \ from a court of appropriate jurisdiction. \n\nIn the event this Agreement is in the name\ + \ of The Qt Company Ltd., a Finnish Company, then: \n\n this Agreement shall be construed\ + \ and interpreted in accordance with the laws of Finland, excluding its choice of law provisions;\ + \ \n the United Nations Convention on Contracts for the International Sale of Goods\ + \ will not apply to this Agreement; and \n any disputes, controversy or claim arising\ + \ out of or relating to this Agreement, or the breach, termination or validity thereof shall\ + \ be finally settled by arbitration in accordance with the Arbitration Rules of International\ + \ Chamber of Commerce. The arbitration tribunal shall consist of one (1), or if either Party\ + \ so requires, of three (3), arbitrators. The award shall be final and binding and enforceable\ + \ in any court of competent jurisdiction. The arbitration shall be held in Helsinki, Finland\ + \ and the process shall be conducted in the English language. This Section shall not preclude\ + \ parties from seeking provisional remedies in aid of arbitration from a court of appropriate\ + \ jurisdiction. \n\n14. GENERAL PROVISIONS \n\n14.1. No Assignment \n\nExcept in the case\ + \ of a merger or sale of substantially all of its corporate assets, Licensee shall not be\ + \ entitled to assign or transfer all or any of its rights, benefits and obligations under\ + \ this Agreement without the prior written consent of The Qt Company, which shall not be\ + \ unreasonably withheld or delayed. The Qt Company shall be entitled to freely assign or\ + \ transfer any of its rights, benefits or obligations under this Agreement. \n\n14.2. No\ + \ Third-Party Representations \n\nLicensee shall make no representations or warranties concerning\ + \ the Licensed Software on behalf of The Qt Company. Any representation or warranty Licensee\ + \ makes or purports to make on The Qt Company’s behalf shall be void as to The Qt Company.\ + \ \n\n14.3. Surviving Sections \n\nAny terms and conditions that by their nature or otherwise\ + \ reasonably should survive termination of this Agreement shall so be deemed to survive.\ + \ Such sections include especially the following: 1, 2, 6, 7, 9, 11, 12.4, 13 and 14. \ + \ \n\n14.4. Entire Agreement \n\nThis Agreement, the Appendices hereto, the License Certificate\ + \ and any applicable quote and Purchase Order accepted by The Qt Company constitute the\ + \ complete agreement between the Parties and supersedes all prior or contemporaneous discussions,\ + \ representations, and proposals, written or oral, with respect to the subject matters discussed\ + \ herein. \n\nIn the event of any conflict or inconsistency between this Agreement and\ + \ any Purchase Order, the terms of this Agreement will prevail over the terms of the Purchase\ + \ Order with respect to such conflict or inconsistency. \n\nParties specifically acknowledge\ + \ and agree that this Agreement prevails over any click-to-accept or similar agreements\ + \ the Designated Users may need to accept online upon download of the Licensed Software,\ + \ as may be required by The Qt Company’s applicable processes relating to Licensed Software.\ + \ \n\n14.5. Modifications \n\nNo modification of this Agreement shall be effective unless\ + \ contained in a writing executed by an authorized representative of each Party. No term\ + \ or condition contained in Licensee's Purchase Order (“Deviating Terms”) shall apply unless\ + \ The Qt Company has expressly agreed such Deviating Terms in writing. Unless and to the\ + \ extent expressly agreed by The Qt Company, any such Deviating Terms shall be deemed void\ + \ and with no legal effect. For clarity, delivery of the Licensed Software following the\ + \ receipt of the Purchase Order including Deviating Terms shall not constitute acceptance\ + \ of such Deviating Terms. \n\n14.6. Force Majeure \n\nExcept for the payment obligations\ + \ hereunder, neither Party shall be liable to the other for any delay or non-performance\ + \ of its obligations hereunder in the event and to the extent that such delay or non-performance\ + \ is due to an event of act of God, terrorist attack or other similar unforeseeable catastrophic\ + \ event that prevents either Party for fulfilling its obligations under this Agreement and\ + \ which such Party cannot avoid or circumvent (“Force Majeure Event”). If the Force Majeure\ + \ Event results in a delay or non-performance of a Party for a period of three (3) months\ + \ or longer, then either Party shall have the right to terminate this Agreement with immediate\ + \ effect without any liability (except for the obligations of payment arising prior to the\ + \ event of Force Majeure) towards the other Party. \n\n14.7. Notices \n\nAny notice given\ + \ by one Party to the other shall be deemed properly given and deemed received if specifically\ + \ acknowledged by the receiving Party in writing or when successfully delivered to the recipient\ + \ by hand, fax, or special courier during normal business hours on a business day to the\ + \ addresses specified for each Party on the signature page. Each communication and document\ + \ made or delivered by one Party to the other Party pursuant to this Agreement shall be\ + \ in the English language. \n\n14.8. Export Control \n\nLicensee acknowledges that the Redistributables,\ + \ as incorporated in Applications or Devices, may be subject to export control restrictions\ + \ under the applicable laws of respective countries. Licensee shall fully comply with all\ + \ applicable export license restrictions and requirements as well as with all laws and regulations\ + \ relating to the Redistributables and exercise of licenses hereunder and shall procure\ + \ all necessary governmental authorizations, including without limitation, all necessary\ + \ licenses, approvals, permissions or consents, where necessary for the re-exportation of\ + \ the Redistributables, Applications and/or Devices. \n\n14.9. No Implied License \n\nThere\ + \ are no implied licenses or other implied rights granted under this Agreement, and all\ + \ rights, save for those expressly granted hereunder, shall remain with The Qt Company and\ + \ its licensors. In addition, no licenses or immunities are granted to the combination of\ + \ the Licensed Software with any other software or hardware not delivered by The Qt Company\ + \ under this Agreement. \n\n14.10. Attorney Fees \n\nThe prevailing Party in any action\ + \ to enforce this Agreement shall be entitled to recover its attorney’s fees and costs in\ + \ connection with such action, as to be ordered by the relevant dispute resolution body.\ + \ \n\n14.11. Privacy \n\nLicensee acknowledges and agrees that for the purpose of this\ + \ Agreement, The Qt Company may collect, use, transfer and disclose personal data pertaining\ + \ to Designated Users as well as any other employees and directors of the Licensee and its\ + \ Contractors relevant for carrying out the intent of this Agreement. Such personal data\ + \ will be primarily collected from the relevant individuals but may be collected also from\ + \ Licensee (e.g. in the course of Licensee’s reporting obligations). The Parties acknowledge\ + \ that as The Qt Company determines the purpose and means for such collection and processing\ + \ of the applicable personal data, The Qt Company shall be regarded as the Data Controller\ + \ under the applicable Data Protection Legislation. The Qt Company shall process any such\ + \ personal data in accordance with its privacy and security policies and practices, which\ + \ will comply with all applicable requirements of the Data Protection Legislation. \n\n\ + 14.12. Severability \n\nIf any provision of this Agreement shall be adjudged by any court\ + \ of competent jurisdiction to be unenforceable or invalid, that provision shall be limited\ + \ or eliminated to the minimum extent necessary so that this Agreement shall otherwise remain\ + \ in full force and effect and enforceable. \n\n14.13. Marketing Rights \n\nParties have\ + \ agreed upon Marketing Rights pursuant to Appendix 7, if any." + json: qt-commercial-agreement-4.4.1.json + yaml: qt-commercial-agreement-4.4.1.yml + html: qt-commercial-agreement-4.4.1.html + license: qt-commercial-agreement-4.4.1.LICENSE - license_key: qt-company-exception-2017-lgpl-2.1 + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: yes is_deprecated: yes - category: Copyleft Limited + text: "As an additional permission to the GNU Lesser General Public License version\n2.1,\ + \ the object code form of a \"work that uses the Library\" may incorporate\nmaterial from\ + \ a header file that is part of the Library. You may distribute\nsuch object code under\ + \ terms of your choice, provided that:\n (i) the header files of the Library have not\ + \ been modified; and \n (ii) the incorporated material is limited to numerical parameters,\ + \ data\n structure layouts, accessors, macros, inline functions and\n \ + \ templates; and\n (iii) you comply with the terms of Section 6 of the GNU Lesser General\n\ + \ Public License version 2.1.\n\nMoreover, you may apply this exception to a modified\ + \ version of the Library,\nprovided that such modification does not involve copying material\ + \ from the\nLibrary into the modified Library's header files unless such material is\nlimited\ + \ to (i) numerical parameters; (ii) data structure layouts;\n(iii) accessors; and (iv) small\ + \ macros, templates and inline functions of\nfive lines or less in length.\n\nFurthermore,\ + \ you are not required to apply this additional permission to a\nmodified version of the\ + \ Library." json: qt-company-exception-2017-lgpl-2.1.json - yml: qt-company-exception-2017-lgpl-2.1.yml + yaml: qt-company-exception-2017-lgpl-2.1.yml html: qt-company-exception-2017-lgpl-2.1.html - text: qt-company-exception-2017-lgpl-2.1.LICENSE + license: qt-company-exception-2017-lgpl-2.1.LICENSE - license_key: qt-company-exception-lgpl-2.1 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-qt-company-exception-lgpl-2.1 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception to the GNU Lesser General Public License version 2.1, the + object code form of a "work that uses the Library" may incorporate material from + a header file that is part of the Library. You may distribute such object code + under terms of your choice, provided that the incorporated material (i) does not + exceed more than 5% of the total size of the Library; and (ii) is limited to + numerical parameters, data structure layouts, accessors, macros, inline + functions and templates. json: qt-company-exception-lgpl-2.1.json - yml: qt-company-exception-lgpl-2.1.yml + yaml: qt-company-exception-lgpl-2.1.yml html: qt-company-exception-lgpl-2.1.html - text: qt-company-exception-lgpl-2.1.LICENSE + license: qt-company-exception-lgpl-2.1.LICENSE - license_key: qt-gpl-exception-1.0 + category: Copyleft Limited spdx_license_key: Qt-GPL-exception-1.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + The Qt Company GPL Exception 1.0 + + Exception 1: + + As a special exception you may create a larger work which contains the + output of this application and distribute that work under terms of your + choice, so long as the work is not otherwise derived from or based on + this application and so long as the work does not in itself generate + output that contains the output from this application in its original + or modified form. + + Exception 2: + + As a special exception, you have permission to combine this application + with Plugins licensed under the terms of your choice, to produce an + executable, and to copy and distribute the resulting executable under + the terms of your choice. However, the executable must be accompanied + by a prominent notice offering all users of the executable the entire + source code to this application, excluding the source code of the + independent modules, but including any changes you have made to this + application, under the terms of this license. json: qt-gpl-exception-1.0.json - yml: qt-gpl-exception-1.0.yml + yaml: qt-gpl-exception-1.0.yml html: qt-gpl-exception-1.0.html - text: qt-gpl-exception-1.0.LICENSE + license: qt-gpl-exception-1.0.LICENSE - license_key: qt-kde-linking-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-qt-kde-linking-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, permission is given to link this program + with any edition of Qt, and distribute the resulting executable, + without including the source code for Qt in the source distribution. json: qt-kde-linking-exception.json - yml: qt-kde-linking-exception.yml + yaml: qt-kde-linking-exception.yml html: qt-kde-linking-exception.html - text: qt-kde-linking-exception.LICENSE + license: qt-kde-linking-exception.LICENSE - license_key: qt-lgpl-exception-1.1 + category: Copyleft Limited spdx_license_key: Qt-LGPL-exception-1.1 other_spdx_license_keys: - Nokia-Qt-exception-1.1 is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "The Qt Company Qt LGPL Exception version 1.1\n\nAs an additional permission to the\ + \ GNU Lesser General Public License version\n2.1, the object code form of a \"work that\ + \ uses the Library\" may incorporate\nmaterial from a header file that is part of the Library.\ + \ You may distribute\nsuch object code under terms of your choice, provided that:\n \ + \ (i) the header files of the Library have not been modified; and \n (ii) the incorporated\ + \ material is limited to numerical parameters, data\n structure layouts, accessors,\ + \ macros, inline functions and\n templates; and\n (iii) you comply with the\ + \ terms of Section 6 of the GNU Lesser General\n Public License version 2.1.\n\n\ + Moreover, you may apply this exception to a modified version of the Library,\nprovided that\ + \ such modification does not involve copying material from the\nLibrary into the modified\ + \ Library's header files unless such material is\nlimited to (i) numerical parameters; (ii)\ + \ data structure layouts;\n(iii) accessors; and (iv) small macros, templates and inline\ + \ functions of\nfive lines or less in length.\n\nFurthermore, you are not required to apply\ + \ this additional permission to a\nmodified version of the Library." json: qt-lgpl-exception-1.1.json - yml: qt-lgpl-exception-1.1.yml + yaml: qt-lgpl-exception-1.1.yml html: qt-lgpl-exception-1.1.html - text: qt-lgpl-exception-1.1.LICENSE + license: qt-lgpl-exception-1.1.LICENSE - license_key: qt-qca-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-qt-qca-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, the copyright holder(s) give permission to link + this program with the Qt Library (commercial or non-commercial edition), + and distribute the resulting executable, without including the source + code for the Qt library in the source distribution. + + As a special exception, the copyright holder(s) give permission to link + this program with any other library, and distribute the resulting + executable, without including the source code for the library in the + source distribution, provided that the library interfaces with this + program only via the following plugin interfaces: + + 1. The Qt Plugin APIs, only as authored by Trolltech + 2. The QCA Plugin API, only as authored by Justin Karneges json: qt-qca-exception-2.0.json - yml: qt-qca-exception-2.0.yml + yaml: qt-qca-exception-2.0.yml html: qt-qca-exception-2.0.html - text: qt-qca-exception-2.0.LICENSE + license: qt-qca-exception-2.0.LICENSE - license_key: qti-linux-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-qti-linux-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + PLEASE READ THIS LICENSE AGREEMENT ("AGREEMENT") CAREFULLY. THIS AGREEMENT IS + A BINDING LEGAL AGREEMENT ENTERED INTO BY AND BETWEEN YOU (OR IF YOU ARE + ENTERING INTO THIS AGREEMENT ON BEHALF OF AN ENTITY, THEN THE ENTITY THAT YOU + REPRESENT) AND QUALCOMM TECHNOLOGIES, INC. ("QTI" "WE" "OUR" OR "US"). THIS IS + THE AGREEMENT THAT APPLIES TO YOUR USE OF THE DESIGNATED AND/OR LINKED + APPLICATIONS, THE ENCLOSED QUALCOMM TECHNOLOGIES' MATERIALS, INCLUDING RELATED + DOCUMENTATION AND ANY UPDATES OR IMPROVEMENTS THEREOF + (COLLECTIVELY, "MATERIALS"). BY USING OR COMPLETING THE INSTALLATION OF THE + MATERIALS, YOU ARE ACCEPTING THIS AGREEMENT AND YOU AGREE TO BE BOUND BY ITS + TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO THESE TERMS, QTI IS UNWILLING TO + AND DOES NOT LICENSE THE MATERIALS TO YOU. IF YOU DO NOT AGREE TO THESE TERMS + YOU MUST DISCONTINUE THE INSTALLATION PROCESS AND YOU MAY NOT USE THE MATERIALS + OR RETAIN ANY COPIES OF THE MATERIALS. ANY USE OR POSSESSION OF THE MATERIALS + BY YOU IS SUBJECT TO THE TERMS AND CONDITIONS SET FORTH IN THIS AGREEMENT. + + 1. RIGHT TO USE DELIVERABLES; RESTRICTIONS. + + 1.1 License. Subject to the terms and conditions of this Agreement, + including, without limitation, the restrictions, conditions, limitations and + exclusions set forth in this Agreement, QTI hereby grants to you a + nonexclusive, limited license under QTI's copyrights to: (i) install and use + the Materials; and (ii) to reproduce and redistribute the binary code portions + of the Materials (the "Redistributable Binary Code"). You may make and use a + reasonable number of copies of any documentation. + + 1.2 Redistribution Restrictions. Distribution of the Redistributable Binary + Code is subject to the following restrictions: (i) Redistributable Binary Code + may only be distributed in binary format and may not be distributed in source + code format:; (ii) the Redistributable Binary Code may only operate in + conjunction with platforms incorporating Qualcomm Technologies, Inc. chipsets; + (iii) redistribution of the Redistributable Binary Code must include the .txt + file setting forth the terms and condition of this Agreement; (iv) you may not + use Qualcomm Technologies' or its affiliates or subsidiaries name, logo or + trademarks; and (v) copyright, trademark, patent and any other notices that + appear on the Materials may not be removed or obscured. + + 1.3 Additional Restrictions. Except as expressly permitted by this Agreement, + you shall have no right to sublicense, transfer or otherwise disclose the + Materials to any third party. You shall not reverse engineer, reverse + assemble, reverse translate, decompile or reduce to source code form any + portion of the Materials provided in object code form or executable form. + Except for the purposes expressly permitted in this Agreement, You shall not + use the Materials for any other purpose. QTI (or its licensors) shall retain + title and all ownership rights in and to the Materials and any alterations, + modifications (including all derivative works), translations or adaptations + made of the Materials, and all copies thereof, and nothing herein shall be + deemed to grant any right to You under any of QTI's or its affiliates' + patents. You shall not subject the Materials to any third party license + terms (e.g., open source license terms). You shall not use the Materials for + the purpose of identifying or providing evidence to support any potential + patent infringement claim against QTI, its affiliates, or any of QTI's or + QTI's affiliates' suppliers and/or direct or indirect customers. QTI hereby + reserves all rights not expressly granted herein. + + 1.4 Third Party Software and Materials. The Software may contain or link to + certain software and/or materials that are written or owned by third parties. + Such third party code and materials may be licensed under separate or + different terms and conditions and are not licensed to you under the terms of + this Agreement. You agree to comply with all terms and conditions imposed on + you in the applicable third party licenses. Such terms and conditions may + impose certain obligations on you as a condition to the permitted use of such + third party code and materials. QTI does not represent or warrant that such + third party licensors have or will continue to license or make available their + code and materials to you. + + 1.5 Feedback. QTI may from time to time receive suggestions, feedback or + other information from You regarding the Materials. Any suggestions, feedback + or other disclosures received from You are and shall be entirely voluntary on + the part of You. Notwithstanding any other term in this Agreement, QTI shall + be free to use suggestions, feedback or other information received from You, + without obligation of any kind to You. The Parties agree that all inventions, + product improvements, and modifications conceived of or made by QTI that are + based, either in whole or in part, on ideas, feedback, suggestions, or + recommended improvements received from You are the exclusive property of QTI, + and all right, title and interest in and to any such inventions, product + improvements, and modifications will vest solely in QTI. + + 1.6 No Technical Support. QTI is under no obligation to provide any form of + technical support for the Materials, and if QTI, in its sole discretion, + chooses to provide any form of support or information relating to the + Materials, such support and information shall be deemed confidential and + proprietary to QTI. + + 2. WARRANTY DISCLAIMER. YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT THE USE OF + THE MATERIALS IS AT YOUR SOLE RISK. THE MATERIALS AND TECHNICAL SUPPORT, IF + ANY, ARE PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND, WHETHER EXPRESS OR + IMPLIED. QTI ITS LICENSORS AND AFFILIATES MAKE NO WARRANTIES, EXPRESS OR + IMPLIED, WITH RESPECT TO THE MATERIALS OR ANY OTHER INFORMATION OR DOCUMENTATION + PROVIDED UNDER THIS AGREEMENT, INCLUDING BUT NOT LIMITED TO ANY WARRANTY OF + MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE OR AGAINST INFRINGEMENT, OR + ANY EXPRESS OR IMPLIED WARRANTY ARISING OUT OF TRADE USAGE OR OUT OF A COURSE OF + DEALING OR COURSE OF PERFORMANCE. NOTHING CONTAINED IN THIS AGREEMENT SHALL BE + CONSTRUED AS (I) A WARRANTY OR REPRESENTATION BY QTI, ITS LICENSORS OR + AFFILIATES AS TO THE VALIDITY OR SCOPE OF ANY PATENT, COPYRIGHT OR OTHER + INTELLECTUAL PROPERTY RIGHT OR (II) A WARRANTY OR REPRESENTATION BY QTI THAT ANY + MANUFACTURE OR USE WILL BE FREE FROM INFRINGEMENT OF PATENTS, COPYRIGHTS OR + OTHER INTELLECTUAL PROPERTY RIGHTS OF OTHERS, AND IT SHALL BE THE SOLE + RESPONSIBILITY OF YOU TO MAKE SUCH DETERMINATION AS IS NECESSARY WITH RESPECT TO + THE ACQUISITION OF LICENSES UNDER PATENTS AND OTHER INTELLECTUAL PROPERTY OF + THIRD PARTIES. + + 3. NO OTHER LICENSES OR INTELLECTUAL PROPERTY RIGHTS. Neither this Agreement, + nor any act by QTI or any of its affiliates pursuant to this Agreement or + relating to the Materials (including, without limitation, the provision by QTI + or its affiliates of the Materials), shall provide to You any license or any + other rights whatsoever under any patents, trademarks, trade secrets, copyrights + or any other intellectual property of QTI or any of its affiliates, except for + the copyright rights expressly licensed under this Agreement. You understand and + agree that: + + (i) Neither this Agreement, nor delivery of the Materials, grants any right to + practice, or any other right at all with respect to, any patent of QTI or any + of its affiliates; and + + (ii) A separate license agreement from QUALCOMM Incorporated is needed to use + or practice any patent of QUALCOMM Incorporated. You agree not to contend in + any context that, as a result of the provision or use of the Materials, either + QTI or any of its affiliates has any obligation to extend, or You or any other + party has obtained any right to, any license, whether express or implied, with + respect to any patent of QTI or any of its affiliates for any purpose. + + 4. TERMINATION. This Agreement shall be effective upon acceptance, or access or + use of the Materials (whichever occurs first) by You and shall continue until + terminated. You may terminate the Agreement at any time by deleting and + destroying all copies of the Materials and all related information in Your + possession or control. This Agreement terminates immediately and automatically, + with or without notice, if You fail to comply with any provision hereof. + Additionally, QTI may at any time terminate this Agreement, without cause, upon + notice to You. Upon termination You must, to the extent possible, delete or + destroy all copies of the Materials in Your possession and the license granted + to You in this Agreement shall terminate. Sections 1.2 through 10 shall survive + the termination of this Agreement. In the event that any restrictions, + conditions, limitations are found to be either invalid or unenforceable, the + rights granted to You in Section 1 (License) shall be null, void and ineffective + from the Effective Date, and QTI shall also have the right to terminate this + Agreement immediately, and with retroactive effect to the effective date. + + 5. LIMITATION OF LIABILITY. IN NO EVENT SHALL QTI, QTI's AFFILIATES OR ITS + LICENSORS BE LIABLE TO YOU FOR ANY INCIDENTAL, CONSEQUENTIAL OR SPECIAL DAMAGES, + INCLUDING BUT NOT LIMITED TO ANY LOST PROFITS, LOST SAVINGS, OR OTHER INCIDENTAL + DAMAGES, ARISING OUT OF THE USE OR INABILITY TO USE, OR THE DELIVERY OR FAILURE + TO DELIVER, ANY OF THE DELIVERABLES, OR ANY BREACH OF ANY OBLIGATION UNDER THIS + AGREEMENT, EVEN IF QTI HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + THE FOREGOING LIMITATION OF LIABILITY SHALL REMAIN IN FULL FORCE AND EFFECT + REGARDLESS OF WHETHER YOUR REMEDIES HEREUNDER ARE DETERMINED TO HAVE FAILED OF + THEIR ESSENTIAL PURPOSE. THE ENTIRE LIABILITY OF QTI, QTI's AFFILIATES AND ITS + LICENSORS, AND THE SOLE AND EXCLUSIVE REMEDY OF YOU, FOR ANY CLAIM OR CAUSE OF + ACTION ARISING HEREUNDER (WHETHER IN CONTRACT, TORT, OR OTHERWISE) SHALL NOT + EXCEED US$50. + + 6. INDEMNIFICATION. You agree to indemnify and hold harmless QTI and its + officers, directors, employees and successors and assigns against any and all + third party claims, demands, causes of action, losses, liabilities, damages, + costs and expenses, incurred by QTI (including but not limited to costs of + defense, investigation and reasonable attorney's fees) arising out of, resulting + from or related to: (i) any breach of this Agreement by You; and (ii) your acts, + omissions, products and services. If requested by QTI, You agree to defend QTI + in connection with any third party claims, demands, or causes of action + resulting from, arising out of or in connection with any of the foregoing. + + 7. ASSIGNMENT. You shall not assign this Agreement or any right or interest + under this Agreement, nor delegate any obligation to be performed under this + Agreement, without QTI's prior written consent. For purposes of this Section 7, + an "assignment" by You under this Section shall be deemed to include, without + limitation, any merger, consolidation, sale of all or substantially all of its + assets, or any substantial change in the management or control of You. + Any attempted assignment in contravention of this Section 9 shall be void. + QTI may freely assign this Agreement or delegate any or all of its rights and + obligations hereunder to any third party. + + 8. COMPLIANCE WITH LAWS; APPLICABLE LAW. You agree to comply with all + applicable local, international and national laws and regulations and with U.S. + Export Administration Regulations, as they apply to the subject matter of this + Agreement. This Agreement is governed by the laws of the State of California, + excluding California's choice of law rules. + + 9. CONTRACTING PARTIES. If the Materials are downloaded on any computer owned + by a corporation or other legal entity, then this Agreement is formed by and + between QTI and such entity. The individual accepting the terms of this + Agreement represents and warrants to QTI that they have the authority to bind + such entity to the terms and conditions of this Agreement. + + 10. MISCELLANEOUS PROVISIONS. This Agreement, together with all exhibits + attached hereto, which are incorporated herein by this reference, constitutes + the entire agreement between QTI and You and supersedes all prior negotiations, + representations and agreements between the parties with respect to the subject + matter hereof. No addition or modification of this Agreement shall be effective + unless made in writing and signed by the respective representatives of QTI and + You. The restrictions, limitations, exclusions and conditions set forth in this + Agreement shall apply even if QTI or any of its affiliates becomes aware of or + fails to act in a manner to address any violation or failure to comply + therewith. You hereby acknowledge and agree that the restrictions, limitations, + conditions and exclusions imposed in this Agreement on the rights granted in + this Agreement are not a derogation of the benefits of such rights. You further + acknowledges that, in the absence of such restrictions, limitations, conditions + and exclusions, QTI would not have entered into this Agreement with You. Each + party shall be responsible for and shall bear its own expenses in connection + with this Agreement. If any of the provisions of this Agreement are determined + to be invalid, illegal, or otherwise unenforceable, the remaining provisions + shall remain in full force and effect. This Agreement is entered into solely + in the English language, and if for any reason any other language version is + prepared by any party, it shall be solely for convenience and the English + version shall govern and control all aspects. If You are located in the + province of Quebec, Canada, the following applies: The Parties hereby confirm + they have requested this Agreement and all related documents be prepared + in English. json: qti-linux-firmware.json - yml: qti-linux-firmware.yml + yaml: qti-linux-firmware.yml html: qti-linux-firmware.html - text: qti-linux-firmware.LICENSE + license: qti-linux-firmware.LICENSE - license_key: qualcomm-iso + category: Free Restricted spdx_license_key: LicenseRef-scancode-qualcomm-iso other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + This software module was originally developed by Qualcomm, Inc. in + the course of development of the ISO/IEC MPEG-B DASH standard for + reference purposes and its performance may not have been optimized. + This software module is an implementation of one or more tools as + specified by the ISO/IEC MPEG-B DASH standard. + + ISO/IEC gives users free license to this software module or + modifications thereof for use in products claiming conformance to + audiovisual and image-coding related ITU Recommendations and/or ISO/IEC + International Standards. + + ISO/IEC gives users the same free license to this software module or + modifications thereof for research purposes and further ISO/IEC + standardisation. + + Those intending to use this software module in products are advised that + its use may infringe existing patents. ISO/IEC have no liability for use + of this software module or modifications thereof. Copyright is not + released for products that do not conform to audiovisual and + image-coding related ITU Recommendations and/or ISO/IEC International + Standards. + + Qualcomm, Inc. retains full right to modify and use the code for its own + purpose, assign or donate the code to a third party and to inhibit third + parties from using the code for products that do not conform to + audiovisual and image-coding related ITU Recommendations and/or ISO/IEC + International Standards. + + This copyright notice must be included in all copies or derivative + works. Copyright (c) ISO/IEC 2010. json: qualcomm-iso.json - yml: qualcomm-iso.yml + yaml: qualcomm-iso.yml html: qualcomm-iso.html - text: qualcomm-iso.LICENSE + license: qualcomm-iso.LICENSE - license_key: qualcomm-turing + category: Permissive spdx_license_key: LicenseRef-scancode-qualcomm-turing other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This software is free for commercial and non-commercial use subject to + the following conditions: + + 1. Copyright remains vested in QUALCOMM Incorporated, and Copyright + notices in the code are not to be removed. If this package is used in + a product, QUALCOMM should be given attribution as the author of the + Turing encryption algorithm. This can be in the form of a textual + message at program startup or in documentation (online or textual) + provided with the package. + + 2. 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 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. All advertising materials mentioning features or use of this + software must display the following acknowledgement: This product + includes software developed by QUALCOMM Incorporated. + + 3. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AND AGAINST + INFRINGEMENT 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. + + 4. The license and distribution terms for any publically available version + or derivative of this code cannot be changed, that is, this code cannot + simply be copied and put under another distribution license including + the GNU Public License. + + 5. The Turing family of encryption algorithms are covered by patents in + the United States of America and other countries. A free and + irrevocable license is hereby granted for the use of such patents to + the extent required to utilize the Turing family of encryption + algorithms for any purpose, subject to the condition that any + commercial product utilising any of the Turing family of encryption + algorithms should show the words "Encryption by QUALCOMM" either on the + product or in the associated documentation. json: qualcomm-turing.json - yml: qualcomm-turing.yml + yaml: qualcomm-turing.yml html: qualcomm-turing.html - text: qualcomm-turing.LICENSE + license: qualcomm-turing.LICENSE - license_key: quickfix-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-quickfix-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The QuickFIX Software License, Version 1.0 + + 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 end-user documentation included with the redistribution, + if any, must include the following acknowledgment: + "This product includes software developed by + quickfixengine.org (http://www.quickfixengine.org/)." + Alternately, this acknowledgment may appear in the software itself, + if and wherever such third-party acknowledgments normally appear. + + 4. The names "QuickFIX" and "quickfixengine.org" must + not be used to endorse or promote products derived from this + software without prior written permission. For written + permission, please contact ask@quickfixengine.org + + 5. Products derived from this software may not be called "QuickFIX", + nor may "QuickFIX" appear in their name, without prior written + permission of quickfixengine.org + + THIS SOFTWARE IS PROVIDED ``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 QUICKFIXENGINE.ORG 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. json: quickfix-1.0.json - yml: quickfix-1.0.yml + yaml: quickfix-1.0.yml html: quickfix-1.0.html - text: quickfix-1.0.LICENSE + license: quickfix-1.0.LICENSE - license_key: quicktime + category: Proprietary Free spdx_license_key: LicenseRef-scancode-quicktime other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Apple Computer, Inc. + Software License Agreement + For QuickTime + + + PLEASE READ THE TERMS OF THIS SOFTWARE LICENSE AGREEMENT ("LICENSE") WHICH IS EITHER ENCLOSED IN THE SOFTWARE PACKAGE AND/OR PRESENTED ELECTRONICALLY WHEN ACCESSING THE SOFTWARE. BY CLICKING THE "AGREE/ACCEPT" BUTTON, YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS LICENSE. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE, CLICK "DISAGREE/DECLINE" AND (IF APPLICABLE) RETURN THE APPLE SOFTWARE TO THE PLACE WHERE YOU OBTAINED IT FOR A REFUND. + + 1. General. + The software, documentation and any fonts accompanying this License whether on disk, in read only memory, on any other media or in any other form (collectively the "Apple Software") are licensed, not sold, to you by Apple Computer, Inc. ("Apple") for use only under the terms of this License, and Apple reserves all rights not expressly granted to you. The rights granted herein are limited to Apple's and its licensors' intellectual property rights in the Apple Software and do not include any other patents or intellectual property rights. You own the media on which the Apple Software is recorded but Apple and/or Apple's licensor(s) retain ownership of the Apple Software itself. The rights granted under the terms of this License include any software upgrades that replace and/or supplement the original Apple Software product, unless such upgrade contains a separate license. + + 2. Permitted License Uses and Restrictions. + This License allows you to install and use one copy of the Apple Software on a single computer at a time. This License does not allow the Apple Software to exist on more than one computer at a time, and you may not make the Apple Software available over a network where it could be used by multiple computers at the same time. You may make one copy of the Apple Software in machine-readable form for backup purposes only; provided that the backup copy must include all copyright or other proprietary notices contained on the original. Except as and only to the extent expressly permitted in this License or by applicable law, you may not copy, decompile, reverse engineer, disassemble, modify, or create derivative works of the Apple Software or any part thereof. THE APPLE SOFTWARE IS NOT INTENDED FOR USE IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL SYSTEMS, LIFE SUPPORT MACHINES OR OTHER EQUIPMENT IN WHICH THE FAILURE OF THE APPLE SOFTWARE COULD LEAD TO DEATH, PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE. + + 3. Transfer. + You may not rent, lease, lend or sublicense the Apple Software. You may, however, make a one-time permanent transfer of all of your license rights to the Apple Software to another party, provided that: (a) the transfer must include all of the Apple Software, including all its component parts, original media, printed materials and this License; (b) you do not retain any copies of the Apple Software, full or partial, including copies stored on a computer or other storage device; and (c) the party receiving the Apple Software reads and agrees to accept the terms and conditions of this License. NFR Copies: Notwithstanding other sections of this License, Apple Software labeled or otherwise provided to you on a promotional basis may only be used for demonstration, testing and evaluation purposes and may not be resold or transferred. + + 4. Termination. + This License is effective until terminated. Your rights under this License will terminate automatically without notice from Apple if you fail to comply with any term(s) of this License. Upon the termination of this License, you shall cease all use of the Apple Software and destroy all copies, full or partial, of the Apple Software. + + 5. Limited Warranty on Media. + Apple warrants the media on which the Apple Software is recorded and delivered by Apple to be free from defects in materials and workmanship under normal use for a period of ninety (90) days from the date of original retail purchase. Your exclusive remedy under this Section shall be, at Apple's option, a refund of the purchase price of the product containing the Apple Software or replacement of the Apple Software which is returned to Apple or an Apple authorized representative with a copy of the receipt. THIS LIMITED WARRANTY AND ANY IMPLIED WARRANTIES ON THE MEDIA INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, OF SATISFACTORY QUALITY, AND OF FITNESS FOR A PARTICULAR PURPOSE, ARE LIMITED IN DURATION TO NINETY (90) DAYS FROM THE DATE OF ORIGINAL RETAIL PURCHASE. SOME JURISDICTIONS DO NOT ALLOW LIMITATIONS ON HOW LONG AN IMPLIED WARRANTY LASTS, SO THE ABOVE LIMITATION MAY NOT APPLY TO YOU. THE LIMITED WARRANTY SET FORTH HEREIN IS THE ONLY WARRANTY MADE TO YOU AND IS PROVIDED IN LIEU OF ANY OTHER WARRANTIES (IF ANY) CREATED BY ANY DOCUMENTATION OR PACKAGING. THIS LIMITED WARRANTY GIVES YOU SPECIFIC LEGAL RIGHTS, AND YOU MAY ALSO HAVE OTHER RIGHTS WHICH VARY BY JURISDICTION. + + 6. Disclaimer of Warranties. + YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT USE OF THE APPLE SOFTWARE IS AT YOUR SOLE RISK AND THAT THE ENTIRE RISK AS TO SATISFACTORY QUALITY, PERFORMANCE, ACCURACY AND EFFORT IS WITH YOU. EXCEPT FOR THE LIMITED WARRANTY ON MEDIA SET FORTH ABOVE AND TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE APPLE SOFTWARE IS PROVIDED "AS IS", WITH ALL FAULTS AND WITHOUT WARRANTY OF ANY KIND, AND APPLE AND APPLE'S LICENSORS (COLLECTIVELY REFERRED TO AS "APPLE" FOR THE PURPOSES OF SECTIONS 6 AND 7) HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH RESPECT TO THE APPLE SOFTWARE, EITHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND NON-INFRINGEMENT OF THIRD PARTY RIGHTS. APPLE DOES NOT WARRANT AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE APPLE SOFTWARE, THAT THE FUNCTIONS CONTAINED IN THE APPLE SOFTWARE WILL MEET YOUR REQUIREMENTS, THAT THE OPERATION OF THE APPLE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT DEFECTS IN THE APPLE SOFTWARE WILL BE CORRECTED. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE OR AN APPLE AUTHORIZED REPRESENTATIVE SHALL CREATE A WARRANTY. SHOULD THE APPLE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE ENTIRE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES OR LIMITATIONS ON APPLICABLE STATUTORY RIGHTS OF A CONSUMER, SO THE ABOVE EXCLUSION AND LIMITATIONS MAY NOT APPLY TO YOU. QuickTime Player automatically produces search results that reference sites and information located worldwide throughout the Internet. Because Apple has no control over such sites and information, Apple makes no guarantees as to such sites and information, including: (i) the accuracy, currency, content, or quality of any such sites and information, or (ii) whether an Apple search completed through the QuickTime Player may locate unintended or objectionable content. Because some of the content on the Internet consists of material that is adult-oriented or otherwise objectionable to some people or viewers under the age of 18, the results of any search or entering of a particular URL using the QuickTime Player may automatically and unintentionally generate links or references to objectionable material. By using the QuickTime Player, you acknowledge that Apple makes no representations or warranties with regard to the appropriateness of the content viewed through the QuickTime Player, whether on a pre-installed channel button or as a result of your search. Apple does not guarantee the sequence, accuracy, completeness or timeliness of the content played through the QuickTime Player. Apple, its officers, affiliates and subsidiaries shall not, directly or indirectly, be liable, in any way, to you or any other person for the content you receive using the QuickTime Player or for any inaccuracies, errors in or omissions from the content. + + 7. Limitation of Liability. + TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT SHALL APPLE BE LIABLE FOR PERSONAL INJURY, OR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS, LOSS OF DATA, BUSINESS INTERRUPTION OR ANY OTHER COMMERCIAL DAMAGES OR LOSSES, ARISING OUT OF OR RELATED TO YOUR USE OR INABILITY TO USE THE APPLE SOFTWARE, HOWEVER CAUSED, REGARDLESS OF THE THEORY OF LIABILITY (CONTRACT, TORT OR OTHERWISE) AND EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY FOR PERSONAL INJURY, OR OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY TO YOU. In no event shall Apple's total liability to you for all damages (other than as may be required by applicable law in cases involving personal injury) exceed the amount of fifty dollars ($50.00). The foregoing limitations will apply even if the above stated remedy fails of its essential purpose. + + 8. Export Law Assurances. + You may not use or otherwise export or reexport the Apple Software except as authorized by United States law and the laws of the jurisdiction in which the Apple Software was obtained. In particular, but without limitation, the Apple Software may not be exported or re-exported (a) into (or to a national or resident of) any U.S. embargoed countries (currently Cuba, Iran, Iraq, Libya, North Korea, Sudan and Syria) or (b) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Department of Commerce Denied Person's List or Entity List. By using the Apple Software, you represent and warrant that you are not located in, under control of, or a national or resident of any such country or on any such list. + + 9. Government End Users. + The Apple Software and related documentation are "Commercial Items", as that term is defined at 48 C.F.R. §2.101, consisting of "Commercial Computer Software" and "Commercial Computer Software Documentation", as such terms are used in 48 C.F.R. §12.212 or 48 C.F.R. §227.7202, as applicable. Consistent with 48 C.F.R. §12.212 or 48 C.F.R. §227.7202-1 through 227.7202-4, as applicable, the Commercial Computer Software and Commercial Computer Software Documentation are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Unpublished-rights reserved under the copyright laws of the United States. + + 10. Controlling Law and Severability. + This License will be governed by and construed in accordance with the laws of the State of California, as applied to agreements entered into and to be performed entirely within California between California residents. This License shall not be governed by the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. If for any reason a court of competent jurisdiction finds any provision, or portion thereof, to be unenforceable, the remainder of this License shall continue in full force and effect. + + 11. Complete Agreement; Governing Language. + This License constitutes the entire agreement between the parties with respect to the use of the Apple Software licensed hereunder and supersedes all prior or contemporaneous understandings regarding such subject matter. No amendment to or modification of this License will be binding unless in writing and signed by Apple. Any translation of this License is done for local requirements and in the event of a dispute between the English and any non-English versions, the English version of this License shall govern. + + 12. MPEG-2 Notice. + To the extent that the Apple Software contains MPEG-2 functionality, the following provision applies: ANY USE OF THIS PRODUCT OTHER THAN CONSUMER PERSONAL USE IN ANY MANNER THAT COMPLIES WITH THE MPEG-2 STANDARD FOR ENCODING VIDEO INFORMATION FOR PACKAGED MEDIA IS EXPRESSLY PROHIBITED WITHOUT A LICENSE UNDER APPLICABLE PATENTS IN THE MPEG-2 PATENT PORTFOLIO, WHICH LICENSE IS AVAILABLE FROM MPEG LA, L.L.C, 250 STEELE STREET, SUITE 300, DENVER, COLORADO 80206. + + 13. Use of MPEG-4. + This product is licensed under the MPEG-4 Systems Patent Portfolio License for encoding in compliance with the MPEG-4 Systems Standard, except that an additional license and payment of royalties are necessary for encoding in connection with (i) data stored or replicated in physical media which is paid for on a title by title basis and/or (ii) data which is paid for on a title by title basis and is transmitted to an end user for permanent storage and/or use. Such additional license may be obtained from MPEG LA, LLC. See http://www.mpegla.com for additional details. + + Additional use licenses and fees are required for use of information encoded in compliance with the MPEG-4 Visual Standard other than the personal and non-commercial use of a consumer (i) in connection with information which has been encoded in compliance with the MPEG-4 Visual Standard by a consumer engaged in a personal and non-commercial activity, and/or (ii) in connection with MPEG-4 encoded video under license from a video provider. Additional information including that relating to promotional,internal and commercial uses and licensing may be obtained from MPEG LA, LLC. See http://www.mpegla.com. + + EA0156A json: quicktime.json - yml: quicktime.yml + yaml: quicktime.yml html: quicktime.html - text: quicktime.LICENSE + license: quicktime.LICENSE - license_key: quin-street + category: Proprietary Free spdx_license_key: LicenseRef-scancode-quin-street other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Content Licensing\n\nLinking to Our Content\nYou may post direct text hyperlinks to\ + \ this website. This is not permission to host our articles or other content on your website\ + \ or elsewhere. You may not use any of our logos or trademarks as hyperlinks. We reserve\ + \ the right to request the removal of any such hyperlinks.\n\nReprints and ePrints\nOur\ + \ copyrighted content may be customized to your specifications for limited distribution.\ + \ For example, traditional hardcopy article reprints, electronic reprints (Eprints), corporate\ + \ newsletters, wide format posters, or corporate office plaques. Please contact our reprint\ + \ partners, Wright's Media, for further information. Request reprint information >>\n\n\ + Single Use Non-Commercial\nYou may use one of our articles for a non-commercial project\ + \ (for example, a school project) provided that QuinStreet's copyright clause accompanies\ + \ the article: \n\nReproduced with permission.\nCopyright 1999-2014 QuinStreet, Inc. All\ + \ rights reserved.\n\nOn Your Website\nPlease contact us if you would like to syndicate\ + \ our content, incorporate a feed or host on your website.\n\nOther Uses\nPlease contact\ + \ us if you would like to license or reproduce content from this website in any other way;\ + \ for example, in a book.\n\nContact Details\n\nQuinStreet, Inc.\nAttn: Copyright Agent\n\ + 950 Tower Lane, 6th Floor\nFoster City, CA 94404\n\nTel: (650) 578-7700\nFax: (650) 578-7604\n\ + \nEmail: copyrightagent@quinstreet.com" json: quin-street.json - yml: quin-street.yml + yaml: quin-street.yml html: quin-street.html - text: quin-street.LICENSE + license: quin-street.LICENSE - license_key: quirksmode + category: Permissive spdx_license_key: LicenseRef-scancode-quirksmode other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Quirksmode Copyright Notice\nhttp://www.quirksmode.org/about/copyright.html \n\nCopyright\n\ + I don't believe in copyrights for JavaScript or CSS solutions. This means my site is largely\ + \ free of boring copyright notices. Largely, not entirely. There are a few exceptions.\n\ + \nYou may\nYou may copy, tweak, rewrite, sell or lease any code example on this site, with\ + \ one single exception.\nYou may translate any page you like to any language you like, provided\n\ + •\tthe translation will be available online free of charge\n•\tyou prominently display a\ + \ link to the original at the top of your translation\n•\tyou send me the URL when the translation\ + \ is ready. I will link to your translation from my original page\nThis copyright notice\ + \ itself does not have a copyright notice; feel free to copy it if you like it. (Seriously,\ + \ I get this question from time to time.)\n\nYou may not\nYou may not copy complete pages\ + \ or this entire site and put them online on a publicly accessible web space. The only public\ + \ URL of this site is http://www.quirksmode.org \nThe Usable Forms script is copyrighted.\ + \ It is perhaps the most important script I ever wrote, not for what it does but for the\ + \ way it does it. Therefore I wish to claim the credits.\nUse it in any way you like as\ + \ long as you leave my copyright notice intact." json: quirksmode.json - yml: quirksmode.yml + yaml: quirksmode.yml html: quirksmode.html - text: quirksmode.LICENSE + license: quirksmode.LICENSE - license_key: qwt-1.0 + category: Copyleft Limited spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Copyleft Limited + text: "Qwt License\nVersion 1.0, January 1, 2003\nThe Qwt library and included programs are\ + \ provided under the terms\nof the GNU LESSER GENERAL PUBLIC LICENSE (LGPL) with the following\n\ + exceptions:\n\n 1. Widgets that are subclassed from Qwt widgets do not\n constitute\ + \ a derivative work.\n\n 2. Static linking of applications and widgets to the\n \ + \ Qwt library does not constitute a derivative work\n and does not require the author\ + \ to provide source\n code for the application or widget, use the shared\n Qwt\ + \ libraries, or link their applications or\n widgets against a user-supplied version\ + \ of Qwt.\n If you link the application or widget to a modified\n version of\ + \ Qwt, then the changes to Qwt must be \n provided under the terms of the LGPL in\ + \ sections\n 1, 2, and 4.\n\n 3. You do not have to provide a copy of the Qwt license\n\ + \ with programs that are linked to the Qwt library, nor\n do you have to identify\ + \ the Qwt license in your\n program or documentation as required by section 6\n \ + \ of the LGPL.\n However, programs must still identify their use of Qwt.\n \ + \ The following example statement can be included in user\n documentation to satisfy\ + \ this requirement:\n [program/widget] is based in part on the work of\n \ + \ the Qwt project (http://qwt.sf.net).\n----------------------------------------------------------------------\n\ + \ GNU LESSER GENERAL PUBLIC LICENSE\n Version 2.1, February 1999\n\ + \ Copyright (C) 1991, 1999 Free Software Foundation, Inc.\n 59 Temple Place, Suite 330,\ + \ Boston, MA 02111-1307 USA\n Everyone is permitted to copy and distribute verbatim copies\n\ + \ of this license document, but changing it is not allowed.\n[This is the first released\ + \ version of the Lesser GPL. It also counts\n as the successor of the GNU Library Public\ + \ License, version 2, hence\n the version number 2.1.]\n Preamble\n The\ + \ licenses for most software are designed to take away your\nfreedom to share and change\ + \ it. By contrast, the GNU General Public\nLicenses are intended to guarantee your freedom\ + \ to share and change\nfree software--to make sure the software is free for all its users.\n\ + \ This license, the Lesser General Public License, applies to some\nspecially designated\ + \ software packages--typically libraries--of the\nFree Software Foundation and other authors\ + \ who decide to use it. You\ncan use it too, but we suggest you first think carefully about\ + \ whether\nthis license or the ordinary General Public License is the better\nstrategy to\ + \ use in any particular case, based on the explanations below.\n When we speak of free\ + \ software, we are referring to freedom of use,\nnot price. Our General Public Licenses\ + \ are designed to make sure that\nyou have the freedom to distribute copies of free software\ + \ (and charge\nfor this service if you wish); that you receive source code or can get\n\ + it if you want it; that you can change the software and use pieces of\nit in new free programs;\ + \ and that you are informed that you can do\nthese things.\n To protect your rights, we\ + \ need to make restrictions that forbid\ndistributors to deny you these rights or to ask\ + \ you to surrender these\nrights. These restrictions translate to certain responsibilities\ + \ for\nyou if you distribute copies of the library or if you modify it.\n For example,\ + \ if you distribute copies of the library, whether gratis\nor for a fee, you must give the\ + \ recipients all the rights that we gave\nyou. You must make sure that they, too, receive\ + \ or can get the source\ncode. If you link other code with the library, you must provide\n\ + complete object files to the recipients, so that they can relink them\nwith the library\ + \ after making changes to the library and recompiling\nit. And you must show them these\ + \ terms so they know their rights.\n We protect your rights with a two-step method: (1)\ + \ we copyright the\nlibrary, and (2) we offer you this license, which gives you legal\n\ + permission to copy, distribute and/or modify the library.\n To protect each distributor,\ + \ we want to make it very clear that\nthere is no warranty for the free library. Also,\ + \ if the library is\nmodified by someone else and passed on, the recipients should know\n\ + that what they have is not the original version, so that the original\nauthor's reputation\ + \ will not be affected by problems that might be\nintroduced by others.\n Finally, software\ + \ patents pose a constant threat to the existence of\nany free program. We wish to make\ + \ sure that a company cannot\neffectively restrict the users of a free program by obtaining\ + \ a\nrestrictive license from a patent holder. Therefore, we insist that\nany patent license\ + \ obtained for a version of the library must be\nconsistent with the full freedom of use\ + \ specified in this license.\n Most GNU software, including some libraries, is covered\ + \ by the\nordinary GNU General Public License. This license, the GNU Lesser\nGeneral Public\ + \ License, applies to certain designated libraries, and\nis quite different from the ordinary\ + \ General Public License. We use\nthis license for certain libraries in order to permit\ + \ linking those\nlibraries into non-free programs.\n When a program is linked with a library,\ + \ whether statically or using\na shared library, the combination of the two is legally speaking\ + \ a\ncombined work, a derivative of the original library. The ordinary\nGeneral Public\ + \ License therefore permits such linking only if the\nentire combination fits its criteria\ + \ of freedom. The Lesser General\nPublic License permits more lax criteria for linking\ + \ other code with\nthe library.\n We call this license the \"Lesser\" General Public License\ + \ because it\ndoes Less to protect the user's freedom than the ordinary General\nPublic\ + \ License. It also provides other free software developers Less\nof an advantage over competing\ + \ non-free programs. These disadvantages\nare the reason we use the ordinary General Public\ + \ License for many\nlibraries. However, the Lesser license provides advantages in certain\n\ + special circumstances.\n For example, on rare occasions, there may be a special need to\n\ + encourage the widest possible use of a certain library, so that it becomes\na de-facto standard.\ + \ To achieve this, non-free programs must be\nallowed to use the library. A more frequent\ + \ case is that a free\nlibrary does the same job as widely used non-free libraries. In\ + \ this\ncase, there is little to gain by limiting the free library to free\nsoftware only,\ + \ so we use the Lesser General Public License.\n In other cases, permission to use a particular\ + \ library in non-free\nprograms enables a greater number of people to use a large body of\n\ + free software. For example, permission to use the GNU C Library in\nnon-free programs enables\ + \ many more people to use the whole GNU\noperating system, as well as its variant, the GNU/Linux\ + \ operating\nsystem.\n Although the Lesser General Public License is Less protective of\ + \ the\nusers' freedom, it does ensure that the user of a program that is\nlinked with the\ + \ Library has the freedom and the wherewithal to run\nthat program using a modified version\ + \ of the Library.\n The precise terms and conditions for copying, distribution and\nmodification\ + \ follow. Pay close attention to the difference between a\n\"work based on the library\"\ + \ and a \"work that uses the library\". The\nformer contains code derived from the library,\ + \ whereas the latter must\nbe combined with the library in order to run.\n GNU\ + \ LESSER GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\ + \ 0. This License Agreement applies to any software library or other\nprogram which contains\ + \ a notice placed by the copyright holder or\nother authorized party saying it may be distributed\ + \ under the terms of\nthis Lesser General Public License (also called \"this License\").\n\ + Each licensee is addressed as \"you\".\n A \"library\" means a collection of software functions\ + \ and/or data\nprepared so as to be conveniently linked with application programs\n(which\ + \ use some of those functions and data) to form executables.\n The \"Library\", below,\ + \ refers to any such software library or work\nwhich has been distributed under these terms.\ + \ A \"work based on the\nLibrary\" means either the Library or any derivative work under\n\ + copyright law: that is to say, a work containing the Library or a\nportion of it, either\ + \ verbatim or with modifications and/or translated\nstraightforwardly into another language.\ + \ (Hereinafter, translation is\nincluded without limitation in the term \"modification\"\ + .)\n \"Source code\" for a work means the preferred form of the work for\nmaking modifications\ + \ to it. For a library, complete source code means\nall the source code for all modules\ + \ it contains, plus any associated\ninterface definition files, plus the scripts used to\ + \ control compilation\nand installation of the library.\n Activities other than copying,\ + \ distribution and modification are not\ncovered by this License; they are outside its scope.\ + \ The act of\nrunning a program using the Library is not restricted, and output from\n\ + such a program is covered only if its contents constitute a work based\non the Library (independent\ + \ of the use of the Library in a tool for\nwriting it). Whether that is true depends on\ + \ what the Library does\nand what the program that uses the Library does.\n 1. You may\ + \ copy and distribute verbatim copies of the Library's\ncomplete source code as you receive\ + \ it, in any medium, provided that\nyou conspicuously and appropriately publish on each\ + \ copy an\nappropriate copyright notice and disclaimer of warranty; keep intact\nall the\ + \ notices that refer to this License and to the absence of any\nwarranty; and distribute\ + \ a copy of this License along with the\nLibrary.\n You may charge a fee for the physical\ + \ act of transferring a copy,\nand you may at your option offer warranty protection in exchange\ + \ for a\nfee.\n 2. You may modify your copy or copies of the Library or any portion\nof\ + \ it, thus forming a work based on the Library, and copy and\ndistribute such modifications\ + \ or work under the terms of Section 1\nabove, provided that you also meet all of these\ + \ conditions:\n a) The modified work must itself be a software library.\n b) You must\ + \ cause the files modified to carry prominent notices\n stating that you changed the\ + \ files and the date of any change.\n c) You must cause the whole of the work to be licensed\ + \ at no\n charge to all third parties under the terms of this License.\n d) If a facility\ + \ in the modified Library refers to a function or a\n table of data to be supplied by\ + \ an application program that uses\n the facility, other than as an argument passed when\ + \ the facility\n is invoked, then you must make a good faith effort to ensure that,\n\ + \ in the event an application does not supply such function or\n table, the facility\ + \ still operates, and performs whatever part of\n its purpose remains meaningful.\n \ + \ (For example, a function in a library to compute square roots has\n a purpose that\ + \ is entirely well-defined independent of the\n application. Therefore, Subsection 2d\ + \ requires that any\n application-supplied function or table used by this function must\n\ + \ be optional: if the application does not supply it, the square\n root function must\ + \ still compute square roots.)\nThese requirements apply to the modified work as a whole.\ + \ If\nidentifiable sections of that work are not derived from the Library,\nand can be\ + \ reasonably considered independent and separate works in\nthemselves, then this License,\ + \ and its terms, do not apply to those\nsections when you distribute them as separate works.\ + \ But when you\ndistribute the same sections as part of a whole which is a work based\n\ + on the Library, the distribution of the whole must be on the terms of\nthis License, whose\ + \ permissions for other licensees extend to the\nentire whole, and thus to each and every\ + \ part regardless of who wrote\nit.\nThus, it is not the intent of this section to claim\ + \ rights or contest\nyour rights to work written entirely by you; rather, the intent is\ + \ to\nexercise the right to control the distribution of derivative or\ncollective works\ + \ based on the Library.\nIn addition, mere aggregation of another work not based on the\ + \ Library\nwith the Library (or with a work based on the Library) on a volume of\na storage\ + \ or distribution medium does not bring the other work under\nthe scope of this License.\n\ + \ 3. You may opt to apply the terms of the ordinary GNU General Public\nLicense instead\ + \ of this License to a given copy of the Library. To do\nthis, you must alter all the notices\ + \ that refer to this License, so\nthat they refer to the ordinary GNU General Public License,\ + \ version 2,\ninstead of to this License. (If a newer version than version 2 of the\nordinary\ + \ GNU General Public License has appeared, then you can specify\nthat version instead if\ + \ you wish.) Do not make any other change in\nthese notices.\n Once this change is made\ + \ in a given copy, it is irreversible for\nthat copy, so the ordinary GNU General Public\ + \ License applies to all\nsubsequent copies and derivative works made from that copy.\n\ + \ This option is useful when you wish to copy part of the code of\nthe Library into a program\ + \ that is not a library.\n 4. You may copy and distribute the Library (or a portion or\n\ + derivative of it, under Section 2) in object code or executable form\nunder the terms of\ + \ Sections 1 and 2 above provided that you accompany\nit with the complete corresponding\ + \ machine-readable source code, which\nmust be distributed under the terms of Sections 1\ + \ and 2 above on a\nmedium customarily used for software interchange.\n If distribution\ + \ of object code is made by offering access to copy\nfrom a designated place, then offering\ + \ equivalent access to copy the\nsource code from the same place satisfies the requirement\ + \ to\ndistribute the source code, even though third parties are not\ncompelled to copy the\ + \ source along with the object code.\n 5. A program that contains no derivative of any\ + \ portion of the\nLibrary, but is designed to work with the Library by being compiled or\n\ + linked with it, is called a \"work that uses the Library\". Such a\nwork, in isolation,\ + \ is not a derivative work of the Library, and\ntherefore falls outside the scope of this\ + \ License.\n However, linking a \"work that uses the Library\" with the Library\ncreates\ + \ an executable that is a derivative of the Library (because it\ncontains portions of the\ + \ Library), rather than a \"work that uses the\nlibrary\". The executable is therefore\ + \ covered by this License.\nSection 6 states terms for distribution of such executables.\n\ + \ When a \"work that uses the Library\" uses material from a header file\nthat is part\ + \ of the Library, the object code for the work may be a\nderivative work of the Library\ + \ even though the source code is not.\nWhether this is true is especially significant if\ + \ the work can be\nlinked without the Library, or if the work is itself a library. The\n\ + threshold for this to be true is not precisely defined by law.\n If such an object file\ + \ uses only numerical parameters, data\nstructure layouts and accessors, and small macros\ + \ and small inline\nfunctions (ten lines or less in length), then the use of the object\n\ + file is unrestricted, regardless of whether it is legally a derivative\nwork. (Executables\ + \ containing this object code plus portions of the\nLibrary will still fall under Section\ + \ 6.)\n Otherwise, if the work is a derivative of the Library, you may\ndistribute the\ + \ object code for the work under the terms of Section 6.\nAny executables containing that\ + \ work also fall under Section 6,\nwhether or not they are linked directly with the Library\ + \ itself.\n 6. As an exception to the Sections above, you may also combine or\nlink a \"\ + work that uses the Library\" with the Library to produce a\nwork containing portions of\ + \ the Library, and distribute that work\nunder terms of your choice, provided that the terms\ + \ permit\nmodification of the work for the customer's own use and reverse\nengineering for\ + \ debugging such modifications.\n You must give prominent notice with each copy of the\ + \ work that the\nLibrary is used in it and that the Library and its use are covered by\n\ + this License. You must supply a copy of this License. If the work\nduring execution displays\ + \ copyright notices, you must include the\ncopyright notice for the Library among them,\ + \ as well as a reference\ndirecting the user to the copy of this License. Also, you must\ + \ do one\nof these things:\n a) Accompany the work with the complete corresponding\n\ + \ machine-readable source code for the Library including whatever\n changes were used\ + \ in the work (which must be distributed under\n Sections 1 and 2 above); and, if the\ + \ work is an executable linked\n with the Library, with the complete machine-readable\ + \ \"work that\n uses the Library\", as object code and/or source code, so that the\n\ + \ user can modify the Library and then relink to produce a modified\n executable containing\ + \ the modified Library. (It is understood\n that the user who changes the contents of\ + \ definitions files in the\n Library will not necessarily be able to recompile the application\n\ + \ to use the modified definitions.)\n b) Use a suitable shared library mechanism for\ + \ linking with the\n Library. A suitable mechanism is one that (1) uses at run time\ + \ a\n copy of the library already present on the user's computer system,\n rather\ + \ than copying library functions into the executable, and (2)\n will operate properly\ + \ with a modified version of the library, if\n the user installs one, as long as the\ + \ modified version is\n interface-compatible with the version that the work was made\ + \ with.\n c) Accompany the work with a written offer, valid for at\n least three years,\ + \ to give the same user the materials\n specified in Subsection 6a, above, for a charge\ + \ no more\n than the cost of performing this distribution.\n d) If distribution of\ + \ the work is made by offering access to copy\n from a designated place, offer equivalent\ + \ access to copy the above\n specified materials from the same place.\n e) Verify\ + \ that the user has already received a copy of these\n materials or that you have already\ + \ sent this user a copy.\n For an executable, the required form of the \"work that uses\ + \ the\nLibrary\" must include any data and utility programs needed for\nreproducing the\ + \ executable from it. However, as a special exception,\nthe materials to be distributed\ + \ need not include anything that is\nnormally distributed (in either source or binary form)\ + \ with the major\ncomponents (compiler, kernel, and so on) of the operating system on\n\ + which the executable runs, unless that component itself accompanies\nthe executable.\n \ + \ It may happen that this requirement contradicts the license\nrestrictions of other proprietary\ + \ libraries that do not normally\naccompany the operating system. Such a contradiction\ + \ means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n\ + \ 7. You may place library facilities that are a work based on the\nLibrary side-by-side\ + \ in a single library together with other library\nfacilities not covered by this License,\ + \ and distribute such a combined\nlibrary, provided that the separate distribution of the\ + \ work based on\nthe Library and of the other library facilities is otherwise\npermitted,\ + \ and provided that you do these two things:\n a) Accompany the combined library with\ + \ a copy of the same work\n based on the Library, uncombined with any other library\n\ + \ facilities. This must be distributed under the terms of the\n Sections above.\n\ + \ b) Give prominent notice with the combined library of the fact\n that part of it\ + \ is a work based on the Library, and explaining\n where to find the accompanying uncombined\ + \ form of the same work.\n 8. You may not copy, modify, sublicense, link with, or distribute\n\ + the Library except as expressly provided under this License. Any\nattempt otherwise to\ + \ copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically\ + \ terminate your\nrights under this License. However, parties who have received copies,\n\ + or rights, from you under this License will not have their licenses\nterminated so long\ + \ as such parties remain in full compliance.\n 9. You are not required to accept this License,\ + \ since you have not\nsigned it. However, nothing else grants you permission to modify\ + \ or\ndistribute the Library or its derivative works. These actions are\nprohibited by\ + \ law if you do not accept this License. Therefore, by\nmodifying or distributing the Library\ + \ (or any work based on the\nLibrary), you indicate your acceptance of this License to do\ + \ so, and\nall its terms and conditions for copying, distributing or modifying\nthe Library\ + \ or works based on it.\n 10. Each time you redistribute the Library (or any work based\ + \ on the\nLibrary), the recipient automatically receives a license from the\noriginal licensor\ + \ to copy, distribute, link with or modify the Library\nsubject to these terms and conditions.\ + \ You may not impose any further\nrestrictions on the recipients' exercise of the rights\ + \ granted herein.\nYou are not responsible for enforcing compliance by third parties with\n\ + this License.\n 11. If, as a consequence of a court judgment or allegation of patent\n\ + infringement or for any other reason (not limited to patent issues),\nconditions are imposed\ + \ on you (whether by court order, agreement or\notherwise) that contradict the conditions\ + \ of this License, they do not\nexcuse you from the conditions of this License. If you\ + \ cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense\ + \ and any other pertinent obligations, then as a consequence you\nmay not distribute the\ + \ Library at all. For example, if a patent\nlicense would not permit royalty-free redistribution\ + \ of the Library by\nall those who receive copies directly or indirectly through you, then\n\ + the only way you could satisfy both it and this License would be to\nrefrain entirely from\ + \ distribution of the Library.\nIf any portion of this section is held invalid or unenforceable\ + \ under any\nparticular circumstance, the balance of the section is intended to apply,\n\ + and the section as a whole is intended to apply in other circumstances.\nIt is not the purpose\ + \ of this section to induce you to infringe any\npatents or other property right claims\ + \ or to contest validity of any\nsuch claims; this section has the sole purpose of protecting\ + \ the\nintegrity of the free software distribution system which is\nimplemented by public\ + \ license practices. Many people have made\ngenerous contributions to the wide range of\ + \ software distributed\nthrough that system in reliance on consistent application of that\n\ + system; it is up to the author/donor to decide if he or she is willing\nto distribute software\ + \ through any other system and a licensee cannot\nimpose that choice.\nThis section is intended\ + \ to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\ + \ 12. If the distribution and/or use of the Library is restricted in\ncertain countries\ + \ either by patents or by copyrighted interfaces, the\noriginal copyright holder who places\ + \ the Library under this License may add\nan explicit geographical distribution limitation\ + \ excluding those countries,\nso that distribution is permitted only in or among countries\ + \ not thus\nexcluded. In such case, this License incorporates the limitation as if\nwritten\ + \ in the body of this License.\n 13. The Free Software Foundation may publish revised and/or\ + \ new\nversions of the Lesser General Public License from time to time.\nSuch new versions\ + \ will be similar in spirit to the present version,\nbut may differ in detail to address\ + \ new problems or concerns.\nEach version is given a distinguishing version number. If\ + \ the Library\nspecifies a version number of this License which applies to it and\n\"any\ + \ later version\", you have the option of following the terms and\nconditions either of\ + \ that version or of any later version published by\nthe Free Software Foundation. If the\ + \ Library does not specify a\nlicense version number, you may choose any version ever published\ + \ by\nthe Free Software Foundation.\n 14. If you wish to incorporate parts of the Library\ + \ into other free\nprograms whose distribution conditions are incompatible with these,\n\ + write to the author to ask for permission. For software which is\ncopyrighted by the Free\ + \ Software Foundation, write to the Free\nSoftware Foundation; we sometimes make exceptions\ + \ for this. Our\ndecision will be guided by the two goals of preserving the free status\n\ + of all derivatives of our free software and of promoting the sharing\nand reuse of software\ + \ generally.\n NO WARRANTY\n 15. BECAUSE THE LIBRARY IS LICENSED FREE OF\ + \ CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\n\ + EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE\ + \ THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\ + \ BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n\ + PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU.\ + \ SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING,\ + \ REPAIR OR CORRECTION.\n 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO\ + \ IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE\ + \ THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL,\ + \ SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE\ + \ THE\nLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE\ + \ OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH\ + \ ANY OTHER SOFTWARE), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY\ + \ OF SUCH\nDAMAGES.\n END OF TERMS AND CONDITIONS\n How to Apply These\ + \ Terms to Your New Libraries\n If you develop a new library, and you want it to be of\ + \ the greatest\npossible use to the public, we recommend making it free software that\n\ + everyone can redistribute and change. You can do so by permitting\nredistribution under\ + \ these terms (or, alternatively, under the terms of the\nordinary General Public License).\n\ + \ To apply these terms, attach the following notices to the library. It is\nsafest to\ + \ attach them to the start of each source file to most effectively\nconvey the exclusion\ + \ of warranty; and each file should have at least the\n\"copyright\" line and a pointer\ + \ to where the full notice is found.\n \n Copyright (C) \n This library is\ + \ free software; you can redistribute it and/or\n modify it under the terms of the GNU\ + \ Lesser General Public\n License as published by the Free Software Foundation; either\n\ + \ version 2.1 of the License, or (at your option) any later version.\n This library\ + \ is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without\ + \ even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\ + \ See the GNU\n Lesser General Public License for more details.\n You should have\ + \ received a copy of the GNU Lesser General Public\n License along with this library;\ + \ if not, write to the Free Software\n Foundation, Inc., 59 Temple Place, Suite 330,\ + \ Boston, MA 02111-1307 USA\nAlso add information on how to contact you by electronic\ + \ and paper mail.\nYou should also get your employer (if you work as a programmer) or your\n\ + school, if any, to sign a \"copyright disclaimer\" for the library, if\nnecessary. Here\ + \ is a sample; alter the names:\n Yoyodyne, Inc., hereby disclaims all copyright interest\ + \ in the\n library `Frob' (a library for tweaking knobs) written by James Random Hacker.\n\ + \ , 1 April 1990\n Ty Coon, President of Vice\nThat's all there\ + \ is to it!" json: qwt-1.0.json - yml: qwt-1.0.yml + yaml: qwt-1.0.yml html: qwt-1.0.html - text: qwt-1.0.LICENSE + license: qwt-1.0.LICENSE - license_key: qwt-exception-1.0 + category: Copyleft Limited spdx_license_key: Qwt-exception-1.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "Qwt License\nVersion 1.0, January 1, 2003\nThe Qwt library and included programs are\ + \ provided under the terms\nof the GNU LESSER GENERAL PUBLIC LICENSE (LGPL) with the following\n\ + exceptions:\n\n 1. Widgets that are subclassed from Qwt widgets do not\n constitute\ + \ a derivative work.\n\n 2. Static linking of applications and widgets to the\n \ + \ Qwt library does not constitute a derivative work\n and does not require the author\ + \ to provide source\n code for the application or widget, use the shared\n Qwt\ + \ libraries, or link their applications or\n widgets against a user-supplied version\ + \ of Qwt.\n If you link the application or widget to a modified\n version of\ + \ Qwt, then the changes to Qwt must be \n provided under the terms of the LGPL in\ + \ sections\n 1, 2, and 4.\n\n 3. You do not have to provide a copy of the Qwt license\n\ + \ with programs that are linked to the Qwt library, nor\n do you have to identify\ + \ the Qwt license in your\n program or documentation as required by section 6\n \ + \ of the LGPL.\n However, programs must still identify their use of Qwt.\n \ + \ The following example statement can be included in user\n documentation to satisfy\ + \ this requirement:\n [program/widget] is based in part on the work of\n \ + \ the Qwt project (http://qwt.sf.net)." json: qwt-exception-1.0.json - yml: qwt-exception-1.0.yml + yaml: qwt-exception-1.0.yml html: qwt-exception-1.0.html - text: qwt-exception-1.0.LICENSE + license: qwt-exception-1.0.LICENSE - license_key: rackspace + category: Free Restricted spdx_license_key: LicenseRef-scancode-rackspace other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Subject to the terms of this notice, Rackspace, Inc. grants you a + nonexclusive, nontransferable license, without the right to + sublicense, to (a) install and execute one copy of these files on any + number of workstations owned or controlled by you and (b) distribute + verbatim copies eof these files to third parties. As a condition to the + foregoing grant, you must provide this notice along with each copy you + distribute and you must not remove, alter, or obscure this notice. All + other use, reproduction, modification, distribution, or other + exploitation of these files is strictly prohibited, except as may be set + forth in a separate written license agreement between you and ERackspace, + Inc. The terms of any such license agreement will control over this + notice. The license stated above will be automatically terminated and + revoked if you exceed its scope or violate any of the terms of this + notice. + + This License does not grant permission to use the trade names, + trademarks, service marks, or product names of Rackspace, Inc., + Airbrake, Exceptional, Airbrake.io, Exceptional.io except as + required for reasonable and customary use in describing the origin + of this file and reproducing the content of this notice. You may + not mark or brand this file with any trade name, trademarks, + servicemarks, or product names other than the original brand + (if any)provided by Rackspace, Inc. + Unless otherwise expressly agreed by Rackspace, Inc., in a + separate written license agreement, these files are provided AS IS, + WITHOUT WARRANTY OF ANY KIND, including without any implied warranties + of MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, or NON-INFRINGEMENT. + As a condition to your use of these files, you are solely responsible for + such use. Rackspace, Inc. will have no liability to you for direct, + indirect, consequential, incidental, special, or punitive damages or + for lost profits or data. json: rackspace.json - yml: rackspace.yml + yaml: rackspace.yml html: rackspace.html - text: rackspace.LICENSE + license: rackspace.LICENSE - license_key: radvd + category: Permissive spdx_license_key: LicenseRef-scancode-radvd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The author(s) grant permission for redistribution and use in source and\nbinary forms,\ + \ with or without modification, of the software and documentation\nprovided that the following\ + \ conditions are met:\n\n0. If you receive a version of the software that is specifically\ + \ labelled\n as not being for redistribution (check the version message and/or README),\n\ + \ you are not permitted to redistribute that version of the software in any\n way or\ + \ form.\n1. All terms of all other applicable copyrights and licenses must be\n followed.\n\ + 2. Redistributions of source code must retain the authors' copyright\n notice(s), this\ + \ list of conditions, and the following disclaimer.\n3. Redistributions in binary form must\ + \ reproduce the authors' copyright\n notice(s), this list of conditions, and the following\ + \ disclaimer in the\n documentation and/or other materials provided with the distribution.\n\ + 4. All advertising materials mentioning features or use of this software\n must display\ + \ the following acknowledgement with the name(s) of the\n authors as specified in the\ + \ copyright notice(s) substituted where\n indicated:\n\n This product includes\ + \ software developed by the authors which are \n\tmentioned at the start of the source files\ + \ and other contributors.\n\n5. Neither the name(s) of the author(s) nor the names of its\ + \ contributors\n may be used to endorse or promote products derived from this software\n\ + \ without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY ITS AUTHORS\ + \ AND CONTRIBUTORS ``AS IS'' AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\ + \ LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\ + \ ARE\nDISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT,\ + \ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT\ + \ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS;\ + \ OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\ + \ STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\ + \ OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." json: radvd.json - yml: radvd.yml + yaml: radvd.yml html: radvd.html - text: radvd.LICENSE + license: radvd.LICENSE - license_key: ralf-corsepius + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: "Permission to use, copy, modify, and distribute this software \nis freely granted,\ + \ provided that this notice is preserved." json: ralf-corsepius.json - yml: ralf-corsepius.yml + yaml: ralf-corsepius.yml html: ralf-corsepius.html - text: ralf-corsepius.LICENSE + license: ralf-corsepius.LICENSE - license_key: ralink-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ralink-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Redistribution.\nRedistribution and use in binary form, without modification, are\n\ + permitted provided that the following conditions are met:\n\nRedistributions must reproduce\ + \ the above copyright notice and the\nfollowing disclaimer in the documentation and/or other\ + \ materials\nprovided with the distribution.\n\nNeither the name of Ralink Technology Corporation\n\ + nor the names of its suppliers may be used to endorse or promote\nproducts derived from\ + \ this software without specific prior written\npermission.\n\nNo reverse engineering, decompilation,\ + \ or disassembly of this\nsoftware is permitted.\n\nLimited patent license. Ralink Technology\ + \ Corporation grants a world-wide,\nroyalty-free, non-exclusive license under patents it\ + \ now or hereafter\nowns or controls to make, have made, use, import, offer to sell and\n\ + sell (\"Utilize\") this software, but solely to the extent that any\nsuch patent is necessary\ + \ to Utilize the software alone, or in\ncombination with an operating system licensed under\ + \ an approved Open\nSource license as listed by the Open Source Initiative at\nhttp://opensource.org/licenses.\ + \ The patent license shall not apply to\nany other combinations which include this software.\ + \ No hardware per\nse is licensed hereunder.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED\ + \ BY THE COPYRIGHT HOLDERS AND \nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\ + \ INCLUDING, \nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND \nFITNESS\ + \ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE \nCOPYRIGHT OWNER OR CONTRIBUTORS\ + \ BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\ + \ DAMAGES (INCLUDING, \nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\ + \ LOSS \nOF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND \nON ANY\ + \ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR \nTORT (INCLUDING NEGLIGENCE\ + \ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE \nUSE OF THIS SOFTWARE, EVEN IF ADVISED OF\ + \ THE POSSIBILITY OF SUCH \nDAMAGE." json: ralink-firmware.json - yml: ralink-firmware.yml + yaml: ralink-firmware.yml html: ralink-firmware.html - text: ralink-firmware.LICENSE + license: ralink-firmware.LICENSE - license_key: rar-winrar-eula + category: Commercial spdx_license_key: LicenseRef-scancode-rar-winrar-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "RAR and WinRAR END USER LICENSE AGREEMENT (EULA)\n\nThe following agreement regarding\ + \ RAR (and its Windows version - WinRAR) archiver - referred to as \"software\" - is made\ + \ between win.rar GmbH - referred to as \"licensor\" - and anyone who is installing, accessing\ + \ or in any other way using the software - referred to as \"user\".\n\nThe author and holder\ + \ of the copyright of the software is Alexander L. Roshal. The licensor and as such issuer\ + \ of the license and bearer of the worldwide exclusive usage rights including the rights\ + \ to reproduce, distribute and make the software available to the public in any form is\ + \ win.rar GmbH, Marienstrasse 12, 10117 Berlin, Germany. \n \nThe software is distributed\ + \ as try before you buy. This means that anyone may use the software during a test period\ + \ of a maximum of 40 days at no charge. Following this test period, the user must purchase\ + \ a license to continue using the software. \n \nThe software's trial version may be freely\ + \ distributed, with exceptions noted below, provided the distribution package is not modified\ + \ in any way. \n\nNobody may distribute separate parts of the package, with the exception\ + \ of the UnRAR components, without written permission.\n \nThe software's unlicensed trial\ + \ version may not be distributed inside of any other software package without written permission.\ + \ The software must remain in the original unmodified installation file for download without\ + \ any barrier and conditions to the user such as collecting fees for the download or making\ + \ the download conditional on the user giving his contact data.\n \nThe unmodified installation\ + \ file of WinRAR must be provided pure and unpaired. Any bundling is interdicted. In particular\ + \ the use of any install or download software which is providing any kind of download bundles\ + \ is prohibited unless granted by win.rar GmbH in written form.\n \nHacks/cracks, keys or\ + \ key generators may not be included, pointed to or referred to by the distributor of the\ + \ trial version.\n \nIn case of violation of the precedent conditions the allowance lapses\ + \ immediately and automatically. \n \nThe trial version of the software can display a registration\ + \ reminder dialog. Depending on the software version and configuration such dialog can contain\ + \ either a predefined text and links loaded locally or a web page loaded from the internet.\ + \ Such web page can contain licensing instructions or other materials according to the licensor's\ + \ choice, including advertisement. When opening a web page, the software transfers only\ + \ those parameters which are technically required by HTTP protocol to successfully open\ + \ a web page in a browser. \n \nThe software is distributed \"as is\". No warranty of any\ + \ kind is expressed or implied. You use at your own risk. Neither the author, the licensor\ + \ nor the agents of the licensor will be liable for data loss, damages, loss of profits\ + \ or any other kind of loss while using or misusing this software. \n \nThere are 2 basic\ + \ types of licenses issued for the software. These are: \n\nA single computer usage license.\ + \ The user purchases one license to use the software on one computer.\n\nHome users may\ + \ use their single computer usage license on all computers and mobile devices (USB drive,\ + \ external hard drive, etc.) which are property of the license owner.\n\nBusiness users\ + \ require one license per computer or mobile device on which the software is installed.\ + \ \n \nA multiple usage license. The user purchases a number of usage licenses for use,\ + \ by the purchaser or the purchaser's employees on the same number of computers.\n\nIn a\ + \ network (server/client) environment the user must purchase a license copy for each separate\ + \ client (workstation) on which the software is installed, used or accessed. A separate\ + \ license copy for each client (workstation) is needed regardless of whether the clients\ + \ (workstations) will use the software simultaneously or at different times. If for example\ + \ you wish to have 9 different clients (workstations) in your network with access to RAR,\ + \ you must purchase 9 license copies. \n \nA user who purchased a license, is granted a\ + \ non-exclusive right to use the software on as many computers as defined by the licensing\ + \ terms above according to the number of licenses purchased, for any legal purpose. \n \n\ + There are no additional license fees, apart from the cost of the license, associated with\ + \ the creation and distribution of RAR archives, volumes, self-extracting archives or self-extracting\ + \ volumes. Owners of a license may use their copies of the software to produce archives\ + \ and self-extracting archives and to distribute those archives free of any additional royalties.\ + \ \n \nThe licensed software may not be rented or leased but may be permanently transferred,\ + \ in its entirety, if the recipient agrees to the terms of this license. \n \nTo buy a license,\ + \ please read the file order.htm provided with the software for details. \n \nYou may not\ + \ use, copy, emulate, clone, rent, lease, sell, modify, decompile, disassemble, otherwise\ + \ reverse engineer, or transfer the licensed software, or any subset of the licensed software,\ + \ except as provided for in this agreement. Any such unauthorized use shall result in immediate\ + \ and automatic termination of this license and may result in criminal and/or civil prosecution.\ + \ \n\nNeither RAR binary code, WinRAR binary code, UnRAR source or UnRAR binary code may\ + \ be used or reverse engineered to re-create the RAR compression algorithm, which is proprietary,\ + \ without written permission. \n\nThe software may be using components developed and/or\ + \ copyrighted by third parties. Please read \"Acknowledgments\" help file topic for WinRAR\ + \ or acknow.txt text file for other RAR versions for details. \n \nThis License Agreement\ + \ is construed solely and exclusively under German law. If you are a merchant, the courts\ + \ at the registered office of win.rar GmbH in Berlin/Germany shall have exclusive jurisdiction\ + \ for any and all disputes arising in connection with this License Agreement or its validity.\ + \ \n \nInstalling and using the software signifies acceptance of these terms and conditions\ + \ of the license. If you do not agree with the terms of this license, you must remove all\ + \ software files from your storage devices and cease to use the software." json: rar-winrar-eula.json - yml: rar-winrar-eula.yml + yaml: rar-winrar-eula.yml html: rar-winrar-eula.html - text: rar-winrar-eula.LICENSE + license: rar-winrar-eula.LICENSE - license_key: rcsl-2.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-rcsl-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + REALNETWORKS COMMUNITY SOURCE LICENSE + RESEARCH AND DEVELOPMENT USE + (RCSL R&D) + Version 2.0 (Rev. Date: February 8, 2005) + + RECITALS + + Original Contributor has developed Specifications, Source Code implementations and Executables of the Helix DNA Code, and an associated TCK; and + + Original Contributor desires to license the Helix DNA Code to a large community to facilitate research, innovation and product development while maintaining compatibility of such products with the Helix DNA Code as delivered by Original Contributor; + + Therefore, Original Contributor makes available the Helix DNA Code, the Specifications, and the TCK available under for Research and Development Use only under the following terms: + + LICENSE + + 1. Introduction. + + The RealNetworks Community Source License Research and Development Use ( RCSL R&D or License) is a license to use the Source Code of certain portions of the Helix DNA Code, Specifications, and the TCK for research and development use only. You accept the terms of this License by downloading or using the Helix DNA Code, the Specifications, or the TCK. + + This License does not include a license to access or modify the Source Code of the Real Format Code. If you desire the right to receive access to the Source Code of the Real Format Code for the purposes of porting and optimization, You and Original Contributor may elect to execute a Real Format Source Code Porting Agreement. + + This License does not include a license to make Commercial Use of the Helix DNA Code or Real Format Code. If You desire a license for Commercial Use of the Helix DNA Code or Real Format Code, You and Original Contributor may desire to execute the RealNetworks Community Source License - Commercial Use ( RCSL Commercial ) for the version of the Helix DNA Code and/or Real Format Code You would like to make Commercial Use of. Once executed by You and Original Contributor, the RCSL Commercial would supersede the terms of this License. + + Capitalized terms used in this License are defined in the Glossary attached to the end of this License. + + 2. License Grants. + + 2.1 Original Contributor Grant to use Covered Code, Specifications, and TCK. + + Subject to Your compliance with the terms of this License, Original Contributor grants to You a worldwide, royalty-free, non-exclusive license, to the extent of Original Contributor's Intellectual Property Rights covering the Covered Code, Specifications, and TCK to do the following: + + (a) Research Use License: + + (i) use, reproduce and modify the Covered Code and Specifications to create Modifications and Reformatted Specifications for Research Use by You; + + (ii) publish and display Covered Code and Specifications with, or as part of Modifications, as permitted under Section 3.1(b) below; + + (iii) reproduce and distribute copies of Covered Code to Licensees and students for Research Use by You; + + (iv) compile, reproduce and distribute Covered Code in Executable form, and Reformatted Specifications to anyone for Research Use by You; and + + (v) use the TCK to develop and test Covered Code. + + (b) Other than the licenses expressly granted in this License, Original Contributor retains all right, title, and interest in Covered Code, Specifications and TCK. + + (c) TCK Use Restrictions. + + You may not create derivative works of the TCK or use the TCK to test any implementation of the Specification except for the purpose of creating Compliant Covered Code. You may not publish Your test results or make claims of comparative compatibility with respect to other implementations of the Specification. You may not develop Your own tests that are intended to validate conformation with the Specification. + + 2.2 Your Grants. + + (a) To Other Licensees. You hereby grant to each Licensee a license to Your Error Corrections and Shared Modifications, of the same scope and extent as Original Contributor's licenses under Section 2.1 (a) above relative to Research Use. + + (b) To Original Contributor. You hereby grant to Original Contributor a worldwide, royalty-free, non-exclusive, perpetual and irrevocable license, to the extent of Your Intellectual Property Rights covering Your Error Corrections, Shared Modifications and Reformatted Specifications, to use, reproduce, modify, display and distribute Your Error Corrections, Shared Modifications and Reformatted Specifications, in any form, including the right to sublicense such rights through multiple tiers of distribution. + + (c) Other than the licenses expressly granted in Sections 2.2(a) and (b) above, and the restrictions set forth in Section 3.1 below, You retain all right, title, and interest in Your Error Corrections, Shared Modifications and Reformatted Specifications. + + 2.3 Contributor Modifications. + + You may use, reproduce, modify, display and distribute Contributor Error Corrections, Shared Modifications and Reformatted Specifications, obtained by You under this License, to the same scope and extent as with Original Code, Upgraded Code and Specifications. + + 2.4 Subcontracting. + + You may deliver the Source Code of Covered Code to other Licensees for the sole purpose of furnishing development services to You in connection with Your rights granted in this License, provided that You do not enter a separate agreement with such Licensee that contains provisions inconsistent with the ownership and licensing requirements set forth in this License. + + 3. Requirements and Responsibilities. + + 3.1 Research Use License. + + As a condition of exercising the rights granted under Section 2.1(a) above, You must comply with the following: + + (a) Your Contributions. All Error Corrections and Shared Modifications which You create are automatically subject to the licenses granted under Section 2.2 above. You are encouraged to license all of Your other Modifications under Section 2.2 as Shared Modifications, but are not required to do so. You must notify Original Contributor of any errors in the Specification. + + (b) Source Code Availability. You must provide all Your Error Corrections to Original Contributor as soon as reasonably practicable and, in any event, no later than when You share such Error Corrections with any other Licensee. Original Contributor may, at its discretion, post Source Code for Your Error Corrections and Shared Modifications at www.helixcommunity.org. + + (c) Notices. All Error Corrections and Shared Modifications You create or contribute to must include a file documenting the additions and changes You made and the date of such additions and changes. You must also include the notice set forth in Attachment A-1 in the file header. If it is not possible to put the notice in a particular Source Code file due to its structure, then You must include the notice in a location (such as a relevant directory file), where a recipient would be most likely to look for such a notice. + + (d) Redistribution. + + (i) Source. Covered Code may be distributed in Source Code form only to another Licensee (except for students as provided below). You may not offer or impose any terms on any Covered Code that alter the rights, requirements, or responsibilities of such Licensee. You may distribute Covered Code to students for use in connection with their course work and research projects undertaken at accredited educational institutions. Such students need not be Licensees, but must be given a copy of the notice set forth in Attachment A-3 and such notice must also be included in a file header or prominent location in the Source Code made available to such students. + + (ii) Executable. You may distribute Executable version(s) of Covered Code to Licensees and other third parties only for the purpose of evaluation and comment in connection with Research Use by You and under a license of Your choice, but which limits use of such Executable version(s) of Covered Code only to that purpose. + + (iii) Modified Class, Interface and Package Naming. In connection with Research Use by You only, You may use Original Contributor's class, Interface and package names only to accurately reference or invoke the Source Code files You modify. Original Contributor grants to You a limited license to the extent necessary for such purposes. + + (e) Extensions. + + (i) You may not include any Source Code of Community Code in any Extensions. You may include the compiled Header Files of Community Code in an Extension provided that Your use of the Covered Code, including Header Files, complies with the TCK and all other terms of this License. + + (ii) Open. You must refrain from enforcing any Intellectual Property Rights You may have covering any interface(s) of Your Extension, which would prevent the implementation of such interface(s) by Original Contributor or any Licensee. This obligation does not prevent You from enforcing any Intellectual Property Right You have that would otherwise be infringed by an implementation of Your Extension. + + (iii) Interface Modifications and Naming. You may not modify or add to the GUID space "xxxxxxxx-0901-11d1-8B06-00A024406D59" or any other GUID space designated by Original Contributor. You may not modify any Interface prefix provided with the Covered Code or any other prefix designated by Original Contributor. + + (f) Any Specifications provided to You by Original Contributor are confidential and proprietary information of Original Contributor. You must maintain the confidentiality of the Specifications and may not disclose them to any third party without Original Contributor s prior written consent. You may only use the Specifications under the terms of this License and only for the purpose of implementing the terms of this License with respect to Community Code. You may not use, copy or distribute any such Specifications except as provided in writing by Original Contributor. + + 3.2. No Commercial Use. + + You may not make Commercial Use of any Covered Code unless You and Original Contributor have executed a copy of the RCSL - Commercial available at www.helixcommunity.org. + + 4. Versions of the License. + + 4.1 License Versions. + + Original Contributor may publish revised versions of the RCSL - R&D from time to time. Each version will be given a distinguishing version number. No one other than Original Contributor has the right to promulgate RCSL R&D versions. + + 4.2 Effect of New License Versions. + + (a) Once a particular version of Covered Code has been provided under a version of the RCSL R&D, You may always continue to use such Covered Code under the terms of that version of the RCSL R&D. You may also choose to use such Covered Code under the terms of any subsequent version of the RCSL R&D, but not under a prior version of the RCSL R&D. (For example, if a version of Covered Code has been provided under RCSL R&D 2.1, You may not use such Covered Code under RCSL R&D 2.0.) + + (b) Version 2.0 of this RCSL R&D (and all subsequent versions) supercedes versions 1.0, 1.1, and 1.2 of RCSL plus Attachments A-C. + + 4.3 Multiple-Licensed Code. + + Original Contributor may designate portions of the Covered Code as Multiple-Licensed. Multiple-Licensed means that the Original Contributor permits You to utilize those designated portions of the Covered Code under Your choice of this License or the alternative license(s), if any, specified by the Original Contributor at www.helixcommunity.org or in Header Files for the applicable Covered Code. + + 5. Disclaimer of Warranty. + + COVERED CODE IS PROVIDED UNDER THIS LICENSE "AS IS," WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. YOU BEAR THE ENTIRE RISK IN CONNECTION WITH YOUR USE AND DISTRIBUTION OF COVERED CODE UNDER THIS LICENSE. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT SUBJECT TO THIS DISCLAIMER. + + 6. Termination. + + 6.1 By You. + + You may terminate this License at anytime by providing written notice to Original Contributor. + + 6.2 By Original Contributor. + + This License and the rights granted hereunder will terminate: + + (i) automatically if You fail to comply with the terms of this License and fail to cure such breach within 30 days of receipt of written notice of the breach; + + (ii) immediately in the event of circumstances specified in Sections 7.1 and 8.4; or + + (iii) at Original Contributor's discretion upon any action initiated by You (including by cross-claim or counter claim) alleging that use or distribution by Original Contributor or any Licensee, of any Covered Code, the TCK or Specifications infringe a patent owned or controlled by You. + + 6.3 Effective of Termination. + + Upon termination, You must discontinue use of and destroy all copies of Covered Code in Your possession. All sublicenses to the Covered Code which You have properly granted shall survive any termination of this License. Provisions that, by their nature, should remain in effect beyond the termination of this License shall survive including, without limitation, Sections 2.2, 3, 5, 7 and 8. + + 6.4 No Compensation. + + Each party waives and releases the other from any claim to compensation or indemnity for permitted or lawful termination of the business relationship established by this License. + + 7. Liability. + + 7.1 Infringement. Should any of the Covered Code, TCK or Specifications ("Materials") become the subject of a claim of infringement, Original Contributor may, at its sole option, (i) attempt to procure the rights necessary for You to continue using the Materials, (ii) modify the Materials so that they are no longer infringing, or (iii) terminate Your right to use the Materials, immediately upon written notice. + + 7.2 LIMITATION OF LIABILITY. TO THE FULL EXTENT ALLOWED BY APPLICABLE LAW, ORIGINAL CONTRIBUTOR'S LIABILITY TO YOU FOR CLAIMS RELATING TO THIS LICENSE, WHETHER FOR BREACH OR IN TORT, SHALL BE LIMITED TO ONE HUNDRED PERCENT (100%) OF THE AMOUNT HAVING THEN ACTUALLY BEEN PAID BY YOU TO ORIGINAL CONTRIBUTOR FOR ALL COPIES LICENSED HEREUNDER OF THE PARTICULAR ITEMS GIVING RISE TO SUCH CLAIM, IF ANY, DURING THE TWELVE MONTHS PRECEDING THE CLAIMED BREACH. IN NO EVENT WILL YOU (RELATIVE TO YOUR SHARED MODIFICATIONS OR ERROR CORRECTIONS) OR ORIGINAL CONTRIBUTOR BE LIABLE FOR ANY INDIRECT, PUNITIVE, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH OR ARISING OUT OF THIS LICENSE (INCLUDING, WITHOUT LIMITATION, LOSS OF PROFITS, USE, DATA, OR OTHER ECONOMIC ADVANTAGE), HOWEVER IT ARISES AND ON ANY THEORY OF LIABILITY, WHETHER IN AN ACTION FOR CONTRACT, STRICT LIABILITY OR TORT (INCLUDING NEGLIGENCE) OR OTHERWISE, WHETHER OR NOT YOU OR ORIGINAL CONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. + + 8. Miscellaneous. + + 8.1 No Trademark License. + + You are granted no right, title or license to, or any interest in, any trademarks of Original Contributor hereunder. + + 8.2 Integration. + + This License represents the complete agreement concerning the subject matter hereof. + + 8.3 Assignment. + + Original Contributor may assign this License, and its rights and obligations hereunder, in its sole discretion. You may assign Your rights and obligations under this the License to a third party upon prior written notice to Original Contributor. + + 8.4 Severability. + + If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Notwithstanding the foregoing, if You are prohibited by law from fully and specifically complying with Sections 2.2 or 3, this License will immediately terminate and You must immediately discontinue any use of the Materials. + + 8.5 Governing Law. + + This License shall be governed by the laws of the United States and the State of Washington, as applied to contracts entered into and to be performed in Washington between Washington residents. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. The state and federal courts located in Seattle, Washington have exclusive jurisdiction over any claim relating to the License, including contract and tort claims. + + 8.6 Construction. + + Any law or regulation, which provides that the language of a contract shall be construed against the drafter, shall not apply to this License. + + 8.7 U.S. Government End Users. + + The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. + + 8.8 Press Announcements. + + You may make press announcements or other public statements regarding this License without the prior written consent of the Original Contributor, if Your statement is limited to announcing the licensing of the Covered Code. All other public announcements regarding this License require the prior written consent of the Original Contributor. Consent requests are welcome at press@helixcommunity.org. + + 8.9 International Use. + + a) Export/Import laws. Covered Code is subject to U.S. export control laws and may be subject to export or import regulations in other countries. You must comply strictly with all such laws and regulations and must obtain any necessary licenses to export, re-export, or import as may be permitted under this Agreement. + + b) Intellectual Property Protection. Due to limited intellectual property protection and enforcement in certain countries, this License does not permit the redistribution of the Covered Code, TCK and Specifications to any country on the list of restricted countries at www.helixcommunity.org. + + 8.10 Language. + + This License is in the English language only, which language shall be controlling in all respects, and all versions of this License in any other language shall be for accommodation only and shall not be binding on the parties to this License. All communications and notices made or given pursuant to this License, and all documentation and support to be provided, unless otherwise noted, shall be in the English language. json: rcsl-2.0.json - yml: rcsl-2.0.yml + yaml: rcsl-2.0.yml html: rcsl-2.0.html - text: rcsl-2.0.LICENSE + license: rcsl-2.0.LICENSE - license_key: rcsl-3.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-rcsl-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "REALNETWORKS COMMUNITY SOURCE LICENSE\nRESEARCH AND DEVELOPMENT USE\n(RCSL R&D)\nVersion\ + \ 3.0 (Rev. Date: May 29, 2007)\n \nRECITALS\n \nRealNetworks, Inc. (\"RN\") has developed\ + \ Specifications, Source Code implementations and Executables of the Helix DNA Code, and\ + \ an associated TCK; and\n \nRN desires to license the Helix DNA Code to a large community\ + \ to facilitate research, innovation and product development while maintaining compatibility\ + \ of such products with the Helix DNA Code as delivered by RN;\n \nTherefore, RN makes available\ + \ the Helix DNA Code, the Specifications, and the TCK available for Research and Development\ + \ Use only under the following terms: \n \nLICENSE\n \n1. Introduction. \n \nThe RealNetworks\ + \ Community Source License – Research and Development Use (\"RCSL R&D\" or \"License\")\ + \ is a license to use the Source Code of certain portions of the Helix DNA Code, Specifications,\ + \ and the TCK for research and development use only. You (\"Licensee,\" as more specifically\ + \ defined below) accept the terms of this License by downloading or using the Helix DNA\ + \ Code, the Specifications, or the TCK, unless Licensee and RN have signed a license agreement\ + \ that expressly supersedes this RCSL R&D. \n \nThis License does not include a license\ + \ to access or modify the Source Code of the Real Format Client Code. If Licensee desires\ + \ the right to receive access to the Source Code of the Real Format Client Code for the\ + \ purposes of porting and optimization, Licensee and RN may elect to execute a Real Format\ + \ Source Code Porting and Optimization Agreement.\n \nThis License does not include a license\ + \ to make Commercial Use of the Helix DNA Code or Real Format Client Code. If Licensee\ + \ desires a license for Commercial Use of the Helix DNA Code or Real Format Client Code,\ + \ Licensee and RN may desire to execute the RealNetworks Community Source License - Commercial\ + \ Use (\"RCSL Commercial\") for the version of the Helix DNA Code or Real Format Client\ + \ Code of which Licensee would like to make Commercial Use. Once executed by Licensee and\ + \ RN, the RCSL Commercial would supersede the terms of this License.\n \nCapitalized terms\ + \ used in this License are defined in the Glossary attached to the end of this License.\n\ + \ \n 2. License Grants.\n \n 2.1 RN Grant to use Covered Code, Specifications, and TCK.\ + \ \n \nSubject to Licensee’s compliance with the terms of this License, RN grants to Licensee\ + \ a worldwide, royalty-free, non-exclusive license, to the extent of RN's Intellectual Property\ + \ Rights covering the Covered Code, Specifications, and the TCK to do the following:\n \n\ + (a) Research Use License.\n \n(i) use, reproduce and modify the Covered Code and Specifications\ + \ to create Modifications and Reformatted Specifications for Research Use by Licensee;\n\ + \ \n(ii) publish and display Covered Code and Specifications with, or as part of Modifications,\ + \ as permitted under Section 3.1(b) below;\n \n(iii) reproduce and distribute copies of\ + \ Covered Code to Licensees and students for Research Use by Licensee;\n \n(iv) compile,\ + \ reproduce and distribute Covered Code in Executable form, and Reformatted Specifications\ + \ to anyone for Research Use by Licensee; and\n \n(v) use the TCK to develop and test Covered\ + \ Code.\n \n(b) Reservation of Rights.\n \nOther than the licenses expressly granted in\ + \ this License, RN retains all right, title, and interest in Covered Code, Specifications\ + \ and the TCK.\n \n(c) TCK Use Restrictions. \n \n Licensee may\ + \ not create derivative works of the TCK or use the TCK to test any implementation of the\ + \ Specifications except for the purpose of creating Compliant Covered Code. Licensee may\ + \ not publish Licensee’s test results or make claims of comparative compatibility with respect\ + \ to other implementations of the Specification. \n \n2.2 Licensee’s Grants.\n \n(a) To\ + \ Other Helix Licensees. Licensee hereby grants to each other Helix Licensee a license\ + \ to Licensee’s Error Corrections and Shared Modifications, of the same scope and extent\ + \ as RN's licenses under Section 2.1 (a) above relative to Research Use.\n \n(b) To RN.\ + \ Licensee hereby grant to RN a worldwide, royalty-free, non-exclusive, perpetual and irrevocable\ + \ license, to the extent of Licensee’s Intellectual Property Rights covering Licensee’s\ + \ Error Corrections, Shared Modifications and Reformatted Specifications, to use, reproduce,\ + \ modify, display and distribute Licensee’s Error Corrections, Shared Modifications and\ + \ Reformatted Specifications, in any form, including the right to sublicense such rights\ + \ through multiple tiers of distribution.\n \n(c) Other than the licenses expressly granted\ + \ in Sections 2.2(a) and (b) above, and the restrictions set forth in Section 3.1 below,\ + \ Licensee retains all right, title, and interest in Licensee’s Error Corrections, Shared\ + \ Modifications and Reformatted Specifications.\n \n2.3 Modifications by Helix Licensees.\ + \ \n \nLicensee may use, reproduce, modify, display and distribute Error Corrections, Shared\ + \ Modifications and Reformatted Specifications, obtained by Licensee under this License\ + \ from any other Helix Licensee, to the same scope and extent as with Original Code, Upgraded\ + \ Code and Specifications.\n \n2.4 Subcontracting. \n \n Licensee\ + \ may deliver the Source Code of Covered Code to other Helix Licensees for the sole purpose\ + \ of furnishing development services to Licensee in connection with Licensee’s rights granted\ + \ in this License, provided that Licensee does not enter a separate agreement with such\ + \ Licensee that contains provisions inconsistent with the ownership and licensing requirements\ + \ set forth in this License. \n \n3. Requirements and Responsibilities.\n \n3.1 Research\ + \ Use License. \n \nAs a condition of exercising the rights granted under Section 2.1(a)\ + \ above, Licensee must comply with the following:\n \n(a) Licensee’s Contributions. All\ + \ Error Corrections and Shared Modifications which Licensee creates are automatically subject\ + \ to the licenses granted under Section 2.2 above. Licensee is encouraged to license all\ + \ of Licensee’s other Modifications under Section 2.2 as Shared Modifications, but is not\ + \ required to do so. Licensee must notify RN of any errors in the Specifications.\n \n\ + (b) Source Code Availability. Licensee must provide all of Licensee’s Error Corrections\ + \ to RN as soon as reasonably practicable and, in any event, no later than when Licensee\ + \ shares such Error Corrections with any other Helix Licensee. RN may, at its discretion,\ + \ post Source Code for Licensee’s Error Corrections and Shared Modifications at the Helix\ + \ Community Website. \n \n(c) Notices. All Error Corrections and Shared Modifications\ + \ that Licensee creates or contributes to must include a file documenting the additions\ + \ and changes Licensee made and the date of such additions and changes. Licensee must also\ + \ include the notice set forth in Attachment A-1 in the file header of any Error Correction\ + \ or Shared Modification. If it is not possible to put the notice in a particular Source\ + \ Code file due to its structure, then Licensee must include the notice in a location (such\ + \ as a relevant directory file), where a recipient would be most likely to look for such\ + \ a notice.\n \n(d) Redistribution.\n \n(i) Source. Covered Code may be distributed in\ + \ Source Code form only to another Helix Licensee (except for students as provided below).\ + \ Licensee may not offer or impose any terms on any Covered Code that alter the rights,\ + \ requirements, or responsibilities of such Helix Licensee. Licensee may distribute Covered\ + \ Code to students for use in connection with their course work and research projects undertaken\ + \ at accredited educational institutions. Such students need not be Helix Licensees, but\ + \ must be given a copy of the notice set forth in Attachment A-3 and such notice must also\ + \ be included in a file header or prominent location in the Source Code made available to\ + \ such students.\n \n(ii) Executable. Licensee may distribute Executable version(s) of\ + \ Covered Code to Helix Licensees and other third parties only for the purpose of evaluation\ + \ and comment in connection with Research Use by Licensee and under a license of Licensee’s\ + \ choice, but that limits use of such Executable version(s) of Covered Code only to that\ + \ purpose.\n \n(iii) Modified Class, Interface and Package Naming. In connection with Research\ + \ Use by Licensee only, Licensee may use RN's class, Interface and package names only to\ + \ accurately reference or invoke the Source Code files that Licensee modifies. RN grants\ + \ to Licensee a limited license to the extent necessary for such purposes. \n \n(e) Extensions.\ + \ \n \n(i) Licensee may not include any Source Code of Community Code in any Extensions.\ + \ Licensee may include the compiled Header Files of Community Code in an Extension provided\ + \ that Licensee’s use of the Covered Code, including Header Files, complies with the TCK\ + \ and all other terms of this License. \n \n(ii) Open. Licensee must refrain from enforcing\ + \ any Intellectual Property Rights Licensee may have covering any Interface(s) of Licensee’s\ + \ Extension, which would prevent the implementation of such Interface(s) by RN or any Helix\ + \ Licensee. This obligation does not prevent Licensee from enforcing any Intellectual Property\ + \ Right Licensee has that would otherwise be infringed by an implementation of Licensee’s\ + \ Extension.\n \n(iii) Interface Modifications and Naming. Licensee may not modify or add\ + \ to the GUID space \"xxxxxxxx-0901-11d1-8B06-00A024406D59\" or any other GUID space designated\ + \ by RN. Licensee may not modify any Interface prefix provided with the Covered Code or\ + \ any other prefix designated by RN. \n \n(f) Any Specifications provided to Licensee by\ + \ RN are confidential and proprietary information of RN. Licensee must maintain the confidentiality\ + \ of the Specifications and may not disclose them to any third party without RN’s prior\ + \ written consent. Licensee may only use the Specifications under the terms of this License\ + \ and only for the purpose of implementing the terms of this License with respect to Community\ + \ Code. Licensee may not use, copy or distribute any such Specifications except as provided\ + \ in writing by RN.\n \nNo Commercial Use. \n \nLicensee may not make Commercial Use of\ + \ any Covered Code unless Licensee and RN have executed a copy of the RCSL - Commercial\ + \ available at the Helix Community Website, or another license agreement expressly granting\ + \ commercial use rights. \n \n4. Versions of the License.\n \n4.1 License Versions.\n\ + \ \nRN may publish revised versions of this License from time to time. Each version will\ + \ be given a distinguishing version number. No one other than RN has the right to promulgate\ + \ versions of this License.\n \n4.2 Effect of New License Versions.\n \n(a) Once a particular\ + \ version of Covered Code has been provided under a version of this License, Licensee may\ + \ always continue to use such Covered Code under the terms of that version of the License.\ + \ Licensee may also choose to use such Covered Code under the terms of any subsequent version\ + \ of the License, but not under a prior version of the License. (For example, if a version\ + \ of Covered Code has been provided under RCSL R&D 2.1, Licensee may not use such Covered\ + \ Code under RCSL R&D 2.0.) \n \n(b) Version 3.0 of this License (and all subsequent versions)\ + \ supercedes versions 1.0, 1.1, 1.2, and 2.0 of RCSL R&D plus Attachments A-C.\n \n4.3 Multiple-Licensed\ + \ Code.\n \nRN may designate portions of the Covered Code as \"Multiple-Licensed.\" \"\ + Multiple-Licensed\" means that the RN permits Licensee to utilize those designated portions\ + \ of the Covered Code under Licensee’s choice of this License or the alternative license(s),\ + \ if any, specified by the RN at the Helix Community Website or in Header Files for the\ + \ applicable Covered Code. \n \n5. Disclaimer of Warranty.\n \nCOVERED CODE IS PROVIDED\ + \ UNDER THIS LICENSE \"AS IS,\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED,\ + \ INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE,\ + \ FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. YOU BEAR THE ENTIRE RISK IN CONNECTION\ + \ WITH YOUR USE AND DISTRIBUTION OF COVERED CODE UNDER THIS LICENSE. THIS DISCLAIMER OF\ + \ WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS\ + \ AUTHORIZED HEREUNDER EXCEPT SUBJECT TO THIS DISCLAIMER.\n \n6. Termination.\n \n6.1 By\ + \ Licensee.\n \nLicensee may terminate this License at anytime by providing written notice\ + \ to RN.\n \n6.2 By RN.\n \nThis License and the rights granted hereunder will terminate:\n\ + \ \n(a) automatically if Licensee fails to comply with the terms of this License and fails\ + \ to cure such breach within 30 days of receipt of written notice of the breach;\n \n(b)\ + \ immediately in the event of circumstances specified in Sections 7.1 and 8.4; or\n \n(c)\ + \ at RN's discretion upon any action initiated by Licensee (including by cross-claim or\ + \ counter claim) alleging that use or distribution by RN or any Licensee, of any Covered\ + \ Code, the TCK or Specifications infringe a patent owned or controlled by Licensee.\n \n\ + 6.3 Effect of Termination. \n \nUpon termination, Licensee must discontinue use of and destroy\ + \ all copies of Covered Code in Licensee’s possession. All sublicenses to the Covered Code\ + \ that Licensee has properly granted shall survive any termination of this License. Provisions\ + \ that, by their nature, should remain in effect beyond the termination of this License\ + \ shall survive including, without limitation, Sections 2.2, 3, 5, 7, 8, and the Glossary.\n\ + \ \n6.4 No Compensation.\n \nEach party waives and releases the other from any claim to\ + \ compensation or indemnity for permitted or lawful termination of the business relationship\ + \ established by this License.\n \n7. Liability.\n \n7.1 Infringement. \n \nShould any\ + \ of the Covered Code, TCK or Specifications (\"Materials\") become the subject of a claim\ + \ of infringement, RN may, at its sole option, (i) attempt to procure the rights necessary\ + \ for Licensee to continue using the Materials, (ii) modify the Materials so that they are\ + \ no longer infringing, or (iii) terminate Licensee’s right to use the Materials, immediately\ + \ upon written notice. \n \n 7.2 LIMITATION OF LIABILITY. \n \ + \ \n TO THE FULL EXTENT ALLOWED BY APPLICABLE\ + \ LAW, RN'S LIABILITY TO LICENSEE FOR CLAIMS RELATING TO THIS LICENSE, WHETHER FOR BREACH\ + \ OR IN TORT, SHALL BE LIMITED TO ONE HUNDRED PERCENT (100%) OF THE AMOUNT HAVING THEN ACTUALLY\ + \ BEEN PAID BY LICENSEE TO RN FOR ALL COPIES LICENSED HEREUNDER OF THE PARTICULAR ITEMS\ + \ GIVING RISE TO SUCH CLAIM, IF ANY, DURING THE TWELVE MONTHS PRECEDING THE CLAIMED BREACH.\ + \ IN NO EVENT WILL EITHER PARTY BE LIABLE FOR ANY INDIRECT, PUNITIVE, SPECIAL, INCIDENTAL\ + \ OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH OR ARISING OUT OF THIS LICENSE (INCLUDING,\ + \ WITHOUT LIMITATION, LOSS OF PROFITS, USE, DATA, OR OTHER ECONOMIC ADVANTAGE), HOWEVER\ + \ IT ARISES AND ON ANY THEORY OF LIABILITY, WHETHER IN AN ACTION FOR CONTRACT, STRICT LIABILITY\ + \ OR TORT (INCLUDING NEGLIGENCE) OR OTHERWISE, WHETHER OR NOT LICENSEE OR RN HAS BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGE AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE\ + \ OF ANY REMEDY.\n \n8. Miscellaneous.\n \n8.1 No Trademark License. \n \nLicensee is granted\ + \ no right, title or license to, or any interest in, any trademarks of RN hereunder. \n\ + \ \n8.2 Integration. \n \nThis License represents the complete agreement concerning the\ + \ subject matter hereof.\n \n8.3 Assignment. \n \nRN may assign this License, and its rights\ + \ and obligations hereunder, in its sole discretion. Licensee may assign Licensee’s rights\ + \ and obligations under this the License to a third party upon prior written notice to RN.\ + \ \n \n8.4 Severability. \n \nIf any provision of this License is held to be unenforceable,\ + \ such provision shall be reformed only to the extent necessary to make it enforceable.\ + \ Notwithstanding the foregoing, if Licensee is prohibited by law from fully and specifically\ + \ complying with Sections 2.2 or 3, this License will immediately terminate and Licensee\ + \ must immediately discontinue any use of the Materials.\n \n8.5 Governing Law. \n \nThis\ + \ License shall be governed by the laws of the United States and the State of Washington,\ + \ as applied to contracts entered into and to be performed in Washington between Washington\ + \ residents. The application of the United Nations Convention on Contracts for the International\ + \ Sale of Goods is expressly excluded. The state and federal courts located in Seattle,\ + \ Washington have exclusive jurisdiction over any claim relating to the License, including\ + \ contract and tort claims.\n \n8.6 Construction. \n \nAny law or regulation, which provides\ + \ that the language of a contract shall be construed against the drafter, shall not apply\ + \ to this License.\n \n8.7 U.S. Government End Users. \n \nThe Covered Code is a \"commercial\ + \ item,\" as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial\ + \ computer software\" and \"commercial computer software documentation,\" as such terms\ + \ are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48\ + \ C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire\ + \ Covered Code with only those rights set forth herein. \n \n Press Announcements. \n \n\ + Licensee may make press announcements or other public statements regarding this License\ + \ without the prior written consent of the RN, if Licensee’s statement is limited to announcing\ + \ the licensing of the Covered Code. All other public announcements regarding this License\ + \ require the prior written consent of the RN. Consent requests are welcome at press@helixcommunity.org.\n\ + \ \n8.9 International Use.\n \n(a) Export/Import laws. Covered Code is subject to U.S.\ + \ export control laws and may be subject to export or import regulations in other countries.\ + \ Licensee must comply strictly with all such laws and regulations and must obtain any\ + \ necessary licenses to export, re-export, or import as may be permitted under this Agreement.\ + \ \n \n(b) Intellectual Property Protection. Due to limited intellectual property protection\ + \ and enforcement in certain countries, this License does not permit the redistribution\ + \ of the Covered Code, TCK and Specifications to any country on the list of restricted countries\ + \ at the Helix Community Website. \n \n8.10 Language. \n \nThis License is in the English\ + \ language only, which language shall be controlling in all respects, and all versions of\ + \ this License in any other language shall be for accommodation only and shall not be binding\ + \ on the parties to this License. All communications and notices made or given pursuant\ + \ to this License, and all documentation and support to be provided, unless otherwise noted,\ + \ shall be in the English language.\n \nGLOSSARY\n \n\"Applicable Patent Claims\" means:\ + \ (a) in the case where RN is the grantor of rights, claims of patents that (i) are now\ + \ or hereafter acquired, owned by or assigned to RN and (ii) are necessarily infringed by\ + \ using or making the Original Code or Upgraded Code, including Modifications provided by\ + \ RN, alone and not in combination with other software or hardware; and (b) in the case\ + \ where Licensee is the grantor of rights, claims of patents that (i) are now or hereafter\ + \ acquired, owned by or assigned to Licensee and (ii) are infringed (directly or indirectly)\ + \ by using or making Licensee Modifications, taken alone or in combination with Covered\ + \ Code.\n \n\"Application Programming Interfaces (APIs)\" means the interfaces, associated\ + \ header files, service provider interfaces, and protocols that enable a device, application,\ + \ operating system, or other program to obtain services from or make requests of (or provide\ + \ services in response to requests from) other programs, and to use, benefit from, or rely\ + \ on the resources, facilities, and capabilities of the relevant programs using the APIs.\ + \ APIs includes the technical documentation describing the APIs, the Source Code constituting\ + \ the API, and any Header Files used with the APIs.\n \n\"Commercial Use\" means any use\ + \ (internal or external), copying, sublicensing or distribution (internal or external),\ + \ directly or indirectly of Covered Code by Licensee other than Licensee’s Research Use\ + \ of Covered Code within Licensee’s business or organization or in conjunction with other\ + \ Helix Licensees with equivalent Research Use rights. Commercial Use includes any use\ + \ of the Covered Code for direct or indirect commercial or strategic gain, advantage or\ + \ other business purpose. Any Commercial Use requires execution of the RCSL - Commercial\ + \ Use by Licensee and RN.\n \n\"Community Code\" means the Original Code, Upgraded Code,\ + \ Error Corrections, Shared Modifications, or any combination thereof.\n \n\"Compliant Covered\ + \ Code\" means Covered Code that complies with the requirements of the TCK.\n \n\"Covered\ + \ Code\" means the Original Code, Upgraded Code, Modifications, or any combination thereof.\n\ + \ \n\"Error Correction\" means any change made to Community Code which conforms to the Specification\ + \ and corrects the adverse effect of a failure of Community Code to perform any function\ + \ set forth in or required by the Specifications.\n \n\"Executable\" means Covered Code\ + \ that has been converted from Source Code to the preferred form for execution by a computer\ + \ or digital processor (e.g. binary form). \n \n\"Extension(s)\" means any additional Interfaces\ + \ developed by or for Licensee which: (i) are designed for use with the Helix DNA Code;\ + \ (ii) constitute an API for a library of computing functions or services; and (iii) are\ + \ disclosed or otherwise made available to third party software developers for the purpose\ + \ of developing software which invokes such additional Interfaces. The foregoing shall\ + \ not apply to software developed by Licensee’s subcontractors to be exclusively used by\ + \ Licensee. \n \n\"Helix Community Website\" means the website located at www.helixcommunity.org\ + \ designated by RN for access to the Helix DNA Code, TCK and Specifications, and for posting\ + \ Modifications.\n \n\"Header File(s)\" means that portion of the Source Code that provides\ + \ the names and types of member functions, data members, class definitions, and interface\ + \ definitions necessary to implement the APIs for the Covered Code. Header Files include,\ + \ files specifically designated by RN as Header Files. Header Files do not include the\ + \ code necessary to implement the functionality underlying the Interface.\n \n\"Helix DNA\ + \ Client\" means the software identified on the Helix Community Website as the \"Helix DNA\ + \ Client\" and which implements audio and video playback and rendering as defined in the\ + \ Specifications.\n \n\"Helix DNA Code\" means the Helix DNA Server, the Helix DNA Client,\ + \ the Helix DNA Producer, and any other Helix technologies that may be designated by RN\ + \ from time to time. \n \n\"Helix DNA Producer\" means the portion of the Covered Code that\ + \ implements the Helix Producer engine as defined in the Specification.\n \n\"Helix DNA\ + \ Server\" means the portion of the Covered Code that implement the Helix Server streaming\ + \ engine as defined in the Specification.\n \n\"Helix Licensee\" means any person or entity\ + \ who has entered into a license agreement with RN providing for both source code development\ + \ rights to and Commercial Use of the Helix DNA Client.\n \n\"Intellectual Property Rights\"\ + \ means worldwide statutory and common law rights associated solely with (i) Applicable\ + \ Patent Claims; (ii) works of authorship including copyrights, copyright applications,\ + \ copyright registrations and \"moral rights\"; (iii) the protection of trade and industrial\ + \ secrets and confidential information; and (iv) divisions, continuations, renewals, and\ + \ re-issuances of the foregoing now existing or acquired in the future.\n \n\"Licensee\"\ + \ means the individual, or a legal entity acting by and through an individual or individuals,\ + \ exercising rights either under this License or under a future version of this License\ + \ issued pursuant to Section 4.1. For legal entities, \"Licensee\" includes any entity\ + \ that by majority voting interest controls, is controlled by, or is under common control\ + \ with Licensee.\n \n\"Interface\" means interfaces, functions, properties, class definitions,\ + \ APIs, Header Files, GUIDs, V-Tables, or protocols allowing one piece of software, firmware\ + \ or hardware to communicate or interoperate with another piece of software, firmware or\ + \ hardware.\n \n \n\"Modification(s)\" means (i) any addition to, deletion from or change\ + \ to the substance or structure of the Covered Code, including Interfaces; (ii) any new\ + \ file or other representation of computer program statements that contains any portion\ + \ of Covered Code; or (iii) any new Source Code implementing any portion of the Specifications.\n\ + \ \n\"Original Code\" means the Source Code for the Helix DNA Code as described on the Helix\ + \ Community Website.\n \n\"RN\" means RealNetworks, Inc., its affiliates and its successors\ + \ and assigns.\n \n\"Personal Use\" means use of Covered Code by an individual solely for\ + \ his or her personal, private and non-commercial purposes. An individual's use of Covered\ + \ Code in his or her capacity as an officer, employee, member, independent contractor or\ + \ agent of a corporation, business or organization (commercial or non-commercial) does not\ + \ qualify as Personal Use.\n \n\"Real Format Client Code\" means the software identified\ + \ on the Helix Community Website as \"Real Format Client Code\" and which enables the playing\ + \ back of content in RealMedia File Formats.\n \n\"RealMedia File Format\" means the file\ + \ format designed and developed by RN for storing multimedia data and used to store RealAudio\ + \ and RealVideo encoded streams. Valid RealMedia File Format extensions include: .rm, .rmj,\ + \ .rmc, .rmvb, .rms, .ra, .rv, .rax .rvx.\n \n\"Reformatted Specifications\" means any revision\ + \ to the Specifications which translates or reformats the Specifications (as for example\ + \ in connection with Licensee’s documentation) but which does not alter, subset or superset\ + \ the functional or operational aspects of the Specifications.\n \n\"Research Use\" means\ + \ use and distribution of Covered Code only for Licensee’s Personal Use, research or development\ + \ use and expressly excludes Commercial Use. Research Use also includes use of Covered\ + \ Code to teach individuals how to use Covered Code.\n \n\"Shared Modifications\" means\ + \ Modifications that Licensee distributes or uses for a Commercial Use, in addition to any\ + \ Modifications provided by Licensee, at Licensee’s option, pursuant to Section 2.2, or\ + \ received by Licensee from another Helix Licensee pursuant to Section 2.3.\n \n\"Source\ + \ Code\" means the preferred form of the Covered Code for making modifications to it, including\ + \ all modules it contains, plus any associated interface definition files, scripts used\ + \ to control compilation and installation of an Executable.\n \n\"Specifications\" means\ + \ the specifications for the Helix DNA Code and other documentation, as published by RN\ + \ from time to time on the Helix Community Website. \n \n\"Technology Compatibility Kit\"\ + \ or \"TCK\" means the interoperability testing specification, documentation and related\ + \ testing tools made available to Licensee by RN from time to time for the purpose of testing\ + \ Licensee’s implementations of the Covered Code. RN may, in its sole discretion and from\ + \ time to time, revise a TCK to correct errors or omissions and in connection with Upgrades.\n\ + \ \n \"Upgrade(s)\" means new versions of Helix DNA Code designated exclusively by RN as\ + \ an \"Upgrade\" and released by RN from time to time under the terms of this License.\n\ + \ \n\"Upgraded Code\" means the Source Code or Executables for Upgrades, possibly including\ + \ Modifications made by other Helix Licensees.\n \nATTACHMENT A\n \nREQUIRED NOTICES\n \n\ + ATTACHMENT A-1\n \nREQUIRED IN ALL CASES\n \nNotice to be included in header file of all\ + \ Error Corrections and Shared Modifications:\n \nPortions Copyright 1994-2007 © RealNetworks,\ + \ Inc. All rights reserved. \n\nThe contents of this file, and the files included with\ + \ this file, are subject to the current version of RealNetworks Community Source License\ + \ Version 3.0 (the \"License\"). You may not use this file except in compliance with the\ + \ License executed by both you and RealNetworks. You may obtain a copy of the License at\ + \ https://www.helixcommunity.org/content/rcsl. You may also obtain a copy of the License\ + \ by contacting RealNetworks directly. Please see the License for the rights, obligations\ + \ and limitations governing use of the contents of the file.\n\nThis file is part of the\ + \ Helix DNA Code. RealNetworks, Inc., is the developer of the Original Code and owns the\ + \ copyrights in the portions it created. \n\nThis file, and the files included with this\ + \ file, are distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS\ + \ OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION,\ + \ ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR\ + \ NON-INFRINGEMENT.\n\nContributor(s):\n \n\nTechnology Compatibility Kit Test Suite(s)\ + \ Location:\n \n\nATTACHMENT A-2\n \nSAMPLE LICENSEE CERTIFICATION\n \n\"By clicking the\ + \ `Agree' button below, you certify that you are a Licensee in good standing under the RealNetworks\ + \ Community Source License – Research and Development or the RealNetworks Community Source\ + \ License – Commercial, (each, a \"License\") and that your access, use and distribution\ + \ of code and information you may obtain at this site is subject to the License. If you\ + \ are not a Licensee under the RealNetworks Community Source License you may not download,\ + \ copy or use the Helix DNA Code.\n \nATTACHMENT A-3\n \nREQUIRED STUDENT NOTIFICATION\n\ + \ \n\"This software and related documentation has been obtained by your educational institution\ + \ subject to the RealNetworks Community Source License. You have been provided access to\ + \ the software and related documentation for use only in connection with your course work\ + \ and research activities as a matriculated student of your educational institution. Any\ + \ other use is expressly prohibited.\n \nTHIS SOFTWARE AND RELATED DOCUMENTATION CONTAINS\ + \ PROPRIETARY MATERIAL OF REALNETWORKS, INC, WHICH ARE PROTECTED BY VARIOUS INTELLECTUAL\ + \ PROPERTY RIGHTS.\n \nYou may not use this file except in compliance with the License.\ + \ You may obtain a copy of the License on the web at https://www.helixcommunity.org/content/rcsl." json: rcsl-3.0.json - yml: rcsl-3.0.yml + yaml: rcsl-3.0.yml html: rcsl-3.0.html - text: rcsl-3.0.LICENSE + license: rcsl-3.0.LICENSE - license_key: rdisc + category: Permissive spdx_license_key: Rdisc other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Rdisc (this program) was developed by Sun Microsystems, Inc. and is provided for unrestricted use provided that this legend is included on all tape media and as a part of the software program in whole or part. Users may copy or modify Rdisc without charge, and they may freely distribute it. + + RDISC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. + + Rdisc is provided with no support and without any obligation on the part of Sun Microsystems, Inc. to assist in its use, correction, modification or enhancement. + + SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY RDISC OR ANY PART THEREOF. + + In no event will Sun Microsystems, Inc. be liable for any lost revenue or profits or other special, indirect and consequential damages, even if Sun has been advised of the possibility of such damages. json: rdisc.json - yml: rdisc.yml + yaml: rdisc.yml html: rdisc.html - text: rdisc.LICENSE + license: rdisc.LICENSE - license_key: realm-platform-extension-2017 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-realm-platform-extension-2017 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Realm Platform Extensions License + + Copyright (c) 2011-2017 Realm Inc All rights reserved + + Redistribution and use in binary form, with or without modification, is + permitted provided that the following conditions are met: + + 1. You agree not to attempt to decompile, disassemble, reverse engineer or + otherwise discover the source code from which the binary code was derived. + You may, however, access and obtain a separate license for most of the + source code from which this Software was created, at + http://realm.io/pricing/. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. json: realm-platform-extension-2017.json - yml: realm-platform-extension-2017.yml + yaml: realm-platform-extension-2017.yml html: realm-platform-extension-2017.html - text: realm-platform-extension-2017.LICENSE + license: realm-platform-extension-2017.LICENSE - license_key: red-hat-attribution + category: Permissive spdx_license_key: LicenseRef-scancode-red-hat-attribution other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Permission to use, copy, modify, and distribute this software \nis freely granted,\ + \ provided that this notice is preserved." json: red-hat-attribution.json - yml: red-hat-attribution.yml + yaml: red-hat-attribution.yml html: red-hat-attribution.html - text: red-hat-attribution.LICENSE + license: red-hat-attribution.LICENSE - license_key: red-hat-bsd-simplified + category: Permissive spdx_license_key: LicenseRef-scancode-red-hat-bsd-simplified other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 RED HAT, INC. ''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 FREEBSD PROJECT 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 Red Hat, Inc. json: red-hat-bsd-simplified.json - yml: red-hat-bsd-simplified.yml + yaml: red-hat-bsd-simplified.yml html: red-hat-bsd-simplified.html - text: red-hat-bsd-simplified.LICENSE + license: red-hat-bsd-simplified.LICENSE - license_key: red-hat-logos + category: Proprietary Free spdx_license_key: LicenseRef-scancode-red-hat-logos other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Red Hat, Inc. grants you the right to use the Package during the + normal operation of other software programs that call upon the + Package. Red Hat, Inc. grants to you the right and license to copy + and redistribute the Package, but only in conjunction with copying or + redistributing additional software packages that call upon the Package + during the normal course of operation. Such rights are granted to you + without fee, provided that: + + 1. The above copyright notice and this license are included with each + copy you make, and they remain intact and are not altered, deleted, or + modified in any way; + 2. You do not modify the Package, or the appearance of any or all of + the Logos in any manner; and + 3. You do not use any or all of the Logos as, or as part of, a + trademark, trade name, or trade identifier; or in any other fashion + except as set forth in this license. + + NO WARRANTY. THIS PACKAGE IS PROVIDED "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 RED HAT, INC. 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 PACKAGE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. json: red-hat-logos.json - yml: red-hat-logos.yml + yaml: red-hat-logos.yml html: red-hat-logos.html - text: red-hat-logos.LICENSE + license: red-hat-logos.LICENSE - license_key: red-hat-trademarks + category: Proprietary Free spdx_license_key: LicenseRef-scancode-red-hat-trademarks other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Red Hat®, Red Hat Enterprise Linux, and the Shadowman logo, either + separately or in combination, are hereinafter referred to as "Red Hat + Trademarks" and are trademarks of Red Hat, Inc., registered in the + United States and other countries. + + The redhat-logos package ("Package") contains images that are or include + the Red Hat Trademarks and Red Hat trade dress. You are granted the + right to use the Package only during the normal operation of software + programs that call upon the Package. No other copyright or trademark + license is granted herein. + + NO WARRANTY. THIS PACKAGE IS PROVIDED "AS IS" AND ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND + INTELLECTUAL PROPERTY NONINFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL + RED HAT, INC. 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 + PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. json: red-hat-trademarks.json - yml: red-hat-trademarks.yml + yaml: red-hat-trademarks.yml html: red-hat-trademarks.html - text: red-hat-trademarks.LICENSE + license: red-hat-trademarks.LICENSE - license_key: redis-source-available-1.0 + category: Source-available spdx_license_key: LicenseRef-scancode-redis-source-available-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: "REDIS SOURCE AVAILABLE LICENSE AGREEMENT\n\nVersion 1, February 21, 2019\n \nThis Agreement\ + \ sets forth the terms on which the Licensor makes available the Software. BY INSTALLING,\ + \ DOWNLOADING, ACCESSING, USING OR DISTRIBUTING ANY OF THE SOFTWARE, YOU AGREE TO THE TERMS\ + \ AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO SUCH TERMS AND CONDITIONS, YOU\ + \ MUST NOT USE THE SOFTWARE. If you are receiving the Software on behalf of a legal entity,\ + \ you represent and warrant that you have the actual authority to agree to the terms and\ + \ conditions of this agreement on behalf of such entity. \n\n\n0. DEFINITIONS\n\nThe terms\ + \ below have the meanings set forth below for purposes of this Agreement:\n\nAgreement:\ + \ this Redis Source Available License Agreement.\n\nDatabase Product: any of the following\ + \ products or services: (a) database; (b) caching engine; (c) stream processing engine;\ + \ (d) search engine; (e) indexing engine; (f) machine learning or deep learning or artificial\ + \ intelligence serving engine; \n(g) a product or service exposing the Redis API; (h) a\ + \ product or service exposing the Redis Modules API; or \n(i) a product or service exposing\ + \ the Software API. \n\nLicense: the Redis Source Available License described in Section\ + \ 1. \n\nLicensor: Redis Labs Ltd.\n\nModification: a modification of the Software made\ + \ by You under the License, Section 1.1(c). \n\nRedis: the open source Redis software as\ + \ described in redis.io. \n\nSoftware: certain software components designed to work with\ + \ Redis and provided to you under this Agreement.\n\nYou: the recipient of this Software,\ + \ an individual, or the entity on whose behalf you are receiving the Software.\n\nYour Application:\ + \ an application developed by or for You, where such application is not a Database Product.\n\ + \n1. LICENSE GRANT AND CONDITIONS \n\n 1.1 Subject to the terms and conditions of this\ + \ Section 1, Licensor hereby grants to You a non-exclusive, royalty-free, worldwide, non-transferable\ + \ license during the term of this Agreement to: \n (a) distribute or make available\ + \ the Software or your Modifications under the terms of this Agreement, only as part of\ + \ Your Application, so long as you include the following notice on any copy you distribute:\ + \ \"This software is subject to the terms of the Redis Source Available License Agreement\"\ + .\n (b) use the Software, or your Modifications, only as part of Your Application,\ + \ but not in connection with any Database Product that is distributed or otherwise made\ + \ available by any third party.\n (c) modify the Software, provided that Modifications\ + \ remain subject to the terms of this License. \n (d) reproduce the Software as\ + \ necessary for the above. \n\n 1.2. Sublicensing. You may sublicense the right to\ + \ use the Software fully embedded in Your Application as distributed by you in accordance\ + \ with Section 1.1(a), pursuant to a written license that disclaims all warranties and liabilities\ + \ on behalf of Licensor.\n\n 1.3. Notices. On all copies of the Software that you\ + \ make, you must retain all copyright or other proprietary notices.\n \n2. TERM AND\ + \ TERMINATION. This Agreement will continue unless and until earlier terminated as set\ + \ forth herein. If You breach any of its conditions or obligations under this Agreement,\ + \ this Agreement will terminate automatically and the licenses granted herein will terminate\ + \ automatically.\n\n3. INTELLECTUAL PROPERTY. As between the parties, Licensor retains\ + \ all right, title, and interest in the Software, and to Redis or other Licensor trademarks\ + \ or service marks, and all intellectual property rights therein. Licensor hereby reserves\ + \ all rights not expressly granted to You in this Agreement. \n\n4. DISCLAIMER. TO THE\ + \ EXTENT ALLOWABLE UNDER LAW, LICENSOR HEREBY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS,\ + \ EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, AND SPECIFICALLY DISCLAIMS ANY WARRANTY OF\ + \ MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, WITH RESPECT TO THE SOFTWARE. Licensor\ + \ has no obligation to support the Software. \n\n5. LIMITATION OF LIABILITY. TO THE EXTENT\ + \ ALLOWABLE UNDER LAW, LICENSOR WILL NOT BE LIABLE FOR ANY DAMAGES OF ANY KIND, INCLUDING\ + \ BUT NOT LIMITED TO, LOST PROFITS OR ANY CONSEQUENTIAL, SPECIAL, INCIDENTAL, INDIRECT,\ + \ OR DIRECT DAMAGES, ARISING OUT OF OR RELATING TO THIS AGREEMENT. \n\n6. GENERAL. You\ + \ are not authorized to assign Your rights under this Agreement to any third party. Licensor\ + \ may freely assign its rights under this Agreement to any third party. This Agreement is\ + \ the entire agreement between the parties on the subject matter hereof. No amendment or\ + \ modification hereof will be valid or binding upon the parties unless made in writing and\ + \ signed by the duly authorized representatives of both parties. In the event that any\ + \ provision, including without limitation any condition, of this Agreement is held to be\ + \ unenforceable, this Agreement and all licenses and rights granted hereunder will immediately\ + \ terminate. Failure by Licensor to exercise any right hereunder will not be construed\ + \ as a waiver of any subsequent breach of that right or as a waiver of any other right.\ + \ This Agreement will be governed by and interpreted in accordance with the laws of the\ + \ state of California, without reference to its conflict of laws principles. If You are\ + \ located within the United States, all disputes arising out of this Agreement are subject\ + \ to the exclusive jurisdiction of courts located in Santa Clara County, California. USA.\ + \ If You are located outside of the United States, any dispute, controversy or claim arising\ + \ out of or relating to this Agreement will be referred to and finally determined by arbitration\ + \ in accordance with the JAMS before a single arbitrator in Santa Clara County, California.\ + \ Judgment upon the award rendered by the arbitrator may be entered in any court having\ + \ jurisdiction thereof." json: redis-source-available-1.0.json - yml: redis-source-available-1.0.yml + yaml: redis-source-available-1.0.yml html: redis-source-available-1.0.html - text: redis-source-available-1.0.LICENSE + license: redis-source-available-1.0.LICENSE - license_key: regexp + category: Permissive spdx_license_key: Spencer-86 other_spdx_license_keys: - LicenseRef-scancode-regexp is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is granted to anyone to use this software for any + purpose on any computer system, and to redistribute it freely, + subject to the following restrictions: + + 1. The author is not responsible for the consequences of use of + this software, no matter how awful, even if they arise + from defects in it. + + 2. The origin of this software must not be misrepresented, either + by explicit claim or by omission. + + 3. Altered versions must be plainly marked as such, and must not + be misrepresented as being the original software. json: regexp.json - yml: regexp.yml + yaml: regexp.yml html: regexp.html - text: regexp.LICENSE + license: regexp.LICENSE - license_key: reportbug + category: Permissive spdx_license_key: LicenseRef-scancode-reportbug other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This program is freely distributable per 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 appears in all copies and that + both that copyright notice and this permission notice appear in + supporting documentation. + + I DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL I + 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. json: reportbug.json - yml: reportbug.yml + yaml: reportbug.yml html: reportbug.html - text: reportbug.LICENSE + license: reportbug.LICENSE - license_key: repoze + category: Permissive spdx_license_key: BSD-3-Clause-Modification other_spdx_license_keys: - LicenseRef-scancode-repoze is_exception: no is_deprecated: no - category: Permissive + text: | + 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: + + Redistributions in source code must retain the accompanying + copyright notice, this list of conditions, and the following + disclaimer. + + 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. + + 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. + + 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. json: repoze.json - yml: repoze.yml + yaml: repoze.yml html: repoze.html - text: repoze.LICENSE + license: repoze.LICENSE - license_key: rh-eula + category: Copyleft spdx_license_key: LicenseRef-scancode-rh-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + END USER LICENSE AGREEMENT + RED HAT® ENTERPRISE LINUX® AND RED HAT APPLICATIONS + + This end user license agreement ("EULA") governs the use of any of the versions + of Red Hat Enterprise Linux, any Red Hat Applications (as set forth at + www.redhat.com/licenses/products), and any related updates, source code, + appearance, structure and organization (the "Programs"), regardless of the + delivery mechanism. + + + 1. License Grant. Subject to the following terms, Red Hat, Inc. ("Red Hat") + grants to you ("User") a perpetual, worldwide license to the Programs + pursuant to the GNU General Public License v.2. The Programs are either a + modular operating system or an application consisting of hundreds of + software components. With the exception of certain image files identified + in Section 2 below, the license agreement for each software component is + located in the software component's source code and permits User to run, + copy, modify, and redistribute (subject to certain obligations in some + cases) the software component, in both source code and binary code forms. + This EULA pertains solely to the Programs and does not limit User's rights + under, or grant User rights that supersede, the license terms of any + particular component. + + 2. Intellectual Property Rights. The Programs and each of their components are + owned by Red Hat and others and are protected under copyright law and under + other laws as applicable. Title to the Programs and any component, or to any + copy, modification, or merged portion shall remain with the aforementioned, + subject to the applicable license. The "Red Hat" trademark and the + "Shadowman" logo are registered trademarks of Red Hat in the U.S. and other + countries. This EULA does not permit User to distribute the Programs or + their components using Red Hat's trademarks, regardless of whether the copy + has been modified. User should read the information found at + http://www.redhat.com/about/corporate/trademark/ before distributing a copy + of the Programs. User may make a commercial redistribution of the Programs + only if, (a) a separate agreement with Red Hat authorizing such commercial + redistribution is executed or other written permission is granted by Red Hat + or (b) User modifies any files identified as "REDHAT-LOGOS" to remove and + replace all images containing the "Red Hat" trademark or the "Shadowman" + logo. Merely deleting these files may corrupt the Programs. + + 3. Limited Warranty. Except as specifically stated in this Section 3, a + separate agreement with Red Hat, or a license for a particular component, to + the maximum extent permitted under applicable law, the Programs and the + components are provided and licensed "as is" without warranty of any kind, + expressed or implied, including the implied warranties of merchantability, + non-infringement or fitness for a particular purpose. Red Hat warrants that + the media on which the Programs and the components are furnished will be + free from defects in materials and manufacture under normal use for a period + of 30 days from the date of delivery to User. Red Hat does not warrant that + the functions contained in the Programs will meet User's requirements or + that the operation of the Programs will be entirely error free, appear + precisely as described in the accompanying documentation, or comply with + regulatory requirements. This warranty extends only to the party that + purchases services pertaining to the Programs from Red Hat or a Red Hat + authorized distributor. + + 4. Limitation of Remedies and Liability. To the maximum extent permitted by + applicable law, User's exclusive remedy under this EULA is to return any + defective media within 30 days of delivery along with a copy of User's + payment receipt and Red Hat, at its option, will replace it or refund the + money paid by User for the media. To the maximum extent permitted under + applicable law, neither Red Hat, any Red Hat authorized distributor, nor the + licensor of any component provided to User under this EULA will be liable to + User for any incidental or consequential damages, including lost profits or + lost savings arising out of the use or inability to use the Programs or any + component, even if Red Hat, such authorized distributor or licensor has been + advised of the possibility of such damages. In no event shall Red Hat's + liability, an authorized distributor’s liability or the liability of the + licensor of a component provided to User under this EULA exceed the amount + that User paid to Red Hat under this EULA during the twelve months preceding + the action. + + 5. Export Control. As required by the laws of the United States and other + countries, User represents and warrants that it: (a) understands that the + Programs and their components may be subject to export controls under the + U.S. Commerce Department’s Export Administration Regulations ("EAR"); (b) is + not located in a prohibited destination country under the EAR or + U.S. sanctions regulations (currently Cuba, Iran, Iraq, North Korea, Sudan + and Syria, subject to change as posted by the United States government); (c) + will not export, re-export, or transfer the Programs to any prohibited + destination or persons or entities on the U.S. Bureau of Industry and + Security Denied Parties List or Entity List, or the U.S. Office of Foreign + Assets Control list of Specially Designated Nationals and Blocked Persons, + or any similar lists maintained by other countries, without the necessary + export license(s) or authorizations(s); (d) will not use or transfer the + Programs for use in connection with any nuclear, chemical or biological + weapons, missile technology, or military end-uses where prohibited by an + applicable arms embargo, unless authorized by the relevant government agency + by regulation or specific license; (e) understands and agrees that if it is + in the United States and exports or transfers the Programs to eligible end + users, it will, to the extent required by EAR Section 740.17(e), submit + semi-annual reports to the Commerce Department’s Bureau of Industry and + Security, which include the name and address (including country) of each + transferee; and (f) understands that countries including the United States + may restrict the import, use, or export of encryption products (which may + include the Programs and the components) and agrees that it shall be solely + responsible for compliance with any such import, use, or export + restrictions. + + 6. Third Party Programs. Red Hat may distribute third party software programs + with the Programs that are not part of the Programs. These third party + programs are not required to run the Programs, are provided as a convenience + to User, and are subject to their own license terms. The license terms + either accompany the third party software programs or can be viewed at + http://www.redhat.com/licenses/thirdparty/eula.html. If User does not agree + to abide by the applicable license terms for the third party software + programs, then User may not install them. If User wishes to install the + third party software programs on more than one system or transfer the third + party software programs to another party, then User must contact the + licensor of the applicable third party software programs. + + 7. General. In the case of a discrepancy between the Spanish version and the + English version of this EULA, the English version shall prevail. If any + provision of this agreement is held to be unenforceable, that shall not + affect the enforceability of the remaining provisions. This agreement shall + be governed by the laws of the State of New York and of the United States, + without regard to any conflict of laws provisions. The rights and + obligations of the parties to this EULA shall not be governed by the United + Nations Convention on the International Sale of Goods. + + Copyright © 2007 Red Hat, Inc. All rights reserved. "Red Hat" and the Red Hat + "Shadowman" logo are registered trademarks of Red Hat, Inc. "Linux" is a + registered trademark of Linus Torvalds. All other trademarks are the property of + their respective owners. json: rh-eula.json - yml: rh-eula.yml + yaml: rh-eula.yml html: rh-eula.html - text: rh-eula.LICENSE + license: rh-eula.LICENSE - license_key: rh-eula-lgpl + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-rh-eula-lgpl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + This end user license agreement ("EULA") governs the use of the JBoss + Enterprise Middleware and any related updates, source code, appearance, + structure and organization (the "Programs"), regardless of the delivery + mechanism. + + 1. License Grant. Subject to the following terms, Red Hat, Inc. ("Red + Hat") grants to you a perpetual, worldwide license to the Programs (each + of which may include multiple software components) pursuant to the GNU + Lesser General Public License v. 2.1. With the exception of certain + image files identified in Section 2 below, each software component is + governed by a license that permits you to run, copy, modify, and + redistribute (subject to certain obligations in some cases) the software + component. This EULA pertains solely to the Programs and does not limit + your rights under, or grant you rights that supersede, the license terms + applicable to any particular component. + + 2. Intellectual Property Rights. The Programs and each of their + components are owned by Red Hat and other licensors and are protected + under copyright law and under other laws as applicable. Title to the + Programs and any component, or to any copy, modification, or merged + portion shall remain with Red Hat and other licensors, subject to the + applicable license. The "JBoss" trademark, "Red Hat" trademark, the + individual Program trademarks, and the "Shadowman" logo are registered + trademarks of Red Hat and its affiliates in the U.S. and other + countries. This EULA does not permit you to distribute the Programs + using Red Hat's trademarks, regardless of whether they have been + modified. You may make a commercial redistribution of the Programs only + if (a) permitted under a separate written agreement with Red Hat + authorizing such commercial redistribution or (b) you remove and + replaced all occurrences of Red Hat trademarks and logos. Modifications + to the software may corrupt the Programs. You should read the + information found at http://www.redhat.com/about/corporate/trademark/ + before distributing a copy of the Programs. + + 3. Limited Warranty. Except as specifically stated in this Section 3, a + separate agreement with Red Hat, or a license for a particular + component, to the maximum extent permitted under applicable law, the + Programs and the components are provided and licensed "as is" without + warranty of any kind, expressed or implied, including the implied + warranties of merchantability, non-infringement or fitness for a + particular purpose. Red Hat warrants that the media on which the + Programs and the components are provided will be free from defects in + materials and manufacture under normal use for a period of 30 days from + the date of delivery to you. Neither Red Hat nor its affiliates warrant + that the functions contained in the Programs will meet your requirements + or that the operation of the Programs will be entirely error free, + appear or perform precisely as described in the accompanying + documentation, or comply with regulatory requirements. This warranty + extends only to the party that purchases subscription services for the + Programs from Red Hat and/or its affiliates or a Red Hat authorized + distributor. + + 4. Limitation of Remedies and Liability. To the maximum extent permitted + by applicable law, your exclusive remedy under this EULA is to return + any defective media within 30 days of delivery along with a copy of your + payment receipt and Red Hat, at its option, will replace it or refund + the money you paid for the media. To the maximum extent permitted under + applicable law, under no circumstances will Red Hat, its affiliates, any + Red Hat authorized distributor, or the licensor of any component + provided to you under this EULA be liable to you for any incidental or + consequential damages, including lost profits or lost savings arising + out of the use or inability to use the Programs or any component, even + if Red Hat, its affiliates, an authorized distributor, and/or licensor + has been advised of the possibility of such damages. In no event shall + Red Hat's or its affiliates’ liability, an authorized distributor’s + liability or the liability of the licensor of a component provided to + you under this EULA exceed the amount that you paid to Red Hat for the + media under this EULA. + + 5. Export Control. As required by the laws of the United States and + other countries, you represent and warrant that you: (a) understand that + the Programs and their components may be subject to export controls + under the U.S. Commerce Department’s Export Administration Regulations + ("EAR"); (b) are not located in a prohibited destination country under + the EAR or U.S. sanctions regulations (currently Cuba, Iran, Iraq, North + Korea, Sudan and Syria, subject to change as posted by the United States + government); (c) will not export, re-export, or transfer the Programs to + any prohibited destination, persons or entities on the U.S. Bureau of + Industry and Security Denied Parties List or Entity List, or the U.S. + Office of Foreign Assets Control list of Specially Designated Nationals + and Blocked Persons, or any similar lists maintained by other countries, + without the necessary export license(s) or authorizations(s); (d) will + not use or transfer the Programs for use in connection with any nuclear, + chemical or biological weapons, missile technology, or military end-uses + where prohibited by an applicable arms embargo, unless authorized by the + relevant government agency by regulation or specific license; (e) + understand and agree that if you are in the United States and export or + transfer the Programs to eligible end users, you will, to the extent + required by EAR Section 740.17(e), submit semi-annual reports to the + Commerce Department’s Bureau of Industry and Security, which include the + name and address (including country) of each transferee; and (f) + understand that countries including the United States may restrict the + import, use, or export of encryption products (which may include the + Programs and the components) and agree that you shall be solely + responsible for compliance with any such import, use, or export + restrictions. + + 6. Third Party Programs. Red Hat may distribute third party software + programs with the Programs that are not part of the Programs. These + third party software programs are not required to run the Programs, are + provided as a convenience to you, and are subject to their own license + terms. The license terms either accompany the third party software + programs or can be viewed at + http://www.redhat.com/licenses/thirdparty/eula.html. If you do not agree + to abide by the applicable license terms for the third party software + programs, then you may not install them. If you wish to install the + third party software programs on more than one system or transfer the + third party software programs to another party, then you must contact + the licensor of the applicable third party software programs. + + 7. General. If any provision of this EULA is held to be unenforceable, + the enforceability of the remaining provisions shall not be affected. + Any claim, controversy or dispute arising under or relating to this EULA + shall be governed by the laws of the State of New York and of the United + States, without regard to any conflict of laws provisions. The rights + and obligations of the parties to this EULA shall not be governed by the + United Nations Convention on the International Sale of Goods. + + Copyright © 2010 Red Hat, Inc. All rights reserved. "Red Hat," "JBoss" + and the JBoss logo are registered trademarks of Red Hat, Inc. All other + trademarks are the property of their respective owners. json: rh-eula-lgpl.json - yml: rh-eula-lgpl.yml + yaml: rh-eula-lgpl.yml html: rh-eula-lgpl.html - text: rh-eula-lgpl.LICENSE + license: rh-eula-lgpl.LICENSE - license_key: ricebsd + category: Permissive spdx_license_key: LicenseRef-scancode-ricebsd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Rice BSD Software License + Permits source and binary redistribution of the software ARPACK and + P_ARPACK for both non-commercial and commercial use. + + Copyright (©) 2001, Rice University + Developed by D.C. Sorensen, R.B. Lehoucq, C. Yang, and K. Maschhoff. + 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. + • If you modify the source for these routines we ask that you change the + name of the routine and comment the changes made to the original. + • Written notification is provided to the developers of intent to use + this software. Also, we ask that use of ARPACK is properly cited in + any resulting publications or software documentation. + • Neither the name of Rice University (RICE) 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 RICE 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 RICE 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. json: ricebsd.json - yml: ricebsd.yml + yaml: ricebsd.yml html: ricebsd.html - text: ricebsd.LICENSE + license: ricebsd.LICENSE - license_key: richard-black + category: Permissive spdx_license_key: LicenseRef-scancode-richard-black other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: This code is copyright 1993 Richard Black. All rights are reserved. You may use this + code only if it includes a statement to that effect. json: richard-black.json - yml: richard-black.yml + yaml: richard-black.yml html: richard-black.html - text: richard-black.LICENSE + license: richard-black.LICENSE - license_key: ricoh-1.0 + category: Copyleft Limited spdx_license_key: RSCPL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Ricoh Source Code Public License\n\nVersion 1.0\n\n1. Definitions.\n\n1.1. \"Contributor\"\ + \ means each entity that creates or contributes to the creation of Modifications.\n\n1.2.\ + \ \"Contributor Version\" means the combination of the Original Code, prior Modifications\ + \ used by a Contributor, and the Modifications made by that particular Contributor.\n\n\ + 1.3. \"Electronic Distribution Mechanism\" means a website or any other mechanism generally\ + \ accepted in the software development community for the electronic transfer of data.\n\n\ + 1.4. \"Executable Code\" means Governed Code in any form other than Source Code.\n\n1.5.\ + \ \"Governed Code\" means the Original Code or Modifications or the combination of the Original\ + \ Code and Modifications, in each case including portions thereof.\n\n1.6. \"Larger Work\"\ + \ means a work which combines Governed Code or portions thereof with code not governed by\ + \ the terms of this License.\n\n1.7. \"Licensable\" means the right to grant, to the maximum\ + \ extent possible, whether at the time of the initial grant or subsequently acquired, any\ + \ and all of the rights conveyed herein.\n\n1.8. \"License\" means this document.\n\n1.9.\ + \ \"Modifications\" means any addition to or deletion from the substance or structure of\ + \ either the Original Code or any previous Modifications. When Governed Code is released\ + \ as a series of files, a Modification is:\n\n(a) Any addition to or deletion from the contents\ + \ of a file containing Original Code or previous Modifications.\n\n(b) Any new file that\ + \ contains any part of the Original Code or previous Modifications.\n\n1.10. \"Original\ + \ Code\" means the \"Platform for Information Applications\" Source Code as released under\ + \ this License by RSV.\n\n1.11 \"Patent Claims\" means any patent claim(s), now owned or\ + \ hereafter acquired, including without limitation, method, process, and apparatus claims,\ + \ in any patent Licensable by the grantor of a license thereto.\n\n1.12. \"RSV\" means Ricoh\ + \ Silicon Valley, Inc., a California corporation with offices at 2882 Sand Hill Road, Suite\ + \ 115, Menlo Park, CA 94025-7022.\n2882 Sand Hill Road, Suite 115, Menlo Park, CA 94025-7022.\n\ + \n1.13. \"Source Code\" means the preferred form of the Governed Code for making modifications\ + \ to it, including all modules it contains, plus any associated interface definition files,\ + \ scripts used to control compilation and installation of Executable Code, or a list of\ + \ source code differential comparisons against either the Original Code or another well\ + \ known, available Governed Code of the Contributor's choice. The Source Code can be in\ + \ a compressed or archival form, provided the appropriate decompression or de-archiving\ + \ software is widely available for no charge.\n\n1.14. \"You\" means an individual or a\ + \ legal entity exercising rights under, and complying with all of the terms of, this License\ + \ or a future version of this License issued under Section 6.1. For legal entities, \"You\"\ + \ includes any entity which controls, is controlled by, or is under common control with\ + \ You. For purposes of this definition, \"control\" means (a) the power, direct or indirect,\ + \ to cause the direction or management of such entity, whether by contract or otherwise,\ + \ or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial\ + \ ownership of such entity.\n\n2. Source Code License.\n\n2.1. Grant from RSV. RSV hereby\ + \ grants You a worldwide, royalty-free, non-exclusive license, subject to third party intellectual\ + \ property claims:\n\n(a) to use, reproduce, modify, create derivative works of, display,\ + \ perform, sublicense and distribute the Original Code (or portions thereof) with or without\ + \ Modifications, or as part of a Larger Work; and\n\n(b) under Patent Claims infringed by\ + \ the making, using or selling of Original Code, to make, have made, use, practice, sell,\ + \ and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof).\n\ + \n2.2. Contributor Grant. Each Contributor hereby grants You a worldwide, royalty-free,\ + \ non-exclusive license, subject to third party intellectual property claims:\n\n(a) to\ + \ use, reproduce, modify, create derivative works of, display, perform, sublicense and distribute\ + \ the Modifications created by such Contributor (or portions thereof) either on an unmodified\ + \ basis, with other Modifications, as Governed Code or as part of a Larger Work; and\n\n\ + (b) under Patent Claims infringed by the making, using, or selling of Modifications made\ + \ by that Contributor either alone and/or in combination with its Contributor Version (or\ + \ portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise\ + \ dispose of: (i) Modifications made by that Contributor (or portions thereof); and (ii)\ + \ the combination of Modifications made by that Contributor with its Contributor Version\ + \ (or portions of such combination).\n\n3. Distribution Obligations.\n\n3.1. Application\ + \ of License. The Modifications which You create or to which You contribute are governed\ + \ by the terms of this License, including without limitation Section 2.2. The Source Code\ + \ version of Governed Code may be distributed only under the terms of this License or a\ + \ future version of this License released under Section 6.1, and You must include a copy\ + \ of this License with every copy of the Source Code You distribute. You may not offer or\ + \ impose any terms on any Source Code version that alters or restricts the applicable version\ + \ of this License or the recipients' rights hereunder. However, You may include an additional\ + \ document offering the additional rights described in Section 3.5.\n\n3.2. Availability\ + \ of Source Code. Any Modification which You create or to which You contribute must be made\ + \ available in Source Code form under the terms of this License either on the same media\ + \ as an Executable Code version or via an Electronic Distribution Mechanism to anyone to\ + \ whom you made an Executable Code version available; and if made available via an Electronic\ + \ Distribution Mechanism, must remain available for at least twelve (12) months after the\ + \ date it initially became available, or at least six (6) months after a subsequent version\ + \ of that particular Modification has been made available to such recipients. You are responsible\ + \ for ensuring that the Source Code version remains available even if the Electronic Distribution\ + \ Mechanism is maintained by a third party.\n\n3.3. Description of Modifications. You must\ + \ cause all Governed Code to which you contribute to contain a file documenting the changes\ + \ You made to create that Governed Code and the date of any change. You must include a prominent\ + \ statement that the Modification is derived, directly or indirectly, from Original Code\ + \ provided by RSV and including the name of RSV in (a) the Source Code, and (b) in any notice\ + \ in an Executable Code version or related documentation in which You describe the origin\ + \ or ownership of the Governed Code.\n\n3.4. Intellectual Property Matters.\n\n3.4.1. Third\ + \ Party Claims. If You have knowledge that a party claims an intellectual property right\ + \ in particular functionality or code (or its utilization under this License), you must\ + \ include a text file with the source code distribution titled \"LEGAL\" which describes\ + \ the claim and the party making the claim in sufficient detail that a recipient will know\ + \ whom to contact. If you obtain such knowledge after You make Your Modification available\ + \ as described in Section 3.2, You shall promptly modify the LEGAL file in all copies You\ + \ make available thereafter and shall take other steps (such as notifying RSV and appropriate\ + \ mailing lists or newsgroups) reasonably calculated to inform those who received the Governed\ + \ Code that new knowledge has been obtained. In the event that You are a Contributor, You\ + \ represent that, except as disclosed in the LEGAL file, your Modifications are your original\ + \ creations and, to the best of your knowledge, no third party has any claim (including\ + \ but not limited to intellectual property claims) relating to your Modifications. You represent\ + \ that the LEGAL file includes complete details of any license or other restriction associated\ + \ with any part of your Modifications. \n 3.4.2. Contributor APIs. If Your Modification\ + \ is an application programming interface and You own or control patents which are reasonably\ + \ necessary to implement that API, you must also include this information in the LEGAL file.\n\ + \n3.5. Required Notices. You must duplicate the notice in Exhibit A in each file of the\ + \ Source Code, and this License in any documentation for the Source Code, where You describe\ + \ recipients' rights relating to Governed Code. If You created one or more Modification(s),\ + \ You may add your name as a Contributor to the notice described in Exhibit A. If it is\ + \ not possible to put such notice in a particular Source Code file due to its structure,\ + \ then you must include such notice in a location (such as a relevant directory file) where\ + \ a user would be likely to look for such a notice. You may choose to offer, and to charge\ + \ a fee for, warranty, support, indemnity or liability obligations to one or more recipients\ + \ of Governed Code. However, You may do so only on Your own behalf, and not on behalf of\ + \ RSV or any Contributor. You must make it absolutely clear than any such warranty, support,\ + \ indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify\ + \ RSV and every Contributor for any liability incurred by RSV or such Contributor as a result\ + \ of warranty, support, indemnity or liability terms You offer.\n\n3.6. Distribution of\ + \ Executable Code Versions. You may distribute Governed Code in Executable Code form only\ + \ if the requirements of Section 3.1-3.5 have been met for that Governed Code, and if You\ + \ include a prominent notice stating that the Source Code version of the Governed Code is\ + \ available under the terms of this License, including a description of how and where You\ + \ have fulfilled the obligations of Section 3.2. The notice must be conspicuously included\ + \ in any notice in an Executable Code version, related documentation or collateral in which\ + \ You describe recipients' rights relating to the Governed Code. You may distribute the\ + \ Executable Code version of Governed Code under a license of Your choice, which may contain\ + \ terms different from this License, provided that You are in compliance with the terms\ + \ of this License and that the license for the Executable Code version does not attempt\ + \ to limit or alter the recipient's rights in the Source Code version from the rights set\ + \ forth in this License. If You distribute the Executable Code version under a different\ + \ license You must make it absolutely clear that any terms which differ from this License\ + \ are offered by You alone, not by RSV or any Contributor. You hereby agree to indemnify\ + \ RSV and every Contributor for any liability incurred by RSV or such Contributor as a result\ + \ of any such terms You offer. \n 3.7. Larger Works. You may create a Larger Work by combining\ + \ Governed Code with other code not governed by the terms of this License and distribute\ + \ the Larger Work as a single product. In such a case, You must make sure the requirements\ + \ of this License are fulfilled for the Governed Code.\n\n4. Inability to Comply Due to\ + \ Statute or Regulation.\n\nIf it is impossible for You to comply with any of theterms of\ + \ this License with respect to some or all of the Governed Code due to statute or regulation\ + \ then You must: (a) comply with the terms of this License to the maximum extent possible;\ + \ and (b) describe the limitations and the code they affect. Such description must be included\ + \ in the LEGAL file described in Section 3.4 and must be included with all distributions\ + \ of the Source Code. Except to the extent prohibited by statute or regulation, such description\ + \ must be sufficiently detailed for a recipient of ordinary skill to be able to understand\ + \ it.\n\n5. Trademark Usage.\n\n5.1. Advertising Materials. All advertising materials mentioning\ + \ features or use of the Governed Code must display the following acknowledgement: \"This\ + \ product includes software developed by Ricoh Silicon Valley, Inc.\"\n\n5.2. Endorsements.\ + \ The names \"Ricoh,\" \"Ricoh Silicon Valley,\" and \"RSV\" must not be used to endorse\ + \ or promote Contributor Versions or Larger Works without the prior written permission of\ + \ RSV.\n\n5.3. Product Names. Contributor Versions and Larger Works may not be called \"\ + Ricoh\" nor may the word \"Ricoh\" appear in their names without the prior written permission\ + \ of RSV.\n\n6. Versions of the License.\n\n6.1. New Versions. RSV may publish revised and/or\ + \ new versions of the License from time to time. Each version will be given a distinguishing\ + \ version number.\n\n6.2. Effect of New Versions. Once Governed Code has been published\ + \ under a particular version of the License, You may always continue to use it under the\ + \ terms of that version. You may also choose to use such Governed Code under the terms of\ + \ any subsequent version of the License published by RSV. No one other than RSV has the\ + \ right to modify the terms applicable to Governed Code created under this License.\n\n\ + 7. Disclaimer of Warranty.\n\nGOVERNED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\"\ + \ BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION,\ + \ WARRANTIES THAT THE GOVERNED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR\ + \ PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE GOVERNED\ + \ CODE IS WITH YOU. SHOULD ANY GOVERNED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT RSV\ + \ OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION.\ + \ THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY\ + \ GOVERNED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. Termination.\n\ + \n8.1. This License and the rights granted hereunder will terminate automatically if You\ + \ fail to comply with terms herein and fail to cure such breach within 30 days of becoming\ + \ aware of the breach. All sublicenses to the Governed Code which are properly granted shall\ + \ survive any termination of this License. Provisions which, by their nature, must remain\ + \ in effect beyond the termination of this License shall survive.\n\n8.2. If You initiate\ + \ patent infringement litigation against RSV or a Contributor (RSV or the Contributor against\ + \ whom You file such action is referred to as \"Participant\") alleging that:\n\n(a) such\ + \ Participant's Original Code or Contributor Version directly or indirectly infringes any\ + \ patent, then any and all rights granted by such Participant to You under Sections 2.1\ + \ and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively,\ + \ unless if within 60 days after receipt of notice You either: (i) agree in writing to pay\ + \ Participant a mutually agreeable reasonable royalty for Your past and future use of the\ + \ Original Code or the Modifications made by such Participant, or (ii) withdraw Your litigation\ + \ claim with respect to the Original Code or the Contributor Version against such Participant.\ + \ If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually\ + \ agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights\ + \ granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at\ + \ the expiration of the 60 day notice period specified above.\n\n(b) any software, hardware,\ + \ or device provided to You by the Participant, other than such Participant's Original Code\ + \ or Contributor Version, directly or indirectly infringes any patent, then any rights granted\ + \ to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of\ + \ the date You first made, used, sold, distributed, or had made, Original Code or the Modifications\ + \ made by that Participant.\n\n8.3. If You assert a patent infringement claim against Participant\ + \ alleging that such Participant's Original Code or Contributor Version directly or indirectly\ + \ infringes any patent where such claim is resolved (such as by license or settlement) prior\ + \ to the initiation of patent infringement litigation, then the reasonable value of the\ + \ licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account\ + \ in determining the amount or value of any payment or license.\n\n8.4. In the event of\ + \ termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding\ + \ distributors and resellers) which have been validly granted by You or any distributor\ + \ hereunder prior to termination shall survive termination.\n\n9. Limitation of Liability.\n\ + \nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE),\ + \ CONTRACT, OR OTHERWISE, SHALL RSV, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF GOVERNED CODE,\ + \ OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY DIRECT,\ + \ INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT\ + \ LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION,\ + \ OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\ + \ INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY\ + \ TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE\ + \ EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION\ + \ OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION\ + \ MAY NOT APPLY TO YOU. TO THE EXTENT THAT ANY EXCLUSION OF DAMAGES ABOVE IS NOT VALID,\ + \ YOU AGREE THAT IN NO EVENT WILL RSVS LIABILITY UNDER OR RELATED TO THIS AGREEMENT EXCEED\ + \ FIVE THOUSAND DOLLARS ($5,000). THE GOVERNED CODE IS NOT INTENDED FOR USE IN CONNECTION\ + \ WITH ANY NUCLER, AVIATION, MASS TRANSIT OR MEDICAL APPLICATION OR ANY OTHER INHERENTLY\ + \ DANGEROUS APPLICATION THAT COULD RESULT IN DEATH, PERSONAL INJURY, CATASTROPHIC DAMAGE\ + \ OR MASS DESTRUCTION, AND YOU AGREE THAT NEITHER RSV NOR ANY CONTRIBUTOR SHALL HAVE ANY\ + \ LIABILITY OF ANY NATURE AS A RESULT OF ANY SUCH USE OF THE GOVERNED CODE.\n\n10. U.S.\ + \ Government End Users.\n\nThe Governed Code is a \"commercial item,\" as that term is defined\ + \ in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\" and \"\ + commercial computer software documentation,\" as such terms are used in 48 C.F.R. 12.212\ + \ (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4\ + \ (June 1995), all U.S. Government End Users acquire Governed Code with only those rights\ + \ set forth herein.\n\n11. Miscellaneous.\n\nThis License represents the complete agreement\ + \ concerning subject matter hereof. If any provision of this License is held to be unenforceable,\ + \ such provision shall be reformed only to the extent necessary to make it enforceable.\ + \ This License shall be governed by California law provisions (except to the extent applicable\ + \ law, if any, provides otherwise), excluding its conflict-of-law provisions. The parties\ + \ submit to personal jurisdiction in California and further agree that any cause of action\ + \ arising under or related to this Agreement shall be brought in the Federal Courts of the\ + \ Northern District of California, with venue lying in Santa Clara County, California. The\ + \ losing party shall be responsible for costs, including without limitation, court costs\ + \ and reasonable attorneys fees and expenses. Notwithstanding anything to the contrary herein,\ + \ RSV may seek injunctive relief related to a breach of this Agreement in any court of competent\ + \ jurisdiction. The application of the United Nations Convention on Contracts for the International\ + \ Sale of Goods is expressly excluded. Any law or regulation which provides that the language\ + \ of a contract shall be construed against the drafter shall not apply to this License.\n\ + \n12. Responsibility for Claims.\n\nExcept in cases where another Contributor has failed\ + \ to comply with Section 3.4, You are responsible for damages arising, directly or indirectly,\ + \ out of Your utilization of rights under this License, based on the number of copies of\ + \ Governed Code you made available, the revenues you received from utilizing such rights,\ + \ and other relevant factors. You agree to work with affected parties to distribute responsibility\ + \ on an equitable basis.\n\nEXHIBIT A\n\n\"The contents of this file are subject to the\ + \ Ricoh Source Code Public License Version 1.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.risource.org/RPL\n\ + \nSoftware distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY\ + \ OF ANY KIND, either express or implied. See the License for the specific language governing\ + \ rights and limitations under the License.\n\nThis code was initially developed by Ricoh\ + \ Silicon Valley, Inc. Portions created by Ricoh Silicon Valley, Inc. are Copyright (C)\ + \ 1995-1999. All Rights Reserved.\n\nContributor(s): .\"" json: ricoh-1.0.json - yml: ricoh-1.0.yml + yaml: ricoh-1.0.yml html: ricoh-1.0.html - text: ricoh-1.0.LICENSE + license: ricoh-1.0.LICENSE - license_key: riverbank-sip + category: Free Restricted spdx_license_key: LicenseRef-scancode-riverbank-sip other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + RIVERBANK COMPUTING LIMITED LICENSE AGREEMENT FOR SIP 4.9.2 + + 1. This LICENSE AGREEMENT is between Riverbank Computing Limited + ("Riverbank"), and the Individual or Organization ("Licensee") accessing + and otherwise using SIP 4.9.2 software in source or binary form and its + associated documentation. SIP 4.9.2 comprises a software tool for + generating Python bindings for software C and C++ libraries, and a Python + extension module used at runtime by those generated bindings. + + 2. Subject to the terms and conditions of this License Agreement, Riverbank + 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 SIP 4.9.2 alone or in + any derivative version, provided, however, that Riverbank's License + Agreement and Riverbank's notice of copyright, e.g., "Copyright (c) 2009 + Riverbank Computing Limited; All Rights Reserved" are retained in + SIP 4.9.2 alone or in any derivative version prepared by Licensee. + + 3. In the event Licensee prepares a derivative work that is based on + or incorporates SIP 4.9.2 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 SIP 4.9.2. + + 4. Licensee may not use SIP 4.9.2 to generate Python bindings for any + C or C++ library for which bindings are already provided by Riverbank. + + 5. Riverbank is making SIP 4.9.2 available to Licensee on an "AS IS" + basis. RIVERBANK MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR + IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, RIVERBANK MAKES NO AND + DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS + FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF SIP 4.9.2 WILL NOT + INFRINGE ANY THIRD PARTY RIGHTS. + + 6. RIVERBANK SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF + SIP 4.9.2 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS + AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING SIP 4.9.2, + OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 7. This License Agreement will automatically terminate upon a material + breach of its terms and conditions. + + 8. Nothing in this License Agreement shall be deemed to create any + relationship of agency, partnership, or joint venture between Riverbank + and Licensee. This License Agreement does not grant permission to use + Riverbank trademarks or trade name in a trademark sense to endorse or + promote products or services of Licensee, or any third party. + + 9. By copying, installing or otherwise using SIP 4.9.2, Licensee + agrees to be bound by the terms and conditions of this License Agreement. json: riverbank-sip.json - yml: riverbank-sip.yml + yaml: riverbank-sip.yml html: riverbank-sip.html - text: riverbank-sip.LICENSE + license: riverbank-sip.LICENSE - license_key: robert-hubley + category: Permissive spdx_license_key: LicenseRef-scancode-robert-hubley other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This software is provided ``AS IS'' and any express or implied \nwarranties,\ + \ including, but not limited to, the implied warranties of \nmerchantability and fitness\ + \ for a particular purpose, are disclaimed. \nIn no event shall the authors be liable\ + \ for any direct, indirect, \nincidental, special, exemplary, or consequential damages\ + \ (including, but \nnot limited to, procurement of substitute goods or services; loss of\ + \ use, \ndata, or profits; or business interruption) however caused and on any \ntheory\ + \ of liability, whether in contract, strict liability, or tort \n(including negligence\ + \ or otherwise) arising in any way out of the use of \nthis software, even if advised of\ + \ the possibility of such damage." json: robert-hubley.json - yml: robert-hubley.yml + yaml: robert-hubley.yml html: robert-hubley.html - text: robert-hubley.LICENSE + license: robert-hubley.LICENSE - license_key: rogue-wave + category: Commercial spdx_license_key: LicenseRef-scancode-rogue-wave other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + Rogue Wave Software License + + (c) Copyright Rogue Wave Software, Inc. + ALL RIGHTS RESERVED + + The software and information contained herein are proprietary to, and + comprise valuable trade secrets of, Rogue Wave Software, Inc., which + intends to preserve as trade secrets such software and information. + This software is furnished pursuant to a written license agreement and + may be used, copied, transmitted, and stored only in accordance with + the terms of such license and with the inclusion of the above copyright + notice. This software and information or any other copies thereof may + not be provided or otherwise made available to any other person. + + Notwithstanding any other lease or license that may pertain to, or + accompany the delivery of, this computer software and information, the + rights of the Government regarding its use, reproduction and disclosure + are as set forth in Section 52.227-19 of the FARS Computer + Software-Restricted Rights clause. + + Use, duplication, or disclosure by the Government is subject to + restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in + Technical Data and Computer Software clause at DFARS 252.227-7013. + Contractor/Manufacturer is Rogue Wave Software, Inc., + P.O. Box 2328, Corvallis, Oregon 97339. + + This computer software and information is distributed with "restricted + rights." Use, duplication or disclosure is subject to restrictions as + set forth in NASA FAR SUP 18-52.227-79 (April 1985) "Commercial + Computer Software-Restricted Rights (April 1985)." If the Clause at + 18-52.227-74 "Rights in Data General" is specified in the contract, + then the "Alternate III" clause applies. json: rogue-wave.json - yml: rogue-wave.yml + yaml: rogue-wave.yml html: rogue-wave.html - text: rogue-wave.LICENSE + license: rogue-wave.LICENSE - license_key: rpl-1.1 + category: Copyleft Limited spdx_license_key: RPL-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Reciprocal Public License, version 1.1 \n\nCopyright (C) 2001-2002 Technical Pursuit\ + \ Inc., \nAll Rights Reserved. \n\nPREAMBLE \n\nThis Preamble is intended to describe, in\ + \ plain English, the nature, intent, and scope of this License. However, this Preamble is\ + \ not a part of this License. The legal effect of this License is dependent only upon the\ + \ terms of the License and not this Preamble. \n\nThis License is based on the concept of\ + \ reciprocity. In exchange for being granted certain rights under the terms of this License\ + \ to Licensor's Software, whose Source Code You have access to, You are required to reciprocate\ + \ by providing equal access and rights to all third parties to the Source Code of any Modifications,\ + \ Derivative Works, and Required Components for execution of same (collectively defined\ + \ as Extensions) that You Deploy by Deploying Your Extensions under the terms of this License.\ + \ In this fashion the available Source Code related to the original Licensed Software is\ + \ enlarged for the benefit of everyone. \n\nUnder the terms of this License You may: \n\ + a. Distribute the Licensed Software exactly as You received it under the terms of this License\ + \ either alone or as a component of an aggregate software distribution containing programs\ + \ from several different sources without payment of a royalty or other fee. \nb. Use the\ + \ Licensed Software for any purpose consistent with the rights granted by this License,\ + \ but the Licensor is not providing You any warranty whatsoever, nor is the Licensor accepting\ + \ any liability in the event that the Licensed Software doesn't work properly or causes\ + \ You any injury or damages. \nc. Create Extensions to the Licensed Software consistent\ + \ with the rights granted by this License, provided that You make the Source Code to any\ + \ Extensions You Deploy available to all third parties under the terms of this License,\ + \ document Your Modifications clearly, and title all Extensions distinctly from the Licensed\ + \ Software. \nd. Charge a fee for warranty or support, or for accepting indemnity or liability\ + \ obligations for Your customers. \n\nUnder the terms of this License You may not: \na.\ + \ Charge for the Source Code to the Licensed Software, or Your Extensions, other than a\ + \ nominal fee not to exceed Your cost for reproduction and distribution where such reproduction\ + \ and distribution involve physical media. \nb. Modify or delete any pre-existing copyright\ + \ notices, change notices, or License text in the Licensed Software. \nc. Assert any patent\ + \ claims against the Licensor or Contributors, or which would in any way restrict the ability\ + \ of any third party to use the Licensed Software or portions thereof in any form under\ + \ the terms of this License, or Your rights to the Licensed Software under this License\ + \ automatically terminate. \nd. Represent either expressly or by implication, appearance,\ + \ or otherwise that You represent Licensor or \n\nContributors in any capacity or that You\ + \ have any form of legal association by virtue of this License. \nUnder the terms of this\ + \ License You must: \na. Document any Modifications You make to the Licensed Software including\ + \ the nature of the change, the authors of the change, and the date of the change. This\ + \ documentation must appear both in the Source Code and in a text file titled \"CHANGES\"\ + \ distributed with the Licensed Software and Your Extensions. \nb. Make the Source Code\ + \ for any Extensions You Deploy available in a timely fashion via an Electronic Distribution\ + \ Mechanism such as FTP or HTTP download. \nc. Notify the Licensor of the availability of\ + \ Source Code to Your Extensions in a timely fashion and include in such notice a brief\ + \ description of the Extensions, the distinctive title used, and instructions on how to\ + \ acquire the Source Code and future updates. \nd. Grant Licensor and all third parties\ + \ a world-wide, non-exclusive, royalty-free license under any intellectual property rights\ + \ owned or controlled by You to use, reproduce, display, perform, modify, sublicense, and\ + \ distribute Your Extensions, in any form, under the terms of this License. \n\nLICENSE\ + \ TERMS \n\n1.0 General; Applicability & Definitions. This Reciprocal Public License Version\ + \ 1.1 (\"License\") applies to any programs or other works as well as any and all updates\ + \ or maintenance releases of said programs or works (\"Software\") not already covered by\ + \ this License which the Software copyright holder (\"Licensor\") makes publicly available\ + \ containing a Notice (hereinafter defined) from the Licensor specifying or allowing use\ + \ or distribution under the terms of this License. As used in this License and Preamble:\ + \ \n\n1.1 \"Contributor\" means any person or entity who created or contributed to the creation\ + \ of an Extension. \n\n1.2 \"Deploy\" means to use, Serve, sublicense or distribute Licensed\ + \ Software other than for Your internal Research and/or Personal Use, and includes without\ + \ limitation, any and all internal use or distribution of Licensed Software within Your\ + \ business or organization other than for Research and/or Personal Use, as well as direct\ + \ or indirect sublicensing or distribution of Licensed Software by You to any third party\ + \ in any form or manner. \n\n1.3 \"Derivative Works\" as used in this License is defined\ + \ under U.S. copyright law. \n\n1.4 \"Electronic Distribution Mechanism\" means a mechanism\ + \ generally accepted in the software development community for the electronic transfer of\ + \ data such as download from an FTP or web site, where such mechanism is publicly accessible.\ + \ \n\n1.5 \"Extensions\" means any Modifications, Derivative Works, or Required Components\ + \ as those terms are defined in this License. \n\n1.6 \"License\" means this Reciprocal\ + \ Public License. \n\n1.7 \"Licensed Software\" means any Software licensed pursuant to\ + \ this License. Licensed Software also includes all previous Extensions from any Contributor\ + \ that You receive. \n\n1.8 \"Licensor\" means the copyright holder of any Software previously\ + \ uncovered by this License who releases the Software under the terms of this License. \n\ + \n1.9 \"Modifications\" means any additions to or deletions from the substance or structure\ + \ of (i) a file or other storage containing Licensed Software, or (ii) any new file or storage\ + \ that contains any part of Licensed Software, or (iii) any file or storage which replaces\ + \ or otherwise alters the original functionality of Licensed Software at runtime. \n\n1.10\ + \ \"Notice\" means the notice contained in EXHIBIT A. \n\n1.11 \"Personal Use\" means use\ + \ of Licensed Software by an individual solely for his or her personal, private and non-commercial\ + \ purposes. An individual's use of Licensed Software in his or her capacity as an officer,\ + \ employee, member, independent contractor or agent of a corporation, business or organization\ + \ (commercial or non-commercial) does not qualify as Personal Use. \n\n1.12 \"Required Components\"\ + \ means any text, programs, scripts, schema, interface definitions, control files, or other\ + \ works created by You which are required by a third party of average skill to successfully\ + \ install and run Licensed Software containing Your Modifications, or to install and run\ + \ Your Derivative Works. \n\n1.13 \"Research\" means investigation or experimentation for\ + \ the purpose of understanding the nature and limits of the Licensed Software and its potential\ + \ uses. \n\n1.14 \"Serve\" means to deliver Licensed Software and/or Your Extensions by\ + \ means of a computer network to one or more computers for purposes of execution of Licensed\ + \ Software and/or Your Extensions. \n\n1.15 \"Software\" means any computer programs or\ + \ other works as well as any updates or maintenance releases of those programs or works\ + \ which are distributed publicly by Licensor. \n\n1.16 \"Source Code\" means the preferred\ + \ form for making modifications to the Licensed Software and/or Your Extensions, including\ + \ all modules contained therein, plus any associated text, interface definition files, scripts\ + \ used to control compilation and installation of an executable program or other components\ + \ required by a third party of average skill to build a running version of the Licensed\ + \ Software or Your Extensions. \n\n1.17 \"You\" or \"Your\" means an individual or a legal\ + \ entity exercising rights under this License. For legal entities, \"You\" or \"Your\" includes\ + \ any entity which controls, is controlled by, or is under common control with, You, where\ + \ \"control\" means (a) the power, direct or indirect, to cause the direction or management\ + \ of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%)\ + \ or more of the outstanding shares or beneficial ownership of such entity. \n\n2.0 Acceptance\ + \ Of License. You are not required to accept this License since you have not signed it,\ + \ however nothing else grants you permission to use, copy, distribute, modify, or create\ + \ derivatives of either the Software or any Extensions created by a Contributor. These actions\ + \ are prohibited by law if you do not accept this License. Therefore, by performing any\ + \ of these actions You indicate Your acceptance of this License and Your agreement to be\ + \ bound by all its terms and conditions. IF YOU DO NOT AGREE WITH ALL THE TERMS AND CONDITIONS\ + \ OF THIS LICENSE DO NOT USE, MODIFY, CREATE DERIVATIVES, OR DISTRIBUTE THE SOFTWARE. IF\ + \ IT IS IMPOSSIBLE FOR YOU TO COMPLY WITH ALL THE TERMS AND CONDITIONS OF THIS LICENSE THEN\ + \ YOU CAN NOT USE, MODIFY, CREATE DERIVATIVES, OR DISTRIBUTE THE SOFTWARE. \n\n3.0 Grant\ + \ of License From Licensor. Subject to the terms and conditions of this License, Licensor\ + \ hereby grants You a world-wide, royalty-free, non-exclusive license, subject to Licensor's\ + \ intellectual property rights, and any third party intellectual property claims derived\ + \ from the Licensed Software under this License, to do the following: \n\n3.1 Use, reproduce,\ + \ modify, display, perform, sublicense and distribute Licensed Software and Your Extensions\ + \ in both Source Code form or as an executable program. \n\n3.2 Create Derivative Works\ + \ (as that term is defined under U.S. copyright law) of Licensed Software by adding to or\ + \ deleting from the substance or structure of said Licensed Software. \n\n3.3 Under claims\ + \ of patents now or hereafter owned or controlled by Licensor, to make, use, have made,\ + \ and/or otherwise dispose of Licensed Software or portions thereof, but solely to the extent\ + \ that any such claim is necessary to enable You to make, use, have made, and/or otherwise\ + \ dispose of Licensed Software or portions thereof. \n\n3.4 Licensor reserves the right\ + \ to release new versions of the Software with different features, specifications, capabilities,\ + \ functions, licensing terms, general availability or other characteristics. Title, ownership\ + \ rights, and intellectual property rights in and to the Licensed Software shall remain\ + \ in Licensor and/or its Contributors. \n\n4.0 Grant of License From Contributor. By application\ + \ of the provisions in Section 6 below, each Contributor hereby grants You a world-wide,\ + \ royalty-free, non-exclusive license, subject to said Contributor's intellectual property\ + \ rights, and any third party intellectual property claims derived from the Licensed Software\ + \ under this License, to do the following: \n\n4.1 Use, reproduce, modify, display, perform,\ + \ sublicense and distribute any Extensions Deployed by such Contributor or portions thereof,\ + \ in both Source Code form or as an executable program, either on an unmodified basis or\ + \ as part of Derivative Works. \n\n4.2 Under claims of patents now or hereafter owned or\ + \ controlled by Contributor, to make, use, have made, and/or otherwise dispose of Extensions\ + \ or portions thereof, but solely to the extent that any such claim is necessary to enable\ + \ You to make, use, have made, and/or otherwise dispose of Contributor's Extensions or portions\ + \ thereof. \n\n5.0 Exclusions From License Grant. Nothing in this License shall be deemed\ + \ to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual\ + \ property of Licensor or any Contributor except as expressly stated herein. Except as expressly\ + \ stated in Sections 3 and 4, no other patent rights, express or implied, are granted herein.\ + \ Your Extensions may require additional patent licenses from Licensor or Contributors which\ + \ each may grant in its sole discretion. No right is granted to the trademarks of Licensor\ + \ or any Contributor even if such marks are included in the Licensed Software. Nothing in\ + \ this License shall be interpreted to prohibit Licensor from licensing under different\ + \ terms from this License any code that Licensor otherwise would have a right to license.\ + \ \n\n5.1 You expressly acknowledge and agree that although Licensor and each Contributor\ + \ grants the licenses to their respective portions of the Licensed Software set forth herein,\ + \ no assurances are provided by Licensor or any Contributor that the Licensed Software does\ + \ not infringe the patent or other intellectual property rights of any other entity. Licensor\ + \ and each Contributor disclaim any liability to You for claims brought by any other entity\ + \ based on infringement of intellectual property rights or otherwise. As a condition to\ + \ exercising the rights and licenses granted hereunder, You hereby assume sole responsibility\ + \ to secure any other intellectual property rights needed, if any. For example, if a third\ + \ party patent license is required to allow You to distribute the Licensed Software, it\ + \ is Your responsibility to acquire that license before distributing the Licensed Software.\ + \ \n\n6.0 Your Obligations And Grants. In consideration of, and as an express condition\ + \ to, the licenses granted to You under this License You hereby agree that any Modifications,\ + \ Derivative Works, or Required Components (collectively Extensions) that You create or\ + \ to which You contribute are governed by the terms of this License including, without limitation,\ + \ Section 4. Any Extensions that You create or to which You contribute must be Deployed\ + \ under the terms of this License or a future version of this License released under Section\ + \ 7. You hereby grant to Licensor and all third parties a world-wide, non-exclusive, royalty-free\ + \ license under those intellectual property rights You own or control to use, reproduce,\ + \ display, perform, modify, create derivatives, sublicense, and distribute Your Extensions,\ + \ in any form. Any Extensions You make and Deploy must have a distinct title so as to readily\ + \ tell any subsequent user or Contributor that the Extensions are by You. You must include\ + \ a copy of this License with every copy of the Extensions You distribute. You agree not\ + \ to offer or impose any terms on any Source Code or executable version of the Licensed\ + \ Software, or its Extensions that alter or restrict the applicable version of this License\ + \ or the recipients' rights hereunder. \n\n6.1 Availability of Source Code. You must make\ + \ available, under the terms of this License, the Source Code of the Licensed Software and\ + \ any Extensions that You Deploy, either on the same media as You distribute any executable\ + \ or other form of the Licensed Software, or via an Electronic Distribution Mechanism. The\ + \ Source Code for any version of Licensed Software, or its Extensions that You Deploy must\ + \ be made available at the time of Deployment and must remain available for as long as You\ + \ Deploy the Extensions or at least twelve (12) months after the date You Deploy, whichever\ + \ is longer. You are responsible for ensuring that the Source Code version remains available\ + \ even if the Electronic Distribution Mechanism is maintained by a third party. You may\ + \ not charge a fee for the Source Code distributed under this Section in excess of Your\ + \ actual cost of duplication and distribution where such duplication and distribution involve\ + \ physical media. \n\n6.2 Description of Modifications. You must cause any Modifications\ + \ that You create or to which You contribute, to update the file titled \"CHANGES\" distributed\ + \ with Licensed Software documenting the additions, changes or deletions You made, the authors\ + \ of such Modifications, and the dates of any such additions, changes or deletions. You\ + \ must also cause a cross-reference to appear in the Source Code at the location of each\ + \ change. You must include a prominent statement that the Modifications are derived, directly\ + \ or indirectly, from the Licensed Software and include the names of the Licensor and any\ + \ Contributor to the Licensed Software in (i) the Source Code and (ii) in any notice displayed\ + \ by the Licensed Software You distribute or in related documentation in which You describe\ + \ the origin or ownership of the Licensed Software. You may not modify or delete any pre-existing\ + \ copyright notices, change notices or License text in the Licensed Software. \n\n6.3 Intellectual\ + \ Property Matters. \na. Third Party Claims. If You have knowledge that a license to a third\ + \ party's intellectual property right is required to exercise the rights granted by this\ + \ License, You must include a text file with the Source Code distribution titled \"LEGAL\"\ + \ that describes the claim and the party making the claim in sufficient detail that a recipient\ + \ will know whom to contact. If You obtain such knowledge after You make any Extensions\ + \ available as described in Section 6.1, You shall promptly modify the LEGAL file in all\ + \ copies You make available thereafter and shall take other steps (such as notifying appropriate\ + \ mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed\ + \ Software from You that new knowledge has been obtained. \nb. Contributor APIs. If Your\ + \ Extensions include an application programming interface (\"API\") and You have knowledge\ + \ of patent licenses that are reasonably necessary to implement that API, You must also\ + \ include this information in the LEGAL file. \nc. Representations. You represent that,\ + \ except as disclosed pursuant to 6.3(a) above, You believe that any Extensions You distribute\ + \ are Your original creations and that You have sufficient rights to grant the rights conveyed\ + \ by this License. \n\n6.4 Required Notices. \na. License Text. You must duplicate this\ + \ License in any documentation You provide along with the Source Code of any Extensions\ + \ You create or to which You contribute, wherever You describe recipients' rights relating\ + \ to Licensed Software. You must duplicate the notice contained in EXHIBIT A (the \"Notice\"\ + ) in each file of the Source Code of any copy You distribute of the Licensed Software and\ + \ Your Extensions. If You create an Extension, You may add Your name as a Contributor to\ + \ the text file titled \"CONTRIB\" distributed with the Licensed Software along with a description\ + \ of the contribution. If it is not possible to put the Notice in a particular Source Code\ + \ file due to its structure, then You must include such Notice in a location (such as a\ + \ relevant directory file) where a user would be likely to look for such a notice. \nb.\ + \ Source Code Availability. You must notify Licensor within one (1) month of the date You\ + \ initially Deploy of the availability of Source Code to Your Extensions and include in\ + \ such notification the name under which you Deployed Your Extensions, a description of\ + \ the Extensions, and instructions on how to acquire the Source Code, including instructions\ + \ on how to acquire updates over time. Should such instructions change you must provide\ + \ Licensor with revised instructions within one (1) month of the date of change. Should\ + \ you be unable to notify Licensor directly, you must provide notification by posting to\ + \ appropriate news groups, mailing lists, or web sites where a search engine would reasonably\ + \ be expected to index them. \n\n6.5 Additional Terms. You may choose to offer, and charge\ + \ a fee for, warranty, support, indemnity or liability obligations to one or more recipients\ + \ of Licensed Software. However, You may do so only on Your own behalf, and not on behalf\ + \ of the Licensor or any Contributor. You must make it clear that any such warranty, support,\ + \ indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify\ + \ the Licensor and every Contributor for any liability plus attorney fees, costs, and related\ + \ expenses due to any such action or claim incurred by the Licensor or such Contributor\ + \ as a result of warranty, support, indemnity or liability terms You offer. \n\n6.6 Conflicts\ + \ With Other Licenses. Where any portion of Your Extensions, by virtue of being Derivative\ + \ Works of another product or similar circumstance, fall under the terms of another license,\ + \ the terms of that license should be honored however You must also make Your Extensions\ + \ available under this License. If the terms of this License continue to conflict with the\ + \ terms of the other license you may write the Licensor for permission to resolve the conflict\ + \ in a fashion that remains consistent with the intent of this License. Such permission\ + \ will be granted at the sole discretion of the Licensor. \n\n7.0 Versions of This License.\ + \ Licensor may publish from time to time revised and/or new versions of the License. Once\ + \ Licensed Software has been published under a particular version of the License, You may\ + \ always continue to use it under the terms of that version. You may also choose to use\ + \ such Licensed Software under the terms of any subsequent version of the License published\ + \ by Licensor. No one other than Licensor has the right to modify the terms applicable to\ + \ Licensed Software created under this License. \n\n7.1 If You create or use a modified\ + \ version of this License, which You may do only in order to apply it to software that is\ + \ not already Licensed Software under this License, You must rename Your license so that\ + \ it is not confusingly similar to this License, and must make it clear that Your license\ + \ contains terms that differ from this License. In so naming Your license, You may not use\ + \ any trademark of Licensor or of any Contributor. Should Your modifications to this License\ + \ be limited to alteration of EXHIBIT A purely for purposes of adjusting the Notice You\ + \ require of licensees, You may continue to refer to Your License as the Reciprocal Public\ + \ License or simply the RPL. \n\n8.0 Disclaimer of Warranty. LICENSED SOFTWARE IS PROVIDED\ + \ UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS\ + \ OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED SOFTWARE IS FREE\ + \ OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. FURTHER THERE\ + \ IS NO WARRANTY MADE AND ALL IMPLIED WARRANTIES ARE DISCLAIMED THAT THE LICENSED SOFTWARE\ + \ MEETS OR COMPLIES WITH ANY DESCRIPTION OF PERFORMANCE OR OPERATION, SAID COMPATIBILITY\ + \ AND SUITABILITY BEING YOUR RESPONSIBILITY. LICENSOR DISCLAIMS ANY WARRANTY, IMPLIED OR\ + \ EXPRESSED, THAT ANY CONTRIBUTOR'S EXTENSIONS MEET ANY STANDARD OF COMPATIBILITY OR DESCRIPTION\ + \ OF PERFORMANCE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED SOFTWARE\ + \ IS WITH YOU. SHOULD LICENSED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE\ + \ LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR\ + \ OR CORRECTION. UNDER THE TERMS OF THIS LICENSOR WILL NOT SUPPORT THIS SOFTWARE AND IS\ + \ UNDER NO OBLIGATION TO ISSUE UPDATES TO THIS SOFTWARE. LICENSOR HAS NO KNOWLEDGE OF ERRANT\ + \ CODE OR VIRUS IN THIS SOFTWARE, BUT DOES NOT WARRANT THAT THE SOFTWARE IS FREE FROM SUCH\ + \ ERRORS OR VIRUSES. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE.\ + \ NO USE OF LICENSED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. \n\n\ + 9.0 Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\ + \ (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR\ + \ ANY DISTRIBUTOR OF LICENSED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE\ + \ TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER\ + \ INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE\ + \ OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY\ + \ SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY\ + \ SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S\ + \ NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS\ + \ DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS\ + \ EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. \n\n10.0 High Risk Activities. THE LICENSED\ + \ SOFTWARE IS NOT FAULT-TOLERANT AND IS NOT DESIGNED, MANUFACTURED, OR INTENDED FOR USE\ + \ OR DISTRIBUTION AS ON-LINE CONTROL EQUIPMENT IN HAZARDOUS ENVIRONMENTS REQUIRING FAIL-SAFE\ + \ PERFORMANCE, SUCH AS IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR COMMUNICATIONS\ + \ SYSTEMS, AIR TRAFFIC CONTROL, DIRECT LIFE SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH\ + \ THE FAILURE OF THE LICENSED SOFTWARE COULD LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR\ + \ SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE (\"HIGH RISK ACTIVITIES\"). LICENSOR AND CONTRIBUTORS\ + \ SPECIFICALLY DISCLAIM ANY EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR HIGH RISK ACTIVITIES.\ + \ \n\n11.0 Responsibility for Claims. As between Licensor and Contributors, each party is\ + \ responsible for claims and damages arising, directly or indirectly, out of its utilization\ + \ of rights under this License which specifically disclaims warranties and limits any liability\ + \ of the Licensor. This paragraph is to be used in conjunction with and controlled by the\ + \ Disclaimer Of Warranties of Section 8, the Limitation Of Damages in Section 9, and the\ + \ disclaimer against use for High Risk Activities in Section 10. The Licensor has thereby\ + \ disclaimed all warranties and limited any damages that it is or may be liable for. You\ + \ agree to work with Licensor and Contributors to distribute such responsibility on an equitable\ + \ basis consistent with the terms of this License including Sections 8, 9, and 10. Nothing\ + \ herein is intended or shall be deemed to constitute any admission of liability. \n\n12.0\ + \ Termination. This License and all rights granted hereunder will terminate immediately\ + \ in the event of the circumstances described in Section 13.6 or if applicable law prohibits\ + \ or restricts You from fully and or specifically complying with Sections 3, 4 and/or 6,\ + \ or prevents the enforceability of any of those Sections, and You must immediately discontinue\ + \ any use of Licensed Software. \n\n12.1 Automatic Termination Upon Breach. This License\ + \ and the rights granted hereunder will terminate automatically if You fail to comply with\ + \ the terms herein and fail to cure such breach within thirty (30) days of becoming aware\ + \ of the breach. All sublicenses to the Licensed Software that are properly granted shall\ + \ survive any termination of this License. Provisions that, by their nature, must remain\ + \ in effect beyond the termination of this License, shall survive. \n\n12.2 Termination\ + \ Upon Assertion of Patent Infringement. If You initiate litigation by asserting a patent\ + \ infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor\ + \ (Licensor or Contributor against whom You file such an action is referred to herein as\ + \ \"Respondent\") alleging that Licensed Software directly or indirectly infringes any patent,\ + \ then any and all rights granted by such Respondent to You under Sections 3 or 4 of this\ + \ License shall terminate prospectively upon sixty (60) days notice from Respondent (the\ + \ \"Notice Period\") unless within that Notice Period You either agree in writing (i) to\ + \ pay Respondent a mutually agreeable reasonably royalty for Your past or future use of\ + \ Licensed Software made by such Respondent, or (ii) withdraw Your litigation claim with\ + \ respect to Licensed Software against such Respondent. If within said Notice Period a reasonable\ + \ royalty and payment arrangement are not mutually agreed upon in writing by the parties\ + \ or the litigation claim is not withdrawn, the rights granted by Licensor to You under\ + \ Sections 3 and 4 automatically terminate at the expiration of said Notice Period. \n\n\ + 12.3 Reasonable Value of This License. If You assert a patent infringement claim against\ + \ Respondent alleging that Licensed Software directly or indirectly infringes any patent\ + \ where such claim is resolved (such as by license or settlement) prior to the initiation\ + \ of patent infringement litigation, then the reasonable value of the licenses granted by\ + \ said Respondent under Sections 3 and 4 shall be taken into account in determining the\ + \ amount or value of any payment or license. \n\n12.4 No Retroactive Effect of Termination.\ + \ In the event of termination under this Section all end user license agreements (excluding\ + \ licenses to distributors and resellers) that have been validly granted by You or any distributor\ + \ hereunder prior to termination shall survive termination. \n\n13.0 Miscellaneous. \n\n\ + 13.1 U.S. Government End Users. The Licensed Software is a \"commercial item,\" as that\ + \ term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\"\ + \ and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R.\ + \ 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through\ + \ 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Software with only\ + \ those rights set forth herein. \n\n13.2 Relationship of Parties. This License will not\ + \ be construed as creating an agency, partnership, joint venture, or any other form of legal\ + \ association between or among You, Licensor, or any Contributor, and You will not represent\ + \ to the contrary, whether expressly, by implication, appearance, or otherwise. \n\n13.3\ + \ Independent Development. Nothing in this License will impair Licensor's right to acquire,\ + \ license, develop, subcontract, market, or distribute technology or products that perform\ + \ the same or similar functions as, or otherwise compete with, Extensions that You may develop,\ + \ produce, market, or distribute. \n\n13.4 Consent To Breach Not Waiver. Failure by Licensor\ + \ or Contributor to enforce any provision of this License will not be deemed a waiver of\ + \ future enforcement of that or any other provision. \n\n13.5 Severability. This License\ + \ represents the complete agreement concerning the subject matter hereof. If any provision\ + \ of this License is held to be unenforceable, such provision shall be reformed only to\ + \ the extent necessary to make it enforceable. \n\n13.6 Inability to Comply Due to Statute\ + \ or Regulation. If it is impossible for You to comply with any of the terms of this License\ + \ with respect to some or all of the Licensed Software due to statute, judicial order, or\ + \ regulation, then You cannot use, modify, or distribute the software. \n\n13.7 Export Restrictions.\ + \ You may be restricted with respect to downloading or otherwise acquiring, exporting, or\ + \ reexporting the Licensed Software or any underlying information or technology by United\ + \ States and other applicable laws and regulations. By downloading or by otherwise obtaining\ + \ the Licensed Software, You are agreeing to be responsible for compliance with all applicable\ + \ laws and regulations. \n\n13.8 Arbitration, Jurisdiction & Venue. This License shall be\ + \ governed by Colorado law provisions (except to the extent applicable law, if any, provides\ + \ otherwise), excluding its conflict-of-law provisions. You expressly agree that any dispute\ + \ relating to this License shall be submitted to binding arbitration under the rules then\ + \ prevailing of the American Arbitration Association. You further agree that Adams County,\ + \ Colorado USA is proper venue and grant such arbitration proceeding jurisdiction as may\ + \ be appropriate for purposes of resolving any dispute under this License. Judgement upon\ + \ any award made in arbitration may be entered and enforced in any court of competent jurisdiction.\ + \ The arbitrator shall award attorney's fees and costs of arbitration to the prevailing\ + \ party. Should either party find it necessary to enforce its arbitration award or seek\ + \ specific performance of such award in a civil court of competent jurisdiction, the prevailing\ + \ party shall be entitled to reasonable attorney's fees and costs. The application of the\ + \ United Nations Convention on Contracts for the International Sale of Goods is expressly\ + \ excluded. You and Licensor expressly waive any rights to a jury trial in any litigation\ + \ concerning Licensed Software or this License. Any law or regulation that provides that\ + \ the language of a contract shall be construed against the drafter shall not apply to this\ + \ License. \n\n13.9 Entire Agreement. This License constitutes the entire agreement between\ + \ the parties with respect to the subject matter hereof. \n\nEXHIBIT A \n\nThe Notice below\ + \ must appear in each file of the Source Code of any copy You distribute of the Licensed\ + \ Software or any Extensions thereto, except as may be modified as allowed under the terms\ + \ of Section 7.1 \nCopyright (C) 1999-2002 Technical Pursuit Inc., All Rights Reserved.\ + \ Patent Pending, Technical Pursuit Inc. \n\nUnless explicitly acquired and licensed from\ + \ Licensor under the Technical Pursuit License (\"TPL\") Version 1.0 or greater, the contents\ + \ of this file are subject to the Reciprocal Public License (\"RPL\") Version 1.1, or subsequent\ + \ versions as allowed by the RPL, and You may not copy or use this file in either source\ + \ code or executable form, except in compliance with the terms and conditions of the RPL.\ + \ \nYou may obtain a copy of both the TPL and the RPL (the \"Licenses\") from Technical\ + \ Pursuit Inc. at http://www.technicalpursuit.com. \n\nAll software distributed under the\ + \ Licenses is provided strictly on an \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, EITHER\ + \ EXPRESS OR IMPLIED, AND TECHNICAL PURSUIT INC. HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING\ + \ WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,\ + \ QUIET ENJOYMENT, OR NON-INFRINGEMENT. See the Licenses for specific language governing\ + \ rights and limitations under the Licenses." json: rpl-1.1.json - yml: rpl-1.1.yml + yaml: rpl-1.1.yml html: rpl-1.1.html - text: rpl-1.1.LICENSE + license: rpl-1.1.LICENSE - license_key: rpl-1.5 + category: Copyleft Limited spdx_license_key: RPL-1.5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Reciprocal Public License (RPL) + + Version 1.5, July 15, 2007 + + Copyright (C) 2001-2007 + Technical Pursuit Inc., + All Rights Reserved. + + LICENSE TERMS + + 1.0 General; Applicability & Definitions. This Reciprocal Public License Version 1.5 ("License") applies to any programs or other works as well as any and all updates or maintenance releases of said programs or works ("Software") not already covered by this License which the Software copyright holder ("Licensor") makes available containing a License Notice (hereinafter defined) from the Licensor specifying or allowing use or distribution under the terms of this License. As used in this License: + + 1.1 "Contributor" means any person or entity who created or contributed to the creation of an Extension. + + 1.2 "Deploy" means to use, Serve, sublicense or distribute Licensed Software other than for Your internal Research and/or Personal Use, and includes without limitation, any and all internal use or distribution of Licensed Software within Your business or organization other than for Research and/or Personal Use, as well as direct or indirect sublicensing or distribution of Licensed Software by You to any third party in any form or manner. + + 1.3 "Derivative Works" as used in this License is defined under U.S. copyright law. + + 1.4 "Electronic Distribution Mechanism" means a mechanism generally accepted in the software development community for the electronic transfer of data such as download from an FTP server or web site, where such mechanism is publicly accessible. + + 1.5 "Extensions" means any Modifications, Derivative Works, or Required Components as those terms are defined in this License. + + 1.6 "License" means this Reciprocal Public License. + + 1.7 "License Notice" means any notice contained in EXHIBIT A. + + 1.8 "Licensed Software" means any Software licensed pursuant to this License. + Licensed Software also includes all previous Extensions from any Contributor that You receive. + + 1.9 "Licensor" means the copyright holder of any Software previously not covered by this License who releases the Software under the terms of this License. + + 1.10 "Modifications" means any additions to or deletions from the substance or structure of (i) a file or other storage containing Licensed Software, or (ii) any new file or storage that contains any part of Licensed Software, or (iii) any file or storage which replaces or otherwise alters the original functionality of Licensed Software at runtime. + + 1.11 "Personal Use" means use of Licensed Software by an individual solely for his or her personal, private and non-commercial purposes. An individual's use of Licensed Software in his or her capacity as an officer, employee, member, independent contractor or agent of a corporation, business or organization (commercial or non-commercial) does not qualify as Personal Use. + + 1.12 "Required Components" means any text, programs, scripts, schema, interface definitions, control files, or other works created by You which are required by a third party of average skill to successfully install and run Licensed Software containing Your Modifications, or to install and run Your Derivative Works. + + 1.13 "Research" means investigation or experimentation for the purpose of understanding the nature and limits of the Licensed Software and its potential uses. + + 1.14 "Serve" means to deliver Licensed Software and/or Your Extensions by means of a computer network to one or more computers for purposes of execution of Licensed Software and/or Your Extensions. + + 1.15 "Software" means any computer programs or other works as well as any updates or maintenance releases of those programs or works which are distributed publicly by Licensor. + + 1.16 "Source Code" means the preferred form for making modifications to the Licensed Software and/or Your Extensions, including all modules contained therein, plus any associated text, interface definition files, scripts used to control compilation and installation of an executable program or other components required by a third party of average skill to build a running version of the Licensed Software or Your Extensions. + + 1.17 "User-Visible Attribution Notice" means any notice contained in EXHIBIT B. + + 1.18 "You" or "Your" means an individual or a legal entity exercising rights under this License. For legal entities, "You" or "Your" includes any entity which controls, is controlled by, or is under common control with, You, where "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. + + 2.0 Acceptance Of License. You are not required to accept this License since you have not signed it, however nothing else grants you permission to use, copy, distribute, modify, or create derivatives of either the Software or any Extensions created by a Contributor. These actions are prohibited by law if you do not accept this License. Therefore, by performing any of these actions You indicate Your acceptance of this License and Your agreement to be bound by all its terms and conditions. IF YOU DO NOT AGREE WITH ALL THE TERMS AND CONDITIONS OF THIS LICENSE DO NOT USE, MODIFY, CREATE DERIVATIVES, OR DISTRIBUTE THE SOFTWARE. IF IT IS IMPOSSIBLE FOR YOU TO COMPLY WITH ALL THE TERMS AND CONDITIONS OF THIS LICENSE THEN YOU CAN NOT USE, MODIFY, CREATE DERIVATIVES, OR DISTRIBUTE THE SOFTWARE. + + 3.0 Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants You a world-wide, royalty-free, non- exclusive license, subject to Licensor's intellectual property rights, and any third party intellectual property claims derived from the Licensed Software under this License, to do the following: + + 3.1 Use, reproduce, modify, display, perform, sublicense and distribute Licensed Software and Your Extensions in both Source Code form or as an executable program. + + 3.2 Create Derivative Works (as that term is defined under U.S. copyright law) of Licensed Software by adding to or deleting from the substance or structure of said Licensed Software. + + 3.3 Under claims of patents now or hereafter owned or controlled by Licensor, to make, use, have made, and/or otherwise dispose of Licensed Software or portions thereof, but solely to the extent that any such claim is necessary to enable You to make, use, have made, and/or otherwise dispose of Licensed Software or portions thereof. + + 3.4 Licensor reserves the right to release new versions of the Software with different features, specifications, capabilities, functions, licensing terms, general availability or other characteristics. Title, ownership rights, and intellectual property rights in and to the Licensed Software shall remain in Licensor and/or its Contributors. + + 4.0 Grant of License From Contributor. By application of the provisions in Section 6 below, each Contributor hereby grants You a world-wide, royalty- free, non-exclusive license, subject to said Contributor's intellectual property rights, and any third party intellectual property claims derived from the Licensed Software under this License, to do the following: + + 4.1 Use, reproduce, modify, display, perform, sublicense and distribute any Extensions Deployed by such Contributor or portions thereof, in both Source Code form or as an executable program, either on an unmodified basis or as part of Derivative Works. + + 4.2 Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, have made, and/or otherwise dispose of Extensions or portions thereof, but solely to the extent that any such claim is necessary to enable You to make, use, have made, and/or otherwise dispose of Licensed Software or portions thereof. + + 5.0 Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. Except as expressly stated in Sections 3 and 4, no other patent rights, express or implied, are granted herein. Your Extensions may require additional patent licenses from Licensor or Contributors which each may grant in its sole discretion. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Software. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. + + 5.1 You expressly acknowledge and agree that although Licensor and each Contributor grants the licenses to their respective portions of the Licensed Software set forth herein, no assurances are provided by Licensor or any Contributor that the Licensed Software does not infringe the patent or other intellectual property rights of any other entity. Licensor and each Contributor disclaim any liability to You for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, You hereby assume sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow You to distribute the Licensed Software, it is Your responsibility to acquire that license before distributing the Licensed Software. + + 6.0 Your Obligations And Grants. In consideration of, and as an express condition to, the licenses granted to You under this License You hereby agree that any Modifications, Derivative Works, or Required Components (collectively + Extensions) that You create or to which You contribute are governed by the terms of this License including, without limitation, Section 4. Any Extensions that You create or to which You contribute must be Deployed under the terms of this License or a future version of this License released under Section 7. You hereby grant to Licensor and all third parties a world-wide, non-exclusive, royalty-free license under those intellectual property rights You own or control to use, reproduce, display, perform, modify, create derivatives, sublicense, and distribute Licensed Software, in any form. Any Extensions You make and Deploy must have a distinct title so as to readily tell any subsequent user or Contributor that the Extensions are by You. You must include a copy of this License or directions on how to obtain a copy with every copy of the Extensions You distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Software, or its Extensions that alter or restrict the applicable version of this License or the recipients' rights hereunder. + + 6.1 Availability of Source Code. You must make available, under the terms of this License, the Source Code of any Extensions that You Deploy, via an Electronic Distribution Mechanism. The Source Code for any version that You Deploy must be made available within one (1) month of when you Deploy and must remain available for no less than twelve (12) months after the date You cease to Deploy. You are responsible for ensuring that the Source Code to each version You Deploy remains available even if the Electronic Distribution Mechanism is maintained by a third party. You may not charge a fee for any copy of the Source Code distributed under this Section in excess of Your actual cost of duplication and distribution of said copy. + + 6.2 Description of Modifications. You must cause any Modifications that You create or to which You contribute to be documented in the Source Code, clearly describing the additions, changes or deletions You made. You must include a prominent statement that the Modifications are derived, directly or indirectly, from the Licensed Software and include the names of the Licensor and any Contributor to the Licensed Software in (i) the Source Code and (ii) in any notice displayed by the Licensed Software You distribute or in related documentation in which You describe the origin or ownership of the Licensed Software. You may not modify or delete any pre-existing copyright notices, change notices or License text in the Licensed Software without written permission of the respective Licensor or Contributor. + + 6.3 Intellectual Property Matters. + + a. Third Party Claims. If You have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, You must include a human-readable file with Your distribution that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. + + b. Contributor APIs. If Your Extensions include an application programming interface ("API") and You have knowledge of patent licenses that are reasonably necessary to implement that API, You must also include this information in a human-readable file supplied with Your distribution. + + c. Representations. You represent that, except as disclosed pursuant to 6.3(a) above, You believe that any Extensions You distribute are Your original creations and that You have sufficient rights to grant the rights conveyed by this License. + + 6.4 Required Notices. + + a. License Text. You must duplicate this License or instructions on how to acquire a copy in any documentation You provide along with the Source Code of any Extensions You create or to which You contribute, wherever You describe recipients' rights relating to Licensed Software. + + b. License Notice. You must duplicate any notice contained in EXHIBIT A (the "License Notice") in each file of the Source Code of any copy You distribute of the Licensed Software and Your Extensions. If You create an Extension, You may add Your name as a Contributor to the Source Code and accompanying documentation along with a description of the contribution. If it is not possible to put the License Notice in a particular Source Code file due to its structure, then You must include such License Notice in a location where a user would be likely to look for such a notice. + + c. Source Code Availability. You must notify the software community of the availability of Source Code to Your Extensions within one (1) month of the date You initially Deploy and include in such notification a description of the Extensions, and instructions on how to acquire the Source Code. Should such instructions change you must notify the software community of revised instructions within one (1) month of the date of change. You must provide notification by posting to appropriate news groups, mailing lists, weblogs, or other sites where a publicly accessible search engine would reasonably be expected to index your post in relationship to queries regarding the Licensed Software and/or Your Extensions. + + d. User-Visible Attribution. You must duplicate any notice contained in EXHIBIT B (the "User-Visible Attribution Notice") in each user-visible display of the Licensed Software and Your Extensions which delineates copyright, ownership, or similar attribution information. If You create an Extension, You may add Your name as a Contributor, and add Your attribution notice, as an equally visible and functional element of any User-Visible Attribution Notice content. To ensure proper attribution, You must also include such User-Visible Attribution Notice in at least one location in the Software documentation where a user would be likely to look for such notice. + + 6.5 Additional Terms. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Software. However, You may do so only on Your own behalf, and not on behalf of the Licensor or any Contributor except as permitted under other agreements between you and Licensor or Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Licensor and every Contributor for any liability plus attorney fees, costs, and related expenses due to any such action or claim incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms You offer. + + 6.6 Conflicts With Other Licenses. Where any portion of Your Extensions, by virtue of being Derivative Works of another product or similar circumstance, fall under the terms of another license, the terms of that license should be honored however You must also make Your Extensions available under this License. If the terms of this License continue to conflict with the terms of the other license you may write the Licensor for permission to resolve the conflict in a fashion that remains consistent with the intent of this License. + Such permission will be granted at the sole discretion of the Licensor. + + 7.0 Versions of This License. Licensor may publish from time to time revised versions of the License. Once Licensed Software has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Licensed Software under the terms of any subsequent version of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Software created under this License. + + 7.1 If You create or use a modified version of this License, which You may do only in order to apply it to software that is not already Licensed Software under this License, You must rename Your license so that it is not confusingly similar to this License, and must make it clear that Your license contains terms that differ from this License. In so naming Your license, You may not use any trademark of Licensor or of any Contributor. Should Your modifications to this License be limited to alteration of a) Section 13.8 solely to modify the legal Jurisdiction or Venue for disputes, b) EXHIBIT A solely to define License Notice text, or c) to EXHIBIT B solely to define a User-Visible Attribution Notice, You may continue to refer to Your License as the Reciprocal Public License or simply the RPL. + + 8.0 Disclaimer of Warranty. LICENSED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. + FURTHER THERE IS NO WARRANTY MADE AND ALL IMPLIED WARRANTIES ARE DISCLAIMED THAT THE LICENSED SOFTWARE MEETS OR COMPLIES WITH ANY DESCRIPTION OF PERFORMANCE OR OPERATION, SAID COMPATIBILITY AND SUITABILITY BEING YOUR RESPONSIBILITY. LICENSOR DISCLAIMS ANY WARRANTY, IMPLIED OR EXPRESSED, THAT ANY CONTRIBUTOR'S EXTENSIONS MEET ANY STANDARD OF COMPATIBILITY OR DESCRIPTION OF PERFORMANCE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED SOFTWARE IS WITH YOU. SHOULD LICENSED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. UNDER THE TERMS OF THIS LICENSOR WILL NOT SUPPORT THIS SOFTWARE AND IS UNDER NO OBLIGATION TO ISSUE UPDATES TO THIS SOFTWARE. LICENSOR HAS NO KNOWLEDGE OF ERRANT CODE OR VIRUS IN THIS SOFTWARE, BUT DOES NOT WARRANT THAT THE SOFTWARE IS FREE FROM SUCH ERRORS OR VIRUSES. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 9.0 Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + + 10.0 High Risk Activities. THE LICENSED SOFTWARE IS NOT FAULT-TOLERANT AND IS NOT DESIGNED, MANUFACTURED, OR INTENDED FOR USE OR DISTRIBUTION AS ON-LINE CONTROL EQUIPMENT IN HAZARDOUS ENVIRONMENTS REQUIRING FAIL-SAFE PERFORMANCE, SUCH AS IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR COMMUNICATIONS SYSTEMS, AIR TRAFFIC CONTROL, DIRECT LIFE SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH THE FAILURE OF THE LICENSED SOFTWARE COULD LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE ("HIGH RISK ACTIVITIES"). LICENSOR AND CONTRIBUTORS SPECIFICALLY DISCLAIM ANY EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR HIGH RISK ACTIVITIES. + + 11.0 Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License which specifically disclaims warranties and limits any liability of the Licensor. This paragraph is to be used in conjunction with and controlled by the Disclaimer Of Warranties of Section 8, the Limitation Of Damages in Section 9, and the disclaimer against use for High Risk Activities in Section 10. The Licensor has thereby disclaimed all warranties and limited any damages that it is or may be liable for. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis consistent with the terms of this License including Sections 8, 9, and 10. Nothing herein is intended or shall be deemed to constitute any admission of liability. + + 12.0 Termination. This License and all rights granted hereunder will terminate immediately in the event of the circumstances described in Section 13.6 or if applicable law prohibits or restricts You from fully and or specifically complying with Sections 3, 4 and/or 6, or prevents the enforceability of any of those Sections, and You must immediately discontinue any use of Licensed Software. + + 12.1 Automatic Termination Upon Breach. This License and the rights granted hereunder will terminate automatically if You fail to comply with the terms herein and fail to cure such breach within thirty (30) days of becoming aware of the breach. All sublicenses to the Licensed Software that are properly granted shall survive any termination of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. + + 12.2 Termination Upon Assertion of Patent Infringement. If You initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom You file such an action is referred to herein as "Respondent") alleging that Licensed Software directly or indirectly infringes any patent, then any and all rights granted by such Respondent to You under Sections 3 or + 4 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period You either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for Your past or future use of Licensed Software made by such Respondent, or (ii) withdraw Your litigation claim with respect to Licensed Software against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to You under Sections 3 and 4 automatically terminate at the expiration of said Notice Period. + + 12.3 Reasonable Value of This License. If You assert a patent infringement claim against Respondent alleging that Licensed Software directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 3 and 4 shall be taken into account in determining the amount or value of any payment or license. + + 12.4 No Retroactive Effect of Termination. In the event of termination under this Section all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by You or any distributor hereunder prior to termination shall survive termination. + + 13.0 Miscellaneous. + + 13.1 U.S. Government End Users. The Licensed Software is a "commercial item," + as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). + Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Software with only those rights set forth herein. + + 13.2 Relationship of Parties. This License will not be construed as creating an agency, partnership, joint venture, or any other form of legal association between or among You, Licensor, or any Contributor, and You will not represent to the contrary, whether expressly, by implication, appearance, or otherwise. + + 13.3 Independent Development. Nothing in this License will impair Licensor's right to acquire, license, develop, subcontract, market, or distribute technology or products that perform the same or similar functions as, or otherwise compete with, Extensions that You may develop, produce, market, or distribute. + + 13.4 Consent To Breach Not Waiver. Failure by Licensor or Contributor to enforce any provision of this License will not be deemed a waiver of future enforcement of that or any other provision. + + 13.5 Severability. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. + + 13.6 Inability to Comply Due to Statute or Regulation. If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Licensed Software due to statute, judicial order, or regulation, then You cannot use, modify, or distribute the software. + + 13.7 Export Restrictions. You may be restricted with respect to downloading or otherwise acquiring, exporting, or reexporting the Licensed Software or any underlying information or technology by United States and other applicable laws and regulations. By downloading or by otherwise obtaining the Licensed Software, You are agreeing to be responsible for compliance with all applicable laws and regulations. + + 13.8 Arbitration, Jurisdiction & Venue. This License shall be governed by Colorado law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that any dispute relating to this License shall be submitted to binding arbitration under the rules then prevailing of the American Arbitration Association. You further agree that Adams County, Colorado USA is proper venue and grant such arbitration proceeding jurisdiction as may be appropriate for purposes of resolving any dispute under this License. Judgement upon any award made in arbitration may be entered and enforced in any court of competent jurisdiction. The arbitrator shall award attorney's fees and costs of arbitration to the prevailing party. Should either party find it necessary to enforce its arbitration award or seek specific performance of such award in a civil court of competent jurisdiction, the prevailing party shall be entitled to reasonable attorney's fees and costs. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. You and Licensor expressly waive any rights to a jury trial in any litigation concerning Licensed Software or this License. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. + + 13.9 Entire Agreement. This License constitutes the entire agreement between the parties with respect to the subject matter hereof. + + EXHIBIT A + + The License Notice below must appear in each file of the Source Code of any copy You distribute of the Licensed Software or any Extensions thereto: + + Unless explicitly acquired and licensed from Licensor under another license, the contents of this file are subject to the Reciprocal Public License ("RPL") Version 1.5, or subsequent versions as allowed by the RPL, and You may not copy or use this file in either source code or executable form, except in compliance with the terms and conditions of the RPL. + + All software distributed under the RPL is provided strictly on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND LICENSOR HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT, OR NON-INFRINGEMENT. See the RPL for specific language governing rights and limitations under the RPL. + + EXHIBIT B + + The User-Visible Attribution Notice below, when provided, must appear in each user-visible display as defined in Section 6.4 (d): json: rpl-1.5.json - yml: rpl-1.5.yml + yaml: rpl-1.5.yml html: rpl-1.5.html - text: rpl-1.5.LICENSE + license: rpl-1.5.LICENSE - license_key: rpsl-1.0 + category: Copyleft Limited spdx_license_key: RPSL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "RealNetworks Public Source License Version 1.0\n(Rev. Date October 28, 2002)\n\n1.\ + \ General Definitions. This License applies to any program or other work which\nRealNetworks,\ + \ Inc., or any other entity that elects to use this license,\n(\"Licensor\") makes publicly\ + \ available and which contains a notice placed by\nLicensor identifying such program or\ + \ work as \"Original Code\" and stating that it\nis subject to the terms of this RealNetworks\ + \ Public Source License version 1.0\n(or subsequent version thereof) (\"License\"). You\ + \ are not required to accept this\nLicense. However, nothing else grants You permission\ + \ to use, copy, modify or\ndistribute the software or its derivative works. These actions\ + \ are prohibited by\nlaw if You do not accept this License. Therefore, by modifying, copying\ + \ or\ndistributing the software (or any work based on the software), You indicate your\n\ + acceptance of this License to do so, and all its terms and conditions. In\naddition, you\ + \ agree to the terms of this License by clicking the Accept button\nor downloading the software.\ + \ As used in this License:\n\n1.1 \"Applicable Patent Rights\" mean: (a) in the case where\ + \ Licensor is the\ngrantor of rights, claims of patents that (i) are now or hereafter acquired,\n\ + owned by or assigned to Licensor and (ii) are necessarily infringed by using or\nmaking\ + \ the Original Code alone and not in combination with other software or\nhardware; and (b)\ + \ in the case where You are the grantor of rights, claims of\npatents that (i) are now or\ + \ hereafter acquired, owned by or assigned to You and\n(ii) are infringed (directly or indirectly)\ + \ by using or making Your\nModifications, taken alone or in combination with Original Code.\n\ + \n1.2 \"Compatible Source License\" means any one of the licenses listed on Exhibit\nB or\ + \ at https://www.helixcommunity.org/content/complicense or other licenses\nspecifically\ + \ identified by Licensor in writing. Notwithstanding any term to the\ncontrary in any Compatible\ + \ Source License, any code covered by any Compatible\nSource License that is used with Covered\ + \ Code must be made readily available in\nSource Code format for royalty-free use under\ + \ the terms of the Compatible Source\nLicense or this License.\n\n1.3 \"Contributor\" means\ + \ any person or entity that creates or contributes to the\ncreation of Modifications.\n\n\ + 1.4 \"Covered Code\" means the Original Code, Modifications, the combination of\nOriginal\ + \ Code and any Modifications, and/or any respective portions thereof.\n\n1.5 \"Deploy\"\ + \ means to use, sublicense or distribute Covered Code other than for\nYour internal research\ + \ and development (R&D) and/or Personal Use, and includes\nwithout limitation, any and all\ + \ internal use or distribution of Covered Code\nwithin Your business or organization except\ + \ for R&D use and/or Personal Use, as\nwell as direct or indirect sublicensing or distribution\ + \ of Covered Code by You\nto any third party in any form or manner.\n\n1.6 \"Derivative\ + \ Work\" means either the Covered Code or any derivative work under\nUnited States copyright\ + \ law, and including any work containing or including any\nportion of the Covered Code or\ + \ Modifications, either verbatim or with\nmodifications and/or translated into another language.\ + \ Derivative Work also\nincludes any work which combines any portion of Covered Code or\ + \ Modifications\nwith code not otherwise governed by the terms of this License.\n\n1.7 \"\ + Externally Deploy\" means to Deploy the Covered Code in any way that may be\naccessed or\ + \ used by anyone other than You, used to provide any services to\nanyone other than You,\ + \ or used in any way to deliver any content to anyone other\nthan You, whether the Covered\ + \ Code is distributed to those parties, made\navailable as an application intended for use\ + \ over a computer network, or used to\nprovide services or otherwise deliver content to\ + \ anyone other than You.\n\n1.8. \"Interface\" means interfaces, functions, properties,\ + \ class definitions,\nAPIs, header files, GUIDs, V-Tables, and/or protocols allowing one\ + \ piece of\nsoftware, firmware or hardware to communicate or interoperate with another piece\n\ + of software, firmware or hardware.\n\n1.9 \"Modifications\" mean any addition to, deletion\ + \ from, and/or change to, the\nsubstance and/or structure of the Original Code, any previous\ + \ Modifications, the\ncombination of Original Code and any previous Modifications, and/or\ + \ any\nrespective portions thereof. When code is released as a series of files, a\nModification\ + \ is: (a) any addition to or deletion from the contents of a file\ncontaining Covered Code;\ + \ and/or (b) any new file or other representation of\ncomputer program statements that contains\ + \ any part of Covered Code.\n\n1.10 \"Original Code\" means (a) the Source Code of a program\ + \ or other work as\noriginally made available by Licensor under this License, including\ + \ the Source\nCode of any updates or upgrades to such programs or works made available by\n\ + Licensor under this License, and that has been expressly identified by Licensor\nas such\ + \ in the header file(s) of such work; and (b) the object code compiled\nfrom such Source\ + \ Code and originally made available by Licensor under this\nLicense.\n\n1.11 \"Personal\ + \ Use\" means use of Covered Code by an individual solely for his or\nher personal, private\ + \ and non-commercial purposes. An individual's use of\nCovered Code in his or her capacity\ + \ as an officer, employee, member, independent\ncontractor or agent of a corporation, business\ + \ or organization (commercial or\nnon-commercial) does not qualify as Personal Use.\n\n\ + 1.12 \"Source Code\" means the human readable form of a program or other work that\nis suitable\ + \ for making modifications to it, including all modules it contains,\nplus any associated\ + \ interface definition files, scripts used to control\ncompilation and installation of an\ + \ executable (object code).\n\n1.13 \"You\" or \"Your\" means an individual or a legal entity\ + \ exercising rights\nunder this License. For legal entities, \"You\" or \"Your\" includes\ + \ any entity\nwhich controls, is controlled by, or is under common control with, You, where\n\ + \"control\" means (a) the power, direct or indirect, to cause the direction or\nmanagement\ + \ of such entity, whether by contract or otherwise, or (b) ownership of\nfifty percent (50%)\ + \ or more of the outstanding shares or beneficial ownership of\nsuch entity.\n\n2. Permitted\ + \ Uses; Conditions & Restrictions. Subject to the terms and\nconditions of this License,\ + \ Licensor hereby grants You, effective on the date\nYou accept this License (via downloading\ + \ or using Covered Code or otherwise\nindicating your acceptance of this License), a worldwide,\ + \ royalty-free,\nnon-exclusive copyright license, to the extent of Licensor's copyrights\ + \ cover\nthe Original Code, to do the following:\n\n2.1 You may reproduce, display, perform,\ + \ modify and Deploy Covered Code,\nprovided that in each instance:\n\n(a) You must retain\ + \ and reproduce in all copies of Original Code the copyright\nand other proprietary notices\ + \ and disclaimers of Licensor as they appear in the\nOriginal Code, and keep intact all\ + \ notices in the Original Code that refer to\nthis License;\n\n(b) You must include a copy\ + \ of this License with every copy of Source Code of\nCovered Code and documentation You\ + \ distribute, and You may not offer or impose\nany terms on such Source Code that alter\ + \ or restrict this License or the\nrecipients' rights hereunder, except as permitted under\ + \ Section 6;\n\n(c) You must duplicate, to the extent it does not already exist, the notice\ + \ in\nExhibit A in each file of the Source Code of all Your Modifications, and cause\nthe\ + \ modified files to carry prominent notices stating that You changed the files\nand the\ + \ date of any change;\n\n(d) You must make Source Code of all Your Externally Deployed Modifications\n\ + publicly available under the terms of this License, including the license grants\nset forth\ + \ in Section 3 below, for as long as you Deploy the Covered Code or\ntwelve (12) months\ + \ from the date of initial Deployment, whichever is longer. You\nshould preferably distribute\ + \ the Source Code of Your Deployed Modifications\nelectronically (e.g. download from a web\ + \ site); and\n\n(e) if You Deploy Covered Code in object code, executable form only, You\ + \ must\ninclude a prominent notice, in the code itself as well as in related\ndocumentation,\ + \ stating that Source Code of the Covered Code is available under\nthe terms of this License\ + \ with information on how and where to obtain such\nSource Code. You must also include the\ + \ Object Code Notice set forth in Exhibit A\nin the \"about\" box or other appropriate place\ + \ where other copyright notices are\nplaced, including any packaging materials.\n\n2.2 You\ + \ expressly acknowledge and agree that although Licensor and each\nContributor grants the\ + \ licenses to their respective portions of the Covered Code\nset forth herein, no assurances\ + \ are provided by Licensor or any Contributor that\nthe Covered Code does not infringe the\ + \ patent or other intellectual property\nrights of any other entity. Licensor and each Contributor\ + \ disclaim any liability\nto You for claims brought by any other entity based on infringement\ + \ of\nintellectual property rights or otherwise. As a condition to exercising the\nrights\ + \ and licenses granted hereunder, You hereby assume sole responsibility to\nsecure any other\ + \ intellectual property rights needed, if any. For example, if a\nthird party patent license\ + \ is required to allow You to make, use, sell, import\nor offer for sale the Covered Code,\ + \ it is Your responsibility to acquire such\nlicense(s).\n\n2.3 Subject to the terms and\ + \ conditions of this License, Licensor hereby grants\nYou, effective on the date You accept\ + \ this License (via downloading or using\nCovered Code or otherwise indicating your acceptance\ + \ of this License), a\nworldwide, royalty-free, perpetual, non-exclusive patent license\ + \ under\nLicensor's Applicable Patent Rights to make, use, sell, offer for sale and\nimport\ + \ the Covered Code, provided that in each instance you comply with the\nterms of this License.\n\ + \n3. Your Grants. In consideration of, and as a condition to, the licenses granted\nto You\ + \ under this License:\n\n(a) You grant to Licensor and all third parties a non-exclusive,\ + \ perpetual,\nirrevocable, royalty free license under Your Applicable Patent Rights and\ + \ other\nintellectual property rights owned or controlled by You, to make, sell, offer\n\ + for sale, use, import, reproduce, display, perform, modify, distribute and\nDeploy Your\ + \ Modifications of the same scope and extent as Licensor's licenses\nunder Sections 2.1\ + \ and 2.2; and\n\n(b) You grant to Licensor and its subsidiaries a non-exclusive, worldwide,\n\ + royalty-free, perpetual and irrevocable license, under Your Applicable Patent\nRights and\ + \ other intellectual property rights owned or controlled by You, to\nmake, use, sell, offer\ + \ for sale, import, reproduce, display, perform,\ndistribute, modify or have modified (for\ + \ Licensor and/or its subsidiaries),\nsublicense and distribute Your Modifications, in any\ + \ form and for any purpose,\nthrough multiple tiers of distribution.\n\n(c) You agree not\ + \ use any information derived from Your use and review of the\nCovered Code, including but\ + \ not limited to any algorithms or inventions that may\nbe contained in the Covered Code,\ + \ for the purpose of asserting any of Your\npatent rights, or assisting a third party to\ + \ assert any of its patent rights,\nagainst Licensor or any Contributor.\n\n4. Derivative\ + \ Works. You may create a Derivative Work by combining Covered Code\nwith other code not\ + \ otherwise governed by the terms of this License and\ndistribute the Derivative Work as\ + \ an integrated product. In each such instance,\nYou must make sure the requirements of\ + \ this License are fulfilled for the\nCovered Code or any portion thereof, including all\ + \ Modifications.\n\n4.1 You must cause any Derivative Work that you distribute, publish\ + \ or\nExternally Deploy, that in whole or in part contains or is derived from the\nCovered\ + \ Code or any part thereof, to be licensed as a whole at no charge to all\nthird parties\ + \ under the terms of this License and no other license except as\nprovided in Section 4.2.\ + \ You also must make Source Code available for the\nDerivative Work under the same terms\ + \ as Modifications, described in Sections 2\nand 3, above.\n\n4.2 Compatible Source Licenses.\ + \ Software modules that have been independently\ndeveloped without any use of Covered Code\ + \ and which contain no portion of the\nCovered Code, Modifications or other Derivative Works,\ + \ but are used or combined\nin any way wtih the Covered Code or any Derivative Work to form\ + \ a larger\nDerivative Work, are exempt from the conditions described in Section 4.1 but\n\ + only to the extent that: the software module, including any software that is\nlinked to,\ + \ integrated with, or part of the same applications as, the software\nmodule by any method\ + \ must be wholly subject to one of the Compatible Source\nLicenses. Notwithstanding the\ + \ foregoing, all Covered Code must be subject to the\nterms of this License. Thus, the entire\ + \ Derivative Work must be licensed under a\ncombination of the RPSL (for Covered Code) and\ + \ a Compatible Source License for\nany independently developed software modules within the\ + \ Derivative Work. The\nforegoing requirement applies even if the Compatible Source License\ + \ would\nordinarily allow the software module to link with, or form larger works with,\n\ + other software that is not subject to the Compatible Source License. For\nexample, although\ + \ the Mozilla Public License v1.1 allows Mozilla code to be\ncombined with proprietary software\ + \ that is not subject to the MPL, if\nMPL-licensed code is used with Covered Code the MPL-licensed\ + \ code could not be\ncombined or linked with any code not governed by the MPL. The general\ + \ intent of\nthis section 4.2 is to enable use of Covered Code with applications that are\n\ + wholly subject to an acceptable open source license. You are responsible for\ndetermining\ + \ whether your use of software with Covered Code is allowed under Your\nlicense to such\ + \ software.\n\n4.3 Mere aggregation of another work not based on the Covered Code with the\n\ + Covered Code (or with a work based on the Covered Code) on a volume of a storage\nor distribution\ + \ medium does not bring the other work under the scope of this\nLicense. If You deliver\ + \ the Covered Code for combination and/or integration with\nan application previously provided\ + \ by You (for example, via automatic updating\ntechnology), such combination and/or integration\ + \ constitutes a Derivative Work\nsubject to the terms of this License.\n\n5. Exclusions\ + \ From License Grant. Nothing in this License shall be deemed to\ngrant any rights to trademarks,\ + \ copyrights, patents, trade secrets or any other\nintellectual property of Licensor or\ + \ any Contributor except as expressly stated\nherein. No right is granted to the trademarks\ + \ of Licensor or any Contributor\neven if such marks are included in the Covered Code. Nothing\ + \ in this License\nshall be interpreted to prohibit Licensor from licensing under different\ + \ terms\nfrom this License any code that Licensor otherwise would have a right to\nlicense.\ + \ Modifications, Derivative Works and/or any use or combination of\nCovered Code with other\ + \ technology provided by Licensor or third parties may\nrequire additional patent licenses\ + \ from Licensor which Licensor may grant in its\nsole discretion. No patent license is granted\ + \ separate from the Original Code or\ncombinations of the Original Code with other software\ + \ or hardware.\n\n5.1. Trademarks. This License does not grant any rights to use the trademarks\ + \ or\ntrade names owned by Licensor (\"Licensor Marks\" defined in Exhibit C) or to any\n\ + trademark or trade name belonging to any Contributor. No Licensor Marks may be\nused to\ + \ endorse or promote products derived from the Original Code other than as\npermitted by\ + \ the Licensor Trademark Policy defined in Exhibit C.\n\n6. Additional Terms. You may choose\ + \ to offer, and to charge a fee for, warranty,\nsupport, indemnity or liability obligations\ + \ and/or other rights consistent with\nthe scope of the license granted herein (\"Additional\ + \ Terms\") to one or more\nrecipients of Covered Code. However, You may do so only on Your\ + \ own behalf and\nas Your sole responsibility, and not on behalf of Licensor or any Contributor.\n\ + You must obtain the recipient's agreement that any such Additional Terms are\noffered by\ + \ You alone, and You hereby agree to indemnify, defend and hold\nLicensor and every Contributor\ + \ harmless for any liability incurred by or claims\nasserted against Licensor or such Contributor\ + \ by reason of any such Additional\nTerms.\n\n7. Versions of the License. Licensor may publish\ + \ revised and/or new versions of\nthis License from time to time. Each version will be given\ + \ a distinguishing\nversion number. Once Original Code has been published under a particular\ + \ version\nof this License, You may continue to use it under the terms of that version.\ + \ You\nmay also choose to use such Original Code under the terms of any subsequent\nversion\ + \ of this License published by Licensor. No one other than Licensor has\nthe right to modify\ + \ the terms applicable to Covered Code created under this\nLicense.\n\n8. NO WARRANTY OR\ + \ SUPPORT. The Covered Code may contain in whole or in part\npre-release, untested, or not\ + \ fully tested works. The Covered Code may contain\nerrors that could cause failures or\ + \ loss of data, and may be incomplete or\ncontain inaccuracies. You expressly acknowledge\ + \ and agree that use of the\nCovered Code, or any portion thereof, is at Your sole and entire\ + \ risk. THE\nCOVERED CODE IS PROVIDED \"AS IS\" AND WITHOUT WARRANTY, UPGRADES OR SUPPORT\ + \ OF\nANY KIND AND LICENSOR AND LICENSOR'S LICENSOR(S) (COLLECTIVELY REFERRED TO AS\n\"\ + LICENSOR\" FOR THE PURPOSES OF SECTIONS 8 AND 9) AND ALL CONTRIBUTORS EXPRESSLY\nDISCLAIM\ + \ ALL WARRANTIES AND/OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT\nNOT LIMITED TO,\ + \ THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, OF\nSATISFACTORY QUALITY,\ + \ OF FITNESS FOR A PARTICULAR PURPOSE, OF ACCURACY, OF QUIET\nENJOYMENT, AND NONINFRINGEMENT\ + \ OF THIRD PARTY RIGHTS. LICENSOR AND EACH\nCONTRIBUTOR DOES NOT WARRANT AGAINST INTERFERENCE\ + \ WITH YOUR ENJOYMENT OF THE\nCOVERED CODE, THAT THE FUNCTIONS CONTAINED IN THE COVERED\ + \ CODE WILL MEET YOUR\nREQUIREMENTS, THAT THE OPERATION OF THE COVERED CODE WILL BE UNINTERRUPTED\ + \ OR\nERROR-FREE, OR THAT DEFECTS IN THE COVERED CODE WILL BE CORRECTED. NO ORAL OR\nWRITTEN\ + \ DOCUMENTATION, INFORMATION OR ADVICE GIVEN BY LICENSOR, A LICENSOR\nAUTHORIZED REPRESENTATIVE\ + \ OR ANY CONTRIBUTOR SHALL CREATE A WARRANTY. You\nacknowledge that the Covered Code is\ + \ not intended for use in high risk\nactivities, including, but not limited to, the design,\ + \ construction, operation\nor maintenance of nuclear facilities, aircraft navigation, aircraft\n\ + communication systems, or air traffic control machines in which case the failure\nof the\ + \ Covered Code could lead to death, personal injury, or severe physical or\nenvironmental\ + \ damage. Licensor disclaims any express or implied warranty of\nfitness for such uses.\n\ + \n9. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT\nSHALL LICENSOR\ + \ OR ANY CONTRIBUTOR BE LIABLE FOR ANY INCIDENTAL, SPECIAL,\nINDIRECT OR CONSEQUENTIAL DAMAGES\ + \ ARISING OUT OF OR RELATING TO THIS LICENSE OR\nYOUR USE OR INABILITY TO USE THE COVERED\ + \ CODE, OR ANY PORTION THEREOF, WHETHER\nUNDER A THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING\ + \ NEGLIGENCE OR STRICT\nLIABILITY), PRODUCTS LIABILITY OR OTHERWISE, EVEN IF LICENSOR OR\ + \ SUCH\nCONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND\nNOTWITHSTANDING\ + \ THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. SOME\nJURISDICTIONS DO NOT ALLOW THE LIMITATION\ + \ OF LIABILITY OF INCIDENTAL OR\nCONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY\ + \ TO YOU. In no event\nshall Licensor's total liability to You for all damages (other than\ + \ as may be\nrequired by applicable law) under this License exceed the amount of ten dollars\n\ + ($10.00).\n\n10. Ownership. Subject to the licenses granted under this License, each\nContributor\ + \ retains all rights, title and interest in and to any Modifications\nmade by such Contributor.\ + \ Licensor retains all rights, title and interest in and\nto the Original Code and any Modifications\ + \ made by or on behalf of Licensor\n(\"Licensor Modifications\"), and such Licensor Modifications\ + \ will not be\nautomatically subject to this License. Licensor may, at its sole discretion,\n\ + choose to license such Licensor Modifications under this License, or on\ndifferent terms\ + \ from those contained in this License or may choose not to\nlicense them at all.\n\n11.\ + \ Termination. \n\n11.1 Term and Termination. The term of this License is perpetual unless\n\ + terminated as provided below. This License and the rights granted hereunder will\nterminate:\n\ + \n(a) automatically without notice from Licensor if You fail to comply with any\nterm(s)\ + \ of this License and fail to cure such breach within 30 days of becoming\naware of such\ + \ breach;\n\n(b) immediately in the event of the circumstances described in Section 12.5(b);\n\ + or\n\n(c) automatically without notice from Licensor if You, at any time during the\nterm\ + \ of this License, commence an action for patent infringement against\nLicensor (including\ + \ by cross-claim or counter claim in a lawsuit);\n\n(d) upon written notice from Licensor\ + \ if You, at any time during the term of\nthis License, commence an action for patent infringement\ + \ against any third party\nalleging that the Covered Code itself (excluding combinations\ + \ with other\nsoftware or hardware) infringes any patent (including by cross-claim or counter\n\ + claim in a lawsuit).\n\n11.2 Effect of Termination. Upon termination, You agree to immediately\ + \ stop any\nfurther use, reproduction, modification, sublicensing and distribution of the\n\ + Covered Code and to destroy all copies of the Covered Code that are in your\npossession\ + \ or control. All sublicenses to the Covered Code which have been\nproperly granted prior\ + \ to termination shall survive any termination of this\nLicense. Provisions which, by their\ + \ nature, should remain in effect beyond the\ntermination of this License shall survive,\ + \ including but not limited to Sections\n3, 5, 8, 9, 10, 11, 12.2 and 13. No party will\ + \ be liable to any other for\ncompensation, indemnity or damages of any sort solely as a\ + \ result of terminating\nthis License in accordance with its terms, and termination of this\ + \ License will\nbe without prejudice to any other right or remedy of any party.\n\n12. Miscellaneous.\n\ + \n12.1 Government End Users. The Covered Code is a \"commercial item\" as defined in\nFAR\ + \ 2.101. Government software and technical data rights in the Covered Code\ninclude only\ + \ those rights customarily provided to the public as defined in this\nLicense. This customary\ + \ commercial license in technical data and software is\nprovided in accordance with FAR\ + \ 12.211 (Technical Data) and 12.212 (Computer\nSoftware) and, for Department of Defense\ + \ purchases, DFAR 252.227-7015 (Technical\nData -- Commercial Items) and 227.7202-3 (Rights\ + \ in Commercial Computer Software\nor Computer Software Documentation). Accordingly, all\ + \ U.S. Government End Users\nacquire Covered Code with only those rights set forth herein.\n\ + \n12.2 Relationship of Parties. This License will not be construed as creating an\nagency,\ + \ partnership, joint venture or any other form of legal association\nbetween or among You,\ + \ Licensor or any Contributor, and You will not represent to\nthe contrary, whether expressly,\ + \ by implication, appearance or otherwise.\n\n12.3 Independent Development. Nothing in this\ + \ License will impair Licensor's\nright to acquire, license, develop, have others develop\ + \ for it, market and/or\ndistribute technology or products that perform the same or similar\ + \ functions as,\nor otherwise compete with, Modifications, Derivative Works, technology\ + \ or\nproducts that You may develop, produce, market or distribute.\n\n12.4 Waiver; Construction.\ + \ Failure by Licensor or any Contributor to enforce any\nprovision of this License will\ + \ not be deemed a waiver of future enforcement of\nthat or any other provision. Any law\ + \ or regulation which provides that the\nlanguage of a contract shall be construed against\ + \ the drafter will not apply to\nthis License.\n\n12.5 Severability. (a) If for any reason\ + \ a court of competent jurisdiction finds\nany provision of this License, or portion thereof,\ + \ to be unenforceable, that\nprovision of the License will be enforced to the maximum extent\ + \ permissible so\nas to effect the economic benefits and intent of the parties, and the\ + \ remainder\nof this License will continue in full force and effect. (b) Notwithstanding\ + \ the\nforegoing, if applicable law prohibits or restricts You from fully and/or\nspecifically\ + \ complying with Sections 2 and/or 3 or prevents the enforceability\nof either of those\ + \ Sections, this License will immediately terminate and You\nmust immediately discontinue\ + \ any use of the Covered Code and destroy all copies\nof it that are in your possession\ + \ or control.\n\n12.6 Dispute Resolution. Any litigation or other dispute resolution between\ + \ You\nand Licensor relating to this License shall take place in the Seattle,\nWashington,\ + \ and You and Licensor hereby consent to the personal jurisdiction of,\nand venue in, the\ + \ state and federal courts within that District with respect to\nthis License. The application\ + \ of the United Nations Convention on Contracts for\nthe International Sale of Goods is\ + \ expressly excluded.\n\n12.7 Export/Import Laws. This software is subject to all export\ + \ and import laws\nand restrictions and regulations of the country in which you receive\ + \ the Covered\nCode and You are solely responsible for ensuring that You do not export,\n\ + re-export or import the Covered Code or any direct product thereof in violation\nof any\ + \ such restrictions, laws or regulations, or without all necessary\nauthorizations.\n\n\ + 12.8 Entire Agreement; Governing Law. This License constitutes the entire\nagreement between\ + \ the parties with respect to the subject matter hereof. This\nLicense shall be governed\ + \ by the laws of the United States and the State of\nWashington.\n\nWhere You are located\ + \ in the province of Quebec, Canada, the following clause\napplies: The parties hereby confirm\ + \ that they have requested that this License\nand all related documents be drafted in English.\ + \ Les parties ont exigé\nque le présent contrat et tous les documents connexes\ + \ soient\nrédigés en anglais.\n\n EXHIBIT A.\ + \ \n\n\"Copyright © 1995-2002\nRealNetworks, Inc. and/or its licensors. All Rights\ + \ Reserved.\n\nThe contents of this file, and the files included with this file, are subject\ + \ to\nthe current version of the RealNetworks Public Source License Version 1.0 (the\n\"\ + RPSL\") available at https://www.helixcommunity.org/content/rpsl unless you have\nlicensed\ + \ the file under the RealNetworks Community Source License Version 1.0\n(the \"RCSL\") available\ + \ at https://www.helixcommunity.org/content/rcsl, in which\ncase the RCSL will apply. You\ + \ may also obtain the license terms directly from\nRealNetworks. You may not use this file\ + \ except in compliance with the RPSL or,\nif you have a valid RCSL with RealNetworks applicable\ + \ to this file, the RCSL.\nPlease see the applicable RPSL or RCSL for the rights, obligations\ + \ and\nlimitations governing use of the contents of the file.\n\nThis file is part of the\ + \ Helix DNA Technology. RealNetworks is the developer of\nthe Original code and owns the\ + \ copyrights in the portions it created.\n\nThis file, and the files included with this\ + \ file, is distributed and made\navailable on an 'AS IS' basis, WITHOUT WARRANTY OF ANY\ + \ KIND, EITHER EXPRESS OR\nIMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES,\ + \ INCLUDING\nWITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\n\ + PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.\n\nContributor(s): \n\nTechnology Compatibility\ + \ Kit Test\nSuite(s) Location (if licensed under the RCSL): \n\nObject Code Notice: Helix\ + \ DNA Client technology included. Copyright (c)\nRealNetworks, Inc., 1995-2002. All rights\ + \ reserved.\n\n\n EXHIBIT B \n\nCompatible Source Licenses\ + \ for the RealNetworks Public Source License. The\nfollowing list applies to the most recent\ + \ version of the license as of October\n25, 2002, unless otherwise indicated.\n\n* Academic\ + \ Free License\n* Apache Software License\n* Apple Public Source License\n* Artistic license\n\ + * Attribution Assurance Licenses\n* BSD license\n* Common Public License (1)\n* Eiffel Forum\ + \ License\n* GNU General Public License (GPL) (1)\n* GNU Library or \"Lesser\" General Public\ + \ License (LGPL) (1)\n* IBM Public License\n* Intel Open Source License\n* Jabber Open Source\ + \ License\n* MIT license\n* MITRE Collaborative Virtual Workspace License (CVW License)\n\ + * Motosoto License\n* Mozilla Public License 1.0 (MPL)\n* Mozilla Public License 1.1 (MPL)\n\ + * Nokia Open Source License\n* Open Group Test Suite License\n* Python Software Foundation\ + \ License\n* Ricoh Source Code Public License\n* Sun Industry Standards Source License (SISSL)\n\ + * Sun Public License\n* University of Illinois/NCSA Open Source License\n* Vovida Software\ + \ License v. 1.0\n* W3C License\n* X.Net License\n* Zope Public License\n* zlib/libpng license\n\ + \n(1) Note: because this license contains certain reciprocal licensing terms that\npurport\ + \ to extend to independently developed code, You may be prohibited under\nthe terms of this\ + \ otherwise compatible license from using code licensed under\nits terms with Covered Code\ + \ because Covered Code may only be licensed under the\nRealNetworks Public Source License.\ + \ Any attempt to apply non RPSL license terms,\nincluding without limitation the GPL, to\ + \ Covered Code is expressly forbidden.\nYou are responsible for ensuring that Your use of\ + \ Compatible Source Licensed\ncode does not violate either the RPSL or the Compatible Source\ + \ License.\n\nThe latest version of this list can be found at:\nhttps://www.helixcommunity.org/content/complicense\n\ + \n EXHIBIT C \n\nRealNetworks' Trademark policy. \n\nRealNetworks\ + \ defines the following trademarks collectively as \"Licensor\nTrademarks\": \"RealNetworks\"\ + , \"RealPlayer\", \"RealJukebox\", \"RealSystem\",\n\"RealAudio\", \"RealVideo\", \"RealOne\ + \ Player\", \"RealMedia\", \"Helix\" or any other\ntrademarks or trade names belonging to\ + \ RealNetworks.\n\nRealNetworks \"Licensor Trademark Policy\" forbids any use of Licensor\ + \ Trademarks\nexcept as permitted by and in strict compliance at all times with RealNetworks'\n\ + third party trademark usage guidelines which are posted at\nhttp://www.realnetworks.com/info/helixlogo.html." json: rpsl-1.0.json - yml: rpsl-1.0.yml + yaml: rpsl-1.0.yml html: rpsl-1.0.html - text: rpsl-1.0.LICENSE + license: rpsl-1.0.LICENSE - license_key: rrdtool-floss-exception-2.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-rrdtool-floss-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "FLOSS License Exception \n=======================\n(Adapted from http://www.mysql.com/company/legal/licensing/foss-exception.html\ + \ )\n\nI want specified Free/Libre and Open Source Software (\"FLOSS\")\napplications to\ + \ be able to use specified GPL-licensed RRDtool\nlibraries (the \"Program\") despite the\ + \ fact that not all FLOSS licenses are\ncompatible with version 2 of the GNU General Public\ + \ License (the \"GPL\").\n\nAs a special exception to the terms and conditions of version\ + \ 2.0 of the GPL:\n\nYou are free to distribute a Derivative Work that is formed entirely\ + \ from\nthe Program and one or more works (each, a \"FLOSS Work\") licensed under one\n\ + or more of the licenses listed below, as long as:\n\n1. You obey the GPL in all respects\ + \ for the Program and the Derivative\nWork, except for identifiable sections of the Derivative\ + \ Work which are\nnot derived from the Program, and which can reasonably be considered\n\ + independent and separate works in themselves,\n\n2. all identifiable sections of the Derivative\ + \ Work which are not derived\nfrom the Program, and which can reasonably be considered independent\ + \ and\nseparate works in themselves,\n\n1. are distributed subject to one of the FLOSS licenses\ + \ listed\nbelow, and\n\n2. the object code or executable form of those sections are\naccompanied\ + \ by the complete corresponding machine-readable source\ncode for those sections on the\ + \ same medium and under the same FLOSS\nlicense as the corresponding object code or executable\ + \ forms of\nthose sections, and\n\n3. any works which are aggregated with the Program or\ + \ with a Derivative\nWork on a volume of a storage or distribution medium in accordance\ + \ with\nthe GPL, can reasonably be considered independent and separate works in\nthemselves\ + \ which are not derivatives of either the Program, a Derivative\nWork or a FLOSS Work.\n\ + \nIf the above conditions are not met, then the Program may only be copied,\nmodified, distributed\ + \ or used under the terms and conditions of the GPL.\n\nFLOSS License List\n==================\n\ + License name\tVersion(s)/Copyright Date\nAcademic Free License\t\t2.0\nApache Software License\t\ + 1.0/1.1/2.0\nApple Public Source License\t2.0\nArtistic license\t\tFrom Perl 5.8.0\nBSD\ + \ license\t\t\t\"July 22 1999\"\nCommon Public License\t\t1.0\nGNU Library or \"Lesser\"\ + \ General Public License (LGPL)\t2.0/2.1\nIBM Public License, Version 1.0\nJabber Open\ + \ Source License\t1.0\nMIT License (As listed in file MIT-License.txt)\t-\nMozilla Public\ + \ License (MPL)\t1.0/1.1\nOpen Software License\t\t2.0\nOpenSSL license (with original SSLeay\ + \ license)\t\"2003\" (\"1998\")\nPHP License\t\t\t3.01\nPython license (CNRI Python License)\t\ + -\nPython Software Foundation License\t2.1.1\nSleepycat License\t\t\"1999\"\nW3C License\t\ + \t\t\"2001\"\nX11 License\t\t\t\"2001\"\nZlib/libpng License\t\t-\nZope Public License\t\ + \t2.0/2.1" json: rrdtool-floss-exception-2.0.json - yml: rrdtool-floss-exception-2.0.yml + yaml: rrdtool-floss-exception-2.0.yml html: rrdtool-floss-exception-2.0.html - text: rrdtool-floss-exception-2.0.LICENSE + license: rrdtool-floss-exception-2.0.LICENSE - license_key: rsa-1990 + category: Permissive spdx_license_key: LicenseRef-scancode-rsa-1990 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + RSA Data Security, Inc. makes no representations concerning either + the merchantability of this software or the suitability of this + software for any particular purpose. It is provided "as is" + without express or implied warranty of any kind. + + These notices must be retained in any copies of any part of this + documentation and/or software. json: rsa-1990.json - yml: rsa-1990.yml + yaml: rsa-1990.yml html: rsa-1990.html - text: rsa-1990.LICENSE + license: rsa-1990.LICENSE - license_key: rsa-cryptoki + category: Permissive spdx_license_key: LicenseRef-scancode-rsa-cryptoki other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + DISCLAIMER + Regarding the header / include files: + License to copy and use this software is granted provided that it is identified as "RSA Security Inc. PKCS #11 Cryptographic Token Interface (Cryptoki)" in all material mentioning or referencing this software or this function. + + License is also granted to make and use derivative works provided that such works are identified as "derived from the RSA Security Inc. PKCS #11 Cryptographic Token Interface (Cryptoki)" in all material mentioning or referencing the derived work. + + This software is provided "AS IS" and RSA Security, Inc. disclaims all warranties including but not limited to the implied warranty of merchantability, fitness for a particular purpose, and noninfringement. + + Regarding reference implementations: + RSA Laboratories is providing links to external reference implementations for the benefit of PKCS #11 developers. RSA Laboratories has not verified or reviewed these implementations and therefore can make no statement regarding their conformance to the current PKCS #11 specification. RSA Laboratories also makes no representations regarding intellectual property coverage or ownership of the reference implementations. The implementations may also be subject to regulations on the import, export and/or use of cryptography. Resolution of these issues is the responsibility of the user. json: rsa-cryptoki.json - yml: rsa-cryptoki.yml + yaml: rsa-cryptoki.yml html: rsa-cryptoki.html - text: rsa-cryptoki.LICENSE + license: rsa-cryptoki.LICENSE - license_key: rsa-demo + category: Permissive spdx_license_key: LicenseRef-scancode-rsa-demo other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This file is used to demonstrate how to interface to an + RSA Data Security, Inc. licensed development product. + + You have a royalty-free right to use, modify, reproduce and + distribute this demonstration file (including any modified + version), provided that you agree that RSA Data Security, + Inc. has no warranty, implied or otherwise, or liability + for this demonstration file or any modified version. json: rsa-demo.json - yml: rsa-demo.yml + yaml: rsa-demo.yml html: rsa-demo.html - text: rsa-demo.LICENSE + license: rsa-demo.LICENSE - license_key: rsa-md2 + category: Free Restricted spdx_license_key: LicenseRef-scancode-rsa-md2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + License to copy and use this software is granted for non-commercial Internet Privacy-Enhanced Mail provided that it is identified as the "RSA Data Security, Inc. MD2 Message Digest Algorithm" in all material mentioning or referencing this software or this function. + + RSA Data Security, Inc. makes no representations concerning either the merchantability of this software or the suitability of this software for any particular purpose. It is provided "as is" without express or implied warranty of any kind. + + These notices must be retained in any copies of any part of this documentation and/or software. json: rsa-md2.json - yml: rsa-md2.yml + yaml: rsa-md2.yml html: rsa-md2.html - text: rsa-md2.LICENSE + license: rsa-md2.LICENSE - license_key: rsa-md4 + category: Permissive spdx_license_key: LicenseRef-scancode-rsa-md4 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + License to copy and use this software is granted provided that it + is identified as the "RSA Data Security, Inc. MD4 Message-Digest + Algorithm" in all material mentioning or referencing this software + or this function. + + License is also granted to make and use derivative works provided + that such works are identified as "derived from the RSA Data + Security, Inc. MD4 Message-Digest Algorithm" in all material + mentioning or referencing the derived work. + + RSA Data Security, Inc. makes no representations concerning either + the merchantability of this software or the suitability of this + software for any particular purpose. It is provided "as is" + without express or implied warranty of any kind. + + These notices must be retained in any copies of any part of this + documentation and/or software. json: rsa-md4.json - yml: rsa-md4.yml + yaml: rsa-md4.yml html: rsa-md4.html - text: rsa-md4.LICENSE + license: rsa-md4.LICENSE - license_key: rsa-md5 + category: Permissive spdx_license_key: RSA-MD other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + License to copy and use this software is granted provided that it + is identified as the "RSA Data Security, Inc. MD5 Message-Digest + Algorithm" in all material mentioning or referencing this software + or this function. + + License is also granted to make and use derivative works provided + that such works are identified as "derived from the RSA Data + Security, Inc. MD5 Message-Digest Algorithm" in all material + mentioning or referencing the derived work. + + RSA Data Security, Inc. makes no representations concerning either + the merchantability of this software or the suitability of this + software for any particular purpose. It is provided "as is" + without express or implied warranty of any kind. + + These notices must be retained in any copies of any part of this + documentation and/or software. json: rsa-md5.json - yml: rsa-md5.yml + yaml: rsa-md5.yml html: rsa-md5.html - text: rsa-md5.LICENSE + license: rsa-md5.LICENSE - license_key: rsa-proprietary + category: Commercial spdx_license_key: LicenseRef-scancode-rsa-proprietary other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + The text of this license is secured, and may be viewed at + https://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf json: rsa-proprietary.json - yml: rsa-proprietary.yml + yaml: rsa-proprietary.yml html: rsa-proprietary.html - text: rsa-proprietary.LICENSE + license: rsa-proprietary.LICENSE - license_key: rtools-util + category: Permissive spdx_license_key: LicenseRef-scancode-rtools-util other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This software is provided AS IS. No warranty is granted, \nneither expressed nor implied.\ + \ USE THIS SOFTWARE AT YOUR OWN RISK.\nNO REPRESENTATION OF MERCHANTABILITY or FITNESS FOR\ + \ ANY \nPURPOSE is given.\n\nLicense to use this software is limited by the following terms:\n\ + \n1) This code may be used in any program, including programs developed\n for commercial\ + \ purposes, provided that this notice is included verbatim.\n\nAlso, in return for using\ + \ this code, please attempt to make your fixes and\nupdates available in some way, such\ + \ as by sending your updates to the\nauthor." json: rtools-util.json - yml: rtools-util.yml + yaml: rtools-util.yml html: rtools-util.html - text: rtools-util.LICENSE + license: rtools-util.LICENSE - license_key: ruby + category: Copyleft Limited spdx_license_key: Ruby other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + 1. You may make and give away verbatim copies of the source form of the + software without restriction, provided that you duplicate all of the + original copyright notices and associated disclaimers. + + 2. You may modify your copy of the software in any way, provided that + you do at least ONE of the following: + + a) place your modifications in the Public Domain or otherwise + make them Freely Available, such as by posting said + modifications to Usenet or an equivalent medium, or by allowing + the author to include your modifications in the software. + + b) use the modified software only within your corporation or + organization. + + c) give non-standard binaries non-standard names, with + instructions on where to get the original software distribution. + + d) make other distribution arrangements with the author. + + 3. You may distribute the software in object code or binary form, + provided that you do at least ONE of the following: + + a) distribute the binaries and library files of the software, + together with instructions (in the manual page or equivalent) + on where to get the original distribution. + + b) accompany the distribution with the machine-readable source of + the software. + + c) give non-standard binaries non-standard names, with + instructions on where to get the original software distribution. + + d) make other distribution arrangements with the author. + + 4. You may modify and include the part of the software into any other + software (possibly commercial). But some files in the distribution + are not written by the author, so that they are not under these terms. + + For the list of those files and their copying conditions, see the + file LEGAL. + + 5. The scripts and library files supplied as input to or produced as + output from the software do not automatically fall under the + copyright of the software, but belong to whomever generated them, + and may be sold commercially, and may be aggregated with this + software. + + 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. json: ruby.json - yml: ruby.yml + yaml: ruby.yml html: ruby.html - text: ruby.LICENSE + license: ruby.LICENSE - license_key: rubyencoder-commercial + category: Commercial spdx_license_key: LicenseRef-scancode-rubyencoder-commercial other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Terms & Conditions\nPLEASE READ THIS CAREFULLY BEFORE USING MATERIALS:\nA IMPORTANT\ + \ PROVISIONS\nYOUR ATTENTION IS DRAWN PARTICULARLY TO THE PROVISIONS OF CLAUSE 10.2 OF THE\ + \ FOLLOWING LICENCE AGREEMENT.\n\nPLEASE READ THIS CAREFULLY BEFORE USING MATERIALS:\nA\ + \ IMPORTANT PROVISIONS\nYOUR ATTENTION IS DRAWN PARTICULARLY TO THE PROVISIONS OF CLAUSE\ + \ 10.2 OF THE FOLLOWING LICENCE AGREEMENT.\n\nB PROPERTY OF SourceGuardian Ltd\nYOU MAY\ + \ OBTAIN A COPY OF THIS SOFTWARE PRODUCT EITHER BY DOWNLOADING IT REMOTELY FROM OUR SERVER\ + \ OR BY COPYING IT FROM AN AUTHORISED DISKETTE, CD-ROM OR OTHER MEDIA ('HARD MEDIA'). THE\ + \ COPYRIGHT, DATABASE RIGHTS AND ANY OTHER INTELLECTUAL PROPERTY RIGHTS IN THE PROGRAMS\ + \ AND DATA WHICH CONSTITUTE THIS RUBYENCODER SOFTWARE PRODUCT (THE 'MATERIALS'), TOGETHER\ + \ WITH THE HARD MEDIA ON WHICH THEY WERE SUPPLIED TO YOU, ARE AND REMAIN THE PROPERTY OF\ + \ SourceGuardian Ltd LIMITED ('SourceGuardian Ltd'). YOU ARE LICENSED TO USE THEM ONLY IF\ + \ YOU ACCEPT ALL THE TERMS AND CONDITIONS SET OUT BELOW.\n\nC LICENSE ACCEPTANCE PROCEDURE\n\ + BY CLICKING ON THE ACCEPTANCE BUTTON WHICH FOLLOWS THIS LICENCE AGREEMENT (MARKED 'I ACCEPT'),\ + \ YOU INDICATE ACCEPTANCE OF THIS LICENCE AGREEMENT AND THE LIMITED WARRANTY AND LIMITATION\ + \ OF LIABILITY SET OUT IN THIS LICENCE AGREEMENT. SUCH ACCEPTANCE IS EITHER ON YOUR OWN\ + \ BEHALF OR ON BEHALF OF ANY CORPORATE ENTITY WHICH EMPLOYS YOU OR WHICH YOU REPRESENT ('CORPORATE\ + \ LICENSEE'). IN THIS LICENCE AGREEMENT, 'YOU' INCLUDES BOTH THE READER AND ANY CORPORATE\ + \ LICENSEE.\n\nD LICENSE REJECTION PROCEDURE\nYOU SHOULD THEREFORE READ THIS LICENCE AGREEMENT\ + \ CAREFULLY BEFORE CLICKING ON THE ACCEPTANCE BUTTON. IF YOU DO NOT ACCEPT THESE TERMS AND\ + \ CONDITIONS, YOU SHOULD CLICK ON THE 'REJECT' BUTTON, DELETE THE MATERIALS FROM YOUR COMPUTER\ + \ AND PROMPTLY (AND IN ANY EVENT, WITHIN 14 DAYS OF RECEIPT) RETURN TO SourceGuardian Ltd\ + \ OR A LICENSED RESELLER (A) THE HARD MEDIA; (B) ANY OTHER ITEMS PROVIDED THAT ARE PART\ + \ OF THIS PRODUCT; AND (C) YOUR DATED PROOF OF PURCHASE. ANY MONEY YOU PAID TO SourceGuardian\ + \ Ltd OR AN SourceGuardian Ltd RESELLER FOR THE MATERIALS WILL BE REFUNDED LESS ANY CREDIT\ + \ CARD TRANSACTION FEE INCURRED BY SourceGuardian Ltd.\n\nE OTHER AGREEMENTS\nIF YOUR USE\ + \ OF THESE PROGRAMS AND DATA IS PURSUANT TO AN EXECUTED LICENCE AGREEMENT, SUCH AGREEMENT\ + \ SHALL APPLY INSTEAD OF THE FOLLOWING TERMS AND CONDITIONS.\n\nLICENSE AGREEMENT AND LIMITED\ + \ WARRANTY\n1. Ownership of materials and copies\nThe Materials and related documentation\ + \ are copyrighted works of authorship, and are also protected under applicable database\ + \ laws. SourceGuardian Ltd retains ownership of the Materials and all subsequent copies\ + \ of the Materials, regardless of the form in which the copies may exist. This licence is\ + \ not a sale of the original Materials or any copies.\n\n2. Licence\n2.1. Evaluation Licence\n\ + \nIf you have received an evaluation version of the Materials, SourceGuardian Ltd hereby\ + \ grants to you, strictly for your own internal business purposes (and subject to the other\ + \ terms and conditions of this Licence Agreement), a limited, non-exclusive licence for\ + \ a single user to:\n\n2.1.1. install the Materials for use on a single computer owned,\ + \ leased and/or controlled by you for an evaluation period of 14 days;\n\n2.1.2. make a\ + \ single copy of the Materials for back-up, archival or other security purposes.\n\n2.2.\ + \ Full Licence\n\nProvided that you have paid the applicable licence fee (and subject to\ + \ the other terms and conditions of this Licence Agreement), SourceGuardian Ltd hereby grants\ + \ to you, strictly for your own internal business purposes, a limited, non-exclusive licence\ + \ for a single user to:\n\n2.2.1. install the Materials for use on a single computer owned,\ + \ leased and/or controlled by you;\n\n2.2.2. make a single copy of the Materials for back-up,\ + \ archival or other security purposes. \n\n2.2.3 Use RubyEncoder for development, testing,\ + \ training and demonstration purposes and for the purpose of providing services to end users.\ + \ \n\n2.3 Subject to the remaining provisions of this Licence SourceGuardian Ltd grants\ + \ to the Licensee a world-wide, royalty free, non-exclusive, licence to permit the Licensee\ + \ to do the following things in relation to the Loader (being defined as the software program\ + \ made available on the RubyEncoder website at www.rubyencoder.com in object code form that\ + \ facilitates the conversion of scripts encoded with RubyEncodser to readable form). The\ + \ following permissions shall be deemed to apply to and cover any use of the Loaders prior\ + \ to the effective date of this Licence Agreement. \n\n2.3.1 Distribute free of charge and\ + \ make copies of the Loader for non-revenue generating activities including but not limited\ + \ to evaluation, development, demonstration, training purposes, test, verification as well\ + \ as for end user support. All such copies shall be subject to the provisions of this Licence\ + \ Agreement; \n\n2.3.2 Merge, incorporate, install and integrate the Loader with any third\ + \ party or Licensee software; \n\n2.3.3 Use, distribute and market the Loader to end users\ + \ provided always that end users are either (i) directed to the RubyEncoder website and\ + \ agree to the terms of SourceGuardian Ltd’s free Loader Licence or (ii) are supplied with\ + \ a copy of SourceGuardian Ltd’s free Loader Licence when the encoded files are supplied.\ + \ \n\n3. Limited Support\nSourceGuardian Ltd shall make available to you (at such times\ + \ and to such extent as SourceGuardian Ltd may, in its sole discretion, deem reasonable)\ + \ limited email support services for a period of 6 months from the date of your first installation\ + \ of the Materials. Without prejudice to the foregoing provisions of this clause 3 , such\ + \ support services are, in any event, limited to your making a maximum of 20 requests for\ + \ assistance during the support period.\n\n4. License restrictions\nYou may not use, copy,\ + \ modify or transfer the Materials (including any related documentation) or any copy, in\ + \ whole or in part, including any print-out of all or part of any database, except as expressly\ + \ provided for in this licence. If you transfer possession of any copy of the Materials\ + \ to another party or use the Materials on a different computer from that on which the Materials\ + \ were originally installed except as provided herein or without obtaining SourceGuardian\ + \ Ltd's prior written consent, your licence is automatically terminated. You may not translate,\ + \ reverse engineer, decompile, disassemble, modify or create derivative works based on the\ + \ Materials, except as expressly permitted by the laws of England and Wales. You may not\ + \ vary, delete or obscure any notices of proprietary rights or any product identification\ + \ or restrictions on or in the Materials.\n\n5. No transfer\nThe Materials are licensed\ + \ only to you. You may not rent, lease, sub-license, sell, assign, pledge, transfer or otherwise\ + \ dispose of the Materials, on a temporary or permanent basis, nor use the same for remote\ + \ hosting, ASP services, to act as a bureau or for time-sharing use without the prior written\ + \ consent of SourceGuardian Ltd.\n\n6. Undertakings\nYou undertake to:\n\n6.1. ensure that,\ + \ prior to use of the Materials by your employees or agents, all such parties are notified\ + \ of this licence and the terms of this Licence Agreement;\n\n6.2. reproduce and include\ + \ our copyright notice (or such other party's copyright notice as specified on the Materials)\ + \ on all and any copies of the Materials, including any partial copies of the Materials;\n\ + \n6.3. hold all drawings, specifications, data (including object and source codes), software\ + \ listings and all other information relating to the Materials confidential and not at any\ + \ time, during this licence or after its expiry, disclose the same, whether directly or\ + \ indirectly, to any third party without SourceGuardian Ltd's consent.\n\n7. Limited warranty\n\ + 7.1. Subject to the limitations and exclusions of liability below, SourceGuardian Ltd warrants\ + \ that (a) the Hard Media on which the Materials are furnished will be free from material\ + \ defects under normal use; and that (b) the copy of the program will materially conform\ + \ to the documentation which accompanies the program. The Warranty Period is 90 days from\ + \ the date of delivery to you.\n\n7.2. SourceGuardian Ltd will also indemnify you for personal\ + \ injury or death solely and directly caused by any defect in its products or the negligence\ + \ of its employees.\n\n7.3. SourceGuardian Ltd shall not be liable under the said warranty\ + \ above if the Materials fail to operate in accordance with the said warranty as a result\ + \ of any modification, variation or addition to the Materials not performed by the SourceGuardian\ + \ Ltd or caused by any abuse, corruption or incorrect use or installation of the Materials,\ + \ including use of the Materials with equipment or other software which is incompatible.\n\ + \n8. No other warranties\n8.1. The foregoing warranty is made in lieu of any other warranties,\ + \ representations or guarantees of any kind, either expressed or implied, including, but\ + \ not limited to, any implied warranties of quality, merchantability, fitness for a particular\ + \ purpose or ability to achieve a particular result. You assume the entire risk as to the\ + \ quality and performance of the Materials. Should the Materials prove defective, you (and\ + \ not the SourceGuardian Ltd nor any licensed reseller) assume the entire cost of all necessary\ + \ servicing, repair or correction.\n\n8.2. SourceGuardian Ltd does not warrant that the\ + \ Materials will meet your requirements or that its operation will be uninterrupted or error\ + \ free.\n\n9. Limitation of liability\nSourceGuardian Ltd's entire liability and your exclusive\ + \ remedy shall be:\n\n9.1. the replacement of any Hard Media not meeting SourceGuardian\ + \ Ltd's 'Limited Warranty' and which is returned to SourceGuardian Ltd together with dated\ + \ proof of purchase; or\n\n9.2. if, during the Warranty Period, SourceGuardian Ltd is unable\ + \ to deliver replacement Hard Media which is free of material defects, you may terminate\ + \ this Licence Agreement by returning the Materials to SourceGuardian Ltd and any money\ + \ you paid to SourceGuardian Ltd for the Materials will be refunded less any credit card\ + \ transaction fee incurred by SourceGuardian Ltd.\n\n10. Exclusion of liability\n10.1. Except\ + \ in respect of personal injury or death caused directly by the negligence of SourceGuardian\ + \ Ltd, in no event will SourceGuardian Ltd be liable to you or any third party for any damages,\ + \ including any lost profits, lost savings, loss of data or any indirect, special, incidental\ + \ or consequential damages arising out of the use of or inability to use such Materials,\ + \ even if SourceGuardian Ltd has been advised of the possibility of such damages. Nothing\ + \ in this Licence Agreement limits liability for fraudulent misrepresentation.\n\n10.2.\ + \ Without prejudice to any other provisions of this Licence Agreement you hereby expressly\ + \ acknowledge that encryption software is not infallible and that third parties may develop\ + \ and employ methods to circumvent the Materials and you agree that SourceGuardian Ltd shall\ + \ have no liability to you or any third party in such circumstances.\n\n11. Your statutory\ + \ rights\nThis licence gives you specific legal rights and you may also have other rights\ + \ that vary from country to country. Some jurisdictions do not allow the exclusion of implied\ + \ warranties, or certain kinds of limitations or exclusions of liability, so the above limitations\ + \ and exclusions may not apply to you. Other jurisdictions allow limitations and exclusions\ + \ subject to certain conditions. In such a case the above limitations and exclusions shall\ + \ apply to the fullest extent permitted by the laws of such applicable jurisdictions. If\ + \ any part of the above limitations or exclusions is held to be void or unenforceable, such\ + \ part shall be deemed to be deleted from this Licence Agreement and the remainder of the\ + \ limitation or exclusion shall continue in full force and effect. Any rights that you may\ + \ have as a consumer (ie a purchaser for private as opposed to business, academic or government\ + \ use) are not affected.\n\n12. Term\nThe licence is effective until terminated. You may\ + \ terminate it at any time by destroying the Materials together with all copies in any form.\ + \ It will also terminate upon conditions set out elsewhere in this Licence Agreement or\ + \ if you fail to comply with any term or condition of this Licence Agreement or if you voluntarily\ + \ return the Materials to us. You agree upon such termination to destroy the Materials together\ + \ with all copies in any form.\n\n13. Export\nYou will comply with all applicable laws,\ + \ rules, and regulations governing export of goods and information, including the laws of\ + \ the countries in which the Materials were created. In particular, you will not export\ + \ or re-export, directly or indirectly, separately or as a part of a system, the Materials\ + \ or other information relating thereto to any country for which an export licence or other\ + \ approval is required, without first obtaining such licence or other approval.\n\n14. General\n\ + 14.1. You agree that SourceGuardian Ltd shall have the right, after supplying undertakings\ + \ as to confidentiality, to audit any computer system on which the Materials are installed\ + \ in order to verify compliance with this licence Agreement.\n\n14.2. This Licence Agreement\ + \ constitutes the complete and exclusive statement of the Agreement between SourceGuardian\ + \ Ltd and you with respect to the subject matter of this Licence Agreement and supersedes\ + \ all proposals, representations, understandings and prior agreements, whether oral or written,\ + \ and all other communications between us relating to that subject matter.\n\n14.3. Any\ + \ clause in this Licence Agreement that is found to be invalid or unenforceable shall be\ + \ deemed deleted and the remainder of this Licence Agreement shall not be affected by that\ + \ deletion.\n\n14.4. Failure or neglect by either party to exercise any of its rights or\ + \ remedies under this Licence Agreement will not be construed as a waiver of that party's\ + \ rights nor in any way affect the validity of the whole or part of this Licence Agreement\ + \ nor prejudice that party's right to take subsequent action.\n\n14.5. This Licence Agreement\ + \ is personal to you and you may not assign, transfer, sub-contract or otherwise part with\ + \ this Licence Agreement or any right or obligation under it without the SourceGuardian\ + \ Ltd's prior written consent.\n\n14.6. This Licence Agreement and any claim or matter arising\ + \ under or in connection with this Licence Agreement and the legal relationships established\ + \ by this Licence Agreement shall be governed by and construed in all respects in accordance\ + \ with the law of England and Wales, and the parties agree to submit to the non-exclusive\ + \ jurisdiction of the English courts.\n\nShould you have any questions concerning this Licence\ + \ Agreement you may contact SourceGuardian Limited at Rotterdam House, 116 Quayside, Newcastle\ + \ upon Tyne. NE16 5EG. United Kingdom. Tel: 0845 155 2455. Email: support@rubyencoder.com." json: rubyencoder-commercial.json - yml: rubyencoder-commercial.yml + yaml: rubyencoder-commercial.yml html: rubyencoder-commercial.html - text: rubyencoder-commercial.LICENSE + license: rubyencoder-commercial.LICENSE - license_key: rubyencoder-loader + category: Proprietary Free spdx_license_key: LicenseRef-scancode-rubyencoder-loader other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "RUBYENCODER LOADER LICENCE \n \nThis Licence applies to the use of the Loaders for\ + \ RubyEncoder by End Users and is granted by SourceGuardian Ltd (registered number 05663267)\ + \ which is referred to in this Licence as “RubyEncoder”. The licence terms for the use\ + \ of RubyEncoder software are set out at http://www.rubyencoder.com/terms.html. If you are\ + \ a licensee of RubyEncoder your use of the Loaders is governed by that licence.\n\nIf you\ + \ are an End User of RubyEncoder then, by downloading the Loader, you are accepting the\ + \ terms of this Licence on behalf of yourself and any company, unincorporated association\ + \ or partnership for which you work. This Licence comes into effect on the date that you\ + \ download the Loader. If, having read the Licence, you do not agree to be bound to any\ + \ of its terms you should not download the Loader and any enquiries on the content of this\ + \ Licence should be directed to RubyEncoder, C/O SourceGuardian Ltd, Rotterdam House, 116\ + \ Quayside, Newcastle upon Tyne. NE16 5EG. Tel: 0845 155 2455 Email: support@rubyencoder.com.\n\ + \n1. Definitions\n\nDefect Any material error that prevents the Loader from uploading\ + \ or downloading scripts to and from RubyEncoder (unless used in conjunction with third\ + \ party software that is not on the list of maintained software on RubyEncoder’s website)\n\ + End User(s) Users of the Loader in commercial operation \n\nLoader The software program\ + \ that facilitates the conversion of scripts encoded with RubyEncoderto readable form\n\ + \nMaintainence Issuing updates to RubyEncoder to ensure continuing compatibility with\ + \ third party software programs with which RubyEncoder is designed to inter-operate. \n\n\ + RubyEncoder The software encryption product of that name used to encrypt scripts from\ + \ human-readable form into a form capable of being read only with the Loader, available\ + \ at www.rubyencoder.com\n\nSupport Assisting the End User with enquiries relating to\ + \ Defects\n\n2. License for End Users\nSubject to the remaining provisions of this Licence\ + \ SourceGuardian Ltd grants to the End User a world-wide, royalty free, non-exclusive, licence\ + \ to permit the End User to use the Loader in its commercial operations for the purposes\ + \ of:\n2.1 Reading scripts encrypted withRubyEncoder;\n2.2 Bundling the End User’s\ + \ own software applications together with the Loader;\n2.3 Linking the End User’s software\ + \ applications to the Loaders on RubyEncoder’s website (to ensure that the applications\ + \ remain current with the latest updated version of the Loader)\n\nThis License shall be\ + \ deemed to apply to and cover any use of the Loaders prior to the effective date of this\ + \ Licence.\n\n3. Restrictions and Exceptions\n3.1 The rights granted to the End User\ + \ under this Licence do not operate to assign or transfer the ownership of any intellectual\ + \ property rights in the Loader to the End User.\n3.2 The Loader is intended for commercial\ + \ use only and not for use by consumers. By accepting this Licence the End User confirms\ + \ that he or she is acting in the course of business. The End User will not remove or obscure\ + \ any copyright or ownership notices or warning legends from the Loader nor will the End\ + \ User attempt to reverse engineer, decompile or otherwise interfere with the Loader except\ + \ to the extent expressly permitted by law or under this Licence. SourceGuardian Ltd may\ + \ terminate this Licence immediately if it discovers that the End User is in breach of its\ + \ obligations in this Licence and in such a case the End User will immediately delete the\ + \ Loader from its computer systems and will on request by SourceGuardian Ltd provide and\ + \ execute such written assurances as SourceGuardian Ltd may require confirming such deletion.\n\ + 3.3 The Loader is licensed free of charge and accordingly is provided on an “as is” basis.\ + \ The End User agrees and acknowledges that SourceGuardian Ltd has no liability to the\ + \ End User, whether in contract, tort (including negligence) or otherwise arising from any\ + \ Defects in the Loader and all warranties implied by the laws of any jurisdiction in which\ + \ the End User uses the Loader are expressly excuded to the fullest extent permitted by\ + \ the laws of such jurisdiction.\n3.4 In no event will SourceGuardian Ltd be liable to\ + \ the End User for any consequential loss or any financial loss.\n3.5 SourceGuardian\ + \ Ltd's only obligation to the End User is to use reasonable commercial efforts to (i) correct\ + \ Defects within a reasonable time (ii) ensure the the Loader is not corrupted and is free\ + \ of any computer virus, trojans, worms or logic bombs and (iii) to issue Maintenance updates\ + \ from time to time. SourceGuardian Ltd may terminate or assign its obligations under this\ + \ paragraph 3.5 by publishing a notice to this effect on the RubyEncoder website at www.rubyencoder.com.\ + \ In such circumstances the provisions of paragraph 3.2 will also terminate.Nothing in\ + \ this Licence applies so as to exclude or limit any liability that SourceGuardian Ltd may\ + \ have to the End User based on fraudulent misrepresentation or personal injury resulting\ + \ from SourceGuardian Ltd's negligence.\n\n4. General\n4.1 This Agreement contains\ + \ the entire agreement between the parties on the subject matter of this Agreement and supersedes\ + \ all representations, undertakings and agreements previously made between the parties with\ + \ respect to the subject matter of this Agreement.\n4.2 If any provision (or part of\ + \ a provision) of this Licence is found by any court or administrative body of competent\ + \ jurisdiction to be invalid, unenforceable or illegal, the other provisions will remain\ + \ in force. If any invalid, unenforceable or illegal provision would be valid, enforceable\ + \ or legal if some part of it were deleted, the provision will apply with whatever modification\ + \ is necessary to give effect to the commercial intention of the parties.\n4.3 This Licence\ + \ constitutes the whole agreement between the parties and supersedes any previous arrangement,\ + \ understanding or agreement between them relating to its subject matter.\n4.4 Each party\ + \ acknowledges and agrees that in entering into this Licence it does not rely on any undertaking,\ + \ promise, assurance, statement, representation, warranty or understanding (whether in writing\ + \ or not) of any person (whether party to this Licence or not) relating to the subject matter\ + \ of this Licence, other than as expressly set out in this Licence.\n4.5 This Licence\ + \ and any disputes or claims arising out of or in connection with it or its subject matter\ + \ or formation (including non-contractual disputes or claims) are governed by, and should\ + \ be construed in accordance with, the law of England and Wales.\n4.6 The parties irrevocably\ + \ agree that the courts of England have exclusive jurisdiction to settle any dispute or\ + \ claim that arises out of or in connection with the Contract or its subject matter or formation\ + \ (including non-contractual disputes or claims)." json: rubyencoder-loader.json - yml: rubyencoder-loader.yml + yaml: rubyencoder-loader.yml html: rubyencoder-loader.html - text: rubyencoder-loader.LICENSE + license: rubyencoder-loader.LICENSE - license_key: rute + category: Permissive spdx_license_key: LicenseRef-scancode-rute other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Copying + + This license dictates the conditions under which you may copy, modify and distribute this work. + Exceptions to this license are likely to be granted for specific cases. Please email the author for details. + + TERMS AND CONDITIONS + 1. This work may not be reproduced in hard copy except for personal use. Further, it may not be reproduced in hard copy for training material, nor for commercial gain, nor for public or organisation-wide distribution. Further, it may not be reproduced in hard copy except where the intended reader of the hard copy initiates the process of converting the work to hard copy. + 2. The work may not be modified except by a generic format translation utility, as may be appropriate for viewing the work using an alternative electronic media. Such a modified version of the work must clearly credit the author, display this license, and include all copyright notices. Such a modified version of the work must clearly state the means by which it was translated, as well as where an original copy may be obtained. + 3. Verbatim copies of the work may be redistributed through any electronic media. Modified versions of the work as per 2. above may be redistributed same, provided that they can reasonably be said to include, albeit in translated form, all the original source files. + 4. The work is not distributed to promote any product, computer program or operating system. Even if otherwise cited, all of the opinions expressed in the work are exclusively those of the author. The author withdraws any implication that any statement made within this work can be justified, verified or corroborated. + NO WARRANTY + 5. THE COPYRIGHT HOLDER(S) PROVIDE NO WARRANTY FOR THE ACCURACY OR COMPLETENESS OF THIS WORK, OR TO THE FUNCTIONALITY OF THE EXAMPLE PROGRAMS OR DATA CONTAINED THEREIN, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + 6. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE WORK 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 WORK (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. json: rute.json - yml: rute.yml + yaml: rute.yml html: rute.html - text: rute.LICENSE + license: rute.LICENSE - license_key: rxtx-exception-lgpl-2.1 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-rxtx-exception-lgpl-2.1 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, the copyright holders of RXTX give you + permission to link RXTX with independent modules that communicate with + RXTX solely through the Sun Microsytems CommAPI interface version 2, + regardless of the license terms of these independent modules, and to copy + and distribute the resulting combined work under terms of your choice, + provided that every copy of the combined work is accompanied by a complete + copy of the source code of RXTX (the version of RXTX used to produce the + combined work), being distributed under the terms of the GNU Lesser General + Public License plus this exception. An independent module is a + module which is not derived from or based on RXTX. + + Note that people who make modified versions of RXTX are not obligated + to grant this special exception for their modified versions; it is + their choice whether to do so. The GNU Lesser General Public License + gives permission to release a modified version without this exception; this + exception also makes it possible to release a modified version which + carries forward this exception. json: rxtx-exception-lgpl-2.1.json - yml: rxtx-exception-lgpl-2.1.yml + yaml: rxtx-exception-lgpl-2.1.yml html: rxtx-exception-lgpl-2.1.html - text: rxtx-exception-lgpl-2.1.LICENSE + license: rxtx-exception-lgpl-2.1.LICENSE - license_key: ryszard-szopa + category: Permissive spdx_license_key: LicenseRef-scancode-ryszard-szopa other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This work ‘as-is’ we provide. + No warranty, express or implied. + We’ve done our best, + to debug and test. + Liability for damages denied. + + Permission is granted hereby, + to copy, share, and modify. + Use as is fit, + free or for profit. + On this notice these rights rely. json: ryszard-szopa.json - yml: ryszard-szopa.yml + yaml: ryszard-szopa.yml html: ryszard-szopa.html - text: ryszard-szopa.LICENSE + license: ryszard-szopa.LICENSE - license_key: saas-mit + category: Permissive spdx_license_key: LicenseRef-scancode-saas-mit other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. + + If your version of the Software supports interaction with it remotely through + a computer network, the above copyright notice and this permission notice + shall be accessible to all users. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. json: saas-mit.json - yml: saas-mit.yml + yaml: saas-mit.yml html: saas-mit.html - text: saas-mit.LICENSE + license: saas-mit.LICENSE - license_key: saf + category: Permissive spdx_license_key: LicenseRef-scancode-saf other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Service Availability Forum License + + OWNERSHIP OF SPECIFICATION AND COPYRIGHTS. The Specification and all worldwide copyrights therein are the exclusive property of Licensor. You may not remove, obscure, or alter any copyright or other proprietary rights notices that are in or on the copy of the Specification you download. You must reproduce all such notices on all copies of the Specification you make. Licensor may make changes to the Specification, or to items referenced therein, at any time without notice. Licensor is not obligated to support or update the Specification. + + Copyright(c) Service Availability(TM) Forum. All rights reserved. + + Permission to use, copy, modify, and distribute this software for any purpose without fee is hereby granted, provided that this entire notice is included in all copies of any software which is or includes a copy or modification of this software and in all copies of the supporting documentation for such software. + + THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN PARTICULAR, THE SERVICE AVAILABILITY FORUM DOES NOT MAKE ANY REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. json: saf.json - yml: saf.yml + yaml: saf.yml html: saf.html - text: saf.LICENSE + license: saf.LICENSE - license_key: safecopy-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-safecopy-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "The SafeCopy Free! utility is freeware. \n\nUser is granted a non-exclusive license\ + \ to use SafeCopy Free! utility, for any legal purpose, at a time.\nThe SafeCopy Free! software\ + \ may not be rented or leased, but may be permanently transferred, if the person\nreceiving\ + \ it agrees to terms of this license. If the software is an update, the transfer must include\ + \ the update\nand all previous versions. \n\nThe SafeCopy Free! may be freely distributed,\ + \ provided the distribution package is not modified.\nNo person or company may charge a\ + \ fee for the distribution of SafeCopy Free! without written permission from the\ncopyright\ + \ holder. \n\nSafeCopy Free! IS DISTRIBUTED \"AS IS\". NO WARRANTY OF ANY KIND IS EXPRESSED\ + \ OR IMPLIED. YOU USE THIS SOFTWARE AT\nYOUR OWN RISK THE AUTHOR ASSUMES NO LIABILITY FOR\ + \ DATA LOSS, DAMAGES, DIRECT OR CONSEQUENTIAL, LOSS OF PROFITS OR\nANY OTHER KIND OF LOSS\ + \ WHILE USING OR MISUSING THIS SOFTWARE.\n\nThe integrity of the original SafeCopy Free!\ + \ distribution file as distributed by Elwinsoft is essential.\nSafeCopy Free! and all of\ + \ its related files must be distributed together in the original format.\nThe SafeCopy Free!\ + \ distribution file may not have files added to it or removed from it, and none of its contents\n\ + may be emulate, clone, rent, lease, sell, modify, decompile, disassemble, otherwise reverse\ + \ engineer, or transfer\nthe licensed program, or any subset of the licensed program, except\ + \ as provided for in this agreement.\nAny such unauthorized use shall result in immediate\ + \ and automatic termination of this license and may result\nin criminal and/or civil prosecution.\n\ + \nInstalling and/or using SafeCopy Free! signifies acceptance of these terms and conditions\ + \ of the license.\n\nIf you do not agree with the terms of this license you must remove\ + \ SafeCopy Free! files from your storage\ndevices and cease to use the product." json: safecopy-eula.json - yml: safecopy-eula.yml + yaml: safecopy-eula.yml html: safecopy-eula.html - text: safecopy-eula.LICENSE + license: safecopy-eula.LICENSE - license_key: san-francisco-font + category: Proprietary Free spdx_license_key: LicenseRef-scancode-san-francisco-font other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "APPLE INC.\nLICENSE AGREEMENT FOR THE APPLE SAN FRANCISCO FONT\nFor iOS, OS X and tvOS\ + \ application uses only\n\nPLEASE READ THIS SOFTWARE LICENSE AGREEMENT (\"LICENSE\") CAREFULLY\ + \ BEFORE USING\nTHE APPLE SAN FRANCISCO FONT (DEFINED BELOW). BY USING THE APPLE FONT, YOU\ + \ ARE\nAGREEING TO BE BOUND BY THE TERMS OF THIS LICENSE. IF YOU ARE ACCESSING THE\nAPPLE\ + \ FONT ELECTRONICALLY, SIGNIFY YOUR AGREEMENT TO BE BOUND BY THE TERMS OF\nTHIS LICENSE\ + \ BY CLICKING THE \"AGREE \" BUTTON. IF YOU DO NOT AGREE TO THE TERMS OF\nTHIS LICENSE,\ + \ DO NOT USE THE APPLE FONT AND CLICK \"DISAGREE\".\n\nIMPORTANT NOTE: THE APPLE SAN FRANCISCO\ + \ FONT IS TO BE USED SOLELY FOR CREATING\nMOCK-UPS OF USER INTERFACES TO BE USED IN SOFTWARE\ + \ PRODUCTS RUNNING ON\nAPPLE’S iOS, OS X OR tvOS OPERATING SYSTEMS, AS APPLICABLE.\n\n1.\ + \ General.\n\nA. The Apple font, interfaces, content, data, and other materials accompanying\ + \ this License, whether on\ndisk, print or electronic documentation, in read only memory,\ + \ or any other media or in any other form,\n(collectively, the \"Apple Font\") are licensed,\ + \ not sold, to you by Apple Inc. (\"Apple\") for use only under\nthe terms of this License.\ + \ Apple and/or Apple’s licensors retain ownership of the Apple Font itself and\nreserve\ + \ all rights not expressly granted to you. The terms of this License will govern any software\n\ + upgrades provided by Apple that replace and/or supplement the original Apple Font, unless\ + \ such\nupgrade is accompanied by a separate license in which case the terms of that license\ + \ will govern.\n\nB. Title and intellectual property rights in and to any content displayed\ + \ by or accessed through the Apple\nFont belongs to the respective content owner. Such content\ + \ may be protected by copyright or other\nintellectual property laws and treaties, and may\ + \ be subject to terms of use of the third party providing\nsuch content. This License does\ + \ not grant you any rights to use such content nor does it guarantee that\nsuch content\ + \ will continue to be available to you.\n\n2. Permitted License Uses and Restrictions.\n\ + \nA. Limited License. Subject to the terms of this License, you may use the Apple Font solely\ + \ for creating\nmock-ups of user interfaces to be used in software products running on Apple’s\ + \ iOS, OS X or tvOS\noperating systems, as applicable. The foregoing right includes the\ + \ right to show the Apple Font in screen\nshots, images, mock-ups or other depictions, digital\ + \ and/or print, of such software products running\nsolely on iOS, OS X or tvOS.\n\nYou may\ + \ use this Apple Font only for the purposes described in this License and only if you are\ + \ a\nregistered Apple Developer, or as otherwise expressly permitted by Apple in writing.\n\ + \nB. Other Use Restrictions. The grants set forth in this License do not permit you to,\ + \ and you agree not to,\ninstall, use or run the Apple Font for the purpose of creating\ + \ mock-ups of user interfaces to be used in\nsoftware products running on any non-Apple\ + \ operating system or to enable others to do so. You may not\nembed the Apple Font in any\ + \ software programs or other products. Except as expressly provided for\nherein, you may\ + \ not use the Apple Font to, create, develop, display or otherwise distribute any\ndocumentation,\ + \ artwork, website content or any other work product.\n\nExcept as otherwise expressly permitted\ + \ by the terms of this License or as otherwise licensed by Apple:\n(i) only one user may\ + \ use the Apple Font at a time, and (ii) you may not make the Apple Font available\nover\ + \ a network where it could be run or used by multiple computers at the same time. You may\ + \ not rent,\nlease, lend, trade, transfer, sell, sublicense or otherwise redistribute the\ + \ Apple Font in any unauthorized\nway.\n\nC. No Reverse Engineering; Limitations. You may\ + \ not, and you agree not to or to enable others to, copy \n(except as expressly permitted\ + \ by this License), decompile, reverse engineer, disassemble, attempt to\nderive the source\ + \ code of, decrypt, modify, create derivative works of the Apple Font or any part thereof\n\ + (except as and only to the extent any foregoing restriction is prohibited by applicable\ + \ law).\n\nD. Compliance with Laws. You agree to use the Apple Font in compliance with all\ + \ applicable laws,\nincluding local laws of the country or region in which you reside or\ + \ in which you download or use the\nApple Font.\n\n3. No Transfer. Except as otherwise set\ + \ forth herein, you may not transfer this Apple Font without\nApple’s express prior written\ + \ approval. All components of the Apple Font are provided as part of a\nbundle and may not\ + \ be separated from the bundle and distributed as standalone applications.\n\n4. Termination.\ + \ This License shall commence upon your installation or use of the Apple Font. Your rights\n\ + under this License will terminate automatically or cease to be effective without notice\ + \ from Apple (a) if\nyou fail to comply with any term(s) of this License, (b) if you are\ + \ no longer a registered Apple Developer,\nor (c) if Apple releases a version of the Apple\ + \ Font which is incompatible with this version of the Apple\nFont. Upon the termination\ + \ of this License, you shall cease all use of the Apple Font and destroy all\ncopies, full\ + \ or partial, of the Apple Font. Section 2B, 2C, and 5 through 10 of this License shall\ + \ survive\nany termination.\n\n5. Disclaimer of Warranties.\n\nA. YOU EXPRESSLY ACKNOWLEDGE\ + \ AND AGREE THAT, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW, USE OF THE APPLE FONT IS AT\ + \ YOUR SOLE RISK AND THAT THE ENTIRE RISK\nAS TO SATISFACTORY QUALITY, PERFORMANCE, ACCURACY\ + \ AND EFFORT IS WITH YOU.\n\nB. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE APPLE\ + \ FONT IS PROVIDED\n\"AS IS\" AND \"AS AVAILABLE\", WITH ALL FAULTS AND WITHOUT WARRANTY\ + \ OF ANY KIND, AND\nAPPLE AND APPLE'S LICENSORS (COLLECTIVELY REFERRED TO AS \"APPLE\" FOR\ + \ THE PURPOSES\nOF SECTIONS 5 AND 6) HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH\ + \ RESPECT TO\nTHE APPLE FONT, EITHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED\ + \ TO,\nTHE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY,\n\ + FITNESS FOR A PARTICULAR PURPOSE, ACCURACY, QUIET ENJOYMENT, AND NONINFRINGEMENT\nOF THIRD\ + \ PARTY RIGHTS.\n\nC. APPLE DOES NOT WARRANT AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF\ + \ THE APPLE\nFONT, THAT THE FUNCTIONS CONTAINED IN THE APPLE FONT WILL MEET YOUR REQUIREMENTS,\n\ + THAT THE OPERATION OF THE APPLE FONT WILL BE UNINTERRUPTED OR ERROR-FREE, THAT THE\nAPPLE\ + \ FONT WILL BE COMPATIBLE OR WORK WITH ANY THIRD PARTY SOFTWARE, APPLICATIONS\nOR THIRD\ + \ PARTY SERVICES, OR THAT DEFECTS IN THE APPLE FONT WILL BE CORRECTED.\nINSTALLATION OF\ + \ THIS APPLE FONT MAY AFFECT THE AVAILABILITY AND USABILITY OF THIRD\nPARTY SOFTWARE, APPLICATIONS\ + \ OR THIRD PARTY SERVICES, AS WELL AS APPLE PRODUCTS\nAND SERVICES.\n\nD. YOU FURTHER ACKNOWLEDGE\ + \ THAT THE APPLE FONT IS NOT INTENDED OR SUITABLE FOR\nUSE IN SITUATIONS OR ENVIRONMENTS\ + \ WHERE THE FAILURE OR TIME DELAYS OF, OR ERRORS\nOR INACCURACIES IN THE CONTENT, DATA OR\ + \ INFORMATION PROVIDED BY, THE APPLE FONT\nCOULD LEAD TO DEATH, PERSONAL INJURY, OR SEVERE\ + \ PHYSICAL OR ENVIRONMENTAL\nDAMAGE, INCLUDING WITHOUT LIMITATION THE OPERATION OF NUCLEAR\ + \ FACILITIES, AIRCRAFT\nNAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL, LIFE SUPPORT\ + \ OR\nWEAPONS SYSTEMS.\n\nE. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE OR\ + \ AN APPLE AUTHORIZED\nREPRESENTATIVE SHALL CREATE A WARRANTY. SHOULD THE APPLE FONT PROVE\ + \ DEFECTIVE,\nYOU ASSUME THE ENTIRE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\ + \n6. Limitation of Liability. TO THE EXTENT NOT PROHIBITED BY APPLICABLE LAW, IN NO EVENT\n\ + SHALL APPLE BE LIABLE FOR PERSONAL INJURY, OR ANY INCIDENTAL, SPECIAL, INDIRECT OR\nCONSEQUENTIAL\ + \ DAMAGES WHATSOEVER, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR\nLOSS OF PROFITS, CORRUPTION\ + \ OR LOSS OF DATA, FAILURE TO TRANSMIT OR RECEIVE ANY\nDATA OR INFORMATION, BUSINESS INTERRUPTION\ + \ OR ANY OTHER COMMERCIAL DAMAGES OR\nLOSSES, ARISING OUT OF OR RELATED TO YOUR USE OR INABILITY\ + \ TO USE THE APPLE FONT OR\nANY THIRD PARTY SOFTWARE, APPLICATIONS, OR SERVICES IN CONJUNCTION\ + \ WITH THE APPLE\nFONT, HOWEVER CAUSED, REGARDLESS OF THE THEORY OF LIABILITY (CONTRACT,\ + \ TORT OR\nOTHERWISE) AND EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\ + SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR\nPERSONAL INJURY,\ + \ OR OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY\nNOT APPLY TO YOU. In\ + \ no event shall Apple's total liability to you for all damages (other than as may be\n\ + required by applicable law in cases involving personal injury) exceed the amount of fifty\ + \ dollars ($50.00).\nThe foregoing limitations will apply even if the above stated remedy\ + \ fails of its essential purpose.\n\n7. Export Control. You may not use or otherwise export\ + \ or re-export the Apple Font except as\nauthorized by United States law and the laws of\ + \ the jurisdiction(s) in which the Apple Font was obtained.\nIn particular, but without\ + \ limitation, the Apple Font may not be exported or re-exported (a) into any U.S.\nembargoed\ + \ countries or (b) to anyone on the U.S. Treasury Department's list of Specially Designated\n\ + Nationals or the U.S. Department of Commerce Denied Person's List or Entity List or any\ + \ other restricted\nparty lists. By using the Apple Font, you represent and warrant that\ + \ you are not located in any such\ncountry or on any such list. You also agree that you\ + \ will not use the Apple Font for any purposes\nprohibited by United States law, including,\ + \ without limitation, the development, design, manufacture or\nproduction of missiles, nuclear,\ + \ chemical or biological weapons.\n\n8. Government End Users. The Apple Font and related\ + \ documentation are \"Commercial Items\", as that\nterm is defined at 48 C.F.R. §2.101,\ + \ consisting of \"Commercial Computer Software\" and \"Commercial\nComputer Software Documentation\"\ + , as such terms are used in 48 C.F.R. §12.212 or 48 C.F.R.\n§227.7202, as applicable. Consistent\ + \ with 48 C.F.R. §12.212 or 48 C.F.R. §227.7202-1 through\n227.7202-4, as applicable, the\ + \ Commercial Computer Software and Commercial Computer Software\nDocumentation are being\ + \ licensed to U.S. Government end users (a) only as Commercial Items and (b)\nwith only\ + \ those rights as are granted to all other end users pursuant to the terms and conditions\ + \ herein.\nUnpublished-rights reserved under the copyright laws of the United States.\n\n\ + 9. Controlling Law and Severability. This License will be governed by and construed in accordance\n\ + with the laws of the State of California, excluding its conflict of law principles. This\ + \ License shall not be\ngoverned by the United Nations Convention on Contracts for the International\ + \ Sale of Goods, the\napplication of which is expressly excluded. If for any reason a court\ + \ of competent jurisdiction finds any\nprovision, or portion thereof, to be unenforceable,\ + \ the remainder of this License shall continue in full\nforce and effect.\n\n10. Complete\ + \ Agreement; Governing Language. This License constitutes the entire agreement\nbetween\ + \ you and Apple relating to the use of the Apple Font licensed hereunder and supersedes\ + \ all prior\nor contemporaneous understandings regarding such subject matter. No amendment\ + \ to or modification\nof this License will be binding unless in writing and signed by Apple.\ + \ To the extent that there are any\ninconsistent terms in any applicable Apple software\ + \ license agreements, these terms shall govern your\nuse of the Apple Font.\n\nEA1370\n\ + 2/24/2016" json: san-francisco-font.json - yml: san-francisco-font.yml + yaml: san-francisco-font.yml html: san-francisco-font.html - text: san-francisco-font.LICENSE + license: san-francisco-font.LICENSE - license_key: sandeep + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sandeep other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Terms of Use\n\nAll scripts available here are original scripts written by the author\n\ + himself and are protected by international copyright laws. The terms of\nuse listed below\ + \ will have to be accepted by those who shall be using\nthese scripts:\n\n 1. The scripts\ + \ found here may be used on both personal and commercial\n web sites free of charge.\ + \ However, users may not specifically sell\n these scripts or add them to a product on\ + \ sale without the expressed\n written permission of the author. These scripts may also\ + \ not be put\n up at another script archive without prior permission of the author.\n\ + \n 2. Users must agree not to remove the copyright notice inside each\n script. This\ + \ notice is the one that appears inside the |\n\n 3. Although the use of these scripts are not in any way harmful\ + \ to any\n machines, the users must agree not to hold the author liable for any\n \ + \ damage resulting from either the proper or improper use of any of\n the scripts. i.e.\ + \ the use of these scripts is at the users own risk.\n\nIt would be very much appreciated\ + \ if a link back to the author's home\npage is included although it is not required.\n\n\ + If you use any of the scripts listed here it will be understood that you\nhave read and\ + \ agreed to the above usage terms and conditions.\n\n \nCopyright © 2000 - 2014 *Sandeep\ + \ Gangadharan*. All rights reserved." json: sandeep.json - yml: sandeep.yml + yaml: sandeep.yml html: sandeep.html - text: sandeep.LICENSE + license: sandeep.LICENSE - license_key: sane-exception-2.0-plus + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-sane-exception-2.0-plus other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + The exception is that, if you link a SANE library with other files + to produce an executable, this does not by itself cause the + resulting executable to be covered by the GNU General Public + License. Your use of that executable is in no way restricted on + account of linking the SANE library code into it. json: sane-exception-2.0-plus.json - yml: sane-exception-2.0-plus.yml + yaml: sane-exception-2.0-plus.yml html: sane-exception-2.0-plus.html - text: sane-exception-2.0-plus.LICENSE + license: sane-exception-2.0-plus.LICENSE - license_key: sash + category: Permissive spdx_license_key: LicenseRef-scancode-sash other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Permission is granted to use, distribute, or modify this source, \nprovided that this\ + \ copyright notice remains intact." json: sash.json - yml: sash.yml + yaml: sash.yml html: sash.html - text: sash.LICENSE + license: sash.LICENSE - license_key: sata + category: Permissive spdx_license_key: LicenseRef-scancode-sata other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The Star And Thank Author License (SATA)\n\nCopyright © 2014 zTrix(i@ztrix.me) kongtianyi(kongtianyi@foxmail.com)\n\ + \nProject Url: https://github.com/zTrix/sata-license\n https://github.com/kongtianyi/sata-license\n\ + \nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this\ + \ software and associated documentation files (the \"Software\"), to deal\nin the Software\ + \ without restriction, including without limitation the rights\nto use, copy, modify, merge,\ + \ publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons\ + \ to whom the Software is\nfurnished to do so, subject to the following conditions:\n\n\ + The above copyright notice and this permission notice shall be included in\nall copies or\ + \ substantial portions of the Software. \n\nAnd wait, the most important, you shall star/+1/like\ + \ the project(s) in project url \nsection above first, and then thank the author(s) in Copyright\ + \ section. \n\nHere are some suggested ways:\n\n - Email the authors a thank-you letter,\ + \ and make friends with him/her/them.\n - Report bugs or issues.\n - Tell friends what a\ + \ wonderful project this is.\n - And, sure, you can just express thanks in your mind without\ + \ telling the world.\n\nContributors of this project by forking have the option to add his/her\ + \ name and \nforked project url at copyright and project url sections, but shall not delete\ + \ \nor modify anything else in these two sections.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\"\ + , WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\ + \ OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT\ + \ SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY,\ + \ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION\ + \ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." json: sata.json - yml: sata.yml + yaml: sata.yml html: sata.html - text: sata.LICENSE + license: sata.LICENSE - license_key: sax-pd + category: Public Domain spdx_license_key: SAX-PD other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + Copyright Status for SAX + + SAX is free! + + In fact, it's not possible to own a license to SAX, since it's been placed in + the public domain. + + No Warranty + + Because SAX is released to the public domain, there is no warranty for the + design or for the software implementation, to the extent permitted by applicable + law. Except when otherwise stated in writing the copyright holders and/or other + parties provide SAX "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 SAX is with you. Should SAX prove defective, you + assume the cost of all necessary servicing, repair or correction. + + 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 SAX, be + liable to you for damages, including any general, special, incidental or + consequential damages arising out of the use or inability to use SAX (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 SAX to operate with any + other programs), even if such holder or other party has been advised of the + possibility of such damages. + + Copyright Disclaimers + + This page includes statements to that effect by David Megginson, who would have + been able to claim copyright for the original work. + + SAX 1.0 + + Version 1.0 of the Simple API for XML (SAX), created collectively by the + membership of the XML-DEV mailing list, is hereby released into the public + domain. + + No one owns SAX: you may use it freely in both commercial and non-commercial + applications, bundle it with your software distribution, include it on a CD-ROM, + list the source code in a book, mirror the documentation at your own web site, + or use it in any other way you see fit. + + David Megginson, Megginson Technologies Ltd. + 1998-05-11 + + SAX 2.0 + + I hereby abandon any property rights to SAX 2.0 (the Simple API for XML), and + release all of the SAX 2.0 source code, compiled code, and documentation + contained in this distribution into the Public Domain. SAX comes with NO + WARRANTY or guarantee of fitness for any purpose. + + David Megginson, Megginson Technologies Ltd. + 2000-05-05 json: sax-pd.json - yml: sax-pd.yml + yaml: sax-pd.yml html: sax-pd.html - text: sax-pd.LICENSE + license: sax-pd.LICENSE - license_key: saxpath + category: Permissive spdx_license_key: Saxpath other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Redistribution and use in source and binary forms, with or without modification, + re 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 disclaimer that follows these conditions in + the documentation and/or other materials provided with the distribution. + + 3. The name "SAXPath" must not be used to endorse or promote products derived + from this software without prior written permission. For written permission, + please contact license@saxpath.org. + + 4. Products derived from this software may not be called "SAXPath", nor may + "SAXPath" appear in their name, without prior written permission from the + SAXPath Project Management (pm@saxpath.org). + + In addition, we request (but do not require) that you include in the end-user + documentation provided with the redistribution and/or in the software itself + an acknowledgement equivalent to the following: + "This product includes software developed by the SAXPath Project + (http://www.saxpath.org/)." + + Alternatively, the acknowledgment may be graphical using the logos available + at http://www.saxpath.org/ + + THIS SOFTWARE IS PROVIDED ``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 SAXPath + AUTHORS OR THE PROJECT 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. json: saxpath.json - yml: saxpath.yml + yaml: saxpath.yml html: saxpath.html - text: saxpath.LICENSE + license: saxpath.LICENSE - license_key: sbia-b + category: Permissive spdx_license_key: LicenseRef-scancode-sbia-b other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + PART B. DOWNLOADING AGREEMENT - LICENSE FROM SBIA WITH RIGHT TO SUBLICENSE ("SOFTWARE LICENSE"). + ------------------------------------------------------------------------------------------------ + + 1. As used in this Software License, "you" means the individual downloading and/or + using, reproducing, modifying, displaying and/or distributing the Software and + the institution or entity which employs or is otherwise affiliated with such + individual in connection therewith. The Section of Biomedical Image Analysis, + Department of Radiology at the Universiy of Pennsylvania ("SBIA") hereby grants + you, with right to sublicense, with respect to SBIA's rights in the software, + and data, if any, which is the subject of this Software License (collectively, + the "Software"), a royalty-free, non-exclusive license to use, reproduce, make + derivative works of, display and distribute the Software, provided that: + (a) you accept and adhere to all of the terms and conditions of this Software + License; (b) in connection with any copy of or sublicense of all or any portion + of the Software, all of the terms and conditions in this Software License shall + appear in and shall apply to such copy and such sublicense, including without + limitation all source and executable forms and on any user documentation, + prefaced with the following words: "All or portions of this licensed product + (such portions are the "Software") have been obtained under license from the + Section of Biomedical Image Analysis, Department of Radiology at the University + of Pennsylvania and are subject to the following terms and conditions:" + (c) you preserve and maintain all applicable attributions, copyright notices + and licenses included in or applicable to the Software; (d) modified versions + of the Software must be clearly identified and marked as such, and must not + be misrepresented as being the original Software; and (e) you consider making, + but are under no obligation to make, the source code of any of your modifications + to the Software freely available to others on an open source basis. + + 2. The license granted in this Software License includes without limitation the + right to (i) incorporate the Software into proprietary programs (subject to + any restrictions applicable to such programs), (ii) add your own copyright + statement to your modifications of the Software, and (iii) provide additional + or different license terms and conditions in your sublicenses of modifications + of the Software; provided that in each case your use, reproduction or + distribution of such modifications otherwise complies with the conditions + stated in this Software License. + + 3. This Software License does not grant any rights with respect to third party + software, except those rights that SBIA has been authorized by a third + party to grant to you, and accordingly you are solely responsible for + (i) obtaining any permissions from third parties that you need to use, + reproduce, make derivative works of, display and distribute the Software, + and (ii) informing your sublicensees, including without limitation your + end-users, of their obligations to secure any such required permissions. + + 4. The Software has been designed for research purposes only and has not been + reviewed or approved by the Food and Drug Administration or by any other + agency. YOU ACKNOWLEDGE AND AGREE THAT CLINICAL APPLICATIONS ARE NEITHER + RECOMMENDED NOR ADVISED. Any commercialization of the Software is at the + sole risk of the party or parties engaged in such commercialization. + You further agree to use, reproduce, make derivative works of, display + and distribute the Software in compliance with all applicable governmental + laws, regulations and orders, including without limitation those relating + to export and import control. + + 5. The Software is provided "AS IS" and neither SBIA nor any contributor to + the software (each a "Contributor") shall have any obligation to provide + maintenance, support, updates, enhancements or modifications thereto. + SBIA AND ALL CONTRIBUTORS SPECIFICALLY DISCLAIM ALL EXPRESS AND IMPLIED + WARRANTIES OF ANY KIND INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + IN NO EVENT SHALL SBIA OR ANY CONTRIBUTOR BE LIABLE TO ANY PARTY FOR + DIRECT, INDIRECT, SPECIAL, INCIDENTAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY ARISING IN ANY WAY RELATED + TO THE SOFTWARE, EVEN IF SBIA OR ANY CONTRIBUTOR HAS BEEN ADVISED OF THE + POSSIBILITY OF SUCH DAMAGES. TO THE MAXIMUM EXTENT NOT PROHIBITED BY LAW OR + REGULATION, YOU FURTHER ASSUME ALL LIABILITY FOR YOUR USE, REPRODUCTION, + MAKING OF DERIVATIVE WORKS, DISPLAY, LICENSE OR DISTRIBUTION OF THE SOFTWARE + AND AGREE TO INDEMNIFY AND HOLD HARMLESS SBIA AND ALL CONTRIBUTORS FROM + AND AGAINST ANY AND ALL CLAIMS, SUITS, ACTIONS, DEMANDS AND JUDGMENTS ARISING + THEREFROM. + + 6. None of the names, logos or trademarks of SBIA or any of SBIA's affiliates + or any of the Contributors, or any funding agency, may be used to endorse + or promote products produced in whole or in part by operation of the Software + or derived from or based on the Software without specific prior written + permission from the applicable party. + + 7. Any use, reproduction or distribution of the Software which is not in accordance + with this Software License shall automatically revoke all rights granted to you + under this Software License and render Paragraphs 1 and 2 of this Software + License null and void. + + 8. This Software License does not grant any rights in or to any intellectual + property owned by SBIA or any Contributor except those rights expressly + granted hereunder. + + + PART C. MISCELLANEOUS + --------------------- + + This Agreement shall be governed by and construed in accordance with the laws + of The Commonwealth of Pennsylvania without regard to principles of conflicts + of law. This Agreement shall supercede and replace any license terms that you + may have agreed to previously with respect to Software from SBIA. json: sbia-b.json - yml: sbia-b.yml + yaml: sbia-b.yml html: sbia-b.html - text: sbia-b.LICENSE + license: sbia-b.LICENSE - license_key: scancode-acknowledgment + category: Permissive spdx_license_key: LicenseRef-scancode-scancode-acknowledgment other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Generated with ScanCode and provided on an "AS IS" BASIS, WITHOUT WARRANTIES + OR CONDITIONS OF ANY KIND, either express or implied. No content created from + ScanCode should be considered or used as legal advice. Consult an Attorney + for any legal advice. + ScanCode is a free software code scanning tool from nexB Inc. and others. + Visit https://github.com/nexB/scancode-toolkit/ for support and download. json: scancode-acknowledgment.json - yml: scancode-acknowledgment.yml + yaml: scancode-acknowledgment.yml html: scancode-acknowledgment.html - text: scancode-acknowledgment.LICENSE + license: scancode-acknowledgment.LICENSE - license_key: scanlogd-license + category: Permissive spdx_license_key: LicenseRef-scancode-scanlogd-license other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + You're allowed to do whatever you like with this software (including + re-distribution in any form, with or without modification), provided + that credit is given where it is due and any modified versions are + marked as such. + + There's absolutely no warranty. json: scanlogd-license.json - yml: scanlogd-license.yml + yaml: scanlogd-license.yml html: scanlogd-license.html - text: scanlogd-license.LICENSE + license: scanlogd-license.LICENSE - license_key: scansoft-1.2 + category: Permissive spdx_license_key: LicenseRef-scancode-scansoft-1.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The ScanSoft Public License - Software, Version 1.2\n\nCopyright (c) 2000-2003, ScanSoft,\ + \ Inc. \n\nRedistribution and use in source and binary forms, with or without \nmodification,\ + \ are permitted provided that the following conditions are met: \n\t* Redistributions of\ + \ source code must retain the above copyright \n\tnotice, this list of conditions and the\ + \ following disclaimer. \n\t* Redistributions in binary form must reproduce the above copyright\ + \ \n\tnotice, this list of conditions and the following disclaimer in the \n\tdocumentation\ + \ and/or other materials provided with the distribution. \n\t* Neither the name of SpeechWorks\ + \ International, Inc., ScanSoft, Inc. \n\tnor the names of its contributors may be used\ + \ to endorse or promote \t\n\tproducts derived from this software without specific prior\ + \ written \n\tpermission. For written permission contact Director, Product \n\tManagement,\ + \ ScanSoft, Inc., 695 Atlantic Ave., \n\tBoston, MA 02111.\n\t* Products derived from the\ + \ software may not be called \"ScanSoft\" or \n\t\"SpeechWorks\", nor may \"ScanSoft\"\ + \ or \"SpeechWorks\" appear in their \n\tname, without prior written permission of ScanSoft.\n\ + \t\nAdditional information regarding the use of this software may be noted in the\nRelease\ + \ Notes included in this package.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS\ + \ AND \nCONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES OR \nCONDITIONS, INCLUDING,\ + \ BUT NOT LIMITED TO, THE IMPLIED \nWARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,\ + \ \nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE \nDISCLAIMED. IN NO EVENT SHALL\ + \ SCANSOFT OR ITS CONTRIBUTORS BE LIABLE \nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\ + \ EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, \nPROCUREMENT OF\ + \ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, \nOR PROFITS; OR BUSINESS INTERRUPTION)\ + \ HOWEVER CAUSED AND ON \nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\ + \ \nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY \nOUT OF THE USE OF THIS\ + \ SOFTWARE, EVEN IF ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE." json: scansoft-1.2.json - yml: scansoft-1.2.yml + yaml: scansoft-1.2.yml html: scansoft-1.2.html - text: scansoft-1.2.LICENSE + license: scansoft-1.2.LICENSE - license_key: scea-1.0 + category: Permissive spdx_license_key: SCEA other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + SCEA Shared Source License 1.0 + + Terms and Conditions: + + 1. Definitions: + + "Software" shall mean the software and related documentation, whether in Source or Object Form, made available under this SCEA Shared Source license ("License"), that is indicated by a copyright notice file included in the source files or attached or accompanying the source files. + + "Licensor" shall mean Sony Computer Entertainment America, Inc. (herein "SCEA") + + "Object Code" or "Object Form" shall mean any form that results from translation or transformation of Source Code, including but not limited to compiled object code or conversions to other forms intended for machine execution. + "Source Code" or "Source Form" shall have the plain meaning generally accepted in the software industry, including but not limited to software source code, documentation source, header and configuration files. + + "You" or "Your" shall mean you as an individual or as a company, or whichever form under which you are exercising rights under this License. + + 2. License Grant. + + Licensor hereby grants to You, free of charge subject to the terms and conditions of this License, an irrevocable, non-exclusive, worldwide, perpetual, and royalty-free license to use, modify, reproduce, distribute, publicly perform or display the Software in Object or Source Form . + + 3. No Right to File for Patent. + In exchange for the rights that are granted to You free of charge under this License, You agree that You will not file for any patent application, seek copyright protection or take any other action that might otherwise impair the ownership rights in and to the Software that may belong to SCEA or any of the other contributors/authors of the Software. + + 4. Contributions. + + SCEA welcomes contributions in form of modifications, optimizations, tools or documentation designed to improve or expand the performance and scope of the Software (collectively "Contributions"). Per the terms of this License You are free to modify the Software and those modifications would belong to You. You may however wish to donate Your Contributions to SCEA for consideration for inclusion into the Software. For the avoidance of doubt, if You elect to send Your Contributions to SCEA, You are doing so voluntarily and are giving the Contributions to SCEA and its parent company Sony Computer Entertainment, Inc., free of charge, to use, modify or distribute in any form or in any manner. SCEA acknowledges that if You make a donation of Your Contributions to SCEA, such Contributions shall not exclusively belong to SCEA or its parent company and such donation shall not be to Your exclusion. SCEA, in its sole discretion, shall determine whether or not to include Your donated Contributions into the Software, in whole, in part, or as modified by SCEA. Should SCEA elect to include any such Contributions into the Software, it shall do so at its own risk and may elect to give credit or special thanks to any such contributors in the attached copyright notice. However, if any of Your contributions are included into the Software, they will become part of the Software and will be distributed under the terms and conditions of this License. Further, if Your donated Contributions are integrated into the Software then Sony Computer Entertainment, Inc. shall become the copyright owner of the Software now containing Your contributions and SCEA would be the Licensor. + + 5. Redistribution in Source Form + + You may redistribute copies of the Software, modifications or derivatives thereof in Source Code Form, provided that You: + + a. Include a copy of this License and any copyright notices with source + + b. Identify modifications if any were made to the Software + + c. Include a copy of all documentation accompanying the Software and modifications made by You + + 6. Redistribution in Object Form + + If You redistribute copies of the Software, modifications or derivatives thereof in Object Form only (as incorporated into finished goods, i.e. end user applications) then You will not have a duty to include any copies of the code, this License, copyright notices, other attributions or documentation. + + 7. No Warranty + + THE SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT ANY REPRESENTATIONS OR WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. YOU ARE SOLELY RESPONSIBLE FOR DETERMINING THE APPROPRIATENESS OF USING, MODIFYING OR REDISTRIBUTING THE SOFTWARE AND ASSUME ANY RISKS ASSOCIATED WITH YOUR EXERCISE OF PERMISSIONS UNDER THIS LICENSE. + + 8. Limitation of Liability + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY WILL EITHER PARTY BE LIABLE TO THE OTHER PARTY OR ANY THIRD PARTY FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, SPECIAL, INCIDENTAL, OR EXEMPLARY DAMAGES WITH RESPECT TO ANY INJURY, LOSS, OR DAMAGE, ARISING UNDER OR IN CONNECTION WITH THIS LETTER AGREEMENT, WHETHER FORESEEABLE OR UNFORESEEABLE, EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH INJURY, LOSS, OR DAMAGE. THE LIMITATIONS OF LIABILITY SET FORTH IN THIS SECTION SHALL APPLY TO THE FULLEST EXTENT PERMISSIBLE AT LAW OR ANY GOVERMENTAL REGULATIONS. + + 9. Governing Law and Consent to Jurisdiction + + This Agreement shall be governed by and interpreted in accordance with the laws of the State of California, excluding that body of law related to choice of laws, and of the United States of America. Any action or proceeding brought to enforce the terms of this Agreement or to adjudicate any dispute arising hereunder shall be brought in the Superior Court of the County of San Mateo, State of California or the United States District Court for the Northern District of California. Each of the parties hereby submits itself to the exclusive jurisdiction and venue of such courts for purposes of any such action. In addition, each party hereby waives the right to a jury trial in any action or proceeding related to this Agreement. + + 10. Copyright Notice for Redistribution of Source Code + + Copyright 2005 Sony Computer Entertainment Inc. + + Licensed under the SCEA Shared Source License, Version 1.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://research.scea.com/scea_shared_source_license.html + + 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. json: scea-1.0.json - yml: scea-1.0.yml + yaml: scea-1.0.yml html: scea-1.0.html - text: scea-1.0.LICENSE + license: scea-1.0.LICENSE - license_key: schemereport + category: Permissive spdx_license_key: SchemeReport other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + ; We intend this report to belong to the entire Scheme community, and so + ; we grant permission to copy it in whole or in part without fee. In + ; particular, we encourage implementors of Scheme to use this report as + ; a starting point for manuals and other documentation, modifying it as + ; necessary. json: schemereport.json - yml: schemereport.yml + yaml: schemereport.yml html: schemereport.html - text: schemereport.LICENSE + license: schemereport.LICENSE - license_key: scilab-en-2005 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-scilab-en other_spdx_license_keys: - LicenseRef-scancode-scilba-en is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Important notice : this is a translation of the original license + written in French + + SCILAB License + + 1- Preface + + The aim of this license is to lay down the conditions enabling you to + use, modify and circulate the SOFTWARE. However, INRIA and ENPC remain + the authors of the SOFTWARE and so retain property rights and the use + of all ancillary rights. + + 2- Definitions + + The SOFTWARE is defined as all successive versions of SCILAB software + and their documentation that have been developed by INRIA and ENPC. + + SCILAB DERIVED SOFTWARE is defined as all or part of the SOFTWARE that + you have modified and/or translated and/or adapted. + + SCILAB COMPOSITE SOFTWARE is defined as all or a part of the SOFTWARE + that you have interfaced with a software, an application package or a + toolbox of which you are owner or entitled beneficiary. + + 3- Object and conditions of the SOFTWARE license + + 1. INRIA and ENPC authorize you free of charge, to reproduce the + SOFTWARE source and/or object code on any present and future + support, without restriction, providing the following reference + appears in all the copies: Scilab (c)INRIA-ENPC. + + 2. INRIA and ENPC authorize you free of charge to correct any bugs, + carry out any modifications required for the porting of the + SOFTWARE and to carry out any usual functional modification or + correction, providing you insert a patch file or you indicate by + any other equivalent means the nature and date of the + modification or the correction, on the corresponding file(s) of + the SOFTWARE. + + 3. INRIA and ENPC authorize you free of charge to use the SOFTWARE + source and/or object code, without restriction, providing the + following reference appears in all the copies: Scilab + (c)INRIA-ENPC. + + 4. INRIA and ENPC authorize you free of charge to circulate and + distribute, free of charge or for a fee, the SOFTWARE source + and/or object code, including the SOFTWARE modified in + accordance with above-mentioned article 3 b), on any present and + future support, providing: * the following reference appears in + all the copies: Scilab (c)INRIA-ENPC. * the SOFTWARE is + circulated or distributed under the present license. * patch + files or files containing equivalent means indicating the nature + and the date of the modification or the correction to the + SOFTWARE file(s) concerned are freely circulated. + + 4- Object and conditions of the DERIVED SOFTWARE license + + 1. INRIA and ENPC authorize you free of charge to reproduce and + modify and/or translate and/or adapt all or part of the source + and/or the object code of the SOFTWARE, providing a patch file + indicating the date and the nature of the modification and/or + the translation and/or the adaptation and the name of their + author in the SOFTWARE file(s) concerned is inserted. The + SOFTWARE thus modified is defined as DERIVED SOFTWARE. The INRIA + authorizes you free of charge to use the source and/or object + code of the SOFTWARE, without restriction, providing the + following reference appears in all the copies: Scilab + (c)INRIA-ENPC. + + 2. INRIA and ENPC authorize you free of charge to use the SOFTWARE + source and/or object code modified according to article 4-a) + above, without restriction, providing the following reference + appears in all the copies: "Scilab inside (c)INRIA-ENPC". + + 3. The INRIA and the ENPC authorize you free of charge to circulate + and distribute for no charge, for non-commercial purposes the + source and/or object code of DERIVED SOFTWARE on any present and + future support, providing: * the reference " Scilab inside + (c)INRIA-ENPC " is prominently mentioned; * the DERIVED SOFTWARE + is distributed under the present license; * the recipients of + the distribution can access the SOFTWARE code source; * the + DERIVED SOFTWARE is distributed under a name other than SCILAB. + + 4. Any commercial use or circulation of the DERIVED SOFTWARE shall + have been previously authorized by INRIA and ENPC. + + 5- Object and conditions of the license concerning COMPOSITE SOFTWARE + + 1. INRIA and ENPC authorize you to reproduce and interface all or + part of the SOFTWARE with all or part of other software, + application packages or toolboxes of which you are owner or + entitled beneficiary in order to obtain COMPOSITE SOFTWARE. + + 2. INRIA and ENPC authorize you free, of charge, to use the + SOFTWARE source and/or object code included in the COMPOSITE + SOFTWARE, without restriction, providing the following statement + appears in all the copies: "composite software using Scilab + (c)INRIA-ENPC functionality". + + 3. INRIA and ENPC authorize you, free of charge, to circulate and + distribute for no charge, for purposes other than commercial, + the source and/or object code of COMPOSITE SOFTWARE on any + present and future support, providing: * the following reference + is prominently mentioned: "composite software using Scilab + (c)INRIA-ENPC functionality "; * the SOFTWARE included in + COMPOSITE SOFTWARE is distributed under the present license ; * + recipients of the distribution have access to the SOFTWARE + source code; * the COMPOSITE SOFTWARE is distributed under a + name other than SCILAB. + + 4. Any commercial use or distribution of COMPOSITE SOFTWARE shall + have been previously authorized by INRIA and ENPC. + + 6- Limitation of the warranty + + Except when mentioned otherwise in writing, the SOFTWARE is supplied + as is, with no explicit or implicit warranty, including warranties of + commercialization or adaptation. You assume all risks concerning the + quality or the effects of the SOFTWARE and its use. If the SOFTWARE is + defective, you will bear the costs of all required services, + corrections or repairs. + + 7- Consent + + When you access and use the SOFTWARE, you are presumed to be aware of + and to have accepted all the rights and obligations of the present + license. + + 8- Binding effect + + This license has the binding value of a contract. + + You are not responsible for respect of the license by a third party. + + 9- Applicable law + + The present license and its effects are subject to French law and the + competent French courts. json: scilab-en-2005.json - yml: scilab-en-2005.yml + yaml: scilab-en-2005.yml html: scilab-en-2005.html - text: scilab-en-2005.LICENSE + license: scilab-en-2005.LICENSE - license_key: scilab-fr + category: Proprietary Free spdx_license_key: LicenseRef-scancode-scilab-fr other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Licence SCILAB + + 1- Préambule + + La présente licence a pour objet d'établir les conditions dans + lesquelles vous pouvez utiliser, modifier et diffuser le + LOGICIEL. Toutefois l'INRIA et l'ENPC demeurent les auteurs du + LOGICIEL et conservent la jouissance et l'usage de tous les droits qui + y sont attachés. + + 2- Définitions + + Le LOGICIEL est constitué par toutes les versions successives du + logiciel SCILAB, et de leur documentation, développées par l'INRIA et + l'ENPC. + + Les LOGICIELS DERIVES de SCILAB sont constitués de tout ou partie du + LOGICIEL que vous avez modifié et/ou traduit et/ou adapté. + + Les LOGICIELS COMPOSITES de SCILAB sont constitués de tout ou partie + du LOGICIEL que vous avez mis en interface avec un logiciel, un + progiciel ou une boîte à outils dont vous êtres propriétaire ou ayant + droit. + + 3- Objet et conditions de la licence portant sur le LOGICIEL + + 1. L'INRIA et l'ENPC vous autorisent, gratuittement, à reproduire + sur tout support présent et à venir le code source et/ou le code + objet du LOGICIEL, sans restriction, à condition de faire + figurer sur toutes les copies la mention du copyright suivante : + Scilab (c)INRIA-ENPC. + + 2. L'INRIA et l'ENPC vous autorisent gratuitement à corriger les + bogues éventuels, à effectuer les modifications nécessaires au + portage du LOGICIEL et à procéder à toute modification ou + correction fonctionnelle usuelle, à condition d'insérer un + fichier patch, ou d'indiquer par tout autre moyen équivalent la + nature et la date de la modification ou de la correction + apportée, sur le(s) fichier(s) concerné(s) du LOGICIEL. + + 3. L'INRIA et l'ENPC vous autorisent gratuitement, à utiliser le + code source et/ou le code objet du LOGICIEL, sans restriction, à + condition de faire figurer sur toutes les copies la mention du + copyright suivante : Scilab (c)INRIA-ENPC. + + 4. L'INRIA et l'ENPC vous autorisent gratuitement, à diffuser et + distribuer gratuitement ou à titre onéreux le code source et/ou + le code objet du LOGICIEL y compris du LOGICIEL modifié + conformément à l'article 3 b) ci-dessus, sur tout support + présent et à venir, à condition : * de faire figurer sur toutes + les copies la mention du copyright suivante : Scilab + (c)INRIA-ENPC. * de diffuser ou de distribuer le LOGICIEL sous + la présente licence. * de diffuser librement les fichiers patch + ou les fichiers contenant les moyens équivalents indiquant la + nature et la date de la modification ou de la correction + apportée sur le(s) fichier(s) concerné(s) du LOGICIEL. + + 4- Objet et conditions de la licence portant sur les LOGICIELS DERIVES + + 1. L'INRIA et l'ENPC vous autorisent, gratuitement, à reproduire et + à modifier et/ou à traduire et/ou à adapter tout ou partie du + code source et/ou du code objet du LOGICIEL, à condition + d'insérer un fichier patch indiquant la date et la nature de la + modification et/ou de la traduction et/ou de l'adaptation et le + nom de leur auteur sur le(s) fichier(s) concerné(s) du + LOGICIEL. Le LOGICIEL ainsi modifié constitue des LOGICIELS + DERIVES. L'INRIA vous autorise gratuitement, à utiliser le code + source et/ou le code objet du LOGICIEL, sans restriction, à + condition de faire figurer sur toutes les copies la mention du + copyright suivante : Scilab (c)INRIA-ENPC. + + 2. L'INRIA et l'ENPC vous autorisent gratuitement, à utiliser le + code source et/ou le code objet du LOGICIEL modifié en vertu de + l'article 4-a) ci-dessus, sans restriction, à condition de faire + figurer sur toutes les copies la mention du copyright suivante : + " Scilab inside (c)INRIA-ENPC ". + + 3. L'INRIA et l'ENPC vous autorisent, gratuitement, à diffuser et à + distribuer à titre gratuit à des fins autres que commerciales, + le code source et/ou le code objet des LOGICIELS DERIVES sur + tout support présent et à venir, à condition : * d'indiquer + clairement la mention " Scilab inside (c)INRIA-ENPC " ; * de + distribuer le LOGICIEL DERIVE sous la présente licence ; * de + permettre aux destinataires de la distribution d'avoir accès au + code source du LOGICIEL ; * de distribuer le LOGICIEL DERIVE + sous une autre dénomination que SCILAB. + + 4. Toute utilisation ou diffusion commerciale du LOGICIEL DERIVE + doit être préalablement autorisée par l'INRIA et l'ENPC. + + 5- Objet et conditions de la licence portant sur les LOGICIELS COMPOSITES + + 1. L'INRIA et l'ENPC vous autorisent à reproduire et à procéder à + l'interface de tout ou partie du LOGICIEL, avec tout ou partie + d'autres logiciels, progiciels ou boîtes à outils dont vous êtes + propriétaires ou titulaires des droits, afin d'obtenir des + LOGICIELS COMPOSITES. + + 2. L'INRIA et l'ENPC vous autorisent gratuitement, à utiliser le + code source et/ou le code objet du LOGICIEL inclus dans le + LOGICIEL COMPOSITE, sans restriction, à condition de faire + figurer sur toutes les copies la mention du copyright suivante : + " logiciel composite utilisant les fonctionnalités de Scilab + (c)INRIA-ENPC ". + + 3. L'INRIA et l'ENPC vous autorisent, gratuitement, à diffuser et à + distribuer à titre gratuit, à des fins autres que commerciales, + le code source et/ou le code objet des LOGICIELS COMPOSITES sur + tout support présent et à venir, à condition : * d'indiquer + clairement la mention " logiciel composite utilisant les + fonctionnalités de Scilab (c)INRIA-ENPC " ; * de distribuer le + LOGICIEL inclus dans les LOGICIELS COMPOSITES sous la présente + licence ; * de permettre aux destinataires de la distribution + d'avoir accès au code source du LOGICIEL ; * de distribuer le + LOGICIEL COMPOSITE sous une autre dénomination que SCILAB. + + 4. Toute utilisation ou diffusion commerciale du LOGICIEL COMPOSITE + doit être préalablement autorisée par l'INRIA et l'ENPC. + + 6- Limitation de garantie + + Sauf mention écrite contraire, le LOGICIEL est fourni en l'état, sans + aucune garantie explicite ou implicite, y compris les garanties de + commercialisation ou d'adaptation. Vous assumez tous les risques quant + à la qualité ou aux effets du LOGICIEL et de son utilisation. Si le + LOGICIEL est défectueux, vous assumez le coût de tous les services, + corrections ou réparations nécessaires. + + 7- Consentement + + En accédant et en travaillant sur le LOGICIEL, vous êtes présumé + connaître et avoir accepté tous les droits et toutes les obligations + résultant de la présente licence. + + 8- Effet Obligatoire + + Cette licence a la valeur obligatoire d'un contrat. + + Vous n'êtes pas responsable du respect de la licence par un tiers. + + 9- Loi applicable + + La présente licence et ses effets sont soumis au droit français et aux + tribunaux français compétents. json: scilab-fr.json - yml: scilab-fr.yml + yaml: scilab-fr.yml html: scilab-fr.html - text: scilab-fr.LICENSE + license: scilab-fr.LICENSE - license_key: scintilla + category: Permissive spdx_license_key: LicenseRef-scancode-scintilla other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose and without fee is hereby granted, + provided that the above copyright notice appear in all copies and that + both that copyright notice and this permission notice appear in + supporting documentation. + + NEIL HODGSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS + SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS, IN NO EVENT SHALL NEIL HODGSON BE LIABLE FOR ANY + SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER + TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE + OR PERFORMANCE OF THIS SOFTWARE. json: scintilla.json - yml: scintilla.yml + yaml: scintilla.yml html: scintilla.html - text: scintilla.LICENSE + license: scintilla.LICENSE - license_key: scola-en + category: Proprietary Free spdx_license_key: LicenseRef-scancode-scola-en other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Statistics Canada Open Licence Agreement + + This agreement is between Her Majesty the Queen in Right of Canada, as represented by the Minister for Statistics Canada ("Statistics Canada") and you (an individual or a legal entity that you are authorized to represent). + + The following are terms governing your use of the Information. Your use of any Information indicates your understanding and agreement to be bound by these terms. If you do not agree to these terms, you may not use the Information. + + Statistics Canada may modify this agreement at any time, and such modifications shall be effective immediately upon posting of the modified agreement on the Statistics Canada website. Your use of the Information will be governed by the terms of the agreement in force as of the date and time you accessed the Information. + Definitions + + "Information" means any data files, data bases, tables, graphs, maps and text for which Statistics Canada is the owner or a licensee of all intellectual property rights and made available to you in accordance with this agreement, at cost or no cost, either on the Statistics Canada website or by other means as a result of a contract for goods or services. + + "Value-added Products" means any products you have produced by adapting or incorporating the Information, in whole or in part, in accordance with this agreement. + Licence Grant + + Subject to this agreement, Statistics Canada grants you a worldwide, royalty-free, non-exclusive licence to: + + use, reproduce, publish, freely distribute, or sell the Information; + use, reproduce, publish, freely distribute, or sell Value-added Products; and, + sublicence any or all such rights, under terms consistent with this agreement. + + In doing any of the above, you shall: + + reproduce the Information accurately; + not use the Information in a way that suggests that Statistics Canada endorses you or your use of the Information; + not misrepresent the Information or its source; + use the Information in a manner that does not breach or infringe any applicable laws; + not merge or link the Information with any other databases for the purpose of attempting to identify an individual person, business or organization; and + not present the Information in such a manner that gives the appearance that you may have received, or had access to, information held by Statistics Canada about any identifiable individual person, business or organization. + + Intellectual Property Rights + + Intellectual property rights, being any and all intellectual property rights recognized by the law, including but not limited to, intellectual property rights protected through legislation, in Value-added Products, shall vest in you, in such person as you shall decide or as determined by law. + + Intellectual property rights that Statistics Canada may have in the Information shall remain the property of Statistics Canada. Intellectual property rights that third parties may have in the Information shall remain their property. + Acknowledgment of Source + + (a) You shall include and maintain the following notice on all licensed rights of the Information: + + Source: Statistics Canada, name of product, reference date. Reproduced and distributed on an "as is" basis with the permission of Statistics Canada. + + (b) Where any Information is contained within a Value-added Product, you shall include on such Value-added Product the following notice: + + Adapted from Statistics Canada, name of product, reference date. This does not constitute an endorsement by Statistics Canada of this product. + Advertising and Publicity + + You shall not include on any reproduction of the Information or any material relating to your Value-added Product, or elsewhere: + + (a) the name, crest, logos or other insignia or domain names of Statistics Canada or the official symbols of the Government of Canada, including the Canada wordmark, the Coat of Arms of Canada, and the flag symbol, without written authorization from the Treasury Board Secretariat. Request for authorization from the Treasury Board Secretariat may be addressed to: + + information@fip-pcim.gc.ca + Federal Identity Program + Treasury Board of Canada Secretariat + 300 Laurier Avenue West + Ottawa, Canada K1A 0R5 + + (b) any annotation that may be interpreted as an endorsement by the Statistics Canada of the Value-added Product or that would imply that you have an exclusive distribution arrangement for any or all of the Information or that you have access to any confidential information or information not available to others. + No Warranty and no Liability + + The Information is licensed 'as is', and Statistics Canada makes no representations or warranties whatsoever with respect to the Information, whether express or implied, in relation to the Information and expressly disclaims any implied warranty of merchantability or fitness for a particular purpose of the Information. + + Statistics Canada or any of its Ministers, officials, servants, employees, agents, successors and assigns shall not be liable for any errors or omissions in the Information and shall not, under any circumstances, be liable for any direct, indirect, special, incidental, consequential, or other loss, injury or damage, however caused, that you may suffer at any time by reason of your possession, access to or use of the Information or arising out of the exercise of your rights or the fulfilment of your obligations under this agreement. + Term + + This agreement is effective as of the date and time you access the Information and shall terminate automatically if you breach any of the terms of this agreement. + + Notwithstanding termination of this agreement: + + you may continue to distribute Value-added Products for the purpose of completing orders made before the termination of this agreement provided you comply with the requirements set out in the Acknowledgment of Source clause; and + individuals or entities who have received Value-added Products or reproductions of the Information from you pursuant to this agreement will not have their licences terminated provided they remain in full compliance with those licences. + + Survival + + All obligations which expressly or by their nature survive termination of this agreement shall continue in full force and effect. For greater clarity, and without limiting the generality of the foregoing, the following provisions survive expiration or termination of this agreement: Acknowledgment of Source, and No warranty and no Liability. + Applicable Law + + This agreement shall be governed and construed in accordance with the laws of the province of Ontario and the laws of Canada applicable therein. The parties hereby attorn to the exclusive jurisdiction of the Federal Court of Canada. json: scola-en.json - yml: scola-en.yml + yaml: scola-en.yml html: scola-en.html - text: scola-en.LICENSE + license: scola-en.LICENSE - license_key: scola-fr + category: Proprietary Free spdx_license_key: LicenseRef-scancode-scola-fr other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Entente de licence ouverte de Statistique Canada + + La présente entente est conclue entre Sa Majesté la Reine du chef du Canada, représentée par le ministre responsable de Statistique Canada (« Statistique Canada ») et vous (un particulier ou une personne morale que vous êtes autorisé à représenter). + + Vous trouverez ci-après les conditions qui régissent votre utilisation de l'information. Votre utilisation de toute information indique que vous comprenez ces conditions et que vous acceptez d'être lié par celles-ci. Si vous n'acceptez pas ces conditions, il ne vous est pas permis d'utiliser l'information. + + Statistique Canada peut modifier cette entente en tout temps, et ces modifications entreront en vigueur dès la publication de la version modifiée de l'entente dans le site Web de Statistique Canada. Votre utilisation de l'information sera régie par les conditions de l'entente en vigueur à la date et à l'heure où vous avez accédé à l'information. + Définitions + + L'« information » comprend tout fichier de données, base de données, tableau, graphique, carte ou texte dont Statistique Canada est propriétaire ou concessionnaire de tous les droits de propriété intellectuelle et qui est mis à votre disposition conformément à la présente entente, moyennant des frais ou gratuitement, dans le site Web de Statistique Canada ou par d'autres moyens en vertu d'un contrat pour des biens ou des services. + + Les « produits à valeur ajoutée » comprennent tous produits que vous avez élaborés en adaptant ou en intégrant l'information, en tout ou en partie, conformément aux conditions de la présente entente. + Octroi de licence + + Sous réserve des conditions de la présente entente, Statistique Canada vous accorde une licence mondiale, libre de redevances et non exclusive vous permettant : + + d'utiliser, de reproduire, de publier, de diffuser gratuitement ou de vendre l'information; + d'utiliser, de reproduire, de publier, de diffuser gratuitement ou de vendre les produits à valeur ajoutée; + d'accorder des sous licences conférant une partie ou la totalité de ces droits, conformément aux conditions de cette entente. + + Durant l'exécution de toute activité susmentionnée, vous devez : + + reproduire l'information avec exactitude; + ne pas utiliser l'information d'une façon qui laisse croire que Statistique Canada vous appuie ou appuie l'utilisation que vous faites de l'information; + ne pas présenter de manière inexacte l'information ou sa source; + utiliser l'information d'une manière qui ne viole ni n'enfreint toute loi applicable; + ne pas fusionner ni lier l'information à toute autre base de données pour tenter d'identifier une personne, une entreprise ou une organisation particulière; + ne pas présenter l'information d'une façon donnant l'impression que vous auriez pu avoir reçu ou avoir eu accès à des renseignements détenus par Statistique Canada sur toute personne, entreprise ou organisation identifiable. + + Droits de propriété intellectuelle + + Les droits de propriété intellectuelle visant les produits à valeur ajoutée, à savoir tout droit de propriété intellectuelle reconnu par la loi, y compris mais sans s'y limiter les droits de propriété intellectuelle protégés par une législation, vous sont attribués ou sont attribués à la personne que vous désignez ou qui est désignée par application de la loi. + + Les droits de propriété intellectuelle visant l'information que possède Statistique Canada demeurent la propriété de Statistique Canada. Les droits de propriété intellectuelle visant l'information qui appartient à des tiers demeurent la propriété de ces derniers. + Mention de la source + + (a) Pour tout exercice de vos droits d'utilisation de l'information, vous devez inclure et maintenir la mention suivante : + + Source : Statistique Canada, nom du produit, date de référence. Reproduit et diffusé « tel quel » avec la permission de Statistique Canada. + + (b) Pour toute information contenue dans un produit à valeur ajoutée, vous devez inclure dans ce produit la mention suivante : + + Adapté de Statistique Canada, nom du produit, date de référence. Cela ne constitue pas une approbation de ce produit par Statistique Canada. + Promotion et publicité + + Il vous est interdit d'utiliser sur toute reproduction de l'information ou sur tout matériel ayant trait à votre produit à valeur ajoutée, ou ailleurs : + + (a) le nom, l'emblème, les logos ou tout insigne ou nom de domaine de Statistique Canada ou les symboles officiels du gouvernement du Canada, y compris le mot symbole « Canada », les armoiries du Canada et le symbole du drapeau, sans l'autorisation écrite du Secrétariat du Conseil du Trésor. La demande d'autorisation au Secrétariat du Conseil du Trésor peut être adressée à : + + information@fip-pcim.gc.ca + Programme de coordination de l'image de marque + Secrétariat du Conseil du Trésor du Canada, + 300, avenue Laurier Ouest + Ottawa (Canada) K1A 0R5 + + (b) toute annotation qui pourrait être interprétée comme une approbation du produit à valeur ajoutée par Statistique Canada ou qui sous-entendrait que vous avez conclu une entente de distribution exclusive pour une partie ou pour toute l'information, ou que vous avez accès à des renseignements confidentiels ou non accessibles à d'autres parties. + Pas de garantie ni de responsabilité + + L'information est octroyée sous licence « telle quelle », et Statistique Canada ne fait aucune assertion et n'offre aucune garantie d'aucune sorte, explicite ou implicite, relativement à l'information et rejette expressément toute garantie implicite de qualité marchande de l'information ou de son utilité à des fins particulières. + + Statistique Canada ni aucun de ses ministres, dirigeants, fonctionnaires, employés, agents, successeurs et ayant droit ne sera tenu responsable d'aucune erreur ni omission dans l'information et ne sera en aucun cas tenu responsable des pertes, blessures ou dommages directs, indirects, spéciaux, conséquents ou autre, quelle qu'en soit la cause, que vous pourriez subir à n'importe quel moment en raison de votre possession de l'information, de votre accès à cette information ou de son utilisation, ou résultant de l'exercice de vos droits ou du respect de vos obligations aux termes de la présente entente. + Terme + + La présente entente entre en vigueur à la date et à l'heure où vous accédez à l'information et est résiliée automatiquement si vous enfreignez l'une de ses conditions. + + Nonobstant la résiliation de cette entente : + + vous pouvez continuer de distribuer les produits à valeur ajoutée aux fins de remplir les commandes faites avant la résiliation de l'entente, à condition que vous respectiez les exigences énoncées dans la clause de mention de la source; + les licences des particuliers ou des personnes morales auxquels vous avez fourni des produits à valeur ajoutée ou des reproductions de l'information en vertu de la présente entente ne seront pas résiliées à condition qu'ils continuent à se conformer entièrement aux conditions de ces licences. + + Survie + + Les obligations qui survivent à la résiliation de la présente entente, expressément ou en raison de leur nature, demeureront en vigueur. Pour plus de clarté, et sans limiter la généralité de ce qui précède, les dispositions qui suivent survivent à l'expiration ou à la résiliation de la présente entente : « Mention de la source » et « Aucune garantie ni responsabilité ». + Lois applicables + + La présente entente est régie et interprétée conformément aux lois de la province de l'Ontario et aux lois du Canada qui sont applicables. Par la présente, les parties reconnaissent la compétence exclusive de la Cour fédérale du Canada. json: scola-fr.json - yml: scola-fr.yml + yaml: scola-fr.yml html: scola-fr.html - text: scola-fr.LICENSE + license: scola-fr.LICENSE - license_key: scribbles + category: Permissive spdx_license_key: LicenseRef-scancode-scribbles other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Copying or modifying this code for any purpose is permitted, provided that this + copyright notice is preserved in its entirety in all copies or modifications + + COMPAQ COMPUTER CORPORATION MAKES NO WARRANTIES, EXPRESSED OR IIMPLIED, AS TO + THE USEFULNESS OR CORRECTNESS OF THIS CODE. json: scribbles.json - yml: scribbles.yml + yaml: scribbles.yml html: scribbles.html - text: scribbles.LICENSE + license: scribbles.LICENSE - license_key: script-asylum + category: Permissive spdx_license_key: LicenseRef-scancode-script-asylum other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Use of these materials are limited to personal and commercial use as long as + long as credits are left intact. Modification of the original material is + permitted as long as credits for the original developer(s) are left intact and + permission is granted by the developer(s). json: script-asylum.json - yml: script-asylum.yml + yaml: script-asylum.yml html: script-asylum.html - text: script-asylum.LICENSE + license: script-asylum.LICENSE - license_key: script-nikhilk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-script-nikhilk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "End User License Agreement for Script# \nIT IS IMPORTANT THAT YOU CAREFULLY READ THIS\ + \ NOTICE BEFORE INSTALLING THIS PRODUCT. BY INSTALLING, OR OTHERWISE USING THIS SOFTWARE,\ + \ YOU AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE AGREEMENT (THE \"AGREEMENT\") WHICH\ + \ CONSTITUTES A LEGALLY BINDING CONTRACT BETWEEN THE LICENSOR (PROJECTS.NIKHILK.NET, HEREAFTER\ + \ \"WE\", OR \"US\") AND THE LICENSEE (EITHER AN INDIVIDUAL OR ENTITY, HEREAFTER \"YOU\"\ + ). \nTHIS AGREEMENT \n1.1 In this Agreement, the phrase \"Software\" means any version of\ + \ the computer programs above and all associated media, printed materials, \"online\" or\ + \ electronic documentation and bundled software. \n1.2 The Software is licensed, not sold,\ + \ to You for use only under the terms of this Agreement. We reserve any rights not expressly\ + \ granted to You. \n1.3 By installing, copying or otherwise using the Software, You agree\ + \ to be bound by the terms of this Agreement. If You do not agree to the terms of this Agreement\ + \ You must not use the Software and must immediately delete any and all copies of the Software\ + \ in your procession. \nGRANT OF LICENSE \n2.1 We hereby grant You the following non-exclusive\ + \ license to use the Software. The rights granted to the Licensee are personal and non-transferable.\ + \ \n2.2 You may deploy the script files included with the product or those generated from\ + \ using the product to a Web server. \n2.3 The following are the restrictions placed on\ + \ the use of the Software. You may not: \n- Remove the auto-generated header identifying\ + \ Script# as the generator or tool used to produce the script files you deploy into your\ + \ application or component. \n- Modify or adapt the Software into another program or product.\ + \ \n- Reverse engineer, disassemble or decompile, or make any attempt to discover the source\ + \ code of the Software through current or future available technologies. \n- Redistribute,\ + \ publish or deploy the Software on a standalone basis for others to copy without prior\ + \ acknowledgment from the Licensor. \n- Copy or republish any portion of the documentation\ + \ without prior acknowledgment from the Licensor. \n- Sell, re-license, sub-license, rent,\ + \ lease any part of the Software or create derivative works. \n- Use the Software to perform\ + \ any unauthorized transfer of information or any illegal purpose. \n2.4 We may from time\ + \ to time create updated versions of the Software and may, at our option, make such updates\ + \ available to You. \n2.5 The Software is pre-release software. We have the sole right to\ + \ determine all aspects of future updates, changes, and releases of the Software. \n2.6\ + \ You permit the Software to connect and communicate with our servers to send version and\ + \ usage information for the purposes of improving the Software or sending information about\ + \ available updates. \n2.7 You agree to indemnify, hold harmless, and defend Us from and\ + \ against any claims, allegations, lawsuits, losses and costs (including attorney fees),\ + \ that arise or result from the use, deployment or distribution the software. \n2.8 Any\ + \ feedback including bug reports, feature suggestions or ideas provided by You to Us through\ + \ any communication channel are given to Us without any associated charge or implied patent\ + \ or intellectual rights. Thereafter, We have the full right to use, share and commercialize\ + \ such feedback in any way and \nfor any purpose. You will not give feedback that is subject\ + \ to a license that requires Us to license the Software to third parties because of inclusion\ + \ of such feedback. These rights survive this Agreement. \n2.9 We do not provide any support\ + \ services because the software is being made available to You in \"as-is\" form. \n2.10\ + \ We reserve the right to update the Agreement and the terms of the License with newer versions\ + \ of the Software. \nINTELLECTUAL PROPERTY RIGHTS \n3.1 The Software is protected by copyright\ + \ and other intellectual property laws. Title to, ownership of, and all rights and interests\ + \ in each and every part of the Software (including all copyrights, trademarks, patent rights\ + \ or other intellectual property rights of whatever nature), and all copies thereof shall\ + \ remain at all times vested in Us. \nWARRANTIES \n4.1 We expressly disclaim any warranty\ + \ for the Software. The Software and any associated materials are provided \"As Is\" without\ + \ warranty of any kind, either express or implied, including without limitation, the implied\ + \ warranties or merchantability, fitness for a particular purpose, or non-infringement.\ + \ The entire risk arising out of use or performance of the Software remains with You. \n\ + TERMINATION \n5.1 This Agreement takes effect upon your use of the Software and remains\ + \ effective until terminated. You may terminate it at any time by destroying all copies\ + \ of the Software in possession. It will also automatically terminate if You fail to comply\ + \ with any term or condition of this Agreement. You agree on termination of this Agreement\ + \ to destroy all copies of the Software in possession. \nGENERAL TERMS \n6.1 This written\ + \ Agreement is the exclusive agreement between You and Us concerning the Software and supersedes\ + \ any prior agreement, communication, advertising or representation concerning the Software.\ + \ \n6.2 This Agreement may be modified only by a writing signed by You and Us. \n6.3 In\ + \ the event of litigation between You and Us concerning the Software, the prevailing party\ + \ in the litigation will be entitled to recover attorney fees and expenses from the other\ + \ party. \n6.4 This Agreement is governed by the laws of the State of Washington, USA. Irrespective\ + \ of the country in which the Software was acquired, the construction, validity and performance\ + \ of the Agreement shall be governed in all respects by English law. You agree to submit\ + \ to exclusive jurisdiction of English courts. \n6.5 If any provision of this Agreement\ + \ is found to be invalid by any court having competent jurisdiction, the invalidity of such\ + \ provision shall not affect the validity of the remaining provisions of this Agreement,\ + \ which shall remain in full force and effect. \n6.6 You agree that the Software will not\ + \ be shipped, transferred or exported into any country or used in any manner prohibited\ + \ by the United States Export Administration Act or any other export laws, restrictions\ + \ or regulations." json: script-nikhilk.json - yml: script-nikhilk.yml + yaml: script-nikhilk.yml html: script-nikhilk.html - text: script-nikhilk.LICENSE + license: script-nikhilk.LICENSE - license_key: scrub + category: Proprietary Free spdx_license_key: LicenseRef-scancode-scrub other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + SCRUB - Simple Character String Replacer Documentation + + First Release: December 1988 + + Copyright 1988-1993 Duxbury Systems, Inc. + + This program and its documentation, that is specifically the files SCRUB.EXE, + SCRUB.ERM, SCRUB.EHL and SCRUB.DOC, may be distributed freely and used for any + legal purpose, provided it is not altered in any way nor its notices, including + this notice, obscured from view. + + Duxbury Systems, Inc. of Westford, Massachusetts, USA designs and manufactures + software related to braille. We can be reached at 978-692-3000. json: scrub.json - yml: scrub.yml + yaml: scrub.yml html: scrub.html - text: scrub.LICENSE + license: scrub.LICENSE - license_key: scsl-3.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-scsl-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Sun Community Source License v3.0\n\t\t\t\t\t\nII. PURPOSES\nOriginal Contributor is\ + \ licensing the Reference Code and Technology Specifications and is permitting implementation\ + \ of Technology under and subject to this Sun Community Source License (the \"License\"\ + ) to promote research, education, innovation and product development using the Technology.\n\ + \nCOMMERCIAL USE AND DISTRIBUTION OF TECHNOLOGY IS PERMITTED ONLY UNDER OPTIONAL SUPPLEMENTS\ + \ TO THIS LICENSE.\n\nIII. RESEARCH USE RIGHTS\n\nA. From Original Contributor. Subject\ + \ to and conditioned upon Your full compliance with the terms and conditions of this License,\ + \ including Sections IV (Restrictions and Community Responsibilities) and V.E.7 (International\ + \ Use), Original Contributor:\n\n1. grants to You a non-exclusive, worldwide and royalty-free\ + \ license to the extent of Original Contributor's copyrights and trade secret rights in\ + \ and covering the Reference Code and Technology Specifications to do the following for\ + \ Your Research Use only:\na) reproduce, prepare derivative works of, display and perform\ + \ the Reference Code, in whole or in part, alone or as part of Covered Code;\nb) reproduce,\ + \ prepare derivative works of and display the Technology Specifications;\nc) distribute\ + \ source or object code copies of Reference Code, in whole or in part, alone or as part\ + \ Covered Code, to other Community Members or to students; and\nd) distribute object code\ + \ copies of Reference Code, in whole or in part, alone or as part of object code copies\ + \ of Covered Code, to third parties.\n\n2. will not, during the term of Your License, bring\ + \ against You any claim alleging that Your using, making, having made, importing or distributing\ + \ Community Code for Your Research Use, insofar as permitted under Section III.A.1 of this\ + \ License, necessarily infringes any patent now owned or hereafter acquired by Original\ + \ Contributor whose claims cover subject matter contained in or embodied by the Reference\ + \ Code or which would necessarily be infringed by the use or distribution of any and all\ + \ implementations of the Technology Specifications.\n\n3. grants to You a non-exclusive,\ + \ worldwide and royalty-free license, to the extent of its intellectual property rights\ + \ therein, to use (a) Original Contributor's class, interface and package names only insofar\ + \ as necessary to accurately reference or invoke Your Modifications for Research Use, and\ + \ (b) any associated software tools, documents and information provided by Original Contributor\ + \ at the Technology Site for use in exercising the above license rights.\n\nB. Contributed\ + \ Code. Subject to and conditioned upon compliance with the terms and conditions of this\ + \ License, including Sections IV (Restrictions and Community Responsibilities) and V.E.7\ + \ (International Use), each Community Member:\n\n1. grants to each Community Member a non-exclusive,\ + \ worldwide and royalty-free license to the extent of such Community Member's copyrights\ + \ and trade secret rights in and covering its Contributed Code, to reproduce, modify, display\ + \ and distribute Contributed Code, in whole or in part, in source code and object code form,\ + \ to the same extent as permitted under such Community Member's License with Original Contributor\ + \ (including all supplements thereto).\n\n2. will not, during the term of the Community\ + \ Member's License, bring against any Community Member any claim alleging that using, making,\ + \ having made, importing or distributing Contributed Code as permitted under this License\ + \ (including any supplements) infringes any patents or patent applications now owned or\ + \ hereafter acquired by such Community Member which patents or patent applications are infringed\ + \ by using, making, having made, selling, offering for sale, importing or otherwise transferring\ + \ the Contributed Code (\"Community Member Patents\"). This covenant shall apply to the\ + \ combination of the Contributed Code with other Covered Code if, at the time the Contributed\ + \ Code is posted, such addition of the Contributed Code causes such combination to be covered\ + \ by the Community Member Patents. The covenant shall not apply to any other combinations\ + \ which include the Contributed Code or to the use or distribution of modified Contributed\ + \ Code where the modifications made by the Community Member add to the functions performed\ + \ by the Contributed Code in question and where, in the absence of such modifications, there\ + \ would be no infringement of a Community Member Patent.\n\n3. grants to Original Contributor,\ + \ in addition to the rights set forth in Sections III.B.1 and III.B.2, the right to sublicense\ + \ all such rights in Contributed Code, in whole or in part, as part of Reference Code or\ + \ other technologies based in whole or in part on Reference Code or Technology and to copy,\ + \ distribute, modify and prepare derivative works of Contributed Code Specifications, in\ + \ whole or in part, in connection with the exercise of such rights.\n\nC. Subcontracting.\ + \ You may provide Covered Code to a contractor for the sole purpose of providing development\ + \ services exclusively to You consistent with Your rights under this License. Such Contractor\ + \ must be a Community Member or have executed an agreement with You that is consistent with\ + \ Your rights and obligations under this License. Such subcontractor must assign exclusive\ + \ rights in all work product to You. You agree that such work product is to be treated as\ + \ Covered Code.\n\nD. No Implied Licenses. Neither party is granted any right or license\ + \ other than the licenses and covenants expressly set out herein. Other than the licenses\ + \ and covenants expressly set out herein, Original Contributor retains all right, title\ + \ and interest in Reference Code and Technology Specifications and You retain all right,\ + \ title and interest in Your Modifications and associated specifications. Except as expressly\ + \ permitted herein, You must not otherwise use any package, class or interface naming conventions\ + \ that appear to originate from Original Contributor.\n\nIV. RESTRICTIONS AND COMMUNITY\ + \ RESPONSIBILITIES\nAs a condition to Your license and other rights and immunities, You\ + \ must comply with the restrictions and responsibilities set forth below, as modified or\ + \ supplemented, if at all, in Attachment B, Additional Research Use Terms and Conditions.\n\ + \nA. Source Code Availability. You must provide source code and any specifications for Your\ + \ Error Corrections to Original Contributor as soon as practicable. You may provide other\ + \ Contributed Code to Original Contributor at any time, in Your discretion. Original Contributor\ + \ may, in its discretion, post Your Contributed Code and Contributed Code Specifications\ + \ on the Technology Site. You may post Your Contributed Code and/or Contributed Code Specifications\ + \ on another website of Your choice; provided, source code of Community Code and Technology\ + \ Specifications must be provided to Community Members only and only following certification\ + \ of Community Member status as required under Section IV.D.\n\nB. Notices. You must reproduce\ + \ without alteration copyright and other proprietary notices in any Covered Code that You\ + \ distribute. The statement, \"Use and Distribution is subject to the Sun Community Source\ + \ License available at http://sun.com/software/communitysource\" must appear prominently\ + \ in Your Modifications and, in all cases, in the same file as all Your copyright and other\ + \ proprietary notices.\n\nC. Modifications. You must include a diff file with Your Contributed\ + \ Code that identifies and details the changes or additions You made, the version of Reference\ + \ Code or Contributed Code You used and the date of such changes or additions. In addition,\ + \ You must provide any Contributed Code Specifications for Your Contributed Code. Your Modifications\ + \ are Covered Code and You expressly agree that use and distribution, in whole or in part,\ + \ of Your Modifications shall only be done in accordance with and subject to this License.\n\ + \nD. Distribution Requirements. You may distribute object code of Covered Code to third\ + \ parties for Research Use only pursuant to a license of Your choice which is consistent\ + \ with this License. You may distribute source code of Covered Code and the Technology Specifications\ + \ for Research Use only to (i) Community Members from whom You have first obtained a certification\ + \ of status in the form set forth in Attachment A-1, and (ii) students from whom You have\ + \ first obtained an executed acknowledgment in the form set forth in Attachment A-2. You\ + \ must keep a copy of each such certificate and acknowledgment You obtain and provide a\ + \ copy to Original Contributor, if requested.\n\nE. Extensions.\n\n1. You may create and\ + \ add Interfaces but, unless expressly permitted at the Technology Site, You must not incorporate\ + \ any Reference Code in Your Interfaces. If You choose to disclose or permit disclosure\ + \ of Your Interfaces to even a single third party for the purposes of enabling such third\ + \ party to independently develop and distribute (directly or indirectly) technology which\ + \ invokes such Interfaces, You must then make the Interfaces open by (a) promptly following\ + \ completion thereof, publishing to the industry, on a non-confidential basis and free of\ + \ all copyright restrictions, a reasonably detailed, current and accurate specification\ + \ for the Interfaces, and (b) as soon as reasonably possible, but in no event more than\ + \ thirty (30) days following publication of Your specification, making available on reasonableterms\ + \ and without discrimination, a reasonably complete and practicable test suite and methodology\ + \ adequate to create and test implementations of the Interfaces by a reasonably skilled\ + \ technologist.\n\n2. You shall not assert any intellectual property rights You may have\ + \ covering Your Interfaces which would necessarily be infringed by the creation, use or\ + \ distribution of all reasonable independent implementations of Your specification of such\ + \ Interfaces by a Community Member or Original Contributor. Nothing herein is intended to\ + \ prevent You from enforcing any of Your intellectual property rights covering Your specific\ + \ implementation of Your Interfaces or functionality using such Interfaces other than as\ + \ specifically set forth in this Section IV.E.2.\n\nV. GOVERNANCE.\n\nA. License Versions.\n\ + \nOnly Original Contributor may promulgate new versions of this License. Once You have accepted\ + \ Reference Code, Technology Specifications, Contributed Code and/or Contributed Code Specifications\ + \ under a version of this License, You may continue to use such version of Reference Code,\ + \ Technology Specifications, Contributed Code and/or Contributed Code Specifications under\ + \ that version of the License. New code and specifications which You may subsequently choose\ + \ to accept will be subject to any new License in effect at the time of Your acceptance\ + \ of such code and specifications.\n\nB. Disclaimer Of Warranties.\n\n1. COVERED CODE, ALL\ + \ TECHNOLOGY SPECIFICATIONS AND CONTRIBUTED CODE SPECIFICATIONS ARE PROVIDED \"AS IS\",\ + \ WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,\ + \ WARRANTIES THAT ANY SUCH COVERED CODE, TECHNOLOGY SPECIFICATIONS AND CONTRIBUTED CODE\ + \ SPECIFICATIONS ARE FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING\ + \ OF THIRD PARTY RIGHTS. YOU AGREE THAT YOU BEAR THE ENTIRE RISK IN CONNECTION WITH YOUR\ + \ USE AND CONTRIBUTION OF ANY AND ALL COVERED CODE, TECHNOLOGY SPECIFICATIONS AND CONTRIBUTED\ + \ CODE SPECIFICATIONS UNDER THIS LICENSE. NO USE OF ANY COVERED CODE, TECHNOLOGY SPECIFICATIONS\ + \ OR CONTRIBUTED CODE SPECIFICATIONS IS AUTHORIZED EXCEPT SUBJECT TO AND IN CONSIDERATION\ + \ FOR THIS DISCLAIMER.\n\n2. You understand that, although each Community Member grants\ + \ the licenses set forth in the License and any supplements hereto, no assurances are provided\ + \ by any Community Member that Covered Code or any specifications do not infringe the intellectual\ + \ property rights of any third party.\n\n3. You acknowledge that Reference Code and Technology\ + \ Specifications are neither designed nor intended for use in the design, construction,\ + \ operation or maintenance of any nuclear facility.\n\n\nC. Limitation Of Liability.\n\n\ + 1. Infringement. Each Community Member disclaims any liability to all other Community Members\ + \ for claims brought by any third party based on infringement of intellectual property rights.\ + \ Original Contributor represents that, to its knowledge, it has sufficient copyrights to\ + \ allow You to use and distribute the Reference Code as herein permitted (including as permitted\ + \ in any Supplement hereto) and You represent that, to Your knowledge, You have sufficient\ + \ copyrights to allow each Community Member and Original Contributor to use and distribute\ + \ Your Shared Modifications and Error Corrections as herein permitted (including as permitted\ + \ in any supplements to the License). You agree to notify Original Contributor should You\ + \ become aware of any potential or actual infringement of the Technology or any of Original\ + \ Contributor's intellectual property rights in the Technology, Reference Code or Technology\ + \ Specifications.\n\n\n2. Suspension. If any portion of, or functionality implemented by,\ + \ the Reference Code, Technology or Technology Specifications becomes the subject of a claim\ + \ or threatened claim of infringement (\"Affected Materials\"), Original Contributor may,\ + \ in its unrestricted discretion, suspend Your rights to use and distribute the Affected\ + \ Materials under this License. Such suspension of rights will be effective immediately\ + \ upon Original Contributor's posting of notice of suspension on the Technology Site. Original\ + \ Contributor has no obligation to lift the suspension of rights relative to the Affected\ + \ Materials until a final, non-appealable determination is made by a court or governmental\ + \ agency of competent jurisdiction that Original Contributor is legally able, without the\ + \ payment of a fee or royalty, to reinstate Your rights to the Affected Materials to the\ + \ full extent contemplated hereunder. Upon such determination, Original Contributor will\ + \ lift the suspension by posting a notice to such effect on the Technology Site. Nothing\ + \ herein shall be construed to prevent You, at Your option and expense, and subject to applicable\ + \ law and the restrictions and responsibilities set forth in this License and any Supplements,\ + \ from replacing Reference Code in Affected Materials with non-infringing code or independently\ + \ negotiating, without compromising or prejudicing Original Contributor's position, to obtain\ + \ the rights necessary to use Affected Materials as herein permitted.\n\n3. Disclaimer.\ + \ ORIGINAL CONTRIBUTOR'S LIABILITY TO YOU FOR ALL CLAIMS RELATING TO THIS LICENSE OR ANY\ + \ SUPPLEMENT HERETO, WHETHER FOR BREACH OR TORT, IS LIMITED TO THE GREATER OF ONE THOUSAND\ + \ DOLLARS (US$1000.00) OR THE FULL AMOUNT PAID BY YOU FOR THE MATERIALS GIVING RISE TO THE\ + \ CLAIM, IF ANY. IN NO EVENT WILL ORIGINAL CONTRIBUTOR BE LIABLE FOR ANY INDIRECT, PUNITIVE,\ + \ SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH OR ARISING OUT OF THIS\ + \ LICENSE (INCLUDING, WITHOUT LIMITATION, LOSS OF PROFITS, USE, DATA OR ECONOMIC ADVANTAGE\ + \ OF ANY SORT), HOWEVER IT ARISES AND ON ANY THEORY OF LIABILITY (including negligence),\ + \ WHETHER OR NOT ORIGINAL CONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE\ + \ AND NOTWITHSTANDING FAILURE OF THE ESSENTIAL PURPOSE OF ANY REMEDY.\n\nD. Termination.\n\ + \nYou may terminate this License at any time by notifying Original Contributor in writing.\n\ + \nAll Your rights will terminate under this License if You fail to comply with any of the\ + \ material terms or conditions of this License and do not cure such failure in a reasonable\ + \ period of time after becoming aware of such noncompliance.\n\nIf You institute patent\ + \ litigation against a Community Member with respect to a patent applicable to Community\ + \ Code, then any patent licenses or covenants granted by such Community Member to You under\ + \ this License shall terminate as of the date such litigation is filed. In addition, if\ + \ You institute patent litigation against any Community Member or Original Contributor alleging\ + \ that Reference Code, Technology or Technology Specifications infringe Your patent(s),\ + \ then the rights granted to You under Section III.A above will terminate.\n\nUpon termination,\ + \ You must discontinue all uses and distribution of Community Code, except that You may\ + \ continue to use, reproduce, prepare derivative works of, display and perform Your Modifications,\ + \ so long as the license grants and covenants of this license are not required to do so,\ + \ for purposes other than to implement functionality designated in any portion of the Technology\ + \ Specifications. Properly granted sublicenses to third parties will survive termination.\ + \ Provisions which, by their nature, should remain in effect following termination survive.\n\ + \nE. Miscellaneous.\n\n1. Trademark. You agree to comply with Original Contributors Trademark\ + \ & Logo Usage Requirements, as modified from time to time, available at the Technology\ + \ Site. Except as expressly provided in this License, You are granted no rights in or to\ + \ any Sun, Jini, Jiro or Java trademarks now or hereafter used or licensed by Original Contributor\ + \ (the \"Sun Trademarks\"). You agree not to (a) challenge Original Contributor's ownership\ + \ or use of Sun Trademarks; (b) attempt to register any Sun Trademarks, or any mark or logo\ + \ substantially similar thereto; or (c) incorporate any Sun Trademarks into Your own trademarks,\ + \ product names, service marks, company names or domain names.\n\n2. Integration and Assignment.\ + \ Original Contributor may assign this Research Use License to another by written notification\ + \ to the other party. This License represents the complete agreement of the parties concerning\ + \ the subject matter hereof.\n\n3. Severability. If any provision of this License is held\ + \ unenforceable, such provision shall be reformed to the extent necessary to make it enforceable\ + \ unless to do so would defeat the intent of the parties, in which case, this License shall\ + \ terminate.\n\n4. Governing Law. This License is governed by the laws of the United States\ + \ and the State of California, as applied to contracts entered into and performed in California\ + \ between California residents. The United Nations Convention on Contracts for the International\ + \ Sale of Goods shall not apply. Nor shall any law or regulation which provides that a contract\ + \ be construed against the drafter.\n\n5. Dispute Resolution.\n\na) Any dispute arising\ + \ out of or relating to this License shall be finally settled by arbitration as set forth\ + \ in this Section, except that either party may bring an action in a court of competent\ + \ jurisdiction (which jurisdiction shall be exclusive), relative to any dispute relating\ + \ to such party's intellectual property rights. Arbitration will be administered (i) by\ + \ the American Arbitration Association (AAA), (ii) in accordance with the rules of the United\ + \ Nations Commission on International Trade Law (UNCITRAL) (the \"Rules\") in effect at\ + \ the time of arbitration, modified as set forth herein, and (iii) by an arbitrator described\ + \ in Section 5.b who shall apply the governing laws required under Section V.E.4 above.\ + \ Judgment upon the award rendered by the arbitrator may be entered in any court having\ + \ jurisdiction to enforce such award. The arbitrator must not award damages in excess of\ + \ or of a different type than those permitted by this License and any such award is void.\n\ + \nb) All proceedings will be in English and conducted by a single arbitrator selected in\ + \ accordance with the Rules who is fluent in English, familiar with technology matters pertinent\ + \ in the dispute and is either a retired judge or practicing attorney having at least ten\ + \ (10) years litigation experience. Venue for arbitration will be in San Francisco, California,\ + \ unless the parties agree otherwise. Each party will be required to produce documents relied\ + \ upon in the arbitration and to respond to no more than twenty-five single question interrogatories.\ + \ All awards are payable in US dollars and may include for the prevailing party (i) pre-judgment\ + \ interest, (ii) reasonable attorneys' fees incurred in connection with the arbitration,\ + \ and (iii) reasonable costs and expenses incurred in enforcing the award.\n\n6. U.S. Government.\ + \ If this Software is being acquired by or on behalf of the U.S. Government or by a U.S.\ + \ Government prime contractor or subcontractor (at any tier), the Government's rights in\ + \ this Software and accompanying documentation shall be only as set forth in this license,\ + \ in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense acquisitions)\ + \ and with 48 CFR 2.101 and 12.212 (for non-DoD acquisitions).\n\n7. International Use.\n\ + \n(a) Covered Code is subject to US export control laws and may be subject to export or\ + \ import regulations in other countries. Each party shall comply fully with all such laws\ + \ and regulations and acknowledges its responsibility to obtain such licenses to export,\ + \ re-export or import as may be required. You must pass through these obligations to all\ + \ Your licensees.\n\n(b) You must not distribute Reference Code or Technology Specifications\ + \ into countries other than those listed on the Technology Site by Original Contributor,\ + \ from time to time.\n\nREAD ALL THE TERMS OF THIS LICENSE CAREFULLY BEFORE ACCEPTING. IF\ + \ YOU ARE AGREEING TO THIS LICENSE ON BEHALF OF A COMPANY, YOU REPRESENT THAT YOU ARE AUTHORIZED\ + \ TO BIND THE COMPANY TO THE LICENSE. WHETHER YOU ARE ACTING ON YOUR OWN BEHALF OR THAT\ + \ OF A COMPANY, YOU MUST BE OF MAJORITY AGE AND OTHERWISE COMPETENT TO ENTER INTO CONTRACTS." json: scsl-3.0.json - yml: scsl-3.0.yml + yaml: scsl-3.0.yml html: scsl-3.0.html - text: scsl-3.0.LICENSE + license: scsl-3.0.LICENSE - license_key: secret-labs-2011 + category: Permissive spdx_license_key: LicenseRef-scancode-secret-labs-2011 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + By obtaining, using, and/or copying this software and/or its associated documentation, you agree that you have read, understood, and will comply with the following terms and conditions: + + Permission to use, copy, modify, and distribute this software and its associated documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies, and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Secret Labs AB or the author not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. + + SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR 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. json: secret-labs-2011.json - yml: secret-labs-2011.yml + yaml: secret-labs-2011.yml html: secret-labs-2011.html - text: secret-labs-2011.LICENSE + license: secret-labs-2011.LICENSE - license_key: see-license + category: Unstated License spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Unstated License + text: json: see-license.json - yml: see-license.yml + yaml: see-license.yml html: see-license.html - text: see-license.LICENSE + license: see-license.LICENSE - license_key: selinux-nsa-declaration-1.0 + category: Public Domain spdx_license_key: libselinux-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + This library (libselinux) is public domain software, i.e. not copyrighted. + + Warranty Exclusion + ------------------ + You agree that this software is a + non-commercially developed program that may contain "bugs" (as that + term is used in the industry) and that it may not function as intended. + The software is licensed "as is". NSA makes no, and hereby expressly + disclaims all, warranties, express, implied, statutory, or otherwise + with respect to the software, including noninfringement and the implied + warranties of merchantability and fitness for a particular purpose. + + Limitation of Liability + ----------------------- + In no event will NSA be liable for any damages, including loss of data, + lost profits, cost of cover, or other special, incidental, + consequential, direct or indirect damages arising from the software or + the use thereof, however caused and on any theory of liability. This + limitation will apply even if NSA has been advised of the possibility + of such damage. You acknowledge that this is a reasonable allocation of + risk. json: selinux-nsa-declaration-1.0.json - yml: selinux-nsa-declaration-1.0.yml + yaml: selinux-nsa-declaration-1.0.yml html: selinux-nsa-declaration-1.0.html - text: selinux-nsa-declaration-1.0.LICENSE + license: selinux-nsa-declaration-1.0.LICENSE - license_key: sencha-app-floss-exception + category: Copyleft spdx_license_key: LicenseRef-scancode-sencha-app-floss-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: | + Exception for Applications Version 1.04, January 18, 2013 + + Exception Intent + + We want people to be able to build Free/Libre and Open Source Software ("FLOSS") applications using Sencha SDKs despite the fact that not all FLOSS licenses are compatible with version 3.0 of the GNU General Public License (the "GPL"). + + This Exception is intended to be used for end-user applications and is not intended to be applied to software development libraries or toolkits, as per section 2(d) below. For development libraries, please refer to the Open Source License Exception for Development. + Terms and Conditions + Definitions + + Terms used, but not defined, herein shall have the meaning provided in the GPL. + "Library" means Ext JS, Sencha Touch or Sencha GXT, for which this exception is applicable. + "Derivative Work" means derivative works as defined by US copyright law. + + Additional Grants + + As a special exception to the terms and conditions of version 3.0 of the GPL: + + You are free to distribute a Derivative Work that is formed entirely from the Library and one or more works (each, a "FLOSS Work") licensed under one or more of the licenses listed below in section 5, as long as: + + You obey the GPL in all respects for the Library and the Derivative Work, except for identifiable sections of the Derivative Work which are not derived from the Library, and which can reasonably be considered independent and separate works in themselves + All identifiable sections of the Derivative Work which are not derived from the Library, and which can reasonably be considered independent and separate works in themselves, are distributed subject to one of the FLOSS licenses listed below, and + The object code or executable form of those sections are accompanied by the complete corresponding machine-readable source code for those sections on the same medium and under the same FLOSS license as the corresponding object code or executable forms of those sections, and + Any works which are aggregated with the Library or with a Derivative Work on a volume of a storage or distribution medium in accordance with the GPL, can reasonably be considered independent and separate works in themselves which are not derivatives of either the Library, a Derivative Work or a FLOSS Work. + The Derivative Work can reasonably be considered independent and separate work that is intended for use by end-users and not as a library for software development purposes. + + Applicability + + This exception applies to Ext JS version 2.2 or later, Sencha Touch 1.0 or later and Sencha GXT version 1.0 or later released under the GPL that contain a conspicuous notice with the Derivative Work and conspicuously posted online near any download location, saying that Derivative Works built using the Library may be distributed under the terms of this Exception and that the included Library is subject to the terms of the GPL v3. + + This Exception can in no way be considered to grant rights to use or distribute the Library under any license other than the GPL v3. + Termination + + If you fail to comply with any of the terms in this Exception then all rights granted to you herein are void and your rights immediately revert back to those granted in the GPL v3. + Open Source License List + License name Version(s)/Copyright Date + Academic Free License 2.0 + Apache Software License 2.0 + Apple Public Source License 2.0 + Artistic license From Perl 5.8.0 + BSD license "July 22 1999" + Common Development and Distribution License (CDDL) 1.0 + Common Public License 1.0 + Eclipse Public License 1.0 + Educational Community License 2.0 + European Union Public License (EUPL) 1.1 + GNU General Public License (GPL) 2.0 + GNU Library or "Lesser" General Public License (LGPL) 3.0 + Jabber Open Source License 1.0 + MIT License (As listed in file MIT-License.txt) - + Mozilla Public License (MPL) 1.0/1.1/2.0 + Open Software License 2.0 + OpenSSL license (with original SSLeay license) "2003" ("1998") + PHP License 3.0 + Python license (CNRI Python License) - + Python Software Foundation License 2.1.1 + Sleepycat License "1999" + University of Illinois/NCSA Open Source License - + W3C License "2001" + X11 License "2001" + Zimbra Public License 1.3 + Zlib/libpng License - + Zope Public License 2.0 json: sencha-app-floss-exception.json - yml: sencha-app-floss-exception.yml + yaml: sencha-app-floss-exception.yml html: sencha-app-floss-exception.html - text: sencha-app-floss-exception.LICENSE + license: sencha-app-floss-exception.LICENSE - license_key: sencha-commercial + category: Commercial spdx_license_key: LicenseRef-scancode-sencha-commercial other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + Sencha Commercial License + Sencha Commercial Software License Agreement: Ext JS, Sencha GXT, and/or Sencha Touch Charts + Version 1.11 + + THIS DOCUMENT IS A LEGAL AGREEMENT (the "License Agreement") BETWEEN SENCHA INC. ("We," "Us") AND YOU OR THE ORGANIZATION ON WHOSE BEHALF YOU ARE UNDERTAKING THE LICENSE DESCRIBED BELOW ("You") IN RELATION TO SENCHA EXT JS AND/OR SENCHA GXT (THE "Software"). BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING THE SOFTWARE, YOU ACCEPT THE FOLLOWING TERMS AND CONDITIONS. IF YOU DO NOT AGREE WITH ANY OF THE TERMS OR CONDITIONS OF THIS LICENSE AGREEMENT, DO NOT PROCEED WITH THE DOWNLOADING, COPYING, INSTALLATION OR ANY OTHER USE OF THE SOFTWARE OR ANY PORTION THEREOF. THE SOFTWARE IS PROTECTED BY UNITED STATES COPYRIGHT LAWS AND INTERNATIONAL COPYRIGHT LAWS, AS WELL AS OTHER INTELLECTUAL PROPERTY LAWS AND TREATIES. THE SOFTWARE IS LICENSED, NOT SOLD. + + THIS LICENSE AGREEMENT DESCRIBES YOUR RIGHTS WITH RESPECT TO THE SOFTWARE AND ITS COMPONENTS. + + 1. OWNERSHIP, LICENSE GRANT + + This is a license agreement and not an agreement for sale. We reserve ownership of all intellectual property rights inherent in or relating to the Software, which include, but are not limited to, all copyright, patent rights, all rights in relation to registered and unregistered trademarks (including service marks), confidential information (including trade secrets and know-how) and all rights other than those expressly granted by this License Agreement. + + Subject to the payment of the fee required and subject to the terms and conditions of this License Agreement, We grant to You a revocable, non- transferable and non-exclusive license (i) for Designated User(s) (as defined below) within Your organization to install and use the Software on any workstations used exclusively by such Designated User(s) and (ii) for You to install and use the Software in connection with unlimited domains and sub-domains on unlimited servers, solely in connection with distribution of the Software in accordance with sections 3 and 4 below. This license is not sublicensable except as explicitly set forth herein. "Designated User" shall mean a single distinct employee acting within the scope of their employment with You or Your consultant or contractor acting within the scope of the services they provide for You or on Your behalf for whom You have purchased a license to use the Software. + + In addition to the other terms contained herein, We grant to You a revocable, non- transferable and non-exclusive license to install and use the Software on a single computer (the "Trial License") strictly for Your internal evaluation and review purposes and not for production purposes. This Trial License applies only if You have registered with Us for a Trial License of the Software and shall be effective for forty-five (45) consecutive days following the date of registration ("the Trial Period"). You may only register for a Trial License once in any eighteen month period. You agree not to use a Trial License for any purpose other than determining whether to purchase a license to the Software. You are explicitly not permitted to distribute the Software to any user outside the Organization on whose behalf you have undertaken this license. Your rights to use the Trial License will immediately terminate upon the earlier of (i) the expiration of the Trial Period, or (ii) such time that You purchase a license to the Software. We reserve the right to terminate Your Trial License at any time in Our absolute and sole discretion. + + 2. PERMITTED USES, SOURCE CODE, MODIFICATIONS + + We provide You with source code so that You can create Modifications of the original Software, where Modification means: a) any addition to or deletion from the contents of a file included in the original Software or previous Modifications created by You, or b) any new file that contains any part of the original Software or previous Modifications. While You retain all rights to any original work authored by You as part of the Modifications, We continue to own all copyright and other intellectual property rights in the Software. + + 3. DISTRIBUTION + + You may distribute the Software in any applications, frameworks, or elements (collectively referred to as an "Application" or "Applications") that you develop using the Software in accordance with this License Agreement, provided that such distribution does not violate the restrictions set forth in Section 4 of this License Agreement. You must not remove, obscure or interfere with any copyright, acknowledgment, attribution, trademark, warning or disclaimer statement affixed to, incorporated in or otherwise applied in connection with the Software. + + You are required to ensure that the Software is not reused by or with any applications other than those with which You distribute it as permitted herein. For example, if You install the Software on a customer’s server, that customer is not permitted to use the Software independently of Your application, and must be informed as such. + + You will not owe Us any royalties for Your distribution of the Software in accordance with this License Agreement. + + 4. PROHIBITED USES + + You may not, without Our prior written consent, redistribute the Software or Modifications other than by including the Software or a portion thereof within Your own product, which must have substantially different functionality than the Software or Modifications and must not allow any third party to use the Software or Modifications, or any portions thereof, for software development or application development purposes. You are explicitly not allowed to redistribute the Software or Modifications as part of any product that can be described as a development toolkit or library, an application builder, a website builder or any product that is intended for use by software, application, or website developers or designers. You are not allowed to redistribute any part of the Software documentation. You may not change or remove the copyright notice from any of the files included in the Software or Modifications. + + UNDER NO CIRCUMSTANCES MAY YOU USE THE SOFTWARE FOR A PRODUCT THAT IS INTENDED FOR SOFTWARE OR APPLICATION DEVELOPMENT PURPOSES. + + The Open Source version of the Software ("GPL Version") is licensed under the terms of the GNU General Public License versions 3.0 ("GPL") and not under this License Agreement. If You, or another third party, has, at any time, developed all (or any portions of) the Application(s) using the GPL Version, You may not combine such development work with the Software and must license such Application(s) (or any portions derived there from) under the terms of the GNU General Public License version 3, a copy of which is located at http://www.gnu.org/copyleft/gpl.html. + + 5. TERMINATION + + This License Agreement and Your right to use the Software and Modifications will terminate immediately without notice if You fail to comply with the terms and conditions of this License Agreement. Upon termination, You agree to immediately cease using and destroy the Software or Modifications, including all accompanying documents. The provisions of sections 4, 5, 6, 7, 8, 9, and 11 will survive any termination of this License Agreement. + + 6. DISCLAIMER OF WARRANTIES + + TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, WE AND OUR SUPPLIERS DISCLAIM ALL WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND TITLE AND NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE. WE DO NOT GUARANTEE THAT THE OPERATION OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, AND YOU ACKNOWLEDGE THAT IT IS NOT TECHNICALLY PRACTICABLE FOR US TO DO SO. + + 7. LIMITATION OF LIABILITIES + + TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL WE OR OUR SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION OR ANY OTHER PECUNIARY LAW) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ANY CASE, OUR ENTIRE LIABILITY UNDER ANY PROVISION OF THIS LICENSE AGREEMENT SHALL BE LIMITED TO THE AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE. + + 8. VERIFICATION + + We or a certified auditor acting on Our behalf, may, upon its reasonable request and at its expense, audit You with respect to the use of the Software. Such audit may be conducted by mail, electronic means or through an in-person visit to Your place of business. Any such in-person audit shall be conducted during regular business hours at Your facilities and shall not unreasonably interfere with Your business activities. We shall not remove, copy, or redistribute any electronic material during the course of an audit. If an audit reveals that You are using the Software in a way that is in material violation of the terms of the License Agreement, then You shall pay Our reasonable costs of conducting the audit. In the case of a material violation, You agree to pay Us any amounts owing that are attributable to the unauthorized use. In the alternative, We reserve the right, at Our sole option, to terminate the licenses for the Software. + + 9. PAYMENT AND TAXES + + If credit has been extended to You by Us, all payments under this License Agreement are due within thirty (30) days of the date We mail an invoice to You. If We have not extended credit to You, You shall be required to make payment concurrent with the delivery of the Software by Us. All amounts payable are gross amounts but exclusive of any value added tax, use tax, sales tax or similar tax. You shall be entitled to withhold from payments any applicable withholding taxes and comply with all applicable tax and employment legislation. Each party shall pay all taxes (including, but not limited to, taxes based upon its income) or levies imposed on it under applicable laws, regulations and tax treaties as a result of this License Agreement and any payments made hereunder (including those required to be withheld or deducted from payments). Each party shall furnish evidence of such paid taxes as is sufficient to enable the other party to obtain any credits available to it, including original withholding tax certificates. + + 10. SUPPORT AND UPDATES + + You are not entitled to any support for the Software under this License Agreement. All support must be purchased separately and will be subject to the terms and conditions contained in the Sencha support agreement. You are entitled to receive minor version updates to the Software (i.e. versions identified as follows (X.Y, X.Y+1). You are not entitled to receive major version updates (i.e. X.Y, X+1.Y) or bug fix updates to the Software (X.Y.Z, X.Y.Z+1), unless purchased independently of this license. + + 11 MISCELLANEOUS + + The license granted herein applies only to the version of the Software available when purchased in connection with the terms of this License Agreement. Any previous or subsequent license granted to You for use of the Software shall be governed by the terms and conditions of the agreement entered in connection with purchase of that version of the Software. You agree that you will comply with all applicable laws and regulations with respect to the Software, including without limitation all export and re-export control laws and regulations. + + While redistributing the Software or Modifications thereof, You may choose to offer acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License Agreement. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on our behalf. You agree to indemnify, defend, and hold Us harmless from and against any liability incurred by, or claims asserted against, Us (i) by reason of Your accepting any such support, warranty, indemnity or additional liability; or (ii) arising out of the use, reproduction or distribution of Your Application, except to the extent such claim is solely based on the inclusion of the Software therein. + + You agree to be identified as a customer of ours and You agree that We may refer to You by name, trade name and trademark, if applicable, and may briefly describe Your business in our marketing materials and web site. + + You may not assign or transfer this License Agreement without Our prior written consent, which will not be unreasonably withheld. This License Agreement will inure to the benefit of Our successors and assigns. + + You acknowledge that this License Agreement is complete and is the exclusive representation of our agreement. No oral or written information given by Us or on our behalf shall create a warranty or collateral contract, or in any way increase the scope of this License Agreement in any way, and You may not rely on any such oral or written information. No term or condition contained in any purchase order shall apply unless expressly such term or condition is accepted by Us in writing, + + There are no implied licenses or other implied rights granted under this License Agreement, and all rights, save for those expressly granted hereunder, shall remain with Us and our licensors. In addition, no licenses or immunities are granted to the combination of the Software and/or Modifications, as applicable, with any other software or hardware not delivered by Us to You under this License Agreement. + + If any provision in this License Agreement shall be determined to be invalid, such provision shall be deemed omitted; the remainder of this License Agreement shall continue in full force and effect. If any remedy provided is determined to have failed for its essential purpose, all limitations of liability and exclusions of damages set forth in this License Agreement shall remain in effect. + + This License Agreement may be modified only by a written instrument signed by an authorized representative of each party. + + This License Agreement is governed by the law of the State of California, United States (notwithstanding conflicts of laws provisions), and all parties irrevocably submit to the jurisdiction of the courts of the State of California and further agree to commence any litigation which may arise hereunder in the state or federal courts located in the judicial district of Santa Clara County, California, US. + + If the Software or any related documentation is licensed to the U.S. government or any agency thereof, it will be deemed to be "commercial computer software" or "commercial computer software documentation," pursuant to DFAR Section 227.7202 and FAR Section 12.212. Any use of the Software or related documentation by the U.S. government will be governed solely by the terms of this License Agreement. json: sencha-commercial.json - yml: sencha-commercial.yml + yaml: sencha-commercial.yml html: sencha-commercial.html - text: sencha-commercial.LICENSE + license: sencha-commercial.LICENSE - license_key: sencha-commercial-3.17 + category: Commercial spdx_license_key: LicenseRef-scancode-sencha-commercial-3.17 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + Sencha Software License Agreement + Version 3.17 + + THIS DOCUMENT IS A LEGAL AGREEMENT (the “Agreement”) BETWEEN SENCHA INC. (“We,” “Us”) AND YOU OR THE ORGANIZATION ON WHOSE BEHALF YOU ARE ENTERING INTO THIS AGREEMENT (“You”) IN RELATION TO SENCHA SOFTWARE GENERALLY MADE AVAILABLE IN SOURCE CODE FORMAT (“Sencha SDKs”) AND/OR SENCHA SOFTWARE GENERALLY MADE AVAILABLE IN OBJECT CODE FORMAT (“Sencha Tools”). (The Sencha SDKs and the Sencha Tools are sometimes hereinafter collectively referred to as the “Software”.) + + RIGHTS GRANTED HEREIN APPLY ONLY TO SOFTWARE FOR WHICH YOU’VE PAID THE APPLICABLE FEE, WHICH MAY INCLUDE THE FOLLOWING SENCHA SDKs: SENCHA EXT JS, SENCHA GXT, SENCHA EXTREACT, SENCHA EXTANGULAR, SENCHA TREE GRID, SENCHA PIVOT GRID, SENCHA CHARTS, SENCHA CALENDAR COMPONENT, AND/OR SENCHA D3 ADAPTER; AND/OR THE FOLLOWING SENCHA TOOLS: SENCHA ARCHITECT, SENCHA JETBRAINS PLUG-IN, SENCHA ECLIPSE PLUG-IN, SENCHA VISUAL STUDIO PLUG-IN, SENCHA VISUAL STUDIO CODE PLUG-IN, SENCHA INSPECTOR, SENCHA THEMER, SENCHA STENCILS, SENCHA EXTGEN, SENCHA EXTBUILD, SENCHA CMD AND/OR SENCHA TEST. + + BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING THE SOFTWARE, YOU ACCEPT THE FOLLOWING TERMS AND CONDITIONS. IF YOU DO NOT AGREE WITH ANY OF THE TERMS OR CONDITIONS OF THIS LICENSE AGREEMENT, DO NOT PROCEED WITH THE DOWNLOADING, COPYING, INSTALLATION OR ANY OTHER USE OF THE SOFTWARE OR ANY PORTION THEREOF AS YOU HAVE NO RIGHTS TO DO SO. THE SOFTWARE IS PROTECTED BY UNITED STATES COPYRIGHT LAWS AND INTERNATIONAL COPYRIGHT LAWS, AS WELL AS OTHER INTELLECTUAL PROPERTY LAWS AND TREATIES. THE SOFTWARE IS LICENSED, NOT SOLD. + + THIS LICENSE AGREEMENT DESCRIBES YOUR RIGHTS AND RESTRICTIONS WITH RESPECT TO THE SOFTWARE AND ITS COMPONENTS. + + 1. DEFINITIONS + + “Application” means any software, application, or elements that Your Designated Users develop using the Software or Modifications in accordance with this Agreement; provided that any such Application (i) must have substantially different functionality than the Software, and (ii) must not allow any third party to use the Sencha SDKs or Modifications, or any portion thereof, for software development or application development purposes. + + “Designated User” shall mean a single distinct person for whom You have purchased a license to use the Software, whether such person is an employee acting within the scope of their employment with You or Your consultant or contractor acting within the scope of the services they provide for You. A Designated User can be replaced with a new Designated User only after being a Designated User for a minimum of six (6) months. + + “End User” means an end user of Your Application who acquires a license to such solely for their own internal use and not for distribution, resale, user interface design, or software development purposes. + + “Modification” means: a) any addition to or deletion from the contents of a file included in the original Sencha SDKs or previous Modifications created by You, and/or b) any new file that leverages any part of the original Sencha SDKs or previous Modifications. + + “Sample Code” means sample source code included with the Software and designated as “sample code,” “samples,” “sample application code,” “stencils,” “app templates,” and/or “snippets,” and/or found in directories labeled “samples” or “examples”. + + 2. LICENSE GRANTS + + 2.1 Use Grant. Subject to the payment of the fee required, and subject to Your compliance with all of the terms and conditions of this Agreement, except to the extent You has purchased a Subscription License (as defined in Section 7), We grant to You a revocable, non-exclusive, non-transferable, non-sublicensable, perpetual right and license (i) for Designated User(s) to use the Software to create Modifications and Applications; (ii) for You to distribute the Sencha SDKs and/or Modifications to End Users solely as integrated into the Applications; and (iii) for End Users to use the Sencha SDKs as integrated into Your Applications. + + 2.2 Trial License. In addition to the other terms contained herein, and subject to Your compliance with all of the terms and conditions of this Agreement, We grant to You a revocable, non-exclusive, non-transferable and non-sublicensable license to install and use the Software (the “Trial License”) strictly for Your internal evaluation and review purposes and not for production purposes. This Trial License applies only if You have registered with Us for a Trial License of the Software and shall be effective for thirty (30) consecutive days following the date of registration (“the Trial Period”). You may only register for a Trial License once in any eighteen month period. You agree not to use a Trial License for any purpose other than determining whether to purchase a license to the Software. You are explicitly not permitted to distribute the Software to any user outside the Organization on whose behalf You have undertaken this license. Your rights to use the Trial License will immediately terminate upon the earlier of (i) the expiration of the Trial Period, or (ii) such time that You purchase a license to the Software. We reserve the right to terminate Your Trial License at any time in Our absolute and sole discretion. + + 2.3 Beta License. In addition to the other terms contained herein, in the event You have downloaded or received beta or pre-release versions of the Software (the “Beta Software”) from Us, subject to Your compliance with all of the terms and conditions of this Agreement, We grant to You a revocable, non-exclusive, non-transferable and non-sublicensable license to install and use the Beta Software strictly for Your internal evaluation and review purposes and not for production purposes (the “Beta License”). You are explicitly not permitted to distribute the Software to any user outside the Organization on whose behalf You have undertaken this license. Your rights to use the Beta Software will immediately terminate upon the earlier of (i) the expiration of the evaluation period established by Us, or (ii) such time that You purchase a license to a non-evaluation version of the Software. We reserve the right to terminate Your Beta License at any time in Our absolute and sole discretion. + + 2.4 Reservation. YOU ACKNOWLEDGE THAT TRIAL AND/OR BETA SOFTWARE MIGHT PLACE WATERMARKS ON OUTPUT, CONTAIN LIMITED FUNCTIONALITY, FUNCTION FOR A LIMITED PERIOD OF TIME, OR LIMIT THE FUNCTIONALITY OR TIME OF FUNCTIONING OF ANY OUTPUT. ACCESS TO AND/OR USE OF ANY FILES OR OUTPUT CREATED WITH SUCH SOFTWARE IS ENTIRELY AT YOUR OWN RISK. WE ARE LICENSING THE SOFTWARE ON AN “AS IS” BASIS AT YOUR OWN RISK AND WE DISCLAIM ANY WARRANTY OR LIABILITY TO YOU OF ANY KIND. + + 2.5 Sample Code. You may modify the Sample Code solely for the purposes of designing, developing and testing Applications. You are permitted to use, copy and redistribute Your modified Sample Code only if all of the following conditions are met: (a) You include Our copyright notice (if any) with Your Application, including every location in which any other copyright notice appears in such Application; (b) You do not otherwise use Our name, logos or other of Our trademarks to market Your Application, unless otherwise agreed by Us in writing; and (c) each Designated User is duly licensed to use and distribute any of Our products that may be included in an application using and/or generated by the Software. + + 3. OWNERSHIP + + This is a license agreement and not an agreement for sale. We reserve ownership of all intellectual property rights inherent in or relating to the Software, which include, but are not limited to, all copyright, patent rights, all rights in relation to registered and unregistered trademarks (including service marks), confidential information (including trade secrets and know-how) and all rights other than those expressly granted by this Agreement. + + We provide You with source code to the Sencha SDKs so that You can create Modifications and Applications. While You retain all rights to any original work authored by You as part of the Modifications, We continue to own all copyright and other intellectual property rights in the Sencha SDKs. + + You must not remove, obscure or interfere with any copyright, acknowledgment, attribution, trademark, warning or disclaimer statement affixed to, incorporated in or otherwise applied in connection with the Software. + + 4. PROHIBITED USES OF SENCHA SDKs + + You may not redistribute the Sencha SDKs or Modifications other than by including the Sencha SDKs or a portion thereof within Your Application. You may not redistribute the Sencha SDKs or Modifications as part of any Application of which all or any part can be described as a development toolkit or library, an application builder, a website builder, an user interface designer, or is intended for use by software, application, or website developers or designers. You may not redistribute any part of the Sencha SDKs documentation. You may not change or remove the copyright notice from any of the files included in the Sencha SDKs or Modifications. + + UNDER NO CIRCUMSTANCES MAY YOU USE THE SENCHA SDKS FOR AN APPLICATION THAT IS INTENDED FOR SOFTWARE OR APPLICATION DEVELOPMENT PURPOSES. + + You are required to ensure that the Sencha SDKs is not reused by or with any applications other than those with which You distribute it as permitted herein. For example, if You install the Sencha SDKs on a customer’s server, that customer is not permitted to use the Sencha SDKs independently of Your Application, and must be informed as such. + + Alternate versions of the Sencha SDKs (“GPL Version”) may be licensed under the terms of the GNU General Public License versions 3.0 (“GPL”). If You, or another third party, has, at any time, developed all or any portion of the Application(s) using a GPL Version, You may not combine such work with the Sencha SDKs licensed hereunder, and You must license such application(s) under the terms of the GNU General Public License version 3. + + 5. PROHIBITED USES OF SENCHA TOOLS + + You agree not to sublicense, assign or transfer the Sencha Tools or Your rights in the Sencha Tools, or authorize any portion of the Sencha Tools to be copied onto or accessed from another individual’s or entity’s computer except as may be explicitly provided in this Agreement. Notwithstanding anything to the contrary in this section, You may transfer copies of the Sencha Tools installed on one of Your computers to another one of Your computers provided that the resulting installation and use of the Sencha Tools is in accordance with the terms of this Agreement and does not cause You to exceed Your right to use the Sencha Tools under this Agreement. Except as expressly authorized under this Agreement, You are prohibited from: (a) renting, leasing, lending or granting other rights in the Sencha Tools including rights on a membership or subscription basis; and (b) providing use of the Sencha Tools in a computer service business, third party outsourcing facility or service, service bureau arrangement, network, or time sharing basis. + + You agree not to modify, port, adapt or translate the Sencha Tools. You agree not to reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of the Sencha Tools. You agree not to use any part of the Sencha Tools or Your knowledge of the Sencha Tools (or any information that You learn as a result of Your use of the Sencha Tools) to create a product with the same or substantially the same functionality as the Sencha Tools. The Sencha Tools may include various applications, utilities and components, may support multiple platforms and languages or may be provided to You on multiple media or in multiple copies. Nonetheless, the Sencha Tools is designed and provided to You as a single product to be used as a single product on computers and platforms as permitted herein. You are not required to use all component parts of the Sencha Tools, but You shall not unbundle any component parts of the Sencha Tools for use on different computers. You shall not unbundle or repackage the Sencha Tools for distribution, transfer or resale. + + You agree to use the Software pursuant to the terms and conditions of this Agreement, and not any other terms or conditions unless provided in writing signed by the parties hereto. + + 6. TERMINATION + + This Agreement and Your right to use the Software and Modifications will terminate immediately if You fail to comply with any of the terms and conditions of this Agreement. Upon termination, You agree to immediately cease using and destroy the Software or Modifications, including all accompanying documents. The provisions of sections 3, 4, 5, 6, 7, 8, 10, and 11 will survive any termination of this Agreement. + + A license to Sencha Test (unless bundled as part of Sencha Ext JS Enterprise) as provided under Section 2 of this Agreement (a “Term License”) commences on the date of purchase and continues for an initial term of one (1) year or more, depending on the fee paid (the “Initial Term”). A Term License will automatically terminate at the end of the Initial Term, unless You choose to extend the Term License, subject to Our agreement based on payment of the applicable fees (each such extension is referred to as an “Extension”). The “Term” shall mean the Initial Term as extended by each Extension. Upon the expiration of the Term, the applicable Term Licenses shall terminate automatically, and You shall immediately cease use of Sencha Test, provided, however, that any licenses for use of Sencha Test scripts granted to You in accordance with the terms and conditions hereof shall survive such termination. + + 7. ADDITIONAL LICENSE TERMS APPLICABLE TO THE SUBSCRIPTION LICENSE + + In the event You has purchased a license to Sencha Ext JS, Sencha GXT, ExtReact and/or Sencha ExtAngular (each a “Subscription Software”) under the Single Developer Subscription License program the following terms apply – the terms contained in this Section do not apply to perpetual, Trial licenses or Beta licenses. Subject to the payment of the fee required, and subject to the terms and conditions of this Agreement, You are granted a limited, revocable, non-exclusive, non-transferable, non-sublicensable right and license (i) for Designated User(s) to use the Subscription Software to create Modifications and Applications; (ii) for You to distribute the Subscription Software and/or Modifications to End Users solely as integrated into the Applications; and (iii) for End Users to use the Subscription Software as integrated into Your Applications (the “Subscription License”). The term of the Subscription License commences on the date of purchase and will continue for an initial term of one (1) year (the “Initial Subscription Term”). Upon expiration of each Initial Subscription Term, if You elected a subscription plan with auto-renewals, the Subscription Term will automatically renew for successive one (1) year terms (each a “Subscription Renewal” and together with the Initial Subscription Term, the “Subscription Term”) at the then current fee unless either party gives written notice of its intent not to renew at least thirty (30) days prior to the end of the current Subscription Term. If You elected a subscription plan without auto-renewals, the Subscription License will automatically terminate at the end of the Initial Subscription Term. Upon the expiration or termination of the Subscription Term, the Subscription License shall terminate automatically, and You shall immediately cease Your use of the applicable Subscription Software. However, You can continue distributing and allowing End User use of the Modification and Application developed using the Subscription Software during the Subscription Term, in accordance with the terms and conditions of this Agreement. + + 8. ADDITIONAL LICENSE TERMS APPLICABLE TO THE COMMUNITY EDITION + + In the event You have obtained a Sencha Ext JS Standard Community Edition license (the “Community Edition”), the following terms apply in addition to the General Terms described in Section 2 above. Please note that the Community Edition does not include all the software packages that Sencha Ext JS includes, and in particular does not include Ext JS Classic, Ext JS Charts, and many Ext JS fonts and themes. Please see Our website for a complete description of what is included in the Community Edition. We reserve the right to update or change the software included in the Community Edition at our discretion, and any such change shall take effect with respect to Your Community Edition after the expiration of Your Community Edition Term (as defined below). The Community Edition may or may not contain the most recent versions of the included software. Note that Sencha GXT is not offered and may not be licensed as a Community Edition. + + The Community Edition license applies solely if Your cumulative annual revenue (of the for-profit organization, the government entity or the individual developer) or any donations (of the non-profit organization) does not exceed USD $10,000.00 (or the equivalent in other currencies) (the “Threshold”). If You are an individual developer, the revenue of all contract work performed by You in one calendar year may not exceed the Threshold (whether or not the Community Edition is used for all projects). For example, a developer who receives payment of more than $10,000.00 for a single project (or more than $10,000.00 for multiple projects) even if such engagements do not anticipate the use of the Community Edition, is not allowed to use the Community Edition. In addition, a developer building solely an app store application would not be allowed to use the Community Edition once the app store revenue reaches a revenue of $10,000.00 or more in a year. If You are a company that has a cumulative annual revenue which exceeds the Threshold, then You are not allowed to use the Community Edition, regardless of whether the Community Edition is used solely to write applications for the business’ internal use or is seen by third parties outside the company or has a direct revenue associated with it. If You do not qualify to use the Community Edition or otherwise satisfy the additional terms and restrictions applicable to the Community Edition described in this Section, You may not download or use the Community Edition and any such use is unauthorized, constitutes a violation of this Agreement and may constitute a misappropriation of Our intellectual property rights. + + You may use a Community Edition license to create Modifications and Applications (i) for which You do not charge directly or indirectly a fee or receive other consideration including but not limited to a license fee, a service fee, a development fee, a consulting fee, a subscription fee, a support fee, a hosting fee, or receive an income, or the like (“License Fees”) or (ii) to the extent You charge a License Fees, Your cumulative annual revenue shall not exceed USD $10,000.00 (or the equivalent in other currencies). In the event You elect to license the Community Edition (for profit or non-profit) then the total number of the Community Edition licenses deployed may not exceed five (5) Designated Users. + + The term of the Community Edition license is for one year from acceptance of your registration of the Community Edition (the “Community Edition Term”) and will automatically expire upon the end of the Community Edition Term – the Community Edition license will not auto-renew. To the extent You want to continue using the Community Edition after the expiration or termination of Your Community Edition Term, You must register and be accepted for another Community Edition Term and agree with the terms and conditions of the Agreement in force at that time. Upon expiration or termination of the Community Edition Term, You shall immediately cease Your use of the Community Edition and cease any further development of the Modifications and Applications. However, You can continue distributing the Modifications and Applications that you developed with the Community Edition during the Community Edition Term, in accordance with the terms and conditions of this Agreement.. All restrictions and conditions relating to the Community Edition license shall survive the termination or expiration of Your Community Edition Term. The Community Edition license granted under this Section will automatically terminate upon Your breach of the terms specified herein. The support described in this Agreement does not apply to the Community Edition. + + We will collect information about Your use of the Community Edition for auditing purposes and to improve Our products and services. For more information about Our collection, use and disclosure of personal data, please review Our Privacy Policy at sencha.com/privacy. + + 9. DISCLAIMER OF WARRANTIES + + TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, WE AND OUR RESELLERS DISCLAIM ALL WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE. WE DO NOT GUARANTEE THAT THE OPERATION OF THE SOFTWARE OR THE CODE IT PRODUCES WILL BE UNINTERRUPTED OR ERROR-FREE, AND YOU ACKNOWLEDGE THAT IT IS NOT TECHNICALLY PRACTICABLE FOR US TO DO SO. + + 10. LIMITATION OF LIABILITIES + + IN NO EVENT WILL WE, OUR SUBSIDIARIES, OUR AFFILIATES, OR OUR LICENSORS BE LIABLE TO YOU, WHETHER IN CONTRACT, BY REASON OF NEGLIGENCE OR OTHERWISE, FOR PUNITIVE, CONSEQUENTIAL, EXEMPLARY, INCIDENTAL, OR INDIRECT DAMAGES OR COSTS (INCLUDING LEGAL FEES AND EXPENSES) OR LOSS OF GOODWILL OR PROFIT IN CONNECTION WITH THE SUPPLY, USE OR PERFORMANCE OF OR INABILITY TO USE THE SOFTWARE, OR NON-PERFORMANCE OF ANY OBLIGATIONS PROVIDED HEREUNDER, OR IN CONNECTION WITH ANY CLAIM ARISING FROM THIS AGREEMENT, EVEN IF WE, OUR SUBSIDIARIES, OUR AFFILIATES, OR OUR LICENSORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR COSTS YOU AGREE THAT OUR ENTIRE LIABILITY HEREUNDER FOR DAMAGES SHALL NOT EXCEED THE LESSER OF (I) THE AGGREGATE AMOUNTS PAID OR PAYABLE BY YOU WITHIN THE SIX MONTH PERIOD IMMEDIATELY PRECEEDING THE DATE THE LIABILITY THAT GAVE RISE TO DAMAGES WAS INCURRED; AND (II) FIVE HUNDRED DOLLARS ($500). + + 11. VERIFICATION + + We or a certified auditor acting on Our behalf, may, upon Our reasonable request and at Our expense, audit You with respect to the use of the Software. Such audit may be conducted by mail, electronic means or through an in-person visit to Your place of business. Any such in-person audit shall be conducted during regular business hours at Your facilities and shall not unreasonably interfere with Your business activities. We shall not remove, copy, or redistribute any electronic material during the course of an audit. If an audit reveals that You are using the Software in a way that is in material violation of the terms of this Agreement, then You shall pay Our reasonable costs of conducting the audit. In the case of a material violation, You agree to pay Us any amounts owing that are attributable to the unauthorized use. In the alternative, We reserve the right, at Our discretion, to terminate the licenses for the Software, in addition to any other remedies available under law. This Section shall survive expiration or termination of this Agreement for a period of two (2) years. + + We will collect information about Your use of the Software for auditing purposes and to improve Our products and services. For more information about Our collection, use and disclosure of personal data, please review Our Privacy Policy at sencha.com/privacy. + + 12. PAYMENT AND TAXES + + If credit has been extended to You by Us, all payments under this Agreement are due within thirty (30) days of the date We mail an invoice to You. If We have not extended credit to You, You shall be required to make payment concurrent with the delivery of the Software by Us. Any value added tax, use tax, sales tax or similar tax (“Transaction Taxes”) shall be Your sole responsibility. Each party shall pay all taxes (including, but not limited to, taxes based upon its income) or levies imposed on it under applicable laws, regulations and tax treaties as a result of this Agreement and any payments made hereunder (including those required to be withheld or deducted from payments); provided that You shall be responsible for all Transactions Taxes and shall pay or reimburse Us for the same upon invoice. Each party shall furnish evidence of such paid taxes as is sufficient to enable the other party to obtain any credits available to it, including original withholding tax certificates. Notwithstanding the foregoing, Software ordered through Our resellers is subject to the fees and payment terms set forth on the applicable reseller invoice. + + 13. MISCELLANEOUS + + 13.1 Limitations. The license granted herein applies only to the version of the Software available when purchased in connection with the terms of this Agreement, and to any updates and/or upgrades to which You may be entitled. Any previous or subsequent license granted to You for use of the Software shall be governed by the terms and conditions of the agreement entered in connection with purchase or download of that version of the Software. Support and maintenance, including rights to updates and upgrades, are provided pursuant to the terms of the Sencha Support and Maintenance Agreement. You agree that You will comply with all applicable laws and regulations with respect to the Software, including without limitation all export and re-export control laws and regulations. + + 13.2 Support Services. While redistributing the Sencha SDKs or Modifications thereof as part of Your Application, You may choose to offer acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this Agreement. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on our behalf. You shall indemnify Us and our resellers, or at Our option, defend Us and our resellers against any claim, suit or proceeding brought against Us or our resellers (i) arising by reason of Your accepting any such support, warranty, indemnity or additional liability; or (ii) arising out of the use, reproduction or distribution of Your Application, except to the extent such claim is solely based on the inclusion of the Sencha SDKs therein. Further, You agree only to distribute the Sencha SDKs pursuant to an enforceable written agreement for Our benefit that includes all the limitations and restrictions of this Agreement and is as protective of Us and Sencha SDKs as is this Agreement. For clarity, for Sencha SDKs for which You have paid a fee, You must purchase Designated User licenses for each contractor or consultant who uses the Sencha SDKs to create an Application on Your behalf (including system integrators), whether or not such contractor or consultant has its own license to the Sencha SDKs. + + 13.3 Consent. You agree to be identified as a customer of Ours and You agree that We may refer to You by name, trade name and trademark, if applicable, and may briefly describe Your business in our marketing materials and web site. + + 13.4 Assignment. You may not assign or transfer this Agreement without Our prior written consent. Any attempted assignment or delegation in violation of this Section shall be null and void. This Agreement may be assigned by Us in whole or part and will inure to the benefit of Our successors and assigns. Notwithstanding the foregoing, in any instance in which You transfer ownership of an Application on a work for hire basis, You may assign licenses for the total Designated Users that have used the Software to develop said Application under this Agreement to another party (Assignee) provided (i) You provide written notice to Us prior to the effective date of such assignment; and (ii) the transfer is in quantities We generally make available to Our customers (minimum 5 Designated Users); and (iii) there is a written agreement, wherein the Assignee accepts the terms of this Agreement. Upon any such transfer, the Assignee may appoint new Designated Users. For license(s) purchased under our Independent Consultant Program: (i) you represent and warrant that the information you provided to us is true and correct in all material regards, and (ii) notwithstanding any provision herein to the contrary, you may assign any such license(s) to the entity you designated to us as the Client, provided that assignee accepts the terms of this Agreement in connection with the Assignment. On any such assignment, the assignee may change the Designated User. + + 13.5 Entire Agreement. This Agreement is the complete and exclusive statement of the mutual understanding of the parties and supersedes and cancels all previous written and oral agreements and communications relating to the subject matter of this Agreement. No oral or written information given by Us, Our resellers, or otherwise on Our behalf shall create a warranty or collateral contract, or in any way increase the scope of this Agreement in any way, and You may not rely on any such oral or written information. Any waivers or amendments shall be effective only if made in writing. Further, any different or additional terms of any related purchase order, confirmation, or similar form shall have no force or effect. The license granted herein is conditioned upon the acceptance of the terms and conditions hereof to the exclusion of all other terms, and no other or additional terms shall apply, unless so provided in writing signed by the parties hereto. You expressly agree by Your use of the Software that no such other, different or additional terms or conditions shall apply, notwithstanding any statements to the contrary included in any purchase order, confirmation, or similar form, and regardless of whether we accept payments referenced therein which shall not constitute acceptance of additional terms and conditions. + + 13.6 No Implied License. There are no implied licenses or other implied rights granted under this Agreement, and all rights, save for those expressly granted hereunder, shall remain with Us and our licensors. In addition, no licenses or immunities are granted to the combination of the Software and/or Modifications, as applicable, with any other software or hardware not delivered by Us or Our resellers to You under this Agreement. Your rights under this Agreement apply only to Software, Modifications, and/or Applications for which all Designated Users are duly licensed hereunder. + + 13.7 Legal Effect. If any provision in this Agreement shall be determined to be invalid, such provision shall be deemed omitted; the remainder of this Agreement shall continue in full force and effect. If any remedy provided is determined to have failed for its essential purpose, all limitations of liability and exclusions of damages set forth in this Agreement shall remain in effect. The failure of either party to enforce any provision of this Agreement may not be deemed a waiver of that or any other provision of this Agreement. + + 13.8 Applicable Law. This Agreement, and all claims or causes of action that may be based upon, arise out of, or relate to this Agreement and/or the Software shall be governed by the law of the State of Texas, United States (notwithstanding conflicts of laws provisions), and all parties irrevocably submit to the jurisdiction of the state or federal courts of the State of Texas and further agree to commence any litigation which may arise hereunder or related hereto and/or to the Software in the state or federal courts located in the judicial district of Travis County, Texas, US. + + 13.9 Commercial Computer Software. If the Software or any related documentation is licensed to the U.S. Government or any agency thereof, it will be considered to be “commercial computer software” or “commercial computer software documentation,” as those terms are used in 48 CFR § 12.212 or 48 CFR § 227.7202, and is being licensed with only those rights as are granted to all other licensees as set forth in this Agreement. + + 13.10 Definition of Sencha Bundles Packages. + + (i) Sencha Ext JS Bundles: + + Sencha Ext JS Pro includes Sencha Ext JS (which includes Sencha Tree Grid and Sencha Charts), Sencha Stencils, Sencha Visual Studio Code Plugin, Sencha ExtGen, Sencha ExtBuild, Sencha Cmd, Sencha Architect, Sencha JetBrains Plugin, Sencha Eclipse Plugin, Sencha Visual Studio Plugin, and Sencha Themer. + Sencha Ext JS Enterprise includes all the Sencha Ext JS Pro Software and Sencha Pivot Grid, Sencha Inspector, Sencha Calendar Component, Sencha Exporter, Sencha D3 Adapter, ExtAngular Premium, ExtReact ProPremium and Sencha Test. + (ii) Sencha GXT Bundles: + + Sencha GXT Premium includes Sencha GXT (which includes GXT Charts and GXT Theme Builder), Sencha Ext JS (which includes Sencha Tree Grid and Sencha Charts), Sencha Stencils, Sencha Visual Studio Code Plugin, Sencha ExtGen, Sencha ExtBuild, Sencha Cmd, and Sencha Themer. + (iii) Sencha ExtReact Bundles: + + Sencha ExtReact Pro includes Sencha ExtReact, Sencha Cmd, Sencha Themer, Sencha Tree Grid, Sencha Pivot Grid, Sencha Calendar Component, Sencha Exporter, and Sencha D3 Adapter. + (iv) Sencha ExtAngular Bundles: + + Sencha ExtAngular Standard includes Sencha ExtAngular, and Sencha Cmd. + Sencha ExtAngular Premium includes all the Sencha ExtAngular Standard Software and Sencha Themer, Sencha Tree Grid, Sencha Pivot Grid, Sencha Calendar Component, Sencha Exporter, and Sencha D3 Adapter. json: sencha-commercial-3.17.json - yml: sencha-commercial-3.17.yml + yaml: sencha-commercial-3.17.yml html: sencha-commercial-3.17.html - text: sencha-commercial-3.17.LICENSE + license: sencha-commercial-3.17.LICENSE - license_key: sencha-commercial-3.9 + category: Commercial spdx_license_key: LicenseRef-scancode-sencha-commercial-3.9 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + Sencha Software License Agreement + Summary of Important Use Restrictions + + Please read the entire agreement and definitions below. + Commercial vs. Open Source License + + Source Software may be made available under this Commercial License and under the GNU General Public License version 3 (GPLv3). This Commercial License requires the payment of a fee for each Designated User (i.e. developer). If you choose not to pay a fee and use the GPLv3 license, you are required to release the source code of any program that you distribute with the Software. If you choose to pay for a Commercial License, you are not required to disclose your source code. No closed source application can include or use Sencha Ext JS or Sencha GXT unless commercially licensed, whether or not you modify these libraries. + GPL & Trial Development + + You cannot commence development of an application under GPLv3 license and later convert to a commercial license. You cannot develop during a trial period and continue development beyond the trial period (30 days). You must download the appropriate version of the Software (GPL or Commercial) for the license that you are using. If you fail to comply with licensing requirements you may be subject to action for intellectual property rights infringement. + Prohibited Uses + + Under this Commercial License, you are not allowed to create applications that can be described as a development toolkit or library, an application builder, a website builder or any application that is intended for use by software, application, or website developers or designers. If you are concerned about this prohibition, you can discuss getting an OEM license by emailing us at license@sencha.com. + Designated Users + + Under this Commercial License, each Designated User (a developer or anybody using the Software to design UI) must be licensed. You can move the license to another Designated User every 6 months. + Consultants and Software Integrators + + Consultants and SI’s that develop applications must ensure that the third parties for which they develop are licensed for the Software. In some cases, you can transfer your license to the third party, and in other cases third parties will need to have their own Commercial License. Consultants can’t use the same license to build application for multiple customers, if the customers are to own the application, unless the third parties purchase a commercial license directly. + + Certain consultants and integrators can take advantage of our Independent Consultant Program, which offers commercial licenses for fewer developers. + License Term + + Ext JS / GXT: Licenses for Sencha Ext JS and Sencha GXT include perpetual development and use rights, with version upgrades under annual Maintenance and Support (1 year included). + + Ext JS Single Developer Subscription License: Sencha Ext JS may also be licensed on an annual basis which includes support, and must be current to develop, distribute, and use applications. + + ExtReact: Sencha ExtReact is licensed on an annual basis which includes support, and must be current to develop applications. Rights to distribute and use applications are perpetual. + + Sencha Test: Sencha Test is licensed on an annual basis which includes support, and must be current to access the Sencha Test tools. Rights to use test scripts are perpetual. + + Please read the entire agreement and definitions below. Your Commercial License is governed by the terms below and not by the terms of this Summary of Important License Use Restrictions. + Sencha Software License Agreement + Version 3.9 + + THIS DOCUMENT IS A LEGAL AGREEMENT (the "Agreement") BETWEEN SENCHA INC. ("We," "Us") AND YOU OR THE ORGANIZATION ON WHOSE BEHALF YOU ARE ENTERING INTO THIS AGREEMENT ("You") IN RELATION TO SENCHA SOFTWARE GENERALLY MADE AVAILABLE IN SOURCE CODE FORMAT ("Sencha SDKs") AND/OR SENCHA SOFTWARE GENERALLY MADE AVAILABLE IN OBJECT CODE FORMAT ("Sencha Tools"). (The Sencha SDKs and the Sencha Tools are sometimes hereinafter collectively referred to as the "Software".) + + RIGHTS GRANTED HEREIN APPLY ONLY TO SOFTWARE FOR WHICH YOU’VE PAID THE APPLICABLE FEE, WHICH MAY INCLUDE THE FOLLOWING SENCHA SDKs: SENCHA EXT JS, SENCHA GXT, SENCHA EXTREACT, SENCHA TREE GRID, SENCHA PIVOT GRID, SENCHA CHARTS, SENCHA CALENDAR COMPONENT, AND/OR SENCHA D3 ADAPTER; AND/OR THE FOLLOWING SENCHA TOOLS: SENCHA ARCHITECT, SENCHA JETBRAINS PLUG-IN, SENCHA ECLIPSE PLUG-IN, SENCHA VISUAL STUDIO PLUG-IN, SENCHA VISUAL STUDIO CODE PLUG-IN, SENCHA INSPECTOR, SENCHA THEMER, SENCHA STENCILS, SENCHA CMD, AND/OR SENCHA TEST. + + BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING THE SOFTWARE, YOU ACCEPT THE FOLLOWING TERMS AND CONDITIONS. IF YOU DO NOT AGREE WITH ANY OF THE TERMS OR CONDITIONS OF THIS LICENSE AGREEMENT, DO NOT PROCEED WITH THE DOWNLOADING, COPYING, INSTALLATION OR ANY OTHER USE OF THE SOFTWARE OR ANY PORTION THEREOF AS YOU HAVE NO RIGHTS TO DO SO. THE SOFTWARE IS PROTECTED BY UNITED STATES COPYRIGHT LAWS AND INTERNATIONAL COPYRIGHT LAWS, AS WELL AS OTHER INTELLECTUAL PROPERTY LAWS AND TREATIES. THE SOFTWARE IS LICENSED, NOT SOLD. + + THIS LICENSE AGREEMENT DESCRIBES YOUR RIGHTS AND RESTRICTIONS WITH RESPECT TO THE SOFTWARE AND ITS COMPONENTS. + + 1. DEFINITIONS + + "Application" means any software, application, or elements that Your Designated Users develop using the Software or Modifications in accordance with this Agreement; provided that any such Application (i) must have substantially different functionality than the Software, and (ii) must not allow any third party to use the Sencha SDKs or Modifications, or any portion thereof, for software development or application development purposes. + + "Designated User" shall mean a single distinct person for whom You have purchased a license to use the Software, whether such person is an employee acting within the scope of their employment with You or Your consultant or contractor acting within the scope of the services they provide for You. A Designated User can be replaced with a new Designated User only after being a Designated User for a minimum of six (6) months. + + "End User" means an end user of Your Application who acquires a license to such solely for their own internal use and not for distribution, resale, user interface design, or software development purposes. + "Modification" means: a) any addition to or deletion from the contents of a file included in the original Sencha SDKs or previous Modifications created by You, and/or b) any new file that leverages any part of the original Sencha SDKs or previous Modifications. + + "Sample Code" means sample source code included with the Software and designated as "sample code," "samples," "sample application code," "stencils," "app templates," and/or "snippets," and/or found in directories labeled "samples" or "examples". + + 2. LICENSE GRANT + + Subject to the payment of the fee required, and subject to Your compliance with all of the terms and conditions of this Agreement, We grant to You a revocable, non-exclusive, non-transferable and non-sublicensable license (i) for Designated User(s) to use the Software to create Modifications and Applications; (ii) for You to distribute the Sencha SDKs and/or Modifications to End Users solely as integrated into the Applications; and (iii) for End Users to use the Sencha SDKs as integrated into Your Applications in accordance with the terms of this Agreement. + + In addition to the other terms contained herein, and subject to Your compliance with all of the terms and conditions of this Agreement, We grant to You a revocable, non-exclusive, non-transferable and non-sublicensable license to install and use the Software (the "Trial License") strictly for Your internal evaluation and review purposes and not for production purposes. This Trial License applies only if You have registered with Us for a Trial License of the Software and shall be effective for thirty (30) consecutive days following the date of registration ("the Trial Period"). You may only register for a Trial License once in any eighteen month period. You agree not to use a Trial License for any purpose other than determining whether to purchase a license to the Software. You are explicitly not permitted to distribute the Software to any user outside the Organization on whose behalf You have undertaken this license. Your rights to use the Trial License will immediately terminate upon the earlier of (i) the expiration of the Trial Period, or (ii) such time that You purchase a license to the Software. We reserve the right to terminate Your Trial License at any time in Our absolute and sole discretion. + + In addition to the other terms contained herein, in the event You have downloaded or received beta or pre-release versions of the Software (the "Beta Software") from Us, subject to Your compliance with all of the terms and conditions of this Agreement, We grant to You a revocable, non-exclusive, non-transferable and non-sublicensable license to install and use the Beta Software strictly for Your internal evaluation and review purposes and not for production purposes (the "Beta License"). You are explicitly not permitted to distribute the Software to any user outside the Organization on whose behalf You have undertaken this license. Your rights to use the Beta Software will immediately terminate upon the earlier of (i) the expiration of the evaluation period established by Us, or (ii) such time that You purchase a license to a non-evaluation version of the Software. We reserve the right to terminate Your Beta License at any time in Our absolute and sole discretion. + + YOU ACKNOWLEDGE THAT TRIAL AND/OR BETA SOFTWARE MIGHT PLACE WATERMARKS ON OUTPUT, CONTAIN LIMITED FUNCTIONALITY, FUNCTION FOR A LIMITED PERIOD OF TIME, OR LIMIT THE FUNCTIONALITY OR TIME OF FUNCTIONING OF ANY OUTPUT. ACCESS TO AND/OR USE OF ANY FILES OR OUTPUT CREATED WITH SUCH SOFTWARE IS ENTIRELY AT YOUR OWN RISK. WE ARE LICENSING THE SOFTWARE ON AN "AS IS" BASIS AT YOUR OWN RISK AND WE DISCLAIM ANY WARRANTY OR LIABILITY TO YOU OF ANY KIND. + + Subject to the payment of the fee required, You may modify the "Sample Code" solely for the purposes of designing, developing and testing Applications. You are permitted to use, copy and redistribute Your modified Sample Code only if all of the following conditions are met: (a) You include Our copyright notice (if any) with Your Application, including every location in which any other copyright notice appears in such Application; (b) You do not otherwise use Our name, logos or other of Our trademarks to market Your Application, unless otherwise agreed by Us in writing; and (c) each Designated User is duly licensed to use and distribute any of Our products that may be included in an application using and/or generated by the Software. + + 3. OWNERSHIP + + This is a license agreement and not an agreement for sale. We reserve ownership of all intellectual property rights inherent in or relating to the Software, which include, but are not limited to, all copyright, patent rights, all rights in relation to registered and unregistered trademarks (including service marks), confidential information (including trade secrets and know-how) and all rights other than those expressly granted by this Agreement. + + We provide You with source code to the Sencha SDKs so that You can create Modifications and Applications. While You retain all rights to any original work authored by You as part of the Modifications, We continue to own all copyright and other intellectual property rights in the Sencha SDKs. + You must not remove, obscure or interfere with any copyright, acknowledgment, attribution, trademark, warning or disclaimer statement affixed to, incorporated in or otherwise applied in connection with the Software. + + 4. PROHIBITED USES (SENCHA SDKs) + + You may not redistribute the Sencha SDKs or Modifications other than by including the Sencha SDKs or a portion thereof within Your Application. You may not redistribute the Sencha SDKs or Modifications as part of any Application that can be described as a development toolkit or library, an application builder, a website builder a user interface designer, or any application that is intended for use by software, application, or website developers or designers. You may not redistribute any part of the Sencha SDKs documentation. You may not change or remove the copyright notice from any of the files included in the Sencha SDKs or Modifications. + + UNDER NO CIRCUMSTANCES MAY YOU USE THE SENCHA SDKS FOR AN APPLICATION THAT IS INTENDED FOR SOFTWARE OR APPLICATION DEVELOPMENT PURPOSES. + + You are required to ensure that the Sencha SDKs is not reused by or with any applications other than those with which You distribute it as permitted herein. For example, if You install the Sencha SDKs on a customer’s server, that customer is not permitted to use the Sencha SDKs independently of Your Application, and must be informed as such. + + Alternate versions of the Sencha SDKs ("GPL Version") may be licensed under the terms of the GNU General Public License versions 3.0 ("GPL"). If You, or another third party, has, at any time, developed all or any portion of the Application(s) using a GPL Version, You may not combine such work with the Sencha SDKs licensed hereunder, and You must license such application(s) under the terms of the GNU General Public License version 3. + + 5. PROHIBITED USES (SENCHA TOOLS) + + You agree not to sublicense, assign or transfer the Sencha Tools or Your rights in the Sencha Tools, or authorize any portion of the Sencha Tools to be copied onto or accessed from another individual’s or entity’s computer except as may be explicitly provided in this Agreement. Notwithstanding anything to the contrary in this section, You may transfer copies of the Sencha Tools installed on one of Your computers to another one of Your computers provided that the resulting installation and use of the Sencha Tools is in accordance with the terms of this Agreement and does not cause You to exceed Your right to use the Sencha Tools under this Agreement. Except as expressly authorized under this Agreement, You are prohibited from: (a) renting, leasing, lending or granting other rights in the Sencha Tools including rights on a membership or subscription basis; and (b) providing use of the Sencha Tools in a computer service business, third party outsourcing facility or service, service bureau arrangement, network, or time sharing basis. + + You agree not to modify, port, adapt or translate the Sencha Tools. You agree not to reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of the Sencha Tools. You agree not to use any part of the Sencha Tools or Your knowledge of the Sencha Tools (or any information that You learn as a result of Your use of the Sencha Tools) to create a product with the same or substantially the same functionality as the Sencha Tools. The Sencha Tools may include various applications, utilities and components, may support multiple platforms and languages or may be provided to You on multiple media or in multiple copies. Nonetheless, the Sencha Tools is designed and provided to You as a single product to be used as a single product on computers and platforms as permitted herein. You are not required to use all component parts of the Sencha Tools, but You shall not unbundle any component parts of the Sencha Tools for use on different computers. You shall not unbundle or repackage the Sencha Tools for distribution, transfer or resale. + + You agree to use the Software pursuant to the terms and conditions of this Agreement, and not any other terms or conditions unless provided in writing signed by the parties hereto. + + 6. TERMINATION + + This Agreement and Your right to use the Software and Modifications will terminate immediately if You fail to comply with any of the terms and conditions of this Agreement. Upon termination, You agree to immediately cease using and destroy the Software or Modifications, including all accompanying documents. The provisions of sections 3, 4, 5, 6, 7, 8, 10, and 11 will survive any termination of this Agreement. + + A license to Sencha Test or Sencha ExtReact under Section 2 of this Agreement (a "Term License") commences on the date of purchase and continues for an initial term of one (1) year or more, depending on the fee paid (the "Initial Term"). A Term License will automatically terminate at the end of the Initial Term, unless You choose to extend the Term License, subject to Our agreement based on payment of the applicable fees (each such extension is referred to as an "Extension"). The "Term" shall mean the Initial Term as extended by each Extension. Upon the expiration of the Term, the applicable Term Licenses shall terminate automatically, and You shall immediately cease use of Sencha Test and/or development with Sencha ExtReact (as applicable); provided, however, that (i) any license for Your distribution and for End User use of Sencha ExtReact granted in accordance with the terms and conditions hereof shall survive such termination; and (ii) any licenses for use of Sencha Test scripts granted to You in accordance with the terms and conditions hereof shall survive such termination. + + A license to Sencha Ext JS when purchased under the Single Developer Subscription License program (a "Subscription License") commences on the Effective Date and will continue for an initial term of one (1) year (the "Initial Subscription Term"). If You elected a subscription plan with auto-renewals, the Subscription License will automatically renew for successive one (1) year terms (each a "Subscription Renewal") at the then current fee unless either party gives written notice of its intent not to renew at least thirty (30) days prior to the end of the current Subscription Term (as hereinafter defined). If You elected a subscription plan without auto-renewals, the Subscription License will automatically terminate at the end of the Initial Subscription Term, unless You choose to renew the Subscription License, subject to Our written agreement and based on payment of the applicable fees (each such renewal also referred to as a "Subscription Renewal"). "Subscription Term" shall mean the Initial Subscription Term as extended by each Subscription Renewal. Upon the expiration of the Subscription Term, the applicable Subscription Licenses shall terminate automatically, and You shall immediately cease use of Sencha Ext JS under the applicable Subscription License. + + 7. DISCLAIMER OF WARRANTIES + + TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, WE AND OUR RESELLERS DISCLAIM ALL WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE. WE DO NOT GUARANTEE THAT THE OPERATION OF THE SOFTWARE OR THE CODE IT PRODUCES WILL BE UNINTERRUPTED OR ERROR-FREE, AND YOU ACKNOWLEDGE THAT IT IS NOT TECHNICALLY PRACTICABLE FOR US TO DO SO. + + 8. LIMITATION OF LIABILITIES + + IN NO EVENT WILL WE, OUR SUBSIDIARIES, OUR AFFILIATES, OR OUR LICENSORS BE LIABLE TO YOU, WHETHER IN CONTRACT, BY REASON OF NEGLIGENCE OR OTHERWISE, FOR PUNITIVE, CONSEQUENTIAL, EXEMPLARY, INCIDENTAL, OR INDIRECT DAMAGES OR COSTS (INCLUDING LEGAL FEES AND EXPENSES) OR LOSS OF GOODWILL OR PROFIT IN CONNECTION WITH THE SUPPLY, USE OR PERFORMANCE OF OR INABILITY TO USE THE SOFTWARE, OR NON-PERFORMANCE OF ANY OBLIGATIONS PROVIDED HEREUNDER, OR IN CONNECTION WITH ANY CLAIM ARISING FROM THIS AGREEMENT, EVEN IF WE, OUR SUBSIDIARIES, OUR AFFILIATES, OR OUR LICENSORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR COSTS YOU AGREE THAT OUR ENTIRE LIABILITY HEREUNDER FOR DAMAGES SHALL NOT EXCEED THE LESSER OF (I) THE AGGREGATE AMOUNTS PAID OR PAYABLE BY YOU WITHIN THE SIX MONTH PERIOD IMMEDIATELY PRECEEDING THE DATE THE LIABILITY THAT GAVE RISE TO DAMAGES WAS INCURRED; AND TO(II) FIVE HUNDRED DOLLARS ($500). + + 9. VERIFICATION + + We or a certified auditor acting on Our behalf, may, upon Our reasonable request and at Our expense, audit You with respect to the use of the Software. Such audit may be conducted by mail, electronic means or through an in-person visit to Your place of business. Any such in-person audit shall be conducted during regular business hours at Your facilities and shall not unreasonably interfere with Your business activities. We shall not remove, copy, or redistribute any electronic material during the course of an audit. If an audit reveals that You are using the Software in a way that is in material violation of the terms of this Agreement, then You shall pay Our reasonable costs of conducting the audit. In the case of a material violation, You agree to pay Us any amounts owing that are attributable to the unauthorized use. In the alternative, We reserve the right, at Our discretion, to terminate the licenses for the Software, in addition to any other remedies available under law. This Section shall survive expiration or termination of this Agreement for a period of two (2) years. + + 10. PAYMENT AND TAXES + + If credit has been extended to You by Us, all payments under this Agreement are due within thirty (30) days of the date We mail an invoice to You. If We have not extended credit to You, You shall be required to make payment concurrent with the delivery of the Software by Us. Any value added tax, use tax, sales tax or similar tax ("Transaction Taxes") shall be Your sole responsibility. Each party shall pay all taxes (including, but not limited to, taxes based upon its income) or levies imposed on it under applicable laws, regulations and tax treaties as a result of this Agreement and any payments made hereunder (including those required to be withheld or deducted from payments); provided that You shall be responsible for all Transactions Taxes and shall pay or reimburse Us for the same upon invoice. Each party shall furnish evidence of such paid taxes as is sufficient to enable the other party to obtain any credits available to it, including original withholding tax certificates. Notwithstanding the foregoing, Software ordered through Our resellers is subject to the fees and payment terms set forth on the applicable reseller invoice. + + 11. MISCELLANEOUS + + The license granted herein applies only to the version of the Software available when purchased in connection with the terms of this Agreement, and to any updates and/or upgrades to which You may be entitled. Any previous or subsequent license granted to You for use of the Software shall be governed by the terms and conditions of the agreement entered in connection with purchase or download of that version of the Software. Support and maintenance, including rights to updates and upgrades, are provided pursuant to the terms of the Sencha Support and Maintenance Agreement. You agree that You will comply with all applicable laws and regulations with respect to the Software, including without limitation all export and re-export control laws and regulations. + While redistributing the Sencha SDKs or Modifications thereof as part of Your Application, You may choose to offer acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this Agreement. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on our behalf. You shall indemnify Us and our resellers, or at Our option, defend Us and our resellers against any claim, suit or proceeding brought against Us or our resellers (i) arising by reason of Your accepting any such support, warranty, indemnity or additional liability; or (ii) arising out of the use, reproduction or distribution of Your Application, except to the extent such claim is solely based on the inclusion of the Sencha SDKs therein. Further, You agree only to distribute the Sencha SDKs pursuant to an enforceable written agreement for Our benefit that includes all the limitations and restrictions of this Agreement and is as protective of Us and Sencha SDKs as is this Agreement. For clarity, for Sencha SDKs for which You have paid a fee, You must purchase Designated User licenses for each contractor or consultant who uses the Sencha SDKs to create an Application on Your behalf (including system integrators), whether or not such contractor or consultant has its own license to the Sencha SDKs. + + You agree to be identified as a customer of Ours and You agree that We may refer to You by name, trade name and trademark, if applicable, and may briefly describe Your business in our marketing materials and web site. + + You may not assign or transfer this Agreement without Our prior written consent. Any attempted assignment or delegation in violation of this Section shall be null and void. This Agreement may be assigned by Us in whole or part and will inure to the benefit of Our successors and assigns. Notwithstanding the foregoing, in any instance in which You transfer ownership of an Application on a work for hire basis, You may assign licenses for the total Designated Users that have used the Software to develop said Application under this Agreement to another party (Assignee) provided (i) You provide written notice to Us prior to the effective date of such assignment; and (ii) the transfer is in quantities We generally make available to Our customers (minimum 5 Designated Users); and (iii) there is a written agreement, wherein the assignee accepts the terms of this Agreement. Upon any such transfer, the assignee may appoint new Designated Users. For license(s) purchased under our Independent Consultant Program: (i) you represent and warrant that the information you provided to us is true and correct in all material regards, and (ii) notwithstanding any provision herein to the contrary, you may assign any such license(s) to the entity you designated to us as the Client, provided that assignee accepts the terms of this Agreement in connection with the Assignment. On any such assignment, the assignee may change the Designated User. + + This Agreement is the complete and exclusive statement of the mutual understanding of the parties and supersedes and cancels all previous written and oral agreements and communications relating to the subject matter of this Agreement. No oral or written information given by Us, Our resellers, or otherwise on Our behalf shall create a warranty or collateral contract, or in any way increase the scope of this Agreement in any way, and You may not rely on any such oral or written information. Any waivers or amendments shall be effective only if made in writing. Further, any different or additional terms of any related purchase order, confirmation, or similar form shall have no force or effect. The license granted herein is conditioned upon the acceptance of the terms and conditions hereof to the exclusion of all other terms, and no other or additional terms shall apply, unless so provided in writing signed by the parties hereto. You expressly agree by Your use of the Software that no such other, different or additional terms or conditions shall apply, notwithstanding any statements to the contrary included in any purchase order, confirmation, or similar form, and regardless of whether we accept payments referenced therein which shall not constitute acceptance of additional terms and conditions. + + There are no implied licenses or other implied rights granted under this Agreement, and all rights, save for those expressly granted hereunder, shall remain with Us and our licensors. In addition, no licenses or immunities are granted to the combination of the Software and/or Modifications, as applicable, with any other software or hardware not delivered by Us or Our resellers to You under this Agreement. Your rights under this Agreement apply only to Software, Modifications, and/or Applications for which all Designated Users are duly licensed hereunder. + + If any provision in this Agreement shall be determined to be invalid, such provision shall be deemed omitted; the remainder of this Agreement shall continue in full force and effect. If any remedy provided is determined to have failed for its essential purpose, all limitations of liability and exclusions of damages set forth in this Agreement shall remain in effect. The failure of either party to enforce any provision of this Agreement may not be deemed a waiver of that or any other provision of this Agreement. + + This Agreement, and all claims or causes of action that may be based upon, arise out of, or relate to this Agreement and/or the Software shall be governed by the law of the State of Texas, United States (notwithstanding conflicts of laws provisions), and all parties irrevocably submit to the jurisdiction of the state or federal courts of the State of Texas and further agree to commence any litigation which may arise hereunder or related hereto and/or to the Software in the state or federal courts located in the judicial district of Travis County, Texas, US. + + If the Software or any related documentation is licensed to the U.S. Government or any agency thereof, it will be considered to be "commercial computer software" or "commercial computer software documentation," as those terms are used in 48 CFR § 12.212 or 48 CFR § 227.7202, and is being licensed with only those rights as are granted to all other licensees as set forth in this Agreement. + + Sencha Ext JS Bundles: Sencha Ext JS Standard includes Sencha Ext JS (which includes Sencha Tree Grid and Sencha Charts), Sencha Stencils, Sencha Visual Studio Code Plugin, and Sencha Cmd. Sencha Ext JS Pro includes all the Sencha Ext JS Standard Software and Sencha Architect, Sencha JetBrains Plugin, Sencha Eclipse Plugin, Sencha Visual Studio Plugin, and Sencha Themer. Sencha Ext JS Premium includes all the Sencha Ext JS Pro Software and Sencha Pivot Grid, Sencha Inspector, Sencha Calendar Component, Sencha Exporter, and Sencha D3 Adapter. + + Sencha ExtReact Bundles: Sencha ExtReact Standard includes Sencha ExtReact and Sencha Cmd. Sencha ExtReact Premium includes all the Sencha ExtReact Standard Software and Sencha Themer, Sencha Tree Grid, Sencha Pivot Grid, Sencha Calendar Component, Sencha Exporter, and Sencha D3 Adapter. json: sencha-commercial-3.9.json - yml: sencha-commercial-3.9.yml + yaml: sencha-commercial-3.9.yml html: sencha-commercial-3.9.html - text: sencha-commercial-3.9.LICENSE + license: sencha-commercial-3.9.LICENSE - license_key: sencha-dev-floss-exception + category: Copyleft spdx_license_key: LicenseRef-scancode-sencha-dev-floss-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: | + Exception for Development Version 1.04, January 18, 2013 + + Exception Intent + + We want people who build extensions, developer toolkits and frameworks, language packs and themes for Sencha frameworks and libraries to be able to publicly distribute them under less restrictive license terms, even though version 3 of the GNU General Public License (the "GPL") may require them to be licensed under the GPL. + + This Exception does not grant usage or distribution of any Sencha development library under a license other than the GPL and cannot be applied to end-user applications. For applications, please refer to the Open Source License Exception for Applications. + Terms and Conditions + Definitions + + Terms used, but not defined, herein shall have the meaning provided in the GPL. + "Library" means Ext JS, Sencha Touch or Sencha GXT, for which this exception is applicable. + "Code" means source code for the Library or Extension. + "Images" means images distributed with Code. + "Modification" means a visual change or enhancement made to a Library Component ("Component") by means of modifying the standard functionality or visual appearance of the Component. + + + *"Extension" means the combination of Code and Images to form a Modification or a completely new and original Component. + + Additional Grants + + As a special exception to the terms and conditions of version 3.0 of the GPL: + + You are free to distribute an Extension licensed under one or more of the licenses listed below in section 5, as long as: + + Your Extension does not contain any Code or modified Code from the Library. + You do not distribute the Library, as a whole or in part, with your Extension. Optionally, you should include instructions for developers using your Extension explaining how to obtain the Library. + You include PROMINENT notice in EVERY location you display the license information for your Extension that it uses the Library, that the Library is distributed under the terms of the GPL v3 and you must include a link to http://www.sencha.com/license. + Your Extension is distributed subject to one of the FLOSS licenses listed below, and is accompanied by the complete corresponding machine-readable source code on the same medium and under the same FLOSS license as the Extension + Your Extension can reasonably be considered to be adding to or modifying standard functionality of the Library for software development purposes and does not constitute an independent and separate application in itself. + + Applicability + + This exception applies to Ext JS version 2.2 or later, Sencha Touch 1.0 or later and Sencha GXT version 1.0 or later released under the GPL that contain a conspicuous notice with the Derivative Work and conspicuously posted online near any download location, saying that Derivative Works built using the Library may be distributed under the terms of this Exception and that the included Library is subject to the terms of the GPL v3. + + This Exception can in no way be considered to grant rights to use or distribute the Library under any license other than the GPL v3. + Termination + + If you fail to comply with any of the terms in this Exception then all rights granted to you herein are void and your rights immediately revert back to those granted in the GPL v3. + Open Source License List + License name Version(s)/Copyright Date + Academic Free License 2.0 + Apache Software License 2.0 + Apple Public Source License 2.0 + Artistic license From Perl 5.8.0 + BSD license "July 22 1999" + Common Development and Distribution License (CDDL) 1.0 + Common Public License 1.0 + Eclipse Public License 1.0 + Educational Community License 2.0 + European Union Public License (EUPL) 1.1 + GNU General Public License (GPL) 2.0 + GNU Library or "Lesser" General Public License (LGPL) 3.0 + Jabber Open Source License 1.0 + MIT License (As listed in file MIT-License.txt) - + Mozilla Public License (MPL) 1.0/1.1/2.0 + Open Software License 2.0 + OpenSSL license (with original SSLeay license) "2003" ("1998") + PHP License 3.0 + Python license (CNRI Python License) - + Python Software Foundation License 2.1.1 + Sleepycat License "1999" + University of Illinois/NCSA Open Source License - + W3C License "2001" + X11 License "2001" + Zimbra Public License 1.3 + Zlib/libpng License - + Zope Public License 2.0 json: sencha-dev-floss-exception.json - yml: sencha-dev-floss-exception.yml + yaml: sencha-dev-floss-exception.yml html: sencha-dev-floss-exception.html - text: sencha-dev-floss-exception.LICENSE + license: sencha-dev-floss-exception.LICENSE - license_key: sendmail + category: Permissive spdx_license_key: Sendmail other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + SENDMAIL LICENSE + + The following license terms and conditions apply, unless a different + license is obtained from Sendmail, Inc., 6425 Christie Ave, Fourth Floor, + Emeryville, CA 94608, USA, or by electronic mail at license@sendmail.com. + + License Terms: + + Use, Modification and Redistribution (including distribution of any + modified or derived work) in source and binary forms is permitted only if + each of the following conditions is met: + + 1. Redistributions qualify as "freeware" or "Open Source Software" under + one of the following terms: + + (a) Redistributions are made at no charge beyond the reasonable cost of + materials and delivery. + + (b) Redistributions are accompanied by a copy of the Source Code or by an + irrevocable offer to provide a copy of the Source Code for up to three + years at the cost of materials and delivery. Such redistributions + must allow further use, modification, and redistribution of the Source + Code under substantially the same terms as this license. For the + purposes of redistribution "Source Code" means the complete compilable + and linkable source code of sendmail including all modifications. + + 2. Redistributions of source code must retain the copyright notices as they + appear in each source code file, these license terms, and the + disclaimer/limitation of liability set forth as paragraph 6 below. + + 3. Redistributions in binary form must reproduce the Copyright Notice, + these license terms, and the disclaimer/limitation of liability set + forth as paragraph 6 below, in the documentation and/or other materials + provided with the distribution. For the purposes of binary distribution + the "Copyright Notice" refers to the following language: + "Copyright (c) 1998-2004 Sendmail, Inc. All rights reserved." + + 4. Neither the name of Sendmail, Inc. nor the University of California nor + the names of their contributors may be used to endorse or promote + products derived from this software without specific prior written + permission. The name "sendmail" is a trademark of Sendmail, Inc. + + 5. All redistributions must comply with the conditions imposed by the + University of California on certain embedded code, whose copyright + notice and conditions for redistribution are as follows: + + (a) Copyright (c) 1988, 1993 The Regents of the University of + California. All rights reserved. + + (b) Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + (i) Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + (ii) 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. + + (iii) 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. + + 6. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY + SENDMAIL, INC. 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 SENDMAIL, INC., THE REGENTS OF THE UNIVERSITY OF + CALIFORNIA 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 DAMAGES. + + $Revision: 8.13 $, Last updated $Date: 2004/05/11 23:57:57 $ json: sendmail.json - yml: sendmail.yml + yaml: sendmail.yml html: sendmail.html - text: sendmail.LICENSE + license: sendmail.LICENSE - license_key: sendmail-8.23 + category: Copyleft Limited spdx_license_key: Sendmail-8.23 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "SENDMAIL LICENSE \nThe following license terms and conditions apply, unless a redistribution\ + \ agreement or other license is obtained from Proofpoint, Inc., 892 Ross Street, Sunnyvale,\ + \ CA, 94089, USA, or by electronic mail at sendmail-license@proofpoint.com. \n\nLicense\ + \ Terms: \n\nUse, Modification and Redistribution (including distribution of any modified\ + \ or derived work) in source and binary forms is permitted only if each of the following\ + \ conditions is met: \n\n1. Redistributions qualify as \"freeware\" or \"Open Source Software\"\ + \ under one of the following terms:\n\nRedistributions are made at no charge beyond the\ + \ reasonable cost ofmaterials and delivery.\n\nRedistributions are accompanied by a copy\ + \ of the Source Code or by an irrevocable offer to provide a copy of the Source Code for\ + \ up to three years at the cost of materials and delivery. Such redistributions must allow\ + \ further use, modification, and redistribution of the Source Code under substantially the\ + \ same terms as this license. For the purposes of redistribution \"Source Code\" means the\ + \ complete compilable and linkable source code of sendmail and associated libraries and\ + \ utilities in the sendmail distribution including all modifications. \n\n2. Redistributions\ + \ of Source Code must retain the copyright notices as they appear in each Source Code file,\ + \ these license terms, and the disclaimer/limitation of liability set forth as paragraph\ + \ 6 below. \n\n3. Redistributions in binary form must reproduce the Copyright Notice, these\ + \ license terms, and the disclaimer/limitation of liability set forth as paragraph 6 below,\ + \ in the documentation and/or other materials provided with the distribution. For the purposes\ + \ of binary distribution the \"Copyright Notice\" refers to the following language: \"Copyright\ + \ (c) 1998-2014 Proofpoint, Inc. All rights reserved.\" \n\n4. Neither the name of Proofpoint,\ + \ Inc. nor the University of California nor names of their contributors may be used to endorse\ + \ or promote products derived from this software without specific prior written permission.\ + \ The name \"sendmail\" is a trademark of Proofpoint, Inc. \n\n5. All redistributions must\ + \ comply with the conditions imposed by theUniversity of California on certain embedded\ + \ code, which copyrightNotice and conditions for redistribution are as follows:\n\n(a) Copyright\ + \ (c) 1988, 1993 The Regents of the University ofCalifornia. All rights reserved.\n\n(b)\ + \ Redistribution and use in source and binary forms, with or without modification, are permitted\ + \ provided that the following conditions are met:\n\nRedistributions of source code must\ + \ retain the above copyright notice, this list of conditions and the following disclaimer.\n\ + \nRedistributions in binary form must reproduce the abovec opyright notice, this list of\ + \ conditions and the following \ndisclaimer in the documentation and/or other materials\ + \ provided with the distribution.\n\n(c) 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. \n\n6. Disclaimer/Limitation of Liability:\ + \ THIS SOFTWARE IS PROVIDED BY SENDMAIL, INC. 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 SENDMAIL, INC.,\ + \ THE REGENTS OF THE UNIVERSITY OF CALIFORNIA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\ + \ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUTNOT\ + \ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\ + \ OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ONANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\ + \ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF\ + \ THE USE OFTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \n\n$Revision:\ + \ 8.23 $, Last updated $Date: 2014-01-26 20:10:01 $, Document139848.1" json: sendmail-8.23.json - yml: sendmail-8.23.yml + yaml: sendmail-8.23.yml html: sendmail-8.23.html - text: sendmail-8.23.LICENSE + license: sendmail-8.23.LICENSE - license_key: service-comp-arch + category: Permissive spdx_license_key: LicenseRef-scancode-service-comp-arch other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The Service Component Architecture JavaDoc, Interface Definition files, + and XSD files are being provided by the copyright holders under the + following license. By using and/or copying this work, you agree that + you have read, understood and will comply with the following terms and + conditions: + + Permission to copy, display, make derivative works of, and distribute + the Service Component Architecture JavaDoc, Interface Definition Files + and XSD files (the "Artifacts") in any medium without fee or royalty is + hereby granted, provided that you include the following on ALL copies + of the Artifacts, or portions thereof, that you make: + + 1. A link or URL to the Artifacts at this location: + http://www.osoa.org/display/Main/Service+Component+Architecture+Specifications + + 2. The full text of this copyright notice as shown in the Artifacts. + + THE ARTIFACTS ARE PROVIDED "AS IS," AND THE AUTHORS MAKE NO + REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THE + ARTIFACTS AND THE IMPLEMENTATION OF THEIR CONTENTS, INCLUDING, BUT NOT + LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT OR TITLE. + + THE AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, + INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO ANY + USE OR DISTRIBUTION OF THE ARTIFACTS. + + The name and trademarks of the Authors may NOT be used in any manner, + including advertising or publicity pertaining to the Service Component + Architecture Specification or its contents without specific, written + prior permission. Title to copyright in the Service Component + Architecture Specification and the JavaDoc, Interface Definition Files + and XSD Files will at all times remain with the Authors. + + No other rights are granted by implication, estoppel or otherwise. json: service-comp-arch.json - yml: service-comp-arch.yml + yaml: service-comp-arch.yml html: service-comp-arch.html - text: service-comp-arch.LICENSE + license: service-comp-arch.LICENSE - license_key: sfl-license + category: Permissive spdx_license_key: iMatix other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The SFL License Agreement\n\nThis license agreement covers your use of the iMatix STANDARD\ + \ FUNCTION LIBRARY (SFL), its source code, documentation, and executable files, hereinafter\ + \ referred to as \"the Product\".\n\nThe Product is Copyright © 1991-2000 iMatix Corporation.\ + \ You may use it and distribute it according to this following License Agreement. If you\ + \ do not agree with these terms, please remove the Product from your system. By incorporating\ + \ the Product in your work or distributing the Product to others you implicitly agree to\ + \ these license terms.\n\nStatement Of Copyright\n\nThe Product is, and remains, Copyright\ + \ © 1991-2000 iMatix Corporation, with exception of specific copyrights as noted in the\ + \ individual source files.\n\nConditions Of Use\n\nYou do not need to provide the source\ + \ code for the Product as part of your product. However, you must do one of these things\ + \ to comply with the Product License Agreement:\n\n1. Provide the source code for Product\ + \ modules that you use, or\n2. Make your product freely available according to a license\ + \ similar to the GNU General Public License, or the Perl Artistic License, or\n3. Add this\ + \ phrase to the documentation for your product: \"This product uses parts of the iMatix\ + \ SFL, Copyright © 1991-2000 iMatix Corporation \". \n\nRights Of\ + \ Usage\n\nYou may freely and at no cost use the Product in any project, commercial, academic,\ + \ military, or private, so long as you respect the License Agreement. The License Agreement\ + \ does not affect any software except the Product. In particular, any application that uses\ + \ the Product does not itself fall under the License Agreement.\n\nYou may modify any part\ + \ of the Product, including sources and documentation, except this License Agreement, which\ + \ you may not modify.\n\nYou must clearly indicate any modifications at the start of each\ + \ source file. The user of any modified Product code must know that the source file is not\ + \ original.\n\nAt your discretion, you may rewrite or reuse any part of the Product so that\ + \ your derived code is not obviously part of the Product. This derived code does not fall\ + \ under the Product License Agreement directly, but you must include a credit at the start\ + \ of each source file indicating the original authorship and source of the code, and a statement\ + \ of copyright as follows:\n\"Parts copyright (c) 1991-2000 iMatix Corporation.\"\n\nRights\ + \ Of Distribution\n\nYou may freely distribute the Product, or any subset of the Product,\ + \ by any means. The License, in the form of the file called \"LICENSE.TXT\" must accompany\ + \ any such distribution.\n\nYou may charge a fee for distributing the Product, for providing\ + \ a warranty on the Product, for making modifications to the Product, or for any other service\ + \ provided in relation to the Product. You are not required to ask our permission for any\ + \ of these activities.\n\nAt no time will iMatix associate itself with any distribution\ + \ of the Product except that supplied from the Internet site http://www.imatix.com.\n\n\ + Disclaimer Of Warranty\n\nThe Product is provided as free software, in the hope that it\ + \ will be useful. It is provided \"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 Product is with you. Should the Product prove defective, the full cost of repair,\ + \ servicing, or correction lies with you." json: sfl-license.json - yml: sfl-license.yml + yaml: sfl-license.yml html: sfl-license.html - text: sfl-license.LICENSE + license: sfl-license.LICENSE - license_key: sgi-cid-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-sgi-cid-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + CID FONT CODE PUBLIC LICENSE Version 1.0 3/31/99 + + Subject to any applicable third party claims, Silicon Graphics, Inc. ("SGI") + hereby grants permission to Recipient (defined below), under SGI's copyrights + in the Original Software (defined below), to use, copy, modify, merge, pub- + lish, distribute, sublicense and/or sell copies of Subject Software (defined + below) in both source code and executable form, and to permit persons to whom + the Subject Software is furnished in accordance with this License to do the + same, subject to all of the following terms and conditions, which Recipient + accepts by engaging in any such use, copying, modifying, merging, publica- + tion, distributing, sublicensing or selling: + + 1. Definitions. + + a. "Original Software" means source code of computer software code + that is described in Exhibit A as Original Software. + + b. "Modifications" means any addition to or deletion from the sub- + stance or structure of either the Original Software or any previous + Modifications. When Subject Software is released as a series of + files, a Modification means (i) any addition to or deletion from + the contents of a file containing Original Software or previous + Modifications and (ii) any new file that contains any part of the + Original Code or previous Modifications. + + c. "Subject Software" means the Original Software or Modifications + or the combination of the Original Software and Modifications, or + portions of any of the foregoing. + + d. "Recipient" means an individual or a legal entity exercising + rights under the terms of this License. For legal entities, "Recip- + ient" includes any entity that controls, is controlled by, or is + under common control with Recipient. For purposes of this defini- + tion, "control" of an entity means (i) the power, direct or indi- + rect, to direct or manage such entity, or (ii) ownership of fifty + percent (50%) or more of the outstanding shares or beneficial own- + ership of such entity. + + e. "Required Notice" means the notice set forth in Exhibit A to + this License. + + f. "Accompanying Technology" means any software or other technology + that is not a Modification and that is distributed or made publicly + available by Recipient with the Subject Software. Separate soft- + ware files that do not contain any Original Software or any previ- + ous Modification shall not be deemed a Modification, even if such + software files are aggregated as part of a product, or in any + medium of storage, with any file that does contain Original Soft- + ware or any previous Modification. + + 2. License Terms. All distribution of the Subject Software must be made sub- + ject to the terms of this License. A copy of this License and the Required + Notice must be included in any documentation for Subject Software where + Recipient's rights relating to Subject Software and/or any Accompanying Tech- + nology are described. Distributions of Subject Software in source code form + must also include the Required Notice in every file distributed. In addition, + a ReadMe file entitled "Important Legal Notice" must be distributed with each + distribution of one or more files that incorporate Subject Software. That + file must be included with distributions made in both source code and exe- + cutable form. A copy of the License and the Required Notice must be included + in that file. Recipient may distribute Accompanying Technology under a + license of Recipient's choice, which may contain terms different from this + License, provided that (i) Recipient is in compliance with the terms of this + License, (ii) such other license terms do not modify or supersede the terms + of this License as applicable to the Subject Software, (iii) Recipient hereby + indemnifies SGI for any liability incurred by SGI as a result of the distri- + bution of Accompanying Technology or the use of other license terms. + + 3. Termination. This License and the rights granted hereunder will terminate + automatically if Recipient fails to comply with terms herein and fails to + cure such breach within 30 days of the breach. Any sublicense to the Subject + Software that is properly granted shall survive any termination of this + License absent termination by the terms of such sublicense. Provisions which, + by their nature, must remain in effect beyond the termination of this License + shall survive. + + 4. Trademark Rights. This License does not grant any rights to use any trade + name, trademark or service mark whatsoever. No trade name, trademark or ser- + vice mark of SGI may be used to endorse or promote products derived from or + incorporating any Subject Software without prior written permission of SGI. + + 5. No Other Rights. No rights or licenses not expressly granted hereunder + shall arise by implication, estoppel or otherwise. Title to and ownership of + the Original Software at all times remains with SGI. All rights in the Origi- + nal Software not expressly granted under this License are reserved. + + 6. Compliance with Laws; Non-Infringement. Recipient shall comply with all + applicable laws and regulations in connection with use and distribution of + the Subject Software, including but not limited to, all export and import + control laws and regulations of the U.S. government and other countries. + Recipient may not distribute Subject Software that (i) in any way infringes + (directly or contributorily) the rights (including patent, copyright, trade + secret, trademark or other intellectual property rights of any kind) of any + other person or entity, or (ii) breaches any representation or warranty, + express, implied or statutory, which under any applicable law it might be + deemed to have been distributed. + + 7. Claims of Infringement. If Recipient at any time has knowledge of any one + or more third party claims that reproduction, modification, use, distribu- + tion, import or sale of Subject Software (including particular functionality + or code incorporated in Subject Software) infringes the third party's intel- + lectual property rights, Recipient must place in a well-identified web page + bearing the title "LEGAL" a description of each such claim and a description + of the party making each such claim in sufficient detail that a user of the + Subject Software will know whom to contact regarding the claim. Also, upon + gaining such knowledge of any such claim, Recipient must conspicuously + include the URL for such web page in the Required Notice, and in the text of + any related documentation, license agreement or collateral in which Recipient + describes end user's rights relating to the Subject Software. If Recipient + obtains such knowledge after it makes Subject Software available to any other + person or entity, Recipient shall take other steps (such as notifying appro- + priate mailing lists or newsgroups) reasonably calculated to provide such + knowledge to those who received the Subject Software. + + 8. DISCLAIMER OF WARRANTY. SUBJECT SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT + LIMITATION, WARRANTIES THAT THE SUBJECT SOFTWARE IS FREE OF DEFECTS, MER- + CHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. SGI ASSUMES NO + RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE. SHOULD ANY SOFTWARE + PROVE DEFECTIVE IN ANY RESPECT, SGI ASSUMES NO COST OR LIABILITY FOR ANY SER- + VICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN + ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY SUBJECT SOFTWARE IS AUTHORIZED + HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 9. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, + WHETHER TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY), + CONTRACT, OR OTHERWISE, SHALL SGI OR ANY SGI LICENSOR 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 SUBJECT SOFTWARE OR + THE USE OR OTHER DEALINGS IN THE SUBJECT SOFTWARE. SOME JURISDICTIONS DO NOT + ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES, SO THIS EXCLUSION AND + LIMITATION MAY NOT APPLY TO RECIPIENT TO THE EXTENT SO DISALLOWED. + + 10. Indemnity. Recipient shall be solely responsible for damages arising, + directly or indirectly, out of its utilization of rights under this License. + Recipient will defend, indemnify and hold SGI and its successors and assigns + harmless from and against any loss, liability, damages, costs or expenses + (including the payment of reasonable attorneys fees) arising out of (Recipi- + ent's use, modification, reproduction and distribution of the Subject Soft- + ware or out of any representation or warranty made by Recipient. + + 11. U.S. Government End Users. The Subject Software is a "commercial item" + consisting of "commercial computer software" as such terms are defined in + title 48 of the Code of Federal Regulations and all U.S. Government End Users + acquire only the rights set forth in this License and are subject to the + terms of this License. + + 12. Miscellaneous. This License represents the complete agreement concerning + subject matter hereof. If any provision of this License is held to be unen- + forceable by any judicial or administrative authority having proper jurisdic- + tion with respect thereto, such provision shall be reformed so as to achieve + as nearly as possible the same economic effect as the original provision and + the remainder of this License will remain in effect. This License shall be + governed by and construed in accordance with the laws of the United States + and the State of California as applied to agreements entered into and to be + performed entirely within California between California residents. Any liti- + gation relating to this License shall be subject to the exclusive jurisdic- + tion of the Federal Courts of the Northern District of California (or, absent + subject matter jurisdiction in such courts, the courts of the State of Cali- + fornia), with venue lying exclusively in Santa Clara County, California, with + the losing party responsible for costs, including without limitation, court + costs and reasonable attorneys fees and expenses. The application of the + United Nations Convention on Contracts for the International Sale of Goods is + expressly excluded. Any law or regulation that provides that the language of + a contract shall be construed against the drafter shall not apply to this + License. + + Exhibit A + + Copyright (c) 1994-1999 Silicon Graphics, Inc. + + The contents of this file are subject to the CID Font Code Public License + Version 1.0 (the "License"). You may not use this file except in compliance + with the License. You may obtain a copy of the License at Silicon Graphics, + Inc., attn: Legal Services, 2011 N. Shoreline Blvd., Mountain View, CA 94043 + or at http://www.sgi.com/software/opensource/cid/license.html + + Software distributed under the License is distributed on an "AS IS" basis. + ALL WARRANTIES ARE DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED + WARRANTIES OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE OR OF NON- + INFRINGEMENT. See the License for the specific language governing rights and + limitations under the License. + + The Original Software (as defined in the License) is CID font code that was + developed by Silicon Graphics, Inc. Those portions of the Subject Software + (as defined in the License) that were created by Silicon Graphics, Inc. are + Copyright (c) 1994-1999 Silicon Graphics, Inc. All Rights Reserved. json: sgi-cid-1.0.json - yml: sgi-cid-1.0.yml + yaml: sgi-cid-1.0.yml html: sgi-cid-1.0.html - text: sgi-cid-1.0.LICENSE + license: sgi-cid-1.0.LICENSE - license_key: sgi-freeb-1.1 + category: Permissive spdx_license_key: SGI-B-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "SGI FREE SOFTWARE LICENSE B (Version 1.1 [02/22/2000]) \n2.License Grant and Restrictions.\n\ + 2.1.SGI License Grant. Subject to the terms of this License and any third party intellectual\ + \ property claims, for the duration of intellectual property protections inherent in the\ + \ Original Code, SGI hereby grants Recipient a worldwide, royalty-free, non-exclusive license,\ + \ to do the following: (i) under copyrights Licensable by SGI, to reproduce, distribute,\ + \ create derivative works from, and, to the extent applicable, display and perform the Original\ + \ Code and/or any Modifications provided by SGI alone and/or as part of a Larger Work; and\ + \ (ii) under any Licensable Patents, to make, have made, use, sell, offer for sale, import\ + \ and/or otherwise transfer the Original Code and/or any Modifications provided by SGI.\ + \ Recipient accepts the terms and conditions of this License by undertaking any of the aforementioned\ + \ actions. The patent license shall apply to the Covered Code if, at the time any related\ + \ Modification is added, such addition of the Modification causes such combination to be\ + \ covered by the Licensed Patents. The patent license in Section 2.1(ii) shall not apply\ + \ to any other combinations that include the Modification. No patent license is provided\ + \ under SGI Patents for infringements of SGI Patents by Modifications not provided by SGI\ + \ or combinations of Original Code and Modifications not provided by SGI. \n2.2.Recipient\ + \ License Grant. Subject to the terms of this License and any third party intellectual property\ + \ claims, Recipient hereby grants SGI and any other Recipients a worldwide, royalty-free,\ + \ non-exclusive license, under any Recipient Patents, to make, have made, use, sell, offer\ + \ for sale, import and/or otherwise transfer the Original Code and/or any Modifications\ + \ provided by SGI.\n2.3.No License For Hardware Implementations. The licenses granted in\ + \ Section 2.1 and 2.2 are not applicable to implementation in Hardware of the algorithms\ + \ embodied in the Original Code or any Modifications provided by SGI .\n3.Redistributions.\ + \ \n3.1.Retention of Notice/Copy of License. The Notice set forth in Exhibit A, below, must\ + \ be conspicuously retained or included in any and all redistributions of Covered Code.\ + \ For distributions of the Covered Code in source code form, the Notice must appear in every\ + \ file that can include a text comments field; in executable form, the Notice and a copy\ + \ of this License must appear in related documentation or collateral where the Recipient.s\ + \ rights relating to Covered Code are described. Any Additional Notice Provisions which\ + \ actually appears in the Original Code must also be retained or included in any and all\ + \ redistributions of Covered Code.\n3.2.Alternative License. Provided that Recipient is\ + \ in compliance with the terms of this License, Recipient may, so long as without derogation\ + \ of any of SGI.s rights in and to the Original Code, distribute the source code and/or\ + \ executable version(s) of Covered Code under (1) this License; (2) a license identical\ + \ to this License but for only such changes as are necessary in order to clarify Recipient.s\ + \ role as licensor of Modifications; and/or (3) a license of Recipient.s choosing, containing\ + \ terms different from this License, provided that the license terms include this Section\ + \ 3 and Sections 4, 6, 7, 10, 12, and 13, which terms may not be modified or superseded\ + \ by any other terms of such license. If Recipient elects to use any license other than\ + \ this License, Recipient must make it absolutely clear that any of its terms which differ\ + \ from this License are offered by Recipient alone, and not by SGI. It is emphasized that\ + \ this License is a limited license, and, regardless of the license form employed by Recipient\ + \ in accordance with this Section 3.2, Recipient may relicense only such rights, in Original\ + \ Code and Modifications by SGI, as it has actually been granted by SGI in this License.\n\ + 3.3.Indemnity. Recipient hereby agrees to indemnify SGI for any liability incurred by SGI\ + \ as a result of any such alternative license terms Recipient offers.\n4.Termination. This\ + \ License and the rights granted hereunder will terminate automatically if Recipient breaches\ + \ any term herein and fails to cure such breach within 30 days thereof. Any sublicense to\ + \ the Covered Code that is properly granted shall survive any termination of this License,\ + \ absent termination by the terms of such sublicense. Provisions that, by their nature,\ + \ must remain in effect beyond the termination of this License, shall survive.\n5.No Trademark\ + \ Or Other Rights. This License does not grant any rights to: (i) any software apart from\ + \ the Covered Code, nor shall any other rights or licenses not expressly granted hereunder\ + \ arise by implication, estoppel or otherwise with respect to the Covered Code; (ii) any\ + \ trade name, trademark or service mark whatsoever, including without limitation any related\ + \ right for purposes of endorsement or promotion of products derived from the Covered Code,\ + \ without prior written permission of SGI; or (iii) any title to or ownership of the Original\ + \ Code, which shall at all times remains with SGI. All rights in the Original Code not expressly\ + \ granted under this License are reserved. \n6.Compliance with Laws; Non-Infringement. There\ + \ are various worldwide laws, regulations, and executive orders applicable to dispositions\ + \ of Covered Code, including without limitation export, re-export, and import control laws,\ + \ regulations, and executive orders, of the U.S. government and other countries, and Recipient\ + \ is reminded it is obliged to obey such laws, regulations, and executive orders. Recipient\ + \ may not distribute Covered Code that (i) in any way infringes (directly or contributorily)\ + \ any intellectual property rights of any kind of any other person or entity or (ii) breaches\ + \ any representation or warranty, express, implied or statutory, to which, under any applicable\ + \ law, it might be deemed to have been subject.\n7.Claims of Infringement. If Recipient\ + \ learns of any third party claim that any disposition of Covered Code and/or functionality\ + \ wholly or partially infringes the third party's intellectual property rights, Recipient\ + \ will promptly notify SGI of such claim.\n8.Versions of the License. SGI may publish revised\ + \ and/or new versions of the License from time to time, each with a distinguishing version\ + \ number. Once Covered Code has been published under a particular version of the License,\ + \ Recipient may, for the duration of the license, continue to use it under the terms of\ + \ that version, or choose to use such Covered Code under the terms of any subsequent version\ + \ published by SGI. Subject to the provisions of Sections 3 and 4 of this License, only\ + \ SGI may modify the terms applicable to Covered Code created under this License.\n9.DISCLAIMER\ + \ OF WARRANTY. COVERED CODE IS PROVIDED \"AS IS.\" ALL EXPRESS AND IMPLIED WARRANTIES AND\ + \ CONDITIONS ARE DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND CONDITIONS\ + \ OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.\ + \ SGI ASSUMES NO RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE. SHOULD THE SOFTWARE\ + \ PROVE DEFECTIVE IN ANY RESPECT, SGI ASSUMES NO COST OR LIABILITY FOR SERVICING, REPAIR\ + \ OR CORRECTION. THIS DISCLAIMER OF WARRANTY IS AN ESSENTIAL PART OF THIS LICENSE. NO USE\ + \ OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT SUBJECT TO THIS DISCLAIMER.\n10.LIMITATION\ + \ OF LIABILITY. UNDER NO CIRCUMSTANCES NOR LEGAL THEORY, WHETHER TORT (INCLUDING, WITHOUT\ + \ LIMITATION, NEGLIGENCE OR STRICT LIABILITY), CONTRACT, OR OTHERWISE, SHALL SGI OR ANY\ + \ SGI LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL\ + \ DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,\ + \ WORK STOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL\ + \ DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH\ + \ DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL\ + \ INJURY RESULTING FROM SGI's NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION.\ + \ SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL\ + \ DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO RECIPIENT.\n11.Indemnity. Recipient\ + \ shall be solely responsible for damages arising, directly or indirectly, out of its utilization\ + \ of rights under this License. Recipient will defend, indemnify and hold harmless Silicon\ + \ Graphics, Inc. from and against any loss, liability, damages, costs or expenses (including\ + \ the payment of reasonable attorneys fees) arising out of Recipient's use, modification,\ + \ reproduction and distribution of the Covered Code or out of any representation or warranty\ + \ made by Recipient.\n12.U.S. Government End Users. The Covered Code is a \"commercial item\"\ + \ consisting of \"commercial computer software\" as such terms are defined in title 48 of\ + \ the Code of Federal Regulations and all U.S. Government End Users acquire only the rights\ + \ set forth in this License and are subject to the terms of this License.\n13.Miscellaneous.\ + \ This License represents the complete agreement concerning the its subject matter. If any\ + \ provision of this License is held to be unenforceable, such provision shall be reformed\ + \ so as to achieve as nearly as possible the same legal and economic effect as the original\ + \ provision and the remainder of this License will remain in effect. This License shall\ + \ be governed by and construed in accordance with the laws of the United States and the\ + \ State of California as applied to agreements entered into and to be performed entirely\ + \ within California between California residents. Any litigation relating to this License\ + \ shall be subject to the exclusive jurisdiction of the Federal Courts of the Northern District\ + \ of California (or, absent subject matter jurisdiction in such courts, the courts of the\ + \ State of California), with venue lying exclusively in Santa Clara County, California,\ + \ with the losing party responsible for costs, including without limitation, court costs\ + \ and reasonable attorneys fees and expenses. The application of the United Nations Convention\ + \ on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation\ + \ that provides that the language of a contract shall be construed against the drafter shall\ + \ not apply to this License.\nExhibit A\nLicense Applicability. Except to the extent portions\ + \ of this file are made subject to an alternative license as permitted in the SGI Free Software\ + \ License B, Version 1.1 (the \"License\"), the contents of this file are subject only to\ + \ the provisions of the License. You may not use this file except in compliance with the\ + \ License. You may obtain a copy of the License at Silicon Graphics, Inc., attn: Legal Services,\ + \ 1600 Amphitheatre Parkway, Mountain View, CA 94043-1351, or at: \nhttp://oss.sgi.com/projects/FreeB\n\ + Note that, as provided in the License, the Software is distributed on an \"AS IS\" basis,\ + \ with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS DISCLAIMED, INCLUDING, WITHOUT\ + \ LIMITATION, ANY IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY,\ + \ FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.\nOriginal Code. The Original Code\ + \ is: [name of software, version number, and release date], developed by Silicon Graphics,\ + \ Inc. The Original Code is Copyright (c) [dates of first publication, as appearing in the\ + \ Notice in the Original Code] Silicon Graphics, Inc. Copyright in any portions created\ + \ by third parties is as indicated elsewhere herein. All Rights Reserved.\nAdditional Notice\ + \ Provisions: [such additional provisions, if any, as appear in the Notice in the Original\ + \ Code under the heading \"Additional Notice Provisions\"]" json: sgi-freeb-1.1.json - yml: sgi-freeb-1.1.yml + yaml: sgi-freeb-1.1.yml html: sgi-freeb-1.1.html - text: sgi-freeb-1.1.LICENSE + license: sgi-freeb-1.1.LICENSE - license_key: sgi-freeb-2.0 + category: Permissive spdx_license_key: SGI-B-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 including the dates of first publication and + either this permission notice or a reference to + http://oss.sgi.com/projects/FreeB/ 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 SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR + THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of Silicon Graphics, Inc. + shall not be used in advertising or otherwise to promote the sale, use + or other dealings in this Software without prior written authorization + from Silicon Graphics, Inc. json: sgi-freeb-2.0.json - yml: sgi-freeb-2.0.yml + yaml: sgi-freeb-2.0.yml html: sgi-freeb-2.0.html - text: sgi-freeb-2.0.LICENSE + license: sgi-freeb-2.0.LICENSE - license_key: sgi-fslb-1.0 + category: Free Restricted spdx_license_key: SGI-B-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + SGI FREE SOFTWARE LICENSE B + (Version 1.0 1/25/2000) + + 1. Definitions. + 1.1 "Additional Notice Provisions" means such additional provisions as appear in the Notice in Original Code under the heading "Additional Notice Provisions." + 1.2 "API" means an application programming interface established by SGI in conjunction with the Original Code. + 1.3 "Covered Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. + 1.4 "Hardware" means any physical device that accepts input, processes input, stores the results of processing, and/or provides output. + 1.5 "Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. + 1.6 "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. + 1.7 "License" means this document. + 1.8 "Modifications" means any addition to the substance or structure of the Original Code and/or any addition to or deletion from previous Modifications. When Covered Code is released as a series of files, a Modification is: + A. Any addition to the contents of a file containing Original Code and/or any addition to or deletion from previous Modifications. + B. Any new file that contains any part of the Original Code or previous Modifications. + 1.9 "Notice" means any notice in Original Code or Covered Code, as required by and in compliance with this License. + 1.10 "Original Code" means source code of computer software code which is described in the source code Notice required by Exhibit A as Original Code, and updates and error corrections specifically thereto. + 1.11 "Recipient" means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 8. For legal entities, "Recipient" includes any entity which controls, is controlled by, or is under common control with Recipient. For purposes of this definition, "control" of an entity means (a) the power, direct or indirect, to direct or manage such entity, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. + 1.12 SGI" means Silicon Graphics, Inc. + 2. License Grant and Restrictions. + 2.1 License Grant. Subject to the provisions of this License and any third party intellectual property claims, for the duration of intellectual property protections inherent in the Original Code, SGI hereby grants Recipient a worldwide, royalty-free, non-exclusive license, to do the following: (i) under copyrights Licensable by SGI, to reproduce, distribute, create derivative works from, and, to the extent applicable, display and perform the Original Code alone and/or as part of a Larger Work; and (ii) under any patent claims Licensable by SGI and embodied in the Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code. Recipient accepts the terms and conditions of this License by undertaking any of the aforementioned actions. + 2.2 Restriction on Patent License. Notwithstanding the provisions of Section 2.1(ii), no patent license is granted: 1) separate from the Original Code; nor 2) for infringements caused by (i) modification of the Original Code, or (ii) the combination of the Original Code with other software or Hardware. + 2.3 No License For Hardware Implementations. The licenses granted in Section 2.1 are not applicable to implementation in Hardware of the algorithms embodied in the Original Code. + 2.4 Modifications License and API Compliance. Modifications are only licensed under Section 2.1(i) to the extent such Modifications are fully compliant with any API as may be identified in Additional Notice Provisions as appear in the Original Code. + 3. Redistributions. + A. Retention of Notice/Copy of License. The Notice set forth in Exhibit A, below, must be conspicuously retained or included in any and all redistributions of Covered Code. For distributions of the Covered Code in source code form, the Notice must appear in every file that can include a text comments field; in executable form, the Notice and a copy of this License must appear in related documentation or collateral where the Recipient's rights relating to Covered Code are described. Any Additional Notice Provisions which actually appears in the Original Code must also be retained or included in any and all redistributions of Covered Code. + B. Alternative License. Provided that Recipient is in compliance with the terms of this License, Recipient may distribute the source code and/or executable version(s) of Covered Code under (1) this License; (2) a license identical to this License but for only such changes as are necessary in order to clarify Recipient's role as licensor of Modifications, without derogation of any of SGI's rights; and/or (3) a license of Recipient's choosing, containing terms different from this License, provided that the license terms include this Section 3 and Sections 4, 6, 7, 10, 12, and 13, which terms may not be modified or superseded by any other terms of such license. If Recipient elects to use any license other than this License, Recipient must make it absolutely clear that any of its terms which differ from this License are offered by Recipient alone, and not by SGI. + C. Indemnity. Recipient hereby agrees to indemnify SGI for any liability incurred by SGI as a result of any such alternative license terms Recipient offers. + 4. Termination. This License and the rights granted hereunder will terminate automatically if Recipient breaches any term herein and fails to cure such breach within 30 days thereof. Any sublicense to the Covered Code that is properly granted shall survive any termination of this License, absent termination by the terms of such sublicense. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. + 5. No Trademark Or Other Rights. This License does not grant any rights to: (i) any software apart from the Covered Code, nor shall any other rights or licenses not expressly granted hereunder arise by implication, estoppel or otherwise with respect to the Covered Code; (ii) any trade name, trademark or service mark whatsoever, including without limitation any related right for purposes of endorsement or promotion of products derived from the Covered Code, without prior written permission of SGI; or (iii) any title to or ownership of the Original Code, which shall at all times remains with SGI. All rights in the Original Code not expressly granted under this License are reserved. + 6. Compliance with Laws; Non-Infringement. Recipient hereby assures that it shall comply with all applicable laws, regulations, and executive orders, in connection with any and all dispositions of Covered Code, including but not limited to, all export, re-export, and import control laws, regulations, and executive orders, of the U.S. government and other countries. Recipient may not distribute Covered Code that (i) in any way infringes (directly or contributorily) the rights (including patent, copyright, trade secret, trademark or other intellectual property rights of any kind) of any other person or entity or (ii) breaches any representation or warranty, express, implied or statutory, to which, under any applicable law, it might be deemed to have been subject. + 7. Claims of Infringement. If Recipient learns of any third party claim that any disposition of Covered Code and/or functionality wholly or partially infringes the third party's intellectual property rights, Recipient will promptly notify SGI of such claim. + 8. Versions of the License. SGI may publish revised and/or new versions of the License from time to time, each with a distinguishing version number. Once Covered Code has been published under a particular version of the License, Recipient may, for the duration of the license, continue to use it under the terms of that version, or choose to use such Covered Code under the terms of any subsequent version published by SGI. Subject to the provisions of Sections 3 and 4 of this License, only SGI may modify the terms applicable to Covered Code created under this License. + 9. DISCLAIMER OF WARRANTY. COVERED CODE IS PROVIDED "AS IS." ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS ARE DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. SGI ASSUMES NO RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE. SHOULD THE SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, SGI ASSUMES NO COST OR LIABILITY FOR SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY IS AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT SUBJECT TO THIS DISCLAIMER. + 10. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES NOR LEGAL THEORY, WHETHER TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY), CONTRACT, OR OTHERWISE, SHALL SGI OR ANY SGI LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SGI's NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO RECIPIENT. + 11. Indemnity. Recipient shall be solely responsible for damages arising, directly or indirectly, out of its utilization of rights under this License. Recipient will defend, indemnify and hold harmless Silicon Graphics, Inc. from and against any loss, liability, damages, costs or expenses (including the payment of reasonable attorneys fees) arising out of Recipient's use, modification, reproduction and distribution of the Covered Code or out of any representation or warranty made by Recipient. + 12. U.S. Government End Users. The Covered Code is a "commercial item" consisting of "commercial computer software" as such terms are defined in title 48 of the Code of Federal Regulations and all U.S. Government End Users acquire only the rights set forth in this License and are subject to the terms of this License. + 13. Miscellaneous. This License represents the complete agreement concerning the its subject matter. If any provision of this License is held to be unenforceable, such provision shall be reformed so as to achieve as nearly as possible the same legal and economic effect as the original provision and the remainder of this License will remain in effect. This License shall be governed by and construed in accordance with the laws of the United States and the State of California as applied to agreements entered into and to be performed entirely within California between California residents. Any litigation relating to this License shall be subject to the exclusive jurisdiction of the Federal Courts of the Northern District of California (or, absent subject matter jurisdiction in such courts, the courts of the State of California), with venue lying exclusively in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. json: sgi-fslb-1.0.json - yml: sgi-fslb-1.0.yml + yaml: sgi-fslb-1.0.yml html: sgi-fslb-1.0.html - text: sgi-fslb-1.0.LICENSE + license: sgi-fslb-1.0.LICENSE - license_key: sgi-glx-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-sgi-glx-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + GLX PUBLIC LICENSE Version 1.0 2/11/99 License + + Subject to any third party claims, Silicon Graphics, Inc. ("SGI") hereby + grants permission to Recipient (defined below), under Recipient's copyrights + in the Original Software (defined below), to use, copy, modify, merge, pub- + lish, distribute, sublicense and/or sell copies of Subject Software (defined + below), and to permit persons to whom the Subject Software is furnished in + accordance with this License to do the same, subject to all of the following + terms and conditions, which Recipient accepts by engaging in any such use, + copying, modifying, merging, publishing, distributing, sublicensing or sell- + ing: + + 1. Definitions. + + (a) "Original Software" means source code of computer software code + which is described in Exhibit A as Original Software. + + (b) "Modifications" means any addition to or deletion from the sub- + stance or structure of either the Original Software or any previous + Modifications. When Subject Software is released as a series of + files, a Modification means (i) any addition to or deletion from + the contents of a file containing Original Software or previous + Modifications and (ii) any new file that contains any part of the + Original Code or previous Modifications. + + (c) "Subject Software" means the Original Software or Modifications + or the combination of the Original Software and Modifications, or + portions of any of the foregoing. + + (d) "Recipient" means an individual or a legal entity exercising + rights under, and complying with all of the terms of, this License. + For legal entities, "Recipient" includes any entity which controls, + is controlled by, or is under common control with Recipient. For + purposes of this definition, "control" of an entity means (a) the + power, direct or indirect, to direct or manage such entity, or (b) + ownership of fifty percent (50%) or more of the outstanding shares + or beneficial ownership of such entity. + + 2. Redistribution of Source Code Subject to These Terms. Redistributions of + Subject Software in source code form must retain the notice set forth in + Exhibit A, below, in every file. A copy of this License must be included in + any documentation for such Subject Software where the recipients' rights + relating to Subject Software are described. Recipient may distribute the + source code version of Subject Software under a license of Recipient's + choice, which may contain terms different from this License, provided that + (i) Recipient is in compliance with the terms of this License, and (ii) the + license terms include this Section 2 and Sections 3, 4, 7, 8, 10, 12 and 13 + of this License, which terms may not be modified or superseded by any other + terms of such license. If Recipient distributes the source code version under + a different license Recipient must make it absolutely clear that any terms + which differ from this License are offered by Recipient alone, not by SGI. + Recipient hereby agrees to indemnify SGI for any liability incurred by SGI as + a result of any such terms Recipient offers. + + 3. Redistribution in Executable Form. The notice set forth in Exhibit A must + be conspicuously included in any notice in an executable version of Subject + Software, related documentation or collateral in which Recipient describes + the user's rights relating to the Subject Software. Recipient may distribute + the executable version of Subject Software under a license of Recipient's + choice, which may contain terms different from this License, provided that + (i) Recipient is in compliance with the terms of this License, and (ii) the + license terms include this Section 3 and Sections 4, 7, 8, 10, 12 and 13 of + this License, which terms may not be modified or superseded by any other + terms of such license. If Recipient distributes the executable version under + a different license Recipient must make it absolutely clear that any terms + which differ from this License are offered by Recipient alone, not by SGI. + Recipient hereby agrees to indemnify SGI for any liability incurred by SGI as + a result of any such terms Recipient offers. + + 4. Termination. This License and the rights granted hereunder will terminate + automatically if Recipient fails to comply with terms herein and fails to + cure such breach within 30 days of the breach. Any sublicense to the Subject + Software which is properly granted shall survive any termination of this + License absent termination by the terms of such sublicense. Provisions which, + by their nature, must remain in effect beyond the termination of this License + shall survive. + + 5. No Trademark Rights. This License does not grant any rights to use any + trade name, trademark or service mark whatsoever. No trade name, trademark or + service mark of SGI may be used to endorse or promote products derived from + the Subject Software without prior written permission of SGI. + + 6. No Other Rights. This License does not grant any rights with respect to + the OpenGL API or to any software or hardware implementation thereof or to + any other software whatsoever, nor shall any other rights or licenses not + expressly granted hereunder arise by implication, estoppel or otherwise with + respect to the Subject Software. Title to and ownership of the Original Soft- + ware at all times remains with SGI. All rights in the Original Software not + expressly granted under this License are reserved. + + 7. Compliance with Laws; Non-Infringement. Recipient shall comply with all + applicable laws and regulations in connection with use and distribution of + the Subject Software, including but not limited to, all export and import + control laws and regulations of the U.S. government and other countries. + Recipient may not distribute Subject Software that (i) in any way infringes + (directly or contributorily) the rights (including patent, copyright, trade + secret, trademark or other intellectual property rights of any kind) of any + other person or entity or (ii) breaches any representation or warranty, + express, implied or statutory, which under any applicable law it might be + deemed to have been distributed. + + 8. Claims of Infringement. If Recipient at any time has knowledge of any one + or more third party claims that reproduction, modification, use, distribu- + tion, import or sale of Subject Software (including particular functionality + or code incorporated in Subject Software) infringes the third party's intel- + lectual property rights, Recipient must place in a well-identified web page + bearing the title "LEGAL" a description of each such claim and a description + of the party making each such claim in sufficient detail that a user of the + Subject Software will know whom to contact regarding the claim. Also, upon + gaining such knowledge of any such claim, Recipient must conspicuously + include the URL for such web page in the Exhibit A notice required under Sec- + tions 2 and 3, above, and in the text of any related documentation, license + agreement or collateral in which Recipient describes end user's rights relat- + ing to the Subject Software. If Recipient obtains such knowledge after it + makes Subject Software available to any other person or entity, Recipient + shall take other steps (such as notifying appropriate mailing lists or news- + groups) reasonably calculated to inform those who received the Subject Soft- + ware that new knowledge has been obtained. + + 9. DISCLAIMER OF WARRANTY. SUBJECT SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT + LIMITATION, WARRANTIES THAT THE SUBJECT SOFTWARE IS FREE OF DEFECTS, MER- + CHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON- INFRINGING. SGI ASSUMES NO + RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE. SHOULD ANY SOFTWARE + PROVE DEFECTIVE IN ANY RESPECT, SGI ASSUMES NO COST OR LIABILITY FOR ANY SER- + VICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN + ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY SUBJECT SOFTWARE IS AUTHORIZED + HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 10. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THE- + ORY, WHETHER TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIA- + BILITY), CONTRACT, OR OTHERWISE, SHALL SGI OR ANY SGI LICENSOR BE LIABLE FOR + ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY + CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK + STOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER + COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF + THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY + TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SGI's NEGLIGENCE TO + THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO + NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, + SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO RECIPIENT. + + 11. Indemnity. Recipient shall be solely responsible for damages arising, + directly or indirectly, out of its utilization of rights under this License. + Recipient will defend, indemnify and hold harmless Silicon Graphics, Inc. + from and against any loss, liability, damages, costs or expenses (including + the payment of reasonable attorneys fees) arising out of Recipient's use, + modification, reproduction and distribution of the Subject Software or out of + any representation or warranty made by Recipient. + + 12. U.S. Government End Users. The Subject Software is a "commercial item" + consisting of "commercial computer software" as such terms are defined in + title 48 of the Code of Federal Regulations and all U.S. Government End + Users acquire only the rights set forth in this License and are subject to + the terms of this License. + + 13. Miscellaneous. This License represents the complete agreement concerning + subject matter hereof. If any provision of this License is held to be unen- + forceable, such provision shall be reformed so as to achieve as nearly as + possible the same economic effect as the original provision and the remainder + of this License will remain in effect. This License shall be governed by and + construed in accordance with the laws of the United States and the State of + California as applied to agreements entered into and to be performed entirely + within California between California residents. Any litigation relating to + this License shall be subject to the exclusive jurisdiction of the Federal + Courts of the Northern District of California (or, absent subject matter + jurisdiction in such courts, the courts of the State of California), with + venue lying exclusively in Santa Clara County, California, with the losing + party responsible for costs, including without limitation, court costs and + reasonable attorneys fees and expenses. The application of the United Nations + Convention on Contracts for the International Sale of Goods is expressly + excluded. Any law or regulation which provides that the language of a con- + tract shall be construed against the drafter shall not apply to this License. + + Exhibit A + + The contents of this file are subject to Sections 2, 3, 4, 7, 8, 10, 12 and + 13 of the GLX Public License Version 1.0 (the "License"). You may not use + this file except in compliance with those sections of the License. You may + obtain a copy of the License at Silicon Graphics, Inc., attn: Legal Services, + 2011 N. Shoreline Blvd., Mountain View, CA 94043 or at + http://www.sgi.com/software/opensource/glx/license.html. + + Software distributed under the License is distributed on an "AS IS" basis. + ALL WARRANTIES ARE DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED + WARRANTIES OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE OR OF NON- + INFRINGEMENT. See the License for the specific language governing rights and + limitations under the License. + + The Original Software is GLX version 1.2 source code, released February, + 1999. The developer of the Original Software is Silicon Graphics, Inc. Those + portions of the Subject Software created by Silicon Graphics, Inc. are Copy- + right (c) 1991-9 Silicon Graphics, Inc. All Rights Reserved. json: sgi-glx-1.0.json - yml: sgi-glx-1.0.yml + yaml: sgi-glx-1.0.yml html: sgi-glx-1.0.html - text: sgi-glx-1.0.LICENSE + license: sgi-glx-1.0.LICENSE - license_key: sglib + category: Permissive spdx_license_key: LicenseRef-scancode-sglib other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Basically, I only care that you do not remove the Copyright notice from the + source code when using Sglib. + + More precisely: you can use Sglib or its derivative forms (under the condition + that the Copyright notice is preserved) in any project, whether commercial or + not, free of charges. In particular, you can use Sglib under the terms of any + license defined as an open source license by the Open Source Initiative + (see http://www.opensource.org/). This includes most common open source licenses + such as the BSD license and GNU GPL. + + If you need to use sglib under any particular license conditions, contact the + author. json: sglib.json - yml: sglib.yml + yaml: sglib.yml html: sglib.html - text: sglib.LICENSE + license: sglib.LICENSE - license_key: shavlik-eula + category: Commercial spdx_license_key: LicenseRef-scancode-shavlik-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Shavlik Technologies, LLC\nEND USER LICENSE AGREEMENT\nCAREFULLY READ THE FOLLOWING\ + \ TERMS AND CONDITIONS BEFORE LOADING THE SOFTWARE. THIS \nAGREEMENT GOVERNS THE USE OF\ + \ THE PRODUCT (AS DEFINED BELOW). BY CLICKING \"I ACCEPT\" \nBELOW, OR BY INSTALLING, COPYING,\ + \ OR OTHERWISE USING THE PRODUCT, YOU ARE SIGNING THIS \nAGREEMENT, THEREBY BECOMING BOUND\ + \ BY ITS TERMS. BY INDICATING YOUR AGREEMENT, YOU ALSO \nREPRESENT AND WARRANT THAT YOU\ + \ ARE A DULY AUTHORIZED REPRESENTATIVE OF THE ENTITY THAT \nHAS PURCHASED THE SOFTWARE AND\ + \ THAT YOU HAVE THE RIGHT AND AUTHORITY TO ENTER INTO \nTHIS AGREEMENT ON THE ENTITY’S BEHALF.\ + \ IF YOU DO NOT AGREE WITH THIS AGREEMENT, THEN \nCLICK \"I DO NOT ACCEPT\" BELOW OR DO\ + \ NOT INSTALL, COPY OR USE THE PRODUCT.\n\n1. License.\nSubject to the terms and conditions\ + \ of this Agreement, Shavlik Technologies, LLC (\"Shavlik\") grants to \nthe individual\ + \ or entity installing this product (\"Licensee\"), a non-exclusive, non-transferable license\ + \ to \nuse the software, together with any updates and data components provided to Licensee\ + \ under a current \nSoftware Support Services Agreement, and any accompanying documentation\ + \ provided by Shavlik \n(collectively, the \"Product\"), solely for Licensee’s internal\ + \ business purposes and only in as many copies \nand/or for the number of virtual or physical\ + \ workstations, PCs, servers, and/or other devices scanned, \nremediated, or reported on\ + \ using the Software (\"Seats\") as authorized by Shavlik as part of Licensee’s \npurchase.\ + \ The Product may require a maintainable data component. Licensee shall have access to the\ + \ \nmaintainable data component so long as Licensee purchases and maintains a current Software\ + \ Support \nServices Agreement.\n\n2. Limitations on Use.\nLicensee shall not, nor cause\ + \ or permit any other person to: (i) reverse engineer, translate, disassemble, \ndecompile,\ + \ sell, rent, lease, manufacture, adapt, create derivative works from, or otherwise modify\ + \ or \ndistribute the Product or any part thereof; (ii) copy, in whole or in part, the Product\ + \ with the exception \nof one copy of the Product for backup or archival purposes; (iii)\ + \ use the Product to provide consulting \nor other services to third parties; or (iv) delete\ + \ any copyright, trademark, patent or other notices of \nproprietary rights of Shavlik as\ + \ they appear anywhere in or on the Product.\n\n3. Proprietary Rights.\nAll intellectual\ + \ property rights including trademarks, service marks, patents, copyrights, trade secrets,\ + \ \nand other proprietary rights in or related to the Product is and will remain the property\ + \ of Shavlik or its \nlicensors, whether or not specifically recognized or protected under\ + \ local law. Product may include third \nparty products. Please read our accompanying documentation\ + \ for further information.4. No Warranty.\nShavlik does not warrant that the functions contained\ + \ in the Product will meet Licensee’s requirements \nor that operation of the program will\ + \ be uninterrupted or error-free. The entire risk as to the results \nand performance of\ + \ the Product is assumed by Licensee. THE PRODUCT IS FURNISHED \"AS IS\" \nWITHOUT ANY WARRANTY\ + \ OF ANY KIND, AND SHAVLIK AND ITS LICENSORS HEREBY DISCLAIM \nALL WARRANTIES, EXPRESS,\ + \ IMPLIED OR STATUTORY IN RESPECT OF THE PRODUCT INCLUDING, \nWITHOUT LIMITATION, ALL IMPLIED\ + \ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A \nPARTICULAR PURPOSE, AND ANY WARRANTIES\ + \ AS TO NON-INFRINGEMENT. SOME STATES AND \nCOUNTRIES DO NOT ALLOW THE EXCLUSION OF IMPLIED\ + \ WARRANTIES, SOME OF THE ABOVE \nEXCLUSION MAY NOT APPLY TO LICENSEE. THIS WARRANTY GIVES\ + \ LICENSEE SPECIFIC LEGAL \nRIGHTS. LICENSEE MAY HAVE OTHER RIGHTS WHICH VARY BY STATE OR\ + \ COUNTRY.\n\n5. LIMITATION OF LIABILITY.\nIN NO EVENT SHALL SHAVLIK OR ITS LICENSORS BE\ + \ LIABLE FOR ANY LOST REVENUE, PROFIT, \nOR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL,\ + \ INCIDENTAL, EXEMPLARY OR OTHER \nDAMAGES HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF\ + \ LIABILITY, ARISING OUT OF \nTHE USE OF OR INABILITY TO USE THE PRODUCT EVEN IF SHAVLIK\ + \ HAS BEEN ADVISED OF THE \nPOSSIBILITY OF SUCH LOSS OR DAMAGES. IN NO EVENT SHALL SHAVLIK’S\ + \ TOTAL LIABILITY TO \nLICENSEE, WHETHER IN CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE,\ + \ EXCEED \nTHE AMOUNT OF ANY LICENSE FEE PAID BY LICENSEE TO SHAVLIK FOR THE PRODUCT.\n\n\ + 6. Term and Termination.\nThis Agreement is effective upon installation of the Product and\ + \ will remain in effect until terminated. \nShavlik may terminate this Agreement immediately\ + \ if Licensee fails to comply with any provision of this \nAgreement. Upon termination,\ + \ Licensee agrees to destroy the original and all copies of the Product in \nits possession\ + \ or control, and erase all copies residing on any computer equipment. Sections 3, 4, 5,\ + \ 6, 7, \nand 9 shall survive termination of this Agreement.\n\n7. Export Control and Government\ + \ Use.\nLicensee agrees to comply with all applicable United States export control laws\ + \ and regulations, as \namended from time to time, including without limitation, the laws\ + \ and regulations administered by the \nUnited States Department of Commerce and the United\ + \ States Department of State. Licensee shall \nnot export, import or transfer the Product\ + \ contrary to U.S. or other applicable laws, whether directly or \nindirectly, and will\ + \ not cause, approve or otherwise facilitate others such as agents or any third parties\ + \ \nin doing so. Any Product acquired by or on behalf of a unit or agency of the United\ + \ States Government \nis \"commercial computer software\" or \"commercial computer software\ + \ documentation\" and, absent a \nwritten agreement to the contrary, the Government’s rights\ + \ with respect to such software or \ndocumentation are limited by the terms of this Agreement,\ + \ pursuant to FAR § 12.212(a) and its successor \nregulations and/or DFARS § 227.7202-1(a)\ + \ and its successor regulations, as applicable.\n\n8. Open Source Software.\nThe Product\ + \ includes or may include some software programs that are licensed (or sublicensed) to the\ + \ \nuser under the GNU General Public License (GPL) or other similar software licenses (\"\ + Free Software \nLicenses\") which, among other rights, permit the user to copy, modify and\ + \ redistribute certain programs, \nor portions thereof, and have access to the source code.\ + \ The GPL requires that for any software covered \nunder the GPL, which is distributed to\ + \ someone in an executable binary format that the source code also \nbe made available to\ + \ those users. For any such software, the source code shall be made available to you \n\ + upon request.\n\n9. General.\nThis Agreement and any dispute arising from or relating to\ + \ it shall be governed by and construed \nand enforced in accordance with Minnesota law,\ + \ without reference to conflicts of laws principles, and \nexcluding the UN Convention on\ + \ Contracts for the International Sale of Goods. Any legal action or \nproceeding shall\ + \ be instituted in a state or federal court in Hennepin County, Minnesota, USA. Any \nwaiver\ + \ of or modification to the terms of this Agreement will not be effective unless executed\ + \ in writing \nand signed by Shavlik. If any provision of this Agreement is held to be unenforceable,\ + \ in whole or in \npart, such holding shall not affect the validity of the other provisions\ + \ of this Agreement. Licensee may \nnot assign this Agreement or any associated transactions\ + \ without the written consent of Shavlik. This \nAgreement constitutes the complete agreement\ + \ between the parties and supersedes all prior or \ncontemporaneous agreements or representations,\ + \ written or oral, concerning the subject matter of this \nAgreement including any purchase\ + \ order or ordering document.\n\nShould you have any questions concerning the Product or\ + \ this License, contact Shavlik Technologies, \nLLC, 2665 Long Lake Road, Suite 400, Roseville,\ + \ Minnesota 55113 Telephone: +1 (800) 690 6911 or +1 (651) \n426-6624; fax: (651) 426-3345;\ + \ e-mail: info@shavlik.com\nSHAVLIK EULA #H4Q2 VERSION 2.3" json: shavlik-eula.json - yml: shavlik-eula.yml + yaml: shavlik-eula.yml html: shavlik-eula.html - text: shavlik-eula.LICENSE + license: shavlik-eula.LICENSE - license_key: shital-shah + category: Permissive spdx_license_key: LicenseRef-scancode-shital-shah other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "You may freely copy, store, distribute and use any material published on this\nsite\ + \ free of charge and without my explicit permission, provided anyone else\ndoesn't owns\ + \ copyright for it or no notice has been put explicitly stating\notherwise. All programs\ + \ available on this website, unless stated otherwise, can\nbe freely copied, stored or redistributed\ + \ with or without your own custom\nalterations. You are not required to take my explicit\ + \ permission or retain\noriginal copyright notice. If you are redistributing any other material\ + \ except\nprograms available on this website, you may not alter or distort the content\n\ + and you must acknowledge the original copyright notice in your redistribution.\n\nTerms\ + \ of Use\nYou use any information, facts, opinions, views, material or programs available\n\ + on this website at completely your risks. There are no explicit or implicit \nwarrenties\ + \ of any kind for any information, facts, opinions, views, material or \nprograms that are\ + \ expressed or available on or through this website. You \ncompletely assume any and all\ + \ risks and associated liabilities that might result \nby usage of any information, facts,\ + \ opinions, views, material or programs \navailable on this website.\n\nDisclaimer\nThe\ + \ views expressed on this website are solely mine and does not represent that \nof my employer\ + \ or my clients.This is my official personaebsite. Most content and \nprograms available\ + \ on this website are original and authored by myself, unless \notherwise noted. If you\ + \ feel credit due to someone is not given or if any \ncopyright laws are violated or object\ + \ to certain content on this website, please\nfeel free to write to me and let me know." json: shital-shah.json - yml: shital-shah.yml + yaml: shital-shah.yml html: shital-shah.html - text: shital-shah.LICENSE + license: shital-shah.LICENSE - license_key: shl-0.5 + category: Permissive spdx_license_key: SHL-0.5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + SOLDERPAD HARDWARE LICENSE version 0.5 + + This license is based closely on the Apache License Version 2.0, but is not approved or endorsed by the Apache Foundation. A copy of the non-modified Apache License 2.0 can be found at http://www.apache.org/licenses/LICENSE-2.0. + + + + As this license is not currently OSI or FSF approved, the Licensor permits any Work licensed under this License, at the option of the Licensee, to be treated as licensed under the Apache License Version 2.0 (which is so approved). + + + + This License is licensed under the terms of this License and in particular clause 7 below (Disclaimer of Warranties) applies in relation to its use. + + + + 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 Rights owner or entity authorized by the Rights 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. + + + + "Rights" means copyright and any similar right including design right (whether registered or unregistered), semiconductor topography (mask) rights and database extraction rights (but excluding Patents and Trademarks). + + + + "Source" form shall mean the preferred form for making modifications, including but not limited to source code, net lists, board layouts, CAD files, 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, the instantiation of a hardware design and conversions to other media types, including intermediate forms such as bytecodes, FPGA bitstreams, artwork and semiconductor topographies (mask works). + + + + "Work" shall mean the work of authorship, whether in Source form or other Object form, made available under the License, as indicated by a Rights 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) or physically connect to or interoperate with the interfaces of, the Work and Derivative Works thereof. + + + + "Contribution" shall mean any design or 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 Rights owner or by an individual or Legal Entity authorized to submit on behalf of the Rights 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 Rights 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 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 license under the Rights to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form and do anything in relation to the Work as if the Rights did not exist. + + + + 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + + + + 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + + + You must give any other recipients of the Work or Derivative Works a copy of this License; and + + + + You must cause any modified files to carry prominent notices stating that You changed the files; and + + + + You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + + + If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + + + + 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + + + + 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + + + + 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + + + + 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + + + + 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + + + + END OF TERMS AND CONDITIONS + + + + APPENDIX: How to apply this license to your work + + To apply this 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] Copyright and related rights are licensed under the Solderpad Hardware License, Version 0.5 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://solderpad.org/licenses/SHL-0.5. Unless required by applicable law or agreed to in writing, software, hardware and materials distributed under this 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. json: shl-0.5.json - yml: shl-0.5.yml + yaml: shl-0.5.yml html: shl-0.5.html - text: shl-0.5.LICENSE + license: shl-0.5.LICENSE - license_key: shl-0.51 + category: Permissive spdx_license_key: SHL-0.51 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "SOLDERPAD HARDWARE LICENSE version 0.51\n\nThis license is based closely on the Apache\ + \ License Version 2.0, but is not approved or endorsed by the Apache Foundation. A copy\ + \ of the non-modified Apache License 2.0 can be found at http://www.apache.org/licenses/LICENSE-2.0.\n\ + \nAs this license is not currently OSI or FSF approved, the Licensor permits any Work licensed\ + \ under this License, at the option of the Licensee, to be treated as licensed under the\ + \ Apache License Version 2.0 (which is so approved).\n\nThis License is licensed under the\ + \ terms of this License and in particular clause 7 below (Disclaimer of Warranties) applies\ + \ in relation to its use. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\ + \n 1. Definitions.\n\n \n\n \"License\" shall mean the terms and conditions\ + \ for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\ + \n \n\n \"Licensor\" shall mean the Rights owner or entity authorized by the Rights\ + \ owner that is granting the License.\n\n \n\n \"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.\n\n \ + \ \n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions\ + \ granted by this License.\n\n \n\n \"Rights\" means copyright and any similar\ + \ right including design right (whether registered or unregistered), semiconductor topography\ + \ (mask) rights and database rights (but excluding Patents and Trademarks).\n\n \n\n\ + \ \"Source\" form shall mean the preferred form for making modifications, including\ + \ but not limited to source code, net lists, board layouts, CAD files, documentation source,\ + \ and configuration files.\n\n \n\n \"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, the instantiation of a hardware design\ + \ and conversions to other media types, including intermediate forms such as bytecodes,\ + \ FPGA bitstreams, artwork and semiconductor topographies (mask works).\n\n \n\n \ + \ \"Work\" shall mean the work of authorship, whether in Source form or other Object\ + \ form, made available under the License, as indicated by a Rights notice that is included\ + \ in or attached to the work (an example is provided in the Appendix below).\n\n \n\ + \n \"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) or physically connect to or interoperate\ + \ with the interfaces of, the Work and Derivative Works thereof.\n\n \n\n \"Contribution\"\ + \ shall mean any design or 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 Rights owner or by an individual\ + \ or Legal Entity authorized to submit on behalf of the Rights 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 Rights owner as \"Not a Contribution.\"\n\n \n\n \"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.\n\n 2.\ + \ Grant of 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\ + \ license under the Rights to reproduce, prepare Derivative Works of, publicly display,\ + \ publicly perform, sublicense, and distribute the Work and such Derivative Works in Source\ + \ or Object form and do anything in relation to the Work as if the Rights did not exist.\n\ + \n 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.\n\n 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:\n\n 1. You must give any other recipients of the Work or Derivative\ + \ Works a copy of this License; and\n\n 2. You must cause any modified files to carry\ + \ prominent notices stating that You changed the files; and\n\n 3. 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\n\n 4. 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.\n\n 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.\n\n 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.\n\n 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.\n\n 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.\n\n 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\n\ + \nAPPENDIX: How to apply this license to your work\n\nTo apply this 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.\n\nCopyright\ + \ [yyyy] [name of copyright owner] Copyright and related rights are licensed under the Solderpad\ + \ Hardware License, Version 0.51 (the \"License\"); you may not use this file except in\ + \ compliance with the License. You may obtain a copy of the License at http://solderpad.org/licenses/SHL-0.51.\ + \ Unless required by applicable law or agreed to in writing, software, hardware and materials\ + \ distributed under this 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." json: shl-0.51.json - yml: shl-0.51.yml + yaml: shl-0.51.yml html: shl-0.51.html - text: shl-0.51.LICENSE + license: shl-0.51.LICENSE - license_key: shl-2.0 + category: Permissive spdx_license_key: SHL-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Permissive + text: | + Solderpad Hardware Licence v2.0 + + Solderpad Hardware Licence v2.0 + AN UPDATED VERSION OF THIS LICENSE IS AVAILABLE. + + Please see the licenses page. + + This licence (the “Licence”) operates as a wraparound licence to the Apache License Version 2.0 (the “Apache License”) and grants to You the rights, and imposes the obligations, set out in the Apache License (which can be found here: http://apache.org/licenses/LICENSE-2.0), with the following extensions. It must be read in conjunction with the Apache License. Section 1 below modifies definitions in the Apache License, and section 2 below replaces sections 2 of the Apache License. You may, at your option, choose to treat any Work released under this License as released under the Apache License (thus ignoring all sections written below entirely). Words in italics indicate changes rom the Apache License, but are indicative and not to be taken into account in interpretation. + + 1. The definitions set out in the Apache License are modified as follows: + + Copyright any reference to ‘copyright’ (whether capitalised or not) includes ‘Rights’ (as defined below). + + Contribution also includes any design, as well as any work of authorship. + + Derivative Works shall not include works that remain reversibly separable from, or merely link (or bind by name) or physically connect to or interoperate with the interfaces of the Work and Derivative Works thereof. + + Object form shall mean any form resulting from mechanical transformation or translation of a Source form or the application of a Source form to physical material, including but not limited to compiled object code, generated documentation, the instantiation of a hardware design or physical object and conversions to other media types, including intermediate forms such as bytecodes, FPGA bitstreams, moulds, artwork and semiconductor topographies (mask works). + + Rights means copyright and any similar right including design right (whether registered or unregistered), semiconductor topography (mask) rights and database rights (but excluding Patents and Trademarks). + + Source form shall mean the preferred form for making modifications, including but not limited to source code, net lists, board layouts, CAD files, documentation source, and configuration files. + + Work also includes a design or work of authorship, whether in Source form or other Object form. + + 2. Grant of Licence + + 2.1 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 license under the Rights to reproduce, prepare Derivative Works of, make, adapt, repair, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form and do anything in relation to the Work as if the Rights did not exist. json: shl-2.0.json - yml: shl-2.0.yml + yaml: shl-2.0.yml html: shl-2.0.html - text: shl-2.0.LICENSE + license: shl-2.0.LICENSE - license_key: shl-2.1 + category: Permissive spdx_license_key: SHL-2.1 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Permissive + text: | + Solderpad Hardware License v2.1 + + This license operates as a wraparound license to the Apache License Version 2.0 (the “Apache License”) and incorporates the terms and conditions of the Apache License (which can be found here: http://apache.org/licenses/LICENSE-2.0), with the following additions and modifications. It must be read in conjunction with the Apache License. Section 1 below modifies definitions and terminology in the Apache License and Section 2 below replaces Section 2 of the Apache License. The Appendix replaces the Appendix in the Apache License. You may, at your option, choose to treat any Work released under this license as released under the Apache License (thus ignoring all sections written below entirely). + + 1. Terminology in the Apache License is supplemented or modified as follows: + + “Authorship”: any reference to ‘authorship’ shall be taken to read “authorship or design”. + + “Copyright owner”: any reference to ‘copyright owner’ shall be taken to read “Rights owner”. + + “Copyright statement”: the reference to ‘copyright statement’ shall be taken to read ‘copyright or other statement pertaining to Rights’. + + The following new definition shall be added to the Definitions section of the Apache License: + + “Rights” means copyright and any similar right including design right (whether registered or unregistered), rights in semiconductor topographies (mask works) and database rights (but excluding Patents and Trademarks). + + The following definitions shall replace the corresponding definitions in the Apache License: + + “License” shall mean this Solderpad Hardware License version 2.1, being the terms and conditions for use, manufacture, instantiation, adaptation, reproduction, and distribution as defined by Sections 1 through 9 of this document. + + “Licensor” shall mean the owner of the Rights or entity authorized by the owner of the Rights that is granting the License. + + “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 or design. For the purposes of this License, Derivative Works shall not include works that remain reversibly separable from, or merely link (or bind by name) or physically connect to or interoperate with the Work and Derivative Works thereof. + + “Object” form shall mean any form resulting from mechanical transformation or translation of a Source form or the application of a Source form to physical material, including but not limited to compiled object code, generated documentation, the instantiation of a hardware design or physical object or material and conversions to other media types, including intermediate forms such as bytecodes, FPGA bitstreams, moulds, artwork and semiconductor topographies (mask works). + + “Source” form shall mean the preferred form for making modifications, including but not limited to source code, net lists, board layouts, CAD files, documentation source, and configuration files. + + “Work” shall mean the work of authorship or design, whether in Source or Object form, made available under the License, as indicated by a notice relating to Rights that is included in or attached to the work (an example is provided in the Appendix below). + + 2. Grant of 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 license under the Rights to reproduce, prepare Derivative Works of, make, adapt, repair, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form and do anything in relation to the Work as if the Rights did not exist. + + APPENDIX + + Copyright [yyyy] [name of copyright owner] + SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1 + + Licensed under the Solderpad Hardware License v 2.1 (the “License”); you may not use this file except in compliance with the License, or, at your option, the Apache License version 2.0. You may obtain a copy of the License at + + https://solderpad.org/licenses/SHL-2.1/ + + Unless required by applicable law or agreed to in writing, any work 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. json: shl-2.1.json - yml: shl-2.1.yml + yaml: shl-2.1.yml html: shl-2.1.html - text: shl-2.1.LICENSE + license: shl-2.1.LICENSE - license_key: signal-gpl-3.0-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-signal-gpl-3.0-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: 'Additional Permissions For Submission to Apple App Store: Provided that you are otherwise + in compliance with the GPLv3 for each covered work you convey (including without limitation + making the Corresponding Source available in compliance with Section 6 of the GPLv3), Open + Whisper Systems also grants you the additional permission to convey through the Apple App + Store non-source executable versions of the Program as incorporated into each applicable + covered work as Executable Versions only under the Mozilla Public License version 2.0 (https://www.mozilla.org/en-US/MPL/2.0/).' json: signal-gpl-3.0-exception.json - yml: signal-gpl-3.0-exception.yml + yaml: signal-gpl-3.0-exception.yml html: signal-gpl-3.0-exception.html - text: signal-gpl-3.0-exception.LICENSE + license: signal-gpl-3.0-exception.LICENSE - license_key: simpl-1.1 + category: Permissive spdx_license_key: LicenseRef-scancode-simpl-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + SIMPLE PUBLIC LICENSE VERSION 1.1 2003-01-21 + + Copyright (c) The Analysis and Solutions Company + http://www.analysisandsolutions.com/ + + 1. Permission to use, copy, modify, and distribute this software and + its documentation, with or without modification, for any purpose and + without fee or royalty is hereby granted, provided that you include + the following on ALL copies of the software and documentation or + portions thereof, including modifications, that you make: + + a. The full text of this license in a location viewable to users + of the redistributed or derivative work. + + b. Notice of any changes or modifications to the files, + including the date changes were made. + + 2. The name, servicemarks and trademarks of the copyright holders + may NOT be used in advertising or publicity pertaining to the + software without specific, written prior permission. + + 3. Title to copyright in this software and any associated + documentation will at all times remain with copyright holders. + + 4. THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND + COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY + OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE + OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, + COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. + + 5. COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DAMAGES, INCLUDING + BUT NOT LIMITED TO, DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL, + ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. json: simpl-1.1.json - yml: simpl-1.1.yml + yaml: simpl-1.1.yml html: simpl-1.1.html - text: simpl-1.1.LICENSE + license: simpl-1.1.LICENSE - license_key: simpl-2.0 + category: Copyleft spdx_license_key: SimPL-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + Preamble + This Simple Public License 2.0 (SimPL 2.0 for short) is a plain language implementation of GPL 2.0. The words are different, but the goal is the same - to guarantee for all users the freedom to share and change software. If anyone wonders about the meaning of the SimPL, they should interpret it as consistent with GPL 2.0. + + Simple Public License (SimPL) 2.0 + The SimPL applies to the software's source and object code and comes with any rights that I have in it (other than trademarks). You agree to the SimPL by copying, distributing, or making a derivative work of the software. + + You get the royalty free right to: + Use the software for any purpose; + Make derivative works of it (this is called a "Derived Work"); + Copy and distribute it and any Derived Work. + + If you distribute the software or a Derived Work, you must give back to the community by: + Prominently noting the date of any changes you make; + Leaving other people's copyright notices, warranty disclaimers, and license terms in place; + Providing the source code, build scripts, installation scripts, and interface definitions in a form that is easy to get and best to modify; + Licensing it to everyone under SimPL, or substantially similar terms (such as GPL 2.0), without adding further restrictions to the rights provided; + Conspicuously announcing that it is available under that license. + + There are some things that you must shoulder: + You get NO WARRANTIES. None of any kind; + If the software damages you in any way, you may only recover direct damages up to the amount you paid for it (that is zero if you did not pay anything). You may not recover any other damages, including those called "consequential damages." (The state or country where you live may not allow you to limit your liability in this way, so this may not apply to you); + + The SimPL continues perpetually, except that your license rights end automatically if: + You do not abide by the "give back to the community" terms (your licensees get to keep their rights if they abide); + Anyone prevents you from distributing the software under the terms of the SimPL. + + License for the License + You may do anything that you want with the SimPL text; it's a license form to use in any way that you find helpful. To avoid confusion, however, if you change the terms in any way then you may not call your license the Simple Public License or the SimPL (but feel free to acknowledge that your license is "based on the Simple Public License"). json: simpl-2.0.json - yml: simpl-2.0.yml + yaml: simpl-2.0.yml html: simpl-2.0.html - text: simpl-2.0.LICENSE + license: simpl-2.0.LICENSE +- license_key: six-labors-split-1.0 + category: Free Restricted + spdx_license_key: LicenseRef-scancode-six-labors-split-1.0 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + Six Labors Split License + Version 1.0, June 2022 + Copyright (c) Six Labors + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "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" (or "Works") shall mean any Six Labors software made available under the License, as indicated by a + copyright notice that is included in or attached to the work. + + "Direct Package Dependency" shall mean any Work in Source or Object form that is installed directly by You. + + "Transitive Package Dependency" shall mean any Work in Object form that is installed indirectly by a third party + dependency unrelated to Six Labors. + + 2. License + + Works in Source or Object form are split licensed and may be licensed under the Apache License, Version 2.0 or a + Six Labors Commercial Use License. + + Licenses are granted based upon You meeting the qualified criteria as stated. Once granted, + You must reference the granted license only in all documentation. + + Works in Source or Object form are licensed to You under the Apache License, Version 2.0 if. + + - You are consuming the Work in for use in software licensed under an Open Source or Source Available license. + - You are consuming the Work as a Transitive Package Dependency. + - You are consuming the Work as a Direct Package Dependency in the capacity of a For-profit company/individual with + less than 1M USD annual gross revenue. + - You are consuming the Work as a Direct Package Dependency in the capacity of a Non-profit organization + or Registered Charity. + + For all other scenarios, Works in Source or Object form are licensed to You under the Six Labors Commercial License + which may be purchased by visiting https://sixlabors.com/pricing/. + json: six-labors-split-1.0.json + yaml: six-labors-split-1.0.yml + html: six-labors-split-1.0.html + license: six-labors-split-1.0.LICENSE +- license_key: skip-2014 + category: Copyleft Limited + spdx_license_key: LicenseRef-scancode-skip-2014 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: "****** SKIP - The System of Kanji Indexing by Patterns ******\n \n***** Introduction\ + \ *****\n \nThe System of Kanji Indexing by Patterns (SKIP) system for\n ordering kanji\ + \ was developed by Jack Halpern and used as the\n main index for kanji in the New Japanese-English\ + \ Character\n Dictionary (Kenkyusha/NTC, 1990) and The Kodansha Kanji\n Learner's Dictionary\ + \ (Kodansha, 1999) and other dictionaries\n published by Kanji Dictionary Publishing Society.\n\ + \ \nThe SKIP codes for the kanji not in the NJECD were compiled by\n Jack Halpern and Martin\ + \ Duerst (the remaining kanji in JIS X\n 0208) and Jim Breen (the 5,801 kanji in JIS X 0212).\n\ + \ An overview of the SKIP system is available at this page.\n\n ***** Conditions Of Use\ + \ *****\n\n As of December 12, 2014, the SKIP coding system and all\n established SKIP codes\ + \ have been placed under a Creative\n Commons_Attribution-ShareAlike_4.0_International.\ + \ (The full\n License Code is here.)\n\n As stated in that license, you may copy and redistribute\ + \ the\n SKIP coding system in any medium or format for any purpose,\n even commercially,\ + \ as long as you give appropriate credit.\n\n Appropriate credit must clearly attribute\ + \ the system and codes\n to Jack Halpern, with a link to the website of the Kanji\n Dictionary\ + \ Publishing Society at http://www.kanji.org/. Below\n is an example of how such an attribution\ + \ may look like:\n\n The SKIP (System of Kanji Indexing by Patterns)\n system\ + \ for ordering kanji was developed by Jack\n Halpern (Kanji Dictionary Publishing Society\ + \ at http:\n //www.kanji.org/), and is used with his permission.\n\n To get the latest\ + \ SKIP codes, please contact us at jack[at]cjki.org." + json: skip-2014.json + yaml: skip-2014.yml + html: skip-2014.html + license: skip-2014.LICENSE - license_key: sleepycat + category: Copyleft spdx_license_key: Sleepycat other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Redistributions in any form must be accompanied by information on + how to obtain complete source code for the DB software and any + accompanying software that uses the DB software. The source code + must either be included in the distribution or be available for no + more than the cost of distribution plus a nominal fee, and must be + freely redistributable under reasonable conditions. For an + executable file, complete source code means the source code for all + modules it contains. It does not include source code for modules or + files that typically accompany the major components of the operating + system on which the executable file runs. + + THIS SOFTWARE IS PROVIDED BY ORACLE CORPORATION ``AS IS'' AND ANY EXPRESS + OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR + NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE CORPORATION + 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. json: sleepycat.json - yml: sleepycat.yml + yaml: sleepycat.yml html: sleepycat.html - text: sleepycat.LICENSE + license: sleepycat.LICENSE - license_key: slf4j-2005 + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + 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. json: slf4j-2005.json - yml: slf4j-2005.yml + yaml: slf4j-2005.yml html: slf4j-2005.html - text: slf4j-2005.LICENSE + license: slf4j-2005.LICENSE - license_key: slf4j-2008 + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: "Licensing terms for SLF4J\n\nSLF4J source code and binaries are distributed under the\ + \ MIT license.\n\nCopyright (c) 2004-2008 QOS.ch All rights reserved. \n\nPermission is\ + \ hereby granted, free of charge, to any person obtaining a copy of this\nsoftware and associated\ + \ documentation files (the \"Software\"), to deal in the Software\nwithout restriction,\ + \ including without limitation the rights to use, copy, modify,\nmerge, publish, distribute,\ + \ sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software\ + \ is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice\ + \ and this permission notice shall be included in all copies\nor substantial portions of\ + \ the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\ + \ OR IMPLIED,\nINCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR\ + \ A\nPARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n\ + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\nCONTRACT,\ + \ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE\nOR THE USE\ + \ OR OTHER DEALINGS IN THE SOFTWARE.\n\nThese terms are identical to those of the MIT License,\ + \ also called the X License or\nthe X11 License, which is a simple, permissive non-copyleft\ + \ free software license. It\nis deemed compatible with virtually all types of licenses,\ + \ commercial or otherwise.\nIn particular, the Free Software Foundation has declared it\ + \ compatible with GNU GPL.\nIt is also known to be approved by the Apache Software Foundation\ + \ as compatible with\nApache Software License." json: slf4j-2008.json - yml: slf4j-2008.yml + yaml: slf4j-2008.yml html: slf4j-2008.html - text: slf4j-2008.LICENSE + license: slf4j-2008.LICENSE - license_key: slysoft-eula + category: Commercial spdx_license_key: LicenseRef-scancode-slysoft-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + END USER LICENSE AGREEMENT + + for: All Software Products of SlySoft inc. IMPORTANT READ CAREFULLY and PRINT FOR YOUR REFERENCE: This End-User License Agreement ('EULA') is a legal agreement between you (either an individual person or a single legal entity, who will be referred to in this EULA as 'You') and SlySoft. It includes any associated media, printed materials and electronic documentation (the 'Software'). The Software also includes any software updates, add-on components, web services and/or supplements that SlySoft may provide to You or make available to You after the date You obtain Your initial copy of the Software to the extent that such items are not accompanied by a separate license agreement or terms of use. By installing, copying, downloading, accessing or otherwise using the Software, You agree to be bound by the terms of this EULA. If You do not agree to the terms of this EULA, do not install, access or use the Software. For purposes of this EULA, the term 'Licensor' refers to SlySoft except in the event that You acquired the Software as a component of a SlySoft software product originally licensed from the manufacturer of your computer system or computer system component, then 'Licensor' or refers to such hardware manufacturer. By installing, copying, downloading, accessing or otherwise using the Software, You agree to be bound by the terms of this EULA. If You do not agree to the terms of this EULA, Licensor is unwilling to license the Software. In such event, You may not install, copy, download or otherwise use the Software. + NOTE: IF YOU DO NOT HAVE A VALID LICENSE FOR AnyDVD, CloneDVD, or CloneCD, etc. (A 'SOFTWARE PRODUCT'), YOU ARE NOT AUTHORIZED TO INSTALL, COPY OR OTHERWISE USE THE SOFTWARE EXCEPT AS NECESSARY FOR YOUR 21 DAYS TRIAL PERIOD. + + SOFTWARE LICENSE + + The Software is protected by intellectual property laws and treaties. The Software is licensed, not sold. + + This EULA grants you the following rights: + Systems Software - . You may install and use one copy of the SOFTWARE PRODUCT on a single computer or if you licensed it for multiple computers on as many computers as you legally obtained a license for, including a workstation, terminal or other digital electronic device ('COMPUTER'). + Storage/Network Use - You may also store or install a copy of the SOFTWARE PRODUCT on a storage device, such as a network server, used only to install or run the SOFTWARE PRODUCT on your other COMPUTERS over an internal network; however, you must acquire and dedicate a license for each separate COMPUTER on or from which the SOFTWARE PRODUCT is installed, used, accessed, displayed or run. A license for the SOFTWARE PRODUCT may only be shared or used concurrently on as many different COMPUTERS as the license is valid for. + + Restrictions: + You may not sell, license or distribute copies of the Software on a stand-alone basis or as part of any collection, product or service where the primary value of the product or service are the Software. + You may not use or distribute any of the Software that include representations of identifiable individuals, governments, logos, initials, emblems, trademarks, or entities for any commercial purposes or to express or imply any endorsement or association with any product, service, entity, or activity. + You must indemnify, hold harmless, and defend SlySoft and Universal Gaming Concepts Billing and Customer Service Inc. from and against any claims or lawsuits, including attorneys' fees, that arise from or result from the use or distribution of Software as modified by You. + + SlySoft respects the rights of artists and film companies, and the proper use of the software does not violate those rights. You cannot copy DVDs in order to sell or give away copies, or for any commercial purpose. + + SlySoft discourages any attempt to copy rented DVDs. It is illegal to make a copy of a DVD for most purposes other than your own personal use. SlySoft respects the rights of artists and film companies, and asks that You do the same. + + Using the SOFTWARE will create backup copies of DVDs. The copy will be an archival backup copy of a DVD, created solely for the private and personal use of the owner of the DVD from which it was made. Federal copyright laws prohibit the unauthorized reproduction, distribution, or exhibition of copyrighted materials, if any, contained in the archival backup copy. The resale, reproduction, distribution, or commercial exploitation of the archival backup copy is strictly forbidden. We ask you to respect the rights of copyright holders. + + DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS. + Limitations on Reverse Engineering, Decompilation, and Disassembly. You may not reverse engineer, decompile, or disassemble the Software, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation. + + Trademarks. This EULA does not grant You any rights in connection with any trademarks or service marks of Licensor or its suppliers. + + No rental, leasing or commercial hosting. You may not rent, lease, lend or provide commercial hosting services to third parties with the Software. + + Support Services. Licensor may provide You with support services related to the Software ('Support Services'). Use of Support Services is governed by the policies and programs described in the user manual, in 'online' documentation, or in other materials from the support services provider. Any supplemental software code provided to You as part of the Support Services are considered part of the Software and subject to the terms and conditions of this EULA. You acknowledge and agree that Licensor may use information You provide to Licensor as part of the Support Services for its business purposes, including for product support and development. For Software licensed from the hardware manufacturer, please refer to the manufacturer's support number and address provided in Your hardware documentation. + + Termination. Without prejudice to any other rights, Licensor or its suppliers may terminate this EULA if You fail to comply with the terms and conditions of this EULA. In such event, You must destroy all copies of the Software and all of its component parts. + + UPGRADES If the SOFTWARE PRODUCT is labeled as an upgrade, you must be properly licensed to use a product identified by SlySoft as being eligible for the upgrade in order to use the SOFTWARE PRODUCT. A SOFTWARE PRODUCT labeled as an upgrade replaces and/or supplements the product that formed the basis for your eligibility for the upgrade. You may use the resulting upgraded product only in accordance with the terms of this EULA. If the SOFTWARE PRODUCT is an upgrade of a component of a package of software programs that you licensed as a single product, the SOFTWARE PRODUCT may be used and transferred only as part of that single product package and may not be separated for use on more than one computer. + + BACKUP COPY After installation of one copy of the SOFTWARE PRODUCT pursuant to this EULA, you may keep the original media on which the SOFTWARE PRODUCT was provided by SlySoft solely for backup or archival purposes. If the original media is required to use the SOFTWARE PRODUCT on the COMPUTER, you may make one copy of the SOFTWARE PRODUCT solely for backup or archival purposes. Except as expressly provided in this EULA, you may not otherwise make copies of the SOFTWARE PRODUCT or the printed materials accompanying the SOFTWARE PRODUCT. + + AUTOMATIC COMMUNICATIONS FEATURES. The SOFTWARE PRODUCT consists of interactive Internet applications that perform a variety of communications over the Internet as part of its normal operation. A number of communications features are automatic and are enabled by default. By installing and/or using the SOFTWARE PRODUCT, you consent to the SOFTWARE PRODUCTS communications features. Once you have activated the SOFTWARE PRODUCT, user information including your user id will be sent in communications with SlySoft's servers. This information is used to perform a background check against SlySoft's license servers. You are responsible for any telecommunications or other connectivity charges incurred through use of the Software. + + INTELLECTUAL PROPERTY RIGHTS. All title and intellectual property rights in and to the Software (including but not limited to any images, photographs, animations, video, audio, music, text, and 'applets' incorporated into the Software), the accompanying printed materials, and any copies of the Software are owned by Licensor or its suppliers. All title and intellectual property rights in and to the content that is not contained in the Software, but may be accessed through use of the Software, is the property of the respective content owners and may be protected by applicable copyright or other intellectual property laws and treaties. This EULA grants You no rights to use such content. If this Software contains documentation that is provided only in electronic form, you may print one copy of such electronic documentation. You may not copy the printed materials accompanying the Software. All rights not specifically granted under this EULA are reserved by Licensor and its suppliers. + + LIMITED WARRANTY + NOTE: IF YOU LICENSED THE SOFTWARE FROM A HARDWARE MANUFACTURER AS A COMPONENT OF A SlySoft SOFTWARE PRODUCT, PLEASE REFER TO THE LIMITED WARRANTIES, LIMITATION OF LIABILITY, AND OTHER SPECIAL PROVISION APPENDICES PROVIDED WITH OR IN SUCH OTHER SlySoft SOFTWARE PRODUCT. SUCH LIMITED WARRANTIES, LIMITATIONS OF LIABILITY AND SPECIAL PROVISIONS ARE AN INTEGRAL PART OF THIS EULA AND SHALL SUPERSEDE ALL OF THE WARRANTIES, LIMITATIONS OF LIABILITY AND OTHER SPECIAL PROVISIONS SET FORTH BELOW. + FOR SOFTWARE LICENSED DIRECTLY FROM SlySoft THE FOLLOWING SECTIONS APPLY: LIMITED WARRANTY FOR SOFTWARE. SlySoft warrants that the Software will perform substantially in accordance with the accompanying materials for a period of ninety (90) days from the date of receipt. If an implied warranty or condition is created by your country, state/jurisdiction and federal or state/provincial law prohibits disclaimer of it, you also have an implied warranty or condition, BUT ONLY AS TO DEFECTS DISCOVERED DURING THE PERIOD OF THIS LIMITED WARRANTY (NINETY DAYS). AS TO ANY DEFECTS DISCOVERED AFTER THE NINETY (90) DAY PERIOD, THERE IS NO WARRANTY OR CONDITION OF ANY KIND. Some states/jurisdictions do not allow limitations on how long an implied warranty or condition lasts, so the above limitation may not apply to you. Any supplements or updates to the Software, including without limitation, any (if any) service packs or hot fixes provided to you after the expiration of the ninety (90) day Limited Warranty period are not covered by any warranty or condition, express, implied or statutory. + LIMITATION ON REMEDIES: NO CONSEQUENTIAL OR OTHER DAMAGES - Your exclusive remedy for any breach of this Limited Warranty is as set forth below. Except for any refund elected by SlySoft YOU ARE NOT ENTITLED TO ANY DAMAGES, INCLUDING BUT NOT LIMITED TO CONSEQUENTIAL DAMAGES, if the Software does not meet SlySoft's Limited Warranty, and, to the maximum extent allowed by applicable law, even if any remedy fails of its essential purpose. The terms of the section below ('Exclusion of Incidental, Consequential and Certain Other Damages') are also incorporated into this Limited Warranty. Some countries, states/jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so the above limitation or exclusion may not apply to you. This Limited Warranty gives you specific legal rights. You may have others which vary from state/jurisdiction to state/jurisdiction. + + YOUR EXCLUSIVE REMEDY. SlySoft and its suppliers' entire liability and your exclusive remedy shall be, at SlySoft's option from time to time exercised subject to applicable law, (a) return of the price paid (if any) for the Software, or (b) repair or replacement of the Software, that does not meet this Limited Warranty and that is returned to SlySoft with a copy of your receipt. You will receive the remedy elected by SlySoft without charge, except that you are responsible for any expenses you may incur (e.g. cost of shipping the Software to SlySoft. This Limited Warranty is void if failure of the Software has resulted from accident, abuse, misapplication, abnormal use or a virus. Any replacement Software will be warranted for the remainder of the original warranty period or thirty (30) days, whichever is longer. Outside the United States or Canada, neither these remedies nor any product support services offered by SlySoft are available without proof of purchase from an authorized international source. To exercise your remedy, contact: SlySoft Dickenson Bay Street, John Henry Building, 3rd floor. DISCLAIMER OF WARRANTIES. The Limited Warranty that appears above is the only express warranty made to you and is provided in lieu of any other express warranties (if any) created by any documentation or packaging. Except for the Limited Warranty and to the maximum extent permitted by applicable law, SlySoft and its suppliers provide the Software and support services (if any) AS IS AND WITH ALL FAULTS, and hereby disclaim all other warranties and conditions, either express, implied or statutory, including, but not limited to, any (if any) implied warranties, duties or conditions of merchantability, of fitness for a particular purpose, of accuracy or completeness of responses, of results, of workmanlike effort, of lack of viruses, and of lack of negligence, all with regard to the Software, and the provision of or failure to provide support services. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT WITH REGARD TO THE Software. EXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER DAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL SlySoft OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS OR CONFIDENTIAL OR OTHER INFORMATION, FOR BUSINESS INTERRUPTION, FOR PERSONAL INJURY, FOR LOSS OF PRIVACY, FOR FAILURE TO MEET ANY DUTY INCLUDING OF GOOD FAITH OR OF REASONABLE CARE, FOR NEGLIGENCE, AND FOR ANY OTHER PECUNIARY OR OTHER LOSS WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF OR INABILITY TO USE THE SOFTWARE, THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES, OR OTHERWISE UNDER OR IN CONNECTION WITH ANY PROVISION OF THIS EULA, EVEN IN THE EVENT OF THE FAULT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, BREACH OF CONTRACT OR BREACH OF WARRANTY OF ANY SUPPLIER, AND EVEN IF SlySoft OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ENTIRE AGREEMENT. This EULA (including any addendum or amendment to this EULA which is included with the Software) is the entire agreement between you and SlySoft relating to the Software and the support services (if any) and they supersede all prior or contemporaneous oral or written communications, proposals and representations with respect to the Software or any other subject matter covered by this EULA. To the extent the terms of any SlySoft policies or programs for support services conflict with the terms of this EULA, the terms of this EULA shall control. + + SlySoft, Inc. + P.O. Box W874 + St. John's + Antigua and Barbuda json: slysoft-eula.json - yml: slysoft-eula.yml + yaml: slysoft-eula.yml html: slysoft-eula.html - text: slysoft-eula.LICENSE + license: slysoft-eula.LICENSE - license_key: smail-gpl + category: Copyleft spdx_license_key: LicenseRef-scancode-smail-gpl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "\t\t SMAIL GENERAL PUBLIC LICENSE\n\t\t (Clarified 11 Feb 1988)\n\n Copyright\ + \ (C) 1988 Landon Curt Noll & Ronald S. Karr\n Copyright (C) 1992 Ronald S. Karr\n Copyleft\ + \ (GNU) 1988 Landon Curt Noll & Ronald S. Karr\n\n Everyone is permitted to copy and distribute\ + \ verbatim copies\n of this license, but changing it is not allowed. You can also\n use\ + \ this wording to make the terms for other programs.\n\n The license agreements of most\ + \ software companies keep you at the\nmercy of those companies. By contrast, our general\ + \ public license is\nintended to give everyone the right to share SMAIL. To make sure that\n\ + you get the rights we want you to have, we need to make restrictions\nthat forbid anyone\ + \ to deny you these rights or to ask you to surrender\nthe rights. Hence this license agreement.\n\ + \n Specifically, we want to make sure that you have the right to give\naway copies of SMAIL,\ + \ that you receive source code or else can get it\nif you want it, that you can change SMAIL\ + \ or use pieces of it in new\nfree programs, and that you know you can do these things.\n\ + \n To make sure that everyone has such rights, we have to forbid you to\ndeprive anyone\ + \ else of these rights. For example, if you distribute\ncopies of SMAIL, you must give\ + \ the recipients all the rights that you\nhave. You must make sure that they, too, receive\ + \ or can get the\nsource code. And you must tell them their rights.\n\n Also, for our\ + \ own protection, we must make certain that everyone\nfinds out that there is no warranty\ + \ for SMAIL. If SMAIL is modified by\nsomeone else and passed on, we want its recipients\ + \ to know that what\nthey have is not what we distributed, so that any problems introduced\n\ + by others will not reflect on our reputation.\n\n Therefore we (Landon Curt Noll and Ronald\ + \ S. Karr) make the following \nterms which say what you must do to be allowed to distribute\ + \ or change \nSMAIL.\n\n\n\t\t\tCOPYING POLICIES\n\n 1. You may copy and distribute verbatim\ + \ copies of SMAIL source code\nas you receive it, in any medium, provided that you conspicuously\ + \ and\nappropriately publish on each copy a valid copyright notice \"Copyright\n(C) 1988\ + \ Landon Curt Noll & Ronald S. Karr\" (or with whatever year is\nappropriate); keep intact\ + \ the notices on all files that refer to this\nLicense Agreement and to the absence of any\ + \ warranty; and give any\nother recipients of the SMAIL program a copy of this License\n\ + Agreement along with the program. You may charge a distribution fee\nfor the physical act\ + \ of transferring a copy.\n\n 2. You may modify your copy or copies of SMAIL or any portion\ + \ of it,\nand copy and distribute such modifications under the terms of\nParagraph 1 above,\ + \ provided that you also do the following:\n\n a) cause the modified files to carry prominent\ + \ notices stating\n that you changed the files and the date of any change; and\n\n \ + \ b) cause the whole of any work that you distribute or publish,\n that in whole or\ + \ in part contains or is a derivative of SMAIL or\n any part thereof, to be licensed\ + \ at no charge to all third\n parties on terms identical to those contained in this License\n\ + \ Agreement (except that you may choose to grant more extensive\n warranty protection\ + \ to some or all third parties, at your option).\n\n c) You may charge a distribution\ + \ fee for the physical act of\n transferring a copy, and you may at your option offer\ + \ warranty\n protection in exchange for a fee.\n\nMere aggregation of another unrelated\ + \ program with this program (or its\nderivative) on a volume of a storage or distribution\ + \ medium does not bring\nthe other program under the scope of these terms.\n\n 3. You may\ + \ copy and distribute SMAIL (or a portion or derivative of it,\nunder Paragraph 2) in object\ + \ code or executable form under the terms of\nParagraphs 1 and 2 above provided that you\ + \ also do one of the following:\n\n a) accompany it with the complete corresponding machine-readable\n\ + \ source code, which must be distributed under the terms of\n Paragraphs 1 and 2 above;\ + \ or,\n\n b) accompany it with a written offer, valid for at least three\n years,\ + \ to give any third party free (except for a nominal\n shipping charge) a complete machine-readable\ + \ copy of the\n corresponding source code, to be distributed under the terms of\n \ + \ Paragraphs 1 and 2 above; or,\n\n c) accompany it with the information you received\ + \ as to where the\n corresponding source code may be obtained. (This alternative is\n\ + \ allowed only for non-commercial distribution and only if you\n received the program\ + \ in object code or executable form alone.)\n\nFor an executable file, complete source code\ + \ means all the source code for\nall modules it contains; but, as a special exception, it\ + \ need not include\nsource code for modules which are standard libraries that accompany\ + \ the\noperating system on which the executable file runs.\n\n 4. You may not copy, sublicense,\ + \ distribute or transfer SMAIL\nexcept as expressly provided under this License Agreement.\ + \ Any attempt\notherwise to copy, sublicense, distribute or transfer SMAIL is void and\n\ + your rights to use the program under this License agreement shall be\nautomatically terminated.\ + \ However, parties who have received computer\nsoftware programs from you with this License\ + \ Agreement will not have\ntheir licenses terminated so long as such parties remain in full\ + \ compliance.\n\n 5. If you wish to incorporate parts of SMAIL into other free\nprograms\ + \ whose distribution conditions are different, write to Landon\nCurt Noll & Ronald S. Karr\ + \ via the Free Software Foundation at 51\nFranklin St, Fifth Floor, Boston, MA 02110-1301,\ + \ USA. We have not yet\nworked out a simple rule that can be stated here, but we will often\n\ + permit this. We will be guided by the two goals of preserving the\nfree status of all derivatives\ + \ of our free software and of promoting\nthe sharing and reuse of software.\n\nYour comments\ + \ and suggestions about our licensing policies and our\nsoftware are welcome! This contract\ + \ was based on the contract made by\nthe Free Software Foundation. Please contact the Free\ + \ Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\nUSA,\ + \ or call (617) 542-5942 for details on copylefted material in\ngeneral.\n\n\t\t NO\ + \ WARRANTY\n\n BECAUSE SMAIL IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY NO\nWARRANTY,\ + \ TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW. EXCEPT WHEN\nOTHERWISE STATED IN WRITING,\ + \ LANDON CURT NOLL & RONALD S. KARR AND/OR\nOTHER PARTIES PROVIDE SMAIL \"AS IS\" WITHOUT\ + \ WARRANTY OF ANY KIND,\nEITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\ + \ IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nTHE ENTIRE\ + \ RISK AS TO THE QUALITY AND PERFORMANCE OF SMAIL IS WITH\nYOU. SHOULD SMAIL PROVE DEFECTIVE,\ + \ YOU ASSUME THE COST OF ALL\nNECESSARY SERVICING, REPAIR OR CORRECTION.\n\n IN NO EVENT\ + \ UNLESS REQUIRED BY APPLICABLE LAW WILL LANDON CURT NOLL &\nRONALD S. KARR AND/OR ANY OTHER\ + \ PARTY WHO MAY MODIFY AND REDISTRIBUTE\nSMAIL AS PERMITTED ABOVE, BE LIABLE TO YOU FOR\ + \ DAMAGES, INCLUDING ANY\nLOST PROFITS, LOST MONIES, OR OTHER SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL\ + \ DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE\n(INCLUDING BUT NOT LIMITED TO LOSS\ + \ OF DATA OR DATA BEING RENDERED\nINACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR A FAILURE\ + \ OF THE\nPROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) SMAIL, EVEN IF YOU HAVE\nBEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY\nANY OTHER PARTY." json: smail-gpl.json - yml: smail-gpl.yml + yaml: smail-gpl.yml html: smail-gpl.html - text: smail-gpl.LICENSE + license: smail-gpl.LICENSE - license_key: smartlabs-freeware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-smartlabs-freeware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Freeware Licence Agreement\nThis licence agreement only applies to the free version\ + \ of this software.\n\nTerms and Conditions\nBY DOWNLOADING, INSTALLING, USING, TRANSMITTING,\ + \ DISTRIBUTING OR COPYING THIS SOFTWARE (\"THE SOFTWARE\"), YOU AGREE TO THE TERMS OF THIS\ + \ AGREEMENT (INCLUDING THE SOFTWARE LICENCE AND DISCLAIMER OF WARRANTY) WITH SmartLabs LLC\ + \ (with the business address at 72, Oktyabrskata str., 127521 Moscow, Russia) THE OWNER\ + \ OF ALL RIGHTS IN RESPECT OF THE SOFTWARE. \n\nPLEASE READ THIS DOCUMENT CAREFULLY BEFORE\ + \ USING THE SOFTWARE. \n\nIF YOU DO NOT AGREE TO ANY OF THE TERMS OF THIS LICENCE THEN DO\ + \ NOT DOWNLOAD, INSTALL, USE, TRANSMIT, DISTRIBUTE OR COPY THE SOFTWARE. \n\nTHIS DOCUMENT\ + \ CONSTITUES A LICENCE TO USE THE SOFTWARE ON THE TERMS AND CONDITIONS APPEARING BELOW.\ + \ \n\nThe Software is licensed to you without charge for use only upon the terms of this\ + \ licence, and SmartLabs LLC reserves all rights not expressly granted to you. SmartLabs\ + \ LLC retains ownership of all copies of the Software. \n\n1. Licence\nYou may use the Software\ + \ without charge. \n\nYou may distribute exact copies of the Software to anyone. \n\n2.\ + \ Restrictions\nSmartLabs LLC reserves the right to revoke the above distribution right\ + \ at any time, for any or no reason. \n\nYOU MAY NOT MODIFY, ADAPT, TRANSLATE, RENT, LEASE,\ + \ LOAN, SELL, REQUEST DONATIONS OR CREATE DERIVATE WORKS BASED UPON THE SOFTWARE OR ANY\ + \ PART THEREOF. \n\nThe Software contains trade secrets and to protect them you may not\ + \ decompile, reverse engineer, disassemble or otherwise reduce the Software to a humanly\ + \ perceivable form. You agree not to divulge, directly or indirectly, until such trade secrets\ + \ cease to be confidential, for any reason not your own fault. \n\n3. Termination\nThis\ + \ licence is effective until terminated. The Licence will terminate automatically without\ + \ notice from SmartLabs LLC if you fail to comply with any provision of this Licence. Upon\ + \ termination you must destroy the Software and all copies thereof. You may terminate this\ + \ Licence at any time by destroying the Software and all copies thereof. Upon termination\ + \ of this licence for any reason you shall continue to be bound by the provisions of Section\ + \ 2 above. Termination will be without prejudice to any rights SmartLabs LLC may have as\ + \ a result of this agreement. \n\n4. Disclaimer of Warranty, Limitation of Remedies\nTO\ + \ THE FULL EXTENT PERMITTED BY LAW, SmartLabs LLC HEREBY EXCLUDES ALL CONDITIONS AND WARRANTIES,\ + \ WHETHER IMPOSED BY STATUTE OR BY OPERATION OF LAW OR OTHERWISE, NOT EXPRESSLY SET OUT\ + \ HEREIN. THE SOFTWARE, AND ALL ACCOMPANYING FILES, DATA AND MATERIALS ARE DISTRIBUTED \"\ + AS IS\" AND WITH NO WARRANTIES OF ANY KIND, WHETHER EXPRESS OR IMPLIED. SmartLabs LLC DOES\ + \ NOT WARRANT, GUARANTEE OR MAKE ANY REPRESENTATIONS REGARDING THE USE, OR THE RESULTS OF\ + \ THE USE, OF THE SOFTWARE WITH RESPECT TO ITS CORRECTNESS, ACCURACY, RELIABILITY, CURRENTNESS\ + \ OR OTHERWISE. THE ENTIRE RISK OF USING THE SOFTWARE IS ASSUMED BY YOU. SmartLabs LLC MAKES\ + \ NO EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS INCLUDING, WITHOUT LIMITATION, THE WARRANTIES\ + \ OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE WITH RESPECT TO THE SOFTWARE. NO\ + \ ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY SmartLabs LLC, IT'S DISTRIBUTORS, AGENTS\ + \ OR EMPLOYEES SHALL CREATE A WARRANTY, AND YOU MAY NOT RELY ON ANY SUCH INFORMATION OR\ + \ ADVICE. \n\nIMPORTANT NOTE: Nothing in this Agreement is intended or shall be construed\ + \ as excluding or modifying any statutory rights, warranties or conditions which by virtue\ + \ of any national or state Fair Trading, Trade Practices or other such consumer legislation\ + \ may not be modified or excluded. If permitted by such legislation, however, SmartLabs\ + \ LLC' liability for any breach of any such warranty or condition shall be and is hereby\ + \ limited to the supply of the Software licensed hereunder again as SmartLabs LLC at its\ + \ sole discretion may determine to be necessary to correct the said breach. \n\nIN NO EVENT\ + \ SHALL SmartLabs LLC BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES\ + \ (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION,\ + \ AND THE LOSS OF BUSINESS INFORMATION OR COMPUTER PROGRAMS), EVEN IF SmartLabs LLC OR ANY\ + \ SmartLabs LLC REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ADDITION,\ + \ IN NO EVENT DOES SmartLabs LLC AUTHORISE YOU TO USE THE SOFTWARE IN SITUATIONS WHERE FAILURE\ + \ OF THE SOFTWARE TO PERFORM CAN REASONABLY BE EXPECTED TO RESULT IN A PHYSICAL INJURY,\ + \ OR IN LOSS OF LIFE. ANY SUCH USE BY YOU IS ENTIRELY AT YOUR OWN RISK, AND YOU AGREE TO\ + \ HOLD SmartLabs LLC HARMLESS FROM ANY CLAIMS OR LOSSES RELATING TO SUCH UNAUTHORISED USE.\ + \ \n\n5. General\nAll rights of any kind in the Software which are not expressly granted\ + \ in this Agreement are entirely and exclusively reserved to and by SmartLabs LLC. \n\n\ + This agreement contains the entire Agreement between the parties hereto with respect to\ + \ the subject matter hereof, and supersedes all prior agreements and/or understandings (oral\ + \ or written). Failure or delay by SmartLabs LLC in enforcing any right or provision hereof\ + \ shall not be deemed a waiver of such provision or right with respect to the instant or\ + \ any subsequent breach. If any provision of this Agreement shall be held by a court of\ + \ competent jurisdiction to be contrary to law, that provision will be enforced to the maximum\ + \ extent permissible, and the remaining provisions of this Agreement will remain in force\ + \ and effect." json: smartlabs-freeware.json - yml: smartlabs-freeware.yml + yaml: smartlabs-freeware.yml html: smartlabs-freeware.html - text: smartlabs-freeware.LICENSE + license: smartlabs-freeware.LICENSE - license_key: smppl + category: Copyleft Limited spdx_license_key: SMPPL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Secure Messaging Protocol (SMP) Libraries [ACL, CML, SFL] + Distribution Rights + + All source code for the SMP is being provided at no cost and with no financial limitations regarding its use and distribution. Organizations can use the SMP without paying any royalties or licensing fees. The SMP was originally developed by the U.S. Government. BAE Systems is enhancing and supporting the SMP under contract to the U.S. Government. The U.S. Government is furnishing the SMP software at no cost to the vendor subject to the conditions of the SMP Public License provided with the SMP software. + + 29 May 2002 + + Secure Messaging Protocol (SMP) Public License + + The United States Government/Department of Defense/National Security Agency/Office of Network Security (collectively "the U.S. Government") hereby grants permission to any person obtaining a copy of the SMP source and object files (the "SMP Software") and associated documentation files (the "SMP Documentation"), or any portions thereof, to do the following, subject to the following license conditions: + + You may, free of charge and without additional permission from the U.S. Government, use, copy, modify, sublicense and otherwise distribute the SMP Software or components of the SMP Software, with or without modifications developed by you and/or by others. + + You may, free of charge and without additional permission from the U.S. Government, distribute copies of the SMP Documentation, with or without modifications developed by you and/or by others, at no charge or at a charge that covers the cost of reproducing such copies, provided that this SMP Public License is retained. + + Furthermore, if you distribute the SMP Software or parts of the SMP Software, with or without modifications developed by you and/or others, then you must either make available the source code to all portions of the SMP Software (exclusive of any modifications made by you and/or by others) upon request, or instead you may notify anyone requesting the SMP Software source code that it is freely available from the U.S. Government. + + Transmission of this SMP Public License must accompany whatever portions of the SMP Software you redistribute. + + The SMP Software is provided without warranty or guarantee of any nature, express or implied, including without limitation the warranties of merchantability and fitness for a particular purpose. + + The U.S. Government cannot be held liable for any damages either directly or indirectly caused by the use of the SMP Software. + + It is not permitted to copy, sublicense, distribute or transfer any of the SMP Software except as expressly indicated herein. Any attempts to do otherwise will be considered a violation of this License and your rights to the SMP Software will be voided. + + The SMP uses the Enhanced SNACC (eSNACC) Abstract Syntax Notation One (ASN.1) C++ Library to ASN.1 encode and decode security-related data objects. The eSNACC ASN.1 C++ Library is covered by the ENHANCED SNACC SOFTWARE PUBLIC LICENSE. None of the GNU public licenses apply to the eSNACC ASN.1 C++ Library. The eSNACC Compiler is not distributed as part of the SMP. + + Copyright © 1997-2002 National Security Agency json: smppl.json - yml: smppl.yml + yaml: smppl.yml html: smppl.html - text: smppl.LICENSE + license: smppl.LICENSE +- license_key: smsc-non-commercial-2012 + category: Proprietary Free + spdx_license_key: LicenseRef-scancode-smsc-non-commercial-2012 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + Copyright 2012 SMSC + + THIS SOFTWARE PROVIDED BY STANDARD MICROSYSTEMS CORPORATION`("SMSC")IS SAMPLE + CODE INTENDED FOR EVALUATION PURPOSES ONLY. IT IS NOT INTENDED FOR COMMERCIAL + USE. THIS SOFTWARE IS PROVIDED BY SMSC "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 EXPRESSLY AND + SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL SMSC 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. + json: smsc-non-commercial-2012.json + yaml: smsc-non-commercial-2012.yml + html: smsc-non-commercial-2012.html + license: smsc-non-commercial-2012.LICENSE - license_key: snapeda-design-exception-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-snapeda-design-exception-1.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Permissive + text: 'Design Exception 1.0: You and your sub-licensees are hereby licensed to design, manufacture, + use and distribute, circuit board designs and circuit boards formed by combining Design + Files provided by SnapEDA with other circuit elements of your choosing. You may then convey + such combinations under terms of your choice, and are not required to attribute SnapEDA + as the source, even if such actions would otherwise violate the terms of the Creative Commons + License. For clarity, any files shared publicly containing Design Files are still subject + to the Site License restriction of 5.1.(g)' json: snapeda-design-exception-1.0.json - yml: snapeda-design-exception-1.0.yml + yaml: snapeda-design-exception-1.0.yml html: snapeda-design-exception-1.0.html - text: snapeda-design-exception-1.0.LICENSE + license: snapeda-design-exception-1.0.LICENSE - license_key: snia + category: Copyleft spdx_license_key: SNIA other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + STORAGE NETWORKING INDUSTRY ASSOCIATION + PUBLIC LICENSE + Version 1.1 + + 1. Definitions. + + 1.1 "Commercial Use" means distribution or otherwise making the Covered Code available to a third party. + + 1.2 "Contributor" means each entity that creates or contributes to the creation of Modifications. + + 1.3 "Contributor Version" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. + + 1.4 "Covered Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. + + 1.5 "Electronic Distribution Mechanism" means a mechanism generally accepted in the software development community for the electronic transfer of data. + + 1.6 "Executable" means Covered Code in any form other than Source Code. + + 1.7 "Initial Developer" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. + + 1.8 "Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. + + 1.9 "License" means this document. + + 1.10 "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. + + 1.11 "Modifications" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: + A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. + B. Any new file that contains any part of the Original Code or previous Modifications. + + 1.12 "Original Code" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. + + 1.13 "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. + + 1.14 "Source Code" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. + + 1.15 "You" (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity + + 2. Source Code License. + + 2.1 The Initial Developer Grant. The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: + (a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and + (b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). + (c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License. + (d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. + + 2.2 Contributor Grant. Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license + (a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and + (b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). + (c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code. + (d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. + + 3. Distribution Obligations. + + 3.1 Application of License. The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. + + 3.2 Availability of Source Code. Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + + 3.3 Description of Modifications. You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. + + 3.4 Intellectual Property Matters. + (a) Third Party Claims. If Contributor has actual knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter. + (b) Contributor API's. If Contributor's Modifications include an application programming interface and Contributor has actual knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. + (c) Representations. Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. + + 3.5 Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be most likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability (excluding any liability arising from intellectual property claims relating to the Covered Code) incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. + + 3.6 Distribution of Executable Versions. You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligation of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability (excluding any liability arising from intellectual property claims relating to the Covered Code) incurred by the Initial Developer or such Contributor as a result of any such terms You offer. + + 3.7 Larger Works. You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. + + 4. Inability to Comply Due to Statute or Regulation. If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. + + 5. Application of this License. This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. + + 6. Versions of the License. + + 6.1 New Versions. The Storage Networking Industry Association (the "SNIA") may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. + + 6.2 Effect of New Versions. Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by the SNIA. No one other than the SNIA has the right to modify the terms applicable to Covered Code created under this License. + + 6.3 Derivative Works. If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases "Storage Networking Industry Association," "SNIA," or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the SNIA Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) + + 7. DISCLAIMER OF WARRANTY. COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 8. TERMINATION. + + 8.1 This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within a reasonable time after becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. + + 8.2 If You initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as "Participant") alleging that: o (a) such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. + + 8.3 If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. + + 8.4 In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. + + 9. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + + 10. U.S. GOVERNMENT END USERS. The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. + + 11. MISCELLANEOUS This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. + + 12. RESPONSIBILITY FOR CLAIMS. As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + + 13. MULTIPLE-LICENSED CODE. Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of this License or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. + + 14. ACCEPTANCE. This License is accepted by You if You retain, use, or distribute the Covered Code for any purpose. + + EXHIBIT A The SNIA Public License. + + The contents of this file are subject to the SNIA Public License Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at + + www.snia.org/smi/developers/cim/ + + Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. + + The Original Code is . + + The Initial Developer of the Original Code is [COMPLETE THIS] . + + Contributor(s): . + + Read more about this license at http://www.snia.org/smi/developers/open_source/ json: snia.json - yml: snia.yml + yaml: snia.yml html: snia.html - text: snia.LICENSE + license: snia.LICENSE - license_key: snmp4j-smi + category: Commercial spdx_license_key: LicenseRef-scancode-snmp4j-smi other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + SNMP4J-SMI LICENSE AGREEMENT + ============================ + + THIS LICENSE AGREEMENT (this "Agreement") is made effective as of the date the + product is installed by and between (i) Frank Fock, the author of SNMP4J-SMI + ("LICENSOR") and the party executing this Agreement as Licensee ("LICENSEE"). + + + 1. DEFINITIONS. + + 1.1 The term "Software Product" means Frank Fock's SNMP4J-SMI computer + software (including Source Code, derived Object Code, and derived Executable + Code as defined in Section 1.3, 1.4, and 1.5) and documentation thereof, as + specified in Exhibit A, that is provided by LICENSOR to LICENSEE hereunder, + including bug fixes and updates thereto provided by LICENSOR to LICENSEE in + connection with this Agreement. The term "derived" in the above context refers + to the process of creating machine executable code from the original Source + Code only. It does not refer to amendment or alteration of the original + Source Code by LICENSOR or any third party. + + 1.2 The term "Intellectual Property Rights" means patent rights, copyright + rights, trade secret rights, and any other intellectual property rights. + + 1.3 The term "Executable Code" is a fully compiled and linked program that + contains any code derived from the Software Product. It can no longer be altered + or combined with any other code. Executable code is ready to be executed by a + computer and is essentially a complete software image for use in a specific + product. + + 1.4 The term "Object Code" is the compiled version of the Software Product that + can be linked and therefore combined with other code to create Executable Code + as specified in Exhibit A. Examples of Object Code are libraries and software + development kits, in particular SNMP development kits. + + 1.5 The term "Source Code" is the human readable form of the Software Product, + as specified in Exhibit A. + + 1.6 Documentation means the documentation regarding the Licensed Software + provided by LICENSOR to LICENSEE hereunder. + + + 2. GRANT OF LICENSE. + + 2.1 Source and Object Code User License. Subject to the terms and conditions of + this Agreement, and upon payment by LICENSEE to LICENSOR of the one-time license + fee set forth in Addendum A, LICENSOR grants LICENSEE a perpetual (subject to + termination rights in Section 6), non-exclusive, non-transferable license to + reproduce, and use the Object Code for LICENSEE's personal use only. + + 2.2 Except as specified in 2.1, neither the Software Product Source Code nor + Object Code derived from the Software Product may be redistributed or resold. + Executable Code programs derived from the Software Product may be redistributed + and resold without limitation and without royalty, provided that LICENSEE + added significant functionality to those derived Excecutable Code programs. + Functionality in this context refers to the program's behavior, not appearance. + + 2.3 No Sublicense Right. LICENSEE has no right to transfer, or sublicense + the Licensed Software to any third party, except as specified in 2.2 and + except if the third party takes over the business of LICENSEE. + + 2.4 Other Restrictions in License Grants. LICENSEE may not: (i) copy the + Licensed Software, except as necessary to use the Licensed Software in + accordance with the license granted under Section 2.1 and 2.2, and + except for a reasonable number of backup copies. (ii) LICENSEE acknowledges that + Licensed Software is not designed or intended for use in the design, + construction, operation or maintenance of any nuclear facility. + + 2.5 No Trademark License. LICENSEE has no right or license to use any trademark + of LICENSOR during or after the term of this Agreement. + + 2.6 Proprietary Notices. The Licensed Software is copyrighted. All proprietary + notices incorporated in, marked on, or affixed to the Licensed Software by + LICENSOR shall be duplicated by LICENSEE on all copies, in whole or in part, in + any form of the Licensed Software and not be altered, removed, or obliterated on + such copies. + + 2.7 Reservation. LICENSOR reserve all rights and licenses to the Licensed + Software not expressly granted to LICENSEE under this Agreement. + + 2.8 Delivery. Upon execution of this Agreement, and payment of the amounts due + and owing under this Agreement, LICENSOR will provide LICENSEE with one (1) copy + of the Software Product by downloading from LICENSOR's Web site. + + + + 3. WARRANTY. + + 3.1. LICENSOR warrants to LICENSEE that for a period of one year from the date + of purchase, as evidenced by a copy of the receipt, the media on which + Software is furnished (if any) will be free of defects in materials and + workmanship under normal use. Except for the foregoing, Software is + provided "AS IS". LICENSEE exclusive remedy and LICENSOR's entire liability + under this limited warranty will be at LICENSOR's option to replace Software + media or refund the fee paid for Software. Any implied warranties on the + Software are limited to one year after receipt of the software according to + §434 ff Buergerliches Gesetzbuch (BGB). + + 3.2. In no event shall LICENSOR be liable to LICENSEE, in excess of the + price paid to LICENSOR by LICENSEE for the Software Product hereunder, for any + breach of warranty or any claim, loss or damage arising from or relating to the + installation, use or performance of the Software Product (including, without + limitation, any indirect, special, incidental or consequential damages). + + 3.3 The above section (3.2) does not apply for liability for damages caused by + gross negligence or wilful default as well as for liability for personal + injury including threats to life or physical condition. + + 3.4. LICENSOR reserves the right at any time to make changes to the Software + Product. + + 3.5. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS + OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED + WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON + -INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE + HELD TO BE LEGALLY INVALID. + + 3.6 In no event will LICENSOR be liable for any third-party products used with, + or installed in, the Software Product. LICENSOR does not warrant the + compatibility of the Software Product with any third-party products, whether + hardware or software. + + 3.7 General Provision. This warranty shall not apply in any case of amendment or + alterations of the Software Product made by LICENSEE. + + + + 4. INTELLECTUAL AND PROPERTY INDEMNIFICATION. + + 4.1. LICENSOR agrees to indemnify and hold LICENSEE harmless from any final + award of costs and damages against LICENSEE for any action based on infringement + of any German intellectual property rights as a result of the use of the + Licensed Software: (i) under the terms and conditions specified herein; (ii) + under normal use; and (iii) not in combination with other items; provided + that LICENSOR is promptly notified in writing of any such suit or claim + against LICENSEE and further provided that LICENSEE permits LICENSOR to + defend, compromise or settle the same and gives LICENSOR all available + information, reasonable assistance and authority to enable LICENSOR to do + so. LICENSOR'S LIABILITY TO LICENSEE PURSUANT TO THIS ARTICLE IS LIMITED TO THE + TOTAL FEES PAID BY LICENSEE TO LICENSOR IN THE CALENDAR YEAR IN WHICH ANY FINAL + AWARD OF COSTS AND DAMAGES IS DUE AND OWING. + + + 5. TRADE SECRETS AND PROPRIETARY INFORMATION. + + 5.1. LICENSEE acknowledges that LICENSOR is the owner of the Software Product, + that the Software Product is confidential in nature and not in the public + domain, that LICENSOR claims all intellectual and industrial property rights + granted by law therein and that, except as set forth herein, LICENSOR does not + hereby grant any rights or ownership of the Software Product to LICENSEE or + any third party. Except as set forth herein, LICENSEE agrees not to copy or + otherwise reproduce the Software Product, in whole or in part, without + LICENSOR's prior written consent. LICENSEE further agrees to take all + reasonable steps to ensure that no unauthorized persons shall have access to the + Software Product and that all authorized persons having access to the Software + Product shall refrain from any such disclosure, duplication or + reproduction except to the extent reasonably required in the performance of + LICENSEE'S rights under this Agreement. + + 5.2. LICENSEE agrees to accord the Software Product and the Documentation and + all other confidential information relating to this Agreement the same degree + and methods of protection as LICENSEE undertakes with respect to its + confidential information, trade secrets and other proprietary data. + + 5.3. LICENSEE agrees not to challenge, directly or indirectly, the right, title + and interest of LICENSOR in and to the Software Product, nor the + validity or enforceability of LICENSOR's rights under applicable law. LICENSEE + agrees not to directly or indirectly, register, apply for registration or + attempt to acquire any legal protection for the Software Product or any + proprietary rights therein or to take any other action which may adversely + affect LICENSOR's right, title or interest in or to the Software Product in any + jurisdiction. + + 5.4. LICENSEE acknowledges that, in the event of a material breach by LICENSEE + of its obligations under this Article 5, LICENSOR may immediately + terminate this Agreement, without liability to LICENSEE and may bring an + appropriate legal action to enjoin any such breach hereof, and shall be + entitled to recover from LICENSEE reasonable legal fees and costs in + addition to other appropriate relief. + + 5.5. LICENSEE agrees to notify LICENSOR immediately and in writing of all + circumstances surrounding the unauthorized possession or use of the Software + Product and Documentation by any person or entity. LICENSEE agrees to cooperate + fully with LICENSOR in any litigation relating to or arising from such + unauthorized possession or use. + + + 6. TERMINATION. + + 6.1. LICENSOR may terminate this Agreement at any time after the occurrence of + any of the following events if LICENSOR provides 30 days notice of its intention + to terminate as a result of the occurrence and LICENSEE fails to cure such + occurrence within such 30 days: + + (a) LICENSEE is declared or acknowledges that it is insolvent or otherwise + unable to pay its debts as they become due or upon the filing of any proceeding + (whether voluntary or involuntary) for bankruptcy, insolvency or relief from + creditors of LICENSEE; + + (b) LICENSEE assigns or transfers this Agreement or any of its rights to + obligations hereunder, without LICENSOR's prior written consent; or + + (c) LICENSEE violates any material provision of this Agreement, including + without limitation, the payment obligations set forth in Addendum A. + + 6.2. LICENSEE may terminate this Agreement at any time after the occurrence of + any of the following events if LICENSEE provides 30 days notice of its intention + to terminate as a result of the occurrence and LICENSOR fails to cure such + occurrence within such 30 days: + + (a) LICENSOR is declared or acknowledges that it is insolvent or otherwise + unable to pay its debts as they become due or upon the filing of any + proceeding (whether voluntary or involuntary) for bankruptcy, insolvency or + relief from creditors or LICENSOR; or + + (b) LICENSOR violates any material provision of this Agreement. + + 6.3. Upon the termination of this Agreement for any reason, LICENSEE will + discontinue all use of the Software Product and, within ten (10) days after + termination, will destroy or delete all copies of the Software Product then + in its possession, including but not limited to, any back-up or archival copies + of the Software Product and Documentation. At LICENSOR's request, LICENSEE + will verify in writing to LICENSOR that such actions have been taken. + + 6.4. No termination of this Agreement for any reason whatsoever shall in any way + affect the continuing obligations of the parties under Articles 5 hereof. + + + 7. APPLICABLE LAW + + This LICENSE shall be deemed to have been made in, and shall be construed + pursuant to, the laws of Germany, without reference to conflicts of laws + principles. All controversies and disputes arising out of or relating to this + Agreement shall be submitted to the exclusive jurisdiction of Esslingen am + Neckar, Germany, as long as LICENSEE is deemed to be a merchant (as defined by + Handelsgesetzbuch, §1-7). The United Nations Convention on Contracts + for the International Sale of Goods is specifically disclaimed. + + + + 8. GENERAL PROVISIONS. + + 8.1. This Agreement does not create any relationship of association, + partnership, joint venture or agency between the parties. + + 8.2. This Agreement (including the Exhibit and Addendum attached to the + Agreement) sets forth the entire agreement and understandings between the + parties hereto with respect to the subject matter hereof. This Agreement + merges all previous discussions and negotiations between the parties and + supersedes and replaces any and every other agreement, which may have existed + between LICENSOR and LICENSEE with respect to the contents hereof. + + 8.3. Except to the extent and in the manner specified in this Agreement, any + modification or amendment of any provision of this Agreement must be in writing + and bear the signature of the duly authorized representative of each party. + + 8.4. The failure of either party to exercise any right granted herein, or to + require the performance by the other party hereto of any provision if this + Agreement, or the waiver by either party of any breach of this Agreement, shall + not prevent a subsequent exercise or enforcement of such provisions or be deemed + a waiver of any subsequent breach of the same or any other provision of this + Agreement. + + 8.5. Except in the case of merger, acquisition or the sale of substantial assets + or equity of Licensee or assignment to any direct or indirect subsidiary or + affiliate of LICENSEE, LICENSEE shall not sell, assign or transfer any of its + rights, duties or obligations hereunder without the prior written consent of + LICENSOR. LICENSOR reserves the right to assign or transfer this Agreement or + any of its rights, duties and obligations hereunder, to any direct or + indirect subsidiary or affiliate of LICENSOR. + + 8.6. All notices required by this Agreement must be sent by certified mail in + order to be deemed effective when sent to the following: + + FOR LICENSOR: + + Frank Fock + Maximilian-Kolbe-Str. 10 + 73257 Koengen, Germany + + + EXHIBIT A + + Licensed Software + + SNMP4J-SMI v1.x + + a. Object Code (Application Programmers Interface) and sample Source Code + (Java SE 6 or later). + + ADDENDUM A + + In order to obtain a license to use SNMP4J-SMI under this license agreement, + LICENSEE has to purchase a commercial license from LICENSOR. The actual pricing + list and other related information can be found at http://www.agentpp.com or + http://www.snmp4j.org. + + For evaluation purposes and open source use, a fee free license is granted which + restricts the usage of MIB specification with the Software Product to standard + MIB modules which are not registered under the enterprise OID (1.3.6.1.4). json: snmp4j-smi.json - yml: snmp4j-smi.yml + yaml: snmp4j-smi.yml html: snmp4j-smi.html - text: snmp4j-smi.LICENSE + license: snmp4j-smi.LICENSE - license_key: snprintf + category: Permissive spdx_license_key: LicenseRef-scancode-snprintf other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + It may be used for any purpose as long as this notice remains intact on all + source code distributions. json: snprintf.json - yml: snprintf.yml + yaml: snprintf.yml html: snprintf.html - text: snprintf.LICENSE + license: snprintf.LICENSE - license_key: softerra-ldap-browser-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-softerra-ldap-browser-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + END-USER LICENSE AGREEMENT + + This end-user software license agreement is a legal agreement ("Agreement") between you ("Licensee") and Softerra, LLC ("Softerra"), which is the owner of the LDAP Browser Software ("Software"). This Agreement specifies the terms and conditions under which Licensee may use the Software. + + PLEASE READ THIS LICENSE AGREEMENT CAREFULLY BEFORE DOWNLOADING OR USING THE SOFTWARE. + + BY CLICKING ON THE "ACCEPT" BUTTON, OPENING THE PACKAGE, DOWNLOADING THE PRODUCT, OR USING THE EQUIPMENT THAT CONTAINS THIS PRODUCT, YOU ARE CONSENTING TO BE BOUND BY THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL OF THE TERMS OF THIS AGREEMENT, CLICK THE "DO NOT ACCEPT" BUTTON AND THE INSTALLATION PROCESS WILL NOT CONTINUE, OR DO NOT DOWNLOAD THE PRODUCT. + + Definitions + + 'Documentation' means the user documentation, in whatever form available, supplied by Softerra with the Software. + + 'Licensee' means a person or entity that is granted permission through a license to access or otherwise use the Software. + + 'Outsourcee' means a third party engaged by a Licensee in data processing, consulting, or internal information management at locations designated by Licensee or Outsourcee. + + 'Upgrades' means any updates, releases, or enhancements that may be provided within the scope of support services. + + Scope of Use + + License Restrictions. Except as expressly permitted by this Agreement, Licensee may not: (i) lease, loan, resell, sublicense or otherwise distribute the Software; (ii) use the Software for the benefit of any third party, including without limitation, operation in a timesharing arrangement or in a service bureau; (iii) use the Software to develop products competitive with the Software; (iv) permit third-parties access to, or use of, the Software, except as expressly set forth herein; (v) distribute or publish source code(s) of the Software; or (vi) use unauthorized source code(s). Licensee shall notify Softerra if he/she becomes aware of any unauthorized third party access to or use of the Software. + + Outsourcees. If Licensee is contracted with an Outsourcee, Licensee may permit the Outsourcee to access and use the Software provided that: (i) the Outsourcee complies with the terms of this Agreement and accesses and uses the Software solely for purposes of rendering services to Licensee; and (ii) the total number of licenses used by Licensee and Outsourcee do not exceed the number of licenses ordered. Licensee shall ensure that the Outsourcee is informed about and observes the terms and conditions of this Agreement. Upon completion of Licensee's services by the Outsourcee, Licensee shall certify in writing that the Outsourcee has uninstalled and destroyed all copies of Software within thirty (30) days after such completion of services. + + Duplication of Software. The number of Software copies made by Licensee shall not exceed the number of licensed copies ordered plus a reasonable number of archival copies for inactive backup purposes. All Software copyright, trademark, patent, and related proprietary notices incorporated in or fixed to the Software shall be duplicated by Licensee on all copies or extracts thereof and shall not be altered, removed, or obliterated. + + Upgrades + + If the Software and the related documentation are provided as an upgrade to an earlier licensed release of the Software, then you must have a valid license to operate such earlier release of the same version and edition as the upgrade to install or use the upgrade. All software being upgraded is deemed to be a part of the Software and is subject to this Agreement. + + Term and Termination + + The license granted for the Software will continue until it is terminated. Softerra may terminate any license granted herein if Licensee fail to comply with the terms of this Agreement. Upon the termination of a license for any reason, Licensee must promptly return to Softerra or destroy all copies of the Software and related documentation covered by the license. + + Trademarks and Intellectual Property + + Software is the intellectual property of Softerra. + + No Additional Rights or Licenses. You acknowledge and agree that except for the rights granted in this Agreement, all other rights, and all title and interest in and to the Software (as an independent work and as an underlying work serving as a basis for any application you may develop) and related documentation remain the sole and exclusive property of Softerra, and that you will not derive or assert any title or interest in or to the Software or related documentation. Without limiting the generality of the foregoing, you do not receive any rights to any patents, copyrights, trademarks to the Software or related documentation. This Agreement does not authorize you to use Softerra's name or any of its trademarks. + + Limited Warranty SOFTERRA PROVIDES NO REMEDIES OR WARRANTIES, WHETHER EXPRESS OR IMPLIED, FOR THE SOFTWARE. THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS IS". + + You acknowledge that due to the complexity of the Software, it is possible that use of the Software could lead to the unintentional loss or corruption of data. You assume all risks of such data loss or corruption; the warranties provided in this Agreement do not cover any damages or losses resulting from data loss or corruption. + + Limitation on Liability + + Softerra assumes no liability or responsibility for any damages resulting from altering the Software in any way, its misuse, accidents, abuse, misapplication, use of third party software that may conflict with the Software as well as use of the Software with other than a recommended hardware configuration. + + IN NO CASE SHALL SOFTERRA BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES OR LOSS, INCLUDING, WITHOUT LIMITATION, LOST PROFITS OR THE INABILITY TO USE EQUIPMENT OR ACCESS DATA, WHETHER SUCH DAMAGES ARE BASED UPON A BREACH OF EXPRESS OR IMPLIED WARRANTIES, BREACH OF CONTRACT, NEGLIGENCE, STRICT TORT, OR ANY OTHER LEGAL THEORY. THIS IS TRUE EVEN IF SOFTERRA IS ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + Miscellaneous + + This Agreement is the complete agreement between you and Softerra concerning the Software and related documentation. The failure or delay of Softerra to exercise any of its rights under this Agreement or upon any breach of this Agreement shall not be deemed a waiver of those rights or of the breach. json: softerra-ldap-browser-eula.json - yml: softerra-ldap-browser-eula.yml + yaml: softerra-ldap-browser-eula.yml html: softerra-ldap-browser-eula.html - text: softerra-ldap-browser-eula.LICENSE + license: softerra-ldap-browser-eula.LICENSE - license_key: softfloat + category: Permissive spdx_license_key: LicenseRef-scancode-softfloat other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "SoftFloat Legal Notice\n\nSoftFloat was written by John R. Hauser. \n\nThis work was\ + \ made possible in part by the International Computer Science\nInstitute, located at Suite\ + \ 600, 1947 Center Street, Berkeley, California 94704.\nFunding was partially provided by\ + \ the National Science Foundation under grant\nMIP-9311980.\n\nThe original version of this\ + \ code was written as part of a project to build\na fixed-point vector processor in collaboration\ + \ with the University of\nCalifornia at Berkeley, overseen by Profs. Nelson Morgan and John\ + \ Wawrzynek.\n\nTHIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE. Although reasonable effort\n\ + has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT\nTIMES RESULT IN\ + \ INCORRECT BEHAVIOR. USE OF THIS SOFTWARE IS RESTRICTED TO\nPERSONS AND ORGANIZATIONS\ + \ WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY\nAND ALL LOSSES, COSTS, OR OTHER PROBLEMS\ + \ ARISING FROM ITS USE.\n\nDerivative works are acceptable, even for commercial purposes,\ + \ provided\nthat the minimal documentation requirements stated in the source code are\n\ + satisfied." json: softfloat.json - yml: softfloat.yml + yaml: softfloat.yml html: softfloat.html - text: softfloat.LICENSE + license: softfloat.LICENSE - license_key: softfloat-2.0 + category: Permissive spdx_license_key: LicenseRef-scancode-softfloat-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "SoftFloat Legal Notice\n\nWritten by John R. Hauser.\n\nThis work was made possible\ + \ in part by the International Computer Science\nInstitute, located at Suite 600, 1947 Center\ + \ Street, Berkeley, California 94704.\nFunding was partially provided by the National Science\ + \ Foundation under grant\nMIP-9311980.\n\nThe original version of this code was written\ + \ as part of a project to build\na fixed-point vector processor in collaboration with the\ + \ University of\nCalifornia at Berkeley, overseen by Profs. Nelson Morgan and John Wawrzynek.\n\ + \nMore information is available through the Web page \nhttp://www.jhauser.us/arithmetic/SoftFloat-2b/SoftFloat-source.txt\n\ + \nTHIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE. Although reasonable effort\nhas been made\ + \ to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT\nTIMES RESULT IN INCORRECT\ + \ BEHAVIOR. USE OF THIS SOFTWARE IS RESTRICTED TO\nPERSONS AND ORGANIZATIONS WHO CAN AND\ + \ WILL TAKE FULL RESPONSIBILITY FOR ANY\nAND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING\ + \ FROM ITS USE.\n\nDerivative works are acceptable, even for commercial purposes, so long\ + \ as\n(1) they include prominent notice that the work is derivative, and (2) they\ninclude\ + \ prominent notice akin to these three paragraphs for those parts of\nthis code that are\ + \ retained." json: softfloat-2.0.json - yml: softfloat-2.0.yml + yaml: softfloat-2.0.yml html: softfloat-2.0.html - text: softfloat-2.0.LICENSE + license: softfloat-2.0.LICENSE - license_key: softsurfer + category: Permissive spdx_license_key: LicenseRef-scancode-softsurfer other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This code may be freely used and modified for any purpose + providing that this copyright notice is included with it. + Copyright holder makes no warranty for this code, and cannot be held + liable for any real or imagined damage resulting from its use. + Users of this code must verify correctness for their application. json: softsurfer.json - yml: softsurfer.yml + yaml: softsurfer.yml html: softsurfer.html - text: softsurfer.LICENSE + license: softsurfer.LICENSE - license_key: solace-software-eula-2020 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-solace-software-eula-2020 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Version: APRIL 1, 2020\n\nSOLACE CORPORATION\n\nLICENCE AGREEMENT FOR SOLACE SOFTWARE\n\ + \nTHIS LICENCE AGREEMENT and any documents expressly referred to in this agreement (the\ + \ “Agreement”) between SOLACE CORPORATION, a company incorporated under the laws of the\ + \ Province of Ontario (“SOLACE”) and licensee, the party identified in the Order (as defined\ + \ below) or that otherwise accepts this Agreement (the “Licensee”) (together the “Parties”,\ + \ and each a “Party”), is made on the Effective Date (as defined below).\n\nBY ACCEPTING\ + \ THE TERMS OF THIS AGREEMENT, EITHER BY: A) ACCEPTING THE AGREEMENT ONLINE, B) SIGNING\ + \ THE ORDER (AS DEFINED BELOW) WHICH REFERENCES THIS AGREEMENT, OR C) INSTALLING OR USING\ + \ THE SOFTWARE AFTER BEING MADE AWARE OF THIS AGREEMENT, THE LICENSEE ACKNOWLEDGES THAT\ + \ IT HAS READ AND UNDERSTOOD ALL OF THE PROVISIONS, AND HAS THE AUTHORITY TO AGREE TO, AND\ + \ IS CONFIRMING THAT IT IS AGREEING TO, COMPLY WITH AND BE BOUND BY, ALL OF THE TERMS AND\ + \ CONDITIONS CONTAINED HEREIN, TOGETHER WITH THE TERMS SET FORTH IN ANY ORDER. IF, AFTER\ + \ READING THIS AGREEMENT, THE LICENSEE DOES NOT ACCEPT OR AGREE TO THE TERMS AND CONDITIONS\ + \ CONTAINED HEREIN, THE LICENSEE SHALL NOT INSTALL OR USE THE SOFTWARE.\n\nIF YOU ARE AN\ + \ AGENT OR EMPLOYEE OF ANOTHER ENTITY THEN YOU HEREBY REPRESENT AND WARRANT THAT: (I) THE\ + \ INDIVIDUAL ACCEPTING THIS AGREEMENT IS DULY AUTHORIZED TO ACCEPT THIS AGREEMENT ON SUCH\ + \ ENTITY’S BEHALF AND TO BIND SUCH ENTITY, AND (II) SUCH ENTITY HAS FULL POWER, CORPORATE\ + \ OR OTHERWISE, TO ENTER INTO THIS AGREEMENT AND PERFORM ITS OBLIGATIONS HEREUNDER.\n\n\ + 1 INTERPRETATION\n\n1.1 Definitions. In this Agreement the following terms\ + \ shall have the following meanings:\n\n“Core” means (i) a single physical processor core\ + \ or hyper-thread when Solace PubSub+ software is deployed on either a bare-metal server\ + \ or a cloud or virtualization environment that presents physical cores to the software,\ + \ and (ii) a single virtual core when deployed in a cloud or virtualization environment\ + \ that presents virtual cores to the VMR.\n\n“Documentation” means the documentation made\ + \ accessible by SOLACE via a URL provided to\nLicensee.\n\n“Order” means (i) an electronic\ + \ form provided by SOLACE on its website for ordering Software Subscriptions, Professional\ + \ Services, and/or Support and Maintenance Services, or (ii) a written document, including\ + \ a Licensee purchase order, executed by SOLACE and Licensee pursuant to which Licensee\ + \ purchases of Software Subscriptions, Professional Services, and/or Support and Maintenance\ + \ Services from SOLACE.\n\n“Products” means the Software, Documentation, Support and Maintenance\ + \ Services, Professional\nServices and other products and services that are ordered by Licensee\ + \ from SOLACE. “Software” means the SOLACE software product(s) described in an Order.\n\ + “SOLACE Quotation” means SOLACE’s sales quotation document provided by SOLACE to a prospective\ + \ customer which sets out the fees for SOLACE’s Products.\n\n“Subscription” means the right\ + \ granted by SOLACE to Licensee to install and use the Software in accordance with the terms\ + \ of this Agreement and the applicable Order, for the Subscription Term specified in the\ + \ applicable Order.\n\n“Subscription Fee” means the fee payable by Licensee for a Subscription\ + \ in accordance with the terms hereof and the applicable Order.\n\n“Subscription Term” means\ + \ the period of time that Licensee is authorized by SOLACE to install and use the Software\ + \ (including the Documentation).\n\n“Support and Maintenance Services” means the support\ + \ services provided by SOLACE for the\nSoftware in accordance with the Support and Maintenance\ + \ Terms.\n\n“Support and Maintenance Terms” means SOLACE’S policies, terms and conditions\ + \ for the provision of Support and Maintenance Services to its customers, a copy of which\ + \ is available on the SOLACE website at https://solace.com/support.\n\n“Statement of Work”\ + \ or “SOW” shall mean a statement of work in the form attached hereto as Schedule B pursuant\ + \ to which the parties agree upon the Professional Services to be provided by SOLACE to\ + \ Licensee, the fees to be charged, milestones, deliverables and such other terms and conditions\ + \ as the parties may agree upon.\n\n1.2\tCurrency. Unless otherwise specified, all dollar\ + \ amounts in this Agreement, including the symbol\n“$”, refer to United States currency.\n\ + \n2\tLICENSE GRANT\n\n2.1\tGeneral License to Software.\n\n(a) Provided Licensee\ + \ complies with this Agreement, SOLACE hereby grants to Licensee a non-exclusive, non-sublicensable\ + \ (except as permitted in accordance with Section 2.6 below), non-transferable, license,\ + \ during the term of this Agreement, to install and use the Software in object code form\ + \ during the applicable Subscription Term for the number of Cores specified in the Order,\ + \ solely for the Licensee’s internal business purposes and in accordance with the terms\ + \ of this Agreement.\n\n(b) If Licensee requires a license from SOLACE to enable\ + \ Licensee to bundle or otherwise make available a Product with Licensee’s own software,\ + \ such bundling will be pursuant to separate terms to be agreed.\n\n2.2 Documentation.\ + \ Provided Licensee complies with this Agreement, Licensee may reproduce the Documentation,\ + \ for use on an internal basis only, and solely in support of the Licensee’s licensed use\ + \ of the Software. Distribution of the Documentation outside of Licensee is prohibited without\n\ + the express written permission of SOLACE. Licensee must reproduce all copyright and other\ + \ proprietary notices that are on the original copy of the Documentation.\n\n2.3 \ + \ Back-up Copy. In addition to the number of copies of the Software installed and used\ + \ pursuant to Section 2.1 and paid for in accordance with Section 5, Licensee may make one\ + \ copy of each licensed Product per Subscription solely for back-up purposes, provided that\ + \ Licensee reproduces all copyright and other proprietary notices that are on the original\ + \ copy of the Software and such back-up copy is not installed or used other than for back-up\ + \ and recovery purposes. Back-up copies that are used as part of a live or ‘hot’ back-up\ + \ will be subject to additional fees.\n\n2.4 Use Restrictions. Licensee will not:\ + \ (a) reverse engineer, disassemble, decompile, or translate the Software (other than Sample\ + \ Applications), or otherwise attempt to derive the source code version of the Software,\ + \ except if and only to the extent expressly permitted by applicable law, and provided that\ + \ Licensee first approaches SOLACE and seeks permission in writing; (b) except as expressly\ + \ permitted in this Agreement, rent, lease, loan or otherwise in any manner provide, transfer\ + \ or distribute the Products or any part thereof to any third party; (c) use the Software\ + \ in violation of applicable laws; (d) circumvent any user limits or other license timing\ + \ or use restrictions that are built into the Software; and (e) except as expressly permitted\ + \ in this Agreement, reproduce, distribute, publicly perform, publicly display or create\ + \ adaptations or derivative works of or based on the Products.\n\n2.5 Publicly Available\ + \ Software. Portions of the Software include software programs that are distributed by SOLACE\ + \ pursuant to the terms and conditions of a license granted by the copyright owner of such\ + \ software programs and which governs Customer’s use of such software programs (“Publicly\ + \ Available Software”). The Licensee’s use of Publicly Available Software in conjunction\ + \ with the Software in a manner consistent with the terms of this Agreement is permitted,\ + \ however, the Licensee may have broader rights under the applicable license for Publicly\ + \ Available Software and nothing contained herein is intended to impose restrictions or\ + \ limitations on the Licensee’s use of the Publicly Available Software. The warranty, indemnity\ + \ and limitation of liability provisions in this Agreement will apply to all of the Software,\ + \ including Publicly Available Software included in the Software. Copies of such Publicly\ + \ Available Software license agreements are available by contacting Licensor at support@solace.com.\ + \ The source code for certain portions of the Publicly Available Software included in the\ + \ Software (as specified in the copyright notices) is available by contacting SOLACE at\ + \ support@solcae.com within a three (3) year period from the original date of receipt of\ + \ the applicable Software or Adapter and for a fee that shall not exceed Licensor' costs\ + \ associated with the shipping of such software source code.\n\n2.6 Sub-licensing.\ + \ Any sub-licensing of the Software under this Agreement must be expressly authorized\ + \ by SOLACE pursuant to an Order or otherwise in writing. Any attempt by Licensee to sub-license\ + \ or otherwise transfer the Products to a third party in breach of this restriction will\ + \ be void. Any sub-licensing that may be permitted under this Agreement by SOLACE will\ + \ be subject to such sub-licensee agreeing to substantially similar restrictions and obligations\ + \ set out in this Agreement. Licensee will be fully liable for any breach by a sub-licensee\ + \ of any restriction or\nobligation, and SOLACE may bring a Claim against Licensee if SOLACE\ + \ suffers any Losses arising from such breach.\n\n2.7\tEvaluation Licenses.\n\n(a) \ + \ If the Software provided to Licensee under this Agreement is designated by SOLACE in\ + \ an Order or otherwise as an evaluation release (indicated by terms such as “pre- commercial”,\ + \ “alpha,” “beta,” “trial,” “draft,” “early access,” “EA” or “evaluation”) (each an “Evaluation\ + \ Software Release”), Licensee will have the limited right under this Agreement to download\ + \ and install the Software on the number of Cores identified in the Order or, if not identified,\ + \ one Core, for the Licensee’s internal and non-commercial evaluation of the Software.\n\ + \n(b) Licensee acknowledges that the Evaluation Software Release may not meet performance\ + \ and compatibility standards of a production version. The Evaluation Software Release may\ + \ not operate correctly, may be substantially modified by SOLACE prior to first commercial\ + \ shipment, and may be withdrawn completely and never issued for commercial use.\n\n(c)\ + \ If Licensee desires other rights for the Evaluation Software Release,\ + \ Licensee must request from SOLACE a commercial release of the Software.\n\n(d) \ + \ The limited use license granted in subsection (a) will automatically expire on the\ + \ earlier of: (i) the date when the Software is made available to Licensee as a commercially\ + \ available product, and (ii) the date specified in the Order or, if no such date is identified\ + \ in the Order, the date that is 30 days after the date of delivery or provision of the\ + \ Evaluation Software Release to Licensee. Following license expiry Licensee will permanently\ + \ delete or otherwise purge such Evaluation Software Release from Licensee’s systems and,\ + \ if requested by SOLACE, certify the same.\n\n2.8 License of APIs. Provided Licensee\ + \ complies with this Agreement and any terms that SOLACE provides, SOLACE grants to Licensee\ + \ a non-exclusive, royalty free license, during the term of this Agreement, to download,\ + \ install and use, the applicable application programming interfaces that may be made available\ + \ by SOLACE with the Software (“APIs”) solely to create interfaces between the Software\ + \ and the Licensee’s software or third party software on Licensee’s systems.\n\n2.9\tLicense\ + \ to Sample Applications.\n\n(a) SOLACE may, in its sole discretion, provide certain\ + \ sample Software in source code or object code form for the purposes of demonstrating certain\ + \ features enabled by the Software, including demonstrating to Licensees how to build applications\ + \ using APIs, and for use by Licensees with such APIs (each, a “Sample Application”).\n\n\ + (b) Whether provided separately or together with other Software, if SOLACE provides\ + \ such Sample Application to Licensee, then SOLACE hereby grants to Licensee a non- sublicensable,\ + \ non-transferable, non-exclusive, revocable license, to install such Sample Application\ + \ for Licensee’s evaluation for the same duration as the Software with which\ndelivery of\ + \ the Sample Application.\n\n3\tOPTIONAL SERVICES AND SUPPORT\n\n3.1 Optional Services.\ + \ Licensee acknowledge that certain optional services, such as training, integration\ + \ and development services may be provided by SOLACE in association with the Products, and\ + \ access to such services will be provided only pursuant to a Statement of Work executed\ + \ by SOLACE and Licensee and may include separate and additional fees.\n\n3.2\tSupport.\n\ + \n(a) Provided Licensee complies with this Agreement, SOLACE will provide Support\ + \ and Maintenance Services the Software in accordance with SOLACE’s then standard Support\ + \ and Maintenance Terms. The level of support will be dependent on whether Licensee has\ + \ procured either the ‘Premium Support Plan’ or ‘Standard Support Plan’ defined in SOLACE’s\ + \ Support and Maintenance Terms and as specified in the applicable Order.\n\n(b) \ + \ SOLACE may enhance such standard Support and Maintenance Services from time to time in\ + \ its discretion.\n\n(c) For greater clarity, SOLACE’s then standard Support and\ + \ Maintenance Terms do not apply to Evaluation Software Releases, Sample Applications or\ + \ any free versions of the Software that may be made available. SOLACE may make available\ + \ support related information on a free basis for such Software on its publicly accessible\ + \ website or otherwise, and such support related information will, for greater clarity,\ + \ be subject to the limitations and exclusions in this Agreement.\n\n4\tPROPRIETARY RIGHTS\n\ + \n4.1 Intellectual Property Rights. In this Agreement “Intellectual Property Rights”\ + \ means: (a) any and all proprietary rights anywhere in the world provided under: (i) patent\ + \ law; (ii) copyright law (including moral rights); (iii) trademark law; (iv) design patent\ + \ or industrial design law; or (v) any other statutory provision or common law principle\ + \ applicable to this Agreement, including trade secret law, that may provide a right in\ + \ either hardware or information generally or the expression or use of such hardware or\ + \ information; (b) any and all applications, registrations, licenses, sub- licenses, franchises,\ + \ agreements or any other evidence of a right in any of the foregoing. Except for the licenses\ + \ expressly granted herein, othing in this Agreement or the provision of the Products conveys\ + \ or otherwise provides to Licensee title, interest or any Intellectual Property Rights\ + \ in or to: (a) the Products, or (b) know-how, ideas, or any other subject matter protectable\ + \ under laws applicable to Intellectual Property Rights of any jurisdiction. As between\ + \ Licensee and SOLACE, SOLACE and its affiliates and licensors are the sole and exclusive\ + \ owners of the Products, including Intellectual Property Rights therein.\n\n4.2 \ + \ Feedback. Licensee is encouraged to provide to SOLACE suggestions, comments and feedback\ + \ related to the Products (including reporting bugs) (the “Feedback”). Licensee hereby grants\ + \ to SOLACE a license to use, copy, distribute, modify or otherwise adapt, incorporate into\ + \ any software and documentation, including the Products, and sublicense, without attribution\ + \ or compensation to Licensee, all Feedback which SOLACE receives or otherwise\ + \ obtains from\nor will cause all moral rights to be waived in any Feedback.\n\n4.3 \ + \ Third Party Licenses. The Software may contain or require third party software that\ + \ is licensed under third party terms. SOLACE may direct Licensee to such third party\ + \ terms, and in some instances the Software cannot be used or further distributed without\ + \ Licensee’s acceptance of such terms. Any failure of Licensee to agree to the terms applicable\ + \ to such third party software may undermine certain functionality of or prevent Licensee\ + \ from using the Software.\n\n4.4\tOpen Source Software.\n\n(a) Licensee will not\ + \ represent to third parties, or use any third party software or code in conjunction with:\ + \ (i) the Software; or (ii) any software, products, documentation, content or other materials\ + \ developed using the Software, in such a way that: (A) creates, purports to create or has\ + \ the potential to create, obligations for SOLACE with respect to the Software; or (B) grants,\ + \ purports to grant, or has the potential to grant to any third party any rights to or immunities\ + \ under any Intellectual Property Rights of SOLACE, as such rights exist in or relate to\ + \ the Products.\n\n(b) Licensee will not use any Software in any manner, including\ + \ through incorporation, linking, distribution or otherwise, that will cause any Products\ + \ and any Intellectual Property Rights therein to become subject to any encumbrance or terms\ + \ and conditions of any third party or open source license, including any open source license\ + \ listed on http://www.opensource.org/licenses/alphabetical (each an “Open Source License”).\n\ + \n(c) The restrictions, limitations, exclusions and conditions referred to under\ + \ subsection (b) will apply even if SOLACE becomes aware of or fails to act in a manner\ + \ to address any violation or failure to comply therewith. No act by SOLACE that is undertaken\ + \ under this Agreement in respect to any Products will be construed as intending to cause\ + \ any Intellectual Property Rights that are owned or controlled by SOLACE or any of its\ + \ affiliates (or for which SOLACE or any of its affiliates has received license rights)\ + \ to become subject to any encumbrance or terms and conditions of any Open Source License.\n\ + \n4.5\tUse of Name and Logo. Licensee will not display or make any use of SOLACE’s or its\ + \ affiliates’\nnames, marks or logos without the prior written approval of SOLACE.\n\n5\t\ + FEES AND TAXES\n\n5.1 Fees. Licensee shall pay the applicable Subscription Fees and\ + \ support fees specified in the applicable Order. Except as otherwise specified herein or\ + \ in an Order, Subscription Fees are based on Subscriptions purchased and not actual usage.\ + \ Subscription Fees paid are refundable if the number of Subscriptions purchased are decreased\ + \ during the relevant Subscription Term.\n\n5.2 Invoices and Payment. Subscription\ + \ Fees will be invoiced in advance and otherwise in accordance with the relevant Order.\ + \ All invoices issued by SOLACE are due and payable within 30 days of the invoice date unless\ + \ otherwise agreed in an Order. Licensee will be responsible for any and all\nsales, use,\ + \ excise, import, value-added, services, consumption, and other taxes assessed on the receipt\ + \ of the Products, and any related services as a whole.\n\n5.3 Overdue Charges. Any\ + \ payment not received from Customer by the due date may accrue (except with respect to\ + \ charges then subject to a reasonable and good faith dispute), at Licensor' discretion,\ + \ late charges at the rate of 1.5% of the outstanding balance per month (19.57% per annum),\ + \ or the maximum rate permitted by law, whichever is lower, from the date such payment was\ + \ due until the date paid.\n\n6\tCONFIDENTIALITY\n\n6.1\tDefinition of Confidential Information.\n\ + \nIn this Agreement “Confidential Information” of a Party means any information of a Party\ + \ (including in respect to SOLACE any of its affiliates, licensors, customers, employees\ + \ or subcontractors) (the “Disclosing Party”), whether oral, written or in electronic form,\ + \ which has or will come into the possession or knowledge of the other Party (the “Receiving\ + \ Party”) in connection with or as a result of entering into this Agreement that can reasonably\ + \ be considered to be confidential in the circumstances of disclosure or which is designated\ + \ as confidential. The Products, any performance information, service levels, support terms,\ + \ and results of testing of the Software, and the terms of this Agreement are Confidential\ + \ Information of SOLACE. Notwithstanding the foregoing, “Confidential Information” does\ + \ not include information that is:\n\n(a) publicly available when it is received\ + \ by or becomes known to the Receiving Party or that subsequently becomes publicly available\ + \ other than through a direct or indirect act or omission of the Receiving Party (but only\ + \ after it becomes publicly available);\n\n(b) established by evidence to have been\ + \ already known to the Receiving Party at the time of its disclosure to the Receiving Party\ + \ and is not known by the Receiving Party to be the subject of an obligation of confidence\ + \ of any kind;\n\n(c) independently developed by the Receiving Party without any\ + \ use of or reference to the Confidential Information of the Disclosing Party as established\ + \ by evidence that would be acceptable to a court of competent jurisdiction;\n\n(d) \ + \ received by the Receiving Party in good faith without an obligation of confidence\ + \ of any kind from a third party who the Receiving Party had no reason to believe was not\ + \ lawfully in possession of such information free of any obligation of confidence of any\ + \ kind, but only until the Receiving Party subsequently comes to have reason to believe\ + \ that such information was subject to an obligation of confidence of any kind when originally\ + \ received; or\n\n(e) Feedback provided by Licensee or a representative of Licensee.\n\ + \n6.2\tConfidentiality Obligations.\n\n(a) Each Party will, in its capacity as a\ + \ Receiving Party: (i) not use or reproduce Confidential Information of the Disclosing Party\ + \ for any purpose, other than as may be reasonably necessary for the exercise of its rights\ + \ or the performance of its obligations set out in this\nAgreement; and (ii) not disclose,\ + \ provide access to, transfer or otherwise make available any Confidential Information of\ + \ the Disclosing Party to any third party except as expressly permitted in this Agreement.\n\ + \n(b) Each Party may, in its capacity as a Receiving Party, disclose Confidential\ + \ Information of the Disclosing Party: (i) if and to the extent required by a governmental\ + \ authority or otherwise as required by applicable law, provided that the Receiving Party\ + \ must first give the Disclosing Party notice of such compelled disclosure (except where\ + \ prohibited by applicable law from doing so) and must use commercially reasonable efforts\ + \ to provide the Disclosing Party with an opportunity to take such steps as it desires to\ + \ challenge or contest such disclosure or seek a protective order. Thereafter, the Receiving\ + \ Party may disclose the Confidential Information of the Disclosing Party, but only to the\ + \ extent required by applicable law and subject to any protective order that applies to\ + \ such disclosure; and (ii) to: (A) its accountants, internal and external auditors and\ + \ other professional advisors if and to the extent that such persons need to know such Confidential\ + \ Information in order to provide the applicable professional advisory services relating\ + \ to the Receiving Party; and (B) employees of the Receiving Party and its subcontractors\ + \ if and to the extent that such persons need to know such Confidential Information to perform\ + \ their respective obligations under this Agreement;\n\nprovided that any such person is\ + \ aware of the provisions of this Section 6.2 and has entered into a written agreement with\ + \ the Receiving Party that includes confidentiality obligations in respect of such Confidential\ + \ Information of the Disclosing Party that are no less stringent than those contained in\ + \ this Section 6.2.\n\n6.3 Consent to Injunctive Relief. Any unauthorized use or\ + \ disclosure of the Confidential Information of SOLACE, its affiliates or licensors may\ + \ cause irreparable harm and significant injury to SOLACE that would be difficult to ascertain\ + \ or quantify; accordingly Licensee agrees that SOLACE will have the right to seek and obtain\ + \ injunctive or other equitable relief to enforce the terms of this Agreement and without\ + \ limiting any other rights or remedies that SOLACE may have.\n\n7\tWARRANTY AND DISCLAIMER\ + \ OF WARRANTIES.\n\n7.1 Warranty. SOLACE warrants that the Software will materially\ + \ comply with the Documentation during the Subscription Term. If the Software does not\ + \ materially conform with the warranty in the prior sentence, provided that Licensee is\ + \ in compliance with the terms of this Agreement, and all Subscription Fees are fully-paid\ + \ up, SOLACE will provide the support to Licensee in respect to the applicable Software\ + \ to the extent set out in SOLACE’s then current Support and Maintenance Terms, and the\ + \ provision of support to correct the non-compliance with the warranty in this Section will\ + \ be Licensee’s sole and exclusive remedy in the event of non-compliance with the\nwarranty\ + \ in this Section by SOLACE. All other support will be dependent on the plan procured by\n\ + Licensee, as defined in the Support and Maintenance Terms.\n\n7.2\tDisclaimers.\n\n(a) \ + \ EXCEPT AS SET OUT IN SECTION 7.1, THE PRODUCTS AND SUPPORT THAT MAY BE PROVIDED\ + \ BY SOLACE UNDER THIS AGREEMENT, IS PROVIDED ‘AS-IS’ AND ‘AS AVAILABLE’.\n\n(b) \ + \ Except as set out in Section 7.1, the Products and support are without any additional\ + \ warranties of any kind, whether express, implied, collateral, statutory or otherwise.\ + \ SOLACE does not warrant or make any representations regarding the use, or the results\ + \ of the use, of the Products in terms of its correctness, accuracy, reliability, or otherwise.\n\ + \n(c) SOLACE does not represent or warrant that the functionality of the Products\ + \ will meet Licensee requirements, or that the operation of the Products will be uninterrupted\ + \ or error-free, or that the Products or any service enabled by the use of the Software\ + \ will always be available, or that defects in the Products will be corrected.\n\n(d) \ + \ TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW, SOLACE ON ITS OWN BEHALF AND\ + \ ON BEHALF OF ITS AFFILIATES AND LICENSOR(S) EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS,\ + \ WHETHER EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING ANY IMPLIED WARRANTIES, AND\ + \ CONDITIONS OF MERCHANTABLE QUALITY, MERCHANTABILITY, QUALITY, FITNESS FOR A PARTICULAR\ + \ PURPOSE, AND NON-INFRINGEMENT.\n\n(e)\tSome jurisdictions do not allow the exclusion of\ + \ implied warranties, so exclusions in this\nArticle 7 will apply only to the extent permitted\ + \ by applicable law.\n\n8\tLICENSEE INDEMNITY AND EXCLUSION.\n\n8.1\tLicensee Indemnity.\n\ + \n(a) Without limiting SOLACE’s rights and remedies under this Agreement, Licensee\ + \ will indemnify, defend and hold SOLACE, its licensors, affiliates or any of their respective\ + \ directors, officers, employees or agents (together, the “Solace Indemnitees”) harmless\ + \ from and against any and all third party Claims and Losses incurred or otherwise suffered\ + \ by each SOLACE Indemnitee arising out of, resulting from or related to:\n\n(i) \ + \ any use, reproduction or distribution of the Products (notwithstanding the restrictions\ + \ and obligations in this Agreement), as modified or integrated by Licensee in Licensee\ + \ application, which causes an infringement or misappropriation of any Intellectual Property\ + \ Right, publicity or privacy right of any third parties arising in any jurisdiction anywhere\ + \ in the world, except and\nsolely to the extent such infringement is caused by the unmodified\ + \ Software, or portions thereof, as supplied to Licensee by SOLACE under this Agreement;\ + \ or\n\n(ii)\tany use, downloading, distribution, installation, storage, execution, or transfer\ + \ of the Products in breach of this Agreement.\n\n(b) SOLACE may enforce the indemnity\ + \ under this Article 8 on behalf of any or all of the SOLACE Indemnitees. Licensee may\ + \ only bring a Claim against SOLACE and not any SOLACE Indemnitees under this Agreement.\n\ + \n8.2\tSOLACE Indemnity.\n\n(a) SOLACE will defend Licensee from and against any\ + \ and all Claims by a third party incurred or otherwise suffered by Licensee arising out\ + \ of, resulting from or related to a Claim that the Products licensed pursuant to Section\ + \ 2.1 infringe or misappropriate third party copyright or patent rights in Canada or the\ + \ United States of America, and indemnity Licensee from any damages awarded by a court of\ + \ final determination.\n\n(b) Without limitation, Section 8.2 will not be applicable\ + \ and SOLACE will not be liable to defend a Claim to the extent that such Claim is based\ + \ on: (i) Licensee’s use of the Products after SOLACE notifies Licensee to discontinue using\ + \ them; (ii) Licensee combining the Products with non-SOLACE services, products, programs\ + \ or data; or (iii) Licensee altering or modifying the Products.\n\n(c) If SOLACE\ + \ receives information concerning an infringement or misappropriation Claim related to the\ + \ Products, SOLACE may, at its expense and without obligation to do so, either: (i) procure\ + \ the Intellectual Property Rights or other right(s) to continue to use the Product; or\ + \ (ii) replace or modify the Product to make it non-infringing; or (iii) immediately terminate\ + \ this Agreement on written notice to Licensee, in which case SOLACE will refund to Licensee,\ + \ on a pro-rata basis, any pre-paid fees in respect to such Product from the date of such\ + \ termination to the end of the then current Subscription Term for such Product; and this\ + \ Section 8.2(c) states the sole and exclusive remedy of Licensee and the entire liability\ + \ of SOLACE for third party infringement claims and actions.\n\n8.3 Indemnification\ + \ Procedures. Each Party’s obligations under this Article 8 are contingent on all of the\ + \ following: (i) the Party seeking the indemnity (the “Indemnified Party”) must notify the\ + \ other Party (the “Indemnifying Party”), in a timely manner and in writing of the Claim;\ + \ (ii) the Indemnified Party must give the Indemnifying Party sole control over defense\ + \ and settlement of the Claim; (iii) the Indemnified Party must provide the Indemnifying\ + \ Party with reasonable information and assistance, at the Indemnifying Party’s request,\ + \ as needed in defending the Claim (the Indemnifying Party will reimburse the Indemnified\ + \ Party for reasonable expenses that the Indemnified Party incurs in providing that assistance).\ + \ The Indemnified Party may choose to have its counsel, monitor or participate in the defense\ + \ of such a Claim provided that the Indemnified Party will be responsible for the cost of\ + \ its own counsel and the Indemnifying Party’s obligations in this Article 8 do not extend\ + \ to the Indemnified Party’s legal costs should it wish to exercise such right. The Indemnifying\ + \ Party will not be responsible for any settlement made by the Indemnified\nClaim without\ + \ the Indemnified Party’s prior written consent.\n\n9\tLIMITATIONS OF LIABILITY.\n\n9.1\t\ + Definition and Limitations of Liability.\n\n(a) In this Agreement: “Claim” means\ + \ any actual, threatened or potential civil, criminal, administrative, regulatory, arbitral\ + \ or investigative demand, allegation, action, suit, investigation or proceeding or any\ + \ other claim or demand; and “Losses” means any and all damages, fines, penalties, deficiencies,\ + \ losses, liabilities (including settlements and judgments), costs and expenses (including\ + \ interest, court costs, reasonable fees and expenses of lawyers, accountants and other\ + \ experts and professionals or other reasonable fees and expenses of litigation or other\ + \ proceedings or of any Claim, default or assessment).\n\n(b) SUBJECT TO SECTION\ + \ 9.1(d), TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, UNDER NO CIRCUMSTANCES WILL\ + \ SOLACE INDEMNITEES BE LIABLE FOR (A) ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE, EXEMPLARY\ + \ OR CONSEQUENTIAL DAMAGES; OR (B) ANY DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION,\ + \ OR LOSS OF BUSINESS INFORMATION, IN EACH CASE, ARISING OUT OF OR IN CONNECTION WITH THIS\ + \ AGREEMENT, INCLUDING ANY DOWNLOAD, INSTALLATION OR USE OF, OR INABILITY TO USE, THE PRODUCTS;\ + \ EVEN IF SUCH DAMAGES WERE FORESEEABLE, AND REGARDLESS OF WHETHER THE SOLACE INDEMNITIEES\ + \ HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n(c) SUBJECT TO SECTION\ + \ 9.1(d), TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL SOLACE INDEMNITEES’\ + \ TOTAL AGGREGATE LIABILITY IN RESPECT OF THIS AGREEMENT, INCLUDING THE PRODUCTS AND ANY\ + \ SERVICES THAT MAY BE PROVIDED HEREUNDER, FOR ANY AND ALL LOSSES AND CLAIMS EXCEED THE\ + \ AMOUNTS PAID TO SOLACE IN THE 12 MONTHS IMMEDIATELY PRECEDING THE EVENT GIVING RISE TO\ + \ THE CLAIM.\n\n(d)\tCertain Damages Not Excluded or Limited. NOTWITHSTANDING THE FOREGOING,\ + \ SECTIONS 9.1 (b) AND (c) DO NOT APPLY TO (I) DAMAGES ARISING FROM A PARTY’S BREACH OF\ + \ ITS CONFIDENTIALITY OBLIGATIONS HEREUNDER, (II) INDEMNIFICATION CLAIMS, (III) DAMAGES\ + \ ARISING FROM INFRINGEMENT OF A PARTY’S INTELLECTUAL PROPERTY RIGHTS; (IV) ANY CLAIMS FOR\ + \ NON-PAYMENT, (V) FRAUD OR WILLFUL MISCONDUCT, OR (VI) BODILY INJURY OR DEATH.\n\n(e) \ + \ This Article 9 will apply irrespective of the nature of the cause of action, demand\ + \ or Claim, including, breach of contract (including fundamental breach), negligence (including\ + \ gross negligence), tort or any other legal theory, and will survive a fundamental breach\ + \ or breaches of this Agreement or of any remedy contained herein.\n\n10\tTERM AND TERMINATION.\n\ + until the expiry of the Subscription Term set out in the Order or the Agreement terminates\ + \ in accordance with its terms. Subject to payment of the applicable Software Fees, Software\ + \ Subscriptions shall automatically renew for additional periods equal to the expiring Subscription\ + \ Term or one (1) year (whichever is shorter), unless either party gives the other notice\ + \ of non- renewal at least thirty (30) days prior to the end of the then-current Subscription\ + \ Term. The Subscription Fees during any automatic renewal term will be as set forth in\ + \ the applicable Order.\n\n10.2 Termination for Cause. A party may terminate this Agreement\ + \ for cause (i) upon 30 days’ written notice to the other party of a material breach if\ + \ such breach remains uncured at the expiration of such period, or (ii) if the other party\ + \ becomes the subject of a petition in bankruptcy or any other proceeding relating to insolvency,\ + \ receivership, liquidation or assignment for the benefit of creditors.\n\n10.3 Termination\ + \ by SOLACE. SOLACE may terminate this Agreement for cause with immediate effect on written\ + \ notice if Licensee commits a breach of Articles 4 or 5 by Licensee.\n\n10.4 Termination\ + \ of Sample Application and Evaluation Software Release Licenses for Convenience by SOLACE.\ + \ SOLACE may terminate the licenses in respect to the Sample Applications, Evaluation Software\ + \ Releases, and any other Products that may be licensed by SOLACE on a trial basis, at any\ + \ time for convenience, upon written notice to Licensee.\n\n10.5 Termination of Licenses\ + \ of Trial Software. Subject to Section 10.4, if any Software is licensed for use by a Licensee\ + \ on a trial basis, the license to use such Software during a trial period will continue\ + \ for such duration set out in an Order.\n\n10.6 Effects of Termination. Upon termination\ + \ or expiry of this Agreement or specific licenses granted hereunder for any reason, and\ + \ without limiting SOLACE’s other rights or remedies under this Agreement: (a) Licensee\ + \ must permanently delete or destroy, or otherwise purge, all copies (electronic or otherwise)\ + \ of the applicable Products from Licensee’s systems, and any other Confidential Information\ + \ of SOLACE, in Licensee’s possession or control, and, if requested by SOLACE, certify the\ + \ same, and the license and other rights granted to Licensee in this Agreement will terminate;\ + \ (b) termination or expiration of this Agreement or an individual Subscription will result\ + \ in termination of any applicable Support and Maintenance Services; and (c) Licensee will\ + \ not receive a return of any pre-paid fees in respect to the applicable Products, on a\ + \ pro-rata basis or otherwise, except where expressly stated in this Agreement.\n\n10.7\ + \ Survival. Neither the expiration nor the earlier termination of this Agreement will\ + \ release either of the Parties from any obligation or liability that accrued prior to such\ + \ expiration or termination. The provisions of this Agreement requiring performance or fulfilment\ + \ after the expiration or earlier termination of this Agreement, including Articles 4, 5,\ + \ 7, 8, 9, 10, 11, 12, and 13, and such other provisions as are necessary for the interpretation\ + \ thereof and any other provisions hereof, the nature and intent of which is to survive\ + \ termination or expiration of this Agreement, will survive the expiration or earlier termination\ + \ of this Agreement.\n\n11\tAUDIT AND REMEDIATION\n\n11.1 Audit. During the term of\ + \ this Agreement and for two years thereafter, SOLACE or any internal or external audit\ + \ representative acting on behalf of SOLACE (the “SOLACE Audit Representatives”)\nregular\ + \ business hours and upon reasonable prior written notice to Licensee, to audit and inspect\ + \ on a mutually agreed upon date and location any system or facility or part of a system\ + \ or facility to which Licensee has downloaded the Software or is receiving any services\ + \ (or both) in order to verify the performance by Licensee of its obligations under this\ + \ Agreement, including the Licensee’s usage of the Products in accordance with the restrictions\ + \ and terms in this Agreement.\n\n11.2 Remediation. Without limiting SOLACE’s rights\ + \ and remedies under this Agreement, if an audit conducted pursuant to this Agreement reveals\ + \ any error, deficiency or other failure to perform on the part of Licensee including use\ + \ of the Software contrary to the licenses in this Agreement or installed on systems, computers\ + \ or processors for which the Licensee has not paid applicable Subscription Fees: (a) Licensee\ + \ will immediately pay to SOLACE any fees due and payable for Software used in breach of\ + \ the restrictions in this Agreement, plus interest at the lesser of: (i) the rate of 1.5\ + \ percent per month compounded monthly (19.562 percent per annum); or (ii) the maximum rate\ + \ allowed by applicable law, in each case, on the amount outstanding from the date when\ + \ payment is due until the date payment in full is received by SOLACE; and (b) pursue any\ + \ other right or remedy SOLACE may have under this Agreement.\n\n12\tEXPORT COMPLIANCE ASSURANCES\n\ + \n(a) All Products obtained from SOLACE are subject to the export control and economic\ + \ sanctions laws and regulations of Canada, including the Exports and Import Permits Act,\ + \ R.S.C. 1985, c. E-19, Area Control List, Export Control List, and the United States, including\ + \ the\tExport Administration Regulations (“EAR”, 15 CFR 730 \ + \ et seq., http://www.bis.doc.gov/) administered by the Department of Commerce, Bureau\ + \ of Industry and Security, and the Foreign Asset Control Regulations (31 CFR 500 et seq.,\ + \ http://www.treas.gov/offices/enforcement/ofac/) administered by the Department of Treasury,\ + \ Office of Foreign Assets Control (“OFAC”), each as may be amended and updated from time\ + \ to time.\n\n(b) Licensee will not, and will ensure that Licensee will not directly\ + \ or indirectly export, re- export, transfer or release (collectively, “export”) any Products\ + \ to any destination, person, entity or end use prohibited or restricted under Canadian\ + \ or US law, or the laws of the jurisdiction in which Licensee is resident or in which Licensee\ + \ uses the Products, without prior government or regulatory authorization to the extent\ + \ required by applicable laws and regulations.\n\n(c) The US government maintains\ + \ embargoes and sanctions against the countries listed in Country Groups E:1/2 of the EAR\ + \ (Supplement 1 to part 740), including, as at the Effective Date, Cuba, Iran, North Korea,\ + \ Sudan and Syria, as amended from time to time. Licensee will not directly or indirectly\ + \ employ any Product received from SOLACE in missile technology, sensitive nuclear or chemical\ + \ biological weapons activities, or in any manner knowingly transfer any Product to any\ + \ party for any such end use. Licensee will not export Products listed in Supplement 2 to\ + \ part 744 of the EAR for military end-uses, as defined in part 744.21, to the People’s\ + \ Republic of China. Licensee will not transfer any Product to any party listed on any of\ + \ the denied parties lists or specially designated nationals lists maintained under said\ + \ regulations without appropriate US government authorization to the extent required by\ + \ regulation. Licensee acknowledge that other countries may have\ntrade laws pertaining\ + \ to import, use, export or distribution of Products, and that compliance with\ + \ same is Licensee responsibility.\n\n(d) Licensee may not use the Products if Licensee\ + \ is barred from receiving the Products under the laws of Canada, the United States or any\ + \ other country including the country in which Licensee are resident or in which Licensee\ + \ use the Products.\n\n13\tGENERAL\n\n13.1 U.S. Government Users. If Licensee are\ + \ acting on behalf of an agency or instrumentality of the U.S. federal government, the Product,\ + \ as applicable, are “commercial computer software” and “commercial computer software documentation”\ + \ developed exclusively at private expense by SOLACE. Pursuant to FAR 12.212 or DFARS 227\ + \ 7202 and their successors, as applicable, use, reproduction and disclosure of the Products\ + \ is governed by the terms of this Agreement.\n\n13.2 Entire Agreement. This Agreement,\ + \ and the agreements and other documents required to be delivered pursuant to this Agreement,\ + \ constitute the entire and exclusive agreement between SOLACE and Licensee, and sets out\ + \ all the covenants, promises, warranties, representations, conditions and agreements between\ + \ the Parties in connection with the subject matter of this Agreement, and supersedes all\ + \ prior agreements (whether written or oral, pre-contractual or otherwise) and other communications\ + \ between SOLACE and Licensee. There are no covenants, promises, warranties, representations,\ + \ conditions or other agreements, whether oral or written, pre-contractual or otherwise,\ + \ express, implied or collateral, whether statutory or otherwise, between the Parties in\ + \ connection with the subject matter of this Agreement except as specifically set forth\ + \ in this Agreement and any document required to be delivered pursuant to this Agreement.\n\ + \n13.3 Amendments. This Agreement may be modified only by a written amendment agreed\ + \ to by both Licensee and SOLACE, except that SOLACE may modify the Documentation from time\ + \ to time, provided that SOLACE does not materially lessen the description of the functionality\ + \ of the Products as a result of such modification.\n\n13.4 English Language. This\ + \ Agreement is entered into solely in the English language, and if for any reason any other\ + \ language version is prepared by any Party, it will be solely for convenience and the English\ + \ version will govern and control in all respects. If Licensee are located in the province\ + \ of Quebec, Canada, the following applies: The Parties hereby confirm they have requested\ + \ this Agreement and all related documents be prepared in English. Les parties ont exigé\ + \ que le présent contrat et tous les documents connexes soient rédigés en anglais.\n\n13.5\ + \ Waiver. To be effective, any waiver by a Party of any of its rights or any other\ + \ Party’s obligations under this Agreement must be made in a writing signed by the Party\ + \ to be charged with the waiver. No failure or forbearance by any Party to insist upon or\ + \ enforce performance by any other Party of any of the provisions of this Agreement or to\ + \ exercise any rights or remedies under this Agreement or otherwise at law or in equity\ + \ will be construed as a waiver or relinquishment to any extent of such Party’s right to\ + \ assert or rely upon any such provision, right, or remedy in that or any other instance;\ + \ rather, the same will be and remain in full force and effect. A Party’s waiver\nof a\ + \ breach of any term will not be a waiver of any subsequent breach of the same or another\ + \ term.\n\n13.6 Cumulative Rights. The rights of each Party hereunder are cumulative\ + \ and no exercise or enforcement by a Party of any right or remedy hereunder will preclude\ + \ the exercise or enforcement by such Party of any other right or remedy hereunder or which\ + \ such Party is otherwise entitled by law to enforce.\n\n13.7 Severability. If, in\ + \ any jurisdiction, any provision of this Agreement or its application to any Party or circumstance\ + \ is restricted, prohibited or unenforceable, the provision will, as to that jurisdiction,\ + \ be ineffective only to the extent of the restriction, prohibition or unenforceability\ + \ without invalidating the remaining provisions of this Agreement and without affecting\ + \ the validity or enforceability of such provision in any other jurisdiction, or without\ + \ affecting its application to other Parties or circumstances.\n\n13.8 Assignment.\ + \ SOLACE may assign this Agreement or any of the benefits, rights or obligations under this\ + \ Agreement without the prior written consent of the Licensee. Licensee may not assign\ + \ this Agreement or any of the benefits, rights or obligations under this Agreement without\ + \ the prior written consent of SOLACE. Any attempt by Licensee to so assign or transfer\ + \ is null and void. If SOLACE does consent to an assignment of this Agreement, the transferee/assignee\ + \ must be acceptable to SOLACE and agree to the terms and conditions of this Agreement.\n\ + \n13.9 Further Assurances. The Parties will, with reasonable diligence, do all things\ + \ and provide all such reasonable assurances as may be required to consummate the transactions\ + \ contemplated by this Agreement, and each Party will provide such further documents or\ + \ instruments required by any other Party as may be reasonably necessary or desirable to\ + \ effect the purpose of this Agreement and carry out its provisions.\n\n13.10 Governing\ + \ Law and Jurisdiction. This Agreement is governed and interpreted in accordance with the\ + \ laws of the Province of Ontario and the laws of Canada applicable therein, without giving\ + \ effect to its conflict of laws provisions. Any Claim arising out of or related to this\ + \ Agreement must be brought exclusively in a federal or provincial court located in Ottawa,\ + \ Canada, and Licensee hereby consents to the jurisdiction and venue of such courts. Each\ + \ of the Parties irrevocably waives, to the fullest extent it may effectively do so, the\ + \ defence of an inconvenient forum to the maintenance of such action, application or proceeding.\ + \ The Parties will not raise any objection to the venue of any action, application, reference\ + \ or other proceeding arising out of or related to this Agreement in the federal or provincial\ + \ courts sitting in Ottawa, including the objection that the proceedings have been brought\ + \ in an inconvenient forum. A final judgment in any such action, application or proceeding\ + \ is conclusive and may be enforced in other jurisdictions by suit on the judgment or in\ + \ any other manner specified by law. The United Nations Convention on Contracts for the\ + \ International Sale of Goods is expressly disclaimed and will not apply." json: solace-software-eula-2020.json - yml: solace-software-eula-2020.yml + yaml: solace-software-eula-2020.yml html: solace-software-eula-2020.html - text: solace-software-eula-2020.LICENSE + license: solace-software-eula-2020.LICENSE - license_key: spark-jive + category: Proprietary Free spdx_license_key: LicenseRef-scancode-spark-jive other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "License Agreement\n \nThis is a legal agreement between You, the User of the Spark\ + \ application\n(\"The Software\"), and Jive Software (\"Jive Software\"). By downloading\ + \ the Software,\nyou agree to be bound by the terms of this agreement.\n \nAll ownership\ + \ and copyright of the images and icons included in the Software\ndistribution remain the\ + \ property of Jive Software and INCORS GmbH. Jive Software\ngrants to you a nonexclusive,\ + \ non-sublicensable right to use the icons royalty-free\nas part of Spark.\n \nYou may not\ + \ lease, license or sub-license the icons, or a subset of the icons,\nor any modified icons\ + \ to any third party. You may not incorporate them into your\nown software or design products.\n\ + \ \nAll icon files are provided \"As is\" without warranties of merchantability and\nfitness\ + \ for a particular purpose. You agree to hold Jive Software harmless for\nany result that\ + \ may occur during the course of using the licensed icons.\n \nThis License Agreement shall\ + \ be governed and construed in accordance with the\nlaws of Oregon. If any provision of\ + \ this License Agreement is held to be\nunenforceable, this License Agreement will remain\ + \ in effect with the provision\nomitted." json: spark-jive.json - yml: spark-jive.yml + yaml: spark-jive.yml html: spark-jive.html - text: spark-jive.LICENSE + license: spark-jive.LICENSE - license_key: sparky + category: Permissive spdx_license_key: LicenseRef-scancode-sparky other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Copyright, License, and Disclaimer + + The following copyright, license and disclaimer applies to the distributed + Sparky source code, documentation and binaries. + + Copyright (c) 2009, 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. Redistributions must acknowledge that this software was + originally developed by the UCSF Resource for Biocomputing, + Visualization, and Informatics under support by the NIH + National Center for Research Resources, grant P41-RR01081. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER "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 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. json: sparky.json - yml: sparky.yml + yaml: sparky.yml html: sparky.html - text: sparky.LICENSE + license: sparky.LICENSE - license_key: speechworks-1.1 + category: Permissive spdx_license_key: LicenseRef-scancode-speechworks-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The SpeechWorks Public License - Software, Version 1.1\n\nCopyright (c) 2000-2001,\ + \ SpeechWorks International, Inc. \n\nRedistribution and use in source and binary forms,\ + \ with or without \nmodification, are permitted provided that the following conditions are\ + \ met: \n\t* Redistributions of source code must retain the above copyright \n\tnotice,\ + \ this list of conditions and the following disclaimer. \n\t* Redistributions in binary\ + \ form must reproduce the above copyright \n\tnotice, this list of conditions and the following\ + \ disclaimer in the \n\tdocumentation and/or other materials provided with the distribution.\ + \ \n\t* Neither the name of Speech Works International, Inc. (\"SWI\") nor \n\tthe names\ + \ of its contributors may be used to endorse or promote \n\tproducts derived from this software\ + \ without specific prior written \n\tpermission. For written permission contact Director,\ + \ Product \n\tManagement, SpeechWorks International, Inc., 695 Atlantic Ave., \n\tBoston,\ + \ MA 02110.\n\t* Products derived from the software may not be called \"SpeechWorks\", \n\ + \tnor may \"SpeechWorks\" appear in their name, without prior written \n\tpermission of\ + \ SWI.\n\t\nAddional information regarding the use of this software may be noted in the\n\ + README.html file contained in this package.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT\ + \ HOLDERS AND \nCONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES OR \nCONDITIONS,\ + \ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED \nWARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,\ + \ \nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE \nDISCLAIMED. IN NO EVENT SHALL\ + \ SWI OR ITS CONTRIBUTORS BE LIABLE \nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\ + \ OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, \nPROCUREMENT OF SUBSTITUTE\ + \ GOODS OR SERVICES; LOSS OF USE, DATA, \nOR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\ + \ CAUSED AND ON \nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, \nOR TORT\ + \ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY \nOUT OF THE USE OF THIS SOFTWARE,\ + \ EVEN IF ADVISED OF THE \nPOSSIBILITY OF SUCH DAMAGE." json: speechworks-1.1.json - yml: speechworks-1.1.yml + yaml: speechworks-1.1.yml html: speechworks-1.1.html - text: speechworks-1.1.LICENSE + license: speechworks-1.1.LICENSE - license_key: spell-checker-exception-lgpl-2.1-plus + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-spell-exception-lgpl-2.1-plus other_spdx_license_keys: - LicenseRef-scancode-spell-checker-exception-lgpl-2.1-plus is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + In addition, as a special exception, Dom Lachowicz + gives permission to link the code of this program with + non-LGPL Spelling Provider libraries (eg: a MSFT Office + spell checker backend) 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 said providers. If you modify + this file, you may extend this exception to your version of the + file, but you are not obligated to do so. If you do not wish to + do so, delete this exception statement from your version. json: spell-checker-exception-lgpl-2.1-plus.json - yml: spell-checker-exception-lgpl-2.1-plus.yml + yaml: spell-checker-exception-lgpl-2.1-plus.yml html: spell-checker-exception-lgpl-2.1-plus.html - text: spell-checker-exception-lgpl-2.1-plus.LICENSE + license: spell-checker-exception-lgpl-2.1-plus.LICENSE - license_key: spl-1.0 + category: Copyleft Limited spdx_license_key: SPL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + 1. Definitions. + + 1.0.1. "Commercial Use" means distribution or otherwise making the + Covered Code available to a third party. + + 1.1. "Contributor" means each entity that creates or contributes to + the creation of Modifications. + + 1.2. "Contributor Version" means the combination of the Original Code, + prior Modifications used by a Contributor, and the Modifications made + by that particular Contributor. + + 1.3. "Covered Code" means the Original Code or Modifications or the + combination of the Original Code and Modifications, in each case + including portions thereof and corresponding documentation released + with the source code. + + 1.4. "Electronic Distribution Mechanism" means a mechanism generally + accepted in the software development community for the electronic + transfer of data. + + 1.5. "Executable" means Covered Code in any form other than Source + Code. + + 1.6. "Initial Developer" means the individual or entity identified as + the Initial Developer in the Source Code notice required by Exhibit + A. + + 1.7. "Larger Work" means a work which combines Covered Code or + portions thereof with code not governed by the terms of this + License. + + 1.8. "License" means this document. + + 1.8.1. "Licensable" means having the right to grant, to the maximum + extent possible, whether at the time of the initial grant or + subsequently acquired, any and all of the rights conveyed herein. + + 1.9. "Modifications" means any addition to or deletion from the + substance or structure of either the Original Code or any previous + Modifications. When Covered Code is released as a series of files, a + Modification is: + + A. Any addition to or deletion from the contents of a file containing + Original Code or previous Modifications. + + B. Any new file that contains any part of the Original Code or + previous Modifications. + + 1.10. "Original Code"../ means Source Code of computer software code + which is described in the Source Code notice required by Exhibit A as + Original Code, and which, at the time of its release under this + License is not already Covered Code governed by this License. + + 1.10.1. "Patent Claims" means any patent claim(s), now owned or + hereafter acquired, including without limitation, method, process, and + apparatus claims, in any patent Licensable by grantor. + + 1.11. "Source Code"../ means the preferred form of the Covered Code + for + making modifications to it, including all modules it contains, plus + any associated documentation, interface definition files, scripts used + to control compilation and installation of an Executable, or source + code differential comparisons against either the Original Code or + another well known, available Covered Code of the Contributor's + choice. The Source Code can be in a compressed or archival form, + provided the appropriate decompression or de-archiving software is + widely available for no charge. + + 1.12. "You" (or "Your") means an individual or a legal entity + exercising rights under, and complying with all of the terms of, this + License or a future version of this License issued under Section 6.1. + For legal entities, "You" includes any entity which controls, is + controlled by, or is under common control with You. For purposes of + this definition, "control"../ means (a) the power, direct or indirect, + to + cause the direction or management of such entity, whether by contract + or otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. + + 2. Source Code License. + + 2.1 The Initial Developer Grant. + + The Initial Developer hereby grants You a world-wide, royalty-free, + non-exclusive license, subject to third party intellectual property + claims: + + (a) under intellectual property rights (other than patent or + trademark) Licensable by Initial Developer to use, reproduce, modify, + display, perform, sublicense and distribute the Original Code (or + portions thereof) with or without Modifications, and/or as part of a + Larger Work; and + + (b) under Patent Claims infringed by the making, using or selling of + Original Code, to make, have made, use, practice, sell, and offer for + sale, and/or otherwise dispose of the Original Code (or portions + thereof). + + (c) the licenses granted in this Section 2.1(a) and (b) are effective + on the date Initial Developer first distributes Original Code under + the terms of this License. + + (d) Notwithstanding Section 2.1(b) above, no patent license is + granted: 1) for code that You delete from the Original Code; 2) + separate from the Original Code; or 3) for infringements caused + by: + + i) the modification of the Original Code or ii) the combination of the + Original Code with other software or devices. + + 2.2. Contributor Grant. + + Subject to third party intellectual property claims, each Contributor + hereby grants You a world-wide, royalty-free, non-exclusive license + + (a) under intellectual property rights (other than patent + or + trademark) Licensable by Contributor, to use, reproduce, modify, + display, perform, sublicense and distribute the Modifications created + by such Contributor (or portions thereof) either on an unmodified + basis, with other Modifications, as Covered Code and/or as part of a + Larger Work; and + + b) under Patent Claims infringed by the making, using, or selling of + Modifications made by that Contributor either alone and/or in + combination with its Contributor Version (or portions of such + combination), to make, use, sell, offer for sale, have made, and/or + otherwise dispose of: 1) Modifications made by that Contributor (or + portions thereof); and 2) the combination of Modifications made by + that Contributor with its Contributor Version (or portions of such + combination). + + (c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective + on the date Contributor first makes Commercial Use of the Covered + Code. + + (d) notwithstanding Section 2.2(b) above, no patent license is + granted: 1) for any code that Contributor has deleted from the + Contributor Version; 2) separate from the Contributor Version; 3) for + infringements caused by: i) third party modifications of Contributor + Version or ii) the combination of Modifications made by that + Contributor with other software (except as part of the Contributor + Version) or other devices; or 4) under Patent Claims infringed by + Covered Code in the absence of Modifications made by that + Contributor. + + 3. Distribution Obligations. + + 3.1. Application of License. + + The Modifications which You create or to which You contribute are + governed by the terms of this License, including without limitation + Section 2.2. The Source Code version of Covered Code may be + distributed only under the terms of this License or a future version + of this License released under Section 6.1, and You must include a + copy of this License with every copy of the Source Code You + distribute. You may not offer or impose any terms on any Source Code + version that alters or restricts the applicable version of this + License or the recipients' rights hereunder. However, You may include + an additional document offering the additional rights described in + Section 3.5. + + 3.2. Availability of Source Code. + + Any Modification which You create or to which You contribute must be + made available in Source Code form under the terms of this License + either on the same media as an Executable version or via an accepted + Electronic Distribution Mechanism to anyone to whom you made an + Executable version available; and if made available via Electronic + Distribution Mechanism, must remain available for at least twelve (12) + months after the date it initially became available, or at least six + (6) months after a subsequent version of that particular Modification + has been made available to such recipients. You are responsible for + ensuring that the Source Code version remains available even if the + Electronic Distribution Mechanism is maintained by a third party. + + 3.3. Description of Modifications. + + You must cause all Covered Code to which You contribute to contain a + file documenting the changes You made to create that Covered Code and + the date of any change. You must include a prominent statement that + the Modification is derived, directly or indirectly, from Original + Code provided by the Initial Developer and including the name of the + Initial Developer in (a) the Source Code, and (b) in any notice in an + Executable version or related documentation in which You describe the + origin or ownership of the Covered Code. + + 3.4. Intellectual Property Matters. + + (a) Third Party Claims. + + If Contributor has knowledge that a license under a third party's + intellectual property rights is required to exercise the rights + granted by such Contributor under Sections 2.1 or 2.2, Contributor + must include a text file with the Source Code distribution titled + "../LEGAL'' which describes the claim and the party making the claim in + sufficient detail that a recipient will know whom to contact. If + Contributor obtains such knowledge after the Modification is made + available as described in Section 3.2, Contributor shall promptly + modify the LEGAL file in all copies Contributor makes available + thereafter and shall take other steps (such as notifying appropriate + mailing lists or newsgroups) reasonably calculated to inform those who + received the Covered Code that new knowledge has been obtained. + + (b) Contributor APIs. + + If Contributor's Modifications include an application programming + interface ("API"../) and Contributor has knowledge of patent licenses + which are reasonably necessary to implement that API, Contributor must + also include this information in the LEGAL file. + + (c) Representations. + + Contributor represents that, except as disclosed pursuant to Section + 3.4(a) above, Contributor believes that Contributor's Modifications + are Contributor's original creation(s) and/or Contributor has + sufficient rights to grant the rights conveyed by this + License + + . + + 3.5. Required Notices. + + You must duplicate the notice in Exhibit A in each file of the Source + Code. If it is not possible to put such notice in a particular Source + Code file due to its structure, then You must include such notice in a + location (such as a relevant directory) where a user would be likely + to look for such a notice. If You created one or more Modification(s) + You may add your name as a Contributor to the notice described in + Exhibit A. You must also duplicate this License in any documentation + for the Source Code where You describe recipients' rights or ownership + rights relating to Covered Code. You may choose to offer, and to + charge a fee for, warranty, support, indemnity or liability + obligations to one or more recipients of Covered Code. However, You + may do so only on Your own behalf, and not on behalf of the Initial + Developer or any Contributor. You must make it absolutely clear than + any such warranty, support, indemnity or liability obligation is + offered by You alone, and You hereby agree to indemnify the Initial + Developer and every Contributor for any liability incurred by the + Initial Developer or such Contributor as a result of warranty, + support, indemnity or liability terms You offer. + + 3.6. Distribution of Executable Versions. + + You may distribute Covered Code in Executable form only if the + requirements of Section 3.1-3.5 have been met for that Covered Code, + and if You include a notice stating that the Source Code version of + the Covered Code is available under the terms of this License, + including a description of how and where You have fulfilled the + obligations of Section 3.2. The notice must be conspicuously included + in any notice in an Executable version, related documentation or + collateral in which You describe recipients' rights relating to the + Covered Code. You may distribute the Executable version of Covered + Code or ownership rights under a license of Your choice, which may + contain terms different from this License, provided that You are in + compliance with the terms of this License and that the license for the + Executable version does not attempt to limit or alter the recipient's + rights in the Source Code version from the rights set forth in this + License. If You distribute the Executable version under a different + license You must make it absolutely clear that any terms which differ + from this License are offered by You alone, not by the Initial + Developer or any Contributor. You hereby agree to indemnify the + Initial Developer and every Contributor for any liability incurred by + the Initial Developer or such Contributor as a result of any such + terms You offer. + + 3.7. Larger Works. + + You may create a Larger Work by combining Covered Code with other + code + not governed by the terms of this License and distribute the Larger + Work as a single product. In such a case, You must make sure the + requirements of this License are fulfilled for the Covered Code. + + 4. Inability to Comply Due to Statute or Regulation. + + If it is impossible for You to comply with any of the terms of this + License with respect to some or all of the Covered Code due to + statute, judicial order, or regulation then You must: (a) comply with + the terms of this License to the maximum extent possible; and (b) + describe the limitations and the code they affect. Such description + must be included in the LEGAL file described in Section 3.4 and must + be included with all distributions of the Source Code. Except to the + extent prohibited by statute or regulation, such description must be + sufficiently detailed for a recipient of ordinary skill to be able to + understand it. + + 5. Application of this License. + + This License applies to code to which the Initial Developer has + attached the notice in Exhibit A and to related Covered Code. + + 6. Versions of the License. + + 6.1. New Versions. + + Sun Microsystems, Inc. ("Sun") may publish revised and/or new versions + of the License from time to time. Each version will be given a + distinguishing version number. + + 6.2. Effect of New Versions. + + Once Covered Code has been published under a particular version of + the + License, You may always continue to use it under the terms of that + version. You may also choose to use such Covered Code under the terms + of any subsequent version of the License published by Sun. No one + other than Sun has the right to modify the terms applicable to Covered + Code created under this License. + + 6.3. Derivative Works. + + If You create or use a modified version of this License (which you + may + only do in order to apply it to code which is not already Covered Code + governed by this License), You must: (a) rename Your license so that + the phrases "Sun," "Sun Public License," or "SPL"../ or any confusingly + similar phrase do not appear in your license (except to note that your + license differs from this License) and (b) otherwise make it clear + that Your version of the license contains terms which differ from the + Sun Public License. (Filling in the name of the Initial Developer, + Original Code or Contributor in the notice described in Exhibit A + shall not of themselves be deemed to be modifications of this + License.) + + 7. DISCLAIMER OF WARRANTY. + + COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "../AS IS'' BASIS, + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF + DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. + THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE + IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, + YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE + COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER + OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF + ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS + DISCLAIMER. + + 8. TERMINATION. + + 8.1. This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to cure + such breach within 30 days of becoming aware of the breach. All + sublicenses to the Covered Code which are properly granted shall + survive any termination of this License. Provisions which, by their + nature, must remain in effect beyond the termination of this License + shall survive. + + 8.2. If You initiate litigation by asserting a patent infringement + claim (excluding declaratory judgment actions) against Initial Developer + or a Contributor (the Initial Developer or Contributor against whom + You file such action is referred to as "Participant") alleging + that: + + (a) such Participant's Contributor Version directly or indirectly + infringes any patent, then any and all rights granted by such + Participant to You under Sections 2.1 and/or 2.2 of this License + shall, upon 60 days notice from Participant terminate prospectively, + unless if within 60 days after receipt of notice You either: (i) + agree in writing to pay Participant a mutually agreeable reasonable + royalty for Your past and future use of Modifications made by such + Participant, or (ii) withdraw Your litigation claim with respect to + the Contributor Version against such Participant. If within 60 days + of notice, a reasonable royalty and payment arrangement are not + mutually agreed upon in writing by the parties or the litigation claim + is not withdrawn, the rights granted by Participant to You under + Sections 2.1 and/or 2.2 automatically terminate at the expiration of + the 60 day notice period specified above. + + (b) any software, hardware, or device, other than such Participant's + Contributor Version, directly or indirectly infringes any patent, then + any rights granted to You by such Participant under Sections 2.1(b) + and 2.2(b) are revoked effective as of the date You first made, used, + sold, distributed, or had made, Modifications made by that + Participant. + + 8.3. If You assert a patent infringement claim against Participant + alleging that such Participant's Contributor Version directly or + indirectly infringes any patent where such claim is resolved (such as + by license or settlement) prior to the initiation of patent + infringement litigation, then the reasonable value of the licenses + granted by such Participant under Sections 2.1 or 2.2 shall be taken + into account in determining the amount or value of any payment or + license. + + 8.4. In the event of termination under Sections 8.1 or 8.2 above, + all + end user license agreements (excluding distributors and resellers) + which have been validly granted by You or any distributor hereunder + prior to termination shall survive termination. + + 9. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT + (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL + DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, + OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR + ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY + CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, + WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER + COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN + INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY + RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW + PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE + EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO + THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + + 10. U.S. GOVERNMENT END USERS. + + The Covered Code is a "commercial item," as that term is defined in + 48 + C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" + and "commercial computer software documentation,"../ as such terms are + used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. + 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all + U.S. Government End Users acquire Covered Code with only those rights + set forth herein. + + 11. MISCELLANEOUS. + + This License represents the complete agreement concerning subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. This License shall be governed by + California law provisions (except to the extent applicable law, if + any, provides otherwise), excluding its conflict-of-law provisions. + With respect to disputes in which at least one party is a citizen of, + or an entity chartered or registered to do business in the United + States of America, any litigation relating to this License shall be + subject to the jurisdiction of the Federal Courts of the Northern + District of California, with venue lying in Santa Clara County, + California, with the losing party responsible for costs, including + without limitation, court costs and reasonable attorneys' fees and + expenses. The application of the United Nations Convention on + Contracts for the International Sale of Goods is expressly excluded. + Any law or regulation which provides that the language of a contract + shall be construed against the drafter shall not apply to this + License. + + 12. RESPONSIBILITY FOR CLAIMS. + + As between Initial Developer and the Contributors, each party is + responsible for claims and damages arising, directly or indirectly, + out of its utilization of rights under this License and You agree to + work with Initial Developer and Contributors to distribute such + responsibility on an equitable basis. Nothing herein is intended or + shall be deemed to constitute any admission of liability. + + 13. MULTIPLE-LICENSED CODE. + + Initial Developer may designate portions of the Covered Code as + ?Multiple-Licensed?. ?Multiple-Licensed? means that the Initial + Developer permits you to utilize portions of the Covered Code under + Your choice of the alternative licenses, if any, specified by the + Initial Developer in the file described in Exhibit A. + + Exhibit A -Sun Public License Notice. + + The contents of this file are subject to the Sun Public License + + Version 1.0 (the License); you may not use this file except in + + compliance with the License. A copy of the License is available at + + http://www.sun.com/ + + The Original Code is . The Initial Developer of the + + Original Code is . Portions created by are Copyright + + (C) . All Rights Reserved. + + Contributor(s): . + + Alternatively, the contents of this file may be used under the terms + + of the license (the ?[ ] License?), in which case the + + provisions of [ ] License are applicable instead of those above. + + If you wish to allow use of your version of this file only under the + + terms of the [ ] License and not to allow others to use your + + version of this file under the SPL, indicate your decision by deleting + + the provisions above and replace them with the notice and other + + provisions required by the [ ] License. If you do not delete the + + provisions above, a recipient may use your version of this file under + + either the SPL or the [ ] License. + + [NOTE: The text of this Exhibit A may differ slightly from the text of + + the notices in the Source Code files of the Original Code. You should + + use the text of this Exhibit A rather than the text found in the + + Original Code Source Code for Your Modifications.] json: spl-1.0.json - yml: spl-1.0.yml + yaml: spl-1.0.yml html: spl-1.0.html - text: spl-1.0.LICENSE + license: spl-1.0.LICENSE - license_key: splunk-3pp-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-splunk-3pp-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + End User License Agreement for Third-Party Content + READ CAREFULLY: LICENSOR LICENSES THIS PROGRAM, TOOL, PLUG-IN, ADD-ON, APPLICATION, LIBRARY, CONTENT, DATA, SOLUTION, SERVICE OR OTHER ITEM OR MATERIAL (THE "CONTENT") TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS END USER LICENSE AGREEMENT ("AGREEMENT"). + + Splunk Apps hosts certain content created and published by individuals and entities other than Splunk Inc. or its affiliates ("Splunk"). Such third-party content made available through Splunk Apps are licensed, not sold, to you. Your license to each content that you obtain through Splunk Apps is subject to your prior acceptance of this End User License Agreement, and you agree that the terms of this Agreement will apply to each Content that you license through Splunk Apps. + + Responsibility. If you are downloading, accessing or using the Content provided or authored by a third-party developer or provider, this Agreement is solely between the developer or provider of the Content ("Licensor") and you, and not with Splunk. Licensor, and not Splunk, is solely responsible for the Content, including, without limitation, for any warranties, maintenance and support, notices and consents to be given to Users. You agree to foregoing even if the Content has been examined against best practices for Splunk development, deemed cloud compatible or otherwise vetted by Splunk. Notwithstanding the above, you acknowledge that Splunk is a third-party beneficiary of this Agreement and that upon your acceptance of the terms of this Agreement, Splunk will have the right to enforce the Agreement against you as a third-party beneficiary thereof. Questions, complaints or claims with respect to the Content should be directed solely to the Licensor, whose contact information can be found on the Content Download Page from which the Content is downloaded. + + Qualified User. The Content is to be used only in conjunction with the specific Splunk software product or service identified in materials distributed with the Content, with which such Content was designed to operate ("Splunk Software"). Therefore, you may use the Content only if you are an authorized user of the Splunk Software. This Agreement does not modify or alter the terms of the software license agreement delivered with the Splunk Software. + + License. Subject to the terms and conditions of this Agreement, Licensor grants to you a license to download and use the Content in connection with the Splunk Software. + + Warranty. THE CONTENT IS FURNISHED ON AN "AS IS" BASIS, AND LICENSOR DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION, WARRANTIES OF NON-INFRINGEMENT OF THIRD-PARTY RIGHTS, OR OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, AND ANY WARRANTIES ARISING BY STATUTE OR OTHERWISE IN LAW, OR FROM A COURSE OF DEALING OR USAGE OF TRADE. LICENSOR SPECIFICALLY DOES NOT WARRANT THAT THE CONTENT WILL MEET YOUR REQUIREMENTS; WILL OPERATE IN ALL THE COMBINATIONS WHICH MAY BE SELECTED FOR USE BY YOU; THAT THE OPERATION OF THE CONTENT WILL BE ERROR-FREE OR UNINTERRUPTED, ACCURATE, USEFUL, RELIABLE, OR COMPLETE; OR THAT ALL ERRORS OR DEFECTS IN THE CONTENT WILL BE CORRECTED. NEITHER SPLUNK NOR LICENSOR SHALL BE LIABLE FOR ANY DAMAGES WHATSOEVER ARISING FROM OR RELATING TO YOUR USE OR INABILITY TO USE THE CONTENT. YOU USE THE CONTENT AT YOUR OWN RISK. + + Limitation of Liability. UNDER NO CIRCUMSTANCES WILL SPLUNK OR LICENSOR BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL OR EXEMPLARY DAMAGES, FOR LOSS OF PROFITS, USE, REVENUE, OR DATA OR FOR BUSINESS INTERRUPTION (REGARDLESS OF THE LEGAL THEORY FOR SEEKING SUCH DAMAGES OR OTHER LIABILITY) ARISING OUT OF OR IN CONNECTION WITH USE OF THE CONTENT, WHETHER OR NOT SPLUNK OR LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ADDITION, THE LIABILITY OF SPLUNK OR LICENSOR ARISING OUT OF OR RELATING TO THE CONTENT WILL NOT EXCEED THE AMOUNT PAID OR PAYABLE BY YOU (IF ANY) FOR SUCH CONTENT. + + General. This Agreement will be governed by and construed in accordance with the laws of the State of California (and, to the extent controlling, the federal laws of the United States, without reference to the conflicts-of-laws rules thereof). The UN Convention on Contracts for the International Sale of Goods and the Uniform Computer Information Transaction Act shall not apply to this Agreement. This Agreement constitutes the entire agreement between Licensor and you with respect to the Content and may not be modified except by a written instrument executed by you and an authorized representative of Licensor. json: splunk-3pp-eula.json - yml: splunk-3pp-eula.yml + yaml: splunk-3pp-eula.yml html: splunk-3pp-eula.html - text: splunk-3pp-eula.LICENSE + license: splunk-3pp-eula.LICENSE - license_key: splunk-mint-tos-2018 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-splunk-mint-tos-2018 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Splunk MINT Terms of Service + Last revised: April 16, 2018 + + These Splunk MINT Terms of Service between you and Splunk Inc., a Delaware corporation (“Splunk”), as updated from time to time, and together with the documents and policies referred to herein (collectively, the “Agreement”), govern your access to and use of the Service. By accessing or using the Service in any manner, you are agreeing to the Agreement. + + In this Agreement, “Splunk,” “we,” “us,” and “our” refers to Splunk Inc., a Delaware corporation, and “Customer,” “you,” and “your” refers to the entity on whose behalf you are entering into this Agreement or, if there is no such entity, you as an individual. Section 20 contains definitions of other terms that are capitalized in this Agreement. + + By clicking on the “I accept” button or other button or mechanism designed to acknowledge agreement to the terms of an electronic copy of this Agreement by creating an account with us or otherwise using the Site or any of the Services, or by downloading, installing, accessing, or otherwise copying or using all or any portion of the Software, (i) you accept this Agreement on behalf of the entity for which you are authorized to act (e.g., an employer) and acknowledge that such entity is legally bound by this Agreement or, if there is no such entity for which you are authorized to act, you accept this Agreement on behalf of yourself as an individual and acknowledge that you are legally bound by this Agreement, and (ii) you represent and warrant that you have the right, power and authority to act on behalf of and bind such entity (if any) and yourself. Also, to enter into this Agreement and thereby use the Site, Services and Software, you as an individual must be at least 18 years old. Accordingly, you represent and warrant that you are at least 18 years old. + + IF YOU DO NOT AGREE TO THE TERMS CONTAINED IN THIS AGREEMENT, OR IF YOU DO NOT HAVE THE RIGHT, POWER AND AUTHORITY TO ACT ON BEHALF OF AND BIND SUCH ENTITY OR YOURSELF AS AN INDIVIDUAL (IF THERE IS NO SUCH ENTITY), DO NOT SELECT THE “I ACCEPT” BUTTON OR OTHER BUTTON OR MECHANISM DESIGNED TO ACKNOWLEDGE AGREEMENT, DO NOT USE ANY OF THE SPLUNK MATERIALS, AND DO NOT DOWNLOAD, INSTALL, ACCESS OR OTHERWISE COPY OR USE ALL OR ANY PORTION OF THE SOFTWARE. THE SPLUNK MATERIALS ARE BEING LICENSED AND NOT SOLD TO YOU. SPLUNK PERMITS YOU TO DOWNLOAD, INSTALL, ACCESS, OR OTHERWISE COPY OR USE THE SPLUNK MATERIALS (INCLUDING THE FUNCTIONALITY OR FEATURES THEREOF) ONLY IN ACCORDANCE WITH THIS AGREEMENT. + + 1. Registration. + + Customer may be required to register and establish an account in order to access and use Splunk Materials. If so, Customer must: (i) provide true, accurate, current and complete information on the applicable registration form (collectively, the “Registration Data”) and (ii) maintain and promptly update the Registration Data to ensure that it remains true, accurate, current and complete. If we have reasonable grounds to suspect that your information is untrue, inaccurate, not current, or incomplete, we may suspend or terminate your account and/or disable and prohibit any and all current or future access to and use of all or any portion of the Splunk Materials by you. Customer must provide a valid email address for each person authorized to use Customer’s account. Each person who uses the Service must have a separate username and password. Customer must provide any other information requested by Splunk in order to complete the registration process. Customer will maintain (and is responsible for maintaining) the confidentiality of the user name, password and other Registration Data associated with its account. Customer may not share Customer passwords or access codes with a third party. Customer is responsible for any access and use of the Splunk Materials via Customer’s or its User’s accounts and for all activities that occur in connection with Customer’s or its User’s accounts, regardless of whether the activities were undertaken by Customer, its User, or a third party. Splunk will not be liable for any loss or damage arising from Customer’s (or one or more of its User’s) failure to comply with this Section, including any loss or damage arising from the failure to (a) maintain the confidentiality of a user name, password or other Registration Data, (b) immediately notify Splunk of any unauthorized access to or use of Customer’s password or account or any other breach of security, and (c) ensure that Customer exits from its account at the end of each session. Customer agrees to notify Splunk immediately if it believes that an unauthorized third party may be using Customer’s account or if Customer’s account information is lost or stolen. Customer is solely responsible for its Users’ compliance with the Agreement. + + 2. Service. + + Splunk will make the Service available to you during the term of this Agreement. Subject to and conditioned on Customer’s continuing compliance with the terms and conditions of this Agreement, Customer may (i) access and use the Site and the Services in accordance with the Documentation and this Agreement and in connection with Customer’s use of the designated Splunk software product or service, and (ii) access and use the results, reports and other information generated with respect to the performance of the Customer App that is made available to Customer through the Services (including copies of such results, reports and other information), in each case to monitor, maintain and improve the Customer App. Customer is responsible for obtaining and maintaining all telecommunications, broadband and computer equipment and services needed to access and use the Service and for paying all charges related thereto, including, without limitation, Internet service provider fees, telecommunications fees, and the costs of any equipment and third-party software (including, without limitation, encryption and other security technology). + + 3. Software. + + 3.1. License to Software. Access to the Service may require or allow for use of one or more Software applications offered by Splunk. Use of all Software is subject to the end user license agreement provided or referenced by Splunk in connection with such Software. In the case of the Splunk SDK, the following would apply: Subject to and conditioned on Customer’s continuing compliance with the terms and conditions of this Agreement, including without limitation compliance with the obligations regarding the End User Requirements, Splunk hereby grants Customer a non-exclusive, limited, non-transferable, revocable, royalty-free license (without the right to sublicense except as expressly permitted by this Section) to: (i) install, use, and copy the Splunk SDK for the purpose of debugging, monitoring, developing and operating the Customer App, and (ii) include the Splunk SDK in the Customer App and distribute to End Users (directly or indirectly in accordance with Customer’s regular distribution channels for the Customer App) the Splunk SDK as contained within the Customer App. Unless otherwise stated on the download page, this license to the Splunk SDK is perpetual, but you may not be able to view data or results generated by the Splunk SDK if the Service is terminated or expired. + + 3.2. End User Requirements. For each distribution and copy of the Customer App that contains the Splunk SDK, Customer will require the applicable End User to enter into a legally binding license agreement with Customer that, at a minimum, complies with the following criteria (“End User Requirements”): (a) limits the license grant to use of the Customer App by the End User on the applicable mobile device(s) on a specified mobile platform or on applicable web browsers; (b) disclaims all warranties by and on behalf of Splunk; (c) limits all liabilities of Splunk; (d) prohibits decompilation and other reverse engineering of the Splunk Materials; (e) provides that Customer will protect the privacy and legal rights of End Users under all applicable laws and regulations, which includes communicating a legally adequate privacy notice; (f) notifies End Users that certain information will be made available to Customer, Splunk and other entities and that additional charges (e.g., data usage charges) may be incurred by End Users (e.g., in the transmission of such information) by their mobile service providers or internet service providers; (g) obtains sufficient authorization from End Users to transfer such information to Customer, Splunk and other entities and to permit the storage and processing of such information; and (h) otherwise obtains and maintains any required consents from End Users to allow Splunk (including its service providers) to provide or have provided the Services, including without limitation consent for Customer, Splunk and other entities to access, monitor, use and disclose End User data. In the license agreement with End Users, Customer will not refer to Splunk by name or with other identifying information; instead, Customer will address the End User Requirements by referring to its “suppliers,” “licensors” and “service providers” (or using similar words that refer to Splunk). + + 4. License Restrictions. + + Except as expressly permitted in this Agreement or by Splunk, Customer may not, and will not permit any third party to: (a) copy or modify, translate, or create any derivative works of all or any portion of the Splunk Materials; (b) reverse engineer (except and only to the extent specifically allowed by law), decompile, disassemble or otherwise attempt to discover the source code, object code or underlying structure, ideas, algorithms, methods, or techniques used or embodied in the Splunk Materials; (c) distribute, rent, loan, lease, sell, sublicense, or otherwise transfer all or any portion of the Splunk Materials or any rights granted in this Agreement to any other person or legal entity; (d) use the Splunk Materials for timesharing, or service bureau purposes, or for any purpose other than its own internal business purposes; (e) access or use the Splunk Materials in order to monitor its availability, performance, or functionality for the purpose of developing a competing or similar product or services; (f) remove, circumvent, disable, damage or otherwise interfere with any security features of the Splunk Materials; (g) gain or attempt to gain unauthorized access to the Site or the Service (in whole or in part), other accounts, computer systems, or networks related to the Site or the Service (whether through hacking, password mining or any other means); (h) remove, alter, or obscure any copyright, trademark, confidentiality or proprietary or other notices, labels, or marks from or on the Splunk Materials; (i) interfere with or disrupt the Service, or servers or networks connected to any website through which the Service is provided; (j) use Splunk SDKs to send data to a location other than the Service or Splunk; or (k) use the Service other than in accordance with this Agreement and in compliance with all applicable laws and regulations (including, but not limited to, any applicable privacy laws and intellectual property laws). Splunk has the right (but not the obligation) to monitor Customer’s usage of the Service to verify compliance with this Agreement. + + 5. Splunk Ownership. + + Splunk and/or its suppliers, licensors and service providers own all worldwide right, title and interest in and to the Splunk Materials, including all worldwide patent rights; copyright rights (including those with respect to computer software, software design, software code, software architecture, programming tools, graphical user interfaces, applications programming interfaces, reports, dashboards, templates, business rules, use cases, screens, alerts, notifications, drawings, specifications and databases); trade secrets and other rights with respect to confidential or proprietary information; know-how; other rights with respect to inventions, discoveries, ideas, improvements, techniques, formulae, algorithms, processes, schematics, testing procedures, technical information and other technology; and any other intellectual property and proprietary rights, whether or not subject to registration; and all rights under any license or other arrangement with respect to the foregoing. Except as expressly stated in this Agreement, Splunk does not grant Customer any license or other rights under or with respect to any intellectual property rights in the Splunk Materials; all right, title, and interest in and to the Splunk Materials not expressly granted in this Agreement remain with Splunk and/or its suppliers, licensors and service providers; and no license or other rights with respect to the Splunk Materials or related intellectual property rights shall be implied. “Splunk” and related trademarks and service marks (including related graphics and logos) and trade names used on or in the Splunk Materials are the trademarks or service marks of Splunk, and Customer may not use, or authorize the use of, such trademarks, service marks or trade names without Splunk’s written permission (whether in connection with any products or services or otherwise). Other trademarks, service marks, and trade names that may appear on or in the Splunk Materials are the property of their respective owners. + + 6. Customer Content; Responsibilities + + 6.1. Representations. By submitting or transmitting Customer Content on or through the Site or the Service, Customer acknowledges and represents that: (a) Customer is the owner of Customer Content and/or has the requisite rights to submit and distribute Customer Content in connection with the Service and to grant the licenses set forth in this Agreement; (b) Customer Content does not infringe or misappropriate any intellectual property or proprietary right of any third party or violate any applicable laws, rules or regulations; and (c) any Customer Content provided to Splunk in connection with Customer’s registration for, or use of, the Service is and shall remain true, accurate, and complete. + + 6.2. License to Customer Content. By submitting or posting Customer Content on areas of the Site or the Service, Customer grants Splunk a worldwide, royalty free, non-exclusive license to access and use such Content on the Site or the Service for the purpose of providing the Service to Customer, responding to Customer’s or Users’ request for technical assistance with respect to the Service or in connection with customer support matters. + + 6.3. Responsibility for Customer Content. Customer is the owner and/or controller of all of Customer Content that Customer transmits to or uses in connection with the Service. Customer is solely responsible for all Customer Content, including without limitation, for: (a) the accuracy, quality and legal use of Customer Content and the means by which Customer acquired Customer Content (including, without limitation, Customer Data), and (b) taking steps to maintain appropriate security, protection, and backup of Customer Content (which may include the use of encryption technology to protect Customer Content from unauthorized access), and routine archiving of Customer Content. By submitting, transmitting or otherwise making Customer Content available to Splunk and/or others, Customer acknowledges and agrees that: (i) Customer will evaluate and bear all risks associated with Customer Content; (ii) under no circumstances will Splunk be liable in any way for Customer Content, including, but not limited to, any loss or damage, any errors or omissions, or any unauthorized access or use; and (iii) Customer (and not Splunk) is responsible for securing and protecting the confidentiality of Customer Content. + + 6.4. No Personal or Sensitive Data. Customer agrees not to transmit any personal information to the Site or the Service, as personal information may be defined by applicable law due to the data type, use or location, except in connection with registering and establishing an account with Splunk. Customer acknowledges that Splunk may use third-party service providers in connection with the Service, including, without limitation, the use of cloud computing service providers, which may transmit, maintain and store Customer Data using third-party computers and equipment in locations around the globe. Customer acknowledges that any data storage functionality associated with the Service is not intended for the storage of sensitive personal data. Customer agrees not to upload or otherwise submit any sensitive personal data in connection with the Service. In particular, Customer agrees not to transmit or store within the Service any (i) protected health information, as defined in the Health Insurance Portability and Accountability Act of 1996 (45 C.F.R. § 160.103) as amended and supplemented by the Health Information Technology for Economic and Clinical Health Act, as each is amended from time to time (collectively “HIPAA”), (ii) financial information protected under the Gramm-Leach-Bliley Act, (iii) information protected under the Children’s Online Privacy Protection Act of 1998 (“COPPA”), or (iv) information protected by the International Traffic in Arms Regulations, or export-controlled as provided in Section 19. Customer further agrees that Splunk will have no responsibility or liability with respect to any such sensitive data that is processed, transmitted, disclosed, or stored in connection with the Service. In particular, Customer agrees not to cause, or otherwise request that, Splunk create, receive, maintain or transmit protected health information for or on behalf of Customer in connection with the Service or in any manner that would make Splunk a Business Associate (as defined at 45 C.F.R. § 160.103 of HIPAA) to Customer, and Splunk specifically disclaims any responsibility or obligation to act as a Business Associate. Splunk is not responsible for encryption of Customer Data when stored on the Service. If Customer makes any of its or its End Users’ personally identifiable or other information publicly available on the Site or through the Services, Customer does so at its own risk. + + 6.5. Security and Protection of Customer Data. Splunk will maintain administrative, physical and technical safeguards to protect the security of Customer Data as described in the Documentation or the Site. + + 6.6. Splunk’s Right to Remove, Suspend or Terminate. Splunk may remove any Customer Content that is submitted to the Service without notice at any time if we believe, in our sole and absolute discretion, that such Customer Content is excessive in size or exceeds storage limits. Further, if Splunk is made aware or believes in good faith that Customer Content or conduct may (a) violate the Agreement, (b) violate any law, regulation, or rights of a third party, (c) pose a security risk to the Service or any users of the Service, or otherwise adversely impact the Service or the systems, or (d) subject Splunk or any third party to liability, Splunk has the right, but not the obligation, to immediately remove or disable access to such Customer Content and/or suspend or terminate Customer’s access to the Service. + + 7. Additional Customer Obligations. + + Customer will at all times access and use the Splunk Materials (or any content or other materials obtained from or through the Site or the Services) only in accordance with this Agreement and all applicable laws and regulations. In all circumstances, as a condition to Customer’s access to and use of the Splunk Materials, Customer agrees that it will not access or use the Splunk Materials (or any content or other materials accessed through the Splunk Materials) for any purpose that is unlawful or in any manner which could damage, disable, overburden or impair the operation of the Splunk Materials (or the networks connected to or used for the Site or the Services) or interfere with any other party’s use of the Splunk Materials. Splunk may take whatever steps we believe are appropriate, at our sole discretion, to detect and prevent any such activities. Further, Splunk may take whatever steps we believe are appropriate, at our sole discretion, to enforce or verify compliance with any part of this Agreement (including, without limitation, our right to pursue or cooperate with any legal process relating to Customer’s use of the Splunk Materials or any third party claim that Customer’s use of the Splunk Materials is unlawful or infringes such third party’s rights). If Customer fails to comply with any of the terms and conditions of this Agreement, Customer’s right to use the Splunk Materials automatically terminates. Splunk reserves the right to deny Customer’s access to and use of the Splunk Materials if Customer fails to comply with such terms and conditions or if Customer is the subject of complaints by others. + + 8. Collection of Information; Privacy. + + 8.1. Privacy Policy. Customer’s submission of information through the Site and the Services and any other information provided to Splunk, as well as the information Splunk may collect regarding any End User or the Customer App, is governed by Splunk’s privacy policy located at http://www.splunk.com/r/privacy (or such other location as we may designate) (“Privacy Policy”). Notwithstanding anything to the contrary in the Privacy Policy, if you no longer want to receive marketing-related emails from us on a going-forward basis, you may only opt out of receiving them by clicking on the communication preferences link, unsubscribe link, or similar link at the bottom of the email or by emailing us at mobilesupport@splunk.com if no such link is available. The Privacy Policy (as revised from time to time in accordance with its terms) is incorporated into, and considered a part of, this Agreement. + + 8.2. Notices to Customer and Consent to Electronic Communications. Customer consents to receiving electronic communications and notifications from Splunk in connection with this Agreement and Customer’s use of the Service. Customer agrees that any such communication will satisfy any legal communication requirements, including that such communications be in writing. Splunk may provide Customer with notices regarding the Service, including changes to this Agreement, by email to the email address of Customer’s administrator (and/or other alternate email address associated with Customer account if provided), or by postings on Splunk’s website and/or the Site. Notices that are provided by posting on the Site will be effective three (3) days after posting. Notices that are provided by email will be effective when Splunk sends the email, unless otherwise noted in that email. Customer will be deemed to have received any email sent to the email address then associated with Customer’s account when Splunk sends the email, whether or not Customer actually receives the email. + + 9. Feedback. + + In the event that Customer provides any Feedback to Splunk (including through the Site or the Services), Customer hereby grants to Splunk a perpetual, irrevocable, world-wide, royalty free, fully paid-up, unrestricted right and license to use, make, have made, offer for sale, sell, copy, distribute (through multiple tiers of distribution), publicly perform or display, import, export, transmit, create derivative works of, and otherwise exploit such Feedback as part of or in connection with any Splunk product, service, technology, content, material, specification or documentation, in any manner Splunk deems fit. Splunk, in its sole discretion, may or may not respond to Customer’s Feedback or promise to address all of Customer’s Feedback in the development of future features or functionalities of the Splunk Materials or any related or subsequent versions of the Splunk Materials. + + 10. Third-Party Content. + + The Site and the Services may contain links to other websites, apps or content operated or provided by third parties. Such web sites, apps and content are not under the control of Splunk. Splunk is not responsible for such websites, apps and content or any links contained in any third-party website, app or content. Splunk provides these links only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to the third-party websites, apps or content. Further, Splunk is not responsible for any content or materials posted on the Site or through the Service by you or our other customers or users of the Site. Any opinions and views stated are those of the individuals making them and do not reflect our opinions and views. Information submitted by others may not be verified or reviewed in any way before it appears on the Site or through the Services. Therefore, we do not warrant the validity or accuracy of any such information. Please use caution and common sense when using the Site or the Services. In no way do we endorse the content or legality of any offers, statements, or promises made by any other parties on or off the Site or as part of or separate from the Services. + + 11. Confidentiality. + + 11.1. Confidential Information. The Receiving Party shall use the same degree of care that it uses to protect the confidentiality of its own confidential information of like kind (but in no event less than reasonable care). The Receiving Party agrees (i) not to use any Confidential Information of the Disclosing Party for any purpose outside the scope of this Agreement, and (ii) except as otherwise authorized by the Disclosing Party in writing, to limit access to Confidential Information of the Disclosing Party to those of its and its Affiliates’ employees, contractors, and agents who need such access for purposes consistent with this Agreement and who have confidentiality obligations to the Receiving Party containing protections no less stringent than those herein. + + 11.2. Compelled Disclosure of Confidential Information. The Receiving Party may disclose Confidential Information of the Disclosing Party if it is compelled by law to do so, provided the Receiving Party gives the Disclosing Party prior notice of such compelled disclosure (to the extent legally permitted) and reasonable assistance, at the Disclosing Party’s cost, if the Disclosing Party wishes to contest the disclosure. If the Receiving Party is compelled by law to disclose the Disclosing Party’s Confidential Information as part of a civil proceeding to which the Disclosing Party is a Party, and the Disclosing Party is not contesting the disclosure, the Disclosing Party will reimburse the Receiving Party for its reasonable cost of compiling and providing secure access to such Confidential Information. + + 12. Warranty Disclaimer. + + SPLUNK AND ITS AFFILIATES, AND THEIR SUPPLIERS, LICENSORS AND SERVICE PROVIDERS, PROVIDE THE SITE, SERVICES AND SOFTWARE AS-IS AND EXPRESSLY DISCLAIM ANY AND ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT ANY QUIET ENJOYMENT AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. SPLUNK DOES NOT WARRANT THAT THE SITE, SERVICES OR SOFTWARE WILL BE ERROR-FREE, NOR DOES SPLUNK PROVIDE ANY WARRANTIES AS TO THE ACCURACY OR COMPLETENESS OF THE SITE, SERVICES OR SOFTWARE, OR THE INFORMATION PROVIDED ON THE SITE OR BY THE SERVICES. YOU AGREE THAT, AS BETWEEN YOU AND SPLUNK, YOU ARE RESPONSIBLE FOR THE ACCURACY AND QUALITY OF THE DATA PROVIDED BY YOU OR YOUR END USERS TO SPLUNK AND ITS AFFILIATES AND THEIR SUPPLIERS, LICENSORS AND SERVICE PROVIDERS. Because this disclaimer of warranty may not be valid in some states or jurisdictions, the above disclaimer may not apply to you. + + The Splunk Materials, or any feature or part thereof, may not be available for use in all jurisdictions, and Splunk makes no representation that the Splunk Materials, or any feature or part thereof is appropriate or available for use in any particular jurisdiction. To the extent Customer chooses to access and use the Splunk Materials, Customer does so at Customer’s own initiative and at Customer’s own risk, and Customer is responsible for complying with any applicable laws, rules, and regulations. + + 13. Limitation of Liability. + + SPLUNK AND ITS AFFILIATES, SUBSIDIARIES, OFFICERS, DIRECTORS, EMPLOYEES, AGENTS, PARTNERS AND LICENSORS (THE “SPLUNK ENTITIES”) SHALL NOT BE LIABLE TO CUSTOMER FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES OF ANY KIND, UNDER ANY CONTRACT, NEGLIGENCE, STRICT LIABILITY OR OTHER THEORY, INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS, GOODWILL, USE, CONTENT, DATA, SECURITY OF DATA, OR LOSS OF OTHER INTANGIBLES, OR THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, EVEN IF SPLUNK HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. FURTHER, THE SPLUNK ENTITIES SHALL NOT BE RESPONSIBLE FOR ANY LIABILITY OR DAMAGES ARISING IN CONNECTION WITH OR RESULTING FROM: (I) CUSTOMER USE OR INABILITY TO USE THE SERVICE, INCLUDING AS A RESULT OF ANY: (A) TERMINATION OR SUSPENSION OF CUSTOMER ACCOUNT, OR (B) ANY UNANTICIPATED OR UNSCHEDULED DOWNTIME FOR ANY REASON, INCLUDING AS A RESULT OF POWER OUTAGES, SYSTEM FAILURES, OR OTHER INTERRUPTIONS, OR (C) THE COST OF PROCUREMENT OF SUBSTITUTE SERVICES OR GOODS, OR (D) ANY INVESTMENT, EXPENDITURE, OR COMMITMENT BY CUSTOMER IN CONNECTION WITH THIS AGREEMENT OR CUSTOMER’S USE OF OR ACCESS TO THE SERVICE; (II) ANY CHANGES MADE TO THE SERVICE OR ANY TEMPORARY OR PERMANENT CESSATION OF THE SERVICE OR ANY PART THEREOF; (III) ANY UNAUTHORIZED ACCESS TO, ALTERATION OF, OR DELETION OF CUSTOMER CONTENT; (IV) THE DELETION OF, DESTRUCTION, DAMAGE, LOSS, CORRUPTION OF, OR FAILURE TO STORE, SEND OR RECEIVE ANY CUSTOMER CONTENT, TRANSMISSIONS OR DATA ON OR THROUGH THE SERVICE; (V) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE SERVICE; AND (VI) ANY OTHER MATTER RELATING TO THE SERVICE. IN ANY CASE, THE AGGREGATE LIABILITY OF THE SPLUNK ENTITIES UNDER THIS AGREEMENT OR ARISING FROM OR RELATED TO THIS AGREEMENT SHALL BE LIMITED TO US$100. Some jurisdictions do not allow the exclusion or limitation of certain damages. To the extent such a law applies to Customer, some or all of the exclusions or limitations set forth above may not apply to Customer, and Customer may have additional rights. Splunk is acting on behalf of its Affiliates and their licensors, suppliers and service providers for the purpose of disclaiming, excluding and limiting obligations, warranties and liabilities, but in no other respects and for no other purposes. + + 14. Support; Modification of Site or Services. + + Splunk reserves the right at any time and from time to time to modify the Splunk Materials or discontinue, temporarily or permanently, the Site or any of the Services (or any part thereof). Splunk will not be liable to Customer or any other user or other third party for any such modification or discontinuance. If you do not agree to the modification or discontinuance and the modification or discontinuance is material, you may terminate this Agreement by providing us with notice of termination within thirty (30) days after the earlier of (i) the modification or discontinuance or (ii) our notice to you of the modification or discontinuance. On providing notice of termination, you will cease all access to and use of the Splunk Materials and we will have no obligation to provide any further Splunk Materials to you. If Splunk permanently discontinues the Services, and there remains a period for which you have paid fees in advance for access to and use of the Services, we will provide you with a refund or credit (for use with other products or services of Splunk or its affiliates) of a pro rata portion of the fees you paid in advance but unused. + + 15. Term and Termination; Suspension + + 15.1. Term. The Agreement will be effective from the earlier of (a) the date this Agreement is accepted by Customer, or (b) the date Customer first accesses or uses the Service (“Effective Date”) and will expire automatically upon the end of the Subscription Term, unless earlier terminated pursuant to this Section 15. If Customer has elected for auto-renewal plan, the Subscription Term and the Agreement will automatically renew for the subscription term upon expiration of the initial or then-current term, unless one party notifies the other of its intent not to renew at least thirty (30) days in advance of the expiration of the Subscription Term or then-current renewal period. + + 15.2. Termination or Suspension for Cause. Either party may terminate this Agreement for cause, upon thirty (30) days’ advance notice to the other party if there is any breach of this Agreement by the other party, unless the defaulting party has cured the breach within the thirty (30) day notice period. Further, Splunk may terminate Customer’s account and/or suspend or terminate Customer’s access to and use of the Splunk Materials and/or cease providing all or any part of the Site or Services at any time if Splunk determines that such action is appropriate—for example, to (i) prevent errors or any other harm with respect to the Splunk Materials; (ii) mitigate or otherwise limit our damages or our liability; or (iii) respond to applicable law or regulation or any court or governing agency order. + + 15.3. Termination for Convenience. Customer may terminate Customer’s account and/or stop using the Splunk Materials at any time and for any or no reason by written notice to Splunk or by any other means, which Splunk may make available (e.g., through the Site). Upon such termination, Customer will not be entitled to receive (and Splunk has no obligation to provide) any refund of any fees paid prior to such termination. + + 15.4. Effect of Termination. Upon any termination of this Agreement: (i) Splunk may deactivate, delete and/or bar access to Customer’s account and any files associated with Customer’s account; (ii) Customer will immediately cease access to and use of the Splunk Materials; (iii) all license and other rights granted to Customer under this Agreement will immediately terminate; (iv) Customer will promptly return or, if instructed by Splunk, destroy all copies of Splunk Materials in its possession or control; and (v) except as expressly set forth in Sections 14 and 16.1 of this Agreement, Customer will not be entitled to receive (and Splunk has no obligation to provide) any refund of any fees paid prior to such termination. Upon expiration or termination, Splunk will have the right to immediately delete, without notice, Customer Content and all backups thereof, and Splunk will not be liable for any loss or damage, which may be incurred by Customer or any third parties as a result of such deletion. + + 15.5. Survival. The following sections shall survive the termination or expiration of the Agreement: 4, 5, 9, 11, 12, 13, 15.4 and 16-20. + + 16. Indemnity. + + Customer shall defend, and pay all damages (including attorneys’ fees and costs) finally awarded against Splunk, or that are agreed to in a court-approved settlement, to the extent a claim, demand, suit or proceeding is made or brought against a Splunk Entity by a third party (including those brought by the government) that: (i) alleges that Customer Data, Customer Content, Customer Apps or Customer’s use of the Service infringes or misappropriates such third party’s patent, copyright, trademark or trade secret, or violates another right of a third party, (ii) arises out of the activities of Users and End Users, (iii) Customer Data, Customer Content, Customer Apps or Customer use of the Service violates applicable law or regulation, or (iv) arises out of a dispute between Customer and another customer of Splunk (each, a “Splunk Claim”), provided that Splunk: (a) gives Customer prompt written notice of the Splunk Claim, (b) gives Customer sole control of the defense and settlement of the Splunk Claim except that Customer may not settle any Splunk Claim that requires any action or forbearance on Splunk’s part without Splunk’s prior consent (that Splunk will not unreasonably withhold or delay), and (c) Splunk gives Customer all reasonable assistance, at Customer expense. + + 17. U.S. Government Use of the Service + + Splunk provides the Service, including all related Software and technology, for federal government end use solely in accordance with the following: Government technical data and software rights related to the Service and Software include only those rights customarily provided to the public as defined in this Agreement. This customary commercial license is provided in accordance with FAR 12.211 (Technical Data) and FAR 12.212 (Software) and, for Department of Defense transactions, DFAR 252.227-7015 (Technical Data–Commercial Items) and DFAR 227.7202-3 (Rights in Commercial Computer Software or Computer Software Documentation). If a government agency has a need for rights not conveyed under these terms, it must negotiate with Splunk to determine if there are acceptable terms for transferring such rights, and a mutually acceptable written addendum specifically conveying such rights must be included in any applicable contract or agreement. + + 18. Import and Export Control. + + Customer’s access to and use of the Splunk Materials are subject to the customs and export control laws and regulations of the United States and may also be subject to the customs and export laws and regulations of other countries. Customer will comply fully with all applicable customs and export control laws and regulations of the United States and any other country where you access or use any of the Splunk Materials. Customer certifies that it is not on any of the relevant U.S. Government Lists of prohibited persons, including but not limited to the U.S. Treasury Department’s List of Specially Designated Nationals, and the U.S. Commerce Department’s List of Denied Persons or Entity List. Customer further certifies that it will not export, re-export, ship, transfer or otherwise use the Splunk Materials in any country subject to an embargo or other sanction by the United States, and that it will not use the Splunk Materials for any purpose prohibited by U.S. laws or for any nuclear, chemical, missile or biological weapons related end uses. Customer is prohibited from sending to its account any data or software that cannot be exported without prior written government authorization, including, but not limited to, certain types of encryption software. + + 19. General Terms. + + 19.1. Choice of Law and Disputes. This Agreement shall be governed by and construed in accordance with the laws of the State of California, as if performed wholly within the state and without giving effect to the principles of conflict of law. Any legal action or proceeding arising under this Agreement will be brought exclusively in the federal or state courts located in the Northern District of California, and the parties hereby consent to personal jurisdiction and venue therein. Splunk may seek injunctive or other relief in any state, federal, or national court of competent jurisdiction for any actual or alleged infringement of Splunk’s its Affiliates, or any third party’s intellectual property or other proprietary rights. The United Nations Convention for the International Sale of Goods does not apply to this Agreement. + + 19.2. No Waiver. Unless otherwise provided herein, all rights and remedies, whether conferred hereunder or by any other instrument or law, will be cumulative and may be exercised singularly or concurrently. The failure by either party to enforce any provisions of this Agreement will not constitute a waiver of any other right hereunder or of any subsequent enforcement of that or any other provisions. + + 19.3. Severability. If any provision of this Agreement is held by a court of competent jurisdiction to be contrary to law, invalid or unenforceable, the provision shall be modified by the court and interpreted so as best to accomplish the objectives and intent of the original provision to the fullest extent permitted by law, and the remaining provisions of this Agreement shall remain in effect. If such construction is not possible, the invalid or unenforceable portion will be severed from this Agreement but the remainder of the Agreement will remain in full force and effect. + + 19.4. Independent Contractors; No Third Party Beneficiaries. The parties are independent contractors. This Agreement does not create a partnership, franchise, joint venture, agency, fiduciary or employment relationship between the parties. The third party licensors of Splunk Materials are third-party beneficiaries of the Agreement. There are no other third-party beneficiaries of this Agreement. + + 19.5. Force Majeure. Splunk and its officers, directors, employees, agents, partners and licensors will not be liable for any delay or failure to perform any obligation under this Agreement where the delay or failure results from any cause beyond Splunk’s or its officers’, directors’, employees’, agents’, partners’, or licensors’ reasonable control, including, without limitation, acts of God, labor disputes or other industrial disturbances, systemic electrical, telecommunications, or other utility failures, earthquake, storms or other elements of nature, blockages, embargoes, riots, acts or orders of government, acts of terrorism, or war. + + 19.6. Notices. All notices required or permitted under this Agreement will be by email. All notices to Splunk will be sent to mobilesupport@splunk.com(or to such other email address as we may notify, you from time to time). All notices to you will be sent to the email address you provide to Splunk as part of the Registration Data (or to such other email address as you may notify to us from time to time). + + 19.7. Assignment. Customer may not assign, delegate or transfer this Agreement, in whole or in part, by agreement, operation of law or otherwise, without Splunk’s prior written consent. + + 19.8. Entire Agreement. This Agreement, which incorporates the Splunk Privacy Policy at http://www.splunk.com/view/SP-CAAAAAG, the Splunk Acceptable Use Policy at http://splunk.com/goto/splunkcloud_aup, the Rules of Conduct set forth in Splunk’s Website Terms of Use (as currently located at: http://www.splunk.com/view/SP-CAAAAAH), the Splunk Documentation, as well as the terms and documents referred to in each, constitutes the entire agreement between Customer and Splunk and shall supersede any prior agreements between Customer and Splunk concerning the Splunk Materials (including, but not limited to, any prior versions of the Agreement) or any preprinted terms on the Order Document. Any terms and conditions contained or referenced by either party in a quote, purchase order, acceptance, invoice or any similar document purporting to modify the terms and conditions contained in this Agreement are hereby rejected and will be disregarded and have no effect unless otherwise expressly agreed to by the parties. This Agreement does not amend any other separate agreement Customer may have with Splunk for other software products or services that are not Services. + + 19.9. Modification. Splunk reserves the right to update or otherwise make changes to this Agreement from time to time on at least thirty (30) days’ notice, which notice we will provide to you by any reasonable means, including without limitation by posting the revised version of this Agreement on the Site. If you object to the revised version of this Agreement, you will, within such thirty (30) day period, notify us of your objection and, if you so notify us, the revised version will not apply to you. Instead, effective at the end of such thirty (30) day period, your existing Agreement will terminate; you will cease all access to and use of the Splunk Materials; and we will have no obligation to provide any further Splunk Materials to you. If you do not notify us of your objection during the thirty (30) day period, your continued access to and use of the Splunk Materials after the effective date of such revised version of this Agreement will be deemed your acceptance of such revised version; however, changes to this Agreement will not apply to any dispute between you and us based on a claim filed before the effective date of the changes. You can determine when this Agreement was last revised by referring to the “LAST UPDATED” or similar legend at the top of this Agreement. + + 20. Definitions + + 20.1. “Affiliate” means any entity that directly or indirectly controls, is controlled by, or is under common control with the subject entity. “Control,” for purposes of this definition, means direct or indirect ownership or control of more than 50% of the voting interests of the subject entity. + + 20.2. “Confidential Information” means all nonpublic information disclosed by a party (“Disclosing Party”) to the other party (“Receiving Party”), whether orally or in writing, that is designated as “confidential” or that, given the nature of the information or circumstances surrounding its disclosure, should reasonably be understood to be confidential. Customer Confidential Information shall include Customer Content. Splunk Confidential Information shall include: (i) nonpublic information relating to Splunk or its Affiliates’ or business partners’ technology, customers, business plans, promotional and marketing activities, finances and other business affairs; (ii) third-party information that Splunk is obligated to keep confidential; and (iii) the nature, content and existence of any discussions or negotiations between Customer and Splunk or our Affiliates. Notwithstanding the foregoing, “Confidential Information” does not include any information that: (i) is or becomes generally known to the public without breach of any obligation owed to the Disclosing Party, (ii) was known to the Receiving Party prior to its disclosure by the Disclosing Party without breach of any obligation owed to the Disclosing Party, (iii) is received from a third party without breach of any obligation owed to the Disclosing Party, or (iv) was independently developed by the Receiving Party. + + 20.3. “Content” means materials, information, software (including machine images), data, text, audio, music, sound, video, images, photographs, graphics, messages, files, attachments, or other content. + + 20.4. “Customer App” means a software application created by Customer that is to be run on a mobile platform (i.e., a hardware/software environment for laptops, tablets, smartphones and other portable devices, including Android, iOS, Windows Phone (WP) and such further platforms as may be supported by Splunk from time to time) or a web application created by Customer to be accessed by an End User’s browser and that includes the Splunk SDK. + + 20.5. “Customer Claim” has the meaning set forth in Section 16.1 + + 20.6. “Customer Content” means Content that Customer transmitted, or that was transmitted on Customer behalf, to or from the Service, or that Customer stores, or displays or within the Service, or that is otherwise used or processed in connection with Customer’s account. Customer Content includes Customer Data. + + 20.7. “Customer Data” means electronic data and information submitted by or for Customer to the Service or that Customer collects and processes using the Service, which may include its End User data. + + 20.8. “Documentation” means online user guides, documentation and help and training materials published on Splunk’s website at http://docs.splunk.com/Documentation or accessible through the Service or the Software, as may be updated by Splunk from time to time. + + 20.9. “End User” means Customer’s end user customer who receives a Customer App for use on his or her mobile device or uses a Customer App through his or her browser. + + 20.10. “End User Requirements” has the meaning set forth in Section 3.2. + + 20.11. “Effective Date” has the meaning set forth in Section 15.1. + + 20.12. “Feedback” means all suggestions, comments, opinions, code, input, ideas, reports, information, know-how or other feedback provided by Customer (whether in oral, electronic or written form) to Splunk in connection with Customer’s use of the Service. Feedback does not include any data, results or output created or generated by Customer using the Service, unless submitted or communicated by Customer to Splunk. + + 20.13. “Registration Data” has the meaning set forth in Section 1. + + 20.14. “Splunk Claim” has the meaning set forth in Section 16.2. + + 20.15. “Splunk Materials” means the Site, Service and Software. + + 20.16. “Splunk SDK” means the Splunk MINT Software Developer Kit that Splunk makes available to you, including without limitation through the Site. + + 20.17. “Service” means the cloud-based service called “Splunk MINT Cloud Services” provided and maintained by Splunk for collecting and processing data generated by the Splunk SDK. + + 20.18. “Site” means mint.splunk.com and any successor or related site designated by Splunk from which the Services are provided. + + 20.19. “Software” means the Splunk SDK and any other software, add-on, application or program created, owned or licensed by Splunk that Splunk makes available for download for use in connection with the Service or for the purposes of enabling use of the Service. Software also includes any related Documentation. + + 20.20. “User” means “Customer” if an individual, or if an entity, Customer’s individual employee(s), consultant, contractor, agent or representative whom Customer authorizes to use the Service and whom Customer (or Splunk, at Customer’s request) have supplied a user identification and password. json: splunk-mint-tos-2018.json - yml: splunk-mint-tos-2018.yml + yaml: splunk-mint-tos-2018.yml html: splunk-mint-tos-2018.html - text: splunk-mint-tos-2018.LICENSE + license: splunk-mint-tos-2018.LICENSE - license_key: splunk-sla + category: Commercial spdx_license_key: LicenseRef-scancode-splunk-sla other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "SPLUNK SOFTWARE LICENSE AGREEMENT\n\nTHIS SPLUNK SOFTWARE LICENSE AGREEMENT (“AGREEMENT”)\ + \ GOVERNS THE LICENSING, INSTALLATION AND USE OF SPLUNK SOFTWARE. BY DOWNLOADING AND/OR\ + \ INSTALLING SPLUNK SOFTWARE: (a) you are indicating that you have read and understand this\ + \ Agreement, and agree to be legally bound by it on behalf of the company, GOVERNMENT, or\ + \ other entity for which you are acting (for example, as an employee OR GOVERNMENT OFFICIAL)\ + \ or, if there is no company, GOVERNMENT or other entity for which you are acting, on behalf\ + \ of yourself as an individual; and (b) you represent and warrant that you have the authority\ + \ to act on behalf of and bind SUCH company, GOVERNMENT OR OTHER ENTITY (if any). \n\nWITHOUT\ + \ LIMITING THE FOREGOING, YOU (AND YOUR ENTITY, IF ANY) ACKNOWLEDGE THAT BY SUBMITTING AN\ + \ ORDER FOR THE SPLUNK SOFTWARE, YOU (AND YOUR ENTITY (IF ANY)) HAVE AGREED TO BE BOUND\ + \ BY THIS AGREEMENT.\n\nAs used in this Agreement, “Splunk,” refers to Splunk Inc., a Delaware\ + \ corporation, with its principal place of business at 270 Brannan Street, San Francisco,\ + \ California 94107, U.S.A.; and “Customer” refers to the company, government, or other entity\ + \ on whose behalf you have entered into this Agreement or, if there is no such entity, you\ + \ as an individual. \n\n DEFINITIONS. Capitalized terms used but not otherwise defined\ + \ in this Agreement have the meanings set forth in Exhibit A.\n\n LICENSE GRANTS\n\n\ + \ 2.1 Purchased Software. Subject to Customer’s compliance with this\ + \ Agreement, including Customer’s timely payment of all License Fees, Splunk grants to Customer\ + \ a nonexclusive, worldwide, nontransferable, nonsublicensable license during the applicable\ + \ Term to install and use the Purchased Software within the Licensed Capacity solely for\ + \ Customer’s Internal Business Purposes. \n\n 2.2 Evaluation Software.\ + \ If the applicable Order specifies that any Software is provided under an evaluation license\ + \ or a free trial license, then subject to Customer’s compliance with this Agreement, Splunk\ + \ grants to Customer a nonexclusive, worldwide, nontransferable, nonsublicensable license\ + \ during the applicable Term to install and use the Evaluation Software within the Licensed\ + \ Capacity solely for evaluating whether Customer wishes to purchase a commercial license\ + \ for such Software. Notwithstanding anything to the contrary in this Agreement, Splunk\ + \ does not provide maintenance and support (Section 7), warranty (Section 10), or indemnification\ + \ (Section 13) with respect to Evaluation Software.\n\n 2.3 Test and\ + \ Development Software. If the applicable Order specifies that any Software is provided\ + \ under a test and development license, then subject to Customer’s compliance with this\ + \ Agreement, Splunk grants to Customer a nonexclusive, worldwide, nontransferable, nonsublicensable\ + \ license during the applicable Term to install and use the Test and Development Software\ + \ within the Licensed Capacity in a non-production system used for software product migration\ + \ testing, software product pre-production staging, testing new data sources, types or use\ + \ cases, or other non-production use. In no way should the Test and Development Software\ + \ be used for any revenue generation, commercial activity or other productive business or\ + \ purpose. Notwithstanding anything to the contrary in this Agreement, Splunk does not provide\ + \ warranty (Section 10), or indemnification (Section 13) with respect to the Test and Development\ + \ Software.\n\n 2.4 Free Software. Splunk may make certain Software available\ + \ for license without charge, and such Free Software may have limited features, functions,\ + \ or other limitations of any kind. Subject to Customer’s compliance with this Agreement,\ + \ Splunk grants to Customer a nonexclusive, worldwide, nontransferable, nonsublicensable\ + \ license during the applicable Term to install and use the Free Software within the Licensed\ + \ Capacity solely for Customer’s Internal Business Purposes. Notwithstanding anything to\ + \ the contrary in this Agreement, Splunk does not provide maintenance and support (Section\ + \ 7), warranty (Section 10), or indemnification (Section 13) with respect to Free Software.\n\ + \n 2.5 Content Subscription. When the applicable Order specifies a Content\ + \ Subscription service as elected by Customer, Splunk will deliver or otherwise make available\ + \ the applicable Content Subscription service to Customer during the subscription period,\ + \ and subject to Customer’s compliance with this Agreement (including Customer’s timely\ + \ payment of all applicable Content Subscription Fees), Splunk grants to such Customer a\ + \ nonexclusive, worldwide, nontransferable, nonsublicensable license during the applicable\ + \ subscription period to install and use the subscribed content solely in connection with\ + \ the designated Purchased Software and solely for Customer’s Internal Business Purposes.\ + \ Such content will be treated as Purchased Software under this Agreement except that Section\ + \ 10 (Warranty) will not apply.\n\n 2.6 Splunk Extensions. Subject to\ + \ Customer’s compliance with this Agreement, including Customer’s timely payment of all\ + \ License Fees (if any), Splunk grants to Customer a nonexclusive, worldwide, nontransferable,\ + \ nonsublicensable license to use Splunk Extensions solely in connection with applicable\ + \ Software that Customer has licensed from Splunk, subject to the same limitations and restrictions\ + \ (including with respect to Term and Licensed Capacity) that apply to the Software with\ + \ which the Splunk Extensions are used. Notwithstanding the foregoing, if any Splunk Extension\ + \ is provided to Customer under a separate license agreement that grants Customer more permissive\ + \ or broader rights with respect to such Splunk Extension (e.g., a separate license agreement\ + \ that is provided to Customer as part of the download process for such Splunk Extension),\ + \ then that separate license agreement, and not this Agreement, will govern Customer’s installation\ + \ and use of such Splunk Extension (but, for clarity, this Agreement will apply to all other\ + \ Splunk Extensions). \n\n 2.7 Customer Extensions. Subject to Customer’s\ + \ compliance with this Agreement, Splunk grants to Customer a nonexclusive, worldwide, nontransferable,\ + \ nonsublicensable license (a) to copy, modify and use the Splunk Developer Tools solely\ + \ to develop Extensions for use with the designated Software or Splunk Extension (“Customer\ + \ Extensions”), including to support interoperability between the Software or Splunk Extension\ + \ and Customer’s system or environment and (b) to distribute the Customer Extensions exclusively\ + \ for the use with the designated Software or Splunk Extension. The foregoing license is\ + \ subject to the following conditions: (x) Splunk proprietary legends or notices contained\ + \ in the Splunk Developer Tools may not be removed or altered when used in or with the Customer\ + \ Extension; and (y) Customer may not make any statement that Customer Extension is certified\ + \ or that its performance is guaranteed by Splunk. Customer retains title to the Customer\ + \ Extensions, subject to Splunk’s ownership set forth in Section 5. If Customer allows end\ + \ users of Customer Extensions to modify or distribute the Customer Extensions, Customer\ + \ shall limit such modification or distribution to use with the designated Software or Splunk\ + \ Extension only, and will flow down the conditions in (x) and (y) above to end users of\ + \ Customer Extensions. Customer agrees to assume full responsibility for the performance\ + \ and distribution of Customer Extensions.\n\n 2.8 Open Source Software.\ + \ Customer acknowledges that certain Software may contain Open Source Software. Open Source\ + \ Software may be identified in the end user documentation or in a list of the Open Source\ + \ Software provided to Customer upon Customer’s written request. Any Open Source Software\ + \ that is delivered to Customer as part of Purchased Software, and which may not be taken\ + \ out of the Purchased Software or used separately from the Purchased Software is covered\ + \ by the warranty, support and indemnification provisions applicable to Purchased Software.\ + \ Customer acknowledges that specific terms required by the respective licensor of the Open\ + \ Source Software may apply to the use of Open Source Software, which terms shall be included\ + \ in the documentation; however, these terms will not: (a) impose any additional restrictions\ + \ on Customer's use of the Software, or (b) negate or amend Splunk’s responsibilities with\ + \ respect to Purchased Software.\n\n LICENSE RESTRICTIONS. Unless otherwise expressly\ + \ permitted by Splunk, Customer will not and Customer has no right to: (a) copy any Splunk\ + \ Materials (except as required to run the Software and for reasonable backup purposes);\ + \ (b) modify, adapt, or create derivative works of any Splunk Materials; (c) rent, lease,\ + \ loan, resell, transfer, sublicense, distribute, disclose or otherwise provide any Splunk\ + \ Materials to any third party; (d) decompile, disassemble or reverse-engineer any Splunk\ + \ Materials, or determine or attempt to determine any source code, algorithms, methods or\ + \ techniques embodied in any Splunk Materials, except to the extent expressly permitted\ + \ by applicable law notwithstanding a contractual prohibition to the contrary; (e) access\ + \ or use any Disabled Materials; (f) provide to any third party the results of any benchmark\ + \ tests or other evaluation of any Splunk Materials without Splunk’s prior written consent;\ + \ (g) attempt to disable or circumvent any license key or other technological mechanisms\ + \ or measures intended to prevent, limit or control use or copying of, or access to, any\ + \ Splunk Materials (including in order to gain access to any Disabled Materials); (h) remove\ + \ or obscure any copyright, trademark, patent, or other proprietary notices, legends or\ + \ symbols from any Splunk Materials; (i) exceed the Licensed Capacity or violate other license\ + \ limitations identified in Exhibit B or elsewhere in this Agreement; (j) separately use\ + \ any of the applicable features and functionalities of the Splunk Materials with external\ + \ applications or code not furnished by Splunk or any data not processed by the Software,\ + \ except otherwise specifically permitted in the Documentation; (k) misuse the Software\ + \ or use the Software for any illegal, harmful, fraudulent, or offensive purposes; (l) otherwise\ + \ access or use any Splunk Materials except as expressly authorized in this Agreement; or\ + \ (m) encourage or assist any third party to do any of the foregoing. Customer acknowledges\ + \ that the Software may be configured to display warnings, reduce available functionality,\ + \ and/or cease functioning if unauthorized or improper use is detected, including if the\ + \ Term expires or the Licensed Capacity is reached or exceeded.\n\n SERVICE PROVIDERS.\ + \ Customer may permit its authorized consultants, contractors, and agents (“Service Providers”)\ + \ to access and use the Software solely on Customer’s behalf in connection with providing\ + \ services to Customer, subject to the terms and conditions of this Agreement. Any such\ + \ access or use by a Service Provider will be subject to the same limitations and restrictions\ + \ that apply to Customer under this Agreement, and Customer will be jointly and severally\ + \ liable for any Service Provider’s actions relating to or use of the Software. For avoidance\ + \ of doubt, the aggregate use by Customer and all of its Service Providers must not exceed\ + \ the Licensed Capacity and nothing in this Section 4 is intended to or will be deemed to\ + \ increase any Licensed Capacity.\n\n OWNERSHIP. Splunk, its suppliers and/or licensors\ + \ own all worldwide right, title and interest in and to the Splunk Materials, including\ + \ all related Intellectual Property Rights. Except for the licenses expressly granted to\ + \ Customer in Section 2, Customer will not acquire or claim any right, title or interest\ + \ in or to any Splunk Materials or related Intellectual Property Rights, whether by implication,\ + \ operation of law or otherwise. Notwithstanding anything to the contrary, the Software\ + \ is licensed, not sold, to Customer. To the extent that Customer provides any Feedback,\ + \ Customer grants to Splunk a perpetual, irrevocable, worldwide, nonexclusive, transferable,\ + \ sublicensable, royalty-free, fully paid-up right and license to use and commercially exploit\ + \ the Feedback in any manner Splunk deems fit.\n\n LICENSE AND SUBSCRIPTION FEES. Customer\ + \ will pay all license fees set forth in the Order (the “License Fees”) for the Software\ + \ delivered to Customer no later than thirty (30) days after the date of Splunk’s applicable\ + \ invoice. Customer will also pay all content subscription fees as may be applicable to\ + \ the Purchased Software, as identified in the Order (the “Content Subscription Fees”, collectively\ + \ together with License Fees, the “Fees”). Without limitation of Splunk’s other termination\ + \ rights, if Customer fails to pay the Fees when due, then Splunk may terminate this Agreement\ + \ and all licenses granted hereunder by notice to Customer. All Fees are non-refundable\ + \ once paid. Any fees and payment terms for Splunk Extensions not included in the Order\ + \ will be as set forth on the download page for such Splunk Extensions.\n\n MAINTENANCE\ + \ AND SUPPORT. If Customer has purchased support and maintenance for the Purchased Software\ + \ as set forth in the Order (the “Support Services”), then Splunk will provide the level\ + \ of support and maintenance included in the Order in accordance with the terms and conditions\ + \ set forth in Exhibit C.\n\n CONFIGURATION SERVICES. Subject to Customer’s payment of\ + \ applicable fees, Splunk will provide the deployment, usage assistance, configuration,\ + \ and/or training services (if any) set forth in the Order (the “Professional Services”)\ + \ in accordance with Splunk’s standard professional services terms and conditions provided\ + \ at https://www.splunk.com/en_us/legal/professional-services-agreement.html, which terms\ + \ and conditions are hereby incorporated by reference and made a part of this Agreement.\n\ + \n SOFTWARE VERIFICATION AND AUDIT. At Splunk’s request, Customer will furnish Splunk\ + \ with a certification signed by Customer’s authorized representative verifying that the\ + \ Software is being used in accordance with this Agreement and the applicable Order. Also,\ + \ if Customer has purchased an offering that requires usage reporting as identified in the\ + \ Order, Customer agrees to provide such reporting pursuant to the requirements set forth\ + \ by Splunk. Upon at least ten (10) days’ prior written notice to Customer, Splunk may audit\ + \ Customer’s (and its Service Providers’) use of the Software to ensure that Customer (and\ + \ such Service Providers) are in compliance with this Agreement and the applicable Order.\ + \ Any such audit will be conducted during regular business hours at Customer’s (and/or its\ + \ Service Providers) facilities, will not unreasonably interfere with Customer’s (or its\ + \ Service Providers’) business and will comply with Customer’s (or its Service Providers’)\ + \ reasonable security procedures. Customer will (and will ensure that its Service Providers)\ + \ provide Splunk with reasonable access to all relevant records and facilities reasonably\ + \ necessary to conduct the audit. If an audit reveals that Customer (and/or any Service\ + \ Provider) has exceeded the Licensed Capacity or the scope of Customer’s license grant\ + \ during the period audited, then Splunk will invoice Customer, and Customer will promptly\ + \ pay Splunk any underpaid Fees based on Splunk’s price list in effect at the time the audit\ + \ is completed. If the excess usage exceeds ten percent (10%) of the Licensed Capacity,\ + \ then Customer will also pay Splunk’s reasonable costs of conducting the audit. Customer\ + \ will ensure that its Service Providers provide Splunk with the access described in this\ + \ Section 9. This Section 9 will survive expiration or termination of this Agreement for\ + \ a period of three (3) years.\n\n WARRANTY. Splunk warrants that for a period of thirty\ + \ (30) days from the Delivery of Purchased Software, the Purchased Software will substantially\ + \ perform the material functions described in Splunk’s user documentation for such Purchased\ + \ Software, when used in accordance with the user documentation. The sole liability of Splunk\ + \ (and its Affiliates and suppliers/licensors), and Customer’s sole remedy, for any failure\ + \ of the Purchased Software to conform to the foregoing warranty, is for Splunk to do one\ + \ of the following (at Splunk’s sole option and discretion): (a) modify, or provide an Enhancement\ + \ for, the Purchased Software so that it conforms to the foregoing warranty, (b) replace\ + \ Customer’s copy of the Purchased Software with a copy that conforms to the foregoing warranty,\ + \ or (c) terminate the license with respect to the non-conforming Purchased Software and\ + \ refund the License Fees paid by Customer for such non-conforming Purchased Software. All\ + \ warranty claims must be made by written notice from Customer to Splunk on or before the\ + \ expiration of the warranty period, as detailed in Section 23.2 below.\n\n WARRANTY\ + \ DISCLAIMER. EXCEPT AS EXPRESSLY SET FORTH IN SECTION 10 ABOVE, THE SPLUNK MATERIALS, OPEN\ + \ SOURCE SOFTWARE, THIRD PARTY CONTENT, SUPPORT SERVICES AND PROFESSIONAL SERVICES ARE PROVIDED\ + \ “AS IS” WITH NO WARRANTIES WHATSOEVER, EXPRESS OR IMPLIED. TO THE FULL EXTENT PERMITTED\ + \ BY LAW, SPLUNK AND ITS SUPPLIERS AND LICENSORS DISCLAIM ALL WARRANTIES OTHER THAN AS EXPRESSLY\ + \ SET FORTH IN SECTION 10, INCLUDING ANY IMPLIED WARRANTIES OF MERCHANTABILITY, SATISFACTORY\ + \ QUALITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR QUIET ENJOYMENT, AND ANY\ + \ WARRANTIES ARISING OUT OF COURSE OF DEALING OR TRADE USAGE. WITHOUT LIMITATION OF THE\ + \ GENERALITY OF THE FOREGOING, SPLUNK DOES NOT WARRANT THAT USE OF THE SOFTWARE OR SPLUNK\ + \ MATERIALS WILL BE UNINTERRUPTED, ERROR FREE OR SECURE, OR THAT ALL DEFECTS WILL BE CORRECTED.\n\ + \n LIMITATION OF LIABILITY. TO THE FULL EXTENT PERMITTED BY APPLICABLE LAW AND NOTWITHSTANDING\ + \ ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY OR LIMITATION OF LIABILITY: (A)\ + \ SPLUNK AND ITS AFFILIATES, SUBSIDIARIES, OFFICERS, DIRECTORS, EMPLOYEES, AGENTS, PARTNERS\ + \ (INCLUDING AUTHORIZED PARTNERS AS DEFINED IN SECTION 21 BELOW) AND LICENSORS (THE “SPLUNK\ + \ ENTITIES”) WILL NOT BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL, CONSEQUENTIAL OR\ + \ PUNITIVE DAMAGES (INCLUDING ANY DAMAGES ARISING FROM LOSS OF USE, LOSS OF DATA, LOST PROFITS,\ + \ LOST REVENUE, BUSINESS INTERRUPTION, OR COSTS OF PROCURING SUBSTITUTE SOFTWARE OR SERVICES)\ + \ ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE SUBJECT MATTER HEREOF; AND (B) SPLUNK\ + \ ENTITIES’ TOTAL CUMULATIVE LIABILITY ARISING OUT OF OR RELATING TO THIS AGREEMENT OR THE\ + \ SUBJECT MATTER HEREOF WILL NOT EXCEED THE AMOUNTS PAID BY CUSTOMER TO SPLUNK FOR THE PURCHASED\ + \ SOFTWARE IN THE TWELVE (12) MONTHS PRIOR TO THE EVENT GIVING RISE TO SUCH LIABILITY, IN\ + \ EACH OF THE FOREGOING CASES (A) AND (B), REGARDLESS OF WHETHER SUCH LIABILITY ARISES FROM\ + \ CONTRACT, INDEMNIFICATION, WARRANTY, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR\ + \ OTHERWISE, AND REGARDLESS OF WHETHER SPLUNK HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\ + \ LOSS OR DAMAGE. IN ADDITION, CUSTOMER, AND NOT SPLUNK, IS SOLELY RESPONSIBLE FOR THE ACCURACY,\ + \ QUALITY AND SECURITY OF CUSTOMER’S DATA AND FOR MAINTAINING A BACKUP OF ALL SUCH DATA,\ + \ AND FOR ENSURING THE SECURITY AND INTEGRITY OF CUSTOMER’S (AND ITS SERVICE PROVIDER’S)\ + \ DATA, COMPUTERS, NETWORKS AND SYSTEMS (INCLUDING WITH RESPECT TO PROTECTING AGAINST VIRUSES\ + \ AND MALWARE).\n\n INDEMNITY. Splunk will defend Customer against any claim, demand,\ + \ suit or proceeding brought against Customer by a third party alleging that Purchased Software\ + \ infringes or misappropriates such third party’s Intellectual Property Rights (“Claim”),\ + \ and Splunk will pay all damages finally awarded against Customer by a court of competent\ + \ jurisdiction as a result of such Claim, subject to the other terms and conditions of this\ + \ Agreement. Notwithstanding the foregoing, Splunk has no obligation to indemnify Customer\ + \ with respect to: (a) use of the Purchased Software in a manner that is not permitted under\ + \ the Agreement or that is inconsistent with Splunk’s applicable user documentation; (b)\ + \ modifications to the Splunk Materials made by anyone other than Splunk; (c) the combination\ + \ of Software with hardware or software not made by Splunk, or with third-party services,\ + \ processes or materials where the infringement or misappropriation would not occur but\ + \ for such combination; (d) Customer’s continued use of the Purchased Software or other\ + \ allegedly infringing activity after receiving notice of the alleged infringement; or (e)\ + \ any version of the Purchased Software that is no longer supported by Splunk ((a) through\ + \ (e), collectively, “Excluded Matters”). If an applicable Claim is made or appears likely\ + \ to be made, Splunk may, at its option and expense, modify the affected Purchased Software\ + \ so that it is non-infringing, or replace it with substantially functionally equivalent\ + \ software. If Splunk determines that neither is reasonably feasible, Splunk may terminate\ + \ Customer’s applicable license and refund Customer a pro rata refund of the Fees previously\ + \ paid by Customer, which will be calculated using the remainder of the license term (beginning\ + \ with the date of Splunk’s receipt of notice of the applicable Claim), or if the Purchased\ + \ Software is licensed under a perpetual license, a refund of Fees previously paid by Customer,\ + \ less straight-line depreciation on a three-year basis from the Delivery of the applicable\ + \ Software. The obligations set forth in this Section constitute Customer’s sole and exclusive\ + \ remedy, and Splunk’s entire liability, with respect to any Claims that the Purchased Software\ + \ infringes any third party’s Intellectual Property Rights. Customer will defend Splunk\ + \ against any claim brought against Splunk by a third party arising out of or relating to\ + \ any Excluded Matter or any Customer Extension, and Customer will pay all damages finally\ + \ awarded against Splunk by a court of competent jurisdiction as a result of such claim.\ + \ Each party’s indemnity obligations set forth in this Section 13 are conditioned upon the\ + \ party seeking indemnification (x) providing prompt written notice to the other party of\ + \ the applicable claim; (y) giving the indemnifying party sole control of the defense and/or\ + \ settlement of the applicable claim, except that: (i) the indemnified party may participate\ + \ in the defense with counsel of its choice at its own expense, and (ii) the indemnifying\ + \ party will not agree to any settlement that imposes a material obligation on the indemnified\ + \ party without the indemnified party’s prior written consent (not to be unreasonably withheld\ + \ or delayed), and (z) providing reasonable cooperation and assistance in the defense and\ + \ negotiations.\n\n CONFIDENTIAL INFORMATION.\n 14.1 Confidential Information.\ + \ “Confidential Information” means any technical or business information, ideas, materials,\ + \ know-how or other subject matter that is disclosed by one party to the other party that:\ + \ (a) if disclosed in writing, is marked “confidential” or “proprietary” at the time of\ + \ such disclosure; (b) if disclosed orally, is identified as “confidential” or “proprietary”\ + \ at the time of such disclosure, and is summarized in a writing sent by the disclosing\ + \ party to the receiving party within thirty (30) days after any such disclosure; or (c)\ + \ under the circumstances, a person exercising reasonable business judgment would understand\ + \ to be confidential or proprietary. Confidential Information of Splunk will include the\ + \ Splunk Materials (including any license keys).\n\n 14.2 Use and Disclosure Restrictions.\ + \ The party receiving Confidential Information (“Recipient”) agrees: (a) to maintain the\ + \ Confidential Information of the party disclosing such information (the “Discloser”) in\ + \ strict confidence; (b) not to disclose such Confidential Information to any third parties;\ + \ and (c) not to use any such Confidential Information for any purpose other than to exercise\ + \ its rights or perform its obligations under this Agreement. Recipient will treat Confidential\ + \ Information of the Discloser with the same degree of care as it accords to its own Confidential\ + \ Information, but in no event with less than reasonable care. Recipient may disclose the\ + \ Confidential Information of Discloser to its directors, officers, employees, and subcontractors\ + \ (collectively, “Representatives”), who have a bona fide need to know such Confidential\ + \ Information, provided that each such Representative is bound by a legal obligation as\ + \ protective of the other party’s Confidential Information as those set forth herein. Recipient’s\ + \ obligations under this Section 14 will continue in effect for a period of three (3) years\ + \ from the date of last disclosure of Confidential Information by Discloser, except that\ + \ Customer’s obligations under this Section 14 will continue in effect in perpetuity with\ + \ respect to Splunk Materials.\n\n 14.3 Exclusions. The obligations of Recipient\ + \ under Section 14.1 will not apply to any Confidential Information that: (a) is now or\ + \ thereafter becomes generally known or available to the public, through no act or omission\ + \ on the part of Recipient (or any of its Representatives, Affiliates, or agents) or any\ + \ third party subject to any use or disclosure restrictions with respect to such Confidential\ + \ Information; (b) was known by or lawfully in the possession of Recipient, prior to receiving\ + \ such information from Discloser, without restriction as to use or disclosure; (c) is rightfully\ + \ acquired by Recipient from a third party who has the right to disclose it and who provides\ + \ it without restriction as to use or disclosure; or (d) is independently developed by Recipient\ + \ without access, use or reference to any Confidential Information of Discloser.\n\n \ + \ 14.4 Required Disclosures. The provisions of Section 14.1 will not restrict Recipient\ + \ from disclosing Discloser’s Confidential Information to the extent required by any law\ + \ enforcement agencies or regulators or compelled by a court or administrative agency of\ + \ competent jurisdiction, provided that, to the extent permissible under law, Recipient\ + \ uses reasonable efforts to give Discloser advance notice of such required disclosure as\ + \ appropriate in order to enable Discloser to prevent or limit disclosure.\n\n 14.5\ + \ Return or Destruction of Confidential Information. Upon termination of the Agreement\ + \ or support and maintenance, Recipient will promptly return to Discloser or, at Discloser’s\ + \ option, destroy all tangible items and embodiments containing or consisting of Discloser’s\ + \ Confidential Information and all copies thereof and provide written certification of such\ + \ destruction or return by an authorized person.\n\n 14.6 Injunctive Relief. Recipient\ + \ agrees that, due to the unique nature of the Confidential Information, the unauthorized\ + \ disclosure or use of the Confidential Information will cause irreparable harm and significant\ + \ injury to Discloser, the extent of which will be difficult to ascertain and for which\ + \ there will be no adequate remedy at law. Accordingly, Recipient agrees that Discloser,\ + \ in addition to any other available remedies, will have the right to an immediate injunction\ + \ and other equitable relief enjoining any breach or threatened breach of this Section 14,\ + \ without the necessity of posting any bond or other security. Recipient will notify Discloser\ + \ in writing immediately upon Recipient’s becoming aware of any such breach or threatened\ + \ breach.\n\n TERM. This Agreement will commence upon Splunk’s first Delivery of the\ + \ Software specified in the Order (or, Splunk’s other initial delivery of the Software to\ + \ Customer) and will remain in effect until the expiration of the applicable Software license\ + \ term, unless earlier terminated pursuant to Section 16 (the “Term”). For the avoidance\ + \ of doubt, termination of a license term shall not affect the term of any other licenses\ + \ applicable to other Splunk products and services that Customer has purchased. Further,\ + \ termination of a Content Subscription shall not affect the term of the base license applicable\ + \ to the Software that Customer has purchased.\n \n 15.1 Purchased Software,\ + \ etc. Unless otherwise indicated in the Order, the Term for Purchased Software, Free Software,\ + \ Splunk Extensions and Splunk Developer Tools, if applicable, will continue indefinitely,\ + \ unless and until terminated pursuant to Section 16. If the Order indicates a Term of a\ + \ specific duration for any of the foregoing, the licenses granted to Customer for such\ + \ Purchased Software or Free Software will terminate automatically upon expiration of such\ + \ Term. Upon expiration of any Term, the applicable Software will stop working automatically.\n\ + \n 15.2 Evaluation Software. If Customer is granted a license for Evaluation Software,\ + \ then the Term for such Evaluation Software will be specified in the Order or with the\ + \ license key. If no such term is specified, the Term for Evaluation Software is thirty\ + \ (30) days from the date the license key is delivered. Any license keys provided for Evaluation\ + \ Software will automatically expire and cause the Evaluation Software to become non-operational\ + \ at the end of the Term. If Customer wishes to use the Evaluation Software after the Term\ + \ expires, then Customer must obtain the applicable paid license.\n\n\n TERMINATION.\ + \ Either party may terminate this Agreement by written notice to the other party if the\ + \ other party materially breaches this Agreement and does not cure the breach within thirty\ + \ (30) days of receiving written notice of the breach pursuant to Section 23.2 below. In\ + \ addition, Splunk may immediately terminate this Agreement (in whole or in part, including\ + \ with respect to any Term) by written notice to Customer (a) if Customer materially breaches\ + \ Section 3, and (b) as set forth in Section 6. Splunk may also terminate Customer’s license\ + \ to any Evaluation Software at any time with or without cause by notice to Customer. If\ + \ Customer is the Government, then termination terms and conditions will be governed by\ + \ 48 C.F.R. § 52.212-4. Upon any expiration or termination of this Agreement, the rights\ + \ and licenses granted to Customer hereunder will automatically terminate, and Customer\ + \ agrees to cease immediately using the Splunk Materials and to return or destroy all copies\ + \ of the Splunk Materials and other Splunk Confidential Information in Customer’s possession\ + \ or control, and certify in writing the completion of such return or destruction in accordance\ + \ with Section14.5. Upon termination of this Agreement, Splunk will have no obligation to\ + \ refund any Fees or other amounts received from Customer during the Term, and notwithstanding\ + \ any early termination above, Customer shall still be required to pay all Fees payable\ + \ under an Order (i.e., no such early termination shall relieve Customer of its obligations\ + \ to pay all Fees payable under an Order) unless otherwise provided in this Agreement. Termination\ + \ of Support and Maintenance Terms and Conditions due to Splunk’s breach is provided in\ + \ Section 3.2 of Exhibit C. Section 1 (Definitions), Section 5 (Ownership), Section 9 (Software\ + \ Verification and Audit), Section 11 (Warranty Disclaimer), Section 12 (Limitation of Liability),\ + \ Section 13 (Indemnity), Section 14 (Confidentiality), Section 16 (Termination) and Sections\ + \ 17 (Export) through 23 (General) will survive any expiration or termination of this Agreement.\n\ + \n EXPORT. Customer will comply fully with all relevant export laws and regulations of\ + \ the United States and any other country (“Export Laws”) where Customer uses any of the\ + \ Splunk Materials. Customer certifies that Customer is not on any of the relevant U.S.\ + \ government lists of prohibited persons, including the Treasury Department’s List of Specially\ + \ Designated Nationals and the Commerce Department’s List of Denied Persons or Entity List.\ + \ Customer further certifies that Customer will not export, re-export, ship, transfer or\ + \ otherwise use the Splunk Materials in any country subject to an embargo or other sanction\ + \ by the United States, and that Customer will not use the Splunk Materials for any purpose\ + \ prohibited by the Export Laws, including, but not limited to, nuclear, chemical, missile\ + \ or biological weapons related end uses.\n\n GOVERNMENT END USER RIGHTS. Customer acknowledges\ + \ that all Splunk Materials were developed entirely at private expense and that no part\ + \ of the Splunk Materials was first produced in the performance of a government contract.\ + \ Customer agrees that all Splunk Materials and any derivatives thereof are “Commercial\ + \ Items” as defined in 48 C.F.R. § 2.101, and if Customer is the Government, then such use,\ + \ duplication, reproduction, release, modification, disclosure or transfer of this commercial\ + \ product and data, is restricted in accordance with 48 C.F.R. § 12.211, 48 C.F.R. § 12.212,\ + \ 48 C.F.R. § 227.7102-2, and 48 C.F.R. § 227.7202, as applicable. Consistent with 48 C.F.R.\ + \ § 12.211, 48 C.F.R. § 12.212, 48 C.F.R. § 227.7102-1 through 48 C.F.R. § 227.7102-3, and\ + \ 48 C.F.R. §§ 227.7202-1 through 227.7202-4, as applicable, the Splunk Materials are licensed\ + \ to Government end users (a) only as Commercial Items and (b) with only those rights as\ + \ are granted to all other users pursuant to this Agreement and any related agreement(s),\ + \ as applicable. Accordingly, Customer will have no rights in the Splunk Materials except\ + \ as expressly agreed to in writing by Customer and Splunk. \n\n PUBLICITY. Customer\ + \ agrees that Splunk may publish a brief description of Customer’s deployment of the Software\ + \ and identify Customer as a Splunk customer on any of Splunk’s websites, client lists,\ + \ press releases, and/or other marketing materials.\n\n THIRD PARTY CONTENT DISCLAIMER.\ + \ Certain Extensions and other materials or services made available for download or access\ + \ on Splunkbase are developed and/or provided by third parties (“Third-Party Content”).\ + \ Splunk makes such Third-Party Content available for download on Splunkbase as a convenience\ + \ to its customers, but Splunk neither controls nor endorses, nor is Splunk responsible\ + \ for, any Third-Party Content, including the accuracy, integrity, quality, legality, usefulness\ + \ or safety of Third-Party Content. Certain Third-Party Content may, among other things,\ + \ be inaccurate, nonfunctional, infringing or dangerous. Nothing in this Agreement or on\ + \ Splunkbase will be deemed to be a representation or warranty by Splunk with respect to\ + \ any Third-Party Content, even if a particular Extension or other item of Third-Party Content\ + \ is identified as “certified” or \"validated\" for use with Software. Splunk has no obligation\ + \ to monitor Third-Party Content, and Splunk may block or disable access to any Third-Party\ + \ Content at any time. In addition, the availability of any Third-Party Content through\ + \ Splunkbase does not imply Splunk’s endorsement of, or affiliation with, any provider of\ + \ such Third-Party Content, nor does such availability create any legal relationship between\ + \ Customer and any such provider. Customer’s use of Third-Party Content is at Customer’s\ + \ own risk and may be subject to any additional terms, conditions and policies applicable\ + \ to such Third-Party Content (such as license terms, terms of service or privacy policies\ + \ of the providers of such Third-Party Content).\n\n AUTHORIZED PARTNERS. If Customer\ + \ acquired the Software through an authorized reseller, partner or OEM of Splunk (“Authorized\ + \ Partner”) then, notwithstanding anything to the contrary in this Agreement: (a) Customer’s\ + \ use of the Software is subject to any additional terms in the agreement provided by the\ + \ Authorized Partner; (b) Customer agrees to pay the Authorized Partner the Fees and other\ + \ applicable fees, and Customer will have no direct Fee payment obligations to Splunk for\ + \ such Software; (c) Customer’s agreement with the Authorized Partner is between Customer\ + \ and the Authorized Partner and is not binding on Splunk; and (d) Splunk may terminate\ + \ this Agreement (including Customer’s right to use the Software) if Splunk does not receive\ + \ payment for Customer’s use of the Software from the Authorized Partner or if Customer\ + \ breaches any term of this Agreement. If Customer’s warranty and support terms stated in\ + \ its agreement with the Authorized Partner are different from those set forth in this Agreement,\ + \ then such different terms are solely between Customer and the Authorized Partner and Splunk\ + \ will have no obligations to Customer under this Agreement with respect to such different\ + \ terms. Except as set forth in the preceding sentence, if there is any conflict or inconsistency\ + \ between this Agreement and Customer’s agreement with Authorized Partner, then this Agreement\ + \ will control (and will resolve such inconsistency) as between Splunk and Customer.\n\n\ + \ CHOICE OF LAW AND DISPUTES. Unless Customer is the Government, this Agreement will\ + \ be governed by and construed in accordance with the laws of the State of California, as\ + \ if performed wholly within the state and without giving effect to the conflicts of law\ + \ principles of any jurisdiction or the United Nations Convention on Contracts for the International\ + \ Sale of Goods, the application of which is expressly excluded. Any legal action or proceeding\ + \ arising under this Agreement will be brought exclusively in the federal or state courts\ + \ located in San Francisco, California, and the parties hereby consent to personal jurisdiction\ + \ and venue therein (except that Splunk may seek injunctive relief to prevent improper or\ + \ unauthorized use or disclosure of any Splunk Materials in any court of competent jurisdiction).\ + \ If Customer is the Government, this Agreement will be governed by and interpreted in accordance\ + \ with the Contract Disputes Act of 1978, as amended (41 U.S.C. §§ 7101-7109). Failure of\ + \ the parties to reach agreement on any request for equitable adjustment, claim, appeal,\ + \ or action arising under or relating to this Agreement will be a dispute to be resolved\ + \ in accordance with the clause at 48 C.F.R § 52.233-1, which is incorporated in this Agreement\ + \ by reference.\n\n GENERAL\n\n 23.1 Purchase Order. Customer’s issuance of\ + \ a purchase order constitutes acceptance of this Agreement notwithstanding anything to\ + \ the contrary in such purchase order. If any purchase order contains any terms or conditions\ + \ that are different from or additional to the terms and conditions set forth in this Agreement,\ + \ then Splunk expressly rejects such different or additional terms and conditions, and such\ + \ different or additional terms and conditions will not become a part of the agreement between\ + \ the parties notwithstanding any subsequent acknowledgement, invoice or license key that\ + \ Splunk may issue.\n\n 23.2 Notices. All notices required or permitted under\ + \ this Agreement will be in writing and delivered in person, by confirmed facsimile transmission,\ + \ by overnight delivery service, or by registered or certified mail, postage prepaid with\ + \ return receipt requested, and in each instance will be deemed given upon receipt. All\ + \ communications will be sent to the addresses set forth in the applicable Order or to such\ + \ other address as may be specified by either party to the other party in accordance with\ + \ this Section.\n\n 23.3 Assignment. Customer may not assign, delegate or transfer\ + \ this Agreement, in whole or in part, by agreement, operation of law or otherwise without\ + \ the prior written consent of Splunk. Splunk may assign this Agreement in whole or in part\ + \ to an Affiliate or in connection with an internal reorganization or a merger, acquisition,\ + \ or sale of all or substantially all of Splunk’s assets to which this Agreement relates.\ + \ Splunk may also assign its rights to receive payment due as a result of performance of\ + \ this Agreement to a bank, trust company, or other financing institution, including any\ + \ federal lending agency in accordance with the Assignment of Claims Act (31 U.S.C. § 3727)\ + \ and may assign this Agreement in accordance with the provisions at 48 C.F.R § 42.12, as\ + \ applicable. Any attempt to assign this Agreement other than as permitted herein will be\ + \ null and void. Subject to the foregoing, this Agreement will bind and inure to the benefit\ + \ of the parties’ permitted successors and assigns.\n\n 23.4 Rights and Remedies.\ + \ Except as otherwise expressly set forth in this Agreement, the rights and remedies of\ + \ either party as set forth in this Agreement are not exclusive and are in addition to any\ + \ other rights and remedies now or hereafter provided by law or at equity.\n\n 23.5\ + \ Waiver; Severability. The waiver by either party of a breach of or a default under\ + \ this Agreement will not be effective unless in writing. The failure by either party to\ + \ enforce any provisions of this Agreement will not constitute a waiver of any other right\ + \ hereunder or of any subsequent enforcement of that or any other provisions. If a court\ + \ of competent jurisdiction holds any provision of this Agreement invalid or unenforceable,\ + \ the remaining provisions of the Agreement will remain in full force and effect, and the\ + \ provision affected will be construed so as to be enforceable to the maximum extent permissible\ + \ by law.\n\n 23.6 Interpretation. For purposes of interpreting this Agreement,\ + \ (a) unless the context otherwise requires, the singular includes the plural, and the plural\ + \ includes the singular; (b) unless otherwise specifically stated, the words “herein,” “hereof,”\ + \ and “hereunder” and other words of similar import refer to this Agreement as a whole and\ + \ not to any particular section or paragraph; (c) the words “include” and “including” will\ + \ not be construed as terms of limitation, and will therefore mean “including but not limited\ + \ to” and “including without limitation”; (d) unless otherwise specifically stated, the\ + \ words “writing” or “written” mean preserved or presented in retrievable or reproducible\ + \ form, whether electronic (including email but excluding voice mail) or hard copy; (e)\ + \ the captions and section and paragraph headings used in this Agreement are inserted for\ + \ convenience only and will not affect the meaning or interpretation of this Agreement;\ + \ and (f) the references herein to the parties will refer to their permitted successors\ + \ and assigns.\n\n 23.7 Operational Metrics and Usage Data. The Software and other\ + \ Splunk Extensions may be configured to allow Splunk to collect and process technical and\ + \ related information about Customer’s use of the Software (which may include, without limitation,\ + \ ingest volume, search concurrency, number of unique user logins, Internet protocol addresses,\ + \ page views, session duration, and other similar data) and certain aggregated, anonymized\ + \ information about the Software environment (such as hardware identification, operating\ + \ system, application version), performance, configuration and other usage information.\ + \ Splunk uses this information to support and troubleshoot issues, provide updates, automate\ + \ invoices, analyze trends and improve Splunk’s products or services. Participation in the\ + \ collection and processing of such data by Splunk is voluntary (except for certain Free\ + \ or Evaluation Software or other programs as designated by Splunk, which may require Customer’s\ + \ participation in an in-product analytics program as a condition of receiving access to\ + \ and using such Software) and instructions on how to disable these in-product collection\ + \ features are set forth in Splunk’s end user documentation. Splunk collects and processes\ + \ the information it collects subject to Splunk’s Privacy Policy, which can be found at\ + \ https://www.splunk.com/en_us/legal/privacy/privacy-policy.html and is hereby incorporated\ + \ by reference and made a part of this Agreement.\n\n 23.8 Integration; Entire\ + \ Agreement. This Agreement along with any additional terms incorporated herein by reference,\ + \ including the Order and the Exhibits hereto, constitute the complete and exclusive understanding\ + \ and agreement between the parties and supersedes any and all prior or contemporaneous\ + \ agreements, communications and understandings, written or oral, relating to their subject\ + \ matter. Any waiver, modification or amendment of any provision of this Agreement will\ + \ be effective only if in writing and signed by duly authorized representatives of both\ + \ parties. Any terms and conditions contained or referenced by either party in a quote,\ + \ purchase order, acceptance, invoice or any similar document purporting to modify the terms\ + \ and conditions contained in this Agreement will be disregarded and have no effect unless\ + \ otherwise expressly agreed to by the parties in accordance with the preceding sentence.\ + \ \n\n \nEXHIBIT A\nDEFINITIONS\n\n “Affiliate,” with respect to a party, means a corporation,\ + \ partnership or other entity controlling, controlled by or under common control with such\ + \ party, but only so long as such control continues to exist. For purposes of this definition,\ + \ “control” means ownership, directly or indirectly, of greater than fifty percent (50%)\ + \ of the voting rights in such entity (or, in the case of a noncorporate entity, equivalent\ + \ rights).\n\n “Authorized Partner” has the meaning set forth in Section 21.\n\n “Claim”\ + \ has the meaning set forth in Section 13.\n\n “Confidential Information” has the meaning\ + \ set forth in Section 14.1.\n\n “Content Subscription” means certain entitlement for\ + \ Customer to receive a collection of updated contents applicable to the Purchased Software\ + \ (such as models, rules and configurations, as further described in the relevant end user\ + \ documentation for the Purchased Software) on a periodic basis for the duration of the\ + \ subscription period. This can be purchased as an add-on service to the term license or\ + \ perpetual license to the applicable Purchased Software as identified in the Order.\n\n\ + \ “Content Subscription Fees” has the meaning set forth in Section 6.\n\n “Customer\ + \ Extensions” has the meaning set forth in Section 2.7.\n\n “Delivery” means the date\ + \ of Splunk’s initial delivery of the license key for the applicable Software or otherwise\ + \ making the applicable Software available for download by Customer.\n\n “Disabled Materials”\ + \ means certain materials (including programs, modules or components, functionality, features,\ + \ documentation, content or other materials) that may be contained in or provided with the\ + \ Software as part of the delivery mechanism used by Splunk, but that are disabled or hidden\ + \ in Customer’s setting, because Customer either: (a) does not have the relevant license\ + \ or license key, or (b) has not paid the applicable Fees, for those materials.\n\n “Enhancements”\ + \ means any updates, upgrades, releases, fixes, enhancements or modifications to the Purchased\ + \ Software made generally commercially available by Splunk to its support customers under\ + \ the terms and conditions set forth in Exhibit C.\n\n “Evaluation Software” means Software\ + \ that is specified in an Order as provided under an evaluation license or a free trial\ + \ license.\n\n “Excluded Matters” has the meaning set forth in Section 13.\n\n “Extension”\ + \ means any separately downloadable suite, configuration file, add-on, technical add-on,\ + \ example module, command, function or application that extends the features or functionality\ + \ of the applicable Software.\n\n “Feedback” means all suggestions for improvement or\ + \ enhancement, recommendations, comments, opinions, code, input, ideas, reports, information,\ + \ know-how or other feedback provided by Customer (whether in oral, electronic or written\ + \ form) to Splunk in connection with Splunk’s Software. Feedback does not include any data,\ + \ results or output created or generated by Customer using the Software, unless specifically\ + \ submitted or communicated by Customer to Splunk as part of the Feedback. \n\n “Free\ + \ Software” means Software that is specified in an Order as provided to Customer without\ + \ charge (other than Evaluation Software).\n\n “Government” means an agency, department,\ + \ or instrumentality of the United States government.\n\n “Intellectual Property Rights”\ + \ means all patent, copyright, trademark, and trade secret rights and other intellectual\ + \ property and proprietary rights, whether registered or unregistered.\n\n “Internal\ + \ Business Purpose” means Customer’s use for its own internal business operations on Customer’s\ + \ systems, networks and devices with Customer’s data. Such use does not include use by Customer\ + \ on a service bureau basis or otherwise to provide services to, or process data for, any\ + \ third party.\n\n “Licensed Capacity” means the maximum usage of the Software (e.g.,\ + \ aggregate daily volume of data indexed, based on source types, number of Nodes, number\ + \ of monitored accounts, number of users, etc.) that is permitted under the type of license\ + \ included in the applicable Order. The Licensed Capacity associated with each Purchased\ + \ Software is set forth in Exhibit B.\n\n “License Fees” has the meaning set forth in\ + \ Section 6.\n\n “Open Source Software” means software or similar subject matter that\ + \ is distributed under an open source license such as (by way of example only) the GNU General\ + \ Public License, GNU Lesser General Public License, Apache License, Mozilla Public License,\ + \ BSD License, MIT License, Common Public License, any derivative of any of the foregoing\ + \ licenses, or any other license approved as an open source license by the Open Source Initiative.\n\ + \n “Order” means Splunk’s quote, statement of work, or ordering document accepted by\ + \ Customer via Customer’s purchase order or other ordering document submitted to Splunk\ + \ (directly or indirectly through an Authorized Partner) to order Splunk Materials or services,\ + \ which references the products, services, pricing and other applicable terms set forth\ + \ in an applicable Splunk quote or ordering document.\n\n “Professional Services” has\ + \ the meaning set forth in Section 8.\n\n “Purchased Software” means Software that is\ + \ licensed to Customer and for which Customer has paid a License Fee to Splunk, whether\ + \ directly or through an Authorized Partner.\n\n “Service Providers” has the meaning\ + \ set forth in Section 4.\n\n “Splunkbase” means Splunk’s online directory of or platform\ + \ for Extensions, currently located at https://splunkbase.splunk.com/ and any and all successors,\ + \ replacements, new versions, derivatives, updates and upgrades thereto and any other similar\ + \ platform(s) owned and/or controlled by Splunk.\n\n “Splunk Developer Tool” means the\ + \ standard application programming interface configurations, software development kits,\ + \ libraries, command line interface tools, other tooling (including scaffolding and data\ + \ generation tools), integrated development environment plug-ins or extensions, code examples,\ + \ tutorials, reference guides and other related materials identified and provided by Splunk\ + \ to facilitate or enable the creation of Extensions or otherwise support interoperability\ + \ between the Software and Customer’s system or environment.\n\n “Splunk Extensions”\ + \ means Extensions made available through Splunkbase that are identified on Splunkbase as\ + \ published by Splunk (and not by any third party).\n\n “Splunk Materials” mean the Software,\ + \ Software license keys, Splunk Developer Tools, Splunk Extensions and end user documentation\ + \ relating to the foregoing.\n\n “Software” means the Software products listed in an\ + \ Order and any Enhancements thereto made available to Customer by Splunk.\n\n “Support\ + \ Services” has the meaning set forth in Section 7.\n\n “Term” has the meaning set forth\ + \ in Section 15.\n\n “Test and Development Software” means Software that is specified\ + \ in an Order as provided under a test and development license.\n\n “Third-Party Content”\ + \ has the meaning set forth in Section 20.\n\n \nEXHIBIT B\nLICENSED CAPACITY\n\nThe Licensed\ + \ Capacity and other license limitations associated with each Purchased Software can be\ + \ found here: https://www.splunk.com/en_us/legal/licensed-capacity.html \n\n \nEXHIBIT\ + \ C\n\nSPLUNK INC.\n\nSUPPORT AND MAINTENANCE TERMS AND CONDITIONS\nCustomer agrees that\ + \ the following terms and conditions (“Terms and Conditions”) will govern the delivery of\ + \ any support and/or maintenance services by Splunk (“Support”) listed on an Order entered\ + \ into pursuant to the Software License Agreement (the “Agreement”) to which these Terms\ + \ and Conditions are attached and made a part thereof. Subject to Customer’s termination\ + \ rights set forth in the Agreement, ordering any Support from Splunk or any Authorized\ + \ Partner indicates Customer’s acceptance of these Terms and Conditions. These Terms and\ + \ Conditions are effective upon receipt and confirmation of acceptance of Customer’s purchase\ + \ order by Splunk or an Authorized Partner (the “Effective Date”).\n\n DEFINITIONS. Unless\ + \ otherwise defined in these Terms and Conditions, capitalized terms have the meanings set\ + \ forth in the Agreement.\n\n SUPPORT AND MAINTENANCE.\n 2.1 Services. Subject\ + \ to Customer’s timely payment of the applicable annual Support fees set forth in the Order\ + \ (the “Support Fees”), Splunk will provide the level of Support identified in the Order\ + \ in accordance with the Support descriptions set forth below. No other maintenance or support\ + \ for the Software is included.\n\n 2.2 Support Fees. Support Fees will be due\ + \ and payable in accordance with the Order. Splunk will notify (electronically or otherwise)\ + \ Customer of the then-current annual Support Fee for Customer’s level of Support in each\ + \ notice of term renewal. Support Fees are non-refundable once paid.\n\n 2.3 Exclusions.\ + \ Splunk will have no obligation of any kind to provide Support for issues caused by or\ + \ arising out of any of the following (each, a “Licensee-Generated Error”): (i) modifications\ + \ to the Software not made by Splunk; (ii) use of the Software other than as authorized\ + \ in the Agreement or as provided in the documentation for the Software; (iii) damage to\ + \ the machine on which the Software is installed; (iv) Customer’s continued failure to use\ + \ the Software without reference to the documentation; (v) versions of the Software other\ + \ than the Supported Version (defined in Section2.6.6); (vi) third-party products not expressly\ + \ supported by Splunk and described in the documentation; or (vii) conflicts related to\ + \ replacing or installing hardware, drivers, and software that are not expressly supported\ + \ by Splunk and described in the documentation. If Splunk determines that support for an\ + \ issue caused by a Licensee-Generated Error, Splunk will notify Customer as soon as reasonably\ + \ possible under the circumstances. If Customer agrees that Splunk should provide support\ + \ for the Licensee-Generated Error via a confirming email, then Splunk will have the right\ + \ to invoice Customer at Splunk’s then-current time and materials rates for any such support\ + \ provided by Splunk.\n\n 2.4 Support for Splunk Extensions. Subject to Customer’s\ + \ payment of the applicable annual Support Fees, if Customer are a licensee of a Splunk\ + \ Extension supported by Splunk, Splunk will provide an Initial Response and Acknowledgement\ + \ in accordance with P3 terms as described in the Support Programs (as defined below). Updates\ + \ for the Software will be provided when made available. No other sections in these Terms\ + \ and Conditions apply to Splunk Extensions.\n\n 2.5 Restrictions. Support is\ + \ delivered only in English unless Customer is in a location where Splunk has made localized\ + \ Support available.\n\n 2.6 Support Descriptions.\n\n 2.6.1 Splunk\ + \ Support.Customer’s Order will identify the level of Support Customer purchases for the\ + \ applicable Purchased Software. A summary of the different support programs and levels\ + \ are described here: http://www.splunk.com/en_us/support-and-services/support-programs.html\ + \ (“Support Programs”). Support cases are handled based on case priority levels as described\ + \ in the Support Programs. When submitting a case, Customer will select the priority for\ + \ initial response by logging the case online, in accordance with the priority guidelines\ + \ set forth in the Support Programs. When the case is received, Splunk Support may change\ + \ the priority if the issue does not conform to the criteria for the selected priority and\ + \ will provide Customer with notice (electronic or otherwise) of such change. \n\n \ + \ 2.6.2 Authorized Support Contacts. Support will be provided solely to the authorized\ + \ individual(s) specified by Customer that Splunk will communicate with that individual(s)\ + \ when providing Support (“Support Contacts”). Splunk strongly recommends that Customer’s\ + \ support contact(s) be trained on the Purchased Software. Customer’s Order will indicate\ + \ a maximum number of authorized Support Contacts for Customer’s license level. Customer\ + \ will be asked to designate Customer’s authorized support contacts, including their primary\ + \ email address and Splunk.com login ID, following Splunk’s acknowledgment of Customer’s\ + \ Order.\n\n 2.6.3 Defect Resolution. Should Splunk in its sole judgment determine\ + \ that there is a defect in the Purchased Software, it will, at its sole option, repair\ + \ that defect in the version of the Software that Customer is currently using or instruct\ + \ Customer to install a newer version of the Software with that defect repaired. Splunk\ + \ reserves the right to provide Customer with a workaround in lieu of fixing a defect should\ + \ it in its sole judgment determine that it is more effective to do so.\n\n 2.6.4\ + \ Support Hours. Support is provided via telephone, email and web portal. Support will be\ + \ delivered by a member of Splunk’s technical support team during the regional hours of\ + \ operation listed in the Support Programs page.\n\n 2.6.5 Customer’s Obligation\ + \ to Assist. Should Customer report a purported defect in the Purchased Software to Splunk,\ + \ Splunk may require Customer to provide them with the following information: (a) a general\ + \ description of the operating environment, (b) a list of all hardware components, operating\ + \ systems and networks, (c) a reproducible test case, and (d) any log files, trace and systems\ + \ files. Customer’s failure to provide this information may prevent Splunk from identifying\ + \ and fixing that purported defect.\n\n 2.6.6 Software Upgrades and Software\ + \ Support Policy. When available, Splunk provides updates, upgrades, maintenance releases\ + \ and reset keys only to Splunk Support customers pursuant to Splunk’s Support Policy provided\ + \ at: https://www.splunk.com/en_us/legal/splunk-software-support-policy.html (“Support Policy”).\ + \ Software comes with a three-digit number version. The first digit represents the major\ + \ release (i.e., upgrade), the second digit identifies the minor releases (i.e., updates)\ + \ and the third digit identifies the maintenance releases. With a new major version, the\ + \ number to the left of the decimal is changed and for minor releases, the number to the\ + \ right of the decimal point is increased. Subject to the foregoing, Splunk provides Support\ + \ for the duration specified in the Support Policy following the initial release date of\ + \ each respective major or minor version. The current version and the releases within the\ + \ support period will be “Supported Versions”.\n\n\n \n 2.7 Changes\ + \ in Support and Software. Subject to the Support Policy, Customer acknowledges that Splunk\ + \ has the right to discontinue the manufacture and development of any Software and the Support\ + \ for any Software, including the distribution of older Software versions, at any time in\ + \ its sole discretion, provided that Splunk agrees not to discontinue Support for the Software\ + \ during the current annual term of these Terms and Conditions, subject to the termination\ + \ provisions herein. Splunk reserves the right to alter Support from time to time, using\ + \ reasonable discretion but in no event will such alterations result in (i) diminished support\ + \ from the level of Support set forth herein; (ii) materially diminished obligations for\ + \ Splunk; (iii) materially diminished Customer’s rights; or (iv) higher Support Fees during\ + \ the then-current term. Splunk will provide Customer with thirty (30) days’ prior written\ + \ notice (delivered electronically or otherwise) of any permitted material changes to the\ + \ Support contemplated herein.\n\n\n TERM AND TERMINATION.\n\n 3.1 Term. These\ + \ Terms and Conditions will commence on the Delivery date and, unless terminated earlier\ + \ in accordance with the terms of the Agreement, for a period of one (1) year (or for term\ + \ purchased if different than one year) thereafter (the “Initial Term”). These Terms and\ + \ Conditions will, for support and maintenance services purchased for perpetual licenses,\ + \ automatically renew for additional one (1)-year terms (or for term purchased if different\ + \ than one year) (each, a “Renewal Term,” and the Initial Term, collectively with any and\ + \ all Renewal Terms, will be referred to as the “Support Term”), unless either party provides\ + \ the other (or if purchased through an Authorized Partner, Customer provides the Authorized\ + \ Partner) with written notice of its intent not to renew these Terms and Conditions at\ + \ least thirty (30) days prior to the end of the then-current Initial Term or Renewal Term.\ + \ Customer must purchase and/or renew Support for all of the licenses for a particular Software\ + \ product. If the Support Term lapses, Customer may seek to re-activate Support by submitting\ + \ a purchase order that includes fees for the lapsed period plus a reinstatement fee.\n\n\ + \ 3.2 Termination. Either party may terminate these Terms and Conditions by written\ + \ notice to the other party if the other party materially breaches this Agreement or these\ + \ Terms and Conditions and does not cure the breach within thirty (30) days of receiving\ + \ notice of the breach. If Customer terminates the Agreement for Splunk’s uncured material\ + \ breach of these Terms and Conditions, then Splunk will refund any unused prepaid fees\ + \ to Customer as Customer’s sole and exclusive remedy. When Customer accepts a term license\ + \ or cloud subscription in an Order that also terminates the Customer’s perpetual licenses\ + \ of a Software (“Prior Software”), all rights granted with respect to the Prior Software\ + \ are terminated upon the effective date of the Order, unless otherwise specified on the\ + \ Order. There will be no refund of any Fees previously paid with respect to the Prior Software.\ + \ Customer will certify in writing within thirty (30) business days of the date of a request\ + \ from Splunk, the destruction of all of the Prior Software including all Software copies\ + \ and related license keys thereof.\n\n\n 4. FORCE MAJEURE. Splunk will not be responsible\ + \ for any failure or delay in its performance under these Terms and Conditions due to causes\ + \ beyond its reasonable control, including, but not limited to, labor disputes, strikes,\ + \ lockouts, shortages of or inability to obtain labor, energy, raw materials or supplies,\ + \ war, acts of terror, riot, acts of God or governmental action." json: splunk-sla.json - yml: splunk-sla.yml + yaml: splunk-sla.yml html: splunk-sla.html - text: splunk-sla.LICENSE + license: splunk-sla.LICENSE - license_key: square-cla + category: CLA spdx_license_key: LicenseRef-scancode-square-cla other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Patent License + text: "Square Inc. Individual Contributor License Agreement\n\nAn Individual Contributor License\ + \ Agreement (an \"Agreement\") is required to establish and define the intellectual property\ + \ license granted in connection with Contributions (defined below) from any person or entity\ + \ to Square, Inc. (“Square”) for inclusion in any of the products owned or managed by Square\ + \ (the “Work”). This Agreement is for your protection as well as Square’s. This Agreement\ + \ does not alter your rights to use your own Contributions for other purposes. By executing\ + \ this Agreement, you accept and agree to the following terms and conditions for any past,\ + \ current, or future Contributions submitted to Square. Except for the license granted herein\ + \ to Square and recipients of software distributed by Square, you reserve all right, title,\ + \ and interest in and to the Contributions you create.\n\n1. Definitions.\n\n“Control:”\ + \ shall mean (i) the power, direct or indirect, to cause the direction or management of\ + \ an entity, whether by contract or otherwise; or (ii) ownership of fifty percent (50%)\ + \ or more of the outstanding shares; or (iii) beneficial ownership of an entity.\n\n\"Contribution:\"\ + \ shall mean any original work of authorship, including any modifications or additions to\ + \ an existing work, that is intentionally Transmitted by You to Square for inclusion in\ + \ the Work. \n\n\"Transmitted:\" shall mean any form of electronic, verbal, or written communication\ + \ sent to Square or its representatives for the purpose of discussing and improving the\ + \ Work, but excluding communications that are conspicuously marked or otherwise designated\ + \ in writing by You as \"Not a Contribution.\"\n\n\"You:\" (or \"Your\") shall mean the\ + \ copyright owner or legal entity authorized by the copyright owner that is making this\ + \ Agreement with Square. For legal entities, the entity making a Contribution and all other\ + \ entities that control, are controlled by, or are under common control with that entity\ + \ are considered to be a single contributor.\n\n2. Grant of Copyright License.\n\nSubject\ + \ to the terms and conditions of this Agreement, You hereby grant to Square and to recipients\ + \ of software distributed by Square 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 Your Contributions and such derivative works.\n\ + \n3. Grant of Patent License.\n\nSubject to the terms and conditions of this Agreement,\ + \ You hereby grant to Square and to recipients of software distributed by Square 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\ + \ You that are necessarily infringed by Your Contributions alone or by combination of Your\ + \ Contributions with the Work to which such Contributions was Transmitted. If any entity\ + \ institutes patent litigation against You or any other entity (including a cross-claim\ + \ or counterclaim in a lawsuit) alleging that your Contribution, or the Work to which you\ + \ have contributed, constitutes direct or contributory patent infringement, then any patent\ + \ licenses granted to that entity under this Agreement for that Contribution or Work shall\ + \ terminate as of the date such litigation is filed.\n\n4. Representations and Warranties.\n\ + \nYou represent and warrant that:\n * you are legally entitled to grant the above licenses;\n\ + \ * if your employer has rights to intellectual property that you create that includes your\ + \ Contribution, that you have received permission to make Contributions on behalf of an\ + \ employer and that your employer has waived such rights for your Contributions to Square,\ + \ or that your employer has executed a separate Agreement with Square;\n * that each of\ + \ Your Contributions is Your original creation; and\n * that Your Contributions include\ + \ complete details of any third-party license or other restriction (including, but not limited\ + \ to, related patents and trademarks) of which you are personally aware and which are associated\ + \ with any part of Your Contributions.\n\n 5. Submitting the Work of Others.\n\nShould You\ + \ wish to submit work that is not Your original creation, You may submit it to Square separately\ + \ from any Contribution, identifying the complete details of its source and of any license\ + \ or other restriction (including, but not limited to, related patents, trademarks, and\ + \ license agreements) of which you are personally aware, and conspicuously marking the work\ + \ as \"Transmitted on behalf of a third-party: [Insert name of third-party here].\"\n\n\ + 6. Ongoing Support and Maintenance of Contributions.\n\nYou are not expected to provide\ + \ support for Your Contributions, except to the extent You desire to provide support. You\ + \ may provide support for free, for a fee, or not at all. \n\nYOU PROVIDE YOUR 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. UNLESS OTHERWISE REQUIRED BY APPLICABLE\ + \ LAW OR AGREED TO IN WRITING.\n\n8. Continuing Disclosures.\n\nYou agree to notify Square\ + \ of any facts or circumstances of which you become aware that would make these representations\ + \ inaccurate in any respect.\n\nSign Electronically\n\nBy completing the form below and\ + \ clicking the Submit button you agree to and accept all the terms of this Agreement." json: square-cla.json - yml: square-cla.yml + yaml: square-cla.yml html: square-cla.html - text: square-cla.LICENSE + license: square-cla.LICENSE - license_key: squeak + category: Proprietary Free spdx_license_key: LicenseRef-scancode-squeak other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Apple Computer, Inc. Software License + + PLEASE READ THIS SOFTWARE LICENSE AGREEMENT "LICENSE" CAREFULLY BEFORE DOWNLOADING THIS SOFTWARE. BY DOWNLOADING THIS SOFTWARE YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS LICENSE. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE, DO NOT DOWNLOAD. + + 1. License. The software, documentation and any fonts which you will receive by downloading this software (the "Apple Software") are licensed, not sold, to you by Apple Computer, Inc. or its local subsidiary, if any. Apple and/or Apple's licensor(s) retain title to the Apple Software, and the Apple Software and any copies which this License authorizes you to make are subject to this License. This License grants no right or license under any trademarks, service marks, or tradenames of Apple. + + 2. Permitted Uses and Restrictions. This License allows you to copy, install and use the Apple Software on an unlimited number of computers under your direct control. You may modify and create derivative works of the Apple Software ("Modified Software"), however, you may not modify or create derivative works of the fonts provided by Apple ("Fonts"). You may distribute and sublicense such Modified Software only under the terms of a valid, binding license that makes no representations or warranties on behalf of Apple, and is no less protective of Apple and Apple's rights than this License. You may distribute and sublicense the Fonts only as a part of and for use with Modified Software, and not as a part of or for use with Modified Software that is distributed or sublicensed for a fee or for other valuable consideration. If the Modified Software contains modifications, overwrites, replacements, deletions, additions, or ports to new platforms of: (1) the methods of existing class objects or their existing relationships, or (2) any part of the virtual machine, then for so long as the Modified Software is distributed or sublicensed to others, such modified, overwritten, replaced, deleted, added and ported portions of the Modified Software must be made publicly available, preferably by means of download from a website, at no charge under the terms set forth in Exhibit A below. You may transfer your rights under this License provided you transfer this License and a copy of the Apple Software to a party who agrees to accept the terms of this License and destroy any other copies of the Apple Software in your possession. Your rights under this License will terminate automatically without notice from Apple if you fail to comply with any term(s) of this License. + + 3. Disclaimer Of Warranty. The Apple Software is pre-release, and untested, or not fully tested. The Apple Software may contain errors that could cause failures or loss of data, and may be incomplete or contain inaccuracies. You expressly acknowledge and agree that use of the Apple Software is at your sole risk. You acknowledge that Apple has not publicly announced, nor promised or guaranteed to you, that Apple will release a final, commercial or any future pre-release version of the Apple Software to you or anyone in the future, and that Apple has no express or implied obligation to announce or introduce a final, commercial or any future pre-release version of the Apple Software or any similar or compatible product, or to continue to offer or support the Apple Software in the future. The Apple Software is provided "AS-IS" and without warranty of any kind and Apple and Apple's licensor(s) (for the purposes of Sections 3 and 4, Apple and Apple's licensor(s) shall be collectively referred to as "Apple") EXPRESSLY DISCLAIM ALL WARRANTIES AND/OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY OR SATISFACTORY QUALITY AND FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. APPLE DOES NOT WARRANT THAT THE FUNCTIONS CONTAINED IN THE APPLE SOFTWARE WILL MEET YOUR REQUIREMENTS, OR THAT THE OPERATION OF THE APPLE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT DEFECTS IN THE APPLE SOFTWARE WILL BE CORRECTED. FURTHERMORE, APPLE DOES NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE OR THE RESULTS OF THE USE OF THE APPLE SOFTWARE OR RELATED DOCUMENTATION IN TERMS OF THEIR CORRECTNESS, ACCURACY, RELIABILITY, OR OTHERWISE. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE OR AN APPLE AUTHORIZED REPRESENTATIVE SHALL CREATE A WARRANTY OR IN ANY WAY INCREASE THE SCOPE OF THIS WARRANTY. SHOULD THE APPLE SOFTWARE PROVE DEFECTIVE, YOU (AND NOT APPLE OR AN APPLE AUTHORIZED REPRESENTATIVE) ASSUME THE ENTIRE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO THE ABOVE EXCLUSION MAY NOT APPLY TO YOU. THE TERMS OF THIS DISCLAIMER DO NOT AFFECT OR PREJUDICE THE STATUTORY RIGHTS OF A CONSUMER ACQUIRING APPLE PRODUCTS OTHERWISE THAN IN THE COURSE OF A BUSINESS, NEITHER DO THEY LIMIT OR EXCLUDE ANY LIABILITY FOR DEATH OR PERSONAL INJURY CAUSED BY APPLE'S NEGLIGENCE. + + 4. Limitation of Liability. UNDER NO CIRCUMSTANCES, INCLUDING NEGLIGENCE, SHALL APPLE BE LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO THIS LICENSE. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES SO THIS LIMITATION MAY NOT APPLY TO YOU. In no event shall Apple's total liability to you for all damages exceed the amount of fifty dollars ($50.00). + + 5. Indemnification. You agree to indemnify and hold Apple harmless from any and all damages, liabilities, costs and expenses (including but not limited to attorneys' fees and costs of suit) incurred by Apple as a result of any claim, proceeding, and/or judgment to the extent it arises out of or is connected in any manner with the operation, use, distribution or modification of Modified Software, or the combination of Apple Software or Modified Software with other programs; provided that Apple notifies Licensee of any such claim or proceeding in writing, tenders to Licensee the opportunity to defend or settle such claim or proceeding at Licensee's expense, and cooperates with Licensee in defending or settling such claim or proceeding. + + 6. Export Law Assurances. You may not use or otherwise export or reexport the Apple Software except as authorized by United States law and the laws of the jurisdiction in which the Apple Software was obtained. In particular, but without limitation, the Apple Software may not be exported or reexported (i) into (or to a national or resident of) any U.S. embargoed country or (ii) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Department of Commerce's Table of Denial Orders. By using the Apple Software, you represent and warrant that you are not located in, under control of, or a national or resident of any such country or on any such list. + + 7. Government End Users. If the Apple Software is supplied to the United States Government, the Apple Software is classified as "restricted computer software" as defined in clause 52.227-19 of the FAR. The United States Government's rights to the Apple Software are as provided in clause 52.227-19 of the FAR. + + 8. Controlling Law and Severability. If there is a local subsidiary of Apple in the country in which the Apple Software License was obtained, then the local law in which the subsidiary sits shall govern this License. Otherwise, this License shall be governed by the laws of the United States and the State of California. If for any reason a court of competent jurisdiction finds any provision, or portion thereof, to be unenforceable, the remainder of this License shall continue in full force and effect. + + 9. Complete Agreement. This License constitutes the entire agreement between the parties with respect to the use of the Apple Software and supersedes all prior or contemporaneous understandings regarding such subject matter. No amendment to or modification of this License will be binding unless in writing and signed by Apple. + + Where the Licensee is located in the province of Quebec, Canada, the following clause applies: The parties hereto confirm that they have requested that this Agreement and all related documents be drafted in English. Les parties ont exige que le present contrat et tous les documents connexes soient rediges en anglais. + + EXHIBIT A + + License. You may copy, install, use, modify and create derivative works of the (Modified Software) "Changed Software" (but you may not modify or create derivative works of the (Fonts)) and distribute and sublicense such Changed Software, provided however, that if the Changed Software contains modifications, overwrites, replacements, deletions, additions, or ports to new platforms of: (1) the methods of existing classes objects or their existing relationships, or (2) any part of the virtual machine, then for so long as the Changed Software is distributed or sublicensed to others, such modified, overwritten, replaced, deleted, added and ported portions of the Changed Software must be made publicly available, preferably by means of download from a website, at no charge under the terms of a license that makes no representations or warranties on behalf of any third party, is no less protective of (the licensors of the Modified Software) and its licensors, and contains the terms set forth in Exhibit A below (which should contain the terms of this Exhibit A). You may distribute and sublicense the (Fonts) only as a part of and for use with Changed Software, and not as a part of or for use with Changed Software that is distributed or sublicensed for a fee or for other valuable consideration. json: squeak.json - yml: squeak.yml + yaml: squeak.yml html: squeak.html - text: squeak.LICENSE + license: squeak.LICENSE - license_key: srgb + category: Proprietary Free spdx_license_key: LicenseRef-scancode-srgb other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "To anyone who acknowledges that the file \"sRGB Color Space Profile.icm\" \nis provided\ + \ \"AS IS\" WITH NO EXPRESS OR IMPLIED WARRANTY:\npermission to use, copy and distribute\ + \ this file for any purpose is hereby \ngranted without fee, provided that the file is not\ + \ changed including the HP \ncopyright notice tag, and that the name of Hewlett-Packard\ + \ Company not be \nused in advertising or publicity pertaining to distribution of the software\ + \ \nwithout specific, written prior permission. Hewlett-Packard Company makes \nno representations\ + \ about the suitability of this software for any purpose." json: srgb.json - yml: srgb.yml + yaml: srgb.yml html: srgb.html - text: srgb.LICENSE + license: srgb.LICENSE - license_key: ssleay + category: Permissive spdx_license_key: LicenseRef-scancode-ssleay other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 :-). + + 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.] json: ssleay.json - yml: ssleay.yml + yaml: ssleay.yml html: ssleay.html - text: ssleay.LICENSE + license: ssleay.LICENSE - license_key: ssleay-windows + category: Permissive spdx_license_key: LicenseRef-scancode-ssleay-windows other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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.] json: ssleay-windows.json - yml: ssleay-windows.yml + yaml: ssleay-windows.yml html: ssleay-windows.html - text: ssleay-windows.LICENSE + license: ssleay-windows.LICENSE - license_key: st-bsd-restricted + category: Free Restricted spdx_license_key: LicenseRef-scancode-st-bsd-restricted other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "Redistribution and use in source and binary forms, with or without \nmodification,\ + \ are permitted, provided that the following conditions are met:\n\n1. Redistribution of\ + \ source code must retain the above copyright notice, \n this list of conditions and the\ + \ following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\ + \ notice,\n this list of conditions and the following disclaimer in the documentation\n\ + \ and/or other materials provided with the distribution.\n3. Neither the name of STMicroelectronics\ + \ nor the names of other \n contributors to this software may be used to endorse or promote\ + \ products \n derived from this software without specific written permission.\n4. This\ + \ software, including modifications and/or derivative works of this \n software, must\ + \ execute solely and exclusively on microcontroller or\n microprocessor devices manufactured\ + \ by or for STMicroelectronics.\n5. Redistribution and use of this software other than as\ + \ permitted under \n this license is void and will automatically terminate your rights\ + \ under \n this license. \n\nTHIS SOFTWARE IS PROVIDED BY STMICROELECTRONICS AND CONTRIBUTORS\ + \ \"AS IS\" \nAND ANY EXPRESS, IMPLIED OR STATUTORY WARRANTIES, INCLUDING, BUT NOT \nLIMITED\ + \ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A \nPARTICULAR PURPOSE AND\ + \ NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY\nRIGHTS ARE DISCLAIMED TO THE FULLEST\ + \ EXTENT PERMITTED BY LAW. IN NO EVENT \nSHALL STMICROELECTRONICS OR CONTRIBUTORS BE LIABLE\ + \ FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\ + \ BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, \n\ + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF \nLIABILITY, WHETHER\ + \ IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING \nNEGLIGENCE OR OTHERWISE) ARISING IN\ + \ ANY WAY OUT OF THE USE OF THIS SOFTWARE,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." json: st-bsd-restricted.json - yml: st-bsd-restricted.yml + yaml: st-bsd-restricted.yml html: st-bsd-restricted.html - text: st-bsd-restricted.LICENSE + license: st-bsd-restricted.LICENSE - license_key: st-mcd-2.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-st-mcd-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + SLA0044 Rev5/February 2018 + + BY INSTALLING COPYING, DOWNLOADING, ACCESSING OR OTHERWISE USING THIS SOFTWARE + OR ANY PART THEREOF (AND THE RELATED DOCUMENTATION) FROM STMICROELECTRONICS + INTERNATIONAL N.V, SWISS BRANCH AND/OR ITS AFFILIATED COMPANIES + (STMICROELECTRONICS), THE RECIPIENT, ON BEHALF OF HIMSELF OR HERSELF, OR ON + BEHALF OF ANY ENTITY BY WHICH SUCH RECIPIENT IS EMPLOYED AND/OR ENGAGED AGREES + TO BE BOUND BY THIS SOFTWARE LICENSE AGREEMENT. + + Under STMicroelectronics’ intellectual property rights, the redistribution, + reproduction and use in source and binary forms of the software or any part + thereof, with or without modification, are permitted provided that the following + conditions are met: + + 1. Redistribution of source code (modified or not) must retain any copyright + notice, this list of conditions and the disclaimer set forth below as items 10 + and 11. + + 2. Redistributions in binary form, except as embedded into microcontroller or + microprocessor device manufactured by or for STMicroelectronics or a software + update for such device, must reproduce any copyright notice provided with the + binary code, this list of conditions, and the disclaimer set forth below as + items 10 and 11, in documentation and/or other materials provided with the + distribution. + + 3. Neither the name of STMicroelectronics nor the names of other contributors + to this software may be used to endorse or promote products derived from this + software or part thereof without specific written permission. + + 4. This software or any part thereof, including modifications and/or derivative + works of this software, must be used and execute solely and exclusively on or in + combination with a microcontroller or microprocessor device manufactured by or + for STMicroelectronics. + + 5. No use, reproduction or redistribution of this software partially or totally + may be done in any manner that would subject this software to any Open Source + Terms. “Open Source Terms” shall mean any open source license which requires as + part of distribution of software that the source code of such software is + distributed therewith or otherwise made available, or open source license that + substantially complies with the Open Source definition specified at + www.opensource.org and any other comparable open source license such as for + example GNU General Public License (GPL), Eclipse Public License (EPL), Apache + Software License, BSD license or MIT license. + + 6. STMicroelectronics has no obligation to provide any maintenance, support or + updates for the software. + + 7. The software is and will remain the exclusive property of STMicroelectronics + and its licensors. The recipient will not take any action that jeopardizes + STMicroelectronics and its licensors' proprietary rights or acquire any rights + in the software, except the limited rights specified hereunder. + + 8. The recipient shall comply with all applicable laws and regulations + affecting the use of the software or any part thereof including any applicable + export control law or regulation. + + 9. Redistribution and use of this software or any part thereof other than as + permitted under this license is void and will automatically terminate your + rights under this license. + + 10. THIS SOFTWARE IS PROVIDED BY STMICROELECTRONICS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS, IMPLIED OR STATUTORY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON- + INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY RIGHTS, WHICH ARE DISCLAIMED + TO THE FULLEST EXTENT PERMITTED BY LAW. IN NO EVENT SHALL STMICROELECTRONICS OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY + OF SUCH DAMAGE. + + 11. EXCEPT AS EXPRESSLY PERMITTED HEREUNDER, NO LICENSE OR OTHER RIGHTS, WHETHER + EXPRESS OR IMPLIED, ARE GRANTED UNDER ANY PATENT OR OTHER INTELLECTUAL PROPERTY + RIGHTS OF STMICROELECTRONICS OR ANY THIRD PARTY. json: st-mcd-2.0.json - yml: st-mcd-2.0.yml + yaml: st-mcd-2.0.yml html: st-mcd-2.0.html - text: st-mcd-2.0.LICENSE + license: st-mcd-2.0.LICENSE +- license_key: stable-diffusion-2022-08-22 + category: Proprietary Free + spdx_license_key: LicenseRef-scancode-stable-diffusion-2022-08-22 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + Copyright (c) 2022 Robin Rombach and Patrick Esser and contributors + + CreativeML Open RAIL-M + dated August 22, 2022 + + Section I: PREAMBLE + + Multimodal generative models are being widely adopted and used, and have the potential to transform the way artists, among other individuals, conceive and benefit from AI or ML technologies as a tool for content creation. + + Notwithstanding the current and potential benefits that these artifacts can bring to society at large, there are also concerns about potential misuses of them, either due to their technical limitations or ethical considerations. + + In short, this license strives for both the open and responsible downstream use of the accompanying model. When it comes to the open character, we took inspiration from open source permissive licenses regarding the grant of IP rights. Referring to the downstream responsible use, we added use-based restrictions not permitting the use of the Model in very specific scenarios, in order for the licensor to be able to enforce the license in case potential misuses of the Model may occur. At the same time, we strive to promote open and responsible research on generative models for art and content generation. + + Even though downstream derivative versions of the model could be released under different licensing terms, the latter will always have to include - at minimum - the same use-based restrictions as the ones in the original license (this license). We believe in the intersection between open and responsible AI development; thus, this License aims to strike a balance between both in order to enable responsible open-science in the field of AI. + + This License governs the use of the model (and its derivatives) and is informed by the model card associated with the model. + + NOW THEREFORE, You and Licensor agree as follows: + + 1. Definitions + + - "License" means the terms and conditions for use, reproduction, and Distribution as defined in this document. + - "Data" means a collection of information and/or content extracted from the dataset used with the Model, including to train, pretrain, or otherwise evaluate the Model. The Data is not licensed under this License. + - "Output" means the results of operating a Model as embodied in informational content resulting therefrom. + - "Model" means any accompanying machine-learning based assemblies (including checkpoints), consisting of learnt weights, parameters (including optimizer states), corresponding to the model architecture as embodied in the Complementary Material, that have been trained or tuned, in whole or in part on the Data, using the Complementary Material. + - "Derivatives of the Model" means all modifications to the Model, works based on the Model, or any other model which is created or initialized by transfer of patterns of the weights, parameters, activations or output of the Model, to the other model, in order to cause the other model to perform similarly to the Model, including - but not limited to - distillation methods entailing the use of intermediate data representations or methods based on the generation of synthetic data by the Model for training the other model. + - "Complementary Material" means the accompanying source code and scripts used to define, run, load, benchmark or evaluate the Model, and used to prepare data for training or evaluation, if any. This includes any accompanying documentation, tutorials, examples, etc, if any. + - "Distribution" means any transmission, reproduction, publication or other sharing of the Model or Derivatives of the Model to a third party, including providing the Model as a hosted service made available by electronic or other remote means - e.g. API-based or web access. + - "Licensor" means the copyright owner or entity authorized by the copyright owner that is granting the License, including the persons or entities that may have rights in the Model and/or distributing the Model. + - "You" (or "Your") means an individual or Legal Entity exercising permissions granted by this License and/or making use of the Model for whichever purpose and in any field of use, including usage of the Model in an end-use application - e.g. chatbot, translator, image generator. + - "Third Parties" means individuals or legal entities that are not under common control with Licensor or You. + - "Contribution" means any work of authorship, including the original version of the Model and any modifications or additions to that Model or Derivatives of the Model thereof, that is intentionally submitted to Licensor for inclusion in the Model 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 Model, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + - "Contributor" means Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Model. + + Section II: INTELLECTUAL PROPERTY RIGHTS + + Both copyright and patent grants apply to the Model, Derivatives of the Model and Complementary Material. The Model and Derivatives of the Model are subject to additional terms as described in Section III. + + 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, publicly display, publicly perform, sublicense, and distribute the Complementary Material, the Model, and Derivatives of the Model. + 3. Grant of Patent License. Subject to the terms and conditions of this License and where and as applicable, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this paragraph) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Model and the Complementary Material, 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 Model 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 Model and/or Complementary Material or a Contribution incorporated within the Model and/or Complementary Material constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for the Model and/or Work shall terminate as of the date such litigation is asserted or filed. + + Section III: CONDITIONS OF USAGE, DISTRIBUTION AND REDISTRIBUTION + + 4. Distribution and Redistribution. You may host for Third Party remote access purposes (e.g. software-as-a-service), reproduce and distribute copies of the Model or Derivatives of the Model thereof in any medium, with or without modifications, provided that You meet the following conditions: + Use-based restrictions as referenced in paragraph 5 MUST be included as an enforceable provision by You in any type of legal agreement (e.g. a license) governing the use and/or distribution of the Model or Derivatives of the Model, and You shall give notice to subsequent users You Distribute to, that the Model or Derivatives of the Model are subject to paragraph 5. This provision does not apply to the use of Complementary Material. + You must give any Third Party recipients of the Model or Derivatives of the Model a copy of this License; + You must cause any modified files to carry prominent notices stating that You changed the files; + You must retain all copyright, patent, trademark, and attribution notices excluding those notices that do not pertain to any part of the Model, Derivatives of the Model. + You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions - respecting paragraph 4.a. - for use, reproduction, or Distribution of Your modifications, or for any such Derivatives of the Model as a whole, provided Your use, reproduction, and Distribution of the Model otherwise complies with the conditions stated in this License. + 5. Use-based restrictions. The restrictions set forth in Attachment A are considered Use-based restrictions. Therefore You cannot use the Model and the Derivatives of the Model for the specified restricted uses. You may use the Model subject to this License, including only for lawful purposes and in accordance with the License. Use may include creating any content with, finetuning, updating, running, training, evaluating and/or reparametrizing the Model. You shall require all of Your users who use the Model or a Derivative of the Model to comply with the terms of this paragraph (paragraph 5). + 6. The Output You Generate. Except as set forth herein, Licensor claims no rights in the Output You generate using the Model. You are accountable for the Output you generate and its subsequent uses. No use of the output can contravene any provision as stated in the License. + + Section IV: OTHER PROVISIONS + + 7. Updates and Runtime Restrictions. To the maximum extent permitted by law, Licensor reserves the right to restrict (remotely or otherwise) usage of the Model in violation of this License, update the Model through electronic means, or modify the Output of the Model based on updates. You shall undertake reasonable efforts to use the latest version of the Model. + 8. Trademarks and related. Nothing in this License permits You to make use of Licensors’ trademarks, trade names, logos or to otherwise suggest endorsement or misrepresent the relationship between the parties; and any rights not expressly granted herein are reserved by the Licensors. + 9. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Model and the Complementary Material (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 Model, Derivatives of the Model, and the Complementary Material and assume any risks associated with Your exercise of permissions under this License. + 10. 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 Model and the Complementary Material (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. + 11. Accepting Warranty or Additional Liability. While redistributing the Model, Derivatives of the Model and the Complementary Material 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. + 12. If any provision of this License is held to be invalid, illegal or unenforceable, the remaining provisions shall be unaffected thereby and remain valid as if such provision had not been set forth herein. + + END OF TERMS AND CONDITIONS + + Attachment A + + Use Restrictions + + You agree not to use the Model or Derivatives of the Model: + - In any way that violates any applicable national, federal, state, local or international law or regulation; + - For the purpose of exploiting, harming or attempting to exploit or harm minors in any way; + - To generate or disseminate verifiably false information and/or content with the purpose of harming others; + - To generate or disseminate personal identifiable information that can be used to harm an individual; + - To defame, disparage or otherwise harass others; + - For fully automated decision making that adversely impacts an individual’s legal rights or otherwise creates or modifies a binding, enforceable obligation; + - For any use intended to or which has the effect of discriminating against or harming individuals or groups based on online or offline social behavior or known or predicted personal or personality characteristics; + - To exploit any of the vulnerabilities of a specific group of persons based on their age, social, physical or mental characteristics, in order to materially distort the behavior of a person pertaining to that group in a manner that causes or is likely to cause that person or another person physical or psychological harm; + - For any use intended to or which has the effect of discriminating against individuals or groups based on legally protected characteristics or categories; + - To provide medical advice and medical results interpretation; + - To generate or disseminate information for the purpose to be used for administration of justice, law enforcement, immigration or asylum processes, such as predicting an individual will commit fraud/crime commitment (e.g. by text profiling, drawing causal relationships between assertions made in documents, indiscriminate and arbitrarily-targeted use). + json: stable-diffusion-2022-08-22.json + yaml: stable-diffusion-2022-08-22.yml + html: stable-diffusion-2022-08-22.html + license: stable-diffusion-2022-08-22.LICENSE - license_key: standard-ml-nj + category: Permissive spdx_license_key: SMLNJ other_spdx_license_keys: - StandardML-NJ is_exception: no is_deprecated: no - category: Permissive + text: | + 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 the copyright notice and this permission notice and warranty + disclaimer appear in supporting documentation, and that the names of the + authors or their employers not be used in advertising or publicity + pertaining to distribution of the software without specific, written + prior permission. + + The authors and their employers disclaim all warranties with regard to + this software, including all implied warranties of merchantability and + fitness. In no event shall the authors or their employers 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. json: standard-ml-nj.json - yml: standard-ml-nj.yml + yaml: standard-ml-nj.yml html: standard-ml-nj.html - text: standard-ml-nj.LICENSE + license: standard-ml-nj.LICENSE - license_key: stanford-mrouted + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-stanford-mrouted other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + The mrouted program is covered by the following license. Use of the + mrouted program represents acceptance of these terms and conditions. + + 1. STANFORD grants to LICENSEE a nonexclusive and nontransferable license + to use, copy and modify the computer software ``mrouted'' (hereinafter + called the ``Program''), upon the terms and conditions hereinafter set + out and until Licensee discontinues use of the Licensed Program. + + 2. LICENSEE acknowledges that the Program is a research tool still in + the development state, that it is being supplied ``as is,'' without any + accompanying services from STANFORD, and that this license is entered + into in order to encourage scientific collaboration aimed at further + development and application of the Program. + + 3. LICENSEE may copy the Program and may sublicense others to use object + code copies of the Program or any derivative version of the Program. + All copies must contain all copyright and other proprietary notices found + in the Program as provided by STANFORD. Title to copyright to the + Program remains with STANFORD. + + 4. LICENSEE may create derivative versions of the Program. LICENSEE + hereby grants STANFORD a royalty-free license to use, copy, modify, + distribute and sublicense any such derivative works. At the time + LICENSEE provides a copy of a derivative version of the Program to a + third party, LICENSEE shall provide STANFORD with one copy of the source + code of the derivative version at no charge to STANFORD. + + 5. STANFORD MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. + By way of example, but not limitation, STANFORD MAKES NO REPRESENTATION + OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR + THAT THE USE OF THE LICENSED PROGRAM WILL NOT INFRINGE ANY PATENTS, + COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. STANFORD shall not be held liable + for any liability nor for any direct, indirect or consequential damages + with respect to any claim by LICENSEE or any third party on account of or + arising from this Agreement or use of the Program. + + 6. This agreement shall be construed, interpreted and applied in + accordance with the State of California and any legal action arising + out of this Agreement or use of the Program shall be filed in a court + in the State of California. + + 7. Nothing in this Agreement shall be construed as conferring rights to + use in advertising, publicity or otherwise any trademark or the name + of ``Stanford''. + + The mrouted program is COPYRIGHT 1989 by The Board of Trustees of + Leland Stanford Junior University. json: stanford-mrouted.json - yml: stanford-mrouted.yml + yaml: stanford-mrouted.yml html: stanford-mrouted.html - text: stanford-mrouted.LICENSE + license: stanford-mrouted.LICENSE - license_key: stanford-pvrg + category: Permissive spdx_license_key: LicenseRef-scancode-stanford-pvrg other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + PUBLIC DOMAIN LICENSE: Stanford University Portable Video Research Group. + If you use this software, you agree to the following: + + This program package is purely experimental, and is licensed "as is". Permission + is granted to use, modify, and distribute this program without charge for any + purpose, provided this license/disclaimer notice appears in the copies. No + warranty or maintenance is given, either expressed or implied. In no event shall + the author(s) be liable to you or a third party for any special, incidental, + consequential, or other damages, arising out of the use or inability to use the + program for any purpose (or the loss of data), even if we have been advised of + such possibilities. Any public reference or advertisement of this source code + should refer to it as the Portable Video Research Group (PVRG). json: stanford-pvrg.json - yml: stanford-pvrg.yml + yaml: stanford-pvrg.yml html: stanford-pvrg.html - text: stanford-pvrg.LICENSE + license: stanford-pvrg.LICENSE - license_key: statewizard + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-statewizard other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Redistribution and use of the StateWizard Engine 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. + + Redistributions of source code modifications must send back to the Intelliwizard + Project and republish them. + + All advertising materials mentioning features or use of this software must + display the following acknowledgment: "This product includes software developed + by the IntelliWizard Project for use in the StateWizard Engine. + (http://www.intelliwizard.com/)" The names "StateWizard Engine" and + "IntelliWizard Project" must not be used to endorse or promote products derived + from this software without prior written permission. For written permission, + please contact info@intelliwizard.com. Products derived from this software may + not be called "StateWizard" nor may "StateWizard" appear in their names without + prior written permission of the StateWizard Project. + + Redistributions of any form whatsoever must retain the following acknowledgment: + "This product includes software developed by the Intelliwizard Project for use + in the StateWizard Engine (http://www.intelliwizard.com/)" + + THIS SOFTWARE IS PROVIDED BY THE IntelliWizard 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 IntelliWizard 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. json: statewizard.json - yml: statewizard.yml + yaml: statewizard.yml html: statewizard.html - text: statewizard.LICENSE + license: statewizard.LICENSE - license_key: stax + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-stax other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Streaming API for XML (JSR-173) Specification Reference Implementation License Agreement\n\ + \nREAD THE TERMS OF THIS (THE \"AGREEMENT\") CAREFULLY BEFORE VIEWING OR USING THE SOFTWARE\ + \ LICENSED HEREUNDER. BY VIEWING OR USING THE SOFTWARE, YOU AGREE TO THE TERMS OF THIS\ + \ AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE YOUR ACCEPTANCE\ + \ OF THESE TERMS BY SELECTING THE \"ACCEPT\" BUTTON AT THE END OF THIS AGREEMENT. IF YOU\ + \ DO NOT AGREE TO ALL THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO ORIGINAL CONTRIBUTOR,\ + \ DEFINED HEREIN.\n\n1.0 DEFINITIONS.\n \n1.1. \"BEA\" means BEA Systems, Inc., the licensor\ + \ of the Original Code.\n\n1.2. \"Contributor\" means BEA and each entity that creates or\ + \ contributes to the creation of Modifications.\n\n1.3. \"Covered Code\" means the Original\ + \ Code or Modifications or the combination of the Original Code and Modifications, in each\ + \ case including portions thereof and corresponding documentation released with the source\ + \ code.\n\n1.4. \"Executable\" means Covered Code in any form other than Source Code.\n\n\ + 1.5. \"FCS\" means first commercial shipment of a product.\n\n1.6. \"Modifications\" means\ + \ any addition to or deletion from the substance or structure of either the Original Code\ + \ or any previous Modifications. When Covered Code is released as a series of files, a Modification\ + \ is:\n\n(a) Any addition to or deletion from the contents of a file containing Original\ + \ Code or previous Modifications.\n\n(b) Any new file that contains any part of the Original\ + \ Code or previous Modifications.\n\n1.7. \"Original Code\" means Source Code of computer\ + \ software code Reference Implementation.\n\n1.8. \"Patent Claims\" means any patent claim(s),\ + \ now owned or hereafter acquired, including without limitation, method, process, and apparatus\ + \ claims, in any patent for which the grantor has the right to grant a license.\n\n1.9.\ + \ \"Reference Implementation\" means the prototype or \"proof of concept\" implementa­tion\ + \ of the Specification developed and made available for license by or on behalf of BEA.\n\ + \n1.10. \"Source Code\" means the preferred form of the Covered Code for making modifications\ + \ to it, including all modules it contains, plus any associated documentation, interface\ + \ definition files, scripts used to control compilation and installation of an Executable,\ + \ or source code differential comparisons against either the Original Code or another well\ + \ known, available Covered Code of the Contributor's choice. \n\n1.11. \"Specification\"\ + \ means the written specification for the Streaming API for XML , Java technology developed\ + \ pursuant to the Java Community Process.\n1.12. \"Technology Compatibility Kit\" or \"\ + TCK\" means the documentation, testing tools and test suites associated with the Specification\ + \ as may be revised by BEA from time to time, that is provided so that an implementer of\ + \ the Specifi­cation may determine if its implementation is compliant with the Specification.\n\ + \n1.13. \"You\" (or \"Your\") means an individual or a legal entity exercising rights under,\ + \ and complying with all of the terms of, this Agreement or a future version of this Agreement\ + \ issued under Section 6.1. For legal entities, \"You\" includes any entity which controls,\ + \ is controlled by, or is under common control with You. For purposes of this definition,\ + \ \"control\" means (a) the power, direct or indirect, to cause the direction or management\ + \ of such entity, whether by contract or otherwise, or (b) ownership of more than fifty\ + \ percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2.0\ + \ SOURCE CODE LICENSE. \n\n2.1. Copyright Grant. Subject to the terms of this Agreement,\ + \ each Contributor hereby grants You a non-exclusive, worldwide, royalty-free copyright\ + \ license to reproduce, prepare derivative works of, publicly display, publicly perform,\ + \ distribute and sublicense the Covered Code of such Contributor, if any, and such derivative\ + \ works, in Source Code and Executable form.\n\n2.2. Patent Grant. Subject to the terms\ + \ of this Agreement, each Contributor hereby grants You a non-exclusive, worldwide, royalty-free\ + \ patent license under the Patent Claims to make, use, sell, offer to sell, import and otherwise\ + \ transfer the Covered Code prepared and provided by such Contributor, if any, in Source\ + \ Code and Executable form. This patent license shall apply to the Covered Code if, at the\ + \ time a Modification is added by the Contributor, such addition of the Modification causes\ + \ such combination to be covered by the Patent Claims. The patent license shall not apply\ + \ to any other combinations which include the Modification.\n\n2.3. Conditions to Grants.\ + \ You understand that although each Contributor grants the licenses to the Covered Code\ + \ prepared by it, no assurances are provided by any Contributor that the Covered Code does\ + \ not infringe the patent or other intellectual property rights of any other entity. Each\ + \ Contributor disclaims any liability to You for claims brought by any other entity based\ + \ on infringement of intellectual property rights or otherwise. As a condition to exercising\ + \ the rights and licenses granted hereunder, You hereby assume sole responsibility to secure\ + \ any other intellectual property rights needed, if any. For example, if a third party patent\ + \ license is required to allow You to distribute Covered Code, it is Your responsibility\ + \ to acquire that license before distributing such code.\n\n2.4. Contributors’ Representation.\ + \ Each Contributor represents that to its knowledge it has sufficient copyright rights\ + \ in the Covered Code it provides , if any, to grant the copyright license set forth in\ + \ this Agreement.\n\n3.0 DISTRIBUION RESTRICTIONS.\n\n3.1. Application of Agreement.\n\n\ + The Modifications which You create or to which You contribute are governed by the terms\ + \ of this Agreement, including without limitation Section 2.0. The Source Code version of\ + \ Covered Code may be distributed only under the terms of this Agreement or a future version\ + \ of this Agreement released under Section 6.1, and You must include a copy of this Agreement\ + \ with every copy of the Source Code You distribute. You may not offer or impose any terms\ + \ on any Source Code version that alters or restricts the applicable version of this Agreement\ + \ or the recipients' rights hereunder. However, You may include an additional document offering\ + \ the additional rights described in Section 3.3.\n\n3.2. Description of Modifications.\n\ + \nYou must cause all Covered Code to which You contribute to contain a file documenting\ + \ the changes You made to create that Covered Code and the date of any change. You must\ + \ include a prominent statement that the Modification is derived, directly or indirectly,\ + \ from Original Code provided by BEA and including the name of BEA in (a) the Source Code,\ + \ and (b) in any notice in an Executable version or related documentation in which You describe\ + \ the origin or ownership of the Covered Code.\n\n3.3. Required Notices.\n\nYou must duplicate\ + \ the following notice in each file of the Source Code:\n\n\"(c) 2002, 2003 BEA Systems,\ + \ Inc. All rights Reserved. The contents of this file are subject to the BEA Streaming\ + \ API for XML Specification Reference Implementation License Agreement (the \"Agreement\"\ + ); you may not use this file except in compliance with the Agreement. A copy of the Agreement\ + \ is available at http://www.bea.com/\"\n\nIf You created one or more Modification(s) You\ + \ may add your name as a Contributor to the copyright portion of the notice above. You must\ + \ also duplicate this Agreement in any documentation for the Source Code where You describe\ + \ recipients' rights or ownership rights relating to Covered Code. You may choose to offer,\ + \ and to charge a fee for, warranty, support, indemnity or liability obligations to one\ + \ or more recipients of Covered Code. However, You may do so only on Your own behalf, and\ + \ not on behalf of BEA or any other Contributor. You must make it absolutely clear than\ + \ any such warranty, support, indemnity or liability obligation is offered by You alone,\ + \ and You hereby agree to indemnify BEA and every other Contributor for any liability incurred\ + \ by BEA or such other Contributor as a result of warranty, support, indemnity or liability\ + \ terms You offer.\n\n3.4. Distribution of Executable Versions.\n\nYou may choose to distribute\ + \ Covered Code in Executable form under its own license agreement, provided that:\n\n \t\ + (a) You comply with the terms and conditions of this Agreement; and\n\n(b) Your license\ + \ agreement: (i) effectively disclaims on behalf of all Contributors all warranties and\ + \ conditions, express and implied, including warranties or conditions of title and non-infringement,\ + \ and implied warranties or conditions of merchantability and fitness for a particular purpose;\ + \ (ii) effectively excludes on behalf of all Contributors all liability for damages, including\ + \ direct, indirect, special, incidental and consequential damages, such as lost profits;\ + \ (iii) states that any provisions which differ from this Agreement are offered by that\ + \ Contributor alone and not by any other party; and (iv) states that Source Code for the\ + \ Covered Code is available from such Contributor, and informs licensees how to obtain it\ + \ in a reasonable manner on or through a medium customarily used for software exchange.\n\ + \n(c) You do not use any marks, brands or logos associated with the JCP Specification, or\ + \ otherwise promote or market any Covered Code, as being compatible, compliant, conformant\ + \ or otherwise consistent with the Specification unless such product passes, in accordance\ + \ with the documentation (including the TCK Users Guide, if any), the most current TCK applicable\ + \ to the latest version of the Specification and available from BEA one hundred twenty (120)\ + \ days before FCS of such version of the product; provided, however, that if You elect to\ + \ use a version of the TCK also provided by BEA that is newer than that which is required\ + \ under this Section 2.1(b)(v), then You agree to pass such TCK.\n\n3.5. Distribution of\ + \ Source Code Versions.\n\nWhen You make Covered Code available in Source Code form:\n\n\ + \ \t(a) it must be made available under this Agreement; and\n \n \t(b) a copy of this\ + \ Agreement must be included with each copy of the Covered Code. \n\nYou may not remove\ + \ or alter any copyright notices contained within the Covered Code. Each Contributor must\ + \ identify itself as the originator of its contribution to the Covered Code, if any, in\ + \ a manner that reasonably allows subsequent licensees to identify the originator of each\ + \ portion of the Covered Code.\n\n\n\n4.0 DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED\ + \ UNDER THIS LICENSE ON AN \"AS IS'' BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\ + \ OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF\ + \ DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK\ + \ AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED\ + \ CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT BEA OR ANY OTHER CONTRIBUTOR) ASSUME THE\ + \ COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES\ + \ AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER\ + \ EXCEPT UNDER THIS DISCLAIMER.\n\n5.0 TERMINATION.\n\n5.1. This Agreement and the rights\ + \ granted hereunder will terminate automatically if You fail to comply with terms herein\ + \ and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses\ + \ to the Covered Code which are properly granted shall survive any termination of this Agreement.\ + \ Provisions which, by their nature, must remain in effect beyond the termination of this\ + \ Agreement shall survive.\n\n5.2. If You initiate litigation by asserting a patent infringement\ + \ claim (excluding declaratory judgment actions) against BEA or a Contributor (BEA or Contributor\ + \ against whom You file such action is referred to as \"Participant\") alleging that:\n\n\ + (a) such Participant's Covered Code directly or indirectly infringes any patent, then any\ + \ and all rights granted by such Participant to You under Sections 2.0of this Agreement\ + \ shall, upon 60 days notice from Participant terminate prospectively, unless if within\ + \ 60 days after receipt of notice You either: (i) agree in writing to pay Participant a\ + \ mutually agreeable reasonable royalty for Your past and future use of Modifications made\ + \ by such Participant, or (ii) withdraw Your litigation claim with respect to the Covered\ + \ Code against such Participant. If within 60 days of notice, a reasonable royalty and payment\ + \ arrangement are not mutually agreed upon in writing by the parties or the litigation claim\ + \ is not withdrawn, the rights granted by Participant to You under Section 2.0 automatically\ + \ terminate at the expiration of the 60 day notice period specified above.\n\n(b) any software,\ + \ hardware, or device, other than such Participant's Covered Code, directly or indirectly\ + \ infringes any patent, then any rights granted to You by such Participant under Sections\ + \ 2.0 are revoked effective as of the date You first made, used, sold, distributed, or had\ + \ made, Modifications made by that Participant.\n\n5.3. If You assert a patent infringement\ + \ claim against Participant alleging that such Participant's Covered Code directly or indirectly\ + \ infringes any patent where such claim is resolved (such as by license or settlement) prior\ + \ to the initiation of patent infringement litigation, then the reasonable value of the\ + \ licenses granted by such Participant under Sections 2.0 shall be taken into account in\ + \ determining the amount or value of any payment or license.\n\n5.4. In the event of termination\ + \ under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors\ + \ and resellers) which have been validly granted by You or any distributor hereunder prior\ + \ to termination shall survive termination.\n\n6.0 LIMITATION OF LIABILITY.\n\nUNDER NO\ + \ CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT,\ + \ OR OTHERWISE, SHALL YOUBEA, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,\ + \ OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL,\ + \ INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES\ + \ FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\ + \ COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY\ + \ OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR\ + \ PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS\ + \ SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL\ + \ OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n7.0\ + \ U.S. GOVERNMENT END USERS. \n\nThe Covered Code is a \"commercial item,\" as that term\ + \ is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\"\ + \ and \"commercial computer software documentation,\" as such terms are used in 48 C.F.R.\ + \ 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through\ + \ 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those\ + \ rights set forth herein.\n\n8.0 MISCELLANEOUS. \n\nThis Agreement represents the complete\ + \ agreement concerning subject matter hereof. If any provision of this Agreement is held\ + \ to be unenforceable, such provision shall be reformed only to the extent necessary to\ + \ make it enforceable. This Agreement shall be governed by California law provisions (except\ + \ to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law\ + \ provisions. With respect to disputes in which at least one party is a citizen of, or an\ + \ entity chartered or registered to do business in the United States of America, any litigation\ + \ relating to this Agreement shall be subject to the jurisdiction of the Federal Courts\ + \ of the Northern District of California, with venue lying in Santa Clara County, California,\ + \ with the losing party responsible for costs, including without limitation, court costs\ + \ and reasonable attorneys' fees and expenses. The application of the United Nations Convention\ + \ on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation\ + \ which provides that the language of a contract shall be construed against the drafter\ + \ shall not apply to this Agreement.\n\n9.0 RESPONSIBILITY FOR CLAIMS.\n\nAs between BEA\ + \ and the other Contributors, each party is responsible for claims and damages arising,\ + \ directly or indirectly, out of its utilization of rights under this Agreement and You\ + \ agree to work with BEA and Contributors to distribute such responsibility on an equitable\ + \ basis. Nothing herein is intended or shall be deemed to constitute any admission of liability." json: stax.json - yml: stax.yml + yaml: stax.yml html: stax.html - text: stax.LICENSE + license: stax.LICENSE - license_key: stlport-2000 + category: Permissive spdx_license_key: LicenseRef-scancode-stlport-2000 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "STLport License Agreement\n\nBoris Fomitchev grants Licensee a non-exclusive, non-transferable,\ + \ royalty- free\nlicense to use STLport and its documentation without fee.\n\nBy downloading,\ + \ using, or copying STLport or any portion thereof, Licensee\nagrees to abide by the intellectual\ + \ property laws and all other applicable laws\nof the United States of America, and to all\ + \ of the terms and conditions of this\nAgreement.\n\nLicensee shall maintain the following\ + \ copyright and permission notices on\nSTLport sources and its documentation unchanged :\n\ + \nCopyright 1999,2000 Boris Fomitchev\n\nThis material is provided \"as is\", with absolutely\ + \ no warranty expressed or\nimplied. Any use is at your own risk. Permission to use or copy\ + \ this software\nfor any purpose is hereby granted without fee, provided the above notices\ + \ are\nretained on all copies. Permission to modify the code and to distribute modified\n\ + code is granted, provided the above notices are retained, and a notice that the\ncode was\ + \ modified is included with the above copyright notice.\n\nThe Licensee may distribute binaries\ + \ compiled with STLport (whether original or modified) without any royalties or restrictions.\n\ + \nThe Licensee may distribute original or modified STLport sources, provided that:\n\n•\ + \ The conditions indicated in the above permission notice are met; \n\n• The following copyright\ + \ notices are retained when present, and conditions\nprovided in accompanying permission\ + \ notices are met :\n\nCopyright 1994 Hewlett-Packard Company \nCopyright 1996,97 Silicon\ + \ Graphics Computer Systems, Inc. \nCopyright 1997 Moscow Center for SPARC Technology.\n\ + \nPermission to use, copy, modify, distribute and sell this software and its\ndocumentation\ + \ for any purpose is hereby granted without fee, provided that the\nabove copyright notice\ + \ appear in all copies and that both that copyright notice\nand this permission notice appear\ + \ in supporting documentation. Hewlett-Packard\nCompany makes no representations about the\ + \ suitability of this software for any\npurpose. It is provided \"as is\" without express\ + \ or implied warranty.\n\nPermission to use, copy, modify, distribute and sell this software\ + \ and its\ndocumentation for any purpose is hereby granted without fee, provided that the\n\ + above copyright notice appear in all copies and that both that copyright notice\nand this\ + \ permission notice appear in supporting documentation. Silicon Graphics\nmakes no representations\ + \ about the suitability of this software for any purpose.\nIt is provided \"as is\" without\ + \ express or implied warranty.\n\nPermission to use, copy, modify, distribute and sell this\ + \ software and its\ndocumentation for any purpose is hereby granted without fee, provided\ + \ that the\nabove copyright notice appear in all copies and that both that copyright notice\n\ + and this permission notice appear in supporting documentation. Moscow Center for\nSPARC\ + \ Technology makes no representations about the suitability of this software\nfor any purpose.\ + \ It is provided \"as is\" without express or implied warranty." json: stlport-2000.json - yml: stlport-2000.yml + yaml: stlport-2000.yml html: stlport-2000.html - text: stlport-2000.LICENSE + license: stlport-2000.LICENSE - license_key: stlport-4.5 + category: Permissive spdx_license_key: LicenseRef-scancode-stlport-4.5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This material is provided "as is", with absolutely no warranty expressed + or implied. Any use is at your own risk. + + Permission to use or copy this software for any purpose is hereby + granted without fee, provided the above notices are retained on all + copies. + + Permission to modify the code and to distribute modified code is + granted, provided the above notices are retained, and a notice that + the code was modified is included with the above copyright notice. json: stlport-4.5.json - yml: stlport-4.5.yml + yaml: stlport-4.5.yml html: stlport-4.5.html - text: stlport-4.5.LICENSE + license: stlport-4.5.LICENSE - license_key: stmicroelectronics-centrallabs + category: Free Restricted spdx_license_key: LicenseRef-scancode-stmicroelectronics-centrallabs other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + The STMicroelectronics corporate logo is a trademark of STMicroelectronics + + 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 nor trademarks of STMicroelectronics International N.V. nor + any other STMicroelectronics company nor the names of its contributors may be + used to endorse or promote products derived from this software without specific + prior written permission. + + - All of the icons, pictures, logos and other images that are provided with the + source code in a directory whose title begins with st_images may only be used + for internal purposes and shall not be redistributed to any third party or + modified in any way. + + - Any redistributions in binary form shall not include the capability to display + any of the icons, pictures, logos and other images that are provided with the + source code in a directory whose title begins with st_images. + + 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. json: stmicroelectronics-centrallabs.json - yml: stmicroelectronics-centrallabs.yml + yaml: stmicroelectronics-centrallabs.yml html: stmicroelectronics-centrallabs.html - text: stmicroelectronics-centrallabs.LICENSE + license: stmicroelectronics-centrallabs.LICENSE - license_key: stmicroelectronics-linux-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-stmicro-linux-firmware other_spdx_license_keys: - LicenseRef-scancode-stmicroelectronics-linux-firmware is_exception: no is_deprecated: no - category: Proprietary Free + text: "Redistribution. Redistribution and use in binary form, without modification, \nare\ + \ permitted provided that the following conditions are met:\n\n* Redistributions must reproduce\ + \ the above copyright notice and the following \ndisclaimer in the documentation and/or\ + \ other materials provided with the \ndistribution.\n\n* Neither the name of ST Microelectronics\ + \ NV. nor the names of its suppliers \nmay be used to endorse or promote products derived\ + \ from this software without \nspecific prior written permission.\n\n* No reverse engineering,\ + \ decompilation, or disassembly of this software is \npermitted.\n\nLimited patent license.\ + \ ST Microelectronics NV. grants a world-wide, royalty-free,\n non-exclusive license under\ + \ patents it now or hereafter owns or controls to make, \n have made, use, import, offer\ + \ to sell and sell (\"Utilize\") this software, but \n solely to the extent that any such\ + \ patent is necessary to Utilize the software in \nconjunction with an ST Microelectronics\ + \ chipset. The patent license shall not \napply to any other combinations which include\ + \ this software. No hardware per se \nis licensed hereunder.\n\nDISCLAIMER. THIS SOFTWARE\ + \ IS PROVIDED BY THE COPYRIGHT HOLDERS ANDCONTRIBUTORS \n\"AS IS\" AND ANY EXPRESS OR IMPLIED\ + \ WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND FITNESS FOR A PARTICULAR PURPOSE ARE \nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\ + \ OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\ + \ OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\ + \ OR SERVICES; \nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED\ + \ AND ON \nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT \n(INCLUDING\ + \ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS \nSOFTWARE, EVEN IF\ + \ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." json: stmicroelectronics-linux-firmware.json - yml: stmicroelectronics-linux-firmware.yml + yaml: stmicroelectronics-linux-firmware.yml html: stmicroelectronics-linux-firmware.html - text: stmicroelectronics-linux-firmware.LICENSE + license: stmicroelectronics-linux-firmware.LICENSE - license_key: stream-benchmark + category: Permissive spdx_license_key: LicenseRef-scancode-stream-benchmark other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + License: + 1. You are free to use this program and/or to redistribute + this program. + 2. You are free to modify this program for your own use, + including commercial use, subject to the publication + restrictions in item 3. + 3. You are free to publish results obtained from running this + program, or from works that you derive from this program, + with the following limitations: + 3a. In order to be referred to as "STREAM benchmark results", + published results must be in conformance to the STREAM + Run Rules, (briefly reviewed below) published at + http://www.cs.virginia.edu/stream/ref.html + and incorporated herein by reference. + As the copyright holder, John McCalpin retains the + right to determine conformity with the Run Rules. + 3b. Results based on modified source code or on runs not in + accordance with the STREAM Run Rules must be clearly + labelled whenever they are published. Examples of + proper labelling include: + "tuned STREAM benchmark results" + "based on a variant of the STREAM benchmark code" + Other comparable, clear, and reasonable labelling is + acceptable. + 3c. Submission of results to the STREAM benchmark web site + is encouraged, but not required. + 4. Use of this program or creation of derived works based on this + program constitutes acceptance of these licensing restrictions. + 5. Absolutely no warranty is expressed or implied. json: stream-benchmark.json - yml: stream-benchmark.yml + yaml: stream-benchmark.yml html: stream-benchmark.html - text: stream-benchmark.LICENSE + license: stream-benchmark.LICENSE - license_key: strongswan-exception + category: Copyleft spdx_license_key: LicenseRef-scancode-strongswan-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: | + Linking strongSwan statically or dynamically with other modules is making a + combined work based on strongSwan. Thus, the terms and conditions of the GNU + General Public License cover the whole combination. + + In addition, as a special exception, the copyright holders of strongSwan give + you permission to combine strongSwan with free software programs or libraries + that are released under the GNU LGPL and with code included in the standard + release of the OpenSSL project's OpenSSL library under the OpenSSL or SSLeay + licenses (or modified versions of such code, with unchanged license). You may + copy and distribute such a system following the terms of the GNU GPL for + strongSwan and the licenses of the other code concerned, provided that you + include the source code of that other code when and as the GNU GPL requires + distribution of source code. + + Note that people who make modified versions of strongSwan are not obligated to + grant this special exception for their modified versions; it is their choice + whether to do so. The GNU General Public License gives permission to release a + modified version without this exception; this exception also makes it possible + to release a modified version which carries forward this exception. json: strongswan-exception.json - yml: strongswan-exception.yml + yaml: strongswan-exception.yml html: strongswan-exception.html - text: strongswan-exception.LICENSE + license: strongswan-exception.LICENSE - license_key: stu-nicholls + category: Permissive spdx_license_key: LicenseRef-scancode-stu-nicholls other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This copyright notice must be kept untouched in the stylesheet at all times.\n\nThe\ + \ original version of this stylesheet and the associated (x)html is available at \nhttp://www.stunicholls.com/menu/pro_drop_2.html\ + \ \n\nCopyright (c) 2005-2007 Stu Nicholls. All rights reserved. \n\nThis stylesheet and\ + \ the associated (x)html may be modified in any way to fit your requirements." json: stu-nicholls.json - yml: stu-nicholls.yml + yaml: stu-nicholls.yml html: stu-nicholls.html - text: stu-nicholls.LICENSE + license: stu-nicholls.LICENSE - license_key: subcommander-exception-2.0-plus + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-subcommander-exception-2.0plus other_spdx_license_keys: - LicenseRef-scancode-subcommander-exception-2.0-plus is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "In addition, as a special exception, the copyright holder gives permission to\nlink\ + \ the code of this program with the Qt library (or with modified versions of\nQt that use\ + \ the same license as Qt), and distribute linked combinations \nincluding the two. You must\ + \ obey the GNU General Public License in all respects \nfor all of the code used other than\ + \ Qt. If you modify a file to which this \nlicense applies, you may extend this exception\ + \ to your version of the file, but \nyou are not obligated to do so. If you do not wish\ + \ to do so, delete this \nexception statement from your version." json: subcommander-exception-2.0-plus.json - yml: subcommander-exception-2.0-plus.yml + yaml: subcommander-exception-2.0-plus.yml html: subcommander-exception-2.0-plus.html - text: subcommander-exception-2.0-plus.LICENSE + license: subcommander-exception-2.0-plus.LICENSE - license_key: sugarcrm-1.1.3 + category: Copyleft spdx_license_key: SugarCRM-1.1.3 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "SUGARCRM PUBLIC LICENSE\n\nVersion 1.1.3\n\nThe SugarCRM Public License Version (\"\ + SPL\") consists of the Mozilla Public License Version 1.1, modified to be specific to SugarCRM,\ + \ with the Additional Terms in Exhibit B. The original Mozilla Public License 1.1 can be\ + \ found at: http://www.mozilla.org/MPL/MPL-1.1.html\n\n\n1. Definitions.\n\n1.0.1. \"Commercial\ + \ Use\" means distribution or otherwise making the Covered Code available to a third party.\n\ + 1.1. ''Contributor'' means each entity that creates or contributes to the creation of Modifications.\n\ + \n1.2. ''Contributor Version'' means the combination of the Original Code, prior Modifications\ + \ used by a Contributor, and the Modifications made by that particular Contributor.\n\n\ + 1.3. ''Covered Code'' means the Original Code or Modifications or the combination of the\ + \ Original Code and Modifications, in each case including portions thereof.\n\n1.4. ''Electronic\ + \ Distribution Mechanism'' means a mechanism generally accepted in the software development\ + \ community for the electronic transfer of data.\n\n1.5. ''Executable'' means Covered Code\ + \ in any form other than Source Code.\n\n1.6. ''Initial Developer'' means the individual\ + \ or entity identified as the Initial Developer in the Source Code notice required by Exhibit\ + \ A.\n\n1.7. ''Larger Work'' means a work which combines Covered Code or portions thereof\ + \ with code not governed by the terms of this License.\n\n1.8. ''License'' means this document.\n\ + \n1.8.1. \"Licensable\" means having the right to grant, to the maximum extent possible,\ + \ whether at the time of the initial grant or subsequently acquired, any and all of the\ + \ rights conveyed herein.\n\n1.9. ''Modifications'' means any addition to or deletion from\ + \ the substance or structure of either the Original Code or any previous Modifications.\ + \ When Covered Code is released as a series of files, a Modification is:\n\nA. Any addition\ + \ to or deletion from the contents of a file containing Original Code or previous Modifications.\n\ + B. Any new file that contains any part of the Original Code or previous Modifications. \n\ + 1.10. ''Original Code'' means Source Code of computer software code which is described in\ + \ the Source Code notice required by Exhibit A as Original Code, and which, at the time\ + \ of its release under this License is not already Covered Code governed by this License.\n\ + 1.10.1. \"Patent Claims\" means any patent claim(s), now owned or hereafter acquired, including\ + \ without limitation, method, process, and apparatus claims, in any patent Licensable by\ + \ grantor.\n\n1.11. ''Source Code'' means the preferred form of the Covered Code for making\ + \ modifications to it, including all modules it contains, plus any associated interface\ + \ definition files, scripts used to control compilation and installation of an Executable,\ + \ or source code differential comparisons against either the Original Code or another well\ + \ known, available Covered Code of the Contributor's choice. The Source Code can be in a\ + \ compressed or archival form, provided the appropriate decompression or de-archiving software\ + \ is widely available for no charge.\n\n1.12. \"You'' (or \"Your\") means an individual\ + \ or a legal entity exercising rights under, and complying with all of the terms of, this\ + \ License or a future version of this License issued under Section 6.1. For legal entities,\ + \ \"You'' includes any entity which controls, is controlled by, or is under common control\ + \ with You. For purposes of this definition, \"control'' means (a) the power, direct or\ + \ indirect, to cause the direction or management of such entity, whether by contract or\ + \ otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares\ + \ or beneficial ownership of such entity.\n\n2. Source Code License.\n2.1. The Initial Developer\ + \ Grant. \nThe Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive\ + \ license, subject to third party intellectual property claims:\n(a) under intellectual\ + \ property rights (other than patent or trademark) Licensable by Initial Developer to use,\ + \ reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions\ + \ thereof) with or without Modifications, and/or as part of a Larger Work; and\n(b) under\ + \ Patents Claims infringed by the making, using or selling of Original Code, to make, have\ + \ made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original\ + \ Code (or portions thereof).\n(c) the licenses granted in this Section 2.1(a) and (b) are\ + \ effective on the date Initial Developer first distributes Original Code under the terms\ + \ of this License.\n(d) Notwithstanding Section 2.1(b) above, no patent license is granted:\ + \ 1) for code that You delete from the Original Code; 2) separate from the Original Code;\ + \ or 3) for infringements caused by: i) the modification of the Original Code or ii) the\ + \ combination of the Original Code with other software or devices. \n\n2.2. Contributor\ + \ Grant. \nSubject to third party intellectual property claims, each Contributor hereby\ + \ grants You a world-wide, royalty-free, non-exclusive license\n(a) under intellectual property\ + \ rights (other than patent or trademark) Licensable by Contributor, to use, reproduce,\ + \ modify, display, perform, sublicense and distribute the Modifications created by such\ + \ Contributor (or portions thereof) either on an unmodified basis, with other Modifications,\ + \ as Covered Code and/or as part of a Larger Work; and\n(b) under Patent Claims infringed\ + \ by the making, using, or selling of Modifications made by that Contributor either alone\ + \ and/or in combination with its Contributor Version (or portions of such combination),\ + \ to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications\ + \ made by that Contributor (or portions thereof); and 2) the combination of Modifications\ + \ made by that Contributor with its Contributor Version (or portions of such combination).\n\ + (c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor\ + \ first makes Commercial Use of the Covered Code.\n(d) Notwithstanding Section 2.2(b) above,\ + \ no patent license is granted: 1) for any code that Contributor has deleted from the Contributor\ + \ Version; 2) separate from the Contributor Version; 3) for infringements caused by: i)\ + \ third party modifications of Contributor Version or ii) the combination of Modifications\ + \ made by that Contributor with other software (except as part of the Contributor Version)\ + \ or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of\ + \ Modifications made by that Contributor.\n\n\n3. Distribution Obligations.\n\n3.1. Application\ + \ of License. \nThe Modifications which You create or to which You contribute are governed\ + \ by the terms of this License, including without limitation Section 2.2. The Source Code\ + \ version of Covered Code may be distributed only under the terms of this License or a future\ + \ version of this License released under Section 6.1, and You must include a copy of this\ + \ License with every copy of the Source Code You distribute. You may not offer or impose\ + \ any terms on any Source Code version that alters or restricts the applicable version of\ + \ this License or the recipients' rights hereunder. However, You may include an additional\ + \ document offering the additional rights described in Section 3.5.\n3.2. Availability of\ + \ Source Code. \nAny Modification which You create or to which You contribute must be made\ + \ available in Source Code form under the terms of this License either on the same media\ + \ as an Executable version or via an accepted Electronic Distribution Mechanism to anyone\ + \ to whom you made an Executable version available; and if made available via Electronic\ + \ Distribution Mechanism, must remain available for at least twelve (12) months after the\ + \ date it initially became available, or at least six (6) months after a subsequent version\ + \ of that particular Modification has been made available to such recipients. You are responsible\ + \ for ensuring that the Source Code version remains available even if the Electronic Distribution\ + \ Mechanism is maintained by a third party.\n\n3.3. Description of Modifications. \nYou\ + \ must cause all Covered Code to which You contribute to contain a file documenting the\ + \ changes You made to create that Covered Code and the date of any change. You must include\ + \ a prominent statement that the Modification is derived, directly or indirectly, from Original\ + \ Code provided by the Initial Developer and including the name of the Initial Developer\ + \ in (a) the Source Code, and (b) in any notice in an Executable version or related documentation\ + \ in which You describe the origin or ownership of the Covered Code.\n\n3.4. Intellectual\ + \ Property Matters\n\n(a) Third Party Claims. \nIf Contributor has knowledge that a license\ + \ under a third party's intellectual property rights is required to exercise the rights\ + \ granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text\ + \ file with the Source Code distribution titled \"LEGAL'' which describes the claim and\ + \ the party making the claim in sufficient detail that a recipient will know whom to contact.\ + \ If Contributor obtains such knowledge after the Modification is made available as described\ + \ in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor\ + \ makes available thereafter and shall take other steps (such as notifying appropriate mailing\ + \ lists or newsgroups) reasonably calculated to inform those who received the Covered Code\ + \ that new knowledge has been obtained.\n(b) Contributor APIs. \nIf Contributor's Modifications\ + \ include an application programming interface and Contributor has knowledge of patent licenses\ + \ which are reasonably necessary to implement that API, Contributor must also include this\ + \ information in the LEGAL file. \n(c) Representations.\nContributor represents that, except\ + \ as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's\ + \ Modifications are Contributor's original creation(s) and/or Contributor has sufficient\ + \ rights to grant the rights conveyed by this License.\n\n3.5. Required Notices. \nYou must\ + \ duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible\ + \ to put such notice in a particular Source Code file due to its structure, then You must\ + \ include such notice in a location (such as a relevant directory) where a user would be\ + \ likely to look for such a notice. If You created one or more Modification(s) You may add\ + \ your name as a Contributor to the notice described in Exhibit A. You must also duplicate\ + \ this License in any documentation for the Source Code where You describe recipients' rights\ + \ or ownership rights relating to Covered Code. You may choose to offer, and to charge a\ + \ fee for, warranty, support, indemnity or liability obligations to one or more recipients\ + \ of Covered Code. However, You may do so only on Your own behalf, and not on behalf of\ + \ the Initial Developer or any Contributor. You must make it absolutely clear than any such\ + \ warranty, support, indemnity or liability obligation is offered by You alone, and You\ + \ hereby agree to indemnify the Initial Developer and every Contributor for any liability\ + \ incurred by the Initial Developer or such Contributor as a result of warranty, support,\ + \ indemnity or liability terms You offer.\n\n3.6. Distribution of Executable Versions. \n\ + You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5\ + \ have been met for that Covered Code, and if You include a notice stating that the Source\ + \ Code version of the Covered Code is available under the terms of this License, including\ + \ a description of how and where You have fulfilled the obligations of Section 3.2. The\ + \ notice must be conspicuously included in any notice in an Executable version, related\ + \ documentation or collateral in which You describe recipients' rights relating to the Covered\ + \ Code. You may distribute the Executable version of Covered Code or ownership rights under\ + \ a license of Your choice, which may contain terms different from this License, provided\ + \ that You are in compliance with the terms of this License and that the license for the\ + \ Executable version does not attempt to limit or alter the recipient's rights in the Source\ + \ Code version from the rights set forth in this License. If You distribute the Executable\ + \ version under a different license You must make it absolutely clear that any terms which\ + \ differ from this License are offered by You alone, not by the Initial Developer or any\ + \ Contributor. You hereby agree to indemnify the Initial Developer and every Contributor\ + \ for any liability incurred by the Initial Developer or such Contributor as a result of\ + \ any such terms You offer.\n\n3.7. Larger Works. \nYou may create a Larger Work by combining\ + \ Covered Code with other code not governed by the terms of this License and distribute\ + \ the Larger Work as a single product. In such a case, You must make sure the requirements\ + \ of this License are fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute\ + \ or Regulation.\nIf it is impossible for You to comply with any of the terms of this License\ + \ with respect to some or all of the Covered Code due to statute, judicial order, or regulation\ + \ then You must: (a) comply with the terms of this License to the maximum extent possible;\ + \ and (b) describe the limitations and the code they affect. Such description must be included\ + \ in the LEGAL file described in Section 3.4 and must be included with all distributions\ + \ of the Source Code. Except to the extent prohibited by statute or regulation, such description\ + \ must be sufficiently detailed for a recipient of ordinary skill to be able to understand\ + \ it.\n\n5. Application of this License.\nThis License applies to code to which the Initial\ + \ Developer has attached the notice in Exhibit A and to related Covered Code.\n\n6. Versions\ + \ of the License.\n6.1. New Versions. \nSugarCRM Inc. (''SugarCRM'') may publish revised\ + \ and/or new versions of the License from time to time. Each version will be given a distinguishing\ + \ version number.\n6.2. Effect of New Versions. \nOnce Covered Code has been published under\ + \ a particular version of the License, You may always continue to use it under the terms\ + \ of that version. You may also choose to use such Covered Code under the terms of any subsequent\ + \ version of the License published by SugarCRM. No one other than SugarCRM has the right\ + \ to modify the terms applicable to Covered Code created under this License.\n\n6.3. Derivative\ + \ Works. \nIf You create or use a modified version of this License (which you may only do\ + \ in order to apply it to code which is not already Covered Code governed by this License),\ + \ You must (a) rename Your license so that the phrases ''SugarCRM'', ''SPL'' or any confusingly\ + \ similar phrase do not appear in your license (except to note that your license differs\ + \ from this License) and (b) otherwise make it clear that Your version of the license contains\ + \ terms which differ from the SugarCRM Public License. (Filling in the name of the Initial\ + \ Developer, Original Code or Contributor in the notice described in Exhibit A shall not\ + \ of themselves be deemed to be modifications of this License.)\n\n7. DISCLAIMER OF WARRANTY.\n\ + COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS'' BASIS, WITHOUT WARRANTY OF ANY\ + \ KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE\ + \ COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.\ + \ THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD\ + \ ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY\ + \ OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS\ + \ DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED\ + \ CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n8.1. This\ + \ License and the rights granted hereunder will terminate automatically if You fail to comply\ + \ with terms herein and fail to cure such breach within 30 days of becoming aware of the\ + \ breach. All sublicenses to the Covered Code which are properly granted shall survive any\ + \ termination of this License. Provisions which, by their nature, must remain in effect\ + \ beyond the termination of this License shall survive.\n8.2. If You initiate litigation\ + \ by asserting a patent infringement claim (excluding declatory judgment actions) against\ + \ Initial Developer or a Contributor (the Initial Developer or Contributor against whom\ + \ You file such action is referred to as \"Participant\") alleging that:\n\n(a) such Participant's\ + \ Contributor Version directly or indirectly infringes any patent, then any and all rights\ + \ granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall,\ + \ upon 60 days notice from Participant terminate prospectively, unless if within 60 days\ + \ after receipt of notice You either: (i) agree in writing to pay Participant a mutually\ + \ agreeable reasonable royalty for Your past and future use of Modifications made by such\ + \ Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version\ + \ against such Participant. If within 60 days of notice, a reasonable royalty and payment\ + \ arrangement are not mutually agreed upon in writing by the parties or the litigation claim\ + \ is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2\ + \ automatically terminate at the expiration of the 60 day notice period specified above.\n\ + \n(b) any software, hardware, or device, other than such Participant's Contributor Version,\ + \ directly or indirectly infringes any patent, then any rights granted to You by such Participant\ + \ under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made,\ + \ used, sold, distributed, or had made, Modifications made by that Participant.\n\n8.3.\ + \ If You assert a patent infringement claim against Participant alleging that such Participant's\ + \ Contributor Version directly or indirectly infringes any patent where such claim is resolved\ + \ (such as by license or settlement) prior to the initiation of patent infringement litigation,\ + \ then the reasonable value of the licenses granted by such Participant under Sections 2.1\ + \ or 2.2 shall be taken into account in determining the amount or value of any payment or\ + \ license.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all end\ + \ user license agreements (excluding distributors and resellers) which have been validly\ + \ granted by You or any distributor hereunder prior to termination shall survive termination.\n\ + \n9. LIMITATION OF LIABILITY.\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER\ + \ TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER,\ + \ ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH\ + \ PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL\ + \ DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,\ + \ WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES\ + \ OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES.\ + \ THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\ + \ RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION.\ + \ SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL\ + \ DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT\ + \ END USERS.\nThe Covered Code is a ''commercial item,'' as that term is defined in 48 C.F.R.\ + \ 2.101 (Oct. 1995), consisting of ''commercial computer software'' and ''commercial computer\ + \ software documentation,'' as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent\ + \ with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S.\ + \ Government End Users acquire Covered Code with only those rights set forth herein.\n\n\ + 11. MISCELLANEOUS.\nThis License represents the complete agreement concerning subject matter\ + \ hereof. If any provision of this License is held to be unenforceable, such provision shall\ + \ be reformed only to the extent necessary to make it enforceable. This License shall be\ + \ governed by California law provisions (except to the extent applicable law, if any, provides\ + \ otherwise), excluding its conflict-of-law provisions. With respect to disputes in which\ + \ at least one party is a citizen of, or an entity chartered or registered to do business\ + \ in the United States of America, any litigation relating to this License shall be subject\ + \ to the jurisdiction of the Federal Courts of the Northern District of California, with\ + \ venue lying in Santa Clara County, California, with the losing party responsible for costs,\ + \ including without limitation, court costs and reasonable attorneys' fees and expenses.\ + \ The application of the United Nations Convention on Contracts for the International Sale\ + \ of Goods is expressly excluded. Any law or regulation which provides that the language\ + \ of a contract shall be construed against the drafter shall not apply to this License.\n\ + \n12. RESPONSIBILITY FOR CLAIMS.\nAs between Initial Developer and the Contributors, each\ + \ party is responsible for claims and damages arising, directly or indirectly, out of its\ + \ utilization of rights under this License and You agree to work with Initial Developer\ + \ and Contributors to distribute such responsibility on an equitable basis. Nothing herein\ + \ is intended or shall be deemed to constitute any admission of liability.\n\n13. MULTIPLE-LICENSED\ + \ CODE.\nInitial Developer may designate portions of the Covered Code as \"Multiple-Licensed\"\ + . \"Multiple-Licensed\" means that the Initial Developer permits you to utilize portions\ + \ of the Covered Code under Your choice of the SPL or the alternative licenses, if any,\ + \ specified by the Initial Developer in the file described in Exhibit A.\nSugarCRM Public\ + \ License 1.1.3 - Exhibit A\n\nThe contents of this file are subject to the SugarCRM Public\ + \ License Version 1.1.3\n(\"License\"); You may not use this file except in compliance with\ + \ the \nLicense. You may obtain a copy of the License at http://www.sugarcrm.com/SPL\nSoftware\ + \ distributed under the License is distributed on an \"AS IS\" basis,\nWITHOUT WARRANTY\ + \ OF ANY KIND, either express or implied. See the License for\nthe specific language governing\ + \ rights and limitations under the License.\n\nThe Original Code is: SugarCRM Open Source\n\ + \nThe Initial Developer of the Original Code is SugarCRM, Inc.\nPortions created by SugarCRM\ + \ are Copyright (C) 2004 SugarCRM, Inc.;\nAll Rights Reserved.\nContributor(s): .\n[NOTE:\ + \ The text of this Exhibit A may differ slightly from the text of the notices in the Source\ + \ Code files of the Original Code. You should use the text of this Exhibit A rather than\ + \ the text found in the Original Code Source Code for Your Modifications.]\n\nSugarCRM Public\ + \ License 1.1.3 - Exhibit B\n\nAdditional Terms applicable to the SugarCRM Public License.\n\ + \nI. Effect.\nThese additional terms described in this SugarCRM Public License – Additional\ + \ Terms shall apply to the Covered Code under this License.\n\nII. SugarCRM and logo.\n\ + This License does not grant any rights to use the trademarks \"SugarCRM\" and the \"SugarCRM\"\ + \ logos even if such marks are included in the Original Code or Modifications.\n\nHowever,\ + \ in addition to the other notice obligations, all copies of the Covered Code in Executable\ + \ and Source Code form distributed must, as a form of attribution of the original author,\ + \ include on each user interface screen (i) the \"Powered by SugarCRM\" logo and (ii) the\ + \ copyright notice in the same form as the latest version of the Covered Code distributed\ + \ by SugarCRM, Inc. at the time of distribution of such copy. In addition, the \"Powered\ + \ by SugarCRM\" logo must be visible to all users and be located at the very bottom center\ + \ of each user interface screen. Notwithstanding the above, the dimensions of the \"Powered\ + \ By SugarCRM\" logo must be at least 106 x 23 pixels. When users click on the \"Powered\ + \ by SugarCRM\" logo it must direct them back to http://www.sugarforge.org. In addition,\ + \ the copyright notice must remain visible to all users at all times at the bottom of the\ + \ user interface screen. When users click on the copyright notice, it must direct them back\ + \ to http://www.sugarcrm.com" json: sugarcrm-1.1.3.json - yml: sugarcrm-1.1.3.yml + yaml: sugarcrm-1.1.3.yml html: sugarcrm-1.1.3.html - text: sugarcrm-1.1.3.LICENSE + license: sugarcrm-1.1.3.LICENSE - license_key: sun-bcl-11-06 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-11-06 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "License Agreement for {ProductName}\nSun Microsystems, Inc. Binary Code License Agreement\n\ + \nREAD THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY\ + \ \"AGREEMENT\") CAREFULLY BEFORE OPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE\ + \ MEDIA PACKAGE, YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE\ + \ ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE \"ACCEPT\" BUTTON\ + \ AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE TERMS, PROMPTLY RETURN\ + \ THE UNUSED SOFTWARE TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED\ + \ ELECTRONICALLY, SELECT THE \"DECLINE\" BUTTON AT THE END OF THIS AGREEMENT.\n\n1. LICENSE\ + \ TO USE. Sun grants you a non-exclusive and non-transferable license for the internal use\ + \ only of the accompanying software and documentation and any error corrections provided\ + \ by Sun (collectively \"Software\"), by the number of users and the class of computer hardware\ + \ for which the corresponding fee has been paid.\n\n2. RESTRICTIONS. Software is confidential\ + \ and copyrighted. Title to Software and all associated intellectual property rights is\ + \ retained by Sun and/or its licensors. Except as specifically authorized in any Supplemental\ + \ License Terms, you may not make copies of Software, other than a single copy of Software\ + \ for archival purposes. Unless enforcement is prohibited by applicable law, you may not\ + \ modify, decompile, or reverse engineer Software. Licensee acknowledges that Licensed Software\ + \ is not designed or intended for use in the design, construction, operation or maintenance\ + \ of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty\ + \ of fitness for such uses. No right, title or interest in or to any trademark, service\ + \ mark, logo or trade name of Sun or its licensors is granted under this Agreement.\n\n\ + 3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the\ + \ date of purchase, as evidenced by a copy of the receipt, the media on which Software is\ + \ furnished (if any) will be free of defects in materials and workmanship under normal use.\ + \ Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's\ + \ entire liability under this limited warranty will be at Sun's option to replace Software\ + \ media or refund the fee paid for Software.\n\n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED\ + \ IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,\ + \ INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR\ + \ NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD\ + \ TO BE LEGALLY INVALID.\n\n5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY\ + \ LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA,\ + \ OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED\ + \ REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY\ + \ TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no\ + \ event will Sun's liability\n\nto you, whether in contract, tort (including negligence),\ + \ or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing\ + \ limitations will apply even if the above stated warranty fails of its essential purpose.\n\ + \n6. Termination. This Agreement is effective until terminated. You may terminate this Agreement\ + \ at any time by destroying all copies of Software. This Agreement will terminate immediately\ + \ without notice from Sun if you fail to comply with any provision of this Agreement. Upon\ + \ Termination, you must destroy all copies of Software.\n\n7. Export Regulations. All Software\ + \ and technical data delivered under this Agreement are subject to US export control laws\ + \ and may be subject to export or import regulations in other countries. You agree to comply\ + \ strictly with all such laws and regulations and acknowledge that you have the responsibility\ + \ to obtain such licenses to export, re-export, or import as may be required after delivery\ + \ to you.\n\n8. U.S. Government Restricted Rights. If Software is being acquired by or on\ + \ behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor\ + \ (at any tier), then the Government's rights in Software and accompanying documentation\ + \ will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201\ + \ through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101\ + \ and 12.212 (for non-DOD acquisitions).\n\n9. Governing Law. Any action related to this\ + \ Agreement will be governed by California law and controlling U.S. federal law. No choice\ + \ of law rules of any jurisdiction will apply.\n\n10. Severability. If any provision of\ + \ this Agreement is held to be unenforceable, this Agreement will remain in effect with\ + \ the provision omitted, unless omission would frustrate the intent of the parties, in which\ + \ case this Agreement will immediately terminate.\n\n11. Integration. This Agreement is\ + \ the entire agreement between you and Sun relating to its subject matter. It supersedes\ + \ all prior or contemporaneous oral or written communications, proposals, representations\ + \ and warranties and prevails over any conflicting or additional terms of any quote, order,\ + \ acknowledgment, or other communication between the parties relating to its subject matter\ + \ during the term of this Agreement. No modification of this Agreement will be binding,\ + \ unless in writing and signed by an authorized representative of each party.\n\n{ProductName}\ + \ \nSUPPLEMENTAL LICENSE TERMS\n\nThese supplemental license terms (\"Supplemental Terms\"\ + ) add to or modify the terms of the Binary Code License Agreement (collectively, the \"\ + Agreement\"). Capitalized terms not defined in these Supplemental Terms shall have the same\ + \ meanings ascribed to them in the Agreement. These Supplemental Terms shall supersede any\ + \ inconsistent or conflicting terms in the Agreement, or in any license contained within\ + \ the Software.\n\n1. Software Internal Use and Development License Grant. Subject to the\ + \ terms and conditions of this Agreement, including, but not limited to Section 3 (Java\ + \ Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive,\ + \ non-transferable, limited license to reproduce internally and use internally the binary\ + \ form of the Software, complete and unmodified, for the sole purpose of designing,\n\n\ + developing and testing your Java applets and applications (\"Programs\").\n\n2. License\ + \ to Distribute Software. In addition to the license granted in Section 1 (Software Internal\ + \ Use and Development License Grant) of these Supplemental Terms, subject to the terms and\ + \ conditions of this Agreement, including but not limited to, Section 3 (Java Technology\ + \ Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable,\ + \ limited license to reproduce and distribute the Software in binary code form only, provided\ + \ that you (i) distribute the Software complete and unmodified and only bundled as part\ + \ of your Programs, (ii) do not distribute additional software intended to replace any component(s)\ + \ of the Software, (iii) do not remove or alter any proprietary legends or notices contained\ + \ in the Software, (iv) only distribute the Software subject to a license agreement that\ + \ protects Sun's interests consistent with the terms contained in this Agreement, and (v)\ + \ agree to defend and indemnify Sun and its licensors from and against any damages, costs,\ + \ liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in\ + \ connection with any claim, lawsuit or action by any third party that arises or results\ + \ from the use or distribution of any and all Programs and/or Software.\n\n3. Java Technology\ + \ Restrictions. You may not modify the Java Platform Interface (\"JPI\", identified as classes\ + \ contained within the \"java\" package or any subpackages of the \"java\" package), by\ + \ creating additional classes within the JPI or otherwise causing the addition to or modification\ + \ of the classes in the JPI. In the event that you create an additional class and associated\ + \ API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to\ + \ third party software developers for the purpose of developing additional software which\ + \ invokes such additional API, you must promptly publish broadly an accurate specification\ + \ for such API for free use by all developers. You may not create, or authorize your licensees\ + \ to create additional classes, interfaces, or subpackages that are in any way identified\ + \ as \"java\", \"javax\", \"sun\" or similar convention as specified by Sun in any naming\ + \ convention designation.\n\n4. Trademarks and Logos. You acknowledge and agree as between\ + \ you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks\ + \ and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks,\ + \ logos and other brand designations (\"Sun Marks\"), and you agree to comply with the Sun\ + \ Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks.\ + \ Any use you make of the Sun Marks inures to Sun's benefit.\n\n5. Source Code. Software\ + \ may contain source code that is provided solely for reference purposes pursuant to the\ + \ terms of this Agreement. Source code may not be redistributed unless expressly provided\ + \ for in this Agreement.\n\n6. Termination for Infringement. Either party may terminate\ + \ this Agreement immediately should any Software become, or in either party's opinion be\ + \ likely to become, the subject of a claim of infringement of any intellectual property\ + \ right.\n\nFor inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa\ + \ Clara, California 95054, U.S.A. \n(Form ID#011801)" json: sun-bcl-11-06.json - yml: sun-bcl-11-06.yml + yaml: sun-bcl-11-06.yml html: sun-bcl-11-06.html - text: sun-bcl-11-06.LICENSE + license: sun-bcl-11-06.LICENSE - license_key: sun-bcl-11-07 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-11-07 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Sun Microsystems, Inc. + Binary Code License Agreement + + READ THE TERMS OF THIS AGREEMENT AND ANY PROVIDED + SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY + "AGREEMENT") CAREFULLY BEFORE OPENING THE SOFTWARE + MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA + PACKAGE, YOU AGREE TO THE TERMS OF THIS + AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE + ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE + TERMS BY SELECTING THE "ACCEPT" BUTTON AT THE END + OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL + THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE + TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE + SOFTWARE IS ACCESSED ELECTRONICALLY, SELECT THE + "DECLINE" BUTTON AT THE END OF THIS AGREEMENT. + + 1. LICENSE TO USE. Sun grants you a + non-exclusive and non-transferable license for the + internal use only of the accompanying software and + documentation and any error corrections provided + by Sun (collectively "Software"), by the number of + users and the class of computer hardware for which + the corresponding fee has been paid. + + 2. RESTRICTIONS. Software is confidential and + copyrighted. Title to Software and all associated + intellectual property rights is retained by Sun + and/or its licensors. Except as specifically + authorized in any Supplemental License Terms, you + may not make copies of Software, other than a + single copy of Software for archival purposes. + Unless enforcement is prohibited by applicable + law, you may not modify, decompile, or reverse + engineer Software. Licensee acknowledges that + Licensed Software is not designed or intended for + use in the design, construction, operation or + maintenance of any nuclear facility. Sun + Microsystems, Inc. disclaims any express or + implied warranty of fitness for such uses. No + right, title or interest in or to any trademark, + service mark, logo or trade name of Sun or its + licensors is granted under this Agreement. + + 3. LIMITED WARRANTY. Sun warrants to you that for + a period of ninety (90) days from the date of + purchase, as evidenced by a copy of the receipt, + the media on which Software is furnished (if any) + will be free of defects in materials and + workmanship under normal use. Except for the + foregoing, Software is provided "AS IS". Your + exclusive remedy and Sun's entire liability under + this limited warranty will be at Sun's option to + replace Software media or refund the fee paid for + Software. + + 4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN + THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, + REPRESENTATIONS AND WARRANTIES, INCLUDING ANY + IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A + PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE + DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE + DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. + + 5. LIMITATION OF LIABILITY. TO THE EXTENT NOT + PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS + LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT + OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, + INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED + REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT + OF OR RELATED TO THE USE OF OR INABILITY TO USE + SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE + POSSIBILITY OF SUCH DAMAGES. In no event will + Sun's liability to you, whether in contract, tort + (including negligence), or otherwise, exceed the + amount paid by you for Software under this + Agreement. The foregoing limitations will apply + even if the above stated warranty fails of its + essential purpose. + + 6. Termination. This Agreement is effective + until terminated. You may terminate this + Agreement at any time by destroying all copies of + Software. This Agreement will terminate + immediately without notice from Sun if you fail to + comply with any provision of this Agreement. Upon + Termination, you must destroy all copies of + Software. + + 7. Export Regulations. All Software and technical + data delivered under this Agreement are subject to + US export control laws and may be subject to + export or import regulations in other countries. + You agree to comply strictly with all such laws + and regulations and acknowledge that you have the + responsibility to obtain such licenses to export, + re-export, or import as may be required after + delivery to you. + + 8. U.S. Government Restricted Rights. If Software + is being acquired by or on behalf of the U.S. + Government or by a U.S. Government prime + contractor or subcontractor (at any tier), then + the Government's rights in Software and + accompanying documentation will be only as set + forth in this Agreement; this is in accordance + with 48 CFR 227.7201 through 227.7202-4 (for + Department of Defense (DOD) acquisitions) and with + 48 CFR 2.101 and 12.212 (for non-DOD + acquisitions). + + 9. Governing Law. Any action related to this + Agreement will be governed by California law and + controlling U.S. federal law. No choice of law + rules of any jurisdiction will apply. + + 10. Severability. If any provision of this + Agreement is held to be unenforceable, this + Agreement will remain in effect with the provision + omitted, unless omission would frustrate the + intent of the parties, in which case this + Agreement will immediately terminate. + + 11. Integration. This Agreement is the entire + agreement between you and Sun relating to its + subject matter. It supersedes all prior or + contemporaneous oral or written communications, + proposals, representations and warranties and + prevails over any conflicting or additional terms + of any quote, order, acknowledgment, or other + communication between the parties relating to its + subject matter during the term of this Agreement. + No modification of this Agreement will be binding, + unless in writing and signed by an authorized + representative of each party. + + {ProductName} + + SUPPLEMENTAL LICENSE TERMS + + These supplemental license terms ("Supplemental + Terms") add to or modify the terms of the Binary + Code License Agreement (collectively, the + "Agreement"). Capitalized terms not defined in + these Supplemental Terms shall have the same + meanings ascribed to them in the Binary Code + License Agreement. These Supplemental Terms shall + supersede any inconsistent or conflicting terms in + the Binary Code License Agreement, or in any + license contained within the Software. + + 1. Software Internal Use and Development License + Grant. Subject to the terms and conditions of this + Agreement, including, but not limited to Section 4 + (Java Technology Restrictions) of these + Supplemental Terms, Sun grants you a + non-exclusive, non-transferable, limited license + without fees to reproduce internally and use + internally the binary form of the Software + complete and unmodified for the sole purpose of + designing, developing, testing, and running your + Java applets and applications intended to run on + Java-enabled general purpose desktop computers and + servers ("Programs"). + + 2. License to Distribute Software. Subject to the + terms and conditions of this Agreement, including, + but not limited to Section 4 (Java Technology + Restrictions) of these Supplemental Terms, Sun + grants you a non-exclusive, non-transferable, + limited license without fees to reproduce and + distribute the Software, provided that: (i) you + distribute the Software complete and unmodified + and only bundled as part of, and for the sole + purpose of running, your Programs, (ii) the + Programs add significant and primary functionality + to the Software, (iii) you do not distribute + additional software intended to replace any + component(s) of the Software, (iv) you do not + remove or alter any proprietary legends or notices + contained in the Software, (v) you only distribute + the Software subject to a license agreement that + protects Sun's interests consistent with the terms + contained in this Agreement, and (vi) you agree to + defend and indemnify Sun and its licensors from + and against any damages, costs, liabilities, + settlement amounts and/or expenses (including + attorneys' fees) incurred in connection with any + claim, lawsuit or action by any third party that + arises or results from the use or distribution of + any and all Programs and/or Software. + + 3. License to Distribute Redistributables. Subject + to the terms and conditions of this Agreement, + including but not limited to Section 4 (Java + Technology Restrictions) of these Supplemental + Terms, Sun grants you a non-exclusive, + non-transferable, limited license without fees to + reproduce and distribute those files specifically + identified as redistributable in the Software + "README" file ("Redistributables") provided that: + (i) you distribute the Redistributables complete + and unmodified (unless otherwise specified in the + applicable README file), and only bundled as part + of Programs, (ii) you do not distribute additional + software intended to supersede any component(s) of + the Redistributables, (iii) you do not remove or + alter any proprietary legends or notices contained + in or on the Redistributables, (iv) you only + distribute the Redistributables pursuant to a + license agreement that protects Sun's interests + consistent with the terms contained in the + Agreement, and (v) you agree to defend and + indemnify Sun and its licensors from and against + any damages, costs, liabilities, settlement + amounts and/or expenses (including attorneys' + fees) incurred in connection with any claim, + lawsuit or action by any third party that arises + or results from the use or distribution of any and + all Programs and/or Software. + + 4. Java Technology Restrictions. You may not + modify the Java Platform Interface ("JPI", + identified as classes contained within the "java" + package or any subpackages of the "java" package), + by creating additional classes within the JPI or + otherwise causing the addition to or modification + of the classes in the JPI. In the event that you + create an additional class and associated API(s) + which (i) extends the functionality of the Java + platform, and (ii) is exposed to third party + software developers for the purpose of developing + additional software which invokes such additional + API, you must promptly publish broadly an accurate + specification for such API for free use by all + developers. You may not create, or authorize your + licensees to create, additional classes, + interfaces, or subpackages that are in any way + identified as "java", "javax", "sun" or similar + convention as specified by Sun in any naming + convention designation. + + 5. Trademarks and Logos. You acknowledge and agree + as between you and Sun that Sun owns the SUN, + SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks + and all SUN, SOLARIS, JAVA, JINI, FORTE, and + iPLANET-related trademarks, service marks, logos + and other brand designations ("Sun Marks"), and + you agree to comply with the Sun Trademark and + Logo Usage Requirements currently located at + http://www.sun.com/policies/trademarks. Any use + you make of the Sun Marks inures to Sun's benefit. + + 6. Source Code. Software may contain source code + that is provided solely for reference purposes + pursuant to the terms of this Agreement. Source + code may not be redistributed unless expressly + provided for in this Agreement. + + 7. Termination for Infringement. Either party may + terminate this Agreement immediately should any + Software become, or in either party's opinion be + likely to become, the subject of a claim of + infringement of any intellectual property right. + + For inquiries please contact: Sun Microsystems, + Inc., 4150 Network Circle, Santa Clara, California + 95054, U.S.A. + (LFI#128935/Form ID#011801) json: sun-bcl-11-07.json - yml: sun-bcl-11-07.yml + yaml: sun-bcl-11-07.yml html: sun-bcl-11-07.html - text: sun-bcl-11-07.LICENSE + license: sun-bcl-11-07.LICENSE - license_key: sun-bcl-11-08 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-11-08 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Sun Microsystems, Inc.\nBinary Code License Agreement\n\n{ProductName}\n\nREAD THE\ + \ TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\"\ + ) CAREFULLY BEFORE OPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA PACKAGE,\ + \ YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY,\ + \ INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE \"ACCEPT\" BUTTON AT THE END\ + \ OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE TERMS, PROMPTLY RETURN THE UNUSED\ + \ SOFTWARE TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED ELECTRONICALLY,\ + \ SELECT THE \"DECLINE\" BUTTON AT THE END OF THIS AGREEMENT. \n\n1. LICENSE TO USE. Sun\ + \ grants you a non-exclusive and non-transferable license for the internal use only of the\ + \ accompanying software and documentation and any error corrections provided by Sun (collectively\ + \ \"Software\"), by the number of users and the class of computer hardware for which the\ + \ corresponding fee has been paid. \n\n2. RESTRICTIONS. Software is confidential and copyrighted.\ + \ Title to Software and all associated intellectual property rights is retained by Sun and/or\ + \ its licensors. Except as specifically authorized in any Supplemental License Terms, you\ + \ may not make copies of Software, other than a single copy of Software for archival purposes.\ + \ Unless enforcement is prohibited by applicable law, you may not modify, decompile, or\ + \ reverse engineer Software. Licensee acknowledges that Software is not designed or intended\ + \ for use in the design, construction, operation or maintenance of any nuclear facility.\ + \ Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses.\ + \ No right, title or interest in or to any trademark, service mark, logo or trade name\ + \ of Sun or its licensors is granted under this Agreement. \n\n3. LIMITED WARRANTY. Sun\ + \ warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced\ + \ by a copy of the receipt, the media on which Software is furnished (if any) will be free\ + \ of defects in materials and workmanship under normal use. Except for the foregoing, Software\ + \ is provided \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited\ + \ warranty will be at Sun's option to replace Software media or refund the fee paid for\ + \ Software. \n\n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS\ + \ OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY\ + \ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED,\ + \ EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. \n\n5. LIMITATION\ + \ OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS\ + \ BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL,\ + \ INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY,\ + \ ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS\ + \ BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to\ + \ you, whether in contract, tort (including negligence), or otherwise, exceed the amount\ + \ paid by you for Software under this Agreement. The foregoing limitations will apply even\ + \ if the above stated warranty fails of its essential purpose. \n\n6. Termination. This\ + \ Agreement is effective until terminated. You may terminate this Agreement at any time\ + \ by destroying all copies of Software. This Agreement will terminate immediately without\ + \ notice from Sun if you fail to comply with any provision of this Agreement. Upon Termination,\ + \ you must destroy all copies of Software. \n\n7. Export Regulations. All Software and\ + \ technical data delivered under this Agreement are subject to US export control laws and\ + \ may be subject to export or import regulations in other countries. You agree to comply\ + \ strictly with all such laws and regulations and acknowledge that you have the responsibility\ + \ to obtain such licenses to export, re-export, or import as may be required after delivery\ + \ to you. \n\n8. U.S. Government Restricted Rights. If Software is being acquired by or\ + \ on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor\ + \ (at any tier), then the Government's rights in Software and accompanying documentation\ + \ will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201\ + \ through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101\ + \ and 12.212 (for non-DOD acquisitions). \n\n9. Governing Law. Any action related to this\ + \ Agreement will be governed by California law and controlling U.S. federal law. No choice\ + \ of law rules of any jurisdiction will apply. \n\n10. Severability. If any provision of\ + \ this Agreement is held to be unenforceable, this Agreement will remain in effect with\ + \ the provision omitted, unless omission would frustrate the intent of the parties, in which\ + \ case this Agreement will immediately terminate. \n\n11. Integration. This Agreement is\ + \ the entire agreement between you and Sun relating to its subject matter. It supersedes\ + \ all prior or contemporaneous oral or written communications, proposals, representations\ + \ and warranties and prevails over any conflicting or additional terms of any quote, order,\ + \ acknowledgment, or other communication between the parties relating to its subject matter\ + \ during the term of this Agreement. No modification of this Agreement will be binding,\ + \ unless in writing and signed by an authorized representative of each party. \n\n \n \ + \ {ProductName}\n \n SUPPLEMENTAL\ + \ LICENSE TERMS\n\nThese supplemental license terms (\"Supplemental Terms\") add to or modify\ + \ the terms of the Binary Code License Agreement (collectively, the \"Agreement\"). Capitalized\ + \ terms not defined in these Supplemental Terms shall have the same meanings ascribed to\ + \ them in the Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting\ + \ terms in the Agreement, or in any license contained within the Software. \n\n1. Software\ + \ Internal Use and Development License Grant. Subject to the terms and conditions of this\ + \ Agreement, including, but not limited to Section 3 (Java Technology Restrictions) of these\ + \ Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license\ + \ to reproduce internally and use internally the binary form of the Software, complete and\ + \ unmodified, for the sole purpose of designing, developing and testing your Java applets\ + \ and applications (\"Programs\"). \n\n2. License to Distribute Software. In addition to\ + \ the license granted in Section 1 (Software Internal Use and Development License Grant)\ + \ of these Supplemental Terms, subject to the terms and conditions of this Agreement, including\ + \ but not limited to, Section 3 (Java Technology Restrictions) of these Supplemental Terms,\ + \ Sun grants you a non-exclusive, non-transferable, limited license to reproduce and distribute\ + \ the Software in binary code form only, provided that you (i) distribute the Software complete\ + \ and unmodified and only bundled as part of your Programs, (ii) do not distribute additional\ + \ software intended to replace any component(s) of the Software, (iii) do not remove or\ + \ alter any proprietary legends or notices contained in the Software, (iv) only distribute\ + \ the Software subject to a license agreement that protects Sun's interests consistent with\ + \ the terms contained in this Agreement, and (v) agree to defend and indemnify Sun and its\ + \ licensors from and against any damages, costs, liabilities, settlement amounts and/or\ + \ expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or\ + \ action by any third party that arises or results from the use or distribution of any and\ + \ all Programs and/or Software. \n\n3. Java Technology Restrictions. You may not modify\ + \ the Java Platform Interface (\"JPI\", identified as classes contained within the \"java\"\ + \ package or any subpackages of the \"java\" package), by creating additional classes within\ + \ the JPI or otherwise causing the addition to or modification of the classes in the JPI.\ + \ In the event that you create an additional class and associated API(s) which (i) extends\ + \ the functionality of the Java platform, and (ii) is exposed to third party software developers\ + \ for the purpose of developing additional software which invokes such additional API, you\ + \ must promptly publish broadly an accurate specification for such API for free use by all\ + \ developers. You may not create, or authorize your licensees to create additional classes,\ + \ interfaces, or subpackages that are in any way identified as \"java\", \"javax\", \"sun\"\ + \ or similar convention as specified by Sun in any naming convention designation. \n\n4.\ + \ Java Runtime Availability. Refer to the appropriate version of the Java Runtime Environment\ + \ binary code license (currently located at http://www.java.sun.com/jdk/index.html) for\ + \ the availability of runtime code which may be distributed with Java applets and applications.\n\ + \n5. Trademarks and Logos. You acknowledge and agree as between you and Sun that Sun owns\ + \ the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA,\ + \ JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations\ + \ (\"Sun Marks\"), and you agree to comply with the Sun Trademark and Logo Usage Requirements\ + \ currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun\ + \ Marks inures to Sun's benefit. \n\n6. Source Code. Software may contain source code that\ + \ is provided solely for reference purposes pursuant to the terms of this Agreement. Source\ + \ code may not be redistributed unless expressly provided for in this Agreement. \n\n7.\ + \ Termination for Infringement. Either party may terminate this Agreement immediately should\ + \ any Software become, or in either party's opinion be likely to become, the subject of\ + \ a claim of infringement of any intellectual property right.\n\n8. Third Party Code. Additional\ + \ copyright notices and license terms applicable to portions of the Software are set forth\ + \ in the THIRDPARTYLICENSEREADME. In addition to any terms and conditions of any third party\ + \ open source/freeware license identified in the THIRDPARTYLICENSEREADME, the disclaimer\ + \ of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary\ + \ Code License Agreement shall apply to all Software in this distribution.\n\nFor inquiries\ + \ please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054,\ + \ U.S.A\n\n(LFI#143342/Form ID#011801)" json: sun-bcl-11-08.json - yml: sun-bcl-11-08.yml + yaml: sun-bcl-11-08.yml html: sun-bcl-11-08.html - text: sun-bcl-11-08.LICENSE + license: sun-bcl-11-08.LICENSE - license_key: sun-bcl-j2re-1.2.x + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-j2re-1.2.x other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Sun Microsystems, Inc. \n Binary Code License Agreement\n\nREAD\ + \ THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL \nLICENSE TERMS (COLLECTIVELY\ + \ \"AGREEMENT\") CAREFULLY BEFORE \nOPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE\ + \ SOFTWARE \nMEDIA PACKAGE, YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF \nYOU ARE ACCESSING\ + \ THE SOFTWARE ELECTRONICALLY, INDICATE YOUR \nACCEPTANCE OF THESE TERMS BY SELECTING THE\ + \ \"ACCEPT\" BUTTON AT \nTHE END OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE \n\ + TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE OF \nPURCHASE FOR A REFUND OR,\ + \ IF THE SOFTWARE IS ACCESSED\nELECTRONICALLY, SELECT THE \"DECLINE\" BUTTON AT THE END\ + \ OF THIS\nAGREEMENT.\n\n1. LICENSE TO USE. Sun grants you a non-exclusive and\nnon-transferable\ + \ license for the internal use only of the accompanying\nsoftware and documentation and\ + \ any error corrections provided by Sun\n(collectively \"Software\"), by the number of users\ + \ and the class of\ncomputer hardware for which the corresponding fee has been paid.\n\n\ + 2. RESTRICTIONS Software is confidential and copyrighted. Title to\nSoftware and all associated\ + \ intellectual property rights is retained\nby Sun and/or its licensors. Except as specifically\ + \ authorized in any\nSupplemental License Terms, you may not make copies of Software, other\n\ + than a single copy of Software for archival purposes. Unless\nenforcement is prohibited\ + \ by applicable law, you may not modify,\ndecompile, reverse engineer Software. Software\ + \ is not designed or\nlicensed for use in on-line control of aircraft, air traffic, aircraft\n\ + navigation or aircraft communications; or in the design, construction,\noperation or maintenance\ + \ of any nuclear facility. You warrant that\nyou will not use Software for these purposes.\ + \ You may not publish or\nprovide the results of any benchmark or comparison tests run\ + \ on\nSoftware to any third party without the prior written consent of Sun.\nNo right, title\ + \ or interest in or to any trademark, service mark, logo\nor trade name of Sun or its licensors\ + \ is granted under this Agreement.\n\n3. LIMITED WARRANTY. Sun warrants to you that for\ + \ a period of ninety\n(90) days from the date of purchase, as evidenced by a copy of the\n\ + receipt, the media on which Software is furnished (if any) will be\nfree of defects in materials\ + \ and workmanship under normal use. Except\nfor the foregoing, Software is provided \"\ + AS IS\". Your exclusive\nremedy and Sun's entire liability under this limited warranty\ + \ will be\nat Sun's option to replace Software media or refund the fee paid for\nSoftware.\n\ + \n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, \nALL EXPRESS OR IMPLIED\ + \ CONDITIONS, REPRESENTATIONS AND WARRANTIES,\nINCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,\ + \ FITNESS FOR A\nPARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT \nTO THE\ + \ EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n5. LIMITATION OF LIABILITY.\ + \ TO THE EXTENT NOT PROHIBITED BY LAW, \nIN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE\ + \ FOR ANY LOST REVENUE,\nPROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL\ + \ \nOR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF\nLIABILITY, ARISING\ + \ OUT OF OR RELATED TO THE USE OF OR INABILITY TO \nUSE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH\nDAMAGES. In no event will Sun's liability to you, whether\ + \ in\ncontract, tort (including negligence), or otherwise, exceed the amount\npaid by you\ + \ for Software under this Agreement. The foregoing\nlimitations will apply even if the\ + \ above stated warranty fails of its\nessential purpose.\n\n6. Termination. This Agreement\ + \ is effective until terminated. You\nmay terminate this Agreement at any time by destroying\ + \ all copies of\nSoftware. This Agreement will terminate immediately without notice\nfrom\ + \ Sun if you fail to comply with any provision of this Agreement.\nUpon Termination, you\ + \ must destroy all copies of Software.\n\n7. Export Regulations. All Software and technical\ + \ data delivered\nunder this Agreement are subject to US export control laws and may be\n\ + subject to export or import regulations in other countries. You agree\nto comply strictly\ + \ with all such laws and regulations and acknowledge\nthat you have the responsibility to\ + \ obtain such licenses to export,\nre-export, or import as may be required after delivery\ + \ to you.\n\n8. U.S. Government Restricted Rights. Use, duplication, or\ndisclosure by\ + \ the U.S. Government is subject to restrictions set forth\nin this Agreement and as provided\ + \ in DFARS 227.7202-1 (a) and\n227.7202-3(a) (1995), DFARS 252.227-7013 (c)(1)(ii)(Oct 1988),\ + \ FAR\n12.212 (a) (1995), FAR 52.227-19 (June 1987), or FAR 52.227-14(ALT\nIII) (June 1987),\ + \ as applicable.\n\n9. Governing Law. Any action related to this Agreement will be\ngoverned\ + \ by California law and controlling U.S. federal law. No\nchoice of law rules of any jurisdiction\ + \ will apply.\n\n10. Severability. If any provision of this Agreement is held to be\nunenforceable,\ + \ This Agreement will remain in effect with the provision\nomitted, unless omission would\ + \ frustrate the intent of the parties, in\nwhich case this Agreement will immediately terminate.\n\ + \n11. Integration. This Agreement is the entire agreement between you\nand Sun relating\ + \ to its subject matter. It supersedes all prior or\ncontemporaneous oral or written communications,\ + \ proposals,\nrepresentations and warranties and prevails over any conflicting or\nadditional\ + \ terms of any quote, order, acknowledgment, or other\ncommunication between the parties\ + \ relating to its subject matter\nduring the term of this Agreement. No modification of\ + \ this Agreement\nwill be binding, unless in writing and signed by an authorized\nrepresentative\ + \ of each party.\n\nFor inquiries please contact: Sun Microsystems, Inc. 901 San Antonio\n\ + Road, Palo Alto, California 94303\n\n JAVA(R) 2 RUNTIME ENVIRONMENT, STANDARD EDITION,\ + \ VERSION 1.2.1_004\n SUPPLEMENTAL LICENSE TERMS\n\nThese supplemental\ + \ terms (\"Supplement\") add to the terms of the Binary\nCode License Agreement (\"Agreement\"\ + ). Capitalized terms not defined\nherein shall have the same meanings ascribed to them\ + \ in the Agreement.\nThe Supplement terms shall supersede any inconsistent or conflicting\n\ + terms in the Agreement.\n\n1. License to Distribute. You are granted a royalty-free right\ + \ to\nreproduce and distribute the Software provided that you: (i)distribute\nthe Software\ + \ complete and unmodified, only as part of, and for the\nsole purpose of running, your Java\ + \ applet or application (\"Program\")\ninto which the Software is incorporated; (ii) do\ + \ not distribute\nadditional software intended to replace any component(s) of the\nSoftware;\ + \ (iii) do not remove or alter any proprietary legends or\nnotices contained in the Software;\ + \ (iv) only distribute the Program\nsubject to a license agreement that protects Sun's interests\n\ + consistent with the terms contained herein; (v) may not create, or\nauthorize your licensees\ + \ to create additional classes, interfaces, or\nsubpackages that are contained in the \"\ + java\" or \"sun\" packages or\nsimilar as specified by Sun in any class file naming convention;\ + \ (vi)\nagree to the extent Programs are developed which utilize the Windows\n95/98 style\ + \ graphical user interface or components contained therein,\nsuch applets or applications\ + \ may only be developed to run on a Windows\n95/98 or Windows NT platform; and(vii) agree\ + \ to indemnify, hold\nharmless, and defend Sun and its licensors from and against any claims\n\ + or lawsuits, including attorneys' fees, that arise or result from the\nuse or distribution\ + \ of the Program.\n\n2. Trademarks and Logos. This Agreement does not authorize Licensee\ + \ to\nuse any Sun name, trademark or logo. Licensee acknowledges as between\nit and Sun\ + \ that Sun owns the Java trademark and all Java-related\ntrademarks, logos and icons including\ + \ the Coffee Cup and Duke (\"Java\nMarks\") and agrees to comply with the Java Trademark\ + \ Guidelines at\nhttp://java.sun.com/trademarks.html.\n\n3. High Risk Activities. Notwithstanding\ + \ Section 2, with respect to\nhigh risk activities, the following language shall apply:\ + \ the Software\nis not designed or intended for use in on-line control of aircraft,\nair\ + \ traffic, aircraft navigation or aircraft communications; or in the\ndesign, construction,\ + \ operation or maintenance of any nuclear\nfacility. Sun disclaims any express or implied\ + \ warranty of fitness for\nsuch uses." json: sun-bcl-j2re-1.2.x.json - yml: sun-bcl-j2re-1.2.x.yml + yaml: sun-bcl-j2re-1.2.x.yml html: sun-bcl-j2re-1.2.x.html - text: sun-bcl-j2re-1.2.x.LICENSE + license: sun-bcl-j2re-1.2.x.LICENSE - license_key: sun-bcl-j2re-1.4.2 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-j2re-1.4.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Sun Microsystems, Inc. Binary Code License Agreement for the JAVATM 2 RUNTIME ENVIRONMENT (J2RE), STANDARD EDITION, VERSION 1.4.2_X + + SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE. + + 1.DEFINITIONS. "Software" means the identified above in binary form, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Sun, and any user manuals, programming guides and other documentation provided to you by Sun under this Agreement. "Programs" mean Java applets and applications intended to run on the Java 2 Platform, Standard Edition (J2SETM platform) platform on Java-enabled general purpose desktop computers and servers. + + 2.LICENSE TO USE. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of the Supplemental License Terms, Sun grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally Software complete and unmodified for the sole purpose of running Programs. Additional licenses for developers and/or publishers are granted in the Supplemental License Terms. + + 3.RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. Licensee acknowledges that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms. + + 4.LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided "AS IS". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Any implied warranties on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state. + + 5.DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. + + 6.LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you. + + 7.SOFTWARE UPDATES FROM SUN. You acknowledge that at your request or consent optional features of the Software may download, install, and execute applets, applications, software extensions, and updated versions of the Software from Sun ("Software Updates"), which may require you to accept updated terms and conditions for installation. If additional terms and conditions are not presented on installation, the Software Updates will be considered part of the Software and subject to the terms and conditions of the Agreement. + + 8.SOFTWARE FROM SOURCES OTHER THAN SUN. You acknowledge that, by your use of optional features of the Software and/or by requesting services that require use of the optional features of the Software, the Software may automatically download, install, and execute software applications from sources other than Sun ("Other Software"). Sun makes no representations of a relationship of any kind to licensors of Other Software. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE OTHER SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you. + + 9.TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon Termination, you must destroy all copies of Software. + + 10.EXPORT REGULATIONS. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. + + 11.TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations ("Sun Marks"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. + + 12.U.S. GOVERNMENT RESTRICTED RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). + + 13.GOVERNING LAW. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply. + + 14. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. + + 15. INTEGRATION. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. + + SUPPLEMENTAL LICENSE TERMS + + These Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement . These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. + + A.Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs. + + B.License to Distribute Software. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified (unless otherwise specified in the applicable README file) and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software (unless otherwise specified in the applicable README file), (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. + + C.License to Distribute Redistributables. Subject to the terms and conditions of this Agreement, including but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the Software "README" file ("Redistributables") provided that: (i) you distribute the Redistributables complete and unmodified (unless otherwise specified in the applicable README file), and only bundled as part of Programs, (ii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable README file), (iii) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (iv) you only distribute the Redistributables pursuant to a license agreement that protects Sun's interests consistent with the terms contained in the Agreement, (v) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. + + D.Java Technology Restrictions. You may not modify the Java Platform Interface ("JPI", identified as classes contained within the "java" package or any subpackages of the "java" package), by creating additional classes within the JPI or otherwise causing the addition to or modification of the classes in the JPI. In the event that you create an additional class and associated API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, you must promptly publish broadly an accurate specification for such API for free use by all developers. You may not create, or authorize your licensees to create, additional classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun" or similar convention as specified by Sun in any naming convention designation. + + E.Source Code. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. + + F.Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution. + + For inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. (LFI#129530/Form ID#011801) json: sun-bcl-j2re-1.4.2.json - yml: sun-bcl-j2re-1.4.2.yml + yaml: sun-bcl-j2re-1.4.2.yml html: sun-bcl-j2re-1.4.2.html - text: sun-bcl-j2re-1.4.2.LICENSE + license: sun-bcl-j2re-1.4.2.LICENSE - license_key: sun-bcl-j2re-1.4.x + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-j2re-1.4.x other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Sun Microsystems, Inc. \n Binary Code License Agreement\n\nREAD\ + \ THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL LICENSE\nTERMS (COLLECTIVELY\ + \ \"AGREEMENT\") CAREFULLY BEFORE OPENING THE SOFTWARE\nMEDIA PACKAGE. BY OPENING THE SOFTWARE\ + \ MEDIA PACKAGE, YOU AGREE TO\nTHE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE\n\ + ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING\nTHE \"ACCEPT\" BUTTON\ + \ AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE\nTO ALL THESE TERMS, PROMPTLY RETURN\ + \ THE UNUSED SOFTWARE TO YOUR PLACE\nOF PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED\n\ + ELECTRONICALLY, SELECT THE \"DECLINE\" BUTTON AT THE END OF THIS AGREEMENT.\n\n1. LICENSE\ + \ TO USE. Sun grants you a non-exclusive and\nnon-transferable license for the internal\ + \ use only of the accompanying\nsoftware and documentation and any error corrections provided\ + \ by Sun\n(collectively \"Software\"), by the number of users and the class of\ncomputer\ + \ hardware for which the corresponding fee has been paid.\n\n2. RESTRICTIONS. Software\ + \ is confidential and copyrighted. Title to\nSoftware and all associated intellectual property\ + \ rights is retained\nby Sun and/or its licensors. Except as specifically authorized in\ + \ any\nSupplemental License Terms, you may not make copies of Software, other\nthan a single\ + \ copy of Software for archival purposes. Unless\nenforcement is prohibited by applicable\ + \ law, you may not modify,\ndecompile, or reverse engineer Software. You acknowledge that\n\ + Software is not designed, licensed or intended for use in the design,\nconstruction, operation\ + \ or maintenance of any nuclear facility. Sun\ndisclaims any express or implied warranty\ + \ of fitness for such uses.\nNo right, title or interest in or to any trademark, service\ + \ mark, logo\nor trade name of Sun or its licensors is granted under this Agreement.\n\n\ + 3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety\n(90) days from the\ + \ date of purchase, as evidenced by a copy of the\nreceipt, the media on which Software\ + \ is furnished (if any) will be\nfree of defects in materials and workmanship under normal\ + \ use. Except\nfor the foregoing, Software is provided \"AS IS\". Your exclusive\nremedy\ + \ and Sun's entire liability under this limited warranty will be\nat Sun's option to replace\ + \ Software media or refund the fee paid for\nSoftware.\n\n4. DISCLAIMER OF WARRANTY. UNLESS\ + \ SPECIFIED IN THIS AGREEMENT, ALL\nEXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,\n\ + INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE OR\ + \ NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE\nEXTENT THAT THESE DISCLAIMERS ARE HELD\ + \ TO BE LEGALLY INVALID.\n\n5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY\ + \ LAW, IN\nNO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE,\nPROFIT OR\ + \ DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR\nPUNITIVE DAMAGES, HOWEVER\ + \ CAUSED REGARDLESS OF THE THEORY OF\nLIABILITY, ARISING OUT OF OR RELATED TO THE USE OF\ + \ OR INABILITY TO USE\nSOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\n\ + DAMAGES. In no event will Sun's liability to you, whether in\ncontract, tort (including\ + \ negligence), or otherwise, exceed the amount\npaid by you for Software under this Agreement.\ + \ The foregoing\nlimitations will apply even if the above stated warranty fails of its\n\ + essential purpose.\n\n6. Termination. This Agreement is effective until terminated. You\n\ + may terminate this Agreement at any time by destroying all copies of\nSoftware. This Agreement\ + \ will terminate immediately without notice\nfrom Sun if you fail to comply with any provision\ + \ of this Agreement.\nUpon Termination, you must destroy all copies of Software.\n\n7. \ + \ Export Regulations. All Software and technical data delivered under\nthis Agreement are\ + \ subject to US export control laws and may be\nsubject to export or import regulations\ + \ in other countries. You agree\nto comply strictly with all such laws and regulations\ + \ and acknowledge\nthat you have the responsibility to obtain such licenses to export,\n\ + re-export, or import as may be required after delivery to you.\n\n8. U.S. Government Restricted\ + \ Rights. If Software is being acquired\nby or on behalf of the U.S. Government or by a\ + \ U.S. Government prime\ncontractor or subcontractor (at any tier), then the Government's\n\ + rights in Software and accompanying documentation will be only as set\nforth in this Agreement;\ + \ this is in accordance with 48 CFR 227.7201\nthrough 227.7202-4 (for Department of Defense\ + \ (DOD) acquisitions) and\nwith 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n\ + 9. Governing Law. Any action related to this Agreement will be\ngoverned by California\ + \ law and controlling U.S. federal law. No\nchoice of law rules of any jurisdiction will\ + \ apply.\n\n10. Severability. If any provision of this Agreement is held to be\nunenforceable,\ + \ this Agreement will remain in effect with the provision\nomitted, unless omission would\ + \ frustrate the intent of the parties, in\nwhich case this Agreement will immediately terminate.\n\ + \n11. Integration. This Agreement is the entire agreement between you\nand Sun relating\ + \ to its subject matter. It supersedes all prior or\ncontemporaneous oral or written communications,\ + \ proposals,\nrepresentations and warranties and prevails over any conflicting or\nadditional\ + \ terms of any quote, order, acknowledgment, or other\ncommunication between the parties\ + \ relating to its subject matter\nduring the term of this Agreement. No modification of\ + \ this Agreement\nwill be binding, unless in writing and signed by an authorized\nrepresentative\ + \ of each party.\n\n\n JAVA(TM) 2 RUNTIME ENVIRONMENT (J2RE), STANDARD EDITION, VERSION\ + \ 1.4.X\n SUPPLEMENTAL LICENSE TERMS\n\nThese supplemental license\ + \ terms (\"Supplemental Terms\") add to or\nmodify the terms of the Binary Code License\ + \ Agreement (collectively,\nthe \"Agreement\"). Capitalized terms not defined in these Supplemental\n\ + Terms shall have the same meanings ascribed to them in the\nAgreement. These Supplemental\ + \ Terms shall supersede any inconsistent\nor conflicting terms in the Agreement, or in any\ + \ license contained\nwithin the Software.\n\n1. Software Internal Use and Development License\ + \ Grant. Subject to\nthe terms and conditions of this Agreement, including, but not limited\n\ + to Section 4 (Java Technology Restrictions) of these Supplemental\nTerms, Sun grants you\ + \ a non-exclusive, non-transferable, limited\nlicense to reproduce internally and use internally\ + \ the binary form of\nthe Software complete and unmodified for the sole purpose of\ndesigning,\ + \ developing and testing your Java applets and applications\nintended to run on the Java\ + \ platform (\"Programs\").\n\n2. License to Distribute Software. Subject to the terms\ + \ and\nconditions of this Agreement, including, but not limited to Section 4\n(Java Technology\ + \ Restrictions) of these Supplemental Terms, Sun grants\nyou a non-exclusive, non-transferable,\ + \ limited license to reproduce\nand distribute the Software, provided that (i) you distribute\ + \ the\nSoftware complete and unmodified (unless otherwise specified in the\napplicable README\ + \ file) and only bundled as part of, and for the sole\npurpose of running, your Programs,\ + \ (ii) the Programs add significant\nand primary functionality to the Software, (iii) you\ + \ do not distribute\nadditional software intended to replace any component(s) of the\nSoftware\ + \ (unless otherwise specified in the applicable README file),\n(iv) you do not remove or\ + \ alter any proprietary legends or notices\ncontained in the Software, (v) you only distribute\ + \ the Software\nsubject to a license agreement that protects Sun's interests\nconsistent\ + \ with the terms contained in this Agreement, and (vi) you\nagree to defend and indemnify\ + \ Sun and its licensors from and against\nany damages, costs, liabilities, settlement amounts\ + \ and/or expenses\n(including attorneys' fees) incurred in connection with any claim,\n\ + lawsuit or action by any third party that arises or results from the\nuse or distribution\ + \ of any and all Programs and/or Software. (vi)\ninclude the following statement as part\ + \ of product documentation\n(whether hard copy or electronic), as a part of a copyright\ + \ page or\nproprietary rights notice page, in an \"About\" box or in any other form\nreasonably\ + \ designed to make the statement visible to users of the\nSoftware: \"This product includes\ + \ code licensed from RSA Security,\nInc.\", and (vii) include the statement, \"Some portions\ + \ licensed from\nIBM are available at http://oss.software.ibm.com/icu4j/\".\n\n3. License\ + \ to Distribute Redistributables. Subject to the terms and\nconditions of this Agreement,\ + \ including but not limited to Section 4\n(Java Technology Restrictions) of these Supplemental\ + \ Terms, Sun grants\nyou a non-exclusive, non-transferable, limited license to reproduce\n\ + and distribute those files specifically identified as redistributable\nin the Software \"\ + README\" file (\"Redistributables\") provided that: (i)\nyou distribute the Redistributables\ + \ complete and unmodified (unless\notherwise specified in the applicable README file), and\ + \ only bundled\nas part of Programs, (ii) you do not distribute additional software\nintended\ + \ to supersede any component(s) of the Redistributables (unless\notherwise specified in\ + \ the applicable README file), (iii) you do not\nremove or alter any proprietary legends\ + \ or notices contained in or on\nthe Redistributables, (iv) you only distribute the Redistributables\n\ + pursuant to a license agreement that protects Sun's interests\nconsistent with the terms\ + \ contained in the Agreement, (v) you agree to\ndefend and indemnify Sun and its licensors\ + \ from and against any\ndamages, costs, liabilities, settlement amounts and/or expenses\n\ + (including attorneys' fees) incurred in connection with any claim,\nlawsuit or action by\ + \ any third party that arises or results from the\nuse or distribution of any and all Programs\ + \ and/or Software, (vi)\ninclude the following statement as part of product documentation\n\ + (whether hard copy or electronic), as a part of a copyright page or\nproprietary rights\ + \ notice page, in an \"About\" box or in any other form\nreasonably designed to make the\ + \ statement visible to users of the\nSoftware: \"This product includes code licensed from\ + \ RSA Security,\nInc.\", and (vii) include the statement, \"Some portions licensed from\n\ + IBM are available at http://oss.software.ibm.com/icu4j/\".\n\n4. Java Technology Restrictions.\ + \ You may not modify the Java\nPlatform Interface (\"JPI\", identified as classes contained\ + \ within the\n\"java\" package or any subpackages of the \"java\" package), by creating\n\ + additional classes within the JPI or otherwise causing the addition to\nor modification\ + \ of the classes in the JPI. In the event that you\ncreate an additional class and associated\ + \ API(s) which (i) extends the\nfunctionality of the Java platform, and (ii) is exposed\ + \ to third party\nsoftware developers for the purpose of developing additional software\n\ + which invokes such additional API, you must promptly publish broadly\nan accurate specification\ + \ for such API for free use by all developers.\nYou may not create, or authorize your licensees\ + \ to create, additional\nclasses, interfaces, or subpackages that are in any way identified\ + \ as\n\"java\", \"javax\", \"sun\" or similar convention as specified by Sun in\nany naming\ + \ convention designation.\n\n5. Notice of Automatic Software Updates from Sun. You acknowledge\n\ + that the Software may automatically download, install, and execute\napplets, applications,\ + \ software extensions, and updated versions of\nthe Software from Sun (\"Software Updates\"\ + ), which may require you to\naccept updated terms and conditions for installation. If additional\n\ + terms and conditions are not presented on installation, the Software\nUpdates will be considered\ + \ part of the Software and subject to the\nterms and conditions of the Agreement.\n\n6.\ + \ Notice of Automatic Downloads. You acknowledge that, by your use\nof the Software and/or\ + \ by requesting services that require use of the\nSoftware, the Software may automatically\ + \ download, install, and\nexecute software applications from sources other than Sun (\"\ + Other\nSoftware\"). Sun makes no representations of a relationship of any kind\nto licensors\ + \ of Other Software. TO THE EXTENT NOT PROHIBITED BY LAW,\nIN NO EVENT WILL SUN OR ITS LICENSORS\ + \ BE LIABLE FOR ANY LOST REVENUE,\nPROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL,\ + \ INCIDENTAL OR\nPUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF\nLIABILITY,\ + \ ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE\nOTHER SOFTWARE, EVEN IF SUN\ + \ HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n7. Trademarks and Logos. You\ + \ acknowledge and agree as between you\nand Sun that Sun owns the SUN, SOLARIS, JAVA, JINI,\ + \ FORTE, and iPLANET\ntrademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and\niPLANET-related\ + \ trademarks, service marks, logos and other brand\ndesignations (\"Sun Marks\"), and you\ + \ agree to comply with the Sun\nTrademark and Logo Usage Requirements currently located\ + \ at\nhttp://www.sun.com/policies/trademarks. Any use you make of the Sun\nMarks inures\ + \ to Sun's benefit.\n\n8. Source Code. Software may contain source code that is provided\n\ + solely for reference purposes pursuant to the terms of this Agreement.\nSource code may\ + \ not be redistributed unless expressly provided for in\nthis Agreement.\n\n9. Termination\ + \ for Infringement. Either party may terminate this\nAgreement immediately should any Software\ + \ become, or in either party's\nopinion be likely to become, the subject of a claim of infringement\ + \ of\nany intellectual property right.\n\nFor inquiries please contact: Sun Microsystems,\ + \ Inc. 901 San Antonio\nRoad, Palo Alto, California 94303\n(LFI#109998/Form ID#011801)" json: sun-bcl-j2re-1.4.x.json - yml: sun-bcl-j2re-1.4.x.yml + yaml: sun-bcl-j2re-1.4.x.yml html: sun-bcl-j2re-1.4.x.html - text: sun-bcl-j2re-1.4.x.LICENSE + license: sun-bcl-j2re-1.4.x.LICENSE - license_key: sun-bcl-j2re-5.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-j2re-5.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Sun Microsystems, Inc. Binary Code License Agreement for the JAVA 2 PLATFORM STANDARD EDITION RUNTIME ENVIRONMENT 5.0 + + SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE. + + 1. DEFINITIONS. "Software" means the identified above in binary form, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Sun, and any user manuals, programming guides and other documentation provided to you by Sun under this Agreement. "Programs" mean Java applets and applications intended to run on the Java 2 Platform Standard Edition (J2SE platform) platform on Java-enabled general purpose desktop computers and servers. + + 2. LICENSE TO USE. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of the Supplemental License Terms, Sun grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally Software complete and unmodified for the sole purpose of running Programs. Additional licenses for developers and/or publishers are granted in the Supplemental License Terms. + + 3. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms. + + 4. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided "AS IS". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Any implied warranties on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state. + + 5. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. + + 6. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you. + + 7. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon Termination, you must destroy all copies of Software. + + 8. EXPORT REGULATIONS. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. + + 9. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations ("Sun Marks"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. + + 10. U.S. GOVERNMENT RESTRICTED RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). + + 11. GOVERNING LAW. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply. + + 12. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. + + 13. INTEGRATION. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. + + SUPPLEMENTAL LICENSE TERMS These Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement . These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. + + A. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software "README" file incorporated herein by reference, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs. + + B. License to Distribute Software. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software README file, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. + + C. Java Technology Restrictions. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun" or similar convention as specified by Sun in any naming convention designation. + + D. Source Code. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. + + E. Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution. + + F. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. + + G. Installation and Auto-Update. The Software's installation and auto-update processes transmit a limited amount of data to Sun (or its service provider) about those specific processes to help Sun understand and optimize them. Sun does not associate the data with personally identifiable information. You can find more information about the data Sun collects at http://java.com/data/. + + For inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. (LFI#143333/Form ID#011801) json: sun-bcl-j2re-5.0.json - yml: sun-bcl-j2re-5.0.yml + yaml: sun-bcl-j2re-5.0.yml html: sun-bcl-j2re-5.0.html - text: sun-bcl-j2re-5.0.LICENSE + license: sun-bcl-j2re-5.0.LICENSE - license_key: sun-bcl-java-servlet-imp-2.1.1 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-java-servlet-imp-2.1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Java Servlet Implementation Classes\nVersion 2.1.1\nBinary Code License\n\nThis binary\ + \ code license (\"License\") contains rights and restrictions \nassociated with use of the\ + \ accompanying Java Servlet Implementation Classes \nsoftware and documentation (\"Software\"\ + ). Read the License carefully before \nusing the Software. By using the Software you agree\ + \ to the terms and \nconditions of this License.\n\n 1. Limited License Grant. By agreeing\ + \ to this License, Sun grants to you \n (\"Licensee\") a non-exclusive, nontransferable\ + \ limited license to use the \n Software without fee for evaluation of the Software and\ + \ for development \n of applications which utilize the Software. Licensee may make one\ + \ archival \n copy of the Software and may redistribute complete, unmodified copies of\ + \ \n the Software to software developers within the Licensee's organization to \n \ + \ avoid unnecessary download time provided that this License conspicuously \n appear\ + \ with all copies of the Software. Except for the foregoing and the \n distribution\ + \ rights authorized for the Servlet Classes specified below, \n Licensee may not redistribute\ + \ the Software in whole or in part, either \n separately or included with a product.\n\ + \n 2. License to Distribute Servlet Classes. Licensee is granted a royalty-free \n right\ + \ to reproduce and distribute the binary code form of the servlet \n classes contained\ + \ in the Software in the archive file \"servlet.jar\" \n (\"Servlet Classes\"), provided\ + \ that Licensee: (i) distributes the Servlet \n Classes complete and unmodified in their\ + \ original Java Archive file, and \n only as a part of Licensee's application that incorporates\ + \ the Servlet \n Classes (\"Program\"); (ii) does not distribute additional software\ + \ intended \n to replace any components of the Servlet Classes; (iii) agrees to \n \ + \ incorporate the most current version of the Servlet Classes that was \n available\ + \ from Sun no later than 180 days prior to each production release \n of Program; (iv)\ + \ does not remove or alter any proprietary legends or \n notices contained in the Servlet\ + \ Classes; (v) includes the provisions of \n Sections 3, 4, 6, 8, and 9 in Licensee's\ + \ license agreement for the Program;\n and (vi) agrees to indemnify, hold harmless, and\ + \ defend Sun and its \n licensors from and against any claims or lawsuits, including\ + \ attorneys' \n fees, that arise or result from the use or distribution of the Software.\n\ + \n 3. Java Platform Interface. Licensee may not modify the Java Platform \n Interface\ + \ (JPI, identified as classes contained within the javax package \n or any subpackages\ + \ of the javax package), by creating additional classes \n within the JPI or otherwise\ + \ causing the addition to or modification of \n the classes in the JPI. In the event\ + \ that Licensee creates any \n Java-related API and distribute such API to others for\ + \ applet or \n application development, you must promptly publish broadly, an accurate\ + \ \n specification for such API for free use by all developers of Java-based \n software.\ + \ \n\n 4. Restrictions. Software is confidential copyrighted information of Sun and \n\ + \ title to all copies is retained by Sun and/or its licensors. Licensee \n shall\ + \ not modify, decompile, disassemble, decrypt, extract, or otherwise \n reverse engineer\ + \ Software. Software may not be leased, assigned, or \n sublicensed, in whole or in\ + \ part. Software is not designed or intended \n for use in on-line control of aircraft,\ + \ air traffic, aircraft navigation \n or aircraft communications; or in the design,\ + \ construction, operation or \n maintenance of any nuclear facility. Licensee warrants\ + \ that it will not \n use or redistribute the Software for such purposes.\n\n 5. Trademarks\ + \ and Logos. This License does not authorize Licensee to use any \n Sun name, trademark\ + \ or logo. Licensee acknowledges that Sun owns the \n Java trademark and all Java-\ + \ related trademarks, logos and icons including\n the Coffee Cup and Duke (\"Java Marks\"\ + ) and agrees to: (i) to comply with \n the Java Trademark Guidelines at http://java.sun.com/\ + \ trademarks.html; \n (ii) not do anything harmful to or inconsistent with Sun's rights\ + \ in the \n Java Marks; and (iii) assist Sun in protecting those rights, including \n\ + \ assigning to Sun any rights acquired by Licensee in any Java Mark. \n\n 6. Disclaimer\ + \ of Warranty. Software is provided \"AS IS,\" without a warranty \n of any kind. \ + \ ALL EXPRESS OR IMPLIED REPRESENTATIONS AND WARRANTIES, \n INCLUDING ANY IMPLIED\ + \ WARRANTY OF MERCHANTABILITY, FITNESS FOR A \n PARTICULAR PURPOSE OR NON-INFRINGEMENT,\ + \ ARE HEREBY EXCLUDED. \n\n 7. Limitation of Liability. SUN AND ITS LICENSORS SHALL NOT\ + \ BE LIABLE FOR \n ANY DAMAGES SUFFERED BY LICENSEE OR ANY THIRD PARTY AS A RESULT OF\ + \ USING \n OR DISTRIBUTING SOFTWARE. IN NO EVENT WILL SUN OR ITS LICENSORS BE \n \ + \ LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, \n SPECIAL,\ + \ CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED \n AND REGARDLESS OF\ + \ THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR \n INABILITY TO USE SOFTWARE,\ + \ EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY \n OF SUCH DAMAGES.\n\n 8. Termination.\ + \ This License is effective until terminated. Licensee may \n terminate this License\ + \ at any time by destroying all copies of Software. \n This License will terminate\ + \ immediately without notice from Sun if Licensee\n fails to comply with any provision\ + \ of this License. Upon such termination,\n Licensee must destroy all copies of Software.\n\ + \n 9. Export Regulations. Software, including technical data, is subject to U.S.\n \ + \ export control laws, including the U.S. Export Administration Act and its\n associated\ + \ regulations, and may be subject to export or import regulations\n in other countries.\ + \ Licensee agrees to comply strictly with all such \n regulations and acknowledges\ + \ that it has the responsibility to obtain \n licenses to export, re-export, or import\ + \ Software. Software may not be \n downloaded, or otherwise exported or re-exported\ + \ (i) into, or to a national\n or resident of, Cuba, Iraq, Iran, North Korea, Libya,\ + \ Sudan, Syria or any \n country to which the U.S. has embargoed goods; or (ii) to anyone\ + \ on the \n U.S. Treasury Department's list of Specially Designated Nations or the U.S.\n\ + \ Commerce Department's Table of Denial Orders.\n\n 10. Restricted Rights. Use, duplication\ + \ or disclosure by the United States \n government is subject to the restrictions as\ + \ set forth in the Rights in \n Technical Data and Computer Software Clauses in DFARS\ + \ 252.227-7013(c) \n (1) (ii) and FAR 52.227-19(c) (2) as applicable.\n\n 11. Governing\ + \ Law. Any action related to this License will be governed by \n California law and\ + \ controlling U.S. federal law. No choice of law rules \n of any jurisdiction will\ + \ apply. \n\n 12. Severability. If any of the above provisions are held to be in \n \ + \ violation of applicable law, void, or unenforceable in any jurisdiction, \n then\ + \ such provisions are herewith waived to the extent necessary for the \n License to\ + \ be otherwise enforceable in such jurisdiction. However, if in \n Sun's opinion deletion\ + \ of any provisions of the License by operation of \n this paragraph unreasonably compromises\ + \ the rights or increase the \n liabilities of Sun or its licensors, Sun reserves the\ + \ right to terminate \n the License and refund the fee paid by Licensee, if any, as\ + \ Licensee's \n sole and exclusive remedy. \n\n 13. Integration. This Agreement is\ + \ the entire agreement between Licensee and \n Sun relating to its subject matter. \ + \ It supersedes all prior or \n contemporaneous oral or written communications, proposals,\ + \ representations\n and warranties and prevails over any conflicting or additional terms\ + \ of \n any quote, order, acknowledgment, or other communication between the \n \ + \ parties relating to its subject matter during the term of this Agreement. \n No modification\ + \ of this Agreement will be binding, unless in writing and \n signed by an authorized\ + \ representative of each party." json: sun-bcl-java-servlet-imp-2.1.1.json - yml: sun-bcl-java-servlet-imp-2.1.1.yml + yaml: sun-bcl-java-servlet-imp-2.1.1.yml html: sun-bcl-java-servlet-imp-2.1.1.html - text: sun-bcl-java-servlet-imp-2.1.1.LICENSE + license: sun-bcl-java-servlet-imp-2.1.1.LICENSE - license_key: sun-bcl-javahelp + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-javahelp other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + SUN JavaHelp(TM) 2.0 + Sun Microsystems, Inc. Binary Code License Agreement + + READ THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT") CAREFULLY BEFORE OPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA PACKAGE, YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE "ACCEPT" BUTTON AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED ELECTRONICALLY, SELECT THE "DECLINE" BUTTON AT THE END OF THIS AGREEMENT. + + 1. LICENSE TO USE. Sun grants you a non-exclusive and non-transferable license for the internal use only of the accompanying software and documentation and any error corrections provided by Sun (collectively "Software"), by the number of users and the class of computer hardware for which the corresponding fee has been paid. + + 2. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Except as specifically authorized in any Supplemental License Terms, you may not make copies of Software, other than a single copy of Software for archival purposes. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that Software is not designed, licensed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. + + 3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided "AS IS". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. + + 4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. + + 5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. + + 6. Termination. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Upon Termination, you must destroy all copies of Software. + + 7. Export Regulations. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. + + 8. U.S. Government Restricted Rights. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). + + 9. Governing Law. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply. + + 10. Severability. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. + + 11. Integration. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. + + JAVAHELP(TM) VERSION 2.0 SUPPLEMENTAL LICENSE TERMS + + These supplemental license terms ("Supplemental Terms") add to or modify the terms of the Binary Code License Agreement (collectively, the "Agreement"). Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Agreement, or in any license contained within the Software. + + 1. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement, including, but not limited to Section 4 (Java(TM) Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license to reproduce internally and use internally the binary form of the Software complete and unmodified for the sole purpose of designing, developing and testing your Java applets and applications intended to run on the Java platform ("Programs"). + + 2. License to Distribute Software. In addition to the license granted in Section 1 (Software Internal Use and Development License Grant) of these Supplemental Terms, subject to the terms and conditions of this Agreement, including but not limited to Section 4 (Java Technology Restrictions), Sun grants you a non-exclusive, non-transferable, limited license to reproduce and distribute the Software in binary form only, provided that you (i) distribute the Software complete and unmodified and only bundled as part of your Programs, (ii) do not distribute additional software intended to replace any component(s) of the Software, (iii) do not remove or alter any proprietary legends or notices contained in the Software, (iv) only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (v) agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. + + 3. License to Distribute Redistributables. In addition to the license granted in Section 1 (Software Internal Use and Development License Grant) of these Supplemental Terms, subject to the terms and conditions of this Agreement, including but not limited to Section 3 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license to reproduce and distribute those files specifically identified as redistributable in the Software "README" file ("Redistributables") provided that: (i) you distribute the Redistributables complete and unmodified (unless otherwise specified in the applicable README file), and only bundled as part of your Programs, (ii) you do not distribute additional software intended to supersede any component(s) of the Redistributables, (iii) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (iv) you only distribute the Redistributables pursuant to a license agreement that protects Sun's interests consistent with the terms contained in the Agreement, and (v) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. + + 4. Java Technology Restrictions. You may not modify the Java Platform Interface ("JPI", identified as classes contained within the "java" package or any subpackages of the "java" package), by creating additional classes within the JPI or otherwise causing the addition to or modification of the classes in the JPI. In the event that you create an additional class and associated API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, you must promptly publish broadly an accurate specification for such API for free use by all developers. You may not create, or authorize your licensees to create, additional classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun" or similar convention as specified by Sun in any naming convention designation. + + 5. Java Runtime Availability. Refer to the appropriate version of the Java Runtime Environment binary code license (currently located at http://www.java.sun.com/jdk/index.html) for the availability of runtime code which may be distributed with Java applets and applications. + + 6. Trademarks and Logos. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations ("Sun Marks"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. + + 7. Source Code. Software may contain source code that is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. Some source code may contain alternative license terms that apply only to that source code file. + + 8. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. + + For inquiries please contact: Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054. (LFI#136278/Form ID#011801) json: sun-bcl-javahelp.json - yml: sun-bcl-javahelp.yml + yaml: sun-bcl-javahelp.yml html: sun-bcl-javahelp.html - text: sun-bcl-javahelp.LICENSE + license: sun-bcl-javahelp.LICENSE - license_key: sun-bcl-jimi-sdk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-jimi-sdk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "SUN JIMI SDK\n\nJIMI SDK Version 2.0 Sun Microsystems, Inc. Please see the file classes/LICENSE_JIMI.txt\n\ + \nSun Microsystems, Inc. Binary Code License Agreement\n\nREAD THE TERMS OF THIS AGREEMENT\ + \ AND ANY PROVIDED SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"AGREEMENT\") CAREFULLY BEFORE\ + \ OPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA PACKAGE, YOU AGREE TO\ + \ THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE\ + \ YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE \"ACCEPT\" BUTTON AT THE END OF THIS AGREEMENT.\ + \ IF YOU DO NOT AGREE TO ALL OF THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR\ + \ PLACE OF PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED ELECTRONICALLY, SELECT\ + \ THE \"DECLINE\" BUTTON AT THE END OF THIS AGREEMENT AND THE INSTALLATION PROCESS WILL\ + \ NOT CONTINUE.\n\n1. License to Use. Sun Microsystems, Inc. (\"Sun\") grants you a non-exclusive\ + \ and non- transferable license for the internal use only of the accompanying software,\ + \ documentation and any error corrections provided by Sun (collectively \"Software\"), by\ + \ the number of users and the class of computer hardware for which the corresponding fee\ + \ has been paid.\n\n2. Restrictions. Software is confidential and copyrighted. Title to\ + \ Software and all associated intellectual property rights is retained by Sun and/or its\ + \ licensors. Except as specifically authorized in any Supplemental License Terms, you may\ + \ not make copies of Software, other than a single copy of Software for archival purposes.\ + \ Unless enforcement is prohibited by applicable law, you may not modify, decompile, or\ + \ reverse engineer Software. You acknowledge that Software is not designed, licensed or\ + \ intended for use in the design, construction, operation or maintenance of any nuclear\ + \ facility. Sun disclaims any express or implied warranty of fitness for such uses. No right,\ + \ title or interest in or to any trademark, service mark, logo or trade name of Sun or its\ + \ licensors is granted under this Agreement.\n\n3. Limited Warranty. Sun warrants to you\ + \ that for a period of ninety (90) days from the date of purchase, as evidenced by a copy\ + \ of the receipt, the media on which Software is furnished (if any) will be free of defects\ + \ in materials and workmanship under normal use. Except for the foregoing, Software is provided\ + \ \"AS IS\". Your exclusive remedy and Sun's entire liability under this limited warranty\ + \ will be at Sun's option to replace Software media or refund the fee paid for Software.\n\ + \n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED\ + \ CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT\ + \ THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n5. LIMITATION OF LIABILITY.\ + \ TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR\ + \ ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL\ + \ OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT\ + \ OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in\ + \ contract, tort (including negligence), or otherwise, exceed the amount paid by you for\ + \ Software under this Agreement. The foregoing limitations will apply even if the above\ + \ stated warranty fails of its essential purpose.\n\n6. Termination. This Agreement is effective\ + \ until terminated. You may terminate this Agreement at any time by destroying all copies\ + \ of Software. This Agreement will terminate immediately without notice from Sun if you\ + \ fail to comply with any provision of this Agreement. Upon Termination, you must destroy\ + \ all copies of Software.\n\n7. Export Regulations. All Software and any technical data\ + \ delivered under this Agreement are subject to US export control laws and may be subject\ + \ to export or import regulations in other countries. You agree to comply strictly with\ + \ all such laws and regulations and acknowledge that you have the responsibility to obtain\ + \ such licenses to export, re-export, or import as may be required after delivery to you.\n\ + \n8. U.S. Government Restricted Rights. If Software is being acquired by or on behalf of\ + \ the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any\ + \ tier), then the Government's rights in Software and accompanying documentation will be\ + \ only as set forth in this Agreement; this is in accordance with 48 C.F.R. 227.7202-4 (for\ + \ Department of Defense (DOD) acquisitions) and with 48 C.F.R. 2.101 and 12.212 (for non-\ + \ DOD acquisitions).\n\n9. Governing Law. Any action related to this Agreement will be governed\ + \ by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction\ + \ will apply.\n\n10. Severability. If any provision of this Agreement is held to be unenforceable,\ + \ this Agreement will remain in effect with the provision omitted, unless omission would\ + \ frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\ + \n11. Integration. This Agreement is the entire agreement between you and Sun relating to\ + \ its subject matter. It supersedes all prior or contemporaneous oral or written communications,\ + \ proposals, representations and warranties and prevails over any conflicting or additional\ + \ terms of any quote, order, acknowledgment, or other communication between the parties\ + \ relating to its subject matter during the term of this Agreement. No modification of this\ + \ Agreement will be binding, unless in writing and signed by an authorized representative\ + \ of each party.\n\nFor inquiries please contact: Sun Microsystems, Inc. 901 San Antonio\ + \ Road, Palo Alto, California 94303\n\nJIMI SDK, Version 2.0 SUPPLEMENTAL LICENSE TERMS\n\ + \nThese supplemental terms (\"Supplement\") add to the terms of the Binary Code License\ + \ Agreement (\"Agreement\"). Capitalized terms not defined herein shall have the same meanings\ + \ ascribed toh them in the Agreement. The Supplement terms shall supersede any inconsistent\ + \ or conflicting terms in the Agreement. \n\n1. Limited License Grant.\n\na. Software Development\ + \ License. Subject to your obligation to indemnify Sun pursuant to Section 3 below, Sun\ + \ grants to you a non-exclusive, non-transferable limited license to use the Software without\ + \ fee for evaluation of the Software and for development of Java(TM) applets and applications\ + \ provided that you may not re-distribute the Software in whole or in part, except as provided\ + \ in Section 1.b below. The Software may contain source code which is provided for reference\ + \ purposes only, and may not be modified (except for the purpose of correcting errors) or\ + \ redistributed.\n\nb. License to Distribute Runtime. Subject to your obligation to indemnify\ + \ Sun pursuant to Section 3 below, Sun grants to you a non-exclusive, non-transferable limited,\ + \ royalty-free license to reproduce, distribute offer to sell and sell the Software provided\ + \ that you: \n(i)distribute the Software complete and unmodified (except for error corrections),\ + \ only as part of, and for the sole purpose of running, your Java applet or application\ + \ (\"Program\") into which the Software is incorporated; \n(ii) do not distribute additional\ + \ software intended to replace any component(s) of the Software; \n(iii) do not remove or\ + \ alter any proprietary legends or notices contained in the Software; \n(iv) only distribute\ + \ the Program subject to a license agreement that protects Sun's interests consistent with\ + \ the terms contained herein; and \n(v) may not create, or authorize your licensees to create\ + \ additional classes, interfaces, or subpackages that are contained in the \"java\" or \"\ + sun\" packages or similar as ! specified by Sun in any class file naming convention.\n\n\ + 2. Java Platform Interface. In the event that Licensee creates an additional API(s) which:\ + \ \n(i) extends the functionality of a Java Environment; and, \n(ii) is exposed to third\ + \ party software developers for the purpose of developing additional software which invokes\ + \ such additional API, Licensee must promptly publish broadly an accurate specification\ + \ for such API for free use by all developers.\n\n3.Indemnity to Sun. As a condition precedent\ + \ to each license grant in this Agreement, you agree to indemnify, hold harmless, and defend\ + \ Sun and its licensors from and against any and all claims, lawsuits, liabilities, demands\ + \ and expenses (including attorneys' fees), that arise or result from the use or distribution\ + \ of the Software or the Program, including without limitation, those brought by Unisys\ + \ Corporation, its successors and assigns, with respect to U.S. Patent Number 4,558,302\ + \ and all foreign counterparts thereto which Unisys Corporation may now have or acquire\ + \ in the future (the \"LZW Patents\") relating to your making, using, selling, licensing,\ + \ importing, offering to sell, or otherwise transferring the GIF encoding and/or decoding\ + \ feature of the Software or the Program. This Agreement does not grant any rights to you\ + \ with respect to the LZW Patents.\n\n4. Trademarks and Logos. This Agreement does not authorize\ + \ you to use any Sun name, trademark or logo. Licensee acknowledges as between it and Sun\ + \ that Sun owns the Java trademark and all Java-related trademarks, logos and icons including\ + \ the Coffee Cup and Duke (\"Java Marks\") and agrees to comply with the Java Trademark\ + \ Guidelines at http://java.sun.com" json: sun-bcl-jimi-sdk.json - yml: sun-bcl-jimi-sdk.yml + yaml: sun-bcl-jimi-sdk.yml html: sun-bcl-jimi-sdk.html - text: sun-bcl-jimi-sdk.LICENSE + license: sun-bcl-jimi-sdk.LICENSE - license_key: sun-bcl-jre6 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-jre6 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Sun Microsystems, Inc. Binary Code License Agreement for the JAVA SE RUNTIME ENVIRONMENT\ + \ (JRE) VERSION 6\n\nSUN MICROSYSTEMS, INC. (\"SUN\") IS WILLING TO LICENSE THE SOFTWARE\ + \ IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED\ + \ IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY \"\ + AGREEMENT\"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE,\ + \ YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE \"ACCEPT\"\ + \ BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS,\ + \ SELECT THE \"DECLINE\" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL\ + \ PROCESS WILL NOT CONTINUE.\n\n1. DEFINITIONS. \"Software\" means the identified above\ + \ in binary form, any other machine readable materials (including, but not limited to, libraries,\ + \ source files, header files, and data files), any updates or error corrections provided\ + \ by Sun, and any user manuals, programming guides and other documentation provided to you\ + \ by Sun under this Agreement. \"General Purpose Desktop Computers and Servers\" means computers,\ + \ including desktop, laptop and tablet computers, or servers, used for general computing\ + \ functions under end user control (such as but not specifically limited to email, general\ + \ purpose Internet browsing, and office suite productivity tools). The use of Software in\ + \ systems and solutions that provide dedicated functionality (other than as mentioned above)\ + \ or designed for use in embedded or function-specific software applications, for example\ + \ but not limited to: Software embedded in or bundled with industrial control systems, wireless\ + \ mobile telephones, wireless handheld devices, kiosks, TV/STB, Blu-ray Disc devices, telematics\ + \ and network control switching equipment, printers and storage management systems, and\ + \ other related systems are excluded from this definition and not licensed under this Agreement.\ + \ \"Programs\" means Java technology applets and applications intended to run on the Java\ + \ Platform Standard Edition (Java SE) platform on Java-enabled General Purpose Desktop Computers\ + \ and Servers.\n\n2. LICENSE TO USE. Subject to the terms and conditions of this Agreement,\ + \ including, but not limited to the Java Technology Restrictions of the Supplemental License\ + \ Terms, Sun grants you a non-exclusive, non-transferable, limited license without license\ + \ fees to reproduce and use internally Software complete and unmodified for the sole purpose\ + \ of running Programs. Additional licenses for developers and/or publishers are granted\ + \ in the Supplemental License Terms.\n\n3. RESTRICTIONS. Software is confidential and copyrighted.\ + \ Title to Software and all associated intellectual property rights is retained by Sun and/or\ + \ its licensors. Unless enforcement is prohibited by applicable law, you may not modify,\ + \ decompile, or reverse engineer Software. You acknowledge that Licensed Software is not\ + \ designed or intended for use in the design, construction, operation or maintenance of\ + \ any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty\ + \ of fitness for such uses. No right, title or interest in or to any trademark, service\ + \ mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional\ + \ restrictions for developers and/or publishers licenses are set forth in the Supplemental\ + \ License Terms.\n\n4. LIMITED WARRANTY. Sun warrants to you that for a period of ninety\ + \ (90) days from the date of purchase, as evidenced by a copy of the receipt, the media\ + \ on which Software is furnished (if any) will be free of defects in materials and workmanship\ + \ under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive\ + \ remedy and Sun's entire liability under this limited warranty will be at Sun's option\ + \ to replace Software media or refund the fee paid for Software. Any implied warranties\ + \ on the Software are limited to 90 days. Some states do not allow limitations on duration\ + \ of an implied warranty, so the above may not apply to you. This limited warranty gives\ + \ you specific legal rights. You may have others, which vary from state to state.\n\n5.\ + \ DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS,\ + \ REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT\ + \ THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n6. LIMITATION OF LIABILITY. TO THE\ + \ EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY\ + \ LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE\ + \ DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED\ + \ TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including\ + \ negligence), or otherwise, exceed the amount paid by you for Software under this Agreement.\ + \ The foregoing limitations will apply even if the above stated warranty fails of its essential\ + \ purpose. Some states do not allow the exclusion of incidental or consequential damages,\ + \ so some of the terms above may not be applicable to you.\n\n7. TERMINATION. This Agreement\ + \ is effective until terminated. You may terminate this Agreement at any time by destroying\ + \ all copies of Software. This Agreement will terminate immediately without notice from\ + \ Sun if you fail to comply with any provision of this Agreement. Either party may terminate\ + \ this Agreement immediately should any Software become, or in either party's opinion be\ + \ likely to become, the subject of a claim of infringement of any intellectual property\ + \ right. Upon Termination, you must destroy all copies of Software.\n\n8. EXPORT REGULATIONS.\ + \ All Software and technical data delivered under this Agreement are subject to US export\ + \ control laws and may be subject to export or import regulations in other countries. You\ + \ agree to comply strictly with all such laws and regulations and acknowledge that you have\ + \ the responsibility to obtain such licenses to export, re-export, or import as may be required\ + \ after delivery to you.\n\n9. TRADEMARKS AND LOGOS. You acknowledge and agree as between\ + \ you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks\ + \ and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks,\ + \ logos and other brand designations (\"Sun Marks\"), and you agree to comply with the Sun\ + \ Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks.\ + \ Any use you make of the Sun Marks inures to Sun's benefit.\n\n10. U.S. GOVERNMENT RESTRICTED\ + \ RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S.\ + \ Government prime contractor or subcontractor (at any tier), then the Government's rights\ + \ in Software and accompanying documentation will be only as set forth in this Agreement;\ + \ this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense\ + \ (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n11.\ + \ GOVERNING LAW. Any action related to this Agreement will be governed by California law\ + \ and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply.\n\ + \n12. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this\ + \ Agreement will remain in effect with the provision omitted, unless omission would frustrate\ + \ the intent of the parties, in which case this Agreement will immediately terminate.\n\n\ + 13. INTEGRATION. This Agreement is the entire agreement between you and Sun relating to\ + \ its subject matter. It supersedes all prior or contemporaneous oral or written communications,\ + \ proposals, representations and warranties and prevails over any conflicting or additional\ + \ terms of any quote, order, acknowledgment, or other communication between the parties\ + \ relating to its subject matter during the term of this Agreement. No modification of this\ + \ Agreement will be binding, unless in writing and signed by an authorized representative\ + \ of each party. \n\nSUPPLEMENTAL LICENSE TERMS\n\nThese Supplemental License Terms add\ + \ to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined\ + \ in these Supplemental Terms shall have the same meanings ascribed to them in the Binary\ + \ Code License Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting\ + \ terms in the Binary Code License Agreement, or in any license contained within the Software.\n\ + \nA. Software Internal Use and Development License Grant. Subject to the terms and conditions\ + \ of this Agreement and restrictions and exceptions set forth in the Software \"README\"\ + \ file incorporated herein by reference, including, but not limited to the Java Technology\ + \ Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable,\ + \ limited license without fees to reproduce internally and use internally the Software complete\ + \ and unmodified for the purpose of designing, developing, and testing your Programs.\n\n\ + B. License to Distribute Software. Subject to the terms and conditions of this Agreement\ + \ and restrictions and exceptions set forth in the Software README file, including, but\ + \ not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants\ + \ you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute\ + \ the Software, provided that (i) you distribute the Software complete and unmodified and\ + \ only bundled as part of, and for the sole purpose of running, your Programs, (ii) the\ + \ Programs add significant and primary functionality to the Software, (iii) you do not distribute\ + \ additional software intended to replace any component(s) of the Software, (iv) you do\ + \ not remove or alter any proprietary legends or notices contained in the Software, (v)\ + \ you only distribute the Software subject to a license agreement that protects Sun's interests\ + \ consistent with the terms contained in this Agreement, and (vi) you agree to defend and\ + \ indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement\ + \ amounts and/or expenses (including attorneys' fees) incurred in connection with any claim,\ + \ lawsuit or action by any third party that arises or results from the use or distribution\ + \ of any and all Programs and/or Software.\n\nC. Java Technology Restrictions. You may not\ + \ create, modify, or change the behavior of, or authorize your licensees to create, modify,\ + \ or change the behavior of, classes, interfaces, or subpackages that are in any way identified\ + \ as \"java\", \"javax\", \"sun\" or similar convention as specified by Sun in any naming\ + \ convention designation.\n\nD. Source Code. Software may contain source code that, unless\ + \ expressly licensed for other purposes, is provided solely for reference purposes pursuant\ + \ to the terms of this Agreement. Source code may not be redistributed unless expressly\ + \ provided for in this Agreement.\n\nE. Third Party Code. Additional copyright notices and\ + \ license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt\ + \ file. In addition to any terms and conditions of any third party opensource/freeware license\ + \ identified in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation\ + \ of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall\ + \ apply to all Software in this distribution.\n\nF. Termination for Infringement. Either\ + \ party may terminate this Agreement immediately should any Software become, or in either\ + \ party's opinion be likely to become, the subject of a claim of infringement of any intellectual\ + \ property right.\n\nG. Installation and Auto-Update. The Software's installation and auto-update\ + \ processes transmit a limited amount of data to Sun (or its service provider) about those\ + \ specific processes to help Sun understand and optimize them. Sun does not associate the\ + \ data with personally identifiable information. You can find more information about the\ + \ data Sun collects at http://java.com/data/.\n\nFor inquiries please contact: Sun Microsystems,\ + \ Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A." json: sun-bcl-jre6.json - yml: sun-bcl-jre6.yml + yaml: sun-bcl-jre6.yml html: sun-bcl-jre6.html - text: sun-bcl-jre6.LICENSE + license: sun-bcl-jre6.LICENSE - license_key: sun-bcl-jsmq + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-jsmq other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "SUN Java System Message Queue License\nSun Microsystems, Inc. Binary Code License Agreement\n\ + \nREAD THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY\ + \ \"AGREEMENT\") CAREFULLY BEFORE OPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE\ + \ MEDIA PACKAGE, YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE\ + \ ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE \"ACCEPT\" BUTTON\ + \ AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE TERMS, PROMPTLY RETURN\ + \ THE UNUSED SOFTWARE TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED\ + \ ELECTRONICALLY, SELECT THE \"DECLINE\" BUTTON AT THE END OF THIS AGREEMENT.\n\n1. LICENSE\ + \ TO USE. Sun grants you a non-exclusive and non-transferable license for the internal use\ + \ only of the accompanying software and documentation and any error corrections provided\ + \ by Sun (collectively \"Software\"), by the number of users and the class of computer hardware\ + \ for which the corresponding fee has been paid.\n\n2. RESTRICTIONS. Software is confidential\ + \ and copyrighted. Title to Software and all associated intellectual property rights is\ + \ retained by Sun and/or its licensors. Except as specifically authorized in any Supplemental\ + \ License Terms, you may not make copies of Software, other than a single copy of Software\ + \ for archival purposes. Unless enforcement is prohibited by applicable law, you may not\ + \ modify, decompile, or reverse engineer Software. You acknowledge that Software is not\ + \ designed, licensed or intended for use in the design, construction, operation or maintenance\ + \ of any nuclear facility. Sun disclaims any express or implied warranty of fitness for\ + \ such uses. No right, title or interest in or to any trademark, service mark, logo or trade\ + \ name of Sun or its licensors is granted under this Agreement.\n\n3. LIMITED WARRANTY.\ + \ Sun warrants to you that for a period of ninety (90) days from the date of purchase, as\ + \ evidenced by a copy of the receipt, the media on which Software is furnished (if any)\ + \ will be free of defects in materials and workmanship under normal use. Except for the\ + \ foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability\ + \ under this limited warranty will be at Sun's option to replace Software media or refund\ + \ the fee paid for Software.\n\n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT,\ + \ ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED\ + \ WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE\ + \ DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\ + \n5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN\ + \ OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT,\ + \ CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY\ + \ OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN\ + \ IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability\ + \ to you, whether in contract, tort (including negligence), or otherwise, exceed the amount\ + \ paid by you for Software under this Agreement. The foregoing limitations will apply even\ + \ if the above stated warranty fails of its essential purpose.\n\n6. Termination. This Agreement\ + \ is effective until terminated. You may terminate this Agreement at any time by destroying\ + \ all copies of Software. This Agreement will terminate immediately without notice from\ + \ Sun if you fail to comply with any provision of this Agreement. Upon Termination, you\ + \ must destroy all copies of Software.\n\n7. Export Regulations. All Software and technical\ + \ data delivered under this Agreement are subject to US export control laws and may be subject\ + \ to export or import regulations in other countries. You agree to comply strictly with\ + \ all such laws and regulations and acknowledge that you have the responsibility to obtain\ + \ such licenses to export, re- export, or import as may be required after delivery to you.\n\ + \n8. U.S. Government Restricted Rights. If Software is being acquired by or on behalf of\ + \ the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any\ + \ tier), then the Government's rights in Software and accompanying documentation will be\ + \ only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through\ + \ 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212\ + \ (for non-DOD acquisitions).\n\n9. Governing Law. Any action related to this Agreement\ + \ will be governed by California law and controlling U.S. federal law. No choice of law\ + \ rules of any jurisdiction will apply.\n\n10. Severability. If any provision of this Agreement\ + \ is held to be unenforceable, this Agreement will remain in effect with the provision omitted,\ + \ unless omission would frustrate the intent of the parties, in which case this Agreement\ + \ will immediately terminate.\n\n11. Integration. This Agreement is the entire agreement\ + \ between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous\ + \ oral or written communications, proposals, representations and warranties and prevails\ + \ over any conflicting or additional terms of any quote, order, acknowledgment, or other\ + \ communication between the parties relating to its subject matter during the term of this\ + \ Agreement. No modification of this Agreement will be binding, unless in writing and signed\ + \ by an authorized representative of each party.\n\nSun Microsystems, Inc.\n\nSupplemental\ + \ Terms and Conditions for \nSun Java System Message Queue Platform Edition 3 2005Q1 and\n\ + Sun Java System Message Queue Enterprise Edition 3 2005Q1\n\nThese terms and conditions\ + \ for the Software supplement the terms and conditions of the Agreement. Capitalized terms\ + \ not defined herein shall have the meanings ascribed to them in ethe BCL. These terms and\ + \ conditions shall supersede any inconsistent or conflicting terms and conditions in the\ + \ BCL.\n\nA. Third Party Code. Additional copyright notices and license terms applicable\ + \ to portions of the Software are set forth in the THIRDPARTYLICENSEREADME file. In addition\ + \ to any terms and conditions of any third party opensource/freeware license identified\ + \ in the THIRDPARTYLICENSEREADME file, the disclaimer of warranty and limitation of liability\ + \ provisions in paragraphs 4 and 5 of the BCL shall apply to all Software in this distribution.\n\ + \nB. License to Evaluate Message Queue EE. If you have not paid the applicable fees for\ + \ Message Queue EE, Sun grants you a non-exclusive, non-transferable, royalty-free and limited\ + \ license to use Message Queue EE internally for the sole purpose of evaluation, for a period\ + \ of ninety (90) days from the date you begin using the Message Queue EE features. No license\ + \ to Message Queue EE is granted hereunder for any other purpose, including any commercial\ + \ or production use of Message Queue EE. Sun is under no obligation to provide you with\ + \ support, updates, error corrections or any other service for Software licensed for evaluation.\n\ + \nC. License to Use Software. The following terms and conditions apply to your use of Message\ + \ Queue PE, and, if you have paid the applicable fees for a commercial use license to Message\ + \ Queue EE, Message Queue EE.\n\n1. Definitions.\n\n(a) \"Broker\" means the server side\ + \ Software component that manages the routing of JMS messages.\n\n(b) \"Client Applications\"\ + \ means the application created by you using the APIs provided in the Software for connecting\ + \ with the Broker.\n\n2. Additional Use Conditions.\n\n(a) You may copy the documentation,\ + \ without change, as necessary to fully utilize Software, provided the copies contain all\ + \ of the original proprietary notices.\n\n(b) You may use any Sun ONE, Sun or third party\ + \ products embedded in or bundled with Software only in conjunction with Software (and the\ + \ applications that run on Software), and not with other software products or on a stand-alone\ + \ basis. Except as otherwise explicitly provided, the use of each such bundled product shall\ + \ be governed by its license agreement.\n\n3. License to Distribute Redistributables. Subject\ + \ to the terms and conditions of this Agreement, Sun grants you a non-exclusive, non-transferable,\ + \ limited license to reproduce and distribute the binary form of those files specifically\ + \ identified as redistributable below in Paragraph 3.(a) (\"Redistributables\"), provided\ + \ that: (i) you do not distribute additional software intended to supersede any component(s)\ + \ of the Redistributables, (ii) you do not remove or alter any proprietary legends or notices\ + \ contained in or on the Redistributables, (iii) you only distribute the Redistributables\ + \ pursuant to a license agreement that protects Sun's interests consistent with the terms\ + \ contained in the Agreement, and (iv) you agree to defend and indemnify Sun and its licensors\ + \ from and against any damages, costs, liabilities, settlement amounts and/or expenses (including\ + \ attorneys' fees) incurred in connection with any claim, lawsuit or action by any third\ + \ party that arises or results from the use or distribution of\n\n(a). Only the following\ + \ jar files may be redistributed in accordance with the license in Section C, Paragraph\ + \ 3 of these SupplementalTerms.\njms.jar \nimq.jar \nimqxm.jar \nfscontext.jar \nproviderutil.jar\ + \ \njndi.jar \nldap.jar \nldapbp.jar \njaas.jar \njsse.jar \njnet.jar \njcert.jar\n\nAdditionally\ + \ the following files can be redistributed:\nLICENSE \nCOPYRIGHT\n\nAll other files distributed\ + \ with the product are NOT redistributable.\n\n4. Java Technology Restrictions. You may\ + \ not create or modify, or authorize your licensees to create or modify, additional classes,\ + \ interfaces, or sub- packages that are in any way identified as \"java\", \"javax\", \"\ + sun\" or similar convention as specified by Sun in any naming convention designation.\n\n\ + 5. Trademarks and Logos. You acknowledge and agree as between you and Sun that Sun owns\ + \ the SUN, SOLARIS, JAVA, JINI, JDK, FORTE, STAROFFICE, STARPORTAL and iPLANET trademarks\ + \ and all SUN, SOLARIS, JAVA, JINI, FORTE, STAROFFICE, STARPORTAL and iPLANET-related trademarks,\ + \ service marks, logos and other brand designations (\"Sun Marks\"), and you agree to comply\ + \ with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks.\ + \ Any use you make of the Sun Marks inures to Sun's benefit.\n\n6. Source Code. Software\ + \ may contain source code that is provided solely for reference purposes pursuant to the\ + \ terms of this Agreement. Source code may not be redistributed unless expressly provided\ + \ for in this Agreement.\n\n7. Termination for Infringement. Either party may terminate\ + \ this Agreement immediately should any Software become, or in either party's opinion be\ + \ likely to become, the subject of a claim of infringement of any intellectual property\ + \ right.\n\n8. Additional Restrictions. You may not publish or provide the results of any\ + \ benchmark or comparison tests run on Software to any third party without the prior written\ + \ consent of Sun." json: sun-bcl-jsmq.json - yml: sun-bcl-jsmq.yml + yaml: sun-bcl-jsmq.yml html: sun-bcl-jsmq.html - text: sun-bcl-jsmq.LICENSE + license: sun-bcl-jsmq.LICENSE - license_key: sun-bcl-opendmk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-opendmk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Binary License for Project OpenDMK + + Sun Microsystems, Inc. Binary Code License Agreement + + SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE TO YOU + ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS + BINARY CODE LICENSE AGREEMENT ("AGREEMENT"). PLEASE READ THE AGREEMENT + CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE FULL + TERMS OF THIS AGREEMENT. + + 1. Definitions. + + "Software" means all software provided to You in binary code form by Sun + under this License as indicated on the "opendmk.dev.java.net" website. + Software includes any updates or error corrections or documentation relating + to Software provided to You by Sun under this License as indicated on + the "opendmk.dev.java.net" website. + + 2. Permitted Uses. + + Subject to the terms and conditions of this Agreement and restrictions + and exceptions set forth in the Software's documentation, Sun grants you + a non-exclusive,non-transferable, limited license without fees to + + (a) reproduce and use internally the Software for the purposes of + developing or running a Project OpenDMK code distribution. + + (b) reproduce and distribute the Software (and also portions of Software + identified as Redistributable in the documentation accompanying + Software), provided that you (i) distribute the Software or + Redistributables bundled as part of, and for the sole purpose of + running, Project OpenDMK code; (ii) do not remove or alter any proprietary + legends or notices contained in or on the Software or Redistributables, + (iii) only distribute the Software or Redistributables subject to a + license agreement that protects Sun's interests consistent with the + terms contained in this Agreement, and (iv) you agree to defend and + indemnify Sun and its licensors from and against any damages, costs, + liabilities, settlement amounts and/or expenses (including attorneys' + fees) incurred in connection with any claim, lawsuit or action by any + third party that arises or results from the use or distribution of any + and all Programs, Software, or Redistributables. + + 3. Restrictions. + + (a) The copies of Software provided to you under this Agreement is licensed, + not sold, to you by Sun. Sun reserves all rights not expressly granted. + + (b) You may not modify Software. However if the documentation accompanying + Software lists specific portions of Software, such as header files, class + libraries, reference source code, and/or redistributable files, that may + be handled differently, you may do so only as provided in the + documentation. + + (c) You may not rent, lease, lend or encumber Software. + + (d) You do not remove or alter any proprietary legends or notices contained + in the Software, + + (e) Unless enforcement is prohibited by applicable law, you may not decompile, + or reverse engineer Software. + + (f) The terms and conditions of this Agreement will apply to any Software + updates, provided to you at Sun's discretion, that replace and/or + supplement the original Software, unless such update contains a separate + license. + + (g) Software is copyrighted. + + (h) Software is not designed, licensed or intended for use in the design, + construction, operation or maintenance of any nuclear facility and Sun + and its licensors disclaim any express or implied warranty of fitness + for such uses. + + (i) No right, title or interest in or to any trademark, service mark, logo + or trade name of Sun or its licensors is granted under this Agreement. + + (j) If your Permitted Use in this Agreement permits the distribution Software + or portions of the Software, you may only distribute the Software subject + to a license agreement that protects Sun's interests consistent with the + terms contained in this Agreement. + + 4. Open Source. + + Sun supports and benefits from the global community of open source developers, + and thanks the community for its important contributions and open + standards-based technology, which Sun has adopted into many of its products. + + Please note that portions of Software may be provided with notices and open + source licenses from such communities and third parties that govern the use + of those portions, and any licenses granted hereunder do not alter any rights + and obligations you may have under such open source licenses, however, the + disclaimer of warranty and limitation of liability provisions in this + Agreement will apply to all Software in this distribution. + + 5. Term and Termination. + + The Agreement is effective on the Date you receive the Software and remains + effective until terminated. Your rights under this Agreement will terminate + immediately without notice from Sun if you materially breach it or take any + action in derogation of Sun's and/or its licensors' rights to Software. Sun + may terminate this Agreement should any Software become, or in Sun's + reasonable opinion likely to become, the subject of a claim of intellectual + property infringement or trade secret misappropriation. Upon termination, + you will cease use of, and destroy, Software and confirm compliance in + writing to Sun. Sections 1, 3, 4, 5, and 7-13 will survive termination of + the Agreement. + + 6. Limited Warranty. + + Sun warrants to you that for a period of 90 days from the date of receipt, + the media on which Software is furnished (if any) will be free of defects + in materials and workmanship under normal use. Except for the foregoing, + Software is provided "AS IS". Your exclusive remedy and Sun's entire + liability under this limited warranty will be at Sun's option to replace + Software media or refund the fee paid for Software. Some states do not allow + limitations on certain implied warranties, so the above may not apply to you. + This limited warranty gives you specific legal rights. You may have others, + which vary from state to state. + + 7. Disclaimer of Warranty. + + UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, + REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE + DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE + LEGALLY INVALID. + + 8. Limitation of Liability. + + TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS + BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, + CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF + THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY + TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH + DAMAGES. In no event will Sun's liability to you, whether in contract, + tort (including negligence), or otherwise, exceed the amount paid by you + Software under this Agreement. The foregoing limitations will apply even if + the above stated warranty fails of its essential purpose. Some states do not + allow the exclusion of incidental or consequential damages, so some of the + terms above may not be applicable to you. + + 9. Export Regulations. + + All Software, documents, technical data, and any other materials delivered + under this Agreement are subject to U.S. export control laws and may be + subject to export or import regulations in other countries. You agree to + comply strictly with these laws and regulations and acknowledge that you + have the responsibility to obtain any licenses to export, re-export, or + import as may be required after delivery to you. + + 10. U.S. Government Restricted Rights. + + If Software is being acquired by or on behalf of the U.S. Government or by a + U.S. Government prime contractor or subcontractor (at any tier), then the + Government's rights in Software and accompanying documentation will be only + as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 + through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with + 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). + + 11. Governing Law. + + Any action related to this Agreement will be governed by California law and + controlling U.S. federal law. No choice of law rules of any jurisdiction + will apply. + + 12. Severability. + + If any provision of this Agreement is held to be unenforceable, this + Agreement will remain in effect with the provision omitted, unless omission + would frustrate the intent of the parties, in which case this Agreement will + immediately terminate. + + 13. Integration. + + This Agreement is the entire agreement between you and Sun relating to its + subject matter. It supersedes all prior or contemporaneous oral or written + communications, proposals, representations and warranties and prevails over + any conflicting or additional terms of any quote, order, acknowledgment, or + other communication between the parties relating to its subject matter during + the term of this Agreement. No modification of this Agreement will be binding, + unless in writing and signed by an authorized representative of each party. + + Page Last Modified: 14 August 2007 json: sun-bcl-opendmk.json - yml: sun-bcl-opendmk.yml + yaml: sun-bcl-opendmk.yml html: sun-bcl-opendmk.html - text: sun-bcl-opendmk.LICENSE + license: sun-bcl-opendmk.LICENSE - license_key: sun-bcl-openjdk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-openjdk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Binary License for OpenJDK + + Sun Microsystems, Inc. Binary Code License Agreement + + SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE TO YOU + ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS + BINARY CODE LICENSE AGREEMENT ("AGREEMENT"). PLEASE READ THE AGREEMENT + CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE FULL + TERMS OF THIS AGREEMENT. + + 1. Definitions. + + "Software" means all third party software provided to You in binary code form + by Sun under this License as specifically indicated on the openjdk.java.net + source download web page. Software includes any updates or error corrections + or documentation relating to Software provided to You by Sun under this + License as indicated on the openjdk.java.net source download web page. + + 2. Permitted Uses. + + Subject to the terms and conditions of this Agreement, Sun grants you + a non-exclusive, non-transferable, limited license without fees to + + (a) reproduce and use internally the Software for the purposes of + developing or running a distribution based upon OpenJDK code + made available from Sun ("OpenJDK Code"). + + (b) reproduce and distribute the Software, provided that you (i) distribute + the Software bundled as part of, and for the sole purpose of running an + unmodified version of the OpenJDK Code or a runtime environment based upon + theOpenJDK Code; (ii) only distribute and use the Software with the + component of the OpenJDK Code into which such Software was originally + incorporated by Sun; (iii) do not remove or alter any proprietary legends or + notices contained in or on the Software; (iv) only distribute the Software + subject to a license agreement that protects Sun's interests consistent with + the terms contained in this Agreement; and (v) you agree to defend and + indemnify Sun and its licensors from and against any damages, costs, + liabilities, settlement amounts and/or expenses (including attorneys' fees) + incurred in connection with any claim, lawsuit or action by any third party + that arises or results from (A) the use or distribution of your software, + product or materials (or any part thereof) in any manner, or (B) your use or + distribution of the Software in violation of the terms of this Agreement or + applicable law. + + 3. Restrictions. + + (a) The copies of Software provided to you under this Agreement is licensed, + not sold, to you by Sun. Sun reserves all rights not expressly granted. + + (b) You may not modify Software. + + (c) You may not rent, lease, lend or encumber Software. + + (d) You do not remove or alter any proprietary legends or notices contained + in the Software, + + (e) Unless enforcement is prohibited by applicable law, you may not decompile, + or reverse engineer Software. + + (f) The terms and conditions of this Agreement will apply to any Software + updates, provided to you at Sun's discretion, that replace and/or + supplement the original Software, unless such update contains a separate + license. + + (g) Software is copyrighted. + + (h) Software is not designed, licensed or intended for use in the design, + construction, operation or maintenance of any nuclear facility and Sun + and its licensors disclaim any express or implied warranty of fitness + for such uses. + + (i) No right, title or interest in or to any trademark, service mark, logo + or trade name of Sun or its licensors is granted under this Agreement. + + (j) If your Permitted Use in this Agreement permits the distribution Software + or portions of the Software, you may only distribute the Software subject + to a license agreement that protects Sun's interests consistent with the + terms contained in this Agreement. + + 4. Open Source. + + Sun supports and benefits from the global community of open source developers, + and thanks the community for its important contributions and open + standards-based technology, which Sun has adopted into many of its products. + + Please note that portions of Software may be provided with notices and open + source licenses from such communities and third parties that govern the use + of those portions, and any licenses granted hereunder do not alter any rights + and obligations you may have under such open source licenses, however, the + disclaimer of warranty and limitation of liability provisions in this + Agreement will apply to all Software in this distribution. + + 5. Term and Termination. + + The Agreement is effective on the Date you receive the Software and remains + effective until terminated. Your rights under this Agreement will terminate + immediately without notice from Sun if you materially breach it or take any + action in derogation of Sun's and/or its licensors' rights to Software. Sun + may terminate this Agreement should any Software become, or in Sun's + reasonable opinion likely to become, the subject of a claim of intellectual + property infringement or trade secret misappropriation. Upon termination, + you will cease use of, and destroy, Software and confirm compliance in + writing to Sun. Sections 1, 3, 4, 5, and 7-13 will survive termination of + the Agreement. + + 6. Limited Warranty. + + Sun warrants to you that for a period of 90 days from the date of receipt, + the media on which Software is furnished (if any) will be free of defects + in materials and workmanship under normal use. Except for the foregoing, + Software is provided "AS IS". Your exclusive remedy and Sun's entire + liability under this limited warranty will be at Sun's option to replace + Software media or refund the fee paid for Software. Some states do not allow + limitations on certain implied warranties, so the above may not apply to you. + This limited warranty gives you specific legal rights. You may have others, + which vary from state to state. + + 7. Disclaimer of Warranty. + + UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, + REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE + DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE + LEGALLY INVALID. + + 8. Limitation of Liability. + + TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS + BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, + CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF + THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY + TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH + DAMAGES. In no event will Sun's liability to you, whether in contract, + tort (including negligence), or otherwise, exceed the amount paid by you + Software under this Agreement. The foregoing limitations will apply even if + the above stated warranty fails of its essential purpose. Some states do not + allow the exclusion of incidental or consequential damages, so some of the + terms above may not be applicable to you. + + 9. Export Regulations. + + All Software, documents, technical data, and any other materials delivered + under this Agreement are subject to U.S. export control laws and may be + subject to export or import regulations in other countries. You agree to + comply strictly with these laws and regulations and acknowledge that you + have the responsibility to obtain any licenses to export, re-export, or + import as may be required after delivery to you. + + 10. U.S. Government Restricted Rights. + + If Software is being acquired by or on behalf of the U.S. Government or by a + U.S. Government prime contractor or subcontractor (at any tier), then the + Government's rights in Software and accompanying documentation will be only + as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 + through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with + 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). + + 11. Governing Law. + + Any action related to this Agreement will be governed by California law and + controlling U.S. federal law. No choice of law rules of any jurisdiction + will apply. + + 12. Severability. + + If any provision of this Agreement is held to be unenforceable, this + Agreement will remain in effect with the provision omitted, unless omission + would frustrate the intent of the parties, in which case this Agreement will + immediately terminate. + + 13. Integration. + + This Agreement is the entire agreement between you and Sun relating to its + subject matter. It supersedes all prior or contemporaneous oral or written + communications, proposals, representations and warranties and prevails over + any conflicting or additional terms of any quote, order, acknowledgment, or + other communication between the parties relating to its subject matter during + the term of this Agreement. No modification of this Agreement will be binding, + unless in writing and signed by an authorized representative of each party. + + SUPPLEMENTAL TERMS. + + A. As a condition to the rights and licenses granted to you in this + Agreement, you cannot and shall not distribute a modified version of the AWT + that does not contain all of the class libraries (or equivalent libraries) + of the AWT if such modified version is distributed in association with + dedicated circuitry in silicon. For purposes of this section, "AWT" means + the abstract windowing toolkit class libraries implemented in the OpenJDK + Code or any modified version of such abstract windowing toolkit that is + created and distributed by Sun or its licensees. json: sun-bcl-openjdk.json - yml: sun-bcl-openjdk.yml + yaml: sun-bcl-openjdk.yml html: sun-bcl-openjdk.html - text: sun-bcl-openjdk.LICENSE + license: sun-bcl-openjdk.LICENSE - license_key: sun-bcl-sdk-1.3 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-sdk-1.3 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Java 2 Software Development Kit (J2SDK), Standard Edition, Version 1.3.x + Sun Microsystems, Inc. Binary Code License Agreement + + 1. LICENSE TO USE. Sun grants you a non-exclusive and non-transferable license for the internal use only of the accompanying software and documentation and any error corrections provided by Sun (collectively "Software"), by the number of users and the class of computer hardware for which the corresponding fee has been paid. "General Purpose Desktop Computers and Servers" means computers, including desktop, laptop and tablet computers, or servers, used for general computing functions under end user control (such as but not specifically limited to email, general purpose Internet browsing, and office suite productivity tools). The use of Software in systems and solutions that provide dedicated functionality (other than as mentioned above) or designed for use in embedded or function-specific software applications, for example but not limited to: Software embedded in or bundled with industrial control systems, wireless mobile telephones, wireless handheld devices, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control switching equipment, printers and storage management systems, and other related systems are excluded from this definition and not licensed under this Agreement. "Programs" means Java technology applets and applications intended to run on the Java 2 Platform Standard Edition (J2SE) platform on Java-enabled General Purpose Desktop Computers and Servers. + + 2. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Except as specifically authorized in any Supplemental License Terms, you may not make copies of Software, other than a single copy of Software for archival purposes. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. Licensee acknowledges that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. + + 3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided "AS IS". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. + + 4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. + + 5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. + + 6. Termination. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Upon Termination, you must destroy all copies of Software. + + 7. Export Regulations. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. + + 8. U.S. Government Restricted Rights. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). + + 9. Governing Law. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply. + + 10. Severability. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. + + 11. Integration. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. + + Java 2 Software Development Kit (J2SDK), Standard Edition, Version 1.3.x SUPPLEMENTAL LICENSE TERMS + + These supplemental license terms ("Supplemental Terms") add to or modify the terms of the Binary Code License Agreement (collectively, the "Agreement"). Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. + + 1. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software "README" file incorporated herein by reference, including, but not limited to Section 4 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the binary form of the Software complete and unmodified (unless otherwise specified in the applicable README file) for the sole purpose of designing, developing, testing, and running your Java applets and applications intended to run on Programs. + + 2. License to Distribute Software. Subject to the terms and conditions of this Agreement, including, but not limited to Section 4 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that: (i) you distribute the Software complete and unmodified (unless otherwise specified in the applicable README file) and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. + + 3. License to Distribute Redistributables. Subject to the terms and conditions of this Agreement, including but not limited to Section 4 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the Software "README" file ("Redistributables") provided that: (i) you distribute the Redistributables complete and unmodified (unless otherwise specified in the applicable README file), and only bundled as part of Programs, (ii) you do not distribute additional software intended to supersede any component(s) of the Redistributables, (iii) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (iv) you only distribute the Redistributables pursuant to a license agreement that protects Sun's interests consistent with the terms contained in the Agreement, and (v) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. + + 4. Java Technology Restrictions. You may not modify the Java Platform Interface ("JPI", identified as classes contained within the "java" package or any subpackages of the "java" package), by creating additional classes within the JPI or otherwise causing the addition to or modification of the classes in the JPI. In the event that you create an additional class and associated API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, you must promptly publish broadly an accurate specification for such API for free use by all developers. You may not create, or authorize your licensees to create, additional classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun" or similar convention as specified by Sun in any naming convention designation. + + 5. Trademarks and Logos. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations ("Sun Marks"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. + + 6. Source Code. Software may contain source code that is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. + + 7. Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. + + 8. Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME. In addition to any terms and conditions of any third party open source/freeware license identified in the THIRDPARTYLICENSEREADME, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution. + + For inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. (LFI#143968/Form ID#011801) json: sun-bcl-sdk-1.3.json - yml: sun-bcl-sdk-1.3.yml + yaml: sun-bcl-sdk-1.3.yml html: sun-bcl-sdk-1.3.html - text: sun-bcl-sdk-1.3.LICENSE + license: sun-bcl-sdk-1.3.LICENSE - license_key: sun-bcl-sdk-1.4.2 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-sdk-1.4.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Sun Microsystems, Inc. Binary Code License Agreement + for the JAVA 2 SOFTWARE DEVELOPMENT KIT (J2SDK), STANDARD EDITION, + VERSION 1.4.2_X + + SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE. + + 1.DEFINITIONS. "Software" means the identified above in binary form, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Sun, and any user manuals, programming guides and other documentation provided to you by Sun under this Agreement. "General Purpose Desktop Computers and Servers" means computers, including desktop, laptop and tablet computers, or servers, used for general computing functions under end user control (such as but not specifically limited to email, general purpose Internet browsing, and office suite productivity tools). The use of Software in systems and solutions that provide dedicated functionality (other than as mentioned above) or designed for use in embedded or function-specific software applications, for example but not limited to: Software embedded in or bundled with industrial control systems, wireless mobile telephones, wireless handheld devices, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control switching equipment, printers and storage management systems, and other related systems is excluded from this definition and not licensed under this Agreement. "Programs" means Java technology applets and applications intended to run on the Java 2 Platform Standard Edition (J2SE) platform on Java-enabled General Purpose Desktop Computers and Servers. + + 2.LICENSE TO USE. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of the Supplemental License Terms, Sun grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally Software complete and unmodified for the sole purpose of running Programs. Additional licenses for developers and/or publishers are granted in the Supplemental License Terms. + + 3.RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. Licensee acknowledges that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms. + + 4.LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided "AS IS". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Any implied warranties on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state. + + 5.DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. + + 6.LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you. + + 7.SOFTWARE UPDATES FROM SUN. You acknowledge that at your request or consent optional features of the Software may download, install, and execute applets, applications, software extensions, and updated versions of the Software from Sun ("Software Updates"), which may require you to accept updated terms and conditions for installation. If additional terms and conditions are not presented on installation, the Software Updates will be considered part of the Software and subject to the terms and conditions of the Agreement. + + 8.SOFTWARE FROM SOURCES OTHER THAN SUN. You acknowledge that, by your use of optional features of the Software and/or by requesting services that require use of the optional features of the Software, the Software may automatically download, install, and execute software applications from sources other than Sun ("Other Software"). Sun makes no representations of a relationship of any kind to licensors of Other Software. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE OTHER SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you. + + 9.TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon Termination, you must destroy all copies of Software. + + 10.EXPORT REGULATIONS. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. + + 11.TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations ("Sun Marks"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. + + 12.U.S. GOVERNMENT RESTRICTED RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). + + 13.GOVERNING LAW. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply. + + 14. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. + + 15. INTEGRATION. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. + + SUPPLEMENTAL LICENSE TERMS + + These Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement . These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. + + A.Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs. + + B.License to Distribute Software. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified (unless otherwise specified in the applicable README file) and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software (unless otherwise specified in the applicable README file), (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. + + C.License to Distribute Redistributables. Subject to the terms and conditions of this Agreement, including but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the Software "README" file ("Redistributables") provided that: (i) you distribute the Redistributables complete and unmodified (unless otherwise specified in the applicable README file), and only bundled as part of Programs, (ii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable README file), (iii) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (iv) you only distribute the Redistributables pursuant to a license agreement that protects Sun's interests consistent with the terms contained in the Agreement, (v) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. + + D.Java Technology Restrictions. You may not modify the Java Platform Interface ("JPI", identified as classes contained within the "java" package or any subpackages of the "java" package), by creating additional classes within the JPI or otherwise causing the addition to or modification of the classes in the JPI. In the event that you create an additional class and associated API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, you must promptly publish broadly an accurate specification for such API for free use by all developers. You may not create, or authorize your licensees to create, additional classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun" or similar convention as specified by Sun in any naming convention designation. + + E.Distribution by Publishers. This section pertains to your distribution of the Software with your printed book or magazine (as those terms are commonly used in the industry) relating to Java technology ("Publication"). Subject to and conditioned upon your compliance with the restrictions and obligations contained in the Agreement, in addition to the license granted in Paragraph 1 above, Sun hereby grants to you a non-exclusive, nontransferable limited right to reproduce complete and unmodified copies of the Software on electronic media (the "Media") for the sole purpose of inclusion and distribution with your Publication(s), subject to the following terms: (i) You may not distribute the Software on a stand-alone basis; it must be distributed with your Publication(s); (ii) You are responsible for downloading the Software from the applicable Sun web site; (iii) You must refer to the Software as JavaTM 2 Software Development Kit, Standard Edition, Version 1.4.2; (iv) The Software must be reproduced in its entirety and without any modification whatsoever (including, without limitation, the Binary Code License and Supplemental License Terms accompanying the Software and proprietary rights notices contained in the Software); (v) The Media label shall include the following information: Copyright 2003, Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Sun, Sun Microsystems, the Sun logo, Solaris, Java, the Java Coffee Cup logo, J2SE , and all trademarks and logos based on Java are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. This information must be placed on the Media label in such a manner as to only apply to the Sun Software; (vi) You must clearly identify the Software as Sun's product on the Media holder or Media label, and you may not state or imply that Sun is responsible for any third-party software contained on the Media; (vii) You may not include any third party software on the Media which is intended to be a replacement or substitute for the Software; (viii) You shall indemnify Sun for all damages arising from your failure to comply with the requirements of this Agreement. In addition, you shall defend, at your expense, any and all claims brought against Sun by third parties, and shall pay all damages awarded by a court of competent jurisdiction, or such settlement amount negotiated by you, arising out of or in connection with your use, reproduction or distribution of the Software and/or the Publication. Your obligation to provide indemnification under this section shall arise provided that Sun: (i) provides you prompt notice of the claim; (ii) gives you sole control of the defense and settlement of the claim; (iii) provides you, at your expense, with all available information, assistance and authority to defend; and (iv) has not compromised or settled such claim without your prior written consent; and (ix) You shall provide Sun with a written notice for each Publication; such notice shall include the following information: (1) title of Publication, (2) author(s), (3) date of Publication, and (4) ISBN or ISSN numbers. Such notice shall be sent to Sun Microsystems, Inc., 4150 Network Circle, M/S USCA12-110, Santa Clara, California 95054, U.S.A , Attention: Contracts Administration. + + F.Source Code. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. + + G.Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution. + + H.Termination for Infringement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. + + For inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. (LFI#129530/Form ID#011801) json: sun-bcl-sdk-1.4.2.json - yml: sun-bcl-sdk-1.4.2.yml + yaml: sun-bcl-sdk-1.4.2.yml html: sun-bcl-sdk-1.4.2.html - text: sun-bcl-sdk-1.4.2.LICENSE + license: sun-bcl-sdk-1.4.2.LICENSE - license_key: sun-bcl-sdk-5.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-sdk-5.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Sun Microsystems, Inc. Binary Code License Agreement + for the JAVA 2 PLATFORM STANDARD EDITION DEVELOPMENT KIT 5.0 + + SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE. + + 1. DEFINITIONS. "Software" means the identified above in binary form, any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Sun, and any user manuals, programming guides and other documentation provided to you by Sun under this Agreement. "Programs" mean Java applets and applications intended to run on the Java 2 Platform Standard Edition (J2SE platform) platform on Java-enabled general purpose desktop computers and servers. + + 2. LICENSE TO USE. Subject to the terms and conditions of this Agreement, including, but not limited to the Java Technology Restrictions of the Supplemental License Terms, Sun grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally Software complete and unmodified for the sole purpose of running Programs. Additional licenses for developers and/or publishers are granted in the Supplemental License Terms. + + 3. RESTRICTIONS. Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms. + + 4. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided "AS IS". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Any implied warranties on the Software are limited to 90 days. Some states do not allow limitations on duration of an implied warranty, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state. + + 5. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. + + 6. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you. + + 7. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon Termination, you must destroy all copies of Software. + + 8. EXPORT REGULATIONS. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. + + 9. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations ("Sun Marks"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. + + 10. U.S. GOVERNMENT RESTRICTED RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). + + 11. GOVERNING LAW. Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply. + + 12. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. + + 13. INTEGRATION. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. + + SUPPLEMENTAL LICENSE TERMS + + These Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement . These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. + + A. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software "README" file, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs. + + B. License to Distribute Software. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software README file, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. + + C. License to Distribute Redistributables. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software README file, including but not limited to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the Software "README" file ("Redistributables") provided that: (i) you distribute the Redistributables complete and unmodified, and only bundled as part of Programs, (ii) the Programs add significant and primary functionality to the Redistributables, (iii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable README file), (iv) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (v) you only distribute the Redistributables pursuant to a license agreement that protects Sun's interests consistent with the terms contained in the Agreement, (vi) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. + + D. Java Technology Restrictions. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun" or similar convention as specified by Sun in any naming convention designation. + + E. Distribution by Publishers. This section pertains to your distribution of the Software with your printed book or magazine (as those terms are commonly used in the industry) relating to Java technology ("Publication"). Subject to and conditioned upon your compliance with the restrictions and obligations contained in the Agreement, in addition to the license granted in Paragraph 1 above, Sun hereby grants to you a non-exclusive, nontransferable limited right to reproduce complete and unmodified copies of the Software on electronic media (the "Media") for the sole purpose of inclusion and distribution with your Publication(s), subject to the following terms: (i) You may not distribute the Software on a stand-alone basis; it must be distributed with your Publication(s); (ii) You are responsible for downloading the Software from the applicable Sun web site; (iii) You must refer to the Software as JavaTM 2 Platform Standard Edition Development Kit 5.0; (iv) The Software must be reproduced in its entirety and without any modification whatsoever (including, without limitation, the Binary Code License and Supplemental License Terms accompanying the Software and proprietary rights notices contained in the Software); (v) The Media label shall include the following information: Copyright 2004, Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Sun, Sun Microsystems, the Sun logo, Solaris, Java, the Java Coffee Cup logo, J2SE , and all trademarks and logos based on Java are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. This information must be placed on the Media label in such a manner as to only apply to the Sun Software; (vi) You must clearly identify the Software as Sun's product on the Media holder or Media label, and you may not state or imply that Sun is responsible for any third-party software contained on the Media; (vii) You may not include any third party software on the Media which is intended to be a replacement or substitute for the Software; (viii) You shall indemnify Sun for all damages arising from your failure to comply with the requirements of this Agreement. In addition, you shall defend, at your expense, any and all claims brought against Sun by third parties, and shall pay all damages awarded by a court of competent jurisdiction, or such settlement amount negotiated by you, arising out of or in connection with your use, reproduction or distribution of the Software and/or the Publication. Your obligation to provide indemnification under this section shall arise provided that Sun: (i) provides you prompt notice of the claim; (ii) gives you sole control of the defense and settlement of the claim; (iii) provides you, at your expense, with all available information, assistance and authority to defend; and (iv) has not compromised or settled such claim without your prior written consent; and (ix) You shall provide Sun with a written notice for each Publication; such notice shall include the following information: (1) title of Publication, (2) author(s), (3) date of Publication, and (4) ISBN or ISSN numbers. Such notice shall be sent to Sun Microsystems, Inc., 4150 Network Circle, M/S USCA12-110, Santa Clara, California 95054, U.S.A , Attention: Contracts Administration. + + F. Source Code. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. + + G. Third Party Code. Additional copyright notices and license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt file. In addition to any terms and conditions of any third party opensource/freeware license identified in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall apply to all Software in this distribution. + + For inquiries please contact: Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. + (LFI#141623/Form ID#011801) json: sun-bcl-sdk-5.0.json - yml: sun-bcl-sdk-5.0.yml + yaml: sun-bcl-sdk-5.0.yml html: sun-bcl-sdk-5.0.html - text: sun-bcl-sdk-5.0.LICENSE + license: sun-bcl-sdk-5.0.LICENSE - license_key: sun-bcl-sdk-6.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-sdk-6.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Sun Microsystems, Inc. Binary Code License Agreement \nfor the JAVA SE DEVELOPMENT\ + \ KIT (JDK), VERSION 6\n\n1. DEFINITIONS. \"Software\" means the identified above in binary\ + \ form, any other machine readable materials (including, but not limited to, libraries,\ + \ source files, header files, and data files), any updates or error corrections provided\ + \ by Sun, and any user manuals, programming guides and other documentation provided to you\ + \ by Sun under this Agreement. \"General Purpose Desktop Computers and Servers\" means computers,\ + \ including desktop, laptop and tablet computers, or servers, used for general computing\ + \ functions under end user control (such as but not specifically limited to email, general\ + \ purpose Internet browsing, and office suite productivity tools). The use of Software in\ + \ systems and solutions that provide dedicated functionality (other than as mentioned above)\ + \ or designed for use in embedded or function-specific software applications, for example\ + \ but not limited to: Software embedded in or bundled with industrial control systems, wireless\ + \ mobile telephones, wireless handheld devices, kiosks, TV/STB, Blu-ray Disc devices, telematics\ + \ and network control switching equipment, printers and storage management systems, and\ + \ other related systems are excluded from this definition and not licensed under this Agreement.\ + \ \"Programs\" means Java technology applets and applications intended to run on the Java\ + \ Platform Standard Edition (Java SE) platform on Java-enabled General Purpose Desktop Computers\ + \ and Servers.\n\n2. LICENSE TO USE. Subject to the terms and conditions of this Agreement,\ + \ including, but not limited to the Java Technology Restrictions of the Supplemental License\ + \ Terms, Sun grants you a non-exclusive, non-transferable, limited license without license\ + \ fees to reproduce and use internally Software complete and unmodified for the sole purpose\ + \ of running Programs. Additional licenses for developers and/or publishers are granted\ + \ in the Supplemental License Terms.\n\n3. RESTRICTIONS. Software is confidential and copyrighted.\ + \ Title to Software and all associated intellectual property rights is retained by Sun and/or\ + \ its licensors. Unless enforcement is prohibited by applicable law, you may not modify,\ + \ decompile, or reverse engineer Software. You acknowledge that Licensed Software is not\ + \ designed or intended for use in the design, construction, operation or maintenance of\ + \ any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty\ + \ of fitness for such uses. No right, title or interest in or to any trademark, service\ + \ mark, logo or trade name of Sun or its licensors is granted under this Agreement. Additional\ + \ restrictions for developers and/or publishers licenses are set forth in the Supplemental\ + \ License Terms.\n\n4. LIMITED WARRANTY. Sun warrants to you that for a period of ninety\ + \ (90) days from the date of purchase, as evidenced by a copy of the receipt, the media\ + \ on which Software is furnished (if any) will be free of defects in materials and workmanship\ + \ under normal use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive\ + \ remedy and Sun's entire liability under this limited warranty will be at Sun's option\ + \ to replace Software media or refund the fee paid for Software. Any implied warranties\ + \ on the Software are limited to 90 days. Some states do not allow limitations on duration\ + \ of an implied warranty, so the above may not apply to you. This limited warranty gives\ + \ you specific legal rights. You may have others, which vary from state to state.\n\n5.\ + \ DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS,\ + \ REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT\ + \ THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n6. LIMITATION OF LIABILITY. TO THE\ + \ EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY\ + \ LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE\ + \ DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED\ + \ TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including\ + \ negligence), or otherwise, exceed the amount paid by you for Software under this Agreement.\ + \ The foregoing limitations will apply even if the above stated warranty fails of its essential\ + \ purpose. Some states do not allow the exclusion of incidental or consequential damages,\ + \ so some of the terms above may not be applicable to you.\n\n7. TERMINATION. This Agreement\ + \ is effective until terminated. You may terminate this Agreement at any time by destroying\ + \ all copies of Software. This Agreement will terminate immediately without notice from\ + \ Sun if you fail to comply with any provision of this Agreement. Either party may terminate\ + \ this Agreement immediately should any Software become, or in either party's opinion be\ + \ likely to become, the subject of a claim of infringement of any intellectual property\ + \ right. Upon Termination, you must destroy all copies of Software.\n\n8. EXPORT REGULATIONS.\ + \ All Software and technical data delivered under this Agreement are subject to US export\ + \ control laws and may be subject to export or import regulations in other countries. You\ + \ agree to comply strictly with all such laws and regulations and acknowledge that you have\ + \ the responsibility to obtain such licenses to export, re-export, or import as may be required\ + \ after delivery to you.\n\n9. TRADEMARKS AND LOGOS. You acknowledge and agree as between\ + \ you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks\ + \ and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks,\ + \ logos and other brand designations (\"Sun Marks\"), and you agree to comply with the Sun\ + \ Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks.\ + \ Any use you make of the Sun Marks inures to Sun's benefit.\n\n10. U.S. GOVERNMENT RESTRICTED\ + \ RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S.\ + \ Government prime contractor or subcontractor (at any tier), then the Government's rights\ + \ in Software and accompanying documentation will be only as set forth in this Agreement;\ + \ this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense\ + \ (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions).\n\n11.\ + \ GOVERNING LAW. Any action related to this Agreement will be governed by California law\ + \ and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply.\n\ + \n12. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this\ + \ Agreement will remain in effect with the provision omitted, unless omission would frustrate\ + \ the intent of the parties, in which case this Agreement will immediately terminate.\n\n\ + 13. INTEGRATION. This Agreement is the entire agreement between you and Sun relating to\ + \ its subject matter. It supersedes all prior or contemporaneous oral or written communications,\ + \ proposals, representations and warranties and prevails over any conflicting or additional\ + \ terms of any quote, order, acknowledgment, or other communication between the parties\ + \ relating to its subject matter during the term of this Agreement. No modification of this\ + \ Agreement will be binding, unless in writing and signed by an authorized representative\ + \ of each party.\n\nSUPPLEMENTAL LICENSE TERMS\n\nThese Supplemental License Terms add to\ + \ or modify the terms of the Binary Code License Agreement. Capitalized terms not defined\ + \ in these Supplemental Terms shall have the same meanings ascribed to them in the Binary\ + \ Code License Agreement . These Supplemental Terms shall supersede any inconsistent or\ + \ conflicting terms in the Binary Code License Agreement, or in any license contained within\ + \ the Software.\n\nA. Software Internal Use and Development License Grant. Subject to the\ + \ terms and conditions of this Agreement and restrictions and exceptions set forth in the\ + \ Software \"README\" file incorporated herein by reference, including, but not limited\ + \ to the Java Technology Restrictions of these Supplemental Terms, Sun grants you a non-exclusive,\ + \ non-transferable, limited license without fees to reproduce internally and use internally\ + \ the Software complete and unmodified for the purpose of designing, developing, and testing\ + \ your Programs.\n\nB. License to Distribute Software. Subject to the terms and conditions\ + \ of this Agreement and restrictions and exceptions set forth in the Software README file,\ + \ including, but not limited to the Java Technology Restrictions of these Supplemental Terms,\ + \ Sun grants you a non-exclusive, non- transferable, limited license without fees to reproduce\ + \ and distribute the Software, provided that (i) you distribute the Software complete and\ + \ unmodified and only bundled as part of, and for the sole purpose of running, your Programs,\ + \ (ii) the Programs add significant and primary functionality to the Software, (iii) you\ + \ do not distribute additional software intended to replace any component(s) of the Software,\ + \ (iv) you do not remove or alter any proprietary legends or notices contained in the Software,\ + \ (v) you only distribute the Software subject to a license agreement that protects Sun's\ + \ interests consistent with the terms contained in this Agreement, and (vi) you agree to\ + \ defend and indemnify Sun and its licensors from and against any damages, costs, liabilities,\ + \ settlement amounts and/or expenses (including attorneys' fees) incurred in connection\ + \ with any claim, lawsuit or action by any third party that arises or results from the use\ + \ or distribution of any and all Programs and/or Software.\n\nC. License to Distribute Redistributables.\ + \ Subject to the terms and conditions of this Agreement and restrictions and exceptions\ + \ set forth in the Software README file, including but not limited to the Java Technology\ + \ Restrictions of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable,\ + \ limited license without fees to reproduce and distribute those files specifically identified\ + \ as redistributable in the Software \"README\" file (\"Redistributables\") provided that:\ + \ (i) you distribute the Redistributables complete and unmodified, and only bundled as part\ + \ of Programs, (ii) the Programs add significant and primary functionality to the Redistributables,\ + \ (iii) you do not distribute additional software intended to supersede any component(s)\ + \ of the Redistributables (unless otherwise specified in the applicable README file), (iv)\ + \ you do not remove or alter any proprietary legends or notices contained in or on the Redistributables,\ + \ (v) you only distribute the Redistributables pursuant to a license agreement that protects\ + \ Sun's interests consistent with the terms contained in the Agreement, (vi) you agree to\ + \ defend and indemnify Sun and its licensors from and against any damages, costs, liabilities,\ + \ settlement amounts and/or expenses (including attorneys' fees) incurred in connection\ + \ with any claim, lawsuit or action by any third party that arises or results from the use\ + \ or distribution of any and all Programs and/or Software.\n\nD. Java Technology Restrictions.\ + \ You may not create, modify, or change the behavior of, or authorize your licensees to\ + \ create, modify, or change the behavior of, classes, interfaces, or subpackages that are\ + \ in any way identified as \"java\", \"javax\", \"sun\" or similar convention as specified\ + \ by Sun in any naming convention designation.\n\nE. Distribution by Publishers. This section\ + \ pertains to your distribution of the Software with your printed book or magazine (as those\ + \ terms are commonly used in the industry) relating to Java technology (\"Publication\"\ + ). Subject to and conditioned upon your compliance with the restrictions and obligations\ + \ contained in the Agreement, in addition to the license granted in Paragraph 1 above, Sun\ + \ hereby grants to you a non-exclusive, nontransferable limited right to reproduce complete\ + \ and unmodified copies of the Software on electronic media (the \"Media\") for the sole\ + \ purpose of inclusion and distribution with your Publication(s), subject to the following\ + \ terms: (i) You may not distribute the Software on a stand-alone basis; it must be distributed\ + \ with your Publication(s); (ii) You are responsible for downloading the Software from the\ + \ applicable Sun web site; (iii) You must refer to the Software as JavaTM SE Development\ + \ Kit 6; (iv) The Software must be reproduced in its entirety and without any modification\ + \ whatsoever (including, without limitation, the Binary Code License and Supplemental License\ + \ Terms accompanying the Software and proprietary rights notices contained in the Software);\ + \ (v) The Media label shall include the following information: Copyright 2006, Sun Microsystems,\ + \ Inc. All rights reserved. Use is subject to license terms. Sun, Sun Microsystems, the\ + \ Sun logo, Solaris, Java, the Java Coffee Cup logo, J2SE, and all trademarks and logos\ + \ based on Java are trademarks or registered trademarks of Sun Microsystems, Inc. in the\ + \ U.S. and other countries. This information must be placed on the Media label in such a\ + \ manner as to only apply to the Sun Software; (vi) You must clearly identify the Software\ + \ as Sun's product on the Media holder or Media label, and you may not state or imply that\ + \ Sun is responsible for any third-party software contained on the Media; (vii) You may\ + \ not include any third party software on the Media which is intended to be a replacement\ + \ or substitute for the Software; (viii) You shall indemnify Sun for all damages arising\ + \ from your failure to comply with the requirements of this Agreement. In addition, you\ + \ shall defend, at your expense, any and all claims brought against Sun by third parties,\ + \ and shall pay all damages awarded by a court of competent jurisdiction, or such settlement\ + \ amount negotiated by you, arising out of or in connection with your use, reproduction\ + \ or distribution of the Software and/or the Publication. Your obligation to provide indemnification\ + \ under this section shall arise provided that Sun: (a) provides you prompt notice of the\ + \ claim; (b) gives you sole control of the defense and settlement of the claim; (c) provides\ + \ you, at your expense, with all available information, assistance and authority to defend;\ + \ and (d) has not compromised or settled such claim without your prior written consent;\ + \ and (ix) You shall provide Sun with a written notice for each Publication; such notice\ + \ shall include the following information: (1) title of Publication, (2) author(s), (3)\ + \ date of Publication, and (4) ISBN or ISSN numbers. Such notice shall be sent to Sun Microsystems,\ + \ Inc., 4150 Network Circle, M/S USCA12-110, Santa Clara, California 95054, U.S.A , Attention:\ + \ Contracts Administration.\n\nF. Source Code. Software may contain source code that, unless\ + \ expressly licensed for other purposes, is provided solely for reference purposes pursuant\ + \ to the terms of this Agreement. Source code may not be redistributed unless expressly\ + \ provided for in this Agreement.\n\nG. Third Party Code. Additional copyright notices and\ + \ license terms applicable to portions of the Software are set forth in the THIRDPARTYLICENSEREADME.txt\ + \ file. In addition to any terms and conditions of any third party opensource/freeware license\ + \ identified in the THIRDPARTYLICENSEREADME.txt file, the disclaimer of warranty and limitation\ + \ of liability provisions in paragraphs 5 and 6 of the Binary Code License Agreement shall\ + \ apply to all Software in this distribution.\n\nH. Termination for Infringement. Either\ + \ party may terminate this Agreement immediately should any Software become, or in either\ + \ party's opinion be likely to become, the subject of a claim of infringement of any intellectual\ + \ property right.\n\nI. Installation and Auto-Update. The Software's installation and auto-update\ + \ processes transmit a limited amount of data to Sun (or its service provider) about those\ + \ specific processes to help Sun understand and optimize them. Sun does not associate the\ + \ data with personally identifiable information. You can find more information about the\ + \ data Sun collects at http://java.com/data/.\n\nFor inquiries please contact: Sun Microsystems,\ + \ Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A." json: sun-bcl-sdk-6.0.json - yml: sun-bcl-sdk-6.0.yml + yaml: sun-bcl-sdk-6.0.yml html: sun-bcl-sdk-6.0.html - text: sun-bcl-sdk-6.0.LICENSE + license: sun-bcl-sdk-6.0.LICENSE - license_key: sun-bcl-web-start + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-bcl-web-start other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "JAVATM WEB START VERSION 1.2.x\nSun Microsystems, Inc.\nBinary Code License Agreement\n\ + \n1. LICENSE TO USE. Sun grants you a non-exclusive and non-transferable license for the\ + \ internal use only of the accompanying software and documentation and any error corrections\ + \ provided by Sun (collectively \"Software\"), by the number of users and the class of computer\ + \ hardware for which the corresponding fee has been paid.\n\n2. RESTRICTIONS. Software is\ + \ confidential and copyrighted. Title to Software and all associated intellectual property\ + \ rights is retained by Sun and/or its licensors. Except as specifically authorized in any\ + \ Supplemental License Terms, you may not make copies of Software, other than a single copy\ + \ of Software for archival purposes. Unless enforcement is prohibited by applicable law,\ + \ you may not modify, decompile, or reverse engineer Software. You acknowledge that Software\ + \ is not designed, licensed or intended for use in the design, construction, operation or\ + \ maintenance of any nuclear facility. Sun disclaims any express or implied warranty of\ + \ fitness for such uses. No right, title or interest in or to any trademark, service mark,\ + \ logo or trade name of Sun or its licensors is granted under this Agreement.\n\n3. LIMITED\ + \ WARRANTY. Sun warrants to you that for a period of ninety (90) days from the date of purchase,\ + \ as evidenced by a copy of the receipt, the media on which Software is furnished (if any)\ + \ will be free of defects in materials and workmanship under normal use. Except for the\ + \ foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability\ + \ under this limited warranty will be at Sun';s option to replace Software media or refund\ + \ the fee paid for Software.\n\n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT,\ + \ ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED\ + \ WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE\ + \ DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\ + \n5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN\ + \ OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT,\ + \ CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY\ + \ OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN\ + \ IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability\ + \ to you, whether in contract, tort (including negligence), or otherwise, exceed the amount\ + \ paid by you for Software under this Agreement. The foregoing limitations will apply even\ + \ if the above stated warranty fails of its essential purpose.\n\n6. Termination. This Agreement\ + \ is effective until terminated. You may terminate this Agreement at any time by destroying\ + \ all copies of Software. This Agreement will terminate immediately without notice from\ + \ Sun if you fail to comply with any provision of this Agreement. Upon Termination, you\ + \ must destroy all copies of Software.\n\n7. Export Regulations. All Software and technical\ + \ data delivered under this Agreement are subject to US export control laws and may be subject\ + \ to export or import regulations in other countries. You agree to comply strictly with\ + \ all such laws and regulations and acknowledge that you have the responsibility to obtain\ + \ such licenses to export, re-export, or import as may be required after delivery to you.\n\ + \n8. U.S. Government Restricted Rights. If Software is being acquired by or on behalf of\ + \ the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any\ + \ tier), then the Government's rights in Software and accompanying documentation will be\ + \ only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through\ + \ 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212\ + \ (for non-DOD acquisitions).\n\n9. Governing Law. Any action related to this Agreement\ + \ will be governed by California law and controlling U.S. federal law. No choice of law\ + \ rules of any jurisdiction will apply.\n\n10. Severability. If any provision of this Agreement\ + \ is held to be unenforceable, this Agreement will remain in effect with the provision omitted,\ + \ unless omission would frustrate the intent of the parties, in which case this Agreement\ + \ will immediately terminate.\n\n11. Integration. This Agreement is the entire agreement\ + \ between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous\ + \ oral or written communications, proposals, representations and warranties and prevails\ + \ over any conflicting or additional terms of any quote, order, acknowledgment, or other\ + \ communication between the parties relating to its subject matter during the term of this\ + \ Agreement. No modification of this Agreement will be binding, unless in writing and signed\ + \ by an authorized representative of each party.\n\nJAVATM WEB START VERSION 1.2.x \nSUPPLEMENTAL\ + \ LICENSE TERMS\n\nThese supplemental license terms (\"Supplemental Terms\") add to or modify\ + \ the terms of the Binary Code License Agreement (collectively, the \"Agreement\"). Capitalized\ + \ terms not defined in these Supplemental Terms shall have the same meanings ascribed to\ + \ them in the Agreement.These Supplemental Terms shall supersede any inconsistent or conflicting\ + \ terms in the Agreement, or in any license contained within the Software.\n\n1. Software\ + \ Internal Use and Development License Grant. Subject to the terms and conditions of this\ + \ Agreement, including, but not limited to Section 3 (Java Technology Restrictions) of these\ + \ Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license\ + \ to reproduce internally and use internally the binary form of the Software complete and\ + \ unmodified for the sole purpose of designing, developing, testing, and running your Java\ + \ applets and applications intended to run on the Java platform (\"Programs\").\n\n2. License\ + \ to Distribute Software. Subject to the terms and conditions of this Agreement, including,\ + \ but not limited to Section 3 (Java Technology Restrictions) of these SupplementalTerms,\ + \ Sun grants you a non-exclusive, non-transferable, limited license to reproduce and distribute\ + \ the Software in binary code form only, provided that (i) you distribute the Software complete\ + \ and unmodified and only bundled as part of, and for the sole purpose of running, your\ + \ Java applets or applications (\"Programs\"), (ii) the Programs add significant and primary\ + \ functionality to the Software, (iii) you do not distribute additional software intended\ + \ to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary\ + \ legends or notices contained in the Software, (v) you only distribute the Software subject\ + \ to a license agreement that protects Sun's interests consistent with the terms contained\ + \ in this Agreement, and (vi) you agree to defend and indemnify Sun and its licensors from\ + \ and against any damages, costs, liabilities, settlement amounts and/or expenses (including\ + \ attorneys' fees) incurred in connection with any claim, lawsuit or action by any third\ + \ party that arises or results from the use or distribution of any and all Programs and/or\ + \ Software.\n\n3. Java Technology Restrictions. You may not modify the Java Platform Interface\ + \ (\"JPI\", identified as classes contained within the \"java\" package or any subpackages\ + \ of the \"java\" package), by creating additional classes within the JPI or otherwise causing\ + \ the addition to or modification of the classes in the JPI. In the event that you create\ + \ an additional class and associated API(s) which (i) extends the functionality of the Java\ + \ platform, and (ii) is exposed to third party software developers for the purpose of developing\ + \ additional software which invokes such additional API, you must promptly publish broadly\ + \ an accurate specification for such API for free use by all developers. You may not create,\ + \ or authorize your licensees to create, additional classes, interfaces, or subpackages\ + \ that are in any way identified as \"java\", \"javax\", \"sun\" or similar convention as\ + \ specified by Sun in any naming convention designation.\n\n4. Notice of Contents. Software\ + \ may contain a Java Runtime Environment (JRE).\n\n5. Notice of Automatic Software Updates\ + \ from Sun. You acknowledge that the Software may automatically download, install, and execute\ + \ applets, applications, software extensions, and updated versions of the Software from\ + \ Sun (\"Software Updates\"), which may require you to accept updated terms and conditions\ + \ for installation. If additional terms and conditions are not presented on installation,\ + \ the Software Updates will be considered part of the Software and subject to the terms\ + \ and conditions of the Agreement.\n\n6. Notice of Automatic Downloads. You acknowledge\ + \ that, by your use of the Software and/or by requesting services that require use of the\ + \ Software, the Software may automatically download, install, and execute software applications\ + \ from sources other than Sun (\"Other Software\"). Sun makes no representations of a relationship\ + \ of any kind to licensors of Other Software. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO\ + \ EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR\ + \ SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS\ + \ OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE\ + \ OTHER SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7.\ + \ Limited Warranty. Any implied warranties on the Software are limited to 90 days. Some\ + \ states do not allow limitations on duration of an implied warranty, so the above may not\ + \ apply to you. This limited warranty gives you specific legal rights. You may have others,\ + \ which vary from state to state.\n\n8. Limitation of Liability. Some states do not allow\ + \ the exclusion of incidental or consequential damages, so some of the terms of Section\ + \ 5, Limitation of Liability, above may not be applicable to you.\n\n9. Trademarks and Logos.\ + \ You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA,\ + \ JINI, FORTE, STAROFFICE, STARPORTAL and iPLANET trademarks and all SUN, SOLARIS, JAVA,\ + \ JINI, FORTE, STAROFFICE, STARPORTAL and iPLANET-related trademarks, service marks, logos\ + \ and other brand designations (\"Sun Marks\"), and you agree to comply with the Sun Trademark\ + \ and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks.\ + \ Any use you make of the Sun Marks inures to Sun's benefit.\n\n10. Source Code. Software\ + \ may contain source code that is provided solely for reference purposes pursuant to the\ + \ terms of this Agreement. Source code may not be redistributed unless expressly provided\ + \ for in this Agreement.\n\n11. Termination for Infringement. Either party may terminate\ + \ this Agreement immediately should any Software become, or in either party's opinion be\ + \ likely to become, the subject of a claim of infringement of any intellectual property\ + \ right." json: sun-bcl-web-start.json - yml: sun-bcl-web-start.yml + yaml: sun-bcl-web-start.yml html: sun-bcl-web-start.html - text: sun-bcl-web-start.LICENSE + license: sun-bcl-web-start.LICENSE - license_key: sun-bsd-extra + category: Free Restricted spdx_license_key: LicenseRef-scancode-sun-bsd-extra other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "Sun grants you (\"Licensee\") a non-exclusive, royalty free, license to use,\nmodify\ + \ and redistribute this software in source and binary code form, provided\nthat\n\ni) this\ + \ copyright notice and license appear on all copies of the software; and \n\nii) Licensee\ + \ does not utilize the software in a manner which is disparaging to\nSun.\n\nThis software\ + \ is provided \"AS IS,\" without a warranty of any kind. ALL EXPRESS\nOR IMPLIED CONDITIONS,\ + \ REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED\nWARRANTY OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE OR NON-\nINFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS\ + \ SHALL NOT BE LIABLE FOR\nANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING\ + \ OR DISTRIBUTING\nTHE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS\ + \ BE LIABLE\nFOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL,\nCONSEQUENTIAL,\ + \ INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF\nTHE THEORY OF LIABILITY,\ + \ ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,\nEVEN IF SUN HAS BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES.\n\nThis software is not designed or intended for use\ + \ in on-line control of\naircraft, air traffic, aircraft navigation or aircraft communications;\ + \ or in the\ndesign, construction, operation or maintenance of any nuclear facility. Licensee\n\ + represents and warrants that it will not use or redistribute the Software for\nsuch purposes." json: sun-bsd-extra.json - yml: sun-bsd-extra.yml + yaml: sun-bsd-extra.yml html: sun-bsd-extra.html - text: sun-bsd-extra.LICENSE + license: sun-bsd-extra.LICENSE - license_key: sun-bsd-no-nuclear + category: Free Restricted spdx_license_key: BSD-3-Clause-No-Nuclear-License other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + Redistribution of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + Redistribution 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 Sun Microsystems, Inc. nor the names of contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + This software is provided "AS IS," without a warranty of any kind. ALL + EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING + ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MICROSYSTEMS, INC. + ("SUN") AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED + BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS + SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE + LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, + SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED + AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR + INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE + POSSIBILITY OF SUCH DAMAGES. + + You acknowledge that this software is not designed, licensed or intended + for use in the design, construction, operation or maintenance of any + nuclear facility. json: sun-bsd-no-nuclear.json - yml: sun-bsd-no-nuclear.yml + yaml: sun-bsd-no-nuclear.yml html: sun-bsd-no-nuclear.html - text: sun-bsd-no-nuclear.LICENSE + license: sun-bsd-no-nuclear.LICENSE - license_key: sun-communications-api + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-communications-api other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Sun Communications API\ncomm.jar Java(TM) Communications API 2.0 \nCopyright Sun Microsystems,\ + \ Inc. \n\nSun Microsystems, Inc. Binary Code License Agreement\n\n1. LICENSE TO USE. Sun\ + \ grants you a non-exclusive and non-transferable license for the internal use only of the\ + \ accompanying software and documentation and any error corrections provided by Sun (collectively\ + \ \"Software\"), by the number of users and the class of computer hardware for which the\ + \ corresponding fee has been paid.\n\n2. RESTRICTIONS Software is confidential and copyrighted.\ + \ Title to Software and all associated intellectual property rights is retained by Sun and/or\ + \ its licensors. Except as specifically authorized in any Supplemental License Terms, you\ + \ may not make copies of Software, other than a single copy of Software for archival purposes.\ + \ Unless enforcement is prohibited by applicable law, you may not modify, decompile, reverse\ + \ engineer Software. Software is not designed or licensed for use in on-line control of\ + \ aircraft, air traffic, aircraft navigation or aircraft communications; or in the design,\ + \ construction, operation or maintenance of any nuclear facility. You warrant that you will\ + \ not use Software for these purposes. You may not publish or provide the results of any\ + \ benchmark or comparison tests run on Software to any third party without the prior written\ + \ consent of Sun. No right, title or interest in or to any trademark, service mark, logo\ + \ or trade name of Sun or its licensors is granted under this Agreement.\n\n3. LIMITED WARRANTY.\ + \ Sun warrants to you that for a period of ninety (90) days from the date of purchase, as\ + \ evidenced by a copy of the receipt, the media on which Software is furnished (if any)\ + \ will be free of defects in materials and workmanship under normal use. Except for the\ + \ foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's entire liability\ + \ under this limited warranty will be at Sun';s option to replace Software media or refund\ + \ the fee paid for Software.\n\n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT,\ + \ ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED\ + \ WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE\ + \ DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\ + \n5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN\ + \ OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT,\ + \ CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY\ + \ OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN\ + \ IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability\ + \ to you, whether in contract, tort (including negligence), or otherwise, exceed the amount\ + \ paid by you for Software under this Agreement. The foregoing limitations will apply even\ + \ if the above stated warranty fails of its essential purpose.\n\n6. Termination. This Agreement\ + \ is effective until terminated. You may terminate this Agreement at any time by destroying\ + \ all copies of Software. This Agreement will terminate immediately without notice from\ + \ Sun if you fail to comply with any provision of this Agreement. Upon Termination, you\ + \ must destroy all copies of Software.\n\n7. Export Regulations. All Software and technical\ + \ data delivered under this Agreement are subject to US export control laws and may be subject\ + \ to export or import regulations in other countries. You agree to comply strictly with\ + \ all such laws and regulations and acknowledge that you have the responsibility to obtain\ + \ such licenses to export, re-export, or import as may be required after delivery to you.\n\ + \n8. U.S. Government Restricted Rights. Use, duplication, or disclosure by the U.S. Government\ + \ is subject to restrictions set forth in this Agreement and as provided in DFARS 227.7202-1\ + \ (a) and 227.7202-3(a) (1995), DFARS 252.227-7013 (c)(1)(ii)(Oct 1988), FAR 12.212 (a)\ + \ (1995), FAR 52.227-19 (June 1987), or FAR 52.227-14(ALT III) (June 1987), as applicable.\n\ + \n9. Governing Law. Any action related to this Agreement will be governed by California\ + \ law and controlling U.S. federal law. No choice of law rules of any jurisdiction will\ + \ apply.\n\n10. Severability. If any provision of this Agreement is held to be unenforceable,\ + \ This Agreement will remain in effect with the provision omitted, unless omission would\ + \ frustrate the intent of the parties, in which case this Agreement will immediately terminate.\n\ + \n11. Integration. This Agreement is the entire agreement between you and Sun relating to\ + \ its subject matter. It supersedes all prior or contemporaneous oral or written communications,\ + \ proposals, representations and warranties and prevails over any conflicting or additional\ + \ terms of any quote, order, acknowledgment, or other communication between the parties\ + \ relating to its subject matter during the term of this Agreement. No modification of this\ + \ Agreement will be binding, unless in writing and signed by an authorized representative\ + \ of each party.\n\nFor inquiries please contact: Sun Microsystems, Inc. 901 San Antonio\ + \ Road, Palo Alto, California 94303\n\nJAVATM COMMUNICATIONS API \nSUPPLEMENTAL LICENSE\ + \ TERMS\n\nThese supplemental terms (\"Supplement\") add to the terms of the Binary Code\ + \ License Agreement (\"Agreement\"). Capitalized terms not defined herein shall have the\ + \ same meanings ascribed to them in the Agreement. The Supplement terms shall supersede\ + \ any inconsistent or conflicting terms in the Agreement.\n\n1. License to Distribute. You\ + \ are granted a royalty-free right to reproduce and distribute the Software provided that\ + \ you: (i)distribute the Software complete and unmodified, only as part of, and for the\ + \ sole purpose of running, your Java applet or application (\"Program\") into which the\ + \ Software is incorporated; (ii) do not distribute additional software intended to replace\ + \ any component(s) of the Software; (iii) do not remove or alter any proprietary legends\ + \ or notices contained in the Software; (iv) only distribute the Program subject to a license\ + \ agreement that protects Sun’s interests consistent with the terms contained herein; (v)\ + \ may not create, or authorize your licensees to create additional classes, interfaces,\ + \ or subpackages that are contained in the \"java\", \"javax\" or \"sun\" packages or similar\ + \ as specified by Sun in any class file naming convention; and (vi) agree to indemnify,\ + \ hold harmless, and defend Sun and its licensors from and against any claims or lawsuits,\ + \ including attorneys fees, that arise or result from the use or distribution of the Program.\n\ + \n2. Trademarks and Logos. This Agreement does not authorize Licensee to use any Sun name,\ + \ trademark or logo. Licensee acknowledges as between it and Sun that Sun owns the Java\ + \ trademark and all Java-related trademarks, logos and icons including the Coffee Cup and\ + \ Duke (\";Java Marks\") and agrees to comply with the Java Trademark Guidelines at http://java.sun.com/trademarks.html\n\ + \n3. High Risk Activities. Notwithstanding Section 2, with respect to high risk activities,\ + \ the following language shall apply: the Software is not designed or intended for use in\ + \ on-line control of aircraft, air traffic, aircraft navigation or aircraft communications;\ + \ or in the design, construction, operation or maintenance of any nuclear facility. Sun\ + \ disclaims any express or implied warranty of fitness for such uses." json: sun-communications-api.json - yml: sun-communications-api.yml + yaml: sun-communications-api.yml html: sun-communications-api.html - text: sun-communications-api.LICENSE + license: sun-communications-api.LICENSE - license_key: sun-ejb-spec-2.1 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-ejb-spec-2.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Enterprise JavaBeansTM Specification (\"Specification\") \nVersion: 2.1 \nStatus: FCS\ + \ \nRelease: November 24, 2003\n\nCopyright 2003 Sun Microsystems, Inc.\n4150 Network Circle,\ + \ Santa Clara, California 95054, U.S.A \nAll rights reserved.\n\nNOTICE; LIMITED LICENSE\ + \ GRANTS\n\nSun Microsystems, Inc. (\"Sun\") hereby grants you a fully-paid, non-exclusive,\ + \ non-transferable, worldwide, limited license (without the right to sublicense), under\ + \ the Sun's applicable intellectual property rights to view, download, use and reproduce\ + \ the Specification only for the purpose of internal evaluation, which shall be understood\ + \ to include developing applications intended to run on an implementation of the Specification\ + \ provided that such applications do not themselves implement any portion(s) of the Specification.\n\ + \nSun also grants you a perpetual, non-exclusive, worldwide, fully paid-up, royalty free,\ + \ limited license (without the right to sublicense) under any applicable copyrights or patent\ + \ rights it may have in the Specification to create and/or distribute an Independent Implementation\ + \ of the Specification that: (i) fully implements the Spec(s) including all its required\ + \ interfaces and functionality; (ii) does not modify, subset, superset or otherwise extend\ + \ the Licensor Name Space, or include any public or protected packages, classes, Java interfaces,\ + \ fields or methods within the Licensor Name Space other than those required/authorized\ + \ by the Specification or Specifications being implemented; and (iii) passes the TCK (including\ + \ satisfying the requirements of the applicable TCK Users Guide) for such Specification.\ + \ The foregoing license is expressly conditioned on your not acting outside its scope. No\ + \ license is granted hereunder for any other purpose.\n\nYou need not include limitations\ + \ (i)-(iii) from the previous paragraph or any other particular \"pass through\" requirements\ + \ in any license You grant concerning the use of your Independent Implementation or products\ + \ derived from it. However, except with respect to implementations of the Specification\ + \ (and products derived from them) that satisfy limitations (i)-(iii) from the previous\ + \ paragraph, You may neither: (a) grant or otherwise pass through to your licensees any\ + \ licenses under Sun's applicable intellectual property rights; nor (b) authorize your licensees\ + \ to make any claims concerning their implementation's compliance with the Spec in question.\n\ + \nFor the purposes of this Agreement: \"Independent Implementation\" shall mean an implementation\ + \ of the Specification that neither derives from any of Sun's source code or binary code\ + \ materials nor, except with an appropriate and separate license from Sun, includes any\ + \ of Sun's source code or binary code materials; and \"Licensor Name Space\" shall mean\ + \ the public class or interface declarations whose names begin with \"java\", \"javax\"\ + , \"com.sun\" or their equivalents in any subsequent naming convention adopted by Sun through\ + \ the Java Community Process, or any recognized successors or replacements thereof.\n\n\ + This Agreement will terminate immediately without notice from Sun if you fail to comply\ + \ with any material provision of or act outside the scope of the licenses granted above.\n\ + \nTRADEMARKS\n\nNo right, title, or interest in or to any trademarks, service marks, or\ + \ trade names of Sun or Sun's licensors is granted hereunder. Sun, Sun Microsystems, the\ + \ Sun logo, Java, the Java Coffee Cup logo, EJB, Enterprise JavaBeans, and JavaBeans are\ + \ trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries.\n\ + \nDISCLAIMER OF WARRANTIES\n\nTHE SPECIFICATION IS PROVIDED \"AS IS\". SUN MAKES NO REPRESENTATIONS\ + \ OR WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF\ + \ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, THAT THE CONTENTS\ + \ OF THE SPECIFICATION ARE SUITABLE FOR ANY PURPOSE OR THAT ANY PRACTICE OR IMPLEMENTATION\ + \ OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADE SECRETS\ + \ OR OTHER RIGHTS. This document does not represent any commitment to release or implement\ + \ any portion of the Specification in any product.\n\nTHE SPECIFICATION COULD INCLUDE TECHNICAL\ + \ INACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION\ + \ THEREIN; THESE CHANGES WILL BE INCORPORATED INTO NEW VERSIONS OF THE SPECIFICATION, IF\ + \ ANY. SUN MAY MAKE IMPROVEMENTS AND/OR CHANGES TO THE PRODUCT(S) AND/OR THE PROGRAM(S)\ + \ DESCRIBED IN THE SPECIFICATION AT ANY TIME. Any use of such changes in the Specification\ + \ will be governed by the then-current license for the applicable version of the Specification.\n\ + \nLIMITATION OF LIABILITY\n\nTO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR\ + \ ITS LICENSORS BE LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT LIMITATION, LOST REVENUE, PROFITS\ + \ OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER\ + \ CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO ANY FURNISHING,\ + \ PRACTICING, MODIFYING OR ANY USE OF THE SPECIFICATION, EVEN IF SUN AND/OR ITS LICENSORS\ + \ HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nYou will indemnify, hold harmless,\ + \ and defend Sun and its licensors from any claims arising or resulting from: (i) your use\ + \ of the Specification; (ii) the use or distribution of your Java application, applet and/or\ + \ clean room implementation; and/or (iii) any claims that later versions or releases of\ + \ any Specification furnished to you are incompatible with the Specification provided to\ + \ you under this license.\n\nRESTRICTED RIGHTS LEGEND\n\nU.S. Government: If this Specification\ + \ is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime\ + \ contractor or subcontractor (at any tier), then the Government's rights in the Specification\ + \ and accompanying documentation shall be only as set forth in this license; this is in\ + \ accordance with 48 C.F.R. 227.7201 through 227.7202-4 (for Department of Defense (DoD)\ + \ acquisitions) and with 48 C.F.R. 2.101 and 12.212 (for non-DoD acquisitions).\n\nREPORT\n\ + \nYou may wish to report any ambiguities, inconsistencies or inaccuracies you may find in\ + \ connection with your use of the Specification (\"Feedback\"). To the extent that you provide\ + \ Sun with any Feedback, you hereby: (i) agree that such Feedback is provided on a non-proprietary\ + \ and non-confidential basis, and (ii) grant Sun a perpetual, non-exclusive, worldwide,\ + \ fully paid- up, irrevocable license, with the right to sublicense through multiple levels\ + \ of sublicensees, to incorporate, disclose, and use without limitation the Feedback for\ + \ any purpose related to the Specification and future versions, implementations, and test\ + \ suites thereof.\n\n(LFI#135809/Form ID#011801)" json: sun-ejb-spec-2.1.json - yml: sun-ejb-spec-2.1.yml + yaml: sun-ejb-spec-2.1.yml html: sun-ejb-spec-2.1.html - text: sun-ejb-spec-2.1.LICENSE + license: sun-ejb-spec-2.1.LICENSE - license_key: sun-ejb-spec-3.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-ejb-spec-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Specification: JSR-000220 Enterprise JavaBeans v.3.0 (\"Specification\"\nVersion: 3.0\ + \ \nStatus: Final Release \nRelease: 8 May 2006\n\nCopyright 2006 SUN MICROSYSTEMS, INC.\ + \ \n4150 Network Circle, Santa Clara, California 95054, U.S.A \nAll rights reserved. \n\n\ + LIMITED LICENSE GRANTS\n\n1. License for Evaluation Purposes. Sun hereby grants you a fully-\n\ + paid, non-exclusive, non-transferable, worldwide, limited license\n(without the right to\ + \ sublicense), under Sun’s applicable intellectual\nproperty rights to view, download, use\ + \ and reproduce the Specification\nonly for the purpose of internal evaluation. This includes\ + \ (i)\ndeveloping applications intended to run on an implementation of the\nSpecification,\ + \ provided that such applications do not themselves\nimplement any portion(s) of the Specification,\ + \ and (ii) discussing the\nSpecification with any third party; and (iii) excerpting brief\ + \ portions\nof the Specification in oral or written communications which discuss the\nSpecification\ + \ provided that such excerpts do not in the aggregate\nconstitute a significant portion\ + \ of the Specification.\n\n2. License for the Distribution of Compliant Implementations.\ + \ Sun also\ngrants you a perpetual, nonexclusive, non-transferable, worldwide, fully\npaid-up,\ + \ royalty free, limited license (without the right to sublicense)\nunder any applicable\ + \ copyrights or, subject to the provisions of\nsubsection 4 below, patent rights it may\ + \ have covering the Specification\nto create and/or distribute an Independent Implementation\ + \ of the\nSpecification that: (a) fully implements the Specification including all\nits\ + \ required interfaces and functionality; (b) does not modify, subset,\nsuperset or otherwise\ + \ extend the Licensor Name Space, or include any\npublic or protected packages, classes,\ + \ Java interfaces, fields or\nmethods within the Licensor Name Space other than those\n\ + required/authorized by the Specification or Specifications being\nimplemented; and (c) passes\ + \ the Technology Compatibility Kit (including\nsatisfying the requirements of the applicable\ + \ TCK Users Guide) for such\nSpecification (\"Compliant Implementation\"). In addition,\ + \ the foregoing\nlicense is expressly conditioned on your not acting outside its scope.\n\ + No license is granted hereunder for any other purpose (including, for\nexample, modifying\ + \ the Specification, other than to the extent of your\nfair use rights, or distributing\ + \ the Specification to third parties).\nAlso, no right, title, or interest in or to any\ + \ trademarks, service\nmarks, or trade names of Sun or Sun’s licensors is granted hereunder.\n\ + \nJava, and Java-related logos, marks and names are trademarks or\nregistered trademarks\ + \ of Sun Microsystems, Inc. in the U.S. and other\ncountries.\n\n3. Pass-through Conditions.\ + \ You need not include limitations (a)-(c)\nfrom the previous paragraph or any other particular\ + \ \"pass through\"\nrequirements in any license You grant concerning the use of your\nIndependent\ + \ Implementation or products derived from it. However, except\nwith respect to Independent\ + \ Implementations and products derived from\nthem) that satisfy limitations (a)-(c) from\ + \ the previous paragraph, You\nmay neither: (a) grant or otherwise pass through to your\ + \ licensees any\nlicenses under Sun’s applicable intellectual property rights; nor (b)\n\ + authorize your licensees to make any claims concerning their\nimplementation’s compliance\ + \ with the Specification in question.\n\n4. Reciprocity Concerning Patent Licenses.\n\n\ + a. With respect to any patent claims covered by the license granted\nunder subparagraph\ + \ 2 above that would be infringed by all technically\nfeasible implementations of the Specification,\ + \ such license is\nconditioned upon your offering on fair, reasonable and non-\ndiscriminatory\ + \ terms, to any party seeking it from You, a perpetual,\nnon-exclusive, non-transferable,\ + \ worldwide license under Your patent\nrights which are or would be infringed by all technically\ + \ feasible\nimplementations of the Specification to develop, distribute and use a\nCompliant\ + \ Implementation.\n\nb With respect to any patent claims owned by Sun and covered by the\n\ + license granted under subparagraph 2, whether or not their infringement\ncan be avoided\ + \ in a technically feasible manner when implementing the\nSpecification, such license shall\ + \ terminate with respect to such claims\nif You initiate a claim against Sun that it has,\ + \ in the course of\nperforming its responsibilities as the Specification Lead, induced any\n\ + other entity to infringe Your patent rights.\n\nc Also with respect to any patent claims\ + \ owned by Sun and covered by the\nlicense granted under subparagraph 2 above, where the\ + \ infringement of\nsuch claims can be avoided in a technically feasible manner when\nimplementing\ + \ the Specification such license, with respect to such\nclaims, shall terminate if You initiate\ + \ a claim against Sun that its\nmaking, having made, using, offering to sell, selling or\ + \ importing a\nCompliant Implementation infringes Your patent rights.\n\n5. Definitions.\ + \ For the purposes of this Agreement: \"Independent\nImplementation\" shall mean an implementation\ + \ of the Specification that\nneither derives from any of Sun’s source code or binary code\ + \ materials\nnor, except with an appropriate and separate license from Sun, includes\nany\ + \ of Sun’s source code or binary code materials; \"Licensor Name Space\"\nshall mean the\ + \ public class or interface declarations whose names begin\nwith \"java\", \"javax\", \"\ + com.sun\" or their equivalents in any subsequent\nnaming convention adopted by Sun through\ + \ the Java Community Process, or\nany recognized successors or replacements thereof; and\ + \ \"Technology\nCompatibility Kit\" or \"TCK\" shall mean the test suite and accompanying\n\ + TCK User’s Guide provided by Sun which corresponds to the Specification\nand that was available\ + \ either (i) from Sun 120 days before the first\nrelease of Your Independent Implementation\ + \ that allows its use for\ncommercial purposes, or (ii) more recently than 120 days from\ + \ such\nrelease but against which You elect to test Your implementation of the\nSpecification.\n\ + \nThis Agreement will terminate immediately without notice from Sun if you\nbreach the Agreement\ + \ or act outside the scope of the licenses granted\nabove.\n\nDISCLAIMER OF WARRANTIES\n\ + \nTHE SPECIFICATION IS PROVIDED \"AS IS\". SUN MAKES NO REPRESENTATIONS OR\nWARRANTIES,\ + \ EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO,\nWARRANTIES OF MERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR PURPOSE,\nNONINFRINGEMENT (INCLUDING AS A CONSEQUENCE OF ANY\ + \ PRACTICE OR\nIMPLEMENTATION OF THE SPECIFICATION), OR THAT THE CONTENTS OF THE\nSPECIFICATION\ + \ ARE SUITABLE FOR ANY PURPOSE. This document does not\nrepresent any commitment to release\ + \ or implement any portion of the\nSpecification in any product. In addition, the Specification\ + \ could\ninclude technical inaccuracies or typographical errors.\n\nLIMITATION OF LIABILITY\n\ + \nTO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS\nLICENSORS BE LIABLE\ + \ FOR ANY DAMAGES, INCLUDING WITHOUT LIMITATION, LOST\nREVENUE, PROFITS OR DATA, OR FOR\ + \ SPECIAL, INDIRECT, CONSEQUENTIAL,\nINCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND\ + \ REGARDLESS OF THE\nTHEORY OF LIABILITY, ARISING OUT OF OR RELATED IN ANY WAY TO YOUR\n\ + HAVING, IMPLEMENTING OR OTHERWISE USING THE SPECIFICATION, EVEN IF SUN\nAND/OR ITS LICENSORS\ + \ HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\nYou will indemnify, hold harmless,\ + \ and defend Sun and its licensors from\nany claims arising or resulting from: (i) your\ + \ use of the Specification;\n(ii) the use or distribution of your Java application, applet\ + \ and/or\nimplementation; and/or (iii) any claims that later versions or releases\nof any\ + \ Specification furnished to you are incompatible with the\nSpecification provided to you\ + \ under this license.\n\nRESTRICTED RIGHTS LEGEND\n\nU.S. Government: If this Specification\ + \ is being acquired by or on behalf\nof the U.S. Government or by a U.S. Government prime\ + \ contractor or\nsubcontractor (at any tier), then the Government’s rights in the\nSoftware\ + \ and accompanying documentation shall be only as set forth in\nthis license; this is in\ + \ accordance with 48 C.F.R. 227.7201 through\n227.7202-4 (for Department of Defense (DoD)\ + \ acquisitions) and with 48\nC.F.R. 2.101 and 12.212 (for non-DoD acquisitions).\n\nREPORT\n\ + \nIf you provide Sun with any comments or suggestions concerning the\nSpecification (\"\ + Feedback\"), you hereby: (i) agree that such Feedback is\nprovided on a non-proprietary\ + \ and non-confidential basis, and (ii) grant\nSun a perpetual, non-exclusive, worldwide,\ + \ fully paid-up, irrevocable\nlicense, with the right to sublicense through multiple levels\ + \ of\nsublicensees, to incorporate, disclose, and use without limitation the\nFeedback for\ + \ any purpose.\n\nGENERAL TERMS\n\nAny action related to this Agreement will be governed\ + \ by California law\nand controlling U.S. federal law. The U.N. Convention for the\nInternational\ + \ Sale of Goods and the choice of law rules of any\njurisdiction will not apply.\n\nThe\ + \ Specification is subject to U.S. export control laws and may be\nsubject to export or\ + \ import regulations in other countries. Licensee\nagrees to comply strictly with all such\ + \ laws and regulations and\nacknowledges that it has the responsibility to obtain such licenses\ + \ to\nexport, re-export or import as may be required after delivery to\nLicensee.\n\nThis\ + \ Agreement is the parties’ entire agreement relating to its subject\nmatter. It supersedes\ + \ all prior or contemporaneous oral or written\ncommunications, proposals, conditions, representations\ + \ and warranties\nand prevails over any conflicting or additional terms of any quote,\n\ + order, acknowledgment, or other communication between the parties\nrelating to its subject\ + \ matter during the term of this Agreement. No\nmodification to this Agreement will be binding,\ + \ unless in writing and\nsigned by an authorized representative of each party.\n\nRev. April,\ + \ 2006 Sun/Final/Full" json: sun-ejb-spec-3.0.json - yml: sun-ejb-spec-3.0.yml + yaml: sun-ejb-spec-3.0.yml html: sun-ejb-spec-3.0.html - text: sun-ejb-spec-3.0.LICENSE + license: sun-ejb-spec-3.0.LICENSE - license_key: sun-entitlement-03-15 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-entitlement-03-15 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "License Agreement for {ProductName}\nSun Microsystems, Inc. (\"Sun\") ENTITLEMENT for\ + \ SOFTWARE\n\nLicensee/Company: Entity receiving Software. \nEffective Date: Date of delivery\ + \ of the Software to You. \nSoftware: {ProductName}\nLicense Term: Perpetual (subject to\ + \ termination under the SLA) \nLicensed Unit: Software Copy \nLicensed unit Count: Unlimited\ + \ \n\nPermitted Uses:\n\n1. You may reproduce and use the Software for Your own Individual,\ + \ Commercial, or Research and Instructional Use for the purposes of designing, developing,\ + \ testing, and running Your applets and application (\"Programs\").\n\n2. Subject to the\ + \ terms and conditions of this Agreement and restrictions and exceptions set forth in the\ + \ Software's documentation, You may reproduce and distribute portions of Software identified\ + \ as a redistributable in the documentation (\"Redistributable\"), provided that:\n\n(a)\ + \ You distribute Redistributable complete and unmodified and only bundled as part of Your\ + \ Programs,\n\n(b) Your Programs add significant and primary functionality to the Redistributable,\ + \ (c) You distribute Redistributable for the sole purpose of running Your Programs,\n\n\ + (d) You do not distribute additional software intended to replace any component(s) of the\ + \ Redistributable,\n\n(e) You do not remove or alter any proprietary legends or notices\ + \ contained in or on the Redistributable.\n\n(f) You only distribute the Redistributable\ + \ subject to a license agreement that protects Sun's interests consistent with the terms\ + \ contained in this Agreement, and\n\n(g) You agree to defend and indemnify Sun and its\ + \ licensors from and against any damages, costs, liabilities, settlement amounts and/or\ + \ expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or\ + \ action by any third party that arises or results from the use or distribution of any and\ + \ all Programs and/or Redistributable.\n\n3. Java Technology Restrictions. You may not create,\ + \ modify, or change the behavior of, or authorize your licensees to create, modify, or change\ + \ the behavior of, classes, interfaces, or subpackages that are in any way identified as\ + \ \"java\", \"javax\", \"sun\" or similar convention as specified by Sun in any naming convention\ + \ designation.\n\nSun Microsystems, Inc. (\"Sun\") SOFTWARE LICENSE AGREEMENT \n\n1. Definitions.\n\ + \n(a) \"Entitlement\" means the collective set of applicable documents authorized by Sun\ + \ evidencing your obligation to pay associated fees (if any) for the license, associated\ + \ Services, and the authorized scope of use of Software under this Agreement.\n\n(b) \"\ + Licensed Unit\" means the unit of measure by which your use of Software and/or Service is\ + \ licensed, as described in your Entitlement.\n\n(c) \"Permitted Use\" means the licensed\ + \ Software use(s) authorized in this Agreement as specified in your Entitlement. The Permitted\ + \ Use for any bundled Sun software not specified in your Entitlement will be evaluation\ + \ use as provided in Section 3.\n\n(d) \"Service\" means the service(s) that Sun or its\ + \ delegate will provide, if any, as selected in your Entitlement and as further described\ + \ in the applicable service listings at www.sun.com/service/servicelist.\n\n(e) \"Software\"\ + \ means the Sun software described in your Entitlement. Also, certain software may be included\ + \ for evaluation use under Section 3.\n\n(f) \"You\" and \"Your\" means the individual or\ + \ legal entity specified in the Entitlement, or for evaluation purposes, the entity performing\ + \ the evaluation.\n\n2. License Grant and Entitlement.\n\nSubject to the terms of your Entitlement,\ + \ Sun grants you a nonexclusive, nontransferable limited license to use Software for its\ + \ Permitted Use for the license term. Your Entitlement will specify (a) Software licensed,\ + \ (b) the Permitted Use, (c) the license term, and (d) the Licensed Units.\n\nAdditionally,\ + \ if your Entitlement includes Services, then it will also specify the (e) Service and (f)\ + \ service term.\n\nIf your rights to Software or Services are limited in duration and the\ + \ date such rights begin is other than the purchase date, your Entitlement will provide\ + \ that beginning date(s).\n\nThe Entitlement may be delivered to you in various ways depending\ + \ on the manner in which you obtain Software and Services, for example, the Entitlement\ + \ may be provided in your receipt, invoice or your contract with Sun or authorized Sun reseller.\ + \ It may also be in electronic format if you download Software.\n\n3. Permitted Use.\n\n\ + As selected in your Entitlement, one or more of the following Permitted Uses will apply\ + \ to your use of Software. Unless you have an Entitlement that expressly permits it, you\ + \ may not use Software for any of the other Permitted Uses. If you don't have an Entitlement,\ + \ or if your Entitlement doesn't cover additional software delivered to you, then such software\ + \ is for your Evaluation Use.\n\n(a) Evaluation Use. You may evaluate Software internally\ + \ for a period of 90 days from your first use.\n\n(b) Research and Instructional Use. You\ + \ may use Software internally to design, develop and test, and also to provide instruction\ + \ on such uses.\n\n(c) Individual Use. You may use Software internally for personal, individual\ + \ use. (d) Commercial Use. You may use Software internally for your own commercial purposes.\n\ + \n(e) Service Provider Use. You may make Software functionality accessible (but not by providing\ + \ Software itself or through outsourcing services) to your end users in an extranet deployment,\ + \ but not to your affiliated companies or to government agencies.\n\n4. Licensed Units.\n\ + \nYour Permitted Use is limited to the number of Licensed Units stated in your Entitlement.\ + \ If you require additional Licensed Units, you will need additional Entitlement(s).\n\n\ + 5. Restrictions.\n\n(a) The copies of Software provided to you under this Agreement are\ + \ licensed, not sold, to you by Sun. Sun reserves all rights not expressly granted. (b)\ + \ You may make a single archival copy of Software, but otherwise may not copy, modify, or\ + \ distribute Software. However if the Sun documentation accompanying Software lists specific\ + \ portions of Software, such as header files, class libraries, reference source code, and/or\ + \ redistributable files, that may be handled differently, you may do so only as provided\ + \ in the Sun documentation. (c) You may not rent, lease, lend or encumber Software. (d)\ + \ Unless enforcement is prohibited by applicable law, you may not decompile, or reverse\ + \ engineer Software. (e) The terms and conditions of this Agreement will apply to any Software\ + \ updates, provided to you at Sun's discretion, that replace and/or supplement the original\ + \ Software, unless such update contains a separate license. (f) You may not publish or provide\ + \ the results of any benchmark or comparison tests run on Software to any third party without\ + \ the prior written consent of Sun. (g) Software is confidential and copyrighted. (h) Unless\ + \ otherwise specified, if Software is delivered with embedded or bundled software that enables\ + \ functionality of Software, you may not use such software on a stand-alone basis or use\ + \ any portion of such software to interoperate with any program(s) other than Software.\ + \ (i) Software may contain programs that perform automated collection of system data and/or\ + \ automated software updating services. System data collected through such programs may\ + \ be used by Sun, its subcontractors, and its service delivery partners for the purpose\ + \ of providing you with remote system services and/or improving Sun's software and systems.\ + \ (j) Software is not designed, licensed or intended for use in the design, construction,\ + \ operation or maintenance of any nuclear facility and Sun and its licensors disclaim any\ + \ express or implied warranty of fitness for such uses. (k) No right, title or interest\ + \ in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted\ + \ under this Agreement.\n\n6. Term and Termination.\n\nThe license and service term are\ + \ set forth in your Entitlement(s). Your rights under this Agreement will terminate immediately\ + \ without notice from Sun if you materially breach it or take any action in derogation of\ + \ Sun's and/or its licensors' rights to Software. Sun may terminate this Agreement should\ + \ any Software become, or in Sun's reasonable opinion likely to become, the subject of a\ + \ claim of intellectual property infringement or trade secret misappropriation. Upon termination,\ + \ you will cease use of, and destroy, Software and confirm compliance in writing to Sun.\ + \ Sections 1, 5, 6, 7, and 9-15 will survive termination of the Agreement.\n\n7. Java Compatibility\ + \ and Open Source.\n\nSoftware may contain Java technology. You may not create additional\ + \ classes to, or modifications of, the Java technology, except under compatibility requirements\ + \ available under a separate agreement available at www.java.net.\n\nSun supports and benefits\ + \ from the global community of open source developers, and thanks the community for its\ + \ important contributions and open standards-based technology, which Sun has adopted into\ + \ many of its products.\n\nPlease note that portions of Software may be provided with notices\ + \ and open source licenses from such communities and third parties that govern the use of\ + \ those portions, and any licenses granted hereunder do not alter any rights and obligations\ + \ you may have under such open source licenses, however, the disclaimer of warranty and\ + \ limitation of liability provisions in this Agreement will apply to all Software in this\ + \ distribution.\n\n8. Limited Warranty.\n\nSun warrants to you that for a period of 90 days\ + \ from the date of purchase, as evidenced by a copy of the receipt, the media on which Software\ + \ is furnished (if any) will be free of defects in materials and workmanship under normal\ + \ use. Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and\ + \ Sun's entire liability under this limited warranty will be at Sun's option to replace\ + \ Software media or refund the fee paid for Software. Some states do not allow limitations\ + \ on certain implied warranties, so the above may not apply to you. This limited warranty\ + \ gives you specific legal rights. You may have others, which vary from state to state.\n\ + \n9. Disclaimer of Warranty.\n\nUNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED\ + \ CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT\ + \ THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.\n\n10. Limitation of Liability.\n\ + \nTO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR\ + \ ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL\ + \ OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT\ + \ OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in\ + \ contract, tort (including negligence), or otherwise, exceed the amount paid by you for\ + \ Software under this Agreement. The foregoing limitations will apply even if the above\ + \ stated warranty fails of its essential purpose. Some states do not allow the exclusion\ + \ of incidental or consequential damages, so some of the terms above may not be applicable\ + \ to you.\n\n11. Export Regulations.\n\nAll Software, documents, technical data, and any\ + \ other materials delivered under this Agreement are subject to U.S. export control laws\ + \ and may be subject to export or import regulations in other countries. You agree to comply\ + \ strictly with these laws and regulations and acknowledge that you have the responsibility\ + \ to obtain any licenses to export, re-export, or import as may be required after delivery\ + \ to you.\n\n12. U.S. Government Restricted Rights.\n\nIf Software is being acquired by\ + \ or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor\ + \ (at any tier), then the Government's rights in Software and accompanying documentation\ + \ will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201\ + \ through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101\ + \ and 12.212 (for non-DOD acquisitions).\n\n13. Governing Law.\n\nAny action related to\ + \ this Agreement will be governed by California law and controlling U.S. federal law. No\ + \ choice of law rules of any jurisdiction will apply.\n\n14. Severability.\n\nIf any provision\ + \ of this Agreement is held to be unenforceable, this Agreement will remain in effect with\ + \ the provision omitted, unless omission would frustrate the intent of the parties, in which\ + \ case this Agreement will immediately terminate.\n\n15. Integration.\n\nThis Agreement,\ + \ including any terms contained in your Entitlement, is the entire agreement between you\ + \ and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral\ + \ or written communications, proposals, representations and warranties and prevails over\ + \ any conflicting or additional terms of any quote, order, acknowledgment, or other communication\ + \ between the parties relating to its subject matter during the term of this Agreement.\ + \ No modification of this Agreement will be binding, unless in writing and signed byan authorized\ + \ representative of each party.\n\nPlease contact Sun Microsystems, Inc. 4150 Network Circle,\ + \ Santa Clara, California 95054 if you have questions." json: sun-entitlement-03-15.json - yml: sun-entitlement-03-15.yml + yaml: sun-entitlement-03-15.yml html: sun-entitlement-03-15.html - text: sun-entitlement-03-15.LICENSE + license: sun-entitlement-03-15.LICENSE - license_key: sun-entitlement-jaf + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-entitlement-jaf other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "A. Sun Microsystems, Inc. (\"Sun\") ENTITLEMENT for SOFTWARE\n\nLicensee/Company: Entity\ + \ receiving Software.\nEffective Date: Date of delivery of the Software to You.\n\nSoftware:\ + \ {Software Product Name}\nLicense Term: Perpetual (subject to termination under the SLA).\n\ + Licensed Unit: Software Copy.\nLicensed unit Count: Unlimited.\n\nPermitted Uses:\n\n1.\ + \ You may reproduce and use the Software for Individual, Commercial,\nor Research and Instructional\ + \ Use for the purposes of designing,\ndeveloping, testing, and running Your applets and\n\ + application(\"Programs\").\n\n2. Subject to the terms and conditions of this Agreement and\n\ + restrictions and exceptions set forth in the Software's documentation,\nYou may reproduce\ + \ and distribute portions of Software identified as a\nredistributable in the documentation\ + \ (\"Redistributable\"), provided\nthat:\n\n(a) you distribute Redistributable complete\ + \ and unmodified and only\nbundled as part of Your Programs,\n\n(b) your Programs add significant\ + \ and primary functionality to the\nRedistributable,\n\n(c) you distribute Redistributable\ + \ for the sole purpose of running your\nPrograms,\n\n(d) you do not distribute additional\ + \ software intended to replace any\ncomponent(s) of the Redistributable,\n\n(e) you do not\ + \ remove or alter any proprietary legends or notices\ncontained in or on the Redistributable.\n\ + \n(f) you only distribute the Redistributable subject to a license\nagreement that protects\ + \ Sun's interests consistent with the terms\ncontained in this Agreement, and\n\n(g) you\ + \ agree to defend and indemnify Sun and its licensors from and\nagainst any damages, costs,\ + \ liabilities, settlement amounts and/or\nexpenses (including attorneys' fees) incurred\ + \ in connection with any\nclaim, lawsuit or action by any third party that arises or results\ + \ from\nthe use or distribution of any and all Programs and/or\nRedistributable.\n\n3. Java\ + \ Technology Restrictions. You may not create, modify, or change\nthe behavior of, or authorize\ + \ your licensees to create, modify, or\nchange the behavior of, classes, interfaces, or\ + \ subpackages that are in\nany way identified as \"java\", \"javax\", \"sun\" or similar\ + \ convention as\nspecified by Sun in any naming convention designation.\n\nB. Sun Microsystems,\ + \ Inc. (\"Sun\")\nSOFTWARE LICENSE AGREEMENT\n\nREAD THE TERMS OF THIS AGREEMENT (\"AGREEMENT\"\ + ) CAREFULLY BEFORE OPENING\nSOFTWARE MEDIA PACKAGE. BY OPENING SOFTWARE MEDIA PACKAGE, YOU\ + \ AGREE TO\nTHE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING SOFTWARE\nELECTRONICALLY,\ + \ INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING\nTHE \"ACCEPT\" BUTTON AT THE END\ + \ OF THIS AGREEMENT. IF YOU DO NOT AGREE\nTO ALL OF THE TERMS, PROMPTLY RETURN THE UNUSED\ + \ SOFTWARE TO YOUR PLACE\nOF PURCHASE FOR A REFUND OR, IF SOFTWARE IS ACCESSED ELECTRONICALLY,\n\ + SELECT THE \"DECLINE\" (OR \"EXIT\") BUTTON AT THE END OF THIS AGREEMENT.\nIF YOU HAVE SEPARATELY\ + \ AGREED TO LICENSE TERMS (\"MASTER TERMS\") FOR\nYOUR LICENSE TO THIS SOFTWARE, THEN SECTIONS\ + \ 1-5 OF THIS AGREEMENT\n(\"SUPPLEMENTAL LICENSE TERMS\") SHALL SUPPLEMENT AND SUPERSEDE\ + \ THE\nMASTER TERMS IN RELATION TO THIS SOFTWARE.\n\n1. Definitions.\n\n(a) \"\ + Entitlement\" means the collective set of applicable documents\nauthorized by Sun evidencing\ + \ your obligation to pay associated fees (if\nany) for the license, associated Services,\ + \ and the authorized scope of\nuse of Software under this Agreement.\n\n(b) \"Licensed\ + \ Unit\" means the unit of measure by which your use of\nSoftware and/or Service is licensed,\ + \ as described in your Entitlement.\n\n(c) \"Permitted Use\" means the licensed Software\ + \ use(s) authorized\nin this Agreement as specified in your Entitlement. The Permitted Use\n\ + for any bundled Sun software not specified in your Entitlement will be\nevaluation use as\ + \ provided in Section 3.\n\n(d) \"Service\" means the service(s) that Sun or its delegate\ + \ will\nprovide, if any, as selected in your Entitlement and as further\ndescribed in the\ + \ applicable service listings at\nwww.sun.com/service/servicelist.\n\n(e) \"Software\"\ + \ means the Sun software described in your\nEntitlement. Also, certain software may be included\ + \ for evaluation use\nunder Section 3.\n\n(f) \"You\" and \"Your\" means the individual\ + \ or legal entity specified\nin the Entitlement, or for evaluation purposes, the entity\ + \ performing\nthe evaluation.\n\n2. License Grant and Entitlement.\n\nSubject to the\ + \ terms of your Entitlement, Sun grants you a\nnonexclusive, nontransferable limited license\ + \ to use Software for its\nPermitted Use for the license term. Your Entitlement will specify\ + \ (a)\nSoftware licensed, (b) the Permitted Use, (c) the license term, and (d)\nthe Licensed\ + \ Units.\n\nAdditionally, if your Entitlement includes Services, then it will also\nspecify\ + \ the (e) Service and (f) service term.\n\nIf your rights to Software or Services are limited\ + \ in duration and the\ndate such rights begin is other than the purchase date, your\nEntitlement\ + \ will provide that beginning date(s).\n\nThe Entitlement may be delivered to you in various\ + \ ways depending on\nthe manner in which you obtain Software and Services, for example,\ + \ the\nEntitlement may be provided in your receipt, invoice or your contract\nwith Sun or\ + \ authorized Sun reseller. It may also be in electronic\nformat if you download Software.\n\ + \n3. Permitted Use.\n\nAs selected in your Entitlement, one or more of the following\ + \ Permitted\nUses will apply to your use of Software. Unless you have an Entitlement\nthat\ + \ expressly permits it, you may not use Software for any of the\nother Permitted Uses. If\ + \ you don't have an Entitlement, or if your\nEntitlement doesn't cover additional software\ + \ delivered to you, then\nsuch software is for your Evaluation Use.\n\n(a) Evaluation Use.\ + \ You may evaluate Software internally for a period\nof 90 days from your first use.\n\n\ + (b) Research and Instructional Use. You may use Software internally to\ndesign, develop\ + \ and test, and also to provide instruction on such\nuses.\n\n(c) Individual Use. You may\ + \ use Software internally for personal,\nindividual use.\n\n(d) Commercial Use. You may\ + \ use Software internally for your own\ncommercial purposes.\n\n(e) Service Provider Use.\ + \ You may make Software functionality\naccessible (but not by providing Software itself\ + \ or through outsourcing\nservices) to your end users in an extranet deployment, but not\ + \ to your\naffiliated companies or to government agencies.\n\n4. Licensed Units.\n\n\ + Your Permitted Use is limited to the number of Licensed Units stated in\nyour Entitlement.\ + \ If you require additional Licensed Units, you will\nneed additional Entitlement(s).\n\n\ + 5.\tRestrictions.\n\n(a) The copies of Software provided to you under this Agreement are\n\ + licensed, not sold, to you by Sun. Sun reserves all rights not\nexpressly granted. (b) You\ + \ may make a single archival copy of Software,\nbut otherwise may not copy, modify, or distribute\ + \ Software. However if\nthe Sun documentation accompanying Software lists specific portions\ + \ of\nSoftware, such as header files, class libraries, reference source code,\nand/or redistributable\ + \ files, that may be handled differently, you may\ndo so only as provided in the Sun documentation.\ + \ (c) You may not rent,\nlease, lend or encumber Software. (d) Unless enforcement is prohibited\n\ + by applicable law, you may not decompile, or reverse engineer\nSoftware. (e) The terms\ + \ and conditions of this Agreement will apply to\nany Software updates, provided to you\ + \ at Sun's discretion, that replace\nand/or supplement the original Software, unless such\ + \ update contains a\nseparate license. (f) You may not publish or provide the results of\ + \ any\nbenchmark or comparison tests run on Software to any third party\nwithout the prior\ + \ written consent of Sun. (g) Software is confidential\nand copyrighted. (h) Unless otherwise\ + \ specified, if Software is\ndelivered with embedded or bundled software that enables functionality\n\ + of Software, you may not use such software on a stand-alone basis or\nuse any portion of\ + \ such software to interoperate with any program(s)\nother than Software. (i) Software\ + \ may contain programs that perform\nautomated collection of system data and/or automated\ + \ software updating\nservices. System data collected through such programs may be used by\n\ + Sun, its subcontractors, and its service delivery partners for the\npurpose of providing\ + \ you with remote system services and/or improving\nSun's software and systems. (j) Software\ + \ is not designed, licensed or\nintended for use in the design, construction, operation\ + \ or maintenance\nof any nuclear facility and Sun and its licensors disclaim any express\n\ + or implied warranty of fitness for such uses. (k) No right, title or\ninterest in or to\ + \ any trademark, service mark, logo or trade name of\nSun or its licensors is granted under\ + \ this Agreement.\n\n6.\tTerm and Termination. \n\nThe license and service term are set\ + \ forth in your Entitlement(s). Your\nrights under this Agreement will terminate immediately\ + \ without notice\nfrom Sun if you materially breach it or take any action in derogation\n\ + of Sun's and/or its licensors' rights to Software. Sun may terminate\nthis Agreement should\ + \ any Software become, or in Sun's reasonable\nopinion likely to become, the subject of\ + \ a claim of intellectual\nproperty infringement or trade secret misappropriation. Upon\n\ + termination, you will cease use of, and destroy, Software and confirm\ncompliance in writing\ + \ to Sun. Sections 1, 5, 6, 7, and 9-15 will\nsurvive termination of the Agreement.\n\n\ + 7. Java Compatibility and Open Source.\n\nSoftware may contain Java technology. You\ + \ may not create additional\nclasses to, or modifications of, the Java technology, except\ + \ under\ncompatibility requirements available under a separate agreement\navailable at www.java.net.\n\ + \nSun supports and benefits from the global community of open source\ndevelopers, and thanks\ + \ the community for its important contributions\nand open standards-based technology, which\ + \ Sun has adopted into many of\nits products.\n\nPlease note that portions of Software may\ + \ be provided with notices and\nopen source licenses from such communities and third parties\ + \ that\ngovern the use of those portions, and any licenses granted hereunder do\nnot alter\ + \ any rights and obligations you may have under such open\nsource licenses, however, the\ + \ disclaimer of warranty and limitation of\nliability provisions in this Agreement will\ + \ apply to all Software in\nthis distribution.\n\n8. Limited Warranty.\n\nSun warrants\ + \ to you that for a period of 90 days from the date of\npurchase, as evidenced by a copy\ + \ of the receipt, the media on which\nSoftware is furnished (if any) will be free of defects\ + \ in materials and\nworkmanship under normal use. Except for the foregoing, Software is\n\ + provided \"AS IS\". Your exclusive remedy and Sun's entire liability\nunder this limited\ + \ warranty will be at Sun's option to replace Software\nmedia or refund the fee paid for\ + \ Software. Some states do not allow\nlimitations on certain implied warranties, so the\ + \ above may not apply\nto you. This limited warranty gives you specific legal rights. You\ + \ may\nhave others, which vary from state to state.\n\n9. Disclaimer of Warranty.\n\ + \nUNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS,\nREPRESENTATIONS\ + \ AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR\ + \ PURPOSE OR NON-INFRINGEMENT\nARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS\ + \ ARE HELD TO\nBE LEGALLY INVALID.\n\n10. Limitation of Liability.\n\nTO THE EXTENT\ + \ NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS\nLICENSORS BE LIABLE FOR ANY LOST REVENUE,\ + \ PROFIT OR DATA, OR FOR\nSPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES,\n\ + HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR\nRELATED TO THE\ + \ USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS\nBEEN ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGES. In no event will Sun's\nliability to you, whether in contract, tort (including\ + \ negligence), or\notherwise, exceed the amount paid by you for Software under this\nAgreement.\ + \ The foregoing limitations will apply even if the above\nstated warranty fails of its essential\ + \ purpose. Some states do not\nallow the exclusion of incidental or consequential damages,\ + \ so some of\nthe terms above may not be applicable to you.\n\n11. Export Regulations.\n\ + \nAll Software, documents, technical data, and any other materials\ndelivered under this\ + \ Agreement are subject to U.S. export control laws\nand may be subject to export or import\ + \ regulations in other countries.\nYou agree to comply strictly with these laws and regulations\ + \ and\nacknowledge that you have the responsibility to obtain any licenses to\nexport, re-export,\ + \ or import as may be required after delivery to you.\n\n12. U.S. Government Restricted\ + \ Rights.\n\nIf Software is being acquired by or on behalf of the U.S. Government or\nby\ + \ a U.S. Government prime contractor or subcontractor (at any tier),\nthen the Government's\ + \ rights in Software and accompanying documentation\nwill be only as set forth in this Agreement;\ + \ this is in accordance with\n48 CFR 227.7201 through 227.7202-4 (for Department of Defense\ + \ (DOD)\nacquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD\nacquisitions).\n\n\ + 13. Governing Law.\n\nAny action related to this Agreement will be governed by California\ + \ law\nand controlling U.S. federal law. No choice of law rules of any\njurisdiction will\ + \ apply.\n\n14. Severability.\n\nIf any provision of this Agreement is held to be unenforceable,\ + \ this\nAgreement will remain in effect with the provision omitted, unless\nomission would\ + \ frustrate the intent of the parties, in which case this\nAgreement will immediately terminate.\n\ + \n15. Integration.\n\nThis Agreement, including any terms contained in your Entitlement,\ + \ is\nthe entire agreement between you and Sun relating to its subject\nmatter. It supersedes\ + \ all prior or contemporaneous oral or written\ncommunications, proposals, representations\ + \ and warranties and prevails\nover any conflicting or additional terms of any quote, order,\n\ + acknowledgment, or other communication between the parties relating to\nits subject matter\ + \ during the term of this Agreement. No modification\nof this Agreement will be binding,\ + \ unless in writing and signed by an\nauthorized representative of each party.\n\nPlease\ + \ contact Sun Microsystems, Inc. 4150 Network Circle, Santa Clara,\nCalifornia 95054 if\ + \ you have questions." json: sun-entitlement-jaf.json - yml: sun-entitlement-jaf.yml + yaml: sun-entitlement-jaf.yml html: sun-entitlement-jaf.html - text: sun-entitlement-jaf.LICENSE + license: sun-entitlement-jaf.LICENSE - license_key: sun-glassfish + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-glassfish other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Sun GlassFish License + + 1. Definitions. + + "Software" means all the portions of the GlassFish distribution provided by Sun only in binary code form, and including any updates or error corrections or documentation provided by Sun under this Agreement. + + 2. Permitted Uses. + + Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Software's documentation, Sun grants you a non-exclusive, non-transferable, limited license without fees to + + (a) reproduce and use internally the Software for the purposes of developing or running GlassFish or modified versions of GlassFish. + + (b) reproduce and distribute the Software (and also portions of Software identified as Redistributable in the documentation accompanying Software), provided that you + + (i) distribute the Software or Redistributables bundled as part of, and for the sole purpose of running, GlassFish or modified versions of GlassFish; + + (ii) do not remove or alter any proprietary legends or notices contained in or on the Software or Redistributables, + + (iii) only distribute the Software or Redistributables subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and + + (iv) you agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs, Software, or Redistributables. + + 3. Restrictions. + (a) The copies of Software provided to you under this Agreement is licensed, not sold, to you by Sun. Sun reserves all rights not expressly granted. + + (b) You may not modify Software. However if the documentation accompanying Software lists specific portions of Software, such as header files, class libraries, reference source code, and/or redistributable files, that may be handled differently, you may do so only as provided in the documentation. + + (c) You may not rent, lease, lend or encumber Software. + + (d) you do not remove or alter any proprietary legends or notices contained in the Software, + + (e) Unless enforcement is prohibited by applicable law, you may not decompile, or reverse engineer Software. + + (f) The terms and conditions of this Agreement will apply to any Software updates, provided to you at Sun's discretion, that replace and/or supplement the original Software, unless such update contains a separate license. + + (g) Software is confidential and copyrighted. + + (h) Software is not designed, licensed or intended for use in the design, construction, operation or maintenance of any nuclear facility and Sun and its licensors disclaim any express or implied warranty of fitness for such uses. + + (i) No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. + + (j) If your Permitted Use in this Agreement permits the distribution Software or portions of the Software, you may only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement. + + 4. Java Compatibility and Open Source. + + Software may contain Java technology. You may not create additional classes to, or modifications of, the Java technology, except under compatibility requirements available under a separate agreement available at www.java.net. Sun supports and benefits from the global community of open source developers, and thanks the community for its important contributions and open standards-based technology, which Sun has adopted into many of its products. Please note that portions of Software may be provided with notices and open source licenses from such communities and third parties that govern the use of those portions, and any licenses granted hereunder do not alter any rights and obligations you may have under such open source licenses, however, the disclaimer of warranty and limitation of liability provisions in this Agreement will apply to all Software in this distribution. + + 5. Term and Termination. + + The Agreement is effective on the Date you receive the Software and remains effective until terminated. Your rights under this Agreement will terminate immediately without notice from Sun if you materially breach it or take any action in derogation of Sun's and/or its licensors' rights to Software. Sun may terminate this Agreement should any Software become, or in Sun's reasonable opinion likely to become, the subject of a claim of intellectual property infringement or trade secret misappropriation. Upon termination, you will cease use of, and destroy, Software and confirm compliance in writing to Sun. Sections 1, 3, 4, 5, and 7-13 will survive termination of the Agreement. + + 6. Limited Warranty. + + Sun warrants to you that for a period of 90 days from the date of receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use. Except for the foregoing, Software is provided "AS IS". Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. Some states do not allow limitations on certain implied warranties, so the above may not apply to you. This limited warranty gives you specific legal rights. You may have others, which vary from state to state. + + 7. Disclaimer of Warranty. + + UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. + + 8. Limitation of Liability. + + TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you. + + 9. Export Regulations. + + All Software, documents, technical data, and any other materials delivered under this Agreement are subject to U.S. export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with these laws and regulations and acknowledge that you have the responsibility to obtain any licenses to export, re-export, or import as may be required after delivery to you. + + 10. U.S. Government Restricted Rights. + + If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). + + 11. Governing Law. + + Any action related to this Agreement will be governed by California law and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply. + + 12. Severability. + + If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. + + 13. Integration. + + This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. json: sun-glassfish.json - yml: sun-glassfish.yml + yaml: sun-glassfish.yml html: sun-glassfish.html - text: sun-glassfish.LICENSE + license: sun-glassfish.LICENSE - license_key: sun-iiop + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-iiop other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + This software product (LICENSED PRODUCT), implementing the Object Management Group's "Internet Inter-ORB Protocol", is protected by copyright and is distributed under the following license restricting its use. Portions of LICENSED PRODUCT may be protected by one or more U.S. or foreign patents, or pending applications. + + LICENSED PRODUCT is made available for your use provided that you include this license and copyright notice on all media and documentation and the software program in which this product is incorporated in whole or part. + + You may copy, modify, distribute, or sublicense the LICENSED PRODUCT without charge as part of a product or software program developed by you, so long as you preserve the functionality of interoperating with the Object Management Group's "Internet Inter-ORB Protocol" version one. However, any uses other than the foregoing uses shall require the express written consent of Sun Microsystems, Inc. + + The names of Sun Microsystems, Inc. and any of its subsidiaries or affiliates may not be used in advertising or publicity pertaining to distribution of the LICENSED PRODUCT as permitted herein. + + This license is effective until terminated by Sun for failure to comply with this license. Upon termination, you shall destroy or return all code and documentation for the LICENSED PRODUCT. + + LICENSED PRODUCT IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. + + LICENSED PRODUCT IS PROVIDED WITH NO SUPPORT AND WITHOUT ANY OBLIGATION ON THE PART OF SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES TO ASSIST IN ITS USE, CORRECTION, MODIFICATION OR ENHANCEMENT. + + SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES SHALL HAVE NO LIABILITY WITH RESPECT TO THE INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY LICENSED PRODUCT OR ANY PART THEREOF. + + IN NO EVENT WILL SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES BE LIABLE FOR ANY LOST REVENUE OR PROFITS OR OTHER SPECIAL, INDIRECT AND CONSEQUENTIAL DAMAGES, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + Use, duplication, or disclosure by the government is subject to restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 and FAR 52.227-19. + + SunOS, SunSoft, Sun, Solaris, Sun Microsystems and the Sun logo are trademarks or registered trademarks of Sun Microsystems, Inc. json: sun-iiop.json - yml: sun-iiop.yml + yaml: sun-iiop.yml html: sun-iiop.html - text: sun-iiop.LICENSE + license: sun-iiop.LICENSE - license_key: sun-java-transaction-api + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-java-transaction-api other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "License Agreement\n\nSUN MICROSYSTEMS, INC. (``SUN'') IS WILLING TO LICENSE ITS Java\ + \ Transaction API\nSOFTWARE (``SOFTWARE'') TO YOU (\"CUSTOMER\") ONLY UPON THE CONDITION\ + \ \nTHAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS LICENSE AGREEMENT \n(\"AGREEMENT\"\ + ). READ THE TERMS AND CONDITIONS OF THE AGREEMENT \nCAREFULLY BEFORE SELECTING THE \"ACCEPT\"\ + \ BUTTON AT THE BOTTOM OF THIS\nPAGE. BY SELECTING THE \"ACCEPT\" BUTTON YOU AGREE TO THE\ + \ TERMS AND \nCONDITIONS OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY \nITS TERMS,\ + \ SELECT THE \"DO NOT ACCEPT\" BUTTON AT THE BOTTOM OF THIS PAGE\nAND THE INSTALLATION PROCESS\ + \ WILL NOT CONTINUE.\n\n1. License to Distribute. Customer is granted a royalty-free,\n\ + non-transferable right to reproduce and use the Software\nfor the purpose of developing\ + \ applications which run in\nconjunction with the Software. Customer may not modify the\ + \ Software\n(including any APIs exposed by the Software) in any way.\n\n2. Restrictions.\ + \ Software is confidential copyrighted information\nof Sun and title to all copies is retained\ + \ by Sun and/or its\nlicensors. Except to the extent enforcement of this provision is\n\ + prohibited by applicable law, if at all, Customer shall not decompile,\ndisassemble, decrypt,\ + \ extract, or otherwise reverse engineer Software.\nSoftware is not designed or intended\ + \ for use in on-line control of\naircraft, air traffic, aircraft navigation or aircraft\ + \ communications;\nor in the design, construction, operation or maintenance of any nuclear\n\ + facility. Customer warrants that it will not use or redistribute the\nSoftware for such\ + \ purposes.\n\n3. Trademarks and Logos. This Agreement does not authorize\nCustomer\ + \ to use any Sun name, trademark or logo. Customer acknowledges\nthat Sun owns the Java\ + \ trademark and all Java-related trademarks, logos\nand icons including the Coffee Cup and\ + \ Duke (``Java Marks'') and agrees\nto: (i) comply with the Java Trademark Guidelines at\n\ + http://java.sun.com/trademarks.html; (ii) not do anything harmful to or\ninconsistent with\ + \ Sun's rights in the Java Marks; and (iii) assist Sun\nin protecting those rights, including\ + \ assigning to Sun any rights\nacquired by Customer in any Java Mark.\n\n4. Disclaimer of\ + \ Warranty. Software is provided ``AS IS,'' without a\nwarranty of any kind. ALL EXPRESS\ + \ OR IMPLIED REPRESENTATIONS AND\nWARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,\ + \ FITNESS\nFOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED.\n\n5.Limitation\ + \ of Liability. IN NO EVENT WILL SUN OR ITS LICENSORS\nBE LIABLE FOR ANY LOST REVENUE,\ + \ PROFIT OR DATA, OR FOR SPECIAL,\nINDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES\ + \ HOWEVER CAUSED\nAND REGARDLESS OF THE THEORY OF LIABILITY ARISING OUT OF THE\nDOWNLOADING\ + \ OF, USE OF, OR INABILITY TO USE, SOFTWARE, EVEN IF SUN HAS\nBEEN ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGES.\n\n6. Termination. Customer may terminate this Agreement at any\ + \ time\nby destroying all copies of Software. This Agreement will terminate \nimmediately\ + \ without notice from Sun if Customer fails to comply with \nany provision of this Agreement.\ + \ Upon such termination, Customer must \ndestroy all copies of Software. Sections 4 and\ + \ 5 above shall survive \ntermination of this Agreement.\n\n7. Export Regulations.\ + \ Software, including technical data, is\nsubject to U.S. export control laws, including\ + \ the U.S. Export\nAdministration Act and its associated regulations, and may be subject\n\ + to export or import regulations in other countries. Customer agrees to\ncomply strictly\ + \ with all such regulations and acknowledges that it has\nthe responsibility to obtain licenses\ + \ to export, re-export, or import\nSoftware. Software may not be downloaded, or otherwise\ + \ exported or\nre-exported (i) into, or to a national or resident of, Cuba, Iraq,\nIran,\ + \ North Korea, Libya, Sudan, Syria or any country to which the U.S.\nhas embargoed goods;\ + \ or (ii) to anyone on the U.S. Treasury\nDepartment's list of Specially Designated Nations\ + \ or the U.S. Commerce\nDepartment's Table of Denial Orders.\n\n8. Restricted Rights.\ + \ Use, duplication or disclosure by the United\nStates government is subject to the restrictions\ + \ as set forth in the\nRights in Technical Data and Computer Software Clauses in DFARS\n\ + 252.227-7013(c) (1) (ii) and FAR 52.227-19(c) (2) as applicable.\n\n9. Governing Law.\ + \ Any action related to this Agreement will be\ngoverned by California law and controlling\ + \ U.S. federal law. No choice\nof law rules of any jurisdiction will apply.\n\n10. Severability.\ + \ If any of the above provisions are held to be in\nviolation of applicable law, void, or\ + \ unenforceable in any\njurisdiction, then such provisions are herewith waived or amended\ + \ to\nthe extent necessary for the Agreement to be otherwise enforceable in\nsuch jurisdiction.\ + \ However, if in Sun's opinion deletion or amendment\nof any provisions of the Agreement\ + \ by operation of this paragraph\nunreasonably compromises the rights or increase the liabilities\ + \ of Sun\nor its licensors, Sun reserves the right to terminate the Agreement." json: sun-java-transaction-api.json - yml: sun-java-transaction-api.yml + yaml: sun-java-transaction-api.yml html: sun-java-transaction-api.html - text: sun-java-transaction-api.LICENSE + license: sun-java-transaction-api.LICENSE - license_key: sun-java-web-services-dev-pack-1.6 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-java-web-services-dev-1.6 other_spdx_license_keys: - LicenseRef-scancode-sun-java-web-services-dev-pack-1.6 is_exception: no is_deprecated: no - category: Proprietary Free + text: "JAVA WEB SERVICES DEVELOPER PACK, VERSION 1.6\nSun Microsystems Inc. Software License\ + \ Agreement\n\nSUN IS WILLING TO LICENSE THE ACCOMPANYING BINARY SOFTWARE IN MACHINE-READABLE\ + \ FORM, TOGETHER WITH ACCOMPANYING DOCUMENTATION (COLLECTIVELY \"SOFTWARE\") TO YOU ONLY\ + \ UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS AND CONDITION CONTAINED IN THIS SOFTWARE\ + \ LICENSE AGREEMENT. READ THE TERMS AND CONDITIONS OF THIS SOFTWARE LICENSE AGREEMENT CAREFULLY\ + \ BEFORE OPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA PACKAGE, YOU\ + \ AGREE TO THE TERMS OF THIS SOFTWARE LICENSE AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE\ + \ ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE \"ACCEPT\" BUTTON\ + \ AT THE END OF THIS SOFTWARE LICENSE AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE TERMS,\ + \ PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE\ + \ SOFTWARE IS ACCESSED ELECTRONICALLY, SELECT THE \"DECLINE\" BUTTON AT THE END OF THIS\ + \ SOFTWARE LICENSE AGREEMENT. \n\nLICENSE TO EVALUATE EA SOFTWARE: The Binary Code License\ + \ Agreement (\"BCL\") and the Evaluation Terms (\"Evaluation Terms\") below shall apply\ + \ to the portions of the Software identified as Early Access in the Software's Release Notes.\ + \ The BCL and the Evaluation Terms shall collectively be referred to as the Evaluation Agreement\ + \ (\"Evaluation Agreement\"). \n\nLICENSE TO USE FCS SOFTWARE: The BCL and the Supplemental\ + \ Terms (\"Supplemental Terms\") provided following the BCL shall apply to portions of the\ + \ Software identified as FCS Software in the Software's Release Notes. BCL and the Supplemental\ + \ Terms shall collectively be referred to as the Agreement (\"Agreement\"). \n\n\nEVALUATION\ + \ TERMS\n\nThe terms of the Evaluation Agreement shall apply to portions of Software identified\ + \ as Early Access in the Software's Release Notes (\"Software\"). These Evaluation Terms\ + \ add to or modify the terms of the BCL. Capitalized terms not defined in these Evaluation\ + \ Terms shall have the same meanings ascribed to them in the BCL. These Evaluation Terms\ + \ shall supersede any inconsistent or conflicting terms in the BCL below, or in any license\ + \ contained within the Software. \n\nI. LICENSE TO EVALUATE. Sun grants to you, a non-exclusive,\ + \ non-transferable, royalty-free and limited license to use one (1) copy of the Software\ + \ internally for the purposes of evaluation only for one hundred eighty (180) days after\ + \ the date you download the Software from Sun (\"Evaluation Period\"). No license is granted\ + \ to you for any other purpose. You may not sell, rent, loan or otherwise encumber or transfer\ + \ the Software in whole or in part, to any third party. Licensee shall have no right to\ + \ use the Software for productive or commercial use. \n\nII. DUTIES. You agree to evaluate\ + \ and test the Software for use in your software environment and provide feedback to Sun\ + \ in a manner reasonably requested by Sun. Any and all test results, error data, reports\ + \ or other information, feedback or materials made or provided by you relating to Software\ + \ (collectively, \"Feedback\") is the exclusive property of Sun and you hereby assigns all\ + \ Feedback to Sun at no cost to Sun. Sun may use such Feedback in any manner and for any\ + \ purpose, without limitation, liability or obligation to you. \n\nIII. CONFIDENTIAL INFORMATION.\ + \ For purposes of the Evaluation Agreement, \"Confidential Information\" means: (i) business\ + \ and technical information and any source code or binary code, which Sun discloses to Licensee\ + \ related to Software; (ii) Licensee's feedback based on Software; and (iii) the terms,\ + \ conditions, and existence of this Agreement. Licensee may not disclose or use Confidential\ + \ Information, except for the purposes specified in this Agreement. You will protect the\ + \ Confidential Information with the same degree of care, but not less than a reasonable\ + \ degree of care, as Licensee uses to protect its own Confidential Information. You must\ + \ restrict access to Confidential Information to your employees or contractors with a need\ + \ for access to perform their employment or contractual obligations and who have agreed\ + \ in writing to be bound by a confidentiality obligation, which incorporates the protections\ + \ and restrictions substantially as set forth in this Agreement. Your obligations regarding\ + \ Confidential Information will expire no less than five (5) years from the date of receipt\ + \ of the Confidential Information, except for Sun source code which will be protected in\ + \ perpetuity. You agree that Software contains Sun trade secrets. Notwithstanding any provisions\ + \ contained in this Agreement concerning nondisclosure and non-use of the Confidential Information,\ + \ the nondisclosure obligations of this section will not apply to any portion of Confidential\ + \ Information that you can demonstrate in writing is: (i) now, or hereafter through no act\ + \ or failure to act on the part of you becomes, generally known to the public; (ii) known\ + \ to you at the time of receiving the Confidential Information without an obligation of\ + \ confidentiality; (iii) hereafter rightfully furnished to you by a third party without\ + \ restriction on disclosure; or (iv) independently developed by you without any use ofthe\ + \ Confidential Information. \n\nIV. TERMINATION AND/OR EXPIRATION. Upon expiration of the\ + \ Evaluation Period, unless terminated earlier by Sun, you agree to immediately cease use\ + \ of and destroy Software. Either party may terminate this Evaluation Agreement upon ten\ + \ (10) days' written notice to the other party. However, Sun may terminate this Evaluation\ + \ Agreement immediately should any Software become, or in Sun's opinion be likely to become,\ + \ the subject of a claim of infringement of a patent, trade secret or copyright. Sun may\ + \ terminate this Evaluation Agreement immediately should you materially breach any of its\ + \ provisions or take any action in derogation of Sun's rights to the Confidential Information\ + \ licensed to you. Upon termination or expiration of this Evaluation Agreement, you will\ + \ immediately cease use of and destroy Software, any copies thereof and provide to Sun a\ + \ written statement certifying that you have complied with the foregoing obligations. Rights\ + \ and obligations under this Evaluation Agreement which by their nature should survive,\ + \ will remain in effect after termination or expiration hereof.\n\nV. NO SUPPORT. Sun is\ + \ under no obligation to support Software or to provide upgrades or error corrections (\"\ + Software Updates\") to the Software. If Sun, at its sole option, supplies Software Updates\ + \ to you, the Software Updates will be considered part of Software, and subject to the terms\ + \ of this Agreement. \n\nVI. LIMITATION OF LIABILITY. Licensee acknowledges that the Software\ + \ may be experimental and that the Software may have defects or deficiencies, which cannot\ + \ or will not be corrected by Sun. Licensee will hold Sun harmless from any claims based\ + \ on Licensee's use of the Software for any purposes other than those of internal evaluation,\ + \ and from any claims that later versions or releases of any Software furnished to Licensee\ + \ are incompatible with the Software provided to Licensee under this Agreement. \n\nVII.\ + \ NO SUPPLEMENTAL TERMS. The Supplemental Terms following the BCL do not apply to the Evaluation\ + \ Agreement. Portions of Software identified as Early Access in the Software's Release Notes\ + \ may not be redistributed even if identified as Redistributable in the Software's Release\ + \ Notes.\n\nVIII. Trademarks and Logos. You acknowledge and agree as between you and Sun\ + \ that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN,\ + \ SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other\ + \ brand designations (\"Sun Marks\"), and you agree to comply with the Sun Trademark and\ + \ Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any\ + \ use you make of the Sun Marks inures to Sun's benefit. \n\nIX. Source Code. Software may\ + \ contain source code that is provided solely for reference purposes pursuant to the terms\ + \ of this Agreement. Source code may not be redistributed.\n\nX. Third Party Licenses. Additional\ + \ copyright notices and license terms applicable to portions of the software are set forth\ + \ in the THIRDPARTYLICENSEREADME file.\n\nSun Microsystems, Inc. \nBinary Code License Agreement\n\ + \nREAD THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY\ + \ \"AGREEMENT\") CAREFULLY BEFORE OPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE\ + \ MEDIA PACKAGE, YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE\ + \ ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE \"ACCEPT\" BUTTON\ + \ AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE TERMS, PROMPTLY RETURN\ + \ THE UNUSED SOFTWARE TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED\ + \ ELECTRONICALLY, SELECT THE \"DECLINE\" BUTTON AT THE END OF THIS AGREEMENT. \n\n1. LICENSE\ + \ TO USE. Sun grants you a non-exclusive and non-transferable license for the internal use\ + \ only of the accompanying software and documentation and any error corrections provided\ + \ by Sun (collectively \"Software\"), by the number of users and the class of computer hardware\ + \ for which the corresponding fee has been paid. \n\n2. RESTRICTIONS. Software is confidential\ + \ and copyrighted. Title to Software and all associated intellectual property rights is\ + \ retained by Sun and/or its licensors. Except as specifically authorized in any Supplemental\ + \ License Terms, you may not make copies of Software, other than a single copy of Software\ + \ for archival purposes. Unless enforcement is prohibited by applicable law, you may not\ + \ modify, decompile, or reverse engineer Software. Licensee acknowledges that Licensed Software\ + \ is not designed or intended for use in the design, construction, operation or maintenance\ + \ of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty\ + \ of fitness for such uses. No right, title or interest in or to any trademark, service\ + \ mark, logo or trade name of Sun or its licensors is granted under this Agreement. \n\n\ + 3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety (90) days from the\ + \ date of purchase, as evidenced by a copy of the receipt, the media on which Software is\ + \ furnished (if any) will be free of defects in materials and workmanship under normal use.\ + \ Except for the foregoing, Software is provided \"AS IS\". Your exclusive remedy and Sun's\ + \ entire liability under this limited warranty will be at Sun's option to replace Software\ + \ media or refund the fee paid for Software. \n\n4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED\ + \ IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,\ + \ INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR\ + \ NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD\ + \ TO BE LEGALLY INVALID. \n\n5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY\ + \ LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA,\ + \ OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED\ + \ REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY\ + \ TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no\ + \ event will Sun's liability to you, whether in contract, tort (including negligence), or\ + \ otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing\ + \ limitations will apply even if the above stated warranty fails of its essential purpose.\ + \ \n\n6. Termination. This Agreement is effective until terminated. You may terminate this\ + \ Agreement at any time by destroying all copies of Software. This Agreement will terminate\ + \ immediately without notice from Sun if you fail to comply with any provision of this Agreement.\ + \ Upon Termination, you must destroy all copies of Software. \n\n7. Export Regulations.\ + \ All Software and technical data delivered under this Agreement are subject to US export\ + \ control laws and may be subject to export or import regulations in other countries. You\ + \ agree to comply strictly with all such laws and regulations and acknowledge that you have\ + \ the responsibility to obtain such licenses to export, re-export, or import as may be required\ + \ after delivery to you. \n\n8. U.S. Government Restricted Rights. If Software is being\ + \ acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor\ + \ or subcontractor (at any tier), then the Government's rights in Software and accompanying\ + \ documentation will be only as set forth in this Agreement; this is in accordance with\ + \ 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and\ + \ with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). \n\n9. Governing Law. Any action\ + \ related to this Agreement will be governed by California law and controlling U.S. federal\ + \ law. No choice of law rules of any jurisdiction will apply. \n\n10. Severability. If any\ + \ provision of this Agreement is held to be unenforceable, this Agreement will remain in\ + \ effect with the provision omitted, unless omission would frustrate the intent of the parties,\ + \ in which case this Agreement will immediately terminate. \n\n11. Integration. This Agreement\ + \ is the entire agreement between you and Sun relating to its subject matter. It supersedes\ + \ all prior or contemporaneous oral or written communications, proposals, representations\ + \ and warranties and prevails over any conflicting or additional terms of any quote, order,\ + \ acknowledgment, or other communication between the parties relating to its subject matter\ + \ during the term of this Agreement. No modification of this Agreement will be binding,\ + \ unless in writing and signed by an authorized representative of each party. \n\nSUPPLEMENTAL\ + \ LICENSE TERMS\n\nThese supplemental license terms (\"Supplemental Terms\") add to or modify\ + \ the terms of the Binary Code License Agreement (collectively, the \"Agreement\"). Capitalized\ + \ terms not defined in these Supplemental Terms shall have the same meanings ascribed to\ + \ them in the Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting\ + \ terms in the Agreement, or in any license contained within the Software. \n\nA. Software\ + \ Internal Use and Development License Grant. Subject to the terms and conditions of this\ + \ Agreement, including, but not limited to Section C (Java Technology Restrictions) of these\ + \ Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license\ + \ to reproduce internally and use internally the binary form of the Software complete and\ + \ unmodified for the purposes of designing, developing, testing, and running your Java applets\ + \ and applications intended to run on the Java platform (\"Programs\"), except for certain\ + \ files identified in the Software \"Release Notes\" file which may only be used for the\ + \ purposes of designing, developing, and testing Programs.\n\nB. License to Distribute Redistributables.\ + \ Subject to the terms and conditions of this Agreement, including but not limited to Section\ + \ C (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive,\ + \ non-transferable, limited license to reproduce and distribute those components specifically\ + \ identified as redistributable in the Software \"Release Notes\" file (\"Redistributables\"\ + ) provided that: (i) you distribute the Redistributables complete and unmodified (unless\ + \ otherwise specified in the applicable Release Notes file), and only bundled as part of\ + \ your Programs, (ii) you do not distribute additional software intended to supersede any\ + \ portion of the Redistributables, (iii) you do not remove or alter any proprietary legends\ + \ or notices contained in or on the Redistributables, (iv) you only distribute the Redistributables\ + \ pursuant to a license agreement that protects Sun's interests consistent with the terms\ + \ contained in the Agreement, (v) you agree to defend and indemnify Sun and its licensors\ + \ from and against any damages, costs, liabilities, settlement amounts and/or expenses (including\ + \ attorneys' fees) incurred in connection with any claim, lawsuit or action by any third\ + \ party that arises or results from the use or distribution of any and all Programs and/or\ + \ Software, and (vi) if you distribute the Java Secure Socket Extension package, include\ + \ the following statement as part of product documentation (whether hard copy or electronic),\ + \ as a part of a copyright page or proprietary rights notice page, in an \"About\" box or\ + \ in any other form reasonably designed to make the statement visible to users of the Software:\ + \ \"This product includes code licensed from RSA Data Security\".\n\nC. Java Technology\ + \ Restrictions. You may not modify the Java Platform Interface (\"JPI\", identified as classes\ + \ contained within the \"java\" package or any subpackages of the \"java\" package), by\ + \ creating additional classes within the JPI or otherwise causing the addition to or modification\ + \ of the classes in the JPI. In the event that you create an additional class and associated\ + \ API(s) which (i) extends the functionality of the Java platform, and (ii) is exposed to\ + \ third party software developers for the purpose of developing additional software which\ + \ invokes such additional API, you must promptly publish broadly an accurate specification\ + \ for such API for free use by all developers. You may not create, or authorize your licensees\ + \ to create, additional classes, interfaces, or subpackages that are in any way identified\ + \ as \"java\", \"javax\", \"sun\" or similar convention as specified by Sun in any naming\ + \ convention designation. \n\nD. Java Runtime Availability. Refer to the appropriate version\ + \ of the Java Runtime Environment binary code license (currently located at http://www.java.sun.com/jdk/index.html)\ + \ for the availability of runtime code which may be distributed with Java applets and applications.\ + \ \n\nE. Trademarks and Logos. You acknowledge and agree as between you and Sun that Sun\ + \ owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS,\ + \ JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand\ + \ designations (\"Sun Marks\"), and you agree to comply with the Sun Trademark and Logo\ + \ Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use\ + \ you make of the Sun Marks inures to Sun's benefit. \n\nF. Source Code. Software may contain\ + \ source code that is provided solely for reference purposes pursuant to the terms of this\ + \ Agreement. Source code may not be redistributed unless expressly provided for in this\ + \ Agreement.\n\nG. Third Party Licenses. Additional copyright notices and license terms\ + \ applicable to portions of the software are set forth in the THIRDPARTYLICENSEREADME file.\n\ + \nH. Termination for Infringement. Either party may terminate this Agreement immediately\ + \ should any Software become, or in either party's opinion be likely to become, the subject\ + \ of a claim of infringement of any intellectual property right.\n\nFor inquiries please\ + \ contact: Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054." json: sun-java-web-services-dev-pack-1.6.json - yml: sun-java-web-services-dev-pack-1.6.yml + yaml: sun-java-web-services-dev-pack-1.6.yml html: sun-java-web-services-dev-pack-1.6.html - text: sun-java-web-services-dev-pack-1.6.LICENSE + license: sun-java-web-services-dev-pack-1.6.LICENSE - license_key: sun-javamail + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-javamail other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Sun JavaMail\nLicense Agreement\n\n1.\tLicense to Distribute. Customer is granted a\ + \ royalty-free, non-transferable right to reproduce and use the Software for the purpose\ + \ of developing applications which run in conjunction with the Software. Customer may not\ + \ modify the Software (including any APIs exposed by the Software) in any way.\n\n2.\tRestrictions.\ + \ Software is confidential copyrighted information of Sun and title to all copies is retained\ + \ by Sun and/or its licensors. Except to the extent enforcement of this provision is prohibited\ + \ by applicable law, if at all, Customer shall not decompile, disassemble, decrypt, extract,\ + \ or otherwise reverse engineer Software. Software is not designed or intended for use in\ + \ on-line control of aircraft, air traffic, aircraft navigation or aircraft communications;\ + \ or in the design, construction, operation or maintenance of any nuclear facility. Customer\ + \ warrants that it will not use or redistribute the Software for such purposes.\n\n3.\t\ + Trademarks and Logos. This Agreement does not authorize Customer to use any Sun name, trademark\ + \ or logo. Customer acknowledges that Sun owns the Java trademark and all Java-related trademarks,\ + \ logos and icons including the Coffee Cup and Duke (``Java Marks'') and agrees to: (i)\ + \ comply with the Java Trademark Guidelines at http://java.sun.com/trademarks.html; (ii)\ + \ not do anything harmful to or inconsistent with Sun's rights in the Java Marks; and (iii)\ + \ assist Sun in protecting those rights, including assigning to Sun any rights acquired\ + \ by Customer in any Java Mark.\n\n4. Disclaimer of Warranty. Software is provided ``AS\ + \ IS,'' without a warranty of any kind. ALL EXPRESS OR IMPLIED REPRESENTATIONS AND WARRANTIES,\ + \ INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR\ + \ NON-INFRINGEMENT, ARE HEREBY EXCLUDED.\n\n5.Limitation of Liability.\tIN NO EVENT WILL\ + \ SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL,INDIRECT,\ + \ CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES HOWEVER CAUSED AND REGARDLESS OF THE THEORY\ + \ OF LIABILITY ARISING OUT OF THE DOWNLOADING OF, USE OF, OR INABILITY TO USE, SOFTWARE,\ + \ EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n6.\tTermination. Customer\ + \ may terminate this Agreement at any time by destroying all copies of Software. This Agreement\ + \ will terminate immediately without notice from Sun if Customer fails to comply with any\ + \ provision of this Agreement. Upon such termination, Customer must destroy all copies of\ + \ Software. Sections 4 and 5 above shall survive termination of this Agreement.\n\n7.\t\ + Export Regulations. Software, including technical data, is subject to U.S. export control\ + \ laws, including the U.S. Export Administration Act and its associated regulations, and\ + \ may be subject to export or import regulations in other countries. Customer agrees to\ + \ comply strictly with all such regulations and acknowledges that it has the responsibility\ + \ to obtain licenses to export, re-export, or import Software. Software may not be downloaded,\ + \ or otherwise exported or re-exported (i) into, or to a national or resident of, Cuba,\ + \ Iraq, Iran, North Korea, Libya, Sudan, Syria or any country to which the U.S. has embargoed\ + \ goods; or (ii) to anyone on the U.S. Treasury Department's list of Specially Designated\ + \ Nations or the U.S. Commerce Department's Table of Denial Orders.\n\n8.\tRestricted Rights.\ + \ Use, duplication or disclosure by the United States government is subject to the restrictions\ + \ as set forth in the Rights in Technical Data and Computer Software Clauses in DFARS 252.227-7013(c)\ + \ (1) (ii) and FAR 52.227-19(c) (2) as applicable.\n\n9.\tGoverning Law. Any action related\ + \ to this Agreement will be governed by California law and controlling U.S. federal law.\ + \ No choice of law rules of any jurisdiction will apply.\n\n10.\tSeverability. If any of\ + \ the above provisions are held to be in violation of applicable law, void, or unenforceable\ + \ in any jurisdiction, then such provisions are herewith waived or amended to the extent\ + \ necessary for the Agreement to be otherwise enforceable in such jurisdiction. However,\ + \ if in Sun's opinion deletion or amendment of any provisions of the Agreement by operation\ + \ of this paragraph unreasonably compromises the rights or increase the liabilities of Sun\ + \ or its licensors, Sun reserves the right to terminate the Agreement." json: sun-javamail.json - yml: sun-javamail.yml + yaml: sun-javamail.yml html: sun-javamail.html - text: sun-javamail.LICENSE + license: sun-javamail.LICENSE - license_key: sun-jsr-spec-04-2006 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-jsr-spec-04-2006 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Copyright 2006 SUN MICROSYSTEMS, INC. + 4150 Network Circle, Santa Clara, California 95054, U.S.A + All rights reserved. + + LIMITED LICENSE GRANTS + + 1. License for Evaluation Purposes. Sun hereby grants you a fully-paid, + non-exclusive, non-transferable, worldwide, limited license (without the + right to sublicense), under Sun's applicable intellectual property + rights to view, download, use and reproduce the Specification only for + the purpose of internal evaluation. This includes (i) developing + applications intended to run on an implementation of the Specification, + provided that such applications do not themselves implement any + portion(s) of the Specification, and (ii) discussing the Specification + with any third party; and (iii) excerpting brief portions of the + Specification in oral or written communications which discuss the + Specification provided that such excerpts do not in the aggregate + constitute a significant portion of the Specification. + + 2. License for the Distribution of Compliant Implementations. Sun also + grants you a perpetual, non-exclusive, non-transferable, worldwide, + fully paid-up, royalty free, limited license (without the right to + sublicense) under any applicable copyrights or, subject to the + provisions of subsection 4 below, patent rights it may have covering the + Specification to create and/or distribute an Independent Implementation + of the Specification that: (a) fully implements the Specification + including all its required interfaces and functionality; (b) does not + modify, subset, superset or otherwise extend the Licensor Name Space, or + include any public or protected packages, classes, Java interfaces, + fields or methods within the Licensor Name Space other than those + required/authorized by the Specification or Specifications being + implemented; and (c) passes the Technology Compatibility Kit (including + satisfying the requirements of the applicable TCK Users Guide) for such + Specification ("Compliant Implementation"). In addition, the foregoing + license is expressly conditioned on your not acting outside its scope. + No license is granted hereunder for any other purpose (including, for + example, modifying the Specification, other than to the extent of your + fair use rights, or distributing the Specification to third parties). + Also, no right, title, or interest in or to any trademarks, service + marks, or trade names of Sun or Sun's licensors is granted hereunder. + + Java, and Java-related logos, marks and names are trademarks or + registered trademarks of Sun Microsystems, Inc. in the U.S. and other + countries. + + 3. Pass-through Conditions. You need not include limitations (a)-(c) + from the previous paragraph or any other particular "pass through" + requirements in any license You grant concerning the use of your + Independent Implementation or products derived from it. However, except + with respect to Independent Implementations (and products derived from + them) that satisfy limitations (a)-(c) from the previous paragraph, You + may neither: (a) grant or otherwise pass through to your licensees any + licenses under Sun's applicable intellectual property rights; nor (b) + authorize your licensees to make any claims concerning their + implementation's compliance with the Specification in question. + + 4. Reciprocity Concerning Patent Licenses. + + a. With respect to any patent claims covered by the license granted + under subparagraph 2 above that would be infringed by all technically + feasible implementations of the Specification, such license is + conditioned upon your offering on fair, reasonable and non- + discriminatory terms, to any party seeking it from You, a perpetual, + non-exclusive, non-transferable, worldwide license under Your patent + rights which are or would be infringed by all technically feasible + implementations of the Specification to develop, distribute and use a + Compliant Implementation. + + b With respect to any patent claims owned by Sun and covered by the + license granted under subparagraph 2, whether or not their infringement + can be avoided in a technically feasible manner when implementing the + Specification, such license shall terminate with respect to such claims + if You initiate a claim against Sun that it has, in the course of + performing its responsibilities as the Specification Lead, induced any + other entity to infringe Your patent rights. + + c Also with respect to any patent claims owned by Sun and covered by the + license granted under subparagraph 2 above, where the infringement of + such claims can be avoided in a technically feasible manner when + implementing the Specification such license, with respect to such + claims, shall terminate if You initiate a claim against Sun that its + making, having made, using, offering to sell, selling or importing a + Compliant Implementation infringes Your patent rights. + + 5. Definitions. For the purposes of this Agreement: "Independent + Implementation" shall mean an implementation of the Specification that + neither derives from any of Sun's source code or binary code materials + nor, except with an appropriate and separate license from Sun, includes + any of Sun's source code or binary code materials; "Licensor Name Space" + shall mean the public class or interface declarations whose names begin + with "java", "javax", "com.sun" or their equivalents in any subsequent + naming convention adopted by Sun through the Java Community Process, or + any recognized successors or replacements thereof; and + "Technology Compatibility Kit" or "TCK" shall mean the test suite and + accompanying TCK User's Guide provided by Sun which corresponds to the + Specification and that was available either (i) from Sun 120 days before + the first release of Your Independent Implementation that allows its use + for commercial purposes, or (ii) more recently than 120 days from such + release but against which You elect to test Your implementation of the + Specification. + + This Agreement will terminate immediately without notice from Sun if you + breach the Agreement or act outside the scope of the licenses granted + above. + + DISCLAIMER OF WARRANTIES + + THE SPECIFICATION IS PROVIDED "AS IS". SUN MAKES NO REPRESENTATIONS OR + WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON- + INFRINGEMENT (INCLUDING AS A CONSEQUENCE OF ANY PRACTICE OR + IMPLEMENTATION OF THE SPECIFICATION), OR THAT THE CONTENTS OF THE + SPECIFICATION ARE SUITABLE FOR ANY PURPOSE. This document does not + represent any commitment to release or implement any portion of the + Specification in any product. In addition, the Specification could + include technical inaccuracies or typographical errors. + + LIMITATION OF LIABILITY + + TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS + LICENSORS BE LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT LIMITATION, LOST + REVENUE, PROFITS OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, + INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE + THEORY OF LIABILITY, ARISING OUT OF OR RELATED IN ANY WAY TO YOUR + HAVING, IMPLEMENTING OR OTHERWISE USING THE SPECIFICATION, EVEN IF SUN + AND/OR ITS LICENSORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH + DAMAGES. + + You will indemnify, hold harmless, and defend Sun and its licensors from + any claims arising or resulting from: (i) your use of the Specification; + (ii) the use or distribution of your Java application, applet and/or + implementation; and/or (iii) any claims that later versions or releases + of any Specification furnished to you are incompatible with the + Specification provided to you under this license. + + RESTRICTED RIGHTS LEGEND + + U.S. Government: If this Specification is being acquired by or on behalf + of the U.S. Government or by a U.S. Government prime contractor or + subcontractor (at any tier), then the Government's rights in the + Software and accompanying documentation shall be only as set forth in + this license; this is in accordance with 48 C.F.R. 227.7201 through + 227.7202-4 (for Department of Defense (DoD) acquisitions) and with 48 + C.F.R. 2.101 and 12.212 (for non-DoD acquisitions). + + REPORT + + If you provide Sun with any comments or suggestions concerning the + Specification ("Feedback"), you hereby: (i) agree that such Feedback is + provided on a non-proprietary and non-confidential basis, and (ii) grant + Sun a perpetual, non-exclusive, worldwide, fully paid-up, irrevocable + license, with the right to sublicense through multiple levels of + sublicensees, to incorporate, disclose, and use without limitation the + Feedback for any purpose. + + GENERAL TERMS + + Any action related to this Agreement will be governed by California law + and controlling U.S. federal law. The U.N. Convention for the + International Sale of Goods and the choice of law rules of any + jurisdiction will not apply. + + The Specification is subject to U.S. export control laws and may be + subject to export or import regulations in other countries. Licensee + agrees to comply strictly with all such laws and regulations and + acknowledges that it has the responsibility to obtain such licenses to + export, re-export or import as may be required after delivery to + Licensee. + + This Agreement is the parties' entire agreement relating to its subject + matter. It supersedes all prior or contemporaneous oral or written + communications, proposals, conditions, representations and warranties + and prevails over any conflicting or additional terms of any quote, + order, acknowledgment, or other communication between the parties + relating to its subject matter during the term of this Agreement. No + modification to this Agreement will be binding, unless in writing and + signed by an authorized representative of each party. + + Rev. April, 2006 Sun/Final/Full json: sun-jsr-spec-04-2006.json - yml: sun-jsr-spec-04-2006.yml + yaml: sun-jsr-spec-04-2006.yml html: sun-jsr-spec-04-2006.html - text: sun-jsr-spec-04-2006.LICENSE + license: sun-jsr-spec-04-2006.LICENSE - license_key: sun-jta-spec-1.0.1 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-jta-spec-1.0.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Sun JTA Specification License v1.0.1 + http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download + + Copyright 1997-1999 Sun Microsystems, Inc. + 901 San Antonio Road, Palo Alto, California 94303 U.S.A. + All rights reserved. Copyright in this document is owned by Sun Microsystems Inc. + + Sun Microsystems, Inc. (SUN) hereby grants to you at no charge a nonexclusive, + nontransferable, perpetual, worldwide, limited license (without the right to + sublicense) under SUN's intellectual property rights that are essential to + practice this specification for the limited purpose of creating and distributing + implementations of this specification, provided however, that such + implementations do not derive from any SUN source code or binary materials and + do not include any SUN binary materials without an appropriate and separate + license from SUN. Other than this limited license, you acquire no right, title + or interest in or to this specification or any other SUN intellectual property. + No right, title, or interest in or to any trademarks, service marks, or trade + names of SUN or SUN’s licensors is granted hereunder. + + RESTRICTED RIGHTS LEGEND + Use, duplication, or disclosure by the U.S. Government is subject to restrictions of FAR 52.227- + 14(g)(2)(6/87) and FAR 52.227-19(6/87), or DFAR 252.227-7015(b)(6/95) and DFAR 227.7202-1(a). + + This specification contains the proprietary information of SUN and may only be used in accordance with + the license terms set forth above. + + SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE + SPECIFICATION, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, + OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY + YOU AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SPECIFICATION OR ITS + DERIVATIVES. + + TRADEMARKS + Sun, the Sun logo, Sun Microsystems, Java, Enterprise JavaBeans, JDBC, and JDK are trademarks or + registered trademarks of Sun Microsystems, Inc. in the United States and other countries. + + THIS PUBLICATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER + EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. + THIS PUBLICATION COULD INCLUDE TECHNICAL INACCURACIES OR TYPOGRAPHICAL + ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION HEREIN; THESE + CHANGES WILL BE INCORPORATED IN NEW EDITIONS OF THE PUBLICATION. SUN + MICROSYSTEMS, INC. MAY MAKE IMPROVEMENTS AND/OR CHANGES IN THE + PRODUCT(S) AND/OR THE PROGRAM(S) DESCRIBED IN THIS PUBLICATION AT ANY TIME. json: sun-jta-spec-1.0.1.json - yml: sun-jta-spec-1.0.1.yml + yaml: sun-jta-spec-1.0.1.yml html: sun-jta-spec-1.0.1.html - text: sun-jta-spec-1.0.1.LICENSE + license: sun-jta-spec-1.0.1.LICENSE - license_key: sun-jta-spec-1.0.1b + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-jta-spec-1.0.1b other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Java(TM) Transaction API (JTA) Specification + ("Specification") + Version: 1.0.1B + Status: Maintenance Release + Release: November 5, 2002 + + Copyright 2002 Sun Micro systems, Inc. + + 4150 Network Circle, Santa Clara, California + 95054, U.S.A + All rights reserved. + + NOTICE; LIMITED LICENSE GRANTS + + Sun Microsystems, Inc. ("Sun") hereby grants you a + fully-paid, non-exclusive, non-t ransferable, + worldwide, limited license (without the right to + sublicense), under the Sun's applicable + intellectual property rights to view, download, + use and reproduce the Specification only for the + purpose of internal evalua tion, which shall be + understood to include developing applications + intended to run on an implementation of the + Specification provided that such applications do + not themselves implement any portion(s) of the + Specification. + + Sun also grants you a perpetual, non-exclusive, + worldwide, fully paid-up, royalty free, limited + license (without the right to sublicense) under + any applicable copyrights or patent rights it may + have in the Specification to c reate and/or + distribute an Independent Implementation of the + Specification that: (i) fully implements the + Spec(s) including all its required interfaces and + functionality; (ii) does not modify, subset, + superset or otherwise ex tend the Licensor Name + Space, or include any public or protected + packages, classes, Java interfaces, fields or + methods within the Licensor Name Space other than + those required/authorized by the Specification or + Specifications being implemented; and (iii) passes + the TCK (including satisfying the requirements of + the applicable TCK Users Guide) for such + Specification. The foregoing license is expressly + conditioned on your not acting outside its scope. + No license is granted hereunder for any other + purpose. + + You need not include limitations (i)-(iii) from + the previous paragraph or any other particular + "pass through" requirements in any license You + grant concerning the use of your Independent + Implementation or products derived from it. + However, except with respect to implementations of + the Specification (and products derived from them) + that satisfy limitations (i)-(iii) from the + previous pa ragraph, You may neither: (a) grant or + otherwise pass through to your licensees any + licenses under Sun's applicable intellectual + property rights; nor (b) authorize your licensees + to make any claims concerning their + implementa tion's compliance with the Spec in + question. + + For the purposes of this Agreement: "Independent + Implementation" shall mean an implementation of + the Specification that neither derives from any of + Sun's source code or binary code materials nor, + except with an appropriate and separate license + from Sun, includes any of Sun's source code or + binary code materials; and "Licensor Name Space" + shall mean the public class or interface + declarations whose n ames begin with "java", + "javax", "com.sun" or their equivalents in any + subsequent naming convention adopted by Sun + through the Java Community Process, or any + recognized successors or replacements thereof. + + This Agreement w ill terminate immediately without + notice from Sun if you fail to comply with any + material provision of or act outside the scope of + the licenses granted above. + + TRADEMARKS + + No right, title, or interest in or to any + trademarks, service marks, or trade names of Sun + or Sun's licensors is granted hereunder. Sun, Sun + Microsystems, the Sun logo, Java, and the Java + Coffee Cup logo are trademarks or registered + trademarks of Sun Microsystems, Inc. in the U.S. + and other countries. + + DISCLAIMER OF WARRANTIES + + THE SPECIFICATION IS PROVIDED "AS IS". SUN MAKES + NO REPRESENTATIONS OR WARRANTIES, EITHER EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO, + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + PARTICULAR PURPOSE, OR NON-INFRINGEMENT, THAT THE + CONTENTS OF THE SPECIFICATION ARE SUITABLE FOR ANY + PURPOSE OR THAT ANY PRACTICE OR IMPLEMENTATION OF + SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADE SECRETS OR OTHER + RIGHTS. This document does not represent any + commitment to release or implement any portion of + the Specification in any product. + + THE SPECIFICATION COULD INCLUDE TECHNICAL + INACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE + PERIODICALLY ADDED TO THE INFORMATION THEREIN; + THESE CHANGES WILL BE INCORPORATED INTO NEW + VERSIONS OF THE SPECIFICATION, IF ANY. SUN MAY + MAKE IMPROVEMENTS AND/OR CHANGES TO THE P RODUCT(S) + AND/OR THE PROGRAM(S) DESCRIBED IN THE + SPECIFICATION AT ANY TIME. Any use of such + changes in the Specification will be governed by + the then-current license for the applicable + version of the Specification. + + LIMITATION OF LIABILITY + + TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT + WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY + DAMAGES, INCLUDING WITHOUT LIMITATION, LOST + REVENUE, PROFITS OR DATA, OR FOR SPECIAL, + INDIRECT, CONSEQU ENTIAL, INCIDENTAL OR PUNITIVE + DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE + THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO + ANY FURNISHING, PRACTICING, MODIFYING OR ANY USE + OF THE SPECIFICATION, EVEN IF SUN AND/OR ITS + LICE NSORS HAVE BEEN ADVISED OF THE POSSIBILITY OF + SUCH DAMAGES. + + You will indemnify, hold harmless, and defend Sun + and its licensors from any claims arising or + resulting from: (i) your use of the Specification; + (ii) the use or distribution of your Java + application, applet and/or clean room + implementation; and/or (iii) any claims that later + versions or releases of any Specification + furnished to you are incompatible with the + Specification provided t o you under this license. + + RESTRICTED RIGHTS LEGEND + + U.S. Government: If this Specification is being + acquired by or on behalf of the U.S. Government or + by a U.S. Government prime contractor or + subcontractor (at any tier ), then the Government's + rights in the Software and accompanying + documentation shall be only as set forth in this + license; this is in accordance with 48 C.F.R. + 227.7201 through 227.7202-4 (for Department of + Defense (DoD) acqu isitions) and with 48 C.F.R. + 2.101 and 12.212 (for non-DoD acquisitions). + + REPORT + + You may wish to report any ambiguities, + inconsistencies or inaccuracies you may find in + connection with your use of the Specification + ("Feedback"). To the extent that you provide Sun + with any Feedback, you hereby: (i) agree that such + Feedback is provided on a non-proprietary and + non-confidential basis, and (ii) grant Sun a + perpetual, non-exclusive, worldwide, fully + paid-up, irrevocable license, with the right to + sublicense through multiple levels of + sublicensees, to incorporate, disclose, and use + without limitation the Feedback for any purpose + related to the Specification and fut ure versions, + implementations, and test suites thereof. + + (LFI#121049/Form ID#011801) json: sun-jta-spec-1.0.1b.json - yml: sun-jta-spec-1.0.1b.yml + yaml: sun-jta-spec-1.0.1b.yml html: sun-jta-spec-1.0.1b.html - text: sun-jta-spec-1.0.1b.LICENSE + license: sun-jta-spec-1.0.1b.LICENSE - license_key: sun-no-high-risk-activities + category: Free Restricted spdx_license_key: LicenseRef-scancode-sun-no-high-risk-activities other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "Permission to use, copy, modify, and distribute this Software and its \ndocumentation\ + \ for NON-COMMERCIAL or COMMERCIAL purposes and without fee is \nhereby granted. \n\nThis\ + \ Software is provided \"AS IS\". All express warranties, including any \nimplied warranty\ + \ of merchantability, satisfactory quality, fitness for a \nparticular purpose, or non-infringement,\ + \ are disclaimed, except to the extent \nthat such disclaimers are held to be legally invalid.\n\ + \nYou acknowledge that Software is not designed, licensed or intended for use in \nthe design,\ + \ construction, operation or maintenance of any nuclear facility \n(\"High Risk Activities\"\ + ). Sun disclaims any express or implied warranty of \nfitness for such uses. \n\nPlease\ + \ refer to the file http://www.sun.com/policies/trademarks/ for further \nimportant trademark\ + \ information and to \nhttp://java.sun.com/nav/business/index.html for further important\ + \ licensing \ninformation for the Java Technology." json: sun-no-high-risk-activities.json - yml: sun-no-high-risk-activities.yml + yaml: sun-no-high-risk-activities.yml html: sun-no-high-risk-activities.html - text: sun-no-high-risk-activities.LICENSE + license: sun-no-high-risk-activities.LICENSE - license_key: sun-project-x + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-project-x other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Java Project X Technology Release 2 Source Software License Agreement\n\n1. LICENSE\ + \ GRANT (A) Definition of Software\n\n\"Software\" means the \"Java Project X Technology\ + \ Release 2\" experimental XML software in source form, any portions of the software code\ + \ provided in binary form, and any user manuals, programming guides and other documentation\ + \ provided to Licensee by Sun under this Agreement.\n\n(B) Sun's Limited Grant to Licensee\n\ + \n(1) Internal Source Evaluation\n\nSun grants Licensee a non-exclusive, non-transferable\ + \ royalty-free right to use the Software internally for the purposes of evaluation only,\ + \ except as otherwise permitted in Section 1(B)(2) below.\n\n(2) Commercial Binary Distribution\n\ + \nSun grants Licensee a non-exclusive, non-transferable, royalty-free right to reproduce\ + \ and distribute the Software in binary form only provided that Licensee complies with the\ + \ following: (i) distribute the Software in binary form only complete and unmodified, only\ + \ as part of, and for the sole purpose of running Licensee's software program (\"Program\"\ + ) into which the Software is incorporated or bundled; (ii) do not remove or alter any proprietary\ + \ legends or notices contained in the Software; (iii) only distribute the Program subject\ + \ to a license agreement that protects Sun’s interests consistent with the terms contained\ + \ herein; and (iv) agree to indemnify, hold harmless, and defend Sun and its licensors from\ + \ and against any claims or lawsuits, including attorney’s fees, that arise or result from\ + \ the use or distribution of the Program.\n\n(C) License Restrictions\n\nLicensee may not\ + \ duplicate the Software in source form other than for a single copy of Software for archival\ + \ purposes only. Licensee agrees to reproduce any copyright and other proprietary right\ + \ notices on any such copy. Except as explicitly provided by this Agreement, Licensee may\ + \ not rent, lease, loan, sell, or distribute the Software in whole or part, to any third\ + \ party. No right, title, or interest in or to any trademarks, service marks, or trade names\ + \ of Sun or Sun's licensors is granted hereunder. No license to any other Sun intellectual\ + \ property is granted hereunder.\n\n(D) Licensee's Grant to Sun and Indemnification of Sun\n\ + \nLicensee grants to Sun a non-exclusive, unrestricted, perpetual, worldwide, royalty-free\ + \ license to use any modifications, in source and binary code form, that Licensee makes\ + \ to the Software that are the original work of Licensee \"Modifications \". Licensee will\ + \ deliver Modifications to Sun upon request. Licensee's grant to Sun includes the right\ + \ to copy, modify, create derivative works from, sublicense and distribute Modifications.\ + \ Licensee will defend and indemnity Sun from all claims of any nature for damages arising\ + \ out of Sun's use or distribution of Modifications, and will pay all damages and costs\ + \ awarded by a court of final appeal attributable to such claim.\n\n(E) Aircraft Product\ + \ and Nuclear Applications Restriction\n\nLICENSEE ACKNOWLEDGES THAT SOFTWARE IS NOT DESIGNED\ + \ OR INTENDED FOR USE IN ON-LINE CONTROL OF AIRCRAFT, AIR TRAFFIC, AIRCRAFT NAVIGATION OR\ + \ AIRCRAFT COMMUNICATIONS; OR IN THE DESIGN, CONSTRUCTION, OPERATION OR MAINTENANCE OF ANY\ + \ NUCLEAR FACILITY. SUN DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR SUCH USES.\n\ + \n2. Ownership\n\n(A) Software As between Sun and Licensee, Sun is and will be the sole\ + \ and exclusive owner of all right, title and interest in and to the Software and other\ + \ than the limited rights granted to Licensee in this Agreement, Licensee will not acquire\ + \ any right, title or interest in the Software.\n\n(B) Modifications\n\nLicensee will own\ + \ Modifications; however, Licensee’ use of the Modifications will be limited solely to Licensee’\ + \ internal, noncommercial uses.\n\n3. Confidentiality\n\n(A) For purposes of this Agreement,\ + \ \"Confidential Information\" means all technical information and any source code or binary\ + \ code which Sun discloses to Licensee under this Agreement.\tLicensee may not disclose\ + \ Confidential Information or use it except for the purposes specified in this Agreement.\ + \ Licensee will protect the confidentiality of Confidential Information to the same degree\ + \ of care, but no less than reasonable care, as Licensee uses to protect its own Confidential\ + \ Information. Licensee's obligations regarding Confidential Information will expire no\ + \ less than five (5) years from the date of receipt of the Confidential Information, except\ + \ for Sun source code which will be protected in perpetuity. Licensee agrees that the Software\ + \ contains trade secrets of Sun.\n\n(B) Notwithstanding any provisions contained in this\ + \ Agreement concerning nondisclosure and non-use of the Confidential Information, the obligations\ + \ of Section 3.(A) above will not apply to any portion of Confidential Information that\ + \ a Licensee can demonstrate in writing is: (i) now, or hereafter through no act or failure\ + \ to act on the part of Licensee becomes, generally known to the general public; (ii) known\ + \ to Licensee at the time of receiving the Confidential Information without an obligation\ + \ of confidentiality; (iii) hereafter rightfully furnished to Licensee by a third party\ + \ without restriction on disclosure; or (iv) independently developed by Licensee without\ + \ any use of the Confidential Information.\n\n(C) Licensee must restrict access to Confidential\ + \ Information to its employees or contractors with a need for this access to perform their\ + \ employment or contractual obligations and who have agreed in writing to be bound by a\ + \ confidentiality obligation which incorporates the protections and restrictions substantially\ + \ as set forth in this Agreement.\n\n(D) It is understood and agreed that, notwithstanding\ + \ any other provision of this Agreement, Licensee's breach of the provisions of Section\ + \ 3 of this Agreement will cause Sun irreparable damage for which recovery of money damages\ + \ would be inadequate, and that Sun will therefore be entitled to seek timely injunctive\ + \ relief to protect Sun’s rights under this Agreement in addition to any and all remedies\ + \ available at law.\n\n4. TERM, Termination and survival \n\n(A) The Agreement is effective\ + \ until terminated.\n\n(B) Either party may terminate this Agreement upon ten (10) days;\ + \ written notice to the other party. However, Sun may terminate this Agreement immediately\ + \ should any Software become, or in Sun’s opinion be likely to become, the subject of a\ + \ claim of infringement of a patent, trade secret or copyright.\n\n(C) Sun may terminate\ + \ this Agreement immediately should Licensee materially breach any of its provisions or\ + \ take any action in derogation of Sun's rights to the Confidential Information licensed\ + \ to Licensee.\n\n(D) Upon termination or expiration of this Agreement, Licensee will immediately\ + \ cease use and destroy the Software and any copies thereof and provide Sun a written statement\ + \ certifying that Licensee has complied with the foregoing obligations.\n\n(E) Rights and\ + \ obligations under this Agreement which by their nature should survive, will remain in\ + \ effect after termination or expiration hereof.\n\n5. DISCLAIMER OF Warranty\n\nLICENSEE\ + \ ACKNOWLEDGES THAT: (i) THE SOFTWARE IS NONCOMMERCIAL, EXPERIMENTAL SOFTWARE; (ii) THE\ + \ SOFTWARE MAY CONTAIN ERRORS, DESIGN FLAWS OR OTHER PROBLEMS WHICH CANNOT OR WILL NOT BE\ + \ CORRECTED BY SUN; (iii) THE SOFTWARE MAY NOT FUNCTION FULLY OR ADEQUATELY UPON INSTALLATION;\ + \ (iv) IT MAY NOT BE POSSIBLE TO MAKE THE SOFTWARE FUNCTIONAL; (v) USE OF THE SOFTWARE MAY\ + \ RESULT IN UNEXPECTED RESULTS, LOSS OF DATA OR OTHER UNPREDICTABLE DAMAGE OR LOSS TO LICENSEE;\ + \ AND (vi) SUN IS UNDER NO OBLIGATION TO CONTINUE FURTHER DEVELOPMENT OF THE SOFTWARE OR\ + \ RELEASE THE SOFTWARE AS A PRODUCT FROM SUN. THE SOFTWARE IS PROVIDED TO LICENSEE \"AS\ + \ IS\". ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS, AND WARRANTIES, INCLUDING ANY\ + \ IMPLIED WARRANTY OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE,\ + \ OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD\ + \ TO BE LEGALLY INVALID. 6. MAINTENANCE AND SUPPORT\n\nSun has no obligation to provide\ + \ maintenance, error corrections, updates or support for the Software under this Agreement.\n\ + \n7. Limitation of Liability \n\nTO THE EXTENT NOT PROHIBITED BY APPLICABLE LAW, SUN'S\ + \ AGGREGATE LIABILITY TO LICENSEE OR TO ANY THIRD PARTY FOR CLAIMS RELATING TO THIS AGREEMENT,\ + \ WHETHER FOR BREACH OR IN TORT, WILL BE LIMITED TO THE FEES PAID BY LICENSEE FOR SOFTWARE\ + \ WHICH IS THE SUBJECT MATTER OF THE CLAIMS. IN NO EVENT WILL SUN BE LIABLE FOR ANY INDIRECT,\ + \ PUNITIVE, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGE IN CONNECTION WITH OR ARISING OUT\ + \ OF THIS AGREEMENT (INCLUDING LOSS OF BUSINESS, REVENUE, PROFITS, USE, DATA OR OTHER ECONOMIC\ + \ ADVANTAGE), HOWEVER IT ARISES, WHETHER FOR BREACH OF IN TORT, EVEN IF SUN HAS BEEN PREVIOUSLY\ + \ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. LIABILITY FOR DAMAGES WILL BE LIMITED AND EXCLUDED,\ + \ EVEN IF ANY EXCLUSIVE REMEDY PROVIDED FOR IN THIS AGREEMENT FAILS OF ITS ESSENTIAL PURPOSE.\n\ + \nLICENSEE WILL HOLD SUN HARMLESS FROM ANY CLAIMS BASED ON LICENSEE’S USE OF THE SOFTWARE\ + \ AND FROM ANY CLAIMS THAT LATER VERSIONS OR RELEASES OF ANY SOFTWARE FURNISHED TO LICENSEE\ + \ ARE INCOMPATIBLE WITH THE SOFTWARE PROVIDED TO LICENSEE UNDER THIS AGREEMENT.\n\n8. Government\ + \ User\n\nSoftware is provided solely under the terms and conditions of this Agreement.\ + \ The FAR and/or DFAR or any other U.S. Government Agency provisions relating to Rights\ + \ in Data, Computer Software and/or Technical Data do not apply, even though some of the\ + \ terms of those provisions may be similar to provisions stated herein.\n\n9. Export Law\n\ + \nLicensee acknowledges and agrees that this Software and/or technology is subject to the\ + \ U.S. Export Administration Laws and Regulations. Diversion of such Software and/or technology\ + \ contrary to U.S. law is prohibited. Licensee agrees that none of this Software and/or\ + \ technology, nor any direct product therefrom, is being or will be acquired for, shipped,\ + \ transferred, or reexported, directly or indirectly, to proscribed or embargoed countries\ + \ or their nationals, nor be used for nuclear activities, chemical biological weapons, or\ + \ missile projects unless authorized by the U.S. Government. Proscribed countries are set\ + \ forth in the U.S. Export Administration Regulations. Countries subject to U.S. embargo\ + \ are: Cuba, Iran, Iraq, Libya, North Korea, Syria, and the Sudan. This list is subject\ + \ to change without further notice from Sun, and Licensee must comply with the list as it\ + \ exists in fact. Licensee certifies that it is not on the U.S. Department of Commerce’s\ + \ Denied Persons List ! or affiliated lists or on the U.S. Department of Treasury’s Specially\ + \ Designated Nationals List. Licensee agrees to comply strictly with all U.S. export laws\ + \ and assumes sole responsibility for obtaining licenses to export or reexport as may be\ + \ required.\n\nLicensee is responsible for complying with any applicable local laws and\ + \ regulations, including but not limited to, the export and import laws and regulations\ + \ of other countries.\n\n10. Governing Law, Jurisdiction and Venue\n\nAny action related\ + \ to this Agreement shall be governed by California law and controlling U.S. federal law.\ + \ The U.N. Convention for the International Sale of Goods and choice of law rules of any\ + \ jurisdiction shall not apply. The parties agree that any action shall be brought in the\ + \ United States District Court for the Northern District of California or the California\ + \ superior Court for the County of Santa Clara, as applicable, and the parties hereby submit\ + \ exclusively to the personal jurisdiction and venue of the United States District Court\ + \ for the Northern District of California and the California Superior Court of the county\ + \ of Santa Clara.\n\n11. NO ASSIGNMENT\n\nNeither party may assign or otherwise transfer\ + \ any of its rights or obligations under this Agreement, without the prior written consent\ + \ of the other party, except that Sun may assign its right to payment and may assign this\ + \ Agreement to an affiliated company.\n\n12. OFFICIAL LANGUAGE The official text of this\ + \ Agreement is in the English language and any interpretation or construction of this Agreement\ + \ will be based thereon. In the event that this Agreement or any documents or notices related\ + \ to it are translated into any other language, the English language version will control.\n\ + \n13. ENTIRE AGREEMENT\n\nThis Agreement is the parties entire agreement relating to the\ + \ Software. It supersedes all prior or contemporaneous oral or written communications, proposals,\ + \ warranties, and representations with respect to its subject matter, and following Licensee's\ + \ acceptance of this license by clicking on the Accept Button, will prevail over any conflicting\ + \ or additional terms of any subsequent quote, order, acknowledgment, or any other communications\ + \ by or between the parties. No modification to this Agreement will be binding, unless in\ + \ writing and signed by an authorized representative of each party." json: sun-project-x.json - yml: sun-project-x.yml + yaml: sun-project-x.yml html: sun-project-x.html - text: sun-project-x.LICENSE + license: sun-project-x.LICENSE - license_key: sun-prop-non-commercial + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-prop-non-commercial other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Permission to use, copy, modify, and distribute this software + and its documentation for NON-COMMERCIAL purposes and without + fee is hereby granted provided that this copyright notice + appears in all copies. + + The Java source code is the confidential and proprietary information + of Sun Microsystems, Inc. ("Confidential Information"). You shall + not disclose such Confidential Information and shall use it only in + accordance with the terms of the license agreement you entered into + with Sun. + + SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF + THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR + ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. json: sun-prop-non-commercial.json - yml: sun-prop-non-commercial.yml + yaml: sun-prop-non-commercial.yml html: sun-prop-non-commercial.html - text: sun-prop-non-commercial.LICENSE + license: sun-prop-non-commercial.LICENSE - license_key: sun-proprietary-jdk + category: Commercial spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Commercial + text: SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. json: sun-proprietary-jdk.json - yml: sun-proprietary-jdk.yml + yaml: sun-proprietary-jdk.yml html: sun-proprietary-jdk.html - text: sun-proprietary-jdk.LICENSE + license: sun-proprietary-jdk.LICENSE - license_key: sun-rpc + category: Permissive spdx_license_key: LicenseRef-scancode-sun-rpc other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Sun RPC is a product of Sun Microsystems, Inc. and is provided for\nunrestricted use\ + \ provided that this legend is included on all tape\nmedia and as a part of the software\ + \ program in whole or part. Users\nmay copy or modify Sun RPC without charge, but are not\ + \ authorized\nto license or distribute it to anyone else except as part of a product or\ + \ \nprogram developed by the user.\n \nSUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY\ + \ KIND INCLUDING THE\nWARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR\n\ + PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.\n \nSun RPC is provided\ + \ with no support and without any obligation on the\npart of Sun Microsystems, Inc. to assist\ + \ in its use, correction,\nmodification or enhancement.\n \nSUN MICROSYSTEMS, INC. SHALL\ + \ HAVE NO LIABILITY WITH RESPECT TO THE\nINFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY\ + \ PATENTS BY SUN RPC\nOR ANY PART THEREOF.\n \nIn no event will Sun Microsystems, Inc. be\ + \ liable for any lost revenue\nor profits or other special, indirect and consequential damages,\ + \ even if \nSun has been advised of the possibility of such damages.\n \nSun Microsystems,\ + \ Inc.\n2550 Garcia Avenue\nMountain View, California 94043" json: sun-rpc.json - yml: sun-rpc.yml + yaml: sun-rpc.yml html: sun-rpc.html - text: sun-rpc.LICENSE + license: sun-rpc.LICENSE - license_key: sun-sdk-spec-1.1 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-sun-sdk-spec-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Java(TM) Development Kit (JDK(TM)) (\"Specification\") \nVersion: 1.1.8 \nStatus: FCS\n\ + \nCopyright 2002 Sun Microsystems, Inc.\n4150 Network Circle, Santa Clara, California 95054,\ + \ U.S.A \nAll rights reserved.\n\nNOTICE; LIMITED LICENSE GRANTS\n\nSun Microsystems, Inc.\ + \ (\"Sun\") hereby grants you a fully-paid, non-exclusive, non-transferable, worldwide,\ + \ limited license (without the right to sublicense), under the Sun's applicable intellectual\ + \ property rights to view, download, use and reproduce the Specification only for the purpose\ + \ of internal evaluation, which shall be understood to include developing applications intended\ + \ to run on an implementation of the Specification provided that such applications do not\ + \ themselves implement any portion(s) of the Specification.\n\nSun also grants you a perpetual,\ + \ non-exclusive, worldwide, fully paid-up, royalty free, limited license (without the right\ + \ to sublicense) under any applicable copyrights or patent rights it may have in the Specification\ + \ to create and/or distribute an Independent Implementation of the Specification that: (i)\ + \ fully implements the Spec(s) including all its required interfaces and functionality;\ + \ (ii) does not modify, subset, superset or otherwise extend the Licensor Name Space, or\ + \ include any public or protected packages, classes, Java interfaces, fields or methods\ + \ within the Licensor Name Space other than those required/authorized by the Specification\ + \ or Specifications being implemented; and (iii) passes the TCK (including satisfying the\ + \ requirements of the applicable TCK Users Guide) for such Specification. The foregoing\ + \ license is expressly conditioned on your not acting outside its scope. No license is granted\ + \ hereunder for any other purpose.\n\nYou need not include limitations (i)-(iii) from the\ + \ previous paragraph or any other particular \"pass through\" requirements in any license\ + \ You grant concerning the use of your Independent Implementation or products derived from\ + \ it. However, except with respect to implementations of the Specification (and products\ + \ derived from them) that satisfy limitations (i)-(iii) from the previous paragraph, You\ + \ may neither: (a) grant or otherwise pass through to your licensees any licenses under\ + \ Sun's applicable intellectual property rights; nor (b) authorize your licensees to make\ + \ any claims concerning their implementation's compliance with the Spec in question.\n\n\ + For the purposes of this Agreement: \"Independent Implementation\" shall mean an implementation\ + \ of the Specification that neither derives from any of Sun's source code or binary code\ + \ materials nor, except with an appropriate and separate license from Sun, includes any\ + \ of Sun's source code or binary code materials; and \"Licensor Name Space\" shall mean\ + \ the public class or interface declarations whose names begin with \"java\", \"javax\"\ + , \"com.sun\" or their equivalents in any subsequent naming convention adopted by Sun through\ + \ the Java Community Process, or any recognized successors or replacements thereof.\n\n\ + This Agreement will terminate immediately without notice from Sun if you fail to comply\ + \ with any material provision of or act outside the scope of the licenses granted above.\n\ + \nTRADEMARKS\n\nNo right, title, or interest in or to any trademarks, service marks, or\ + \ trade names of Sun or Sun's licensors is granted hereunder. Sun, Sun Microsystems, the\ + \ Sun logo, Java, J2SE, JDK, and the Java Coffee Cup logo are trademarks or registered trademarks\ + \ of Sun Microsystems, Inc. in the U.S. and other countries.\n\nDISCLAIMER OF WARRANTIES\n\ + \nTHE SPECIFICATION IS PROVIDED \"AS IS\". SUN MAKES NO REPRESENTATIONS OR WARRANTIES, EITHER\ + \ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, THAT THE CONTENTS OF THE SPECIFICATION\ + \ ARE SUITABLE FOR ANY PURPOSE OR THAT ANY PRACTICE OR IMPLEMENTATION OF SUCH CONTENTS WILL\ + \ NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADE SECRETS OR OTHER RIGHTS. This\ + \ document does not represent any commitment to release or implement any portion of the\ + \ Specification in any product.\n\nTHE SPECIFICATION COULD INCLUDE TECHNICAL INACCURACIES\ + \ OR TYPOGRAPHICAL ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION THEREIN; THESE\ + \ CHANGES WILL BE INCORPORATED INTO NEW VERSIONS OF THE SPECIFICATION, IF ANY. SUN MAY MAKE\ + \ IMPROVEMENTS AND/OR CHANGES TO THE PRODUCT(S) AND/OR THE PROGRAM(S) DESCRIBED IN THE SPECIFICATION\ + \ AT ANY TIME. Any use of such changes in the Specification will be governed by the then-current\ + \ license for the applicable version of the Specification.\n\nLIMITATION OF LIABILITY\n\n\ + TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR\ + \ ANY DAMAGES, INCLUDING WITHOUT LIMITATION, LOST REVENUE, PROFITS OR DATA, OR FOR SPECIAL,\ + \ INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS\ + \ OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO ANY FURNISHING, PRACTICING, MODIFYING\ + \ OR ANY USE OF THE SPECIFICATION, EVEN IF SUN AND/OR ITS LICENSORS HAVE BEEN ADVISED OF\ + \ THE POSSIBILITY OF SUCH DAMAGES.\n\nYou will indemnify, hold harmless, and defend Sun\ + \ and its licensors from any claims arising or resulting from: (i) your use of the Specification;\ + \ (ii) the use or distribution of your Java application, applet and/or clean room implementation;\ + \ and/or (iii) any claims that later versions or releases of any Specification furnished\ + \ to you are incompatible with the Specification provided to you under this license.\n\n\ + RESTRICTED RIGHTS LEGEND\n\nU.S. Government: If this Specification is being acquired by\ + \ or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor\ + \ (at any tier), then the Government's rights in the Software and accompanying documentation\ + \ shall be only as set forth in this license; this is in accordance with 48 C.F.R. 227.7201\ + \ through 227.7202-4 (for Department of Defense (DoD) acquisitions) and with 48 C.F.R. 2.101\ + \ and 12.212 (for non-DoD acquisitions).\n\nREPORT\n\nYou may wish to report any ambiguities,\ + \ inconsistencies or inaccuracies you may find in connection with your use of the Specification\ + \ (\"Feedback\"). To the extent that you provide Sun with any Feedback, you hereby: (i)\ + \ agree that such Feedback is provided on a non-proprietary and non-confidential basis,\ + \ and (ii) grant Sun a perpetual, non-exclusive, worldwide, fully paid-up, irrevocable license,\ + \ with the right to sublicense through multiple levels of sublicensees, to incorporate,\ + \ disclose, and use without limitation the Feedback for any purpose related to the Specification\ + \ and future versions, implementations, and test suites thereof." json: sun-sdk-spec-1.1.json - yml: sun-sdk-spec-1.1.yml + yaml: sun-sdk-spec-1.1.yml html: sun-sdk-spec-1.1.html - text: sun-sdk-spec-1.1.LICENSE + license: sun-sdk-spec-1.1.LICENSE - license_key: sun-sissl-1.0 + category: Free Restricted spdx_license_key: LicenseRef-scancode-sun-sissl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Sun Industry Standards Source License 1.0 + + DEFINITIONS + + 1.1. "Commercial Use" means distribution or otherwise + making the Original Code available to a third party. + + 1.2. "Contributor Version" means the combination of the + Original Code, and the Modifications made by that particular + Contributor. + + 1.3. "Electronic Distribution Mechanism" means a mechanism + generally accepted in the software development community for + the electronic transfer of data. + + 1.4. "Executable" means Original Code in any form other + than Source Code. + + 1.5. "Initial Developer" means the individual or entity + identified as the Initial Developer in the Source Code + notice required by 2 (Exhibit A) + + 1.6. "Larger Work" means a work which combines Original + Code or portions thereof with code not governed by the terms + of this License. + + 1.7. "License" means this document. + + 1.8. "Licensable" means having the right to grant, to the + maximum extent possible, whether at the time of the initial + grant or subsequently acquired, any and all of the rights + conveyed herein. + + 1.9. "Modifications" means any addition to or deletion from + the substance or structure of either the Original Code or + any previous Modifications. A Modification is: + + A. Any addition to or deletion from the contents of a file + containing Original Code or previous Modifications. + + B. Any new file that contains any part of the Original Code + or previous Modifications. . + + 1.10. "Original Code" means Source Code of computer + software code which is described in the Source Code notice + required by Exhibit A as Original Code. + + 1.11. "Patent Claims" means any patent claims, now owned or + hereafter acquired, including without limitation, method, + process, and apparatus claims, in any patent Licensable by + grantor. + + 1.12. "Source Code" means the preferred form of the + Original Code for making modifications to it, including all + modules it contains, plus any associated interface + definition files, or scripts used to control compilation and + installation of an Executable. + + 1.13. "Standards" means the standard identified in Exhibit + B or a subsequent version of such standard. + + 1.14. "You" or "Your" means an individual or a legal entity + exercising rights under, and complying with all of the terms + of, this License or a future version of this License issued + under Section 6.1. For legal entities, "You" includes any + entity which controls, is controlled by, or is under common + control with You. For purposes of this definition, + "control" means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by + contract or otherwise, or (b) ownership of more than fifty + percent (50%) of the outstanding shares or beneficial + ownership of such entity. + + 2.0 SOURCE CODE LICENSE + + 2.1 The Initial Developer Grant: The Initial Developer + hereby grants You a world-wide, royalty-free, non-exclusive + license, subject to third party intellectual property + claims: + + a) under intellectual property rights (other than patent or + trademark) Licensable by Initial Developer to use, + reproduce, modify, display, perform, sub license and + distribute the Original Code (or portions thereof )with or + without Modifications, and/or as part of a Larger Work; and + + b) under Patents Claims infringed by the making, using or + selling of Original Code, to make, have made, use, practice, + sell, and offer for sale, and/or otherwise dispose of the + Original Code (or portions thereof). + + c) the licenses granted in this Section 2.1(a ) and (b) are + effective on the date Initial Developer first distributes + Original Code under the terms of this License. + + d) Notwithstanding Section 2.1(b )above, no patent license + is granted: 1) for code that You delete from the Original + Code; 2) separate from the Original Code; or 3) for + infringements caused by: i) the modification of the + Original Code or + + ii) the combination of the Original Code with other software + or devices, including but not limited to Modifications. + + 3.0 DISTRIBUTION OBLIGATIONS + + 3.1 Application of License. The Source Code version of + Original Code may be distributed only under the terms of + this License or a future version of this License released + under Section 6.1, and You must include a copy of this + License with every copy of the Source Code You distribute. + You may not offer or impose any terms on any Source Code + version that alters or restricts the applicable version of + this License or the recipient's rights hereunder. Your + license for shipment of the Contributor Version is + conditioned upon your full compliance with this Section. + The Modifications which you create must comply with all + requirements set out by the Standards body in effect 120 + days before You ship the Contributor Version. In the event + that the Modifications do not meet such requirements, You + agree to publish (i) any deviation from the Standards + protocol resulting from implementation of your Modifications + and (ii) a reference implementation of Your Modifications, + and to make any such deviation and reference implementation + available to all third parties under the same terms as the + license on a royalty free basis within thirty (30) days of + Your first customer shipment of Your Modifications. + + 3.2 Required Notices. You must duplicate the notice in + Exhibit A in each file of the Source Code. If it is not + possible to put such notice in a particular Source Code file + due to its structure, then You must include such notice in a + location (such as a relevant directory ) where a user would + be likely to look for such a notice. If You created one or + more Modifications ) You may add your name as a Contributor + to the notice described in Exhibit A. You must also + duplicate this License in any documentation for the Source + Code where You describe recipients' rights or ownership + rights relating to Initial Code. You may choose to offer, + and to charge a fee for, warranty, support, indemnity or + liability obligations to one or more recipients of Your + version of the Code. However, You may do so only + + on Your own behalf, and not on behalf of the Initial + Developer. You must make it absolutely clear than any such + warranty, support, indemnity or liability obligation is + offered by You alone, and You hereby agree to indemnify the + Initial Developer for any liability incurred by the Initial + Developer as a result of warranty, support, indemnity or + liability terms You offer. + + 3.3 Distribution of Executable Versions. You may distribute + Original Code in Executable and Source form only if the + requirements of Section 3.1 and 3.2 have been met for that + Original Code, and if You include a notice stating that the + Source Code version of the Original Code is available under + the terms of this License. The notice must be conspicuously + included in any notice in an Executable or Source versions, + related documentation or collateral in which You describe + recipients' rights relating to the Original Code. You may + distribute the Executable and Source versions of Your + version of the Code or ownership rights under a license of + Your choice, which may contain terms different from this + License, provided that You are in compliance with the terms + of this License. If You distribute the Executable and + Source versions under a different license You must make it + absolutely clear that any terms which differ from this + License are offered by You alone, not by the Initial + Developer . You hereby agree to indemnify the Initial + Developer for any liability incurred by the Initial + Developer as a result of any such terms You offer . + + 3.4 Larger Works. You may create a Larger Work by combining + Original Code with other code not governed by the terms of + this License and distribute the Larger Work as a single + product. In such a case, You must make sure the + requirements of this License are fulfilled for the Original + Code. + + 4.0 INABILITY TO COMPLY DUE TO STATUTE OR REGULATION + + If it is impossible for You to comply with any of the terms + of this License with respect to some or all of the Original + Code due to statute, judicial order, or regulation then You + must: + + a) comply with the terms of this License to the maximum + extent possible; and + + b) describe the limitations and the code they affect. Such + description must be included in the LEGAL file described in + Section 3.2 and must be included with all distributions of + the Source Code. Except to the extent prohibited by statute + or regulation, such description must be sufficiently + detailed for a recipient of ordinary skill to be able to + understand it. + + 5.0 APPLICATION OF THIS LICENSE This License applies to code + to which the Initial Developer has attached the notice in + Exhibit A and to related Modifications as set out in Section + 3.1. + + 6.0 VERSIONS OF THE LICENSE + + 6.1 New Versions. Sun Microsystems, Inc. Sun may publish + revised and/or new versions of the License from time to + time. Each version will be given a distinguishing version + number . + + 6.2 Effect of New Versions. Once Original Code has been + published under a particular version of the License, You may + always continue to use it under the terms of that version. + You may also choose to use such Original Code under the + terms of any subsequent version of the License published by + Sun. No one other than Sun has the right to modify the + terms applicable to Original Code. + + 7. DISCLAIMER OF W ARRANTY. ORIGINAL CODE IS PROVIDED + UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF + ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT + LIMITATION, WARRANTIES THAT THE ORIGINAL CODE IS FREE OF + DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR + NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND + PERFORMANCE OF THE ORIGINAL CODE IS WITH YOU. SHOULD ANY + ORIGINAL CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE + INITIAL DEVELOPER )ASSUME THE COST OF ANY NECESSARY + SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF + WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO + USE OF ANY ORIGINAL CODE IS AUTHORIZED HEREUNDER EXCEPT + UNDER THIS DISCLAIMER. + + 8.0 TERMINATION + + 8.1 This License and the rights granted hereunder will + terminate automatically if You fail to comply with terms + herein and fail to cure such breach within 30 days of + becoming aware of the breach. All sublicenses to the + Original Code which are properly granted shall survive any + termination of this License. Provisions which, by their + nature, must remain in effect beyond the termination of this + License shall survive. + + 8.2 .In the event of termination under Section 8.1 above, + all end user license agreements (excluding distributors and + resellers) which have been validly granted by You or any + distributor hereunder prior to termination shall survive + termination. + + 9.0 LIMIT OF LIABILITY UNDER NO CIRCUMSTANCES AND UNDER NO + LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE) ,CONTRACT, + OR OTHER WISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER + CONTRIBUTOR, OR ANY DISTRIBUTOR OF ORIGINAL CODE, OR ANY + SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR + ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES + OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR + LOSS OF GOOD WILL, WORK STOPPAGE, COMPUTER FAILURE OR + MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR + LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE + POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY + SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY + RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT + APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME + JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF + INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND + LIMITATION MAY NOT APPLY TO YOU. + + 10.0 U .S. GOVERNMENT END USERS U.S. Government: If this + Software is being acquired by or on behalf of the U.S. + Government or by a U.S. Government prime contractor or + subcontractor (at any tier), then the Government's rights in + the Software and accompanying documentation shall be only as + set forth in this license; this is in accordance with 48 C.F + .R. 227.7201 through 227.7202-4 (for Department of Defense + (DoD) acquisitions )and with 48 C.F.R.2.101 and 12.212( for + non-DoD acquisitions). + + 11.0 MISCELLANEOUS This License represents the complete + agreement concerning subject matter hereof. If any + provision of this License is held to be unenforceable, such + provision shall be reformed only to the extent necessary to + make it enforceable. This License shall be governed by + California law provisions (except to the extent applicable + law, if any, provides otherwise), excluding its + conflict-of-law provisions. With respect to disputes in + which at least one party is a citizen of, or an entity + chartered or registered to do business in the United States + of America, any litigation relating to this License shall be + subject to the jurisdiction of the Federal Courts of the + Northern District of California, with venue lying in Santa + Clara County, California, with the losing party responsible + for costs, including without limitation, court costs and + reasonable attorneys fees and expenses. The application of + the United Nations Convention on Contracts for the + International Sale of Goods is expressly excluded. Any law + or regulation which provides that the language of a contract + shall be construed against the drafter shall not apply to + this License. + + EXHIBIT A - Sun Standards + + "The contents of this file are subject to the Sun Standards + License Version 1.0 the (the "License";) You may not use + this file except in compliance with the License. You may + obtain a copy of the License at + . + + Software distributed under the License is distributed on + an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either + express or implied. See the License for the specific + language governing rights and limitations under the License. + + The Original Code is Copyright 1998 by Sun Microsystems, Inc + + The Initial Developer of the Original Code is: Sun + Microsystems, Inc. + + Portions created by are + Copyright . + + All Rights Reserved. + + Contributors: . + + EXHIBIT B - Sun Standards + + The Standard is defined as the following IETF RFCs: + + RFC1831: RPC: Remote Procedure Call Protocol Specification + Version 2 RFC1832: XDR: External Data REpresentation + Standard RFC1833: Binding Protocols for ONC RPC Version 2 + RFC2078: Generic Security Service Application Program + Interface, Version 2 RFC2203: RPCSEC_GSS Protocol + Specification RFC2695: Authentication Mechanisms for ONC RPC json: sun-sissl-1.0.json - yml: sun-sissl-1.0.yml + yaml: sun-sissl-1.0.yml html: sun-sissl-1.0.html - text: sun-sissl-1.0.LICENSE + license: sun-sissl-1.0.LICENSE - license_key: sun-sissl-1.1 + category: Proprietary Free spdx_license_key: SISSL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Sun Industry Standards Source License - Version 1.1\n\n 1.0 DEFINITIONS\n\n 1.1\ + \ \"Commercial Use\" means distribution or otherwise making the\n Original Code available\ + \ to a third party.\n\n 1.2 \"Contributor Version\" means the combination of the Original\ + \ Code,\n and the Modifications made by that particular Contributor.\n\n 1.3 \"Electronic\ + \ Distribution Mechanism\" means a mechanism generally\n accepted in the software development\ + \ community for the electronic\n transfer of data.\n\n 1.4 \"Executable\" means Original\ + \ Code in any form other than Source\n Code.\n\n 1.5 \"Initial Developer\" means the\ + \ individual or entity identified as\n the Initial Developer in the Source Code notice\ + \ required by Exhibit A.\n\n 1.6 \"Larger Work\" means a work which combines Original\ + \ Code or\n portions thereof with code not governed by the terms of this License.\n\n\ + \ 1.7 \"License\" means this document.\n\n 1.8 \"Licensable\" means having the right\ + \ to grant, to the maximum\n extent possible, whether at the time of the initial grant\ + \ or\n subsequently acquired, any and all of the rights conveyed herein.\n\n 1.9 \"\ + Modifications\" means any addition to or deletion from the\n substance or structure of\ + \ either the Original Code or any previous\n Modifications. A Modification is:\n A.\ + \ Any addition to or deletion from the contents of a file containing\n Original Code\ + \ or previous Modifications.\n B. Any new file that contains any part of the Original\ + \ Code or\n previous Modifications.\n\n 1.10 \"Original Code\" means Source Code\ + \ of computer software code which\n is described in the Source Code notice required by\ + \ Exhibit A as Original Code.\n\n 1.11 \"Patent Claims\" means any patent claim(s), now\ + \ owned or hereafter\n acquired, including without limitation, method, process, and apparatus\n\ + \ claims, in any patent Licensable by grantor.\n\n 1.12 \"Source Code\" means the preferred\ + \ form of the Original Code for\n making modifications to it, including all modules it\ + \ contains, plus\n any associated interface definition files, or scripts used to control\n\ + \ compilation and installation of an Executable.\n\n 1.13 \"Standards\" means the standards\ + \ identified in Exhibit B.\n\n 1.14 \"You\" (or \"Your\") means an individual or a legal\ + \ entity\n exercising rights under, and complying with all of the terms of, this\n License\ + \ or a future version of this License issued under Section 6.1.\n For legal entities,\ + \ \"You'' includes any entity which controls, is\n controlled by, or is under common control\ + \ with You. For purposes of\n this definition, \"control'' means (a) the power, direct\ + \ or indirect,\n to cause the direction or management of such entity, whether by\n contract\ + \ or otherwise, or (b) ownership of more than fifty percent\n (50%) of the outstanding\ + \ shares or beneficial ownership of such\n entity.\n\n 2.0 SOURCE CODE LICENSE\n\n \ + \ 2.1 The Initial Developer Grant\n The Initial Developer hereby grants You a world-wide,\ + \ royalty-free,\n non-exclusive license, subject to third party intellectual property\n\ + \ claims:\n (a) under intellectual property rights (other than patent or\n trademark)\ + \ Licensable by Initial Developer to use, reproduce,\n modify, display, perform, sublicense\ + \ and distribute the Original\n Code (or portions thereof) with or without Modifications,\ + \ and/or\n as part of a Larger Work; and\n (b) under Patents Claims infringed by\ + \ the making, using or selling\n of Original Code, to make, have made, use, practice,\ + \ sell, and\n offer for sale, and/or otherwise dispose of the Original Code (or\n\ + \ portions thereof).\n (c) the licenses granted in this Section 2.1(a) and (b) are\n\ + \ effective on the date Initial Developer first distributes Original\n Code\ + \ under the terms of this License.\n (d) Notwithstanding Section 2.1(b) above, no patent\ + \ license is\n granted: 1) for code that You delete from the Original Code; 2)\n \ + \ separate from the Original Code; or 3) for infringements caused\n by: i) the\ + \ modification of the Original Code or ii) the\n combination of the Original Code\ + \ with other software or devices,\n including but not limited to Modifications.\n\n\ + \ 3.0 DISTRIBUTION OBLIGATIONS\n\n 3.1 Application of License.\n The Source Code version\ + \ of Original Code may be distributed only under\n the terms of this License or a future\ + \ version of this License released\n under Section 6.1, and You must include a copy of\ + \ this License with\n every copy of the Source Code You distribute. You may not offer\ + \ or\n impose any terms on any Source Code version that alters or restricts\n the applicable\ + \ version of this License or the recipients' rights\n hereunder. Your license for shipment\ + \ of the Contributor Version is\n conditioned upon Your full compliance with this Section.\ + \ The\n Modifications which You create must comply with all requirements set\n out by\ + \ the Standards body in effect one hundred twenty (120) days\n before You ship the Contributor\ + \ Version. In the event that the\n Modifications do not meet such requirements, You agree\ + \ to publish\n either (i) any deviation from the Standards protocol resulting from\n \ + \ implementation of Your Modifications and a reference implementation of\n Your Modifications\ + \ or (ii) Your Modifications in Source Code form, and\n to make any such deviation and\ + \ reference implementation or\n Modifications available to all third parties under the\ + \ same terms as\n this license on a royalty free basis within thirty (30) days of Your\n\ + \ first customer shipment of Your Modifications.\n\n 3.2 Required Notices.\n You must\ + \ duplicate the notice in Exhibit A in each file of the Source\n Code. If it is not possible\ + \ to put such notice in a particular Source\n Code file due to its structure, then You\ + \ must include such notice in a\n location (such as a relevant directory) where a user\ + \ would be likely\n to look for such a notice. If You created one or more Modification(s)\n\ + \ You may add Your name as a Contributor to the notice described in\n Exhibit A. You\ + \ must also duplicate this License in any documentation\n for the Source Code where You\ + \ describe recipients' rights or ownership\n rights relating to Initial Code. You may\ + \ choose to offer, and to\n charge a fee for, warranty, support, indemnity or liability\n\ + \ obligations to one or more recipients of Your version of the Code.\n However, You\ + \ may do so only on Your own behalf, and not on behalf of\n the Initial Developer. You\ + \ must make it absolutely clear than any such\n warranty, support, indemnity or liability\ + \ obligation is offered by You\n alone, and You hereby agree to indemnify the Initial\ + \ Developer for any\n liability incurred by the Initial Developer as a result of warranty,\n\ + \ support, indemnity or liability terms You offer.\n\n 3.3 Distribution of Executable\ + \ Versions.\n You may distribute Original Code in Executable and Source form only if\n\ + \ the requirements of Sections 3.1 and 3.2 have been met for that\n Original Code, and\ + \ if You include a notice stating that the Source\n Code version of the Original Code\ + \ is available under the terms of this\n License. The notice must be conspicuously included\ + \ in any notice in an\n Executable or Source versions, related documentation or collateral\ + \ in\n which You describe recipients' rights relating to the Original Code.\n You may\ + \ distribute the Executable and Source versions of Your version\n of the Code or ownership\ + \ rights under a license of Your choice, which\n may contain terms different from this\ + \ License, provided that You are\n in compliance with the terms of this License. If You\ + \ distribute the\n Executable and Source versions under a different license You must make\n\ + \ it absolutely clear that any terms which differ from this License are\n offered by\ + \ You alone, not by the Initial Developer. You hereby agree\n to indemnify the Initial\ + \ Developer for any liability incurred by the\n Initial Developer as a result of any such\ + \ terms You offer.\n\n 3.4 Larger Works.\n You may create a Larger Work by combining\ + \ Original Code with other\n code not governed by the terms of this License and distribute\ + \ the\n Larger Work as a single product. In such a case, You must make sure\n the requirements\ + \ of this License are fulfilled for the Original Code.\n\n 4.0 INABILITY TO COMPLY DUE\ + \ TO STATUTE OR REGULATION\n\n If it is impossible for You to comply with any of the terms\ + \ of this\n License with respect to some or all of the Original Code due to\n statute,\ + \ judicial order, or regulation then You must: (a) comply with\n the terms of this License\ + \ to the maximum extent possible; and (b)\n describe the limitations and the code they\ + \ affect. Such description\n must be included in the LEGAL file described in Section 3.2\ + \ and must\n be included with all distributions of the Source Code. Except to the\n \ + \ extent prohibited by statute or regulation, such description must be\n sufficiently\ + \ detailed for a recipient of ordinary skill to be able to\n understand it.\n\n 5.0\ + \ APPLICATION OF THIS LICENSE\n\n This License applies to code to which the Initial Developer\ + \ has\n attached the notice in Exhibit A and to related Modifications as set\n out in\ + \ Section 3.1.\n\n 6.0 VERSIONS OF THE LICENSE\n\n 6.1 New Versions.\n Sun may publish\ + \ revised and/or new versions of the License from time\n to time. Each version will be\ + \ given a distinguishing version number.\n\n 6.2 Effect of New Versions.\n Once Original\ + \ Code has been published under a particular version of\n the License, You may always\ + \ continue to use it under the terms of that\n version. You may also choose to use such\ + \ Original Code under the terms\n of any subsequent version of the License published by\ + \ Sun. No one\n other than Sun has the right to modify the terms applicable to\n Original\ + \ Code.\n\n 7.0 DISCLAIMER OF WARRANTY\n\n ORIGINAL CODE IS PROVIDED UNDER THIS LICENSE\ + \ ON AN \"AS IS\" BASIS,\n WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,\ + \ INCLUDING,\n WITHOUT LIMITATION, WARRANTIES THAT THE ORIGINAL CODE IS FREE OF\n DEFECTS,\ + \ MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.\n THE ENTIRE RISK AS TO\ + \ THE QUALITY AND PERFORMANCE OF THE ORIGINAL CODE\n IS WITH YOU. SHOULD ANY ORIGINAL\ + \ CODE PROVE DEFECTIVE IN ANY RESPECT,\n YOU (NOT THE INITIAL DEVELOPER) ASSUME THE COST\ + \ OF ANY NECESSARY\n SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY\n \ + \ CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY ORIGINAL\n CODE IS AUTHORIZED\ + \ HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n 8.0 TERMINATION\n\n 8.1 This License and\ + \ the rights granted hereunder will terminate\n automatically if You fail to comply with\ + \ terms herein and fail to cure\n such breach within 30 days of becoming aware of the\ + \ breach. All\n sublicenses to the Original Code which are properly granted shall\n \ + \ survive any termination of this License. Provisions which, by their\n nature, must remain\ + \ in effect beyond the termination of this License\n shall survive.\n\n 8.2 In the event\ + \ of termination under Section 8.1 above, all end user\n license agreements (excluding\ + \ distributors and resellers) which have\n been validly granted by You or any distributor\ + \ hereunder prior to\n termination shall survive termination.\n\n 9.0 LIMIT OF LIABILITY\n\ + \n UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\n (INCLUDING NEGLIGENCE),\ + \ CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL\n DEVELOPER, ANY OTHER CONTRIBUTOR, OR\ + \ ANY DISTRIBUTOR OF ORIGINAL CODE,\n OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE\ + \ TO ANY PERSON FOR\n ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY\n\ + \ CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,\n WORK STOPPAGE,\ + \ COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\n COMMERCIAL DAMAGES OR LOSSES,\ + \ EVEN IF SUCH PARTY SHALL HAVE BEEN\n INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS\ + \ LIMITATION OF\n LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\n\ + \ RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\n PROHIBITS SUCH\ + \ LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE\n EXCLUSION OR LIMITATION OF INCIDENTAL\ + \ OR CONSEQUENTIAL DAMAGES, SO\n THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\ + \n 10.0 U.S. GOVERNMENT END USERS\n\n U.S. Government: If this Software is being acquired\ + \ by or on behalf of\n the U.S. Government or by a U.S. Government prime contractor or\n\ + \ subcontractor (at any tier), then the Government's rights in the\n Software and accompanying\ + \ documentation shall be only as set forth in\n this license; this is in accordance with\ + \ 48 C.F.R. 227.7201 through\n 227.7202-4 (for Department of Defense (DoD) acquisitions)\ + \ and with 48\n C.F.R. 2.101 and 12.212 (for non-DoD acquisitions).\n\n 11.0 MISCELLANEOUS\n\ + \n This License represents the complete agreement concerning subject\n matter hereof.\ + \ If any provision of this License is held to be\n unenforceable, such provision shall\ + \ be reformed only to the extent\n necessary to make it enforceable. This License shall\ + \ be governed by\n California law provisions (except to the extent applicable law, if\n\ + \ any, provides otherwise), excluding its conflict-of-law provisions.\n With respect\ + \ to disputes in which at least one party is a citizen of,\n or an entity chartered or\ + \ registered to do business in the United\n States of America, any litigation relating\ + \ to this License shall be\n subject to the jurisdiction of the Federal Courts of the\ + \ Northern\n District of California, with venue lying in Santa Clara County,\n California,\ + \ with the losing party responsible for costs, including\n without limitation, court costs\ + \ and reasonable attorneys' fees and\n expenses. The application of the United Nations\ + \ Convention on\n Contracts for the International Sale of Goods is expressly excluded.\n\ + \ Any law or regulation which provides that the language of a contract\n shall be construed\ + \ against the drafter shall not apply to this License.\n\n EXHIBIT A - Sun Standards License\n\ + \"The contents of this file are subject to the Sun Standards\nLicense Version 1.1 (the \"\ + License\");\nYou may not use this file except in compliance with the\nLicense. You may obtain\ + \ a copy of the\nLicense at .\n\nSoftware distributed under the License is distributed\ + \ on\nan \"AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either\nexpress or implied. See\ + \ the License for the specific\nlanguage governing rights and limitations under the License.\n\ + \nThe Original Code is .\n\nThe Initial Developer of the Original Code is:\nSun Microsystems,\ + \ Inc..\n\nPortions created by: \n\nare Copyright (C): \n\nAll Rights Reserved.\n\nContributor(s):\ + \ \n\n EXHIBIT B - Standards\n\n The Standard is defined as the following:\n\n OpenOffice.org\ + \ XML File Format Specification, located at\n http://xml.openoffice.org\n\n OpenOffice.org\ + \ Application Programming Interface Specification,\n located at\n http://api.openoffice.org\n\ + \n We welcome your feedback.\n CollabNet, Inc. CollabNet is a trademark of CollabNet,\ + \ Inc.\n Sun, Sun Microsystems, the Sun Logo, Solaris, Java, StarOffice,\n StarOffice\ + \ 6.0 and StarSuite 6.0 are trademarks or registered\n trademarks of Sun Microsystems,\ + \ Inc., in the United States and other countries." json: sun-sissl-1.1.json - yml: sun-sissl-1.1.yml + yaml: sun-sissl-1.1.yml html: sun-sissl-1.1.html - text: sun-sissl-1.1.LICENSE + license: sun-sissl-1.1.LICENSE - license_key: sun-sissl-1.2 + category: Proprietary Free spdx_license_key: SISSL-1.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "SUN INDUSTRY STANDARDS SOURCE LICENSE \nVersion 1.2 \n\n1.0 DEFINITIONS\n1.1 Commercial\ + \ Use means distribution or otherwise making the Original Code available to a third party.\n\ + \n1.2 Contributor Version means the combination of the Original Code, and the Modifications\ + \ made by that particular Contributor.\n\n1.3 Electronic Distribution Mechanism means a\ + \ mechanism generally accepted in the software development community for the electronic\ + \ transfer of data.\n\n1.4 Executable means Original Code in any form other than Source\ + \ Code.\n\n1.5 Initial Developer means the individual or entity identified as the Initial\ + \ Developer in the Source Code notice required by Exhibit A.\n\n1.6 Larger Work means a\ + \ work which combines Original Code or portions thereof with code not governed by the terms\ + \ of this License.\n\n1.7 License means this document.\n\n1.8 Licensable means having the\ + \ right to grant, to the maximum extent possible, whether at the time of the initial grant\ + \ or subsequently acquired, any and all of the rights conveyed herein.\n\n1.9 Modifications\ + \ means any addition to or deletion from the substance or structure of either the Original\ + \ Code or any previous Modifications. A Modification is: \nA. Any addition to or deletion\ + \ from the contents of a file containing Original Code or previous Modifications. \nB. Any\ + \ new file that contains any part of the Original Code or previous Modifications.\n\n1.10\ + \ Original Code means Source Code of computer software code which is described in the Source\ + \ Code notice required by Exhibit A as Original Code.\n\n1.11 Patent Claims means any patent\ + \ claim(s), now owned or hereafter acquired, including without limitation, method, process,\ + \ and apparatus claims, in any patent Licensable by grantor.\n\n1.12 Source Code means the\ + \ preferred form of the Original Code for making modifications to it, including all modules\ + \ it contains, plus any associated interface definition files, or scripts used to control\ + \ compilation and installation of an Executable.\n\n1.13 Standards means the standards identified\ + \ in Exhibit B.\n\n1.14 You (or Your) means an individual or a legal entity exercising rights\ + \ under, and complying with all of the terms of, this License or a future version of this\ + \ License issued under Section 6.1. For legal entities, You includes any entity which controls,\ + \ is controlled by, or is under common control with You. For purposes of this definition,\ + \ control means (a) the power, direct or indirect, to cause the direction or management\ + \ of such entity, whether by contract or otherwise, or (b) ownership of more than fifty\ + \ percent (50%) of the outstanding shares or beneficial ownership of such entity.\n\n\n\ + 2.0 SOURCE CODE LICENSE\n\n2.1 The Initial Developer Grant The Initial Developer hereby\ + \ grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual\ + \ property claims: \n(a)under intellectual property rights (other than patent or trademark)\ + \ Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense\ + \ and distribute the Original Code (or portions thereof) with or without Modifications,\ + \ and/or as part of a Larger Work; and \n(b) under Patents Claims infringed by the making,\ + \ using or selling of Original Code, to make, have made, use, practice, sell, and offer\ + \ for sale, and/or otherwise dispose of the Original Code (or portions thereof). \n(c) the\ + \ licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer\ + \ first distributes Original Code under the terms of this License. \n(d) Notwithstanding\ + \ Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the\ + \ Original Code; 2) separate from the Original Code; or 3) for infringements caused by:\ + \ i) the modification of the Original Code or ii) the combination of the Original Code with\ + \ other software or devices, including but not limited to Modifications.\n\n\n3.0 DISTRIBUTION\ + \ OBLIGATIONS\n\n3.1 Application of License. \nThe Source Code version of Original Code\ + \ may be distributed only under the terms of this License or a future version of this License\ + \ released under Section 6.1, and You must include a copy of this License with every copy\ + \ of the Source Code You distribute. You may not offer or impose any terms on any Source\ + \ Code version that alters or restricts the applicable version of this License or the recipients\ + \ rights hereunder. Your license for shipment of the Contributor Version is conditioned\ + \ upon Your full compliance with this Section. The Modifications which You create must comply\ + \ with all requirements set out by the Standards body in effect one hundred twenty (120)\ + \ days before You ship the Contributor Version. In the event that the Modifications do not\ + \ meet such requirements, You agree to publish either (i) any deviation from the Standards\ + \ protocol resulting from implementation of Your Modifications and a reference implementation\ + \ of Your Modifications or (ii) Your Modifications in Source Code form, and to make any\ + \ such deviation and reference implementation or Modifications available to all third parties\ + \ under the same terms a this license on a royalty free basis within thirty (30) days of\ + \ Your first customer shipment of Your Modifications. Additionally, in the event that the\ + \ Modifications you create do not meet the requirements set out in this Section, You agree\ + \ to comply with the Standards requirements set out in Exhibit B.\n\n3.2 Required Notices.\ + \ You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not\ + \ possible to put such notice in a particular Source Code file due to its structure, then\ + \ You must include such notice in a location (such as a relevant directory) where a user\ + \ would be likely to look for such a notice. If You created one or more Modification(s)\ + \ You may add Your name as a Contributor to the notice described in Exhibit A. You must\ + \ also duplicate this License in any documentation for the Source Code where You describe\ + \ recipients rights or ownership rights relating to Initial Code. \nYou may choose to offer,\ + \ and to charge a fee for, warranty, support, indemnity or liability obligations to one\ + \ or more recipients of Your version of the Code. However, You may do so only on Your own\ + \ behalf, and not on behalf of the Initial Developer. You must make it absolutely clear\ + \ than any such warranty, support, indemnity or liability obligation is offered by You alone,\ + \ and You hereby agree to indemnify the Initial Developer for any liability incurred by\ + \ the Initial Developer as a result of warranty, support, indemnity or liability terms You\ + \ offer.\n\n3.3 Distribution of Executable Versions. You may distribute Original Code in\ + \ Executable and Source form only if the requirements of Sections 3.1 and 3.2 have been\ + \ met for that Original Code, and if You include a notice stating that the Source Code version\ + \ of the Original Code is available under the terms of this License. The notice must be\ + \ conspicuously included in any notice in an Executable or Source versions, related documentation\ + \ or collateral in which You describe recipients rights relating to the Original Code. You\ + \ may distribute the Executable and Source versions of Your version of the Code or ownership\ + \ rights under a license of Your choice, which may contain terms different from this License,\ + \ provided that You are in compliance with the terms of this License. If You distribute\ + \ the Executable and Source versions under a different license You must make it absolutely\ + \ clear that any terms which differ from this License are offered by You alone, not by the\ + \ Initial Developer. You hereby agree to indemnify the Initial Developer for any liability\ + \ incurred by the Initial Developer as a result of any such terms You offer.\n\n3.4 Larger\ + \ Works. You may create a Larger Work by combining Original Code with other code not governed\ + \ by the terms of this License and distribute the Larger Work as a single product. In such\ + \ a case, You must make sure the requirements of this License are fulfilled for the Original\ + \ Code.\n\n4.0 INABILITY TO COMPLY DUE TO STATUTE OR REGULATION \nIf it is impossible for\ + \ You to comply with any of the terms of this License with respect to some or all of the\ + \ Original Code due to statute, judicial order, or regulation then You must: (a) comply\ + \ with the terms of this License to the maximum extent possible; and (b) describe the limitations\ + \ and the code they affect. Such description must be included in the LEGAL file described\ + \ in Section 3.2 and must be included with all distributions of the Source Code. Except\ + \ to the extent prohibited by statute or regulation, such description must be sufficiently\ + \ detailed for a recipient of ordinary skill to be able to understand it.\n\n\n5.0 APPLICATION\ + \ OF THIS LICENSE \nThis License applies to code to which the Initial Developer has attached\ + \ the notice in Exhibit A and to related Modifications as set out in Section 3.1.\n\n\n\ + 6.0 VERSIONS OF THE LICENSE\n\n6.1 New Versions. Sun may publish revised and/or new versions\ + \ of the License from time to time. Each version will be given a distinguishing version\ + \ number.\n\n6.2 Effect of New Versions. Once Original Code has been published under a particular\ + \ version of the License, You may always continue to use it under the terms of that version.\ + \ You may also choose to use such Original Code under the terms of any subsequent version\ + \ of the License published by Sun. No one other than Sun has the right to modify the terms\ + \ applicable to Original Code.\n\n7.0 DISCLAIMER OF WARRANTY \nORIGINAL CODE IS PROVIDED\ + \ UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR\ + \ IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE ORIGINAL CODE IS FREE OF DEFECTS,\ + \ MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE\ + \ QUALITY AND PERFORMANCE OF THE ORIGINAL CODE IS WITH YOU. SHOULD ANY ORIGINAL CODE PROVE\ + \ DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER) ASSUME THE COST OF ANY NECESSARY\ + \ SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL\ + \ PART OF THIS LICENSE. NO USE OF ANY ORIGINAL CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER\ + \ THIS DISCLAIMER.\n\n8.0 TERMINATION\n\n8.1 This License and the rights granted hereunder\ + \ will terminate automatically if You fail to comply with terms herein and fail to cure\ + \ such breach within 30 days of becoming aware of the breach. All sublicenses to the Original\ + \ Code which are properly granted shall survive any termination of this License. Provisions\ + \ which, by their nature, must remain in effect beyond the termination of this License shall\ + \ survive. 8.2 In the event of termination under Section 8.1 above, all end user license\ + \ agreements (excluding distributors and resellers) which have been validly granted by You\ + \ or any distributor hereunder prior to termination shall survive termination.\n\n\nEXHIBIT\ + \ A - Sun Industry Standards Source License\n\n\n\"The contents of this file are subject\ + \ to the Sun Industry \nStandards Source License Version 1.2 (the License); You \nmay not\ + \ use this file except in compliance with the License.\"\n\n\"You may obtain a copy of the\ + \ License at \ngridengine.sunsource.net/license.html\"\n\n\"Software distributed under the\ + \ License is distributed on an \nAS IS basis, WITHOUT WARRANTY OF ANY KIND, either express\ + \ or \nimplied. See the License for the specific language governing \nrights and limitations\ + \ under the License.\"\n\n\"The Original Code is Grid Engine.\"\n\n\"The Initial Developer\ + \ of the Original Code is: \nSun Microsystems, Inc.\"\n\n\"Portions created by: Sun Microsystems,\ + \ Inc. are \nCopyright (C) 2001 Sun Microsystems, Inc.\"\n\n\"All Rights Reserved.\"\n\n\ + \"Contributor(s): \"\n\nEXHIBIT B - Standards\n\n\n1.0 Requirements for project Standards.\ + \ The requirements for project Standards are version-dependent and are defined at: Grid\ + \ Engine standards.\n\n2.0 Additional requirements. The additional requirements pursuant\ + \ to Section 3.1 are defined as:\n\n2.1 Naming Conventions. If any of your Modifications\ + \ do not meet the requirements of the Standard, then you must change the product name so\ + \ that Grid Engine, gridengine, gridengine.sunsource, and similar naming conventions are\ + \ not used.\n\n2.2 Compliance Claims. If any of your Modifications do not meet the requirements\ + \ of the Standards you may not claim, directly or indirectly, that your implementation of\ + \ the Standards is compliant.\n\nStandard License Header\nThe contents of this file are\ + \ subject to the Sun Industry \nStandards Source License Version 1.2 (the License); You\ + \ \nmay not use this file except in compliance with the License.\nYou may obtain a copy\ + \ of the License at \ngridengine.sunsource.net/license.html\n\nSoftware distributed under\ + \ the License is distributed on an \nAS IS basis, WITHOUT WARRANTY OF ANY KIND, either express\ + \ or \nimplied. See the License for the specific language governing \nrights and limitations\ + \ under the License.\n\nThe Original Code is Grid Engine.\n\nThe Initial Developer of the\ + \ Original Code is: \nSun Microsystems, Inc.\n\nPortions created by: Sun Microsystems, Inc.\ + \ are \nCopyright (C) 2001 Sun Microsystems, Inc.\n\nAll Rights Reserved.\n\n\"Contributor(s):\ + \ \"" json: sun-sissl-1.2.json - yml: sun-sissl-1.2.yml + yaml: sun-sissl-1.2.yml html: sun-sissl-1.2.html - text: sun-sissl-1.2.LICENSE + license: sun-sissl-1.2.LICENSE - license_key: sun-source + category: Permissive spdx_license_key: LicenseRef-scancode-sun-source other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This source code is a product of Sun Microsystems, Inc. and is provided for + unrestricted use. Users may copy or modify this source code without + charge. + + SUN SOURCE CODE IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE + WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR + PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. + + Sun source code is provided with no support and without any obligation on the + part of Sun Microsystems, Inc. to assist in its use, correction, + modification or enhancement. + + SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE + INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY THIS SOFTWARE + OR ANY PART THEREOF. + + In no event will Sun Microsystems, Inc. be liable for any lost revenue + or profits or other special, indirect and consequential damages, even if + Sun has been advised of the possibility of such damages. + + Sun Microsystems, Inc. + 2550 Garcia Avenue + Mountain View, California 94043 json: sun-source.json - yml: sun-source.yml + yaml: sun-source.yml html: sun-source.html - text: sun-source.LICENSE + license: sun-source.LICENSE - license_key: sun-ssscfr-1.1 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-sun-ssscfr-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Sun Solaris Source Code (Foundation Release) License 1.1\n\nREAD ALL THE TERMS OF THIS\ + \ LICENSE CAREFULLY BEFORE ACCEPTING.\nBY ACCEPTING THIS LICENSE, YOU ARE ACCEPTING AND\ + \ AGREEING TO ABIDE BY\nTHE TERMS AND CONDITIONS OF THIS LICENSE.\nIF YOU ARE AGREEING TO\ + \ THIS LICENSE ON BEHALF OF A COMPANY, YOU\nREPRESENT THAT YOU ARE AUTHORIZED TO BIND THE\ + \ COMPANY TO THE\nLICENSE.\nWHETHER YOU ARE ACTING ON YOUR OWN BEHALF OR THAT OF A COMPANY,\n\ + YOU MUST BE OF MAJORITY AGE AND OTHERWISE COMPETENT TO ENTER INTO\nCONTRACTS.\n\nSUN SOLARIS\ + \ TM SOURCE CODE (FOUNDATION RELEASE) LICENSE\nVersion 1.1\n\nI. DEFINITIONS\n\n\"Licensee\ + \ Code\" means Reference Code, Contributed Code, and\nany combination thereof.\n\"Licensee\"\ + \ means You, Original Contributor and any other party\nthat has entered into and has in\ + \ effect a version of this License for\nthe Technology with Original Contributor.\n\"Contributed\ + \ Code\" means Shared Modifications and any other\ncode other than Reference Code made available\ + \ on the Technology\nSite by a Licensee.\n\"Contributor\" means any Licensee who makes available\n\ + Contributed Code.\n\"Covered Code\" means any and all code (including Modifications)\nimplementing\ + \ all or any portion of the Technology Specifications or\nContributed Code Specifications.\n\ + \"Interfaces\" means classes or other programming code or\nspecifications designed for use\ + \ with the Technology comprising a\nmeans or link for invoking functionality, operations\ + \ or protocols\nand which are additional to or extend the interfaces designated in\nthe\ + \ Technology Specifications.\n\"Modifications\" means any (i) change or addition to Covered\n\ + Code, or (ii) new source or object code implementing any portion\nof the Technology Specifications,\ + \ but (iii) excluding any\nincorporated Reference Code.\n\"Original Contributor\" means\ + \ Sun Microsystems, Inc., its\naffiliates, successors and assigns.\n\"Reference Code\" means\ + \ source code for the Technology\ndesignated by Original Contributor at the Technology Site\ + \ from\ntime to time.\n\"Research Use\" means research, reference, evaluation,\ndevelopment,\ + \ educational or personal use, excluding use or\ndistribution for direct or indirect commercial\ + \ (including strategic)\ngain or advantage.\n\"Shared Modifications\" means those Modifications\ + \ which\nLicensee elects to share with other Licensees.\n\"Technology Specifications\" means\ + \ the documentation for the\nTechnology designated by Original Contributor at the Technology\n\ + Site, from time to time.\n\"Technology\" means the technology described in and\ncontemplated\ + \ by the Technology Specifications.\n\"Technology Site\" means the website designated by\ + \ Original\nContributor for accessing Licensee Code and Technology\nSpecifications.\n\"\ + You\" means the individual executing this license or the legal\nentity or entities represented\ + \ by the individual executing this\nlicense. \"Your\" is the possessive of \"You\".\n\n\ + II. PURPOSE\nOriginal Contributor is licensing the Reference Code and Technology Specifications\ + \ under and\nsubject to this Sun Solaris Source Code (Foundation Release) License (the License)\ + \ to promote\nresearch, education, innovation and prototyping using the Technology.\n\n\ + INTERNAL DEPLOYMENT, COMMERCIAL USE AND DISTRIBUTION OF\nTECHNOLOGY AND/OR REFERENCE CODE\ + \ IN SOURCE CODE OR OBJECT CODE\nFORM IS NOT PERMITTED UNDER THIS AGREEMENT.\n\nIII. RESEARCH\ + \ USE RIGHTS\n\tA. From Original Contributor. Subject to and conditioned upon your full\ + \ compliance with\n\tthe terms and conditions of this License including Section IV (Restrictions\ + \ and Licensee\n\tResponsibilities) and Section V.E.7 (International Use), Original Contributor:\n\ + \n\t\t1. Grants to You a non-exclusive, worldwide and royalty-free license to the extent\ + \ of\n\t\tOriginal Contributor's copyrights and trade secret rights in and covering the\ + \ Reference\n\t\tCode and Technology Specifications to do the following for Your Research\ + \ Use only:\n\t\ta. Reproduce and prepare derivative works of the Reference Code, in whole\ + \ or in part,\n\t\talone or as part of Covered Code; and\n\t\tb. Reproduce and prepare derivative\ + \ works of the Technology Specifications.\n\n\t\t2. will not, during the term of Your License,\ + \ bring against You any claim alleging that\n\t\tYour using, making, having made, importing\ + \ or distributing Licensee Code for Your\n\t\tResearch Use, insofar as permitted under Section\ + \ III.A.1 of this License, necessarily\n\t\tinfringes any patent now owned or hereafter\ + \ acquired by Original Contributor whose\n\t\tclaims cover subject matter contained in or\ + \ embodied by the Reference Code or which\n\t\twould necessarily be infringed by the use\ + \ or distribution of any and all\n\t\timplementations of the Technology Specifications.\n\ + \n\t\t3. grants to You a non-exclusive, worldwide and royalty-free license, to the extent\ + \ of its\n\t\tintellectual property rights therein, to use (i) Original Contributor's class,\ + \ interface and\n\t\tpackage names only insofar as necessary to accurately reference or\ + \ invoke Your\n\t\tModifications for Research Use, and (ii) any associated software tools,\ + \ documents and\n\t\tinformation provided by Original Contributor at the Technology Site\ + \ for use in\n\t\texercising the above license rights.\n\n\tB. Contributed Code. Subject\ + \ to and conditioned upon compliance with the terms and\n\tconditions of this License, including\ + \ Sections IV (Restrictions and Licensee\n\tResponsibilities) and V.E.7 (International Use),\ + \ each Contributor:\n\n\t\t1. grants to each Licensee a non-exclusive, worldwide and royalty-free\ + \ license to the\n\t\textent of such Contributor's copyrights and trade secret rights in\ + \ and covering its\n\t\tContributed Code, to reproduce, prepare derivative works of, and\ + \ distribute\n\t\tContributed Code, in whole or in part, in source code and object code\ + \ form, to the\n\t\tsame extent as permitted under such Licensee's License with Original\ + \ Contributor\n\t\t(including all supplements thereto).\n\n\t\t2. will not, during the term\ + \ of the Licensee's License, bring against any Licensee any\n\t\tclaim alleging that using,\ + \ making, having made, importing or distributing Contributed\n\t\tCode as permitted under\ + \ this License necessarily infringes any patent now owned or\n\t\thereafter acquired by\ + \ such Contributor whose claims would necessarily be infringed\n\t\tby the use or distribution\ + \ of the Contributed Code. This covenant applies to the\n\t\tcombination of the Contributed\ + \ Code and the Reference Code if, at the time the\n\t\tContributed Code is added to Reference\ + \ Code, such addition of Contributed Code\n\t\tcauses such combination to be covered by\ + \ said patents. This covenant shall not apply\n\t\tto any other combinations which include\ + \ the Contributed Code.\n\n\tC. Modifications. You covenant that You will not bring against\ + \ Original Contributor and/or\n\tSolaris licensees any claim alleging that any patent now\ + \ owned or hereafter acquired by\n\tYou is infringed by Original Contributor and/or Solaris\ + \ licensees where such patent is\n\trelated to Modifications to the Reference Code or based\ + \ on Reference Code. Any\n\tpermitted transfer of this Agreement, your Modifications, or\ + \ such patent must be subject\n\tto this covenant.\n\n\tD. No Implied Licenses. Neither\ + \ party is granted any right or license other than the licenses\n\tand covenants expressly\ + \ set out herein. Other than the licenses and covenants expressly\n\tset out herein, Original\ + \ Contributor retains all right, title and interest in Reference Code\n\tand Technology\ + \ Specifications and You retain all right, title and interest in Your\n\tModifications and\ + \ associated specifications. Except as expressly permitted herein, You\n\tSun Solaris Source\ + \ Code (FR) License 5 December 4, 2000\n\tmay not otherwise use any package, class or interface\ + \ naming conventions that appear to\n\toriginate from Original Contributor.\n\nIV. RESTRICTIONS\ + \ AND RESPONSIBILITIES.\n\nAs a condition to Your license and other rights and immunities,\ + \ You must comply with the\nrestrictions and responsibilities set forth below.\n\n\tA. Source\ + \ Code Availability. You may provide Contributed Code to Original Contributor at\n\tany\ + \ time, in Your discretion. Original Contributor will post Your Contributed Code and\n\t\ + Contributed Code Specifications on the Technology Site.\n\n\tB. Notices. You must reproduce\ + \ without alteration copyright and other proprietary notices\n\tin any Covered Code that\ + \ You create. The statement \"Use and Distribution is subject to\n\tthe Sun Solaris Source\ + \ Code (Foundation Release) License available at\n\t\"http://www.sun.com/solaris/source\"\ + \ must appear prominently in Your Modifications\n\tand, in all cases, in the same file as\ + \ all Your copyright and other proprietary notices.\n\n\tC. Modifications. You must include\ + \ a \"diff\" file with Your Contributed Code that identifies\n\tand details the changes\ + \ or additions You made, the version of Reference Code or\n\tContributed Code You used and\ + \ the date of such changes or additions. In addition, you\n\tmust provide any Contributed\ + \ Code Specifications for Your Contributed Code. Your\n\tModifications are Covered Code\ + \ and You expressly agree that use and distribution, in\n\twhole or in part, of Your Modifications\ + \ shall only be done in accordance with and\n\tsubject to this License.\n\n\tD. Extensions.\n\ + \n\t\t1. You may create and add \"Interfaces\" but, unless expressly permitted at the Technology\n\ + \t\tSite, You may not incorporate any Reference Code in Your Interfaces. If You choose to\n\ + \t\tdisclose or permit disclosure of Your Interfaces to even a single third party for the\n\ + \t\tpurposes of enabling such third party to independently develop and distribute (directly\n\ + \t\tor indirectly) technology which invokes such Interfaces, You must then make the\n\t\t\ + Interfaces open by (i) promptly following completion thereof, publishing to the\n\t\tindustry,\ + \ on a non-confidential basis and free of all copyright restrictions, a reasonably\n\t\t\ + detailed, current and accurate specification for the Interfaces, and (ii) as soon as\n\t\ + \treasonably possible, but in no event more than thirty (30) days following publication\n\ + \t\tof Your specification, making available on reasonable terms and without\n\t\tdiscrimination,\ + \ a reasonably complete and practicable test suite and methodology\n\t\tadequate to create\ + \ and test implementations of the Interfaces by a reasonably skilled\n\t\ttechnologist.\n\ + \n\t\t2. You shall not assert any intellectual property rights You may have covering Your\n\ + \t\tInterfaces which would necessarily be infringed by the creation, use or distribution\ + \ of\n\t\tall reasonable independent implementations of your specification of such Interfaces\ + \ by\n\t\tSun Solaris Source Code (FR) License 6 December 4, 2000\n\t\ta Licensee or Original\ + \ Contributor. Nothing herein is intended to prevent You from\n\t\tenforcing any of Your\ + \ intellectual property rights covering Your specific\n\t\timplementation of Your Interfaces\ + \ or functionality using such Interfaces other than as\n\t\tspecifically set forth in this\ + \ Section D.2.\n\n\tE. Confidential Information. You agree to treat the Reference Code as\ + \ confidential\n\tinformation of the Original Contributor. Reference Code will not be provided\ + \ by You to\n\tany third party. You will establish appropriate procedures to prevent the\ + \ disclosure of\n\tsuch Reference Code.\n\n\tF. Sharing of Covered Code. You may not share\ + \ Covered Code with any non-Licensee\n\tunder any circumstances. You may only share Covered\ + \ Code with other Licensees on\n\tthe Technology Site, consistent with any rules or guidelines\ + \ set forth in this Agreement\n\tand the Technology Site.\n\nV. GOVERNANCE\n\n\tA. LICENSE\ + \ VERSIONS.\n\tOnly Original Contributor may promulgate new versions of this License. Once\ + \ You have\n\taccepted Reference Code, Technology Specifications, Contributed Code and/or\n\ + \tContributed Code Specifications under a version of this License, You may always\n\tcontinue\ + \ to use such version of Reference Code, Technology Specifications, Contributed\n\tCode\ + \ and/or Contributed Code Specifications under that version of the License. New code\n\t\ + and specifications which You may subsequently choose to accept will be subject to any\n\t\ + new License in effect at the time of Your acceptance of such code and specifications.\n\n\ + \tB. DISCLAIMER OF WARRANTIES.\n\t\t1. AS IS. COVERED CODE AND ALL SPECIFICATIONS ARE PROVIDED\ + \ \"AS IS\",\n\t\tWITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED\n\t\tINCLUDING,\ + \ WITHOUT LIMITATION, WARRANTIES THAT ANY COVERED\n\t\tCODE OR SPECIFICATIONS ARE FREE OF\ + \ DEFECTS, MERCHANTABLE, FIT\n\t\tFOR A PARTICULAR PURPOSE OR NON-INFRINGING OF THIRD PARTY\n\ + \t\tRIGHTS. YOU AGREE THAT YOU BEAR THE ENTIRE RISK IN CONNECTION\n\t\tWITH YOUR USE AND\ + \ DISTRIBUTION OF ANY AND ALL COVERED CODE\n\t\tOR SPECIFICATIONS UNDER THIS LICENSE. NO\ + \ USE OF ANY COVERED\n\t\tCODE OR SPECIFICATIONS IS AUTHORIZED EXCEPT SUBJECT TO AND IN\n\ + \t\tCONSIDERATION FOR THIS DISCLAIMER.\n\n\t\t2. You understand that, although each Licensee\ + \ grants the licenses set forth in the License,\n\t\tno assurances are provided by any Licensee\ + \ that Covered Code or any specifications do\n\t\tnot infringe the intellectual property\ + \ rights of any third party.\n\t\tSun Solaris Source Code (FR) License 7 December 4, 2000\n\ + \n\t\t3. Hazardous Applications. You acknowledge that Reference Code and Technology\n\t\t\ + Specifications are neither designed nor intended for use in the design, construction,\n\t\ + \toperation or maintenance of any nuclear facility.\n\n\tC. LIMITATION ON LIABILITY.\n\n\ + \t\t1. Infringement. Each Licensee disclaims any liability to all other Licensee for claims\n\ + \t\tbrought by any third party based on infringement of intellectual property rights. Original\n\ + \t\tContributor represents that, to its knowledge, it has sufficient copyrights to allow\ + \ You to\n\t\tuse and distribute the Reference Code as herein permitted and You represent\ + \ that, to\n\t\tYour knowledge, You have sufficient copyrights to allow each Licensee and\ + \ Original\n\t\tContributor to use and distribute Your Shared Modifications and Error Corrections\ + \ as\n\t\tcontemplated herein. You agree to notify Original Contributor should You become\n\ + \t\taware of any potential or actual infringement of the Technology or any of Original\n\ + \t\tContributor's intellectual property rights in the Technology, Reference Code or\n\t\t\ + Technology Specifications.\n\n\t\t2. Suspension. If any portion of, or functionality implemented\ + \ by, the Reference Code,\n\t\tTechnology or Technology Specifications becomes the subject\ + \ of a claim or threatened\n\t\tclaim of infringement (\"Affected Materials\"), Original\ + \ Contributor may, in its\n\t\tunrestricted discretion, suspend Your rights to use and distribute\ + \ the Affected Materials\n\t\tunder this License. Such suspension of rights will be effective\ + \ immediately upon\n\t\tOriginal Contributor's posting of notice of suspension on the Technology\ + \ Site. Original\n\t\tContributor has no obligation to lift the suspension of rights relative\ + \ to the Affected\n\t\tMaterials until a final, non-appealable determination is made by\ + \ a court or governmental\n\t\tagency of competent jurisdiction that Original Contributor\ + \ is legally able, without the\n\t\tpayment of a fee or royalty, to reinstate Your rights\ + \ to the Affected Materials to the full\n\t\textent contemplated hereunder. Upon such determination,\ + \ Original Contributor will lift\n\t\tthe suspension by posting a notice to such effect\ + \ on the Technology Site. Nothing herein\n\t\tshall be construed to prevent You, at Your\ + \ option and expense, and subject to applicable\n\t\tlaw and the restrictions and responsibilities\ + \ set forth in this License and any\n\t\tSupplements, from replacing Reference Code in Affected\ + \ Materials with non-infringing\n\t\tcode or independently negotiating, without compromising\ + \ or prejudicing Original\n\t\tContributor's position, to obtain the rights necessary to\ + \ use Affected Materials as herein\n\t\tpermitted.\n\n\t\t3. Disclaimer. ORIGINAL CONTRIBUTOR'S\ + \ LIABILITY TO YOU FOR ALL CLAIMS\n\t\tRELATING TO THIS LICENSE OR ANY SUPPLEMENT HERETO,\ + \ WHETHER\n\t\tFOR BREACH OR TORT, IS LIMITED TO THE GREATER OF ONE THOUSAND\n\t\tDOLLARS\ + \ (US $1000.00) OR THE FULL AMOUNT PAID BY YOU FOR THE\n\t\tMATERIALS GIVING RISE TO THE\ + \ CLAIM, IF ANY. IN NO EVENT WILL\n\t\tORIGINAL CONTRIBUTOR BE LIABLE FOR ANY INDIRECT,\ + \ PUNITIVE,\n\t\tSPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION\n\t\tWITH OR\ + \ ARISING OUT OF THIS LICENSE (INCLUDING, WITHOUT\n\t\tLIMITATION, LOSS OF PROFITS, USE,\ + \ DATA OR ECONOMIC ADVANTAGE OF\n\t\tSun Solaris Source Code (FR) License 8 December 4,\ + \ 2000\n\t\tANY SORT), HOWEVER IT ARISES AND ON ANY THEORY OF LIABILITY\n\t\tWHETHER OR\ + \ NOT ORIGINAL CONTRIBUTOR HAS BEEN ADVISED OF THE\n\t\tPOSSIBILITY OF SUCH DAMAGE AND NOTWITHSTANDING\ + \ FAILURE OF THE\n\t\tESSENTIAL PURPOSE OF ANY REMEDY.\n\n\tD. TERMINATION.\n\tYou may terminate\ + \ this License at any time by notifying Original Contributor in writing.\n\tAll Your rights\ + \ will terminate under this License if You fail to comply with any of the\n\tmaterial terms\ + \ or conditions of this License and do not cure such failure in a reasonable\n\tperiod of\ + \ time after becoming aware of such noncompliance.\n\n\tIf You institute patent litigation\ + \ against a Licensee with respect to a patent applicable to\n\tLicensee Code, then any patent\ + \ licenses granted by such Licensee to You under this\n\tLicense shall terminate as of the\ + \ date such litigation is filed. In addition, if You institute\n\tpatent litigation against\ + \ any Licensee or Original Contributor alleging that Reference\n\tCode, Technology or Technology\ + \ Specifications infringe Your patent(s), then the rights\n\tgranted to You under Section\ + \ III.A above will terminate.\n\n\tUpon termination, You must discontinue all uses and distribution\ + \ of Licensee Code,\n\texcept that You may continue to use, reproduce, prepare derivative\ + \ works of Your\n\tModifications (without the benefit of any license arising from this License)\ + \ for purposes\n\tother than to implement functionality designated in any portion of the\ + \ Technology\n\tSpecifications. Properly granted sublicenses to third parties will survive\ + \ termination.\n\tProvisions which, by their nature, should remain in effect following termination\ + \ survive.\n\n\tE. MISCELLANEOUS.\n\t\t1. Trademark. You agree to comply with Original Contributor's\ + \ Trademark & Logo Usage\n\t\tRequirements, as modified from time to time, available at\ + \ the Technology Site. Except\n\t\tas expressly provided in this License, You are granted\ + \ no rights in or to any \"Sun\",\n\t\t\"Solaris\", \"Jini\", \"Jiro\" or \"Java\" trademarks\ + \ now or hereafter used or licensed by\n\t\tOriginal Contributor (the \"Sun Trademarks\"\ + ). You agree not to (i) challenge Original\n\t\tContributor's ownership or use of Sun Trademarks;\ + \ (ii) attempt to register any Sun\n\t\tTrademarks, or any mark or logo substantially similar\ + \ thereto; or (iii) incorporate any\n\t\tSun Trademarks into you own trademarks, product\ + \ names, service marks, company\n\t\tnames or domain names.\n\n\t\t2. Integration and Assignment.\ + \ Original Contributor may assign this Research Use License\n\t\tto another by written notification\ + \ to the other party. This License represents the complete\n\t\tagreement of the parties\ + \ concerning the subject matter hereof.\n\n\t\t3. Severability. If any provision of this\ + \ License is held unenforceable, such provision shall\n\t\tbe reformed to the extent necessary\ + \ to make it enforceable unless to do so would defeat\n\t\tthe intent of the parties.\n\n\ + \t\t4. Governing Law. This License is governed by the laws of the United States and the\ + \ State\n\t\tof California, as applied to contracts entered into and performed in California\ + \ between\n\t\tSun Solaris Source Code (FR) License 9 December 4, 2000\n\t\tCalifornia residents.\ + \ The United Nations Convention on Contracts for the International\n\t\tSale of Goods shall\ + \ not apply. Nor shall any law or regulation which provides that a\n\t\tcontract be construed\ + \ against the drafter.\n\n\t\t5. Dispute Resolution.\n\t\ta. Any dispute arising out of\ + \ or relating to this License shall be finally settled by\n\t\tarbitration as set forth\ + \ in this Section, except that either party may bring an action in a\n\t\tcourt of competent\ + \ jurisdiction (which jurisdiction shall be exclusive), relative to any\n\t\tdispute relating\ + \ to such party's intellectual property rights. Arbitration will be\n\t\tadministered (i)\ + \ by the American Arbitration Association (AAA), (ii) in accordance\n\t\twith the rules\ + \ of the United Nations Commission on International Trade Law\n\t\t(UNCITRAL) (the \"Rules\"\ + ) in effect at the time of arbitration, modified as set forth\n\t\therein, and (iii) the\ + \ arbitrator will apply the governing laws required under Section E.4\n\t\tabove. Judgment\ + \ upon the award rendered by the arbitrator may be entered in any\n\t\tcourt having jurisdiction\ + \ to enforce such award. The arbitrator may not award damages\n\t\tin excess of or of a\ + \ different type than those permitted by this License and any such\n\t\taward is void.\n\ + \t\tb. All proceedings will be in English and conducted by a single arbitrator selected\ + \ in\n\t\taccordance with the Rules who is fluent in English, familiar with technology matters\n\ + \t\tpertinent in the dispute and either a retired judge or practicing attorney having at\ + \ least\n\t\tten (10) years litigation experience. Venue for arbitration will be in San\ + \ Francisco,\n\t\tCalifornia, unless the parties agree otherwise. Each party will be required\ + \ to produce\n\t\tdocuments relied upon in the arbitration and to respond to no more than\ + \ twenty-five\n\t\tsingle question interrogatories. All awards are payable in US dollars\ + \ and may include\n\t\tfor the prevailing party (i) pre-judgment interest, (ii) reasonable\ + \ attorney's fees\n\t\tincurred in connection with the arbitration, and (iii) reasonable\ + \ costs and expenses\n\t\tincurred in enforcing the award.\n\n\t\t6. U.S. Government: If\ + \ this Software is being acquired by or on behalf of the U.S.\n\t\tGovernment or by a U.S.\ + \ Government prime contractor or subcontractor (at any tier),\n\t\tthen the Government's\ + \ rights in this Software and accompanying documentation shall be\n\t\tonly as set forth\ + \ in this license; this is in accordance with 48 CFR 227.7201 through\n\t\t227.7202-4 (for\ + \ Department of Defense acquisitions) and with 48 CFR 2.101 and\n\t\t12.212 (for non-DoD\ + \ acquisitions).\n\n\t\t7. International Use.\n\t\ta. Covered Code is subject to US export\ + \ control laws and may be subject to export or\n\t\timport regulations in other countries.\ + \ Each party shall comply fully with all such laws\n\t\tand regulations and acknowledges\ + \ its responsibility to obtain such licenses to export,\n\t\tre-export or import as may\ + \ be required. You must pass through these obligations to all\n\t\tYour licensees.\n\t\t\ + Sun Solaris Source Code (FR) License 10 December 4, 2000\n\t\tb. You may not distribute\ + \ Reference Code or Technology Specifications into countries\n\t\tother than those listed\ + \ on the Technology Site by Original Contributor, from time to\n\t\ttime.\n\nACCEPTED AND\ + \ AGREED:\nSignature:\nPrinted Name\nand Title:\nCompany:\nDate:\nSDLC Personal ID:\nEmail\ + \ Address: \nPhone Number: \nSun Solaris Source Code (FR) License 11 December 4, 2000\n\ + \nATTACHMENT A-1\n\nSTUDENT ACKNOWLDGEMENT\nYou acknowledge that this software and related\ + \ documentation has been obtained by your\neducational institution subject to the Sun Solaris\ + \ Source Code (Foundation Release) License (the\nLicense). You have been provided with access\ + \ to the software and documentation for use only in\nconnection with your course work as\ + \ a matriculated student of your educational institution.\nCommercial use of the software\ + \ and documentation is expressly prohibited.\nTHIS SOFTWARE AND RELATED DOCUMENTATION CONTAINS\ + \ PROPRIETARY\nMATERIALS OF SUN MICROSYSTEMS, INC. PROTECTED BY VARIOUS\nINTELLECTUAL PROPERTY\ + \ RIGHTS. YOUR USE OF THE SOFTWARE AND\nDOCUMENTATION IS LIMITED. YOU ACKNOWLEDGE THAT THE\ + \ SOFTWARE AND\nRELATED DOCUMENTATION SHALL BE TREATED AS CONFIDENTIAL\nINFORMATION.\n-\ + \ - - - - - - - -Signature: \nPrinted Name: \nDate: \nSDLC Personal ID: \nEmail Address:\ + \ \nPhone Number:" json: sun-ssscfr-1.1.json - yml: sun-ssscfr-1.1.yml + yaml: sun-ssscfr-1.1.yml html: sun-ssscfr-1.1.html - text: sun-ssscfr-1.1.LICENSE + license: sun-ssscfr-1.1.LICENSE - license_key: sunpro + category: Permissive spdx_license_key: LicenseRef-scancode-sunpro other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Developed at SunPro, a Sun Microsystems, Inc. business. + + Permission to use, copy, modify, and distribute this + software is freely granted, provided that this notice + is preserved. json: sunpro.json - yml: sunpro.yml + yaml: sunpro.yml html: sunpro.html - text: sunpro.LICENSE + license: sunpro.LICENSE - license_key: sunsoft + category: Permissive spdx_license_key: LicenseRef-scancode-sunsoft other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 restrict- + ion, 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 NON- + INFRINGEMENT. IN NO EVENT SHALL SUNSOFT, INC. OR ITS PARENT + COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of SunSoft, Inc. + shall not be used in advertising or otherwise to promote the + sale, use or other dealings in this Software without written + authorization from SunSoft Inc. json: sunsoft.json - yml: sunsoft.yml + yaml: sunsoft.yml html: sunsoft.html - text: sunsoft.LICENSE + license: sunsoft.LICENSE - license_key: supervisor + category: Permissive spdx_license_key: LicenseRef-scancode-supervisor other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Supervisor License\nhttps://github.com/Supervisor/supervisor/blob/master/LICENSES.txt\n\ + \nSupervisor is licensed under the following license:\n\n A copyright notice accompanies\ + \ this license document that identifies\n the copyright holders.\n\n Redistribution and\ + \ use in source and binary forms, with or without\n modification, are permitted provided\ + \ that the following conditions are\n met:\n\n 1. Redistributions in source code must\ + \ retain the accompanying\n copyright notice, this list of conditions, and the following\n\ + \ disclaimer.\n\n 2. Redistributions in binary form must reproduce the accompanying\n\ + \ copyright notice, this list of conditions, and the following\n disclaimer in\ + \ the documentation and/or other materials provided\n with the distribution.\n\n 3.\ + \ Names of the copyright holders must not be used to endorse or\n promote products\ + \ derived from this software without prior\n written permission from the copyright\ + \ holders.\n\n 4. If any files are modified, you must cause the modified files to\n \ + \ carry prominent notices stating that you changed the files and\n the date of any\ + \ change.\n\n Disclaimer\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS\ + \ IS'' AND\n ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO,\ + \ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE\ + \ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,\ + \ INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\n\ + \ TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS;\ + \ OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\n ANY THEORY OF LIABILITY, WHETHER\ + \ IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\ + \ IN ANY WAY OUT OF\n THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n\ + \ SUCH DAMAGE.\n\nhttp_client.py code is based on code by Daniel Krech, which was\nreleased\ + \ under this license:\n\n LICENSE AGREEMENT FOR RDFLIB 0.9.0 THROUGH 2.3.1\n ------------------------------------------------\n\ + \ Copyright (c) 2002-2005, Daniel Krech, http://eikeon.com/\n All rights reserved.\n\n\ + \ Redistribution and use in source and binary forms, with or without\n modification, are\ + \ permitted provided that the following conditions are\n met:\n\n * Redistributions\ + \ of source code must retain the above copyright\n notice, this list of conditions and\ + \ the following disclaimer.\n\n * Redistributions in binary form must reproduce the above\n\ + \ copyright notice, this list of conditions and the following\n disclaimer in the documentation\ + \ and/or other materials provided\n with the distribution.\n\n * Neither the name of\ + \ Daniel Krech nor the names of its\n contributors may be used to endorse or promote products\ + \ derived\n from this software without specific prior written permission.\n\n THIS SOFTWARE\ + \ IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR\ + \ IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\ + \ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY,\ + \ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE\ + \ GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\ + \ CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\ + \ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE,\ + \ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nMedusa, the asynchronous communications\ + \ framework upon which\nsupervisor's server and client code is based, was created by Sam\n\ + Rushing:\n\n Medusa was once distributed under a 'free for non-commercial use'\n license,\ + \ but in May of 2000 Sam Rushing changed the license to be\n identical to the standard\ + \ Python license at the time. The standard\n Python license has always applied to the\ + \ core components of Medusa,\n this change just frees up the rest of the system, including\ + \ the http\n server, ftp server, utilities, etc. Medusa is therefore under the\n following\ + \ license:\n\n ============================== \n Permission to use, copy, modify, and\ + \ distribute this software and\n its documentation for any purpose and without fee is hereby\ + \ granted,\n provided that the above copyright notice appear in all copies and\n that\ + \ both that copyright notice and this permission notice appear in\n supporting documentation,\ + \ and that the name of Sam Rushing not be\n used in advertising or publicity pertaining\ + \ to distribution of the\n software without specific, written prior permission.\n\n SAM\ + \ RUSHING DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED\ + \ WARRANTIES OF MERCHANTABILITY AND FITNESS, IN\n NO EVENT SHALL SAM RUSHING BE LIABLE\ + \ FOR ANY SPECIAL, INDIRECT OR\n CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING\ + \ FROM LOSS\n OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,\n NEGLIGENCE\ + \ OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION\n WITH THE USE OR PERFORMANCE\ + \ OF THIS SOFTWARE.\n ==============================\n\nSome software in this distribution\ + \ is released under the Zope Public\nLicense (as marked in its file header):\n\n Zope Public\ + \ License (ZPL) Version 2.1\n -------------------------------------\n\n A copyright notice\ + \ accompanies this license document that\n identifies the copyright holders.\n\n This\ + \ license has been certified as open source. It has also\n been designated as GPL compatible\ + \ by the Free Software\n Foundation (FSF).\n\n Redistribution and use in source and binary\ + \ forms, with or\n without modification, are permitted provided that the\n following conditions\ + \ are met:\n\n 1. Redistributions in source code must retain the\n accompanying copyright\ + \ notice, this list of conditions,\n and the following disclaimer.\n\n 2. Redistributions\ + \ in binary form must reproduce the accompanying\n copyright notice, this list of conditions,\ + \ and the\n following disclaimer in the documentation and/or other\n materials provided\ + \ with the distribution.\n\n 3. Names of the copyright holders must not be used to\n \ + \ endorse or promote products derived from this software\n without prior written permission\ + \ from the copyright\n holders.\n\n 4. The right to distribute this software or to\ + \ use it for\n any purpose does not give you the right to use\n Servicemarks (sm)\ + \ or Trademarks (tm) of the copyright\n holders. Use of them is covered by separate\ + \ agreement\n with the copyright holders.\n\n 5. If any files are modified, you must\ + \ cause the modified\n files to carry prominent notices stating that you changed\n \ + \ the files and the date of any change.\n\n Disclaimer\n\n THIS SOFTWARE IS PROVIDED\ + \ BY THE COPYRIGHT HOLDERS ``AS IS''\n AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING,\ + \ BUT\n NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR\ + \ A PARTICULAR PURPOSE ARE DISCLAIMED. IN\n NO EVENT SHALL THE COPYRIGHT HOLDERS BE\n\ + \ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL\ + \ DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n\ + \ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON\ + \ ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\ + \ NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE,\ + \ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\n\nSupervisor Copyright Notice\n\ + \nSupervisor is Copyright (c) 2006-2011 Agendaless Consulting and Contributors.\n(http://www.agendaless.com),\ + \ All Rights Reserved\n\n This software is subject to the provisions of the license at\n\ + \ http://www.repoze.org/LICENSE.txt . A copy of this license should\n accompany this distribution.\ + \ THIS SOFTWARE IS PROVIDED \"AS IS\" AND\n ANY AND ALL EXPRESS OR IMPLIED WARRANTIES\ + \ ARE DISCLAIMED, INCLUDING,\n BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF TITLE,\n \ + \ MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE.\n\nTrackRefs\ + \ code Copyright (c) 2007 Zope Corporation and Contributors\n\n This software is subject\ + \ to the provisions of the Zope Public License, \n Version 2.1 (ZPL). A copy of the ZPL\ + \ should accompany this distribution. \n THIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY AND\ + \ ALL EXPRESS OR IMPLIED \n WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE\ + \ IMPLIED \n WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS \n\ + \ FOR A PARTICULAR PURPOSE. \n\nmedusa was (is?) Copyright (c) Sam Rushing.\n\nhttp_client.py\ + \ code Copyright (c) by Daniel Krech, http://eikeon.com/.\n\n THIS SOFTWARE IS PROVIDED\ + \ BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\ + \ INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\ + \ FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR\ + \ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR\ + \ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\ + \ OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED\ + \ AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING\ + \ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF\ + \ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." json: supervisor.json - yml: supervisor.yml + yaml: supervisor.yml html: supervisor.html - text: supervisor.LICENSE + license: supervisor.LICENSE - license_key: sustainable-use-1.0 + category: Free Restricted spdx_license_key: LicenseRef-scancode-sustainable-use-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + # Sustainable Use License + + Version 1.0 + + ## Acceptance + + By using the software, you agree to all of the terms and conditions below. + + ## Copyright License + + The licensor grants you a non-exclusive, royalty-free, worldwide, non-sublicensable, non-transferable license to use, copy, distribute, make available, and prepare derivative works of the software, in each case subject to the limitations below. + + ## Limitations + + You may use or modify the software only for your own internal business purposes or for non-commercial or personal use. + You may distribute the software or provide it to others only if you do so free of charge for non-commercial purposes. + You may not alter, remove, or obscure any licensing, copyright, or other notices of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. + + ## Patents + + The licensor grants you a license, under any patent claims the licensor can license, or becomes able to license, to make, have made, use, sell, offer for sale, import and have imported the software, in each case subject to the limitations and conditions in this license. This license does not cover any patent claims that you cause to be infringed by modifications or additions to the software. If you or your company make any written claim that the software infringes or contributes to infringement of any patent, your patent license for the software granted under these terms ends immediately. If your company makes such a claim, your patent license ends immediately for work on behalf of your company. + + ## Notices + + You must ensure that anyone who gets a copy of any part of the software from you also gets a copy of these terms. + If you modify the software, you must include in any modified copies of the software a prominent notice stating that you have modified the software. + + ## No Other Rights + + These terms do not imply any licenses other than those expressly granted in these terms. + + ## Termination + + If you use the software in violation of these terms, such use is not licensed, and your license will automatically terminate. If the licensor provides you with a notice of your violation, and you cease all violation of this license no later than 30 days after you receive that notice, your license will be reinstated retroactively. However, if you violate these terms after such reinstatement, any additional violation of these terms will cause your license to terminate automatically and permanently. + + ## No Liability + + As far as the law allows, the software comes as is, without any warranty or condition, and the licensor will not be liable to you for any damages arising out of these terms or the use or nature of the software, under any kind of legal claim. + + ## Definitions + + The “licensor” is the entity offering these terms. + + The “software” is the software the licensor makes available under these terms, including any portion of it. + + “You” refers to the individual or entity agreeing to these terms. + + “Your company” is any legal entity, sole proprietorship, or other kind of organization that you work for, plus all organizations that have control over, are under the control of, or are under common control with that organization. Control means ownership of substantially all the assets of an entity, or the power to direct its management and policies by vote, contract, or otherwise. Control can be direct or indirect. + + “Your license” is the license granted to you for the software under these terms. + + “Use” means anything you do with the software requiring your license. + + “Trademark” means trademarks, service marks, and similar rights. json: sustainable-use-1.0.json - yml: sustainable-use-1.0.yml + yaml: sustainable-use-1.0.yml html: sustainable-use-1.0.html - text: sustainable-use-1.0.LICENSE + license: sustainable-use-1.0.LICENSE - license_key: svndiff + category: Permissive spdx_license_key: LicenseRef-scancode-svndiff other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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(s), this list of conditions and the following disclaimer + unmodified other than the allowable addition of one or more + copyright notices. + 2. Redistributions in binary form must reproduce the above copyright + notice(s), 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 HOLDER(S) ``AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. json: svndiff.json - yml: svndiff.yml + yaml: svndiff.yml html: svndiff.html - text: svndiff.LICENSE + license: svndiff.LICENSE - license_key: swig + category: Permissive spdx_license_key: LicenseRef-scancode-swig other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + You may copy, modify, distribute, and make derivative works based on this + software, in source code or object code form, without restriction. If you + distribute the software to others, you may do so according to the terms of your + choice. This software is offered as is, without warranty of any kind. json: swig.json - yml: swig.yml + yaml: swig.yml html: swig.html - text: swig.LICENSE + license: swig.LICENSE - license_key: swl + category: Permissive spdx_license_key: SWL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. + + BY INSTALLING THIS SOFTWARE, YOU ACKNOWLEDGE THAT YOU HAVE READ THIS AGREEMENT, THAT YOU UNDERSTAND IT, AND THAT YOU AGREE TO BE BOUND BY ITS TERMS AND CONDITIONS. json: swl.json - yml: swl.yml + yaml: swl.yml html: swl.html - text: swl.LICENSE + license: swl.LICENSE - license_key: sybase + category: Proprietary Free spdx_license_key: Watcom-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "USE OF THE SYBASE OPEN WATCOM SOFTWARE DESCRIBED BELOW (\"SOFTWARE\") IS \nSUBJECT\ + \ TO THE TERMS AND CONDITIONS SET FORTH IN THE SYBASE OPEN WATCOM \nPUBLIC LICENSE SET FORTH\ + \ BELOW (\"LICENSE\"). YOU MAY NOT USE THE SOFTWARE \nIN ANY MANNER UNLESS YOU ACCEPT THE\ + \ TERMS AND CONDITIONS OF THE LICENSE. \nYOU INDICATE YOUR ACCEPTANCE BY IN ANY MANNER USING\ + \ (INCLUDING WITHOUT \nLIMITATION BY REPRODUCING, MODIFYING OR DISTRIBUTING) THE SOFTWARE.\ + \ IF YOU \nDO NOT ACCEPT ALL OF THE TERMS AND CONDITIONS OF THE LICENSE, DO NOT USE \nTHE\ + \ SOFTWARE IN ANY MANNER.\n\n\nSybase Open Watcom Public License version 1.0\n\n1. General;\ + \ Definitions. This License applies only to the following \nsoftware programs: the open\ + \ source versions of Sybase's Watcom C/C++ and \nFortran compiler products (\"Software\"\ + ), which are modified versions of, \nwith significant changes from, the last versions made\ + \ commercially \navailable by Sybase. As used in this License:\n\n1.1 \"Applicable Patent\ + \ Rights\" mean: (a) in the case where Sybase is the \ngrantor of rights, (i) claims of\ + \ patents that are now or hereafter \nacquired, owned by or assigned to Sybase and (ii)\ + \ that cover subject matter \ncontained in the Original Code, but only to the extent necessary\ + \ to use, \nreproduce and/or distribute the Original Code without infringement; and (b)\ + \ \nin the case where You are the grantor of rights, (i) claims of patents that \nare now\ + \ or hereafter acquired, owned by or assigned to You and (ii) that \ncover subject matter\ + \ in Your Modifications, taken alone or in combination \nwith Original Code.\n\n1.2 \"Contributor\"\ + \ means any person or entity that creates or contributes to \nthe creation of Modifications.\n\ + \n1.3 \"Covered Code\" means the Original Code, Modifications, the combination \nof Original\ + \ Code and any Modifications, and/or any respective portions \nthereof.\n\n1.4 \"Deploy\"\ + \ means to use, sublicense or distribute Covered Code other than \nfor Your internal research\ + \ and development (R&D) and/or Personal Use, and \nincludes without limitation, any and\ + \ all internal use or distribution of \nCovered Code within Your business or organization\ + \ except for R&D use and/or \nPersonal Use, as well as direct or indirect sublicensing or\ + \ distribution of \nCovered Code by You to any third party in any form or manner.\n\n1.5\ + \ \"Larger Work\" means a work which combines Covered Code or portions thereof\n with code\ + \ not governed by the terms of this License.\n\n1.6 \"Modifications\" mean any addition\ + \ to, deletion from, and/or change to, \nthe substance and/or structure of the Original\ + \ Code, any previous \nModifications, the combination of Original Code and any previous\ + \ \nModifications, and/or any respective portions thereof. When code is \nreleased as a\ + \ series of files, a Modification is: (a) any addition to or \ndeletion from the contents\ + \ of a file containing Covered Code; \nand/or (b) \nany new file or other representation\ + \ of computer program statements that \ncontains any part of Covered Code.\n\n1.7 \"Original\ + \ Code\" means (a) the Source Code of a program or other work \nas originally made available\ + \ by Sybase under this License, including the \nSource Code of any updates or upgrades to\ + \ such programs or works made \navailable by Sybase under this License, and that has been\ + \ expressly \nidentified by Sybase as such in the header file(s) of such work; and (b) \n\ + the object code compiled from such Source Code and originally made \navailable by Sybase\ + \ under this License.\n\n1.8 \"Personal Use\" means use of Covered Code by an individual\ + \ solely for \nhis or her personal, private and non-commercial purposes. An individual's\ + \ \nuse of Covered Code in his or her capacity as an officer, employee, member, \nindependent\ + \ contractor or agent of a corporation, business or organization \n(commercial or non-commercial)\ + \ does not qualify as Personal Use.\n\n1.9 \"Source Code\" means the human readable form\ + \ of a program or other work \nthat is suitable for making modifications to it, including\ + \ all modules it \ncontains, plus any associated interface definition files, scripts used\ + \ to \ncontrol compilation and installation of an executable (object code).\n\n1.10 \"You\"\ + \ or \"Your\" means an individual or a legal entity exercising \nrights under this License.\ + \ For legal entities, \"You\" or \"Your\" includes \nany entity which controls, is controlled\ + \ by, or is under common control \nwith, You, where \"control\" means (a) the power, direct\ + \ or indirect, to\n cause the direction or management of such entity, whether by contract\ + \ or \notherwise, or (b) ownership of fifty percent (50%) or more of the \noutstanding shares\ + \ or beneficial ownership of such entity.\n\n2. Permitted Uses; Conditions & Restrictions.Subject\ + \ to the terms and \nconditions of this License, Sybase hereby grants You, effective on\ + \ the \ndate You accept this License and download the Original Code, a world-wide, \nroyalty-free,\ + \ non-exclusive license, to the extent of Sybase's Applicable \nPatent Rights and copyrights\ + \ covering the Original Code, to do the \nfollowing:\n\n2.1 You may use, reproduce, display,\ + \ perform, modify and distribute \nOriginal Code, with or without Modifications, solely\ + \ for Your internal \nresearch and development and/or Personal Use, provided that in each\ + \ \ninstance:\n(a) You must retain and reproduce in all copies of Original Code the \ncopyright\ + \ and other proprietary notices and disclaimers of Sybase as they \nappear in the Original\ + \ Code, and keep intact all notices in the Original \nCode that refer to this License; and\n\ + (b) You must retain and reproduce a copy of this License with every copy \nof Source Code\ + \ of Covered Code and documentation You distribute, and You \nmay not offer or impose any\ + \ terms on such Source Code that alter or \nrestrict this License or the recipients' rights\ + \ hereunder, except as \npermitted under Section 6.\n(c) Whenever reasonably feasible you\ + \ should include the copy of this \nLicense in a click-wrap format, which requires affirmative\ + \ acceptance by \nclicking on an \"I accept\" button or similar mechanism. If a click-wrap\ + \ \nformat is not included, you must include a statement that any use \n(including without\ + \ limitation reproduction, modification or distribution) \nof the Software, and any other\ + \ affirmative act that you define, constitutes \nacceptance of the License, and instructing\ + \ the user not to use the Covered \nCode in any manner if the user does not accept all of\ + \ the terms and \nconditions of the License.\n\n2.2 You may use, reproduce, display, perform,\ + \ modify and Deploy Covered Code, \nprovided that in each instance:\n(a) You must satisfy\ + \ all the conditions of Section 2.1 with respect to the \nSource Code of the Covered Code;\n\ + (b) You must duplicate, to the extent it does not already exist, the notice \nin Exhibit\ + \ A in each file of the Source Code of all Your Modifications, and \ncause the modified\ + \ files to carry prominent notices stating that You \nchanged the files and the date of\ + \ any change;\n(c) You must make Source Code of all Your Deployed Modifications publicly\ + \ \navailable under the terms of this License, including the license grants \nset forth\ + \ in Section 3 below, for as long as you Deploy the Covered Code \nor twelve (12) months\ + \ from the date of initial Deployment, whichever is \nlonger. You should preferably distribute\ + \ the Source Code of Your Deployed \nModifications electronically (e.g. download from a\ + \ web site);\n(d) if You Deploy Covered Code in object code, executable form only, You \n\ + must include a prominent notice, in the code itself as well as in related \ndocumentation,\ + \ stating that Source Code of the Covered Code is available \nunder the terms of this License\ + \ with information on how and where to \nobtain such Source Code; and\n(e) the object code\ + \ form of the Covered Code may be distributed under Your \nown license agreement, provided\ + \ that such license agreement contains terms \nno less protective of Sybase and each Contributor\ + \ than the terms of this \nLicense, and stating that any provisions which differ from this\ + \ License \nare offered by You alone and not by any other party.\n\n2.3 You expressly acknowledge\ + \ and agree that although Sybase and each \nContributor grants the licenses to their respective\ + \ portions of the Covered \nCode set forth herein, no assurances are provided by Sybase\ + \ or any \nContributor that the Covered Code does not infringe the patent or other \nintellectual\ + \ property rights of any other entity. Sybase and each \nContributor disclaim any liability\ + \ to You for claims brought by any other \nentity based on infringement of intellectual\ + \ property rights or otherwise. \nAs a condition to exercising the rights and licenses granted\ + \ hereunder, \nYou hereby assume sole responsibility to secure any other intellectual \n\ + property rights needed, if any. For example, if a third party patent \nlicense is required\ + \ to allow You to distribute the Covered Code, it is \nYour responsibility to acquire that\ + \ license before distributing the Covered \nCode.\n\n3. Your Grants. In consideration of,\ + \ and as a condition to, the licenses \ngranted to You under this License, You hereby grant\ + \ to Sybase and all \nthird parties a non-exclusive, royalty-free license, under Your Applicable\ + \ \nPatent Rights and other intellectual property rights (other than patent) \nowned or\ + \ controlled by You, to use, reproduce, display, perform, modify, \ndistribute and Deploy\ + \ Your Modifications of the same scope and extent as \nSybase's licenses under Sections\ + \ 2.1 and 2.2.\n\n4. Larger Works. You may create a Larger Work by combining Covered Code\ + \ \nwith other code not governed by the terms of this License and distribute \nthe Larger\ + \ Work as a single product. In each such instance, You must make \nsure the requirements\ + \ of this License are fulfilled for the Covered Code \nor any portion thereof.\n\n5. Limitations\ + \ on Patent License. Except as expressly stated in Section 2, \nno other patent rights,\ + \ express or implied, are granted by Sybase herein. \nModifications and/or Larger Works\ + \ may require additional patent licenses \nfrom Sybase which Sybase may grant in its sole\ + \ discretion.\n\n6. Additional Terms. You may choose to offer, and to charge a fee for,\ + \ \nwarranty, support, indemnity or liability obligations and/or other rights \nconsistent\ + \ with this License (\"Additional Terms\") to one or more recipients \nof Covered Code.\ + \ However, You may do so only on Your own behalf and as \nYour sole responsibility, and\ + \ not on behalf of Sybase or any Contributor. \nYou must obtain the recipient's agreement\ + \ that any such Additional Terms \nare offered by You alone, and You hereby agree to indemnify,\ + \ defend and \nhold Sybase and every Contributor harmless for any liability incurred by\ + \ \nor claims asserted against Sybase or such Contributor by reason of any \nsuch Additional\ + \ Terms.\n\n7. Versions of the License. Sybase may publish revised and/or new versions \n\ + of this License from time to time. Each version will be given a \ndistinguishing version\ + \ number. Once Original Code has been published under \na particular version of this License,\ + \ You may continue to use it under the \nterms of that version. You may also choose to use\ + \ such Original Code under \nthe terms of any subsequent version of this License published\ + \ by Sybase. No \none other than Sybase has the right to modify the terms applicable to\ + \ \nCovered Code created under this License.\n\n8. NO WARRANTY OR SUPPORT. The Covered Code\ + \ may contain in whole or in part \npre-release, untested, or not fully tested works. The\ + \ Covered Code may \ncontain errors that could cause failures or loss of data, and may be\ + \ \nincomplete or contain inaccuracies. You expressly acknowledge and agree that \nuse of\ + \ the Covered Code, or any portion thereof, is at Your sole and entire \nrisk. THE COVERED\ + \ CODE IS PROVIDED \"AS IS\" AND WITHOUT WARRANTY, UPGRADES \nOR SUPPORT OF ANY KIND AND\ + \ SYBASE AND SYBASE'S LICENSOR(S) (COLLECTIVELY \nREFERRED TO AS \"SYBASE\" FOR THE PURPOSES\ + \ OF SECTIONS 8 AND 9) AND ALL \nCONTRIBUTORS EXPRESSLY DISCLAIM ALL WARRANTIES AND/OR CONDITIONS,\ + \ EXPRESS \nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR \n\ + CONDITIONS OF MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A \nPARTICULAR PURPOSE,\ + \ OF ACCURACY, OF QUIET ENJOYMENT, AND NONINFRINGEMENT \nOF THIRD PARTY RIGHTS. SYBASE AND\ + \ EACH CONTRIBUTOR DOES NOT WARRANT \nAGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE COVERED\ + \ CODE, THAT THE \nFUNCTIONS CONTAINED IN THE COVERED CODE WILL MEET YOUR REQUIREMENTS,\ + \ THAT \nTHE OPERATION OF THE COVERED CODE WILL BE UNINTERRUPTED OR ERROR-FREE, OR \nTHAT\ + \ DEFECTS IN THE COVERED CODE WILL BE CORRECTED. NO ORAL OR WRITTEN \nINFORMATION OR ADVICE\ + \ GIVEN BY SYBASE, A SYBASE AUTHORIZED REPRESENTATIVE \nOR ANY CONTRIBUTOR SHALL CREATE\ + \ A WARRANTY. You acknowledge that the \nCovered Code is not intended for use in the operation\ + \ of nuclear facilities, \naircraft navigation, communication systems, or air traffic control\ + \ \nmachines in which case the failure of the Covered Code could lead to death,\n personal\ + \ injury, or severe physical or environmental damage.\n\n9. LIMITATION OF LIABILITY. TO\ + \ THE EXTENT NOT PROHIBITED BY LAW, IN NO \nEVENT SHALL SYBASE OR ANY CONTRIBUTOR BE LIABLE\ + \ FOR ANY DIRECT, INCIDENTAL, \nSPECIAL, INDIRECT, CONSEQUENTIAL OR OTHER DAMAGES OF ANY\ + \ KIND ARISING OUT \nOF OR RELATING TO THIS LICENSE OR YOUR USE OR INABILITY TO USE THE\ + \ COVERED \nCODE, OR ANY PORTION THEREOF, WHETHER UNDER A THEORY OF CONTRACT, WARRANTY,\ + \ \nTORT (INCLUDING NEGLIGENCE), PRODUCTS LIABILITY OR OTHERWISE, EVEN IF \nSYBASE OR SUCH\ + \ CONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH \nDAMAGES, AND NOTWITHSTANDING\ + \ THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. \nSOME JURISDICTIONS DO NOT ALLOW THE\ + \ LIMITATION OF LIABILITY OF INCIDENTAL \nOR CONSEQUENTIAL OR OTHER DAMAGES OF ANY KIND,\ + \ SO THIS LIMITATION MAY NOT \nAPPLY TO YOU. In no event shall Sybase's or any Contributor's\ + \ total \nliability to You for all damages (other than as may be required by \napplicable\ + \ law) under this License exceed the amount of five hundred \ndollars ($500.00).\n\n10.\ + \ Trademarks. This License does not grant any rights to use the \ntrademarks or trade names\ + \ \"Sybase\" or any other trademarks or trade names \nbelonging to Sybase (collectively\ + \ \"Sybase Marks\") or to any trademark or \ntrade name belonging to any Contributor(\"\ + Contributor Marks\"). No Sybase \nMarks or Contributor Marks may be used to endorse or promote\ + \ products \nderived from the Original Code or Covered Code other than with the prior \n\ + written consent of Sybase or the Contributor, as applicable.\n\n11. Ownership. Subject to\ + \ the licenses granted under this License, each Contributor \nretains all rights, title\ + \ and interest in and to any Modifications made by such \nContributor. Sybase retains all\ + \ rights, title and interest in and to the \nOriginal Code and any Modifications made by\ + \ or on behalf of Sybase (\"Sybase \nModifications\"), and such Sybase Modifications will\ + \ not be automatically \nsubject to this License. Sybase may, at its sole discretion, choose\ + \ to \nlicense such Sybase Modifications under this License, or on different terms \nfrom\ + \ those contained in this License or may choose not to license them at \nall.\n\n12. Termination.\n\ + \n12.1 Termination. This License and the rights granted hereunder will \nterminate:\n(a)\ + \ automatically without notice if You fail to comply with any term(s) of \nthis License\ + \ and fail to cure such breach within 30 days of becoming \naware of such breach;\n(b) immediately\ + \ in the event of the circumstances described in Section \n13.5(b); or\n(c) automatically\ + \ without notice if You, at any time during the term of \nthis License, commence an action\ + \ for patent infringement (including as a \ncross claim or counterclaim) against Sybase\ + \ or any Contributor.\n\n12.2 Effect of Termination. Upon termination, You agree to immediately\ + \ \nstop any further use, reproduction, modification, sublicensing and \ndistribution of\ + \ the Covered Code and to destroy all copies of the Covered \nCode that are in your possession\ + \ or control. All sublicenses to the Covered \nCode that have been properly granted prior\ + \ to termination shall survive any \ntermination of this License. Provisions which, by their\ + \ nature, should \nremain in effect beyond the termination of this License shall survive,\ + \ \nincluding but not limited to Sections 3, 5, 8, 9, 10, 11, 12.2 and 13. No \nparty will\ + \ be liable to any other for compensation, indemnity or damages \nof any sort solely as\ + \ a result of terminating this License in accordance \nwith its terms, and termination of\ + \ this License will be without prejudice \nto any other right or remedy of any party.\n\n\ + 13. Miscellaneous.\n\n13.1 Government End Users. The Covered Code is a \"commercial item\"\ + \ as \ndefined in FAR 2.101. Government software and technical data rights in the \nCovered\ + \ Code include only those rights customarily provided to the public \nas defined in this\ + \ License. This customary commercial license in technical \ndata and software is provided\ + \ in accordance with FAR 12.211 (Technical \nData) and 12.212 (Computer Software) and, for\ + \ Department of Defense \npurchases, DFAR 252.227-7015 (Technical Data -- Commercial Items)\ + \ and \n227.7202-3 (Rights in Commercial Computer Software or Computer Software \nDocumentation).\ + \ Accordingly, all U.S. Government End Users acquire Covered \nCode with only those rights\ + \ set forth herein.\n\n13.2 Relationship of Parties. This License will not be construed\ + \ as \ncreating an agency, partnership, joint venture or any other form of legal \nassociation\ + \ between or among you, Sybase or any Contributor, and You will \nnot represent to the contrary,\ + \ whether expressly, by implication, \nappearance or otherwise.\n\n13.3 Independent Development.\ + \ Nothing in this License will impair Sybase's \nor any Contributor's right to acquire,\ + \ license, develop, have others develop \nfor it, market and/or distribute technology or\ + \ products that perform the \nsame or similar functions as, or otherwise compete with, Modifications,\ + \ \nLarger Works, technology or products that You may develop, produce, market \nor distribute.\n\ + \n13.4 Waiver; Construction. Failure by Sybase or any Contributor to enforce \nany provision\ + \ of this License will not be deemed a waiver of future \nenforcement of that or any other\ + \ provision. Any law or regulation which \nprovides that the language of a contract shall\ + \ be construed against the \ndrafter will not apply to this License.\n\n13.5 Severability.\ + \ (a) If for any reason a court of competent jurisdiction \nfinds any provision of this\ + \ License, or portion thereof, to be \nunenforceable, that provision of the License will\ + \ be enforced to the maximum \nextent permissible so as to effect the economic benefits\ + \ and intent of the \nparties, and the remainder of this License will continue in full force\ + \ and \neffect. (b) Notwithstanding the foregoing, if applicable law prohibits or \nrestricts\ + \ You from fully and/or specifically complying with Sections 2 \nand/or 3 or prevents the\ + \ enforceability of either of those Sections, this \nLicense will immediately terminate\ + \ and You must immediately discontinue any \nuse of the Covered Code and destroy all copies\ + \ of it that are in your \npossession or control.\n\n13.6 Dispute Resolution. Any litigation\ + \ or other dispute resolution between \nYou and Sybase relating to this License shall take\ + \ place in the Northern \nDistrict of California, and You and Sybase hereby consent to the\ + \ personal \njurisdiction of, and venue in, the state and federal courts within that \n\ + District with respect to this License. The application of the United Nations \nConvention\ + \ on Contracts for the International Sale of Goods is expressly \nexcluded.\n\n13.7 Entire\ + \ Agreement; Governing Law. This License constitutes the entire \nagreement between the\ + \ parties with respect to the subject matter hereof. \nThis License shall be governed by\ + \ the laws of the United States and the \nState of California, except that body of California\ + \ law concerning conflicts \nof law. Where You are located in the province of Quebec, Canada,\ + \ the following \nclause applies: The parties hereby confirm that they have requested that\ + \ this \nLicense and all related documents be drafted in English. Les parties ont \nexige\ + \ que le present contrat et tous les documents connexes soient rediges \nen anglais.\n\n\ + EXHIBIT A.\n\"Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved. This file\ + \ \ncontains Original Code and/or Modifications of Original Code as defined in and \nthat\ + \ are subject to the Sybase Open Watcom Public License version 1.0 (the \n'License'). You\ + \ may not use this file except in compliance with the License. \nBY USING THIS FILE YOU\ + \ AGREE TO ALL TERMS AND CONDITIONS OF THE LICENSE. A \ncopy of the License is provided\ + \ with the Original Code and Modifications, and \nis also available at www.sybase.com/developer/opensource.\n\ + The Original Code and all software distributed under the License are \ndistributed on an\ + \ 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS \nOR IMPLIED, AND SYBASE AND\ + \ ALL CONTRIBUTORS HEREBY DISCLAIM ALL SUCH \nWARRANTIES, INCLUDING WITHOUT LIMITATION,\ + \ ANY WARRANTIES OF MERCHANTABILITY, \nFITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT\ + \ OR NON-INFRINGEMENT. Please \nsee the License for the specific language governing rights\ + \ and limitations \nunder the License.\"" json: sybase.json - yml: sybase.yml + yaml: sybase.yml html: sybase.html - text: sybase.LICENSE + license: sybase.LICENSE - license_key: symphonysoft + category: Permissive spdx_license_key: LicenseRef-scancode-symphonysoft other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 end-user documentation included with the redistribution, if any, must + include the following acknowlegement: + "This product includes software developed by SymphonySoft Limited (http://www.symphonysoft.com)." + Alternately, this acknowlegement may appear in the software itself, if and + wherever such third-party acknowlegements normally appear. + + 4. All advertising materials mentioning features or use of this software must + display the following acknowledgement: "This product includes software developed + by SymphonySoft Limited (http://www.symphonysoft.com) and its contributors". + + 5. Neither the name of SymphonySoft Limited, Cubis Limited, Mule, Universal + Message Objects 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 json: symphonysoft.json - yml: symphonysoft.yml + yaml: symphonysoft.yml html: symphonysoft.html - text: symphonysoft.LICENSE + license: symphonysoft.LICENSE - license_key: synopsys-attribution + category: Free Restricted spdx_license_key: LicenseRef-scancode-synopsys-attribution other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Synopsys HS OTG Linux Software Driver and documentation (hereinafter, + "Software") is an Unsupported proprietary work of Synopsys, Inc. unless + otherwise expressly agreed to in writing between Synopsys and you. + + The Software IS NOT an item of Licensed Software or Licensed Product under + any End User Software License Agreement or Agreement for Licensed Product + with Synopsys or any supplement thereto. You are permitted to use and + redistribute this Software in source and binary forms, with or without + modification, provided that redistributions of source code must retain this + notice. You may not view, use, disclose, copy or distribute this file or + any information contained herein except pursuant to this license grant from + Synopsys. If you do not agree with this notice, including the disclaimer + below, then you are not authorized to use the Software. + + THIS SOFTWARE IS BEING DISTRIBUTED BY SYNOPSYS SOLELY ON AN "AS IS" BASIS + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE HEREBY DISCLAIMED. IN NO EVENT SHALL SYNOPSYS 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. json: synopsys-attribution.json - yml: synopsys-attribution.yml + yaml: synopsys-attribution.yml html: synopsys-attribution.html - text: synopsys-attribution.LICENSE + license: synopsys-attribution.LICENSE - license_key: synopsys-mit + category: Permissive spdx_license_key: LicenseRef-scancode-synopsys-mit other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The Synopsys DWC ETHER QOS Software Driver and documentation (hereinafter + "Software") is an unsupported proprietary work of Synopsys, Inc. unless + otherwise expressly agreed to in writing between Synopsys and you. + + The Software IS NOT an item of Licensed Software or Licensed Product under + any End User Software License Agreement or Agreement for Licensed Product + with Synopsys or any supplement thereto. Permission is hereby granted, + free of charge, to any person obtaining a copy of this software annotated + with this license and 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. + + THIS SOFTWARE IS BEING DISTRIBUTED BY SYNOPSYS SOLELY ON AN "AS IS" BASIS + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE HEREBY DISCLAIMED. IN NO EVENT SHALL SYNOPSYS 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. json: synopsys-mit.json - yml: synopsys-mit.yml + yaml: synopsys-mit.yml html: synopsys-mit.html - text: synopsys-mit.LICENSE + license: synopsys-mit.LICENSE - license_key: syntext-serna-exception-1.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-syntext-serna-exception-1.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "Syntext, Inc. GPL License Exception for Syntext Serna Free Edition \n\nVersion 1.0\n\ + \nAdditional rights granted beyond the GPL (the \"Exception\").\n\nAs a special exception\ + \ to the terms and conditions of GPL version 2.0 \nor GPL version 3.0, Syntext, Inc. hereby\ + \ grants you the rights described below,\nprovided you agree to the terms and conditions\ + \ in this Exception, including its\nobligations and restrictions on use. \n\nNothing\ + \ in this Exception gives you or anyone else the right to change the\nlicensing terms of\ + \ the Syntext Serna Free Editon.\n\n1) Definitions\n\n\"FOSS Application\" means a free\ + \ and open source software application \ndistributed subject to a license listed in the\ + \ section below titled \n\"FOSS License List.\"\n\n\"Licensed Software\" shall refer to\ + \ the software licensed under the GPL \n version 2.0 or GPL version 3.0 and this exception.\n\ + \n\"Derivative Work\" means a derivative work, as defined under applicable\ncopyright law,\ + \ formed entirely from the Licensed Software and one or more FOSS\nApplications.\n\n\"Independent\ + \ Work\" means portions of the Derivative Work that are not derived \nfrom the Licensed\ + \ Software and can reasonably be considered independent and\nseparate works.\n\n2) The right\ + \ to use open source licenses not compatible with the GNU General\nPublic License version\ + \ 2.0 or GNU General Public License version 3.0: You may\ndistribute Derivative Work in\ + \ object code or executable form, provided that:\n\nA) You distribute Independent Works\ + \ subject to a license listed in the \nsection 4 below, titled \"FOSS License List\";\n\n\ + and\n\nB) You obey the GPL in all respects for the Licensed Software and all portions \n\ + (including modifications and extensions) of the Licensed Software included in\nthe Derivative\ + \ Work (provided that this condition does not apply to \nIndependent Works);\n\nC) You must,\ + \ on request, make a complete package including the complete source\ncode of Derivative\ + \ Work (as defined in the GNU General Public License \nversion 2, section 3, but excluding\ + \ anything excluded by the special exception \nin the same section) available to Syntext,\ + \ Inc. under the same license as that\ngranted to other recipients of the source code of\ + \ Derivative Work;\n\nand\n\nD) Your or any other contributor's rights to:\n\ni) distribute\ + \ the source code of Derivative Work to anyone for any purpose;\n\nand\n\nii) publicly discuss\ + \ the development project for Derivative Work and its goals\nin any form and in any forum\ + \ are not prohibited by any legal instrument, \nincluding but not limited to contracts,\ + \ non-disclosure agreements, and \nemployee contracts.\n\n3) Syntext, Inc. reserves all\ + \ rights not expressly granted in these terms and \nconditions. If all of the above conditions\ + \ are not met, then this FOSS License\nException does not apply to you or your Derivative\ + \ Work." json: syntext-serna-exception-1.0.json - yml: syntext-serna-exception-1.0.yml + yaml: syntext-serna-exception-1.0.yml html: syntext-serna-exception-1.0.html - text: syntext-serna-exception-1.0.LICENSE + license: syntext-serna-exception-1.0.LICENSE - license_key: synthesis-toolkit + category: Permissive spdx_license_key: LicenseRef-scancode-synthesis-toolkit other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. + + Any person wishing to distribute modifications to the Software is + asked to send the modifications to the original developer so that they + can be incorporated into the canonical version. This is, however, not + a binding provision of this license. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. json: synthesis-toolkit.json - yml: synthesis-toolkit.yml + yaml: synthesis-toolkit.yml html: synthesis-toolkit.html - text: synthesis-toolkit.LICENSE + license: synthesis-toolkit.LICENSE - license_key: takao-abe + category: Permissive spdx_license_key: LicenseRef-scancode-takao-abe other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Permission to use, copy, modify, and distribute this software \nand its documentation\ + \ for any purpose is hereby granted \nwithout fee, provided that the following conditions\ + \ are met: \n \nOne retains\ + \ the entire copyright notice properly, and both the \ncopyright notice and this license.\ + \ in the documentation and/or \nother materials provided with the distribution. \ + \ \n \nThis software\ + \ and the name of the author must not be used to \nendorse or promote products derived\ + \ from this software without \nprior written permission. \ + \ \n \nTHIS SOFTWARE\ + \ IS PROVIDED \"AS IS\" WITHOUT EXPRESSED OR IMPLIED \nWARRANTIES OF ANY KIND, INCLUDING,\ + \ BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABLILITY AND FITNESS FOR\ + \ A \nPARTICULAR PURPOSE. \nIN NO EVENT\ + \ SHALL THE AUTHOR TAKAO ABE BE LIABLE FOR ANY DIRECT,\nINDIRECT, GENERAL, SPECIAL, EXEMPLARY,\ + \ OR CONSEQUENTIAL DAMAGES \n( INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\ + \ \nGOODS OR SERVICES; LOSS OF USE, DATA OR PROFITS; OR BUSINESS \nINTERRUPTION\ + \ ) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, \nWHETHER IN CONTRACT, STRICT LIABILITY,\ + \ OR TORT ( INCLUDING \nNEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE\ + \ OF \nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */\n \ + \ \nThis driver is developed in my\ + \ private time, and is opened as \nvoluntary contributions for the NTP. \ + \ \nThe manufacturer of the JJY receiver has not participated in \na development\ + \ of this driver. \nThe manufacturer does not warrant\ + \ anything about this driver, \nand is not liable for anything about this driver." json: takao-abe.json - yml: takao-abe.yml + yaml: takao-abe.yml html: takao-abe.html - text: takao-abe.LICENSE + license: takao-abe.LICENSE - license_key: takuya-ooura + category: Permissive spdx_license_key: LicenseRef-scancode-takuya-ooura other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + You may use, copy, modify and distribute this code for any purpose (include + commercial use) and without fee. Please refer to this package when you modify + this code. json: takuya-ooura.json - yml: takuya-ooura.yml + yaml: takuya-ooura.yml html: takuya-ooura.html - text: takuya-ooura.LICENSE + license: takuya-ooura.LICENSE - license_key: taligent-jdk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-taligent-jdk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + The original version of this source code and documentation + is copyrighted and owned by Taligent, Inc., a wholly-owned + subsidiary of IBM. These materials are provided under terms + of a License Agreement between Taligent and Sun. This technology + is protected by multiple US and International patents. + + This notice and attribution to Taligent may not be removed. + Taligent is a registered trademark of Taligent, Inc. json: taligent-jdk.json - yml: taligent-jdk.yml + yaml: taligent-jdk.yml html: taligent-jdk.html - text: taligent-jdk.LICENSE + license: taligent-jdk.LICENSE - license_key: tanuki-community-sla-1.0 + category: Copyleft spdx_license_key: LicenseRef-scancode-tanuki-community-sla-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "Tanuki Software, Inc. \nCommunity Software License Agreement\nVersion 1.0\n\nIMPORTANT-READ\ + \ CAREFULLY: This license agreement is a legal agreement\nbetween you and Tanuki Software,\ + \ Inc.(\"TSI\"), which includes computer\nsoftware, associated media, printed materials,\ + \ and may include online\nor electronic documentation ( Software ). PLEASE READ THIS AGREEMENT\n\ + CAREFULLY BEFORE YOU INSTALL, COPY, DOWNLOAD OR USE THE SOFTWARE\nACCOMPANYING THIS PACKAGE.\n\ + \nSection 1 - Grant of License\n\nCommunity editions of the Software are made available\ + \ on the GNU\nGeneral Public License, Version 2 (\"GPLv2\"), included in Section 3 of\n\ + this license document. All sections of the Community Software License\nAgreement must be\ + \ complied with in addition to those of the GPLv2.\n\n\nSection 2 - Your Obligations\n\n\ + A copy of this license must be distributed in full with the Product\nin a location that\ + \ is obvious to Your customers. The Software\nProgram may not be modified, nor may the\ + \ Product in any way obfuscate\nor obstruct the copyright notice and license information\ + \ displayed in\nthe console and log files by the Software Program on startup. \n\n\nSection\ + \ 3 - GPLv2 License Agreement\n\n GNU GENERAL PUBLIC LICENSE\n \ + \ Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free\ + \ Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\ + \ USA\n\n Everyone is permitted to copy and distribute verbatim copies of\n this license\ + \ document, but changing it is not allowed.\n\n Preamble\n\n The licenses for most\ + \ software are designed to take away your\n freedom to share and change it. By contrast,\ + \ the GNU General\n Public License is intended to guarantee your freedom to share and\n\ + \ change free software--to make sure the software is free for all\n its users. This\ + \ General Public License applies to most of the Free\n Software Foundation's software\ + \ and to any other program whose\n authors commit to using it. (Some other Free Software\ + \ Foundation\n software is covered by the GNU Library General Public License\n instead.)\ + \ You can apply it to your programs, too.\n\n When we speak of free software, we are\ + \ referring to freedom, not\n price. Our General Public Licenses are designed to make\ + \ sure that\n you have the freedom to distribute copies of free software (and\n charge\ + \ for this service if you wish), that you receive source code\n or can get it if you\ + \ want it, that you can change the software or\n use pieces of it in new free programs;\ + \ and that you know you can\n do these things.\n\n To protect your rights, we need\ + \ to make restrictions that forbid\n anyone to deny you these rights or to ask you to\ + \ surrender the\n rights. These restrictions translate to certain responsibilities\n\ + \ for you if you distribute copies of the software, or if you modify\n it.\n\n \ + \ For example, if you distribute copies of such a program, whether\n gratis or for a\ + \ fee, you must give the recipients all the rights\n that you have. You must make sure\ + \ that they, too, receive or can\n get the source code. And you must show them these\ + \ terms so they\n know their rights.\n\n We protect your rights with two steps:\n\n\ + \ (1) copyright the software, and\n (2) offer you this license which gives you legal\ + \ permission to\n copy, distribute and/or modify the software.\n\n Also, for each\ + \ author's protection and ours, we want to make\n certain that everyone understands that\ + \ there is no warranty for\n this free software. If the software is modified by someone\ + \ else\n and passed on, we want its recipients to know that what they have\n is not\ + \ the original, so that any problems introduced by others\n will not reflect on the original\ + \ authors' reputations.\n\n Finally, any free program is threatened constantly by software\n\ + \ patents. We wish to avoid the danger that redistributors of a free\n program will\ + \ individually obtain patent licenses, in effect making\n the program proprietary. To\ + \ prevent this, we have made it clear\n that any patent must be licensed for everyone's\ + \ free use or not\n licensed at all.\n\n The precise terms and conditions for copying,\ + \ distribution and\n modification follow.\n GNU GENERAL PUBLIC LICENSE\n TERMS\ + \ AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License applies\ + \ to any program or other work which\n contains a notice placed by the copyright holder\ + \ saying it may be\n distributed under the terms of this General Public License. The\n\ + \ \"Program\", below, refers to any such program or work, and a \"work\n based on\ + \ the Program\" means either the Program or any derivative\n work under copyright law:\ + \ that is to say, a work containing the\n Program or a portion of it, either verbatim\ + \ or with modifications\n and/or translated into another language. (Hereinafter, translation\n\ + \ is included without limitation in the term \"modification\".) Each\n licensee is\ + \ addressed as \"you\".\n\n Activities other than copying, distribution and modification\ + \ are\n not covered by this License; they are outside its scope. The act\n of running\ + \ the Program is not restricted, and the output from the\n Program is covered only if\ + \ its contents constitute a work based on\n the Program (independent of having been made\ + \ by running the\n Program). Whether that is true depends on what the Program does.\n\ + \n 1. You may copy and distribute verbatim copies of the Program's\n source code as\ + \ you receive it, in any medium, provided that you\n conspicuously and appropriately\ + \ publish on each copy an\n appropriate copyright notice and disclaimer of warranty;\ + \ keep\n intact all the notices that refer to this License and to the\n absence of\ + \ any warranty; and give any other recipients of the\n Program a copy of this License\ + \ along with the Program.\n\n You may charge a fee for the physical act of transferring\ + \ a copy,\n and you may at your option offer warranty protection in exchange\n for\ + \ a fee.\n\n 2. You may modify your copy or copies of the Program or any\n portion\ + \ of it, thus forming a work based on the Program, and copy\n and distribute such modifications\ + \ or work under the terms of\n Section 1 above, provided that you also meet all of these\n\ + \ conditions:\n\n a) You must cause the modified files to carry prominent notices\n\ + \ stating that you changed the files and the date of any change.\n\n b) You must cause\ + \ any work that you distribute or publish, that in\n whole or in part contains or is\ + \ derived from the Program or any\n part thereof, to be licensed as a whole at no charge\ + \ to all third\n parties under the terms of this License.\n\n c) If the modified program\ + \ normally reads commands interactively\n when run, you must cause it, when started running\ + \ for such\n interactive use in the most ordinary way, to print or display an\n announcement\ + \ including an appropriate copyright notice and a\n notice that there is no warranty\ + \ (or else, saying that you provide\n a warranty) and that users may redistribute the\ + \ program under\n these conditions, and telling the user how to view a copy of this\n\ + \ License. (Exception: if the Program itself is interactive but does\n not normally\ + \ print such an announcement, your work based on the\n Program is not required to print\ + \ an announcement.)\n\n These requirements apply to the modified work as a whole. If\n\ + \ identifiable sections of that work are not derived from the\n Program, and can be\ + \ reasonably considered independent and separate\n works in themselves, then this License,\ + \ and its terms, do not\n apply to those sections when you distribute them as separate\ + \ works.\n But when you distribute the same sections as part of a whole which\n is\ + \ a work based on the Program, the distribution of the whole must\n be on the terms of\ + \ this License, whose permissions for other\n licensees extend to the entire whole, and\ + \ thus to each and every\n part regardless of who wrote it.\n\n Thus, it is not the\ + \ intent of this section to claim rights or\n contest your rights to work written entirely\ + \ by you; rather, the\n intent is to exercise the right to control the distribution of\n\ + \ derivative or collective works based on the Program.\n\n In addition, mere aggregation\ + \ of another work not based on the\n Program with the Program (or with a work based on\ + \ the Program) on\n a volume of a storage or distribution medium does not bring the\n\ + \ other work under the scope of this License.\n\n 3. You may copy and distribute the\ + \ Program (or a work based on it,\n under Section 2) in object code or executable form\ + \ under the terms\n of Sections 1 and 2 above provided that you also do one of the\n\ + \ following:\n\n a) Accompany it with the complete corresponding machine-readable\n\ + \ source code, which must be distributed under the terms of Sections\n 1 and 2 above\ + \ on a medium customarily used for software\n interchange; or,\n\n b) Accompany it\ + \ with a written offer, valid for at least three\n years, to give any third party, for\ + \ a charge no more than your\n cost of physically performing source distribution, a complete\n\ + \ machine-readable copy of the corresponding source code, to be\n distributed under\ + \ the terms of Sections 1 and 2 above on a medium\n customarily used for software interchange;\ + \ or,\n\n c) Accompany it with the information you received as to the offer\n to distribute\ + \ corresponding source code. (This alternative is\n allowed only for noncommercial distribution\ + \ and only if you\n received the program in object code or executable form with such\n\ + \ an offer, in accord with Subsection b above.)\n\n The source code for a work means\ + \ the preferred form of the work\n for making modifications to it. For an executable\ + \ work, complete\n source code means all the source code for all modules it contains,\n\ + \ plus any associated interface definition files, plus the scripts\n used to control\ + \ compilation and installation of the executable.\n However, as a special exception,\ + \ the source code distributed need\n not include anything that is normally distributed\ + \ (in either\n source or binary form) with the major components (compiler,\n kernel,\ + \ and so on) of the operating system on which the executable\n runs, unless that component\ + \ itself accompanies the executable.\n\n If distribution of executable or object code\ + \ is made by offering\n access to copy from a designated place, then offering equivalent\n\ + \ access to copy the source code from the same place counts as\n distribution of the\ + \ source code, even though third parties are not\n compelled to copy the source along\ + \ with the object code.\n\n 4. You may not copy, modify, sublicense, or distribute the\ + \ Program\n except as expressly provided under this License. Any attempt\n otherwise\ + \ to copy, modify, sublicense or distribute the Program is\n void, and will automatically\ + \ terminate your rights under this\n License. However, parties who have received copies,\ + \ or rights,\n from you under this License will not have their licenses\n terminated\ + \ so long as such parties remain in full compliance.\n\n 5. You are not required to accept\ + \ this License, since you have not\n signed it. However, nothing else grants you permission\ + \ to modify\n or distribute the Program or its derivative works. These actions\n are\ + \ prohibited by law if you do not accept this License.\n Therefore, by modifying or distributing\ + \ the Program (or any work\n based on the Program), you indicate your acceptance of this\n\ + \ License to do so, and all its terms and conditions for copying,\n distributing or\ + \ modifying the Program or works based on it.\n\n 6. Each time you redistribute the Program\ + \ (or any work based on\n the Program), the recipient automatically receives a license\ + \ from\n the original licensor to copy, distribute or modify the Program\n subject\ + \ to these terms and conditions. You may not impose any\n further restrictions on the\ + \ recipients' exercise of the rights\n granted herein. You are not responsible for enforcing\ + \ compliance\n by third parties to this License.\n\n 7. If, as a consequence of a\ + \ court judgment or allegation of\n patent infringement or for any other reason (not\ + \ limited to\n patent issues), conditions are imposed on you (whether by court\n order,\ + \ agreement or otherwise) that contradict the conditions of\n this License, they do not\ + \ excuse you from the conditions of this\n License. If you cannot distribute so as to\ + \ satisfy simultaneously\n your obligations under this License and any other pertinent\n\ + \ obligations, then as a consequence you may not distribute the\n Program at all.\ + \ For example, if a patent license would not permit\n royalty-free redistribution of\ + \ the Program by all those who\n receive copies directly or indirectly through you, then\ + \ the only\n way you could satisfy both it and this License would be to refrain\n \ + \ entirely from distribution of the Program.\n\n If any portion of this section is held\ + \ invalid or unenforceable\n under any particular circumstance, the balance of the section\ + \ is\n intended to apply and the section as a whole is intended to apply\n in other\ + \ circumstances.\n\n It is not the purpose of this section to induce you to infringe\n\ + \ any patents or other property right claims or to contest validity\n of any such\ + \ claims; this section has the sole purpose of\n protecting the integrity of the free\ + \ software distribution system,\n which is implemented by public license practices. Many\ + \ people have\n made generous contributions to the wide range of software\n distributed\ + \ through that system in reliance on consistent\n application of that system; it is up\ + \ to the author/donor to decide\n if he or she is willing to distribute software through\ + \ any other\n system and a licensee cannot impose that choice.\n\n This section is\ + \ intended to make thoroughly clear what is believed\n to be a consequence of the rest\ + \ of this License.\n\n 8. If the distribution and/or use of the Program is restricted\ + \ in\n certain countries either by patents or by copyrighted interfaces,\n the original\ + \ copyright holder who places the Program under this\n License may add an explicit geographical\ + \ distribution limitation\n excluding those countries, so that distribution is permitted\ + \ only\n in or among countries not thus excluded. In such case, this\n License incorporates\ + \ the limitation as if written in the body of\n this License.\n\n 9. The Free Software\ + \ Foundation may publish revised and/or new\n versions of the General Public License\ + \ from time to time. Such new\n versions will be similar in spirit to the present version,\ + \ but may\n differ in detail to address new problems or concerns.\n\n Each version\ + \ is given a distinguishing version number. If the\n Program specifies a version number\ + \ of this License which applies\n to it and \"any later version\", you have the option\ + \ of following\n the terms and conditions either of that version or of any later\n \ + \ version published by the Free Software Foundation. If the Program\n does not specify\ + \ a version number of this License, you may choose\n any version ever published by the\ + \ Free Software Foundation.\n\n 10. If you wish to incorporate parts of the Program into\ + \ other\n free programs whose distribution conditions are different, write\n to the\ + \ author to ask for permission. For software which is\n copyrighted by the Free Software\ + \ Foundation, write to the Free\n Software Foundation; we sometimes make exceptions for\ + \ this. Our\n decision will be guided by the two goals of preserving the free\n status\ + \ of all derivatives of our free software and of promoting\n the sharing and reuse of\ + \ software generally.\n \n NO WARRANTY\n\n 11. BECAUSE THE PROGRAM IS LICENSED\ + \ FREE OF CHARGE, THERE IS NO\n WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\ + \ APPLICABLE\n LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS\n \ + \ AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\n OF ANY KIND,\ + \ EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES\ + \ OF MERCHANTABILITY AND FITNESS\n FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE\ + \ QUALITY AND\n PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE\n \ + \ DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR\n OR CORRECTION.\n\ + \n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\n WRITING WILL\ + \ ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY\n MODIFY AND/OR REDISTRIBUTE THE PROGRAM\ + \ AS PERMITTED ABOVE, BE\n LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,\n\ + \ INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\n INABILITY TO USE\ + \ THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\n DATA OR DATA BEING RENDERED INACCURATE\ + \ OR LOSSES SUSTAINED BY YOU\n OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE\ + \ WITH ANY\n OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN\n ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n\nSection 4\ + \ - 3rd Party Components\n\n(1) The Software Program includes software and documentation\ + \ components\ndeveloped in part by Silver Egg Technology, Inc.(\"SET\") prior to\n2001.\ + \ All SET components were released under the following license.\n\n Copyright (c) 2001\ + \ Silver Egg Technology\n \n Permission is hereby granted, free of charge, to any\ + \ person\n obtaining a copy of this software and associated documentation\n files\ + \ (the \"Software\"), to deal in the Software without \n restriction, including without\ + \ limitation the rights to use, \n copy, modify, merge, publish, distribute, sub-license,\ + \ and/or \n sell copies of the Software, and to permit persons to whom the\n Software\ + \ is furnished to do so, subject to the following \n conditions:\n \n The above\ + \ copyright notice and this permission notice shall be\n included in all copies or substantial\ + \ portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY\ + \ OF ANY KIND, \n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \n\ + \ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND \n NON-INFRINGEMENT. IN\ + \ NO EVENT SHALL THE AUTHORS OR COPYRIGHT \n HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES\ + \ OR OTHER LIABILITY, \n WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\ + \ \n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n OTHER DEALINGS\ + \ IN THE SOFTWARE." json: tanuki-community-sla-1.0.json - yml: tanuki-community-sla-1.0.yml + yaml: tanuki-community-sla-1.0.yml html: tanuki-community-sla-1.0.html - text: tanuki-community-sla-1.0.LICENSE + license: tanuki-community-sla-1.0.LICENSE - license_key: tanuki-community-sla-1.1 + category: Copyleft spdx_license_key: LicenseRef-scancode-tanuki-community-sla-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "Tanuki Software, Ltd. \nCommunity Software License Agreement\nVersion 1.1\n\nIMPORTANT-READ\ + \ CAREFULLY: This license agreement is a legal agreement\nbetween you (\"Licensee\") and\ + \ Tanuki Software, Ltd. (\"TSI\"), which\nincludes computer software, associated media,\ + \ printed materials, and\nmay include online or electronic documentation ( Software ). \ + \ PLEASE\nREAD THIS AGREEMENT CAREFULLY BEFORE YOU INSTALL, COPY, DOWNLOAD OR\nUSE THE SOFTWARE\ + \ ACCOMPANYING THIS PACKAGE.\n\nSection 1 - Grant of License\n\nCommunity editions of the\ + \ Software are made available on the GNU\nGeneral Public License, Version 2 (\"GPLv2\"),\ + \ included in Section 4 of\nthis license document. All sections of the Community Software\ + \ License\nAgreement must be complied with in addition to those of the GPLv2.\n\n\nSection\ + \ 2 - Definitions \n\n2.1. \"Community Edition\" shall mean versions of the Software Program\n\ + distributed in source form under this license agreement, and all new\nreleases, corrections,\ + \ enhancements and updates to the Software\nProgram, which TSI makes generally available\ + \ under this agreement.\n\n2.2. \"Documentation\" shall mean the contents of the website\n\ + describing the functionality and use of the Software Program, located\nat http://wrapper.tanukisoftware.org\n\ + \n2.3. \"Product\" shall mean the computer programs, that are provided by\nLicensee to Licensee\ + \ customers or potential customers, and that\ncontain both the Software Program as a component\ + \ of the Product, and a\ncomponent or components (other than the Software Program) that\ + \ provide\nthe material functionality of the Product. If the Product is released\nin source\ + \ form, the Software Program or any of its components may only\nbe included in executable\ + \ form.\n\n2.4. \"Software Program\" shall mean the computer software and license\nfile\ + \ provided by TSI under this Agreement, including all new releases,\ncorrections, enhancements\ + \ and updates to such computer software, which\nTSI makes generally available and which\ + \ Licensee receive pursuant to\nLicensee subscription to TSIMS. Some specific features or\ + \ platforms\nmay not be enabled if they do not fall under the feature set(s)\ncovered by\ + \ the specific license fees paid.\n\n2.5 \"End User\" shall mean the customers of the Licensee\ + \ or any\nrecipient of the Product whether or not any payment is made to use\nthe Product.\n\ + \n\nSection 3 - Licensee Obligations\n\nA copy of this license must be distributed in full\ + \ with the Product\nin a location that is obvious to any End User.\n\nIn accordance with\ + \ Section 4, the full source code of all components\nof the Product must be made available\ + \ to any and all End Users.\n\nLicensee may extend and/or modify the Software Program and\ + \ distribute\nunder the terms of this agreement provided that the copyright notice\nand\ + \ license information displayed in the console and log files are\nnot obfuscated or obstructed\ + \ in any way.\n\n\nSection 4 - GPLv2 License Agreement\n\n GNU GENERAL\ + \ PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright\ + \ (C) 1989, 1991 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor,\ + \ Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim\ + \ copies of\n this license document, but changing it is not allowed.\n\n Preamble\n\ + \n The licenses for most software are designed to take away your\n freedom to share\ + \ and change it. By contrast, the GNU General\n Public License is intended to guarantee\ + \ your freedom to share and\n change free software--to make sure the software is free\ + \ for all\n its users. This General Public License applies to most of the Free\n Software\ + \ Foundation's software and to any other program whose\n authors commit to using it.\ + \ (Some other Free Software Foundation\n software is covered by the GNU Library General\ + \ Public License\n instead.) You can apply it to your programs, too.\n\n When we speak\ + \ of free software, we are referring to freedom, not\n price. Our General Public Licenses\ + \ are designed to make sure that\n you have the freedom to distribute copies of free\ + \ software (and\n charge for this service if you wish), that you receive source code\n\ + \ or can get it if you want it, that you can change the software or\n use pieces of\ + \ it in new free programs; and that you know you can\n do these things.\n\n To protect\ + \ your rights, we need to make restrictions that forbid\n anyone to deny you these rights\ + \ or to ask you to surrender the\n rights. These restrictions translate to certain responsibilities\n\ + \ for you if you distribute copies of the software, or if you modify\n it.\n\n \ + \ For example, if you distribute copies of such a program, whether\n gratis or for a\ + \ fee, you must give the recipients all the rights\n that you have. You must make sure\ + \ that they, too, receive or can\n get the source code. And you must show them these\ + \ terms so they\n know their rights.\n\n We protect your rights with two steps:\n\n\ + \ (1) copyright the software, and\n (2) offer you this license which gives you legal\ + \ permission to\n copy, distribute and/or modify the software.\n\n Also, for each\ + \ author's protection and ours, we want to make\n certain that everyone understands that\ + \ there is no warranty for\n this free software. If the software is modified by someone\ + \ else\n and passed on, we want its recipients to know that what they have\n is not\ + \ the original, so that any problems introduced by others\n will not reflect on the original\ + \ authors' reputations.\n\n Finally, any free program is threatened constantly by software\n\ + \ patents. We wish to avoid the danger that redistributors of a free\n program will\ + \ individually obtain patent licenses, in effect making\n the program proprietary. To\ + \ prevent this, we have made it clear\n that any patent must be licensed for everyone's\ + \ free use or not\n licensed at all.\n\n The precise terms and conditions for copying,\ + \ distribution and\n modification follow.\n GNU GENERAL PUBLIC LICENSE\n TERMS\ + \ AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License applies\ + \ to any program or other work which\n contains a notice placed by the copyright holder\ + \ saying it may be\n distributed under the terms of this General Public License. The\n\ + \ \"Program\", below, refers to any such program or work, and a \"work\n based on\ + \ the Program\" means either the Program or any derivative\n work under copyright law:\ + \ that is to say, a work containing the\n Program or a portion of it, either verbatim\ + \ or with modifications\n and/or translated into another language. (Hereinafter, translation\n\ + \ is included without limitation in the term \"modification\".) Each\n licensee is\ + \ addressed as \"you\".\n\n Activities other than copying, distribution and modification\ + \ are\n not covered by this License; they are outside its scope. The act\n of running\ + \ the Program is not restricted, and the output from the\n Program is covered only if\ + \ its contents constitute a work based on\n the Program (independent of having been made\ + \ by running the\n Program). Whether that is true depends on what the Program does.\n\ + \n 1. You may copy and distribute verbatim copies of the Program's\n source code as\ + \ you receive it, in any medium, provided that you\n conspicuously and appropriately\ + \ publish on each copy an\n appropriate copyright notice and disclaimer of warranty;\ + \ keep\n intact all the notices that refer to this License and to the\n absence of\ + \ any warranty; and give any other recipients of the\n Program a copy of this License\ + \ along with the Program.\n\n You may charge a fee for the physical act of transferring\ + \ a copy,\n and you may at your option offer warranty protection in exchange\n for\ + \ a fee.\n\n 2. You may modify your copy or copies of the Program or any\n portion\ + \ of it, thus forming a work based on the Program, and copy\n and distribute such modifications\ + \ or work under the terms of\n Section 1 above, provided that you also meet all of these\n\ + \ conditions:\n\n a) You must cause the modified files to carry prominent notices\n\ + \ stating that you changed the files and the date of any change.\n\n b) You must cause\ + \ any work that you distribute or publish, that in\n whole or in part contains or is\ + \ derived from the Program or any\n part thereof, to be licensed as a whole at no charge\ + \ to all third\n parties under the terms of this License.\n\n c) If the modified program\ + \ normally reads commands interactively\n when run, you must cause it, when started running\ + \ for such\n interactive use in the most ordinary way, to print or display an\n announcement\ + \ including an appropriate copyright notice and a\n notice that there is no warranty\ + \ (or else, saying that you provide\n a warranty) and that users may redistribute the\ + \ program under\n these conditions, and telling the user how to view a copy of this\n\ + \ License. (Exception: if the Program itself is interactive but does\n not normally\ + \ print such an announcement, your work based on the\n Program is not required to print\ + \ an announcement.)\n\n These requirements apply to the modified work as a whole. If\n\ + \ identifiable sections of that work are not derived from the\n Program, and can be\ + \ reasonably considered independent and separate\n works in themselves, then this License,\ + \ and its terms, do not\n apply to those sections when you distribute them as separate\ + \ works.\n But when you distribute the same sections as part of a whole which\n is\ + \ a work based on the Program, the distribution of the whole must\n be on the terms of\ + \ this License, whose permissions for other\n licensees extend to the entire whole, and\ + \ thus to each and every\n part regardless of who wrote it.\n\n Thus, it is not the\ + \ intent of this section to claim rights or\n contest your rights to work written entirely\ + \ by you; rather, the\n intent is to exercise the right to control the distribution of\n\ + \ derivative or collective works based on the Program.\n\n In addition, mere aggregation\ + \ of another work not based on the\n Program with the Program (or with a work based on\ + \ the Program) on\n a volume of a storage or distribution medium does not bring the\n\ + \ other work under the scope of this License.\n\n 3. You may copy and distribute the\ + \ Program (or a work based on it,\n under Section 2) in object code or executable form\ + \ under the terms\n of Sections 1 and 2 above provided that you also do one of the\n\ + \ following:\n\n a) Accompany it with the complete corresponding machine-readable\n\ + \ source code, which must be distributed under the terms of Sections\n 1 and 2 above\ + \ on a medium customarily used for software\n interchange; or,\n\n b) Accompany it\ + \ with a written offer, valid for at least three\n years, to give any third party, for\ + \ a charge no more than your\n cost of physically performing source distribution, a complete\n\ + \ machine-readable copy of the corresponding source code, to be\n distributed under\ + \ the terms of Sections 1 and 2 above on a medium\n customarily used for software interchange;\ + \ or,\n\n c) Accompany it with the information you received as to the offer\n to distribute\ + \ corresponding source code. (This alternative is\n allowed only for noncommercial distribution\ + \ and only if you\n received the program in object code or executable form with such\n\ + \ an offer, in accord with Subsection b above.)\n\n The source code for a work means\ + \ the preferred form of the work\n for making modifications to it. For an executable\ + \ work, complete\n source code means all the source code for all modules it contains,\n\ + \ plus any associated interface definition files, plus the scripts\n used to control\ + \ compilation and installation of the executable.\n However, as a special exception,\ + \ the source code distributed need\n not include anything that is normally distributed\ + \ (in either\n source or binary form) with the major components (compiler,\n kernel,\ + \ and so on) of the operating system on which the executable\n runs, unless that component\ + \ itself accompanies the executable.\n\n If distribution of executable or object code\ + \ is made by offering\n access to copy from a designated place, then offering equivalent\n\ + \ access to copy the source code from the same place counts as\n distribution of the\ + \ source code, even though third parties are not\n compelled to copy the source along\ + \ with the object code.\n\n 4. You may not copy, modify, sublicense, or distribute the\ + \ Program\n except as expressly provided under this License. Any attempt\n otherwise\ + \ to copy, modify, sublicense or distribute the Program is\n void, and will automatically\ + \ terminate your rights under this\n License. However, parties who have received copies,\ + \ or rights,\n from you under this License will not have their licenses\n terminated\ + \ so long as such parties remain in full compliance.\n\n 5. You are not required to accept\ + \ this License, since you have not\n signed it. However, nothing else grants you permission\ + \ to modify\n or distribute the Program or its derivative works. These actions\n are\ + \ prohibited by law if you do not accept this License.\n Therefore, by modifying or distributing\ + \ the Program (or any work\n based on the Program), you indicate your acceptance of this\n\ + \ License to do so, and all its terms and conditions for copying,\n distributing or\ + \ modifying the Program or works based on it.\n\n 6. Each time you redistribute the Program\ + \ (or any work based on\n the Program), the recipient automatically receives a license\ + \ from\n the original licensor to copy, distribute or modify the Program\n subject\ + \ to these terms and conditions. You may not impose any\n further restrictions on the\ + \ recipients' exercise of the rights\n granted herein. You are not responsible for enforcing\ + \ compliance\n by third parties to this License.\n\n 7. If, as a consequence of a\ + \ court judgment or allegation of\n patent infringement or for any other reason (not\ + \ limited to\n patent issues), conditions are imposed on you (whether by court\n order,\ + \ agreement or otherwise) that contradict the conditions of\n this License, they do not\ + \ excuse you from the conditions of this\n License. If you cannot distribute so as to\ + \ satisfy simultaneously\n your obligations under this License and any other pertinent\n\ + \ obligations, then as a consequence you may not distribute the\n Program at all.\ + \ For example, if a patent license would not permit\n royalty-free redistribution of\ + \ the Program by all those who\n receive copies directly or indirectly through you, then\ + \ the only\n way you could satisfy both it and this License would be to refrain\n \ + \ entirely from distribution of the Program.\n\n If any portion of this section is held\ + \ invalid or unenforceable\n under any particular circumstance, the balance of the section\ + \ is\n intended to apply and the section as a whole is intended to apply\n in other\ + \ circumstances.\n\n It is not the purpose of this section to induce you to infringe\n\ + \ any patents or other property right claims or to contest validity\n of any such\ + \ claims; this section has the sole purpose of\n protecting the integrity of the free\ + \ software distribution system,\n which is implemented by public license practices. Many\ + \ people have\n made generous contributions to the wide range of software\n distributed\ + \ through that system in reliance on consistent\n application of that system; it is up\ + \ to the author/donor to decide\n if he or she is willing to distribute software through\ + \ any other\n system and a licensee cannot impose that choice.\n\n This section is\ + \ intended to make thoroughly clear what is believed\n to be a consequence of the rest\ + \ of this License.\n\n 8. If the distribution and/or use of the Program is restricted\ + \ in\n certain countries either by patents or by copyrighted interfaces,\n the original\ + \ copyright holder who places the Program under this\n License may add an explicit geographical\ + \ distribution limitation\n excluding those countries, so that distribution is permitted\ + \ only\n in or among countries not thus excluded. In such case, this\n License incorporates\ + \ the limitation as if written in the body of\n this License.\n\n 9. The Free Software\ + \ Foundation may publish revised and/or new\n versions of the General Public License\ + \ from time to time. Such new\n versions will be similar in spirit to the present version,\ + \ but may\n differ in detail to address new problems or concerns.\n\n Each version\ + \ is given a distinguishing version number. If the\n Program specifies a version number\ + \ of this License which applies\n to it and \"any later version\", you have the option\ + \ of following\n the terms and conditions either of that version or of any later\n \ + \ version published by the Free Software Foundation. If the Program\n does not specify\ + \ a version number of this License, you may choose\n any version ever published by the\ + \ Free Software Foundation.\n\n 10. If you wish to incorporate parts of the Program into\ + \ other\n free programs whose distribution conditions are different, write\n to the\ + \ author to ask for permission. For software which is\n copyrighted by the Free Software\ + \ Foundation, write to the Free\n Software Foundation; we sometimes make exceptions for\ + \ this. Our\n decision will be guided by the two goals of preserving the free\n status\ + \ of all derivatives of our free software and of promoting\n the sharing and reuse of\ + \ software generally.\n \n NO WARRANTY\n\n 11. BECAUSE THE PROGRAM IS LICENSED\ + \ FREE OF CHARGE, THERE IS NO\n WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\ + \ APPLICABLE\n LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS\n \ + \ AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\n OF ANY KIND,\ + \ EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES\ + \ OF MERCHANTABILITY AND FITNESS\n FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE\ + \ QUALITY AND\n PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE\n \ + \ DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR\n OR CORRECTION.\n\ + \n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\n WRITING WILL\ + \ ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY\n MODIFY AND/OR REDISTRIBUTE THE PROGRAM\ + \ AS PERMITTED ABOVE, BE\n LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,\n\ + \ INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\n INABILITY TO USE\ + \ THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\n DATA OR DATA BEING RENDERED INACCURATE\ + \ OR LOSSES SUSTAINED BY YOU\n OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE\ + \ WITH ANY\n OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN\n ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n\nSection 4\ + \ - 3rd Party Components\n\n(1) The Software Program includes software and documentation\ + \ components\ndeveloped in part by Silver Egg Technology, Inc.(\"SET\") prior to 2001\n\ + and released under the following license.\n\n Copyright (c) 2001 Silver Egg Technology\n\ + \n Permission is hereby granted, free of charge, to any person\n obtaining a copy\ + \ of this software and associated documentation\n files (the \"Software\"), to deal in\ + \ the Software without\n restriction, including without limitation the rights to use,\n\ + \ copy, modify, merge, publish, distribute, sub-license, and/or\n sell copies of the\ + \ Software, and to permit persons to whom the\n Software is furnished to do so, subject\ + \ to the following\n conditions:\n \n The above copyright notice and this permission\ + \ notice shall be\n included in all copies or substantial portions of the Software.\n\ + \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR\ + \ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE AND\n NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n\ + \ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n WHETHER IN AN ACTION\ + \ OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE\ + \ OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE." json: tanuki-community-sla-1.1.json - yml: tanuki-community-sla-1.1.yml + yaml: tanuki-community-sla-1.1.yml html: tanuki-community-sla-1.1.html - text: tanuki-community-sla-1.1.LICENSE + license: tanuki-community-sla-1.1.LICENSE - license_key: tanuki-community-sla-1.2 + category: Copyleft spdx_license_key: LicenseRef-scancode-tanuki-community-sla-1.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "Tanuki Software, Ltd. \nCommunity Software License Agreement\nVersion 1.2\n\nIMPORTANT-READ\ + \ CAREFULLY: This license agreement is a legal agreement\nbetween you (\"Licensee\") and\ + \ Tanuki Software, Ltd. (\"TSI\"), which\nincludes computer software, associated media,\ + \ printed materials, and\nmay include online or electronic documentation ( Software ). \ + \ PLEASE\nREAD THIS AGREEMENT CAREFULLY BEFORE YOU INSTALL, COPY, DOWNLOAD OR\nUSE THE SOFTWARE\ + \ ACCOMPANYING THIS PACKAGE.\n\nSection 1 - Grant of License\n\nCommunity editions of the\ + \ Software are made available on the GNU\nGeneral Public License, Version 2 (\"GPLv2\"),\ + \ included in Section 4 of\nthis license document. All sections of the Community Software\ + \ License\nAgreement must be complied with in addition to those of the GPLv2.\n\n\nSection\ + \ 2 - Definitions \n\n2.1. \"Community Edition\" shall mean versions of the Software Program\n\ + distributed in source form under this license agreement, and all new\nreleases, corrections,\ + \ enhancements and updates to the Software\nProgram, which TSI makes generally available\ + \ under this agreement.\n\n2.2. \"Documentation\" shall mean the contents of the website\n\ + describing the functionality and use of the Software Program, located\nat http://wrapper.tanukisoftware.org\n\ + \n2.3. \"Product\" shall mean the computer programs, that are provided by\nLicensee to Licensee\ + \ customers or potential customers, and that\ncontain both the Software Program as a component\ + \ of the Product, and a\ncomponent or components (other than the Software Program) that\ + \ provide\nthe material functionality of the Product. If the Product is released\nin source\ + \ form, the Software Program or any of its components may only\nbe included in executable\ + \ form.\n\n2.4. \"Software Program\" shall mean the computer software and license\nfile\ + \ provided by TSI under this Agreement, including all new releases,\ncorrections, enhancements\ + \ and updates to such computer software, which\nTSI makes generally available and which\ + \ Licensee receive pursuant to\nLicensee subscription to TSIMS. Some specific features or\ + \ platforms\nmay not be enabled if they do not fall under the feature set(s)\ncovered by\ + \ the specific license fees paid.\n\n2.5 \"End User\" shall mean the customers of the Licensee\ + \ or any\nrecipient of the Product whether or not any payment is made to use\nthe Product.\n\ + \n\nSection 3 - Licensee Obligations\n\nA copy of this license must be distributed in full\ + \ with the Product\nin a location that is obvious to any End User.\n\nIn accordance with\ + \ Section 4, the full source code of all components\nof the Product must be made available\ + \ to any and all End Users.\n\nLicensee may extend and/or modify the Software Program and\ + \ distribute\nunder the terms of this agreement provided that the copyright notice\nand\ + \ license information displayed in the console and log files are\nnot obfuscated or obstructed\ + \ in any way.\n\n\nSection 4 - GPLv2 License Agreement\n\n GNU GENERAL\ + \ PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright\ + \ (C) 1989, 1991 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor,\ + \ Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim\ + \ copies of\n this license document, but changing it is not allowed.\n\n Preamble\n\ + \n The licenses for most software are designed to take away your\n freedom to share\ + \ and change it. By contrast, the GNU General\n Public License is intended to guarantee\ + \ your freedom to share and\n change free software--to make sure the software is free\ + \ for all\n its users. This General Public License applies to most of the Free\n Software\ + \ Foundation's software and to any other program whose\n authors commit to using it.\ + \ (Some other Free Software Foundation\n software is covered by the GNU Library General\ + \ Public License\n instead.) You can apply it to your programs, too.\n\n When we speak\ + \ of free software, we are referring to freedom, not\n price. Our General Public Licenses\ + \ are designed to make sure that\n you have the freedom to distribute copies of free\ + \ software (and\n charge for this service if you wish), that you receive source code\n\ + \ or can get it if you want it, that you can change the software or\n use pieces of\ + \ it in new free programs; and that you know you can\n do these things.\n\n To protect\ + \ your rights, we need to make restrictions that forbid\n anyone to deny you these rights\ + \ or to ask you to surrender the\n rights. These restrictions translate to certain responsibilities\n\ + \ for you if you distribute copies of the software, or if you modify\n it.\n\n \ + \ For example, if you distribute copies of such a program, whether\n gratis or for a\ + \ fee, you must give the recipients all the rights\n that you have. You must make sure\ + \ that they, too, receive or can\n get the source code. And you must show them these\ + \ terms so they\n know their rights.\n\n We protect your rights with two steps:\n\n\ + \ (1) copyright the software, and\n (2) offer you this license which gives you legal\ + \ permission to\n copy, distribute and/or modify the software.\n\n Also, for each\ + \ author's protection and ours, we want to make\n certain that everyone understands that\ + \ there is no warranty for\n this free software. If the software is modified by someone\ + \ else\n and passed on, we want its recipients to know that what they have\n is not\ + \ the original, so that any problems introduced by others\n will not reflect on the original\ + \ authors' reputations.\n\n Finally, any free program is threatened constantly by software\n\ + \ patents. We wish to avoid the danger that redistributors of a free\n program will\ + \ individually obtain patent licenses, in effect making\n the program proprietary. To\ + \ prevent this, we have made it clear\n that any patent must be licensed for everyone's\ + \ free use or not\n licensed at all.\n\n The precise terms and conditions for copying,\ + \ distribution and\n modification follow.\n GNU GENERAL PUBLIC LICENSE\n TERMS\ + \ AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License applies\ + \ to any program or other work which\n contains a notice placed by the copyright holder\ + \ saying it may be\n distributed under the terms of this General Public License. The\n\ + \ \"Program\", below, refers to any such program or work, and a \"work\n based on\ + \ the Program\" means either the Program or any derivative\n work under copyright law:\ + \ that is to say, a work containing the\n Program or a portion of it, either verbatim\ + \ or with modifications\n and/or translated into another language. (Hereinafter, translation\n\ + \ is included without limitation in the term \"modification\".) Each\n licensee is\ + \ addressed as \"you\".\n\n Activities other than copying, distribution and modification\ + \ are\n not covered by this License; they are outside its scope. The act\n of running\ + \ the Program is not restricted, and the output from the\n Program is covered only if\ + \ its contents constitute a work based on\n the Program (independent of having been made\ + \ by running the\n Program). Whether that is true depends on what the Program does.\n\ + \n 1. You may copy and distribute verbatim copies of the Program's\n source code as\ + \ you receive it, in any medium, provided that you\n conspicuously and appropriately\ + \ publish on each copy an\n appropriate copyright notice and disclaimer of warranty;\ + \ keep\n intact all the notices that refer to this License and to the\n absence of\ + \ any warranty; and give any other recipients of the\n Program a copy of this License\ + \ along with the Program.\n\n You may charge a fee for the physical act of transferring\ + \ a copy,\n and you may at your option offer warranty protection in exchange\n for\ + \ a fee.\n\n 2. You may modify your copy or copies of the Program or any\n portion\ + \ of it, thus forming a work based on the Program, and copy\n and distribute such modifications\ + \ or work under the terms of\n Section 1 above, provided that you also meet all of these\n\ + \ conditions:\n\n a) You must cause the modified files to carry prominent notices\n\ + \ stating that you changed the files and the date of any change.\n\n b) You must cause\ + \ any work that you distribute or publish, that in\n whole or in part contains or is\ + \ derived from the Program or any\n part thereof, to be licensed as a whole at no charge\ + \ to all third\n parties under the terms of this License.\n\n c) If the modified program\ + \ normally reads commands interactively\n when run, you must cause it, when started running\ + \ for such\n interactive use in the most ordinary way, to print or display an\n announcement\ + \ including an appropriate copyright notice and a\n notice that there is no warranty\ + \ (or else, saying that you provide\n a warranty) and that users may redistribute the\ + \ program under\n these conditions, and telling the user how to view a copy of this\n\ + \ License. (Exception: if the Program itself is interactive but does\n not normally\ + \ print such an announcement, your work based on the\n Program is not required to print\ + \ an announcement.)\n\n These requirements apply to the modified work as a whole. If\n\ + \ identifiable sections of that work are not derived from the\n Program, and can be\ + \ reasonably considered independent and separate\n works in themselves, then this License,\ + \ and its terms, do not\n apply to those sections when you distribute them as separate\ + \ works.\n But when you distribute the same sections as part of a whole which\n is\ + \ a work based on the Program, the distribution of the whole must\n be on the terms of\ + \ this License, whose permissions for other\n licensees extend to the entire whole, and\ + \ thus to each and every\n part regardless of who wrote it.\n\n Thus, it is not the\ + \ intent of this section to claim rights or\n contest your rights to work written entirely\ + \ by you; rather, the\n intent is to exercise the right to control the distribution of\n\ + \ derivative or collective works based on the Program.\n\n In addition, mere aggregation\ + \ of another work not based on the\n Program with the Program (or with a work based on\ + \ the Program) on\n a volume of a storage or distribution medium does not bring the\n\ + \ other work under the scope of this License.\n\n 3. You may copy and distribute the\ + \ Program (or a work based on it,\n under Section 2) in object code or executable form\ + \ under the terms\n of Sections 1 and 2 above provided that you also do one of the\n\ + \ following:\n\n a) Accompany it with the complete corresponding machine-readable\n\ + \ source code, which must be distributed under the terms of Sections\n 1 and 2 above\ + \ on a medium customarily used for software\n interchange; or,\n\n b) Accompany it\ + \ with a written offer, valid for at least three\n years, to give any third party, for\ + \ a charge no more than your\n cost of physically performing source distribution, a complete\n\ + \ machine-readable copy of the corresponding source code, to be\n distributed under\ + \ the terms of Sections 1 and 2 above on a medium\n customarily used for software interchange;\ + \ or,\n\n c) Accompany it with the information you received as to the offer\n to distribute\ + \ corresponding source code. (This alternative is\n allowed only for noncommercial distribution\ + \ and only if you\n received the program in object code or executable form with such\n\ + \ an offer, in accord with Subsection b above.)\n\n The source code for a work means\ + \ the preferred form of the work\n for making modifications to it. For an executable\ + \ work, complete\n source code means all the source code for all modules it contains,\n\ + \ plus any associated interface definition files, plus the scripts\n used to control\ + \ compilation and installation of the executable.\n However, as a special exception,\ + \ the source code distributed need\n not include anything that is normally distributed\ + \ (in either\n source or binary form) with the major components (compiler,\n kernel,\ + \ and so on) of the operating system on which the executable\n runs, unless that component\ + \ itself accompanies the executable.\n\n If distribution of executable or object code\ + \ is made by offering\n access to copy from a designated place, then offering equivalent\n\ + \ access to copy the source code from the same place counts as\n distribution of the\ + \ source code, even though third parties are not\n compelled to copy the source along\ + \ with the object code.\n\n 4. You may not copy, modify, sublicense, or distribute the\ + \ Program\n except as expressly provided under this License. Any attempt\n otherwise\ + \ to copy, modify, sublicense or distribute the Program is\n void, and will automatically\ + \ terminate your rights under this\n License. However, parties who have received copies,\ + \ or rights,\n from you under this License will not have their licenses\n terminated\ + \ so long as such parties remain in full compliance.\n\n 5. You are not required to accept\ + \ this License, since you have not\n signed it. However, nothing else grants you permission\ + \ to modify\n or distribute the Program or its derivative works. These actions\n are\ + \ prohibited by law if you do not accept this License.\n Therefore, by modifying or distributing\ + \ the Program (or any work\n based on the Program), you indicate your acceptance of this\n\ + \ License to do so, and all its terms and conditions for copying,\n distributing or\ + \ modifying the Program or works based on it.\n\n 6. Each time you redistribute the Program\ + \ (or any work based on\n the Program), the recipient automatically receives a license\ + \ from\n the original licensor to copy, distribute or modify the Program\n subject\ + \ to these terms and conditions. You may not impose any\n further restrictions on the\ + \ recipients' exercise of the rights\n granted herein. You are not responsible for enforcing\ + \ compliance\n by third parties to this License.\n\n 7. If, as a consequence of a\ + \ court judgment or allegation of\n patent infringement or for any other reason (not\ + \ limited to\n patent issues), conditions are imposed on you (whether by court\n order,\ + \ agreement or otherwise) that contradict the conditions of\n this License, they do not\ + \ excuse you from the conditions of this\n License. If you cannot distribute so as to\ + \ satisfy simultaneously\n your obligations under this License and any other pertinent\n\ + \ obligations, then as a consequence you may not distribute the\n Program at all.\ + \ For example, if a patent license would not permit\n royalty-free redistribution of\ + \ the Program by all those who\n receive copies directly or indirectly through you, then\ + \ the only\n way you could satisfy both it and this License would be to refrain\n \ + \ entirely from distribution of the Program.\n\n If any portion of this section is held\ + \ invalid or unenforceable\n under any particular circumstance, the balance of the section\ + \ is\n intended to apply and the section as a whole is intended to apply\n in other\ + \ circumstances.\n\n It is not the purpose of this section to induce you to infringe\n\ + \ any patents or other property right claims or to contest validity\n of any such\ + \ claims; this section has the sole purpose of\n protecting the integrity of the free\ + \ software distribution system,\n which is implemented by public license practices. Many\ + \ people have\n made generous contributions to the wide range of software\n distributed\ + \ through that system in reliance on consistent\n application of that system; it is up\ + \ to the author/donor to decide\n if he or she is willing to distribute software through\ + \ any other\n system and a licensee cannot impose that choice.\n\n This section is\ + \ intended to make thoroughly clear what is believed\n to be a consequence of the rest\ + \ of this License.\n\n 8. If the distribution and/or use of the Program is restricted\ + \ in\n certain countries either by patents or by copyrighted interfaces,\n the original\ + \ copyright holder who places the Program under this\n License may add an explicit geographical\ + \ distribution limitation\n excluding those countries, so that distribution is permitted\ + \ only\n in or among countries not thus excluded. In such case, this\n License incorporates\ + \ the limitation as if written in the body of\n this License.\n\n 9. The Free Software\ + \ Foundation may publish revised and/or new\n versions of the General Public License\ + \ from time to time. Such new\n versions will be similar in spirit to the present version,\ + \ but may\n differ in detail to address new problems or concerns.\n\n Each version\ + \ is given a distinguishing version number. If the\n Program specifies a version number\ + \ of this License which applies\n to it and \"any later version\", you have the option\ + \ of following\n the terms and conditions either of that version or of any later\n \ + \ version published by the Free Software Foundation. If the Program\n does not specify\ + \ a version number of this License, you may choose\n any version ever published by the\ + \ Free Software Foundation.\n\n 10. If you wish to incorporate parts of the Program into\ + \ other\n free programs whose distribution conditions are different, write\n to the\ + \ author to ask for permission. For software which is\n copyrighted by the Free Software\ + \ Foundation, write to the Free\n Software Foundation; we sometimes make exceptions for\ + \ this. Our\n decision will be guided by the two goals of preserving the free\n status\ + \ of all derivatives of our free software and of promoting\n the sharing and reuse of\ + \ software generally.\n \n NO WARRANTY\n\n 11. BECAUSE THE PROGRAM IS LICENSED\ + \ FREE OF CHARGE, THERE IS NO\n WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\ + \ APPLICABLE\n LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS\n \ + \ AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\n OF ANY KIND,\ + \ EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES\ + \ OF MERCHANTABILITY AND FITNESS\n FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE\ + \ QUALITY AND\n PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE\n \ + \ DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR\n OR CORRECTION.\n\ + \n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\n WRITING WILL\ + \ ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY\n MODIFY AND/OR REDISTRIBUTE THE PROGRAM\ + \ AS PERMITTED ABOVE, BE\n LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,\n\ + \ INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\n INABILITY TO USE\ + \ THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\n DATA OR DATA BEING RENDERED INACCURATE\ + \ OR LOSSES SUSTAINED BY YOU\n OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE\ + \ WITH ANY\n OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN\n ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n\nSection 4\ + \ - 3rd Party Components\n\n(1) The Software Program includes software and documentation\ + \ components\ndeveloped in part by Silver Egg Technology, Inc.(\"SET\") prior to 2001\n\ + and released under the following license.\n\n Copyright (c) 2001 Silver Egg Technology\n\ + \n Permission is hereby granted, free of charge, to any person\n obtaining a copy\ + \ of this software and associated documentation\n files (the \"Software\"), to deal in\ + \ the Software without\n restriction, including without limitation the rights to use,\n\ + \ copy, modify, merge, publish, distribute, sub-license, and/or\n sell copies of the\ + \ Software, and to permit persons to whom the\n Software is furnished to do so, subject\ + \ to the following\n conditions:\n \n The above copyright notice and this permission\ + \ notice shall be\n included in all copies or substantial portions of the Software.\n\ + \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR\ + \ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE AND\n NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n\ + \ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n WHETHER IN AN ACTION\ + \ OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE\ + \ OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE." json: tanuki-community-sla-1.2.json - yml: tanuki-community-sla-1.2.yml + yaml: tanuki-community-sla-1.2.yml html: tanuki-community-sla-1.2.html - text: tanuki-community-sla-1.2.LICENSE + license: tanuki-community-sla-1.2.LICENSE - license_key: tanuki-community-sla-1.3 + category: Copyleft spdx_license_key: LicenseRef-scancode-tanuki-community-sla-1.3 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "Tanuki Software, Ltd. \nCommunity Software License Agreement\nVersion 1.3\n\nIMPORTANT-READ\ + \ CAREFULLY: This license agreement is a legal agreement\nbetween you (\"Licensee\") and\ + \ Tanuki Software, Ltd. (\"TSI\"), which\nincludes computer software, associated media,\ + \ printed materials, and\nmay include online or electronic documentation ( Software ). \ + \ PLEASE\nREAD THIS AGREEMENT CAREFULLY BEFORE YOU INSTALL, COPY, DOWNLOAD OR\nUSE THE SOFTWARE\ + \ ACCOMPANYING THIS PACKAGE.\n\nSection 1 - Grant of License\n\nCommunity editions of the\ + \ Software are made available on the GNU\nGeneral Public License, Version 2 (\"GPLv2\")\ + \ or Version 3 (\"GPLv3\"),\nincluded in Sections 4 and 5 of this license document. All\ + \ sections\nof the Community Software License Agreement must be complied with in\naddition\ + \ to those of either the GPLv2 or GPLv3. This license allows\nthe Software Program to be\ + \ used with Products that are released under\neither GPLv2 or GPLv3.\n\n\nSection 2 - Definitions\ + \ \n\n2.1. \"Community Edition\" shall mean versions of the Software Program\ndistributed\ + \ in source form under this license agreement, and all new\nreleases, corrections, enhancements\ + \ and updates to the Software\nProgram, which TSI makes generally available under this agreement.\n\ + \n2.2. \"Documentation\" shall mean the contents of the website\ndescribing the functionality\ + \ and use of the Software Program, located\nat http://wrapper.tanukisoftware.org\n\n2.3.\ + \ \"Product\" shall mean the computer programs, that are provided by\nLicensee to Licensee\ + \ customers or potential customers, and that\ncontain both the Software Program as a component\ + \ of the Product, and a\ncomponent or components (other than the Software Program) that\ + \ provide\nthe material functionality of the Product. If the Product is released\nin source\ + \ form, the Software Program or any of its components may only\nbe included in executable\ + \ form.\n\n2.4. \"Software Program\" shall mean the computer software and license\nfile\ + \ provided by TSI under this Agreement, including all new releases,\ncorrections, enhancements\ + \ and updates to such computer software, which\nTSI makes generally available and which\ + \ Licensee receive pursuant to\nLicensee subscription to TSIMS. Some specific features or\ + \ platforms\nmay not be enabled if they do not fall under the feature set(s)\ncovered by\ + \ the specific license fees paid.\n\n2.5 \"End User\" shall mean the customers of the Licensee\ + \ or any\nrecipient of the Product whether or not any payment is made to use\nthe Product.\n\ + \n\nSection 3 - Licensee Obligations\n\nA copy of this license must be distributed in full\ + \ with the Product\nin a location that is obvious to any End User.\n\nIn accordance with\ + \ Section 4, the full source code of all components\nof the Product must be made available\ + \ to any and all End Users.\n\nLicensee may extend and/or modify the Software Program and\ + \ distribute\nunder the terms of this agreement provided that the copyright notice\nand\ + \ license information displayed in the console and log files are\nnot obfuscated or obstructed\ + \ in any way.\n\n\nSection 4 - GPLv2 License Agreement\n\n GNU GENERAL\ + \ PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright\ + \ (C) 1989, 1991 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor,\ + \ Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim\ + \ copies of\n this license document, but changing it is not allowed.\n\n Preamble\n\ + \n The licenses for most software are designed to take away your\n freedom to share\ + \ and change it. By contrast, the GNU General\n Public License is intended to guarantee\ + \ your freedom to share and\n change free software--to make sure the software is free\ + \ for all\n its users. This General Public License applies to most of the Free\n Software\ + \ Foundation's software and to any other program whose\n authors commit to using it.\ + \ (Some other Free Software Foundation\n software is covered by the GNU Library General\ + \ Public License\n instead.) You can apply it to your programs, too.\n\n When we speak\ + \ of free software, we are referring to freedom, not\n price. Our General Public Licenses\ + \ are designed to make sure that\n you have the freedom to distribute copies of free\ + \ software (and\n charge for this service if you wish), that you receive source code\n\ + \ or can get it if you want it, that you can change the software or\n use pieces of\ + \ it in new free programs; and that you know you can\n do these things.\n\n To protect\ + \ your rights, we need to make restrictions that forbid\n anyone to deny you these rights\ + \ or to ask you to surrender the\n rights. These restrictions translate to certain responsibilities\n\ + \ for you if you distribute copies of the software, or if you modify\n it.\n\n \ + \ For example, if you distribute copies of such a program, whether\n gratis or for a\ + \ fee, you must give the recipients all the rights\n that you have. You must make sure\ + \ that they, too, receive or can\n get the source code. And you must show them these\ + \ terms so they\n know their rights.\n\n We protect your rights with two steps:\n\n\ + \ (1) copyright the software, and\n (2) offer you this license which gives you legal\ + \ permission to\n copy, distribute and/or modify the software.\n\n Also, for each\ + \ author's protection and ours, we want to make\n certain that everyone understands that\ + \ there is no warranty for\n this free software. If the software is modified by someone\ + \ else\n and passed on, we want its recipients to know that what they have\n is not\ + \ the original, so that any problems introduced by others\n will not reflect on the original\ + \ authors' reputations.\n\n Finally, any free program is threatened constantly by software\n\ + \ patents. We wish to avoid the danger that redistributors of a free\n program will\ + \ individually obtain patent licenses, in effect making\n the program proprietary. To\ + \ prevent this, we have made it clear\n that any patent must be licensed for everyone's\ + \ free use or not\n licensed at all.\n\n The precise terms and conditions for copying,\ + \ distribution and\n modification follow.\n\n GNU GENERAL PUBLIC LICENSE\n TERMS\ + \ AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License applies\ + \ to any program or other work which\n contains a notice placed by the copyright holder\ + \ saying it may be\n distributed under the terms of this General Public License. The\n\ + \ \"Program\", below, refers to any such program or work, and a \"work\n based on\ + \ the Program\" means either the Program or any derivative\n work under copyright law:\ + \ that is to say, a work containing the\n Program or a portion of it, either verbatim\ + \ or with modifications\n and/or translated into another language. (Hereinafter, translation\n\ + \ is included without limitation in the term \"modification\".) Each\n licensee is\ + \ addressed as \"you\".\n\n Activities other than copying, distribution and modification\ + \ are\n not covered by this License; they are outside its scope. The act\n of running\ + \ the Program is not restricted, and the output from the\n Program is covered only if\ + \ its contents constitute a work based on\n the Program (independent of having been made\ + \ by running the\n Program). Whether that is true depends on what the Program does.\n\ + \n 1. You may copy and distribute verbatim copies of the Program's\n source code as\ + \ you receive it, in any medium, provided that you\n conspicuously and appropriately\ + \ publish on each copy an\n appropriate copyright notice and disclaimer of warranty;\ + \ keep\n intact all the notices that refer to this License and to the\n absence of\ + \ any warranty; and give any other recipients of the\n Program a copy of this License\ + \ along with the Program.\n\n You may charge a fee for the physical act of transferring\ + \ a copy,\n and you may at your option offer warranty protection in exchange\n for\ + \ a fee.\n\n 2. You may modify your copy or copies of the Program or any\n portion\ + \ of it, thus forming a work based on the Program, and copy\n and distribute such modifications\ + \ or work under the terms of\n Section 1 above, provided that you also meet all of these\n\ + \ conditions:\n\n a) You must cause the modified files to carry prominent notices\n\ + \ stating that you changed the files and the date of any change.\n\n b) You must cause\ + \ any work that you distribute or publish, that in\n whole or in part contains or is\ + \ derived from the Program or any\n part thereof, to be licensed as a whole at no charge\ + \ to all third\n parties under the terms of this License.\n\n c) If the modified program\ + \ normally reads commands interactively\n when run, you must cause it, when started running\ + \ for such\n interactive use in the most ordinary way, to print or display an\n announcement\ + \ including an appropriate copyright notice and a\n notice that there is no warranty\ + \ (or else, saying that you provide\n a warranty) and that users may redistribute the\ + \ program under\n these conditions, and telling the user how to view a copy of this\n\ + \ License. (Exception: if the Program itself is interactive but does\n not normally\ + \ print such an announcement, your work based on the\n Program is not required to print\ + \ an announcement.)\n\n These requirements apply to the modified work as a whole. If\n\ + \ identifiable sections of that work are not derived from the\n Program, and can be\ + \ reasonably considered independent and separate\n works in themselves, then this License,\ + \ and its terms, do not\n apply to those sections when you distribute them as separate\ + \ works.\n But when you distribute the same sections as part of a whole which\n is\ + \ a work based on the Program, the distribution of the whole must\n be on the terms of\ + \ this License, whose permissions for other\n licensees extend to the entire whole, and\ + \ thus to each and every\n part regardless of who wrote it.\n\n Thus, it is not the\ + \ intent of this section to claim rights or\n contest your rights to work written entirely\ + \ by you; rather, the\n intent is to exercise the right to control the distribution of\n\ + \ derivative or collective works based on the Program.\n\n In addition, mere aggregation\ + \ of another work not based on the\n Program with the Program (or with a work based on\ + \ the Program) on\n a volume of a storage or distribution medium does not bring the\n\ + \ other work under the scope of this License.\n\n 3. You may copy and distribute the\ + \ Program (or a work based on it,\n under Section 2) in object code or executable form\ + \ under the terms\n of Sections 1 and 2 above provided that you also do one of the\n\ + \ following:\n\n a) Accompany it with the complete corresponding machine-readable\n\ + \ source code, which must be distributed under the terms of Sections\n 1 and 2 above\ + \ on a medium customarily used for software\n interchange; or,\n\n b) Accompany it\ + \ with a written offer, valid for at least three\n years, to give any third party, for\ + \ a charge no more than your\n cost of physically performing source distribution, a complete\n\ + \ machine-readable copy of the corresponding source code, to be\n distributed under\ + \ the terms of Sections 1 and 2 above on a medium\n customarily used for software interchange;\ + \ or,\n\n c) Accompany it with the information you received as to the offer\n to distribute\ + \ corresponding source code. (This alternative is\n allowed only for noncommercial distribution\ + \ and only if you\n received the program in object code or executable form with such\n\ + \ an offer, in accord with Subsection b above.)\n\n The source code for a work means\ + \ the preferred form of the work\n for making modifications to it. For an executable\ + \ work, complete\n source code means all the source code for all modules it contains,\n\ + \ plus any associated interface definition files, plus the scripts\n used to control\ + \ compilation and installation of the executable.\n However, as a special exception,\ + \ the source code distributed need\n not include anything that is normally distributed\ + \ (in either\n source or binary form) with the major components (compiler,\n kernel,\ + \ and so on) of the operating system on which the executable\n runs, unless that component\ + \ itself accompanies the executable.\n\n If distribution of executable or object code\ + \ is made by offering\n access to copy from a designated place, then offering equivalent\n\ + \ access to copy the source code from the same place counts as\n distribution of the\ + \ source code, even though third parties are not\n compelled to copy the source along\ + \ with the object code.\n\n 4. You may not copy, modify, sublicense, or distribute the\ + \ Program\n except as expressly provided under this License. Any attempt\n otherwise\ + \ to copy, modify, sublicense or distribute the Program is\n void, and will automatically\ + \ terminate your rights under this\n License. However, parties who have received copies,\ + \ or rights,\n from you under this License will not have their licenses\n terminated\ + \ so long as such parties remain in full compliance.\n\n 5. You are not required to accept\ + \ this License, since you have not\n signed it. However, nothing else grants you permission\ + \ to modify\n or distribute the Program or its derivative works. These actions\n are\ + \ prohibited by law if you do not accept this License.\n Therefore, by modifying or distributing\ + \ the Program (or any work\n based on the Program), you indicate your acceptance of this\n\ + \ License to do so, and all its terms and conditions for copying,\n distributing or\ + \ modifying the Program or works based on it.\n\n 6. Each time you redistribute the Program\ + \ (or any work based on\n the Program), the recipient automatically receives a license\ + \ from\n the original licensor to copy, distribute or modify the Program\n subject\ + \ to these terms and conditions. You may not impose any\n further restrictions on the\ + \ recipients' exercise of the rights\n granted herein. You are not responsible for enforcing\ + \ compliance\n by third parties to this License.\n\n 7. If, as a consequence of a\ + \ court judgment or allegation of\n patent infringement or for any other reason (not\ + \ limited to\n patent issues), conditions are imposed on you (whether by court\n order,\ + \ agreement or otherwise) that contradict the conditions of\n this License, they do not\ + \ excuse you from the conditions of this\n License. If you cannot distribute so as to\ + \ satisfy simultaneously\n your obligations under this License and any other pertinent\n\ + \ obligations, then as a consequence you may not distribute the\n Program at all.\ + \ For example, if a patent license would not permit\n royalty-free redistribution of\ + \ the Program by all those who\n receive copies directly or indirectly through you, then\ + \ the only\n way you could satisfy both it and this License would be to refrain\n \ + \ entirely from distribution of the Program.\n\n If any portion of this section is held\ + \ invalid or unenforceable\n under any particular circumstance, the balance of the section\ + \ is\n intended to apply and the section as a whole is intended to apply\n in other\ + \ circumstances.\n\n It is not the purpose of this section to induce you to infringe\n\ + \ any patents or other property right claims or to contest validity\n of any such\ + \ claims; this section has the sole purpose of\n protecting the integrity of the free\ + \ software distribution system,\n which is implemented by public license practices. Many\ + \ people have\n made generous contributions to the wide range of software\n distributed\ + \ through that system in reliance on consistent\n application of that system; it is up\ + \ to the author/donor to decide\n if he or she is willing to distribute software through\ + \ any other\n system and a licensee cannot impose that choice.\n\n This section is\ + \ intended to make thoroughly clear what is believed\n to be a consequence of the rest\ + \ of this License.\n\n 8. If the distribution and/or use of the Program is restricted\ + \ in\n certain countries either by patents or by copyrighted interfaces,\n the original\ + \ copyright holder who places the Program under this\n License may add an explicit geographical\ + \ distribution limitation\n excluding those countries, so that distribution is permitted\ + \ only\n in or among countries not thus excluded. In such case, this\n License incorporates\ + \ the limitation as if written in the body of\n this License.\n\n 9. The Free Software\ + \ Foundation may publish revised and/or new\n versions of the General Public License\ + \ from time to time. Such new\n versions will be similar in spirit to the present version,\ + \ but may\n differ in detail to address new problems or concerns.\n\n Each version\ + \ is given a distinguishing version number. If the\n Program specifies a version number\ + \ of this License which applies\n to it and \"any later version\", you have the option\ + \ of following\n the terms and conditions either of that version or of any later\n \ + \ version published by the Free Software Foundation. If the Program\n does not specify\ + \ a version number of this License, you may choose\n any version ever published by the\ + \ Free Software Foundation.\n\n 10. If you wish to incorporate parts of the Program into\ + \ other\n free programs whose distribution conditions are different, write\n to the\ + \ author to ask for permission. For software which is\n copyrighted by the Free Software\ + \ Foundation, write to the Free\n Software Foundation; we sometimes make exceptions for\ + \ this. Our\n decision will be guided by the two goals of preserving the free\n status\ + \ of all derivatives of our free software and of promoting\n the sharing and reuse of\ + \ software generally.\n \n NO WARRANTY\n\n 11. BECAUSE THE PROGRAM IS LICENSED\ + \ FREE OF CHARGE, THERE IS NO\n WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\ + \ APPLICABLE\n LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS\n \ + \ AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\n OF ANY KIND,\ + \ EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES\ + \ OF MERCHANTABILITY AND FITNESS\n FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE\ + \ QUALITY AND\n PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE\n \ + \ DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR\n OR CORRECTION.\n\ + \n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\n WRITING WILL\ + \ ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY\n MODIFY AND/OR REDISTRIBUTE THE PROGRAM\ + \ AS PERMITTED ABOVE, BE\n LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,\n\ + \ INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\n INABILITY TO USE\ + \ THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\n DATA OR DATA BEING RENDERED INACCURATE\ + \ OR LOSSES SUSTAINED BY YOU\n OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE\ + \ WITH ANY\n OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN\n ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n\nSection 5\ + \ - GPLv3 License Agreement\n\n GNU GENERAL PUBLIC LICENSE\n \ + \ Version 3, 29 June 2007\n\n Copyright c 2007 Free Software Foundation,\ + \ Inc. \n\n Everyone is permitted to copy and distribute verbatim copies\ + \ of\n this license document, but changing it is not allowed.\n\n Preamble\n\n \ + \ The GNU General Public License is a free, copyleft license for\n software and other\ + \ kinds of works.\n\n The licenses for most software and other practical works are\n\ + \ designed to take away your freedom to share and change the works.\n By contrast,\ + \ the GNU General Public License is intended to\n guarantee your freedom to share and\ + \ change all versions of a\n program--to make sure it remains free software for all its\ + \ users.\n We, the Free Software Foundation, use the GNU General Public\n License\ + \ for most of our software; it applies also to any other\n work released this way by\ + \ its authors. You can apply it to your\n programs, too.\n\n When we speak of free\ + \ software, we are referring to freedom, not\n price. Our General Public Licenses are\ + \ designed to make sure that\n you have the freedom to distribute copies of free software\ + \ (and\n charge for them if you wish), that you receive source code or can\n get it\ + \ if you want it, that you can change the software or use\n pieces of it in new free\ + \ programs, and that you know you can do\n these things.\n\n To protect your rights,\ + \ we need to prevent others from denying you\n these rights or asking you to surrender\ + \ the rights. Therefore, you\n have certain responsibilities if you distribute copies\ + \ of the\n software, or if you modify it: responsibilities to respect the\n freedom\ + \ of others.\n\n For example, if you distribute copies of such a program, whether\n \ + \ gratis or for a fee, you must pass on to the recipients the same\n freedoms that\ + \ you received. You must make sure that they, too,\n receive or can get the source code.\ + \ And you must show them these\n terms so they know their rights.\n\n Developers that\ + \ use the GNU GPL protect your rights with two\n steps: (1) assert copyright on the software,\ + \ and (2) offer you\n this License giving you legal permission to copy, distribute\n\ + \ and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly\n\ + \ explains that there is no warranty for this free software. For\n both users' and\ + \ authors' sake, the GPL requires that modified\n versions be marked as changed, so that\ + \ their problems will not be\n attributed erroneously to authors of previous versions.\n\ + \n Some devices are designed to deny users access to install or run\n modified versions\ + \ of the software inside them, although the\n manufacturer can do so. This is fundamentally\ + \ incompatible with\n the aim of protecting users' freedom to change the software. The\n\ + \ systematic pattern of such abuse occurs in the area of products\n for individuals\ + \ to use, which is precisely where it is most\n unacceptable. Therefore, we have designed\ + \ this version of the GPL\n to prohibit the practice for those products. If such problems\n\ + \ arise substantially in other domains, we stand ready to extend\n this provision\ + \ to those domains in future versions of the GPL, as\n needed to protect the freedom\ + \ of users.\n\n Finally, every program is threatened constantly by software\n patents.\ + \ States should not allow patents to restrict development\n and use of software on general-purpose\ + \ computers, but in those\n that do, we wish to avoid the special danger that patents\ + \ applied\n to a free program could make it effectively proprietary. To\n prevent\ + \ this, the GPL assures that patents cannot be used to\n render the program non-free.\n\ + \n The precise terms and conditions for copying, distribution and\n modification follow.\n\ + \n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version\ + \ 3 of the GNU General Public\n License.\n\n \"Copyright\" also means copyright-like\ + \ laws that apply to other\n kinds of works, such as semiconductor masks.\n\n \"The\ + \ Program\" refers to any copyrightable work licensed under this\n License. Each licensee\ + \ is addressed as \"you\". \"Licensees\" and\n \"recipients\" may be individuals or organizations.\n\ + \n To \"modify\" a work means to copy from or adapt all or part of the\n work in a\ + \ fashion requiring copyright permission, other than the\n making of an exact copy. The\ + \ resulting work is called a \"modified\n version\" of the earlier work or a work \"\ + based on\" the earlier\n work.\n\n A \"covered work\" means either the unmodified\ + \ Program or a work\n based on the Program.\n\n To \"propagate\" a work means to do\ + \ anything with it that, without\n permission, would make you directly or secondarily\ + \ liable for\n infringement under applicable copyright law, except executing it\n \ + \ on a computer or modifying a private copy. Propagation includes\n copying, distribution\ + \ (with or without modification), making\n available to the public, and in some countries\ + \ other activities as\n well.\n\n To \"convey\" a work means any kind of propagation\ + \ that enables\n other parties to make or receive copies. Mere interaction with a\n \ + \ user through a computer network, with no transfer of a copy, is\n not conveying.\n\ + \n An interactive user interface displays \"Appropriate Legal Notices\"\n to the extent\ + \ that it includes a convenient and prominently\n visible feature that (1) displays an\ + \ appropriate copyright notice,\n and (2) tells the user that there is no warranty for\ + \ the work\n (except to the extent that warranties are provided), that\n licensees\ + \ may convey the work under this License, and how to view\n a copy of this License. If\ + \ the interface presents a list of user\n commands or options, such as a menu, a prominent\ + \ item in the list\n meets this criterion.\n\n 1. Source Code.\n\n The \"source\ + \ code\" for a work means the preferred form of the work\n for making modifications to\ + \ it. \"Object code\" means any non-source\n form of a work.\n\n A \"Standard Interface\"\ + \ means an interface that either is an\n official standard defined by a recognized standards\ + \ body, or, in\n the case of interfaces specified for a particular programming\n language,\ + \ one that is widely used among developers working in that\n language.\n\n The \"\ + System Libraries\" of an executable work include anything,\n other than the work as a\ + \ whole, that (a) is included in the normal\n form of packaging a Major Component, but\ + \ which is not part of that\n Major Component, and (b) serves only to enable use of the\ + \ work\n with that Major Component, or to implement a Standard Interface\n for which\ + \ an implementation is available to the public in source\n code form. A \"Major Component\"\ + , in this context, means a major\n essential component (kernel, window system, and so\ + \ on) of the\n specific operating system (if any) on which the executable work\n runs,\ + \ or a compiler used to produce the work, or an object code\n interpreter used to run\ + \ it.\n\n The \"Corresponding Source\" for a work in object code form means\n all\ + \ the source code needed to generate, install, and (for an\n executable work) run the\ + \ object code and to modify the work,\n including scripts to control those activities.\ + \ However, it does\n not include the work's System Libraries, or general-purpose tools\n\ + \ or generally available free programs which are used unmodified in\n performing those\ + \ activities but which are not part of the work.\n For example, Corresponding Source\ + \ includes interface definition\n files associated with source files for the work, and\ + \ the source\n code for shared libraries and dynamically linked subprograms that\n \ + \ the work is specifically designed to require, such as by intimate\n data communication\ + \ or control flow between those subprograms and\n other parts of the work.\n\n The\ + \ Corresponding Source need not include anything that users can\n regenerate automatically\ + \ from other parts of the Corresponding\n Source.\n\n The Corresponding Source for\ + \ a work in source code form is that\n same work.\n\n 2. Basic Permissions.\n\n \ + \ All rights granted under this License are granted for the term of\n copyright on the\ + \ Program, and are irrevocable provided the stated\n conditions are met. This License\ + \ explicitly affirms your unlimited\n permission to run the unmodified Program. The output\ + \ from running\n a covered work is covered by this License only if the output,\n given\ + \ its content, constitutes a covered work. This License\n acknowledges your rights of\ + \ fair use or other equivalent, as\n provided by copyright law.\n\n You may make,\ + \ run and propagate covered works that you do not\n convey, without conditions so long\ + \ as your license otherwise\n remains in force. You may convey covered works to others\ + \ for the\n sole purpose of having them make modifications exclusively for\n you,\ + \ or provide you with facilities for running those works,\n provided that you comply\ + \ with the terms of this License in\n conveying all material for which you do not control\ + \ copyright.\n Those thus making or running the covered works for you must do\n so\ + \ exclusively on your behalf, under your direction and control,\n on terms that prohibit\ + \ them from making any copies of your\n copyrighted material outside their relationship\ + \ with you.\n\n Conveying under any other circumstances is permitted solely under\n \ + \ the conditions stated below. Sublicensing is not allowed; section\n 10 makes it unnecessary.\n\ + \n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work\ + \ shall be deemed part of an effective technological\n measure under any applicable law\ + \ fulfilling obligations under\n article 11 of the WIPO copyright treaty adopted on 20\ + \ December\n 1996, or similar laws prohibiting or restricting circumvention of\n such\ + \ measures.\n\n When you convey a covered work, you waive any legal power to\n forbid\ + \ circumvention of technological measures to the extent such\n circumvention is effected\ + \ by exercising rights under this License\n with respect to the covered work, and you\ + \ disclaim any intention\n to limit operation or modification of the work as a means\ + \ of\n enforcing, against the work's users, your or third parties' legal\n rights\ + \ to forbid circumvention of technological measures.\n\n 4. Conveying Verbatim Copies.\n\ + \n You may convey verbatim copies of the Program's source code as you\n receive it,\ + \ in any medium, provided that you conspicuously and\n appropriately publish on each\ + \ copy an appropriate copyright\n notice; keep intact all notices stating that this License\ + \ and any\n non-permissive terms added in accord with section 7 apply to the\n code;\ + \ keep intact all notices of the absence of any warranty;\n and give all recipients a\ + \ copy of this License along with the\n Program.\n\n You may charge any price or no\ + \ price for each copy that you\n convey, and you may offer support or warranty protection\ + \ for a\n fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a\ + \ work based on the Program, or the modifications\n to produce it from the Program, in\ + \ the form of source code under\n the terms of section 4, provided that you also meet\ + \ all of these\n conditions:\n\n a) The work must carry prominent notices stating\ + \ that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent\ + \ notices stating that it is\n released under this License and any conditions added under\ + \ section\n 7. This requirement modifies the requirement in section 4 to \"keep\n \ + \ intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n\ + \ License to anyone who comes into possession of a copy. This\n License will therefore\ + \ apply, along with any applicable section 7\n additional terms, to the whole of the\ + \ work, and all its parts,\n regardless of how they are packaged. This License gives\ + \ no\n permission to license the work in any other way, but it does not\n invalidate\ + \ such permission if you have separately received it.\n\n d) If the work has interactive\ + \ user interfaces, each must display\n Appropriate Legal Notices; however, if the Program\ + \ has interactive\n interfaces that do not display Appropriate Legal Notices, your\n\ + \ work need not make them do so.\n\n A compilation of a covered work with other separate\ + \ and\n independent works, which are not by their nature extensions of the\n covered\ + \ work, and which are not combined with it such as to form a\n larger program, in or\ + \ on a volume of a storage or distribution\n medium, is called an \"aggregate\" if the\ + \ compilation and its\n resulting copyright are not used to limit the access or legal\n\ + \ rights of the compilation's users beyond what the individual works\n permit. Inclusion\ + \ of a covered work in an aggregate does not cause\n this License to apply to the other\ + \ parts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a\ + \ covered work in object code form under the terms\n of sections 4 and 5, provided that\ + \ you also convey the machine-\n readable Corresponding Source under the terms of this\ + \ License, in\n one of these ways:\n\n a) Convey the object code in, or embodied in,\ + \ a physical product\n (including a physical distribution medium), accompanied by the\n\ + \ Corresponding Source fixed on a durable physical medium\n customarily used for software\ + \ interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n\ + \ (including a physical distribution medium), accompanied by a\n written offer, valid\ + \ for at least three years and valid for as\n long as you offer spare parts or customer\ + \ support for that product\n model, to give anyone who possesses the object code either\ + \ (1) a\n copy of the Corresponding Source for all the software in the\n product that\ + \ is covered by this License, on a durable physical\n medium customarily used for software\ + \ interchange, for a price no\n more than your reasonable cost of physically performing\ + \ this\n conveying of source, or (2) access to copy the Corresponding\n Source from\ + \ a network server at no charge.\n\n c) Convey individual copies of the object code with\ + \ a copy of the\n written offer to provide the Corresponding Source. This\n alternative\ + \ is allowed only occasionally and noncommercially, and\n only if you received the object\ + \ code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object\ + \ code by offering access from a designated\n place (gratis or for a charge), and offer\ + \ equivalent access to the\n Corresponding Source in the same way through the same place\ + \ at no\n further charge. You need not require recipients to copy the\n Corresponding\ + \ Source along with the object code. If the place to\n copy the object code is a network\ + \ server, the Corresponding Source\n may be on a different server (operated by you or\ + \ a third party)\n that supports equivalent copying facilities, provided you maintain\n\ + \ clear directions next to the object code saying where to find the\n Corresponding\ + \ Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated\ + \ to ensure that it is\n available for as long as needed to satisfy these requirements.\n\ + \n e) Convey the object code using peer-to-peer transmission,\n provided you inform\ + \ other peers where the object code and\n Corresponding Source of the work are being\ + \ offered to the general\n public at no charge under subsection 6d.\n\n A separable\ + \ portion of the object code, whose source code is\n excluded from the Corresponding\ + \ Source as a System Library, need\n not be included in conveying the object code work.\n\ + \n A \"User Product\" is either (1) a \"consumer product\", which means\n any tangible\ + \ personal property which is normally used for\n personal, family, or household purposes,\ + \ or (2) anything designed\n or sold for incorporation into a dwelling. In determining\ + \ whether\n a product is a consumer product, doubtful cases shall be resolved\n in\ + \ favor of coverage. For a particular product received by a\n particular user, \"normally\ + \ used\" refers to a typical or common use\n of that class of product, regardless of\ + \ the status of the\n particular user or of the way in which the particular user\n \ + \ actually uses, or expects or is expected to use, the product. A\n product is a consumer\ + \ product regardless of whether the product\n has substantial commercial, industrial\ + \ or non-consumer uses,\n unless such uses represent the only significant mode of use\ + \ of the\n product.\n\n \"Installation Information\" for a User Product means any\ + \ methods,\n procedures, authorization keys, or other information required to\n install\ + \ and execute modified versions of a covered work in that\n User Product from a modified\ + \ version of its Corresponding Source.\n The information must suffice to ensure that\ + \ the continued\n functioning of the modified object code is in no case prevented or\n\ + \ interfered with solely because modification has been made.\n\n If you convey an\ + \ object code work under this section in, or with,\n or specifically for use in, a User\ + \ Product, and the conveying\n occurs as part of a transaction in which the right of\ + \ possession\n and use of the User Product is transferred to the recipient in\n perpetuity\ + \ or for a fixed term (regardless of how the transaction\n is characterized), the Corresponding\ + \ Source conveyed under this\n section must be accompanied by the Installation Information.\ + \ But\n this requirement does not apply if neither you nor any third party\n retains\ + \ the ability to install modified object code on the User\n Product (for example, the\ + \ work has been installed in ROM).\n\n The requirement to provide Installation Information\ + \ does not\n include a requirement to continue to provide support service,\n warranty,\ + \ or updates for a work that has been modified or\n installed by the recipient, or for\ + \ the User Product in which it\n has been modified or installed. Access to a network\ + \ may be denied\n when the modification itself materially and adversely affects the\n\ + \ operation of the network or violates the rules and protocols for\n communication\ + \ across the network.\n\n Corresponding Source conveyed, and Installation Information\n\ + \ provided, in accord with this section must be in a format that is\n publicly documented\ + \ (and with an implementation available to the\n public in source code form), and must\ + \ require no special password\n or key for unpacking, reading or copying.\n\n 7. Additional\ + \ Terms.\n\n \"Additional permissions\" are terms that supplement the terms of\n this\ + \ License by making exceptions from one or more of its\n conditions. Additional permissions\ + \ that are applicable to the\n entire Program shall be treated as though they were included\ + \ in\n this License, to the extent that they are valid under applicable\n law. If\ + \ additional permissions apply only to part of the Program,\n that part may be used separately\ + \ under those permissions, but the\n entire Program remains governed by this License\ + \ without regard to\n the additional permissions.\n\n When you convey a copy of a\ + \ covered work, you may at your option\n remove any additional permissions from that\ + \ copy, or from any part\n of it. (Additional permissions may be written to require their\ + \ own\n removal in certain cases when you modify the work.) You may place\n additional\ + \ permissions on material, added by you to a covered\n work, for which you have or can\ + \ give appropriate copyright\n permission.\n\n Notwithstanding any other provision\ + \ of this License, for material\n you add to a covered work, you may (if authorized by\ + \ the copyright\n holders of that material) supplement the terms of this License\n \ + \ with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n\ + \ terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of\ + \ specified reasonable legal notices or\n author attributions in that material or in\ + \ the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting\ + \ misrepresentation of the origin of that material,\n or requiring that modified versions\ + \ of such material be marked in\n reasonable ways as different from the original version;\ + \ or\n\n d) Limiting the use for publicity purposes of names of licensors\n or authors\ + \ of the material; or\n\n e) Declining to grant rights under trademark law for use of\ + \ some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification\ + \ of licensors and authors of that\n material by anyone who conveys the material (or\ + \ modified versions\n of it) with contractual assumptions of liability to the recipient,\n\ + \ for any liability that these contractual assumptions directly\n impose on those\ + \ licensors and authors.\n\n All other non-permissive additional terms are considered\ + \ \"further\n restrictions\" within the meaning of section 10. If the Program as\n \ + \ you received it, or any part of it, contains a notice stating that\n it is governed\ + \ by this License along with a term that is a further\n restriction, you may remove that\ + \ term. If a license document\n contains a further restriction but permits relicensing\ + \ or\n conveying under this License, you may add to a covered work\n material governed\ + \ by the terms of that license document, provided\n that the further restriction does\ + \ not survive such relicensing or\n conveying.\n\n If you add terms to a covered work\ + \ in accord with this section,\n you must place, in the relevant source files, a statement\ + \ of the\n additional terms that apply to those files, or a notice indicating\n where\ + \ to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may\ + \ be stated in\n the form of a separately written license, or stated as exceptions;\n\ + \ the above requirements apply either way.\n\n 8. Termination.\n\n You may not\ + \ propagate or modify a covered work except as expressly\n provided under this License.\ + \ Any attempt otherwise to propagate or\n modify it is void, and will automatically terminate\ + \ your rights\n under this License (including any patent licenses granted under\n \ + \ the third paragraph of section 11).\n\n However, if you cease all violation of this\ + \ License, then your\n license from a particular copyright holder is reinstated (a)\n\ + \ provisionally, unless and until the copyright holder explicitly\n and finally terminates\ + \ your license, and (b) permanently, if the\n copyright holder fails to notify you of\ + \ the violation by some\n reasonable means prior to 60 days after the cessation.\n\n\ + \ Moreover, your license from a particular copyright holder is\n reinstated permanently\ + \ if the copyright holder notifies you of the\n violation by some reasonable means, this\ + \ is the first time you\n have received notice of violation of this License (for any\ + \ work)\n from that copyright holder, and you cure the violation prior to 30\n days\ + \ after your receipt of the notice.\n\n Termination of your rights under this section\ + \ does not terminate\n the licenses of parties who have received copies or rights from\n\ + \ you under this License. If your rights have been terminated and\n not permanently\ + \ reinstated, you do not qualify to receive new\n licenses for the same material under\ + \ section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required\ + \ to accept this License in order to receive or\n run a copy of the Program. Ancillary\ + \ propagation of a covered work\n occurring solely as a consequence of using peer-to-peer\n\ + \ transmission to receive a copy likewise does not require\n acceptance. However,\ + \ nothing other than this License grants you\n permission to propagate or modify any\ + \ covered work. These actions\n infringe copyright if you do not accept this License.\ + \ Therefore,\n by modifying or propagating a covered work, you indicate your\n acceptance\ + \ of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n\ + \ Each time you convey a covered work, the recipient automatically\n receives a license\ + \ from the original licensors, to run, modify and\n propagate that work, subject to this\ + \ License. You are not\n responsible for enforcing compliance by third parties with this\n\ + \ License.\n\n An \"entity transaction\" is a transaction transferring control of\n\ + \ an organization, or substantially all assets of one, or\n subdividing an organization,\ + \ or merging organizations. If\n propagation of a covered work results from an entity\ + \ transaction,\n each party to that transaction who receives a copy of the work\n \ + \ also receives whatever licenses to the work the party's\n predecessor in interest had\ + \ or could give under the previous\n paragraph, plus a right to possession of the Corresponding\ + \ Source\n of the work from the predecessor in interest, if the predecessor\n has\ + \ it or can get it with reasonable efforts.\n\n You may not impose any further restrictions\ + \ on the exercise of the\n rights granted or affirmed under this License. For example,\ + \ you\n may not impose a license fee, royalty, or other charge for\n exercise of rights\ + \ granted under this License, and you may not\n initiate litigation (including a cross-claim\ + \ or counterclaim in a\n lawsuit) alleging that any patent claim is infringed by making,\n\ + \ using, selling, offering for sale, or importing the Program or any\n portion of\ + \ it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes\ + \ use under\n this License of the Program or a work on which the Program is\n based.\ + \ The work thus licensed is called the contributor's\n \"contributor version\".\n\n \ + \ A contributor's \"essential patent claims\" are all patent claims\n owned or controlled\ + \ by the contributor, whether already acquired\n or hereafter acquired, that would be\ + \ infringed by some manner,\n permitted by this License, of making, using, or selling\ + \ its\n contributor version, but do not include claims that would be\n infringed only\ + \ as a consequence of further modification of the\n contributor version. For purposes\ + \ of this definition, \"control\"\n includes the right to grant patent sublicenses in\ + \ a manner\n consistent with the requirements of this License.\n\n Each contributor\ + \ grants you a non-exclusive, worldwide, royalty-\n free patent license under the contributor's\ + \ essential patent\n claims, to make, use, sell, offer for sale, import and otherwise\n\ + \ run, modify and propagate the contents of its contributor version.\n\n In the following\ + \ three paragraphs, a \"patent license\" is any\n express agreement or commitment, however\ + \ denominated, not to\n enforce a patent (such as an express permission to practice a\n\ + \ patent or covenant not to sue for patent infringement). To \"grant\"\n such a patent\ + \ license to a party means to make such an agreement\n or commitment not to enforce a\ + \ patent against the party.\n\n If you convey a covered work, knowingly relying on a\ + \ patent\n license, and the Corresponding Source of the work is not available\n for\ + \ anyone to copy, free of charge and under the terms of this\n License, through a publicly\ + \ available network server or other\n readily accessible means, then you must either\ + \ (1) cause the\n Corresponding Source to be so available, or (2) arrange to deprive\n\ + \ yourself of the benefit of the patent license for this particular\n work, or (3)\ + \ arrange, in a manner consistent with the requirements\n of this License, to extend\ + \ the patent license to downstream\n recipients. \"Knowingly relying\" means you have\ + \ actual knowledge\n that, but for the patent license, your conveying the covered work\n\ + \ in a country, or your recipient's use of the covered work in a\n country, would\ + \ infringe one or more identifiable patents in that\n country that you have reason to\ + \ believe are valid.\n\n If, pursuant to or in connection with a single transaction or\n\ + \ arrangement, you convey, or propagate by procuring conveyance of,\n a covered work,\ + \ and grant a patent license to some of the parties\n receiving the covered work authorizing\ + \ them to use, propagate,\n modify or convey a specific copy of the covered work, then\ + \ the\n patent license you grant is automatically extended to all\n recipients of\ + \ the covered work and works based on it.\n\n A patent license is \"discriminatory\"\ + \ if it does not include within\n the scope of its coverage, prohibits the exercise of,\ + \ or is\n conditioned on the non-exercise of one or more of the rights that\n are\ + \ specifically granted under this License. You may not convey a\n covered work if you\ + \ are a party to an arrangement with a third\n party that is in the business of distributing\ + \ software, under\n which you make payment to the third party based on the extent of\n\ + \ your activity of conveying the work, and under which the third\n party grants, to\ + \ any of the parties who would receive the covered\n work from you, a discriminatory\ + \ patent license (a) in connection\n with copies of the covered work conveyed by you\ + \ (or copies made\n from those copies), or (b) primarily for and in connection with\n\ + \ specific products or compilations that contain the covered work,\n unless you entered\ + \ into that arrangement, or that patent license\n was granted, prior to 28 March 2007.\n\ + \n Nothing in this License shall be construed as excluding or\n limiting any implied\ + \ license or other defenses to infringement\n that may otherwise be available to you\ + \ under applicable patent\n law.\n\n 12. No Surrender of Others' Freedom.\n\n If\ + \ conditions are imposed on you (whether by court order,\n agreement or otherwise) that\ + \ contradict the conditions of this\n License, they do not excuse you from the conditions\ + \ of this\n License. If you cannot convey a covered work so as to satisfy\n simultaneously\ + \ your obligations under this License and any other\n pertinent obligations, then as\ + \ a consequence you may not convey it\n at all. For example, if you agree to terms that\ + \ obligate you to\n collect a royalty for further conveying from those to whom you\n\ + \ convey the Program, the only way you could satisfy both those\n terms and this License\ + \ would be to refrain entirely from conveying\n the Program.\n\n 13. Use with the\ + \ GNU Affero General Public License.\n\n Notwithstanding any other provision of this\ + \ License, you have\n permission to link or combine any covered work with a work\n \ + \ licensed under version 3 of the GNU Affero General Public License\n into a single\ + \ combined work, and to convey the resulting work. The\n terms of this License will continue\ + \ to apply to the part which is\n the covered work, but the special requirements of the\ + \ GNU Affero\n General Public License, section 13, concerning interaction through\n \ + \ a network will apply to the combination as such.\n\n 14. Revised Versions of this\ + \ License.\n\n The Free Software Foundation may publish revised and/or new\n versions\ + \ of the GNU General Public License from time to time. Such\n new versions will be similar\ + \ in spirit to the present version, but\n may differ in detail to address new problems\ + \ or concerns.\n\n Each version is given a distinguishing version number. If the\n \ + \ Program specifies that a certain numbered version of the GNU\n General Public License\ + \ \"or any later version\" applies to it, you\n have the option of following the terms\ + \ and conditions either of\n that numbered version or of any later version published\ + \ by the\n Free Software Foundation. If the Program does not specify a\n version number\ + \ of the GNU General Public License, you may choose\n any version ever published by the\ + \ Free Software Foundation.\n\n If the Program specifies that a proxy can decide which\ + \ future\n versions of the GNU General Public License can be used, that\n proxy's\ + \ public statement of acceptance of a version permanently\n authorizes you to choose\ + \ that version for the Program.\n\n Later license versions may give you additional or\ + \ different\n permissions. However, no additional obligations are imposed on any\n \ + \ author or copyright holder as a result of your choosing to follow\n a later version.\n\ + \n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT\ + \ PERMITTED BY\n APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE\n COPYRIGHT\ + \ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\"\n WITHOUT WARRANTY OF ANY\ + \ KIND, EITHER EXPRESSED OR IMPLIED,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\ + \ OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE\n RISK AS\ + \ TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.\n SHOULD THE PROGRAM PROVE\ + \ DEFECTIVE, YOU ASSUME THE COST OF ALL\n NECESSARY SERVICING, REPAIR OR CORRECTION.\n\ + \n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW\ + \ OR AGREED TO IN\n WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES\n\ + \ AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\n FOR DAMAGES, INCLUDING\ + \ ANY GENERAL, SPECIAL, INCIDENTAL OR\n CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE\ + \ OR INABILITY TO USE\n THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA\n\ + \ BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\n PARTIES OR A FAILURE\ + \ OF THE PROGRAM TO OPERATE WITH ANY OTHER\n PROGRAMS), EVEN IF SUCH HOLDER OR OTHER\ + \ PARTY HAS BEEN ADVISED OF\n THE POSSIBILITY OF SUCH DAMAGES.\n\n 17. Interpretation\ + \ of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability\ + \ provided\n above cannot be given local legal effect according to their terms,\n \ + \ reviewing courts shall apply local law that most closely\n approximates an absolute\ + \ waiver of all civil liability in\n connection with the Program, unless a warranty or\ + \ assumption of\n liability accompanies a copy of the Program in return for a fee.\n\n\ + \nSection 6 - 3rd Party Components\n\n(1) The Software Program includes software and documentation\ + \ components\ndeveloped in part by Silver Egg Technology, Inc.(\"SET\") prior to 2001\n\ + and released under the following license.\n\n Copyright (c) 2001 Silver Egg Technology\n\ + \n Permission is hereby granted, free of charge, to any person\n obtaining a copy\ + \ of this software and associated documentation\n files (the \"Software\"), to deal in\ + \ the Software without\n restriction, including without limitation the rights to use,\n\ + \ copy, modify, merge, publish, distribute, sub-license, and/or\n sell copies of the\ + \ Software, and to permit persons to whom the\n Software is furnished to do so, subject\ + \ to the following\n conditions:\n \n The above copyright notice and this permission\ + \ notice shall be\n included in all copies or substantial portions of the Software.\n\ + \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR\ + \ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n OF MERCHANTABILITY, FITNESS\ + \ FOR A PARTICULAR PURPOSE AND\n NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n\ + \ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n WHETHER IN AN ACTION\ + \ OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE\ + \ OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE." json: tanuki-community-sla-1.3.json - yml: tanuki-community-sla-1.3.yml + yaml: tanuki-community-sla-1.3.yml html: tanuki-community-sla-1.3.html - text: tanuki-community-sla-1.3.LICENSE + license: tanuki-community-sla-1.3.LICENSE - license_key: tanuki-development + category: Commercial spdx_license_key: LicenseRef-scancode-tanuki-development other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Tanuki Software, Ltd.\nDevelopment Software License Agreement\nVersion 1.3\n\nIMPORTANT-READ\ + \ CAREFULLY: This License Agreement is a legal agreement\nbetween you (\"Licensee\") and\ + \ Tanuki Software, Ltd. (\"TSI\"), under\nwhich TSI grants licenses with respect to computer\ + \ software,\nassociated media, printed materials, and may include online or\nelectronic\ + \ documentation. PLEASE READ THIS AGREEMENT CAREFULLY BEFORE\nYOU INSTALL, COPY, DOWNLOAD\ + \ OR USE THE SOFTWARE ACCOMPANYING THIS\nPACKAGE. BY INSTALLING, COPYING, DOWNLOADING OR\ + \ USING THE SOFTWARE,\nYOU, ON BEHALF OF YOURSELF AND/OR THE BUSINESS YOU REPRESENT, AGREE\ + \ TO\nBE BOUND BY ALL TERMS AND CONDITIONS OF THIS AGREEMENT INCLUDING ALL\nTERMS AND CONDITIONS\ + \ INCORPORATED HEREIN BY REFERENCE. The Licensee\nmay optionally request that this agreement\ + \ be signed by both parties:\n\nLicense Agreement Number: TSILA-____________\n \ + \ \nPursuant to this DEVELOPMENT SOFTWARE LICENSE AGREEMENT (the\n\"Agreement\") dated this\ + \ __th day of ______, 20__ (the \"Effective\nDate\"), _____________________ (\"Licensee\"\ + ) and Tanuki Software, Ltd.\n(\"TSI\") agree to the following terms and conditions:\n\n\n\ + Section 1 - Grant of License\n\nEffective upon the payment of the license fees presented\ + \ in Exhibit 1,\nTSI grants to Licensee a non-exclusive, non-transferable,\nnon-sublicensable\ + \ right and license to use, reproduce, display, sell,\nlease, distribute and transfer copies,\ + \ directly or indirectly, of the\nSoftware Program and documentation, in executable code\ + \ form only, as\nparts of Licensee Products within the Product Group(s) defined in\nExhibit\ + \ 1, for the purposes of marketing such Products to Licensee\ncustomers and for internal\ + \ development of Products, during the period\nLicensee's subscription of the TSIMS (as defined\ + \ in Section 5)\neffectively continues. Licensee may continue to market and\ndistribute\ + \ Product Versions containing the Software Program so long as\nsuch Product Versions have\ + \ been completely developed by the end of the\nperiod Licensee's subscription of the TSIMS\ + \ is active; provided\nhowever that under no circumstances may Licensee develop or continue\n\ + to develop any new Product, or new Product Version, using or\ncontaining the Software Program\ + \ after Licensee discontinues\nsubscription of TSIMS. Licensee may not, under any circumstances,\n\ + distribute or resell the Software Program as a stand-alone product,\nnor use the Software\ + \ Program to create any Product to directly compete\nwith the Software Program.\n\nWhere\ + \ the Licensee qualifies as a Small Business, as defined in\nSection 2.5, the Product Group\ + \ restriction is removed and all Licensee\nProducts will be covered by this agreement.\n\ + \n\nSection 2 - Definitions \n\n2.1. \"Community Edition\" shall mean versions of the Software\ + \ Program\ndistributed in source form under the Tanuki Software, Ltd. Community\nSoftware\ + \ License Agreement (CSLA), and all new releases, corrections,\nenhancements and updates\ + \ to the Software Program, which TSI makes\ngenerally available under the CSLA. \n\n2.2.\ + \ \"Documentation\" shall mean the contents of the website describing\nthe functionality\ + \ and use of the Software Program, located at\nhttp://wrapper.tanukisoftware.org\n\n2.3.\ + \ \"Product\" shall mean the computer programs, that are provided by\nLicensee to Licensee\ + \ customers or potential customers, and that\ncontain both the Software Program as a component\ + \ of the Product, and a\ncomponent or components (other than the Software Program) that\ + \ provide\nthe material functionality of the Product. If the Product is released\nin source\ + \ form, the Software Program or any of its components may only\nbe included in executable\ + \ form.\n\n2.4 \"Product Version\" shall mean a specific distribution or release of\na Product.\ + \ Any modifications to the distribution or release which\ninclude changes to program functionality\ + \ or updated included modules\nor libraries constitute a new Product Version.\n\n2.4 \"\ + Product Group\" shall mean one or more Products or Product\ncomponents which are designed\ + \ as components of a common project,\nproduct, or product suite.\n\n2.5 \"Small Business\"\ + \ shall mean a company or organization with less\nthan 100 employees and annual sales of\ + \ less than 5 million USD, 4\nmillion EUR, or 400 million JPY, depending on the currency\ + \ used to\npurchase the Software Program, unless otherwise qualified in\nExhibit 1.\n\n\ + 2.6. \"Software Program\" shall mean the computer software and license\nfile provided by\ + \ TSI under this Agreement, including all new releases,\ncorrections, enhancements and updates\ + \ to such computer software, which\nTSI makes generally available and which Licensee receive\ + \ pursuant to\nLicensee subscription to TSIMS. Some specific features or platforms\nmay\ + \ not be enabled if they do not fall under the feature set(s)\ncovered by the specific license\ + \ fees paid.\n\n\nSection 3 - Licensee Obligations\n\nLicensee shall be solely responsible\ + \ for all marketing, manufacturing,\npackaging, documentation production, distribution and\ + \ customer pricing\nof the Products, and ensure that the Products and Licensee's such\n\ + activities shall be in compliance with the applicable laws and\nregulations. Except as\ + \ otherwise provided in this Agreement, Licensee\nshall also assume all responsibility and\ + \ liability to customers for\nrelated support and assistance. Under no circumstances may\ + \ Licensee\nmodify, decompile, reverse engineer or disassemble any executable code\ncontained\ + \ within the Software Program nor create or prepare derivative\nworks of, or attempt to\ + \ discover or modify in any way the underlying\nsource code of the Software Program or any\ + \ part thereof. Licensee\nagrees that Licensee will not, nor will Licensee authorize or\ + \ license\nanother to, sell, market or license the Software Program, or any\nportion thereof,\ + \ as a standalone computer software program, component\nor software development tool, or\ + \ as a component or components of a\ncomputer software program, the chief marketability\ + \ and functionality\nof which is the Software Program. Licensee further agrees that\nLicensee\ + \ will not publish, present or document the application\nprogramming interface (API) of\ + \ the Software Program except as required\nfor specific use within the Product.\n\nLicensee\ + \ shall ensure that each end user receiving a copy of any\nProduct shall receive a license\ + \ agreement containing terms no less\nprotective of the Software Program than those contained\ + \ in Exhibit 2,\nwhich shall include the Copyright Notices described therein in a\nlocation\ + \ that is obvious to Licensee's customers. \n\nNeither the Software Program nor Product\ + \ may be modified, nor in any\nway obfuscate or obstruct the copyright notice and license\ + \ information\ndisplayed in the console and log files by the Software Program on\nstartup.\n\ + \nLicensee may extend and/or modify the Community Edition of the\nSoftware Program and distribute\ + \ under the terms of this agreement\nprovided that a) the Software Program is only distributed\ + \ in\nexecutable form, and b) a valid license key is distributed with\nSoftware Program\ + \ such that the Software Program is able to access the\nlicense key, and c) the Copyright\ + \ and \"Licensed to {Licensee} for\n{Product}\" notices are clearly visible in the console\ + \ and log files of\nthe Software Program on startup, and d) the \"Licensed to {Licensee}\n\ + for {Product}\" notice displays the Licensee and Product values from\nthe license key file.\n\ + \n\nSection 4 - Copyright and Trademark\n\nLicensee acknowledges that all copyrights in\ + \ the Software Program and\nthe goodwill associated therewith are vested in and belong to\ + \ TSI.\n\n\nSection 5 - Maintenance Services\n\n5.1 Scope and Duration\nTSI Maintenance\ + \ Services (\"TSIMS\") are provided on an annual basis for\nthe Software Program. The first\ + \ year of TSIMS shall be included in the\ninitial fees paid for the license. Successive\ + \ one (1) year periods of\nTSIMS, can optionally be ordered for 25% of the then current\ + \ rate\nestablished by TSI for an equivalent Agreement. TSI shall provide\nLicensee with\ + \ notice of such renewal, at least thirty (30) days prior\nto the end of the current TSIMS\ + \ period. In the event that Licensee\nallows TSIMS to expire, TSI will allow Licensee to\ + \ obtain TSIMS for\nsuch Licensed Software including any new versions of the Licensed\n\ + Software upon payment of 125% of all lapsed TSIMS fees.\n\nFor Licensees who have qualified\ + \ as a Small Business, this status may\nbe reviewed each time TSIMS is renewed. For Licensees\ + \ who no longer\nqualify as a Small Business, this agreement will continue to cover\nexisting\ + \ Products and Product Groups, but additional Product Group(s)\nwill require their own separate\ + \ Agreement(s).\n\n5.2 Maintenance Obligations of the Parties\nLicensee agrees to provide\ + \ first line support for the Product and\nSoftware Program to Licensee customers, which\ + \ support will include\n(i) appropriate number of trained personnel available to provide,\ + \ in a\ncompetent manner, first line support of the Software Program to\nLicensee customers,\ + \ (ii) log of all communication between Licensee and\nLicensee customer, as well as a reproducible\ + \ test case (wherever\npossible) and any relevant information for any second line support\n\ + cases that have been opened by Licensee with TSI.\n\n\nSection 6 - Warranty and Limited\ + \ Liability\n\nSoftware Warranty: TSI warrants that, for a period of ninety (90) days\n\ + from the initial delivery of the Software Program to Licensee, the\nSoftware Program, if\ + \ used by Licensee in accordance with the\nDocumentation, shall operate in material conformity\ + \ with the\nDocumentation for such Software Program. TSI does not warrant that the\nSoftware\ + \ Program will meet all of Licensee requirements or that the\nuse of the Software Program\ + \ will be uninterrupted or error free. TSI's\nentire liability, and Licensee exclusive remedy,\ + \ under this limited\nSoftware Warranty shall be for TSI (i) to attempt, through reasonable\n\ + efforts, to correct any reproducible material nonconformity discovered\nwithin the ninety\ + \ (90) day warranty period; or (ii) to replace the\nnonconforming Software Program with\ + \ Software Program which conforms to\nthe foregoing warranty. In the event TSI is unable\ + \ to cure the breach\nof warranty described in this Section 6, after attempting the remedies\n\ + described in (i) and (ii) above, Licensee may return the Software\nProgram and TSI shall\ + \ refund any license and maintenance fees paid by\nLicensee to TSI for the Software Program\ + \ provided the refund of\nmaintenance fees shall be limited to the amount representing the\n\ + period during which the Software Program showed nonconformity. The\nabove remedies are available\ + \ only if TSI is promptly notified in\nwriting, within the warranty period, upon discovery\ + \ of the\nnonconformity by Licensee and TSI's examination of the Software\nProgram discloses\ + \ that such nonconformity exists, and that the\nSoftware Program has not been (i) altered\ + \ or modified, other than by\nTSI, (ii) subjected to negligence, or computer or electrical\n\ + malfunctions, or (iii) used, adjusted, or installed other than in\naccordance with the Documentation.\ + \ \n\nTSIMS and Other Services Warranty: TSI warrants that any TSIMS or\nother services\ + \ performed pursuant to the terms of this Agreement shall\nbe performed in a professional\ + \ and workmanlike manner consistent with\ngenerally accepted industry standards. \n\nDisclaimer:\ + \ THE EXPRESS LIMITED WARRANTIES SET FORTH ABOVE ARE\nEXCLUSIVE AND IN LIEU OF ALL OTHER\ + \ WARRANTIES, EXPRESS, IMPLIED OR\nSTATUTORY WITH RESPECT TO THE SOFTWARE PROGRAM, AND TSI\ + \ EXPRESSLY\nDISCLAIMS ANY IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION,\nWARRANTIES\ + \ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLimitation of Liability: IN\ + \ NO EVENT SHALL EITHER PARTY'S LIABILITY\nARISING OUT OF THIS AGREEMENT OR THE TERMINATION\ + \ OF THIS AGREEMENT\nEXCEED THE AMOUNTS PAID OR DUE TO TSI HEREUNDER DURING A FULL YEAR\n\ + IMMEDIATELY PRECEDING SUCH EVENT. IF SUCH LIABILITY RELATES TO\nPARTICULAR ITEMS OF SOFTWARE\ + \ PROGRAM OR SERVICES PROVIDED BY TSI, SUCH\nLIABILITY SHALL BE LIMITED TO THE FEES PAID\ + \ FOR THE RELEVANT SOFTWARE\nPROGRAM OR SERVICES. IN NO EVENT SHALL EITHER PARTY HAVE ANY\ + \ LIABILITY\nFOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES INCLUDING, WITHOUT\nLIMITATION,\ + \ DAMAGES FOR LOST PROFITS, LOSS OF DATA OR COSTS OF\nPROCUREMENT OF SUBSTITUTE GOODS OR\ + \ SERVICES, ARISING IN ANY WAY OUT OF\nTHIS AGREEMENT UNDER ANY CAUSE OF ACTION, WHETHER\ + \ OR NOT THE OTHER\nPARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. NO ACTION\n\ + MAY BE BROUGHT AGAINST TSI LATER THAN ONE (1) YEAR AFTER THE CAUSE OF\nACTION OCCURRED.\ + \ EXCEPT FOR CLAIMS MADE UNDER SECTION 7\n(INDEMNIFICATION), IN NO EVENT SHALL TSI BE LIABLE\ + \ FOR ANY CLAIMS,\nDEMANDS OR ACTIONS OF ANY NATURE BROUGHT BY ANY THIRD PARTY AGAINST\n\ + LICENSEE. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING THE FAILURE\nOF THE ESSENTIAL PURPOSE\ + \ OF ANY LIMITED REMEDY.\n\nWarranty Claims: Any claims made by Licensee for the breach\ + \ of a\nwarranty set forth in this Section 6, shall be made in writing and\ndelivered to\ + \ TSI by the end of the applicable warranty period, and\nLicensee shall provide TSI a reproducible\ + \ test case, if applicable,\ndemonstrating the breach of warranty.\n\n\nSection 7 - Indemnification\n\ + \nTSI warrants that the use or distribution of unaltered Software\nProgram(s), or the exercise\ + \ of the licenses granted hereunder, will\nnot infringe any copyright or patent, or other\ + \ intellectual property\nrights of any third party, and TSI has all rights necessary for\ + \ the\ngrant of the rights and licenses granted by this Agreement. TSI agrees\nto indemnify,\ + \ defend and hold Licensee harmless from any and all\nactions, causes of action, claims,\ + \ demands, reasonable costs,\nliabilities, reasonable expenses (including reasonable attorney's\n\ + fees) and damages (collectively, a \"Loss\" or \"Losses\") arising from\nany claim that\ + \ the Software Program infringes any copyright or patent,\nor other intellectual property\ + \ right of a third party, provided,\nhowever:\n(1) Licensee shall promptly deliver to TSI\ + \ notice in writing of any\n infringement claim made by a third party, and, if known,\ + \ specify\n in reasonable detail the nature of the claim and the amount, or an\n estimate\ + \ of the amount, of the liability arising there from.\n Licensee shall, at TSI's expense,\ + \ provide to TSI as promptly as\n practicable thereafter information and documentation\ + \ reasonably\n requested by TSI to support and verify the claim asserted,\n provided\ + \ that, in so doing, TSI may restrict or condition any\n disclosure in the interest of\ + \ preserving privileges of importance\n in any foreseeable litigation.\n(2) TSI may assume\ + \ and retain sole control of the investigation, the\n defense or the settlement of any\ + \ third party infringement claim\n made against Licensee or TSI with respect to the Software\ + \ Program,\n including the employment of counsel or accountants, at its cost\n and\ + \ expense. Licensee shall have the right to employ counsel\n separate from counsel employed\ + \ by TSI in any such action and to\n participate therein, but the fees and expenses of\ + \ such counsel\n employed by Licensee shall be at Licensee expense. TSI shall have\n\ + \ the right to determine and adopt (or, in the case of a proposal by\n Licensee, to\ + \ approve) a settlement of such matter in its\n reasonable discretion. TSI shall not\ + \ be liable for any settlement\n of any claim effected without TSI's prior written consent,\ + \ which\n shall not be unreasonably withheld. Whether or not TSI chooses to\n so\ + \ investigate or defend such claim, Licensee shall reasonably\n cooperate with TSI in\ + \ the defense thereof and shall furnish such\n records, information and testimony, and\ + \ attend such conferences,\n discovery proceedings, hearings, trials and appeals, as\ + \ may be\n reasonably requested by TSI in connection therewith.\n(3) If such a claim\ + \ arises, or in either party's judgment is likely to\n arise, Licensee agrees to allow\ + \ TSI, at TSI's option, to either\n (i) procure the right to permit the continued exercise\ + \ of the\n rights and licenses in the Software Program granted under this\n Agreement;\ + \ (ii) replace or modify the Software Program so it\n be-comes non-infringing, while\ + \ affording equivalent performance;\n or (iii) terminate the license for the infringing\ + \ Software Program\n and upon return thereof by Licensee, refund the unearned portion\n\ + \ of any license fees paid by Licensee for the remainder of the\n current term hereof.\n\ + (4) TSI shall have no indemnity obligation for claims of infringement\n resulting from\ + \ any combination, operation or use of the Software\n Program, or any components thereof,\ + \ with any software programs or\n data not supplied by TSI if such infringement would\ + \ have been\n avoided by use of the Software Program alone. Licensee\n acknowledges\ + \ and agrees that these four items are the exclusive\n remedy of Licensee for damages\ + \ for breach of warranty or\n representations contained in this Section 7.\n\n\nSection\ + \ 8 - Termination\n\nShould either party commit a material breach of its obligations\nhereunder,\ + \ the other party may, at its option, terminate this\nAgreement by written notice to the\ + \ party in default. Such notice shall\nidentify and describe the default upon which termination\ + \ is based. The\ndefaulting party shall have thirty (30) days from the effective\ndelivery\ + \ of the notice to cure such default, which, if affected, shall\nprevent termination by\ + \ virtue of such default. Should an insolvency\nproceeding be filed by or against either\ + \ party, the other party may\nterminate this Agreement forthwith by giving a written notice\ + \ to the\nfirst party. Upon termination of this Agreement, Licensee will either\nreturn\ + \ to TSI or destroy all copies of the Software Program and\ndocumentation then in Licensee's\ + \ possession. Licenses to the Software\nProgram granted in the normal course of business\ + \ by Licensee to its\ncustomers shall survive termination of this Agreement. Licensee\n\ + shall, within thirty (30) days after the date of such termination,\nfurnish TSI with a certificate\ + \ of compliance in accordance with this\nSection. The parties agree that TSI shall have\ + \ the right to enforce\nthe obligations arising under this Section and to enjoin or compel\n\ + Licensee through injunctive relief. Licensee may retain a commercially\nreasonable number\ + \ of copies of the Software Program and documentation\nsolely for the purpose of supporting\ + \ Licensee customers who purchased\na Product prior to the termination of this Agreement.\n\ + \n\nSection 9 - Export Controls\n\nLicensee shall comply with, and ensure that Licensee\ + \ distributors and\nresellers comply with, all applicable laws, regulations, rulings and\n\ + executive orders of Japan or any other relevant jurisdiction relating\nto the export and\ + \ re-export of the Software Program or any products\ncontaining the Software Program. Licensee\ + \ shall not directly or\nindirectly export or re-export any Software Program or any Products\n\ + containing the Software Program unless Licensee have obtained a\nlicense to do so if such\ + \ a license is required. Licensee further\nagree that Licensee take appropriate measure\ + \ to ensure that the\nSoftware Program or any Products containing the Software Program will\n\ + not be exported or re-exported in violation of any applicable laws or\nregulations of any\ + \ relevant jurisdiction.\n\n\nSection 10 - Entire Agreement\n\nThis Agreement, including\ + \ any attachments, constitutes the entire\nagreement of the parties with respect to the\ + \ subject matter hereof and\nsupersedes all prior agreements, both oral and written,\nrepresentations,\ + \ statements, negotiations and undertakings, with\nrespect to the subject matter hereof,\ + \ which such agreements,\nrepresentations, statements, negotiations and undertakings are\ + \ merged\nherein. No amendment or modification of this Agreement or any\nprovision or attachment\ + \ of this Agreement shall be effective unless it\nis in writing and signed by both parties.\n\ + \n\nSection 11 - Governing Law\n\nThe validity, construction and performance of this Agreement\ + \ shall be\ngoverned by the substantive laws of Japan (excluding conflicts of law\nprinciples).\ + \ Licensee and TSI agree that any dispute arising out of\nthis Agreement shall be subject\ + \ to the exclusive jurisdiction of the\nTokyo District Court of Japan. If any legal action\ + \ is undertaken to\nenforce the terms of this Agreement, the prevailing party shall be\n\ + entitled to reasonable attorney's fees and costs in addition to any\nother relief to which\ + \ that party may be entitled.\n\n Licensee agrees that the United Nations Convention on\ + \ Contracts for\nthe International Sales of Goods will not apply to this Agreement.\n\n\n\ + Section 12 - Assignment and Benefit\n\nWithout the consent of the other party in writing,\ + \ neither party may\nassign this Agreement; provided, however, TSI or Licensee may assign\n\ + this Agreement to a wholly-owned subsidiary of the respective\ncorporation or a corporation\ + \ in which the shareholders of the\nrespective corporation own a majority interest of the\ + \ voting control\nprovided that the assigning party remains obligated hereunder; further\n\ + provided, however, TSI or Licensee may assign this Agreement to\nanother corporation which\ + \ acquires or has acquired substantially all\nof the stock or assets of the assignor. Where\ + \ the Licensee had\nqualified as a Small Business, and the assignee does not, this\nagreement\ + \ will continue to cover existing Products and Product\nGroup(s), but additional Product\ + \ Group(s) will require their own\nseparate Agreement(s).\n\nThis Agreement shall be binding\ + \ upon and shall inure to the benefit of\nLicensee and TSI and each party's successors,\ + \ subject to the other\nprovisions of this Section.\n\n\nSection 13 - 3rd Party Components\n\ + \n(1) The Software Program includes software and documentation\ncomponents developed in\ + \ part by Silver Egg Technology, Inc.(\"SET\")\nprior to 2001 and released under the following\ + \ license.\n\n Copyright (c) 2001 Silver Egg Technology\n\n Permission is hereby granted,\ + \ free of charge, to any person\n obtaining a copy of this software and associated documentation\n\ + \ files (the \"Software\"), to deal in the Software without\n restriction, including\ + \ without limitation the rights to use, copy,\n modify, merge, publish, distribute, sub-license,\ + \ and/or sell\n copies of the Software, and to permit persons to whom the Software\n\ + \ is furnished to do so, subject to the following conditions:\n \n The above copyright\ + \ notice and this permission notice shall be\n included in all copies or substantial\ + \ portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY\ + \ OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n\ + \ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NON-INFRINGEMENT. IN NO\ + \ EVENT SHALL THE AUTHORS OR COPYRIGHT\n HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\ + \ OTHER LIABILITY,\n WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n\ + \ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE\ + \ SOFTWARE.\n\nLicensor represents and warrants that the Program does not contain any\n\ + code subject to the GNU General Public License (\"GPL\"), GNU Lesser\nGPL, \"copyleft\"\ + \ license, or any other license that requires as a\ncondition of use, modification and/or\ + \ distribution of such code that\nother software incorporated into, derived from, or distributed\ + \ with\nsuch code be (i) disclosed or distributed in Source Code Program form;\n(ii) licensed\ + \ for the purpose of making derivative works; or (iii)\nredistributable at no charge.\n\n\ + \nSection 14 - Confidentiality \n\nConfidential Information means all technical, business,\ + \ financial and\nother information that is disclosed by either party to the other,\nwhether\ + \ orally or in writing, and all the terms and conditions of this\nAgreement, and all non-publicly\ + \ available information. \"Confidential\nInformation\" will not include any information\ + \ (a) that is publicly\navailable through no breach of this Agreement by either party, (b)\n\ + that is independently developed or was previously known by either\nparty, or (c) that is\ + \ rightfully acquired by either party from a third\nparty not under an obligation of confidentiality.\n\ + \nExcept as expressly permitted by this Agreement, both parties shall\nnot, nor shall they\ + \ permit their respective employees, agents,\nattorneys or independent contractors to, disclose,\ + \ use, copy,\ndistribute, sell, license, publish, reproduce or otherwise make\navailable\ + \ Confidential Information of the other party. Each party\nwill (a) secure and protect\ + \ the other party's Confidential Information\nby using the same or greater level of care\ + \ that it uses to protect its\nown confidential and proprietary information of like kind,\ + \ but in no\nevent less than a reasonable degree of care, and (b) advise each of\ntheir\ + \ respective employees, agents, attorneys and independent\ncontractors who have access to\ + \ such Confidential Information of the\nterms of this paragraph. Notwithstanding the foregoing,\ + \ either party\nmay disclose the other party's Confidential Information to the extent\n\ + required by applicable law or regulation, or by order of a court or\nother governmental\ + \ entity, in which case such party shall so notify\nthe other party as soon as practicable.\ + \ \n\nThe confidentiality obligation hereunder shall survive termination or\nexpiration\ + \ of this Agreement.\n\n\nSection 15 - Payments\n\nAll amounts payable are due net 30 days\ + \ from the invoice date unless\notherwise specified in the invoice. All amounts payable\ + \ are gross\namounts but exclusive only of any value added tax, sales tax or their\nequivalent.\ + \ If any such tax is or will be chargeable, the Licensee\nshall pay the tax to the Licensor\ + \ and the Licensor shall provide the\nLicensee with a tax invoice that meets all conditions\ + \ necessary to\nallow the Licensee to reclaim such tax. If according to applicable law\n\ + or regulations the Licensee is liable for any such tax, the Licensee\nwill account for or\ + \ pay the tax to the tax authorities. Each Party is\nresponsible for all taxes (including,\ + \ but not limited to, taxes based\nupon its income) or levies imposed on it under applicable\ + \ laws,\nregulations and tax treaties as a result of this agreement. In the\nevent that\ + \ a withholding tax is payable, and the Licensee is required\nto deduct the withholding\ + \ tax from the payment to the Licensor as\nrequired under applicable laws, regulations and\ + \ tax treaties, the\nLicensee agrees to furnish evidence of such paid taxes to the Licensor\n\ + as is sufficient to enable the Licensor to obtain any tax credits\navailable to it. Such\ + \ evidence must be translated into English or\nJapanese and be provided with the original,\ + \ unless approved by the\nLicensor in writing. \n\n\n----------------------------------------------------------------------\n\ + IN WITNESS WHEREOF, the parties have caused this Agreement to be\nexecuted by their respective\ + \ duly authorized representatives. \n\nLICENSEE \t\t\t\t\tTSI \n \n__________________________\ + \ By: ______________________________ \n \nDepartment name \ + \ Title: ___________________________ \n\n__________________________ Date: ____________________________\n\ + \ \n\nLicensee's Authorized Signature\n\n___________________________\n\n\nTyped or Printed\ + \ Name\n\n___________________________\n\n\nTitle:\n\n___________________________\n\n\nDate:\n\ + \n___________________________\n\n\nStreet Address\n\n___________________________\n\nCity\ + \ or Town\n___________________________\n\nState or Province\n___________________________\n\ + \nZip Code\n___________________________\n\nCountry\n___________________________\n \n\n\n\ + ----------------------------------------------------------------------\nEXHIBIT 1\n\nLicensed\ + \ Software:\nJava Service Wrapper version ____, __________ Edition __ Bit\n\nLicensed Operating\ + \ System and Hardware Platform:\nAll platforms\n\nLicensed Software Commercial Restrictions:\n\ + None\n\nLicensed Software Use:\nBundle Development / Deployment.\n\nLicensed Software Use\ + \ Location:\nBundle Development/Deployment Worldwide\n\nAuthorized Number of Users:\nUnlimited\n\ + \nLicensee Small Business Status:\n[ ] Small Business\n[ X ] N/A\n\nLicensee Product Group(s)\ + \ Covered by this Agreement:\n\n\nFEES:\nSoftware License + first year of TSIMS\n$ \n\n\ + TSIMS for year 2 and onward will be priced at 25% of the then current\nprice of a new Software\ + \ License.\n[ ] TSIMS for year 2 and later will be automatically invoiced one\n month\ + \ prior to TSIMS expiring unless previously notified in\n writing of a request not\ + \ to renew.\n[ X ] TSIMS for year 2 and later will be invoiced on request.\n Requests\ + \ made after TSIMS has expired will be at 125% of the\n regular price.\n\n(Services)\n\ + None\n\n\n----------------------------------------------------------------------\nEXHIBIT\ + \ 2\nEnd User License Terms / Copyright Notice\n\nAll End User Licenses shall include provisions\ + \ that:\n\n(1) the End User is granted only a personal, nontransferable, and\n nonexclusive\ + \ right to use the software only for personal use of\n the End User;\n\n(2) Licensee\ + \ and/or its licensors retain all of their intellectual\n property rights in the software,\ + \ and no title to such intellectual\n property is transferred to the End User;\n\n(3)\ + \ the End User agrees not to reverse assemble, decompile, or\n otherwise attempt to derive\ + \ source code from the TSI software;\n\n(4) Licensee's licensors shall not be liable to\ + \ the End User for any\n indirect, consequential, incidental or special damages arising\ + \ out\n of the use or license of the software, regardless of the theory of\n liability\ + \ (including negligence and strict liability); and\n\n(5) Licensee and/or its licensors\ + \ will have the right to terminate the\n license at any time in the event the End Users\ + \ misuses the\n software;\n\nand\n\nA section concerning 3rd party components shall be\ + \ provided, in all\nEnd User licenses, which contains at least the following:\n\nThe Software\ + \ Program includes software and documentation components\ndeveloped in part by Silver Egg\ + \ Technology, Inc.(\"SET\") prior to 2001\nand released under the following license.\n\n\ + \ Copyright (c) 2001 Silver Egg Technology\n\n Permission is hereby granted, free\ + \ of charge, to any person\n obtaining a copy of this software and associated documentation\n\ + \ files (the \"Software\"), to deal in the Software without\n restriction, including\ + \ without limitation the rights to use, copy,\n modify, merge, publish, distribute, sub-license,\ + \ and/or sell\n copies of the Software, and to permit persons to whom the Software\n\ + \ is furnished to do so, subject to the following conditions:\n \n The above copyright\ + \ notice and this permission notice shall be\n included in all copies or substantial\ + \ portions of the Software." json: tanuki-development.json - yml: tanuki-development.yml + yaml: tanuki-development.yml html: tanuki-development.html - text: tanuki-development.LICENSE + license: tanuki-development.LICENSE - license_key: tanuki-maintenance + category: Commercial spdx_license_key: LicenseRef-scancode-tanuki-maintenance other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Tanuki Software, Ltd.\nMaintenance Support Services Addendum\nVersion 1.3\n\nMaintenance\ + \ Support Agreement Number: TSIMS-_____________\n\nThis Maintenance Support Services Addendum\ + \ to the Development Software\nLicense Agreement, number TSILA-_______________ (\"Agreement\"\ + ) is\neffective on ______ __, ____. All terms and definitions contained in\nthe Agreement\ + \ to which this Addendum refers shall apply to the\nSoftware Program and services provided\ + \ hereunder unless superseded by\nthe terms below.\n\n\n1. DEFINITIONS: The following definitions\ + \ apply to this Addendum.\n\n1.1 \"TSIMS\" means the annual, prepaid Maintenance Support\ + \ services\nplan provided to Licensee by Tanuki Software, Ltd. (\"TSI\") which\nincludes\ + \ email based technical support during business hours\n(wrapper-support@tanukisoftware.com)\ + \ for the Software Program version\nlicensed hereunder including any applicable Updates\ + \ and New Versions.\n\n1.2 \"New Version\" means a major Software Program release that includes\n\ + new product functionality and is denoted by a whole new product\nextension number (i.e.,\ + \ 3.3 to 4.0). New Versions shall include the\nfollowing deliverables online:\n- documentation,\n\ + - installation guide,\n- authorization codes,\n- release notes.\n\n1.3 \"Site\" means a\ + \ single physical location, a single purchasing\ncontact, and a single Licensee support\ + \ contact where Software Program\nis in use. TSIMS must be purchased for all Software Programs\ + \ at a Site\nwhen TSIMS is renewed at that Site.\n\n1.4 \"Updates\" means all bug fixes,\ + \ patches, workarounds, and\nenhancements contained in any of the releases of the Software\ + \ Program\n(i.e., 3.3 to 3.4).\n\n\n2. SERVICES:\n\n2.1 Licensee shall be entitled to the\ + \ level of service as described in\nSection 7 herein.\n\n2.2 TSIMS is provided subject to\ + \ the terms and conditions set forth in\nthis Addendum. TSI has no obligation to provide\ + \ TSIMS unless;\n(a) Licensee is in compliance with all terms and conditions of the\nAgreement,\ + \ (b) the Software Program is unmodified by Licensee or any\nthird party, and is properly\ + \ maintained by Licensee at the current or\nimmediately preceding version level, (c) and\ + \ Licensee provides to TSI\ntechnical support personnel the name of its sole point of contact\ + \ for\ntechnical support. Additional support services may be available to\nLicensee at TSI's\ + \ current hourly consulting rates.\n\n3.3 Prior to or upon expiration of this Agreement,\ + \ upon Licensee's\nrequest, the parties hereto will negotiate in good faith an ongoing\n\ + Software Program support plan.\n\n\n3. TERM AND RENEWALS:\n\n3.1 TSIMS shall commence on\ + \ (a) the day of the Software Program\nshipment or (b) the date specified in this Agreement;\ + \ or (c) as\notherwise specified and agreed to in writing by TSI but in no case not\nlater\ + \ than six (6) months from date of Software Program shipment and\nwill continue for a period\ + \ of one year from the date established in\n(a), (b) or (c) above. If no specific TSIMS\ + \ start is established, then\nTSIMS will commence on the Software Program shipment date.\ + \ TSIMS may\nbe renewed for subsequent one (1) year periods subject to then current\nTSIMS\ + \ fees and the execution of a new Maintenance Support Services\nAddendum.\n\n\n4. CONDITIONS\ + \ AND DISCLAIMER:\n\n4.1 TSI's obligation to provide TSIMS hereunder shall be limited to\n\ + the express undertakings described herein and shall not extend to any\nsoftware or hardware\ + \ products, (a) owned by any third party (b)\nfurnished, modified, revised or repaired by\ + \ persons other than\nemployees or agents of TSI, (c) operated under improper or unsafe\n\ + conditions, (d) transferred without notice to TSI, or (e) any Licensee\nhardware or expendable\ + \ supplies. TSIMS shall not include, without\nlimitation, relocation or transfer of the\ + \ Software Program, or\nmodifications required to adapt products to other hardware or to\ + \ other\nsoftware not bearing the TSI trademark and not supplied by TSI, or\nmodifications\ + \ required to bring any outdated TSI Products to a\nrevision level acceptable to TSI.\n\n\ + 4.2 Licensee shall notify TSI promptly of problems requiring support\nor corrective action\ + \ by TSI. Licensee shall maintain at its own cost\n(i) any necessary backup and security\ + \ of software and any data; and\n(ii) the overall performance of the Licensee system.\n\n\ + \n5. ASSIGNMENT:\nThe rights to prepaid TSIMS are assignable by Licensee, upon written\n\ + notice to TSI, to any successor of Licensee who agrees in writing to\nbe bound by the terms\ + \ hereof and pays for the services provided.\n\n\n6. Standard level Maintenance and Support\n\ + \n6.1 Scope of Services\nTSI will provide the following services to all Licensees:\n- Answers\ + \ to Installation and Authorization Questions\n- Product Use Guidance\n- Problem Diagnosis\n\ + - Software Program Configuration Help\n- Software Program Updates\n- New Media and documentation\n\ + - New Versions of the Software Program\n\nThese services exclude explicitly:\n- Third-Party\ + \ Products\n- Hardware Platform Related Support\n- Operating System Related Support\n- Integration\ + \ Advice or Any Other Consulting\n- Training. TSI maintains training and consulting departments\ + \ that\ncan assist, on a fee-for-service basis, with some or all of the\nservices explicitly\ + \ excluded as above.\n\n6.2 Limitation\nTSI supports the Software Program as described in\ + \ the then-current\nprice book for which an annual TSIMS fee is paid. However, TSI will\n\ + fix errors in the current version and the immediately preceding\nversion of the Software\ + \ Program. The Licensee will provide TSI with\nall the necessary information on the application,\ + \ the platform, and\nthe infrastructure at the supported Site. If any of such information\n\ + is confidential, the Licensee should notify TSI in accordance with the\nconfidentiality\ + \ provision of the License Agreement.\n\n6.3 Levels of Support\n1st Level (or First Line\ + \ Support) Support includes filing the problem\nas an issue in TSI's database, querying\ + \ the TSI database for similar\nproblems, bugs, and resolutions on the topic and communicating\ + \ a\nresolution or plan for a resolution back to the Licensee.\n\n2nd Level Support includes\ + \ further research on the issue and includes,\nbut is not limited to: recreating the problem\ + \ in house, receiving and\nworking with pieces of Licensee's code that illustrate the behavior;\n\ + debugging Licensee's code and working to resolve the issue. 2nd Level\nSupport issues are\ + \ typically assigned to a TSI Product Specialist.\n\n3rd Level Support includes but is not\ + \ limited to the assistance of\nProduct Support Specialists and Engineering Level Developers\ + \ to assist\nin debugging code, providing hints to solve the problem, working with\nTSI\ + \ product code to determine root causes.\n\nWhen the Licensee acquires TSI products through\ + \ a TSI Partner, it is\nexpected that the main support channel will be established through\n\ + that Partner. In that case, 1st level support will be handled by that\nPartner, and TSI\ + \ will communicate solely with the Partner on\nLicensee's issues.\n\n6.4 Priority of an\ + \ Issue\nThe Licensee and TSI customer support staff shall jointly set issue\npriority levels.\n\ + \nSEVERITY LEVEL 0 - CRISIS - An emergency deployment or production\nenvironment situation\ + \ where the Software Program is inoperable or\nfails catastrophically and there is no workaround.\n\ + \nSEVERITY LEVEL 1 - HIGH - A detrimental situation where one of the\nfollowing conditions\ + \ occurs:\n1.) performance of the Software Program degrades substantially under\nreasonable\ + \ loads causing a severe impact on use; or 2.) one or more\nprimary functions or commands\ + \ of the Software Program is inoperable.\n\nSEVERITY LEVEL 2 - MEDIUM - Occurs when use\ + \ of the Software Program is\nnoticeably affected but reasonably correctable by a workaround,\n\ + documentation change, or patch which may be completely resolved and\nintegrated into a future\ + \ release.\n\nSEVERITY LEVEL 3 - LOW - An inconvenient situation where the Software\nProgram\ + \ is usable but does not provide a function in the most\nconvenient manner and the Licensee\ + \ suffers little or no significant\nimpact.\n\n6.5 Licensee Assistance and Responsibility\ + \ in Problem Resolution\nWhen filing an issue, Licensee shall make the following information\n\ + available to TSI:\n- Maintenance Support Agreement Number\n- Version (including revision\ + \ level) of the TSI Software Program\n involved and any supporting product of software\ + \ involved\n- Platform (Including Operating System Revision Level) of the\n Operating Environment\n\ + - Error or other warning or advisory messages which you have been\n receiving\n- A reproducible\ + \ test case where applicable\n- Any trace, log, and/or console files\n- Configuration files\n\ + - Severity Level of problem\n- Priority Business or other justification for Severity Level\ + \ 0\n priority issues\n- Licensee responsibility with regard to assisting in resolving\ + \ the\n Licensee issue includes providing a Licensee on-site technical\n contact, whose\ + \ availability and response should mirror the response\n level requested of TSI, to provide\ + \ resource and operational\n assistance.\n\n6.6 Response/Resolution Time\nWithin the business\ + \ hours of the Customer Support Engineer responsible\nfor the issue:\nResponse Time: For\ + \ the most prompt service, relevant technical detail\nand quickest response time, (generally\ + \ less than 1 day) issues should\nbe reported via email at wrapper-support@tanukisoftware.com.\ + \ Response\nto issues reported to Customer Support through fax, or telephone may\nhave longer\ + \ response times.\n\nInitial Analysis/Resolution Time:\n\nCrisis Handled on a Case by Case\ + \ Basis, but initial response will be\nwithin 1 Business Day\n\nHigh Within 5 Business Days\n\ + \nMedium Within 10 Business Days\n\nLow Subject to Development and Customer Support Priority\n\ + \nResolution means that Customer Support will use its reasonable efforts\nto resolve Licensee\ + \ issues as prioritized above. Resolution may\ninclude: specification of a workaround; identification\ + \ of a bug; or\nthe recognition that additional analysis work needs to be done, on the\n\ + part of Customer Support and the Licensee, which will extend beyond\nthe initial resolution\ + \ time.\nIn all cases, resolution of issues by Customer Support will require\nthe Licensee\ + \ to assist in the following: documentation and\nreproduction of the issue; provision of\ + \ a Licensee contact person with\nwhom TSI Customer Support can maintain contact to arrange\ + \ for\nanalysis, testing, systems, and other resources and other tasks in\nsupport of resolution\ + \ of the Licensee's problem and to whom status\nreports and requests for resources can be\ + \ addressed.\nOngoing communication shall be maintained regarding Licensee issue\nstatus\ + \ and progress towards resolution between TSI Customer Support\nand the Licensee's issue\ + \ contact.\n\n6.7 Notification\nThe Licensee will, by default, be notified by e-mail of\ + \ all relevant\nupdates on the issue since appropriate levels of technical detail are\n\ + often best captured and presented via written e-mail.\nTSI's Support staff can also maintain\ + \ telephone contact with the\nLicensee, if requested.\n\n6.8 Distribution of Updates\nShipment\ + \ of Updates and New Versions will be made on a request-only\nbasis. Requests can be made\ + \ through an e-mail message.\n\n6.9 Licensee Issues Are Typically Handled by Customer Support\n\ + Engineers\nThis is the primary and usual scenario. Contact is maintained between\nthe Licensee\ + \ and the TSI Customer Support Engineer (\"CSE\") responsible\nfor the issue. The e-mail\ + \ address to be used is: \nwrapper-support@tanukisoftware.com" json: tanuki-maintenance.json - yml: tanuki-maintenance.yml + yaml: tanuki-maintenance.yml html: tanuki-maintenance.html - text: tanuki-maintenance.LICENSE + license: tanuki-maintenance.LICENSE - license_key: tapr-ohl-1.0 + category: Copyleft Limited spdx_license_key: TAPR-OHL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + The TAPR Open Hardware License Version 1.0 (May 25, 2007) Copyright 2007 TAPR - http://www.tapr.org/OHL + + PREAMBLE + + Open Hardware is a thing - a physical artifact, either electrical or mechanical - whose design information is available to, and usable by, the public in a way that allows anyone to make, modify, distribute, and use that thing. In this preface, design information is called "documentation" and things created from it are called "products." + + The TAPR Open Hardware License ("OHL") agreement provides a legal framework for Open Hardware projects. It may be used for any kind of product, be it a hammer or a computer motherboard, and is TAPR's contribution to the community; anyone may use the OHL for their Open Hardware project. + + Like the GNU General Public License, the OHL is designed to guarantee your freedom to share and to create. It forbids anyone who receives rights under the OHL to deny any other licensee those same rights to copy, modify, and distribute documentation, and to make, use and distribute products based on that documentation. + + Unlike the GPL, the OHL is not primarily a copyright license. While copyright protects documentation from unauthorized copying, modification, and distribution, it has little to do with your right to make, distribute, or use a product based on that documentation. For better or worse, patents play a significant role in those activities. Although it does not prohibit anyone from patenting inventions embodied in an Open Hardware design, and of course cannot prevent a third party from enforcing their patent rights, those who benefit from an OHL design may not bring lawsuits claiming that design infringes their patents or other intellectual property. + + The OHL addresses unique issues involved in the creation of tangible, physical things, but does not cover software, firmware, or code loaded into programmable devices. A copyright-oriented license such as the GPL better suits these creations. + + How can you use the OHL, or a design based upon it? While the terms and conditions below take precedence over this preamble, here is a summary: + + * You may modify the documentation and make products based upon it. + + * You may use products for any legal purpose without limitation. + + * You may distribute unmodified documentation, but you must include the complete package as you received it. + + * You may distribute products you make to third parties, if you either include the documentation on which the product is based, or make it available without charge for at least three years to anyone who requests it. + + * You may distribute modified documentation or products based on it, if you: + + * License your modifications under the OHL. + + * Include those modifications, following the requirements stated below. + + * Attempt to send the modified documentation by email to any of the developers who have provided their email address. This is a good faith obligation - if the email fails, you need do nothing more and may go on with your distribution. + + * If you create a design that you want to license under the OHL, you should: + + * Include this document in a file named LICENSE (with the appropriate extension) that is included in the documentation package. + + * If the file format allows, include a notice like "Licensed under the TAPR Open Hardware License (www.tapr.org/OHL)" in each documentation file. While not required, you should also include this notice on printed circuit board artwork and the product itself; if space is limited the notice can be shortened or abbreviated. + + * Include a copyright notice in each file and on printed circuit board artwork. + + * If you wish to be notified of modifications that others may make, include your email address in a file named "CONTRIB.TXT" or something similar. + + * Any time the OHL requires you to make documentation available to others, you must include all the materials you received from the upstream licensors. In addition, if you have modified the documentation: + + * You must identify the modifications in a text file (preferably named "CHANGES.TXT") that you include with the documentation. That file must also include a statement like "These modifications are licensed under the TAPR Open Hardware License." + + * You must include any new files you created, including any manufacturing files (such as Gerber files) you create in the course of making products. + + * You must include both "before" and "after" versions of all files you modified. + + * You may include files in proprietary formats, but you must also include open format versions (such as Gerber, ASCII, Postscript, or PDF) if your tools can create them. + + TERMS AND CONDITIONS + + 1. Introduction + + 1.1 This Agreement governs how you may use, copy, modify, and distribute Documentation, and how you may make, have made, and distribute Products based on that Documentation. As used in this Agreement, to "distribute" Documentation means to directly or indirectly make copies available to a third party, and to "distribute" Products means to directly or indirectly give, loan, sell or otherwise transfer them to a third party. + + 1.2 "Documentation" includes: + + (a) schematic diagrams; + + (b) circuit or circuit board layouts, including Gerber and other data files used for manufacture; + + (c) mechanical drawings, including CAD, CAM, and other data files used for manufacture; + + (d) flow charts and descriptive text; and + + (e) other explanatory material. + + Documentation may be in any tangible or intangible form of expression, including but not limited to computer files in open or proprietary formats and representations on paper, film, or other media. + + 1.3 "Products" include: + + (a) circuit boards, mechanical assemblies, and other physical parts and components; + + (b) assembled or partially assembled units (including components and subassemblies); and + + (c) parts and components combined into kits intended for assembly by others; which are based in whole or in part on the Documentation. + + 1.4 This Agreement applies to any Documentation which contains a notice stating it is subject to the TAPR Open Hardware License, and to all Products based in whole or in part on that Documentation. If Documentation is distributed in an archive (such as a "zip" file) which includes this document, all files in that archive are subject to this Agreement unless they are specifically excluded. Each person who contributes content to the Documentation is referred to in this Agreement as a "Licensor." + + 1.5 By (a) using, copying, modifying, or distributing the Documentation, or (b) making or having Products made or distributing them, you accept this Agreement, agree to comply with its terms, and become a "Licensee." Any activity inconsistent with this Agreement will automatically terminate your rights under it (including the immunities from suit granted in Section 2), but the rights of others who have received Documentation, or have obtained Products, directly or indirectly from you will not be affected so long as they fully comply with it themselves. + + 1.6 This Agreement does not apply to software, firmware, or code loaded into programmable devices which may be used in conjunction with Documentation or Products. Such software is subject to the license terms established by its copyright holder(s). + + 2. Patents + + 2.1 Each Licensor grants you, every other Licensee, and every possessor or user of Products a perpetual, worldwide, and royalty-free immunity from suit under any patent, patent application, or other intellectual property right which he or she controls, to the extent necessary to make, have made, possess, use, and distribute Products. This immunity does not extend to infringement arising from modifications subsequently made by others. + + 2.2 If you make or have Products made, or distribute Documentation that you have modified, you grant every Licensor, every other Licensee, and every possessor or user of Products a perpetual, worldwide, and royalty-free immunity from suit under any patent, patent application, or other intellectual property right which you control, to the extent necessary to make, have made, possess, use, and distribute Products. This immunity does not extend to infringement arising from modifications subsequently made by others. + + 2.3 To avoid doubt, providing Documentation to a third party for the sole purpose of having that party make Products on your behalf is not considered "distribution,"\" and a third party's act of making Products solely on your behalf does not cause that party to grant the immunity described in the preceding paragraph. + + 2.4 These grants of immunity are a material part of this Agreement, and form a portion of the consideration given by each party to the other. If any court judgment or legal agreement prevents you from granting the immunity required by this Section, your rights under this Agreement will terminate and you may no longer use, copy, modify or distribute the Documentation, or make, have made, or distribute Products. + + 3. Modifications + + You may modify the Documentation, and those modifications will become part of the Documentation. They are subject to this Agreement, as are Products based in whole or in part on them. If you distribute the modified Documentation, or Products based in whole or in part upon it, you must email the modified Documentation in a form compliant with Section 4 to each Licensor who has provided an email address with the Documentation. Attempting to send the email completes your obligations under this Section and you need take no further action if any address fails. + + 4. Distributing Documentation + + 4.1 You may distribute unmodified copies of the Documentation in its entirety in any medium, provided that you retain all copyright and other notices (including references to this Agreement) included by each Licensor, and include an unaltered copy of this Agreement. + + 4.2 You may distribute modified copies of the Documentation if you comply with all the requirements of the preceding paragraph and: + + (a) include a prominent notice in an ASCII or other open format file identifying those elements of the Documentation that you changed, and stating that the modifications are licensed under the terms of this Agreement; + + (b) include all new documentation files that you create, as well as both the original and modified versions of each file you change (files may be in your development tool's native file format, but if reasonably possible, you must also include open format, such as Gerber, ASCII, Postscript, or PDF, versions); + + (c) do not change the terms of this Agreement with respect to subsequent licensees; and + + (d) if you make or have Products made, include in the Documentation all elements reasonably required to permit others to make Products, including Gerber, CAD/CAM and other files used for manufacture. + + 5. Making Products + + 5.1 You may use the Documentation to make or have Products made, provided that each Product retains any notices included by the Licensor (including, but not limited to, copyright notices on circuit boards). + + 5.2 You may distribute Products you make or have made, provided that you include with each unit a copy of the Documentation in a form consistent with Section 4. Alternatively, you may include either (i) an offer valid for at least three years to provide that Documentation, at no charge other than the reasonable cost of media and postage, to any person who requests it; or (ii) a URL where that Documentation may be downloaded, available for at least three years after you last distribute the Product. + + 6. NEW LICENSE VERSIONS + + TAPR may publish updated versions of the OHL which retain the same general provisions as the present version, but differ in detail to address new problems or concerns, and carry a distinguishing version number. If the Documentation specifies a version number which applies to it and "any later version", you may choose either that version or any later version published by TAPR. If the Documentation does not specify a version number, you may choose any version ever published by TAPR. TAPR owns the copyright to the OHL, but grants permission to any person to copy, distribute, and use it in unmodified form. + + 7. WARRANTY AND LIABILITY LIMITATIONS + + 7.1 THE DOCUMENTATION IS PROVIDED ON AN"AS-IS" BASIS WITHOUT WARRANTY OF ANY KIND, TO THE EXTENT PERMITTED BY APPLICABLE LAW. ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND TITLE, ARE HEREBY EXPRESSLY DISCLAIMED. + + 7.2 IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL ANY LICENSOR BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE, OR EXEMPLARY DAMAGES ARISING OUT OF THE USE OF, OR INABILITY TO USE, THE DOCUMENTATION OR PRODUCTS, INCLUDING BUT NOT LIMITED TO CLAIMS OF INTELLECTUAL PROPERTY INFRINGEMENT OR LOSS OF DATA, EVEN IF THAT PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7.3 You agree that the foregoing limitations are reasonable due to the non-financial nature of the transaction represented by this Agreement, and acknowledge that were it not for these limitations, the Licensor(s) would not be willing to make the Documentation available to you. + + 7.4 You agree to defend, indemnify, and hold each Licensor harmless from any claim brought by a third party alleging any defect in the design, manufacture, or operation of any Product which you make, have made, or distribute pursuant to this Agreement. + + #### json: tapr-ohl-1.0.json - yml: tapr-ohl-1.0.yml + yaml: tapr-ohl-1.0.yml html: tapr-ohl-1.0.html - text: tapr-ohl-1.0.LICENSE + license: tapr-ohl-1.0.LICENSE - license_key: tatu-ylonen + category: Permissive spdx_license_key: SSH-short other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + As far as I am concerned, the code I have written for this software + can be used freely for any purpose. Any derived versions of this + software must be clearly marked as such, and if the derived work is + incompatible with the protocol description in the RFC file, it must be + called by a name other than "ssh" or "Secure Shell". json: tatu-ylonen.json - yml: tatu-ylonen.yml + yaml: tatu-ylonen.yml html: tatu-ylonen.html - text: tatu-ylonen.LICENSE + license: tatu-ylonen.LICENSE - license_key: tcl + category: Permissive spdx_license_key: TCL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. json: tcl.json - yml: tcl.yml + yaml: tcl.yml html: tcl.html - text: tcl.LICENSE + license: tcl.LICENSE - license_key: tcp-wrappers + category: Permissive spdx_license_key: TCP-wrappers other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + -----BEGIN PGP SIGNED MESSAGE----- + + As of June 1, 2001, the text below constitutes the TCP Wrappers license. + + /************************************************************************ + * Copyright 1995 by Wietse Venema. All rights reserved. Some individual + * files may be covered by other copyrights. + * + * This material was originally written and compiled by Wietse Venema at + * Eindhoven University of Technology, The Netherlands, in 1990, 1991, + * 1992, 1993, 1994 and 1995. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that this entire copyright notice + * is duplicated in all such copies. + * + * This software is provided "as is" and without any expressed or implied + * warranties, including, without limitation, the implied warranties of + * merchantibility and fitness for any particular purpose. + ************************************************************************/ + + -----BEGIN PGP SIGNATURE----- + Version: 2.6.3i + Charset: noconv + + iQCVAwUBOxo3X9yA8qbVMny5AQHT8wP9FZOtWxEM4SMj4Sj9QezMERz31n5fd0pC + jUDnyzmosOudM/iFlv6YfyR820aNvNNI+AdtgWYRPVHocVNOrZcmu7IADO8hlU// + v8BeBE0bdjeVmOQYRQfXgt3J2q0b8x8Q5a/LCLVLh8k6DFGg8AfEbLDQWhi1JiXC + 0JsaB8crR3M= + =0AMW + -----END PGP SIGNATURE----- json: tcp-wrappers.json - yml: tcp-wrappers.yml + yaml: tcp-wrappers.yml html: tcp-wrappers.html - text: tcp-wrappers.LICENSE + license: tcp-wrappers.LICENSE - license_key: teamdev-services + category: Commercial spdx_license_key: LicenseRef-scancode-teamdev-services other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "https://www.teamdev.com/services\n\nTeamDev\nConnect with Us\n\nemail: sales@teamdev.com\ + \ \nphone: +380 57 766–4300 \nGoogle+: http://google.com/+TeamDev \nLinkedIn: http://www.linkedin.com/company/teamdev-ltd\ + \ \nFacebook: https://www.facebook.com/TeamDev \nTwitter: http://twitter.com/TeamDev\n\n\ + Email us at sales@teamdev.com to request the estimate for your app." json: teamdev-services.json - yml: teamdev-services.yml + yaml: teamdev-services.yml html: teamdev-services.html - text: teamdev-services.LICENSE + license: teamdev-services.LICENSE - license_key: tekhvc + category: Permissive spdx_license_key: LicenseRef-scancode-tekhvc other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is hereby granted to use, copy, + modify, sell, and otherwise distribute this software and its + documentation for any purpose and without fee, provided that: + + 1. This copyright, permission, and disclaimer notice is reproduced in + all copies of this software and any modification thereof and in + supporting documentation; + 2. Any color-handling application which displays TekHVC color + cooordinates identifies these as TekHVC color coordinates in any + interface that displays these coordinates and in any associated + documentation; + 3. The term "TekHVC" is always used, and is only used, in association + with the mathematical derivations of the TekHVC Color Space, + including those provided in this file and any equivalent pathways and + mathematical derivations, regardless of digital (e.g., floating point + or integer) representation. + + Tektronix makes no representation about the suitability of this software + for any purpose. It is provided "as is" and with all faults. + + TEKTRONIX DISCLAIMS ALL WARRANTIES APPLICABLE TO THIS SOFTWARE, + INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE. IN NO EVENT SHALL TEKTRONIX 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 THE PERFORMANCE OF THIS SOFTWARE. json: tekhvc.json - yml: tekhvc.yml + yaml: tekhvc.yml html: tekhvc.html - text: tekhvc.LICENSE + license: tekhvc.LICENSE - license_key: telerik-eula + category: Commercial spdx_license_key: LicenseRef-scancode-telerik-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Telerik End User License Agreement for Kendo UI Professional\n\n(Last Updated July\ + \ 16th, 2014)\n\nIf You have accessed the Software, as defined below, through the Telerik\ + \ Platform, this document does not apply to You. Please see http://www.telerik.com/purchase/license-agreement/platform\ + \ for the terms and conditions that apply to Your use of the Software.\nKendo UI Professional\ + \ is a suite of software components which replaces the Telerik software product previously\ + \ known as Kendo UI Complete. It is offered pursuant to the terms and conditions contained\ + \ below.\n\nIMPORTANT – PLEASE READ THIS END USER LICENSE AGREEMENT (THE \"AGREEMENT\")\ + \ CAREFULLY BEFORE ATTEMPTING TO DOWNLOAD OR USE ANY SOFTWARE, DOCUMENTATION, OR OTHER MATERIALS\ + \ MADE AVAILABLE THROUGH THIS WEB SITE. THIS AGREEMENT CONSTITUTES A LEGALLY BINDING AGREEMENT\ + \ BETWEEN YOU OR THE COMPANY WHICH YOU REPRESENT AND ARE AUTHORIZED TO BIND (the \"Licensee\"\ + \ or \"You\"), AND TELERIK AD (\"Telerik\" or \"Licensor\"). PLEASE CHECK THE \"I HAVE READ\ + \ AND AGREE TO THE LICENSE AGREEMENT\" BOX AT THE BOTTOM OF THIS AGREEMENT IF YOU AGREE\ + \ TO BE BOUND BY THE TERMS AND CONDITIONS OF THIS AGREEMENT. BY CHECKING THE \"I HAVE READ\ + \ AND AGREE TO THE LICENSE AGREEMENT\" BOX AND/OR BY PURCHASING, DOWNLOADING, INSTALLING\ + \ OR OTHERWISE USING THE SOFTWARE MADE AVAILABLE BY TELERIK THROUGH THIS WEB SITE, YOU ACKNOWLEDGE\ + \ (1) THAT YOU HAVE READ THIS AGREEMENT, (2) THAT YOU UNDERSTAND IT, (3) THAT YOU AGREE\ + \ TO BE BOUND BY ITS TERMS AND CONDITIONS, AND (4) TO THE EXTENT YOU ARE ENTERING INTO THIS\ + \ AGREEMENT ON BEHALF OF A COMPANY, YOU HAVE THE POWER AND AUTHORITY TO BIND THAT COMPANY.\n\ + \nContent Management System and/or .NET component vendors are not allowed to use the Software\ + \ (as defined below) without the express permission of Telerik. If You or the company You\ + \ represent is a Content Management System or .NET component vendor, You may not purchase\ + \ a license for or use the Software unless You contact Telerik directly and obtain permission.\n\ + \nThis is a license agreement and not an agreement for sale.\n\n1. Software License. \n\n\ + Subject to the terms of this Agreement, Telerik hereby grants to You the following limited,\ + \ non–exclusive, non–transferable license (the \"License\") to use the Telerik computer\ + \ software identified as Kendo UI Professional and any updates, upgrades, modifications\ + \ and error corrections thereto provided to You by Telerik (the \"Programs\") and any accompanying\ + \ documentation (the \"Documentation\" and, together with the Programs, the \"Software\"\ + ) as set forth below. You are granted either a Trial License pursuant to Section 1.1 or\ + \ a Commercial License with Updates and Support pursuant to Section 1.2. Which version of\ + \ the License applies (i.e., Trial License or Commercial License with Updates and Support)\ + \ is determined at the time of the License purchase. \n\nFor purposes of this Agreement:\n\ + \n\"Your Integrated Products\" are limited to those software applications which: (i) are\ + \ developed by Your Licensed Developers; (ii) add substantial functionality beyond the functionality\ + \ provided by the incorporated components of the Software; and (iii) are not commercial\ + \ alternatives for, or competitive in the marketplace with, the Software or any components\ + \ of the Software.\n\n\"Licensed Developers\" (i) are limited to the number of Your employees\ + \ or contractors authorized by You to use the Software to develop software specifically\ + \ for You and (ii) must correspond to the maximum number of seats You have purchased from\ + \ Telerik hereunder. This means that, at any given time, the number of Licensed Developers\ + \ cannot exceed the number of seats that You have purchased from Telerik and for which You\ + \ have paid Telerik all applicable License Fees pursuant to this Agreement. The Software\ + \ is in \"use\" on a computer when it is loaded into temporary memory (i.e. RAM) or installed\ + \ into permanent memory (e.g. hard disk or other storage device). Your Licensed Developers\ + \ may install the Software on multiple machines, so long as the Software is not being used\ + \ simultaneously for development purposes at any given time by more Licensed Developers\ + \ than You have seats.\n\n1.1 Trial License\n\n1.1.1 License Grant. If You download the\ + \ free Trial License, then, subject to the terms and conditions set forth in this Agreement,\ + \ Licensor hereby grants to Licensee and Licensee hereby accepts a license to use the Software\ + \ for the sole purpose of evaluating its functionality and performance. You are not allowed\ + \ to integrate the Software into end products or use it for any commercial, productive or\ + \ training purpose. You may not redistribute the Software. The term of the Trial License\ + \ shall be 30 days. If You wish to continue using the Software beyond expiration of the\ + \ Trial License, You must purchase the applicable commercial license.\n\n1.1.2 Support.\ + \ You are entitled to enter five (5) support requests via Telerik’s ticketing system with\ + \ a 72 hour response time (excluding Saturdays, Sundays and holidays) for thirty (30) days\ + \ after download of Your initial Trial License. For avoidance of doubt, You are not entitled\ + \ to additional support requests for any Trial Licenses downloaded after Your initial download\ + \ (e.g. to evaluate a different Kendo UI product or a new release), for a period of one\ + \ (1) year from the date of Your initial download.\n\n1.1.3 Updates. At Telerik’s sole discretion,\ + \ You may receive minor updates (i.e. service pack updates) for the Software version You\ + \ are evaluating. You are not eligible to receive major updates (i.e. major revisions to\ + \ or new versions of the Software) for the Software You are evaluating. Software updates\ + \ replace and/or supplement (and may disable) the version of the Software that formed the\ + \ basis for Your eligibility for the update. You may use the resulting updated Software\ + \ only in accordance with the terms of this Trial License.\n\n1.1.4 THE TRIAL VERSION OF\ + \ THE SOFTWARE IS LICENSED ‘AS IS’. YOU BEAR THE RISK OF USING IT. TELERIK GIVES NO EXPRESS\ + \ WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL RIGHTS UNDER YOUR LOCAL\ + \ LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS,\ + \ TELERIK EXCLUDES THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\ + \ PURPOSE AND NON-INFRINGEMENT.\n\n1.2 Commercial License with Updates and Support. If\ + \ You purchase a Commercial License with Updates and Support, Your Licensed Developers may\ + \ use the Software in minified and source code form in accordance with Section 1.3 in the\ + \ development of Your Integrated Products. In addition, for the applicable period of one\ + \ (1), two (2) or three (3) years from the date on which You purchased the Software, for\ + \ which You have purchased updates and support (the \"Subscription Period\"), You will receive\ + \ minor and major updates for the Software, access to certain source code for the Software,\ + \ as well as the \"Commercial\" support package, each as described in further detail below.\n\ + \n1.2.2 Support. During the Subscription Period, You are entitled to the \"Commercial\"\ + \ support package as described in greater detail here: http://www.telerik.com/purchase/support-plans/kendo-ui,\ + \ subject to the limitations and restrictions described in the following Fair Usage Policy.\ + \ The support services for tickets submitted relating to AngularJS implementations are limited\ + \ to (i) assistance with plain implementations which include AngularJS and Kendo UI widgets,\ + \ (ii) assistance with implementations which utilize the Kendo Angular labs project (https://github.com/kendo-labs/angular-kendo)\ + \ and its directives (project support) or (iii) implementations which require extension\ + \ of the existing Kendo Angular labs project with new logic.\n\n1.2.2.1 Support Package\ + \ Fair Usage Policy. Telerik may limit or terminate Your access to any or all of the support\ + \ services available under the \"Commercial\" support package if Your use of the support\ + \ services is determined by Telerik, in its sole and reasonable discretion, to be excessive.\n\ + \n1.2.2.2 In no event will Telerik provide support of any kind to end-users of Your Integrated\ + \ Products.\n\n1.2.3 Updates. During the Subscription Period, You will be eligible to receive\ + \ all major and minor updates for the version of the Software that You license hereunder\ + \ and source code for the Software. Updates replace and/or supplement (and may disable)\ + \ the version of the Software that formed the basis for Your eligibility for the update.\ + \ You may use the resulting updated Software only in accordance with the terms of this License.\n\ + \n1.3 Source Code. The Software’s source code is provided to You so that You can create\ + \ modifications under the terms of this Agreement.\n\n1.3.1 While Telerik does not claim\ + \ any ownership rights in Your Integrated Products, any modifications You develop to the\ + \ Software source code will be the exclusive property of Telerik, and You agree to and hereby\ + \ do assign all right, title and interest in and to such modifications and all rights associated\ + \ therewith to Telerik.\n\n1.3.2 You will be entitled to use modifications of the Software’s\ + \ source code developed by You under the terms of this Agreement and Telerik hereby grants\ + \ You a license to use such modifications pursuant to Section 1.2.\n\n1.3.3 You acknowledge\ + \ that the Software’s source code is confidential and contains valuable and proprietary\ + \ trade secrets of Telerik. Under no circumstances may any portion of the Software’s source\ + \ code or any modified version of the source code be distributed, disclosed or otherwise\ + \ made available to any third party.\n\n1.3.4 Telerik DOES NOT provide technical support\ + \ for any source code that has been modified by any party other than Telerik.\n\n1.3.5 The\ + \ Software’s source code is provided \"as is\", without warranty of any kind. Refunds are\ + \ not available for any licenses that include a right to receive source code.\n\n1.4 Testing\ + \ and Building License. You may also use the Software in the testing and building of Your\ + \ Integrated Products. This license is not limited to a number of seats.\n\n2. License Options\ + \ for Redistribution\n\n2.1 Redistribution under Commercial License. If You have purchased\ + \ a Commercial License, You may distribute the Programs in minified form as embedded in\ + \ Your Integrated Products to Your end-users only pursuant to an end-user license that meets\ + \ the requirements of this Section. You are not permitted to distribute the Software pursuant\ + \ to this Section: as a standalone product or as a part of any product other than Your Integrated\ + \ Product. Your end-user license agreement must: prohibit distribution of the Software by\ + \ Your Authorized End Users; limit the liability of Your licensors or suppliers to the maximum\ + \ extent permitted by applicable law; and prohibit any attempt to disassemble, decompile\ + \ or \"unlock\", decode or otherwise reverse translate or engineer, or attempt in any manner\ + \ to reconstruct or discover any source code or underlying algorithms of the Software. Provided\ + \ Your Authorized End-Users are in compliance with their license agreements with You, any\ + \ sublicenses to use the Software granted by You to Your Authorized End-Users will survive\ + \ any termination of this Agreement or the License set forth herein between You and Telerik.\ + \ You are not allowed to, and are expressly prohibited from granting Your Authorized End-Users\ + \ any right to further sublicense the Software.\n\n2.2 Redistribution of Kendo UI Core under\ + \ Open Source License. Kendo UI Core, a suite of components licensed under the Apache 2.0\ + \ license, is shipped with Kendo UI Professional and publicly available on Github at https://github.com/telerik/kendo-ui-core.\ + \ You may use and distribute the Kendo UI Core software solely pursuant to the terms of\ + \ the Apache 2.0 software. In no event may You distribute any source code other than Kendo\ + \ UI Core.\n\n3. No Trademark License\n\nYou may not use the Telerik product names, logos\ + \ or trademarks to market Your Integrated Product.\n\n4. Delivery\n\nTelerik shall make\ + \ a master copy of the Software available for download by Licensee in electronic files only.\n\ + \n5. Updates\n\nThe parties agree and acknowledge that updates provided to You as part of\ + \ this Agreement may include new software products governed by additional terms and conditions.\ + \ These additional terms and conditions must be accepted by You at the time You download\ + \ such new products. If You do not agree to these additional terms and conditions, You\ + \ should not download the new products. In case of a conflict between the terms and conditions\ + \ of this Agreement and the terms and conditions applicable to any new product made available\ + \ to You as part of any updates, the terms and conditions of this Agreement shall govern.\n\ + \n6. Term and Termination\n\nThis Agreement and the License granted hereunder shall continue\ + \ until terminated in accordance with this Section. Unless otherwise specified in this Agreement,\ + \ the License granted hereunder shall last as long as You use the Software in compliance\ + \ with the terms herein. Unless otherwise prohibited by law, and without prejudice to Telerik’s\ + \ other rights or remedies, Telerik shall have the right to terminate this Agreement and\ + \ the License granted hereunder immediately if You breach any of the material terms of this\ + \ Agreement, and You fail to cure such material breach within thirty (30) days of receipt\ + \ of notice from Telerik. Upon termination of this Agreement, all Licenses granted to You\ + \ hereunder shall terminate automatically and You shall immediately cease use and distribution\ + \ of the Software; provided, however, that any sublicenses granted to Your Authorized End-Users\ + \ in accordance with Section 2 shall survive such termination. You must also destroy (i)\ + \ all copies of the Software not integrated into a live, functioning instance(s) of Your\ + \ Integrated Product(s) already installed, implemented and deployed for Your Authorized\ + \ End-User(s), and (ii) any product and company logos provided by Telerik in connection\ + \ with this Agreement.\n\n7. Product Discontinuance\n\nTelerik reserves the right to discontinue\ + \ the Software or any component of the Software, whether offered as a standalone product\ + \ or solely as a component, at any time. However, Telerik is obligated to provide support\ + \ in accordance with the terms set forth in this Agreement for all discontinued Software\ + \ or components for a period of one (1) year after the date of discontinuance.\n\n8. Intellectual\ + \ Property\n\nAll title and ownership rights in and to the Software (including but not limited\ + \ to any images, photographs, animations, video, audio, music, or text embedded in the Software),\ + \ the intellectual property embodied in the Software, and any trademarks or service marks\ + \ of Telerik that are used in connection with the Software are and shall at all times remain\ + \ exclusively owned by Telerik and its licensors. All title and intellectual property rights\ + \ in and to the content that may be accessed through use of the Software is the property\ + \ of the respective content owner and may be protected by applicable copyright or other\ + \ intellectual property laws and treaties. This Agreement grants You no rights to use such\ + \ content. Any open source software that may be delivered by Telerik embedded in or in association\ + \ with Telerik products is provided pursuant to the open source license applicable to the\ + \ software and subject to the disclaimers and limitations on liability set forth in such\ + \ license. As required by the Common Public License (\"CPL\"), if a user wishes to obtain\ + \ the source code for the components licensed under the CPL a user may access them at http://wixtoolset.org.\n\ + \n9. Limited Warranty\n\nExcept as specified in Section 1.1.4 (Trial License), Telerik warrants\ + \ solely to You that the Software will perform substantially in accordance with the accompanying\ + \ written materials for a period of ninety (90) days after the date on which You purchase\ + \ the License for the Software. Telerik does not warrant the use of the Software will be\ + \ uninterrupted or error free at all times and in all circumstances, nor that program errors\ + \ will be corrected. This limited warranty shall not apply to any error or failure resulting\ + \ from (i) machine error, (ii) Your failure to follow operating instructions, (iii) negligence\ + \ or accident, or (iv) modifications to the Software by any person or entity other than\ + \ Telerik. In the event of a breach of warranty, Your sole and exclusive remedy and Telerik’s\ + \ sole and exclusive obligation, is repair of all or any portion of the Software. If such\ + \ remedy fails of its essential purpose, Licensee’s sole remedy and Telerik’s maximum liability\ + \ shall be a refund of the paid purchase price for the defective Software only. This limited\ + \ warranty is only valid if Telerik receives written notice of breach of warranty no later\ + \ than thirty (30) days after the warranty period expires. EXCEPT FOR THE EXPRESS WARRANTIES\ + \ SET FORTH IN THIS SECTION 9, TELERIK DISCLAIMS ALL OTHER WARRANTIES, EXPRESS OR IMPLIED,\ + \ INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY\ + \ AND FITNESS FOR A PARTICULAR PURPOSE.\n\n10. Limitation of Liability\n\nTo the maximum\ + \ extent permitted by applicable law, in no event will Telerik be liable for any indirect,\ + \ special, incidental, or consequential damages arising out of the use of or inability to\ + \ use the Software, including, without limitation, damages for loss of goodwill, work stoppage,\ + \ computer failure or malfunction, or any and all other commercial damages or losses, even\ + \ if advised of the possibility thereof, and regardless of the legal or equitable theory\ + \ (contract, tort or otherwise) upon which the claim is based. In any case, Telerik’s entire\ + \ liability under any provision of this Agreement shall not exceed in the aggregate the\ + \ sum of the license fees Licensee paid to Telerik for the Software giving rise to such\ + \ damages, or in the case of a Trial license shall not exceed $5, notwithstanding any failure\ + \ of essential purpose of any limited remedy. Some jurisdictions do not allow the exclusion\ + \ or limitation of incidental or consequential damages, so this exclusion and limitation\ + \ may not be applicable. Telerik is not responsible for any liability arising out of content\ + \ provided by Licensee or a third party that is accessed through the Software and/or any\ + \ material linked through such content. Any data included in the Software upon shipment\ + \ from Telerik is for testing use only and Telerik hereby disclaims any and all liability\ + \ arising therefrom.\n\n11. Indemnity\n\nYou agree to indemnify, hold harmless, and defend\ + \ Telerik and its resellers from and against any and all claims, lawsuits and proceedings\ + \ (collectively \"Claims\"), and all expenses, costs (including attorney's fees), judgments,\ + \ damages and other liabilities resulting from such Claims, that arise or result from (i)\ + \ Your use of the Software in violation of this Agreement, (ii) the use or distribution\ + \ of Your Integrated Product or (iii) Your modification of the Software’s source code.\n\ + \n12. Confidentiality\n\nExcept as otherwise provided herein, each party expressly undertakes\ + \ to retain in confidence all information and know-how transmitted or disclosed to the other\ + \ that the disclosing party has identified as being proprietary and/or confidential or that,\ + \ by the nature of the circumstances surrounding the disclosure, ought in good faith to\ + \ be treated as proprietary and/or confidential, and expressly undertakes to make no use\ + \ of such information and know-how except under the terms and during the existence of this\ + \ Agreement. However, neither party shall have an obligation to maintain the confidentiality\ + \ of information that (i) it received rightfully from a third party without an obligation\ + \ to maintain such information in confidence; (ii) the disclosing party has disclosed to\ + \ a third party without any obligation to maintain such information in confidence; (iii)\ + \ was known to the receiving party prior to its disclosure by the disclosing party; or (iv)\ + \ is independently developed by the receiving party without use of the confidential information\ + \ of the disclosing party. Further, either party may disclose confidential information of\ + \ the other party as required by governmental or judicial order, provided such party gives\ + \ the other party prompt written notice prior to such disclosure and complies with any protective\ + \ order (or equivalent) imposed on such disclosure. Without limiting the foregoing, Licensee\ + \ shall treat any source code for the Programs as confidential information and shall not\ + \ disclose, disseminate or distribute such materials to any third party without Telerik’s\ + \ prior written permission. Each party’s obligations under this Section 12 shall apply at\ + \ all times during the term of this Agreement and for five (5) years following termination\ + \ of this Agreement, provided, however, that (i) obligations with respect to source code\ + \ shall survive in perpetuity and (ii) trade secrets shall be maintained as such until they\ + \ fall into the public domain.\n\n13. Governing Law\n\nThis Agreement will be governed by\ + \ the law of the Commonwealth of Massachusetts, U.S.A., without regard to the conflict of\ + \ laws principles thereof. If any dispute, controversy, or claim cannot be resolved by a\ + \ good faith discussion between the parties, then it shall be submitted for resolution to\ + \ a state or Federal court of competent jurisdiction in Boston, Massachusetts, USA, and\ + \ the parties hereby agree to submit to the jurisdiction and venue of such court. Neither\ + \ the Uniform Computer Information Transactions Act nor the United Nations Convention for\ + \ the International Sale of Goods shall apply to this Agreement. Failure of a party to enforce\ + \ any provision of this Agreement shall not constitute or be construed as a waiver of such\ + \ provision or of the right to enforce such provision.\n\n14. Entire Agreement\n\nThis Agreement\ + \ sets forth our entire agreement with respect to the Software and supersedes any prior\ + \ or contemporaneous communications regarding the Software. You agree that You are not relying\ + \ on any representation or obligation other than those set forth in this Agreement. Use\ + \ of any purchase order or other Licensee document in connection herewith shall be for administrative\ + \ convenience only and all terms and conditions stated therein shall be void and of no effect\ + \ unless otherwise agreed to in writing by both parties. In cases where this license is\ + \ being obtained through an approved third party, these terms shall supersede any third\ + \ party license or purchase agreement.\n\n15. No Assignment\n\nYou may not assign, sublicense,\ + \ sub-contract, or otherwise transfer this Agreement, or any rights or obligations under\ + \ it, without Telerik’s prior written consent.\n\n16. Survival\n\nAny provisions of the\ + \ Agreement containing license restrictions, including, but not limited to those related\ + \ to the Program source code, warranties and warranty disclaimers, confidentiality obligations,\ + \ limitations of liability and/or indemnity terms, and any provision of the Agreement which,\ + \ by its nature, is intended to survive shall remain in effect following any termination\ + \ or expiration of the Agreement.\n\n17. Severability\n\nIf a particular provision of this\ + \ Agreement is terminated or held by a court of competent jurisdiction to be invalid, illegal,\ + \ or unenforceable, this Agreement shall remain in full force and effect as to the remaining\ + \ provisions.\n\n18. Force Majeure\n\nNeither party shall be deemed in default of this Agreement\ + \ if failure or delay in performance is caused by an act of God, fire, flood, severe weather\ + \ conditions, material shortage or unavailability of transportation, government ordinance,\ + \ laws, regulations or restrictions, war or civil disorder, or any other cause beyond the\ + \ reasonable control of such party.\n\n19. Export Classifications\n\nYou expressly agree\ + \ not to export or re-export Telerik Software or Your Integrated Product to any country,\ + \ person, entity or end user subject to U.S. export restrictions. You specifically agree\ + \ not to export, re-export, or transfer the Software to any country to which the U.S. has\ + \ embargoed or restricted the export of goods or services, or to any national of any such\ + \ country, wherever located, who intends to transmit or transport the products back to such\ + \ country, or to any person or entity who has been prohibited from participating in U.S.\ + \ export transactions by any federal agency of the U.S. government. You warrant and represent\ + \ that neither the U.S.A. Bureau of Export Administration nor any other federal agency has\ + \ suspended, revoked or denied Your export privileges.\n\n20. Commercial Software\n\nThe\ + \ Programs and the Documentation are \"Commercial Items\", as that term is defined at 48\ + \ C.F.R. §2.101, consisting of \"Commercial Computer Software\" and \"Commercial Computer\ + \ Software Documentation\", as such terms are used in 48 C.F.R. §12.212 or 48 C.F.R. §227.7202,\ + \ as applicable. Consistent with 48 C.F.R. §12.212 or 48 C.F.R. §227.7202-1 through 227.7202-4,\ + \ as applicable, the Commercial Computer Software and Commercial Computer Software Documentation\ + \ are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with\ + \ only those rights as are granted to all other end users pursuant to the terms and conditions\ + \ herein. Unpublished-rights reserved under the copyright laws of the United States. \n\n\ + 21. Reports and Audit Rights. \n\nLicensee shall grant Telerik audit rights against Licensee\ + \ twice within a calendar three hundred and sixty five (365) day period upon two weeks written\ + \ notice, to verify Licensee’s compliance with this Agreement. Licensee shall keep adequate\ + \ records to verify Licensee’s compliance with this Agreement.\n\nYOU ACKNOWLEDGE THAT YOU\ + \ HAVE READ THIS AGREEMENT, THAT YOU UNDERSTAND THIS AGREEMENT, AND UNDERSTAND THAT BY CONTINUING\ + \ THE INSTALLATION OF THE SOFTWARE PRODUCT, BY LOADING OR RUNNING THE SOFTWARE PRODUCT,\ + \ OR BY PLACING OR COPYING THE SOFTWARE ONTO YOUR COMPUTER HARD DRIVE, YOU AGREE TO BE BOUND\ + \ BY THIS AGREEMENT’S TERMS AND CONDITIONS. YOU FURTHER AGREE THAT, EXCEPT FOR WRITTEN SEPARATE\ + \ AGREEMENTS BETWEEN TELERIK AND YOU, THIS AGREEMENT IS A COMPLETE AND EXCLUSIVE STATEMENT\ + \ OF THE RIGHTS AND LIABILITIES OF THE PARTIES." json: telerik-eula.json - yml: telerik-eula.yml + yaml: telerik-eula.yml html: telerik-eula.html - text: telerik-eula.LICENSE + license: telerik-eula.LICENSE - license_key: tenable-nessus + category: Proprietary Free spdx_license_key: LicenseRef-scancode-tenable-nessus other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "TENABLE NETWORK SECURITY, INC. \nNESSUS SOFTWARE LICENSE AND SUBSCRIPTION AGREEMENT\n\ + \nThis is a legal agreement (\"Agreement\") between Tenable Network Security, Inc., a Delaware\ + \ corporation having offices at 7021 Columbia Gateway Drive, Suite 500, Columbia, MD 21046\ + \ (\"Tenable\"), and you (\"You\"), the party licensing Software and/or downloading the\ + \ Plugins through Tenable’s subscription service (as each capitalized term is defined below).\ + \ This Agreement covers Your permitted use of the Software and/or the Plugins, as applicable\ + \ (collectively, the \"Licensed Materials\"). BY CLICKING BELOW YOU INDICATE YOUR ACCEPTANCE\ + \ OF THIS AGREEMENT AND YOU ACKNOWLEDGE THAT YOU HAVE READ ALL OF THE TERMS AND CONDITIONS\ + \ OF THIS AGREEMENT, UNDERSTAND THEM, AND AGREE TO BE LEGALLY BOUND BY THEM. IN ADDITION,\ + \ IF YOU HAVE PREVIOUSLY LICENSED THE SOFTWARE AND/OR THE PLUGINS, BY CLICKING BELOW YOU\ + \ INDICATE YOUR ACCEPTANCE THAT THESE TERMS AND CONDITIONS SUPERSEDE ANY EARLIER AGREEMENTS\ + \ AND THAT ALL COPIES OF THE LICENSED MATERIALS IN YOUR POSSESSION WILL BE DEEMED TO BE\ + \ LICENSED UNDER AND SUBJECT TO THE TERMS AND CONDITIONS OF THIS AGREEMENT. If You do not\ + \ agree with the terms of this Agreement, You may not use the Licensed Materials. The Licensed\ + \ Materials can only be provided to You by Tenable. The term \"Agreement\" includes any\ + \ exhibits to the document.\n\n1. Grant of Licenses. \n(a) Software License Grant. \"Software\"\ + \ means \n(i) Nessus 5.x or higher that You download from any authorized Tenable website,\ + \ including www.nessus.org, or obtain via Tenable authorized CD or any other Tenable authorized\ + \ method; \n(ii) the associated user manuals and user documentation, if any, as well as\ + \ any patches, updates, improvements, additions, enhancements and other modifications or\ + \ revised versions of Nessus 5.x or higher that may be provided to You by Tenable from time\ + \ to time that were developed by Tenable; and \n(iii) any Nessus daemons, command line interfaces,\ + \ web server, application programming interfaces (\"APIs\"), and/or any graphical user interfaces\ + \ You obtain from Tenable that were developed by Tenable. Any software that is not marked\ + \ as copyrighted by Tenable is not Software as defined under this Agreement and is subject\ + \ to other license terms as described in the documentation. For the avoidance of doubt,\ + \ any components or software licensed as part of an open source license, if any, are not\ + \ considered \"Software.\" \n\nIf You have obtained a copy of the Software, subject to the\ + \ terms and conditions, and Your acceptance, of this Agreement, Tenable grants to You a\ + \ perpetual, non-exclusive, nontransferable license in object code form only to use the\ + \ Software \n(i) solely for Your internal operations and internal security purposes to seek\ + \ and assess information technology vulnerabilities and misconfigurations for Your own networks\ + \ or that you are otherwise authorized to scan; and \n(ii) provided that You have received\ + \ all required consents, to provide services to third parties to seek and assess information\ + \ technology vulnerabilities and misconfigurations on the third party’s network. \n\nAny\ + \ rights in the Software not granted in this Agreement are expressly reserved by Tenable.\ + \ You are entitled to one copy of the Software. If you license additional copies of the\ + \ Software, they must be paid for separately and will be subject to their own terms and\ + \ conditions.\n\n(b) Plugins License Grant. \"Plugins\" means any plugins (and related updates)\ + \ that are marked as copyrighted by Tenable. Any plugins or components that are not marked\ + \ as copyrighted by Tenable are not Plugins as defined under this Agreement and are subject\ + \ to other license terms. Subject to the terms and conditions of this Agreement, Tenable\ + \ grants to You for the Term (as defined below) a non-exclusive, non-transferable license\ + \ in object code form only to use the Plugins as permitted in conjunction with the Software\ + \ licensed in Section 1(c). The Plugins include vulnerability detection programs not developed\ + \ by Tenable or its licensors and which are licensed to You under separate agreements. The\ + \ terms and conditions of this Agreement do not apply to such vulnerability detection programs.\n\ + \n(c) Products. Tenable licenses several variations of the Software, described in more detail\ + \ below. Tenable reserves the right to withdraw features from the Software or move features\ + \ between variations of the Software provided that either: \n(1) the core functionality\ + \ of the Software remains the same; or \n(2) You are offered a license to the product to\ + \ which the functionality was moved.\n\n(i) Nessus Home. Nessus Home is non-commercial Software\ + \ that permits You to use the Plugins in conjunction with the Software for Your personal\ + \ use solely to detect vulnerabilities only on Your own personal system (or for Your own\ + \ personal network) that You use for non-commercial purposes or on the personal system (or\ + \ for the personal network) of another natural person in a non-commercial arrangement. You\ + \ are not eligible to use Nessus Home if You are a corporation, a governmental entity or\ + \ any other form of organization. You may not use Nessus Home to use the Plugins on a computer\ + \ owned by Your employer or otherwise use the Plugins for the benefit of or to perform any\ + \ services for any corporation, governmental entity or any other form of organization. When\ + \ using Nessus Home, Tenable may collect scan data from You (including results, configuration,\ + \ and gathered artifacts) in order to provide feedback to Tenable and improve the Software.\ + \ You may not use Tenable Network Security Confidential and Proprietary 2 Nessus Software\ + \ License and Subscription Agreement v13 03.03.15 Nessus Home with Nessus Manager or with\ + \ any Software that is managed by a Nessus Manager installation. Tenable does not provide\ + \ any support services in connection with Nessus Home.\n\n(ii) Nessus Professional. Nessus\ + \ Professional is commercial Software that permits You to use the Plugins in conjunction\ + \ with the Software to detect vulnerabilities only on Your system or network, a system or\ + \ network that you are otherwise authorized to scan, or on the system or network of a third\ + \ party for which You perform scanning services, auditing services, incident response services,\ + \ quality assurance and other lab testing, vulnerability assessment services or other security\ + \ consulting services; provided that You have paid the applicable Fee for each copy of the\ + \ Software in conjunction with which You will use the Plugins. If You use a supported commercial\ + \ version of Nessus Professional, Tenable will supply You during the term with reasonable\ + \ online and email support 24 hours a day, 7 days a week, for the Software.\n\n(iii) Nessus\ + \ Manager. Nessus Manager is commercial Software that permits You to use the Plugins in\ + \ conjunction with the Software to detect vulnerabilities only on Your system or network,\ + \ a system or network that you are otherwise authorized to scan, or on the system or network\ + \ of a third party for which You perform scanning services, auditing services, incident\ + \ response services, quality assurance and other lab testing, vulnerability assessment services\ + \ or other security consulting services. You may only use Nessus Manager for the number\ + \ of Hosts for which you have paid all applicable Fees. A \"Host\" is any scanned device\ + \ that can have a unique tag pushed to it (via a registry entry, text file, etc.), one that\ + \ can have a unique identifier (CPU ID, Instance ID, Agent ID, IP Address, MAC Address,\ + \ NetBIOS Name, etc.) pulled from it, or is addressable via URI or URL (i.e., http://www.tenable.com).\ + \ Your license to use Nessus Manager also will provide You with access to a limited number\ + \ (equivalent to the Host count) of Nessus agents that You may install on endpoints. Nessus\ + \ Manager allows multiple users to access the Software. You agree that You are responsible\ + \ for the use by any of the users permitted to access the Software. Nessus Manager allows\ + \ You to manage multiple scanners from one installation, at a rate of one scanner for each\ + \ 256 Hosts licensed up to 10,240 Hosts, and one scanner for each 512 Hosts after that.\ + \ You may only manage scanners that You have received all appropriate authorizations to\ + \ use. If You use a supported commercial version of Nessus Manager, Tenable will supply\ + \ You during the term with reasonable phone, online and email support 24 hours a day, 7\ + \ days a week, for the Software.\n\n2. Other Use. (a) Training Organizations. Notwithstanding\ + \ the prohibition on commercial use in Section 1(c)(i), if You are a training organization\ + \ authorized by Tenable, You may use the Licensed Materials, and provide access to the Licensed\ + \ Materials to students, in and for the classroom setting only. Upon completion of the class,\ + \ the student’s right to use the Licensed Materials is terminated and any students wishing\ + \ to use the Licensed Materials must register for, and pay any applicable fees associated\ + \ with, their own subscription. You may not use the Licensed Materials granted to You for\ + \ training purposes to secure Your or any third party’s networks or in any other way except\ + \ for classroom training in a non-production environment. Tenable may terminate access to\ + \ any free Licensed Materials under this Section 2(a) at it sole discretion at any time.\ + \ (b) Evaluations. Upon Your request and subsequent approval by Tenable, You may receive\ + \ access to evaluate the Licensed Materials. Such evaluation may take the form of limited\ + \ access to Nessus Professional or Nessus Manager. Such evaluation may also take the form\ + \ of an on-demand evaluation where You may use Nessus Home commercially for a limited period\ + \ of time as specified by Tenable. Unless otherwise agreed to by Tenable, an evaluation\ + \ will only be provided once. You must purchase a subscription to the Licensed Materials\ + \ to continue to use them commercially after the evaluation period ends. You may not use\ + \ an evaluation subscription in a production capacity, to scan third party networks, or\ + \ to provide a service to Your customers. (c) Custom Nessus Plugin Development and Distribution.\ + \ Tenable allows users to write and develop new Nessus plugins; however, You must have an\ + \ active Nessus subscription in order to add plugins to Your Nessus scanner. You may use\ + \ the Tenable \".inc\" files provided with the Licensed Materials, as well as the built-in\ + \ NASL functions to write custom plugins for Your internal use and internal redistribution,\ + \ provided, however, that they may not be privately or publicly distributed, whether for\ + \ free or for a fee. Plugin writers should also be aware that many of the APIs available\ + \ in the NASL language and various \".inc\" libraries may be used to write custom plugins,\ + \ but such plugins may only be distributed within Your organization and may not be distributed\ + \ publicly, whether for free or for a fee. For example, custom plugins that specifically\ + \ make use of authenticated logins to remote systems via Secure Shell or Windows Domain,\ + \ that use the libraries included in the Licensed Materials or that have previously been\ + \ distributed by Tenable, may not be publicly distributed. To ensure that Your custom plugins\ + \ do not make use of a library that prohibits public distribution, You should audit them\ + \ to determine which libraries are being invoked and then read each corresponding license.\ + \ Tenable Network Security Confidential and Proprietary 3 Nessus Software License and Subscription\ + \ Agreement v13 03.03.15\n\n3. Term. This Agreement commences on the date on which You execute\ + \ this Agreement or download, install or use the Software (whichever occurs first) (the\ + \ \"Effective Date\") and continues until it is terminated according to the terms of this\ + \ Agreement (the \"Term\"). The initial subscription commences on the Effective Date and\ + \ continues as follows: (i) if You subscribe to Nessus Home, until it is terminated according\ + \ to the terms of this Agreement; or (ii) if You subscribe to Nessus Professional or Nessus\ + \ Manager, a period of one (1) year until midnight before the anniversary of the Effective\ + \ Date, unless terminated earlier according to the terms of this Agreement. If You subscribe\ + \ to Nessus Professional or Nessus Manager, You may extend the subscription for additional\ + \ one (1) year periods so long as You continue to pay the applicable Fees in accordance\ + \ with this Agreement and Tenable is making the Licensed Materials commercially available.\n\ + \n4. Intellectual Property. This Agreement does not transfer to You any title to or any\ + \ ownership right or interest in the Licensed Materials. You acknowledge that Tenable owns\ + \ and retains all right, title and interest in and to the Licensed Materials. All enhancements,\ + \ modifications and derivative works that Tenable or any Tenable-authorized third party\ + \ makes to the Licensed Materials or accompanying documentation, and all intellectual property\ + \ rights therein, will be the property of Tenable. Your rights with respect to the Licensed\ + \ Materials are limited to the right to use the Licensed Materials pursuant to the terms\ + \ and conditions in this Agreement. Any rights in or to the Licensed Materials (including\ + \ rights of use) not expressly granted in this Agreement are reserved by Tenable.\n\n5.\ + \ No Reverse Engineering, Other Restrictions. You may not directly or indirectly: (i) sell,\ + \ lease, redistribute or transfer any of the Licensed Materials on a stand-alone basis;\ + \ (ii) decompile, disassemble, reverse engineer, or otherwise attempt to derive, obtain\ + \ or modify the source code of the Licensed Materials; (iii) reproduce, modify, translate\ + \ or create derivative works of all or any part of the Licensed Materials; (iv) rent, lease\ + \ or loan the Licensed Materials in any form to any third party; (v) remove, alter or obscure\ + \ any proprietary notice, labels, or marks on the Licensed Materials; or (vi) sell, resell,\ + \ loan or otherwise provide access to third parties to the APIs, Nessus client interface,\ + \ or Nessus communication interface shipped by Tenable and provided to You. You may not\ + \ sublicense any of the rights granted to You in this Agreement. You may not distribute\ + \ or otherwise provide the Licensed Materials to third parties unless authorized to do so\ + \ in writing by Tenable. You are responsible for all use of the Licensed Materials and for\ + \ compliance with this Agreement; any breach by You or any user using the Licensed Materials\ + \ on Your behalf shall be deemed to have been made by You. You may not copy the documentation\ + \ as You agree it is provided to You under copyright protection. You may not use the Licensed\ + \ Materials if You are, or You work for, a competitor of Tenable’s in the network security\ + \ software industry. For the avoidance of doubt, You may not include or redistribute the\ + \ Licensed Materials on physical or virtual appliances to perform on-site scans.\n\n6. Restrictions\ + \ on Third Party Use and Access. You may permit a third party (a \"Third Party\") to (a)\ + \ use the Licensed Materials to perform security services for Your business or (b) administer\ + \ the Licensed Materials, each provided that: (i) any such Third Party use or administration\ + \ is for Your sole benefit and on Your behalf; (ii) You acknowledge that You shall be legally\ + \ responsible for the Third Party’s use of the Licensed Materials including any obligations\ + \ arising from such use and any breach by the Third Party of the terms and conditions of\ + \ the Agreement, including Section 7 (Confidentiality); (iii) usage by You and the Third\ + \ Party, when taken together, does not at any time exceed the usage restrictions imposed\ + \ under this Agreement. Upon sixty (60) days’ notice, Tenable may withdraw its consent to\ + \ the use of any Third Party in its reasonable discretion. You agree not to deliver or otherwise\ + \ make available the Licensed Materials, in whole or in part, to any party other than Tenable,\ + \ except for purposes specifically related to Your use of the Licensed Materials, without\ + \ Tenable’s prior written consent. You agree to use Your commercially reasonable efforts\ + \ and to take all reasonable steps to ensure that no unauthorized parties have or use the\ + \ Licensed Materials and that no unauthorized copy, publication, disclosure or distribution\ + \ of the Licensed Materials, in whole or in part, in any form is made by You or any third\ + \ party. You agree to notify Tenable promptly of any unauthorized access to, or use, copying,\ + \ publication, disclosure or distribution of the Licensed Materials. You acknowledge that\ + \ the Licensed Materials contain valuable Confidential Information and trade secrets of\ + \ Tenable or its affiliates and their licensors or suppliers.\n\n7. Confidentiality. (a)\ + \ As used in this Agreement, \"Confidential Information\" means any and all information\ + \ and material of a party that: (i) is marked \"Confidential,\" \"Restricted,\" or \"Confidential\ + \ Information\" or other similar marking; (ii) is known by the party Tenable Network Security\ + \ Confidential and Proprietary 4 Nessus Software License and Subscription Agreement v13\ + \ 03.03.15 receiving it under this Agreement (the \"Receiving Party\") to be confidential\ + \ or proprietary; or (iii) from all the relevant circumstances, a reasonable person would\ + \ understand to be confidential or proprietary. Tenable’s Confidential Information includes\ + \ the Licensed Materials. Confidential Information does not include any information that\ + \ the Receiving Party can prove: (a) was already known to the Receiving Party without restrictions\ + \ at the time of its disclosure by the other party (the \"Disclosing Party\"); (b) after\ + \ its disclosure by the Disclosing Party, is made known to the Receiving Party without restrictions\ + \ by a third party having the right to do so; (c) is or becomes publicly known without violation\ + \ of this Agreement; or (d) is independently developed by the Receiving Party without reference\ + \ to the Disclosing Party’s Confidential Information. Confidential Information will remain\ + \ the property of the Disclosing Party, and the Receiving Party will not be deemed by virtue\ + \ of this Agreement or any access to the Disclosing Party’s Confidential Information to\ + \ have acquired any right, title or interest in or to the Disclosing Party’s Confidential\ + \ Information. The Receiving Party may not copy any of the Disclosing Party’s Confidential\ + \ Information without the Disclosing Party’s prior written permission. The Receiving Party\ + \ may not remove any copyright, trademark, proprietary rights or other notices included\ + \ in or affixed to any of the Disclosing Party’s Confidential Information. Other than using\ + \ the Licensed Materials in accordance with the terms of this Agreement, You may not use\ + \ Tenable’s Confidential Information for Your or a third party’s benefit, competitive development\ + \ or any other purpose. The Receiving Party agrees: (I) to hold the Disclosing Party’s Confidential\ + \ Information in strict confidence; (II) to limit disclosure of the Disclosing Party’s Confidential\ + \ Information to the Receiving Party’s own employees having a need to know the Confidential\ + \ Information for the purposes of this Agreement or those of any Third Party, as specified\ + \ in Section 6; (III) not to disclose the Disclosing Party’s Confidential Information to\ + \ any third party other than to a Third Party as specified in Section 6; (IV) to use the\ + \ Confidential Information solely and exclusively in accordance with the terms of this Agreement\ + \ in order to carry out the Receiving Party’s obligations and exercise the Receiving Party\ + \ rights under this Agreement; (V) to afford the Disclosing Party’s Confidential Information\ + \ at least the same level of protection against unauthorized disclosure or use as the Receiving\ + \ Party normally uses to protect its own information of a similar character, but in no event\ + \ less than reasonable care; and (VI) to notify the Disclosing Party promptly of any unauthorized\ + \ use or disclosure of the Disclosing Party’s Confidential Information and to cooperate\ + \ with and assist the Disclosing Party in every reasonable way to stop or minimize such\ + \ unauthorized use or disclosure. The Receiving Party agrees that if a court of competent\ + \ jurisdiction determines that the Receiving Party has breached, or attempted or threatened\ + \ to breach, the Receiving Party’s confidentiality obligations to the Disclosing Party or\ + \ its proprietary rights, the Disclosing Party will suffer irreparable harm and that monetary\ + \ damages will be inadequate to compensate it for such breach. Accordingly, the Disclosing\ + \ Party, in addition to and not in lieu of any other rights, remedies or damages available\ + \ to it at law or in equity, shall be entitled to seek appropriate injunctive relief and\ + \ other measures restraining further attempted or threatened breaches of such obligations\ + \ without requirement to post any bond. Tenable is not willing to accept any confidential\ + \ information or any personal information from You under this Agreement unless you are licensing\ + \ Nessus Professional or Nessus Manager. (b) You acknowledge that Tenable does not require\ + \ any personally identifiable information, (beyond name, phone number and email) from You\ + \ for any reason whatsoever, including without limitation in order for Tenable to provide\ + \ the Licensed Materials or any associated support. However, If You disclose any information\ + \ that is \"Nonpublic Personal Information\", as defined in Title V of the Gramm-Leach-Bliley\ + \ Act of 1999, or any successor federal statute, and the rules and regulations thereunder,\ + \ all as may be amended or supplemented from time to time, or \"Protected Health Information\ + \ (‘PHI’)\", as defined in the Health Insurance Portability and Accountability Act of 1996,\ + \ or any successor federal statute, and the rules and regulations thereunder, all as may\ + \ be amended or supplemented from time to time, for which You have separate obligations,\ + \ You will notify Tenable immediately. Upon such written notification, Tenable will take\ + \ steps to return or destroy the Nonpublic Personal Information or PHI as quickly as reasonably\ + \ possible and will protect such information in accordance with Your reasonable instructions\ + \ prior to returning or destroying it. This should not be read as to alleviate any requirement\ + \ on You to keep such information confidential and Tenable does not assume any liability\ + \ with respect to Your disclosure whether willful or accidental.\n\n8. Warranty and Disclaimer.\ + \ (a) Licensed Materials. Tenable warrants that, for a period of thirty (30) days from the\ + \ Effective Date (the \"Warranty Period\"), the unmodified Licensed Materials will, under\ + \ normal use, substantially perform the functions described in their technical documentation.\ + \ If there is a breach of this warranty, then Tenable’s sole obligation, and Your exclusive\ + \ remedy, will be for Tenable, at its option, to correct the performance of the Licensed\ + \ Materials at no charge so that it substantially performs the functions described in its\ + \ technical documentation or to replace the Licensed Materials. You acknowledge that the\ + \ remedies described in the preceding sentence are sufficient and cannot fail of their essential\ + \ purpose. (b) Disclaimer. EXCEPT AS SPECIFICALLY SET FORTH IN SECTION 8(a), TENABLE DOES\ + \ NOT MAKE ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING\ + \ ANY WARRANTIES OF Tenable Network Security Confidential and Proprietary 5 Nessus Software\ + \ License and Subscription Agreement v13 03.03.15 TITLE, NON-INFRINGEMENT, MERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR PURPOSE, INTEGRATION, PERFORMANCE AND ACCURACY, AND ANY IMPLIED\ + \ WARRANTIES ARISING FROM STATUTE, COURSE OF DEALING, COURSE OF PERFORMANCE OR USAGE OF\ + \ TRADE, OTHER THAN THOSE WARRANTIES WHICH ARE IMPLIED BY AND INCAPABLE OF EXCLUSION, RESTRICTION,\ + \ OR MODIFICATION UNDER APPLICABLE LAW. TENABLE MAKES NO WARRANTY THAT THE LICENSED MATERIALS\ + \ WILL OPERATE ERROR-FREE, FREE OF ANY SECURITY DEFECTS OR IN AN UNINTERRUPTED MANNER.\n\ + \n9. Limitation of Liability. IF YOU SHOULD BECOME ENTITLED TO CLAIM DAMAGES FROM TENABLE\ + \ (INCLUDING FOR NEGLIGENCE, STRICT LIABILITY, BREACH OF CONTRACT, MISREPRESENTATION AND\ + \ OTHER CONTRACT OR TORT CLAIMS) TENABLE WILL BE LIABLE ONLY FOR THE AMOUNT OF YOUR ACTUAL\ + \ DIRECT DAMAGES, NOT TO EXCEED (IN THE AGGREGATE FOR ALL CLAIMS) THE FEES, IF ANY, YOU\ + \ PAID TO TENABLE UNDER THIS AGREEMENT WITHIN THE TWELVE MONTH PERIOD IMMEDIATELY PRECEDING\ + \ THE EARLIEST DATE ON WHICH THE ACT OR OMMISSION GIVING RISE TO YOUR CLAIM OCCURRED OR\ + \ SHOULD HAVE OCCURRED, AS APPLICABLE.\n\n10. Exclusion of Damages. UNDER NO CIRCUMSTANCES\ + \ WILL TENABLE BE LIABLE TO YOU OR ANY OTHER PERSON OR ENTITY FOR ANY INDIRECT, INCIDENTAL,\ + \ CONSEQUENTIAL, SPECIAL, EXEMPLARY OR PUNITIVE DAMAGES (INCLUDING NEGLIGENCE, STRICT LIABILITY,\ + \ BREACH OF CONTRACT, MISREPRESENTATION AND OTHER CONTRACT OR TORT CLAIMS; LOST PROFITS;\ + \ OR ANY DAMAGES RESULTING FROM LOSS OF DATA, SECURITY BREACH, PROPERTY DAMAGE, LOSS OF\ + \ REVENUE, LOSS OF BUSINESS OR LOST SAVINGS), ARISING OUT OF OR IN CONNECTION WITH THIS\ + \ AGREEMENT, THE PERFORMANCE OF THE LICENSED MATERIALS OR OF ANY OTHER OBLIGATIONS RELATING\ + \ TO THIS AGREEMENT, WHETHER OR NOT TENABLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\ + \ DAMAGES. YOU ARE SOLELY RESPONSIBLE AND LIABLE FOR VERIFYING THE SECURITY, ACCURACY AND\ + \ ADEQUACY OF ANY OUTPUT FROM THE LICENSED MATERIALS, AND FOR ANY RELIANCE THEREON.\n\n\ + 11. Additional Provisions Regarding Liability. The limitations of liability set forth in\ + \ Sections 9 and 10 will survive and apply notwithstanding the failure of any limited or\ + \ exclusive remedy for breach of warranty set forth in this Agreement. The parties agree\ + \ that the foregoing limitations will not be read so as to limit any liability to an extent\ + \ that would not be permitted under applicable law and specifically will not limit any liability\ + \ for gross negligence, intentional tortious or unlawful conduct or damages for strict liability\ + \ that may not be limited by law.\n\n12. Indemnification. (a) Each of the parties acknowledges\ + \ and agrees that by entering into and performing its obligations under this Agreement,\ + \ Tenable will not assume and should not be exposed to the business and operational risks\ + \ associated with Your business and your use of the Licensed Materials. You acknowledge\ + \ that Your use of the Licensed Materials is only a portion of Your overall security solution\ + \ and that Tenable is not responsible for Your overall security solution. The parties acknowledge\ + \ that the use of the Licensed Materials may affect the operation of Your network during\ + \ vulnerability scanning. Tenable shall not be liable to You for any impairment of the operation\ + \ of Your network arising from Your use of the Licensed Materials during such scanning.\ + \ As between You and Tenable, You are (and Tenable is not) responsible for the success or\ + \ failure of such security solution. Accordingly, You agree that You will, at Your expense,\ + \ indemnify, defend and hold Tenable harmless in all claims and actions that seek compensation\ + \ of any kind for injury or death to persons and/or for damage to property, and that arise\ + \ out of or relate to Your security solutions or Your use of the Licensed Materials or the\ + \ solutions You provide to a third party through Your use of the Licensed Materials. You\ + \ also agree to pay all settlements, costs, damages, legal fees and expenses finally awarded\ + \ in all such claims and actions. If You are a governmental entity that is prohibited by\ + \ applicable law from providing this type of indemnification, this Section 12(a) will not\ + \ apply. The following provision applies only to Nessus Professional and Nessus Manager\ + \ subscriptions: (b) Tenable will, at its sole cost and expense, defend (or at its option,\ + \ settle) and indemnify You and Your subsidiaries and affiliates, and their officers, directors,\ + \ employees, representatives and agents, from and against any and all third party claims\ + \ brought against You based upon a claim that use of the Licensed Materials in accordance\ + \ with this Agreement infringes such third party’s United States patent, copyright or trademark\ + \ or misappropriates any trade secret, and will pay all settlements entered into and damages\ + \ finally awarded (including reasonable attorneys’ fees) to the extent based on such claim\ + \ Tenable Network Security Confidential and Proprietary 6 Nessus Software License and Subscription\ + \ Agreement v13 03.03.15 or action, provided that You give Tenable (a) prompt notice of\ + \ such action or claim; (b) the right to control and direct the investigation, defense,\ + \ and/or settlement of such action or claim; and (c) reasonable cooperation. If Your use\ + \ of the Licensed Materials is, or in Tenable’s opinion is likely to be, the subject of\ + \ an infringement claim, or if required by settlement, Tenable may, in its sole discretion\ + \ and expense, (a) substitute for the Licensed Materials substantially functionally similar\ + \ non-infringing software; (b) procure for You the right to continue using the Licensed\ + \ Materials; (c) if the infringing material consists of Plugins, remove the Plugins in question\ + \ from the subscription and provide You with a pro rata refund based upon the total number\ + \ of Plugins removed relative to the total number of Plugins; or (d) terminate this Agreement,\ + \ accept return of the Licensed Materials and refund to You the Fee for the portion of the\ + \ Term paid for but not yet received. Tenable has no liability with respect to patent, copyright\ + \ or trademark infringement or trade secret misappropriation arising out of: (i) modifications\ + \ of the Licensed Materials; (ii) Your use of the Licensed Materials in combination with\ + \ software (other than the Software) or third party equipment; (iii) Your failure to use\ + \ any new or corrected versions of the Licensed Materials made available by Tenable; or\ + \ (iv) Your use of the Licensed Materials in a manner not permitted by this Agreement. This\ + \ Section 12(b) sets forth Tenable’s sole liability and Your sole and exclusive remedy with\ + \ respect to any claim of intellectual property infringement by the Licensed Materials.\n\ + \n13. Verification. For the term of this Agreement and one (1) year thereafter, You agree\ + \ that Tenable or its designee shall have the right, at its own expense and under reasonable\ + \ conditions of time and place, to audit and copy all records of Your use of the Software.\ + \ Upon Tenable’s written approval, Tenable may instead require You to complete accurately\ + \ a self-audit questionnaire in a form provided by Tenable. If an audit reveals unlicensed\ + \ use of the Licensed Materials, a breach of this Agreement or underpayment of any Fees\ + \ by You or Your employees or agents, You must, in addition to such other rights and remedies\ + \ as may be available to Tenable as the result of such breach, promptly order and pay for\ + \ sufficient licenses (at Tenable’s then-current price for such licenses) to permit all\ + \ usage disclosed and pay the full cost of such audit and copying. Tenable will use information\ + \ obtained from such audit only to verify and enforce Your compliance with the terms of\ + \ this Agreement, to comply with any governmental reporting requirements and for such other\ + \ purposes as required by law. The foregoing audit right will not apply to the extent not\ + \ allowable under applicable law.\n\n14. Your Payment Obligations. You agree to pay any\ + \ and all amounts due or incurred by You as specified in the invoice for the applicable\ + \ subscription to the Licensed Materials (the \"Fees\"). The invoice may be issued by Tenable\ + \ or one of its authorized distributors, as applicable. Payment is due upon delivery of\ + \ an invoice unless other terms have been agreed upon by Tenable. You agree to pay directly\ + \ or reimburse Tenable (or the authorized distributor, as applicable) for any taxes (including,\ + \ sales or excise taxes, value added taxes, landing fees, import duties and the like), however\ + \ designated and whether foreign or domestic, arising out of this Agreement, imposed on\ + \ the Plugins or the use thereof, or Tenable’s performance under this Agreement. You agree\ + \ to pay invoices under this Agreement without deducting any present or future taxes, withholdings\ + \ or other charges except those deductions it is legally required to make. If You are legally\ + \ required to make any deductions, You agree to pay such amounts as are necessary to make\ + \ the net amounts remaining after such deductions equal to the stated amount due under this\ + \ Agreement. The payments or reimbursements will be in such amounts as are sufficient to\ + \ relieve Tenable (or the authorized distributor, as applicable) from owing any further\ + \ taxes, either directly or on the basis of the payments made under this Agreement. Notwithstanding\ + \ the foregoing, Tenable will be solely responsible for its income tax obligations and all\ + \ employer reporting and payment obligations with respect to its personnel. You agree to\ + \ pay any interest and penalties imposed by any taxing authorities to the extent such interest\ + \ and penalties are applicable to taxes not paid at Your request or as a result of reliance\ + \ by Tenable (or the authorized distributor, as applicable) on Your representations. If\ + \ a certificate of exemption or similar document or proceeding is necessary in order to\ + \ exempt any transaction from a tax, You will obtain such certificate or document.\n\n15.\ + \ Legal Compliance; Restricted Rights. The Licensed Materials are provided solely for lawful\ + \ purposes and use. You are solely responsible for, and agree to perform Your obligations\ + \ in a manner that complies with all applicable national, federal, state and local laws,\ + \ statutes, ordinances, regulations, codes and other types of government authority (including\ + \ those governing export control, unfair competition, anti-discrimination, false advertising,\ + \ privacy and data protection, and publicity and those identifying and requiring permits,\ + \ licenses, approvals, and other consents) (\"Laws\"). If a charge is made that You are\ + \ not complying with any such Laws, You will promptly notify Tenable of such charges in\ + \ writing. Without limiting the foregoing, You agree to comply with all U.S. export Laws\ + \ (including the International Traffic in Arms Regulation (\"ITAR\"), 22 CFR 120-130, and\ + \ the Export Administration Regulation (\"EAR\"), 15 CFR Parts 730 et seq.) and applicable\ + \ export Laws of Your locality (if You are not in the United States), to ensure that no\ + \ information or technical data provided pursuant to this Agreement is exported or re-exported\ + \ directly or indirectly in violation of Law or without first obtaining all required authorizations\ + \ or licenses. No physical or computational access Tenable Network Security Confidential\ + \ and Proprietary 7 Nessus Software License and Subscription Agreement v13 03.03.15 by nationals\ + \ of any country listed in Country Group E:1 in Supplement No. 1 to part 740 of the EAR\ + \ is permitted. You will, at Your sole cost and expense, obtain and maintain in effect all\ + \ permits, licenses, approvals and other consents related to Your obligations under this\ + \ Agreement. You agree, at Your expense, to comply with all foreign exchange and other Laws\ + \ applicable to You. The parties further agree to comply with sanctions administered by\ + \ the Department of Treasury’s Office of Foreign Assets Control (\"OFAC\") and shall not\ + \ engage in prohibited trade to persons or entities on the Specially Designated Nationals\ + \ (\"SDN\") list. Unless You are prohibited by law from doing so, You will defend, indemnify,\ + \ and hold Tenable harmless from any breach of this Section 15.\n\n16. Termination. (a)\ + \ You may terminate this Agreement at any time by destroying or returning to Tenable the\ + \ Licensed Materials, together with all copies, modifications and merged portions of the\ + \ Licensed Materials in any form. (b) This Agreement and Your license to use the Licensed\ + \ Materials shall terminate automatically if You fail to comply with any term or condition\ + \ of this Agreement. (c) Immediately upon termination of this Agreement, You shall destroy\ + \ or return to Tenable the Licensed Materials, together with all copies, modifications and\ + \ merged portions of the Licensed Materials in any form, and shall certify to Tenable in\ + \ writing that through Your commercially reasonable efforts and to Your knowledge all such\ + \ materials have been destroyed or returned to Tenable and removed from host computers on\ + \ which the Licensed Materials resided. However, You may download the then-current version\ + \ of the Licensed Materials and enter into a new license under the then-current terms. The\ + \ removal and deletion provisions of this Section do not apply to copies of the Licensed\ + \ Materials that are made pursuant to Your reasonable back-up and archival policies (under\ + \ which back-up tapes that will be overwritten in due course may contain copies of the Licensed\ + \ Materials), provided that (i) such copies are only retained by You in the course of Your\ + \ back-up procedures, (ii) such copies will be deleted within a reasonable period of time\ + \ in the normal course of overwriting under the back-up process, and (iii) such copies never\ + \ be used to exceed the license restrictions under this Agreement. (d) Any provision of\ + \ this Agreement that imposes or contemplates continuing obligations on a party, including\ + \ Sections 4, 5, 6, 7, 9, 10, 11, 13, 16, 17, 22, and 23 will survive the expiration or\ + \ termination of this Agreement.\n\n17. Governing Law and Dispute Resolution. (a) This Agreement\ + \ shall be governed in all respects by the laws of the State of Maryland, USA, without regard\ + \ to choice-of-law rules or principles. If You are a governmental entity that cannot legally\ + \ agree to be governed by the laws of the State of Maryland, this Section 17(a) will be\ + \ deemed to refer to the laws of the Your state rather than to the State of Maryland. (b)\ + \ You and Tenable submit to the exclusive jurisdiction of the courts of Howard County, Maryland\ + \ and the United States District Court for Maryland, Baltimore Division, for any question\ + \ or dispute arising out of or relating to this Agreement. Due to the high costs and time\ + \ involved in commercial litigation before a jury, the parties waive all right to a jury\ + \ trial with respect to any and all issues in any action or proceeding arising out of or\ + \ related to this Agreement. If You are a governmental entity that cannot legally submit\ + \ to the exclusive jurisdiction of the courts of Howard County, Maryland, this Section 17(b)\ + \ will be deemed to be deleted. (c) The Licensed Materials are licensed subject to Tenable’s\ + \ standard commercial agreement (this Agreement); the Licensed Materials are commercial\ + \ items as defined by the Federal Acquisition Regulation (FAR) System, Title 48 of the Code\ + \ of Federal Regulations. Tenable licenses the Licensed Materials to You pursuant to the\ + \ terms of this Agreement and not any clause identified in FAR Part 27, DFARS Part 227,\ + \ or any other government agency data rights clause, except that, if You are a government\ + \ entity and the Agreement is subject to FAR 52.227-19 Commercial Computer Software License\ + \ (Dec 2007), Tenable agrees that that clause supplements the other terms of this Agreement.\ + \ If you do not agree to the terms of this paragraph, you shall return the Licensed Materials\ + \ unused for a refund. (d) You expressly agree with Tenable that this Agreement shall not\ + \ be governed by the U.N. Convention on Contracts for the International Sale of Goods, the\ + \ application of which is expressly excluded. No aspect or provision of the Uniform Computer\ + \ Information Transactions Act, as implemented under Maryland law, shall apply to this Agreement.\ + \ Tenable Network Security Confidential and Proprietary 8 Nessus Software License and Subscription\ + \ Agreement v13 03.03.15\n\n18. Notices. Any notices or other communication required or\ + \ permitted to be made or given by either party pursuant to this Agreement will be in writing,\ + \ in English, and will be deemed to have been duly given when delivered if delivered personally\ + \ or sent by recognized overnight express courier, to the address specified herein or such\ + \ other address as a party may specify in writing. Tenable may also provide notices to You\ + \ via an email address You have provided to Tenable. All notices to Tenable shall be sent\ + \ to the attention of the Legal Department, at Tenable Network Security, 7021 Columbia Gateway\ + \ Drive, Suite 500, Columbia, MD 21046.\n\n19. Transfer and Assignment. You may not rent,\ + \ lease, lend, sublicense or otherwise provide the Licensed Materials to any third party,\ + \ except as expressly provided in this Agreement. You may not assign or otherwise transfer\ + \ this Agreement without Tenable’s prior written consent. You may use the Licensed Materials\ + \ to provide services to third parties only as expressly provided in this Agreement.\n\n\ + 20. Language. The language of this Agreement is English and all invoices and other documents\ + \ given under this Agreement must be in English to be effective. No translation, if any,\ + \ of this Agreement or any notice will be of any effect in the interpretation of this Agreement\ + \ or in determining the intent of the parties.\n\n21. Third Parties. This Agreement is not\ + \ intended nor will it be interpreted to confer any benefit, right or privilege in any person\ + \ or entity not a party to this Agreement. Any party who is not a party to this Agreement\ + \ has no right under any Law to enforce any term of this Agreement.\n\n22. Trademarks. Nessus,\ + \ ProfessionalFeed, HomeFeed, Tenable Network Security and Tenable’s \"hexagon\" logo are\ + \ registered trademarks of Tenable. Tenable’s other logos, including the \"eye\" logo, are\ + \ also trademarks of Tenable. Tenable does not grant to You, either expressly or by implication,\ + \ any license or permission under this Agreement to use any of the Tenable marks (including\ + \ trademarks, service marks, trade names, trade dress, symbols, logos, designs, domain names,\ + \ slogans and other source identifiers).\n\n23. General. This Agreement constitutes the\ + \ entire agreement between the parties, and supersedes all other prior or contemporaneous\ + \ communications between the parties (whether written or oral) relating to the subject matter\ + \ of this Agreement, provided, however, that this Agreement will not supersede (and will\ + \ be subject to) any written agreements signed by both Tenable and You that contain license\ + \ terms for the Licensed Materials and that specifically provide that such agreements are\ + \ intended to supersede license agreements that may be included in subsequent orders of\ + \ the Licensed Materials. Tenable will provide a reasonable replacement for damaged or lost\ + \ Licensed Materials for You at no charge. No supplement, modification or amendment of this\ + \ Agreement shall be binding, unless executed in writing by a duly authorized representative\ + \ of each party to this Agreement. The provisions of this Agreement will be deemed severable,\ + \ and the unenforceability of any one or more provisions will not affect the enforceability\ + \ of any other provisions. In addition, if any provision of this Agreement, for any reason,\ + \ is declared to be unenforceable, the parties will substitute an enforceable provision\ + \ that, to the maximum extent possible under applicable law, preserves the original intentions\ + \ and economic positions of the parties. Unless Tenable agrees otherwise, You agree that\ + \ Tenable may use Your name in a customer list. Neither party shall be liable for any loss\ + \ or delay (including failure to meet the service level commitment) resulting from any force\ + \ majeure event, including, but not limited to, acts of God, fire, natural disaster, terrorism,\ + \ labor stoppage, Internet service provider failures or delays, civil unrest, war or military\ + \ hostilities, criminal acts of third parties, and any payment date or delivery date shall\ + \ be extended to the extent of any delay resulting from any force majeure event. No failure\ + \ or delay by a party in exercising any right, power or remedy will operate as a waiver\ + \ of that right, power or remedy, and no waiver will be effective unless it is in writing\ + \ and signed by the waiving party. If a party waives any right, power or remedy, the waiver\ + \ will not waive any successive or other right, power or remedy the party may have under\ + \ this Agreement. Any provision of this Agreement that imposes or contemplates continuing\ + \ obligations on a party will survive the expiration or termination of this Agreement. \"\ + Including\" and its derivatives (such as \"include\" and \"includes\") mean including without\ + \ limitation; this term is as defined, whether or not capitalized in this Agreement." json: tenable-nessus.json - yml: tenable-nessus.yml + yaml: tenable-nessus.yml html: tenable-nessus.html - text: tenable-nessus.LICENSE + license: tenable-nessus.LICENSE - license_key: term-readkey + category: Permissive spdx_license_key: LicenseRef-scancode-term-readkey other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Unlimited distribution and/or modification is allowed as long as this copyright + notice remains intact. json: term-readkey.json - yml: term-readkey.yml + yaml: term-readkey.yml html: term-readkey.html - text: term-readkey.LICENSE + license: term-readkey.LICENSE - license_key: tested-software + category: Permissive spdx_license_key: LicenseRef-scancode-tested-software other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "License: \nThis is free software. You may use this software for any\npurpose including\ + \ modification/redistribution, so long as\nthis header remains intact and that you do not\ + \ claim any\nrights of ownership or authorship of this software. This\nsoftware has been\ + \ tested, but no warranty is expressed or\nimplied." json: tested-software.json - yml: tested-software.yml + yaml: tested-software.yml html: tested-software.html - text: tested-software.LICENSE + license: tested-software.LICENSE - license_key: tex-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-tex-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception, when this file is read by TeX when processing + a Texinfo source document, you may use the result without + restriction. This Exception is an additional permission under section 7 + of the GNU General Public License, version 3 ("GPLv3"). json: tex-exception.json - yml: tex-exception.yml + yaml: tex-exception.yml html: tex-exception.html - text: tex-exception.LICENSE + license: tex-exception.LICENSE - license_key: tex-live + category: Permissive spdx_license_key: LicenseRef-scancode-tex-live other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "COPYING CONDITIONS FOR TeX Live:\n\nTo the best of our knowledge, all software in the\ + \ TeX Live distribution\nis freely redistributable (libre, that is, not necessarily gratis),\n\ + within the Free Software Foundation's definition and the Debian Free\nSoftware Guidelines.\ + \ Where the two conflict, we generally follow the\nFSF (see [*] below). If you find any\ + \ non-free files included, please\ncontact us (references given at the end).\n\nThat said,\ + \ TeX Live has neither a single copyright holder nor a single\nlicense covering its entire\ + \ contents, since it is a collection of many\ndisparate packages. Therefore, you may copy,\ + \ modify, and/or\nredistribute software from TeX Live only if you comply with the\nrequirements\ + \ placed thereon by the owners of the respective packages.\n\nTo most easily learn these\ + \ requirements, we suggest checking the TeX\nCatalogue at: http://www.ctan.org/tex-archive/help/Catalogue/\ + \ (or any\nCTAN mirror). The Catalogue is also included in TeX Live in\n./texmf/doc/html/catalogue/,\ + \ but the online version will have updates.\nOf course the legal statements within the packages\ + \ themselves are the\nfinal authority.\n\nIn some cases, TeX Live is distributed with a\ + \ snapshot of the CTAN\narchive, which is entirely independent of and separable from TeX\ + \ Live\nitself. (The \"live\" DVD in the TeX Collection is one example of this.)\nPlease\ + \ be aware that the CTAN snapshot contains many files which are\n*not* freely redistributable;\ + \ see LICENSE.CTAN for more information.\n\n\nGUIDELINES FOR REDISTRIBUTION:\n\nIn general,\ + \ you may redistribute TeX Live, with or without modification,\nfor profit or not, according\ + \ to the usual free software tenets. Here\nare some general guidelines for doing this:\n\ + \n- If you make any changes to the TeX Live distribution or any\npackage it contains, besides\ + \ complying with any licensing requirements,\nyou must prominently mention such changes\ + \ in your modified distribution\nso that users do not take your work for ours, and know\ + \ to contact you,\nnot us, in case of questions or problems. A new top-level\nREADME.\ + \ file is a good place to describe the general situation.\n\n- Especially (but not necessarily)\ + \ if changes or additions are made, we\nrecommend a clearly different title, such as \"\ + DVD, based on\nTeX Live YYYY (with updates)\", where YYYY is the year of TeX\ + \ Live you\nare using. This credits both our work and yours.\n\n- You absolutely may *not*\ + \ place your own copyright on the entire\ndistribution, since it is not your work (as stated\ + \ above, TeX Live is\nnot created by any single person or entity). Statements such as \"\ + all\nrights reserved\" and \"may not be reproduced\" are especially\nreprehensible, since\ + \ they are antithetical to the free software\nprinciples under which TeX Live is produced.\n\ + \n- You may use any cover or media label designs that you wish. Such\npackaging and marketing\ + \ details are not covered by any TeX Live license.\n\n- Finally, we make the following requests\ + \ (not legal requirements):\n\na) Acknowledging that TeX Live is developed as a joint effort\ + \ by all TeX\n user groups, and encouraging the user/reader to join their user group\n\ + \ of choice. The web page http://www.tug.org/usergroups.html may be\n referenced as\ + \ a list of TeX user groups.\n\nb) Referencing the TeX Live home page: http://www.tug.org/texlive/\n\ + \nSuch information may be placed on the label of your media, your cover,\nand/or in accompanying\ + \ text (for instance, in the acknowledgements\nsection of a book).\n\nFinally, although\ + \ it is again not at all a requirement, we'd like to\ninvite any redistributors to make\ + \ a donation to the project, whether\ncash or in-kind, for example via https://www.tug.org/donate/dev.html.\n\ + Thanks.\n\n\nIf you have any questions or comments, *please* contact us. In general,\n\ + we appreciate being given the chance to review any TeX Live-related\nmaterial in advance\ + \ of publication, simply to avoid mistakes. It is\nmuch better to correct text on a CD\ + \ label or in a book before thousands\nof copies are made!\n\nWe are also happy to keep\ + \ anyone planning a publication informed as to\nour deadlines and progress. Just let us\ + \ know. However, be aware that\nTeX Live is produced entirely by volunteers, and no dates\ + \ can be\nguaranteed.\n\n\nLICENSING FOR NEW PACKAGES:\n\nFinally, we are often asked what\ + \ license to use for new work. To be\nconsidered for inclusion on TeX Live, a package must\ + \ use a free software\nlicense, such as the LaTeX Project Public License, the GNU General\n\ + Public License, the X Window System license, the modified BSD license,\netc. Furthermore,\ + \ all sources must be available, including for\ndocumentation files. Please see the url's\ + \ below for more information.\n\nThanks for your interest in TeX.\n\n- Karl Berry, editor,\ + \ for the TeX Live team\n\n------------------------------------------------------------\n\ + [*] Conflicts between FSF and Debian.\n\nThe most notable instance of legal conflict between\ + \ the FSF definition\nof \"free software\" and the Debian Free Software Guidelines is in\ + \ regard\nto the GNU Free Documentation License when \"invariant sections\" (e.g.,\nFront-Cover\ + \ Texts, Back-Cover Texts, or Invariant Sections) are\nincluded. (FSF considers it free,\ + \ of course, and Debian doesn't.) \n\nThe most common instance of such a license is in documentation\ + \ for\nofficial GNU packages -- such as GNU Texinfo, which is included in TeX\nLive. There\ + \ may be other GFDL'd files with invariant sections as well;\nwe have not exhaustively checked.\n\ + \nFor TeX Live, we decided to follow the FSF, rather than Debian. So such\ndocumentation\ + \ *is* included in the original TeX Live distribution. (In\nrepackagings of TL according\ + \ to Debian rules, it is removed.) We surely\nwish these two major organizations in the\ + \ free software world could\ncooperate on a documentation license acceptable to both.\n\n\ + If other specific conflicts are brought to our attention, we will note\nthem here.\n\n------------------------------------------------------------\n\ + TeX Live mailing list: texlive@tug.org\nTeX Live home page: http://www.tug.org/tex-live/\n\ + \nThe FSF's free software definition: http://www.gnu.org/philosophy/free-sw.html\nDebian\ + \ Free Software Guidelines: http://www.debian.org/intro/free\nFSF commentary on existing\ + \ licenses:\n http://www.gnu.org/licenses/license-list.html\n\nLPPL: http://latex-project.org/lppl.html\ + \ or texmf/doc/latex/base/lppl.txt\nLPPL rationale: texmf/doc/latex/base/modguide.pdf" json: tex-live.json - yml: tex-live.yml + yaml: tex-live.yml html: tex-live.html - text: tex-live.LICENSE + license: tex-live.LICENSE - license_key: tfl + category: Public Domain spdx_license_key: LicenseRef-scancode-tfl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + I am the author of this software and its documentation and + permanently abandon all copyright and other intellectual property rights in + them, including the right to be identified as the author. + + I am fairly certain that this software does what the documentation says it + does, but I cannot guarantee that it does, or that it does what you think it + should, and I cannot guarantee that it will not have undesirable side effects. + + You are free to use, modify and distribute this software as you please, but + you do so at your own risk. If you remove or hide this warning then you are + responsible for any problems encountered by people that you make the software + available to. + + Before modifying or distributing this software I ask that you would please + read http://www.purposeful.co.uk/tfl/ json: tfl.json - yml: tfl.yml + yaml: tfl.yml html: tfl.html - text: tfl.LICENSE + license: tfl.LICENSE - license_key: tgppl-1.0 + category: Copyleft spdx_license_key: LicenseRef-scancode-tgppl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + Transitive Grace Period Public Licence ("TGPPL") v. 1.0 + + This Transitive Grace Period Public Licence (the "License") applies to + any original work of authorship (the "Original Work") whose owner (the + "Licensor") has placed the following licensing notice adjacent to the + copyright notice for the Original Work: + + *Licensed under the Transitive Grace Period Public Licence version 1.0* + + 1. *Grant of Copyright License.* Licensor grants You a worldwide, + royalty-free, non-exclusive, sublicensable license, for the + duration of the copyright, to do the following: + + 1. to reproduce the Original Work in copies, either alone or as + part of a collective work; + + 2. to translate, adapt, alter, transform, modify, or arrange + the Original Work, thereby creating derivative works + ("Derivative Works") based upon the Original Work; + + 3. to distribute or communicate copies of the Original Work and + Derivative Works to the public, with the proviso that copies + of Original Work or Derivative Works that You distribute or + communicate shall be licensed under this Transitive Grace + Period Public Licence no later than 12 months after You + distributed or communicated said copies; + + 4. to perform the Original Work publicly; and + + 5. to display the Original Work publicly. + + 2. *Grant of Patent License.* Licensor grants You a worldwide, + royalty-free, non-exclusive, sublicensable license, under patent + claims owned or controlled by the Licensor that are embodied in + the Original Work as furnished by the Licensor, for the duration + of the patents, to make, use, sell, offer for sale, have made, and + import the Original Work and Derivative Works. + + 3. *Grant of Source Code License.* The term "Source Code" means the + preferred form of the Original Work for making modifications to it + and all available documentation describing how to modify the + Original Work. Licensor agrees to provide a machine-readable copy + of the Source Code of the Original Work along with each copy of + the Original Work that Licensor distributes. Licensor reserves the + right to satisfy this obligation by placing a machine-readable + copy of the Source Code in an information repository reasonably + calculated to permit inexpensive and convenient access by You for + as long as Licensor continues to distribute the Original Work. + + 4. *Exclusions From License Grant.* Neither the names of Licensor, + nor the names of any contributors to the Original Work, nor any of + their trademarks or service marks, may be used to endorse or + promote products derived from this Original Work without express + prior permission of the Licensor. Except as expressly stated + herein, nothing in this License grants any license to Licensor's + trademarks, copyrights, patents, trade secrets or any other + intellectual property. No patent license is granted to make, use, + sell, offer for sale, have made, or import embodiments of any + patent claims other than the licensed claims defined in Section 2. + No license is granted to the trademarks of Licensor even if such + marks are included in the Original Work. Nothing in this License + shall be interpreted to prohibit Licensor from licensing under + terms different from this License any Original Work that Licensor + otherwise would have a right to license. + + 5. *External Deployment.* The term "External Deployment" means the + use, distribution, or communication of the Original Work or + Derivative Works in any way such that the Original Work or + Derivative Works may be used by anyone other than You, whether + those works are distributed or communicated to those persons or + made available as an application intended for use over a network. + As an express condition for the grants of license hereunder, You + must treat any External Deployment by You of the Original Work or + a Derivative Work as a distribution under section 1(c). + + 6. *Attribution Rights.* You must retain, in the Source Code of any + Derivative Works that You create, all copyright, patent, or + trademark notices from the Source Code of the Original Work, as + well as any notices of licensing and any descriptive text + identified therein as an "Attribution Notice." You must cause the + Source Code for any Derivative Works that You create to carry a + prominent Attribution Notice reasonably calculated to inform + recipients that You have modified the Original Work. + + 7. *Warranty of Provenance and Disclaimer of Warranty.* Licensor + warrants that the copyright in and to the Original Work and the + patent rights granted herein by Licensor are owned by the Licensor + or are sublicensed to You under the terms of this License with the + permission of the contributor(s) of those copyrights and patent + rights. Except as expressly stated in the immediately preceding + sentence, the Original Work is provided under this License on an + "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, + including, without limitation, the warranties of non-infringement, + merchantability or fitness for a particular purpose. THE ENTIRE + RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This + DISCLAIMER OF WARRANTY constitutes an essential part of this + License. No license to the Original Work is granted by this + License except under this disclaimer. + + 8. *Limitation of Liability.* Under no circumstances and under no + legal theory, whether in tort (including negligence), contract, or + otherwise, shall the Licensor be liable to anyone for any + indirect, special, incidental, or consequential damages of any + character arising as a result of this License or the use of the + Original Work including, without limitation, damages for loss of + goodwill, work stoppage, computer failure or malfunction, or any + and all other commercial damages or losses. This limitation of + liability shall not apply to the extent applicable law prohibits + such limitation. + + 9. *Acceptance and Termination.* If, at any time, You expressly + assented to this License, that assent indicates your clear and + irrevocable acceptance of this License and all of its terms and + conditions. If You distribute or communicate copies of the + Original Work or a Derivative Work, You must make a reasonable + effort under the circumstances to obtain the express assent of + recipients to the terms of this License. This License conditions + your rights to undertake the activities listed in Section 1, + including your right to create Derivative Works based upon the + Original Work, and doing so without honoring these terms and + conditions is prohibited by copyright law and international + treaty. Nothing in this License is intended to affect copyright + exceptions and limitations (including 'fair use' or 'fair + dealing'). This License shall terminate immediately and You may no + longer exercise any of the rights granted to You by this License + upon your failure to honor the conditions in Section 1(c). + + 10. *Termination for Patent Action.* This License shall terminate + automatically and You may no longer exercise any of the rights + granted to You by this License as of the date You commence an + action, including a cross-claim or counterclaim, against Licensor + or any licensee alleging that the Original Work infringes a + patent. This termination provision shall not apply for an action + alleging patent infringement by combinations of the Original Work + with other software or hardware. + + 11. *Jurisdiction, Venue and Governing Law.* Any action or suit + relating to this License may be brought only in the courts of a + jurisdiction wherein the Licensor resides or in which Licensor + conducts its primary business, and under the laws of that + jurisdiction excluding its conflict-of-law provisions. The + application of the United Nations Convention on Contracts for the + International Sale of Goods is expressly excluded. Any use of the + Original Work outside the scope of this License or after its + termination shall be subject to the requirements and penalties of + copyright or patent law in the appropriate jurisdiction. This + section shall survive the termination of this License. + + 12. *Attorneys' Fees.* In any action to enforce the terms of this + License or seeking damages relating thereto, the prevailing party + shall be entitled to recover its costs and expenses, including, + without limitation, reasonable attorneys' fees and costs incurred + in connection with such action, including any appeal of such + action. This section shall survive the termination of this License. + + 13. *Miscellaneous.* If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. + + 14. *Definition of "You" in This License.* "You" throughout this + License, whether in upper or lower case, means an individual or a + legal entity exercising rights under, and complying with all of + the terms of, this License. For legal entities, "You" includes any + entity that controls, is controlled by, or is under common control + with you. For purposes of this definition, "control" means (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. + + 15. *Right to Use.* You may use the Original Work in all ways not + otherwise restricted or conditioned by this License or by law, and + Licensor promises not to interfere with or be responsible for such + uses by You. + + 16. *Modification of This License.* This License is Copyright © 2007 + Zooko Wilcox-O'Hearn. Permission is granted to copy, distribute, + or communicate this License without modification. Nothing in this + License permits You to modify this License as applied to the + Original Work or to Derivative Works. However, You may modify the + text of this License and copy, distribute or communicate your + modified version (the "Modified License") and apply it to other + original works of authorship subject to the following conditions: + (i) You may not indicate in any way that your Modified License is + the "Transitive Grace Period Public Licence" or "TGPPL" and you + may not use those names in the name of your Modified License; and + (ii) You must replace the notice specified in the first paragraph + above with the notice "Licensed under " or with a notice of your + own that is not confusingly similar to the notice in this License. json: tgppl-1.0.json - yml: tgppl-1.0.yml + yaml: tgppl-1.0.yml html: tgppl-1.0.html - text: tgppl-1.0.LICENSE + license: tgppl-1.0.LICENSE - license_key: things-i-made-public-license + category: Permissive spdx_license_key: LicenseRef-scancode-things-i-made-public-license other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + THINGS I MADE (TIM) PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + Copyright (c) Marcus Crane + + 1. The author of this project would really like to hear any cool stuff you made + as a result of reusing this code. + + This is not enforceable but it is highly encouraged as it would make the author + happy. + + 2. If it breaks, the author may try to help if it's a neat bug but they aren't + obligated to provide support nor are they liable for any damages. + + 3. Beyond that, do whatever you feel like. json: things-i-made-public-license.json - yml: things-i-made-public-license.yml + yaml: things-i-made-public-license.yml html: things-i-made-public-license.html - text: things-i-made-public-license.LICENSE + license: things-i-made-public-license.LICENSE - license_key: thomas-bandt + category: Free Restricted spdx_license_key: LicenseRef-scancode-thomas-bandt other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "This Library is provided as is. No warrenty is expressed or implied.\n\nYou can use\ + \ these Library in free and commercial projects without a fee.\n\nNo charge should be made\ + \ for providing these Library to a third party.\n\nIt is allowed to modify the source to\ + \ fit your special needs. If you \nmade improvements you should make it public available\ + \ by sending us \nyour modifications or publish it on your site. If you publish it on \n\ + your own site you have to notify us. This is not a commitment that we \ninclude your modifications.\ + \ \n\nThis Copyright notice must be included in the modified source code.\n\nYou are not\ + \ allowed to build a commercial rewrite engine based on \nthis code." json: thomas-bandt.json - yml: thomas-bandt.yml + yaml: thomas-bandt.yml html: thomas-bandt.html - text: thomas-bandt.LICENSE + license: thomas-bandt.LICENSE - license_key: thor-pl + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-thor-pl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "THOR Public Licence (TPL)\n\n0. Notes of Origin\n\n0.1 As required by paragraph 6.3\ + \ of the \"Mozilla Public Licence\",\n\"MPL\" in the following, it is hereby stated that\ + \ this Licence\ncondition (\"TPL\") differs in the following items from the original\n\"\ + Mozilla Public Licence\" as provided by \"Netscape Communications\nCorporation\":\n\na)\ + \ Paragraphs 6.2 and 6.3 of the MPL has been modified to bind licence\nmodifications to\ + \ the Author of this Licence, Thomas Richter.\n\nb) Paragraph 11 has been modified to gover\ + \ this Licence by German\nlaw rather than Californian Law.\n\nc) The licence has been renamed\ + \ to \"TPL\" and \"THOR Public\nLicence\". All references towards \"MPL\" have been removed\ + \ except in\nsection 0 to indicate the difference from \"MPL\".\n\nNo other modifications\ + \ have been made.\n\n\n1. Definitions.\n\n1.0.1. \"Commercial Use\" means distribution or\ + \ otherwise making the\nCovered Code available to a third party.\n\n1.1. \"Contributor\"\ + \ means each entity that creates or contributes to\nthe creation of Modifications.\n\n1.2.\ + \ \"Contributor Version\" means the combination of the Original Code,\nprior Modifications\ + \ used by a Contributor, and the Modifications made\nby that particular Contributor.\n\n\ + 1.3. \"Covered Code\" means the Original Code or Modifications or the\ncombination of the\ + \ Original Code and Modifications, in each case\nincluding portions thereof.\n\n1.4. \"\ + Electronic Distribution Mechanism\" means a mechanism generally\naccepted in the software\ + \ development community for the electronic\ntransfer of data.\n\n1.5. \"Executable\" means\ + \ Covered Code in any form other than Source\nCode.\n\n1.6. \"Initial Developer\" means\ + \ the individual or entity identified as\nthe Initial Developer in the Source Code notice\ + \ required by Exhibit A.\n\n1.7. \"Larger Work\" means a work which combines Covered Code\ + \ or\nportions thereof with code not governed by the terms of this License.\n\n1.8. \"License\"\ + \ means this document.\n\n1.8.1. \"Licensable\" means having the right to grant, to the\ + \ maximum\nextent possible, whether at the time of the initial grant or\nsubsequently acquired,\ + \ any and all of the rights conveyed herein.\n\n1.9. \"Modifications\" means any addition\ + \ to or deletion from the\nsubstance or structure of either the Original Code or any previous\n\ + Modifications. When Covered Code is released as a series of files, a\nModification is: A.\ + \ Any addition to or deletion from the contents of a\nfile containing Original Code or previous\ + \ Modifications.\n\nB. Any new file that contains any part of the Original Code or\nprevious\ + \ Modifications.\n \n1.10. \"Original Code\" means Source Code of computer software code\n\ + which is described in the Source Code notice required by Exhibit A as\nOriginal Code, and\ + \ which, at the time of its release under this\nLicense is not already Covered Code governed\ + \ by this License.\n\n1.10.1. \"Patent Claims\" means any patent claim(s), now owned or\n\ + hereafter acquired, including without limitation, method, process, and\napparatus claims,\ + \ in any patent Licensable by grantor.\n\n1.11. \"Source Code\" means the preferred form\ + \ of the Covered Code for\nmaking modifications to it, including all modules it contains,\ + \ plus\nany associated interface definition files, scripts used to control\ncompilation\ + \ and installation of an Executable, or source code\ndifferential comparisons against either\ + \ the Original Code or another\nwell known, available Covered Code of the Contributor's\ + \ choice. The\nSource Code can be in a compressed or archival form, provided the\nappropriate\ + \ decompression or de-archiving software is widely available\nfor no charge.\n\n1.12. \"\ + You\" (or \"Your\") means an individual or a legal entity\nexercising rights under, and\ + \ complying with all of the terms of, this\nLicense or a future version of this License\ + \ issued under Section\n6.1. For legal entities, \"You\" includes any entity which controls,\ + \ is\ncontrolled by, or is under common control with You. For purposes of\nthis definition,\ + \ \"control\" means (a) the power, direct or indirect, to\ncause the direction or management\ + \ of such entity, whether by contract\nor otherwise, or (b) ownership of more than fifty\ + \ percent (50%) of the\noutstanding shares or beneficial ownership of such entity.\n\n2.\ + \ Source Code License.\n\n2.1. The Initial Developer Grant. The Initial Developer hereby\ + \ grants\nYou a world-wide, royalty-free, non-exclusive license, subject to\nthird party\ + \ intellectual property claims: (a) under intellectual\nproperty rights (other than patent\ + \ or trademark) Licensable by Initial\nDeveloper to use, reproduce, modify, display, perform,\ + \ sublicense and\ndistribute the Original Code (or portions thereof) with or without\nModifications,\ + \ and/or as part of a Larger Work; and\n\n(b) under Patents Claims infringed by the making,\ + \ using or selling of\nOriginal Code, to make, have made, use, practice, sell, and offer\ + \ for\nsale, and/or otherwise dispose of the Original Code (or portions\nthereof). \n\n\ + (c) the licenses granted in this Section 2.1(a) and (b) are effective\non the date Initial\ + \ Developer first distributes Original Code under\nthe terms of this License.\n\n(d) Notwithstanding\ + \ Section 2.1(b) above, no patent license is\ngranted: 1) for code that You delete from\ + \ the Original Code; 2)\nseparate from the Original Code; or 3) for infringements caused\ + \ by: i)\nthe modification of the Original Code or ii) the combination of the\nOriginal\ + \ Code with other software or devices.\n \n2.2. Contributor Grant. Subject to third party\ + \ intellectual property\nclaims, each Contributor hereby grants You a world-wide, royalty-free,\n\ + non-exclusive license\n \n(a) under intellectual property rights (other than patent or\n\ + trademark) Licensable by Contributor, to use, reproduce, modify,\ndisplay, perform, sublicense\ + \ and distribute the Modifications created\nby such Contributor (or portions thereof) either\ + \ on an unmodified\nbasis, with other Modifications, as Covered Code and/or as part of a\n\ + Larger Work; and\n\n(b) under Patent Claims infringed by the making, using, or selling of\n\ + Modifications made by that Contributor either alone and/or in\ncombination with its Contributor\ + \ Version (or portions of such\ncombination), to make, use, sell, offer for sale, have made,\ + \ and/or\notherwise dispose of: 1) Modifications made by that Contributor (or\nportions\ + \ thereof); and 2) the combination of Modifications made by\nthat Contributor with its Contributor\ + \ Version (or portions of such\ncombination).\n\n(c) the licenses granted in Sections 2.2(a)\ + \ and 2.2(b) are effective\non the date Contributor first makes Commercial Use of the Covered\n\ + Code.\n\n(d) Notwithstanding Section 2.2(b) above, no patent license is\ngranted: 1) for\ + \ any code that Contributor has deleted from the\nContributor Version; 2) separate from\ + \ the Contributor Version; 3) for\ninfringements caused by: i) third party modifications\ + \ of Contributor\nVersion or ii) the combination of Modifications made by that\nContributor\ + \ with other software (except as part of the Contributor\nVersion) or other devices; or\ + \ 4) under Patent Claims infringed by\nCovered Code in the absence of Modifications made\ + \ by that Contributor.\n\n\n3. Distribution Obligations.\n\n3.1. Application of License.\ + \ The Modifications which You create or to\nwhich You contribute are governed by the terms\ + \ of this License,\nincluding without limitation Section 2.2. The Source Code version of\n\ + Covered Code may be distributed only under the terms of this License\nor a future version\ + \ of this License released under Section 6.1, and\nYou must include a copy of this License\ + \ with every copy of the Source\nCode You distribute. You may not offer or impose any terms\ + \ on any\nSource Code version that alters or restricts the applicable version of\nthis License\ + \ or the recipients' rights hereunder. However, You may\ninclude an additional document\ + \ offering the additional rights\ndescribed in Section 3.5.\n\n3.2. Availability of Source\ + \ Code. Any Modification which You create\nor to which You contribute must be made available\ + \ in Source Code form\nunder the terms of this License either on the same media as an\n\ + Executable version or via an accepted Electronic Distribution\nMechanism to anyone to whom\ + \ you made an Executable version available;\nand if made available via Electronic Distribution\ + \ Mechanism, must\nremain available for at least twelve (12) months after the date it\n\ + initially became available, or at least six (6) months after a\nsubsequent version of that\ + \ particular Modification has been made\navailable to such recipients. You are responsible\ + \ for ensuring that\nthe Source Code version remains available even if the Electronic\n\ + Distribution Mechanism is maintained by a third party.\n\n3.3. Description of Modifications.\ + \ You must cause all Covered Code to\nwhich You contribute to contain a file documenting\ + \ the changes You\nmade to create that Covered Code and the date of any change. You must\n\ + include a prominent statement that the Modification is derived,\ndirectly or indirectly,\ + \ from Original Code provided by the Initial\nDeveloper and including the name of the Initial\ + \ Developer in (a) the\nSource Code, and (b) in any notice in an Executable version or related\n\ + documentation in which You describe the origin or ownership of the\nCovered Code.\n\n3.4.\ + \ Intellectual Property Matters (a) Third Party Claims. If\nContributor has knowledge that\ + \ a license under a third party's\nintellectual property rights is required to exercise\ + \ the rights\ngranted by such Contributor under Sections 2.1 or 2.2, Contributor\nmust include\ + \ a text file with the Source Code distribution titled\n\"LEGAL\" which describes the claim\ + \ and the party making the claim in\nsufficient detail that a recipient will know whom to\ + \ contact. If\nContributor obtains such knowledge after the Modification is made\navailable\ + \ as described in Section 3.2, Contributor shall promptly\nmodify the LEGAL file in all\ + \ copies Contributor makes available\nthereafter and shall take other steps (such as notifying\ + \ appropriate\nmailing lists or newsgroups) reasonably calculated to inform those who\n\ + received the Covered Code that new knowledge has been obtained.\n\n(b) Contributor APIs.\ + \ If Contributor's Modifications include an\napplication programming interface and Contributor\ + \ has knowledge of\npatent licenses which are reasonably necessary to implement that API,\n\ + Contributor must also include this information in the LEGAL file.\n \n(c) Representations.\ + \ Contributor represents that, except as disclosed\npursuant to Section 3.4(a) above, Contributor\ + \ believes that\nContributor's Modifications are Contributor's original creation(s)\nand/or\ + \ Contributor has sufficient rights to grant the rights conveyed\nby this License.\n\n\n\ + 3.5. Required Notices. You must duplicate the notice in Exhibit A in\neach file of the\ + \ Source Code. If it is not possible to put such\nnotice in a particular Source Code file\ + \ due to its structure, then You\nmust include such notice in a location (such as a relevant\ + \ directory)\nwhere a user would be likely to look for such a notice. If You\ncreated one\ + \ or more Modification(s) You may add your name as a\nContributor to the notice described\ + \ in Exhibit A. You must also\nduplicate this License in any documentation for the Source\ + \ Code where\nYou describe recipients' rights or ownership rights relating to\nCovered Code.\ + \ You may choose to offer, and to charge a fee for,\nwarranty, support, indemnity or liability\ + \ obligations to one or more\nrecipients of Covered Code. However, You may do so only on\ + \ Your own\nbehalf, and not on behalf of the Initial Developer or any\nContributor. You\ + \ must make it absolutely clear than any such warranty,\nsupport, indemnity or liability\ + \ obligation is offered by You alone,\nand You hereby agree to indemnify the Initial Developer\ + \ and every\nContributor for any liability incurred by the Initial Developer or\nsuch Contributor\ + \ as a result of warranty, support, indemnity or\nliability terms You offer.\n\n3.6. Distribution\ + \ of Executable Versions. You may distribute Covered\nCode in Executable form only if the\ + \ requirements of Section 3.1-3.5\nhave been met for that Covered Code, and if You include\ + \ a notice\nstating that the Source Code version of the Covered Code is available\nunder\ + \ the terms of this License, including a description of how and\nwhere You have fulfilled\ + \ the obligations of Section 3.2. The notice\nmust be conspicuously included in any notice\ + \ in an Executable version,\nrelated documentation or collateral in which You describe recipients'\n\ + rights relating to the Covered Code. You may distribute the Executable\nversion of Covered\ + \ Code or ownership rights under a license of Your\nchoice, which may contain terms different\ + \ from this License, provided\nthat You are in compliance with the terms of this License\ + \ and that the\nlicense for the Executable version does not attempt to limit or alter\n\ + the recipient's rights in the Source Code version from the rights set\nforth in this License.\ + \ If You distribute the Executable version under\na different license You must make it absolutely\ + \ clear that any terms\nwhich differ from this License are offered by You alone, not by\ + \ the\nInitial Developer or any Contributor. You hereby agree to indemnify\nthe Initial\ + \ Developer and every Contributor for any liability incurred\nby the Initial Developer or\ + \ such Contributor as a result of any such\nterms You offer.\n\n3.7. Larger Works. You\ + \ may create a Larger Work by combining Covered\nCode with other code not governed by the\ + \ terms of this License and\ndistribute the Larger Work as a single product. In such a case,\ + \ You\nmust make sure the requirements of this License are fulfilled for the\nCovered Code.\n\ + \n4. Inability to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to\ + \ comply with any of the terms of this\nLicense with respect to some or all of the Covered\ + \ Code due to\nstatute, judicial order, or regulation then You must: (a) comply with\nthe\ + \ terms of this License to the maximum extent possible; and (b)\ndescribe the limitations\ + \ and the code they affect. Such description\nmust be included in the LEGAL file described\ + \ in Section 3.4 and must\nbe included with all distributions of the Source Code. Except\ + \ to the\nextent prohibited by statute or regulation, such description must be\nsufficiently\ + \ detailed for a recipient of ordinary skill to be able to\nunderstand it.\n\n5. Application\ + \ of this License.\n\nThis License applies to code to which the Initial Developer has\n\ + attached the notice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n\ + \n6.1. New Versions. Thomas Richter may publish revised and/or new\nversions of the License\ + \ from time to time. Each version will be given\na distinguishing version number.\n\n6.2.\ + \ Effect of New Versions. Once Covered Code has been published\nunder a particular version\ + \ of the License, You may always continue to\nuse it under the terms of that version. You\ + \ may also choose to use\nsuch Covered Code under the terms of any subsequent version of\ + \ the\nLicense published by Thomas Richter. No one other than Thomas Richter\nhas the right\ + \ to modify the terms applicable to Covered Code created\nunder this License.\n\n6.3. Derivative\ + \ Works. If You create or use a modified version of\nthis License (which you may only do\ + \ in order to apply it to code which\nis not already Covered Code governed by this License),\ + \ You must (a)\nrename Your license so that the phrases \"TPL\", \"THOR Software\",\n\"\ + Thomas Richter\" or any confusingly similar phrase do not appear in\nyour license (except\ + \ to note that your license differs from this\nLicense) and (b) otherwise make it clear\ + \ that Your version of the\nlicense contains terms which differ from the THOR Public\nLicense.\ + \ (Filling in the name of the Initial Developer, Original Code\nor Contributor in the notice\ + \ described in Exhibit A shall not of\nthemselves be deemed to be modifications of this\ + \ License.)\n\n7. DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE\ + \ ON AN \"AS IS\" BASIS,\nWITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\n\ + WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF\nDEFECTS, MERCHANTABLE,\ + \ FIT FOR A PARTICULAR PURPOSE OR\nNON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND\ + \ PERFORMANCE OF\nTHE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE\n\ + IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER\nCONTRIBUTOR) ASSUME THE COST\ + \ OF ANY NECESSARY SERVICING, REPAIR OR\nCORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES\ + \ AN ESSENTIAL PART\nOF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER\n\ + EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n\n8.1. This License and the rights granted\ + \ hereunder will terminate\nautomatically if You fail to comply with terms herein and fail\ + \ to cure\nsuch breach within 30 days of becoming aware of the breach. All\nsublicenses\ + \ to the Covered Code which are properly granted shall\nsurvive any termination of this\ + \ License. Provisions which, by their\nnature, must remain in effect beyond the termination\ + \ of this License\nshall survive.\n\n8.2. If You initiate litigation by asserting a patent\ + \ infringement\nclaim (excluding declatory judgment actions) against Initial Developer\n\ + or a Contributor (the Initial Developer or Contributor against whom\nYou file such action\ + \ is referred to as \"Participant\") alleging that:\n\n(a) such Participant's Contributor\ + \ Version directly or indirectly\ninfringes any patent, then any and all rights granted\ + \ by such\nParticipant to You under Sections 2.1 and/or 2.2 of this License\nshall, upon\ + \ 60 days notice from Participant terminate prospectively,\nunless if within 60 days after\ + \ receipt of notice You either: (i) agree\nin writing to pay Participant a mutually agreeable\ + \ reasonable royalty\nfor Your past and future use of Modifications made by such\nParticipant,\ + \ or (ii) withdraw Your litigation claim with respect to\nthe Contributor Version against\ + \ such Participant. If within 60 days\nof notice, a reasonable royalty and payment arrangement\ + \ are not\nmutually agreed upon in writing by the parties or the litigation claim\nis not\ + \ withdrawn, the rights granted by Participant to You under\nSections 2.1 and/or 2.2 automatically\ + \ terminate at the expiration of\nthe 60 day notice period specified above.\n\n(b) any software,\ + \ hardware, or device, other than such Participant's\nContributor Version, directly or indirectly\ + \ infringes any patent, then\nany rights granted to You by such Participant under Sections\ + \ 2.1(b)\nand 2.2(b) are revoked effective as of the date You first made, used,\nsold, distributed,\ + \ or had made, Modifications made by that\nParticipant.\n\n8.3. If You assert a patent\ + \ infringement claim against Participant\nalleging that such Participant's Contributor Version\ + \ directly or\nindirectly infringes any patent where such claim is resolved (such as\nby\ + \ license or settlement) prior to the initiation of patent\ninfringement litigation, then\ + \ the reasonable value of the licenses\ngranted by such Participant under Sections 2.1 or\ + \ 2.2 shall be taken\ninto account in determining the amount or value of any payment or\n\ + license.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all\nend\ + \ user license agreements (excluding distributors and resellers)\nwhich have been validly\ + \ granted by You or any distributor hereunder\nprior to termination shall survive termination.\n\ + \n9. LIMITATION OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER\ + \ TORT\n(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL\nDEVELOPER,\ + \ ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,\nOR ANY SUPPLIER OF ANY OF\ + \ SUCH PARTIES, BE LIABLE TO ANY PERSON FOR\nANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL\ + \ DAMAGES OF ANY\nCHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,\n\ + WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\nCOMMERCIAL DAMAGES\ + \ OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\nINFORMED OF THE POSSIBILITY OF SUCH DAMAGES.\ + \ THIS LIMITATION OF\nLIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\n\ + RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\nPROHIBITS SUCH LIMITATION.\ + \ SOME JURISDICTIONS DO NOT ALLOW THE\nEXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL\ + \ DAMAGES, SO\nTHIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT\ + \ END USERS.\n\nThe Covered Code is a \"commercial item,\" as that term is defined in 48\n\ + C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer software\"\nand \"commercial\ + \ computer software documentation,\" as such terms are\nused in 48 C.F.R. 12.212 (Sept.\ + \ 1995). Consistent with 48\nC.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June\ + \ 1995),\nall U.S. Government End Users acquire Covered Code with only those\nrights set\ + \ forth herein.\n\n11. MISCELLANEOUS.\n\nThis License represents the complete agreement\ + \ concerning subject\nmatter hereof. If any provision of this License is held to be\nunenforceable,\ + \ such provision shall be reformed only to the extent\nnecessary to make it enforceable.\ + \ This License shall be governed by\nGerman law provisions (except to the extent applicable\ + \ law, if any,\nprovides otherwise), excluding its conflict-of-law provisions. With\nrespect\ + \ to disputes in which at least one party is a citizen of, or an\nentity chartered or registered\ + \ to do business in Federal Republic of\nGermany, any litigation relating to this License\ + \ shall be subject to\nthe jurisdiction of the Federal Courts of the Federal Republic of\n\ + Germany, with the losing party responsible for costs, including\nwithout limitation, court\ + \ costs and reasonable attorneys' fees and\nexpenses. Any law or regulation which provides\ + \ that the language of a\ncontract shall be construed against the drafter shall not apply\ + \ to\nthis License.\n\n12. RESPONSIBILITY FOR CLAIMS.\n\nAs between Initial Developer and\ + \ the Contributors, each party is\nresponsible for claims and damages arising, directly\ + \ or indirectly,\nout of its utilization of rights under this License and You agree to\n\ + work with Initial Developer and Contributors to distribute such\nresponsibility on an equitable\ + \ basis. Nothing herein is intended or\nshall be deemed to constitute any admission of liability.\n\ + \n13. MULTIPLE-LICENSED CODE.\n\nInitial Developer may designate portions of the Covered\ + \ Code as\nMultiple-Licensed. Multiple-Licensed means that the Initial Developer\npermits\ + \ you to utilize portions of the Covered Code under Your choice\nof the TPL or the alternative\ + \ licenses, if any, specified by the\nInitial Developer in the file described in Exhibit\ + \ A.\n\n\nEXHIBIT A - THOR Public License.\n\nThe contents of this file are subject to the\ + \ THOR Public License\nVersion 1.0 (the \"License\"); you may not use this file except in\n\ + compliance with the License. \n\nSoftware distributed under the License is distributed on\ + \ an \"AS IS\"\nbasis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See\nthe\ + \ License for the specificlanguage governing rights and limitations\nunder the License.\n\ + \nThe Original Code is ______________________________________.\n\nThe Initial Developer\ + \ of the Original Code is _____________. \n\nPortions created by ______________________\ + \ are \nCopyright (C) ______ _______________________. \n\nAll Rights Reserved.\n\nContributor(s):\ + \ ______________________________________.\n\nAlternatively, the contents of this file may\ + \ be used under the terms\nof the _____ license (the [___] License), in which case the provisions\n\ + of [______] License are applicable instead of those above. If you\nwish to allow use of\ + \ your version of this file only under the terms of\nthe [____] License and not to allow\ + \ others to use your version of this\nfile under the TPL, indicate your decision by deleting\ + \ the provisions\nabove and replace them with the notice and other provisions required\n\ + by the [___] License. If you do not delete the provisions above, a\nrecipient may use your\ + \ version of this file under either the TPL or\nthe [___] License.\"\n\n[NOTE: The text\ + \ of this Exhibit A may differ slightly from the text of\nthe notices in the Source Code\ + \ files of the Original Code. You should\nuse the text of this Exhibit A rather than the\ + \ text found in the\nOriginal Code Source Code for Your Modifications.]" json: thor-pl.json - yml: thor-pl.yml + yaml: thor-pl.yml html: thor-pl.html - text: thor-pl.LICENSE + license: thor-pl.LICENSE - license_key: ti-broadband-apps + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ti-broadband-apps other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "1. License - Texas Instruments (hereinafter \"TI\"), grants you a license \nto use\ + \ the software program and documentation in this package (\"Licensed \nMaterials\") for\ + \ Texas Instruments broadband products. \n \ + \ \n2. Restrictions - You may not reverse-assemble\ + \ or reverse-compile the \nLicensed Materials provided in object code or executable format.\ + \ You may\nnot sublicense, transfer, assign, rent, or lease the Licensed Materials \n\ + or this Agreement without written permission from TI. \n \ + \ \n3. Copyright - The Licensed\ + \ Materials are copyrighted. Accordingly, you \nmay either make one copy of the Licensed\ + \ Materials for backup and/or \narchival purposes or copy the Licensed Materials to\ + \ another medium and \nkeep the original Licensed Materials for backup and/or archival\ + \ purposes.\n \n\ + 4. Runtime and Applications Software - You may create modified or \nderivative programs\ + \ of software identified as Runtime Libraries or \nApplications Software, which, in\ + \ source code form, remain subject to this\nAgreement, but object code versions of such\ + \ derivative programs are not \nsubject to this Agreement. \ + \ \n \ + \ \n5. Warranty - TI warrants the media to be free from defects in material \nand\ + \ workmanship and that the software will substantially conform to the \nrelated documentation\ + \ for a period of ninety (90) days after the date of \nyour purchase. TI does not warrant\ + \ that the Licensed Materials will be \nfree from error or will meet your specific requirements.\ + \ \n \ + \ \n6. Remedies - If you find defects in the media or that the software does \nnot\ + \ conform to the enclosed documentation, you may return the Licensed \nMaterials along\ + \ with the purchase receipt, postage prepaid, to the \nfollowing address within the\ + \ warranty period and receive a refund. \t\n \ + \ \nTEXAS INSTRUMENTS \ + \ \nApplication Specific Products, MS 8650 \ + \ \nc/o ADAM2 Application Manager \ + \ \n12500 TI Boulevard \nDallas,\ + \ TX 75243 - U.S.A. \n \ + \ \n7. Limitations - TI makes no warranty\ + \ or condition, either expressed or \nimplied, including, but not limited to, any implied\ + \ warranties of \nmerchantability and fitness for a particular purpose, regarding\ + \ the \nlicensed materials. \n\ + \ \nNeither TI nor\ + \ any applicable licensor will be liable for any indirect, \nincidental or consequential\ + \ damages, including but not limited to loss of\nprofits. \ + \ \n \ + \ \n8. Term - The license is effective until terminated. You may\ + \ terminate \nit at any other time by destroying the program together with all copies, \n\ + modifications and merged portions in any form. It also will terminate if \nyou fail to comply\ + \ with any term or condition of this Agreement. \n \ + \ \n9. Export Control - The re-export of United\ + \ States origin software and \ndocumentation is subject to the U.S. Export Administration\ + \ Regulations or\nyour equivalent local regulations. Compliance with such regulations is\ + \ \nyour responsibility. \n \ + \ \n \ + \ *** IMPORTANT NOTICE *** \n \ + \ \nTexas Instruments (TI) reserves the right\ + \ to make changes to or to \ndiscontinue any semiconductor product or service identified\ + \ in this \npublication without notice. TI advises its customers to obtain the latest\n\ + version of the relevant information to verify, before placing orders, \nthat the information\ + \ being relied upon is current. \n \ + \ \nTI warrants performance of its semiconductor\ + \ products and related \nsoftware to current specifications in accordance with TI's\ + \ standard \nwarranty. Testing and other quality control techniques are utilized to\ + \ \nthe extent TI deems necessary to support this warranty. Unless mandated \nby government\ + \ requirements, specific testing of all parameters of each \ndevice is not necessarily\ + \ performed. \n \ + \ \nPlease be aware that Texas Instruments products\ + \ are not intended for use \nin life-support appliances, devices, or systems. Use of a TI\ + \ product in \nsuch applications without the written approval of the appropriate TI \ + \ \nofficer is prohibited. Certain applications using semiconductor devices \nmay involve\ + \ potential risks of injury, property damage, or loss of life. \nIn order to minimize these\ + \ risks, adequate design and operating \nsafeguards should be provided by the customer\ + \ to minimize inherent or \nprocedural hazards. Inclusion of TI products in such applications\ + \ is \nunderstood to be fully at the risk of the customer using TI devices or \nsystems.\ + \ \n \ + \ \nTI assumes no liability for TI\ + \ applications assistance, customer product \ndesign, software performance, or infringement\ + \ of patents or services \ndescribed herein. Nor does TI warrant or represent that license,\ + \ either \nexpressed or implied, is granted under any patent right, copyright, mask \n\ + work right, or other intellectual property right of TI covering or \nrelating to any\ + \ combination, machine, or process in which such \nsemiconductor products or services\ + \ might be or are used. \n \ + \ \nAll company and/or product names are trademarks and/or registered\ + \ \ntrademarks of their respective manaufacturers." json: ti-broadband-apps.json - yml: ti-broadband-apps.yml + yaml: ti-broadband-apps.yml html: ti-broadband-apps.html - text: ti-broadband-apps.LICENSE + license: ti-broadband-apps.LICENSE - license_key: ti-linux-firmware + category: Proprietary Free spdx_license_key: LicenseRef-scancode-ti-linux-firmware other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Limited License.\n\nTexas Instruments Incorporated grants a world-wide, royalty-free,\ + \ non-exclusive\nlicense under copyrights and patents it now or hereafter owns or controls\ + \ to\nmake, have made, use, import, offer to sell and sell (\"Utilize\") this software\n\ + subject to the terms herein. With respect to the foregoing patent license,\nsuch license\ + \ is granted solely to the extent that any such patent is necessary\nto Utilize the software\ + \ alone. The patent license shall not apply to any\ncombinations which include this software,\ + \ other than combinations with devices\nmanufactured by or for TI (“TI Devices”). No hardware\ + \ patent is licensed\nhereunder.\n\nRedistributions must preserve existing copyright notices\ + \ and reproduce this\nlicense (including the above copyright notice and the disclaimer and\ + \ (if\napplicable) source code license limitations below) in the documentation and/or\n\ + other materials provided with the distribution\n\nRedistribution and use in binary form,\ + \ without modification, are permitted\nprovided that the following conditions are met:\n\ + \n*\tNo reverse engineering, decompilation, or disassembly of this software\n\tis permitted\ + \ with respect to any software provided in binary form.\n\n*\tany redistribution and use\ + \ are licensed by TI for use only with TI\n\tDevices.\n\n*\tNothing shall obligate TI to\ + \ provide you with source code for the\n\tsoftware licensed and provided to you in object\ + \ code.\n\nIf software source code is provided to you, modification and redistribution of\n\ + the source code are permitted provided that the following conditions are met:\n\n*\tany\ + \ redistribution and use of the source code, including any resulting\n\tderivative works,\ + \ are licensed by TI for use only with TI Devices.\n\n*\tany redistribution and use of any\ + \ object code compiled from the source\n\tcode and any resulting derivative works, are licensed\ + \ by TI for use\n\tonly with TI Devices.\n\nNeither the name of Texas Instruments Incorporated\ + \ nor the names of its\nsuppliers may be used to endorse or promote products derived from\ + \ this software\nwithout specific prior written permission.\n\nDISCLAIMER.\n\nTHIS SOFTWARE\ + \ IS PROVIDED BY TI AND TI’S LICENSORS \"AS IS\" AND ANY EXPRESS OR\nIMPLIED WARRANTIES,\ + \ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS\ + \ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO\nEVENT SHALL TI AND TI’S LICENSORS BE LIABLE\ + \ FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\ + \ BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n\ + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER\ + \ IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN\ + \ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE." json: ti-linux-firmware.json - yml: ti-linux-firmware.yml + yaml: ti-linux-firmware.yml html: ti-linux-firmware.html - text: ti-linux-firmware.LICENSE + license: ti-linux-firmware.LICENSE - license_key: ti-restricted + category: Commercial spdx_license_key: LicenseRef-scancode-ti-restricted other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Permission is hereby granted to licensees of Texas Instruments\nIncorporated (TI) products\ + \ to use this computer program for the sole\npurpose of implementing a licensee product\ + \ based on TI products.\nNo other rights to reproduce, use, or disseminate this computer\ + \ \nprogram, whether in part or in whole, are granted.\n\nTI makes no representation or\ + \ warranties with respect to the\nperformance of this computer program, and specifically\ + \ disclaims\nany responsibility for any damages, special or consequential, \nconnected with\ + \ the use of this program." json: ti-restricted.json - yml: ti-restricted.yml + yaml: ti-restricted.yml html: ti-restricted.html - text: ti-restricted.LICENSE + license: ti-restricted.LICENSE - license_key: tidy + category: Permissive spdx_license_key: HTMLTIDY other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The contributing author(s) would like to thank all those who helped with testing,\n\ + bug fixes and suggestions for improvements. This wouldn't have been possible without your\ + \ help.\n\nCOPYRIGHT NOTICE:\n\nThis software and documentation is provided \"as is,\" and\ + \ the copyright holders\nand contributing author(s) make no representations or warranties,\ + \ express or\nimplied, including but not limited to, warranties of merchantability or fitness\n\ + for any particular purpose or that the use of the software or documentation will\nnot infringe\ + \ any third party patents, copyrights, trademarks or other rights.\n\nThe copyright holders\ + \ and contributing author(s) will not be held liable for any\ndirect, indirect, special\ + \ or consequential damages arising out of any use of the\nsoftware or documentation, even\ + \ if advised of the possibility of such damage.\nPermission is hereby granted to use, copy,\ + \ modify, and distribute this source\ncode, or portions hereof, documentation and executables,\ + \ for any purpose,\nwithout fee, subject to the following restrictions:\n\n1. The origin\ + \ of this source code must not be misrepresented. \n\n2. Altered versions must be plainly\ + \ marked as such and must\nnot be misrepresented as being the original source. \n\n3. This\ + \ Copyright notice may not be removed or altered from any\nsource or altered source distribution.\n\ + \nThe copyright holders and contributing author(s) specifically permit, without\nfee, and\ + \ encourage the use of this source code as a component for supporting the\nHypertext Markup\ + \ Language in commercial products. If you use this source code in\na product, acknowledgment\ + \ is not required but would be appreciated." json: tidy.json - yml: tidy.yml + yaml: tidy.yml html: tidy.html - text: tidy.LICENSE + license: tidy.LICENSE - license_key: tiger-crypto + category: Permissive spdx_license_key: LicenseRef-scancode-tiger-crypto other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Tiger Cryptography\n\nThis code comes from the reference implementation of the Tiger\ + \ cryptographic hash function. The only modification made is to pull out the data types\ + \ and the api into a header file (this file, tiger.h). The reference implementation is available\ + \ at:\n\nhttp://www.cs.technion.ac.il/~biham/Reports/Tiger/\n\nFrom that page: \nTiger has\ + \ no usage restrictions nor patents. It can be used freely, with the reference implementation,\ + \ with other implementations or with a modification to the reference implementation (as\ + \ long as it still implements Tiger). We only ask you to let us know about your implementation\ + \ and to cite the origin of Tiger and of the reference implementation." json: tiger-crypto.json - yml: tiger-crypto.yml + yaml: tiger-crypto.yml html: tiger-crypto.html - text: tiger-crypto.LICENSE + license: tiger-crypto.LICENSE - license_key: tigra-calendar-3.2 + category: Permissive spdx_license_key: LicenseRef-scancode-tigra-calendar-3.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Tigra Calendar v3.2 License \n\nPermission given to use this script in ANY kind of\ + \ applications if header lines are left unchanged." json: tigra-calendar-3.2.json - yml: tigra-calendar-3.2.yml + yaml: tigra-calendar-3.2.yml html: tigra-calendar-3.2.html - text: tigra-calendar-3.2.LICENSE + license: tigra-calendar-3.2.LICENSE - license_key: tigra-calendar-4.0 + category: Permissive spdx_license_key: LicenseRef-scancode-tigra-calendar-4.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Tigra Calendar v4.0 License \nhttp://www.javascript-calendar.com/docs/#license\n\n\ + 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\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY\ + \ OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\ + \ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\ + \ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\ + \ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE\ + \ OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." json: tigra-calendar-4.0.json - yml: tigra-calendar-4.0.yml + yaml: tigra-calendar-4.0.yml html: tigra-calendar-4.0.html - text: tigra-calendar-4.0.LICENSE + license: tigra-calendar-4.0.LICENSE - license_key: tim-janik-2003 + category: Permissive spdx_license_key: LicenseRef-scancode-tim-janik-2003 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This software is provided "as is"; redistribution and modification + is permitted, provided that the following disclaimer is retained. + + This software 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. + In no event shall the authors or contributors be liable for any + direct, indirect, incidental, special, exemplary, or consequential + damages (including, but not limited to, procurement of substitute + goods or services; loss of use, data, or profits; or business + interruption) however caused and on any theory of liability, whether + in contract, strict liability, or tort (including negligence or + otherwise) arising in any way out of the use of this software, even + if advised of the possibility of such damage. json: tim-janik-2003.json - yml: tim-janik-2003.yml + yaml: tim-janik-2003.yml html: tim-janik-2003.html - text: tim-janik-2003.LICENSE + license: tim-janik-2003.LICENSE - license_key: timestamp-picker + category: Permissive spdx_license_key: LicenseRef-scancode-timestamp-picker other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission given to use this script in any kind of applications if header lines + are left unchanged. Feel free to contact the author for feature requests and/or + donations. json: timestamp-picker.json - yml: timestamp-picker.yml + yaml: timestamp-picker.yml html: timestamp-picker.html - text: timestamp-picker.LICENSE + license: timestamp-picker.LICENSE - license_key: tizen-sdk + category: Proprietary Free spdx_license_key: LicenseRef-scancode-tizen-sdk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Tizen SDK License Agreement\nTIZEN SOFTWARE DEVELOPMENT KIT (\"SDK\") LICENSE AGREEMENT\n\ + \nBEFORE YOU (\"YOU\" OR \"LICENSEE\") USE THE TIZEN SDK, PLEASE READ ALL OF THE TERMS AND\ + \ CONDITIONS SET OUT IN THIS TIZEN SOFTWARE DEVELOPMENT KIT LICENSE AGREEMENT (\"AGREEMENT\"\ + ) CAREFULLY. YOUR USE OF THE TIZEN SDK IS SUBJECT TO THE TERMS AND CONDITIONS SET FORTH\ + \ IN THIS AGREEMENT. BY CLICKING THE \"I AGREE\" BUTTON OR BY USING ANY PART OF THE TIZEN\ + \ SDK, YOU AGREE (ON BEHALF OF YOURSELF AND/OR YOUR COMPANY) TO THE TERMS AND CONDITIONS\ + \ OF THIS AGREEMENT, WHICH THEN COMMENCES WITH EFFECT AS A LEGAL AGREEMENT BETWEEN YOU AND\ + \ SAMSUNG. IF YOU DO NOT OR CANNOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT,\ + \ YOU MUST NOT DOWNLOAD OR USE THE TIZEN SDK.\n\nIMPORTANT NOTE: This license is primarily\ + \ applicable to several proprietary components, which are not open sourced. If applicable,\ + \ the Open Source Software license shall take precedence over the rights and restrictions\ + \ granted in this Agreement, but solely with respect to such Open Source Software.\n\n1.\ + \ Definitions.\n\n1.1 \"Affiliate\" means an entity that, directly or indirectly, controls,\ + \ is controlled by, or is under common control with a party to this Agreement, but only\ + \ for so long as such control exists, and where \"control\" shall mean ownership of more\ + \ than 50% of the stock or other equity interests entitled to vote for the election of directors\ + \ or an equivalent governing body.\n\n1.2 \"Open Source Software\" includes, without limitation,\ + \ a software license that requires as a condition of use, modification, and/or distribution\ + \ of such software that such software or other software incorporated into, derived from\ + \ or distributed with such software be (a) disclosed or distributed in source code form;\ + \ (b) be licensed for the purpose of making derivative works; or (c) be redistributable\ + \ at no charge.\n\n1.3 \"Tizen SDK\" includes the documentation, software, both source code\ + \ and object code, sample applications, emulator, tools, libraries, APIs, data, and materials\ + \ provided by Samsung to You for use in connection with Your application development, and\ + \ includes any updates that may be provided by Samsung.\n\n1.4 \"Tizen Certified Platform\"\ + \ shall mean a software platform that complies with the standards set forth in the Tizen\ + \ Compliance Specification and passes the Tizen Compliance Tests as defined from time to\ + \ time by the Tizen Technical Steering Group and certified by the Tizen Association or its\ + \ designated agent.\n\n1.5 \"Tizen Applications\" means all applications that are developed\ + \ by using the Tizen SDK with or without extensions and can run only on the Tizen Certified\ + \ Platform.\n\n1.6 \"You\" (or \"Your\") shall mean an individual or Legal Entity exercising\ + \ permissions granted by this License.\n\n2. License Grant.\n\n2.1 Subject to the terms\ + \ and conditions of this Agreement, Samsung hereby grants to You a royalty-free, non-exclusive,\ + \ non-transferable and worldwide license to use for the sole purpose of the development\ + \ of Tizen Applications.\n\n3. Restrictions.\n\n3.1 Except for the limited license granted\ + \ to You herein, You agree that all right, title and interest in and to the Tizen SDK including\ + \ the concepts and technology inherent in them, Samsung or Tizen trademarks, copyrights,\ + \ patents, trade secrets and other intellectual property rights, are, and at all times shall\ + \ remain, the sole and exclusive property of Samsung. Except to the extent permitted under\ + \ this Agreement or by applicable law, You shall not (i) modify, reverse engineer or disassemble\ + \ any portion of the Tizen SDK; (ii) lease, rent, copy, redistribute or sublicense the Tizen\ + \ SDK to third party; or (iii) remove, efface or obscure any copyright notices, logos or\ + \ other proprietary notices or legends included in the Tizen SDK. You may not use any component\ + \ part of the Tizen SDK in any way independent from the Tizen SDK. You may not load or install\ + \ any of the Tizen SDK onto mobile phones or any other devices, except a personal computer.\n\ + \n3.2 Samsung may extend, enhance, or otherwise modify the Tizen SDK at any time without\ + \ notice. If updates are made available by Samsung, the terms of this Agreement will govern\ + \ such updates, unless the update is accompanied by a separate license, in which case the\ + \ terms of that license will govern. Samsung is not obligated to provide any maintenance,\ + \ technical or other support for the Tizen SDK. You acknowledge that Samsung has no express\ + \ or implied obligation to announce or make available any updates to the Tizen SDK.\n\n\ + 4. Use of the Tizen SDK. \n\n4.1 Your Applications must not (i) breach any applicable laws,\ + \ regulations or generally accepted practices or guidelines in the applicable jurisdictions;\ + \ (ii) contain any material, component or code which could damage, destroy, unduly burden\ + \ or unreasonably affect software, firmware, hardware, data, systems, services, or networks;\ + \ or (iii) disable, hack or otherwise interfere with any authentication, content protection,\ + \ digital signing, digital rights management, security or verification mechanisms implemented\ + \ in or by the Tizen Certified platform.\n\n4.2 Your Applications must not breach any applicable\ + \ laws, regulations or generally accepted practices or guidelines in the applicable jurisdictions\ + \ or disable, unduly burden or unreasonably interfere with software, firmware, hardware,\ + \ data, systems, services, or networks. \n\n4.3 You agree that You are solely liable for\ + \ any breach of your obligations under this Agreement or any applicable laws or regulations,\ + \ and for the consequences of any such breach.\n\n5. Open Source Software.\n\n5.1 You hereby\ + \ acknowledge that the Tizen SDK may contain Open Source Software. You agree to review any\ + \ documentation that accompanies the Tizen SDK in order to determine which portions of the\ + \ Tizen SDK are Open Source Software and are licensed under an Open Source Software license.\ + \ To the extent any such license requires that Samsung provides Developer the rights to\ + \ copy, modify, distribute or otherwise use any Open Source Software that are inconsistent\ + \ with the limited rights granted to You in this Agreement, then such rights in the applicable\ + \ Open Source Software license shall take precedence over the rights and restrictions granted\ + \ in this Agreement, but solely with respect to such Open Source Software. \n\n5.2 You acknowledge\ + \ that the Open Source Software license is solely between You and the applicable Open Source\ + \ Software. You shall comply with the terms of all applicable Open Source Software licenses,\ + \ if any.\n\n6. DISCLAIMER OF WARRANTY.\n\n6.1 THE TIZEN SDK IS PROVIDED \"AS IS\" WITHOUT\ + \ WARRANTY OF ANY KIND. SAMSUNG OR TIZEN PARTNERS DO NOT WARRANT THAT THE USE OF THE TIZEN\ + \ SDK WILL NOT INFRINGE ANY THIRD PARTY'S INTELLECTUAL PROPERTY RIGHTS. NEITHER SAMSUNG\ + \ NOR TIZEN PARTNERS WARRANT THAT THE TIZEN SDK IS ERROR FREE. SAMSUNG OR TIZEN PARTNERS\ + \ MAKE NO WARRANTIES, EXPRESS OR IMPLIED, WITH RESPECT TO THE TIZEN SDK, INCLUDING BUT NOT\ + \ LIMITED TO ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE OR AGAINST\ + \ INFRINGEMENT, OR ANY EXPRESS OR IMPLIED WARRANTY ARISING OUT OF TRADE USAGE OR OUT OF\ + \ A COURSE OF DEALING OR COURSE OF PERFORMANCE. NO INFORMATION OR ADVICE GIVEN BY SAMSUNG\ + \ OR ITS AGENTS, EMPLOYEES, OR REPRESENTATIVES, WHETHER ORAL OR WRITTEN, SHALL CREATE ANY\ + \ REPRESENTATION OR WARRANTY.\n\n6.2 TO THE EXTENT PERMITTED BY LAW, IN NO EVENT SHALL SAMSUNG\ + \ OR TIZEN PARTNERS BE LIABLE FOR PERSONAL INJURY OR ANY INCIDENTAL, SPECIAL, INDIRECT OR\ + \ CONSEQUENTIAL DAMAGES WHATSOEVER, OR FOR LOSS OF PROFITS, LOSS OF DATA, BUSINESS INTERRUPTION,\ + \ OR FOR ANY PECUNIARY DAMAGES OR LOSSES, ARISING OUT OF OR RELATED TO YOUR GRANT OF LICENSE\ + \ HEREIN, OR INABILITY TO USE THE TIZEN SDK, THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT\ + \ OR OTHER SERVICES, INFORMATION, SOFTWARE, AND RELATED CONTENT THROUGH THE SOFTWARE OR\ + \ OTHERWISE ARISING OUT OF THE USE OF THE TIZEN SDK, OR OTHERWISE UNDER OR IN CONNECTION\ + \ WITH ANY PROVISION OF THIS AGREEMENT, HOWEVER CAUSED, REGARDLESS OF THE THEORY OF LIABILITY\ + \ (CONTRACT, TORT OR OTHERWISE) AND EVEN IF THE SAMSUNG BEEN ADVISED OF THE POSSIBILITY\ + \ OF SUCH DAMAGES.\n\n7. Indemnification.\n\n7.1 You agree to indemnify, defend and hold\ + \ harmless Samsung, including their Affiliates, from any claims, damages, liabilities, losses,\ + \ costs, suits or expenditures incurred by Samsung, including their Affiliates as a result\ + \ of any infringement or alleged infringement of intellectual property rights of a third\ + \ party caused by Your development or exploitation of Applications.\n\n8. Confidentiality.\n\ + \n8.1 You acknowledge and agree that the Tizen SDK was developed at considerable time and\ + \ expense by Samsung and contains valuable trade secrets and confidential information of\ + \ Samsung. Accordingly, You agree to maintain the Tizen SDK in confidence and except as\ + \ expressly provided in Section 2, You (i) will not disclose or provide access thereto to\ + \ any person, or (ii) use the Tizen SDK for any purpose not expressly authorized hereby,\ + \ or permit or authorize any other person to do so.\n\n8.2 The restriction herein shall\ + \ not apply to the extent that such information is in the public domain or hereafter falls\ + \ into the public domain through no fault of You. Any combination of trade secrets and information\ + \ of Samsung that forms part of the Tizen SDK shall not be deemed to be public merely because\ + \ individual parts of the Tizen SDK are in the public domain, unless the combination itself\ + \ is in the public domain.\n\n9. Term and Termination.\n\n9.1 Term. The term of this Agreement\ + \ shall commence as of your acceptance of the terms of this Agreement or your use of the\ + \ Tizen SDK and continue until terminated by either You or Samsung.\n\n9.2 Termination.\ + \ You may terminate this Agreement simply by ceasing Your use of the Tizen SDK. Samsung\ + \ may terminate this Agreement (i) at any time for any or no reason upon 30 days prior written\ + \ notice to you or (ii) immediately upon written notice to You if You have materially breached\ + \ this Agreement.\n\n9.3 Effect of Termination. Upon termination of this Agreement: (a)\ + \ all license rights granted in this Agreement will terminate; (b) You shall promptly stop\ + \ the distribution of the Tizen SDK and destroy all electronic copies of the Tizen SDK and/or\ + \ return the Tizen SDK to Samsung. The Sections entitled Restrictions, Use of the Tizen\ + \ SDK, Open Source Software, Disclaimer of Warranty, Indemnification, Confidentiality, Term\ + \ and Termination and General Legal Terms shall survive the expiration or termination of\ + \ this Agreement for any reason.\n\n10. General Legal Terms.\n\n10.1 Export Compliance.\ + \ You are responsible for applying for and obtaining all export and import licenses and/or\ + \ authorizations related to the Tizen SDK or Applications, including without limitation\ + \ all such licenses and authorizations required by any and all governmental bodies and/or\ + \ regulatory agency.\n\n10.2 Assignment. You may not assign the Agreement, in whole or in\ + \ part, by operation of law or otherwise, without Samsung’s prior written consent, and any\ + \ attempt to do so without such consent shall be void.\n\n10.3 Governing Law; Venue. This\ + \ Agreement shall be governed by and construed in accordance with the laws of the State\ + \ of New York, USA, without regard to any conflict-of-laws rules. Any and all disputes in\ + \ connection with or arising out of this Agreement shall be finally settled by arbitration.\ + \ The arbitration shall be held in New York City, New York, USA in accordance with the Rules\ + \ of Arbitration of the International Chamber of Commerce by one or more arbitrator(s) appointed\ + \ in accordance with the said rules. The arbitration award rendered by the arbitrator(s)\ + \ shall be final and binding.\n\n10.4 Amendments and No Waiver. This Agreement may be modified\ + \ without notice. The failure by Samsung or You to insist upon strict performance of any\ + \ of the provisions contained in this Agreement shall in no way constitute a waiver of its\ + \ rights as set forth in this Agreement, at law or in equity, or a waiver of any other provisions\ + \ or subsequent default by the other party in the performance or compliance with any of\ + \ the terms and conditions set forth in this Agreement.\n\n10.5 Entire Agreement. This Agreement\ + \ contains the entire agreement of You and Samsung with respect to its subject matter and\ + \ supersedes all existing agreements and all other oral, written or other communications\ + \ between the You and Samsung concerning this subject matter. If any of the provisions of\ + \ the Agreement is determined to be invalid, illegal or otherwise unenforceable, such provision\ + \ shall be deemed replaced by a provision which carries out the original intent and purpose\ + \ of such provision to the greatest extent lawful and the remaining provisions shall remain\ + \ in full force and effect.\n\nLast Updated April, 2013\n\nEND OF TIZEN SOFTWARE DEVELOPMENT\ + \ KIT(\"SDK\") LICENSE AGREEMENT" json: tizen-sdk.json - yml: tizen-sdk.yml + yaml: tizen-sdk.yml html: tizen-sdk.html - text: tizen-sdk.LICENSE + license: tizen-sdk.LICENSE - license_key: tmate + category: Copyleft spdx_license_key: TMate other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "This license applies to all portions of TMate SVNKit library, which \nare not externally-maintained\ + \ libraries (e.g. Ganymed SSH library).\n\nAll the source code and compiled classes in package\ + \ org.tigris.subversion.javahl\nexcept SvnClient class are covered by the license in JAVAHL-LICENSE\ + \ file\n\nCopyright (c) 2004-2009 TMate Software. All rights reserved.\n\nRedistribution\ + \ and use in source and binary forms, with or without modification, \nare permitted provided\ + \ that the following conditions are met:\n\n * Redistributions of source code must retain\ + \ the above copyright notice, \n this list of conditions and the following disclaimer.\n\ + \ \n * Redistributions in binary form must reproduce the above copyright notice,\ + \ \n this list of conditions and the following disclaimer in the documentation \n \ + \ and/or other materials provided with the distribution.\n \n * Redistributions\ + \ in any form must be accompanied by information on how to \n obtain complete source\ + \ code for the software that uses SVNKit and any \n accompanying software that uses\ + \ the software that uses SVNKit. The source \n code must either be included in the\ + \ distribution or be available for no \n more than the cost of distribution plus a\ + \ nominal fee, and must be freely \n redistributable under reasonable conditions. For\ + \ an executable file, complete \n source code means the source code for all modules\ + \ it contains. It does not \n include source code for modules or files that typically\ + \ accompany the major \n components of the operating system on which the executable\ + \ file runs.\n \n * Redistribution in any form without redistributing source code\ + \ for software \n that uses SVNKit is possible only when such redistribution is explictly\ + \ permitted \n by TMate Software. Please, contact TMate Software at support@svnkit.com\ + \ to \n get such permission.\n\nTHIS SOFTWARE IS PROVIDED BY TMATE SOFTWARE ``AS IS''\ + \ AND ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\ + \ OF \nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE \nDISCLAIMED.\ + \ \n\nIN NO EVENT SHALL TMATE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, \nINCIDENTAL,\ + \ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT \nLIMITED TO, PROCUREMENT\ + \ OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR \nPROFITS; OR BUSINESS INTERRUPTION)\ + \ HOWEVER CAUSED AND ON ANY THEORY OF \nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\ + \ OR TORT (INCLUDING NEGLIGENCE \nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\ + \ SOFTWARE, EVEN IF \nADVISED OF THE POSSIBILITY OF SUCH DAMAGE." json: tmate.json - yml: tmate.yml + yaml: tmate.yml html: tmate.html - text: tmate.LICENSE + license: tmate.LICENSE - license_key: torque-1.1 + category: Copyleft Limited spdx_license_key: TORQUE-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + TORQUE v2.5+ Software License v1.1 + Copyright (c) 2010-2011 Adaptive Computing Enterprises, Inc. All rights reserved. + + Use this license to use or redistribute the TORQUE software v2.5+ and later versions. For free support for TORQUE users, questions should be emailed to the community of TORQUE users at torqueusers@supercluster.org. Users can also subscribe to the user mailing list at http://www.supercluster.org/mailman/listinfo/torqueusers. Customers using TORQUE that also are licensed users of Moab branded software from Adaptive Computing Inc. can get TORQUE support from Adaptive Computing via: + Email: torque-support@adaptivecomputing.com. + Phone: (801) 717-3700 + Web: www.adaptivecomputing.com www.clusterresources.com + + This license covers use of the TORQUE v2.5 software (the "Software") at your site or location, and, for certain users, redistribution of the Software to other sites and locations1. Later versions of TORQUE are also covered by this license. Use and redistribution of TORQUE v2.5 in source and binary forms, with or without modification, are permitted provided that all of the following conditions are met. + + 1. Any Redistribution of source code must retain the above copyright notice and the acknowledgment contained in paragraph 5, this list of conditions and the disclaimer contained in paragraph 5. + + 2. Any Redistribution in binary form must reproduce the above copyright notice and the acknowledgment contained in paragraph 4, this list of conditions and the disclaimer contained in paragraph 5 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 TORQUE and any modifications and/or additions to TORQUE. 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 all modifications and additions to the Software must be freely redistributable by any party (including Licensor) without restriction. + + 4. All advertising materials mentioning features or use of the Software must display the following acknowledgment: + "TORQUE is a modification of OpenPBS which was developed by NASA Ames Research Center, Lawrence Livermore National Laboratory, and Veridian TORQUE Open Source License v1.1. 1 Information Solutions, Inc. Visit www.clusterresources.com/products/ for more information about TORQUE and to download TORQUE. For information about Moab branded products and so receive support from Adaptive Computing for TORQUE, see www.adaptivecomputing.com." + + 5. DISCLAIMER OF WARRANTY THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT ARE EXPRESSLY DISCLAIMED. IN NO EVENT SHALL ADAPTIVE COMPUTING ENTERPRISES, INC. CORPORATION, ITS AFFILIATED COMPANIES, OR THE U.S. GOVERNMENT OR ANY OF ITS AGENCIES BE LIABLE FOR ANY DIRECT OR INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + This license will be governed by the laws of Utah, without reference to its choice of law rules. + + Note 1: TORQUE is developed from an earlier version v2.3 of OpenPBS. TORQUE has been developed beyond OpenPBS v2.3. The OpenPBS v2.3 license and OpenPBS software can be obtained at: + http://www.pbsworks.com/ResLibSearchResult.aspx?keywords=openpbs&industry=All&pro duct_service=All&category=Free%20Software%20Downloads&order_by=title. Users of TORQUE should comply with the TORQUE license as well as the OpenPBS license. json: torque-1.1.json - yml: torque-1.1.yml + yaml: torque-1.1.yml html: torque-1.1.html - text: torque-1.1.LICENSE + license: torque-1.1.LICENSE - license_key: tosl + category: Copyleft spdx_license_key: TOSL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "Trusster Open Source License version 1.0a (TRUST) \ncopyright (c) 2006 Mike Mintz and\ + \ Robert Ekendahl. All rights reserved.\n\nRedistribution and use in source and binary forms,\ + \ with or without modification,\nare permitted provided that the following conditions are\ + \ met:\n\n* Redistributions of source code must retain the above copyright notice, this\n\ + list of conditions and the following disclaimer.\n\n* Redistributions in binary form must\ + \ reproduce the above copyright notice, this\nlist of conditions and the following disclaimer\ + \ in the documentation and/or\nother materials provided with the distribution.\n\n* Redistributions\ + \ in any form must be accompanied by information on how to\nobtain complete source code\ + \ for this software and any accompanying software that\nuses this software. The source code\ + \ must either be included in the distribution\nor be available in a timely fashion for no\ + \ more than the cost of distribution\nplus a nominal fee, and must be freely redistributable\ + \ under reasonable and no\nmore restrictive conditions. For an executable file, complete\ + \ source code means\nthe source code for all modules it contains. It does not include source\ + \ code for\nmodules or files that typically accompany the major components of the operating\n\ + system on which the executable file runs.\n\nTHIS SOFTWARE IS PROVIDED BY MIKE MINTZ AND\ + \ ROBERT EKENDAHL ``AS IS'' AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\ + \ TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n\ + NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL MIKE MINTZ AND ROBERT\nEKENDAHL OR ITS\ + \ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, \nSPECIAL, EXEMPLARY, OR\ + \ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, \nPROCUREMENT OF SUBSTITUTE GOODS\ + \ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR \nBUSINESS INTERRUPTION) HOWEVER CAUSED\ + \ AND ON ANY THEORY OF LIABILITY, WHETHER IN \nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\ + \ NEGLIGENCE OR OTHERWISE) ARISING \nIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\ + \ ADVISED OF THE POSSIBILITY \nOF SUCH DAMAGE." json: tosl.json - yml: tosl.yml + yaml: tosl.yml html: tosl.html - text: tosl.LICENSE + license: tosl.LICENSE - license_key: tpl-1.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-tpl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Terracotta Public License (version 1.0) + + 1. Definitions + + 1.1. "Contributor" means each individual or entity that creates or contributes to the creation of Modifications. + + 1.2. "Contributor Version" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. + + 1.3. "Covered Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. + + 1.4. "Electronic Distribution Mechanism" means a mechanism generally accepted in the software development community for the electronic transfer of data. + + 1.5. "Executable" means Covered Code in any form other than Source Code. + + 1.6. "Initial Developer" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. + + 1.7. "Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. + + 1.8. "License" means this document. + + 1.8.1. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. + + 1.9. "Modifications" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: + + a. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. + + b. Any new file that contains any part of the Original Code or previous Modifications. + + c. Any new file that is contributed or otherwise made available under the terms of this License. + + 1.10. "Original Code" means Source Code and Executable form of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. + + 1.10.1. "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. + + 1.11. "Source Code" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. + + 1.12. "You" (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. + + 2. Source Code License + + 2.1. The Initial Developer Grant + + THE INITIAL DEVELOPER HEREBY GRANTS YOU A WORLD-WIDE, ROYALTY-FREE, NON-EXCLUSIVE LICENSE, SUBJECT TO THIRD PARTY INTELLECTUAL PROPERTY CLAIMS: + + a. under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and + + b. under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). + + c. the licenses granted in this Section 2.1 (a) and (b) are effective on the date Initial Developer first distributes or otherwise makes available Original Code under the terms of this License. + + d. Notwithstanding Section 2.1 (b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. + + 2.2. Contributor Grant + + SUBJECT TO THIRD PARTY INTELLECTUAL PROPERTY CLAIMS, EACH CONTRIBUTOR HEREBY GRANTS YOU AND INITIAL DEVELOPER A WORLD-WIDE, ROYALTY-FREE, NON-EXCLUSIVE LICENSE: + + a. under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and + + b. under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). + + c. the licenses granted in Sections 2.2 (a) and 2.2 (b) are effective on the date Contributor first distributes or otherwise makes available the Covered Code. + + d. Notwithstanding Section 2.2 (b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. + + 3. Distribution Obligations + + 3.1. Application of License + + ANY COVERED CODE THAT YOU DISTRIBUTE OR OTHERWISE MAKE AVAILABLE IS GOVERNED BY THE TERMS OF THIS LICENSE, INCLUDING WITHOUT LIMITATION SECTION 2.2. THE SOURCE CODE VERSION OF COVERED CODE MAY BE DISTRIBUTED ONLY UNDER THE TERMS OF THIS LICENSE OR A FUTURE VERSION OF THIS LICENSE RELEASED UNDER SECTION 6.1, AND YOU MUST INCLUDE A COPY OF THIS LICENSE WITH EVERY COPY OF THE SOURCE CODE YOU DISTRIBUTE OR OTHERWISE MAKE AVAILABLE. YOU MAY NOT OFFER OR IMPOSE ANY TERMS ON ANY SOURCE CODE VERSION THAT ALTERS OR RESTRICTS THE APPLICABLE VERSION OF THIS LICENSE OR THE RECIPIENTS' RIGHTS HEREUNDER. HOWEVER, YOU MAY INCLUDE AN ADDITIONAL DOCUMENT OFFERING THE ADDITIONAL RIGHTS DESCRIBED IN SECTION 3.5. + + 3.2. Availability of Source Code + + ANY MODIFICATION WHICH YOU CREATE OR TO WHICH YOU CONTRIBUTE MUST BE MADE AVAILABLE IN SOURCE CODE FORM UNDER THE TERMS OF THIS LICENSE EITHER ON THE SAME MEDIA AS AN EXECUTABLE VERSION OR VIA AN ACCEPTED ELECTRONIC DISTRIBUTION MECHANISM TO ANYONE TO WHOM YOU MADE AN EXECUTABLE VERSION AVAILABLE; AND IF MADE AVAILABLE VIA ELECTRONIC DISTRIBUTION MECHANISM, MUST REMAIN AVAILABLE FOR AT LEAST TWELVE (12) MONTHS AFTER THE DATE IT INITIALLY BECAME AVAILABLE, OR AT LEAST SIX (6) MONTHS AFTER A SUBSEQUENT VERSION OF THAT PARTICULAR MODIFICATION HAS BEEN MADE AVAILABLE TO SUCH RECIPIENTS. YOU ARE RESPONSIBLE FOR ENSURING THAT THE SOURCE CODE VERSION REMAINS AVAILABLE EVEN IF THE ELECTRONIC DISTRIBUTION MECHANISM IS MAINTAINED BY A THIRD PARTY. + + 3.3. Description of Modifications + + YOU MUST CAUSE ALL COVERED CODE TO WHICH YOU CONTRIBUTE TO CONTAIN A FILE DOCUMENTING THE CHANGES YOU MADE TO CREATE THAT COVERED CODE AND THE DATE OF ANY CHANGE. YOU MUST INCLUDE A PROMINENT STATEMENT THAT THE MODIFICATION IS DERIVED, DIRECTLY OR INDIRECTLY, FROM ORIGINAL CODE PROVIDED BY THE INITIAL DEVELOPER AND INCLUDING THE NAME OF THE INITIAL DEVELOPER IN (A) THE SOURCE CODE, AND (B) IN ANY NOTICE IN AN EXECUTABLE VERSION OR RELATED DOCUMENTATION IN WHICH YOU DESCRIBE THE ORIGIN OR OWNERSHIP OF THE COVERED CODE. + + 3.4. Intellectual Property Matters + + (a) Third Party Claims + + IF CONTRIBUTOR HAS KNOWLEDGE THAT A LICENSE UNDER A THIRD PARTY'S INTELLECTUAL PROPERTY RIGHTS IS REQUIRED TO EXERCISE THE RIGHTS GRANTED BY SUCH CONTRIBUTOR UNDER SECTIONS 2.1 OR 2.2, CONTRIBUTOR MUST INCLUDE A TEXT FILE WITH THE SOURCE CODE DISTRIBUTION TITLED "LEGAL" WHICH DESCRIBES THE CLAIM AND THE PARTY MAKING THE CLAIM IN SUFFICIENT DETAIL THAT A RECIPIENT WILL KNOW WHOM TO CONTACT. IF CONTRIBUTOR OBTAINS SUCH KNOWLEDGE AFTER THE MODIFICATION IS MADE AVAILABLE AS DESCRIBED IN SECTION 3.2, CONTRIBUTOR SHALL PROMPTLY MODIFY THE LEGAL FILE IN ALL COPIES CONTRIBUTOR MAKES AVAILABLE THEREAFTER AND SHALL TAKE OTHER STEPS (SUCH AS NOTIFYING APPROPRIATE MAILING LISTS OR NEWSGROUPS) REASONABLY CALCULATED TO INFORM THOSE WHO RECEIVED THE COVERED CODE THAT NEW KNOWLEDGE HAS BEEN OBTAINED. + + (b) Contributor APIs + + IF CONTRIBUTOR'S MODIFICATIONS INCLUDE AN APPLICATION PROGRAMMING INTERFACE AND CONTRIBUTOR HAS KNOWLEDGE OF PATENT LICENSES WHICH ARE REASONABLY NECESSARY TO IMPLEMENT THAT API, CONTRIBUTOR MUST ALSO INCLUDE THIS INFORMATION IN THE LEGAL FILE. + + (c) Representations. + + CONTRIBUTOR REPRESENTS THAT, EXCEPT AS DISCLOSED PURSUANT TO SECTION 3.4 (A) ABOVE, CONTRIBUTOR BELIEVES THAT CONTRIBUTOR'S MODIFICATIONS ARE CONTRIBUTOR'S ORIGINAL CREATION(S) AND/OR CONTRIBUTOR HAS SUFFICIENT RIGHTS TO GRANT THE RIGHTS CONVEYED BY THIS LICENSE. + + 3.5. Required Notices + + YOU MUST DUPLICATE THE NOTICE IN EXHIBIT A IN EACH FILE OF THE SOURCE CODE. IF IT IS NOT POSSIBLE TO PUT SUCH NOTICE IN A PARTICULAR SOURCE CODE FILE DUE TO ITS STRUCTURE, THEN YOU MUST INCLUDE SUCH NOTICE IN A LOCATION (SUCH AS A RELEVANT DIRECTORY) WHERE A USER WOULD BE LIKELY TO LOOK FOR SUCH A NOTICE. IF YOU CREATED ONE OR MORE MODIFICATION(S) YOU MAY ADD YOUR NAME AS A CONTRIBUTOR TO THE NOTICE DESCRIBED IN EXHIBIT A. YOU MUST ALSO DUPLICATE THIS LICENSE IN ANY DOCUMENTATION FOR THE SOURCE CODE WHERE YOU DESCRIBE RECIPIENTS' RIGHTS OR OWNERSHIP RIGHTS RELATING TO COVERED CODE. YOU MAY CHOOSE TO OFFER, AND TO CHARGE A FEE FOR, WARRANTY, SUPPORT, INDEMNITY OR LIABILITY OBLIGATIONS TO ONE OR MORE RECIPIENTS OF COVERED CODE. HOWEVER, YOU MAY DO SO ONLY ON YOUR OWN BEHALF, AND NOT ON BEHALF OF THE INITIAL DEVELOPER OR ANY CONTRIBUTOR. YOU MUST MAKE IT ABSOLUTELY CLEAR THAN ANY SUCH WARRANTY, SUPPORT, INDEMNITY OR LIABILITY OBLIGATION IS OFFERED BY YOU ALONE, AND YOU HEREBY AGREE TO INDEMNIFY THE INITIAL DEVELOPER AND EVERY CONTRIBUTOR FOR ANY LIABILITY INCURRED BY THE INITIAL DEVELOPER OR SUCH CONTRIBUTOR AS A RESULT OF WARRANTY, SUPPORT, INDEMNITY OR LIABILITY TERMS YOU OFFER. + + 3.6. Distribution of Executable Versions + + YOU MAY DISTRIBUTE OR OTHERWISE MAKE AVAILABLE COVERED CODE IN EXECUTABLE FORM ONLY IF THE REQUIREMENTS OF SECTIONS 3.1, 3.2, 3.3, 3.4 AND 3.5 HAVE BEEN MET FOR THAT COVERED CODE, AND IF YOU INCLUDE A NOTICE STATING THAT THE SOURCE CODE VERSION OF THE COVERED CODE IS AVAILABLE UNDER THE TERMS OF THIS LICENSE, INCLUDING A DESCRIPTION OF HOW AND WHERE YOU HAVE FULFILLED THE OBLIGATIONS OF SECTION 3.2. THE NOTICE MUST BE CONSPICUOUSLY INCLUDED IN ANY NOTICE IN AN EXECUTABLE VERSION, RELATED DOCUMENTATION OR COLLATERAL IN WHICH YOU DESCRIBE RECIPIENTS' RIGHTS RELATING TO THE COVERED CODE. YOU MAY DISTRIBUTE OR OTHERWISE MAKE AVAILABLE THE EXECUTABLE VERSION OF COVERED CODE OR OWNERSHIP RIGHTS UNDER A LICENSE OF YOUR CHOICE, WHICH MAY CONTAIN TERMS DIFFERENT FROM THIS LICENSE, PROVIDED THAT YOU ARE IN COMPLIANCE WITH THE TERMS OF THIS LICENSE AND THAT THE LICENSE FOR THE EXECUTABLE VERSION DOES NOT ATTEMPT TO LIMIT OR ALTER THE RECIPIENT'S RIGHTS IN THE SOURCE CODE VERSION FROM THE RIGHTS SET FORTH IN THIS LICENSE. IF YOU DISTRIBUTE OR OTHERWISE MAKE AVAILABLE THE EXECUTABLE VERSION UNDER A DIFFERENT LICENSE YOU MUST MAKE IT ABSOLUTELY CLEAR THAT ANY TERMS WHICH DIFFER FROM THIS LICENSE ARE OFFERED BY YOU ALONE, NOT BY THE INITIAL DEVELOPER OR ANY CONTRIBUTOR. YOU HEREBY AGREE TO INDEMNIFY THE INITIAL DEVELOPER AND EVERY CONTRIBUTOR FOR ANY LIABILITY INCURRED BY THE INITIAL DEVELOPER OR SUCH CONTRIBUTOR AS A RESULT OF ANY SUCH TERMS YOU OFFER. + + 3.7. Larger Works + + YOU MAY CREATE A LARGER WORK BY COMBINING COVERED CODE WITH OTHER CODE NOT GOVERNED BY THE TERMS OF THIS LICENSE AND DISTRIBUTE OR OTHERWISE MAKE AVAILABLE THE LARGER WORK AS A SINGLE PRODUCT. IN SUCH A CASE, YOU MUST MAKE SURE THE REQUIREMENTS OF THIS LICENSE ARE FULFILLED FOR THE COVERED CODE. + + 4. Inability to Comply Due to Statute or Regulation + + IF IT IS IMPOSSIBLE FOR YOU TO COMPLY WITH ANY OF THE TERMS OF THIS LICENSE WITH RESPECT TO SOME OR ALL OF THE COVERED CODE DUE TO STATUTE, JUDICIAL ORDER, OR REGULATION THEN YOU MUST: (A) COMPLY WITH THE TERMS OF THIS LICENSE TO THE MAXIMUM EXTENT POSSIBLE; AND (B) DESCRIBE THE LIMITATIONS AND THE CODE THEY AFFECT. SUCH DESCRIPTION MUST BE INCLUDED IN THE LEGAL FILE DESCRIBED IN SECTION 3.4 AND MUST BE INCLUDED WITH ALL DISTRIBUTIONS OF THE SOURCE CODE. EXCEPT TO THE EXTENT PROHIBITED BY STATUTE OR REGULATION, SUCH DESCRIPTION MUST BE SUFFICIENTLY DETAILED FOR A RECIPIENT OF ORDINARY SKILL TO BE ABLE TO UNDERSTAND IT. + + 5. Application of this License + + THIS LICENSE APPLIES TO CODE TO WHICH THE INITIAL DEVELOPER HAS ATTACHED THE NOTICE IN EXHIBIT A AND TO RELATED COVERED CODE. + + 6. Versions of the License + + 6.1. New Versions + + TERRACOTTA, INC. ("TERRACOTTA") MAY PUBLISH REVISED AND/OR NEW VERSIONS OF THE LICENSE FROM TIME TO TIME. EACH VERSION WILL BE GIVEN A DISTINGUISHING VERSION NUMBER. + + 6.2. Effect of New Versions + + ONCE COVERED CODE HAS BEEN PUBLISHED UNDER A PARTICULAR VERSION OF THE LICENSE, YOU MAY ALWAYS CONTINUE TO USE IT UNDER THE TERMS OF THAT VERSION. YOU MAY ALSO CHOOSE TO USE SUCH COVERED CODE UNDER THE TERMS OF ANY SUBSEQUENT VERSION OF THE LICENSE PUBLISHED BY TERRACOTTA. NO ONE OTHER THAN TERRACOTTA HAS THE RIGHT TO MODIFY THE TERMS APPLICABLE TO COVERED CODE CREATED UNDER THIS LICENSE. + + 6.3. Derivative Works of License; Antecedent Licenses + + IF YOU CREATE OR USE A MODIFIED VERSION OF THIS LICENSE (WHICH YOU MAY ONLY DO IN ORDER TO APPLY IT TO CODE WHICH IS NOT ALREADY COVERED CODE GOVERNED BY THIS LICENSE), YOU MUST (A) RENAME YOUR LICENSE SO THAT THE PHRASES "TERRACOTTA", "TPL", OR ANY CONFUSINGLY SIMILAR PHRASE DO NOT APPEAR IN YOUR LICENSE (EXCEPT TO NOTE THAT YOUR LICENSE DIFFERS FROM THIS LICENSE) AND (B) OTHERWISE MAKE IT CLEAR THAT YOUR VERSION OF THE LICENSE CONTAINS TERMS WHICH DIFFER FROM THE TERRACOTTA PUBLIC LICENSE. (FILLING IN THE NAME OF THE INITIAL DEVELOPER, ORIGINAL CODE OR CONTRIBUTOR IN THE NOTICE DESCRIBED IN EXHIBIT A SHALL NOT OF THEMSELVES BE DEEMED TO BE MODIFICATIONS OF THIS LICENSE.) + + THIS TERRACOTTA PUBLIC LICENSE (TPL) IS SIMILAR TO, AND CONTAINS SAMPLES FROM, THE MOZILLA PUBLIC LICENSE (MPL) AND THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL). HOWEVER, THIS TPL CONTAINS TERMS WHICH DIFFER FROM THOSE CONTAINED IN THE MPL AND THE CDDL. + + 7. Disclaimer of Warranty + + COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 8. Termination + + 8.1. THIS LICENSE AND THE RIGHTS GRANTED HEREUNDER WILL TERMINATE AUTOMATICALLY IF YOU FAIL TO COMPLY WITH TERMS HEREIN AND FAIL TO CURE SUCH BREACH WITHIN 30 DAYS OF BECOMING AWARE OF THE BREACH. ALL SUBLICENSES TO THE COVERED CODE WHICH ARE PROPERLY GRANTED SHALL SURVIVE ANY TERMINATION OF THIS LICENSE. PROVISIONS WHICH, BY THEIR NATURE, MUST REMAIN IN EFFECT BEYOND THE TERMINATION OF THIS LICENSE SHALL SURVIVE. + + 8.2. IF YOU INITIATE LITIGATION BY ASSERTING A PATENT INFRINGEMENT CLAIM (EXCLUDING DECLARATORY JUDGMENT ACTIONS) AGAINST INITIAL DEVELOPER OR A CONTRIBUTOR (THE INITIAL DEVELOPER OR CONTRIBUTOR AGAINST WHOM YOU FILE SUCH ACTION IS REFERRED TO AS "PARTICIPANT") ALLEGING THAT: + + a. such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (1) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (2) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. + + b. any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. + + 8.3. IF YOU ASSERT A PATENT INFRINGEMENT CLAIM AGAINST PARTICIPANT ALLEGING THAT SUCH PARTICIPANT'S CONTRIBUTOR VERSION DIRECTLY OR INDIRECTLY INFRINGES ANY PATENT WHERE SUCH CLAIM IS RESOLVED (SUCH AS BY LICENSE OR SETTLEMENT) PRIOR TO THE INITIATION OF PATENT INFRINGEMENT LITIGATION, THEN THE REASONABLE VALUE OF THE LICENSES GRANTED BY SUCH PARTICIPANT UNDER SECTIONS 2.1 OR 2.2 SHALL BE TAKEN INTO ACCOUNT IN DETERMINING THE AMOUNT OR VALUE OF ANY PAYMENT OR LICENSE. + + 8.4. IN THE EVENT OF TERMINATION UNDER SECTIONS 8.1 OR 8.2 ABOVE, ALL END USER LICENSE AGREEMENTS (EXCLUDING DISTRIBUTORS AND RESELLERS) WHICH HAVE BEEN VALIDLY GRANTED BY YOU OR ANY DISTRIBUTOR HEREUNDER PRIOR TO TERMINATION SHALL SURVIVE TERMINATION. + + 9. Limitation of Liability + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + + 10. U.S. Government End Users + + THE COVERED CODE IS A "COMMERCIAL ITEM," AS THAT TERM IS DEFINED IN 48 C.F.R. 2.101 (OCT. 1995), CONSISTING OF "COMMERCIAL COMPUTER SOFTWARE" AND "COMMERCIAL COMPUTER SOFTWARE DOCUMENTATION," AS SUCH TERMS ARE USED IN 48 C.F.R. 12.212 (SEPT. 1995). CONSISTENT WITH 48 C.F.R. 12.212 AND 48 C.F.R. 227.7202-1 THROUGH 227.7202-4 (JUNE 1995), ALL U.S. GOVERNMENT END USERS ACQUIRE COVERED CODE WITH ONLY THOSE RIGHTS SET FORTH HEREIN. + + 11. Miscellaneous + + THIS LICENSE REPRESENTS THE COMPLETE AGREEMENT CONCERNING SUBJECT MATTER HEREOF. IF ANY PROVISION OF THIS LICENSE IS HELD TO BE UNENFORCEABLE, SUCH PROVISION SHALL BE REFORMED ONLY TO THE EXTENT NECESSARY TO MAKE IT ENFORCEABLE. THIS LICENSE SHALL BE GOVERNED BY CALIFORNIA LAW PROVISIONS (EXCEPT TO THE EXTENT APPLICABLE LAW, IF ANY, PROVIDES OTHERWISE), EXCLUDING ITS CONFLICT-OF-LAW PROVISIONS. WITH RESPECT TO DISPUTES IN WHICH AT LEAST ONE PARTY IS A CITIZEN OF, OR AN ENTITY CHARTERED OR REGISTERED TO DO BUSINESS IN THE UNITED STATES OF AMERICA, ANY LITIGATION RELATING TO THIS LICENSE SHALL BE SUBJECT TO THE JURISDICTION OF THE FEDERAL COURTS OF THE NORTHERN DISTRICT OF CALIFORNIA, WITH VENUE LYING IN SANTA CLARA COUNTY, CALIFORNIA, WITH THE LOSING PARTY RESPONSIBLE FOR COSTS, INCLUDING WITHOUT LIMITATION, COURT COSTS AND REASONABLE ATTORNEYS' FEES AND EXPENSES. THE APPLICATION OF THE UNITED NATIONS CONVENTION ON CONTRACTS FOR THE INTERNATIONAL SALE OF GOODS IS EXPRESSLY EXCLUDED. ANY LAW OR REGULATION WHICH PROVIDES THAT THE LANGUAGE OF A CONTRACT SHALL BE CONSTRUED AGAINST THE DRAFTER SHALL NOT APPLY TO THIS LICENSE. YOU AGREE THAT YOU ALONE ARE RESPONSIBLE FOR COMPLIANCE WITH THE UNITED STATES EXPORT ADMINISTRATION REGULATIONS (AND THE EXPORT CONTROL LAWS AND REGULATIONS OF ANY OTHER COUNTRIES) WHEN YOU USE, DISTRIBUTE, OR OTHERWISE MAKE AVAILABLE ANY COVERED CODE. + + 12. Responsibility for Claims + + AS BETWEEN INITIAL DEVELOPER AND THE CONTRIBUTORS, EACH PARTY IS RESPONSIBLE FOR CLAIMS AND DAMAGES ARISING, DIRECTLY OR INDIRECTLY, OUT OF ITS UTILIZATION OF RIGHTS UNDER THIS LICENSE AND YOU AGREE TO WORK WITH INITIAL DEVELOPER AND CONTRIBUTORS TO DISTRIBUTE SUCH RESPONSIBILITY ON AN EQUITABLE BASIS. NOTHING HEREIN IS INTENDED OR SHALL BE DEEMED TO CONSTITUTE ANY ADMISSION OF LIABILITY. + + 13. Multiple-Licensed Code + + INITIAL DEVELOPER MAY DESIGNATE PORTIONS OF THE COVERED CODE AS "MULTIPLE-LICENSED". "MULTIPLE-LICENSED" MEANS THAT THE INITIAL DEVELOPER PERMITS YOU TO UTILIZE PORTIONS OF THE COVERED CODE UNDER YOUR CHOICE OF THE TPL OR THE ALTERNATIVE LICENSES, IF ANY, SPECIFIED BY THE INITIAL DEVELOPER IN THE FILE DESCRIBED IN EXHIBIT A. + + 14. Certain Attribution Requirements + + THIS LICENSE DOES NOT GRANT ANY LICENSE OR RIGHTS TO USE THE TRADEMARKS "TERRACOTTA," ANY "TERRACOTTA" LOGOS, OR ANY OTHER TRADEMARKS OF TERRACOTTA, INC. + + HOWEVER, IN ADDITION TO THE OTHER NOTICE OBLIGATIONS, ALL COPIES OF THE COVERED CODE IN EXECUTABLE AND SOURCE CODE FORM DISTRIBUTED OR OTHERWISE MADE AVAILABLE MUST, AS A FORM OF ATTRIBUTION OF THE INITIAL DEVELOPER, INCLUDE ON EACH USER INTERFACE SCREEN (I) THE COPYRIGHT NOTICE IN THE SAME FORM AS THE LATEST VERSION OF THE COVERED CODE DISTRIBUTED OR OTHERWISE MADE AVAILABLE BY TERRACOTTA, INC. AT THE TIME OF DISTRIBUTION OR MAKING AVAILABLE OF SUCH COPY AND (II) THE FOLLOWING TEXT, WHICH MUST BE LARGE ENOUGH SO THAT IT CAN BE READ EASILY: "POWERED BY TERRACOTTA". THE COPYRIGHT NOTICE AND TEXT MUST BE VISIBLE TO ALL USERS AND BE LOCATED AT THE VERY BOTTOM AND IN THE CENTER OF EACH USER INTERFACE SCREEN. THE WORD "TERRACOTTA" MUST BE A HYPERLINK, SO THAT WHEN ANY USER ACTIVATES THE LINK (E.G., BY CLICKING ON IT WITH A MOUSE), THE USER WILL BE DIRECTED TO HTTP://WWW.TERRACOTTA.ORG. + + Exhibit A - Terracotta Public License. + + "The contents of this file are subject to the Terracotta Public License, version 1.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.terracotta.org/TPL. + + Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. + + The Original Code is . + + The Initial Developer of the Original Code is Terracotta, Inc. + + Portions created by are Copyright (C) . All Rights Reserved. + + Contributor(s): . + + NOTE: THE TEXT OF THIS EXHIBIT A MAY DIFFER SLIGHTLY FROM THE TEXT OF THE NOTICES IN THE SOURCE CODE FILES OF THE ORIGINAL CODE. YOU SHOULD USE THE TEXT OF THIS EXHIBIT A RATHER THAN THE TEXT FOUND IN THE ORIGINAL CODE SOURCE CODE FOR YOUR MODIFICATIONS. json: tpl-1.0.json - yml: tpl-1.0.yml + yaml: tpl-1.0.yml html: tpl-1.0.html - text: tpl-1.0.LICENSE + license: tpl-1.0.LICENSE +- license_key: tpl-2.0 + category: Copyleft Limited + spdx_license_key: LicenseRef-scancode-tpl-2.0 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: "Terracotta Public License, version 2.0\n\n1. Definitions\n\n1.1. \"Contributor\" means\ + \ each individual or legal entity that creates, \ncontributes to the creation of, and owns\ + \ Covered Software.\n\n1.2. \"Contributor Version\" means the combination of the Contributions\ + \ of others \n(if any) used by a Contributor and that particular Contributor's Contribution.\n\ + \n1.3. \"Contribution\" means Covered Software of a particular Contributor.\n\n1.4. \"Covered\ + \ Software\" means Source Code Form to which the initial Contributor \nhas attached the\ + \ notice in Exhibit A, the Executable Form of such Source Code \nForm, and Modifications\ + \ of such Source Code Form, in each case including \nportions thereof.\n\n1.5. \"Initial\ + \ Developer\" means the individual or entity identified as the \nInitial Developer in the\ + \ Source Code notice required by Exhibit A.\n\n1.6. \"Incompatible With Secondary Licenses\"\ + \ means (a) that the initial \nContributor has attached the notice described in Exhibit\ + \ B to the Covered \nSoftware; or (b) that the Covered Software was made available under\ + \ the terms \nof version 1.0, but not also under the terms of a Secondary License.\n\n1.7.\ + \ \"Executable Form\" means any form of the work other than Source Code Form.\n\n1.8. \"\ + Larger Work\" means a work that combines Covered Software with other \nmaterial, in a separate\ + \ file or files that is not Covered Software.\n\n1.9. \"License\" means this document.\n\ + \n1.10. \"Licensable\" means having the right to grant, to the maximum extent \npossible,\ + \ whether at the time of the initial grant or subsequently, any and all \nof the rights\ + \ conveyed by this License.\n\n1.11. \"Modifications\" means any of the following: (a) any\ + \ file in Source Code \nForm that results from an addition to, deletion from, or modification\ + \ of the \ncontents of Covered Software; or (b) any new file in Source Code Form that \n\ + contains any Covered Software.\n\n1.12. \"Patent Claims\" of a Contributor means any patent\ + \ claim(s), including \nwithout limitation, method, process, and apparatus claims, in any\ + \ patent \nLicensable by such Contributor that would be infringed, but for the grant of\ + \ \nthe License, by the making, using, selling, offering for sale, having made, \nimport,\ + \ or transfer of either its Contributions or its Contributor Version.\n\n1.13. \"Secondary\ + \ License\" means either the GNU General Public License, Version \n2.0, the GNU Lesser General\ + \ Public License, Version 2.1, the GNU Affero General \nPublic License, Version 3.0, or\ + \ any later versions of those licenses.\n\n1.14. \"Source Code Form\" means the form of\ + \ the work preferred for making \nmodifications including all modules it contains, plus\ + \ any associated interface \ndefinition files, scripts used to control compilation and installation\ + \ of an \nExecutable Form, or source code differential comparisons against either the \n\ + Covered Software or another well known, available Covered Software of the \nContributor's\ + \ choice. The Source Code Form can be in a compressed or archival \nform, provided the appropriate\ + \ decompression or de-archiving software is widely \navailable for no charge.\n\n1.15. \"\ + You\" (or \"Your\") means an individual or a legal entity exercising rights \nunder this\ + \ License. For legal entities, \"You\" includes any entity that \ncontrols, is controlled\ + \ by, or is under common control with You. For purposes \nof this definition, \"control\"\ + \ means (a) the power, direct or indirect, to cause \nthe direction or management of such\ + \ entity, whether by contract or otherwise, \nor (b) ownership of more than fifty percent\ + \ (50%) of the outstanding shares or \nbeneficial ownership of such entity.\n\n2. License\ + \ Grants and Conditions\n\n2.1. Grants\nThe Initial Developer and each Contributor hereby\ + \ grants You a world-wide, \nroyalty-free, non-exclusive license, subject to third party\ + \ intellectual \nproperty claims:\n\n(a) under intellectual property rights (other than\ + \ patent or trademark) \nlicensable by such Contributor to use, reproduce, make available,\ + \ modify, \ndisplay, perform, sublicense, distribute, and otherwise exploit its \nContributions,\ + \ either on an unmodified basis, with Modifications, or as part of \na Larger Work; and\n\ + \n(b) under Patent Claims of such Contributor to make, use, sell, offer for \nsale, have\ + \ made, import, and otherwise transfer either its Contributions or its \nContributor Version.\n\ + \n2.2. Effective Date\nThe licenses granted in Section 2.1 with respect to any Contribution\ + \ become \neffective for each Contribution on the date the Contributor first distributes\ + \ \nsuch Contribution or otherwise makes available Contributions under the terms of \nthis\ + \ License.\n\n2.3. Limitations on Grant Scope\nThe licenses granted in this Section 2 are\ + \ the only rights granted under this \nLicense. No additional rights or licenses will be\ + \ implied from the distribution \nor licensing of Covered Software under this License. \ + \ Notwithstanding Section \n2.1(b) above, no patent license is granted by a Contributor:\n\ + \n(a) for any code that a Contributor has removed from Covered Software; or\n\n(b) for infringements\ + \ caused by: (i) You and any other third party's \nmodifications of Covered Software, or\ + \ (ii) You and any other third party's \ncombination with other software (except as part\ + \ of its Contributor Version) or \ndevices; or\n\n(c) under Patent Claims infringed by Covered\ + \ Software in the absence of its \nContributions.\n\nThis License does not grant any rights\ + \ in the trademarks, service marks, or \nlogos of any Contributor (except as may be necessary\ + \ to comply with the notice \nand attribution requirements in Sections 3.5 and 3.8.\n\n\ + 2.4. Subsequent Licenses\nNo Contributor makes additional grants as a result of Your choice\ + \ to distribute \nthe Covered Software under a subsequent version of this License (see Section\ + \ \n10.2) or under the terms of a Secondary License (if permitted under the terms \nof Section\ + \ 3.3).\n\n2.5. Representation\nEach Contributor represents that the Contributor believes\ + \ its Contributions are \nits original creation(s) or it has sufficient rights to grant\ + \ the rights to its \nContributions conveyed by this License.\n\n2.6. Fair Use\nThis License\ + \ is not intended to limit any rights You have under applicable \ncopyright doctrines of\ + \ fair use, fair dealing, or other equivalents.\n\n2.7. Conditions\nSections 3.1, 3.2, 3.3,\ + \ 3.4, 3.5, 3.6, and 3.7 are conditions of the licenses \ngranted in Section 2.1.\n\n2.8.\ + \ Multiple-licensed Software \nInitial Developer may designate portions of the Covered Software\ + \ as “Multiple- \nLicensed”. “Multiple-Licensed” means that the Initial Developer permits\ + \ You to \nutilize portions of the Covered Software under Your choice of the TPL or \nalternative\ + \ licenses, if any, specified in Exhibit A by the Initial Developer.\n\n3. Responsibilities\n\ + \n3.1. Distribution of Source Code Form\nAll distribution of Covered Software in Source\ + \ Code Form, including any \nModifications that You create or to which You contribute, must\ + \ be under the \nterms of this License or a future version of this license released under\ + \ \nSection 10.1, and You must include a copy of this license with every copy of \nthe source\ + \ code You distribute or otherwise make available. You must inform \nrecipients that the\ + \ Source Code Form of the Covered Software is governed by the \nterms of this License, and\ + \ how they can obtain a copy of this License. You may \nnot offer or impose any terms on\ + \ any Source Code Form that alters or restricts \nthe applicable version of this license\ + \ or the recipients’ rights thereunder. \nHowever, You may include an additional document\ + \ offering the additional rights \ndescribed in Section 3.6.\n\n3.2. Distribution of Executable\ + \ Form\nIf You distribute Covered Software in Executable Form then: (a) such Covered \n\ + Software must also be made available in Source Code Form, as described in \nSection 3.1,\ + \ and You must inform recipients of the Executable Form how they can \nobtain a copy of\ + \ such Source Code Form by reasonable means in a timely manner, \nat a charge no more than\ + \ the cost of distribution to the recipient; and (b) You \nmay distribute such Executable\ + \ Form under the terms of this License, or \nsublicense it under different terms, provided\ + \ that the license for the \nExecutable Form does not attempt to limit or alter the recipients'\ + \ rights in \nthe Source Code Form under this License.\n\n3.3. Distribution of a Larger\ + \ Work\nYou may create and distribute a Larger Work under terms of Your choice, \nprovided\ + \ that You also comply with the requirements of this License for the \nCovered Software.\ + \ If the Larger Work is a combination of Covered Software with \na work governed by one\ + \ or more Secondary Licenses, and the Covered Software is \nnot incompatible With Secondary\ + \ Licenses, this License permits You to \nadditionally distribute such Covered Software\ + \ under the terms of such Secondary \nLicense(s), so that the recipient of the Larger Work\ + \ may, at their option, \nfurther distribute the Covered Software under the terms of either\ + \ this License \nor such Secondary License(s).\n\n3.4. Description of Modifications\nYou\ + \ must cause all Modifications to the Covered Software to contain a file \ndocumenting the\ + \ changes You made to the Covered Software and the date of any \nchange. You must include\ + \ a prominent statement that the Modification is \nderived, directly or indirectly, from\ + \ Covered Software provided by the Initial \nDeveloper and include the name of the Initial\ + \ Developer in (a) the Source Code \nForm, and (b) in any notice in an Executable Form or\ + \ related documentation in \nwhich You describe the origin or ownership of the Covered Software.\n\ + \n3.5. Notices\nYou must duplicate the notice in Exhibit A in each file of the Source Code.\ + \ If \nit is not possible to put such notice in a particular Source Code file due to \n\ + its structure, then You must include such notice in a location (such as a \nrelevant directory)\ + \ where a user would be likely to look for such a notice. If \nYou created one or more Modification(s)\ + \ You may add Your name as a Contributor \nto the notice described in Exhibit A. You must\ + \ also duplicate this License in \nany documentation for the Source Code where You describe\ + \ recipients’ rights or \nownership rights relating to Covered Software. You may not remove\ + \ or alter the \nsubstance of any License notices (including copyright notices, patent notices,\ + \ \ndisclaimers of warranty, or limitations of liability) contained within the \nSource\ + \ Code Form of the Covered Software, except that You may alter any License \nnotices to\ + \ the extent required to remedy known factual inaccuracies. \n\n3.6. Application of Additional\ + \ Terms\nYou may choose to offer, and to charge a fee for, warranty, support, indemnity\ + \ \nor liability obligations to one or more recipients of Covered Software. \nHowever, You\ + \ may do so only on Your own behalf, and not on behalf of any \nContributor. You must make\ + \ it absolutely clear that any such warranty, support, \nindemnity, or liability obligation\ + \ is offered by You alone, and You hereby \nagree to indemnify every Contributor for any\ + \ liability incurred by such \nContributor as a result of warranty, support, indemnity or\ + \ liability terms You \noffer. You may include additional disclaimers of warranty and limitations\ + \ of \nliability specific to any jurisdiction.\n\n3.7. Intellectual Property Matters\n\n\ + (a) Third Party Claims\nIf Contributor has knowledge that a License under a Third Party’s\ + \ Intellectual \nProperty Rights is required to exercise the rights granted by such Contributor\ + \ \nunder Section 2.1, Contributor must include a text file with the Source Code \nDistribution\ + \ titled “Legal” which describes the claim and the party making the \nclaim in sufficient\ + \ detail that a recipient will know whom to contact. If \nContributor obtains such knowledge\ + \ after the Modification is made available, \nContributor shall promptly modify the Legal\ + \ file in all copies Contributor \nmakes available thereafter and shall take other steps\ + \ (such as notifying \nappropriate mailing lists or newsgroups) reasonably calculated to\ + \ inform those \nwho received the Covered Software that new knowledge has been obtained.\ + \ \n\n(b) Contributor APIs\nIf Contributor’s Modifications include an application programming\ + \ interface and \nContributor has knowledge of patent licenses which hare reasonably necessary\ + \ to \nimplement that API, Contributor must also include this information in the Legal \n\ + file.\n\n(c) Representations\nContributor represents that, except as disclosed pursuant\ + \ to Section 3.7 (a) \nabove, Contributor believes that Contributor’s Modifications are\ + \ Contributor’s \noriginal creation(s) and /or Contributor has sufficient rights to grant\ + \ the \nrights conveyed by this License.\n\n3.8. Certain Attribution Requirements\nThis\ + \ License does not grant any License or rights to use the trademarks \n“TERRACOTTA” “SOFTWARE\ + \ AG,” any logos, trade names or slogans of either \nTerracotta, Inc. or Software AG. However,\ + \ in addition to the other notice \nobligations all copies of the Covered Software in Executable\ + \ Form and Source \nCode Form distributed or otherwise made available, must as a form of\ + \ \nattribution of the Initial Developer, include on each user interface screen (a) \nthe\ + \ copyright notice in the same form as the latest version of the Covered \nSoftware distributed\ + \ or otherwise made available by Terracotta Inc. at the time \nof distribution or making\ + \ available of such copy and (b) the following text \nwhich must be large enough so that\ + \ it can be read easily “Powered by \nTerracotta.” The copyright notice and text must be\ + \ visible to all users and be \nlocated at the very bottom and in the center of each user\ + \ interface screen. The \nword “Terracotta” must be a hyperlink, so that when any user activates\ + \ the link \n(e.g. by clicking on it with a mouse), the user will be directed to \nhttp://www.terracotta.org.\n\ + \n4. Inability to Comply Due to Statute or Regulation\nIf it is impossible for You to comply\ + \ with any of the terms of this License \nwith respect to some or all of the Covered Software\ + \ due to statute, judicial \norder, or regulation then You must: (a) comply with the terms\ + \ of this License \nto the maximum extent possible; and (b) describe the limitations and\ + \ the code \nthey affect. Such description must be placed in a text file included with all\ + \ \ndistributions of the Covered Software under this License. Except to the extent \nprohibited\ + \ by statute or regulation, such description must be sufficiently \ndetailed for a recipient\ + \ of ordinary skill to be able to understand it.\n\n5. Termination\n\n5.1. The rights granted\ + \ under this License will terminate automatically if You \nfail to comply with any of its\ + \ terms. However, if You become compliant, then \nthe rights granted under this License\ + \ from a particular Contributor are \nreinstated (a) provisionally, unless and until such\ + \ Contributor explicitly and \nfinally terminates Your grants, and (b) on an ongoing basis,\ + \ if such \nContributor fails to notify You of the non-compliance by some reasonable means\ + \ \nprior to 60 days after You have come back into compliance. Moreover, Your \ngrants from\ + \ a particular Contributor are reinstated on an ongoing basis if such \nContributor notifies\ + \ You of the non-compliance by some reasonable means, this \nis the first time You have\ + \ received notice of non-compliance with this License \nfrom such Contributor, and You become\ + \ compliant prior to 30 days after Your \nreceipt of the notice.\n\n5.2. If You initiate\ + \ litigation against any entity by asserting a patent \ninfringement claim (excluding declaratory\ + \ judgment actions, counter-claims, and \ncross-claims) alleging that a Contributor Version\ + \ directly or indirectly \ninfringes any patent, then the rights granted to You by any and\ + \ all \nContributors for the Covered Software under Section 2.1 of this License shall \n\ + terminate.\n\n5.3. In the event of termination under Sections 5.1 or 5.2 above, all end\ + \ user \nlicense agreements (excluding distributors and resellers) which have been \nvalidly\ + \ granted by You or Your distributors under this License prior to \ntermination shall survive\ + \ termination.\n\n6. Disclaimer of Warranty\nCOVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE\ + \ ON AN \"AS IS\" BASIS, WITHOUT \nWARRANTY OF ANY KIND, EITHER EXPRESSED, IMPLIED OR STATUTORY,\ + \ INCLUDING, \nWITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS,\ + \ \nMERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK \nAS TO\ + \ THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD \nANY COVERED\ + \ SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL \nDEVELOPER OR ANY OTHER\ + \ CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, \nREPAIR OR CORRECTION. THIS\ + \ DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART \nOF THIS LICENSE. NO USE OF ANY\ + \ COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT \nUNDER THIS DISCLAIMER.\n\n7. Limitation\ + \ of Liability\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING\ + \ \nNEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY \nOTHER CONTRIBUTOR,\ + \ OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF \nANY OF SUCH PARTIES, BE LIABLE\ + \ TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, \nINCIDENTAL, OR CONSEQUENTIAL DAMAGES\ + \ OF ANY CHARACTER INCLUDING, WITHOUT \nLIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL,\ + \ WORK STOPPAGE, COMPUTER \nFAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES\ + \ OR LOSSES, EVEN \nIF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES.\ + \ THIS \nLIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL \nINJURY\ + \ RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW \nPROHIBITS SUCH LIMITATION.\ + \ SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR \nLIMITATION OF INCIDENTAL OR CONSEQUENTIAL\ + \ DAMAGES, SO THIS EXCLUSION AND \nLIMITATION MAY NOT APPLY TO YOU.\n\n8. Litigation\n\n\ + 8.1. Jurisdiction\nThis License shall be governed in accordance with the laws of the Commonwealth\ + \ \nof Virginia (except to the extent applicable law, if any, provides otherwise), \nwithout\ + \ giving effect to its conflicts-of-laws provisions. With respect to \ndisputes in which\ + \ at least one party is a citizen of, or an entity chartered or \nregistered to do business\ + \ in the United States of America, any litigation \nrelating to this license shall be subject\ + \ to the jurisdiction of the federal \ncourts of the Commonwealth of Virginia with the losing\ + \ party responsible for \ncosts, including without limitation, court costs and reasonable\ + \ attorneys’ fees \nand expenses. The application of the United Nations Convention on Contracts\ + \ for \nthe International Sale of Goods is expressly excluded. Any law or regulation \n\ + which provides that the language of contract shall be construed against the \ndrafter shall\ + \ not apply to this License. You agree that You alone are \nresponsible for compliance with\ + \ the United States export administration \nregulations (and the export control laws and\ + \ regulations of any other \ncountries) when You use, distribute, or otherwise make available\ + \ Covered \nSoftware. \n\n8.2. Responsibility for Claims\nAs between the Initial Developer\ + \ and Contributors, each party is responsible \nfor claims and damages arising, directly\ + \ or indirectly, out of its utilization \nof rights under this License and You agree to\ + \ work with Initial Developer and \nContributors to distribute such responsibility on an\ + \ equitable basis. Nothing \nherein is intended or shall be deemed to constitute an admission\ + \ of liability. \n\n9. Miscellaneous\nThis License represents the complete agreement concerning\ + \ the subject matter \nhereof. If any provision of this License is held to be unenforceable,\ + \ such \nprovision shall be reformed only to the extent necessary to make it \nenforceable.\ + \ Any law or regulation which provides that the language of a \ncontract shall be construed\ + \ against the drafter shall not be used to construe \nthis License against a Contributor.\n\ + \n10. Versions of the License\n\n10.1. New Versions\nTerracotta, Inc. and/or its parent\ + \ Software AG (“Terracotta”) may publish \nrevised and/or new versions of the license from\ + \ time to time. Except as \nprovided in Section 10.3, no one other than Terracotta has the\ + \ right to modify \nor publish new versions of this License. Each version will be given\ + \ a \ndistinguishing version number.\n\n10.2. Effect of New Versions\nYou may distribute\ + \ the Covered Software under the terms of the version of the \nLicense under which You originally\ + \ received the Covered Software, or under the \nterms of any subsequent version published\ + \ by Terracotta.\n\n10.3. Modified Versions\nIf You create or use a modified version of\ + \ this License (which You may do in \norder to apply it to code with is not already covered\ + \ by this License), You \nmust (a) rename Your License so that the phrases “Terracotta”\ + \ “TPL” “Software \nAG,” or any confusingly similar phrase do not appear in Your license\ + \ (except to \nnote that Your license differs from this License) and (b) otherwise make\ + \ it \nclear that Your version of the license contains terms which differ from the \nTerracotta\ + \ Public License. Filling in the name of the Initial Developer, \nCovered Software or Contributor\ + \ in the notice described in Exhibit A shall not \nof themselves be deemed to be modifications\ + \ of this License.)\nThis Terracotta Public License (TPL) is similar to, and contains samples\ + \ from, \nthe Mozilla Public License (MPL) and the Common Development and Distribution \n\ + License (CDDL). However, this TPL contains terms which differ from those \ncontained in\ + \ the MPL and CDDL. \n\n10.4. Distributing Source Code Form that is Incompatible With Secondary\ + \ Licenses\nIf You choose to distribute Source Code Form that is Incompatible With \nSecondary\ + \ Licenses under the terms of this version of the License, the notice \ndescribed in Exhibit\ + \ B of this License must be attached.\n\nExhibit A - Terracotta Public License.\n\"The contents\ + \ of this file are subject to the Terracotta Public License Version \n2.0 (the \"License\"\ + ); You may not use this file except in compliance with the \nLicense. You may obtain a copy\ + \ of the License at \nhttp://terracotta.org/legal/terracotta-public-license.\nSoftware distributed\ + \ under the License is distributed on an \"AS IS\" basis, \nWITHOUT WARRANTY OF ANY KIND,\ + \ either express or implied. See the License for \nthe specific language governing rights\ + \ and limitations under the License.\n\nThe Covered Software is Terracotta Core.\n\nThe\ + \ Initial Developer of the Covered Software is Terracotta, Inc. © Terracotta, \nInc., a\ + \ Software AG company\n\nPortions created by ______________________ are Copyright (C) _______________.\ + \ \nAll Rights Reserved.\nContributor(s): ______________________________________.\n\nNOTE:\ + \ THE TEXT OF THIS EXHIBIT A MAY DIFFER SLIGHTLY FROM THE TEXT OF THE \nNOTICES IN THE SOURCE\ + \ CODE FILES OF THE COVERED SOFTWARE. YOU SHOULD USE THE \nTEXT OF THIS EXHIBIT A RATHER\ + \ THAN THE TEXT FOUND IN THE COVERED SOFTWARE \nSOURCE CODE FOR YOUR MODIFICATIONS.\n\n\ + Exhibit B - \"Incompatible With Secondary Licenses\" Notice\n\nThis Source Code Form is\ + \ \"Incompatible With Secondary Licenses\", as defined by \nthe Terracotta Public License,\ + \ v. 2.0." + json: tpl-2.0.json + yaml: tpl-2.0.yml + html: tpl-2.0.html + license: tpl-2.0.LICENSE - license_key: trademark-notice + category: Unstated License spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Unstated License + text: json: trademark-notice.json - yml: trademark-notice.yml + yaml: trademark-notice.yml html: trademark-notice.html - text: trademark-notice.LICENSE + license: trademark-notice.LICENSE - license_key: trca-odl-1.0 + category: Free Restricted spdx_license_key: LicenseRef-scancode-trca-odl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Toronto and Region Conservation Authority (TRCA) Open Data Licence v1.0 + + Share: + Using Information under this License: + + TRCA grants to the Recipient a royalty-free, world-wide and non-exclusive licence (the "Licence") to the information (the "Data"), including for commercial purposes, subject to the terms below. + Use of any information (the "Data") indicates your acceptance of the terms below. + + You are free to: + + Access, copy, process, manage, store and otherwise use the information (the "Data") other than personal information. + Modify, distribute, adapt, translate or create derivative works for both personal use and for profit based on the information (the "Data"). + + You must (where you do any of the above): + + Where the Recipient engages in the distribution, publication, modification, adaption, translation or the creation of a derivative work based on the Data: + + The Recipient warrants and agrees not to misrepresent the Data or the source of the Data, or to use the Data in any manner which is likely to cause harm or damage to TRCA or contrary to any applicable laws.\ + The Recipient agrees that TRCA will be acknowledged as the source of the Data using the following credit statement: + "Contains information made available under the Toronto and Region Conservation Authority (TRCA)’s Open Data Licence v 1.0" + + Exemptions + + The release of the Data to the Recipient and the granting of the Licence does not constitute a conveyance of any rights of ownership of the Data to the Recipient and TRCA shall own, exclusively, throughout the world and in perpetuity, all proprietary right, title and interest in the Data, including any intellectual property rights therein. + + TRCA shall have the unilateral right to revoke the Licence at any time in its sole and absolute discretion. Upon the termination of this Licence by TRCA, the Recipient shall cease to use the Data in any manner whatsoever. + Non-Endorsement + + Under no circumstances is TRCA responsible for or any edited or reproduced versions of the Data, or to be shown as approving the Data’s use or being in any way sponsoring, connected with, or related to the Recipient. + No Warranty + + TRCA does not represent or warrant that any or all Data collected by TRCA is complete, current, updated or maintained by TRCA. Any one making use of or relying upon the Data is responsible for confirming its accuracy and completeness and its use is not restricted by any other person. TRCA has no obligation to update the Data based on new information collected or modified by TRCA. + + The Recipient hereby releases TRCA from, and waives as against TRCA, any claims and demands the Recipient may have arising from any such loss, costs, expense, damages or liabilities in connection with the Data, whether as a result of TRCA’s negligence or otherwise. + + The Recipient shall indemnify and hold harmless TRCA, its directors, members, officers, employees, agents and independent contractors against any actions, proceedings, claims, losses, damages, liability awards, judgments, settlements and other expenses that TRCA may incur in consequence of a breach of any terms of the Licence by the Recipient. + Governing Law + + The Recipient acknowledges that the Data may be subject to copyright and agrees to comply with all copyright laws that may be applicable to the Data. + + This Licence and the disclaimer acknowledged by the Recipient (the "Disclaimer") constitutes a legal agreement between TRCA and the Recipient and the act of accessing the Data is confirmation that the Recipient agrees to be bound by the terms and conditions of the Licence and the Disclaimer. This Licence is governed by the laws of the province of Ontario and the laws of Canada applicable therein. + Definitions + + In this licence, the terms below have the following meanings: + + "Data" means information or data protected by copyright that is expressly made available under the terms of this licence. + + "Licence" means Toronto Region Conservation Authority Open Data Licence and Disclaimer + + "TRCA" means the Toronto Region Conservation Authority + + "Recipient" means the natural or legal person or body of persons corporate or incorporate, as applicable, acquiring rights under this licence. + + "Disclaimer" means Toronto Region Conservation Authority Disclaimer contained within the Toronto Region Conservation Authority Open Data Licence and Disclaimer. + Versioning + + This is version 1.0 of the TRCA Open Data Licence. + Disclaimer + + The information provided herein (the "Data") is provided for general information purposes only and the Data does not constitute opinions or advice. Toronto and Region Conservation Authority ("TRCA") does not warrant or guarantee the accuracy or completeness of any Data provided to any user of Data (the "Recipient"). TRCA accepts and has no responsibility or liability whatsoever for any loss, costs, expense, damages or liabilities suffered or incurred by anyone as a result of the Data, or incompleteness or inaccuracy thereof, or the Licence granted herein to the Recipient, or as a result of any decision or action made on the basis of the Data or the Licence. The Recipient hereby releases TRCA from, and waives as against TRCA, any claims and demands the Recipient may have arising from any such loss, costs, expense, damages or liabilities. In consideration for the Licence, the Recipient acknowledges and agrees that the use of the Data is at the sole risk of the Recipient and subject to the terms and conditions as set forth in the Licence, a copy of which may be accessed here: https://trca.ca/datalicense. By accessing the Data the Recipient agrees to the foregoing and to the terms of the Licence. json: trca-odl-1.0.json - yml: trca-odl-1.0.yml + yaml: trca-odl-1.0.yml html: trca-odl-1.0.html - text: trca-odl-1.0.LICENSE + license: trca-odl-1.0.LICENSE - license_key: treeview-developer + category: Proprietary Free spdx_license_key: LicenseRef-scancode-treeview-developer other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + TreeView License: Developer's License + + This License For Customer Use of GubuSoft TreeView Software ("LICENSE") is the agreement which governs use of the TreeView software by GubuSoft ("GUBUSOFT") downloadable herefrom, including computer software and associated documentation ("SOFTWARE"). By downloading, installing, copying, or otherwise using the SOFTWARE, you agree to be bound by the terms of this LICENSE. If you do not agree to the terms of this LICENSE, do not use the SOFTWARE. + + GUBUSOFT grants Customer a royalty-free, perpetual license to use SOFTWARE within server CPUs and internet domains belonging to Customer. An unlimited number of end users may access and use the SOFTWARE. GUBUSOFT grants Customer rights to modify the source code, for use within their server CPUs and internet domains. + + 1. DEFINITIONS + + 1.1 Customer. Customer means the entity or individual that downloads the SOFTWARE. + + 2. GRANT OF LICENSE + + 2.1 GUBUSOFT hereby grants Customer the following non-exclusive, non-transferable right to use the SOFTWARE. + + 2.1.3 LIMITATIONS + + Customer may not rent, lease, or transfer the rights to the SOFTWARE to someone else. + + Customer may redistribute and use SOFTWARE in source code form provided (a) Customer Applications of SOFTWARE add primary and substantial functionality, and are not merely a set or subset of any of the functionality of the SOFTWARE, or a set or subset of any of the code or other files of the SOFTWARE; (b) the source code retains all source code comments, including all copyright notices, without modification; (c) Customer does do not permit further redistribution of SOFTWARE by their customers; (d) Customer includes a valid copyright notice on their Application; and (e) Customer agrees to indemnify, hold harmless, and defend GubuSoft from and against any claims or lawsuits, including attorneys' fees, that arise or result from the use or distribution of Customer's Application. + + Customer may redistribute and use SOFTWARE in binary form provided (a) Customer Applications of SOFTWARE add primary and substantial functionality, and are not merely a set or subset of any of the functionality of the SOFTWARE, or a set or subset of any of the code or other files of the SOFTWARE; (b) Customer agrees to indemnify, hold harmless, and defend GubuSoft from and against any claims or lawsuits, including attorneys' fees, that arise or result from the use or distribution of Customer's Application; and (c) the following notices are included in the documentation and/or other materials provided with the Customer's Application: + + Copyright (C) 2006 Conor O'Mahony (gubusoft@gubusoft.com) + + All rights reserved. + + This application includes the TreeView script. + + You are not authorized to download and/or use the TreeView source code from this application for your own purposes. For your own FREE copy of the TreeView script, please visit the http://www.treeview.net Web site. + + THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + If Customer is using the free version of SOFTWARE, Customer must ensure that the "JavaScript Tree Menu" link at the top of the TreeView is visible and readable in their Web page or application. + + Customer may not harm the GUBUSOFT intellectual property rights using any media or via any electronic or other method now known or later discovered. + + Customer may not use the GubuSoft name, the name of the TreeView author, or the names of any source code contributors to endorse or promote products derived from this SOFTWARE without specific prior written permission. + + Customer may not utilize the SOFTWARE in a manner which is disparaging to GUBUSOFT. + + 3. TERMINATION + + This LICENSE will automatically terminate if Customer fails to comply with any of the terms and conditions hereof. In such event, Customer must destroy all copies of the SOFTWARE and all of its component parts. + + Defensive Suspension. If Customer commences or participates in any legal proceeding against GUBUSOFT, then GUBUSOFT may, in its sole discretion, suspend or terminate all license grants and any other rights provided under this LICENSE during the pendency of such legal proceedings. + + 4. COPYRIGHT + + All title and copyrights in and to the SOFTWARE (including but not limited to all images, photographs, animations, video, audio, music, text, and other information incorporated into the SOFTWARE), the accompanying printed materials, and any copies of the SOFTWARE, are owned by GUBUSOFT. The SOFTWARE is protected by copyright laws and international treaty provisions. Accordingly, Customer is required to treat the SOFTWARE like any other copyrighted material, except as otherwise allowed pursuant to this LICENSE and that it may make one copy of the SOFTWARE solely for backup or archive purposes. + + 5. APPLICABLE LAW + + This LICENSE shall be deemed to have been made in, and shall be construed pursuant to, the laws of the State of California. The United Nations Convention on Contracts for the International Sale of Goods is specifically disclaimed. + + 6. DISCLAIMER OF WARRANTIES AND LIMITATION ON LIABILITY + + 6.1 No Warranties. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE SOFTWARE IS PROVIDED "AS IS" AND GUBUSOFT AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + 6.2 No Liability for Consequential Damages. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL GUBUSOFT BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF GUBUSOFT HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. MISCELLANEOUS + + If any provision of this LICENSE is inconsistent with, or cannot be fully enforced under, the law, such provision will be construed as limited to the extent necessary to be consistent with and fully enforceable under the law. This LICENSE is the final, complete and exclusive agreement between the parties relating to the subject matter hereof, and supersedes all prior or contemporaneous understandings and agreements relating to such subject matter, whether oral or written. This LICENSE may only be modified in writing signed by an authorized officer of GUBUSOFT. + + 8. ASSIGNMENT + + GUBUSOFT may assign or otherwise transfer any of its rights or obligations under this LICENSE agreement. json: treeview-developer.json - yml: treeview-developer.yml + yaml: treeview-developer.yml html: treeview-developer.html - text: treeview-developer.LICENSE + license: treeview-developer.LICENSE - license_key: treeview-distributor + category: Proprietary Free spdx_license_key: LicenseRef-scancode-treeview-distributor other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + TreeView License: Distributor's License + + This License For Customer Use of GubuSoft TreeView Software ("LICENSE") is the agreement which governs use of the TreeView software by GubuSoft ("GUBUSOFT") downloadable herefrom, including computer software and associated documentation ("SOFTWARE"). By downloading, installing, copying, or otherwise using the SOFTWARE, you agree to be bound by the terms of this LICENSE. If you do not agree to the terms of this LICENSE, do not use the SOFTWARE. + + GUBUSOFT grants Customer a royalty-free, perpetual license to use SOFTWARE with unlimited server CPUs and internet domains. An unlimited number of end users may access and use the SOFTWARE. Customer may redistribute SOFTWARE subject to limitations. GUBUSOFT grants Customer rights to modify the source code, for use within their application. + + 1. DEFINITIONS + + 1.1 Customer. Customer means the entity or individual that downloads the SOFTWARE. + + 2. GRANT OF LICENSE + + 2.1 GUBUSOFT hereby grants Customer the following non-exclusive, non-transferable right to use the SOFTWARE. + + 2.1.3 LIMITATIONS + + Customer may not rent, lease, or transfer the rights to the SOFTWARE to someone else. + + Customer may redistribute and use SOFTWARE in source code form provided (a) Customer Applications of SOFTWARE add primary and substantial functionality, and are not merely a set or subset of any of the functionality of the SOFTWARE, or a set or subset of any of the code or other files of the SOFTWARE; (b) the source code retains all source code comments, including all copyright notices, without modification; (c) Customer includes a valid copyright notice on their Application; and (d) Customer agrees to indemnify, hold harmless, and defend GubuSoft from and against any claims or lawsuits, including attorneys' fees, that arise or result from the use or distribution of Customer's Application. + + Customer may redistribute and use SOFTWARE in binary form provided (a) Customer Applications of SOFTWARE add primary and substantial functionality, and are not merely a set or subset of any of the functionality of the SOFTWARE, or a set or subset of any of the code or other files of the SOFTWARE; (b) Customer agrees to indemnify, hold harmless, and defend GubuSoft from and against any claims or lawsuits, including attorneys' fees, that arise or result from the use or distribution of Customer's Application; and (c) the following notices are included in the documentation and/or other materials provided with the Customer's Application: + + Copyright (C) 2006 Conor O'Mahony (gubusoft@gubusoft.com) + + All rights reserved. + + This application includes the TreeView script. + + You are not authorized to download and/or use the TreeView source code from this application for your own purposes. For your own FREE copy of the TreeView script, please visit the http://www.treeview.net Web site. + + THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + If Customer is using the free version of SOFTWARE, Customer must ensure that the "JavaScript Tree Menu" link at the top of the TreeView is visible and readable in their Web page or application. + + Customer may not harm the GUBUSOFT intellectual property rights using any media or via any electronic or other method now known or later discovered. + + Customer may not use the GubuSoft name, the name of the TreeView author, or the names of any source code contributors to endorse or promote products derived from this SOFTWARE without specific prior written permission. + + Customer may not utilize the SOFTWARE in a manner which is disparaging to GUBUSOFT. + + 3. TERMINATION + + This LICENSE will automatically terminate if Customer fails to comply with any of the terms and conditions hereof. In such event, Customer must destroy all copies of the SOFTWARE and all of its component parts. + + Defensive Suspension. If Customer commences or participates in any legal proceeding against GUBUSOFT, then GUBUSOFT may, in its sole discretion, suspend or terminate all license grants and any other rights provided under this LICENSE during the pendency of such legal proceedings. + + 4. COPYRIGHT + + All title and copyrights in and to the SOFTWARE (including but not limited to all images, photographs, animations, video, audio, music, text, and other information incorporated into the SOFTWARE), the accompanying printed materials, and any copies of the SOFTWARE, are owned by GUBUSOFT. The SOFTWARE is protected by copyright laws and international treaty provisions. Accordingly, Customer is required to treat the SOFTWARE like any other copyrighted material, except as otherwise allowed pursuant to this LICENSE and that it may make one copy of the SOFTWARE solely for backup or archive purposes. + + 5. APPLICABLE LAW + + This LICENSE shall be deemed to have been made in, and shall be construed pursuant to, the laws of the State of California. The United Nations Convention on Contracts for the International Sale of Goods is specifically disclaimed. + + 6. DISCLAIMER OF WARRANTIES AND LIMITATION ON LIABILITY + + 6.1 No Warranties. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE SOFTWARE IS PROVIDED "AS IS" AND GUBUSOFT AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + 6.2 No Liability for Consequential Damages. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL GUBUSOFT BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF GUBUSOFT HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. MISCELLANEOUS + + If any provision of this LICENSE is inconsistent with, or cannot be fully enforced under, the law, such provision will be construed as limited to the extent necessary to be consistent with and fully enforceable under the law. This LICENSE is the final, complete and exclusive agreement between the parties relating to the subject matter hereof, and supersedes all prior or contemporaneous understandings and agreements relating to such subject matter, whether oral or written. This LICENSE may only be modified in writing signed by an authorized officer of GUBUSOFT. + + 8. ASSIGNMENT + + GUBUSOFT may assign or otherwise transfer any of its rights or obligations under this LICENSE agreement. json: treeview-distributor.json - yml: treeview-distributor.yml + yaml: treeview-distributor.yml html: treeview-distributor.html - text: treeview-distributor.LICENSE + license: treeview-distributor.LICENSE - license_key: triptracker + category: Proprietary Free spdx_license_key: LicenseRef-scancode-triptracker other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + This code is the property of Klika d.o.o. The code + may not be included in, invoked from, or otherwise + used in any software, service, device, or process + which is sold, exchanged for profit, or for which + a license, subscription, or royalty fee is charged. + + Permission is granted to use this code for personal, + educational, research, or commercial purposes, provided + this notice is included, and provided this code is not + used as described in the above paragraph. + + This code may not be modified without express + permission of Klika. You may not delete, disable, or in + any manner alter distinctive brand features rendered + by the code. The use of this code in derivative work is + permitted, provided that the code and this notice are + included in full, and provided that the code is used in + accordance with these terms. + + Email: info at triptracker.net + Web: http://slideshow.triptracker.net json: triptracker.json - yml: triptracker.yml + yaml: triptracker.yml html: triptracker.html - text: triptracker.LICENSE + license: triptracker.LICENSE - license_key: trolltech-gpl-exception-1.0 + category: Copyleft spdx_license_key: LicenseRef-scancode-trolltech-gpl-exception-1.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: "Trolltech GPL Exception version 1.0\nAdditional rights granted beyond the GPL (the\ + \ \"Exception\").\n\nAs a special exception to the terms and conditions of version 2.0 of\ + \ the GPL,\nTrolltech hereby grants you the rights described below, provided you agree to\n\ + the terms and conditions in this Exception, including its obligations and\nrestrictions\ + \ on use.\n\nNothing in this Exception gives you or anyone else the right to change the\n\ + licensing terms of the Qt Open Source Edition.\n\nBelow, \"Licensed Software\" shall refer\ + \ to the software licensed under the GPL\nand this exception.\n\n1) The right to use Open\ + \ Source Licenses not compatible with the GNU\nGeneral Public License: You may link software\ + \ (hereafter referred to as \"Your\nSoftware\") against the Licensed Software and/or distribute\ + \ binaries of Your\nSoftware linked against the Licensed Software, provided that:\n\nA)\ + \ Your Software is licensed under one of the following licenses:\n\nLicense name \ + \ Version(s)/Copyright Date\n Academic Free License 2.0\ + \ or 2.1\n Apache Software License 1.0 or 1.1\n Apache License \ + \ 2.0\n Apple Public Source License 2.0\n Artistic license \ + \ From Perl 5.8.0\n BSD license \"July 22 1999\"\ + \n Common Public License 1.0\n GNU Library or \"Lesser\" \ + \ 2.0 or 2.1\n General Public License (LGPL)\n Jabber Open Source License \ + \ 1.0\n MIT License (as attached)\n Mozilla Public License\ + \ (MPL) 1.0 or 1.1\n Open Software License 2.0\n OpenSSL license\ + \ (with original \"2003\" (\"1998\")\n SSLeay license) \n PHP License \ + \ 3.0\n Python license (CNRI Python License) (as attached)\n Python\ + \ Software Foundation License 2.1.1\n Q Public License v1.0\n \ + \ Sleepycat License \"1999\"\n W3C License \ + \ \"2001\"\n X11 License X11R6.6\n Zlib/libpng License \ + \ (as attached)\n Zope Public License 2.0\n\n (Licenses\ + \ without a specific version number or date are reproduced\nin the file GPL_Exception1.0_Addendum.txt\ + \ in your source package).\n\nand\n\nB) You must, on request, make a complete package including\ + \ the complete source\ncode of Your Software (as defined in the GNU General Public License\ + \ version\n2, section 3, but excluding anything excluded by the special exception in the\n\ + same section) available to Trolltech under the same license as that granted\nto other recipients\ + \ of the source code of Your Software.\n\nand\n\nC) Your or any other contributor's rights\ + \ to:\n\n i) distribute the source code of Your Software to anyone for\n \ + \ any purpose;\n\n and\n\n ii) publicly discuss the development project\ + \ for Your\n Software and its goals in any form and in any forum\n\nare not prohibited\ + \ by any legal instrument, including but not limited to\ncontracts, non-disclosure agreements,\ + \ and employee contracts.\n\n2) The right to link non-Open Source applications with pre-installed\ + \ versions\nof the Licensed Software: You may link applications with binary pre-installed\n\ + versions of the Licensed Software, provided that such applications have been\ndeveloped\ + \ and are deployed in accordance in accordance with the terms and\nconditions of the Qt\ + \ Commercial License\nAgreement." json: trolltech-gpl-exception-1.0.json - yml: trolltech-gpl-exception-1.0.yml + yaml: trolltech-gpl-exception-1.0.yml html: trolltech-gpl-exception-1.0.html - text: trolltech-gpl-exception-1.0.LICENSE + license: trolltech-gpl-exception-1.0.LICENSE - license_key: trolltech-gpl-exception-1.1 + category: Copyleft spdx_license_key: LicenseRef-scancode-trolltech-gpl-exception-1.1 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: | + Trolltech GPL Exception Version 1.1 + + Additional rights granted beyond the GPL (the "Exception"). + + As a special exception to the terms and conditions of version 2.0 of the GPL, Trolltech hereby grants you the rights described below, provided you agree to the terms and conditions in this Exception, including its obligations and restrictions on use. + + Nothing in this Exception gives you or anyone else the right to change the licensing terms of the Qt Open Source Edition. + + Below, "Licensed Software" shall refer to the software licensed under the GPL and this exception. + + 1) The right to use Open Source Licenses not compatible with the GNU General Public License: You may link software (hereafter referred to as "Your Software") against the Licensed Software and/or distribute binaries of Your Software linked against the Licensed Software, provided that: + + A) Your Software is licensed under one of the following licenses: + + License name Version(s)/Copyright Date + Academic Free License 2.0, 2.1, 3.0 + Apache Software License 1.0 or 1.1 + Apache License 2.0 + Apple Public Source License 2.0 + Artistic license From Perl 5.8.0 + BSD license "July 22 1999" + Common Public License 1.0 + Eclipse Public License 1.0 + GNU Library or "Lesser" General Public License (LGPL) 2.0 or 2.1 + Jabber Open Source License 1.0 + MIT License (as set forth in the addendum file) + Mozilla Public License (MPL) 1.0 or 1.1 + Open Software License 2.0, 3.0 + OpenSSL license (with original SSLeay license) "2003" ("1998") + PHP License 3.0 + Python license (CNRI Python License) (as set forth in the addendum file) + Python Software Foundation License 2.1.1 + Q Public License v1.0 + Sleepycat License "1999" + W3C License "2001" + X11 License X11R6.6 + Zlib/libpng License (as set forth in the addendum file) + Zope Public License 2.0, 2.1 + + (Licenses without a specific version number or date are reproduced in the Addendum to the Trolltech GPL Exception Version 1.0. + + and + + B) You must, on request, make a complete package including the complete source code of Your Software (as defined in the GNU General Public License version 2, section 3, but excluding anything excluded by the special exception in the same section) available to Trolltech under the same license as that granted to other recipients of the source code of Your Software. + + and + + C) Your or any other contributor's rights to: + + i) distribute the source code of Your Software to anyone for any purpose; + + and + + ii) publicly discuss the development project for Your Software and its goals in any form and in any forum + + are not prohibited by any legal instrument, including but not limited to contracts, non-disclosure agreements, and employee contracts. + + 2) The right to link non-Open Source applications with pre-installed versions of the Licensed Software: You may link applications with binary pre-installed versions of the Licensed Software, provided that such applications have been developed and are deployed in accordance with the terms and conditions of the Qt Commercial License Agreement. json: trolltech-gpl-exception-1.1.json - yml: trolltech-gpl-exception-1.1.yml + yaml: trolltech-gpl-exception-1.1.yml html: trolltech-gpl-exception-1.1.html - text: trolltech-gpl-exception-1.1.LICENSE + license: trolltech-gpl-exception-1.1.LICENSE - license_key: trolltech-gpl-exception-1.2 + category: Copyleft spdx_license_key: LicenseRef-scancode-trolltech-gpl-exception-1.2 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft + text: | + Trolltech GPL Exception version 1.2 + =================================== + + Additional rights granted beyond the GPL (the "Exception"). + + As a special exception to the terms and conditions of GPL version 2.0 or GPL + version 3.0, Trolltech hereby grants you the rights described below, provided + you agree to the terms and conditions in this Exception, including its + obligations and restrictions on use. + + Nothing in this Exception gives you or anyone else the right to change the + licensing terms of the Qt Open Source Edition. + + Below, "Licensed Software" shall refer to the software licensed under the GPL + version 2.0 or GPL version 3.0 and this exception. + + 1) The right to use Open Source Licenses not compatible with the GNU + General Public License version 2.0 or GNU General Public License version + 3.0: You may link software (hereafter referred to as "Your Software") + against the Licensed Software and/or distribute binaries of Your Software + linked against the Licensed Software, provided that: + + A) Your Software is licensed under one of the following licenses: + + + License name Version(s)/Copyright Date + Academic Free License 2.0, 2.1, 3.0 + Apache Software License 1.0 or 1.1 + Apache License 2.0 + Apple Public Source License 2.0 + Artistic license (as set forth in the addendum file) + BSD license "July 22 1999" + Common Development and Distribution + License (CDDL) 1.0 + Common Public License 1.0 + Eclipse Public License 1.0 + GNU Library or "Lesser" + General Public License (LGPL) 2.0, 2.1, 3.0 + Jabber Open Source License 1.0 + MIT License (as set forth in the addendum file) + Mozilla Public License (MPL) 1.0 or 1.1 + Open Software License 2.0, 3.0 + OpenSSL license (with original + SSLeay license) "2003" ("1998") + PHP License 3.0 + Python license (CNRI Python License) (as set forth in the addendum file) + Python Software Foundation License 2.1.1 + Q Public License 1.0 + Sleepycat License "1999" + W3C License "2001" + X11 License X11R6.6 + Zlib/libpng License (as set forth in the addendum file) + Zope Public License 2.0, 2.1 + + + (Licenses without a specific version number or date are reproduced + in the file GPL_Exception_Addendum.txt in your source package). + + + and + + B) You must, on request, make a complete package including + the complete source code of Your Software (as defined + in the GNU General Public License version 2, section 3, + but excluding anything excluded by the special + exception in the same section) available to Trolltech + under the same license as that granted to other + recipients of the source code of Your Software. + + and + + C) Your or any other contributor's rights to: + + i) distribute the source code of Your Software to anyone for + any purpose; + + and + + ii) publicly discuss the development project for Your + Software and its goals in any form and in any forum + + are not prohibited by any legal instrument, including but not limited to + contracts, non-disclosure agreements, and employee contracts. + + + 2) The right to link non-Open Source applications with pre-installed versions of + the Licensed Software: You may link applications with binary pre-installed + versions of the Licensed Software, provided that such applications have been + developed and are deployed in ac cordance with the terms and conditions of the + Qt Commercial License Agreement. json: trolltech-gpl-exception-1.2.json - yml: trolltech-gpl-exception-1.2.yml + yaml: trolltech-gpl-exception-1.2.yml html: trolltech-gpl-exception-1.2.html - text: trolltech-gpl-exception-1.2.LICENSE + license: trolltech-gpl-exception-1.2.LICENSE - license_key: truecrypt-3.1 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-truecrypt-3.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "TrueCrypt License Version 3.1\n\nSoftware distributed under this license is distributed\ + \ on an \"AS\nIS\" BASIS WITHOUT WARRANTIES OF ANY KIND. THE AUTHORS AND\nDISTRIBUTORS OF\ + \ THE SOFTWARE DISCLAIM ANY LIABILITY. ANYONE WHO\nUSES, COPIES, MODIFIES, OR (RE)DISTRIBUTES\ + \ ANY PART OF THE\nSOFTWARE IS, BY SUCH ACTION(S), ACCEPTING AND AGREEING TO BE\nBOUND BY\ + \ ALL TERMS AND CONDITIONS OF THIS LICENSE. IF YOU DO NOT\nACCEPT THEM, DO NOT USE, COPY,\ + \ MODIFY, NOR (RE)DISTRIBUTE THE\nSOFTWARE, NOR ANY PART(S) THEREOF.\n\n\nI. Definitions\n\ + \n1. \"This Product\" means the work (including, but not limited to,\nsource code, graphics,\ + \ texts, and accompanying files) made\navailable under and governed by this version of this\ + \ license\n(\"License\"), as may be indicated by, but is not limited to,\ncopyright notice(s)\ + \ attached to or included in the work.\n\n2. \"You\" means (and \"Your\" refers to) an individual\ + \ or a legal\nentity (e.g., a non-profit organization, commercial\norganization, government\ + \ agency, etc.) exercising permissions\ngranted by this License.\n\n3. \"Modification\"\ + \ means (and \"modify\" refers to) any alteration\nof This Product, including, but not limited\ + \ to, addition to or\ndeletion from the substance or structure of This Product,\ntranslation\ + \ into another language, repackaging, alteration or\nremoval of any file included with This\ + \ Product, and addition of\nany new files to This Product.\n\n4. \"Your Product\" means\ + \ This Product modified by You, or any\nwork You derive from (or base on) any part of This\ + \ Product. In\naddition, \"Your Product\" means any work in which You include any\n(modified\ + \ or unmodified) portion of This Product. However, if\nthe work in which you include it\ + \ is an aggregate software\ndistribution (such as an operating system distribution or a\n\ + cover CD-ROM of a magazine) containing multiple separate\nproducts, then the term \"Your\ + \ Product\" includes only those\nproducts (in the aggregate software distribution) that\ + \ use,\ninclude, or depend on a modified or unmodified version of This\nProduct (and the\ + \ term \"Your Product\" does not include the whole\naggregate software distribution). For\ + \ the purposes of this\nLicense, a product suite consisting of two or more products is\n\ + considered a single product (operating system distributions and\ncover media of magazines\ + \ are not considered product suites).\n\n5. \"Distribution\" means (and \"distribute\" refers\ + \ to), regardless\nof means or methods, conveyance, transfer, providing, or making\navailable\ + \ of This/Your Product or portions thereof to third\nparties (including, but not limited\ + \ to, making This/Your\nProduct, or portions thereof, available for download to third\n\ + parties, whether or not any third party has downloaded the\nproduct, or any portion thereof,\ + \ made available for download).\n\n\nII. Use, Copying, and Distribution of This Product\n\ + \n1. Provided that You comply with all applicable terms and\nconditions of this License,\ + \ You may make copies of This Product\n(unmodified) and distribute copies of This Product\ + \ (unmodified)\nthat are not included in another product forming Your Product\n(except as\ + \ permitted under Chapter III). Note: For terms and\nconditions for copying and distribution\ + \ of modified versions of\nThis Product, see Chapter III.\n\n2. Provided that You comply\ + \ with all applicable terms and\nconditions of this License, You may use This Product freely\ + \ (see\nalso Chapter III) on any number of computers/systems for non-\ncommercial and/or\ + \ commercial purposes.\n\n\nIII. Modification, Derivation, and Inclusion in Other Products\n\ + \n1. If all conditions specified in the following paragraphs in\nthis Chapter (III) are\ + \ met (for exceptions, see Section III.2)\nand if You comply with all other applicable terms\ + \ and conditions\nof this License, You may modify This Product (thus forming Your\nProduct),\ + \ derive new works from This Product or portions thereof\n(thus forming Your Product), include\ + \ This Product or portions\nthereof in another product (thus forming Your Product, unless\n\ + defined otherwise in Chapter I), and You may use (for non-\ncommercial and/or commercial\ + \ purposes), copy, and/or distribute\nYour Product.\n\n a. The name of Your Product (or\ + \ of Your modified version of\n This Product) must not contain the name TrueCrypt (for\n\ + \ example, the following names are not allowed: TrueCrypt,\n TrueCrypt+, TrueCrypt\ + \ Professional, iTrueCrypt, etc.) nor\n any other names confusingly similar to the name\ + \ TrueCrypt\n (e.g., True-Crypt, True Crypt, TruKrypt, etc.)\n\n All occurrences of\ + \ the name TrueCrypt that could reasonably\n be considered to identify Your Product must\ + \ be removed from\n Your Product and from any associated materials. Logo(s)\n included\ + \ in (or attached to) Your Product (and in/to\n associated materials) must not incorporate\ + \ and must not be\n confusingly similar to any of the TrueCrypt logos\n (including,\ + \ but not limited to, the non-textual logo\n consisting primarily of a key in stylized\ + \ form) or\n portion(s) thereof. All graphics contained in This Product\n (logos,\ + \ icons, etc.) must be removed from Your Product (or\n from Your modified version of\ + \ This Product) and from any\n associated materials.\n\n b. The following phrases\ + \ must be removed from Your Product\n and from any associated materials, except the text\ + \ of this\n License: \"A TrueCrypt Foundation Release\", \"Released by\n TrueCrypt\ + \ Foundation\", \"This is a TrueCrypt Foundation\n release.\"\n\n c. Your Product\ + \ (and any associated materials, e.g., the\n documentation, the content of the official\ + \ web site of Your\n Product, etc.) must not present any Internet address\n containing\ + \ the domain name truecrypt (or any domain name\n that forwards to the domain name truecrypt)\ + \ in a manner\n that might suggest that it is where information about Your\n Product\ + \ may be obtained or where bugs found in Your Product\n may be reported or where support\ + \ for Your Product may be\n available or otherwise attempt to indicate that the domain\n\ + \ name truecrypt is associated with Your Product.\n\n d. The complete source code\ + \ of Your Product must be freely\n and publicly available (for exceptions, see Section\ + \ III.2)\n at least until You cease to distribute Your Product. This\n condition can\ + \ be met in one or both of the following ways:\n (i) You include the complete source\ + \ code of Your Product\n with every copy of Your Product that You make and distribute\n\ + \ and You make all such copies of Your Product available to\n the general public free\ + \ of charge, and/or (ii) You include\n information (valid and correct at least until\ + \ You cease to\n distribute Your Product) about where the complete source\n code of\ + \ Your Product can be obtained free of charge (e.g.,\n an Internet address) or for a\ + \ reasonable reproduction fee\n with every copy of Your Product that You make and distribute\n\ + \ and, if there is a web site officially associated with Your\n Product, You include\ + \ the aforementioned information about\n the source code on a freely and publicly accessible\ + \ web\n page to which such web site links via an easily viewable\n hyperlink (at least\ + \ until You cease to distribute Your\n Product).\n\n The source code of Your Product\ + \ must not be deliberately\n obfuscated and it must not be in an intermediate form (e.g.,\n\ + \ the output of a preprocessor). Source code means the\n preferred form in which a\ + \ programmer would usually modify\n the program.\n\n Portions of the source code of\ + \ Your Product not contained in\n This Product (e.g., portions added by You in creating\ + \ Your\n Product, whether created by You or by third parties) must be\n available\ + \ under license(s) that (however, see also\n Subsection III.1.e) allow(s) anyone to modify\ + \ and derive new\n works from the portions of the source code that are not\n contained\ + \ in This Product and to use, copy, and redistribute\n such modifications and/or derivative\ + \ works. The license(s)\n must be perpetual, non-exclusive, royalty-free, no-charge,\n\ + \ and worldwide, and must not invalidate, weaken, restrict,\n interpret, amend, modify,\ + \ interfere with or otherwise affect\n any part, term, provision, or clause of this License.\ + \ The\n text(s) of the license(s) must be included with every copy\n of Your Product\ + \ that You make and distribute.\n\n e. You must not change the license terms of This\ + \ Product in\n any way (adding any new terms is considered changing the\n license\ + \ terms even if the original terms are retained),\n which means, e.g., that no part of\ + \ This Product may be put\n under another license. You must keep intact all the legal\n\ + \ notices contained in the source code files. You must include\n the following items\ + \ with every copy of Your Product that You\n make and distribute: a clear and conspicuous\ + \ notice stating\n that Your Product or portion(s) thereof is/are governed by\n this\ + \ version of the TrueCrypt License, a verbatim copy of\n this version of the TrueCrypt\ + \ License (as contained herein),\n a clear and conspicuous notice containing information\ + \ about\n where the included copy of the License can be found, and an\n appropriate\ + \ copyright notice.\n\n\n2. You are not obligated to comply with Subsection III.1.d if\n\ + Your Product is not distributed (i.e., Your Product is available\nonly to You).\n\n\nIV.\ + \ Disclaimer of Liability, Disclaimer of Warranty, Indemnification\n\nYou expressly acknowledge\ + \ and agree to the following:\n\n1. IN NO EVENT WILL ANY (CO)AUTHOR OF THIS PRODUCT, OR\ + \ ANY\nAPPLICABLE INTELLECTUAL-PROPERTY OWNER, OR ANY OTHER PARTY WHO\nMAY COPY AND/OR (RE)DISTRIBUTE\ + \ THIS PRODUCT OR PORTIONS THEREOF,\nAS MAY BE PERMITTED HEREIN, BE LIABLE TO YOU OR TO\ + \ ANY OTHER\nPARTY FOR ANY DAMAGES, INCLUDING, BUT NOT LIMITED TO, ANY\nDIRECT, INDIRECT,\ + \ GENERAL, SPECIAL, INCIDENTAL, PUNITIVE,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\ + \ BUT NOT LIMITED\nTO, CORRUPTION OR LOSS OF DATA, ANY LOSSES SUSTAINED BY YOU OR\nTHIRD\ + \ PARTIES, A FAILURE OF THIS PRODUCT TO OPERATE WITH ANY\nOTHER PRODUCT, PROCUREMENT OF\ + \ SUBSTITUTE GOODS OR SERVICES, OR\nBUSINESS INTERRUPTION), WHETHER IN CONTRACT, STRICT\ + \ LIABILITY,\nTORT (INCLUDING, BUT NOT LIMITED TO, NEGLIGENCE) OR OTHERWISE,\nARISING OUT\ + \ OF THE USE, COPYING, MODIFICATION, OR\n(RE)DISTRIBUTION OF THIS PRODUCT (OR A PORTION\ + \ THEREOF) OR OF\nYOUR PRODUCT (OR A PORTION THEREOF), OR INABILITY TO USE THIS\nPRODUCT\ + \ (OR A PORTION THEREOF), EVEN IF SUCH DAMAGES (OR THE\nPOSSIBILITY OF SUCH DAMAGES) ARE/WERE\ + \ PREDICTABLE OR KNOWN TO\nANY (CO)AUTHOR, INTELLECTUAL-PROPERTY OWNER, OR ANY OTHER PARTY.\n\ + \n2. THIS PRODUCT IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, WHETHER EXPRESS,\ + \ IMPLIED, OR STATUTORY, INCLUDING, BUT NOT\nLIMITED TO, THE WARRANTIES OF MERCHANTABILITY,\ + \ FITNESS FOR A\nPARTICULAR PURPOSE, AND NON-INFRINGEMENT. THE ENTIRE RISK AS TO\nTHE QUALITY\ + \ AND PERFORMANCE OF THIS PRODUCT IS WITH YOU. SHOULD\nTHIS PRODUCT PROVE DEFECTIVE, YOU\ + \ ASSUME THE COST OF ALL\nNECESSARY SERVICING, REPAIR, OR CORRECTION.\n\n3. THIS PRODUCT\ + \ MAY INCORPORATE IMPLEMENTATIONS OF CRYPTOGRAPHIC\nALGORITHMS THAT ARE REGULATED (E.G.,\ + \ SUBJECT TO EXPORT/IMPORT\nCONTROL REGULATIONS) OR ILLEGAL IN SOME COUNTRIES. IT IS SOLELY\n\ + YOUR RESPONSIBILITY TO VERIFY THAT IT IS LEGAL TO IMPORT AND/OR\n(RE)EXPORT AND/OR USE THIS\ + \ PRODUCT (OR PORTIONS THEREOF) IN\nCOUNTRIES WHERE YOU INTEND TO USE IT AND/OR TO WHICH\ + \ YOU INTEND\nTO IMPORT IT AND/OR FROM WHICH YOU INTEND TO EXPORT IT, AND IT\nIS SOLELY\ + \ YOUR RESPONSIBILITY TO COMPLY WITH ANY APPLICABLE\nREGULATIONS, RESTRICTIONS, AND LAWS.\n\ + \n4. YOU SHALL INDEMNIFY, DEFEND AND HOLD ALL (CO)AUTHORS OF THIS\nPRODUCT, AND APPLICABLE\ + \ INTELLECTUAL-PROPERTY OWNERS, HARMLESS\nFROM AND AGAINST ANY AND ALL LIABILITY, DAMAGES,\ + \ LOSSES,\nSETTLEMENTS, PENALTIES, FINES, COSTS, EXPENSES (INCLUDING\nREASONABLE ATTORNEYS'\ + \ FEES), DEMANDS, CAUSES OF ACTION, CLAIMS,\nACTIONS, PROCEEDINGS, AND SUITS, DIRECTLY RELATED\ + \ TO OR ARISING\nOUT OF YOUR USE, INABILITY TO USE, COPYING, (RE)DISTRIBUTION,\nIMPORT AND/OR\ + \ (RE)EXPORT OF THIS PRODUCT (OR PORTIONS THEREOF)\nAND/OR YOUR BREACH OF ANY TERM OF THIS\ + \ LICENSE.\n\n\nV. Trademarks\n\nThis License does not grant permission to use trademarks\n\ + associated with (or applying to) This Product, except for fair\nuse as defined by applicable\ + \ law and except for use expressly\npermitted or required by this License. Any attempt otherwise\ + \ to\nuse trademarks associated with (or applying to) This Product\nautomatically and immediately\ + \ terminates Your rights under This\nLicense and may constitute trademark infringement (which\ + \ may be\nprosecuted).\n\n\nVI. General Terms and Conditions, Miscellaneous Provisions\n\ + \n1. ANYONE WHO USES AND/OR COPIES AND/OR MODIFIES AND/OR CREATES\nDERIVATIVE WORKS OF AND/OR\ + \ (RE)DISTRIBUTES THIS PRODUCT, OR ANY\nPORTION(S) THEREOF, IS, BY SUCH ACTION(S), AGREEING\ + \ TO BE BOUND\nBY AND ACCEPTING ALL TERMS AND CONDITIONS OF THIS LICENSE (AND\nTHE RESPONSIBILITIES\ + \ AND OBLIGATIONS CONTAINED IN THIS LICENSE).\nIF YOU DO NOT ACCEPT (AND AGREE TO BE BOUND\ + \ BY) ALL TERMS AND\nCONDITIONS OF THIS LICENSE, DO NOT USE, COPY, MODIFY, CREATE\nDERIVATIVE\ + \ WORKS OF, NOR (RE)DISTRIBUTE THIS PRODUCT, NOR ANY\nPORTION(S) THEREOF.\n\n2. YOU MAY\ + \ NOT USE, MODIFY, COPY, CREATE DERIVATIVE WORKS OF,\n(RE)DISTRIBUTE, OR SUBLICENSE THIS\ + \ PRODUCT, OR PORTION(S)\nTHEREOF, EXCEPT AS EXPRESSLY PROVIDED IN THIS LICENSE (EVEN IF\n\ + APPLICABLE LAW GIVES YOU MORE RIGHTS). ANY ATTEMPT (EVEN IF\nPERMITTED BY APPLICABLE LAW)\ + \ OTHERWISE TO USE, MODIFY, COPY,\nCREATE DERIVATIVE WORKS OF, (RE)DISTRIBUTE, OR SUBLICENSE\ + \ THIS\nPRODUCT, OR PORTION(S) THEREOF, AUTOMATICALLY AND IMMEDIATELY\nTERMINATES YOUR RIGHTS\ + \ UNDER THIS LICENSE AND CAN CONSTITUTE\nCOPYRIGHT INFRINGEMENT (WHICH MAY BE PROSECUTED).\ + \ ANY CONDITIONS\nAND RESTRICTIONS CONTAINED IN THIS LICENSE ARE ALSO LIMITATIONS\nON THE\ + \ SCOPE OF THIS LICENSE AND ALSO DEFINE THE SCOPE OF YOUR\nRIGHTS UNDER THIS LICENSE. YOUR\ + \ FAILURE TO COMPLY WITH THE TERMS\nAND CONDITIONS OF THIS LICENSE OR FAILURE TO PERFORM\ + \ ANY\nAPPLICABLE OBLIGATION IMPOSED BY THIS LICENSE AUTOMATICALLY AND\nIMMEDIATELY TERMINATES\ + \ YOUR RIGHTS UNDER THIS LICENSE AND CAN\nCAUSE OR BE CONSIDERED COPYRIGHT INFRINGEMENT\ + \ (WHICH MAY BE\nPROSECUTED). NOTHING IN THIS LICENSE SHALL IMPLY OR BE CONSTRUED\nAS A\ + \ PROMISE, OBLIGATION, OR COVENANT NOT TO SUE FOR COPYRIGHT\nOR TRADEMARK INFRINGEMENT IF\ + \ YOU DO NOT COMPLY WITH THE TERMS\nAND CONDITIONS OF THIS LICENSE.\n\n3. This License does\ + \ not constitute or imply a waiver of any\nintellectual property rights except as may be\ + \ otherwise\nexpressly provided in this License. This License does not\ntransfer, assign,\ + \ or convey any intellectual property rights\n(e.g., it does not transfer ownership of copyrights\ + \ or\ntrademarks).\n\n4. Subject to the terms and conditions of this License, You may\n\ + allow a third party to use Your copy of This Product (or a copy\nthat You make and distribute,\ + \ or Your Product) provided that the\nthird party explicitly accepts and agrees to be bound\ + \ by all\nterms and conditions of this License and the third party is not\nprohibited from\ + \ using This Product (or portions thereof) by this\nLicense (see, e.g., Section VI.7) or\ + \ by applicable law. However,\nYou are not obligated to ensure that the third party accepts\n\ + (and agrees to be bound by all terms of) this License if You\ndistribute only the self-extracting\ + \ package (containing This\nProduct) that does not allow the user to install (nor extract)\n\ + the files contained in the package until he or she accepts and\nagrees to be bound by all\ + \ terms and conditions of this License.\n\n5. Without specific prior written permission\ + \ from the authors of\nThis Product (or from their common representative), You must not\n\ + use the name of This Product, the names of the authors of This\nProduct, or the names of\ + \ the legal entities (or informal groups)\nof which the authors were/are members/employees,\ + \ to endorse or\npromote Your Product or any work in which You include a modified\nor unmodified\ + \ version of This Product, or to endorse or promote\nYou or Your affiliates, or in a way\ + \ that might suggest that Your\nProduct (or any work in which You include a modified or\n\ + unmodified version of This Product), You, or Your affiliates\nis/are endorsed by one or\ + \ more authors of This Product, or in a\nway that might suggest that one or more authors\ + \ of This Product\nis/are affiliated with You (or Your affiliates) or directly\nparticipated\ + \ in the creation of Your Product or of any work in\nwhich You include a modified or unmodified\ + \ version of This\nProduct.\n\n6. IF YOU ARE NOT SURE WHETHER YOU UNDERSTAND ALL PARTS OF\ + \ THIS\nLICENSE OR IF YOU ARE NOT SURE WHETHER YOU CAN COMPLY WITH ALL\nTERMS AND CONDITIONS\ + \ OF THIS LICENSE, YOU MUST NOT USE, COPY,\nMODIFY, CREATE DERIVATIVE WORKS OF, NOR (RE)DISTRIBUTE\ + \ THIS\nPRODUCT, NOR ANY PORTION(S) OF IT. YOU SHOULD CONSULT WITH A\nLAWYER.\n\n7. IF (IN\ + \ RELEVANT CONTEXT) ANY PROVISION OF CHAPTER IV OF THIS\nLICENSE IS UNENFORCEABLE, INVALID,\ + \ OR PROHIBITED UNDER\nAPPLICABLE LAW IN YOUR JURISDICTION, YOU HAVE NO RIGHTS UNDER\nTHIS\ + \ LICENSE AND YOU MUST NOT USE, COPY, MODIFY, CREATE\nDERIVATIVE WORKS OF, NOR (RE)DISTRIBUTE\ + \ THIS PRODUCT, NOR ANY\nPORTION(S) THEREOF.\n\n8. Except as otherwise provided in this\ + \ License, if any\nprovision of this License, or a portion thereof, is found to be\ninvalid\ + \ or unenforceable under applicable law, it shall not\naffect the validity or enforceability\ + \ of the remainder of this\nLicense, and such invalid or unenforceable provision shall be\n\ + construed to reflect the original intent of the provision and\nshall be enforced to the\ + \ maximum extent permitted by applicable\nlaw so as to effect the original intent of the\ + \ provision as\nclosely as possible.\n\n \n\n\nThird-Party Licenses\n\nThis Product contains\ + \ components that were created by third\nparties and that are governed by third-party licenses,\ + \ which are\ncontained hereinafter (separated by lines consisting of\nunderscores). Each\ + \ of the third-party licenses applies only to\n(portions of) the source code file(s) in\ + \ which the third-party\nlicense is contained or in which it is explicitly referenced,\n\ + and to compiled or otherwise processed forms of such source\ncode. None of the third-party\ + \ licenses applies to This Product\nas a whole, even when it uses terms such as \"product\"\ + ,\n\"program\", or any other equivalent terms/phrases. This Product\nas a whole is governed\ + \ by the TrueCrypt License (see above).\nSome of the third-party components have been modified\ + \ by the\nauthors of This Product. Unless otherwise stated, such\nmodifications and additions\ + \ are governed by the TrueCrypt\nLicense (see above). Note: Unless otherwise stated, graphics\ + \ and\nfiles that are not part of the source code are governed by the\nTrueCrypt License.\n\ + \n \n\nLicense agreement for Encryption for the Masses.\n\nCopyright (C) 1998-2000 Paul\ + \ Le Roux. All Rights Reserved.\n\nThis product can be copied and distributed free of charge,\n\ + including source code.\n\nYou may modify this product and source code, and distribute such\n\ + modifications, and you may derive new works based on this\nproduct, provided that:\n\n1.\ + \ Any product which is simply derived from this product cannot\nbe called E4M, or Encryption\ + \ for the Masses.\n\n2. If you use any of the source code in your product, and your\nproduct\ + \ is distributed with source code, you must include this\nnotice with those portions of\ + \ this source code that you use.\n\nOr,\n\nIf your product is distributed in binary form\ + \ only, you must\ndisplay on any packaging, and marketing materials which\nreference your\ + \ product, a notice which states:\n\n\"This product uses components written by Paul Le Roux\n\ + \"\n\n3. If you use any of the source code originally by Eric\ + \ Young,\nyou must in addition follow his terms and conditions.\n\n4. Nothing requires that\ + \ you accept this License, as you have\nnot signed it. However, nothing else grants you\ + \ permission to\nmodify or distribute the product or its derivative works.\n\nThese actions\ + \ are prohibited by law if you do not accept this\nLicense.\n\n5. If any of these license\ + \ terms is found to be to broad in\nscope, and declared invalid by any court or legal process,\ + \ you\nagree that all other terms shall not be so affected, and shall\nremain valid and\ + \ enforceable.\n\n6. THIS PROGRAM IS DISTRIBUTED FREE OF CHARGE, THEREFORE THERE\nIS NO\ + \ WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. UNLESS OTHERWISE\ + \ STATED THE PROGRAM IS PROVIDED\n\"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\ + \ OR\nIMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY\ + \ AND FITNESS FOR A PARTICULAR PURPOSE. THE\nENTIRE RISK AS TO THE QUALITY AND PERFORMANCE\ + \ OF THE PROGRAM IS\nWITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE\nCOST\ + \ OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n7. IN NO EVENT UNLESS REQUIRED BY\ + \ APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY\ + \ WHO MAY\nMODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE\nLIABLE TO YOU\ + \ FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,\nINCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\ + \ OUT OF THE USE OR\nINABILITY TO USE THE PROGRAM, INCLUDING BUT NOT LIMITED TO LOSS\nOF\ + \ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR\ + \ A FAILURE OF THE PROGRAM TO OPERATE WITH\nANY OTHER PROGRAMS, EVEN IF SUCH HOLDER OR OTHER\ + \ PARTY HAD\nPREVIOUSLY BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n \n\nCopyright\ + \ (c) 1998-2008, Brian Gladman, Worcester, UK.\nAll rights reserved.\n\nLICENSE TERMS\n\n\ + The free distribution and use of this software is allowed (with\nor without changes) provided\ + \ that:\n\n 1. source code distributions include the above copyright\n notice, this list\ + \ of conditions and the following\n disclaimer;\n\n 2. binary distributions include the\ + \ above copyright notice,\n this list of conditions and the following disclaimer in\n\ + \ their documentation;\n\n 3. the name of the copyright holder is not used to endorse\n\ + \ products built using this software without specific written\n permission.\n\nDISCLAIMER\n\ + \nThis software is provided 'as is' with no explicit or implied\nwarranties in respect of\ + \ its properties, including, but not\nlimited to, correctness and/or fitness for purpose.\n\ + \ \n\nCopyright (C) 2002-2004 Mark Adler, all rights reserved\nversion 1.8, 9 Jan 2004\n\ + \nThis software is provided 'as-is', without any express or\nimplied warranty. In no event\ + \ will the author be held liable\nfor any damages arising from the use of this software.\n\ + \nPermission is granted to anyone to use this software for any\npurpose, including commercial\ + \ applications, and to alter it and\nredistribute it freely, subject to the following restrictions:\n\ + \n1. The origin of this software must not be misrepresented; you\n must not claim that\ + \ you wrote the original software. If you\n use this software in a product, an acknowledgment\ + \ in the\n product documentation would be appreciated but is not\n required.\n2. Altered\ + \ source versions must be plainly marked as such, and\n must not be misrepresented as\ + \ being the original software.\n3. This notice may not be removed or altered from any source\n\ + \ distribution." json: truecrypt-3.1.json - yml: truecrypt-3.1.yml + yaml: truecrypt-3.1.yml html: truecrypt-3.1.html - text: truecrypt-3.1.LICENSE + license: truecrypt-3.1.LICENSE - license_key: tsl-2018 + category: Source-available spdx_license_key: LicenseRef-scancode-tsl-2018 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + TIMESCALE LICENSE AGREEMENT + + Posted Date: December 19, 2018 + + PLEASE READ CAREFULLY THIS TIMESCALE LICENSE AGREEMENT ("TSL Agreement"), WHICH + CONSTITUTES A LEGALLY BINDING AGREEMENT AND GOVERNS USE OF THE TIMESCALE + TIME-SERIES DATABASE SOFTWARE AND RELATED SOFTWARE THAT IS PROVIDED SUBJECT TO + THIS TSL AGREEMENT. BY INSTALLING OR USING SUCH SOFTWARE, YOU AGREE THAT YOU + HAVE READ AND AGREE TO BE BOUND BY THE TERMS AND CONDITIONS OF THIS TSL + AGREEMENT. IF YOU DO NOT AGREE WITH SUCH TERMS AND CONDITIONS, YOU MAY NOT + INSTALL OR USE SUCH SOFTWARE. IF YOU ARE INSTALLING OR USING SUCH SOFTWARE ON + BEHALF OF A LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE THE AUTHORITY + TO AGREE TO THE TERMS AND CONDITIONS OF THIS TSL AGREEMENT ON BEHALF OF THAT + LEGAL ENTITY AND THE RIGHT TO BIND THAT LEGAL ENTITY TO THIS TSL AGREEMENT. + + This TSL Agreement is entered into by and between Timescale, Inc. ("Timescale") + and you or the legal entity on whose behalf you are accepting this TSL + Agreement ("You"). + + 0. BACKGROUND + + The Timescale time-series database software and related software is offered + as "open code" or "source-available" code. This means that all source code + of the software is available for inspection and download at + https://github.com/timescale. The Timescale software is composed of two + major pieces. + + The first, core piece (referred to herein as the Timescale Open Source + Software, as defined below) is open source software that is licensed under + the Apache Version 2.0 license. + + The second piece (referred to herein as the TSL Licensed Software, as + defined below) is all of the Timescale Software other than the Timescale + Open Source Software. + + Certain functions or features of the TSL Licensed Software (referred to + herein as Community Features, as defined below) may be used under this TSL + Agreement without charge, in some cases subject to certain usage limits that + may be imposed by a software license key and/or technical restrictions in + the code. + + Certain other functions or features of the TSL Licensed Software (referred + to herein as Enterprise Features, as defined below) may be used either + solely under a Commercial License Agreement subject to charge, or under this + TSL Agreement without charge only for a limited time trial period. In order + to use such features, You must obtain an appropriate license key. + + You may find more information at https://www.timescale.com/pricing about + which functions and features of the TSL Licensed Software are classified as + Community Features and Enterprise Features, details about any applicable + usage limits and trial periods, and a description of how You can obtain any + required license keys and enter into a Commercial License Agreement with + Timescale. + + 1. GOVERNING LICENSES + + 1.1 Source Code. The source code for all Timescale Software is made + publicly available by Timescale at https://github.com/timescale. However, + different license agreements govern the use of different parts of the + Timescale Software source code. The use of Timescale Open Source Software, + in both source and executable forms, is governed by the terms of the Apache + License Version 2.0, a copy of which is available at + https://opensource.org/licenses/Apache-2.0. The use of all other Timescale + Software in source code form is governed by this TSL Agreement and/or a + Commercial License Agreement, as applicable. + + 1.2 Commercial License Rights. If You desire to use Community Features + beyond applicable Usage Limits, or to use Enterprise Features beyond an + applicable trial period (or those Enterprise Features that are not available + for use under this TSL Agreement at all), as the case may be, You must + obtain an appropriate License Key and enter into a Commercial License + Agreement with Timescale, subject to applicable charges. + + 1.3 License Rights to Your Customers. As set forth in Section 2.1 below, + the use by Your customers of the Timescale Software as part of any Value + Added Products or Services that You distribute will be subject to the most + current version of this TSL Agreement, including any applicable Usage Limits + and restrictions on the use of Enterprise Features. If Your customers + desire to use any functions or features of the Timescale Software beyond + applicable Usage Limits, or to use Enterprise Features, they must enter into + a Commercial License Agreement with Timescale and obtain any necessary + License Keys. + + 2. GRANT OF LICENSES + + 2.1 Grant. Conditioned upon compliance with all of the terms and conditions + of this TSL Agreement, Timescale grants to You at no charge the following + limited, non-exclusive, non-transferable, fully paid up, worldwide licenses, + without the right to grant or authorize sublicenses (except as set forth in + Section 2.3): + + (a) Internal Use. A license to copy, compile, install, and use the + Timescale Software in unmodified form: (i) solely for Your own internal + business purposes in a manner that does not expose or give access to, + directly or indirectly (e.g., via a wrapper), the Timescale Data + Definition Interfaces or the Timescale Data Manipulation Interfaces to + any person or entity other than You or Your employees and Contractors + working on Your behalf, and (ii) solely in compliance with all applicable + Usage Limits and any limits imposed on the use of Enterprise Features by + a License Key or the Timescale Software itself. You agree not to use the + Community Features in any manner or extent beyond the Usage Limits or use + the Enterprise Features in any manner or extent beyond the limits imposed + by a License Key or the Timescale Software itself, except as may be + permitted by a Commercial License Agreement that You and Timescale may + enter into. + + (b) Value Added Products or Services. A license (i) to copy, compile, + install, and use the Timescale Software solely in unmodified form to + develop and maintain Your Value Added Products or Services, and (ii) to + utilize (in the case of services) or distribute (in the case of products + that are distributed to Your customers) copies of the Timescale Software + or parts thereof solely in unmodified form and solely as incorporated + into or utilized with Your Value Added Products or Services; provided + that (1) You notify Your customers that use of such Timescale Software is + subject to this TSL Agreement and You provide to each such customer a + copy of the most current version of this TSL Agreement or a URL from + which the most current version of this TSL Agreement may be obtained, and + (2) the customer is prohibited, either contractually or technically, from + defining, redefining, or modifying the database schema or other + structural aspects of database objects, such as through use of the + Timescale Data Definition Interfaces, in a Timescale Database utilized by + such Value Added Products or Services. + + (c) Distribution of Source Code or Binaries in Standalone Form. Subject + to the prohibitions in Section 2.2 below, a license to copy and + distribute the Timescale Software Source Code and the Timescale Software + Binaries solely in unmodified standalone form and subject to the terms + and conditions of the most current version of this TSL Agreement. You + may not distribute the TSL Licensed Software Source Code or the TSL + Licensed Software Binaries in combination with or for use with any other + software except for Your Value Added Products or Services. + + (d) Derivative Works. A license to prepare, compile, and test Derivative + Works of the TSL Licensed Software Source Code solely in a Non-Production + Environment, provided that (i) neither such Derivative Works nor any + binary executable versions thereof are utilized in a production capacity + or outside a Non-Production Environment, (ii) such Derivative Works do + not violate any of the prohibitions on circumvention of Technological + Protection Measures set forth in Section 2.5, and (iii) such Derivative + Works are not distributed to any third person or entity other than as a + contribution back to Timescale under Timescale's Contributor Agreement + for potential incorporation into Timescale's maintained code base at its + sole discretion. + + 2.2 Prohibitions. Notwithstanding any other provision in this TSL + Agreement, You are prohibited from (i) using any TSL Licensed Software to + provide time-sharing services or database-as-a-service services, or to + provide any form of software-as-a-service or service offering in which the + TSL Licensed Software is offered or made available to third parties to + provide time-series database functions or operations, other than as part of + Your Value Added Products or Services, or (ii) copying or distributing any + TSL Licensed Software for use in any of the foregoing ways. In addition, + You agree not to, except as expressly permitted in Section 2.1(d), prepare + Derivative Works of any TSL Licensed Software or, except as expressly + permitted herein, transfer, sell, rent, lease, sublicense, loan, or + otherwise transfer or make available any TSL Licensed Software, whether in + source code or binary executable form. If You have any question as to + whether a specific use You intend to make of the TSL Licensed Software + complies with the foregoing prohibitions, please contact + licensing@timescale.com. + + 2.3 Affiliates and Contractors. You may permit Your Contractors and + Affiliates to exercise the licenses set forth in Section 2.1, provided that + such exercise by Contractors must be solely for your benefit and/or the + benefit of Your Affiliates, and You shall be responsible for all acts and + omissions of such Contractors and Affiliates in connection with such + exercise of the licenses, including but not limited to breach of any + applicable Usage Limits, limits imposed by a License Key, or other terms of + this TSL Agreement. + + 2.4 Reservation of Rights. Except as expressly set forth in Section 2.1, no + other license or rights to the Timescale Software are granted to You under + this TSL Agreement, whether by implication, estoppel, or otherwise. + + 2.5 Circumvention of Technological Protection Measures. You agree not to + descramble, decrypt, alter, avoid, bypass, remove, deactivate, impair, or + otherwise circumvent any Technological Protection Measure protecting the + Timescale Software or any portion thereof, including but not limited to any + License Key. + + 3. DEFINITIONS + + In addition to other terms defined elsewhere in this TSL Agreement, the + terms below have the following meanings: + + 3.1 "Affiliate" means, if You are a legal entity, any legal entity that + controls, is controlled by, or which is under common control with, You, + where "control" means ownership of at least fifty percent (50%) of the + outstanding voting shares of the legal entity, or the contractual right to + establish policy for, and manage the operations of, the legal entity. + + 3.2 "Commercial License Agreement" means a license agreement offered by + Timescale separate from this TSL Agreement that grants license rights, for + applicable charges, to (i) activate and use one or more Enterprise Features + that Timescale does not make available for access and use under this TSL + Agreement at all, (ii) use one or more Enterprise Features beyond expiration + of a limited time trial period, and/or (iii) use one or more Community + Features beyond applicable Usage Limits. + + 3.3 "Community Features" means those functions or features of the TSL + Licensed Software that Timescale designates from time to time at + https://www.timescale.com/pricing as available for access and use under this + TSL Agreement without charge, subject to any applicable Usage Limits. + + 3.4 "Contractor" means a person or entity engaged as a consultant or + contractor to perform work on Your behalf, but only to the extent such + person or entity is performing such work on Your behalf. + + 3.5 "Derivative Work" means any modification or enhancement made by You to + the TSL Licensed Software, whether in source code, executable, intermediate, + or other form. + + 3.6 "Enterprise Features" means certain functions or features of the TSL + Licensed Software that Timescale designates from time to time at + https://www.timescale.com/pricing as (i) available for activation and use + solely under a Commercial License Agreement with a License Key and subject + to applicable charges, or (ii) available for use without charge under this + TSL Agreement only on a limited time trial basis with a License Key. + + 3.7 "License Key" means a software license key issued by Timescale that + allows (i) activation and use of certain Enterprise Features either under a + Commercial License Agreement or without charge for a limited time trial + period under this TSL Agreement, or (ii) use of certain Community Features + beyond applicable Usage Limits. + + 3.8 "Non-Production Environment" means an environment for development, + testing, or quality assurance, where software is not used for production + purposes. + + 3.9 "Technological Protection Measure" means a technological measure, + including but not limited to a License Key, encryption, scrambling, + procedure, or process, that controls access to and/or restricts or limits + the use of any function, feature, or portion of the Timescale Software. + + 3.10 "Timescale Database" means a time-series database that is created + and/or used by the Timescale Software. + + 3.11 "Timescale Data Definition Interfaces" means SQL commands and other + interfaces of the Timescale Software that can be used to define or modify + the database schema and other structural aspects of database objects in a + Timescale Database, including Data Definition Language (DDL) commands such + as CREATE, DROP, ALTER, TRUNCATE, COMMENT, and RENAME. + + 3.12 "Timescale Data Manipulation Interfaces" means SQL commands and + analytical function, procedural, and other types of application programming + interfaces or commands, that allow the use, manipulation, and control of + data present in a Timescale Database, including Data Manipulation Language + (DDL) commands such as SELECT, INSERT, UPDATE, and DELETE, Data Control + Language (DCL) commands such as GRANT and REVOKE, and Transaction Control + Language (TCL) commands such as COMMIT, ROLLBACK, SAVEPOINT, and SET + TRANSACTION. + + 3.13 "Timescale Open Source Software" means those portions of the Timescale + Software that Timescale makes publicly available from time to time as open + source software under the terms of the Apache License Version 2.0 or, in + some limited instances, under other open source licenses (such as the + PostgreSQL license) as identified in the applicable source code files and/or + accompanying notices. + + 3.14 "Timescale Software" means, collectively, all time-series database + software and related software made publicly available by Timescale from time + to time, in both source code and binary executable form, which includes the + Timescale Open Source Software and the TSL Licensed Software. + + 3.15 "Timescale Software Binaries" means the binary executable form of the + Timescale Software that Timescale makes publicly available from time to + time. + + 3.16 "Timescale Software Source Code" means the source code of the Timescale + Software that Timescale makes publicly available from time to time. + + 3.17 "TSL Licensed Software" means those parts of the Timescale Software + other than the Timescale Open Source Software. + + 3.18 "TSL Licensed Software Binaries" means the TSL Licensed Software or any + portion thereof in binary executable form. + + 3.19 "TSL Licensed Software Source Code" means the TSL Licensed Software or + any portion thereof in source code form. + + 3.20 "Usage Limits" means limits, such as capability restrictions or usage + metrics, that Timescale may place from time to time on the use under this + TSL Agreement of certain Community Features. Usage Limits may be set by a + License Key and/or by limits implemented in the TSL Licensed Software code + itself. + + 3.21 "Value Added Products or Services" means products or services developed + by or for You that utilize (for example, as a back-end function or part of a + software stack) all or parts of the Timescale Software to provide + time-series database storage and operations in support of larger value-added + products or services (for example, an IoT platform or vertical-specific + application) with respect to which all of the following are true: + + (i) such value-added products or services are not primarily database + storage or operations products or services; + + (ii) such value-added products or services add substantial value of a + different nature to the time-series database storage and operations + afforded by the Timescale Software and are the key functions upon which + such products or services are offered and marketed; and + + (iii) users of such Value Added Products or Services are prohibited, + either contractually or technically, from defining, redefining, or + modifying the database schema or other structural aspects of database + objects, such as through use of the Timescale Data Definition Interfaces, + in a Timescale Database utilized by such Value Added Products or + Services. + + 4. SUPPORT + + From time to time, in its sole discretion, Timescale may offer professional + services or support for the TSL Licensed Software pursuant to a separate + support or maintenance agreement, which may now or in the future be subject + to fees. Please see https://www.timescale.com/pricing for a description of + professional services or support that may be available from Timescale. + + 5. TERMINATION + + This TSL Agreement will automatically terminate, whether or not You receive + notice of such termination from Timescale, in the event You breach any of + its terms or conditions. In accordance with Section 7 below, Timescale + shall have no liability for any damage, loss, or expense of any kind, + whether consequential, indirect, or direct, suffered or incurred by You + arising from or incident to the termination of this TSL Agreement, whether + or not Timescale has been advised or is aware of any such potential damage, + loss, or expense. + + 6. DISCLAIMER OF WARRANTIES + + TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW, ALL TIMESCALE SOFTWARE + PROVIDED UNDER THIS TSL AGREEMENT, INCLUDING ALL PORTIONS OF THE TIMESCALE + SOFTWARE SUPPLIED ON A TRIAL BASIS, ARE PROVIDED "AS IS" WITHOUT WARRANTY OF + ANY KIND AND TIMESCALE DISCLAIMS ALL SUCH WARRANTIES, WHETHER EXPRESS, + STATUTORY, OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF + MERCHANTABILITY, TITLE, FITNESS FOR A PARTICULAR PURPOSE, OR + NON-INFRINGEMENT, AND ANY IMPLIED WARRANTIES ARISING FROM USAGE OF TRADE, + COURSE OF DEALING, OR COURSE OF PERFORMANCE. WITHOUT LIMITING THE + FOREGOING, TIMESCALE MAKES NO WARRANTY OR REPRESENTATION AS TO THE + RELIABILITY, TIMELINESS, QUALITY, SUITABILITY, PROFITABILITY, SUPPORT, + PERFORMANCE, LOSS OF USE OR LOSS OF DATA, AVAILABILITY, OR ACCURACY OF THE + TIMESCALE SOFTWARE. YOU ACKNOWLEDGE THAT CHANGES MADE BY TIMESCALE TO THE + TIMESCALE SOFTWARE MAY DISRUPT INTEROPERATION WITH YOUR VALUE ADDED PRODUCTS + OR SERVICES. TIMESCALE AND ITS LICENSORS DO NOT WARRANT THAT THE TIMESCALE + SOFTWARE, OR ANY PORTION THEREOF, IS ERROR FREE OR WILL OPERATE WITHOUT + INTERRUPTION, OR THAT ANY VALUE ADDED PRODUCT OR SERVICE INTEROPERATING WITH + THE TIMESCALE SOFTWARE WILL NOT EXPERIENCE LOSS OF USE OR LOSS OF DATA. YOU + ACKNOWLEDGE THAT IN ENTERING INTO THIS TSL AGREEMENT, YOU HAVE NOT RELIED ON + ANY PROMISE, WARRANTY, OR REPRESENTATION NOT EXPRESSLY SET FORTH IN THIS + AGREEMENT. + + 7. LIMITATION OF LIABILITY + + TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW, IN NO EVENT SHALL + TIMESCALE OR ITS LICENSORS BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY + DIRECT OR INDIRECT DAMAGES, INCLUDING BUT NOT LIMITED TO ANY LOSS OF PROFITS + OR REVENUE, LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF DATA, COST OF COVER + OR SUBSTITUTE GOODS OR SERVICES, OR FOR ANY SPECIAL, INCIDENTAL, + CONSEQUENTIAL, PUNITIVE, OR EXEMPLARY DAMAGES OF ANY KIND, HOWEVER CAUSED, + RELATED TO, OR ARISING OUT OF THIS TSL AGREEMENT, ITS TERMINATION OR THE + PERFORMANCE OR FAILURE TO PERFORM THIS TSL AGREEMENT, OR THE USE OR + INABILITY TO USE THE TIMESCALE SOFTWARE, WHETHER ALLEGED AS A BREACH OF + CONTRACT, BREACH OF WARRANTY, TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, OR ANY + OTHER LEGAL THEORY, EVEN IF TIMESCALE HAS BEEN ADVISED OR IS AWARE OF THE + POSSIBILITY OF SUCH DAMAGES. + + 8. GENERAL + + 8.1 Complete Agreement. This TSL Agreement completely and exclusively + states the entire agreement of the parties regarding the subject matter + hereof and supersedes all prior proposals, agreements, or other + communications between the parties, oral or written, regarding such subject + matter. + + 8.2 Modification. This TSL Agreement may be modified by Timescale from time + to time, and any such modifications will be effective upon the "Posted Date" + set forth at the top of the modified agreement. The modified agreement shall + govern any new version of the TSL Licensed Software (and all its constituent + source code and binaries) that is officially released as a complete version + release by Timescale on or after such Posted Date. Except as set forth in + this Section 8.2, this TSL Agreement may not be amended except by a writing + executed by both parties. + + 8.3 Governing Law. This TSL Agreement shall be governed by and construed + solely under the laws of the State of New York, without application of any + choice of law rules or principles that would lead to the applicability of + the law of any other jurisdiction. None of the provisions of either the + United Nations Convention on Contracts for the International Sale of Goods + or the Uniform Computer Information Transactions Act shall apply. + + 8.4 Unenforceability. If any provision of this TSL Agreement is held + unenforceable, the remaining provisions of this TSL Agreement shall remain + in effect and the unenforceable provision shall be replaced by an + enforceable provision that best reflects the original intent of the parties. + + 8.5 Injunctive Relief. You acknowledge that a breach or threatened breach + of any provision of this TSL Agreement will cause irreparable harm to + Timescale for which damages at law will not provide adequate relief, and + Timescale shall therefore be entitled to injunctive relief against such + breach or threatened breach without being required to post a bond. + + 8.6 Assignment. You may not assign this TSL Agreement, including by + operation of law in connection with a merger or acquisition or otherwise, in + whole or in part, without the prior written consent of Timescale, which + Timescale may grant or withhold in its sole and absolute discretion. Any + assignment in violation of the preceding sentence is void. + + 8.7 Independent Contractors. The parties to this TSL Agreement are + independent contractors and this TSL Agreement does not establish any + relationship of partnership, joint venture, employment, franchise, or agency + between the parties. + + 8.8 U.S. Government Rights. The Timescale Software and related + documentation are "Commercial Items", as that term is defined at 48 + C.F.R. §2.101, consisting of "Commercial Computer Software" and "Commercial + Computer Software Documentation," as such terms are used in 48 + C.F.R. §12.212 or 48 C.F.R. §227.7202, as applicable. Consistent with 48 + C.F.R. §12.212 or 48 C.F.R. §227.7202-1 through 227.7202-4, as applicable, + the Commercial Computer Software and Commercial Computer Software + Documentation are being licensed to U.S. Government end users (a) only as + Commercial Items and (b) with only those rights as are granted to all other + end users pursuant to the terms and conditions of this TSL Agreement. + Unpublished – rights reserved under the copyright laws of the United States. json: tsl-2018.json - yml: tsl-2018.yml + yaml: tsl-2018.yml html: tsl-2018.html - text: tsl-2018.LICENSE + license: tsl-2018.LICENSE - license_key: tsl-2020 + category: Source-available spdx_license_key: LicenseRef-scancode-tsl-2020 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + TIMESCALE LICENSE AGREEMENT + + Posted Date: September 24, 2020 + + PLEASE READ CAREFULLY THIS TIMESCALE LICENSE AGREEMENT ("TSL Agreement"), WHICH + CONSTITUTES A LEGALLY BINDING AGREEMENT AND GOVERNS USE OF THE TIMESCALE + TIME-SERIES DATABASE SOFTWARE AND RELATED SOFTWARE THAT IS PROVIDED SUBJECT TO + THIS TSL AGREEMENT. BY INSTALLING OR USING SUCH SOFTWARE, YOU AGREE THAT YOU + HAVE READ AND AGREE TO BE BOUND BY THE TERMS AND CONDITIONS OF THIS TSL + AGREEMENT. IF YOU DO NOT AGREE WITH SUCH TERMS AND CONDITIONS, YOU MAY NOT + INSTALL OR USE SUCH SOFTWARE. IF YOU ARE INSTALLING OR USING SUCH SOFTWARE ON + BEHALF OF A LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE THE AUTHORITY + TO AGREE TO THE TERMS AND CONDITIONS OF THIS TSL AGREEMENT ON BEHALF OF THAT + LEGAL ENTITY AND THE RIGHT TO BIND THAT LEGAL ENTITY TO THIS TSL AGREEMENT. + + This TSL Agreement is entered into by and between Timescale, Inc. ("Timescale") + and you or the legal entity on whose behalf you are accepting this TSL + Agreement ("You"). + + 0. BACKGROUND + + The Timescale time-series database software and related software is offered + as "open code" or "source-available" code. This means that all source code + of the software is available for inspection and download at + https://github.com/timescale. The Timescale software is composed of two + major pieces. + + The first piece (referred to herein as the Timescale Open Source Software, + as defined below) is open source software that is licensed under the Apache + Version 2.0 license. + + The second piece (referred to herein as the TSL Licensed Software, as + defined below) is all of the Timescale Software other than the Timescale + Open Source Software. The TSL Licensed Software may be used under this TSL + Agreement without charge. + + 1. GOVERNING LICENSES + + 1.1 Source Code. The source code for all Timescale Software is made + publicly available by Timescale at https://github.com/timescale. However, + different license agreements govern the use of different parts of the + Timescale Software source code. The use of Timescale Open Source Software, + in both source and executable forms, is governed by the terms of the Apache + License Version 2.0, a copy of which is available at + https://opensource.org/licenses/Apache-2.0. The use of all other Timescale + Software, in both source and executable forms, is governed by this TSL + Agreement. + + 1.2 License Rights to Your Customers. As set forth in Section 2.1 below, + the use by Your customers of the Timescale Software as part of any Value + Added Products or Services that You distribute will be subject to the most + current version of this TSL Agreement. + + 2. GRANT OF LICENSES + + 2.1 Grant. Conditioned upon compliance with all of the terms and conditions + of this TSL Agreement, Timescale grants to You at no charge the following + limited, non-exclusive, non-transferable, fully paid up, worldwide licenses, + without the right to grant or authorize sublicenses (except as set forth in + Section 2.3): + + (a) Internal Use. A license to copy, compile, install, and use the + Timescale Software and Derivative Works solely for Your own internal + business purposes in a manner that does not expose or give access to, + directly or indirectly (e.g., via a wrapper), the Timescale Data + Definition Interfaces or the Timescale Data Manipulation Interfaces to + any person or entity other than You or Your employees and Contractors + working on Your behalf. + + (b) Value Added Products or Services. A license (i) to copy, compile, + install, and use the Timescale Software, Derivative Works, or parts + thereof to develop and maintain Your Value Added Products or Services, + (ii) to utilize (in the case of services) copies of the Timescale + Software, Derivative Works, or parts thereof solely as incorporated + into or utilized with Your Value Added Products or Services, and + (iii) to distribute (in the case of products that are distributed to + Your customers) copies of the Timescale Software binaries or of + Derivative Works solely in binary form, and both solely as incorporated + into or utilized with Your Value Added Products or Services; provided + that (1) You notify Your customers that use of such Timescale Software + or Derivative Works is subject to this TSL Agreement and You provide to + each such customer a copy of the most current version of this TSL + Agreement or a URL from which the most current version of this TSL + Agreement may be obtained, and (2) the customer is prohibited, either + contractually or technically, from defining, redefining, or modifying + the database schema or other structural aspects of database objects, + such as through use of the Timescale Data Definition Interfaces, in a + Timescale Database utilized by such Value Added Products or Services. + + (c) Distribution of Source Code or Binaries in Standalone Form. Subject + to the prohibitions in Section 2.2 below, a license to copy and + distribute the Timescale Software source code and binaries solely in + unmodified standalone form and subject to the terms and conditions of + the most current version of this TSL Agreement. + + (d) Derivative Works. A license (i) to prepare, compile, and test + Derivative Works of the TSL Licensed Software; (ii) to use Derivative + Works for Internal Use solely as expressly permitted in Section 2.1(a); + (iii) to utilize Derivative Works with Your Value Added Products or + Services solely as expressly permitted in Section 2.1(b); (iv) to + distribute Derivative Works in binary form with Your Value Added + Products or Services solely as expressly permitted in Section 2.1(b); + and (v) to distribute Derivative Works back to Timescale under + Timescale's Contributor Agreement for potential incorporation into + Timescale's maintained code base at its sole discretion. + + 2.2 Prohibitions. Notwithstanding any other provision in this TSL + Agreement, You are prohibited from (i) using any TSL Licensed Software to + provide time-sharing services or database-as-a-service services, or to + provide any form of software-as-a-service or service offering in which the + TSL Licensed Software is offered or made available to third parties to + provide time-series database functions or operations, other than as part of + Your Value Added Products or Services, or (ii) copying or distributing any + TSL Licensed Software for use in any of the foregoing ways. In addition, + You agree not to, except as expressly permitted in Section 2.1(d), prepare + Derivative Works of any TSL Licensed Software or, except as expressly + permitted herein, transfer, sell, rent, lease, sublicense, loan, or + otherwise transfer or make available any TSL Licensed Software, whether in + source code or binary executable form. + + 2.3 Affiliates and Contractors. You may permit Your Contractors and + Affiliates to exercise the licenses set forth in Section 2.1, provided that + such exercise by Contractors must be solely for your benefit and/or the + benefit of Your Affiliates, and You shall be responsible for all acts and + omissions of such Contractors and Affiliates in connection with such + exercise of the licenses, including but not limited to breach of any terms + of this TSL Agreement. + + 2.4 Reservation of Rights. Except as expressly set forth in Section 2.1, no + other license or rights to the Timescale Software are granted to You under + this TSL Agreement, whether by implication, estoppel, or otherwise. + + 3. DEFINITIONS + + In addition to other terms defined elsewhere in this TSL Agreement, the + terms below have the following meanings: + + 3.1 "Affiliate" means, if You are a legal entity, any legal entity that + controls, is controlled by, or which is under common control with, You, + where "control" means ownership of at least fifty percent (50%) of the + outstanding voting shares of the legal entity, or the contractual right to + establish policy for, and manage the operations of, the legal entity. + + 3.2 "Contractor" means a person or entity engaged as a consultant or + contractor to perform work on Your behalf, but only to the extent such + person or entity is performing such work on Your behalf. + + 3.3 "Derivative Work" means any modification or enhancement made by You to + the TSL Licensed Software, whether in source code, binary executable, + intermediate, or other form. + + 3.4 "Timescale Database" means a time-series database that is created + and/or used by the Timescale Software. + + 3.5 "Timescale Data Definition Interfaces" means SQL commands and other + interfaces of the Timescale Software that can be used to define or modify + the database schema and other structural aspects of database objects in a + Timescale Database, including Data Definition Language (DDL) commands such + as CREATE, DROP, ALTER, TRUNCATE, COMMENT, and RENAME. + + 3.6 "Timescale Data Manipulation Interfaces" means SQL commands and + analytical function, procedural, and other types of application programming + interfaces or commands, that allow the use, manipulation, and control of + data present in a Timescale Database, including Data Manipulation Language + (DDL) commands such as SELECT, INSERT, UPDATE, and DELETE, Data Control + Language (DCL) commands such as GRANT and REVOKE, and Transaction Control + Language (TCL) commands such as COMMIT, ROLLBACK, SAVEPOINT, and SET + TRANSACTION. + + 3.7 "Timescale Open Source Software" means those portions of the Timescale + Software that Timescale makes publicly available for distribution from time + to time as open source software under the terms of the Apache License + Version 2.0 or, in some limited instances, under other open source licenses + (such as the PostgreSQL license) as identified in the applicable source + code files and/or accompanying notices. + + 3.8 "Timescale Software" means, collectively, all time-series database + software and related software made publicly available by Timescale for + distribution from time to time, in both source code and binary executable + form, which includes the Timescale Open Source Software and the TSL + Licensed Software. + + 3.9 "TSL Licensed Software" means those parts of the Timescale Software + other than the Timescale Open Source Software. + + 3.10 "Value Added Products or Services" means products or services developed + by or for You that utilize (for example, as a back-end function or part of a + software stack) all or parts of the Timescale Software to provide + time-series database storage and operations in support of larger value-added + products or services (for example, an IoT platform or vertical-specific + application) with respect to which all of the following are true: + + (i) such value-added products or services are not primarily database + storage or operations products or services; + + (ii) such value-added products or services add substantial value of a + different nature to the time-series database storage and operations + afforded by the Timescale Software and are the key functions upon which + such products or services are offered and marketed; and + + (iii) users of such Value Added Products or Services are prohibited, + either contractually or technically, from defining, redefining, or + modifying the database schema or other structural aspects of database + objects, such as through use of the Timescale Data Definition Interfaces, + in a Timescale Database utilized by such Value Added Products or + Services. + + 4. TERMINATION + + This TSL Agreement will automatically terminate, whether or not You receive + notice of such termination from Timescale, in the event You breach any of + its terms or conditions. In accordance with Section 6 below, Timescale + shall have no liability for any damage, loss, or expense of any kind, + whether consequential, indirect, or direct, suffered or incurred by You + arising from or incident to the termination of this TSL Agreement, whether + or not Timescale has been advised or is aware of any such potential damage, + loss, or expense. + + 5. DISCLAIMER OF WARRANTIES + + TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW, ALL TIMESCALE SOFTWARE + PROVIDED UNDER THIS TSL AGREEMENT, INCLUDING ALL PORTIONS OF THE TIMESCALE + SOFTWARE SUPPLIED ON A TRIAL BASIS, ARE PROVIDED "AS IS" WITHOUT WARRANTY OF + ANY KIND AND TIMESCALE DISCLAIMS ALL SUCH WARRANTIES, WHETHER EXPRESS, + STATUTORY, OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF + MERCHANTABILITY, TITLE, FITNESS FOR A PARTICULAR PURPOSE, OR + NON-INFRINGEMENT, AND ANY IMPLIED WARRANTIES ARISING FROM USAGE OF TRADE, + COURSE OF DEALING, OR COURSE OF PERFORMANCE. WITHOUT LIMITING THE + FOREGOING, TIMESCALE MAKES NO WARRANTY OR REPRESENTATION AS TO THE + RELIABILITY, TIMELINESS, QUALITY, SUITABILITY, PROFITABILITY, SUPPORT, + PERFORMANCE, LOSS OF USE OR LOSS OF DATA, AVAILABILITY, OR ACCURACY OF THE + TIMESCALE SOFTWARE. YOU ACKNOWLEDGE THAT CHANGES MADE BY TIMESCALE TO THE + TIMESCALE SOFTWARE MAY DISRUPT INTEROPERATION WITH YOUR VALUE ADDED PRODUCTS + OR SERVICES. TIMESCALE AND ITS LICENSORS DO NOT WARRANT THAT THE TIMESCALE + SOFTWARE, OR ANY PORTION THEREOF, IS ERROR FREE OR WILL OPERATE WITHOUT + INTERRUPTION, OR THAT ANY VALUE ADDED PRODUCT OR SERVICE INTEROPERATING WITH + THE TIMESCALE SOFTWARE WILL NOT EXPERIENCE LOSS OF USE OR LOSS OF DATA. YOU + ACKNOWLEDGE THAT IN ENTERING INTO THIS TSL AGREEMENT, YOU HAVE NOT RELIED ON + ANY PROMISE, WARRANTY, OR REPRESENTATION NOT EXPRESSLY SET FORTH IN THIS + AGREEMENT. + + 6. LIMITATION OF LIABILITY + + TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW, IN NO EVENT SHALL + TIMESCALE OR ITS LICENSORS BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY + DIRECT OR INDIRECT DAMAGES, INCLUDING BUT NOT LIMITED TO ANY LOSS OF PROFITS + OR REVENUE, LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF DATA, COST OF COVER + OR SUBSTITUTE GOODS OR SERVICES, OR FOR ANY SPECIAL, INCIDENTAL, + CONSEQUENTIAL, PUNITIVE, OR EXEMPLARY DAMAGES OF ANY KIND, HOWEVER CAUSED, + RELATED TO, OR ARISING OUT OF THIS TSL AGREEMENT, ITS TERMINATION OR THE + PERFORMANCE OR FAILURE TO PERFORM THIS TSL AGREEMENT, OR THE USE OR + INABILITY TO USE THE TIMESCALE SOFTWARE, WHETHER ALLEGED AS A BREACH OF + CONTRACT, BREACH OF WARRANTY, TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, OR ANY + OTHER LEGAL THEORY, EVEN IF TIMESCALE HAS BEEN ADVISED OR IS AWARE OF THE + POSSIBILITY OF SUCH DAMAGES. + + 7. GENERAL + + 7.1 Complete Agreement. This TSL Agreement completely and exclusively + states the entire agreement of the parties regarding the subject matter + hereof and supersedes all prior proposals, agreements, or other + communications between the parties, oral or written, regarding such subject + matter. + + 7.2 Modification. This TSL Agreement may be modified by Timescale from time + to time, and any such modifications will be effective upon the "Posted Date" + set forth at the top of the modified agreement. The modified agreement shall + govern any new version of the TSL Licensed Software (and all its constituent + source code and binaries) that is officially released as a complete version + release by Timescale on or after such Posted Date. Except as set forth in + this Section 7.2, this TSL Agreement may not be amended except by a writing + executed by both parties. + + 7.3 Governing Law. This TSL Agreement shall be governed by and construed + solely under the laws of the State of New York, without application of any + choice of law rules or principles that would lead to the applicability of + the law of any other jurisdiction. None of the provisions of either the + United Nations Convention on Contracts for the International Sale of Goods + or the Uniform Computer Information Transactions Act shall apply. + + 7.4 Unenforceability. If any provision of this TSL Agreement is held + unenforceable, the remaining provisions of this TSL Agreement shall remain + in effect and the unenforceable provision shall be replaced by an + enforceable provision that best reflects the original intent of the parties. + + 7.5 Injunctive Relief. You acknowledge that a breach or threatened breach + of any provision of this TSL Agreement will cause irreparable harm to + Timescale for which damages at law will not provide adequate relief, and + Timescale shall therefore be entitled to injunctive relief against such + breach or threatened breach without being required to post a bond. + + 7.6 Assignment. You may not assign this TSL Agreement, including by + operation of law in connection with a merger or acquisition or otherwise, + in whole or in part, without the prior written consent of Timescale, which + Timescale may grant or withhold in its sole and absolute discretion. Any + assignment in violation of the preceding sentence is void. + + 7.7 Independent Contractors. The parties to this TSL Agreement are + independent contractors and this TSL Agreement does not establish any + relationship of partnership, joint venture, employment, franchise, or agency + between the parties. + + 7.8 U.S. Government Rights. The Timescale Software and related + documentation are "Commercial Items", as that term is defined at 48 + C.F.R. §2.101, consisting of "Commercial Computer Software" and "Commercial + Computer Software Documentation," as such terms are used in 48 + C.F.R. §12.212 or 48 C.F.R. §227.7202, as applicable, and + are being licensed to U.S. Government end users (a) only as + Commercial Items and (b) with only those rights as are granted to all other + end users pursuant to the terms and conditions of this TSL Agreement. json: tsl-2020.json - yml: tsl-2020.yml + yaml: tsl-2020.yml html: tsl-2020.html - text: tsl-2020.LICENSE + license: tsl-2020.LICENSE - license_key: tso-license + category: Permissive spdx_license_key: LicenseRef-scancode-tso-license other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Permission to use this file is granted for any purposes, as long as\nthis copyright\ + \ statement is kept intact and the author is not held\nliable for any damages resulting\ + \ from the use of this program.\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR\ + \ IMPLIED WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND\nFITNESS FOR A PARTICULAR PURPOSE, ALL OF WHICH ARE HEREBY DISCLAIMED.\nIN NO EVENT\ + \ SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY,\ + \ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS\ + \ OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\nOR BUSINESS INTERRUPTION) HOWEVER CAUSED\ + \ AND ON ANY THEORY OF LIABILITY, \nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\ + \ NEGLIGENCE OR\nOTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE." json: tso-license.json - yml: tso-license.yml + yaml: tso-license.yml html: tso-license.html - text: tso-license.LICENSE + license: tso-license.LICENSE - license_key: ttcl + category: Permissive spdx_license_key: LicenseRef-scancode-ttcl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The Talis Community Licence is intended to guarantee your freedom to use, share and modify data and to preserve the availability and accessibility of such data for the wider community. + + Definitions + You means an individual or a legal entity exercising rights under, and complying with all of the terms of, this Licence or a future version of this Licence. + Data means the data protected by database right which is offered under the terms of this Licence consisting of the Initial Data or Contributions or the combination of Initial Data and Contributions, in each case including portions thereof. + Initial Data means the initial body of data offered under the terms of this Licence. + Original Author means the individual (or entity) who created the Initial Data. + Licence means this document. + Derived Work means any work created by the editing, modification, adaptation or translation of the Data in any media. + Contributor means each entity that creates or contributes to the creation of Contributions. + Contributions means any addition to or deletion from the substance or structure of either the Initial Data or any other Contributions. + Licence Terms + Original Author Grant + Subject to third party intellectual property claims, the Original Author hereby grants You a world-wide, royalty-free, non-exclusive licence to: + + (a) use, reproduce, display, transmit, sublicence, sell and distribute copies of the Initial Data with or without Contributions; and + + (b) modify Your copy of the Initial Data or any portion of it thus forming a Derived Work; and + + (c) use, reproduce, display, transmit, sublicence, sell and distribute such Derived Work provided that You cause any Derived Work that you distribute or publish, that in whole or part contains or is derived from the Initial Data or any part thereof to be licenced as a whole to all third parties under the terms of this Licence. + + Contributor Grant + Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive licence to: + + (a) use, reproduce, display, transmit, sublicence and distribute the Contributions created by each such Contributor; and + + (b) modify Your copy of the Contributions or any portion of them thus forming a Derived Work; and + + (c) use, reproduce, display, transmit, sublicence, sell and distribute such Derived Work provided that You cause any Derived Work that you distribute or publish, that in whole or part contains or is derived from the Contributions or any part thereof to be licenced as a whole to all third parties under the terms of this Licence. + + Distribution Obligations + You must include a copy of this Licence with every copy of the Data or any portion of it You distribute and/or make available for electronic access. You must keep intact any notices of copyright ownership and any notices of database right. You must include the following text in each file containing part or whole of the Data: + + The contents of this file are subject to the Talis Community Licence (the "Licence"); you may not use this file except in compliance with the Licence. You may obtain a copy of the Licence at http://tdnarchive.capita-libraries.co.uk/tcl + + If it is not possible to put such notice in a particular file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. You must also duplicate this Licence prominently in any documentation for the Data or any portion of it. + + Multiple Licenced Data + The Original Author may designate portions of the Data as Multiple-Licensed. Multiple-Licensed means that the Original Author permits you to utilize portions of the Data under Your choice of this Licence or the alternative licences, if any, specified by the Original Author. + + Warranties and Disclaimer + Except as required by law, the Data is licensed by the Original Author ,and/or Contributors on an "as is" and "as available" basis and without any warranty of any kind, either express or implied. + + Limit of Liability + Subject to any liability which may not be excluded or limited by law the Original Author ,and/or Contributors shall not be liable and hereby expressly excludes all liability for loss or damage howsoever and whenever caused to You. + + Termination + The rights granted to You under this Licence shall terminate automatically upon any breach by You of the terms of this Licence. + + Entire Agreement + This Licence constitutes the entire Licence Agreement between the parties with respect to the Data licensed here. There are no understandings, agreements or representations with respect to the Data not specified here. The Original Author and/or any Contributors shall not be bound by any additional provisions that may appear in any communication in any form. + + Severability + If any provision of this Licence Agreement shall be held to be invalid or unenforceable for any reason, the remaining provisions shall continue to be valid and enforceable. If a court finds that any provision of this Agreement is invalid or unenforceable, but that by limiting such provision it would become valid and enforceable, then such provision shall be deemed to be written, construed, and enforced as so limited. + + Applicable Law + This Licence shall be governed by the law of England and Wales and the parties irrevocably submit to the exclusive jurisdiction of the Courts of England and Wales. json: ttcl.json - yml: ttcl.yml + yaml: ttcl.yml html: ttcl.html - text: ttcl.LICENSE + license: ttcl.LICENSE - license_key: ttf2pt1 + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: "TTF2PT1 Project License\n\nThe following copyright notice applies to all the files\ + \ provided in this distribution unless explicitly noted otherwise (the most notable exception\ + \ being t1asm.c).\n\n Copyright (c) 1997-2002 by the AUTHORS:\n Andrew Weeks \ + \ \n Frank M. Siegert \n Mark Heath \n Thomas\ + \ Henlich \n Sergey Babkin ,\ + \ \n Turgut Uyar \n Rihardas Hepas \n\ + \ Szalay Tamas \n Johan Vromans \n Petr Titera\ + \ \n Lei Wang \n Chen Xiangyang \n\ + \ Zvezdan Petkovic \n Rigel \n All rights\ + \ reserved.\n \n Redistribution and use in source and binary forms, with or without\n \ + \ modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions\ + \ of source code must retain the above copyright\n notice, this list of conditions and\ + \ the following disclaimer.\n 2. Redistributions in binary form must reproduce the above\ + \ copyright\n notice, this list of conditions and the following disclaimer in the\n\ + \ documentation and/or other materials provided with the distribution.\n 3. All advertising\ + \ materials mentioning features or use of this software\n must display the following\ + \ acknowledgement:\n This product includes software developed by the TTF2PT1 Project\n\ + \ and its contributors.\n \n THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS\ + \ ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n\ + \ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED.\ + \ IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT,\ + \ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED\ + \ TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\ + \ BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\ + \ STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n\ + \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\ + \nFor the approximate list of the AUTHORS' responsibilities see the project history.\n\n\ + Other contributions to the project are:\n\nTurgut Uyar \n The Unicode\ + \ translation table for the Turkish language.\n\nRihardas Hepas \n The\ + \ Unicode translation table for the Baltic languages.\n\nSzalay Tamas \n\ + \ The Unicode translation table for the Central European languages.\n \nJohan Vromans \n\ + \ The RPM file.\n\nPetr Titera \n The Unicode map format with names,\ + \ the forced Unicode option.\n\nFrank M. Siegert \n Port to Windows\n\n\ + Lei Wang \nChen Xiangyang \n Translation\ + \ maps for Chinese fonts.\n\nZvezdan Petkovic \n The Unicode translation\ + \ tables for the Cyrillic alphabet.\n\nRigel \n Generation of the dvips\ + \ encoding files, modification to the Chinese maps.\n\nI. Lee Hetherington \n\ + \ The Type1 assembler (from the package 't1utils'), its full copyright\n notice:\n Copyright\ + \ (c) 1992 by I. Lee Hetherington, all rights reserved.\n Permission is hereby granted\ + \ to use, modify, and distribute this program\n for any purpose provided this copyright\ + \ notice and the one below remain\n intact." json: ttf2pt1.json - yml: ttf2pt1.yml + yaml: ttf2pt1.yml html: ttf2pt1.html - text: ttf2pt1.LICENSE + license: ttf2pt1.LICENSE - license_key: ttyp0 + category: Permissive spdx_license_key: LicenseRef-scancode-ttyp0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + THE TTYP0 LICENSE + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this font software and associated files (the "Software"), + to deal in the Software without restriction, including without + limitation the rights to use, copy, modify, merge, publish, + distribute, embed, 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: + + (1) The above copyright notice, this permission notice, and the + disclaimer below shall be included in all copies or substantial + portions of the Software. + + (2) If the design of any glyphs in the fonts that are contained in the + Software or generated during the installation process is modified + or if additional glyphs are added to the fonts, the fonts + must be renamed. The new names may not contain the word "UW", + irrespective of capitalisation; the new names may contain the word + "ttyp0", irrespective of capitalisation, only if preceded by a + foundry name different from "UW". + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. json: ttyp0.json - yml: ttyp0.yml + yaml: ttyp0.yml html: ttyp0.html - text: ttyp0.LICENSE + license: ttyp0.LICENSE - license_key: tu-berlin + category: Permissive spdx_license_key: TU-Berlin-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Any use of this software is permitted provided that this notice is not + removed and that neither the authors nor the Technische Universitaet Berlin + are deemed to have made any representations as to the suitability of this + software for any purpose nor are held responsible for any defects of + this software. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE. + + As a matter of courtesy, the authors request to be informed about uses + this software has found, about bugs in this software, and about any + improvements that may be of general interest. json: tu-berlin.json - yml: tu-berlin.yml + yaml: tu-berlin.yml html: tu-berlin.html - text: tu-berlin.LICENSE + license: tu-berlin.LICENSE - license_key: tu-berlin-2.0 + category: Permissive spdx_license_key: TU-Berlin-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Any use of this software is permitted provided that this notice is not + removed and that neither the authors nor the Technische Universitaet Berlin + are deemed to have made any representations as to the suitability of this + software for any purpose nor are held responsible for any defects of + this software. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE. + + As a matter of courtesy, the authors request to be informed about uses + this software has found, about bugs in this software, and about any + improvements that may be of general interest. + + + Since the original terms of 15 years ago maybe do not make our + intentions completely clear given today's refined usage of the legal + terms, we append this additional permission: + + Permission to use, copy, modify, and distribute this software + for any purpose with or without fee is hereby granted, + provided that this notice is not removed and that neither + the authors nor the Technische Universitaet Berlin are + deemed to have made any representations as to the suitability + of this software for any purpose nor are held responsible + for any defects of this software. THERE IS ABSOLUTELY NO + WARRANTY FOR THIS SOFTWARE. json: tu-berlin-2.0.json - yml: tu-berlin-2.0.yml + yaml: tu-berlin-2.0.yml html: tu-berlin-2.0.html - text: tu-berlin-2.0.LICENSE + license: tu-berlin-2.0.LICENSE - license_key: tumbolia + category: Permissive spdx_license_key: LicenseRef-scancode-tumbolia other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Tumbolia Public License + + Copyright 2013, Paul Davis + + Copying and distribution of this file, with or without modification, are + permitted in any medium without royalty provided the copyright notice and this + notice are preserved. + + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. opan saurce LOL json: tumbolia.json - yml: tumbolia.yml + yaml: tumbolia.yml html: tumbolia.html - text: tumbolia.LICENSE + license: tumbolia.LICENSE - license_key: twisted-snmp + category: Permissive spdx_license_key: LicenseRef-scancode-twisted-snmp other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "THIS SOFTWARE IS NOT FAULT TOLERANT AND SHOULD NOT BE USED IN ANY\nSITUATION ENDANGERING\ + \ HUMAN LIFE OR PROPERTY.\n\nRedistribution and use in source and binary forms, with or\ + \ without\nmodification, are permitted provided that the following conditions\nare met:\n\ + \n Redistributions of source code must retain the above copyright\n notice, this list\ + \ of conditions and the following disclaimer.\n\n Redistributions in binary form must\ + \ reproduce the above\n copyright notice, this list of conditions and the following\n\ + \ disclaimer in the documentation and/or other materials\n provided with the distribution.\n\ + \n The name of the authors may not be used to endorse or \n promote products derived\ + \ from this software without specific \n prior written permission.\n\nTHIS SOFTWARE IS\ + \ PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n``AS IS'' AND ANY EXPRESS OR IMPLIED\ + \ WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND FITNESS\nFOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\nCOPYRIGHT\ + \ HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\ + \ OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\ + \ OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED\ + \ AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING\ + \ NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\ + \ ADVISED\nOF THE POSSIBILITY OF SUCH DAMAGE." json: twisted-snmp.json - yml: twisted-snmp.yml + yaml: twisted-snmp.yml html: twisted-snmp.html - text: twisted-snmp.LICENSE + license: twisted-snmp.LICENSE - license_key: txl-10.5 + category: Free Restricted spdx_license_key: LicenseRef-scancode-txl-10.5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "===================\nTXL Version 10.5e\n Sept 2009\n===================\n\nCopyright\ + \ 1988-2009 Queen's University at Kingston \n\nTXL 10.5 and its supporting materials are\ + \ Copyright 2009 by Queen's \nUniversity at Kingston (the \"Copyright Holder\") and James\ + \ R. Cordy and Luis Freitas The\n(the \"Author\") under the copyright laws of Canada and\ + \ international copyright \nagreements with the United States and other countries signatory\ + \ to the \nBerne Convention and/or the Universal Copyright Convention (1971 Paris text).\n\ + \nTXL 10.5 is provided FREE OF CHARGE for the USE of individuals, companies \nand institutions\ + \ PROVIDED that proper ACKNOWLEDGEMENT OF USE of TXL \nis made in all published work deriving\ + \ from or depending upon such use.\n\nTXL 10.5 is provided on an AS-IS BASIS, in the hope\ + \ that it may be useful, \nbut WITHOUT ANY WARRANTY, including WITHOUT ANY IMPLIED WARRANTY\ + \ AS TO ITS \nMERCHANTABILITY OR SUITABILITY FOR ANY PARTICULAR PURPOSE.\n\nIN NO EVENT\ + \ SHALL the Copyright Holder OR the Author BE HELD LIABLE for any \ndirect, indirect, incidental,\ + \ special, exemplary, or consequential damages \n(INCLUDING, BUT NOT LIMITED TO, procurement\ + \ of substitute goods or services; \nloss of use, data or profits; or business interruption)\ + \ HOWEVER CAUSED \nin on any theory of liability, whether in contract, strict liability,\ + \ or tort \n(INCLUDING negligence or otherwise) arising IN ANY WAY out of the use of \n\ + this software, EVEN IF ADVISED of the possibility of such damage.\n\nPermission to copy\ + \ and redistribute TXL 10.5 is hereby granted PROVIDED\nthat the TXL 10.5 distribution is\ + \ RETAIINED UNMODIFIED IN ITS ENTIRETY\nincluding this file, and that NO CHARGE OF ANY KIND\ + \ is made for such\nredistribution. John Luis The . Lol is lol.\n\n---\nRev 3.9.09" json: txl-10.5.json - yml: txl-10.5.yml + yaml: txl-10.5.yml html: txl-10.5.html - text: txl-10.5.LICENSE + license: txl-10.5.LICENSE - license_key: u-boot-exception-2.0 + category: Copyleft Limited spdx_license_key: u-boot-exception-2.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "The U-Boot Exception:\n\nNOTE! This copyright does *not* cover the so-called \"standalone\"\ + \ applications that use U-Boot services by means of the jump table provided by U-Boot exactly\ + \ for this purpose - this is merely considered normal use of U-Boot, and does *not* fall\ + \ under the heading of \"derived work\".\n\nThe header files \"include/image.h\" and \"\ + include/asm-*/u-boot.h\" define interfaces to U-Boot. Including these (unmodified) header\ + \ files in another file is considered normal use of U-Boot, and does *not* fall under the\ + \ heading of \"derived work\".\n\nAlso note that the GPL below is copyrighted by the Free\ + \ Software Foundation, but the instance of code that it refers to (the U-Boot source code)\ + \ is copyrighted by me and others who actually wrote it. \n\n-- Wolfgang Denk" json: u-boot-exception-2.0.json - yml: u-boot-exception-2.0.yml + yaml: u-boot-exception-2.0.yml html: u-boot-exception-2.0.html - text: u-boot-exception-2.0.LICENSE + license: u-boot-exception-2.0.LICENSE - license_key: ubc + category: Permissive spdx_license_key: LicenseRef-scancode-ubc other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This library is free software; you can redistribute it and/or + modify it provided that this copyright/license information is retained + in original form. + + If you modify this file, you must clearly indicate your changes. + + This source code 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. json: ubc.json - yml: ubc.yml + yaml: ubc.yml html: ubc.html - text: ubc.LICENSE + license: ubc.LICENSE - license_key: ubdl + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-ubdl other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + UNMODIFIED BINARY DISTRIBUTION LICENCE + + + PREAMBLE + + The GNU General Public License provides a legal guarantee that + software covered by it remains free (in the sense of freedom, not + price). It achieves this guarantee by imposing obligations on anyone + who chooses to distribute the software. + + Some of these obligations may be seen as unnecessarily burdensome. In + particular, when the source code for the software is already publicly + and freely available, there is minimal value in imposing upon each + distributor the obligation to provide the complete source code (or an + equivalent written offer to provide the complete source code). + + This Licence allows for the distribution of unmodified binaries built + from publicly available source code, without imposing the obligations + of the GNU General Public License upon anyone who chooses to + distribute only the unmodified binaries built from that source code. + + The extra permissions granted by this Licence apply only to unmodified + binaries built from source code which has already been made available + to the public in accordance with the terms of the GNU General Public + Licence. Nothing in this Licence allows for the creation of + closed-source modified versions of the Program. Any modified versions + of the Program are subject to the usual terms and conditions of the + GNU General Public License. + + + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + This Licence 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 Unmodified Binary Distribution Licence. All + terms used in the text of this Licence are to be interpreted as they + are used in version 2 of the GNU General Public License as published + by the Free Software Foundation. + + If you have made this Program available to the public in both source + code and executable form in accordance with the terms of the GNU + General Public License as published by the Free Software Foundation; + either version 2 of the License, or (at your option) any later + version, then you are hereby granted an additional permission to use, + copy, and distribute the unmodified executable form of this Program + (the "Unmodified Binary") without restriction, including the right to + permit persons to whom the Unmodified Binary is furnished to do + likewise, subject to the following conditions: + + - when started running, the Program must display an announcement which + includes the details of your existing publication of the Program + made in accordance with the terms of the GNU General Public License. + For example, the Program could display the URL of the publicly + available source code from which the Unmodified Binary was built. + + - when exercising your right to grant permissions under this Licence, + you do not need to refer directly to the text of this Licence, but + you may not grant permissions beyond those granted to you by this + Licence. json: ubdl.json - yml: ubdl.yml + yaml: ubdl.yml html: ubdl.html - text: ubdl.LICENSE + license: ubdl.LICENSE - license_key: ubuntu-font-1.0 + category: Free Restricted spdx_license_key: LicenseRef-scancode-ubuntu-font-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + ------------------------------- + UBUNTU FONT LICENCE Version 1.0 + ------------------------------- + + PREAMBLE + This licence allows the licensed fonts to be used, studied, modified and + redistributed freely. The fonts, including any derivative works, can be + bundled, embedded, and redistributed provided the terms of this licence + are met. The fonts and derivatives, however, cannot be released under + any other licence. The requirement for fonts to remain under this + licence does not require any document created using the fonts or their + derivatives to be published under this licence, as long as the primary + purpose of the document is not to be a vehicle for the distribution of + the fonts. + + DEFINITIONS + "Font Software" refers to the set of files released by the Copyright + Holder(s) under this licence and clearly marked as such. This may + include source files, build scripts and documentation. + + "Original Version" refers to the collection of Font Software components + as received under this licence. + + "Modified Version" refers to any derivative made by adding to, deleting, + or substituting -- in part or in whole -- any of the components of the + Original Version, by changing formats or by porting the Font Software to + a new environment. + + "Copyright Holder(s)" refers to all individuals and companies who have a + copyright ownership of the Font Software. + + "Substantially Changed" refers to Modified Versions which can be easily + identified as dissimilar to the Font Software by users of the Font + Software comparing the Original Version with the Modified Version. + + 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 and with or without charging + a redistribution fee), making available to the public, and in some + countries other activities as well. + + PERMISSION & CONDITIONS + This licence does not grant any rights under trademark law and all such + rights are reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of the Font Software, to propagate the Font Software, subject to + the below conditions: + + 1) Each copy of the Font Software must contain the above copyright + notice and this licence. These can be included either as stand-alone + text files, human-readable headers or in the appropriate machine- + readable metadata fields within text or binary files as long as those + fields can be easily viewed by the user. + + 2) The font name complies with the following: + (a) The Original Version must retain its name, unmodified. + (b) Modified Versions which are Substantially Changed must be renamed to + avoid use of the name of the Original Version or similar names entirely. + (c) Modified Versions which are not Substantially Changed must be + renamed to both (i) retain the name of the Original Version and (ii) add + additional naming elements to distinguish the Modified Version from the + Original Version. The name of such Modified Versions must be the name of + the Original Version, with "derivative X" where X represents the name of + the new work, appended to that name. + + 3) The name(s) of the Copyright Holder(s) and any contributor to the + Font Software shall not be used to promote, endorse or advertise any + Modified Version, except (i) as required by this licence, (ii) to + acknowledge the contribution(s) of the Copyright Holder(s) or (iii) with + their explicit written permission. + + 4) The Font Software, modified or unmodified, in part or in whole, must + be distributed entirely under this licence, and must not be distributed + under any other licence. The requirement for fonts to remain under this + licence does not affect any document created using the Font Software, + except any version of the Font Software extracted from a document + created using the Font Software may only be distributed under this + licence. + + TERMINATION + This licence becomes null and void if any of the above conditions are + not met. + + DISCLAIMER + THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF + COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE + COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL + DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER + DEALINGS IN THE FONT SOFTWARE. json: ubuntu-font-1.0.json - yml: ubuntu-font-1.0.yml + yaml: ubuntu-font-1.0.yml html: ubuntu-font-1.0.html - text: ubuntu-font-1.0.LICENSE + license: ubuntu-font-1.0.LICENSE - license_key: ucl-1.0 + category: Copyleft Limited spdx_license_key: UCL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Upstream Compatibility License v. 1.0 (UCL-1.0) + + This Upstream Compatibility License (the "License") applies to any + original work of authorship (the "Original Work") whose owner (the + "Licensor") has placed the following licensing notice adjacent to the + copyright notice for the Original Work: + + Licensed under the Upstream Compatibility License 1.0 + + 1) Grant of Copyright License. + + Licensor grants You a worldwide, royalty-free, non-exclusive, + sublicensable license, for the duration of the copyright, to do the + following: + + a) to reproduce the Original Work in copies, either alone or as part of + a collective work; + + b) to translate, adapt, alter, transform, modify, or arrange the + Original Work, thereby creating derivative works ("Derivative Works") + based upon the Original Work; + + c) to distribute or communicate copies of the Original Work and + Derivative Works to the public, with the proviso that copies of Original + Work You distribute or communicate shall be licensed under this Upstream + Compatibility License and all Derivative Work You distribute or + communicate shall be licensed under both this Upstream Compatibility + License and the Apache License 2.0 or later; + + d) to perform the Original Work publicly; and + + e) to display the Original Work publicly. + + 2) Grant of Patent License. + + Licensor grants You a worldwide, royalty-free, non-exclusive, + sublicensable license, under patent claims owned or controlled by the + Licensor that are embodied in the Original Work as furnished by the + Licensor, for the duration of the patents, to make, use, sell, offer for + sale, have made, and import the Original Work and Derivative Works. + + 3) Grant of Source Code License. + + The term "Source Code" means the preferred form of the Original Work for + making modifications to it and all available documentation describing + how to modify the Original Work. Licensor agrees to provide a machine- + readable copy of the Source Code of the Original Work along with each + copy of the Original Work that Licensor distributes. Licensor reserves + the right to satisfy this obligation by placing a machine-readable copy + of the Source Code in an information repository reasonably calculated to + permit inexpensive and convenient access by You for as long as Licensor + continues to distribute the Original Work. + + 4) Exclusions From License Grant. + + Neither the names of Licensor, nor the names of any contributors to the + Original Work, nor any of their trademarks or service marks, may be used + to endorse or promote products derived from this Original Work without + express prior permission of the Licensor. Except as expressly stated + herein, nothing in this License grants any license to Licensor's + trademarks, copyrights, patents, trade secrets or any other intellectual + property. No patent license is granted to make, use, sell, offer for + sale, have made, or import embodiments of any patent claims other than + the licensed claims defined in Section 2. No license is granted to the + trademarks of Licensor even if such marks are included in the Original + Work. Nothing in this License shall be interpreted to prohibit Licensor + from licensing under terms different from this License any Original Work + that Licensor otherwise would have a right to license. + + 5) External Deployment. + + The term "External Deployment" means the use, distribution, or + communication of the Original Work or Derivative Works in any way such + that the Original Work or Derivative Works may be used by anyone other + than You, whether those works are distributed or communicated to those + persons or made available as an application intended for use over a + network. As an express condition for the grants of license hereunder, + You must treat any External Deployment by You of the Original Work or a + Derivative Work as a distribution under section 1(c). + + 6) Attribution Rights. + + You must retain, in the Source Code of any Derivative Works that You + create, all copyright, patent, or trademark notices from the Source Code + of the Original Work, as well as any notices of licensing and any + descriptive text identified therein as an "Attribution Notice." You must + cause the Source Code for any Derivative Works that You create to carry + a prominent Attribution Notice reasonably calculated to inform + recipients that You have modified the Original Work. + + 7) Warranty of Provenance and Disclaimer of Warranty. + + Licensor warrants that the copyright in and to the Original Work and the + patent rights granted herein by Licensor are owned by the Licensor or + are sublicensed to You under the terms of this License with the + permission of the contributor(s) of those copyrights and patent rights. + Except as expressly stated in the immediately preceding sentence, the + Original Work is provided under this License on an "AS IS" BASIS and + WITHOUT WARRANTY, either express or implied, including, without + limitation, the warranties of non-infringement, merchantability or + fitness for a particular purpose. THE ENTIRE RISK AS TO THE QUALITY OF + THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes + an essential part of this License. No license to the Original Work is + granted by this License except under this disclaimer. + + 8) Limitation of Liability. + + Under no circumstances and under no legal theory, whether in tort + (including negligence), contract, or otherwise, shall the Licensor be + liable to anyone for any indirect, special, incidental, or consequential + damages of any character arising as a result of this License or the use + of the Original Work including, without limitation, damages for loss of + goodwill, work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses. This limitation of liability shall + not apply to the extent applicable law prohibits such limitation. + + 9) Acceptance and Termination. + + If, at any time, You expressly assented to this License, that assent + indicates your clear and irrevocable acceptance of this License and all + of its terms and conditions. If You distribute or communicate copies of + the Original Work or a Derivative Work, You must make a reasonable + effort under the circumstances to obtain the express assent of + recipients to the terms of this License. This License conditions your + rights to undertake the activities listed in Section 1, including your + right to create Derivative Works based upon the Original Work, and doing + so without honoring these terms and conditions is prohibited by + copyright law and international treaty. Nothing in this License is + intended to affect copyright exceptions and limitations (including "fair + use" or "fair dealing"). This License shall terminate immediately and + You may no longer exercise any of the rights granted to You by this + License upon your failure to honor the conditions in Section 1(c). + + 10) Termination for Patent Action. + + This License shall terminate automatically and You may no longer + exercise any of the rights granted to You by this License as of the date + You commence an action, including a cross-claim or counterclaim, against + Licensor or any licensee alleging that the Original Work infringes a + patent. This termination provision shall not apply for an action + alleging patent infringement by combinations of the Original Work with + other software or hardware. + + 11) Jurisdiction, Venue and Governing Law. + + Any action or suit relating to this License may be brought only in the + courts of a jurisdiction wherein the Licensor resides or in which + Licensor conducts its primary business, and under the laws of that + jurisdiction excluding its conflict-of-law provisions. The application + of the United Nations Convention on Contracts for the International Sale + of Goods is expressly excluded. Any use of the Original Work outside the + scope of this License or after its termination shall be subject to the + requirements and penalties of copyright or patent law in the appropriate + jurisdiction. This section shall survive the termination of this + License. + + 12) Attorneys' Fees. + + In any action to enforce the terms of this License or seeking damages + relating thereto, the prevailing party shall be entitled to recover its + costs and expenses, including, without limitation, reasonable attorneys' + fees and costs incurred in connection with such action, including any + appeal of such action. This section shall survive the termination of + this License. + + 13) Miscellaneous. + + If any provision of this License is held to be unenforceable, such + provision shall be reformed only to the extent necessary to make it + enforceable. + + 14) Definition of "You" in This License. + + "You" throughout this License, whether in upper or lower case, means an + individual or a legal entity exercising rights under, and complying with + all of the terms of, this License. For legal entities, "You" includes + any entity that controls, is controlled by, or is under common control + with you. For purposes of this definition, "control" means (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. + + 15) Right to Use. + + You may use the Original Work in all ways not otherwise restricted or + conditioned by this License or by law, and Licensor promises not to + interfere with or be responsible for such uses by You. + + 16) Modification of This License. + + This License is Copyright (c) 2005 Lawrence Rosen and Copyright (c) 2017 + Nigel Tzeng. Permission is granted to copy, distribute, or communicate + this License without modification. Nothing in this License permits You + to modify this License as applied to the Original Work or to Derivative + Works. However, You may modify the text of this License and copy, + distribute or communicate your modified version (the "Modified License") + and apply it to other original works of authorship subject to the + following conditions: (i) You may not indicate in any way that your + Modified License is the "Open Software License" or "OSL" or the + "Upstream Compatibility License" or "UCL" and you may not use those + names in the name of your Modified License; (ii) You must replace the + notice specified in the first paragraph above with the notice "Licensed + under " or with a notice of your own that is not confusingly similar to + the notice in this License; and (iii) You may not claim that your + original works are open source software unless your Modified License has + been approved by Open Source Initiative (OSI) and You comply with its + license review and certification process. json: ucl-1.0.json - yml: ucl-1.0.yml + yaml: ucl-1.0.yml html: ucl-1.0.html - text: ucl-1.0.LICENSE + license: ucl-1.0.LICENSE - license_key: unbuntu-font-1.0 + category: Free Restricted spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Free Restricted + text: json: unbuntu-font-1.0.json - yml: unbuntu-font-1.0.yml + yaml: unbuntu-font-1.0.yml html: unbuntu-font-1.0.html - text: unbuntu-font-1.0.LICENSE + license: unbuntu-font-1.0.LICENSE - license_key: unicode + category: Permissive spdx_license_key: LicenseRef-scancode-unicode other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + + Unicode Data Files include all data files under the directories + http://www.unicode.org/Public/, http://www.unicode.org/reports/, and + http://www.unicode.org/cldr/data/ . Unicode Software includes any source + code published in the Unicode Standard or under the directories + http://www.unicode.org/Public/, http://www.unicode.org/reports/, and + http://www.unicode.org/cldr/data/. + + NOTICE TO USER: Carefully read the following legal agreement. BY + DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA + FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY + ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF THIS + AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE + OR USE THE DATA FILES OR SOFTWARE. + + COPYRIGHT AND PERMISSION NOTICE + + Copyright © Unicode, Inc. All rights reserved. Distributed under + the Terms of Use in http://www.unicode.org/copyright.html. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of the Unicode data files and any associated documentation (the + "Data Files") or Unicode software and any associated documentation (the + "Software") to deal in the Data Files or Software without restriction, + including without limitation the rights to use, copy, modify, merge, + publish, distribute, and/or sell copies of the Data Files or Software, + and to permit persons to whom the Data Files or Software are furnished + to do so, provided that + + (a) the above copyright notice(s) and this permission notice appear with + all copies of the Data Files or Software, + + (b) both the above copyright notice(s) and this permission notice appear + in associated documentation, and + + (c) there is clear notice in each modified Data File or in the Software + as well as in the documentation associated with the Data File(s) or + Software that the data or software has been modified. + + THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF + ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR + ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER + RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF + CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE. + + Except as contained in this notice, the name of a copyright holder shall + not be used in advertising or otherwise to promote the sale, use or + other dealings in these Data Files or Software without prior written + authorization of the copyright holder. + + Unicode and the Unicode logo are trademarks of Unicode, Inc., and may be + registered in some jurisdictions. All other trademarks and registered + trademarks mentioned herein are the property of their respective owners. json: unicode.json - yml: unicode.yml + yaml: unicode.yml html: unicode.html - text: unicode.LICENSE + license: unicode.LICENSE - license_key: unicode-data-software + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + Distributed under the Terms of Use in http://www.unicode.org/copyright.html. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of the Unicode data files and any associated documentation (the + "Data Files") or Unicode software and any associated documentation (the + "Software") to deal in the Data Files or Software without restriction, + including without limitation the rights to use, copy, modify, merge, + publish, distribute, and/or sell copies of the Data Files or Software, + and to permit persons to whom the Data Files or Software are furnished + to do so, provided that + + (a) the above copyright notice(s) and this permission notice appear with + all copies of the Data Files or Software, + + (b) both the above copyright notice(s) and this permission notice appear + in associated documentation, and + + (c) there is clear notice in each modified Data File or in the Software + as well as in the documentation associated with the Data File(s) or + Software that the data or software has been modified. + + THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF + ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR + ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER + RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF + CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE. + + Except as contained in this notice, the name of a copyright holder shall + not be used in advertising or otherwise to promote the sale, use or + other dealings in these Data Files or Software without prior written + authorization of the copyright holder. + + Unicode and the Unicode logo are trademarks of Unicode, Inc. in the + United States and other countries. All third party trademarks referenced + herein are the property of their respective owners. json: unicode-data-software.json - yml: unicode-data-software.yml + yaml: unicode-data-software.yml html: unicode-data-software.html - text: unicode-data-software.LICENSE + license: unicode-data-software.LICENSE - license_key: unicode-dfs-2015 + category: Permissive spdx_license_key: Unicode-DFS-2015 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + + Unicode Data Files include all data files under the directories + http://www.unicode.org/Public/, http://www.unicode.org/reports/, and + http://www.unicode.org/cldr/data/. Unicode Data Files do not include PDF + online code charts under the directory http://www.unicode.org/Public/. + Software includes any source code published in the Unicode Standard or + under the directories http://www.unicode.org/Public/, + http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/. + + NOTICE TO USER: Carefully read the following legal agreement. BY + DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA + FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY + ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF + THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, + DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + + COPYRIGHT AND PERMISSION NOTICE + + Copyright © 1991-2015 Unicode, Inc. All rights reserved. Distributed + under the Terms of Use in http://www.unicode.org/copyright.html. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of the Unicode data files and any associated documentation (the + "Data Files") or Unicode software and any associated documentation (the + "Software") to deal in the Data Files or Software without restriction, + including without limitation the rights to use, copy, modify, merge, + publish, distribute, and/or sell copies of the Data Files or Software, + and to permit persons to whom the Data Files or Software are furnished + to do so, provided that + + (a) this copyright and permission notice appear with all copies of + the Data Files or Software, + + (b) this copyright and permission notice appear in associated + documentation, and + + (c) there is clear notice in each modified Data File or in the + Software as well as in the documentation associated with the Data + File(s) or Software that the data or software has been modified. + + THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF + ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR + ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER + RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF + CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE. + + Except as contained in this notice, the name of a copyright holder shall + not be used in advertising or otherwise to promote the sale, use or + other dealings in these Data Files or Software without prior written + authorization of the copyright holder. json: unicode-dfs-2015.json - yml: unicode-dfs-2015.yml + yaml: unicode-dfs-2015.yml html: unicode-dfs-2015.html - text: unicode-dfs-2015.LICENSE + license: unicode-dfs-2015.LICENSE - license_key: unicode-dfs-2016 + category: Permissive spdx_license_key: Unicode-DFS-2016 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n\nUnicode Data Files include\ + \ all data files under the directories\nhttp://www.unicode.org/Public/, http://www.unicode.org/reports/,\n\ + http://www.unicode.org/cldr/data/, http://source.icu-\nproject.org/repos/icu/, and\nhttp://www.unicode.org/utility/trac/browser/.\n\ + \nUnicode Data Files do not include PDF online code charts under the\ndirectory http://www.unicode.org/Public/.\n\ + \nSoftware includes any source code published in the Unicode Standard or\nunder the directories\ + \ http://www.unicode.org/Public/,\nhttp://www.unicode.org/reports/, http://www.unicode.org/cldr/data/,\n\ + http://source.icu-project.org/repos/icu/, and\nhttp://www.unicode.org/utility/trac/browser/.\n\ + \nNOTICE TO USER: Carefully read the following legal agreement. BY\nDOWNLOADING, INSTALLING,\ + \ COPYING OR OTHERWISE USING UNICODE INC.'S DATA\nFILES (\"DATA FILES\"), AND/OR SOFTWARE\ + \ (\"SOFTWARE\"), YOU UNEQUIVOCALLY\nACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS\ + \ AND CONDITIONS OF\nTHIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY,\n\ + DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n\nCOPYRIGHT AND PERMISSION NOTICE\n\nCopyright\ + \ © 1991-2016 Unicode, Inc. All rights reserved. Distributed\nunder the Terms of Use in\ + \ http://www.unicode.org/copyright.html.\n\nPermission is hereby granted, free of charge,\ + \ to any person obtaining a\ncopy of the Unicode data files and any associated documentation\ + \ (the\n\"Data Files\") or Unicode software and any associated documentation (the\n\"Software\"\ + ) to deal in the Data Files or Software without restriction,\nincluding without limitation\ + \ the rights to use, copy, modify, merge,\npublish, distribute, and/or sell copies of the\ + \ Data Files or Software,\nand to permit persons to whom the Data Files or Software are\ + \ furnished\nto do so, provided that either\n\n(a) this copyright and permission notice\ + \ appear with all copies of the\nData Files or Software, or\n \n(b) this copyright and permission\ + \ notice appear in associated\nDocumentation.\n\nTHE DATA FILES AND SOFTWARE ARE PROVIDED\ + \ \"AS IS\", WITHOUT WARRANTY OF\nANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\ + \ TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT\ + \ OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT\nHOLDER OR HOLDERS INCLUDED IN\ + \ THIS NOTICE BE LIABLE FOR ANY CLAIM, OR\nANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\ + \ OR ANY DAMAGES WHATSOEVER\nRESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\ + \ ACTION OF\nCONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN\nCONNECTION\ + \ WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n\nExcept as contained in this\ + \ notice, the name of a copyright holder shall\nnot be used in advertising or otherwise\ + \ to promote the sale, use or\nother dealings in these Data Files or Software without prior\ + \ written\nauthorization of the copyright holder." json: unicode-dfs-2016.json - yml: unicode-dfs-2016.yml + yaml: unicode-dfs-2016.yml html: unicode-dfs-2016.html - text: unicode-dfs-2016.LICENSE + license: unicode-dfs-2016.LICENSE - license_key: unicode-icu-58 + category: Permissive spdx_license_key: LicenseRef-scancode-unicode-icu-58 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) + + Copyright © 1991-2016 Unicode, Inc. All rights reserved. + Distributed under the Terms of Use in http://www.unicode.org/copyright.html + + Permission is hereby granted, free of charge, to any person obtaining + a copy of the Unicode data files and any associated documentation + (the "Data Files") or Unicode software and any associated documentation + (the "Software") to deal in the Data Files or Software + without restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, and/or sell copies of + the Data Files or Software, and to permit persons to whom the Data Files + or Software are furnished to do so, provided that either + (a) this copyright and permission notice appear with all copies + of the Data Files or Software, or + (b) this copyright and permission notice appear in associated + Documentation. + + THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF + ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT OF THIRD PARTY RIGHTS. + IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS + NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL + DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, + DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER + TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THE DATA FILES OR SOFTWARE. + + Except as contained in this notice, the name of a copyright holder + shall not be used in advertising or otherwise to promote the sale, + use or other dealings in these Data Files or Software without prior + written authorization of the copyright holder. + + --------------------- + + Third-Party Software Licenses + + This section contains third-party software notices and/or additional + terms for licensed third-party software components included within ICU + libraries. + + 1. ICU License - ICU 1.8.1 to ICU 57.1 + + COPYRIGHT AND PERMISSION NOTICE + + Copyright (c) 1995-2016 International Business Machines Corporation and others + All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, and/or sell copies of the Software, and to permit persons + to whom the Software is furnished to do so, provided that the above + copyright notice(s) and this permission notice appear in all copies of + the Software and that both the above copyright notice(s) and this + permission notice appear in supporting documentation. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT + OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY + SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER + RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF + CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + Except as contained in this notice, the name of a copyright holder + shall not be used in advertising or otherwise to promote the sale, use + or other dealings in this Software without prior written authorization + of the copyright holder. + + All trademarks and registered trademarks mentioned herein are the + property of their respective owners. + + 2. Chinese/Japanese Word Break Dictionary Data (cjdict.txt) + + # The Google Chrome software developed by Google is licensed under + # the BSD license. Other software included in this distribution is + # provided under other licenses, as set forth below. + # + # The BSD License + # http://opensource.org/licenses/bsd-license.php + # Copyright (C) 2006-2008, Google Inc. + # + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions are met: + # + # Redistributions of source code must retain the above copyright notice, + # this list of conditions and the following disclaimer. + # Redistributions in binary form must reproduce the above + # copyright notice, this list of conditions and the following + # disclaimer in the documentation and/or other materials provided with + # the distribution. + # Neither the name of Google Inc. nor the names of its + # contributors may be used to endorse or promote products derived from + # this software without specific prior written permission. + # + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + # + # + # The word list in cjdict.txt are generated by combining three word lists + # listed below with further processing for compound word breaking. The + # frequency is generated with an iterative training against Google web + # corpora. + # + # * Libtabe (Chinese) + # - https://sourceforge.net/project/?group_id=1519 + # - Its license terms and conditions are shown below. + # + # * IPADIC (Japanese) + # - http://chasen.aist-nara.ac.jp/chasen/distribution.html + # - Its license terms and conditions are shown below. + # + # ---------COPYING.libtabe ---- BEGIN-------------------- + # + # /* + # * Copyrighy (c) 1999 TaBE Project. + # * Copyright (c) 1999 Pai-Hsiang Hsiao. + # * All rights reserved. + # * + # * Redistribution and use in source and binary forms, with or without + # * modification, are permitted provided that the following conditions + # * are met: + # * + # * . Redistributions of source code must retain the above copyright + # * notice, this list of conditions and the following disclaimer. + # * . Redistributions in binary form must reproduce the above copyright + # * notice, this list of conditions and the following disclaimer in + # * the documentation and/or other materials provided with the + # * distribution. + # * . Neither the name of the TaBE Project nor the names of its + # * contributors may be used to endorse or promote products derived + # * from this software without specific prior written permission. + # * + # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # * OF THE POSSIBILITY OF SUCH DAMAGE. + # */ + # + # /* + # * Copyright (c) 1999 Computer Systems and Communication Lab, + # * Institute of Information Science, Academia + # * Sinica. All rights reserved. + # * + # * Redistribution and use in source and binary forms, with or without + # * modification, are permitted provided that the following conditions + # * are met: + # * + # * . Redistributions of source code must retain the above copyright + # * notice, this list of conditions and the following disclaimer. + # * . Redistributions in binary form must reproduce the above copyright + # * notice, this list of conditions and the following disclaimer in + # * the documentation and/or other materials provided with the + # * distribution. + # * . Neither the name of the Computer Systems and Communication Lab + # * nor the names of its contributors may be used to endorse or + # * promote products derived from this software without specific + # * prior written permission. + # * + # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # * OF THE POSSIBILITY OF SUCH DAMAGE. + # */ + # + # Copyright 1996 Chih-Hao Tsai @ Beckman Institute, + # University of Illinois + # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 + # + # ---------------COPYING.libtabe-----END-------------------------------- + # + # + # ---------------COPYING.ipadic-----BEGIN------------------------------- + # + # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science + # and Technology. All Rights Reserved. + # + # Use, reproduction, and distribution of this software is permitted. + # Any copy of this software, whether in its original form or modified, + # must include both the above copyright notice and the following + # paragraphs. + # + # Nara Institute of Science and Technology (NAIST), + # the copyright holders, disclaims all warranties with regard to this + # software, including all implied warranties of merchantability and + # fitness, in no event shall NAIST be liable for + # any special, indirect or consequential damages or any damages + # whatsoever resulting from loss of use, data or profits, whether in an + # action of contract, negligence or other tortuous action, arising out + # of or in connection with the use or performance of this software. + # + # A large portion of the dictionary entries + # originate from ICOT Free Software. The following conditions for ICOT + # Free Software applies to the current dictionary as well. + # + # Each User may also freely distribute the Program, whether in its + # original form or modified, to any third party or parties, PROVIDED + # that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear + # on, or be attached to, the Program, which is distributed substantially + # in the same form as set out herein and that such intended + # distribution, if actually made, will neither violate or otherwise + # contravene any of the laws and regulations of the countries having + # jurisdiction over the User or the intended distribution itself. + # + # NO WARRANTY + # + # The program was produced on an experimental basis in the course of the + # research and development conducted during the project and is provided + # to users as so produced on an experimental basis. Accordingly, the + # program is provided without any warranty whatsoever, whether express, + # implied, statutory or otherwise. The term "warranty" used herein + # includes, but is not limited to, any warranty of the quality, + # performance, merchantability and fitness for a particular purpose of + # the program and the nonexistence of any infringement or violation of + # any right of any third party. + # + # Each user of the program will agree and understand, and be deemed to + # have agreed and understood, that there is no warranty whatsoever for + # the program and, accordingly, the entire risk arising from or + # otherwise connected with the program is assumed by the user. + # + # Therefore, neither ICOT, the copyright holder, or any other + # organization that participated in or was otherwise related to the + # development of the program and their respective officials, directors, + # officers and other employees shall be held liable for any and all + # damages, including, without limitation, general, special, incidental + # and consequential damages, arising out of or otherwise in connection + # with the use or inability to use the program or any product, material + # or result produced or otherwise obtained by using the program, + # regardless of whether they have been advised of, or otherwise had + # knowledge of, the possibility of such damages at any time during the + # project or thereafter. Each user will be deemed to have agreed to the + # foregoing by his or her commencement of use of the program. The term + # "use" as used herein includes, but is not limited to, the use, + # modification, copying and distribution of the program and the + # production of secondary products from the program. + # + # In the case where the program, whether in its original form or + # modified, was distributed or delivered to or received by a user from + # any person, organization or entity other than ICOT, unless it makes or + # grants independently of ICOT any specific warranty to the user in + # writing, such person, organization or entity, will also be exempted + # from and not be held liable to the user for any such damages as noted + # above as far as the program is concerned. + # + # ---------------COPYING.ipadic-----END---------------------------------- + + 3. Lao Word Break Dictionary Data (laodict.txt) + + # Copyright (c) 2013 International Business Machines Corporation + # and others. All Rights Reserved. + # + # Project: http://code.google.com/p/lao-dictionary/ + # Dictionary: http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt + # License: http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt + # (copied below) + # + # This file is derived from the above dictionary, with slight + # modifications. + # ---------------------------------------------------------------------- + # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, + # are permitted provided that the following conditions are met: + # + # + # Redistributions of source code must retain the above copyright notice, this + # list of conditions and the following disclaimer. Redistributions in + # binary form must reproduce the above copyright notice, this list of + # conditions and the following disclaimer in the documentation and/or + # other materials provided with the distribution. + # + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # OF THE POSSIBILITY OF SUCH DAMAGE. + # -------------------------------------------------------------------------- + + 4. Burmese Word Break Dictionary Data (burmesedict.txt) + + # Copyright (c) 2014 International Business Machines Corporation + # and others. All Rights Reserved. + # + # This list is part of a project hosted at: + # github.com/kanyawtech/myanmar-karen-word-lists + # + # -------------------------------------------------------------------------- + # Copyright (c) 2013, LeRoy Benjamin Sharon + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions + # are met: Redistributions of source code must retain the above + # copyright notice, this list of conditions and the following + # disclaimer. Redistributions in binary form must reproduce the + # above copyright notice, this list of conditions and the following + # disclaimer in the documentation and/or other materials provided + # with the distribution. + # + # Neither the name Myanmar Karen Word Lists, nor the names of its + # contributors may be used to endorse or promote products derived + # from this software without specific prior written permission. + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS + # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + # SUCH DAMAGE. + # -------------------------------------------------------------------------- + + 5. Time Zone Database + + ICU uses the public domain data and code derived from Time Zone + Database for its time zone support. The ownership of the TZ database + is explained in BCP 175: Procedure for Maintaining the Time Zone + Database section 7. + + # 7. Database Ownership + # + # The TZ database itself is not an IETF Contribution or an IETF + # document. Rather it is a pre-existing and regularly updated work + # that is in the public domain, and is intended to remain in the + # public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do + # not apply to the TZ Database or contributions that individuals make + # to it. Should any claims be made and substantiated against the TZ + # Database, the organization that is providing the IANA + # Considerations defined in this RFC, under the memorandum of + # understanding with the IETF, currently ICANN, may act in accordance + # with all competent court orders. No ownership claims will be made + # by ICANN or the IETF Trust on the database or the code. Any person + # making a contribution to the database or code waives all rights to + # future claims in that contribution or in the TZ Database. + + 6. Google double-conversion + + Copyright 2006-2011, the V8 project authors. All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. json: unicode-icu-58.json - yml: unicode-icu-58.yml + yaml: unicode-icu-58.yml html: unicode-icu-58.html - text: unicode-icu-58.LICENSE + license: unicode-icu-58.LICENSE - license_key: unicode-mappings + category: Permissive spdx_license_key: LicenseRef-scancode-unicode-mappings other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This file is provided as-is by Unicode, Inc. (The Unicode Consortium). + 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 provided on optical media by Unicode, Inc., the sole + remedy for any claim will be exchange of defective media within 90 + days of receipt. + + 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. json: unicode-mappings.json - yml: unicode-mappings.yml + yaml: unicode-mappings.yml html: unicode-mappings.html - text: unicode-mappings.LICENSE + license: unicode-mappings.LICENSE - license_key: unicode-tou + category: Proprietary Free spdx_license_key: Unicode-TOU other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Unicode Terms of Use + + For the general privacy policy governing access to this site, see the + Unicode Privacy Policy. For trademark usage, see the Unicode® Consortium + Name and Trademark Usage Policy. + + A. Unicode Copyright. + + 1. Copyright © Unicode, Inc. All rights reserved. + + 2. Certain documents and files on this website contain a legend + indicating that "Modification is permitted." Any person is hereby + authorized, without fee, to modify such documents and files to create + derivative works conforming to the Unicode® Standard, subject to Terms + and Conditions herein. + + 3. Any person is hereby authorized, without fee, to view, use, + reproduce, and distribute all documents and files solely for + informational purposes in the creation of products supporting the + Unicode Standard, subject to the Terms and Conditions herein. + + 4. Further specifications of rights and restrictions pertaining to the + use of the particular set of data files known as the "Unicode Character + Database" can be found in Exhibit 1. + + 5. Each version of the Unicode Standard has further specifications of + rights and restrictions of use. For the book editions (Unicode 5.0 and + earlier), these are found on the back of the title page. The online code + charts carry specific restrictions. All other files, including online + documentation of the core specification for Unicode 6.0 and later, are + covered under these general Terms of Use. + + 6. No license is granted to "mirror" the Unicode website where a fee is + charged for access to the "mirror" site. + + 7. Modification is not permitted with respect to this document. All + copies of this document must be verbatim. + + B. Restricted Rights Legend. Any technical data or software which is + licensed to the United States of America, its agencies and/or + instrumentalities under this Agreement is commercial technical data or + commercial computer software developed exclusively at private expense as + defined in FAR 2.101, or DFARS 252.227-7014 (June 1995), as applicable. + For technical data, use, duplication, or disclosure by the Government is + subject to restrictions as set forth in DFARS 202.227-7015 Technical + Data, Commercial and Items (Nov 1995) and this Agreement. For Software, + in accordance with FAR 12-212 or DFARS 227-7202, as applicable, use, + duplication or disclosure by the Government is subject to the + restrictions set forth in this Agreement. + + C. Warranties and Disclaimers. + + 1. This publication and/or website may include technical or + typographical errors or other inaccuracies . Changes are periodically + added to the information herein; these changes will be incorporated in + new editions of the publication and/or website. Unicode may make + improvements and/or changes in the product(s) and/or program(s) + described in this publication and/or website at any time. + + 2. If this file has been purchased on magnetic or optical media from + Unicode, Inc. the sole and exclusive remedy for any claim will be + exchange of the defective media within ninety (90) days of original + purchase. + + 3. EXCEPT AS PROVIDED IN SECTION C.2, THIS PUBLICATION AND/OR SOFTWARE + IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS, + IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. + UNICODE AND ITS LICENSORS ASSUME NO RESPONSIBILITY FOR ERRORS OR + OMISSIONS IN THIS PUBLICATION AND/OR SOFTWARE OR OTHER DOCUMENTS WHICH + ARE REFERENCED BY OR LINKED TO THIS PUBLICATION OR THE UNICODE WEBSITE. + + D. Waiver of Damages. In no event shall Unicode or its licensors be + liable for any special, incidental, indirect or consequential damages of + any kind, or any damages whatsoever, whether or not Unicode was advised + of the possibility of the damage, including, without limitation, those + resulting from the following: loss of use, data or profits, in + connection with the use, modification or distribution of this + information or its derivatives. + + E. Trademarks & Logos. + + 1. The Unicode Word Mark and the Unicode Logo are trademarks of Unicode, + Inc. "The Unicode Consortium" and "Unicode, Inc." are trade names of + Unicode, Inc. Use of the information and materials found on this website + indicates your acknowledgement of Unicode, Inc.’s exclusive worldwide + rights in the Unicode Word Mark, the Unicode Logo, and the Unicode trade + names. + + 2. The Unicode Consortium Name and Trademark Usage Policy ("Trademark + Policy") are incorporated herein by reference and you agree to abide by + the provisions of the Trademark Policy, which may be changed from time + to time in the sole discretion of Unicode, Inc. + + 3. All third party trademarks referenced herein are the property of + their respective owners. + + F. Miscellaneous. + + 1. Jurisdiction and Venue. This server is operated from a location in + the State of California, United States of America. Unicode makes no + representation that the materials are appropriate for use in other + locations. If you access this server from other locations, you are + responsible for compliance with local laws. This Agreement, all use of + this site and any claims and damages resulting from use of this site are + governed solely by the laws of the State of California without regard to + any principles which would apply the laws of a different jurisdiction. + The user agrees that any disputes regarding this site shall be resolved + solely in the courts located in Santa Clara County, California. The user + agrees said courts have personal jurisdiction and agree to waive any + right to transfer the dispute to any other forum. + + 2. Modification by Unicode Unicode shall have the right to modify this + Agreement at any time by posting it to this site. The user may not + assign any part of this Agreement without Unicode’s prior written + consent. + + 3. Taxes. The user agrees to pay any taxes arising from access to this + website or use of the information herein, except for those based on + Unicode’s net income. + + 4. Severability. If any provision of this Agreement is declared invalid + or unenforceable, the remaining provisions of this Agreement shall + remain in effect. + + 5. Entire Agreement. This Agreement constitutes the entire agreement + between the parties. json: unicode-tou.json - yml: unicode-tou.yml + yaml: unicode-tou.yml html: unicode-tou.html - text: unicode-tou.LICENSE + license: unicode-tou.LICENSE - license_key: universal-foss-exception-1.0 + category: Copyleft Limited spdx_license_key: Universal-FOSS-exception-1.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + The Universal FOSS Exception, Version 1.0 + + In addition to the rights set forth in the other license(s) included in the + distribution for this software, data, and/or documentation (collectively the + "Software," and such licenses collectively with this additional permission the + "Software License"), the copyright holders wish to facilitate interoperability + with other software, data, and/or documentation distributed with complete + corresponding source under a license that is OSI-approved and/or categorized by + the FSF as free (collectively "Other FOSS"). We therefore hereby grant the + following additional permission with respect to the use and distribution of the + Software with Other FOSS, and the constants, function signatures, data + structures and other invocation methods used to run or interact with each of + them (as to each, such software's "Interfaces"): + + (i) The Software's Interfaces may, to the extent permitted by the license of + the Other FOSS, be copied into, used and distributed in the Other FOSS in + order to enable interoperability, without requiring a change to the license + of the Other FOSS other than as to any Interfaces of the Software embedded + therein. The Software's Interfaces remain at all times under the Software + License, including without limitation as used in the Other FOSS (which upon + any such use also then contains a portion of the Software under the Software + License). + + (ii) The Other FOSS's Interfaces may, to the extent permitted by the license + of the Other FOSS, be copied into, used and distributed in the Software in + order to enable interoperability, without requiring that such Interfaces be + licensed under the terms of the Software License or otherwise altering their + original terms, if this does not require any portion of the Software other + than such Interfaces to be licensed under the terms other than the Software + License. + + (iii) If only Interfaces and no other code is copied between the Software and + the Other FOSS in either direction, the use and/or distribution of the + Software with the Other FOSS shall not be deemed to require that the Other + FOSS be licensed under the license of the Software, other than as to any + Interfaces of the Software copied into the Other FOSS. This includes, by way + of example and without limitation, statically or dynamically linking the + Software together with Other FOSS after enabling interoperability using the + Interfaces of one or both, and distributing the resulting combination under + different licenses for the respective portions thereof. + + For avoidance of doubt, a license which is OSI-approved or categorized by the + FSF as free, includes, for the purpose of this permission, such licenses with + additional permissions, and any license that has previously been so-approved or + categorized as free, even if now deprecated or otherwise no longer recognized as + approved or free. Nothing in this additional permission grants any right to + distribute any portion of the Software on terms other than those of the Software + License or grants any additional permission of any kind for use or distribution + of the Software in conjunction with software other than Other FOSS. json: universal-foss-exception-1.0.json - yml: universal-foss-exception-1.0.yml + yaml: universal-foss-exception-1.0.yml html: universal-foss-exception-1.0.html - text: universal-foss-exception-1.0.LICENSE + license: universal-foss-exception-1.0.LICENSE - license_key: unknown + category: Unstated License spdx_license_key: LicenseRef-scancode-unknown other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Unstated License + text: json: unknown.json - yml: unknown.yml + yaml: unknown.yml html: unknown.html - text: unknown.LICENSE + license: unknown.LICENSE - license_key: unknown-license-reference + category: Unstated License spdx_license_key: LicenseRef-scancode-unknown-license-reference other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Unstated License + text: json: unknown-license-reference.json - yml: unknown-license-reference.yml + yaml: unknown-license-reference.yml html: unknown-license-reference.html - text: unknown-license-reference.LICENSE + license: unknown-license-reference.LICENSE - license_key: unknown-spdx + category: Unstated License spdx_license_key: LicenseRef-scancode-unknown-spdx other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Unstated License + text: json: unknown-spdx.json - yml: unknown-spdx.yml + yaml: unknown-spdx.yml html: unknown-spdx.html - text: unknown-spdx.LICENSE + license: unknown-spdx.LICENSE - license_key: unlicense + category: Public Domain spdx_license_key: Unlicense other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + This is free and unencumbered software released into the public domain. + + Anyone is free to copy, modify, publish, use, compile, sell, or + distribute this software, either in source code form or as a compiled + binary, for any purpose, commercial or non-commercial, and by any + means. + + In jurisdictions that recognize copyright laws, the author or authors + of this software dedicate any and all copyright interest in the + software to the public domain. We make this dedication for the benefit + of the public at large and to the detriment of our heirs and + successors. We intend this dedication to be an overt act of + relinquishment in perpetuity of all present and future rights to this + software under copyright law. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR + OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. + + For more information, please refer to json: unlicense.json - yml: unlicense.yml + yaml: unlicense.yml html: unlicense.html - text: unlicense.LICENSE + license: unlicense.LICENSE - license_key: unlimited-binary-linking + category: Permissive spdx_license_key: LicenseRef-scancode-unlimited-binary-linking other_spdx_license_keys: [] is_exception: yes - is_deprecated: no - category: Permissive + is_deprecated: yes + text: | + As a special exception, you may use, copy, link, modify and distribute + under the user's own terms, binary object code versions of works based + on the library. json: unlimited-binary-linking.json - yml: unlimited-binary-linking.yml + yaml: unlimited-binary-linking.yml html: unlimited-binary-linking.html - text: unlimited-binary-linking.LICENSE + license: unlimited-binary-linking.LICENSE +- license_key: unlimited-binary-use-exception + category: Permissive + spdx_license_key: LicenseRef-scancode-unlimited-binary-use-exception + other_spdx_license_keys: [] + is_exception: yes + is_deprecated: no + text: | + As a special exception, you may use, copy, link, modify and distribute + under the user's own terms, binary object code versions of works based + on the library. + json: unlimited-binary-use-exception.json + yaml: unlimited-binary-use-exception.yml + html: unlimited-binary-use-exception.html + license: unlimited-binary-use-exception.LICENSE - license_key: unlimited-linking-exception-gpl + category: Copyleft spdx_license_key: LicenseRef-scancode-unlimited-link-exception-gpl other_spdx_license_keys: - LicenseRef-scancode-unlimited-linking-exception-gpl is_exception: yes is_deprecated: no - category: Copyleft + text: | + In addition to the permissions in the GNU General Public License, the + Free Software Foundation gives you unlimited permission to link the + compiled version of this file with other programs, and to distribute + those programs without any restriction coming from the use of this + file. (The General Public License restrictions do apply in other + respects; for example, they cover modification of the file, and + distribution when not linked into another program.) json: unlimited-linking-exception-gpl.json - yml: unlimited-linking-exception-gpl.yml + yaml: unlimited-linking-exception-gpl.yml html: unlimited-linking-exception-gpl.html - text: unlimited-linking-exception-gpl.LICENSE + license: unlimited-linking-exception-gpl.LICENSE - license_key: unlimited-linking-exception-lgpl + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-unlimited-link-exception-lgpl other_spdx_license_keys: - LicenseRef-scancode-unlimited-linking-exception-lgpl is_exception: yes is_deprecated: no - category: Copyleft Limited + text: "In addition to the permissions in the GNU Lesser General Public License, the\nFree\ + \ Software Foundation gives you unlimited permission to link the compiled\nversion of this\ + \ file with other programs, and to distribute those programs\nwithout any restriction coming\ + \ from the use of this file. \n(The GNU Lesser General Public License restrictions do apply\ + \ in other respects;\nfor example, they cover modification of the file, and distribution\ + \ when not\nlinked into another program.)" json: unlimited-linking-exception-lgpl.json - yml: unlimited-linking-exception-lgpl.yml + yaml: unlimited-linking-exception-lgpl.yml html: unlimited-linking-exception-lgpl.html - text: unlimited-linking-exception-lgpl.LICENSE + license: unlimited-linking-exception-lgpl.LICENSE - license_key: unpbook + category: Permissive spdx_license_key: LicenseRef-scancode-unpbook other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use or modify this software for educational or + for commercial purposes, and without fee, is hereby granted, + provided that the above copyright notice appears in connection + with any and all uses, with clear indication as to any + modifications made. The author RESERVES the sole rights of + reproduction, publication and distribution and hence permission + to print this source code in any book, reference manual, + magazine, or other type of publication, including any digital + medium, must be granted in writing by W. Richard Stevens. + + The author makes no representations about the suitability of this + software for any purpose. It is provided "as is" without express + or implied warranty. json: unpbook.json - yml: unpbook.yml + yaml: unpbook.yml html: unpbook.html - text: unpbook.LICENSE + license: unpbook.LICENSE - license_key: unpublished-source + category: Commercial spdx_license_key: LicenseRef-scancode-unpublished-source other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE of the Copyright Holder. + The contents of this file may not be disclosed to third parties, copied or + duplicated in any form, in whole or in part, without the prior written + permission of the Copyright Holder. json: unpublished-source.json - yml: unpublished-source.yml + yaml: unpublished-source.yml html: unpublished-source.html - text: unpublished-source.LICENSE + license: unpublished-source.LICENSE - license_key: unrar + category: Source-available spdx_license_key: LicenseRef-scancode-unrar other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: "****** ***** ****** UnRAR - free utility for RAR archives\n ** ** ** **\ + \ ** ** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n ****** ******* ****** License\ + \ for use and distribution of\n ** ** ** ** ** ** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\ + \ ** ** ** ** ** ** FREE portable version\n \ + \ ~~~~~~~~~~~~~~~~~~~~~\n\n The source code of UnRAR utility is freeware. This\ + \ means:\n\n 1. All copyrights to RAR and the utility UnRAR are exclusively\n owned\ + \ by the author - Alexander Roshal.\n\n 2. UnRAR source code may be used in any software\ + \ to handle\n RAR archives without limitations free of charge, but cannot be\n \ + \ used to develop RAR (WinRAR) compatible archiver and to\n re-create RAR compression\ + \ algorithm, which is proprietary.\n Distribution of modified UnRAR source code in\ + \ separate form\n or as a part of other software is permitted, provided that\n \ + \ full text of this paragraph, starting from \"UnRAR source code\"\n words, is included\ + \ in license, or in documentation if license\n is not available, and in source code\ + \ comments of resulting package.\n\n 3. The UnRAR utility may be freely distributed. It\ + \ is allowed\n to distribute UnRAR inside of other software packages.\n\n 4. THE\ + \ RAR ARCHIVER AND THE UnRAR UTILITY ARE DISTRIBUTED \"AS IS\".\n NO WARRANTY OF ANY\ + \ KIND IS EXPRESSED OR IMPLIED. YOU USE AT \n YOUR OWN RISK. THE AUTHOR WILL NOT BE\ + \ LIABLE FOR DATA LOSS, \n DAMAGES, LOSS OF PROFITS OR ANY OTHER KIND OF LOSS WHILE\ + \ USING\n OR MISUSING THIS SOFTWARE.\n\n 5. Installing and using the UnRAR utility\ + \ signifies acceptance of\n these terms and conditions of the license.\n\n 6. If\ + \ you don't agree with terms of the license you must remove\n UnRAR files from your\ + \ storage devices and cease to use the\n utility.\n\n Thank you for your interest\ + \ in RAR and UnRAR.\n Alexander L. Roshal" json: unrar.json - yml: unrar.yml + yaml: unrar.yml html: unrar.html - text: unrar.LICENSE + license: unrar.LICENSE - license_key: unsplash + category: Free Restricted spdx_license_key: LicenseRef-scancode-unsplash other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Unsplash grants you an irrevocable, nonexclusive, worldwide copyright license to + download, copy, modify, distribute, perform, and use photos from Unsplash for free, + including for commercial purposes, without permission from or attributing the photographer + or Unsplash. This license does not include the right to compile photos from Unsplash to + replicate a similar or competing service. json: unsplash.json - yml: unsplash.yml + yaml: unsplash.yml html: unsplash.html - text: unsplash.LICENSE + license: unsplash.LICENSE - license_key: uofu-rfpl + category: Proprietary Free spdx_license_key: LicenseRef-scancode-uofu-rfpl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "UNIVERSITY OF UTAH RESEARCH FOUNDATION PUBLIC LICENSE\n\t\n1. Definitions\n\n1.1 \"\ + Commercial Use\" means covered code utilized by USER to generate a\n revenue stream, including\ + \ but not limited to, embedding the source\n code in USER's proprietary software, executable\ + \ software, or\n consulting utilizing the source code.\n\n1.2 \"Contributor\" means each\ + \ entity that creates or contributes to the\n creation of Modifications.\n\n1.3 \"Covered\ + \ Code\" means the Original Source Code, Modifications, or\n the combination of the Original\ + \ Source Code and Modifications, in\n each case including portions thereof. The Original\ + \ Source Code,\n developed by the University of Utah, hereinafter referred to as\n UNIVERSITY\ + \ is described in the Source Code notice required by\n Exhibit A.\n\n1.4 \"Source Code\"\ + \ means the preferred form of the Covered Code for\n making modifications to it, including\ + \ all modules it contains, plus\n any associated interface definition files, scripts used\ + \ to control\n compilation and installation of an Executable, or a list of source\n code\ + \ differential comparisons against either the Original Source\n Code or another well known,\ + \ available Covered Code of the\n Contributor's choice. The Source Code can be in a compressed\ + \ or\n archival form, provided the appropriate decompression or\n de-archiving software\ + \ is widely available for no charge.\n\n1.5 \"Electronic Distribution Mechanism\" means\ + \ a mechanism generally\n accepted in the software development community for the electronic\n\ + \ transfer of data.\n\n1.6 \"Larger Work\" means a work, which combines Covered Code or\n\ + \ portions thereof with code not governed by the terms of this\n License.\n\n1.7 \"License\"\ + \ means this document.\n\n1.8 \"Licensable\" means having the right to grant, to the maximum\n\ + \ extent possible, whether at the time of the initial grant or\n subsequently acquired,\ + \ any and all rights conveyed herein.\n\n1.9 \"Modifications\" means any addition to or\ + \ deletion from the\n substance or structure of either the Original Source Code or any\n\ + \ previous Modifications. When Covered Code is released as a series of\n files, a Modification\ + \ is:\n\n (a) Any addition to or deletion from the contents of a file\n containing\ + \ Original Code or previous Modifications.\n\n (b) Any new file that contains any part\ + \ of the Original Code or\n previous Modifications\n\n1.10 \"USER\" (or \"YOU\") means\ + \ an individual or a legal entity\n exercising rights under, and complying with all of\ + \ the terms of this\n License. For legal entities, USER includes any entity, which\n controls,\ + \ is controlled by, or is under common control with You. For\n purposes of this definition,\ + \ \"control\" means (a) the power, direct\n or indirect, to cause the direction or management\ + \ of such entity,\n whether by contract or otherwise, or (b) ownership of fifty percent\n\ + \ (50%) or more of the outstanding shares or beneficial ownership of\n such entity.\n\n\ + 2. Source Code License.\n\n2.1 The Initial Developer Grant The UNIVERSITY hereby grants\ + \ USER a\n world-wide, royalty-free, non-exclusive license, subject to third\n party intellectual\ + \ property claims:\n\n (a) to use, reproduce, modify, display, and perform, the Covered\n\ + \ Code (or portions thereof) with or without Modifications, or as part\n of a Larger Work.;\ + \ and\n\n (b) under patents now or hereafter owned or controlled by\n UNIVERSITY, to make,\ + \ have made, and use (\"Utilize\") the Covered\n Code(or portions thereof), but solely\ + \ to the extent that any such\n patent is reasonably necessary to enable USER to Utilize\ + \ the Covered\n Code (or portions thereof) and not to any greater extent that may be\n\ + \ necessary to Utilize further Modifications or combinations.\n\n (c) the licenses granted\ + \ in this Section 2.1(a) and (b) are\n effective on the date the USER first receives Covered\ + \ Code.\n\n (d) No License is granted by UNIVERSITY for the Commercial Use of\n Covered\ + \ Code under this License.\n\n (e) No License is granted by UNIVERSITY for the distribution\ + \ of\n Covered Code under this License.\n\n\n2.2. Contributor Grant. Each Contributor hereby\ + \ grants UNIVERSITY a\n world-wide, royalty-free, non-exclusive license, subject to third\n\ + \ party intellectual property claims:\n\n (a) to use, reproduce, modify, display, perform,\ + \ sublicense and\n distribute the Modifications created by such Contributor (or\n portions\ + \ thereof) either on an unmodified basis, with other\n Modifications, as Covered Code or\ + \ as part of a Larger Work; and\n\n (b) under patents now or hereafter owned or controlled\ + \ by\n Contributor, to Utilize the Covered Code (or portions thereof), but\n solely to\ + \ the extent that any such patent is reasonably necessary to\n enable USER to Utilize the\ + \ Contributor Version (or portions\n thereof), and not to any greater extent that may be\ + \ necessary to\n Utilize further Modifications or combinations.\n\n (c) the licenses granted\ + \ in this Section 2.2(a) and (b) are\n effective on the date the UNIVERSITY first receives\ + \ the Covered Code\n\n3. Contributor Obligations\n\n3.1. Intellectual Property Matters\n\ + \n (a) Third Party Claims. If USER has knowledge that a party claims an\n intellectual\ + \ property right in particular functionality or code (or\n its utilization under this License),\ + \ USER must include a text file\n with the source code provided to UNIVERSITY titled \"\ + LEGAL\" which\n describes the claim and the party making the claim in sufficient\n detail\ + \ that UNIVERSITY will know whom to contact. If USER obtains\n such knowledge after USER\ + \ makes the Modification available to\n UNIVERSITY, USER shall promptly modify the LEGAL\ + \ file in all copies\n USER makes available thereafter and shall notify UNIVERSITY that\ + \ new\n knowledge has been obtained.\n\n (b) Contributor APIs. If Your Modification is\ + \ an application\n programming interface and USER owns or controls patents, which are\n\ + \ reasonably necessary to implement that API, you must also include\n this information\ + \ in the LEGAL file.\n\n3.2. Required Notices. USER must duplicate the notice in Exhibit\ + \ A in\n each file of the Source Code, and this License in any documentation\n for the\ + \ Source Code, where USER describes recipients' rights\n relating to Covered Code. If USER\ + \ created one or more\n Modification(s), USER may add name as a Contributor to the notice\n\ + \ described in Exhibit A. If it is not possible to put such notice in\n a particular Source\ + \ Code file due to its structure, then USER must\n include such notice in a location (such\ + \ as a relevant directory\n file) where a user would be likely to look for such a notice.\n\ + \n3.3. Distribution of Executable Versions. - This license does not\n allow distribution\ + \ of the Covered Code by USER or Contributor.\n\n3.4. Larger Works. USER may create a Larger\ + \ Work by combining Covered\n Code with other code not governed by the terms of this License.\ + \ In\n such a case, USER must make sure the requirements of this License\n are fulfilled\ + \ for the Covered Code including 2.1d and 2.1e.\n\n4. Inability to Comply Due to Statute\ + \ or Regulation.\n\n If it is impossible for USER to comply with any of the terms of this\n\ + \ License with respect to some or all of the Covered Code due to\n statute or regulation\ + \ then USER must:\n\n (a) comply with the terms of this License to the maximum extent\n\ + \ possible; and\n\n (b) describe the limitations and the code they affect. Such\n description\ + \ must be included in the LEGAL file described in Section\n 3.1 and must be included with\ + \ all distributions of the Source\n Code. Except to the extent prohibited by statute or\ + \ regulation, such\n description must be sufficiently detailed for a recipient of\n ordinary\ + \ skill to be able to understand it.\n\n5. Application of this License.\n\n This License\ + \ applies to Covered Code attached to the notice in Exhibit A.\n\n6. DISCLAIMER OF WARRANTY.\n\ + \n COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS,\n WITHOUT WARRANTY\ + \ OF ANY KIND, EITHER EXPRESSED OR IMPLIED,\n INCLUDING, WITHOUT LIMITATION, WARRANTIES\ + \ THAT THE COVERED CODE IS\n FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE\ + \ OR\n NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF\n THE COVERED\ + \ CODE IS WITH USER. SHOULD ANY COVERED CODE PROVE\n DEFECTIVE IN ANY RESPECT, YOU (NOT\ + \ THE UNIVERSITY OR ANY OTHER\n CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING,\ + \ REPAIR OR\n CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL\n PART\ + \ OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED\n HEREUNDER EXCEPT UNDER THIS\ + \ DISCLAIMER.\n\n7. TERMINATION.\n\n This License and the rights granted hereunder will\ + \ terminate\n automatically if USER fails to comply with terms herein. All\n sublicenses\ + \ to the Covered Code which are properly granted shall\n survive any termination of this\ + \ License. Provisions which, by their\n nature, must remain in effect beyond the termination\ + \ of this License\n shall survive.\n\n8. LIMITATION OF LIABILITY.\n\n UNDER NO CIRCUMSTANCES\ + \ AND UNDER NO LEGAL THEORY, WHETHER TORT\n (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE,\ + \ SHALL THE\n UNIVERSITY, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED\n CODE,\ + \ OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO USER OR\n ANY OTHER PERSON FOR ANY\ + \ INDIRECT, SPECIAL, INCIDENTAL, OR\n CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING,\ + \ WITHOUT\n LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER\n FAILURE\ + \ OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR\n LOSSES, EVEN IF SUCH PARTY\ + \ SHALL HAVE BEEN INFORMED OF THE\n POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY\ + \ SHALL NOT\n APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH\n PARTY'S\ + \ NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH\n LIMITATION. SOME JURISDICTIONS\ + \ DO NOT ALLOW THE EXCLUSION OR\n LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO\ + \ THAT EXCLUSION\n AND LIMITATION MAY NOT APPLY TO USER.\n\n\n9. U.S. GOVERNMENT END USERS,\n\ + \n The Covered Code is a \"commercial item,\" as that term is defined in\n 48 C.F.R. 2.101\ + \ (Oct. 1995). consisting of \"commercial computer\n software\" and \"commercial computer\ + \ software documentation,\" as such\n terms are used in 48 C.F.R. 12.212 (Sept. 1995).\ + \ Consistent with 48\n C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June\n\ + \ 1995), all U.S. Government End Users acquire Covered Code with only\n those rights set\ + \ forth herein.\n\n10. MISCELLANEOUS.\n\n This License represents the complete agreement\ + \ concerning subject\n matter hereof. Nothing in this AGREEMENT shall be construed as\n\ + \ conferring by implication, estoppel or otherwise any license or\n rights other than\ + \ those granted in this License. If any provision of\n this License is held to be unenforceable,\ + \ such provision shall be\n reformed only to the extent necessary to make it enforceable.\ + \ This\n License shall be governed by Utah law provisions (except to the\n extent applicable\ + \ law, if any, provides otherwise). The application\n of the United Nations Convention\ + \ on Contracts for the International\n Sale of Goods is expressly excluded. Any law or\ + \ regulation which\n provides that the language of a contract shall be construed against\n\ + \ the drafter shall not apply to this License.\n\nEXHIBIT A.\n\nThe contents of this file\ + \ are subject to the University of Utah Public\nLicense (the \"License\"); you may not use\ + \ this file except in\ncompliance with the License.\n\nSoftware distributed under the License\ + \ is distributed on an \"AS IS\"\nbasis, WITHOUT WARRANTY OF ANY KIND, either express or\ + \ implied. See\nthe License for the specific language governing rights and limitations\n\ + under the License.\n\nThe Original Source Code is \"teem\", released March 23, 2001.\n\n\ + The Original Source Code was developed by the University of Utah.\nPortions created by UNIVERSITY\ + \ are Copyright (C) 2001, 1998 University\nof Utah. All Rights Reserved." json: uofu-rfpl.json - yml: uofu-rfpl.yml + yaml: uofu-rfpl.yml html: uofu-rfpl.html - text: uofu-rfpl.LICENSE + license: uofu-rfpl.LICENSE - license_key: uoi-ncsa + category: Permissive spdx_license_key: NCSA other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + University of Illinois/NCSA Open Source 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 with the + Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + Redistributions of source code must retain the above copyright notice, this list of + conditions and the following disclaimers. + + Redistributions in binary form must reproduce the above copyright notice, this list + of conditions and the following disclaimers in the documentation and/or other + materials provided with the distribution. + + Neither the names of , nor + the names of its contributors may be used to endorse or promote products derived from + this Software without specific prior written permission. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE. json: uoi-ncsa.json - yml: uoi-ncsa.yml + yaml: uoi-ncsa.yml html: uoi-ncsa.html - text: uoi-ncsa.LICENSE + license: uoi-ncsa.LICENSE - license_key: upl-1.0 + category: Permissive spdx_license_key: UPL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The Universal Permissive License (UPL), Version 1.0\n\nSubject to the condition set\ + \ forth below, permission is hereby granted to any\nperson obtaining a copy of this software,\ + \ associated documentation and/or data\n(collectively the \"Software\"), free of charge\ + \ and under any and all copyright\nrights in the Software, and any and all patent rights\ + \ owned or freely licensable\nby each licensor hereunder covering either\n\n(i) the unmodified\ + \ Software as contributed to or provided by such licensor, or \n(ii) the Larger Works (as\ + \ defined below), to deal in both\n\n (a) the Software, and\n (b) any piece of software\ + \ and/or hardware listed in the lrgrwrks.txt file if\n one is included with the Software\ + \ (each a \"Larger Work\" to which the\n Software is contributed by such licensors),\n\ + \nwithout restriction, including without limitation the rights to copy, create\nderivative\ + \ works of, display, perform, and distribute the Software and make,\nuse, sell, offer for\ + \ sale, import, export, have made, and have sold the Software\nand the Larger Work(s), and\ + \ to sublicense the foregoing rights on either these\nor other terms.\n\nThis license is\ + \ subject to the following condition:\n\nThe above copyright notice and either this complete\ + \ permission notice or at a\nminimum a reference to the UPL must be included in all copies\ + \ or substantial\nportions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT\ + \ WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\ + \ OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT\ + \ SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\ + \ WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION\ + \ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." json: upl-1.0.json - yml: upl-1.0.yml + yaml: upl-1.0.yml html: upl-1.0.html - text: upl-1.0.LICENSE + license: upl-1.0.LICENSE - license_key: upx-exception-2.0-plus + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-upx-exception-2.0-plus other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + SPECIAL EXCEPTION FOR COMPRESSED EXECUTABLES + ============================================ + + The stub which is imbedded in each UPX compressed program is part of UPX and UCL, and contains code that is under our copyright. The terms of the GNU General Public License still apply as compressing a program is a special form of linking with our stub. + + Hereby Markus F.X.J. Oberhumer and Laszlo Molnar grant you special permission to freely use and distribute all UPX compressed programs (including commercial ones), subject to the following restrictions: + + 1. You must compress your program with a completely unmodified UPX version; either with our precompiled version, or (at your option) with a self compiled version of the unmodified UPX sources as distributed by us. + + 2. This also implies that the UPX stub must be completely unmodfied, i.e.the stub imbedded in your compressed program must be byte-identical to the stub that is produced by the official unmodified UPX version. + + 3. The decompressor and any other code from the stub must exclusively get used by the unmodified UPX stub for decompressing your program at program startup. No portion of the stub may get read, copied, called or otherwise get used or accessed by your program. json: upx-exception-2.0-plus.json - yml: upx-exception-2.0-plus.yml + yaml: upx-exception-2.0-plus.yml html: upx-exception-2.0-plus.html - text: upx-exception-2.0-plus.LICENSE + license: upx-exception-2.0-plus.LICENSE - license_key: us-govt-public-domain + category: Public Domain spdx_license_key: LicenseRef-scancode-us-govt-public-domain other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + 17 U.S. Code $ 105. Subject matter of copyright: United States Government works + + Copyright protection under this title is not available for any work of the + United States Government. json: us-govt-public-domain.json - yml: us-govt-public-domain.yml + yaml: us-govt-public-domain.yml html: us-govt-public-domain.html - text: us-govt-public-domain.LICENSE + license: us-govt-public-domain.LICENSE - license_key: us-govt-unlimited-rights + category: Permissive spdx_license_key: LicenseRef-scancode-us-govt-unlimited-rights other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: " Grant of Unlimited Rights\n\nUnder contracts , the U.S. Government\ + \ obtained \nunlimited rights in the software and documentation contained herein.\nUnlimited\ + \ rights are defined in DFAR 252.227-7013(a)(19). By making \nthis public release, the\ + \ Government intends to confer upon all \nrecipients unlimited rights equal to those held\ + \ by the Government. \nThese rights include rights to use, duplicate, release or disclose\ + \ the \nreleased technical data and computer software in whole or in part, in \nany manner\ + \ and for any purpose whatsoever, and to have or permit others \nto do so.\n\n \ + \ DISCLAIMER\n\nALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE\ + \ AVAILABLE OR\nDISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED \nWARRANTY\ + \ AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE\nSOFTWARE, DOCUMENTATION\ + \ OR OTHER INFORMATION RELEASED, MADE AVAILABLE \nOR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY,\ + \ OR FITNESS FOR A\nPARTICULAR PURPOSE OF SAID MATERIAL." json: us-govt-unlimited-rights.json - yml: us-govt-unlimited-rights.yml + yaml: us-govt-unlimited-rights.yml html: us-govt-unlimited-rights.html - text: us-govt-unlimited-rights.LICENSE + license: us-govt-unlimited-rights.LICENSE - license_key: usrobotics-permissive + category: Permissive spdx_license_key: LicenseRef-scancode-usrobotics-permissive other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to copy, display, distribute and make derivative works + from this material in whole or in part for any purpose is granted + provided that the above copyright notice and this paragraph are + duplicated in all copies. THIS SOFTWARE IS PROVIDED "AS IS" AND + WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING, WITHOUT + LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE. + + If providing code not subject to a copyright please indicate that the + code has been dedicated to the public. json: usrobotics-permissive.json - yml: usrobotics-permissive.yml + yaml: usrobotics-permissive.yml html: usrobotics-permissive.html - text: usrobotics-permissive.LICENSE + license: usrobotics-permissive.LICENSE - license_key: utopia + category: Permissive spdx_license_key: LicenseRef-scancode-utopia other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The agreement below gives the TeX Users Group (TUG) the right to\nsublicense, and grant\ + \ such sublicensees the right to further sublicense,\nany or all of the rights enumerated\ + \ below. TUG hereby does so\nsublicense all such rights, irrevocably and in perpetuity,\ + \ to any and\nall interested parties.\n\n--Karl Berry, TUG President,\non behalf of the\ + \ TeX Users Group board and members\n17 November 2006\nhttp://tug.org/fonts/utopia\n\n------------------------------------------------------------\n\ + October 11, 2006\n\nRE: License to TeX Users Group for the Utopia Typeface\n\nAdobe Systems\ + \ Incorporated (\"Adobe\") hereby grants to the TeX Users\nGroup and its members a nonexclusive,\ + \ royalty-free, perpetual license to\nthe typeface software for the Utopia Regular, Utopia\ + \ Italic, Utopia Bold\nand Utopia bold Italic typefaces, including Adobe Type 1 font programs\n\ + for each style (collectively, the \"Software\") as set forth below.\n\nAdobe grants the\ + \ TeX Users Group a license under its copyrights, to use,\nreproduce, display and distribute\ + \ the Software for any purpose and\nwithout fee provided that the following copyright notice\ + \ appears in all\nwhole and partial copies of the Software and provided that the following\n\ + trademark symbol and attribution appear in all unmodified copies of the\nSoftware:\n\nCopyright\ + \ 1989, 1991 Adobe Systems Incorporated. All rights reserved.\n(alternatively, @1989, 1991\ + \ Adobe Systems Incorporated. All rights reserved.)\nUtopia(R)\nUtopia is either a registered\ + \ trademark or trademark of Adobe Systems\nIncorporated in the United States and/or other\ + \ countries. Used under\nlicense. \n\nAdobe also grants to the TeX Users Group a license\ + \ to modify the\nSoftware for any purpose and redistribute such modifications, for any\n\ + purpose and royalty-free, provided that the modified Software shall not\nuse the font name(s)\ + \ or trademark(s), in whole or in part, unless\nexplicit written permission is granted by\ + \ Adobe. This restriction\napplies to all references stored in the Software for identification\n\ + purposes, such as the font menu name and other font description\nfields. The TeX Users Group\ + \ is also permitted to sublicense, and grant\nsuch sublicensees the right to further sublicense,\ + \ any or all the\nforegoing rights through multiple tiers of distribution. The licenses\n\ + granted herein are granted in perpetuity and may not be terminated by\neither party unless\ + \ such termination is based on a breach of the terms\nand conditions herein stated.\n\n\ + Adobe retains ownership of the copyright in the Software. The TeX Users\nGroup agrees that\ + \ Adobe and its suppliers are the sole and exclusive\nowners of all rights, title and interest,\ + \ including all copyrights,\npatents, trademarks, trade names, trade secrets and other intellectual\n\ + property rights in the Software. No title or ownership of the Software,\nany copies of the\ + \ Software, or the patent, copyright, trade secret,\ntrademark, trade name or other proprietary\ + \ rights contained in the\nSoftware is transferred to the TeX Users Group.\n\nThe Adobe\ + \ trademarks shall not be used in advertising pertaining to the\ndistribution of the Software\ + \ without express prior permission from\nAdobe. Any such use shall be in accordance with\ + \ the Adobe trademark\nguidelines, available on the Adobe website at\nhttp://www.adobe.com/misc/pdfs/TM\ + \ GuideforThirdPartiesFinal.pdf.\nIf any portion of the Software is changed, it cannot be\ + \ marketed under\nAdobe's trademarks unless Adobe, in its sole discretion, approves by a\n\ + prior writing the quality of the resulting implementation.\n\nThe TeX Users Group shall\ + \ have the right to evaluate the Software\nprovided by Adobe.\n\nADOBE MAKES NO REPRESENTATIONS\ + \ ABOUT THE SUITABILITY OF THE SOFTWARE FOR\nANY PURPOSE. IT IS PROVIDED \"AS-IS\" WITHOUT\ + \ EXPRESS OR IMPLIED\nWARRANTY. ADOBE DISCLAIMS ALL WARRANTIES WITH REGARD TO THE SOFTWARE,\n\ + INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE,\ + \ AND NON-INFRINGEMENT OF THIRD PARTY RIGHTS. IN NO\nEVENT SHALL ADOBE BE LIABLE TO YOU\ + \ OR ANY OTHER PARTY FOR ANY SPECIAL,\nINDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\ + \ WHATSOEVER WHETHER IN\nAN ACTION OF CONTRACT NEGLIGENCE, STRICT LIABILITY OR ANY OTHER\ + \ ACTION\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\nSOFTWARE.\ + \ ADOBE WILL NOT PROVIDE ANY TRAINING OR OTHER SUPPORT FOR THE\nSOFTWARE.\n\nAdobe Document\ + \ Id: 4400078611" json: utopia.json - yml: utopia.yml + yaml: utopia.yml html: utopia.html - text: utopia.LICENSE + license: utopia.LICENSE - license_key: vbaccelerator + category: Free Restricted spdx_license_key: LicenseRef-scancode-vbaccelerator other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Distribution notice: + + You are free to distribute this zip in it's original state to any + public www site, online service or BBS without explicitly obtaining + the author's permission. (Notification would be greatly appreciated + though!). + + You are free distribute vbalGrid6.ocx unmodified, or to use or modify + the source code as you wish. However, you must not distribute + modified versions of vbalGrid6.ocx unless you have changed the filename + and the ProgID (project name). + + If you wish to distribute this zip by any other means (i.e. if + you want to include it on a CD or any other software media) then the + EXPRESS PERMISSION of the author is REQUIRED. + + Please report any bugs in the component to the author. json: vbaccelerator.json - yml: vbaccelerator.yml + yaml: vbaccelerator.yml html: vbaccelerator.html - text: vbaccelerator.LICENSE + license: vbaccelerator.LICENSE - license_key: vcalendar + category: Permissive spdx_license_key: LicenseRef-scancode-vcalendar other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "For purposes of this license notice, the term Licensors shall mean, \ncollectively,\ + \ Apple Computer, Inc., AT&T Corp., International \nBusiness Machines Corporation\ + \ and Siemens Rolm Communications Inc. \nThe term Licensor shall mean any of\ + \ the Licensors. \n \ + \ \nSubject to acceptance of the following conditions,\ + \ permission is hereby \ngranted by Licensors without the need for written agreement\ + \ and without \nlicense or royalty fees, to use, copy, modify and distribute this\ + \ \nsoftware for any purpose. \ + \ \n \ + \ \nThe above copyright notice and the following four paragraphs must be \n\ + reproduced in all copies of this software and any software including \nthis software.\ + \ \n \ + \ \nTHIS SOFTWARE IS PROVIDED\ + \ ON AN \"AS IS\" BASIS AND NO LICENSOR SHALL HAVE \nANY OBLIGATION TO PROVIDE MAINTENANCE,\ + \ SUPPORT, UPDATES, ENHANCEMENTS OR \nMODIFICATIONS. \ + \ \n \ + \ \nIN NO EVENT SHALL ANY LICENSOR BE LIABLE TO ANY PARTY\ + \ FOR DIRECT, \nINDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES OR LOST PROFITS\ + \ ARISING OUT \nOF THE USE OF THIS SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF\ + \ SUCH \nDAMAGE. \ + \ \n \ + \ \nEACH LICENSOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, \n\ + INCLUDING BUT NOT LIMITED TO ANY WARRANTY OF NONINFRINGEMENT OR THE \nIMPLIED\ + \ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR \nPURPOSE. \ + \ \n\nThe software is\ + \ provided with RESTRICTED RIGHTS. Use, duplication, or \ndisclosure by the government\ + \ are subject to restrictions set forth in \nDFARS 252.227-7013 or 48 CFR 52.227-19,\ + \ as applicable." json: vcalendar.json - yml: vcalendar.yml + yaml: vcalendar.yml html: vcalendar.html - text: vcalendar.LICENSE + license: vcalendar.LICENSE - license_key: verbatim-manual + category: Copyleft spdx_license_key: Linux-man-pages-copyleft other_spdx_license_keys: - Verbatim-man-pages - LicenseRef-scancode-verbatim-manual is_exception: no is_deprecated: no - category: Copyleft + text: | + Permission is granted to make and distribute verbatim copies of this + manual provided the copyright notice and this permission notice are + preserved on all copies. + + Permission is granted to copy and distribute modified versions of this + manual under the conditions for verbatim copying, provided that the + entire resulting derived work is distributed under the terms of a + permission notice identical to this one. + + Since the Linux kernel and libraries are constantly changing, this + manual page may be incorrect or out-of-date. The author(s) assume no + responsibility for errors or omissions, or for damages resulting from + the use of the information contained herein. The author(s) may not + have taken the same level of care in the production of this manual, + which is licensed free of charge, as they might when working + professionally. + + Formatted or processed versions of this manual, if unaccompanied by + the source, must acknowledge the copyright and authors of this work. json: verbatim-manual.json - yml: verbatim-manual.yml + yaml: verbatim-manual.yml html: verbatim-manual.html - text: verbatim-manual.LICENSE + license: verbatim-manual.LICENSE - license_key: verisign + category: Proprietary Free spdx_license_key: LicenseRef-scancode-verisign other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + VERISIGN, INC. LICENSE AGREEMENT + + IMPORTANT - READ CAREFULLY BEFORE DOWNLOADING OR INSTALLING + + This file lists the VeriSign, Inc. ("VeriSign") Class 1 Certification + Authority Distinguished Name and Public Key information (the "Information"). + BY DOWNLOADING OR INSTALLING THE INFORMATION, YOU INDICATE YOUR ACCEPTANCE + OF THIS LICENSE. IF YOU DO NOT AGREE TO ALL OF THE TERMS OF THIS LICENSE, + DO NOT DOWNLOAD OR USE THE INFORMATION. + + 1. License and Limitations. VeriSign grants you a royalty-free license to + use, copy and distribute the Information or any compiled derivative of it, + subject to the terms of this License. You must reproduce and include this + entire License and VeriSign's copyright notices and trademarks on each copy + of the Information and compiled derivative of it. VeriSign retains all + ownership of the Information and all intellectual property rights therein. + + 2. No Warranty. VeriSign provides the Information "AS IS" and makes no + warranties, expressed or implied, about the Information or the use thereof. + WITHOUT LIMITATION, VERISIGN DISCLAIMS ANY IMPLIED WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT OF + THIRD PARTY RIGHTS. + + 3. Limitation of Liability. VeriSign's entire liability to you under this + License shall be limited to a maximum of $10.00. IN NO EVENT SHALL VERISIGN + BE LIABLE TO YOU OR TO ANY OTHER PERSON FOR ANY SPECIAL, INCIDENTAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE + INFORMATION. + + 4. General. This License is governed by the laws of the State of California + and is the complete and exclusive statement of your agreement with VeriSign + with respect to the Information. You acknowledge that the Information is + being provided to you without charge and that this is reflected in the + absence of warranties and limitations of liability in this License. + + 5. NOTICE: THE USE OF THIS VERISIGN CERTIFICATE IS SUBJECT TO THE + VERISIGN CERTIFICATION PRACTICE STATEMENT LOCATED AT + http://www.verisign.com/repository/CPS + OR AVAILABLE FROM: + VeriSign, Inc. + 2593 Coast Ave. + Mountain View, CA 94043 + (415) 961-7500 + + Code Fragments and ASN.1 discussion are taken from the PKCS standards + published by RSA Data Security, Inc. + + Copyright 1995 VeriSign, Inc. All Rights Reserved. json: verisign.json - yml: verisign.yml + yaml: verisign.yml html: verisign.html - text: verisign.LICENSE + license: verisign.LICENSE - license_key: vhfpl-1.1 + category: Copyleft spdx_license_key: LicenseRef-scancode-vhfpl-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: " vhf Public License\n\nBelow is a version of the license for\ + \ the vhf Free Software. The license is\ncalled the vhf Public License (or \"vhfPL\"), and\ + \ is an Open Source license.\nIt is thus appropriate for people wishing to write software\ + \ as Open Source\nwhere all source code to the software is made available to all users and\ + \ can\nbe freely modified and redistributed.\n\nTo use the free vhf software or develop\ + \ software based on free vhf software,\nyou have to meet the requirements in the vhfPL.\n\ + \n----------------------------------------------------------------------------\n\n \ + \ vhf PUBLIC LICENSE (vhfPL)\n Version 1.1, February\ + \ 2004\n\nCopyright (C) 2003/2004 vhf interservice GmbH,\n Im Marxle\ + \ 3, 72119 Altingen, Germany.\nEveryone is permitted to copy and distribute verbatim copies\n\ + of this license document, but changing it is not allowed.\n\nThis license applies to any\ + \ software containing a notice placed by the\ncopyright holder saying that it may be distributed\ + \ under the terms of this\nvhf Public License. Such software is herein referred to as vhf\ + \ Software.\nThis license covers modification and distribution of the vhf software, use\n\ + of third-party application programs based on the vhf software, and\ndevelopment of free\ + \ software which uses the vhf software.\n\n Granted Rights\n\ + \n1. You are granted the rights set forth in this license provided you agree\n to any\ + \ and all conditions in this license. Whole or partial distribution\n of the vhf software\ + \ in any form signifies acceptance of this license. \n\n2. You may copy and distribute\ + \ the vhf software provided that\n the entire package is distributed, including this License.\n\ + \n3. You may make modifications to the vhf software files and distribute your\n modifications.\ + \ The following restrictions apply to modifications:\n\n a. You must cause the modified\ + \ files to carry prominent notices\n stating that you changed the files and the date\ + \ of any change.\n\n b. Modifications must not alter or remove any copyright notices\ + \ in the\n vhf software.\n\n4. You may distribute the vhf software (or work based\ + \ on it) in\n objective code or machine-executable forms, provided that you\n meet these\ + \ restrictions:\n\n a. You accompany the vhf software with this license.\n\n b.\ + \ You must ensure that all recipients of the machine-executable\n forms are also\ + \ able to receive the complete machine-readable\n source code to the distributed\ + \ vhf software, including all\n modifications, without any charge beyond the costs\ + \ of data\n transfer.\n\n c. You ensure that all modifications included in the\n\ + \ machine-executable forms are available under the terms of this\n license.\n\ + \n5. You may use the original or modified versions of the vhf software\n to compile, link\ + \ and run application programs developed by you or\n third parties under this license.\n\ + \n6. You may develop application programs, reusable components (eg. Bundles)\n and other\ + \ software items that link with the original or modified\n versions of the vhf software.\ + \ These items, when distributed in\n machine-executable form, have the following restrictions:\n\ + \n a. You must ensure that all recipients of the machine-executable\n forms of\ + \ these items are also able to receive the complete\n source code to the items without\ + \ any charge beyond the costs of\n data transfer.\n\n b. You must explicitly\ + \ license all recipients of your items to use\n and re-distribute original and modified\ + \ versions of the items\n under terms identical to those under which they received\ + \ the items.\n\n7. The trademarks or software titles 'vhf', 'Cenon' etc. may be used for\n\ + \ promoting software, products or services which use or contain the\n vhf software.\n\ + \ The associated names of the authors of the vhf software may not be used\n to endorse\ + \ or promote products or services derived from or linking the\n vhf Software without specific\ + \ prior written permission.\n\n\n Limitations of Liability\n\n\ + In no event shall the authors of the vhf software or the copyright holder\nor their employers\ + \ be liable for any lost revenue or profits or other\ndirect, indirect, special, incidental\ + \ or consequential damages, even if\nthey have been advised of the possibility of such damages.\n\ + \n No Warranty\n\nThe vhf software is provided AS IS with\ + \ NO WARRANTY OF ANY KIND,\nINCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS\ + \ FOR A\nPARTICULAR PURPOSE.\n\n----------------------------------------------------------------------------\n\ + Copyright (C) 2003 vhf interservice GmbH service@vhf.de" json: vhfpl-1.1.json - yml: vhfpl-1.1.yml + yaml: vhfpl-1.1.yml html: vhfpl-1.1.html - text: vhfpl-1.1.LICENSE + license: vhfpl-1.1.LICENSE - license_key: vic-metcalfe-pd + category: Public Domain spdx_license_key: LicenseRef-scancode-vic-metcalfe-pd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + This file is provided for use with the unix-socket-faq. It is public + domain, and may be copied freely. There is no copyright on it. The + original work was by Vic Metcalfe (vic@brutus.tlug.org), and any + modifications made to that work were made with the understanding that + the finished work would be in the public domain. + + If you have found a bug, please pass it on to me at the above address + acknowledging that there will be no copyright on your work. + + The most recent version of this file, and the unix-socket-faq can be + found at http://www.interlog.com/~vic/sock-faq/. json: vic-metcalfe-pd.json - yml: vic-metcalfe-pd.yml + yaml: vic-metcalfe-pd.yml html: vic-metcalfe-pd.html - text: vic-metcalfe-pd.LICENSE + license: vic-metcalfe-pd.LICENSE - license_key: vicomsoft-software + category: Commercial spdx_license_key: LicenseRef-scancode-vicomsoft-software other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "VICOMSOFT SOFTWARE LICENSE\nPlease read this document carefully before installing the\ + \ \nVicomsoft software. By installing the software you agree \nto become contractually bound\ + \ by the terms of this licence. \n\nDEMONSTRATION SOFTWARE\nDemonstration software is provided\ + \ for evaluation purposes \nonly, for the period stated on the download site or in \naccompanying\ + \ literature. If not stated then the demonstration\nperiod is 30 days from the time the\ + \ software is first run.\n\nThe enclosed computer program(s) (\"Software\") is licensed,\ + \ not \nsold, to you by Vicomsoft for use only under the following terms \nand Vicomsoft\ + \ reserves any rights not expressly granted to you. \n\nYou own the disk on which any Software\ + \ is recorded, but Vicomsoft \nretains ownership of all copies of the Software itself.\n\ + \nLICENSE.\nThis License allows you to:\n\n(a)\tHave the Software installed only on a single\ + \ \n\tcomputer at a time. Copies on more than one computer \n\tshall be deemed to be illegal\ + \ copies and are in \n\tbreach of both copyright and this License.\n\n(b) \tTotally remove\ + \ a copy from the computer on which it \n\tis installed and install it on an alternative\ + \ \n\tcomputer provided once again that the Software shall \n\tnot at any time be installed\ + \ on more than one \n\tcomputer at any one time.\n\n(c) \tExecute the Software from a common\ + \ disk shared by \n\tmultiple CPUs provided one authorized copy of the \n\tSoftware has\ + \ been licensed from Vicomsoft for each \n\tCPU executing the Software.\n\n(d) \tMake one\ + \ copy of the Software in machine readable \n\tform; provided that such copy or the original\ + \ may \n\tbe used solely for backup purposes. The Software is \n\tprotected by copyright\ + \ law. As an express condition \n\tof this License, you must reproduce on the backup \n\t\ + copy the Vicomsoft copyright notice and any other \n\tproprietary legends on the original\ + \ supplied by \n\tVicomsoft. \n\nRESTRICTIONS.\n(a)\tYou may NOT distribute copies of the\ + \ Software to others. \n\n(b)\tThe Software contains trade secrets and to protect them \n\ + \tyou may NOT decompile, reverse engineer, disassemble \n\tor otherwise reduce the Software\ + \ to human readable form.\n\n(c)\tYou may NOT modify, adapt, translate, rent, lease, loan,\ + \ \n\tresell for profit, distribute, network, or create \n\tderivative works based on the\ + \ Software or any part thereof.\n\n\nTERMINATION. \nThis License is effective until terminated.\ + \ The License will \nterminate immediately without notice from Vicomsoft if \nyou fail to\ + \ comply with any of its provisions. Upon termination \nyou must destroy the Software and\ + \ all copies thereof, and you \nmay terminate this License at any time by so doing.\n\n\n\ + WARRANTY DISCLAIMER. \nThis Software and the accompanying written materials are licensed\ + \ \n\"as is\". The full text of the warranty is provided in the User \nManual and in no\ + \ event will Vicomsoft, or its developers, \nDirectors, Officers, Employees be liable to\ + \ you for any \nconsequential, incidental, or indirect damage (including damages \nfor loss\ + \ of business profits, business interruption, loss of \nbusiness information, and the like)\ + \ arising out of the use or \ninability to use the Software or accompanying written materials\ + \ \neven if Vicomsoft or an authorized Vicomsoft representative has been \nadvised of the\ + \ possibility of such damages. \nVicomsoft does not warrant that the Software will function\ + \ \nproperly in your particular environment. Vicomsoft's liability \nto you for actual damages\ + \ for any cause whatsoever and regardless of \nthe form of the action will be limited to\ + \ the money paid for the \nSoftware that caused the damages.\n\n\nGENERAL. \nThis License\ + \ will be construed under the laws of England." json: vicomsoft-software.json - yml: vicomsoft-software.yml + yaml: vicomsoft-software.yml html: vicomsoft-software.html - text: vicomsoft-software.LICENSE + license: vicomsoft-software.LICENSE - license_key: viewflow-agpl-3.0-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-viewflow-agpl-3.0-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + VIEWFLOW LIBRARY EXCEPTION + + Copyright (c) 2017 Mikhail Podgurskiy + + This Viewflow Library Exception ("Exception") is an additional + permission under section 7 of the GNU Affero General Public License, + version 3 ("AGPLv3"). It applies to a viewflow library that bears a + notice placed by the copyright holder of the library stating that the + library is governed by AGPLv3 along with this Exception. + + 1. Grant of Additional Permission. + + If you modify the Program or any covered work, without changing its + source code, only by linking or combining some or all bundles of the + Program with separate works covered by AGPL- incompatible license + terms, the licensors of this Program grant you the additional + permission to convey the resulting work. + + If you modify the Program, and your modified version becomes subject + to the requirement stated in AGPLv3, section 13, you may satisfy this + requirement by providing access to the Corresponding Source of your + modified version to each user that explicitly requests such + Corresponding Source, no later than 15 days following the date on + which such request was received. + + + 2. No Weakening of Viewflow Copyleft. + + The availability of this Exception does not imply any general + presumption that third-party software is unaffected by the copyleft + requirements of the license of Viewflow json: viewflow-agpl-3.0-exception.json - yml: viewflow-agpl-3.0-exception.yml + yaml: viewflow-agpl-3.0-exception.yml html: viewflow-agpl-3.0-exception.html - text: viewflow-agpl-3.0-exception.LICENSE + license: viewflow-agpl-3.0-exception.LICENSE - license_key: vim + category: Copyleft spdx_license_key: Vim other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: "VIM LICENSE\n\nI) There are no restrictions on distributing unmodified copies of Vim\ + \ except\n that they must include this license text. You can also distribute\n unmodified\ + \ parts of Vim, likewise unrestricted except that they must\n include this license text.\ + \ You are also allowed to include executables\n that you made from the unmodified Vim\ + \ sources, plus your own usage\n examples and Vim scripts.\n\nII) It is allowed to distribute\ + \ a modified (or extended) version of Vim,\n including executables and/or source code,\ + \ when the following four\n conditions are met:\n 1) This license text must be included\ + \ unmodified.\n 2) The modified Vim must be distributed in one of the following five\ + \ ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n\t\ + \ the distribution how to contact you. When the maintainer asks you\n\t (in any way)\ + \ for a copy of the modified Vim you distributed, you\n\t must make your changes, including\ + \ source code, available to the\n\t maintainer without fee. The maintainer reserves the\ + \ right to\n\t include your changes in the official version of Vim. What the\n\t maintainer\ + \ will do with your changes and under what license they\n\t will be distributed is negotiable.\ + \ If there has been no negotiation\n\t then this license, or a later version, also applies\ + \ to your changes.\n\tThe current maintainer is Bram Moolenaar . If this \n\ + \t changes it will be announced in appropriate places (most likely\n\t vim.sf.net, www.vim.org\ + \ and/or comp.editors). When it is completely\n\t impossible to contact the maintainer,\ + \ the obligation to send him\n\t your changes ceases. Once the maintainer has confirmed\ + \ that he has\n\t received your changes they will not have to be sent again.\n b)\ + \ If you have received a modified Vim that was distributed as\n\t mentioned under a) you\ + \ are allowed to further distribute it\n\t unmodified, as mentioned at I). If you make\ + \ additional changes the\n\t text under a) applies to those changes.\n c) Provide\ + \ all the changes, including source code, with every copy of\n\t the modified Vim you distribute.\ + \ This may be done in the form of a\n\t context diff. You can choose what license to\ + \ use for new code you\n\t add. The changes and their license must not restrict others\ + \ from\n\t making their own changes to the official version of Vim.\n d) When you\ + \ have a modified Vim which includes changes as mentioned\n\t under c), you can distribute\ + \ it without the source code for the\n\t changes if the following three conditions are\ + \ met:\n\t - The license that applies to the changes permits you to distribute\n\t the\ + \ changes to the Vim maintainer without fee or restriction, and\n\t permits the Vim maintainer\ + \ to include the changes in the official\n\t version of Vim without fee or restriction.\n\ + \t - You keep the changes for at least three years after last\n\t distributing the corresponding\ + \ modified Vim. When the maintainer\n\t or someone who you distributed the modified\ + \ Vim to asks you (in\n\t any way) for the changes within this period, you must make\ + \ them\n\t available to him.\n\t - You clearly describe in the distribution how to contact\ + \ you. This\n\t contact information must remain valid for at least three years\n\t \ + \ after last distributing the corresponding modified Vim, or as long\n\t as possible.\n\ + \ e) When the GNU General Public License (GPL) applies to the changes,\n\t you can\ + \ distribute the modified Vim under the GNU GPL version 2 or\n\t any later version.\n \ + \ 3) A message must be added, at least in the output of the \":version\"\n command\ + \ and in the intro screen, such that the user of the modified Vim\n is able to see\ + \ that it was modified. When distributing as mentioned\n under 2)e) adding the message\ + \ is only required for as far as this does\n not conflict with the license used for\ + \ the changes.\n 4) The contact information as required under 2)a) and 2)d) must not\ + \ be\n removed or changed, except that the person himself can make\n corrections.\n\ + \nIII) If you distribute a modified version of Vim, you are encouraged to use\n the\ + \ Vim license for your changes and make them available to the\n maintainer, including\ + \ the source code. The preferred way to do this is\n by e-mail or by uploading the\ + \ files to a server and e-mailing the URL.\n If the number of changes is small (e.g.,\ + \ a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be\ + \ used is\n \n\nIV) It is not allowed to remove this license from the\ + \ distribution of the Vim\n sources, parts of it or from a modified version. You may\ + \ use this\n license for previous Vim releases instead of the license that they came\n\ + \ with, at your option.\n\n\nNote:\n\n- If you are happy with Vim, please express that\ + \ by reading the rest of this\n file and consider helping needy children in Uganda.\n\n\ + - If you want to support further Vim development consider becoming a\n |sponsor|. The\ + \ money goes to Uganda anyway.\n\n- According to Richard Stallman the Vim license is GNU\ + \ GPL compatible.\n A few minor changes have been made since he checked it, but that should\ + \ not\n make a difference.\n\n- If you link Vim with a library that goes under the GNU\ + \ GPL, this limits\n further distribution to the GNU GPL. Also when you didn't actually\ + \ change\n anything in Vim.\n\n- Once a change is included that goes under the GNU GPL,\ + \ this forces all\n further changes to also be made under the GNU GPL or a compatible license.\n\ + \n- If you distribute a modified version of Vim, you can include your name and\n contact\ + \ information with the \"--with-modified-by\" configure argument or the\n MODIFIED_BY define." json: vim.json - yml: vim.yml + yaml: vim.yml html: vim.html - text: vim.LICENSE + license: vim.LICENSE - license_key: visual-idiot + category: Permissive spdx_license_key: LicenseRef-scancode-visual-idiot other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + By attaching this document to the given files (the “work”), + you, the licensee, are hereby granted free usage in both + personal and commerical environments, without any + obligation of attribution or payment (monetary or + otherwise). The licensee is free to use, copy, modify, + publish, distribute, sublicence, and/or merchandise the + work, subject to the licensee inflecting a positive message + unto someone. This includes (but is not limited to): + smiling, being nice, saying “thank you”, assisting other + persons, or any similar actions percolating the given + concept. + + The above copyright notice serves as a permissions notice + also, and may optionally be included in copies or portions + of the work. + + The work is provided “as is”, without warranty or support, + express or implied. The author(s) are not liable for any + damages, misuse, or other claim, whether from or as a + consequence of usage of the given work. json: visual-idiot.json - yml: visual-idiot.yml + yaml: visual-idiot.yml html: visual-idiot.html - text: visual-idiot.LICENSE + license: visual-idiot.LICENSE - license_key: visual-numerics + category: Permissive spdx_license_key: LicenseRef-scancode-visual-numerics other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Permission to use, copy, modify, and distribute this software is freely\ngranted by\ + \ Visual Numerics, Inc., provided that the copyright notice above and\nthe following warranty\ + \ disclaimer are preserved in human readable form. \n\nBecause this software is licenses\ + \ free of charge, it is provided \"AS IS\", with\nNO WARRANTY. TO THE EXTENT PERMITTED BY\ + \ LAW, VNI DISCLAIMS ALL WARRANTIES,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ITS\ + \ PERFORMANCE,\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. VNI WILL NOT BE LIABLE\n\ + FOR ANY DAMAGES WHATSOEVER ARISING OUT OF THE USE OF OR INABILITY TO USE THIS\nSOFTWARE,\ + \ INCLUDING BUT NOT LIMITED TO DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,\nPUNITIVE, AND\ + \ EXEMPLARY DAMAGES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES." json: visual-numerics.json - yml: visual-numerics.yml + yaml: visual-numerics.yml html: visual-numerics.html - text: visual-numerics.LICENSE + license: visual-numerics.LICENSE - license_key: vita-nuova-liberal + category: Copyleft spdx_license_key: LicenseRef-scancode-vita-nuova-liberal other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + VITA NUOVA LIBERAL SOURCE LICENCE + 29 May 2003 + IMPORTANT NOTICE - READ CAREFULLY: This Licence Agreement + (``LICENCE'') is a legal agreement between you as an indi- + vidual person or organisation (``YOU'') and Vita Nuova Hold- + ings Limited (``VITA NUOVA'') (having an office at 3 Innova- + tion Close, York Science Park, University Road, York England + YO10 5ZF), for all or any portion of the software product + accompanying this LICENCE, which includes computer software + in binary and source code form, other information and docu- + mentation (``LICENSED SOFTWARE''), where a notice declares + that this LICENCE applies. + By copying (except for the sole purpose of making a backup + copy), using, modifying, or distributing all or part of YOUR + copy of the LICENSED SOFTWARE YOU accept all the terms and + conditions of this LICENCE. Distribution includes allowing + others to use YOUR copy directly or indirectly (eg, over a + computer network). + YOU may cancel this LICENCE without explanation or penalty + by ceasing to copy, use, modify or distribute the LICENSED + SOFTWARE. + Subject to the restrictions and conditions in Clause 2 below + and to third party intellectual property claims YOU MAY for + commercial or non-commercial purposes on a world-wide, + royalty-free, non-exclusive and perpetual basis (subject to + Clause 3): + 1.1. make ADAPTATIONS of the LICENSED SOFTWARE in binary or + source code form. ADAPTATIONS means any work (ie + code, document, etc) based on the LICENSED SOFTWARE or + any part of it, for example (i) any work incorporating + the LICENSED SOFTWARE or any part of it, (ii) any work + incorporating any modified form of the LICENSED SOFT- + WARE or any part of it (eg where the LICENSED SOFTWARE + is rewritten in a different computer language or con- + verted to operate on a different type of CPU), or + (iii) any work otherwise covered by any of VITA + NUOVA's or any third party's intellectual property + rights in the LICENSED SOFTWARE. + 1.2. use, copy and distribute the LICENSED SOFTWARE and/or + ADAPTATIONS in binary or source code form provided + that each copy of the LICENSED SOFTWARE and ADAPTA- + TIONS shall retain without change a copy of this + LICENCE and all notices related to it and retain all + existing copyright notices in files and directories. + Where non-trivial extracts are taken from the LICENSED + SOFTWARE YOU must ensure the extracts contain appro- + priate copyright notices based on the existing copy- + right notices pertaining to the files and/or directo- + ries from which the extracts were taken including a + reference to this LICENCE. + 1.3. choose to offer and to make a charge for support, war- + ranties, indemnity or liability obligations (``Addi- + tional Terms'') provided always that YOU may only + offer such Additional Terms on YOUR own behalf and as + YOUR exclusive responsibility and not on behalf of + VITA NUOVA. If YOU offer Additional Terms YOU must + offer them under an agreement of YOUR own separate + from this one. YOU must obtain YOUR sub-licensees + agreement that any Additional Terms are offered by YOU + alone and YOU hereby agree to indemnify, defend hold + harmless VITA NUOVA its servants and agents for any + liability arising directly or indirectly as a result + of any such Additional Terms. + YOU shall have the right to determine the form and + content of any non-exclusive sub-licence provided that + YOU are in compliance with the terms of this licence + and that YOUR sub-licence does not attempt to limit or + change the recipient's rights in the LICENSED SOFTWARE + and licence conditions from those set forth in this + LICENCE in this Clause 1 and in Clause 2. YOUR right + to grant such sub-licence is always subject to the + terms of this LICENCE with VITA NUOVA. YOU agree that + in the event of any conflict or inconsistency between + any provision of this LICENCE and any sub-licence + granted under this Clause, this LICENCE shall prevail. + All rights not specifically and expressly granted under this + LICENCE are reserved by VITA NUOVA. Notwithstanding Clause + 1 above: + 2.1. If YOU distribute the LICENSED SOFTWARE or any ADAPTA- + TIONS of it to any other party in any form, with or + without fee, YOU MUST make the complete source code + including any ADAPTATIONS available to that party in + any mutually convenient form and license its use, mod- + ification, copying, and redistribution under terms no + more restrictive than those of Clause 1 and this + Clause 2 of this LICENCE. + 2.2. If YOU use the LICENSED SOFTWARE or any ADAPTATIONS of + it as the basis or as supporting software for YOUR + software (``APPLICATION'') and YOU make the APPLICA- + TION available for use by any other party in any form, + with or without fee, YOU MUST make the complete source + code of the APPLICATION available to that party in any + mutually convenient form and license its use, modifi- + cation, copying, and redistribution under terms no + more restrictive than those of Clause 1 and this + Clause 2 of this LICENCE. + 3.1. This LICENCE is effective until terminated. Without + prejudice to any other rights, VITA NUOVA has the + option to terminate this LICENCE by written notice if + YOU fail to comply with any term or condition of this + LICENCE. Further, YOU agree upon any termination of + this LICENCE to cease to use it in any manner whatso- + ever. + 3.2. All sub-licences of the LICENSED SOFTWARE and any + ADAPTATIONS validly granted to third parties pursuant + to the terms of this LICENCE shall survive any termi- + nation of this LICENCE. Those terms of this LICENCE, + which by their nature survive the termination of this + LICENCE, shall remain in effect beyond any termination + of this LICENCE. + 4.1. The LICENSED SOFTWARE is protected by copyright law + and international treaty provisions. YOU acknowledge + that all rights, title and interest (including but + without limitation all intellectual property rights) + in the LICENSED SOFTWARE will remain the exclusive + property of VITA NUOVA or its suppliers, and YOU will + not acquire any rights to the LICENSED SOFTWARE other + than those expressly set out in this LICENCE. VITA + NUOVA and its suppliers reserve all rights not + expressly granted to YOU, and no other licences are + granted or implied. + 4.2. Subject to Clause 4.1 above, YOU shall own all rights + title and interest in any intellectual property rights + resulting from YOUR creation of ADAPTATIONS and addi- + tions to the LICENSED SOFTWARE. + 5.1. TO THE MAXIMUM EXTENT PERMITTED BY THE APPLICABLE LAW + VITA NUOVA PROVIDES THE LICENSED SOFTWARE ON AN ``AS + IS'' BASIS AND DOES NOT WARRANT OR REPRESENT THAT THE + LICENSED SOFTWARE WILL MEET YOUR REQUIREMENTS OR THAT + THE OPERATION OF THE LICENSED SOFTWARE WILL BE UNIN- + TERRUPTED OR ERROR-FREE OR THAT DEFECTS IN THE + LICENSED SOFTWARE WILL BE CORRECTED. THE LICENSED + SOFTWARE MAY CONTAIN IN WHOLE OR IN PART PRE-RELEASE, + UNTESTED OR NOT FULLY TESTED SOFTWARE. YOU EXPRESSLY + AGREE THAT THE USE OF THE LICENSED SOFTWARE OR ANY + PORTION THEREOF IS AT YOUR SOLE AND ENTIRE RISK. THE + LICENSED SOFTWARE IS PROVIDED WITHOUT UPGRADES OR SUP- + PORT OF ANY KIND AND VITA NUOVA AND ITS SUPPLIERS DIS- + CLAIM ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES AND/OR + CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY + AND FITNESS FOR A PARTICULAR PURPOSE AND NON- + INFRINGEMENT OF THIRD PARTY RIGHTS, WITH REGARD TO THE + LICENSED SOFTWARE AND THE ACCOMPANYING WRITTEN MATERI- + ALS. + 5.2. NOTHING IN THIS LICENCE LIMITS VITA NUOVA'S LIABILITY + TO YOU IN THE EVENT OF DEATH OR PERSONAL INJURY + RESULTING FROM THE NEGLIGENCE OR WILFUL DEFAULT OF + VITA NUOVA. + 6.1. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN + NO EVENT SHALL VITA NUOVA OR ITS SUPPLIERS BE LIABLE + FOR ANY DAMAGES OR LOSS WHATSOEVER INCLUDING BUT NOT + LIMITED TO DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL + LOSS OR DAMAGE, AND LOSS OF BUSINESS AND/OR PROFITS, + LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF BUSINESS + INFORMATION OR DATA, OR ANY OTHER FINANCIAL LOSS ARIS- + ING OUT OF THE USE OF OR THE INABILITY TO USE THE + LICENSED SOFTWARE AND/OR ANY ADAPTATIONS, EVEN IF VITA + NUOVA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAM- + AGES. IN ANY CASE, VITA NUOVA'S AND ITS SUPPLIERS' + ENTIRE LIABILITY UNDER THIS LICENCE SHALL BE LIMITED + TO THE AMOUNT ACTUALLY PAID BY YOU FOR THE LICENSED + SOFTWARE. + 7.1. YOU agree that the laws of England shall apply to any + dispute arising from this LICENCE. YOU agree for the + benefit of VITA NUOVA that the Courts of England have + exclusive jurisdiction to hear and decide any suit, + action or proceedings (``Proceedings''), and to settle + any disputes, which may arise out of or in connection + with this LICENCE and, for these purposes YOU irrevo- + cably submit to the jurisdiction of the English + Courts. + 7.2. The submission to the jurisdiction of the English + Courts does not limit VITA NUOVA's right to take any + Proceedings in any one or more jurisdictions, nor does + the taking of Proceedings by VITA NUOVA in any one or + more jurisdictions preclude VITA NUOVA taking Proceed- + ings in another jurisdiction if and to the extent per- + mitted by applicable law. + 8.1. This is the entire agreement between YOU and VITA + NUOVA which supersedes any prior agreement or under- + standing whether written or oral relating to the sub- + ject matter of this LICENCE. + 8.2. YOU will in all YOUR dealings with the LICENSED SOFT- + WARE and any ADAPTATIONS act as an independent con- + tractor. Nothing in this LICENCE will be construed as + creating an agency, partnership, or any other legal + association between YOU and VITA NUOVA and YOU will + not represent that YOU have any authority to assume or + create any obligation express or implied on behalf of + VITA NUOVA. + 8.3. A person who is not a party to this LICENCE shall have + no rights pursuant to the Contracts (Rights of Third + Parties) Act 1999 (the ``Act'') to enforce any term of + this LICENCE provided that a person who is the lawful + successor to or permitted assignee of the rights of a + party is considered to be a party to this LICENCE. + Any right or remedy of a third party which exists or + is available apart from the Act is not affected. + 8.4. VITA NUOVA may from time to time and at its sole dis- + cretion publish a revised and/or new version of this + LICENCE which shall then govern the licensing of all + copies of LICENSED SOFTWARE supplied by VITA NUOVA + after the posting of such revised or new licence. + Should YOU have any questions regarding this LICENCE + or wish to contact VITA NUOVA for any reason visit our + web site at www.vitanuova.com for contact details. json: vita-nuova-liberal.json - yml: vita-nuova-liberal.yml + yaml: vita-nuova-liberal.yml html: vita-nuova-liberal.html - text: vita-nuova-liberal.LICENSE + license: vita-nuova-liberal.LICENSE - license_key: vitesse-prop + category: Proprietary Free spdx_license_key: LicenseRef-scancode-vitesse-prop other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: " Unpublished rights reserved under the copyright laws of the United States of\n America,\ + \ other countries and international treaties. Permission to use, copy,\n store and modify,\ + \ the software and its source code is granted. Permission to\n integrate into other products,\ + \ disclose, transmit and distribute the software\n in an absolute machine readable format\ + \ (e.g. HEX file) is also granted. The\n source code of the software may not be disclosed,\ + \ transmitted or distributed\n without the written permission of Vitesse. The software and\ + \ its source code\n may only be used in products utilizing the Vitesse switch products.\n\ + \ \n This copyright notice must appear in any copy, modification, disclosure,\n transmission\ + \ or distribution of the software. Vitesse retains all ownership,\n copyright, trade secret\ + \ and proprietary rights in the software.\n \n THIS SOFTWARE HAS BEEN PROVIDED \"AS IS,\"\ + \ WITHOUT EXPRESS OR IMPLIED WARRANTY\n INCLUDING, WITHOUT LIMITATION, IMPLIED WARRANTIES\ + \ OF MERCHANTABILITY, FITNESS\n FOR A PARTICULAR USE AND NON-INFRINGEMENT." json: vitesse-prop.json - yml: vitesse-prop.yml + yaml: vitesse-prop.yml html: vitesse-prop.html - text: vitesse-prop.LICENSE + license: vitesse-prop.LICENSE - license_key: vixie-cron + category: Permissive spdx_license_key: LicenseRef-scancode-vixie-cron other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Distribute freely, except: don't remove my name from the source or documentation\n\ + (don't take credit for my work), mark your changes (don't get me blamed for your\npossible\ + \ bugs), don't alter or remove this notice. May be sold if buildable\nsource is provided\ + \ to buyer. No warrantee of any kind, express or implied, is\nincluded with this software;\ + \ use at your own risk, responsibility for damages\n(if any) to anyone resulting from the\ + \ use of this software rests entirely with\nthe user.\n\nSend bug reports, bug fixes, enhancements,\ + \ requests, flames, etc., and I'll try\nto keep a version up to date. I can be reached as\ + \ follows: \n\nPaul Vixie\n\nuunet!decwrl!vixie!paul\n\nVixie Cron V3.0 December\ + \ 27, 1993" json: vixie-cron.json - yml: vixie-cron.yml + yaml: vixie-cron.yml html: vixie-cron.html - text: vixie-cron.LICENSE + license: vixie-cron.LICENSE - license_key: vnc-viewer-ios + category: Commercial spdx_license_key: LicenseRef-scancode-vnc-viewer-ios other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "VNCViewer for iOS END-USER LICENCE AGREEMENT \n\nIMPORTANT INFORMATION: PLEASE READ\ + \ THIS AGREEMENT CAREFULLY BEFORE \nDOWNLOADING, INSTALLING, AND/OR USING THIS SOFTWARE.\ + \ BY DOWNLOADING, \nINSTALLING AND/OR USING THE SOFTWARE, YOU ACCEPT AND ACKNOWLEDGE THAT\ + \ YOU \nHAVE READ, AND UNDERSTAND, THE TERMS AND CONDITIONS OF THIS LICENSE \nAGREEMENT\ + \ WITH REALVNC LIMITED (\"REALVNC\"), AND AGREE TO BE BOUND BY ITS \nTERMS AND CONDITIONS.\ + \ BY USING ANY UPDATED VERSION OF THE SOFTWARE WHICH \nMAY BE MADE AVAILABLE, YOU ACCEPT\ + \ THAT THE TERMS OF THIS AGREEMENT APPLY TO \nSUCH UPDATED SOFTWARE. IF YOU DO NOT AGREE\ + \ TO ALL OF THE TERMS AND \nCONDITIONS OF THIS AGREEMENT, STOP NOW AND DO NOT PROCEED TO\ + \ DOWNLOAD, \nINSTALL AND/OR USE THE SOFTWARE. \n\nThis Software Agreement (\"Agreement\"\ + ) is between You (either an individual or an entity) (\"the End \nUser\" or \"You\") and\ + \ RealVNC Limited (\"RealVNC\") only. You acknowledge that this Agreement is a \nbinding\ + \ agreement between you and RealVNC only, and not with Apple. You acknowledge that you \n\ + are purchasing the license to the Software from RealVNC; Apple is acting as agent for RealVNC\ + \ in \nproviding the Software to you; Apple is not a party to the license between you and\ + \ RealVNC with \nrespect to the Software. RealVNC, not Apple, is solely responsible for\ + \ the Software and the content \nthereof. \n\nThis Agreement authorises You to use the VNC\ + \ Viewer Software for iOS (\"The Software\"), which may \nbe delivered to You by electronic\ + \ mail, physical means, such as CD-ROM or memory stick, \ndownloaded from an authorised\ + \ online reseller’s Web pages or Servers or from other sources under \nthe terms and conditions\ + \ set forth below together with any licence key for such Software. This is an \nagreement\ + \ on end-user rights and not an agreement for sale. RealVNC continues to own the copy of\ + \ \nthe Software and the physical media and any other copy that You are authorised to make\ + \ pursuant to \nthis Agreement. \n\n1. INTELLECTUAL PROPERTY RIGHTS \n1.1 The Software,\ + \ its structure, organisation and algorithms are valuable trade secrets and \nconfidential\ + \ information and are protected by copyright and other intellectual property laws, and all\ + \ \nintellectual property rights in them belong to RealVNC Limited (\"RealVNC\"), or are\ + \ licensed to it. You \nmust not copy the Software, except as set forth in clause 2 (Permitted\ + \ End-User Rights and \nLimitations on Use). Any copies which You are permitted to make\ + \ pursuant to this Agreement must \ncontain the same copyright and other proprietary notices\ + \ that appear on the Software. \n\n1.2 RealVNC and You acknowledge that, in the event of\ + \ any third party claim that the Software or \nyour possession and use of the Software infringes\ + \ that third party’s intellectual property rights, \nRealVNC, and not Apple, will be solely\ + \ responsible for the investigation, defense, settlement and \ndischarge of any such intellectual\ + \ property infringement claim subject to Clause 5. \n\n2. PERMITTED END-USER RIGHTS AND\ + \ LIMITATIONS ON USE \n2.1 During the term of this Agreement and as long as you comply with\ + \ the terms of this Agreement \nRealVNC hereby grants You the non-exclusive, non-transferable\ + \ end-user rights to install and use \none copy of the Software solely and exclusively for\ + \ your use on any Apple iPhone, iPad or iPod touch \nthat you own or control and as permitted\ + \ by the Usage Rules set forth in the App Store Terms of \nService. \n\n2.2 You may not\ + \ reproduce, publish, transmit, modify, reverse engineer, reverse compile, \ndisassemble,\ + \ or otherwise attempt to discover the source code of the Software (except to the extent\ + \ \nthat this restriction is expressly prohibited by law) or create derivative works from,\ + \ or publicly display \n\nthe Software or part thereof. Copying or storing or using the\ + \ Software other than as permitted in \nClause 2.1 is expressly prohibited unless you obtain\ + \ prior written permission from RealVNC. \nYou are expressly prohibited from distributing\ + \ the Software in any format, in whole or in part, for sale, \nor for commercial use or\ + \ for any unlawful purpose. You may not rent, lease or otherwise transfer the \nSoftware\ + \ or allow it to be copied. \n\n2.3 In the case of any conflict between this Clause 2 and\ + \ the Usage Rules set forth in the App Store \nTerms of Service, the App Store Terms of\ + \ Service shall take precedence. \n\n3. LIMITED WARRANTY \n3.1 RealVNC, and not Apple, is\ + \ solely responsible for any product warranties, whether express or \nimplied by law, to\ + \ the extent not effectively disclaimed. RealVNC warrants to the original licensee that\ + \ \nthe Software will perform substantially in accordance with any documentation provided\ + \ for it for 90 \ndays following first use when used on Host Systems meeting the minimum\ + \ hardware and software \nrequirements specified on the RealVNC website. \n\n3.2 This limited\ + \ Warranty applies only if any problem is reported to RealVNC during the above \nwarranty\ + \ period. It is void if the failure of the Software is the result of accident, abuse, misapplication\ + \ \nor inappropriate use of the Software or use with Host Systems not meeting the minimum\ + \ hardware \nand software requirements specified. The developer is RealVNC Limited a UK\ + \ company based at \nBetjeman House, 104 Hills Road, Cambridge, CB2 1LQ, UK. Contactable\ + \ at, telephone: +44 1223 \n310400, email support: iphone-support@realvnc.com, where any\ + \ such questions, complaints or \nclaims in respect of the Software should be reported.\ + \ \n\n3.3 In the event of any failure of the Software to conform to the warranty, You may\ + \ notify Apple, and \nApple will refund the purchase price for the Software to You; and\ + \ to the maximum extent permitted by \napplicable law, Apple will have no other warranty\ + \ obligation whatsoever with respect to the Software, \nand any other claims, losses, liabilities,\ + \ damages, costs or expenses attributable to any failure to \nconform to any warranty will\ + \ be RealVNC’s sole responsibility in accordance with this Agreement. \n\n4. SUPPORT AND\ + \ MAINTENANCE \nRealVNC, and not Apple, is solely responsible for providing any maintenance\ + \ and support services \nwith respect to the Software, as specified herein, or as required\ + \ under applicable law. RealVNC and \nYou acknowledge that Apple has no obligation whatsoever\ + \ to furnish any maintenance and support \nservices with respect to the Software. \n\n5.\ + \ LIMITATION ON LIABILITY \nEXCEPT FOR THE EXPRESS WARRANTIES GIVEN IN THIS AGREEMENT, TO\ + \ THE EXTENT \nPERMITTED BY LAW, REALVNC DISCLAIMS ALL WARRANTIES ON THE SOFTWARE, EITHER\ + \ \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF \nMERCHANTABILITY,\ + \ NON-INFRINGEMENT OF THIRD PARTY RIGHTS AND FITNESS FOR \nPARTICULAR PURPOSE. TO THE EXTENT\ + \ PERMITTED BY LAW REALVNC SHALL NOT BE \nLIABLE FOR ANY DIRECT, CONSEQUENTIAL INDIRECT\ + \ OR INCIDENTAL LOSS OR DAMAGES \nWHATSOEVER INCLUDING LOST PROFITS OR SAVINGS ARISING OUT\ + \ OF THE USE OF THE \nSOFTWARE, RELIANCE ON THE DATA PRODUCED OR INABILITY TO USE THE SOFTWARE\ + \ \n(INCLUDING LOSS OR DAMAGE TO YOUR (OR ANY OTHER PERSON'S) DATA OR COMPUTER \nPROGRAMS)\ + \ EVEN IF REALVNC HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH \nDAMAGES. \n\nNOTHING IN\ + \ THIS AGREEMENT LIMITS LIABILITY FOR DEATH OR PERSONAL INJURY \nARISING FROM A PARTY'S\ + \ NEGLIGENCE OR FROM FRAUDULENT MISREPRESENTATION ON \nTHE PART OF A PARTY. NOTHING IN THIS\ + \ AGREEMENT LIMITS RealVNC’S LIABILITY TO YOU \nBEYOND WHAT IS PERMITTED BY APPLICABLE LAW.\ + \ \n\nYou acknowledge that RealVNC, and not Apple, are responsible for addressing any claims\ + \ You or \nany third-parties may have relating to the Software or your possession and/or\ + \ use of that Software, \nincluding but not limited to: (i) product liability claims; (ii)\ + \ any claim that the Software fails to conform \nto any applicable legal or regulatory requirement;\ + \ and (iii) claims arising under consumer protection or \nsimilar legislation. \n\n6. EXPORT\ + \ CONTROL \nThe United States and other countries control the export of Software and information.\ + \ You are \nresponsible for compliance with the laws of your local jurisdiction regarding\ + \ the import, export or reexport \nof the Software, and agree to comply with such restrictions\ + \ and not to export or re-export the \nSoftware where this is prohibited. By downloading\ + \ the Software, you are agreeing that you are not a \nperson or entity to which such export\ + \ is prohibited. RealVNC is a Limited company registered in \nEngland. You represent and\ + \ warrant that (i) you are not located in a country that is subject to a U.S. \nGovernment\ + \ embargo, or that has been designated by the U.S. Government as a \"terrorist \nsupporting\"\ + \ country; and (ii) You are not listed on any U.S. Government list of prohibited or restricted\ + \ \nparties. \n\n7. TERM AND TERMINATION \nThis licence shall continue in force unless and\ + \ until it is terminated by RealVNC by e-mail notice to \nyou, if it reasonably believes\ + \ that you have breached a material term of this Agreement. In the case \nabove, you must\ + \ delete and destroy all copies of the Software in your possession and control and \noverwrite\ + \ any electronic memory or storage locations containing the Software. \n\n8. GENERAL TERMS\ + \ \n8.1 The construction, validity and performance of this Agreement shall be governed in\ + \ all respects by \nEnglish law, and the Parties agree to submit to the non-exclusive jurisdiction\ + \ of the English courts. \n\n8.2 If any provision of this Agreement is found to be invalid\ + \ by any court having competent jurisdiction, \nthe invalidity of such provision shall not\ + \ affect the validity of the remaining provisions of this \nagreement, which shall remain\ + \ in full force and effect. \n\n8.3 Despite anything else contained in this Agreement, neither\ + \ party will be liable for any delay in \nperforming its obligations under this Agreement\ + \ if that delay is caused by circumstances beyond its \nreasonable control (including, without\ + \ limitation, any delay caused by an act or omission of the other \nparty) and the party\ + \ affected will be entitled to a reasonable extension of time for the performance of \n\ + its obligations. \n\n8.4 No waiver of any term of this Agreement shall be deemed a further\ + \ or continuing waiver of such \nterm or any other term. \n\n8.5 You may not assign, subcontract,\ + \ sublicense or otherwise transfer any of your rights or obligations \nunder this Agreement.\ + \ \n\n8.6 This Agreement constitutes the entire agreement between You and RealVNC. \n\n\ + 8.7 You acknowledge and agree that Apple, and Apple’s subsidiaries, are third party beneficiaries\ + \ of \nthis Agreement, and that, upon your acceptance of the terms and conditions of this\ + \ Agreement, Apple \nwill have the right (and will be deemed to have accepted the right)\ + \ to enforce this Agreement against \nYou as a third party beneficiary thereof. \n\n\nVNC\ + \ is a registered trademark of RealVNC Ltd. in the U.S. and in other countries." json: vnc-viewer-ios.json - yml: vnc-viewer-ios.yml + yaml: vnc-viewer-ios.yml html: vnc-viewer-ios.html - text: vnc-viewer-ios.LICENSE + license: vnc-viewer-ios.LICENSE - license_key: volatility-vsl-v1.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-volatility-vsl-v1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Volatility Software License + Version 1.0 dated October 3, 2019. + This license covers the Volatility software, Copyright 2019 Volatility Foundation. + + Software + The software referred to in this license includes the software named above, and any data (such as operating system profiles or configuration information), and documentation provided with the software. + + Purpose + This license gives you permission to use, share, and build with this software for free, but requires you to share source code for changes, additions, and software that you build with it. + + Acceptance + In order to receive this license, you must agree to its rules. The rules of this license are both obligations under that agreement and conditions to your license. You must not do anything with this software that triggers a rule that you cannot or will not follow. + + Copyright + Each contributor licenses you to do everything with this software that would otherwise infringe that contributor's copyright in it. + + Notices + You must ensure that everyone who gets a copy of any part of this software from you, with or without changes, also gets the text of this license or a link to https://www.volatilityfoundation.org/license/vsl-v1.0. You must not remove any copyright notice in the Software. + + Patent + Each contributor licenses you to do everything with this software that would otherwise infringe any patent claims they can license or become able to license. + + Reliability + No contributor can revoke this license. + + Copyleft + If you make any Additions available to others, such as by providing copies of them or providing access to them over the Internet, you must make them publicly available, according to this paragraph. "Additions" includes changes or additions to the software, and any content or materials, including any training materials, you create that contain any portion of the software. "Additions" also includes any translations or ports of the software. "Additions" also includes any software designed to execute the software and parse its results, such as a wrapper written for the software, but does not include shell or execution menu software designed to execute software generally. When this license requires you to make Additions available: + + - You must publish all source code for software under this license, in the preferred form for making changes, through a freely accessible distribution system widely used for similar source code, so the developer and others can find and copy it. + - You must publish all data or content under this license, in a format customarily used to make changes to it, through a freely accessible distribution system, so the developer and others can find and copy it. + - You are responsible to ensure you have rights in Additions necessary to comply with this section. + + Contributing + If you contribute (or offer to contribute) any materials to Volatility Foundation for the software, such as by submitting a pull request to the repository for the software or related content run by Volatility Foundation, you agree to contribute them under the under the BSD 2-Clause Plus Patent License (in the case of software) or the Creative Commons Zero Public Domain Dedication (in the case of content), unless you clearly mark them "Not a Contribution." + + Trademarks + This license grants you no rights to any trademarks or service marks. + + Termination + If you violate any term of this license, your license ends immediately. + + No Liability + As far as the law allows, the software comes as is, without any warranty or condition, and no contributor will be liable to anyone for any damages related to this software or this license, under any kind of legal claim. + + Versions + Volatility Foundation is the steward of this license and may publish new versions of this license with new version numbers. You may use the software under the version of this license under which you received the software, or, at your choice, any later version. json: volatility-vsl-v1.0.json - yml: volatility-vsl-v1.0.yml + yaml: volatility-vsl-v1.0.yml html: volatility-vsl-v1.0.html - text: volatility-vsl-v1.0.LICENSE + license: volatility-vsl-v1.0.LICENSE - license_key: vostrom + category: Copyleft spdx_license_key: VOSTROM other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + VOSTROM Public License for Open Source + ---------- + Copyright (c) 2007 VOSTROM Holdings, Inc. + + This VOSTROM Holdings, Inc. (VOSTROM) Distribution (code and documentation) + is made available to the open source community as a public service by VOSTROM. + Contact VOSTROM at license@vostrom.com for information on other licensing + arrangements (e.g. for use in proprietary applications). + + Under this license, this Distribution may be modified and the original + version and modified versions may be copied, distributed, publicly displayed + and performed provided that the following conditions are met: + + 1. Modified versions are distributed with source code and documentation and + with permission for others to use any code and documentation (whether in + original or modified versions) as granted under this license; + + 2. if modified, the source code, documentation, and user run-time elements + should be clearly labeled by placing an identifier of origin (such as a name, + initial, or other tag) after the version number; + + 3. users, modifiers, distributors, and others coming into possession or + using the Distribution in original or modified form accept the entire risk + as to the possession, use, and performance of the Distribution; + + 4. this copyright management information (software identifier and version + number, copyright notice and license) shall be retained in all versions of + the Distribution; + + 5. VOSTROM may make modifications to the Distribution that are + substantially similar to modified versions of the Distribution, and may + make, use, sell, copy, distribute, publicly display, and perform such + modifications, including making such modifications available under this or + other licenses, without obligation or restriction; + + 6. modifications incorporating code, libraries, and/or documentation subject + to any other open source license may be made, and the resulting work may be + distributed under the terms of such open source license if required by that + open source license, but doing so will not affect this Distribution, other + modifications made under this license or modifications made under other + VOSTROM licensing arrangements; + + 7. no permission is granted to distribute, publicly display, or publicly + perform modifications to the Distribution made using proprietary materials + that cannot be released in source format under conditions of this license; + + 8. the name of VOSTROM may not be used in advertising or publicity + pertaining to Distribution of the software without specific, prior written + permission. + + This software is made available "as is", and + + VOSTROM DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD TO THIS + SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN NO EVENT SHALL + VOSTROM 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, TORT (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING + OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. json: vostrom.json - yml: vostrom.yml + yaml: vostrom.yml html: vostrom.html - text: vostrom.LICENSE + license: vostrom.LICENSE - license_key: vpl-1.1 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-vpl-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Vtiger Public License (VPL 1.1) \n\n1. Definitions.\n\n1.0. \"Commercial Use\" means\ + \ distribution or otherwise making the Covered Code available to a third party.\n\n1.1.\ + \ ''Contributor'' means each entity that creates or contributes to the creation of Modifications.\n\ + \n1.2. ''Contributor Version'' means the combination of the Original Code, prior Modifications\ + \ used by a Contributor, and the Modifications made by that particular Contributor.\n\n\ + 1.3. ''Covered Code'' means the Original Code or Modifications or the combination of the\ + \ Original Code and Modifications, in each case including portions thereof.\n\n1.4. ''Electronic\ + \ Distribution Mechanism'' means a mechanism generally accepted in the software development\ + \ community for the electronic transfer of data.\n\n1.5. ''Executable'' means Covered Code\ + \ in any form other than Source Code.\n\n1.6. ''Initial Developer'' means the individual\ + \ or entity identified as the Initial Developer in the Source Code notice required by Exhibit\ + \ A.\n\n1.7. ''Larger Work'' means a work which combines Covered Code or portions thereof\ + \ with code not governed by the terms of this License.\n\n1.8. ''License'' means this document.\n\ + \n1.8.1. \"Licensable\" means having the right to grant, to the maximum extent possible,\ + \ whether at the time of the initial grant or subsequently acquired, any and all of the\ + \ rights conveyed herein.\n\n1.9. ''Modifications'' means any addition to or deletion from\ + \ the substance or structure of either the Original Code or any previous Modifications.\ + \ When Covered Code is released as a series of files, a Modification is:\n\nA. Any addition\ + \ to or deletion from the contents of a file containing Original Code or previous Modifications.\n\ + \nB. Any new file that contains any part of the Original Code or previous Modifications.\n\ + \n1.10. ''Original Code'' means Source Code of computer software code which is described\ + \ in the Source Code notice required by Exhibit A as Original Code, and which, at the time\ + \ of its release under this License is not already Covered Code governed by this License.\n\ + \n1.10.1. \"Patent Claims\" means any patent claim(s), now owned or hereafter acquired,\ + \ including without limitation, method, process, and apparatus claims, in any patent Licensable\ + \ by grantor.\n\n1.11. ''Source Code'' means the preferred form of the Covered Code for\ + \ making modifications to it, including all modules it contains, plus any associated interface\ + \ definition files, scripts used to control compilation and installation of an Executable,\ + \ or source code differential comparisons against either the Original Code or another well\ + \ known, available Covered Code of the Contributor's choice. The Source Code can be in a\ + \ compressed or archival form, provided the appropriate decompression or de-archiving software\ + \ is widely available for no charge.\n\n1.12. \"You'' (or \"Your\") means an individual\ + \ or a legal entity exercising rights under, and complying with all of the terms of, this\ + \ License or a future version of this License issued under Section 6.1. For legal entities,\ + \ \"You'' includes any entity which controls, is controlled by, or is under common control\ + \ with You. For purposes of this definition, \"control'' means (a) the power, direct or\ + \ indirect, to cause the direction or management of such entity, whether by contract or\ + \ otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares\ + \ or beneficial ownership of such entity.\n\n2. Source Code License.\n\n2.1.The Initial\ + \ Developer Grant. The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive\ + \ license, subject to third party intellectual property claims:\n\n(a) under intellectual\ + \ property rights (other than patent or trademark) Licensable by Initial Developer to use,\ + \ reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions\ + \ thereof) with or without Modifications, and/or as part of a Larger Work; and\n\n(b) under\ + \ Patents Claims infringed by the making, using or selling of Original Code, to make, have\ + \ made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original\ + \ Code (or portions thereof).\n\n(c) the licenses granted in this Section 2.1(a) and (b)\ + \ are effective on the date Initial Developer first distributes Original Code under the\ + \ terms of this License.\n\n(d) Notwithstanding Section 2.1(b) above, no patent license\ + \ is granted: 1) for code that You delete from the Original Code; 2) separate from the Original\ + \ Code; or 3) for infringements caused by: i) the modification of the Original Code or ii)\ + \ the combination of the Original Code with other software or devices.\n\n2.2. Contributor\ + \ Grant. Subject to third party intellectual property claims, each Contributor hereby grants\ + \ You a world-wide, royalty-free, non-exclusive license\n\n(a) under intellectual property\ + \ rights (other than patent or trademark) Licensable by Contributor, to use, reproduce,\ + \ modify, display, perform, sublicense and distribute the Modifications created by such\ + \ Contributor (or portions thereof) either on an unmodified basis, with other Modifications,\ + \ as Covered Code and/or as part of a Larger Work; and\n\n(b) under Patent Claims infringed\ + \ by the making, using, or selling of Modifications made by that Contributor either alone\ + \ and/or in combination with its Contributor Version (or portions of such combination),\ + \ to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications\ + \ made by that Contributor (or portions thereof); and 2) the combination of Modifications\ + \ made by that Contributor with its Contributor Version (or portions of such combination).\n\ + \n(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor\ + \ first makes Commercial Use of the Covered Code.\n\n(d) Notwithstanding Section 2.2(b)\ + \ above, no patent license is granted: 1) for any code that Contributor has deleted from\ + \ the Contributor Version; 2) separate from the Contributor Version; 3) for infringements\ + \ caused by: i) third party modifications of Contributor Version or ii) the combination\ + \ of Modifications made by that Contributor with other software (except as part of the Contributor\ + \ Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the\ + \ absence of Modifications made by that Contributor.\n\n3. Distribution Obligations.\n\n\ + 3.1. Application of License. The Modifications which You create or to which You contribute\ + \ are governed by the terms of this License, including without limitation Section 2.2. The\ + \ Source Code version of Covered Code may be distributed only under the terms of this License\ + \ or a future version of this License released under Section 6.1, and You must include a\ + \ copy of this License with every copy of the Source Code You distribute. You may not offer\ + \ or impose any terms on any Source Code version that alters or restricts the applicable\ + \ version of this License or the recipients' rights hereunder. However, You may include\ + \ an additional document offering the additional rights described in Section 3.5.\n\n3.2.\ + \ Availability of Source Code. Any Modification which You create or to which You contribute\ + \ must be made available in Source Code form under the terms of this License either on the\ + \ same media as an Executable version or via an accepted Electronic Distribution Mechanism\ + \ to anyone to whom you made an Executable version available; and if made available via\ + \ Electronic Distribution Mechanism, must remain available for at least twelve (12) months\ + \ after the date it initially became available, or at least six (6) months after a subsequent\ + \ version of that particular Modification has been made available to such recipients. You\ + \ are responsible for ensuring that the Source Code version remains available even if the\ + \ Electronic Distribution Mechanism is maintained by a third party.\n\n3.3. Description\ + \ of Modifications. You must cause all Covered Code to which You contribute to contain a\ + \ file documenting the changes You made to create that Covered Code and the date of any\ + \ change. You must include a prominent statement that the Modification is derived, directly\ + \ or indirectly, from Original Code provided by the Initial Developer and including the\ + \ name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable\ + \ version or related documentation in which You describe the origin or ownership of the\ + \ Covered Code.\n\n3.4. Intellectual Property Matters (a) Third Party Claims. If Contributor\ + \ has knowledge that a license under a third party's intellectual property rights is required\ + \ to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor\ + \ must include a text file with the Source Code distribution titled \"LEGAL'' which describes\ + \ the claim and the party making the claim in sufficient detail that a recipient will know\ + \ whom to contact. If Contributor obtains such knowledge after the Modification is made\ + \ available as described in Section 3.2, Contributor shall promptly modify the LEGAL file\ + \ in all copies Contributor makes available thereafter and shall take other steps (such\ + \ as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform\ + \ those who received the Covered Code that new knowledge has been obtained.\n\n(b) Contributor\ + \ APIs. If Contributor's Modifications include an application programming interface and\ + \ Contributor has knowledge of patent licenses which are reasonably necessary to implement\ + \ that API, Contributor must also include this information in the LEGAL file.\n\n(c) Representations.\ + \ Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor\ + \ believes that Contributor's Modifications are Contributor's original creation(s) and/or\ + \ Contributor has sufficient rights to grant the rights conveyed by this License.\n\n3.5.\ + \ Required Notices. You must duplicate the notice in Exhibit A in each file of the Source\ + \ Code. If it is not possible to put such notice in a particular Source Code file due to\ + \ its structure, then You must include such notice in a location (such as a relevant directory)\ + \ where a user would be likely to look for such a notice. If You created one or more Modification(s)\ + \ You may add your name as a Contributor to the notice described in Exhibit A. You must\ + \ also duplicate this License in any documentation for the Source Code where You describe\ + \ recipients' rights or ownership rights relating to Covered Code. You may choose to offer,\ + \ and to charge a fee for, warranty, support, indemnity or liability obligations to one\ + \ or more recipients of Covered Code. However, You may do so only on Your own behalf, and\ + \ not on behalf of the Initial Developer or any Contributor. You must make it absolutely\ + \ clear than any such warranty, support, indemnity or liability obligation is offered by\ + \ You alone, and You hereby agree to indemnify the Initial Developer and every Contributor\ + \ for any liability incurred by the Initial Developer or such Contributor as a result of\ + \ warranty, support, indemnity or liability terms You offer.\n\n3.6. Distribution of Executable\ + \ Versions. You may distribute Covered Code in Executable form only if the requirements\ + \ of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating\ + \ that the Source Code version of the Covered Code is available under the terms of this\ + \ License, including a description of how and where You have fulfilled the obligations of\ + \ Section 3.2. The notice must be conspicuously included in any notice in an Executable\ + \ version, related documentation or collateral in which You describe recipients' rights\ + \ relating to the Covered Code. You may distribute the Executable version of Covered Code\ + \ or ownership rights under a license of Your choice, which may contain terms different\ + \ from this License, provided that You are in compliance with the terms of this License\ + \ and that the license for the Executable version does not attempt to limit or alter the\ + \ recipient's rights in the Source Code version from the rights set forth in this License.\ + \ If You distribute the Executable version under a different license You must make it absolutely\ + \ clear that any terms which differ from this License are offered by You alone, not by the\ + \ Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer\ + \ and every Contributor for any liability incurred by the Initial Developer or such Contributor\ + \ as a result of any such terms You offer.\n\n3.7. Larger Works. You may create a Larger\ + \ Work by combining Covered Code with other code not governed by the terms of this License\ + \ and distribute the Larger Work as a single product. In such a case, You must make sure\ + \ the requirements of this License are fulfilled for the Covered Code.\n\n4. Inability to\ + \ Comply Due to Statute or Regulation.\n\nIf it is impossible for You to comply with any\ + \ of the terms of this License with respect to some or all of the Covered Code due to statute,\ + \ judicial order, or regulation then You must: (a) comply with the terms of this License\ + \ to the maximum extent possible; and (b) describe the limitations and the code they affect.\ + \ Such description must be included in the LEGAL file described in Section 3.4 and must\ + \ be included with all distributions of the Source Code. Except to the extent prohibited\ + \ by statute or regulation, such description must be sufficiently detailed for a recipient\ + \ of ordinary skill to be able to understand it.\n\n5. Application of this License.\n\n\ + This License applies to code to which the Initial Developer has attached the notice in Exhibit\ + \ A and to related Covered Code.\n\n6. Versions of the License.\n\n6.1. New Versions. Vtiger\ + \ may publish revised and/or new versions of the License from time to time. Each version\ + \ will be given a distinguishing version number.\n\n6.2. Effect of New Versions. Once Covered\ + \ Code has been published under a particular version of the License, You may always continue\ + \ to use it under the terms of that version. You may also choose to use such Covered Code\ + \ under the terms of any subsequent version of the License published by Vtiger. No one other\ + \ than Vtiger has the right to modify the terms applicable to Covered Code created under\ + \ this License.\n\n6.3. Derivative Works. If You create or use a modified version of this\ + \ License (which you may only do in order to apply it to code which is not already Covered\ + \ Code governed by this License), You must (a) rename Your license so that the phrases ''Vtiger'or\ + \ any confusingly similar phrase do not appear in your license (except to note that your\ + \ license differs from this License) and (b) otherwise make it clear that Your version of\ + \ the license contains terms which differ from the Vtiger Public License. (Filling in the\ + \ name of the Initial Developer, Original Code or Contributor in the notice described in\ + \ Exhibit A shall not of themselves be deemed to be modifications of this License.)\n\n\ + 7. DISCLAIMER OF WARRANTY.\n\nCOVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS''\ + \ BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION,\ + \ WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR\ + \ PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED\ + \ CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE\ + \ INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING,\ + \ REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS\ + \ LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\ + \n8. TERMINATION.\n\n8.1. This License and the rights granted hereunder will terminate automatically\ + \ if You fail to comply with terms herein and fail to cure such breach within 30 days of\ + \ becoming aware of the breach. All sublicenses to the Covered Code which are properly granted\ + \ shall survive any termination of this License. Provisions which, by their nature, must\ + \ remain in effect beyond the termination of this License shall survive.\n\n8.2. If You\ + \ initiate litigation by asserting a patent infringement claim (excluding declatory judgment\ + \ actions) against Initial Developer or a Contributor (the Initial Developer or Contributor\ + \ against whom You file such action is referred to as \"Participant\") alleging that:\n\n\ + (a) such Participant's Contributor Version directly or indirectly infringes any patent,\ + \ then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2\ + \ of this License shall, upon 60 days notice from Participant terminate prospectively, unless\ + \ if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant\ + \ a mutually agreeable reasonable royalty for Your past and future use of Modifications\ + \ made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor\ + \ Version against such Participant. If within 60 days of notice, a reasonable royalty and\ + \ payment arrangement are not mutually agreed upon in writing by the parties or the litigation\ + \ claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or\ + \ 2.2 automatically terminate at the expiration of the 60 day notice period specified above.\n\ + \n(b) any software, hardware, or device, other than such Participant's Contributor Version,\ + \ directly or indirectly infringes any patent, then any rights granted to You by such Participant\ + \ under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made,\ + \ used, sold, distributed, or had made, Modifications made by that Participant.\n\n8.3.\ + \ If You assert a patent infringement claim against Participant alleging that such Participant's\ + \ Contributor Version directly or indirectly infringes any patent where such claim is resolved\ + \ (such as by license or settlement) prior to the initiation of patent infringement litigation,\ + \ then the reasonable value of the licenses granted by such Participant under Sections 2.1\ + \ or 2.2 shall be taken into account in determining the amount or value of any payment or\ + \ license.\n\n8.4. In the event of termination under Sections 8.1 or 8.2 above, all end\ + \ user license agreements (excluding distributors and resellers) which have been validly\ + \ granted by You or any distributor hereunder prior to termination shall survive termination.\n\ + \n9. LIMITATION OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER\ + \ TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER,\ + \ ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH\ + \ PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL\ + \ DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,\ + \ WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES\ + \ OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES.\ + \ THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\ + \ RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION.\ + \ SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL\ + \ DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT\ + \ END USERS.\n\nThe Covered Code is a ''commercial item,'' as that term is defined in 48\ + \ C.F.R. 2.101 (Oct. 1995), consisting of ''commercial computer software'' and ''commercial\ + \ computer software documentation,'' as such terms are used in 48 C.F.R. 12.212 (Sept. 1995).\ + \ Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),\ + \ all U.S. Government End Users acquire Covered Code with only those rights set forth herein.\n\ + \n11. MISCELLANEOUS.\n\nThis License represents the complete agreement concerning subject\ + \ matter hereof. If any provision of this License is held to be unenforceable, such provision\ + \ shall be reformed only to the extent necessary to make it enforceable. This License shall\ + \ be governed by Indian laws (except to the extent applicable law, if any, provides otherwise),\ + \ excluding its conflict-of-law provisions. With respect to disputes in which at least one\ + \ party is a citizen of, or an entity chartered or registered to do business in India, any\ + \ litigation relating to this License shall be subject to the jurisdiction of the Courts\ + \ in Chennai, with venue lying in Tamil Nadu State, India, with the losing party responsible\ + \ for costs, including without limitation, court costs and reasonable attorneys' fees and\ + \ expenses. The application of the United Nations Convention on Contracts for the International\ + \ Sale of Goods is expressly excluded. Any law or regulation which provides that the language\ + \ of a contract shall be construed against the drafter shall not apply to this License.\n\ + \n12. RESPONSIBILITY FOR CLAIMS.\n\nAs between Initial Developer and the Contributors, each\ + \ party is responsible for claims and damages arising, directly or indirectly, out of its\ + \ utilization of rights under this License and You agree to work with Initial Developer\ + \ and Contributors to distribute such responsibility on an equitable basis. Nothing herein\ + \ is intended or shall be deemed to constitute any admission of liability.\n\n13. MULTIPLE-LICENSED\ + \ CODE.\n\nInitial Developer may designate portions of the Covered Code as “Multiple-Licensed”.\ + \ “Multiple-Licensed” means that the Initial Developer permits you to utilize portions of\ + \ the Covered Code under Your choice of the MPL or the alternative licenses, if any, specified\ + \ by the Initial Developer in the file described in Exhibit A.\n\nEXHIBIT A - Vtiger Public\ + \ License.\n\n\"The contents of this file are subject to the Vtiger Public License (the\ + \ \"License\"); you may not use this file except in compliance with the License.\"\n\nSoftware\ + \ distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTY OF\ + \ ANY KIND, either express or implied. See the License for the specific language governing\ + \ rights and limitations under the License.\n\nThe Original Code is Vtiger.\n\nThe Initial\ + \ Developer of the Original Code is Vtiger. Portions created by Vtiger are Copyright (C)\ + \ www.vtiger.com. All Rights Reserved.\n\nContributor(s): ______________________________________.\n\ + \n[NOTE: The text of this Exhibit A may differ slightly from the text of the notices in\ + \ the Source Code files of the Original Code. You should use the text of this Exhibit A\ + \ rather than the text found in the Original Code Source Code for Your Modifications.]\n\ + \nEXHIBIT B - Vtiger CRM and Logo\n\nThis License does not grant any rights to use the trademarks\ + \ \"Vtiger\" and \"Vtiger CRM\" and \"Vtiger\" logos even if such marks are included in\ + \ the Original Code or Modifications." json: vpl-1.1.json - yml: vpl-1.1.yml + yaml: vpl-1.1.yml html: vpl-1.1.html - text: vpl-1.1.LICENSE + license: vpl-1.1.LICENSE - license_key: vpl-1.2 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-vpl-1.2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Vtiger Public License 1.2 (VPL 1.2)\n\n1. Definitions.\n\n 1.0 \"Commercial Use\"\ + \ means distribution or otherwise making the Covered Code available to a third party.\n\n\ + \ 1.1. \"Contributor\" means each entity that creates or contributes to the creation\ + \ of Modifications.\n\n 1.2. \"Contributor Version\" means the combination of the Original\ + \ Code, prior Modifications used by a Contributor, and the Modifications made by that particular\ + \ Contributor.\n\n 1.3. \"Covered Code\" means the Original Code or Modifications or\ + \ the combination of the Original Code and Modifications, in each case including portions\ + \ thereof.\n\n 1.4. \"Electronic Distribution Mechanism\" means a mechanism generally\ + \ accepted in the software development community for the electronic transfer of data.\n\n\ + \ 1.5. \"Executable\" means Covered Code in any form other than Source Code.\n\n \ + \ 1.6. \"Initial Developer\" means the individual or entity identified as the Initial\ + \ Developer in the Source Code notice required by Exhibit A.\n\n 1.7. \"Larger Work\"\ + \ means a work which combines Covered Code or portions thereof with code not governed by\ + \ the terms of this License.\n\n 1.8. \"License\" means this document.\n\n 1.8.1.\ + \ \"Licensable\" means having the right to grant, to the maximum extent possible, whether\ + \ at the time of the initial grant or subsequently acquired, any and all of the rights conveyed\ + \ herein.\n\n 1.9. \"Modifications\" means any addition to or deletion from the substance\ + \ or structure of either the Original Code or any previous Modifications. When Covered Code\ + \ is released as a series of files, a Modification is:\n A. Any addition to or\ + \ deletion from the contents of a file containing Original Code or previous Modifications.\n\ + \n B. Any new file that contains any part of the Original Code or previous Modifications.\n\ + \ \n 1.10. \"Original Code\" means Source Code of computer software code\ + \ which is described in the Source Code notice required by Exhibit A as Original Code, and\ + \ which, at the time of its release under this License is not already Covered Code governed\ + \ by this License.\n\n 1.10.1. \"Patent Claims\" means any patent claim(s), now owned\ + \ or hereafter acquired, including without limitation, method, process, and apparatus claims,\ + \ in any patent Licensable by grantor.\n\n 1.11. \"Source Code\" means the preferred\ + \ form of the Covered Code for making modifications to it, including all modules it contains,\ + \ plus any associated interface definition files, scripts used to control compilation and\ + \ installation of an Executable, or source code differential comparisons against either\ + \ the Original Code or another well known, available Covered Code of the Contributor's choice.\ + \ The Source Code can be in a compressed or archival form, provided the appropriate decompression\ + \ or de-archiving software is widely available for no charge.\n\n 1.12. \"You\" (or\ + \ \"Your\") means an individual or a legal entity exercising rights under, and complying\ + \ with all of the terms of, this License or a future version of this License issued under\ + \ Section 6.1. For legal entities, \"You\" includes any entity which controls, is controlled\ + \ by, or is under common control with You. For purposes of this definition, \"control\"\ + \ means (a) the power, direct or indirect, to cause the direction or management of such\ + \ entity, whether by contract or otherwise, or (b) ownership of more than fifty percent\ + \ (50%) of the outstanding shares or beneficial ownership of such entity.\n\n2. Source Code\ + \ License.\n\n 2.1.The Initial Developer Grant.\n The Initial Developer hereby\ + \ grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual\ + \ property claims:\n (a) under intellectual property rights (other than patent\ + \ or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform,\ + \ sublicense and distribute the Original Code (or portions thereof) with or without Modifications,\ + \ and/or as part of a Larger Work; and\n\n (b) under Patents Claims infringed\ + \ by the making, using or selling of Original Code, to make, have made, use, practice, sell,\ + \ and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof).\n\ + \ (c) the licenses granted in this Section 2.1(a) and (b) are effective on the\ + \ date Initial Developer first distributes Original Code under the terms of this License.\n\ + \n (d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1)\ + \ for code that You delete from the Original Code; 2) separate from the Original Code; \ + \ or 3) for infringements caused by: i) the modification of the Original Code or ii) the\ + \ combination of the Original Code with other software or devices.\n \n \ + \ 2.2. Contributor Grant.\n Subject to third party intellectual property claims, each\ + \ Contributor hereby grants You a world-wide, royalty-free, non-exclusive license\n\n \ + \ (a) under intellectual property rights (other than patent or trademark) Licensable\ + \ by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute\ + \ the Modifications created by such Contributor (or portions thereof) either on an unmodified\ + \ basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and\n\ + \n (b) under Patent Claims infringed by the making, using, or selling of Modifications\ + \ made by that Contributor either alone and/or in combination with its Contributor Version\ + \ (or portions of such combination), to make, use, sell, offer for sale, have made, and/or\ + \ otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof);\ + \ and 2) the combination of Modifications made by that Contributor with its Contributor\ + \ Version (or portions of such combination).\n\n (c) the licenses granted in\ + \ Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial\ + \ Use of the Covered Code.\n\n (d) Notwithstanding Section 2.2(b) above, no patent\ + \ license is granted: 1) for any code that Contributor has deleted from the Contributor\ + \ Version; 2) separate from the Contributor Version; 3) for infringements caused by:\ + \ i) third party modifications of Contributor Version or ii) the combination of Modifications\ + \ made by that Contributor with other software (except as part of the Contributor Version)\ + \ or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of\ + \ Modifications made by that Contributor.\n\n3. Distribution Obligations.\n\n 3.1.\ + \ Application of License.\n The Modifications which You create or to which You contribute\ + \ are governed by the terms of this License, including without limitation Section 2.2. The\ + \ Source Code version of Covered Code may be distributed only under the terms of this License\ + \ or a future version of this License released under Section 6.1, and You must include a\ + \ copy of this License with every copy of the Source Code You distribute. You may not offer\ + \ or impose any terms on any Source Code version that alters or restricts the applicable\ + \ version of this License or the recipients' rights hereunder. However, You may include\ + \ an additional document offering the additional rights described in Section 3.5.\n\n \ + \ 3.2. Availability of Source Code.\n Any Modification which You create or to which\ + \ You contribute must be made available in Source Code form under the terms of this License\ + \ either on the same media as an Executable version or via an accepted Electronic Distribution\ + \ Mechanism to anyone to whom you made an Executable version available; and if made available\ + \ via Electronic Distribution Mechanism, must remain available for at least twelve (12)\ + \ months after the date it initially became available, or at least six (6) months after\ + \ a subsequent version of that particular Modification has been made available to such recipients.\ + \ You are responsible for ensuring that the Source Code version remains available even if\ + \ the Electronic Distribution Mechanism is maintained by a third party.\n\n 3.3. Description\ + \ of Modifications.\n You must cause all Covered Code to which You contribute to contain\ + \ a file documenting the changes You made to create that Covered Code and the date of any\ + \ change. You must include a prominent statement that the Modification is derived, directly\ + \ or indirectly, from Original Code provided by the Initial Developer and including the\ + \ name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable\ + \ version or related documentation in which You describe the origin or ownership of the\ + \ Covered Code.\n\n 3.4. Intellectual Property Matters\n (a) Third Party\ + \ Claims.\n If Contributor has knowledge that a license under a third party's\ + \ intellectual property rights is required to exercise the rights granted by such Contributor\ + \ under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution\ + \ titled \"LEGAL\" which describes the claim and the party making the claim in sufficient\ + \ detail that a recipient will know whom to contact. If Contributor obtains such knowledge\ + \ after the Modification is made available as described in Section 3.2, Contributor shall\ + \ promptly modify the LEGAL file in all copies Contributor makes available thereafter and\ + \ shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably\ + \ calculated to inform those who received the Covered Code that new knowledge has been obtained.\n\ + \n (b)Contributor APIs.\n If Contributor's Modifications include an\ + \ application programming interface and Contributor has knowledge of patent licenses which\ + \ are reasonably necessary to implement that API, Contributor must also include this information\ + \ in the LEGAL file.\n \n (c)Representations.\n Contributor\ + \ represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes\ + \ that Contributor's Modifications are Contributor's original creation(s) and/or Contributor\ + \ has sufficient rights to grant the rights conveyed by this License. \n\n\n 3.5. Required\ + \ Notices.\n You must duplicate the notice in Exhibit A in each file of the Source\ + \ Code. If it is not possible to put such notice in a particular Source Code file due to\ + \ its structure, then You must include such notice in a location (such as a relevant directory)\ + \ where a user would be likely to look for such a notice. If You created one or more Modification(s)\ + \ You may add your name as a Contributor to the notice described in Exhibit A. You must\ + \ also duplicate this License in any documentation for the Source Code where You describe\ + \ recipients' rights or ownership rights relating to Covered Code. You may choose to offer,\ + \ and to charge a fee for, warranty, support, indemnity or liability obligations to one\ + \ or more recipients of Covered Code. However, You may do so only on Your own behalf, and\ + \ not on behalf of the Initial Developer or any Contributor. You must make it absolutely\ + \ clear than any such warranty, support, indemnity or liability obligation is offered by\ + \ You alone, and You hereby agree to indemnify the Initial Developer and every Contributor\ + \ for any liability incurred by the Initial Developer or such Contributor as a result of\ + \ warranty, support, indemnity or liability terms You offer.\n\n 3.6. Distribution\ + \ of Executable Versions.\n You may distribute Covered Code in Executable form only\ + \ if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You\ + \ include a notice stating that the Source Code version of the Covered Code is available\ + \ under the terms of this License, including a description of how and where You have fulfilled\ + \ the obligations of Section 3.2. The notice must be conspicuously included in any notice\ + \ in an Executable version, related documentation or collateral in which You describe recipients'\ + \ rights relating to the Covered Code. You may distribute the Executable version of Covered\ + \ Code or ownership rights under a license of Your choice, which may contain terms different\ + \ from this License, provided that You are in compliance with the terms of this License\ + \ and that the license for the Executable version does not attempt to limit or alter the\ + \ recipient's rights in the Source Code version from the rights set forth in this License.\ + \ If You distribute the Executable version under a different license You must make it absolutely\ + \ clear that any terms which differ from this License are offered by You alone, not by the\ + \ Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer\ + \ and every Contributor for any liability incurred by the Initial Developer or such Contributor\ + \ as a result of any such terms You offer.\n\n 3.7. Larger Works.\n You may create\ + \ a Larger Work by combining Covered Code with other code not governed by the terms of this\ + \ License and distribute the Larger Work as a single product. In such a case, You must make\ + \ sure the requirements of this License are fulfilled for the Covered Code.\n\n4. Inability\ + \ to Comply Due to Statute or Regulation.\n\nIf it is impossible for You to comply with\ + \ any of the terms of this License with respect to some or all of the Covered Code due to\ + \ statute, judicial order, or regulation then You must: (a) comply with the terms of this\ + \ License to the maximum extent possible; and (b) describe the limitations and the code\ + \ they affect. Such description must be included in the LEGAL file described in Section\ + \ 3.4 and must be included with all distributions of the Source Code. Except to the extent\ + \ prohibited by statute or regulation, such description must be sufficiently detailed for\ + \ a recipient of ordinary skill to be able to understand it. \n\n5. Application of this\ + \ License.\n\nThis License applies to code to which the Initial Developer has attached the\ + \ notice in Exhibit A and to related Covered Code. \n\n6. Versions of the License.\n\n \ + \ 6.1. New Versions.\n vtiger may publish revised and/or new versions of the License\ + \ from time to time. Each version will be given a distinguishing version number. \n\n \ + \ 6.2. Effect of New Versions.\n Once Covered Code has been published under a particular\ + \ version of the License, You may always continue to use it under the terms of that version.\ + \ You may also choose to use such Covered Code under the terms of any subsequent version\ + \ of the License published by vtiger. No one other than vtiger has the right to modify the\ + \ terms applicable to Covered Code created under this License.\n\n 6.3. Derivative\ + \ Works.\n If You create or use a modified version of this License (which you may only\ + \ do in order to apply it to code which is not already Covered Code governed by this License),\ + \ You must (a) rename Your license so that the phrases \"vtiger'or any confusingly similar\ + \ phrase do not appear in your license (except to note that your license differs from this\ + \ License) and (b) otherwise make it clear that Your version of the license contains terms\ + \ which differ from the vtiger Public License. (Filling in the name of the Initial Developer,\ + \ Original Code or Contributor in the notice described in Exhibit A shall not of themselves\ + \ be deemed to be modifications of this License.)\n\n7. DISCLAIMER OF WARRANTY.\n\nCOVERED\ + \ CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND,\ + \ EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED\ + \ CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.\ + \ THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD\ + \ ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY\ + \ OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS\ + \ DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED\ + \ CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. \n\n8. TERMINATION.\n\n \ + \ 8.1. This License and the rights granted hereunder will terminate automatically if\ + \ You fail to comply with terms herein and fail to cure such breach within 30 days of becoming\ + \ aware of the breach. All sublicenses to the Covered Code which are properly granted shall\ + \ survive any termination of this License. Provisions which, by their nature, must remain\ + \ in effect beyond the termination of this License shall survive.\n\n 8.2. If You\ + \ initiate litigation by asserting a patent infringement claim (excluding declatory judgment\ + \ actions) against Initial Developer or a Contributor (the Initial Developer or Contributor\ + \ against whom You file such action is referred to as \"Participant\") alleging that:\n\ + \n (a) such Participant's Contributor Version directly or indirectly infringes any\ + \ patent, then any and all rights granted by such Participant to You under Sections 2.1\ + \ and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively,\ + \ unless if within 60 days after receipt of notice You either: (i) agree in writing to\ + \ pay Participant a mutually agreeable reasonable royalty for Your past and future use of\ + \ Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect\ + \ to the Contributor Version against such Participant. If within 60 days of notice, a reasonable\ + \ royalty and payment arrangement are not mutually agreed upon in writing by the parties\ + \ or the litigation claim is not withdrawn, the rights granted by Participant to You under\ + \ Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice\ + \ period specified above.\n\n (b) any software, hardware, or device, other than such\ + \ Participant's Contributor Version, directly or indirectly infringes any patent, then any\ + \ rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked\ + \ effective as of the date You first made, used, sold, distributed, or had made, Modifications\ + \ made by that Participant.\n\n 8.3. If You assert a patent infringement claim against\ + \ Participant alleging that such Participant's Contributor Version directly or indirectly\ + \ infringes any patent where such claim is resolved (such as by license or settlement) prior\ + \ to the initiation of patent infringement litigation, then the reasonable value of the\ + \ licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account\ + \ in determining the amount or value of any payment or license.\n\n 8.4. In the event\ + \ of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding\ + \ distributors and resellers) which have been validly granted by You or any distributor\ + \ hereunder prior to termination shall survive termination.\n\n9. LIMITATION OF LIABILITY.\n\ + \nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE),\ + \ CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY\ + \ DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY\ + \ PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER\ + \ INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE\ + \ OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY\ + \ SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY\ + \ SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S\ + \ NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS\ + \ DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS\ + \ EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. \n\n10. U.S. GOVERNMENT END USERS.\n\n\ + The Covered Code is a \"commercial item,\" as that term is defined in 48 C.F.R. 2.101 (Oct.\ + \ 1995), consisting of \"commercial computer software\" and \"commercial computer software\ + \ documentation,\" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with\ + \ 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government\ + \ End Users acquire Covered Code with only those rights set forth herein. \n\n11. MISCELLANEOUS.\n\ + \nThis License represents the complete agreement concerning subject matter hereof. If any\ + \ provision of this License is held to be unenforceable, such provision shall be reformed\ + \ only to the extent necessary to make it enforceable. This License shall be governed by\ + \ Indian laws (except to the extent applicable law, if any, provides otherwise), excluding\ + \ its conflict-of-law provisions. With respect to disputes in which at least one party is\ + \ a citizen of, or an entity chartered or registered to do business in India, any litigation\ + \ relating to this License shall be subject to the jurisdiction of the Courts in Chennai,\ + \ with venue lying in Tamil Nadu State, India, with the losing party responsible for costs,\ + \ including without limitation, court costs and reasonable attorneys' fees and expenses.\ + \ The application of the United Nations Convention on Contracts for the International Sale\ + \ of Goods is expressly excluded. Any law or regulation which provides that the language\ + \ of a contract shall be construed against the drafter shall not apply to this License.\ + \ \n\n12. RESPONSIBILITY FOR CLAIMS.\n\nAs between Initial Developer and the Contributors,\ + \ each party is responsible for claims and damages arising, directly or indirectly, out\ + \ of its utilization of rights under this License and You agree to work with Initial Developer\ + \ and Contributors to distribute such responsibility on an equitable basis. Nothing herein\ + \ is intended or shall be deemed to constitute any admission of liability. \n\n13. MULTIPLE-LICENSED\ + \ CODE.\n\nInitial Developer may designate portions of the Covered Code as ^Multiple-Licensed^.\ + \ ^Multiple-Licensed^ means that the Initial Developer permits you to utilize portions\ + \ of the Covered Code under Your choice of the MPL or the alternative licenses, if any,\ + \ specified by the Initial Developer in the file described in Exhibit A. \n\n\nEXHIBIT A\ + \ -vtiger Public License.\n\n\"The contents of this file are subject to the vtiger Public\ + \ License Version 1.1 (the \"License\"); you may not use this file except in compliance\ + \ with the License.\"\n\nSoftware distributed under the License is distributed on an \"\ + AS IS\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License\ + \ for the specific language governing rights and limitations under the License.\n\nThe Original\ + \ Code is vtiger Outlook Plug-in.\n\nThe Initial Developer of the Original Code is vtiger.\ + \ Portions created by vtiger are Copyright (C) www.vtiger.com. All Rights Reserved.\n\n\ + Contributor(s): ______________________________________.\n\n [NOTE: The text of this\ + \ Exhibit A may differ slightly from the text of the notices in the Source Code files of\ + \ the Original Code. You should use the text of this Exhibit A rather than the text found\ + \ in the Original Code Source Code for Your Modifications.]\n\n \nEXHIBIT B - Vtiger CRM\ + \ and Logo\n\nThis License does not grant any rights to use the trademarks \"Vtiger\" and\ + \ \"Vtiger CRM\" and \"Vtiger\" logos even if such marks are included in the Original Code\ + \ or Modifications." json: vpl-1.2.json - yml: vpl-1.2.yml + yaml: vpl-1.2.yml html: vpl-1.2.html - text: vpl-1.2.LICENSE + license: vpl-1.2.LICENSE - license_key: vs10x-code-map + category: Proprietary Free spdx_license_key: LicenseRef-scancode-vs10x-code-map other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + VS10x Code Map - LIMITED PRODUCT WARRANTY + + Please read the below terms. Continuing with the installation of VS10x Code Map + will indicate your acceptance. + + Michael Kiss [AxTools] provides VS10x Code Map and licenses its use to you. You + are responsible for selecting VS10x Code Map to achieve your intended results + and for the installation, use and results obtained from VS10x Code Map. + + VS10x Code Map, including its code, documentation, appearance, structure and + organization, is a proprietary product of Michael Kiss [AxTools] and is + protected by the law. Title to VS10x Code Map, or any copy, modification or + merged portion of VS10x Code Map, shall at all times remain with Michael Kiss + [AxTools]. + + Limited Warranty + + EXCEPT AS SPECIFICALLY SET FORTH IN THIS AGREEMENT, VS10x Code Map IS LICENSED + AND PROVIDED ON AN "AS IS" BASIS, WITHOUT ANY KIND OF WARRANTY, EITHER EXPRESS + OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + Michael Kiss [AxTools] warrants that VS10x Code Map will substantially perform + the functions or generally conform to VS10x Code Map's specifications as + published by Michael Kiss [AxTools]. Michael Kiss [AxTools] does not warrant + that the functions contained in VS10x Code Map will meet your requirements or + that the operation of VS10x Code Map will be entirely error free or appear + precisely as described in the VS10x Code Map documentation. + + Remedies and Liabilities + + In no event will Michael Kiss [AxTools] be liable for any damages, including + lost profits, lost savings, or other direct, indirect, incidental or + consequential damages, arising out of the use or inability to use VS10x Code + Map, even if Michael Kiss [AxTools] or a dealer authorized by Michael Kiss + [AxTools] had been advised of the possibility of such damages. json: vs10x-code-map.json - yml: vs10x-code-map.yml + yaml: vs10x-code-map.yml html: vs10x-code-map.html - text: vs10x-code-map.LICENSE + license: vs10x-code-map.LICENSE - license_key: vsl-1.0 + category: Permissive spdx_license_key: VSL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Vovida Software License v. 1.0 + + This license applies to all software incorporated in the "Vovida + Open Communication Application Library" except for those portions + incorporating third party software specifically identified as being + licensed under separate license. + + The Vovida Software License, Version 1.0 + Copyright (c) 2000 Vovida Networks, Inc. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + 3. The names "VOCAL", "Vovida Open Communication Application Library", + and "Vovida Open Communication Application Library (VOCAL)" must + not be used to endorse or promote products derived from this + software without prior written permission. For written + permission, please contact vocal@vovida.org. + + 4. Products derived from this software may not be called "VOCAL", nor + may "VOCAL" appear in their name, without prior written + permission. + + THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND + NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA + NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DAMAGES + IN EXCESS OF $1,000, NOR FOR ANY 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 software consists of voluntary contributions made by Vovida + Networks, Inc. and many individuals on behalf of Vovida Networks, + Inc. For more information on Vovida Networks, Inc., please see + http://www.vovida.org. + + All third party licenses and copyright notices and other required + legends also need to be complied with as well. json: vsl-1.0.json - yml: vsl-1.0.yml + yaml: vsl-1.0.yml html: vsl-1.0.html - text: vsl-1.0.LICENSE + license: vsl-1.0.LICENSE - license_key: vuforia-2013-07-29 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-vuforia-2013-07-29 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Vuforia SDK License Agreement\n\nQUALCOMM AUSTRIA RESEARCH CENTER GMBH LICENSE AGREEMENT\ + \ FOR VUFORIA™ SOFTWARE DEVELOPMENT KIT\n\n\nTHIS LICENSE AGREEMENT FOR VUFORIA SOFTWARE\ + \ DEVELOPMENT KIT (THIS \"AGREEMENT\" or THIS \"Agreement\") IS A LEGALLY BINDING AGREEMENT\ + \ BETWEEN QUALCOMM AUSTRIA RESEARCH CENTER GMBH (\"QUALCOMM Austria\") AND THE LEGAL ENTITY\ + \ YOU REPRESENT (\"YOU\" OR \"You\"). If you USE OR are seeking to use the Software in\ + \ connection with any work or undertaking you are doing for a business, company or corporate\ + \ entity (\"Company\"), whether as an employee or contractor, the terms \"You\" and \"You\"\ + \ include, and the terms and conditions hereof are binding on, both you as an individual\ + \ as well as such Company. In Addition, you represent and warrant that you have the authority\ + \ to bind such Company, and that such Company has authorized you to accept the terms of\ + \ this Agreement on its behalf.\n\n \n\nQUALCOMM AUSTRIA IS WILLING TO LICENSE THE SOFTWARE\ + \ AND DOCUMENTATION DESCRIBED IN THE LIST BELOW (THE \"SOFTWARE\" OR THE \"Software\") TO\ + \ YOU ONLY ON THE CONDITION THAT YOU ACCEPT AND AGREE TO ALL OF THE TERMS AND CONDITIONS\ + \ IN THIS AGREEMENT. BY CLICKING ON THE \"I ACCEPT\" BUTTON BELOW YOU ACKNOWLEDGE AND AGREE,\ + \ THAT YOU HAVE READ THIS AGREEMENT, UNDERSTAND IT AND AGREE TO BE BOUND BY ITS TERMS AND\ + \ CONDITIONS. IF YOU DO NOT AGREE TO THESE TERMS AND CONDITIONS, QUALCOMM AUSTRIA IS UNWILLING\ + \ TO AND DOES NOT AND WILL NOT LICENSE THE SOFTWARE OR PROVIDE THE DOCUMENTATION TO YOU.\ + \ IF YOU DO NOT AGREE TO THESE TERMS AND CONDITIONS YOU MAY NOT COMMENCE ANY INSTALLATION\ + \ PROCESS AND YOU SHALL NOT USE THE SOFTWARE OR RETAIN ANY COPIES OF THE SOFTWARE OR DOCUMENTATION,\ + \ EVEN IF YOU HAVE IN ANY MANNER COME INTO POSSESSION THEREOF. ANY USE OR POSSESSION OF\ + \ THE SOFTWARE AND/OR DOCUMENTATION BY YOU IS SUBJECT TO THE TERMS AND CONDITIONS SET FORTH\ + \ IN THIS AGREEMENT.\n\n \n\n1. LICENSE GRANT.\n\n1.1 License to Software other than Sample\ + \ Code. As more particularly described in the documentation that is provided on the Vuforia-related\ + \ developer web site for the Software (the \"Documentation\"), the Software is intended\ + \ for use as a development tool to enable the development and testing of visual recognition\ + \ end-user software applications (the \"Permitted Use\"). Subject to and conditioned upon\ + \ compliance with the terms and conditions of this Agreement, including the limitations,\ + \ conditions, restrictions and obligations set forth below, QUALCOMM Austria hereby grants\ + \ to You a personal, non-exclusive, non-sublicensable (except as expressly provided in Section\ + \ 1.6 (Limited Sublicense Rights) non-transferable, revocable, limited copyright license,\ + \ during the term of this Agreement, to (i) download, install and use the Software (other\ + \ than Sample Code) in machine-readable (i.e. object code) form solely for the Permitted\ + \ Use, and (ii) distribute in object code only the Vuforia engine binary files and the Vuforia\ + \ Word Lists that are included in the Software, solely as such binary files are integrated\ + \ into and used by each software application that You develop for the Permitted Use in accordance\ + \ with the Documentation and the terms of this Agreement. You may not use the Software\ + \ and may not accept this Agreement if you are a person barred from receiving the Software\ + \ under the laws of the United States or any other country including the country in which\ + \ you are resident or in which you use the Software. In addition to any additional software\ + \ that QUALCOMM Austria provides pursuant to Section 1.8 (Additional Software), the Software\ + \ licensed hereunder may include the following: \n\nVuforia Software Development Kit\n\n\ + · Vuforia Engine binary files (redistributable as permitted above);\n\n· \ + \ Vuforia Word Lists (i.e. .vwl file(s), solely in compiled binary form; redistributable\ + \ as permitted above);\n\n· Sample Code;\n\n· Sample Content Files (e.g.,\ + \ image and 3D model files); and\n\n· Sample Applications (i.e. .apk file(s), solely\ + \ in compiled binary form).\n\n· Contents May Vary for Platform Specific Versions\n\ + \n \n\n1.2 Documentation. Subject to the terms and conditions of this Agreement, including\ + \ the limitations, conditions, restrictions and obligations set forth below, You may reproduce\ + \ and use a reasonable number of copies of the Documentation on an internal basis only,\ + \ and solely in support of Your Permitted Use of the Software. Distribution of the Documentation\ + \ is prohibited without the express written permission of QUALCOMM Austria. \n\n1.3 Third\ + \ Party Licenses. The Software may contain third party programs, including but not limited\ + \ to software licensed under open source terms. The license terms associated with those\ + \ programs apply to your use of them, and in some instances such programs cannot be used\ + \ or further distributed without a license from the respective owner of such programs. You\ + \ shall be solely responsible to (i) obtain, if necessary, a separate and independent license\ + \ from such owner with respect to any such use and (ii) include all applicable license terms\ + \ and notices in Your application for third party programs contained in the Software that\ + \ are distributed as part of Your application. The delivery of the Software does not convey\ + \ a license, nor imply any rights, to use third party programs. A separate and independent\ + \ license for such use may be required and You shall be solely responsible to verify whether\ + \ such license is needed in conjunction with your use of such third party programs.\n\n\ + 1.4 License to Sample Code. QUALCOMM Austria may, in its sole discretion, provide certain\ + \ Sample Code that is part of the Software in human readable (source code) form. In some\ + \ cases, the Sample Code may be delivered to You separately from the other Software, but\ + \ whether provided separately or together with the other Software, if (and only if) QUALCOMM\ + \ Austria provides such Sample Code in source code form to You, then subject to and conditioned\ + \ upon compliance with the terms and conditions of this Agreement, including the limitations,\ + \ conditions, restrictions and obligations set forth below, QUALCOMM Austria hereby grants\ + \ to You a personal, non-sublicensable, non-transferable, non-exclusive, revocable, limited\ + \ copyright license, during the term of this Agreement, solely for the purpose of developing\ + \ applications utilizing the Vuforia Software Development Kit and/or Vuforia Extension for\ + \ Unity, to modify the Sample Code, compile into object code the Sample Code and Your modifications\ + \ thereto, and reproduce and distribute such compiled object code as part of the software\ + \ applications that You develop, in each case strictly in accordance with the Documentation\ + \ and the Permitted Use. You acknowledge and agree that Your license to the Sample Code\ + \ is conditioned upon You modifying the Sample Code such that Your software application\ + \ contains material additional features and functionality; re-distribution of Sample Code\ + \ without material improvement is not permitted. You will inform any third parties that\ + \ are to receive such software applications that contain any Sample Code or Your modifications\ + \ thereto that the delivery of such software applications will not convey or otherwise provide\ + \ any rights under patents of QUALCOMM Incorporated or any of its affiliates.\n\n1.5 License\ + \ to Sample Applications. QUALCOMM Austria may, in its sole discretion, provide certain\ + \ Sample Applications in binary form for the sole purpose of demonstrating certain features\ + \ enabled by the Software. In some cases, a Sample Application may be delivered to You\ + \ separately from the other Software, but whether provided separately or together with the\ + \ other Software, if (and only if) QUALCOMM Austria provides such Sample Application to\ + \ You, then subject to the terms and conditions of this Agreement, including the limitations,\ + \ conditions, restrictions and obligations set forth below, QUALCOMM Austria hereby grants\ + \ to You a personal, non-sublicensable, non-transferable, non-exclusive, revocable, limited\ + \ copyright license, during the term of this Agreement, to install such Sample Application\ + \ on a reasonable number of wireless devices, solely for Your internal evaluation of Vuforia\ + \ features.\n\n1.6 Limited Sublicense Rights. Subject to and conditioned upon compliance\ + \ with the terms and conditions of this Agreement, including the limitations, conditions,\ + \ restrictions and obligations set forth below, QUALCOMM Austria hereby grants to You a\ + \ personal, non-exclusive, non-sublicensable, non-transferable, revocable, limited copyright\ + \ license, during the term of this Agreement to sublicense the Vuforia engine binary files,\ + \ Vuforia Word Lists and/or Sample Code, solely as an integral part of Your software application\ + \ and solely to licensed recipients of Your software application, subject to the following\ + \ additional requirements: (a) Your Vuforia-enabled software application(s) must add significant\ + \ functionality to the Vuforia engine binary files, Sample Code, and Vuforia Word Lists,\ + \ as applicable, and You shall not distribute the Vuforia engine binary files, Sample Code\ + \ and/or Vuforia Word Lists except as fully integrated into your application(s), (b) Your\ + \ sublicense must be no less protective of the Software and the rights and interests of\ + \ QUALCOMM Austria and its affiliates than are the terms of this Agreement, (c) You shall\ + \ not make any representations, warranties, or undertake (or attempt to undertake) any obligations\ + \ on behalf of QUALCOMM Austria or its affiliates, and You shall ensure that QUALCOMM Austria\ + \ and its affiliates shall have no liability to Your sublicensees.\n\n1.7 Vuforia Target\ + \ Manager Web Application. Subject to and conditioned upon compliance with the terms and\ + \ conditions of this Agreement, including the limitations, conditions, restrictions and\ + \ obligations set forth below, QUALCOMM Austria hereby grants to You a personal, non-exclusive,\ + \ non-sublicensable, non-transferable, revocable, limited right during the term of this\ + \ Agreement to access the on-line Target Manager Web Application provided by QUALCOMM Austria\ + \ or its affiliates or service provider, solely for the Permitted Use. Any access or use\ + \ of the Target Manager Web Application shall be subject to this Agreement as well as the\ + \ terms and conditions of use and privacy policy as posted from time to time on the web\ + \ page(s) for the application. Notwithstanding the foregoing, QUALCOMM Austria reserves\ + \ the right to modify, suspend or stop providing the Target Manager Web Application with\ + \ or without notice, and may terminate Your access to the Target Manager Web Application\ + \ for any reason. \n\n1.8 Additional Software. QUALCOMM Austria hereby reserves the right\ + \ to provide or otherwise make available, at its discretion, additional software to You\ + \ from time to time. Any additional software or documentation that QUALCOMM Austria provides\ + \ to You by express reference to this Agreement will be considered to be part of the Software\ + \ or Documentation, as the case may be, and subject to all terms and conditions of this\ + \ Agreement. By accepting, possessing or using such additional software or documentation,\ + \ which shall include without limitation any related plug-ins as we may directly or indirectly\ + \ distribute as well as related web applications used to generate image resources, You agree\ + \ that the terms of this Agreement will apply thereto. \n\n1.9 Pre-commercial Software\ + \ Releases. If the Software provided to You under this Agreement is designated by QUALCOMM\ + \ Austria as a pre-commercial release (indicated by terms such as \"alpha,\" \"beta,\" \"\ + trial,\" \"draft\" or \"evaluation\") then in lieu of the licenses granted to You above,\ + \ but subject to any other executed agreement that You may have for the Software which grants\ + \ additional or different rights or imposes additional or different restrictions, You shall\ + \ only have the right under this Agreement to download and install the Software on a reasonable\ + \ number of workstations for the internal and non-commercial evaluation of the Software.\ + \ You acknowledge that the Software is a prerelease or experimental version and is not\ + \ at the level of performance and compatibility of a final product. The Software may not\ + \ operate correctly and may be substantially modified prior to first commercial shipment,\ + \ or may be withdrawn completely. You will not do any significant development or testing\ + \ using the Software, and any development You undertake is at Your sole risk, with the understanding\ + \ that the Software may never be issued for commercial use. You shall not commercialize,\ + \ distribute, publicly perform or publicly display any applications developed by You using\ + \ the Software or any component thereof. If You desire other rights (such as the right to\ + \ develop commercial products using the Software) You must use a commercial release of the\ + \ Software. The use license granted in this section expires when the Software is made available\ + \ under full commercial terms which You accept.\n\n1.10 Bug Reports. You are encouraged\ + \ to report to QUALCOMM Austria all bugs you experience or encounter with the Software and\ + \ You agree that QUALCOMM Austria shall have the right to use, without attribution or compensation\ + \ to You, all feedback (of any nature) which QUALCOMM Austria receives or otherwise obtains\ + \ from You, in any form, to improve, enhance or modify the Software or otherwise.\n\n \n\ + \n2. RESTRICTIONS. \n\n2.1 Retention of Rights. As between You and QUALCOMM Austria,\ + \ QUALCOMM Austria and its affiliates and licensors hereby retain all right, title, and\ + \ interests in and to the Software, including without limitation all copyrights, patent\ + \ rights, trademark rights and all other intellectual property rights therein or related\ + \ thereto. Subject to ownership rights of QUALCOMM Austria, its affiliates and licensors\ + \ in and to the Software, You shall retain the copyright rights in and to any modifications\ + \ to the source code portions of the Software that are made by You as permitted by this\ + \ Agreement. This Agreement does not convey or otherwise provide to You title or any ownership\ + \ rights or interests in or to any intellectual property rights of QUALCOMM Austria or any\ + \ of its affiliates, including but not limited to (1) those incorporated in the Software\ + \ or any component of the Software, or (2) any patents, patent applications, works of authorship,\ + \ trade secrets, know-how, ideas, or any other subject matter protectable under intellectual\ + \ property rights laws of any jurisdiction, of QUALCOMM Incorporated or any of its affiliates\ + \ (including, but not limited to, QUALCOMM Austria). As between You and QUALCOMM Austria,\ + \ QUALCOMM Austria is the sole and exclusive owner of and retains all right, title and interest\ + \ in and to all QUALCOMM Austria software, including, without limitation, the items set\ + \ forth in (1) and (2) above and all intellectual property rights in each of the foregoing.\ + \ Any rights not expressly granted to You in this Agreement are reserved by QUALCOMM Austria,\ + \ its affiliates and their respective licensors. Without limiting the generality of the\ + \ foregoing, neither the delivery of any Software, hardware, documentation or other materials\ + \ to You or any third party, nor any other provision of this Agreement (including, without\ + \ limitation, any rights or licenses granted by QUALCOMM Austria in this Agreement) will\ + \ be deemed or construed to grant to You or any third party, whether expressly, by implication\ + \ or by way of estoppel or otherwise, any right or license (and no authority to infringe,\ + \ or immunity from infringement liability, will be deemed to arise or exist as a matter\ + \ of law) under (i) any patents of QUALCOMM Incorporated or any of its affiliates, (ii)\ + \ any intellectual property rights of QUALCOMM Incorporated or its affiliates covering or\ + \ relating to any product or invention other than the Software, or (iii) any combination\ + \ of the Software with any other product or invention. Any rights not expressly granted\ + \ to You herein are hereby reserved by QUALCOMM Austria. In addition, You acknowledge and\ + \ agree, on behalf of Yourself and Your affiliates, that (a) this Agreement does not modify\ + \ or abrogate any obligations that You or any of Your affiliates has under any license or\ + \ other agreement with QUALCOMM Incorporated, including without limitation any obligation\ + \ to pay any royalties, and (b) neither You nor any of Your affiliates will contend that\ + \ it has obtained any right, license, or immunity from suit with respect to any patents\ + \ of QUALCOMM Incorporated or its affiliates under or as a result of this Agreement (whether\ + \ expressly, impliedly, by virtue of estoppel or exhaustion, or otherwise). \n\n2.2 Use\ + \ Restrictions. Except as expressly provided in Section 1 (License Grant) above, You may\ + \ make a single copy the Software only for backup purposes, provided that You reproduce\ + \ all copyright and other proprietary notices that are on the original copy of the Software.\ + \ You shall not incorporate, link, distribute or use any third party software or code in\ + \ conjunction with (i) the Software (ii) any software, products, documentation, content\ + \ or other materials developed using the Software, nor (iii) any derivative works that You\ + \ make using the source code portions of the Software (if any), in such a way that: (a)\ + \ creates, purports to create or has the potential to create, obligations with respect to\ + \ the Software or other QUALCOMM Austria software, including without limitation the distribution\ + \ or disclosure of any source code; or (b) grants, purports to grant, or has the potential\ + \ to grant to any third party any rights to or immunities under any intellectual property\ + \ rights or proprietary rights of QUALCOMM Austria or its affiliates, including without\ + \ limitation as such rights exist in or relate to the Software. Without limiting the generality\ + \ of the foregoing, You shall not incorporate, link, distribute or use (1) the Software\ + \ or any other software provided by QUALCOMM Austria, (2) any software, products, documentation,\ + \ content or other materials developed using the Software, nor (3) any derivative works\ + \ that You make using the source code portions of the Software (if any), with any code or\ + \ software licensed under any version of the GNU General Public License (\"GPL\"), Affero\ + \ General Public License (\"AGPL\"), Lesser General Public License (\"LGPL\"), European\ + \ Union Public License (\"EUPL\"), Apple Public Source License (\"APSL\"), Common Development\ + \ and Distribution License (\"CDDL\"), IBM Public License (\"IPL\"), Eclipse Public License\ + \ (\"EPL\"), Mozilla Public License (\"MPL\"), or any other open source license, in any\ + \ manner that could cause or could be interpreted or asserted to cause the Software or other\ + \ QUALCOMM Austria software (or any modifications thereto) to become subject to the terms\ + \ of the GPL, AGPL, LGPL, EUPL, APSL, CDDL, IPL, EPL, MPL, or such other open source license.\ + \ You, and each party receiving Software or any copies thereof from You, shall not receive\ + \ any rights to use such Software or copies thereof in a manner that will cause any patents,\ + \ copyrights or other intellectual property rights which are owned or controlled by QUALCOMM\ + \ Austria or any of its affiliates (or for which QUALCOMM Austria or any of its affiliates\ + \ has received license rights) to become subject to any encumbrance or terms and conditions\ + \ of any third party or open source license (including, without limitation, any open source\ + \ license listed on http://www.opensource.org/licenses/alphabetical) (each an \"Open Source\ + \ License\"). These restrictions, limitations, exclusions and conditions shall apply even\ + \ if QUALCOMM Austria or any of its affiliates becomes aware of or fails to act in a manner\ + \ to address any violation or failure to comply therewith. Also, no act by QUALCOMM Austria\ + \ or any of its affiliates that is undertaken under this Agreement as to any software or\ + \ technology shall be construed as being inconsistent with the intent not to cause any patents,\ + \ copyrights or other intellectual property rights which are owned or controlled by QUALCOMM\ + \ Austria or any of its affiliates (or for which QUALCOMM Austria or any of its affiliates\ + \ has received license rights) to become subject to any encumbrance or terms and conditions\ + \ of any Open Source License.\n\n2.3 Additional Restrictions. You will not: (i) reverse\ + \ engineer, disassemble, decompile, or translate the Software, or otherwise attempt to derive\ + \ the source code version of the Software, except if and only to the extent expressly permitted\ + \ by applicable law; (ii) use the Software and/or Documentation or any portion thereof to\ + \ create or develop any developer tools (including without limitation plug-ins and middleware)\ + \ or any software other than end-user targeted visual recognition software applications;\ + \ (iii) make more copies of the Software and/or Documentation than specified in this Agreement\ + \ or allowed by applicable law, despite this limitation; (iv) transfer or assign this Agreement\ + \ or any of the rights, duties or obligations hereunder (note however that You may transfer\ + \ and assign Your software applications that You develop in accordance with the Documentation\ + \ and the Permitted Use, provided that, You provide a copy of this Agreement and secure\ + \ the binding agreement of the transferee/assignee that the terms and conditions of this\ + \ Agreement shall continue to fully apply and bind You as well as the transferee/assignee\ + \ with respect to such transferred application(s)); (v) except as expressly permitted hereby,\ + \ rent, lease, loan or otherwise in any manner provide or distribute the Software and/or\ + \ Documentation or any copy of thereof to any third party; (vi) access or use for any purpose\ + \ any application protocol interface (API) such as the Vuforia APIs, except as expressly\ + \ described in the Documentation; or (vii) except as expressly permitted under Section 1\ + \ (License Grant), reproduce, distribute, publicly perform, publicly display or create derivative\ + \ works of or based on the Software and/or Documentation, or disclose, provide or otherwise\ + \ transfer, in any manner, to any third party the Software (except as expressly permitted\ + \ for the Sample Code), Documentation or any portion thereof. Any applications You develop\ + \ with or in connection with the Software that include visual recognition functionality\ + \ must utilize output from Vuforia tools for the purpose of generating appropriate resources\ + \ for image and 3D object detection, recognition and tracking, and You agree to not use\ + \ any tools or methods other than the Vuforia Target Manager Web Application for the purpose\ + \ of generating targets for image and 3D object recognition and tracking for use with such\ + \ applications. Any end user software applications that you create or develop using the\ + \ Software shall not access any third party service for the purpose of image recognition,\ + \ other than the Vuforia image recognition service made available by QUALCOMM Austria’s\ + \ affiliates under separate agreement (e.g. the Vuforia Cloud Recognition Service). You\ + \ will not include in your applications or Target Images (as defined below) (x) any content\ + \ or materials of any kind (text, graphics, images, photographs, video, sounds, etc.) that\ + \ comprise, constitute or depict profanity, nudity, pornographic images or explicit sexual\ + \ themes, or defamatory or libelous statements, material that infringes the intellectual\ + \ property of any person or entity, material that infringes upon the privacy or data protection\ + \ rights of any person, or material that is or could be considered to be illegal or objectionable,\ + \ (y) any malware malicious or harmful code, program or other internal component (e.g.,\ + \ computer viruses, Trojan horses, \"backdoors\" etc. that could damage, destroy or adversely\ + \ affect other software, firmware, hardware, data, systems, services or networks, or (z)\ + \ any facial recognition functionality or facial images. You shall not use the Software\ + \ and/or Documentation to create or develop any software application that invades, violates\ + \ or infringes the copyrights, patent rights, trade secrets, trademark or service mark rights,\ + \ privacy, publicity, or any other rights of any person or entity, and shall not constitute\ + \ a libel or defamation of any third party. In addition, You agree not to design or develop\ + \ any software application that you create or develop based on the use of the Software in\ + \ a manner so as to, or with the objective to, damage any wireless device, computer, network,\ + \ or any feature or function of a wireless device, computer or network based on the use\ + \ of such application. You represent and warrant that you have obtained all necessary permission\ + \ and licenses from all holders of intellectual property rights, if any, in material or\ + \ code appearing, used or recorded in any software application that you create or develop\ + \ with the Software and/or Documentation. The license to the Software and Documentation\ + \ granted to You hereunder is solely for the Permitted Use expressly set forth in Section\ + \ 1 (License Grant) and the Software and Documentation shall not be used for any other purpose\ + \ or use.\n\n2.4 Additional Services and Functions. No fees are due under this Agreement\ + \ for the development, commercialization and distribution of Your visual recognition-capable\ + \ end-user software applications. You acknowledge that certain optional services may be\ + \ provided by QUALCOMM Austria’s affiliates and/or service providers, and access to such\ + \ services are licensed separately and may include separate charges for use. For example,\ + \ applications that make use of the Vuforia Cloud Recognition Service require a separate\ + \ service agreement with Qualcomm Technologies, Inc. or one of its affiliates, under which\ + \ agreement fees may apply.\n\n \n\n3. CONFIDENTIALITY; NO SUPPORT. You hereby acknowledge\ + \ and agree that the Software (excepting the Sample Code), along with certain Documentation\ + \ and related information that are so marked, are confidential and proprietary to QUALCOMM\ + \ Austria. Except as expressly permitted in this Agreement, You shall not disclose, or\ + \ permit the disclosure of, the Software and/or confidential Documentation in any form or\ + \ any information relating to the Software and/or Documentation (including without limitation\ + \ the results of use or testing) to any third party without QUALCOMM Austria’s prior written\ + \ permission; provided that, you may otherwise generally make mention of and discuss the\ + \ Software with others. Notwithstanding the foregoing, You shall not discuss or otherwise\ + \ disclose any information about a pre-commercial release of the Software including without\ + \ limitation any application You have developed using a pre-commercial release of the Software.\ + \ You further acknowledge and agree that any unauthorized use or disclosure of the Software,\ + \ confidential Documentation and/or such information may cause irreparable harm and significant\ + \ injury to QUALCOMM Austria that would be difficult to ascertain or quantify; accordingly\ + \ You agree that QUALCOMM Austria shall have the right to seek and obtain injunctive or\ + \ other equitable relief to enforce the terms of this Agreement and without limiting any\ + \ other rights or remedies that QUALCOMM Austria may have. Also, You acknowledge and agree\ + \ that the Software and Documentation is provided \"AS IS,\" that QUALCOMM Austria is under\ + \ no obligation to provide any form of technical support for the Software and/or Documentation,\ + \ and that if QUALCOMM Austria, in its sole discretion, chooses to provide any form of support\ + \ or information relating to the Software and/or Documentation, such support and information\ + \ shall be deemed confidential and proprietary to QUALCOMM Austria and protected in accordance\ + \ with this Section 3 unless otherwise specified in writing. \n\n \n\n4. DISCLAIMER OF\ + \ WARRANTIES. YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT THE USE OF THE SOFTWARE AND DOCUMENTATION\ + \ IS AT YOUR SOLE RISK. THE SOFTWARE, DOCUMENTATION AND TECHNICAL SUPPORT, IF ANY, ARE PROVIDED\ + \ \"AS IS\" AND WITHOUT ANY WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY\ + \ OR OTHERWISE. TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW, QUALCOMM AUSTRIA AND\ + \ ITS AFFILIATES AND LICENSOR(S) (FOR THE EASE OF REFERENCE IN SECTIONS 4, 5, AND 6, QUALCOMM\ + \ AUSTRIA AND ITS AFFILIATES AND LICENSOR(S) SHALL BE COLLECTIVELY REFERRED TO AS QUALCOMM\ + \ AUSTRIA) EXPRESSLY DISCLAIM ALL WARRANTIES, WHETHER EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,\ + \ INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\ + \ PARTICULAR PURPOSE, AND NONINFRINGEMENT. QUALCOMM AUSTRIA DOES NOT REPRESENT OR WARRANT\ + \ THAT THE FUNCTIONS CONTAINED IN THE SOFTWARE WILL MEET YOUR REQUIREMENTS, OR THAT THE\ + \ OPERATION OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT THE SOFTWARE OR\ + \ ANY SERVICE ENABLED BY THE USE OF THE SOFTWARE WILL ALWAYS BE AVAILABLE, OR THAT DEFECTS\ + \ IN THE SOFTWARE OR DOCUMENTATION WILL BE CORRECTED. FURTHERMORE, QUALCOMM AUSTRIA DOES\ + \ NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE, OR THE RESULTS OF THE USE,\ + \ OF THE SOFTWARE OR DOCUMENTATION IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY, OR\ + \ OTHERWISE. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY QUALCOMM AUSTRIA OR ITS AUTHORIZED\ + \ REPRESENTATIVES SHALL CREATE ANY REPRESENTATION OR WARRANTY OR IN ANY WAY INCREASE THE\ + \ SCOPE OF ANY EXPRESS WARRANTY. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED\ + \ WARRANTIES, SO THE ABOVE EXCLUSION MAY NOT APPLY OR MAY BE LIMITED. \n\n \n\n5. LIMITATION\ + \ OF LIABILITY. TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW, UNDER NO CIRCUMSTANCES,\ + \ INCLUDING WITHOUT LIMITATION NEGLIGENCE, SHALL QUALCOMM AUSTRIA, ITS AFFILIATES OR ANY\ + \ OF THEIR RESPECTIVE DIRECTORS, OFFICERS, EMPLOYEES OR AGENTS BE LIABLE FOR ANY INDIRECT,\ + \ INCIDENTAL, SPECIAL, PUNITIVE, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING BUT NOT LIMITED\ + \ TO ANY DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION\ + \ AND THE LIKE) ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT OR ANY DOWNLOAD, INSTALLATION\ + \ OR USE OF, OR INABILITY TO USE, THE SOFTWARE AND/OR DOCUMENTATION, EVEN IF QUALCOMM AUSTRIA\ + \ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS DO NOT ALLOW THE\ + \ LIMITATION OR EXCLUSION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES SO THE ABOVE\ + \ LIMITATION OR EXCLUSION MAY NOT APPLY OR MAY BE LIMITED. QUALCOMM AUSTRIA HAS NO OBLIGATION\ + \ TO DEFEND, INDEMNIFY OR HOLD YOU HARMLESS UNDER THIS AGREEMENT. IN NO EVENT SHALL QUALCOMM\ + \ AUSTRIA’S TOTAL AGGREGATE LIABILITY FOR ANY AND ALL DAMAGES, LOSSES, CLAIMS AND CAUSES\ + \ OF ACTIONS (WHETHER IN CONTRACT, TORT, INCLUDING NEGLIGENCE OR OTHERWISE) EXCEED ONE HUNDRED\ + \ EURO (€100) OR THE EQUIVALENT THEREOF IN ANY OTHER CURRENCY.\n\n \n\n6. INDEMNITY. If\ + \ an application is written by You using any component of the Software and such application\ + \ is used, distributed, or otherwise deployed, then You agree to indemnify and hold QUALCOMM\ + \ Austria, its affiliates and each of their respective officers, directors, employees and\ + \ successors and assigns (each, a \"QUALCOMM Austria Indemnitee\") harmless from and against\ + \ any and all claims, demands, causes of action, losses, liabilities, damages, costs and\ + \ expenses, incurred or otherwise suffered by each QUALCOMM Austria Indemnitee (including\ + \ but not limited to costs of defense, investigation and reasonable attorney’s fees) arising\ + \ out of, resulting from or related to (i) any use, reproduction or distribution of the\ + \ Software, as modified or integrated by You, or any Target Image (as defined below), which\ + \ causes an infringement of any patent, copyright, trademark, trade secret, or other intellectual\ + \ property, publicity or privacy right of any third parties arising in any jurisdiction\ + \ anywhere in the world, except and solely to the extent such infringement is caused by\ + \ the unmodified Software, or portions thereof, as supplied to You by QUALCOMM Austria under\ + \ this Agreement, (ii) the download, distribution, installation, storage, execution, use\ + \ or transfer of such software, products, documentation, content, materials or derivative\ + \ works by any person or entity, and/or (iii) any breach of this Agreement by You. If and\ + \ as requested by QUALCOMM Austria, You agree to defend each QUALCOMM Austria Indemnitee\ + \ in connection with any third party claims, demands, or causes of action resulting from,\ + \ arising out of or in connection with any of the foregoing.\n\n \n\n7. CONSENT TO COLLECTION\ + \ AND USE OF DATA.\n\na. Vuforia Web Services: You understand and agree that certain versions\ + \ of the Software may allow You to store digital images (\"Target Images\") on servers located\ + \ in the United States and in other countries (the \"Target Manager Web Application\").\ + \ You also understand and agree that the Software may allow You to retrieve database file(s)\ + \ containing Target Images from such servers as part of the Vuforia Target Manager Web Application.\ + \ You hereby acknowledge and accept that the servers may be owned, managed or controlled\ + \ by QUALCOMM Austria, or one of its affiliates or service providers, and You agree that\ + \ QUALCOMM Austria and its affiliates and service providers may use, modify, reproduce and\ + \ distribute the Target Images to provide the Target Manager Web Application and improve\ + \ the Software and our products, services and technologies without attribution or compensation.\n\ + \nb. Collection and Use of Statistics: You understand and agree that the Software sends\ + \ to QUALCOMM Austria and/or its affiliates and service providers certain technical and\ + \ related information, including but not limited to: (i) information about the end users’\ + \ devices such as make, model, operating system name and version and kernel version, (ii)\ + \ information about our Software used to create Your software application such as the SDK\ + \ version and device profile, (iii) information about Your software application and its\ + \ use such as application runtime timestamp, settings (e.g., camera resolution settings,\ + \ configuration settings), start and stop dates and times, camera on/off events, target\ + \ image obtained/lost events, and other general usage information, and (iv) the IP address\ + \ used by the end user’s device, for the purpose of allowing the Vuforia servers to infer\ + \ the country of use (but not the exact location) (collectively \"Statistics\"). You further\ + \ understand and agree that QUALCOMM Austria and/or its affiliates may collect and use Statistics\ + \ to: (a) improve and optimize Software for different hardware and software requirements\ + \ on various consumer devices (commonly referred to as device fragmentation), (b) facilitate\ + \ the provision of new products, updates, enhancements and other services, (c) improve the\ + \ Software and our products, services and technologies and (d) provide new products, services\ + \ or technologies to You and/or our customers.\n\n \n\n8. MANDATORY END-USER LICENSE AGREEMENT\ + \ CLAUSE. Each end user of a Vuforia-enabled software application must agree to the end\ + \ user terms set forth in this Section 8. If You are licensing Your application(s) directly\ + \ to end users, then You must include the following terms in Your end user license agreement\ + \ for each of Your Vuforia-enabled applications. If You are developing Your application(s)\ + \ for a third party where such third party will, directly or indirectly, license the application(s)\ + \ to end users, then You must require such third party to include the following terms in\ + \ the applicable end user license agreement. In all cases, each such end user license agreement\ + \ must contain legally enforceable provisions whereby:\n\n (i) each end user consents\ + \ to the collection, storage, and use by QUALCOMM Austria and its affiliates and service\ + \ providers of Statistics from the Software and the transfer of Statistics between QUALCOMM\ + \ Austria and its affiliates and service providers (which may be in the United States or\ + \ in other countries), in each case for the purposes of (a) facilitating the provision of\ + \ new products, updates, enhancements and other services, (b) improving the Software, and\ + \ other products, services and technologies, and (c) providing new products, services or\ + \ technologies to You and customers of QUALCOMM Austria and its affiliates; and\n\n \ + \ (ii) each end user is advised of the hazards of using a camera based application\ + \ while driving, walking, or otherwise by being distracted or disoriented from real world\ + \ situations; and\n\n (iii) if Your Vuforia-enabled software application uses any\ + \ portion of other services provided by QUALCOMM Austria’s affiliates, (e.g. Cloud Recognition\ + \ Services available only under separate agreement), You acknowledge that additional end-user\ + \ terms and conditions will be required to be obtained from each end user as more particularly\ + \ described in the separate agreement for the Cloud Recognition Service.\n\n \n\n9. TERM\ + \ AND TERMINATION. This Agreement shall be effective upon acceptance by You and shall continue\ + \ until terminated. You may terminate the Agreement at any time by deleting and destroying\ + \ all copies of the Software and all related information in Your possession or control,\ + \ provided that you also inform QUALCOMM Austria in writing at that time of such termination.\ + \ This Agreement terminates immediately and automatically, with or without notice, if You\ + \ fail to comply with any provision hereof. Additionally, QUALCOMM Austria may at any time\ + \ terminate this Agreement, either with or without cause, upon notice to You. Upon termination\ + \ You must delete or destroy all copies of the Software and Documentation in Your possession,\ + \ and the license and other rights granted to You in this Agreement shall terminate. Sections\ + \ 2 through 16 shall survive the termination of this Agreement.\n\n \n\n10. EXPORT COMPLIANCE\ + \ ASSURANCES. You acknowledge that all hardware, software, source code and technology (collectively,\ + \ \"Products\") obtained from QUALCOMM Austria are subject to the US government export control\ + \ and economic sanctions laws, including the Export Administration Regulations (\"EAR\"\ + , 15 CFR 730 et seq., http://www.bis.doc.gov/ ) administered by the Department of Commerce,\ + \ Bureau of Industry and Security, and the Foreign Asset Control Regulations (31 CFR 500\ + \ et seq., http://www.treas.gov/offices/enforcement/ofac/) administered by the Department\ + \ of Treasury, Office of Foreign Assets Control (\"OFAC\"). You assure that You, Your subsidiaries\ + \ and affiliates will not directly or indirectly export, re-export, transfer or release\ + \ (collectively, \"export\") any Products or direct product thereof to any destination,\ + \ person, entity or end use prohibited or restricted under US law without prior US government\ + \ authorization to the extent required by regulation. The US government maintains embargoes\ + \ and sanctions against the countries listed in Country Groups E:1/2 of the EAR (Supplement\ + \ 1 to part 740), currently Cuba, Iran, North Korea, Sudan and Syria but any amendments\ + \ to these lists shall apply. You agree not to directly or indirectly employ any Product\ + \ received from QUALCOMM Austria in missile technology, sensitive nuclear or chemical biological\ + \ weapons activities, or in any manner knowingly transfer any Product to any party for any\ + \ such end use. You shall not export Products listed in Supplement 2 to part 744 of the\ + \ EAR for military end-uses, as defined in part 744.21, to the People’s Republic of China.\ + \ You shall not transfer any Product to any party listed on any of the denied parties lists\ + \ or specially designated nationals lists maintained under said regulations without appropriate\ + \ US government authorization to the extent required by regulation. You acknowledge that\ + \ other countries may have trade laws pertaining to import, use, export or distribution\ + \ of Products, and that compliance with same is Your responsibility.\n\n \n\n11. GOVERNMENT\ + \ END USERS. If You are acting on behalf of an agency or instrumentality of the U.S. government,\ + \ the Software and Documentation, as applicable, are \"commercial computer software\" and\ + \ \"commercial computer software documentation\" developed exclusively at private expense\ + \ by QUALCOMM Austria. Pursuant to FAR 12.212 or DFARS 227 7202 and their successors, as\ + \ applicable, use, reproduction and disclosure of the Software is governed by the terms\ + \ of this Agreement.\n\n \n\n12. USE OF NAME AND LOGO. You shall not display or make any\ + \ use of QUALCOMM Austria’s or its affiliates’ names, marks or logos in connection with\ + \ your application without the prior written approval of QUALCOMM Austria, except that you\ + \ may make use of the specific Vuforia logos available for download at https://developer.vuforia.com/resources/dev-guide/branding-guidelines\ + \ provided such use is in strict accordance with the logo usage guidelines accompanying\ + \ such logo files, and any additional license terms or conditions provided to you by QUALCOMM\ + \ Austria or its affiliates. Any use of such logos that does not fully comply with such\ + \ guidelines is prohibited. QUALCOMM Austria may, at its sole discretion, provide additional\ + \ promotional and/or marketing opportunities with respect to such of your applications that\ + \ display the Vuforia name and logo on its splash screen. You agree that QUALCOMM Austria\ + \ and its affiliates may include Your name (or Company’s name) and the graphical assets,\ + \ screenshots, logos, trademarks and other digital assets (the \"Graphical Assets\") that\ + \ You use with your application or otherwise associate with your application, on QUALCOMM\ + \ Austria or other Vuforia-related website(s), as part of Vuforia-related marketing materials,\ + \ and the Vuforia \"App Gallery.\"\n\n \n\n13. Demonstration of Your Applications by QUALCOMM\ + \ Austria. If a software application is written by You or on Your behalf using any component\ + \ of the Software and such application is made available for download or distribution, then\ + \ from and as of such date as you submit such application for, or otherwise permit or enable,\ + \ such download or distribution, You hereby grant QUALCOMM Austria and its affiliates a\ + \ world-wide, assignable, non-exclusive, fully paid-up and royalty-free, perpetual right\ + \ and license to use, reproduce, distribute, publicly display and publicly perform, in each\ + \ case for promotional and/or demonstration purposes, each such application and accompanying\ + \ documentation and Graphical Assets. Any such use by QUALCOMM Austria or its affiliates\ + \ under the above terms shall be subject to payment of any applicable standard download,\ + \ subscription or use fees otherwise generally applicable to the application when accessed\ + \ by the general public, but otherwise any agreement, terms or conditions for such application\ + \ shall be superseded by this section, and shall be inapplicable to the promotional and/or\ + \ demonstration of the application(s) as described above. You may terminate the license\ + \ you grant in this Section 13 on not less than thirty (30) days’ prior written notice to\ + \ QUALCOMM Austria, provided that such notice references this Agreement, clearly identifies\ + \ the affected application(s), and states that You wish to terminate the license granted\ + \ under this Section 13 with respect to such applications.\n\n \n\n14. ENTIRE AGREEMENT;\ + \ AMENDMENT; LANGUAGE. This Agreement is the entire and exclusive agreement between QUALCOMM\ + \ Austria and You with respect to the Software and Documentation and supersedes all prior\ + \ agreements (whether written or oral) and other communications between QUALCOMM Austria\ + \ and You with respect to the Software and Documentation. Except to the extent that QUALCOMM\ + \ Austria is expressly precluded by applicable law, QUALCOMM Austria further reserves the\ + \ right to make changes to this Agreement, including but not limited to as needed to reflect\ + \ changes in business practices or to reflect changes in or required by law or otherwise,\ + \ by providing You with reasonable notice of the changes, which notice may be sent in writing\ + \ or electronically or which may be made by posting notice of such update at developer.vuforia.com/legal/license.\ + \ You will be responsible for reviewing and becoming familiar with any and all such changes.\ + \ If You continue to use the Software or Documentation after notice of any changes has been\ + \ provided or posted, You shall be deemed to have accepted any and all such changes. Otherwise,\ + \ this Agreement may be modified only by a written amendment executed by both You and QUALCOMM\ + \ Austria. This Agreement is entered into solely in the English language, and if for any\ + \ reason any other language version is prepared by any party, it shall be solely for convenience\ + \ and the English version shall govern and control in all respects. If You are located\ + \ in the province of Quebec, Canada, the following applies: The parties hereby confirm\ + \ they have requested this Agreement and all related documents be prepared in English. \ + \ Les parties ont exigé que le présent contrat et tous les documents connexes soient rédigés\ + \ en anglais.\n\n \n\n15. THIRD PARTY RIGHTS. Excepting the terms and rights applicable\ + \ to QUALCOMM’s Austria’s affiliates as expressly stated herein (which terms and rights\ + \ such QUALCOMM Austria affiliates shall be entitled to enforce as third party beneficiaries),\ + \ the Parties agree, and confirm their mutual intention, that neither this Agreement nor\ + \ any of the terms of this Agreement will be enforceable by virtue of the Contract (Rights\ + \ of Third Parties) Act 1999, or otherwise, by any person/entity not a direct party to it.\ + \ Notwithstanding that any term of this Agreement may be or may become enforceable by a\ + \ person who is not a party to this Agreement, the terms and conditions of this Agreement\ + \ may be modified or amended, or this Agreement may be suspended, cancelled, rescinded or\ + \ terminated by the parties as provided in Section 14 (Entire Agreement; Amendment; Language)\ + \ without the consent of any such third party. \n\n \n\n16. GENERAL. This Agreement is\ + \ governed and interpreted in accordance with the laws of England and Wales without giving\ + \ effect to its conflict of laws provisions that would result in the application of the\ + \ laws of a different state. The United Nations Convention on Contracts for the International\ + \ Sale of Goods is expressly disclaimed and shall not apply. Any claim, lawsuit or proceeding\ + \ arising out of or related to this Agreement must be brought exclusively in the courts\ + \ of London, England and You hereby consent to the jurisdiction and venue of such courts.\ + \ If any provision of this Agreement shall be invalid, the validity of the remaining provisions\ + \ of this Agreement shall not be affected. \n\n \n\nBY CLICKING ON THE \"I ACCEPT\" BUTTON\ + \ BELOW YOU REPRESENT, WARRANT AND CERTIFY THAT: YOU ARE AN AUTHORIZED REPRESENTATIVE OF\ + \ THE LEGAL ENTITY YOU REPRESENT; YOU HAVE READ THIS AGREEMENT AND UNDERSTAND IT; YOU HAVE\ + \ THE AUTHORITY TO BIND THE LEGAL ENTITY YOU REPRESENT TO THE TERMS AND CONDITIONS OF THIS\ + \ AGREEMENT; AND YOU AGREE ON BEHALF OF THE LEGAL ENTITY YOU REPRESENT TO BE BOUND BY ITS\ + \ TERMS AND CONDITIONS.\n\n \n\nRev. 2013-7-29" json: vuforia-2013-07-29.json - yml: vuforia-2013-07-29.yml + yaml: vuforia-2013-07-29.yml html: vuforia-2013-07-29.html - text: vuforia-2013-07-29.LICENSE + license: vuforia-2013-07-29.LICENSE - license_key: w3c + category: Permissive spdx_license_key: W3C other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + By obtaining, using and/or copying this work, you (the licensee) agree that you + have read, understood, and will comply with the following terms and conditions. + + Permission to copy, modify, and distribute this software and its documentation, + with or without modification, for any purpose and without fee or royalty is + hereby granted, provided that you include the following on ALL copies of the + software and documentation or portions thereof, including modifications: + + The full text of this NOTICE in a location viewable to users of the + redistributed or derivative work. + + Any pre-existing intellectual property disclaimers, notices, or terms and + conditions. If none exist, the W3C Software Short Notice should be included + (hypertext is preferred, text is permitted) within the body of any redistributed + or derivative code. + + Notice of any changes or modifications to the files, including the date changes + were made. (We recommend you provide URIs to the location from which the code is + derived.) + + Disclaimers + THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE + NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT + THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY + PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. + + COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. + + The name and trademarks of copyright holders may NOT be used in advertising or + publicity pertaining to the software without specific, written prior permission. + Title to copyright in this software and any associated documentation will at all + times remain with copyright holders. json: w3c.json - yml: w3c.yml + yaml: w3c.yml html: w3c.html - text: w3c.LICENSE + license: w3c.LICENSE - license_key: w3c-docs-19990405 + category: Free Restricted spdx_license_key: LicenseRef-scancode-w3c-docs-19990405 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + W3C® DOCUMENT NOTICE AND LICENSE + + Copyright © World Wide Web Consortium, (Massachusetts Institute of Technology, + Institut National de Recherche en Informatique et en Automatique, Keio University). + All Rights Reserved. http://www.w3.org/Consortium/Legal/ + + Public documents on the W3C site are provided by the copyright holders under the following license. The software or Document Type Definitions (DTDs) associated with W3C specifications are governed by the Software Notice. By using and/or copying this document, or the W3C document from which this statement is linked, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions: + + Permission to use, copy, and distribute the contents of this document, or the W3C document from which this statement is linked, in any medium for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the document, or portions thereof, that you use: + + A link or URL to the original W3C document. + The pre-existing copyright notice of the original author, or if it doesn't exist, a notice of the form: "Copyright © [$date-of-document] World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/" (Hypertext is preferred, but a textual representation is permitted.) + If it exists, the STATUS of the W3C document. + When space permits, inclusion of the full text of this NOTICE should be provided. We request that authorship attribution be provided in any software, documents, or other items or products that you create pursuant to the implementation of the contents of this document, or any portion thereof. + + No right to create modifications or derivatives of W3C documents is granted pursuant to this license. However, if additional requirements (documented in the Copyright FAQ) are satisfied, the right to create modifications or derivatives is sometimes granted by the W3C to individuals complying with those requirements. + + THIS DOCUMENT IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE DOCUMENT ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. + + COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE DOCUMENT OR THE PERFORMANCE OR IMPLEMENTATION OF THE CONTENTS THEREOF. + + The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to this document or its contents without specific, written prior permission. Title to copyright in this document will at all times remain with copyright holders. + + ---------------------------------------------------------------------------- + + This formulation of W3C's notice and license became active on April 05 1999 so as to account for the treatment of DTDs, schema's and bindings. See the older formulation for the policy prior to this date. Please see our Copyright FAQ for common questions about using materials from our site, including specific terms and conditions for packages like libwww, Amaya, and Jigsaw. Other questions about this notice can be directed to site-policy@w3.org. json: w3c-docs-19990405.json - yml: w3c-docs-19990405.yml + yaml: w3c-docs-19990405.yml html: w3c-docs-19990405.html - text: w3c-docs-19990405.LICENSE + license: w3c-docs-19990405.LICENSE - license_key: w3c-docs-20021231 + category: Free Restricted spdx_license_key: LicenseRef-scancode-w3c-docs-20021231 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + W3C DOCUMENT LICENSE + + Public documents on the W3C site are provided by the copyright holders under the + following license. + + License + By using and/or copying this document, or the W3C document from which this + statement is linked, you (the licensee) agree that you have read, understood, + and will comply with the following terms and conditions: + + Permission to copy, and distribute the contents of this document, or the W3C + document from which this statement is linked, in any medium for any purpose and + without fee or royalty is hereby granted, provided that you include the + following on ALL copies of the document, or portions thereof, that you use: + + * A link or URL to the original W3C document. + * The pre-existing copyright notice of the original author, or if it doesn't + exist, a notice (hypertext is preferred, but a textual representation is + permitted) of the form: "Copyright © [$date-of-document] World Wide Web + Consortium, (Massachusetts Institute of Technology, European Research Consortium + for Informatics and Mathematics, Keio University, Beihang). All Rights Reserved. + http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231" + + * If it exists, the STATUS of the W3C document. + + When space permits, inclusion of the full text of this NOTICE should be + provided. We request that authorship attribution be provided in any software, + documents, or other items or products that you create pursuant to the + implementation of the contents of this document, or any portion thereof. + + No right to create modifications or derivatives of W3C documents is granted + pursuant to this license. However, if additional requirements (documented in the + Copyright FAQ) are satisfied, the right to create modifications or derivatives + is sometimes granted by the W3C to individuals complying with those + requirements. + + Disclaimers + THIS DOCUMENT IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS + OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE; + THAT THE CONTENTS OF THE DOCUMENT ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE + IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, + COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. + + COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE DOCUMENT OR THE PERFORMANCE + OR IMPLEMENTATION OF THE CONTENTS THEREOF. + + The name and trademarks of copyright holders may NOT be used in advertising or + publicity pertaining to this document or its contents without specific, written + prior permission. Title to copyright in this document will at all times remain + with copyright holders. + + Notes + This version: http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231 + + This formulation of W3C's notice and license became active on December 31 2002. + This version removes the copyright ownership notice such that this license can + be used with materials other than those owned by the W3C, moves information on + style sheets, DTDs, and schemas to the Copyright FAQ, reflects that ERCIM is now + a host of the W3C, includes references to this specific dated version of the + license, and removes the ambiguous grant of "use". See the older formulation for + the policy prior to this date. Please see our Copyright FAQ for common questions + about using materials from our site, such as the translating or annotating + specifications. json: w3c-docs-20021231.json - yml: w3c-docs-20021231.yml + yaml: w3c-docs-20021231.yml html: w3c-docs-20021231.html - text: w3c-docs-20021231.LICENSE + license: w3c-docs-20021231.LICENSE - license_key: w3c-documentation + category: Free Restricted spdx_license_key: LicenseRef-scancode-w3c-documentation other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + Copyright Notice + + Copyright © 1998 World Wide Web Consortium , (Massachusetts Institute of + Technology , Institut National de Recherche en Informatique et en Automatique , + Keio University ). All Rights Reserved. + + Documents on the W3C site are provided by the copyright holders under the + following license. By obtaining, using and/or copying this document, or the W3C + document from which this statement is linked, you agree that you have read, + understood, and will comply with the following terms and conditions: + + Permission to use, copy, and distribute the contents of this document, or the + W3C document from which this statement is linked, in any medium for any purpose + and without fee or royalty is hereby granted, provided that you include the + following on ALL copies of the document, or portions thereof, that you use: + + 1. A link or URI to the original W3C document. + 2. The pre-existing copyright notice of the original author, if it doesn't exist, + a notice of the form: + + "Copyright © World Wide Web Consortium , (Massachusetts Institute of Technology , + Institut National de Recherche en Informatique et en Automatique , Keio University ). + All Rights Reserved." + + 3. If it exists, the STATUS of the W3C document. + + When space permits, inclusion of the full text of this NOTICE should be + provided. In addition, credit shall be attributed to the copyright holders for + any software, documents, or other items or products that you create pursuant to + the implementation of the contents of this document, or any portion thereof. + + No right to create modifications or derivatives is granted pursuant to this + license. + + THIS DOCUMENT IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS + OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE; + THAT THE CONTENTS OF THE DOCUMENT ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE + IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, + COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. + + COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE DOCUMENT OR THE PERFORMANCE + OR IMPLEMENTATION OF THE CONTENTS THEREOF. + + The name and trademarks of copyright holders may NOT be used in advertising or + publicity pertaining to this document or its contents without specific, written + prior permission. Title to copyright in this document will at all times remain + with copyright holders. json: w3c-documentation.json - yml: w3c-documentation.yml + yaml: w3c-documentation.yml html: w3c-documentation.html - text: w3c-documentation.LICENSE + license: w3c-documentation.LICENSE - license_key: w3c-software-19980720 + category: Permissive spdx_license_key: W3C-19980720 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "W3C® SOFTWARE NOTICE AND LICENSE\n\nCopyright © 1994-2002 World Wide Web Consortium,\ + \ (Massachusetts Institute of\nTechnology, Institut National de Recherche en Informatique\ + \ et en Automatique,\nKeio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/\n\ + \nThis W3C work (including software, documents, or other related items) is being\nprovided\ + \ by the copyright holders under the following license. By obtaining,\nusing and/or copying\ + \ this work, you (the licensee) agree that you have read,\nunderstood, and will comply with\ + \ the following terms and conditions:\n\nPermission to use, copy, modify, and distribute\ + \ this software and its\ndocumentation, with or without modification, for any purpose and\ + \ without fee or\nroyalty is hereby granted, provided that you include the following on\ + \ ALL copies\nof the software and documentation or portions thereof, including modifications,\n\ + that you make:\n\nThe full text of this NOTICE in a location viewable to users of the\n\ + redistributed or derivative work.\n\nAny pre-existing intellectual property disclaimers,\ + \ notices, or terms and\nconditions. If none exist, a short notice of the following form\ + \ (hypertext is\npreferred, text is permitted) should be used within the body of any\nredistributed\ + \ or derivative code: \"Copyright © [$date-of-software] World Wide\nWeb Consortium, (Massachusetts\ + \ Institute of Technology, Institut National de\nRecherche en Informatique et en Automatique,\ + \ Keio University). All Rights\nReserved. http://www.w3.org/Consortium/Legal/\"\n\nNotice\ + \ of any changes or modifications to the W3C files, including the date\nchanges were made.\ + \ (We recommend you provide URIs to the location from which the\ncode is derived.)\n\nTHIS\ + \ SOFTWARE AND DOCUMENTATION IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE\nNO REPRESENTATIONS\ + \ OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\nTO, WARRANTIES OF MERCHANTABILITY\ + \ OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT\nTHE USE OF THE SOFTWARE OR DOCUMENTATION\ + \ WILL NOT INFRINGE ANY THIRD PARTY\nPATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\n\ + COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR\nCONSEQUENTIAL\ + \ DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.\n\nThe name and trademarks\ + \ of copyright holders may NOT be used in advertising or\npublicity pertaining to the software\ + \ without specific, written prior permission.\nTitle to copyright in this software and any\ + \ associated documentation will at all\ntimes remain with copyright holders.\n\n \nThis\ + \ formulation of W3C's notice and license became active on August 14 1998 so\nas to improve\ + \ compatibility with GPL. This version ensures that W3C software\nlicensing terms are no\ + \ more restrictive than GPL and consequently W3C software\nmay be distributed in GPL packages.\ + \ See the older formulation for the policy\nprior to this date. Please see our Copyright\ + \ FAQ for common questions about\nusing materials from our site, including specific terms\ + \ and conditions for\npackages like libwww, Amaya, and Jigsaw. Other questions about this\ + \ notice can\nbe directed to site-policy@w3.org." json: w3c-software-19980720.json - yml: w3c-software-19980720.yml + yaml: w3c-software-19980720.yml html: w3c-software-19980720.html - text: w3c-software-19980720.LICENSE + license: w3c-software-19980720.LICENSE - license_key: w3c-software-20021231 + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: "W3C Software Notice and License\n\nStatus: This license was applied to software published\ + \ by W3C before 13 May,\n2015. On 13 May, 2015, W3C adopted a revised and renamed \"software\ + \ and document\"\nlicense and applied the new license to all W3C documents that had previously\n\ + been made available under this license. The new license grants all permissions\nthat had\ + \ been granted under this 2002 license.\n\nThis work (and included software, documentation\ + \ such as READMEs, or other\nrelated items) is being provided by the copyright holders under\ + \ the following\nlicense. \n\nLicense\n\nBy obtaining, using and/or copying this work, you\ + \ (the licensee) agree that you\nhave read, understood, and will comply with the following\ + \ terms and conditions.\n\nPermission to copy, modify, and distribute this software and\ + \ its documentation,\nwith or without modification, for any purpose and without fee or royalty\ + \ is\nhereby granted, provided that you include the following on ALL copies of the\nsoftware\ + \ and documentation or portions thereof, including modifications:\n\n The full text of\ + \ this NOTICE in a location viewable to users of the\n redistributed or derivative work.\n\ + \n Any pre-existing intellectual property disclaimers, notices, or terms and\n conditions.\ + \ If none exist, the W3C Software Short Notice should be included\n (hypertext is preferred,\ + \ text is permitted) within the body of any\n redistributed or derivative code.\n\n \ + \ Notice of any changes or modifications to the files, including the date\n changes\ + \ were made. (We recommend you provide URIs to the location from which\n the code is\ + \ derived.)\n\nDisclaimers\n\nTHIS SOFTWARE AND DOCUMENTATION IS PROVIDED \"AS IS,\" AND\ + \ COPYRIGHT HOLDERS MAKE\nNO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING\ + \ BUT NOT LIMITED\nTO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE\ + \ OR THAT\nTHE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY\n\ + PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE\ + \ FOR ANY DIRECT, INDIRECT, SPECIAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF\ + \ THE SOFTWARE OR DOCUMENTATION.\n\nThe name and trademarks of copyright holders may NOT\ + \ be used in advertising or\npublicity pertaining to the software without specific, written\ + \ prior permission.\nTitle to copyright in this software and any associated documentation\ + \ will at all\ntimes remain with copyright holders.\n\nNotes\n\nThis version: http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231\n\ + \nThis formulation of W3C's notice and license became active on December 31 2002.\nThis\ + \ version removes the copyright ownership notice such that this license can\nbe used with\ + \ materials other than those owned by the W3C, reflects that ERCIM is\nnow a host of the\ + \ W3C, includes references to this specific dated version of the\nlicense, and removes the\ + \ ambiguous grant of \"use\". Otherwise, this version is\nthe same as the previous version\ + \ and is written so as to preserve the Free\nSoftware Foundation's assessment of GPL compatibility\ + \ and OSI's certification\nunder the Open Source Definition." json: w3c-software-20021231.json - yml: w3c-software-20021231.yml + yaml: w3c-software-20021231.yml html: w3c-software-20021231.html - text: w3c-software-20021231.LICENSE + license: w3c-software-20021231.LICENSE - license_key: w3c-software-doc-20150513 + category: Permissive spdx_license_key: W3C-20150513 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "W3C Software and Document Notice and License\n\nStatus: This license takes effect 13\ + \ May, 2015.\n\nThis work is being provided by the copyright holders under the following\ + \ license.\nLicense\n\nBy obtaining and/or copying this work, you (the licensee) agree that\ + \ you have\nread, understood, and will comply with the following terms and conditions.\n\ + \nPermission to copy, modify, and distribute this work, with or without\nmodification, for\ + \ any purpose and without fee or royalty is hereby granted,\nprovided that you include the\ + \ following on ALL copies of the work or portions\nthereof, including modifications:\n\n\ + \ The full text of this NOTICE in a location viewable to users of the\n redistributed\ + \ or derivative work.\n \n Any pre-existing intellectual property disclaimers, notices,\ + \ or terms and\n conditions. If none exist, the W3C Software and Document Short Notice\ + \ should\n be included.\n\n Notice of any changes or modifications, through a copyright\ + \ statement on the\n new code or document such as \"This software or document includes\ + \ material\n copied from or derived from [title and URI of the W3C document]. Copyright\ + \ ©\n [YEAR] W3C® (MIT, ERCIM, Keio, Beihang).\"\n\nDisclaimers\n\nTHIS WORK IS PROVIDED\ + \ \"AS IS,\" AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR\nWARRANTIES, EXPRESS OR IMPLIED,\ + \ INCLUDING BUT NOT LIMITED TO, WARRANTIES OF\nMERCHANTABILITY OR FITNESS FOR ANY PARTICULAR\ + \ PURPOSE OR THAT THE USE OF THE\nSOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY\ + \ PATENTS, COPYRIGHTS,\nTRADEMARKS OR OTHER RIGHTS.\n\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE\ + \ FOR ANY DIRECT, INDIRECT, SPECIAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF\ + \ THE SOFTWARE OR DOCUMENT.\n\nThe name and trademarks of copyright holders may NOT be used\ + \ in advertising or\npublicity pertaining to the work without specific, written prior permission.\n\ + Title to copyright in this work will at all times remain with copyright holders.\nNotes" json: w3c-software-doc-20150513.json - yml: w3c-software-doc-20150513.yml + yaml: w3c-software-doc-20150513.yml html: w3c-software-doc-20150513.html - text: w3c-software-doc-20150513.LICENSE + license: w3c-software-doc-20150513.LICENSE - license_key: w3c-test-suite + category: Free Restricted spdx_license_key: LicenseRef-scancode-w3c-test-suite other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + W3C Test Suite Licence + + This document, Test Suites and other documents that link to this statement are provided by the copyright holders under the following license: By using and/or copying this document, or the W3C document from which this statement is linked, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions: + + Permission to copy, and distribute the contents of this document, or the W3C document from which this statement is linked, in any medium for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the document, or portions thereof, that you use: + + 1. A link or URL to the original W3C document. + + 2. The pre-existing copyright notice of the original author, or if it doesn't exist, a notice (hypertext is preferred, but a textual representation is permitted) of the form: "Copyright © [$date-of-document] World Wide Web Consortium, (MIT, ERCIM, Keio, Beihang) and others. All Rights Reserved. http://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html" + + 3. If it exists, the STATUS of the W3C document. + + When space permits, inclusion of the full text of this NOTICE should be provided. We request that authorship attribution be provided in any software, documents, or other items or products that you create pursuant to the implementation of the contents of this document, or any portion thereof. + + No right to create modifications or derivatives of W3C documents is granted pursuant to this license. However, if additional requirements (documented in the Copyright FAQ) are satisfied, the right to create modifications or derivatives is sometimes granted by the W3C to individuals complying with those requirements. + + If a Test Suite distinguishes the test harness (or, framework for navigation) and the actual tests, permission is given to remove or alter the harness or navigation if the Test Suite in question allows to do so. The tests themselves shall NOT be changed in any way. + + The name and trademarks of W3C and other copyright holders may NOT be used in advertising or publicity pertaining to this document or other documents that link to this statement without specific, written prior permission. Title to copyright in this document will at all times remain with copyright holders. Permission is given to use the trademarked string "W3C" within claims of performance concerning W3C Specifications or features described therein, and there only, if the test suite so authorizes. + + THIS WORK IS PROVIDED BY W3C, MIT, ERCIM, KEIO, BEIHANG, 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 W3C, MIT, ERCIM, KEIO, BEIHANG, 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. json: w3c-test-suite.json - yml: w3c-test-suite.yml + yaml: w3c-test-suite.yml html: w3c-test-suite.html - text: w3c-test-suite.LICENSE + license: w3c-test-suite.LICENSE - license_key: warranty-disclaimer + category: Unstated License spdx_license_key: LicenseRef-scancode-warranty-disclaimer other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Unstated License + text: json: warranty-disclaimer.json - yml: warranty-disclaimer.yml + yaml: warranty-disclaimer.yml html: warranty-disclaimer.html - text: warranty-disclaimer.LICENSE + license: warranty-disclaimer.LICENSE - license_key: waterfall-feed-parser + category: Free Restricted spdx_license_key: LicenseRef-scancode-waterfall-feed-parser other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: "Permission is hereby granted, free of charge, to any person obtaining a copy\nof this\ + \ software and associated documentation files (the \"Software\"), to deal\nin the Software\ + \ without restriction, including without limitation the rights\nto use, copy, modify, merge,\ + \ publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons\ + \ to whom the Software is\nfurnished to do so, subject to the following conditions:\n\n\ + 1. The above copyright notice and this permission notice shall be included\n in all copies\ + \ or substantial portions of the Software.\n\n2. This Software cannot be used to archive\ + \ or collect data such as (but not\n limited to) that of events, news, experiences and\ + \ activities, for the \n purpose of any concept relating to diary/journal keeping.\n\n\ + THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING\ + \ BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE\ + \ AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR\ + \ ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\ + \ ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\ + \ IN\nTHE SOFTWARE." json: waterfall-feed-parser.json - yml: waterfall-feed-parser.yml + yaml: waterfall-feed-parser.yml html: waterfall-feed-parser.html - text: waterfall-feed-parser.LICENSE + license: waterfall-feed-parser.LICENSE - license_key: westhawk + category: Permissive spdx_license_key: LicenseRef-scancode-westhawk other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software for any purpose + and without fee is hereby granted, provided that the above copyright notices + appear in all copies and that both the copyright notice and this permission + notice appear in supporting documentation. + + This software is provided "as is" without express or implied warranty. json: westhawk.json - yml: westhawk.yml + yaml: westhawk.yml html: westhawk.html - text: westhawk.LICENSE + license: westhawk.LICENSE - license_key: whistle + category: Permissive spdx_license_key: LicenseRef-scancode-whistle other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Subject to the following obligations and disclaimer of warranty, use and + redistribution of this software, in source or object code forms, with or + without modifications are expressly permitted by Whistle Communications; + provided, however, that: + 1. Any and all reproductions of the source or object code must include the + copyright notice above and the following disclaimer of warranties; and + + 2. No rights are granted, in any manner or form, to use Whistle + Communications, Inc. trademarks, including the mark "WHISTLE + COMMUNICATIONS" on advertising, endorsements, or otherwise except as + such appears in the above copyright notice or in the software. + + THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND + TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO + REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE, + INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. + WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY + REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS + SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE. + IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES + RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING + WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER 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 WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY + OF SUCH DAMAGE. json: whistle.json - yml: whistle.yml + yaml: whistle.yml html: whistle.html - text: whistle.LICENSE + license: whistle.LICENSE - license_key: whitecat + category: Permissive spdx_license_key: LicenseRef-scancode-whitecat other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + * 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 nor the + * names of its contributors may be used to endorse or promote products + * derived from this software without specific prior written permission. + * * The WHITECAT logotype cannot be changed, you can remove it, but you + * cannot change it in any way. The WHITECAT logotype is: + * + * /\ /\ + * / \_____/ \ + * /_____________\ + * W H I T E C A T + * + * * Redistributions in binary form must retain all copyright notices printed + * to any local or remote output device. This include any reference to + * Lua RTOS, whitecatboard.org, Lua, and other copyright notices that may + * appear in the future. + * + * 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 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. + * + * Lua RTOS, a tool for make a LFS file system image json: whitecat.json - yml: whitecat.yml + yaml: whitecat.yml html: whitecat.html - text: whitecat.LICENSE + license: whitecat.LICENSE - license_key: wide-license + category: Permissive spdx_license_key: LicenseRef-scancode-wide-license other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify and distribute this software and its + documentation is hereby granted, provided only with the following + conditions are satisfied: + + 1. Both the copyright notice and this permission notice appear in + all copies of the software, derivative works or modified versions, + and any portions thereof, and that both notices appear in + supporting documentation. + + 2. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + This product includes software developed by WIDE Project and + its contributors. + + 3. Neither the name of WIDE 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 DEVELOPER ``AS IS'' AND WIDE + PROJECT DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES + WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. ALSO, THERE + IS NO WARRANTY IMPLIED OR OTHERWISE, NOR IS SUPPORT PROVIDED. + + Feedback of the results generated from any improvements or + extensions made to this software would be much appreciated. + Any such feedback should be sent to: json: wide-license.json - yml: wide-license.yml + yaml: wide-license.yml html: wide-license.html - text: wide-license.LICENSE + license: wide-license.LICENSE - license_key: wifi-alliance + category: Commercial spdx_license_key: LicenseRef-scancode-wifi-alliance other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + Confidential not for redistribution + + ======================================================================= + LICENSE + ======================================================================= + + License is granted only to Wi-Fi Alliance members and designated Wi-Fi + contractors and, unless otherwise expressly authorized in writing by the + Wi-Fi Alliance, is limited for use solely in testing Wi-Fi equipment in + conjunction with a Wi-Fi certification program. This license is not + transferable or sublicensable, and it does not extend to and may not be + used with non-Wi-Fi applications. + + Commercial derivative works or applications that use this software are NOT + AUTHORIZED without specific prior written permission from Wi-Fi Alliance. + + Non-Commercial derivative works for your own internal use are authorized + and are limited by the same restrictions. + + Neither the name of the author nor "Wi-Fi Alliance" + may be used to endorse or promote products that are derived + from or that use this software without specific prior written + permission from Wi-Fi Alliance. + + THIS SOFTWARE IS PROVIDED BY WIFI ALLIANCE "AS IS" AND ANY EXPRESSED OR + IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + OF MERCHANTABILITY, NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE, + ARE DISCLAIMED. IN NO EVENT SHALL WIFI ALLIANCE BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, THE COST OF 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) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. json: wifi-alliance.json - yml: wifi-alliance.yml + yaml: wifi-alliance.yml html: wifi-alliance.html - text: wifi-alliance.LICENSE + license: wifi-alliance.LICENSE - license_key: william-alexander + category: Permissive spdx_license_key: LicenseRef-scancode-william-alexander other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "free for use as long as this comment is included \nin the program as it is" json: william-alexander.json - yml: william-alexander.yml + yaml: william-alexander.yml html: william-alexander.html - text: william-alexander.LICENSE + license: william-alexander.LICENSE - license_key: wince-50-shared-source + category: Proprietary Free spdx_license_key: LicenseRef-scancode-wince-50-shared-source other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Microsoft Windows CE 5.0 Shared Source License Agreement + + Microsoft gives you a Windows CE 5.0 Shared Source License Agreement ("License") to use the accompanying Software on the following terms: + + You may: + + 1. Correct errors in Your hardware and software operating on the Windows CE platform. + 2. Create derivative works of the Software to debug, improve and optimize Windows CE. + 3. Use the Software as a reference to develop Enhancements. "Enhancements" means technologies that enhance or extend the functionality or features of the Windows CE operating system and do not include any of the Software or any derivative work of the Software. + 4. Provide system integration and technical support services to Your customers to assist them in their development, testing, or use of hardware and software, as applicable, based on the Windows CE platform. + 5. Compile the Software and any derivative works of the Software that You create under the terms of this License and then publicly perform and display that compiled code in operation in Your device in public demonstrations at tradeshows, lectures and similar events. + 6. Distribute derivative works of the Software only in object code form as part of Your Windows CE-based embedded product provided that You have signed a standard, royalty-bearing agreement for distribution of Windows CE. + 7. Microsoft reserves all rights not expressly granted. + + You may not: + + 1. Use the Software or information derived from the Software for any project related to, or to make any Enhancements or derivative works of the Software for use with, a non-Microsoft operating system or related to a device or piece of hardware based on a non-Microsoft operating system. + 2. Use the Software for patent-mining purposes, such as (i) determining if any features, functions or processes provided by the Software are covered by any patents or patent applications or (ii) using the Software as a reference or using specific knowledge of the Software to modify existing patents or patent applications or creating any continuation, continuation in part, or extension of existing patents or patent applications. + + In return, we simply require that you agree: + + 1. Not to remove any copyright notices from the Software. + 2. Identify all derivative works of the Software, and Yourself as the author of such derivative works. + 3. Provide end-user support for your derivative works. + 4. Not to combine or distribute the Software (or any derivative works) with other software that is licensed pursuant to terms that seek to require that the Software (or any intellectual property in it) be licensed to or otherwise shared with others. + 5. That if you distribute the Software in source code form, then you do so only under this License (i.e. you must include a complete copy of this License with your distribution), and if you distribute the Software solely in object form you only do so under a license that complies with this License. + 6. That if you distribute any derivative works of the Software, you will defend, indemnify and hold Microsoft harmless from any claims, losses or damages arising from any actions brought by a third party against Microsoft to the extent caused by Your acts or omissions in connection with such distribution. + 7. That the Software comes "as is", with no warranties. None whatsoever. This means no express, implied or statutory warranty, including without limitation, warranties of merchantability or fitness for a particular purpose or any warranty of non-infringement. Also, you must pass this disclaimer on whenever you distribute this Software. + 8. That neither Microsoft, its affiliates, nor its suppliers are liable for any damages, including those types of damages known as indirect, special, consequential, or incidental related to the Software or this License, to the maximum extent the law permits, no matter what legal theory its based on. Also, you must pass this limitation of liability on whenever you distribute the Software. + 9. That if you sue anyone over patents that you think may apply to this Software for a person's use of this Software, your license to this Software ends automatically. + 10. Not to assert patents owned or licensable by You that claim (i) any inventions in any Enhancements or derivative works You develop using the Software or (ii) any inventions You derive from the Software (collectively, Your Patents) against Microsoft, Microsoft affiliates, and Microsoft Licensees (as defined below), excluding OEM/ODM Licensees (as defined below), for infringement of Your Patents on account of the making, use, sale, offer for sale, importation or other disposition or promotion of any version or portion of Windows CE. If You or Your affiliates choose to assert Your Patents against OEM/ODM Licensees on account of the OEM/ODM Licensees making, use, sale, offer for sale, importation or other disposition or promotion of Windows CE, portion thereof, or a redistributed portion thereof, then You and Your affiliates agree to offer licenses to such OEM/ODM Licensees under commercially reasonable and non-discriminatory terms and pricing. + 11. If You assign any of Your Patents or rights to enforce any of Your Patents, You will require that the assignee(s) agree to be bound by this Section. Any such assignment by You not in accordance with this Section will be null and void. + 12. "Microsoft Licensee" means any third party that is directly or indirectly licensed by Microsoft to exercise any legal rights with respect to Windows CE or a portion thereof or a redistributed portion thereof, including authorized distributors of Windows CE, users of Windows CE and end users of any redistributed portions of Windows CE. OEM/ODM Licensee means an original equipment/device manufacturer directly or indirectly licensed by Microsoft to use Windows CE or a portion thereof and to distribute a portion of Windows CE as binaries incorporated in that OEM/ODMs embedded system(s). + 13. That the patent rights Microsoft is licensing only apply to the Software, not to any derivatives you make. + 14. That your rights under this License end automatically if you breach this License in any way. + + If you would like to suggest changes, modifications or improvements to the Software, e-mail us. json: wince-50-shared-source.json - yml: wince-50-shared-source.yml + yaml: wince-50-shared-source.yml html: wince-50-shared-source.html - text: wince-50-shared-source.LICENSE + license: wince-50-shared-source.LICENSE - license_key: windriver-commercial + category: Commercial spdx_license_key: LicenseRef-scancode-windriver-commercial other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + Wind River LICENSING SUPPORT + Product Activation + + Use the Wind River® Product Activation Portal to activate your software and + manage your licenses. + + To use the Product Activation Portal, you will need the License Administrator + Essentials sheet that was shipped with your product. + + See http://www.windriver.com/licensing/ json: windriver-commercial.json - yml: windriver-commercial.yml + yaml: windriver-commercial.yml html: windriver-commercial.html - text: windriver-commercial.LICENSE + license: windriver-commercial.LICENSE - license_key: wingo + category: Permissive spdx_license_key: LicenseRef-scancode-wingo other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + License for 'jt2_.js' (was 'jt_utils.js'), 'jt_DialogBox' and all + related code: http://www.wingo.com/jt_/ + + 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 this copyright notice and link + to this License, list of conditions and the following disclaimer: + + Copyright (c) 2002-2010 Joseph.Oster, wingo.com - All rights reserved. + license: http://www.wingo.com/jt_/jt_license.html + + 2. Products derived from this software may not use the "wingo.com" name + nor may "wingo.com" appear in their names without prior written + permission of Joseph Oster, wingo.com. + + THIS SOFTWARE IS PROVIDED ``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 + Joseph Oster, wingo.com 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. + + ==================================================================== + + Except where specifically noted in the source code, this software consists + solely of contributions made by Joseph Oster, wingo.com json: wingo.json - yml: wingo.yml + yaml: wingo.yml html: wingo.html - text: wingo.LICENSE + license: wingo.LICENSE - license_key: wink + category: Proprietary Free spdx_license_key: LicenseRef-scancode-wink other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + This software is provided 'as-is', without any express or implied warranty. In no event will the author be held liable for any consequences/damages arising from the use of this software. + + This program and the accompanied libraries/plugins/artwork are FREEWARE. You can use it for personal, business, educational or any other need of yours, subject to the following restrictions: + + 1. You may not re-distribute this program without contacting the author and getting his consent. You may not charge any fee or re-distribution fee for it. + + 2. This notice may not be removed or altered from any distribution. + + 3. No form of decompilation/reverse engineering/disassembling parts or whole of the software be done. + + 4. You may not misrepresent the origin of the software/artwork. If you are distributing the package/portions of the package, the files must be clearly indicated that they are part of DebugMode Wink software. json: wink.json - yml: wink.yml + yaml: wink.yml html: wink.html - text: wink.LICENSE + license: wink.LICENSE - license_key: winzip-eula + category: Commercial spdx_license_key: LicenseRef-scancode-winzip-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "PERPETUAL PROVISIONS APPLICABLE TO\nWINZIP\nWINZIP COURIER\nWINZIP SELF EXTRACTOR\n\ + WINZIP MAC EDITION\n\nIF YOU AGREE TO THIS EULA YOU ARE GRANTED A LIMITED, PERSONAL, WORLDWIDE,\n\ + ROYALTY-FREE, NON-ASSIGNABLE, NON-SUBLICENSEABLE, NON-TRANSFERABLE AND NON-\nEXCLUSIVE LICENSE\ + \ TO USE THE SOFTWARE. YOU ARE PERMITTED TO USE ONE (1) COPY OF\nTHE SOFTWARE FOR YOUR (I)\ + \ PRIVATE, NON-COMMERCIAL PURPOSES AS A PRIVATE USER,\nAND/OR (II) COMMERCIAL PURPOSES AS\ + \ A SERVICE PROVIDER IN A COMMERCIAL BUSINESS\n(\"BUSINESS USER\"). THE SOFTWARE IS LICENSED\ + \ PER HOUSEHOLD OR PER SINGLE ADDRESS\n(\"ADDRESS\"). YOU MAY ONLY DOWNLOAD AND INSTALL\ + \ THE SOFTWARE ON ONE (1) COMPUTING\nDEVICE PER ADDRESS. YOU MAY NOT RE-INSTALL THE SOFTWARE\ + \ ON A SECOND COMPUTING\nDEVICE, UNLESS (I) THE ORIGINAL COMPUTING DEVICE FAILS, (II) YOU\ + \ CONTACT\nCUSTOMER SERVICE (HELP@WINZIP.COM) REQUESTING OUR APPROVAL (AND WE PROVIDE YOU\n\ + AUTHORIZATION CODE) TO RE-INSTALL THE SOFTWARE ON A NEW COMPUTING DEVICE, AND\n(III) YOU\ + \ CERTIFY TO WINZIP THAT YOU HAVE UNINSTALLED THE SOFTWARE FROM THE\nFAILED COMPUTING DEVICE.\ + \ PRIVATE AND BUSINESS USERS OF WINZIP, WINZIP COURIER,\nWINZIP SELF EXTRACTOR OR WINZIP\ + \ MAC EDITION THAT HAVE MULTIPLE COMPUTING DEVICES\n(E.G., STAND-ALONE COMPUTER, LAP-TOP,\ + \ TABLET AND MINI/PORTABLE PC), MAY DOWNLOAD\nAND INSTALL THE SOFTWARE ON UP TO THREE (3)\ + \ SYSTEMS PER ADDRESS, HOWEVER THE\nSOFTWARE CAN ONLY BE USED BY YOU ON ONE (1) SYSTEM AT\ + \ A TIME (I.E., THE SOFTWARE\nMAY NOT BE SHARED OR USED CONCURRENTLY ON DIFFERENT COMPUTING\ + \ DEVICES). IF YOU\nINSTALL THE SOFTWARE ON A FORTH COMPUTING DEVICE OR ON A COMPUTING DEVICE\n\ + LOCATED AT A DIFFERENT ADDRESS YOU MUST PURCHASE ADDITIONAL LICENSES FOR SUCH\nADDITIONAL\ + \ COMPUTING DEVICES. IF YOU HAVE PURCHASED MULTIPLE-USER LICENSES FOR\nTHE SOFTWARE, AT\ + \ ANY TIME YOU MAY HAVE AS MANY COPIES OF THE SOFTWARE IN USE UP\nTO THE NUMBER OF MULTIPLE-USER\ + \ LICENSES YOU HAVE PURCHASED.\n\nLICENSE TO USE THE SOFTWARE. The Software is licensed\ + \ to You, not sold to You.\nYou must lawfully acquire the Software from Us or Our authorized\ + \ resellers\notherwise You don't have a right to use the Software. You may only purchase\n\ + and/or download the Software from Our (or Our authorized reseller's) eStore or\nwebsite\ + \ that is located in the country in which You hold legal residency.\nBUSINESS USERS: If\ + \ You are a business, and You purchased the Software from Us or\nfrom one of Our authorized\ + \ resellers, You may install the Software on a hardware\npartition, blade, or terminal server\ + \ (\"Virtualization Environment\") to run, use\nor access the Software by means of Your\ + \ organization's computing devices\ndirectly connected to Your organization's internal network\ + \ or Your\norganization's virtual private network. Use of the Software by Your employees\n\ + (and Your organization's subcontractors contractually authorized to act on Your\nbehalf)\ + \ via such Virtualization Environment is permitted only up to the maximum\nnumber of site\ + \ licenses purchased by Your organization. For the avoidance of\ndoubt, You must acquire\ + \ and dedicate one (1) license for each computing device\nusing, running, or accessing the\ + \ Software from Virtualization Environment and\nfor each computing device on which the Software\ + \ is installed, run, used or\naccessed from. You agree that if the Software requires mandatory\ + \ activation or\nemail validation, You will complete the process providing Us with accurate\n\ + information. Your use of the Software is suspended until You complete the\nactivation and/or\ + \ registration process. The Software may include digital images,\nstock photographs, clip\ + \ art, fonts, sounds or other artistic works (\"Stock\nFiles\"). The responsibilities and\ + \ restrictions relating to the Software apply to\nthe Stock Files. We reserve all rights\ + \ not expressly granted to You in this\nEULA. BUSINESS USERS: If You are a business, You\ + \ agree to maintain records,\nsystems and/or procedures that accurately record of the number\ + \ of copies of the\nSoftware that have been acquired, installed and in use on Your computing\ + \ devices\nand will keep the records for two (2) years from the date Your license to use\n\ + the Software ends. We may conduct an audit (remotely or at Your facility) of\nrecords and\ + \ systems from Your business, to verify that Your installation of the\nSoftware conforms\ + \ with a valid license from Us or Our authorized resellers. We\nwill not conduct more than\ + \ one (1) audit per year. If the audit results find\nthat Your use does not conform to a\ + \ valid license, then You will immediately\nobtain a valid license or true-up Your licenses\ + \ for the Software.\n\n \n\nSUBSCRIPTION PROVISIONS APPLICABLE TO\nWINZIP SYSTEM UTILITIES\ + \ SUITE\nWINZIP REGISTRY OPTIMIZER\nWINZIP DRIVER UPDATER\nWINZIP MALWARE PROTECTOR\nWINZIP\ + \ MAC OPTIMIZER\nWINZIP DISK TOOLS\n\nIF YOU AGREE TO THIS EULA YOU ARE GRANTED A LIMITED-TIME,\ + \ PERSONAL, WORLDWIDE,\nROYALTY-FREE, NON-ASSIGNABLE, NON-SUBLICENSEABLE, NON-TRANSFERABLE\ + \ AND NON-\nEXCLUSIVE SUBSCRIPTION-BASED LICENSE TO USE WINZIP SYSTEM UTILITIES SUITE,\n\ + WINZIP REGISTRY OPTIMIZER, WINZIP DRIVER UPDATER, WINZIP MALWARE PROTECTOR,\nWINZIP MAC\ + \ OPTIMIZER OR WINZIP DISK TOOLS. THE SOFTWARE IS LICENSED TO YOU ON A\nSUBSCRIPTION BASIS\ + \ FOR AN INITIAL ONE (1) YEAR PERIOD (\"INITIAL TERM\") AND WILL\nAUTOMATICALLY RENEW FOR\ + \ ADDITIONAL ONE (1) YEAR PERIODS (\"RENEWAL TERM\")\n(COLLECTIVELY \"TERM\") UNTIL YOU\ + \ TERMINATE YOUR SUBSCRIPTION BY NOTIFYING US, VIA\nEMAIL AS SET FORTH BELOW, OF YOUR INTENT\ + \ TO DISCONTINUE YOUR USE OF THE\nSOFTWARE. YOU ARE PERMITTED TO USE ONE (1) COPY OF THE\ + \ SOFTWARE FOR YOUR (I)\nPRIVATE, NON-COMMERCIAL PURPOSES AS A PRIVATE USER, AND/OR (II)\ + \ COMMERCIAL\nPURPOSES AS A SERVICE PROVIDER IN A COMMERCIAL BUSINESS (\"BUSINESS USER\"\ + ). THE\nSOFTWARE IS LICENSED PER HOUSEHOLD OR PER SINGLE ADDRESS (\"ADDRESS\"). YOU MAY\n\ + ONLY DOWNLOAD AND INSTALL THE SOFTWARE ON ONE (1) COMPUTING DEVICE PER ADDRESS.\nYOU MAY\ + \ NOT RE-INSTALL THE SOFTWARE ON A SECOND COMPUTING DEVICE UNLESS (I) THE\nORIGINAL COMPUTING\ + \ DEVICE FAILS, (II) YOU CONTACT CUSTOMER SERVICE\n(HELP@WINZIP.COM) REQUESTING OUR APPROVAL\ + \ (AND WE PROVIDE YOU AUTHORIZATION\nCODE) TO RE-INSTALL THE SOFTWARE ON A NEW COMPUTING\ + \ DEVICE, AND (III) YOU\nCERTIFY TO WINZIP THAT YOU HAVE UNINSTALLED THE SOFTWARE FROM THE\ + \ FAILED\nCOMPUTING DEVICE. PRIVATE AND BUSINESS USERS OF WINZIP SYSTEM UTILITIES SUITE,\n\ + WINZIP REGISTRY OPTIMIZER, WINZIP DRIVER UPDATER, WINZIP MALWARE PROTECTOR,\nWINZIP MAC\ + \ OPTIMIZER OR WINZIP DISK TOOLS THAT HAVE MULTIPLE COMPUTING DEVICES\n(E.G., STAND-ALONE\ + \ COMPUTER, LAP-TOP, TABLET AND MINI/PORTABLE PC) MAY NOT\nDOWNLOAD AND INSTALL THE SOFTWARE\ + \ ON MULTIPLE COMPUTING DEVICES. YOU MAY\nDOWNLOAD AND INSTALL THE SOFTWARE ON ONLY ONE\ + \ (1) SYSTEM PER ADDRESS (I.E., THE\nSOFTWARE MAY NOT BE SHARED OR USED CONCURRENTLY ON\ + \ DIFFERENT COMPUTING DEVICES).\n\nBY DOWNLOADING AND INSTALLING WINZIP SYSTEM UTILITIES\ + \ SUITE, WINZIP REGISTRY\nOPTIMIZER, WINZIP DRIVER UPDATER, WINZIP MALWARE PROTECTOR, WINZIP\ + \ MAC OPTIMIZER\nOR WINZIP DISK TOOLS, YOU AGREE THAT WINZIP IS AUTHORIZED TO CHARGE YOUR\ + \ CREDIT\nCARD FOR THE ANNUAL SUBSCRIPTION FEE FOR THE SOFTWARE ON A YEARLY BASIS WITHOUT\n\ + ANY FURTHER ACTION ON YOUR PART. IN THE EVENT THAT YOUR CREDIT CARD IS DECLINED\nFOR ANY\ + \ REASON, THE SUBSCRIPTION FEE IS STILL DUE AND OWING TO WINZIP AND YOU\nWILL PROMPTLY PROVIDE\ + \ US WITH ANOTHER CREDIT CARD FOR AUTOMATIC PAYMENT\nPURPOSES. YOUR CONTINUED USE OF THE\ + \ SOFTWARE IS SUBJECT TO AND CONDITIONED UPON\nYOUR PAYMENT OF THE SUBSCRIPTION FEE. YOU\ + \ MUST PROVIDE NOTICE OF INTENT TO\nTERMINATE YOUR SUBSCRIPTION FIVE (5) BUSINESS DAYS PRIOR\ + \ TO THE END OF THE\nINITIAL TERM OR FIVE (5) BUSINESS DAYS PRIOR TO THE END OF EACH RENEWAL\ + \ TERM\nOTHERWISE YOUR SUBSCRIPTION WILL AUTOMATICALLY RENEW FOR ANOTHER TERM. DURING\n\ + EACH RENEWAL TERM, ONCE A PAYMENT IS RECEIVED, THE SUBSCRIPTION FEE IS NON-\nREFUNDABLE\ + \ AND NON-CANCELLABLE. IF YOU DECIDE TO TERMINATE YOUR SUBSCRIPTION OR\nFAIL TO PROVIDE\ + \ A NEW CREDIT CARD AS REQUIRED FOR PAYMENT, THE SOFTWARE CONTAINS\nA LOCKING CODE WHICH\ + \ WILL AUTOMATICALLY LOCK AT THE END OF THE TERM AND THAT\nWILL PROHIBIT YOU FROM USING\ + \ THE SOFTWARE UNTIL A NEW REGISTRATION CODE IS\nRECEIVED BY YOU. YOU WILL RECEIVE A NEW\ + \ REGISTRATION CODE ONLY UPON OUR RECEIPT\nOF YOUR NEW CREDIT CARD AND PAYMENT OF THE FEE\ + \ (IN THE EVENT OF A FAILED CREDIT\nCARD) OR RENEWAL OF THE SUBSCRIPTION (IN THE EVENT YOU\ + \ PREVIOUSLY TERMINATED\nYOUR SUBSCRIPTION). USE OF THE SOFTWARE BEFORE OR BEYOND THE APPLICABLE\n\ + SUBSCRIPTION TERM, OR ANY ATTEMPT TO DEFEAT ANY TIME-CONTROL DISABLING FUNCTION\nIN THE\ + \ SOFTWARE, IS AN UNAUTHORIZED USE AND CONSTITUTES A MATERIAL BREACH OF\nTHIS EULA AND APPLICABLE\ + \ LAW. TO PROVIDE US NOTICE OF YOUR INTENT TO TERMINATE\nYOUR SUBSCRIPTION, CONTACT OUR\ + \ CUSTOMER SUPPORT TEAM AT HELP@WINZIP.COM.\n\nLICENSE TO USE THE SOFTWARE. The Software\ + \ is licensed to You, not sold to You.\nYou must lawfully acquire the Software from Us or\ + \ Our authorized resellers\notherwise You don't have a right to use the Software. You may\ + \ only purchase\nand/or download the Software from Our (or Our authorized reseller's) eStore\ + \ or\nwebsite that is located in the country in which You hold legal residency. You\nagree\ + \ that if the Software requires mandatory activation or email validation,\nYou will complete\ + \ the process providing WinZip with accurate information. Your\nuse of the Software is suspended\ + \ until You complete the activation and/or\nregistration process. The Software may include\ + \ digital images, stock\nphotographs, clip art, fonts, sounds or other artistic works (\"\ + Stock Files\").\nThe responsibilities and restrictions relating to the Software apply to\ + \ the\nStock Files. We reserve all rights not expressly granted to You in this EULA.\nBUSINESS\ + \ USERS: If You are a business, You agree to maintain records, systems\nand/or procedures\ + \ that accurately record of the number of copies of the Software\nthat have been acquired,\ + \ installed and in use on Your computing devices and will\nkeep the records for two (2)\ + \ years from the date Your license to use the\nSoftware ends. We may conduct an audit (remotely\ + \ or at Your facility) of records\nand systems from Your business, to verify that Your installation\ + \ of the Software\nconforms with a valid license from Us or Our authorized resellers. We\ + \ will not\nconduct more than one (1) audit per year. If the audit results find that Your\n\ + use does not conform to a valid license, then You will immediately obtain a\nvalid license\ + \ or true-up Your licenses for the Software.\n\nPROVISIONS APPLICABLE TO BOTH \nSUBSCRIPTION\ + \ AND PERPETUAL LICENSES\n\nYOUR RESPONSIBILITIES WHILE USING THE SOFTWARE. With regard\ + \ to Your Use of the\nSoftware under this EULA, You have certain responsibilities. The Software\ + \ may\ninclude product activation and other technology designed to prevent unauthorized\n\ + use and copying. You may not sell, rent, lease, resell, or loan any version of\nthe Software\ + \ (including an Evaluation Version of the Software). If You purchase\nthe Software as a\ + \ gift to a third person, the third person must accept the terms\nof this EULA before using\ + \ the Software. You may not reverse engineer,\nreengineer, decompile, disassemble, translate,\ + \ reconstruct, transform, or\nextract the Software or any portion of the Software. You may\ + \ not wrap the\nSoftware or any Software executable (E.G., .EXE, .MSI, .ISO or .DMG or similar\n\ + executable now known or later developed) with any third party software add-on or\noffer\ + \ except pursuant to a separate express, written, fully-executed agreement\nwith WinZip.\ + \ While We own Our Software, You own and are responsible for the\ncontent (\"Content\")\ + \ that You create, or have created for You, resulting from the\nuse of Our Software (including\ + \ any add-ons or plug-ins to Our Software that You\ncreate, or have created for You). You\ + \ agree that, in connection with Your use of\nthe Software, You are responsible for the\ + \ direct and/or indirect consequences of\nany of the (i) Content You create and (ii) third\ + \ party photos or images that You\nuse or modify in creating Your Content, especially in\ + \ situations where You share\nYour Content with family, friends, clients and/or third parties\ + \ such as members\nof social networking sites (e.g., Facebook, Flickr, LinkedIn, Twitter,\ + \ etc.) or\nfile sharing or cloud services sites (e.g., Google Drive, Sky Drive, Dropbox,\n\ + box.net, etc.). WinZip can neither monitor nor control what third party social\nnetworking,\ + \ file sharing, or cloud services sites or the members or users of\nsuch sites do with Your\ + \ content You share. You are responsible for independently\nverifying the accuracy and completeness\ + \ of Your Content (e.g., any technical\nillustrations or diagrams for operation guides,\ + \ parts catalogs, schematics,\nwriting diagrams, assembly instructions, maintenance manuals,\ + \ architectural\npresentations or other materials You create and/or modify using Our Software).\n\ + You may not modify or create derivative works based upon the Software. You\nrepresent and\ + \ warrant to Us that You will comply with all applicable laws and\nregulations impacting\ + \ Your use of the Software including data protection and\nprivacy laws. You agree that You\ + \ will not use the Software in a way that is\nunlawful or that violates the rights of a\ + \ third party. If We get sued or a claim\nis brought against Us by a third party due to\ + \ (i) Your actions, (ii) Your\nfailure to act when required, or (iii) Your content, then\ + \ You agree to defend,\nindemnify and hold WinZip harmless. You may receive updates, bug\ + \ fixes, feature\nenhancements or improvements, or other data relating to the Software\n\ + (collectively \"Updates\") downloaded to Your computing device with a notice\ndescribing\ + \ what is included in the Update and the purpose of the Update. You\nwill have to choose\ + \ either to install the Update on Your computing device or\nopt-out and not install the\ + \ Update. If You do not install the Updates the\nSoftware may not perform properly.\n\n\ + OUR INTELLECTUAL PROPERTY RIGHTS. The Software is protected by United States and\nCanadian\ + \ Intellectual Property laws and international intellectual property laws\nand treaty provisions.\ + \ Therefore, You may not distribute the Software without\nOur permission. If You purchase\ + \ or download the Software in China, India,\nIndonesia or Vietnam, You may not copy the\ + \ Software or printed materials\naccompanying the Software for any purpose. If You purchase\ + \ or download the\nSoftware in a country not specifically prohibited under this EULA, You\ + \ may only\nmake one (1) copy of the Software (or You may keep one (1) copy of the Software\n\ + on a single hard drive) for backup or archival purposes. For backup or archival\npurposes\ + \ only, You may either make only one (1) copy of the Software and the\nPrinted Materials\ + \ or print one (1) copy of any user documentation if You\ndownloaded the Software or You\ + \ may keep one (1) copy the Software and printed\nmaterials (or user documentation) on a\ + \ single hard drive. Otherwise, You may not\ncopy the Software or the printed materials\ + \ accompanying the Software (or print\ncopies of any user documentation if You downloaded\ + \ the Software). You agree that\nWinZip, the WinZip logos, and other WinZip trademarks,\ + \ service marks, and\ngraphics are trademarks of WinZip International LLC, a Corel company,\ + \ (some in\nthe United States and/or other countries) or are trademarks of WinZip's partners\n\ + (\"Marks\"). You are not granted a right to use Marks without the owner's\npermission. You\ + \ will not remove, obscure or alter any proprietary notices\naffixed to or contained within\ + \ the Software. You understand and agree that We\nhave the right to stop selling, distributing,\ + \ servicing or updating the Software\n(any part of it), and services or offerings at any\ + \ time.\n\nUSAGE AUDITING, PIRACY AND OUR PRIVACY POLICY. Our audit and collection of any\n\ + of Your data and Your use of the Software is subject to the Corel Corporation\nPrivacy Policy\ + \ (http://www.winzip.com/privacy). We may audit Your Software usage\nfor anti-piracy purposes,\ + \ to verify a valid registration, and identify if new\nUpdates are available for Your computing\ + \ device prior to sending You a notice to\ninstall a new Software Update, and to assess\ + \ Your use of the Software. You\nconsent to the Software sending usage data (e.g., the number\ + \ of instances the\nSoftware is launched, the device IP address, and/or the version of the\n\ + Software), for registration, authentication, use and anti-piracy auditing and\nenforcement\ + \ purposes.\n \nPRE-COMMERCIAL RELEASE OR BETA SOFTWARE. If the Software You have received\ + \ with\nthis EULA is a pre-commercial release or a beta version, then You understand the\n\ + Software (i) is the Confidential Information of WinZip, its licensors and\nsuppliers, and\ + \ (ii) does not represent a final product of WinZip. You have no\nright to (i) modify, enhance,\ + \ adapt, alter, translate, or create derivative\nworks of such Software; (ii) merge or wrap\ + \ the Software with other software;\n(iii) sublicense, lease, rent, loan, sell, export,\ + \ or otherwise transfer or\ndistribute the Software to any third party; (iv) reverse engineer,\ + \ decompile,\ndisassemble, or otherwise attempt to derive the source code for the Software;\ + \ or\n(v) otherwise use or copy the Software. The Software may contain bugs, errors\nand\ + \ other problems that could cause computer system failures and data loss.\nTHEREFORE, ALL\ + \ PRE-RELEASE OR BETA SOFTWARE IS PROVIDED ON AN \"AS-IS\" BASIS AND\nWINZIP DISCLAIMS ANY\ + \ AND ALL WARRANTIES OR LIABILITY TO YOU OF ANY KIND.\n\nEVALUATION SOFTWARE. In the instance\ + \ of a fixed term license such as with a\ntrial version, the license to use the Software\ + \ begins on installation and shall\nbe for the duration identified by Us in Our invoice\ + \ or by Our authorized\nreseller in its invoice. Subject to the terms and conditions of\ + \ this EULA, if\n(i) the Software is identified as a demonstration, evaluation, trial, \"\ + not for\nsale\" (\"NFS\") or \"not for resale\" (\"NFR\") version (\"Evaluation Version\"\ + ) in the\napplicable user documentation, or (ii) You acquired the Software without charge,\n\ + Your use of the Software is subject to the following terms: (a) You may make as\nmany exact\ + \ copies of the Software as You wish solely for evaluation purposes and\nfor no other purpose\ + \ using the tangible physical media (e.g., compact discs);\n(b) You may distribute individual\ + \ exact copies of the Software solely for\nevaluation purposes and for no other purpose\ + \ without charge to You or the\nrecipient. Exact copy means a file that is, for example,\ + \ identical to the WinZip\ndistribution file available at www.winzip.com; (c) You may not\ + \ distribute the\nSoftware with any other product or wrap the Software or any Software executable\n\ + (.EXE, .MSI, .ISO or .DMG or similar executable now known or later developed)\nwith any\ + \ third party software add-on or offer; and (d) If You distribute the\nSoftware You may\ + \ do so by electronic download or email, but not through the use\nof bulk mail, spam or\ + \ unsolicited emails. Except pursuant to a separate express,\nwritten, fully-executed agreement\ + \ with WinZip, You may not use Our Software for\ncompetitive analysis, or commercial, professional,\ + \ or other for-profit purposes.\nYou understand that at the end of the evaluation period,\ + \ You must either stop\nusing the Software or pay for the Software to continue using it.\ + \ If You fail to\npay for it, then Your license terminates. Upon expiration of the evaluation\n\ + period, You will immediately discontinue use of the Evaluation Version and\ndelete and destroy\ + \ all electronic copies of the Evaluation Version including,\nbut not limited to, all user\ + \ documentation that may have been provided as part\nof the evaluation from Your computing\ + \ device and any other computer devices on\nwhich You have installed the Evaluation Version.\ + \ UNAUTHORIZED USE OF THE\nEVALUATION VERSION, USE OF THE EVALUATION VERSION BEFORE OR BEYOND\ + \ THE\nAPPLICABLE FIXED TERM, OR ANY ATTEMPT TO DEFEAT ANY TIME-CONTROL DISABLING\nFUNCTION\ + \ IN THE EVALUATION VERSION IS AN UNAUTHORIZED USE CONSTITUTING A\nMATERIAL BREACH OF THIS\ + \ EULA AND APPLICABLE LAW AND WILL AUTOMATICALLY AND\nIMMEDIATELY TERMINATE YOUR LICENSE\ + \ TO USE THE SOFTWARE.\n\nLIMITED AND RESTRICTED WARRANTY (FOR COUNTRIES OTHER THAN THOSE\ + \ LISTED\nSEPARATELY UNDER \"ADDITIONAL EULA TERMS\"). If You purchased the Software on\ + \ a\ncomputer disc, then WinZip warrants that the media on which Software is\nfurnished\ + \ will be free of defects in materials and workmanship under normal use\nfor a period of\ + \ ninety (90) days from the date You purchased the Software. The\nSoftware when properly\ + \ installed and under normal use will substantially conform\nto the features and functionality\ + \ as set forth in the documentation accompanying\nthe Software, however, the Software may\ + \ contain normal bugs and errors.\nTherefore, the Software is provided on an \"AS IS\" basis\ + \ with the understanding\nthat bug fixes and Updates will be provided from time to time.\ + \ This warranty is\nvalid only for the original purchaser of the Software. IF THE DISC IS\ + \ DEFECTIVE,\nTHEN WINZIP'S ENTIRE LIABILITY AND YOUR EXCLUSIVE REMEDY UNDER THIS WARRANTY\n\ + WILL BE REPLACEMENT OF THE DEFECTIVE COMPUTER DISC IF YOU RETURN THE DEFECTIVE\nDISC TO\ + \ US WITH A COPY OF YOUR RECEIPT. Your right to a replacement of the\nSoftware is void if\ + \ the damage to the disc is a result of accident, abuse or\nmisapplication. Any replacement\ + \ Software will be warranted for the remainder of\nthe original warranty period. YOU ASSUME\ + \ ALL RESPONSIBILITIES FOR CHOOSING,\nINSTALLING, AND USING THE SOFTWARE. TO THE MAXIMUM\ + \ EXTENT PERMITTED BY\nAPPLICABLE LAW, WINZIP DISCLAIMS ALL OTHER WARRANTIES, EITHER EXPRESS\ + \ OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY,\nFITNESS\ + \ FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT WITH RESPECT TO THE\nSOFTWARE AND THE ACCOMPANYING\ + \ WRITTEN MATERIALS. This clause shall not impair\nthe U.S. Government's right to recover\ + \ for fraud or crimes arising out of or\nrelated to this EULA under any federal fraud statute,\ + \ including the False Claims\nAct, 31 U.S.C. §§ 3729-3733.\n\nSOME STATES OR COUNTRIES DO\ + \ NOT ALLOW THE WARRANTY EXCLUSION OR LIMITATIONS; THE\nABOVE LIMITATION MAY NOT APPLY TO\ + \ YOU. In such instances and as long as You\nobtained the Software from WinZip, or a WinZip\ + \ authorized reseller, WinZip may\nremedy substantial defects of the Software at its reasonable\ + \ discretion by (i)\nproviding a patch, Update or replacement of the Software, or (ii) asking\ + \ for\nreturn of the Software and cancelling this EULA. You are entitled to a reduction\n\ + of the purchase price or a rescission of this EULA only if WinZip has repeatedly\nfailed\ + \ to remedy the defect after a reasonable period of time. If You are a\nconsumer, Your claims\ + \ under this clause are time-barred in twenty-four (24)\nmonths; if You are a business,\ + \ Your claims under this clause are time-barred in\ntwelve (12) months. If You alter the\ + \ Software in any way without being\nauthorized by WinZip, WinZip will not remedy defects\ + \ caused by such alteration\nand You are liable for any damages incurred by WinZip due to\ + \ Your unauthorized\nalteration of the Software. IF YOU INSTALL PRE-RELEASE VERSION PRODUCTS\ + \ MARKED\nAS SUCH, YOU DO SO AT YOUR OWN RISK. Pre-release version products are to be used\n\ + only for test purposes in testing environments and must not be used for\nproduction purposes.\ + \ To make a warranty claim You must provide a detailed error\ndescription to WinZip Customer\ + \ Service (help@winzip.com) or, at WinZip's\nrequest, return the Software along with any\ + \ return materials authorization\ninformation provided to You by WinZip to Corel Corporation,\ + \ Attention:\nManufacturing (WinZip), 1600 Carling Avenue, Ottawa, Ontario, K1Z 8R7, Canada.\n\ + For further warranty information, please contact WinZip Customer Service at\nhelp@winzip.com.\n\ + \nNO LIABILITY FOR OPEN SOURCE MATERIALS. THE SOFTWARE MAY CONTAIN \"OPEN SOURCE\"\nMATERIALS\ + \ (E.G., ANY SOFTWARE SUBJECT TO OPEN SOURCE, COPYLEFT, GNU GENERAL\nPUBLIC LICENSE, LIBRARY\ + \ GENERAL PUBLIC LICENSE, LESSER GENERAL PUBLIC LICENSE,\nMOZILLA LICENSE, BERKELEY SOFTWARE\ + \ DISTRIBUTION LICENSE, OPEN SOURCE INITIATIVE\nLICENSE, MIT, APACHE OR PUBLIC DOMAIN LICENSES,\ + \ OR SIMILAR LICENSE). WINZIP\nMAKES NO WARRANTIES, AND SHALL HAVE NO LIABILITY, DIRECT\ + \ OR INDIRECT, WHATSOEVER\nWITH RESPECT TO OPEN SOURCE MATERIALS CONTAINED IN THE SOFTWARE.\n\ + \nINDIRECT AND CONSEQUENTIAL DAMAGES (FOR COUNTRIES OTHER THAN THOSE LISTED\nSEPARATELY\ + \ UNDER \"ADDITIONAL EULA TERMS\"): NO LIABILITY FOR INDIRECT OR\nCONSEQUENTIAL DAMAGES.\ + \ YOU ASSUME THE ENTIRE COST OF ANY DAMAGE RESULTING FROM\nTHE INFORMATION CONTAINED IN\ + \ OR COMPILED BY THE SOFTWARE. TO THE MAXIMUM EXTENT\nPERMITTED BY APPLICABLE LAW, IN NO\ + \ EVENT WILL WINZIP OR ITS SUPPLIERS OR\nLICENSORS BE LIABLE FOR ANY DAMAGES WHATSOEVER\ + \ (INCLUDING, WITHOUT LIMITATION,\nDAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION,\ + \ LOSS OF BUSINESS\nINFORMATION, OR OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OR INABILITY\ + \ TO USE\nTHE SOFTWARE, EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\n\ + DAMAGES. IN NO EVENT WILL WINZIP'S TOTAL LIABILITY TO YOU FOR ALL DAMAGES IN ANY\nONE OR\ + \ MORE CAUSE OF ACTION EXCEED THE AMOUNT PAID BY YOU FOR THE SOFTWARE. THIS\nLIMITATION\ + \ WILL APPLY REGARDLESS OF THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY\nLIMITED REMEDY.\n\ + \nSOME STATES OR COUNTRIES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY\nFOR CONSEQUENTIAL\ + \ OR INCIDENTAL DAMAGES; THE ABOVE LIMITATION MAY NOT APPLY TO\nYOU. IN SUCH INSTANCES AND\ + \ AS LONG AS YOU OBTAINED THE SOFTWARE FROM WINZIP, OR\nA WINZIP AUTHORIZED RESELLER, WINZIP\ + \ MAY BE LIABLE TO YOU (I) WITHOUT LIMITATION\nFOR DAMAGES YOU HAVE INCURRED UNDER OR IN\ + \ CONNECTION WITH THIS EULA ONLY IF THE\nDAMAGE HAS BEEN CAUSED BY THE WILLFUL OR GROSSLY\ + \ NEGLIGENT ACT OF WINZIP; AND\n(II) FOR THOSE TYPICAL DAMAGES THAT WERE REASONABLY FORESEEABLE\ + \ AND WHICH HAVE\nBEEN CAUSED BY ANY OTHER NEGLIGENT BREACH OF AN ESSENTIAL CONTRACTUAL\ + \ DUTY BY\nWINZIP. ANY FURTHER LIABILITY OF WINZIP IS EXCLUDED. THESE AFOREMENTIONED\nLIMITATIONS\ + \ APPLY IRRESPECTIVE OF THEIR LEGAL BASIS, IN PARTICULAR WITH REGARD\nTO ANY PRE-CONTRACTUAL\ + \ OR AUXILIARY CONTRACTUAL CLAIMS. These limitations shall\nnot apply, however, to any mandatory\ + \ liability under the applicable product\nliability laws, nor to any damage which is caused\ + \ due to the breach of an\nexpress warranty to the extent that such express warranty was\ + \ intended to\nprotect consumers against the specific damage incurred, nor to damages due\ + \ to\nloss of life, injury or prejudice to health.\n\nU.S. GOVERNMENT-RESTRICTED RIGHTS.\ + \ With respect to any acquisition of the\nSoftware by or for any unit or agency of the United\ + \ States Government (the\n\"Government\"), the Software shall be classified as \"commercial\ + \ computer\nsoftware\", as that term is defined in the applicable provisions of the Federal\n\ + Acquisition Regulation (the \"FAR\") and supplements thereto, including the\nDepartment\ + \ of Defense (DoD) FAR Supplement (the \"DFARS\"). The Software was\ndeveloped entirely\ + \ at private expense, and no part of the Software was first\nproduced in the performance\ + \ of a Government contract. If the Software is\nsupplied for use by DoD, the Software is\ + \ delivered subject to the terms of this\nEULA and either (i) in accordance with DFARS 227.7202-1(a)\ + \ and 227.7202-3(a); or\n(ii) with restricted rights in accordance with DFARS 252-227-7013\ + \ (c)(1)(ii)(OCT\n1988), as applicable. If the Software is supplied for use by a Federal\ + \ agency\nother than DoD, the Software is restricted computer software delivered subject\n\ + to the terms of this EULA and (i) FAR 12.212(a); (ii) FAR 52.227-19; or (iii)\nFAR 52.227-14\ + \ (ALT III), as applicable. The contractor/manufacturer is Corel\nCorporation, 1600 Carling\ + \ Avenue, Ottawa, Ontario, Canada, K1Z 8R7.\n\nEXPORT RESTRICTIONS. If You are located in\ + \ a country embargoed by the United\nStates, or You are on the United States Treasury Department's\ + \ list of Specially\nDesignated Nationals You may not engage in commercial activities with\ + \ Us or Our\nauthorized resellers. You may not download, distribute, export, re-export,\ + \ or\nredistribute the Software, including any WinZip shareware product (i) into, or\nto\ + \ a national or resident of, any country to which the United States has\nembargoed goods,\ + \ or (ii) to anyone on the United States Treasury Department's\nlist of 'Specially Designated'\ + \ nationals or the United States Commerce\nDepartment's 'Table of Deny Orders'. By downloading\ + \ or using the Software, You\nare representing and warranting that You are not located in,\ + \ under the control\nof, or a national or resident of any such country or on any such list.\ + \ Except\npursuant to a separate express, written, fully-executed agreement with WinZip,\n\ + You may not purchase a license to use the Software for the purpose of exporting\nit to a\ + \ country other than the original country of sale, nor may You retain the\nservices of a\ + \ third party to purchase a license to use the Software if in doing\nso You will require\ + \ such third party to send (via any means, electronic or\notherwise) the Software to You\ + \ in a country other than the original country of\nsale.\n\nGENERAL. If You purchased or\ + \ downloaded the Software in the United States then\nthis EULA is governed by the laws of\ + \ the United States and the State of\nCalifornia, without reference to conflict of laws\ + \ principles. Any dispute\nbetween You and WinZip regarding this EULA will be subject to\ + \ the exclusive\nvenue of the state and federal courts in the State of California. This\ + \ EULA\nspecifically excludes the United Nations Convention on Contracts for the\nInternational\ + \ Sale of Goods and any legislation implementing such 'Convention',\nif otherwise applicable.\ + \ Except as expressly set forth herein to the extent\npermitted by applicable law, this\ + \ EULA shall not prejudice the non-excludable,\nstatutory rights of any party dealing as\ + \ a consumer. If You acquired the\nSoftware in Canada, unless expressly prohibited by local\ + \ law, this EULA is\ngoverned by the laws in force in the Province of Ontario, Canada; and,\ + \ any\ndispute between You and WinZip regarding this EULA will be subject to the\nexclusive\ + \ jurisdiction of the federal and provincial courts sitting in Toronto,\nOntario. If You\ + \ acquired the Software in the European Union, Iceland, Norway, or\nSwitzerland, then local\ + \ law applies. If You acquired the Software in any other\ncountry, then local law may apply.\ + \ This EULA is the entire agreement between You\nand WinZip and supersedes any other communications\ + \ or advertisements with\nrespect to the Software and documentation. The Software, or any\ + \ feature or part\nthereof, may not be available in all languages or in all countries. If\ + \ WinZip\nhas provided You with a translation of the English language version of this\n\ + EULA, You agree that such translation is provided for Your convenience only and\nthat the\ + \ English language version, not the translation, of this EULA will be\nlegally binding on\ + \ You. The English language version of this EULA and not its\ntranslation(s) will govern\ + \ in the event of a conflict between the English\nlanguage version and a translation. The\ + \ original English version of this EULA\ncan be found at http://winzip.com/en/eula.htm.\n\ + \nIf and to the extent any provision of this EULA is held illegal, invalid, or\nunenforceable\ + \ in whole or in part under applicable law, such provision or such\nportion thereof shall\ + \ be ineffective as to the jurisdiction in which it is\nillegal, invalid, or unenforceable\ + \ but only to the extent of its illegality,\ninvalidity, or unenforceability and shall be\ + \ deemed modified to the extent\nnecessary to conform to applicable law so as to give the\ + \ maximum effect to the\nintent of the parties. No term or provision in this EULA will be\ + \ considered\nwaived, and no breach excused, unless such waiver is in writing signed on\ + \ behalf\nof the party against whom the waiver is asserted. No waiver (whether express or\n\ + implied) will constitute consent to, waiver of, or excuse of any other,\ndifferent, or subsequent\ + \ breach. No modifications or amendments to this EULA\nwill be binding upon WinZip unless\ + \ made in writing and duly executed by You and\nan authorized representative of WinZip.\n\ + \nSome Software versions may not be compatible with various computer operating\nsystems\ + \ and WinZip may not release Updates. The Software may not be compatible\nwith computer\ + \ operating systems that You may purchase now or in the future.\n\nYou understand that the\ + \ Software may be incorporated into, and may incorporate\nitself into, software and other\ + \ technology owned and controlled by third\nparties. This EULA remains effective with such\ + \ incorporation. Any and all other\nthird party software or technology that may be distributed\ + \ together with the\nSoftware may be subject to You explicitly accepting a license agreement\ + \ with\nthat third party and Your use of that software constitutes acceptance of such\n\ + terms. WinZip's licensors shall be direct and intended third party beneficiaries\nof this\ + \ EULA.\n\n \n\nADDITIONAL EULA TERMS\n\nENCRYPTION TECHNOLOGY CONTAINED IN WINZIP PRODUCTS:\ + \ YOU AGREE THAT WINZIP CANNOT\nGUARANTEE THAT THE ENCRYPTION TECHNOLOGY CONTAINED IN THE\ + \ SOFTWARE IS COMPLETELY\nSECURE FROM DECODING BY THIRD PARTIES. ACCORDINGLY, WINZIP WILL\ + \ NOT BE\nRESPONSIBLE FOR ANY LOSSES WHATSOEVER RESULTING FROM THIRD PARTY DECODING OF,\ + \ OR\nACCESS TO, YOUR FILES.\n\nSelf-extracting Zip files created by WinZip's 'Self Extractor'\ + \ trial version\nSoftware may contain extractor software (\"Extraction Software\"). You\ + \ may not\nalter or modify the Extraction Software, nor give anyone permission to do so.\n\ + Under no circumstances are You licensed to distribute Extraction Software. If\nYou create\ + \ self-extracting Zip files using an evaluation version of WinZip Self\nExtractor Software\ + \ You may not transmit Your Zip files to a third party.\nHowever, the fully licensed (non-trial\ + \ version of) WinZip Self Extractor may be\nused to create an unlimited number of freely\ + \ distributable, royalty-free, self-\nextracting Zip files subject to the terms of this\ + \ EULA.\n\nADDITIONAL TERMS APPLICABLE TO USERS OF SOFTWARE LOCATED IN GERMANY OR AUSTRIA:\n\ + If You obtained the Software from WinZip or a WinZip authorized reseller in\nGermany or\ + \ Austria and such country is Your legal residence, then the Germany\nand Austrian product\ + \ liability and other consumer protection laws concerning\nremedies for defective goods\ + \ shall apply and govern any inconsistencies between\nsuch laws and the provisions of this\ + \ EULA set forth above.\n\nADDITIONAL TERMS APPLICABLE TO USERS OF HARDWARE OR SOFTWARE\ + \ LOCATED IN THE\nUNITED KINGDOM: If (i) You are acting as a consumer and the United Kingdom\ + \ is\nwhere Your legal residence; (ii) You entered into this EULA in the United\nKingdom;\ + \ and (iii) You have obtained the Software from WinZip or a WinZip\nauthorized reseller\ + \ in the United Kingdom (a \"Consumer\"), then the limitation of\nliability and warranty\ + \ provisions set forth in applicable consumer protection\nand warranty laws of the United\ + \ Kingdom shall apply and govern any\ninconsistencies between such laws and the provisions\ + \ of this EULA set forth\nabove.\n\nADDITIONAL TERMS APPLICABLE TO USERS OF HARDWARE OR\ + \ SOFTWARE LOCATED IN\nAUSTRALIA: LIMITED WARRANTY (AUSTRALIAN CONSUMERS ONLY): Our goods\ + \ come with\nguarantees that cannot be excluded under the Australian Consumer Law. You are\n\ + entitled to a replacement or refund for \"major failure\" and compensation for any\nother\ + \ reasonably foreseeable loss or damage. You are also entitled to have the\ngoods repaired\ + \ or replaced if goods fail to be of acceptable quality and the\nfailure does not amount\ + \ to a major failure. The term \"major failure\" is defined\nin the Australian Consumer\ + \ Law and includes, but is not limited to, where the\ngoods are substantially unfit for\ + \ purpose and cannot easily and within a\nreasonable time be remedied to make them fit for\ + \ such a purpose, or where the\ngoods depart in one or more significant respects, if they\ + \ were supplied by\ndescription – from that description. The warranty provided under this\ + \ Section is\nprovided by Corel Corporation of 1600 Carling Avenue, Ottawa, Ontario, K1Z\ + \ 8R7,\nCanada. We warrant that the media on which Software is furnished will be free of\n\ + defects in materials and workmanship under normal use for a period of ninety\n(90) days\ + \ from the date You purchased the Software. The benefits provided by\nthis express warranty\ + \ are in addition to any other rights and remedies of the\nconsumer under any law in relation\ + \ to the goods or service to which the warranty\nrelates. The Software when properly installed\ + \ and under normal use will\nsubstantially conform to the features and functionality as\ + \ set forth in the\ndocumentation accompanying the Software, however, the Software may contain\n\ + normal bugs and errors. Bug fixes and Updates will be provided from time to\ntime. If the\ + \ disc is defective, then, without limiting any other obligations at\nlaw, WinZip will replace\ + \ the defective computer disc if You return the defective\ndisc to Us with a copy of Your\ + \ receipt. Any replacement Software will be\nwarranted for the original warranty period\ + \ covered by this Section.\n\nEXCLUSIONS (AUSTRALIA ONLY): THE WARRANTY PROVIDED UNDER THIS\ + \ SECTION DOES NOT\nCOVER DEFECTS OR PROBLEMS THAT ARISE DUE TO YOU CAUSING THE SOFTWARE\ + \ TO BECOME\nOF UNACCEPTABLE QUALITY, SUCH AS FAILURE TO TAKE REASONABLE CARE OR DAMAGE\n\ + CAUSED BY ABNORMAL USE. FURTHER, YOU ASSUME ALL RESPONSIBILITIES FOR CHOOSING,\nINSTALLING,\ + \ AND USING THE SOFTWARE. EXCEPT AS SET OUT ABOVE, TO THE MAXIMUM\nEXTENT PERMITTED BY APPLICABLE\ + \ LAW, WINZIP DISCLAIMS ALL OTHER WARRANTIES,\nEITHER EXPRESS OR IMPLIED, INCLUDING BUT\ + \ NOT LIMITED TO NON-INFRINGEMENT WITH\nRESPECT TO THE SOFTWARE AND THE ACCOMPANYING WRITTEN\ + \ MATERIALS. IF YOU ALTER THE\nSOFTWARE IN ANY WAY WITHOUT BEING AUTHORIZED BY WINZIP, WINZIP\ + \ WILL NOT REMEDY\nDEFECTS CAUSED BY SUCH ALTERATION AND YOU ARE LIABLE FOR ANY DAMAGES\ + \ INCURRED BY\nWINZIP DUE TO YOUR UNAUTHORIZED ALTERATION. IF YOU INSTALL PRE-RELEASE VERSION\n\ + PRODUCTS MARKED AS SUCH, YOU DO SO AT YOUR OWN RISK. PRE-RELEASE VERSION\nPRODUCTS ARE TO\ + \ BE USED ONLY FOR TEST PURPOSES IN TESTING ENVIRONMENTS AND MUST\nNOT BE USED FOR PRODUCTION\ + \ PURPOSES. THE SOFTWARE MAY CONTAIN \"OPEN SOURCE\"\nMATERIALS (E.G., ANY SOFTWARE SUBJECT\ + \ TO OPEN SOURCE, COPYLEFT, GNU GENERAL\nPUBLIC LICENSE, LIBRARY GENERAL PUBLIC LICENSE,\ + \ LESSER GENERAL PUBLIC LICENSE,\nMOZILLA LICENSE, BERKELEY SOFTWARE DISTRIBUTION LICENSE,\ + \ OPEN SOURCE INITIATIVE\nLICENSE, MIT, APACHE OR PUBLIC DOMAIN LICENSES, OR SIMILAR LICENSE).\ + \ TO THE\nEXTENT PERMISSIBLE AT LAW WINZIP MAKES NO WARRANTIES, AND SHALL HAVE NO\nLIABILITY,\ + \ DIRECT OR INDIRECT, WHATSOEVER WITH RESPECT TO OPEN SOURCE MATERIALS\nCONTAINED IN THE\ + \ SOFTWARE.\n\nHOW TO CLAIM UNDER THE WARRANTY (AUSTRALIA ONLY): For the warranty to be\n\ + honored, You must contact WinZip's Customer Service centre at help@winzip.com\nand seek\ + \ a Return Merchandise Authorization (\"RMA\"). More detailed RMA\ninstructions together\ + \ with shipping information and an RMA number will then be\nsent to You by email. You will\ + \ be required to provide proof of purchase and bear\nthe costs of returning the Software.\ + \ The Software together with all related\nmedia and manuals must be returned to Corel Corporation,\ + \ Attention:\nManufacturing (WinZip), 1600 Carling Avenue, Ottawa, Ontario, K1Z 8R7, Canada\n\ + and must be uninstalled from Your computer and any storage devices and You must\ndelete\ + \ any backup copies. We will endeavor to process Your claim within ten (10)\nbusiness days\ + \ from the date WinZip receives it. If We accept that the Software\nis defective, a replacement\ + \ disc will be provided to You by mail.\n\nINDIRECT AND CONSEQUENTIAL LOSS (AUSTRALIA ONLY):\ + \ TO THE EXTENT PERMITTED UNDER\nAUSTRALIAN LAW, WINZIP SHALL HAVE NO LIABILITY FOR INDIRECT\ + \ OR CONSEQUENTIAL\nDAMAGES. YOU ASSUME THE ENTIRE COST OF ANY DAMAGE RESULTING FROM THE\ + \ INFORMATION\nCONTAINED IN OR COMPILED BY THE SOFTWARE. TO THE MAXIMUM EXTENT PERMITTED\ + \ BY\nAPPLICABLE LAW, IN NO EVENT WILL WINZIP OR ITS SUPPLIERS OR LICENSORS BE LIABLE\n\ + FOR ANY DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF\nBUSINESS INFORMATION,\ + \ OR OTHER INDIRECT PECUNIARY LOSS) ARISING OUT OF THE USE\nOR INABILITY TO USE THE SOFTWARE,\ + \ EVEN IF SUCH PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\nADDITIONAL\ + \ TERMS APPLICABLE TO USERS OF SOFTWARE CONTAINING SHAREWARE: Certain\nSoftware are shareware\ + \ and as such are acquired without charge and can be used\nfor a limited period of time\ + \ for evaluation purposes and are subject to the\nparticular end user license for such shareware.\n\ + \nADDITIONAL TERMS APPLICABLE TO USERS OF CLIPART, STOCK PHOTO IMAGES, VIDEO\nCONTENT, AUDIO\ + \ CLIPS, FONTS AND SAMPLE CONTENT: Our Software may contain\nclipart, photo images, video\ + \ content, audio clips (collectively referred to as\nthe \"Images or Clips\"), software\ + \ data files that render typeface designs when\nused in conjunction with appropriate hardware\ + \ and software (for example only,\nwithout limitation,.ttf or .otf files) referred to as\ + \ \"Font Software\", and the\ngraphic rendering generated by the Font Software referred\ + \ to as \"Font Output\"\nand sample content such as forms, templates, \"tubes\" or similar\ + \ items\n(collectively referred to as the \"Sample Content\") that are either owned by Us\n\ + or licensed from a third-party. Except as required in the paragraph below, as a\nuser of\ + \ Our Software You are free to use, modify and publish the Images or\nClips, Font Output\ + \ or Sample Content as follows: You may (i) incorporate any\nImages or Clips, Font Output,\ + \ or Sample Content into Your own original work and\npublish, display and distribute Your\ + \ work in any media, provided You include a\ncopyright notice in Your work reflecting on\ + \ the copyright ownership of both You\nand WinZip as follows: \"Copyright (c) 20__ [Your\ + \ name], WinZip Computing, S.L.\nand its licensors. All rights reserved.\"; and (ii) make\ + \ one (1) copy of the\nImages or Clips, Font Software, or Sample Content for backup or archival\n\ + purposes. YOU MAY NOT RESELL, SUBLICENSE OR OTHERWISE MAKE AVAILABLE THE IMAGES\nOR CLIPS,\ + \ OR FONT SOFTWARE FOR USE OR DISTRIBUTION SEPARATELY OR DETACHED FROM A\nPRODUCT OR WEB\ + \ PAGE. For example, the Images or Clips or Font Output may be used\nby You as part of a\ + \ web page design, but not be made available for downloading\nseparately (use of the Font\ + \ Software as a web font, utilizing the CSS3@font-face\nspecification or similar is specifically\ + \ prohibited) or in a format designed or\nintended for permanent storage or re-use by others.\ + \ YOU MAY NOT PROVIDE THE\nIMAGES OR CLIPS OR FONT SOFTWARE TO THIRD PARTIES OR PERMIT THE\ + \ USE OF THE\nIMAGES OR CLIPS OR FONT SOFTWARE OR FONT OUTPUT BY THIRD PARTIES SEPARATELY\ + \ OR\nAS PART OF ANY OTHER PRODUCT, HOWEVER, THIRD PARTIES MAY BE PROVIDED WITH COPIES\n\ + OF THE IMAGES OR CLIPS OR FONT OUTPUT (INCLUDING IN DIGITAL FILES) AS PART OF A\nWORK PRODUCT.\ + \ YOU MAY NOT CREATE SCANDALOUS, OBSCENE, DEFAMATORY OR IMMORAL\nWORKS USING THE IMAGES\ + \ OR CLIPS, FONT SOFTWARE, FONT OUTPUT, OR SAMPLE CONTENT\nNOR USE THE IMAGES OR CLIPS,\ + \ FONT SOFTWARE, FONT OUTPUT, OR SAMPLE CONTENT FOR\nANY OTHER PURPOSE WHICH IS PROHIBITED\ + \ BY LAW. YOU MAY NOT PERMIT THE USE OF THE\nIMAGES OR CLIPS, FONT SOFTWARE, FONT OUTPUT,\ + \ OR SAMPLE CONTENT OR ANY PART\nTHEREOF AS A TRADEMARK OR SERVICE MARK, OR CLAIM ANY PROPRIETARY\ + \ RIGHTS OF ANY\nSORT IN THE IMAGES OR CLIPS, FONT SOFTWARE, FONT OUTPUT, OR SAMPLE CONTENT\ + \ OR\nANY PART THEREOF. YOU MAY NOT USE ANY OF THE IMAGES OR CLIPS WHICH CONTAIN\nIDENTIFIABLE\ + \ INDIVIDUALS OR ENTITIES FOR ANY COMMERCIAL PURPOSE INCLUDING,\nWITHOUT LIMITATION, IN\ + \ A MANNER WHICH SUGGESTS THEIR ASSOCIATION WITH OR\nENDORSEMENT OF ANY PRODUCT OR SERVICE.\ + \ YOU MAY NOT USE THE IMAGES OR CLIPS IN\nELECTRONIC FORMAT, ON-LINE OR IN MULTIMEDIA APPLICATIONS\ + \ UNLESS THE IMAGES OR\nCLIPS ARE INCORPORATED FOR VIEWING PURPOSES ONLY AND NO PERMISSION\ + \ IS GIVEN TO\nDOWNLOAD AND/OR SAVE THE IMAGES OR CLIPS FOR ANY REASON. YOU MAY NOT RENT,\n\ + LEASE, SUBLICENSE OR LEND THE IMAGES OR CLIPS OR FONT SOFTWARE OR FONT OUTPUT,\nOR ANY COPIES\ + \ THEREOF, TO ANOTHER PERSON OR LEGAL ENTITY. YOU MAY NOT MODIFY THE\nFONT SOFTWARE IN ANY\ + \ WAY. YOU MAY NOT USE ANY IMAGES OR CLIPS PRESENTED IN ANY\nSOFTWARE SPLASHSCREENS, WELCOME\ + \ SCREENS, PRODUCT PACKAGING AND/OR MARKETING\nCOLLATERAL. YOU MAY NOT USE ANY IMAGES OR\ + \ CLIPS, FONT SOFTWARE OR FONT OUTPUT OR\nSAMPLE CONTENT EXCEPT AS EXPRESSLY PERMITTED BY\ + \ THIS EULA. You may, however,\ntransfer subject to WinZip's license transfer authorization,\ + \ all Your EULA to\nuse the Images or Clips or Font Software to another person or legal\ + \ entity,\nprovided that (i) You transfer the Software, including the Images or Clips or\n\ + Font Software, and this EULA, including all copies (except copies incorporated\ninto Your\ + \ work product as permitted under this EULA), to such person or entity,\n(ii) You retain\ + \ no copies, including copies stored on a computer or other\nstorage device, and (iii) the\ + \ receiving party agrees to be bound by the terms\nand conditions of this EULA.\n\nOctober\ + \ 2012 (1.0)" json: winzip-eula.json - yml: winzip-eula.yml + yaml: winzip-eula.yml html: winzip-eula.html - text: winzip-eula.LICENSE + license: winzip-eula.LICENSE - license_key: winzip-self-extractor + category: Commercial spdx_license_key: LicenseRef-scancode-winzip-self-extractor other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + License requirements to distribute self-extracting Zip files + + If you are using a registered copy of WinZip Self-Extractor, you do not need any + additional license in order to distribute the self-extracting Zip files you + create. The license requirements for the software in the self-extracting Zip + files you create, though, is your responsibility. + + In regards to usage, the WinZip Self-Extractor Registered License states: + + If you have purchased a single-user license you have the right to install and + use a single copy of WinZip Self-Extractor on one computer or workstation. If + you have purchased a multi-user license and received a valid registration file + or code, you or your organization have the right to install a copy of WinZip + Self-Extractor on multiple computers up to the number of "Licensed Copies" that + you have acquired, as indicated in the documents issued by WinZip Computing when + granting the License. + + Here is the section of the license that specifically addresses distribution of + the self-extracting Zip files you create: + + WinZip Self-Extractor may be used to create an unlimited number of freely + distributable, royalty-free self-extracting Zip files. Each self-extracting Zip + file contains, among other things, a portion of WinZip Self-Extractor, including + copyrighted software, proprietary notices, and identifying information (this + portion is the "Extraction Software"). You may not alter or modify the + Extraction Software, nor give anyone permission to do so. + + If you have additional questions about license requirements for self-extractors, + please email the Service Department. json: winzip-self-extractor.json - yml: winzip-self-extractor.yml + yaml: winzip-self-extractor.yml html: winzip-self-extractor.html - text: winzip-self-extractor.LICENSE + license: winzip-self-extractor.LICENSE - license_key: wol + category: Permissive spdx_license_key: LicenseRef-scancode-wol other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "* The Wide Open License (WOL)\n*\n* Permission to use, copy, modify, distribute and\ + \ sell this software and its\n* documentation for any purpose is hereby granted without\ + \ fee, provided that\n* the above copyright notice and this license appear in all source\ + \ copies. \n* THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT EXPRESS OR IMPLIED WARRANTY OF\n\ + * ANY KIND. See http://www.dspguru.com/wide-open-license for more information." json: wol.json - yml: wol.yml + yaml: wol.yml html: wol.html - text: wol.LICENSE + license: wol.LICENSE +- license_key: woodruff-2002 + category: Free Restricted + spdx_license_key: LicenseRef-scancode-woodruff-2002 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: "The MIT License (MIT) with restrictions\n\nPermission is hereby granted, free of charge,\ + \ to any person obtaining a copy\nof this software and associated documentation files (the\ + \ \"Software\"), to deal\nin the Software without restriction, including without limitation\ + \ the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n\ + copies of the Software, and to permit persons to whom the Software is\nfurnished to do so,\ + \ subject to the following conditions:\n\nThe above copyright notice and this permission\ + \ notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE\ + \ SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING\ + \ BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE\ + \ AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR\ + \ ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\ + \ ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\ + \ IN\nTHE SOFTWARE.\n\nThe following terms additionally apply and override any above terms\ + \ for\napplicable parties:\n\nYou may not use, copy, modify, merge, publish, distribute,\ + \ sublicense,\nand/or sell copies of the Software in a military or law enforcement context,\n\ + defined as follows:\n\n1. A military context is a professional context where the intended\ + \ application\nof the Software is integration or use with or by military software, tools\n\ + (software or hardware), or personnel. This includes contractors and\nsubcontractors as well\ + \ as research affiliates of any military\torganization.\n\n2. A law enforcement context\ + \ is a professional context where the intended\napplication of the Software is integration\ + \ or use with or by law enforcement\nsoftware, tools (software or hardware), or personnel.\ + \ This includes\ncontractors and subcontractors as well as research affiliates of any law\n\ + enforcement organization.\n\nEntities that sell or license to military or law enforcement\ + \ organizations\nmay use the Software under the original terms, but only in contexts that\ + \ do\nnot assist or supplement the sold or licensed product.\n\nStudents and academics who\ + \ are affiliated with research institutions may use\nthe Software under the original terms,\ + \ but only in contexts that do not assist\nor supplement collaboration or affiliation with\ + \ any military or law\nenforcement organization." + json: woodruff-2002.json + yaml: woodruff-2002.yml + html: woodruff-2002.html + license: woodruff-2002.LICENSE - license_key: wordnet + category: Permissive spdx_license_key: LicenseRef-scancode-wordnet other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This software and database is being provided to you, the LICENSEE, by \nPrinceton\ + \ University under the following license. By obtaining, using \nand/or copying this software\ + \ and database, you agree that you have \nread, understood, and will comply with these\ + \ terms and conditions.: \n \nPermission to use, copy, modify and distribute this software\ + \ and \ndatabase and its documentation for any purpose and without fee or \nroyalty is\ + \ hereby granted, provided that you agree to comply with \nthe following copyright notice\ + \ and statements, including the disclaimer, \nand that the same appear on ALL copies of\ + \ the software, database and \ndocumentation, including modifications that you make for\ + \ internal \nuse or for distribution. \n \nWordNet Copyright by Princeton University.\ + \ All rights reserved. \n \nTHIS SOFTWARE AND DATABASE IS PROVIDED \"AS IS\" AND PRINCETON\ + \ \nUNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR \nIMPLIED. BY WAY OF\ + \ EXAMPLE, BUT NOT LIMITATION, PRINCETON \nUNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES\ + \ OF MERCHANT- \nABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE \nOF THE\ + \ LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT \nINFRINGE ANY THIRD PARTY PATENTS,\ + \ COPYRIGHTS, TRADEMARKS OR \nOTHER RIGHTS. \n \nThe name of Princeton University or\ + \ Princeton may not be used in \nadvertising or publicity pertaining to distribution of\ + \ the software \nand/or database. Title to copyright in this software, database and \n\ + any associated documentation shall at all times remain with \nPrinceton University and\ + \ LICENSEE agrees to preserve same." json: wordnet.json - yml: wordnet.yml + yaml: wordnet.yml html: wordnet.html - text: wordnet.LICENSE + license: wordnet.LICENSE - license_key: wrox + category: Permissive spdx_license_key: LicenseRef-scancode-wrox other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Many Wrox readers ask us "Can I use code from Wrox books in my applications?" + Here's our answer: Yes, you may use code from any Wrox book published by Wiley & + Sons, Inc. in your application, software, or service under the following + conditions and exceptions as noted: + + * Wrox Press, the authors, and distributors disclaim all warranties, express or + implied, including without limitation any warranties regarding fitness for a + particular purpose, merchantability and noninfringement. The entire risk as to + the results or performance of the code is assumed by you. In no event shall Wrox + Press, the authors, or distributors be held responsible for any loss, damage, or + other claim caused by using the executable code or other files. + + * If you use Wrox code in your application, you must acknowledge the author, + title, and Wrox in your application, software, or service's documentation and + program code itself as follows: + + * "Portions of this code from Book Title, ISBN: ISBN, copyright John Wiley & + Sons, Inc.: year, by author, published under the Wrox imprint are used by + permission of John Wiley & Sons, Inc All rights reserved. This book and the Wrox + code are available for purchase or download at www.wrox.com" + + * You can find the correct ISBN and copyright year to fill in on the book's + copyright page + + * Your application, software, or service can be commercial or non-commercial, + that does not affect your use of the code or need to acknowledge us + + * Notwithstanding the foregoing, any specific code in a Wrox book that has a + less restrictive license (GNU, Creative Commons, or other examples) or a more + restrictive license (copyright owned by the author or another company other than + Wiley & Sons, Inc.) is subject to the terms of that license or copyright and + should only be used according to those specific terms. You should check the + copyright page or look for a GNU, Creative Commons, or other license printed in + the book to know if other copyright or licenses apply. + + * You may not use Wrox code in any book, magazine article, web site article, + blog post, or other publication without our express permission except as such + use falls under "fair use" + + * Please do not ask us if your use would fall under "fair use." We can't answer + that question for you. + + * You may not redistribute our code by itself or in a collection with other code + apart from your application, software, or service. json: wrox.json - yml: wrox.yml + yaml: wrox.yml html: wrox.html - text: wrox.LICENSE + license: wrox.LICENSE - license_key: wrox-download + category: Source-available spdx_license_key: LicenseRef-scancode-wrox-download other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Source-available + text: | + While we try to make it as open as possible, for commercial reasons we do have to assert a few simple Terms and Conditions. By downloading the code you signify that you agree with these. They are: + + Wrox Press, the authors and distributors cannot be held responsible for any loss, damage or other claim caused by using the executable code or other files. + + You may not redistribute the code to any other person, nor make it available on any Web site, forum newsgroup or other facility without prior permission from Wrox. + + You may, however, use and modify the code in any way you wish, and incorporate it into any of your own projects. + + Wrox cannot provide technical support for the code once it has been modified, or when used in any way other than described in the original book or article. json: wrox-download.json - yml: wrox-download.yml + yaml: wrox-download.yml html: wrox-download.html - text: wrox-download.LICENSE + license: wrox-download.LICENSE - license_key: ws-addressing-spec + category: Permissive spdx_license_key: LicenseRef-scancode-ws-addressing-spec other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "WS Addressing Specification License \nWS/WS-Addressing.xsd\n\nCopyright © 2002-2004\ + \ BEA Systems Inc., International Business Machines\nCorporation, Microsoft Corporation,\ + \ Inc, SAP AG, and Sun Microsystems, Inc.. All\nrights reserved.\n\nPermission to copy,\ + \ display, perform, modify and distribute the WS-Addressing\nSpecification, and to authorize\ + \ others to do the foregoing, in any medium\nwithout fee or royalty is hereby granted for\ + \ the purpose of developing and\nevaluating the WS-Addressing Specification.\n\nBEA, IBM,\ + \ Microsoft, SAP AG, and Sun Microsystems (collectively, the \"Authors\")\neach agree to\ + \ grant a license to third parties, under royalty-free and otherwise\nreasonable, non-discriminatory\ + \ terms and conditions, to their respective\nessential patent claims that they deem necessary\ + \ to implement the WS-Addressing\nSpecification.\n\nDISCLAIMERS:\n\nTHE WS-Addressing Specification\ + \ IS PROVIDED \"AS IS\", AND THE AUTHORS MAKE NO\nREPRESENTATIONS OR WARRANTIES, EXPRESS\ + \ OR IMPLIED, INCLUDING, BUT NOT LIMITED\nTO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR\ + \ A PARTICULAR PURPOSE, NON-\nINFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE WS-Addressing\ + \ Specification IS\nSUITABLE FOR ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS\ + \ WILL NOT\nINFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\n\ + THE AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL\ + \ DAMAGES ARISING OUT OF ANY USE OF THE WS-Addressing Specification\nOR THE PERFORMANCE\ + \ OR IMPLEMENTATION OF THE CONTENTS THEREOF.\n\nYou may remove these disclaimers from your\ + \ modified versions of the WS-\nAddressing Specification provided that you effectively disclaim\ + \ all warranties\nand liabilities on behalf of all copyright holders in the copies of any\ + \ such\nmodified versions you distribute.\n\nThe name and trademarks of the Authors may\ + \ NOT be used in any manner, including\nadvertising or publicity pertaining to the WS-Addressing\ + \ Specification or its\ncontents without specific, written prior permission. Title to copyright\ + \ in the\nWS-Addressing Specification will at all times remain with the Authors.\n\nNo other\ + \ rights are granted by implication, estoppel or otherwise." json: ws-addressing-spec.json - yml: ws-addressing-spec.yml + yaml: ws-addressing-spec.yml html: ws-addressing-spec.html - text: ws-addressing-spec.LICENSE + license: ws-addressing-spec.LICENSE - license_key: ws-policy-specification + category: Permissive spdx_license_key: LicenseRef-scancode-ws-policy-specification other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "WS-Policy Specification\n\nPermission to copy and display the WS-Policy Specification\ + \ (the \"Specification\", which includes WSDL and schema documents), in any medium without\ + \ fee or royalty is hereby granted, provided that you include the following on ALL copies\ + \ of the WS-Policy Specification, that you make:\n\n1.\tA link or URL to the WS-Policy Specification\ + \ at one of the Authors' websites\n2.\tThe copyright notice as shown in the WS-Policy Specification.\n\ + \nBEA Systems, IBM, Microsoft, SAP, Sonic Software, and VeriSign (collectively, the \"Authors\"\ + ) each agree to grant you a license, under royalty-free and otherwise reasonable, non-discriminatory\ + \ terms and conditions, to their respective essential patent claims that they deem necessary\ + \ to implement the WS-Policy Specification.\n\nTHE WS-POLICY SPECIFICATION IS PROVIDED \"\ + AS IS,\" AND THE AUTHORS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING,\ + \ BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT,\ + \ OR TITLE; THAT THE CONTENTS OF THE WS-POLICY SPECIFICATION ARE SUITABLE FOR ANY PURPOSE;\ + \ NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS,\ + \ COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\n\nTHE AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT,\ + \ INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO ANY\ + \ USE OR DISTRIBUTION OF THE WS-POLICY SPECIFICATION.\n\nThe name and trademarks of the\ + \ Authors may NOT be used in any manner, including advertising or publicity pertaining to\ + \ the WS-Policy Specification or its contents without specific, written prior permission.\ + \ Title to copyright in the WS-Policy Specification will at all times remain with the Authors.\n\ + \nNo other rights are granted by implication, estoppel or otherwise." json: ws-policy-specification.json - yml: ws-policy-specification.yml + yaml: ws-policy-specification.yml html: ws-policy-specification.html - text: ws-policy-specification.LICENSE + license: ws-policy-specification.LICENSE - license_key: ws-trust-specification + category: Permissive spdx_license_key: LicenseRef-scancode-ws-trust-specification other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "WS-Trust Specification\n\nPermission to copy and display the WS-Trust Specification\ + \ (the \"Specification\", which \nincludes WSDL and schema documents), in any medium without\ + \ fee or royalty \nis hereby granted, provided that you include the following on ALL copies\ + \ of the \nSpecification, that you make:\n\n1. A link or URL to the Specification at one\ + \ of the Authors' websites\n2. The copyright notice as shown in the Specification.\n\nIBM,\ + \ Microsoft and Actional, BEA, Computer Associates, Layer 7, Netegrity, Oblix, \nOpenNetwork,\ + \ Ping Identity, Reactivity, and Verisign (collectively, the \"Authors\") each \nagree to\ + \ grant you a license, under royalty-free and otherwise reasonable, \nnon-discriminatory\ + \ terms and conditions, to their respective essential patent claims \nthat they deem necessary\ + \ to implement the Specification.\n\nTHE SPECIFICATION IS PROVIDED \"AS IS,\" AND THE AUTHORS\ + \ MAKE \nNO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT \nNOT LIMITED\ + \ TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A \nPARTICULAR PURPOSE, NON-INFRINGEMENT,\ + \ OR TITLE; THAT THE CONTENTS OF \nTHE SPECIFICATION ARE SUITABLE FOR ANY PURPOSE; NOR THAT\ + \ THE \nIMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY \nPATENTS, COPYRIGHTS,\ + \ TRADEMARKS OR OTHER RIGHTS.\n\nTHE AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT,\ + \ SPECIAL, \nINCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO ANY \nUSE\ + \ OR DISTRIBUTION OF THE SPECIFICATION.\n\nThe name and trademarks of the Authors may NOT\ + \ be used in any manner, \nincluding advertising or publicity pertaining to the Specification\ + \ or \nits contents without specific, written prior permission. Title to \ncopyright in\ + \ the Specification will at all times remain with the Authors.\n\nNo other rights are granted\ + \ by implication, estoppel or otherwise." json: ws-trust-specification.json - yml: ws-trust-specification.yml + yaml: ws-trust-specification.yml html: ws-trust-specification.html - text: ws-trust-specification.LICENSE + license: ws-trust-specification.LICENSE - license_key: wsuipa + category: Permissive spdx_license_key: Wsuipa other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This file was added by Clea F. Rees on 2008/11/30 with the permission of Dean + Guenther and pointers to this file were added to all source files. + + Unlimited copying and redistribution of each of the files is permitted as long + as the file is not modified. Modifications, and redistribution of modified + versions, are also permitted, but only if the resulting file is renamed. + + The copyright holder is Washington State University. The original author of the + fonts is Janene Winter. The primary contact (as of 2008) is Dean Guenther. json: wsuipa.json - yml: wsuipa.yml + yaml: wsuipa.yml html: wsuipa.html - text: wsuipa.LICENSE + license: wsuipa.LICENSE - license_key: wtfnmfpl-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-wtfnmfpl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE + Version 1, October 2013 + + Copyright (C) 2013 Ben McGinnes + + 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 BUT IT'S NOT MY FAULT PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. + + 1. Do not hold the author(s), creator(s), developer(s) or + distributor(s) liable for anything that happens or goes wrong + with your use of the work. json: wtfnmfpl-1.0.json - yml: wtfnmfpl-1.0.yml + yaml: wtfnmfpl-1.0.yml html: wtfnmfpl-1.0.html - text: wtfnmfpl-1.0.LICENSE + license: wtfnmfpl-1.0.LICENSE - license_key: wtfpl-1.0 + category: Public Domain spdx_license_key: LicenseRef-scancode-wtfpl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + do What The Fuck you want to Public License + + Version 1.0, March 2000 + Copyright (C) 2000 Banlu Kemiyatorn (]d). + 136 Nives 7 Jangwattana 14 Laksi Bangkok + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Ok, the purpose of this license is simple + and you just + + DO WHAT THE FUCK YOU WANT TO. json: wtfpl-1.0.json - yml: wtfpl-1.0.yml + yaml: wtfpl-1.0.yml html: wtfpl-1.0.html - text: wtfpl-1.0.LICENSE + license: wtfpl-1.0.LICENSE - license_key: wtfpl-2.0 + category: Public Domain spdx_license_key: WTFPL other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar + 14 rue de Plaisance, 75014 Paris, France + 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. json: wtfpl-2.0.json - yml: wtfpl-2.0.yml + yaml: wtfpl-2.0.yml html: wtfpl-2.0.html - text: wtfpl-2.0.LICENSE + license: wtfpl-2.0.LICENSE - license_key: wthpl-1.0 + category: Public Domain spdx_license_key: LicenseRef-scancode-wthpl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Public Domain + text: | + DO WHAT THE HELL YOU WANT TO PUBLIC LICENSE + Version 1.0.0, October 2014 + + DO WHAT THE HELL YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE HELL YOU WANT TO. json: wthpl-1.0.json - yml: wthpl-1.0.yml + yaml: wthpl-1.0.yml html: wthpl-1.0.html - text: wthpl-1.0.LICENSE + license: wthpl-1.0.LICENSE - license_key: wxwidgets + category: Permissive spdx_license_key: LicenseRef-scancode-wxwidgets other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + wxWidgets Licence + + Copyright (C) 1997 Julian Smart, Markus Holzem + + Preamble + + This licence is intended to protect wxWidgets, its developers, and its users, so + that the considerable investment it represents is not abused. + + Unlike the wxWidgets licence, you as a user are not obliged to distribute + wxWidgets source code with your products. However, you are prevented from + selling the code without permission from the authors, or denying others the + rights to use or distribute wxWidgets in the way intended. + + The wxWidgets Licence establishes the copyright for the code and related + material, and it gives you legal permission to copy, distribute and/or modify + the library. It also asserts that no warranty is given by the authors for this + or derived code. + + Finally, the licence specifies that any patent involving wxWidgets, must be + licenced for everyone's free use. + + wxWidgets Licence + + Terms and conditions for copying, distribution and modification + + 1. This Licence Agreement applies to any software library which contains a + notice placed by the copyright holder or other authorized party saying it may be + distributed under the terms of this wxWidgets Licence (also called "this + Licence"). Each licencee 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 Licence; 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. + + 2. 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 Licence + and to the absence of any warranty; and distribute a copy of this Licence 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. + + 3. 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 cause the files + modified to carry prominent notices stating that you changed the files and the + date of any change. With agreement from the authors of wxWidgets, you may charge + for value added to the Library, for example, a commercially supported version, + or a port to a new platform. It is expected that collaboration between such + commercial interests and the free wxWidgets community will yield benefits to + both parties, since wxWidgets represents a substantial investment of time and + effort. It is not in the spirit of this agreement that commercial exploitation + of wxWidgets should in any way detract from the free version. + + 4. You may copy and distribute the Library in object code or derived library + form under the terms of Sections 1 and 2 above provided that you accompany it + with the complete corresponding machine-readable source code. + + 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. You may not copy, modify, sublicence, link with, or distribute the Library + except as expressly provided under this Licence. Any attempt otherwise to copy, + modify, sublicence, link with, or distribute the Library is void, and will + automatically terminate your rights under this Licence. However, parties who + have received copies, or rights, from you under this Licence will not have their + licences terminated so long as such parties remain in full compliance. + + 6. You are not required to accept this Licence, 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 Licence. Therefore, by modifying or distributing the Library (or any + work based on the Library), you indicate your acceptance of this Licence to do + so, and all its terms and conditions for copying, distributing or modifying the + Library or works based on it. + + 7. Each time you redistribute the Library (or any work based on the Library), + the recipient automatically receives a licence 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 to this Licence. + + 8. 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 Licence, they do not excuse you from the conditions of this + Licence. If you cannot distribute so as to satisfy simultaneously your + obligations under this Licence and any other pertinent obligations, then as a + consequence you may not distribute the Library at all. For example, if a patent + licence 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 Licence 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 licence 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 licencee cannot impose that + choice. + + This section is intended to make thoroughly clear what is believed to be a + consequence of the rest of this Licence. + + 9. 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 Licence 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 Licence incorporates the limitation as if written in the body of this + Licence. + + 10. The authors of wxWidgets may publish revised and/or new versions of the + wxWidgets Licence 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 Licence 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 wxWidgets authors. If the Library does + not specify a licence version number, you may choose any version ever published + by the wxWidgets authors. + + 11. If you wish to incorporate parts of the Library into other free programs + whose distribution conditions are incompatible with these, write to the program + author to ask for permission. For software which is copyrighted by the wxWidgets + authors, write to the wxWidgets authors. 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 + + 12. BECAUSE THE LIBRARY IS LICENCED 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. + + 13. 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 + + To apply these terms, attach the following notices to the library. It is safest + to attach them to the start of each source file to most effectively convey the + exclusion of warranty; and each file should have at least the "copyright" line + and a pointer to where the full notice is found. + + + + Copyright (C) + + This library is free software; you can redistribute it and/or + + modify it under the terms of the wxWidgets Licence; either + + version 2 of the Licence, 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 wxWidgets Licence for more details. + + You should have received a copy of the wxWidgets Licence along with this + library; if not, write to julian@wxwidgets.org. + + You should also get your employer (if you work as a programmer) or your school, + if any, to sign a "copyright disclaimer" for the library, if necessary. Here is + a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a + library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + + Ty Coon, President of Vice json: wxwidgets.json - yml: wxwidgets.yml + yaml: wxwidgets.yml html: wxwidgets.html - text: wxwidgets.LICENSE + license: wxwidgets.LICENSE - license_key: wxwindows + category: Copyleft Limited spdx_license_key: wxWindows other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Copyleft Limited + text: " wxWindows Library Licence, Version 3.1\n ======================================\n\ + \n Copyright (C) 1998-2005 Julian Smart, Robert Roebling et al\n\n Everyone is permitted\ + \ to copy and distribute verbatim copies\n of this licence document, but changing it is\ + \ not allowed.\n\n WXWINDOWS LIBRARY LICENCE\n TERMS AND CONDITIONS\ + \ FOR COPYING, DISTRIBUTION AND MODIFICATION\n \n This library is free software; you can\ + \ redistribute it and/or modify it\n under the terms of the GNU Library General Public\ + \ Licence as published by\n the Free Software Foundation; either version 2 of the Licence,\ + \ or (at\n your option) any later version.\n \n This library is distributed in the hope\ + \ that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty\ + \ of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library\n General\ + \ Public Licence for more details.\n\n You should have received a copy of the GNU Library\ + \ General Public Licence\n along with this software, usually in a file named COPYING.LIB.\ + \ If not,\n write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,\n\ + \ Boston, MA 02111-1307 USA.\n\n EXCEPTION NOTICE\n\n 1. As a special exception, the\ + \ copyright holders of this library give\n permission for additional uses of the text contained\ + \ in this release of\n the library as licenced under the wxWindows Library Licence, applying\n\ + \ either version 3.1 of the Licence, or (at your option) any later version of\n the Licence\ + \ as published by the copyright holders of version\n 3.1 of the Licence document.\n\n \ + \ 2. The exception is that you may use, copy, link, modify and distribute\n under your\ + \ own terms, binary object code versions of works based\n on the Library.\n\n 3. If you\ + \ copy code from files distributed under the terms of the GNU\n General Public Licence\ + \ or the GNU Library General Public Licence into a\n copy of this library, as this licence\ + \ permits, the exception does not\n apply to the code that you add in this way. To avoid\ + \ misleading anyone as\n to the status of such modified files, you must delete this exception\n\ + \ notice from such code and/or adjust the licensing conditions notice\n accordingly.\n\ + \n 4. If you write modifications of your own for this library, it is your\n choice whether\ + \ to permit this exception to apply to your modifications. \n If you do not wish that,\ + \ you must delete the exception notice from such\n code and/or adjust the licensing conditions\ + \ notice accordingly." json: wxwindows.json - yml: wxwindows.yml + yaml: wxwindows.yml html: wxwindows.html - text: wxwindows.LICENSE + license: wxwindows.LICENSE - license_key: wxwindows-exception-3.1 + category: Copyleft Limited spdx_license_key: WxWindows-exception-3.1 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + EXCEPTION NOTICE + + 1. As a special exception, the copyright holders of this library give + permission for additional uses of the text contained in this release of + the library as licenced under the wxWindows Library Licence, applying + either version 3.1 of the Licence, or (at your option) any later version of + the Licence as published by the copyright holders of version + 3.1 of the Licence document. + + 2. The exception is that you may use, copy, link, modify and distribute + under your own terms, binary object code versions of works based + on the Library. + + 3. If you copy code from files distributed under the terms of the GNU + General Public Licence or the GNU Library General Public Licence into a + copy of this library, as this licence permits, the exception does not + apply to the code that you add in this way. To avoid misleading anyone as + to the status of such modified files, you must delete this exception + notice from such code and/or adjust the licensing conditions notice + accordingly. + + 4. If you write modifications of your own for this library, it is your + choice whether to permit this exception to apply to your modifications. + If you do not wish that, you must delete the exception notice from such + code and/or adjust the licensing conditions notice accordingly. json: wxwindows-exception-3.1.json - yml: wxwindows-exception-3.1.yml + yaml: wxwindows-exception-3.1.yml html: wxwindows-exception-3.1.html - text: wxwindows-exception-3.1.LICENSE + license: wxwindows-exception-3.1.LICENSE - license_key: wxwindows-r-3.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-wxwindows-r-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "wxWindows Restricted Licence, Version 3\n =======================================\n\ + \n Copyright (C) 1998 Julian Smart, Robert Roebling [, ...]\n\n Everyone is permitted\ + \ to copy and distribute verbatim copies\n of this licence document, but changing it is\ + \ not allowed.\n\n WXWINDOWS RESTRICTED LICENCE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION\ + \ AND MODIFICATION\n \n This library is free software; you can redistribute it and/or\ + \ modify it\n under the terms of the GNU Library General Public Licence as published by\n\ + \ the Free Software Foundation; either version 2 of the Licence, or (at\n your option)\ + \ any later version.\n \n This library is distributed in the hope that it will be useful,\ + \ but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or\ + \ FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library\n General Public Licence for more\ + \ details.\n\n You should have received a copy of the GNU Library General Public Licence\n\ + \ along with this software, usually in a file named COPYING.LIB. If not,\n write to the\ + \ Free Software Foundation, Inc., 59 Temple Place, Suite 330,\n Boston, MA 02111-1307 USA.\n\ + \n EXCEPTION NOTICE\n\n 1. As a special exception, the copyright holders of this library\ + \ give\n permission for additional uses of the text contained in this release of\n the\ + \ library as licenced under the wxWindows Restricted Licence, applying\n either version\ + \ 3 of the Licence, or (at your option) any later version of\n the Licence as published\ + \ by the copyright holders of version\n 3 of the Licence document.\n\n 2. The exception\ + \ is that you may modify your copy or copies of the Library\n or any portion of it, thus\ + \ forming a work based on the Library, without\n any restrictions placed on such modifications,\ + \ and create binary object\n code versions of such works based on the Library, and you\ + \ may use, copy,\n link, modify and distribute such binary object code versions of works\n\ + \ based on the Library as if licenced to you under the wxWindows\n Unrestricted Licence;\ + \ either version 3 or (at your option) any later\n version.\n\n 3. If you copy code from\ + \ files distributed under the terms of the GNU\n General Public Licence or the GNU Library\ + \ General Public Licence into a\n copy of this library, as this licence permits, the exception\ + \ does not\n apply to the code that you add in this way. To avoid misleading anyone as\n\ + \ to the status of such modified files, you must delete this exception\n notice from such\ + \ code and/or adjust the licensing conditions notice\n accordingly.\n\n 4. If you write\ + \ modifications of your own for this library, it is your\n choice whether to permit this\ + \ exception to apply to your modifications. \n If you do not wish that, you must delete\ + \ the exception notice from such\n code and/or adjust the licensing conditions notice accordingly." json: wxwindows-r-3.0.json - yml: wxwindows-r-3.0.yml + yaml: wxwindows-r-3.0.yml html: wxwindows-r-3.0.html - text: wxwindows-r-3.0.LICENSE + license: wxwindows-r-3.0.LICENSE - license_key: wxwindows-u-3.0 + category: Permissive spdx_license_key: LicenseRef-scancode-wxwindows-u-3.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + wxWindows Unrestricted Licence, Version 3 + ========================================= + + Copyright (c) 1997 Julian Smart, Robert Roebling, [...] + + Everyone is permitted to copy and distribute verbatim copies + of this licence document, but changing it is not allowed. + + WXWINDOWS UNRESTRICTED LICENCE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + Permission to use, copy, modify, and distribute this source code text, + this binary library, or this piece of documentation for any purpose is + hereby granted without fee, provided that the above copyright notice, + author statement and this permission notice appear in all copies of this + software and related documentation. + + BECAUSE THIS SOURCE CODE TEXT, THIS BINARY LIBRARY, OR THIS PIECE OF + DOCUMENTATION IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR IT, TO + THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN + WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THIS SOURCE + CODE TEXT, THIS BINARY LIBRARY OR THIS PIECE OF DOCUMENTATION "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 SOURCE CODE TEXT, THE BINARY LIBRARY OR THE PIECE OF DOCUMENTATION + IS WITH YOU. SHOULD THE SOURCE CODE TEXT, THE BINARY LIBRARY OR THE PIECE + OF DOCUMENTATION PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY + SERVICING, REPAIR OR CORRECTION. + + 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 SOURCE CODE TEXT, THE BINARY LIBRARY, OR THE PIECE OF + DOCUMENTATION 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 SOURCE CODE TEXT, THE BINARY LIBRARY OR + THE PIECE OF DOCUMENTATION (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 A PROGRAM BASED ON THE SOURCE CODE TEXT, THE BINARY + LIBRARY OR ON THE PIECE OF DOCUMENTATION TO OPERATE WITH ANY OTHER + PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE + POSSIBILITY OF SUCH DAMAGES. json: wxwindows-u-3.0.json - yml: wxwindows-u-3.0.yml + yaml: wxwindows-u-3.0.yml html: wxwindows-u-3.0.html - text: wxwindows-u-3.0.LICENSE + license: wxwindows-u-3.0.LICENSE - license_key: x11 + category: Permissive spdx_license_key: ICU other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. json: x11.json - yml: x11.yml + yaml: x11.yml html: x11.html - text: x11.LICENSE + license: x11.LICENSE - license_key: x11-acer + category: Permissive spdx_license_key: LicenseRef-scancode-x11-acer other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 + TORTUOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THIS SOFTWARE. json: x11-acer.json - yml: x11-acer.yml + yaml: x11-acer.yml html: x11-acer.html - text: x11-acer.LICENSE + license: x11-acer.LICENSE - license_key: x11-adobe + category: Permissive spdx_license_key: LicenseRef-scancode-x11-adobe other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, distribute, and sublicense this software and + its documentation for any purpose and without fee is hereby granted, provided + that the above copyright notices appear in all copies and that both those + copyright notices and this permission notice appear in supporting documentation + and that the name of Adobe Systems Incorporated not be used in advertising or + publicity pertaining to distribution of the software without specific, written + prior permission. No trademark license to use the Adobe trademarks is hereby + granted. If the Adobe trademark "Display PostScript"(tm) is used to describe + this software, its functionality or for any other purpose, such use shall be + limited to a statement that this software works in conjunction with the Display + PostScript system. Proper trademark attribution to reflect Adobe's ownership of + the trademark shall be given whenever any such reference to the Display + PostScript system is made. + + ADOBE MAKES NO REPRESENTATIONS ABOUT THE SUITABILITY OF THE SOFTWARE FOR ANY + PURPOSE. IT IS PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY. ADOBE + DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON- + INFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL ADOBE BE LIABLE TO YOU OR + ANY OTHER PARTY FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY + DAMAGES WHATSOEVER WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE, STRICT + LIABILITY OR ANY OTHER ACTION ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THIS SOFTWARE. ADOBE WILL NOT PROVIDE ANY TRAINING OR OTHER + SUPPORT FOR THE SOFTWARE. + + Adobe, PostScript, and Display PostScript are trademarks of Adobe Systems + Incorporated which may be registered in certain jurisdictions json: x11-adobe.json - yml: x11-adobe.yml + yaml: x11-adobe.yml html: x11-adobe.html - text: x11-adobe.LICENSE + license: x11-adobe.LICENSE - license_key: x11-adobe-dec + category: Permissive spdx_license_key: LicenseRef-scancode-x11-adobe-dec other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Adobe is a trademark of Adobe Systems Incorporated which may be registered in + certain jurisdictions. Permission to use these trademarks is hereby granted only + in association with the images described in this file. + + Permission to use, copy, modify, distribute and sell this software and its + documentation for any purpose and without fee is hereby granted, provided that + the above copyright notices appear in all copies and that both those copyright + notices and this permission notice appear in supporting documentation, and that + the names of Adobe Systems and Digital Equipment Corporation not be used in + advertising or publicity pertaining to distribution of the software without + specific, written prior permission. Adobe Systems and Digital Equipment + Corporation make no representations about the suitability of this software for + any purpose. It is provided "as is" without express or implied warranty. json: x11-adobe-dec.json - yml: x11-adobe-dec.yml + yaml: x11-adobe-dec.yml html: x11-adobe-dec.html - text: x11-adobe-dec.LICENSE + license: x11-adobe-dec.LICENSE - license_key: x11-bitstream + category: Permissive spdx_license_key: LicenseRef-scancode-x11-bitstream other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + The names "Bitstream" and "Charter" are registered trademarks of + Bitstream, Inc. Permission to use these trademarks is hereby + granted only in association with the images described in this file. + + 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 + Bitstream not be used in advertising or publicity pertaining to + distribution of the software without specific, written prior + permission. Bitstream makes no representations about the + suitability of this software for any purpose. It is provided "as + is" without express or implied warranty. + + BITSTREAM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN + NO EVENT SHALL BITSTREAM 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. + + (c) Copyright 1989-1992, Bitstream Inc., Cambridge, MA. + + You are hereby granted permission under all Bitstream propriety rights to use, + copy, modify, sublicense, sell, and redistribute the 4 Bitstream Charter (r) + Type 1 outline fonts and the 4 Courier Type 1 outline fonts for any purpose and + without restriction; provided, that this notice is left intact on all copies of + such fonts and that Bitstream's trademark is acknowledged as shown below on all + unmodified copies of the 4 Charter Type 1 fonts. + + BITSTREAM CHARTER is a registered trademark of Bitstream Inc. json: x11-bitstream.json - yml: x11-bitstream.yml + yaml: x11-bitstream.yml html: x11-bitstream.html - text: x11-bitstream.LICENSE + license: x11-bitstream.LICENSE - license_key: x11-dec1 + category: Permissive spdx_license_key: LicenseRef-scancode-x11-dec1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 the copyright holders not be used in advertising or publicity + pertaining to distribution of the software without specific, written prior + permission. + + THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT + SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL + DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING + OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. json: x11-dec1.json - yml: x11-dec1.yml + yaml: x11-dec1.yml html: x11-dec1.html - text: x11-dec1.LICENSE + license: x11-dec1.LICENSE - license_key: x11-dec2 + category: Permissive spdx_license_key: LicenseRef-scancode-x11-dec2 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE AND SHOULD + NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT CORPORATION. DIGITAL MAKES + NO REPRESENTATIONS ABOUT THE SUITABILITY OF THIS SOFTWARE FOR ANY PURPOSE. IT IS + SUPPLIED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY. + + IF THE SOFTWARE IS MODIFIED IN A MANNER CREATING DERIVATIVE COPYRIGHT RIGHTS, + APPROPRIATE LEGENDS MAY BE PLACED ON THE DERIVATIVE WORK IN ADDITION TO THAT SET + FORTH ABOVE. + + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose and without fee is hereby granted, provided that + the above copyright notice appear in all copies and that both that copyright + notice and this permission notice appear in supporting documentation, and that + the name of Digital Equipment Corporation not be used in advertising or + publicity pertaining to distribution of the software without specific, written + prior permission. json: x11-dec2.json - yml: x11-dec2.yml + yaml: x11-dec2.yml html: x11-dec2.html - text: x11-dec2.LICENSE + license: x11-dec2.LICENSE - license_key: x11-doc + category: Permissive spdx_license_key: LicenseRef-scancode-x11-doc other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Permission to use, copy, modify, distribute, and sell this\ndocumentation for any purpose\ + \ is hereby granted without fee,\nprovided that the above copyright notice and this permission\n\ + notice appear in all copies. The author makes no \nrepresentations about the suitability\ + \ for any purpose\nof the information in this document. This documentation is\nprovided\ + \ ``as is'' without express or implied warranty." json: x11-doc.json - yml: x11-doc.yml + yaml: x11-doc.yml html: x11-doc.html - text: x11-doc.LICENSE + license: x11-doc.LICENSE - license_key: x11-dsc + category: Permissive spdx_license_key: LicenseRef-scancode-x11-dsc other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This software is copyrighted by DSC Technologies and private individual + contributors. The copyright holder is specifically listed in the header of each + file. The following terms apply to all files associated with the software unless + explicitly disclaimed in individual files by private contributors. + + Copyright 1997 DSC Technologies Corporation + + Permission to use, copy, modify, distribute and license this software and its + documentation for any purpose, and without fee or written agreement with DSC, is + hereby granted, provided that the above copyright notice appears in all copies + and that both the copyright notice and warranty disclaimer below appear in + supporting documentation, and that the names of DSC Technologies Corporation or + DSC Communications Corporation not be used in advertising or publicity + pertaining to the software without specific, written prior permission. + + DSC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS, 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. IN NO EVENT SHALL DSC 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. + + RESTRICTED RIGHTS: Use, duplication or disclosure by the government is subject + to the restrictions as set forth in subparagraph (c) (1) (ii) of the Rights in + Technical Data and Computer Software Clause as DFARS 252.227-7013 and FAR + 52.227-19. json: x11-dsc.json - yml: x11-dsc.yml + yaml: x11-dsc.yml html: x11-dsc.html - text: x11-dsc.LICENSE + license: x11-dsc.LICENSE - license_key: x11-fsf + category: Permissive spdx_license_key: X11-distribute-modifications-variant other_spdx_license_keys: - LicenseRef-scancode-x11-fsf is_exception: no is_deprecated: no - category: Permissive + text: | + 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, distribute with modifications, 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 ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR + THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name(s) of the above copyright + holders shall not be used in advertising or otherwise to promote the + sale, use or other dealings in this Software without prior written + authorization. json: x11-fsf.json - yml: x11-fsf.yml + yaml: x11-fsf.yml html: x11-fsf.html - text: x11-fsf.LICENSE + license: x11-fsf.LICENSE - license_key: x11-hanson + category: Permissive spdx_license_key: LicenseRef-scancode-x11-hanson other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software for any + purpose, subject to the provisions described below, without fee is + hereby granted, provided that this entire notice is included in all + copies of any software that is or includes a copy or modification of + this software and in all copies of the supporting documentation for + such software. + + THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED + WARRANTY. IN PARTICULAR, THE AUTHOR DOES MAKE ANY REPRESENTATION OR + WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR + ITS FITNESS FOR ANY PARTICULAR PURPOSE. json: x11-hanson.json - yml: x11-hanson.yml + yaml: x11-hanson.yml html: x11-hanson.html - text: x11-hanson.LICENSE + license: x11-hanson.LICENSE - license_key: x11-ibm + category: Copyleft spdx_license_key: LicenseRef-scancode-x11-ibm other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + License to use, copy, modify, and distribute this software and its documentation + for any purpose and without fee is hereby granted, provided that licensee + provides a license to IBM, Corp. to use, copy, modify, and distribute derivative + works and their documentation for any purpose and without fee, 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 + IBM not be used in advertising or publicity pertaining to distribution of the + software without specific, written prior permission. + + IBM PROVIDES THIS SOFTWARE "AS IS", WITHOUT ANY WARRANTIES OF ANY KIND, EITHER + EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO ANY IMPLIED WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT OF THIRD + PARTY RIGHTS. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE, + INCLUDING ANY DUTY TO SUPPORT OR MAINTAIN, BELONGS TO THE LICENSEE. SHOULD ANY + PORTION OF THE SOFTWARE PROVE DEFECTIVE, THE LICENSEE (NOT IBM) ASSUMES THE + ENTIRE COST OF ALL SERVICING, REPAIR AND CORRECTION. IN NO EVENT SHALL IBM 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. json: x11-ibm.json - yml: x11-ibm.yml + yaml: x11-ibm.yml html: x11-ibm.html - text: x11-ibm.LICENSE + license: x11-ibm.LICENSE - license_key: x11-keith-packard + category: Permissive spdx_license_key: HPND-sell-variant other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, distribute, and sell this software and its + documentation for any purpose is hereby granted without fee, provided that the + above copyright notice appears in all copies, and that both that the copyright + notice and this permission notice appear in supporting documentation , and that + the name of copyright holder or related entities not be used in advertising + or publicity pertaining to distribution of the software without specific, + written prior permission. + + copyright holder makes no representations about the suitability of this software + for any purpose. It is provided "as is" without express or implied warranty. + + copyright holder DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. + IN NO EVENT SHALL copyright holder 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. json: x11-keith-packard.json - yml: x11-keith-packard.yml + yaml: x11-keith-packard.yml html: x11-keith-packard.html - text: x11-keith-packard.LICENSE + license: x11-keith-packard.LICENSE - license_key: x11-lucent + category: Permissive spdx_license_key: LicenseRef-scancode-x11-lucent other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software for any + purpose without fee is hereby granted, provided that this entire notice + is included in all copies of any software which is or includes a copy + or modification of this software and in all copies of the supporting + documentation for such software. + + THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED + WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY + REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY + OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. json: x11-lucent.json - yml: x11-lucent.yml + yaml: x11-lucent.yml html: x11-lucent.html - text: x11-lucent.LICENSE + license: x11-lucent.LICENSE - license_key: x11-lucent-variant + category: Permissive spdx_license_key: LicenseRef-scancode-x11-lucent-variant other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + * Permission to use, copy, modify, and distribute this software for any + * purpose without fee is hereby granted, provided that this entire notice + * is included in all copies of any software which is or includes a copy + * or modification of this software. + * + * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED + * WARRANTY. IN PARTICULAR, NEITHER THE AUTHORS NOR LUCENT TECHNOLOGIES MAKE ANY + * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY + * OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. json: x11-lucent-variant.json - yml: x11-lucent-variant.yml + yaml: x11-lucent-variant.yml html: x11-lucent-variant.html - text: x11-lucent-variant.LICENSE + license: x11-lucent-variant.LICENSE - license_key: x11-oar + category: Permissive spdx_license_key: LicenseRef-scancode-x11-oar other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software for any + purpose without fee is hereby granted, provided that this entire notice + is included in all copies of any software which is or includes a copy + or modification of this software. + + THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED + WARRANTY. IN PARTICULAR, THE AUTHOR MAKES NO REPRESENTATION + OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS + SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. json: x11-oar.json - yml: x11-oar.yml + yaml: x11-oar.yml html: x11-oar.html - text: x11-oar.LICENSE + license: x11-oar.LICENSE - license_key: x11-opengl + category: Permissive spdx_license_key: LicenseRef-scancode-x11-opengl other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software for any purpose + and without fee is hereby granted, provided that the above copyright notice + appear in all copies and that both the copyright notice and this permission + notice appear in supporting documentation, and that the name of Silicon + Graphics, Inc. not be used in advertising or publicity pertaining to + distribution of the software without specific, written prior permission. + + THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" AND WITHOUT + WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT + LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + IN NO EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY + DIRECT, SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR + ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, LOSS OF PROFIT, LOSS OF + USE, SAVINGS OR REVENUE, OR THE CLAIMS OF THIRD PARTIES, WHETHER OR NOT SILICON + GRAPHICS, INC. HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED + AND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + + US Government Users Restricted Rights + + Use, duplication, or disclosure by the Government is subject to restrictions set + forth in FAR 52.227.19(c)(2) or subparagraph (c)(1)(ii) of the Rights in + Technical Data and Computer Software clause at DFARS 252.227-7013 and/or in + similar or successor clauses in the FAR or the DOD or NASA FAR Supplement. + Unpublished-- rights reserved under the copyright laws of the United States. + Contractor/manufacturer is Silicon Graphics, Inc., 2011 N. Shoreline Blvd., + Mountain View, CA 94039-7311. + + OpenGL(TM) is a trademark of Silicon Graphics, Inc. json: x11-opengl.json - yml: x11-opengl.yml + yaml: x11-opengl.yml html: x11-opengl.html - text: x11-opengl.LICENSE + license: x11-opengl.LICENSE - license_key: x11-opengroup + category: Permissive spdx_license_key: MIT-open-group other_spdx_license_keys: - LicenseRef-scancode-x11-opengroup is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, distribute, and sell this software and + its documentation for any purpose is hereby granted without fee, + provided that the above copyright notice appear in all copies and that + both that copyright notice and this permission notice appear in + supporting documentation. + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR + THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of copyright holders + shall not be used in advertising or otherwise to promote the sale, use + or other dealings in this Software without prior written authorization + from the copyright holders. json: x11-opengroup.json - yml: x11-opengroup.yml + yaml: x11-opengroup.yml html: x11-opengroup.html - text: x11-opengroup.LICENSE + license: x11-opengroup.LICENSE - license_key: x11-quarterdeck + category: Permissive spdx_license_key: LicenseRef-scancode-x11-quarterdeck other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, distribute, and sell this software and software and its + documentation for any purpose is hereby granted without fee, provided that the + above copyright notice appear in all copies and that both that copyright + notice and this permission notice appear in supporting documentation, and that + the name Quarterdeck Office Systems, Inc. not be used in advertising + or publicity pertaining to distribution of this software without specific, + written prior permission. + + THIS SOFTWARE IS PROVIDED `AS-IS'. + + QUARTERDECK OFFICE SYSTEMS, INC., DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + INCLUDING WITHOUT LIMITATION ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT SHALL + QUARTERDECK OFFICE SYSTEMS, INC., + BE LIABLE FOR ANY DAMAGES WHATSOEVER, INCLUDING SPECIAL, INCIDENTAL OR CONSEQUENTIAL + DAMAGES, INCLUDING LOSS OF USE, DATA, OR PROFITS, EVEN IF ADVISED OF THE + POSSIBILITY THEREOF, AND REGARDLESS OF WHETHER IN AN ACTION IN CONTRACT, TORT OR + NEGLIGENCE, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS + SOFTWARE. json: x11-quarterdeck.json - yml: x11-quarterdeck.yml + yaml: x11-quarterdeck.yml html: x11-quarterdeck.html - text: x11-quarterdeck.LICENSE + license: x11-quarterdeck.LICENSE - license_key: x11-r75 + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + 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 (including the next + paragraph) shall be included in all copies or substantial portions of the + Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. json: x11-r75.json - yml: x11-r75.yml + yaml: x11-r75.yml html: x11-r75.html - text: x11-r75.LICENSE + license: x11-r75.LICENSE - license_key: x11-realmode + category: Permissive spdx_license_key: LicenseRef-scancode-x11-realmode other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, distribute, and sell this software and its + documentation for any purpose is hereby granted without fee, provided that the + above copyright notice appear in all copies and that both that copyright notice + and this permission notice appear in supporting documentation, and that the name + of the authors not be used in advertising or publicity pertaining to + distribution of the software without specific, written prior permission. + + The authors makes no representations about the suitability of this software + for any purpose. It is provided "as is" without express or implied warranty. + + THE AUTHORS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL THE AUTHORS + 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 information + + The x86emu library is under a BSD style license, compatible with the XFree86 1.0 + and X licenses used by XFree86. The original x86emu libraries were under the GNU + General Public License. Due to license incompatibilities between the GPL and the + XFree86 1.0 license, the original authors of the code decided to allow a license + change. If you have submitted code to the original x86emu project, and you don't + agree with the license change, please contact us and let you know. Your code + will be removed to comply with your wishes. + + If you have any questions about this, please send email to x86emu@linuxlabs.com + or KendallB@scitechsoft.com for clarification. json: x11-realmode.json - yml: x11-realmode.yml + yaml: x11-realmode.yml html: x11-realmode.html - text: x11-realmode.LICENSE + license: x11-realmode.LICENSE - license_key: x11-sg + category: Permissive spdx_license_key: LicenseRef-scancode-x11-sg other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software for any purpose + and without fee is hereby granted, provided that the above copyright notice + appear in all copies and that both the copyright notice and this permission + notice appear in supporting documentation, and that the name of Silicon + Graphics, Inc. not be used in advertising or publicity pertaining to + distribution of the software without specific, written prior permission. + + THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" AND WITHOUT + WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT + LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + IN NO EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY + DIRECT, SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR + ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, LOSS OF PROFIT, LOSS OF + USE, SAVINGS OR REVENUE, OR THE CLAIMS OF THIRD PARTIES, WHETHER OR NOT SILICON + GRAPHICS, INC. HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED + AND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. json: x11-sg.json - yml: x11-sg.yml + yaml: x11-sg.yml html: x11-sg.html - text: x11-sg.LICENSE + license: x11-sg.LICENSE - license_key: x11-stanford + category: Permissive spdx_license_key: LicenseRef-scancode-x11-stanford other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + We are making the specification and associated documentation + (Software) available for public use and benefit with the expectation + that others will use, modify and enhance the Software and contribute + those enhancements back to the community. However, since we would like + to make the Software available for broadest use, with as few + restrictions as possible permission is hereby granted, free of charge, + to any person obtaining a copy of this Software to deal in the Software + under the copyrights 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. + + The name and trademarks of copyright holder(s) may NOT be used in + advertising or publicity pertaining to the Software or any derivatives + without specific, written prior permission. json: x11-stanford.json - yml: x11-stanford.yml + yaml: x11-stanford.yml html: x11-stanford.html - text: x11-stanford.LICENSE + license: x11-stanford.LICENSE - license_key: x11-tektronix + category: Permissive spdx_license_key: LicenseRef-scancode-x11-tektronix other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + This file is a component of an X Window System-specific implementation of Xcms + based on the TekColor Color Management System. Permission is hereby granted to + use, copy, modify, sell, and otherwise distribute this software and its + documentation for any purpose and without fee, provided that this copyright, + permission, and disclaimer notice is reproduced in all copies of this software + and in supporting documentation. TekColor is a trademark of Tektronix, Inc. + + Tektronix makes no representation about the suitability of this software for any + purpose. It is provided "as is" and with all faults. + + TEKTRONIX DISCLAIMS ALL WARRANTIES APPLICABLE TO THIS SOFTWARE, INCLUDING THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN + NO EVENT SHALL TEKTRONIX 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 THE PERFORMANCE OF THIS SOFTWARE. json: x11-tektronix.json - yml: x11-tektronix.yml + yaml: x11-tektronix.yml html: x11-tektronix.html - text: x11-tektronix.LICENSE + license: x11-tektronix.LICENSE - license_key: x11-tiff + category: Permissive spdx_license_key: libtiff other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Permission to use, copy, modify, distribute, and sell this software and its\ndocumentation\ + \ for any purpose is hereby granted without fee, provided\nthat (i) the above copyright\ + \ notices and this permission notice appear in\nall copies of the software and related documentation,\ + \ and (ii) the names of\nSam Leffler and Silicon Graphics may not be used in any advertising\ + \ or\npublicity relating to the software without the specific, prior written\npermission\ + \ of Sam Leffler and Silicon Graphics.\n\nTHE SOFTWARE IS PROVIDED \"AS-IS\" AND WITHOUT\ + \ WARRANTY OF ANY KIND, \nEXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY\ + \ \nWARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. \n\nIN NO EVENT SHALL\ + \ SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR\nANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL\ + \ DAMAGES OF ANY KIND,\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\n\ + WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF \nLIABILITY, ARISING\ + \ OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE \nOF THIS SOFTWARE." json: x11-tiff.json - yml: x11-tiff.yml + yaml: x11-tiff.yml html: x11-tiff.html - text: x11-tiff.LICENSE + license: x11-tiff.LICENSE - license_key: x11-x11r5 + category: Permissive spdx_license_key: LicenseRef-scancode-x11-x11r5 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 the copyright holders not be used in advertising or publicity + pertaining to distribution of the software without specific, written prior + permission. The copyright holders makes no representations about the suitability + of this software for any purpose. It is provided "as is" without express or + implied warranty. + + THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT + SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL + DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING + OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. json: x11-x11r5.json - yml: x11-x11r5.yml + yaml: x11-x11r5.yml html: x11-x11r5.html - text: x11-x11r5.LICENSE + license: x11-x11r5.LICENSE - license_key: x11-xconsortium + category: Permissive spdx_license_key: X11 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of the X Consortium shall not be + used in advertising or otherwise to promote the sale, use or other dealings in + this Software without prior written authorization from the X Consortium. + + X Window System is a trademark of X Consortium, Inc. json: x11-xconsortium.json - yml: x11-xconsortium.yml + yaml: x11-xconsortium.yml html: x11-xconsortium.html - text: x11-xconsortium.LICENSE + license: x11-xconsortium.LICENSE - license_key: x11-xconsortium-veillard + category: Permissive spdx_license_key: LicenseRef-scancode-x11-xconsortium-veillard other_spdx_license_keys: - LicenseRef-scancode-x11-xconsortium_veillard is_exception: no is_deprecated: no - category: Permissive + text: | + 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 fur- nished 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, FIT- NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE DANIEL VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of Daniel Veillard shall not be used in advertising or otherwise to promote the sale, use or other deal- ings in this Software without prior written authorization from him. json: x11-xconsortium-veillard.json - yml: x11-xconsortium-veillard.yml + yaml: x11-xconsortium-veillard.yml html: x11-xconsortium-veillard.html - text: x11-xconsortium-veillard.LICENSE + license: x11-xconsortium-veillard.LICENSE - license_key: x11-xconsortium_veillard + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + 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 fur- nished 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, FIT-NESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE DANIEL VEILLARD + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of Daniel Veillard shall not be + used in advertising or otherwise to promote the sale, use or other deal- ings in + this Software without prior written authorization from him. json: x11-xconsortium_veillard.json - yml: x11-xconsortium_veillard.yml + yaml: x11-xconsortium_veillard.yml html: x11-xconsortium_veillard.html - text: x11-xconsortium_veillard.LICENSE + license: x11-xconsortium_veillard.LICENSE - license_key: x11r5-authors + category: Permissive spdx_license_key: other_spdx_license_keys: [] is_exception: no is_deprecated: yes - category: Permissive + text: | + Permission to use, copy, modify, and distribute this software 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 names of the authors not + be used in advertising or publicity pertaining to distribution of the software + without specific, written prior permission. + + THE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS + 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. json: x11r5-authors.json - yml: x11r5-authors.yml + yaml: x11r5-authors.yml html: x11r5-authors.html - text: x11r5-authors.LICENSE + license: x11r5-authors.LICENSE - license_key: xceed-community-2021 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-xceed-community-2021 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "XCEED SOFTWARE, INC. \n\nCOMMUNITY LICENSE AGREEMENT (for non-commercial use) \n\n\ + This Community License Agreement (the “Agreement”) is a legal agreement between \nyou (“Licensee”)\ + \ and Xceed Software, Inc. (“Xceed”). Licensee wishes to use the “Xceed \nExtended WPF Toolkit™”\ + \ (the “Software”), an Xceed product, for “Non-Commercial Use”. \nSuch use of the Software\ + \ means that it is not primarily intended for commercial \nadvantages or for monetary compensation\ + \ or any other type of compensation, including \ndonations. Xceed agrees to license its\ + \ products to developers like you as along as all \nterms & conditions set forth herein\ + \ are respected. The Software is provided under a \nlicense; it is not “sold” in any manner.\ + \ By installing, copying or otherwise using the \nSoftware, you confirm your agreement to\ + \ the terms and conditions expressed in this \nAgreement. If you do not agree, you are not\ + \ authorized to use our Software. \n\nGENERAL \n\nSubject to compliance with the conditions\ + \ set out below, Xceed grants to Licensee a \nnon-exclusive and perpetual right (unless/until\ + \ revoked by Xceed at its discretion) to \ninstall and use the Software for designing, building,\ + \ testing and/or \ndeploying/distributing (to less than 10 users or end-users) an application,\ + \ system or \nprogram for Non-Commercial Use only. Would Licensee need to use the Software\ + \ for \nany purpose that is not strictly Non-Commercial Use, or if the Software is to be\ + \ \ndeployed or distributed to more than 10 users/end-users – even in a Non-Commercial \n\ + Use, Licensee must acquire a Commercial License (with a paid subscription). \n\nThe license\ + \ granted under this Agreement is conditional on Licensee complying at all \ntimes with\ + \ the following conditions: \n\n-All of the Agreement’s terms & conditions are strictly\ + \ complied with by the Licensee; \n\n-The Software is used for Non-Commercial Use only;\ + \ \n\n-The Software cannot be resold, licensed, sublicensed or distributed by Licensee in\ + \ any \nmanner other than as specified above; \n\n-Xceed’s name and logo must appear clearly\ + \ in the resulting work with an Xceed \nCopyright notice; the name and notice must be visible,\ + \ not be hidden; \n\n-Licensee is not authorized to “deploy” the Software for/in any commercial\ + \ environment;\n\n-Licensee commits not to create a competitive software product based on\ + \ the Software; \n\n-Licensee is not authorized to sell or license/sub-license/lease the\ + \ resulting work to \nanyone nor charge any amounts of money or accept donations or exchange\ + \ services for \nthe said resulting work. \n\nSUPPORT \n\nSupport is not included in Community\ + \ Licenses. The Software is provided on an “as is” \nbasis only. Licensee can send requests\ + \ to Xceed’s technical support team only if a \ncommercial license has been obtained. Bugs\ + \ may be corrected at Xceed’s discretion. \n\nWARRANTY \n\nXceed clearly states that this\ + \ Community License includes no warranty of any type. \nXceed products are provided on an\ + \ “as is” basis. In no case shall Xceed be responsible or \nliable for any direct or indirect,\ + \ or consequential damages whatsoever (including, \nwithout limitation, any damages for\ + \ loss of revenues, of business profits, business \ninterruption, or loss of business information,\ + \ or any other type of loss or damages) \narising out of the use of the Software even if\ + \ Xceed may have been advised of such \npotential damages or loss. \n\nOTHER \n\nXceed does\ + \ not allow Community Licensees to publish results from benchmarks or \nperformance comparison\ + \ tests (with other products) without advance permission by \nXceed. Licensee is not authorized\ + \ to use Xceed’s name, tradenames and trademarks \nwithout Xceed’s written permission (other\ + \ than the Copyright notice stated above in the \n“General” section). \n\nGOVERNING LAW\ + \ \n\nThis Agreement shall be governed by the laws of the Province of Quebec (Canada). Any\ + \ \nclaim, dispute or problem arising out of this Agreement shall be deemed non-receivable\ + \ \nor may be settled or disposed of at Xceed’s discretion. Xceed reserves the right to\ + \ settle \nany action before an arbitration board in Quebec as per generally accepted, \n\ + international rules of arbitration prevailing in Quebec. \n\nXceed reserves the right to\ + \ modify this Agreement at all times without notice. \n\n© Copyright: Xceed Software, Inc.\ + \ - 2021. All rights reserved." json: xceed-community-2021.json - yml: xceed-community-2021.yml + yaml: xceed-community-2021.yml html: xceed-community-2021.html - text: xceed-community-2021.LICENSE + license: xceed-community-2021.LICENSE - license_key: xenomai-gpl-exception + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-xenomai-gpl-exception other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + As a special exception to the following license, the Xenomai + project gives permission for additional uses of the header files + contained in this directory. + + The exception is that, if you include these header files unmodified to + produce application programs executing in user-space that use + Xenomai services by normal Xenomai system calls, this does not + by itself cause the resulting executable to be covered by the GNU + General Public License. This is merely considered normal use of the + Xenomai system, and does not fall under the heading of "derived + work". + + This exception does not however invalidate any other reasons why the + executable file might be covered by the GNU General Public License. In + any case, this exception never applies when the application code is + built as a static or dynamically loadable portion of the Linux kernel. + + This exception applies only to the code released by the Xenomai + project under the name Xenomai and bearing this exception notice. + If you copy code from other sources into a copy of Xenomai, the + exception does not apply to the code that you add in this way. json: xenomai-gpl-exception.json - yml: xenomai-gpl-exception.yml + yaml: xenomai-gpl-exception.yml html: xenomai-gpl-exception.html - text: xenomai-gpl-exception.LICENSE + license: xenomai-gpl-exception.LICENSE - license_key: xfree86-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-xfree86-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 XFREE86 + PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of the XFree86 Project shall not be + used in advertising or otherwise to promote the sale, use or other dealings in + this Software without prior written authorization from the XFree86 Project. json: xfree86-1.0.json - yml: xfree86-1.0.yml + yaml: xfree86-1.0.yml html: xfree86-1.0.html - text: xfree86-1.0.LICENSE + license: xfree86-1.0.LICENSE - license_key: xfree86-1.1 + category: Permissive spdx_license_key: XFree86-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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: + + 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, and in the same place and form + as other copyright, license and disclaimer information. + + 3. The end-user documentation included with the redistribution, if any, must + include the following acknowledgment: "This product includes software developed + by The XFree86 Project, Inc (http://www.xfree86.org/) and its contributors", in + the same place and form as other third-party acknowledgments. Alternately, this + acknowledgment may appear in the software itself, in the same form and location + as other such third-party acknowledgments. + + 4. Except as contained in this notice, the name of The XFree86 Project, Inc + shall not be used in advertising or otherwise to promote the sale, use or other + dealings in this Software without prior written authorization from The XFree86 + Project, Inc. + + THIS SOFTWARE IS PROVIDED ``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 XFREE86 + PROJECT, INC 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. json: xfree86-1.1.json - yml: xfree86-1.1.yml + yaml: xfree86-1.1.yml html: xfree86-1.1.html - text: xfree86-1.1.LICENSE + license: xfree86-1.1.LICENSE - license_key: xilinx-2016 + category: Free Restricted spdx_license_key: LicenseRef-scancode-xilinx-2016 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Free Restricted + text: | + 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. + + Use of the Software is limited solely to applications: (a) running on a Xilinx device, or (b) that interact with a Xilinx device through a bus or interconnect. + + 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 XILINX BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of the Xilinx shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from Xilinx. json: xilinx-2016.json - yml: xilinx-2016.yml + yaml: xilinx-2016.yml html: xilinx-2016.html - text: xilinx-2016.LICENSE + license: xilinx-2016.LICENSE - license_key: xinetd + category: Permissive spdx_license_key: xinetd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + xinetd License + + ORIGINAL LICENSE: + This software is + + (c) Copyright 1992 by Panagiotis Tsirigotis + + The author (Panagiotis Tsirigotis) grants permission to use, copy, and + distribute this software and its documentation for any purpose and without fee, + provided that the above copyright notice extant in files in this distribution is + not removed from files included in any redistribution and that this copyright + notice is also included in any redistribution. + + Modifications to this software may be distributed, either by distributing the + modified software or by distributing patches to the original software, under the + following additional terms: + + 1. The version number will be modified as follows: + + a. The first 3 components of the version number (i.e ..) + will remain unchanged. + + b. A new component will be appended to the version number to indicate the + modification level. The form of this component is up to the author of the + modifications. + + 2. The author of the modifications will include his/her name by appending it + along with the new version number to this file and will be responsible for any + wrong behavior of the modified software. + + The author makes no representations about the suitability of this software for + any purpose. It is provided "as is" without any express or implied warranty. + + Modifications: Version: 2.1.8.7-current Copyright 1998-2001 by Rob Braun + + Sensor Addition Version: 2.1.8.9pre14a Copyright 2001 by Steve Grubb + + This is an exerpt from an email I recieved from the original author, allowing + xinetd as maintained by me, to use the higher version numbers: + + I appreciate your maintaining the version string guidelines as specified in the + copyright. But I did not mean them to last as long as they did. + + So, if you want, you may use any 2.N.* (N >= 3) version string for future xinetd + versions that you release. Note that I am excluding the 2.2.* line; using that + would only create confusion. Naming the next release 2.3.0 would put to rest the + confusion about 2.2.1 and 2.1.8.*. json: xinetd.json - yml: xinetd.yml + yaml: xinetd.yml html: xinetd.html - text: xinetd.LICENSE + license: xinetd.LICENSE - license_key: xming + category: Commercial spdx_license_key: LicenseRef-scancode-xming other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: | + Xming Terms and Conditions + + 1. Component licenses + + Xming is a derivative work with many Open Source component licenses and exceptions. [WWW]X11 style licenses apply to libX11 and X.Org xserver source code (two of the largest components), and X.Org client applications. Xming does not link to the Cygwin™ API library or use Cygwin code. See Appendix A for license detail of components sourced external to the [WWW]X.Org Foundation. + + Note: The U.S. spelling for the noun licence is used throughout this website as most licenses referenced are of U.S. origin. + + 2. Applicability + + This agreement is mandatory for Project Xming releases and components downloaded from this website, but not Public Domain releases from [WWW]SourceForge Project Xming. + + 3. Distribution + + Please distribute freely Public Domain releases from SourceForge. + + Redistributing any part (or whole) of the Xming website, documentation, images, executables or installers, by the internet, other projects/products or via media such as CD's, without asking permission, attributing 'Colin Harrison' and providing links to StraightRunning.com/XmingNotes/ and [WWW]SourceForge Project Xming will be regarded as a breach of copyright. + + 4. Clarifications + + Xming installers and components are Public Domain if put on [WWW]SourceForge, by me. You can do what you like with Public Domain releases including freely distributing them; they still retain all original authors' licenses appropriately, but I have relinquished my rights over them. However; everything downloaded from this website (for Project Xming) has this mandatory agreement. + + Some Xming components contain cryptographic items and as such are illegal in countries where encryption is outlawed. The encryption methods and algorithms used are freely available in the Public Domain and therefore not subject to export controls in Europe. If you are a U.S. citizen exporting Project Xming code: you are solely responsible for being compliant with any applicable U.S. Export Administration Regulations. + + Commercial and Public Sector users, who want to use Xming Website Releases (fully or partially) in connection with their work must have purchased a licence (i.e. not just made a donation). Here is the Xming License Order Form (note: Xming installation on a shared computer can be counted as just one 'User' and a Site License allows unlimited numbers of 'Users'). Academic or research institutions must obtain an Academic Site License in order to use Xming Website Releases. Installation is only allowed on equipment owned by the person, organisation or site named on their license document. Licenses are for the lifetime of the product and come with access to one year of updates (i.e. this access has a small annual renewal fee). + + Xming licenses are only available directly and no reselling or transfer is permitted or possible. Xming software is licensed not sold. You may not publish Project Xming software for others to copy; or distribute, rent, lease or lend any part of it without written permission. + + Private individuals, who want to use Xming Website Releases as sole user at home, will be given access to them for one year after making a small Donation to help fund the replacement equipment needed to further Xming development (i.e. by renewable subscription). This donation access can also be used to trial Xming, prior to purchase of a full license, but please ask for permission before doing this. + + All customer information and emails are treated as confidential. No customer specific data will be disclosed on StraightRunning.com or by Colin Harrison to any third-party without obtaining consent. No Project Xming software is used to control usage or collect and return data to me or any third-party. + + I Colin Harrison, in my sole discretion, have the right to suspend or terminate your access and use of StraightRunning.com, for any reason at any time. + + Xming comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law i.e. all Project Xming components are provided "as is" with no implied fitness for any purpose. I accept NO LIABILITY for any loss or damage arising out of use of Xming or any Project Xming components i.e. use at your own risk. + + Genuine Xming dlls and binaries always have a project [WWW]version-information resource. Beware of Xming imitations and untraceable installers/uninstallers (please ask me to confirm VERSIONINFO and MD5 signatures of any suspicious file). Note: all Project Xming dlls and binaries are made 'fresh' and consistent from strictly controlled source code (using a cross-compiler toolchain also built, by me, from canonical sources); none are supplied from third-party builds. + + I can be contacted by email at colinxmingmyzencouk or colinharrisonvirginnet (the latter email address will die when TalkTalk switch off Virgin Media addresses ending in virginnet :)). These addresses are also shared by my PayPal account. + + 5. Appendices + + Component licenses in detail + + This appendix details Xming's Open Source code licenses for components sourced external to the [WWW]X.Org Foundation. These licenses allow Project Xming to be as unconstrained as possible... Xming source code can be used proprietary and closed, and at the same time, all component source licenses are GPL compatible (with the caveat, below, for FreeType and noting that Htmlhelp.lib(s) are optional closed source static libraries from Microsoft). + + No source code is GPL licensed in any release, other than for run.exe, and any GPL COPYING file or file marking (e.g. in Xming 6.9.0.31), can be assumed to be an error and deleted/ignored. Put simply: Xming is not licensed under the GPL and non-copyleft; but the Run utility is (N.B. run.exe, and its source, are now separate from Project Xming). + + Xming dynamically links to one LGPL library. Also two FSF exceptions are applicable. Details of source code, modifications and licenses; plus both FSF exceptions... + + winlocalename.c is adapted from file localename.c (an LGPLv2.1 file in [WWW]gettext-0.17/gettext-runtime/intl/). + + [WWW]DejaVue fonts are supplied unmodified under this license. + + FreeType is supplied modified from the canonical [WWW]FreeType2 source under this BSD-style license (which has a credit clause). Note: builders of FreeType can [WWW]choose to use GPLv2 instead. + + [WWW]Mesa 11.3.0-devel is supplied modified from the canonical [WWW]freedesktop.org source under this Mesa license. + + Extension headers and specifications from the canonical [WWW]OpenGL Registry are used under SGI Free Software License B. + + The [WWW]Pthreads-Win32 dll, built from modified source, is dynamically-linked from Xming and supplied compliant with LGPLv2.1. + + [WWW]PuTTY is used under its permissive MIT license. + + Xmon is supplied modified from this source code under this license. + + [WWW]zlib is supplied modified from this source code under this license. + + [WWW]Inno Setup is used under this license to create the Xming installers. + + Htmlhelp.lib static libraries, from Microsoft's x86 and x64 Distributable Code in the [WWW]Windows Software Development Kit (SDK) for Windows 8, are linked to XLaunch and portablePuTTY executables under this license. + + [WWW]MinGW-w64 is used under this runtime license to create Project Xming executables and libraries. + + Header files and runtime libraries from the [WWW]GNU Complier Collection are included in compiled code under the GCC runtime library exception. + + Output from the [WWW]GNU Bison utility, which includes the skeleton code for the parser's implementation, is compiled into some Project Xming components. This is licensed under the Bison special exception. json: xming.json - yml: xming.yml + yaml: xming.yml html: xming.html - text: xming.LICENSE + license: xming.LICENSE - license_key: xmldb-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-xmldb-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "The XML:DB Initiative Software License, Version 1.0 \n \n Copyright (c) 2000-2003\ + \ The XML:DB Initiative. All rights reserved. \n \n Redistribution and use in source and\ + \ binary forms, with or without \n modification, are permitted provided that the following\ + \ conditions \n are met: \n \n 1. Redistributions of source code must retain the above\ + \ copyright \n notice, this list of conditions and the following disclaimer. \n \n \ + \ 2. Redistributions in binary form must reproduce the above copyright \n notice, this\ + \ list of conditions and the following disclaimer in \n the documentation and/or other\ + \ materials provided with the \n distribution. \n \n 3. The end-user documentation\ + \ included with the redistribution, \n if any, must include the following acknowledgment:\ + \ \n \"This product includes software developed by the \n XML:DB Initiative\ + \ (http://www.xmldb.org/).\" \n Alternately, this acknowledgment may appear in the software\ + \ itself, \n if and wherever such third-party acknowledgments normally appear. \n \n\ + \ 4. The name \"XML:DB Initiative\" must not be used to endorse or\n promote products\ + \ derived from this software without prior written\n permission. For written permission,\ + \ please contact info@xmldb.org. \n \n 5. Products derived from this software may not be\ + \ called \"XML:DB\", \n nor may \"XML:DB\" appear in their name, without prior written\ + \ \n permission of the XML:DB Initiative. \n \n THIS SOFTWARE IS PROVIDED ``AS IS''\ + \ AND ANY EXPRESSED OR IMPLIED \n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\ + \ WARRANTIES \n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE \n DISCLAIMED.\ + \ IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR \n ITS CONTRIBUTORS BE LIABLE FOR\ + \ ANY DIRECT, INDIRECT, INCIDENTAL, \n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\ + \ BUT NOT \n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF \n USE,\ + \ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND \n ON ANY THEORY OF LIABILITY,\ + \ WHETHER IN CONTRACT, STRICT LIABILITY, \n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\ + \ ARISING IN ANY WAY OUT \n OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY\ + \ OF \n SUCH DAMAGE.\n ====================================================================\ + \ \n \n This software consists of voluntary contributions made by many \n individuals\ + \ on behalf of the XML:DB Initiative. For more information\n on the XML:DB Initiative,\ + \ please see ." json: xmldb-1.0.json - yml: xmldb-1.0.yml + yaml: xmldb-1.0.yml html: xmldb-1.0.html - text: xmldb-1.0.LICENSE + license: xmldb-1.0.LICENSE - license_key: xnet + category: Permissive spdx_license_key: Xnet other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + + This agreement shall be governed in all respects by the laws of the State of + California and by the laws of the United States of America. json: xnet.json - yml: xnet.yml + yaml: xnet.yml html: xnet.html - text: xnet.LICENSE + license: xnet.LICENSE - license_key: xskat + category: Permissive spdx_license_key: XSkat other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This program is free software; you can redistribute it freely.\nUse it at your own\ + \ risk; there is NO WARRANTY.\n\nRedistribution of modified versions is permitted provided\ + \ that the following\nconditions are met:\n\n1. All copyright & permission notices are preserved.\n\ + \n2.a) Only changes required for packaging or porting are made. \nor\n2.b) It is clearly\ + \ stated who last changed the program. The program is renamed\nor the version number is\ + \ of the form x.y.z, where x.y is the version of the\noriginal program and z is an arbitrary\ + \ suffix." json: xskat.json - yml: xskat.yml + yaml: xskat.yml html: xskat.html - text: xskat.LICENSE + license: xskat.LICENSE - license_key: xxd + category: Permissive spdx_license_key: LicenseRef-scancode-xxd other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Distribute freely and credit me, + make money and share with me, + lose money and don't ask me. json: xxd.json - yml: xxd.yml + yaml: xxd.yml html: xxd.html - text: xxd.LICENSE + license: xxd.LICENSE - license_key: yahoo-browserplus-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-yahoo-browserplus-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "BrowserPlus End User License\n\n Introduction\n\n Yahoo provides you with BrowserPlus,\ + \ a software program which extends the functionality of your web browser, and facilitates\ + \ the installation of additional software packages (plug-ins) to your web browser which\ + \ various websites and services may request.\n\n The BrowserPlus software (\"Software\"\ + ) consists of the following software, documentation, files and materials:\n\n The\ + \ BrowserPlus core software application (\"Core\") that you receive through this installer;\n\ + \n \"BrowserPlus Plug-ins\" or \"corelets\" which are any additional distinct software\ + \ packages developed by Yahoo or third parties which plug into the Core, thereby extending\ + \ the functionality of your web browser, AND\n\n Any subsequent updates, versions,\ + \ or substitutes of BrowserPlus or BrowserPlus Plug-ins (\"Updates\") which you install.\n\ + \n Yahoo licenses the Software to you subject to this agreement between you and Yahoo\ + \ (the \"License\"). The Software may also be bundled with third party components, and may\ + \ operate with plug-ins created by third party developers (collectively, \"Third Party Software\"\ + ). This License only applies to your use of the Software. Your use of Third Party Software\ + \ is subject to the terms and conditions of the authors and owners of such Third Party Software.\n\ + \n By installing and using the Software, you accept all terms and conditions of this\ + \ License. Yahoo can update and change this License by posting a new version at https://info.yahoo.com/legal/us/yahoo/browserplus/browserplus-2122.html\ + \ without notice to you. You understand and acknowledge that your continued use of the Software,\ + \ and the continued use by anyone to whom you have rightfully distributed this Software\ + \ pursuant to this License, constitutes your agreement to and acceptance of all such changes\ + \ and updates and that absent such effective consent, use of the Software is not authorized.\n\ + \n You may use this Software to access various Yahoo services. You understand and acknowledge\ + \ that your use of such Yahoo services is subject to the current version of the Yahoo Terms\ + \ of Service (the \"TOS\"), located at https://info.yahoo.com/legal/us/yahoo/utos/utos-173.html,\ + \ and any additional terms of service that may apply.\n\n Scope of License\n\n This\ + \ Software is licensed to you on a worldwide (except as limited below), non-exclusive, non-sublicensable\ + \ basis on the terms and conditions set forth in the License. This License covers all copies\ + \ of the Software made by or for you. All rights not expressly granted to you are reserved\ + \ by Yahoo or their respective owners.\n\n Here’s what you can do with the Software:\n\ + \n Install and personally use the Software on a computer or mobile device owned\ + \ or controlled by you.\n\n Use the Software only for personal use or benefit.\n\ + \n Make copies of the Software and distribute such copies to others within a\ + \ corporation or similar organization so long as either (a) each recipient affirmatively\ + \ agrees to be bound by this License and any updates and changes to this License, or (b)\ + \ you have the legal right to bind and hereby bind your organization (and others within\ + \ your organization) to both this License and to any updates and changes to this License.\ + \ If neither (a) nor (b) is true, you may NOT distribute the Software within your employer’s\ + \ organization and Yahoo does not grant you a license to the Software.\n\n Allow\ + \ others to use the Software on your personal or mobile device; but regardless of whether\ + \ or not authorized by you, you are responsible for ensuring that any and all uses of the\ + \ Software comply with this License and all applicable laws.\n\n Here’s what you\ + \ can NOT do with the Software:\n\n Obtain or attempt to obtain unauthorized\ + \ access to the Yahoo network or to any third party networks, or to distribute any data\ + \ that you obtain through such unauthorized access.\n\n Export or re-export the\ + \ Software in violation of applicable laws or regulations.\n\n Sell, rent lease,\ + \ loan, distribute, transfer or sublicense the Software or access thereto, or derive income\ + \ from the use or provision of the Software, whether for direct commercial or monetary gain\ + \ or otherwise, without Yahoo's prior, express, written permission.\n\n Use the\ + \ Software in connection with acts of terrorism or violence, or the operation of nuclear\ + \ facilities, life support or other mission critical application where human life or property\ + \ may be at stake.\n\n Use the Software in any unlawful manner, for any unlawful\ + \ purpose, or in any manner inconsistent with this License or with the TOS.\n\n Software\ + \ Security, Tracking, Installation, Services and Support\n\n Security. The Software\ + \ does access and write to information that is stored on your hard drive (and in your accounts\ + \ on internet services to which you’ve authorized the Software to access and/or write information).\ + \ Yahoo takes your security seriously and takes reasonable steps to protect your information,\ + \ but you agree that you are using this Software at your own risk and that Yahoo does not\ + \ guarantee that transmission of your data over the Internet is 100% secure. Please see\ + \ http://privacy.yahoo.com/privacy/us/security/details.html for more information on what\ + \ Yahoo does to minimize security risks.\n\n Usage Data. You consent to allow the\ + \ Software to track, collect, and store the following information about your use of the\ + \ Software, which the Software may transmit back to Yahoo to use for diagnostic purposes\ + \ and improving the Software:\n\n A unique identifier assigned to your installation\ + \ of the Core. Yahoo will not associate this unique identifier to your personally identifiable\ + \ information.\n\n Your device’s platform, i.e., osx, win32.\n\n The\ + \ version of the Software that you’ve downloaded.\n\n Auto-Updater Feature. From\ + \ time to time, Yahoo may automatically download and install the latest version of the Software\ + \ to your computing device. Visit the Privacy Module at https://info.yahoo.com/privacy/us/yahoo/browserplus/\ + \ to find out more about this feature.\n\n Corelet Installations. When you visit\ + \ an internet site which requests that you download a corelet that will plug into the Software,\ + \ you will be prompted to either cancel or proceed with installation. BrowserPlus Plug-ins\ + \ are considered Software and subject to the terms of this License.\n\n How to Uninstall.\ + \ To uninstall, go to your operating system Control Panel, select Add/Remove Programs, and\ + \ select the Yahoo application that you wish to uninstall. Click the Change/Remove button.\ + \ Leave the selection on Automatic and click Next. Then click Finish, and you are done.\ + \ You may have to reboot to remove some components. To remove on operating systems other\ + \ than Windows, follow the standard instructions from the operating system developer for\ + \ removing third party applications. Please note that if you uninstall the Core, any BrowserPlus\ + \ Plug-ins that you have installed will also be uninstalled.\n\n Third Party Software,\ + \ Hardware, and Services. You are responsible for all third party software, hardware, and\ + \ services used in connection the Software. Any third party software, hardware, and services\ + \ (whether required or optional) that you use in conjunction with the Software, is the sole\ + \ responsibility of such third party, and is subject to the terms, conditions, warranties\ + \ and disclaimers provided by such third party.\n\n Support and Software Updates.\ + \ Yahoo offers no technical or maintenance support for the Software. Yahoo may offer upgrades\ + \ or updates to the Software in its sole discretion. Yahoo may change, suspend or discontinue\ + \ any aspect of the Software at any time without notice to you. \n\n Ownership\n\n \ + \ The Software may be protected by Yahoo’s patents, copyrights, trademarks, service marks,\ + \ international treaties, and/or other proprietary rights and laws of the U.S. and other\ + \ countries. You agree to abide by all applicable proprietary rights laws and other laws,\ + \ as well as any additional copyright and trademark notices or restrictions contained in\ + \ the Software, this License, and the TOS. Yahoo and Yahoo's licensors own all rights, title,\ + \ and interest in and to their applicable contributions to the Software. Other than as set\ + \ forth in this License, Yahoo grants you no right, title, or interest in any intellectual\ + \ property owned or licensed by Yahoo in connection with the Software and Yahoo trademarks.\n\ + \n Indemnification\n\n You (or the organization that you have the authority to bind,\ + \ if applicable) agree to indemnify and hold harmless Yahoo and its subsidiaries, affiliates,\ + \ officers, employees, agents, partners, and licensors (the \"Yahoo Entities\") from any\ + \ claim or demand, including reasonable attorneys' fees, made by you or any third party\ + \ in connection with or arising out of your use of the Software, your violation of any terms\ + \ or conditions of this License, your violation of applicable laws, or your violation of\ + \ any rights of another person or entity.\n\n DISCLAIMER OF WARRANTY. THE SOFTWARE IS\ + \ LICENSED \"AS-IS\". YOU BEAR THE RISK OF USING IT. THE YAHOO ENTITIES GIVE NO EXPRESS\ + \ WARRANTIES, GUARANTEES OR CONDITIONS OF ANY KIND (INCLUDING, BUT NOT LIMITED TO, WARRANTIES\ + \ RELATING TO NON-INFRINGEMENT OR SECURITY, AND THE IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ ANDFITNESS FOR A PARTICULAR PURPOSE). YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR\ + \ LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE.\n\n LIMITATION OF LIABILITY. YOU EXPRESSLY\ + \ UNDERSTAND AND AGREE THAT YAHOO! ANDTHE \"YAHOO! ENTITIES\" SHALL NOT BE LIABLE TO YOU\ + \ FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES, INCLUDING,\ + \ BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS, GOODWILL, USE, DATA OR OTHER INTANGIBLE\ + \ LOSSES (EVEN IF YAHOO! ENTITIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES),\ + \ RESULTING FROM: (i) THE USE OR THE INABILITY TO USE THE SOFTWARE; (ii) THE COST OF PROCUREMENT\ + \ OF SUBSTITUTE GOODS AND SERVICES; (iii) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS\ + \ OR DATA; (iv) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE SOFTWARE; OR (v) ANY OTHER\ + \ MATTER RELATING TO THE SOFTWARE. THE TOTAL LIABILITY OF YAHOO! AND YAHOO! ENTITIES FOR\ + \ ANY CLAIM BY YOU UNDER THIS LICENSE SHALL NOT EXCEED AMOUNTS PAID BY YOU TO YAHOO! FOR\ + \ THIS LICENSE IN THE TWELVE MONTH PERIOD PRECEDING THE EVENT WHICH IS THE BASIS FOR SUCH\ + \ CLAIM.\n\n Termination.\n\n Your license to the Software under this License continues\ + \ until it is terminated by either party. You may terminate the License by discontinuing\ + \ use of all or any of the Software and by destroying all your copies of the applicable\ + \ Software. This License terminates automatically if you violate any term of this License,\ + \ Yahoo publicly posts a written notice of termination on Yahoo's web site, or Yahoo sends\ + \ a written notice of termination to you directly.\n\n General Information\n\n Entire\ + \ Agreement. This License constitutes the entire agreement between you and Yahoo and governs\ + \ your use of the Software, superseding any prior agreements between you and Yahoo with\ + \ respect to the Software, and is the sole source or your rights concerning use of the Software.\n\ + \n Choice of Law and Forum. This License and the relationship between you and Yahoo shall\ + \ be governed by the laws of the State of California, USA without regard to its conflict\ + \ of law provisions. You and Yahoo agree to submit to the personal and exclusive jurisdiction\ + \ of the courts located within the county of Santa Clara, California, USA.\n\n Waiver\ + \ and Severability of Terms. The failure of Yahoo to exercise or enforce any right or provision\ + \ of this License shall not constitute a waiver of such right or provision. If any provision\ + \ of this License is found by a court of competent jurisdiction to be invalid, the parties\ + \ nevertheless agree that the court should endeavor to give effect to the parties' intentions\ + \ as reflected in the provision, and the other provisions of this License remain in full\ + \ force and effect.\n\n Statute of Limitations. You agree that regardless of any statute\ + \ or law to the contrary, any claim or cause of action arising out of or related to use\ + \ of the Software, or this License, must be filed within one (1) year after such claim or\ + \ cause of action arose or be forever barred.\n\n The titles in this License are for\ + \ convenience only and have no legal or contractual effect. Those provisions in this License\ + \ that by their nature are intended to survive, will survive any termination of this Agreement." json: yahoo-browserplus-eula.json - yml: yahoo-browserplus-eula.yml + yaml: yahoo-browserplus-eula.yml html: yahoo-browserplus-eula.html - text: yahoo-browserplus-eula.LICENSE + license: yahoo-browserplus-eula.LICENSE - license_key: yahoo-messenger-eula + category: Proprietary Free spdx_license_key: LicenseRef-scancode-yahoo-messenger-eula other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Yahoo Messenger Terms Of Service + + NO 911 OR EMERGENCY SERVICE. You acknowledge and understand that Yahoo does NOT currently allow you to access any 911 or similar emergency services (no traditional 911, E911, or similar access to emergency services). You should always have an alternative means of accessing 911 or similar emergency services. Please inform others who use your Yahoo Messenger and devices used to access Yahoo Messenger that they must access these numbers through a traditional landline or mobile phone. Yahoo Messenger is not intended to replace your primary phone service, such as traditional landline or mobile phone. + + ACCEPTANCE OF TERMS + + Welcome to Yahoo Yahoo provides this Yahoo Messenger service, and any other software or services you elected to download along with Yahoo Messenger (e.g. Yahoo Toolbar, or Yahoo Browser Services), to you, subject to the following license terms, which incorporates by reference the Yahoo Terms of Service ("TOS") each which may be updated by us from time to time without notice to you (collectively this "License"). You can review the most current version of this License and the TOS at any time at: https://info.yahoo.com/legal/us/yahoo/messenger/messengertos/messengertos-279.html and https://info.yahoo.com/legal/us/yahoo/utos/utos-173.html. If you are in a jurisdiction where download or use of this software or service is prohibited, click "Cancel" and do not download or use this software. + + By checking the box and clicking the "Next" button to download Yahoo Messenger, and by using and continuing to use Yahoo Messenger or the other software or services, you agree to be bound by this License which includes the TOS, and represent and warrant that you are permitted to do so under applicable law. + + DIFFERENT VERSIONS OF YAHOO! MESSENGER AND OTHER YAHOO! AUTHORIZED IM CLIENTS + + Not all features may be available if the user that you are communicating with is using a different version of Yahoo Messenger, or is using an IM software client offered by an authorized non-Yahoo company. + + DESCRIPTION OF SERVICE + + Yahoo Messenger allows you to see when your friends are online, send and receive instant messages, make pc-to-pc and pc-to-phone calls, listen to music, play games, and receive alerts and other material and information via the World Wide Web. + + Yahoo Toolbar allows users to quickly search the Web from anywhere online, save and re-find pages, protect your PC from spyware with Anti-Spy, access your favorite sites and enjoy music with Yahoo Music Engine controls. + + Yahoo Browser Services gives you enhancements for Internet Explorer grouped neatly under Yahoo Services button and menu option. These services include Sign-In, which can store multiple Yahoo IDs for quick switching; Yahoo Messenger Explorer Bar, which allows you to see your friends list and send links to friends within Internet Explorer; and Yahoo Shortcuts, which allows you to set up address bar keywords to go to your favorite web sites. + + From time to time, Yahoo may automatically download the latest version and notify you when it’s ready to install. Visit the Privacy Module to find out more about Auto Updater. If you wish to update your Yahoo Messenger, you must agree to the then current Yahoo Messenger Terms of Service in order for the update to be installed on your computer. + + HOW TO UNINSTALL: To uninstall, go to your operating system Control Panel, select Add/Remove Programs, and select Yahoo Messenger or other Yahoo application that you wish to uninstall. Click the Change/Remove button. Leave the selection on Automatic and click Next. Then click Finish and you are done! You may have to reboot to remove some components. + + Yahoo Messenger, including any web-based versions, will allow you and the people with whom you communicate to save your conversations in your Yahoo accounts located on Yahoo servers. This means you can access and search your message history from any computer with access to the internet. Whether or not you use this feature, other users may choose to use it to save conversations with you in their account on Yahoo too. Your agreement to this License constitutes your consent to allow Yahoo to store these communications on its servers. + + The foregoing software you elect to download, and any Yahoo or third party software, protocols (including but not limited to API protocols) (the "Software"), along with any services, content, or materials used that are authorized by Yahoo, are collectively deemed to be the "Service". Where the TOS references the defined term "Service," such terms in the TOS will also apply to the Software and services defined to be the "Service" under this License. + + By registering and using Yahoo Messenger, you acknowledge that other users of the Service may elect to receive a notification from the Service when you sign on and may send you instant messages and other information via the Service. If you desire to block the notification feature of the Service sent to other users or if you don't want to receive messages from such users, you can enable the "Ignore" feature of the Service. The "Ignore" feature allows you to create a list of users you wish to block, which you can review and edit from time to time. Your ability to send and receive instant messages and other information may be blocked by Yahoo and by other users, which may partially or wholly limit your ability to use the Service. By using the Service, you agree that Yahoo has no responsibility for assessing or resolving any disputes arising from a user's ability to ignore, send messages, or otherwise use the Service. + + FEES AND PAYMENTS + + Yahoo reserves the right to charge fees for future use of or access to the Service, or other Yahoo services and web sites, in Yahoo's sole discretion. If Yahoo decides to charge fees, such charges will be disclosed to you prior. + + EQUIPMENT REQUIRED AND OPTIONAL + + In order to use the Service and those services and products within the Service (for both free and charged services), you must obtain access to the World Wide Web, either directly or through devices that access web-based content, and pay any service fees associated with such access. In addition, you must provide all equipment necessary to make such connection to the World Wide Web or enable pc-to-pc, pc-to-phone, or other internet calling, including computers, modems, mobile devices, microphones, headsets, and handsets. + + You may also use optional equipment to access the Service (e.g. a USB port phone device to access the pc-to-pc calling feature, which device may include dual functionality to access a traditional landline service which is not provided by Yahoo). + + Any required or optional equipment that you use to use or access the Service, whether required or optional, is subject to the terms, conditions, warranties and disclaimers provided by the manufacturer of the equipment. Please refer to the materials you received when you purchased the equipment to understand your rights and obligations, including what warranties and disclaimers apply to you. + + LICENSE + + The Service (which includes the Software) contains proprietary and confidential information that is protected by applicable intellectual property and other laws. Yahoo and Yahoo's licensors own all rights, title, and interest in and to their applicable contributions to the Service. This License grants you no right, title, or interest in any intellectual property owned or licensed by Yahoo, including (but not limited to) the Service and Yahoo trademarks, and creates no relationship between yourself and Yahoo's licensors, or between you and Yahoo other than that of Yahoo to licensee. + + YOU MAY install and personally use the Software and any authorized updates provided by Yahoo in object code form on a personal computer owned or controlled by you and are only permitted to access the Service through the Software, only as authorized in this License. You may use the Software and access the Service for your own noncommercial use or benefit. The Service and its components contain software licensed from Yahoo licensors ("Licensor Software"). The Licensor Software enables the Yahoo Software to perform certain functions including, without limitation, access proprietary data on third-party data servers. You agree not to assign, copy, transfer, or transmit the Service, or any data obtained through the Service, to any third party. Your license to use the Service, its components, and any third-party data, will terminate if you violate these restrictions. If your license terminates, you agree to cease any and all use of the Service, its components, and any third-party data. All rights in any third-party data, any third-party software, and any third-party data servers, including all ownership rights are reserved and remain with the respective third parties. You agree that these third parties may enforce their rights under this Agreement against you directly in their own name. + + Yahoo may elect to provide you with customer support and/or software upgrades, enhancements, or modifications for the Service (collectively, "Support"), in its sole discretion, and may terminate such Support at any time without notice to you. Yahoo may change, suspend, or discontinue any aspect of the Service at any time, including the availability of any Service feature, database, or content. Yahoo may also impose limits on certain features and services or restrict your access to parts or all of the Service or the Yahoo web site without notice or liability. + + RESTRICTIONS ON USE + + YOU MAY NOT and will not allow any third party to: + + Copy, decompile, reverse engineer, reverse assemble, disassemble, modify, rent, lease, loan, distribute, or create derivative works (as defined by the U.S. Copyright Act) or improvements (as defined by U.S. patent law) from the Software, or any portion thereof, or otherwise attempt to discover any source code or protocols (including but no limited to API protocols) in the Service; + + Obtain or attempt to obtain unauthorized access to the Service or the Yahoo network; + + Incorporate the protocols or Software, or any portion thereof, into any other service, software, hardware, or other technology manufactured or distributed by or for you; Use the Service in any unlawful manner, for any unlawful purpose, or in any manner inconsistent with this License; + + Use the Service to operate nuclear facilities, life support, or other mission critical application where human life or property may be at stake. You understand that the Service is not designed for such purposes and that its failure in such cases could lead to death, personal injury, or severe property or environmental damage for which Yahoo is not responsible; or + + Sell, lease, loan, distribute, transfer, or sublicense the Service or access thereto or derive income from the use or provision of the Service, whether for direct commercial or monetary gain or otherwise, without Yahoo's prior, express, written permission. + + All Software provided to the U.S. Government pursuant to solicitations issued on or after December 1, 1995, is provided with the commercial rights and restrictions described herein. + + SOFTWARE AND SERVICE PROVIDED AS-IS + + Unless explicitly stated otherwise, any new features that augment or enhance the current Service shall be subject to this License. You understand and agree that the Service is provided "AS-IS" and that Yahoo assumes no responsibility for the timeliness, deletion, mis-delivery, or failure to store any user communications or personalization settings. You also understand that Yahoo is not responsible for the security or privacy of communications sent via the Service, including but not limited to where the Service is being accessed via wireless devices or other equipment used to access the Service. These disclaimers are in addition to the "Disclaimer of Warranties" section in the TOS. + + Any third party plug-ins applications that you use with the Service are owned by and are the sole responsibility of the plug-in application developer, and it is up to you decide whether these plug-in applications, or your use of them, is legal or appropriate. + + Any required or optional equipment, or third party plug-in applications, that you use to use, access, or augment the Service, whether required or optional, is subject to the terms, conditions, warranties and disclaimers provided by the manufacturer of the equipment, and Yahoo makes no warranties or representations whatsoever regarding such equipment or third party plug-in application. Please refer to the materials you received when you purchased the equipment or downloaded the plug-in application to understand your rights and obligations, including what warranties and disclaimers apply to you. YAHOO! AND ITS AFFILIATES EXPRESSLY DISCLAIM ALL WARRANTIES OF ANY KIND, WHETHER EXPRESS OR IMPLIED, RELATING TO SUCH EQUIPMENT OR PLUG-IN APPLICATIONS, INCLUDING THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. + + MEMBER ACCOUNT, PASSWORD, AND SECURITY + + If you don't already have a Yahoo I.D. and password, you will be prompted to complete the Yahoo registration process. You are responsible for maintaining the confidentiality of the password and account and are fully responsible for all activities that occur under your password or account. You agree to (a) immediately notify Yahoo of any unauthorized use of your password or account or any other breach of security and (b) ensure that you exit from your account at the end of each session. Yahoo cannot and will not be liable for any loss or damage arising from your failure to comply with this Section. If authorized by Yahoo, the Service may allow you to communicate with users of other instant messaging products. In that event, you acknowledge and agree that (i) your use of the Service is subject to this License and the terms governing the use of other instant messaging products you have agreed to, if any, that are consistent with this License and (ii) users of other instant messaging products are subject to the terms governing such other instant messaging products. Yahoo assumes no responsibility for the conduct or content of messages sent by users of other instant messaging products. + + YAHOO! PRIVACY POLICY + + Your registration data and other information about you are subject to our Privacy Policy. For more information, please see our full privacy policy at http://privacy.yahoo.com/privacy/us/mesg/index.htm. + + MODIFICATIONS TO SERVICE + + Yahoo reserves the right at any time and from time to time to modify or discontinue, temporarily or permanently, the Service (or any part thereof) with or without notice. You agree that Yahoo shall not be liable to you or to any third party for any modification, suspension or discontinuance of the Service. Yahoo may also impose limits on certain features and services or restrict your access to parts or all of the Service or the Yahoo web site without notice or liability. + + TERMINATION + + Your license to the Software and to access the Service continues until it is terminated by either party. You may terminate this License by discontinuing use of all or any of the Software and by destroying all your copies of the applicable Software. Yahoo may terminate this License pursuant to "Termination" section of the TOS. + + ADDITIONAL INDEMNIFICATION + + In addition to the indemnification you provide to Yahoo under the "Indemnity" section of the TOS, if the Service downloaded or accessed by you includes the "anti-spy"tool, software that is identified as "spyware" by this tool may be software that you have agreed to load onto your computer pursuant to a separate agreement with a third party. You are solely responsible for compliance with agreements you have executed with third parties. You agree to indemnify and hold Yahoo and its subsidiaries, affiliates, officers, agents, employees, partners and licensors harmless from any claim or demand, including reasonable attorneys' fees, made by any third party in connection with or arising out of your use of the Service, your violation of any terms or conditions of this License, your violation of applicable laws, or your violation of any rights of another person or entity. + + GOVERNMENT END USERS + + If the Service and related documentation are supplied to or purchased by or on behalf of the United States Government, then the Service is deemed to be "commercial software" as that term is used in the Federal Acquisition Regulation system. Rights of the United States shall not exceed the minimum rights set forth in FAR 52.227-19 for "restricted computer software." All other terms and conditions of this License apply. + + NOTICE + + Yahoo may provide you with notices, including those regarding changes to this License, by either email, regular mail, or postings on the Service. + + GENERAL INFORMATION + + Entire Agreement. This License, which includes the TOS, constitutes the entire agreement between you and Yahoo and governs your use of the Service, superseding any prior agreements between you and Yahoo with respect to the Service. With respect to your use of other authorized Yahoo services, affiliate services, affiliate devices or equipment, third-party content, or third-party software, you also may be subject to additional terms and conditions. In the event of any conflict between the terms and conditions of this License and those in the TOS, the terms and conditions of this License will control, except to the extent that the TOS impose additional restrictions and liabilities on your actions. + + Choice of Law and Forum. This License and the relationship between you and Yahoo shall be governed by the laws of the State of California without regard to its conflict of law provisions. You and Yahoo agree to submit to the personal and exclusive jurisdiction of the courts located within the county of Santa Clara, California. + + Waiver and Severability of Terms. The failure of Yahoo to exercise or enforce any right or provision of this License shall not constitute a waiver of such right or provision. If any provision of this License is found by a court of competent jurisdiction to be invalid, the parties nevertheless agree that the court should endeavor to give effect to the parties' intentions as reflected in the provision, and the other provisions of this License and TOS remain in full force and effect. + No Right of Survivorship and Non-Transferability. You agree that your Yahoo account is non-transferable and any rights to your Yahoo I.D. or contents within your account terminate upon your death. Upon receipt of a copy of a death certificate, your account may be terminated and all contents therein permanently deleted. + + Statute of Limitations. You agree that regardless of any statute or law to the contrary, any claim or cause of action arising out of or related to use of the Service, or this License, must be filed within one (1) year after such claim or cause of action arose or be forever barred. + + The section titles in this License are for convenience only and have no legal or contractual effect. + + VIOLATIONS + + Please report any violations of this License or TOS to our Customer Care group. json: yahoo-messenger-eula.json - yml: yahoo-messenger-eula.yml + yaml: yahoo-messenger-eula.yml html: yahoo-messenger-eula.html - text: yahoo-messenger-eula.LICENSE + license: yahoo-messenger-eula.LICENSE - license_key: yale-cas + category: Permissive spdx_license_key: LicenseRef-scancode-yale-cas other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + THIS SOFTWARE IS PROVIDED "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 EXPRESSLY + DISCLAIMED. IN NO EVENT SHALL YALE UNIVERSITY OR ITS EMPLOYEES BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED, THE COSTS OF + 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 IN ADVANCE OF THE POSSIBILITY OF SUCH + DAMAGE. + + Redistribution and use of this software in source or binary forms, + with or without modification, are permitted, provided that the + following conditions are met: + + 1. Any redistribution must include the above copyright notice and + disclaimer and this list of conditions in any related documentation + and, if feasible, in the redistributed software. + + 2. Any redistribution must include the acknowledgment, "This product + includes software developed by Yale University," in any related + documentation and, if feasible, in the redistributed software. + + 3. The names "Yale" and "Yale University" must not be used to endorse + or promote products derived from this software. json: yale-cas.json - yml: yale-cas.yml + yaml: yale-cas.yml html: yale-cas.html - text: yale-cas.LICENSE + license: yale-cas.LICENSE - license_key: yensdesign + category: Permissive spdx_license_key: LicenseRef-scancode-yensdesign other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: 'license: Feel free to use it, but keep this credits please!' json: yensdesign.json - yml: yensdesign.yml + yaml: yensdesign.yml html: yensdesign.html - text: yensdesign.LICENSE + license: yensdesign.LICENSE - license_key: yolo-1.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-yolo-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + YOLO LICENSE + Version 1, July 10 2015 + + THIS SOFTWARE LICENSE IS PROVIDED "ALL CAPS" SO THAT YOU KNOW IT IS SUPER + SERIOUS AND YOU DON'T MESS AROUND WITH COPYRIGHT LAW BECAUSE YOU WILL GET IN + TROUBLE HERE ARE SOME OTHER BUZZWORDS COMMONLY IN THESE THINGS WARRANTIES + LIABILITY CONTRACT TORT LIABLE CLAIMS RESTRICTION MERCHANTABILITY SUBJECT TO + THE FOLLOWING CONDITIONS: + + 1. #yolo + 2. #swag + 3. #blazeit json: yolo-1.0.json - yml: yolo-1.0.yml + yaml: yolo-1.0.yml html: yolo-1.0.html - text: yolo-1.0.LICENSE + license: yolo-1.0.LICENSE - license_key: yolo-2.0 + category: Proprietary Free spdx_license_key: LicenseRef-scancode-yolo-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + YOLO LICENSE + Version 2, July 29 2016 + + THIS SOFTWARE LICENSE IS PROVIDED "ALL CAPS" SO THAT YOU KNOW IT IS SUPER + SERIOUS AND YOU DON'T MESS AROUND WITH COPYRIGHT LAW BECAUSE YOU WILL GET IN + TROUBLE HERE ARE SOME OTHER BUZZWORDS COMMONLY IN THESE THINGS WARRANTIES + LIABILITY CONTRACT TORT LIABLE CLAIMS RESTRICTION MERCHANTABILITY. NOW HERE'S + THE REAL LICENSE: + + 0. Darknet is public domain. + 1. Do whatever you want with it. + 2. Stop emailing me about it! json: yolo-2.0.json - yml: yolo-2.0.yml + yaml: yolo-2.0.yml html: yolo-2.0.html - text: yolo-2.0.LICENSE + license: yolo-2.0.LICENSE - license_key: ypl-1.0 + category: Copyleft Limited spdx_license_key: YPL-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: | + Yahoo! Public License, Version 1.0 (YPL) + + This Yahoo! Public License (this "Agreement") is a legal agreement that + describes the terms under which Yahoo! Inc., a Delaware corporation having its + principal place of business at 701 First Avenue, Sunnyvale, California 94089 + ("Yahoo!") will provide software to you via download or otherwise ("Software"). + By using the Software, you, an individual or an entity ("You") agree to the + terms of this Agreement. + + In consideration of the mutual promises and upon the terms and conditions set + forth below, the parties agree as follows: + + 1. Grant of Copyright License + + * 1.1 - Subject to the terms and conditions of this Agreement, Yahoo! + hereby grants to You, under any and all of its copyright interest in + and to the Software, a royalty-free, non-exclusive, non-transferable + license to copy, modify, compile, execute, and distribute the Software + and Modifications. For the purposes of this Agreement, any change to, + addition to, or abridgement of the Software made by You is a + "Modification;" however, any file You add to the Software that does + not contain any part of the Software is not a "Modification." + + * 1.2 - If You are an individual acting on behalf of a corporation or + other entity, Your use of the Software or any Modification is subject + to Your having the authority to bind such corporation or entity to + this Agreement. Providing copies to persons within such corporation or + entity is not considered distribution for purposes of this Agreement. + + * 1.3 - For the Software or any Modification You distribute in source + code format, You must do so only under the terms of this Agreement, + and You must include a complete copy of this Agreement with Your + distribution. With respect to any Modification You distribute in + source code format, the terms of this Agreement will apply to You in + the same way those terms apply to Yahoo! with respect to the Software. + In other words, when You are distributing Modifications under this + Agreement, You "stand in the shoes" of Yahoo! in terms of the rights + You grant and how the terms and conditions apply to You and the + licensees of Your Modifications. Notwithstanding the foregoing, when + You "stand in the shoes" of Yahoo!, You are not subject to the + jurisdiction provision under Section 7, which requires all disputes + under this Agreement to be subject to the jurisdiction of federal or + state courts of northern California. + + * 1.4 - For the Software or any Modification You distribute in + compiled or object code format, You must also provide recipients with + access to the Software or Modification in source code format along + with a complete copy of this Agreement. The distribution of the + Software or Modifications in compiled or object code format may be + under a license of Your choice, provided that You are in compliance + with the terms of this Agreement. In addition, You must make + absolutely clear that any license terms applying to such Software or + Modification that differ from this Agreement are offered by You alone + and not by Yahoo!, and that such license does not restrict recipients + from exercising rights in the source code to the Software granted by + Yahoo! under this Agreement or rights in the source code to any + Modification granted by You as described in Section 1.3. + + * 1.5 - This Agreement does not limit Your right to distribute files + that are entirely Your own work (i.e., which do not incorporate any + portion of the Software and are not Modifications) under any terms You + choose. + + 2. Support + + * Yahoo! has no obligation to provide technical support or updates to + You. Nothing in this Agreement requires Yahoo! to enter into any + license with You for any other edition of the Software. + + 3. Intellectual Property Rights + + * 3.1 - Except for the license expressly granted under copyright in + Section 1.1, no rights, licenses or forbearances are granted or may + arise in relation to this Agreement whether expressly, by implication, + exhaustion, estoppel or otherwise. All rights, including all + intellectual property rights, that are not expressly granted under + this Agreement are hereby reserved. + + * 3.2 - In any copy of the Software or in any Modification you create, + You must retain and reproduce, any and all copyright, patent, + trademark, and attribution notices that are included in the Software + in the same form as they appear in the Software. This includes the + preservation of attribution notices in the form of trademarks or logos + that exist within a user interface of the Software. + + * 3.3 - This license does not grant You rights to use any party's + name, logo, or trademarks, except solely as necessary to comply with + Section 3.2. + + 4. Disclaimer of Warranties + + * THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND. + YAHOO! MAKES NO WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY + REGARDING OR RELATING TO THE SOFTWARE. SPECIFICALLY, YAHOO! DOES NOT + WARRANT THAT THE SOFTWARE WILL BE ERROR FREE OR WILL PERFORM IN AN + UNINTERRUPTED MANNER. TO THE GREATEST EXTENT ALLOWED BY LAW, YAHOO! + SPECIFICALLY DISCLAIMS ALL IMPLIED WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE (EVEN IF YAHOO! HAD BEEN INFORMED OF + SUCH PURPOSE), AND NONINFRINGEMENT WITH RESPECT TO THE SOFTWARE, ANY + MODIFICATIONS THERETO AND WITH RESPECT TO THE USE OF THE FOREGOING. + + 5. Limitation of Liability + + * IN NO EVENT WILL YAHOO! BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES OF ANY KIND + (INCLUDING WITHOUT LIMITATION LOSS OF PROFITS, LOSS OF USE, BUSINESS + INTERRUPTION, LOSS OF DATA, COST OF COVER) IN CONNECTION WITH OR + ARISING OUT OF OR RELATING TO THE FURNISHING, PERFORMANCE OR USE OF + THE SOFTWARE OR ANY OTHER RIGHTS GRANTED HEREUNDER, WHETHER ALLEGED AS + A BREACH OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, AND + EVEN IF YAHOO! HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 6. Term and Termination + + * 6.1 - This Agreement will continue in effect unless and until + terminated earlier pursuant to this Section 6. + + * 6.2 - In the event Yahoo! determines that You have breached this + Agreement, Yahoo! may terminate this Agreement. + + * 6.3 - All licenses granted hereunder shall terminate upon the + termination of this Agreement. Termination will be in addition to any + rights and remedies available to Yahoo! at law or equity or under this + Agreement. + + * 6.4 - Termination of this Agreement will not affect the provisions + regarding reservation of rights (Section 3.1), provisions disclaiming + or limiting Yahoo!'s liability (Sections 4 and 5), Termination + (Section 6) or Miscellaneous (Section 7), which provisions will + survive termination of this Agreement. + + 7. Miscellaneous + + * This Agreement contains the entire agreement of the parties with + respect to the subject matter of this Agreement and supersedes all + previous communications, representations, understandings and + agreements, either oral or written, between the parties with respect + to said subject matter. The relationship of the parties hereunder is + that of independent contractors, and this Agreement will not be + construed as creating an agency, partnership, joint venture or any + other form of legal association between the parties. If any term, + condition, or provision in this Agreement is found to be invalid, + unlawful or unenforceable to any extent, this Agreement will be + construed in a manner that most closely effectuates the intent of this + Agreement. Such invalid term, condition or provision will be severed + from the remaining terms, conditions and provisions, which will + continue to be valid and enforceable to the fullest extent permitted + by law. This Agreement will be interpreted and construed in accordance + with the laws of the State of California and the United States of + America, without regard to conflict of law principles. The U.N. + Convention on Contracts for the International Sale of Goods shall not + apply to this Agreement. All disputes arising out of this Agreement + involving Yahoo! or any of its subsidiaries shall be subject to the + jurisdiction of the federal or state courts of northern California, + with venue lying in Santa Clara County, California. No rights may be + assigned, no obligations may be delegated, and this Agreement may not + be transferred by You, in whole or in part, whether voluntary or by + operation of law, including by way of sale of assets, merger or + consolidation, without the prior written consent of Yahoo!, and any + purported assignment, delegation or transfer without such consent + shall be void ab initio. Any waiver of the provisions of this + Agreement or of a party's rights or remedies under this Agreement must + be in writing to be effective. Failure, neglect or delay by a party to + enforce the provisions of this Agreement or its rights or remedies at + any time, will not be construed or be deemed to be a waiver of such + party's rights under this Agreement and will not in any way affect the + validity of the whole or any part of this Agreement or prejudice such + party's right to take subsequent action. json: ypl-1.0.json - yml: ypl-1.0.yml + yaml: ypl-1.0.yml html: ypl-1.0.html - text: ypl-1.0.LICENSE + license: ypl-1.0.LICENSE - license_key: ypl-1.1 + category: Copyleft spdx_license_key: YPL-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft + text: | + Yahoo! Public License, Version 1.1 (YPL) + + This Yahoo! Public License (this "Agreement") is a legal agreement that + describes the terms under which Yahoo! Inc., a Delaware corporation having its + principal place of business at 701 First Avenue, Sunnyvale, California 94089 + ("Yahoo!") will provide software to you via download or otherwise ("Software"). + By using the Software, you, an individual or an entity ("You") agree to the + terms of this Agreement. + + In consideration of the mutual promises and upon the terms and conditions set + forth below, the parties agree as follows: + + 1. Grant of Copyright License + + 1.1 - Subject to the terms and conditions of this Agreement, Yahoo! hereby + grants to You, under any and all of its copyright interest in and to the + Software, a royalty-free, non-exclusive, non-transferable license to copy, + modify, compile, execute, and distribute the Software and Modifications. For the + purposes of this Agreement, any change to, addition to, or abridgement of the + Software made by You is a "Modification;" however, any file You add to the + Software that does not contain any part of the Software is not a "Modification." + + 1.2 - If You are an individual acting on behalf of a corporation or other + entity, Your use of the Software or any Modification is subject to Your having + the authority to bind such corporation or entity to this Agreement. Providing + copies to persons within such corporation or entity is not considered + distribution for purposes of this Agreement. + + 1.3 - For the Software or any Modification You distribute in source code format, + You must do so only under the terms of this Agreement, and You must include a + complete copy of this Agreement with Your distribution. With respect to any + Modification You distribute in source code format, the terms of this Agreement + will apply to You in the same way those terms apply to Yahoo! with respect to + the Software. In other words, when You are distributing Modifications under this + Agreement, You "stand in the shoes" of Yahoo! in terms of the rights You grant + and how the terms and conditions apply to You and the licensees of Your + Modifications. Notwithstanding the foregoing, when You "stand in the shoes" of + Yahoo!, You are not subject to the jurisdiction provision under Section 7, which + requires all disputes under this Agreement to be subject to the jurisdiction of + federal or state courts of northern California. + + 1.4 - For the Software or any Modification You distribute in compiled or object + code format, You must also provide recipients with access to the Software or + Modification in source code format along with a complete copy of this Agreement. + The distribution of the Software or Modifications in compiled or object code + format may be under a license of Your choice, provided that You are in + compliance with the terms of this Agreement. In addition, You must make + absolutely clear that any license terms applying to such Software or + Modification that differ from this Agreement are offered by You alone and not by + Yahoo!, and that such license does not restrict recipients from exercising + rights in the source code to the Software granted by Yahoo! under this Agreement + or rights in the source code to any Modification granted by You as described in + Section 1.3. + + 1.5 - This Agreement does not limit Your right to distribute files that are + entirely Your own work (i.e., which do not incorporate any portion of the + Software and are not Modifications) under any terms You choose. + + 2. Support + + Yahoo! has no obligation to provide technical support or updates to You. Nothing + in this Agreement requires Yahoo! to enter into any license with You for any + other edition of the Software. + + 3. Intellectual Property Rights + + 3.1 - Except for the license expressly granted under copyright in Section 1.1, + no rights, licenses or forbearances are granted or may arise in relation to this + Agreement whether expressly, by implication, exhaustion, estoppel or otherwise. + All rights, including all intellectual property rights, that are not expressly + granted under this Agreement are hereby reserved. + + 3.2 - In any copy of the Software or in any Modification you create, You must + retain and reproduce, any and all copyright, patent, trademark, and attribution + notices that are included in the Software in the same form as they appear in the + Software. This includes the preservation of attribution notices in the form of + trademarks or logos that exist within a user interface of the Software. + + 3.3 - This license does not grant You rights to use any party's name, logo, or + trademarks, except solely as necessary to comply with Section 3.2. + + 4. Disclaimer of Warranties + + THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND. YAHOO! MAKES + NO WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY REGARDING OR RELATING TO + THE SOFTWARE. SPECIFICALLY, YAHOO! DOES NOT WARRANT THAT THE SOFTWARE WILL BE + ERROR FREE OR WILL PERFORM IN AN UNINTERRUPTED MANNER. TO THE GREATEST EXTENT + ALLOWED BY LAW, YAHOO! SPECIFICALLY DISCLAIMS ALL IMPLIED WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE (EVEN IF YAHOO! HAD BEEN + INFORMED OF SUCH PURPOSE), AND NONINFRINGEMENT WITH RESPECT TO THE SOFTWARE, ANY + MODIFICATIONS THERETO AND WITH RESPECT TO THE USE OF THE FOREGOING. + + 5. Limitation of Liability + + IN NO EVENT WILL YAHOO! BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES OF ANY KIND (INCLUDING WITHOUT LIMITATION + LOSS OF PROFITS, LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF DATA, COST OF + COVER) IN CONNECTION WITH OR ARISING OUT OF OR RELATING TO THE FURNISHING, + PERFORMANCE OR USE OF THE SOFTWARE OR ANY OTHER RIGHTS GRANTED HEREUNDER, + WHETHER ALLEGED AS A BREACH OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING + NEGLIGENCE, AND EVEN IF YAHOO! HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH + DAMAGES. + + 6. Term and Termination + + 6.1 - This Agreement will continue in effect unless and until terminated earlier + pursuant to this Section 6. + + 6.2 - In the event You violate the terms of this Agreement, Yahoo! may terminate + this Agreement. + + 6.3 - All licenses granted hereunder shall terminate upon the termination of + this Agreement. Termination will be in addition to any rights and remedies + available to Yahoo! at law or equity or under this Agreement. + + 6.4 - Termination of this Agreement will not affect the provisions regarding + reservation of rights (Section 3.1), provisions disclaiming or limiting Yahoo!'s + liability (Sections 4 and 5), Termination (Section 6) or Miscellaneous (Section + 7), which provisions will survive termination of this Agreement. + + 7. Miscellaneous + + This Agreement contains the entire agreement of the parties with respect to the + subject matter of this Agreement and supersedes all previous communications, + representations, understandings and agreements, either oral or written, between + the parties with respect to said subject matter. The relationship of the parties + hereunder is that of independent contractors, and this Agreement will not be + construed as creating an agency, partnership, joint venture or any other form of + legal association between the parties. If any term, condition, or provision in + this Agreement is found to be invalid, unlawful or unenforceable to any extent, + this Agreement will be construed in a manner that most closely effectuates the + intent of this Agreement. Such invalid term, condition or provision will be + severed from the remaining terms, conditions and provisions, which will continue + to be valid and enforceable to the fullest extent permitted by law. This + Agreement will be interpreted and construed in accordance with the laws of the + State of California and the United States of America, without regard to conflict + of law principles. The U.N. Convention on Contracts for the International Sale + of Goods shall not apply to this Agreement. All disputes arising out of this + Agreement involving Yahoo! or any of its subsidiaries shall be subject to the + jurisdiction of the federal or state courts of northern California, with venue + lying in Santa Clara County, California. No rights may be assigned, no + obligations may be delegated, and this Agreement may not be transferred by You, + in whole or in part, whether voluntary or by operation of law, including by way + of sale of assets, merger or consolidation, without the prior written consent of + Yahoo!, and any purported assignment, delegation or transfer without such + consent shall be void ab initio. Any waiver of the provisions of this Agreement + or of a party's rights or remedies under this Agreement must be in writing to be + effective. Failure, neglect or delay by a party to enforce the provisions of + this Agreement or its rights or remedies at any time, will not be construed or + be deemed to be a waiver of such party's rights under this Agreement and will + not in any way affect the validity of the whole or any part of this Agreement or + prejudice such party's right to take subsequent action. json: ypl-1.1.json - yml: ypl-1.1.yml + yaml: ypl-1.1.yml html: ypl-1.1.html - text: ypl-1.1.LICENSE + license: ypl-1.1.LICENSE - license_key: zapatec-calendar + category: Commercial spdx_license_key: LicenseRef-scancode-zapatec-calendar other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Commercial + text: "Zapatec DHTML/Javascript Calendar License Agreement\n\nCAREFULLY READ THE FOLLOWING\ + \ LICENSE AGREEMENT. YOU ACCEPT AND AGREE TO BE BOUND BY THIS LICENSE AGREEMENT BY DOWNLOADING,\ + \ INSTALLING, USING, OR DISTRIBUTING THE SOFTWARE. IF YOU DO NOT AGREE TO THIS LICENSE,\ + \ DO NOT CLICK ON THE DOWNLOAD LINK AND THE SOFTWARE WILL NOT BE DOWNLOADED.\n\nDefinitions\n\ + \n\"You\" means the person or company who is being licensed to use the Software or Documentation.\ + \ \"We,\" \"us\" and \"our\" means Zapatec Inc, a California corporation.\n\nLicense types\ + \ and Grant\n\nWe hereby grant you a nonexclusive license to use one copy of the Software,\ + \ according to one of the following license types.\n\n Lite License\n\n We grant you\ + \ a nonexclusive license to use one copy of the Software on a single computer, for use in\ + \ one fully qualified domain name (FQDN).\n In return for the License Grant you will\ + \ provide a link from each Web page the Software is used on to the Zapatec web page: http://www.zapatec.com/website/main/products/prod1/\n\ + \n Single Server License\n\n We grant you a nonexclusive license to use one copy of\ + \ the Software on a single computer, for use in one fully qualified domain name (FQDN).\n\ + \ Domain Wide License\n\n We grant you a nonexclusive license to use the Software\ + \ on a unlimited number of web pages within one domain name and its subdomains.\n Unlimited\ + \ License\n\n We grant you a nonexclusive license to use one copy of the Software on\ + \ any number of domains and subdomains owned by your company. You are not allowed to resell\ + \ the software.\n Library License\n\n We grant you a nonexclusive license to resell\ + \ or redistribute the Software only if (a) the Software is sold or redistributed as part\ + \ of a software application or library that you have developed and of which the Software\ + \ only comprises a part, and (b) you do not sell or distribute the Software in a form in\ + \ which your customers could redistribute the Software in a manner that is competitive with\ + \ our licensing of the Software . You may resell or distribute no more than 10,000 copies\ + \ of the application or library that includes the software.\n\nTitle\n\nWe remain the owner\ + \ of all right, title and interest in the Software and related explanatory written materials\ + \ (\"Documentation\").\n\nArchival or Backup Copies\n\nYou may copy the Software for back\ + \ up and archival purposes, provided that the original and each copy is kept in your possession\ + \ and that your installation and use of the Software does not exceed that allowed in the\ + \ \"License Grant\" section above.\n\nThings You May Not Do\n\nThe Software and Documentation\ + \ are protected by United States copyright laws and international treaties. You must treat\ + \ the Software and Documentation like any other copyrighted material-for example, a book.\ + \ Except as contemplated above with respect to Library Licenses, you may not:\n\n copy\ + \ the Documentation,\n copy the Software except to make archival or backup copies as\ + \ provided above,\n sublicense, rent, lease or lend any portion of the Software or Documentation\ + \ or,\n modify or remove any copyright notices from any of the Software files. \n\nTransfers\n\ + \nExcept as contemplated above with respect to Library Licenses, you may not transfer your\ + \ rights to use the Software and Documentation to another person or legal entity.\n\nLimited\ + \ Warranty\nWe warrant that for a period of 90 days after delivery of this copy of the Software\ + \ to you:\n\nthe Software will perform in substantial accordance with the Documentation.\n\ + \nTo the extent permitted by applicable law, THE FOREGOING LIMITED WARRANTY IS IN LIEU OF\ + \ ALL OTHER WARRANTIES OR CONDITIONS, EXPRESS OR IMPLIED, AND WE DISCLAIM ANY AND ALL IMPLIED\ + \ WARRANTIES OR CONDITIONS, INCLUDING ANY IMPLIED WARRANTY OF TITLE, NONINFRINGEMENT, MERCHANTABILITY\ + \ OR FITNESS FOR A PARTICULAR PURPOSE, regardless of whether we know or had reason to know\ + \ of your particular needs. No employee, agent, dealer or distributor of ours is authorized\ + \ to modify this limited warranty, nor to make any additional warranties.\n\nSOME STATES\ + \ DO NOT ALLOW THE LIMITATION OR EXCLUSION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL\ + \ DAMAGES, SO THE ABOVE LIMITATION MAY NOT APPLY TO YOU.\n\nLimited Remedy\n\nOur entire\ + \ liability and your exclusive remedy for breach of the foregoing warranty shall be, at\ + \ our option, to either:\n\nreturn the price you paid, or\n\nrepair or replace the Software\ + \ or media that does not meet the foregoing warranty if it is returned to us with a copy\ + \ of your receipt.\n\nIN NO EVENT WILL WE BE LIABLE TO YOU FOR ANY DAMAGES, INCLUDING ANY\ + \ LOST PROFITS, LOST SAVINGS, OR OTHER INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING FROM\ + \ THE USE OR THE INABILITY TO USE THE SOFTWARE (EVEN IF WE OR AN AUTHORIZED DEALER OR DISTRIBUTOR\ + \ HAS BEEN ADVISED OF THE POSSIBILITY OF THESE DAMAGES), OR FOR ANY CLAIM BY ANY OTHER PARTY.\n\ + \nSOME STATES DO NOT ALLOW THE LIMITATION OR EXCLUSION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL\ + \ DAMAGES, SO THE ABOVE LIMITATION MAY NOT APPLY TO YOU.\n\nTerm and Termination\n\nThis\ + \ license agreement takes effect upon your use of the software and remains effective until\ + \ terminated. You may terminate it at any time by destroying all copies of the Software\ + \ and Documentation in your possession. It will also automatically terminate if you fail\ + \ to comply with any term or condition of this license agreement. You agree on termination\ + \ of this license to destroy all copies of the Software and Documentation in your possession.\n\ + \nGeneral Provisions\n\n1. This written license agreement is the exclusive agreement between\ + \ you and us concerning the Software and Documentation and supersedes any prior purchase\ + \ order, communication, advertising or representation concerning the Software.\n\n2. This\ + \ license agreement may be modified only by a writing signed by you and us.\n\n3. In the\ + \ event of litigation between you and us concerning the Software or Documentation, the prevailing\ + \ party in the litigation will be entitled to recover attorney fees and expenses from the\ + \ other party.\n\n4. This license agreement is governed by the laws of the State of California..\n\ + \n5. You agree that the Software will not be shipped, transferred or exported into any country\ + \ or used in any manner prohibited by the United States Export Administration Act or any\ + \ other export laws, restrictions or regulations.\n\n© 2004-2006 Zapatec, Inc." json: zapatec-calendar.json - yml: zapatec-calendar.yml + yaml: zapatec-calendar.yml html: zapatec-calendar.html - text: zapatec-calendar.LICENSE + license: zapatec-calendar.LICENSE - license_key: zed + category: Permissive spdx_license_key: Zed other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + You may copy and distribute this file freely. Any queries and complaints should + be forwarded to Jim.Davies@comlab.ox.ac.uk. If you make any changes to this + file, please do not distribute the results under the name `zed-csp.sty'. json: zed.json - yml: zed.yml + yaml: zed.yml html: zed.html - text: zed.LICENSE + license: zed.LICENSE - license_key: zend-2.0 + category: Permissive spdx_license_key: Zend-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "-------------------------------------------------------------------- \n \ + \ The Zend Engine License, version 2.00\nCopyright (c) 1999-2002 Zend Technologies Ltd.\ + \ All rights reserved.\n--------------------------------------------------------------------\ + \ \n\nRedistribution and use in source and binary forms, with or without\nmodification,\ + \ is permitted provided that the following conditions\nare met:\n\n 1. Redistributions\ + \ of source code must retain the above copyright\n notice, this list of conditions and\ + \ the following disclaimer. \n \n 2. Redistributions in binary form must reproduce the\ + \ above \n copyright notice, this list of conditions and the following \n disclaimer\ + \ in the documentation and/or other materials provided\n with the distribution.\n \n\ + \ 3. The names \"Zend\" and \"Zend Engine\" must not be used to endorse\n or promote\ + \ products derived from this software without prior\n permission from Zend Technologies\ + \ Ltd. For written permission,\n please contact license@zend.com. \n \n 4. Zend Technologies\ + \ Ltd. may publish revised and/or new versions\n of the license from time to time. Each\ + \ version will be given a\n distinguishing version number.\n Once covered code has\ + \ been published under a particular version\n of the license, you may always continue\ + \ to use it under the\n terms of that version. You may also choose to use such covered\n\ + \ code under the terms of any subsequent version of the license\n published by Zend\ + \ Technologies Ltd. No one other than Zend\n Technologies Ltd. has the right to modify\ + \ the terms applicable\n to covered code created under this License.\n\n 5. Redistributions\ + \ of any form whatsoever must retain the following\n acknowledgment:\n \"This product\ + \ includes the Zend Engine, freely available at\n http://www.zend.com\"\n\n 6. All\ + \ advertising materials mentioning features or use of this\n software must display the\ + \ following acknowledgment:\n \"The Zend Engine is freely available at http://www.zend.com\"\ + \n\nTHIS SOFTWARE IS PROVIDED BY ZEND TECHNOLOGIES LTD. ``AS IS'' AND \nANY EXPRESSED OR\ + \ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND FITNESS FOR A \nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ZEND\nTECHNOLOGIES\ + \ LTD. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL\ + \ DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\ + \ LOSS OF\nUSE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY\ + \ OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR\ + \ OTHERWISE) ARISING IN ANY WAY OUT\nOF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\ + \ POSSIBILITY OF\nSUCH DAMAGE.\n--------------------------------------------------------------------" json: zend-2.0.json - yml: zend-2.0.yml + yaml: zend-2.0.yml html: zend-2.0.html - text: zend-2.0.LICENSE + license: zend-2.0.LICENSE - license_key: zeromq-exception-lgpl-3.0 + category: Copyleft Limited spdx_license_key: LicenseRef-scancode-zeromq-exception-lgpl-3.0 other_spdx_license_keys: [] is_exception: yes is_deprecated: no - category: Copyleft Limited + text: | + SPECIAL EXCEPTION GRANTED BY COPYRIGHT HOLDERS + + As a special exception, copyright holders give you permission to link this + library with independent modules to produce an executable, regardless of the + license terms of these independent modules, and to copy and distribute the + resulting executable under terms of your choice, provided that you also meet, + for each linked independent module, the terms and conditions of the license of + that module. An independent module is a module which is not derived from or + based on this library. If you modify this library, you must extend this + exception to your version of the library. json: zeromq-exception-lgpl-3.0.json - yml: zeromq-exception-lgpl-3.0.yml + yaml: zeromq-exception-lgpl-3.0.yml html: zeromq-exception-lgpl-3.0.html - text: zeromq-exception-lgpl-3.0.LICENSE + license: zeromq-exception-lgpl-3.0.LICENSE - license_key: zeusbench + category: Permissive spdx_license_key: LicenseRef-scancode-zeusbench other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "This program may be used and copied freely providing this copyright notice\nis not\ + \ removed.\n\nThis software is provided \"as is\" and any express or implied waranties,\ + \ \nincluding but not limited to, the implied warranties of merchantability and\nfitness\ + \ for a particular purpose are disclaimed. In no event shall \nZeus Technology Ltd. be\ + \ liable for any direct, indirect, incidental, special, \nexemplary, or consequential damaged\ + \ (including, but not limited to, \nprocurement of substitute good or services; loss of\ + \ use, data, or profits;\nor business interruption) however caused and on theory of liability.\ + \ Whether\nin contract, strict liability or tort (including negligence or otherwise) \n\ + arising in any way out of the use of this software, even if advised of the\npossibility\ + \ of such damage." json: zeusbench.json - yml: zeusbench.yml + yaml: zeusbench.yml html: zeusbench.html - text: zeusbench.LICENSE + license: zeusbench.LICENSE - license_key: zhorn-stickies + category: Proprietary Free spdx_license_key: LicenseRef-scancode-zhorn-stickies other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: "Copyright, licence and disclaimer\nStickies is freeware. You may use this software\ + \ on any number of computers for as long as you like, and you don't have to pay a penny.\ + \ There are no crippled features for registered users only, no time delays and no stupid\ + \ nag screens.\n\nAll that said, Stickies is not public domain software. I allow the free\ + \ distribution of the software, but I retain ownership and copyright of the software and\ + \ its source code in its entirety.\n\nYou may use and/or distribute this software only subject\ + \ to the following conditions:\n\n You may not modify the program or documentation files\ + \ in any way.\n You may not sell the software or charge a distribution fee, except to\ + \ recover the media costs.\n You may not remove my name or copyright notification, and\ + \ you may not claim to be the owner or author of this software.\n You understand and\ + \ agree with this licence and with the disclaimer printed below. \n\nDisclaimer\nWhile every\ + \ care has been taken to ensure that Stickies is safe, non-destructive and will not lose\ + \ your data, you use this product entirely at your own risk. The author will not be held\ + \ responsible or liable for any damages resulting from your use, misuse, or inability to\ + \ use this product.\n\nIf you do not agree with this disclaimer or the above conditions\ + \ of use, you should not use this product." json: zhorn-stickies.json - yml: zhorn-stickies.yml + yaml: zhorn-stickies.yml html: zhorn-stickies.html - text: zhorn-stickies.LICENSE + license: zhorn-stickies.LICENSE - license_key: zimbra-1.3 + category: Copyleft Limited spdx_license_key: Zimbra-1.3 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Zimbra Public License, Version 1.3 (ZPL)\n\nThis Zimbra Public License (this \"Agreement\"\ + ) is a legal agreement that\ndescribes the terms under which VMware, Inc., a Delaware corporation\ + \ having its\nprincipal place of business at 3401 Hillview Avenue, Palo Alto, California\ + \ 94304\n(\"VMware\") will provide software to you via download or otherwise (\"Software\"\ + ).\nBy using the Software, you, an individual or an entity (\"You\") agree to the\nterms\ + \ of this Agreement.\n\nIn consideration of the mutual promises and upon the terms and conditions\ + \ set\nforth below, the parties agree as follows:\n\n1.\tGrant of Copyright License\n\n\ + 1.1 - Subject to the terms and conditions of this Agreement, VMware hereby\ngrants to You,\ + \ under any and all of its copyright interest in and to the\nSoftware, a royalty-free, non-exclusive,\ + \ non-transferable license to copy,\nmodify, compile, execute, and distribute the Software\ + \ and Modifications. For the\npurposes of this Agreement, any change to, addition to, or\ + \ abridgement of the\nSoftware made by You is a \"Modification;\" however, any file You\ + \ add to the\nSoftware that does not contain any part of the Software is not a \"Modification.\"\ + \n\n1.2 - If You are an individual acting on behalf of a corporation or other\nentity, Your\ + \ use of the Software or any Modification is subject to Your having\nthe authority to bind\ + \ such corporation or entity to this Agreement. Providing\ncopies to persons within such\ + \ corporation or entity is not considered\ndistribution for purposes of this Agreement.\n\ + \n1.3 - For the Software or any Modification You distribute in source code format,\nYou\ + \ must do so only under the terms of this Agreement, and You must include a\ncomplete copy\ + \ of this Agreement with Your distribution. With respect to any\nModification You distribute\ + \ in source code format, the terms of this Agreement\nwill apply to You in the same way\ + \ those terms apply to VMware with respect to\nthe Software. In other words, when You are\ + \ distributing Modifications under this\nAgreement, You \"stand in the shoes\" of VMware\ + \ in terms of the rights You grant\nand how the terms and conditions apply to You and the\ + \ licensees of Your\nModifications. Notwithstanding the foregoing, when You \"stand in the\ + \ shoes\" of\nVMware, You are not subject to the jurisdiction provision under Section 7,\ + \ which\nrequires all disputes under this Agreement to be subject to the jurisdiction of\n\ + federal or state courts of northern California.\n\n1.4 - For the Software or any Modification\ + \ You distribute in compiled or object\ncode format, You must also provide recipients with\ + \ access to the Software or\nModification in source code format along with a complete copy\ + \ of this Agreement.\nThe distribution of the Software or Modifications in compiled or object\ + \ code\nformat may be under a license of Your choice, provided that You are in\ncompliance\ + \ with the terms of this Agreement. In addition, You must make\nabsolutely clear that any\ + \ license terms applying to such Software or\nModification that differ from this Agreement\ + \ are offered by You alone and not by\nVMware, and that such license does not restrict recipients\ + \ from exercising\nrights in the source code to the Software granted by VMware under this\ + \ Agreement\nor rights in the source code to any Modification granted by You as described\ + \ in\nSection 1.3.\n\n1.5 - This Agreement does not limit Your right to distribute files\ + \ that are\nentirely Your own work (i.e., which do not incorporate any portion of the\n\ + Software and are not Modifications) under any terms You choose.\n\n2.\tSupport\n\nVMware\ + \ has no obligation to provide technical support or updates to You. Nothing\nin this Agreement\ + \ requires VMware to enter into any license with You for any\nother edition of the Software.\n\ + \n3.\tIntellectual Property Rights\n\n3.1 - Except for the license expressly granted under\ + \ copyright in Section 1.1,\nno rights, licenses or forbearances are granted or may arise\ + \ in relation to this\nAgreement whether expressly, by implication, exhaustion, estoppel\ + \ or otherwise.\nAll rights, including all intellectual property rights, that are not expressly\n\ + granted under this Agreement are hereby reserved.\n\n3.2 - In any copy of the Software or\ + \ in any Modification you create, You must\nretain and reproduce, any and all copyright,\ + \ patent, trademark, and attribution\nnotices that are included in the Software in the same\ + \ form as they appear in the\nSoftware. This includes the preservation of attribution notices\ + \ in the form of\ntrademarks or logos that exist within a user interface of the Software.\n\ + \n3.3 - This license does not grant You rights to use any party's name, logo, or\ntrademarks,\ + \ except solely as necessary to comply with Section 3.2.\n\n4.\tDisclaimer of Warranties\n\ + \nTHE SOFTWARE IS PROVIDED \"AS IS\" AND WITHOUT WARRANTY OF ANY KIND. VMWARE MAKES\nNO\ + \ WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY REGARDING OR RELATING TO\nTHE SOFTWARE.\ + \ SPECIFICALLY, VMWARE DOES NOT WARRANT THAT THE SOFTWARE WILL BE\nERROR FREE OR WILL PERFORM\ + \ IN AN UNINTERRUPTED MANNER. TO THE GREATEST EXTENT\nALLOWED BY LAW, VMWARE SPECIFICALLY\ + \ DISCLAIMS ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\ + \ (EVEN IF VMWARE HAD BEEN\nINFORMED OF SUCH PURPOSE), AND NONINFRINGEMENT WITH RESPECT\ + \ TO THE SOFTWARE, ANY\nMODIFICATIONS THERETO AND WITH RESPECT TO THE USE OF THE FOREGOING.\n\ + \n5.\tLimitation of Liability\n\nIN NO EVENT WILL VMWARE BE LIABLE FOR ANY DIRECT, INDIRECT,\ + \ INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES OF ANY KIND (INCLUDING WITHOUT\ + \ LIMITATION\nLOSS OF PROFITS, LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF DATA, COST OF\n\ + COVER) IN CONNECTION WITH OR ARISING OUT OF OR RELATING TO THE FURNISHING,\nPERFORMANCE\ + \ OR USE OF THE SOFTWARE OR ANY OTHER RIGHTS GRANTED HEREUNDER,\nWHETHER ALLEGED AS A BREACH\ + \ OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING\nNEGLIGENCE, AND EVEN IF VMWARE HAS BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n6.\tTerm and Termination\n\n6.1 - This Agreement\ + \ will continue in effect unless and until terminated earlier\npursuant to this Section\ + \ 6.\n\n6.2 - In the event You violate the terms of this Agreement, VMware may terminate\n\ + this Agreement.\n\n6.3 - All licenses granted hereunder shall terminate upon the termination\ + \ of\nthis Agreement. Termination will be in addition to any rights and remedies\navailable\ + \ to VMware at law or equity or under this Agreement.\n\n6.4 - Termination of this Agreement\ + \ will not affect the provisions regarding\nreservation of rights (Section 3.1), provisions\ + \ disclaiming or limiting VMware's\nliability (Sections 4 and 5), Termination (Section 6)\ + \ or Miscellaneous (Section\n7), which provisions will survive termination of this Agreement.\n\ + \n7.\tMiscellaneous\n\nThis Agreement contains the entire agreement of the parties with\ + \ respect to the\nsubject matter of this Agreement and supersedes all previous communications,\n\ + representations, understandings and agreements, either oral or written, between\nthe parties\ + \ with respect to said subject matter. The relationship of the parties\nhereunder is that\ + \ of independent contractors, and this Agreement will not be\nconstrued as creating an agency,\ + \ partnership, joint venture or any other form of\nlegal association between the parties.\ + \ If any term, condition, or provision in\nthis Agreement is found to be invalid, unlawful\ + \ or unenforceable to any extent,\nthis Agreement will be construed in a manner that most\ + \ closely effectuates the\nintent of this Agreement. Such invalid term, condition or provision\ + \ will be\nsevered from the remaining terms, conditions and provisions, which will continue\n\ + to be valid and enforceable to the fullest extent permitted by law. This\nAgreement will\ + \ be interpreted and construed in accordance with the laws of the\nState of California and\ + \ the United States of America, without regard to conflict\nof law principles. The U.N.\ + \ Convention on Contracts for the International Sale\nof Goods shall not apply to this Agreement.\ + \ All disputes arising out of this\nAgreement involving VMware or any of its subsidiaries\ + \ shall be subject to the\njurisdiction of the federal or state courts of northern California,\ + \ with venue\nlying in Santa Clara County, California. No rights may be assigned, no\nobligations\ + \ may be delegated, and this Agreement may not be transferred by You,\nin whole or in part,\ + \ whether voluntary or by operation of law, including by way\nof sale of assets, merger\ + \ or consolidation, without the prior written consent of\nVMware, and any purported assignment,\ + \ delegation or transfer without such\nconsent shall be void ab initio. Any waiver of the\ + \ provisions of this Agreement\nor of a party's rights or remedies under this Agreement\ + \ must be in writing to be\neffective. Failure, neglect or delay by a party to enforce the\ + \ provisions of\nthis Agreement or its rights or remedies at any time, will not be construed\ + \ or\nbe deemed to be a waiver of such party's rights under this Agreement and will\nnot\ + \ in any way affect the validity of the whole or any part of this Agreement or\nprejudice\ + \ such party's right to take subsequent action." json: zimbra-1.3.json - yml: zimbra-1.3.yml + yaml: zimbra-1.3.yml html: zimbra-1.3.html - text: zimbra-1.3.LICENSE + license: zimbra-1.3.LICENSE - license_key: zimbra-1.4 + category: Copyleft Limited spdx_license_key: Zimbra-1.4 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Copyleft Limited + text: "Zimbra Public License, Version 1.4 (ZPL)\nThis Zimbra Public License (this \"Agreement\"\ + ) is a legal agreement that describes the terms under which Zimbra, Inc., a Texas corporation\ + \ (\"Zimbra\") will provide software to you via download or otherwise (\"Software\"). By\ + \ using the Software, you, an individual or an entity (\"You\") agree to the terms of this\ + \ Agreement.\n\nIn consideration of the mutual promises and upon the terms and conditions\ + \ set forth below, the parties agree as follows:\n\n1. Grant of Copyright License\n\n1.1\ + \ - Subject to the terms and conditions of this Agreement, Zimbra hereby grants to You,\ + \ under any and all of its copyright interest in and to the Software, a royalty-free, non-exclusive,\ + \ non-transferable license to copy, modify, compile, execute, and distribute the Software\ + \ and Modifications. For the purposes of this Agreement, any change to, addition to, or\ + \ abridgement of the Software made by You is a \"Modification;\" however, any file You add\ + \ to the Software that does not contain any part of the Software is not a \"Modification.\"\ + \n\n1.2 - If You are an individual acting on behalf of a corporation or other entity, Your\ + \ use of the Software or any Modification is subject to Your having the authority to bind\ + \ such corporation or entity to this Agreement. Providing copies to persons within such\ + \ corporation or entity is not considered distribution for purposes of this Agreement.\n\ + \n1.3 - For the Software or any Modification You distribute in source code format, You must\ + \ do so only under the terms of this Agreement, and You must include a complete copy of\ + \ this Agreement with Your distribution. With respect to any Modification You distribute\ + \ in source code format, the terms of this Agreement will apply to You in the same way those\ + \ terms apply to Zimbra with respect to the Software. In other words, when You are distributing\ + \ Modifications under this Agreement, You \"stand in the shoes\" of Zimbra in terms of the\ + \ rights You grant and how the terms and conditions apply to You and the licensees of Your\ + \ Modifications. Notwithstanding the foregoing, when You \"stand in the shoes\" of Zimbra,\ + \ You are not subject to the jurisdiction provision under Section 7, which requires all\ + \ disputes under this Agreement to be subject to the jurisdiction of federal or state courts\ + \ of Northern Texas.\n\n1.4 - For the Software or any Modification You distribute in compiled\ + \ or object code format, You must also provide recipients with access to the Software or\ + \ Modification in source code format along with a complete copy of this Agreement. The distribution\ + \ of the Software or Modifications in compiled or object code format may be under a license\ + \ of Your choice, provided that You are in compliance with the terms of this Agreement.\ + \ In addition, You must make absolutely clear that any license terms applying to such Software\ + \ or Modification that differ from this Agreement are offered by You alone and not by Zimbra,\ + \ and that such license does not restrict recipients from exercising rights in the source\ + \ code to the Software granted by Zimbra under this Agreement or rights in the source code\ + \ to any Modification granted by You as described in Section 1.3.\n\n1.5 - This Agreement\ + \ does not limit Your right to distribute files that are entirely Your own work (i.e., which\ + \ do not incorporate any portion of the Software and are not Modifications) under any terms\ + \ You choose.\n\n2. Support \nZimbra has no obligation to provide technical support or updates\ + \ to You. Nothing in this Agreement requires Zimbra to enter into any license with You for\ + \ any other edition of the Software.\n\n3. Intellectual Property Rights\n\n3.1 - Except\ + \ for the license expressly granted under copyright in Section 1.1, no rights, licenses\ + \ or forbearances are granted or may arise in relation to this Agreement whether expressly,\ + \ by implication, exhaustion, estoppel or otherwise. All rights, including all intellectual\ + \ property rights, that are not expressly granted under this Agreement are hereby reserved.\n\ + \n3.2 - In any copy of the Software or in any Modification you create, You must retain and\ + \ reproduce any and all copyright, patent, trademark, and attribution notices that are included\ + \ in the Software in the same form as they appear in the Software. This includes the preservation\ + \ of attribution notices in the form of trademarks or logos that exist within a user interface\ + \ of the Software.\n\n3.3 - This license does not grant You rights to use any party’s name,\ + \ logo, or trademarks, except solely as necessary to comply with Section 3.2.\n\n4. Disclaimer\ + \ of Warranties \nTHE SOFTWARE IS PROVIDED \"AS IS\" AND WITHOUT WARRANTY OF ANY KIND. ZIMBRA\ + \ MAKES NO WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY, REGARDING OR RELATING TO\ + \ THE SOFTWARE. SPECIFICALLY, ZIMBRA DOES NOT WARRANT THAT THE SOFTWARE WILL BE ERROR FREE\ + \ OR WILL PERFORM IN AN UNINTERRUPTED MANNER. TO THE GREATEST EXTENT ALLOWED BY LAW, ZIMBRA\ + \ SPECIFICALLY DISCLAIMS ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\ + \ PURPOSE (EVEN IF ZIMBRA HAD BEEN INFORMED OF SUCH PURPOSE), AND NONINFRINGEMENT WITH RESPECT\ + \ TO THE SOFTWARE, ANY MODIFICATIONS THERETO, AND WITH RESPECT TO THE USE OF THE FOREGOING.\n\ + \n5. Limitation of Liability \nIN NO EVENT WILL ZIMBRA BE LIABLE FOR ANY DIRECT, INDIRECT,\ + \ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES OF ANY KIND (INCLUDING WITHOUT\ + \ LIMITATION LOSS OF PROFITS, LOSS OF USE, BUSINESS INTERRUPTION, LOSS OF DATA, AND COST\ + \ OF COVER) IN CONNECTION WITH OR ARISING OUT OF OR RELATING TO THE FURNISHING, PERFORMANCE,\ + \ OR USE OF THE SOFTWARE OR ANY OTHER RIGHTS GRANTED HEREUNDER, WHETHER ALLEGED AS A BREACH\ + \ OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, AND EVEN IF ZIMBRA HAS BEEN ADVISED\ + \ OF THE POSSIBILITY OF SUCH DAMAGES.\n\n6. Term and Termination\n\n6.1 - This Agreement\ + \ will continue in effect unless and until terminated earlier pursuant to this Section 6.\n\ + \n6.2 - In the event You violate the terms of this Agreement, Zimbra may terminate this\ + \ Agreement.\n\n6.3 - All licenses granted hereunder shall terminate upon the termination\ + \ of this Agreement. Termination will be in addition to any rights and remedies available\ + \ to Zimbra at law or equity or under this Agreement.\n\n6.4 - Termination of this Agreement\ + \ will not affect the provisions regarding reservation of rights (Section 3.1), provisions\ + \ disclaiming or limiting Zimbra’s liability (Sections 4 and 5), Termination (Section 6),\ + \ or Miscellaneous (Section 7), which provisions will survive termination of this Agreement.\n\ + \n7. Miscellaneous \nThis Agreement contains the entire agreement of the parties with respect\ + \ to the subject matter of this Agreement and supersedes all previous communications, representations,\ + \ understandings, and agreements, either oral or written, between the parties with respect\ + \ to said subject matter. The relationship of the parties hereunder is that of independent\ + \ contractors, and this Agreement will not be construed as creating an agency, partnership,\ + \ joint venture, or any other form of legal association between the parties. If any term,\ + \ condition, or provision in this Agreement is found to be invalid, unlawful, or unenforceable\ + \ to any extent, this Agreement will be construed in a manner that most closely effectuates\ + \ the intent of this Agreement. Such invalid term, condition or provision will be severed\ + \ from the remaining terms, conditions, and provisions, which will continue to be valid\ + \ and enforceable to the fullest extent permitted by law. This Agreement will be interpreted\ + \ and construed in accordance with the laws of the State of Delaware and the United States\ + \ of America, without regard to conflict of law principles. The U.N. Convention on Contracts\ + \ for the International Sale of Goods shall not apply to this Agreement. All disputes arising\ + \ out of this Agreement involving Zimbra or any of its parents or subsidiaries shall be\ + \ subject to the jurisdiction of the federal or state courts of Northern Texas, with venue\ + \ lying in Dallas County, Texas. No rights may be assigned, no obligations may be delegated,\ + \ and this Agreement may not be transferred by You, in whole or in part, whether voluntary\ + \ or by operation of law, including by way of sale of assets, merger, or consolidation,\ + \ without the prior written consent of Zimbra, and any purported assignment, delegation,\ + \ or transfer without such consent shall be void ab initio. Any waiver of the provisions\ + \ of this Agreement or of a party’s rights or remedies under this Agreement must be in writing\ + \ to be effective. Failure, neglect, or delay by a party to enforce the provisions of this\ + \ Agreement or its rights or remedies at any time will not be construed or be deemed to\ + \ be a waiver of such party’s rights under this Agreement and will not in any way affect\ + \ the validity of the whole or any part of this Agreement or prejudice such party’s right\ + \ to take subsequent action." json: zimbra-1.4.json - yml: zimbra-1.4.yml + yaml: zimbra-1.4.yml html: zimbra-1.4.html - text: zimbra-1.4.LICENSE + license: zimbra-1.4.LICENSE - license_key: zipeg + category: Proprietary Free spdx_license_key: LicenseRef-scancode-zipeg other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Proprietary Free + text: | + Zipeg License + + Redistribution and use in any forms, without modification, is permitted provided + that the following conditions are met: + + Redistributions 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 www.zipeg.com 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. json: zipeg.json - yml: zipeg.yml + yaml: zipeg.yml html: zipeg.html - text: zipeg.LICENSE + license: zipeg.LICENSE - license_key: ziplist5-geocode-duplication-addendum + category: Commercial spdx_license_key: LicenseRef-scancode-ziplist5-geocode-dup-addendum other_spdx_license_keys: - LicenseRef-scancode-ziplist5-geocode-duplication-addendum is_exception: no is_deprecated: no - category: Commercial + text: | + ZIPList5 Geocode Duplication License Addendum + + + DUPLICATION LICENSE ADDENDUM + Please read this ZIPList5 Geocode Duplication License Addendum before duplicating ZIPList5 Geocode. This Duplication License Addendum amends and supplements the ZIPList5 Geocode End-User Enterprise License or End-User Workstation License to which it is attached. You and your organization, as the Licensee, indicate your acceptance of the Terms and Conditions of this Addendum by duplicating and distribution to third parties derivative works containing ZIPList5 Geocode in whole or in part. If you do not agree to the terms of this Duplication License Addendum, you are not permitted to duplicate ZIPList5 Geocode for distribution to third parties, and you must immediately notify CD Light, LLC for a refund of the duplication license addendum purchase price. + + GRANT OF LICENSE + + CD Light, LLC grants Licensee the following additional non-exclusive, world-wide rights with respect to ZIPList5 Geocode. Licensee may: (a) use ZIPList5 Geocode in accordance with the terms of this Addendum; (b) make multiple copies of ZIPList5 Geocode for backup or archival purposes; (c) incorporate ZIPList5 Geocode, in whole or in part, into a derivative work, for commercial or non-profit distribution outside of Licensee's organization; and (d) make and sell multiple copies of the derivative work containing ZIPList5 Geocode, provided Licensee makes no more copies than the number specified by the ZIPList5 Geocode Duplication License Addendum invoice issued to Licensee by CD Light, LLC. + + RESTRICTIONS + + Licensee may NOT: (a) use, copy, or distribute ZIPList5 Geocode except as provided in this Addendum; (b) modify, adapt, or translate ZIPList5 Geocode in whole or in part, except as provided in this Addendum; or (c) copy and/or distribute ZIPList5 Geocode in its entirety as a database file containing nothing other than raw data. + + DISTRIBUTION + + Permission to distribute ZIPList5 Geocode, in whole or in part, as part of a derivative work, outside of Licensee's organization, is specifically granted by this Addendum. + + DERIVATIVE WORKS + + Permission to prepare derivative works, incorporating ZIPList5 Geocode in whole or in part is granted to Licensee. Such derivative works may be distributed commercially or privately outside of the Licensee's organization. + + TERM + + The term of this Addendum shall be perpetual from the date of the invoice for ZIPList5 Geocode issued to Licensee by CD Light, LLC. All provisions of this Addendum apply to all versions of ZIPList5 Geocode delivered to Licensee by CD Light, LLC under the terms of the attached ZIPList5 Geocode Workstation or Enterprise License Agreement, and remain in effect after all such version updates have been delivered to Licensee by CD Light, LLC. + + VERSION UPDATES + + This Addendum entitles Licensee to duplicate the one version ("Current Version") of ZIPList5 Geocode which is available from CD Light, LLC on the date of the invoice issued to Licensee by CD Light, LLC. However, if Licensee has paid for a quarterly subscription for ZIPList5 Geocode, Licensee is entitled to receive the Current Version, plus the next three (3) quarterly version updates of ZIPList5 Geocode. If Licensee has paid for a monthly subscription for ZIPList5 Geocode, Licensee is entitled to receive the Current Version, plus the next eleven (11) monthly version updates of ZIPList5 Geocode. + + OWNERSHIP & COPYRIGHT + + Title, ownership rights and intellectual property rights in and to ZIPList5 Geocode and all copies thereof shall remain in CD Light, LLC and/or its licensors. ZIPList5 Geocode is copyrighted and protected by United States copyright laws and international treaty provisions. Licensee agrees: (a) not to remove any copyright notice from ZIPList5 Geocode; (b) to reproduce all such notices on any authorized copies Licensee makes; and (c) to use best efforts to prevent any unauthorized copying of ZIPList5 Geocode. + + ZIPList5 Geocode, in its various forms, is a compilation of information gathered by CD Light, LLC. ZIPList5 Geocode contains a large body of information that is public knowledge, but at the same time it represents a substantial creative compilation effort. Accordingly, it enjoys the same copyright protection as other reference works, such as dictionaries, that contain compilation effort. + + If Licensee has any questions concerning this Addendum, please send email to support@zipinfo.com or write to CD Light, LLC, 230 N Tranquil Path Dr, The Woodlands, TX 77380-2758, USA. json: ziplist5-geocode-duplication-addendum.json - yml: ziplist5-geocode-duplication-addendum.yml + yaml: ziplist5-geocode-duplication-addendum.yml html: ziplist5-geocode-duplication-addendum.html - text: ziplist5-geocode-duplication-addendum.LICENSE + license: ziplist5-geocode-duplication-addendum.LICENSE - license_key: ziplist5-geocode-end-user-enterprise + category: Commercial spdx_license_key: LicenseRef-scancode-ziplist5-geocode-enterprise other_spdx_license_keys: - LicenseRef-scancode-ziplist5-geocode-end-user-enterprise is_exception: no is_deprecated: no - category: Commercial + text: | + ZIPList5 Geocode End-User Enterprise License Agreement + + LICENSE AGREEMENT + Please read this License Agreement before using ZIPList5 Geocode. This is a contract with important legal consequences. You and your organization, as the Licensee, indicate your acceptance of the Terms and Conditions of this Agreement by using or copying ZIPList5 Geocode. If you do not agree to the terms of this License Agreement, you are not permitted to use ZIPList5 Geocode, and you must immediately delete all downloaded files of ZIPList5 Geocode from your computer(s) and/or promptly return the ZIPList5 Geocode media to CD Light, LLC for a refund of the purchase price. + + GRANT OF LICENSE + + CD Light, LLC grants Licensee the following non-exclusive, world-wide rights with respect to ZIPList5 Geocode. Licensee may: (a) use ZIPList5 Geocode in accordance with the terms of this Agreement; (b) make multiple copies of ZIPList5 Geocode for backup or archival purposes; (c) install ZIPList5 Geocode at multiple locations and/or on multiple computers or workstations. ZIPList5 Geocode may be installed on multiple network servers, in whole or in part, or as part of a derivative work, and may be used simultaneously by an unlimited number of users within Licensee's organization. + + RESTRICTIONS + + Licensee may NOT: (a) use or copy ZIPList5 Geocode except as provided in this Agreement; (b) transfer, rent, lease, lend, copy, modify, translate, sublicense, timeshare, or electronically transmit ZIPList5 Geocode or any derivatives thereof to any third party; (c) modify, adapt, or translate ZIPList5 Geocode in whole or in part, except as provided in this Agreement; or (d) incorporate ZIPList5 Geocode into another product for commercial or non-profit distribution. + + DISTRIBUTION + + Permission to distribute ZIPList5 Geocode, in whole or in part, or as part of a derivative work, outside of Licensee's organization, is not granted by this Agreement, and is specifically prohibited. + + DERIVATIVE WORKS + + Permission to prepare derivative works, incorporating ZIPList5 Geocode in whole or in part, for use only within Licensee's organization, is granted to Licensee. Such derivative works may be distributed within Licensee's organization and/or used simultaneously used by an unlimited number of users within Licensee's organization. + + Such derivative works may not be used or distributed, commercially or privately, outside of the Licensee's organization. The Licensee may obtain the additional right to distribute derivative works incorporating ZIPList5 Geocode in whole or in part, outside of Licensee's organization, but only by acquiring an additional ZIPList5 Geocode Duplication License Addendum and paying the appropriate royalty fee to CD Light, LLC. + + TERM + + The term of this Agreement shall be perpetual from the date of the invoice for ZIPList5 Geocode issued to Licensee by CD Light, LLC. + + VERSION UPDATES + + This Agreement entitles Licensee to use the one version ("Current Version") of ZIPList5 Geocode which is available from CD Light, LLC on the date of the invoice issued to Licensee by CD Light, LLC. However, if Licensee has paid for a quarterly subscription for ZIPList5 Geocode, Licensee is entitled to receive the Current Version, plus the next three (3) quarterly version updates of ZIPList5 Geocode. If Licensee has paid for a monthly subscription for ZIPList5 Geocode, Licensee is entitled to receive the Current Version, plus the next eleven (11) monthly version updates of ZIPList5 Geocode. All provisions of this Agreement apply to all versions of ZIPList5 Geocode delivered to Licensee by CD Light, LLC, and remain in effect after all version updates have been delivered to Licensee by CD Light, LLC. + + OWNERSHIP & COPYRIGHT + + Title, ownership rights and intellectual property rights in and to ZIPList5 Geocode and all copies thereof shall remain in CD Light, LLC and/or its licensors. ZIPList5 Geocode is copyrighted and protected by United States copyright laws and international treaty provisions. Licensee agrees: (a) not to remove any copyright notice from ZIPList5 Geocode; (b) to reproduce all such notices on any authorized copies Licensee makes; and (c) to use best efforts to prevent any unauthorized copying of ZIPList5 Geocode. + + ZIPList5 Geocode, in its various forms, is a compilation of information gathered by CD Light, LLC. ZIPList5 Geocode contains a large body of information that is public knowledge, but at the same time it represents a substantial creative compilation effort. Accordingly, it enjoys the same copyright protection as other reference works, such as dictionaries, that contain compilation effort. + + LIMITED WARRANTY + + For a period of thirty (30) days from the date of the ZIPList5 Geocode invoice issued to Licensee by CD Light, LLC, CD Light, LLC warrants that: (a) the media (if any) on which ZIPList5 Geocode is distributed will be free from defects in material and workmanship under normal use; and (b) the database conforms substantially to the accompanying Documentation. Specifically, CD Light, LLC makes no representation or warranty that ZIPList5 Geocode data, or the accompanying Documentation are "error-free", or meet Licensee's particular standards, requirements, or needs. In all events, any implied warranty, representation, condition, or other term is limited to the physical media (if any) and documentation, and is limited to the 30-day duration of the limited warranty. If CD Light, LLC receives notification within the warranty period of defects in materials or workmanship, and determines that such notification is correct, CD Light, LLC will replace the defective media or documentation. + + NO OTHER WARRANTIES + + CD LIGHT SPECIFICALLY DISCLAIMS ALL OTHER WARRANTIES, REPRESENTATIONS, OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, ANY IMPLIED WARRANTY OR CONDITION OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. ALL OTHER IMPLIED TERMS ARE EXCLUDED. + + LIMITATION OF LIABILITY + + The entire and exclusive liability and remedy for breach of the limited warranty shall be limited to replacement of defective media or documentation and shall not include or extend to any claim for or right to recover any other damages, including but not limited to, loss of profit, data, or use of the software or special, incidental or consequential damages, or other similar claims, even if CD Light, LLC has been specifically advised of the possibility of such damages. In no event will CD Light, LLC's liability for any damages to Licensee or any third party ever exceed the original purchase price paid for the package or the license to use the software, regardless of the form of the claim. + + TERMINATION + + Licensee may terminate this Agreement at any time. CD Light, LLC will immediately terminate this Agreement and Licensee's right to use ZIPList5 Geocode without written notice upon Licensee's failure to comply with any provision of this Agreement. If this Agreement is terminated for any reason, Licensee will: (a) cease all use of ZIPList5 Geocode; and (b) delete ZIPList5 Geocode and all copies from all computers on which it is resident. + + ENTIRE AGREEMENT + + This Agreement represents the complete agreement between the parties relating to this license for ZIPList5 Geocode and supersedes all prior agreements, communications, proposals, and representations between the parties and prevails over any conflicting or additional terms of any quote, order, acknowledgment or similar communication. This Agreement may only be modified by a license addendum which accompanies this license or by a written document signed by both parties. + + GOVERNMENT RESTRICTED RIGHTS + + ZIPList5 Geocode is provided with RESTRICTED RIGHTS. Use, duplication, or disclosure by the United States Government is subject to restrictions as set forth in subpara-graph (c) (1) (ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs (c) (1) and (2) of the Commercial Computer Software-Restricted Rights clause at 48 CFR 52.227-19, as applicable. Manufacturer is CD Light, LLC, 230 N Tranquil Path Dr, The Woodlands, TX 77380-2758. + + GENERAL + + This Agreement is governed and interpreted in accordance with the laws of the State of Texas, USA, except for that body of law dealing with conflicts of law. If any provision of this Agreement is held by a court of competent jurisdiction to be contrary to law, that provision will be enforced to the maximum extent permissible and the remaining provisions of this Agreement will remain in full force and effect. + + If Licensee has any questions concerning this Agreement, please send email to support@zipinfo.com or write to CD Light, LLC, 230 N Tranquil Path Dr, The Woodlands, TX 77380-2758, USA. json: ziplist5-geocode-end-user-enterprise.json - yml: ziplist5-geocode-end-user-enterprise.yml + yaml: ziplist5-geocode-end-user-enterprise.yml html: ziplist5-geocode-end-user-enterprise.html - text: ziplist5-geocode-end-user-enterprise.LICENSE + license: ziplist5-geocode-end-user-enterprise.LICENSE - license_key: ziplist5-geocode-end-user-workstation + category: Commercial spdx_license_key: LicenseRef-scancode-ziplist5-geocode-workstation other_spdx_license_keys: - LicenseRef-scancode-ziplist5-geocode-end-user-workstation is_exception: no is_deprecated: no - category: Commercial + text: | + ZIPList5 Geocode End-User Workstation (Single-User) License Agreement + + LICENSE AGREEMENT + Please read this License Agreement before using ZIPList5 Geocode. This is a contract with important legal consequences. You and your organization, as the Licensee, indicate your acceptance of the Terms and Conditions of this Agreement by using or copying ZIPList5 Geocode. If you do not agree to the terms of this License Agreement, you are not permitted to use ZIPList5 Geocode, and you must immediately delete all downloaded files of ZIPList5 Geocode from your computer(s) and/or promptly return the ZIPList5 Geocode media to CD Light, LLC for a refund of the purchase price. + + GRANT OF LICENSE + + CD Light, LLC grants Licensee the following non-exclusive, world-wide rights with respect to ZIPList5 Geocode. Licensee may: (a) use ZIPList5 Geocode in accordance with the terms of this Agreement; (b) make one copy of ZIPList5 Geocode for backup or archival purposes; (c) install ZIPList5 Geocode at a single location on one computer or one single-user workstation. ZIPList5 Geocode may be installed on a network server, in whole or in part, or as part of a derivative work, provided it is in use at any one time by no more than the number of Workstation (Single-User) Licenses specified by the ZIPList5 Geocode invoice issued to Licensee by CD Light, LLC. + + RESTRICTIONS + + Licensee may NOT: (a) use or copy ZIPList5 Geocode except as provided in this Agreement; (b) transfer, rent, lease, lend, copy, modify, translate, sublicense, timeshare, or electronically transmit ZIPList5 Geocode or any derivatives thereof to any third party; (c) modify, adapt, or translate ZIPList5 Geocode in whole or in part, except as provided in this Agreement; or (d) incorporate ZIPList5 Geocode into another product for commercial or non-profit distribution. + + DISTRIBUTION + + Permission to distribute ZIPList5 Geocode, in whole or in part, or as part of a derivative work, outside of Licensee's immediate organization, is not granted by this Agreement, and is specifically prohibited. + + DERIVATIVE WORKS + + Permission to prepare derivative works, incorporating ZIPList5 Geocode in whole or in part, for use only within Licensee's organization, is granted to Licensee, provided that any such derivative work is in use at any one time by no more than the number of Workstation (Single-User) Licenses specified by the ZIPList5 Geocode invoice issued to Licensee by CD Light, LLC. + + Such derivative works may not be distributed commercially or privately, or used outside of the Licensee's immediate organization. The Licensee may obtain the additional right to distribute derivative works incorporating ZIPList5 Geocode in whole or in part, but only by acquiring an additional ZIPList5 Geocode Duplication License Addendum and paying the appropriate royalty fee to CD Light, LLC. + + TERM + + The term of this Agreement shall be perpetual from the date of the invoice for ZIPList5 Geocode issued to Licensee by CD Light, LLC. + + VERSION UPDATES + + This Agreement entitles Licensee to use the one version ("Current Version") of ZIPList5 Geocode which is available from CD Light, LLC on the date of the invoice issued to Licensee by CD Light, LLC. However, if Licensee has paid for a quarterly subscription for ZIPList5 Geocode, Licensee is entitled to receive the Current Version, plus the next three (3) quarterly version updates of ZIPList5 Geocode. If Licensee has paid for a monthly subscription for ZIPList5 Geocode, Licensee is entitled to receive the Current Version, plus the next eleven (11) monthly version updates of ZIPList5 Geocode. All provisions of this Agreement apply to all versions of ZIPList5 Geocode delivered to Licensee by CD Light, LLC, and remain in effect after all version updates have been delivered to Licensee by CD Light, LLC. + + OWNERSHIP & COPYRIGHT + + Title, ownership rights and intellectual property rights in and to ZIPList5 Geocode and all copies thereof shall remain in CD Light, LLC and/or its licensors. ZIPList5 Geocode is copyrighted and protected by United States copyright laws and international treaty provisions. Licensee agrees: (a) not to remove any copyright notice from ZIPList5 Geocode; (b) to reproduce all such notices on any authorized copies Licensee makes; and (c) to use best efforts to prevent any unauthorized copying of ZIPList5 Geocode. + + ZIPList5 Geocode, in its various forms, is a compilation of information gathered by CD Light, LLC. ZIPList5 Geocode contains a large body of information that is public knowledge, but at the same time it represents a substantial creative compilation effort. Accordingly, it enjoys the same copyright protection as other reference works, such as dictionaries, that contain compilation effort. + + LIMITED WARRANTY + + For a period of thirty (30) days from the date of the ZIPList5 Geocode invoice issued to Licensee by CD Light, LLC, CD Light, LLC warrants that: (a) the media (if any) on which ZIPList5 Geocode is distributed will be free from defects in material and workmanship under normal use; and (b) the database conforms substantially to the accompanying Documentation. Specifically, CD Light, LLC makes no representation or warranty that ZIPList5 Geocode data, or the accompanying Documentation are "error-free", or meet Licensee's particular standards, requirements, or needs. In all events, any implied warranty, representation, condition, or other term is limited to the physical media (if any) and documentation, and is limited to the 30-day duration of the limited warranty. If CD Light, LLC receives notification within the warranty period of defects in materials or workmanship, and determines that such notification is correct, CD Light, LLC will replace the defective media or documentation. + + NO OTHER WARRANTIES + + CD LIGHT SPECIFICALLY DISCLAIMS ALL OTHER WARRANTIES, REPRESENTATIONS, OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, ANY IMPLIED WARRANTY OR CONDITION OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. ALL OTHER IMPLIED TERMS ARE EXCLUDED. LIMITATION OF LIABILITY + + The entire and exclusive liability and remedy for breach of the limited warranty shall be limited to replacement of defective media or documentation and shall not include or extend to any claim for or right to recover any other damages, including but not limited to, loss of profit, data, or use of the software or special, incidental or consequential damages, or other similar claims, even if CD Light, LLC has been specifically advised of the possibility of such damages. In no event will CD Light, LLC's liability for any damages to Licensee or any third party ever exceed the original purchase price paid for the package or the license to use the software, regardless of the form of the claim. + + TERMINATION + + Licensee may terminate this Agreement at any time. CD Light, LLC will immediately terminate this Agreement and Licensee's right to use ZIPList5 Geocode without written notice upon Licensee's failure to comply with any provision of this Agreement. If this Agreement is terminated for any reason, Licensee will: (a) cease all use of ZIPList5 Geocode; and (b) delete ZIPList5 Geocode and all copies from all computers on which it is resident. + + ENTIRE AGREEMENT + + This Agreement represents the complete agreement between the parties relating to this license for ZIPList5 Geocode and supersedes all prior agreements, communications, proposals, and representations between the parties and prevails over any conflicting or additional terms of any quote, order, acknowledgment or similar communication. This Agreement may only be modified by a license addendum which accompanies this license or by a written document signed by both parties. + + GOVERNMENT RESTRICTED RIGHTS + + ZIPList5 Geocode is provided with RESTRICTED RIGHTS. Use, duplication, or disclosure by the United States Government is subject to restrictions as set forth in subpara-graph (c) (1) (ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs (c) (1) and (2) of the Commercial Computer Software-Restricted Rights clause at 48 CFR 52.227-19, as applicable. Manufacturer is CD Light, LLC, 230 N Tranquil Path Dr, The Woodlands, TX 77380-2758. + + GENERAL + + This Agreement is governed and interpreted in accordance with the laws of the State of Texas, USA, except for that body of law dealing with conflicts of law. If any provision of this Agreement is held by a court of competent jurisdiction to be contrary to law, that provision will be enforced to the maximum extent permissible and the remaining provisions of this Agreement will remain in full force and effect. + + If Licensee has any questions concerning this Agreement, please send email to support@zipinfo.com or write to CD Light, LLC, 230 N Tranquil Path Dr, The Woodlands, TX 77380-2758, USA. json: ziplist5-geocode-end-user-workstation.json - yml: ziplist5-geocode-end-user-workstation.yml + yaml: ziplist5-geocode-end-user-workstation.yml html: ziplist5-geocode-end-user-workstation.html - text: ziplist5-geocode-end-user-workstation.LICENSE + license: ziplist5-geocode-end-user-workstation.LICENSE - license_key: zlib + category: Permissive spdx_license_key: Zlib other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. json: zlib.json - yml: zlib.yml + yaml: zlib.yml html: zlib.html - text: zlib.LICENSE + license: zlib.LICENSE - license_key: zlib-acknowledgement + category: Permissive spdx_license_key: zlib-acknowledgement other_spdx_license_keys: - Nunit is_exception: no is_deprecated: no - category: Permissive + text: | + 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 (see the following) in the product documentation is required. + + Portions Copyright (c) 2002-2007 Charlie Poole or Copyright (c) 2002-2004 James + W. Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright (c) 2000-2002 + Philip A. Craig + + 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. json: zlib-acknowledgement.json - yml: zlib-acknowledgement.yml + yaml: zlib-acknowledgement.yml html: zlib-acknowledgement.html - text: zlib-acknowledgement.LICENSE + license: zlib-acknowledgement.LICENSE - license_key: zpl-1.0 + category: Permissive spdx_license_key: LicenseRef-scancode-zpl-1.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: "Zope Public License (ZPL) Version 1.0\n-------------------------------------\n\nCopyright\ + \ (c) Digital Creations. All rights reserved.\n\nThis license has been certified as Open\ + \ Source(tm).\n\nRedistribution and use in source and binary forms, with or without\nmodification,\ + \ are permitted provided that the following conditions are\nmet:\n\n1. Redistributions in\ + \ source code must retain the above copyright\n notice, this list of conditions, and the\ + \ following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n\ + \ notice, this list of conditions, and the following disclaimer in\n the documentation\ + \ and/or other materials provided with the\n distribution.\n\n3. Digital Creations requests\ + \ that attribution be given to Zope\n in any manner possible. Zope includes a \"Powered\ + \ by Zope\"\n button that is installed by default. While it is not a license\n violation\ + \ to remove this button, it is requested that the\n attribution remain. A significant\ + \ investment has been put\n into Zope, and this effort will continue if the Zope community\n\ + \ continues to grow. This is one way to assure that growth.\n\n4. All advertising materials\ + \ and documentation mentioning\n features derived from or use of this software must display\n\ + \ the following acknowledgement:\n\n \"This product includes software developed by\ + \ Digital Creations\n for use in the Z Object Publishing Environment\n (http://www.zope.org/).\"\ + \n\n In the event that the product being advertised includes an\n intact Zope distribution\ + \ (with copyright and license included)\n then this clause is waived.\n \ + \ \n5. Names associated with Zope or Digital Creations\ + \ must not be used to\n endorse or promote products derived from this software without\n\ + \ prior written permission from Digital Creations.\n\n6. Modified redistributions of any\ + \ form whatsoever must retain\n the following acknowledgment:\n\n \"This product includes\ + \ software developed by Digital Creations\n for use in the Z Object Publishing Environment\n\ + \ (http://www.zope.org/).\"\n\n Intact (re-)distributions of any official Zope release\ + \ do not\n require an external acknowledgement.\n\n7. Modifications are encouraged but\ + \ must be packaged separately as\n patches to official Zope releases. Distributions that\ + \ do not\n clearly separate the patches from the original work must be clearly\n labeled\ + \ as unofficial distributions. Modifications which do not\n carry the name Zope may be\ + \ packaged in any form, as long as they\n conform to all of the clauses above.\n\n\nDisclaimer\n\ + \n THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS ``AS IS'' AND ANY\n EXPRESSED OR IMPLIED\ + \ WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY\ + \ AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DIGITAL CREATIONS\ + \ OR ITS\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY,\ + \ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE\ + \ GOODS OR SERVICES; LOSS OF\n USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\ + \ CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR\ + \ TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\n OF THE USE OF THIS\ + \ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\n\nThis software consists\ + \ of contributions made by Digital Creations and\nmany individuals on behalf of Digital\ + \ Creations. Specific\nattributions are listed in the accompanying credits file." json: zpl-1.0.json - yml: zpl-1.0.yml + yaml: zpl-1.0.yml html: zpl-1.0.html - text: zpl-1.0.LICENSE + license: zpl-1.0.LICENSE - license_key: zpl-1.1 + category: Permissive spdx_license_key: ZPL-1.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Zope Public License (ZPL) Version 1.1 + + Copyright (c) Zope Corporation. All rights reserved. + + This license has been certified as open source. + + 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 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 and documentation mentioning features derived + from or use of this software must display the following acknowledgement: + + "This product includes software developed by Zope Corporation for use in + the Z Object Publishing Environment (http://www.zope.com/)." + + In the event that the product being advertised includes an intact Zope + distribution (with copyright and license included) then this clause is + waived. + + 4. Names associated with Zope or Zope Corporation must not be used to endorse + or promote products derived from this software without prior written + permission from Zope Corporation. + + 5. Modified redistributions of any form whatsoever must retain the following + acknowledgment: + + "This product includes software developed by Zope Corporation for use in + the Z Object Publishing Environment (http://www.zope.com/)." + + Intact (re-)distributions of any official Zope release do not require an + external acknowledgement. + + 6. Modifications are encouraged but must be packaged separately as patches to + official Zope releases. Distributions that do not clearly separate the + patches from the original work must be clearly labeled as unofficial + distributions. Modifications which do not carry the name Zope may be packaged + in any form, as long as they conform to all of the clauses above. + + Disclaimer + + THIS SOFTWARE IS PROVIDED BY ZOPE CORPORATION ``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 ZOPE CORPORATION 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 software consists of contributions made by Zope Corporation and many + individuals on behalf of Zope Corporation. Specific attributions are listed in + the accompanying credits file. json: zpl-1.1.json - yml: zpl-1.1.yml + yaml: zpl-1.1.yml html: zpl-1.1.html - text: zpl-1.1.LICENSE + license: zpl-1.1.LICENSE - license_key: zpl-2.0 + category: Permissive spdx_license_key: ZPL-2.0 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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 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 Zope Corporation (tm) must not be used to endorse or promote + products derived from this software without prior written permission from + Zope Corporation. + + 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 Zope + Corporation. Use of them is covered in a separate agreement (see + http://www.zope.com/Marks). + + 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 ZOPE CORPORATION ``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 ZOPE CORPORATION 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 software consists of contributions made by Zope Corporation and many + individuals on behalf of Zope Corporation. Specific attributions are listed in + the accompanying credits file. json: zpl-2.0.json - yml: zpl-2.0.yml + yaml: zpl-2.0.yml html: zpl-2.0.html - text: zpl-2.0.LICENSE + license: zpl-2.0.LICENSE - license_key: zpl-2.1 + category: Permissive spdx_license_key: ZPL-2.1 other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + 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. json: zpl-2.1.json - yml: zpl-2.1.yml + yaml: zpl-2.1.yml html: zpl-2.1.html - text: zpl-2.1.LICENSE + license: zpl-2.1.LICENSE +- license_key: zrythm-exception-agpl-3.0 + category: Copyleft + spdx_license_key: LicenseRef-scancode-zrythm-exception-agpl-3.0 + other_spdx_license_keys: [] + is_exception: yes + is_deprecated: no + text: | + Additional terms under Section 7 of the GNU AGPL: + + Zrythm and the Zrythm logo are trademarks of + Alexandros Theodotou and are governed by the Zrythm + Trademark Policy, found in the TRADEMARKS.md file. + You may distribute unaltered copies of Zrythm that + include the Zrythm trademarks without express + permission from Alexandros Theodotou. However, + if you make any changes to Zrythm, you may not + redistribute that product using any Zrythm trademark + without Alexandros Theodotou’s prior written consent. + For example, you may not distribute a modified form + of Zrythm and continue to call it Zrythm, or + include the Zrythm logo, unless explicitly allowed + by the Trademark Policy. + + ============================= + TRADEMARKS.md + ============================= + + Trademark Policy + ================ + + # Applicable Trademarks + Zrythm and the Zrythm logo are registered + trademarks of Alexandros Theodotou in the United + Kingdom. + + # Objective of this Policy + The objective of this trademark policy is: + - to clarify proper usage of Zrythm trademarks by + third parties + - to prevent misuse of Zrythm trademarks that can + confuse or mislead users with respect to Zrythm + + Following are the guidelines for the proper use of + Zrythm trademarks by publishers and other third + parties. Any use of or reference to Zrythm trademarks + that is inconsistent with these guidelines, or other + unauthorized use of or reference to Zrythm + trademarks, or use of marks that are confusingly + similar to Zrythm trademarks, is prohibited and may + violate the trademark rights of Alexandros Theodotou. + + Any use of Zrythm trademarks in a misleading and + false manner, such as untruthful advertising, is + always prohibited. + + # Usage Guidelines + This Trademark Policy explicitly affirms your + nominative fair use rights under trademark law, + including to: + - Use the Zrythm wordmark in text to truthfully refer + to and/or link to unmodified programs, products, + services and technologies by Alexandros Theodotou. + - Use the Zrythm logo in visuals to truthfully refer + to and/or to link to the applicable unmodified + programs, products, services and technologies by + Alexandros Theodotou. + - Use Zrythm trademarks to make true factual + statements about Zrythm or communicate compatibility + with your product truthfully. + + The following are explicitly forbidden: + - Use of the Zrythm wordmark as part of a company + name or logo, a product name or logo, or branding. + - Use of the Zrythm logo as part of a company logo or + organization logo or product logo or branding. + - Use of the Zrythm wordmark as part of an acronym. + - Use of Zrythm trademarks in any way that suggests + an affiliation with or endorsement by the Zrythm + project or community, if that is not the case. + + All other uses of a Zrythm trademark require our + prior written permission. Contact + trademarks@zrythm.org for more information. + + Alexandros Theodotou reserves the right to review + all use of the Zrythm trademarks and to object to + any use that appears outside of this + Trademark Policy. + + # Software Distribution Policy + You may distribute unaltered copies of the Zrythm + digital audio workstation (DAW) and related software + (hereinafter collectively referred to as "the + software") published by Alexandros Theodotou that + include the Zrythm trademarks without express + permission from Alexandros Theodotou (provided that + the license of the software in question allows it). + + You may further distribute altered copies of the + software that include the Zrythm trademarks, + provided that alterations solely serve the purposes + of: + - porting the software to a free system distribution + currently approved by the Free Software Foundation at + , OR + - porting the software to the Debian operating + system, as published by the Debian project at + , OR + - porting the software to the Fedora Workstation + operating system, as published by the Fedora Project + at , OR + - porting the software to the FreeBSD operating + system, as published by the The FreeBSD Project at + , OR + - porting the software to the Arch Linux operating + system, as published by Levente Polyak and others at + , OR + - fixing a bug in the software that has already been + acknowledged by Alexandros Theodotou or CVE + () + + You may further redistribute copies of the software + as published by the aforementioned software + distributors provided that no further modifications + are made. + + In any case, you may not add or remove + functionalities and you must preserve all messages + presented to users in the user interface and the + command line, including but not limited to: + - URLs pointing to official Zrythm web pages + - informational messages (popups, console output, + etc.) + + You must also provide a link to the original source + code as published by Alexandros Theodotou at + https://www.zrythm.org/. + + # Requirement of Written Permission for Modified Versions Including Trademarks + If you make any changes to the software not + explicitly allowed above, you may not + redistribute that product using any Zrythm trademark + without Alexandros Theodotou’s prior written + consent. For example, you may not distribute a + modified form of the Zrythm DAW and continue to call + it Zrythm, or include the Zrythm logo. If you wish to + distribute modified versions of the software that + include the Zrythm trademarks please contact us with + your request at trademarks@zrythm.org. + + # Newer Versions of this Policy + This policy may be revised from time to time. New + versions will be similar in spirit to the present + version, but may differ in detail to address new + problems or concerns. The file `TRADEMARKS.md` in + the source code releases will always contain the + current policy at the time of each release. + + ---- + + Copyright (C) 2020-2022 Alexandros Theodotou + + Everyone is permitted to copy and distribute + verbatim copies of this document, but changing it is + not allowed. + json: zrythm-exception-agpl-3.0.json + yaml: zrythm-exception-agpl-3.0.yml + html: zrythm-exception-agpl-3.0.html + license: zrythm-exception-agpl-3.0.LICENSE - license_key: zsh + category: Permissive spdx_license_key: LicenseRef-scancode-zsh other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Unless otherwise noted in the header of specific files, files in this + distribution have the licence shown below. + + However, note that certain shell functions are licensed under versions + of the GNU General Public Licence. Anyone distributing the shell as a + binary including those files needs to take account of this. Search + shell functions for "Copyright" for specific copyright information. + None of the core functions are affected by this, so those files may + simply be omitted. + + -- + + The Z Shell is copyright (c) 1992-2017 Paul Falstad, Richard Coleman, + Zoltán Hidvégi, Andrew Main, Peter Stephenson, Sven Wischnowsky, and + others. All rights reserved. Individual authors, whether or not + specifically named, retain copyright in all changes; in what follows, they + are referred to as `the Zsh Development Group'. This is for convenience + only and this body has no legal status. The Z shell is distributed under + the following licence; any provisions made in individual files take + precedence. + + Permission is hereby granted, without written agreement and without + licence or royalty fees, to use, copy, modify, and distribute this + software and to distribute modified versions of this software for any + purpose, provided that the above copyright notice and the following + two paragraphs appear in all copies of this software. + + In no event shall the Zsh Development Group be liable to any party for + direct, indirect, special, incidental, or consequential damages arising out + of the use of this software and its documentation, even if the Zsh + Development Group have been advised of the possibility of such damage. + + The Zsh Development Group specifically disclaim 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 Zsh Development Group have no obligation to provide + maintenance, support, updates, enhancements, or modifications. json: zsh.json - yml: zsh.yml + yaml: zsh.yml html: zsh.html - text: zsh.LICENSE + license: zsh.LICENSE - license_key: zuora-software + category: Permissive spdx_license_key: LicenseRef-scancode-zuora-software other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to use copy, + modify, merge, publish the Software and to distribute, and sublicense copies of + the Software, provided no fee is charged for the Software. In addition the + rights specified above are conditioned upon the following: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + Zuora, Inc. or any other trademarks of Zuora, Inc. may not be used to endorse + or promote products derived from this Software without specific prior written + permission from Zuora, Inc. + + 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 NON-INFRINGEMENT. IN NO EVENT SHALL + ZUORA, INC. BE LIABLE FOR ANY DIRECT, INDIRECT 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. + + IN THE EVENT YOU ARE AN EXISTING ZUORA CUSTOMER, USE OF THIS SOFTWARE IS GOVERNED + BY THIS AGREEMENT AND NOT YOUR MASTER SUBSCRIPTION AGREEMENT WITH ZUORA json: zuora-software.json - yml: zuora-software.yml + yaml: zuora-software.yml html: zuora-software.html - text: zuora-software.LICENSE + license: zuora-software.LICENSE - license_key: zveno-research + category: Permissive spdx_license_key: LicenseRef-scancode-zveno-research other_spdx_license_keys: [] is_exception: no is_deprecated: no - category: Permissive + text: | + Zveno makes this software available free of charge for any purpose. This + software may be copied, and distributed, with or without modifications; but this + notice must be included on any copy. + + The software was developed for research purposes only and Zveno does not warrant + that it is error free or fit for any purpose. Zveno disclaims any liability for + all claims, expenses, losses, damages and costs any user may incur as a result + of using, copying or modifying this software. json: zveno-research.json - yml: zveno-research.yml + yaml: zveno-research.yml html: zveno-research.html - text: zveno-research.LICENSE + license: zveno-research.LICENSE diff --git a/docs/indiana-extreme-1.2.LICENSE b/docs/indiana-extreme-1.2.LICENSE index a270e3ffb8..c0b6f86774 100644 --- a/docs/indiana-extreme-1.2.LICENSE +++ b/docs/indiana-extreme-1.2.LICENSE @@ -1,3 +1,24 @@ +--- +key: indiana-extreme-1.2 +short_name: Indiana Extreme License 1.2 +name: Indiana University Extreme! Lab Software License Version 1.2 +category: Permissive +owner: Indiana University +homepage_url: http://www.extreme.indiana.edu/license.txt +spdx_license_key: xpp +text_urls: + - http://www.extreme.indiana.edu/license.txt + - https://fedoraproject.org/wiki/Licensing/xpp +ignorable_copyrights: + - Copyright (c) 2004 The Trustees of Indiana University +ignorable_holders: + - The Trustees of Indiana University +ignorable_authors: + - the Indiana University Extreme! Lab +ignorable_urls: + - http://www.extreme.indiana.edu/ +--- + Indiana University Extreme! Lab Software License, Version 1.2 Copyright (C) 2004 The Trustees of Indiana University. diff --git a/docs/indiana-extreme-1.2.html b/docs/indiana-extreme-1.2.html index c7ff1ec1db..ecdb99e07e 100644 --- a/docs/indiana-extreme-1.2.html +++ b/docs/indiana-extreme-1.2.html @@ -227,7 +227,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/indiana-extreme-1.2.json b/docs/indiana-extreme-1.2.json index 1157628490..bff87b00c2 100644 --- a/docs/indiana-extreme-1.2.json +++ b/docs/indiana-extreme-1.2.json @@ -1 +1,25 @@ -{"key": "indiana-extreme-1.2", "short_name": "Indiana Extreme License 1.2", "name": "Indiana University Extreme! Lab Software License Version 1.2", "category": "Permissive", "owner": "Indiana University", "homepage_url": "http://www.extreme.indiana.edu/license.txt", "spdx_license_key": "xpp", "text_urls": ["http://www.extreme.indiana.edu/license.txt", "https://fedoraproject.org/wiki/Licensing/xpp"], "ignorable_copyrights": ["Copyright (c) 2004 The Trustees of Indiana University"], "ignorable_holders": ["The Trustees of Indiana University"], "ignorable_authors": ["the Indiana University Extreme! Lab"], "ignorable_urls": ["http://www.extreme.indiana.edu/"]} \ No newline at end of file +{ + "key": "indiana-extreme-1.2", + "short_name": "Indiana Extreme License 1.2", + "name": "Indiana University Extreme! Lab Software License Version 1.2", + "category": "Permissive", + "owner": "Indiana University", + "homepage_url": "http://www.extreme.indiana.edu/license.txt", + "spdx_license_key": "xpp", + "text_urls": [ + "http://www.extreme.indiana.edu/license.txt", + "https://fedoraproject.org/wiki/Licensing/xpp" + ], + "ignorable_copyrights": [ + "Copyright (c) 2004 The Trustees of Indiana University" + ], + "ignorable_holders": [ + "The Trustees of Indiana University" + ], + "ignorable_authors": [ + "the Indiana University Extreme! Lab" + ], + "ignorable_urls": [ + "http://www.extreme.indiana.edu/" + ] +} \ No newline at end of file diff --git a/docs/indiana-extreme.LICENSE b/docs/indiana-extreme.LICENSE index 48ffaf8aa9..eb5c453be9 100644 --- a/docs/indiana-extreme.LICENSE +++ b/docs/indiana-extreme.LICENSE @@ -1,3 +1,22 @@ +--- +key: indiana-extreme +short_name: Indiana Extreme License 1.1.1 +name: Indiana University Extreme! Lab Software License Version 1.1.1 +category: Permissive +owner: Indiana University +spdx_license_key: LicenseRef-scancode-indiana-extreme +text_urls: + - http://www.bearcave.com/software/java/xml/xmlpull_license.html +ignorable_copyrights: + - Copyright (c) 2002 Extreme! Lab, Indiana University +ignorable_holders: + - Extreme! Lab, Indiana University +ignorable_authors: + - the Indiana University Extreme! Lab (http://www.extreme.indiana.edu/) +ignorable_urls: + - http://www.extreme.indiana.edu/ +--- + Indiana University Extreme! Lab Software License Version 1.1.1 Copyright (c) 2002 Extreme! Lab, Indiana University. All rights reserved. diff --git a/docs/indiana-extreme.html b/docs/indiana-extreme.html index a21e609ef4..b3db0bcb33 100644 --- a/docs/indiana-extreme.html +++ b/docs/indiana-extreme.html @@ -185,7 +185,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/indiana-extreme.json b/docs/indiana-extreme.json index 34e7a69bea..4a349a80e8 100644 --- a/docs/indiana-extreme.json +++ b/docs/indiana-extreme.json @@ -1 +1,23 @@ -{"key": "indiana-extreme", "short_name": "Indiana Extreme License 1.1.1", "name": "Indiana University Extreme! Lab Software License Version 1.1.1", "category": "Permissive", "owner": "Indiana University", "spdx_license_key": "LicenseRef-scancode-indiana-extreme", "text_urls": ["http://www.bearcave.com/software/java/xml/xmlpull_license.html"], "ignorable_copyrights": ["Copyright (c) 2002 Extreme! Lab, Indiana University"], "ignorable_holders": ["Extreme! Lab, Indiana University"], "ignorable_authors": ["the Indiana University Extreme! Lab (http://www.extreme.indiana.edu/)"], "ignorable_urls": ["http://www.extreme.indiana.edu/"]} \ No newline at end of file +{ + "key": "indiana-extreme", + "short_name": "Indiana Extreme License 1.1.1", + "name": "Indiana University Extreme! Lab Software License Version 1.1.1", + "category": "Permissive", + "owner": "Indiana University", + "spdx_license_key": "LicenseRef-scancode-indiana-extreme", + "text_urls": [ + "http://www.bearcave.com/software/java/xml/xmlpull_license.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 2002 Extreme! Lab, Indiana University" + ], + "ignorable_holders": [ + "Extreme! Lab, Indiana University" + ], + "ignorable_authors": [ + "the Indiana University Extreme! Lab (http://www.extreme.indiana.edu/)" + ], + "ignorable_urls": [ + "http://www.extreme.indiana.edu/" + ] +} \ No newline at end of file diff --git a/docs/infineon-free.LICENSE b/docs/infineon-free.LICENSE index 947ad9a84a..7dd614bf17 100644 --- a/docs/infineon-free.LICENSE +++ b/docs/infineon-free.LICENSE @@ -1,3 +1,12 @@ +--- +key: infineon-free +short_name: Infineon Free Software License +name: Infineon Free Software License +category: Permissive +owner: Infineon Technologies +spdx_license_key: LicenseRef-scancode-infineon-free +--- + No Warranty Because the program is licensed free of charge, there is no warranty for the program, to the extent permitted by applicable law. Except when @@ -17,4 +26,4 @@ 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. +other party has been advised of the possibility of such damages. \ No newline at end of file diff --git a/docs/infineon-free.html b/docs/infineon-free.html index 4ad1d3e214..a84c94c63f 100644 --- a/docs/infineon-free.html +++ b/docs/infineon-free.html @@ -127,8 +127,7 @@ (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. -
+other party has been advised of the possibility of such damages.
@@ -140,7 +139,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/infineon-free.json b/docs/infineon-free.json index f33c4b33ed..11bbb5e387 100644 --- a/docs/infineon-free.json +++ b/docs/infineon-free.json @@ -1 +1,8 @@ -{"key": "infineon-free", "short_name": "Infineon Free Software License", "name": "Infineon Free Software License", "category": "Permissive", "owner": "Infineon Technologies", "spdx_license_key": "LicenseRef-scancode-infineon-free"} \ No newline at end of file +{ + "key": "infineon-free", + "short_name": "Infineon Free Software License", + "name": "Infineon Free Software License", + "category": "Permissive", + "owner": "Infineon Technologies", + "spdx_license_key": "LicenseRef-scancode-infineon-free" +} \ No newline at end of file diff --git a/docs/info-zip-1997-10.LICENSE b/docs/info-zip-1997-10.LICENSE index 3d4a9a1a7c..b30ce672b1 100644 --- a/docs/info-zip-1997-10.LICENSE +++ b/docs/info-zip-1997-10.LICENSE @@ -1,3 +1,41 @@ +--- +key: info-zip-1997-10 +short_name: Info-Zip License 1997-10 +name: Info-Zip License 1997-10 +category: Permissive +owner: info-zip +homepage_url: http://www.info-zip.org/ +spdx_license_key: LicenseRef-scancode-info-zip-1997-10 +text_urls: + - ftp://ftp.info-zip.org/pub/infozip/doc/copying +ignorable_copyrights: + - Copyright (c) 1992 Igor Mandrichenko + - Copyright (c) 1994 Greg Roelofs + - Copyright (c) 1996 Mike White + - Copyright 1989 Samuel H. Smith + - copyrighted 1997 by Steve P. Miller + - copyrighted by Norbert Pueschel, +ignorable_holders: + - Greg Roelofs + - Igor Mandrichenko + - Mike White + - Norbert Pueschel + - Samuel H. Smith + - Steve P. Miller +ignorable_authors: + - many people associated with the Info-ZIP group + - the Info-ZIP group +ignorable_urls: + - ftp://ftp.cdrom.com/pub/infozip/ + - ftp://ftp.wustl.edu/pub/aminet/util/time/clockdaemon.lha + - http://www.cdrom.com/pub/infozip/ + - http://www.cdrom.com/pub/infozip/zlib/ +ignorable_emails: + - 71150.2731@compuserve.com + - Zip-Bugs@lists.wku.edu + - pueschel@imsdd.meb.uni-bonn.de +--- + This is the Info-ZIP file COPYING (for UnZip), last updated 5 Oct 97. @@ -207,4 +245,4 @@ A. Yes, so long as you include in your product an acknowledgment; a If you only need compression capability, not full zipfile support, you might want to look at zlib instead; it has fewer restrictions - on commercial use. See http://www.cdrom.com/pub/infozip/zlib/ . + on commercial use. See http://www.cdrom.com/pub/infozip/zlib/ . \ No newline at end of file diff --git a/docs/info-zip-1997-10.html b/docs/info-zip-1997-10.html index a4a8fb5a86..89030ccb2b 100644 --- a/docs/info-zip-1997-10.html +++ b/docs/info-zip-1997-10.html @@ -378,8 +378,7 @@ If you only need compression capability, not full zipfile support, you might want to look at zlib instead; it has fewer restrictions - on commercial use. See http://www.cdrom.com/pub/infozip/zlib/ . -
+ on commercial use. See http://www.cdrom.com/pub/infozip/zlib/ .
@@ -391,7 +390,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/info-zip-1997-10.json b/docs/info-zip-1997-10.json index 16adac3da8..66e3dc7a53 100644 --- a/docs/info-zip-1997-10.json +++ b/docs/info-zip-1997-10.json @@ -1 +1,43 @@ -{"key": "info-zip-1997-10", "short_name": "Info-Zip License 1997-10", "name": "Info-Zip License 1997-10", "category": "Permissive", "owner": "info-zip", "homepage_url": "http://www.info-zip.org/", "spdx_license_key": "LicenseRef-scancode-info-zip-1997-10", "text_urls": ["ftp://ftp.info-zip.org/pub/infozip/doc/copying"], "ignorable_copyrights": ["Copyright (c) 1992 Igor Mandrichenko", "Copyright (c) 1994 Greg Roelofs", "Copyright (c) 1996 Mike White", "Copyright 1989 Samuel H. Smith", "copyrighted 1997 by Steve P. Miller", "copyrighted by Norbert Pueschel, "], "ignorable_holders": ["Greg Roelofs", "Igor Mandrichenko", "Mike White", "Norbert Pueschel", "Samuel H. Smith", "Steve P. Miller"], "ignorable_authors": ["many people associated with the Info-ZIP group", "the Info-ZIP group"], "ignorable_urls": ["ftp://ftp.cdrom.com/pub/infozip/", "ftp://ftp.wustl.edu/pub/aminet/util/time/clockdaemon.lha", "http://www.cdrom.com/pub/infozip/", "http://www.cdrom.com/pub/infozip/zlib/"], "ignorable_emails": ["71150.2731@compuserve.com", "Zip-Bugs@lists.wku.edu", "pueschel@imsdd.meb.uni-bonn.de"]} \ No newline at end of file +{ + "key": "info-zip-1997-10", + "short_name": "Info-Zip License 1997-10", + "name": "Info-Zip License 1997-10", + "category": "Permissive", + "owner": "info-zip", + "homepage_url": "http://www.info-zip.org/", + "spdx_license_key": "LicenseRef-scancode-info-zip-1997-10", + "text_urls": [ + "ftp://ftp.info-zip.org/pub/infozip/doc/copying" + ], + "ignorable_copyrights": [ + "Copyright (c) 1992 Igor Mandrichenko", + "Copyright (c) 1994 Greg Roelofs", + "Copyright (c) 1996 Mike White", + "Copyright 1989 Samuel H. Smith", + "copyrighted 1997 by Steve P. Miller", + "copyrighted by Norbert Pueschel, " + ], + "ignorable_holders": [ + "Greg Roelofs", + "Igor Mandrichenko", + "Mike White", + "Norbert Pueschel", + "Samuel H. Smith", + "Steve P. Miller" + ], + "ignorable_authors": [ + "many people associated with the Info-ZIP group", + "the Info-ZIP group" + ], + "ignorable_urls": [ + "ftp://ftp.cdrom.com/pub/infozip/", + "ftp://ftp.wustl.edu/pub/aminet/util/time/clockdaemon.lha", + "http://www.cdrom.com/pub/infozip/", + "http://www.cdrom.com/pub/infozip/zlib/" + ], + "ignorable_emails": [ + "71150.2731@compuserve.com", + "Zip-Bugs@lists.wku.edu", + "pueschel@imsdd.meb.uni-bonn.de" + ] +} \ No newline at end of file diff --git a/docs/info-zip-2001-01.LICENSE b/docs/info-zip-2001-01.LICENSE index 8e646bbe91..dec7fa27b0 100644 --- a/docs/info-zip-2001-01.LICENSE +++ b/docs/info-zip-2001-01.LICENSE @@ -1,3 +1,21 @@ +--- +key: info-zip-2001-01 +short_name: Info-Zip License 2001-01 +name: Info-Zip License 2001-01 +category: Permissive +owner: info-zip +homepage_url: http://www.info-zip.org/ +spdx_license_key: LicenseRef-scancode-info-zip-2001-01 +text_urls: + - http://web.archive.org/web/20020221003207/http://www.info-zip.org/doc/LICENSE +ignorable_copyrights: + - Copyright (c) 1990-2001 Info-ZIP. +ignorable_holders: + - Info-ZIP +ignorable_urls: + - ftp://ftp.info-zip.org/pub/infozip/license.html +--- + This is version 2001-Jan-27 of the Info-ZIP copyright and license. The definitive version of this document should be available at ftp://ftp.info-zip.org/pub/infozip/license.html indefinitely. @@ -46,4 +64,4 @@ freely, subject to the following restrictions: 4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its own source and - binary releases. + binary releases. \ No newline at end of file diff --git a/docs/info-zip-2001-01.html b/docs/info-zip-2001-01.html index e6ad870c85..cf1404627c 100644 --- a/docs/info-zip-2001-01.html +++ b/docs/info-zip-2001-01.html @@ -199,8 +199,7 @@ 4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its own source and - binary releases. - + binary releases.
@@ -212,7 +211,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/info-zip-2001-01.json b/docs/info-zip-2001-01.json index 16af79de32..cbbdd97aab 100644 --- a/docs/info-zip-2001-01.json +++ b/docs/info-zip-2001-01.json @@ -1 +1,21 @@ -{"key": "info-zip-2001-01", "short_name": "Info-Zip License 2001-01", "name": "Info-Zip License 2001-01", "category": "Permissive", "owner": "info-zip", "homepage_url": "http://www.info-zip.org/", "spdx_license_key": "LicenseRef-scancode-info-zip-2001-01", "text_urls": ["http://web.archive.org/web/20020221003207/http://www.info-zip.org/doc/LICENSE"], "ignorable_copyrights": ["Copyright (c) 1990-2001 Info-ZIP."], "ignorable_holders": ["Info-ZIP"], "ignorable_urls": ["ftp://ftp.info-zip.org/pub/infozip/license.html"]} \ No newline at end of file +{ + "key": "info-zip-2001-01", + "short_name": "Info-Zip License 2001-01", + "name": "Info-Zip License 2001-01", + "category": "Permissive", + "owner": "info-zip", + "homepage_url": "http://www.info-zip.org/", + "spdx_license_key": "LicenseRef-scancode-info-zip-2001-01", + "text_urls": [ + "http://web.archive.org/web/20020221003207/http://www.info-zip.org/doc/LICENSE" + ], + "ignorable_copyrights": [ + "Copyright (c) 1990-2001 Info-ZIP." + ], + "ignorable_holders": [ + "Info-ZIP" + ], + "ignorable_urls": [ + "ftp://ftp.info-zip.org/pub/infozip/license.html" + ] +} \ No newline at end of file diff --git a/docs/info-zip-2002-02.LICENSE b/docs/info-zip-2002-02.LICENSE index d76258faa5..042029defd 100644 --- a/docs/info-zip-2002-02.LICENSE +++ b/docs/info-zip-2002-02.LICENSE @@ -1,3 +1,22 @@ +--- +key: info-zip-2002-02 +short_name: Info-Zip License 2002-02 +name: Info-Zip License 2002-02 +category: Permissive +owner: info-zip +homepage_url: http://www.info-zip.org/ +spdx_license_key: LicenseRef-scancode-info-zip-2002-02 +text_urls: + - http://web.archive.org/web/20020603162955/http://www.info-zip.org/license.html + - http://web.archive.org/web/20030409023329/http://www.info-zip.org/doc/LICENSE +ignorable_copyrights: + - Copyright (c) 1990-2002 Info-ZIP. +ignorable_holders: + - Info-ZIP +ignorable_urls: + - ftp://ftp.info-zip.org/pub/infozip/license.html +--- + This is version 2002-Feb-16 of the Info-ZIP copyright and license. The definitive version of this document should be available at ftp://ftp.info-zip.org/pub/infozip/license.html indefinitely. @@ -50,4 +69,4 @@ freely, subject to the following restrictions: 4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," "UnZipSFX," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its - own source and binary releases. + own source and binary releases. \ No newline at end of file diff --git a/docs/info-zip-2002-02.html b/docs/info-zip-2002-02.html index c0067b2e39..3a5d06a248 100644 --- a/docs/info-zip-2002-02.html +++ b/docs/info-zip-2002-02.html @@ -203,8 +203,7 @@ 4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," "UnZipSFX," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its - own source and binary releases. - + own source and binary releases.
@@ -216,7 +215,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/info-zip-2002-02.json b/docs/info-zip-2002-02.json index e172ec1f0a..0a7e601a3e 100644 --- a/docs/info-zip-2002-02.json +++ b/docs/info-zip-2002-02.json @@ -1 +1,22 @@ -{"key": "info-zip-2002-02", "short_name": "Info-Zip License 2002-02", "name": "Info-Zip License 2002-02", "category": "Permissive", "owner": "info-zip", "homepage_url": "http://www.info-zip.org/", "spdx_license_key": "LicenseRef-scancode-info-zip-2002-02", "text_urls": ["http://web.archive.org/web/20020603162955/http://www.info-zip.org/license.html", "http://web.archive.org/web/20030409023329/http://www.info-zip.org/doc/LICENSE"], "ignorable_copyrights": ["Copyright (c) 1990-2002 Info-ZIP."], "ignorable_holders": ["Info-ZIP"], "ignorable_urls": ["ftp://ftp.info-zip.org/pub/infozip/license.html"]} \ No newline at end of file +{ + "key": "info-zip-2002-02", + "short_name": "Info-Zip License 2002-02", + "name": "Info-Zip License 2002-02", + "category": "Permissive", + "owner": "info-zip", + "homepage_url": "http://www.info-zip.org/", + "spdx_license_key": "LicenseRef-scancode-info-zip-2002-02", + "text_urls": [ + "http://web.archive.org/web/20020603162955/http://www.info-zip.org/license.html", + "http://web.archive.org/web/20030409023329/http://www.info-zip.org/doc/LICENSE" + ], + "ignorable_copyrights": [ + "Copyright (c) 1990-2002 Info-ZIP." + ], + "ignorable_holders": [ + "Info-ZIP" + ], + "ignorable_urls": [ + "ftp://ftp.info-zip.org/pub/infozip/license.html" + ] +} \ No newline at end of file diff --git a/docs/info-zip-2003-05.LICENSE b/docs/info-zip-2003-05.LICENSE index 6eea5d10bc..60832d39cb 100644 --- a/docs/info-zip-2003-05.LICENSE +++ b/docs/info-zip-2003-05.LICENSE @@ -1,3 +1,22 @@ +--- +key: info-zip-2003-05 +short_name: Info-Zip License 2003-05 +name: Info-Zip License 2003-05 +category: Permissive +owner: info-zip +homepage_url: http://www.info-zip.org/ +spdx_license_key: LicenseRef-scancode-info-zip-2003-05 +text_urls: + - http://web.archive.org/web/20030409023329/http://www.info-zip.org/doc/LICENSE + - http://web.archive.org/web/20030601142019/http://www.info-zip.org/license.html +ignorable_copyrights: + - Copyright (c) 1990-2003 Info-ZIP. +ignorable_holders: + - Info-ZIP +ignorable_urls: + - ftp://ftp.info-zip.org/pub/infozip/license.html +--- + This is version 2003-May-08 of the Info-ZIP copyright and license. The definitive version of this document should be available at ftp://ftp.info-zip.org/pub/infozip/license.html indefinitely. @@ -51,4 +70,4 @@ freely, subject to the following restrictions: 4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," "UnZipSFX," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its - own source and binary releases. + own source and binary releases. \ No newline at end of file diff --git a/docs/info-zip-2003-05.html b/docs/info-zip-2003-05.html index c6e45bb899..e354c6dd1a 100644 --- a/docs/info-zip-2003-05.html +++ b/docs/info-zip-2003-05.html @@ -204,8 +204,7 @@ 4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," "UnZipSFX," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its - own source and binary releases. - + own source and binary releases.
@@ -217,7 +216,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/info-zip-2003-05.json b/docs/info-zip-2003-05.json index 78dfac335e..600a028bb8 100644 --- a/docs/info-zip-2003-05.json +++ b/docs/info-zip-2003-05.json @@ -1 +1,22 @@ -{"key": "info-zip-2003-05", "short_name": "Info-Zip License 2003-05", "name": "Info-Zip License 2003-05", "category": "Permissive", "owner": "info-zip", "homepage_url": "http://www.info-zip.org/", "spdx_license_key": "LicenseRef-scancode-info-zip-2003-05", "text_urls": ["http://web.archive.org/web/20030409023329/http://www.info-zip.org/doc/LICENSE", "http://web.archive.org/web/20030601142019/http://www.info-zip.org/license.html"], "ignorable_copyrights": ["Copyright (c) 1990-2003 Info-ZIP."], "ignorable_holders": ["Info-ZIP"], "ignorable_urls": ["ftp://ftp.info-zip.org/pub/infozip/license.html"]} \ No newline at end of file +{ + "key": "info-zip-2003-05", + "short_name": "Info-Zip License 2003-05", + "name": "Info-Zip License 2003-05", + "category": "Permissive", + "owner": "info-zip", + "homepage_url": "http://www.info-zip.org/", + "spdx_license_key": "LicenseRef-scancode-info-zip-2003-05", + "text_urls": [ + "http://web.archive.org/web/20030409023329/http://www.info-zip.org/doc/LICENSE", + "http://web.archive.org/web/20030601142019/http://www.info-zip.org/license.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 1990-2003 Info-ZIP." + ], + "ignorable_holders": [ + "Info-ZIP" + ], + "ignorable_urls": [ + "ftp://ftp.info-zip.org/pub/infozip/license.html" + ] +} \ No newline at end of file diff --git a/docs/info-zip-2004-05.LICENSE b/docs/info-zip-2004-05.LICENSE index a07f969c0c..ddac6db849 100644 --- a/docs/info-zip-2004-05.LICENSE +++ b/docs/info-zip-2004-05.LICENSE @@ -1,3 +1,21 @@ +--- +key: info-zip-2004-05 +short_name: Info-Zip License 2004-05 +name: Info-Zip License 2004-05 +category: Permissive +owner: info-zip +homepage_url: http://www.info-zip.org/ +spdx_license_key: LicenseRef-scancode-info-zip-2004-05 +text_urls: + - http://web.archive.org/web/20040807105859/http://www.info-zip.org/license.html +ignorable_copyrights: + - Copyright (c) 1990-2004 Info-ZIP. +ignorable_holders: + - Info-ZIP +ignorable_urls: + - ftp://ftp.info/ +--- + This is version 2004-May-22 of the Info-ZIP copyright and license. The definitive version of this document should be available at ftp://ftp.info- zip.org/pub/infozip/license.html indefinitely. diff --git a/docs/info-zip-2004-05.html b/docs/info-zip-2004-05.html index f901b200e0..48454dea04 100644 --- a/docs/info-zip-2004-05.html +++ b/docs/info-zip-2004-05.html @@ -214,7 +214,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/info-zip-2004-05.json b/docs/info-zip-2004-05.json index 05539f45e4..78e4d3ca59 100644 --- a/docs/info-zip-2004-05.json +++ b/docs/info-zip-2004-05.json @@ -1 +1,21 @@ -{"key": "info-zip-2004-05", "short_name": "Info-Zip License 2004-05", "name": "Info-Zip License 2004-05", "category": "Permissive", "owner": "info-zip", "homepage_url": "http://www.info-zip.org/", "spdx_license_key": "LicenseRef-scancode-info-zip-2004-05", "text_urls": ["http://web.archive.org/web/20040807105859/http://www.info-zip.org/license.html"], "ignorable_copyrights": ["Copyright (c) 1990-2004 Info-ZIP."], "ignorable_holders": ["Info-ZIP"], "ignorable_urls": ["ftp://ftp.info/"]} \ No newline at end of file +{ + "key": "info-zip-2004-05", + "short_name": "Info-Zip License 2004-05", + "name": "Info-Zip License 2004-05", + "category": "Permissive", + "owner": "info-zip", + "homepage_url": "http://www.info-zip.org/", + "spdx_license_key": "LicenseRef-scancode-info-zip-2004-05", + "text_urls": [ + "http://web.archive.org/web/20040807105859/http://www.info-zip.org/license.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 1990-2004 Info-ZIP." + ], + "ignorable_holders": [ + "Info-ZIP" + ], + "ignorable_urls": [ + "ftp://ftp.info/" + ] +} \ No newline at end of file diff --git a/docs/info-zip-2005-02.LICENSE b/docs/info-zip-2005-02.LICENSE index dcdd305580..3cdd826155 100644 --- a/docs/info-zip-2005-02.LICENSE +++ b/docs/info-zip-2005-02.LICENSE @@ -1,3 +1,22 @@ +--- +key: info-zip-2005-02 +short_name: Info-Zip License 2005-02 +name: Info-Zip License 2005-02 +category: Permissive +owner: info-zip +homepage_url: http://www.info-zip.org/ +spdx_license_key: LicenseRef-scancode-info-zip-2005-02 +text_urls: + - ftp://ftp.info-zip.org/pub/infozip/doc/license + - http://www.info-zip.org/doc/LICENSE.20050210 +ignorable_copyrights: + - Copyright (c) 1990-2005 Info-ZIP. +ignorable_holders: + - Info-ZIP +ignorable_urls: + - ftp://ftp.info-zip.org/pub/infozip/license.html +--- + This is version 2005-Feb-10 of the Info-ZIP copyright and license. The definitive version of this document should be available at ftp://ftp.info-zip.org/pub/infozip/license.html indefinitely. diff --git a/docs/info-zip-2005-02.html b/docs/info-zip-2005-02.html index b6674f878c..d16cc53ef1 100644 --- a/docs/info-zip-2005-02.html +++ b/docs/info-zip-2005-02.html @@ -217,7 +217,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/info-zip-2005-02.json b/docs/info-zip-2005-02.json index eeec2fe0e1..f785703a25 100644 --- a/docs/info-zip-2005-02.json +++ b/docs/info-zip-2005-02.json @@ -1 +1,22 @@ -{"key": "info-zip-2005-02", "short_name": "Info-Zip License 2005-02", "name": "Info-Zip License 2005-02", "category": "Permissive", "owner": "info-zip", "homepage_url": "http://www.info-zip.org/", "spdx_license_key": "LicenseRef-scancode-info-zip-2005-02", "text_urls": ["ftp://ftp.info-zip.org/pub/infozip/doc/license", "http://www.info-zip.org/doc/LICENSE.20050210"], "ignorable_copyrights": ["Copyright (c) 1990-2005 Info-ZIP."], "ignorable_holders": ["Info-ZIP"], "ignorable_urls": ["ftp://ftp.info-zip.org/pub/infozip/license.html"]} \ No newline at end of file +{ + "key": "info-zip-2005-02", + "short_name": "Info-Zip License 2005-02", + "name": "Info-Zip License 2005-02", + "category": "Permissive", + "owner": "info-zip", + "homepage_url": "http://www.info-zip.org/", + "spdx_license_key": "LicenseRef-scancode-info-zip-2005-02", + "text_urls": [ + "ftp://ftp.info-zip.org/pub/infozip/doc/license", + "http://www.info-zip.org/doc/LICENSE.20050210" + ], + "ignorable_copyrights": [ + "Copyright (c) 1990-2005 Info-ZIP." + ], + "ignorable_holders": [ + "Info-ZIP" + ], + "ignorable_urls": [ + "ftp://ftp.info-zip.org/pub/infozip/license.html" + ] +} \ No newline at end of file diff --git a/docs/info-zip-2007-03.LICENSE b/docs/info-zip-2007-03.LICENSE index 6d0ef6e4ad..3fa4c05f9c 100644 --- a/docs/info-zip-2007-03.LICENSE +++ b/docs/info-zip-2007-03.LICENSE @@ -1,3 +1,22 @@ +--- +key: info-zip-2007-03 +short_name: Info-Zip License 2007-03 +name: Info-Zip License 2007-03 +category: Permissive +owner: info-zip +homepage_url: http://www.info-zip.org/ +spdx_license_key: LicenseRef-scancode-info-zip-2007-03 +text_urls: + - http://www.info-zip.org/doc/LICENSE.20070302 +ignorable_copyrights: + - Copyright (c) 1990-2007 Info-ZIP. +ignorable_holders: + - Info-ZIP +ignorable_urls: + - ftp://ftp.info-zip.org/pub/infozip/license.html + - http://www.info-zip.org/pub/infozip/license.html +--- + This is version 2007-Mar-4 of the Info-ZIP license. The definitive version of this document should be available at ftp://ftp.info-zip.org/pub/infozip/license.html indefinitely and diff --git a/docs/info-zip-2007-03.html b/docs/info-zip-2007-03.html index 79948043e7..74dd6cb172 100644 --- a/docs/info-zip-2007-03.html +++ b/docs/info-zip-2007-03.html @@ -222,7 +222,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/info-zip-2007-03.json b/docs/info-zip-2007-03.json index 25e7f3414e..d654741134 100644 --- a/docs/info-zip-2007-03.json +++ b/docs/info-zip-2007-03.json @@ -1 +1,22 @@ -{"key": "info-zip-2007-03", "short_name": "Info-Zip License 2007-03", "name": "Info-Zip License 2007-03", "category": "Permissive", "owner": "info-zip", "homepage_url": "http://www.info-zip.org/", "spdx_license_key": "LicenseRef-scancode-info-zip-2007-03", "text_urls": ["http://www.info-zip.org/doc/LICENSE.20070302"], "ignorable_copyrights": ["Copyright (c) 1990-2007 Info-ZIP."], "ignorable_holders": ["Info-ZIP"], "ignorable_urls": ["ftp://ftp.info-zip.org/pub/infozip/license.html", "http://www.info-zip.org/pub/infozip/license.html"]} \ No newline at end of file +{ + "key": "info-zip-2007-03", + "short_name": "Info-Zip License 2007-03", + "name": "Info-Zip License 2007-03", + "category": "Permissive", + "owner": "info-zip", + "homepage_url": "http://www.info-zip.org/", + "spdx_license_key": "LicenseRef-scancode-info-zip-2007-03", + "text_urls": [ + "http://www.info-zip.org/doc/LICENSE.20070302" + ], + "ignorable_copyrights": [ + "Copyright (c) 1990-2007 Info-ZIP." + ], + "ignorable_holders": [ + "Info-ZIP" + ], + "ignorable_urls": [ + "ftp://ftp.info-zip.org/pub/infozip/license.html", + "http://www.info-zip.org/pub/infozip/license.html" + ] +} \ No newline at end of file diff --git a/docs/info-zip-2009-01.LICENSE b/docs/info-zip-2009-01.LICENSE index 64aee44672..b27d28eb62 100644 --- a/docs/info-zip-2009-01.LICENSE +++ b/docs/info-zip-2009-01.LICENSE @@ -1,3 +1,22 @@ +--- +key: info-zip-2009-01 +short_name: Info-Zip License 2009-01 +name: Info-Zip License 2009-01 +category: Permissive +owner: info-zip +homepage_url: http://www.info-zip.org/ +spdx_license_key: LicenseRef-scancode-info-zip-2009-01 +text_urls: + - ftp://ftp.info-zip.org/pub/infozip/license.html +ignorable_copyrights: + - Copyright (c) 1990-2009 Info-ZIP. +ignorable_holders: + - Info-ZIP +ignorable_urls: + - ftp://ftp.info/ + - http://www.info/ +--- + This is version 2009-Jan-02 of the Info-ZIP license. The definitive version of this document should be available at ftp://ftp.info- zip.org/pub/infozip/license.html indefinitely and a copy at http://www.info- diff --git a/docs/info-zip-2009-01.html b/docs/info-zip-2009-01.html index 3ead816691..88c6c120a7 100644 --- a/docs/info-zip-2009-01.html +++ b/docs/info-zip-2009-01.html @@ -220,7 +220,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/info-zip-2009-01.json b/docs/info-zip-2009-01.json index ad2eac7616..d93b02152b 100644 --- a/docs/info-zip-2009-01.json +++ b/docs/info-zip-2009-01.json @@ -1 +1,22 @@ -{"key": "info-zip-2009-01", "short_name": "Info-Zip License 2009-01", "name": "Info-Zip License 2009-01", "category": "Permissive", "owner": "info-zip", "homepage_url": "http://www.info-zip.org/", "spdx_license_key": "LicenseRef-scancode-info-zip-2009-01", "text_urls": ["ftp://ftp.info-zip.org/pub/infozip/license.html"], "ignorable_copyrights": ["Copyright (c) 1990-2009 Info-ZIP."], "ignorable_holders": ["Info-ZIP"], "ignorable_urls": ["ftp://ftp.info/", "http://www.info/"]} \ No newline at end of file +{ + "key": "info-zip-2009-01", + "short_name": "Info-Zip License 2009-01", + "name": "Info-Zip License 2009-01", + "category": "Permissive", + "owner": "info-zip", + "homepage_url": "http://www.info-zip.org/", + "spdx_license_key": "LicenseRef-scancode-info-zip-2009-01", + "text_urls": [ + "ftp://ftp.info-zip.org/pub/infozip/license.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 1990-2009 Info-ZIP." + ], + "ignorable_holders": [ + "Info-ZIP" + ], + "ignorable_urls": [ + "ftp://ftp.info/", + "http://www.info/" + ] +} \ No newline at end of file diff --git a/docs/info-zip.LICENSE b/docs/info-zip.LICENSE index 1815bf5bbf..5eea50312e 100644 --- a/docs/info-zip.LICENSE +++ b/docs/info-zip.LICENSE @@ -1,3 +1,21 @@ +--- +key: info-zip +short_name: Info-Zip License +name: Info-Zip License +category: Permissive +owner: info-zip +homepage_url: http://www.info-zip.org/doc/ +spdx_license_key: Info-ZIP +text_urls: + - http://www.info-zip.org/license.html +ignorable_copyrights: + - Copyright (c) 1990-1999 Info-ZIP. +ignorable_holders: + - Info-ZIP +ignorable_urls: + - ftp://ftp.cdrom.com/pub/infozip/license.html +--- + Info-Zip License This is version 1999-Oct-05 of the Info-ZIP copyright and license. The definitive version of this document should be available at ftp://ftp.cdrom.com/pub/infozip/license.html indefinitely. diff --git a/docs/info-zip.html b/docs/info-zip.html index dc9ef1fe15..b1242f13f7 100644 --- a/docs/info-zip.html +++ b/docs/info-zip.html @@ -183,7 +183,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/info-zip.json b/docs/info-zip.json index f742232d5c..936ea3060f 100644 --- a/docs/info-zip.json +++ b/docs/info-zip.json @@ -1 +1,21 @@ -{"key": "info-zip", "short_name": "Info-Zip License", "name": "Info-Zip License", "category": "Permissive", "owner": "info-zip", "homepage_url": "http://www.info-zip.org/doc/", "spdx_license_key": "Info-ZIP", "text_urls": ["http://www.info-zip.org/license.html"], "ignorable_copyrights": ["Copyright (c) 1990-1999 Info-ZIP."], "ignorable_holders": ["Info-ZIP"], "ignorable_urls": ["ftp://ftp.cdrom.com/pub/infozip/license.html"]} \ No newline at end of file +{ + "key": "info-zip", + "short_name": "Info-Zip License", + "name": "Info-Zip License", + "category": "Permissive", + "owner": "info-zip", + "homepage_url": "http://www.info-zip.org/doc/", + "spdx_license_key": "Info-ZIP", + "text_urls": [ + "http://www.info-zip.org/license.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 1990-1999 Info-ZIP." + ], + "ignorable_holders": [ + "Info-ZIP" + ], + "ignorable_urls": [ + "ftp://ftp.cdrom.com/pub/infozip/license.html" + ] +} \ No newline at end of file diff --git a/docs/infonode-1.1.LICENSE b/docs/infonode-1.1.LICENSE index df87e7e3ac..c4c69ac7e1 100644 --- a/docs/infonode-1.1.LICENSE +++ b/docs/infonode-1.1.LICENSE @@ -1,3 +1,22 @@ +--- +key: infonode-1.1 +short_name: InfoNode Software License 1.1 +name: InfoNode Software License Version 1.1 +category: Commercial +owner: InfoNode +homepage_url: http://www.infonode.net/licenses/InfoNodeLicense.html +spdx_license_key: LicenseRef-scancode-infonode-1.1 +other_urls: + - http://www.nnl.se/html/english/index.html +ignorable_copyrights: + - Copyright (c) 2004 NNL Technology AB, www.nnl.se +ignorable_holders: + - NNL Technology AB, www.nnl.se +ignorable_urls: + - http://proguard.sourceforge.net/ + - http://www.nnl.se/ +--- + InfoNode Software License Version 1.1 1. Definitions diff --git a/docs/infonode-1.1.html b/docs/infonode-1.1.html index cafe6dde40..60721fafc1 100644 --- a/docs/infonode-1.1.html +++ b/docs/infonode-1.1.html @@ -191,7 +191,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/infonode-1.1.json b/docs/infonode-1.1.json index 495d7e7f11..3adbbb70e4 100644 --- a/docs/infonode-1.1.json +++ b/docs/infonode-1.1.json @@ -1 +1,22 @@ -{"key": "infonode-1.1", "short_name": "InfoNode Software License 1.1", "name": "InfoNode Software License Version 1.1", "category": "Commercial", "owner": "InfoNode", "homepage_url": "http://www.infonode.net/licenses/InfoNodeLicense.html", "spdx_license_key": "LicenseRef-scancode-infonode-1.1", "other_urls": ["http://www.nnl.se/html/english/index.html"], "ignorable_copyrights": ["Copyright (c) 2004 NNL Technology AB, www.nnl.se"], "ignorable_holders": ["NNL Technology AB, www.nnl.se"], "ignorable_urls": ["http://proguard.sourceforge.net/", "http://www.nnl.se/"]} \ No newline at end of file +{ + "key": "infonode-1.1", + "short_name": "InfoNode Software License 1.1", + "name": "InfoNode Software License Version 1.1", + "category": "Commercial", + "owner": "InfoNode", + "homepage_url": "http://www.infonode.net/licenses/InfoNodeLicense.html", + "spdx_license_key": "LicenseRef-scancode-infonode-1.1", + "other_urls": [ + "http://www.nnl.se/html/english/index.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 2004 NNL Technology AB, www.nnl.se" + ], + "ignorable_holders": [ + "NNL Technology AB, www.nnl.se" + ], + "ignorable_urls": [ + "http://proguard.sourceforge.net/", + "http://www.nnl.se/" + ] +} \ No newline at end of file diff --git a/docs/initial-developer-public.LICENSE b/docs/initial-developer-public.LICENSE index dca6a903ca..ff7cf947f1 100644 --- a/docs/initial-developer-public.LICENSE +++ b/docs/initial-developer-public.LICENSE @@ -1,3 +1,17 @@ +--- +key: initial-developer-public +short_name: Initial Developer Public License +name: Initial Developer Public License +category: Copyleft +owner: Firebird +homepage_url: http://www.firebirdsql.org/en/initial-developer-s-public-license-version-1-0/ +spdx_license_key: LicenseRef-scancode-initial-developer-public +text_urls: + - http://www.firebirdsql.org/en/initial-developer-s-public-license-version-1-0/ +ignorable_urls: + - http://www.firebirdsql.org/en/initial +--- + Initial Developer's Public License Version 1.0 1. Definitions diff --git a/docs/initial-developer-public.html b/docs/initial-developer-public.html index efda1dcc91..4b219be153 100644 --- a/docs/initial-developer-public.html +++ b/docs/initial-developer-public.html @@ -624,7 +624,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/initial-developer-public.json b/docs/initial-developer-public.json index deee0f2c57..455eba93ab 100644 --- a/docs/initial-developer-public.json +++ b/docs/initial-developer-public.json @@ -1 +1,15 @@ -{"key": "initial-developer-public", "short_name": "Initial Developer Public License", "name": "Initial Developer Public License", "category": "Copyleft", "owner": "Firebird", "homepage_url": "http://www.firebirdsql.org/en/initial-developer-s-public-license-version-1-0/", "spdx_license_key": "LicenseRef-scancode-initial-developer-public", "text_urls": ["http://www.firebirdsql.org/en/initial-developer-s-public-license-version-1-0/"], "ignorable_urls": ["http://www.firebirdsql.org/en/initial"]} \ No newline at end of file +{ + "key": "initial-developer-public", + "short_name": "Initial Developer Public License", + "name": "Initial Developer Public License", + "category": "Copyleft", + "owner": "Firebird", + "homepage_url": "http://www.firebirdsql.org/en/initial-developer-s-public-license-version-1-0/", + "spdx_license_key": "LicenseRef-scancode-initial-developer-public", + "text_urls": [ + "http://www.firebirdsql.org/en/initial-developer-s-public-license-version-1-0/" + ], + "ignorable_urls": [ + "http://www.firebirdsql.org/en/initial" + ] +} \ No newline at end of file diff --git a/docs/inner-net-2.0.LICENSE b/docs/inner-net-2.0.LICENSE index 27ebd993c0..ad2ef2e201 100644 --- a/docs/inner-net-2.0.LICENSE +++ b/docs/inner-net-2.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: inner-net-2.0 +short_name: Inner Net 2.0 +name: Inner Net License 2.0 +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-inner-net-2.0 +other_urls: + - https://fedoraproject.org/wiki/Licensing/Inner_Net_License + - https://www.calculate-linux.org/packages/licenses/inner-net +minimum_coverage: 60 +--- + The Inner Net License, Version 2 The author(s) grant permission for redistribution and use in source and diff --git a/docs/inner-net-2.0.html b/docs/inner-net-2.0.html index d8f6cc56b1..d2ae8394b1 100644 --- a/docs/inner-net-2.0.html +++ b/docs/inner-net-2.0.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/inner-net-2.0.json b/docs/inner-net-2.0.json index 969f4e9375..9ec286bba2 100644 --- a/docs/inner-net-2.0.json +++ b/docs/inner-net-2.0.json @@ -1 +1,13 @@ -{"key": "inner-net-2.0", "short_name": "Inner Net 2.0", "name": "Inner Net License 2.0", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-inner-net-2.0", "other_urls": ["https://fedoraproject.org/wiki/Licensing/Inner_Net_License", "https://www.calculate-linux.org/packages/licenses/inner-net"], "minimum_coverage": 60} \ No newline at end of file +{ + "key": "inner-net-2.0", + "short_name": "Inner Net 2.0", + "name": "Inner Net License 2.0", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-inner-net-2.0", + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/Inner_Net_License", + "https://www.calculate-linux.org/packages/licenses/inner-net" + ], + "minimum_coverage": 60 +} \ No newline at end of file diff --git a/docs/inno-setup.LICENSE b/docs/inno-setup.LICENSE index 77bcdf76c0..50f941ba54 100644 --- a/docs/inno-setup.LICENSE +++ b/docs/inno-setup.LICENSE @@ -1,3 +1,24 @@ +--- +key: inno-setup +short_name: Inno Setup License +name: Inno Setup License +category: Permissive +owner: jrsoftware.org +homepage_url: http://www.jrsoftware.org/files/is/license.txt +spdx_license_key: LicenseRef-scancode-inno-setup +text_urls: + - http://www.jrsoftware.org/files/is/license.txt +ignorable_copyrights: + - Copyright (c) 1997-2010 Jordan Russell + - Portions Copyright (c) 2000-2010 Martijn Laan + - copyrighted by Jordan Russell +ignorable_holders: + - Jordan Russell + - Martijn Laan +ignorable_urls: + - http://www.jrsoftware.org/ +--- + Inno Setup License ================== diff --git a/docs/inno-setup.html b/docs/inno-setup.html index fe1845cfde..a3544957cb 100644 --- a/docs/inno-setup.html +++ b/docs/inno-setup.html @@ -199,7 +199,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/inno-setup.json b/docs/inno-setup.json index 5f55dc335f..6ff61c9e28 100644 --- a/docs/inno-setup.json +++ b/docs/inno-setup.json @@ -1 +1,24 @@ -{"key": "inno-setup", "short_name": "Inno Setup License", "name": "Inno Setup License", "category": "Permissive", "owner": "jrsoftware.org", "homepage_url": "http://www.jrsoftware.org/files/is/license.txt", "spdx_license_key": "LicenseRef-scancode-inno-setup", "text_urls": ["http://www.jrsoftware.org/files/is/license.txt"], "ignorable_copyrights": ["Copyright (c) 1997-2010 Jordan Russell", "Portions Copyright (c) 2000-2010 Martijn Laan", "copyrighted by Jordan Russell"], "ignorable_holders": ["Jordan Russell", "Martijn Laan"], "ignorable_urls": ["http://www.jrsoftware.org/"]} \ No newline at end of file +{ + "key": "inno-setup", + "short_name": "Inno Setup License", + "name": "Inno Setup License", + "category": "Permissive", + "owner": "jrsoftware.org", + "homepage_url": "http://www.jrsoftware.org/files/is/license.txt", + "spdx_license_key": "LicenseRef-scancode-inno-setup", + "text_urls": [ + "http://www.jrsoftware.org/files/is/license.txt" + ], + "ignorable_copyrights": [ + "Copyright (c) 1997-2010 Jordan Russell", + "Portions Copyright (c) 2000-2010 Martijn Laan", + "copyrighted by Jordan Russell" + ], + "ignorable_holders": [ + "Jordan Russell", + "Martijn Laan" + ], + "ignorable_urls": [ + "http://www.jrsoftware.org/" + ] +} \ No newline at end of file diff --git a/docs/inria-linking-exception.LICENSE b/docs/inria-linking-exception.LICENSE index c5873dbb68..0e3e6b9076 100644 --- a/docs/inria-linking-exception.LICENSE +++ b/docs/inria-linking-exception.LICENSE @@ -1,3 +1,23 @@ +--- +key: inria-linking-exception +short_name: INRIA Linking Exception to QPL 1.0 +name: INRIA Linking Exception to QPL 1.0 +category: Copyleft Limited +owner: INRIA +homepage_url: http://para.inria.fr/~maranget/hevea/distri/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-inria-linking-exception +other_urls: + - http://para.inria.fr/~maranget/hevea/distri/hevea-2.32.tar.gz +standard_notice: | + As a special exception to the Q Public Licence, you may develop + application programs, reusable components and other software items + that link with the original or modified versions of the Software + and are not made available to the general public, without any of the + additional requirements listed in clause 6c of the Q Public licence. + THE Q PUBLIC LICENSE version 1.0 +--- + As a special exception to the Q Public Licence, you may develop application programs, reusable components and other software items that link with the original or modified versions of the Software diff --git a/docs/inria-linking-exception.html b/docs/inria-linking-exception.html index dfb784973d..8778031fb9 100644 --- a/docs/inria-linking-exception.html +++ b/docs/inria-linking-exception.html @@ -160,7 +160,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/inria-linking-exception.json b/docs/inria-linking-exception.json index 6d1df2ebdc..d97d3a263e 100644 --- a/docs/inria-linking-exception.json +++ b/docs/inria-linking-exception.json @@ -1 +1,14 @@ -{"key": "inria-linking-exception", "short_name": "INRIA Linking Exception to QPL 1.0", "name": "INRIA Linking Exception to QPL 1.0", "category": "Copyleft Limited", "owner": "INRIA", "homepage_url": "http://para.inria.fr/~maranget/hevea/distri/LICENSE", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-inria-linking-exception", "other_urls": ["http://para.inria.fr/~maranget/hevea/distri/hevea-2.32.tar.gz"], "standard_notice": "As a special exception to the Q Public Licence, you may develop\napplication programs, reusable components and other software items\nthat link with the original or modified versions of the Software\nand are not made available to the general public, without any of the\nadditional requirements listed in clause 6c of the Q Public licence.\nTHE Q PUBLIC LICENSE version 1.0\n"} \ No newline at end of file +{ + "key": "inria-linking-exception", + "short_name": "INRIA Linking Exception to QPL 1.0", + "name": "INRIA Linking Exception to QPL 1.0", + "category": "Copyleft Limited", + "owner": "INRIA", + "homepage_url": "http://para.inria.fr/~maranget/hevea/distri/LICENSE", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-inria-linking-exception", + "other_urls": [ + "http://para.inria.fr/~maranget/hevea/distri/hevea-2.32.tar.gz" + ], + "standard_notice": "As a special exception to the Q Public Licence, you may develop\napplication programs, reusable components and other software items\nthat link with the original or modified versions of the Software\nand are not made available to the general public, without any of the\nadditional requirements listed in clause 6c of the Q Public licence.\nTHE Q PUBLIC LICENSE version 1.0\n" +} \ No newline at end of file diff --git a/docs/installsite.LICENSE b/docs/installsite.LICENSE index 07312ba067..5a1a21139a 100644 --- a/docs/installsite.LICENSE +++ b/docs/installsite.LICENSE @@ -1,3 +1,13 @@ +--- +key: installsite +short_name: InstallSite License Agreement +name: InstallSite License Agreement +category: Free Restricted +owner: Stefan Krueger +homepage_url: http://www.installsite.org/pages/en/license.htm +spdx_license_key: LicenseRef-scancode-installsite +--- + License Agreement IMPORTANT - READ CAREFULLY. This is a legal agreement between you @@ -48,4 +58,4 @@ the CONTENTS or the provision of or failure to provide support services, even if Stefan Krueger has been advised of the possibility of such damages. In any case, Stefan Krueger's entire liability under any provision of this license agreement shall be limited to the amount -actually paid by you for the CONTENTS. +actually paid by you for the CONTENTS. \ No newline at end of file diff --git a/docs/installsite.html b/docs/installsite.html index f20bc3462f..69c4bf3107 100644 --- a/docs/installsite.html +++ b/docs/installsite.html @@ -165,8 +165,7 @@ even if Stefan Krueger has been advised of the possibility of such damages. In any case, Stefan Krueger's entire liability under any provision of this license agreement shall be limited to the amount -actually paid by you for the CONTENTS. - +actually paid by you for the CONTENTS.
@@ -178,7 +177,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/installsite.json b/docs/installsite.json index eb22ec784b..a9d9b4362e 100644 --- a/docs/installsite.json +++ b/docs/installsite.json @@ -1 +1,9 @@ -{"key": "installsite", "short_name": "InstallSite License Agreement", "name": "InstallSite License Agreement", "category": "Free Restricted", "owner": "Stefan Krueger", "homepage_url": "http://www.installsite.org/pages/en/license.htm", "spdx_license_key": "LicenseRef-scancode-installsite"} \ No newline at end of file +{ + "key": "installsite", + "short_name": "InstallSite License Agreement", + "name": "InstallSite License Agreement", + "category": "Free Restricted", + "owner": "Stefan Krueger", + "homepage_url": "http://www.installsite.org/pages/en/license.htm", + "spdx_license_key": "LicenseRef-scancode-installsite" +} \ No newline at end of file diff --git a/docs/intel-acpi.LICENSE b/docs/intel-acpi.LICENSE index 653669bec1..4ea1fac229 100644 --- a/docs/intel-acpi.LICENSE +++ b/docs/intel-acpi.LICENSE @@ -1,3 +1,21 @@ +--- +key: intel-acpi +short_name: Intel ACPI SLA +name: Intel ACPI Software License Agreement +category: Permissive +owner: Intel Corporation +homepage_url: https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement +notes: | + Per Fedora, this license is no longer available at its original URL + http://www.intel.com/technology/iapc/acpi/license2.htm. A copy was taken + from the last available version at archive.org. +spdx_license_key: Intel-ACPI +ignorable_copyrights: + - Copyright (c) 1999-2005, Intel Corp. +ignorable_holders: + - Intel Corp. +--- + ACPI - Software License Agreement Software License Agreement IMPORTANT - READ BEFORE COPYING, INSTALLING diff --git a/docs/intel-acpi.html b/docs/intel-acpi.html index 1a1a0f952e..f6f295fc4a 100644 --- a/docs/intel-acpi.html +++ b/docs/intel-acpi.html @@ -268,7 +268,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/intel-acpi.json b/docs/intel-acpi.json index 099be1a1e5..09793c1867 100644 --- a/docs/intel-acpi.json +++ b/docs/intel-acpi.json @@ -1 +1,16 @@ -{"key": "intel-acpi", "short_name": "Intel ACPI SLA", "name": "Intel ACPI Software License Agreement", "category": "Permissive", "owner": "Intel Corporation", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement", "notes": "Per Fedora, this license is no longer available at its original URL\nhttp://www.intel.com/technology/iapc/acpi/license2.htm. A copy was taken\nfrom the last available version at archive.org.\n", "spdx_license_key": "Intel-ACPI", "ignorable_copyrights": ["Copyright (c) 1999-2005, Intel Corp."], "ignorable_holders": ["Intel Corp."]} \ No newline at end of file +{ + "key": "intel-acpi", + "short_name": "Intel ACPI SLA", + "name": "Intel ACPI Software License Agreement", + "category": "Permissive", + "owner": "Intel Corporation", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement", + "notes": "Per Fedora, this license is no longer available at its original URL\nhttp://www.intel.com/technology/iapc/acpi/license2.htm. A copy was taken\nfrom the last available version at archive.org.\n", + "spdx_license_key": "Intel-ACPI", + "ignorable_copyrights": [ + "Copyright (c) 1999-2005, Intel Corp." + ], + "ignorable_holders": [ + "Intel Corp." + ] +} \ No newline at end of file diff --git a/docs/intel-bcl.LICENSE b/docs/intel-bcl.LICENSE index 0765e282b7..944590aafd 100644 --- a/docs/intel-bcl.LICENSE +++ b/docs/intel-bcl.LICENSE @@ -1,3 +1,12 @@ +--- +key: intel-bcl +short_name: Intel BCL +name: Intel Binary Code License +category: Proprietary Free +owner: Intel Corporation +spdx_license_key: LicenseRef-scancode-intel-bcl +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: @@ -25,4 +34,4 @@ 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 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/intel-bcl.html b/docs/intel-bcl.html index 3b1c46679f..feac8968f4 100644 --- a/docs/intel-bcl.html +++ b/docs/intel-bcl.html @@ -135,8 +135,7 @@ 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 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -148,7 +147,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/intel-bcl.json b/docs/intel-bcl.json index f289b1f65b..f61c62fb0b 100644 --- a/docs/intel-bcl.json +++ b/docs/intel-bcl.json @@ -1 +1,8 @@ -{"key": "intel-bcl", "short_name": "Intel BCL", "name": "Intel Binary Code License", "category": "Proprietary Free", "owner": "Intel Corporation", "spdx_license_key": "LicenseRef-scancode-intel-bcl"} \ No newline at end of file +{ + "key": "intel-bcl", + "short_name": "Intel BCL", + "name": "Intel Binary Code License", + "category": "Proprietary Free", + "owner": "Intel Corporation", + "spdx_license_key": "LicenseRef-scancode-intel-bcl" +} \ No newline at end of file diff --git a/docs/intel-bsd-2-clause.LICENSE b/docs/intel-bsd-2-clause.LICENSE index a64317a261..3f29f7aeb0 100644 --- a/docs/intel-bsd-2-clause.LICENSE +++ b/docs/intel-bsd-2-clause.LICENSE @@ -1,3 +1,17 @@ +--- +key: intel-bsd-2-clause +short_name: Intel BSD 2 Clause License +name: Intel BSD 2 Clause License +category: Permissive +owner: Intel Corporation +notes: | + this license is seen in ZFS and FreeBSD. It is the same as intel-bsd + but with 2 clauses only. +spdx_license_key: LicenseRef-scancode-intel-bsd-2-clause +text_urls: + - https://github.com/freebsd/freebsd-src/blob/098dbd7ff7f3da9dda03802cdb2d8755f816eada/cddl/usr.sbin/zfsd/zfsd_exception.cc +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -21,4 +35,4 @@ 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 DAMAGES. +POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/docs/intel-bsd-2-clause.html b/docs/intel-bsd-2-clause.html index debbf7bac5..a2404939c8 100644 --- a/docs/intel-bsd-2-clause.html +++ b/docs/intel-bsd-2-clause.html @@ -149,8 +149,7 @@ 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 DAMAGES. - +POSSIBILITY OF SUCH DAMAGES.
@@ -162,7 +161,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/intel-bsd-2-clause.json b/docs/intel-bsd-2-clause.json index 61361dfeb7..99834c526e 100644 --- a/docs/intel-bsd-2-clause.json +++ b/docs/intel-bsd-2-clause.json @@ -1 +1,12 @@ -{"key": "intel-bsd-2-clause", "short_name": "Intel BSD 2 Clause License", "name": "Intel BSD 2 Clause License", "category": "Permissive", "owner": "Intel Corporation", "notes": "this license is seen in ZFS and FreeBSD. It is the same as intel-bsd\nbut with 2 clauses only.\n", "spdx_license_key": "LicenseRef-scancode-intel-bsd-2-clause", "text_urls": ["https://github.com/freebsd/freebsd-src/blob/098dbd7ff7f3da9dda03802cdb2d8755f816eada/cddl/usr.sbin/zfsd/zfsd_exception.cc"]} \ No newline at end of file +{ + "key": "intel-bsd-2-clause", + "short_name": "Intel BSD 2 Clause License", + "name": "Intel BSD 2 Clause License", + "category": "Permissive", + "owner": "Intel Corporation", + "notes": "this license is seen in ZFS and FreeBSD. It is the same as intel-bsd\nbut with 2 clauses only.\n", + "spdx_license_key": "LicenseRef-scancode-intel-bsd-2-clause", + "text_urls": [ + "https://github.com/freebsd/freebsd-src/blob/098dbd7ff7f3da9dda03802cdb2d8755f816eada/cddl/usr.sbin/zfsd/zfsd_exception.cc" + ] +} \ No newline at end of file diff --git a/docs/intel-bsd-export-control.LICENSE b/docs/intel-bsd-export-control.LICENSE index 172a7084f6..82a51e9af2 100644 --- a/docs/intel-bsd-export-control.LICENSE +++ b/docs/intel-bsd-export-control.LICENSE @@ -1,3 +1,21 @@ +--- +key: intel-bsd-export-control +short_name: Intel BSD - Export Control +name: Intel BSD - Export Control +category: Permissive +owner: Intel Corporation +homepage_url: http://opensource.org/licenses/intel-open-source-license.html +notes: this has this title in SPDX and OSI text The Intel Open Source License for CDSA/CSSM + Implementation (BSD License with Export Notice) +spdx_license_key: Intel +osi_url: http://www.opensource.org/licenses/intel-open-source-license.html +other_urls: + - http://opensource.org/licenses/Intel + - https://opensource.org/licenses/Intel + - https://opensource.org/licenses/intel-open-source-license.php +minimum_coverage: 75 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/intel-bsd-export-control.html b/docs/intel-bsd-export-control.html index 1e3f927b14..872eb0abbe 100644 --- a/docs/intel-bsd-export-control.html +++ b/docs/intel-bsd-export-control.html @@ -189,7 +189,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/intel-bsd-export-control.json b/docs/intel-bsd-export-control.json index 1bbda85cc8..a3f0f0551c 100644 --- a/docs/intel-bsd-export-control.json +++ b/docs/intel-bsd-export-control.json @@ -1 +1,17 @@ -{"key": "intel-bsd-export-control", "short_name": "Intel BSD - Export Control", "name": "Intel BSD - Export Control", "category": "Permissive", "owner": "Intel Corporation", "homepage_url": "http://opensource.org/licenses/intel-open-source-license.html", "notes": "this has this title in SPDX and OSI text The Intel Open Source License for CDSA/CSSM Implementation (BSD License with Export Notice)", "spdx_license_key": "Intel", "osi_url": "http://www.opensource.org/licenses/intel-open-source-license.html", "other_urls": ["http://opensource.org/licenses/Intel", "https://opensource.org/licenses/Intel", "https://opensource.org/licenses/intel-open-source-license.php"], "minimum_coverage": 75} \ No newline at end of file +{ + "key": "intel-bsd-export-control", + "short_name": "Intel BSD - Export Control", + "name": "Intel BSD - Export Control", + "category": "Permissive", + "owner": "Intel Corporation", + "homepage_url": "http://opensource.org/licenses/intel-open-source-license.html", + "notes": "this has this title in SPDX and OSI text The Intel Open Source License for CDSA/CSSM Implementation (BSD License with Export Notice)", + "spdx_license_key": "Intel", + "osi_url": "http://www.opensource.org/licenses/intel-open-source-license.html", + "other_urls": [ + "http://opensource.org/licenses/Intel", + "https://opensource.org/licenses/Intel", + "https://opensource.org/licenses/intel-open-source-license.php" + ], + "minimum_coverage": 75 +} \ No newline at end of file diff --git a/docs/intel-bsd.LICENSE b/docs/intel-bsd.LICENSE index e87185e8ed..10e03a2bba 100644 --- a/docs/intel-bsd.LICENSE +++ b/docs/intel-bsd.LICENSE @@ -1,3 +1,18 @@ +--- +key: intel-bsd +short_name: Intel BSD License +name: Intel BSD License +category: Permissive +owner: Intel Corporation +notes: | + this license is often used in conjunction with a choice of gpl-2.0 such + as in the Linux Kernel +spdx_license_key: LicenseRef-scancode-intel-bsd +text_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/history/history.git/tree/include/acpi/acoutput.h?h=v2.6.24&id=f9f4601f331aa1226d7a798a01950efbb388f07f + - https://github.com/rwatson/mbufs/blob/748b87203d7219fd9fe2f73894359a6301ce5be1/sys/xen/xenstore/xenstore_internal.h +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -23,4 +38,4 @@ 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 DAMAGES. +THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/docs/intel-bsd.html b/docs/intel-bsd.html index dc23784f7a..a58392c99a 100644 --- a/docs/intel-bsd.html +++ b/docs/intel-bsd.html @@ -151,8 +151,7 @@ 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 DAMAGES. - +THE POSSIBILITY OF SUCH DAMAGES.
@@ -164,7 +163,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/intel-bsd.json b/docs/intel-bsd.json index 6617bd3efe..119710d044 100644 --- a/docs/intel-bsd.json +++ b/docs/intel-bsd.json @@ -1 +1,13 @@ -{"key": "intel-bsd", "short_name": "Intel BSD License", "name": "Intel BSD License", "category": "Permissive", "owner": "Intel Corporation", "notes": "this license is often used in conjunction with a choice of gpl-2.0 such\nas in the Linux Kernel\n", "spdx_license_key": "LicenseRef-scancode-intel-bsd", "text_urls": ["https://git.kernel.org/pub/scm/linux/kernel/git/history/history.git/tree/include/acpi/acoutput.h?h=v2.6.24&id=f9f4601f331aa1226d7a798a01950efbb388f07f", "https://github.com/rwatson/mbufs/blob/748b87203d7219fd9fe2f73894359a6301ce5be1/sys/xen/xenstore/xenstore_internal.h"]} \ No newline at end of file +{ + "key": "intel-bsd", + "short_name": "Intel BSD License", + "name": "Intel BSD License", + "category": "Permissive", + "owner": "Intel Corporation", + "notes": "this license is often used in conjunction with a choice of gpl-2.0 such\nas in the Linux Kernel\n", + "spdx_license_key": "LicenseRef-scancode-intel-bsd", + "text_urls": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/history/history.git/tree/include/acpi/acoutput.h?h=v2.6.24&id=f9f4601f331aa1226d7a798a01950efbb388f07f", + "https://github.com/rwatson/mbufs/blob/748b87203d7219fd9fe2f73894359a6301ce5be1/sys/xen/xenstore/xenstore_internal.h" + ] +} \ No newline at end of file diff --git a/docs/intel-code-samples.LICENSE b/docs/intel-code-samples.LICENSE index 5b8d18034c..d9e339405b 100644 --- a/docs/intel-code-samples.LICENSE +++ b/docs/intel-code-samples.LICENSE @@ -1,3 +1,15 @@ +--- +key: intel-code-samples +short_name: Intel Code Samples License +name: Intel Code Samples License +category: Proprietary Free +owner: Intel Corporation +homepage_url: http://web.archive.org/web/20061110164256/http://www.intel.com/cd/ids/developer/asmo-na/eng/19287.htm?desturl=276611.htm +spdx_license_key: LicenseRef-scancode-intel-code-samples +text_urls: + - http://web.archive.org/web/20061110164256/http://www.intel.com/cd/ids/developer/asmo-na/eng/19287.htm?desturl=276611.htm +--- + Code Samples License IMPORTANT - READ BEFORE COPYING, INSTALLING, OR USING. diff --git a/docs/intel-code-samples.html b/docs/intel-code-samples.html index 9a9f4e7cf2..5018c7cedc 100644 --- a/docs/intel-code-samples.html +++ b/docs/intel-code-samples.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/intel-code-samples.json b/docs/intel-code-samples.json index 301b00859e..745e0b2710 100644 --- a/docs/intel-code-samples.json +++ b/docs/intel-code-samples.json @@ -1 +1,12 @@ -{"key": "intel-code-samples", "short_name": "Intel Code Samples License", "name": "Intel Code Samples License", "category": "Proprietary Free", "owner": "Intel Corporation", "homepage_url": "http://web.archive.org/web/20061110164256/http://www.intel.com/cd/ids/developer/asmo-na/eng/19287.htm?desturl=276611.htm", "spdx_license_key": "LicenseRef-scancode-intel-code-samples", "text_urls": ["http://web.archive.org/web/20061110164256/http://www.intel.com/cd/ids/developer/asmo-na/eng/19287.htm?desturl=276611.htm"]} \ No newline at end of file +{ + "key": "intel-code-samples", + "short_name": "Intel Code Samples License", + "name": "Intel Code Samples License", + "category": "Proprietary Free", + "owner": "Intel Corporation", + "homepage_url": "http://web.archive.org/web/20061110164256/http://www.intel.com/cd/ids/developer/asmo-na/eng/19287.htm?desturl=276611.htm", + "spdx_license_key": "LicenseRef-scancode-intel-code-samples", + "text_urls": [ + "http://web.archive.org/web/20061110164256/http://www.intel.com/cd/ids/developer/asmo-na/eng/19287.htm?desturl=276611.htm" + ] +} \ No newline at end of file diff --git a/docs/intel-confidential.LICENSE b/docs/intel-confidential.LICENSE index ecc7babd3f..e34c967895 100644 --- a/docs/intel-confidential.LICENSE +++ b/docs/intel-confidential.LICENSE @@ -1,3 +1,12 @@ +--- +key: intel-confidential +short_name: Intel Confidential +name: Intel Confidential +category: Commercial +owner: Intel Corporation +spdx_license_key: LicenseRef-scancode-intel-confidential +--- + INTEL CONFIDENTIAL The source code contained or described herein and all documents related to the source code (""Material"") are owned by Intel Corporation or its suppliers or licensors. Title to diff --git a/docs/intel-confidential.html b/docs/intel-confidential.html index f7a7be308d..bed050e7de 100644 --- a/docs/intel-confidential.html +++ b/docs/intel-confidential.html @@ -135,7 +135,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/intel-confidential.json b/docs/intel-confidential.json index f6dc32beb2..7ac30ecfed 100644 --- a/docs/intel-confidential.json +++ b/docs/intel-confidential.json @@ -1 +1,8 @@ -{"key": "intel-confidential", "short_name": "Intel Confidential", "name": "Intel Confidential", "category": "Commercial", "owner": "Intel Corporation", "spdx_license_key": "LicenseRef-scancode-intel-confidential"} \ No newline at end of file +{ + "key": "intel-confidential", + "short_name": "Intel Confidential", + "name": "Intel Confidential", + "category": "Commercial", + "owner": "Intel Corporation", + "spdx_license_key": "LicenseRef-scancode-intel-confidential" +} \ No newline at end of file diff --git a/docs/intel-firmware.LICENSE b/docs/intel-firmware.LICENSE index 223b9cce3f..e0fdae5134 100644 --- a/docs/intel-firmware.LICENSE +++ b/docs/intel-firmware.LICENSE @@ -1,3 +1,17 @@ +--- +key: intel-firmware +short_name: Intel Firmware License +name: Intel Firmware License +category: Proprietary Free +owner: Intel Corporation +homepage_url: https://github.com/coreos/portage-stable/blob/master/licenses/ipw2200-fw +spdx_license_key: LicenseRef-scancode-intel-firmware +text_urls: + - http://www.redhat.com/licenses/thirdparty/intel_ipw2100.html +other_urls: + - ftp://ftp.supermicro.com/CDR-X9_1.30_for_Intel_X9_platform/Intel/ME/INTEL_SOFTWARE_LICENSE_AGREEMENT.pdf +--- + TERMS AND CONDITIONS IMPORTANT - PLEASE READ BEFORE INSTALLING OR USING THIS INTEL(C) SOFTWARE diff --git a/docs/intel-firmware.html b/docs/intel-firmware.html index 7217d8bc0c..736c897a61 100644 --- a/docs/intel-firmware.html +++ b/docs/intel-firmware.html @@ -348,7 +348,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/intel-firmware.json b/docs/intel-firmware.json index 1ddc165c1b..10e6811059 100644 --- a/docs/intel-firmware.json +++ b/docs/intel-firmware.json @@ -1 +1,15 @@ -{"key": "intel-firmware", "short_name": "Intel Firmware License", "name": "Intel Firmware License", "category": "Proprietary Free", "owner": "Intel Corporation", "homepage_url": "https://github.com/coreos/portage-stable/blob/master/licenses/ipw2200-fw", "spdx_license_key": "LicenseRef-scancode-intel-firmware", "text_urls": ["http://www.redhat.com/licenses/thirdparty/intel_ipw2100.html"], "other_urls": ["ftp://ftp.supermicro.com/CDR-X9_1.30_for_Intel_X9_platform/Intel/ME/INTEL_SOFTWARE_LICENSE_AGREEMENT.pdf"]} \ No newline at end of file +{ + "key": "intel-firmware", + "short_name": "Intel Firmware License", + "name": "Intel Firmware License", + "category": "Proprietary Free", + "owner": "Intel Corporation", + "homepage_url": "https://github.com/coreos/portage-stable/blob/master/licenses/ipw2200-fw", + "spdx_license_key": "LicenseRef-scancode-intel-firmware", + "text_urls": [ + "http://www.redhat.com/licenses/thirdparty/intel_ipw2100.html" + ], + "other_urls": [ + "ftp://ftp.supermicro.com/CDR-X9_1.30_for_Intel_X9_platform/Intel/ME/INTEL_SOFTWARE_LICENSE_AGREEMENT.pdf" + ] +} \ No newline at end of file diff --git a/docs/intel-master-eula-sw-dev-2016.LICENSE b/docs/intel-master-eula-sw-dev-2016.LICENSE index 5ea8a569ce..953978822c 100644 --- a/docs/intel-master-eula-sw-dev-2016.LICENSE +++ b/docs/intel-master-eula-sw-dev-2016.LICENSE @@ -1,3 +1,19 @@ +--- +key: intel-master-eula-sw-dev-2016 +short_name: Intel Master EULA for SW Dev 2016 +name: Intel Master EULA for SW Development Products March 2016 +category: Proprietary Free +owner: Intel Corporation +homepage_url: https://registrationcenter.intel.com/en/forms/?productid=2558&licensetype=2 +spdx_license_key: LicenseRef-scancode-intel-master-eula-sw-dev-2016 +text_urls: + - https://software.intel.com/sites/default/files/managed/67/99/Master_EULA_for_Intel_Sw_Development_Products_March_2016.pdf +ignorable_urls: + - http://www.intel.com/privacy + - https://software.intel.com/en + - https://software.intel.com/en-us/articles/end-user-license-agreement +--- + IMPORTANT INFORMATION ABOUT YOUR RIGHTS, OBLIGATIONS AND THE USE OF YOUR DATA - READ AND AGREE BEFORE COPYING, INSTALLING OR USING This Agreement forms a legally binding contract between you, or the company or other legal entity ("Legal Entity") for which you represent and warrant that you have the legal authority to bind that Legal Entity, are agreeing to this Agreement (each, "You" or "Your") and Intel Corporation and its subsidiaries (collectively "Intel") regarding Your use of the Materials. By copying, installing, distributing, publicly displaying, or otherwise using the Materials, You agree to be bound by the terms of this Agreement. If You do not agree to the terms of this Agreement, do not copy, install, distribute, publicly display, or use the Materials. You affirm that You are 18 years old or older or, if not, Your parent, legal guardian or Legal Entity must agree and enter into this Agreement. diff --git a/docs/intel-master-eula-sw-dev-2016.html b/docs/intel-master-eula-sw-dev-2016.html index 4445e78f79..902d3c1f40 100644 --- a/docs/intel-master-eula-sw-dev-2016.html +++ b/docs/intel-master-eula-sw-dev-2016.html @@ -295,7 +295,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/intel-master-eula-sw-dev-2016.json b/docs/intel-master-eula-sw-dev-2016.json index 80a28cea60..05149cdad4 100644 --- a/docs/intel-master-eula-sw-dev-2016.json +++ b/docs/intel-master-eula-sw-dev-2016.json @@ -1 +1,17 @@ -{"key": "intel-master-eula-sw-dev-2016", "short_name": "Intel Master EULA for SW Dev 2016", "name": "Intel Master EULA for SW Development Products March 2016", "category": "Proprietary Free", "owner": "Intel Corporation", "homepage_url": "https://registrationcenter.intel.com/en/forms/?productid=2558&licensetype=2", "spdx_license_key": "LicenseRef-scancode-intel-master-eula-sw-dev-2016", "text_urls": ["https://software.intel.com/sites/default/files/managed/67/99/Master_EULA_for_Intel_Sw_Development_Products_March_2016.pdf"], "ignorable_urls": ["http://www.intel.com/privacy", "https://software.intel.com/en", "https://software.intel.com/en-us/articles/end-user-license-agreement"]} \ No newline at end of file +{ + "key": "intel-master-eula-sw-dev-2016", + "short_name": "Intel Master EULA for SW Dev 2016", + "name": "Intel Master EULA for SW Development Products March 2016", + "category": "Proprietary Free", + "owner": "Intel Corporation", + "homepage_url": "https://registrationcenter.intel.com/en/forms/?productid=2558&licensetype=2", + "spdx_license_key": "LicenseRef-scancode-intel-master-eula-sw-dev-2016", + "text_urls": [ + "https://software.intel.com/sites/default/files/managed/67/99/Master_EULA_for_Intel_Sw_Development_Products_March_2016.pdf" + ], + "ignorable_urls": [ + "http://www.intel.com/privacy", + "https://software.intel.com/en", + "https://software.intel.com/en-us/articles/end-user-license-agreement" + ] +} \ No newline at end of file diff --git a/docs/intel-material.LICENSE b/docs/intel-material.LICENSE index 9d485587a1..1f7a45d10a 100644 --- a/docs/intel-material.LICENSE +++ b/docs/intel-material.LICENSE @@ -1,3 +1,12 @@ +--- +key: intel-material +short_name: Intel Material License +name: Intel Material License +category: Commercial +owner: Intel Corporation +spdx_license_key: LicenseRef-scancode-intel-material +--- + The source code, information and material ("Material") contained herein is owned by Intel Corporation or its suppliers or licensors, and title to such Material remains with Intel Corporation or its suppliers or licensors. diff --git a/docs/intel-material.html b/docs/intel-material.html index b825eb3d38..82d57a4025 100644 --- a/docs/intel-material.html +++ b/docs/intel-material.html @@ -140,7 +140,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/intel-material.json b/docs/intel-material.json index db580eace8..753ba40147 100644 --- a/docs/intel-material.json +++ b/docs/intel-material.json @@ -1 +1,8 @@ -{"key": "intel-material", "short_name": "Intel Material License", "name": "Intel Material License", "category": "Commercial", "owner": "Intel Corporation", "spdx_license_key": "LicenseRef-scancode-intel-material"} \ No newline at end of file +{ + "key": "intel-material", + "short_name": "Intel Material License", + "name": "Intel Material License", + "category": "Commercial", + "owner": "Intel Corporation", + "spdx_license_key": "LicenseRef-scancode-intel-material" +} \ No newline at end of file diff --git a/docs/intel-mcu-2018.LICENSE b/docs/intel-mcu-2018.LICENSE index 083cf4ba57..115d5d0561 100644 --- a/docs/intel-mcu-2018.LICENSE +++ b/docs/intel-mcu-2018.LICENSE @@ -1,3 +1,13 @@ +--- +key: intel-mcu-2018 +short_name: Intel MCU path license 2018 +name: Intel MCU path license 2018 +category: Proprietary Free +owner: Intel Corporation +homepage_url: https://01.org/mcu-path-license-2018 +spdx_license_key: LicenseRef-scancode-intel-mcu-2018 +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted, provided that the following conditions are met: diff --git a/docs/intel-mcu-2018.html b/docs/intel-mcu-2018.html index b68c5212b3..41b290815d 100644 --- a/docs/intel-mcu-2018.html +++ b/docs/intel-mcu-2018.html @@ -139,7 +139,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/intel-mcu-2018.json b/docs/intel-mcu-2018.json index 40279a2cdf..5b3c473a90 100644 --- a/docs/intel-mcu-2018.json +++ b/docs/intel-mcu-2018.json @@ -1 +1,9 @@ -{"key": "intel-mcu-2018", "short_name": "Intel MCU path license 2018", "name": "Intel MCU path license 2018", "category": "Proprietary Free", "owner": "Intel Corporation", "homepage_url": "https://01.org/mcu-path-license-2018", "spdx_license_key": "LicenseRef-scancode-intel-mcu-2018"} \ No newline at end of file +{ + "key": "intel-mcu-2018", + "short_name": "Intel MCU path license 2018", + "name": "Intel MCU path license 2018", + "category": "Proprietary Free", + "owner": "Intel Corporation", + "homepage_url": "https://01.org/mcu-path-license-2018", + "spdx_license_key": "LicenseRef-scancode-intel-mcu-2018" +} \ No newline at end of file diff --git a/docs/intel-microcode.LICENSE b/docs/intel-microcode.LICENSE index 35dd46f06e..792fc34524 100644 --- a/docs/intel-microcode.LICENSE +++ b/docs/intel-microcode.LICENSE @@ -1,3 +1,14 @@ +--- +key: intel-microcode +short_name: Intel Microcode License +name: Intel Microcode License +category: Proprietary Free +owner: Intel Corporation +spdx_license_key: LicenseRef-scancode-intel-microcode +other_urls: + - https://downloadmirror.intel.com/28039/eng/microcode-20180807.tgz +--- + SOFTWARE LICENSE AGREEMENT DO NOT DOWNLOAD, INSTALL, ACCESS, COPY, OR USE ANY PORTION OF THE SOFTWARE diff --git a/docs/intel-microcode.html b/docs/intel-microcode.html index f03986afa3..ff160ff21c 100644 --- a/docs/intel-microcode.html +++ b/docs/intel-microcode.html @@ -459,7 +459,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/intel-microcode.json b/docs/intel-microcode.json index 68dc73e013..075cb69202 100644 --- a/docs/intel-microcode.json +++ b/docs/intel-microcode.json @@ -1 +1,11 @@ -{"key": "intel-microcode", "short_name": "Intel Microcode License", "name": "Intel Microcode License", "category": "Proprietary Free", "owner": "Intel Corporation", "spdx_license_key": "LicenseRef-scancode-intel-microcode", "other_urls": ["https://downloadmirror.intel.com/28039/eng/microcode-20180807.tgz"]} \ No newline at end of file +{ + "key": "intel-microcode", + "short_name": "Intel Microcode License", + "name": "Intel Microcode License", + "category": "Proprietary Free", + "owner": "Intel Corporation", + "spdx_license_key": "LicenseRef-scancode-intel-microcode", + "other_urls": [ + "https://downloadmirror.intel.com/28039/eng/microcode-20180807.tgz" + ] +} \ No newline at end of file diff --git a/docs/intel-osl-1989.LICENSE b/docs/intel-osl-1989.LICENSE index 4707ca1bbd..9c4b954d4f 100644 --- a/docs/intel-osl-1989.LICENSE +++ b/docs/intel-osl-1989.LICENSE @@ -1,3 +1,16 @@ +--- +key: intel-osl-1989 +short_name: Intel OSL 1989 +name: Intel Open Source License 1989 +category: Permissive +owner: Intel Corporation +spdx_license_key: LicenseRef-scancode-intel-osl-1989 +ignorable_copyrights: + - Copyright (c) 1989, Intel Corporation +ignorable_holders: + - Intel Corporation +--- + Intel Open Source License Copyright (c) 1989, Intel Corporation diff --git a/docs/intel-osl-1989.html b/docs/intel-osl-1989.html index f42f6453ab..b74bf36ee8 100644 --- a/docs/intel-osl-1989.html +++ b/docs/intel-osl-1989.html @@ -154,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/intel-osl-1989.json b/docs/intel-osl-1989.json index bfa70ab845..f2ab22b558 100644 --- a/docs/intel-osl-1989.json +++ b/docs/intel-osl-1989.json @@ -1 +1,14 @@ -{"key": "intel-osl-1989", "short_name": "Intel OSL 1989", "name": "Intel Open Source License 1989", "category": "Permissive", "owner": "Intel Corporation", "spdx_license_key": "LicenseRef-scancode-intel-osl-1989", "ignorable_copyrights": ["Copyright (c) 1989, Intel Corporation"], "ignorable_holders": ["Intel Corporation"]} \ No newline at end of file +{ + "key": "intel-osl-1989", + "short_name": "Intel OSL 1989", + "name": "Intel Open Source License 1989", + "category": "Permissive", + "owner": "Intel Corporation", + "spdx_license_key": "LicenseRef-scancode-intel-osl-1989", + "ignorable_copyrights": [ + "Copyright (c) 1989, Intel Corporation" + ], + "ignorable_holders": [ + "Intel Corporation" + ] +} \ No newline at end of file diff --git a/docs/intel-osl-1993.LICENSE b/docs/intel-osl-1993.LICENSE index b27f1fb389..ce10e44440 100644 --- a/docs/intel-osl-1993.LICENSE +++ b/docs/intel-osl-1993.LICENSE @@ -1,3 +1,12 @@ +--- +key: intel-osl-1993 +short_name: Intel OSL 1993 +name: Intel Open Source License 1993 +category: Permissive +owner: Intel Corporation +spdx_license_key: LicenseRef-scancode-intel-osl-1993 +--- + Intel hereby grants you permission to copy, modify, and distribute this software and its documentation. Intel grants this permission provided that the above copyright notice appears in all copies and that both the @@ -20,4 +29,4 @@ documentation and results solely at your own risk. IN NO EVENT SHALL INTEL BE LIABLE FOR ANY LOSS OF USE, LOSS OF BUSINESS, LOSS OF PROFITS, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES OF ANY KIND. IN NO EVENT SHALL INTEL'S TOTAL LIABILITY EXCEED THE SUM -PAID TO INTEL FOR THE PRODUCT LICENSED HEREUNDER. +PAID TO INTEL FOR THE PRODUCT LICENSED HEREUNDER. \ No newline at end of file diff --git a/docs/intel-osl-1993.html b/docs/intel-osl-1993.html index 1957ace7f8..6b48e7cf15 100644 --- a/docs/intel-osl-1993.html +++ b/docs/intel-osl-1993.html @@ -130,8 +130,7 @@ IN NO EVENT SHALL INTEL BE LIABLE FOR ANY LOSS OF USE, LOSS OF BUSINESS, LOSS OF PROFITS, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES OF ANY KIND. IN NO EVENT SHALL INTEL'S TOTAL LIABILITY EXCEED THE SUM -PAID TO INTEL FOR THE PRODUCT LICENSED HEREUNDER. - +PAID TO INTEL FOR THE PRODUCT LICENSED HEREUNDER.
@@ -143,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/intel-osl-1993.json b/docs/intel-osl-1993.json index 2450ea878c..8b659ef0e9 100644 --- a/docs/intel-osl-1993.json +++ b/docs/intel-osl-1993.json @@ -1 +1,8 @@ -{"key": "intel-osl-1993", "short_name": "Intel OSL 1993", "name": "Intel Open Source License 1993", "category": "Permissive", "owner": "Intel Corporation", "spdx_license_key": "LicenseRef-scancode-intel-osl-1993"} \ No newline at end of file +{ + "key": "intel-osl-1993", + "short_name": "Intel OSL 1993", + "name": "Intel Open Source License 1993", + "category": "Permissive", + "owner": "Intel Corporation", + "spdx_license_key": "LicenseRef-scancode-intel-osl-1993" +} \ No newline at end of file diff --git a/docs/intel-royalty-free.LICENSE b/docs/intel-royalty-free.LICENSE index d38a3cba23..eea4987a0c 100644 --- a/docs/intel-royalty-free.LICENSE +++ b/docs/intel-royalty-free.LICENSE @@ -1,3 +1,15 @@ +--- +key: intel-royalty-free +short_name: Intel Royalty Free License +name: Intel Royalty Free License +category: Permissive +owner: Intel Corporation +spdx_license_key: LicenseRef-scancode-intel-royalty-free +minimum_coverage: 60 +ignorable_authors: + - Intel Corporation +--- + This program has been developed by Intel Corporation. You have Intel's permission to incorporate this code into your product, royalty free. Intel has various @@ -16,4 +28,4 @@ assume any responsibility for any errors which may appear in this code nor any responsibility to update it. Other brands and names are the property of their respective -owners. +owners. \ No newline at end of file diff --git a/docs/intel-royalty-free.html b/docs/intel-royalty-free.html index 601f74d127..0e94181299 100644 --- a/docs/intel-royalty-free.html +++ b/docs/intel-royalty-free.html @@ -142,8 +142,7 @@ appear in this code nor any responsibility to update it. Other brands and names are the property of their respective -owners. - +owners.
@@ -155,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/intel-royalty-free.json b/docs/intel-royalty-free.json index 31181fa22a..5e674506d0 100644 --- a/docs/intel-royalty-free.json +++ b/docs/intel-royalty-free.json @@ -1 +1,12 @@ -{"key": "intel-royalty-free", "short_name": "Intel Royalty Free License", "name": "Intel Royalty Free License", "category": "Permissive", "owner": "Intel Corporation", "spdx_license_key": "LicenseRef-scancode-intel-royalty-free", "minimum_coverage": 60, "ignorable_authors": ["Intel Corporation"]} \ No newline at end of file +{ + "key": "intel-royalty-free", + "short_name": "Intel Royalty Free License", + "name": "Intel Royalty Free License", + "category": "Permissive", + "owner": "Intel Corporation", + "spdx_license_key": "LicenseRef-scancode-intel-royalty-free", + "minimum_coverage": 60, + "ignorable_authors": [ + "Intel Corporation" + ] +} \ No newline at end of file diff --git a/docs/intel-sample-source-code-2015.LICENSE b/docs/intel-sample-source-code-2015.LICENSE index ac822b5b1e..be5318dc23 100644 --- a/docs/intel-sample-source-code-2015.LICENSE +++ b/docs/intel-sample-source-code-2015.LICENSE @@ -1,3 +1,15 @@ +--- +key: intel-sample-source-code-2015 +short_name: Intel Sample Source Code 2015 +name: Intel Sample Source Code License Agreement 2015 +category: Proprietary Free +owner: Intel Corporation +homepage_url: https://software.intel.com/protected-download/267270/734854 +spdx_license_key: LicenseRef-scancode-intel-sample-source-code-2015 +ignorable_urls: + - http://www.intel.com/content/www/us/en/legal/export-compliance.html +--- + Intel Sample Source Code License Agreement Code Samples License Agreement (Version December 2015) diff --git a/docs/intel-sample-source-code-2015.html b/docs/intel-sample-source-code-2015.html index b0df535482..bc83e00a21 100644 --- a/docs/intel-sample-source-code-2015.html +++ b/docs/intel-sample-source-code-2015.html @@ -226,7 +226,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/intel-sample-source-code-2015.json b/docs/intel-sample-source-code-2015.json index c576ad7210..fdda10f96b 100644 --- a/docs/intel-sample-source-code-2015.json +++ b/docs/intel-sample-source-code-2015.json @@ -1 +1,12 @@ -{"key": "intel-sample-source-code-2015", "short_name": "Intel Sample Source Code 2015", "name": "Intel Sample Source Code License Agreement 2015", "category": "Proprietary Free", "owner": "Intel Corporation", "homepage_url": "https://software.intel.com/protected-download/267270/734854", "spdx_license_key": "LicenseRef-scancode-intel-sample-source-code-2015", "ignorable_urls": ["http://www.intel.com/content/www/us/en/legal/export-compliance.html"]} \ No newline at end of file +{ + "key": "intel-sample-source-code-2015", + "short_name": "Intel Sample Source Code 2015", + "name": "Intel Sample Source Code License Agreement 2015", + "category": "Proprietary Free", + "owner": "Intel Corporation", + "homepage_url": "https://software.intel.com/protected-download/267270/734854", + "spdx_license_key": "LicenseRef-scancode-intel-sample-source-code-2015", + "ignorable_urls": [ + "http://www.intel.com/content/www/us/en/legal/export-compliance.html" + ] +} \ No newline at end of file diff --git a/docs/intel-scl.LICENSE b/docs/intel-scl.LICENSE index b4244b7418..9a42931cd5 100644 --- a/docs/intel-scl.LICENSE +++ b/docs/intel-scl.LICENSE @@ -1,3 +1,14 @@ +--- +key: intel-scl +short_name: Intel Source Code License Agreement +name: Intel Source Code License Agreement +category: Proprietary Free +owner: Intel Corporation +spdx_license_key: LicenseRef-scancode-intel-scl +other_urls: + - http://software.intel.com/en-us/articles/intel-64-architecture-processor-topology-enumeration +--- + Intel Source Code License Agreement This license governs use of the accompanying software. By installing or copying all or any part of the software components in this package, you ("you" or "Licensee") agree to the terms of this agreement. Do not install or copy the software until you have carefully read and agreed to the following terms and conditions. If you do not agree to the terms of this agreement, promptly return the software to Intel Corporation ("Intel"). diff --git a/docs/intel-scl.html b/docs/intel-scl.html index 0c4312b85f..208abdf63f 100644 --- a/docs/intel-scl.html +++ b/docs/intel-scl.html @@ -174,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/intel-scl.json b/docs/intel-scl.json index 3c9f32ffa2..2d77c5efaa 100644 --- a/docs/intel-scl.json +++ b/docs/intel-scl.json @@ -1 +1,11 @@ -{"key": "intel-scl", "short_name": "Intel Source Code License Agreement", "name": "Intel Source Code License Agreement", "category": "Proprietary Free", "owner": "Intel Corporation", "spdx_license_key": "LicenseRef-scancode-intel-scl", "other_urls": ["http://software.intel.com/en-us/articles/intel-64-architecture-processor-topology-enumeration"]} \ No newline at end of file +{ + "key": "intel-scl", + "short_name": "Intel Source Code License Agreement", + "name": "Intel Source Code License Agreement", + "category": "Proprietary Free", + "owner": "Intel Corporation", + "spdx_license_key": "LicenseRef-scancode-intel-scl", + "other_urls": [ + "http://software.intel.com/en-us/articles/intel-64-architecture-processor-topology-enumeration" + ] +} \ No newline at end of file diff --git a/docs/intel.LICENSE b/docs/intel.LICENSE index 8a1a461cd8..ad3cb612ba 100644 --- a/docs/intel.LICENSE +++ b/docs/intel.LICENSE @@ -1,3 +1,19 @@ +--- +key: intel +short_name: Intel Limited Patent License +name: Intel Limited Patent License +category: Proprietary Free +owner: Intel Corporation +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.IntcSST2 +spdx_license_key: LicenseRef-scancode-intel +text_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.adsp_sst +other_urls: + - http://web.archive.org/web/20060924155349/http://www.mepis.org/node/10358 +ignorable_urls: + - http://opensource.org/licenses +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/docs/intel.html b/docs/intel.html index 86e6e74e05..46a24b2e3c 100644 --- a/docs/intel.html +++ b/docs/intel.html @@ -192,7 +192,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/intel.json b/docs/intel.json index 11fdb254c4..166d2ef1e8 100644 --- a/docs/intel.json +++ b/docs/intel.json @@ -1 +1,18 @@ -{"key": "intel", "short_name": "Intel Limited Patent License", "name": "Intel Limited Patent License", "category": "Proprietary Free", "owner": "Intel Corporation", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.IntcSST2", "spdx_license_key": "LicenseRef-scancode-intel", "text_urls": ["https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.adsp_sst"], "other_urls": ["http://web.archive.org/web/20060924155349/http://www.mepis.org/node/10358"], "ignorable_urls": ["http://opensource.org/licenses"]} \ No newline at end of file +{ + "key": "intel", + "short_name": "Intel Limited Patent License", + "name": "Intel Limited Patent License", + "category": "Proprietary Free", + "owner": "Intel Corporation", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.IntcSST2", + "spdx_license_key": "LicenseRef-scancode-intel", + "text_urls": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.adsp_sst" + ], + "other_urls": [ + "http://web.archive.org/web/20060924155349/http://www.mepis.org/node/10358" + ], + "ignorable_urls": [ + "http://opensource.org/licenses" + ] +} \ No newline at end of file diff --git a/docs/interbase-1.0.LICENSE b/docs/interbase-1.0.LICENSE index 936d048518..45ccb61305 100644 --- a/docs/interbase-1.0.LICENSE +++ b/docs/interbase-1.0.LICENSE @@ -1,3 +1,27 @@ +--- +key: interbase-1.0 +short_name: Interbase Public License 1.0 +name: Interbase Public License 1.0 +category: Copyleft +owner: Borland +homepage_url: http://info.borland.com/devsupport/interbase/opensource/IPL.html +spdx_license_key: Interbase-1.0 +text_urls: + - https://web.archive.org/web/20060319014854/http://info.borland.com/devsupport/interbase/opensource/IPL.html +other_urls: + - http://info.borland.com/devsupport/interbase/opensource/IPL.html +ignorable_copyrights: + - Copyright (c) Borland/Inprise +ignorable_holders: + - Borland/Inprise +ignorable_authors: + - Borland Software Corp. + - InterBase Software Corp +ignorable_urls: + - http://info.borland.com/devsupport/interbase/opensource/IPL.html + - http://www.interbase.com/IPL.html +--- + Interbase Public License v1.0 http://info.borland.com/devsupport/interbase/opensource/IPL.html diff --git a/docs/interbase-1.0.html b/docs/interbase-1.0.html index 7ad434025c..1d671d36c6 100644 --- a/docs/interbase-1.0.html +++ b/docs/interbase-1.0.html @@ -375,7 +375,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/interbase-1.0.json b/docs/interbase-1.0.json index cf8fa6c7ee..6a380c6ad9 100644 --- a/docs/interbase-1.0.json +++ b/docs/interbase-1.0.json @@ -1 +1,29 @@ -{"key": "interbase-1.0", "short_name": "Interbase Public License 1.0", "name": "Interbase Public License 1.0", "category": "Copyleft", "owner": "Borland", "homepage_url": "http://info.borland.com/devsupport/interbase/opensource/IPL.html", "spdx_license_key": "Interbase-1.0", "text_urls": ["https://web.archive.org/web/20060319014854/http://info.borland.com/devsupport/interbase/opensource/IPL.html"], "other_urls": ["http://info.borland.com/devsupport/interbase/opensource/IPL.html"], "ignorable_copyrights": ["Copyright (c) Borland/Inprise"], "ignorable_holders": ["Borland/Inprise"], "ignorable_authors": ["Borland Software Corp.", "InterBase Software Corp"], "ignorable_urls": ["http://info.borland.com/devsupport/interbase/opensource/IPL.html", "http://www.interbase.com/IPL.html"]} \ No newline at end of file +{ + "key": "interbase-1.0", + "short_name": "Interbase Public License 1.0", + "name": "Interbase Public License 1.0", + "category": "Copyleft", + "owner": "Borland", + "homepage_url": "http://info.borland.com/devsupport/interbase/opensource/IPL.html", + "spdx_license_key": "Interbase-1.0", + "text_urls": [ + "https://web.archive.org/web/20060319014854/http://info.borland.com/devsupport/interbase/opensource/IPL.html" + ], + "other_urls": [ + "http://info.borland.com/devsupport/interbase/opensource/IPL.html" + ], + "ignorable_copyrights": [ + "Copyright (c) Borland/Inprise" + ], + "ignorable_holders": [ + "Borland/Inprise" + ], + "ignorable_authors": [ + "Borland Software Corp.", + "InterBase Software Corp" + ], + "ignorable_urls": [ + "http://info.borland.com/devsupport/interbase/opensource/IPL.html", + "http://www.interbase.com/IPL.html" + ] +} \ No newline at end of file diff --git a/docs/iolib-exception-2.0.LICENSE b/docs/iolib-exception-2.0.LICENSE index fe38f3c4f2..273ae478f0 100644 --- a/docs/iolib-exception-2.0.LICENSE +++ b/docs/iolib-exception-2.0.LICENSE @@ -1,3 +1,34 @@ +--- +key: iolib-exception-2.0 +short_name: GNU IO Library exception to GPL 2.0 +name: GNU IO Library exception to GPL 2.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: LicenseRef-scancode-iolib-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This is part of libio/iostream, providing -*- C++ -*- input/output. + Copyright (C) 2000 Free Software Foundation + This file is part of the GNU IO Library. This library 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 + 2, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + As a special exception, if you link this library with files compiled with a + GNU compiler to produce an executable, this does not cause the resulting + executable to be covered by the GNU General Public License. This exception + does not however invalidate any other reasons why the executable file might + be covered by the GNU General Public License. +--- + As a special exception, if you link this library with files compiled with a GNU compiler to produce an executable, this does not cause the resulting executable to be covered by the GNU General Public License. This exception does diff --git a/docs/iolib-exception-2.0.html b/docs/iolib-exception-2.0.html index 89a951cc63..1e2f75ae6e 100644 --- a/docs/iolib-exception-2.0.html +++ b/docs/iolib-exception-2.0.html @@ -165,7 +165,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/iolib-exception-2.0.json b/docs/iolib-exception-2.0.json index 4a394be3d6..9e47a87ae2 100644 --- a/docs/iolib-exception-2.0.json +++ b/docs/iolib-exception-2.0.json @@ -1 +1,13 @@ -{"key": "iolib-exception-2.0", "short_name": "GNU IO Library exception to GPL 2.0", "name": "GNU IO Library exception to GPL 2.0", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-iolib-exception-2.0", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "This is part of libio/iostream, providing -*- C++ -*- input/output.\nCopyright (C) 2000 Free Software Foundation\nThis file is part of the GNU IO Library. This library is free software; you\ncan redistribute it and/or modify it under the terms of the GNU General\nPublic License as published by the Free Software Foundation; either version\n2, or (at your option) any later version.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\nAs a special exception, if you link this library with files compiled with a\nGNU compiler to produce an executable, this does not cause the resulting\nexecutable to be covered by the GNU General Public License. This exception\ndoes not however invalidate any other reasons why the executable file might\nbe covered by the GNU General Public License.\n"} \ No newline at end of file +{ + "key": "iolib-exception-2.0", + "short_name": "GNU IO Library exception to GPL 2.0", + "name": "GNU IO Library exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-iolib-exception-2.0", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "This is part of libio/iostream, providing -*- C++ -*- input/output.\nCopyright (C) 2000 Free Software Foundation\nThis file is part of the GNU IO Library. This library is free software; you\ncan redistribute it and/or modify it under the terms of the GNU General\nPublic License as published by the Free Software Foundation; either version\n2, or (at your option) any later version.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\nAs a special exception, if you link this library with files compiled with a\nGNU compiler to produce an executable, this does not cause the resulting\nexecutable to be covered by the GNU General Public License. This exception\ndoes not however invalidate any other reasons why the executable file might\nbe covered by the GNU General Public License.\n" +} \ No newline at end of file diff --git a/docs/iozone.LICENSE b/docs/iozone.LICENSE index de2b6344ca..8435b9b573 100644 --- a/docs/iozone.LICENSE +++ b/docs/iozone.LICENSE @@ -1,3 +1,13 @@ +--- +key: iozone +short_name: IOzone License +name: IOzone License +category: Proprietary Free +owner: William Norcott +homepage_url: http://www.iozone.org/docs/Iozone_License.txt +spdx_license_key: LicenseRef-scancode-iozone +--- + License to freely use and distribute this software is hereby granted by the author, subject to the condition that this copyright notice remains intact. The author retains the exclusive right to publish derivative works based on this diff --git a/docs/iozone.html b/docs/iozone.html index f5a022e05f..0780c0ad1f 100644 --- a/docs/iozone.html +++ b/docs/iozone.html @@ -142,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/iozone.json b/docs/iozone.json index b4cd6d29c7..9746ae0a75 100644 --- a/docs/iozone.json +++ b/docs/iozone.json @@ -1 +1,9 @@ -{"key": "iozone", "short_name": "IOzone License", "name": "IOzone License", "category": "Proprietary Free", "owner": "William Norcott", "homepage_url": "http://www.iozone.org/docs/Iozone_License.txt", "spdx_license_key": "LicenseRef-scancode-iozone"} \ No newline at end of file +{ + "key": "iozone", + "short_name": "IOzone License", + "name": "IOzone License", + "category": "Proprietary Free", + "owner": "William Norcott", + "homepage_url": "http://www.iozone.org/docs/Iozone_License.txt", + "spdx_license_key": "LicenseRef-scancode-iozone" +} \ No newline at end of file diff --git a/docs/ipa-font.LICENSE b/docs/ipa-font.LICENSE index c725582a3f..c61e562e6c 100644 --- a/docs/ipa-font.LICENSE +++ b/docs/ipa-font.LICENSE @@ -1,3 +1,20 @@ +--- +key: ipa-font +short_name: IPA Font License 1.0 +name: IPA Font License Agreement v1.0 +category: Copyleft Limited +owner: OSI - Open Source Initiative +homepage_url: http://opensource.org/licenses/ipafont.html +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: IPA +text_urls: + - http://opensource.org/licenses/ipafont.html +osi_url: http://opensource.org/licenses/ipafont.html +other_urls: + - http://www.opensource.org/licenses/IPA + - https://opensource.org/licenses/IPA +--- + IPA Font License Agreement v1.0 The Licensor provides the Licensed Program (as defined in Article 1 below) under the terms of this license agreement ("Agreement"). Any use, reproduction or distribution of the Licensed Program, or any exercise of rights under this Agreement by a Recipient (as defined in Article 1 below) constitutes the Recipient's acceptance of this Agreement. diff --git a/docs/ipa-font.html b/docs/ipa-font.html index 298139c8be..a95b13fc1a 100644 --- a/docs/ipa-font.html +++ b/docs/ipa-font.html @@ -242,7 +242,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ipa-font.json b/docs/ipa-font.json index d34c734b5b..37f23b0228 100644 --- a/docs/ipa-font.json +++ b/docs/ipa-font.json @@ -1 +1,18 @@ -{"key": "ipa-font", "short_name": "IPA Font License 1.0", "name": "IPA Font License Agreement v1.0", "category": "Copyleft Limited", "owner": "OSI - Open Source Initiative", "homepage_url": "http://opensource.org/licenses/ipafont.html", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "IPA", "text_urls": ["http://opensource.org/licenses/ipafont.html"], "osi_url": "http://opensource.org/licenses/ipafont.html", "other_urls": ["http://www.opensource.org/licenses/IPA", "https://opensource.org/licenses/IPA"]} \ No newline at end of file +{ + "key": "ipa-font", + "short_name": "IPA Font License 1.0", + "name": "IPA Font License Agreement v1.0", + "category": "Copyleft Limited", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://opensource.org/licenses/ipafont.html", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "IPA", + "text_urls": [ + "http://opensource.org/licenses/ipafont.html" + ], + "osi_url": "http://opensource.org/licenses/ipafont.html", + "other_urls": [ + "http://www.opensource.org/licenses/IPA", + "https://opensource.org/licenses/IPA" + ] +} \ No newline at end of file diff --git a/docs/iptc-2006.LICENSE b/docs/iptc-2006.LICENSE index c539fe1d69..ac9d649be6 100644 --- a/docs/iptc-2006.LICENSE +++ b/docs/iptc-2006.LICENSE @@ -1,3 +1,15 @@ +--- +key: iptc-2006 +short_name: IPTC License Agreement 2006 +name: License Agreement for International Press Telecommunications Council 2006 +category: Proprietary Free +owner: International Press Telecommunications Council +homepage_url: https://iptc.org/download/public/IPTC-SpecAndMaterialLicense.html +spdx_license_key: LicenseRef-scancode-iptc-2006 +ignorable_urls: + - http://www.iptc.org/ +--- + Non-Exclusive License Agreement for International Press Telecommunications Council Specifications and Related Documentation and Software diff --git a/docs/iptc-2006.html b/docs/iptc-2006.html index 17bf5b1568..34c56d8972 100644 --- a/docs/iptc-2006.html +++ b/docs/iptc-2006.html @@ -284,7 +284,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/iptc-2006.json b/docs/iptc-2006.json index a5f29fa084..af1c964055 100644 --- a/docs/iptc-2006.json +++ b/docs/iptc-2006.json @@ -1 +1,12 @@ -{"key": "iptc-2006", "short_name": "IPTC License Agreement 2006", "name": "License Agreement for International Press Telecommunications Council 2006", "category": "Proprietary Free", "owner": "International Press Telecommunications Council", "homepage_url": "https://iptc.org/download/public/IPTC-SpecAndMaterialLicense.html", "spdx_license_key": "LicenseRef-scancode-iptc-2006", "ignorable_urls": ["http://www.iptc.org/"]} \ No newline at end of file +{ + "key": "iptc-2006", + "short_name": "IPTC License Agreement 2006", + "name": "License Agreement for International Press Telecommunications Council 2006", + "category": "Proprietary Free", + "owner": "International Press Telecommunications Council", + "homepage_url": "https://iptc.org/download/public/IPTC-SpecAndMaterialLicense.html", + "spdx_license_key": "LicenseRef-scancode-iptc-2006", + "ignorable_urls": [ + "http://www.iptc.org/" + ] +} \ No newline at end of file diff --git a/docs/irfanview-eula.LICENSE b/docs/irfanview-eula.LICENSE index 512f5af35f..a6917bd997 100644 --- a/docs/irfanview-eula.LICENSE +++ b/docs/irfanview-eula.LICENSE @@ -1,3 +1,22 @@ +--- +key: irfanview-eula +short_name: IrfanView EULA +name: IrfanView EULA +category: Commercial +owner: Irfan Skiljan +homepage_url: http://www.irfanview.com/eula.htm +spdx_license_key: LicenseRef-scancode-irfanview-eula +ignorable_copyrights: + - Copyright (c) 2016 by Irfan Skiljan, Wiener Neustadt, Austria +ignorable_holders: + - Irfan Skiljan, Wiener Neustadt, Austria +ignorable_urls: + - http://www.irfanview.com/ + - http://www.irfanview.net/ +ignorable_emails: + - irfanview@gmx.net +--- + IrfanView Software License Agreement. This is a legal agreement between you and IrfanView Software (Irfan Skiljan) covering your use of IrfanView (the "Software"). diff --git a/docs/irfanview-eula.html b/docs/irfanview-eula.html index 995f2f5c4e..f956eb8039 100644 --- a/docs/irfanview-eula.html +++ b/docs/irfanview-eula.html @@ -201,7 +201,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/irfanview-eula.json b/docs/irfanview-eula.json index ec7acca837..b87215b583 100644 --- a/docs/irfanview-eula.json +++ b/docs/irfanview-eula.json @@ -1 +1,22 @@ -{"key": "irfanview-eula", "short_name": "IrfanView EULA", "name": "IrfanView EULA", "category": "Commercial", "owner": "Irfan Skiljan", "homepage_url": "http://www.irfanview.com/eula.htm", "spdx_license_key": "LicenseRef-scancode-irfanview-eula", "ignorable_copyrights": ["Copyright (c) 2016 by Irfan Skiljan, Wiener Neustadt, Austria"], "ignorable_holders": ["Irfan Skiljan, Wiener Neustadt, Austria"], "ignorable_urls": ["http://www.irfanview.com/", "http://www.irfanview.net/"], "ignorable_emails": ["irfanview@gmx.net"]} \ No newline at end of file +{ + "key": "irfanview-eula", + "short_name": "IrfanView EULA", + "name": "IrfanView EULA", + "category": "Commercial", + "owner": "Irfan Skiljan", + "homepage_url": "http://www.irfanview.com/eula.htm", + "spdx_license_key": "LicenseRef-scancode-irfanview-eula", + "ignorable_copyrights": [ + "Copyright (c) 2016 by Irfan Skiljan, Wiener Neustadt, Austria" + ], + "ignorable_holders": [ + "Irfan Skiljan, Wiener Neustadt, Austria" + ], + "ignorable_urls": [ + "http://www.irfanview.com/", + "http://www.irfanview.net/" + ], + "ignorable_emails": [ + "irfanview@gmx.net" + ] +} \ No newline at end of file diff --git a/docs/isc.LICENSE b/docs/isc.LICENSE index 8e5f8abaf5..bfd217d470 100644 --- a/docs/isc.LICENSE +++ b/docs/isc.LICENSE @@ -1,3 +1,28 @@ +--- +key: isc +short_name: ISC License +name: ISC License +category: Permissive +owner: ISC - Internet Systems Consortium +homepage_url: https://www.isc.org/licenses/ +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: ISC +text_urls: + - http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_with_legal_disclaimer_2 + - http://openbsd.wikia.com/wiki/OpenBSD%27s_BSD_license + - http://opensource.org/licenses/isc-license.txt + - https://www.isc.org/software/license +osi_url: http://opensource.org/licenses/isc-license.txt +other_urls: + - http://openbsd.wikia.com/wiki/OpenBSD%27s_BSD_license + - http://www.isc.org/software/license + - http://www.opensource.org/licenses/ISC + - https://opensource.org/licenses/ISC + - https://www.isc.org/downloads/software-support-policy/isc-license/ + - https://www.isc.org/isc-license-1.0.html + - https://www.isc.org/software/license +--- + 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. @@ -8,4 +33,4 @@ 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. +THIS SOFTWARE. \ No newline at end of file diff --git a/docs/isc.html b/docs/isc.html index e3616f7ebc..d9b7f085fa 100644 --- a/docs/isc.html +++ b/docs/isc.html @@ -157,8 +157,7 @@ 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 SOFTWARE.
@@ -170,7 +169,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/isc.json b/docs/isc.json index 5eb8354a4f..c13198645e 100644 --- a/docs/isc.json +++ b/docs/isc.json @@ -1 +1,26 @@ -{"key": "isc", "short_name": "ISC License", "name": "ISC License", "category": "Permissive", "owner": "ISC - Internet Systems Consortium", "homepage_url": "https://www.isc.org/licenses/", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "ISC", "text_urls": ["http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_with_legal_disclaimer_2", "http://openbsd.wikia.com/wiki/OpenBSD%27s_BSD_license", "http://opensource.org/licenses/isc-license.txt", "https://www.isc.org/software/license"], "osi_url": "http://opensource.org/licenses/isc-license.txt", "other_urls": ["http://openbsd.wikia.com/wiki/OpenBSD%27s_BSD_license", "http://www.isc.org/software/license", "http://www.opensource.org/licenses/ISC", "https://opensource.org/licenses/ISC", "https://www.isc.org/downloads/software-support-policy/isc-license/", "https://www.isc.org/isc-license-1.0.html", "https://www.isc.org/software/license"]} \ No newline at end of file +{ + "key": "isc", + "short_name": "ISC License", + "name": "ISC License", + "category": "Permissive", + "owner": "ISC - Internet Systems Consortium", + "homepage_url": "https://www.isc.org/licenses/", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "ISC", + "text_urls": [ + "http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_with_legal_disclaimer_2", + "http://openbsd.wikia.com/wiki/OpenBSD%27s_BSD_license", + "http://opensource.org/licenses/isc-license.txt", + "https://www.isc.org/software/license" + ], + "osi_url": "http://opensource.org/licenses/isc-license.txt", + "other_urls": [ + "http://openbsd.wikia.com/wiki/OpenBSD%27s_BSD_license", + "http://www.isc.org/software/license", + "http://www.opensource.org/licenses/ISC", + "https://opensource.org/licenses/ISC", + "https://www.isc.org/downloads/software-support-policy/isc-license/", + "https://www.isc.org/isc-license-1.0.html", + "https://www.isc.org/software/license" + ] +} \ No newline at end of file diff --git a/docs/iso-14496-10.LICENSE b/docs/iso-14496-10.LICENSE index d84c14a87b..c208c46e64 100644 --- a/docs/iso-14496-10.LICENSE +++ b/docs/iso-14496-10.LICENSE @@ -1,3 +1,12 @@ +--- +key: iso-14496-10 +short_name: ISO 14496-10 +name: ISO 14496-10 +category: Permissive +owner: ISO - International Organization for Standardization +spdx_license_key: LicenseRef-scancode-iso-14496-10 +--- + Software Copyright Licensing Disclaimer This software module was originally developed by contributors to the @@ -13,4 +22,4 @@ rights to modify and use the code for their own purposes, and to assign or donate the code to third-parties. This copyright notice must be included in all copies or derivative -works. +works. \ No newline at end of file diff --git a/docs/iso-14496-10.html b/docs/iso-14496-10.html index fe30e8503b..a5b06d373e 100644 --- a/docs/iso-14496-10.html +++ b/docs/iso-14496-10.html @@ -123,8 +123,7 @@ assign or donate the code to third-parties. This copyright notice must be included in all copies or derivative -works. - +works.
@@ -136,7 +135,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/iso-14496-10.json b/docs/iso-14496-10.json index 460fe6f25c..9b499c1972 100644 --- a/docs/iso-14496-10.json +++ b/docs/iso-14496-10.json @@ -1 +1,8 @@ -{"key": "iso-14496-10", "short_name": "ISO 14496-10", "name": "ISO 14496-10", "category": "Permissive", "owner": "ISO - International Organization for Standardization", "spdx_license_key": "LicenseRef-scancode-iso-14496-10"} \ No newline at end of file +{ + "key": "iso-14496-10", + "short_name": "ISO 14496-10", + "name": "ISO 14496-10", + "category": "Permissive", + "owner": "ISO - International Organization for Standardization", + "spdx_license_key": "LicenseRef-scancode-iso-14496-10" +} \ No newline at end of file diff --git a/docs/iso-8879.LICENSE b/docs/iso-8879.LICENSE index d8a451d3ad..e2173f7a43 100644 --- a/docs/iso-8879.LICENSE +++ b/docs/iso-8879.LICENSE @@ -1,3 +1,12 @@ +--- +key: iso-8879 +short_name: ISO 8879 +name: ISO 8879 +category: Permissive +owner: ISO - International Organization for Standardization +spdx_license_key: LicenseRef-scancode-iso-8879 +--- + Permission to copy in any form is granted for use with conforming SGML systems and applications as defined in -ISO 8879, provided this notice is included in all copies. +ISO 8879, provided this notice is included in all copies. \ No newline at end of file diff --git a/docs/iso-8879.html b/docs/iso-8879.html index 19f365f064..fd28e6545d 100644 --- a/docs/iso-8879.html +++ b/docs/iso-8879.html @@ -110,8 +110,7 @@
license_text
Permission to copy in any form is granted for use with
 conforming SGML systems and applications as defined in
-ISO 8879, provided this notice is included in all copies.
-
+ISO 8879, provided this notice is included in all copies.
@@ -123,7 +122,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/iso-8879.json b/docs/iso-8879.json index 7c96d252fe..99f55f7e7e 100644 --- a/docs/iso-8879.json +++ b/docs/iso-8879.json @@ -1 +1,8 @@ -{"key": "iso-8879", "short_name": "ISO 8879", "name": "ISO 8879", "category": "Permissive", "owner": "ISO - International Organization for Standardization", "spdx_license_key": "LicenseRef-scancode-iso-8879"} \ No newline at end of file +{ + "key": "iso-8879", + "short_name": "ISO 8879", + "name": "ISO 8879", + "category": "Permissive", + "owner": "ISO - International Organization for Standardization", + "spdx_license_key": "LicenseRef-scancode-iso-8879" +} \ No newline at end of file diff --git a/docs/iso-recorder.LICENSE b/docs/iso-recorder.LICENSE index ef1f72e7c6..a865aae140 100644 --- a/docs/iso-recorder.LICENSE +++ b/docs/iso-recorder.LICENSE @@ -1,3 +1,15 @@ +--- +key: iso-recorder +short_name: ISO Recorder License +name: ISO Recorder License +category: Proprietary Free +owner: Alex Feinman +homepage_url: http://isorecorder.alexfeinman.com/v1.htm +spdx_license_key: LicenseRef-scancode-iso-recorder +ignorable_emails: + - isorecorder@alexfeinman.com +--- + This utility is free for non-commercial (personal) use. Other types of use should be discussed with the author (a very reasonable person) - see the contact information section. Author shall not be liable for any damage resulting diff --git a/docs/iso-recorder.html b/docs/iso-recorder.html index cdd0993732..fd6e84be31 100644 --- a/docs/iso-recorder.html +++ b/docs/iso-recorder.html @@ -141,7 +141,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/iso-recorder.json b/docs/iso-recorder.json index d77ca61977..89c223efdd 100644 --- a/docs/iso-recorder.json +++ b/docs/iso-recorder.json @@ -1 +1,12 @@ -{"key": "iso-recorder", "short_name": "ISO Recorder License", "name": "ISO Recorder License", "category": "Proprietary Free", "owner": "Alex Feinman", "homepage_url": "http://isorecorder.alexfeinman.com/v1.htm", "spdx_license_key": "LicenseRef-scancode-iso-recorder", "ignorable_emails": ["isorecorder@alexfeinman.com"]} \ No newline at end of file +{ + "key": "iso-recorder", + "short_name": "ISO Recorder License", + "name": "ISO Recorder License", + "category": "Proprietary Free", + "owner": "Alex Feinman", + "homepage_url": "http://isorecorder.alexfeinman.com/v1.htm", + "spdx_license_key": "LicenseRef-scancode-iso-recorder", + "ignorable_emails": [ + "isorecorder@alexfeinman.com" + ] +} \ No newline at end of file diff --git a/docs/isotope-cla.LICENSE b/docs/isotope-cla.LICENSE index 78e7ba8103..6c87ed108c 100644 --- a/docs/isotope-cla.LICENSE +++ b/docs/isotope-cla.LICENSE @@ -1,3 +1,13 @@ +--- +key: isotope-cla +short_name: Isotope Commercial License Agreement +name: Isotope Commercial License Agreement +category: Commercial +owner: Metafizzy +homepage_url: http://isotope.metafizzy.co/license.html +spdx_license_key: LicenseRef-scancode-isotope-cla +--- + This Commercial License Agreement is a binding legal agreement between you and Metafizzy LLC (Metafizzy). By installing, copying, or using Isotope (the Software), you agree to be bound by these terms of this Agreement. Grant of License diff --git a/docs/isotope-cla.html b/docs/isotope-cla.html index c877433d35..d95c555951 100644 --- a/docs/isotope-cla.html +++ b/docs/isotope-cla.html @@ -149,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/isotope-cla.json b/docs/isotope-cla.json index 904c57242e..4a6f3fc98d 100644 --- a/docs/isotope-cla.json +++ b/docs/isotope-cla.json @@ -1 +1,9 @@ -{"key": "isotope-cla", "short_name": "Isotope Commercial License Agreement", "name": "Isotope Commercial License Agreement", "category": "Commercial", "owner": "Metafizzy", "homepage_url": "http://isotope.metafizzy.co/license.html", "spdx_license_key": "LicenseRef-scancode-isotope-cla"} \ No newline at end of file +{ + "key": "isotope-cla", + "short_name": "Isotope Commercial License Agreement", + "name": "Isotope Commercial License Agreement", + "category": "Commercial", + "owner": "Metafizzy", + "homepage_url": "http://isotope.metafizzy.co/license.html", + "spdx_license_key": "LicenseRef-scancode-isotope-cla" +} \ No newline at end of file diff --git a/docs/issl-2018.LICENSE b/docs/issl-2018.LICENSE index 1d05e4f0ce..33e48fff54 100644 --- a/docs/issl-2018.LICENSE +++ b/docs/issl-2018.LICENSE @@ -1,3 +1,20 @@ +--- +key: issl-2018 +short_name: ISSL 2018 +name: Intel Simplified Software License (Version April 2018) +category: Free Restricted +owner: Intel Corporation +homepage_url: https://software.intel.com/en-us/license/intel-simplified-software-license +spdx_license_key: LicenseRef-scancode-issl-2018 +faq_url: https://software.intel.com/en-us/mkl/license-faq +other_urls: + - https://software.intel.com/en-us/articles/end-user-license-agreement +ignorable_copyrights: + - Copyright (c) 2018 Intel Corporation +ignorable_holders: + - Intel Corporation +--- + Intel Simplified Software License (Version April 2018) Copyright (c) 2018 Intel Corporation. diff --git a/docs/issl-2018.html b/docs/issl-2018.html index b615a020e5..b0885243fc 100644 --- a/docs/issl-2018.html +++ b/docs/issl-2018.html @@ -191,7 +191,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/issl-2018.json b/docs/issl-2018.json index e58ac5f317..7a7bea87d2 100644 --- a/docs/issl-2018.json +++ b/docs/issl-2018.json @@ -1 +1,19 @@ -{"key": "issl-2018", "short_name": "ISSL 2018", "name": "Intel Simplified Software License (Version April 2018)", "category": "Free Restricted", "owner": "Intel Corporation", "homepage_url": "https://software.intel.com/en-us/license/intel-simplified-software-license", "spdx_license_key": "LicenseRef-scancode-issl-2018", "faq_url": "https://software.intel.com/en-us/mkl/license-faq", "other_urls": ["https://software.intel.com/en-us/articles/end-user-license-agreement"], "ignorable_copyrights": ["Copyright (c) 2018 Intel Corporation"], "ignorable_holders": ["Intel Corporation"]} \ No newline at end of file +{ + "key": "issl-2018", + "short_name": "ISSL 2018", + "name": "Intel Simplified Software License (Version April 2018)", + "category": "Free Restricted", + "owner": "Intel Corporation", + "homepage_url": "https://software.intel.com/en-us/license/intel-simplified-software-license", + "spdx_license_key": "LicenseRef-scancode-issl-2018", + "faq_url": "https://software.intel.com/en-us/mkl/license-faq", + "other_urls": [ + "https://software.intel.com/en-us/articles/end-user-license-agreement" + ], + "ignorable_copyrights": [ + "Copyright (c) 2018 Intel Corporation" + ], + "ignorable_holders": [ + "Intel Corporation" + ] +} \ No newline at end of file diff --git a/docs/itc-eula.LICENSE b/docs/itc-eula.LICENSE index effa687a51..0ce643a20a 100644 --- a/docs/itc-eula.LICENSE +++ b/docs/itc-eula.LICENSE @@ -1,3 +1,15 @@ +--- +key: itc-eula +short_name: ITC EULA +name: ITC End User License Agreement +category: Commercial +owner: ITC +homepage_url: https://web.archive.org/web/19980626184147/http://www.itcfonts.com/itc/license.html +spdx_license_key: LicenseRef-scancode-itc-eula +ignorable_emails: + - info@itcfonts.com +--- + This Agreement constitutes the complete agreement between you and International Typeface Corporation (ITC) (except for multi-CPU licenses, where another document supplements this one and outlines and confirms the scope of the your upgraded license). If you do not agree to the terms stated in this Agreement, you may obtain a full refund by contacting ITC at the address below within 15 days with your proof of payment. International Typeface Corporation diff --git a/docs/itc-eula.html b/docs/itc-eula.html index 90f46a3f85..9c8c964d11 100644 --- a/docs/itc-eula.html +++ b/docs/itc-eula.html @@ -161,7 +161,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/itc-eula.json b/docs/itc-eula.json index 34d639fa15..14a213e44f 100644 --- a/docs/itc-eula.json +++ b/docs/itc-eula.json @@ -1 +1,12 @@ -{"key": "itc-eula", "short_name": "ITC EULA", "name": "ITC End User License Agreement", "category": "Commercial", "owner": "ITC", "homepage_url": "https://web.archive.org/web/19980626184147/http://www.itcfonts.com/itc/license.html", "spdx_license_key": "LicenseRef-scancode-itc-eula", "ignorable_emails": ["info@itcfonts.com"]} \ No newline at end of file +{ + "key": "itc-eula", + "short_name": "ITC EULA", + "name": "ITC End User License Agreement", + "category": "Commercial", + "owner": "ITC", + "homepage_url": "https://web.archive.org/web/19980626184147/http://www.itcfonts.com/itc/license.html", + "spdx_license_key": "LicenseRef-scancode-itc-eula", + "ignorable_emails": [ + "info@itcfonts.com" + ] +} \ No newline at end of file diff --git a/docs/itu-t-gpl.LICENSE b/docs/itu-t-gpl.LICENSE index 38ab8bd4a6..b074d7dc44 100644 --- a/docs/itu-t-gpl.LICENSE +++ b/docs/itu-t-gpl.LICENSE @@ -1,3 +1,15 @@ +--- +key: itu-t-gpl +short_name: ITU-T General Public License +name: ITU-T Software Tools General Public License +category: Copyleft +owner: ITU - International Telecommunications Union +homepage_url: https://github.com/openitu/STL/blob/dev/LICENSE.md +spdx_license_key: LicenseRef-scancode-itu-t-gpl +ignorable_authors: + - the User's Group +--- + ITU-T SOFTWARE TOOLS' GENERAL PUBLIC LICENSE === diff --git a/docs/itu-t-gpl.html b/docs/itu-t-gpl.html index 419c5499a4..4dc418dead 100644 --- a/docs/itu-t-gpl.html +++ b/docs/itu-t-gpl.html @@ -202,7 +202,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/itu-t-gpl.json b/docs/itu-t-gpl.json index 9e0afe3b70..293da18d78 100644 --- a/docs/itu-t-gpl.json +++ b/docs/itu-t-gpl.json @@ -1 +1,12 @@ -{"key": "itu-t-gpl", "short_name": "ITU-T General Public License", "name": "ITU-T Software Tools General Public License", "category": "Copyleft", "owner": "ITU - International Telecommunications Union", "homepage_url": "https://github.com/openitu/STL/blob/dev/LICENSE.md", "spdx_license_key": "LicenseRef-scancode-itu-t-gpl", "ignorable_authors": ["the User's Group"]} \ No newline at end of file +{ + "key": "itu-t-gpl", + "short_name": "ITU-T General Public License", + "name": "ITU-T Software Tools General Public License", + "category": "Copyleft", + "owner": "ITU - International Telecommunications Union", + "homepage_url": "https://github.com/openitu/STL/blob/dev/LICENSE.md", + "spdx_license_key": "LicenseRef-scancode-itu-t-gpl", + "ignorable_authors": [ + "the User's Group" + ] +} \ No newline at end of file diff --git a/docs/itu-t.LICENSE b/docs/itu-t.LICENSE index 18867d7b37..ec1cd5d617 100644 --- a/docs/itu-t.LICENSE +++ b/docs/itu-t.LICENSE @@ -1,3 +1,14 @@ +--- +key: itu-t +short_name: ITU-T License +name: ITU-T License +category: Free Restricted +owner: ITU - International Telecommunications Union +spdx_license_key: LicenseRef-scancode-itu-t +ignorable_urls: + - http://www.itu.int/ipr +--- + Software(1) License Agreement ITU hereby grants you a worldwide, non-exclusive, free license to reproduce, modify, and use the Software for the limited purpose of implementing an ITU-T Recommendation. diff --git a/docs/itu-t.html b/docs/itu-t.html index bb59488af8..86388fe803 100644 --- a/docs/itu-t.html +++ b/docs/itu-t.html @@ -140,7 +140,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/itu-t.json b/docs/itu-t.json index 0c38dd95b1..403bd37e99 100644 --- a/docs/itu-t.json +++ b/docs/itu-t.json @@ -1 +1,11 @@ -{"key": "itu-t", "short_name": "ITU-T License", "name": "ITU-T License", "category": "Free Restricted", "owner": "ITU - International Telecommunications Union", "spdx_license_key": "LicenseRef-scancode-itu-t", "ignorable_urls": ["http://www.itu.int/ipr"]} \ No newline at end of file +{ + "key": "itu-t", + "short_name": "ITU-T License", + "name": "ITU-T License", + "category": "Free Restricted", + "owner": "ITU - International Telecommunications Union", + "spdx_license_key": "LicenseRef-scancode-itu-t", + "ignorable_urls": [ + "http://www.itu.int/ipr" + ] +} \ No newline at end of file diff --git a/docs/itu.LICENSE b/docs/itu.LICENSE index 9838bffe95..05b77e8916 100644 --- a/docs/itu.LICENSE +++ b/docs/itu.LICENSE @@ -1,3 +1,21 @@ +--- +key: itu +short_name: ITU License +name: ITU License +category: Permissive +owner: ITU - International Telecommunications Union +homepage_url: http://www.itu.int/ +spdx_license_key: LicenseRef-scancode-itu +text_urls: + - http://www.itu.int/ +ignorable_copyrights: + - Copyright, International Telecommunications Union, Geneva +ignorable_holders: + - International Telecommunications Union, Geneva +ignorable_urls: + - http://www.itu.int/ +--- + COPYRIGHT AND WARRANTY INFORMATION Copyright , International Telecommunications Union, Geneva DISCLAIMER OF WARRANTY diff --git a/docs/itu.html b/docs/itu.html index becdba7568..52948882ce 100644 --- a/docs/itu.html +++ b/docs/itu.html @@ -173,7 +173,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/itu.json b/docs/itu.json index a734256982..ae5cf60ef0 100644 --- a/docs/itu.json +++ b/docs/itu.json @@ -1 +1,21 @@ -{"key": "itu", "short_name": "ITU License", "name": "ITU License", "category": "Permissive", "owner": "ITU - International Telecommunications Union", "homepage_url": "http://www.itu.int/", "spdx_license_key": "LicenseRef-scancode-itu", "text_urls": ["http://www.itu.int/"], "ignorable_copyrights": ["Copyright, International Telecommunications Union, Geneva"], "ignorable_holders": ["International Telecommunications Union, Geneva"], "ignorable_urls": ["http://www.itu.int/"]} \ No newline at end of file +{ + "key": "itu", + "short_name": "ITU License", + "name": "ITU License", + "category": "Permissive", + "owner": "ITU - International Telecommunications Union", + "homepage_url": "http://www.itu.int/", + "spdx_license_key": "LicenseRef-scancode-itu", + "text_urls": [ + "http://www.itu.int/" + ], + "ignorable_copyrights": [ + "Copyright, International Telecommunications Union, Geneva" + ], + "ignorable_holders": [ + "International Telecommunications Union, Geneva" + ], + "ignorable_urls": [ + "http://www.itu.int/" + ] +} \ No newline at end of file diff --git a/docs/itunes.LICENSE b/docs/itunes.LICENSE index 217f1f400e..19f46a391b 100644 --- a/docs/itunes.LICENSE +++ b/docs/itunes.LICENSE @@ -1,3 +1,17 @@ +--- +key: itunes +short_name: Apple iTunes License +name: Apple iTunes License +category: Proprietary Free +owner: Apple +homepage_url: http://images.apple.com/legal/sla/docs/itunes.pdf +spdx_license_key: LicenseRef-scancode-itunes +text_urls: + - http://images.apple.com/legal/sla/docs/itunes.pdf +ignorable_emails: + - sales@kerbango.com +--- + ENGLISH APPLE INC. diff --git a/docs/itunes.html b/docs/itunes.html index e4d6ed81cd..7b9a385fac 100644 --- a/docs/itunes.html +++ b/docs/itunes.html @@ -232,7 +232,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/itunes.json b/docs/itunes.json index 027dece458..0954975042 100644 --- a/docs/itunes.json +++ b/docs/itunes.json @@ -1 +1,15 @@ -{"key": "itunes", "short_name": "Apple iTunes License", "name": "Apple iTunes License", "category": "Proprietary Free", "owner": "Apple", "homepage_url": "http://images.apple.com/legal/sla/docs/itunes.pdf", "spdx_license_key": "LicenseRef-scancode-itunes", "text_urls": ["http://images.apple.com/legal/sla/docs/itunes.pdf"], "ignorable_emails": ["sales@kerbango.com"]} \ No newline at end of file +{ + "key": "itunes", + "short_name": "Apple iTunes License", + "name": "Apple iTunes License", + "category": "Proprietary Free", + "owner": "Apple", + "homepage_url": "http://images.apple.com/legal/sla/docs/itunes.pdf", + "spdx_license_key": "LicenseRef-scancode-itunes", + "text_urls": [ + "http://images.apple.com/legal/sla/docs/itunes.pdf" + ], + "ignorable_emails": [ + "sales@kerbango.com" + ] +} \ No newline at end of file diff --git a/docs/ja-sig.LICENSE b/docs/ja-sig.LICENSE index 5000b07b55..87a2d6cb90 100644 --- a/docs/ja-sig.LICENSE +++ b/docs/ja-sig.LICENSE @@ -1,3 +1,21 @@ +--- +key: ja-sig +short_name: JA-SiG License +name: JA-SiG License +category: Permissive +owner: JA-SIG Collaborative +homepage_url: http://web.archive.org/web/20040402030132/http://uportal.org/license.html +notes: | + this is an old and rare license, replaced since by an Apache 2.0. This is a + BSD variant. See original at + http://web.archive.org/web/20040402030132/http://uportal.org/license.html +spdx_license_key: LicenseRef-scancode-ja-sig +ignorable_authors: + - the JA-SIG Collaborative (http://www.ja-sig.org/) +ignorable_urls: + - http://www.ja-sig.org/ +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -22,5 +40,4 @@ 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. - +advised of the possibility of such damage. \ No newline at end of file diff --git a/docs/ja-sig.html b/docs/ja-sig.html index 8580563352..707a7851b3 100644 --- a/docs/ja-sig.html +++ b/docs/ja-sig.html @@ -167,9 +167,7 @@ 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. - - +advised of the possibility of such damage.
@@ -181,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ja-sig.json b/docs/ja-sig.json index 3c38a71fa7..078151d4cd 100644 --- a/docs/ja-sig.json +++ b/docs/ja-sig.json @@ -1 +1,16 @@ -{"key": "ja-sig", "short_name": "JA-SiG License", "name": "JA-SiG License", "category": "Permissive", "owner": "JA-SIG Collaborative", "homepage_url": "http://web.archive.org/web/20040402030132/http://uportal.org/license.html", "notes": "this is an old and rare license, replaced since by an Apache 2.0. This is a\nBSD variant. See original at\nhttp://web.archive.org/web/20040402030132/http://uportal.org/license.html\n", "spdx_license_key": "LicenseRef-scancode-ja-sig", "ignorable_authors": ["the JA-SIG Collaborative (http://www.ja-sig.org/)"], "ignorable_urls": ["http://www.ja-sig.org/"]} \ No newline at end of file +{ + "key": "ja-sig", + "short_name": "JA-SiG License", + "name": "JA-SiG License", + "category": "Permissive", + "owner": "JA-SIG Collaborative", + "homepage_url": "http://web.archive.org/web/20040402030132/http://uportal.org/license.html", + "notes": "this is an old and rare license, replaced since by an Apache 2.0. This is a\nBSD variant. See original at\nhttp://web.archive.org/web/20040402030132/http://uportal.org/license.html\n", + "spdx_license_key": "LicenseRef-scancode-ja-sig", + "ignorable_authors": [ + "the JA-SIG Collaborative (http://www.ja-sig.org/)" + ], + "ignorable_urls": [ + "http://www.ja-sig.org/" + ] +} \ No newline at end of file diff --git a/docs/jahia-1.3.1.LICENSE b/docs/jahia-1.3.1.LICENSE index 41dcd3058d..76627bceb0 100644 --- a/docs/jahia-1.3.1.LICENSE +++ b/docs/jahia-1.3.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: jahia-1.3.1 +short_name: JCSL 1.3.1 +name: Jahia Collaborative Source License v1.3.1 +category: Copyleft +owner: JAHIA Community +homepage_url: http://www.jahia.org/cms/home/Jahiapedia/Jahia_Licensing +spdx_license_key: LicenseRef-scancode-jahia-1.3.1 +text_urls: + - http://www.jahia.org/cms/home/Jahiapedia/Jahia_Licensing +faq_url: http://www.jahia.org/cms/home/Jahiapedia/Jahia_Licensing +ignorable_urls: + - http://www.collaborativesource.org/ + - http://www.jahia.org/ + - http://www.opensource.org/ +--- + ***** Jahia Collaborative Source License ***** * Recitals JAHIA COLLABORATVE SOURCE LICENSE diff --git a/docs/jahia-1.3.1.html b/docs/jahia-1.3.1.html index b2edf40ac5..56e1cf00f5 100644 --- a/docs/jahia-1.3.1.html +++ b/docs/jahia-1.3.1.html @@ -641,7 +641,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jahia-1.3.1.json b/docs/jahia-1.3.1.json index ff5cf4ba8e..202f3e8d31 100644 --- a/docs/jahia-1.3.1.json +++ b/docs/jahia-1.3.1.json @@ -1 +1,18 @@ -{"key": "jahia-1.3.1", "short_name": "JCSL 1.3.1", "name": "Jahia Collaborative Source License v1.3.1", "category": "Copyleft", "owner": "JAHIA Community", "homepage_url": "http://www.jahia.org/cms/home/Jahiapedia/Jahia_Licensing", "spdx_license_key": "LicenseRef-scancode-jahia-1.3.1", "text_urls": ["http://www.jahia.org/cms/home/Jahiapedia/Jahia_Licensing"], "faq_url": "http://www.jahia.org/cms/home/Jahiapedia/Jahia_Licensing", "ignorable_urls": ["http://www.collaborativesource.org/", "http://www.jahia.org/", "http://www.opensource.org/"]} \ No newline at end of file +{ + "key": "jahia-1.3.1", + "short_name": "JCSL 1.3.1", + "name": "Jahia Collaborative Source License v1.3.1", + "category": "Copyleft", + "owner": "JAHIA Community", + "homepage_url": "http://www.jahia.org/cms/home/Jahiapedia/Jahia_Licensing", + "spdx_license_key": "LicenseRef-scancode-jahia-1.3.1", + "text_urls": [ + "http://www.jahia.org/cms/home/Jahiapedia/Jahia_Licensing" + ], + "faq_url": "http://www.jahia.org/cms/home/Jahiapedia/Jahia_Licensing", + "ignorable_urls": [ + "http://www.collaborativesource.org/", + "http://www.jahia.org/", + "http://www.opensource.org/" + ] +} \ No newline at end of file diff --git a/docs/jam-stapl.LICENSE b/docs/jam-stapl.LICENSE index 6a7120ebbb..37236ecf5a 100644 --- a/docs/jam-stapl.LICENSE +++ b/docs/jam-stapl.LICENSE @@ -1,3 +1,13 @@ +--- +key: jam-stapl +short_name: Jam STAPL Software License +name: Jam STAPL Software License +category: Free Restricted +owner: Altera Corporation +homepage_url: https://www.intel.com/content/www/us/en/programmable/support/support-resources/download/licensing/lic-jam.html +spdx_license_key: LicenseRef-scancode-jam-stapl +--- + Jam STAPL Software License SOFTWARE DISTRIBUTION AGREEMENT diff --git a/docs/jam-stapl.html b/docs/jam-stapl.html index b71b723869..2a3bde3ff7 100644 --- a/docs/jam-stapl.html +++ b/docs/jam-stapl.html @@ -157,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jam-stapl.json b/docs/jam-stapl.json index e8e72d5ffe..ac2d3bb60c 100644 --- a/docs/jam-stapl.json +++ b/docs/jam-stapl.json @@ -1 +1,9 @@ -{"key": "jam-stapl", "short_name": "Jam STAPL Software License", "name": "Jam STAPL Software License", "category": "Free Restricted", "owner": "Altera Corporation", "homepage_url": "https://www.intel.com/content/www/us/en/programmable/support/support-resources/download/licensing/lic-jam.html", "spdx_license_key": "LicenseRef-scancode-jam-stapl"} \ No newline at end of file +{ + "key": "jam-stapl", + "short_name": "Jam STAPL Software License", + "name": "Jam STAPL Software License", + "category": "Free Restricted", + "owner": "Altera Corporation", + "homepage_url": "https://www.intel.com/content/www/us/en/programmable/support/support-resources/download/licensing/lic-jam.html", + "spdx_license_key": "LicenseRef-scancode-jam-stapl" +} \ No newline at end of file diff --git a/docs/jam.LICENSE b/docs/jam.LICENSE index d8bcf1c69d..fc79399d60 100644 --- a/docs/jam.LICENSE +++ b/docs/jam.LICENSE @@ -1,3 +1,17 @@ +--- +key: jam +short_name: Jam License +name: Jam License +category: Permissive +owner: Perforce +spdx_license_key: Jam +other_spdx_license_keys: + - LicenseRef-scancode-jam +other_urls: + - https://www.boost.org/doc/libs/1_35_0/doc/html/jam.html + - https://web.archive.org/web/20160330173339/https://swarm.workshop.perforce.com/files/guest/perforce_software/jam/src/README +--- + License is hereby granted to use this software and distribute it freely, as long as this copyright notice is retained and modifications are clearly marked. diff --git a/docs/jam.html b/docs/jam.html index ab885ad0f1..b450d7fb84 100644 --- a/docs/jam.html +++ b/docs/jam.html @@ -142,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jam.json b/docs/jam.json index 7be315c1a6..6862958d1a 100644 --- a/docs/jam.json +++ b/docs/jam.json @@ -1 +1,15 @@ -{"key": "jam", "short_name": "Jam License", "name": "Jam License", "category": "Permissive", "owner": "Perforce", "spdx_license_key": "Jam", "other_spdx_license_keys": ["LicenseRef-scancode-jam"], "other_urls": ["https://www.boost.org/doc/libs/1_35_0/doc/html/jam.html", "https://web.archive.org/web/20160330173339/https://swarm.workshop.perforce.com/files/guest/perforce_software/jam/src/README"]} \ No newline at end of file +{ + "key": "jam", + "short_name": "Jam License", + "name": "Jam License", + "category": "Permissive", + "owner": "Perforce", + "spdx_license_key": "Jam", + "other_spdx_license_keys": [ + "LicenseRef-scancode-jam" + ], + "other_urls": [ + "https://www.boost.org/doc/libs/1_35_0/doc/html/jam.html", + "https://web.archive.org/web/20160330173339/https://swarm.workshop.perforce.com/files/guest/perforce_software/jam/src/README" + ] +} \ No newline at end of file diff --git a/docs/jamon.LICENSE b/docs/jamon.LICENSE index bbf90c127f..6120727229 100644 --- a/docs/jamon.LICENSE +++ b/docs/jamon.LICENSE @@ -1,3 +1,20 @@ +--- +key: jamon +short_name: JAMon License +name: JAMon License +category: Free Restricted +owner: Steve Souza +homepage_url: http://jamonapi.sourceforge.net/JAMonLicense.html +spdx_license_key: LicenseRef-scancode-jamon +minimum_coverage: 95 +ignorable_copyrights: + - Copyright (c) 2002, Steve Souza (admin@jamonapi.com) +ignorable_holders: + - Steve Souza +ignorable_emails: + - admin@jamonapi.com +--- + JAMon License Agreement Copyright (c) 2002, Steve Souza (admin@jamonapi.com) diff --git a/docs/jamon.html b/docs/jamon.html index 7d2714aefc..6c8ed40a3f 100644 --- a/docs/jamon.html +++ b/docs/jamon.html @@ -172,7 +172,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jamon.json b/docs/jamon.json index 799c72d8f4..91483dbc03 100644 --- a/docs/jamon.json +++ b/docs/jamon.json @@ -1 +1,19 @@ -{"key": "jamon", "short_name": "JAMon License", "name": "JAMon License", "category": "Free Restricted", "owner": "Steve Souza", "homepage_url": "http://jamonapi.sourceforge.net/JAMonLicense.html", "spdx_license_key": "LicenseRef-scancode-jamon", "minimum_coverage": 95, "ignorable_copyrights": ["Copyright (c) 2002, Steve Souza (admin@jamonapi.com)"], "ignorable_holders": ["Steve Souza"], "ignorable_emails": ["admin@jamonapi.com"]} \ No newline at end of file +{ + "key": "jamon", + "short_name": "JAMon License", + "name": "JAMon License", + "category": "Free Restricted", + "owner": "Steve Souza", + "homepage_url": "http://jamonapi.sourceforge.net/JAMonLicense.html", + "spdx_license_key": "LicenseRef-scancode-jamon", + "minimum_coverage": 95, + "ignorable_copyrights": [ + "Copyright (c) 2002, Steve Souza (admin@jamonapi.com)" + ], + "ignorable_holders": [ + "Steve Souza" + ], + "ignorable_emails": [ + "admin@jamonapi.com" + ] +} \ No newline at end of file diff --git a/docs/jason-mayes.LICENSE b/docs/jason-mayes.LICENSE index 3f032265fb..940e157081 100644 --- a/docs/jason-mayes.LICENSE +++ b/docs/jason-mayes.LICENSE @@ -1,7 +1,23 @@ +--- +key: jason-mayes +short_name: Jason Mayes License +name: Jason Mayes License +category: Permissive +owner: Jason Mayes +spdx_license_key: LicenseRef-scancode-jason-mayes +faq_url: http://www.jasonmayes.com/projects/twitterApi/ +minimum_coverage: 90 +ignorable_authors: + - Jason Mayes +ignorable_urls: + - http://www.jasonmayes.com/ + - http://www.jasonmayes.com/projects/twitterApi/ +--- + #### Twitter Post Fetcher v10.0 #### Coded by Jason Mayes 2013. A present to all the developers out there. www.jasonmayes.com Please keep this disclaimer with my code if you use it. Thanks. :) Got feedback or questions, ask here: http://www.jasonmayes.com/projects/twitterApi/ -Updates will be posted to this site. +Updates will be posted to this site. \ No newline at end of file diff --git a/docs/jason-mayes.html b/docs/jason-mayes.html index e22de4707f..17ed86e17a 100644 --- a/docs/jason-mayes.html +++ b/docs/jason-mayes.html @@ -146,8 +146,7 @@ Please keep this disclaimer with my code if you use it. Thanks. :) Got feedback or questions, ask here: http://www.jasonmayes.com/projects/twitterApi/ -Updates will be posted to this site. - +Updates will be posted to this site.
@@ -159,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jason-mayes.json b/docs/jason-mayes.json index 6325cdb08f..c00fe16b03 100644 --- a/docs/jason-mayes.json +++ b/docs/jason-mayes.json @@ -1 +1,17 @@ -{"key": "jason-mayes", "short_name": "Jason Mayes License", "name": "Jason Mayes License", "category": "Permissive", "owner": "Jason Mayes", "spdx_license_key": "LicenseRef-scancode-jason-mayes", "faq_url": "http://www.jasonmayes.com/projects/twitterApi/", "minimum_coverage": 90, "ignorable_authors": ["Jason Mayes"], "ignorable_urls": ["http://www.jasonmayes.com/", "http://www.jasonmayes.com/projects/twitterApi/"]} \ No newline at end of file +{ + "key": "jason-mayes", + "short_name": "Jason Mayes License", + "name": "Jason Mayes License", + "category": "Permissive", + "owner": "Jason Mayes", + "spdx_license_key": "LicenseRef-scancode-jason-mayes", + "faq_url": "http://www.jasonmayes.com/projects/twitterApi/", + "minimum_coverage": 90, + "ignorable_authors": [ + "Jason Mayes" + ], + "ignorable_urls": [ + "http://www.jasonmayes.com/", + "http://www.jasonmayes.com/projects/twitterApi/" + ] +} \ No newline at end of file diff --git a/docs/jasper-1.0.LICENSE b/docs/jasper-1.0.LICENSE index 7a4a9268ce..cb06973ea9 100644 --- a/docs/jasper-1.0.LICENSE +++ b/docs/jasper-1.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: jasper-1.0 +short_name: Jasper 1.0 +name: Jasper Reports License 1.0 +category: Permissive +owner: JasperSoft +spdx_license_key: LicenseRef-scancode-jasper-1.0 +ignorable_copyrights: + - Copyright (c) 2001-2003 Teodor Danciu (teodord@hotmail.com) +ignorable_holders: + - Teodor Danciu +ignorable_authors: + - Teodor Danciu (http://jasperreports.sourceforge.net) + - Teodor Danciu http://jasperreports.sourceforge.net +ignorable_urls: + - http://jasperreports.sourceforge.net/ +ignorable_emails: + - teodord@hotmail.com +--- + Jasper Reports Jasperreports Copyright (c) 2001-2003 Teodor Danciu (teodord@hotmail.com). All rights reserved. This product included software developed by Teodor Danciu http://jasperreports.sourceforge.net. For license details, please see the file classes/jasper_license.txt diff --git a/docs/jasper-1.0.html b/docs/jasper-1.0.html index cc7cf73f3b..40f648315d 100644 --- a/docs/jasper-1.0.html +++ b/docs/jasper-1.0.html @@ -183,7 +183,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jasper-1.0.json b/docs/jasper-1.0.json index 8c40296a8b..5fafaf8d41 100644 --- a/docs/jasper-1.0.json +++ b/docs/jasper-1.0.json @@ -1 +1,24 @@ -{"key": "jasper-1.0", "short_name": "Jasper 1.0", "name": "Jasper Reports License 1.0", "category": "Permissive", "owner": "JasperSoft", "spdx_license_key": "LicenseRef-scancode-jasper-1.0", "ignorable_copyrights": ["Copyright (c) 2001-2003 Teodor Danciu (teodord@hotmail.com)"], "ignorable_holders": ["Teodor Danciu"], "ignorable_authors": ["Teodor Danciu (http://jasperreports.sourceforge.net)", "Teodor Danciu http://jasperreports.sourceforge.net"], "ignorable_urls": ["http://jasperreports.sourceforge.net/"], "ignorable_emails": ["teodord@hotmail.com"]} \ No newline at end of file +{ + "key": "jasper-1.0", + "short_name": "Jasper 1.0", + "name": "Jasper Reports License 1.0", + "category": "Permissive", + "owner": "JasperSoft", + "spdx_license_key": "LicenseRef-scancode-jasper-1.0", + "ignorable_copyrights": [ + "Copyright (c) 2001-2003 Teodor Danciu (teodord@hotmail.com)" + ], + "ignorable_holders": [ + "Teodor Danciu" + ], + "ignorable_authors": [ + "Teodor Danciu (http://jasperreports.sourceforge.net)", + "Teodor Danciu http://jasperreports.sourceforge.net" + ], + "ignorable_urls": [ + "http://jasperreports.sourceforge.net/" + ], + "ignorable_emails": [ + "teodord@hotmail.com" + ] +} \ No newline at end of file diff --git a/docs/jasper-2.0.LICENSE b/docs/jasper-2.0.LICENSE index 4b3d3728dc..b4fa9ab888 100644 --- a/docs/jasper-2.0.LICENSE +++ b/docs/jasper-2.0.LICENSE @@ -1,3 +1,24 @@ +--- +key: jasper-2.0 +short_name: JasPer 2.0 +name: JasPer License 2.0 +category: Permissive +owner: JasPer Project +homepage_url: http://www.ece.uvic.ca/~frodo/jasper/LICENSE +spdx_license_key: JasPer-2.0 +other_urls: + - http://www.ece.uvic.ca/~mdadams/jasper/LICENSE +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 1999-2000 Image Power, Inc. + - Copyright (c) 1999-2000 The University of British Columbia + - Copyright (c) 2001-2006 Michael David Adams +ignorable_holders: + - Image Power, Inc. + - Michael David Adams + - The University of British Columbia +--- + JasPer License Version 2.0 Copyright (c) 2001-2006 Michael David Adams diff --git a/docs/jasper-2.0.html b/docs/jasper-2.0.html index e40b186bcb..a35043dbeb 100644 --- a/docs/jasper-2.0.html +++ b/docs/jasper-2.0.html @@ -214,7 +214,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jasper-2.0.json b/docs/jasper-2.0.json index 9225301bfe..4ef63176e8 100644 --- a/docs/jasper-2.0.json +++ b/docs/jasper-2.0.json @@ -1 +1,23 @@ -{"key": "jasper-2.0", "short_name": "JasPer 2.0", "name": "JasPer License 2.0", "category": "Permissive", "owner": "JasPer Project", "homepage_url": "http://www.ece.uvic.ca/~frodo/jasper/LICENSE", "spdx_license_key": "JasPer-2.0", "other_urls": ["http://www.ece.uvic.ca/~mdadams/jasper/LICENSE"], "minimum_coverage": 60, "ignorable_copyrights": ["Copyright (c) 1999-2000 Image Power, Inc.", "Copyright (c) 1999-2000 The University of British Columbia", "Copyright (c) 2001-2006 Michael David Adams"], "ignorable_holders": ["Image Power, Inc.", "Michael David Adams", "The University of British Columbia"]} \ No newline at end of file +{ + "key": "jasper-2.0", + "short_name": "JasPer 2.0", + "name": "JasPer License 2.0", + "category": "Permissive", + "owner": "JasPer Project", + "homepage_url": "http://www.ece.uvic.ca/~frodo/jasper/LICENSE", + "spdx_license_key": "JasPer-2.0", + "other_urls": [ + "http://www.ece.uvic.ca/~mdadams/jasper/LICENSE" + ], + "minimum_coverage": 60, + "ignorable_copyrights": [ + "Copyright (c) 1999-2000 Image Power, Inc.", + "Copyright (c) 1999-2000 The University of British Columbia", + "Copyright (c) 2001-2006 Michael David Adams" + ], + "ignorable_holders": [ + "Image Power, Inc.", + "Michael David Adams", + "The University of British Columbia" + ] +} \ No newline at end of file diff --git a/docs/java-app-stub.LICENSE b/docs/java-app-stub.LICENSE index 5427dead2b..f0ddf7a77a 100644 --- a/docs/java-app-stub.LICENSE +++ b/docs/java-app-stub.LICENSE @@ -1,3 +1,16 @@ +--- +key: java-app-stub +short_name: Java App Stub License +name: Java Application Stub Binary Module License +category: Permissive +owner: Apple +spdx_license_key: LicenseRef-scancode-java-app-stub +ignorable_copyrights: + - Copyright (c) Apple Inc. +ignorable_holders: + - Apple Inc. +--- + Java Application Stub Binary Module License Copyright (c) Apple Inc. All rights reserved. diff --git a/docs/java-app-stub.html b/docs/java-app-stub.html index 941277d0f8..87c3a5ce94 100644 --- a/docs/java-app-stub.html +++ b/docs/java-app-stub.html @@ -148,7 +148,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/java-app-stub.json b/docs/java-app-stub.json index 1e9984262b..b471f63075 100644 --- a/docs/java-app-stub.json +++ b/docs/java-app-stub.json @@ -1 +1,14 @@ -{"key": "java-app-stub", "short_name": "Java App Stub License", "name": "Java Application Stub Binary Module License", "category": "Permissive", "owner": "Apple", "spdx_license_key": "LicenseRef-scancode-java-app-stub", "ignorable_copyrights": ["Copyright (c) Apple Inc."], "ignorable_holders": ["Apple Inc."]} \ No newline at end of file +{ + "key": "java-app-stub", + "short_name": "Java App Stub License", + "name": "Java Application Stub Binary Module License", + "category": "Permissive", + "owner": "Apple", + "spdx_license_key": "LicenseRef-scancode-java-app-stub", + "ignorable_copyrights": [ + "Copyright (c) Apple Inc." + ], + "ignorable_holders": [ + "Apple Inc." + ] +} \ No newline at end of file diff --git a/docs/java-research-1.5.LICENSE b/docs/java-research-1.5.LICENSE index 9bd2ad98a0..6ef28b8ab4 100644 --- a/docs/java-research-1.5.LICENSE +++ b/docs/java-research-1.5.LICENSE @@ -1,3 +1,16 @@ +--- +key: java-research-1.5 +short_name: Java Research License 1.5 +name: Java Research License Version 1.5 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://download.java.net/jdk6/6u3/promoted/b05/jdk-6u3-fcs-src-b05-jrl-24_sep_2007.jar?q=download/jdk6/6u3/promoted/b05/jdk-6u3-fcs-src-b05-jrl-24_sep_2007.jar +spdx_license_key: LicenseRef-scancode-java-research-1.5 +ignorable_urls: + - http://www.sun.com/its + - http://www.sun.com/policies/trademarks +--- + JAVA RESEARCH LICENSE Version 1.5 I. DEFINITIONS. diff --git a/docs/java-research-1.5.html b/docs/java-research-1.5.html index 54b7abbbb7..800b59beb9 100644 --- a/docs/java-research-1.5.html +++ b/docs/java-research-1.5.html @@ -317,7 +317,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/java-research-1.5.json b/docs/java-research-1.5.json index ec097a2067..3cfaf93153 100644 --- a/docs/java-research-1.5.json +++ b/docs/java-research-1.5.json @@ -1 +1,13 @@ -{"key": "java-research-1.5", "short_name": "Java Research License 1.5", "name": "Java Research License Version 1.5", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "http://download.java.net/jdk6/6u3/promoted/b05/jdk-6u3-fcs-src-b05-jrl-24_sep_2007.jar?q=download/jdk6/6u3/promoted/b05/jdk-6u3-fcs-src-b05-jrl-24_sep_2007.jar", "spdx_license_key": "LicenseRef-scancode-java-research-1.5", "ignorable_urls": ["http://www.sun.com/its", "http://www.sun.com/policies/trademarks"]} \ No newline at end of file +{ + "key": "java-research-1.5", + "short_name": "Java Research License 1.5", + "name": "Java Research License Version 1.5", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "http://download.java.net/jdk6/6u3/promoted/b05/jdk-6u3-fcs-src-b05-jrl-24_sep_2007.jar?q=download/jdk6/6u3/promoted/b05/jdk-6u3-fcs-src-b05-jrl-24_sep_2007.jar", + "spdx_license_key": "LicenseRef-scancode-java-research-1.5", + "ignorable_urls": [ + "http://www.sun.com/its", + "http://www.sun.com/policies/trademarks" + ] +} \ No newline at end of file diff --git a/docs/java-research-1.6.LICENSE b/docs/java-research-1.6.LICENSE index 00602cf386..5e1eaecf1d 100644 --- a/docs/java-research-1.6.LICENSE +++ b/docs/java-research-1.6.LICENSE @@ -1,3 +1,16 @@ +--- +key: java-research-1.6 +short_name: Java Research License 1.6 +name: Java Research License Version 1.6 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: https://web.archive.org/web/20070112020225/http://www.java.net/jrl.csp +spdx_license_key: LicenseRef-scancode-java-research-1.6 +ignorable_urls: + - http://www.sun.com/its + - http://www.sun.com/policies/trademarks +--- + JAVA RESEARCH LICENSE Version 1.6 I. DEFINITIONS. @@ -165,4 +178,4 @@ In no event shall this License be construed against the drafter. 5. Export Control. As further described at http://www.sun.com/its, you agree to comply with the U.S. export controls and trade laws of other countries that apply to Technology -and Modifications. +and Modifications. \ No newline at end of file diff --git a/docs/java-research-1.6.html b/docs/java-research-1.6.html index fe8e492b0a..c5a224b13c 100644 --- a/docs/java-research-1.6.html +++ b/docs/java-research-1.6.html @@ -291,8 +291,7 @@ 5. Export Control. As further described at http://www.sun.com/its, you agree to comply with the U.S. export controls and trade laws of other countries that apply to Technology -and Modifications. - +and Modifications.
@@ -304,7 +303,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/java-research-1.6.json b/docs/java-research-1.6.json index 3fab3c6f1a..fa561db30d 100644 --- a/docs/java-research-1.6.json +++ b/docs/java-research-1.6.json @@ -1 +1,13 @@ -{"key": "java-research-1.6", "short_name": "Java Research License 1.6", "name": "Java Research License Version 1.6", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "https://web.archive.org/web/20070112020225/http://www.java.net/jrl.csp", "spdx_license_key": "LicenseRef-scancode-java-research-1.6", "ignorable_urls": ["http://www.sun.com/its", "http://www.sun.com/policies/trademarks"]} \ No newline at end of file +{ + "key": "java-research-1.6", + "short_name": "Java Research License 1.6", + "name": "Java Research License Version 1.6", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "https://web.archive.org/web/20070112020225/http://www.java.net/jrl.csp", + "spdx_license_key": "LicenseRef-scancode-java-research-1.6", + "ignorable_urls": [ + "http://www.sun.com/its", + "http://www.sun.com/policies/trademarks" + ] +} \ No newline at end of file diff --git a/docs/javascript-exception-2.0.LICENSE b/docs/javascript-exception-2.0.LICENSE index 591fc87561..b776349e1d 100644 --- a/docs/javascript-exception-2.0.LICENSE +++ b/docs/javascript-exception-2.0.LICENSE @@ -1,3 +1,37 @@ +--- +key: javascript-exception-2.0 +short_name: Javascript exception to GPL 2.0 +name: Javascript exception to GPL 2.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: LicenseRef-scancode-javascript-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This library 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 2, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception to GPL, any HTML file which merely makes function + calls to this code, and for that purpose includes it by reference shall be + deemed a separate work for copyright law purposes. In addition, the + copyright holders of this code give you permission to combine this code + with free software libraries that are released under the GNU LGPL. You may + copy and distribute such a system following the terms of the GNU GPL for + this code and the LGPL for the libraries. If you modify this code, you may + extend this exception to your version of the code, but you are not + obligated to do so. If you do not wish to do so, delete this exception + statement from your version. +--- + As a special exception to GPL, any HTML file which merely makes function calls to this code, and for that purpose includes it by reference shall be deemed a separate work for copyright law purposes. In addition, the copyright holders of diff --git a/docs/javascript-exception-2.0.html b/docs/javascript-exception-2.0.html index fbd86e1237..89df972648 100644 --- a/docs/javascript-exception-2.0.html +++ b/docs/javascript-exception-2.0.html @@ -172,7 +172,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/javascript-exception-2.0.json b/docs/javascript-exception-2.0.json index a9bceda99a..6eee124539 100644 --- a/docs/javascript-exception-2.0.json +++ b/docs/javascript-exception-2.0.json @@ -1 +1,13 @@ -{"key": "javascript-exception-2.0", "short_name": "Javascript exception to GPL 2.0", "name": "Javascript exception to GPL 2.0", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-javascript-exception-2.0", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nAs a special exception to GPL, any HTML file which merely makes function\ncalls to this code, and for that purpose includes it by reference shall be\ndeemed a separate work for copyright law purposes. In addition, the\ncopyright holders of this code give you permission to combine this code\nwith free software libraries that are released under the GNU LGPL. You may\ncopy and distribute such a system following the terms of the GNU GPL for\nthis code and the LGPL for the libraries. If you modify this code, you may\nextend this exception to your version of the code, but you are not\nobligated to do so. If you do not wish to do so, delete this exception\nstatement from your version.\n"} \ No newline at end of file +{ + "key": "javascript-exception-2.0", + "short_name": "Javascript exception to GPL 2.0", + "name": "Javascript exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-javascript-exception-2.0", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nAs a special exception to GPL, any HTML file which merely makes function\ncalls to this code, and for that purpose includes it by reference shall be\ndeemed a separate work for copyright law purposes. In addition, the\ncopyright holders of this code give you permission to combine this code\nwith free software libraries that are released under the GNU LGPL. You may\ncopy and distribute such a system following the terms of the GNU GPL for\nthis code and the LGPL for the libraries. If you modify this code, you may\nextend this exception to your version of the code, but you are not\nobligated to do so. If you do not wish to do so, delete this exception\nstatement from your version.\n" +} \ No newline at end of file diff --git a/docs/jboss-eula.LICENSE b/docs/jboss-eula.LICENSE index 7ec08795e5..1a5133469b 100644 --- a/docs/jboss-eula.LICENSE +++ b/docs/jboss-eula.LICENSE @@ -1,3 +1,24 @@ +--- +key: jboss-eula +short_name: JBoss EULA +name: JBoss EULA +category: Proprietary Free +owner: JBoss Community +spdx_license_key: LicenseRef-scancode-jboss-eula +text_urls: + - http://repository.jboss.org/licenses/jbossorg-eula.txt +ignorable_copyrights: + - Copyright 2006 Red Hat, Inc. +ignorable_holders: + - Red Hat, Inc. +ignorable_urls: + - http://www.jboss.com/company/logos + - http://www.jboss.org/ + - http://www.opensource.org/licenses/index.php + - http://www.redhat.com/about/corporate/trademark + - http://www.redhat.com/licenses +--- + LICENSE AGREEMENT JBOSS(r) diff --git a/docs/jboss-eula.html b/docs/jboss-eula.html index 47ccafcafc..02d7e24497 100644 --- a/docs/jboss-eula.html +++ b/docs/jboss-eula.html @@ -261,7 +261,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jboss-eula.json b/docs/jboss-eula.json index fc45b5da8a..0f55ca0a55 100644 --- a/docs/jboss-eula.json +++ b/docs/jboss-eula.json @@ -1 +1,24 @@ -{"key": "jboss-eula", "short_name": "JBoss EULA", "name": "JBoss EULA", "category": "Proprietary Free", "owner": "JBoss Community", "spdx_license_key": "LicenseRef-scancode-jboss-eula", "text_urls": ["http://repository.jboss.org/licenses/jbossorg-eula.txt"], "ignorable_copyrights": ["Copyright 2006 Red Hat, Inc."], "ignorable_holders": ["Red Hat, Inc."], "ignorable_urls": ["http://www.jboss.com/company/logos", "http://www.jboss.org/", "http://www.opensource.org/licenses/index.php", "http://www.redhat.com/about/corporate/trademark", "http://www.redhat.com/licenses"]} \ No newline at end of file +{ + "key": "jboss-eula", + "short_name": "JBoss EULA", + "name": "JBoss EULA", + "category": "Proprietary Free", + "owner": "JBoss Community", + "spdx_license_key": "LicenseRef-scancode-jboss-eula", + "text_urls": [ + "http://repository.jboss.org/licenses/jbossorg-eula.txt" + ], + "ignorable_copyrights": [ + "Copyright 2006 Red Hat, Inc." + ], + "ignorable_holders": [ + "Red Hat, Inc." + ], + "ignorable_urls": [ + "http://www.jboss.com/company/logos", + "http://www.jboss.org/", + "http://www.opensource.org/licenses/index.php", + "http://www.redhat.com/about/corporate/trademark", + "http://www.redhat.com/licenses" + ] +} \ No newline at end of file diff --git a/docs/jdbm-1.00.LICENSE b/docs/jdbm-1.00.LICENSE index 802b978932..b27e08fdd9 100644 --- a/docs/jdbm-1.00.LICENSE +++ b/docs/jdbm-1.00.LICENSE @@ -1,3 +1,17 @@ +--- +key: jdbm-1.00 +short_name: JDBM License v1.00 +name: JDBM License v1.00 +category: Permissive +owner: JovalCM +homepage_url: https://github.com/joval/jdbm/blob/master/LICENSE.txt +spdx_license_key: LicenseRef-scancode-jdbm-1.00 +ignorable_urls: + - http://jdbm.sourceforge.net/ +ignorable_emails: + - cg@cdegroot.com +--- + JDBM LICENSE v1.00 Redistribution and use of this software and associated documentation diff --git a/docs/jdbm-1.00.html b/docs/jdbm-1.00.html index 19d8f6ebbb..22c23baf67 100644 --- a/docs/jdbm-1.00.html +++ b/docs/jdbm-1.00.html @@ -183,7 +183,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jdbm-1.00.json b/docs/jdbm-1.00.json index f4f4f5e7ae..352f8b1698 100644 --- a/docs/jdbm-1.00.json +++ b/docs/jdbm-1.00.json @@ -1 +1,15 @@ -{"key": "jdbm-1.00", "short_name": "JDBM License v1.00", "name": "JDBM License v1.00", "category": "Permissive", "owner": "JovalCM", "homepage_url": "https://github.com/joval/jdbm/blob/master/LICENSE.txt", "spdx_license_key": "LicenseRef-scancode-jdbm-1.00", "ignorable_urls": ["http://jdbm.sourceforge.net/"], "ignorable_emails": ["cg@cdegroot.com"]} \ No newline at end of file +{ + "key": "jdbm-1.00", + "short_name": "JDBM License v1.00", + "name": "JDBM License v1.00", + "category": "Permissive", + "owner": "JovalCM", + "homepage_url": "https://github.com/joval/jdbm/blob/master/LICENSE.txt", + "spdx_license_key": "LicenseRef-scancode-jdbm-1.00", + "ignorable_urls": [ + "http://jdbm.sourceforge.net/" + ], + "ignorable_emails": [ + "cg@cdegroot.com" + ] +} \ No newline at end of file diff --git a/docs/jdom.LICENSE b/docs/jdom.LICENSE index 501703ff04..eea900a72a 100644 --- a/docs/jdom.LICENSE +++ b/docs/jdom.LICENSE @@ -1,3 +1,21 @@ +--- +key: jdom +short_name: JDOM License +name: JDOM License +category: Permissive +owner: JDOM +homepage_url: http://www.jdom.org/docs/faq.html#a0030 +notes: this based on an Apache 1.1 license +spdx_license_key: LicenseRef-scancode-jdom +faq_url: http://www.jdom.org/docs/faq.html#a0030 +ignorable_authors: + - Jason Hunter and Brett McLaughlin + - the JDOM Project (http://www.jdom.org/) +ignorable_urls: + - http://www.jdom.org/ + - http://www.jdom.org/images/logos +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/jdom.html b/docs/jdom.html index b2ace62e6e..4b417d14a5 100644 --- a/docs/jdom.html +++ b/docs/jdom.html @@ -204,7 +204,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jdom.json b/docs/jdom.json index 86843b6b7e..ed068f5a2e 100644 --- a/docs/jdom.json +++ b/docs/jdom.json @@ -1 +1,19 @@ -{"key": "jdom", "short_name": "JDOM License", "name": "JDOM License", "category": "Permissive", "owner": "JDOM", "homepage_url": "http://www.jdom.org/docs/faq.html#a0030", "notes": "this based on an Apache 1.1 license", "spdx_license_key": "LicenseRef-scancode-jdom", "faq_url": "http://www.jdom.org/docs/faq.html#a0030", "ignorable_authors": ["Jason Hunter and Brett McLaughlin", "the JDOM Project (http://www.jdom.org/)"], "ignorable_urls": ["http://www.jdom.org/", "http://www.jdom.org/images/logos"]} \ No newline at end of file +{ + "key": "jdom", + "short_name": "JDOM License", + "name": "JDOM License", + "category": "Permissive", + "owner": "JDOM", + "homepage_url": "http://www.jdom.org/docs/faq.html#a0030", + "notes": "this based on an Apache 1.1 license", + "spdx_license_key": "LicenseRef-scancode-jdom", + "faq_url": "http://www.jdom.org/docs/faq.html#a0030", + "ignorable_authors": [ + "Jason Hunter and Brett McLaughlin", + "the JDOM Project (http://www.jdom.org/)" + ], + "ignorable_urls": [ + "http://www.jdom.org/", + "http://www.jdom.org/images/logos" + ] +} \ No newline at end of file diff --git a/docs/jelurida-public-1.1.LICENSE b/docs/jelurida-public-1.1.LICENSE index ff6bc52c61..132920836e 100644 --- a/docs/jelurida-public-1.1.LICENSE +++ b/docs/jelurida-public-1.1.LICENSE @@ -1,3 +1,18 @@ +--- +key: jelurida-public-1.1 +short_name: Jeulurida Public License 1.1 +name: Jeulurida Public License 1.1 +category: Copyleft +owner: Jelurida +homepage_url: https://github.com/mrv777/NXT/blob/master/LICENSE.txt +spdx_license_key: LicenseRef-scancode-jelurida-public-1.1 +standard_notice: | + This program is distributed under the terms of the Jelurida Public License + version 1.1 +ignorable_authors: + - Jelurida Swiss SA +--- + JELURIDA PUBLIC LICENSE Preamble: diff --git a/docs/jelurida-public-1.1.html b/docs/jelurida-public-1.1.html index d9b4070bef..54c1f51e82 100644 --- a/docs/jelurida-public-1.1.html +++ b/docs/jelurida-public-1.1.html @@ -675,7 +675,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jelurida-public-1.1.json b/docs/jelurida-public-1.1.json index fa2b3cfecc..1a0b32640e 100644 --- a/docs/jelurida-public-1.1.json +++ b/docs/jelurida-public-1.1.json @@ -1 +1,13 @@ -{"key": "jelurida-public-1.1", "short_name": "Jeulurida Public License 1.1", "name": "Jeulurida Public License 1.1", "category": "Copyleft", "owner": "Jelurida", "homepage_url": "https://github.com/mrv777/NXT/blob/master/LICENSE.txt", "spdx_license_key": "LicenseRef-scancode-jelurida-public-1.1", "standard_notice": "This program is distributed under the terms of the Jelurida Public License\nversion 1.1\n", "ignorable_authors": ["Jelurida Swiss SA"]} \ No newline at end of file +{ + "key": "jelurida-public-1.1", + "short_name": "Jeulurida Public License 1.1", + "name": "Jeulurida Public License 1.1", + "category": "Copyleft", + "owner": "Jelurida", + "homepage_url": "https://github.com/mrv777/NXT/blob/master/LICENSE.txt", + "spdx_license_key": "LicenseRef-scancode-jelurida-public-1.1", + "standard_notice": "This program is distributed under the terms of the Jelurida Public License\nversion 1.1\n", + "ignorable_authors": [ + "Jelurida Swiss SA" + ] +} \ No newline at end of file diff --git a/docs/jetbrains-purchase-terms.LICENSE b/docs/jetbrains-purchase-terms.LICENSE index 48d89607f0..d0a437df8b 100644 --- a/docs/jetbrains-purchase-terms.LICENSE +++ b/docs/jetbrains-purchase-terms.LICENSE @@ -1,3 +1,16 @@ +--- +key: jetbrains-purchase-terms +short_name: JetBrains Purchase Terms +name: JetBrains Purchase Terms +category: Commercial +owner: JetBrains +homepage_url: https://www.jetbrains.com/store/terms/ +spdx_license_key: LicenseRef-scancode-jetbrains-purchase-terms +ignorable_urls: + - http://www.jetbrains.com/ + - https://account.jetbrains.com/ +--- + Terms and Conditions of Purchase GENERAL diff --git a/docs/jetbrains-purchase-terms.html b/docs/jetbrains-purchase-terms.html index 5b7bbd95aa..004c76f9be 100644 --- a/docs/jetbrains-purchase-terms.html +++ b/docs/jetbrains-purchase-terms.html @@ -192,7 +192,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jetbrains-purchase-terms.json b/docs/jetbrains-purchase-terms.json index af6e9c582f..569edaf818 100644 --- a/docs/jetbrains-purchase-terms.json +++ b/docs/jetbrains-purchase-terms.json @@ -1 +1,13 @@ -{"key": "jetbrains-purchase-terms", "short_name": "JetBrains Purchase Terms", "name": "JetBrains Purchase Terms", "category": "Commercial", "owner": "JetBrains", "homepage_url": "https://www.jetbrains.com/store/terms/", "spdx_license_key": "LicenseRef-scancode-jetbrains-purchase-terms", "ignorable_urls": ["http://www.jetbrains.com/", "https://account.jetbrains.com/"]} \ No newline at end of file +{ + "key": "jetbrains-purchase-terms", + "short_name": "JetBrains Purchase Terms", + "name": "JetBrains Purchase Terms", + "category": "Commercial", + "owner": "JetBrains", + "homepage_url": "https://www.jetbrains.com/store/terms/", + "spdx_license_key": "LicenseRef-scancode-jetbrains-purchase-terms", + "ignorable_urls": [ + "http://www.jetbrains.com/", + "https://account.jetbrains.com/" + ] +} \ No newline at end of file diff --git a/docs/jetbrains-toolbox-open-source-3.LICENSE b/docs/jetbrains-toolbox-open-source-3.LICENSE index f817dfba2c..0c06d5547b 100644 --- a/docs/jetbrains-toolbox-open-source-3.LICENSE +++ b/docs/jetbrains-toolbox-open-source-3.LICENSE @@ -1,3 +1,21 @@ +--- +key: jetbrains-toolbox-open-source-3 +short_name: JetBrains Toolbox Open Source License v3 +name: Toolbox Subscription License Agreement For Open Source Projects Version 3 +category: Proprietary Free +owner: JetBrains +homepage_url: https://www.jetbrains.com/store/license_opensource.html +spdx_license_key: LicenseRef-scancode-jetbrains-toolbox-oss-3 +other_spdx_license_keys: + - LicenseRef-scancode-jetbrains-toolbox-open-source-3 +ignorable_urls: + - http://www.jetbrains.com/ + - http://www.opensource.org/docs/osd + - https://account.jetbrains.com/ +ignorable_emails: + - sales@jetbrains.com +--- + TOOLBOX SUBSCRIPTION LICENSE AGREEMENT FOR OPEN SOURCE PROJECTS Version 3, Effective as of September 9th, 2016 diff --git a/docs/jetbrains-toolbox-open-source-3.html b/docs/jetbrains-toolbox-open-source-3.html index e6087f2c49..e4b610b55c 100644 --- a/docs/jetbrains-toolbox-open-source-3.html +++ b/docs/jetbrains-toolbox-open-source-3.html @@ -289,7 +289,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jetbrains-toolbox-open-source-3.json b/docs/jetbrains-toolbox-open-source-3.json index d57fc0ba32..b9841e8ee6 100644 --- a/docs/jetbrains-toolbox-open-source-3.json +++ b/docs/jetbrains-toolbox-open-source-3.json @@ -1 +1,20 @@ -{"key": "jetbrains-toolbox-open-source-3", "short_name": "JetBrains Toolbox Open Source License v3", "name": "Toolbox Subscription License Agreement For Open Source Projects Version 3", "category": "Proprietary Free", "owner": "JetBrains", "homepage_url": "https://www.jetbrains.com/store/license_opensource.html", "spdx_license_key": "LicenseRef-scancode-jetbrains-toolbox-oss-3", "other_spdx_license_keys": ["LicenseRef-scancode-jetbrains-toolbox-open-source-3"], "ignorable_urls": ["http://www.jetbrains.com/", "http://www.opensource.org/docs/osd", "https://account.jetbrains.com/"], "ignorable_emails": ["sales@jetbrains.com"]} \ No newline at end of file +{ + "key": "jetbrains-toolbox-open-source-3", + "short_name": "JetBrains Toolbox Open Source License v3", + "name": "Toolbox Subscription License Agreement For Open Source Projects Version 3", + "category": "Proprietary Free", + "owner": "JetBrains", + "homepage_url": "https://www.jetbrains.com/store/license_opensource.html", + "spdx_license_key": "LicenseRef-scancode-jetbrains-toolbox-oss-3", + "other_spdx_license_keys": [ + "LicenseRef-scancode-jetbrains-toolbox-open-source-3" + ], + "ignorable_urls": [ + "http://www.jetbrains.com/", + "http://www.opensource.org/docs/osd", + "https://account.jetbrains.com/" + ], + "ignorable_emails": [ + "sales@jetbrains.com" + ] +} \ No newline at end of file diff --git a/docs/jetty-ccla-1.1.LICENSE b/docs/jetty-ccla-1.1.LICENSE index 0ba4d66aee..32af3f2bf5 100644 --- a/docs/jetty-ccla-1.1.LICENSE +++ b/docs/jetty-ccla-1.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: jetty-ccla-1.1 +short_name: Jetty CCLA 1.1 +name: Jetty Project Corporate Contributor License Agreement V1.1 +category: CLA +owner: Jetty Project +homepage_url: https://raw.githubusercontent.com/eclipse/jetty.project/jetty-9.4.x/LICENSE-CONTRIBUTOR/ccla-template.txt +spdx_license_key: LicenseRef-scancode-jetty-ccla-1.1 +text_urls: + - https://raw.githubusercontent.com/eclipse/jetty.project/jetty-9.4.x/LICENSE-CONTRIBUTOR/ccla-template.txt +ignorable_urls: + - http://www.apache.org/licenses/ + - ssh://svn.jetty.codehaus.org/home/projects/jetty/scm/jetty +ignorable_emails: + - eclipse@eclipse.com +--- + Jetty Project Corporate Contributor License Agreement V1.1 based on http://www.apache.org/licenses/ @@ -172,5 +189,4 @@ Schedule A ______________________________________ ________________ - ______________________________________ ________________ - + ______________________________________ ________________ \ No newline at end of file diff --git a/docs/jetty-ccla-1.1.html b/docs/jetty-ccla-1.1.html index e4e4d0f594..48cdac9b87 100644 --- a/docs/jetty-ccla-1.1.html +++ b/docs/jetty-ccla-1.1.html @@ -88,7 +88,7 @@
category
- Proprietary Free + CLA
@@ -316,9 +316,7 @@ ______________________________________ ________________ - ______________________________________ ________________ - - + ______________________________________ ________________
@@ -330,7 +328,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jetty-ccla-1.1.json b/docs/jetty-ccla-1.1.json index a28bfbc2c4..273c3598cd 100644 --- a/docs/jetty-ccla-1.1.json +++ b/docs/jetty-ccla-1.1.json @@ -1 +1,19 @@ -{"key": "jetty-ccla-1.1", "short_name": "Jetty CCLA 1.1", "name": "Jetty Project Corporate Contributor License Agreement V1.1", "category": "Proprietary Free", "owner": "Jetty Project", "homepage_url": "https://raw.githubusercontent.com/eclipse/jetty.project/jetty-9.4.x/LICENSE-CONTRIBUTOR/ccla-template.txt", "spdx_license_key": "LicenseRef-scancode-jetty-ccla-1.1", "text_urls": ["https://raw.githubusercontent.com/eclipse/jetty.project/jetty-9.4.x/LICENSE-CONTRIBUTOR/ccla-template.txt"], "ignorable_urls": ["http://www.apache.org/licenses/", "ssh://svn.jetty.codehaus.org/home/projects/jetty/scm/jetty"], "ignorable_emails": ["eclipse@eclipse.com"]} \ No newline at end of file +{ + "key": "jetty-ccla-1.1", + "short_name": "Jetty CCLA 1.1", + "name": "Jetty Project Corporate Contributor License Agreement V1.1", + "category": "CLA", + "owner": "Jetty Project", + "homepage_url": "https://raw.githubusercontent.com/eclipse/jetty.project/jetty-9.4.x/LICENSE-CONTRIBUTOR/ccla-template.txt", + "spdx_license_key": "LicenseRef-scancode-jetty-ccla-1.1", + "text_urls": [ + "https://raw.githubusercontent.com/eclipse/jetty.project/jetty-9.4.x/LICENSE-CONTRIBUTOR/ccla-template.txt" + ], + "ignorable_urls": [ + "http://www.apache.org/licenses/", + "ssh://svn.jetty.codehaus.org/home/projects/jetty/scm/jetty" + ], + "ignorable_emails": [ + "eclipse@eclipse.com" + ] +} \ No newline at end of file diff --git a/docs/jetty-ccla-1.1.yml b/docs/jetty-ccla-1.1.yml index 807cdff5d6..89133574ca 100644 --- a/docs/jetty-ccla-1.1.yml +++ b/docs/jetty-ccla-1.1.yml @@ -1,7 +1,7 @@ key: jetty-ccla-1.1 short_name: Jetty CCLA 1.1 name: Jetty Project Corporate Contributor License Agreement V1.1 -category: Proprietary Free +category: CLA owner: Jetty Project homepage_url: https://raw.githubusercontent.com/eclipse/jetty.project/jetty-9.4.x/LICENSE-CONTRIBUTOR/ccla-template.txt spdx_license_key: LicenseRef-scancode-jetty-ccla-1.1 diff --git a/docs/jetty.LICENSE b/docs/jetty.LICENSE index 712c7ba92d..f2070badb9 100644 --- a/docs/jetty.LICENSE +++ b/docs/jetty.LICENSE @@ -1,3 +1,28 @@ +--- +key: jetty +short_name: Jetty License +name: Jetty License +category: Permissive +owner: Jetty Project +homepage_url: http://www.tinyos.net/tinyos-1.x/tools/java/jars/JETTY-LICENSE.txt +spdx_license_key: LicenseRef-scancode-jetty +text_urls: + - http://svn.apache.org/repos/asf/forrest/trunk/tools/jetty/jetty-4.2.19.jar.license.html + - http://www.tinyos.net/tinyos-1.x/tools/java/jars/JETTY-LICENSE.txt +faq_url: http://en.wikipedia.org/wiki/Jetty_(web_server) +ignorable_copyrights: + - Copyright (c) Mort Bay Consulting Pty. Ltd. (Australia) and others + - copyright Sun Microsystems Inc. +ignorable_holders: + - Mort Bay Consulting Pty. Ltd. (Australia) and others + - Sun Microsystems Inc. +ignorable_urls: + - http://ftp.uu.net/ + - http://jetty.mortbay.org/ + - http://www.opensource.com/ + - http://www.opensource.org/ +--- + Jetty License $Revision: 584 $ diff --git a/docs/jetty.html b/docs/jetty.html index a16109579c..cce9f3f4c0 100644 --- a/docs/jetty.html +++ b/docs/jetty.html @@ -301,7 +301,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jetty.json b/docs/jetty.json index 3fd4991941..37412689d4 100644 --- a/docs/jetty.json +++ b/docs/jetty.json @@ -1 +1,28 @@ -{"key": "jetty", "short_name": "Jetty License", "name": "Jetty License", "category": "Permissive", "owner": "Jetty Project", "homepage_url": "http://www.tinyos.net/tinyos-1.x/tools/java/jars/JETTY-LICENSE.txt", "spdx_license_key": "LicenseRef-scancode-jetty", "text_urls": ["http://svn.apache.org/repos/asf/forrest/trunk/tools/jetty/jetty-4.2.19.jar.license.html", "http://www.tinyos.net/tinyos-1.x/tools/java/jars/JETTY-LICENSE.txt"], "faq_url": "http://en.wikipedia.org/wiki/Jetty_(web_server)", "ignorable_copyrights": ["Copyright (c) Mort Bay Consulting Pty. Ltd. (Australia) and others", "copyright Sun Microsystems Inc."], "ignorable_holders": ["Mort Bay Consulting Pty. Ltd. (Australia) and others", "Sun Microsystems Inc."], "ignorable_urls": ["http://ftp.uu.net/", "http://jetty.mortbay.org/", "http://www.opensource.com/", "http://www.opensource.org/"]} \ No newline at end of file +{ + "key": "jetty", + "short_name": "Jetty License", + "name": "Jetty License", + "category": "Permissive", + "owner": "Jetty Project", + "homepage_url": "http://www.tinyos.net/tinyos-1.x/tools/java/jars/JETTY-LICENSE.txt", + "spdx_license_key": "LicenseRef-scancode-jetty", + "text_urls": [ + "http://svn.apache.org/repos/asf/forrest/trunk/tools/jetty/jetty-4.2.19.jar.license.html", + "http://www.tinyos.net/tinyos-1.x/tools/java/jars/JETTY-LICENSE.txt" + ], + "faq_url": "http://en.wikipedia.org/wiki/Jetty_(web_server)", + "ignorable_copyrights": [ + "Copyright (c) Mort Bay Consulting Pty. Ltd. (Australia) and others", + "copyright Sun Microsystems Inc." + ], + "ignorable_holders": [ + "Mort Bay Consulting Pty. Ltd. (Australia) and others", + "Sun Microsystems Inc." + ], + "ignorable_urls": [ + "http://ftp.uu.net/", + "http://jetty.mortbay.org/", + "http://www.opensource.com/", + "http://www.opensource.org/" + ] +} \ No newline at end of file diff --git a/docs/jgraph-general.LICENSE b/docs/jgraph-general.LICENSE index f8e00f532a..88a26ff38d 100644 --- a/docs/jgraph-general.LICENSE +++ b/docs/jgraph-general.LICENSE @@ -1,3 +1,15 @@ +--- +key: jgraph-general +short_name: JGraph General License +name: JGraph General License +category: Proprietary Free +owner: JGraph +homepage_url: http://dsl.serc.iisc.ernet.in/projects/PICASSO/picasso_download/doc/Installation/LibraryLicenses/licenseJGraph.htm +spdx_license_key: LicenseRef-scancode-jgraph-general +text_urls: + - http://dsl.serc.iisc.ernet.in/projects/PICASSO/picasso_download/doc/Installation/LibraryLicenses/licenseJGraph.htm +--- + JGraph General License JGRAPH GENERAL LICENSE STATEMENT AND LIMITED WARRANTY diff --git a/docs/jgraph-general.html b/docs/jgraph-general.html index 460f399086..e53fbf350e 100644 --- a/docs/jgraph-general.html +++ b/docs/jgraph-general.html @@ -298,7 +298,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jgraph-general.json b/docs/jgraph-general.json index be296475f6..feb861eb62 100644 --- a/docs/jgraph-general.json +++ b/docs/jgraph-general.json @@ -1 +1,12 @@ -{"key": "jgraph-general", "short_name": "JGraph General License", "name": "JGraph General License", "category": "Proprietary Free", "owner": "JGraph", "homepage_url": "http://dsl.serc.iisc.ernet.in/projects/PICASSO/picasso_download/doc/Installation/LibraryLicenses/licenseJGraph.htm", "spdx_license_key": "LicenseRef-scancode-jgraph-general", "text_urls": ["http://dsl.serc.iisc.ernet.in/projects/PICASSO/picasso_download/doc/Installation/LibraryLicenses/licenseJGraph.htm"]} \ No newline at end of file +{ + "key": "jgraph-general", + "short_name": "JGraph General License", + "name": "JGraph General License", + "category": "Proprietary Free", + "owner": "JGraph", + "homepage_url": "http://dsl.serc.iisc.ernet.in/projects/PICASSO/picasso_download/doc/Installation/LibraryLicenses/licenseJGraph.htm", + "spdx_license_key": "LicenseRef-scancode-jgraph-general", + "text_urls": [ + "http://dsl.serc.iisc.ernet.in/projects/PICASSO/picasso_download/doc/Installation/LibraryLicenses/licenseJGraph.htm" + ] +} \ No newline at end of file diff --git a/docs/jgraph.LICENSE b/docs/jgraph.LICENSE index 7f5bfbdfde..3664d8131b 100644 --- a/docs/jgraph.LICENSE +++ b/docs/jgraph.LICENSE @@ -1,3 +1,16 @@ +--- +key: jgraph +short_name: JGraph License +name: JGraph License +category: Permissive +owner: JGraph +homepage_url: http://www.jgraph.com/jgraphdownload.html +spdx_license_key: LicenseRef-scancode-jgraph +other_urls: + - http://www.jgraph.com/jgraphdownload.html +minimum_coverage: 70 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -31,4 +44,4 @@ 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. +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/jgraph.html b/docs/jgraph.html index 403a3b81a2..1d3c77dad0 100644 --- a/docs/jgraph.html +++ b/docs/jgraph.html @@ -164,8 +164,7 @@ 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. - +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -177,7 +176,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jgraph.json b/docs/jgraph.json index 934497978a..f73fecbc22 100644 --- a/docs/jgraph.json +++ b/docs/jgraph.json @@ -1 +1,13 @@ -{"key": "jgraph", "short_name": "JGraph License", "name": "JGraph License", "category": "Permissive", "owner": "JGraph", "homepage_url": "http://www.jgraph.com/jgraphdownload.html", "spdx_license_key": "LicenseRef-scancode-jgraph", "other_urls": ["http://www.jgraph.com/jgraphdownload.html"], "minimum_coverage": 70} \ No newline at end of file +{ + "key": "jgraph", + "short_name": "JGraph License", + "name": "JGraph License", + "category": "Permissive", + "owner": "JGraph", + "homepage_url": "http://www.jgraph.com/jgraphdownload.html", + "spdx_license_key": "LicenseRef-scancode-jgraph", + "other_urls": [ + "http://www.jgraph.com/jgraphdownload.html" + ], + "minimum_coverage": 70 +} \ No newline at end of file diff --git a/docs/jide-sla.LICENSE b/docs/jide-sla.LICENSE index 916b4b7b8c..718130a9c3 100644 --- a/docs/jide-sla.LICENSE +++ b/docs/jide-sla.LICENSE @@ -1,3 +1,15 @@ +--- +key: jide-sla +short_name: JIDE SLA +name: JIDE SLA +category: Commercial +owner: JIDE Software +homepage_url: http://www.jidesoft.com/purchase/SLA.htm +spdx_license_key: LicenseRef-scancode-jide-sla +ignorable_urls: + - http://www.jidesoft.com/ +--- + SOFTWARE LICENSE AGREEMENT FOR JIDE SOFTWARE, INC.'S PRODUCTS IMPORTANT - READ CAREFULLY: This JIDE Software, Inc. ("JIDE") Software License Agreement ("SLA") is a legal agreement between you (an individual developer or a company of software applications) and JIDE for the JIDE software product accompanying this SLA, which includes computer software and may include associated source code, media, printed materials, and "on-line" or electronic documentation ("SOFTWARE PRODUCT"). By installing, copying, or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this SLA. If you do not agree to the terms of this SLA, do not install, use, distribute in any manner, or replicate in any manner, any part, file or portion of the SOFTWARE PRODUCT. @@ -48,5 +60,4 @@ For CUSTOMER For JIDE Software, Inc. Signature: Signature: Name Name: Title: Title: -Date: Date: - +Date: Date: \ No newline at end of file diff --git a/docs/jide-sla.html b/docs/jide-sla.html index e2207c4d53..2b72d7048b 100644 --- a/docs/jide-sla.html +++ b/docs/jide-sla.html @@ -174,9 +174,7 @@ Signature: Signature: Name Name: Title: Title: -Date: Date: - - +Date: Date:
@@ -188,7 +186,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jide-sla.json b/docs/jide-sla.json index 8a121c156d..f09aca8bea 100644 --- a/docs/jide-sla.json +++ b/docs/jide-sla.json @@ -1 +1,12 @@ -{"key": "jide-sla", "short_name": "JIDE SLA", "name": "JIDE SLA", "category": "Commercial", "owner": "JIDE Software", "homepage_url": "http://www.jidesoft.com/purchase/SLA.htm", "spdx_license_key": "LicenseRef-scancode-jide-sla", "ignorable_urls": ["http://www.jidesoft.com/"]} \ No newline at end of file +{ + "key": "jide-sla", + "short_name": "JIDE SLA", + "name": "JIDE SLA", + "category": "Commercial", + "owner": "JIDE Software", + "homepage_url": "http://www.jidesoft.com/purchase/SLA.htm", + "spdx_license_key": "LicenseRef-scancode-jide-sla", + "ignorable_urls": [ + "http://www.jidesoft.com/" + ] +} \ No newline at end of file diff --git a/docs/jj2000.LICENSE b/docs/jj2000.LICENSE index c18a8fefa9..0b2628f6ec 100644 --- a/docs/jj2000.LICENSE +++ b/docs/jj2000.LICENSE @@ -1,3 +1,16 @@ +--- +key: jj2000 +short_name: JJ2000 License +name: JJ2000 License +category: Free Restricted +owner: JJ2000 Partners +homepage_url: https://raw.githubusercontent.com/stain/jai-imageio-jpeg2000/master/LICENSE-JJ2000.txt +spdx_license_key: LicenseRef-scancode-jj2000 +ignorable_authors: + - Raphael Grosbois and Diego Santa Cruz (Swiss Federal Institute of Technology-EPFL) Joel + Askelof +--- + This software module was originally developed by Raphaël Grosbois and Diego Santa Cruz (Swiss Federal Institute of Technology-EPFL); Joel Askelöf (Ericsson Radio Systems AB); and Bertrand Berthelot, David diff --git a/docs/jj2000.html b/docs/jj2000.html index ddb0887850..e92e4634e0 100644 --- a/docs/jj2000.html +++ b/docs/jj2000.html @@ -163,7 +163,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jj2000.json b/docs/jj2000.json index 2d118360f2..ccae913267 100644 --- a/docs/jj2000.json +++ b/docs/jj2000.json @@ -1 +1,12 @@ -{"key": "jj2000", "short_name": "JJ2000 License", "name": "JJ2000 License", "category": "Free Restricted", "owner": "JJ2000 Partners", "homepage_url": "https://raw.githubusercontent.com/stain/jai-imageio-jpeg2000/master/LICENSE-JJ2000.txt", "spdx_license_key": "LicenseRef-scancode-jj2000", "ignorable_authors": ["Raphael Grosbois and Diego Santa Cruz (Swiss Federal Institute of Technology-EPFL) Joel Askelof"]} \ No newline at end of file +{ + "key": "jj2000", + "short_name": "JJ2000 License", + "name": "JJ2000 License", + "category": "Free Restricted", + "owner": "JJ2000 Partners", + "homepage_url": "https://raw.githubusercontent.com/stain/jai-imageio-jpeg2000/master/LICENSE-JJ2000.txt", + "spdx_license_key": "LicenseRef-scancode-jj2000", + "ignorable_authors": [ + "Raphael Grosbois and Diego Santa Cruz (Swiss Federal Institute of Technology-EPFL) Joel Askelof" + ] +} \ No newline at end of file diff --git a/docs/jmagnetic.LICENSE b/docs/jmagnetic.LICENSE index d38b3963f9..5b5ea0facc 100644 --- a/docs/jmagnetic.LICENSE +++ b/docs/jmagnetic.LICENSE @@ -1,3 +1,16 @@ +--- +key: jmagnetic +short_name: JMagnetic License +name: JMagnetic License +category: Proprietary Free +owner: Stefan Meier +spdx_license_key: LicenseRef-scancode-jmagnetic +ignorable_copyrights: + - copyright (c) 1998-99, Stefan Meier +ignorable_holders: + - Stefan Meier +--- + JMAGNETIC Licence Agreement This is a legal agreement between you and Stefan Meier covering your use of JMagnetic. Be sure to read the following agreement before using the software. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE AND DESTROY ALL COPIES OF IT. diff --git a/docs/jmagnetic.html b/docs/jmagnetic.html index c7742e2f4a..2fc495ab7d 100644 --- a/docs/jmagnetic.html +++ b/docs/jmagnetic.html @@ -148,7 +148,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jmagnetic.json b/docs/jmagnetic.json index 7f79b7354f..a823925cc9 100644 --- a/docs/jmagnetic.json +++ b/docs/jmagnetic.json @@ -1 +1,14 @@ -{"key": "jmagnetic", "short_name": "JMagnetic License", "name": "JMagnetic License", "category": "Proprietary Free", "owner": "Stefan Meier", "spdx_license_key": "LicenseRef-scancode-jmagnetic", "ignorable_copyrights": ["copyright (c) 1998-99, Stefan Meier"], "ignorable_holders": ["Stefan Meier"]} \ No newline at end of file +{ + "key": "jmagnetic", + "short_name": "JMagnetic License", + "name": "JMagnetic License", + "category": "Proprietary Free", + "owner": "Stefan Meier", + "spdx_license_key": "LicenseRef-scancode-jmagnetic", + "ignorable_copyrights": [ + "copyright (c) 1998-99, Stefan Meier" + ], + "ignorable_holders": [ + "Stefan Meier" + ] +} \ No newline at end of file diff --git a/docs/josl-1.0.LICENSE b/docs/josl-1.0.LICENSE index 084400144c..74ad44f896 100644 --- a/docs/josl-1.0.LICENSE +++ b/docs/josl-1.0.LICENSE @@ -1,3 +1,26 @@ +--- +key: josl-1.0 +short_name: Jabber 1.0 +name: Jabber Open Source License 1.0 +category: Copyleft Limited +owner: Jabber Technology +homepage_url: http://www.opensource.org/licenses/jabberpl.php +spdx_license_key: LicenseRef-scancode-josl-1.0 +text_urls: + - http://code.google.com/p/jabber-net/source/browse/branches/RELEASE_1_0/LICENSE.txt +osi_url: http://www.opensource.org/licenses/jabberpl.php +ignorable_copyrights: + - Copyright (c) 1999-2000 Jabber.com, Inc. + - Portions Copyright (c) 1998-1999 Jeremie Miller +ignorable_holders: + - Jabber.com, Inc. + - Jeremie Miller +ignorable_urls: + - http://www.jabber.com/ + - http://www.jabber.com/license/ + - http://www.opensource.org/ +--- + Jabber Open Source License Version 1.0 diff --git a/docs/josl-1.0.html b/docs/josl-1.0.html index b18f40699e..10a0d6204c 100644 --- a/docs/josl-1.0.html +++ b/docs/josl-1.0.html @@ -318,7 +318,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/josl-1.0.json b/docs/josl-1.0.json index 8f4755429e..36b17d9375 100644 --- a/docs/josl-1.0.json +++ b/docs/josl-1.0.json @@ -1 +1,26 @@ -{"key": "josl-1.0", "short_name": "Jabber 1.0", "name": "Jabber Open Source License 1.0", "category": "Copyleft Limited", "owner": "Jabber Technology", "homepage_url": "http://www.opensource.org/licenses/jabberpl.php", "spdx_license_key": "LicenseRef-scancode-josl-1.0", "text_urls": ["http://code.google.com/p/jabber-net/source/browse/branches/RELEASE_1_0/LICENSE.txt"], "osi_url": "http://www.opensource.org/licenses/jabberpl.php", "ignorable_copyrights": ["Copyright (c) 1999-2000 Jabber.com, Inc.", "Portions Copyright (c) 1998-1999 Jeremie Miller"], "ignorable_holders": ["Jabber.com, Inc.", "Jeremie Miller"], "ignorable_urls": ["http://www.jabber.com/", "http://www.jabber.com/license/", "http://www.opensource.org/"]} \ No newline at end of file +{ + "key": "josl-1.0", + "short_name": "Jabber 1.0", + "name": "Jabber Open Source License 1.0", + "category": "Copyleft Limited", + "owner": "Jabber Technology", + "homepage_url": "http://www.opensource.org/licenses/jabberpl.php", + "spdx_license_key": "LicenseRef-scancode-josl-1.0", + "text_urls": [ + "http://code.google.com/p/jabber-net/source/browse/branches/RELEASE_1_0/LICENSE.txt" + ], + "osi_url": "http://www.opensource.org/licenses/jabberpl.php", + "ignorable_copyrights": [ + "Copyright (c) 1999-2000 Jabber.com, Inc.", + "Portions Copyright (c) 1998-1999 Jeremie Miller" + ], + "ignorable_holders": [ + "Jabber.com, Inc.", + "Jeremie Miller" + ], + "ignorable_urls": [ + "http://www.jabber.com/", + "http://www.jabber.com/license/", + "http://www.opensource.org/" + ] +} \ No newline at end of file diff --git a/docs/jpnic-idnkit.LICENSE b/docs/jpnic-idnkit.LICENSE index a58b4eb764..5d41fdf5f2 100644 --- a/docs/jpnic-idnkit.LICENSE +++ b/docs/jpnic-idnkit.LICENSE @@ -1,3 +1,22 @@ +--- +key: jpnic-idnkit +short_name: JPNIC idnkit License +name: JPNIC idnkit License +category: Permissive +owner: JPNIC +homepage_url: https://www.nic.ad.jp/ja/idn/idnkit/download/ +spdx_license_key: JPNIC +text_urls: + - https://dev.w3.org/libwww/modules/idn/LICENSE.txt +other_urls: + - https://gitlab.isc.org/isc-projects/bind9/blob/master/COPYRIGHT#L366 + - https://jprs.co.jp/idn/ +ignorable_copyrights: + - Copyright (c) 2000-2002 Japan Network Information Center +ignorable_holders: + - Japan Network Information Center +--- + By using this file, you agree to the terms and conditions set forth bellow. LICENSE TERMS AND CONDITIONS @@ -35,5 +54,4 @@ Chiyoda-ku, Tokyo 101-0047, Japan. 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 DAMAGES. - + ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/docs/jpnic-idnkit.html b/docs/jpnic-idnkit.html index 4d0743c319..b5c772a46d 100644 --- a/docs/jpnic-idnkit.html +++ b/docs/jpnic-idnkit.html @@ -188,9 +188,7 @@ 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 DAMAGES. - - + ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
@@ -202,7 +200,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jpnic-idnkit.json b/docs/jpnic-idnkit.json index 45c714f934..8dc8fd26c6 100644 --- a/docs/jpnic-idnkit.json +++ b/docs/jpnic-idnkit.json @@ -1 +1,22 @@ -{"key": "jpnic-idnkit", "short_name": "JPNIC idnkit License", "name": "JPNIC idnkit License", "category": "Permissive", "owner": "JPNIC", "homepage_url": "https://www.nic.ad.jp/ja/idn/idnkit/download/", "spdx_license_key": "JPNIC", "text_urls": ["https://dev.w3.org/libwww/modules/idn/LICENSE.txt"], "other_urls": ["https://gitlab.isc.org/isc-projects/bind9/blob/master/COPYRIGHT#L366", "https://jprs.co.jp/idn/"], "ignorable_copyrights": ["Copyright (c) 2000-2002 Japan Network Information Center"], "ignorable_holders": ["Japan Network Information Center"]} \ No newline at end of file +{ + "key": "jpnic-idnkit", + "short_name": "JPNIC idnkit License", + "name": "JPNIC idnkit License", + "category": "Permissive", + "owner": "JPNIC", + "homepage_url": "https://www.nic.ad.jp/ja/idn/idnkit/download/", + "spdx_license_key": "JPNIC", + "text_urls": [ + "https://dev.w3.org/libwww/modules/idn/LICENSE.txt" + ], + "other_urls": [ + "https://gitlab.isc.org/isc-projects/bind9/blob/master/COPYRIGHT#L366", + "https://jprs.co.jp/idn/" + ], + "ignorable_copyrights": [ + "Copyright (c) 2000-2002 Japan Network Information Center" + ], + "ignorable_holders": [ + "Japan Network Information Center" + ] +} \ No newline at end of file diff --git a/docs/jpnic-mdnkit.LICENSE b/docs/jpnic-mdnkit.LICENSE index 70dd205bf3..db1015e68c 100644 --- a/docs/jpnic-mdnkit.LICENSE +++ b/docs/jpnic-mdnkit.LICENSE @@ -1,3 +1,21 @@ +--- +key: jpnic-mdnkit +short_name: JPNIC mdnkit License +name: JPNIC mdnkit License +category: Permissive +owner: JPNIC +homepage_url: https://www.nic.ad.jp/ja/idn/idnkit/download/ +notes: this is essentially the same license as the jpnic-idnkit license with extra terms making + it proprietary +spdx_license_key: LicenseRef-scancode-jpnic-mdnkit +text_urls: + - https://www.nic.ad.jp/ja/idn/mdnkit/download/documents/idnkit-1.0pr1-doc/LICENSE.txt +ignorable_copyrights: + - Copyright (c) Japan Network Information Center +ignorable_holders: + - Japan Network Information Center +--- + By using this file, you agree to the terms and conditions set forth bellow. LICENSE TERMS AND CONDITIONS @@ -50,5 +68,4 @@ Chiyoda-ku, Tokyo 101-0047, Japan. construed in accordance with the law of Japan. Any person or entities using and/or redistributing this Software under this License Terms and Conditions hereby agrees and consent to the personal and exclusive - jurisdiction and venue of Tokyo District Court of Japan. - + jurisdiction and venue of Tokyo District Court of Japan. \ No newline at end of file diff --git a/docs/jpnic-mdnkit.html b/docs/jpnic-mdnkit.html index 178d7f1b02..d5da4918f5 100644 --- a/docs/jpnic-mdnkit.html +++ b/docs/jpnic-mdnkit.html @@ -201,9 +201,7 @@ construed in accordance with the law of Japan. Any person or entities using and/or redistributing this Software under this License Terms and Conditions hereby agrees and consent to the personal and exclusive - jurisdiction and venue of Tokyo District Court of Japan. - - + jurisdiction and venue of Tokyo District Court of Japan.
@@ -215,7 +213,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jpnic-mdnkit.json b/docs/jpnic-mdnkit.json index 7d6191699f..78b3bf321f 100644 --- a/docs/jpnic-mdnkit.json +++ b/docs/jpnic-mdnkit.json @@ -1 +1,19 @@ -{"key": "jpnic-mdnkit", "short_name": "JPNIC mdnkit License", "name": "JPNIC mdnkit License", "category": "Permissive", "owner": "JPNIC", "homepage_url": "https://www.nic.ad.jp/ja/idn/idnkit/download/", "notes": "this is essentially the same license as the jpnic-idnkit license with extra terms making it proprietary", "spdx_license_key": "LicenseRef-scancode-jpnic-mdnkit", "text_urls": ["https://www.nic.ad.jp/ja/idn/mdnkit/download/documents/idnkit-1.0pr1-doc/LICENSE.txt"], "ignorable_copyrights": ["Copyright (c) Japan Network Information Center"], "ignorable_holders": ["Japan Network Information Center"]} \ No newline at end of file +{ + "key": "jpnic-mdnkit", + "short_name": "JPNIC mdnkit License", + "name": "JPNIC mdnkit License", + "category": "Permissive", + "owner": "JPNIC", + "homepage_url": "https://www.nic.ad.jp/ja/idn/idnkit/download/", + "notes": "this is essentially the same license as the jpnic-idnkit license with extra terms making it proprietary", + "spdx_license_key": "LicenseRef-scancode-jpnic-mdnkit", + "text_urls": [ + "https://www.nic.ad.jp/ja/idn/mdnkit/download/documents/idnkit-1.0pr1-doc/LICENSE.txt" + ], + "ignorable_copyrights": [ + "Copyright (c) Japan Network Information Center" + ], + "ignorable_holders": [ + "Japan Network Information Center" + ] +} \ No newline at end of file diff --git a/docs/jprs-oscl-1.1.LICENSE b/docs/jprs-oscl-1.1.LICENSE index 566f50b6a6..fbdc87de97 100644 --- a/docs/jprs-oscl-1.1.LICENSE +++ b/docs/jprs-oscl-1.1.LICENSE @@ -1,3 +1,24 @@ +--- +key: jprs-oscl-1.1 +short_name: JPRS OSCL 1.1 +name: JPRS Open Source Code License v1.1 +category: Free Restricted +owner: JPRS +homepage_url: https://jprs.co.jp/idn/idnkit2-OSCL.txt +spdx_license_key: LicenseRef-scancode-jprs-oscl-1.1 +text_urls: + - https://jprs.co.jp/idn/idnkit2-OSCL.txt +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 2000-2002 Japan Network Information Center + - Copyright (c) 2010-2012 Japan Registry Services Co., Ltd. +ignorable_holders: + - Japan Network Information Center + - Japan Registry Services Co., Ltd. +ignorable_urls: + - http://jprs.co.jp/idn/ +--- + TERMS AND CONDITIONS FOR OPEN SOURCE CODE LICENSE @@ -178,4 +199,4 @@ file, please indicate your decision by deleting the relevant provisions above and replacing them with the notice and other provisions required by the above License(s). If you do not delete the relevant provisions, a recipient may use your version of this file under either the above -License(s). +License(s). \ No newline at end of file diff --git a/docs/jprs-oscl-1.1.html b/docs/jprs-oscl-1.1.html index 0409c0d0f5..39d0eaf5f0 100644 --- a/docs/jprs-oscl-1.1.html +++ b/docs/jprs-oscl-1.1.html @@ -338,8 +338,7 @@ above and replacing them with the notice and other provisions required by the above License(s). If you do not delete the relevant provisions, a recipient may use your version of this file under either the above -License(s). - +License(s).
@@ -351,7 +350,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jprs-oscl-1.1.json b/docs/jprs-oscl-1.1.json index 56fbd598da..e2de9d6b88 100644 --- a/docs/jprs-oscl-1.1.json +++ b/docs/jprs-oscl-1.1.json @@ -1 +1,24 @@ -{"key": "jprs-oscl-1.1", "short_name": "JPRS OSCL 1.1", "name": "JPRS Open Source Code License v1.1", "category": "Free Restricted", "owner": "JPRS", "homepage_url": "https://jprs.co.jp/idn/idnkit2-OSCL.txt", "spdx_license_key": "LicenseRef-scancode-jprs-oscl-1.1", "text_urls": ["https://jprs.co.jp/idn/idnkit2-OSCL.txt"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright (c) 2000-2002 Japan Network Information Center", "Copyright (c) 2010-2012 Japan Registry Services Co., Ltd."], "ignorable_holders": ["Japan Network Information Center", "Japan Registry Services Co., Ltd."], "ignorable_urls": ["http://jprs.co.jp/idn/"]} \ No newline at end of file +{ + "key": "jprs-oscl-1.1", + "short_name": "JPRS OSCL 1.1", + "name": "JPRS Open Source Code License v1.1", + "category": "Free Restricted", + "owner": "JPRS", + "homepage_url": "https://jprs.co.jp/idn/idnkit2-OSCL.txt", + "spdx_license_key": "LicenseRef-scancode-jprs-oscl-1.1", + "text_urls": [ + "https://jprs.co.jp/idn/idnkit2-OSCL.txt" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright (c) 2000-2002 Japan Network Information Center", + "Copyright (c) 2010-2012 Japan Registry Services Co., Ltd." + ], + "ignorable_holders": [ + "Japan Network Information Center", + "Japan Registry Services Co., Ltd." + ], + "ignorable_urls": [ + "http://jprs.co.jp/idn/" + ] +} \ No newline at end of file diff --git a/docs/jpython-1.1.LICENSE b/docs/jpython-1.1.LICENSE index 09f0c6dc10..e2ebf465c2 100644 --- a/docs/jpython-1.1.LICENSE +++ b/docs/jpython-1.1.LICENSE @@ -1,3 +1,22 @@ +--- +key: jpython-1.1 +short_name: JPython 1.1 +name: JPython License 1.1 +category: Permissive +owner: Python Software Foundation (PSF) +homepage_url: http://www.jython.org/license.html +spdx_license_key: LicenseRef-scancode-jpython-1.1 +text_urls: + - http://www.jython.org/license.html +faq_url: http://wiki.python.org/jython/JythonFaq/GeneralInfo +ignorable_copyrights: + - Copyright (c) 1996-1999 Corporation for National Research Initiatives +ignorable_holders: + - Corporation for National Research Initiatives +ignorable_urls: + - http://hdl.handle.net/1895.22/1006 +--- + JPython version 1.1.x 1. This LICENSE AGREEMENT is between the Corporation for National Research diff --git a/docs/jpython-1.1.html b/docs/jpython-1.1.html index b0460b02e4..a660c20245 100644 --- a/docs/jpython-1.1.html +++ b/docs/jpython-1.1.html @@ -240,7 +240,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jpython-1.1.json b/docs/jpython-1.1.json index 9329a905c6..17de43dca6 100644 --- a/docs/jpython-1.1.json +++ b/docs/jpython-1.1.json @@ -1 +1,22 @@ -{"key": "jpython-1.1", "short_name": "JPython 1.1", "name": "JPython License 1.1", "category": "Permissive", "owner": "Python Software Foundation (PSF)", "homepage_url": "http://www.jython.org/license.html", "spdx_license_key": "LicenseRef-scancode-jpython-1.1", "text_urls": ["http://www.jython.org/license.html"], "faq_url": "http://wiki.python.org/jython/JythonFaq/GeneralInfo", "ignorable_copyrights": ["Copyright (c) 1996-1999 Corporation for National Research Initiatives"], "ignorable_holders": ["Corporation for National Research Initiatives"], "ignorable_urls": ["http://hdl.handle.net/1895.22/1006"]} \ No newline at end of file +{ + "key": "jpython-1.1", + "short_name": "JPython 1.1", + "name": "JPython License 1.1", + "category": "Permissive", + "owner": "Python Software Foundation (PSF)", + "homepage_url": "http://www.jython.org/license.html", + "spdx_license_key": "LicenseRef-scancode-jpython-1.1", + "text_urls": [ + "http://www.jython.org/license.html" + ], + "faq_url": "http://wiki.python.org/jython/JythonFaq/GeneralInfo", + "ignorable_copyrights": [ + "Copyright (c) 1996-1999 Corporation for National Research Initiatives" + ], + "ignorable_holders": [ + "Corporation for National Research Initiatives" + ], + "ignorable_urls": [ + "http://hdl.handle.net/1895.22/1006" + ] +} \ No newline at end of file diff --git a/docs/jquery-pd.LICENSE b/docs/jquery-pd.LICENSE index 65b252c0e6..cf462552b6 100644 --- a/docs/jquery-pd.LICENSE +++ b/docs/jquery-pd.LICENSE @@ -1,3 +1,13 @@ +--- +key: jquery-pd +short_name: jQuery-Tools-PD +name: jQuery Tools Public Domain License +category: Public Domain +owner: jQuery Project +homepage_url: https://jquerytools.github.io/release-notes/ +spdx_license_key: LicenseRef-scancode-jquery-pd +--- + jQuery Public Domain License NO COPYRIGHTS OR LICENSES. DO WHAT YOU LIKE. This is the new jQuery Tools license. Copyrights and patents are evil. They block the natural progress of development. We all know it: if people start sharing instead of owning the world would be a better place. Today money is king. This results in closed systems and poor quality and in many cases people are even seriously exploited. For businessmen nothing is enough. \ No newline at end of file diff --git a/docs/jquery-pd.html b/docs/jquery-pd.html index 67a0131984..32142084c9 100644 --- a/docs/jquery-pd.html +++ b/docs/jquery-pd.html @@ -129,7 +129,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jquery-pd.json b/docs/jquery-pd.json index 8b4769ac4f..bd46ab103a 100644 --- a/docs/jquery-pd.json +++ b/docs/jquery-pd.json @@ -1 +1,9 @@ -{"key": "jquery-pd", "short_name": "jQuery-Tools-PD", "name": "jQuery Tools Public Domain License", "category": "Public Domain", "owner": "jQuery Project", "homepage_url": "https://jquerytools.github.io/release-notes/", "spdx_license_key": "LicenseRef-scancode-jquery-pd"} \ No newline at end of file +{ + "key": "jquery-pd", + "short_name": "jQuery-Tools-PD", + "name": "jQuery Tools Public Domain License", + "category": "Public Domain", + "owner": "jQuery Project", + "homepage_url": "https://jquerytools.github.io/release-notes/", + "spdx_license_key": "LicenseRef-scancode-jquery-pd" +} \ No newline at end of file diff --git a/docs/jrunner.LICENSE b/docs/jrunner.LICENSE index e8da5b35dd..fc3891f04b 100644 --- a/docs/jrunner.LICENSE +++ b/docs/jrunner.LICENSE @@ -1,3 +1,17 @@ +--- +key: jrunner +short_name: JRunner License +name: JRunner Software License +category: Proprietary Free +owner: Altera Corporation +homepage_url: https://www.altera.com/download/licensing/lic-jrunner.html +spdx_license_key: LicenseRef-scancode-jrunner +text_urls: + - https://www.altera.com/download/licensing/lic-jrunner.html +ignorable_urls: + - https://www.altera.com/download/licensing/lic-jrunner.html +--- + JRunner Software License https://www.altera.com/download/licensing/lic-jrunner.html diff --git a/docs/jrunner.html b/docs/jrunner.html index 3ed7ff3e19..b770b32e71 100644 --- a/docs/jrunner.html +++ b/docs/jrunner.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jrunner.json b/docs/jrunner.json index b606e1d2ad..23ab12aa7c 100644 --- a/docs/jrunner.json +++ b/docs/jrunner.json @@ -1 +1,15 @@ -{"key": "jrunner", "short_name": "JRunner License", "name": "JRunner Software License", "category": "Proprietary Free", "owner": "Altera Corporation", "homepage_url": "https://www.altera.com/download/licensing/lic-jrunner.html", "spdx_license_key": "LicenseRef-scancode-jrunner", "text_urls": ["https://www.altera.com/download/licensing/lic-jrunner.html"], "ignorable_urls": ["https://www.altera.com/download/licensing/lic-jrunner.html"]} \ No newline at end of file +{ + "key": "jrunner", + "short_name": "JRunner License", + "name": "JRunner Software License", + "category": "Proprietary Free", + "owner": "Altera Corporation", + "homepage_url": "https://www.altera.com/download/licensing/lic-jrunner.html", + "spdx_license_key": "LicenseRef-scancode-jrunner", + "text_urls": [ + "https://www.altera.com/download/licensing/lic-jrunner.html" + ], + "ignorable_urls": [ + "https://www.altera.com/download/licensing/lic-jrunner.html" + ] +} \ No newline at end of file diff --git a/docs/jscheme.LICENSE b/docs/jscheme.LICENSE index f6977ff8a4..9c3667f834 100644 --- a/docs/jscheme.LICENSE +++ b/docs/jscheme.LICENSE @@ -1,3 +1,15 @@ +--- +key: jscheme +short_name: Jscheme License +name: Jscheme License +category: Permissive +owner: Peter Norvig +homepage_url: https://norvig.com/license.html +spdx_license_key: LicenseRef-scancode-jscheme +ignorable_emails: + - peter@norvig.com +--- + Permission is granted to anyone to use this software, in source or object code form, on any computer system, and to modify, compile, decompile, run, and redistribute it to anyone else, subject to the following restrictions: 1. The author makes no warranty of any kind, either expressed or implied, about the suitability of this software for any purpose. diff --git a/docs/jscheme.html b/docs/jscheme.html index 7e5cb9792a..1ddb35ff2f 100644 --- a/docs/jscheme.html +++ b/docs/jscheme.html @@ -146,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jscheme.json b/docs/jscheme.json index fdb4e45432..f753f677ad 100644 --- a/docs/jscheme.json +++ b/docs/jscheme.json @@ -1 +1,12 @@ -{"key": "jscheme", "short_name": "Jscheme License", "name": "Jscheme License", "category": "Permissive", "owner": "Peter Norvig", "homepage_url": "https://norvig.com/license.html", "spdx_license_key": "LicenseRef-scancode-jscheme", "ignorable_emails": ["peter@norvig.com"]} \ No newline at end of file +{ + "key": "jscheme", + "short_name": "Jscheme License", + "name": "Jscheme License", + "category": "Permissive", + "owner": "Peter Norvig", + "homepage_url": "https://norvig.com/license.html", + "spdx_license_key": "LicenseRef-scancode-jscheme", + "ignorable_emails": [ + "peter@norvig.com" + ] +} \ No newline at end of file diff --git a/docs/jsfromhell.LICENSE b/docs/jsfromhell.LICENSE index cd1478b57c..c8b6945df2 100644 --- a/docs/jsfromhell.LICENSE +++ b/docs/jsfromhell.LICENSE @@ -1,2 +1,12 @@ +--- +key: jsfromhell +short_name: JSFromHell License +name: JSFromHell License +category: Permissive +owner: JSFromHell +homepage_url: http://jsfromhell.com/ +spdx_license_key: LicenseRef-scancode-jsfromhell +--- + Copyright We authorize the copy and modification of all the codes on the site, since the original author credits are kept. \ No newline at end of file diff --git a/docs/jsfromhell.html b/docs/jsfromhell.html index 51139e38d6..25648ca387 100644 --- a/docs/jsfromhell.html +++ b/docs/jsfromhell.html @@ -128,7 +128,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jsfromhell.json b/docs/jsfromhell.json index 85cacead46..25e022566e 100644 --- a/docs/jsfromhell.json +++ b/docs/jsfromhell.json @@ -1 +1,9 @@ -{"key": "jsfromhell", "short_name": "JSFromHell License", "name": "JSFromHell License", "category": "Permissive", "owner": "JSFromHell", "homepage_url": "http://jsfromhell.com/", "spdx_license_key": "LicenseRef-scancode-jsfromhell"} \ No newline at end of file +{ + "key": "jsfromhell", + "short_name": "JSFromHell License", + "name": "JSFromHell License", + "category": "Permissive", + "owner": "JSFromHell", + "homepage_url": "http://jsfromhell.com/", + "spdx_license_key": "LicenseRef-scancode-jsfromhell" +} \ No newline at end of file diff --git a/docs/json-js-pd.LICENSE b/docs/json-js-pd.LICENSE index 8c2cf75780..7091ce01c2 100644 --- a/docs/json-js-pd.LICENSE +++ b/docs/json-js-pd.LICENSE @@ -1,7 +1,23 @@ +--- +key: json-js-pd +short_name: JSON-js-PD +name: JSON-js Public Domain Notice +category: Public Domain +owner: JSON.org +homepage_url: https://github.com/douglascrockford/JSON-js +spdx_license_key: LicenseRef-scancode-json-js-pd +text_urls: + - https://github.com/douglascrockford/JSON-js +faq_url: http://www.JSON.org/js.html +ignorable_urls: + - http://www.json.org/js.html + - http://www.json.org/json2.js +--- + Public Domain No warranty expressed or implied. Use at your own risk. This file has been superceded by http://www.JSON.org/json2.js -See http://www.JSON.org/js.html +See http://www.JSON.org/js.html \ No newline at end of file diff --git a/docs/json-js-pd.html b/docs/json-js-pd.html index e0aa7774b1..6a43e974ff 100644 --- a/docs/json-js-pd.html +++ b/docs/json-js-pd.html @@ -146,8 +146,7 @@ This file has been superceded by http://www.JSON.org/json2.js -See http://www.JSON.org/js.html - +See http://www.JSON.org/js.html
@@ -159,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/json-js-pd.json b/docs/json-js-pd.json index 2737709c11..481ea43fa2 100644 --- a/docs/json-js-pd.json +++ b/docs/json-js-pd.json @@ -1 +1,17 @@ -{"key": "json-js-pd", "short_name": "JSON-js-PD", "name": "JSON-js Public Domain Notice", "category": "Public Domain", "owner": "JSON.org", "homepage_url": "https://github.com/douglascrockford/JSON-js", "spdx_license_key": "LicenseRef-scancode-json-js-pd", "text_urls": ["https://github.com/douglascrockford/JSON-js"], "faq_url": "http://www.JSON.org/js.html", "ignorable_urls": ["http://www.json.org/js.html", "http://www.json.org/json2.js"]} \ No newline at end of file +{ + "key": "json-js-pd", + "short_name": "JSON-js-PD", + "name": "JSON-js Public Domain Notice", + "category": "Public Domain", + "owner": "JSON.org", + "homepage_url": "https://github.com/douglascrockford/JSON-js", + "spdx_license_key": "LicenseRef-scancode-json-js-pd", + "text_urls": [ + "https://github.com/douglascrockford/JSON-js" + ], + "faq_url": "http://www.JSON.org/js.html", + "ignorable_urls": [ + "http://www.json.org/js.html", + "http://www.json.org/json2.js" + ] +} \ No newline at end of file diff --git a/docs/json-pd.LICENSE b/docs/json-pd.LICENSE index b3c378c2c6..fd3cd69388 100644 --- a/docs/json-pd.LICENSE +++ b/docs/json-pd.LICENSE @@ -1,3 +1,19 @@ +--- +key: json-pd +short_name: JSON-PD +name: JSON Public Domain Notice +category: Public Domain +owner: JSON.org +homepage_url: http://www.json.org/js.html +spdx_license_key: LicenseRef-scancode-json-pd +faq_url: http://www.json.org/js.html +other_urls: + - http://javascript.crockford.com/jsmin.html +ignorable_urls: + - http://javascript.crockford.com/jsmin.html + - http://www.json.org/js.html +--- + Public Domain. NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. diff --git a/docs/json-pd.html b/docs/json-pd.html index e22ac59525..5eeb2814bf 100644 --- a/docs/json-pd.html +++ b/docs/json-pd.html @@ -161,7 +161,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/json-pd.json b/docs/json-pd.json index 045d1fbe2f..b8edf4183c 100644 --- a/docs/json-pd.json +++ b/docs/json-pd.json @@ -1 +1,17 @@ -{"key": "json-pd", "short_name": "JSON-PD", "name": "JSON Public Domain Notice", "category": "Public Domain", "owner": "JSON.org", "homepage_url": "http://www.json.org/js.html", "spdx_license_key": "LicenseRef-scancode-json-pd", "faq_url": "http://www.json.org/js.html", "other_urls": ["http://javascript.crockford.com/jsmin.html"], "ignorable_urls": ["http://javascript.crockford.com/jsmin.html", "http://www.json.org/js.html"]} \ No newline at end of file +{ + "key": "json-pd", + "short_name": "JSON-PD", + "name": "JSON Public Domain Notice", + "category": "Public Domain", + "owner": "JSON.org", + "homepage_url": "http://www.json.org/js.html", + "spdx_license_key": "LicenseRef-scancode-json-pd", + "faq_url": "http://www.json.org/js.html", + "other_urls": [ + "http://javascript.crockford.com/jsmin.html" + ], + "ignorable_urls": [ + "http://javascript.crockford.com/jsmin.html", + "http://www.json.org/js.html" + ] +} \ No newline at end of file diff --git a/docs/json.LICENSE b/docs/json.LICENSE index bada3096ef..ab7d033c38 100644 --- a/docs/json.LICENSE +++ b/docs/json.LICENSE @@ -1,3 +1,18 @@ +--- +key: json +short_name: JSON License +name: JSON License +category: Permissive +owner: JSON.org +homepage_url: http://www.json.org/license.html +spdx_license_key: JSON +text_urls: + - http://www.json.org/license.html +other_urls: + - http://www.gnu.org/licenses/license-list.html#JSON +minimum_coverage: 70 +--- + 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 @@ -17,4 +32,4 @@ 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. +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/docs/json.html b/docs/json.html index 44548d4582..8bbc75d68c 100644 --- a/docs/json.html +++ b/docs/json.html @@ -159,8 +159,7 @@ 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. - +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -172,7 +171,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/json.json b/docs/json.json index fe33195a50..45ada571be 100644 --- a/docs/json.json +++ b/docs/json.json @@ -1 +1,16 @@ -{"key": "json", "short_name": "JSON License", "name": "JSON License", "category": "Permissive", "owner": "JSON.org", "homepage_url": "http://www.json.org/license.html", "spdx_license_key": "JSON", "text_urls": ["http://www.json.org/license.html"], "other_urls": ["http://www.gnu.org/licenses/license-list.html#JSON"], "minimum_coverage": 70} \ No newline at end of file +{ + "key": "json", + "short_name": "JSON License", + "name": "JSON License", + "category": "Permissive", + "owner": "JSON.org", + "homepage_url": "http://www.json.org/license.html", + "spdx_license_key": "JSON", + "text_urls": [ + "http://www.json.org/license.html" + ], + "other_urls": [ + "http://www.gnu.org/licenses/license-list.html#JSON" + ], + "minimum_coverage": 70 +} \ No newline at end of file diff --git a/docs/jsr-107-jcache-spec-2013.LICENSE b/docs/jsr-107-jcache-spec-2013.LICENSE index 2945ab29cf..6b6d5d59b6 100644 --- a/docs/jsr-107-jcache-spec-2013.LICENSE +++ b/docs/jsr-107-jcache-spec-2013.LICENSE @@ -1,3 +1,25 @@ +--- +key: jsr-107-jcache-spec-2013 +short_name: JSR-107 JCache Specification 2013 License +name: JSR-107 JCache Specification 2013 License +category: Proprietary Free +owner: Oracle Corporation +homepage_url: https://github.com/jsr107/jsr107spec/blob/v1.0.0-PFD/LICENSE.txt +notes: the license for the API has since changed in 2016 to Apache-2.0 after several intermediate + changes. See https://github.com/jsr107/jsr107spec/commits/master/LICENSE.txt for details. + This is an old spec license likely still current. +spdx_license_key: LicenseRef-scancode-jsr-107-jcache-spec-2013 +other_urls: + - https://github.com/jsr107/jsr107spec/commits/master/LICENSE.txt +minimum_coverage: 96 +ignorable_copyrights: + - Copyright 2013 ORACLE America, Inc. and Greg Luck 4150 Network Circle, Santa Clara, California + 95054, U.S.A +ignorable_holders: + - ORACLE America, Inc. and Greg Luck 4150 Network Circle, Santa Clara, California 95054, + U.S.A +--- + JSR-000107 JCACHE 2.9 Public Review - Updated Specification ORACLE AND GREG LUCK ARE WILLING TO LICENSE THIS SPECIFICATION TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS LICENSE AGREEMENT ("AGREEMENT"). PLEASE READ THE TERMS AND CONDITIONS OF THIS AGREEMENT CAREFULLY. BY DOWNLOADING THIS SPECIFICATION, YOU ACCEPT THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY THEM, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THIS PAGE AND THE DOWNLOADING PROCESS WILL NOT CONTINUE. diff --git a/docs/jsr-107-jcache-spec-2013.html b/docs/jsr-107-jcache-spec-2013.html index 8a21e3dfc6..07e9e8fd93 100644 --- a/docs/jsr-107-jcache-spec-2013.html +++ b/docs/jsr-107-jcache-spec-2013.html @@ -214,7 +214,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jsr-107-jcache-spec-2013.json b/docs/jsr-107-jcache-spec-2013.json index 672cbac9c7..cc3b3c37e3 100644 --- a/docs/jsr-107-jcache-spec-2013.json +++ b/docs/jsr-107-jcache-spec-2013.json @@ -1 +1,20 @@ -{"key": "jsr-107-jcache-spec-2013", "short_name": "JSR-107 JCache Specification 2013 License", "name": "JSR-107 JCache Specification 2013 License", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "https://github.com/jsr107/jsr107spec/blob/v1.0.0-PFD/LICENSE.txt", "notes": "the license for the API has since changed in 2016 to Apache-2.0 after several intermediate changes. See https://github.com/jsr107/jsr107spec/commits/master/LICENSE.txt for details. This is an old spec license likely still current.", "spdx_license_key": "LicenseRef-scancode-jsr-107-jcache-spec-2013", "other_urls": ["https://github.com/jsr107/jsr107spec/commits/master/LICENSE.txt"], "minimum_coverage": 96, "ignorable_copyrights": ["Copyright 2013 ORACLE America, Inc. and Greg Luck 4150 Network Circle, Santa Clara, California 95054, U.S.A"], "ignorable_holders": ["ORACLE America, Inc. and Greg Luck 4150 Network Circle, Santa Clara, California 95054, U.S.A"]} \ No newline at end of file +{ + "key": "jsr-107-jcache-spec-2013", + "short_name": "JSR-107 JCache Specification 2013 License", + "name": "JSR-107 JCache Specification 2013 License", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "https://github.com/jsr107/jsr107spec/blob/v1.0.0-PFD/LICENSE.txt", + "notes": "the license for the API has since changed in 2016 to Apache-2.0 after several intermediate changes. See https://github.com/jsr107/jsr107spec/commits/master/LICENSE.txt for details. This is an old spec license likely still current.", + "spdx_license_key": "LicenseRef-scancode-jsr-107-jcache-spec-2013", + "other_urls": [ + "https://github.com/jsr107/jsr107spec/commits/master/LICENSE.txt" + ], + "minimum_coverage": 96, + "ignorable_copyrights": [ + "Copyright 2013 ORACLE America, Inc. and Greg Luck 4150 Network Circle, Santa Clara, California 95054, U.S.A" + ], + "ignorable_holders": [ + "ORACLE America, Inc. and Greg Luck 4150 Network Circle, Santa Clara, California 95054, U.S.A" + ] +} \ No newline at end of file diff --git a/docs/jsr-107-jcache-spec.LICENSE b/docs/jsr-107-jcache-spec.LICENSE index d8b5ff7315..7826ddd4f7 100644 --- a/docs/jsr-107-jcache-spec.LICENSE +++ b/docs/jsr-107-jcache-spec.LICENSE @@ -1,3 +1,21 @@ +--- +key: jsr-107-jcache-spec +short_name: JSR-107 JCache Specification License +name: JSR-107 JCache Specification License +category: Proprietary Free +owner: Oracle Corporation +homepage_url: https://github.com/jsr107/jsr107spec/blob/master/LICENSE.txt +notes: the license for the API has since changed in 2016 to Apache-2.0 after several intermediate + changes. See https://github.com/jsr107/jsr107spec/commits/master/LICENSE.txt for details. + This is an old spec license likely still current. +spdx_license_key: LicenseRef-scancode-jsr-107-jcache-spec +minimum_coverage: 96 +ignorable_copyrights: + - Copyright 2015 Oracle America, Inc. and Greg Luck +ignorable_holders: + - Oracle America, Inc. and Greg Luck +--- + JSR-000107 JavaTM Temporary Caching API Maintenance Release 1 ORACLE AMERICA, INC. AND GREG LUCK, SPECIFICATION LEADS, ARE WILLING TO LICENSE THIS SPECIFICATION TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS AGREEMENT. PLEASE READ THE TERMS AND CONDITIONS OF THIS AGREEMENT CAREFULLY. BY DOWNLOADING THIS SPECIFICATION, YOU ACCEPT THE TERMS AND CONDITIONS OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY IT, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THIS PAGE. diff --git a/docs/jsr-107-jcache-spec.html b/docs/jsr-107-jcache-spec.html index b5fe9a2119..6467f75152 100644 --- a/docs/jsr-107-jcache-spec.html +++ b/docs/jsr-107-jcache-spec.html @@ -222,7 +222,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jsr-107-jcache-spec.json b/docs/jsr-107-jcache-spec.json index c99fdb2e1e..9e8e470db5 100644 --- a/docs/jsr-107-jcache-spec.json +++ b/docs/jsr-107-jcache-spec.json @@ -1 +1,17 @@ -{"key": "jsr-107-jcache-spec", "short_name": "JSR-107 JCache Specification License", "name": "JSR-107 JCache Specification License", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "https://github.com/jsr107/jsr107spec/blob/master/LICENSE.txt", "notes": "the license for the API has since changed in 2016 to Apache-2.0 after several intermediate changes. See https://github.com/jsr107/jsr107spec/commits/master/LICENSE.txt for details. This is an old spec license likely still current.", "spdx_license_key": "LicenseRef-scancode-jsr-107-jcache-spec", "minimum_coverage": 96, "ignorable_copyrights": ["Copyright 2015 Oracle America, Inc. and Greg Luck"], "ignorable_holders": ["Oracle America, Inc. and Greg Luck"]} \ No newline at end of file +{ + "key": "jsr-107-jcache-spec", + "short_name": "JSR-107 JCache Specification License", + "name": "JSR-107 JCache Specification License", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "https://github.com/jsr107/jsr107spec/blob/master/LICENSE.txt", + "notes": "the license for the API has since changed in 2016 to Apache-2.0 after several intermediate changes. See https://github.com/jsr107/jsr107spec/commits/master/LICENSE.txt for details. This is an old spec license likely still current.", + "spdx_license_key": "LicenseRef-scancode-jsr-107-jcache-spec", + "minimum_coverage": 96, + "ignorable_copyrights": [ + "Copyright 2015 Oracle America, Inc. and Greg Luck" + ], + "ignorable_holders": [ + "Oracle America, Inc. and Greg Luck" + ] +} \ No newline at end of file diff --git a/docs/jython.LICENSE b/docs/jython.LICENSE index 1cb1063237..55ac857dbb 100644 --- a/docs/jython.LICENSE +++ b/docs/jython.LICENSE @@ -1,3 +1,30 @@ +--- +key: jython +short_name: Jython License +name: Jython License +category: Permissive +owner: Python Software Foundation (PSF) +homepage_url: http://www.jython.org/license.txt +notes: this is a complex composite of multiple licenses +spdx_license_key: LicenseRef-scancode-jython +text_urls: + - http://www.jython.org/license.txt +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 1996-1999 Corporation for National Research Initiatives + - Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Jython Developers + - Copyright (c) 2007 Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Jython Developers + - Python Software Foundation +ignorable_authors: + - Brian Zimmer +ignorable_urls: + - http://hdl.handle.net/1895.22/1006 + - http://www.jython.org/license.txt +--- + Jython License http://www.jython.org/license.txt diff --git a/docs/jython.html b/docs/jython.html index 2e63e44039..44281e1b1b 100644 --- a/docs/jython.html +++ b/docs/jython.html @@ -375,7 +375,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/jython.json b/docs/jython.json index 3ba32ffb17..4817d538fd 100644 --- a/docs/jython.json +++ b/docs/jython.json @@ -1 +1,31 @@ -{"key": "jython", "short_name": "Jython License", "name": "Jython License", "category": "Permissive", "owner": "Python Software Foundation (PSF)", "homepage_url": "http://www.jython.org/license.txt", "notes": "this is a complex composite of multiple licenses", "spdx_license_key": "LicenseRef-scancode-jython", "text_urls": ["http://www.jython.org/license.txt"], "minimum_coverage": 80, "ignorable_copyrights": ["Copyright (c) 1996-1999 Corporation for National Research Initiatives", "Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Jython Developers", "Copyright (c) 2007 Python Software Foundation"], "ignorable_holders": ["Corporation for National Research Initiatives", "Jython Developers", "Python Software Foundation"], "ignorable_authors": ["Brian Zimmer"], "ignorable_urls": ["http://hdl.handle.net/1895.22/1006", "http://www.jython.org/license.txt"]} \ No newline at end of file +{ + "key": "jython", + "short_name": "Jython License", + "name": "Jython License", + "category": "Permissive", + "owner": "Python Software Foundation (PSF)", + "homepage_url": "http://www.jython.org/license.txt", + "notes": "this is a complex composite of multiple licenses", + "spdx_license_key": "LicenseRef-scancode-jython", + "text_urls": [ + "http://www.jython.org/license.txt" + ], + "minimum_coverage": 80, + "ignorable_copyrights": [ + "Copyright (c) 1996-1999 Corporation for National Research Initiatives", + "Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Jython Developers", + "Copyright (c) 2007 Python Software Foundation" + ], + "ignorable_holders": [ + "Corporation for National Research Initiatives", + "Jython Developers", + "Python Software Foundation" + ], + "ignorable_authors": [ + "Brian Zimmer" + ], + "ignorable_urls": [ + "http://hdl.handle.net/1895.22/1006", + "http://www.jython.org/license.txt" + ] +} \ No newline at end of file diff --git a/docs/kalle-kaukonen.LICENSE b/docs/kalle-kaukonen.LICENSE index add55259d7..1a96a01503 100644 --- a/docs/kalle-kaukonen.LICENSE +++ b/docs/kalle-kaukonen.LICENSE @@ -1,3 +1,15 @@ +--- +key: kalle-kaukonen +short_name: Kalle Kaukonen License +name: Kalle Kaukonen License +category: Permissive +owner: Kalle Kaukonen +spdx_license_key: LicenseRef-scancode-kalle-kaukonen +other_urls: + - http://files.support.epson.com/htmldocs/wfp4090/wfp4090ug/source/printers/source/notices/reference/copyright_ps_pcl.html + - https://launchpad.net/ubuntu/oneiric/+source/mupdf/+copyright +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that this copyright notice and disclaimer are retained. @@ -10,4 +22,4 @@ DIRECTI, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/kalle-kaukonen.html b/docs/kalle-kaukonen.html index 60728f277e..7fb10403d6 100644 --- a/docs/kalle-kaukonen.html +++ b/docs/kalle-kaukonen.html @@ -129,8 +129,7 @@ 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. - +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -142,7 +141,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/kalle-kaukonen.json b/docs/kalle-kaukonen.json index 956fc03f63..468c2a8862 100644 --- a/docs/kalle-kaukonen.json +++ b/docs/kalle-kaukonen.json @@ -1 +1,12 @@ -{"key": "kalle-kaukonen", "short_name": "Kalle Kaukonen License", "name": "Kalle Kaukonen License", "category": "Permissive", "owner": "Kalle Kaukonen", "spdx_license_key": "LicenseRef-scancode-kalle-kaukonen", "other_urls": ["http://files.support.epson.com/htmldocs/wfp4090/wfp4090ug/source/printers/source/notices/reference/copyright_ps_pcl.html", "https://launchpad.net/ubuntu/oneiric/+source/mupdf/+copyright"]} \ No newline at end of file +{ + "key": "kalle-kaukonen", + "short_name": "Kalle Kaukonen License", + "name": "Kalle Kaukonen License", + "category": "Permissive", + "owner": "Kalle Kaukonen", + "spdx_license_key": "LicenseRef-scancode-kalle-kaukonen", + "other_urls": [ + "http://files.support.epson.com/htmldocs/wfp4090/wfp4090ug/source/printers/source/notices/reference/copyright_ps_pcl.html", + "https://launchpad.net/ubuntu/oneiric/+source/mupdf/+copyright" + ] +} \ No newline at end of file diff --git a/docs/karl-peterson.LICENSE b/docs/karl-peterson.LICENSE index e1ad3328d2..796811b9f0 100644 --- a/docs/karl-peterson.LICENSE +++ b/docs/karl-peterson.LICENSE @@ -1,3 +1,15 @@ +--- +key: karl-peterson +short_name: Karl Peterson License +name: Karl Peterson License +category: Free Restricted +owner: Karl Peterson +homepage_url: http://www.mvps.org/vb +spdx_license_key: LicenseRef-scancode-karl-peterson +other_urls: + - http://www.mvps.org/vb +--- + You are free to use this code within your own applications, but you are expressly forbidden from selling or otherwise distributing this source code without prior written consent. \ No newline at end of file diff --git a/docs/karl-peterson.html b/docs/karl-peterson.html index 5d09f5c0b5..0d2b6555cd 100644 --- a/docs/karl-peterson.html +++ b/docs/karl-peterson.html @@ -138,7 +138,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/karl-peterson.json b/docs/karl-peterson.json index 05ba9d6d76..e257048446 100644 --- a/docs/karl-peterson.json +++ b/docs/karl-peterson.json @@ -1 +1,12 @@ -{"key": "karl-peterson", "short_name": "Karl Peterson License", "name": "Karl Peterson License", "category": "Free Restricted", "owner": "Karl Peterson", "homepage_url": "http://www.mvps.org/vb", "spdx_license_key": "LicenseRef-scancode-karl-peterson", "other_urls": ["http://www.mvps.org/vb"]} \ No newline at end of file +{ + "key": "karl-peterson", + "short_name": "Karl Peterson License", + "name": "Karl Peterson License", + "category": "Free Restricted", + "owner": "Karl Peterson", + "homepage_url": "http://www.mvps.org/vb", + "spdx_license_key": "LicenseRef-scancode-karl-peterson", + "other_urls": [ + "http://www.mvps.org/vb" + ] +} \ No newline at end of file diff --git a/docs/katharos-0.1.0.LICENSE b/docs/katharos-0.1.0.LICENSE index a91c4d6261..7f3b0ba09d 100644 --- a/docs/katharos-0.1.0.LICENSE +++ b/docs/katharos-0.1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: katharos-0.1.0 +short_name: Katharos License v0.1.0 +name: Katharos License v0.1.0 +category: Proprietary Free +owner: Katharos Technology +homepage_url: https://github.com/katharostech/katharos-license/tree/v0.1.0 +spdx_license_key: LicenseRef-scancode-katharos-0.1.0 +text_urls: + - https://github.com/katharostech/katharos-license/blob/v0.1.0/LICENSE.md +ignorable_urls: + - https://firstdonoharm.dev/version/2/1/license.html + - https://github.com/raisely/NoHarm + - https://spdx.org/licenses/BSD-3-Clause.html +--- + # The Katharos License v0.1.0 ## Preamble diff --git a/docs/katharos-0.1.0.html b/docs/katharos-0.1.0.html index 1b23c48658..544494ab07 100644 --- a/docs/katharos-0.1.0.html +++ b/docs/katharos-0.1.0.html @@ -244,7 +244,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/katharos-0.1.0.json b/docs/katharos-0.1.0.json index 57cb36e1bf..3128738037 100644 --- a/docs/katharos-0.1.0.json +++ b/docs/katharos-0.1.0.json @@ -1 +1,17 @@ -{"key": "katharos-0.1.0", "short_name": "Katharos License v0.1.0", "name": "Katharos License v0.1.0", "category": "Proprietary Free", "owner": "Katharos Technology", "homepage_url": "https://github.com/katharostech/katharos-license/tree/v0.1.0", "spdx_license_key": "LicenseRef-scancode-katharos-0.1.0", "text_urls": ["https://github.com/katharostech/katharos-license/blob/v0.1.0/LICENSE.md"], "ignorable_urls": ["https://firstdonoharm.dev/version/2/1/license.html", "https://github.com/raisely/NoHarm", "https://spdx.org/licenses/BSD-3-Clause.html"]} \ No newline at end of file +{ + "key": "katharos-0.1.0", + "short_name": "Katharos License v0.1.0", + "name": "Katharos License v0.1.0", + "category": "Proprietary Free", + "owner": "Katharos Technology", + "homepage_url": "https://github.com/katharostech/katharos-license/tree/v0.1.0", + "spdx_license_key": "LicenseRef-scancode-katharos-0.1.0", + "text_urls": [ + "https://github.com/katharostech/katharos-license/blob/v0.1.0/LICENSE.md" + ], + "ignorable_urls": [ + "https://firstdonoharm.dev/version/2/1/license.html", + "https://github.com/raisely/NoHarm", + "https://spdx.org/licenses/BSD-3-Clause.html" + ] +} \ No newline at end of file diff --git a/docs/kde-accepted-gpl.LICENSE b/docs/kde-accepted-gpl.LICENSE index 60a2dffc9c..c0ce06c5dd 100644 --- a/docs/kde-accepted-gpl.LICENSE +++ b/docs/kde-accepted-gpl.LICENSE @@ -1,3 +1,16 @@ +--- +key: kde-accepted-gpl +short_name: KDE Accepted GPL +name: KDE Accepted GPL +category: Copyleft +owner: KDE Project +homepage_url: https://github.com/KDE/licensedigger/blob/master/LICENSES/LicenseRef-KDE-Accepted-GPL.txt +spdx_license_key: LicenseRef-scancode-kde-accepted-gpl +other_spdx_license_keys: + - LicenseRef-KDE-Accepted-GPL +faq_url: https://community.kde.org/Policies/Licensing_Policy +--- + This library 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 @@ -9,4 +22,4 @@ proxy as defined in Section 14 of version 3 of the license. 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/docs/kde-accepted-gpl.html b/docs/kde-accepted-gpl.html index c75d0605ce..c2a882878d 100644 --- a/docs/kde-accepted-gpl.html +++ b/docs/kde-accepted-gpl.html @@ -142,8 +142,7 @@ 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. - +GNU General Public License for more details.
@@ -155,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/kde-accepted-gpl.json b/docs/kde-accepted-gpl.json index a0e860ec17..5fe1e4104a 100644 --- a/docs/kde-accepted-gpl.json +++ b/docs/kde-accepted-gpl.json @@ -1 +1,13 @@ -{"key": "kde-accepted-gpl", "short_name": "KDE Accepted GPL", "name": "KDE Accepted GPL", "category": "Copyleft", "owner": "KDE Project", "homepage_url": "https://github.com/KDE/licensedigger/blob/master/LICENSES/LicenseRef-KDE-Accepted-GPL.txt", "spdx_license_key": "LicenseRef-scancode-kde-accepted-gpl", "other_spdx_license_keys": ["LicenseRef-KDE-Accepted-GPL"], "faq_url": "https://community.kde.org/Policies/Licensing_Policy"} \ No newline at end of file +{ + "key": "kde-accepted-gpl", + "short_name": "KDE Accepted GPL", + "name": "KDE Accepted GPL", + "category": "Copyleft", + "owner": "KDE Project", + "homepage_url": "https://github.com/KDE/licensedigger/blob/master/LICENSES/LicenseRef-KDE-Accepted-GPL.txt", + "spdx_license_key": "LicenseRef-scancode-kde-accepted-gpl", + "other_spdx_license_keys": [ + "LicenseRef-KDE-Accepted-GPL" + ], + "faq_url": "https://community.kde.org/Policies/Licensing_Policy" +} \ No newline at end of file diff --git a/docs/kde-accepted-lgpl.LICENSE b/docs/kde-accepted-lgpl.LICENSE index a8ede546c6..fb9a5eebf7 100644 --- a/docs/kde-accepted-lgpl.LICENSE +++ b/docs/kde-accepted-lgpl.LICENSE @@ -1,3 +1,16 @@ +--- +key: kde-accepted-lgpl +short_name: KDE Accepted LGPL +name: KDE Accepted LGPL +category: Copyleft +owner: KDE Project +homepage_url: https://github.com/KDE/kate/blob/master/LICENSES/LicenseRef-KDE-Accepted-LGPL.txt +spdx_license_key: LicenseRef-scancode-kde-accepted-lgpl +other_spdx_license_keys: + - LicenseRef-KDE-Accepted-LGPL +faq_url: https://community.kde.org/Policies/Licensing_Policy +--- + 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 diff --git a/docs/kde-accepted-lgpl.html b/docs/kde-accepted-lgpl.html index b0b71f38a4..606615934a 100644 --- a/docs/kde-accepted-lgpl.html +++ b/docs/kde-accepted-lgpl.html @@ -154,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/kde-accepted-lgpl.json b/docs/kde-accepted-lgpl.json index b06c871636..8af1890f44 100644 --- a/docs/kde-accepted-lgpl.json +++ b/docs/kde-accepted-lgpl.json @@ -1 +1,13 @@ -{"key": "kde-accepted-lgpl", "short_name": "KDE Accepted LGPL", "name": "KDE Accepted LGPL", "category": "Copyleft", "owner": "KDE Project", "homepage_url": "https://github.com/KDE/kate/blob/master/LICENSES/LicenseRef-KDE-Accepted-LGPL.txt", "spdx_license_key": "LicenseRef-scancode-kde-accepted-lgpl", "other_spdx_license_keys": ["LicenseRef-KDE-Accepted-LGPL"], "faq_url": "https://community.kde.org/Policies/Licensing_Policy"} \ No newline at end of file +{ + "key": "kde-accepted-lgpl", + "short_name": "KDE Accepted LGPL", + "name": "KDE Accepted LGPL", + "category": "Copyleft", + "owner": "KDE Project", + "homepage_url": "https://github.com/KDE/kate/blob/master/LICENSES/LicenseRef-KDE-Accepted-LGPL.txt", + "spdx_license_key": "LicenseRef-scancode-kde-accepted-lgpl", + "other_spdx_license_keys": [ + "LicenseRef-KDE-Accepted-LGPL" + ], + "faq_url": "https://community.kde.org/Policies/Licensing_Policy" +} \ No newline at end of file diff --git a/docs/keith-rule.LICENSE b/docs/keith-rule.LICENSE index 19118bef53..0596ea1d33 100644 --- a/docs/keith-rule.LICENSE +++ b/docs/keith-rule.LICENSE @@ -1,2 +1,11 @@ +--- +key: keith-rule +short_name: Keith Rule License +name: Keith Rule License +category: Permissive +owner: Keith Rule +spdx_license_key: LicenseRef-scancode-keith-rule +--- + You may freely use or modify this code provided this -Copyright is included in all derived versions. +Copyright is included in all derived versions. \ No newline at end of file diff --git a/docs/keith-rule.html b/docs/keith-rule.html index e5c0525c6a..acce2200e0 100644 --- a/docs/keith-rule.html +++ b/docs/keith-rule.html @@ -109,8 +109,7 @@
license_text
You may freely use or modify this code provided this
-Copyright is included in all derived versions.
-
+Copyright is included in all derived versions.
@@ -122,7 +121,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/keith-rule.json b/docs/keith-rule.json index d85078c1ac..807bf1c20f 100644 --- a/docs/keith-rule.json +++ b/docs/keith-rule.json @@ -1 +1,8 @@ -{"key": "keith-rule", "short_name": "Keith Rule License", "name": "Keith Rule License", "category": "Permissive", "owner": "Keith Rule", "spdx_license_key": "LicenseRef-scancode-keith-rule"} \ No newline at end of file +{ + "key": "keith-rule", + "short_name": "Keith Rule License", + "name": "Keith Rule License", + "category": "Permissive", + "owner": "Keith Rule", + "spdx_license_key": "LicenseRef-scancode-keith-rule" +} \ No newline at end of file diff --git a/docs/kerberos.LICENSE b/docs/kerberos.LICENSE index 5d5c649f16..69af2f46e5 100644 --- a/docs/kerberos.LICENSE +++ b/docs/kerberos.LICENSE @@ -1,3 +1,28 @@ +--- +key: kerberos +short_name: Kerberos License +name: Kerberos License +category: Permissive +owner: MIT +notes: this is a complex composite +spdx_license_key: LicenseRef-scancode-kerberos +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 2001, Dr Brian Gladman + - Copyright 1983 Regents of the University of California + - Copyright 1985-2002 by the Massachusetts Institute of Technology + - Copyright 2000 by Zero-Knowledge Systems, Inc. + - Copyright, OpenVision Technologies, Inc., 1996 +ignorable_holders: + - Dr Brian Gladman + - OpenVision Technologies, Inc. + - Regents of the University of California + - Zero-Knowledge Systems, Inc. + - the Massachusetts Institute of Technology +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + Kerberos License Copyright @copyright{} 1985-2002 by the Massachusetts Institute of Technology. @@ -120,4 +145,4 @@ Berkeley and its contributors. 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. +written permission. \ No newline at end of file diff --git a/docs/kerberos.html b/docs/kerberos.html index 056d4377f6..5646c4eeb8 100644 --- a/docs/kerberos.html +++ b/docs/kerberos.html @@ -271,8 +271,7 @@ 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. - +written permission.
@@ -284,7 +283,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/kerberos.json b/docs/kerberos.json index 7ec59f08c2..a1f885be0e 100644 --- a/docs/kerberos.json +++ b/docs/kerberos.json @@ -1 +1,27 @@ -{"key": "kerberos", "short_name": "Kerberos License", "name": "Kerberos License", "category": "Permissive", "owner": "MIT", "notes": "this is a complex composite", "spdx_license_key": "LicenseRef-scancode-kerberos", "minimum_coverage": 80, "ignorable_copyrights": ["Copyright (c) 2001, Dr Brian Gladman", "Copyright 1983 Regents of the University of California", "Copyright 1985-2002 by the Massachusetts Institute of Technology", "Copyright 2000 by Zero-Knowledge Systems, Inc.", "Copyright, OpenVision Technologies, Inc., 1996"], "ignorable_holders": ["Dr Brian Gladman", "OpenVision Technologies, Inc.", "Regents of the University of California", "Zero-Knowledge Systems, Inc.", "the Massachusetts Institute of Technology"], "ignorable_authors": ["the University of California, Berkeley and its contributors"]} \ No newline at end of file +{ + "key": "kerberos", + "short_name": "Kerberos License", + "name": "Kerberos License", + "category": "Permissive", + "owner": "MIT", + "notes": "this is a complex composite", + "spdx_license_key": "LicenseRef-scancode-kerberos", + "minimum_coverage": 80, + "ignorable_copyrights": [ + "Copyright (c) 2001, Dr Brian Gladman", + "Copyright 1983 Regents of the University of California", + "Copyright 1985-2002 by the Massachusetts Institute of Technology", + "Copyright 2000 by Zero-Knowledge Systems, Inc.", + "Copyright, OpenVision Technologies, Inc., 1996" + ], + "ignorable_holders": [ + "Dr Brian Gladman", + "OpenVision Technologies, Inc.", + "Regents of the University of California", + "Zero-Knowledge Systems, Inc.", + "the Massachusetts Institute of Technology" + ], + "ignorable_authors": [ + "the University of California, Berkeley and its contributors" + ] +} \ No newline at end of file diff --git a/docs/kevan-stannard.LICENSE b/docs/kevan-stannard.LICENSE index 861c05ba11..dac89e2464 100644 --- a/docs/kevan-stannard.LICENSE +++ b/docs/kevan-stannard.LICENSE @@ -1,3 +1,46 @@ +--- +key: kevan-stannard +short_name: Kevan Stannard License +name: Kevan Stannard Free Software License +category: Permissive +owner: Kevan Stannard +homepage_url: https://github.com/jmlingeman/Network-Inference-Workspace/blob/master/algorithms/banjo/src/edu/duke/cs/banjo/utility/JZOOWildCardFilter.java#L30 +spdx_license_key: LicenseRef-scancode-kevan-stannard +standard_notice: | + * Copyright (c) 1998 Kevan Stannard. All Rights Reserved. + * + * Permission to use, copy, modify, and distribute this software + * and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and + * without fee is hereby granted. + * + * Please note that this software comes with + * NO WARRANTY + * + * 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. + * + * 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. +--- + Permission to use, copy, modify, and distribute this software and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and without fee is hereby granted. diff --git a/docs/kevan-stannard.html b/docs/kevan-stannard.html index ef5c743da8..76f1b7e527 100644 --- a/docs/kevan-stannard.html +++ b/docs/kevan-stannard.html @@ -184,7 +184,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/kevan-stannard.json b/docs/kevan-stannard.json index 9809c2647d..1010434396 100644 --- a/docs/kevan-stannard.json +++ b/docs/kevan-stannard.json @@ -1 +1,10 @@ -{"key": "kevan-stannard", "short_name": "Kevan Stannard License", "name": "Kevan Stannard Free Software License", "category": "Permissive", "owner": "Kevan Stannard", "homepage_url": "https://github.com/jmlingeman/Network-Inference-Workspace/blob/master/algorithms/banjo/src/edu/duke/cs/banjo/utility/JZOOWildCardFilter.java#L30", "spdx_license_key": "LicenseRef-scancode-kevan-stannard", "standard_notice": "* Copyright (c) 1998 Kevan Stannard. All Rights Reserved.\n*\n* Permission to use, copy, modify, and distribute this software\n* and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and\n* without fee is hereby granted.\n*\n* Please note that this software comes with\n* NO WARRANTY\n*\n* BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR\nTHE PROGRAM, TO THE EXTENT PERMITTED\n* BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES\n* PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER\nEXPRESSED OR IMPLIED, INCLUDING, BUT NOT\n* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE. THE ENTIRE RISK AS\n* TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME\n* THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n*\n* IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER\n* PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE,\nBE LIABLE TO YOU FOR DAMAGES,\n* INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES\nARISING OUT OF THE USE OR INABILITY TO USE\n* THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED\n* BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY\nOTHER PROGRAMS), EVEN IF SUCH HOLDER\n* OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n"} \ No newline at end of file +{ + "key": "kevan-stannard", + "short_name": "Kevan Stannard License", + "name": "Kevan Stannard Free Software License", + "category": "Permissive", + "owner": "Kevan Stannard", + "homepage_url": "https://github.com/jmlingeman/Network-Inference-Workspace/blob/master/algorithms/banjo/src/edu/duke/cs/banjo/utility/JZOOWildCardFilter.java#L30", + "spdx_license_key": "LicenseRef-scancode-kevan-stannard", + "standard_notice": "* Copyright (c) 1998 Kevan Stannard. All Rights Reserved.\n*\n* Permission to use, copy, modify, and distribute this software\n* and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and\n* without fee is hereby granted.\n*\n* Please note that this software comes with\n* NO WARRANTY\n*\n* BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR\nTHE PROGRAM, TO THE EXTENT PERMITTED\n* BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES\n* PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER\nEXPRESSED OR IMPLIED, INCLUDING, BUT NOT\n* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE. THE ENTIRE RISK AS\n* TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME\n* THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n*\n* IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER\n* PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE,\nBE LIABLE TO YOU FOR DAMAGES,\n* INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES\nARISING OUT OF THE USE OR INABILITY TO USE\n* THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED\n* BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY\nOTHER PROGRAMS), EVEN IF SUCH HOLDER\n* OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n" +} \ No newline at end of file diff --git a/docs/kevlin-henney.LICENSE b/docs/kevlin-henney.LICENSE index c76b09365d..362dab5f86 100644 --- a/docs/kevlin-henney.LICENSE +++ b/docs/kevlin-henney.LICENSE @@ -1,3 +1,12 @@ +--- +key: kevlin-henney +short_name: Kevlin Henney License +name: Kevlin Henney License +category: Permissive +owner: Kevlin Henney +spdx_license_key: LicenseRef-scancode-kevlin-henney +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose is hereby granted without fee, provided that this copyright and permissions notice appear in all copies and @@ -5,4 +14,4 @@ derivatives. This software is supplied "as is" without express or implied warranty. -But that said, if there are any problems please get in touch. +But that said, if there are any problems please get in touch. \ No newline at end of file diff --git a/docs/kevlin-henney.html b/docs/kevlin-henney.html index d30186dcb9..a690565bef 100644 --- a/docs/kevlin-henney.html +++ b/docs/kevlin-henney.html @@ -115,8 +115,7 @@ This software is supplied "as is" without express or implied warranty. -But that said, if there are any problems please get in touch. - +But that said, if there are any problems please get in touch.
@@ -128,7 +127,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/kevlin-henney.json b/docs/kevlin-henney.json index 1b34cf13d0..79464136fc 100644 --- a/docs/kevlin-henney.json +++ b/docs/kevlin-henney.json @@ -1 +1,8 @@ -{"key": "kevlin-henney", "short_name": "Kevlin Henney License", "name": "Kevlin Henney License", "category": "Permissive", "owner": "Kevlin Henney", "spdx_license_key": "LicenseRef-scancode-kevlin-henney"} \ No newline at end of file +{ + "key": "kevlin-henney", + "short_name": "Kevlin Henney License", + "name": "Kevlin Henney License", + "category": "Permissive", + "owner": "Kevlin Henney", + "spdx_license_key": "LicenseRef-scancode-kevlin-henney" +} \ No newline at end of file diff --git a/docs/kfqf-accepted-gpl.LICENSE b/docs/kfqf-accepted-gpl.LICENSE index 796b71f7d2..fde568fb7e 100644 --- a/docs/kfqf-accepted-gpl.LICENSE +++ b/docs/kfqf-accepted-gpl.LICENSE @@ -1,3 +1,20 @@ +--- +key: kfqf-accepted-gpl +short_name: KFQF Accepted GPL +name: KFQF Accepted GPL +category: Copyleft +owner: KDE Project +homepage_url: https://github.com/KDE/licensedigger/blob/master/licensetexts/LicenseRef-KFQF-Accepted-GPL.txt +is_exception: yes +spdx_license_key: LicenseRef-scancode-kfqf-accepted-gpl +other_spdx_license_keys: + - LicenseRef-KFQF-Accepted-GPL +minimum_coverage: 60 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html + - https://www.gnu.org/licenses/gpl-3.0.html +--- + Alternatively, this file may be used under the terms of the GNU General Public License version 2.0 or (at your option) the GNU General Public license version 3 or any later version approved by the KDE Free diff --git a/docs/kfqf-accepted-gpl.html b/docs/kfqf-accepted-gpl.html index 4ad97d3232..31d51bd8ee 100644 --- a/docs/kfqf-accepted-gpl.html +++ b/docs/kfqf-accepted-gpl.html @@ -167,7 +167,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/kfqf-accepted-gpl.json b/docs/kfqf-accepted-gpl.json index c7bb3da98f..979e8eb966 100644 --- a/docs/kfqf-accepted-gpl.json +++ b/docs/kfqf-accepted-gpl.json @@ -1 +1,18 @@ -{"key": "kfqf-accepted-gpl", "short_name": "KFQF Accepted GPL", "name": "KFQF Accepted GPL", "category": "Copyleft", "owner": "KDE Project", "homepage_url": "https://github.com/KDE/licensedigger/blob/master/licensetexts/LicenseRef-KFQF-Accepted-GPL.txt", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-kfqf-accepted-gpl", "other_spdx_license_keys": ["LicenseRef-KFQF-Accepted-GPL"], "minimum_coverage": 60, "ignorable_urls": ["https://www.gnu.org/licenses/gpl-2.0.html", "https://www.gnu.org/licenses/gpl-3.0.html"]} \ No newline at end of file +{ + "key": "kfqf-accepted-gpl", + "short_name": "KFQF Accepted GPL", + "name": "KFQF Accepted GPL", + "category": "Copyleft", + "owner": "KDE Project", + "homepage_url": "https://github.com/KDE/licensedigger/blob/master/licensetexts/LicenseRef-KFQF-Accepted-GPL.txt", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-kfqf-accepted-gpl", + "other_spdx_license_keys": [ + "LicenseRef-KFQF-Accepted-GPL" + ], + "minimum_coverage": 60, + "ignorable_urls": [ + "https://www.gnu.org/licenses/gpl-2.0.html", + "https://www.gnu.org/licenses/gpl-3.0.html" + ] +} \ No newline at end of file diff --git a/docs/khronos.LICENSE b/docs/khronos.LICENSE index 893fab619a..81a09b25da 100644 --- a/docs/khronos.LICENSE +++ b/docs/khronos.LICENSE @@ -1,3 +1,19 @@ +--- +key: khronos +short_name: Khronos License +name: Khronos License +category: Permissive +owner: Khronos Group +notes: | + This is the same text as the MIT license with minor modifications. In the + first paragraph "this software and/or associated documentation" is used + instead of "this software and associated documentation" The words "the + Software" are replaced by the words "the Materials". +spdx_license_key: LicenseRef-scancode-khronos +other_urls: + - http://www.khronos.org/developers +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and/or associated documentation files (the "Materials"), to deal in the Materials without restriction, including @@ -15,4 +31,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. \ No newline at end of file diff --git a/docs/khronos.html b/docs/khronos.html index 68032a11a4..cccdf4f212 100644 --- a/docs/khronos.html +++ b/docs/khronos.html @@ -145,8 +145,7 @@ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. - +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
@@ -158,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/khronos.json b/docs/khronos.json index 440102efb4..52ed9ac5bb 100644 --- a/docs/khronos.json +++ b/docs/khronos.json @@ -1 +1,12 @@ -{"key": "khronos", "short_name": "Khronos License", "name": "Khronos License", "category": "Permissive", "owner": "Khronos Group", "notes": "This is the same text as the MIT license with minor modifications. In the\nfirst paragraph \"this software and/or associated documentation\" is used\ninstead of \"this software and associated documentation\" The words \"the\nSoftware\" are replaced by the words \"the Materials\".\n", "spdx_license_key": "LicenseRef-scancode-khronos", "other_urls": ["http://www.khronos.org/developers"]} \ No newline at end of file +{ + "key": "khronos", + "short_name": "Khronos License", + "name": "Khronos License", + "category": "Permissive", + "owner": "Khronos Group", + "notes": "This is the same text as the MIT license with minor modifications. In the\nfirst paragraph \"this software and/or associated documentation\" is used\ninstead of \"this software and associated documentation\" The words \"the\nSoftware\" are replaced by the words \"the Materials\".\n", + "spdx_license_key": "LicenseRef-scancode-khronos", + "other_urls": [ + "http://www.khronos.org/developers" + ] +} \ No newline at end of file diff --git a/docs/kicad-libraries-exception.LICENSE b/docs/kicad-libraries-exception.LICENSE index 7af1bcb24e..49a7373e5e 100644 --- a/docs/kicad-libraries-exception.LICENSE +++ b/docs/kicad-libraries-exception.LICENSE @@ -1,3 +1,18 @@ +--- +key: kicad-libraries-exception +short_name: KiCad Libraries Exception to CC-BY-SA-4.0 +name: KiCad Libraries Exception to CC-BY-SA-4.0 +category: Copyleft Limited +owner: KiCad +notes: this is always an execption to the CC-BY-SA-4.0 license. and the homepage introduces + this expection this way "The KiCad libraries are licensed under the Creative Commons CC-BY-SA + 4.0 License, with the following exception." We used to track this as cc-by-sa-4.0 WITH generic-exception +is_exception: yes +spdx_license_key: KiCad-libraries-exception +other_urls: + - https://www.kicad.org/libraries/license/ +--- + To the extent that the creation of electronic designs that use 'Licensed Material' can be considered to be 'Adapted Material', then the copyright holder waives article 3 of the license with respect to these designs and any generated files which use diff --git a/docs/kicad-libraries-exception.html b/docs/kicad-libraries-exception.html index 80dd08d9a3..659d38c847 100644 --- a/docs/kicad-libraries-exception.html +++ b/docs/kicad-libraries-exception.html @@ -106,6 +106,13 @@ +
is_exception
+
+ + True + +
+
spdx_license_key
@@ -139,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/kicad-libraries-exception.json b/docs/kicad-libraries-exception.json index 02c3c5779d..fc60d755f3 100644 --- a/docs/kicad-libraries-exception.json +++ b/docs/kicad-libraries-exception.json @@ -1 +1,13 @@ -{"key": "kicad-libraries-exception", "short_name": "KiCad Libraries Exception to CC-BY-SA-4.0", "name": "KiCad Libraries Exception to CC-BY-SA-4.0", "category": "Copyleft Limited", "owner": "KiCad", "notes": "this is always an execption to the CC-BY-SA-4.0 license. and the homepage introduces this expection this way \"The KiCad libraries are licensed under the Creative Commons CC-BY-SA 4.0 License, with the following exception.\" We used to track this as cc-by-sa-4.0 WITH generic-exception", "spdx_license_key": "KiCad-libraries-exception", "other_urls": ["https://www.kicad.org/libraries/license/"]} \ No newline at end of file +{ + "key": "kicad-libraries-exception", + "short_name": "KiCad Libraries Exception to CC-BY-SA-4.0", + "name": "KiCad Libraries Exception to CC-BY-SA-4.0", + "category": "Copyleft Limited", + "owner": "KiCad", + "notes": "this is always an execption to the CC-BY-SA-4.0 license. and the homepage introduces this expection this way \"The KiCad libraries are licensed under the Creative Commons CC-BY-SA 4.0 License, with the following exception.\" We used to track this as cc-by-sa-4.0 WITH generic-exception", + "is_exception": true, + "spdx_license_key": "KiCad-libraries-exception", + "other_urls": [ + "https://www.kicad.org/libraries/license/" + ] +} \ No newline at end of file diff --git a/docs/kicad-libraries-exception.yml b/docs/kicad-libraries-exception.yml index 860ffcf963..8145a1db6b 100644 --- a/docs/kicad-libraries-exception.yml +++ b/docs/kicad-libraries-exception.yml @@ -6,6 +6,7 @@ owner: KiCad notes: this is always an execption to the CC-BY-SA-4.0 license. and the homepage introduces this expection this way "The KiCad libraries are licensed under the Creative Commons CC-BY-SA 4.0 License, with the following exception." We used to track this as cc-by-sa-4.0 WITH generic-exception +is_exception: yes spdx_license_key: KiCad-libraries-exception other_urls: - https://www.kicad.org/libraries/license/ diff --git a/docs/knuth-ctan.LICENSE b/docs/knuth-ctan.LICENSE new file mode 100644 index 0000000000..6a6109bed6 --- /dev/null +++ b/docs/knuth-ctan.LICENSE @@ -0,0 +1,16 @@ +--- +key: knuth-ctan +short_name: Knuth CTAN License +name: Knuth CTAN License +category: Permissive +owner: CTAN +spdx_license_key: Knuth-CTAN +other_urls: + - https://ctan.org/license/knuth +--- + +This software is copyrighted. Unlimited copying and redistribution +of this package and/or its individual files are permitted +as long as there are no modifications. Modifications, and +redistribution of modifications, are also permitted, but +only if the resulting package and/or files are renamed. \ No newline at end of file diff --git a/docs/knuth-ctan.html b/docs/knuth-ctan.html new file mode 100644 index 0000000000..008f9d2bd2 --- /dev/null +++ b/docs/knuth-ctan.html @@ -0,0 +1,156 @@ + + + + + + LicenseDB: knuth-ctan + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + knuth-ctan + +
+ +
short_name
+
+ + Knuth CTAN License + +
+ +
name
+
+ + Knuth CTAN License + +
+ +
category
+
+ + Permissive + +
+ +
owner
+
+ + CTAN + +
+ +
spdx_license_key
+
+ + Knuth-CTAN + +
+ +
other_urls
+
+ + + +
+ +
+
license_text
+
This software is copyrighted. Unlimited copying and redistribution
+of this package and/or its individual files are permitted
+as long as there are no modifications. Modifications, and
+redistribution of modifications, are also permitted, but
+only if the resulting package and/or files are renamed.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/knuth-ctan.json b/docs/knuth-ctan.json new file mode 100644 index 0000000000..a1bb5d76b3 --- /dev/null +++ b/docs/knuth-ctan.json @@ -0,0 +1,11 @@ +{ + "key": "knuth-ctan", + "short_name": "Knuth CTAN License", + "name": "Knuth CTAN License", + "category": "Permissive", + "owner": "CTAN", + "spdx_license_key": "Knuth-CTAN", + "other_urls": [ + "https://ctan.org/license/knuth" + ] +} \ No newline at end of file diff --git a/docs/knuth-ctan.yml b/docs/knuth-ctan.yml new file mode 100644 index 0000000000..e272c39e3c --- /dev/null +++ b/docs/knuth-ctan.yml @@ -0,0 +1,8 @@ +key: knuth-ctan +short_name: Knuth CTAN License +name: Knuth CTAN License +category: Permissive +owner: CTAN +spdx_license_key: Knuth-CTAN +other_urls: + - https://ctan.org/license/knuth diff --git a/docs/kreative-relay-fonts-free-use-1.2f.LICENSE b/docs/kreative-relay-fonts-free-use-1.2f.LICENSE index 05bc0fe312..824345885e 100644 --- a/docs/kreative-relay-fonts-free-use-1.2f.LICENSE +++ b/docs/kreative-relay-fonts-free-use-1.2f.LICENSE @@ -1,3 +1,17 @@ +--- +key: kreative-relay-fonts-free-use-1.2f +short_name: Kreative Software Relay Fonts Free Use 1.2f +name: Kreative Software Relay Fonts Free Use License 1.2f +category: Proprietary Free +owner: KreativeKorp +homepage_url: http://www.kreativekorp.com/software/fonts/FreeLicense.txt +spdx_license_key: LicenseRef-scancode-kreative-relay-fonts-free-1.2f +other_spdx_license_keys: + - LicenseRef-scancode-kreative-relay-fonts-free-use-1.2f +other_urls: + - http://www.kreativekorp.com/software/fonts/index.shtml +--- + KREATIVE SOFTWARE RELAY FONTS FREE USE LICENSE version 1.2f diff --git a/docs/kreative-relay-fonts-free-use-1.2f.html b/docs/kreative-relay-fonts-free-use-1.2f.html index d215e6771c..396e48136a 100644 --- a/docs/kreative-relay-fonts-free-use-1.2f.html +++ b/docs/kreative-relay-fonts-free-use-1.2f.html @@ -164,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/kreative-relay-fonts-free-use-1.2f.json b/docs/kreative-relay-fonts-free-use-1.2f.json index 3766024fc1..820989ac64 100644 --- a/docs/kreative-relay-fonts-free-use-1.2f.json +++ b/docs/kreative-relay-fonts-free-use-1.2f.json @@ -1 +1,15 @@ -{"key": "kreative-relay-fonts-free-use-1.2f", "short_name": "Kreative Software Relay Fonts Free Use 1.2f", "name": "Kreative Software Relay Fonts Free Use License 1.2f", "category": "Proprietary Free", "owner": "KreativeKorp", "homepage_url": "http://www.kreativekorp.com/software/fonts/FreeLicense.txt", "spdx_license_key": "LicenseRef-scancode-kreative-relay-fonts-free-1.2f", "other_spdx_license_keys": ["LicenseRef-scancode-kreative-relay-fonts-free-use-1.2f"], "other_urls": ["http://www.kreativekorp.com/software/fonts/index.shtml"]} \ No newline at end of file +{ + "key": "kreative-relay-fonts-free-use-1.2f", + "short_name": "Kreative Software Relay Fonts Free Use 1.2f", + "name": "Kreative Software Relay Fonts Free Use License 1.2f", + "category": "Proprietary Free", + "owner": "KreativeKorp", + "homepage_url": "http://www.kreativekorp.com/software/fonts/FreeLicense.txt", + "spdx_license_key": "LicenseRef-scancode-kreative-relay-fonts-free-1.2f", + "other_spdx_license_keys": [ + "LicenseRef-scancode-kreative-relay-fonts-free-use-1.2f" + ], + "other_urls": [ + "http://www.kreativekorp.com/software/fonts/index.shtml" + ] +} \ No newline at end of file diff --git a/docs/kumar-robotics.LICENSE b/docs/kumar-robotics.LICENSE index 04d9bdd301..9c24920df6 100644 --- a/docs/kumar-robotics.LICENSE +++ b/docs/kumar-robotics.LICENSE @@ -1,3 +1,25 @@ +--- +key: kumar-robotics +short_name: Kumar Robotics License +name: Kumar Robotics License +category: Permissive +owner: Kumar Robotics +homepage_url: https://github.com/KumarRobotics/motion_capture_system/blob/master/mocap_qualisys/include/mocap_qualisys/StdString.h#L316 +spdx_license_key: LicenseRef-scancode-kumar-robotics +other_urls: + - https://github.com/KumarRobotics/motion_capture_system +standard_notice: | + // COPYRIGHT: + // 2002 Joseph M. O'Leary. This code is 100% free. Use it anywhere you + // want. Rewrite it, restructure it, whatever. If you can write software + // that makes money off of it, good for you. I kinda like capitalism. + // Please don't blame me if it causes your $30 billion dollar satellite + // explode in orbit. If you redistribute it in any form, I'd appreciate it + // if you would leave this notice here. + // ======================================================================== + ===== +--- + This code is 100% free. Use it anywhere you want. Rewrite it, restructure it, whatever. If you can write software that makes money off of it, good for you. I kinda like capitalism. diff --git a/docs/kumar-robotics.html b/docs/kumar-robotics.html index 58a1ff056d..db14600c49 100644 --- a/docs/kumar-robotics.html +++ b/docs/kumar-robotics.html @@ -157,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/kumar-robotics.json b/docs/kumar-robotics.json index 8e267ff44b..0a02b24564 100644 --- a/docs/kumar-robotics.json +++ b/docs/kumar-robotics.json @@ -1 +1,13 @@ -{"key": "kumar-robotics", "short_name": "Kumar Robotics License", "name": "Kumar Robotics License", "category": "Permissive", "owner": "Kumar Robotics", "homepage_url": "https://github.com/KumarRobotics/motion_capture_system/blob/master/mocap_qualisys/include/mocap_qualisys/StdString.h#L316", "spdx_license_key": "LicenseRef-scancode-kumar-robotics", "other_urls": ["https://github.com/KumarRobotics/motion_capture_system"], "standard_notice": "// COPYRIGHT:\n// 2002 Joseph M. O'Leary. This code is 100% free. Use it anywhere you\n// want. Rewrite it, restructure it, whatever. If you can write software\n// that makes money off of it, good for you. I kinda like capitalism.\n// Please don't blame me if it causes your $30 billion dollar satellite\n// explode in orbit. If you redistribute it in any form, I'd appreciate it\n// if you would leave this notice here.\n// ========================================================================\n=====\n"} \ No newline at end of file +{ + "key": "kumar-robotics", + "short_name": "Kumar Robotics License", + "name": "Kumar Robotics License", + "category": "Permissive", + "owner": "Kumar Robotics", + "homepage_url": "https://github.com/KumarRobotics/motion_capture_system/blob/master/mocap_qualisys/include/mocap_qualisys/StdString.h#L316", + "spdx_license_key": "LicenseRef-scancode-kumar-robotics", + "other_urls": [ + "https://github.com/KumarRobotics/motion_capture_system" + ], + "standard_notice": "// COPYRIGHT:\n// 2002 Joseph M. O'Leary. This code is 100% free. Use it anywhere you\n// want. Rewrite it, restructure it, whatever. If you can write software\n// that makes money off of it, good for you. I kinda like capitalism.\n// Please don't blame me if it causes your $30 billion dollar satellite\n// explode in orbit. If you redistribute it in any form, I'd appreciate it\n// if you would leave this notice here.\n// ========================================================================\n=====\n" +} \ No newline at end of file diff --git a/docs/lal-1.2.LICENSE b/docs/lal-1.2.LICENSE index cdb6c32182..155e7eeb94 100644 --- a/docs/lal-1.2.LICENSE +++ b/docs/lal-1.2.LICENSE @@ -1,3 +1,18 @@ +--- +key: lal-1.2 +language: fr +short_name: Licence Art Libre 1.2 +name: Licence Art Libre 1.2 +category: Copyleft +owner: Licence Art Libre +homepage_url: http://artlibre.org/licence/lal/licence-art-libre-12/ +spdx_license_key: LAL-1.2 +text_urls: + - http://artlibre.org/licence/lal/licence-art-libre-12/ + - http://artlibre.org/licence/lal/it/ + - http://artlibre.org/licence/lal/es/ +--- + Licence Art Libre 
[ Copyleft Attitude ] Version 1.2 diff --git a/docs/lal-1.2.html b/docs/lal-1.2.html index 88d4e74551..dd41714bb7 100644 --- a/docs/lal-1.2.html +++ b/docs/lal-1.2.html @@ -208,7 +208,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lal-1.2.json b/docs/lal-1.2.json index 5a97f08fcf..91c32a892c 100644 --- a/docs/lal-1.2.json +++ b/docs/lal-1.2.json @@ -1 +1,15 @@ -{"key": "lal-1.2", "language": "fr", "short_name": "Licence Art Libre 1.2", "name": "Licence Art Libre 1.2", "category": "Copyleft", "owner": "Licence Art Libre", "homepage_url": "http://artlibre.org/licence/lal/licence-art-libre-12/", "spdx_license_key": "LAL-1.2", "text_urls": ["http://artlibre.org/licence/lal/licence-art-libre-12/", "http://artlibre.org/licence/lal/it/", "http://artlibre.org/licence/lal/es/"]} \ No newline at end of file +{ + "key": "lal-1.2", + "language": "fr", + "short_name": "Licence Art Libre 1.2", + "name": "Licence Art Libre 1.2", + "category": "Copyleft", + "owner": "Licence Art Libre", + "homepage_url": "http://artlibre.org/licence/lal/licence-art-libre-12/", + "spdx_license_key": "LAL-1.2", + "text_urls": [ + "http://artlibre.org/licence/lal/licence-art-libre-12/", + "http://artlibre.org/licence/lal/it/", + "http://artlibre.org/licence/lal/es/" + ] +} \ No newline at end of file diff --git a/docs/lal-1.3.LICENSE b/docs/lal-1.3.LICENSE index f1703ee21a..832955a3d8 100644 --- a/docs/lal-1.3.LICENSE +++ b/docs/lal-1.3.LICENSE @@ -1,3 +1,17 @@ +--- +key: lal-1.3 +language: fr +short_name: Licence Art Libre 1.3 +name: Licence Art Libre 1.3 +category: Copyleft +owner: Licence Art Libre +homepage_url: http://artlibre.org/ +spdx_license_key: LAL-1.3 +other_urls: + - http://artlibre.org/licence/lal/en/ + - https://artlibre.org/ +--- + Licence Art Libre 1.3 (LAL 1.3) Préambule : diff --git a/docs/lal-1.3.html b/docs/lal-1.3.html index c8644e9515..17109dbcc4 100644 --- a/docs/lal-1.3.html +++ b/docs/lal-1.3.html @@ -229,7 +229,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lal-1.3.json b/docs/lal-1.3.json index 1469efcaf8..6f6a263404 100644 --- a/docs/lal-1.3.json +++ b/docs/lal-1.3.json @@ -1 +1,14 @@ -{"key": "lal-1.3", "language": "fr", "short_name": "Licence Art Libre 1.3", "name": "Licence Art Libre 1.3", "category": "Copyleft", "owner": "Licence Art Libre", "homepage_url": "http://artlibre.org/", "spdx_license_key": "LAL-1.3", "other_urls": ["http://artlibre.org/licence/lal/en/", "https://artlibre.org/"]} \ No newline at end of file +{ + "key": "lal-1.3", + "language": "fr", + "short_name": "Licence Art Libre 1.3", + "name": "Licence Art Libre 1.3", + "category": "Copyleft", + "owner": "Licence Art Libre", + "homepage_url": "http://artlibre.org/", + "spdx_license_key": "LAL-1.3", + "other_urls": [ + "http://artlibre.org/licence/lal/en/", + "https://artlibre.org/" + ] +} \ No newline at end of file diff --git a/docs/larabie.LICENSE b/docs/larabie.LICENSE index 4c260b3a43..15dc24af6e 100644 --- a/docs/larabie.LICENSE +++ b/docs/larabie.LICENSE @@ -1,3 +1,19 @@ +--- +key: larabie +short_name: Larabie Fonts EULA +name: Larabie Fonts EULA +category: Proprietary Free +owner: Larabie Fonts +spdx_license_key: LicenseRef-scancode-larabie +ignorable_urls: + - http://come.to/larabiefonts + - http://uk.zarcrom.com/font/ + - http://www.larabiefonts.com/ +ignorable_emails: + - drowsy@cheerful.com + - rlarabie@hotmail.com +--- + The fonts contained in this archive are Freeware. No payment is required for the use of these fonts. They're free! Commercial use? Sure, but a donation or a product sample would be appreciated. diff --git a/docs/larabie.html b/docs/larabie.html index a58bad0c20..24c0e3b1ae 100644 --- a/docs/larabie.html +++ b/docs/larabie.html @@ -226,7 +226,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/larabie.json b/docs/larabie.json index 673dcbaf78..86574d2cda 100644 --- a/docs/larabie.json +++ b/docs/larabie.json @@ -1 +1,17 @@ -{"key": "larabie", "short_name": "Larabie Fonts EULA", "name": "Larabie Fonts EULA", "category": "Proprietary Free", "owner": "Larabie Fonts", "spdx_license_key": "LicenseRef-scancode-larabie", "ignorable_urls": ["http://come.to/larabiefonts", "http://uk.zarcrom.com/font/", "http://www.larabiefonts.com/"], "ignorable_emails": ["drowsy@cheerful.com", "rlarabie@hotmail.com"]} \ No newline at end of file +{ + "key": "larabie", + "short_name": "Larabie Fonts EULA", + "name": "Larabie Fonts EULA", + "category": "Proprietary Free", + "owner": "Larabie Fonts", + "spdx_license_key": "LicenseRef-scancode-larabie", + "ignorable_urls": [ + "http://come.to/larabiefonts", + "http://uk.zarcrom.com/font/", + "http://www.larabiefonts.com/" + ], + "ignorable_emails": [ + "drowsy@cheerful.com", + "rlarabie@hotmail.com" + ] +} \ No newline at end of file diff --git a/docs/latex2e.LICENSE b/docs/latex2e.LICENSE index 811937bbc5..a7b65c5798 100644 --- a/docs/latex2e.LICENSE +++ b/docs/latex2e.LICENSE @@ -1,3 +1,14 @@ +--- +key: latex2e +short_name: Latex2e License +name: Latex2e License +category: Permissive +owner: LaTeX +homepage_url: https://fedoraproject.org/wiki/Licensing/Latex2e +notes: the latext2e, verbatim-manual and abstyles are similar licenses +spdx_license_key: Latex2e +--- + Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. diff --git a/docs/latex2e.html b/docs/latex2e.html index fb66574d54..f0ec9d876c 100644 --- a/docs/latex2e.html +++ b/docs/latex2e.html @@ -144,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/latex2e.json b/docs/latex2e.json index 8376d49616..b0e9759e7a 100644 --- a/docs/latex2e.json +++ b/docs/latex2e.json @@ -1 +1,10 @@ -{"key": "latex2e", "short_name": "Latex2e License", "name": "Latex2e License", "category": "Permissive", "owner": "LaTeX", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Latex2e", "notes": "the latext2e, verbatim-manual and abstyles are similar licenses", "spdx_license_key": "Latex2e"} \ No newline at end of file +{ + "key": "latex2e", + "short_name": "Latex2e License", + "name": "Latex2e License", + "category": "Permissive", + "owner": "LaTeX", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Latex2e", + "notes": "the latext2e, verbatim-manual and abstyles are similar licenses", + "spdx_license_key": "Latex2e" +} \ No newline at end of file diff --git a/docs/lattice-osl-2017.LICENSE b/docs/lattice-osl-2017.LICENSE new file mode 100644 index 0000000000..4a5cbf7ad7 --- /dev/null +++ b/docs/lattice-osl-2017.LICENSE @@ -0,0 +1,49 @@ +--- +key: lattice-osl-2017 +short_name: Lattice Open Source License 2017 +name: Lattice Open Source License 2017 +category: Copyleft Limited +owner: Lattice +homepage_url: https://www.latticesemi.com/en/FileExplorer?media={E1F07490-EE2A-451E-B4F4-D4BF7B07099C}&document_id=38780 +spdx_license_key: LicenseRef-scancode-lattice-osl-2017 +ignorable_copyrights: + - (c) 2006-2017 Lattice Semiconductor Corporation +ignorable_holders: + - Lattice Semiconductor Corporation +--- + +LATTICE OPEN SOURCE LICENSE AGREEMENT + +This is a legal agreement between You (Licensee, either a company or an individual), and Lattice Semiconductor Corporation if You are located in the United States or Lattice SG Pte. Ltd. if You are located in a country other than the United States. Lattice Semiconductor Corporation or Lattice SG Pte. Ltd. is the Provider (Licensor) of the Software. If a component covered by this Agreement can be included in the output files generated by the Provider’s LatticeMico System or any other Provider source code generation tool, then Software refers to such output files that includes that component. Otherwise, Software refers to the component on a standalone basis. By proceeding with the installation, modification, use or distribution in whole or in part of Software that identifies itself as licensed under the Lattice Open Source License Agreement, You agree to be bound by the terms of this Agreement. If You do not agree to the terms of this Agreement, You are not permitted to use, modify or distribute the Software. + +1. The Provider grants to You a personal, non-exclusive right to use and distribute the source code of the Software provided that: + - You make distributions free of charge under these license terms + - You ensure that the original copyright notices and limitations of liability and warranty sections remain intact. + +2. The Provider grants to You a personal, non-exclusive right to modify the source code of the Software and incorporate it with other source code to create a Derivative Work (as defined below). At Your discretion, You may distribute this Derivative Work under terms of Your choosing provided: + - You arrange Your design such that the Derivative Work is an identifiable module within Your overall design. + - You distribute the source code associated with the modules containing the Derivative Work in a customarily accepted machine-readable format, free of charge under a license agreement that contains these license terms. + - You ensure that the original copyright notices and limitations of liability and warranty sections remain intact. + - You clearly identify areas of the source code that You have modified. + +“Derivative Work” means a version of the Software in source code form that contains modifications or additions to the original source code and includes all Software files used to implement Your design. Derivative Work does not include identifiable modules within Your design that are not derived from the Software and that can be reasonably considered independent and separate modules from the Software. + +3. The Provider grants to You a personal, non-exclusive right to use object code created from the Software or a Derivative Work to physically implement the design in devices such as a programmable logic devices or application specific integrated circuits. You may distribute these devices without accompanying them with a copy of this license or source code. + +4. This Software is provided free of charge. IN NO EVENT WILL THE PROVIDER OR ANY OF ITS SUPPLIERS BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY DAMAGES, INCLUDING ANY DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, OR SPECIAL DAMAGES, WHETHER CHARACTERIZED AS EXPENSES, LOST PROFITS, LOST SAVINGS, OR OTHER DAMAGES OF ANY SORT, ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF THE PROVIDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +5. THE PROVIDER MAKES NO WARRANTIES WITH RESPECT TO THE SOFTWARE, WHETHER EXPRESSED, IMPLIED, STATUTORY, OR IN ANY OTHER PROVISION OF THIS AGREEMENT OR COMMUNICATION WITH YOU, AND THE PROVIDER SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT OF THIRD PARTY RIGHTS. THE PROVIDER DOES NOT WARRANT THAT USE OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR FREE. YOU ASSUME RESPONSIBILITY FOR SELECTION OF THE SOFTWARE TO ACHIEVE ITS INTENDED RESULTS AND FOR THE PROPER INSTALLATION, USE, AND RESULTS OBTAINED FROM THE SOFTWARE. YOU ASSUME THE ENTIRE RISK OF THE SOFTWARE PROVING DEFECTIVE OR FAILING TO PERFORM PROPERLY, AND IN SUCH EVENT, YOU ASSUME THE ENTIRE COST AND RISK OF ANY REPAIR, SERVICE, CORRECTION, OR ANY OTHER LIABILITIES OR DAMAGES CAUSED BY OR ASSOCIATED WITH THE SOFTWARE. THE SOLE LIABILITIES AND REMEDIES ASSOCIATED WITH THE SOFTWARE ARE SET FORTH ABOVE. + +6. Export Control. You agree that neither the Software nor any Derivative Work will be exported, directly or indirectly, into any country or to any person or entity, in violation of laws or regulations of the United States or other applicable governments. This Agreement will be governed by the substantive laws of the State of Oregon, USA. + +7. Default and Termination. This Agreement will continue indefinitely, until and unless terminated. You may terminate this Agreement by destroying all copies of the materials to which this Agreement applies. The Agreement will terminate automatically if due to any event, including court judgment, You fail to perform any of Your obligations hereunder. In the event of termination, others that have received software from You under the terms of this Agreement may continue to use it provided they remain in compliance with the terms of this Agreement. + +8. Your use of this Software is governed by this Lattice Open Source License Agreement. However, depending on your design, the output files generated by the LatticeMico System or by any other Provider source code generation tool may contain open source code provided by a third party. Specifically, the output files may contain open source code that is licensed pursuant to the terms attached to the LatticeMicoTM System License Agreement as Appendix B. By agreeing to the terms of this Lattice Open Source License Agreement, you are also agreeing to use such code in accordance with the terms of the agreement under which such code has been licensed, if applicable. + +9. From time to time Lattice may issue revised versions of the Lattice Open Source License Agreement. Revisions will follow the spirit of this version but will contain adjustments and clarifications to address issues and concerns of Lattice and the user community. + +10. Any conflict between the terms of this Agreement and the licensing terms included in the header files provided with the Software will be resolved in favor of this Agreement. + +©2006-2017 Lattice Semiconductor Corporation. You may freely distribute the text of this Agreement provided you include this copyright notice. However, modifications to the substantive terms herein are not permitted. + +20170329 \ No newline at end of file diff --git a/docs/lattice-osl-2017.html b/docs/lattice-osl-2017.html new file mode 100644 index 0000000000..e925807efd --- /dev/null +++ b/docs/lattice-osl-2017.html @@ -0,0 +1,202 @@ + + + + + + LicenseDB: lattice-osl-2017 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + lattice-osl-2017 + +
+ +
short_name
+
+ + Lattice Open Source License 2017 + +
+ +
name
+
+ + Lattice Open Source License 2017 + +
+ +
category
+
+ + Copyleft Limited + +
+ +
owner
+
+ + Lattice + +
+ +
homepage_url
+
+ + https://www.latticesemi.com/en/FileExplorer?media={E1F07490-EE2A-451E-B4F4-D4BF7B07099C}&document_id=38780 + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-lattice-osl-2017 + +
+ +
ignorable_copyrights
+
+ +
    +
  • (c) 2006-2017 Lattice Semiconductor Corporation
  • +
+ +
+ +
ignorable_holders
+
+ +
    +
  • Lattice Semiconductor Corporation
  • +
+ +
+ +
+
license_text
+
LATTICE OPEN SOURCE LICENSE AGREEMENT
+
+This is a legal agreement between You (Licensee, either a company or an individual), and Lattice Semiconductor Corporation if You are located in the United States or Lattice SG Pte. Ltd. if You are located in a country other than the United States. Lattice Semiconductor Corporation or Lattice SG Pte. Ltd. is the Provider (Licensor) of the Software.  If a component covered by this Agreement can be included in the output files generated by the Provider’s LatticeMico System or any other Provider source code generation tool, then Software refers to such output files that includes that component.  Otherwise, Software refers to the component on a standalone basis.  By proceeding with the installation, modification, use or distribution in whole or in part of Software that identifies itself as licensed under the Lattice Open Source License Agreement, You agree to be bound by the terms of this Agreement. If You do not agree to the terms of this Agreement, You are not permitted to use, modify or distribute the Software.
+
+1. The Provider grants to You a personal, non-exclusive right to use and distribute the source code of the Software provided that:
+ - You make distributions free of charge under these license terms
+ - You ensure that the original copyright notices and limitations of liability and warranty sections remain intact.
+
+2. The Provider grants to You a personal, non-exclusive right to modify the source code of the Software and incorporate it with other source code to create a Derivative Work (as defined below).  At Your discretion, You may distribute this Derivative Work under terms of Your choosing provided:
+ - You arrange Your design such that the Derivative Work is an identifiable module within Your overall design.
+ - You distribute the source code associated with the modules containing the Derivative Work in a customarily accepted machine-readable format, free of charge under a license agreement that contains these license terms. 
+ - You ensure that the original copyright notices and limitations of liability and warranty sections remain intact.
+ - You clearly identify areas of the source code that You have modified.
+
+“Derivative Work” means a version of the Software in source code form that contains modifications or additions to the original source code and includes all Software files used to implement Your design. Derivative Work does not include identifiable modules within Your design that are not derived from the Software and that can be reasonably considered independent and separate modules from the Software.
+
+3. The Provider grants to You a personal, non-exclusive right to use object code created from the Software or a Derivative Work to physically implement the design in devices such as a programmable logic devices or application specific integrated circuits.  You may distribute these devices without accompanying them with a copy of this license or source code.
+
+4. This Software is provided free of charge.  IN NO EVENT WILL THE PROVIDER OR ANY OF ITS SUPPLIERS BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY DAMAGES, INCLUDING ANY DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, OR SPECIAL DAMAGES, WHETHER CHARACTERIZED AS EXPENSES, LOST PROFITS, LOST SAVINGS, OR OTHER DAMAGES OF ANY SORT, ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF THE PROVIDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+5. THE PROVIDER MAKES NO WARRANTIES WITH RESPECT TO THE SOFTWARE, WHETHER EXPRESSED, IMPLIED, STATUTORY, OR IN ANY OTHER PROVISION OF THIS AGREEMENT OR COMMUNICATION WITH YOU, AND THE PROVIDER SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT OF THIRD PARTY RIGHTS. THE PROVIDER DOES NOT WARRANT THAT USE OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR FREE. YOU ASSUME RESPONSIBILITY FOR SELECTION OF THE SOFTWARE TO ACHIEVE ITS INTENDED RESULTS AND FOR THE PROPER INSTALLATION, USE, AND RESULTS OBTAINED FROM THE SOFTWARE. YOU ASSUME THE ENTIRE RISK OF THE SOFTWARE PROVING DEFECTIVE OR FAILING TO PERFORM PROPERLY, AND IN SUCH EVENT, YOU ASSUME THE ENTIRE COST AND RISK OF ANY REPAIR, SERVICE, CORRECTION, OR ANY OTHER LIABILITIES OR DAMAGES CAUSED BY OR ASSOCIATED WITH THE SOFTWARE. THE SOLE LIABILITIES AND REMEDIES ASSOCIATED WITH THE SOFTWARE ARE SET FORTH ABOVE. 
+
+6. Export Control. You agree that neither the Software nor any Derivative Work will be exported, directly or indirectly, into any country or to any person or entity, in violation of laws or regulations of the United States or other applicable governments. This Agreement will be governed by the substantive laws of the State of Oregon, USA.
+
+7. Default and Termination. This Agreement will continue indefinitely, until and unless terminated. You may terminate this Agreement by destroying all copies of the materials to which this Agreement applies.  The Agreement will terminate automatically if due to any event, including court judgment, You fail to perform any of Your obligations hereunder. In the event of termination, others that have received software from You under the terms of this Agreement may continue to use it provided they remain in compliance with the terms of this Agreement.
+
+8. Your use of this Software is governed by this Lattice Open Source License Agreement.  However, depending on your design, the output files generated by the LatticeMico System or by any other Provider source code generation tool may contain open source code provided by a third party.  Specifically, the output files may contain open source code that is licensed pursuant to the terms attached to the LatticeMicoTM System License Agreement as Appendix B.  By agreeing to the terms of this Lattice Open Source License Agreement, you are also agreeing to use such code in accordance with the terms of the agreement under which such code has been licensed, if applicable.
+
+9. From time to time Lattice may issue revised versions of the Lattice Open Source License Agreement.  Revisions will follow the spirit of this version but will contain adjustments and clarifications to address issues and concerns of Lattice and the user community.
+
+10. Any conflict between the terms of this Agreement and the licensing terms included in the header files provided with the Software will be resolved in favor of this Agreement.
+
+©2006-2017 Lattice Semiconductor Corporation. You may freely distribute the text of this Agreement provided you include this copyright notice.  However, modifications to the substantive terms herein are not permitted. 
+
+20170329
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/lattice-osl-2017.json b/docs/lattice-osl-2017.json new file mode 100644 index 0000000000..c42927690e --- /dev/null +++ b/docs/lattice-osl-2017.json @@ -0,0 +1,15 @@ +{ + "key": "lattice-osl-2017", + "short_name": "Lattice Open Source License 2017", + "name": "Lattice Open Source License 2017", + "category": "Copyleft Limited", + "owner": "Lattice", + "homepage_url": "https://www.latticesemi.com/en/FileExplorer?media={E1F07490-EE2A-451E-B4F4-D4BF7B07099C}&document_id=38780", + "spdx_license_key": "LicenseRef-scancode-lattice-osl-2017", + "ignorable_copyrights": [ + "(c) 2006-2017 Lattice Semiconductor Corporation" + ], + "ignorable_holders": [ + "Lattice Semiconductor Corporation" + ] +} \ No newline at end of file diff --git a/docs/lattice-osl-2017.yml b/docs/lattice-osl-2017.yml new file mode 100644 index 0000000000..768fec550b --- /dev/null +++ b/docs/lattice-osl-2017.yml @@ -0,0 +1,11 @@ +key: lattice-osl-2017 +short_name: Lattice Open Source License 2017 +name: Lattice Open Source License 2017 +category: Copyleft Limited +owner: Lattice +homepage_url: https://www.latticesemi.com/en/FileExplorer?media={E1F07490-EE2A-451E-B4F4-D4BF7B07099C}&document_id=38780 +spdx_license_key: LicenseRef-scancode-lattice-osl-2017 +ignorable_copyrights: + - (c) 2006-2017 Lattice Semiconductor Corporation +ignorable_holders: + - Lattice Semiconductor Corporation diff --git a/docs/lavantech.LICENSE b/docs/lavantech.LICENSE index c54f23118e..c742e69328 100644 --- a/docs/lavantech.LICENSE +++ b/docs/lavantech.LICENSE @@ -1,3 +1,17 @@ +--- +key: lavantech +short_name: LavanTech License +name: LavanTech License +category: Commercial +owner: LavanTech +homepage_url: http://www.lavantech.com/license.shtml +spdx_license_key: LicenseRef-scancode-lavantech +text_urls: + - http://www.lavantech.com/license.shtml +ignorable_urls: + - http://www.lavantech.com/license.shtml +--- + LavanTech License http://www.lavantech.com/license.shtml diff --git a/docs/lavantech.html b/docs/lavantech.html index e10830a00f..9db2ff226b 100644 --- a/docs/lavantech.html +++ b/docs/lavantech.html @@ -186,7 +186,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lavantech.json b/docs/lavantech.json index b9e9e18cf8..2318e1b5ff 100644 --- a/docs/lavantech.json +++ b/docs/lavantech.json @@ -1 +1,15 @@ -{"key": "lavantech", "short_name": "LavanTech License", "name": "LavanTech License", "category": "Commercial", "owner": "LavanTech", "homepage_url": "http://www.lavantech.com/license.shtml", "spdx_license_key": "LicenseRef-scancode-lavantech", "text_urls": ["http://www.lavantech.com/license.shtml"], "ignorable_urls": ["http://www.lavantech.com/license.shtml"]} \ No newline at end of file +{ + "key": "lavantech", + "short_name": "LavanTech License", + "name": "LavanTech License", + "category": "Commercial", + "owner": "LavanTech", + "homepage_url": "http://www.lavantech.com/license.shtml", + "spdx_license_key": "LicenseRef-scancode-lavantech", + "text_urls": [ + "http://www.lavantech.com/license.shtml" + ], + "ignorable_urls": [ + "http://www.lavantech.com/license.shtml" + ] +} \ No newline at end of file diff --git a/docs/lbnl-bsd.LICENSE b/docs/lbnl-bsd.LICENSE index 2a3532d3a8..87ee6ccb43 100644 --- a/docs/lbnl-bsd.LICENSE +++ b/docs/lbnl-bsd.LICENSE @@ -1,3 +1,21 @@ +--- +key: lbnl-bsd +short_name: LBNL BSD Variant +name: Lawrence Berkeley National Labs BSD variant license +category: Permissive +owner: Regents of the University of California +homepage_url: https://fedoraproject.org/wiki/Licensing:LBNLBSD?rd=Licensing/LBNLBSD +spdx_license_key: BSD-3-Clause-LBNL +other_urls: + - https://fedoraproject.org/wiki/Licensing/LBNLBSD +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 2003, The Regents of the University of California, through Lawrence Berkeley + National Laboratory +ignorable_holders: + - The Regents of the University of California, through Lawrence Berkeley National Laboratory +--- + Copyright (c) 2003, The Regents of the University of California, through Lawrence Berkeley National Laboratory (subject to receipt of any required approvals from the U.S. Dept. of Energy). All rights reserved. @@ -37,4 +55,4 @@ without imposing a separate written license agreement for such Enhancements, then you hereby grant the following license: a non-exclusive, royalty-free perpetual license to install, use, modify, prepare derivative works, incorporate into other computer software, distribute, and sublicense such Enhancements -or derivative works thereof, in binary and source code form. +or derivative works thereof, in binary and source code form. \ No newline at end of file diff --git a/docs/lbnl-bsd.html b/docs/lbnl-bsd.html index f6543b00a9..9396964287 100644 --- a/docs/lbnl-bsd.html +++ b/docs/lbnl-bsd.html @@ -188,8 +188,7 @@ then you hereby grant the following license: a non-exclusive, royalty-free perpetual license to install, use, modify, prepare derivative works, incorporate into other computer software, distribute, and sublicense such Enhancements -or derivative works thereof, in binary and source code form. - +or derivative works thereof, in binary and source code form.
@@ -201,7 +200,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lbnl-bsd.json b/docs/lbnl-bsd.json index 9225d00786..2d7235fde5 100644 --- a/docs/lbnl-bsd.json +++ b/docs/lbnl-bsd.json @@ -1 +1,19 @@ -{"key": "lbnl-bsd", "short_name": "LBNL BSD Variant", "name": "Lawrence Berkeley National Labs BSD variant license", "category": "Permissive", "owner": "Regents of the University of California", "homepage_url": "https://fedoraproject.org/wiki/Licensing:LBNLBSD?rd=Licensing/LBNLBSD", "spdx_license_key": "BSD-3-Clause-LBNL", "other_urls": ["https://fedoraproject.org/wiki/Licensing/LBNLBSD"], "minimum_coverage": 90, "ignorable_copyrights": ["Copyright (c) 2003, The Regents of the University of California, through Lawrence Berkeley National Laboratory"], "ignorable_holders": ["The Regents of the University of California, through Lawrence Berkeley National Laboratory"]} \ No newline at end of file +{ + "key": "lbnl-bsd", + "short_name": "LBNL BSD Variant", + "name": "Lawrence Berkeley National Labs BSD variant license", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "https://fedoraproject.org/wiki/Licensing:LBNLBSD?rd=Licensing/LBNLBSD", + "spdx_license_key": "BSD-3-Clause-LBNL", + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/LBNLBSD" + ], + "minimum_coverage": 90, + "ignorable_copyrights": [ + "Copyright (c) 2003, The Regents of the University of California, through Lawrence Berkeley National Laboratory" + ], + "ignorable_holders": [ + "The Regents of the University of California, through Lawrence Berkeley National Laboratory" + ] +} \ No newline at end of file diff --git a/docs/lcs-telegraphics.LICENSE b/docs/lcs-telegraphics.LICENSE index 6c03ad2aff..671bd4e021 100644 --- a/docs/lcs-telegraphics.LICENSE +++ b/docs/lcs-telegraphics.LICENSE @@ -1,2 +1,11 @@ +--- +key: lcs-telegraphics +short_name: LCS-Telegraphics License +name: LCS-Telegraphics License +category: Permissive +owner: LCS-Telegraphics +spdx_license_key: LicenseRef-scancode-lcs-telegraphics +--- + The text and information contained in this file may be freely used, -copied, or distributed without compensation or licensing restrictions. +copied, or distributed without compensation or licensing restrictions. \ No newline at end of file diff --git a/docs/lcs-telegraphics.html b/docs/lcs-telegraphics.html index f6b642162d..6c8529d270 100644 --- a/docs/lcs-telegraphics.html +++ b/docs/lcs-telegraphics.html @@ -109,8 +109,7 @@
license_text
The text and information contained in this file may be freely used,
-copied, or distributed without compensation or licensing restrictions.
-
+copied, or distributed without compensation or licensing restrictions.
@@ -122,7 +121,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lcs-telegraphics.json b/docs/lcs-telegraphics.json index 9fda33d36a..aa045db07c 100644 --- a/docs/lcs-telegraphics.json +++ b/docs/lcs-telegraphics.json @@ -1 +1,8 @@ -{"key": "lcs-telegraphics", "short_name": "LCS-Telegraphics License", "name": "LCS-Telegraphics License", "category": "Permissive", "owner": "LCS-Telegraphics", "spdx_license_key": "LicenseRef-scancode-lcs-telegraphics"} \ No newline at end of file +{ + "key": "lcs-telegraphics", + "short_name": "LCS-Telegraphics License", + "name": "LCS-Telegraphics License", + "category": "Permissive", + "owner": "LCS-Telegraphics", + "spdx_license_key": "LicenseRef-scancode-lcs-telegraphics" +} \ No newline at end of file diff --git a/docs/ldap-sdk-free-use.LICENSE b/docs/ldap-sdk-free-use.LICENSE index ad708c81a6..fb0ea651aa 100644 --- a/docs/ldap-sdk-free-use.LICENSE +++ b/docs/ldap-sdk-free-use.LICENSE @@ -1,3 +1,13 @@ +--- +key: ldap-sdk-free-use +short_name: UnboundID LDAP SDK Free Use License +name: UnboundID LDAP SDK Free Use License +category: Permissive +owner: Ping Identity +homepage_url: https://github.com/UnboundID/ldapsdk/blob/master/LICENSE-UnboundID-LDAPSDK.txt +spdx_license_key: LicenseRef-scancode-ldap-sdk-free-use +--- + UnboundID LDAP SDK Free Use License THIS IS AN AGREEMENT BETWEEN YOU ("YOU") AND UNBOUNDID CORP. ("UNBOUNDID") diff --git a/docs/ldap-sdk-free-use.html b/docs/ldap-sdk-free-use.html index 4c66ba8b8d..94834854a5 100644 --- a/docs/ldap-sdk-free-use.html +++ b/docs/ldap-sdk-free-use.html @@ -217,7 +217,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ldap-sdk-free-use.json b/docs/ldap-sdk-free-use.json index c4207c9bdd..2bdfcd7c13 100644 --- a/docs/ldap-sdk-free-use.json +++ b/docs/ldap-sdk-free-use.json @@ -1 +1,9 @@ -{"key": "ldap-sdk-free-use", "short_name": "UnboundID LDAP SDK Free Use License", "name": "UnboundID LDAP SDK Free Use License", "category": "Permissive", "owner": "Ping Identity", "homepage_url": "https://github.com/UnboundID/ldapsdk/blob/master/LICENSE-UnboundID-LDAPSDK.txt", "spdx_license_key": "LicenseRef-scancode-ldap-sdk-free-use"} \ No newline at end of file +{ + "key": "ldap-sdk-free-use", + "short_name": "UnboundID LDAP SDK Free Use License", + "name": "UnboundID LDAP SDK Free Use License", + "category": "Permissive", + "owner": "Ping Identity", + "homepage_url": "https://github.com/UnboundID/ldapsdk/blob/master/LICENSE-UnboundID-LDAPSDK.txt", + "spdx_license_key": "LicenseRef-scancode-ldap-sdk-free-use" +} \ No newline at end of file diff --git a/docs/ldpc-1994.LICENSE b/docs/ldpc-1994.LICENSE index a60d658966..3ff31fc751 100644 --- a/docs/ldpc-1994.LICENSE +++ b/docs/ldpc-1994.LICENSE @@ -1,3 +1,15 @@ +--- +key: ldpc-1994 +short_name: LDPC-1994 +name: Linux Documentation Project Copying License 1994-03-30 +category: Copyleft +owner: Linux Documentation Project +homepage_url: http://www.ibiblio.org/gferg/ldp_old/LDP-COPYRIGHT_94.html +spdx_license_key: LicenseRef-scancode-ldpc-1994 +ignorable_emails: + - mdw@sunsite.unc.edu +--- + Linux Documentation Project Copying License Last modified 30 March 1994 @@ -32,4 +44,4 @@ We would like to be informed of any plans to publish or distribute LDP manuals, We encourage Linux software distributors to distribute the LDP manuals (such as the Installation and Getting Started Guide) with their software. The LDP manuals are intended to be used as the "official" Linux documentation, and we'd like to see mail-order distributors bundling the LDP manuals with the software. As the LDP manuals mature, hopefully they will fulfill this goal more adequately. -Matt Welsh, mdw@sunsite.unc.edu +Matt Welsh, mdw@sunsite.unc.edu \ No newline at end of file diff --git a/docs/ldpc-1994.html b/docs/ldpc-1994.html index f148ae4f7e..274064b899 100644 --- a/docs/ldpc-1994.html +++ b/docs/ldpc-1994.html @@ -158,8 +158,7 @@ We encourage Linux software distributors to distribute the LDP manuals (such as the Installation and Getting Started Guide) with their software. The LDP manuals are intended to be used as the "official" Linux documentation, and we'd like to see mail-order distributors bundling the LDP manuals with the software. As the LDP manuals mature, hopefully they will fulfill this goal more adequately. -Matt Welsh, mdw@sunsite.unc.edu - +Matt Welsh, mdw@sunsite.unc.edu
@@ -171,7 +170,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ldpc-1994.json b/docs/ldpc-1994.json index 9ea1015d9e..be46f08232 100644 --- a/docs/ldpc-1994.json +++ b/docs/ldpc-1994.json @@ -1 +1,12 @@ -{"key": "ldpc-1994", "short_name": "LDPC-1994", "name": "Linux Documentation Project Copying License 1994-03-30", "category": "Copyleft", "owner": "Linux Documentation Project", "homepage_url": "http://www.ibiblio.org/gferg/ldp_old/LDP-COPYRIGHT_94.html", "spdx_license_key": "LicenseRef-scancode-ldpc-1994", "ignorable_emails": ["mdw@sunsite.unc.edu"]} \ No newline at end of file +{ + "key": "ldpc-1994", + "short_name": "LDPC-1994", + "name": "Linux Documentation Project Copying License 1994-03-30", + "category": "Copyleft", + "owner": "Linux Documentation Project", + "homepage_url": "http://www.ibiblio.org/gferg/ldp_old/LDP-COPYRIGHT_94.html", + "spdx_license_key": "LicenseRef-scancode-ldpc-1994", + "ignorable_emails": [ + "mdw@sunsite.unc.edu" + ] +} \ No newline at end of file diff --git a/docs/ldpc-1997.LICENSE b/docs/ldpc-1997.LICENSE index 85ce8a6125..750f8799ca 100644 --- a/docs/ldpc-1997.LICENSE +++ b/docs/ldpc-1997.LICENSE @@ -1,3 +1,17 @@ +--- +key: ldpc-1997 +short_name: LDPC-1997 +name: Linux Documentation Project Copying License 1997-01-06 +category: Copyleft +owner: Linux Documentation Project +homepage_url: https://web.archive.org/web/19990202103614/http://metalab.unc.edu/LDP/COPYRIGHT.html +spdx_license_key: LicenseRef-scancode-ldpc-1997 +text_urls: + - http://linuxmafia.com/faq/Licensing_and_Law/ldpc-license-1997-01-06.html +ignorable_emails: + - mdw@metalab.unc.edu +--- + Linux Documentation Project Copying License Last modified 6 January 1997 @@ -30,4 +44,4 @@ We do not require to be paid royalties for any profit earned from selling LDP ma We would like to be informed of any plans to publish or distribute LDP manuals, just so we know how they're becoming available. If you are publishing or planning to publish any LDP manuals, please send email to Matt Welsh (email mdw@metalab.unc.edu). -We encourage Linux software distributors to distribute the LDP manuals (such as the Installation and Getting Started Guide) with their software. The LDP manuals are intended to be used as the "official" Linux documentation, and we'd like to see mail-order distributors bundling the LDP manuals with the software. As the LDP manuals mature, hopefully they will fulfill this goal more adequately. \ No newline at end of file +We encourage Linux software distributors to distribute the LDP manuals (such as the Installation and Getting Started Guide) with their software. The LDP manuals are intended to be used as the "official" Linux documentation, and we'd like to see mail-order distributors bundling the LDP manuals with the software. As the LDP manuals mature, hopefully they will fulfill this goal more adequately. \ No newline at end of file diff --git a/docs/ldpc-1997.html b/docs/ldpc-1997.html index 1f2d50230d..a1ed1dde7c 100644 --- a/docs/ldpc-1997.html +++ b/docs/ldpc-1997.html @@ -165,7 +165,7 @@ We would like to be informed of any plans to publish or distribute LDP manuals, just so we know how they're becoming available. If you are publishing or planning to publish any LDP manuals, please send email to Matt Welsh (email mdw@metalab.unc.edu). -We encourage Linux software distributors to distribute the LDP manuals (such as the Installation and Getting Started Guide) with their software. The LDP manuals are intended to be used as the "official" Linux documentation, and we'd like to see mail-order distributors bundling the LDP manuals with the software. As the LDP manuals mature, hopefully they will fulfill this goal more adequately. +We encourage Linux software distributors to distribute the LDP manuals (such as the Installation and Getting Started Guide) with their software. The LDP manuals are intended to be used as the "official" Linux documentation, and we'd like to see mail-order distributors bundling the LDP manuals with the software. As the LDP manuals mature, hopefully they will fulfill this goal more adequately.
@@ -177,7 +177,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ldpc-1997.json b/docs/ldpc-1997.json index f31e9fab7b..64840c4929 100644 --- a/docs/ldpc-1997.json +++ b/docs/ldpc-1997.json @@ -1 +1,15 @@ -{"key": "ldpc-1997", "short_name": "LDPC-1997", "name": "Linux Documentation Project Copying License 1997-01-06", "category": "Copyleft", "owner": "Linux Documentation Project", "homepage_url": "https://web.archive.org/web/19990202103614/http://metalab.unc.edu/LDP/COPYRIGHT.html", "spdx_license_key": "LicenseRef-scancode-ldpc-1997", "text_urls": ["http://linuxmafia.com/faq/Licensing_and_Law/ldpc-license-1997-01-06.html"], "ignorable_emails": ["mdw@metalab.unc.edu"]} \ No newline at end of file +{ + "key": "ldpc-1997", + "short_name": "LDPC-1997", + "name": "Linux Documentation Project Copying License 1997-01-06", + "category": "Copyleft", + "owner": "Linux Documentation Project", + "homepage_url": "https://web.archive.org/web/19990202103614/http://metalab.unc.edu/LDP/COPYRIGHT.html", + "spdx_license_key": "LicenseRef-scancode-ldpc-1997", + "text_urls": [ + "http://linuxmafia.com/faq/Licensing_and_Law/ldpc-license-1997-01-06.html" + ], + "ignorable_emails": [ + "mdw@metalab.unc.edu" + ] +} \ No newline at end of file diff --git a/docs/ldpc-1999.LICENSE b/docs/ldpc-1999.LICENSE index af7600bde7..d9db022731 100644 --- a/docs/ldpc-1999.LICENSE +++ b/docs/ldpc-1999.LICENSE @@ -1,3 +1,13 @@ +--- +key: ldpc-1999 +short_name: LDPC-1999 +name: Linux Documentation Project Copying License 1999-09-30 +category: Copyleft +owner: Linux Documentation Project +spdx_license_key: LicenseRef-scancode-ldpc-1999 +text_urls: + - http://linuxmafia.com/faq/Licensing_and_Law/ldpc-license-1999-09-16.html +--- Linux Documentation Project Copying License Last Revision: 16 September 1999 @@ -18,5 +28,4 @@ Exceptions to these rules may be granted for academic purposes: write to the aut Please read the LDP Manifesto for further information. If you are authoring a work, the Manifesto provides a sample copyright (derived from the previous area) to utilize, if you so desire. There is also a section devoted to Publishing LDP Manuals. If you're a publishing company interested in distributing any of the LDP manuals, please read that particular section. -If you have any questions, please email the LDP coordinator, Guylhem Aznar. - +If you have any questions, please email the LDP coordinator, Guylhem Aznar. \ No newline at end of file diff --git a/docs/ldpc-1999.html b/docs/ldpc-1999.html index 70463fa25b..43689795f3 100644 --- a/docs/ldpc-1999.html +++ b/docs/ldpc-1999.html @@ -117,8 +117,7 @@
license_text
-

-Linux Documentation Project Copying License
+    
Linux Documentation Project Copying License
 Last Revision: 16 September 1999
 
 Please read the license carefully---it is somewhat like the GNU General Public License, but there are several conditions in it that differ from what you may be used to. If you have any questions, please email the LDP coordinator, Guylhem Aznar.
@@ -137,9 +136,7 @@
 
 Please read the LDP Manifesto for further information. If you are authoring a work, the Manifesto provides a sample copyright (derived from the previous area) to utilize, if you so desire. There is also a section devoted to Publishing LDP Manuals. If you're a publishing company interested in distributing any of the LDP manuals, please read that particular section.
 
-If you have any questions, please email the LDP coordinator, Guylhem Aznar.
-
-
+If you have any questions, please email the LDP coordinator, Guylhem Aznar.
@@ -151,7 +148,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ldpc-1999.json b/docs/ldpc-1999.json index 92855d93b3..26bb3b8394 100644 --- a/docs/ldpc-1999.json +++ b/docs/ldpc-1999.json @@ -1 +1,11 @@ -{"key": "ldpc-1999", "short_name": "LDPC-1999", "name": "Linux Documentation Project Copying License 1999-09-30", "category": "Copyleft", "owner": "Linux Documentation Project", "spdx_license_key": "LicenseRef-scancode-ldpc-1999", "text_urls": ["http://linuxmafia.com/faq/Licensing_and_Law/ldpc-license-1999-09-16.html"]} \ No newline at end of file +{ + "key": "ldpc-1999", + "short_name": "LDPC-1999", + "name": "Linux Documentation Project Copying License 1999-09-30", + "category": "Copyleft", + "owner": "Linux Documentation Project", + "spdx_license_key": "LicenseRef-scancode-ldpc-1999", + "text_urls": [ + "http://linuxmafia.com/faq/Licensing_and_Law/ldpc-license-1999-09-16.html" + ] +} \ No newline at end of file diff --git a/docs/ldpgpl-1.LICENSE b/docs/ldpgpl-1.LICENSE index 8210b4faa7..7db3936b31 100644 --- a/docs/ldpgpl-1.LICENSE +++ b/docs/ldpgpl-1.LICENSE @@ -1,3 +1,14 @@ +--- +key: ldpgpl-1 +short_name: LDPGPL-1 +name: Linux Documentation Project General Public License v1, September 1998 +category: Copyleft +owner: Linux Documentation Project +spdx_license_key: LicenseRef-scancode-ldpgpl-1 +text_urls: + - https://old.calculate-linux.org/packages/licenses/LDP-1 +--- + LDP GENERAL PUBLIC LICENSE Version 1, September 1998 diff --git a/docs/ldpgpl-1.html b/docs/ldpgpl-1.html index c2e2e72abd..5b1d06a06a 100644 --- a/docs/ldpgpl-1.html +++ b/docs/ldpgpl-1.html @@ -189,7 +189,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ldpgpl-1.json b/docs/ldpgpl-1.json index 864adfc4c2..a59ad5cee5 100644 --- a/docs/ldpgpl-1.json +++ b/docs/ldpgpl-1.json @@ -1 +1,11 @@ -{"key": "ldpgpl-1", "short_name": "LDPGPL-1", "name": "Linux Documentation Project General Public License v1, September 1998", "category": "Copyleft", "owner": "Linux Documentation Project", "spdx_license_key": "LicenseRef-scancode-ldpgpl-1", "text_urls": ["https://old.calculate-linux.org/packages/licenses/LDP-1"]} \ No newline at end of file +{ + "key": "ldpgpl-1", + "short_name": "LDPGPL-1", + "name": "Linux Documentation Project General Public License v1, September 1998", + "category": "Copyleft", + "owner": "Linux Documentation Project", + "spdx_license_key": "LicenseRef-scancode-ldpgpl-1", + "text_urls": [ + "https://old.calculate-linux.org/packages/licenses/LDP-1" + ] +} \ No newline at end of file diff --git a/docs/ldpgpl-1a.LICENSE b/docs/ldpgpl-1a.LICENSE index 2039427fc8..179c835e45 100644 --- a/docs/ldpgpl-1a.LICENSE +++ b/docs/ldpgpl-1a.LICENSE @@ -1,3 +1,14 @@ +--- +key: ldpgpl-1a +short_name: LDPGPL-1a +name: Linux Documentation Project General Public License v1a, November 1998 +category: Copyleft +owner: Linux Documentation Project +spdx_license_key: LicenseRef-scancode-ldpgpl-1a +text_urls: + - https://old.calculate-linux.org/packages/licenses/LDP-1a +--- + LDP GENERAL PUBLIC LICENSE Version 1a, November 1998 diff --git a/docs/ldpgpl-1a.html b/docs/ldpgpl-1a.html index 593c42b1de..60a1f5cee2 100644 --- a/docs/ldpgpl-1a.html +++ b/docs/ldpgpl-1a.html @@ -186,7 +186,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ldpgpl-1a.json b/docs/ldpgpl-1a.json index eea89eff3c..87fe6d2374 100644 --- a/docs/ldpgpl-1a.json +++ b/docs/ldpgpl-1a.json @@ -1 +1,11 @@ -{"key": "ldpgpl-1a", "short_name": "LDPGPL-1a", "name": "Linux Documentation Project General Public License v1a, November 1998", "category": "Copyleft", "owner": "Linux Documentation Project", "spdx_license_key": "LicenseRef-scancode-ldpgpl-1a", "text_urls": ["https://old.calculate-linux.org/packages/licenses/LDP-1a"]} \ No newline at end of file +{ + "key": "ldpgpl-1a", + "short_name": "LDPGPL-1a", + "name": "Linux Documentation Project General Public License v1a, November 1998", + "category": "Copyleft", + "owner": "Linux Documentation Project", + "spdx_license_key": "LicenseRef-scancode-ldpgpl-1a", + "text_urls": [ + "https://old.calculate-linux.org/packages/licenses/LDP-1a" + ] +} \ No newline at end of file diff --git a/docs/ldpl-2.0.LICENSE b/docs/ldpl-2.0.LICENSE index 00ece9de9e..27975d049b 100644 --- a/docs/ldpl-2.0.LICENSE +++ b/docs/ldpl-2.0.LICENSE @@ -1,3 +1,18 @@ +--- +key: ldpl-2.0 +short_name: LDPL-2.0 +name: Linux Documentation Project License (LDPL) v2.0 +category: Copyleft +owner: Linux Documentation Project +homepage_url: http://tldp.org/COPYRIGHT.html +spdx_license_key: LicenseRef-scancode-ldpl-2.0 +text_urls: + - http://linuxmafia.com/faq/Licensing_and_Law/ldp-license-2.0.html +ignorable_urls: + - http://sunsite.unc.edu/LDP +ignorable_emails: + - guylhem@metalab.unc.edu +--- LINUX DOCUMENTATION PROJECT LICENSE (LDPL) v2.0, 12 January 1998 @@ -51,4 +66,4 @@ LDP Policy Appendices LDP authors who want to include their own license on LDP works may do so, as long as their terms are not more restrictive than the LDP license, except that they may require that the document may not be modified. - If you have questions about the LDP License, please contact Guylhem Aznar, guylhem@metalab.unc.edu. + If you have questions about the LDP License, please contact Guylhem Aznar, guylhem@metalab.unc.edu. \ No newline at end of file diff --git a/docs/ldpl-2.0.html b/docs/ldpl-2.0.html index e9b1eab366..236a6cbe5f 100644 --- a/docs/ldpl-2.0.html +++ b/docs/ldpl-2.0.html @@ -142,8 +142,7 @@
license_text
-

-LINUX DOCUMENTATION PROJECT LICENSE (LDPL) v2.0, 12 January 1998
+    
LINUX DOCUMENTATION PROJECT LICENSE (LDPL) v2.0, 12 January 1998
 
     COPYRIGHT
 
@@ -195,8 +194,7 @@
 
     LDP authors who want to include their own license on LDP works may do so, as long as their terms are not more restrictive than the LDP license, except that they may require that the document may not be modified.
 
-    If you have questions about the LDP License, please contact Guylhem Aznar, guylhem@metalab.unc.edu.
-
+ If you have questions about the LDP License, please contact Guylhem Aznar, guylhem@metalab.unc.edu.
@@ -208,7 +206,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ldpl-2.0.json b/docs/ldpl-2.0.json index a8c2ddb04c..c7d077feca 100644 --- a/docs/ldpl-2.0.json +++ b/docs/ldpl-2.0.json @@ -1 +1,18 @@ -{"key": "ldpl-2.0", "short_name": "LDPL-2.0", "name": "Linux Documentation Project License (LDPL) v2.0", "category": "Copyleft", "owner": "Linux Documentation Project", "homepage_url": "http://tldp.org/COPYRIGHT.html", "spdx_license_key": "LicenseRef-scancode-ldpl-2.0", "text_urls": ["http://linuxmafia.com/faq/Licensing_and_Law/ldp-license-2.0.html"], "ignorable_urls": ["http://sunsite.unc.edu/LDP"], "ignorable_emails": ["guylhem@metalab.unc.edu"]} \ No newline at end of file +{ + "key": "ldpl-2.0", + "short_name": "LDPL-2.0", + "name": "Linux Documentation Project License (LDPL) v2.0", + "category": "Copyleft", + "owner": "Linux Documentation Project", + "homepage_url": "http://tldp.org/COPYRIGHT.html", + "spdx_license_key": "LicenseRef-scancode-ldpl-2.0", + "text_urls": [ + "http://linuxmafia.com/faq/Licensing_and_Law/ldp-license-2.0.html" + ], + "ignorable_urls": [ + "http://sunsite.unc.edu/LDP" + ], + "ignorable_emails": [ + "guylhem@metalab.unc.edu" + ] +} \ No newline at end of file diff --git a/docs/ldpm-1998.LICENSE b/docs/ldpm-1998.LICENSE index 5f044171f1..634ba36588 100644 --- a/docs/ldpm-1998.LICENSE +++ b/docs/ldpm-1998.LICENSE @@ -1,3 +1,13 @@ +--- +key: ldpm-1998 +short_name: LDPM-1998 +name: Linux Documentation Project Manifesto Template License 1998-09-21 +category: Copyleft +owner: Linux Documentation Project +homepage_url: http://www.ibiblio.org/gferg/ldp_old/LDP-Manifesto.html +spdx_license_key: LicenseRef-scancode-ldpm-1998 +--- + This is the Linux Documentation Project ``Manifesto'' Last Revision 21 September 1998, by Michael K. Johnson @@ -13,4 +23,4 @@ This manual may be reproduced and distributed in whole or in part, without fee, Exceptions to these rules may be granted for academic purposes: Write to the author and ask. These restrictions are here to protect us as authors, not to restrict you as learners and educators. -All source code in this document is placed under the GNU General Public License, available via anonymous FTP from prep.ai.mit.edu:/pub/gnu/COPYING. \ No newline at end of file +All source code in this document is placed under the GNU General Public License, available via anonymous FTP from prep.ai.mit.edu:/pub/gnu/COPYING. \ No newline at end of file diff --git a/docs/ldpm-1998.html b/docs/ldpm-1998.html index cd14fb2f72..4d26f42101 100644 --- a/docs/ldpm-1998.html +++ b/docs/ldpm-1998.html @@ -130,7 +130,7 @@ Exceptions to these rules may be granted for academic purposes: Write to the author and ask. These restrictions are here to protect us as authors, not to restrict you as learners and educators. -All source code in this document is placed under the GNU General Public License, available via anonymous FTP from prep.ai.mit.edu:/pub/gnu/COPYING. +All source code in this document is placed under the GNU General Public License, available via anonymous FTP from prep.ai.mit.edu:/pub/gnu/COPYING.
@@ -142,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ldpm-1998.json b/docs/ldpm-1998.json index bbd7f64c19..c58cebbe86 100644 --- a/docs/ldpm-1998.json +++ b/docs/ldpm-1998.json @@ -1 +1,9 @@ -{"key": "ldpm-1998", "short_name": "LDPM-1998", "name": "Linux Documentation Project Manifesto Template License 1998-09-21", "category": "Copyleft", "owner": "Linux Documentation Project", "homepage_url": "http://www.ibiblio.org/gferg/ldp_old/LDP-Manifesto.html", "spdx_license_key": "LicenseRef-scancode-ldpm-1998"} \ No newline at end of file +{ + "key": "ldpm-1998", + "short_name": "LDPM-1998", + "name": "Linux Documentation Project Manifesto Template License 1998-09-21", + "category": "Copyleft", + "owner": "Linux Documentation Project", + "homepage_url": "http://www.ibiblio.org/gferg/ldp_old/LDP-Manifesto.html", + "spdx_license_key": "LicenseRef-scancode-ldpm-1998" +} \ No newline at end of file diff --git a/docs/leap-motion-sdk-2019.LICENSE b/docs/leap-motion-sdk-2019.LICENSE index f947509d04..2981b89466 100644 --- a/docs/leap-motion-sdk-2019.LICENSE +++ b/docs/leap-motion-sdk-2019.LICENSE @@ -1,3 +1,19 @@ +--- +key: leap-motion-sdk-2019 +short_name: Leap Motion SDK Agreement 2019 +name: Leap Motion SDK Agreement 2019 +category: Proprietary Free +owner: Ultraleap +homepage_url: https://central.leapmotion.com/agreements/SdkAgreement +spdx_license_key: LicenseRef-scancode-leap-motion-sdk-2019 +faq_url: https://support.leapmotion.com/hc/en-us/articles/360004340197-SDK-Agreement-FAQs +ignorable_urls: + - http://leapmotion.com/legal +ignorable_emails: + - developers@leapmotion.com + - partnerships@leapmotion.com +--- + Leap Motion SDK Agreement A note on our SDK Agreement diff --git a/docs/leap-motion-sdk-2019.html b/docs/leap-motion-sdk-2019.html index dc662ccaec..23733d98df 100644 --- a/docs/leap-motion-sdk-2019.html +++ b/docs/leap-motion-sdk-2019.html @@ -271,7 +271,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/leap-motion-sdk-2019.json b/docs/leap-motion-sdk-2019.json index f2571ec697..af501a9fa1 100644 --- a/docs/leap-motion-sdk-2019.json +++ b/docs/leap-motion-sdk-2019.json @@ -1 +1,17 @@ -{"key": "leap-motion-sdk-2019", "short_name": "Leap Motion SDK Agreement 2019", "name": "Leap Motion SDK Agreement 2019", "category": "Proprietary Free", "owner": "Ultraleap", "homepage_url": "https://central.leapmotion.com/agreements/SdkAgreement", "spdx_license_key": "LicenseRef-scancode-leap-motion-sdk-2019", "faq_url": "https://support.leapmotion.com/hc/en-us/articles/360004340197-SDK-Agreement-FAQs", "ignorable_urls": ["http://leapmotion.com/legal"], "ignorable_emails": ["developers@leapmotion.com", "partnerships@leapmotion.com"]} \ No newline at end of file +{ + "key": "leap-motion-sdk-2019", + "short_name": "Leap Motion SDK Agreement 2019", + "name": "Leap Motion SDK Agreement 2019", + "category": "Proprietary Free", + "owner": "Ultraleap", + "homepage_url": "https://central.leapmotion.com/agreements/SdkAgreement", + "spdx_license_key": "LicenseRef-scancode-leap-motion-sdk-2019", + "faq_url": "https://support.leapmotion.com/hc/en-us/articles/360004340197-SDK-Agreement-FAQs", + "ignorable_urls": [ + "http://leapmotion.com/legal" + ], + "ignorable_emails": [ + "developers@leapmotion.com", + "partnerships@leapmotion.com" + ] +} \ No newline at end of file diff --git a/docs/leptonica.LICENSE b/docs/leptonica.LICENSE index 5c025afed3..4b72e9f552 100644 --- a/docs/leptonica.LICENSE +++ b/docs/leptonica.LICENSE @@ -1,3 +1,13 @@ +--- +key: leptonica +short_name: Leptonica License +name: Leptonica License +category: Permissive +owner: Leptonica +homepage_url: https://fedoraproject.org/wiki/Licensing/Leptonica +spdx_license_key: Leptonica +--- + This software is distributed in the hope that it will be useful, but with NO WARRANTY OF ANY KIND. No author or distributor accepts responsibility to anyone for the consequences of using this software, or for whether it serves any particular purpose or works at all, unless he or she says so in writing. Everyone is granted permission to copy, modify and redistribute this source code, for commercial or non-commercial purposes, with the following restrictions: diff --git a/docs/leptonica.html b/docs/leptonica.html index b832b59afc..ab8c553676 100644 --- a/docs/leptonica.html +++ b/docs/leptonica.html @@ -133,7 +133,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/leptonica.json b/docs/leptonica.json index 1fcb4fda05..d2c0b74b53 100644 --- a/docs/leptonica.json +++ b/docs/leptonica.json @@ -1 +1,9 @@ -{"key": "leptonica", "short_name": "Leptonica License", "name": "Leptonica License", "category": "Permissive", "owner": "Leptonica", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Leptonica", "spdx_license_key": "Leptonica"} \ No newline at end of file +{ + "key": "leptonica", + "short_name": "Leptonica License", + "name": "Leptonica License", + "category": "Permissive", + "owner": "Leptonica", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Leptonica", + "spdx_license_key": "Leptonica" +} \ No newline at end of file diff --git a/docs/lgpl-2.0-fltk.LICENSE b/docs/lgpl-2.0-fltk.LICENSE index 27a32a2587..0cb00d800c 100644 --- a/docs/lgpl-2.0-fltk.LICENSE +++ b/docs/lgpl-2.0-fltk.LICENSE @@ -1,3 +1,15 @@ +--- +key: lgpl-2.0-fltk +is_deprecated: yes +short_name: LGPL 2.0 with FLTK exception +name: LGPL 2.0 with FLTK exception +category: Copyleft Limited +owner: FLTK +homepage_url: http://www.fltk.org/COPYING.php +notes: replaced by fltk-exception-lgpl-2.0 +is_exception: yes +--- + FLTK License December 11, 2001 @@ -40,4 +52,4 @@ exceptions: documentation to satisfy this requirement: [program/widget] is based in part on the work of - the FLTK project (http://www.fltk.org). + the FLTK project (http://www.fltk.org). \ No newline at end of file diff --git a/docs/lgpl-2.0-fltk.html b/docs/lgpl-2.0-fltk.html index 3297554377..f9266cf086 100644 --- a/docs/lgpl-2.0-fltk.html +++ b/docs/lgpl-2.0-fltk.html @@ -171,8 +171,7 @@ documentation to satisfy this requirement: [program/widget] is based in part on the work of - the FLTK project (http://www.fltk.org). - + the FLTK project (http://www.fltk.org).
@@ -184,7 +183,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-2.0-fltk.json b/docs/lgpl-2.0-fltk.json index b02dd62fcb..99ffbfe442 100644 --- a/docs/lgpl-2.0-fltk.json +++ b/docs/lgpl-2.0-fltk.json @@ -1 +1,11 @@ -{"key": "lgpl-2.0-fltk", "is_deprecated": true, "short_name": "LGPL 2.0 with FLTK exception", "name": "LGPL 2.0 with FLTK exception", "category": "Copyleft Limited", "owner": "FLTK", "homepage_url": "http://www.fltk.org/COPYING.php", "notes": "replaced by fltk-exception-lgpl-2.0", "is_exception": true} \ No newline at end of file +{ + "key": "lgpl-2.0-fltk", + "is_deprecated": true, + "short_name": "LGPL 2.0 with FLTK exception", + "name": "LGPL 2.0 with FLTK exception", + "category": "Copyleft Limited", + "owner": "FLTK", + "homepage_url": "http://www.fltk.org/COPYING.php", + "notes": "replaced by fltk-exception-lgpl-2.0", + "is_exception": true +} \ No newline at end of file diff --git a/docs/lgpl-2.0-plus-gcc.LICENSE b/docs/lgpl-2.0-plus-gcc.LICENSE index 7feaf4c116..0581dade15 100644 --- a/docs/lgpl-2.0-plus-gcc.LICENSE +++ b/docs/lgpl-2.0-plus-gcc.LICENSE @@ -1,3 +1,15 @@ +--- +key: lgpl-2.0-plus-gcc +is_deprecated: yes +short_name: LGPL 2.0 or later with GCC exception +name: LGPL 2.0 or later with GCC Runtime Library exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +text_urls: + - http://www.opensource.apple.com/source/libcppabi/libcppabi-26/include/demangle.h +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or diff --git a/docs/lgpl-2.0-plus-gcc.html b/docs/lgpl-2.0-plus-gcc.html index 2f1834be7d..a86ede627c 100644 --- a/docs/lgpl-2.0-plus-gcc.html +++ b/docs/lgpl-2.0-plus-gcc.html @@ -158,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-2.0-plus-gcc.json b/docs/lgpl-2.0-plus-gcc.json index 164f651647..135b086595 100644 --- a/docs/lgpl-2.0-plus-gcc.json +++ b/docs/lgpl-2.0-plus-gcc.json @@ -1 +1,12 @@ -{"key": "lgpl-2.0-plus-gcc", "is_deprecated": true, "short_name": "LGPL 2.0 or later with GCC exception", "name": "LGPL 2.0 or later with GCC Runtime Library exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "is_exception": true, "text_urls": ["http://www.opensource.apple.com/source/libcppabi/libcppabi-26/include/demangle.h"]} \ No newline at end of file +{ + "key": "lgpl-2.0-plus-gcc", + "is_deprecated": true, + "short_name": "LGPL 2.0 or later with GCC exception", + "name": "LGPL 2.0 or later with GCC Runtime Library exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "is_exception": true, + "text_urls": [ + "http://www.opensource.apple.com/source/libcppabi/libcppabi-26/include/demangle.h" + ] +} \ No newline at end of file diff --git a/docs/lgpl-2.0-plus.LICENSE b/docs/lgpl-2.0-plus.LICENSE index 3a8fadf170..c284417937 100644 --- a/docs/lgpl-2.0-plus.LICENSE +++ b/docs/lgpl-2.0-plus.LICENSE @@ -1,3 +1,30 @@ +--- +key: lgpl-2.0-plus +short_name: LGPL 2.0 or later +name: GNU Library General Public License 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +notes: | + Per SPDX.org, this license was released June 1991. This license has been + superseded by LGPL v2.1 +spdx_license_key: LGPL-2.0-or-later +other_spdx_license_keys: + - LGPL-2.0+ + - LicenseRef-LGPL +text_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html +other_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any @@ -491,4 +518,4 @@ necessary. Here is a sample; alter the names: , 1 April 1990 Ty Coon, President of Vice -That's all there is to it! +That's all there is to it! \ No newline at end of file diff --git a/docs/lgpl-2.0-plus.html b/docs/lgpl-2.0-plus.html index 584fc16177..4e05dbb739 100644 --- a/docs/lgpl-2.0-plus.html +++ b/docs/lgpl-2.0-plus.html @@ -669,8 +669,7 @@ <signature of Ty Coon>, 1 April 1990 Ty Coon, President of Vice -That's all there is to it! - +That's all there is to it!
@@ -682,7 +681,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-2.0-plus.json b/docs/lgpl-2.0-plus.json index 78dbbac198..eecf681572 100644 --- a/docs/lgpl-2.0-plus.json +++ b/docs/lgpl-2.0-plus.json @@ -1 +1,29 @@ -{"key": "lgpl-2.0-plus", "short_name": "LGPL 2.0 or later", "name": "GNU Library General Public License 2.0 or later", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html", "notes": "Per SPDX.org, this license was released June 1991. This license has been\nsuperseded by LGPL v2.1\n", "spdx_license_key": "LGPL-2.0-or-later", "other_spdx_license_keys": ["LGPL-2.0+", "LicenseRef-LGPL"], "text_urls": ["http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"], "other_urls": ["https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"], "minimum_coverage": 99, "ignorable_copyrights": ["Copyright (c) 1991 Free Software Foundation, Inc.", "copyrighted by the Free Software Foundation"], "ignorable_holders": ["Free Software Foundation, Inc.", "the Free Software Foundation"]} \ No newline at end of file +{ + "key": "lgpl-2.0-plus", + "short_name": "LGPL 2.0 or later", + "name": "GNU Library General Public License 2.0 or later", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html", + "notes": "Per SPDX.org, this license was released June 1991. This license has been\nsuperseded by LGPL v2.1\n", + "spdx_license_key": "LGPL-2.0-or-later", + "other_spdx_license_keys": [ + "LGPL-2.0+", + "LicenseRef-LGPL" + ], + "text_urls": [ + "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" + ], + "other_urls": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" + ], + "minimum_coverage": 99, + "ignorable_copyrights": [ + "Copyright (c) 1991 Free Software Foundation, Inc.", + "copyrighted by the Free Software Foundation" + ], + "ignorable_holders": [ + "Free Software Foundation, Inc.", + "the Free Software Foundation" + ] +} \ No newline at end of file diff --git a/docs/lgpl-2.0.LICENSE b/docs/lgpl-2.0.LICENSE index 9e0c266c88..0c7a3de06a 100644 --- a/docs/lgpl-2.0.LICENSE +++ b/docs/lgpl-2.0.LICENSE @@ -1,3 +1,35 @@ +--- +key: lgpl-2.0 +short_name: LGPL 2.0 +name: GNU Library General Public License 2.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +notes: | + Per SPDX.org, this license was released June 1991. This license has been + superseded by LGPL v2.1 +spdx_license_key: LGPL-2.0-only +other_spdx_license_keys: + - LGPL-2.0 + - LicenseRef-LGPL-2 + - LicenseRef-LGPL-2.0 +text_urls: + - http://www.gnu.org/licenses/lgpl-2.0.html + - http://www.gnu.org/licenses/lgpl-2.0.txt + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt + - http://www.gnu.org/licenses/old-licenses/library.txt +other_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html + - http://www.gnu.org/licenses/old-licenses/library.html + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html +ignorable_copyrights: + - Copyright (c) 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LIBRARY GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -478,4 +510,4 @@ necessary. Here is a sample; alter the names: , 1 April 1990 Ty Coon, President of Vice -That's all there is to it! +That's all there is to it! \ No newline at end of file diff --git a/docs/lgpl-2.0.html b/docs/lgpl-2.0.html index d45ce39fd4..5c4fda7ae9 100644 --- a/docs/lgpl-2.0.html +++ b/docs/lgpl-2.0.html @@ -649,8 +649,7 @@ <signature of Ty Coon>, 1 April 1990 Ty Coon, President of Vice -That's all there is to it! - +That's all there is to it!
@@ -662,7 +661,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-2.0.json b/docs/lgpl-2.0.json index 12179421b1..dd9ee8e4d9 100644 --- a/docs/lgpl-2.0.json +++ b/docs/lgpl-2.0.json @@ -1 +1,34 @@ -{"key": "lgpl-2.0", "short_name": "LGPL 2.0", "name": "GNU Library General Public License 2.0", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html", "notes": "Per SPDX.org, this license was released June 1991. This license has been\nsuperseded by LGPL v2.1\n", "spdx_license_key": "LGPL-2.0-only", "other_spdx_license_keys": ["LGPL-2.0", "LicenseRef-LGPL-2", "LicenseRef-LGPL-2.0"], "text_urls": ["http://www.gnu.org/licenses/lgpl-2.0.html", "http://www.gnu.org/licenses/lgpl-2.0.txt", "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt", "http://www.gnu.org/licenses/old-licenses/library.txt"], "other_urls": ["http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", "http://www.gnu.org/licenses/old-licenses/library.html", "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"], "ignorable_copyrights": ["Copyright (c) 1991 Free Software Foundation, Inc.", "copyrighted by the Free Software Foundation"], "ignorable_holders": ["Free Software Foundation, Inc.", "the Free Software Foundation"]} \ No newline at end of file +{ + "key": "lgpl-2.0", + "short_name": "LGPL 2.0", + "name": "GNU Library General Public License 2.0", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html", + "notes": "Per SPDX.org, this license was released June 1991. This license has been\nsuperseded by LGPL v2.1\n", + "spdx_license_key": "LGPL-2.0-only", + "other_spdx_license_keys": [ + "LGPL-2.0", + "LicenseRef-LGPL-2", + "LicenseRef-LGPL-2.0" + ], + "text_urls": [ + "http://www.gnu.org/licenses/lgpl-2.0.html", + "http://www.gnu.org/licenses/lgpl-2.0.txt", + "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt", + "http://www.gnu.org/licenses/old-licenses/library.txt" + ], + "other_urls": [ + "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html", + "http://www.gnu.org/licenses/old-licenses/library.html", + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 1991 Free Software Foundation, Inc.", + "copyrighted by the Free Software Foundation" + ], + "ignorable_holders": [ + "Free Software Foundation, Inc.", + "the Free Software Foundation" + ] +} \ No newline at end of file diff --git a/docs/lgpl-2.1-digia-qt.LICENSE b/docs/lgpl-2.1-digia-qt.LICENSE index 42973f05af..b0475cfe32 100644 --- a/docs/lgpl-2.1-digia-qt.LICENSE +++ b/docs/lgpl-2.1-digia-qt.LICENSE @@ -1,3 +1,15 @@ +--- +key: lgpl-2.1-digia-qt +is_deprecated: yes +short_name: LGPL 2.1 with Digia Qt Exception +name: LGPL 2.1 with Digia Qt Exception +category: Copyleft Limited +owner: Digia +homepage_url: http://doc.qt.io/qt-5/lgpl.html +notes: replaced by qt-company-exception-2017-lgpl-2.1 and then by qt-lgpl-exception-1.1 +is_exception: yes +--- + Digia Qt LGPL Exception version 1.1 As an additional permission to the GNU Lesser General Public License version diff --git a/docs/lgpl-2.1-digia-qt.html b/docs/lgpl-2.1-digia-qt.html index 8b5d07ab8d..fe98761c00 100644 --- a/docs/lgpl-2.1-digia-qt.html +++ b/docs/lgpl-2.1-digia-qt.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-2.1-digia-qt.json b/docs/lgpl-2.1-digia-qt.json index 16909072dc..057949ffa9 100644 --- a/docs/lgpl-2.1-digia-qt.json +++ b/docs/lgpl-2.1-digia-qt.json @@ -1 +1,11 @@ -{"key": "lgpl-2.1-digia-qt", "is_deprecated": true, "short_name": "LGPL 2.1 with Digia Qt Exception", "name": "LGPL 2.1 with Digia Qt Exception", "category": "Copyleft Limited", "owner": "Digia", "homepage_url": "http://doc.qt.io/qt-5/lgpl.html", "notes": "replaced by qt-company-exception-2017-lgpl-2.1 and then by qt-lgpl-exception-1.1", "is_exception": true} \ No newline at end of file +{ + "key": "lgpl-2.1-digia-qt", + "is_deprecated": true, + "short_name": "LGPL 2.1 with Digia Qt Exception", + "name": "LGPL 2.1 with Digia Qt Exception", + "category": "Copyleft Limited", + "owner": "Digia", + "homepage_url": "http://doc.qt.io/qt-5/lgpl.html", + "notes": "replaced by qt-company-exception-2017-lgpl-2.1 and then by qt-lgpl-exception-1.1", + "is_exception": true +} \ No newline at end of file diff --git a/docs/lgpl-2.1-nokia-qt-1.0.LICENSE b/docs/lgpl-2.1-nokia-qt-1.0.LICENSE index 8c28aac70b..3dd6b9c46b 100644 --- a/docs/lgpl-2.1-nokia-qt-1.0.LICENSE +++ b/docs/lgpl-2.1-nokia-qt-1.0.LICENSE @@ -1,7 +1,18 @@ +--- +key: lgpl-2.1-nokia-qt-1.0 +is_deprecated: yes +short_name: Nokia Qt LGPL Exception 1.0 +name: Nokia Qt LGPL Exception v1.0 +category: Copyleft Limited +owner: Nokia +notes: Replaced by qt-company-exception-lgpl-2.1 +is_exception: yes +--- + As a special exception to the GNU Lesser General Public License version 2.1, the object code form of a "work that uses the Library" may incorporate material from a header file that is part of the Library. You may distribute such object code under terms of your choice, provided that the incorporated material (i) does not exceed more than 5% of the total size of the Library; and (ii) is limited to numerical parameters, data structure layouts, accessors, macros, inline -functions and templates. +functions and templates. \ No newline at end of file diff --git a/docs/lgpl-2.1-nokia-qt-1.0.html b/docs/lgpl-2.1-nokia-qt-1.0.html index 52914fa6bc..f05af3a698 100644 --- a/docs/lgpl-2.1-nokia-qt-1.0.html +++ b/docs/lgpl-2.1-nokia-qt-1.0.html @@ -128,8 +128,7 @@ under terms of your choice, provided that the incorporated material (i) does not exceed more than 5% of the total size of the Library; and (ii) is limited to numerical parameters, data structure layouts, accessors, macros, inline -functions and templates. - +functions and templates.
@@ -141,7 +140,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-2.1-nokia-qt-1.0.json b/docs/lgpl-2.1-nokia-qt-1.0.json index d6b765966c..b0b78e15a9 100644 --- a/docs/lgpl-2.1-nokia-qt-1.0.json +++ b/docs/lgpl-2.1-nokia-qt-1.0.json @@ -1 +1,10 @@ -{"key": "lgpl-2.1-nokia-qt-1.0", "is_deprecated": true, "short_name": "Nokia Qt LGPL Exception 1.0", "name": "Nokia Qt LGPL Exception v1.0", "category": "Copyleft Limited", "owner": "Nokia", "notes": "Replaced by qt-company-exception-lgpl-2.1", "is_exception": true} \ No newline at end of file +{ + "key": "lgpl-2.1-nokia-qt-1.0", + "is_deprecated": true, + "short_name": "Nokia Qt LGPL Exception 1.0", + "name": "Nokia Qt LGPL Exception v1.0", + "category": "Copyleft Limited", + "owner": "Nokia", + "notes": "Replaced by qt-company-exception-lgpl-2.1", + "is_exception": true +} \ No newline at end of file diff --git a/docs/lgpl-2.1-nokia-qt-1.1.LICENSE b/docs/lgpl-2.1-nokia-qt-1.1.LICENSE index f8b914a374..f7645f1351 100644 --- a/docs/lgpl-2.1-nokia-qt-1.1.LICENSE +++ b/docs/lgpl-2.1-nokia-qt-1.1.LICENSE @@ -1,3 +1,16 @@ +--- +key: lgpl-2.1-nokia-qt-1.1 +is_deprecated: yes +short_name: Nokia Qt LGPL Exception 1.1 +name: Nokia Qt LGPL Exception v1.1 +category: Copyleft Limited +owner: Nokia +notes: replaced by qt-company-exception-lgpl-2.1 +is_exception: yes +text_urls: + - https://www.keepassx.org/dev/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION +--- + Nokia Qt LGPL Exception version 1.1 As an additional permission to the GNU Lesser General Public License version diff --git a/docs/lgpl-2.1-nokia-qt-1.1.html b/docs/lgpl-2.1-nokia-qt-1.1.html index 3b5b45dce7..586157fc77 100644 --- a/docs/lgpl-2.1-nokia-qt-1.1.html +++ b/docs/lgpl-2.1-nokia-qt-1.1.html @@ -164,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-2.1-nokia-qt-1.1.json b/docs/lgpl-2.1-nokia-qt-1.1.json index 727258e2a2..3226ad3f7c 100644 --- a/docs/lgpl-2.1-nokia-qt-1.1.json +++ b/docs/lgpl-2.1-nokia-qt-1.1.json @@ -1 +1,13 @@ -{"key": "lgpl-2.1-nokia-qt-1.1", "is_deprecated": true, "short_name": "Nokia Qt LGPL Exception 1.1", "name": "Nokia Qt LGPL Exception v1.1", "category": "Copyleft Limited", "owner": "Nokia", "notes": "replaced by qt-company-exception-lgpl-2.1", "is_exception": true, "text_urls": ["https://www.keepassx.org/dev/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION"]} \ No newline at end of file +{ + "key": "lgpl-2.1-nokia-qt-1.1", + "is_deprecated": true, + "short_name": "Nokia Qt LGPL Exception 1.1", + "name": "Nokia Qt LGPL Exception v1.1", + "category": "Copyleft Limited", + "owner": "Nokia", + "notes": "replaced by qt-company-exception-lgpl-2.1", + "is_exception": true, + "text_urls": [ + "https://www.keepassx.org/dev/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION" + ] +} \ No newline at end of file diff --git a/docs/lgpl-2.1-nokia-qt.LICENSE b/docs/lgpl-2.1-nokia-qt.LICENSE index 3f2285c90b..bf523e41cd 100644 --- a/docs/lgpl-2.1-nokia-qt.LICENSE +++ b/docs/lgpl-2.1-nokia-qt.LICENSE @@ -1,3 +1,17 @@ +--- +key: lgpl-2.1-nokia-qt +is_deprecated: yes +short_name: LGPL 2.1 with Nokia Qt Exception +name: LGPL 2.1 with Nokia Qt Exception +category: Copyleft Limited +owner: Nokia +is_exception: yes +text_urls: + - https://www.keepassx.org/dev/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION +other_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + 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 @@ -32,4 +46,4 @@ limited to (i) numerical parameters; (ii) data structure layouts; five lines or less in length. Furthermore, you are not required to apply this additional permission to a -modified version of the Library. +modified version of the Library. \ No newline at end of file diff --git a/docs/lgpl-2.1-nokia-qt.html b/docs/lgpl-2.1-nokia-qt.html index 873da202ba..6ed34e55e5 100644 --- a/docs/lgpl-2.1-nokia-qt.html +++ b/docs/lgpl-2.1-nokia-qt.html @@ -167,8 +167,7 @@ five lines or less in length. Furthermore, you are not required to apply this additional permission to a -modified version of the Library. - +modified version of the Library.
@@ -180,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-2.1-nokia-qt.json b/docs/lgpl-2.1-nokia-qt.json index d8e41900a4..ea386939e0 100644 --- a/docs/lgpl-2.1-nokia-qt.json +++ b/docs/lgpl-2.1-nokia-qt.json @@ -1 +1,15 @@ -{"key": "lgpl-2.1-nokia-qt", "is_deprecated": true, "short_name": "LGPL 2.1 with Nokia Qt Exception", "name": "LGPL 2.1 with Nokia Qt Exception", "category": "Copyleft Limited", "owner": "Nokia", "is_exception": true, "text_urls": ["https://www.keepassx.org/dev/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION"], "other_urls": ["http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html"]} \ No newline at end of file +{ + "key": "lgpl-2.1-nokia-qt", + "is_deprecated": true, + "short_name": "LGPL 2.1 with Nokia Qt Exception", + "name": "LGPL 2.1 with Nokia Qt Exception", + "category": "Copyleft Limited", + "owner": "Nokia", + "is_exception": true, + "text_urls": [ + "https://www.keepassx.org/dev/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION" + ], + "other_urls": [ + "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html" + ] +} \ No newline at end of file diff --git a/docs/lgpl-2.1-plus-linking.LICENSE b/docs/lgpl-2.1-plus-linking.LICENSE index b86d162294..48815a2f22 100644 --- a/docs/lgpl-2.1-plus-linking.LICENSE +++ b/docs/lgpl-2.1-plus-linking.LICENSE @@ -1,3 +1,18 @@ +--- +key: lgpl-2.1-plus-linking +is_deprecated: yes +short_name: LGPL 2.1 or later with Linking exception +name: LGPL 2.1 or later with Linking exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +notes: replaced by linking-exception-2.1-plus +is_exception: yes +text_urls: + - http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=blob;f=libio/libio.h +other_urls: + - http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=blob;f=libio/libio.h +--- + As a special exception, if you link the code in this file with files compiled with a GNU compiler to produce an executable, that does not cause the resulting executable to be covered by the GNU Lesser General Public License. This diff --git a/docs/lgpl-2.1-plus-linking.html b/docs/lgpl-2.1-plus-linking.html index fb8b3bc518..ad90bcb68d 100644 --- a/docs/lgpl-2.1-plus-linking.html +++ b/docs/lgpl-2.1-plus-linking.html @@ -158,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-2.1-plus-linking.json b/docs/lgpl-2.1-plus-linking.json index c1af5afe34..36ff4e1dce 100644 --- a/docs/lgpl-2.1-plus-linking.json +++ b/docs/lgpl-2.1-plus-linking.json @@ -1 +1,16 @@ -{"key": "lgpl-2.1-plus-linking", "is_deprecated": true, "short_name": "LGPL 2.1 or later with Linking exception", "name": "LGPL 2.1 or later with Linking exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "notes": "replaced by linking-exception-2.1-plus", "is_exception": true, "text_urls": ["http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=blob;f=libio/libio.h"], "other_urls": ["http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=blob;f=libio/libio.h"]} \ No newline at end of file +{ + "key": "lgpl-2.1-plus-linking", + "is_deprecated": true, + "short_name": "LGPL 2.1 or later with Linking exception", + "name": "LGPL 2.1 or later with Linking exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "notes": "replaced by linking-exception-2.1-plus", + "is_exception": true, + "text_urls": [ + "http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=blob;f=libio/libio.h" + ], + "other_urls": [ + "http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=blob;f=libio/libio.h" + ] +} \ No newline at end of file diff --git a/docs/lgpl-2.1-plus-unlimited-linking.LICENSE b/docs/lgpl-2.1-plus-unlimited-linking.LICENSE index 8f24cefe5b..5b6c783c25 100644 --- a/docs/lgpl-2.1-plus-unlimited-linking.LICENSE +++ b/docs/lgpl-2.1-plus-unlimited-linking.LICENSE @@ -1,3 +1,17 @@ +--- +key: lgpl-2.1-plus-unlimited-linking +is_deprecated: yes +short_name: LGPL 2.1 or later with Unlimited linking exception +name: LGPL 2.1 or later with Unlimited linking exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.eglibc.org/cgi-bin/viewvc.cgi/branches/eglibc-2_18/libc/io/stat64.c?revision=23787&view=markup +notes: replaced by unlimited-linking-exception-lgpl +is_exception: yes +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.html +--- + The GNU C 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. In addition to the permissions in the GNU Lesser General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version of this file with other programs, and to distribute those programs without any restriction coming from the use of this file. (The GNU Lesser General Public License restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked into another program.) diff --git a/docs/lgpl-2.1-plus-unlimited-linking.html b/docs/lgpl-2.1-plus-unlimited-linking.html index bd38eed2b4..c70f8acc49 100644 --- a/docs/lgpl-2.1-plus-unlimited-linking.html +++ b/docs/lgpl-2.1-plus-unlimited-linking.html @@ -158,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-2.1-plus-unlimited-linking.json b/docs/lgpl-2.1-plus-unlimited-linking.json index d3c63aae52..fb6d5997fe 100644 --- a/docs/lgpl-2.1-plus-unlimited-linking.json +++ b/docs/lgpl-2.1-plus-unlimited-linking.json @@ -1 +1,14 @@ -{"key": "lgpl-2.1-plus-unlimited-linking", "is_deprecated": true, "short_name": "LGPL 2.1 or later with Unlimited linking exception", "name": "LGPL 2.1 or later with Unlimited linking exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.eglibc.org/cgi-bin/viewvc.cgi/branches/eglibc-2_18/libc/io/stat64.c?revision=23787&view=markup", "notes": "replaced by unlimited-linking-exception-lgpl", "is_exception": true, "other_urls": ["http://www.gnu.org/licenses/lgpl-2.1.html"]} \ No newline at end of file +{ + "key": "lgpl-2.1-plus-unlimited-linking", + "is_deprecated": true, + "short_name": "LGPL 2.1 or later with Unlimited linking exception", + "name": "LGPL 2.1 or later with Unlimited linking exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.eglibc.org/cgi-bin/viewvc.cgi/branches/eglibc-2_18/libc/io/stat64.c?revision=23787&view=markup", + "notes": "replaced by unlimited-linking-exception-lgpl", + "is_exception": true, + "other_urls": [ + "http://www.gnu.org/licenses/lgpl-2.1.html" + ] +} \ No newline at end of file diff --git a/docs/lgpl-2.1-plus.LICENSE b/docs/lgpl-2.1-plus.LICENSE index 937157822c..e59ad86fcf 100644 --- a/docs/lgpl-2.1-plus.LICENSE +++ b/docs/lgpl-2.1-plus.LICENSE @@ -1,3 +1,32 @@ +--- +key: lgpl-2.1-plus +short_name: LGPL 2.1 or later +name: GNU Lesser General Public License 2.1 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html +notes: | + Per SPDX.org, this license was released February 1999. This license is OSI + certified. +spdx_license_key: LGPL-2.1-or-later +other_spdx_license_keys: + - LGPL-2.1+ +text_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html +other_urls: + - http://www.gnu.org/copyleft/lesser.html + - http://www.opensource.org/licenses/LGPL-2.1 + - https://opensource.org/licenses/LGPL-2.1 + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + 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 diff --git a/docs/lgpl-2.1-plus.html b/docs/lgpl-2.1-plus.html index fd9821a8de..d60e1051d5 100644 --- a/docs/lgpl-2.1-plus.html +++ b/docs/lgpl-2.1-plus.html @@ -712,7 +712,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-2.1-plus.json b/docs/lgpl-2.1-plus.json index 358fe19bf4..4a4000ebb7 100644 --- a/docs/lgpl-2.1-plus.json +++ b/docs/lgpl-2.1-plus.json @@ -1 +1,31 @@ -{"key": "lgpl-2.1-plus", "short_name": "LGPL 2.1 or later", "name": "GNU Lesser General Public License 2.1 or later", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", "notes": "Per SPDX.org, this license was released February 1999. This license is OSI\ncertified.\n", "spdx_license_key": "LGPL-2.1-or-later", "other_spdx_license_keys": ["LGPL-2.1+"], "text_urls": ["http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"], "other_urls": ["http://www.gnu.org/copyleft/lesser.html", "http://www.opensource.org/licenses/LGPL-2.1", "https://opensource.org/licenses/LGPL-2.1", "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"], "minimum_coverage": 99, "ignorable_copyrights": ["Copyright (c) 1991, 1999 Free Software Foundation, Inc.", "copyrighted by the Free Software Foundation"], "ignorable_holders": ["Free Software Foundation, Inc.", "the Free Software Foundation"]} \ No newline at end of file +{ + "key": "lgpl-2.1-plus", + "short_name": "LGPL 2.1 or later", + "name": "GNU Lesser General Public License 2.1 or later", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", + "notes": "Per SPDX.org, this license was released February 1999. This license is OSI\ncertified.\n", + "spdx_license_key": "LGPL-2.1-or-later", + "other_spdx_license_keys": [ + "LGPL-2.1+" + ], + "text_urls": [ + "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + ], + "other_urls": [ + "http://www.gnu.org/copyleft/lesser.html", + "http://www.opensource.org/licenses/LGPL-2.1", + "https://opensource.org/licenses/LGPL-2.1", + "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + ], + "minimum_coverage": 99, + "ignorable_copyrights": [ + "Copyright (c) 1991, 1999 Free Software Foundation, Inc.", + "copyrighted by the Free Software Foundation" + ], + "ignorable_holders": [ + "Free Software Foundation, Inc.", + "the Free Software Foundation" + ] +} \ No newline at end of file diff --git a/docs/lgpl-2.1-qt-company-2017.LICENSE b/docs/lgpl-2.1-qt-company-2017.LICENSE index ea61032cae..7c7ab604fd 100644 --- a/docs/lgpl-2.1-qt-company-2017.LICENSE +++ b/docs/lgpl-2.1-qt-company-2017.LICENSE @@ -1,3 +1,34 @@ +--- +key: lgpl-2.1-qt-company-2017 +is_deprecated: yes +short_name: LGPL 2.1 with Qt Company Exception 2017 +name: LGPL 2.1 with Qt Company Exception 2017 +category: Copyleft Limited +owner: Qt Company +is_exception: yes +standard_notice: | + As an additional permission to the GNU Lesser General Public License + version + 2.1, the object code form of a "work that uses the Library" may incorporate + material from a header file that is part of the Library. You may distribute + such object code under terms of your choice, provided that: + (i) the header files of the Library have not been modified; and + (ii) the incorporated material is limited to numerical parameters, data + structure layouts, accessors, macros, inline functions and + templates; and + (iii) you comply with the terms of Section 6 of the GNU Lesser General + Public License version 2.1. + Moreover, you may apply this exception to a modified version of the + Library, + provided that such modification does not involve copying material from the + Library into the modified Library's header files unless such material is + limited to (i) numerical parameters; (ii) data structure layouts; + (iii) accessors; and (iv) small macros, templates and inline functions of + five lines or less in length. + Furthermore, you are not required to apply this additional permission to a + modified version of the Library. +--- + As an additional permission to the GNU Lesser General Public License version 2.1, the object code form of a "work that uses the Library" may incorporate material from a header file that is part of the Library. You may distribute diff --git a/docs/lgpl-2.1-qt-company-2017.html b/docs/lgpl-2.1-qt-company-2017.html index 993af5d42b..bff9e22172 100644 --- a/docs/lgpl-2.1-qt-company-2017.html +++ b/docs/lgpl-2.1-qt-company-2017.html @@ -136,6 +136,7 @@ five lines or less in length. Furthermore, you are not required to apply this additional permission to a modified version of the Library. +
@@ -172,7 +173,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-2.1-qt-company-2017.json b/docs/lgpl-2.1-qt-company-2017.json index f743cb2db6..3233880232 100644 --- a/docs/lgpl-2.1-qt-company-2017.json +++ b/docs/lgpl-2.1-qt-company-2017.json @@ -1 +1,10 @@ -{"key": "lgpl-2.1-qt-company-2017", "is_deprecated": true, "short_name": "LGPL 2.1 with Qt Company Exception 2017", "name": "LGPL 2.1 with Qt Company Exception 2017", "category": "Copyleft Limited", "owner": "Qt Company", "is_exception": true, "standard_notice": "As an additional permission to the GNU Lesser General Public License\nversion\n2.1, the object code form of a \"work that uses the Library\" may incorporate\nmaterial from a header file that is part of the Library. You may distribute\nsuch object code under terms of your choice, provided that:\n(i) the header files of the Library have not been modified; and\n(ii) the incorporated material is limited to numerical parameters, data\nstructure layouts, accessors, macros, inline functions and\ntemplates; and\n(iii) you comply with the terms of Section 6 of the GNU Lesser General\nPublic License version 2.1.\nMoreover, you may apply this exception to a modified version of the\nLibrary,\nprovided that such modification does not involve copying material from the\nLibrary into the modified Library's header files unless such material is\nlimited to (i) numerical parameters; (ii) data structure layouts;\n(iii) accessors; and (iv) small macros, templates and inline functions of\nfive lines or less in length.\nFurthermore, you are not required to apply this additional permission to a\nmodified version of the Library."} \ No newline at end of file +{ + "key": "lgpl-2.1-qt-company-2017", + "is_deprecated": true, + "short_name": "LGPL 2.1 with Qt Company Exception 2017", + "name": "LGPL 2.1 with Qt Company Exception 2017", + "category": "Copyleft Limited", + "owner": "Qt Company", + "is_exception": true, + "standard_notice": "As an additional permission to the GNU Lesser General Public License\nversion\n2.1, the object code form of a \"work that uses the Library\" may incorporate\nmaterial from a header file that is part of the Library. You may distribute\nsuch object code under terms of your choice, provided that:\n(i) the header files of the Library have not been modified; and\n(ii) the incorporated material is limited to numerical parameters, data\nstructure layouts, accessors, macros, inline functions and\ntemplates; and\n(iii) you comply with the terms of Section 6 of the GNU Lesser General\nPublic License version 2.1.\nMoreover, you may apply this exception to a modified version of the\nLibrary,\nprovided that such modification does not involve copying material from the\nLibrary into the modified Library's header files unless such material is\nlimited to (i) numerical parameters; (ii) data structure layouts;\n(iii) accessors; and (iv) small macros, templates and inline functions of\nfive lines or less in length.\nFurthermore, you are not required to apply this additional permission to a\nmodified version of the Library.\n" +} \ No newline at end of file diff --git a/docs/lgpl-2.1-qt-company.LICENSE b/docs/lgpl-2.1-qt-company.LICENSE index b2337fdb79..c3d06a12f4 100644 --- a/docs/lgpl-2.1-qt-company.LICENSE +++ b/docs/lgpl-2.1-qt-company.LICENSE @@ -1,3 +1,15 @@ +--- +key: lgpl-2.1-qt-company +is_deprecated: yes +short_name: LGPL 2.1 with Qt Company Exception +name: LGPL 2.1 with Qt Company Exception +category: Copyleft Limited +owner: Qt Company +homepage_url: http://doc.qt.io/qt-4.8/lgpl.html +notes: Replaced by the exception qt-company-exception-lgpl-2.1 and a proper license expression +is_exception: yes +--- + 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) diff --git a/docs/lgpl-2.1-qt-company.html b/docs/lgpl-2.1-qt-company.html index 7b17c4ffc6..0789cc320f 100644 --- a/docs/lgpl-2.1-qt-company.html +++ b/docs/lgpl-2.1-qt-company.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-2.1-qt-company.json b/docs/lgpl-2.1-qt-company.json index 80347799b9..7419563f30 100644 --- a/docs/lgpl-2.1-qt-company.json +++ b/docs/lgpl-2.1-qt-company.json @@ -1 +1,11 @@ -{"key": "lgpl-2.1-qt-company", "is_deprecated": true, "short_name": "LGPL 2.1 with Qt Company Exception", "name": "LGPL 2.1 with Qt Company Exception", "category": "Copyleft Limited", "owner": "Qt Company", "homepage_url": "http://doc.qt.io/qt-4.8/lgpl.html", "notes": "Replaced by the exception qt-company-exception-lgpl-2.1 and a proper license expression", "is_exception": true} \ No newline at end of file +{ + "key": "lgpl-2.1-qt-company", + "is_deprecated": true, + "short_name": "LGPL 2.1 with Qt Company Exception", + "name": "LGPL 2.1 with Qt Company Exception", + "category": "Copyleft Limited", + "owner": "Qt Company", + "homepage_url": "http://doc.qt.io/qt-4.8/lgpl.html", + "notes": "Replaced by the exception qt-company-exception-lgpl-2.1 and a proper license expression", + "is_exception": true +} \ No newline at end of file diff --git a/docs/lgpl-2.1-rxtx.LICENSE b/docs/lgpl-2.1-rxtx.LICENSE index d68f291f41..4a3717d593 100644 --- a/docs/lgpl-2.1-rxtx.LICENSE +++ b/docs/lgpl-2.1-rxtx.LICENSE @@ -1,3 +1,17 @@ +--- +key: lgpl-2.1-rxtx +is_deprecated: yes +short_name: LGPL 2.1 with RXTX exception +name: LGPL 2.1 with RXTX exception +category: Copyleft Limited +owner: RXTX +homepage_url: http://users.frii.com/jarvi/rxtx/license.html +notes: replaced by rxtx-exception-lgpl-2.1 +is_exception: yes +other_urls: + - http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface +--- + RXTX License v 2.1 - LGPL v 2.1 + Linking Over Controlled Interface. RXTX is a native interface to serial ports in java. Copyright 1997-2007 by Trent Jarvi tjarvi@qbang.org and others who diff --git a/docs/lgpl-2.1-rxtx.html b/docs/lgpl-2.1-rxtx.html index ab6142ce73..ad2d820734 100644 --- a/docs/lgpl-2.1-rxtx.html +++ b/docs/lgpl-2.1-rxtx.html @@ -195,7 +195,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-2.1-rxtx.json b/docs/lgpl-2.1-rxtx.json index a3073b66ae..f789950aae 100644 --- a/docs/lgpl-2.1-rxtx.json +++ b/docs/lgpl-2.1-rxtx.json @@ -1 +1,14 @@ -{"key": "lgpl-2.1-rxtx", "is_deprecated": true, "short_name": "LGPL 2.1 with RXTX exception", "name": "LGPL 2.1 with RXTX exception", "category": "Copyleft Limited", "owner": "RXTX", "homepage_url": "http://users.frii.com/jarvi/rxtx/license.html", "notes": "replaced by rxtx-exception-lgpl-2.1", "is_exception": true, "other_urls": ["http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface"]} \ No newline at end of file +{ + "key": "lgpl-2.1-rxtx", + "is_deprecated": true, + "short_name": "LGPL 2.1 with RXTX exception", + "name": "LGPL 2.1 with RXTX exception", + "category": "Copyleft Limited", + "owner": "RXTX", + "homepage_url": "http://users.frii.com/jarvi/rxtx/license.html", + "notes": "replaced by rxtx-exception-lgpl-2.1", + "is_exception": true, + "other_urls": [ + "http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface" + ] +} \ No newline at end of file diff --git a/docs/lgpl-2.1-spell-checker.LICENSE b/docs/lgpl-2.1-spell-checker.LICENSE index d5ec132ae5..845debbedf 100644 --- a/docs/lgpl-2.1-spell-checker.LICENSE +++ b/docs/lgpl-2.1-spell-checker.LICENSE @@ -1,3 +1,28 @@ +--- +key: lgpl-2.1-spell-checker +is_deprecated: yes +short_name: LGPL 2.1 or later with Spell-Checker exception +name: LGPL 2.1 or later with Spell-Checker exception +category: Copyleft Limited +owner: AbiSource +notes: replaced by spell-checker-exception-lgpl-2.1-plus +is_exception: yes +text_urls: + - https://github.com/AbiWord/enchant/blob/master/src/enchant.h +other_urls: + - https://github.com/AbiWord/enchant/archive/enchant-1-0-0.tar.gz +standard_notice: | + In addition, as a special exception, Dom Lachowicz + gives permission to link the code of this program with + non-LGPL Spelling Provider libraries (eg: a MSFT Office + spell checker backend) 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 said providers. If you modify + this file, you may extend this exception to your version of the + file, but you are not obligated to do so. If you do not wish to + do so, delete this exception statement from your version. +--- + In addition, as a special exception, Dom Lachowicz gives permission to link the code of this program with non-LGPL Spelling Provider libraries (eg: a MSFT Office diff --git a/docs/lgpl-2.1-spell-checker.html b/docs/lgpl-2.1-spell-checker.html index 84eb234e2c..663fdd5332 100644 --- a/docs/lgpl-2.1-spell-checker.html +++ b/docs/lgpl-2.1-spell-checker.html @@ -150,6 +150,7 @@ this file, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. + @@ -175,7 +176,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-2.1-spell-checker.json b/docs/lgpl-2.1-spell-checker.json index 3bd6981215..7ba8280e21 100644 --- a/docs/lgpl-2.1-spell-checker.json +++ b/docs/lgpl-2.1-spell-checker.json @@ -1 +1,17 @@ -{"key": "lgpl-2.1-spell-checker", "is_deprecated": true, "short_name": "LGPL 2.1 or later with Spell-Checker exception", "name": "LGPL 2.1 or later with Spell-Checker exception", "category": "Copyleft Limited", "owner": "AbiSource", "notes": "replaced by spell-checker-exception-lgpl-2.1-plus", "is_exception": true, "text_urls": ["https://github.com/AbiWord/enchant/blob/master/src/enchant.h"], "other_urls": ["https://github.com/AbiWord/enchant/archive/enchant-1-0-0.tar.gz"], "standard_notice": "In addition, as a special exception, Dom Lachowicz\ngives permission to link the code of this program with\nnon-LGPL Spelling Provider libraries (eg: a MSFT Office\nspell checker backend) and distribute linked combinations including\nthe two. You must obey the GNU Lesser General Public License in all\nrespects for all of the code used other than said providers. If you modify\nthis file, you may extend this exception to your version of the\nfile, but you are not obligated to do so. If you do not wish to\ndo so, delete this exception statement from your version."} \ No newline at end of file +{ + "key": "lgpl-2.1-spell-checker", + "is_deprecated": true, + "short_name": "LGPL 2.1 or later with Spell-Checker exception", + "name": "LGPL 2.1 or later with Spell-Checker exception", + "category": "Copyleft Limited", + "owner": "AbiSource", + "notes": "replaced by spell-checker-exception-lgpl-2.1-plus", + "is_exception": true, + "text_urls": [ + "https://github.com/AbiWord/enchant/blob/master/src/enchant.h" + ], + "other_urls": [ + "https://github.com/AbiWord/enchant/archive/enchant-1-0-0.tar.gz" + ], + "standard_notice": "In addition, as a special exception, Dom Lachowicz\ngives permission to link the code of this program with\nnon-LGPL Spelling Provider libraries (eg: a MSFT Office\nspell checker backend) and distribute linked combinations including\nthe two. You must obey the GNU Lesser General Public License in all\nrespects for all of the code used other than said providers. If you modify\nthis file, you may extend this exception to your version of the\nfile, but you are not obligated to do so. If you do not wish to\ndo so, delete this exception statement from your version.\n" +} \ No newline at end of file diff --git a/docs/lgpl-2.1.LICENSE b/docs/lgpl-2.1.LICENSE index 3f2f6259db..aae63c65fe 100644 --- a/docs/lgpl-2.1.LICENSE +++ b/docs/lgpl-2.1.LICENSE @@ -1,3 +1,40 @@ +--- +key: lgpl-2.1 +short_name: LGPL 2.1 +name: GNU Lesser General Public License 2.1 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/lgpl-2.1.html +notes: | + Per SPDX.org, this license was released February 1999. This license is OSI + certified. +spdx_license_key: LGPL-2.1-only +other_spdx_license_keys: + - LGPL-2.1 + - LicenseRef-LGPL-2.1 +osi_license_key: LGPL-2.1 +text_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +osi_url: http://opensource.org/licenses/lgpl-2.1.php +other_urls: + - http://creativecommons.org/choose/cc-lgpl + - http://creativecommons.org/images/public/cc-LGPL-a.png + - http://creativecommons.org/licenses/LGPL/2.1/ + - http://creativecommons.org/licenses/LGPL/2.1/legalcode.pt + - http://i.creativecommons.org/l/LGPL/2.1/88x62.png + - http://www.gnu.org/copyleft/lesser.html + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html + - http://www.opensource.org/licenses/LGPL-2.1 + - https://opensource.org/licenses/LGPL-2.1 + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 diff --git a/docs/lgpl-2.1.html b/docs/lgpl-2.1.html index 41c4199d35..4f139905fd 100644 --- a/docs/lgpl-2.1.html +++ b/docs/lgpl-2.1.html @@ -705,7 +705,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-2.1.json b/docs/lgpl-2.1.json index 3f859e89d5..7afb40de4b 100644 --- a/docs/lgpl-2.1.json +++ b/docs/lgpl-2.1.json @@ -1 +1,39 @@ -{"key": "lgpl-2.1", "short_name": "LGPL 2.1", "name": "GNU Lesser General Public License 2.1", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/lgpl-2.1.html", "notes": "Per SPDX.org, this license was released February 1999. This license is OSI\ncertified.\n", "spdx_license_key": "LGPL-2.1-only", "other_spdx_license_keys": ["LGPL-2.1", "LicenseRef-LGPL-2.1"], "osi_license_key": "LGPL-2.1", "text_urls": ["http://www.gnu.org/licenses/lgpl-2.1.txt"], "osi_url": "http://opensource.org/licenses/lgpl-2.1.php", "other_urls": ["http://creativecommons.org/choose/cc-lgpl", "http://creativecommons.org/images/public/cc-LGPL-a.png", "http://creativecommons.org/licenses/LGPL/2.1/", "http://creativecommons.org/licenses/LGPL/2.1/legalcode.pt", "http://i.creativecommons.org/l/LGPL/2.1/88x62.png", "http://www.gnu.org/copyleft/lesser.html", "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", "http://www.opensource.org/licenses/LGPL-2.1", "https://opensource.org/licenses/LGPL-2.1", "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"], "ignorable_copyrights": ["Copyright (c) 1991, 1999 Free Software Foundation, Inc.", "copyrighted by the Free Software Foundation"], "ignorable_holders": ["Free Software Foundation, Inc.", "the Free Software Foundation"]} \ No newline at end of file +{ + "key": "lgpl-2.1", + "short_name": "LGPL 2.1", + "name": "GNU Lesser General Public License 2.1", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/lgpl-2.1.html", + "notes": "Per SPDX.org, this license was released February 1999. This license is OSI\ncertified.\n", + "spdx_license_key": "LGPL-2.1-only", + "other_spdx_license_keys": [ + "LGPL-2.1", + "LicenseRef-LGPL-2.1" + ], + "osi_license_key": "LGPL-2.1", + "text_urls": [ + "http://www.gnu.org/licenses/lgpl-2.1.txt" + ], + "osi_url": "http://opensource.org/licenses/lgpl-2.1.php", + "other_urls": [ + "http://creativecommons.org/choose/cc-lgpl", + "http://creativecommons.org/images/public/cc-LGPL-a.png", + "http://creativecommons.org/licenses/LGPL/2.1/", + "http://creativecommons.org/licenses/LGPL/2.1/legalcode.pt", + "http://i.creativecommons.org/l/LGPL/2.1/88x62.png", + "http://www.gnu.org/copyleft/lesser.html", + "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", + "http://www.opensource.org/licenses/LGPL-2.1", + "https://opensource.org/licenses/LGPL-2.1", + "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 1991, 1999 Free Software Foundation, Inc.", + "copyrighted by the Free Software Foundation" + ], + "ignorable_holders": [ + "Free Software Foundation, Inc.", + "the Free Software Foundation" + ] +} \ No newline at end of file diff --git a/docs/lgpl-3-plus-linking.LICENSE b/docs/lgpl-3-plus-linking.LICENSE index 39764c6b15..e6e8f40995 100644 --- a/docs/lgpl-3-plus-linking.LICENSE +++ b/docs/lgpl-3-plus-linking.LICENSE @@ -1,3 +1,17 @@ +--- +key: lgpl-3-plus-linking +is_deprecated: yes +short_name: LGPL 3.0 or later with Linking exception +name: LGPL 3.0 or later with Linking exception +category: Copyleft Limited +owner: Canonical Inc. +homepage_url: https://github.com/go-yaml/yaml/blob/v2/LICENSE +notes: replaced by linking-exception-lgpl-3.0 +is_exception: yes +text_urls: + - https://github.com/go-yaml/yaml/blob/v2/LICENSE +--- + 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 3 of the License, or (at your option) any diff --git a/docs/lgpl-3-plus-linking.html b/docs/lgpl-3-plus-linking.html index 2cc375bf79..5c0c8e741a 100644 --- a/docs/lgpl-3-plus-linking.html +++ b/docs/lgpl-3-plus-linking.html @@ -177,7 +177,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-3-plus-linking.json b/docs/lgpl-3-plus-linking.json index 16192e4b6b..bad5e3061d 100644 --- a/docs/lgpl-3-plus-linking.json +++ b/docs/lgpl-3-plus-linking.json @@ -1 +1,14 @@ -{"key": "lgpl-3-plus-linking", "is_deprecated": true, "short_name": "LGPL 3.0 or later with Linking exception", "name": "LGPL 3.0 or later with Linking exception", "category": "Copyleft Limited", "owner": "Canonical Inc.", "homepage_url": "https://github.com/go-yaml/yaml/blob/v2/LICENSE", "notes": "replaced by linking-exception-lgpl-3.0", "is_exception": true, "text_urls": ["https://github.com/go-yaml/yaml/blob/v2/LICENSE"]} \ No newline at end of file +{ + "key": "lgpl-3-plus-linking", + "is_deprecated": true, + "short_name": "LGPL 3.0 or later with Linking exception", + "name": "LGPL 3.0 or later with Linking exception", + "category": "Copyleft Limited", + "owner": "Canonical Inc.", + "homepage_url": "https://github.com/go-yaml/yaml/blob/v2/LICENSE", + "notes": "replaced by linking-exception-lgpl-3.0", + "is_exception": true, + "text_urls": [ + "https://github.com/go-yaml/yaml/blob/v2/LICENSE" + ] +} \ No newline at end of file diff --git a/docs/lgpl-3.0-cygwin.LICENSE b/docs/lgpl-3.0-cygwin.LICENSE index efc0707ed8..c37bdf0188 100644 --- a/docs/lgpl-3.0-cygwin.LICENSE +++ b/docs/lgpl-3.0-cygwin.LICENSE @@ -1,3 +1,16 @@ +--- +key: lgpl-3.0-cygwin +is_deprecated: yes +short_name: LGPL 3.0 or later with Cygwin exception +name: LGPL 3.0 or later with Cygwin exception +category: Copyleft Limited +owner: Cygwin Project +homepage_url: https://cygwin.com/licensing.html +is_exception: yes +other_urls: + - https://cygwin.com/COPYING.LIB +--- + The Cygwin API library found in the winsup subdirectory of the source code is covered by the GNU Lesser General Public License (LGPL) version 3 or later. For details of the requirements of LGPLv3, please read the GNU Lesser General Public License (LGPL). Cygwin™ Linking Exception diff --git a/docs/lgpl-3.0-cygwin.html b/docs/lgpl-3.0-cygwin.html index 493a7ab93d..cbf2aa9182 100644 --- a/docs/lgpl-3.0-cygwin.html +++ b/docs/lgpl-3.0-cygwin.html @@ -147,7 +147,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-3.0-cygwin.json b/docs/lgpl-3.0-cygwin.json index 0971628809..21fe219933 100644 --- a/docs/lgpl-3.0-cygwin.json +++ b/docs/lgpl-3.0-cygwin.json @@ -1 +1,13 @@ -{"key": "lgpl-3.0-cygwin", "is_deprecated": true, "short_name": "LGPL 3.0 or later with Cygwin exception", "name": "LGPL 3.0 or later with Cygwin exception", "category": "Copyleft Limited", "owner": "Cygwin Project", "homepage_url": "https://cygwin.com/licensing.html", "is_exception": true, "other_urls": ["https://cygwin.com/COPYING.LIB"]} \ No newline at end of file +{ + "key": "lgpl-3.0-cygwin", + "is_deprecated": true, + "short_name": "LGPL 3.0 or later with Cygwin exception", + "name": "LGPL 3.0 or later with Cygwin exception", + "category": "Copyleft Limited", + "owner": "Cygwin Project", + "homepage_url": "https://cygwin.com/licensing.html", + "is_exception": true, + "other_urls": [ + "https://cygwin.com/COPYING.LIB" + ] +} \ No newline at end of file diff --git a/docs/lgpl-3.0-linking-exception.LICENSE b/docs/lgpl-3.0-linking-exception.LICENSE index 08687a75c5..f3abb1be12 100644 --- a/docs/lgpl-3.0-linking-exception.LICENSE +++ b/docs/lgpl-3.0-linking-exception.LICENSE @@ -1,3 +1,21 @@ +--- +key: lgpl-3.0-linking-exception +short_name: LGPL-3.0 Linking Exception +name: LGPL-3.0 Linking Exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: https://spdx.org/licenses/LGPL-3.0-linking-exception.html +is_exception: yes +spdx_license_key: LGPL-3.0-linking-exception +other_spdx_license_keys: + - LicenseRef-scancode-lgpl-3-plus-linking + - LicenseRef-scancode-linking-exception-lgpl-3.0 +other_urls: + - https://raw.githubusercontent.com/go-xmlpath/xmlpath/v2/LICENSE + - https://github.com/goamz/goamz/blob/master/LICENSE + - https://github.com/juju/errors/blob/master/LICENSE +--- + As a special exception to the GNU Lesser General Public License version 3 ("LGPL3"), the copyright holders of this Library give you permission to convey to a third party a Combined Work that links statically or dynamically to this diff --git a/docs/lgpl-3.0-linking-exception.html b/docs/lgpl-3.0-linking-exception.html index a55acf819f..d7ce14b143 100644 --- a/docs/lgpl-3.0-linking-exception.html +++ b/docs/lgpl-3.0-linking-exception.html @@ -166,7 +166,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-3.0-linking-exception.json b/docs/lgpl-3.0-linking-exception.json index 89cd98e6fa..3ec0289d18 100644 --- a/docs/lgpl-3.0-linking-exception.json +++ b/docs/lgpl-3.0-linking-exception.json @@ -1 +1,19 @@ -{"key": "lgpl-3.0-linking-exception", "short_name": "LGPL-3.0 Linking Exception", "name": "LGPL-3.0 Linking Exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "https://spdx.org/licenses/LGPL-3.0-linking-exception.html", "is_exception": true, "spdx_license_key": "LGPL-3.0-linking-exception", "other_spdx_license_keys": ["LicenseRef-scancode-lgpl-3-plus-linking", "LicenseRef-scancode-linking-exception-lgpl-3.0"], "other_urls": ["https://raw.githubusercontent.com/go-xmlpath/xmlpath/v2/LICENSE", "https://github.com/goamz/goamz/blob/master/LICENSE", "https://github.com/juju/errors/blob/master/LICENSE"]} \ No newline at end of file +{ + "key": "lgpl-3.0-linking-exception", + "short_name": "LGPL-3.0 Linking Exception", + "name": "LGPL-3.0 Linking Exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "https://spdx.org/licenses/LGPL-3.0-linking-exception.html", + "is_exception": true, + "spdx_license_key": "LGPL-3.0-linking-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-lgpl-3-plus-linking", + "LicenseRef-scancode-linking-exception-lgpl-3.0" + ], + "other_urls": [ + "https://raw.githubusercontent.com/go-xmlpath/xmlpath/v2/LICENSE", + "https://github.com/goamz/goamz/blob/master/LICENSE", + "https://github.com/juju/errors/blob/master/LICENSE" + ] +} \ No newline at end of file diff --git a/docs/lgpl-3.0-plus-openssl.LICENSE b/docs/lgpl-3.0-plus-openssl.LICENSE index 3992adad63..c08c867491 100644 --- a/docs/lgpl-3.0-plus-openssl.LICENSE +++ b/docs/lgpl-3.0-plus-openssl.LICENSE @@ -1,3 +1,15 @@ +--- +key: lgpl-3.0-plus-openssl +is_deprecated: yes +short_name: LGPL 3.0 or later with OpenSSL exception +name: LGPL 3.0 or later with OpenSSL exception +category: Copyleft Limited +owner: psycopg +homepage_url: http://initd.org/psycopg/license/ +notes: this is a composite and exception +is_exception: yes +--- + psycopg2 and the LGPL psycopg2 is free software: you can redistribute it and/or modify it under the diff --git a/docs/lgpl-3.0-plus-openssl.html b/docs/lgpl-3.0-plus-openssl.html index 868005a3c5..f9a94f2523 100644 --- a/docs/lgpl-3.0-plus-openssl.html +++ b/docs/lgpl-3.0-plus-openssl.html @@ -188,7 +188,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-3.0-plus-openssl.json b/docs/lgpl-3.0-plus-openssl.json index eb4e386356..59889de2b7 100644 --- a/docs/lgpl-3.0-plus-openssl.json +++ b/docs/lgpl-3.0-plus-openssl.json @@ -1 +1,11 @@ -{"key": "lgpl-3.0-plus-openssl", "is_deprecated": true, "short_name": "LGPL 3.0 or later with OpenSSL exception", "name": "LGPL 3.0 or later with OpenSSL exception", "category": "Copyleft Limited", "owner": "psycopg", "homepage_url": "http://initd.org/psycopg/license/", "notes": "this is a composite and exception", "is_exception": true} \ No newline at end of file +{ + "key": "lgpl-3.0-plus-openssl", + "is_deprecated": true, + "short_name": "LGPL 3.0 or later with OpenSSL exception", + "name": "LGPL 3.0 or later with OpenSSL exception", + "category": "Copyleft Limited", + "owner": "psycopg", + "homepage_url": "http://initd.org/psycopg/license/", + "notes": "this is a composite and exception", + "is_exception": true +} \ No newline at end of file diff --git a/docs/lgpl-3.0-plus.LICENSE b/docs/lgpl-3.0-plus.LICENSE index 99732e0022..47e29307f0 100644 --- a/docs/lgpl-3.0-plus.LICENSE +++ b/docs/lgpl-3.0-plus.LICENSE @@ -1,3 +1,33 @@ +--- +key: lgpl-3.0-plus +short_name: LGPL 3.0 or later +name: GNU Lesser General Public License 3.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/lgpl-3.0-standalone.html +notes: | + Per SPDX.org, this license was released 29 June 2007. This license is OSI + Certified. +spdx_license_key: LGPL-3.0-or-later +other_spdx_license_keys: + - LGPL-3.0+ +text_urls: + - http://www.gnu.org/licenses/lgpl-3.0-standalone.html +other_urls: + - http://www.gnu.org/copyleft/lesser.html + - http://www.opensource.org/licenses/LGPL-3.0 + - https://opensource.org/licenses/LGPL-3.0 + - https://www.gnu.org/licenses/lgpl+gpl-3.0.txt + - https://www.gnu.org/licenses/lgpl-3.0-standalone.html +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://fsf.org/ +--- + 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 3.0 of the License, or (at your option) any @@ -175,4 +205,4 @@ General Public License ever published by the Free Software Foundation. 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. +Library. \ No newline at end of file diff --git a/docs/lgpl-3.0-plus.html b/docs/lgpl-3.0-plus.html index b9f0d2f5d2..52081d4fda 100644 --- a/docs/lgpl-3.0-plus.html +++ b/docs/lgpl-3.0-plus.html @@ -362,8 +362,7 @@ 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. - +Library.
@@ -375,7 +374,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-3.0-plus.json b/docs/lgpl-3.0-plus.json index 2ea07c9ef9..04d0ce11de 100644 --- a/docs/lgpl-3.0-plus.json +++ b/docs/lgpl-3.0-plus.json @@ -1 +1,33 @@ -{"key": "lgpl-3.0-plus", "short_name": "LGPL 3.0 or later", "name": "GNU Lesser General Public License 3.0 or later", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/lgpl-3.0-standalone.html", "notes": "Per SPDX.org, this license was released 29 June 2007. This license is OSI\nCertified.\n", "spdx_license_key": "LGPL-3.0-or-later", "other_spdx_license_keys": ["LGPL-3.0+"], "text_urls": ["http://www.gnu.org/licenses/lgpl-3.0-standalone.html"], "other_urls": ["http://www.gnu.org/copyleft/lesser.html", "http://www.opensource.org/licenses/LGPL-3.0", "https://opensource.org/licenses/LGPL-3.0", "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", "https://www.gnu.org/licenses/lgpl-3.0-standalone.html"], "minimum_coverage": 99, "ignorable_copyrights": ["Copyright (c) 2007 Free Software Foundation, Inc. "], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["https://fsf.org/"]} \ No newline at end of file +{ + "key": "lgpl-3.0-plus", + "short_name": "LGPL 3.0 or later", + "name": "GNU Lesser General Public License 3.0 or later", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/lgpl-3.0-standalone.html", + "notes": "Per SPDX.org, this license was released 29 June 2007. This license is OSI\nCertified.\n", + "spdx_license_key": "LGPL-3.0-or-later", + "other_spdx_license_keys": [ + "LGPL-3.0+" + ], + "text_urls": [ + "http://www.gnu.org/licenses/lgpl-3.0-standalone.html" + ], + "other_urls": [ + "http://www.gnu.org/copyleft/lesser.html", + "http://www.opensource.org/licenses/LGPL-3.0", + "https://opensource.org/licenses/LGPL-3.0", + "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", + "https://www.gnu.org/licenses/lgpl-3.0-standalone.html" + ], + "minimum_coverage": 99, + "ignorable_copyrights": [ + "Copyright (c) 2007 Free Software Foundation, Inc. " + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "https://fsf.org/" + ] +} \ No newline at end of file diff --git a/docs/lgpl-3.0-zeromq.LICENSE b/docs/lgpl-3.0-zeromq.LICENSE index b36053497f..4344083ca3 100644 --- a/docs/lgpl-3.0-zeromq.LICENSE +++ b/docs/lgpl-3.0-zeromq.LICENSE @@ -1,3 +1,16 @@ +--- +key: lgpl-3.0-zeromq +is_deprecated: yes +short_name: LGPL 3.0 with ZeroMQ exception +name: LGPL 3.0 with ZeroMQ exception +category: Copyleft Limited +owner: ZeroMQ +homepage_url: https://github.com/zeromq/zeromq3-x/blob/master/COPYING.LESSER +is_exception: yes +faq_url: https://github.com/zeromq/zeromq3-x/blob/master/README +other_urls: + - https://github.com/zeromq/zeromq3-x/blob/master/COPYING +--- SPECIAL EXCEPTION GRANTED BY COPYRIGHT HOLDERS diff --git a/docs/lgpl-3.0-zeromq.html b/docs/lgpl-3.0-zeromq.html index 61bcbcb5d0..92bd0fbf98 100644 --- a/docs/lgpl-3.0-zeromq.html +++ b/docs/lgpl-3.0-zeromq.html @@ -138,8 +138,7 @@
license_text
-

-           SPECIAL EXCEPTION GRANTED BY COPYRIGHT HOLDERS
+    
           SPECIAL EXCEPTION GRANTED BY COPYRIGHT HOLDERS
 
 As a special exception, copyright holders give you permission to link this
 library with independent modules to produce an executable, regardless of
@@ -160,7 +159,8 @@
       AboutCode
     

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-3.0-zeromq.json b/docs/lgpl-3.0-zeromq.json index 10f85151bd..14a1c23d42 100644 --- a/docs/lgpl-3.0-zeromq.json +++ b/docs/lgpl-3.0-zeromq.json @@ -1 +1,14 @@ -{"key": "lgpl-3.0-zeromq", "is_deprecated": true, "short_name": "LGPL 3.0 with ZeroMQ exception", "name": "LGPL 3.0 with ZeroMQ exception", "category": "Copyleft Limited", "owner": "ZeroMQ", "homepage_url": "https://github.com/zeromq/zeromq3-x/blob/master/COPYING.LESSER", "is_exception": true, "faq_url": "https://github.com/zeromq/zeromq3-x/blob/master/README", "other_urls": ["https://github.com/zeromq/zeromq3-x/blob/master/COPYING"]} \ No newline at end of file +{ + "key": "lgpl-3.0-zeromq", + "is_deprecated": true, + "short_name": "LGPL 3.0 with ZeroMQ exception", + "name": "LGPL 3.0 with ZeroMQ exception", + "category": "Copyleft Limited", + "owner": "ZeroMQ", + "homepage_url": "https://github.com/zeromq/zeromq3-x/blob/master/COPYING.LESSER", + "is_exception": true, + "faq_url": "https://github.com/zeromq/zeromq3-x/blob/master/README", + "other_urls": [ + "https://github.com/zeromq/zeromq3-x/blob/master/COPYING" + ] +} \ No newline at end of file diff --git a/docs/lgpl-3.0.LICENSE b/docs/lgpl-3.0.LICENSE index 0a041280bd..05bd8e60f7 100644 --- a/docs/lgpl-3.0.LICENSE +++ b/docs/lgpl-3.0.LICENSE @@ -1,3 +1,36 @@ +--- +key: lgpl-3.0 +short_name: LGPL 3.0 +name: GNU Lesser General Public License 3.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/lgpl-3.0.html +notes: | + Per SPDX.org, this license was released 29 June 2007. This license is OSI + Certified. +spdx_license_key: LGPL-3.0-only +other_spdx_license_keys: + - LGPL-3.0 +osi_license_key: LGPL-3.0 +text_urls: + - http://www.gnu.org/licenses/lgpl-3.0-standalone.html + - http://www.gnu.org/licenses/lgpl-3.0.txt +osi_url: http://www.opensource.org/licenses/lgpl-3.0.html +other_urls: + - http://www.gnu.org/copyleft/lesser.html + - http://www.gnu.org/licenses/why-not-lgpl.html + - http://www.opensource.org/licenses/LGPL-3.0 + - https://opensource.org/licenses/LGPL-3.0 + - https://www.gnu.org/licenses/lgpl+gpl-3.0.txt + - https://www.gnu.org/licenses/lgpl-3.0-standalone.html +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://fsf.org/ +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 @@ -162,4 +195,4 @@ General Public License ever published by the Free Software Foundation. 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. +Library. \ No newline at end of file diff --git a/docs/lgpl-3.0.html b/docs/lgpl-3.0.html index 15bfb8dc1e..4dc6391219 100644 --- a/docs/lgpl-3.0.html +++ b/docs/lgpl-3.0.html @@ -356,8 +356,7 @@ 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. -
+Library.
@@ -369,7 +368,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpl-3.0.json b/docs/lgpl-3.0.json index 22b1948e16..572d4a6cc3 100644 --- a/docs/lgpl-3.0.json +++ b/docs/lgpl-3.0.json @@ -1 +1,36 @@ -{"key": "lgpl-3.0", "short_name": "LGPL 3.0", "name": "GNU Lesser General Public License 3.0", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/lgpl-3.0.html", "notes": "Per SPDX.org, this license was released 29 June 2007. This license is OSI\nCertified.\n", "spdx_license_key": "LGPL-3.0-only", "other_spdx_license_keys": ["LGPL-3.0"], "osi_license_key": "LGPL-3.0", "text_urls": ["http://www.gnu.org/licenses/lgpl-3.0-standalone.html", "http://www.gnu.org/licenses/lgpl-3.0.txt"], "osi_url": "http://www.opensource.org/licenses/lgpl-3.0.html", "other_urls": ["http://www.gnu.org/copyleft/lesser.html", "http://www.gnu.org/licenses/why-not-lgpl.html", "http://www.opensource.org/licenses/LGPL-3.0", "https://opensource.org/licenses/LGPL-3.0", "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", "https://www.gnu.org/licenses/lgpl-3.0-standalone.html"], "ignorable_copyrights": ["Copyright (c) 2007 Free Software Foundation, Inc. "], "ignorable_holders": ["Free Software Foundation, Inc."], "ignorable_urls": ["https://fsf.org/"]} \ No newline at end of file +{ + "key": "lgpl-3.0", + "short_name": "LGPL 3.0", + "name": "GNU Lesser General Public License 3.0", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/lgpl-3.0.html", + "notes": "Per SPDX.org, this license was released 29 June 2007. This license is OSI\nCertified.\n", + "spdx_license_key": "LGPL-3.0-only", + "other_spdx_license_keys": [ + "LGPL-3.0" + ], + "osi_license_key": "LGPL-3.0", + "text_urls": [ + "http://www.gnu.org/licenses/lgpl-3.0-standalone.html", + "http://www.gnu.org/licenses/lgpl-3.0.txt" + ], + "osi_url": "http://www.opensource.org/licenses/lgpl-3.0.html", + "other_urls": [ + "http://www.gnu.org/copyleft/lesser.html", + "http://www.gnu.org/licenses/why-not-lgpl.html", + "http://www.opensource.org/licenses/LGPL-3.0", + "https://opensource.org/licenses/LGPL-3.0", + "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", + "https://www.gnu.org/licenses/lgpl-3.0-standalone.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 2007 Free Software Foundation, Inc. " + ], + "ignorable_holders": [ + "Free Software Foundation, Inc." + ], + "ignorable_urls": [ + "https://fsf.org/" + ] +} \ No newline at end of file diff --git a/docs/lgpllr.LICENSE b/docs/lgpllr.LICENSE index 32be2f2d6a..3e5cb71e66 100644 --- a/docs/lgpllr.LICENSE +++ b/docs/lgpllr.LICENSE @@ -1,3 +1,15 @@ +--- +key: lgpllr +short_name: LGPLLR +name: Lesser General Public License For Linguistic Resources +category: Copyleft Limited +owner: Unitex GramLab +homepage_url: http://www-igm.univ-mlv.fr/~unitex/lgpllr.html +spdx_license_key: LGPLLR +text_urls: + - https://raw.githubusercontent.com/UnitexGramLab/LGPL-LR/master/LGPL-LR +--- + Lesser General Public License For Linguistic Resources Preamble diff --git a/docs/lgpllr.html b/docs/lgpllr.html index 840bc32c01..80833c2650 100644 --- a/docs/lgpllr.html +++ b/docs/lgpllr.html @@ -365,7 +365,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lgpllr.json b/docs/lgpllr.json index 73df949336..3a3c64e033 100644 --- a/docs/lgpllr.json +++ b/docs/lgpllr.json @@ -1 +1,12 @@ -{"key": "lgpllr", "short_name": "LGPLLR", "name": "Lesser General Public License For Linguistic Resources", "category": "Copyleft Limited", "owner": "Unitex GramLab", "homepage_url": "http://www-igm.univ-mlv.fr/~unitex/lgpllr.html", "spdx_license_key": "LGPLLR", "text_urls": ["https://raw.githubusercontent.com/UnitexGramLab/LGPL-LR/master/LGPL-LR"]} \ No newline at end of file +{ + "key": "lgpllr", + "short_name": "LGPLLR", + "name": "Lesser General Public License For Linguistic Resources", + "category": "Copyleft Limited", + "owner": "Unitex GramLab", + "homepage_url": "http://www-igm.univ-mlv.fr/~unitex/lgpllr.html", + "spdx_license_key": "LGPLLR", + "text_urls": [ + "https://raw.githubusercontent.com/UnitexGramLab/LGPL-LR/master/LGPL-LR" + ] +} \ No newline at end of file diff --git a/docs/lha.LICENSE b/docs/lha.LICENSE index 2ca31c6c81..ac13724b67 100644 --- a/docs/lha.LICENSE +++ b/docs/lha.LICENSE @@ -1,3 +1,16 @@ +--- +key: lha +short_name: lha +name: LHA +category: Free Restricted +owner: Yooichi Tagawa +homepage_url: http://www.copyleftlicense.com/licenses/lha-license-version-10/view.php +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-lha +ignorable_emails: + - gotom@debian.org +--- + LHA LICENSE Permission is given for redistribution, copy, and modification provided @@ -50,4 +63,4 @@ GOTO Masanori ): the people who cannot access the network (by magazine or CD-ROM), please send E-Mail (Inter-Net address) to the author before the distribution. That's well where this software is appeard. - If you cannot do, you must send me the E-Mail later.` + If you cannot do, you must send me the E-Mail later.` \ No newline at end of file diff --git a/docs/lha.html b/docs/lha.html index 7b006bf302..0077d10e26 100644 --- a/docs/lha.html +++ b/docs/lha.html @@ -183,8 +183,7 @@ the people who cannot access the network (by magazine or CD-ROM), please send E-Mail (Inter-Net address) to the author before the distribution. That's well where this software is appeard. - If you cannot do, you must send me the E-Mail later.` - + If you cannot do, you must send me the E-Mail later.`
@@ -196,7 +195,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lha.json b/docs/lha.json index 3103718c51..b22cbc888b 100644 --- a/docs/lha.json +++ b/docs/lha.json @@ -1 +1,13 @@ -{"key": "lha", "short_name": "lha", "name": "LHA", "category": "Free Restricted", "owner": "Yooichi Tagawa", "homepage_url": "http://www.copyleftlicense.com/licenses/lha-license-version-10/view.php", "notes": "From https://github.com/ErikMcClure/bad-licenses", "spdx_license_key": "LicenseRef-scancode-lha", "ignorable_emails": ["gotom@debian.org"]} \ No newline at end of file +{ + "key": "lha", + "short_name": "lha", + "name": "LHA", + "category": "Free Restricted", + "owner": "Yooichi Tagawa", + "homepage_url": "http://www.copyleftlicense.com/licenses/lha-license-version-10/view.php", + "notes": "From https://github.com/ErikMcClure/bad-licenses", + "spdx_license_key": "LicenseRef-scancode-lha", + "ignorable_emails": [ + "gotom@debian.org" + ] +} \ No newline at end of file diff --git a/docs/libcap.LICENSE b/docs/libcap.LICENSE index c3f7ddd898..37fd996ef4 100644 --- a/docs/libcap.LICENSE +++ b/docs/libcap.LICENSE @@ -1,3 +1,17 @@ +--- +key: libcap +is_deprecated: yes +short_name: libcap License +name: libcap License +category: Permissive +owner: Unspecified +homepage_url: https://sites.google.com/site/fullycapable/ +notes: this is a bsd-style license with a GPL alternative and is now reported as an expression + instead +text_urls: + - https://git.kernel.org/pub/scm/libs/libcap/libcap.git/plain/License +--- + Unless otherwise *explicitly* stated, the following text describes the licensed conditions under which the contents of this libcap release may be used and distributed: diff --git a/docs/libcap.html b/docs/libcap.html index c1931c048a..90dafebc2a 100644 --- a/docs/libcap.html +++ b/docs/libcap.html @@ -183,7 +183,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/libcap.json b/docs/libcap.json index db6193f94b..b8f655bdf1 100644 --- a/docs/libcap.json +++ b/docs/libcap.json @@ -1 +1,13 @@ -{"key": "libcap", "is_deprecated": true, "short_name": "libcap License", "name": "libcap License", "category": "Permissive", "owner": "Unspecified", "homepage_url": "https://sites.google.com/site/fullycapable/", "notes": "this is a bsd-style license with a GPL alternative and is now reported as an expression instead", "text_urls": ["https://git.kernel.org/pub/scm/libs/libcap/libcap.git/plain/License"]} \ No newline at end of file +{ + "key": "libcap", + "is_deprecated": true, + "short_name": "libcap License", + "name": "libcap License", + "category": "Permissive", + "owner": "Unspecified", + "homepage_url": "https://sites.google.com/site/fullycapable/", + "notes": "this is a bsd-style license with a GPL alternative and is now reported as an expression instead", + "text_urls": [ + "https://git.kernel.org/pub/scm/libs/libcap/libcap.git/plain/License" + ] +} \ No newline at end of file diff --git a/docs/liberation-font-exception.LICENSE b/docs/liberation-font-exception.LICENSE index 7d2b9bdcec..41cdeaa54f 100644 --- a/docs/liberation-font-exception.LICENSE +++ b/docs/liberation-font-exception.LICENSE @@ -1,3 +1,21 @@ +--- +key: liberation-font-exception +short_name: Liberation Font Exception to GPL 2.0 +name: Liberation Font Exception to GPL 2.0 +category: Copyleft +owner: Red Hat +homepage_url: https://fedoraproject.org/wiki/Licensing:LiberationFontLicense +is_exception: yes +spdx_license_key: LicenseRef-scancode-liberation-font-exception +text_urls: + - https://fedoraproject.org/wiki/Licensing:LiberationFontLicense + - https://pagure.io/liberation-fonts/raw/cf3040c146097d6b7361e2823d5c6b5c309a456a/f/master/License.txt +ignorable_copyrights: + - Copyright (c) 2007 Red Hat, Inc. +ignorable_holders: + - Red Hat, Inc. +--- + LICENSE AGREEMENT AND LIMITED PRODUCT WARRANTY LIBERATION FONT SOFTWARE @@ -16,4 +34,4 @@ 4. Limitation of Remedies and Liability. To the maximum extent permitted by applicable law, Red Hat or any Red Hat authorized dealer will not be liable to Client for any incidental or consequential damages, including lost profits or lost savings arising out of the use or inability to use the Software, even if Red Hat or such dealer has been advised of the possibility of such damages. 5. General. If any provision of this agreement is held to be unenforceable, that shall not affect the enforceability of the remaining provisions. This agreement shall be governed by the laws of the State of North Carolina and of the United States, without regard to any conflict of laws provisions, except that the United Nations Convention on the International Sale of Goods shall not apply. - Copyright © 2007 Red Hat, Inc. All rights reserved. LIBERATION is a trademark of Red Hat, Inc. + Copyright © 2007 Red Hat, Inc. All rights reserved. LIBERATION is a trademark of Red Hat, Inc. \ No newline at end of file diff --git a/docs/liberation-font-exception.html b/docs/liberation-font-exception.html index 3316b474fb..9a379e8e94 100644 --- a/docs/liberation-font-exception.html +++ b/docs/liberation-font-exception.html @@ -167,8 +167,7 @@ 4. Limitation of Remedies and Liability. To the maximum extent permitted by applicable law, Red Hat or any Red Hat authorized dealer will not be liable to Client for any incidental or consequential damages, including lost profits or lost savings arising out of the use or inability to use the Software, even if Red Hat or such dealer has been advised of the possibility of such damages. 5. General. If any provision of this agreement is held to be unenforceable, that shall not affect the enforceability of the remaining provisions. This agreement shall be governed by the laws of the State of North Carolina and of the United States, without regard to any conflict of laws provisions, except that the United Nations Convention on the International Sale of Goods shall not apply. - Copyright © 2007 Red Hat, Inc. All rights reserved. LIBERATION is a trademark of Red Hat, Inc. - + Copyright © 2007 Red Hat, Inc. All rights reserved. LIBERATION is a trademark of Red Hat, Inc.
@@ -180,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/liberation-font-exception.json b/docs/liberation-font-exception.json index 552db42ece..ad2d4f6c7f 100644 --- a/docs/liberation-font-exception.json +++ b/docs/liberation-font-exception.json @@ -1 +1,20 @@ -{"key": "liberation-font-exception", "short_name": "Liberation Font Exception to GPL 2.0", "name": "Liberation Font Exception to GPL 2.0", "category": "Copyleft", "owner": "Red Hat", "homepage_url": "https://fedoraproject.org/wiki/Licensing:LiberationFontLicense", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-liberation-font-exception", "text_urls": ["https://fedoraproject.org/wiki/Licensing:LiberationFontLicense", "https://pagure.io/liberation-fonts/raw/cf3040c146097d6b7361e2823d5c6b5c309a456a/f/master/License.txt"], "ignorable_copyrights": ["Copyright (c) 2007 Red Hat, Inc."], "ignorable_holders": ["Red Hat, Inc."]} \ No newline at end of file +{ + "key": "liberation-font-exception", + "short_name": "Liberation Font Exception to GPL 2.0", + "name": "Liberation Font Exception to GPL 2.0", + "category": "Copyleft", + "owner": "Red Hat", + "homepage_url": "https://fedoraproject.org/wiki/Licensing:LiberationFontLicense", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-liberation-font-exception", + "text_urls": [ + "https://fedoraproject.org/wiki/Licensing:LiberationFontLicense", + "https://pagure.io/liberation-fonts/raw/cf3040c146097d6b7361e2823d5c6b5c309a456a/f/master/License.txt" + ], + "ignorable_copyrights": [ + "Copyright (c) 2007 Red Hat, Inc." + ], + "ignorable_holders": [ + "Red Hat, Inc." + ] +} \ No newline at end of file diff --git a/docs/libgd-2018.LICENSE b/docs/libgd-2018.LICENSE index ca924a20d5..635567afa5 100644 --- a/docs/libgd-2018.LICENSE +++ b/docs/libgd-2018.LICENSE @@ -1,3 +1,51 @@ +--- +key: libgd-2018 +short_name: libgd License 2018 +name: libgd License 2018 +category: Permissive +owner: GD Graphics (Draw) Library Project +homepage_url: https://github.com/libgd/libgd/blob/master/COPYING +spdx_license_key: GD +other_spdx_license_keys: + - LicenseRef-scancode-libgd-2018 +text_urls: + - https://libgd.github.io/manuals/2.3.0/files/license-txt.html +ignorable_copyrights: + - Portions copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 by + Cold Spring Harbor Laboratory + - Portions copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 by Boutell.Com, + Inc. + - Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Pierre-Alain Joye (pierre@libgd.org) + - copyright (c) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Thomas + G. Lane + - copyright 1989 by Jef Poskanzer and David Rowley + - copyright 1990, 1991, 1993 by David Koblas + - copyright 1999, 2000, 2001, 2002, 2003, 2004 Greg Roelofs + - copyright 1999, 2000, 2001, 2002, 2003, 2004 John Ellson (ellson@graphviz.org) + - copyright 1999, 2000, 2001, 2002, 2003, 2004 Philip Warner + - copyright 2000, 2001, 2002, 2003, 2004 Maurice Szmurlo and Johan Van den Brande + - copyright 2000, 2001, 2002, 2003, 2004, Doug Becker + - copyright 2001, 2002, 2003, 2004 John Ellson (ellson@graphviz.org) + - copyright 2004 Jaakko Hyvatti (jaakko.hyvatti@iki.fi) +ignorable_holders: + - Boutell.Com, Inc. + - Cold Spring Harbor Laboratory + - David Koblas + - Doug Becker + - Greg Roelofs + - Jaakko Hyvatti + - Jef Poskanzer and David Rowley + - John Ellson + - Maurice Szmurlo and Johan Van den Brande + - Philip Warner + - Pierre-Alain Joye + - Thomas G. Lane +ignorable_emails: + - ellson@graphviz.org + - jaakko.hyvatti@iki.fi + - pierre@libgd.org +--- + Credits and license terms: In order to resolve any possible confusion regarding the authorship of diff --git a/docs/libgd-2018.html b/docs/libgd-2018.html index fedf4b892e..bf2861da32 100644 --- a/docs/libgd-2018.html +++ b/docs/libgd-2018.html @@ -243,7 +243,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/libgd-2018.json b/docs/libgd-2018.json index 36c3ac5049..0b246148d8 100644 --- a/docs/libgd-2018.json +++ b/docs/libgd-2018.json @@ -1 +1,49 @@ -{"key": "libgd-2018", "short_name": "libgd License 2018", "name": "libgd License 2018", "category": "Permissive", "owner": "GD Graphics (Draw) Library Project", "homepage_url": "https://github.com/libgd/libgd/blob/master/COPYING", "spdx_license_key": "GD", "other_spdx_license_keys": ["LicenseRef-scancode-libgd-2018"], "text_urls": ["https://libgd.github.io/manuals/2.3.0/files/license-txt.html"], "ignorable_copyrights": ["Portions copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 by Cold Spring Harbor Laboratory", "Portions copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 by Boutell.Com, Inc.", "Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Pierre-Alain Joye (pierre@libgd.org)", "copyright (c) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Thomas G. Lane", "copyright 1989 by Jef Poskanzer and David Rowley", "copyright 1990, 1991, 1993 by David Koblas", "copyright 1999, 2000, 2001, 2002, 2003, 2004 Greg Roelofs", "copyright 1999, 2000, 2001, 2002, 2003, 2004 John Ellson (ellson@graphviz.org)", "copyright 1999, 2000, 2001, 2002, 2003, 2004 Philip Warner", "copyright 2000, 2001, 2002, 2003, 2004 Maurice Szmurlo and Johan Van den Brande", "copyright 2000, 2001, 2002, 2003, 2004, Doug Becker", "copyright 2001, 2002, 2003, 2004 John Ellson (ellson@graphviz.org)", "copyright 2004 Jaakko Hyvatti (jaakko.hyvatti@iki.fi)"], "ignorable_holders": ["Boutell.Com, Inc.", "Cold Spring Harbor Laboratory", "David Koblas", "Doug Becker", "Greg Roelofs", "Jaakko Hyvatti", "Jef Poskanzer and David Rowley", "John Ellson", "Maurice Szmurlo and Johan Van den Brande", "Philip Warner", "Pierre-Alain Joye", "Thomas G. Lane"], "ignorable_emails": ["ellson@graphviz.org", "jaakko.hyvatti@iki.fi", "pierre@libgd.org"]} \ No newline at end of file +{ + "key": "libgd-2018", + "short_name": "libgd License 2018", + "name": "libgd License 2018", + "category": "Permissive", + "owner": "GD Graphics (Draw) Library Project", + "homepage_url": "https://github.com/libgd/libgd/blob/master/COPYING", + "spdx_license_key": "GD", + "other_spdx_license_keys": [ + "LicenseRef-scancode-libgd-2018" + ], + "text_urls": [ + "https://libgd.github.io/manuals/2.3.0/files/license-txt.html" + ], + "ignorable_copyrights": [ + "Portions copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 by Cold Spring Harbor Laboratory", + "Portions copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 by Boutell.Com, Inc.", + "Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Pierre-Alain Joye (pierre@libgd.org)", + "copyright (c) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Thomas G. Lane", + "copyright 1989 by Jef Poskanzer and David Rowley", + "copyright 1990, 1991, 1993 by David Koblas", + "copyright 1999, 2000, 2001, 2002, 2003, 2004 Greg Roelofs", + "copyright 1999, 2000, 2001, 2002, 2003, 2004 John Ellson (ellson@graphviz.org)", + "copyright 1999, 2000, 2001, 2002, 2003, 2004 Philip Warner", + "copyright 2000, 2001, 2002, 2003, 2004 Maurice Szmurlo and Johan Van den Brande", + "copyright 2000, 2001, 2002, 2003, 2004, Doug Becker", + "copyright 2001, 2002, 2003, 2004 John Ellson (ellson@graphviz.org)", + "copyright 2004 Jaakko Hyvatti (jaakko.hyvatti@iki.fi)" + ], + "ignorable_holders": [ + "Boutell.Com, Inc.", + "Cold Spring Harbor Laboratory", + "David Koblas", + "Doug Becker", + "Greg Roelofs", + "Jaakko Hyvatti", + "Jef Poskanzer and David Rowley", + "John Ellson", + "Maurice Szmurlo and Johan Van den Brande", + "Philip Warner", + "Pierre-Alain Joye", + "Thomas G. Lane" + ], + "ignorable_emails": [ + "ellson@graphviz.org", + "jaakko.hyvatti@iki.fi", + "pierre@libgd.org" + ] +} \ No newline at end of file diff --git a/docs/libgeotiff.LICENSE b/docs/libgeotiff.LICENSE index b6397ca0f9..3a822d44d9 100644 --- a/docs/libgeotiff.LICENSE +++ b/docs/libgeotiff.LICENSE @@ -1,3 +1,21 @@ +--- +key: libgeotiff +short_name: libgeoTiff License +name: libgeoTiff License +category: Permissive +owner: GeoTIFF +homepage_url: http://trac.osgeo.org/geotiff/browser/tags/libgeotiff-1.4.0/LICENSE +notes: composite +spdx_license_key: LicenseRef-scancode-libgeotiff +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 1999, Frank Warmerdam + - copyright (c) 1995 Niles D. Ritter +ignorable_holders: + - Frank Warmerdam + - Niles D. Ritter +--- + libgeotiff Licensing ==================== diff --git a/docs/libgeotiff.html b/docs/libgeotiff.html index 2b36e2370b..90decf185b 100644 --- a/docs/libgeotiff.html +++ b/docs/libgeotiff.html @@ -250,7 +250,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/libgeotiff.json b/docs/libgeotiff.json index ba14726b61..03e257073a 100644 --- a/docs/libgeotiff.json +++ b/docs/libgeotiff.json @@ -1 +1,19 @@ -{"key": "libgeotiff", "short_name": "libgeoTiff License", "name": "libgeoTiff License", "category": "Permissive", "owner": "GeoTIFF", "homepage_url": "http://trac.osgeo.org/geotiff/browser/tags/libgeotiff-1.4.0/LICENSE", "notes": "composite", "spdx_license_key": "LicenseRef-scancode-libgeotiff", "minimum_coverage": 80, "ignorable_copyrights": ["Copyright (c) 1999, Frank Warmerdam", "copyright (c) 1995 Niles D. Ritter"], "ignorable_holders": ["Frank Warmerdam", "Niles D. Ritter"]} \ No newline at end of file +{ + "key": "libgeotiff", + "short_name": "libgeoTiff License", + "name": "libgeoTiff License", + "category": "Permissive", + "owner": "GeoTIFF", + "homepage_url": "http://trac.osgeo.org/geotiff/browser/tags/libgeotiff-1.4.0/LICENSE", + "notes": "composite", + "spdx_license_key": "LicenseRef-scancode-libgeotiff", + "minimum_coverage": 80, + "ignorable_copyrights": [ + "Copyright (c) 1999, Frank Warmerdam", + "copyright (c) 1995 Niles D. Ritter" + ], + "ignorable_holders": [ + "Frank Warmerdam", + "Niles D. Ritter" + ] +} \ No newline at end of file diff --git a/docs/libmib.LICENSE b/docs/libmib.LICENSE index 5f1a6dcd57..d088bd012f 100644 --- a/docs/libmib.LICENSE +++ b/docs/libmib.LICENSE @@ -1,3 +1,20 @@ +--- +key: libmib +short_name: LibMib License +name: LibMib License +category: Permissive +owner: MIB Software +spdx_license_key: LicenseRef-scancode-libmib +ignorable_copyrights: + - Copyright 1998 Forrest J. Cavalier III +ignorable_holders: + - Forrest J. Cavalier III +ignorable_urls: + - http://www.mibsoftware.com/ + - http://www.mibsoftware.com/libmib/ + - http://www.opensource.org/ +--- + - - - - - - - - - - - - Copyright Notice - - - - - - - - - - - - Copyright 1998 Forrest J. Cavalier III diff --git a/docs/libmib.html b/docs/libmib.html index 517fc6a457..e90746a157 100644 --- a/docs/libmib.html +++ b/docs/libmib.html @@ -176,7 +176,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/libmib.json b/docs/libmib.json index 320b26f1f1..223c2269f3 100644 --- a/docs/libmib.json +++ b/docs/libmib.json @@ -1 +1,19 @@ -{"key": "libmib", "short_name": "LibMib License", "name": "LibMib License", "category": "Permissive", "owner": "MIB Software", "spdx_license_key": "LicenseRef-scancode-libmib", "ignorable_copyrights": ["Copyright 1998 Forrest J. Cavalier III"], "ignorable_holders": ["Forrest J. Cavalier III"], "ignorable_urls": ["http://www.mibsoftware.com/", "http://www.mibsoftware.com/libmib/", "http://www.opensource.org/"]} \ No newline at end of file +{ + "key": "libmib", + "short_name": "LibMib License", + "name": "LibMib License", + "category": "Permissive", + "owner": "MIB Software", + "spdx_license_key": "LicenseRef-scancode-libmib", + "ignorable_copyrights": [ + "Copyright 1998 Forrest J. Cavalier III" + ], + "ignorable_holders": [ + "Forrest J. Cavalier III" + ], + "ignorable_urls": [ + "http://www.mibsoftware.com/", + "http://www.mibsoftware.com/libmib/", + "http://www.opensource.org/" + ] +} \ No newline at end of file diff --git a/docs/libmng-2007.LICENSE b/docs/libmng-2007.LICENSE index 53a31e1492..ae2df64b7d 100644 --- a/docs/libmng-2007.LICENSE +++ b/docs/libmng-2007.LICENSE @@ -1,3 +1,54 @@ +--- +key: libmng-2007 +short_name: libmng License 2007 +name: libmng License 2007 +category: Permissive +owner: libmng Project +spdx_license_key: LicenseRef-scancode-libmng-2007 +other_urls: + - http://www.linuxfromscratch.org/blfs/view/cvs/general/libmng.html +standard_notice: | + Copyright (c) 2000-2007 Gerard Juyn (gerard@libmng.com) + [You may insert additional notices after this sentence if you modify + this source] + For the purposes of this copyright and license, "Contributing Authors" + is defined as the following set of individuals: + Gerard Juyn + Glenn Randers-Pehrson + The MNG Library is supplied "AS IS". The Contributing Authors + disclaim all warranties, expressed or implied, including, without + limitation, the warranties of merchantability and of fitness for any + purpose. The Contributing Authors assume no liability for direct, + indirect, incidental, special, exemplary, or consequential damages, + which may result from the use of the MNG Library, even if advised of + the possibility of such damage. + Permission is hereby granted to use, copy, modify, and distribute this + source code, or portions hereof, for any purpose, without fee, subject + to the following restrictions: + 1. The origin of this source code must not be misrepresented; + you must not claim that you wrote the original software. + 2. Altered versions must be plainly marked as such and must not be + misrepresented as being the original source. + 3. This Copyright notice may not be removed or altered from any source + or altered source distribution. + The Contributing Authors specifically permit, without fee, and + encourage the use of this source code as a component to supporting + the MNG and JNG file format in commercial products. If you use this + source code in a product, acknowledgment would be highly appreciated. + Parts of this software have been adapted from the libpng package. + Although this library supports all features from the PNG specification + (as MNG descends from it) it does not require the libpng package. + It does require the zlib library and optionally the IJG jpeg library, + and/or the "little-cms" library by Marti Maria (depending on the + inclusion of support for JNG and Full-Color-Management respectively. + This library's function is primarily to read and display MNG + animations. It is not meant as a full-featured image-editing + component! It does however offer creation and editing functionality + at the chunk level. + (future modifications may include some more support for creation + and or editing) +--- + The MNG Library is supplied "AS IS". The Contributing Authors disclaim all warranties, expressed or implied, including, without limitation, the warranties of merchantability and of fitness for any diff --git a/docs/libmng-2007.html b/docs/libmng-2007.html index 305ce483c8..b66d929005 100644 --- a/docs/libmng-2007.html +++ b/docs/libmng-2007.html @@ -199,7 +199,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/libmng-2007.json b/docs/libmng-2007.json index 8df52a9841..bfaa3eb305 100644 --- a/docs/libmng-2007.json +++ b/docs/libmng-2007.json @@ -1 +1,12 @@ -{"key": "libmng-2007", "short_name": "libmng License 2007", "name": "libmng License 2007", "category": "Permissive", "owner": "libmng Project", "spdx_license_key": "LicenseRef-scancode-libmng-2007", "other_urls": ["http://www.linuxfromscratch.org/blfs/view/cvs/general/libmng.html"], "standard_notice": "Copyright (c) 2000-2007 Gerard Juyn (gerard@libmng.com)\n[You may insert additional notices after this sentence if you modify\nthis source]\nFor the purposes of this copyright and license, \"Contributing Authors\"\nis defined as the following set of individuals:\nGerard Juyn\nGlenn Randers-Pehrson\nThe MNG Library is supplied \"AS IS\". The Contributing Authors\ndisclaim all warranties, expressed or implied, including, without\nlimitation, the warranties of merchantability and of fitness for any\npurpose. The Contributing Authors assume no liability for direct,\nindirect, incidental, special, exemplary, or consequential damages,\nwhich may result from the use of the MNG Library, even if advised of\nthe possibility of such damage.\nPermission is hereby granted to use, copy, modify, and distribute this\nsource code, or portions hereof, for any purpose, without fee, subject\nto the following restrictions:\n1. The origin of this source code must not be misrepresented;\nyou must not claim that you wrote the original software.\n2. Altered versions must be plainly marked as such and must not be\nmisrepresented as being the original source.\n3. This Copyright notice may not be removed or altered from any source\nor altered source distribution.\nThe Contributing Authors specifically permit, without fee, and\nencourage the use of this source code as a component to supporting\nthe MNG and JNG file format in commercial products. If you use this\nsource code in a product, acknowledgment would be highly appreciated.\nParts of this software have been adapted from the libpng package.\nAlthough this library supports all features from the PNG specification\n(as MNG descends from it) it does not require the libpng package.\nIt does require the zlib library and optionally the IJG jpeg library,\nand/or the \"little-cms\" library by Marti Maria (depending on the\ninclusion of support for JNG and Full-Color-Management respectively.\nThis library's function is primarily to read and display MNG\nanimations. It is not meant as a full-featured image-editing\ncomponent! It does however offer creation and editing functionality\nat the chunk level.\n(future modifications may include some more support for creation\nand or editing)\n"} \ No newline at end of file +{ + "key": "libmng-2007", + "short_name": "libmng License 2007", + "name": "libmng License 2007", + "category": "Permissive", + "owner": "libmng Project", + "spdx_license_key": "LicenseRef-scancode-libmng-2007", + "other_urls": [ + "http://www.linuxfromscratch.org/blfs/view/cvs/general/libmng.html" + ], + "standard_notice": "Copyright (c) 2000-2007 Gerard Juyn (gerard@libmng.com)\n[You may insert additional notices after this sentence if you modify\nthis source]\nFor the purposes of this copyright and license, \"Contributing Authors\"\nis defined as the following set of individuals:\nGerard Juyn\nGlenn Randers-Pehrson\nThe MNG Library is supplied \"AS IS\". The Contributing Authors\ndisclaim all warranties, expressed or implied, including, without\nlimitation, the warranties of merchantability and of fitness for any\npurpose. The Contributing Authors assume no liability for direct,\nindirect, incidental, special, exemplary, or consequential damages,\nwhich may result from the use of the MNG Library, even if advised of\nthe possibility of such damage.\nPermission is hereby granted to use, copy, modify, and distribute this\nsource code, or portions hereof, for any purpose, without fee, subject\nto the following restrictions:\n1. The origin of this source code must not be misrepresented;\nyou must not claim that you wrote the original software.\n2. Altered versions must be plainly marked as such and must not be\nmisrepresented as being the original source.\n3. This Copyright notice may not be removed or altered from any source\nor altered source distribution.\nThe Contributing Authors specifically permit, without fee, and\nencourage the use of this source code as a component to supporting\nthe MNG and JNG file format in commercial products. If you use this\nsource code in a product, acknowledgment would be highly appreciated.\nParts of this software have been adapted from the libpng package.\nAlthough this library supports all features from the PNG specification\n(as MNG descends from it) it does not require the libpng package.\nIt does require the zlib library and optionally the IJG jpeg library,\nand/or the \"little-cms\" library by Marti Maria (depending on the\ninclusion of support for JNG and Full-Color-Management respectively.\nThis library's function is primarily to read and display MNG\nanimations. It is not meant as a full-featured image-editing\ncomponent! It does however offer creation and editing functionality\nat the chunk level.\n(future modifications may include some more support for creation\nand or editing)\n" +} \ No newline at end of file diff --git a/docs/libpbm.LICENSE b/docs/libpbm.LICENSE index 348126ef56..32802435b9 100644 --- a/docs/libpbm.LICENSE +++ b/docs/libpbm.LICENSE @@ -1,6 +1,19 @@ +--- +key: libpbm +short_name: PBM Library License +name: PBM Library License +category: Permissive +owner: ACME Labs +homepage_url: http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c +spdx_license_key: LicenseRef-scancode-libpbm +text_urls: + - http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c +other_urls: + - http://sourceforge.net/p/netpbm/code/HEAD/tree/trunk/doc/COPYRIGHT.PATENT +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. This software is provided "as is" without -express or implied warranty. - +express or implied warranty. \ No newline at end of file diff --git a/docs/libpbm.html b/docs/libpbm.html index 295e54d769..478ba9624b 100644 --- a/docs/libpbm.html +++ b/docs/libpbm.html @@ -137,9 +137,7 @@ for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. This software is provided "as is" without -express or implied warranty. - - +express or implied warranty.
@@ -151,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/libpbm.json b/docs/libpbm.json index b23bd56e09..7ec0f26db1 100644 --- a/docs/libpbm.json +++ b/docs/libpbm.json @@ -1 +1,15 @@ -{"key": "libpbm", "short_name": "PBM Library License", "name": "PBM Library License", "category": "Permissive", "owner": "ACME Labs", "homepage_url": "http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c", "spdx_license_key": "LicenseRef-scancode-libpbm", "text_urls": ["http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c"], "other_urls": ["http://sourceforge.net/p/netpbm/code/HEAD/tree/trunk/doc/COPYRIGHT.PATENT"]} \ No newline at end of file +{ + "key": "libpbm", + "short_name": "PBM Library License", + "name": "PBM Library License", + "category": "Permissive", + "owner": "ACME Labs", + "homepage_url": "http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c", + "spdx_license_key": "LicenseRef-scancode-libpbm", + "text_urls": [ + "http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c" + ], + "other_urls": [ + "http://sourceforge.net/p/netpbm/code/HEAD/tree/trunk/doc/COPYRIGHT.PATENT" + ] +} \ No newline at end of file diff --git a/docs/libpng-v2.LICENSE b/docs/libpng-v2.LICENSE index b28d9f09ef..d40273a5b0 100644 --- a/docs/libpng-v2.LICENSE +++ b/docs/libpng-v2.LICENSE @@ -1,3 +1,26 @@ +--- +key: libpng-v2 +short_name: LIbpng License v2 +name: PNG Reference Library License version 2 +category: Permissive +owner: libpng +homepage_url: http://www.libpng.org/pub/png/src/libpng-LICENSE.txt +spdx_license_key: libpng-2.0 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + - Copyright (c) 1995-2018 The PNG Reference Library Authors + - Copyright (c) 1996-1997 Andreas Dilger + - Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson + - Copyright (c) 2018 Cosmin Truta +ignorable_holders: + - Andreas Dilger + - Cosmin Truta + - Glenn Randers-Pehrson + - Guy Eric Schalnat, Group 42, Inc. + - The PNG Reference Library Authors +--- + COPYRIGHT NOTICE, DISCLAIMER, and LICENSE ========================================= @@ -33,5 +56,4 @@ subject to the following restrictions: not be misrepresented as being the original software. 3. This Copyright notice may not be removed or altered from any - source or altered source distribution. - + source or altered source distribution. \ No newline at end of file diff --git a/docs/libpng-v2.html b/docs/libpng-v2.html index a057e618a5..914a93a15c 100644 --- a/docs/libpng-v2.html +++ b/docs/libpng-v2.html @@ -175,9 +175,7 @@ not be misrepresented as being the original software. 3. This Copyright notice may not be removed or altered from any - source or altered source distribution. - - + source or altered source distribution.
@@ -189,7 +187,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/libpng-v2.json b/docs/libpng-v2.json index 684613b5b4..250c482f58 100644 --- a/docs/libpng-v2.json +++ b/docs/libpng-v2.json @@ -1 +1,24 @@ -{"key": "libpng-v2", "short_name": "LIbpng License v2", "name": "PNG Reference Library License version 2", "category": "Permissive", "owner": "libpng", "homepage_url": "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt", "spdx_license_key": "libpng-2.0", "minimum_coverage": 70, "ignorable_copyrights": ["Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.", "Copyright (c) 1995-2018 The PNG Reference Library Authors", "Copyright (c) 1996-1997 Andreas Dilger", "Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson", "Copyright (c) 2018 Cosmin Truta"], "ignorable_holders": ["Andreas Dilger", "Cosmin Truta", "Glenn Randers-Pehrson", "Guy Eric Schalnat, Group 42, Inc.", "The PNG Reference Library Authors"]} \ No newline at end of file +{ + "key": "libpng-v2", + "short_name": "LIbpng License v2", + "name": "PNG Reference Library License version 2", + "category": "Permissive", + "owner": "libpng", + "homepage_url": "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt", + "spdx_license_key": "libpng-2.0", + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.", + "Copyright (c) 1995-2018 The PNG Reference Library Authors", + "Copyright (c) 1996-1997 Andreas Dilger", + "Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson", + "Copyright (c) 2018 Cosmin Truta" + ], + "ignorable_holders": [ + "Andreas Dilger", + "Cosmin Truta", + "Glenn Randers-Pehrson", + "Guy Eric Schalnat, Group 42, Inc.", + "The PNG Reference Library Authors" + ] +} \ No newline at end of file diff --git a/docs/libpng.LICENSE b/docs/libpng.LICENSE index 9501d0ac8e..62088058a8 100644 --- a/docs/libpng.LICENSE +++ b/docs/libpng.LICENSE @@ -1,3 +1,27 @@ +--- +key: libpng +short_name: Libpng License +name: Libpng License +category: Permissive +owner: libpng +homepage_url: http://www.libpng.org/pub/png/libpng.html +spdx_license_key: Libpng +text_urls: + - http://libpng.org/pub/png/src/libpng-LICENSE.txt +other_urls: + - http://www.libpng.org/pub/png/src/libpng-LICENSE.txt +ignorable_copyrights: + - Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. + - Copyright (c) 1996, 1997 Andreas Dilger + - Copyright (c) 1998, 1999 Glenn Randers-Pehrson + - Copyright (c) 2000-2002 Glenn Randers-Pehrson + - Copyright (c) 2004, 2006-2008 Glenn Randers-Pehrson +ignorable_holders: + - Andreas Dilger + - Glenn Randers-Pehrson + - Guy Eric Schalnat, Group 42, Inc. +--- + This copy of the libpng notices is provided for your convenience. In case of any discrepancy between this copy and the notices in the file png.h that is included in the libpng distribution, the latter shall prevail. diff --git a/docs/libpng.html b/docs/libpng.html index e3429a3d8f..bfcac31be7 100644 --- a/docs/libpng.html +++ b/docs/libpng.html @@ -270,7 +270,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/libpng.json b/docs/libpng.json index 09b1951d18..b956566467 100644 --- a/docs/libpng.json +++ b/docs/libpng.json @@ -1 +1,27 @@ -{"key": "libpng", "short_name": "Libpng License", "name": "Libpng License", "category": "Permissive", "owner": "libpng", "homepage_url": "http://www.libpng.org/pub/png/libpng.html", "spdx_license_key": "Libpng", "text_urls": ["http://libpng.org/pub/png/src/libpng-LICENSE.txt"], "other_urls": ["http://www.libpng.org/pub/png/src/libpng-LICENSE.txt"], "ignorable_copyrights": ["Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.", "Copyright (c) 1996, 1997 Andreas Dilger", "Copyright (c) 1998, 1999 Glenn Randers-Pehrson", "Copyright (c) 2000-2002 Glenn Randers-Pehrson", "Copyright (c) 2004, 2006-2008 Glenn Randers-Pehrson"], "ignorable_holders": ["Andreas Dilger", "Glenn Randers-Pehrson", "Guy Eric Schalnat, Group 42, Inc."]} \ No newline at end of file +{ + "key": "libpng", + "short_name": "Libpng License", + "name": "Libpng License", + "category": "Permissive", + "owner": "libpng", + "homepage_url": "http://www.libpng.org/pub/png/libpng.html", + "spdx_license_key": "Libpng", + "text_urls": [ + "http://libpng.org/pub/png/src/libpng-LICENSE.txt" + ], + "other_urls": [ + "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt" + ], + "ignorable_copyrights": [ + "Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.", + "Copyright (c) 1996, 1997 Andreas Dilger", + "Copyright (c) 1998, 1999 Glenn Randers-Pehrson", + "Copyright (c) 2000-2002 Glenn Randers-Pehrson", + "Copyright (c) 2004, 2006-2008 Glenn Randers-Pehrson" + ], + "ignorable_holders": [ + "Andreas Dilger", + "Glenn Randers-Pehrson", + "Guy Eric Schalnat, Group 42, Inc." + ] +} \ No newline at end of file diff --git a/docs/librato-exception.LICENSE b/docs/librato-exception.LICENSE index da59c0faa8..f959050357 100644 --- a/docs/librato-exception.LICENSE +++ b/docs/librato-exception.LICENSE @@ -1,3 +1,13 @@ +--- +key: librato-exception +short_name: Librato Open License 1.0 +name: Librato Open License Version 1.0 +category: Proprietary Free +owner: solarwinds-librato +homepage_url: https://github.com/appoptics/appoptics-apm-ruby/blob/db06514031e962d1ffe7fc1a348895dbf2a6d693/LICENSE +spdx_license_key: LicenseRef-scancode-librato-exception +--- + Librato Open License Version 1.0, October, 2016 diff --git a/docs/librato-exception.html b/docs/librato-exception.html index 1fa2673c4a..9e9db2ff3f 100644 --- a/docs/librato-exception.html +++ b/docs/librato-exception.html @@ -319,7 +319,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/librato-exception.json b/docs/librato-exception.json index da6cb95006..3e495d64aa 100644 --- a/docs/librato-exception.json +++ b/docs/librato-exception.json @@ -1 +1,9 @@ -{"key": "librato-exception", "short_name": "Librato Open License 1.0", "name": "Librato Open License Version 1.0", "category": "Proprietary Free", "owner": "solarwinds-librato", "homepage_url": "https://github.com/appoptics/appoptics-apm-ruby/blob/db06514031e962d1ffe7fc1a348895dbf2a6d693/LICENSE", "spdx_license_key": "LicenseRef-scancode-librato-exception"} \ No newline at end of file +{ + "key": "librato-exception", + "short_name": "Librato Open License 1.0", + "name": "Librato Open License Version 1.0", + "category": "Proprietary Free", + "owner": "solarwinds-librato", + "homepage_url": "https://github.com/appoptics/appoptics-apm-ruby/blob/db06514031e962d1ffe7fc1a348895dbf2a6d693/LICENSE", + "spdx_license_key": "LicenseRef-scancode-librato-exception" +} \ No newline at end of file diff --git a/docs/libselinux-pd.LICENSE b/docs/libselinux-pd.LICENSE index 2861d2ddc2..065c9f2139 100644 --- a/docs/libselinux-pd.LICENSE +++ b/docs/libselinux-pd.LICENSE @@ -1,3 +1,15 @@ +--- +key: libselinux-pd +short_name: libselinux License +name: libselinux License +category: Public Domain +owner: SELinux Project +homepage_url: http://userspace.selinuxproject.org/trac/browser/libselinux/LICENSE +spdx_license_key: LicenseRef-scancode-libselinux-pd +text_urls: + - https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE +--- + This library is public domain software, i.e. not copyrighted. Warranty Exclusion diff --git a/docs/libselinux-pd.html b/docs/libselinux-pd.html index 466c2d99bc..cf24d125b3 100644 --- a/docs/libselinux-pd.html +++ b/docs/libselinux-pd.html @@ -156,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/libselinux-pd.json b/docs/libselinux-pd.json index 7da00bbda5..056d120ec3 100644 --- a/docs/libselinux-pd.json +++ b/docs/libselinux-pd.json @@ -1 +1,12 @@ -{"key": "libselinux-pd", "short_name": "libselinux License", "name": "libselinux License", "category": "Public Domain", "owner": "SELinux Project", "homepage_url": "http://userspace.selinuxproject.org/trac/browser/libselinux/LICENSE", "spdx_license_key": "LicenseRef-scancode-libselinux-pd", "text_urls": ["https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE"]} \ No newline at end of file +{ + "key": "libselinux-pd", + "short_name": "libselinux License", + "name": "libselinux License", + "category": "Public Domain", + "owner": "SELinux Project", + "homepage_url": "http://userspace.selinuxproject.org/trac/browser/libselinux/LICENSE", + "spdx_license_key": "LicenseRef-scancode-libselinux-pd", + "text_urls": [ + "https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE" + ] +} \ No newline at end of file diff --git a/docs/libsrv-1.0.2.LICENSE b/docs/libsrv-1.0.2.LICENSE index 82629f6f2c..88594d1228 100644 --- a/docs/libsrv-1.0.2.LICENSE +++ b/docs/libsrv-1.0.2.LICENSE @@ -1,3 +1,18 @@ +--- +key: libsrv-1.0.2 +short_name: libsrv License v1.0.2 +name: libsrv License v1.0.2 +category: Permissive +owner: libsrv project +homepage_url: https://sourceforge.net/projects/libsrv/files/libsrv/RELEASE_1_0_2/ +spdx_license_key: LicenseRef-scancode-libsrv-1.0.2 +standard_notice: | + This software is copyrighted (c) 2002 Rick van Rein, the Netherlands. + OpenFortress encourages the release of this code by employee Rick van Rein. +ignorable_authors: + - Rick van Rein and other contributors +--- + Redistribution and use in source and binary forms, with or without modification, are permitted for any legal purpose, provided that the following conditions are met: diff --git a/docs/libsrv-1.0.2.html b/docs/libsrv-1.0.2.html index 68a3fe3486..93a064dd22 100644 --- a/docs/libsrv-1.0.2.html +++ b/docs/libsrv-1.0.2.html @@ -177,7 +177,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/libsrv-1.0.2.json b/docs/libsrv-1.0.2.json index f4908052f7..2db1c79787 100644 --- a/docs/libsrv-1.0.2.json +++ b/docs/libsrv-1.0.2.json @@ -1 +1,13 @@ -{"key": "libsrv-1.0.2", "short_name": "libsrv License v1.0.2", "name": "libsrv License v1.0.2", "category": "Permissive", "owner": "libsrv project", "homepage_url": "https://sourceforge.net/projects/libsrv/files/libsrv/RELEASE_1_0_2/", "spdx_license_key": "LicenseRef-scancode-libsrv-1.0.2", "standard_notice": "This software is copyrighted (c) 2002 Rick van Rein, the Netherlands.\nOpenFortress encourages the release of this code by employee Rick van Rein.\n", "ignorable_authors": ["Rick van Rein and other contributors"]} \ No newline at end of file +{ + "key": "libsrv-1.0.2", + "short_name": "libsrv License v1.0.2", + "name": "libsrv License v1.0.2", + "category": "Permissive", + "owner": "libsrv project", + "homepage_url": "https://sourceforge.net/projects/libsrv/files/libsrv/RELEASE_1_0_2/", + "spdx_license_key": "LicenseRef-scancode-libsrv-1.0.2", + "standard_notice": "This software is copyrighted (c) 2002 Rick van Rein, the Netherlands.\nOpenFortress encourages the release of this code by employee Rick van Rein.\n", + "ignorable_authors": [ + "Rick van Rein and other contributors" + ] +} \ No newline at end of file diff --git a/docs/libtool-exception-2.0.LICENSE b/docs/libtool-exception-2.0.LICENSE index 35533155c3..c03811398e 100644 --- a/docs/libtool-exception-2.0.LICENSE +++ b/docs/libtool-exception-2.0.LICENSE @@ -1,3 +1,34 @@ +--- +key: libtool-exception-2.0 +short_name: GNU Libtool exception to GPL 2.0 +name: GNU Libtool exception to GPL 2.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://git.savannah.gnu.org/cgit/libtool.git/tree/m4/libtool.m4 +is_exception: yes +spdx_license_key: Libtool-exception +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This library 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 2, or (at your option) any later + version. + As a special exception to the GNU General Public License, + if you distribute this file as part of a program or library that + is built using GNU Libtool, you may include this file under the + same distribution terms that you use for the rest of that program. + GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy + can be downloaded from http://www.gnu.org/licenses/gpl.html, or + obtained by writing to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +--- + As a special exception to the GNU General Public License, if you distribute this file as part of a program or library that is built using GNU Libtool, you may include this file under the diff --git a/docs/libtool-exception-2.0.html b/docs/libtool-exception-2.0.html index 4a8b46bd49..c8f06b1542 100644 --- a/docs/libtool-exception-2.0.html +++ b/docs/libtool-exception-2.0.html @@ -170,7 +170,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/libtool-exception-2.0.json b/docs/libtool-exception-2.0.json index df638a31ef..56ff723fdd 100644 --- a/docs/libtool-exception-2.0.json +++ b/docs/libtool-exception-2.0.json @@ -1 +1,14 @@ -{"key": "libtool-exception-2.0", "short_name": "GNU Libtool exception to GPL 2.0", "name": "GNU Libtool exception to GPL 2.0", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://git.savannah.gnu.org/cgit/libtool.git/tree/m4/libtool.m4", "is_exception": true, "spdx_license_key": "Libtool-exception", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nAs a special exception to the GNU General Public License,\nif you distribute this file as part of a program or library that\nis built using GNU Libtool, you may include this file under the\nsame distribution terms that you use for the rest of that program.\nGNU Libtool is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with GNU Libtool; see the file COPYING. If not, a copy\ncan be downloaded from http://www.gnu.org/licenses/gpl.html, or\nobtained by writing to the Free Software Foundation, Inc.,\n51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n"} \ No newline at end of file +{ + "key": "libtool-exception-2.0", + "short_name": "GNU Libtool exception to GPL 2.0", + "name": "GNU Libtool exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://git.savannah.gnu.org/cgit/libtool.git/tree/m4/libtool.m4", + "is_exception": true, + "spdx_license_key": "Libtool-exception", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nAs a special exception to the GNU General Public License,\nif you distribute this file as part of a program or library that\nis built using GNU Libtool, you may include this file under the\nsame distribution terms that you use for the rest of that program.\nGNU Libtool is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with GNU Libtool; see the file COPYING. If not, a copy\ncan be downloaded from http://www.gnu.org/licenses/gpl.html, or\nobtained by writing to the Free Software Foundation, Inc.,\n51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n" +} \ No newline at end of file diff --git a/docs/libtool-exception.LICENSE b/docs/libtool-exception.LICENSE index cc6203c751..0ed92595e5 100644 --- a/docs/libtool-exception.LICENSE +++ b/docs/libtool-exception.LICENSE @@ -1,3 +1,16 @@ +--- +key: libtool-exception +is_deprecated: yes +short_name: Libtool Exception +name: GNU Libtool Exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +notes: replaced by libtool-exception-2.0 +is_exception: yes +other_urls: + - http://git.savannah.gnu.org/cgit/libtool.git/tree/m4/libtool.m4 +--- + As a special exception to the GNU General Public License, if you distribute this file as part of a program or library that is built using GNU Libtool, you may include this file under the same distribution terms diff --git a/docs/libtool-exception.html b/docs/libtool-exception.html index 75330838f6..25b6930720 100644 --- a/docs/libtool-exception.html +++ b/docs/libtool-exception.html @@ -146,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/libtool-exception.json b/docs/libtool-exception.json index 500a2a1a44..7e5aa61241 100644 --- a/docs/libtool-exception.json +++ b/docs/libtool-exception.json @@ -1 +1,13 @@ -{"key": "libtool-exception", "is_deprecated": true, "short_name": "Libtool Exception", "name": "GNU Libtool Exception", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "notes": "replaced by libtool-exception-2.0", "is_exception": true, "other_urls": ["http://git.savannah.gnu.org/cgit/libtool.git/tree/m4/libtool.m4"]} \ No newline at end of file +{ + "key": "libtool-exception", + "is_deprecated": true, + "short_name": "Libtool Exception", + "name": "GNU Libtool Exception", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "notes": "replaced by libtool-exception-2.0", + "is_exception": true, + "other_urls": [ + "http://git.savannah.gnu.org/cgit/libtool.git/tree/m4/libtool.m4" + ] +} \ No newline at end of file diff --git a/docs/libutil-david-nugent.LICENSE b/docs/libutil-david-nugent.LICENSE new file mode 100644 index 0000000000..ff87248311 --- /dev/null +++ b/docs/libutil-david-nugent.LICENSE @@ -0,0 +1,27 @@ +--- +key: libutil-david-nugent +short_name: libutil David Nugent License +name: libutil David Nugent License +category: Permissive +owner: David Nugent +spdx_license_key: libutil-David-Nugent +other_urls: + - http://web.mit.edu/freebsd/head/lib/libutil/login_ok.3 + - https://cgit.freedesktop.org/libbsd/tree/man/setproctitle.3bsd +--- + +Redistribution and use in source and binary forms, with or without +modification, is permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice immediately at the beginning of the file, without modification, + 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. This work was done expressly for inclusion into FreeBSD. Other use + is permitted provided this notation is included. +4. Absolutely no warranty of function or purpose is made by the author + David Nugent. +5. Modifications may be freely made to this file providing the above + conditions are met. \ No newline at end of file diff --git a/docs/libutil-david-nugent.html b/docs/libutil-david-nugent.html new file mode 100644 index 0000000000..cd8e7be30d --- /dev/null +++ b/docs/libutil-david-nugent.html @@ -0,0 +1,166 @@ + + + + + + LicenseDB: libutil-david-nugent + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + libutil-david-nugent + +
+ +
short_name
+
+ + libutil David Nugent License + +
+ +
name
+
+ + libutil David Nugent License + +
+ +
category
+
+ + Permissive + +
+ +
owner
+
+ + David Nugent + +
+ +
spdx_license_key
+
+ + libutil-David-Nugent + +
+ +
other_urls
+
+ + + +
+ +
+
license_text
+
Redistribution and use in source and binary forms, with or without
+modification, is permitted provided that the following conditions
+are met:
+1. Redistributions of source code must retain the above copyright
+   notice immediately at the beginning of the file, without modification,
+   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. This work was done expressly for inclusion into FreeBSD. Other use
+   is permitted provided this notation is included.
+4. Absolutely no warranty of function or purpose is made by the author
+   David Nugent.
+5. Modifications may be freely made to this file providing the above
+   conditions are met.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/libutil-david-nugent.json b/docs/libutil-david-nugent.json new file mode 100644 index 0000000000..f410cf189c --- /dev/null +++ b/docs/libutil-david-nugent.json @@ -0,0 +1,12 @@ +{ + "key": "libutil-david-nugent", + "short_name": "libutil David Nugent License", + "name": "libutil David Nugent License", + "category": "Permissive", + "owner": "David Nugent", + "spdx_license_key": "libutil-David-Nugent", + "other_urls": [ + "http://web.mit.edu/freebsd/head/lib/libutil/login_ok.3", + "https://cgit.freedesktop.org/libbsd/tree/man/setproctitle.3bsd" + ] +} \ No newline at end of file diff --git a/docs/libutil-david-nugent.yml b/docs/libutil-david-nugent.yml new file mode 100644 index 0000000000..1fb1827371 --- /dev/null +++ b/docs/libutil-david-nugent.yml @@ -0,0 +1,9 @@ +key: libutil-david-nugent +short_name: libutil David Nugent License +name: libutil David Nugent License +category: Permissive +owner: David Nugent +spdx_license_key: libutil-David-Nugent +other_urls: + - http://web.mit.edu/freebsd/head/lib/libutil/login_ok.3 + - https://cgit.freedesktop.org/libbsd/tree/man/setproctitle.3bsd diff --git a/docs/libwebsockets-exception.LICENSE b/docs/libwebsockets-exception.LICENSE index 5c65bcbba5..61158c6a3a 100644 --- a/docs/libwebsockets-exception.LICENSE +++ b/docs/libwebsockets-exception.LICENSE @@ -1,3 +1,59 @@ +--- +key: libwebsockets-exception +short_name: libwebsockets exception to LGPL 2.1 +name: libwebsockets exception to LGPL 2.1 +category: Copyleft Limited +owner: lws-team +homepage_url: https://github.com/warmcat/libwebsockets/blob/master/LICENSE +notes: composite +is_exception: yes +spdx_license_key: LicenseRef-scancode-libwebsockets-exception +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +minimum_coverage: 70 +standard_notice: | + Libwebsockets and included programs are provided under the terms of the GNU + Library General Public License (LGPL) 2.1, with the following exceptions: + 1) Any reference, whether in these modifications or in the GNU + Library General Public License 2.1, to this License, these terms, the + GNU Lesser Public License, GNU Library General Public License, LGPL, or + any similar reference shall refer to the GNU Library General Public + License 2.1 as modified by these paragraphs 1) through 4). + 2) Static linking of programs with the libwebsockets library does not + constitute a derivative work and does not require the author to provide + source code for the program, use the shared libwebsockets libraries, or + link their program against a user-supplied version of libwebsockets. + If you link the program to a modified version of libwebsockets, then the + changes to libwebsockets must be provided under the terms of the LGPL in + sections 1, 2, and 4. + 3) You do not have to provide a copy of the libwebsockets license with + programs that are linked to the libwebsockets library, nor do you have to + identify the libwebsockets license in your program or documentation as + required by section 6 of the LGPL. + However, programs must still identify their use of libwebsockets. The + following example statement can be included in user documentation to + satisfy this requirement: + "[program] is based in part on the work of the libwebsockets project + (https://libwebsockets.org)" + 4) Some sources included have their own, more liberal licenses, or options + to get original sources with the liberal terms. + Original liberal license retained + - lib/sha-1.c - 3-clause BSD license retained, link to original + - win32port/zlib - ZLIB license (see zlib.h) + - lib/mbedtls_wrapper - Apache 2.0 (only built if linked against mbedtls) + Relicensed to libwebsocket license + - lib/base64-decode.c - relicensed to LGPL2.1+SLE, link to original + - lib/daemonize.c - relicensed from Public Domain to LGPL2.1+SLE, + link to original Public Domain version + Public Domain (CC-zero) to simplify reuse + - test-apps/*.c + - test-apps/*.h + - lwsws/* + ------ end of exceptions +ignorable_urls: + - https://libwebsockets.org/ +--- + Libwebsockets and included programs are provided under the terms of the GNU Library General Public License (LGPL) 2.1, with the following exceptions: diff --git a/docs/libwebsockets-exception.html b/docs/libwebsockets-exception.html index 8fc8fa8e53..08eb4ec3be 100644 --- a/docs/libwebsockets-exception.html +++ b/docs/libwebsockets-exception.html @@ -262,7 +262,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/libwebsockets-exception.json b/docs/libwebsockets-exception.json index 5821dbff48..190f760d1d 100644 --- a/docs/libwebsockets-exception.json +++ b/docs/libwebsockets-exception.json @@ -1 +1,19 @@ -{"key": "libwebsockets-exception", "short_name": "libwebsockets exception to LGPL 2.1", "name": "libwebsockets exception to LGPL 2.1", "category": "Copyleft Limited", "owner": "lws-team", "homepage_url": "https://github.com/warmcat/libwebsockets/blob/master/LICENSE", "notes": "composite", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-libwebsockets-exception", "other_urls": ["http://www.gnu.org/licenses/lgpl-2.1.txt"], "minimum_coverage": 70, "standard_notice": "Libwebsockets and included programs are provided under the terms of the GNU\nLibrary General Public License (LGPL) 2.1, with the following exceptions:\n1) Any reference, whether in these modifications or in the GNU\nLibrary General Public License 2.1, to this License, these terms, the\nGNU Lesser Public License, GNU Library General Public License, LGPL, or\nany similar reference shall refer to the GNU Library General Public\nLicense 2.1 as modified by these paragraphs 1) through 4).\n2) Static linking of programs with the libwebsockets library does not\nconstitute a derivative work and does not require the author to provide\nsource code for the program, use the shared libwebsockets libraries, or\nlink their program against a user-supplied version of libwebsockets.\nIf you link the program to a modified version of libwebsockets, then the\nchanges to libwebsockets must be provided under the terms of the LGPL in\nsections 1, 2, and 4.\n3) You do not have to provide a copy of the libwebsockets license with\nprograms that are linked to the libwebsockets library, nor do you have to\nidentify the libwebsockets license in your program or documentation as\nrequired by section 6 of the LGPL.\nHowever, programs must still identify their use of libwebsockets. The\nfollowing example statement can be included in user documentation to\nsatisfy this requirement:\n\"[program] is based in part on the work of the libwebsockets project\n(https://libwebsockets.org)\"\n4) Some sources included have their own, more liberal licenses, or options\nto get original sources with the liberal terms.\nOriginal liberal license retained\n- lib/sha-1.c - 3-clause BSD license retained, link to original\n- win32port/zlib - ZLIB license (see zlib.h)\n- lib/mbedtls_wrapper - Apache 2.0 (only built if linked against mbedtls)\nRelicensed to libwebsocket license\n- lib/base64-decode.c - relicensed to LGPL2.1+SLE, link to original\n- lib/daemonize.c - relicensed from Public Domain to LGPL2.1+SLE,\nlink to original Public Domain version\nPublic Domain (CC-zero) to simplify reuse\n- test-apps/*.c\n- test-apps/*.h\n- lwsws/*\n------ end of exceptions\n", "ignorable_urls": ["https://libwebsockets.org/"]} \ No newline at end of file +{ + "key": "libwebsockets-exception", + "short_name": "libwebsockets exception to LGPL 2.1", + "name": "libwebsockets exception to LGPL 2.1", + "category": "Copyleft Limited", + "owner": "lws-team", + "homepage_url": "https://github.com/warmcat/libwebsockets/blob/master/LICENSE", + "notes": "composite", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-libwebsockets-exception", + "other_urls": [ + "http://www.gnu.org/licenses/lgpl-2.1.txt" + ], + "minimum_coverage": 70, + "standard_notice": "Libwebsockets and included programs are provided under the terms of the GNU\nLibrary General Public License (LGPL) 2.1, with the following exceptions:\n1) Any reference, whether in these modifications or in the GNU\nLibrary General Public License 2.1, to this License, these terms, the\nGNU Lesser Public License, GNU Library General Public License, LGPL, or\nany similar reference shall refer to the GNU Library General Public\nLicense 2.1 as modified by these paragraphs 1) through 4).\n2) Static linking of programs with the libwebsockets library does not\nconstitute a derivative work and does not require the author to provide\nsource code for the program, use the shared libwebsockets libraries, or\nlink their program against a user-supplied version of libwebsockets.\nIf you link the program to a modified version of libwebsockets, then the\nchanges to libwebsockets must be provided under the terms of the LGPL in\nsections 1, 2, and 4.\n3) You do not have to provide a copy of the libwebsockets license with\nprograms that are linked to the libwebsockets library, nor do you have to\nidentify the libwebsockets license in your program or documentation as\nrequired by section 6 of the LGPL.\nHowever, programs must still identify their use of libwebsockets. The\nfollowing example statement can be included in user documentation to\nsatisfy this requirement:\n\"[program] is based in part on the work of the libwebsockets project\n(https://libwebsockets.org)\"\n4) Some sources included have their own, more liberal licenses, or options\nto get original sources with the liberal terms.\nOriginal liberal license retained\n- lib/sha-1.c - 3-clause BSD license retained, link to original\n- win32port/zlib - ZLIB license (see zlib.h)\n- lib/mbedtls_wrapper - Apache 2.0 (only built if linked against mbedtls)\nRelicensed to libwebsocket license\n- lib/base64-decode.c - relicensed to LGPL2.1+SLE, link to original\n- lib/daemonize.c - relicensed from Public Domain to LGPL2.1+SLE,\nlink to original Public Domain version\nPublic Domain (CC-zero) to simplify reuse\n- test-apps/*.c\n- test-apps/*.h\n- lwsws/*\n------ end of exceptions\n", + "ignorable_urls": [ + "https://libwebsockets.org/" + ] +} \ No newline at end of file diff --git a/docs/libzip.LICENSE b/docs/libzip.LICENSE index ae303ff687..8e03e93019 100644 --- a/docs/libzip.LICENSE +++ b/docs/libzip.LICENSE @@ -1,3 +1,14 @@ +--- +key: libzip +is_deprecated: yes +short_name: libzip License +name: NiH libzip License +category: Permissive +owner: NiH +homepage_url: https://www.nih.at/libzip/LICENSE.html +notes: deprecated in favor of bsd-new See https://github.com/nexB/scancode-toolkit/issues/2995 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/libzip.html b/docs/libzip.html index 1be84e2545..d9f2e91180 100644 --- a/docs/libzip.html +++ b/docs/libzip.html @@ -156,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/libzip.json b/docs/libzip.json index 129713ee4c..78234c2bb9 100644 --- a/docs/libzip.json +++ b/docs/libzip.json @@ -1 +1,10 @@ -{"key": "libzip", "is_deprecated": true, "short_name": "libzip License", "name": "NiH libzip License", "category": "Permissive", "owner": "NiH", "homepage_url": "https://www.nih.at/libzip/LICENSE.html", "notes": "deprecated in favor of bsd-new See https://github.com/nexB/scancode-toolkit/issues/2995"} \ No newline at end of file +{ + "key": "libzip", + "is_deprecated": true, + "short_name": "libzip License", + "name": "NiH libzip License", + "category": "Permissive", + "owner": "NiH", + "homepage_url": "https://www.nih.at/libzip/LICENSE.html", + "notes": "deprecated in favor of bsd-new See https://github.com/nexB/scancode-toolkit/issues/2995" +} \ No newline at end of file diff --git a/docs/license-file-reference.LICENSE b/docs/license-file-reference.LICENSE index e69de29bb2..ac07d92b01 100644 --- a/docs/license-file-reference.LICENSE +++ b/docs/license-file-reference.LICENSE @@ -0,0 +1,10 @@ +--- +key: license-file-reference +is_deprecated: yes +short_name: license-file-reference +name: license-file-reference +category: Unstated License +owner: Unspecified +notes: this was known before as "see-license" and is now unknown-license-reference +is_unknown: yes +--- \ No newline at end of file diff --git a/docs/license-file-reference.html b/docs/license-file-reference.html index 54b6b6e143..d287c5a424 100644 --- a/docs/license-file-reference.html +++ b/docs/license-file-reference.html @@ -134,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/license-file-reference.json b/docs/license-file-reference.json index ba6c787a8e..8886c9663c 100644 --- a/docs/license-file-reference.json +++ b/docs/license-file-reference.json @@ -1 +1,10 @@ -{"key": "license-file-reference", "is_deprecated": true, "short_name": "license-file-reference", "name": "license-file-reference", "category": "Unstated License", "owner": "Unspecified", "notes": "this was known before as \"see-license\" and is now unknown-license-reference", "is_unknown": true} \ No newline at end of file +{ + "key": "license-file-reference", + "is_deprecated": true, + "short_name": "license-file-reference", + "name": "license-file-reference", + "category": "Unstated License", + "owner": "Unspecified", + "notes": "this was known before as \"see-license\" and is now unknown-license-reference", + "is_unknown": true +} \ No newline at end of file diff --git a/docs/lil-1.LICENSE b/docs/lil-1.LICENSE index 9085154636..62fc57d6f7 100644 --- a/docs/lil-1.LICENSE +++ b/docs/lil-1.LICENSE @@ -1,3 +1,16 @@ +--- +key: lil-1 +short_name: Lil License v1 +name: Lil License v1 +category: Permissive +owner: Jeremy Ashkenas +homepage_url: http://lillicense.org/v1.html +notes: this license has MIT-like terms with extra non-obvious patent grants. +spdx_license_key: LicenseRef-scancode-lil-1 +other_urls: + - https://github.com/jashkenas/lil-license +--- + Permission is hereby granted by the authors of this software, to any person, to use the software for any purpose, free of charge, including the rights to run, read, copy, change, distribute and sell it, and @@ -15,4 +28,4 @@ including but not limited to the warranties of title, fitness, merchantability and non-infringement. The authors have no obligation to provide support or updates for the software, and may not be held liable for any damages, claims or other liability arising from its -use. +use. \ No newline at end of file diff --git a/docs/lil-1.html b/docs/lil-1.html index 9e60d9c0bd..68dac10663 100644 --- a/docs/lil-1.html +++ b/docs/lil-1.html @@ -148,8 +148,7 @@ merchantability and non-infringement. The authors have no obligation to provide support or updates for the software, and may not be held liable for any damages, claims or other liability arising from its -use. - +use.
@@ -161,7 +160,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lil-1.json b/docs/lil-1.json index 132d553259..b471d72b64 100644 --- a/docs/lil-1.json +++ b/docs/lil-1.json @@ -1 +1,13 @@ -{"key": "lil-1", "short_name": "Lil License v1", "name": "Lil License v1", "category": "Permissive", "owner": "Jeremy Ashkenas", "homepage_url": "http://lillicense.org/v1.html", "notes": "this license has MIT-like terms with extra non-obvious patent grants.", "spdx_license_key": "LicenseRef-scancode-lil-1", "other_urls": ["https://github.com/jashkenas/lil-license"]} \ No newline at end of file +{ + "key": "lil-1", + "short_name": "Lil License v1", + "name": "Lil License v1", + "category": "Permissive", + "owner": "Jeremy Ashkenas", + "homepage_url": "http://lillicense.org/v1.html", + "notes": "this license has MIT-like terms with extra non-obvious patent grants.", + "spdx_license_key": "LicenseRef-scancode-lil-1", + "other_urls": [ + "https://github.com/jashkenas/lil-license" + ] +} \ No newline at end of file diff --git a/docs/liliq-p-1.1.LICENSE b/docs/liliq-p-1.1.LICENSE index d65f088cd5..d2169fa236 100644 --- a/docs/liliq-p-1.1.LICENSE +++ b/docs/liliq-p-1.1.LICENSE @@ -1,3 +1,18 @@ +--- +key: liliq-p-1.1 +language: fr +short_name: LiLiQ-P-1.1 +name: Licence Libre du Québec – Permissive version 1.1 +category: Copyleft Limited +owner: Quebec +homepage_url: https://opensource.org/licenses/LiLiQ-P-1.1 +spdx_license_key: LiLiQ-P-1.1 +osi_url: https://opensource.org/licenses/LiLiQ-P-1.1 +other_urls: + - http://opensource.org/licenses/LiLiQ-P-1.1 + - https://forge.gouv.qc.ca/licence/fr/liliq-v1-1/ +--- + Licence Libre du Québec – Permissive (LiLiQ-P) Version 1.1 diff --git a/docs/liliq-p-1.1.html b/docs/liliq-p-1.1.html index 190a6c6b37..2443854b3a 100644 --- a/docs/liliq-p-1.1.html +++ b/docs/liliq-p-1.1.html @@ -218,7 +218,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/liliq-p-1.1.json b/docs/liliq-p-1.1.json index bc70a0df84..f703bb4a18 100644 --- a/docs/liliq-p-1.1.json +++ b/docs/liliq-p-1.1.json @@ -1 +1,15 @@ -{"key": "liliq-p-1.1", "language": "fr", "short_name": "LiLiQ-P-1.1", "name": "Licence Libre du Qu\u00e9bec \u2013 Permissive version 1.1", "category": "Copyleft Limited", "owner": "Quebec", "homepage_url": "https://opensource.org/licenses/LiLiQ-P-1.1", "spdx_license_key": "LiLiQ-P-1.1", "osi_url": "https://opensource.org/licenses/LiLiQ-P-1.1", "other_urls": ["http://opensource.org/licenses/LiLiQ-P-1.1", "https://forge.gouv.qc.ca/licence/fr/liliq-v1-1/"]} \ No newline at end of file +{ + "key": "liliq-p-1.1", + "language": "fr", + "short_name": "LiLiQ-P-1.1", + "name": "Licence Libre du Qu\u00e9bec \u2013 Permissive version 1.1", + "category": "Copyleft Limited", + "owner": "Quebec", + "homepage_url": "https://opensource.org/licenses/LiLiQ-P-1.1", + "spdx_license_key": "LiLiQ-P-1.1", + "osi_url": "https://opensource.org/licenses/LiLiQ-P-1.1", + "other_urls": [ + "http://opensource.org/licenses/LiLiQ-P-1.1", + "https://forge.gouv.qc.ca/licence/fr/liliq-v1-1/" + ] +} \ No newline at end of file diff --git a/docs/liliq-r-1.1.LICENSE b/docs/liliq-r-1.1.LICENSE index 38e51ba81b..6b85296590 100644 --- a/docs/liliq-r-1.1.LICENSE +++ b/docs/liliq-r-1.1.LICENSE @@ -1,3 +1,18 @@ +--- +key: liliq-r-1.1 +language: fr +short_name: LiLiQ-R-1.1 +name: Licence Libre du Québec – Réciprocité version 1. +category: Copyleft Limited +owner: Quebec +homepage_url: https://opensource.org/licenses/LiLiQ-R-1.1 +spdx_license_key: LiLiQ-R-1.1 +osi_url: https://opensource.org/licenses/LiLiQ-R-1.1 +other_urls: + - http://opensource.org/licenses/LiLiQ-R-1.1 + - https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-liliq-r-v1-1/ +--- + Licence Libre du Québec – Réciprocité (LiLiQ-R) Version 1.1 diff --git a/docs/liliq-r-1.1.html b/docs/liliq-r-1.1.html index 2bb9fc2f1a..cf0a62a0ab 100644 --- a/docs/liliq-r-1.1.html +++ b/docs/liliq-r-1.1.html @@ -242,7 +242,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/liliq-r-1.1.json b/docs/liliq-r-1.1.json index a67d250bf2..bd8cb2cb13 100644 --- a/docs/liliq-r-1.1.json +++ b/docs/liliq-r-1.1.json @@ -1 +1,15 @@ -{"key": "liliq-r-1.1", "language": "fr", "short_name": "LiLiQ-R-1.1", "name": "Licence Libre du Qu\u00e9bec \u2013 R\u00e9ciprocit\u00e9 version 1.", "category": "Copyleft Limited", "owner": "Quebec", "homepage_url": "https://opensource.org/licenses/LiLiQ-R-1.1", "spdx_license_key": "LiLiQ-R-1.1", "osi_url": "https://opensource.org/licenses/LiLiQ-R-1.1", "other_urls": ["http://opensource.org/licenses/LiLiQ-R-1.1", "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-liliq-r-v1-1/"]} \ No newline at end of file +{ + "key": "liliq-r-1.1", + "language": "fr", + "short_name": "LiLiQ-R-1.1", + "name": "Licence Libre du Qu\u00e9bec \u2013 R\u00e9ciprocit\u00e9 version 1.", + "category": "Copyleft Limited", + "owner": "Quebec", + "homepage_url": "https://opensource.org/licenses/LiLiQ-R-1.1", + "spdx_license_key": "LiLiQ-R-1.1", + "osi_url": "https://opensource.org/licenses/LiLiQ-R-1.1", + "other_urls": [ + "http://opensource.org/licenses/LiLiQ-R-1.1", + "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-liliq-r-v1-1/" + ] +} \ No newline at end of file diff --git a/docs/liliq-rplus-1.1.LICENSE b/docs/liliq-rplus-1.1.LICENSE index f7b1524952..6ab89a30e7 100644 --- a/docs/liliq-rplus-1.1.LICENSE +++ b/docs/liliq-rplus-1.1.LICENSE @@ -1,3 +1,17 @@ +--- +key: liliq-rplus-1.1 +language: fr +short_name: LiLiQ-Rplus-1.1 +name: Licence Libre du Québec – Réciprocité forte version 1.1 +category: Copyleft +owner: Quebec +homepage_url: http://opensource.org/licenses/LiLiQ-Rplus-1.1 +spdx_license_key: LiLiQ-Rplus-1.1 +osi_url: https://opensource.org/licenses/LiLiQ-Rplus-1.1 +other_urls: + - https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-forte-liliq-r-v1-1/ +--- + Licence Libre du Québec – Réciprocité forte (LiLiQ-R+) Version 1.1 diff --git a/docs/liliq-rplus-1.1.html b/docs/liliq-rplus-1.1.html index 8fe4e52012..d381e44908 100644 --- a/docs/liliq-rplus-1.1.html +++ b/docs/liliq-rplus-1.1.html @@ -236,7 +236,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/liliq-rplus-1.1.json b/docs/liliq-rplus-1.1.json index 676213bb15..7b910dda2f 100644 --- a/docs/liliq-rplus-1.1.json +++ b/docs/liliq-rplus-1.1.json @@ -1 +1,14 @@ -{"key": "liliq-rplus-1.1", "language": "fr", "short_name": "LiLiQ-Rplus-1.1", "name": "Licence Libre du Qu\u00e9bec \u2013 R\u00e9ciprocit\u00e9 forte version 1.1", "category": "Copyleft", "owner": "Quebec", "homepage_url": "http://opensource.org/licenses/LiLiQ-Rplus-1.1", "spdx_license_key": "LiLiQ-Rplus-1.1", "osi_url": "https://opensource.org/licenses/LiLiQ-Rplus-1.1", "other_urls": ["https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-forte-liliq-r-v1-1/"]} \ No newline at end of file +{ + "key": "liliq-rplus-1.1", + "language": "fr", + "short_name": "LiLiQ-Rplus-1.1", + "name": "Licence Libre du Qu\u00e9bec \u2013 R\u00e9ciprocit\u00e9 forte version 1.1", + "category": "Copyleft", + "owner": "Quebec", + "homepage_url": "http://opensource.org/licenses/LiLiQ-Rplus-1.1", + "spdx_license_key": "LiLiQ-Rplus-1.1", + "osi_url": "https://opensource.org/licenses/LiLiQ-Rplus-1.1", + "other_urls": [ + "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-forte-liliq-r-v1-1/" + ] +} \ No newline at end of file diff --git a/docs/lilo.LICENSE b/docs/lilo.LICENSE index bbd781cc9d..50061c440c 100644 --- a/docs/lilo.LICENSE +++ b/docs/lilo.LICENSE @@ -1,5 +1,18 @@ +--- +key: lilo +short_name: LILO License +name: LILO License +category: Permissive +owner: Unspecified +homepage_url: http://www.ingate.com/files/422/fwmanual-en/xx12671.html +spdx_license_key: LicenseRef-scancode-lilo +text_urls: + - http://www.ingate.com/files/422/fwmanual-en/xx12671.html + - https://launchpad.net/ubuntu/oneiric/+source/rxtx/+copyright +--- + Redistribution and use in source and binary forms of parts of or the whole original or derived work are permitted provided that the original work is properly attributed to the author. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. This work is -provided "as is" and without any express or implied warranties. +provided "as is" and without any express or implied warranties. \ No newline at end of file diff --git a/docs/lilo.html b/docs/lilo.html index 2591f1507c..b3a6863704 100644 --- a/docs/lilo.html +++ b/docs/lilo.html @@ -128,8 +128,7 @@ or derived work are permitted provided that the original work is properly attributed to the author. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. This work is -provided "as is" and without any express or implied warranties. - +provided "as is" and without any express or implied warranties.
@@ -141,7 +140,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lilo.json b/docs/lilo.json index 5ed63cbb21..81a8ea3739 100644 --- a/docs/lilo.json +++ b/docs/lilo.json @@ -1 +1,13 @@ -{"key": "lilo", "short_name": "LILO License", "name": "LILO License", "category": "Permissive", "owner": "Unspecified", "homepage_url": "http://www.ingate.com/files/422/fwmanual-en/xx12671.html", "spdx_license_key": "LicenseRef-scancode-lilo", "text_urls": ["http://www.ingate.com/files/422/fwmanual-en/xx12671.html", "https://launchpad.net/ubuntu/oneiric/+source/rxtx/+copyright"]} \ No newline at end of file +{ + "key": "lilo", + "short_name": "LILO License", + "name": "LILO License", + "category": "Permissive", + "owner": "Unspecified", + "homepage_url": "http://www.ingate.com/files/422/fwmanual-en/xx12671.html", + "spdx_license_key": "LicenseRef-scancode-lilo", + "text_urls": [ + "http://www.ingate.com/files/422/fwmanual-en/xx12671.html", + "https://launchpad.net/ubuntu/oneiric/+source/rxtx/+copyright" + ] +} \ No newline at end of file diff --git a/docs/linking-exception-2.0-plus.LICENSE b/docs/linking-exception-2.0-plus.LICENSE index da8d45d55f..d89ecc575c 100644 --- a/docs/linking-exception-2.0-plus.LICENSE +++ b/docs/linking-exception-2.0-plus.LICENSE @@ -1,3 +1,33 @@ +--- +key: linking-exception-2.0-plus +short_name: Linking exception to GPL 2.0 or later +name: Linking exception to GPL 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: LicenseRef-scancode-linking-exception-2.0-plus +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This library 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 2, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception, if you link this library with other files, + some of which are compiled with GCC, to produce an executable, + this library does not by itself cause the resulting executable to + be covered by the GNU General Public License. This exception does + not however invalidate any other reasons why the executable file + might be covered by the GNU General Public License. +--- + As a special exception, if you link this library with other files, some of which are compiled with GCC, to produce an executable, this library does not by itself cause the resulting executable to diff --git a/docs/linking-exception-2.0-plus.html b/docs/linking-exception-2.0-plus.html index 3af550436d..9ea09e822e 100644 --- a/docs/linking-exception-2.0-plus.html +++ b/docs/linking-exception-2.0-plus.html @@ -165,7 +165,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/linking-exception-2.0-plus.json b/docs/linking-exception-2.0-plus.json index 60540b9bb4..3dbca27e97 100644 --- a/docs/linking-exception-2.0-plus.json +++ b/docs/linking-exception-2.0-plus.json @@ -1 +1,13 @@ -{"key": "linking-exception-2.0-plus", "short_name": "Linking exception to GPL 2.0 or later", "name": "Linking exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-linking-exception-2.0-plus", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nAs a special exception, if you link this library with other files,\nsome of which are compiled with GCC, to produce an executable,\nthis library does not by itself cause the resulting executable to\nbe covered by the GNU General Public License. This exception does\nnot however invalidate any other reasons why the executable file\nmight be covered by the GNU General Public License.\n"} \ No newline at end of file +{ + "key": "linking-exception-2.0-plus", + "short_name": "Linking exception to GPL 2.0 or later", + "name": "Linking exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-linking-exception-2.0-plus", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nAs a special exception, if you link this library with other files,\nsome of which are compiled with GCC, to produce an executable,\nthis library does not by itself cause the resulting executable to\nbe covered by the GNU General Public License. This exception does\nnot however invalidate any other reasons why the executable file\nmight be covered by the GNU General Public License.\n" +} \ No newline at end of file diff --git a/docs/linking-exception-2.1-plus.LICENSE b/docs/linking-exception-2.1-plus.LICENSE index 3a5ce68b52..c56f749e45 100644 --- a/docs/linking-exception-2.1-plus.LICENSE +++ b/docs/linking-exception-2.1-plus.LICENSE @@ -1,3 +1,35 @@ +--- +key: linking-exception-2.1-plus +short_name: Linking exception to LGPL 2.1 or later +name: Linking exception to LGPL 2.1 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: LicenseRef-scancode-linking-exception-2.1-plus +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +standard_notice: | + The GNU C 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. + The GNU C 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 the GNU C Library; if not, see + . + As a special exception, if you link the code in this file with + files compiled with a GNU compiler to produce an executable, + that does not cause the resulting executable to be covered by + the GNU Lesser General Public License. This exception does not + however invalidate any other reasons why the executable file + might be covered by the GNU Lesser General Public License. + This exception applies to code released by its copyright holders + in files containing the exception. +--- + As a special exception, if you link the code in this file with files compiled with a GNU compiler to produce an executable, that does not cause the resulting executable to be covered by diff --git a/docs/linking-exception-2.1-plus.html b/docs/linking-exception-2.1-plus.html index 05614552e5..2435887791 100644 --- a/docs/linking-exception-2.1-plus.html +++ b/docs/linking-exception-2.1-plus.html @@ -169,7 +169,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/linking-exception-2.1-plus.json b/docs/linking-exception-2.1-plus.json index 3cef560f51..418cac4a64 100644 --- a/docs/linking-exception-2.1-plus.json +++ b/docs/linking-exception-2.1-plus.json @@ -1 +1,13 @@ -{"key": "linking-exception-2.1-plus", "short_name": "Linking exception to LGPL 2.1 or later", "name": "Linking exception to LGPL 2.1 or later", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-linking-exception-2.1-plus", "other_urls": ["http://www.gnu.org/licenses/lgpl-2.1.txt"], "standard_notice": "The GNU C Library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\nThe GNU C Library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nLesser General Public License for more details.\nYou should have received a copy of the GNU Lesser General Public\nLicense along with the GNU C Library; if not, see\n.\nAs a special exception, if you link the code in this file with\nfiles compiled with a GNU compiler to produce an executable,\nthat does not cause the resulting executable to be covered by\nthe GNU Lesser General Public License. This exception does not\nhowever invalidate any other reasons why the executable file\nmight be covered by the GNU Lesser General Public License.\nThis exception applies to code released by its copyright holders\nin files containing the exception.\n"} \ No newline at end of file +{ + "key": "linking-exception-2.1-plus", + "short_name": "Linking exception to LGPL 2.1 or later", + "name": "Linking exception to LGPL 2.1 or later", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-linking-exception-2.1-plus", + "other_urls": [ + "http://www.gnu.org/licenses/lgpl-2.1.txt" + ], + "standard_notice": "The GNU C Library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\nThe GNU C Library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nLesser General Public License for more details.\nYou should have received a copy of the GNU Lesser General Public\nLicense along with the GNU C Library; if not, see\n.\nAs a special exception, if you link the code in this file with\nfiles compiled with a GNU compiler to produce an executable,\nthat does not cause the resulting executable to be covered by\nthe GNU Lesser General Public License. This exception does not\nhowever invalidate any other reasons why the executable file\nmight be covered by the GNU Lesser General Public License.\nThis exception applies to code released by its copyright holders\nin files containing the exception.\n" +} \ No newline at end of file diff --git a/docs/linking-exception-agpl-3.0.LICENSE b/docs/linking-exception-agpl-3.0.LICENSE index 5c1e5a311b..1ba52c4a07 100644 --- a/docs/linking-exception-agpl-3.0.LICENSE +++ b/docs/linking-exception-agpl-3.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: linking-exception-agpl-3.0 +short_name: Linking exception to AGPL 3.0 +name: Linking exception to AGPL 3.0 +category: Copyleft Limited +owner: Unspecified +homepage_url: http://mo.morsi.org/blog/2009/08/13/lesser_affero_gplv3/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-linking-exception-agpl-3.0 +--- + Additional permission under the GNU Affero GPL version 3 section 7: If you modify this Program, or any covered work, by linking or diff --git a/docs/linking-exception-agpl-3.0.html b/docs/linking-exception-agpl-3.0.html index 922b0d8f44..31b39f3b95 100644 --- a/docs/linking-exception-agpl-3.0.html +++ b/docs/linking-exception-agpl-3.0.html @@ -139,7 +139,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/linking-exception-agpl-3.0.json b/docs/linking-exception-agpl-3.0.json index 39ddcc0b22..bb1f68e9e3 100644 --- a/docs/linking-exception-agpl-3.0.json +++ b/docs/linking-exception-agpl-3.0.json @@ -1 +1,10 @@ -{"key": "linking-exception-agpl-3.0", "short_name": "Linking exception to AGPL 3.0", "name": "Linking exception to AGPL 3.0", "category": "Copyleft Limited", "owner": "Unspecified", "homepage_url": "http://mo.morsi.org/blog/2009/08/13/lesser_affero_gplv3/", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-linking-exception-agpl-3.0"} \ No newline at end of file +{ + "key": "linking-exception-agpl-3.0", + "short_name": "Linking exception to AGPL 3.0", + "name": "Linking exception to AGPL 3.0", + "category": "Copyleft Limited", + "owner": "Unspecified", + "homepage_url": "http://mo.morsi.org/blog/2009/08/13/lesser_affero_gplv3/", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-linking-exception-agpl-3.0" +} \ No newline at end of file diff --git a/docs/linking-exception-lgpl-2.0-plus.LICENSE b/docs/linking-exception-lgpl-2.0-plus.LICENSE index d545152477..ffcbddf3f9 100644 --- a/docs/linking-exception-lgpl-2.0-plus.LICENSE +++ b/docs/linking-exception-lgpl-2.0-plus.LICENSE @@ -1,3 +1,33 @@ +--- +key: linking-exception-lgpl-2.0-plus +short_name: Linking exception to LGPL 2.0 or later +name: Linking exception to LGPL 2.0 or later +category: Copyleft Limited +owner: FreeBASIC Project +is_exception: yes +spdx_license_key: LicenseRef-scancode-linking-exception-lgpl-2.0plus +other_spdx_license_keys: + - LicenseRef-scancode-linking-exception-lgpl-2.0-plus +other_urls: + - https://master.dl.sourceforge.net/project/fbc/Source%20Code/FreeBASIC-1.05.0-source.tar.gz +standard_notice: | + The FreeBASIC runtime library (libfb and the thread-safe version, libfbmt) + and the FreeBASIC graphics library (libfbgfx and the thread-safe version, + libfbgfxmt) are licensed under the GNU LGPLv2 or later, with this exception + to allow linking to it statically: + As a special exception, the copyright holders of this library give + you permission to link this library with independent modules to + produce an executable, regardless of the license terms of these + independent modules, and to copy and distribute the resulting + executable under terms of your choice, provided that you also meet, + for each linked independent module, the terms and conditions of the + license of that module. An independent module is a module which is + not derived from or based on this library. If you modify this library, + you may extend this exception to your version of the library, but + you are not obligated to do so. If you do not wish to do so, delete + this exception statement from your version. +--- + As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these diff --git a/docs/linking-exception-lgpl-2.0-plus.html b/docs/linking-exception-lgpl-2.0-plus.html index a20aab541d..0d6cda02ca 100644 --- a/docs/linking-exception-lgpl-2.0-plus.html +++ b/docs/linking-exception-lgpl-2.0-plus.html @@ -177,7 +177,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/linking-exception-lgpl-2.0-plus.json b/docs/linking-exception-lgpl-2.0-plus.json index 912d6aaf66..88dba3fc9c 100644 --- a/docs/linking-exception-lgpl-2.0-plus.json +++ b/docs/linking-exception-lgpl-2.0-plus.json @@ -1 +1,16 @@ -{"key": "linking-exception-lgpl-2.0-plus", "short_name": "Linking exception to LGPL 2.0 or later", "name": "Linking exception to LGPL 2.0 or later", "category": "Copyleft Limited", "owner": "FreeBASIC Project", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-linking-exception-lgpl-2.0plus", "other_spdx_license_keys": ["LicenseRef-scancode-linking-exception-lgpl-2.0-plus"], "other_urls": ["https://master.dl.sourceforge.net/project/fbc/Source%20Code/FreeBASIC-1.05.0-source.tar.gz"], "standard_notice": "The FreeBASIC runtime library (libfb and the thread-safe version, libfbmt)\nand the FreeBASIC graphics library (libfbgfx and the thread-safe version,\nlibfbgfxmt) are licensed under the GNU LGPLv2 or later, with this exception\nto allow linking to it statically:\nAs a special exception, the copyright holders of this library give\nyou permission to link this library with independent modules to\nproduce an executable, regardless of the license terms of these\nindependent modules, and to copy and distribute the resulting\nexecutable under terms of your choice, provided that you also meet,\nfor each linked independent module, the terms and conditions of the\nlicense of that module. An independent module is a module which is\nnot derived from or based on this library. If you modify this library,\nyou may extend this exception to your version of the library, but\nyou are not obligated to do so. If you do not wish to do so, delete\nthis exception statement from your version.\n"} \ No newline at end of file +{ + "key": "linking-exception-lgpl-2.0-plus", + "short_name": "Linking exception to LGPL 2.0 or later", + "name": "Linking exception to LGPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "FreeBASIC Project", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-linking-exception-lgpl-2.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-linking-exception-lgpl-2.0-plus" + ], + "other_urls": [ + "https://master.dl.sourceforge.net/project/fbc/Source%20Code/FreeBASIC-1.05.0-source.tar.gz" + ], + "standard_notice": "The FreeBASIC runtime library (libfb and the thread-safe version, libfbmt)\nand the FreeBASIC graphics library (libfbgfx and the thread-safe version,\nlibfbgfxmt) are licensed under the GNU LGPLv2 or later, with this exception\nto allow linking to it statically:\nAs a special exception, the copyright holders of this library give\nyou permission to link this library with independent modules to\nproduce an executable, regardless of the license terms of these\nindependent modules, and to copy and distribute the resulting\nexecutable under terms of your choice, provided that you also meet,\nfor each linked independent module, the terms and conditions of the\nlicense of that module. An independent module is a module which is\nnot derived from or based on this library. If you modify this library,\nyou may extend this exception to your version of the library, but\nyou are not obligated to do so. If you do not wish to do so, delete\nthis exception statement from your version.\n" +} \ No newline at end of file diff --git a/docs/linking-exception-lgpl-3.0.LICENSE b/docs/linking-exception-lgpl-3.0.LICENSE index 08687a75c5..7fdd23074f 100644 --- a/docs/linking-exception-lgpl-3.0.LICENSE +++ b/docs/linking-exception-lgpl-3.0.LICENSE @@ -1,3 +1,45 @@ +--- +key: linking-exception-lgpl-3.0 +is_deprecated: yes +short_name: Linking exception to LGPL 3.0 +name: Linking exception to LGPL 3.0 +category: Copyleft Limited +owner: Canonical Inc. +homepage_url: https://github.com/go-yaml/yaml/blob/v2/LICENSE +notes: This is deprecated and replaced by lgpl-3.0-linking-exception +is_exception: yes +other_urls: + - http://www.gnu.org/licenses/lgpl-3.0.txt +standard_notice: | + 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 3 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 + As a special exception to the GNU Lesser General Public License version 3 + ("LGPL3"), the copyright holders of this Library give you permission to + convey to a third party a Combined Work that links statically or + dynamically to this Library without providing any Minimal Corresponding + Source or + Minimal Application Code as set out in 4d or providing the installation + information set out in section 4e, provided that you comply with the other + provisions of LGPL3 and provided that you meet, for the Application the + terms and conditions of the license(s) which apply to the Application. + Except as stated in this special exception, the provisions of LGPL3 will + continue to comply in full to this Library. If you modify this Library, you + may apply this exception to your version of this Library, but you are not + obliged to do so. If you do not wish to do so, delete this exception + statement from your version. This exception does not (and cannot) modify + any license terms which apply to the Application, with which you must still + comply. +--- + As a special exception to the GNU Lesser General Public License version 3 ("LGPL3"), the copyright holders of this Library give you permission to convey to a third party a Combined Work that links statically or dynamically to this diff --git a/docs/linking-exception-lgpl-3.0.html b/docs/linking-exception-lgpl-3.0.html index 1be573c503..9bf709ab97 100644 --- a/docs/linking-exception-lgpl-3.0.html +++ b/docs/linking-exception-lgpl-3.0.html @@ -198,7 +198,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/linking-exception-lgpl-3.0.json b/docs/linking-exception-lgpl-3.0.json index 2059c84741..39fb11a0a2 100644 --- a/docs/linking-exception-lgpl-3.0.json +++ b/docs/linking-exception-lgpl-3.0.json @@ -1 +1,15 @@ -{"key": "linking-exception-lgpl-3.0", "is_deprecated": true, "short_name": "Linking exception to LGPL 3.0", "name": "Linking exception to LGPL 3.0", "category": "Copyleft Limited", "owner": "Canonical Inc.", "homepage_url": "https://github.com/go-yaml/yaml/blob/v2/LICENSE", "notes": "This is deprecated and replaced by lgpl-3.0-linking-exception", "is_exception": true, "other_urls": ["http://www.gnu.org/licenses/lgpl-3.0.txt"], "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or (at your\noption) any later version.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License\nfor more details.\nYou should have received a copy of the GNU Lesser General Public License\nalong with this library; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\nAs a special exception to the GNU Lesser General Public License version 3\n(\"LGPL3\"), the copyright holders of this Library give you permission to\nconvey to a third party a Combined Work that links statically or\ndynamically to this Library without providing any Minimal Corresponding\nSource or\nMinimal Application Code as set out in 4d or providing the installation\ninformation set out in section 4e, provided that you comply with the other\nprovisions of LGPL3 and provided that you meet, for the Application the\nterms and conditions of the license(s) which apply to the Application.\nExcept as stated in this special exception, the provisions of LGPL3 will\ncontinue to comply in full to this Library. If you modify this Library, you\nmay apply this exception to your version of this Library, but you are not\nobliged to do so. If you do not wish to do so, delete this exception\nstatement from your version. This exception does not (and cannot) modify\nany license terms which apply to the Application, with which you must still\ncomply.\n"} \ No newline at end of file +{ + "key": "linking-exception-lgpl-3.0", + "is_deprecated": true, + "short_name": "Linking exception to LGPL 3.0", + "name": "Linking exception to LGPL 3.0", + "category": "Copyleft Limited", + "owner": "Canonical Inc.", + "homepage_url": "https://github.com/go-yaml/yaml/blob/v2/LICENSE", + "notes": "This is deprecated and replaced by lgpl-3.0-linking-exception", + "is_exception": true, + "other_urls": [ + "http://www.gnu.org/licenses/lgpl-3.0.txt" + ], + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or (at your\noption) any later version.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License\nfor more details.\nYou should have received a copy of the GNU Lesser General Public License\nalong with this library; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\nAs a special exception to the GNU Lesser General Public License version 3\n(\"LGPL3\"), the copyright holders of this Library give you permission to\nconvey to a third party a Combined Work that links statically or\ndynamically to this Library without providing any Minimal Corresponding\nSource or\nMinimal Application Code as set out in 4d or providing the installation\ninformation set out in section 4e, provided that you comply with the other\nprovisions of LGPL3 and provided that you meet, for the Application the\nterms and conditions of the license(s) which apply to the Application.\nExcept as stated in this special exception, the provisions of LGPL3 will\ncontinue to comply in full to this Library. If you modify this Library, you\nmay apply this exception to your version of this Library, but you are not\nobliged to do so. If you do not wish to do so, delete this exception\nstatement from your version. This exception does not (and cannot) modify\nany license terms which apply to the Application, with which you must still\ncomply.\n" +} \ No newline at end of file diff --git a/docs/linotype-eula.LICENSE b/docs/linotype-eula.LICENSE index 6e0985c9b0..9c5bb5b5cb 100644 --- a/docs/linotype-eula.LICENSE +++ b/docs/linotype-eula.LICENSE @@ -1,3 +1,13 @@ +--- +key: linotype-eula +short_name: Linotype EULA +name: Linotype EULA +category: Commercial +owner: Linotype +homepage_url: http://www.linotype.com/2061-28225/licenseagreementforfontsoftware.html +spdx_license_key: LicenseRef-scancode-linotype-eula +--- + License Agreement for Font Software - Linotype EULA Preamble: diff --git a/docs/linotype-eula.html b/docs/linotype-eula.html index 768632f150..6b095f771c 100644 --- a/docs/linotype-eula.html +++ b/docs/linotype-eula.html @@ -216,7 +216,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/linotype-eula.json b/docs/linotype-eula.json index b8dd407315..eedf89969d 100644 --- a/docs/linotype-eula.json +++ b/docs/linotype-eula.json @@ -1 +1,9 @@ -{"key": "linotype-eula", "short_name": "Linotype EULA", "name": "Linotype EULA", "category": "Commercial", "owner": "Linotype", "homepage_url": "http://www.linotype.com/2061-28225/licenseagreementforfontsoftware.html", "spdx_license_key": "LicenseRef-scancode-linotype-eula"} \ No newline at end of file +{ + "key": "linotype-eula", + "short_name": "Linotype EULA", + "name": "Linotype EULA", + "category": "Commercial", + "owner": "Linotype", + "homepage_url": "http://www.linotype.com/2061-28225/licenseagreementforfontsoftware.html", + "spdx_license_key": "LicenseRef-scancode-linotype-eula" +} \ No newline at end of file diff --git a/docs/linum.LICENSE b/docs/linum.LICENSE index 12183c768c..2eb206b9c8 100644 --- a/docs/linum.LICENSE +++ b/docs/linum.LICENSE @@ -1,3 +1,13 @@ +--- +key: linum +is_deprecated: yes +short_name: Linum Software License +name: Linum Software License +category: Permissive +owner: Linum Software GmbH +notes: replaced by identical philippe-de-muyter license +--- + * 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. \ No newline at end of file diff --git a/docs/linum.html b/docs/linum.html index 98b920066e..2672b2a4de 100644 --- a/docs/linum.html +++ b/docs/linum.html @@ -129,7 +129,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/linum.json b/docs/linum.json index 6fc157d1fb..cdc990d57c 100644 --- a/docs/linum.json +++ b/docs/linum.json @@ -1 +1,9 @@ -{"key": "linum", "is_deprecated": true, "short_name": "Linum Software License", "name": "Linum Software License", "category": "Permissive", "owner": "Linum Software GmbH", "notes": "replaced by identical philippe-de-muyter license"} \ No newline at end of file +{ + "key": "linum", + "is_deprecated": true, + "short_name": "Linum Software License", + "name": "Linum Software License", + "category": "Permissive", + "owner": "Linum Software GmbH", + "notes": "replaced by identical philippe-de-muyter license" +} \ No newline at end of file diff --git a/docs/linux-device-drivers.LICENSE b/docs/linux-device-drivers.LICENSE index e6a9ee59dd..89a67101a7 100644 --- a/docs/linux-device-drivers.LICENSE +++ b/docs/linux-device-drivers.LICENSE @@ -1,3 +1,12 @@ +--- +key: linux-device-drivers +short_name: Linux Device Drivers +name: Linux Device Drivers License +category: Permissive +owner: O'Reilly Media, Inc. +spdx_license_key: LicenseRef-scancode-linux-device-drivers +--- + The source code in this file can be freely used, adapted, and redistributed in source or binary form, so long as an acknowledgment appears in derived source files. The citation diff --git a/docs/linux-device-drivers.html b/docs/linux-device-drivers.html index 3290e80ab5..8ef4284761 100644 --- a/docs/linux-device-drivers.html +++ b/docs/linux-device-drivers.html @@ -126,7 +126,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/linux-device-drivers.json b/docs/linux-device-drivers.json index fdeb94c587..d6405246c8 100644 --- a/docs/linux-device-drivers.json +++ b/docs/linux-device-drivers.json @@ -1 +1,8 @@ -{"key": "linux-device-drivers", "short_name": "Linux Device Drivers", "name": "Linux Device Drivers License", "category": "Permissive", "owner": "O'Reilly Media, Inc.", "spdx_license_key": "LicenseRef-scancode-linux-device-drivers"} \ No newline at end of file +{ + "key": "linux-device-drivers", + "short_name": "Linux Device Drivers", + "name": "Linux Device Drivers License", + "category": "Permissive", + "owner": "O'Reilly Media, Inc.", + "spdx_license_key": "LicenseRef-scancode-linux-device-drivers" +} \ No newline at end of file diff --git a/docs/linux-openib.LICENSE b/docs/linux-openib.LICENSE index 069ce89ecf..184cbbd3a6 100644 --- a/docs/linux-openib.LICENSE +++ b/docs/linux-openib.LICENSE @@ -1,3 +1,21 @@ +--- +key: linux-openib +short_name: Linux-OpenIB +name: Linux-OpenIB +category: Permissive +owner: Linux Foundation +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h +notes: | + This license is a hybrid of two common licenses the BSD-2-Clause (bsd- + simplified) and the MIT License (mit). +spdx_license_key: Linux-OpenIB +text_urls: + - https://github.com/ofiwg/libfabric/blob/master/contrib/buildrpm/README +other_urls: + - https://github.com/spdx/license-list-XML/issues/620 + - https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h?id=3215b9d57a2c75c4305a3956ca303d7004485200 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -13,4 +31,4 @@ 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. +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/docs/linux-openib.html b/docs/linux-openib.html index c8df524140..ea301d5755 100644 --- a/docs/linux-openib.html +++ b/docs/linux-openib.html @@ -157,8 +157,7 @@ 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. - +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -170,7 +169,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/linux-openib.json b/docs/linux-openib.json index 5f1a91fbe8..f8f5490025 100644 --- a/docs/linux-openib.json +++ b/docs/linux-openib.json @@ -1 +1,17 @@ -{"key": "linux-openib", "short_name": "Linux-OpenIB", "name": "Linux-OpenIB", "category": "Permissive", "owner": "Linux Foundation", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h", "notes": "This license is a hybrid of two common licenses the BSD-2-Clause (bsd-\nsimplified) and the MIT License (mit).\n", "spdx_license_key": "Linux-OpenIB", "text_urls": ["https://github.com/ofiwg/libfabric/blob/master/contrib/buildrpm/README"], "other_urls": ["https://github.com/spdx/license-list-XML/issues/620", "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h?id=3215b9d57a2c75c4305a3956ca303d7004485200"]} \ No newline at end of file +{ + "key": "linux-openib", + "short_name": "Linux-OpenIB", + "name": "Linux-OpenIB", + "category": "Permissive", + "owner": "Linux Foundation", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h", + "notes": "This license is a hybrid of two common licenses the BSD-2-Clause (bsd-\nsimplified) and the MIT License (mit).\n", + "spdx_license_key": "Linux-OpenIB", + "text_urls": [ + "https://github.com/ofiwg/libfabric/blob/master/contrib/buildrpm/README" + ], + "other_urls": [ + "https://github.com/spdx/license-list-XML/issues/620", + "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h?id=3215b9d57a2c75c4305a3956ca303d7004485200" + ] +} \ No newline at end of file diff --git a/docs/linux-syscall-exception-gpl.LICENSE b/docs/linux-syscall-exception-gpl.LICENSE index 8870f677f2..ac43ad5e4f 100644 --- a/docs/linux-syscall-exception-gpl.LICENSE +++ b/docs/linux-syscall-exception-gpl.LICENSE @@ -1,3 +1,43 @@ +--- +key: linux-syscall-exception-gpl +short_name: Linux Syscall Exception to GPL +name: Linux Syscall Exception to GPL +category: Copyleft Limited +owner: Linux Foundation +is_exception: yes +spdx_license_key: Linux-syscall-note +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/COPYING +standard_notice: | + NOTE! This copyright does *not* cover user programs that use kernel + services by normal system calls - this is merely considered normal use + of the kernel, and does *not* fall under the heading of "derived work". + Also note that the GPL below is copyrighted by the Free Software + Foundation, but the instance of code that it refers to (the Linux + kernel) is copyrighted by me and others who actually wrote it. + Also note that the only valid version of the GPL as far as the kernel + is concerned is _this_ particular version of the license (ie v2, not + v2.2 or v3.x or whatever), unless explicitly otherwise stated. + Linus Torvalds + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License version 2 as published by + the Free Software Foundation. + This library is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +ignorable_copyrights: + - copyrighted by me and others + - copyrighted by the Free Software Foundation +ignorable_holders: + - me and others + - the Free Software Foundation +--- + NOTE! This copyright does *not* cover user programs that use kernel services by normal system calls - this is merely considered normal use of the kernel, and does *not* fall under the heading of "derived work". diff --git a/docs/linux-syscall-exception-gpl.html b/docs/linux-syscall-exception-gpl.html index 297528fe95..1ad727a4cd 100644 --- a/docs/linux-syscall-exception-gpl.html +++ b/docs/linux-syscall-exception-gpl.html @@ -192,7 +192,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/linux-syscall-exception-gpl.json b/docs/linux-syscall-exception-gpl.json index ae69dab315..f867ce72a7 100644 --- a/docs/linux-syscall-exception-gpl.json +++ b/docs/linux-syscall-exception-gpl.json @@ -1 +1,22 @@ -{"key": "linux-syscall-exception-gpl", "short_name": "Linux Syscall Exception to GPL", "name": "Linux Syscall Exception to GPL", "category": "Copyleft Limited", "owner": "Linux Foundation", "is_exception": true, "spdx_license_key": "Linux-syscall-note", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt", "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/COPYING"], "standard_notice": "NOTE! This copyright does *not* cover user programs that use kernel\nservices by normal system calls - this is merely considered normal use\nof the kernel, and does *not* fall under the heading of \"derived work\".\nAlso note that the GPL below is copyrighted by the Free Software\nFoundation, but the instance of code that it refers to (the Linux\nkernel) is copyrighted by me and others who actually wrote it.\nAlso note that the only valid version of the GPL as far as the kernel\nis concerned is _this_ particular version of the license (ie v2, not\nv2.2 or v3.x or whatever), unless explicitly otherwise stated.\nLinus Torvalds\nThis library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License version 2 as published by\nthe Free Software Foundation.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n", "ignorable_copyrights": ["copyrighted by me and others", "copyrighted by the Free Software Foundation"], "ignorable_holders": ["me and others", "the Free Software Foundation"]} \ No newline at end of file +{ + "key": "linux-syscall-exception-gpl", + "short_name": "Linux Syscall Exception to GPL", + "name": "Linux Syscall Exception to GPL", + "category": "Copyleft Limited", + "owner": "Linux Foundation", + "is_exception": true, + "spdx_license_key": "Linux-syscall-note", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt", + "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/COPYING" + ], + "standard_notice": "NOTE! This copyright does *not* cover user programs that use kernel\nservices by normal system calls - this is merely considered normal use\nof the kernel, and does *not* fall under the heading of \"derived work\".\nAlso note that the GPL below is copyrighted by the Free Software\nFoundation, but the instance of code that it refers to (the Linux\nkernel) is copyrighted by me and others who actually wrote it.\nAlso note that the only valid version of the GPL as far as the kernel\nis concerned is _this_ particular version of the license (ie v2, not\nv2.2 or v3.x or whatever), unless explicitly otherwise stated.\nLinus Torvalds\nThis library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License version 2 as published by\nthe Free Software Foundation.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n", + "ignorable_copyrights": [ + "copyrighted by me and others", + "copyrighted by the Free Software Foundation" + ], + "ignorable_holders": [ + "me and others", + "the Free Software Foundation" + ] +} \ No newline at end of file diff --git a/docs/linuxbios.LICENSE b/docs/linuxbios.LICENSE index 96dfca4eeb..d605b29558 100644 --- a/docs/linuxbios.LICENSE +++ b/docs/linuxbios.LICENSE @@ -1,3 +1,13 @@ +--- +key: linuxbios +short_name: LinuxBIOS License +name: LinuxBIOS License +category: Permissive +owner: LANL +homepage_url: http://www.lanl.gov/index.php +spdx_license_key: LicenseRef-scancode-linuxbios +--- + This software and ancillary information (herein called SOFTWARE) called LinuxBIOS is made available under the terms described here. @@ -16,4 +26,4 @@ Neither the Government nor the University makes any warranty, express or implied, or assumes any liability or responsibility for the use of this SOFTWARE. If SOFTWARE is modified to produce derivative works, such modified SOFTWARE should be clearly marked, so as not to confuse -it with the version available from LANL. +it with the version available from LANL. \ No newline at end of file diff --git a/docs/linuxbios.html b/docs/linuxbios.html index da41b8d366..c5b36ff623 100644 --- a/docs/linuxbios.html +++ b/docs/linuxbios.html @@ -133,8 +133,7 @@ or implied, or assumes any liability or responsibility for the use of this SOFTWARE. If SOFTWARE is modified to produce derivative works, such modified SOFTWARE should be clearly marked, so as not to confuse -it with the version available from LANL. - +it with the version available from LANL.
@@ -146,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/linuxbios.json b/docs/linuxbios.json index 9cf3b1f479..fd1b3307d5 100644 --- a/docs/linuxbios.json +++ b/docs/linuxbios.json @@ -1 +1,9 @@ -{"key": "linuxbios", "short_name": "LinuxBIOS License", "name": "LinuxBIOS License", "category": "Permissive", "owner": "LANL", "homepage_url": "http://www.lanl.gov/index.php", "spdx_license_key": "LicenseRef-scancode-linuxbios"} \ No newline at end of file +{ + "key": "linuxbios", + "short_name": "LinuxBIOS License", + "name": "LinuxBIOS License", + "category": "Permissive", + "owner": "LANL", + "homepage_url": "http://www.lanl.gov/index.php", + "spdx_license_key": "LicenseRef-scancode-linuxbios" +} \ No newline at end of file diff --git a/docs/linuxhowtos.LICENSE b/docs/linuxhowtos.LICENSE index 7e5d8f28b6..2c8c005261 100644 --- a/docs/linuxhowtos.LICENSE +++ b/docs/linuxhowtos.LICENSE @@ -1,3 +1,14 @@ +--- +key: linuxhowtos +short_name: linuxhowtos License +name: linuxhowtos License +category: Permissive +owner: Linux Foundation +homepage_url: http://www.linuxhowtos.org/category17/ +spdx_license_key: LicenseRef-scancode-linuxhowtos +minimum_coverage: 80 +--- + All howtos and documents on this site are provided "AS IS," with no express or implied warranties. Use the information on this site at your own risk. diff --git a/docs/linuxhowtos.html b/docs/linuxhowtos.html index ec51cec726..c260bfdec4 100644 --- a/docs/linuxhowtos.html +++ b/docs/linuxhowtos.html @@ -139,7 +139,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/linuxhowtos.json b/docs/linuxhowtos.json index 0a07bd50f8..de40b640f3 100644 --- a/docs/linuxhowtos.json +++ b/docs/linuxhowtos.json @@ -1 +1,10 @@ -{"key": "linuxhowtos", "short_name": "linuxhowtos License", "name": "linuxhowtos License", "category": "Permissive", "owner": "Linux Foundation", "homepage_url": "http://www.linuxhowtos.org/category17/", "spdx_license_key": "LicenseRef-scancode-linuxhowtos", "minimum_coverage": 80} \ No newline at end of file +{ + "key": "linuxhowtos", + "short_name": "linuxhowtos License", + "name": "linuxhowtos License", + "category": "Permissive", + "owner": "Linux Foundation", + "homepage_url": "http://www.linuxhowtos.org/category17/", + "spdx_license_key": "LicenseRef-scancode-linuxhowtos", + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/llgpl.LICENSE b/docs/llgpl.LICENSE index 7508ea0b48..a1e135bb84 100644 --- a/docs/llgpl.LICENSE +++ b/docs/llgpl.LICENSE @@ -1,3 +1,17 @@ +--- +key: llgpl +short_name: LLGPL +name: Lisp Lesser General Public License (LLPGL) +category: Copyleft Limited +owner: Franz Inc +homepage_url: http://opensource.franz.com/preamble.html +spdx_license_key: LicenseRef-scancode-llgpl +faq_url: http://opensource.franz.com/ +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt + - https://github.com/franzinc +--- + The concept of the GNU Lesser General Public License version 2.1 ("LGPL") has been adopted to govern the use and distribution of above- mentioned application. However, the LGPL uses terminology that is more diff --git a/docs/llgpl.html b/docs/llgpl.html index 1fa6945210..5bb7cb40b2 100644 --- a/docs/llgpl.html +++ b/docs/llgpl.html @@ -197,7 +197,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/llgpl.json b/docs/llgpl.json index d0ed07b54c..4876bc246d 100644 --- a/docs/llgpl.json +++ b/docs/llgpl.json @@ -1 +1,14 @@ -{"key": "llgpl", "short_name": "LLGPL", "name": "Lisp Lesser General Public License (LLPGL)", "category": "Copyleft Limited", "owner": "Franz Inc", "homepage_url": "http://opensource.franz.com/preamble.html", "spdx_license_key": "LicenseRef-scancode-llgpl", "faq_url": "http://opensource.franz.com/", "other_urls": ["http://www.gnu.org/licenses/lgpl-2.1.txt", "https://github.com/franzinc"]} \ No newline at end of file +{ + "key": "llgpl", + "short_name": "LLGPL", + "name": "Lisp Lesser General Public License (LLPGL)", + "category": "Copyleft Limited", + "owner": "Franz Inc", + "homepage_url": "http://opensource.franz.com/preamble.html", + "spdx_license_key": "LicenseRef-scancode-llgpl", + "faq_url": "http://opensource.franz.com/", + "other_urls": [ + "http://www.gnu.org/licenses/lgpl-2.1.txt", + "https://github.com/franzinc" + ] +} \ No newline at end of file diff --git a/docs/llnl.LICENSE b/docs/llnl.LICENSE index 479eafef3b..18dc2b8ef2 100644 --- a/docs/llnl.LICENSE +++ b/docs/llnl.LICENSE @@ -1,3 +1,15 @@ +--- +key: llnl +short_name: LLNL +name: LLNL +category: Permissive +owner: Regents of the University of California +notes: | + this notice is quite similar to the DSDP license and appears in similar + forms in HDF5 and other common components +spdx_license_key: LicenseRef-scancode-llnl +--- + Permission to use, copy, modify, and distribute this software for any purpose without fee is hereby granted, provided that this en- tire notice is included in all copies of any software which is or diff --git a/docs/llnl.html b/docs/llnl.html index a28aa60eac..a2988f201d 100644 --- a/docs/llnl.html +++ b/docs/llnl.html @@ -157,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/llnl.json b/docs/llnl.json index 779bd61992..17efab046c 100644 --- a/docs/llnl.json +++ b/docs/llnl.json @@ -1 +1,9 @@ -{"key": "llnl", "short_name": "LLNL", "name": "LLNL", "category": "Permissive", "owner": "Regents of the University of California", "notes": "this notice is quite similar to the DSDP license and appears in similar\nforms in HDF5 and other common components\n", "spdx_license_key": "LicenseRef-scancode-llnl"} \ No newline at end of file +{ + "key": "llnl", + "short_name": "LLNL", + "name": "LLNL", + "category": "Permissive", + "owner": "Regents of the University of California", + "notes": "this notice is quite similar to the DSDP license and appears in similar\nforms in HDF5 and other common components\n", + "spdx_license_key": "LicenseRef-scancode-llnl" +} \ No newline at end of file diff --git a/docs/llvm-exception.LICENSE b/docs/llvm-exception.LICENSE index 8995d8c63e..6ce750369a 100644 --- a/docs/llvm-exception.LICENSE +++ b/docs/llvm-exception.LICENSE @@ -1,3 +1,35 @@ +--- +key: llvm-exception +short_name: LLVM Exception to Apache 2.0 +name: LLVM Exception to Apache 2.0 +category: Permissive +owner: llvm Project +homepage_url: http://llvm.org/foundation/relicensing/LICENSE.txt +is_exception: yes +spdx_license_key: LLVM-exception +other_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt + - https://github.com/apple/cups/blob/v2.3.3/NOTICE +standard_notice: | + --- LLVM Exceptions to the Apache 2.0 License ---- + As an exception, if, as a result of your compiling your source code, + portions + of this Software are embedded into an Object form of such source code, you + may redistribute such embedded portions in such Object form without + complying + with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + In addition, if you combine or link compiled forms of this Software with + software that is licensed under the GPLv2 ("Combined Software") and if a + court of competent jurisdiction determines that the patent provision + (Section + 3), the indemnity provision (Section 9) or other Section of the License + conflicts with the conditions of the GPLv2, you may retroactively and + prospectively choose to deem waived or otherwise exclude such Section(s) of + the License, but only in their entirety and only with respect to the + Combined + Software. +--- + --- LLVM Exceptions to the Apache 2.0 License ---- As an exception, if, as a result of your compiling your source code, portions diff --git a/docs/llvm-exception.html b/docs/llvm-exception.html index fa2af4b674..a537dcc262 100644 --- a/docs/llvm-exception.html +++ b/docs/llvm-exception.html @@ -181,7 +181,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/llvm-exception.json b/docs/llvm-exception.json index 364ad50c6b..85d0726eab 100644 --- a/docs/llvm-exception.json +++ b/docs/llvm-exception.json @@ -1 +1,15 @@ -{"key": "llvm-exception", "short_name": "LLVM Exception to Apache 2.0", "name": "LLVM Exception to Apache 2.0", "category": "Permissive", "owner": "llvm Project", "homepage_url": "http://llvm.org/foundation/relicensing/LICENSE.txt", "is_exception": true, "spdx_license_key": "LLVM-exception", "other_urls": ["http://www.apache.org/licenses/LICENSE-2.0.txt", "https://github.com/apple/cups/blob/v2.3.3/NOTICE"], "standard_notice": "--- LLVM Exceptions to the Apache 2.0 License ----\nAs an exception, if, as a result of your compiling your source code,\nportions\nof this Software are embedded into an Object form of such source code, you\nmay redistribute such embedded portions in such Object form without\ncomplying\nwith the conditions of Sections 4(a), 4(b) and 4(d) of the License.\nIn addition, if you combine or link compiled forms of this Software with\nsoftware that is licensed under the GPLv2 (\"Combined Software\") and if a\ncourt of competent jurisdiction determines that the patent provision\n(Section\n3), the indemnity provision (Section 9) or other Section of the License\nconflicts with the conditions of the GPLv2, you may retroactively and\nprospectively choose to deem waived or otherwise exclude such Section(s) of\nthe License, but only in their entirety and only with respect to the\nCombined\nSoftware.\n"} \ No newline at end of file +{ + "key": "llvm-exception", + "short_name": "LLVM Exception to Apache 2.0", + "name": "LLVM Exception to Apache 2.0", + "category": "Permissive", + "owner": "llvm Project", + "homepage_url": "http://llvm.org/foundation/relicensing/LICENSE.txt", + "is_exception": true, + "spdx_license_key": "LLVM-exception", + "other_urls": [ + "http://www.apache.org/licenses/LICENSE-2.0.txt", + "https://github.com/apple/cups/blob/v2.3.3/NOTICE" + ], + "standard_notice": "--- LLVM Exceptions to the Apache 2.0 License ----\nAs an exception, if, as a result of your compiling your source code,\nportions\nof this Software are embedded into an Object form of such source code, you\nmay redistribute such embedded portions in such Object form without\ncomplying\nwith the conditions of Sections 4(a), 4(b) and 4(d) of the License.\nIn addition, if you combine or link compiled forms of this Software with\nsoftware that is licensed under the GPLv2 (\"Combined Software\") and if a\ncourt of competent jurisdiction determines that the patent provision\n(Section\n3), the indemnity provision (Section 9) or other Section of the License\nconflicts with the conditions of the GPLv2, you may retroactively and\nprospectively choose to deem waived or otherwise exclude such Section(s) of\nthe License, but only in their entirety and only with respect to the\nCombined\nSoftware.\n" +} \ No newline at end of file diff --git a/docs/lmbench-exception-2.0.LICENSE b/docs/lmbench-exception-2.0.LICENSE index 966034de11..3efcf04905 100644 --- a/docs/lmbench-exception-2.0.LICENSE +++ b/docs/lmbench-exception-2.0.LICENSE @@ -1,3 +1,30 @@ +--- +key: lmbench-exception-2.0 +short_name: LMBench exception to GPL 2.0 +name: LMBench exception to GPL 2.0 +category: Copyleft Limited +owner: Larry McVoy +homepage_url: http://lmbench.sourceforge.net/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-lmbench-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + Distributed under the FSF GPL with additional restriction that results may + be published only if + (1) the benchmark is unmodified, and + (2) the version in the sccsid below is included in the report. + In the file COPYING-1: + The set of programs and documentation known as "lmbench" are distributed + under the Free Software Foundation's General Public License with the + following additional restrictions (which override any conflicting + restrictions in the GPL): + 1. You may not distribute results in any public forum, in any publication, + or in any other way if you have modified the benchmarks. + 2. You may not distribute the results for a fee of any kind. This includes + web sites which generate revenue from advertising. +--- + Distributed under the FSF GPL with additional restriction that results may be published only if (1) the benchmark is unmodified, and (2) the version in the sccsid below is included in the report. \ No newline at end of file diff --git a/docs/lmbench-exception-2.0.html b/docs/lmbench-exception-2.0.html index dfc672b173..6d53d9ef1c 100644 --- a/docs/lmbench-exception-2.0.html +++ b/docs/lmbench-exception-2.0.html @@ -165,7 +165,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lmbench-exception-2.0.json b/docs/lmbench-exception-2.0.json index 4780d0cdd5..428e34cbf7 100644 --- a/docs/lmbench-exception-2.0.json +++ b/docs/lmbench-exception-2.0.json @@ -1 +1,14 @@ -{"key": "lmbench-exception-2.0", "short_name": "LMBench exception to GPL 2.0", "name": "LMBench exception to GPL 2.0", "category": "Copyleft Limited", "owner": "Larry McVoy", "homepage_url": "http://lmbench.sourceforge.net/", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-lmbench-exception-2.0", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "Distributed under the FSF GPL with additional restriction that results may\nbe published only if\n(1) the benchmark is unmodified, and\n(2) the version in the sccsid below is included in the report.\nIn the file COPYING-1:\nThe set of programs and documentation known as \"lmbench\" are distributed\nunder the Free Software Foundation's General Public License with the\nfollowing additional restrictions (which override any conflicting\nrestrictions in the GPL):\n1. You may not distribute results in any public forum, in any publication,\nor in any other way if you have modified the benchmarks.\n2. You may not distribute the results for a fee of any kind. This includes\nweb sites which generate revenue from advertising.\n"} \ No newline at end of file +{ + "key": "lmbench-exception-2.0", + "short_name": "LMBench exception to GPL 2.0", + "name": "LMBench exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "Larry McVoy", + "homepage_url": "http://lmbench.sourceforge.net/", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-lmbench-exception-2.0", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "Distributed under the FSF GPL with additional restriction that results may\nbe published only if\n(1) the benchmark is unmodified, and\n(2) the version in the sccsid below is included in the report.\nIn the file COPYING-1:\nThe set of programs and documentation known as \"lmbench\" are distributed\nunder the Free Software Foundation's General Public License with the\nfollowing additional restrictions (which override any conflicting\nrestrictions in the GPL):\n1. You may not distribute results in any public forum, in any publication,\nor in any other way if you have modified the benchmarks.\n2. You may not distribute the results for a fee of any kind. This includes\nweb sites which generate revenue from advertising.\n" +} \ No newline at end of file diff --git a/docs/logica-1.0.LICENSE b/docs/logica-1.0.LICENSE index 20691e3f57..04c1ebd6e1 100644 --- a/docs/logica-1.0.LICENSE +++ b/docs/logica-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: logica-1.0 +short_name: Logica OSL 1.0 +name: Logica Open Source License v1.0 +category: Permissive +owner: Logica +homepage_url: http://opensmpp.logica.com/CommonPart/Download/Download.htm +spdx_license_key: LicenseRef-scancode-logica-1.0 +text_urls: + - http://opensmpp.logica.com/CommonPart/Download/Download.htm +ignorable_copyrights: + - Copyright (c) 1996-2001 Logica Mobile Networks Limited +ignorable_holders: + - Logica Mobile Networks Limited +--- + Logica Open Source License Version 1.0 Copyright (c) 1996-2001 Logica Mobile Networks Limited, all rights reserved. diff --git a/docs/logica-1.0.html b/docs/logica-1.0.html index 49bdca22fe..f3cfa3d0f0 100644 --- a/docs/logica-1.0.html +++ b/docs/logica-1.0.html @@ -214,7 +214,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/logica-1.0.json b/docs/logica-1.0.json index aebc74c63b..65e740ab7e 100644 --- a/docs/logica-1.0.json +++ b/docs/logica-1.0.json @@ -1 +1,18 @@ -{"key": "logica-1.0", "short_name": "Logica OSL 1.0", "name": "Logica Open Source License v1.0", "category": "Permissive", "owner": "Logica", "homepage_url": "http://opensmpp.logica.com/CommonPart/Download/Download.htm", "spdx_license_key": "LicenseRef-scancode-logica-1.0", "text_urls": ["http://opensmpp.logica.com/CommonPart/Download/Download.htm"], "ignorable_copyrights": ["Copyright (c) 1996-2001 Logica Mobile Networks Limited"], "ignorable_holders": ["Logica Mobile Networks Limited"]} \ No newline at end of file +{ + "key": "logica-1.0", + "short_name": "Logica OSL 1.0", + "name": "Logica Open Source License v1.0", + "category": "Permissive", + "owner": "Logica", + "homepage_url": "http://opensmpp.logica.com/CommonPart/Download/Download.htm", + "spdx_license_key": "LicenseRef-scancode-logica-1.0", + "text_urls": [ + "http://opensmpp.logica.com/CommonPart/Download/Download.htm" + ], + "ignorable_copyrights": [ + "Copyright (c) 1996-2001 Logica Mobile Networks Limited" + ], + "ignorable_holders": [ + "Logica Mobile Networks Limited" + ] +} \ No newline at end of file diff --git a/docs/lontium-linux-firmware.LICENSE b/docs/lontium-linux-firmware.LICENSE index e08f203394..7506e7ccf9 100644 --- a/docs/lontium-linux-firmware.LICENSE +++ b/docs/lontium-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: lontium-linux-firmware +short_name: Lontium Linux Firmware License +name: Lontium Linux Firmware License +category: Proprietary Free +owner: Lontium +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.Lontium +spdx_license_key: LicenseRef-scancode-lontium-linux-firmware +--- + Lontium Semiconductor Corp. grants permission to use and redistribute aforementioned firmware file for the use with devices containing Lontium chipsets, but not as part of the Linux kernel or in any other form which would require the file itself to be covered by the terms of the GNU General Public License or the GNU Lesser General Public License. The firmware file is distributed in the hope that it will be useful, but is provided WITHOUT ANY WARRANTY, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/docs/lontium-linux-firmware.html b/docs/lontium-linux-firmware.html index e2dd2e622f..bb08245796 100644 --- a/docs/lontium-linux-firmware.html +++ b/docs/lontium-linux-firmware.html @@ -129,7 +129,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lontium-linux-firmware.json b/docs/lontium-linux-firmware.json index 7cdff4d378..a3dfafedea 100644 --- a/docs/lontium-linux-firmware.json +++ b/docs/lontium-linux-firmware.json @@ -1 +1,9 @@ -{"key": "lontium-linux-firmware", "short_name": "Lontium Linux Firmware License", "name": "Lontium Linux Firmware License", "category": "Proprietary Free", "owner": "Lontium", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.Lontium", "spdx_license_key": "LicenseRef-scancode-lontium-linux-firmware"} \ No newline at end of file +{ + "key": "lontium-linux-firmware", + "short_name": "Lontium Linux Firmware License", + "name": "Lontium Linux Firmware License", + "category": "Proprietary Free", + "owner": "Lontium", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.Lontium", + "spdx_license_key": "LicenseRef-scancode-lontium-linux-firmware" +} \ No newline at end of file diff --git a/docs/losla.LICENSE b/docs/losla.LICENSE index a1c3ca9f5d..9831a1ceeb 100644 --- a/docs/losla.LICENSE +++ b/docs/losla.LICENSE @@ -1,3 +1,22 @@ +--- +key: losla +short_name: LOSLA +name: LEGO Open Source License Agreement +category: Copyleft Limited +owner: LEGO Group +homepage_url: https://fedoraproject.org/wiki/Licensing/LOSLA +spdx_license_key: LicenseRef-scancode-losla +text_urls: + - https://raw.githubusercontent.com/nxt3-org/nxt3/master/firmware/core/LICENSE.pdf +faq_url: https://fedoraproject.org/wiki/Licensing/LOSLA#License_Notes +ignorable_copyrights: + - (c) 2006 +ignorable_authors: + - National Instruments +ignorable_urls: + - http://mindstorms.lego.com/Overview/NXTreme.aspx +--- + LEGO® OPEN SOURCE LICENSE AGREEMENT 1.0 LEGO® MINDSTORMS® NXT FIRMWARE This LEGO® Open Source License Agreement is an open source license for the firmware of the LEGO® MINDSTORMS® NXT ATMEL microprocessors. diff --git a/docs/losla.html b/docs/losla.html index f234befd6a..59c2d18194 100644 --- a/docs/losla.html +++ b/docs/losla.html @@ -247,7 +247,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/losla.json b/docs/losla.json index a444073db0..f1d860eed9 100644 --- a/docs/losla.json +++ b/docs/losla.json @@ -1 +1,22 @@ -{"key": "losla", "short_name": "LOSLA", "name": "LEGO Open Source License Agreement", "category": "Copyleft Limited", "owner": "LEGO Group", "homepage_url": "https://fedoraproject.org/wiki/Licensing/LOSLA", "spdx_license_key": "LicenseRef-scancode-losla", "text_urls": ["https://raw.githubusercontent.com/nxt3-org/nxt3/master/firmware/core/LICENSE.pdf"], "faq_url": "https://fedoraproject.org/wiki/Licensing/LOSLA#License_Notes", "ignorable_copyrights": ["(c) 2006"], "ignorable_authors": ["National Instruments"], "ignorable_urls": ["http://mindstorms.lego.com/Overview/NXTreme.aspx"]} \ No newline at end of file +{ + "key": "losla", + "short_name": "LOSLA", + "name": "LEGO Open Source License Agreement", + "category": "Copyleft Limited", + "owner": "LEGO Group", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/LOSLA", + "spdx_license_key": "LicenseRef-scancode-losla", + "text_urls": [ + "https://raw.githubusercontent.com/nxt3-org/nxt3/master/firmware/core/LICENSE.pdf" + ], + "faq_url": "https://fedoraproject.org/wiki/Licensing/LOSLA#License_Notes", + "ignorable_copyrights": [ + "(c) 2006" + ], + "ignorable_authors": [ + "National Instruments" + ], + "ignorable_urls": [ + "http://mindstorms.lego.com/Overview/NXTreme.aspx" + ] +} \ No newline at end of file diff --git a/docs/lppl-1.0.LICENSE b/docs/lppl-1.0.LICENSE index 9a4b768c88..b0304c14b2 100644 --- a/docs/lppl-1.0.LICENSE +++ b/docs/lppl-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: lppl-1.0 +short_name: LPPL 1.0 +name: LaTeX Project Public License v1.0 +category: Copyleft +owner: LaTeX +homepage_url: http://www.latex-project.org/lppl/lppl-1-0.txt +notes: Per SPDX.org, this license was released 1 Mar 1999 +spdx_license_key: LPPL-1.0 +text_urls: + - http://www.latex-project.org/lppl/lppl-1-0.txt +ignorable_copyrights: + - Copyright 1999 LaTeX3 Project +ignorable_holders: + - LaTeX3 Project +--- + LaTeX Project Public License ============================ LPPL Version 1.0 1999-03-01 diff --git a/docs/lppl-1.0.html b/docs/lppl-1.0.html index 5373ed3a1c..bf5120cf8d 100644 --- a/docs/lppl-1.0.html +++ b/docs/lppl-1.0.html @@ -363,7 +363,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lppl-1.0.json b/docs/lppl-1.0.json index f275c28cba..2293233412 100644 --- a/docs/lppl-1.0.json +++ b/docs/lppl-1.0.json @@ -1 +1,19 @@ -{"key": "lppl-1.0", "short_name": "LPPL 1.0", "name": "LaTeX Project Public License v1.0", "category": "Copyleft", "owner": "LaTeX", "homepage_url": "http://www.latex-project.org/lppl/lppl-1-0.txt", "notes": "Per SPDX.org, this license was released 1 Mar 1999", "spdx_license_key": "LPPL-1.0", "text_urls": ["http://www.latex-project.org/lppl/lppl-1-0.txt"], "ignorable_copyrights": ["Copyright 1999 LaTeX3 Project"], "ignorable_holders": ["LaTeX3 Project"]} \ No newline at end of file +{ + "key": "lppl-1.0", + "short_name": "LPPL 1.0", + "name": "LaTeX Project Public License v1.0", + "category": "Copyleft", + "owner": "LaTeX", + "homepage_url": "http://www.latex-project.org/lppl/lppl-1-0.txt", + "notes": "Per SPDX.org, this license was released 1 Mar 1999", + "spdx_license_key": "LPPL-1.0", + "text_urls": [ + "http://www.latex-project.org/lppl/lppl-1-0.txt" + ], + "ignorable_copyrights": [ + "Copyright 1999 LaTeX3 Project" + ], + "ignorable_holders": [ + "LaTeX3 Project" + ] +} \ No newline at end of file diff --git a/docs/lppl-1.1.LICENSE b/docs/lppl-1.1.LICENSE index fac85e22c4..c647ce1886 100644 --- a/docs/lppl-1.1.LICENSE +++ b/docs/lppl-1.1.LICENSE @@ -1,3 +1,22 @@ +--- +key: lppl-1.1 +short_name: LPPL 1.1 +name: LaTeX Project Public License v1.1 +category: Copyleft +owner: LaTeX +homepage_url: http://www.latex-project.org/lppl/lppl-1-1.txt +notes: Per SPDX.org, this license was released 10 July 1999. +spdx_license_key: LPPL-1.1 +text_urls: + - http://www.latex-project.org/lppl/lppl-1-1.txt +ignorable_copyrights: + - Copyright 1999 LaTeX3 Project +ignorable_holders: + - LaTeX3 Project +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + The LaTeX Project Public License =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- LPPL Version 1.1 1999-07-10 diff --git a/docs/lppl-1.1.html b/docs/lppl-1.1.html index 3548c5b970..7621272ef1 100644 --- a/docs/lppl-1.1.html +++ b/docs/lppl-1.1.html @@ -470,7 +470,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lppl-1.1.json b/docs/lppl-1.1.json index ccfd9671d5..4c91ae6d8d 100644 --- a/docs/lppl-1.1.json +++ b/docs/lppl-1.1.json @@ -1 +1,22 @@ -{"key": "lppl-1.1", "short_name": "LPPL 1.1", "name": "LaTeX Project Public License v1.1", "category": "Copyleft", "owner": "LaTeX", "homepage_url": "http://www.latex-project.org/lppl/lppl-1-1.txt", "notes": "Per SPDX.org, this license was released 10 July 1999.", "spdx_license_key": "LPPL-1.1", "text_urls": ["http://www.latex-project.org/lppl/lppl-1-1.txt"], "ignorable_copyrights": ["Copyright 1999 LaTeX3 Project"], "ignorable_holders": ["LaTeX3 Project"], "ignorable_urls": ["http://www.latex-project.org/lppl.txt"]} \ No newline at end of file +{ + "key": "lppl-1.1", + "short_name": "LPPL 1.1", + "name": "LaTeX Project Public License v1.1", + "category": "Copyleft", + "owner": "LaTeX", + "homepage_url": "http://www.latex-project.org/lppl/lppl-1-1.txt", + "notes": "Per SPDX.org, this license was released 10 July 1999.", + "spdx_license_key": "LPPL-1.1", + "text_urls": [ + "http://www.latex-project.org/lppl/lppl-1-1.txt" + ], + "ignorable_copyrights": [ + "Copyright 1999 LaTeX3 Project" + ], + "ignorable_holders": [ + "LaTeX3 Project" + ], + "ignorable_urls": [ + "http://www.latex-project.org/lppl.txt" + ] +} \ No newline at end of file diff --git a/docs/lppl-1.2.LICENSE b/docs/lppl-1.2.LICENSE index af5781ac86..25d9443655 100644 --- a/docs/lppl-1.2.LICENSE +++ b/docs/lppl-1.2.LICENSE @@ -1,3 +1,22 @@ +--- +key: lppl-1.2 +short_name: LPPL 1.2 +name: LaTeX Project Public License v1.2 +category: Copyleft +owner: LaTeX +homepage_url: http://www.latex-project.org/lppl/lppl-1-2.txt +notes: Per SPDX.org, this license was released 3 Sept 1999. +spdx_license_key: LPPL-1.2 +text_urls: + - http://www.latex-project.org/lppl/lppl-1-2.txt +ignorable_copyrights: + - Copyright 1999 LaTeX3 Project +ignorable_holders: + - LaTeX3 Project +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + The LaTeX Project Public License =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- LPPL Version 1.2 1999-09-03 diff --git a/docs/lppl-1.2.html b/docs/lppl-1.2.html index cb728ee5b1..74568134be 100644 --- a/docs/lppl-1.2.html +++ b/docs/lppl-1.2.html @@ -471,7 +471,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lppl-1.2.json b/docs/lppl-1.2.json index ac74d76f96..3c0874c5d7 100644 --- a/docs/lppl-1.2.json +++ b/docs/lppl-1.2.json @@ -1 +1,22 @@ -{"key": "lppl-1.2", "short_name": "LPPL 1.2", "name": "LaTeX Project Public License v1.2", "category": "Copyleft", "owner": "LaTeX", "homepage_url": "http://www.latex-project.org/lppl/lppl-1-2.txt", "notes": "Per SPDX.org, this license was released 3 Sept 1999.", "spdx_license_key": "LPPL-1.2", "text_urls": ["http://www.latex-project.org/lppl/lppl-1-2.txt"], "ignorable_copyrights": ["Copyright 1999 LaTeX3 Project"], "ignorable_holders": ["LaTeX3 Project"], "ignorable_urls": ["http://www.latex-project.org/lppl.txt"]} \ No newline at end of file +{ + "key": "lppl-1.2", + "short_name": "LPPL 1.2", + "name": "LaTeX Project Public License v1.2", + "category": "Copyleft", + "owner": "LaTeX", + "homepage_url": "http://www.latex-project.org/lppl/lppl-1-2.txt", + "notes": "Per SPDX.org, this license was released 3 Sept 1999.", + "spdx_license_key": "LPPL-1.2", + "text_urls": [ + "http://www.latex-project.org/lppl/lppl-1-2.txt" + ], + "ignorable_copyrights": [ + "Copyright 1999 LaTeX3 Project" + ], + "ignorable_holders": [ + "LaTeX3 Project" + ], + "ignorable_urls": [ + "http://www.latex-project.org/lppl.txt" + ] +} \ No newline at end of file diff --git a/docs/lppl-1.3a.LICENSE b/docs/lppl-1.3a.LICENSE index f28516973b..b8076caa48 100644 --- a/docs/lppl-1.3a.LICENSE +++ b/docs/lppl-1.3a.LICENSE @@ -1,3 +1,22 @@ +--- +key: lppl-1.3a +short_name: LPPL 1.3a +name: LaTeX Project Public License v1.3a +category: Copyleft +owner: LaTeX +homepage_url: http://www.latex-project.org/lppl/lppl-1-3a.txt +notes: Per SPDX.org, this license was released 1 Oct 2004 +spdx_license_key: LPPL-1.3a +text_urls: + - http://www.latex-project.org/lppl/lppl-1-3a.txt +ignorable_copyrights: + - Copyright 1999 2002-04 LaTeX3 Project +ignorable_holders: + - LaTeX3 Project +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + The LaTeX Project Public License =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- LPPL Version 1.3a 2004-10-01 diff --git a/docs/lppl-1.3a.html b/docs/lppl-1.3a.html index 5b30ffe4e3..ada009ad66 100644 --- a/docs/lppl-1.3a.html +++ b/docs/lppl-1.3a.html @@ -563,7 +563,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lppl-1.3a.json b/docs/lppl-1.3a.json index d20b92e6ed..e639076b1e 100644 --- a/docs/lppl-1.3a.json +++ b/docs/lppl-1.3a.json @@ -1 +1,22 @@ -{"key": "lppl-1.3a", "short_name": "LPPL 1.3a", "name": "LaTeX Project Public License v1.3a", "category": "Copyleft", "owner": "LaTeX", "homepage_url": "http://www.latex-project.org/lppl/lppl-1-3a.txt", "notes": "Per SPDX.org, this license was released 1 Oct 2004", "spdx_license_key": "LPPL-1.3a", "text_urls": ["http://www.latex-project.org/lppl/lppl-1-3a.txt"], "ignorable_copyrights": ["Copyright 1999 2002-04 LaTeX3 Project"], "ignorable_holders": ["LaTeX3 Project"], "ignorable_urls": ["http://www.latex-project.org/lppl.txt"]} \ No newline at end of file +{ + "key": "lppl-1.3a", + "short_name": "LPPL 1.3a", + "name": "LaTeX Project Public License v1.3a", + "category": "Copyleft", + "owner": "LaTeX", + "homepage_url": "http://www.latex-project.org/lppl/lppl-1-3a.txt", + "notes": "Per SPDX.org, this license was released 1 Oct 2004", + "spdx_license_key": "LPPL-1.3a", + "text_urls": [ + "http://www.latex-project.org/lppl/lppl-1-3a.txt" + ], + "ignorable_copyrights": [ + "Copyright 1999 2002-04 LaTeX3 Project" + ], + "ignorable_holders": [ + "LaTeX3 Project" + ], + "ignorable_urls": [ + "http://www.latex-project.org/lppl.txt" + ] +} \ No newline at end of file diff --git a/docs/lppl-1.3c.LICENSE b/docs/lppl-1.3c.LICENSE index 2244313901..c3c8f97fbc 100644 --- a/docs/lppl-1.3c.LICENSE +++ b/docs/lppl-1.3c.LICENSE @@ -1,3 +1,28 @@ +--- +key: lppl-1.3c +short_name: LPPL 1.3c +name: LaTeX Project Public License v1.3c +category: Copyleft +owner: LaTeX +homepage_url: http://www.latex-project.org/lppl/lppl-1-3c.txt +notes: | + Per SPDX.org, this license was released 4 May 2008 This license is OSI + certified. +spdx_license_key: LPPL-1.3c +osi_license_key: LPPL-1.3c +text_urls: + - http://www.latex-project.org/lppl/lppl-1-3c.txt +other_urls: + - http://www.opensource.org/licenses/LPPL-1.3c + - https://opensource.org/licenses/LPPL-1.3c +ignorable_copyrights: + - Copyright 1999 2002-2008 LaTeX3 Project +ignorable_holders: + - LaTeX3 Project +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + The LaTeX Project Public License =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- @@ -412,5 +437,4 @@ Important Recommendations impossible for the licensee to determine what is considered by you to comprise the Work and, in such a case, the licensee would be entitled to make reasonable conjectures as to which files comprise - the Work. - + the Work. \ No newline at end of file diff --git a/docs/lppl-1.3c.html b/docs/lppl-1.3c.html index 89b467540a..c4c3c0d9b6 100644 --- a/docs/lppl-1.3c.html +++ b/docs/lppl-1.3c.html @@ -590,9 +590,7 @@ impossible for the licensee to determine what is considered by you to comprise the Work and, in such a case, the licensee would be entitled to make reasonable conjectures as to which files comprise - the Work. - - + the Work.
@@ -604,7 +602,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lppl-1.3c.json b/docs/lppl-1.3c.json index deb8f7bbd7..47228d4d76 100644 --- a/docs/lppl-1.3c.json +++ b/docs/lppl-1.3c.json @@ -1 +1,27 @@ -{"key": "lppl-1.3c", "short_name": "LPPL 1.3c", "name": "LaTeX Project Public License v1.3c", "category": "Copyleft", "owner": "LaTeX", "homepage_url": "http://www.latex-project.org/lppl/lppl-1-3c.txt", "notes": "Per SPDX.org, this license was released 4 May 2008 This license is OSI\ncertified.\n", "spdx_license_key": "LPPL-1.3c", "osi_license_key": "LPPL-1.3c", "text_urls": ["http://www.latex-project.org/lppl/lppl-1-3c.txt"], "other_urls": ["http://www.opensource.org/licenses/LPPL-1.3c", "https://opensource.org/licenses/LPPL-1.3c"], "ignorable_copyrights": ["Copyright 1999 2002-2008 LaTeX3 Project"], "ignorable_holders": ["LaTeX3 Project"], "ignorable_urls": ["http://www.latex-project.org/lppl.txt"]} \ No newline at end of file +{ + "key": "lppl-1.3c", + "short_name": "LPPL 1.3c", + "name": "LaTeX Project Public License v1.3c", + "category": "Copyleft", + "owner": "LaTeX", + "homepage_url": "http://www.latex-project.org/lppl/lppl-1-3c.txt", + "notes": "Per SPDX.org, this license was released 4 May 2008 This license is OSI\ncertified.\n", + "spdx_license_key": "LPPL-1.3c", + "osi_license_key": "LPPL-1.3c", + "text_urls": [ + "http://www.latex-project.org/lppl/lppl-1-3c.txt" + ], + "other_urls": [ + "http://www.opensource.org/licenses/LPPL-1.3c", + "https://opensource.org/licenses/LPPL-1.3c" + ], + "ignorable_copyrights": [ + "Copyright 1999 2002-2008 LaTeX3 Project" + ], + "ignorable_holders": [ + "LaTeX3 Project" + ], + "ignorable_urls": [ + "http://www.latex-project.org/lppl.txt" + ] +} \ No newline at end of file diff --git a/docs/lsi-proprietary-eula.LICENSE b/docs/lsi-proprietary-eula.LICENSE index 1c2c212b17..920eae6b11 100644 --- a/docs/lsi-proprietary-eula.LICENSE +++ b/docs/lsi-proprietary-eula.LICENSE @@ -1,3 +1,15 @@ +--- +key: lsi-proprietary-eula +short_name: LSI Proprietary EULA +name: LSI Proprietary EULA +category: Proprietary Free +owner: LSI Corporation +homepage_url: http://www.lsi.com/Pages/user/eula.aspx +spdx_license_key: LicenseRef-scancode-lsi-proprietary-eula +ignorable_urls: + - http://www.oracle.com/technetwork/java/javase/terms/license/index.html +--- + USE OF LSI DOCUMENTATION AND SOFTWARE DOWNLOADS IS SUBJECT TO THIS AGREEMENT IMPORTANT - READ CAREFULLY: This Software License Agreement ("SLA") is a legal diff --git a/docs/lsi-proprietary-eula.html b/docs/lsi-proprietary-eula.html index 6f7e1e7911..ac4bb1db4d 100644 --- a/docs/lsi-proprietary-eula.html +++ b/docs/lsi-proprietary-eula.html @@ -765,7 +765,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lsi-proprietary-eula.json b/docs/lsi-proprietary-eula.json index ac91e55903..4ed958e784 100644 --- a/docs/lsi-proprietary-eula.json +++ b/docs/lsi-proprietary-eula.json @@ -1 +1,12 @@ -{"key": "lsi-proprietary-eula", "short_name": "LSI Proprietary EULA", "name": "LSI Proprietary EULA", "category": "Proprietary Free", "owner": "LSI Corporation", "homepage_url": "http://www.lsi.com/Pages/user/eula.aspx", "spdx_license_key": "LicenseRef-scancode-lsi-proprietary-eula", "ignorable_urls": ["http://www.oracle.com/technetwork/java/javase/terms/license/index.html"]} \ No newline at end of file +{ + "key": "lsi-proprietary-eula", + "short_name": "LSI Proprietary EULA", + "name": "LSI Proprietary EULA", + "category": "Proprietary Free", + "owner": "LSI Corporation", + "homepage_url": "http://www.lsi.com/Pages/user/eula.aspx", + "spdx_license_key": "LicenseRef-scancode-lsi-proprietary-eula", + "ignorable_urls": [ + "http://www.oracle.com/technetwork/java/javase/terms/license/index.html" + ] +} \ No newline at end of file diff --git a/docs/lucent-pl-1.0.LICENSE b/docs/lucent-pl-1.0.LICENSE index ca0a3fbd04..aeead72045 100644 --- a/docs/lucent-pl-1.0.LICENSE +++ b/docs/lucent-pl-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: lucent-pl-1.0 +short_name: Lucent Public License 1.0 +name: Lucent Public License 1.0 +category: Copyleft Limited +owner: Alcatel-Lucent +homepage_url: http://www.opensource.org/licenses/plan9.php +spdx_license_key: LPL-1.0 +osi_license_key: LPL-1.0 +text_urls: + - http://www.opensource.org/licenses/plan9.php +osi_url: http://www.opensource.org/licenses/plan9.php +other_urls: + - http://opensource.org/licenses/LPL-1.0 + - https://opensource.org/licenses/LPL-1.0 +--- + Lucent Public License Version 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS PUBLIC LICENSE diff --git a/docs/lucent-pl-1.0.html b/docs/lucent-pl-1.0.html index f76e0cc3e7..cccb05bbee 100644 --- a/docs/lucent-pl-1.0.html +++ b/docs/lucent-pl-1.0.html @@ -375,7 +375,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lucent-pl-1.0.json b/docs/lucent-pl-1.0.json index c16fd53e46..3d8f94404d 100644 --- a/docs/lucent-pl-1.0.json +++ b/docs/lucent-pl-1.0.json @@ -1 +1,18 @@ -{"key": "lucent-pl-1.0", "short_name": "Lucent Public License 1.0", "name": "Lucent Public License 1.0", "category": "Copyleft Limited", "owner": "Alcatel-Lucent", "homepage_url": "http://www.opensource.org/licenses/plan9.php", "spdx_license_key": "LPL-1.0", "osi_license_key": "LPL-1.0", "text_urls": ["http://www.opensource.org/licenses/plan9.php"], "osi_url": "http://www.opensource.org/licenses/plan9.php", "other_urls": ["http://opensource.org/licenses/LPL-1.0", "https://opensource.org/licenses/LPL-1.0"]} \ No newline at end of file +{ + "key": "lucent-pl-1.0", + "short_name": "Lucent Public License 1.0", + "name": "Lucent Public License 1.0", + "category": "Copyleft Limited", + "owner": "Alcatel-Lucent", + "homepage_url": "http://www.opensource.org/licenses/plan9.php", + "spdx_license_key": "LPL-1.0", + "osi_license_key": "LPL-1.0", + "text_urls": [ + "http://www.opensource.org/licenses/plan9.php" + ], + "osi_url": "http://www.opensource.org/licenses/plan9.php", + "other_urls": [ + "http://opensource.org/licenses/LPL-1.0", + "https://opensource.org/licenses/LPL-1.0" + ] +} \ No newline at end of file diff --git a/docs/lucent-pl-1.02.LICENSE b/docs/lucent-pl-1.02.LICENSE index 7ac1d540ef..b53bd1637f 100644 --- a/docs/lucent-pl-1.02.LICENSE +++ b/docs/lucent-pl-1.02.LICENSE @@ -1,3 +1,24 @@ +--- +key: lucent-pl-1.02 +short_name: Lucent Public License 1.02 +name: Lucent Public License 1.02 +category: Copyleft Limited +owner: Alcatel-Lucent +homepage_url: http://plan9.bell-labs.com/plan9/license.html +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: LPL-1.02 +osi_license_key: LPL-1.02 +text_urls: + - http://plan9.bell-labs.com/plan9/license.html +other_urls: + - http://www.opensource.org/licenses/LPL-1.02 + - https://opensource.org/licenses/LPL-1.02 +ignorable_copyrights: + - Copyright (c) YEAR, ORGANIZATION and others +ignorable_holders: + - YEAR, ORGANIZATION and others +--- + Lucent Public License Version 1.02 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. diff --git a/docs/lucent-pl-1.02.html b/docs/lucent-pl-1.02.html index 6282265cac..40aa5721ee 100644 --- a/docs/lucent-pl-1.02.html +++ b/docs/lucent-pl-1.02.html @@ -255,7 +255,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lucent-pl-1.02.json b/docs/lucent-pl-1.02.json index 2102b19d14..d358709fdf 100644 --- a/docs/lucent-pl-1.02.json +++ b/docs/lucent-pl-1.02.json @@ -1 +1,24 @@ -{"key": "lucent-pl-1.02", "short_name": "Lucent Public License 1.02", "name": "Lucent Public License 1.02", "category": "Copyleft Limited", "owner": "Alcatel-Lucent", "homepage_url": "http://plan9.bell-labs.com/plan9/license.html", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "LPL-1.02", "osi_license_key": "LPL-1.02", "text_urls": ["http://plan9.bell-labs.com/plan9/license.html"], "other_urls": ["http://www.opensource.org/licenses/LPL-1.02", "https://opensource.org/licenses/LPL-1.02"], "ignorable_copyrights": ["Copyright (c) YEAR, ORGANIZATION and others"], "ignorable_holders": ["YEAR, ORGANIZATION and others"]} \ No newline at end of file +{ + "key": "lucent-pl-1.02", + "short_name": "Lucent Public License 1.02", + "name": "Lucent Public License 1.02", + "category": "Copyleft Limited", + "owner": "Alcatel-Lucent", + "homepage_url": "http://plan9.bell-labs.com/plan9/license.html", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "LPL-1.02", + "osi_license_key": "LPL-1.02", + "text_urls": [ + "http://plan9.bell-labs.com/plan9/license.html" + ], + "other_urls": [ + "http://www.opensource.org/licenses/LPL-1.02", + "https://opensource.org/licenses/LPL-1.02" + ], + "ignorable_copyrights": [ + "Copyright (c) YEAR, ORGANIZATION and others" + ], + "ignorable_holders": [ + "YEAR, ORGANIZATION and others" + ] +} \ No newline at end of file diff --git a/docs/lucre.LICENSE b/docs/lucre.LICENSE index 13b4aa0cf1..b6f2c78aad 100644 --- a/docs/lucre.LICENSE +++ b/docs/lucre.LICENSE @@ -1,3 +1,18 @@ +--- +key: lucre +short_name: Lucre License +name: Lucre License +category: Permissive +owner: Ben Laurie +homepage_url: https://github.com/benlaurie/lucre/blob/master/LICENCE +notes: | + This is mostly similar to the OpenSSL license. +spdx_license_key: LicenseRef-scancode-lucre +minimum_coverage: 50 +ignorable_authors: + - Ben Laurie +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/lucre.html b/docs/lucre.html index 47cdc2c016..6983df5406 100644 --- a/docs/lucre.html +++ b/docs/lucre.html @@ -188,7 +188,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lucre.json b/docs/lucre.json index 89d5faaf64..0d6f971b61 100644 --- a/docs/lucre.json +++ b/docs/lucre.json @@ -1 +1,14 @@ -{"key": "lucre", "short_name": "Lucre License", "name": "Lucre License", "category": "Permissive", "owner": "Ben Laurie", "homepage_url": "https://github.com/benlaurie/lucre/blob/master/LICENCE", "notes": "This is mostly similar to the OpenSSL license.\n", "spdx_license_key": "LicenseRef-scancode-lucre", "minimum_coverage": 50, "ignorable_authors": ["Ben Laurie"]} \ No newline at end of file +{ + "key": "lucre", + "short_name": "Lucre License", + "name": "Lucre License", + "category": "Permissive", + "owner": "Ben Laurie", + "homepage_url": "https://github.com/benlaurie/lucre/blob/master/LICENCE", + "notes": "This is mostly similar to the OpenSSL license.\n", + "spdx_license_key": "LicenseRef-scancode-lucre", + "minimum_coverage": 50, + "ignorable_authors": [ + "Ben Laurie" + ] +} \ No newline at end of file diff --git a/docs/lumisoft-mail-server.LICENSE b/docs/lumisoft-mail-server.LICENSE index 5acf4b8a1d..12c964254d 100644 --- a/docs/lumisoft-mail-server.LICENSE +++ b/docs/lumisoft-mail-server.LICENSE @@ -1,3 +1,15 @@ +--- +key: lumisoft-mail-server +short_name: LumiSoft Mail Server License +name: LumiSoft Mail Server License +category: Proprietary Free +owner: LumiSoft +homepage_url: http://www.lumisoft.ee/lsWWW/ENG/Products/Mail_Server/mail_index_eng.aspx?type=info +spdx_license_key: LicenseRef-scancode-lumisoft-mail-server +other_urls: + - http://www.lumisoft.ee/lsWWW/ENG/Products/Mail_Server/mail_index_eng.aspx?type=download +--- + General usage terms: *) If you use/redistribute compiled binary, there are no restrictions. diff --git a/docs/lumisoft-mail-server.html b/docs/lumisoft-mail-server.html index 5226f6cb2f..8a1e2e4bb7 100644 --- a/docs/lumisoft-mail-server.html +++ b/docs/lumisoft-mail-server.html @@ -150,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lumisoft-mail-server.json b/docs/lumisoft-mail-server.json index 303a8bd835..35eb1dfe6c 100644 --- a/docs/lumisoft-mail-server.json +++ b/docs/lumisoft-mail-server.json @@ -1 +1,12 @@ -{"key": "lumisoft-mail-server", "short_name": "LumiSoft Mail Server License", "name": "LumiSoft Mail Server License", "category": "Proprietary Free", "owner": "LumiSoft", "homepage_url": "http://www.lumisoft.ee/lsWWW/ENG/Products/Mail_Server/mail_index_eng.aspx?type=info", "spdx_license_key": "LicenseRef-scancode-lumisoft-mail-server", "other_urls": ["http://www.lumisoft.ee/lsWWW/ENG/Products/Mail_Server/mail_index_eng.aspx?type=download"]} \ No newline at end of file +{ + "key": "lumisoft-mail-server", + "short_name": "LumiSoft Mail Server License", + "name": "LumiSoft Mail Server License", + "category": "Proprietary Free", + "owner": "LumiSoft", + "homepage_url": "http://www.lumisoft.ee/lsWWW/ENG/Products/Mail_Server/mail_index_eng.aspx?type=info", + "spdx_license_key": "LicenseRef-scancode-lumisoft-mail-server", + "other_urls": [ + "http://www.lumisoft.ee/lsWWW/ENG/Products/Mail_Server/mail_index_eng.aspx?type=download" + ] +} \ No newline at end of file diff --git a/docs/luxi.LICENSE b/docs/luxi.LICENSE index c11abc3e0c..272f9cf1c2 100644 --- a/docs/luxi.LICENSE +++ b/docs/luxi.LICENSE @@ -1,3 +1,21 @@ +--- +key: luxi +short_name: Bigelow & Holmes Luxi fonts license +name: Bigelow & Holmes Luxi fonts license +category: Proprietary Free +owner: Bigelow & Holmes +spdx_license_key: LicenseRef-scancode-luxi +ignorable_copyrights: + - copyright (c) 2001 by Bigelow & Holmes Inc. + - copyright (c) 2001 by URW++ GmbH. +ignorable_holders: + - Bigelow & Holmes Inc. + - URW++ GmbH. +ignorable_emails: + - design@bigelowandholmes.com + - info@urwpp.de +--- + Luxi fonts copyright (c) 2001 by Bigelow & Holmes Inc. Luxi font instruction code copyright (c) 2001 by URW++ GmbH. All Rights Reserved. Luxi is a regis- tered trademark of Bigelow & Holmes Inc. diff --git a/docs/luxi.html b/docs/luxi.html index 6836f2064d..e19f0a324e 100644 --- a/docs/luxi.html +++ b/docs/luxi.html @@ -183,7 +183,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/luxi.json b/docs/luxi.json index 03b0082286..59d263f961 100644 --- a/docs/luxi.json +++ b/docs/luxi.json @@ -1 +1,20 @@ -{"key": "luxi", "short_name": "Bigelow & Holmes Luxi fonts license", "name": "Bigelow & Holmes Luxi fonts license", "category": "Proprietary Free", "owner": "Bigelow & Holmes", "spdx_license_key": "LicenseRef-scancode-luxi", "ignorable_copyrights": ["copyright (c) 2001 by Bigelow & Holmes Inc.", "copyright (c) 2001 by URW++ GmbH."], "ignorable_holders": ["Bigelow & Holmes Inc.", "URW++ GmbH."], "ignorable_emails": ["design@bigelowandholmes.com", "info@urwpp.de"]} \ No newline at end of file +{ + "key": "luxi", + "short_name": "Bigelow & Holmes Luxi fonts license", + "name": "Bigelow & Holmes Luxi fonts license", + "category": "Proprietary Free", + "owner": "Bigelow & Holmes", + "spdx_license_key": "LicenseRef-scancode-luxi", + "ignorable_copyrights": [ + "copyright (c) 2001 by Bigelow & Holmes Inc.", + "copyright (c) 2001 by URW++ GmbH." + ], + "ignorable_holders": [ + "Bigelow & Holmes Inc.", + "URW++ GmbH." + ], + "ignorable_emails": [ + "design@bigelowandholmes.com", + "info@urwpp.de" + ] +} \ No newline at end of file diff --git a/docs/lyubinskiy-dropdown.LICENSE b/docs/lyubinskiy-dropdown.LICENSE index 0d0c08fc13..789e6d6bbd 100644 --- a/docs/lyubinskiy-dropdown.LICENSE +++ b/docs/lyubinskiy-dropdown.LICENSE @@ -1,3 +1,17 @@ +--- +key: lyubinskiy-dropdown +short_name: Lyubinskiy dropdown License +name: Lyubinskiy dropdown License +category: Proprietary Free +owner: Ilya S. Lyubinskiy +homepage_url: http://www.php-development.ru/ +spdx_license_key: LicenseRef-scancode-lyubinskiy-dropdown +other_urls: + - http://www.php-development.ru/javascripts/dropdown.php +ignorable_urls: + - http://www.php-development.ru/javascripts/dropdown.php +--- + YOU MAY NOT (1) Remove or modify this copyright notice. (2) Re-distribute this code or any part of it. diff --git a/docs/lyubinskiy-dropdown.html b/docs/lyubinskiy-dropdown.html index 93c818ad35..757a6567ad 100644 --- a/docs/lyubinskiy-dropdown.html +++ b/docs/lyubinskiy-dropdown.html @@ -157,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lyubinskiy-dropdown.json b/docs/lyubinskiy-dropdown.json index 8e85b9afac..e4388810a6 100644 --- a/docs/lyubinskiy-dropdown.json +++ b/docs/lyubinskiy-dropdown.json @@ -1 +1,15 @@ -{"key": "lyubinskiy-dropdown", "short_name": "Lyubinskiy dropdown License", "name": "Lyubinskiy dropdown License", "category": "Proprietary Free", "owner": "Ilya S. Lyubinskiy", "homepage_url": "http://www.php-development.ru/", "spdx_license_key": "LicenseRef-scancode-lyubinskiy-dropdown", "other_urls": ["http://www.php-development.ru/javascripts/dropdown.php"], "ignorable_urls": ["http://www.php-development.ru/javascripts/dropdown.php"]} \ No newline at end of file +{ + "key": "lyubinskiy-dropdown", + "short_name": "Lyubinskiy dropdown License", + "name": "Lyubinskiy dropdown License", + "category": "Proprietary Free", + "owner": "Ilya S. Lyubinskiy", + "homepage_url": "http://www.php-development.ru/", + "spdx_license_key": "LicenseRef-scancode-lyubinskiy-dropdown", + "other_urls": [ + "http://www.php-development.ru/javascripts/dropdown.php" + ], + "ignorable_urls": [ + "http://www.php-development.ru/javascripts/dropdown.php" + ] +} \ No newline at end of file diff --git a/docs/lyubinskiy-popup-window.LICENSE b/docs/lyubinskiy-popup-window.LICENSE index 345d994102..c9efd12146 100644 --- a/docs/lyubinskiy-popup-window.LICENSE +++ b/docs/lyubinskiy-popup-window.LICENSE @@ -1,3 +1,17 @@ +--- +key: lyubinskiy-popup-window +short_name: Lyubinskiy popup-window License +name: Lyubinskiy popup-window License +category: Proprietary Free +owner: Ilya S. Lyubinskiy +homepage_url: http://www.php-development.ru/ +spdx_license_key: LicenseRef-scancode-lyubinskiy-popup-window +other_urls: + - http://www.php-development.ru/javascripts/popup-window.php +ignorable_urls: + - http://www.php-development.ru/javascripts/popup-window.php +--- + YOU MAY NOT (1) Remove or modify this copyright notice. (2) Re-distribute this code or any part of it. diff --git a/docs/lyubinskiy-popup-window.html b/docs/lyubinskiy-popup-window.html index 699c6b65c8..d4be683a89 100644 --- a/docs/lyubinskiy-popup-window.html +++ b/docs/lyubinskiy-popup-window.html @@ -157,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lyubinskiy-popup-window.json b/docs/lyubinskiy-popup-window.json index 80cd26c09d..326f4d3626 100644 --- a/docs/lyubinskiy-popup-window.json +++ b/docs/lyubinskiy-popup-window.json @@ -1 +1,15 @@ -{"key": "lyubinskiy-popup-window", "short_name": "Lyubinskiy popup-window License", "name": "Lyubinskiy popup-window License", "category": "Proprietary Free", "owner": "Ilya S. Lyubinskiy", "homepage_url": "http://www.php-development.ru/", "spdx_license_key": "LicenseRef-scancode-lyubinskiy-popup-window", "other_urls": ["http://www.php-development.ru/javascripts/popup-window.php"], "ignorable_urls": ["http://www.php-development.ru/javascripts/popup-window.php"]} \ No newline at end of file +{ + "key": "lyubinskiy-popup-window", + "short_name": "Lyubinskiy popup-window License", + "name": "Lyubinskiy popup-window License", + "category": "Proprietary Free", + "owner": "Ilya S. Lyubinskiy", + "homepage_url": "http://www.php-development.ru/", + "spdx_license_key": "LicenseRef-scancode-lyubinskiy-popup-window", + "other_urls": [ + "http://www.php-development.ru/javascripts/popup-window.php" + ], + "ignorable_urls": [ + "http://www.php-development.ru/javascripts/popup-window.php" + ] +} \ No newline at end of file diff --git a/docs/lzma-cpl-exception.LICENSE b/docs/lzma-cpl-exception.LICENSE index 410a939202..63f9348638 100644 --- a/docs/lzma-cpl-exception.LICENSE +++ b/docs/lzma-cpl-exception.LICENSE @@ -1,3 +1,14 @@ +--- +key: lzma-cpl-exception +short_name: LZMA exception to CPL 1.0 +name: LZMA exception to CPL 1.0 +category: Copyleft Limited +owner: NSIS contributors +homepage_url: http://nsis.sourceforge.net/Docs/AppendixI.html#I.6 +is_exception: yes +spdx_license_key: LZMA-exception +--- + Special exception for LZMA compression module Igor Pavlov and Amir Szekely, the authors of the LZMA compression module for NSIS, diff --git a/docs/lzma-cpl-exception.html b/docs/lzma-cpl-exception.html index c49e2850bb..a72b928bd9 100644 --- a/docs/lzma-cpl-exception.html +++ b/docs/lzma-cpl-exception.html @@ -141,7 +141,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lzma-cpl-exception.json b/docs/lzma-cpl-exception.json index 91938c88d0..cade80d1cc 100644 --- a/docs/lzma-cpl-exception.json +++ b/docs/lzma-cpl-exception.json @@ -1 +1,10 @@ -{"key": "lzma-cpl-exception", "short_name": "LZMA exception to CPL 1.0", "name": "LZMA exception to CPL 1.0", "category": "Copyleft Limited", "owner": "NSIS contributors", "homepage_url": "http://nsis.sourceforge.net/Docs/AppendixI.html#I.6", "is_exception": true, "spdx_license_key": "LZMA-exception"} \ No newline at end of file +{ + "key": "lzma-cpl-exception", + "short_name": "LZMA exception to CPL 1.0", + "name": "LZMA exception to CPL 1.0", + "category": "Copyleft Limited", + "owner": "NSIS contributors", + "homepage_url": "http://nsis.sourceforge.net/Docs/AppendixI.html#I.6", + "is_exception": true, + "spdx_license_key": "LZMA-exception" +} \ No newline at end of file diff --git a/docs/lzma-sdk-2006-exception.LICENSE b/docs/lzma-sdk-2006-exception.LICENSE index e2bede48ec..964234d607 100644 --- a/docs/lzma-sdk-2006-exception.LICENSE +++ b/docs/lzma-sdk-2006-exception.LICENSE @@ -1,3 +1,17 @@ +--- +key: lzma-sdk-2006-exception +short_name: LZMA SDK 2006 Exception +name: LZMA SDK 2006 CPL and LGPL Exception +category: Copyleft Limited +owner: Igor Pavlov +homepage_url: http://www.7-zip.org/sdk.html +notes: this version of the license existed around 2006 +is_exception: yes +spdx_license_key: LicenseRef-scancode-lzma-sdk-2006-exception +other_urls: + - http://sourceforge.net/projects/sevenzip/ +--- + SPECIAL EXCEPTION: Igor Pavlov, as the author of this code, expressly permits you to statically or dynamically link your code (or bind by name) to the diff --git a/docs/lzma-sdk-2006-exception.html b/docs/lzma-sdk-2006-exception.html index 90dc15f085..0cd528aa2a 100644 --- a/docs/lzma-sdk-2006-exception.html +++ b/docs/lzma-sdk-2006-exception.html @@ -155,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lzma-sdk-2006-exception.json b/docs/lzma-sdk-2006-exception.json index fd7064f8f2..c04fc199c0 100644 --- a/docs/lzma-sdk-2006-exception.json +++ b/docs/lzma-sdk-2006-exception.json @@ -1 +1,14 @@ -{"key": "lzma-sdk-2006-exception", "short_name": "LZMA SDK 2006 Exception", "name": "LZMA SDK 2006 CPL and LGPL Exception", "category": "Copyleft Limited", "owner": "Igor Pavlov", "homepage_url": "http://www.7-zip.org/sdk.html", "notes": "this version of the license existed around 2006", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2006-exception", "other_urls": ["http://sourceforge.net/projects/sevenzip/"]} \ No newline at end of file +{ + "key": "lzma-sdk-2006-exception", + "short_name": "LZMA SDK 2006 Exception", + "name": "LZMA SDK 2006 CPL and LGPL Exception", + "category": "Copyleft Limited", + "owner": "Igor Pavlov", + "homepage_url": "http://www.7-zip.org/sdk.html", + "notes": "this version of the license existed around 2006", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2006-exception", + "other_urls": [ + "http://sourceforge.net/projects/sevenzip/" + ] +} \ No newline at end of file diff --git a/docs/lzma-sdk-2006.LICENSE b/docs/lzma-sdk-2006.LICENSE index a61ca07413..3137d2d258 100644 --- a/docs/lzma-sdk-2006.LICENSE +++ b/docs/lzma-sdk-2006.LICENSE @@ -1,3 +1,18 @@ +--- +key: lzma-sdk-2006 +short_name: LZMA SDK 2006 +name: LZMA SDK 2006 +category: Copyleft Limited +owner: Igor Pavlov +spdx_license_key: LicenseRef-scancode-lzma-sdk-2006 +ignorable_copyrights: + - Copyright (c) 1999-2006 Igor Pavlov (2006-05-01) http://www.7-zip.org +ignorable_holders: + - Igor Pavlov +ignorable_urls: + - http://www.7-zip.org/ +--- + LZMA SDK 4.40 Copyright (c) 1999-2006 Igor Pavlov (2006-05-01) http://www.7-zip.org/ diff --git a/docs/lzma-sdk-2006.html b/docs/lzma-sdk-2006.html index d433065c85..ab83e73470 100644 --- a/docs/lzma-sdk-2006.html +++ b/docs/lzma-sdk-2006.html @@ -161,7 +161,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lzma-sdk-2006.json b/docs/lzma-sdk-2006.json index eccf8611cb..5a49879db8 100644 --- a/docs/lzma-sdk-2006.json +++ b/docs/lzma-sdk-2006.json @@ -1 +1,17 @@ -{"key": "lzma-sdk-2006", "short_name": "LZMA SDK 2006", "name": "LZMA SDK 2006", "category": "Copyleft Limited", "owner": "Igor Pavlov", "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2006", "ignorable_copyrights": ["Copyright (c) 1999-2006 Igor Pavlov (2006-05-01) http://www.7-zip.org"], "ignorable_holders": ["Igor Pavlov"], "ignorable_urls": ["http://www.7-zip.org/"]} \ No newline at end of file +{ + "key": "lzma-sdk-2006", + "short_name": "LZMA SDK 2006", + "name": "LZMA SDK 2006", + "category": "Copyleft Limited", + "owner": "Igor Pavlov", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2006", + "ignorable_copyrights": [ + "Copyright (c) 1999-2006 Igor Pavlov (2006-05-01) http://www.7-zip.org" + ], + "ignorable_holders": [ + "Igor Pavlov" + ], + "ignorable_urls": [ + "http://www.7-zip.org/" + ] +} \ No newline at end of file diff --git a/docs/lzma-sdk-2008.LICENSE b/docs/lzma-sdk-2008.LICENSE index 93f5ec4f29..93417bb55a 100644 --- a/docs/lzma-sdk-2008.LICENSE +++ b/docs/lzma-sdk-2008.LICENSE @@ -1,3 +1,17 @@ +--- +key: lzma-sdk-2008 +short_name: LZMA SDK 2008 +name: LZMA SDK 2008 +category: Copyleft Limited +owner: Igor Pavlov +spdx_license_key: LicenseRef-scancode-lzma-sdk-2008 +ignorable_authors: + - Igor Pavlov +ignorable_urls: + - http://www.gnu.org/ + - http://www.opensource.org/ +--- + LZMA SDK provides the documentation, samples, header files, libraries, and tools you need to develop applications that use LZMA compression. diff --git a/docs/lzma-sdk-2008.html b/docs/lzma-sdk-2008.html index a53d525093..d112f1cd12 100644 --- a/docs/lzma-sdk-2008.html +++ b/docs/lzma-sdk-2008.html @@ -196,7 +196,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lzma-sdk-2008.json b/docs/lzma-sdk-2008.json index 626032a3d8..41adf88694 100644 --- a/docs/lzma-sdk-2008.json +++ b/docs/lzma-sdk-2008.json @@ -1 +1,15 @@ -{"key": "lzma-sdk-2008", "short_name": "LZMA SDK 2008", "name": "LZMA SDK 2008", "category": "Copyleft Limited", "owner": "Igor Pavlov", "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2008", "ignorable_authors": ["Igor Pavlov"], "ignorable_urls": ["http://www.gnu.org/", "http://www.opensource.org/"]} \ No newline at end of file +{ + "key": "lzma-sdk-2008", + "short_name": "LZMA SDK 2008", + "name": "LZMA SDK 2008", + "category": "Copyleft Limited", + "owner": "Igor Pavlov", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2008", + "ignorable_authors": [ + "Igor Pavlov" + ], + "ignorable_urls": [ + "http://www.gnu.org/", + "http://www.opensource.org/" + ] +} \ No newline at end of file diff --git a/docs/lzma-sdk-9.11-to-9.20.LICENSE b/docs/lzma-sdk-9.11-to-9.20.LICENSE new file mode 100644 index 0000000000..17aa646e2c --- /dev/null +++ b/docs/lzma-sdk-9.11-to-9.20.LICENSE @@ -0,0 +1,20 @@ +--- +key: lzma-sdk-9.11-to-9.20 +short_name: LZMA SDK License (versions 9.11 to 9.20) +name: LZMA SDK License (versions 9.11 to 9.20) +category: Public Domain +owner: Igor Pavlov +spdx_license_key: LZMA-SDK-9.11-to-9.20 +other_urls: + - https://www.7-zip.org/sdk.html + - https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/ +--- + +LICENSE +------- + +LZMA SDK is written and placed in the public domain by Igor Pavlov. + +Some code in LZMA is based on public domain code from another developers: + 1) PPMd var.H (2001): Dmitry Shkarin + 2) SHA-256: Wei Dai (Crypto++ library) \ No newline at end of file diff --git a/docs/lzma-sdk-9.11-to-9.20.html b/docs/lzma-sdk-9.11-to-9.20.html new file mode 100644 index 0000000000..8f67a7f5fa --- /dev/null +++ b/docs/lzma-sdk-9.11-to-9.20.html @@ -0,0 +1,159 @@ + + + + + + LicenseDB: lzma-sdk-9.11-to-9.20 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + lzma-sdk-9.11-to-9.20 + +
+ +
short_name
+
+ + LZMA SDK License (versions 9.11 to 9.20) + +
+ +
name
+
+ + LZMA SDK License (versions 9.11 to 9.20) + +
+ +
category
+
+ + Public Domain + +
+ +
owner
+
+ + Igor Pavlov + +
+ +
spdx_license_key
+
+ + LZMA-SDK-9.11-to-9.20 + +
+ +
other_urls
+
+ + + +
+ +
+
license_text
+
LICENSE
+-------
+
+LZMA SDK is written and placed in the public domain by Igor Pavlov.
+
+Some code in LZMA is based on public domain code from another developers:
+  1) PPMd var.H (2001): Dmitry Shkarin
+  2) SHA-256: Wei Dai (Crypto++ library)
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/lzma-sdk-9.11-to-9.20.json b/docs/lzma-sdk-9.11-to-9.20.json new file mode 100644 index 0000000000..733b525a14 --- /dev/null +++ b/docs/lzma-sdk-9.11-to-9.20.json @@ -0,0 +1,12 @@ +{ + "key": "lzma-sdk-9.11-to-9.20", + "short_name": "LZMA SDK License (versions 9.11 to 9.20)", + "name": "LZMA SDK License (versions 9.11 to 9.20)", + "category": "Public Domain", + "owner": "Igor Pavlov", + "spdx_license_key": "LZMA-SDK-9.11-to-9.20", + "other_urls": [ + "https://www.7-zip.org/sdk.html", + "https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/" + ] +} \ No newline at end of file diff --git a/docs/lzma-sdk-9.11-to-9.20.yml b/docs/lzma-sdk-9.11-to-9.20.yml new file mode 100644 index 0000000000..2b728f6c73 --- /dev/null +++ b/docs/lzma-sdk-9.11-to-9.20.yml @@ -0,0 +1,9 @@ +key: lzma-sdk-9.11-to-9.20 +short_name: LZMA SDK License (versions 9.11 to 9.20) +name: LZMA SDK License (versions 9.11 to 9.20) +category: Public Domain +owner: Igor Pavlov +spdx_license_key: LZMA-SDK-9.11-to-9.20 +other_urls: + - https://www.7-zip.org/sdk.html + - https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/ diff --git a/docs/lzma-sdk-9.22.LICENSE b/docs/lzma-sdk-9.22.LICENSE new file mode 100644 index 0000000000..b19f7e39d8 --- /dev/null +++ b/docs/lzma-sdk-9.22.LICENSE @@ -0,0 +1,27 @@ +--- +key: lzma-sdk-9.22 +short_name: LZMA SDK License (versions 9.22 and beyond) +name: LZMA SDK License (versions 9.22 and beyond) +category: Public Domain +owner: Igor Pavlov +spdx_license_key: LZMA-SDK-9.22 +other_urls: + - https://www.7-zip.org/sdk.html + - https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/ +--- + +LICENSE +------- + +LZMA SDK is written and placed in the public domain by Igor Pavlov. + +Some code in LZMA SDK is based on public domain code from another developers: + 1) PPMd var.H (2001): Dmitry Shkarin + 2) SHA-256: Wei Dai (Crypto++ library) + +Anyone is free to copy, modify, publish, use, compile, sell, or distribute the +original LZMA SDK code, either in source code form or as a compiled binary, for +any purpose, commercial or non-commercial, and by any means. + +LZMA SDK code is compatible with open source licenses, for example, you can +include it to GNU GPL or GNU LGPL code. \ No newline at end of file diff --git a/docs/lzma-sdk-9.22.html b/docs/lzma-sdk-9.22.html new file mode 100644 index 0000000000..bdb68ac23c --- /dev/null +++ b/docs/lzma-sdk-9.22.html @@ -0,0 +1,166 @@ + + + + + + LicenseDB: lzma-sdk-9.22 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + lzma-sdk-9.22 + +
+ +
short_name
+
+ + LZMA SDK License (versions 9.22 and beyond) + +
+ +
name
+
+ + LZMA SDK License (versions 9.22 and beyond) + +
+ +
category
+
+ + Public Domain + +
+ +
owner
+
+ + Igor Pavlov + +
+ +
spdx_license_key
+
+ + LZMA-SDK-9.22 + +
+ +
other_urls
+
+ + + +
+ +
+
license_text
+
LICENSE
+-------
+
+LZMA SDK is written and placed in the public domain by Igor Pavlov.
+
+Some code in LZMA SDK is based on public domain code from another developers:
+  1) PPMd var.H (2001): Dmitry Shkarin
+  2) SHA-256: Wei Dai (Crypto++ library)
+
+Anyone is free to copy, modify, publish, use, compile, sell, or distribute the
+original LZMA SDK code, either in source code form or as a compiled binary, for
+any purpose, commercial or non-commercial, and by any means.
+
+LZMA SDK code is compatible with open source licenses, for example, you can
+include it to GNU GPL or GNU LGPL code.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/lzma-sdk-9.22.json b/docs/lzma-sdk-9.22.json new file mode 100644 index 0000000000..984eee6505 --- /dev/null +++ b/docs/lzma-sdk-9.22.json @@ -0,0 +1,12 @@ +{ + "key": "lzma-sdk-9.22", + "short_name": "LZMA SDK License (versions 9.22 and beyond)", + "name": "LZMA SDK License (versions 9.22 and beyond)", + "category": "Public Domain", + "owner": "Igor Pavlov", + "spdx_license_key": "LZMA-SDK-9.22", + "other_urls": [ + "https://www.7-zip.org/sdk.html", + "https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/" + ] +} \ No newline at end of file diff --git a/docs/lzma-sdk-9.22.yml b/docs/lzma-sdk-9.22.yml new file mode 100644 index 0000000000..933d0854fa --- /dev/null +++ b/docs/lzma-sdk-9.22.yml @@ -0,0 +1,9 @@ +key: lzma-sdk-9.22 +short_name: LZMA SDK License (versions 9.22 and beyond) +name: LZMA SDK License (versions 9.22 and beyond) +category: Public Domain +owner: Igor Pavlov +spdx_license_key: LZMA-SDK-9.22 +other_urls: + - https://www.7-zip.org/sdk.html + - https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/ diff --git a/docs/lzma-sdk-original.LICENSE b/docs/lzma-sdk-original.LICENSE index 6922278f3a..8761bb5aff 100644 --- a/docs/lzma-sdk-original.LICENSE +++ b/docs/lzma-sdk-original.LICENSE @@ -1,3 +1,22 @@ +--- +key: lzma-sdk-original +short_name: LZMA SDK Original +name: LZMA SDK Original +category: Copyleft Limited +owner: Igor Pavlov +homepage_url: http://www.7-zip.org/sdk.html +spdx_license_key: LicenseRef-scancode-lzma-sdk-original +other_urls: + - http://sourceforge.net/projects/sevenzip/ + - http://www.7-zip.org/sdk.html +ignorable_authors: + - Igor Pavlov +ignorable_urls: + - http://www.7-zip.org/support.html + - http://www.gnu.org/ + - http://www.opensource.org/ +--- + LZMA SDK provides the documentation, samples, header files, libraries, and tools you need to develop applications that use LZMA compression. diff --git a/docs/lzma-sdk-original.html b/docs/lzma-sdk-original.html index 42ddd1c0e6..ea7af16fba 100644 --- a/docs/lzma-sdk-original.html +++ b/docs/lzma-sdk-original.html @@ -217,7 +217,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lzma-sdk-original.json b/docs/lzma-sdk-original.json index b9e5e6c00a..8d13dedbda 100644 --- a/docs/lzma-sdk-original.json +++ b/docs/lzma-sdk-original.json @@ -1 +1,21 @@ -{"key": "lzma-sdk-original", "short_name": "LZMA SDK Original", "name": "LZMA SDK Original", "category": "Copyleft Limited", "owner": "Igor Pavlov", "homepage_url": "http://www.7-zip.org/sdk.html", "spdx_license_key": "LicenseRef-scancode-lzma-sdk-original", "other_urls": ["http://sourceforge.net/projects/sevenzip/", "http://www.7-zip.org/sdk.html"], "ignorable_authors": ["Igor Pavlov"], "ignorable_urls": ["http://www.7-zip.org/support.html", "http://www.gnu.org/", "http://www.opensource.org/"]} \ No newline at end of file +{ + "key": "lzma-sdk-original", + "short_name": "LZMA SDK Original", + "name": "LZMA SDK Original", + "category": "Copyleft Limited", + "owner": "Igor Pavlov", + "homepage_url": "http://www.7-zip.org/sdk.html", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-original", + "other_urls": [ + "http://sourceforge.net/projects/sevenzip/", + "http://www.7-zip.org/sdk.html" + ], + "ignorable_authors": [ + "Igor Pavlov" + ], + "ignorable_urls": [ + "http://www.7-zip.org/support.html", + "http://www.gnu.org/", + "http://www.opensource.org/" + ] +} \ No newline at end of file diff --git a/docs/lzma-sdk-pd.LICENSE b/docs/lzma-sdk-pd.LICENSE index 08226ab7fb..d517f46b3f 100644 --- a/docs/lzma-sdk-pd.LICENSE +++ b/docs/lzma-sdk-pd.LICENSE @@ -1,3 +1,12 @@ +--- +key: lzma-sdk-pd +short_name: LZMA SDK Public Domain +name: LZMA SDK Public Domain +category: Public Domain +owner: Igor Pavlov +spdx_license_key: LicenseRef-scancode-lzma-sdk-pd +--- + LICENSE ------- diff --git a/docs/lzma-sdk-pd.html b/docs/lzma-sdk-pd.html index df4d03deb7..ec185ab479 100644 --- a/docs/lzma-sdk-pd.html +++ b/docs/lzma-sdk-pd.html @@ -123,7 +123,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/lzma-sdk-pd.json b/docs/lzma-sdk-pd.json index d867e39eee..ef678542a0 100644 --- a/docs/lzma-sdk-pd.json +++ b/docs/lzma-sdk-pd.json @@ -1 +1,8 @@ -{"key": "lzma-sdk-pd", "short_name": "LZMA SDK Public Domain", "name": "LZMA SDK Public Domain", "category": "Public Domain", "owner": "Igor Pavlov", "spdx_license_key": "LicenseRef-scancode-lzma-sdk-pd"} \ No newline at end of file +{ + "key": "lzma-sdk-pd", + "short_name": "LZMA SDK Public Domain", + "name": "LZMA SDK Public Domain", + "category": "Public Domain", + "owner": "Igor Pavlov", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-pd" +} \ No newline at end of file diff --git a/docs/m-plus.LICENSE b/docs/m-plus.LICENSE index 5bd3a91732..50a7fc6bb6 100644 --- a/docs/m-plus.LICENSE +++ b/docs/m-plus.LICENSE @@ -1,4 +1,21 @@ +--- +key: m-plus +short_name: M+ Fonts license +name: M+ Fonts license +category: Permissive +owner: Coji Morishita +homepage_url: https://mplusfonts.github.io +spdx_license_key: mplus +other_spdx_license_keys: + - LicenseRef-scancode-m-plus +faq_url: https://en.wikipedia.org/wiki/M%2B_FONTS +other_urls: + - http://mplus-fonts.osdn.jp + - https://github.com/coz-m/MPLUS_FONTS + - https://fedoraproject.org/wiki/Licensing:Mplus?rd=Licensing/mplus +--- + These fonts are free software. Unlimited permission is granted to use, copy, and distribute them, with or without modification, either commercially or noncommercially. -THESE FONTS ARE PROVIDED "AS IS" WITHOUT WARRANTY. \ No newline at end of file +THESE FONTS ARE PROVIDED "AS IS" WITHOUT WARRANTY. \ No newline at end of file diff --git a/docs/m-plus.html b/docs/m-plus.html index fd1b88ae42..e539da45ec 100644 --- a/docs/m-plus.html +++ b/docs/m-plus.html @@ -143,7 +143,7 @@
These fonts are free software.
 Unlimited permission is granted to use, copy, and distribute them, with or
 without modification, either commercially or noncommercially.
-THESE FONTS ARE PROVIDED "AS IS" WITHOUT WARRANTY. 
+THESE FONTS ARE PROVIDED "AS IS" WITHOUT WARRANTY.
@@ -155,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/m-plus.json b/docs/m-plus.json index 37539e9a86..0c80c5832a 100644 --- a/docs/m-plus.json +++ b/docs/m-plus.json @@ -1 +1,18 @@ -{"key": "m-plus", "short_name": "M+ Fonts license", "name": "M+ Fonts license", "category": "Permissive", "owner": "Coji Morishita", "homepage_url": "https://mplusfonts.github.io", "spdx_license_key": "mplus", "other_spdx_license_keys": ["LicenseRef-scancode-m-plus"], "faq_url": "https://en.wikipedia.org/wiki/M%2B_FONTS", "other_urls": ["http://mplus-fonts.osdn.jp", "https://github.com/coz-m/MPLUS_FONTS", "https://fedoraproject.org/wiki/Licensing:Mplus?rd=Licensing/mplus"]} \ No newline at end of file +{ + "key": "m-plus", + "short_name": "M+ Fonts license", + "name": "M+ Fonts license", + "category": "Permissive", + "owner": "Coji Morishita", + "homepage_url": "https://mplusfonts.github.io", + "spdx_license_key": "mplus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-m-plus" + ], + "faq_url": "https://en.wikipedia.org/wiki/M%2B_FONTS", + "other_urls": [ + "http://mplus-fonts.osdn.jp", + "https://github.com/coz-m/MPLUS_FONTS", + "https://fedoraproject.org/wiki/Licensing:Mplus?rd=Licensing/mplus" + ] +} \ No newline at end of file diff --git a/docs/madwifi-dual.LICENSE b/docs/madwifi-dual.LICENSE index c02aee4981..80bbb46c45 100644 --- a/docs/madwifi-dual.LICENSE +++ b/docs/madwifi-dual.LICENSE @@ -1,3 +1,14 @@ +--- +key: madwifi-dual +is_deprecated: yes +short_name: MadWifi Dual BSD-GPL +name: MadWifi Dual BSD-GPL +category: Permissive +owner: MadWifi +homepage_url: https://github.com/puzzlet/madwifi/blob/master/include/compat.h +notes: composite replaced by expression of intel-bsd OR gpl-2.0 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/madwifi-dual.html b/docs/madwifi-dual.html index 4ef56c5061..2887d7c0be 100644 --- a/docs/madwifi-dual.html +++ b/docs/madwifi-dual.html @@ -163,7 +163,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/madwifi-dual.json b/docs/madwifi-dual.json index d680567675..88e12bfad4 100644 --- a/docs/madwifi-dual.json +++ b/docs/madwifi-dual.json @@ -1 +1,10 @@ -{"key": "madwifi-dual", "is_deprecated": true, "short_name": "MadWifi Dual BSD-GPL", "name": "MadWifi Dual BSD-GPL", "category": "Permissive", "owner": "MadWifi", "homepage_url": "https://github.com/puzzlet/madwifi/blob/master/include/compat.h", "notes": "composite replaced by expression of intel-bsd OR gpl-2.0"} \ No newline at end of file +{ + "key": "madwifi-dual", + "is_deprecated": true, + "short_name": "MadWifi Dual BSD-GPL", + "name": "MadWifi Dual BSD-GPL", + "category": "Permissive", + "owner": "MadWifi", + "homepage_url": "https://github.com/puzzlet/madwifi/blob/master/include/compat.h", + "notes": "composite replaced by expression of intel-bsd OR gpl-2.0" +} \ No newline at end of file diff --git a/docs/magpie-exception-1.0.LICENSE b/docs/magpie-exception-1.0.LICENSE index f81b3ab305..efeaeeb5e1 100644 --- a/docs/magpie-exception-1.0.LICENSE +++ b/docs/magpie-exception-1.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: magpie-exception-1.0 +short_name: MAgPIE Exception to AGPL 3.0 +name: MAgPIE License Exception to AGPL 3.0 +category: Copyleft +owner: MAgPIE +homepage_url: https://github.com/magpiemodel/magpie/blob/master/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-magpie-exception-1.0 +--- + MAgPIE LICENSE EXCEPTION Version 1.0 diff --git a/docs/magpie-exception-1.0.html b/docs/magpie-exception-1.0.html index dedbce9ec4..e9ce77dfab 100644 --- a/docs/magpie-exception-1.0.html +++ b/docs/magpie-exception-1.0.html @@ -161,7 +161,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/magpie-exception-1.0.json b/docs/magpie-exception-1.0.json index 15b8a7ad1c..7a445d3ad3 100644 --- a/docs/magpie-exception-1.0.json +++ b/docs/magpie-exception-1.0.json @@ -1 +1,10 @@ -{"key": "magpie-exception-1.0", "short_name": "MAgPIE Exception to AGPL 3.0", "name": "MAgPIE License Exception to AGPL 3.0", "category": "Copyleft", "owner": "MAgPIE", "homepage_url": "https://github.com/magpiemodel/magpie/blob/master/LICENSE", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-magpie-exception-1.0"} \ No newline at end of file +{ + "key": "magpie-exception-1.0", + "short_name": "MAgPIE Exception to AGPL 3.0", + "name": "MAgPIE License Exception to AGPL 3.0", + "category": "Copyleft", + "owner": "MAgPIE", + "homepage_url": "https://github.com/magpiemodel/magpie/blob/master/LICENSE", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-magpie-exception-1.0" +} \ No newline at end of file diff --git a/docs/make-human-exception.LICENSE b/docs/make-human-exception.LICENSE index c9c36e47ef..5e2268ed48 100644 --- a/docs/make-human-exception.LICENSE +++ b/docs/make-human-exception.LICENSE @@ -1,3 +1,17 @@ +--- +key: make-human-exception +short_name: MakeHuman License +name: MakeHuman License +category: Permissive +owner: MakeHuman Project +homepage_url: http://www.makehuman.org/index.php +is_exception: yes +spdx_license_key: LicenseRef-scancode-make-human-exception +text_urls: + - http://www.makehuman.org/license.php +ignorable_urls: + - http://www.makehuman.org/content/license_explanation.html +--- MakeHuman output GPL exception diff --git a/docs/make-human-exception.html b/docs/make-human-exception.html index 955045a27f..b391a4392a 100644 --- a/docs/make-human-exception.html +++ b/docs/make-human-exception.html @@ -140,8 +140,7 @@
license_text
-

-MakeHuman output GPL exception
+    
MakeHuman output GPL exception
 
 ==================================
 
@@ -175,7 +174,8 @@
       AboutCode
     

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/make-human-exception.json b/docs/make-human-exception.json index 9dd4397b08..15842df3fc 100644 --- a/docs/make-human-exception.json +++ b/docs/make-human-exception.json @@ -1 +1,16 @@ -{"key": "make-human-exception", "short_name": "MakeHuman License", "name": "MakeHuman License", "category": "Permissive", "owner": "MakeHuman Project", "homepage_url": "http://www.makehuman.org/index.php", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-make-human-exception", "text_urls": ["http://www.makehuman.org/license.php"], "ignorable_urls": ["http://www.makehuman.org/content/license_explanation.html"]} \ No newline at end of file +{ + "key": "make-human-exception", + "short_name": "MakeHuman License", + "name": "MakeHuman License", + "category": "Permissive", + "owner": "MakeHuman Project", + "homepage_url": "http://www.makehuman.org/index.php", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-make-human-exception", + "text_urls": [ + "http://www.makehuman.org/license.php" + ], + "ignorable_urls": [ + "http://www.makehuman.org/content/license_explanation.html" + ] +} \ No newline at end of file diff --git a/docs/makeindex.LICENSE b/docs/makeindex.LICENSE index adab20c8b4..a1fcd3537f 100644 --- a/docs/makeindex.LICENSE +++ b/docs/makeindex.LICENSE @@ -1,3 +1,16 @@ +--- +key: makeindex +short_name: MakeIndex Distribution Notice +name: MakeIndex Distribution Notice +category: Copyleft +owner: MakeIndex Project +homepage_url: https://fedoraproject.org/wiki/Licensing/MakeIndex +notes: | + Per Fedora, this license is free but GPL-incompatible, and was found in the + MakeIndex component inside TeXLive. +spdx_license_key: MakeIndex +--- + MakeIndex Distribution Notice Permission is hereby granted to make and distribute original copies of this diff --git a/docs/makeindex.html b/docs/makeindex.html index 7c56cf5625..e267976a71 100644 --- a/docs/makeindex.html +++ b/docs/makeindex.html @@ -161,7 +161,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/makeindex.json b/docs/makeindex.json index 4a07588408..b44ac0eaa9 100644 --- a/docs/makeindex.json +++ b/docs/makeindex.json @@ -1 +1,10 @@ -{"key": "makeindex", "short_name": "MakeIndex Distribution Notice", "name": "MakeIndex Distribution Notice", "category": "Copyleft", "owner": "MakeIndex Project", "homepage_url": "https://fedoraproject.org/wiki/Licensing/MakeIndex", "notes": "Per Fedora, this license is free but GPL-incompatible, and was found in the\nMakeIndex component inside TeXLive.\n", "spdx_license_key": "MakeIndex"} \ No newline at end of file +{ + "key": "makeindex", + "short_name": "MakeIndex Distribution Notice", + "name": "MakeIndex Distribution Notice", + "category": "Copyleft", + "owner": "MakeIndex Project", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/MakeIndex", + "notes": "Per Fedora, this license is free but GPL-incompatible, and was found in the\nMakeIndex component inside TeXLive.\n", + "spdx_license_key": "MakeIndex" +} \ No newline at end of file diff --git a/docs/mame.LICENSE b/docs/mame.LICENSE index d31857212a..b9af05f7a2 100644 --- a/docs/mame.LICENSE +++ b/docs/mame.LICENSE @@ -1,3 +1,13 @@ +--- +key: mame +short_name: MAME license +name: MAME license +category: Free Restricted +owner: Nicola Salmoria +homepage_url: https://web-beta.archive.org/web/20100311021704/http://mamedev.org/legal.html +spdx_license_key: LicenseRef-scancode-mame +--- + Redistribution and use of the MAME code or any derivative works are permitted provided that the following conditions are met: diff --git a/docs/mame.html b/docs/mame.html index d1c6adf99d..406807f309 100644 --- a/docs/mame.html +++ b/docs/mame.html @@ -156,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mame.json b/docs/mame.json index 9f6f420a3c..7fae7200ce 100644 --- a/docs/mame.json +++ b/docs/mame.json @@ -1 +1,9 @@ -{"key": "mame", "short_name": "MAME license", "name": "MAME license", "category": "Free Restricted", "owner": "Nicola Salmoria", "homepage_url": "https://web-beta.archive.org/web/20100311021704/http://mamedev.org/legal.html", "spdx_license_key": "LicenseRef-scancode-mame"} \ No newline at end of file +{ + "key": "mame", + "short_name": "MAME license", + "name": "MAME license", + "category": "Free Restricted", + "owner": "Nicola Salmoria", + "homepage_url": "https://web-beta.archive.org/web/20100311021704/http://mamedev.org/legal.html", + "spdx_license_key": "LicenseRef-scancode-mame" +} \ No newline at end of file diff --git a/docs/manfred-klein-fonts-tos.LICENSE b/docs/manfred-klein-fonts-tos.LICENSE index 5aa6d06d45..10226d2c43 100644 --- a/docs/manfred-klein-fonts-tos.LICENSE +++ b/docs/manfred-klein-fonts-tos.LICENSE @@ -1,3 +1,14 @@ +--- +key: manfred-klein-fonts-tos +short_name: Manfred Klein Fonts TOS +name: Manfred Klein Fonts TOS +category: Free Restricted +owner: Manfred Klein +spdx_license_key: LicenseRef-scancode-manfred-klein-fonts-tos +ignorable_authors: + - Manfred Klein +--- + Simple Terms of Use Manfred’s fonts are free for private and charity use. They are even free for commercial use – but if there’s any profit, pls make a donation to organizations like Doctors Without Borders. diff --git a/docs/manfred-klein-fonts-tos.html b/docs/manfred-klein-fonts-tos.html index d87bc0a8b1..7d92e6ce2b 100644 --- a/docs/manfred-klein-fonts-tos.html +++ b/docs/manfred-klein-fonts-tos.html @@ -134,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/manfred-klein-fonts-tos.json b/docs/manfred-klein-fonts-tos.json index d12878aa7c..48aca65a92 100644 --- a/docs/manfred-klein-fonts-tos.json +++ b/docs/manfred-klein-fonts-tos.json @@ -1 +1,11 @@ -{"key": "manfred-klein-fonts-tos", "short_name": "Manfred Klein Fonts TOS", "name": "Manfred Klein Fonts TOS", "category": "Free Restricted", "owner": "Manfred Klein", "spdx_license_key": "LicenseRef-scancode-manfred-klein-fonts-tos", "ignorable_authors": ["Manfred Klein"]} \ No newline at end of file +{ + "key": "manfred-klein-fonts-tos", + "short_name": "Manfred Klein Fonts TOS", + "name": "Manfred Klein Fonts TOS", + "category": "Free Restricted", + "owner": "Manfred Klein", + "spdx_license_key": "LicenseRef-scancode-manfred-klein-fonts-tos", + "ignorable_authors": [ + "Manfred Klein" + ] +} \ No newline at end of file diff --git a/docs/mapbox-tos-2021.LICENSE b/docs/mapbox-tos-2021.LICENSE index 9127920c92..badef1bc10 100644 --- a/docs/mapbox-tos-2021.LICENSE +++ b/docs/mapbox-tos-2021.LICENSE @@ -1,3 +1,18 @@ +--- +key: mapbox-tos-2021 +short_name: Mapbox TOS 2021 +name: Mapbox Terms of Service 2021 +category: Commercial +owner: Mapbox +homepage_url: https://www.mapbox.com/legal/tos/ +spdx_license_key: LicenseRef-scancode-mapbox-tos-2021 +ignorable_urls: + - http://www.mapbox.com/ + - http://www.mapbox.com/pricing +ignorable_emails: + - copyright@mapbox.com +--- + Terms of service Welcome to the future of mapping! We're glad you're here. diff --git a/docs/mapbox-tos-2021.html b/docs/mapbox-tos-2021.html index 264e34877e..901f4a7784 100644 --- a/docs/mapbox-tos-2021.html +++ b/docs/mapbox-tos-2021.html @@ -234,7 +234,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mapbox-tos-2021.json b/docs/mapbox-tos-2021.json index 7b517b5291..02fdc9f285 100644 --- a/docs/mapbox-tos-2021.json +++ b/docs/mapbox-tos-2021.json @@ -1 +1,16 @@ -{"key": "mapbox-tos-2021", "short_name": "Mapbox TOS 2021", "name": "Mapbox Terms of Service 2021", "category": "Commercial", "owner": "Mapbox", "homepage_url": "https://www.mapbox.com/legal/tos/", "spdx_license_key": "LicenseRef-scancode-mapbox-tos-2021", "ignorable_urls": ["http://www.mapbox.com/", "http://www.mapbox.com/pricing"], "ignorable_emails": ["copyright@mapbox.com"]} \ No newline at end of file +{ + "key": "mapbox-tos-2021", + "short_name": "Mapbox TOS 2021", + "name": "Mapbox Terms of Service 2021", + "category": "Commercial", + "owner": "Mapbox", + "homepage_url": "https://www.mapbox.com/legal/tos/", + "spdx_license_key": "LicenseRef-scancode-mapbox-tos-2021", + "ignorable_urls": [ + "http://www.mapbox.com/", + "http://www.mapbox.com/pricing" + ], + "ignorable_emails": [ + "copyright@mapbox.com" + ] +} \ No newline at end of file diff --git a/docs/markus-kuhn-license.LICENSE b/docs/markus-kuhn-license.LICENSE index 56109abbbf..a99dc56eb2 100644 --- a/docs/markus-kuhn-license.LICENSE +++ b/docs/markus-kuhn-license.LICENSE @@ -1,3 +1,17 @@ +--- +key: markus-kuhn-license +short_name: Markus Kuhn License +name: Markus Kuhn License +category: Permissive +owner: Markus Kuhn +homepage_url: https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c +spdx_license_key: LicenseRef-scancode-markus-kuhn-license +text_urls: + - https://www.cl.cam.ac.uk/~mgk25/ucs/langinfo.c +other_urls: + - https://github.com/search?q=%22Permission+to+use%2C+copy%2C+modify%2C+and+distribute+this+software+for+any+purpose+and+without+fee+is+hereby+granted.%22+%22The+author+disclaims+all+warranties+with+regard+to+this+software.%22&type=code +--- + Permission to use, copy, modify, and distribute this software for any purpose and without fee is hereby granted. The author disclaims all warranties with regard to this software. \ No newline at end of file diff --git a/docs/markus-kuhn-license.html b/docs/markus-kuhn-license.html index 1f590ae7d2..7ce2a3b2de 100644 --- a/docs/markus-kuhn-license.html +++ b/docs/markus-kuhn-license.html @@ -147,7 +147,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/markus-kuhn-license.json b/docs/markus-kuhn-license.json index 24f7f85d09..1b6d2600c2 100644 --- a/docs/markus-kuhn-license.json +++ b/docs/markus-kuhn-license.json @@ -1 +1,15 @@ -{"key": "markus-kuhn-license", "short_name": "Markus Kuhn License", "name": "Markus Kuhn License", "category": "Permissive", "owner": "Markus Kuhn", "homepage_url": "https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c", "spdx_license_key": "LicenseRef-scancode-markus-kuhn-license", "text_urls": ["https://www.cl.cam.ac.uk/~mgk25/ucs/langinfo.c"], "other_urls": ["https://github.com/search?q=%22Permission+to+use%2C+copy%2C+modify%2C+and+distribute+this+software+for+any+purpose+and+without+fee+is+hereby+granted.%22+%22The+author+disclaims+all+warranties+with+regard+to+this+software.%22&type=code"]} \ No newline at end of file +{ + "key": "markus-kuhn-license", + "short_name": "Markus Kuhn License", + "name": "Markus Kuhn License", + "category": "Permissive", + "owner": "Markus Kuhn", + "homepage_url": "https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c", + "spdx_license_key": "LicenseRef-scancode-markus-kuhn-license", + "text_urls": [ + "https://www.cl.cam.ac.uk/~mgk25/ucs/langinfo.c" + ], + "other_urls": [ + "https://github.com/search?q=%22Permission+to+use%2C+copy%2C+modify%2C+and+distribute+this+software+for+any+purpose+and+without+fee+is+hereby+granted.%22+%22The+author+disclaims+all+warranties+with+regard+to+this+software.%22&type=code" + ] +} \ No newline at end of file diff --git a/docs/martin-birgmeier.LICENSE b/docs/martin-birgmeier.LICENSE index 8976f61926..cae69bd34b 100644 --- a/docs/martin-birgmeier.LICENSE +++ b/docs/martin-birgmeier.LICENSE @@ -1,3 +1,15 @@ +--- +key: martin-birgmeier +short_name: Martin Bergmeier License +name: Martin Bergmeier License +category: Permissive +owner: Martin Bergmeier +homepage_url: https://chromium.googlesource.com/native_client/nacl-newlib/+/590b76526a1ff92504bf20234610043fd45ae034/newlib/libc/stdlib/rand48.h +spdx_license_key: LicenseRef-scancode-martin-birgmeier +text_urls: + - https://chromium.googlesource.com/native_client/nacl-newlib/+/590b76526a1ff92504bf20234610043fd45ae034/newlib/libc/stdlib/rand48.h +--- + You may redistribute unmodified or modified versions of this source code provided that the above copyright notice and this and the following conditions are retained. diff --git a/docs/martin-birgmeier.html b/docs/martin-birgmeier.html index 7b179c025a..1b14580a48 100644 --- a/docs/martin-birgmeier.html +++ b/docs/martin-birgmeier.html @@ -142,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/martin-birgmeier.json b/docs/martin-birgmeier.json index 992b844d84..56ff2242cb 100644 --- a/docs/martin-birgmeier.json +++ b/docs/martin-birgmeier.json @@ -1 +1,12 @@ -{"key": "martin-birgmeier", "short_name": "Martin Bergmeier License", "name": "Martin Bergmeier License", "category": "Permissive", "owner": "Martin Bergmeier", "homepage_url": "https://chromium.googlesource.com/native_client/nacl-newlib/+/590b76526a1ff92504bf20234610043fd45ae034/newlib/libc/stdlib/rand48.h", "spdx_license_key": "LicenseRef-scancode-martin-birgmeier", "text_urls": ["https://chromium.googlesource.com/native_client/nacl-newlib/+/590b76526a1ff92504bf20234610043fd45ae034/newlib/libc/stdlib/rand48.h"]} \ No newline at end of file +{ + "key": "martin-birgmeier", + "short_name": "Martin Bergmeier License", + "name": "Martin Bergmeier License", + "category": "Permissive", + "owner": "Martin Bergmeier", + "homepage_url": "https://chromium.googlesource.com/native_client/nacl-newlib/+/590b76526a1ff92504bf20234610043fd45ae034/newlib/libc/stdlib/rand48.h", + "spdx_license_key": "LicenseRef-scancode-martin-birgmeier", + "text_urls": [ + "https://chromium.googlesource.com/native_client/nacl-newlib/+/590b76526a1ff92504bf20234610043fd45ae034/newlib/libc/stdlib/rand48.h" + ] +} \ No newline at end of file diff --git a/docs/marvell-firmware-2019.LICENSE b/docs/marvell-firmware-2019.LICENSE index 44c1077ad9..44e1a4069c 100644 --- a/docs/marvell-firmware-2019.LICENSE +++ b/docs/marvell-firmware-2019.LICENSE @@ -1,3 +1,13 @@ +--- +key: marvell-firmware-2019 +short_name: Marvell Firmware License 2019 +name: Marvell Firmware License 2019 +category: Proprietary Free +owner: Marvell +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.Marvell +spdx_license_key: LicenseRef-scancode-marvell-firmware-2019 +--- + Redistribution and use in binary form is permitted provided that the following conditions are met: diff --git a/docs/marvell-firmware-2019.html b/docs/marvell-firmware-2019.html index 23995bcac5..880dca0948 100644 --- a/docs/marvell-firmware-2019.html +++ b/docs/marvell-firmware-2019.html @@ -146,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/marvell-firmware-2019.json b/docs/marvell-firmware-2019.json index 6658bf5141..ae0c104739 100644 --- a/docs/marvell-firmware-2019.json +++ b/docs/marvell-firmware-2019.json @@ -1 +1,9 @@ -{"key": "marvell-firmware-2019", "short_name": "Marvell Firmware License 2019", "name": "Marvell Firmware License 2019", "category": "Proprietary Free", "owner": "Marvell", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.Marvell", "spdx_license_key": "LicenseRef-scancode-marvell-firmware-2019"} \ No newline at end of file +{ + "key": "marvell-firmware-2019", + "short_name": "Marvell Firmware License 2019", + "name": "Marvell Firmware License 2019", + "category": "Proprietary Free", + "owner": "Marvell", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.Marvell", + "spdx_license_key": "LicenseRef-scancode-marvell-firmware-2019" +} \ No newline at end of file diff --git a/docs/marvell-firmware.LICENSE b/docs/marvell-firmware.LICENSE index c5b0ef2e00..c5c4e5b53f 100644 --- a/docs/marvell-firmware.LICENSE +++ b/docs/marvell-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: marvell-firmware +short_name: Marvell Firmware License +name: Marvell Firmware License +category: Proprietary Free +owner: Marvell +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.OLPC +spdx_license_key: LicenseRef-scancode-marvell-firmware +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/docs/marvell-firmware.html b/docs/marvell-firmware.html index 293b466440..231e4d2f7d 100644 --- a/docs/marvell-firmware.html +++ b/docs/marvell-firmware.html @@ -156,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/marvell-firmware.json b/docs/marvell-firmware.json index 5689efe7e4..f9f922cd7e 100644 --- a/docs/marvell-firmware.json +++ b/docs/marvell-firmware.json @@ -1 +1,9 @@ -{"key": "marvell-firmware", "short_name": "Marvell Firmware License", "name": "Marvell Firmware License", "category": "Proprietary Free", "owner": "Marvell", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.OLPC", "spdx_license_key": "LicenseRef-scancode-marvell-firmware"} \ No newline at end of file +{ + "key": "marvell-firmware", + "short_name": "Marvell Firmware License", + "name": "Marvell Firmware License", + "category": "Proprietary Free", + "owner": "Marvell", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.OLPC", + "spdx_license_key": "LicenseRef-scancode-marvell-firmware" +} \ No newline at end of file diff --git a/docs/matt-gallagher-attribution.LICENSE b/docs/matt-gallagher-attribution.LICENSE index f89c0cdeae..d8c4b7580b 100644 --- a/docs/matt-gallagher-attribution.LICENSE +++ b/docs/matt-gallagher-attribution.LICENSE @@ -1,3 +1,15 @@ +--- +key: matt-gallagher-attribution +short_name: Matt Gallagher Attribution License +name: Matt Gallagher Attribution License +category: Permissive +owner: Matt Gallagher +spdx_license_key: LicenseRef-scancode-matt-gallagher-attribution +text_urls: + - https://gist.github.com/wiliams-xu/508933756ca83c49a865 + - https://github.com/DJBen/Werewolves-of-Millers-Hollows-For-Host/blob/master/Werewolf/ReorderingTableView/ATSDragToReorderTableViewController.h +--- + Permission is given to use this source code file, free of charge, in any project, commercial or otherwise, entirely at your risk, with the condition that any redistribution (in part or whole) of source code must retain diff --git a/docs/matt-gallagher-attribution.html b/docs/matt-gallagher-attribution.html index 4c43c3e237..ed9c6e0ba5 100644 --- a/docs/matt-gallagher-attribution.html +++ b/docs/matt-gallagher-attribution.html @@ -133,7 +133,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/matt-gallagher-attribution.json b/docs/matt-gallagher-attribution.json index ea076411ad..dde86369f9 100644 --- a/docs/matt-gallagher-attribution.json +++ b/docs/matt-gallagher-attribution.json @@ -1 +1,12 @@ -{"key": "matt-gallagher-attribution", "short_name": "Matt Gallagher Attribution License", "name": "Matt Gallagher Attribution License", "category": "Permissive", "owner": "Matt Gallagher", "spdx_license_key": "LicenseRef-scancode-matt-gallagher-attribution", "text_urls": ["https://gist.github.com/wiliams-xu/508933756ca83c49a865", "https://github.com/DJBen/Werewolves-of-Millers-Hollows-For-Host/blob/master/Werewolf/ReorderingTableView/ATSDragToReorderTableViewController.h"]} \ No newline at end of file +{ + "key": "matt-gallagher-attribution", + "short_name": "Matt Gallagher Attribution License", + "name": "Matt Gallagher Attribution License", + "category": "Permissive", + "owner": "Matt Gallagher", + "spdx_license_key": "LicenseRef-scancode-matt-gallagher-attribution", + "text_urls": [ + "https://gist.github.com/wiliams-xu/508933756ca83c49a865", + "https://github.com/DJBen/Werewolves-of-Millers-Hollows-For-Host/blob/master/Werewolf/ReorderingTableView/ATSDragToReorderTableViewController.h" + ] +} \ No newline at end of file diff --git a/docs/matthew-kwan.LICENSE b/docs/matthew-kwan.LICENSE index a721320490..92c87aa62c 100644 --- a/docs/matthew-kwan.LICENSE +++ b/docs/matthew-kwan.LICENSE @@ -1,2 +1,15 @@ +--- +key: matthew-kwan +short_name: Matthew Kwan License +name: Matthew Kwan License +category: Permissive +owner: Matthew Kwan +homepage_url: http://www.darkside.com.au/bitslice/ +spdx_license_key: LicenseRef-scancode-matthew-kwan +text_urls: + - http://www.darkside.com.au/bitslice/sboxes.c + - http://www.darkside.com.au/bitslice/nonstd.c +--- + This software may be modified, redistributed, and used for any purpose, -so long as its origin is acknowledged. +so long as its origin is acknowledged. \ No newline at end of file diff --git a/docs/matthew-kwan.html b/docs/matthew-kwan.html index 5018848c48..4938217a21 100644 --- a/docs/matthew-kwan.html +++ b/docs/matthew-kwan.html @@ -125,8 +125,7 @@
license_text
This software may be modified, redistributed, and used for any purpose,
-so long as its origin is acknowledged.
-
+so long as its origin is acknowledged.
@@ -138,7 +137,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/matthew-kwan.json b/docs/matthew-kwan.json index 9696c946fa..1f4e5f5551 100644 --- a/docs/matthew-kwan.json +++ b/docs/matthew-kwan.json @@ -1 +1,13 @@ -{"key": "matthew-kwan", "short_name": "Matthew Kwan License", "name": "Matthew Kwan License", "category": "Permissive", "owner": "Matthew Kwan", "homepage_url": "http://www.darkside.com.au/bitslice/", "spdx_license_key": "LicenseRef-scancode-matthew-kwan", "text_urls": ["http://www.darkside.com.au/bitslice/sboxes.c", "http://www.darkside.com.au/bitslice/nonstd.c"]} \ No newline at end of file +{ + "key": "matthew-kwan", + "short_name": "Matthew Kwan License", + "name": "Matthew Kwan License", + "category": "Permissive", + "owner": "Matthew Kwan", + "homepage_url": "http://www.darkside.com.au/bitslice/", + "spdx_license_key": "LicenseRef-scancode-matthew-kwan", + "text_urls": [ + "http://www.darkside.com.au/bitslice/sboxes.c", + "http://www.darkside.com.au/bitslice/nonstd.c" + ] +} \ No newline at end of file diff --git a/docs/matthew-welch-font-license.LICENSE b/docs/matthew-welch-font-license.LICENSE index 026a82e4f8..f77a49da83 100644 --- a/docs/matthew-welch-font-license.LICENSE +++ b/docs/matthew-welch-font-license.LICENSE @@ -1,3 +1,13 @@ +--- +key: matthew-welch-font-license +short_name: Matthew Welch Font License +name: Matthew Welch Font License +category: Free Restricted +owner: Matthew Welch +homepage_url: https://web.archive.org/web/20010201215800/http://home.att.net/~daffy-duck/fonts/fonts.htm +spdx_license_key: LicenseRef-scancode-matthew-welch-font-license +--- + All my fonts are free. You can use them for most personal or business uses you'd like, and I ask for no money. I would, however, like to hear from you. If you use my fonts for something please send me a postcard or e-mail letting me know how you used them. Send me a copy if you can or let me know where I can find your work. You may use these fonts for graphical or printed work, but you may not sell them or include them in a collection of fonts (on CD or otherwise) being sold. You can redistribute these fonts as long as you charge nothing to receive them. diff --git a/docs/matthew-welch-font-license.html b/docs/matthew-welch-font-license.html index c87de9350a..5378b23660 100644 --- a/docs/matthew-welch-font-license.html +++ b/docs/matthew-welch-font-license.html @@ -131,7 +131,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/matthew-welch-font-license.json b/docs/matthew-welch-font-license.json index 5b4b017a72..f6287ede54 100644 --- a/docs/matthew-welch-font-license.json +++ b/docs/matthew-welch-font-license.json @@ -1 +1,9 @@ -{"key": "matthew-welch-font-license", "short_name": "Matthew Welch Font License", "name": "Matthew Welch Font License", "category": "Free Restricted", "owner": "Matthew Welch", "homepage_url": "https://web.archive.org/web/20010201215800/http://home.att.net/~daffy-duck/fonts/fonts.htm", "spdx_license_key": "LicenseRef-scancode-matthew-welch-font-license"} \ No newline at end of file +{ + "key": "matthew-welch-font-license", + "short_name": "Matthew Welch Font License", + "name": "Matthew Welch Font License", + "category": "Free Restricted", + "owner": "Matthew Welch", + "homepage_url": "https://web.archive.org/web/20010201215800/http://home.att.net/~daffy-duck/fonts/fonts.htm", + "spdx_license_key": "LicenseRef-scancode-matthew-welch-font-license" +} \ No newline at end of file diff --git a/docs/mattkruse.LICENSE b/docs/mattkruse.LICENSE index 630d8610bd..a92f293ac3 100644 --- a/docs/mattkruse.LICENSE +++ b/docs/mattkruse.LICENSE @@ -1,3 +1,15 @@ +--- +key: mattkruse +short_name: Matt Kruse License +name: Matt Kruse License +category: Permissive +owner: MattKruse.com +homepage_url: http://www.mattkruse.com/ +spdx_license_key: LicenseRef-scancode-mattkruse +text_urls: + - http://www.mattkruse.com/ +--- + NOTICE: You may use this code for any purpose, commercial or private, without any further permission from the author. You may remove this notice from your final code if you wish, however it is appreciated by the author if at least my web site address is kept. You may *NOT* re-distribute this code in any way except through its use. That means, you can include it in your product, or your web site, or any other form where the code is actually being used. You may not put the plain javascript up on your site for download or include it in your javascript libraries for download. diff --git a/docs/mattkruse.html b/docs/mattkruse.html index ebbe2231e2..14dd91073b 100644 --- a/docs/mattkruse.html +++ b/docs/mattkruse.html @@ -140,7 +140,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mattkruse.json b/docs/mattkruse.json index 14af2e33cb..f869a9503e 100644 --- a/docs/mattkruse.json +++ b/docs/mattkruse.json @@ -1 +1,12 @@ -{"key": "mattkruse", "short_name": "Matt Kruse License", "name": "Matt Kruse License", "category": "Permissive", "owner": "MattKruse.com", "homepage_url": "http://www.mattkruse.com/", "spdx_license_key": "LicenseRef-scancode-mattkruse", "text_urls": ["http://www.mattkruse.com/"]} \ No newline at end of file +{ + "key": "mattkruse", + "short_name": "Matt Kruse License", + "name": "Matt Kruse License", + "category": "Permissive", + "owner": "MattKruse.com", + "homepage_url": "http://www.mattkruse.com/", + "spdx_license_key": "LicenseRef-scancode-mattkruse", + "text_urls": [ + "http://www.mattkruse.com/" + ] +} \ No newline at end of file diff --git a/docs/maxmind-geolite2-eula-2019.LICENSE b/docs/maxmind-geolite2-eula-2019.LICENSE index 8c74005889..459d7035a9 100644 --- a/docs/maxmind-geolite2-eula-2019.LICENSE +++ b/docs/maxmind-geolite2-eula-2019.LICENSE @@ -1,3 +1,23 @@ +--- +key: maxmind-geolite2-eula-2019 +short_name: MaxMind GeoLite2 EULA 2019 +name: MaxMind GeoLite2 End User License Agreement 2019 +category: Copyleft +owner: MaxMind +homepage_url: https://www.maxmind.com/en/geolite2/eula +spdx_license_key: LicenseRef-scancode-maxmind-geolite2-eula-2019 +ignorable_authors: + - the USA Department of Commerce + - the USA Department of State. Specifically + - the USA Treasury Department's Office of Foreign Assets Control, and the International + Traffic in Arms Regulations +ignorable_urls: + - http://www.maxmind.com/ + - https://www.maxmind.com/ +ignorable_emails: + - legal@maxmind.com +--- + GeoLite2 End User License Agreement Revised on December 20, 2019 diff --git a/docs/maxmind-geolite2-eula-2019.html b/docs/maxmind-geolite2-eula-2019.html index a0bdb27d50..8b383cc91e 100644 --- a/docs/maxmind-geolite2-eula-2019.html +++ b/docs/maxmind-geolite2-eula-2019.html @@ -250,7 +250,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/maxmind-geolite2-eula-2019.json b/docs/maxmind-geolite2-eula-2019.json index cb5fb1e3c3..6892b2f7ea 100644 --- a/docs/maxmind-geolite2-eula-2019.json +++ b/docs/maxmind-geolite2-eula-2019.json @@ -1 +1,21 @@ -{"key": "maxmind-geolite2-eula-2019", "short_name": "MaxMind GeoLite2 EULA 2019", "name": "MaxMind GeoLite2 End User License Agreement 2019", "category": "Copyleft", "owner": "MaxMind", "homepage_url": "https://www.maxmind.com/en/geolite2/eula", "spdx_license_key": "LicenseRef-scancode-maxmind-geolite2-eula-2019", "ignorable_authors": ["the USA Department of Commerce", "the USA Department of State. Specifically", "the USA Treasury Department's Office of Foreign Assets Control, and the International Traffic in Arms Regulations"], "ignorable_urls": ["http://www.maxmind.com/", "https://www.maxmind.com/"], "ignorable_emails": ["legal@maxmind.com"]} \ No newline at end of file +{ + "key": "maxmind-geolite2-eula-2019", + "short_name": "MaxMind GeoLite2 EULA 2019", + "name": "MaxMind GeoLite2 End User License Agreement 2019", + "category": "Copyleft", + "owner": "MaxMind", + "homepage_url": "https://www.maxmind.com/en/geolite2/eula", + "spdx_license_key": "LicenseRef-scancode-maxmind-geolite2-eula-2019", + "ignorable_authors": [ + "the USA Department of Commerce", + "the USA Department of State. Specifically", + "the USA Treasury Department's Office of Foreign Assets Control, and the International Traffic in Arms Regulations" + ], + "ignorable_urls": [ + "http://www.maxmind.com/", + "https://www.maxmind.com/" + ], + "ignorable_emails": [ + "legal@maxmind.com" + ] +} \ No newline at end of file diff --git a/docs/maxmind-odl.LICENSE b/docs/maxmind-odl.LICENSE index 0820c7f596..7e4ad81cef 100644 --- a/docs/maxmind-odl.LICENSE +++ b/docs/maxmind-odl.LICENSE @@ -1,3 +1,17 @@ +--- +key: maxmind-odl +short_name: MaxMind Open Data License +name: MaxMind Open Data License +category: Free Restricted +owner: MaxMind +homepage_url: https://geolite.maxmind.com/download/geoip/database/LICENSE.txt +notes: This license is mostly the same as a bsd-original (or rather a bsd-simplified with an + advertizing clause) +spdx_license_key: LicenseRef-scancode-maxmind-odl +ignorable_urls: + - http://maxmind.com/ +--- + OPEN DATA LICENSE All advertising materials and documentation mentioning features or use of diff --git a/docs/maxmind-odl.html b/docs/maxmind-odl.html index 7c5592bb68..36d2979c2d 100644 --- a/docs/maxmind-odl.html +++ b/docs/maxmind-odl.html @@ -171,7 +171,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/maxmind-odl.json b/docs/maxmind-odl.json index 3247d11707..9ac326c29a 100644 --- a/docs/maxmind-odl.json +++ b/docs/maxmind-odl.json @@ -1 +1,13 @@ -{"key": "maxmind-odl", "short_name": "MaxMind Open Data License", "name": "MaxMind Open Data License", "category": "Free Restricted", "owner": "MaxMind", "homepage_url": "https://geolite.maxmind.com/download/geoip/database/LICENSE.txt", "notes": "This license is mostly the same as a bsd-original (or rather a bsd-simplified with an advertizing clause)", "spdx_license_key": "LicenseRef-scancode-maxmind-odl", "ignorable_urls": ["http://maxmind.com/"]} \ No newline at end of file +{ + "key": "maxmind-odl", + "short_name": "MaxMind Open Data License", + "name": "MaxMind Open Data License", + "category": "Free Restricted", + "owner": "MaxMind", + "homepage_url": "https://geolite.maxmind.com/download/geoip/database/LICENSE.txt", + "notes": "This license is mostly the same as a bsd-original (or rather a bsd-simplified with an advertizing clause)", + "spdx_license_key": "LicenseRef-scancode-maxmind-odl", + "ignorable_urls": [ + "http://maxmind.com/" + ] +} \ No newline at end of file diff --git a/docs/mcafee-tou.LICENSE b/docs/mcafee-tou.LICENSE index cdcb1ebc17..ea84a9c52e 100644 --- a/docs/mcafee-tou.LICENSE +++ b/docs/mcafee-tou.LICENSE @@ -1,3 +1,13 @@ +--- +key: mcafee-tou +short_name: McAfee Free License +name: McAfee Software royalty-Free License +category: Proprietary Free +owner: Intel Corporation +homepage_url: http://www.mcafee.com/us/downloads/free-tools/termsofuse.aspx +spdx_license_key: LicenseRef-scancode-mcafee-tou +--- + McAfee Software royalty-Free License Definitions. diff --git a/docs/mcafee-tou.html b/docs/mcafee-tou.html index 8f62b38843..079dc3a6bc 100644 --- a/docs/mcafee-tou.html +++ b/docs/mcafee-tou.html @@ -165,7 +165,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mcafee-tou.json b/docs/mcafee-tou.json index a66801d63b..9ae68b7b7a 100644 --- a/docs/mcafee-tou.json +++ b/docs/mcafee-tou.json @@ -1 +1,9 @@ -{"key": "mcafee-tou", "short_name": "McAfee Free License", "name": "McAfee Software royalty-Free License", "category": "Proprietary Free", "owner": "Intel Corporation", "homepage_url": "http://www.mcafee.com/us/downloads/free-tools/termsofuse.aspx", "spdx_license_key": "LicenseRef-scancode-mcafee-tou"} \ No newline at end of file +{ + "key": "mcafee-tou", + "short_name": "McAfee Free License", + "name": "McAfee Software royalty-Free License", + "category": "Proprietary Free", + "owner": "Intel Corporation", + "homepage_url": "http://www.mcafee.com/us/downloads/free-tools/termsofuse.aspx", + "spdx_license_key": "LicenseRef-scancode-mcafee-tou" +} \ No newline at end of file diff --git a/docs/mcrae-pl-4-r53.LICENSE b/docs/mcrae-pl-4-r53.LICENSE index a9389ff832..6c69caec2a 100644 --- a/docs/mcrae-pl-4-r53.LICENSE +++ b/docs/mcrae-pl-4-r53.LICENSE @@ -1,3 +1,17 @@ +--- +key: mcrae-pl-4-r53 +short_name: McRae PL v4.r53 +name: McRae General Public License (version 4.r53) +category: Proprietary Free +owner: pgl.yoyo.org +homepage_url: https://pgl.yoyo.org/license/ +spdx_license_key: LicenseRef-scancode-mcrae-pl-4-r53 +faq_url: https://fedoraproject.org/wiki/Licensing:Main?rd=Licensing#Bad_Licenses +other_urls: + - https://github.com/Pintu900/iit_project/blob/625c5cc85012428cc69f6094bbef8fe2abab92b6/.config/chromium/Default/Extensions/cjpalhdlnbpafiamejdnhcphjbkeiagm/1.24.2_0/assets/thirdparties/pgl.yoyo.org/as/README.md + - https://github.com/naveednajam/Little-Snitch---Rule-GroupsV2/blob/39d3b9981eaa71eb2b0e96b7c1433854f3e7fb1b/sources/ads/yoyo.org/update.json +--- + Preamble -------- Your GRAN. diff --git a/docs/mcrae-pl-4-r53.html b/docs/mcrae-pl-4-r53.html index 9e7e3cc94d..e906291b65 100644 --- a/docs/mcrae-pl-4-r53.html +++ b/docs/mcrae-pl-4-r53.html @@ -161,7 +161,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mcrae-pl-4-r53.json b/docs/mcrae-pl-4-r53.json index 3f50c2059c..61f7e1539e 100644 --- a/docs/mcrae-pl-4-r53.json +++ b/docs/mcrae-pl-4-r53.json @@ -1 +1,14 @@ -{"key": "mcrae-pl-4-r53", "short_name": "McRae PL v4.r53", "name": "McRae General Public License (version 4.r53)", "category": "Proprietary Free", "owner": "pgl.yoyo.org", "homepage_url": "https://pgl.yoyo.org/license/", "spdx_license_key": "LicenseRef-scancode-mcrae-pl-4-r53", "faq_url": "https://fedoraproject.org/wiki/Licensing:Main?rd=Licensing#Bad_Licenses", "other_urls": ["https://github.com/Pintu900/iit_project/blob/625c5cc85012428cc69f6094bbef8fe2abab92b6/.config/chromium/Default/Extensions/cjpalhdlnbpafiamejdnhcphjbkeiagm/1.24.2_0/assets/thirdparties/pgl.yoyo.org/as/README.md", "https://github.com/naveednajam/Little-Snitch---Rule-GroupsV2/blob/39d3b9981eaa71eb2b0e96b7c1433854f3e7fb1b/sources/ads/yoyo.org/update.json"]} \ No newline at end of file +{ + "key": "mcrae-pl-4-r53", + "short_name": "McRae PL v4.r53", + "name": "McRae General Public License (version 4.r53)", + "category": "Proprietary Free", + "owner": "pgl.yoyo.org", + "homepage_url": "https://pgl.yoyo.org/license/", + "spdx_license_key": "LicenseRef-scancode-mcrae-pl-4-r53", + "faq_url": "https://fedoraproject.org/wiki/Licensing:Main?rd=Licensing#Bad_Licenses", + "other_urls": [ + "https://github.com/Pintu900/iit_project/blob/625c5cc85012428cc69f6094bbef8fe2abab92b6/.config/chromium/Default/Extensions/cjpalhdlnbpafiamejdnhcphjbkeiagm/1.24.2_0/assets/thirdparties/pgl.yoyo.org/as/README.md", + "https://github.com/naveednajam/Little-Snitch---Rule-GroupsV2/blob/39d3b9981eaa71eb2b0e96b7c1433854f3e7fb1b/sources/ads/yoyo.org/update.json" + ] +} \ No newline at end of file diff --git a/docs/mediainfo-lib.LICENSE b/docs/mediainfo-lib.LICENSE index 2e1b473f69..3caab0a7a5 100644 --- a/docs/mediainfo-lib.LICENSE +++ b/docs/mediainfo-lib.LICENSE @@ -1,3 +1,20 @@ +--- +key: mediainfo-lib +short_name: MediaInfo(Lib) License +name: MediaInfo(Lib) License +category: Permissive +owner: MediaArea.net SARL +homepage_url: http://mediainfo.sourceforge.net/en +notes: this is a combo of BSD-like terms and LGPL 3 terms +spdx_license_key: LicenseRef-scancode-mediainfo-lib +text_urls: + - http://mediainfo.sourceforge.net/en +ignorable_copyrights: + - Copyright 2002-2010 MediaArea.net SARL. +ignorable_holders: + - MediaArea.net SARL. +--- + MediaInfo(Lib) License Version 1.1, 3 January 2010 diff --git a/docs/mediainfo-lib.html b/docs/mediainfo-lib.html index f3d2a7382f..744aa7834a 100644 --- a/docs/mediainfo-lib.html +++ b/docs/mediainfo-lib.html @@ -175,7 +175,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mediainfo-lib.json b/docs/mediainfo-lib.json index 9884346eb9..0e1d380ea1 100644 --- a/docs/mediainfo-lib.json +++ b/docs/mediainfo-lib.json @@ -1 +1,19 @@ -{"key": "mediainfo-lib", "short_name": "MediaInfo(Lib) License", "name": "MediaInfo(Lib) License", "category": "Permissive", "owner": "MediaArea.net SARL", "homepage_url": "http://mediainfo.sourceforge.net/en", "notes": "this is a combo of BSD-like terms and LGPL 3 terms", "spdx_license_key": "LicenseRef-scancode-mediainfo-lib", "text_urls": ["http://mediainfo.sourceforge.net/en"], "ignorable_copyrights": ["Copyright 2002-2010 MediaArea.net SARL."], "ignorable_holders": ["MediaArea.net SARL."]} \ No newline at end of file +{ + "key": "mediainfo-lib", + "short_name": "MediaInfo(Lib) License", + "name": "MediaInfo(Lib) License", + "category": "Permissive", + "owner": "MediaArea.net SARL", + "homepage_url": "http://mediainfo.sourceforge.net/en", + "notes": "this is a combo of BSD-like terms and LGPL 3 terms", + "spdx_license_key": "LicenseRef-scancode-mediainfo-lib", + "text_urls": [ + "http://mediainfo.sourceforge.net/en" + ], + "ignorable_copyrights": [ + "Copyright 2002-2010 MediaArea.net SARL." + ], + "ignorable_holders": [ + "MediaArea.net SARL." + ] +} \ No newline at end of file diff --git a/docs/melange.LICENSE b/docs/melange.LICENSE index c1c3bb8eb1..0a33272671 100644 --- a/docs/melange.LICENSE +++ b/docs/melange.LICENSE @@ -1,3 +1,20 @@ +--- +key: melange +short_name: Melange Public License +name: Melange Chat Server/Client Public License +category: Proprietary Free +owner: Unspecified +spdx_license_key: LicenseRef-scancode-melange +ignorable_copyrights: + - Copyright (c) 1998,1999 by Christian Walter, chris@terminal.at http://www.terminal.at/melange +ignorable_holders: + - Christian Walter +ignorable_urls: + - http://www.terminal.at/melange +ignorable_emails: + - chris@terminal.at +--- + MELANGE CHAT SERVER/CLIENT PUBLIC LICENSE Version 1.1, 21 October 1998 diff --git a/docs/melange.html b/docs/melange.html index 077670c71b..4ac4492a20 100644 --- a/docs/melange.html +++ b/docs/melange.html @@ -213,7 +213,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/melange.json b/docs/melange.json index f4b6cc82a7..dffb088070 100644 --- a/docs/melange.json +++ b/docs/melange.json @@ -1 +1,20 @@ -{"key": "melange", "short_name": "Melange Public License", "name": "Melange Chat Server/Client Public License", "category": "Proprietary Free", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-melange", "ignorable_copyrights": ["Copyright (c) 1998,1999 by Christian Walter, chris@terminal.at http://www.terminal.at/melange"], "ignorable_holders": ["Christian Walter"], "ignorable_urls": ["http://www.terminal.at/melange"], "ignorable_emails": ["chris@terminal.at"]} \ No newline at end of file +{ + "key": "melange", + "short_name": "Melange Public License", + "name": "Melange Chat Server/Client Public License", + "category": "Proprietary Free", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-melange", + "ignorable_copyrights": [ + "Copyright (c) 1998,1999 by Christian Walter, chris@terminal.at http://www.terminal.at/melange" + ], + "ignorable_holders": [ + "Christian Walter" + ], + "ignorable_urls": [ + "http://www.terminal.at/melange" + ], + "ignorable_emails": [ + "chris@terminal.at" + ] +} \ No newline at end of file diff --git a/docs/mentalis.LICENSE b/docs/mentalis.LICENSE index 8a41c35c91..cb18cbee5e 100644 --- a/docs/mentalis.LICENSE +++ b/docs/mentalis.LICENSE @@ -1,3 +1,16 @@ +--- +key: mentalis +is_deprecated: yes +short_name: Mentalis License +name: Mentalis Source Code License +category: Permissive +owner: Mentalis +homepage_url: http://mentalis.org/site/license.qpx +notes: this is a bsd-new with clause 1 and 3. Replaced by the bsd-source-code license. +text_urls: + - http://mentalis.org/site/license.qpx +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/mentalis.html b/docs/mentalis.html index 7b20ec34e5..87ee348999 100644 --- a/docs/mentalis.html +++ b/docs/mentalis.html @@ -164,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mentalis.json b/docs/mentalis.json index cdc0e6dcfa..8456140e33 100644 --- a/docs/mentalis.json +++ b/docs/mentalis.json @@ -1 +1,13 @@ -{"key": "mentalis", "is_deprecated": true, "short_name": "Mentalis License", "name": "Mentalis Source Code License", "category": "Permissive", "owner": "Mentalis", "homepage_url": "http://mentalis.org/site/license.qpx", "notes": "this is a bsd-new with clause 1 and 3. Replaced by the bsd-source-code license.", "text_urls": ["http://mentalis.org/site/license.qpx"]} \ No newline at end of file +{ + "key": "mentalis", + "is_deprecated": true, + "short_name": "Mentalis License", + "name": "Mentalis Source Code License", + "category": "Permissive", + "owner": "Mentalis", + "homepage_url": "http://mentalis.org/site/license.qpx", + "notes": "this is a bsd-new with clause 1 and 3. Replaced by the bsd-source-code license.", + "text_urls": [ + "http://mentalis.org/site/license.qpx" + ] +} \ No newline at end of file diff --git a/docs/merit-network-derivative.LICENSE b/docs/merit-network-derivative.LICENSE index 10cc0eb9e2..235d9aaf3d 100644 --- a/docs/merit-network-derivative.LICENSE +++ b/docs/merit-network-derivative.LICENSE @@ -1,3 +1,74 @@ +--- +key: merit-network-derivative +short_name: Merit Network Derivative Works License +name: Merit Network Derivative Works License +category: Copyleft +owner: Merit Network +homepage_url: http://web.mit.edu/kolya/.f/root/athena.mit.edu/net/project/radius/3.6B/src/resources.c +spdx_license_key: LicenseRef-scancode-merit-network-derivative +standard_notice: | + /* + * Copyright [C] The Regents of the University of Michigan and Merit + Network, + * Inc. 1992, 1993, 1994, 1995, 1996, 1997, 1998 All Rights Reserved + * + * Permission to use, copy, and modify this software and its documentation + * for any purpose and without fee is hereby granted, provided: + * + * 1) that the above copyright notice and this permission notice appear in + all + * copies of the software and derivative works or modified versions thereof, + * + * 2) that both the copyright notice and this permission and disclaimer + notice + * appear in all supporting documentation, and + * + * 3) that all derivative works made from this material are returned to the + * Regents of the University of Michigan and Merit Network, Inc. with + * permission to copy, to display, to distribute, and to make derivative + * works from the provided material in whole or in part for any purpose. + * + * Users of this code are requested to notify Merit Network, Inc. of such + use + * by sending email to aaa-admin@merit.edu + * + * Please also use aaa-admin@merit.edu to inform Merit Network, Inc of any + * derivative works. + * + * Distribution of this software or derivative works or the associated + * documentation is not allowed without an additional license. + * + * Licenses for other uses are available on an individually negotiated + * basis. Contact aaa-license@merit.edu for more information. + * + * THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER + * EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE REGENTS OF THE + * UNIVERSITY OF MICHIGAN AND MERIT NETWORK, INC. DO NOT WARRANT THAT THE + * FUNCTIONS CONTAINED IN THE SOFTWARE WILL MEET LICENSEE'S REQUIREMENTS OR + * THAT OPERATION WILL BE UNINTERRUPTED OR ERROR FREE. The Regents of the + * University of Michigan and Merit Network, Inc. shall not be liable for + any + * special, indirect, incidental or consequential damages with respect to + any + * claim by Licensee or any third party arising from use of the software. + * + * Merit AAA Server Support + * Merit Network, Inc. + * 4251 Plymouth Road, Suite C. + * Ann Arbor, Michigan, USA 48105-2785 + * + * attn: John Vollbrecht + * voice: 734-764-9430 + * fax: 734-647-3185 + * email: aaa-admin@merit.edu + * + */ +ignorable_emails: + - aaa-admin@merit.edu + - aaa-license@merit.edu +--- + Permission to use, copy, and modify this software and its documentation for any purpose and without fee is hereby granted, provided: diff --git a/docs/merit-network-derivative.html b/docs/merit-network-derivative.html index 50dc402074..f52fba87a3 100644 --- a/docs/merit-network-derivative.html +++ b/docs/merit-network-derivative.html @@ -234,7 +234,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/merit-network-derivative.json b/docs/merit-network-derivative.json index 7d91459076..6c7b00dbdf 100644 --- a/docs/merit-network-derivative.json +++ b/docs/merit-network-derivative.json @@ -1 +1,14 @@ -{"key": "merit-network-derivative", "short_name": "Merit Network Derivative Works License", "name": "Merit Network Derivative Works License", "category": "Copyleft", "owner": "Merit Network", "homepage_url": "http://web.mit.edu/kolya/.f/root/athena.mit.edu/net/project/radius/3.6B/src/resources.c", "spdx_license_key": "LicenseRef-scancode-merit-network-derivative", "standard_notice": "/*\n* Copyright [C] The Regents of the University of Michigan and Merit\nNetwork,\n* Inc. 1992, 1993, 1994, 1995, 1996, 1997, 1998 All Rights Reserved\n*\n* Permission to use, copy, and modify this software and its documentation\n* for any purpose and without fee is hereby granted, provided:\n*\n* 1) that the above copyright notice and this permission notice appear in\nall\n* copies of the software and derivative works or modified versions thereof,\n*\n* 2) that both the copyright notice and this permission and disclaimer\nnotice\n* appear in all supporting documentation, and\n*\n* 3) that all derivative works made from this material are returned to the\n* Regents of the University of Michigan and Merit Network, Inc. with\n* permission to copy, to display, to distribute, and to make derivative\n* works from the provided material in whole or in part for any purpose.\n*\n* Users of this code are requested to notify Merit Network, Inc. of such\nuse\n* by sending email to aaa-admin@merit.edu\n*\n* Please also use aaa-admin@merit.edu to inform Merit Network, Inc of any\n* derivative works.\n*\n* Distribution of this software or derivative works or the associated\n* documentation is not allowed without an additional license.\n*\n* Licenses for other uses are available on an individually negotiated\n* basis. Contact aaa-license@merit.edu for more information.\n*\n* THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER\n* EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF\n* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE REGENTS OF THE\n* UNIVERSITY OF MICHIGAN AND MERIT NETWORK, INC. DO NOT WARRANT THAT THE\n* FUNCTIONS CONTAINED IN THE SOFTWARE WILL MEET LICENSEE'S REQUIREMENTS OR\n* THAT OPERATION WILL BE UNINTERRUPTED OR ERROR FREE. The Regents of the\n* University of Michigan and Merit Network, Inc. shall not be liable for\nany\n* special, indirect, incidental or consequential damages with respect to\nany\n* claim by Licensee or any third party arising from use of the software.\n*\n* Merit AAA Server Support\n* Merit Network, Inc.\n* 4251 Plymouth Road, Suite C.\n* Ann Arbor, Michigan, USA 48105-2785\n*\n* attn: John Vollbrecht\n* voice: 734-764-9430\n* fax: 734-647-3185\n* email: aaa-admin@merit.edu\n*\n*/\n", "ignorable_emails": ["aaa-admin@merit.edu", "aaa-license@merit.edu"]} \ No newline at end of file +{ + "key": "merit-network-derivative", + "short_name": "Merit Network Derivative Works License", + "name": "Merit Network Derivative Works License", + "category": "Copyleft", + "owner": "Merit Network", + "homepage_url": "http://web.mit.edu/kolya/.f/root/athena.mit.edu/net/project/radius/3.6B/src/resources.c", + "spdx_license_key": "LicenseRef-scancode-merit-network-derivative", + "standard_notice": "/*\n* Copyright [C] The Regents of the University of Michigan and Merit\nNetwork,\n* Inc. 1992, 1993, 1994, 1995, 1996, 1997, 1998 All Rights Reserved\n*\n* Permission to use, copy, and modify this software and its documentation\n* for any purpose and without fee is hereby granted, provided:\n*\n* 1) that the above copyright notice and this permission notice appear in\nall\n* copies of the software and derivative works or modified versions thereof,\n*\n* 2) that both the copyright notice and this permission and disclaimer\nnotice\n* appear in all supporting documentation, and\n*\n* 3) that all derivative works made from this material are returned to the\n* Regents of the University of Michigan and Merit Network, Inc. with\n* permission to copy, to display, to distribute, and to make derivative\n* works from the provided material in whole or in part for any purpose.\n*\n* Users of this code are requested to notify Merit Network, Inc. of such\nuse\n* by sending email to aaa-admin@merit.edu\n*\n* Please also use aaa-admin@merit.edu to inform Merit Network, Inc of any\n* derivative works.\n*\n* Distribution of this software or derivative works or the associated\n* documentation is not allowed without an additional license.\n*\n* Licenses for other uses are available on an individually negotiated\n* basis. Contact aaa-license@merit.edu for more information.\n*\n* THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER\n* EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF\n* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE REGENTS OF THE\n* UNIVERSITY OF MICHIGAN AND MERIT NETWORK, INC. DO NOT WARRANT THAT THE\n* FUNCTIONS CONTAINED IN THE SOFTWARE WILL MEET LICENSEE'S REQUIREMENTS OR\n* THAT OPERATION WILL BE UNINTERRUPTED OR ERROR FREE. The Regents of the\n* University of Michigan and Merit Network, Inc. shall not be liable for\nany\n* special, indirect, incidental or consequential damages with respect to\nany\n* claim by Licensee or any third party arising from use of the software.\n*\n* Merit AAA Server Support\n* Merit Network, Inc.\n* 4251 Plymouth Road, Suite C.\n* Ann Arbor, Michigan, USA 48105-2785\n*\n* attn: John Vollbrecht\n* voice: 734-764-9430\n* fax: 734-647-3185\n* email: aaa-admin@merit.edu\n*\n*/\n", + "ignorable_emails": [ + "aaa-admin@merit.edu", + "aaa-license@merit.edu" + ] +} \ No newline at end of file diff --git a/docs/metageek-inssider-eula.LICENSE b/docs/metageek-inssider-eula.LICENSE index 055ed32d4d..d1850af997 100644 --- a/docs/metageek-inssider-eula.LICENSE +++ b/docs/metageek-inssider-eula.LICENSE @@ -1,3 +1,20 @@ +--- +key: metageek-inssider-eula +short_name: inSSIDer EULA +name: inSSIDer End User License Agreement +category: Proprietary Free +owner: MetaGeek +homepage_url: https://www.metageek.com/legal/eula/inssider.html +spdx_license_key: LicenseRef-scancode-metageek-inssider-eula +other_urls: + - https://en.wikipedia.org/wiki/InSSIDer +ignorable_copyrights: + - Copyrights Copyright 2005-2019 MetaGeek, LLC. + - copyright 2007-2019 MetaGeek, LLC. +ignorable_holders: + - MetaGeek, LLC. +--- + inSSIDer End User License Agreement END-USER LICENSE AGREEMENT FOR inSSIDer. IMPORTANT PLEASE READ THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT CAREFULLY BEFORE CONTINUING WITH THIS PROGRAM INSTALL: MetaGeek, LLC's End-User License Agreement ("EULA") is a legal agreement between you, either an individual or a single entity (referred to as the "licensee") and MetaGeek, LLC for the MetaGeek software product(s) identified above which may include associated software components, media, printed materials, and "online" or electronic documentation ("SOFTWARE PRODUCT"). By installing, copying, or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. This license agreement represents the entire agreement concerning the program between you and MetaGeek LLC, (referred to as "licenser"), and it supersedes any prior proposal, representation, or understanding between the parties. If you do not agree to the terms of this EULA, do not install or use the SOFTWARE PRODUCT. diff --git a/docs/metageek-inssider-eula.html b/docs/metageek-inssider-eula.html index 57c2ad356c..bc8110f468 100644 --- a/docs/metageek-inssider-eula.html +++ b/docs/metageek-inssider-eula.html @@ -178,7 +178,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/metageek-inssider-eula.json b/docs/metageek-inssider-eula.json index 01831d598a..6506e20ee7 100644 --- a/docs/metageek-inssider-eula.json +++ b/docs/metageek-inssider-eula.json @@ -1 +1,19 @@ -{"key": "metageek-inssider-eula", "short_name": "inSSIDer EULA", "name": "inSSIDer End User License Agreement", "category": "Proprietary Free", "owner": "MetaGeek", "homepage_url": "https://www.metageek.com/legal/eula/inssider.html", "spdx_license_key": "LicenseRef-scancode-metageek-inssider-eula", "other_urls": ["https://en.wikipedia.org/wiki/InSSIDer"], "ignorable_copyrights": ["Copyrights Copyright 2005-2019 MetaGeek, LLC.", "copyright 2007-2019 MetaGeek, LLC."], "ignorable_holders": ["MetaGeek, LLC."]} \ No newline at end of file +{ + "key": "metageek-inssider-eula", + "short_name": "inSSIDer EULA", + "name": "inSSIDer End User License Agreement", + "category": "Proprietary Free", + "owner": "MetaGeek", + "homepage_url": "https://www.metageek.com/legal/eula/inssider.html", + "spdx_license_key": "LicenseRef-scancode-metageek-inssider-eula", + "other_urls": [ + "https://en.wikipedia.org/wiki/InSSIDer" + ], + "ignorable_copyrights": [ + "Copyrights Copyright 2005-2019 MetaGeek, LLC.", + "copyright 2007-2019 MetaGeek, LLC." + ], + "ignorable_holders": [ + "MetaGeek, LLC." + ] +} \ No newline at end of file diff --git a/docs/metrolink-1.0.LICENSE b/docs/metrolink-1.0.LICENSE index 1c8556c6c3..860858f133 100644 --- a/docs/metrolink-1.0.LICENSE +++ b/docs/metrolink-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: metrolink-1.0 +short_name: Metrolink 1.0 +name: Metro Link Public License 1.0 +category: Copyleft +owner: Metro Link Inc. +homepage_url: http://web.archive.org/web/20120411024312/http://www.opengroup.org/openmotif/supporters/metrolink/license.html +spdx_license_key: LicenseRef-scancode-metrolink-1.0 +text_urls: + - http://web.archive.org/web/20120411024312/http://www.opengroup.org/openmotif/supporters/metrolink/license.html +ignorable_copyrights: + - Copyright (c) May, 2000 The Open Group, Metro Link, Incorporated and others +ignorable_holders: + - May, The Open Group, Metro Link, Incorporated and others +--- + METRO LINK PUBLIC LICENSE MOTIF GRAPHICAL USER INTERFACE SOFTWARE Version 1.00 diff --git a/docs/metrolink-1.0.html b/docs/metrolink-1.0.html index 05e54a4b23..b9f3063982 100644 --- a/docs/metrolink-1.0.html +++ b/docs/metrolink-1.0.html @@ -257,7 +257,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/metrolink-1.0.json b/docs/metrolink-1.0.json index eaf95e4f9b..a69cf7318b 100644 --- a/docs/metrolink-1.0.json +++ b/docs/metrolink-1.0.json @@ -1 +1,18 @@ -{"key": "metrolink-1.0", "short_name": "Metrolink 1.0", "name": "Metro Link Public License 1.0", "category": "Copyleft", "owner": "Metro Link Inc.", "homepage_url": "http://web.archive.org/web/20120411024312/http://www.opengroup.org/openmotif/supporters/metrolink/license.html", "spdx_license_key": "LicenseRef-scancode-metrolink-1.0", "text_urls": ["http://web.archive.org/web/20120411024312/http://www.opengroup.org/openmotif/supporters/metrolink/license.html"], "ignorable_copyrights": ["Copyright (c) May, 2000 The Open Group, Metro Link, Incorporated and others"], "ignorable_holders": ["May, The Open Group, Metro Link, Incorporated and others"]} \ No newline at end of file +{ + "key": "metrolink-1.0", + "short_name": "Metrolink 1.0", + "name": "Metro Link Public License 1.0", + "category": "Copyleft", + "owner": "Metro Link Inc.", + "homepage_url": "http://web.archive.org/web/20120411024312/http://www.opengroup.org/openmotif/supporters/metrolink/license.html", + "spdx_license_key": "LicenseRef-scancode-metrolink-1.0", + "text_urls": [ + "http://web.archive.org/web/20120411024312/http://www.opengroup.org/openmotif/supporters/metrolink/license.html" + ], + "ignorable_copyrights": [ + "Copyright (c) May, 2000 The Open Group, Metro Link, Incorporated and others" + ], + "ignorable_holders": [ + "May, The Open Group, Metro Link, Incorporated and others" + ] +} \ No newline at end of file diff --git a/docs/mgopen-font-license.LICENSE b/docs/mgopen-font-license.LICENSE index 822d97a6e1..4c7afdd900 100644 --- a/docs/mgopen-font-license.LICENSE +++ b/docs/mgopen-font-license.LICENSE @@ -1,3 +1,16 @@ +--- +key: mgopen-font-license +short_name: MgOpen Font License +name: MgOpen Font License +category: Permissive +owner: MgOpen +homepage_url: http://pub.ellak.gr/fonts/mgopen/index.en.html +spdx_license_key: LicenseRef-scancode-mgopen-font-license +text_urls: + - http://pub.ellak.gr/fonts/mgopen/index.en.html#license +faq_url: http://pub.ellak.gr/fonts/mgopen/index.en.html#faq +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: The above copyright and this permission notice shall be included in all copies of one or more of the Font Software typefaces. diff --git a/docs/mgopen-font-license.html b/docs/mgopen-font-license.html index 18bffd83b7..3003e563ff 100644 --- a/docs/mgopen-font-license.html +++ b/docs/mgopen-font-license.html @@ -153,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mgopen-font-license.json b/docs/mgopen-font-license.json index 3fa6ae07b4..c1e8756192 100644 --- a/docs/mgopen-font-license.json +++ b/docs/mgopen-font-license.json @@ -1 +1,13 @@ -{"key": "mgopen-font-license", "short_name": "MgOpen Font License", "name": "MgOpen Font License", "category": "Permissive", "owner": "MgOpen", "homepage_url": "http://pub.ellak.gr/fonts/mgopen/index.en.html", "spdx_license_key": "LicenseRef-scancode-mgopen-font-license", "text_urls": ["http://pub.ellak.gr/fonts/mgopen/index.en.html#license"], "faq_url": "http://pub.ellak.gr/fonts/mgopen/index.en.html#faq"} \ No newline at end of file +{ + "key": "mgopen-font-license", + "short_name": "MgOpen Font License", + "name": "MgOpen Font License", + "category": "Permissive", + "owner": "MgOpen", + "homepage_url": "http://pub.ellak.gr/fonts/mgopen/index.en.html", + "spdx_license_key": "LicenseRef-scancode-mgopen-font-license", + "text_urls": [ + "http://pub.ellak.gr/fonts/mgopen/index.en.html#license" + ], + "faq_url": "http://pub.ellak.gr/fonts/mgopen/index.en.html#faq" +} \ No newline at end of file diff --git a/docs/michael-barr.LICENSE b/docs/michael-barr.LICENSE index da7ff152ad..8c288539ef 100644 --- a/docs/michael-barr.LICENSE +++ b/docs/michael-barr.LICENSE @@ -1,3 +1,12 @@ +--- +key: michael-barr +short_name: Michael Barr License +name: Michael Barr License +category: Permissive +owner: Michael Barr +spdx_license_key: LicenseRef-scancode-michael-barr +--- + This software is placed into the public domain and may be used for any purpose. However, this notice must not be changed or removed and no warranty is either expressed or implied by its publication or distribution. \ No newline at end of file diff --git a/docs/michael-barr.html b/docs/michael-barr.html index 1931ad4db7..fa8034a267 100644 --- a/docs/michael-barr.html +++ b/docs/michael-barr.html @@ -122,7 +122,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/michael-barr.json b/docs/michael-barr.json index a3fc50e68b..734739e11e 100644 --- a/docs/michael-barr.json +++ b/docs/michael-barr.json @@ -1 +1,8 @@ -{"key": "michael-barr", "short_name": "Michael Barr License", "name": "Michael Barr License", "category": "Permissive", "owner": "Michael Barr", "spdx_license_key": "LicenseRef-scancode-michael-barr"} \ No newline at end of file +{ + "key": "michael-barr", + "short_name": "Michael Barr License", + "name": "Michael Barr License", + "category": "Permissive", + "owner": "Michael Barr", + "spdx_license_key": "LicenseRef-scancode-michael-barr" +} \ No newline at end of file diff --git a/docs/michigan-disclaimer.LICENSE b/docs/michigan-disclaimer.LICENSE index 14b8abe77d..c32ab9eb63 100644 --- a/docs/michigan-disclaimer.LICENSE +++ b/docs/michigan-disclaimer.LICENSE @@ -1,3 +1,13 @@ +--- +key: michigan-disclaimer +short_name: University of Michigan OSL +name: University of Michigan Open Source License +category: Permissive +owner: University of Michigan +spdx_license_key: LicenseRef-scancode-michigan-disclaimer +minimum_coverage: 70 +--- + Permission is granted to use, copy, create derivative works and redistribute this software and such derivative works for any purpose, so long as the name of The University of @@ -20,4 +30,4 @@ FOR ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. +SUCH DAMAGES. \ No newline at end of file diff --git a/docs/michigan-disclaimer.html b/docs/michigan-disclaimer.html index 22b98f158c..4b2ce31bc9 100644 --- a/docs/michigan-disclaimer.html +++ b/docs/michigan-disclaimer.html @@ -137,8 +137,7 @@ CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. -
+SUCH DAMAGES.
@@ -150,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/michigan-disclaimer.json b/docs/michigan-disclaimer.json index 64a43ec813..f0b21b6e3f 100644 --- a/docs/michigan-disclaimer.json +++ b/docs/michigan-disclaimer.json @@ -1 +1,9 @@ -{"key": "michigan-disclaimer", "short_name": "University of Michigan OSL", "name": "University of Michigan Open Source License", "category": "Permissive", "owner": "University of Michigan", "spdx_license_key": "LicenseRef-scancode-michigan-disclaimer", "minimum_coverage": 70} \ No newline at end of file +{ + "key": "michigan-disclaimer", + "short_name": "University of Michigan OSL", + "name": "University of Michigan Open Source License", + "category": "Permissive", + "owner": "University of Michigan", + "spdx_license_key": "LicenseRef-scancode-michigan-disclaimer", + "minimum_coverage": 70 +} \ No newline at end of file diff --git a/docs/microchip-linux-firmware.LICENSE b/docs/microchip-linux-firmware.LICENSE index 35fddbb565..649d686ddd 100644 --- a/docs/microchip-linux-firmware.LICENSE +++ b/docs/microchip-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: microchip-linux-firmware +short_name: Microchip Linux Firmware License +name: Microchip Linux Firmware License +category: Proprietary Free +owner: Microchip +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.microchip +spdx_license_key: LicenseRef-scancode-microchip-linux-firmware +--- + REDISTRIBUTION: Permission is hereby granted by Microchip Technology Incorporated (Microchip), free of any license fees, to any person obtaining a copy of this firmware (the "Software"), to install, reproduce, copy and diff --git a/docs/microchip-linux-firmware.html b/docs/microchip-linux-firmware.html index f5c30860a9..1312c836fd 100644 --- a/docs/microchip-linux-firmware.html +++ b/docs/microchip-linux-firmware.html @@ -163,7 +163,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/microchip-linux-firmware.json b/docs/microchip-linux-firmware.json index 34f4837a7a..8db698ffe3 100644 --- a/docs/microchip-linux-firmware.json +++ b/docs/microchip-linux-firmware.json @@ -1 +1,9 @@ -{"key": "microchip-linux-firmware", "short_name": "Microchip Linux Firmware License", "name": "Microchip Linux Firmware License", "category": "Proprietary Free", "owner": "Microchip", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.microchip", "spdx_license_key": "LicenseRef-scancode-microchip-linux-firmware"} \ No newline at end of file +{ + "key": "microchip-linux-firmware", + "short_name": "Microchip Linux Firmware License", + "name": "Microchip Linux Firmware License", + "category": "Proprietary Free", + "owner": "Microchip", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.microchip", + "spdx_license_key": "LicenseRef-scancode-microchip-linux-firmware" +} \ No newline at end of file diff --git a/docs/microchip-products-2018.LICENSE b/docs/microchip-products-2018.LICENSE new file mode 100644 index 0000000000..6ccbbde803 --- /dev/null +++ b/docs/microchip-products-2018.LICENSE @@ -0,0 +1,32 @@ +--- +key: microchip-products-2018 +short_name: Microchip Products 2018 +name: Microchip Technology Products 2018 +category: Proprietary Free +owner: Microchip +spdx_license_key: LicenseRef-scancode-microchip-products-2018 +ignorable_copyrights: + - (c) 2018 Microchip Technology Inc. and its subsidiaries +ignorable_holders: + - Microchip Technology Inc. and its subsidiaries +--- + +/*------------------------------------------------------------------------------------------------*/ +/* (c) 2018 Microchip Technology Inc. and its subsidiaries. */ +/* */ +/* You may use this software and any derivatives exclusively with Microchip products. */ +/* */ +/* THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR */ +/* STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY IMPLIED WARRANTIES OF NON-INFRINGEMENT, */ +/* MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE, OR ITS INTERACTION WITH MICROCHIP */ +/* PRODUCTS, COMBINATION WITH ANY OTHER PRODUCTS, OR USE IN ANY APPLICATION. */ +/* */ +/* IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE, INCIDENTAL OR */ +/* CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND WHATSOEVER RELATED TO THE SOFTWARE, */ +/* HOWEVER CAUSED, EVEN IF MICROCHIP HAS BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE */ +/* FORESEEABLE. TO THE FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS */ +/* IN ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY, THAT YOU HAVE */ +/* PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE. */ +/* */ +/* MICROCHIP PROVIDES THIS SOFTWARE CONDITIONALLY UPON YOUR ACCEPTANCE OF THESE TERMS. */ +/*------------------------------------------------------------------------------------------------*/ \ No newline at end of file diff --git a/docs/microchip-products-2018.html b/docs/microchip-products-2018.html new file mode 100644 index 0000000000..7bdac44cbc --- /dev/null +++ b/docs/microchip-products-2018.html @@ -0,0 +1,179 @@ + + + + + + LicenseDB: microchip-products-2018 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + microchip-products-2018 + +
+ +
short_name
+
+ + Microchip Products 2018 + +
+ +
name
+
+ + Microchip Technology Products 2018 + +
+ +
category
+
+ + Proprietary Free + +
+ +
owner
+
+ + Microchip + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-microchip-products-2018 + +
+ +
ignorable_copyrights
+
+ +
    +
  • (c) 2018 Microchip Technology Inc. and its subsidiaries
  • +
+ +
+ +
ignorable_holders
+
+ +
    +
  • Microchip Technology Inc. and its subsidiaries
  • +
+ +
+ +
+
license_text
+
/*------------------------------------------------------------------------------------------------*/
+/* (c) 2018 Microchip Technology Inc. and its subsidiaries.                                       */
+/*                                                                                                */
+/* You may use this software and any derivatives exclusively with Microchip products.             */
+/*                                                                                                */
+/* THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS".  NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR    */
+/* STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY IMPLIED WARRANTIES OF NON-INFRINGEMENT,       */
+/* MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE, OR ITS INTERACTION WITH MICROCHIP       */
+/* PRODUCTS, COMBINATION WITH ANY OTHER PRODUCTS, OR USE IN ANY APPLICATION.                      */
+/*                                                                                                */
+/* IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE, INCIDENTAL OR        */
+/* CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND WHATSOEVER RELATED TO THE SOFTWARE,    */
+/* HOWEVER CAUSED, EVEN IF MICROCHIP HAS BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE       */
+/* FORESEEABLE. TO THE FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS   */
+/* IN ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY, THAT YOU HAVE  */
+/* PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE.                                                  */
+/*                                                                                                */
+/* MICROCHIP PROVIDES THIS SOFTWARE CONDITIONALLY UPON YOUR ACCEPTANCE OF THESE TERMS.            */
+/*------------------------------------------------------------------------------------------------*/
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/microchip-products-2018.json b/docs/microchip-products-2018.json new file mode 100644 index 0000000000..55887e3f66 --- /dev/null +++ b/docs/microchip-products-2018.json @@ -0,0 +1,14 @@ +{ + "key": "microchip-products-2018", + "short_name": "Microchip Products 2018", + "name": "Microchip Technology Products 2018", + "category": "Proprietary Free", + "owner": "Microchip", + "spdx_license_key": "LicenseRef-scancode-microchip-products-2018", + "ignorable_copyrights": [ + "(c) 2018 Microchip Technology Inc. and its subsidiaries" + ], + "ignorable_holders": [ + "Microchip Technology Inc. and its subsidiaries" + ] +} \ No newline at end of file diff --git a/docs/microchip-products-2018.yml b/docs/microchip-products-2018.yml new file mode 100644 index 0000000000..bf63cca4e1 --- /dev/null +++ b/docs/microchip-products-2018.yml @@ -0,0 +1,10 @@ +key: microchip-products-2018 +short_name: Microchip Products 2018 +name: Microchip Technology Products 2018 +category: Proprietary Free +owner: Microchip +spdx_license_key: LicenseRef-scancode-microchip-products-2018 +ignorable_copyrights: + - (c) 2018 Microchip Technology Inc. and its subsidiaries +ignorable_holders: + - Microchip Technology Inc. and its subsidiaries diff --git a/docs/microsoft-enterprise-library-eula.LICENSE b/docs/microsoft-enterprise-library-eula.LICENSE index d5e2547d75..fc02b0e6cd 100644 --- a/docs/microsoft-enterprise-library-eula.LICENSE +++ b/docs/microsoft-enterprise-library-eula.LICENSE @@ -1,3 +1,19 @@ +--- +key: microsoft-enterprise-library-eula +short_name: MS Enterprise Library EULA +name: Microsoft Enterprise Library EULA +category: Proprietary Free +owner: Microsoft +homepage_url: http://msdn.microsoft.com/en-us/library/ms998253 +spdx_license_key: LicenseRef-scancode-ms-enterprise-library-eula +other_spdx_license_keys: + - LicenseRef-scancode-microsoft-enterprise-library-eula +ignorable_copyrights: + - (c) 2005 Microsoft Corporation +ignorable_holders: + - Microsoft Corporation +--- + END USER LICENSE AGREEMENT: Enterprise Library diff --git a/docs/microsoft-enterprise-library-eula.html b/docs/microsoft-enterprise-library-eula.html index 7a8a0d95bf..ca6bc66902 100644 --- a/docs/microsoft-enterprise-library-eula.html +++ b/docs/microsoft-enterprise-library-eula.html @@ -191,7 +191,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/microsoft-enterprise-library-eula.json b/docs/microsoft-enterprise-library-eula.json index f8ceefe543..4dafadbc27 100644 --- a/docs/microsoft-enterprise-library-eula.json +++ b/docs/microsoft-enterprise-library-eula.json @@ -1 +1,18 @@ -{"key": "microsoft-enterprise-library-eula", "short_name": "MS Enterprise Library EULA", "name": "Microsoft Enterprise Library EULA", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://msdn.microsoft.com/en-us/library/ms998253", "spdx_license_key": "LicenseRef-scancode-ms-enterprise-library-eula", "other_spdx_license_keys": ["LicenseRef-scancode-microsoft-enterprise-library-eula"], "ignorable_copyrights": ["(c) 2005 Microsoft Corporation"], "ignorable_holders": ["Microsoft Corporation"]} \ No newline at end of file +{ + "key": "microsoft-enterprise-library-eula", + "short_name": "MS Enterprise Library EULA", + "name": "Microsoft Enterprise Library EULA", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://msdn.microsoft.com/en-us/library/ms998253", + "spdx_license_key": "LicenseRef-scancode-ms-enterprise-library-eula", + "other_spdx_license_keys": [ + "LicenseRef-scancode-microsoft-enterprise-library-eula" + ], + "ignorable_copyrights": [ + "(c) 2005 Microsoft Corporation" + ], + "ignorable_holders": [ + "Microsoft Corporation" + ] +} \ No newline at end of file diff --git a/docs/microsoft-windows-rally-devkit.LICENSE b/docs/microsoft-windows-rally-devkit.LICENSE index 26ba568148..c0d305e0c2 100644 --- a/docs/microsoft-windows-rally-devkit.LICENSE +++ b/docs/microsoft-windows-rally-devkit.LICENSE @@ -1,3 +1,16 @@ +--- +key: microsoft-windows-rally-devkit +short_name: MS Windows Rally Development Kit License +name: Microsoft Windows Rally Development Kit License +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-microsoft-windows-rally-devkit +ignorable_urls: + - http://www.microsoft.com/ + - http://www.microsoft.com/exporting + - http://www.microsoft.com/rally +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT WINDOWS RALLY DEVELOPMENT KIT These license terms are an agreement ("Agreement") between Microsoft Corporation (or based on where you live, one of its affiliates) and the individual or entity identified and signing below ("you"). They apply to the sample code for Link Layer Topology Discovery and Plug and Play Extensions ("Sample Code"), which includes the media on which you received the Sample Code, if any. The terms also apply to any Microsoft diff --git a/docs/microsoft-windows-rally-devkit.html b/docs/microsoft-windows-rally-devkit.html index ec7a633663..f72cd2def6 100644 --- a/docs/microsoft-windows-rally-devkit.html +++ b/docs/microsoft-windows-rally-devkit.html @@ -187,7 +187,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/microsoft-windows-rally-devkit.json b/docs/microsoft-windows-rally-devkit.json index f4e87088e2..3fdb28ad90 100644 --- a/docs/microsoft-windows-rally-devkit.json +++ b/docs/microsoft-windows-rally-devkit.json @@ -1 +1,13 @@ -{"key": "microsoft-windows-rally-devkit", "short_name": "MS Windows Rally Development Kit License", "name": "Microsoft Windows Rally Development Kit License", "category": "Proprietary Free", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-microsoft-windows-rally-devkit", "ignorable_urls": ["http://www.microsoft.com/", "http://www.microsoft.com/exporting", "http://www.microsoft.com/rally"]} \ No newline at end of file +{ + "key": "microsoft-windows-rally-devkit", + "short_name": "MS Windows Rally Development Kit License", + "name": "Microsoft Windows Rally Development Kit License", + "category": "Proprietary Free", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-microsoft-windows-rally-devkit", + "ignorable_urls": [ + "http://www.microsoft.com/", + "http://www.microsoft.com/exporting", + "http://www.microsoft.com/rally" + ] +} \ No newline at end of file diff --git a/docs/mif-exception.LICENSE b/docs/mif-exception.LICENSE index 7561bdbfc3..73d4d23bf1 100644 --- a/docs/mif-exception.LICENSE +++ b/docs/mif-exception.LICENSE @@ -1,3 +1,28 @@ +--- +key: mif-exception +short_name: Macros and Inline Functions Exception to GPL 2.0 +name: Macros and Inline Functions Exception to GPL 2.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: https://spdx.org/licenses/mif-exception.html +is_exception: yes +spdx_license_key: mif-exception +other_urls: + - http://dev.bertos.org/doxygen/ + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://www.scs.stanford.edu/histar/src/lib/cppsup/exception + - https://www.threadingbuildingblocks.org/licensing +standard_notice: | + As a special exception, you may use this file as part of a free software + library without restriction. Specifically, if other files instantiate + templates or use macros or inline functions from this file, or you compile + this file and link it with other files to produce an executable, this file + does not by itself cause the resulting executable to be covered by the GNU + General Public License. This exception does not however invalidate any + other reasons why the executable file might be covered by the GNU General + Public License. +--- + As a special exception, you may use this file as part of a free software library without restriction. Specifically, if other files instantiate templates or use macros or inline functions from this file, or you compile this file and link it diff --git a/docs/mif-exception.html b/docs/mif-exception.html index 64b648523e..237a5f111c 100644 --- a/docs/mif-exception.html +++ b/docs/mif-exception.html @@ -164,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mif-exception.json b/docs/mif-exception.json index 77bff73964..18a3c593ac 100644 --- a/docs/mif-exception.json +++ b/docs/mif-exception.json @@ -1 +1,17 @@ -{"key": "mif-exception", "short_name": "Macros and Inline Functions Exception to GPL 2.0", "name": "Macros and Inline Functions Exception to GPL 2.0", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "https://spdx.org/licenses/mif-exception.html", "is_exception": true, "spdx_license_key": "mif-exception", "other_urls": ["http://dev.bertos.org/doxygen/", "http://www.gnu.org/licenses/gpl-2.0.txt", "http://www.scs.stanford.edu/histar/src/lib/cppsup/exception", "https://www.threadingbuildingblocks.org/licensing"], "standard_notice": "As a special exception, you may use this file as part of a free software\nlibrary without restriction. Specifically, if other files instantiate\ntemplates or use macros or inline functions from this file, or you compile\nthis file and link it with other files to produce an executable, this file\ndoes not by itself cause the resulting executable to be covered by the GNU\nGeneral Public License. This exception does not however invalidate any\nother reasons why the executable file might be covered by the GNU General\nPublic License.\n"} \ No newline at end of file +{ + "key": "mif-exception", + "short_name": "Macros and Inline Functions Exception to GPL 2.0", + "name": "Macros and Inline Functions Exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "https://spdx.org/licenses/mif-exception.html", + "is_exception": true, + "spdx_license_key": "mif-exception", + "other_urls": [ + "http://dev.bertos.org/doxygen/", + "http://www.gnu.org/licenses/gpl-2.0.txt", + "http://www.scs.stanford.edu/histar/src/lib/cppsup/exception", + "https://www.threadingbuildingblocks.org/licensing" + ], + "standard_notice": "As a special exception, you may use this file as part of a free software\nlibrary without restriction. Specifically, if other files instantiate\ntemplates or use macros or inline functions from this file, or you compile\nthis file and link it with other files to produce an executable, this file\ndoes not by itself cause the resulting executable to be covered by the GNU\nGeneral Public License. This exception does not however invalidate any\nother reasons why the executable file might be covered by the GNU General\nPublic License.\n" +} \ No newline at end of file diff --git a/docs/mike95.LICENSE b/docs/mike95.LICENSE index 775b58e900..310faab656 100644 --- a/docs/mike95.LICENSE +++ b/docs/mike95.LICENSE @@ -1,3 +1,19 @@ +--- +key: mike95 +short_name: Mike95 License +name: Mike95 License +category: Free Restricted +owner: Mike95 +homepage_url: http://www.mike95.com/c_plusplus/classes/JString/JString_h.aspx +spdx_license_key: LicenseRef-scancode-mike95 +ignorable_authors: + - Michael Olivero +ignorable_urls: + - http://www.mike95.com/ +ignorable_emails: + - mike95@mike95.com +--- + This library was downloaded from: http://www.mike95.com This library is copyright. It may freely be used for personal purposes diff --git a/docs/mike95.html b/docs/mike95.html index ba5362bfa7..83fcfa4c89 100644 --- a/docs/mike95.html +++ b/docs/mike95.html @@ -175,7 +175,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mike95.json b/docs/mike95.json index 0d00dbf442..e7cb4d32d3 100644 --- a/docs/mike95.json +++ b/docs/mike95.json @@ -1 +1,18 @@ -{"key": "mike95", "short_name": "Mike95 License", "name": "Mike95 License", "category": "Free Restricted", "owner": "Mike95", "homepage_url": "http://www.mike95.com/c_plusplus/classes/JString/JString_h.aspx", "spdx_license_key": "LicenseRef-scancode-mike95", "ignorable_authors": ["Michael Olivero"], "ignorable_urls": ["http://www.mike95.com/"], "ignorable_emails": ["mike95@mike95.com"]} \ No newline at end of file +{ + "key": "mike95", + "short_name": "Mike95 License", + "name": "Mike95 License", + "category": "Free Restricted", + "owner": "Mike95", + "homepage_url": "http://www.mike95.com/c_plusplus/classes/JString/JString_h.aspx", + "spdx_license_key": "LicenseRef-scancode-mike95", + "ignorable_authors": [ + "Michael Olivero" + ], + "ignorable_urls": [ + "http://www.mike95.com/" + ], + "ignorable_emails": [ + "mike95@mike95.com" + ] +} \ No newline at end of file diff --git a/docs/minecraft-mod.LICENSE b/docs/minecraft-mod.LICENSE index b9db446355..fe814403c2 100644 --- a/docs/minecraft-mod.LICENSE +++ b/docs/minecraft-mod.LICENSE @@ -1,3 +1,14 @@ +--- +key: minecraft-mod +short_name: Minecraft Mod License +name: Minecraft Mod License +category: Proprietary Free +owner: Unspecified +homepage_url: https://bdew.net/ +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-minecraft-mod +--- + Minecraft: Denotes a copy of the Minecraft game licensed by Mojang AB User: Anybody that interacts with the software in one of the following ways: - play @@ -56,4 +67,4 @@ Minecraft code and the mod loading framework (e.g. ModLoader, ModLoaderMP or Bukkit). Modified version of binaries and sources, as well as files containing sections copied from this mod, should be distributed under the terms of the present -license. +license. \ No newline at end of file diff --git a/docs/minecraft-mod.html b/docs/minecraft-mod.html index a08d9187bf..42f08427a8 100644 --- a/docs/minecraft-mod.html +++ b/docs/minecraft-mod.html @@ -180,8 +180,7 @@ Bukkit). Modified version of binaries and sources, as well as files containing sections copied from this mod, should be distributed under the terms of the present -license. - +license.
@@ -193,7 +192,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/minecraft-mod.json b/docs/minecraft-mod.json index 599a56f02f..6687d317b7 100644 --- a/docs/minecraft-mod.json +++ b/docs/minecraft-mod.json @@ -1 +1,10 @@ -{"key": "minecraft-mod", "short_name": "Minecraft Mod License", "name": "Minecraft Mod License", "category": "Proprietary Free", "owner": "Unspecified", "homepage_url": "https://bdew.net/", "notes": "From https://github.com/ErikMcClure/bad-licenses", "spdx_license_key": "LicenseRef-scancode-minecraft-mod"} \ No newline at end of file +{ + "key": "minecraft-mod", + "short_name": "Minecraft Mod License", + "name": "Minecraft Mod License", + "category": "Proprietary Free", + "owner": "Unspecified", + "homepage_url": "https://bdew.net/", + "notes": "From https://github.com/ErikMcClure/bad-licenses", + "spdx_license_key": "LicenseRef-scancode-minecraft-mod" +} \ No newline at end of file diff --git a/docs/mini-xml-exception-lgpl-2.0.LICENSE b/docs/mini-xml-exception-lgpl-2.0.LICENSE index 9bdf90169f..26d7ce9c23 100644 --- a/docs/mini-xml-exception-lgpl-2.0.LICENSE +++ b/docs/mini-xml-exception-lgpl-2.0.LICENSE @@ -1,3 +1,47 @@ +--- +key: mini-xml-exception-lgpl-2.0 +short_name: Mini-XML exception to LGPL 2.0 +name: Mini-XML exception to LGPL 2.0 +category: Copyleft Limited +owner: Mini-XML +homepage_url: http://www.minixml.org/documentation.php/license.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-mini-xml-exception-lgpl-2.0 +other_urls: + - http://www.gnu.org/licenses/lgpl-2.0.txt +standard_notice: | + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Library General Public License as published by + the Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + This library is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public + License for more details. + You should have received a copy of the GNU Library General Public License + along with this library; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Mini-XML License (LGPL 2.0 with Exception) + The Mini-XML library and included programs are provided under the terms of + the GNU Library General Public License (LGPL) with the following + exceptions: + 1. Static linking of applications to the Mini-XML library does not + constitute a derivative work and does not require the author to provide + source code for the application, use the shared Mini-XML libraries, or link + their applications against a user-supplied version of Mini-XML. + If you link the application to a modified version of Mini-XML, then the + changes to Mini-XML must be provided under the terms of the LGPL in + sections 1, 2, and 4. + 2. You do not have to provide a copy of the Mini-XML license with programs + that are linked to the Mini-XML library, nor do you have to identify the + Mini-XML license in your program or documentation as required by section 6 + of the LGPL. + GNU Library General Public License (LGPL 2.0) + http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html - TOC1 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + Mini-XML License (LGPL 2.0 with Exception) The Mini-XML library and included programs are provided under the terms of the diff --git a/docs/mini-xml-exception-lgpl-2.0.html b/docs/mini-xml-exception-lgpl-2.0.html index eae8a30e1b..a056314678 100644 --- a/docs/mini-xml-exception-lgpl-2.0.html +++ b/docs/mini-xml-exception-lgpl-2.0.html @@ -198,7 +198,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mini-xml-exception-lgpl-2.0.json b/docs/mini-xml-exception-lgpl-2.0.json index a28b85a6a5..3b985ccd2a 100644 --- a/docs/mini-xml-exception-lgpl-2.0.json +++ b/docs/mini-xml-exception-lgpl-2.0.json @@ -1 +1,17 @@ -{"key": "mini-xml-exception-lgpl-2.0", "short_name": "Mini-XML exception to LGPL 2.0", "name": "Mini-XML exception to LGPL 2.0", "category": "Copyleft Limited", "owner": "Mini-XML", "homepage_url": "http://www.minixml.org/documentation.php/license.html", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-mini-xml-exception-lgpl-2.0", "other_urls": ["http://www.gnu.org/licenses/lgpl-2.0.txt"], "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or (at your\noption) any later version.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public\nLicense for more details.\nYou should have received a copy of the GNU Library General Public License\nalong with this library; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\nMini-XML License (LGPL 2.0 with Exception)\nThe Mini-XML library and included programs are provided under the terms of\nthe GNU Library General Public License (LGPL) with the following\nexceptions:\n1. Static linking of applications to the Mini-XML library does not\nconstitute a derivative work and does not require the author to provide\nsource code for the application, use the shared Mini-XML libraries, or link\ntheir applications against a user-supplied version of Mini-XML.\nIf you link the application to a modified version of Mini-XML, then the\nchanges to Mini-XML must be provided under the terms of the LGPL in\nsections 1, 2, and 4.\n2. You do not have to provide a copy of the Mini-XML license with programs\nthat are linked to the Mini-XML library, nor do you have to identify the\nMini-XML license in your program or documentation as required by section 6\nof the LGPL.\nGNU Library General Public License (LGPL 2.0)\nhttp://www.gnu.org/licenses/old-licenses/lgpl-2.0.html - TOC1\n", "ignorable_urls": ["http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html"]} \ No newline at end of file +{ + "key": "mini-xml-exception-lgpl-2.0", + "short_name": "Mini-XML exception to LGPL 2.0", + "name": "Mini-XML exception to LGPL 2.0", + "category": "Copyleft Limited", + "owner": "Mini-XML", + "homepage_url": "http://www.minixml.org/documentation.php/license.html", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-mini-xml-exception-lgpl-2.0", + "other_urls": [ + "http://www.gnu.org/licenses/lgpl-2.0.txt" + ], + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or (at your\noption) any later version.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public\nLicense for more details.\nYou should have received a copy of the GNU Library General Public License\nalong with this library; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\nMini-XML License (LGPL 2.0 with Exception)\nThe Mini-XML library and included programs are provided under the terms of\nthe GNU Library General Public License (LGPL) with the following\nexceptions:\n1. Static linking of applications to the Mini-XML library does not\nconstitute a derivative work and does not require the author to provide\nsource code for the application, use the shared Mini-XML libraries, or link\ntheir applications against a user-supplied version of Mini-XML.\nIf you link the application to a modified version of Mini-XML, then the\nchanges to Mini-XML must be provided under the terms of the LGPL in\nsections 1, 2, and 4.\n2. You do not have to provide a copy of the Mini-XML license with programs\nthat are linked to the Mini-XML library, nor do you have to identify the\nMini-XML license in your program or documentation as required by section 6\nof the LGPL.\nGNU Library General Public License (LGPL 2.0)\nhttp://www.gnu.org/licenses/old-licenses/lgpl-2.0.html - TOC1\n", + "ignorable_urls": [ + "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html" + ] +} \ No newline at end of file diff --git a/docs/mini-xml.LICENSE b/docs/mini-xml.LICENSE index 03624c4b54..5cf75a630b 100644 --- a/docs/mini-xml.LICENSE +++ b/docs/mini-xml.LICENSE @@ -1,3 +1,17 @@ +--- +key: mini-xml +is_deprecated: yes +short_name: LGPL 2.0 with Mini-XML exception +name: LGPL 2.0 with Mini-XML exception +category: Copyleft Limited +owner: Mini-XML +homepage_url: http://www.minixml.org/documentation.php/license.html +notes: replaced by mini-xml-exception-lgpl-2.0 +is_exception: yes +text_urls: + - http://www.minixml.org/documentation.php/license.html +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. diff --git a/docs/mini-xml.html b/docs/mini-xml.html index cc1ac77d73..5578958c44 100644 --- a/docs/mini-xml.html +++ b/docs/mini-xml.html @@ -166,7 +166,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mini-xml.json b/docs/mini-xml.json index a683ed56e6..25d44fe734 100644 --- a/docs/mini-xml.json +++ b/docs/mini-xml.json @@ -1 +1,14 @@ -{"key": "mini-xml", "is_deprecated": true, "short_name": "LGPL 2.0 with Mini-XML exception", "name": "LGPL 2.0 with Mini-XML exception", "category": "Copyleft Limited", "owner": "Mini-XML", "homepage_url": "http://www.minixml.org/documentation.php/license.html", "notes": "replaced by mini-xml-exception-lgpl-2.0", "is_exception": true, "text_urls": ["http://www.minixml.org/documentation.php/license.html"]} \ No newline at end of file +{ + "key": "mini-xml", + "is_deprecated": true, + "short_name": "LGPL 2.0 with Mini-XML exception", + "name": "LGPL 2.0 with Mini-XML exception", + "category": "Copyleft Limited", + "owner": "Mini-XML", + "homepage_url": "http://www.minixml.org/documentation.php/license.html", + "notes": "replaced by mini-xml-exception-lgpl-2.0", + "is_exception": true, + "text_urls": [ + "http://www.minixml.org/documentation.php/license.html" + ] +} \ No newline at end of file diff --git a/docs/minpack.LICENSE b/docs/minpack.LICENSE index 4cb38b5725..4970a63d99 100644 --- a/docs/minpack.LICENSE +++ b/docs/minpack.LICENSE @@ -1,3 +1,23 @@ +--- +key: minpack +short_name: Minpack Copyright Notice +name: Minpack Copyright Notice +category: Permissive +owner: University of Chicago +homepage_url: http://www.netlib.org/minpack/disclaimer +spdx_license_key: Minpack +other_spdx_license_keys: + - LicenseRef-scancode-minpack +text_urls: + - http://www.netlib.org/minpack/disclaimer +other_urls: + - https://gitlab.com/libeigen/eigen/-/blob/master/COPYING.MINPACK +ignorable_authors: + - the University of Chicago +--- + +Minpack Copyright Notice (1999) University of Chicago. All rights reserved + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/minpack.html b/docs/minpack.html index 04935dace3..adb09a4f11 100644 --- a/docs/minpack.html +++ b/docs/minpack.html @@ -99,10 +99,26 @@ +
homepage_url
+
+ + http://www.netlib.org/minpack/disclaimer + +
+
spdx_license_key
- LicenseRef-scancode-minpack + Minpack + +
+ +
other_spdx_license_keys
+
+ +
    +
  • LicenseRef-scancode-minpack
  • +
@@ -115,6 +131,15 @@ +
other_urls
+
+ + + +
+
ignorable_authors
@@ -126,7 +151,9 @@
license_text
-
Redistribution and use in source and binary forms, with or
+    
Minpack Copyright Notice (1999) University of Chicago.  All rights reserved
+
+Redistribution and use in source and binary forms, with or
 without modification, are permitted provided that the
 following conditions are met:
 
@@ -186,7 +213,8 @@
       AboutCode
     

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/minpack.json b/docs/minpack.json index c33b65890b..f330b99263 100644 --- a/docs/minpack.json +++ b/docs/minpack.json @@ -1 +1,21 @@ -{"key": "minpack", "short_name": "Minpack Copyright Notice", "name": "Minpack Copyright Notice", "category": "Permissive", "owner": "University of Chicago", "spdx_license_key": "LicenseRef-scancode-minpack", "text_urls": ["http://www.netlib.org/minpack/disclaimer"], "ignorable_authors": ["the University of Chicago"]} \ No newline at end of file +{ + "key": "minpack", + "short_name": "Minpack Copyright Notice", + "name": "Minpack Copyright Notice", + "category": "Permissive", + "owner": "University of Chicago", + "homepage_url": "http://www.netlib.org/minpack/disclaimer", + "spdx_license_key": "Minpack", + "other_spdx_license_keys": [ + "LicenseRef-scancode-minpack" + ], + "text_urls": [ + "http://www.netlib.org/minpack/disclaimer" + ], + "other_urls": [ + "https://gitlab.com/libeigen/eigen/-/blob/master/COPYING.MINPACK" + ], + "ignorable_authors": [ + "the University of Chicago" + ] +} \ No newline at end of file diff --git a/docs/minpack.yml b/docs/minpack.yml index 93fdc8280f..344f40a7cf 100644 --- a/docs/minpack.yml +++ b/docs/minpack.yml @@ -3,8 +3,13 @@ short_name: Minpack Copyright Notice name: Minpack Copyright Notice category: Permissive owner: University of Chicago -spdx_license_key: LicenseRef-scancode-minpack +homepage_url: http://www.netlib.org/minpack/disclaimer +spdx_license_key: Minpack +other_spdx_license_keys: + - LicenseRef-scancode-minpack text_urls: - http://www.netlib.org/minpack/disclaimer +other_urls: + - https://gitlab.com/libeigen/eigen/-/blob/master/COPYING.MINPACK ignorable_authors: - the University of Chicago diff --git a/docs/mir-os.LICENSE b/docs/mir-os.LICENSE index bab7895abc..c6bef23b36 100644 --- a/docs/mir-os.LICENSE +++ b/docs/mir-os.LICENSE @@ -1,3 +1,21 @@ +--- +key: mir-os +short_name: MirOS License +name: MirOS License +category: Permissive +owner: MirOS Project +homepage_url: https://www.mirbsd.org/MirOS-Licence +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: MirOS +text_urls: + - http://opensource.org/licenses/miros.html + - https://www.mirbsd.org/about.htm#licence +osi_url: http://opensource.org/licenses/miros.html +other_urls: + - http://www.opensource.org/licenses/MirOS + - https://opensource.org/licenses/MirOS +--- + Provided that these terms and disclaimer and all copyright notices are retained or reproduced in an accompanying document, permission is granted to deal in this work without restriction, including un‐ @@ -11,4 +29,4 @@ may a licensor, author or contributor be held liable for indirect, direct, other damage, loss, or other issues arising in any way out of dealing in the work, even if advised of the possibility of such damage or existence of a defect, except proven that it results out -of said person's immediate fault when using the work as intended. +of said person's immediate fault when using the work as intended. \ No newline at end of file diff --git a/docs/mir-os.html b/docs/mir-os.html index d5563d33c9..ebfee99e54 100644 --- a/docs/mir-os.html +++ b/docs/mir-os.html @@ -160,8 +160,7 @@ direct, other damage, loss, or other issues arising in any way out of dealing in the work, even if advised of the possibility of such damage or existence of a defect, except proven that it results out -of said person's immediate fault when using the work as intended. -
+of said person's immediate fault when using the work as intended.
@@ -173,7 +172,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mir-os.json b/docs/mir-os.json index 60bcfb9830..6bf886a2e5 100644 --- a/docs/mir-os.json +++ b/docs/mir-os.json @@ -1 +1,19 @@ -{"key": "mir-os", "short_name": "MirOS License", "name": "MirOS License", "category": "Permissive", "owner": "MirOS Project", "homepage_url": "https://www.mirbsd.org/MirOS-Licence", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "MirOS", "text_urls": ["http://opensource.org/licenses/miros.html", "https://www.mirbsd.org/about.htm#licence"], "osi_url": "http://opensource.org/licenses/miros.html", "other_urls": ["http://www.opensource.org/licenses/MirOS", "https://opensource.org/licenses/MirOS"]} \ No newline at end of file +{ + "key": "mir-os", + "short_name": "MirOS License", + "name": "MirOS License", + "category": "Permissive", + "owner": "MirOS Project", + "homepage_url": "https://www.mirbsd.org/MirOS-Licence", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "MirOS", + "text_urls": [ + "http://opensource.org/licenses/miros.html", + "https://www.mirbsd.org/about.htm#licence" + ], + "osi_url": "http://opensource.org/licenses/miros.html", + "other_urls": [ + "http://www.opensource.org/licenses/MirOS", + "https://opensource.org/licenses/MirOS" + ] +} \ No newline at end of file diff --git a/docs/mit-0.LICENSE b/docs/mit-0.LICENSE index 1d54927a3c..934de29eef 100644 --- a/docs/mit-0.LICENSE +++ b/docs/mit-0.LICENSE @@ -1,3 +1,23 @@ +--- +key: mit-0 +short_name: MIT-0-Clause +name: MIT No Attribution +category: Permissive +owner: Amazon Web Services +homepage_url: https://github.com/awsdocs/aws-cloud9-user-guide/blob/master/LICENSE-SAMPLECODE +notes: | + The former ekioh license has been deprecated in favor of this license. Except + for the dangling ", subject to the following conditions:" text, the ekioh + license is essentially identical to the mit-0. +spdx_license_key: MIT-0 +other_spdx_license_keys: + - LicenseRef-scancode-ekioh +other_urls: + - https://github.com/aws/mit-0 + - https://romanrm.net/mit-zero + - https://kryogenix.org/code/browser/licence.html +--- + 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, diff --git a/docs/mit-0.html b/docs/mit-0.html index b2744a42b2..9c1b17b49f 100644 --- a/docs/mit-0.html +++ b/docs/mit-0.html @@ -166,7 +166,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-0.json b/docs/mit-0.json index a6ecb4b691..26d5444266 100644 --- a/docs/mit-0.json +++ b/docs/mit-0.json @@ -1 +1,18 @@ -{"key": "mit-0", "short_name": "MIT-0-Clause", "name": "MIT No Attribution", "category": "Permissive", "owner": "Amazon Web Services", "homepage_url": "https://github.com/awsdocs/aws-cloud9-user-guide/blob/master/LICENSE-SAMPLECODE", "notes": "The former ekioh license has been deprecated in favor of this license. Except\nfor the dangling \", subject to the following conditions:\" text, the ekioh\nlicense is essentially identical to the mit-0.\n", "spdx_license_key": "MIT-0", "other_spdx_license_keys": ["LicenseRef-scancode-ekioh"], "other_urls": ["https://github.com/aws/mit-0", "https://romanrm.net/mit-zero", "https://kryogenix.org/code/browser/licence.html"]} \ No newline at end of file +{ + "key": "mit-0", + "short_name": "MIT-0-Clause", + "name": "MIT No Attribution", + "category": "Permissive", + "owner": "Amazon Web Services", + "homepage_url": "https://github.com/awsdocs/aws-cloud9-user-guide/blob/master/LICENSE-SAMPLECODE", + "notes": "The former ekioh license has been deprecated in favor of this license. Except\nfor the dangling \", subject to the following conditions:\" text, the ekioh\nlicense is essentially identical to the mit-0.\n", + "spdx_license_key": "MIT-0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ekioh" + ], + "other_urls": [ + "https://github.com/aws/mit-0", + "https://romanrm.net/mit-zero", + "https://kryogenix.org/code/browser/licence.html" + ] +} \ No newline at end of file diff --git a/docs/mit-1995.LICENSE b/docs/mit-1995.LICENSE index 2a62d4ef08..e539d2a615 100644 --- a/docs/mit-1995.LICENSE +++ b/docs/mit-1995.LICENSE @@ -1,3 +1,17 @@ +--- +key: mit-1995 +short_name: MIT 1995 +name: MIT INRIA W3C 1995 +category: Permissive +owner: MIT +homepage_url: https://github.com/robaho/lrmp/blob/master/java/main/inria/net/lrmp/Lrmp.java +spdx_license_key: LicenseRef-scancode-mit-1995 +ignorable_copyrights: + - COPYRIGHT 1995 BY MASSACHUSETTS INSTITUTE OF TECHNOLOGY (MIT), INRIA +ignorable_holders: + - MASSACHUSETTS INSTITUTE OF TECHNOLOGY (MIT), INRIA +--- + COPYRIGHT 1995 BY: MASSACHUSETTS INSTITUTE OF TECHNOLOGY (MIT), INRIA This W3C software is being provided by the copyright holders under the diff --git a/docs/mit-1995.html b/docs/mit-1995.html index 23cf2066b1..387dce0832 100644 --- a/docs/mit-1995.html +++ b/docs/mit-1995.html @@ -169,7 +169,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-1995.json b/docs/mit-1995.json index 66ab63b3d6..d10112bc24 100644 --- a/docs/mit-1995.json +++ b/docs/mit-1995.json @@ -1 +1,15 @@ -{"key": "mit-1995", "short_name": "MIT 1995", "name": "MIT INRIA W3C 1995", "category": "Permissive", "owner": "MIT", "homepage_url": "https://github.com/robaho/lrmp/blob/master/java/main/inria/net/lrmp/Lrmp.java", "spdx_license_key": "LicenseRef-scancode-mit-1995", "ignorable_copyrights": ["COPYRIGHT 1995 BY MASSACHUSETTS INSTITUTE OF TECHNOLOGY (MIT), INRIA"], "ignorable_holders": ["MASSACHUSETTS INSTITUTE OF TECHNOLOGY (MIT), INRIA"]} \ No newline at end of file +{ + "key": "mit-1995", + "short_name": "MIT 1995", + "name": "MIT INRIA W3C 1995", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "https://github.com/robaho/lrmp/blob/master/java/main/inria/net/lrmp/Lrmp.java", + "spdx_license_key": "LicenseRef-scancode-mit-1995", + "ignorable_copyrights": [ + "COPYRIGHT 1995 BY MASSACHUSETTS INSTITUTE OF TECHNOLOGY (MIT), INRIA" + ], + "ignorable_holders": [ + "MASSACHUSETTS INSTITUTE OF TECHNOLOGY (MIT), INRIA" + ] +} \ No newline at end of file diff --git a/docs/mit-ack.LICENSE b/docs/mit-ack.LICENSE index 5f7a62c631..ef326ebbce 100644 --- a/docs/mit-ack.LICENSE +++ b/docs/mit-ack.LICENSE @@ -1,3 +1,15 @@ +--- +key: mit-ack +short_name: MIT Acknowledgment License +name: MIT Acknowledgment License +category: Permissive +owner: Unspecified +homepage_url: https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#feh +spdx_license_key: MIT-feh +other_urls: + - https://fedoraproject.org/wiki/Licensing/MIT#feh +--- + 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, diff --git a/docs/mit-ack.html b/docs/mit-ack.html index 2c99456376..8615218b84 100644 --- a/docs/mit-ack.html +++ b/docs/mit-ack.html @@ -152,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-ack.json b/docs/mit-ack.json index 3675322d71..011b5f41fe 100644 --- a/docs/mit-ack.json +++ b/docs/mit-ack.json @@ -1 +1,12 @@ -{"key": "mit-ack", "short_name": "MIT Acknowledgment License", "name": "MIT Acknowledgment License", "category": "Permissive", "owner": "Unspecified", "homepage_url": "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#feh", "spdx_license_key": "MIT-feh", "other_urls": ["https://fedoraproject.org/wiki/Licensing/MIT#feh"]} \ No newline at end of file +{ + "key": "mit-ack", + "short_name": "MIT Acknowledgment License", + "name": "MIT Acknowledgment License", + "category": "Permissive", + "owner": "Unspecified", + "homepage_url": "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#feh", + "spdx_license_key": "MIT-feh", + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/MIT#feh" + ] +} \ No newline at end of file diff --git a/docs/mit-addition.LICENSE b/docs/mit-addition.LICENSE index c5d988fb1a..68900256c7 100644 --- a/docs/mit-addition.LICENSE +++ b/docs/mit-addition.LICENSE @@ -1,3 +1,16 @@ +--- +key: mit-addition +short_name: MIT Addition License +name: MIT Addition License +category: Permissive +owner: Tom Wu +homepage_url: http://www-cs-students.stanford.edu/~tjw/jsbn/LICENSE +spdx_license_key: LicenseRef-scancode-mit-addition +other_urls: + - http://www-cs-students.stanford.edu/~tjw/jsbn/ +minimum_coverage: 90 +--- + 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 diff --git a/docs/mit-addition.html b/docs/mit-addition.html index ed074cb8fc..affa9a513d 100644 --- a/docs/mit-addition.html +++ b/docs/mit-addition.html @@ -167,7 +167,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-addition.json b/docs/mit-addition.json index e4f1a0732c..d0e2a28e5d 100644 --- a/docs/mit-addition.json +++ b/docs/mit-addition.json @@ -1 +1,13 @@ -{"key": "mit-addition", "short_name": "MIT Addition License", "name": "MIT Addition License", "category": "Permissive", "owner": "Tom Wu", "homepage_url": "http://www-cs-students.stanford.edu/~tjw/jsbn/LICENSE", "spdx_license_key": "LicenseRef-scancode-mit-addition", "other_urls": ["http://www-cs-students.stanford.edu/~tjw/jsbn/"], "minimum_coverage": 90} \ No newline at end of file +{ + "key": "mit-addition", + "short_name": "MIT Addition License", + "name": "MIT Addition License", + "category": "Permissive", + "owner": "Tom Wu", + "homepage_url": "http://www-cs-students.stanford.edu/~tjw/jsbn/LICENSE", + "spdx_license_key": "LicenseRef-scancode-mit-addition", + "other_urls": [ + "http://www-cs-students.stanford.edu/~tjw/jsbn/" + ], + "minimum_coverage": 90 +} \ No newline at end of file diff --git a/docs/mit-export-control.LICENSE b/docs/mit-export-control.LICENSE index e14b21ca3d..c1a95c9260 100644 --- a/docs/mit-export-control.LICENSE +++ b/docs/mit-export-control.LICENSE @@ -1,3 +1,18 @@ +--- +key: mit-export-control +short_name: MIT with Export Control +name: MIT with Export Control +category: Permissive +owner: Xerox PARC +homepage_url: https://fedoraproject.org/wiki/Licensing:Xerox?rd=Licensing/Xerox +notes: | + Per Fedora, this license is very similar to MIT, except that it requires + that US Export Control laws be followed, which makes it GPL-Incompatible. +spdx_license_key: Xerox +other_urls: + - https://fedoraproject.org/wiki/Licensing/Xerox +--- + Use and copying of this software and preparation of derivative works based upon this software are permitted. Any copy of this software or of any derivative work must include the above copyright notice of diff --git a/docs/mit-export-control.html b/docs/mit-export-control.html index 391f6d1499..115fcde591 100644 --- a/docs/mit-export-control.html +++ b/docs/mit-export-control.html @@ -159,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-export-control.json b/docs/mit-export-control.json index 73652e985a..c1bdbcdf77 100644 --- a/docs/mit-export-control.json +++ b/docs/mit-export-control.json @@ -1 +1,13 @@ -{"key": "mit-export-control", "short_name": "MIT with Export Control", "name": "MIT with Export Control", "category": "Permissive", "owner": "Xerox PARC", "homepage_url": "https://fedoraproject.org/wiki/Licensing:Xerox?rd=Licensing/Xerox", "notes": "Per Fedora, this license is very similar to MIT, except that it requires\nthat US Export Control laws be followed, which makes it GPL-Incompatible.\n", "spdx_license_key": "Xerox", "other_urls": ["https://fedoraproject.org/wiki/Licensing/Xerox"]} \ No newline at end of file +{ + "key": "mit-export-control", + "short_name": "MIT with Export Control", + "name": "MIT with Export Control", + "category": "Permissive", + "owner": "Xerox PARC", + "homepage_url": "https://fedoraproject.org/wiki/Licensing:Xerox?rd=Licensing/Xerox", + "notes": "Per Fedora, this license is very similar to MIT, except that it requires\nthat US Export Control laws be followed, which makes it GPL-Incompatible.\n", + "spdx_license_key": "Xerox", + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/Xerox" + ] +} \ No newline at end of file diff --git a/docs/mit-license-1998.LICENSE b/docs/mit-license-1998.LICENSE index 0424496c1c..b8070378c8 100644 --- a/docs/mit-license-1998.LICENSE +++ b/docs/mit-license-1998.LICENSE @@ -1,3 +1,12 @@ +--- +key: mit-license-1998 +short_name: MIT License 1998 +name: MIT License 1998 +category: Permissive +owner: MIT +spdx_license_key: LicenseRef-scancode-mit-license-1998 +--- + Permission to use, copy, modify and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that both the above copyright notice and this permission @@ -20,4 +29,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/docs/mit-license-1998.html b/docs/mit-license-1998.html index cd53cf09e2..6186ae1eeb 100644 --- a/docs/mit-license-1998.html +++ b/docs/mit-license-1998.html @@ -130,8 +130,7 @@ 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. - +SUCH DAMAGE.
@@ -143,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-license-1998.json b/docs/mit-license-1998.json index 87254df2ad..538b4785a9 100644 --- a/docs/mit-license-1998.json +++ b/docs/mit-license-1998.json @@ -1 +1,8 @@ -{"key": "mit-license-1998", "short_name": "MIT License 1998", "name": "MIT License 1998", "category": "Permissive", "owner": "MIT", "spdx_license_key": "LicenseRef-scancode-mit-license-1998"} \ No newline at end of file +{ + "key": "mit-license-1998", + "short_name": "MIT License 1998", + "name": "MIT License 1998", + "category": "Permissive", + "owner": "MIT", + "spdx_license_key": "LicenseRef-scancode-mit-license-1998" +} \ No newline at end of file diff --git a/docs/mit-modern.LICENSE b/docs/mit-modern.LICENSE index a41ab02634..7b54bdaf9c 100644 --- a/docs/mit-modern.LICENSE +++ b/docs/mit-modern.LICENSE @@ -1,3 +1,21 @@ +--- +key: mit-modern +short_name: MIT Modern Variant +name: MIT Modern Variant +category: Permissive +owner: Fedora +homepage_url: http://fedoraproject.org/wiki/Licensing/MIT +spdx_license_key: MIT-Modern-Variant +other_spdx_license_keys: + - LicenseRef-scancode-mit-modern +text_urls: + - http://fedoraproject.org/wiki/Licensing/MIT +other_urls: + - https://fedoraproject.org/wiki/Licensing:MIT#Modern_Variants + - https://ptolemy.berkeley.edu/copyright.htm + - https://pirlwww.lpl.arizona.edu/resources/guide/software/PerlTk/Tixlic.html +--- + Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this software and its documentation for any purpose, provided that the diff --git a/docs/mit-modern.html b/docs/mit-modern.html index 30a4512e9a..e3c263234c 100644 --- a/docs/mit-modern.html +++ b/docs/mit-modern.html @@ -170,7 +170,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-modern.json b/docs/mit-modern.json index 86d353cbe9..330d1bc1e2 100644 --- a/docs/mit-modern.json +++ b/docs/mit-modern.json @@ -1 +1,20 @@ -{"key": "mit-modern", "short_name": "MIT Modern Variant", "name": "MIT Modern Variant", "category": "Permissive", "owner": "Fedora", "homepage_url": "http://fedoraproject.org/wiki/Licensing/MIT", "spdx_license_key": "MIT-Modern-Variant", "other_spdx_license_keys": ["LicenseRef-scancode-mit-modern"], "text_urls": ["http://fedoraproject.org/wiki/Licensing/MIT"], "other_urls": ["https://fedoraproject.org/wiki/Licensing:MIT#Modern_Variants", "https://ptolemy.berkeley.edu/copyright.htm", "https://pirlwww.lpl.arizona.edu/resources/guide/software/PerlTk/Tixlic.html"]} \ No newline at end of file +{ + "key": "mit-modern", + "short_name": "MIT Modern Variant", + "name": "MIT Modern Variant", + "category": "Permissive", + "owner": "Fedora", + "homepage_url": "http://fedoraproject.org/wiki/Licensing/MIT", + "spdx_license_key": "MIT-Modern-Variant", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mit-modern" + ], + "text_urls": [ + "http://fedoraproject.org/wiki/Licensing/MIT" + ], + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing:MIT#Modern_Variants", + "https://ptolemy.berkeley.edu/copyright.htm", + "https://pirlwww.lpl.arizona.edu/resources/guide/software/PerlTk/Tixlic.html" + ] +} \ No newline at end of file diff --git a/docs/mit-nagy.LICENSE b/docs/mit-nagy.LICENSE index dc5d5957b6..73bfd195fe 100644 --- a/docs/mit-nagy.LICENSE +++ b/docs/mit-nagy.LICENSE @@ -1,3 +1,15 @@ +--- +key: mit-nagy +short_name: MIT Nagy Variant +name: MIT Szabolcs Nagy Variant +category: Permissive +owner: Szabolcs Nagy +notes: this MIT-like variant is found in the musl library +spdx_license_key: LicenseRef-scancode-mit-nagy +text_urls: + - https://git.musl-libc.org/cgit/musl/commit/src/prng/random.c?id=1569f396bb76e9d54f6c4492ed6778e37b87bc70 +--- + Permission to use, copy, modify, and/or distribute this code for any purpose with or without fee is hereby granted. There is no warranty. \ No newline at end of file diff --git a/docs/mit-nagy.html b/docs/mit-nagy.html index 155af28995..e46336e80b 100644 --- a/docs/mit-nagy.html +++ b/docs/mit-nagy.html @@ -138,7 +138,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-nagy.json b/docs/mit-nagy.json index 9c5d5f000d..6149c0f797 100644 --- a/docs/mit-nagy.json +++ b/docs/mit-nagy.json @@ -1 +1,12 @@ -{"key": "mit-nagy", "short_name": "MIT Nagy Variant", "name": "MIT Szabolcs Nagy Variant", "category": "Permissive", "owner": "Szabolcs Nagy", "notes": "this MIT-like variant is found in the musl library", "spdx_license_key": "LicenseRef-scancode-mit-nagy", "text_urls": ["https://git.musl-libc.org/cgit/musl/commit/src/prng/random.c?id=1569f396bb76e9d54f6c4492ed6778e37b87bc70"]} \ No newline at end of file +{ + "key": "mit-nagy", + "short_name": "MIT Nagy Variant", + "name": "MIT Szabolcs Nagy Variant", + "category": "Permissive", + "owner": "Szabolcs Nagy", + "notes": "this MIT-like variant is found in the musl library", + "spdx_license_key": "LicenseRef-scancode-mit-nagy", + "text_urls": [ + "https://git.musl-libc.org/cgit/musl/commit/src/prng/random.c?id=1569f396bb76e9d54f6c4492ed6778e37b87bc70" + ] +} \ No newline at end of file diff --git a/docs/mit-no-advert-export-control.LICENSE b/docs/mit-no-advert-export-control.LICENSE index 6c9917cb76..baa7b00154 100644 --- a/docs/mit-no-advert-export-control.LICENSE +++ b/docs/mit-no-advert-export-control.LICENSE @@ -1,3 +1,17 @@ +--- +key: mit-no-advert-export-control +short_name: MIT no advertising with Export Control +name: MIT no advertising with Export Control +category: Permissive +owner: Xerox Corporation +homepage_url: https://fedoraproject.org/wiki/Licensing:Xerox?rd=Licensing/Xerox +notes: | + Per Fedora, this license is very similar to MIT, except that it requires + that US Export Control laws be followed, which makes it GPL-Incompatible. +spdx_license_key: LicenseRef-scancode-mit-no-advert-export-control +minimum_coverage: 70 +--- + Export of this software from the United States of America may require a specific license from the United States Government. It is the responsibility of any person or organization contemplating export to obtain such a license before @@ -15,4 +29,4 @@ implied warranty. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF -MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. +MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/docs/mit-no-advert-export-control.html b/docs/mit-no-advert-export-control.html index e7d2744e12..10a1950b20 100644 --- a/docs/mit-no-advert-export-control.html +++ b/docs/mit-no-advert-export-control.html @@ -148,8 +148,7 @@ THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF -MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - +MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
@@ -161,7 +160,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-no-advert-export-control.json b/docs/mit-no-advert-export-control.json index 34204d903a..f70054672f 100644 --- a/docs/mit-no-advert-export-control.json +++ b/docs/mit-no-advert-export-control.json @@ -1 +1,11 @@ -{"key": "mit-no-advert-export-control", "short_name": "MIT no advertising with Export Control", "name": "MIT no advertising with Export Control", "category": "Permissive", "owner": "Xerox Corporation", "homepage_url": "https://fedoraproject.org/wiki/Licensing:Xerox?rd=Licensing/Xerox", "notes": "Per Fedora, this license is very similar to MIT, except that it requires\nthat US Export Control laws be followed, which makes it GPL-Incompatible.\n", "spdx_license_key": "LicenseRef-scancode-mit-no-advert-export-control", "minimum_coverage": 70} \ No newline at end of file +{ + "key": "mit-no-advert-export-control", + "short_name": "MIT no advertising with Export Control", + "name": "MIT no advertising with Export Control", + "category": "Permissive", + "owner": "Xerox Corporation", + "homepage_url": "https://fedoraproject.org/wiki/Licensing:Xerox?rd=Licensing/Xerox", + "notes": "Per Fedora, this license is very similar to MIT, except that it requires\nthat US Export Control laws be followed, which makes it GPL-Incompatible.\n", + "spdx_license_key": "LicenseRef-scancode-mit-no-advert-export-control", + "minimum_coverage": 70 +} \ No newline at end of file diff --git a/docs/mit-no-false-attribs.LICENSE b/docs/mit-no-false-attribs.LICENSE index 7cd66d4283..a1ca3ee5d3 100644 --- a/docs/mit-no-false-attribs.LICENSE +++ b/docs/mit-no-false-attribs.LICENSE @@ -1,3 +1,17 @@ +--- +key: mit-no-false-attribs +short_name: MIT no false attribution License +name: MIT with no false attribution License +category: Permissive +owner: npm Registry +homepage_url: https://fedoraproject.org/wiki/Licensing/MITNFA +notes: | + Per Fedora, this license is based on the MIT license, but contains an + additional section covering the removal of attributions in certain + modification scenarios. It is Free and GPL-compatible. Use License MITNFA +spdx_license_key: MITNFA +--- + 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 diff --git a/docs/mit-no-false-attribs.html b/docs/mit-no-false-attribs.html index 7d4ee0a9b6..3b770fa6d8 100644 --- a/docs/mit-no-false-attribs.html +++ b/docs/mit-no-false-attribs.html @@ -165,7 +165,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-no-false-attribs.json b/docs/mit-no-false-attribs.json index cfc09d8c86..59f693608b 100644 --- a/docs/mit-no-false-attribs.json +++ b/docs/mit-no-false-attribs.json @@ -1 +1,10 @@ -{"key": "mit-no-false-attribs", "short_name": "MIT no false attribution License", "name": "MIT with no false attribution License", "category": "Permissive", "owner": "npm Registry", "homepage_url": "https://fedoraproject.org/wiki/Licensing/MITNFA", "notes": "Per Fedora, this license is based on the MIT license, but contains an\nadditional section covering the removal of attributions in certain\nmodification scenarios. It is Free and GPL-compatible. Use License MITNFA\n", "spdx_license_key": "MITNFA"} \ No newline at end of file +{ + "key": "mit-no-false-attribs", + "short_name": "MIT no false attribution License", + "name": "MIT with no false attribution License", + "category": "Permissive", + "owner": "npm Registry", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/MITNFA", + "notes": "Per Fedora, this license is based on the MIT license, but contains an\nadditional section covering the removal of attributions in certain\nmodification scenarios. It is Free and GPL-compatible. Use License MITNFA\n", + "spdx_license_key": "MITNFA" +} \ No newline at end of file diff --git a/docs/mit-no-trademarks.LICENSE b/docs/mit-no-trademarks.LICENSE index e8aedf6baa..e7c0b08d4f 100644 --- a/docs/mit-no-trademarks.LICENSE +++ b/docs/mit-no-trademarks.LICENSE @@ -1,3 +1,17 @@ +--- +key: mit-no-trademarks +short_name: MIT No Commercial Use of Trademarks +name: MIT No Commercial Use of Trademarks +category: Permissive +owner: MIT +homepage_url: http://web.mit.edu/ivlib/www/copyright.html +spdx_license_key: LicenseRef-scancode-mit-no-trademarks +ignorable_copyrights: + - Copyright 1995 by the Massachusetts Institute of Technology +ignorable_holders: + - the Massachusetts Institute of Technology +--- + MIT Copyright Notice Project Athena, Athena Dashboard, Athena MUSE, Kerberos, X Window System, @@ -30,4 +44,4 @@ RIGHTS. The name of the Massachusetts Institute of Technology or M.I.T. may NOT be used in advertising or publicity pertaining to distribution of the software. Title to copyright in this software and any associated documentation shall at all times -remain with M.I.T., and LICENSEE agrees to preserve same. +remain with M.I.T., and LICENSEE agrees to preserve same. \ No newline at end of file diff --git a/docs/mit-no-trademarks.html b/docs/mit-no-trademarks.html index f0571c338a..b0debf47a4 100644 --- a/docs/mit-no-trademarks.html +++ b/docs/mit-no-trademarks.html @@ -165,8 +165,7 @@ The name of the Massachusetts Institute of Technology or M.I.T. may NOT be used in advertising or publicity pertaining to distribution of the software. Title to copyright in this software and any associated documentation shall at all times -remain with M.I.T., and LICENSEE agrees to preserve same. - +remain with M.I.T., and LICENSEE agrees to preserve same.
@@ -178,7 +177,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-no-trademarks.json b/docs/mit-no-trademarks.json index 22aa38c728..dec2209319 100644 --- a/docs/mit-no-trademarks.json +++ b/docs/mit-no-trademarks.json @@ -1 +1,15 @@ -{"key": "mit-no-trademarks", "short_name": "MIT No Commercial Use of Trademarks", "name": "MIT No Commercial Use of Trademarks", "category": "Permissive", "owner": "MIT", "homepage_url": "http://web.mit.edu/ivlib/www/copyright.html", "spdx_license_key": "LicenseRef-scancode-mit-no-trademarks", "ignorable_copyrights": ["Copyright 1995 by the Massachusetts Institute of Technology"], "ignorable_holders": ["the Massachusetts Institute of Technology"]} \ No newline at end of file +{ + "key": "mit-no-trademarks", + "short_name": "MIT No Commercial Use of Trademarks", + "name": "MIT No Commercial Use of Trademarks", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://web.mit.edu/ivlib/www/copyright.html", + "spdx_license_key": "LicenseRef-scancode-mit-no-trademarks", + "ignorable_copyrights": [ + "Copyright 1995 by the Massachusetts Institute of Technology" + ], + "ignorable_holders": [ + "the Massachusetts Institute of Technology" + ] +} \ No newline at end of file diff --git a/docs/mit-old-style-no-advert.LICENSE b/docs/mit-old-style-no-advert.LICENSE index db8a84953e..33c6a12359 100644 --- a/docs/mit-old-style-no-advert.LICENSE +++ b/docs/mit-old-style-no-advert.LICENSE @@ -1,3 +1,18 @@ +--- +key: mit-old-style-no-advert +short_name: MIT Old Style no advertising +name: MIT Old Style no advertising +category: Permissive +owner: MIT +homepage_url: http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29 +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: NTP +osi_url: https://opensource.org/licenses/NTP +other_urls: + - http://www.opensource.org/licenses/NTP +minimum_coverage: 70 +--- + 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 diff --git a/docs/mit-old-style-no-advert.html b/docs/mit-old-style-no-advert.html index 9b2f5299b0..445d4fa4f9 100644 --- a/docs/mit-old-style-no-advert.html +++ b/docs/mit-old-style-no-advert.html @@ -165,7 +165,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-old-style-no-advert.json b/docs/mit-old-style-no-advert.json index e5e20f9c80..f244bf09b6 100644 --- a/docs/mit-old-style-no-advert.json +++ b/docs/mit-old-style-no-advert.json @@ -1 +1,15 @@ -{"key": "mit-old-style-no-advert", "short_name": "MIT Old Style no advertising", "name": "MIT Old Style no advertising", "category": "Permissive", "owner": "MIT", "homepage_url": "http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "NTP", "osi_url": "https://opensource.org/licenses/NTP", "other_urls": ["http://www.opensource.org/licenses/NTP"], "minimum_coverage": 70} \ No newline at end of file +{ + "key": "mit-old-style-no-advert", + "short_name": "MIT Old Style no advertising", + "name": "MIT Old Style no advertising", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "NTP", + "osi_url": "https://opensource.org/licenses/NTP", + "other_urls": [ + "http://www.opensource.org/licenses/NTP" + ], + "minimum_coverage": 70 +} \ No newline at end of file diff --git a/docs/mit-old-style-sparse.LICENSE b/docs/mit-old-style-sparse.LICENSE index ae93a4689e..6fbdb37cac 100644 --- a/docs/mit-old-style-sparse.LICENSE +++ b/docs/mit-old-style-sparse.LICENSE @@ -1,3 +1,16 @@ +--- +key: mit-old-style-sparse +short_name: MIT Old Style Spare +name: MIT Old Style Spare +category: Permissive +owner: Kenneth S. Kundert +homepage_url: http://sparse.sourceforge.net +notes: Used in old Sparse versions and a few other places. This is very similar to the mit-old-style. +spdx_license_key: LicenseRef-scancode-mit-old-style-sparse +ignorable_authors: + - the University of California +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the copyright notices appear in all copies and @@ -5,4 +18,4 @@ supporting documentation and that the authors and the University of California are properly credited. The authors and the University of California make no representations as to the suitability of this software for any purpose. It is provided `as is', without express -or implied warranty. +or implied warranty. \ No newline at end of file diff --git a/docs/mit-old-style-sparse.html b/docs/mit-old-style-sparse.html index 36471a3e93..dd2c8bbcdc 100644 --- a/docs/mit-old-style-sparse.html +++ b/docs/mit-old-style-sparse.html @@ -138,8 +138,7 @@ California are properly credited. The authors and the University of California make no representations as to the suitability of this software for any purpose. It is provided `as is', without express -or implied warranty. - +or implied warranty.
@@ -151,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-old-style-sparse.json b/docs/mit-old-style-sparse.json index d2900a261f..6534cc4dde 100644 --- a/docs/mit-old-style-sparse.json +++ b/docs/mit-old-style-sparse.json @@ -1 +1,13 @@ -{"key": "mit-old-style-sparse", "short_name": "MIT Old Style Spare", "name": "MIT Old Style Spare", "category": "Permissive", "owner": "Kenneth S. Kundert", "homepage_url": "http://sparse.sourceforge.net", "notes": "Used in old Sparse versions and a few other places. This is very similar to the mit-old-style.", "spdx_license_key": "LicenseRef-scancode-mit-old-style-sparse", "ignorable_authors": ["the University of California"]} \ No newline at end of file +{ + "key": "mit-old-style-sparse", + "short_name": "MIT Old Style Spare", + "name": "MIT Old Style Spare", + "category": "Permissive", + "owner": "Kenneth S. Kundert", + "homepage_url": "http://sparse.sourceforge.net", + "notes": "Used in old Sparse versions and a few other places. This is very similar to the mit-old-style.", + "spdx_license_key": "LicenseRef-scancode-mit-old-style-sparse", + "ignorable_authors": [ + "the University of California" + ] +} \ No newline at end of file diff --git a/docs/mit-old-style.LICENSE b/docs/mit-old-style.LICENSE index 2c414eb784..6b9fdbb6ea 100644 --- a/docs/mit-old-style.LICENSE +++ b/docs/mit-old-style.LICENSE @@ -1,7 +1,19 @@ +--- +key: mit-old-style +short_name: MIT Old Style +name: MIT Old Style +category: Permissive +owner: MIT +homepage_url: http://fedoraproject.org/wiki/Licensing:MIT#Old_Style +spdx_license_key: LicenseRef-scancode-mit-old-style +text_urls: + - http://fedoraproject.org/wiki/Licensing:MIT#Old_Style +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. No representations are made about the suitability of this software for any purpose. It is provided "as is" without express or -implied warranty. +implied warranty. \ No newline at end of file diff --git a/docs/mit-old-style.html b/docs/mit-old-style.html index 3a9f6166e3..8f9afeae2d 100644 --- a/docs/mit-old-style.html +++ b/docs/mit-old-style.html @@ -130,8 +130,7 @@ copyright notice and this permission notice appear in supporting documentation. No representations are made about the suitability of this software for any purpose. It is provided "as is" without express or -implied warranty. - +implied warranty.
@@ -143,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-old-style.json b/docs/mit-old-style.json index ae8291fd06..ef3ab31569 100644 --- a/docs/mit-old-style.json +++ b/docs/mit-old-style.json @@ -1 +1,12 @@ -{"key": "mit-old-style", "short_name": "MIT Old Style", "name": "MIT Old Style", "category": "Permissive", "owner": "MIT", "homepage_url": "http://fedoraproject.org/wiki/Licensing:MIT#Old_Style", "spdx_license_key": "LicenseRef-scancode-mit-old-style", "text_urls": ["http://fedoraproject.org/wiki/Licensing:MIT#Old_Style"]} \ No newline at end of file +{ + "key": "mit-old-style", + "short_name": "MIT Old Style", + "name": "MIT Old Style", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://fedoraproject.org/wiki/Licensing:MIT#Old_Style", + "spdx_license_key": "LicenseRef-scancode-mit-old-style", + "text_urls": [ + "http://fedoraproject.org/wiki/Licensing:MIT#Old_Style" + ] +} \ No newline at end of file diff --git a/docs/mit-readme.LICENSE b/docs/mit-readme.LICENSE index f83f0b6e6f..d2fad35ca1 100644 --- a/docs/mit-readme.LICENSE +++ b/docs/mit-readme.LICENSE @@ -1,3 +1,12 @@ +--- +key: mit-readme +short_name: MIT README License +name: MIT README License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-mit-readme +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and the associated README documentation file (the "Software"), to deal in the Software without restriction, including @@ -11,4 +20,4 @@ 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. +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/docs/mit-readme.html b/docs/mit-readme.html index 514f651ca2..ae64ee8b7a 100644 --- a/docs/mit-readme.html +++ b/docs/mit-readme.html @@ -121,8 +121,7 @@ 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. - +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -134,7 +133,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-readme.json b/docs/mit-readme.json index a439121b6b..3e972441a2 100644 --- a/docs/mit-readme.json +++ b/docs/mit-readme.json @@ -1 +1,8 @@ -{"key": "mit-readme", "short_name": "MIT README License", "name": "MIT README License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-mit-readme"} \ No newline at end of file +{ + "key": "mit-readme", + "short_name": "MIT README License", + "name": "MIT README License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-mit-readme" +} \ No newline at end of file diff --git a/docs/mit-specification-disclaimer.LICENSE b/docs/mit-specification-disclaimer.LICENSE index 8535813318..3972149bbe 100644 --- a/docs/mit-specification-disclaimer.LICENSE +++ b/docs/mit-specification-disclaimer.LICENSE @@ -1,3 +1,14 @@ +--- +key: mit-specification-disclaimer +short_name: MIT with Specification Disclaimer +name: MIT with Specification Disclaimer +category: Permissive +owner: Xerox PARC +spdx_license_key: LicenseRef-scancode-mit-specification-disclaimer +other_urls: + - http://archive.apache.org/dist/commons/jcs/source/jcs-1.3-src.tar.gz +--- + Use and copying of this software and preparation of derivative works based upon this software are permitted. Any distribution of this software or derivative works must comply with all applicable United States export control diff --git a/docs/mit-specification-disclaimer.html b/docs/mit-specification-disclaimer.html index 956e110b82..eb3557e269 100644 --- a/docs/mit-specification-disclaimer.html +++ b/docs/mit-specification-disclaimer.html @@ -135,7 +135,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-specification-disclaimer.json b/docs/mit-specification-disclaimer.json index b1dd5bcd9f..39698ab829 100644 --- a/docs/mit-specification-disclaimer.json +++ b/docs/mit-specification-disclaimer.json @@ -1 +1,11 @@ -{"key": "mit-specification-disclaimer", "short_name": "MIT with Specification Disclaimer", "name": "MIT with Specification Disclaimer", "category": "Permissive", "owner": "Xerox PARC", "spdx_license_key": "LicenseRef-scancode-mit-specification-disclaimer", "other_urls": ["http://archive.apache.org/dist/commons/jcs/source/jcs-1.3-src.tar.gz"]} \ No newline at end of file +{ + "key": "mit-specification-disclaimer", + "short_name": "MIT with Specification Disclaimer", + "name": "MIT with Specification Disclaimer", + "category": "Permissive", + "owner": "Xerox PARC", + "spdx_license_key": "LicenseRef-scancode-mit-specification-disclaimer", + "other_urls": [ + "http://archive.apache.org/dist/commons/jcs/source/jcs-1.3-src.tar.gz" + ] +} \ No newline at end of file diff --git a/docs/mit-synopsys.LICENSE b/docs/mit-synopsys.LICENSE index 34dc942e0e..3f9d7dbf7a 100644 --- a/docs/mit-synopsys.LICENSE +++ b/docs/mit-synopsys.LICENSE @@ -1,3 +1,13 @@ +--- +key: mit-synopsys +short_name: MIT Synopsys License +name: MIT Synopsys License +category: Permissive +owner: Synopsys +spdx_license_key: LicenseRef-scancode-mit-synopsys +minimum_coverage: 80 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software annotated with this license and the Software, to deal in the Software without restriction, including without limitation @@ -18,4 +28,4 @@ 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 POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/mit-synopsys.html b/docs/mit-synopsys.html index 7eef32b7a7..bae68ffac5 100644 --- a/docs/mit-synopsys.html +++ b/docs/mit-synopsys.html @@ -135,8 +135,7 @@ 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 POSSIBILITY OF SUCH DAMAGE.
@@ -148,7 +147,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-synopsys.json b/docs/mit-synopsys.json index 16b77eeb3d..c98019ec6b 100644 --- a/docs/mit-synopsys.json +++ b/docs/mit-synopsys.json @@ -1 +1,9 @@ -{"key": "mit-synopsys", "short_name": "MIT Synopsys License", "name": "MIT Synopsys License", "category": "Permissive", "owner": "Synopsys", "spdx_license_key": "LicenseRef-scancode-mit-synopsys", "minimum_coverage": 80} \ No newline at end of file +{ + "key": "mit-synopsys", + "short_name": "MIT Synopsys License", + "name": "MIT Synopsys License", + "category": "Permissive", + "owner": "Synopsys", + "spdx_license_key": "LicenseRef-scancode-mit-synopsys", + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/mit-taylor-variant.LICENSE b/docs/mit-taylor-variant.LICENSE index fcb585bf63..ddbae54056 100644 --- a/docs/mit-taylor-variant.LICENSE +++ b/docs/mit-taylor-variant.LICENSE @@ -1,3 +1,12 @@ +--- +key: mit-taylor-variant +short_name: MIT Taylor Variant +name: MIT Taylor Variant +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-mit-taylor-variant +--- + 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. diff --git a/docs/mit-taylor-variant.html b/docs/mit-taylor-variant.html index 155b53377d..d5025dcc83 100644 --- a/docs/mit-taylor-variant.html +++ b/docs/mit-taylor-variant.html @@ -128,7 +128,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-taylor-variant.json b/docs/mit-taylor-variant.json index d879b759cb..bde070dfc2 100644 --- a/docs/mit-taylor-variant.json +++ b/docs/mit-taylor-variant.json @@ -1 +1,8 @@ -{"key": "mit-taylor-variant", "short_name": "MIT Taylor Variant", "name": "MIT Taylor Variant", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-mit-taylor-variant"} \ No newline at end of file +{ + "key": "mit-taylor-variant", + "short_name": "MIT Taylor Variant", + "name": "MIT Taylor Variant", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-mit-taylor-variant" +} \ No newline at end of file diff --git a/docs/mit-veillard-variant.LICENSE b/docs/mit-veillard-variant.LICENSE index 14a375e8b5..295e6ca77c 100644 --- a/docs/mit-veillard-variant.LICENSE +++ b/docs/mit-veillard-variant.LICENSE @@ -1,3 +1,16 @@ +--- +key: mit-veillard-variant +short_name: MIT Veillard Variant +name: MIT Veillard Variant +category: Permissive +owner: Daniel Veillard +notes: this is similar to the mit-taylor-variant but uses a different warranty disclaimer. This + is found in the original versions of https://en.wikipedia.org/wiki/Libxml2 +spdx_license_key: LicenseRef-scancode-mit-veillard-variant +text_urls: + - https://raw.githubusercontent.com/GNOME/libxml2/4c2e7c651f6c2f0d1a74f350cbda95f7df3e7017/hash.c +--- + Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. diff --git a/docs/mit-veillard-variant.html b/docs/mit-veillard-variant.html index 1984df2d3c..6f9dafa180 100644 --- a/docs/mit-veillard-variant.html +++ b/docs/mit-veillard-variant.html @@ -143,7 +143,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-veillard-variant.json b/docs/mit-veillard-variant.json index 51a524f97b..b378cd6674 100644 --- a/docs/mit-veillard-variant.json +++ b/docs/mit-veillard-variant.json @@ -1 +1,12 @@ -{"key": "mit-veillard-variant", "short_name": "MIT Veillard Variant", "name": "MIT Veillard Variant", "category": "Permissive", "owner": "Daniel Veillard", "notes": "this is similar to the mit-taylor-variant but uses a different warranty disclaimer. This is found in the original versions of https://en.wikipedia.org/wiki/Libxml2", "spdx_license_key": "LicenseRef-scancode-mit-veillard-variant", "text_urls": ["https://raw.githubusercontent.com/GNOME/libxml2/4c2e7c651f6c2f0d1a74f350cbda95f7df3e7017/hash.c"]} \ No newline at end of file +{ + "key": "mit-veillard-variant", + "short_name": "MIT Veillard Variant", + "name": "MIT Veillard Variant", + "category": "Permissive", + "owner": "Daniel Veillard", + "notes": "this is similar to the mit-taylor-variant but uses a different warranty disclaimer. This is found in the original versions of https://en.wikipedia.org/wiki/Libxml2", + "spdx_license_key": "LicenseRef-scancode-mit-veillard-variant", + "text_urls": [ + "https://raw.githubusercontent.com/GNOME/libxml2/4c2e7c651f6c2f0d1a74f350cbda95f7df3e7017/hash.c" + ] +} \ No newline at end of file diff --git a/docs/mit-with-modification-obligations.LICENSE b/docs/mit-with-modification-obligations.LICENSE index ef89b14925..b8ef6284b9 100644 --- a/docs/mit-with-modification-obligations.LICENSE +++ b/docs/mit-with-modification-obligations.LICENSE @@ -1,3 +1,15 @@ +--- +key: mit-with-modification-obligations +short_name: MIT With Modification Obligations +name: MIT With Modification Obligations +category: Permissive +owner: MIT +spdx_license_key: LicenseRef-scancode-mit-modification-obligations +other_spdx_license_keys: + - LicenseRef-scancode-mit-with-modification-obligations +minimum_coverage: 80 +--- + Export of this software from the United States of America may require a specific license from the United States Government. It is the responsibility of any person or organization contemplating diff --git a/docs/mit-with-modification-obligations.html b/docs/mit-with-modification-obligations.html index b321a89baa..174f94e866 100644 --- a/docs/mit-with-modification-obligations.html +++ b/docs/mit-with-modification-obligations.html @@ -153,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-with-modification-obligations.json b/docs/mit-with-modification-obligations.json index 70208db266..6b7c82352c 100644 --- a/docs/mit-with-modification-obligations.json +++ b/docs/mit-with-modification-obligations.json @@ -1 +1,12 @@ -{"key": "mit-with-modification-obligations", "short_name": "MIT With Modification Obligations", "name": "MIT With Modification Obligations", "category": "Permissive", "owner": "MIT", "spdx_license_key": "LicenseRef-scancode-mit-modification-obligations", "other_spdx_license_keys": ["LicenseRef-scancode-mit-with-modification-obligations"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "mit-with-modification-obligations", + "short_name": "MIT With Modification Obligations", + "name": "MIT With Modification Obligations", + "category": "Permissive", + "owner": "MIT", + "spdx_license_key": "LicenseRef-scancode-mit-modification-obligations", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mit-with-modification-obligations" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/mit-xfig.LICENSE b/docs/mit-xfig.LICENSE index d17ba88349..db3a838e6f 100644 --- a/docs/mit-xfig.LICENSE +++ b/docs/mit-xfig.LICENSE @@ -1,3 +1,21 @@ +--- +key: mit-xfig +short_name: MIT Xfig Variant +name: MIT Xfig Variant +category: Permissive +owner: Xfig Project +homepage_url: http://www.xfig.org +notes: | + From http://web.archive.org/web/2000212193456/http://www.xfig.org/xfigdist/ + xfig.README.3.2.4 The xfig copyright has changed slightly since the + previous version. The previous notice allowed the *selling* of xfig or any + code in xfig. This is not allowed now, unless xfig is simply included in a + collection of programs (e.g. on a CD) that you are selling. +spdx_license_key: LicenseRef-scancode-mit-xfig +other_urls: + - https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#Xfig +--- + Any party obtaining a copy of these files is granted, free of charge, a full and unrestricted irrevocable, world-wide, paid up, royalty-free, nonexclusive right and license to deal in this software and @@ -5,4 +23,4 @@ documentation files (the "Software"), including without limitation the rights to use, copy, modify, merge, publish and/or distribute copies of the Software, and to permit persons who receive copies from any such party to do so, with the only requirement being that this copyright -notice remain intact. +notice remain intact. \ No newline at end of file diff --git a/docs/mit-xfig.html b/docs/mit-xfig.html index 9e111f543e..5fdebc6715 100644 --- a/docs/mit-xfig.html +++ b/docs/mit-xfig.html @@ -143,8 +143,7 @@ rights to use, copy, modify, merge, publish and/or distribute copies of the Software, and to permit persons who receive copies from any such party to do so, with the only requirement being that this copyright -notice remain intact. - +notice remain intact.
@@ -156,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit-xfig.json b/docs/mit-xfig.json index 440fb3c33c..340fca7b29 100644 --- a/docs/mit-xfig.json +++ b/docs/mit-xfig.json @@ -1 +1,13 @@ -{"key": "mit-xfig", "short_name": "MIT Xfig Variant", "name": "MIT Xfig Variant", "category": "Permissive", "owner": "Xfig Project", "homepage_url": "http://www.xfig.org", "notes": "From http://web.archive.org/web/2000212193456/http://www.xfig.org/xfigdist/\nxfig.README.3.2.4 The xfig copyright has changed slightly since the\nprevious version. The previous notice allowed the *selling* of xfig or any\ncode in xfig. This is not allowed now, unless xfig is simply included in a\ncollection of programs (e.g. on a CD) that you are selling.\n", "spdx_license_key": "LicenseRef-scancode-mit-xfig", "other_urls": ["https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#Xfig"]} \ No newline at end of file +{ + "key": "mit-xfig", + "short_name": "MIT Xfig Variant", + "name": "MIT Xfig Variant", + "category": "Permissive", + "owner": "Xfig Project", + "homepage_url": "http://www.xfig.org", + "notes": "From http://web.archive.org/web/2000212193456/http://www.xfig.org/xfigdist/\nxfig.README.3.2.4 The xfig copyright has changed slightly since the\nprevious version. The previous notice allowed the *selling* of xfig or any\ncode in xfig. This is not allowed now, unless xfig is simply included in a\ncollection of programs (e.g. on a CD) that you are selling.\n", + "spdx_license_key": "LicenseRef-scancode-mit-xfig", + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#Xfig" + ] +} \ No newline at end of file diff --git a/docs/mit.LICENSE b/docs/mit.LICENSE index 2d4a989856..fa81a71177 100644 --- a/docs/mit.LICENSE +++ b/docs/mit.LICENSE @@ -1,3 +1,22 @@ +--- +key: mit +short_name: MIT License +name: MIT License +category: Permissive +owner: MIT +homepage_url: http://opensource.org/licenses/mit-license.php +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: MIT +text_urls: + - http://opensource.org/licenses/mit-license.php +osi_url: http://www.opensource.org/licenses/MIT +faq_url: https://ieeexplore.ieee.org/document/9263265 +other_urls: + - https://opensource.com/article/18/3/patent-grant-mit-license + - https://opensource.com/article/19/4/history-mit-license + - https://opensource.org/licenses/MIT +--- + 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 diff --git a/docs/mit.html b/docs/mit.html index 775d8470d3..637f0a6cb7 100644 --- a/docs/mit.html +++ b/docs/mit.html @@ -183,7 +183,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mit.json b/docs/mit.json index 40374c1f56..f269dd014e 100644 --- a/docs/mit.json +++ b/docs/mit.json @@ -1 +1,20 @@ -{"key": "mit", "short_name": "MIT License", "name": "MIT License", "category": "Permissive", "owner": "MIT", "homepage_url": "http://opensource.org/licenses/mit-license.php", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "MIT", "text_urls": ["http://opensource.org/licenses/mit-license.php"], "osi_url": "http://www.opensource.org/licenses/MIT", "faq_url": "https://ieeexplore.ieee.org/document/9263265", "other_urls": ["https://opensource.com/article/18/3/patent-grant-mit-license", "https://opensource.com/article/19/4/history-mit-license", "https://opensource.org/licenses/MIT"]} \ No newline at end of file +{ + "key": "mit", + "short_name": "MIT License", + "name": "MIT License", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "http://opensource.org/licenses/mit-license.php", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "MIT", + "text_urls": [ + "http://opensource.org/licenses/mit-license.php" + ], + "osi_url": "http://www.opensource.org/licenses/MIT", + "faq_url": "https://ieeexplore.ieee.org/document/9263265", + "other_urls": [ + "https://opensource.com/article/18/3/patent-grant-mit-license", + "https://opensource.com/article/19/4/history-mit-license", + "https://opensource.org/licenses/MIT" + ] +} \ No newline at end of file diff --git a/docs/mod-dav-1.0.LICENSE b/docs/mod-dav-1.0.LICENSE index 2e77635417..046ca84765 100644 --- a/docs/mod-dav-1.0.LICENSE +++ b/docs/mod-dav-1.0.LICENSE @@ -1,3 +1,25 @@ +--- +key: mod-dav-1.0 +short_name: mod_dav License 1.0 +name: mod_dav License Agreement v1 +category: Permissive +owner: Gregg Stein +homepage_url: http://www.webdav.org/mod_dav/ +spdx_license_key: LicenseRef-scancode-mod-dav-1.0 +text_urls: + - http://www.webdav.org/mod_dav/ +ignorable_copyrights: + - Copyright (c) 1998-2001 Greg Stein +ignorable_holders: + - Greg Stein +ignorable_authors: + - Greg Stein +ignorable_urls: + - http://www.webdav.org/mod_dav +ignorable_emails: + - gstein@lyra.org +--- + mod_dav License Agreement v1 The following text constitutes the license agreement for the mod_dav software. diff --git a/docs/mod-dav-1.0.html b/docs/mod-dav-1.0.html index d08058df97..c356dd70c5 100644 --- a/docs/mod-dav-1.0.html +++ b/docs/mod-dav-1.0.html @@ -208,7 +208,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mod-dav-1.0.json b/docs/mod-dav-1.0.json index ca24fc8cfd..5f679ab1cc 100644 --- a/docs/mod-dav-1.0.json +++ b/docs/mod-dav-1.0.json @@ -1 +1,27 @@ -{"key": "mod-dav-1.0", "short_name": "mod_dav License 1.0", "name": "mod_dav License Agreement v1", "category": "Permissive", "owner": "Gregg Stein", "homepage_url": "http://www.webdav.org/mod_dav/", "spdx_license_key": "LicenseRef-scancode-mod-dav-1.0", "text_urls": ["http://www.webdav.org/mod_dav/"], "ignorable_copyrights": ["Copyright (c) 1998-2001 Greg Stein"], "ignorable_holders": ["Greg Stein"], "ignorable_authors": ["Greg Stein "], "ignorable_urls": ["http://www.webdav.org/mod_dav"], "ignorable_emails": ["gstein@lyra.org"]} \ No newline at end of file +{ + "key": "mod-dav-1.0", + "short_name": "mod_dav License 1.0", + "name": "mod_dav License Agreement v1", + "category": "Permissive", + "owner": "Gregg Stein", + "homepage_url": "http://www.webdav.org/mod_dav/", + "spdx_license_key": "LicenseRef-scancode-mod-dav-1.0", + "text_urls": [ + "http://www.webdav.org/mod_dav/" + ], + "ignorable_copyrights": [ + "Copyright (c) 1998-2001 Greg Stein" + ], + "ignorable_holders": [ + "Greg Stein" + ], + "ignorable_authors": [ + "Greg Stein " + ], + "ignorable_urls": [ + "http://www.webdav.org/mod_dav" + ], + "ignorable_emails": [ + "gstein@lyra.org" + ] +} \ No newline at end of file diff --git a/docs/monetdb-1.1.LICENSE b/docs/monetdb-1.1.LICENSE index 6a9ee15e21..746ab013d4 100644 --- a/docs/monetdb-1.1.LICENSE +++ b/docs/monetdb-1.1.LICENSE @@ -1,3 +1,15 @@ +--- +key: monetdb-1.1 +short_name: MonetDB 1.1 +name: MonetDB Public License Version 1.1 +category: Copyleft Limited +owner: MonetDB +homepage_url: http://www.monetdb.org/Legal/MonetDBLicense +spdx_license_key: LicenseRef-scancode-monetdb-1.1 +ignorable_urls: + - http://www.monetdb.org/Legal/MonetDBLicense +--- + MonetDB Public License Version 1.1 This License is a derivative of the Mozilla Public License (MPL) Version 1.1, where the difference is that all references to "Mozilla" and "Netscape" have been changed to "MonetDB", and that the License has been made subject to the laws of The Netherlands. diff --git a/docs/monetdb-1.1.html b/docs/monetdb-1.1.html index 74b29fbd2b..94948d1907 100644 --- a/docs/monetdb-1.1.html +++ b/docs/monetdb-1.1.html @@ -294,7 +294,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/monetdb-1.1.json b/docs/monetdb-1.1.json index 9344777ee0..17f8c23d65 100644 --- a/docs/monetdb-1.1.json +++ b/docs/monetdb-1.1.json @@ -1 +1,12 @@ -{"key": "monetdb-1.1", "short_name": "MonetDB 1.1", "name": "MonetDB Public License Version 1.1", "category": "Copyleft Limited", "owner": "MonetDB", "homepage_url": "http://www.monetdb.org/Legal/MonetDBLicense", "spdx_license_key": "LicenseRef-scancode-monetdb-1.1", "ignorable_urls": ["http://www.monetdb.org/Legal/MonetDBLicense"]} \ No newline at end of file +{ + "key": "monetdb-1.1", + "short_name": "MonetDB 1.1", + "name": "MonetDB Public License Version 1.1", + "category": "Copyleft Limited", + "owner": "MonetDB", + "homepage_url": "http://www.monetdb.org/Legal/MonetDBLicense", + "spdx_license_key": "LicenseRef-scancode-monetdb-1.1", + "ignorable_urls": [ + "http://www.monetdb.org/Legal/MonetDBLicense" + ] +} \ No newline at end of file diff --git a/docs/mongodb-sspl-1.0.LICENSE b/docs/mongodb-sspl-1.0.LICENSE index b4687ca107..58632f7355 100644 --- a/docs/mongodb-sspl-1.0.LICENSE +++ b/docs/mongodb-sspl-1.0.LICENSE @@ -1,3 +1,34 @@ +--- +key: mongodb-sspl-1.0 +short_name: SSPL 1.0 +name: Server Side Public License (SSPL) 1.0 +category: Source-available +owner: MongoDB +homepage_url: https://www.mongodb.com/licensing/server-side-public-license +spdx_license_key: SSPL-1.0 +faq_url: https://www.mongodb.com/licensing/server-side-public-license/faq +other_urls: + - https://techcrunch.com/2018/10/16/mongodb-switches-up-its-open-source-license/ + - https://webassets.mongodb.com/_com_assets/legal/SSPL-compared-to-AGPL.pdf +standard_notice: | + This program is free software: you can redistribute it and/or modify + it under the terms of the Server Side Public License, version 1, + as published by MongoDB, Inc. + + 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 + Server Side Public License for more details. + + You should have received a copy of the Server Side Public License + along with this program. If not, see + . +ignorable_copyrights: + - Copyright (c) 2018 MongoDB, Inc. +ignorable_holders: + - MongoDB, Inc. +--- + Server Side Public License VERSION 1, OCTOBER 16, 2018 @@ -554,4 +585,4 @@ warranty or assumption of liability accompanies a copy of the Program in return for a fee. - END OF TERMS AND CONDITIONS + END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/docs/mongodb-sspl-1.0.html b/docs/mongodb-sspl-1.0.html index cd5d9153ca..da03ef301b 100644 --- a/docs/mongodb-sspl-1.0.html +++ b/docs/mongodb-sspl-1.0.html @@ -724,8 +724,7 @@ warranty or assumption of liability accompanies a copy of the Program in return for a fee. - END OF TERMS AND CONDITIONS - + END OF TERMS AND CONDITIONS
@@ -737,7 +736,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mongodb-sspl-1.0.json b/docs/mongodb-sspl-1.0.json index 578ebacd44..01c4c8a605 100644 --- a/docs/mongodb-sspl-1.0.json +++ b/docs/mongodb-sspl-1.0.json @@ -1 +1,21 @@ -{"key": "mongodb-sspl-1.0", "short_name": "SSPL 1.0", "name": "Server Side Public License (SSPL) 1.0", "category": "Source-available", "owner": "MongoDB", "homepage_url": "https://www.mongodb.com/licensing/server-side-public-license", "spdx_license_key": "SSPL-1.0", "faq_url": "https://www.mongodb.com/licensing/server-side-public-license/faq", "other_urls": ["https://techcrunch.com/2018/10/16/mongodb-switches-up-its-open-source-license/", "https://webassets.mongodb.com/_com_assets/legal/SSPL-compared-to-AGPL.pdf"], "standard_notice": "This program is free software: you can redistribute it and/or modify\nit under the terms of the Server Side Public License, version 1,\nas published by MongoDB, Inc.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nServer Side Public License for more details.\n\nYou should have received a copy of the Server Side Public License\nalong with this program. If not, see\n.\n", "ignorable_copyrights": ["Copyright (c) 2018 MongoDB, Inc."], "ignorable_holders": ["MongoDB, Inc."]} \ No newline at end of file +{ + "key": "mongodb-sspl-1.0", + "short_name": "SSPL 1.0", + "name": "Server Side Public License (SSPL) 1.0", + "category": "Source-available", + "owner": "MongoDB", + "homepage_url": "https://www.mongodb.com/licensing/server-side-public-license", + "spdx_license_key": "SSPL-1.0", + "faq_url": "https://www.mongodb.com/licensing/server-side-public-license/faq", + "other_urls": [ + "https://techcrunch.com/2018/10/16/mongodb-switches-up-its-open-source-license/", + "https://webassets.mongodb.com/_com_assets/legal/SSPL-compared-to-AGPL.pdf" + ], + "standard_notice": "This program is free software: you can redistribute it and/or modify\nit under the terms of the Server Side Public License, version 1,\nas published by MongoDB, Inc.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nServer Side Public License for more details.\n\nYou should have received a copy of the Server Side Public License\nalong with this program. If not, see\n.\n", + "ignorable_copyrights": [ + "Copyright (c) 2018 MongoDB, Inc." + ], + "ignorable_holders": [ + "MongoDB, Inc." + ] +} \ No newline at end of file diff --git a/docs/monkeysaudio.LICENSE b/docs/monkeysaudio.LICENSE new file mode 100644 index 0000000000..d0b6e7638c --- /dev/null +++ b/docs/monkeysaudio.LICENSE @@ -0,0 +1,46 @@ +--- +key: monkeysaudio +short_name: Monkeys Audio License Agreement +name: Monkeys Audio License Agreement +category: Free Restricted +owner: MonkeysAudio +homepage_url: https://www.monkeysaudio.com/license.html +spdx_license_key: LicenseRef-scancode-monkeysaudio +--- + +Monkey's Audio Program License Agreement + +1. Monkey's Audio is completely free for personal, educational, or commercial +use. + +2. Although the software has been tested thoroughly, the author is in no way +responsible for damages due to bugs or misuse. + +3. The redistribution of Monkey's Audio is only allowed in cases where the +original installer and components therein have not been modified. + +4. The use of Monkey's Audio or any component thereof from another program +requires compliance with the 'Monkey's Audio SDK and Source Code License +Agreement'. + +5. Installing and using Monkey's Audio signifies the acceptance of these terms. +If you do not agree with any of the above terms, you must cease using Monkey's +Audio and remove it from your storage device. + +Monkey's Audio SDK and Source Code License Agreement + +1. The Monkey's Audio SDK and source code can be freely used to add APE format +playback, encoding, or tagging support to any product, free or commercial. + +2. Monkey's Audio source can be included in GPL and open-source software, +although Monkey's Audio itself will not be subjected to external licensing +requirements or other viral source restrictions. + +3. Any source code, ideas, or libraries used must be plainly acknowledged in the +software using the code. + +4. Although the software has been tested thoroughly, the author is in no way +responsible for damages due to bugs or misuse. + +5. If you do not completely agree with all of the previous stipulations, you +must cease using this source code and remove it from your storage device. \ No newline at end of file diff --git a/docs/monkeysaudio.html b/docs/monkeysaudio.html new file mode 100644 index 0000000000..86c6ad7c10 --- /dev/null +++ b/docs/monkeysaudio.html @@ -0,0 +1,185 @@ + + + + + + LicenseDB: monkeysaudio + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + monkeysaudio + +
+ +
short_name
+
+ + Monkeys Audio License Agreement + +
+ +
name
+
+ + Monkeys Audio License Agreement + +
+ +
category
+
+ + Free Restricted + +
+ +
owner
+
+ + MonkeysAudio + +
+ +
homepage_url
+
+ + https://www.monkeysaudio.com/license.html + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-monkeysaudio + +
+ +
+
license_text
+
Monkey's Audio Program License Agreement
+
+1. Monkey's Audio is completely free for personal, educational, or commercial
+use.
+
+2. Although the software has been tested thoroughly, the author is in no way
+responsible for damages due to bugs or misuse.
+
+3. The redistribution of Monkey's Audio is only allowed in cases where the
+original installer and components therein have not been modified.
+
+4. The use of Monkey's Audio or any component thereof from another program
+requires compliance with the 'Monkey's Audio SDK and Source Code License
+Agreement'.
+
+5. Installing and using Monkey's Audio signifies the acceptance of these terms.
+If you do not agree with any of the above terms, you must cease using Monkey's
+Audio and remove it from your storage device.
+
+Monkey's Audio SDK and Source Code License Agreement
+
+1. The Monkey's Audio SDK and source code can be freely used to add APE format
+playback, encoding, or tagging support to any product, free or commercial.
+
+2. Monkey's Audio source can be included in GPL and open-source software,
+although Monkey's Audio itself will not be subjected to external licensing
+requirements or other viral source restrictions.
+ 
+3. Any source code, ideas, or libraries used must be plainly acknowledged in the
+software using the code.
+ 
+4. Although the software has been tested thoroughly, the author is in no way
+responsible for damages due to bugs or misuse.
+ 
+5. If you do not completely agree with all of the previous stipulations, you
+must cease using this source code and remove it from your storage device.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/monkeysaudio.json b/docs/monkeysaudio.json new file mode 100644 index 0000000000..b93b4d0e0d --- /dev/null +++ b/docs/monkeysaudio.json @@ -0,0 +1,9 @@ +{ + "key": "monkeysaudio", + "short_name": "Monkeys Audio License Agreement", + "name": "Monkeys Audio License Agreement", + "category": "Free Restricted", + "owner": "MonkeysAudio", + "homepage_url": "https://www.monkeysaudio.com/license.html", + "spdx_license_key": "LicenseRef-scancode-monkeysaudio" +} \ No newline at end of file diff --git a/docs/monkeysaudio.yml b/docs/monkeysaudio.yml new file mode 100644 index 0000000000..f94741acd0 --- /dev/null +++ b/docs/monkeysaudio.yml @@ -0,0 +1,7 @@ +key: monkeysaudio +short_name: Monkeys Audio License Agreement +name: Monkeys Audio License Agreement +category: Free Restricted +owner: MonkeysAudio +homepage_url: https://www.monkeysaudio.com/license.html +spdx_license_key: LicenseRef-scancode-monkeysaudio diff --git a/docs/motorola.LICENSE b/docs/motorola.LICENSE index 220d5dd8e8..5ab9a84712 100644 --- a/docs/motorola.LICENSE +++ b/docs/motorola.LICENSE @@ -1,3 +1,12 @@ +--- +key: motorola +short_name: Motorola Microprocessor License +name: Motorola Microprocessor & Memory Technology Group License +category: Permissive +owner: Motorola +spdx_license_key: LicenseRef-scancode-motorola +--- + THE SOFTWARE is provided on an "AS IS" basis and without warranty. To the maximum extent permitted by applicable law, MOTOROLA DISCLAIMS ALL WARRANTIES WHETHER EXPRESS OR IMPLIED, diff --git a/docs/motorola.html b/docs/motorola.html index a7aea10a7d..1768eef63a 100644 --- a/docs/motorola.html +++ b/docs/motorola.html @@ -138,7 +138,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/motorola.json b/docs/motorola.json index 510300b8ed..a9fb4f5bd4 100644 --- a/docs/motorola.json +++ b/docs/motorola.json @@ -1 +1,8 @@ -{"key": "motorola", "short_name": "Motorola Microprocessor License", "name": "Motorola Microprocessor & Memory Technology Group License", "category": "Permissive", "owner": "Motorola", "spdx_license_key": "LicenseRef-scancode-motorola"} \ No newline at end of file +{ + "key": "motorola", + "short_name": "Motorola Microprocessor License", + "name": "Motorola Microprocessor & Memory Technology Group License", + "category": "Permissive", + "owner": "Motorola", + "spdx_license_key": "LicenseRef-scancode-motorola" +} \ No newline at end of file diff --git a/docs/motosoto-0.9.1.LICENSE b/docs/motosoto-0.9.1.LICENSE index 17a7756268..bbe108bad1 100644 --- a/docs/motosoto-0.9.1.LICENSE +++ b/docs/motosoto-0.9.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: motosoto-0.9.1 +short_name: Motosoto 0.9.1 +name: Motosoto Open Source License v0.9.1 +category: Copyleft +owner: OSI - Open Source Initiative +homepage_url: http://opensource.org/licenses/motosoto.php +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: Motosoto +text_urls: + - http://opensource.org/licenses/motosoto.php +osi_url: http://opensource.org/licenses/motosoto.php +other_urls: + - http://www.opensource.org/licenses/Motosoto + - https://opensource.org/licenses/Motosoto +--- + MOTOSOTO OPEN SOURCE LICENSE - Version 0.9.1 This Motosoto Open Source License (the "License") applies to "Community Portal Server" and related software products as well as any updatesor maintenance releases of that software ("Motosoto Products") that are distributed by Motosoto.Com B.V. ("Licensor"). Any Motosoto Product licensed pursuant to this License is a "Licensed Product." Licensed Product, in its entirety, is protected by Dutch copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product and has been submitted to the Open Software Initiative (OSI) for approval. diff --git a/docs/motosoto-0.9.1.html b/docs/motosoto-0.9.1.html index c770d4216c..008b9dfd7c 100644 --- a/docs/motosoto-0.9.1.html +++ b/docs/motosoto-0.9.1.html @@ -303,7 +303,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/motosoto-0.9.1.json b/docs/motosoto-0.9.1.json index 8e10820b6e..dfd53cc9a1 100644 --- a/docs/motosoto-0.9.1.json +++ b/docs/motosoto-0.9.1.json @@ -1 +1,18 @@ -{"key": "motosoto-0.9.1", "short_name": "Motosoto 0.9.1", "name": "Motosoto Open Source License v0.9.1", "category": "Copyleft", "owner": "OSI - Open Source Initiative", "homepage_url": "http://opensource.org/licenses/motosoto.php", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "Motosoto", "text_urls": ["http://opensource.org/licenses/motosoto.php"], "osi_url": "http://opensource.org/licenses/motosoto.php", "other_urls": ["http://www.opensource.org/licenses/Motosoto", "https://opensource.org/licenses/Motosoto"]} \ No newline at end of file +{ + "key": "motosoto-0.9.1", + "short_name": "Motosoto 0.9.1", + "name": "Motosoto Open Source License v0.9.1", + "category": "Copyleft", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://opensource.org/licenses/motosoto.php", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "Motosoto", + "text_urls": [ + "http://opensource.org/licenses/motosoto.php" + ], + "osi_url": "http://opensource.org/licenses/motosoto.php", + "other_urls": [ + "http://www.opensource.org/licenses/Motosoto", + "https://opensource.org/licenses/Motosoto" + ] +} \ No newline at end of file diff --git a/docs/moxa-linux-firmware.LICENSE b/docs/moxa-linux-firmware.LICENSE index f54e200d24..8dc0bfaab7 100644 --- a/docs/moxa-linux-firmware.LICENSE +++ b/docs/moxa-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: moxa-linux-firmware +short_name: Moxa Linux Firmware License +name: Moxa Linux Firmware License +category: Proprietary Free +owner: Moxa +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.moxa +spdx_license_key: LicenseRef-scancode-moxa-linux-firmware +--- + The software accompanying this license statement (the “Software”) is the property of Moxa Inc. (the “Moxa”), and is protected by United States and International Copyright Laws and International diff --git a/docs/moxa-linux-firmware.html b/docs/moxa-linux-firmware.html index 94023bdae0..d235464a42 100644 --- a/docs/moxa-linux-firmware.html +++ b/docs/moxa-linux-firmware.html @@ -142,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/moxa-linux-firmware.json b/docs/moxa-linux-firmware.json index e662b20116..1bf768394f 100644 --- a/docs/moxa-linux-firmware.json +++ b/docs/moxa-linux-firmware.json @@ -1 +1,9 @@ -{"key": "moxa-linux-firmware", "short_name": "Moxa Linux Firmware License", "name": "Moxa Linux Firmware License", "category": "Proprietary Free", "owner": "Moxa", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.moxa", "spdx_license_key": "LicenseRef-scancode-moxa-linux-firmware"} \ No newline at end of file +{ + "key": "moxa-linux-firmware", + "short_name": "Moxa Linux Firmware License", + "name": "Moxa Linux Firmware License", + "category": "Proprietary Free", + "owner": "Moxa", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.moxa", + "spdx_license_key": "LicenseRef-scancode-moxa-linux-firmware" +} \ No newline at end of file diff --git a/docs/mozilla-gc.LICENSE b/docs/mozilla-gc.LICENSE index 09e4c71b1d..4ed7407a4f 100644 --- a/docs/mozilla-gc.LICENSE +++ b/docs/mozilla-gc.LICENSE @@ -1,3 +1,17 @@ +--- +key: mozilla-gc +short_name: Mozilla GC License +name: Mozilla GC License +category: Permissive +owner: Mozilla +notes: stlport-4.5 and mozilla-gc are mostly the same +spdx_license_key: LicenseRef-scancode-mozilla-gc +text_urls: + - http://www.hboehm.info/gc/license.txt +other_urls: + - http://www.hboehm.info/gc/ +--- + THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED OR IMPLIED. ANY USE IS AT YOUR OWN RISK. diff --git a/docs/mozilla-gc.html b/docs/mozilla-gc.html index f2a0e9ffc0..16d896ce2c 100644 --- a/docs/mozilla-gc.html +++ b/docs/mozilla-gc.html @@ -153,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mozilla-gc.json b/docs/mozilla-gc.json index 6c1adffe58..e659bd3b15 100644 --- a/docs/mozilla-gc.json +++ b/docs/mozilla-gc.json @@ -1 +1,15 @@ -{"key": "mozilla-gc", "short_name": "Mozilla GC License", "name": "Mozilla GC License", "category": "Permissive", "owner": "Mozilla", "notes": "stlport-4.5 and mozilla-gc are mostly the same", "spdx_license_key": "LicenseRef-scancode-mozilla-gc", "text_urls": ["http://www.hboehm.info/gc/license.txt"], "other_urls": ["http://www.hboehm.info/gc/"]} \ No newline at end of file +{ + "key": "mozilla-gc", + "short_name": "Mozilla GC License", + "name": "Mozilla GC License", + "category": "Permissive", + "owner": "Mozilla", + "notes": "stlport-4.5 and mozilla-gc are mostly the same", + "spdx_license_key": "LicenseRef-scancode-mozilla-gc", + "text_urls": [ + "http://www.hboehm.info/gc/license.txt" + ], + "other_urls": [ + "http://www.hboehm.info/gc/" + ] +} \ No newline at end of file diff --git a/docs/mozilla-ospl-1.0.LICENSE b/docs/mozilla-ospl-1.0.LICENSE index 7d9e018494..cf8d58a582 100644 --- a/docs/mozilla-ospl-1.0.LICENSE +++ b/docs/mozilla-ospl-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: mozilla-ospl-1.0 +short_name: Mozilla Open Software Patent License 1.0 +name: Mozilla Open Software Patent License Agreement v1 +category: Patent License +owner: Mozilla +homepage_url: https://www.mozilla.org/en-US/about/patents/license/ +spdx_license_key: LicenseRef-scancode-mozilla-ospl-1.0 +faq_url: https://www.mozilla.org/en-US/about/patents/ +other_urls: + - https://www.mozilla.org/en-US/about/patents/guide/ +--- + Mozilla Open Software Patent License Agreement v1 This Open Software Patent License Agreement ("Agreement") is made between you and the Licensor identified below. For purposes of this Agreement, you means you and your Affiliates, and Licensor means the Mozilla Corporation, Mozilla Foundation and any of their Affiliates. @@ -32,4 +45,4 @@ This Open Software Patent License Agreement ("Agreement") is made between you an If you would like to show your intention to be bound by this Agreement, you may wish to make the following statement: "ZXQ, Inc. hereby states that it intends to be bound by the Mozilla Open Software Patent License Agreement for Mozilla, version , as of [date]." -If you would like to use the text of this agreement for your own patent licensing, you may feel free to do so. However, to avoid confusion please remove all references to "Mozilla" from your version of the agreement. You may wish to say that your agreement is "based on the Mozilla Open Software Patent License Agreement," for informational purposes, but you are not required to do so. +If you would like to use the text of this agreement for your own patent licensing, you may feel free to do so. However, to avoid confusion please remove all references to "Mozilla" from your version of the agreement. You may wish to say that your agreement is "based on the Mozilla Open Software Patent License Agreement," for informational purposes, but you are not required to do so. \ No newline at end of file diff --git a/docs/mozilla-ospl-1.0.html b/docs/mozilla-ospl-1.0.html index ec15d137ab..098abafe2c 100644 --- a/docs/mozilla-ospl-1.0.html +++ b/docs/mozilla-ospl-1.0.html @@ -165,8 +165,7 @@ If you would like to show your intention to be bound by this Agreement, you may wish to make the following statement: "ZXQ, Inc. hereby states that it intends to be bound by the Mozilla Open Software Patent License Agreement for Mozilla, version , as of [date]." -If you would like to use the text of this agreement for your own patent licensing, you may feel free to do so. However, to avoid confusion please remove all references to "Mozilla" from your version of the agreement. You may wish to say that your agreement is "based on the Mozilla Open Software Patent License Agreement," for informational purposes, but you are not required to do so. - +If you would like to use the text of this agreement for your own patent licensing, you may feel free to do so. However, to avoid confusion please remove all references to "Mozilla" from your version of the agreement. You may wish to say that your agreement is "based on the Mozilla Open Software Patent License Agreement," for informational purposes, but you are not required to do so.
@@ -178,7 +177,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mozilla-ospl-1.0.json b/docs/mozilla-ospl-1.0.json index 31c72a3af7..20d3936d35 100644 --- a/docs/mozilla-ospl-1.0.json +++ b/docs/mozilla-ospl-1.0.json @@ -1 +1,13 @@ -{"key": "mozilla-ospl-1.0", "short_name": "Mozilla Open Software Patent License 1.0", "name": "Mozilla Open Software Patent License Agreement v1", "category": "Patent License", "owner": "Mozilla", "homepage_url": "https://www.mozilla.org/en-US/about/patents/license/", "spdx_license_key": "LicenseRef-scancode-mozilla-ospl-1.0", "faq_url": "https://www.mozilla.org/en-US/about/patents/", "other_urls": ["https://www.mozilla.org/en-US/about/patents/guide/"]} \ No newline at end of file +{ + "key": "mozilla-ospl-1.0", + "short_name": "Mozilla Open Software Patent License 1.0", + "name": "Mozilla Open Software Patent License Agreement v1", + "category": "Patent License", + "owner": "Mozilla", + "homepage_url": "https://www.mozilla.org/en-US/about/patents/license/", + "spdx_license_key": "LicenseRef-scancode-mozilla-ospl-1.0", + "faq_url": "https://www.mozilla.org/en-US/about/patents/", + "other_urls": [ + "https://www.mozilla.org/en-US/about/patents/guide/" + ] +} \ No newline at end of file diff --git a/docs/mpeg-7.LICENSE b/docs/mpeg-7.LICENSE index eca717a760..4abbac46c7 100644 --- a/docs/mpeg-7.LICENSE +++ b/docs/mpeg-7.LICENSE @@ -1,3 +1,17 @@ +--- +key: mpeg-7 +short_name: MPEG-7 License +name: MPEG-7 License +category: Proprietary Free +owner: MPEG7FexLib +homepage_url: https://github.com/cdmh/MPEG7FexLib/blob/master/Extraction/ColorLayoutExtraction.cpp +spdx_license_key: LicenseRef-scancode-mpeg-7 +text_urls: + - https://github.com/cdmh/MPEG7FexLib/blob/master/Extraction/EdgeHistExtraction.cpp +ignorable_copyrights: + - Copyright (c) 1998-1999 +--- + This software module was originally developed by (contributing organizations names) @@ -26,4 +40,4 @@ Copyright (c) 1998-1999. modified by authors to handle small pictures on Jan. 06, 2000. modified by authors for compatibility with Visual C++ Compiler Jan.20, 2000 -This notice must be included in all copies or derivative works. +This notice must be included in all copies or derivative works. \ No newline at end of file diff --git a/docs/mpeg-7.html b/docs/mpeg-7.html index b502d79545..0041c94cbc 100644 --- a/docs/mpeg-7.html +++ b/docs/mpeg-7.html @@ -161,8 +161,7 @@ modified by authors to handle small pictures on Jan. 06, 2000. modified by authors for compatibility with Visual C++ Compiler Jan.20, 2000 -This notice must be included in all copies or derivative works. - +This notice must be included in all copies or derivative works.
@@ -174,7 +173,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mpeg-7.json b/docs/mpeg-7.json index e3d6cfe872..8b05e19cfb 100644 --- a/docs/mpeg-7.json +++ b/docs/mpeg-7.json @@ -1 +1,15 @@ -{"key": "mpeg-7", "short_name": "MPEG-7 License", "name": "MPEG-7 License", "category": "Proprietary Free", "owner": "MPEG7FexLib", "homepage_url": "https://github.com/cdmh/MPEG7FexLib/blob/master/Extraction/ColorLayoutExtraction.cpp", "spdx_license_key": "LicenseRef-scancode-mpeg-7", "text_urls": ["https://github.com/cdmh/MPEG7FexLib/blob/master/Extraction/EdgeHistExtraction.cpp"], "ignorable_copyrights": ["Copyright (c) 1998-1999"]} \ No newline at end of file +{ + "key": "mpeg-7", + "short_name": "MPEG-7 License", + "name": "MPEG-7 License", + "category": "Proprietary Free", + "owner": "MPEG7FexLib", + "homepage_url": "https://github.com/cdmh/MPEG7FexLib/blob/master/Extraction/ColorLayoutExtraction.cpp", + "spdx_license_key": "LicenseRef-scancode-mpeg-7", + "text_urls": [ + "https://github.com/cdmh/MPEG7FexLib/blob/master/Extraction/EdgeHistExtraction.cpp" + ], + "ignorable_copyrights": [ + "Copyright (c) 1998-1999" + ] +} \ No newline at end of file diff --git a/docs/mpeg-iso.LICENSE b/docs/mpeg-iso.LICENSE index 12528d6d50..2b550e1aa4 100644 --- a/docs/mpeg-iso.LICENSE +++ b/docs/mpeg-iso.LICENSE @@ -1,3 +1,18 @@ +--- +key: mpeg-iso +short_name: MPEG-2 NBC MPEG-4 Audio ISO +name: MPEG-2 NBC MPEG-4 Audio ISO License +category: Permissive +owner: ISO - International Organization for Standardization +spdx_license_key: LicenseRef-scancode-mpeg-iso +text_urls: + - http://faac.cvs.sourceforge.net/viewvc/faac/faad/libfaad/config.c +ignorable_copyrights: + - Copyright (c) 1996 +ignorable_authors: + - AT&T, Dolby Laboratories, Fraunhofer Gesellschaft IIS +--- + /************************* MPEG-2 NBC Audio Decoder ************************** * * "This software module was originally developed by diff --git a/docs/mpeg-iso.html b/docs/mpeg-iso.html index 6a48505964..ba22e89105 100644 --- a/docs/mpeg-iso.html +++ b/docs/mpeg-iso.html @@ -169,7 +169,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mpeg-iso.json b/docs/mpeg-iso.json index 4c42dcf6b9..1a3366c78f 100644 --- a/docs/mpeg-iso.json +++ b/docs/mpeg-iso.json @@ -1 +1,17 @@ -{"key": "mpeg-iso", "short_name": "MPEG-2 NBC MPEG-4 Audio ISO", "name": "MPEG-2 NBC MPEG-4 Audio ISO License", "category": "Permissive", "owner": "ISO - International Organization for Standardization", "spdx_license_key": "LicenseRef-scancode-mpeg-iso", "text_urls": ["http://faac.cvs.sourceforge.net/viewvc/faac/faad/libfaad/config.c"], "ignorable_copyrights": ["Copyright (c) 1996"], "ignorable_authors": ["AT&T, Dolby Laboratories, Fraunhofer Gesellschaft IIS"]} \ No newline at end of file +{ + "key": "mpeg-iso", + "short_name": "MPEG-2 NBC MPEG-4 Audio ISO", + "name": "MPEG-2 NBC MPEG-4 Audio ISO License", + "category": "Permissive", + "owner": "ISO - International Organization for Standardization", + "spdx_license_key": "LicenseRef-scancode-mpeg-iso", + "text_urls": [ + "http://faac.cvs.sourceforge.net/viewvc/faac/faad/libfaad/config.c" + ], + "ignorable_copyrights": [ + "Copyright (c) 1996" + ], + "ignorable_authors": [ + "AT&T, Dolby Laboratories, Fraunhofer Gesellschaft IIS" + ] +} \ No newline at end of file diff --git a/docs/mpeg-ssg.LICENSE b/docs/mpeg-ssg.LICENSE index c92d0f3947..5ef9c14b04 100644 --- a/docs/mpeg-ssg.LICENSE +++ b/docs/mpeg-ssg.LICENSE @@ -1,3 +1,13 @@ +--- +key: mpeg-ssg +short_name: MPEG SSG License +name: MPEG SSG License +category: Permissive +owner: MSSG - MPEG Software Simulation Group +homepage_url: http://www.mpeg.org/MPEG/video/mssg-free-mpeg-software.html +spdx_license_key: LicenseRef-scancode-mpeg-ssg +--- + Disclaimer of Warranty These software programs are available to the user without any license fee or diff --git a/docs/mpeg-ssg.html b/docs/mpeg-ssg.html index 8e9ebadb8b..d32e0c0faf 100644 --- a/docs/mpeg-ssg.html +++ b/docs/mpeg-ssg.html @@ -147,7 +147,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mpeg-ssg.json b/docs/mpeg-ssg.json index cd7a62a17a..1555897168 100644 --- a/docs/mpeg-ssg.json +++ b/docs/mpeg-ssg.json @@ -1 +1,9 @@ -{"key": "mpeg-ssg", "short_name": "MPEG SSG License", "name": "MPEG SSG License", "category": "Permissive", "owner": "MSSG - MPEG Software Simulation Group", "homepage_url": "http://www.mpeg.org/MPEG/video/mssg-free-mpeg-software.html", "spdx_license_key": "LicenseRef-scancode-mpeg-ssg"} \ No newline at end of file +{ + "key": "mpeg-ssg", + "short_name": "MPEG SSG License", + "name": "MPEG SSG License", + "category": "Permissive", + "owner": "MSSG - MPEG Software Simulation Group", + "homepage_url": "http://www.mpeg.org/MPEG/video/mssg-free-mpeg-software.html", + "spdx_license_key": "LicenseRef-scancode-mpeg-ssg" +} \ No newline at end of file diff --git a/docs/mpi-permissive.LICENSE b/docs/mpi-permissive.LICENSE new file mode 100644 index 0000000000..e96ebf272d --- /dev/null +++ b/docs/mpi-permissive.LICENSE @@ -0,0 +1,21 @@ +--- +key: mpi-permissive +short_name: mpi Permissive License +name: mpi Permissive License +category: Permissive +owner: Etnus +spdx_license_key: mpi-permissive +other_urls: + - https://sources.debian.org/src/openmpi/4.1.0-10/ompi/debuggers/msgq_interface.h/?hl=19#L19 +--- + +Permission is hereby granted to use, reproduce, prepare derivative +works, and to redistribute to others. + + DISCLAIMER + +Neither Etnus, nor any of their employees, makes any warranty +express or implied, or assumes any legal liability or +responsibility for the accuracy, completeness, or usefulness of any +information, apparatus, product, or process disclosed, or +represents that its use would not infringe privately owned rights. \ No newline at end of file diff --git a/docs/mpi-permissive.html b/docs/mpi-permissive.html new file mode 100644 index 0000000000..707437defa --- /dev/null +++ b/docs/mpi-permissive.html @@ -0,0 +1,161 @@ + + + + + + LicenseDB: mpi-permissive + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + mpi-permissive + +
+ +
short_name
+
+ + mpi Permissive License + +
+ +
name
+
+ + mpi Permissive License + +
+ +
category
+
+ + Permissive + +
+ +
owner
+
+ + Etnus + +
+ +
spdx_license_key
+
+ + mpi-permissive + +
+ +
other_urls
+
+ + + +
+ +
+
license_text
+
Permission is hereby granted to use, reproduce, prepare derivative
+works, and to redistribute to others.
+
+			  DISCLAIMER
+
+Neither Etnus, nor any of their employees, makes any warranty
+express or implied, or assumes any legal liability or
+responsibility for the accuracy, completeness, or usefulness of any
+information, apparatus, product, or process disclosed, or
+represents that its use would not infringe privately owned rights.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/mpi-permissive.json b/docs/mpi-permissive.json new file mode 100644 index 0000000000..96b2a6b156 --- /dev/null +++ b/docs/mpi-permissive.json @@ -0,0 +1,11 @@ +{ + "key": "mpi-permissive", + "short_name": "mpi Permissive License", + "name": "mpi Permissive License", + "category": "Permissive", + "owner": "Etnus", + "spdx_license_key": "mpi-permissive", + "other_urls": [ + "https://sources.debian.org/src/openmpi/4.1.0-10/ompi/debuggers/msgq_interface.h/?hl=19#L19" + ] +} \ No newline at end of file diff --git a/docs/mpi-permissive.yml b/docs/mpi-permissive.yml new file mode 100644 index 0000000000..7b5dde3a73 --- /dev/null +++ b/docs/mpi-permissive.yml @@ -0,0 +1,8 @@ +key: mpi-permissive +short_name: mpi Permissive License +name: mpi Permissive License +category: Permissive +owner: Etnus +spdx_license_key: mpi-permissive +other_urls: + - https://sources.debian.org/src/openmpi/4.1.0-10/ompi/debuggers/msgq_interface.h/?hl=19#L19 diff --git a/docs/mpich.LICENSE b/docs/mpich.LICENSE index 0e47dbd0a9..a91819c12d 100644 --- a/docs/mpich.LICENSE +++ b/docs/mpich.LICENSE @@ -1,3 +1,20 @@ +--- +key: mpich +short_name: MPICH License +name: MPICH License +category: Permissive +owner: University of Chicago +homepage_url: https://svn.mcs.anl.gov/repos/mpi/mpich2/trunk/COPYRIGHT +notes: | + Per Fedora, this is missing the anti-publicity-use clause, and doesn't + mention sublicensing, but otherwise, it is functionally identical to MIT. +spdx_license_key: mpich2 +text_urls: + - https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#mpich2_variant +other_urls: + - https://fedoraproject.org/wiki/Licensing/MIT +--- + COPYRIGHT The following is a notice of limited availability of the code, and disclaimer diff --git a/docs/mpich.html b/docs/mpich.html index 2ee9b1175b..7cebfebd06 100644 --- a/docs/mpich.html +++ b/docs/mpich.html @@ -191,7 +191,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mpich.json b/docs/mpich.json index 879fccc492..a2666ec7e5 100644 --- a/docs/mpich.json +++ b/docs/mpich.json @@ -1 +1,16 @@ -{"key": "mpich", "short_name": "MPICH License", "name": "MPICH License", "category": "Permissive", "owner": "University of Chicago", "homepage_url": "https://svn.mcs.anl.gov/repos/mpi/mpich2/trunk/COPYRIGHT", "notes": "Per Fedora, this is missing the anti-publicity-use clause, and doesn't\nmention sublicensing, but otherwise, it is functionally identical to MIT.\n", "spdx_license_key": "mpich2", "text_urls": ["https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#mpich2_variant"], "other_urls": ["https://fedoraproject.org/wiki/Licensing/MIT"]} \ No newline at end of file +{ + "key": "mpich", + "short_name": "MPICH License", + "name": "MPICH License", + "category": "Permissive", + "owner": "University of Chicago", + "homepage_url": "https://svn.mcs.anl.gov/repos/mpi/mpich2/trunk/COPYRIGHT", + "notes": "Per Fedora, this is missing the anti-publicity-use clause, and doesn't\nmention sublicensing, but otherwise, it is functionally identical to MIT.\n", + "spdx_license_key": "mpich2", + "text_urls": [ + "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#mpich2_variant" + ], + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/MIT" + ] +} \ No newline at end of file diff --git a/docs/mpl-1.0.LICENSE b/docs/mpl-1.0.LICENSE index 55c157e28f..1c8af2aa0a 100644 --- a/docs/mpl-1.0.LICENSE +++ b/docs/mpl-1.0.LICENSE @@ -1,3 +1,31 @@ +--- +key: mpl-1.0 +short_name: MPL 1.0 +name: Mozilla Public License 1.0 +category: Copyleft Limited +owner: Mozilla +homepage_url: http://www.mozilla.org/MPL/MPL-1.0.html +notes: | + Per SPDX.org, this license was OSI certified. This license have been + superseded by v1.1 +spdx_license_key: MPL-1.0 +osi_license_key: MPL-1.0 +text_urls: + - http://www.mozilla.com/MPL/1.0/index.html + - http://www.mozilla.org/MPL/1.0/ + - http://www.mozilla.org/MPL/1.0/index.html + - http://www.mozilla.org/MPL/1.0/index.txt + - http://www.mozilla.org/MPL/MPL-1.0.html + - http://www.mozilla.org/MPL/MPL-1.0.txt +osi_url: http://opensource.org/licenses/mozilla1.0.php +faq_url: http://www.mozilla.org/MPL/mpl-faq.html +other_urls: + - http://opensource.org/licenses/MPL-1.0 + - https://opensource.org/licenses/MPL-1.0 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + MOZILLA PUBLIC LICENSE Version 1.0 diff --git a/docs/mpl-1.0.html b/docs/mpl-1.0.html index 5d829c6a7f..52003472fd 100644 --- a/docs/mpl-1.0.html +++ b/docs/mpl-1.0.html @@ -301,7 +301,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mpl-1.0.json b/docs/mpl-1.0.json index d142b217f8..46ad1b5cf6 100644 --- a/docs/mpl-1.0.json +++ b/docs/mpl-1.0.json @@ -1 +1,28 @@ -{"key": "mpl-1.0", "short_name": "MPL 1.0", "name": "Mozilla Public License 1.0", "category": "Copyleft Limited", "owner": "Mozilla", "homepage_url": "http://www.mozilla.org/MPL/MPL-1.0.html", "notes": "Per SPDX.org, this license was OSI certified. This license have been\nsuperseded by v1.1\n", "spdx_license_key": "MPL-1.0", "osi_license_key": "MPL-1.0", "text_urls": ["http://www.mozilla.com/MPL/1.0/index.html", "http://www.mozilla.org/MPL/1.0/", "http://www.mozilla.org/MPL/1.0/index.html", "http://www.mozilla.org/MPL/1.0/index.txt", "http://www.mozilla.org/MPL/MPL-1.0.html", "http://www.mozilla.org/MPL/MPL-1.0.txt"], "osi_url": "http://opensource.org/licenses/mozilla1.0.php", "faq_url": "http://www.mozilla.org/MPL/mpl-faq.html", "other_urls": ["http://opensource.org/licenses/MPL-1.0", "https://opensource.org/licenses/MPL-1.0"], "ignorable_urls": ["http://www.mozilla.org/MPL/"]} \ No newline at end of file +{ + "key": "mpl-1.0", + "short_name": "MPL 1.0", + "name": "Mozilla Public License 1.0", + "category": "Copyleft Limited", + "owner": "Mozilla", + "homepage_url": "http://www.mozilla.org/MPL/MPL-1.0.html", + "notes": "Per SPDX.org, this license was OSI certified. This license have been\nsuperseded by v1.1\n", + "spdx_license_key": "MPL-1.0", + "osi_license_key": "MPL-1.0", + "text_urls": [ + "http://www.mozilla.com/MPL/1.0/index.html", + "http://www.mozilla.org/MPL/1.0/", + "http://www.mozilla.org/MPL/1.0/index.html", + "http://www.mozilla.org/MPL/1.0/index.txt", + "http://www.mozilla.org/MPL/MPL-1.0.html", + "http://www.mozilla.org/MPL/MPL-1.0.txt" + ], + "osi_url": "http://opensource.org/licenses/mozilla1.0.php", + "faq_url": "http://www.mozilla.org/MPL/mpl-faq.html", + "other_urls": [ + "http://opensource.org/licenses/MPL-1.0", + "https://opensource.org/licenses/MPL-1.0" + ], + "ignorable_urls": [ + "http://www.mozilla.org/MPL/" + ] +} \ No newline at end of file diff --git a/docs/mpl-1.1.LICENSE b/docs/mpl-1.1.LICENSE index b5697673ff..a8ea82e277 100644 --- a/docs/mpl-1.1.LICENSE +++ b/docs/mpl-1.1.LICENSE @@ -1,3 +1,29 @@ +--- +key: mpl-1.1 +short_name: MPL 1.1 +name: Mozilla Public License 1.1 +category: Copyleft Limited +owner: Mozilla +homepage_url: http://www.mozilla.org/MPL/MPL-1.1.html +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: MPL-1.1 +osi_license_key: MPL-1.1 +text_urls: + - http://www.mozilla.com/MPL/1.1/index.html + - http://www.mozilla.org/MPL/1.1/ + - http://www.mozilla.org/MPL/1.1/index.html + - http://www.mozilla.org/MPL/1.1/index.txt + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.mozilla.org/MPL/MPL-1.1.txt +osi_url: http://opensource.org/licenses/mozilla1.1.php +faq_url: http://www.mozilla.org/MPL/mpl-faq.html +other_urls: + - http://www.opensource.org/licenses/MPL-1.1 + - https://opensource.org/licenses/MPL-1.1 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + MOZILLA PUBLIC LICENSE Version 1.1 diff --git a/docs/mpl-1.1.html b/docs/mpl-1.1.html index 1939cfffe3..b0ef0f4548 100644 --- a/docs/mpl-1.1.html +++ b/docs/mpl-1.1.html @@ -327,7 +327,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mpl-1.1.json b/docs/mpl-1.1.json index d4ea3583e6..be00950237 100644 --- a/docs/mpl-1.1.json +++ b/docs/mpl-1.1.json @@ -1 +1,28 @@ -{"key": "mpl-1.1", "short_name": "MPL 1.1", "name": "Mozilla Public License 1.1", "category": "Copyleft Limited", "owner": "Mozilla", "homepage_url": "http://www.mozilla.org/MPL/MPL-1.1.html", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "MPL-1.1", "osi_license_key": "MPL-1.1", "text_urls": ["http://www.mozilla.com/MPL/1.1/index.html", "http://www.mozilla.org/MPL/1.1/", "http://www.mozilla.org/MPL/1.1/index.html", "http://www.mozilla.org/MPL/1.1/index.txt", "http://www.mozilla.org/MPL/MPL-1.1.html", "http://www.mozilla.org/MPL/MPL-1.1.txt"], "osi_url": "http://opensource.org/licenses/mozilla1.1.php", "faq_url": "http://www.mozilla.org/MPL/mpl-faq.html", "other_urls": ["http://www.opensource.org/licenses/MPL-1.1", "https://opensource.org/licenses/MPL-1.1"], "ignorable_urls": ["http://www.mozilla.org/MPL/"]} \ No newline at end of file +{ + "key": "mpl-1.1", + "short_name": "MPL 1.1", + "name": "Mozilla Public License 1.1", + "category": "Copyleft Limited", + "owner": "Mozilla", + "homepage_url": "http://www.mozilla.org/MPL/MPL-1.1.html", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "MPL-1.1", + "osi_license_key": "MPL-1.1", + "text_urls": [ + "http://www.mozilla.com/MPL/1.1/index.html", + "http://www.mozilla.org/MPL/1.1/", + "http://www.mozilla.org/MPL/1.1/index.html", + "http://www.mozilla.org/MPL/1.1/index.txt", + "http://www.mozilla.org/MPL/MPL-1.1.html", + "http://www.mozilla.org/MPL/MPL-1.1.txt" + ], + "osi_url": "http://opensource.org/licenses/mozilla1.1.php", + "faq_url": "http://www.mozilla.org/MPL/mpl-faq.html", + "other_urls": [ + "http://www.opensource.org/licenses/MPL-1.1", + "https://opensource.org/licenses/MPL-1.1" + ], + "ignorable_urls": [ + "http://www.mozilla.org/MPL/" + ] +} \ No newline at end of file diff --git a/docs/mpl-2.0-no-copyleft-exception.LICENSE b/docs/mpl-2.0-no-copyleft-exception.LICENSE index 013c6ab445..fac8a59278 100644 --- a/docs/mpl-2.0-no-copyleft-exception.LICENSE +++ b/docs/mpl-2.0-no-copyleft-exception.LICENSE @@ -1,2 +1,21 @@ +--- +key: mpl-2.0-no-copyleft-exception +short_name: MPL 2.0 with no copyleft exception +name: Mozilla Public License 2.0 (no copyleft exception) +category: Copyleft Limited +owner: Mozilla +homepage_url: http://www.mozilla.org/MPL/2.0/ +notes: | + Per SPDX.org, this license was released in January 2012. This license list + entry is for use when the MPL's Exhibit B, which removes the Sec 3.3 + copyleft exception. +spdx_license_key: MPL-2.0-no-copyleft-exception +osi_url: http://opensource.org/licenses/MPL-2.0 +other_urls: + - https://opensource.org/licenses/MPL-2.0 + - https://www.mozilla.org/MPL/2.0/ +minimum_coverage: 99 +--- + This Source Code Form is "Incompatible With Secondary Licenses", as -defined by the Mozilla Public License, v. 2.0. +defined by the Mozilla Public License, v. 2.0. \ No newline at end of file diff --git a/docs/mpl-2.0-no-copyleft-exception.html b/docs/mpl-2.0-no-copyleft-exception.html index c0ff14e258..ef20db23d6 100644 --- a/docs/mpl-2.0-no-copyleft-exception.html +++ b/docs/mpl-2.0-no-copyleft-exception.html @@ -149,8 +149,7 @@
license_text
This Source Code Form is "Incompatible With Secondary Licenses", as
-defined by the Mozilla Public License, v. 2.0.
-
+defined by the Mozilla Public License, v. 2.0.
@@ -162,7 +161,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mpl-2.0-no-copyleft-exception.json b/docs/mpl-2.0-no-copyleft-exception.json index 05302a68ca..15b8240019 100644 --- a/docs/mpl-2.0-no-copyleft-exception.json +++ b/docs/mpl-2.0-no-copyleft-exception.json @@ -1 +1,16 @@ -{"key": "mpl-2.0-no-copyleft-exception", "short_name": "MPL 2.0 with no copyleft exception", "name": "Mozilla Public License 2.0 (no copyleft exception)", "category": "Copyleft Limited", "owner": "Mozilla", "homepage_url": "http://www.mozilla.org/MPL/2.0/", "notes": "Per SPDX.org, this license was released in January 2012. This license list\nentry is for use when the MPL's Exhibit B, which removes the Sec 3.3\ncopyleft exception.\n", "spdx_license_key": "MPL-2.0-no-copyleft-exception", "osi_url": "http://opensource.org/licenses/MPL-2.0", "other_urls": ["https://opensource.org/licenses/MPL-2.0", "https://www.mozilla.org/MPL/2.0/"], "minimum_coverage": 99} \ No newline at end of file +{ + "key": "mpl-2.0-no-copyleft-exception", + "short_name": "MPL 2.0 with no copyleft exception", + "name": "Mozilla Public License 2.0 (no copyleft exception)", + "category": "Copyleft Limited", + "owner": "Mozilla", + "homepage_url": "http://www.mozilla.org/MPL/2.0/", + "notes": "Per SPDX.org, this license was released in January 2012. This license list\nentry is for use when the MPL's Exhibit B, which removes the Sec 3.3\ncopyleft exception.\n", + "spdx_license_key": "MPL-2.0-no-copyleft-exception", + "osi_url": "http://opensource.org/licenses/MPL-2.0", + "other_urls": [ + "https://opensource.org/licenses/MPL-2.0", + "https://www.mozilla.org/MPL/2.0/" + ], + "minimum_coverage": 99 +} \ No newline at end of file diff --git a/docs/mpl-2.0.LICENSE b/docs/mpl-2.0.LICENSE index f4bbcd200a..9c009acd09 100644 --- a/docs/mpl-2.0.LICENSE +++ b/docs/mpl-2.0.LICENSE @@ -1,3 +1,30 @@ +--- +key: mpl-2.0 +short_name: MPL 2.0 +name: Mozilla Public License 2.0 +category: Copyleft Limited +owner: Mozilla +homepage_url: http://mpl.mozilla.org/2012/01/03/announcing-mpl-2-0/ +notes: | + Per SPDX.org, this license was released in January 2012. This license list + entry is for use when the standard MPL 2.0 is used, as indicated by the + standard header (Exhibit A but no Exhibit B). +spdx_license_key: MPL-2.0 +osi_license_key: MPL-2.0 +text_urls: + - http://www.mozilla.com/MPL/2.0/ + - http://www.mozilla.org/MPL/2.0/ + - http://www.mozilla.org/MPL/2.0/index.html + - http://www.mozilla.org/MPL/2.0/index.txt +osi_url: http://opensource.org/licenses/MPL-2.0 +faq_url: http://www.mozilla.org/MPL/2.0/FAQ.html +other_urls: + - https://opensource.org/licenses/MPL-2.0 + - https://www.mozilla.org/MPL/2.0/ +ignorable_urls: + - http://mozilla.org/MPL/2.0 +--- + Mozilla Public License Version 2.0 ================================== diff --git a/docs/mpl-2.0.html b/docs/mpl-2.0.html index 4ab5894b5a..47bf878e78 100644 --- a/docs/mpl-2.0.html +++ b/docs/mpl-2.0.html @@ -557,7 +557,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mpl-2.0.json b/docs/mpl-2.0.json index 74e119a675..4b43f99602 100644 --- a/docs/mpl-2.0.json +++ b/docs/mpl-2.0.json @@ -1 +1,26 @@ -{"key": "mpl-2.0", "short_name": "MPL 2.0", "name": "Mozilla Public License 2.0", "category": "Copyleft Limited", "owner": "Mozilla", "homepage_url": "http://mpl.mozilla.org/2012/01/03/announcing-mpl-2-0/", "notes": "Per SPDX.org, this license was released in January 2012. This license list\nentry is for use when the standard MPL 2.0 is used, as indicated by the\nstandard header (Exhibit A but no Exhibit B).\n", "spdx_license_key": "MPL-2.0", "osi_license_key": "MPL-2.0", "text_urls": ["http://www.mozilla.com/MPL/2.0/", "http://www.mozilla.org/MPL/2.0/", "http://www.mozilla.org/MPL/2.0/index.html", "http://www.mozilla.org/MPL/2.0/index.txt"], "osi_url": "http://opensource.org/licenses/MPL-2.0", "faq_url": "http://www.mozilla.org/MPL/2.0/FAQ.html", "other_urls": ["https://opensource.org/licenses/MPL-2.0", "https://www.mozilla.org/MPL/2.0/"], "ignorable_urls": ["http://mozilla.org/MPL/2.0"]} \ No newline at end of file +{ + "key": "mpl-2.0", + "short_name": "MPL 2.0", + "name": "Mozilla Public License 2.0", + "category": "Copyleft Limited", + "owner": "Mozilla", + "homepage_url": "http://mpl.mozilla.org/2012/01/03/announcing-mpl-2-0/", + "notes": "Per SPDX.org, this license was released in January 2012. This license list\nentry is for use when the standard MPL 2.0 is used, as indicated by the\nstandard header (Exhibit A but no Exhibit B).\n", + "spdx_license_key": "MPL-2.0", + "osi_license_key": "MPL-2.0", + "text_urls": [ + "http://www.mozilla.com/MPL/2.0/", + "http://www.mozilla.org/MPL/2.0/", + "http://www.mozilla.org/MPL/2.0/index.html", + "http://www.mozilla.org/MPL/2.0/index.txt" + ], + "osi_url": "http://opensource.org/licenses/MPL-2.0", + "faq_url": "http://www.mozilla.org/MPL/2.0/FAQ.html", + "other_urls": [ + "https://opensource.org/licenses/MPL-2.0", + "https://www.mozilla.org/MPL/2.0/" + ], + "ignorable_urls": [ + "http://mozilla.org/MPL/2.0" + ] +} \ No newline at end of file diff --git a/docs/ms-asp-net-ajax-supplemental-terms.LICENSE b/docs/ms-asp-net-ajax-supplemental-terms.LICENSE index 2b22cd928b..4a0f6dacbb 100644 --- a/docs/ms-asp-net-ajax-supplemental-terms.LICENSE +++ b/docs/ms-asp-net-ajax-supplemental-terms.LICENSE @@ -1,3 +1,19 @@ +--- +key: ms-asp-net-ajax-supplemental-terms +short_name: MS Supplemental License - ASP.NET 2.0 AJAX EXT +name: Microsoft Software Supplemental License - ASP.NET 2.0 AJAX EXTENSIONS +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-asp-net-ajax-supp-terms +other_spdx_license_keys: + - LicenseRef-scancode-ms-asp-net-ajax-supplemental-terms +faq_url: http://go.microsoft.com/fwlink/?LinkID=66406&clcid=0x409 +other_urls: + - www.support.microsoft.com/common/international.aspx +ignorable_urls: + - http://www.support.microsoft.com/common/international.aspx +--- + MICROSOFT SOFTWARE SUPPLEMENT LICENSE TERMS MICROSOFT ASP.NET 2.0 AJAX EXTENSIONS Microsoft Corporation (or based on where you live, one of its affiliates) licenses this supplement to you. If you are licensed to use Microsoft Windows operating system software (the "software"), you may use this supplement. You may not use it if you do not have a license for the software. You may use a copy of this supplement with each validly licensed copy of the software. diff --git a/docs/ms-asp-net-ajax-supplemental-terms.html b/docs/ms-asp-net-ajax-supplemental-terms.html index bf9b6d44c8..42217d601a 100644 --- a/docs/ms-asp-net-ajax-supplemental-terms.html +++ b/docs/ms-asp-net-ajax-supplemental-terms.html @@ -183,7 +183,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-asp-net-ajax-supplemental-terms.json b/docs/ms-asp-net-ajax-supplemental-terms.json index 580c22f562..cf0a95b4b8 100644 --- a/docs/ms-asp-net-ajax-supplemental-terms.json +++ b/docs/ms-asp-net-ajax-supplemental-terms.json @@ -1 +1,18 @@ -{"key": "ms-asp-net-ajax-supplemental-terms", "short_name": "MS Supplemental License - ASP.NET 2.0 AJAX EXT", "name": "Microsoft Software Supplemental License - ASP.NET 2.0 AJAX EXTENSIONS", "category": "Proprietary Free", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-asp-net-ajax-supp-terms", "other_spdx_license_keys": ["LicenseRef-scancode-ms-asp-net-ajax-supplemental-terms"], "faq_url": "http://go.microsoft.com/fwlink/?LinkID=66406&clcid=0x409", "other_urls": ["www.support.microsoft.com/common/international.aspx"], "ignorable_urls": ["http://www.support.microsoft.com/common/international.aspx"]} \ No newline at end of file +{ + "key": "ms-asp-net-ajax-supplemental-terms", + "short_name": "MS Supplemental License - ASP.NET 2.0 AJAX EXT", + "name": "Microsoft Software Supplemental License - ASP.NET 2.0 AJAX EXTENSIONS", + "category": "Proprietary Free", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-ajax-supp-terms", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-asp-net-ajax-supplemental-terms" + ], + "faq_url": "http://go.microsoft.com/fwlink/?LinkID=66406&clcid=0x409", + "other_urls": [ + "www.support.microsoft.com/common/international.aspx" + ], + "ignorable_urls": [ + "http://www.support.microsoft.com/common/international.aspx" + ] +} \ No newline at end of file diff --git a/docs/ms-asp-net-mvc3.LICENSE b/docs/ms-asp-net-mvc3.LICENSE index 4c79e93283..3e19f36833 100644 --- a/docs/ms-asp-net-mvc3.LICENSE +++ b/docs/ms-asp-net-mvc3.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-asp-net-mvc3 +short_name: MS ASP.NET MVC3 +name: Microsoft ASP.NET MVC 3 License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/aspnetmvc3update-eula.htm +spdx_license_key: LicenseRef-scancode-ms-asp-net-mvc3 +ignorable_urls: + - http://www.microsoft.com/exporting + - http://www.support.microsoft.com/common/international.aspx +--- + This installation contains the following software, the license terms of each of which are included below: · Microsoft ASP.NET Model View Controller 3 Tools Update @@ -365,5 +378,4 @@ It also applies even if Microsoft knew or should have known about the possibilit MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT SOFTWARE UPDATE TO VISUAL STUDIO, KB2483190 -PLEASE NOTE: Microsoft Corporation (or based on where you live, one of its affiliates) licenses this supplement to you. You may use it with each validly licensed copy of Microsoft Visual Studio 2010 or Microsoft Windows operating system software (for which this supplement is applicable) (the "software"). You may not use the supplement if you do not have a license for the software. The license terms for the software apply to your use of this supplement. Microsoft provides support services for the supplement as described at www.support.microsoft.com/common/international.aspx. - +PLEASE NOTE: Microsoft Corporation (or based on where you live, one of its affiliates) licenses this supplement to you. You may use it with each validly licensed copy of Microsoft Visual Studio 2010 or Microsoft Windows operating system software (for which this supplement is applicable) (the "software"). You may not use the supplement if you do not have a license for the software. The license terms for the software apply to your use of this supplement. Microsoft provides support services for the supplement as described at www.support.microsoft.com/common/international.aspx. \ No newline at end of file diff --git a/docs/ms-asp-net-mvc3.html b/docs/ms-asp-net-mvc3.html index 19b32b15e2..d2f7f6a67f 100644 --- a/docs/ms-asp-net-mvc3.html +++ b/docs/ms-asp-net-mvc3.html @@ -491,9 +491,7 @@ MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT SOFTWARE UPDATE TO VISUAL STUDIO, KB2483190 -PLEASE NOTE: Microsoft Corporation (or based on where you live, one of its affiliates) licenses this supplement to you. You may use it with each validly licensed copy of Microsoft Visual Studio 2010 or Microsoft Windows operating system software (for which this supplement is applicable) (the "software"). You may not use the supplement if you do not have a license for the software. The license terms for the software apply to your use of this supplement. Microsoft provides support services for the supplement as described at www.support.microsoft.com/common/international.aspx. - - +PLEASE NOTE: Microsoft Corporation (or based on where you live, one of its affiliates) licenses this supplement to you. You may use it with each validly licensed copy of Microsoft Visual Studio 2010 or Microsoft Windows operating system software (for which this supplement is applicable) (the "software"). You may not use the supplement if you do not have a license for the software. The license terms for the software apply to your use of this supplement. Microsoft provides support services for the supplement as described at www.support.microsoft.com/common/international.aspx.
@@ -505,7 +503,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-asp-net-mvc3.json b/docs/ms-asp-net-mvc3.json index da8d9d3d93..865f2d70a4 100644 --- a/docs/ms-asp-net-mvc3.json +++ b/docs/ms-asp-net-mvc3.json @@ -1 +1,13 @@ -{"key": "ms-asp-net-mvc3", "short_name": "MS ASP.NET MVC3", "name": "Microsoft ASP.NET MVC 3 License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://www.microsoft.com/web/webpi/eula/aspnetmvc3update-eula.htm", "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc3", "ignorable_urls": ["http://www.microsoft.com/exporting", "http://www.support.microsoft.com/common/international.aspx"]} \ No newline at end of file +{ + "key": "ms-asp-net-mvc3", + "short_name": "MS ASP.NET MVC3", + "name": "Microsoft ASP.NET MVC 3 License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://www.microsoft.com/web/webpi/eula/aspnetmvc3update-eula.htm", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc3", + "ignorable_urls": [ + "http://www.microsoft.com/exporting", + "http://www.support.microsoft.com/common/international.aspx" + ] +} \ No newline at end of file diff --git a/docs/ms-asp-net-mvc4-extensions.LICENSE b/docs/ms-asp-net-mvc4-extensions.LICENSE index ea1983e8cb..8367b7d352 100644 --- a/docs/ms-asp-net-mvc4-extensions.LICENSE +++ b/docs/ms-asp-net-mvc4-extensions.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-asp-net-mvc4-extensions +short_name: MS ASP.NET MVC 4 Extensions +name: Microsoft ASP.NET MVC 4 Extensions License +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.microsoft.com/web/webpi/eula/mvc4extensions_prerelease_eula.htm +spdx_license_key: LicenseRef-scancode-ms-asp-net-mvc4-extensions +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT PRE-RELEASE SOFTWARE LICENSE TERMS MICROSOFT ASP.NET MODEL VIEW CONTROLLER 4 EXTENSIONS These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the pre-release software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft diff --git a/docs/ms-asp-net-mvc4-extensions.html b/docs/ms-asp-net-mvc4-extensions.html index a757907c08..7ede7eee53 100644 --- a/docs/ms-asp-net-mvc4-extensions.html +++ b/docs/ms-asp-net-mvc4-extensions.html @@ -218,7 +218,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-asp-net-mvc4-extensions.json b/docs/ms-asp-net-mvc4-extensions.json index 9c1da9a012..675e9f4e35 100644 --- a/docs/ms-asp-net-mvc4-extensions.json +++ b/docs/ms-asp-net-mvc4-extensions.json @@ -1 +1,12 @@ -{"key": "ms-asp-net-mvc4-extensions", "short_name": "MS ASP.NET MVC 4 Extensions", "name": "Microsoft ASP.NET MVC 4 Extensions License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://www.microsoft.com/web/webpi/eula/mvc4extensions_prerelease_eula.htm", "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc4-extensions", "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-asp-net-mvc4-extensions", + "short_name": "MS ASP.NET MVC 4 Extensions", + "name": "Microsoft ASP.NET MVC 4 Extensions License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://www.microsoft.com/web/webpi/eula/mvc4extensions_prerelease_eula.htm", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc4-extensions", + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-asp-net-mvc4.LICENSE b/docs/ms-asp-net-mvc4.LICENSE index 3a7f54dc1a..b35fa28fcb 100644 --- a/docs/ms-asp-net-mvc4.LICENSE +++ b/docs/ms-asp-net-mvc4.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-asp-net-mvc4 +short_name: MS ASP.NET MVC4 +name: Microsoft ASP.NET MVC 4 License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/mvc_4_eula_enu.htm +spdx_license_key: LicenseRef-scancode-ms-asp-net-mvc4 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT ASP.NET MODEL VIEW CONTROLLER 4 These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft @@ -77,4 +89,4 @@ FOR AUSTRALIA – You have statutory guarantees under the Australian Consumer La This limitation applies to • anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and • claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. -It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. \ No newline at end of file diff --git a/docs/ms-asp-net-mvc4.html b/docs/ms-asp-net-mvc4.html index 15c406f57c..78915ec6c6 100644 --- a/docs/ms-asp-net-mvc4.html +++ b/docs/ms-asp-net-mvc4.html @@ -203,8 +203,7 @@ This limitation applies to • anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and • claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. -It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. - +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.
@@ -216,7 +215,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-asp-net-mvc4.json b/docs/ms-asp-net-mvc4.json index ea761c4896..4f03f4fa35 100644 --- a/docs/ms-asp-net-mvc4.json +++ b/docs/ms-asp-net-mvc4.json @@ -1 +1,12 @@ -{"key": "ms-asp-net-mvc4", "short_name": "MS ASP.NET MVC4", "name": "Microsoft ASP.NET MVC 4 License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://www.microsoft.com/web/webpi/eula/mvc_4_eula_enu.htm", "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc4", "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-asp-net-mvc4", + "short_name": "MS ASP.NET MVC4", + "name": "Microsoft ASP.NET MVC 4 License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://www.microsoft.com/web/webpi/eula/mvc_4_eula_enu.htm", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc4", + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-asp-net-software.LICENSE b/docs/ms-asp-net-software.LICENSE index a237e088c4..d8e0cdc25a 100644 --- a/docs/ms-asp-net-software.LICENSE +++ b/docs/ms-asp-net-software.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-asp-net-software +short_name: MS ASP.NET Software License +name: Microsoft ASP.NET Software License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/aspnet_and_web_tools_2012_2_rtw_eula_enu.htm +spdx_license_key: LicenseRef-scancode-ms-asp-net-software +ignorable_urls: + - http://www.microsoft.com/exporting + - http://www.microsoft.com/products/ceip/en-us/privacypolicy.mspx +--- + MICROSOFT SOFTWARE LICENSE TERMS Microsoft ASP.NET Model View Controller, Web API and Web Pages @@ -232,6 +245,4 @@ Cette limitation concerne : Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. -EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. - - \ No newline at end of file +EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. \ No newline at end of file diff --git a/docs/ms-asp-net-software.html b/docs/ms-asp-net-software.html index d6681cd147..2f2ccbf92d 100644 --- a/docs/ms-asp-net-software.html +++ b/docs/ms-asp-net-software.html @@ -358,9 +358,7 @@ Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. -EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. - - +EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas.
@@ -372,7 +370,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-asp-net-software.json b/docs/ms-asp-net-software.json index d772d55130..b58d1649fb 100644 --- a/docs/ms-asp-net-software.json +++ b/docs/ms-asp-net-software.json @@ -1 +1,13 @@ -{"key": "ms-asp-net-software", "short_name": "MS ASP.NET Software License", "name": "Microsoft ASP.NET Software License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://www.microsoft.com/web/webpi/eula/aspnet_and_web_tools_2012_2_rtw_eula_enu.htm", "spdx_license_key": "LicenseRef-scancode-ms-asp-net-software", "ignorable_urls": ["http://www.microsoft.com/exporting", "http://www.microsoft.com/products/ceip/en-us/privacypolicy.mspx"]} \ No newline at end of file +{ + "key": "ms-asp-net-software", + "short_name": "MS ASP.NET Software License", + "name": "Microsoft ASP.NET Software License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://www.microsoft.com/web/webpi/eula/aspnet_and_web_tools_2012_2_rtw_eula_enu.htm", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-software", + "ignorable_urls": [ + "http://www.microsoft.com/exporting", + "http://www.microsoft.com/products/ceip/en-us/privacypolicy.mspx" + ] +} \ No newline at end of file diff --git a/docs/ms-asp-net-tools-pre-release.LICENSE b/docs/ms-asp-net-tools-pre-release.LICENSE index f2b86097c5..5b69579324 100644 --- a/docs/ms-asp-net-tools-pre-release.LICENSE +++ b/docs/ms-asp-net-tools-pre-release.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-asp-net-tools-pre-release +short_name: MS ASP.NET Tools Pre-Release License +name: Microsoft ASP.NET Tools Pre-Release License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/aspnetcomponent_enu.htm +spdx_license_key: LicenseRef-scancode-ms-asp-net-tools-pre-release +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkId=296594 + - http://www.microsoft.com/exporting +--- + MICROSOFT PRE-RELEASE SOFTWARE LICENSE TERMS MICROSOFT ASP.NET TOOLS diff --git a/docs/ms-asp-net-tools-pre-release.html b/docs/ms-asp-net-tools-pre-release.html index a3e5222c95..3f08b2e7a4 100644 --- a/docs/ms-asp-net-tools-pre-release.html +++ b/docs/ms-asp-net-tools-pre-release.html @@ -253,7 +253,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-asp-net-tools-pre-release.json b/docs/ms-asp-net-tools-pre-release.json index d4452ba464..6e7e604a63 100644 --- a/docs/ms-asp-net-tools-pre-release.json +++ b/docs/ms-asp-net-tools-pre-release.json @@ -1 +1,13 @@ -{"key": "ms-asp-net-tools-pre-release", "short_name": "MS ASP.NET Tools Pre-Release License", "name": "Microsoft ASP.NET Tools Pre-Release License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://www.microsoft.com/web/webpi/eula/aspnetcomponent_enu.htm", "spdx_license_key": "LicenseRef-scancode-ms-asp-net-tools-pre-release", "ignorable_urls": ["http://go.microsoft.com/fwlink/?LinkId=296594", "http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-asp-net-tools-pre-release", + "short_name": "MS ASP.NET Tools Pre-Release License", + "name": "Microsoft ASP.NET Tools Pre-Release License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://www.microsoft.com/web/webpi/eula/aspnetcomponent_enu.htm", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-tools-pre-release", + "ignorable_urls": [ + "http://go.microsoft.com/fwlink/?LinkId=296594", + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-asp-net-web-optimization-framework.LICENSE b/docs/ms-asp-net-web-optimization-framework.LICENSE index a9b59b769d..3666109420 100644 --- a/docs/ms-asp-net-web-optimization-framework.LICENSE +++ b/docs/ms-asp-net-web-optimization-framework.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-asp-net-web-optimization-framework +short_name: MS ASP.NET Web Optimization Framework +name: Microsoft ASP.NET Web Optimization Framework +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.microsoft.com/web/webpi/eula/weboptimization_1_eula_enu.htm +spdx_license_key: LicenseRef-scancode-ms-asp-net-web-optimization +other_spdx_license_keys: + - LicenseRef-scancode-ms-asp-net-web-optimization-framework +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT ASP.NET WEB OPTIMIZATION FRAMEWORK These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft @@ -97,4 +111,4 @@ Cette limitation concerne : Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. -EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. +EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. \ No newline at end of file diff --git a/docs/ms-asp-net-web-optimization-framework.html b/docs/ms-asp-net-web-optimization-framework.html index 2cef29191e..aceb5f1c88 100644 --- a/docs/ms-asp-net-web-optimization-framework.html +++ b/docs/ms-asp-net-web-optimization-framework.html @@ -232,8 +232,7 @@ Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. -EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. - +EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas.
@@ -245,7 +244,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-asp-net-web-optimization-framework.json b/docs/ms-asp-net-web-optimization-framework.json index 67be641cf7..ca9a831fc1 100644 --- a/docs/ms-asp-net-web-optimization-framework.json +++ b/docs/ms-asp-net-web-optimization-framework.json @@ -1 +1,15 @@ -{"key": "ms-asp-net-web-optimization-framework", "short_name": "MS ASP.NET Web Optimization Framework", "name": "Microsoft ASP.NET Web Optimization Framework", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://www.microsoft.com/web/webpi/eula/weboptimization_1_eula_enu.htm", "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-optimization", "other_spdx_license_keys": ["LicenseRef-scancode-ms-asp-net-web-optimization-framework"], "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-asp-net-web-optimization-framework", + "short_name": "MS ASP.NET Web Optimization Framework", + "name": "Microsoft ASP.NET Web Optimization Framework", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://www.microsoft.com/web/webpi/eula/weboptimization_1_eula_enu.htm", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-optimization", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-asp-net-web-optimization-framework" + ], + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-asp-net-web-pages-2.LICENSE b/docs/ms-asp-net-web-pages-2.LICENSE index 92bcd9fda0..eaf9f6861f 100644 --- a/docs/ms-asp-net-web-pages-2.LICENSE +++ b/docs/ms-asp-net-web-pages-2.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-asp-net-web-pages-2 +short_name: MS ASP.NET Web Pages 2 License +name: Microsoft ASP.NET Web Pages 2 License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/webpages_2_eula_enu.htm +spdx_license_key: LicenseRef-scancode-ms-asp-net-web-pages-2 +ignorable_urls: + - http://docs.nuget.org/ + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT ASP.NET WEB PAGES 2 These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft diff --git a/docs/ms-asp-net-web-pages-2.html b/docs/ms-asp-net-web-pages-2.html index be8b1af67c..1c2eeea2c3 100644 --- a/docs/ms-asp-net-web-pages-2.html +++ b/docs/ms-asp-net-web-pages-2.html @@ -283,7 +283,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-asp-net-web-pages-2.json b/docs/ms-asp-net-web-pages-2.json index 78cb736f4b..167411d822 100644 --- a/docs/ms-asp-net-web-pages-2.json +++ b/docs/ms-asp-net-web-pages-2.json @@ -1 +1,13 @@ -{"key": "ms-asp-net-web-pages-2", "short_name": "MS ASP.NET Web Pages 2 License", "name": "Microsoft ASP.NET Web Pages 2 License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://www.microsoft.com/web/webpi/eula/webpages_2_eula_enu.htm", "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-pages-2", "ignorable_urls": ["http://docs.nuget.org/", "http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-asp-net-web-pages-2", + "short_name": "MS ASP.NET Web Pages 2 License", + "name": "Microsoft ASP.NET Web Pages 2 License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://www.microsoft.com/web/webpi/eula/webpages_2_eula_enu.htm", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-pages-2", + "ignorable_urls": [ + "http://docs.nuget.org/", + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-asp-net-web-pages-templates.LICENSE b/docs/ms-asp-net-web-pages-templates.LICENSE index 2d7300a894..1ed89e077a 100644 --- a/docs/ms-asp-net-web-pages-templates.LICENSE +++ b/docs/ms-asp-net-web-pages-templates.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-asp-net-web-pages-templates +short_name: MS ASP.NET Web Pages Templates License +name: Microsoft ASP.NET Web Pages Templates License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/webpages_2_eula_enu.htm +spdx_license_key: LicenseRef-scancode-ms-asp-net-web-pages-templates +other_urls: + - http://go.microsoft.com/fwlink/?LinkId=210218 + - https://www.microsoft.com/web/webpi/eula/ASPNET-Web-Pages-Template-License.rtf +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT ASP .NET WEB PAGES TEMPLATES These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft @@ -59,4 +74,4 @@ Cette limitation concerne : tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur. Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. -EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. +EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. \ No newline at end of file diff --git a/docs/ms-asp-net-web-pages-templates.html b/docs/ms-asp-net-web-pages-templates.html index e6866ac370..b77e13ceb5 100644 --- a/docs/ms-asp-net-web-pages-templates.html +++ b/docs/ms-asp-net-web-pages-templates.html @@ -194,8 +194,7 @@ tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur. Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. -EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. - +EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas.
@@ -207,7 +206,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-asp-net-web-pages-templates.json b/docs/ms-asp-net-web-pages-templates.json index e3a02d52d6..e11aea55de 100644 --- a/docs/ms-asp-net-web-pages-templates.json +++ b/docs/ms-asp-net-web-pages-templates.json @@ -1 +1,16 @@ -{"key": "ms-asp-net-web-pages-templates", "short_name": "MS ASP.NET Web Pages Templates License", "name": "Microsoft ASP.NET Web Pages Templates License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://www.microsoft.com/web/webpi/eula/webpages_2_eula_enu.htm", "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-pages-templates", "other_urls": ["http://go.microsoft.com/fwlink/?LinkId=210218", "https://www.microsoft.com/web/webpi/eula/ASPNET-Web-Pages-Template-License.rtf"], "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-asp-net-web-pages-templates", + "short_name": "MS ASP.NET Web Pages Templates License", + "name": "Microsoft ASP.NET Web Pages Templates License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://www.microsoft.com/web/webpi/eula/webpages_2_eula_enu.htm", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-pages-templates", + "other_urls": [ + "http://go.microsoft.com/fwlink/?LinkId=210218", + "https://www.microsoft.com/web/webpi/eula/ASPNET-Web-Pages-Template-License.rtf" + ], + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-azure-data-studio.LICENSE b/docs/ms-azure-data-studio.LICENSE index 108b05c26c..ba5438e4f9 100644 --- a/docs/ms-azure-data-studio.LICENSE +++ b/docs/ms-azure-data-studio.LICENSE @@ -1,3 +1,13 @@ +--- +key: ms-azure-data-studio +short_name: MS Azure Data Studio License +name: Microsoft Azure Data Studio License Terms +category: Proprietary Free +owner: Microsoft +homepage_url: https://github.com/microsoft/azuredatastudio/blob/main/LICENSE.txt +spdx_license_key: LicenseRef-scancode-ms-azure-data-studio +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT AZURE DATA STUDIO diff --git a/docs/ms-azure-data-studio.html b/docs/ms-azure-data-studio.html index fbf03fc6de..cea558cda4 100644 --- a/docs/ms-azure-data-studio.html +++ b/docs/ms-azure-data-studio.html @@ -150,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-azure-data-studio.json b/docs/ms-azure-data-studio.json index 8fffe4dbb3..7f40bf5477 100644 --- a/docs/ms-azure-data-studio.json +++ b/docs/ms-azure-data-studio.json @@ -1 +1,9 @@ -{"key": "ms-azure-data-studio", "short_name": "MS Azure Data Studio License", "name": "Microsoft Azure Data Studio License Terms", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://github.com/microsoft/azuredatastudio/blob/main/LICENSE.txt", "spdx_license_key": "LicenseRef-scancode-ms-azure-data-studio"} \ No newline at end of file +{ + "key": "ms-azure-data-studio", + "short_name": "MS Azure Data Studio License", + "name": "Microsoft Azure Data Studio License Terms", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://github.com/microsoft/azuredatastudio/blob/main/LICENSE.txt", + "spdx_license_key": "LicenseRef-scancode-ms-azure-data-studio" +} \ No newline at end of file diff --git a/docs/ms-azure-spatialanchors-2.9.0.LICENSE b/docs/ms-azure-spatialanchors-2.9.0.LICENSE index af35fd7704..449d5de98d 100644 --- a/docs/ms-azure-spatialanchors-2.9.0.LICENSE +++ b/docs/ms-azure-spatialanchors-2.9.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-azure-spatialanchors-2.9.0 +short_name: MS Azure Spatial Anchors WinRT 2.9.0 +name: Microsoft Azure Spatial Anchors WinRT 2.9.0 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.nuget.org/packages/Microsoft.Azure.SpatialAnchors.WinRT/2.9.0/License +spdx_license_key: LicenseRef-scancode-ms-azure-spatialanchors-2.9.0 +ignorable_urls: + - https://aka.ms/exporting + - https://aka.ms/privacy + - https://docs.microsoft.com/en-us/legal/gdpr +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT AZURE SPATIAL ANCHORS ________________________________________ diff --git a/docs/ms-azure-spatialanchors-2.9.0.html b/docs/ms-azure-spatialanchors-2.9.0.html index e26a43fec6..a77c864f8c 100644 --- a/docs/ms-azure-spatialanchors-2.9.0.html +++ b/docs/ms-azure-spatialanchors-2.9.0.html @@ -219,7 +219,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-azure-spatialanchors-2.9.0.json b/docs/ms-azure-spatialanchors-2.9.0.json index 2cf368aa7d..d5ce53f1b0 100644 --- a/docs/ms-azure-spatialanchors-2.9.0.json +++ b/docs/ms-azure-spatialanchors-2.9.0.json @@ -1 +1,14 @@ -{"key": "ms-azure-spatialanchors-2.9.0", "short_name": "MS Azure Spatial Anchors WinRT 2.9.0", "name": "Microsoft Azure Spatial Anchors WinRT 2.9.0", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://www.nuget.org/packages/Microsoft.Azure.SpatialAnchors.WinRT/2.9.0/License", "spdx_license_key": "LicenseRef-scancode-ms-azure-spatialanchors-2.9.0", "ignorable_urls": ["https://aka.ms/exporting", "https://aka.ms/privacy", "https://docs.microsoft.com/en-us/legal/gdpr"]} \ No newline at end of file +{ + "key": "ms-azure-spatialanchors-2.9.0", + "short_name": "MS Azure Spatial Anchors WinRT 2.9.0", + "name": "Microsoft Azure Spatial Anchors WinRT 2.9.0", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://www.nuget.org/packages/Microsoft.Azure.SpatialAnchors.WinRT/2.9.0/License", + "spdx_license_key": "LicenseRef-scancode-ms-azure-spatialanchors-2.9.0", + "ignorable_urls": [ + "https://aka.ms/exporting", + "https://aka.ms/privacy", + "https://docs.microsoft.com/en-us/legal/gdpr" + ] +} \ No newline at end of file diff --git a/docs/ms-capicom.LICENSE b/docs/ms-capicom.LICENSE index c63e264025..caed4c5d89 100644 --- a/docs/ms-capicom.LICENSE +++ b/docs/ms-capicom.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-capicom +short_name: Microsoft CAPICOM License +name: Microsoft CAPICOM License +category: Proprietary Free +owner: Microsoft +homepage_url: http://msdn.microsoft.com/en-us/library/aa375754.aspx +spdx_license_key: LicenseRef-scancode-ms-capicom +faq_url: http://en.wikipedia.org/wiki/CAPICOM +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT CAPICOM These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft diff --git a/docs/ms-capicom.html b/docs/ms-capicom.html index 8b0fdaa9dd..544411aff8 100644 --- a/docs/ms-capicom.html +++ b/docs/ms-capicom.html @@ -185,7 +185,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-capicom.json b/docs/ms-capicom.json index 4db143bd06..d0f7b265f5 100644 --- a/docs/ms-capicom.json +++ b/docs/ms-capicom.json @@ -1 +1,13 @@ -{"key": "ms-capicom", "short_name": "Microsoft CAPICOM License", "name": "Microsoft CAPICOM License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://msdn.microsoft.com/en-us/library/aa375754.aspx", "spdx_license_key": "LicenseRef-scancode-ms-capicom", "faq_url": "http://en.wikipedia.org/wiki/CAPICOM", "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-capicom", + "short_name": "Microsoft CAPICOM License", + "name": "Microsoft CAPICOM License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://msdn.microsoft.com/en-us/library/aa375754.aspx", + "spdx_license_key": "LicenseRef-scancode-ms-capicom", + "faq_url": "http://en.wikipedia.org/wiki/CAPICOM", + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-cl.LICENSE b/docs/ms-cl.LICENSE index cb8d497698..9a24f05cca 100644 --- a/docs/ms-cl.LICENSE +++ b/docs/ms-cl.LICENSE @@ -1,3 +1,13 @@ +--- +key: ms-cl +short_name: MS-CL +name: Microsoft Shared Source Community License +category: Copyleft Limited +owner: Microsoft +homepage_url: https://terminals.codeplex.com/license +spdx_license_key: LicenseRef-scancode-ms-cl +--- + Microsoft Shared Source Community License (MS-CL) Published: October 18, 2005 diff --git a/docs/ms-cl.html b/docs/ms-cl.html index 66b8825fd4..9d0ae7e2b2 100644 --- a/docs/ms-cl.html +++ b/docs/ms-cl.html @@ -199,7 +199,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-cl.json b/docs/ms-cl.json index ed492cffa5..d1a1559ef2 100644 --- a/docs/ms-cl.json +++ b/docs/ms-cl.json @@ -1 +1,9 @@ -{"key": "ms-cl", "short_name": "MS-CL", "name": "Microsoft Shared Source Community License", "category": "Copyleft Limited", "owner": "Microsoft", "homepage_url": "https://terminals.codeplex.com/license", "spdx_license_key": "LicenseRef-scancode-ms-cl"} \ No newline at end of file +{ + "key": "ms-cl", + "short_name": "MS-CL", + "name": "Microsoft Shared Source Community License", + "category": "Copyleft Limited", + "owner": "Microsoft", + "homepage_url": "https://terminals.codeplex.com/license", + "spdx_license_key": "LicenseRef-scancode-ms-cl" +} \ No newline at end of file diff --git a/docs/ms-cla.LICENSE b/docs/ms-cla.LICENSE index f3acfe3d32..16abb73c15 100644 --- a/docs/ms-cla.LICENSE +++ b/docs/ms-cla.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-cla +short_name: MS Contribution License Agreement (CLA) +name: Microsoft Contribution License Agreement (CLA) +category: Patent License +owner: Microsoft +homepage_url: https://cla.microsoft.com +spdx_license_key: LicenseRef-scancode-ms-cla +text_urls: + - https://opensource.microsoft.com/pdf/microsoft-contribution-license-agreement.pdf +ignorable_urls: + - http://www.opensource.org/ + - https://creativecommons.org/licenses +--- + Contribution License Agreement This Contribution License Agreement (“Agreement”) is agreed to by the party signing below (“You”), and conveys certain license rights to Microsoft Corporation and its affiliates (“Microsoft”) for Your contributions to Microsoft open source projects. diff --git a/docs/ms-cla.html b/docs/ms-cla.html index c59cce3dc7..78b966b1c1 100644 --- a/docs/ms-cla.html +++ b/docs/ms-cla.html @@ -183,7 +183,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-cla.json b/docs/ms-cla.json index f80d68b365..774a3b6d81 100644 --- a/docs/ms-cla.json +++ b/docs/ms-cla.json @@ -1 +1,16 @@ -{"key": "ms-cla", "short_name": "MS Contribution License Agreement (CLA)", "name": "Microsoft Contribution License Agreement (CLA)", "category": "Patent License", "owner": "Microsoft", "homepage_url": "https://cla.microsoft.com", "spdx_license_key": "LicenseRef-scancode-ms-cla", "text_urls": ["https://opensource.microsoft.com/pdf/microsoft-contribution-license-agreement.pdf"], "ignorable_urls": ["http://www.opensource.org/", "https://creativecommons.org/licenses"]} \ No newline at end of file +{ + "key": "ms-cla", + "short_name": "MS Contribution License Agreement (CLA)", + "name": "Microsoft Contribution License Agreement (CLA)", + "category": "Patent License", + "owner": "Microsoft", + "homepage_url": "https://cla.microsoft.com", + "spdx_license_key": "LicenseRef-scancode-ms-cla", + "text_urls": [ + "https://opensource.microsoft.com/pdf/microsoft-contribution-license-agreement.pdf" + ], + "ignorable_urls": [ + "http://www.opensource.org/", + "https://creativecommons.org/licenses" + ] +} \ No newline at end of file diff --git a/docs/ms-control-spy-2.0.LICENSE b/docs/ms-control-spy-2.0.LICENSE index 83dc8ba059..eb9250d645 100644 --- a/docs/ms-control-spy-2.0.LICENSE +++ b/docs/ms-control-spy-2.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-control-spy-2.0 +short_name: MS Control Spy 2.0 +name: Microsoft Control Spy 2.0 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.microsoft.com/en-us/download/details.aspx?id=4635 +spdx_license_key: LicenseRef-scancode-ms-control-spy-2.0 +ignorable_urls: + - http://www.microsoft.com/exporting + - http://www.microsoft.com/licensing/userights +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT CONTROL SPY 2.0 These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft diff --git a/docs/ms-control-spy-2.0.html b/docs/ms-control-spy-2.0.html index 3fae5f953c..953dfd5d3f 100644 --- a/docs/ms-control-spy-2.0.html +++ b/docs/ms-control-spy-2.0.html @@ -179,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-control-spy-2.0.json b/docs/ms-control-spy-2.0.json index 501f0303bf..cfbb1a56fd 100644 --- a/docs/ms-control-spy-2.0.json +++ b/docs/ms-control-spy-2.0.json @@ -1 +1,13 @@ -{"key": "ms-control-spy-2.0", "short_name": "MS Control Spy 2.0", "name": "Microsoft Control Spy 2.0", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://www.microsoft.com/en-us/download/details.aspx?id=4635", "spdx_license_key": "LicenseRef-scancode-ms-control-spy-2.0", "ignorable_urls": ["http://www.microsoft.com/exporting", "http://www.microsoft.com/licensing/userights"]} \ No newline at end of file +{ + "key": "ms-control-spy-2.0", + "short_name": "MS Control Spy 2.0", + "name": "Microsoft Control Spy 2.0", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://www.microsoft.com/en-us/download/details.aspx?id=4635", + "spdx_license_key": "LicenseRef-scancode-ms-control-spy-2.0", + "ignorable_urls": [ + "http://www.microsoft.com/exporting", + "http://www.microsoft.com/licensing/userights" + ] +} \ No newline at end of file diff --git a/docs/ms-data-tier-af-2022.LICENSE b/docs/ms-data-tier-af-2022.LICENSE index d2c1927e5b..3c7928e1f2 100644 --- a/docs/ms-data-tier-af-2022.LICENSE +++ b/docs/ms-data-tier-af-2022.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-data-tier-af-2022 +short_name: MS Data-Tier Application Framework License +name: Microsoft Data-Tier Application Framework License Terms +category: Proprietary Free +owner: Microsoft +homepage_url: https://docs.microsoft.com/en-us/Legal/sql/data-tier-application-framework-license-terms +spdx_license_key: LicenseRef-scancode-ms-data-tier-af-2022 +ignorable_urls: + - https://www.asp.net/ajaxlibrary/CDN.ashx + - https://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT SQL SERVER DATA-TIER APPLICATION FRAMEWORK diff --git a/docs/ms-data-tier-af-2022.html b/docs/ms-data-tier-af-2022.html index d50771e25d..414b0421b2 100644 --- a/docs/ms-data-tier-af-2022.html +++ b/docs/ms-data-tier-af-2022.html @@ -232,7 +232,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-data-tier-af-2022.json b/docs/ms-data-tier-af-2022.json index 0ad7b75ba7..ade606aa33 100644 --- a/docs/ms-data-tier-af-2022.json +++ b/docs/ms-data-tier-af-2022.json @@ -1 +1,13 @@ -{"key": "ms-data-tier-af-2022", "short_name": "MS Data-Tier Application Framework License", "name": "Microsoft Data-Tier Application Framework License Terms", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://docs.microsoft.com/en-us/Legal/sql/data-tier-application-framework-license-terms", "spdx_license_key": "LicenseRef-scancode-ms-data-tier-af-2022", "ignorable_urls": ["https://www.asp.net/ajaxlibrary/CDN.ashx", "https://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-data-tier-af-2022", + "short_name": "MS Data-Tier Application Framework License", + "name": "Microsoft Data-Tier Application Framework License Terms", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://docs.microsoft.com/en-us/Legal/sql/data-tier-application-framework-license-terms", + "spdx_license_key": "LicenseRef-scancode-ms-data-tier-af-2022", + "ignorable_urls": [ + "https://www.asp.net/ajaxlibrary/CDN.ashx", + "https://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-developer-services-agreement-2018-06.LICENSE b/docs/ms-developer-services-agreement-2018-06.LICENSE index d0ab2f53d4..c91326c876 100644 --- a/docs/ms-developer-services-agreement-2018-06.LICENSE +++ b/docs/ms-developer-services-agreement-2018-06.LICENSE @@ -1,3 +1,21 @@ +--- +key: ms-developer-services-agreement-2018-06 +short_name: MS Developer Services Agreement 2018-06 +name: Microsoft Developer Services Agreement 2018-06 +category: Proprietary Free +owner: Microsoft +homepage_url: https://docs.microsoft.com/en-us/legal/mdsa +spdx_license_key: LicenseRef-scancode-ms-dev-services-2018-06 +other_spdx_license_keys: + - LicenseRef-scancode-ms-developer-services-agreement-2018-06 +minimum_coverage: 80 +ignorable_urls: + - http://developer.microsoft.com/ + - http://docs.microsoft.com/ + - http://msdn.microsoft.com/ + - http://technet.microsoft.com/ +--- + Microsoft Developer Agreement Last updated: June 2018 diff --git a/docs/ms-developer-services-agreement-2018-06.html b/docs/ms-developer-services-agreement-2018-06.html index 3ff0e0d39c..1730bb6ce3 100644 --- a/docs/ms-developer-services-agreement-2018-06.html +++ b/docs/ms-developer-services-agreement-2018-06.html @@ -252,7 +252,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-developer-services-agreement-2018-06.json b/docs/ms-developer-services-agreement-2018-06.json index 7d3896ed5b..e128b610b1 100644 --- a/docs/ms-developer-services-agreement-2018-06.json +++ b/docs/ms-developer-services-agreement-2018-06.json @@ -1 +1,19 @@ -{"key": "ms-developer-services-agreement-2018-06", "short_name": "MS Developer Services Agreement 2018-06", "name": "Microsoft Developer Services Agreement 2018-06", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://docs.microsoft.com/en-us/legal/mdsa", "spdx_license_key": "LicenseRef-scancode-ms-dev-services-2018-06", "other_spdx_license_keys": ["LicenseRef-scancode-ms-developer-services-agreement-2018-06"], "minimum_coverage": 80, "ignorable_urls": ["http://developer.microsoft.com/", "http://docs.microsoft.com/", "http://msdn.microsoft.com/", "http://technet.microsoft.com/"]} \ No newline at end of file +{ + "key": "ms-developer-services-agreement-2018-06", + "short_name": "MS Developer Services Agreement 2018-06", + "name": "Microsoft Developer Services Agreement 2018-06", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://docs.microsoft.com/en-us/legal/mdsa", + "spdx_license_key": "LicenseRef-scancode-ms-dev-services-2018-06", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-developer-services-agreement-2018-06" + ], + "minimum_coverage": 80, + "ignorable_urls": [ + "http://developer.microsoft.com/", + "http://docs.microsoft.com/", + "http://msdn.microsoft.com/", + "http://technet.microsoft.com/" + ] +} \ No newline at end of file diff --git a/docs/ms-developer-services-agreement.LICENSE b/docs/ms-developer-services-agreement.LICENSE index ad9236719c..c31b91fee8 100644 --- a/docs/ms-developer-services-agreement.LICENSE +++ b/docs/ms-developer-services-agreement.LICENSE @@ -1,3 +1,32 @@ +--- +key: ms-developer-services-agreement +short_name: MS Developer Services Agreement +name: Microsoft Developer Services Agreement +category: Proprietary Free +owner: Microsoft +homepage_url: http://msdn.microsoft.com/en-us/cc300389.aspx +spdx_license_key: LicenseRef-scancode-ms-dev-services-agreement +other_spdx_license_keys: + - LicenseRef-scancode-ms-developer-services-agreement +text_urls: + - http://msdn.microsoft.com/en-us/cc300389.aspx +minimum_coverage: 70 +ignorable_copyrights: + - (c) 2013 Microsoft Corporation +ignorable_holders: + - Microsoft Corporation +ignorable_urls: + - http://connect.microsoft.com/ + - http://go.microsoft.com/fwlink/?LinkID=246330 + - http://go.microsoft.com/fwlink/?LinkId=303819 + - http://go.microsoft.com/fwlink/?LinkId=309360 + - http://msdn.microsoft.com/ + - http://technet.microsoft.com/ + - http://www.microsoft.com/exporting + - http://www.microsoft.com/info/cpyrtInfrg.htm + - http://www.visualstudio.com/ +--- + Microsoft Developer Services Agreement Updated October, 2013 diff --git a/docs/ms-developer-services-agreement.html b/docs/ms-developer-services-agreement.html index 6e807d8b3b..9beac7a8f7 100644 --- a/docs/ms-developer-services-agreement.html +++ b/docs/ms-developer-services-agreement.html @@ -394,7 +394,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-developer-services-agreement.json b/docs/ms-developer-services-agreement.json index ba7b696a67..23d0bec648 100644 --- a/docs/ms-developer-services-agreement.json +++ b/docs/ms-developer-services-agreement.json @@ -1 +1,33 @@ -{"key": "ms-developer-services-agreement", "short_name": "MS Developer Services Agreement", "name": "Microsoft Developer Services Agreement", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://msdn.microsoft.com/en-us/cc300389.aspx", "spdx_license_key": "LicenseRef-scancode-ms-dev-services-agreement", "other_spdx_license_keys": ["LicenseRef-scancode-ms-developer-services-agreement"], "text_urls": ["http://msdn.microsoft.com/en-us/cc300389.aspx"], "minimum_coverage": 70, "ignorable_copyrights": ["(c) 2013 Microsoft Corporation"], "ignorable_holders": ["Microsoft Corporation"], "ignorable_urls": ["http://connect.microsoft.com/", "http://go.microsoft.com/fwlink/?LinkID=246330", "http://go.microsoft.com/fwlink/?LinkId=303819", "http://go.microsoft.com/fwlink/?LinkId=309360", "http://msdn.microsoft.com/", "http://technet.microsoft.com/", "http://www.microsoft.com/exporting", "http://www.microsoft.com/info/cpyrtInfrg.htm", "http://www.visualstudio.com/"]} \ No newline at end of file +{ + "key": "ms-developer-services-agreement", + "short_name": "MS Developer Services Agreement", + "name": "Microsoft Developer Services Agreement", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://msdn.microsoft.com/en-us/cc300389.aspx", + "spdx_license_key": "LicenseRef-scancode-ms-dev-services-agreement", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-developer-services-agreement" + ], + "text_urls": [ + "http://msdn.microsoft.com/en-us/cc300389.aspx" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "(c) 2013 Microsoft Corporation" + ], + "ignorable_holders": [ + "Microsoft Corporation" + ], + "ignorable_urls": [ + "http://connect.microsoft.com/", + "http://go.microsoft.com/fwlink/?LinkID=246330", + "http://go.microsoft.com/fwlink/?LinkId=303819", + "http://go.microsoft.com/fwlink/?LinkId=309360", + "http://msdn.microsoft.com/", + "http://technet.microsoft.com/", + "http://www.microsoft.com/exporting", + "http://www.microsoft.com/info/cpyrtInfrg.htm", + "http://www.visualstudio.com/" + ] +} \ No newline at end of file diff --git a/docs/ms-device-emulator-3.0.LICENSE b/docs/ms-device-emulator-3.0.LICENSE index c0dea8c028..4a6995304f 100644 --- a/docs/ms-device-emulator-3.0.LICENSE +++ b/docs/ms-device-emulator-3.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: ms-device-emulator-3.0 +short_name: MS Device Emulator 3.0 +name: Microsoft Device Emulator 3.0 +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-device-emulator-3.0 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT DEVICE EMULATOR 3.0 diff --git a/docs/ms-device-emulator-3.0.html b/docs/ms-device-emulator-3.0.html index 58b3a54009..0377497c85 100644 --- a/docs/ms-device-emulator-3.0.html +++ b/docs/ms-device-emulator-3.0.html @@ -224,7 +224,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-device-emulator-3.0.json b/docs/ms-device-emulator-3.0.json index 7b893e4134..f0d82ad8d0 100644 --- a/docs/ms-device-emulator-3.0.json +++ b/docs/ms-device-emulator-3.0.json @@ -1 +1,11 @@ -{"key": "ms-device-emulator-3.0", "short_name": "MS Device Emulator 3.0", "name": "Microsoft Device Emulator 3.0", "category": "Proprietary Free", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-device-emulator-3.0", "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-device-emulator-3.0", + "short_name": "MS Device Emulator 3.0", + "name": "Microsoft Device Emulator 3.0", + "category": "Proprietary Free", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-device-emulator-3.0", + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-direct3d-d3d120n7-1.1.0.LICENSE b/docs/ms-direct3d-d3d120n7-1.1.0.LICENSE index 7fc7b77c0d..b5f8e1c68e 100644 --- a/docs/ms-direct3d-d3d120n7-1.1.0.LICENSE +++ b/docs/ms-direct3d-d3d120n7-1.1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-direct3d-d3d120n7-1.1.0 +short_name: MS Direct3D D3D12On7 1.1.0 +name: Microsoft Direct3D D3D12On7 1.1.0 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.nuget.org/packages/Microsoft.Direct3D.D3D12On7/1.1.0/License +spdx_license_key: LicenseRef-scancode-ms-direct3d-d3d120n7-1.1.0 +ignorable_urls: + - http://aka.ms/exporting + - http://go.microsoft.com/fwlink/?LinkId=524839 + - https://go.microsoft.com/fwlink/?LinkId=521839 +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT DIRECT3D 12 ON WINDOWS 7 ________________________________________ diff --git a/docs/ms-direct3d-d3d120n7-1.1.0.html b/docs/ms-direct3d-d3d120n7-1.1.0.html index 2db2fdc9db..f03e6595da 100644 --- a/docs/ms-direct3d-d3d120n7-1.1.0.html +++ b/docs/ms-direct3d-d3d120n7-1.1.0.html @@ -186,7 +186,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-direct3d-d3d120n7-1.1.0.json b/docs/ms-direct3d-d3d120n7-1.1.0.json index 66e27b35d5..0d0ea9b08c 100644 --- a/docs/ms-direct3d-d3d120n7-1.1.0.json +++ b/docs/ms-direct3d-d3d120n7-1.1.0.json @@ -1 +1,14 @@ -{"key": "ms-direct3d-d3d120n7-1.1.0", "short_name": "MS Direct3D D3D12On7 1.1.0", "name": "Microsoft Direct3D D3D12On7 1.1.0", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://www.nuget.org/packages/Microsoft.Direct3D.D3D12On7/1.1.0/License", "spdx_license_key": "LicenseRef-scancode-ms-direct3d-d3d120n7-1.1.0", "ignorable_urls": ["http://aka.ms/exporting", "http://go.microsoft.com/fwlink/?LinkId=524839", "https://go.microsoft.com/fwlink/?LinkId=521839"]} \ No newline at end of file +{ + "key": "ms-direct3d-d3d120n7-1.1.0", + "short_name": "MS Direct3D D3D12On7 1.1.0", + "name": "Microsoft Direct3D D3D12On7 1.1.0", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://www.nuget.org/packages/Microsoft.Direct3D.D3D12On7/1.1.0/License", + "spdx_license_key": "LicenseRef-scancode-ms-direct3d-d3d120n7-1.1.0", + "ignorable_urls": [ + "http://aka.ms/exporting", + "http://go.microsoft.com/fwlink/?LinkId=524839", + "https://go.microsoft.com/fwlink/?LinkId=521839" + ] +} \ No newline at end of file diff --git a/docs/ms-directx-sdk-eula.LICENSE b/docs/ms-directx-sdk-eula.LICENSE index 088a9b8ecf..4a9786e5f6 100644 --- a/docs/ms-directx-sdk-eula.LICENSE +++ b/docs/ms-directx-sdk-eula.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-directx-sdk-eula +short_name: MS DirectX SDK EULA +name: Microsoft DirectX SDK EULA +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-directx-sdk-eula +text_urls: + - ftp://ftp.physik.hu-berlin.de/pub/useful/dx7asdk/DXF/license/directx%20sdk%20eula.txt +ignorable_authors: + - permission from Microsoft Corporation +--- + DirectX Software Development Kit END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE IMPORTANT-READ CAREFULLY: This Microsoft End-User License Agreement ("EULA") is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation ("Microsoft") for the Microsoft software product identified above, which includes computer software and may include associated media and printed materials, and "online" or electronic documentation ("SOFTWARE PRODUCT). The SOFTWARE PRODUCT also includes any updates and supplements to the original SOFTWARE PRODUCT that is associated with a separate end-user license agreement is licensed to you under the terms of that license agreement. By installing, copying, downloading, accessing or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, do not install or use the SOFTWARE PRODUCT. diff --git a/docs/ms-directx-sdk-eula.html b/docs/ms-directx-sdk-eula.html index 7c87435b7d..4df57b6c1c 100644 --- a/docs/ms-directx-sdk-eula.html +++ b/docs/ms-directx-sdk-eula.html @@ -201,7 +201,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-directx-sdk-eula.json b/docs/ms-directx-sdk-eula.json index c37af1eaed..4e24579284 100644 --- a/docs/ms-directx-sdk-eula.json +++ b/docs/ms-directx-sdk-eula.json @@ -1 +1,14 @@ -{"key": "ms-directx-sdk-eula", "short_name": "MS DirectX SDK EULA", "name": "Microsoft DirectX SDK EULA", "category": "Proprietary Free", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-directx-sdk-eula", "text_urls": ["ftp://ftp.physik.hu-berlin.de/pub/useful/dx7asdk/DXF/license/directx%20sdk%20eula.txt"], "ignorable_authors": ["permission from Microsoft Corporation"]} \ No newline at end of file +{ + "key": "ms-directx-sdk-eula", + "short_name": "MS DirectX SDK EULA", + "name": "Microsoft DirectX SDK EULA", + "category": "Proprietary Free", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-directx-sdk-eula", + "text_urls": [ + "ftp://ftp.physik.hu-berlin.de/pub/useful/dx7asdk/DXF/license/directx%20sdk%20eula.txt" + ], + "ignorable_authors": [ + "permission from Microsoft Corporation" + ] +} \ No newline at end of file diff --git a/docs/ms-dxsdk-d3dx-9.29.952.3.LICENSE b/docs/ms-dxsdk-d3dx-9.29.952.3.LICENSE index 8f42de399f..f49b042782 100644 --- a/docs/ms-dxsdk-d3dx-9.29.952.3.LICENSE +++ b/docs/ms-dxsdk-d3dx-9.29.952.3.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-dxsdk-d3dx-9.29.952.3 +short_name: MS DXSDK.D3DX 9.29.952.3 +name: Microsoft DXSDK.D3DX 9.29.952.3 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.nuget.org/packages/Microsoft.DXSDK.D3DX/9.29.952.3/License +spdx_license_key: LicenseRef-scancode-ms-dxsdk-d3dx-9.29.952.3 +ignorable_urls: + - https://aka.ms/arb-agreement-4 + - https://aka.ms/exporting + - https://aka.ms/privacy + - https://docs.microsoft.com/en-us/legal/gdpr +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT DXSDK.D3DX ________________________________________ diff --git a/docs/ms-dxsdk-d3dx-9.29.952.3.html b/docs/ms-dxsdk-d3dx-9.29.952.3.html index ada26b4a8f..0613eba00e 100644 --- a/docs/ms-dxsdk-d3dx-9.29.952.3.html +++ b/docs/ms-dxsdk-d3dx-9.29.952.3.html @@ -197,7 +197,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-dxsdk-d3dx-9.29.952.3.json b/docs/ms-dxsdk-d3dx-9.29.952.3.json index 872c310342..82d59675bb 100644 --- a/docs/ms-dxsdk-d3dx-9.29.952.3.json +++ b/docs/ms-dxsdk-d3dx-9.29.952.3.json @@ -1 +1,15 @@ -{"key": "ms-dxsdk-d3dx-9.29.952.3", "short_name": "MS DXSDK.D3DX 9.29.952.3", "name": "Microsoft DXSDK.D3DX 9.29.952.3", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://www.nuget.org/packages/Microsoft.DXSDK.D3DX/9.29.952.3/License", "spdx_license_key": "LicenseRef-scancode-ms-dxsdk-d3dx-9.29.952.3", "ignorable_urls": ["https://aka.ms/arb-agreement-4", "https://aka.ms/exporting", "https://aka.ms/privacy", "https://docs.microsoft.com/en-us/legal/gdpr"]} \ No newline at end of file +{ + "key": "ms-dxsdk-d3dx-9.29.952.3", + "short_name": "MS DXSDK.D3DX 9.29.952.3", + "name": "Microsoft DXSDK.D3DX 9.29.952.3", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://www.nuget.org/packages/Microsoft.DXSDK.D3DX/9.29.952.3/License", + "spdx_license_key": "LicenseRef-scancode-ms-dxsdk-d3dx-9.29.952.3", + "ignorable_urls": [ + "https://aka.ms/arb-agreement-4", + "https://aka.ms/exporting", + "https://aka.ms/privacy", + "https://docs.microsoft.com/en-us/legal/gdpr" + ] +} \ No newline at end of file diff --git a/docs/ms-entity-framework-4.1.LICENSE b/docs/ms-entity-framework-4.1.LICENSE index 882f70b815..94f123fbc0 100644 --- a/docs/ms-entity-framework-4.1.LICENSE +++ b/docs/ms-entity-framework-4.1.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-entity-framework-4.1 +short_name: MS Entity Framework 4.1 License +name: Microsoft Entity Framework 4.1 License +category: Proprietary Free +owner: Microsoft +homepage_url: http://go.microsoft.com/fwlink/?LinkID=211010 +notes: also contains some French language terms +spdx_license_key: LicenseRef-scancode-ms-entity-framework-4.1 +ignorable_urls: + - http://www.support.microsoft.com/common/international.aspx +--- + MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS ENTITY FRAMEWORK 4.1 @@ -67,4 +80,4 @@ c. Restrictions de distribution. Vous n’êtes pas autorisé à : • le code soit dévoilé ou distribué dans sa forme de code source, ou • d’autres aient le droit de le modifier. -2. SERVICES D’ASSISTANCE TECHNIQUE POUR LE SUPPLÉMENT. Microsoft fournit des services d’assistance technique pour ce logiciel disponibles sur le site www.support.microsoft.com/common/international.aspx. +2. SERVICES D’ASSISTANCE TECHNIQUE POUR LE SUPPLÉMENT. Microsoft fournit des services d’assistance technique pour ce logiciel disponibles sur le site www.support.microsoft.com/common/international.aspx. \ No newline at end of file diff --git a/docs/ms-entity-framework-4.1.html b/docs/ms-entity-framework-4.1.html index 075167c1b8..bb6ec5d1ba 100644 --- a/docs/ms-entity-framework-4.1.html +++ b/docs/ms-entity-framework-4.1.html @@ -200,8 +200,7 @@ • le code soit dévoilé ou distribué dans sa forme de code source, ou • d’autres aient le droit de le modifier. -2. SERVICES D’ASSISTANCE TECHNIQUE POUR LE SUPPLÉMENT. Microsoft fournit des services d’assistance technique pour ce logiciel disponibles sur le site www.support.microsoft.com/common/international.aspx. - +2. SERVICES D’ASSISTANCE TECHNIQUE POUR LE SUPPLÉMENT. Microsoft fournit des services d’assistance technique pour ce logiciel disponibles sur le site www.support.microsoft.com/common/international.aspx.
@@ -213,7 +212,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-entity-framework-4.1.json b/docs/ms-entity-framework-4.1.json index b43acff0df..dba26f1251 100644 --- a/docs/ms-entity-framework-4.1.json +++ b/docs/ms-entity-framework-4.1.json @@ -1 +1,13 @@ -{"key": "ms-entity-framework-4.1", "short_name": "MS Entity Framework 4.1 License", "name": "Microsoft Entity Framework 4.1 License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://go.microsoft.com/fwlink/?LinkID=211010", "notes": "also contains some French language terms", "spdx_license_key": "LicenseRef-scancode-ms-entity-framework-4.1", "ignorable_urls": ["http://www.support.microsoft.com/common/international.aspx"]} \ No newline at end of file +{ + "key": "ms-entity-framework-4.1", + "short_name": "MS Entity Framework 4.1 License", + "name": "Microsoft Entity Framework 4.1 License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://go.microsoft.com/fwlink/?LinkID=211010", + "notes": "also contains some French language terms", + "spdx_license_key": "LicenseRef-scancode-ms-entity-framework-4.1", + "ignorable_urls": [ + "http://www.support.microsoft.com/common/international.aspx" + ] +} \ No newline at end of file diff --git a/docs/ms-entity-framework-5.LICENSE b/docs/ms-entity-framework-5.LICENSE index 41e3a8c31b..4ed936c594 100644 --- a/docs/ms-entity-framework-5.LICENSE +++ b/docs/ms-entity-framework-5.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-entity-framework-5 +short_name: MS Entity Framework 5 License +name: MS Entity Framework 5 License +category: Proprietary Free +owner: Microsoft +homepage_url: http://msdn.microsoft.com/en-US/data/jj250905 +spdx_license_key: LicenseRef-scancode-ms-entity-framework-5 +text_urls: + - http://msdn.microsoft.com/en-US/data/jj250905 +ignorable_urls: + - http://www.support.microsoft.com/common/international.aspx +--- + Entity Framework 5 License MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS diff --git a/docs/ms-entity-framework-5.html b/docs/ms-entity-framework-5.html index 1f0ae0f539..0b62cd831e 100644 --- a/docs/ms-entity-framework-5.html +++ b/docs/ms-entity-framework-5.html @@ -181,7 +181,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-entity-framework-5.json b/docs/ms-entity-framework-5.json index 02b5489fbf..c3cf02b1a7 100644 --- a/docs/ms-entity-framework-5.json +++ b/docs/ms-entity-framework-5.json @@ -1 +1,15 @@ -{"key": "ms-entity-framework-5", "short_name": "MS Entity Framework 5 License", "name": "MS Entity Framework 5 License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://msdn.microsoft.com/en-US/data/jj250905", "spdx_license_key": "LicenseRef-scancode-ms-entity-framework-5", "text_urls": ["http://msdn.microsoft.com/en-US/data/jj250905"], "ignorable_urls": ["http://www.support.microsoft.com/common/international.aspx"]} \ No newline at end of file +{ + "key": "ms-entity-framework-5", + "short_name": "MS Entity Framework 5 License", + "name": "MS Entity Framework 5 License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://msdn.microsoft.com/en-US/data/jj250905", + "spdx_license_key": "LicenseRef-scancode-ms-entity-framework-5", + "text_urls": [ + "http://msdn.microsoft.com/en-US/data/jj250905" + ], + "ignorable_urls": [ + "http://www.support.microsoft.com/common/international.aspx" + ] +} \ No newline at end of file diff --git a/docs/ms-eula-win-script-host.LICENSE b/docs/ms-eula-win-script-host.LICENSE index 28fbbf850a..cd39dac0d0 100644 --- a/docs/ms-eula-win-script-host.LICENSE +++ b/docs/ms-eula-win-script-host.LICENSE @@ -1,3 +1,12 @@ +--- +key: ms-eula-win-script-host +short_name: MS EULA for Windows Script Host +name: Microsoft EULA for Windows Script Host +category: Commercial +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-eula-win-script-host +--- + END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE IMPORTANT-READ CAREFULLY: This Microsoft End-User License Agreement ("EULA") is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation for the Microsoft software product accompanying this EULA, which includes computer software and may include associated media, printed materials, and "online" or electronic documentation ("SOFTWARE PRODUCT"). By installing, copying, or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, do not install, copy, or use the SOFTWARE PRODUCT. The SOFTWARE PRODUCT is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The SOFTWARE PRODUCT is licensed, not sold. diff --git a/docs/ms-eula-win-script-host.html b/docs/ms-eula-win-script-host.html index 458e71f086..6b1f28a4b0 100644 --- a/docs/ms-eula-win-script-host.html +++ b/docs/ms-eula-win-script-host.html @@ -149,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-eula-win-script-host.json b/docs/ms-eula-win-script-host.json index 681c410846..aa579dac48 100644 --- a/docs/ms-eula-win-script-host.json +++ b/docs/ms-eula-win-script-host.json @@ -1 +1,8 @@ -{"key": "ms-eula-win-script-host", "short_name": "MS EULA for Windows Script Host", "name": "Microsoft EULA for Windows Script Host", "category": "Commercial", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-eula-win-script-host"} \ No newline at end of file +{ + "key": "ms-eula-win-script-host", + "short_name": "MS EULA for Windows Script Host", + "name": "Microsoft EULA for Windows Script Host", + "category": "Commercial", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-eula-win-script-host" +} \ No newline at end of file diff --git a/docs/ms-exchange-server-2010-sp2-sdk.LICENSE b/docs/ms-exchange-server-2010-sp2-sdk.LICENSE index 88d008427d..8bec072aa1 100644 --- a/docs/ms-exchange-server-2010-sp2-sdk.LICENSE +++ b/docs/ms-exchange-server-2010-sp2-sdk.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-exchange-server-2010-sp2-sdk +short_name: MS Exchange Server 2010 SP2 Web Services SDK +name: Microsoft Exchange Server 2010 SP2 Web Services SDK +category: Proprietary Free +owner: Microsoft +homepage_url: https://msdn.microsoft.com/en-US/library/dd877074(v=exchg.140) +spdx_license_key: LicenseRef-scancode-ms-exchange-srv-2010-sp2-sdk +other_spdx_license_keys: + - LicenseRef-scancode-ms-exchange-server-2010-sp2-sdk +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT EXCHANGE SERVER 2010 SP2 WEB SERVICES SOFTWARE DEVELOPMENT KIT These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and You. Please read them. They apply to the software named above, which includes the media on which You received it, if any. The terms also apply to any Microsoft updates, diff --git a/docs/ms-exchange-server-2010-sp2-sdk.html b/docs/ms-exchange-server-2010-sp2-sdk.html index ee9f908508..5a304526e7 100644 --- a/docs/ms-exchange-server-2010-sp2-sdk.html +++ b/docs/ms-exchange-server-2010-sp2-sdk.html @@ -226,7 +226,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-exchange-server-2010-sp2-sdk.json b/docs/ms-exchange-server-2010-sp2-sdk.json index bf2646b891..fa1e9bdee4 100644 --- a/docs/ms-exchange-server-2010-sp2-sdk.json +++ b/docs/ms-exchange-server-2010-sp2-sdk.json @@ -1 +1,15 @@ -{"key": "ms-exchange-server-2010-sp2-sdk", "short_name": "MS Exchange Server 2010 SP2 Web Services SDK", "name": "Microsoft Exchange Server 2010 SP2 Web Services SDK", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://msdn.microsoft.com/en-US/library/dd877074(v=exchg.140)", "spdx_license_key": "LicenseRef-scancode-ms-exchange-srv-2010-sp2-sdk", "other_spdx_license_keys": ["LicenseRef-scancode-ms-exchange-server-2010-sp2-sdk"], "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-exchange-server-2010-sp2-sdk", + "short_name": "MS Exchange Server 2010 SP2 Web Services SDK", + "name": "Microsoft Exchange Server 2010 SP2 Web Services SDK", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://msdn.microsoft.com/en-US/library/dd877074(v=exchg.140)", + "spdx_license_key": "LicenseRef-scancode-ms-exchange-srv-2010-sp2-sdk", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-exchange-server-2010-sp2-sdk" + ], + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-iis-container-images-eula-2020.LICENSE b/docs/ms-iis-container-images-eula-2020.LICENSE index 87e5e6929b..9e7dd1f2c2 100644 --- a/docs/ms-iis-container-images-eula-2020.LICENSE +++ b/docs/ms-iis-container-images-eula-2020.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-iis-container-images-eula-2020 +short_name: MS IIS Container Images EULA 2020 +name: Microsoft IIS Container Images EULA 202 +category: Proprietary Free +owner: Microsoft +homepage_url: https://hub.docker.com/_/microsoft-windows-servercore-iis +spdx_license_key: LicenseRef-scancode-ms-iis-container-eula-2020 +other_spdx_license_keys: + - LicenseRef-scancode-ms-iis-container-images-eula-2020 +faq_url: https://github.com/microsoft/containerregistry/blob/master/legal/Container-Images-Legal-Notice.md +--- + MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS CONTAINER OS IMAGE diff --git a/docs/ms-iis-container-images-eula-2020.html b/docs/ms-iis-container-images-eula-2020.html index 6156544845..7cbe5fe19f 100644 --- a/docs/ms-iis-container-images-eula-2020.html +++ b/docs/ms-iis-container-images-eula-2020.html @@ -178,7 +178,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-iis-container-images-eula-2020.json b/docs/ms-iis-container-images-eula-2020.json index 9abf82d47e..b8f0273eef 100644 --- a/docs/ms-iis-container-images-eula-2020.json +++ b/docs/ms-iis-container-images-eula-2020.json @@ -1 +1,13 @@ -{"key": "ms-iis-container-images-eula-2020", "short_name": "MS IIS Container Images EULA 2020", "name": "Microsoft IIS Container Images EULA 202", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://hub.docker.com/_/microsoft-windows-servercore-iis", "spdx_license_key": "LicenseRef-scancode-ms-iis-container-eula-2020", "other_spdx_license_keys": ["LicenseRef-scancode-ms-iis-container-images-eula-2020"], "faq_url": "https://github.com/microsoft/containerregistry/blob/master/legal/Container-Images-Legal-Notice.md"} \ No newline at end of file +{ + "key": "ms-iis-container-images-eula-2020", + "short_name": "MS IIS Container Images EULA 2020", + "name": "Microsoft IIS Container Images EULA 202", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://hub.docker.com/_/microsoft-windows-servercore-iis", + "spdx_license_key": "LicenseRef-scancode-ms-iis-container-eula-2020", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-iis-container-images-eula-2020" + ], + "faq_url": "https://github.com/microsoft/containerregistry/blob/master/legal/Container-Images-Legal-Notice.md" +} \ No newline at end of file diff --git a/docs/ms-ilmerge.LICENSE b/docs/ms-ilmerge.LICENSE index 254270f18e..64653adf61 100644 --- a/docs/ms-ilmerge.LICENSE +++ b/docs/ms-ilmerge.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-ilmerge +short_name: MS ILMerge License +name: MS ILMerge License +category: Proprietary Free +owner: Microsoft +homepage_url: http://research.microsoft.com/en-us/people/mbarnett/ilmerge-license.aspx +spdx_license_key: LicenseRef-scancode-ms-ilmerge +other_urls: + - http://www.microsoft.com/en-us/download/details.aspx?id=17630 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + ILMerge license MICROSOFT ILMerge diff --git a/docs/ms-ilmerge.html b/docs/ms-ilmerge.html index cb9cc0c37f..4245d6a3a9 100644 --- a/docs/ms-ilmerge.html +++ b/docs/ms-ilmerge.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-ilmerge.json b/docs/ms-ilmerge.json index e2675d9a0e..259560fc2d 100644 --- a/docs/ms-ilmerge.json +++ b/docs/ms-ilmerge.json @@ -1 +1,15 @@ -{"key": "ms-ilmerge", "short_name": "MS ILMerge License", "name": "MS ILMerge License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://research.microsoft.com/en-us/people/mbarnett/ilmerge-license.aspx", "spdx_license_key": "LicenseRef-scancode-ms-ilmerge", "other_urls": ["http://www.microsoft.com/en-us/download/details.aspx?id=17630"], "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-ilmerge", + "short_name": "MS ILMerge License", + "name": "MS ILMerge License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://research.microsoft.com/en-us/people/mbarnett/ilmerge-license.aspx", + "spdx_license_key": "LicenseRef-scancode-ms-ilmerge", + "other_urls": [ + "http://www.microsoft.com/en-us/download/details.aspx?id=17630" + ], + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-invisible-eula-1.0.LICENSE b/docs/ms-invisible-eula-1.0.LICENSE index 871495639b..d8fa904118 100644 --- a/docs/ms-invisible-eula-1.0.LICENSE +++ b/docs/ms-invisible-eula-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-invisible-eula-1.0 +short_name: MS Invisible Computing EULA 1.0 +name: Microsoft Invisible Computing EULA 1.0 +category: Proprietary Free +owner: Microsoft +homepage_url: http://research.microsoft.com/en-us/um/redmond/projects/invisible/EULA.htm +spdx_license_key: LicenseRef-scancode-ms-invisible-eula-1.0 +ignorable_copyrights: + - (c) 2004 Microsoft Corporation +ignorable_holders: + - Microsoft Corporation +--- + Microsoft Invisible Computing MICROSOFT SHARED SOURCE LICENSE Version 1.0 FOR MICROSOFT INVISIBLE COMPUTING diff --git a/docs/ms-invisible-eula-1.0.html b/docs/ms-invisible-eula-1.0.html index 091028b99c..5970c4af28 100644 --- a/docs/ms-invisible-eula-1.0.html +++ b/docs/ms-invisible-eula-1.0.html @@ -168,7 +168,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-invisible-eula-1.0.json b/docs/ms-invisible-eula-1.0.json index d8ebfa4214..8f24616fd6 100644 --- a/docs/ms-invisible-eula-1.0.json +++ b/docs/ms-invisible-eula-1.0.json @@ -1 +1,15 @@ -{"key": "ms-invisible-eula-1.0", "short_name": "MS Invisible Computing EULA 1.0", "name": "Microsoft Invisible Computing EULA 1.0", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://research.microsoft.com/en-us/um/redmond/projects/invisible/EULA.htm", "spdx_license_key": "LicenseRef-scancode-ms-invisible-eula-1.0", "ignorable_copyrights": ["(c) 2004 Microsoft Corporation"], "ignorable_holders": ["Microsoft Corporation"]} \ No newline at end of file +{ + "key": "ms-invisible-eula-1.0", + "short_name": "MS Invisible Computing EULA 1.0", + "name": "Microsoft Invisible Computing EULA 1.0", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://research.microsoft.com/en-us/um/redmond/projects/invisible/EULA.htm", + "spdx_license_key": "LicenseRef-scancode-ms-invisible-eula-1.0", + "ignorable_copyrights": [ + "(c) 2004 Microsoft Corporation" + ], + "ignorable_holders": [ + "Microsoft Corporation" + ] +} \ No newline at end of file diff --git a/docs/ms-jdbc-driver-40-sql-server.LICENSE b/docs/ms-jdbc-driver-40-sql-server.LICENSE index 8133cf43aa..bb072c8460 100644 --- a/docs/ms-jdbc-driver-40-sql-server.LICENSE +++ b/docs/ms-jdbc-driver-40-sql-server.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-jdbc-driver-40-sql-server +short_name: MS JDBC Driver 4.0 for SQL Server +name: Microsoft JDBC Driver 4.0 for SQL Server +category: Proprietary Free +owner: Microsoft +homepage_url: http://download.microsoft.com/download/0/2/A/02AAE597-3865-456C-AE7F-613F99F850A8/license40.txt +spdx_license_key: LicenseRef-scancode-ms-jdbc-driver-40-sql-server +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT JDBC DRIVER 4.0 FOR SQL SERVER diff --git a/docs/ms-jdbc-driver-40-sql-server.html b/docs/ms-jdbc-driver-40-sql-server.html index a3458a0e28..75683d16d9 100644 --- a/docs/ms-jdbc-driver-40-sql-server.html +++ b/docs/ms-jdbc-driver-40-sql-server.html @@ -194,7 +194,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-jdbc-driver-40-sql-server.json b/docs/ms-jdbc-driver-40-sql-server.json index 30c3a5f053..1885e56953 100644 --- a/docs/ms-jdbc-driver-40-sql-server.json +++ b/docs/ms-jdbc-driver-40-sql-server.json @@ -1 +1,12 @@ -{"key": "ms-jdbc-driver-40-sql-server", "short_name": "MS JDBC Driver 4.0 for SQL Server", "name": "Microsoft JDBC Driver 4.0 for SQL Server", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://download.microsoft.com/download/0/2/A/02AAE597-3865-456C-AE7F-613F99F850A8/license40.txt", "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-40-sql-server", "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-jdbc-driver-40-sql-server", + "short_name": "MS JDBC Driver 4.0 for SQL Server", + "name": "Microsoft JDBC Driver 4.0 for SQL Server", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://download.microsoft.com/download/0/2/A/02AAE597-3865-456C-AE7F-613F99F850A8/license40.txt", + "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-40-sql-server", + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-jdbc-driver-41-sql-server.LICENSE b/docs/ms-jdbc-driver-41-sql-server.LICENSE index 420c143265..d1e33562c7 100644 --- a/docs/ms-jdbc-driver-41-sql-server.LICENSE +++ b/docs/ms-jdbc-driver-41-sql-server.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-jdbc-driver-41-sql-server +short_name: MS JDBC Driver 4.1 for SQL Server +name: Microsoft JDBC Driver 4.1 for SQL Server +category: Proprietary Free +owner: Microsoft +homepage_url: http://download.microsoft.com/download/0/2/A/02AAE597-3865-456C-AE7F-613F99F850A8/license41.txt +spdx_license_key: LicenseRef-scancode-ms-jdbc-driver-41-sql-server +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT JDBC DRIVER 4.1 FOR SQL SERVER diff --git a/docs/ms-jdbc-driver-41-sql-server.html b/docs/ms-jdbc-driver-41-sql-server.html index 6dd2a91863..b9d1507e8e 100644 --- a/docs/ms-jdbc-driver-41-sql-server.html +++ b/docs/ms-jdbc-driver-41-sql-server.html @@ -270,7 +270,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-jdbc-driver-41-sql-server.json b/docs/ms-jdbc-driver-41-sql-server.json index de42df49ad..cc638599f0 100644 --- a/docs/ms-jdbc-driver-41-sql-server.json +++ b/docs/ms-jdbc-driver-41-sql-server.json @@ -1 +1,12 @@ -{"key": "ms-jdbc-driver-41-sql-server", "short_name": "MS JDBC Driver 4.1 for SQL Server", "name": "Microsoft JDBC Driver 4.1 for SQL Server", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://download.microsoft.com/download/0/2/A/02AAE597-3865-456C-AE7F-613F99F850A8/license41.txt", "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-41-sql-server", "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-jdbc-driver-41-sql-server", + "short_name": "MS JDBC Driver 4.1 for SQL Server", + "name": "Microsoft JDBC Driver 4.1 for SQL Server", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://download.microsoft.com/download/0/2/A/02AAE597-3865-456C-AE7F-613F99F850A8/license41.txt", + "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-41-sql-server", + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-jdbc-driver-60-sql-server.LICENSE b/docs/ms-jdbc-driver-60-sql-server.LICENSE index a891bd59c6..9c0e0f069e 100644 --- a/docs/ms-jdbc-driver-60-sql-server.LICENSE +++ b/docs/ms-jdbc-driver-60-sql-server.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-jdbc-driver-60-sql-server +short_name: MS JDBC Driver 6.0 for SQL Server +name: Microsoft JDBC Driver 6.0 for SQL Server +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=11774 +spdx_license_key: LicenseRef-scancode-ms-jdbc-driver-60-sql-server +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT JDBC DRIVER 6.0 FOR SQL SERVER diff --git a/docs/ms-jdbc-driver-60-sql-server.html b/docs/ms-jdbc-driver-60-sql-server.html index 1530cede2e..fc33abfbbd 100644 --- a/docs/ms-jdbc-driver-60-sql-server.html +++ b/docs/ms-jdbc-driver-60-sql-server.html @@ -300,7 +300,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-jdbc-driver-60-sql-server.json b/docs/ms-jdbc-driver-60-sql-server.json index af897bfe31..e0d7a18253 100644 --- a/docs/ms-jdbc-driver-60-sql-server.json +++ b/docs/ms-jdbc-driver-60-sql-server.json @@ -1 +1,12 @@ -{"key": "ms-jdbc-driver-60-sql-server", "short_name": "MS JDBC Driver 6.0 for SQL Server", "name": "Microsoft JDBC Driver 6.0 for SQL Server", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=11774", "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-60-sql-server", "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-jdbc-driver-60-sql-server", + "short_name": "MS JDBC Driver 6.0 for SQL Server", + "name": "Microsoft JDBC Driver 6.0 for SQL Server", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=11774", + "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-60-sql-server", + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-kinext-win-sdk.LICENSE b/docs/ms-kinext-win-sdk.LICENSE index 4bee9a0289..a8d65e4de0 100644 --- a/docs/ms-kinext-win-sdk.LICENSE +++ b/docs/ms-kinext-win-sdk.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-kinext-win-sdk +short_name: MS Kinect for Windows SDK License +name: Microsoft Kinect for Windows SDK License +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.microsoft.com/en-us/kinectforwindows/develop/sdk-eula.aspx +spdx_license_key: LicenseRef-scancode-ms-kinext-win-sdk +other_urls: + - https://web.archive.org/web/20130326115230/https://www.microsoft.com/en-us/kinectforwindows/develop/sdk-eula.aspx + - http://go.microsoft.com/fwlink/?LinkID=236061 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + Microsoft Kinect for Windows Software Development Kit (SDK) diff --git a/docs/ms-kinext-win-sdk.html b/docs/ms-kinext-win-sdk.html index 3d3c08b078..5b6e8ca753 100644 --- a/docs/ms-kinext-win-sdk.html +++ b/docs/ms-kinext-win-sdk.html @@ -257,7 +257,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-kinext-win-sdk.json b/docs/ms-kinext-win-sdk.json index fe857180b6..e428e79985 100644 --- a/docs/ms-kinext-win-sdk.json +++ b/docs/ms-kinext-win-sdk.json @@ -1 +1,16 @@ -{"key": "ms-kinext-win-sdk", "short_name": "MS Kinect for Windows SDK License", "name": "Microsoft Kinect for Windows SDK License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://www.microsoft.com/en-us/kinectforwindows/develop/sdk-eula.aspx", "spdx_license_key": "LicenseRef-scancode-ms-kinext-win-sdk", "other_urls": ["https://web.archive.org/web/20130326115230/https://www.microsoft.com/en-us/kinectforwindows/develop/sdk-eula.aspx", "http://go.microsoft.com/fwlink/?LinkID=236061"], "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-kinext-win-sdk", + "short_name": "MS Kinect for Windows SDK License", + "name": "Microsoft Kinect for Windows SDK License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://www.microsoft.com/en-us/kinectforwindows/develop/sdk-eula.aspx", + "spdx_license_key": "LicenseRef-scancode-ms-kinext-win-sdk", + "other_urls": [ + "https://web.archive.org/web/20130326115230/https://www.microsoft.com/en-us/kinectforwindows/develop/sdk-eula.aspx", + "http://go.microsoft.com/fwlink/?LinkID=236061" + ], + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-limited-community.LICENSE b/docs/ms-limited-community.LICENSE index 5bccae6a64..5823cc999c 100644 --- a/docs/ms-limited-community.LICENSE +++ b/docs/ms-limited-community.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-limited-community +short_name: MS Limited Community License +name: Microsoft Limited Community License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedcommunitylicense.mspx +spdx_license_key: LicenseRef-scancode-ms-limited-community +other_urls: + - http://web.archive.org/web/20060109220553/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedcommunitylicense.mspx +minimum_coverage: 40 +--- + Microsoft Limited Community License (Ms-LCL) Published: October 18, 2005 diff --git a/docs/ms-limited-community.html b/docs/ms-limited-community.html index 998eede0b1..b9a415730a 100644 --- a/docs/ms-limited-community.html +++ b/docs/ms-limited-community.html @@ -222,7 +222,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-limited-community.json b/docs/ms-limited-community.json index fe993c5a45..de2c418189 100644 --- a/docs/ms-limited-community.json +++ b/docs/ms-limited-community.json @@ -1 +1,13 @@ -{"key": "ms-limited-community", "short_name": "MS Limited Community License", "name": "Microsoft Limited Community License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedcommunitylicense.mspx", "spdx_license_key": "LicenseRef-scancode-ms-limited-community", "other_urls": ["http://web.archive.org/web/20060109220553/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedcommunitylicense.mspx"], "minimum_coverage": 40} \ No newline at end of file +{ + "key": "ms-limited-community", + "short_name": "MS Limited Community License", + "name": "Microsoft Limited Community License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedcommunitylicense.mspx", + "spdx_license_key": "LicenseRef-scancode-ms-limited-community", + "other_urls": [ + "http://web.archive.org/web/20060109220553/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedcommunitylicense.mspx" + ], + "minimum_coverage": 40 +} \ No newline at end of file diff --git a/docs/ms-limited-public.LICENSE b/docs/ms-limited-public.LICENSE index 2dda3e35b3..d03f64c3b3 100644 --- a/docs/ms-limited-public.LICENSE +++ b/docs/ms-limited-public.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-limited-public +is_deprecated: yes +short_name: MS Limited Public License +name: Microsoft Limited Public License +category: Permissive +owner: Microsoft +homepage_url: http://msdn.microsoft.com/en-us/cc300389.aspx#P +text_urls: + - http://msdn.microsoft.com/en-us/cc300389.aspx#P +other_urls: + - http://web.archive.org/web/20080417054425/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpubliclicense.mspx + - https://web.archive.org/web/20091211214028/http://msdn.microsoft.com/en-us/cc300389.aspx#MLPL +--- + Microsoft Limited Public License (Ms-LPL) This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. diff --git a/docs/ms-limited-public.html b/docs/ms-limited-public.html index 24e97553a1..c71542208e 100644 --- a/docs/ms-limited-public.html +++ b/docs/ms-limited-public.html @@ -205,7 +205,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-limited-public.json b/docs/ms-limited-public.json index 866d768806..f25c96c84e 100644 --- a/docs/ms-limited-public.json +++ b/docs/ms-limited-public.json @@ -1 +1,16 @@ -{"key": "ms-limited-public", "is_deprecated": true, "short_name": "MS Limited Public License", "name": "Microsoft Limited Public License", "category": "Permissive", "owner": "Microsoft", "homepage_url": "http://msdn.microsoft.com/en-us/cc300389.aspx#P", "text_urls": ["http://msdn.microsoft.com/en-us/cc300389.aspx#P"], "other_urls": ["http://web.archive.org/web/20080417054425/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpubliclicense.mspx", "https://web.archive.org/web/20091211214028/http://msdn.microsoft.com/en-us/cc300389.aspx#MLPL"]} \ No newline at end of file +{ + "key": "ms-limited-public", + "is_deprecated": true, + "short_name": "MS Limited Public License", + "name": "Microsoft Limited Public License", + "category": "Permissive", + "owner": "Microsoft", + "homepage_url": "http://msdn.microsoft.com/en-us/cc300389.aspx#P", + "text_urls": [ + "http://msdn.microsoft.com/en-us/cc300389.aspx#P" + ], + "other_urls": [ + "http://web.archive.org/web/20080417054425/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpubliclicense.mspx", + "https://web.archive.org/web/20091211214028/http://msdn.microsoft.com/en-us/cc300389.aspx#MLPL" + ] +} \ No newline at end of file diff --git a/docs/ms-lpl.LICENSE b/docs/ms-lpl.LICENSE index a1bcdff1e0..2ea421cd38 100644 --- a/docs/ms-lpl.LICENSE +++ b/docs/ms-lpl.LICENSE @@ -1,3 +1,23 @@ +--- +key: ms-lpl +short_name: MS-LPL +name: Microsoft Limited Permissive License (MS-LPL) +category: Permissive +owner: Microsoft +homepage_url: http://web.archive.org/web/20061122070300/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpermissivelicense.mspx +notes: it was name "Microsoft Limited Permissive License" and later renamed by Microsoft +spdx_license_key: MS-LPL +other_spdx_license_keys: + - LicenseRef-scancode-ms-lpl +text_urls: + - http://web.archive.org/web/20061122070300/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpermissivelicense.mspx +other_urls: + - https://web.archive.org/web/20091211214028/http://msdn.microsoft.com/en-us/cc300389.aspx#MLPL + - https://www.openhub.net/licenses/mslpl + - https://github.com/gabegundy/atlserver/blob/master/License.txt + - https://en.wikipedia.org/wiki/Shared_Source_Initiative#Microsoft_Limited_Public_License_(Ms-LPL) +--- + Microsoft Limited Permissive License (MS-LPL) Published: October 12, 2006 diff --git a/docs/ms-lpl.html b/docs/ms-lpl.html index 05c662214d..33e1de6c90 100644 --- a/docs/ms-lpl.html +++ b/docs/ms-lpl.html @@ -106,10 +106,26 @@
+
notes
+
+ + it was name "Microsoft Limited Permissive License" and later renamed by Microsoft + +
+
spdx_license_key
- LicenseRef-scancode-ms-lpl + MS-LPL + +
+ +
other_spdx_license_keys
+
+ +
    +
  • LicenseRef-scancode-ms-lpl
  • +
@@ -126,7 +142,7 @@
@@ -207,7 +223,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-lpl.json b/docs/ms-lpl.json index f8a2f4e819..649d7c5344 100644 --- a/docs/ms-lpl.json +++ b/docs/ms-lpl.json @@ -1 +1,22 @@ -{"key": "ms-lpl", "short_name": "MS-LPL", "name": "Microsoft Limited Permissive License (MS-LPL)", "category": "Permissive", "owner": "Microsoft", "homepage_url": "http://web.archive.org/web/20061122070300/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpermissivelicense.mspx", "spdx_license_key": "LicenseRef-scancode-ms-lpl", "text_urls": ["http://web.archive.org/web/20061122070300/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpermissivelicense.mspx"], "other_urls": ["https://web.archive.org/web/20091211214028/http://msdn.microsoft.com/en-us/cc300389.aspx#MLPL"]} \ No newline at end of file +{ + "key": "ms-lpl", + "short_name": "MS-LPL", + "name": "Microsoft Limited Permissive License (MS-LPL)", + "category": "Permissive", + "owner": "Microsoft", + "homepage_url": "http://web.archive.org/web/20061122070300/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpermissivelicense.mspx", + "notes": "it was name \"Microsoft Limited Permissive License\" and later renamed by Microsoft", + "spdx_license_key": "MS-LPL", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-lpl" + ], + "text_urls": [ + "http://web.archive.org/web/20061122070300/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpermissivelicense.mspx" + ], + "other_urls": [ + "https://web.archive.org/web/20091211214028/http://msdn.microsoft.com/en-us/cc300389.aspx#MLPL", + "https://www.openhub.net/licenses/mslpl", + "https://github.com/gabegundy/atlserver/blob/master/License.txt", + "https://en.wikipedia.org/wiki/Shared_Source_Initiative#Microsoft_Limited_Public_License_(Ms-LPL)" + ] +} \ No newline at end of file diff --git a/docs/ms-lpl.yml b/docs/ms-lpl.yml index 38b795480d..39b6cdf924 100644 --- a/docs/ms-lpl.yml +++ b/docs/ms-lpl.yml @@ -4,8 +4,14 @@ name: Microsoft Limited Permissive License (MS-LPL) category: Permissive owner: Microsoft homepage_url: http://web.archive.org/web/20061122070300/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpermissivelicense.mspx -spdx_license_key: LicenseRef-scancode-ms-lpl +notes: it was name "Microsoft Limited Permissive License" and later renamed by Microsoft +spdx_license_key: MS-LPL +other_spdx_license_keys: + - LicenseRef-scancode-ms-lpl text_urls: - http://web.archive.org/web/20061122070300/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpermissivelicense.mspx other_urls: - https://web.archive.org/web/20091211214028/http://msdn.microsoft.com/en-us/cc300389.aspx#MLPL + - https://www.openhub.net/licenses/mslpl + - https://github.com/gabegundy/atlserver/blob/master/License.txt + - https://en.wikipedia.org/wiki/Shared_Source_Initiative#Microsoft_Limited_Public_License_(Ms-LPL) diff --git a/docs/ms-msn-webgrease.LICENSE b/docs/ms-msn-webgrease.LICENSE index 9dd0a0a58f..3c83fb738d 100644 --- a/docs/ms-msn-webgrease.LICENSE +++ b/docs/ms-msn-webgrease.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-msn-webgrease +short_name: MS MSN WebGrease License +name: Microsoft MSN WebGrease License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/msn_webgrease_eula.htm +notes: also contains some French language terms +spdx_license_key: LicenseRef-scancode-ms-msn-webgrease +minimum_coverage: 90 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT MSN WEBGREASE diff --git a/docs/ms-msn-webgrease.html b/docs/ms-msn-webgrease.html index edc7e9d2e3..8fd0309867 100644 --- a/docs/ms-msn-webgrease.html +++ b/docs/ms-msn-webgrease.html @@ -338,7 +338,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-msn-webgrease.json b/docs/ms-msn-webgrease.json index 95d45d7735..554ee99532 100644 --- a/docs/ms-msn-webgrease.json +++ b/docs/ms-msn-webgrease.json @@ -1 +1,14 @@ -{"key": "ms-msn-webgrease", "short_name": "MS MSN WebGrease License", "name": "Microsoft MSN WebGrease License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://www.microsoft.com/web/webpi/eula/msn_webgrease_eula.htm", "notes": "also contains some French language terms", "spdx_license_key": "LicenseRef-scancode-ms-msn-webgrease", "minimum_coverage": 90, "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-msn-webgrease", + "short_name": "MS MSN WebGrease License", + "name": "Microsoft MSN WebGrease License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://www.microsoft.com/web/webpi/eula/msn_webgrease_eula.htm", + "notes": "also contains some French language terms", + "spdx_license_key": "LicenseRef-scancode-ms-msn-webgrease", + "minimum_coverage": 90, + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-net-framework-4-supplemental-terms.LICENSE b/docs/ms-net-framework-4-supplemental-terms.LICENSE index 300dfa51ae..d4ff00b6d7 100644 --- a/docs/ms-net-framework-4-supplemental-terms.LICENSE +++ b/docs/ms-net-framework-4-supplemental-terms.LICENSE @@ -1,3 +1,20 @@ +--- +key: ms-net-framework-4-supplemental-terms +short_name: MS Supplemental License - .NET Framework 4 +name: Microsoft Software Supplemental License - .NET Framework 4 +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-net-framework-4-supp-terms +other_spdx_license_keys: + - LicenseRef-scancode-ms-net-framework-4-supplemental-terms +faq_url: http://go.microsoft.com/fwlink/?LinkID=66406&clcid=0x409 +other_urls: + - www.support.microsoft.com/common/international.aspx +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkID=66406&clcid=0x409 + - http://www.support.microsoft.com/common/international.aspx +--- + MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS MICROSOFT .NET FRAMEWORK 4 FOR MICROSOFT WINDOWS OPERATING SYSTEM MICROSOFT .NET FRAMEWORK 4 CLIENT PROFILE FOR MICROSOFT WINDOWS OPERATING SYSTEM diff --git a/docs/ms-net-framework-4-supplemental-terms.html b/docs/ms-net-framework-4-supplemental-terms.html index 28f145d872..05ff53e0b3 100644 --- a/docs/ms-net-framework-4-supplemental-terms.html +++ b/docs/ms-net-framework-4-supplemental-terms.html @@ -167,7 +167,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-net-framework-4-supplemental-terms.json b/docs/ms-net-framework-4-supplemental-terms.json index cd846ab043..82187aba23 100644 --- a/docs/ms-net-framework-4-supplemental-terms.json +++ b/docs/ms-net-framework-4-supplemental-terms.json @@ -1 +1,19 @@ -{"key": "ms-net-framework-4-supplemental-terms", "short_name": "MS Supplemental License - .NET Framework 4", "name": "Microsoft Software Supplemental License - .NET Framework 4", "category": "Proprietary Free", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-net-framework-4-supp-terms", "other_spdx_license_keys": ["LicenseRef-scancode-ms-net-framework-4-supplemental-terms"], "faq_url": "http://go.microsoft.com/fwlink/?LinkID=66406&clcid=0x409", "other_urls": ["www.support.microsoft.com/common/international.aspx"], "ignorable_urls": ["http://go.microsoft.com/fwlink/?LinkID=66406&clcid=0x409", "http://www.support.microsoft.com/common/international.aspx"]} \ No newline at end of file +{ + "key": "ms-net-framework-4-supplemental-terms", + "short_name": "MS Supplemental License - .NET Framework 4", + "name": "Microsoft Software Supplemental License - .NET Framework 4", + "category": "Proprietary Free", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-net-framework-4-supp-terms", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-net-framework-4-supplemental-terms" + ], + "faq_url": "http://go.microsoft.com/fwlink/?LinkID=66406&clcid=0x409", + "other_urls": [ + "www.support.microsoft.com/common/international.aspx" + ], + "ignorable_urls": [ + "http://go.microsoft.com/fwlink/?LinkID=66406&clcid=0x409", + "http://www.support.microsoft.com/common/international.aspx" + ] +} \ No newline at end of file diff --git a/docs/ms-net-framework-deployment.LICENSE b/docs/ms-net-framework-deployment.LICENSE index fef9d18a9a..5a26adf274 100644 --- a/docs/ms-net-framework-deployment.LICENSE +++ b/docs/ms-net-framework-deployment.LICENSE @@ -1,3 +1,12 @@ +--- +key: ms-net-framework-deployment +short_name: MS .NET Framework Redistributable EULA +name: Microsoft .NET Framework Redistributable EULA +category: Commercial +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-net-framework-deployment +--- + .NET Framework Deployment Microsoft .NET Framework Redistributable EULA diff --git a/docs/ms-net-framework-deployment.html b/docs/ms-net-framework-deployment.html index 032316bd55..95f35b204a 100644 --- a/docs/ms-net-framework-deployment.html +++ b/docs/ms-net-framework-deployment.html @@ -151,7 +151,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-net-framework-deployment.json b/docs/ms-net-framework-deployment.json index e3a57440be..32455fad51 100644 --- a/docs/ms-net-framework-deployment.json +++ b/docs/ms-net-framework-deployment.json @@ -1 +1,8 @@ -{"key": "ms-net-framework-deployment", "short_name": "MS .NET Framework Redistributable EULA", "name": "Microsoft .NET Framework Redistributable EULA", "category": "Commercial", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-net-framework-deployment"} \ No newline at end of file +{ + "key": "ms-net-framework-deployment", + "short_name": "MS .NET Framework Redistributable EULA", + "name": "Microsoft .NET Framework Redistributable EULA", + "category": "Commercial", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-net-framework-deployment" +} \ No newline at end of file diff --git a/docs/ms-net-library-2016-05.LICENSE b/docs/ms-net-library-2016-05.LICENSE index cee2f6c041..1b2189f341 100644 --- a/docs/ms-net-library-2016-05.LICENSE +++ b/docs/ms-net-library-2016-05.LICENSE @@ -1,3 +1,21 @@ +--- +key: ms-net-library-2016-05 +short_name: MS .NET Library License 2016-05 +name: Microsoft .NET Library License 2016-05 +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm +notes: this is the version that existed at http://www.microsoft.com/net/dotnet_library_license.htm + from May 2016. It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770 +spdx_license_key: LicenseRef-scancode-ms-net-library-2016-05 +other_urls: + - http://go.microsoft.com/fwlink/?LinkId=329770 + - http://www.microsoft.com/net/dotnet_library_license.htm +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkId=528096 + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT .NET LIBRARY diff --git a/docs/ms-net-library-2016-05.html b/docs/ms-net-library-2016-05.html index 9e745be9e9..ba6ae7b197 100644 --- a/docs/ms-net-library-2016-05.html +++ b/docs/ms-net-library-2016-05.html @@ -120,11 +120,20 @@ +
other_urls
+
+ + + +
+
ignorable_urls
@@ -351,7 +360,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-net-library-2016-05.json b/docs/ms-net-library-2016-05.json index 33d0d546f4..4e1a9b89d9 100644 --- a/docs/ms-net-library-2016-05.json +++ b/docs/ms-net-library-2016-05.json @@ -1 +1,18 @@ -{"key": "ms-net-library-2016-05", "short_name": "MS .NET Library License 2016-05", "name": "Microsoft .NET Library License 2016-05", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm", "notes": "this is the version that existed at http://www.microsoft.com/net/dotnet_library_license.htm from May 2016. It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770", "spdx_license_key": "LicenseRef-scancode-ms-net-library-2016-05", "ignorable_urls": ["http://www.microsoft.com/exporting", "http://go.microsoft.com/fwlink/?LinkId=528096"]} \ No newline at end of file +{ + "key": "ms-net-library-2016-05", + "short_name": "MS .NET Library License 2016-05", + "name": "Microsoft .NET Library License 2016-05", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm", + "notes": "this is the version that existed at http://www.microsoft.com/net/dotnet_library_license.htm from May 2016. It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2016-05", + "other_urls": [ + "http://go.microsoft.com/fwlink/?LinkId=329770", + "http://www.microsoft.com/net/dotnet_library_license.htm" + ], + "ignorable_urls": [ + "http://go.microsoft.com/fwlink/?LinkId=528096", + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-net-library-2016-05.yml b/docs/ms-net-library-2016-05.yml index c7b6ddd05f..abb78751ed 100644 --- a/docs/ms-net-library-2016-05.yml +++ b/docs/ms-net-library-2016-05.yml @@ -7,6 +7,9 @@ homepage_url: http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm notes: this is the version that existed at http://www.microsoft.com/net/dotnet_library_license.htm from May 2016. It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770 spdx_license_key: LicenseRef-scancode-ms-net-library-2016-05 +other_urls: + - http://go.microsoft.com/fwlink/?LinkId=329770 + - http://www.microsoft.com/net/dotnet_library_license.htm ignorable_urls: - - http://www.microsoft.com/exporting - http://go.microsoft.com/fwlink/?LinkId=528096 + - http://www.microsoft.com/exporting diff --git a/docs/ms-net-library-2018-11.LICENSE b/docs/ms-net-library-2018-11.LICENSE index ccff088ceb..3dd11a5a9b 100644 --- a/docs/ms-net-library-2018-11.LICENSE +++ b/docs/ms-net-library-2018-11.LICENSE @@ -1,3 +1,20 @@ +--- +key: ms-net-library-2018-11 +short_name: MS .NET Library License 2018-11 +name: Microsoft .NET Library License 2018-11 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm +notes: this is the version that existed at http://www.microsoft.com/net/dotnet_library_license.htm + from November 2018 and then at https://dotnet.microsoft.com/dotnet_library_license.htm It + also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770 +spdx_license_key: LicenseRef-scancode-ms-net-library-2018-11 +ignorable_urls: + - http://go.microsoft.com/?linkid=9840733 + - http://www.microsoft.com/exporting + - https://go.microsoft.com/fwlink/?LinkID=824704 +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT .NET LIBRARY @@ -225,4 +242,4 @@ dessus ne s'appliquera pas à votre égard. EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d'autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si -celles-ci ne le permettent pas. +celles-ci ne le permettent pas. \ No newline at end of file diff --git a/docs/ms-net-library-2018-11.html b/docs/ms-net-library-2018-11.html index 2853a7256e..3588a3098b 100644 --- a/docs/ms-net-library-2018-11.html +++ b/docs/ms-net-library-2018-11.html @@ -358,8 +358,7 @@ EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d'autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si -celles-ci ne le permettent pas. - +celles-ci ne le permettent pas.
@@ -371,7 +370,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-net-library-2018-11.json b/docs/ms-net-library-2018-11.json index 3ae949ce08..73cf865c7d 100644 --- a/docs/ms-net-library-2018-11.json +++ b/docs/ms-net-library-2018-11.json @@ -1 +1,15 @@ -{"key": "ms-net-library-2018-11", "short_name": "MS .NET Library License 2018-11", "name": "Microsoft .NET Library License 2018-11", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm", "notes": "this is the version that existed at http://www.microsoft.com/net/dotnet_library_license.htm from November 2018 and then at https://dotnet.microsoft.com/dotnet_library_license.htm It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770", "spdx_license_key": "LicenseRef-scancode-ms-net-library-2018-11", "ignorable_urls": ["http://go.microsoft.com/?linkid=9840733", "http://www.microsoft.com/exporting", "https://go.microsoft.com/fwlink/?LinkID=824704"]} \ No newline at end of file +{ + "key": "ms-net-library-2018-11", + "short_name": "MS .NET Library License 2018-11", + "name": "Microsoft .NET Library License 2018-11", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm", + "notes": "this is the version that existed at http://www.microsoft.com/net/dotnet_library_license.htm from November 2018 and then at https://dotnet.microsoft.com/dotnet_library_license.htm It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2018-11", + "ignorable_urls": [ + "http://go.microsoft.com/?linkid=9840733", + "http://www.microsoft.com/exporting", + "https://go.microsoft.com/fwlink/?LinkID=824704" + ] +} \ No newline at end of file diff --git a/docs/ms-net-library-2019-06.LICENSE b/docs/ms-net-library-2019-06.LICENSE index 495e7df7c5..12688daf3c 100644 --- a/docs/ms-net-library-2019-06.LICENSE +++ b/docs/ms-net-library-2019-06.LICENSE @@ -1,4 +1,19 @@ - +--- +key: ms-net-library-2019-06 +short_name: MS .NET Library License 2019-06 +name: Microsoft .NET Library License 2019-06 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.microsoft.com/en-us/web/webpi/eula/net_library_eula_ENU.htm +notes: this is the version that existed at https://dotnet.microsoft.com/dotnet_library_license.htm + from June 2019 and then at https://dotnet.microsoft.com/en/dotnet_library_license.htm It + also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770 +spdx_license_key: LicenseRef-scancode-ms-net-library-2019-06 +ignorable_urls: + - http://www.microsoft.com/exporting + - https://docs.microsoft.com/en-us/legal/gdpr + - https://go.microsoft.com/fwlink/?LinkID=824704 +--- MICROSOFT SOFTWARE LICENSE TERMS @@ -62,6 +77,4 @@ Subject to the foregoing clause (ii), Microsoft will only be liable for slight n This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. -It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state or country may not allow the exclusion or limitation of incidental, consequential or other damages. - - +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state or country may not allow the exclusion or limitation of incidental, consequential or other damages. \ No newline at end of file diff --git a/docs/ms-net-library-2019-06.html b/docs/ms-net-library-2019-06.html index c189a821f9..395998e565 100644 --- a/docs/ms-net-library-2019-06.html +++ b/docs/ms-net-library-2019-06.html @@ -131,9 +131,7 @@
license_text
-

-
-MICROSOFT SOFTWARE LICENSE TERMS
+    
MICROSOFT SOFTWARE LICENSE TERMS
 
 MICROSOFT .NET LIBRARY
 
@@ -195,10 +193,7 @@
 
 This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.
 
-It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state or country may not allow the exclusion or limitation of incidental, consequential or other damages.
-
- 
-
+It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state or country may not allow the exclusion or limitation of incidental, consequential or other damages.
@@ -210,7 +205,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-net-library-2019-06.json b/docs/ms-net-library-2019-06.json index c4b566985d..29fe2b2f7f 100644 --- a/docs/ms-net-library-2019-06.json +++ b/docs/ms-net-library-2019-06.json @@ -1 +1,15 @@ -{"key": "ms-net-library-2019-06", "short_name": "MS .NET Library License 2019-06", "name": "Microsoft .NET Library License 2019-06", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://www.microsoft.com/en-us/web/webpi/eula/net_library_eula_ENU.htm", "notes": "this is the version that existed at https://dotnet.microsoft.com/dotnet_library_license.htm from June 2019 and then at https://dotnet.microsoft.com/en/dotnet_library_license.htm It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770", "spdx_license_key": "LicenseRef-scancode-ms-net-library-2019-06", "ignorable_urls": ["http://www.microsoft.com/exporting", "https://docs.microsoft.com/en-us/legal/gdpr", "https://go.microsoft.com/fwlink/?LinkID=824704"]} \ No newline at end of file +{ + "key": "ms-net-library-2019-06", + "short_name": "MS .NET Library License 2019-06", + "name": "Microsoft .NET Library License 2019-06", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://www.microsoft.com/en-us/web/webpi/eula/net_library_eula_ENU.htm", + "notes": "this is the version that existed at https://dotnet.microsoft.com/dotnet_library_license.htm from June 2019 and then at https://dotnet.microsoft.com/en/dotnet_library_license.htm It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2019-06", + "ignorable_urls": [ + "http://www.microsoft.com/exporting", + "https://docs.microsoft.com/en-us/legal/gdpr", + "https://go.microsoft.com/fwlink/?LinkID=824704" + ] +} \ No newline at end of file diff --git a/docs/ms-net-library-2020-09.LICENSE b/docs/ms-net-library-2020-09.LICENSE index 37640fc3c2..091d7f19bc 100644 --- a/docs/ms-net-library-2020-09.LICENSE +++ b/docs/ms-net-library-2020-09.LICENSE @@ -1,3 +1,20 @@ +--- +key: ms-net-library-2020-09 +short_name: MS .NET Library License 2020-09 +name: Microsoft .NET Library License 2020-09 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.microsoft.com/web/webpi/eula/dotnet_library_license_non_redistributable.htm +notes: this is the version that existed at https://dotnet.microsoft.com/en/dotnet_library_license.htm + from September 2020 and then at https://dotnet.microsoft.com/en-us/dotnet_library_license.htm + It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770 +spdx_license_key: LicenseRef-scancode-ms-net-library-2020-09 +other_urls: + - https://www.nuget.org/packages/Microsoft.Net.Compilers/1.0.0 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT .NET LIBRARY (INSTALL AND USE) diff --git a/docs/ms-net-library-2020-09.html b/docs/ms-net-library-2020-09.html index 618daed30d..d49d262588 100644 --- a/docs/ms-net-library-2020-09.html +++ b/docs/ms-net-library-2020-09.html @@ -238,7 +238,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-net-library-2020-09.json b/docs/ms-net-library-2020-09.json index d74ebe853b..66ccd0e182 100644 --- a/docs/ms-net-library-2020-09.json +++ b/docs/ms-net-library-2020-09.json @@ -1 +1,16 @@ -{"key": "ms-net-library-2020-09", "short_name": "MS .NET Library License 2020-09", "name": "Microsoft .NET Library License 2020-09", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://www.microsoft.com/web/webpi/eula/dotnet_library_license_non_redistributable.htm", "notes": "this is the version that existed at https://dotnet.microsoft.com/en/dotnet_library_license.htm from September 2020 and then at https://dotnet.microsoft.com/en-us/dotnet_library_license.htm It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770", "spdx_license_key": "LicenseRef-scancode-ms-net-library-2020-09", "other_urls": ["https://www.nuget.org/packages/Microsoft.Net.Compilers/1.0.0"], "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-net-library-2020-09", + "short_name": "MS .NET Library License 2020-09", + "name": "Microsoft .NET Library License 2020-09", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://www.microsoft.com/web/webpi/eula/dotnet_library_license_non_redistributable.htm", + "notes": "this is the version that existed at https://dotnet.microsoft.com/en/dotnet_library_license.htm from September 2020 and then at https://dotnet.microsoft.com/en-us/dotnet_library_license.htm It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2020-09", + "other_urls": [ + "https://www.nuget.org/packages/Microsoft.Net.Compilers/1.0.0" + ], + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-net-library.LICENSE b/docs/ms-net-library.LICENSE index 2537988fc9..295cfdf5ab 100644 --- a/docs/ms-net-library.LICENSE +++ b/docs/ms-net-library.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-net-library +short_name: MS .NET Library License +name: Microsoft .NET Library License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm +notes: this is the version that existed at http://www.microsoft.com/net/dotnet_library_license.htm + from late 2014 until April 2016 It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770 +spdx_license_key: LicenseRef-scancode-ms-net-library +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT .NET LIBRARY @@ -199,4 +213,4 @@ dessus ne s’appliquera pas à votre égard. EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si -celles - ci ne le permettent pas. +celles - ci ne le permettent pas. \ No newline at end of file diff --git a/docs/ms-net-library.html b/docs/ms-net-library.html index 7f76299816..2cac9b1413 100644 --- a/docs/ms-net-library.html +++ b/docs/ms-net-library.html @@ -332,8 +332,7 @@ EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si -celles - ci ne le permettent pas. - +celles - ci ne le permettent pas.
@@ -345,7 +344,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-net-library.json b/docs/ms-net-library.json index 665278a700..223ef94f56 100644 --- a/docs/ms-net-library.json +++ b/docs/ms-net-library.json @@ -1 +1,13 @@ -{"key": "ms-net-library", "short_name": "MS .NET Library License", "name": "Microsoft .NET Library License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm", "notes": "this is the version that existed at http://www.microsoft.com/net/dotnet_library_license.htm from late 2014 until April 2016 It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770", "spdx_license_key": "LicenseRef-scancode-ms-net-library", "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-net-library", + "short_name": "MS .NET Library License", + "name": "Microsoft .NET Library License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm", + "notes": "this is the version that existed at http://www.microsoft.com/net/dotnet_library_license.htm from late 2014 until April 2016 It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770", + "spdx_license_key": "LicenseRef-scancode-ms-net-library", + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-nt-resource-kit.LICENSE b/docs/ms-nt-resource-kit.LICENSE index 3342ac9009..ff3cbf200d 100644 --- a/docs/ms-nt-resource-kit.LICENSE +++ b/docs/ms-nt-resource-kit.LICENSE @@ -1,3 +1,12 @@ +--- +key: ms-nt-resource-kit +short_name: MS NT Resource Kit License +name: Microsoft NT Resource Kit License +category: Commercial +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-nt-resource-kit +--- + Microsoft NT Resource Kit License MICROSOFT WINDOWS NT RESOURCE KIT SUPPORT TOOLS END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE diff --git a/docs/ms-nt-resource-kit.html b/docs/ms-nt-resource-kit.html index 34d603f7c9..89874d2cdd 100644 --- a/docs/ms-nt-resource-kit.html +++ b/docs/ms-nt-resource-kit.html @@ -165,7 +165,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-nt-resource-kit.json b/docs/ms-nt-resource-kit.json index b3849c029e..d6fa696688 100644 --- a/docs/ms-nt-resource-kit.json +++ b/docs/ms-nt-resource-kit.json @@ -1 +1,8 @@ -{"key": "ms-nt-resource-kit", "short_name": "MS NT Resource Kit License", "name": "Microsoft NT Resource Kit License", "category": "Commercial", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-nt-resource-kit"} \ No newline at end of file +{ + "key": "ms-nt-resource-kit", + "short_name": "MS NT Resource Kit License", + "name": "Microsoft NT Resource Kit License", + "category": "Commercial", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-nt-resource-kit" +} \ No newline at end of file diff --git a/docs/ms-nuget-package-manager.LICENSE b/docs/ms-nuget-package-manager.LICENSE index 2e48be3a32..41e2df4643 100644 --- a/docs/ms-nuget-package-manager.LICENSE +++ b/docs/ms-nuget-package-manager.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-nuget-package-manager +short_name: MS NuGet-Based Package Manager License +name: Microsoft NuGet-Based Package Manager License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/nuget_release_eula.htm +spdx_license_key: LicenseRef-scancode-ms-nuget-package-manager +ignorable_urls: + - http://docs.nuget.org/docs/reference/package-restore + - http://docs.nuget.org/docs/start-here/managing-nuget-packages-using-the-dialog + - http://www.microsoft.com/exporting + - http://www.microsoft.com/web/webpi/eula/package-manager-for-net-privacy.htm +--- + MICROSOFT SOFTWARE LICENSE TERMS NUGET-BASED MICROSOFT PACKAGE MANAGER diff --git a/docs/ms-nuget-package-manager.html b/docs/ms-nuget-package-manager.html index 019e03d01f..6e1474a13b 100644 --- a/docs/ms-nuget-package-manager.html +++ b/docs/ms-nuget-package-manager.html @@ -228,7 +228,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-nuget-package-manager.json b/docs/ms-nuget-package-manager.json index d63733a895..6ebf4fed15 100644 --- a/docs/ms-nuget-package-manager.json +++ b/docs/ms-nuget-package-manager.json @@ -1 +1,15 @@ -{"key": "ms-nuget-package-manager", "short_name": "MS NuGet-Based Package Manager License", "name": "Microsoft NuGet-Based Package Manager License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://www.microsoft.com/web/webpi/eula/nuget_release_eula.htm", "spdx_license_key": "LicenseRef-scancode-ms-nuget-package-manager", "ignorable_urls": ["http://docs.nuget.org/docs/reference/package-restore", "http://docs.nuget.org/docs/start-here/managing-nuget-packages-using-the-dialog", "http://www.microsoft.com/exporting", "http://www.microsoft.com/web/webpi/eula/package-manager-for-net-privacy.htm"]} \ No newline at end of file +{ + "key": "ms-nuget-package-manager", + "short_name": "MS NuGet-Based Package Manager License", + "name": "Microsoft NuGet-Based Package Manager License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://www.microsoft.com/web/webpi/eula/nuget_release_eula.htm", + "spdx_license_key": "LicenseRef-scancode-ms-nuget-package-manager", + "ignorable_urls": [ + "http://docs.nuget.org/docs/reference/package-restore", + "http://docs.nuget.org/docs/start-here/managing-nuget-packages-using-the-dialog", + "http://www.microsoft.com/exporting", + "http://www.microsoft.com/web/webpi/eula/package-manager-for-net-privacy.htm" + ] +} \ No newline at end of file diff --git a/docs/ms-nuget.LICENSE b/docs/ms-nuget.LICENSE index 80a1a22493..70e1b9d80d 100644 --- a/docs/ms-nuget.LICENSE +++ b/docs/ms-nuget.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-nuget +short_name: MS Nuget +name: Microsoft Nuget License +category: Proprietary Free +owner: Microsoft +notes: | + this notice is often found in Nuget packages added by Microsoft on top of + other open source Attribution licenses, such as with jQuery. +spdx_license_key: LicenseRef-scancode-ms-nuget +--- + NUGET: BEGIN LICENSE TEXT Microsoft grants you the right to use these script files for the sole purpose of either: diff --git a/docs/ms-nuget.html b/docs/ms-nuget.html index 050a797866..4fe9a367d6 100644 --- a/docs/ms-nuget.html +++ b/docs/ms-nuget.html @@ -145,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-nuget.json b/docs/ms-nuget.json index aaefc9f9a0..cda8fc5ace 100644 --- a/docs/ms-nuget.json +++ b/docs/ms-nuget.json @@ -1 +1,9 @@ -{"key": "ms-nuget", "short_name": "MS Nuget", "name": "Microsoft Nuget License", "category": "Proprietary Free", "owner": "Microsoft", "notes": "this notice is often found in Nuget packages added by Microsoft on top of\nother open source Attribution licenses, such as with jQuery.\n", "spdx_license_key": "LicenseRef-scancode-ms-nuget"} \ No newline at end of file +{ + "key": "ms-nuget", + "short_name": "MS Nuget", + "name": "Microsoft Nuget License", + "category": "Proprietary Free", + "owner": "Microsoft", + "notes": "this notice is often found in Nuget packages added by Microsoft on top of\nother open source Attribution licenses, such as with jQuery.\n", + "spdx_license_key": "LicenseRef-scancode-ms-nuget" +} \ No newline at end of file diff --git a/docs/ms-office-extensible-file.LICENSE b/docs/ms-office-extensible-file.LICENSE index 19ec6c5e98..c5fc774331 100644 --- a/docs/ms-office-extensible-file.LICENSE +++ b/docs/ms-office-extensible-file.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-office-extensible-file +short_name: MS Office Extensible File License +name: Microsoft Office Extensible File License +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-office-extensible-file +text_urls: + - https://github.com/stephen-hardy/xlsx.js/blob/master/LICENSE.txt + - https://github.com/stephen-hardy/DOCX.js/blob/master/LICENSE.txt +other_urls: + - https://github.com/stephen-hardy/DOCX.js/issues/8 + - https://github.com/stephen-hardy/DOCX.js/issues/1 +--- + This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. diff --git a/docs/ms-office-extensible-file.html b/docs/ms-office-extensible-file.html index 0024321fa0..4037e663f4 100644 --- a/docs/ms-office-extensible-file.html +++ b/docs/ms-office-extensible-file.html @@ -159,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-office-extensible-file.json b/docs/ms-office-extensible-file.json index 1b4f4db7aa..09c646c0e5 100644 --- a/docs/ms-office-extensible-file.json +++ b/docs/ms-office-extensible-file.json @@ -1 +1,16 @@ -{"key": "ms-office-extensible-file", "short_name": "MS Office Extensible File License", "name": "Microsoft Office Extensible File License", "category": "Proprietary Free", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-office-extensible-file", "text_urls": ["https://github.com/stephen-hardy/xlsx.js/blob/master/LICENSE.txt", "https://github.com/stephen-hardy/DOCX.js/blob/master/LICENSE.txt"], "other_urls": ["https://github.com/stephen-hardy/DOCX.js/issues/8", "https://github.com/stephen-hardy/DOCX.js/issues/1"]} \ No newline at end of file +{ + "key": "ms-office-extensible-file", + "short_name": "MS Office Extensible File License", + "name": "Microsoft Office Extensible File License", + "category": "Proprietary Free", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-office-extensible-file", + "text_urls": [ + "https://github.com/stephen-hardy/xlsx.js/blob/master/LICENSE.txt", + "https://github.com/stephen-hardy/DOCX.js/blob/master/LICENSE.txt" + ], + "other_urls": [ + "https://github.com/stephen-hardy/DOCX.js/issues/8", + "https://github.com/stephen-hardy/DOCX.js/issues/1" + ] +} \ No newline at end of file diff --git a/docs/ms-office-system-programs-eula.LICENSE b/docs/ms-office-system-programs-eula.LICENSE index 2e671ca081..9267ed25d0 100644 --- a/docs/ms-office-system-programs-eula.LICENSE +++ b/docs/ms-office-system-programs-eula.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-office-system-programs-eula +short_name: MS Office System Programs Software EULA +name: Microsoft Office System Programs Software EULA +category: Commercial +owner: Microsoft +homepage_url: http://www.dmcwest.com/software/Microsoft/Office/Office%202003%20Interop%20Assemblies/o2003PIA_EULA.txt +notes: also contains some French language terms +spdx_license_key: LicenseRef-scancode-ms-office-system-programs-eula +ignorable_urls: + - http://www.microsoft.com/ +--- + SUPPLEMENTAL END USER LICENSE AGREEMENT FOR MICROSOFT OFFICE SYSTEM PROGRAMS SOFTWARE diff --git a/docs/ms-office-system-programs-eula.html b/docs/ms-office-system-programs-eula.html index 861e5adaf5..46d56c710c 100644 --- a/docs/ms-office-system-programs-eula.html +++ b/docs/ms-office-system-programs-eula.html @@ -190,7 +190,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-office-system-programs-eula.json b/docs/ms-office-system-programs-eula.json index ce5d67ba55..f1a875b2b5 100644 --- a/docs/ms-office-system-programs-eula.json +++ b/docs/ms-office-system-programs-eula.json @@ -1 +1,13 @@ -{"key": "ms-office-system-programs-eula", "short_name": "MS Office System Programs Software EULA", "name": "Microsoft Office System Programs Software EULA", "category": "Commercial", "owner": "Microsoft", "homepage_url": "http://www.dmcwest.com/software/Microsoft/Office/Office%202003%20Interop%20Assemblies/o2003PIA_EULA.txt", "notes": "also contains some French language terms", "spdx_license_key": "LicenseRef-scancode-ms-office-system-programs-eula", "ignorable_urls": ["http://www.microsoft.com/"]} \ No newline at end of file +{ + "key": "ms-office-system-programs-eula", + "short_name": "MS Office System Programs Software EULA", + "name": "Microsoft Office System Programs Software EULA", + "category": "Commercial", + "owner": "Microsoft", + "homepage_url": "http://www.dmcwest.com/software/Microsoft/Office/Office%202003%20Interop%20Assemblies/o2003PIA_EULA.txt", + "notes": "also contains some French language terms", + "spdx_license_key": "LicenseRef-scancode-ms-office-system-programs-eula", + "ignorable_urls": [ + "http://www.microsoft.com/" + ] +} \ No newline at end of file diff --git a/docs/ms-patent-promise-mono.LICENSE b/docs/ms-patent-promise-mono.LICENSE index e76e2a9fad..9bd623eacc 100644 --- a/docs/ms-patent-promise-mono.LICENSE +++ b/docs/ms-patent-promise-mono.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-patent-promise-mono +short_name: Microsoft Patent Promise for Mono +name: Microsoft Patent Promise for Mono +category: Patent License +owner: Microsoft +homepage_url: https://www.mono-project.com/docs/faq/licensing/ +spdx_license_key: LicenseRef-scancode-ms-patent-promise-mono +text_urls: + - https://github.com/mono/mono/blob/main/PATENTS.TXT +--- + Microsoft Patent Promise for Mono Microsoft Corporation and its affiliates (“Microsoft”) promise not to diff --git a/docs/ms-patent-promise-mono.html b/docs/ms-patent-promise-mono.html index d01dfa1205..62ba076aec 100644 --- a/docs/ms-patent-promise-mono.html +++ b/docs/ms-patent-promise-mono.html @@ -179,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-patent-promise-mono.json b/docs/ms-patent-promise-mono.json index ac5a27ac1c..e51c16c2f8 100644 --- a/docs/ms-patent-promise-mono.json +++ b/docs/ms-patent-promise-mono.json @@ -1 +1,12 @@ -{"key": "ms-patent-promise-mono", "short_name": "Microsoft Patent Promise for Mono", "name": "Microsoft Patent Promise for Mono", "category": "Patent License", "owner": "Microsoft", "homepage_url": "https://www.mono-project.com/docs/faq/licensing/", "spdx_license_key": "LicenseRef-scancode-ms-patent-promise-mono", "text_urls": ["https://github.com/mono/mono/blob/main/PATENTS.TXT"]} \ No newline at end of file +{ + "key": "ms-patent-promise-mono", + "short_name": "Microsoft Patent Promise for Mono", + "name": "Microsoft Patent Promise for Mono", + "category": "Patent License", + "owner": "Microsoft", + "homepage_url": "https://www.mono-project.com/docs/faq/licensing/", + "spdx_license_key": "LicenseRef-scancode-ms-patent-promise-mono", + "text_urls": [ + "https://github.com/mono/mono/blob/main/PATENTS.TXT" + ] +} \ No newline at end of file diff --git a/docs/ms-patent-promise.LICENSE b/docs/ms-patent-promise.LICENSE index 6d7348e3ce..6bb6507c84 100644 --- a/docs/ms-patent-promise.LICENSE +++ b/docs/ms-patent-promise.LICENSE @@ -1,3 +1,19 @@ +--- +key: ms-patent-promise +short_name: MS Patent Promise for .NET +name: Microsoft Patent Promise for .NET Libraries and Runtime Components +category: Patent License +owner: Microsoft +homepage_url: https://github.com/dotnet/corefx/blob/master/PATENTS.TXT +spdx_license_key: LicenseRef-scancode-ms-patent-promise +other_urls: + - https://techcrunch.com/2016/11/16/google-signs-on-to-the-net-foundation-and-samsung-brings-net-support-to-tizen/ +ignorable_urls: + - https://github.com/dotnet/coreclr + - https://github.com/dotnet/corefx + - https://github.com/dotnet/corert +--- + Microsoft Patent Promise for .NET Libraries and Runtime Components Microsoft Corporation and its affiliates ("Microsoft") promise not to assert diff --git a/docs/ms-patent-promise.html b/docs/ms-patent-promise.html index 776797d596..6239db8699 100644 --- a/docs/ms-patent-promise.html +++ b/docs/ms-patent-promise.html @@ -191,7 +191,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-patent-promise.json b/docs/ms-patent-promise.json index e7245a8a41..52ad850d7a 100644 --- a/docs/ms-patent-promise.json +++ b/docs/ms-patent-promise.json @@ -1 +1,17 @@ -{"key": "ms-patent-promise", "short_name": "MS Patent Promise for .NET", "name": "Microsoft Patent Promise for .NET Libraries and Runtime Components", "category": "Patent License", "owner": "Microsoft", "homepage_url": "https://github.com/dotnet/corefx/blob/master/PATENTS.TXT", "spdx_license_key": "LicenseRef-scancode-ms-patent-promise", "other_urls": ["https://techcrunch.com/2016/11/16/google-signs-on-to-the-net-foundation-and-samsung-brings-net-support-to-tizen/"], "ignorable_urls": ["https://github.com/dotnet/coreclr", "https://github.com/dotnet/corefx", "https://github.com/dotnet/corert"]} \ No newline at end of file +{ + "key": "ms-patent-promise", + "short_name": "MS Patent Promise for .NET", + "name": "Microsoft Patent Promise for .NET Libraries and Runtime Components", + "category": "Patent License", + "owner": "Microsoft", + "homepage_url": "https://github.com/dotnet/corefx/blob/master/PATENTS.TXT", + "spdx_license_key": "LicenseRef-scancode-ms-patent-promise", + "other_urls": [ + "https://techcrunch.com/2016/11/16/google-signs-on-to-the-net-foundation-and-samsung-brings-net-support-to-tizen/" + ], + "ignorable_urls": [ + "https://github.com/dotnet/coreclr", + "https://github.com/dotnet/corefx", + "https://github.com/dotnet/corert" + ] +} \ No newline at end of file diff --git a/docs/ms-permissive-1.1.LICENSE b/docs/ms-permissive-1.1.LICENSE index 7078d6335f..ae9dc3f466 100644 --- a/docs/ms-permissive-1.1.LICENSE +++ b/docs/ms-permissive-1.1.LICENSE @@ -1,3 +1,14 @@ +--- +key: ms-permissive-1.1 +is_deprecated: yes +short_name: MS-PL 1.1 +name: Microsoft Permissive License (MS-PL) v1.1 +category: Permissive +owner: Microsoft +homepage_url: https://web.archive.org/web/20180120185447/http://entlibcontrib.codeplex.com/license +notes: dupe of ms-pl +--- + Microsoft Permissive License (Ms-PL) v1.1 Microsoft Permissive License (Ms-PL) diff --git a/docs/ms-permissive-1.1.html b/docs/ms-permissive-1.1.html index 3e9f2aa53a..3f38de54a3 100644 --- a/docs/ms-permissive-1.1.html +++ b/docs/ms-permissive-1.1.html @@ -195,7 +195,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-permissive-1.1.json b/docs/ms-permissive-1.1.json index 5d483cd991..68d85e65aa 100644 --- a/docs/ms-permissive-1.1.json +++ b/docs/ms-permissive-1.1.json @@ -1 +1,10 @@ -{"key": "ms-permissive-1.1", "is_deprecated": true, "short_name": "MS-PL 1.1", "name": "Microsoft Permissive License (MS-PL) v1.1", "category": "Permissive", "owner": "Microsoft", "homepage_url": "https://web.archive.org/web/20180120185447/http://entlibcontrib.codeplex.com/license", "notes": "dupe of ms-pl"} \ No newline at end of file +{ + "key": "ms-permissive-1.1", + "is_deprecated": true, + "short_name": "MS-PL 1.1", + "name": "Microsoft Permissive License (MS-PL) v1.1", + "category": "Permissive", + "owner": "Microsoft", + "homepage_url": "https://web.archive.org/web/20180120185447/http://entlibcontrib.codeplex.com/license", + "notes": "dupe of ms-pl" +} \ No newline at end of file diff --git a/docs/ms-pl.LICENSE b/docs/ms-pl.LICENSE index e277d68e0f..08ead34014 100644 --- a/docs/ms-pl.LICENSE +++ b/docs/ms-pl.LICENSE @@ -1,3 +1,22 @@ +--- +key: ms-pl +short_name: MS-PL +name: Microsoft Public License +category: Permissive +owner: Microsoft +homepage_url: http://www.microsoft.com/opensource/licenses.mspx#Ms-PL +notes: also known as Microsoft Permissive License (Ms-PL) v1.1 +spdx_license_key: MS-PL +text_urls: + - http://www.microsoft.com/opensource/licenses.mspx#Ms-PL +osi_url: http://www.opensource.org/licenses/ms-pl.html +other_urls: + - http://www.microsoft.com/en-us/openness/licenses.aspx#MPL + - http://www.microsoft.com/opensource/licenses.mspx + - http://www.opensource.org/licenses/MS-PL + - https://opensource.org/licenses/MS-PL +--- + Microsoft Public License (Ms-PL) This license governs use of the accompanying software. If you use the software, diff --git a/docs/ms-pl.html b/docs/ms-pl.html index 53dbd18887..aef9b1b6df 100644 --- a/docs/ms-pl.html +++ b/docs/ms-pl.html @@ -218,7 +218,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-pl.json b/docs/ms-pl.json index 3b0b5b8576..5ca26cd1d1 100644 --- a/docs/ms-pl.json +++ b/docs/ms-pl.json @@ -1 +1,20 @@ -{"key": "ms-pl", "short_name": "MS-PL", "name": "Microsoft Public License", "category": "Permissive", "owner": "Microsoft", "homepage_url": "http://www.microsoft.com/opensource/licenses.mspx#Ms-PL", "notes": "also known as Microsoft Permissive License (Ms-PL) v1.1", "spdx_license_key": "MS-PL", "text_urls": ["http://www.microsoft.com/opensource/licenses.mspx#Ms-PL"], "osi_url": "http://www.opensource.org/licenses/ms-pl.html", "other_urls": ["http://www.microsoft.com/en-us/openness/licenses.aspx#MPL", "http://www.microsoft.com/opensource/licenses.mspx", "http://www.opensource.org/licenses/MS-PL", "https://opensource.org/licenses/MS-PL"]} \ No newline at end of file +{ + "key": "ms-pl", + "short_name": "MS-PL", + "name": "Microsoft Public License", + "category": "Permissive", + "owner": "Microsoft", + "homepage_url": "http://www.microsoft.com/opensource/licenses.mspx#Ms-PL", + "notes": "also known as Microsoft Permissive License (Ms-PL) v1.1", + "spdx_license_key": "MS-PL", + "text_urls": [ + "http://www.microsoft.com/opensource/licenses.mspx#Ms-PL" + ], + "osi_url": "http://www.opensource.org/licenses/ms-pl.html", + "other_urls": [ + "http://www.microsoft.com/en-us/openness/licenses.aspx#MPL", + "http://www.microsoft.com/opensource/licenses.mspx", + "http://www.opensource.org/licenses/MS-PL", + "https://opensource.org/licenses/MS-PL" + ] +} \ No newline at end of file diff --git a/docs/ms-platform-sdk.LICENSE b/docs/ms-platform-sdk.LICENSE index de6d0f1b40..1aad3b66d9 100644 --- a/docs/ms-platform-sdk.LICENSE +++ b/docs/ms-platform-sdk.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-platform-sdk +short_name: MS Platform SDK License +name: Microsoft Platform SDK License +category: Commercial +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-platform-sdk +ignorable_copyrights: + - Copyright (c) 1999-2002 Microsoft Corporation +ignorable_holders: + - Microsoft Corporation +ignorable_urls: + - http://www.microsoft.com/exporting/ +--- + Microsoft Platform SDK License END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE MICROSOFT PLATFORM SOFTWARE DEVELOPMENT KIT diff --git a/docs/ms-platform-sdk.html b/docs/ms-platform-sdk.html index 63fe01fc67..195f6d8ed6 100644 --- a/docs/ms-platform-sdk.html +++ b/docs/ms-platform-sdk.html @@ -221,7 +221,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-platform-sdk.json b/docs/ms-platform-sdk.json index 8bc8034a50..a4201ec6ca 100644 --- a/docs/ms-platform-sdk.json +++ b/docs/ms-platform-sdk.json @@ -1 +1,17 @@ -{"key": "ms-platform-sdk", "short_name": "MS Platform SDK License", "name": "Microsoft Platform SDK License", "category": "Commercial", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-platform-sdk", "ignorable_copyrights": ["Copyright (c) 1999-2002 Microsoft Corporation"], "ignorable_holders": ["Microsoft Corporation"], "ignorable_urls": ["http://www.microsoft.com/exporting/"]} \ No newline at end of file +{ + "key": "ms-platform-sdk", + "short_name": "MS Platform SDK License", + "name": "Microsoft Platform SDK License", + "category": "Commercial", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-platform-sdk", + "ignorable_copyrights": [ + "Copyright (c) 1999-2002 Microsoft Corporation" + ], + "ignorable_holders": [ + "Microsoft Corporation" + ], + "ignorable_urls": [ + "http://www.microsoft.com/exporting/" + ] +} \ No newline at end of file diff --git a/docs/ms-programsynthesis-7.22.0.LICENSE b/docs/ms-programsynthesis-7.22.0.LICENSE index d1bc67ca66..c878aed1ac 100644 --- a/docs/ms-programsynthesis-7.22.0.LICENSE +++ b/docs/ms-programsynthesis-7.22.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-programsynthesis-7.22.0 +short_name: MS ProgramSynthesis 7.22.0 +name: Microsoft ProgramSynthesis 7.22.0 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.nuget.org/packages/Microsoft.ProgramSynthesis/7.22.0/License +spdx_license_key: LicenseRef-scancode-ms-programsynthesis-7.22.0 +ignorable_urls: + - http://aka.ms/exporting + - https://go.microsoft.com/fwlink/?LinkId=521839 +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT PROGRAM SYNTHESIS USING EXAMPLES diff --git a/docs/ms-programsynthesis-7.22.0.html b/docs/ms-programsynthesis-7.22.0.html index 40b7e31f87..161502c491 100644 --- a/docs/ms-programsynthesis-7.22.0.html +++ b/docs/ms-programsynthesis-7.22.0.html @@ -199,7 +199,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-programsynthesis-7.22.0.json b/docs/ms-programsynthesis-7.22.0.json index 006ebad452..e533cbc4fa 100644 --- a/docs/ms-programsynthesis-7.22.0.json +++ b/docs/ms-programsynthesis-7.22.0.json @@ -1 +1,13 @@ -{"key": "ms-programsynthesis-7.22.0", "short_name": "MS ProgramSynthesis 7.22.0", "name": "Microsoft ProgramSynthesis 7.22.0", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://www.nuget.org/packages/Microsoft.ProgramSynthesis/7.22.0/License", "spdx_license_key": "LicenseRef-scancode-ms-programsynthesis-7.22.0", "ignorable_urls": ["http://aka.ms/exporting", "https://go.microsoft.com/fwlink/?LinkId=521839"]} \ No newline at end of file +{ + "key": "ms-programsynthesis-7.22.0", + "short_name": "MS ProgramSynthesis 7.22.0", + "name": "Microsoft ProgramSynthesis 7.22.0", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://www.nuget.org/packages/Microsoft.ProgramSynthesis/7.22.0/License", + "spdx_license_key": "LicenseRef-scancode-ms-programsynthesis-7.22.0", + "ignorable_urls": [ + "http://aka.ms/exporting", + "https://go.microsoft.com/fwlink/?LinkId=521839" + ] +} \ No newline at end of file diff --git a/docs/ms-python-vscode-pylance-2021.LICENSE b/docs/ms-python-vscode-pylance-2021.LICENSE index 66ff9a3e85..dc452ee664 100644 --- a/docs/ms-python-vscode-pylance-2021.LICENSE +++ b/docs/ms-python-vscode-pylance-2021.LICENSE @@ -1,3 +1,20 @@ +--- +key: ms-python-vscode-pylance-2021 +short_name: MS Pylance Extension for VSCode License +name: Microsoft Pylance Extension for Visual Studio Code License +category: Commercial +owner: Microsoft +homepage_url: https://marketplace.visualstudio.com/items/ms-python.vscode-pylance/license +spdx_license_key: LicenseRef-scancode-ms-python-vscode-pylance-2021 +faq_url: https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance +other_urls: + - https://github.com/microsoft/pyright +ignorable_urls: + - https://aka.ms/exporting + - https://aka.ms/privacy + - https://docs.microsoft.com/en-us/legal/gdpr +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT PYLANCE EXTENSION FOR VISUAL STUDIO CODE These license terms are an agreement between you and Microsoft Corporation (or one of its affiliates). They apply to the software named above and any Microsoft services or software updates (except to the extent such services or updates are accompanied by new or additional terms, in which case those different terms apply prospectively and do not alter your or Microsoft’s rights relating to pre-updated software or services). IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. diff --git a/docs/ms-python-vscode-pylance-2021.html b/docs/ms-python-vscode-pylance-2021.html index 76df15040e..53cfb4c466 100644 --- a/docs/ms-python-vscode-pylance-2021.html +++ b/docs/ms-python-vscode-pylance-2021.html @@ -191,7 +191,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-python-vscode-pylance-2021.json b/docs/ms-python-vscode-pylance-2021.json index de1c13a2f2..5b4fabd999 100644 --- a/docs/ms-python-vscode-pylance-2021.json +++ b/docs/ms-python-vscode-pylance-2021.json @@ -1 +1,18 @@ -{"key": "ms-python-vscode-pylance-2021", "short_name": "MS Pylance Extension for VSCode License", "name": "Microsoft Pylance Extension for Visual Studio Code License", "category": "Commercial", "owner": "Microsoft", "homepage_url": "https://marketplace.visualstudio.com/items/ms-python.vscode-pylance/license", "spdx_license_key": "LicenseRef-scancode-ms-python-vscode-pylance-2021", "faq_url": "https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance", "other_urls": ["https://github.com/microsoft/pyright"], "ignorable_urls": ["https://aka.ms/exporting", "https://aka.ms/privacy", "https://docs.microsoft.com/en-us/legal/gdpr"]} \ No newline at end of file +{ + "key": "ms-python-vscode-pylance-2021", + "short_name": "MS Pylance Extension for VSCode License", + "name": "Microsoft Pylance Extension for Visual Studio Code License", + "category": "Commercial", + "owner": "Microsoft", + "homepage_url": "https://marketplace.visualstudio.com/items/ms-python.vscode-pylance/license", + "spdx_license_key": "LicenseRef-scancode-ms-python-vscode-pylance-2021", + "faq_url": "https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance", + "other_urls": [ + "https://github.com/microsoft/pyright" + ], + "ignorable_urls": [ + "https://aka.ms/exporting", + "https://aka.ms/privacy", + "https://docs.microsoft.com/en-us/legal/gdpr" + ] +} \ No newline at end of file diff --git a/docs/ms-reactive-extensions-eula.LICENSE b/docs/ms-reactive-extensions-eula.LICENSE index a9be6fc369..5371cdf57d 100644 --- a/docs/ms-reactive-extensions-eula.LICENSE +++ b/docs/ms-reactive-extensions-eula.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-reactive-extensions-eula +short_name: MS Reactive Extensions EULA +name: Microsoft Reactive Extensions EULA +category: Proprietary Free +owner: Microsoft +homepage_url: https://msdn.microsoft.com/en-us/hh295787 +spdx_license_key: LicenseRef-scancode-ms-reactive-extensions-eula +ignorable_urls: + - http://www.microsoft.com/exporting +--- + Reactive Extensions Eula To download the file you must agree to the following license: diff --git a/docs/ms-reactive-extensions-eula.html b/docs/ms-reactive-extensions-eula.html index cbb4983f0b..91f70e90c2 100644 --- a/docs/ms-reactive-extensions-eula.html +++ b/docs/ms-reactive-extensions-eula.html @@ -208,7 +208,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-reactive-extensions-eula.json b/docs/ms-reactive-extensions-eula.json index e14d17997e..38972477ed 100644 --- a/docs/ms-reactive-extensions-eula.json +++ b/docs/ms-reactive-extensions-eula.json @@ -1 +1,12 @@ -{"key": "ms-reactive-extensions-eula", "short_name": "MS Reactive Extensions EULA", "name": "Microsoft Reactive Extensions EULA", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://msdn.microsoft.com/en-us/hh295787", "spdx_license_key": "LicenseRef-scancode-ms-reactive-extensions-eula", "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-reactive-extensions-eula", + "short_name": "MS Reactive Extensions EULA", + "name": "Microsoft Reactive Extensions EULA", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://msdn.microsoft.com/en-us/hh295787", + "spdx_license_key": "LicenseRef-scancode-ms-reactive-extensions-eula", + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-refl.LICENSE b/docs/ms-refl.LICENSE index e69de29bb2..e9a0073396 100644 --- a/docs/ms-refl.LICENSE +++ b/docs/ms-refl.LICENSE @@ -0,0 +1,36 @@ +--- +key: ms-refl +is_deprecated: yes +short_name: MS Reference License +name: Microsoft Reference License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/resources/sharedsource/licensingbasics/referencelicense.mspx +notes: duplicate of ms-rsl +--- + +This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. + +1. Definitions +The terms "reproduce," "reproduction" and "distribution" have the same meaning here as under U.S. copyright law. + +"You" means the licensee of the software. + +"Your company" means the company you worked for when you downloaded the software. + +"Reference use" means use of the software within your company as a reference, in read only form, for the sole purposes of debugging your products, maintaining your products, or enhancing the interoperability of your products with the software, and specifically excludes the right to distribute the software outside of your company. + +"Licensed patents" means any Licensor patent claims which read directly on the software as distributed by the Licensor under this license. + +2. Grant of Rights +(A) Copyright Grant- Subject to the terms of this license, the Licensor grants you a non-transferable, non-exclusive, worldwide, royalty-free copyright license to reproduce the software for reference use. + +(B) Patent Grant- Subject to the terms of this license, the Licensor grants you a non-transferable, non-exclusive, worldwide, royalty-free patent license under licensed patents for reference use. + +3. Limitations +(A) No Trademark License- This license does not grant you any rights to use the Licensor's name, + logo, or trademarks. + +(B) If you begin patent litigation against the Licensor over patents that you think may apply to the software (including a cross-claim or counterclaim in a lawsuit), your license to the software ends automatically. + +(C) The software is licensed "as-is." You bear the risk of using it. The Licensor gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the Licensor excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. \ No newline at end of file diff --git a/docs/ms-refl.html b/docs/ms-refl.html index 181c700468..37edffdc7b 100644 --- a/docs/ms-refl.html +++ b/docs/ms-refl.html @@ -122,7 +122,31 @@
license_text
-
+
This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software.
+
+1. Definitions
+The terms "reproduce," "reproduction" and "distribution" have the same meaning here as under U.S. copyright law.
+
+"You" means the licensee of the software.
+
+"Your company" means the company you worked for when you downloaded the software.
+
+"Reference use" means use of the software within your company as a reference, in read only form, for the sole purposes of debugging your products, maintaining your products, or enhancing the interoperability of your products with the software, and specifically excludes the right to distribute the software outside of your company.
+
+"Licensed patents" means any Licensor patent claims which read directly on the software as distributed by the Licensor under this license.
+
+2. Grant of Rights
+(A) Copyright Grant- Subject to the terms of this license, the Licensor grants you a non-transferable, non-exclusive, worldwide, royalty-free copyright license to reproduce the software for reference use.
+
+(B) Patent Grant- Subject to the terms of this license, the Licensor grants you a non-transferable, non-exclusive, worldwide, royalty-free patent license under licensed patents for reference use.
+
+3. Limitations
+(A) No Trademark License- This license does not grant you any rights to use the Licensor's name,
+    logo, or trademarks.
+
+(B) If you begin patent litigation against the Licensor over patents that you think may apply to the software (including a cross-claim or counterclaim in a lawsuit), your license to the software ends automatically.
+
+(C) The software is licensed "as-is." You bear the risk of using it. The Licensor gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the Licensor excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.
@@ -134,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-refl.json b/docs/ms-refl.json index d62f789cd5..7cfae69da6 100644 --- a/docs/ms-refl.json +++ b/docs/ms-refl.json @@ -1 +1,10 @@ -{"key": "ms-refl", "is_deprecated": true, "short_name": "MS Reference License", "name": "Microsoft Reference License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://www.microsoft.com/resources/sharedsource/licensingbasics/referencelicense.mspx", "notes": "duplicate of ms-rsl"} \ No newline at end of file +{ + "key": "ms-refl", + "is_deprecated": true, + "short_name": "MS Reference License", + "name": "Microsoft Reference License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://www.microsoft.com/resources/sharedsource/licensingbasics/referencelicense.mspx", + "notes": "duplicate of ms-rsl" +} \ No newline at end of file diff --git a/docs/ms-remote-ndis-usb-kit.LICENSE b/docs/ms-remote-ndis-usb-kit.LICENSE index 0edb92bb9a..245cc2974b 100644 --- a/docs/ms-remote-ndis-usb-kit.LICENSE +++ b/docs/ms-remote-ndis-usb-kit.LICENSE @@ -1,3 +1,14 @@ +--- +key: ms-remote-ndis-usb-kit +short_name: MS Remote NDIS USB Kit EULA +name: Microsoft Remote NDIS USB Kit EULA +category: Commercial +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-remote-ndis-usb-kit +ignorable_urls: + - http://www.microsoft.com/exporting +--- + Microsoft Remote NDIS USB Kit EULA MICROSOFT REMOTE NDIS USB KIT END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE diff --git a/docs/ms-remote-ndis-usb-kit.html b/docs/ms-remote-ndis-usb-kit.html index e49b90c8f9..e689b1490c 100644 --- a/docs/ms-remote-ndis-usb-kit.html +++ b/docs/ms-remote-ndis-usb-kit.html @@ -333,7 +333,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-remote-ndis-usb-kit.json b/docs/ms-remote-ndis-usb-kit.json index 84c5c4dd05..5a5521509c 100644 --- a/docs/ms-remote-ndis-usb-kit.json +++ b/docs/ms-remote-ndis-usb-kit.json @@ -1 +1,11 @@ -{"key": "ms-remote-ndis-usb-kit", "short_name": "MS Remote NDIS USB Kit EULA", "name": "Microsoft Remote NDIS USB Kit EULA", "category": "Commercial", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-remote-ndis-usb-kit", "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-remote-ndis-usb-kit", + "short_name": "MS Remote NDIS USB Kit EULA", + "name": "Microsoft Remote NDIS USB Kit EULA", + "category": "Commercial", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-remote-ndis-usb-kit", + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-research-shared-source.LICENSE b/docs/ms-research-shared-source.LICENSE index e233bccfd5..65fed2ec89 100644 --- a/docs/ms-research-shared-source.LICENSE +++ b/docs/ms-research-shared-source.LICENSE @@ -1,3 +1,21 @@ +--- +key: ms-research-shared-source +short_name: MS Research Shared Source License +name: Microsoft Research Shared Source License +category: Proprietary Free +owner: Microsoft +homepage_url: http://research.microsoft.com/downloads +spdx_license_key: LicenseRef-scancode-ms-research-shared-source +other_urls: + - http://research.microsoft.com/downloads +ignorable_copyrights: + - Copyright (c) Microsoft Corporation +ignorable_holders: + - Microsoft Corporation +ignorable_urls: + - http://research.microsoft.com/downloads +--- + Microsoft Research Shared diff --git a/docs/ms-research-shared-source.html b/docs/ms-research-shared-source.html index 7fc4d42040..b39cdef3cc 100644 --- a/docs/ms-research-shared-source.html +++ b/docs/ms-research-shared-source.html @@ -210,7 +210,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-research-shared-source.json b/docs/ms-research-shared-source.json index f0d3ffd71a..a244f50713 100644 --- a/docs/ms-research-shared-source.json +++ b/docs/ms-research-shared-source.json @@ -1 +1,21 @@ -{"key": "ms-research-shared-source", "short_name": "MS Research Shared Source License", "name": "Microsoft Research Shared Source License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://research.microsoft.com/downloads", "spdx_license_key": "LicenseRef-scancode-ms-research-shared-source", "other_urls": ["http://research.microsoft.com/downloads"], "ignorable_copyrights": ["Copyright (c) Microsoft Corporation"], "ignorable_holders": ["Microsoft Corporation"], "ignorable_urls": ["http://research.microsoft.com/downloads"]} \ No newline at end of file +{ + "key": "ms-research-shared-source", + "short_name": "MS Research Shared Source License", + "name": "Microsoft Research Shared Source License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://research.microsoft.com/downloads", + "spdx_license_key": "LicenseRef-scancode-ms-research-shared-source", + "other_urls": [ + "http://research.microsoft.com/downloads" + ], + "ignorable_copyrights": [ + "Copyright (c) Microsoft Corporation" + ], + "ignorable_holders": [ + "Microsoft Corporation" + ], + "ignorable_urls": [ + "http://research.microsoft.com/downloads" + ] +} \ No newline at end of file diff --git a/docs/ms-rl.LICENSE b/docs/ms-rl.LICENSE index ca60475a79..904a47d537 100644 --- a/docs/ms-rl.LICENSE +++ b/docs/ms-rl.LICENSE @@ -1,3 +1,22 @@ +--- +key: ms-rl +short_name: MS-RL +name: Microsoft Reciprocal License +category: Copyleft Limited +owner: Microsoft +homepage_url: http://www.microsoft.com/opensource/licenses.mspx#Ms-RL +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: MS-RL +text_urls: + - http://www.microsoft.com/opensource/licenses.mspx#Ms-RL +osi_url: http://www.opensource.org/licenses/ms-rl.html +other_urls: + - http://www.microsoft.com/en-us/openness/licenses.aspx#MRL + - http://www.microsoft.com/opensource/licenses.mspx + - http://www.opensource.org/licenses/MS-RL + - https://opensource.org/licenses/MS-RL +--- + Microsoft Reciprocal License (Ms-RL) This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. diff --git a/docs/ms-rl.html b/docs/ms-rl.html index 0ad9c085a5..edbbbad4a0 100644 --- a/docs/ms-rl.html +++ b/docs/ms-rl.html @@ -179,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-rl.json b/docs/ms-rl.json index d745a6344e..90cdd8a7f4 100644 --- a/docs/ms-rl.json +++ b/docs/ms-rl.json @@ -1 +1,20 @@ -{"key": "ms-rl", "short_name": "MS-RL", "name": "Microsoft Reciprocal License", "category": "Copyleft Limited", "owner": "Microsoft", "homepage_url": "http://www.microsoft.com/opensource/licenses.mspx#Ms-RL", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "MS-RL", "text_urls": ["http://www.microsoft.com/opensource/licenses.mspx#Ms-RL"], "osi_url": "http://www.opensource.org/licenses/ms-rl.html", "other_urls": ["http://www.microsoft.com/en-us/openness/licenses.aspx#MRL", "http://www.microsoft.com/opensource/licenses.mspx", "http://www.opensource.org/licenses/MS-RL", "https://opensource.org/licenses/MS-RL"]} \ No newline at end of file +{ + "key": "ms-rl", + "short_name": "MS-RL", + "name": "Microsoft Reciprocal License", + "category": "Copyleft Limited", + "owner": "Microsoft", + "homepage_url": "http://www.microsoft.com/opensource/licenses.mspx#Ms-RL", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "MS-RL", + "text_urls": [ + "http://www.microsoft.com/opensource/licenses.mspx#Ms-RL" + ], + "osi_url": "http://www.opensource.org/licenses/ms-rl.html", + "other_urls": [ + "http://www.microsoft.com/en-us/openness/licenses.aspx#MRL", + "http://www.microsoft.com/opensource/licenses.mspx", + "http://www.opensource.org/licenses/MS-RL", + "https://opensource.org/licenses/MS-RL" + ] +} \ No newline at end of file diff --git a/docs/ms-rsl.LICENSE b/docs/ms-rsl.LICENSE index d39b120033..f5056d29f5 100644 --- a/docs/ms-rsl.LICENSE +++ b/docs/ms-rsl.LICENSE @@ -1,3 +1,19 @@ +--- +key: ms-rsl +short_name: MS Reference Source License +name: Microsoft Reference Source License +category: Proprietary Free +owner: Microsoft +homepage_url: http://referencesource.microsoft.com/license.html +notes: "This is a rarely seen license. It was used shortly in 2005/2007 with the release of\n\ + some .Net code. There are two versions one published in 2006 and this\nversion from March\ + \ 2007 . It is sometimes named Microsoft Reference License (Ms-RL)\nwith the exact same\ + \ text. \n" +spdx_license_key: LicenseRef-scancode-ms-rsl +text_urls: + - http://www.microsoft.com/resources/sharedsource/referencesourcelicense.mspx +--- + This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. 1. Definitions diff --git a/docs/ms-rsl.html b/docs/ms-rsl.html index 45ffae4e86..b471a226a4 100644 --- a/docs/ms-rsl.html +++ b/docs/ms-rsl.html @@ -171,7 +171,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-rsl.json b/docs/ms-rsl.json index 09607701d4..5f6879610f 100644 --- a/docs/ms-rsl.json +++ b/docs/ms-rsl.json @@ -1 +1,13 @@ -{"key": "ms-rsl", "short_name": "MS Reference Source License", "name": "Microsoft Reference Source License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://referencesource.microsoft.com/license.html", "notes": "This is a rarely seen license. It was used shortly in 2005/2007 with the release of\nsome .Net code. There are two versions one published in 2006 and this\nversion from March 2007 . It is sometimes named Microsoft Reference License (Ms-RL)\nwith the exact same text. \n", "spdx_license_key": "LicenseRef-scancode-ms-rsl", "text_urls": ["http://www.microsoft.com/resources/sharedsource/referencesourcelicense.mspx"]} \ No newline at end of file +{ + "key": "ms-rsl", + "short_name": "MS Reference Source License", + "name": "Microsoft Reference Source License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://referencesource.microsoft.com/license.html", + "notes": "This is a rarely seen license. It was used shortly in 2005/2007 with the release of\nsome .Net code. There are two versions one published in 2006 and this\nversion from March 2007 . It is sometimes named Microsoft Reference License (Ms-RL)\nwith the exact same text. \n", + "spdx_license_key": "LicenseRef-scancode-ms-rsl", + "text_urls": [ + "http://www.microsoft.com/resources/sharedsource/referencesourcelicense.mspx" + ] +} \ No newline at end of file diff --git a/docs/ms-silverlight-3.LICENSE b/docs/ms-silverlight-3.LICENSE index 5c1ca98619..586f3fed63 100644 --- a/docs/ms-silverlight-3.LICENSE +++ b/docs/ms-silverlight-3.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-silverlight-3 +short_name: MS Silverlight 3 License +name: Microsoft Silverlight 3 License +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-silverlight-3 +ignorable_urls: + - http://www.microsoft.com/exporting + - http://www.mpegla.com/ + - http://www.support.microsoft.com/common/international.aspx +--- + MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS MICROSOFT SILVERLIGHT 3 TOOLS FOR VISUAL STUDIO 2008, Service Pack 1 @@ -144,4 +157,4 @@ b. Outside the United States. If you acquired the software in any other country, This limitation applies to · anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and · claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. -It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. \ No newline at end of file diff --git a/docs/ms-silverlight-3.html b/docs/ms-silverlight-3.html index 0d9a761505..e46283afde 100644 --- a/docs/ms-silverlight-3.html +++ b/docs/ms-silverlight-3.html @@ -263,8 +263,7 @@ This limitation applies to · anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and · claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. -It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. - +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.
@@ -276,7 +275,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-silverlight-3.json b/docs/ms-silverlight-3.json index 8b7978d1b8..40e34f3fd4 100644 --- a/docs/ms-silverlight-3.json +++ b/docs/ms-silverlight-3.json @@ -1 +1,13 @@ -{"key": "ms-silverlight-3", "short_name": "MS Silverlight 3 License", "name": "Microsoft Silverlight 3 License", "category": "Proprietary Free", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-silverlight-3", "ignorable_urls": ["http://www.microsoft.com/exporting", "http://www.mpegla.com/", "http://www.support.microsoft.com/common/international.aspx"]} \ No newline at end of file +{ + "key": "ms-silverlight-3", + "short_name": "MS Silverlight 3 License", + "name": "Microsoft Silverlight 3 License", + "category": "Proprietary Free", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-silverlight-3", + "ignorable_urls": [ + "http://www.microsoft.com/exporting", + "http://www.mpegla.com/", + "http://www.support.microsoft.com/common/international.aspx" + ] +} \ No newline at end of file diff --git a/docs/ms-sql-server-compact-4.0.LICENSE b/docs/ms-sql-server-compact-4.0.LICENSE index cc4a712a78..387532f037 100644 --- a/docs/ms-sql-server-compact-4.0.LICENSE +++ b/docs/ms-sql-server-compact-4.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-sql-server-compact-4.0 +short_name: MS SQL Server Compact 4.0 License +name: Microsoft SQL Server Compact 4.0 License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/SQLCE_EULA_ENU.rtf +spdx_license_key: LicenseRef-scancode-ms-sql-server-compact-4.0 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT SQL SERVER COMPACT 4.0 diff --git a/docs/ms-sql-server-compact-4.0.html b/docs/ms-sql-server-compact-4.0.html index cd6d3beca1..edda4ccdee 100644 --- a/docs/ms-sql-server-compact-4.0.html +++ b/docs/ms-sql-server-compact-4.0.html @@ -211,7 +211,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-sql-server-compact-4.0.json b/docs/ms-sql-server-compact-4.0.json index 3d050e9026..3b05e20720 100644 --- a/docs/ms-sql-server-compact-4.0.json +++ b/docs/ms-sql-server-compact-4.0.json @@ -1 +1,12 @@ -{"key": "ms-sql-server-compact-4.0", "short_name": "MS SQL Server Compact 4.0 License", "name": "Microsoft SQL Server Compact 4.0 License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://www.microsoft.com/web/webpi/eula/SQLCE_EULA_ENU.rtf", "spdx_license_key": "LicenseRef-scancode-ms-sql-server-compact-4.0", "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-sql-server-compact-4.0", + "short_name": "MS SQL Server Compact 4.0 License", + "name": "Microsoft SQL Server Compact 4.0 License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://www.microsoft.com/web/webpi/eula/SQLCE_EULA_ENU.rtf", + "spdx_license_key": "LicenseRef-scancode-ms-sql-server-compact-4.0", + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-sql-server-data-tools.LICENSE b/docs/ms-sql-server-data-tools.LICENSE index a1738ebba2..45f4116783 100644 --- a/docs/ms-sql-server-data-tools.LICENSE +++ b/docs/ms-sql-server-data-tools.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-sql-server-data-tools +short_name: MS SQL Server Data Tools License +name: Microsoft SQL Server Data Tools License +category: Proprietary Free +owner: Microsoft +homepage_url: https://docs.microsoft.com/en-us/sql/ssdt/sql-server-data-tools-license-terms +spdx_license_key: LicenseRef-scancode-ms-sql-server-data-tools +ignorable_urls: + - http://go.microsoft.com/?linkid=9710837 + - http://go.microsoft.com/fwlink/?LinkID=248686 + - http://www.microsoft.com/exporting +--- + SQL Server Data Tools - License Terms MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT SQL SERVER DATA TOOLS diff --git a/docs/ms-sql-server-data-tools.html b/docs/ms-sql-server-data-tools.html index 23cdd81a0c..a7a5ddcd10 100644 --- a/docs/ms-sql-server-data-tools.html +++ b/docs/ms-sql-server-data-tools.html @@ -283,7 +283,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-sql-server-data-tools.json b/docs/ms-sql-server-data-tools.json index 7158df8f24..aa164fa2e4 100644 --- a/docs/ms-sql-server-data-tools.json +++ b/docs/ms-sql-server-data-tools.json @@ -1 +1,14 @@ -{"key": "ms-sql-server-data-tools", "short_name": "MS SQL Server Data Tools License", "name": "Microsoft SQL Server Data Tools License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://docs.microsoft.com/en-us/sql/ssdt/sql-server-data-tools-license-terms", "spdx_license_key": "LicenseRef-scancode-ms-sql-server-data-tools", "ignorable_urls": ["http://go.microsoft.com/?linkid=9710837", "http://go.microsoft.com/fwlink/?LinkID=248686", "http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-sql-server-data-tools", + "short_name": "MS SQL Server Data Tools License", + "name": "Microsoft SQL Server Data Tools License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://docs.microsoft.com/en-us/sql/ssdt/sql-server-data-tools-license-terms", + "spdx_license_key": "LicenseRef-scancode-ms-sql-server-data-tools", + "ignorable_urls": [ + "http://go.microsoft.com/?linkid=9710837", + "http://go.microsoft.com/fwlink/?LinkID=248686", + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-sspl.LICENSE b/docs/ms-sspl.LICENSE index fc0e4d1639..91e4c3387c 100644 --- a/docs/ms-sspl.LICENSE +++ b/docs/ms-sspl.LICENSE @@ -1,3 +1,12 @@ +--- +key: ms-sspl +short_name: MS-SS-PL +name: Microsoft Shared Source Permissive License (SS-PL) +category: Permissive +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-sspl +--- + Microsoft Shared Source Permissive License (SS-PL) Published: October 18, 2005 diff --git a/docs/ms-sspl.html b/docs/ms-sspl.html index fcd2259fe8..f1701373c8 100644 --- a/docs/ms-sspl.html +++ b/docs/ms-sspl.html @@ -149,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-sspl.json b/docs/ms-sspl.json index 3a377a0973..f03f8cf077 100644 --- a/docs/ms-sspl.json +++ b/docs/ms-sspl.json @@ -1 +1,8 @@ -{"key": "ms-sspl", "short_name": "MS-SS-PL", "name": "Microsoft Shared Source Permissive License (SS-PL)", "category": "Permissive", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-sspl"} \ No newline at end of file +{ + "key": "ms-sspl", + "short_name": "MS-SS-PL", + "name": "Microsoft Shared Source Permissive License (SS-PL)", + "category": "Permissive", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-sspl" +} \ No newline at end of file diff --git a/docs/ms-sysinternals-sla.LICENSE b/docs/ms-sysinternals-sla.LICENSE index eece5a239e..a3be4e88d8 100644 --- a/docs/ms-sysinternals-sla.LICENSE +++ b/docs/ms-sysinternals-sla.LICENSE @@ -1,3 +1,14 @@ +--- +key: ms-sysinternals-sla +short_name: MS Sysinternals SLA +name: Microsoft Sysinternals Software License Terms +category: Commercial +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-sysinternals-sla +ignorable_urls: + - http://www.microsoft.com/exporting +--- + Sysinternals Software License Terms 09/27/2009 diff --git a/docs/ms-sysinternals-sla.html b/docs/ms-sysinternals-sla.html index 1334a19d9d..1315d94acf 100644 --- a/docs/ms-sysinternals-sla.html +++ b/docs/ms-sysinternals-sla.html @@ -223,7 +223,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-sysinternals-sla.json b/docs/ms-sysinternals-sla.json index 140a8a8123..953cbecd26 100644 --- a/docs/ms-sysinternals-sla.json +++ b/docs/ms-sysinternals-sla.json @@ -1 +1,11 @@ -{"key": "ms-sysinternals-sla", "short_name": "MS Sysinternals SLA", "name": "Microsoft Sysinternals Software License Terms", "category": "Commercial", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-sysinternals-sla", "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-sysinternals-sla", + "short_name": "MS Sysinternals SLA", + "name": "Microsoft Sysinternals Software License Terms", + "category": "Commercial", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-sysinternals-sla", + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-testplatform-17.0.0.LICENSE b/docs/ms-testplatform-17.0.0.LICENSE index 7eeaac753d..90c4cf4ba4 100644 --- a/docs/ms-testplatform-17.0.0.LICENSE +++ b/docs/ms-testplatform-17.0.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-testplatform-17.0.0 +short_name: MS TestPlatform 17.0.0 +name: Microsoft Visual Studio TestPlatform 17.0.0 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.nuget.org/packages/Microsoft.TestPlatform/17.0.0/license +spdx_license_key: LicenseRef-scancode-ms-testplatform-17.0.0 +ignorable_urls: + - http://www.microsoft.com/exporting + - https://go.microsoft.com/fwlink/?LinkId=521839 +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL STUDIO TEST PLATFORM diff --git a/docs/ms-testplatform-17.0.0.html b/docs/ms-testplatform-17.0.0.html index d734af98fa..e811f8732c 100644 --- a/docs/ms-testplatform-17.0.0.html +++ b/docs/ms-testplatform-17.0.0.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-testplatform-17.0.0.json b/docs/ms-testplatform-17.0.0.json index a869554e44..f1bf67b433 100644 --- a/docs/ms-testplatform-17.0.0.json +++ b/docs/ms-testplatform-17.0.0.json @@ -1 +1,13 @@ -{"key": "ms-testplatform-17.0.0", "short_name": "MS TestPlatform 17.0.0", "name": "Microsoft Visual Studio TestPlatform 17.0.0", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://www.nuget.org/packages/Microsoft.TestPlatform/17.0.0/license", "spdx_license_key": "LicenseRef-scancode-ms-testplatform-17.0.0", "ignorable_urls": ["http://www.microsoft.com/exporting", "https://go.microsoft.com/fwlink/?LinkId=521839"]} \ No newline at end of file +{ + "key": "ms-testplatform-17.0.0", + "short_name": "MS TestPlatform 17.0.0", + "name": "Microsoft Visual Studio TestPlatform 17.0.0", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://www.nuget.org/packages/Microsoft.TestPlatform/17.0.0/license", + "spdx_license_key": "LicenseRef-scancode-ms-testplatform-17.0.0", + "ignorable_urls": [ + "http://www.microsoft.com/exporting", + "https://go.microsoft.com/fwlink/?LinkId=521839" + ] +} \ No newline at end of file diff --git a/docs/ms-ttf-eula.LICENSE b/docs/ms-ttf-eula.LICENSE index 856623cc94..d4eb3e945a 100644 --- a/docs/ms-ttf-eula.LICENSE +++ b/docs/ms-ttf-eula.LICENSE @@ -1,3 +1,12 @@ +--- +key: ms-ttf-eula +short_name: MS TrueType Fonts EULA +name: Microsoft TrueType Fonts EULA +category: Commercial +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-ttf-eula +--- + Microsoft TrueType Fonts END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE --------------------------------------------------- diff --git a/docs/ms-ttf-eula.html b/docs/ms-ttf-eula.html index aa40e2e210..eff73df0e2 100644 --- a/docs/ms-ttf-eula.html +++ b/docs/ms-ttf-eula.html @@ -146,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-ttf-eula.json b/docs/ms-ttf-eula.json index a169ad3429..53dd619cf4 100644 --- a/docs/ms-ttf-eula.json +++ b/docs/ms-ttf-eula.json @@ -1 +1,8 @@ -{"key": "ms-ttf-eula", "short_name": "MS TrueType Fonts EULA", "name": "Microsoft TrueType Fonts EULA", "category": "Commercial", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-ttf-eula"} \ No newline at end of file +{ + "key": "ms-ttf-eula", + "short_name": "MS TrueType Fonts EULA", + "name": "Microsoft TrueType Fonts EULA", + "category": "Commercial", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-ttf-eula" +} \ No newline at end of file diff --git a/docs/ms-typescript-msbuild-4.1.4.LICENSE b/docs/ms-typescript-msbuild-4.1.4.LICENSE index d5ec8e7b99..85af919e7e 100644 --- a/docs/ms-typescript-msbuild-4.1.4.LICENSE +++ b/docs/ms-typescript-msbuild-4.1.4.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-typescript-msbuild-4.1.4 +short_name: MS TypeScript MSBuild 4.1.4 +name: Microsoft TypeScript MSBuild 4.1.4 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild/4.1.4/License +spdx_license_key: LicenseRef-scancode-ms-typescript-msbuild-4.1.4 +ignorable_urls: + - http://www.microsoft.com/licensing/userights + - https://docs.microsoft.com/en-us/legal/gdpr + - https://go.microsoft.com/fwlink/?LinkID=824704 + - https://go.microsoft.com/fwlink/?linkid=823097 +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT TYPESCRIPT SOFTWARE DEVELOPMENT KIT diff --git a/docs/ms-typescript-msbuild-4.1.4.html b/docs/ms-typescript-msbuild-4.1.4.html index 5064f77670..63a8420be7 100644 --- a/docs/ms-typescript-msbuild-4.1.4.html +++ b/docs/ms-typescript-msbuild-4.1.4.html @@ -299,7 +299,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-typescript-msbuild-4.1.4.json b/docs/ms-typescript-msbuild-4.1.4.json index 5340979b26..97ff5f3db5 100644 --- a/docs/ms-typescript-msbuild-4.1.4.json +++ b/docs/ms-typescript-msbuild-4.1.4.json @@ -1 +1,15 @@ -{"key": "ms-typescript-msbuild-4.1.4", "short_name": "MS TypeScript MSBuild 4.1.4", "name": "Microsoft TypeScript MSBuild 4.1.4", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild/4.1.4/License", "spdx_license_key": "LicenseRef-scancode-ms-typescript-msbuild-4.1.4", "ignorable_urls": ["http://www.microsoft.com/licensing/userights", "https://docs.microsoft.com/en-us/legal/gdpr", "https://go.microsoft.com/fwlink/?LinkID=824704", "https://go.microsoft.com/fwlink/?linkid=823097"]} \ No newline at end of file +{ + "key": "ms-typescript-msbuild-4.1.4", + "short_name": "MS TypeScript MSBuild 4.1.4", + "name": "Microsoft TypeScript MSBuild 4.1.4", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild/4.1.4/License", + "spdx_license_key": "LicenseRef-scancode-ms-typescript-msbuild-4.1.4", + "ignorable_urls": [ + "http://www.microsoft.com/licensing/userights", + "https://docs.microsoft.com/en-us/legal/gdpr", + "https://go.microsoft.com/fwlink/?LinkID=824704", + "https://go.microsoft.com/fwlink/?linkid=823097" + ] +} \ No newline at end of file diff --git a/docs/ms-visual-2008-runtime.LICENSE b/docs/ms-visual-2008-runtime.LICENSE index 0ee2344210..e45946eb79 100644 --- a/docs/ms-visual-2008-runtime.LICENSE +++ b/docs/ms-visual-2008-runtime.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-visual-2008-runtime +short_name: MS Visual C++ 2008 Runtime Libraries License +name: Microsoft Visual C++ 2008 Runtime Libraries License +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-visual-2008-runtime +other_urls: + - http://msdn.microsoft.com/en-us/library/vstudio/ms235299.aspx +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL C++ 2008 RUNTIME LIBRARIES (X86, IA64 AND X64) diff --git a/docs/ms-visual-2008-runtime.html b/docs/ms-visual-2008-runtime.html index bfa0594fdd..6ebaa78a4d 100644 --- a/docs/ms-visual-2008-runtime.html +++ b/docs/ms-visual-2008-runtime.html @@ -203,7 +203,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-visual-2008-runtime.json b/docs/ms-visual-2008-runtime.json index c87596e9a3..7a71412f31 100644 --- a/docs/ms-visual-2008-runtime.json +++ b/docs/ms-visual-2008-runtime.json @@ -1 +1,14 @@ -{"key": "ms-visual-2008-runtime", "short_name": "MS Visual C++ 2008 Runtime Libraries License", "name": "Microsoft Visual C++ 2008 Runtime Libraries License", "category": "Proprietary Free", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-visual-2008-runtime", "other_urls": ["http://msdn.microsoft.com/en-us/library/vstudio/ms235299.aspx"], "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-visual-2008-runtime", + "short_name": "MS Visual C++ 2008 Runtime Libraries License", + "name": "Microsoft Visual C++ 2008 Runtime Libraries License", + "category": "Proprietary Free", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-visual-2008-runtime", + "other_urls": [ + "http://msdn.microsoft.com/en-us/library/vstudio/ms235299.aspx" + ], + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-visual-2010-runtime.LICENSE b/docs/ms-visual-2010-runtime.LICENSE index a14dbf56df..ce5212e752 100644 --- a/docs/ms-visual-2010-runtime.LICENSE +++ b/docs/ms-visual-2010-runtime.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-visual-2010-runtime +short_name: MS Visual C++ 2010 Runtime Libraries License +name: Microsoft Visual C++ 2010 Runtime Libraries License +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-visual-2010-runtime +faq_url: http://msdn.microsoft.com/en-us/library/vstudio/ms235299(v=vs.100).aspx +other_urls: + - www.microsoft.com/exporting +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL C++ 2010 RUNTIME LIBRARIES diff --git a/docs/ms-visual-2010-runtime.html b/docs/ms-visual-2010-runtime.html index d8cbdee37c..e77b647063 100644 --- a/docs/ms-visual-2010-runtime.html +++ b/docs/ms-visual-2010-runtime.html @@ -192,7 +192,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-visual-2010-runtime.json b/docs/ms-visual-2010-runtime.json index 999bda35f2..4c9b076df5 100644 --- a/docs/ms-visual-2010-runtime.json +++ b/docs/ms-visual-2010-runtime.json @@ -1 +1,15 @@ -{"key": "ms-visual-2010-runtime", "short_name": "MS Visual C++ 2010 Runtime Libraries License", "name": "Microsoft Visual C++ 2010 Runtime Libraries License", "category": "Proprietary Free", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-visual-2010-runtime", "faq_url": "http://msdn.microsoft.com/en-us/library/vstudio/ms235299(v=vs.100).aspx", "other_urls": ["www.microsoft.com/exporting"], "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-visual-2010-runtime", + "short_name": "MS Visual C++ 2010 Runtime Libraries License", + "name": "Microsoft Visual C++ 2010 Runtime Libraries License", + "category": "Proprietary Free", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-visual-2010-runtime", + "faq_url": "http://msdn.microsoft.com/en-us/library/vstudio/ms235299(v=vs.100).aspx", + "other_urls": [ + "www.microsoft.com/exporting" + ], + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-visual-2015-sdk.LICENSE b/docs/ms-visual-2015-sdk.LICENSE index b4c9ccf201..2baefdb7b5 100644 --- a/docs/ms-visual-2015-sdk.LICENSE +++ b/docs/ms-visual-2015-sdk.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-visual-2015-sdk +short_name: MS Visual Studio 2015 SDK +name: Microsoft Visual Studio 2015 Software Development Kit License +category: Proprietary Free +owner: Microsoft +homepage_url: https://visualstudio.microsoft.com/license-terms/mt171586/ +spdx_license_key: LicenseRef-scancode-ms-visual-2015-sdk +other_urls: + - http://go.microsoft.com/fwlink/?LinkID=614949 +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkID=528096 + - http://go.microsoft.com/fwlink/?LinkId=523763&clcid=0x409 +--- + MICROSOFT VISUAL STUDIO 2015 SOFTWARE DEVELOPMENT KIT These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have additional terms. diff --git a/docs/ms-visual-2015-sdk.html b/docs/ms-visual-2015-sdk.html index 579ca9bdd0..11b700de88 100644 --- a/docs/ms-visual-2015-sdk.html +++ b/docs/ms-visual-2015-sdk.html @@ -213,7 +213,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-visual-2015-sdk.json b/docs/ms-visual-2015-sdk.json index 2f2e9bcbbe..b27732ebfc 100644 --- a/docs/ms-visual-2015-sdk.json +++ b/docs/ms-visual-2015-sdk.json @@ -1 +1,16 @@ -{"key": "ms-visual-2015-sdk", "short_name": "MS Visual Studio 2015 SDK", "name": "Microsoft Visual Studio 2015 Software Development Kit License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://visualstudio.microsoft.com/license-terms/mt171586/", "spdx_license_key": "LicenseRef-scancode-ms-visual-2015-sdk", "other_urls": ["http://go.microsoft.com/fwlink/?LinkID=614949"], "ignorable_urls": ["http://go.microsoft.com/fwlink/?LinkID=528096", "http://go.microsoft.com/fwlink/?LinkId=523763&clcid=0x409"]} \ No newline at end of file +{ + "key": "ms-visual-2015-sdk", + "short_name": "MS Visual Studio 2015 SDK", + "name": "Microsoft Visual Studio 2015 Software Development Kit License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://visualstudio.microsoft.com/license-terms/mt171586/", + "spdx_license_key": "LicenseRef-scancode-ms-visual-2015-sdk", + "other_urls": [ + "http://go.microsoft.com/fwlink/?LinkID=614949" + ], + "ignorable_urls": [ + "http://go.microsoft.com/fwlink/?LinkID=528096", + "http://go.microsoft.com/fwlink/?LinkId=523763&clcid=0x409" + ] +} \ No newline at end of file diff --git a/docs/ms-visual-cpp-2015-runtime.LICENSE b/docs/ms-visual-cpp-2015-runtime.LICENSE index 7efd5f94aa..4524e45e1f 100644 --- a/docs/ms-visual-cpp-2015-runtime.LICENSE +++ b/docs/ms-visual-cpp-2015-runtime.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-visual-cpp-2015-runtime +short_name: MS Visual C++ 2015-2022 Runtime +name: Microsoft Visual C++ 2015-2022 Runtime +category: Proprietary Free +owner: Microsoft +homepage_url: https://visualstudio.microsoft.com/license-terms/vs2022-cruntime/ +spdx_license_key: LicenseRef-scancode-ms-visual-cpp-2015-runtime +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL C++ 2015 - 2022 RUNTIME diff --git a/docs/ms-visual-cpp-2015-runtime.html b/docs/ms-visual-cpp-2015-runtime.html index 5bfbf66156..e612b93818 100644 --- a/docs/ms-visual-cpp-2015-runtime.html +++ b/docs/ms-visual-cpp-2015-runtime.html @@ -198,7 +198,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-visual-cpp-2015-runtime.json b/docs/ms-visual-cpp-2015-runtime.json index fddff93365..1655dd7857 100644 --- a/docs/ms-visual-cpp-2015-runtime.json +++ b/docs/ms-visual-cpp-2015-runtime.json @@ -1 +1,12 @@ -{"key": "ms-visual-cpp-2015-runtime", "short_name": "MS Visual C++ 2015-2022 Runtime", "name": "Microsoft Visual C++ 2015-2022 Runtime", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://visualstudio.microsoft.com/license-terms/vs2022-cruntime/", "spdx_license_key": "LicenseRef-scancode-ms-visual-cpp-2015-runtime", "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-visual-cpp-2015-runtime", + "short_name": "MS Visual C++ 2015-2022 Runtime", + "name": "Microsoft Visual C++ 2015-2022 Runtime", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://visualstudio.microsoft.com/license-terms/vs2022-cruntime/", + "spdx_license_key": "LicenseRef-scancode-ms-visual-cpp-2015-runtime", + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-visual-studio-2017-tools.LICENSE b/docs/ms-visual-studio-2017-tools.LICENSE index eeb8c48c15..8b13cab54a 100644 --- a/docs/ms-visual-studio-2017-tools.LICENSE +++ b/docs/ms-visual-studio-2017-tools.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-visual-studio-2017-tools +short_name: MS Visual Studio 2017 Tools +name: Microsoft Visual Studio 2017 Tools +category: Commercial +owner: Microsoft +homepage_url: https://visualstudio.microsoft.com/license-terms/mlt552233/ +spdx_license_key: LicenseRef-scancode-ms-visual-studio-2017-tools +ignorable_urls: + - http://go.microsoft.com/?linkid=9840733 + - http://www.microsoft.com/exporting + - https://go.microsoft.com/fwlink/?LinkID=824704 + - https://go.microsoft.com/fwlink/?linkid=823097 +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL STUDIO 2017 TOOLS, ADD-ONs and EXTENSIONS @@ -72,4 +87,4 @@ It also applies even if Microsoft knew or should have known about the possibilit limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. -EULA ID: VS 2017_TOOLS_ADDONs_C++_RTW.3_ENU \ No newline at end of file +EULA ID: VS 2017_TOOLS_ADDONs_C++_RTW.3_ENU \ No newline at end of file diff --git a/docs/ms-visual-studio-2017-tools.html b/docs/ms-visual-studio-2017-tools.html index 1e82119d51..19f1d04a1f 100644 --- a/docs/ms-visual-studio-2017-tools.html +++ b/docs/ms-visual-studio-2017-tools.html @@ -198,7 +198,7 @@ limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. -EULA ID: VS 2017_TOOLS_ADDONs_C++_RTW.3_ENU +EULA ID: VS 2017_TOOLS_ADDONs_C++_RTW.3_ENU
@@ -210,7 +210,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-visual-studio-2017-tools.json b/docs/ms-visual-studio-2017-tools.json index 5164477ab7..fce7813d84 100644 --- a/docs/ms-visual-studio-2017-tools.json +++ b/docs/ms-visual-studio-2017-tools.json @@ -1 +1,15 @@ -{"key": "ms-visual-studio-2017-tools", "short_name": "MS Visual Studio 2017 Tools", "name": "Microsoft Visual Studio 2017 Tools", "category": "Commercial", "owner": "Microsoft", "homepage_url": "https://visualstudio.microsoft.com/license-terms/mlt552233/", "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-2017-tools", "ignorable_urls": ["http://go.microsoft.com/?linkid=9840733", "http://www.microsoft.com/exporting", "https://go.microsoft.com/fwlink/?LinkID=824704", "https://go.microsoft.com/fwlink/?linkid=823097"]} \ No newline at end of file +{ + "key": "ms-visual-studio-2017-tools", + "short_name": "MS Visual Studio 2017 Tools", + "name": "Microsoft Visual Studio 2017 Tools", + "category": "Commercial", + "owner": "Microsoft", + "homepage_url": "https://visualstudio.microsoft.com/license-terms/mlt552233/", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-2017-tools", + "ignorable_urls": [ + "http://go.microsoft.com/?linkid=9840733", + "http://www.microsoft.com/exporting", + "https://go.microsoft.com/fwlink/?LinkID=824704", + "https://go.microsoft.com/fwlink/?linkid=823097" + ] +} \ No newline at end of file diff --git a/docs/ms-visual-studio-2017.LICENSE b/docs/ms-visual-studio-2017.LICENSE index 5d72ac2a19..8aea248b84 100644 --- a/docs/ms-visual-studio-2017.LICENSE +++ b/docs/ms-visual-studio-2017.LICENSE @@ -1,3 +1,26 @@ +--- +key: ms-visual-studio-2017 +short_name: MS Visual Studio 2017 +name: Microsoft Visual Studio 2017 +category: Commercial +owner: Microsoft +homepage_url: https://visualstudio.microsoft.com/license-terms/mlt687465/ +spdx_license_key: LicenseRef-scancode-ms-visual-studio-2017 +text_urls: + - See https://visualstudio.microsoft.com/wp-content/uploads/2018/03/VS_2017_ENT_PRO_TRIAL_RTW_ENU_Eula.1033.docx + - https://visualstudio.microsoft.com/wp-content/uploads/2018/03/VS_2017_ENT_PRO_TRIAL_RTW_ENU_Eula.1033.docx +faq_url: https://visualstudio.microsoft.com/wp-content/uploads/2017/11/Visual-Studio-2018-Licensing-Whitepaper-November-2017.pdf +ignorable_urls: + - http://go.microsoft.com/?linkid=9840733 + - http://www.howtotell.com/ + - http://www.microsoft.com/exporting + - http://www.microsoft.com/info/nareturns.htm + - http://www.microsoft.com/worldwide + - https://go.microsoft.com/fwlink/?LinkID=824704 + - https://go.microsoft.com/fwlink/?linkid=823097 + - https://support.microsoft.com/ +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL STUDIO ENTERPRISE 2017, VISUAL STUDIO PROFESSIONAL 2017, VISUAL STUDIO TEST PROFESSIONAL 2017 AND TRIAL EDITION diff --git a/docs/ms-visual-studio-2017.html b/docs/ms-visual-studio-2017.html index aa37fd0ffb..223c4a4fe4 100644 --- a/docs/ms-visual-studio-2017.html +++ b/docs/ms-visual-studio-2017.html @@ -352,7 +352,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-visual-studio-2017.json b/docs/ms-visual-studio-2017.json index bdab08fde0..dd98e8defe 100644 --- a/docs/ms-visual-studio-2017.json +++ b/docs/ms-visual-studio-2017.json @@ -1 +1,24 @@ -{"key": "ms-visual-studio-2017", "short_name": "MS Visual Studio 2017", "name": "Microsoft Visual Studio 2017", "category": "Commercial", "owner": "Microsoft", "homepage_url": "https://visualstudio.microsoft.com/license-terms/mlt687465/", "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-2017", "text_urls": ["See https://visualstudio.microsoft.com/wp-content/uploads/2018/03/VS_2017_ENT_PRO_TRIAL_RTW_ENU_Eula.1033.docx", "https://visualstudio.microsoft.com/wp-content/uploads/2018/03/VS_2017_ENT_PRO_TRIAL_RTW_ENU_Eula.1033.docx"], "faq_url": "https://visualstudio.microsoft.com/wp-content/uploads/2017/11/Visual-Studio-2018-Licensing-Whitepaper-November-2017.pdf", "ignorable_urls": ["http://go.microsoft.com/?linkid=9840733", "http://www.howtotell.com/", "http://www.microsoft.com/exporting", "http://www.microsoft.com/info/nareturns.htm", "http://www.microsoft.com/worldwide", "https://go.microsoft.com/fwlink/?LinkID=824704", "https://go.microsoft.com/fwlink/?linkid=823097", "https://support.microsoft.com/"]} \ No newline at end of file +{ + "key": "ms-visual-studio-2017", + "short_name": "MS Visual Studio 2017", + "name": "Microsoft Visual Studio 2017", + "category": "Commercial", + "owner": "Microsoft", + "homepage_url": "https://visualstudio.microsoft.com/license-terms/mlt687465/", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-2017", + "text_urls": [ + "See https://visualstudio.microsoft.com/wp-content/uploads/2018/03/VS_2017_ENT_PRO_TRIAL_RTW_ENU_Eula.1033.docx", + "https://visualstudio.microsoft.com/wp-content/uploads/2018/03/VS_2017_ENT_PRO_TRIAL_RTW_ENU_Eula.1033.docx" + ], + "faq_url": "https://visualstudio.microsoft.com/wp-content/uploads/2017/11/Visual-Studio-2018-Licensing-Whitepaper-November-2017.pdf", + "ignorable_urls": [ + "http://go.microsoft.com/?linkid=9840733", + "http://www.howtotell.com/", + "http://www.microsoft.com/exporting", + "http://www.microsoft.com/info/nareturns.htm", + "http://www.microsoft.com/worldwide", + "https://go.microsoft.com/fwlink/?LinkID=824704", + "https://go.microsoft.com/fwlink/?linkid=823097", + "https://support.microsoft.com/" + ] +} \ No newline at end of file diff --git a/docs/ms-visual-studio-code-2018.LICENSE b/docs/ms-visual-studio-code-2018.LICENSE index 6695e5513f..5af05507db 100644 --- a/docs/ms-visual-studio-code-2018.LICENSE +++ b/docs/ms-visual-studio-code-2018.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-visual-studio-code-2018 +short_name: MS Visual Studio Code License 2018 +name: Microsoft Visual Studio Code License 2018 +category: Proprietary Free +owner: Microsoft +homepage_url: https://code.visualstudio.com/license +spdx_license_key: LicenseRef-scancode-ms-visual-studio-code-2018 +ignorable_urls: + - http://go.microsoft.com/?linkid=9840733 + - http://www.microsoft.com/exporting + - https://go.microsoft.com/fwlink/?LinkID=824704 +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL STUDIO CODE diff --git a/docs/ms-visual-studio-code-2018.html b/docs/ms-visual-studio-code-2018.html index e2e768124b..cea6c1538d 100644 --- a/docs/ms-visual-studio-code-2018.html +++ b/docs/ms-visual-studio-code-2018.html @@ -295,7 +295,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-visual-studio-code-2018.json b/docs/ms-visual-studio-code-2018.json index ab903726c4..b0da24770e 100644 --- a/docs/ms-visual-studio-code-2018.json +++ b/docs/ms-visual-studio-code-2018.json @@ -1 +1,14 @@ -{"key": "ms-visual-studio-code-2018", "short_name": "MS Visual Studio Code License 2018", "name": "Microsoft Visual Studio Code License 2018", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://code.visualstudio.com/license", "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code-2018", "ignorable_urls": ["http://go.microsoft.com/?linkid=9840733", "http://www.microsoft.com/exporting", "https://go.microsoft.com/fwlink/?LinkID=824704"]} \ No newline at end of file +{ + "key": "ms-visual-studio-code-2018", + "short_name": "MS Visual Studio Code License 2018", + "name": "Microsoft Visual Studio Code License 2018", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://code.visualstudio.com/license", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code-2018", + "ignorable_urls": [ + "http://go.microsoft.com/?linkid=9840733", + "http://www.microsoft.com/exporting", + "https://go.microsoft.com/fwlink/?LinkID=824704" + ] +} \ No newline at end of file diff --git a/docs/ms-visual-studio-code-2022.LICENSE b/docs/ms-visual-studio-code-2022.LICENSE index 1d22576071..2b333c6fd0 100644 --- a/docs/ms-visual-studio-code-2022.LICENSE +++ b/docs/ms-visual-studio-code-2022.LICENSE @@ -1,3 +1,21 @@ +--- +key: ms-visual-studio-code-2022 +short_name: MS Visual Studio Code License 2022 +name: Microsoft Visual Studio Code License 2022 +category: Proprietary Free +owner: Microsoft +homepage_url: https://code.visualstudio.com/license +spdx_license_key: LicenseRef-scancode-ms-visual-studio-code-2022 +ignorable_urls: + - https://aka.ms/vsmarketplace-ToU + - https://code.visualstudio.com/docs/supporting/faq#_how-to-disable + - https://docs.microsoft.com/legal/gdpr + - https://github.com/Microsoft/vscode + - https://go.microsoft.com/fwlink/?LinkID=616397 + - https://go.microsoft.com/fwlink/?LinkID=824704 + - https://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL STUDIO CODE diff --git a/docs/ms-visual-studio-code-2022.html b/docs/ms-visual-studio-code-2022.html index b8789653b9..7f866a2916 100644 --- a/docs/ms-visual-studio-code-2022.html +++ b/docs/ms-visual-studio-code-2022.html @@ -297,7 +297,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-visual-studio-code-2022.json b/docs/ms-visual-studio-code-2022.json index ff19a1f699..82b7fc7276 100644 --- a/docs/ms-visual-studio-code-2022.json +++ b/docs/ms-visual-studio-code-2022.json @@ -1 +1,18 @@ -{"key": "ms-visual-studio-code-2022", "short_name": "MS Visual Studio Code License 2022", "name": "Microsoft Visual Studio Code License 2022", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://code.visualstudio.com/license", "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code-2022", "ignorable_urls": ["https://aka.ms/vsmarketplace-ToU", "https://code.visualstudio.com/docs/supporting/faq#_how-to-disable", "https://docs.microsoft.com/legal/gdpr", "https://github.com/Microsoft/vscode", "https://go.microsoft.com/fwlink/?LinkID=616397", "https://go.microsoft.com/fwlink/?LinkID=824704", "https://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-visual-studio-code-2022", + "short_name": "MS Visual Studio Code License 2022", + "name": "Microsoft Visual Studio Code License 2022", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://code.visualstudio.com/license", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code-2022", + "ignorable_urls": [ + "https://aka.ms/vsmarketplace-ToU", + "https://code.visualstudio.com/docs/supporting/faq#_how-to-disable", + "https://docs.microsoft.com/legal/gdpr", + "https://github.com/Microsoft/vscode", + "https://go.microsoft.com/fwlink/?LinkID=616397", + "https://go.microsoft.com/fwlink/?LinkID=824704", + "https://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-visual-studio-code.LICENSE b/docs/ms-visual-studio-code.LICENSE index 336ee51299..ddf2b75d6b 100644 --- a/docs/ms-visual-studio-code.LICENSE +++ b/docs/ms-visual-studio-code.LICENSE @@ -1,3 +1,19 @@ +--- +key: ms-visual-studio-code +short_name: MS Visual Studio Code License +name: Microsoft Visual Studio Code License +category: Proprietary Free +owner: Microsoft +homepage_url: https://code.visualstudio.com/License/ +spdx_license_key: LicenseRef-scancode-ms-visual-studio-code +faq_url: https://code.visualstudio.com/ +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkID=528096&clcid=0x409 + - http://go.microsoft.com/fwlink/?LinkID=616397 + - http://thirdpartysource.microsoft.com/ + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL STUDIO CODE @@ -138,4 +154,4 @@ extent permitted by applicable law. It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state or country may not allow the exclusion or limitation of -incidental, consequential or other damages. +incidental, consequential or other damages. \ No newline at end of file diff --git a/docs/ms-visual-studio-code.html b/docs/ms-visual-studio-code.html index 98560cf3ef..9a69574c13 100644 --- a/docs/ms-visual-studio-code.html +++ b/docs/ms-visual-studio-code.html @@ -271,8 +271,7 @@ It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state or country may not allow the exclusion or limitation of -incidental, consequential or other damages. - +incidental, consequential or other damages.
@@ -284,7 +283,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-visual-studio-code.json b/docs/ms-visual-studio-code.json index 9fb8319070..a927ee9934 100644 --- a/docs/ms-visual-studio-code.json +++ b/docs/ms-visual-studio-code.json @@ -1 +1,16 @@ -{"key": "ms-visual-studio-code", "short_name": "MS Visual Studio Code License", "name": "Microsoft Visual Studio Code License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://code.visualstudio.com/License/", "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code", "faq_url": "https://code.visualstudio.com/", "ignorable_urls": ["http://go.microsoft.com/fwlink/?LinkID=528096&clcid=0x409", "http://go.microsoft.com/fwlink/?LinkID=616397", "http://thirdpartysource.microsoft.com/", "http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-visual-studio-code", + "short_name": "MS Visual Studio Code License", + "name": "Microsoft Visual Studio Code License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://code.visualstudio.com/License/", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code", + "faq_url": "https://code.visualstudio.com/", + "ignorable_urls": [ + "http://go.microsoft.com/fwlink/?LinkID=528096&clcid=0x409", + "http://go.microsoft.com/fwlink/?LinkID=616397", + "http://thirdpartysource.microsoft.com/", + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-vs-addons-ext-17.2.0.LICENSE b/docs/ms-vs-addons-ext-17.2.0.LICENSE index 98684ada8e..5001b37879 100644 --- a/docs/ms-vs-addons-ext-17.2.0.LICENSE +++ b/docs/ms-vs-addons-ext-17.2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: ms-vs-addons-ext-17.2.0 +short_name: MS VS Add-Ons and Extensions 17.2.0 +name: Microsoft Visual Studio Add-Ons and Extensions 17.2.0 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.nuget.org/packages/Microsoft.VisualStudio.Debugger.Contracts/17.2.0/License +spdx_license_key: LicenseRef-scancode-ms-vs-addons-ext-17.2.0 +other_urls: + - https://github.com/nexB/scancode-toolkit/issues/2955 +ignorable_urls: + - http://www.microsoft.com/exporting + - https://docs.microsoft.com/en-us/legal/gdpr + - https://go.microsoft.com/fwlink/?LinkID=824704 +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL STUDIO ADD-ONs and EXTENSIONS diff --git a/docs/ms-vs-addons-ext-17.2.0.html b/docs/ms-vs-addons-ext-17.2.0.html index 41b8d1e92f..905c290600 100644 --- a/docs/ms-vs-addons-ext-17.2.0.html +++ b/docs/ms-vs-addons-ext-17.2.0.html @@ -200,7 +200,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-vs-addons-ext-17.2.0.json b/docs/ms-vs-addons-ext-17.2.0.json index 3988327d35..3023f3ab11 100644 --- a/docs/ms-vs-addons-ext-17.2.0.json +++ b/docs/ms-vs-addons-ext-17.2.0.json @@ -1 +1,17 @@ -{"key": "ms-vs-addons-ext-17.2.0", "short_name": "MS VS Add-Ons and Extensions 17.2.0", "name": "Microsoft Visual Studio Add-Ons and Extensions 17.2.0", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://www.nuget.org/packages/Microsoft.VisualStudio.Debugger.Contracts/17.2.0/License", "spdx_license_key": "LicenseRef-scancode-ms-vs-addons-ext-17.2.0", "other_urls": ["https://github.com/nexB/scancode-toolkit/issues/2955"], "ignorable_urls": ["http://www.microsoft.com/exporting", "https://docs.microsoft.com/en-us/legal/gdpr", "https://go.microsoft.com/fwlink/?LinkID=824704"]} \ No newline at end of file +{ + "key": "ms-vs-addons-ext-17.2.0", + "short_name": "MS VS Add-Ons and Extensions 17.2.0", + "name": "Microsoft Visual Studio Add-Ons and Extensions 17.2.0", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://www.nuget.org/packages/Microsoft.VisualStudio.Debugger.Contracts/17.2.0/License", + "spdx_license_key": "LicenseRef-scancode-ms-vs-addons-ext-17.2.0", + "other_urls": [ + "https://github.com/nexB/scancode-toolkit/issues/2955" + ], + "ignorable_urls": [ + "http://www.microsoft.com/exporting", + "https://docs.microsoft.com/en-us/legal/gdpr", + "https://go.microsoft.com/fwlink/?LinkID=824704" + ] +} \ No newline at end of file diff --git a/docs/ms-web-developer-tools-1.0.LICENSE b/docs/ms-web-developer-tools-1.0.LICENSE index ed061986c1..f8348d3e4f 100644 --- a/docs/ms-web-developer-tools-1.0.LICENSE +++ b/docs/ms-web-developer-tools-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-web-developer-tools-1.0 +short_name: MS Web Developer Tools 1.0 +name: Microsoft Web Developer Tools 1.0 +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/webdevelopertools_1_eula_enu.htm +spdx_license_key: LicenseRef-scancode-ms-web-developer-tools-1.0 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT WEB DEVELOPER TOOLS 1.0 These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft @@ -108,4 +120,4 @@ This limitation applies to · claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. -It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. \ No newline at end of file diff --git a/docs/ms-web-developer-tools-1.0.html b/docs/ms-web-developer-tools-1.0.html index 56a89b7307..2d52b3e5d0 100644 --- a/docs/ms-web-developer-tools-1.0.html +++ b/docs/ms-web-developer-tools-1.0.html @@ -234,8 +234,7 @@ · claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. -It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. - +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.
@@ -247,7 +246,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-web-developer-tools-1.0.json b/docs/ms-web-developer-tools-1.0.json index 4749a9b8d7..6d90d1f14b 100644 --- a/docs/ms-web-developer-tools-1.0.json +++ b/docs/ms-web-developer-tools-1.0.json @@ -1 +1,12 @@ -{"key": "ms-web-developer-tools-1.0", "short_name": "MS Web Developer Tools 1.0", "name": "Microsoft Web Developer Tools 1.0", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://www.microsoft.com/web/webpi/eula/webdevelopertools_1_eula_enu.htm", "spdx_license_key": "LicenseRef-scancode-ms-web-developer-tools-1.0", "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-web-developer-tools-1.0", + "short_name": "MS Web Developer Tools 1.0", + "name": "Microsoft Web Developer Tools 1.0", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://www.microsoft.com/web/webpi/eula/webdevelopertools_1_eula_enu.htm", + "spdx_license_key": "LicenseRef-scancode-ms-web-developer-tools-1.0", + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-windows-container-base-image-eula-2020.LICENSE b/docs/ms-windows-container-base-image-eula-2020.LICENSE index 7c9aea44e3..73c6a74e9b 100644 --- a/docs/ms-windows-container-base-image-eula-2020.LICENSE +++ b/docs/ms-windows-container-base-image-eula-2020.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-windows-container-base-image-eula-2020 +short_name: MS Windows Container Base Image EULA 2020 +name: Microsoft Windows Container Base Image EULA 2020 +category: Proprietary Free +owner: Microsoft +homepage_url: https://docs.microsoft.com/en-us/virtualization/windowscontainers/images-eula +spdx_license_key: LicenseRef-scancode-ms-win-container-eula-2020 +other_spdx_license_keys: + - LicenseRef-scancode-ms-windows-container-base-image-eula-2020 +ignorable_urls: + - http://aka.ms/getsource + - http://aka.ms/thirdpartynotices +--- + MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE FOR WINDOWS CONTAINER BASE IMAGE diff --git a/docs/ms-windows-container-base-image-eula-2020.html b/docs/ms-windows-container-base-image-eula-2020.html index 1a358e781f..284f4c64f6 100644 --- a/docs/ms-windows-container-base-image-eula-2020.html +++ b/docs/ms-windows-container-base-image-eula-2020.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-windows-container-base-image-eula-2020.json b/docs/ms-windows-container-base-image-eula-2020.json index ba82e5526b..93c757a08c 100644 --- a/docs/ms-windows-container-base-image-eula-2020.json +++ b/docs/ms-windows-container-base-image-eula-2020.json @@ -1 +1,16 @@ -{"key": "ms-windows-container-base-image-eula-2020", "short_name": "MS Windows Container Base Image EULA 2020", "name": "Microsoft Windows Container Base Image EULA 2020", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://docs.microsoft.com/en-us/virtualization/windowscontainers/images-eula", "spdx_license_key": "LicenseRef-scancode-ms-win-container-eula-2020", "other_spdx_license_keys": ["LicenseRef-scancode-ms-windows-container-base-image-eula-2020"], "ignorable_urls": ["http://aka.ms/getsource", "http://aka.ms/thirdpartynotices"]} \ No newline at end of file +{ + "key": "ms-windows-container-base-image-eula-2020", + "short_name": "MS Windows Container Base Image EULA 2020", + "name": "Microsoft Windows Container Base Image EULA 2020", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://docs.microsoft.com/en-us/virtualization/windowscontainers/images-eula", + "spdx_license_key": "LicenseRef-scancode-ms-win-container-eula-2020", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-windows-container-base-image-eula-2020" + ], + "ignorable_urls": [ + "http://aka.ms/getsource", + "http://aka.ms/thirdpartynotices" + ] +} \ No newline at end of file diff --git a/docs/ms-windows-driver-kit.LICENSE b/docs/ms-windows-driver-kit.LICENSE index 7e34b0432f..c16b93c580 100644 --- a/docs/ms-windows-driver-kit.LICENSE +++ b/docs/ms-windows-driver-kit.LICENSE @@ -1,3 +1,14 @@ +--- +key: ms-windows-driver-kit +short_name: MS Windows Driver Kit License +name: Microsoft Windows Driver Kit License +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-windows-driver-kit +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT WINDOWS DRIVER KIT These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft  updates, diff --git a/docs/ms-windows-driver-kit.html b/docs/ms-windows-driver-kit.html index 6430a66dc4..7a1d3ddc89 100644 --- a/docs/ms-windows-driver-kit.html +++ b/docs/ms-windows-driver-kit.html @@ -199,7 +199,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-windows-driver-kit.json b/docs/ms-windows-driver-kit.json index 60bd149fd9..79edf9e9af 100644 --- a/docs/ms-windows-driver-kit.json +++ b/docs/ms-windows-driver-kit.json @@ -1 +1,11 @@ -{"key": "ms-windows-driver-kit", "short_name": "MS Windows Driver Kit License", "name": "Microsoft Windows Driver Kit License", "category": "Proprietary Free", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-windows-driver-kit", "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-windows-driver-kit", + "short_name": "MS Windows Driver Kit License", + "name": "Microsoft Windows Driver Kit License", + "category": "Proprietary Free", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-windows-driver-kit", + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-windows-identity-foundation.LICENSE b/docs/ms-windows-identity-foundation.LICENSE index 364e29f7d2..a4c279e352 100644 --- a/docs/ms-windows-identity-foundation.LICENSE +++ b/docs/ms-windows-identity-foundation.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-windows-identity-foundation +short_name: MS Windows Identity Foundation License +name: Microsoft Windows Identity Foundation License +category: Proprietary Free +owner: Microsoft +notes: also contains some French language terms +spdx_license_key: LicenseRef-scancode-ms-windows-identity-foundation +text_urls: + - http://download.microsoft.com/download/7/0/1/70118832-3749-4C75-B860-456FC0712870/wif-nuget-eula-rtm.rtf +ignorable_urls: + - http://www.support.microsoft.com/common/international.aspx +--- + MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS WINDOWS IDENTITY FOUNDATION FOR MICROSOFT WINDOWS OPERATING SYSTEMS diff --git a/docs/ms-windows-identity-foundation.html b/docs/ms-windows-identity-foundation.html index 27f93b8c5c..b9782224b9 100644 --- a/docs/ms-windows-identity-foundation.html +++ b/docs/ms-windows-identity-foundation.html @@ -205,7 +205,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-windows-identity-foundation.json b/docs/ms-windows-identity-foundation.json index 6926a19c65..e5d24d754c 100644 --- a/docs/ms-windows-identity-foundation.json +++ b/docs/ms-windows-identity-foundation.json @@ -1 +1,15 @@ -{"key": "ms-windows-identity-foundation", "short_name": "MS Windows Identity Foundation License", "name": "Microsoft Windows Identity Foundation License", "category": "Proprietary Free", "owner": "Microsoft", "notes": "also contains some French language terms", "spdx_license_key": "LicenseRef-scancode-ms-windows-identity-foundation", "text_urls": ["http://download.microsoft.com/download/7/0/1/70118832-3749-4C75-B860-456FC0712870/wif-nuget-eula-rtm.rtf"], "ignorable_urls": ["http://www.support.microsoft.com/common/international.aspx"]} \ No newline at end of file +{ + "key": "ms-windows-identity-foundation", + "short_name": "MS Windows Identity Foundation License", + "name": "Microsoft Windows Identity Foundation License", + "category": "Proprietary Free", + "owner": "Microsoft", + "notes": "also contains some French language terms", + "spdx_license_key": "LicenseRef-scancode-ms-windows-identity-foundation", + "text_urls": [ + "http://download.microsoft.com/download/7/0/1/70118832-3749-4C75-B860-456FC0712870/wif-nuget-eula-rtm.rtf" + ], + "ignorable_urls": [ + "http://www.support.microsoft.com/common/international.aspx" + ] +} \ No newline at end of file diff --git a/docs/ms-windows-os-2018.LICENSE b/docs/ms-windows-os-2018.LICENSE index 4fbc82a6be..f561dc0c00 100644 --- a/docs/ms-windows-os-2018.LICENSE +++ b/docs/ms-windows-os-2018.LICENSE @@ -1,3 +1,14 @@ +--- +key: ms-windows-os-2018 +short_name: MS Windows OS 2018 +name: Microsoft Windows Operating System License 2019 +category: Commercial +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-windows-os-2018 +other_urls: + - https://github.com/nexB/scancode-toolkit/files/6909005/license.zip +--- + Last updated June 2018 MICROSOFT SOFTWARE LICENSE TERMS WINDOWS OPERATING SYSTEM diff --git a/docs/ms-windows-os-2018.html b/docs/ms-windows-os-2018.html index 3605a58029..b85ed37008 100644 --- a/docs/ms-windows-os-2018.html +++ b/docs/ms-windows-os-2018.html @@ -226,7 +226,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-windows-os-2018.json b/docs/ms-windows-os-2018.json index ef451044aa..189fea9d20 100644 --- a/docs/ms-windows-os-2018.json +++ b/docs/ms-windows-os-2018.json @@ -1 +1,11 @@ -{"key": "ms-windows-os-2018", "short_name": "MS Windows OS 2018", "name": "Microsoft Windows Operating System License 2019", "category": "Commercial", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-windows-os-2018", "other_urls": ["https://github.com/nexB/scancode-toolkit/files/6909005/license.zip"]} \ No newline at end of file +{ + "key": "ms-windows-os-2018", + "short_name": "MS Windows OS 2018", + "name": "Microsoft Windows Operating System License 2019", + "category": "Commercial", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-windows-os-2018", + "other_urls": [ + "https://github.com/nexB/scancode-toolkit/files/6909005/license.zip" + ] +} \ No newline at end of file diff --git a/docs/ms-windows-sdk-server-2008-net-3.5.LICENSE b/docs/ms-windows-sdk-server-2008-net-3.5.LICENSE index 64dc9f4358..908af1718a 100644 --- a/docs/ms-windows-sdk-server-2008-net-3.5.LICENSE +++ b/docs/ms-windows-sdk-server-2008-net-3.5.LICENSE @@ -1,3 +1,22 @@ +--- +key: ms-windows-sdk-server-2008-net-3.5 +short_name: MS Windows SDK Server 2008 .NET Framework 3.5 +name: Microsoft Windows SDK for Windows Server 2008 and .NET Framework 3.5 +category: Commercial +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-win-sdk-server-2008-net-3.5 +other_spdx_license_keys: + - LicenseRef-scancode-ms-windows-sdk-server-2008-net-3.5 +ignorable_copyrights: + - Copyright (c) 2006 Microsoft Corporation +ignorable_holders: + - Microsoft Corporation +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkID=66406 + - http://www.microsoft.com/exporting + - http://www.microsoft.com/licensing/userights +--- + Microsoft Windows SDK for Windows Server 2008 and .NET Framework 3.5 License MICROSOFT SOFTWARE LICENSE TERMS diff --git a/docs/ms-windows-sdk-server-2008-net-3.5.html b/docs/ms-windows-sdk-server-2008-net-3.5.html index 1a25d7f019..b76cc3b077 100644 --- a/docs/ms-windows-sdk-server-2008-net-3.5.html +++ b/docs/ms-windows-sdk-server-2008-net-3.5.html @@ -244,7 +244,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-windows-sdk-server-2008-net-3.5.json b/docs/ms-windows-sdk-server-2008-net-3.5.json index 3de1cc26c1..85de649305 100644 --- a/docs/ms-windows-sdk-server-2008-net-3.5.json +++ b/docs/ms-windows-sdk-server-2008-net-3.5.json @@ -1 +1,22 @@ -{"key": "ms-windows-sdk-server-2008-net-3.5", "short_name": "MS Windows SDK Server 2008 .NET Framework 3.5", "name": "Microsoft Windows SDK for Windows Server 2008 and .NET Framework 3.5", "category": "Commercial", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-win-sdk-server-2008-net-3.5", "other_spdx_license_keys": ["LicenseRef-scancode-ms-windows-sdk-server-2008-net-3.5"], "ignorable_copyrights": ["Copyright (c) 2006 Microsoft Corporation"], "ignorable_holders": ["Microsoft Corporation"], "ignorable_urls": ["http://go.microsoft.com/fwlink/?LinkID=66406", "http://www.microsoft.com/exporting", "http://www.microsoft.com/licensing/userights"]} \ No newline at end of file +{ + "key": "ms-windows-sdk-server-2008-net-3.5", + "short_name": "MS Windows SDK Server 2008 .NET Framework 3.5", + "name": "Microsoft Windows SDK for Windows Server 2008 and .NET Framework 3.5", + "category": "Commercial", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-win-sdk-server-2008-net-3.5", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-windows-sdk-server-2008-net-3.5" + ], + "ignorable_copyrights": [ + "Copyright (c) 2006 Microsoft Corporation" + ], + "ignorable_holders": [ + "Microsoft Corporation" + ], + "ignorable_urls": [ + "http://go.microsoft.com/fwlink/?LinkID=66406", + "http://www.microsoft.com/exporting", + "http://www.microsoft.com/licensing/userights" + ] +} \ No newline at end of file diff --git a/docs/ms-windows-sdk-win10.LICENSE b/docs/ms-windows-sdk-win10.LICENSE index e96bd1b04c..0768877c02 100644 --- a/docs/ms-windows-sdk-win10.LICENSE +++ b/docs/ms-windows-sdk-win10.LICENSE @@ -1,3 +1,21 @@ +--- +key: ms-windows-sdk-win10 +short_name: MS Enterprise Windows Driver Kit 2021 +name: Microsoft Enterprise Windows Driver Kit License 2021 +category: Commercial +owner: Microsoft +homepage_url: https://docs.microsoft.com/en-us/legal/windows-sdk/license-terms-ewdk +spdx_license_key: LicenseRef-scancode-ms-windows-sdk-win10 +ignorable_urls: + - http://www.mpegla.com/ + - https://go.microsoft.com/fwlink/?LinkID=21969 + - https://go.microsoft.com/fwlink/?LinkId=294840 + - https://go.microsoft.com/fwlink/?LinkId=521839 + - https://go.microsoft.com/fwlink/?LinkId=524838 + - https://go.microsoft.com/fwlink/?LinkId=524839 + - https://www.microsoft.com/en-us/legal/arbitration/default.aspx +--- + MICROSOFT SOFTWARE LICENSE TERMS 03/26/2021 diff --git a/docs/ms-windows-sdk-win10.html b/docs/ms-windows-sdk-win10.html index 41a8b75022..6360abe09b 100644 --- a/docs/ms-windows-sdk-win10.html +++ b/docs/ms-windows-sdk-win10.html @@ -292,7 +292,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-windows-sdk-win10.json b/docs/ms-windows-sdk-win10.json index a6f3461523..f24cd644b8 100644 --- a/docs/ms-windows-sdk-win10.json +++ b/docs/ms-windows-sdk-win10.json @@ -1 +1,18 @@ -{"key": "ms-windows-sdk-win10", "short_name": "MS Enterprise Windows Driver Kit 2021", "name": "Microsoft Enterprise Windows Driver Kit License 2021", "category": "Commercial", "owner": "Microsoft", "homepage_url": "https://docs.microsoft.com/en-us/legal/windows-sdk/license-terms-ewdk", "spdx_license_key": "LicenseRef-scancode-ms-windows-sdk-win10", "ignorable_urls": ["http://www.mpegla.com/", "https://go.microsoft.com/fwlink/?LinkID=21969", "https://go.microsoft.com/fwlink/?LinkId=294840", "https://go.microsoft.com/fwlink/?LinkId=521839", "https://go.microsoft.com/fwlink/?LinkId=524838", "https://go.microsoft.com/fwlink/?LinkId=524839", "https://www.microsoft.com/en-us/legal/arbitration/default.aspx"]} \ No newline at end of file +{ + "key": "ms-windows-sdk-win10", + "short_name": "MS Enterprise Windows Driver Kit 2021", + "name": "Microsoft Enterprise Windows Driver Kit License 2021", + "category": "Commercial", + "owner": "Microsoft", + "homepage_url": "https://docs.microsoft.com/en-us/legal/windows-sdk/license-terms-ewdk", + "spdx_license_key": "LicenseRef-scancode-ms-windows-sdk-win10", + "ignorable_urls": [ + "http://www.mpegla.com/", + "https://go.microsoft.com/fwlink/?LinkID=21969", + "https://go.microsoft.com/fwlink/?LinkId=294840", + "https://go.microsoft.com/fwlink/?LinkId=521839", + "https://go.microsoft.com/fwlink/?LinkId=524838", + "https://go.microsoft.com/fwlink/?LinkId=524839", + "https://www.microsoft.com/en-us/legal/arbitration/default.aspx" + ] +} \ No newline at end of file diff --git a/docs/ms-windows-sdk-win7-net-4.LICENSE b/docs/ms-windows-sdk-win7-net-4.LICENSE index 134f9fabf0..ff10e71497 100644 --- a/docs/ms-windows-sdk-win7-net-4.LICENSE +++ b/docs/ms-windows-sdk-win7-net-4.LICENSE @@ -1,3 +1,21 @@ +--- +key: ms-windows-sdk-win7-net-4 +short_name: MS Windows SDK Windows7 .NET Framework 4 +name: Microsoft Windows SDK for Windows 7 and .NET Framework 4 +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-windows-sdk-win7-net-4 +ignorable_copyrights: + - Copyright (c) 2006 Microsoft Corporation +ignorable_holders: + - Microsoft Corporation +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkID=185267&clcid=0x409 + - http://go.microsoft.com/fwlink/?LinkID=185268&clcid=0x409 + - http://www.microsoft.com/exporting + - http://www.microsoft.com/licensing/userights +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT WINDOWS SOFTWARE DEVELOPMENT KIT FOR WINDOWS 7 and .NET FRAMEWORK 4 These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft diff --git a/docs/ms-windows-sdk-win7-net-4.html b/docs/ms-windows-sdk-win7-net-4.html index 33ffe4f94c..1168cebe1a 100644 --- a/docs/ms-windows-sdk-win7-net-4.html +++ b/docs/ms-windows-sdk-win7-net-4.html @@ -209,7 +209,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-windows-sdk-win7-net-4.json b/docs/ms-windows-sdk-win7-net-4.json index 25f1c40326..9bd925ee66 100644 --- a/docs/ms-windows-sdk-win7-net-4.json +++ b/docs/ms-windows-sdk-win7-net-4.json @@ -1 +1,20 @@ -{"key": "ms-windows-sdk-win7-net-4", "short_name": "MS Windows SDK Windows7 .NET Framework 4", "name": "Microsoft Windows SDK for Windows 7 and .NET Framework 4", "category": "Proprietary Free", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-windows-sdk-win7-net-4", "ignorable_copyrights": ["Copyright (c) 2006 Microsoft Corporation"], "ignorable_holders": ["Microsoft Corporation"], "ignorable_urls": ["http://go.microsoft.com/fwlink/?LinkID=185267&clcid=0x409", "http://go.microsoft.com/fwlink/?LinkID=185268&clcid=0x409", "http://www.microsoft.com/exporting", "http://www.microsoft.com/licensing/userights"]} \ No newline at end of file +{ + "key": "ms-windows-sdk-win7-net-4", + "short_name": "MS Windows SDK Windows7 .NET Framework 4", + "name": "Microsoft Windows SDK for Windows 7 and .NET Framework 4", + "category": "Proprietary Free", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-windows-sdk-win7-net-4", + "ignorable_copyrights": [ + "Copyright (c) 2006 Microsoft Corporation" + ], + "ignorable_holders": [ + "Microsoft Corporation" + ], + "ignorable_urls": [ + "http://go.microsoft.com/fwlink/?LinkID=185267&clcid=0x409", + "http://go.microsoft.com/fwlink/?LinkID=185268&clcid=0x409", + "http://www.microsoft.com/exporting", + "http://www.microsoft.com/licensing/userights" + ] +} \ No newline at end of file diff --git a/docs/ms-windows-server-2003-ddk.LICENSE b/docs/ms-windows-server-2003-ddk.LICENSE index 6ce13a4df0..b61f342e79 100644 --- a/docs/ms-windows-server-2003-ddk.LICENSE +++ b/docs/ms-windows-server-2003-ddk.LICENSE @@ -1,3 +1,14 @@ +--- +key: ms-windows-server-2003-ddk +short_name: MS Windows Server 2003 DDK License +name: Microsoft Windows Server 2003 DDK License +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-windows-server-2003-ddk +ignorable_urls: + - http://www.microsoft.com/exporting/ +--- + Microsoft Windows Server 2003 DDK License END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE diff --git a/docs/ms-windows-server-2003-ddk.html b/docs/ms-windows-server-2003-ddk.html index 6c9dccb668..db03051632 100644 --- a/docs/ms-windows-server-2003-ddk.html +++ b/docs/ms-windows-server-2003-ddk.html @@ -189,7 +189,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-windows-server-2003-ddk.json b/docs/ms-windows-server-2003-ddk.json index 957a36253b..e0256a7708 100644 --- a/docs/ms-windows-server-2003-ddk.json +++ b/docs/ms-windows-server-2003-ddk.json @@ -1 +1,11 @@ -{"key": "ms-windows-server-2003-ddk", "short_name": "MS Windows Server 2003 DDK License", "name": "Microsoft Windows Server 2003 DDK License", "category": "Proprietary Free", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-windows-server-2003-ddk", "ignorable_urls": ["http://www.microsoft.com/exporting/"]} \ No newline at end of file +{ + "key": "ms-windows-server-2003-ddk", + "short_name": "MS Windows Server 2003 DDK License", + "name": "Microsoft Windows Server 2003 DDK License", + "category": "Proprietary Free", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-windows-server-2003-ddk", + "ignorable_urls": [ + "http://www.microsoft.com/exporting/" + ] +} \ No newline at end of file diff --git a/docs/ms-windows-server-2003-sdk.LICENSE b/docs/ms-windows-server-2003-sdk.LICENSE index ff3ecf5763..0e0a273be1 100644 --- a/docs/ms-windows-server-2003-sdk.LICENSE +++ b/docs/ms-windows-server-2003-sdk.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-windows-server-2003-sdk +short_name: MS Windows Server 2003 SP1 Platform SDK License +name: Microsoft Windows Server 2003 SP1 Platform SDK License +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-windows-server-2003-sdk +ignorable_copyrights: + - Copyright (c) 1999-2005 Microsoft Corporation +ignorable_holders: + - Microsoft Corporation +ignorable_urls: + - http://www.microsoft.com/exporting +--- + Microsoft Windows Server 2003 SP1 Platform SDK License MICROSOFT SOFTWARE LICENSE TERMS diff --git a/docs/ms-windows-server-2003-sdk.html b/docs/ms-windows-server-2003-sdk.html index 73f2243e64..72a5e805c5 100644 --- a/docs/ms-windows-server-2003-sdk.html +++ b/docs/ms-windows-server-2003-sdk.html @@ -221,7 +221,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-windows-server-2003-sdk.json b/docs/ms-windows-server-2003-sdk.json index 3e77b2b0eb..fa755ed79f 100644 --- a/docs/ms-windows-server-2003-sdk.json +++ b/docs/ms-windows-server-2003-sdk.json @@ -1 +1,17 @@ -{"key": "ms-windows-server-2003-sdk", "short_name": "MS Windows Server 2003 SP1 Platform SDK License", "name": "Microsoft Windows Server 2003 SP1 Platform SDK License", "category": "Proprietary Free", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-windows-server-2003-sdk", "ignorable_copyrights": ["Copyright (c) 1999-2005 Microsoft Corporation"], "ignorable_holders": ["Microsoft Corporation"], "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-windows-server-2003-sdk", + "short_name": "MS Windows Server 2003 SP1 Platform SDK License", + "name": "Microsoft Windows Server 2003 SP1 Platform SDK License", + "category": "Proprietary Free", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-windows-server-2003-sdk", + "ignorable_copyrights": [ + "Copyright (c) 1999-2005 Microsoft Corporation" + ], + "ignorable_holders": [ + "Microsoft Corporation" + ], + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-ws-routing-spec.LICENSE b/docs/ms-ws-routing-spec.LICENSE index a8d802af7a..ec7e4bfb59 100644 --- a/docs/ms-ws-routing-spec.LICENSE +++ b/docs/ms-ws-routing-spec.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-ws-routing-spec +short_name: MS WS Routing Specifications License +name: Microsoft WS Routing Specifications License +category: Permissive +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-ws-routing-spec +ignorable_copyrights: + - Copyright 2001 Microsoft Corporation +ignorable_holders: + - Microsoft Corporation +--- + Microsoft WS Routing Specifications License WS/WS-Routing.xsd Copyright 2001 Microsoft Corporation. All rights reserved. diff --git a/docs/ms-ws-routing-spec.html b/docs/ms-ws-routing-spec.html index 8306451347..7e461b7e50 100644 --- a/docs/ms-ws-routing-spec.html +++ b/docs/ms-ws-routing-spec.html @@ -146,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-ws-routing-spec.json b/docs/ms-ws-routing-spec.json index 079fb1db04..da532d9121 100644 --- a/docs/ms-ws-routing-spec.json +++ b/docs/ms-ws-routing-spec.json @@ -1 +1,14 @@ -{"key": "ms-ws-routing-spec", "short_name": "MS WS Routing Specifications License", "name": "Microsoft WS Routing Specifications License", "category": "Permissive", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-ws-routing-spec", "ignorable_copyrights": ["Copyright 2001 Microsoft Corporation"], "ignorable_holders": ["Microsoft Corporation"]} \ No newline at end of file +{ + "key": "ms-ws-routing-spec", + "short_name": "MS WS Routing Specifications License", + "name": "Microsoft WS Routing Specifications License", + "category": "Permissive", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-ws-routing-spec", + "ignorable_copyrights": [ + "Copyright 2001 Microsoft Corporation" + ], + "ignorable_holders": [ + "Microsoft Corporation" + ] +} \ No newline at end of file diff --git a/docs/ms-xamarin-uitest3.2.0.LICENSE b/docs/ms-xamarin-uitest3.2.0.LICENSE index 742e44da43..28c971ca02 100644 --- a/docs/ms-xamarin-uitest3.2.0.LICENSE +++ b/docs/ms-xamarin-uitest3.2.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-xamarin-uitest3.2.0 +short_name: MS Xamarin.UITest 3.2.0 +name: Microsoft Xamarin.UITest 3.2.0 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.nuget.org/packages/Xamarin.UITest/3.2.0/License +spdx_license_key: LicenseRef-scancode-ms-xamarin-uitest3.2.0 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + Xamarin.UITest 3.2.0 License file MICROSOFT SOFTWARE LICENSE TERMS diff --git a/docs/ms-xamarin-uitest3.2.0.html b/docs/ms-xamarin-uitest3.2.0.html index fa94128f92..80cd4af645 100644 --- a/docs/ms-xamarin-uitest3.2.0.html +++ b/docs/ms-xamarin-uitest3.2.0.html @@ -187,7 +187,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-xamarin-uitest3.2.0.json b/docs/ms-xamarin-uitest3.2.0.json index 243f4b6fe8..e7547ec980 100644 --- a/docs/ms-xamarin-uitest3.2.0.json +++ b/docs/ms-xamarin-uitest3.2.0.json @@ -1 +1,12 @@ -{"key": "ms-xamarin-uitest3.2.0", "short_name": "MS Xamarin.UITest 3.2.0", "name": "Microsoft Xamarin.UITest 3.2.0", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "https://www.nuget.org/packages/Xamarin.UITest/3.2.0/License", "spdx_license_key": "LicenseRef-scancode-ms-xamarin-uitest3.2.0", "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-xamarin-uitest3.2.0", + "short_name": "MS Xamarin.UITest 3.2.0", + "name": "Microsoft Xamarin.UITest 3.2.0", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "https://www.nuget.org/packages/Xamarin.UITest/3.2.0/License", + "spdx_license_key": "LicenseRef-scancode-ms-xamarin-uitest3.2.0", + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/ms-xml-core-4.0.LICENSE b/docs/ms-xml-core-4.0.LICENSE index d2fbd42ace..ea65565354 100644 --- a/docs/ms-xml-core-4.0.LICENSE +++ b/docs/ms-xml-core-4.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: ms-xml-core-4.0 +short_name: MSXML 4.0 EULA +name: Microsoft XML Core Services (MSXML) 4.0 EULA +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-xml-core-4.0 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + Microsoft XML Core Services (MSXML) 4.0 EULA END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE Microsoft xml CORE SERVICES (MSXML) 4.0 diff --git a/docs/ms-xml-core-4.0.html b/docs/ms-xml-core-4.0.html index 2105a06bc3..153ab29dba 100644 --- a/docs/ms-xml-core-4.0.html +++ b/docs/ms-xml-core-4.0.html @@ -185,7 +185,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ms-xml-core-4.0.json b/docs/ms-xml-core-4.0.json index 51ad888c76..433b09f8e0 100644 --- a/docs/ms-xml-core-4.0.json +++ b/docs/ms-xml-core-4.0.json @@ -1 +1,11 @@ -{"key": "ms-xml-core-4.0", "short_name": "MSXML 4.0 EULA", "name": "Microsoft XML Core Services (MSXML) 4.0 EULA", "category": "Proprietary Free", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-ms-xml-core-4.0", "ignorable_urls": ["http://www.microsoft.com/exporting"]} \ No newline at end of file +{ + "key": "ms-xml-core-4.0", + "short_name": "MSXML 4.0 EULA", + "name": "Microsoft XML Core Services (MSXML) 4.0 EULA", + "category": "Proprietary Free", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-ms-xml-core-4.0", + "ignorable_urls": [ + "http://www.microsoft.com/exporting" + ] +} \ No newline at end of file diff --git a/docs/msj-sample-code.LICENSE b/docs/msj-sample-code.LICENSE index f824d815ce..4d88962a35 100644 --- a/docs/msj-sample-code.LICENSE +++ b/docs/msj-sample-code.LICENSE @@ -1,3 +1,12 @@ +--- +key: msj-sample-code +short_name: MS Systems Journal Sample Code License +name: Microsoft Systems Journal Sample Code License +category: Permissive +owner: Microsoft +spdx_license_key: LicenseRef-scancode-msj-sample-code +--- + Microsoft grants to you a royalty-free right to use and modify the source code version and to reproduce and distribute the object code version of the sample code, icons, cursors, and bitmaps provided within the Sample Code bin/folder on the SOFTWARE ("Sample Code") provided that you: distribute the Sample Code only in conjunction with and as a part of your software product that adds primary and significant functionality to the sample code; diff --git a/docs/msj-sample-code.html b/docs/msj-sample-code.html index 9f5314c2e0..4fbcd35042 100644 --- a/docs/msj-sample-code.html +++ b/docs/msj-sample-code.html @@ -133,7 +133,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/msj-sample-code.json b/docs/msj-sample-code.json index adac53de76..1ac445c00d 100644 --- a/docs/msj-sample-code.json +++ b/docs/msj-sample-code.json @@ -1 +1,8 @@ -{"key": "msj-sample-code", "short_name": "MS Systems Journal Sample Code License", "name": "Microsoft Systems Journal Sample Code License", "category": "Permissive", "owner": "Microsoft", "spdx_license_key": "LicenseRef-scancode-msj-sample-code"} \ No newline at end of file +{ + "key": "msj-sample-code", + "short_name": "MS Systems Journal Sample Code License", + "name": "Microsoft Systems Journal Sample Code License", + "category": "Permissive", + "owner": "Microsoft", + "spdx_license_key": "LicenseRef-scancode-msj-sample-code" +} \ No newline at end of file diff --git a/docs/msntp.LICENSE b/docs/msntp.LICENSE index b458f4254e..2324280354 100644 --- a/docs/msntp.LICENSE +++ b/docs/msntp.LICENSE @@ -1,3 +1,26 @@ +--- +key: msntp +short_name: MSNTP License +name: MSNTP software license +category: Copyleft +owner: Fedora +homepage_url: http://fedoraproject.org/wiki/Licensing/MSNTP +spdx_license_key: LicenseRef-scancode-msntp +text_urls: + - http://fedoraproject.org/wiki/Licensing/MSNTP +ignorable_copyrights: + - (c) Copyright N.M. Maclaren + - (c) Copyright University of Cambridge + - (c) Copyright, N.M. Maclaren, 1996, 1997, 2000 + - (c) Copyright, University of Cambridge, 1996, 1997, 2000 +ignorable_holders: + - N.M. Maclaren + - University of Cambridge +ignorable_authors: + - N.M. Maclaren + - the University of Cambridge +--- + General Public Licence for the software known as MSNTP ------------------------------------------------------ diff --git a/docs/msntp.html b/docs/msntp.html index 424400536b..9709d75d3a 100644 --- a/docs/msntp.html +++ b/docs/msntp.html @@ -237,7 +237,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/msntp.json b/docs/msntp.json index 15d5347f10..d4f1c9a565 100644 --- a/docs/msntp.json +++ b/docs/msntp.json @@ -1 +1,26 @@ -{"key": "msntp", "short_name": "MSNTP License", "name": "MSNTP software license", "category": "Copyleft", "owner": "Fedora", "homepage_url": "http://fedoraproject.org/wiki/Licensing/MSNTP", "spdx_license_key": "LicenseRef-scancode-msntp", "text_urls": ["http://fedoraproject.org/wiki/Licensing/MSNTP"], "ignorable_copyrights": ["(c) Copyright N.M. Maclaren", "(c) Copyright University of Cambridge", "(c) Copyright, N.M. Maclaren, 1996, 1997, 2000", "(c) Copyright, University of Cambridge, 1996, 1997, 2000"], "ignorable_holders": ["N.M. Maclaren", "University of Cambridge"], "ignorable_authors": ["N.M. Maclaren", "the University of Cambridge"]} \ No newline at end of file +{ + "key": "msntp", + "short_name": "MSNTP License", + "name": "MSNTP software license", + "category": "Copyleft", + "owner": "Fedora", + "homepage_url": "http://fedoraproject.org/wiki/Licensing/MSNTP", + "spdx_license_key": "LicenseRef-scancode-msntp", + "text_urls": [ + "http://fedoraproject.org/wiki/Licensing/MSNTP" + ], + "ignorable_copyrights": [ + "(c) Copyright N.M. Maclaren", + "(c) Copyright University of Cambridge", + "(c) Copyright, N.M. Maclaren, 1996, 1997, 2000", + "(c) Copyright, University of Cambridge, 1996, 1997, 2000" + ], + "ignorable_holders": [ + "N.M. Maclaren", + "University of Cambridge" + ], + "ignorable_authors": [ + "N.M. Maclaren", + "the University of Cambridge" + ] +} \ No newline at end of file diff --git a/docs/msppl.LICENSE b/docs/msppl.LICENSE index f7a1cb287f..e5fe5a4180 100644 --- a/docs/msppl.LICENSE +++ b/docs/msppl.LICENSE @@ -1,3 +1,13 @@ +--- +key: msppl +short_name: MSPPL +name: Microsoft patterns & practices License +category: Proprietary Free +owner: Microsoft +homepage_url: http://msdn.microsoft.com/en-us/library/gg405489(v=pandp.40).aspx +spdx_license_key: LicenseRef-scancode-msppl +--- + Microsoft patterns & practices License patterns & practices Developer Center This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. diff --git a/docs/msppl.html b/docs/msppl.html index 710b5737bc..6006a842c9 100644 --- a/docs/msppl.html +++ b/docs/msppl.html @@ -187,7 +187,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/msppl.json b/docs/msppl.json index 2989f9b094..ab417991e3 100644 --- a/docs/msppl.json +++ b/docs/msppl.json @@ -1 +1,9 @@ -{"key": "msppl", "short_name": "MSPPL", "name": "Microsoft patterns & practices License", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://msdn.microsoft.com/en-us/library/gg405489(v=pandp.40).aspx", "spdx_license_key": "LicenseRef-scancode-msppl"} \ No newline at end of file +{ + "key": "msppl", + "short_name": "MSPPL", + "name": "Microsoft patterns & practices License", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://msdn.microsoft.com/en-us/library/gg405489(v=pandp.40).aspx", + "spdx_license_key": "LicenseRef-scancode-msppl" +} \ No newline at end of file diff --git a/docs/mtll.LICENSE b/docs/mtll.LICENSE index 62bc83b611..ade9b53125 100644 --- a/docs/mtll.LICENSE +++ b/docs/mtll.LICENSE @@ -1,3 +1,21 @@ +--- +key: mtll +short_name: Matrix Template Library License +name: Matrix Template Library License +category: Permissive +owner: Indiana University +homepage_url: https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License +notes: | + Per Fedora, this license was found in the Matrix Template Library. It is + derived from the Apache Software License v1.1, but it is modified in + several ways. It is Free, but GPL-incompatible. +spdx_license_key: MTLL +ignorable_authors: + - at the University of Notre Dame, the Pervasive Technology Labs at Indiana University, + and Dresden University of Technology + - permission, please contact Indiana University Advanced Research & Technology +--- + Software License for MTL diff --git a/docs/mtll.html b/docs/mtll.html index d80a38e46c..2076df35c3 100644 --- a/docs/mtll.html +++ b/docs/mtll.html @@ -166,7 +166,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mtll.json b/docs/mtll.json index a5be3bc922..73e82af35f 100644 --- a/docs/mtll.json +++ b/docs/mtll.json @@ -1 +1,14 @@ -{"key": "mtll", "short_name": "Matrix Template Library License", "name": "Matrix Template Library License", "category": "Permissive", "owner": "Indiana University", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License", "notes": "Per Fedora, this license was found in the Matrix Template Library. It is\nderived from the Apache Software License v1.1, but it is modified in\nseveral ways. It is Free, but GPL-incompatible.\n", "spdx_license_key": "MTLL", "ignorable_authors": ["at the University of Notre Dame, the Pervasive Technology Labs at Indiana University, and Dresden University of Technology", "permission, please contact Indiana University Advanced Research & Technology"]} \ No newline at end of file +{ + "key": "mtll", + "short_name": "Matrix Template Library License", + "name": "Matrix Template Library License", + "category": "Permissive", + "owner": "Indiana University", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License", + "notes": "Per Fedora, this license was found in the Matrix Template Library. It is\nderived from the Apache Software License v1.1, but it is modified in\nseveral ways. It is Free, but GPL-incompatible.\n", + "spdx_license_key": "MTLL", + "ignorable_authors": [ + "at the University of Notre Dame, the Pervasive Technology Labs at Indiana University, and Dresden University of Technology", + "permission, please contact Indiana University Advanced Research & Technology" + ] +} \ No newline at end of file diff --git a/docs/mtx-licensing-statement.LICENSE b/docs/mtx-licensing-statement.LICENSE index d48857c1e6..086a9dbecf 100644 --- a/docs/mtx-licensing-statement.LICENSE +++ b/docs/mtx-licensing-statement.LICENSE @@ -1,3 +1,17 @@ +--- +key: mtx-licensing-statement +short_name: MicroType Express (MTX) License +name: MicroType Express (MTX) License +category: Proprietary Free +owner: Monotype +homepage_url: https://www.monotype.com/legal/mtx-licensing-statement +spdx_license_key: LicenseRef-scancode-mtx-licensing-statement +other_urls: + - http://www.w3.org/Submission/MTX/ +ignorable_urls: + - http://www.w3.org/Submission/MTX +--- + Patent License Grant. Monotype hereby grants to All a worldwide, non-exclusive, nocharge, royalty-free, irrevocable license under the Licensed Patents to make, use for any purpose, sell, and otherwise distribute and provide Licensed Products and Services, said license having a term until the last to expire of the Licensed Patents. Code and Format License. Monotype hereby grants to All a perpetual, worldwide, nonexclusive, no-charge, royalty-free, irrevocable license under its copyright rights to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, distribute, and otherwise use in Licensed Products and Services the Licensed Software and the Licensed Format, said license having a term until expiration of the foregoing copyright rights. diff --git a/docs/mtx-licensing-statement.html b/docs/mtx-licensing-statement.html index 5866edfdbb..23332ff65a 100644 --- a/docs/mtx-licensing-statement.html +++ b/docs/mtx-licensing-statement.html @@ -161,7 +161,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mtx-licensing-statement.json b/docs/mtx-licensing-statement.json index b96a4cff86..11eb00a445 100644 --- a/docs/mtx-licensing-statement.json +++ b/docs/mtx-licensing-statement.json @@ -1 +1,15 @@ -{"key": "mtx-licensing-statement", "short_name": "MicroType Express (MTX) License", "name": "MicroType Express (MTX) License", "category": "Proprietary Free", "owner": "Monotype", "homepage_url": "https://www.monotype.com/legal/mtx-licensing-statement", "spdx_license_key": "LicenseRef-scancode-mtx-licensing-statement", "other_urls": ["http://www.w3.org/Submission/MTX/"], "ignorable_urls": ["http://www.w3.org/Submission/MTX"]} \ No newline at end of file +{ + "key": "mtx-licensing-statement", + "short_name": "MicroType Express (MTX) License", + "name": "MicroType Express (MTX) License", + "category": "Proprietary Free", + "owner": "Monotype", + "homepage_url": "https://www.monotype.com/legal/mtx-licensing-statement", + "spdx_license_key": "LicenseRef-scancode-mtx-licensing-statement", + "other_urls": [ + "http://www.w3.org/Submission/MTX/" + ], + "ignorable_urls": [ + "http://www.w3.org/Submission/MTX" + ] +} \ No newline at end of file diff --git a/docs/mulanpsl-1.0-en.LICENSE b/docs/mulanpsl-1.0-en.LICENSE index 3df82b646b..6ca0530cd8 100644 --- a/docs/mulanpsl-1.0-en.LICENSE +++ b/docs/mulanpsl-1.0-en.LICENSE @@ -1,3 +1,33 @@ +--- +key: mulanpsl-1.0-en +short_name: Mulan PSL v1.0 (En) +name: Mulan Permissive Software License, Version 1 (English) +category: Permissive +owner: COSCL - China Open Source Cloud League +homepage_url: https://license.coscl.org.cn/MulanPSL +notes: there is also a Chinese version of this text. +spdx_license_key: LicenseRef-scancode-mulanpsl-1.0-en +text_urls: + - https://license.coscl.org.cn/MulanPSL +other_urls: + - https://github.com/yuwenlong/longphp/blob/25dfb70cc2a466dc4bb55ba30901cbce08d164b5/LICENSE +standard_notice: | + [Software Name] is licensed under the Mulan PSL v1. + You can use this software according to the terms and conditions of the + Mulan PSL v1. + You may obtain a copy of Mulan PSL v1 at: + http://license.coscl.org.cn/MulanPSL + THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY + KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON- + INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. + See the Mulan PSL v1 for more details. +ignorable_copyrights: + - Copyright (c) 2019 name +ignorable_holders: + - name +ignorable_urls: + - http://license.coscl.org.cn/MulanPSL +--- Mulan Permissive Software License,Version 1 @@ -57,5 +87,4 @@ You may obtain a copy of Mulan PSL v1 at: THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. -See the Mulan PSL v1 for more details. - +See the Mulan PSL v1 for more details. \ No newline at end of file diff --git a/docs/mulanpsl-1.0-en.html b/docs/mulanpsl-1.0-en.html index 3c588d4a9e..3e6641b7ed 100644 --- a/docs/mulanpsl-1.0-en.html +++ b/docs/mulanpsl-1.0-en.html @@ -183,8 +183,7 @@
license_text
-

-Mulan Permissive Software License,Version 1
+    
Mulan Permissive Software License,Version 1
 
 Mulan Permissive Software License,Version 1 (Mulan PSL v1)
 
@@ -242,9 +241,7 @@
 THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
 PURPOSE.
-See the Mulan PSL v1 for more details.
-
-
+See the Mulan PSL v1 for more details.
@@ -256,7 +253,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mulanpsl-1.0-en.json b/docs/mulanpsl-1.0-en.json index 3678157e46..3c367befd5 100644 --- a/docs/mulanpsl-1.0-en.json +++ b/docs/mulanpsl-1.0-en.json @@ -1 +1,26 @@ -{"key": "mulanpsl-1.0-en", "short_name": "Mulan PSL v1.0 (En)", "name": "Mulan Permissive Software License, Version 1 (English)", "category": "Permissive", "owner": "COSCL - China Open Source Cloud League", "homepage_url": "https://license.coscl.org.cn/MulanPSL", "notes": "there is also a Chinese version of this text.", "spdx_license_key": "LicenseRef-scancode-mulanpsl-1.0-en", "text_urls": ["https://license.coscl.org.cn/MulanPSL"], "other_urls": ["https://github.com/yuwenlong/longphp/blob/25dfb70cc2a466dc4bb55ba30901cbce08d164b5/LICENSE"], "standard_notice": "[Software Name] is licensed under the Mulan PSL v1.\nYou can use this software according to the terms and conditions of the\nMulan PSL v1.\nYou may obtain a copy of Mulan PSL v1 at:\n http://license.coscl.org.cn/MulanPSL\nTHIS SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-\nINFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.\nSee the Mulan PSL v1 for more details.\n", "ignorable_copyrights": ["Copyright (c) 2019 name"], "ignorable_holders": ["name"], "ignorable_urls": ["http://license.coscl.org.cn/MulanPSL"]} \ No newline at end of file +{ + "key": "mulanpsl-1.0-en", + "short_name": "Mulan PSL v1.0 (En)", + "name": "Mulan Permissive Software License, Version 1 (English)", + "category": "Permissive", + "owner": "COSCL - China Open Source Cloud League", + "homepage_url": "https://license.coscl.org.cn/MulanPSL", + "notes": "there is also a Chinese version of this text.", + "spdx_license_key": "LicenseRef-scancode-mulanpsl-1.0-en", + "text_urls": [ + "https://license.coscl.org.cn/MulanPSL" + ], + "other_urls": [ + "https://github.com/yuwenlong/longphp/blob/25dfb70cc2a466dc4bb55ba30901cbce08d164b5/LICENSE" + ], + "standard_notice": "[Software Name] is licensed under the Mulan PSL v1.\nYou can use this software according to the terms and conditions of the\nMulan PSL v1.\nYou may obtain a copy of Mulan PSL v1 at:\n http://license.coscl.org.cn/MulanPSL\nTHIS SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-\nINFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.\nSee the Mulan PSL v1 for more details.\n", + "ignorable_copyrights": [ + "Copyright (c) 2019 name" + ], + "ignorable_holders": [ + "name" + ], + "ignorable_urls": [ + "http://license.coscl.org.cn/MulanPSL" + ] +} \ No newline at end of file diff --git a/docs/mulanpsl-1.0.LICENSE b/docs/mulanpsl-1.0.LICENSE index f2e754b619..922c214482 100644 --- a/docs/mulanpsl-1.0.LICENSE +++ b/docs/mulanpsl-1.0.LICENSE @@ -1,3 +1,22 @@ +--- +key: mulanpsl-1.0 +language: zh-hans +short_name: Mulan PSL v1 +name: Mulan Permissive Software License, Version 1 +category: Permissive +owner: COSCI +homepage_url: https://license.coscl.org.cn/MulanPSL/ +spdx_license_key: MulanPSL-1.0 +text_urls: + - https://github.com/yuwenlong/longphp/blob/25dfb70cc2a466dc4bb55ba30901cbce08d164b5/LICENSE +ignorable_copyrights: + - Copyright (c) 2019 name +ignorable_holders: + - name +ignorable_urls: + - http://license.coscl.org.cn/MulanPSL +--- + 木兰宽松许可证, 第1版 木兰宽松许可证, 第1版 diff --git a/docs/mulanpsl-1.0.html b/docs/mulanpsl-1.0.html index 1d5a34d288..8344e64b9e 100644 --- a/docs/mulanpsl-1.0.html +++ b/docs/mulanpsl-1.0.html @@ -286,7 +286,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mulanpsl-1.0.json b/docs/mulanpsl-1.0.json index e6e645a4ec..98d5e11b27 100644 --- a/docs/mulanpsl-1.0.json +++ b/docs/mulanpsl-1.0.json @@ -1 +1,22 @@ -{"key": "mulanpsl-1.0", "language": "zh-hans", "short_name": "Mulan PSL v1", "name": "Mulan Permissive Software License, Version 1", "category": "Permissive", "owner": "COSCI", "homepage_url": "https://license.coscl.org.cn/MulanPSL/", "spdx_license_key": "MulanPSL-1.0", "text_urls": ["https://github.com/yuwenlong/longphp/blob/25dfb70cc2a466dc4bb55ba30901cbce08d164b5/LICENSE"], "ignorable_copyrights": ["Copyright (c) 2019 name"], "ignorable_holders": ["name"], "ignorable_urls": ["http://license.coscl.org.cn/MulanPSL"]} \ No newline at end of file +{ + "key": "mulanpsl-1.0", + "language": "zh-hans", + "short_name": "Mulan PSL v1", + "name": "Mulan Permissive Software License, Version 1", + "category": "Permissive", + "owner": "COSCI", + "homepage_url": "https://license.coscl.org.cn/MulanPSL/", + "spdx_license_key": "MulanPSL-1.0", + "text_urls": [ + "https://github.com/yuwenlong/longphp/blob/25dfb70cc2a466dc4bb55ba30901cbce08d164b5/LICENSE" + ], + "ignorable_copyrights": [ + "Copyright (c) 2019 name" + ], + "ignorable_holders": [ + "name" + ], + "ignorable_urls": [ + "http://license.coscl.org.cn/MulanPSL" + ] +} \ No newline at end of file diff --git a/docs/mulanpsl-2.0-en.LICENSE b/docs/mulanpsl-2.0-en.LICENSE index 1aae4dbed2..bfd85d5dc9 100644 --- a/docs/mulanpsl-2.0-en.LICENSE +++ b/docs/mulanpsl-2.0-en.LICENSE @@ -1,3 +1,26 @@ +--- +key: mulanpsl-2.0-en +short_name: Mulan PSL v2.0 (En) +name: Mulan Permissive Software License, Version 2 (English) +category: Permissive +owner: COSCL - China Open Source Cloud League +homepage_url: https://license.coscl.org.cn/MulanPSL2 +notes: there is also a Chinese version of this text. +spdx_license_key: LicenseRef-scancode-mulanpsl-2.0-en +text_urls: + - https://license.coscl.org.cn/MulanPSL2 +standard_notice: | + [Software Name] is licensed under Mulan PSL v2. + You can use this software according to the terms and conditions of the Mulan PSL v2. + You may obtain a copy of Mulan PSL v2 at: + http://license.coscl.org.cn/MulanPSL2 + THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, + EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, + MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. + See the Mulan PSL v2 for more details. +ignorable_urls: + - http://license.coscl.org.cn/MulanPSL2 +--- Mulan Permissive Software License,Version 2 @@ -61,5 +84,4 @@ You may obtain a copy of Mulan PSL v2 at: THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. -See the Mulan PSL v2 for more details. - +See the Mulan PSL v2 for more details. \ No newline at end of file diff --git a/docs/mulanpsl-2.0-en.html b/docs/mulanpsl-2.0-en.html index 343240e96e..cb2c1bd8ea 100644 --- a/docs/mulanpsl-2.0-en.html +++ b/docs/mulanpsl-2.0-en.html @@ -155,8 +155,7 @@
license_text
-

-Mulan Permissive Software License,Version 2
+    
Mulan Permissive Software License,Version 2
 
 Mulan Permissive Software License,Version 2 (Mulan PSL v2)
 
@@ -218,9 +217,7 @@
 THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
 EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
 MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
-See the Mulan PSL v2 for more details.
-
-
+See the Mulan PSL v2 for more details.
@@ -232,7 +229,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mulanpsl-2.0-en.json b/docs/mulanpsl-2.0-en.json index 642d950d2d..41e154192e 100644 --- a/docs/mulanpsl-2.0-en.json +++ b/docs/mulanpsl-2.0-en.json @@ -1 +1,17 @@ -{"key": "mulanpsl-2.0-en", "short_name": "Mulan PSL v2.0 (En)", "name": "Mulan Permissive Software License, Version 2 (English)", "category": "Permissive", "owner": "COSCL - China Open Source Cloud League", "homepage_url": "https://license.coscl.org.cn/MulanPSL2", "notes": "there is also a Chinese version of this text.", "spdx_license_key": "LicenseRef-scancode-mulanpsl-2.0-en", "text_urls": ["https://license.coscl.org.cn/MulanPSL2"], "standard_notice": "[Software Name] is licensed under Mulan PSL v2.\nYou can use this software according to the terms and conditions of the Mulan PSL v2.\nYou may obtain a copy of Mulan PSL v2 at:\n http://license.coscl.org.cn/MulanPSL2\nTHIS SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OF ANY KIND,\nEITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,\nMERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.\nSee the Mulan PSL v2 for more details.\n", "ignorable_urls": ["http://license.coscl.org.cn/MulanPSL2"]} \ No newline at end of file +{ + "key": "mulanpsl-2.0-en", + "short_name": "Mulan PSL v2.0 (En)", + "name": "Mulan Permissive Software License, Version 2 (English)", + "category": "Permissive", + "owner": "COSCL - China Open Source Cloud League", + "homepage_url": "https://license.coscl.org.cn/MulanPSL2", + "notes": "there is also a Chinese version of this text.", + "spdx_license_key": "LicenseRef-scancode-mulanpsl-2.0-en", + "text_urls": [ + "https://license.coscl.org.cn/MulanPSL2" + ], + "standard_notice": "[Software Name] is licensed under Mulan PSL v2.\nYou can use this software according to the terms and conditions of the Mulan PSL v2.\nYou may obtain a copy of Mulan PSL v2 at:\n http://license.coscl.org.cn/MulanPSL2\nTHIS SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OF ANY KIND,\nEITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,\nMERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.\nSee the Mulan PSL v2 for more details.\n", + "ignorable_urls": [ + "http://license.coscl.org.cn/MulanPSL2" + ] +} \ No newline at end of file diff --git a/docs/mulanpsl-2.0.LICENSE b/docs/mulanpsl-2.0.LICENSE index 3f63a091c4..25efa5520e 100644 --- a/docs/mulanpsl-2.0.LICENSE +++ b/docs/mulanpsl-2.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: mulanpsl-2.0 +language: zh-hans +short_name: Mulan PSL v2 +name: Mulan Permissive Software License, Version 2 +category: Permissive +owner: COSCI +homepage_url: https://license.coscl.org.cn/MulanPSL2/ +spdx_license_key: MulanPSL-2.0 +ignorable_copyrights: + - Copyright (c) Zhong Guo Kai Yuan Yun Lian Meng Jing ICPBei +ignorable_holders: + - Zhong Guo Kai Yuan Yun Lian Meng Jing ICPBei +ignorable_urls: + - http://license.coscl.org.cn/MulanPSL2 +--- + 木兰宽松许可证, 第2版 木兰宽松许可证, 第2版 diff --git a/docs/mulanpsl-2.0.html b/docs/mulanpsl-2.0.html index d303cb980d..2c9fa67782 100644 --- a/docs/mulanpsl-2.0.html +++ b/docs/mulanpsl-2.0.html @@ -286,7 +286,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mulanpsl-2.0.json b/docs/mulanpsl-2.0.json index ad3b76265a..5a54610eaa 100644 --- a/docs/mulanpsl-2.0.json +++ b/docs/mulanpsl-2.0.json @@ -1 +1,19 @@ -{"key": "mulanpsl-2.0", "language": "zh-hans", "short_name": "Mulan PSL v2", "name": "Mulan Permissive Software License, Version 2", "category": "Permissive", "owner": "COSCI", "homepage_url": "https://license.coscl.org.cn/MulanPSL2/", "spdx_license_key": "MulanPSL-2.0", "ignorable_copyrights": ["Copyright (c) Zhong Guo Kai Yuan Yun Lian Meng Jing ICPBei"], "ignorable_holders": ["Zhong Guo Kai Yuan Yun Lian Meng Jing ICPBei"], "ignorable_urls": ["http://license.coscl.org.cn/MulanPSL2"]} \ No newline at end of file +{ + "key": "mulanpsl-2.0", + "language": "zh-hans", + "short_name": "Mulan PSL v2", + "name": "Mulan Permissive Software License, Version 2", + "category": "Permissive", + "owner": "COSCI", + "homepage_url": "https://license.coscl.org.cn/MulanPSL2/", + "spdx_license_key": "MulanPSL-2.0", + "ignorable_copyrights": [ + "Copyright (c) Zhong Guo Kai Yuan Yun Lian Meng Jing ICPBei" + ], + "ignorable_holders": [ + "Zhong Guo Kai Yuan Yun Lian Meng Jing ICPBei" + ], + "ignorable_urls": [ + "http://license.coscl.org.cn/MulanPSL2" + ] +} \ No newline at end of file diff --git a/docs/mule-source-1.1.3.LICENSE b/docs/mule-source-1.1.3.LICENSE index 943716db77..1c23b34260 100644 --- a/docs/mule-source-1.1.3.LICENSE +++ b/docs/mule-source-1.1.3.LICENSE @@ -1,3 +1,25 @@ +--- +key: mule-source-1.1.3 +short_name: Mule Source PL 1.1.3 +name: Mule Source Public License version 1.1.3 +category: Copyleft Limited +owner: MuleSoft Inc. +homepage_url: http://www.MuleSource.com/MSPL +notes: This is a derivative of the MP-1.1 with extra terms +spdx_license_key: LicenseRef-scancode-mule-source-1.1.3 +text_urls: + - https://raw.githubusercontent.com/codehaus/mule-git/master/tags/mule-1.3.3/buildtools/src/main/resources/codecheck/LICENSE.txt +minimum_coverage: 97 +ignorable_copyrights: + - Copyright (c) 2003 MuleSource, Inc. +ignorable_holders: + - MuleSource, Inc. +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.mulesource.com/ + - http://www.mulesource.com/MSPL +--- + MuleSource Public License Version 1.1.3 @@ -440,4 +462,4 @@ the above, the dimensions of the "Powered by Mule" logo must be at least 130 x back to http://www.MuleSource.com. In addition, the copyright notice must remain visible to all users at all times at the bottom of the user interface screen. When users click on the copyright notice, it must direct them back to -http://www.MuleSource.com +http://www.MuleSource.com \ No newline at end of file diff --git a/docs/mule-source-1.1.3.html b/docs/mule-source-1.1.3.html index 86c456b215..b3c4260b36 100644 --- a/docs/mule-source-1.1.3.html +++ b/docs/mule-source-1.1.3.html @@ -607,8 +607,7 @@ back to http://www.MuleSource.com. In addition, the copyright notice must remain visible to all users at all times at the bottom of the user interface screen. When users click on the copyright notice, it must direct them back to -http://www.MuleSource.com - +http://www.MuleSource.com
@@ -620,7 +619,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mule-source-1.1.3.json b/docs/mule-source-1.1.3.json index 3b921149a6..eeb77f06f2 100644 --- a/docs/mule-source-1.1.3.json +++ b/docs/mule-source-1.1.3.json @@ -1 +1,25 @@ -{"key": "mule-source-1.1.3", "short_name": "Mule Source PL 1.1.3", "name": "Mule Source Public License version 1.1.3", "category": "Copyleft Limited", "owner": "MuleSoft Inc.", "homepage_url": "http://www.MuleSource.com/MSPL", "notes": "This is a derivative of the MP-1.1 with extra terms", "spdx_license_key": "LicenseRef-scancode-mule-source-1.1.3", "text_urls": ["https://raw.githubusercontent.com/codehaus/mule-git/master/tags/mule-1.3.3/buildtools/src/main/resources/codecheck/LICENSE.txt"], "minimum_coverage": 97, "ignorable_copyrights": ["Copyright (c) 2003 MuleSource, Inc."], "ignorable_holders": ["MuleSource, Inc."], "ignorable_urls": ["http://www.mozilla.org/MPL/MPL-1.1.html", "http://www.mulesource.com/", "http://www.mulesource.com/MSPL"]} \ No newline at end of file +{ + "key": "mule-source-1.1.3", + "short_name": "Mule Source PL 1.1.3", + "name": "Mule Source Public License version 1.1.3", + "category": "Copyleft Limited", + "owner": "MuleSoft Inc.", + "homepage_url": "http://www.MuleSource.com/MSPL", + "notes": "This is a derivative of the MP-1.1 with extra terms", + "spdx_license_key": "LicenseRef-scancode-mule-source-1.1.3", + "text_urls": [ + "https://raw.githubusercontent.com/codehaus/mule-git/master/tags/mule-1.3.3/buildtools/src/main/resources/codecheck/LICENSE.txt" + ], + "minimum_coverage": 97, + "ignorable_copyrights": [ + "Copyright (c) 2003 MuleSource, Inc." + ], + "ignorable_holders": [ + "MuleSource, Inc." + ], + "ignorable_urls": [ + "http://www.mozilla.org/MPL/MPL-1.1.html", + "http://www.mulesource.com/", + "http://www.mulesource.com/MSPL" + ] +} \ No newline at end of file diff --git a/docs/mule-source-1.1.4.LICENSE b/docs/mule-source-1.1.4.LICENSE index 1f0ab78772..63189bf8eb 100644 --- a/docs/mule-source-1.1.4.LICENSE +++ b/docs/mule-source-1.1.4.LICENSE @@ -1,3 +1,27 @@ +--- +key: mule-source-1.1.4 +short_name: Mule Source PL 1.1.4 +name: Mule Source Public License 1.1.4 +category: Copyleft Limited +owner: MuleSoft Inc. +homepage_url: http://www.MuleSource.com/MSPL +notes: This is a derivative of the MP-1.1 with extra terms +spdx_license_key: LicenseRef-scancode-mule-source-1.1.4 +text_urls: + - https://github.com/codehaus/mule-git/blob/14f4650366b05d691567ba66d14c36dcfbfba47e/tags/muleide-1.3.1-beta1/org.mule.ide/MULE_LICENSE.txt +minimum_coverage: 97 +ignorable_copyrights: + - (c) http://www.mulesource.com + - Copyright (c) 2003 MuleSource, Inc. +ignorable_holders: + - MuleSource, Inc. + - http://www.mulesource.com +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.mulesource.com/ + - http://www.mulesource.com/MSPL +--- + MuleSource Public License Version 1.1.4 @@ -437,4 +461,4 @@ of the Covered Code. : (a) MuleSource Inc. (b) Logo image: http://www.mulesource.com/images/mulesource_logo.gif -(c) http://www.mulesource.com +(c) http://www.mulesource.com \ No newline at end of file diff --git a/docs/mule-source-1.1.4.html b/docs/mule-source-1.1.4.html index d1ccfe4e8f..0e509157b2 100644 --- a/docs/mule-source-1.1.4.html +++ b/docs/mule-source-1.1.4.html @@ -604,8 +604,7 @@ (a) MuleSource Inc. (b) Logo image: http://www.mulesource.com/images/mulesource_logo.gif -(c) http://www.mulesource.com - +(c) http://www.mulesource.com
@@ -617,7 +616,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mule-source-1.1.4.json b/docs/mule-source-1.1.4.json index a680fd6155..d621682c01 100644 --- a/docs/mule-source-1.1.4.json +++ b/docs/mule-source-1.1.4.json @@ -1 +1,27 @@ -{"key": "mule-source-1.1.4", "short_name": "Mule Source PL 1.1.4", "name": "Mule Source Public License 1.1.4", "category": "Copyleft Limited", "owner": "MuleSoft Inc.", "homepage_url": "http://www.MuleSource.com/MSPL", "notes": "This is a derivative of the MP-1.1 with extra terms", "spdx_license_key": "LicenseRef-scancode-mule-source-1.1.4", "text_urls": ["https://github.com/codehaus/mule-git/blob/14f4650366b05d691567ba66d14c36dcfbfba47e/tags/muleide-1.3.1-beta1/org.mule.ide/MULE_LICENSE.txt"], "minimum_coverage": 97, "ignorable_copyrights": ["(c) http://www.mulesource.com", "Copyright (c) 2003 MuleSource, Inc."], "ignorable_holders": ["MuleSource, Inc.", "http://www.mulesource.com"], "ignorable_urls": ["http://www.mozilla.org/MPL/MPL-1.1.html", "http://www.mulesource.com/", "http://www.mulesource.com/MSPL"]} \ No newline at end of file +{ + "key": "mule-source-1.1.4", + "short_name": "Mule Source PL 1.1.4", + "name": "Mule Source Public License 1.1.4", + "category": "Copyleft Limited", + "owner": "MuleSoft Inc.", + "homepage_url": "http://www.MuleSource.com/MSPL", + "notes": "This is a derivative of the MP-1.1 with extra terms", + "spdx_license_key": "LicenseRef-scancode-mule-source-1.1.4", + "text_urls": [ + "https://github.com/codehaus/mule-git/blob/14f4650366b05d691567ba66d14c36dcfbfba47e/tags/muleide-1.3.1-beta1/org.mule.ide/MULE_LICENSE.txt" + ], + "minimum_coverage": 97, + "ignorable_copyrights": [ + "(c) http://www.mulesource.com", + "Copyright (c) 2003 MuleSource, Inc." + ], + "ignorable_holders": [ + "MuleSource, Inc.", + "http://www.mulesource.com" + ], + "ignorable_urls": [ + "http://www.mozilla.org/MPL/MPL-1.1.html", + "http://www.mulesource.com/", + "http://www.mulesource.com/MSPL" + ] +} \ No newline at end of file diff --git a/docs/mulle-kybernetik.LICENSE b/docs/mulle-kybernetik.LICENSE index 70615146c5..b7bd3d9abe 100644 --- a/docs/mulle-kybernetik.LICENSE +++ b/docs/mulle-kybernetik.LICENSE @@ -1,3 +1,13 @@ +--- +key: mulle-kybernetik +short_name: Mulle Kybernetik License +name: Mulle Kybernetik License +category: Permissive +owner: Mulle Kybernetik +homepage_url: http://www.mulle-kybernetik.com/en/index.html +spdx_license_key: LicenseRef-scancode-mulle-kybernetik +--- + Mulle Kybernetik License Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the software, derivative works or modified versions, and any portions thereof, and that both notices appear in supporting documentation, and that credit is given to Mulle Kybernetik in all documents and publicity pertaining to direct or indirect use of this code or its derivatives. diff --git a/docs/mulle-kybernetik.html b/docs/mulle-kybernetik.html index d86e506900..d35e9d8ac8 100644 --- a/docs/mulle-kybernetik.html +++ b/docs/mulle-kybernetik.html @@ -131,7 +131,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mulle-kybernetik.json b/docs/mulle-kybernetik.json index ac89c3ecd6..8fa0dfbb80 100644 --- a/docs/mulle-kybernetik.json +++ b/docs/mulle-kybernetik.json @@ -1 +1,9 @@ -{"key": "mulle-kybernetik", "short_name": "Mulle Kybernetik License", "name": "Mulle Kybernetik License", "category": "Permissive", "owner": "Mulle Kybernetik", "homepage_url": "http://www.mulle-kybernetik.com/en/index.html", "spdx_license_key": "LicenseRef-scancode-mulle-kybernetik"} \ No newline at end of file +{ + "key": "mulle-kybernetik", + "short_name": "Mulle Kybernetik License", + "name": "Mulle Kybernetik License", + "category": "Permissive", + "owner": "Mulle Kybernetik", + "homepage_url": "http://www.mulle-kybernetik.com/en/index.html", + "spdx_license_key": "LicenseRef-scancode-mulle-kybernetik" +} \ No newline at end of file diff --git a/docs/multics.LICENSE b/docs/multics.LICENSE index bf492f527d..4dbb428bfc 100644 --- a/docs/multics.LICENSE +++ b/docs/multics.LICENSE @@ -1,3 +1,29 @@ +--- +key: multics +short_name: Multics License +name: Multics License +category: Permissive +owner: Multics +homepage_url: http://www.multicians.org/ +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: Multics +text_urls: + - http://opensource.org/licenses/multics.txt +osi_url: http://opensource.org/licenses/multics.txt +other_urls: + - http://www.opensource.org/licenses/Multics + - https://opensource.org/licenses/Multics +ignorable_copyrights: + - Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information Systems + Inc. + - Copyright 2006 by BULL HN Information Systems Inc. + - Copyright 2006 by Bull SAS +ignorable_holders: + - BULL HN Information Systems Inc. + - Bull SAS + - Massachusetts Institute of Technology and Honeywell Information Systems Inc. +--- + Permission to use, copy, modify, and distribute these programs and their documentation for any purpose and without fee is hereby granted,provided that the below copyright notice and historical background appear in all diff --git a/docs/multics.html b/docs/multics.html index b89dc06f7f..64f3113fe9 100644 --- a/docs/multics.html +++ b/docs/multics.html @@ -189,7 +189,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/multics.json b/docs/multics.json index e07116ada4..9eef833fdd 100644 --- a/docs/multics.json +++ b/docs/multics.json @@ -1 +1,28 @@ -{"key": "multics", "short_name": "Multics License", "name": "Multics License", "category": "Permissive", "owner": "Multics", "homepage_url": "http://www.multicians.org/", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "Multics", "text_urls": ["http://opensource.org/licenses/multics.txt"], "osi_url": "http://opensource.org/licenses/multics.txt", "other_urls": ["http://www.opensource.org/licenses/Multics", "https://opensource.org/licenses/Multics"], "ignorable_copyrights": ["Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information Systems Inc.", "Copyright 2006 by BULL HN Information Systems Inc.", "Copyright 2006 by Bull SAS"], "ignorable_holders": ["BULL HN Information Systems Inc.", "Bull SAS", "Massachusetts Institute of Technology and Honeywell Information Systems Inc."]} \ No newline at end of file +{ + "key": "multics", + "short_name": "Multics License", + "name": "Multics License", + "category": "Permissive", + "owner": "Multics", + "homepage_url": "http://www.multicians.org/", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "Multics", + "text_urls": [ + "http://opensource.org/licenses/multics.txt" + ], + "osi_url": "http://opensource.org/licenses/multics.txt", + "other_urls": [ + "http://www.opensource.org/licenses/Multics", + "https://opensource.org/licenses/Multics" + ], + "ignorable_copyrights": [ + "Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information Systems Inc.", + "Copyright 2006 by BULL HN Information Systems Inc.", + "Copyright 2006 by Bull SAS" + ], + "ignorable_holders": [ + "BULL HN Information Systems Inc.", + "Bull SAS", + "Massachusetts Institute of Technology and Honeywell Information Systems Inc." + ] +} \ No newline at end of file diff --git a/docs/mup.LICENSE b/docs/mup.LICENSE index 05157adb77..165d9133a2 100644 --- a/docs/mup.LICENSE +++ b/docs/mup.LICENSE @@ -1,3 +1,19 @@ +--- +key: mup +short_name: Mup License +name: Mup License +category: Permissive +owner: Arkkra Enterprises +homepage_url: http://www.arkkra.com/doc/license.html +notes: | + Per Fedora, this is a BSD derived Free license, but clause 3 makes it GPL- + incompatible, due to the need to include the reasons for the changes. A + copy of this license was taken from http://www.arkkra.com/doc/license.html + on 2013-02-15. +spdx_license_key: Mup +text_urls: + - https://fedoraproject.org/wiki/Licensing/Mup +--- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/mup.html b/docs/mup.html index 8033e116d7..715e578715 100644 --- a/docs/mup.html +++ b/docs/mup.html @@ -135,8 +135,7 @@
license_text
-

-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+    
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.
 
@@ -158,7 +157,8 @@
       AboutCode
     

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mup.json b/docs/mup.json index f77c17aeec..a0eccce923 100644 --- a/docs/mup.json +++ b/docs/mup.json @@ -1 +1,13 @@ -{"key": "mup", "short_name": "Mup License", "name": "Mup License", "category": "Permissive", "owner": "Arkkra Enterprises", "homepage_url": "http://www.arkkra.com/doc/license.html", "notes": "Per Fedora, this is a BSD derived Free license, but clause 3 makes it GPL-\nincompatible, due to the need to include the reasons for the changes. A\ncopy of this license was taken from http://www.arkkra.com/doc/license.html\non 2013-02-15.\n", "spdx_license_key": "Mup", "text_urls": ["https://fedoraproject.org/wiki/Licensing/Mup"]} \ No newline at end of file +{ + "key": "mup", + "short_name": "Mup License", + "name": "Mup License", + "category": "Permissive", + "owner": "Arkkra Enterprises", + "homepage_url": "http://www.arkkra.com/doc/license.html", + "notes": "Per Fedora, this is a BSD derived Free license, but clause 3 makes it GPL-\nincompatible, due to the need to include the reasons for the changes. A\ncopy of this license was taken from http://www.arkkra.com/doc/license.html\non 2013-02-15.\n", + "spdx_license_key": "Mup", + "text_urls": [ + "https://fedoraproject.org/wiki/Licensing/Mup" + ] +} \ No newline at end of file diff --git a/docs/musl-exception.LICENSE b/docs/musl-exception.LICENSE index 9e7cace9ba..9324d3daac 100644 --- a/docs/musl-exception.LICENSE +++ b/docs/musl-exception.LICENSE @@ -1,3 +1,14 @@ +--- +key: musl-exception +short_name: musl attribution exception +name: musl attribution exception +category: Permissive +owner: musl Project +homepage_url: http://www.musl-libc.org/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-musl-exception +--- + In addition, permission is hereby granted for all public header files (include/* and arch/*/bits/*) and crt files intended to be linked into applications (crt/*, ldso/dlstart.c, and arch/*/crt_arch.h) to omit @@ -13,4 +24,4 @@ Richard Pennington Stefan Kristiansson Szabolcs Nagy -all of whom have explicitly granted such permission. +all of whom have explicitly granted such permission. \ No newline at end of file diff --git a/docs/musl-exception.html b/docs/musl-exception.html index 4977191a39..bd1a0ec85a 100644 --- a/docs/musl-exception.html +++ b/docs/musl-exception.html @@ -137,8 +137,7 @@ Stefan Kristiansson Szabolcs Nagy -all of whom have explicitly granted such permission. -
+all of whom have explicitly granted such permission.
@@ -150,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/musl-exception.json b/docs/musl-exception.json index 032dac82d9..83af96fc0e 100644 --- a/docs/musl-exception.json +++ b/docs/musl-exception.json @@ -1 +1,10 @@ -{"key": "musl-exception", "short_name": "musl attribution exception", "name": "musl attribution exception", "category": "Permissive", "owner": "musl Project", "homepage_url": "http://www.musl-libc.org/", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-musl-exception"} \ No newline at end of file +{ + "key": "musl-exception", + "short_name": "musl attribution exception", + "name": "musl attribution exception", + "category": "Permissive", + "owner": "musl Project", + "homepage_url": "http://www.musl-libc.org/", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-musl-exception" +} \ No newline at end of file diff --git a/docs/mvt-1.1.LICENSE b/docs/mvt-1.1.LICENSE index 10784f7757..8a11022d30 100644 --- a/docs/mvt-1.1.LICENSE +++ b/docs/mvt-1.1.LICENSE @@ -1,3 +1,15 @@ +--- +key: mvt-1.1 +short_name: MVT License 1.1 +name: MVT License 1.1 +category: Free Restricted +owner: MVT +homepage_url: https://github.com/mvt-project/license/blob/main/MVT%20License%201.1.txt +spdx_license_key: LicenseRef-scancode-mvt-1.1 +ignorable_urls: + - https://license.mvt.re/1.1 +--- + MVT License 1.1 =============== diff --git a/docs/mvt-1.1.html b/docs/mvt-1.1.html index 6af65cc4ee..6511102ff7 100644 --- a/docs/mvt-1.1.html +++ b/docs/mvt-1.1.html @@ -536,7 +536,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mvt-1.1.json b/docs/mvt-1.1.json index 8c8c29d836..1ce4747214 100644 --- a/docs/mvt-1.1.json +++ b/docs/mvt-1.1.json @@ -1 +1,12 @@ -{"key": "mvt-1.1", "short_name": "MVT License 1.1", "name": "MVT License 1.1", "category": "Free Restricted", "owner": "MVT", "homepage_url": "https://github.com/mvt-project/license/blob/main/MVT%20License%201.1.txt", "spdx_license_key": "LicenseRef-scancode-mvt-1.1", "ignorable_urls": ["https://license.mvt.re/1.1"]} \ No newline at end of file +{ + "key": "mvt-1.1", + "short_name": "MVT License 1.1", + "name": "MVT License 1.1", + "category": "Free Restricted", + "owner": "MVT", + "homepage_url": "https://github.com/mvt-project/license/blob/main/MVT%20License%201.1.txt", + "spdx_license_key": "LicenseRef-scancode-mvt-1.1", + "ignorable_urls": [ + "https://license.mvt.re/1.1" + ] +} \ No newline at end of file diff --git a/docs/mx4j.LICENSE b/docs/mx4j.LICENSE index 429fbf96b7..6874bd6457 100644 --- a/docs/mx4j.LICENSE +++ b/docs/mx4j.LICENSE @@ -1,3 +1,24 @@ +--- +key: mx4j +short_name: MX4J License 1.0 +name: MX4J License 1.0 +category: Permissive +owner: MX4J Project +spdx_license_key: LicenseRef-scancode-mx4j +other_urls: + - http://mx4j.sourceforge.net +ignorable_copyrights: + - Copyright (c) by the MX4J contributors +ignorable_holders: + - the MX4J contributors +ignorable_authors: + - the MX4J project (http://mx4j.sourceforge.net) +ignorable_urls: + - http://mx4j.sourceforge.net/ +ignorable_emails: + - biorn_steedom@users.sourceforge.net +--- + The MX4J License, Version 1.0 Copyright (c) by the MX4J contributors. All rights reserved. @@ -47,4 +68,4 @@ SUCH DAMAGE. This software consists of voluntary contributions made by many individuals on behalf of the MX4J project. For more information on MX4J, please see -. +. \ No newline at end of file diff --git a/docs/mx4j.html b/docs/mx4j.html index cd23e4d16b..cb246ea6f2 100644 --- a/docs/mx4j.html +++ b/docs/mx4j.html @@ -211,8 +211,7 @@ This software consists of voluntary contributions made by many individuals on behalf of the MX4J project. For more information on MX4J, please see -<http://mx4j.sourceforge.net>. - +<http://mx4j.sourceforge.net>.
@@ -224,7 +223,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mx4j.json b/docs/mx4j.json index fa68799696..1ca60d0891 100644 --- a/docs/mx4j.json +++ b/docs/mx4j.json @@ -1 +1,26 @@ -{"key": "mx4j", "short_name": "MX4J License 1.0", "name": "MX4J License 1.0", "category": "Permissive", "owner": "MX4J Project", "spdx_license_key": "LicenseRef-scancode-mx4j", "other_urls": ["http://mx4j.sourceforge.net"], "ignorable_copyrights": ["Copyright (c) by the MX4J contributors"], "ignorable_holders": ["the MX4J contributors"], "ignorable_authors": ["the MX4J project (http://mx4j.sourceforge.net)"], "ignorable_urls": ["http://mx4j.sourceforge.net/"], "ignorable_emails": ["biorn_steedom@users.sourceforge.net"]} \ No newline at end of file +{ + "key": "mx4j", + "short_name": "MX4J License 1.0", + "name": "MX4J License 1.0", + "category": "Permissive", + "owner": "MX4J Project", + "spdx_license_key": "LicenseRef-scancode-mx4j", + "other_urls": [ + "http://mx4j.sourceforge.net" + ], + "ignorable_copyrights": [ + "Copyright (c) by the MX4J contributors" + ], + "ignorable_holders": [ + "the MX4J contributors" + ], + "ignorable_authors": [ + "the MX4J project (http://mx4j.sourceforge.net)" + ], + "ignorable_urls": [ + "http://mx4j.sourceforge.net/" + ], + "ignorable_emails": [ + "biorn_steedom@users.sourceforge.net" + ] +} \ No newline at end of file diff --git a/docs/mysql-connector-odbc-exception-2.0.LICENSE b/docs/mysql-connector-odbc-exception-2.0.LICENSE index 3fd33d8e93..b9940cb8e2 100644 --- a/docs/mysql-connector-odbc-exception-2.0.LICENSE +++ b/docs/mysql-connector-odbc-exception-2.0.LICENSE @@ -1,2 +1,22 @@ +--- +key: mysql-connector-odbc-exception-2.0 +short_name: MySQL Connector ODBC exception to GPL 2.0 +name: MySQL Connector ODBC exception to GPL 2.0 +category: Copyleft Limited +owner: Oracle Corporation +is_exception: yes +spdx_license_key: LicenseRef-scancode-mysql-con-odbc-exception-2.0 +other_spdx_license_keys: + - LicenseRef-scancode-mysql-connector-odbc-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + + As a special exception to the MySQL Connector/ODBC GPL license, one is + allowed to use the product with any ODBC manager, even if the ODBC manager + is not licensed under the GPL. In other words: The ODBC manager itself is + not affected by the MySQL Connector/ODBC GPL license. +--- + As a special exception to the MySQL Connector/ODBC GPL license, one is allowed to use the product with any ODBC manager, even if the ODBC manager is not licensed under the GPL. In other words: The ODBC manager itself is not affected by the MySQL Connector/ODBC GPL license. \ No newline at end of file diff --git a/docs/mysql-connector-odbc-exception-2.0.html b/docs/mysql-connector-odbc-exception-2.0.html index 7837d34ce0..2da2f82cb4 100644 --- a/docs/mysql-connector-odbc-exception-2.0.html +++ b/docs/mysql-connector-odbc-exception-2.0.html @@ -158,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mysql-connector-odbc-exception-2.0.json b/docs/mysql-connector-odbc-exception-2.0.json index 28867fbfa7..2fb851e3ca 100644 --- a/docs/mysql-connector-odbc-exception-2.0.json +++ b/docs/mysql-connector-odbc-exception-2.0.json @@ -1 +1,16 @@ -{"key": "mysql-connector-odbc-exception-2.0", "short_name": "MySQL Connector ODBC exception to GPL 2.0", "name": "MySQL Connector ODBC exception to GPL 2.0", "category": "Copyleft Limited", "owner": "Oracle Corporation", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-mysql-con-odbc-exception-2.0", "other_spdx_license_keys": ["LicenseRef-scancode-mysql-connector-odbc-exception-2.0"], "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "\nAs a special exception to the MySQL Connector/ODBC GPL license, one is\nallowed to use the product with any ODBC manager, even if the ODBC manager\nis not licensed under the GPL. In other words: The ODBC manager itself is\nnot affected by the MySQL Connector/ODBC GPL license.\n"} \ No newline at end of file +{ + "key": "mysql-connector-odbc-exception-2.0", + "short_name": "MySQL Connector ODBC exception to GPL 2.0", + "name": "MySQL Connector ODBC exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "Oracle Corporation", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-mysql-con-odbc-exception-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mysql-connector-odbc-exception-2.0" + ], + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "\nAs a special exception to the MySQL Connector/ODBC GPL license, one is\nallowed to use the product with any ODBC manager, even if the ODBC manager\nis not licensed under the GPL. In other words: The ODBC manager itself is\nnot affected by the MySQL Connector/ODBC GPL license.\n" +} \ No newline at end of file diff --git a/docs/mysql-floss-exception-2.0.LICENSE b/docs/mysql-floss-exception-2.0.LICENSE index 1855bc573b..098cc905da 100644 --- a/docs/mysql-floss-exception-2.0.LICENSE +++ b/docs/mysql-floss-exception-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: mysql-floss-exception-2.0 +short_name: MySQL FLOSS exception to GPL 2.0 +name: MySQL FLOSS exception to GPL 2.0 +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: https://mariadb.com/kb/en/mariadb/mariadb-license/#the-floss-exception +is_exception: yes +spdx_license_key: LicenseRef-scancode-mysql-floss-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +ignorable_urls: + - http://www.gnu.org/philosophy/free-sw.html + - http://www.opensource.org/docs/definition.php +--- + MySQL FLOSS License Exception The MySQL AB Exception for Free/Libre and Open Source Software-only Applications Using MySQL Client Libraries (the "FLOSS Exception"). @@ -88,4 +104,4 @@ users. Compliance with one of the licenses noted under the "FLOSS license list" section remains a prerequisite. Package Name Qualifying License and Version - Apache Portable Runtime (APR) Apache Software License 2.0 + Apache Portable Runtime (APR) Apache Software License 2.0 \ No newline at end of file diff --git a/docs/mysql-floss-exception-2.0.html b/docs/mysql-floss-exception-2.0.html index 4b6fa4d307..1106e8814f 100644 --- a/docs/mysql-floss-exception-2.0.html +++ b/docs/mysql-floss-exception-2.0.html @@ -230,8 +230,7 @@ users. Compliance with one of the licenses noted under the "FLOSS license list" section remains a prerequisite. Package Name Qualifying License and Version - Apache Portable Runtime (APR) Apache Software License 2.0 - + Apache Portable Runtime (APR) Apache Software License 2.0
@@ -243,7 +242,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mysql-floss-exception-2.0.json b/docs/mysql-floss-exception-2.0.json index d991d16794..a80fb85ddd 100644 --- a/docs/mysql-floss-exception-2.0.json +++ b/docs/mysql-floss-exception-2.0.json @@ -1 +1,17 @@ -{"key": "mysql-floss-exception-2.0", "short_name": "MySQL FLOSS exception to GPL 2.0", "name": "MySQL FLOSS exception to GPL 2.0", "category": "Copyleft Limited", "owner": "Oracle Corporation", "homepage_url": "https://mariadb.com/kb/en/mariadb/mariadb-license/#the-floss-exception", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-mysql-floss-exception-2.0", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "ignorable_urls": ["http://www.gnu.org/philosophy/free-sw.html", "http://www.opensource.org/docs/definition.php"]} \ No newline at end of file +{ + "key": "mysql-floss-exception-2.0", + "short_name": "MySQL FLOSS exception to GPL 2.0", + "name": "MySQL FLOSS exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "Oracle Corporation", + "homepage_url": "https://mariadb.com/kb/en/mariadb/mariadb-license/#the-floss-exception", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-mysql-floss-exception-2.0", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "ignorable_urls": [ + "http://www.gnu.org/philosophy/free-sw.html", + "http://www.opensource.org/docs/definition.php" + ] +} \ No newline at end of file diff --git a/docs/mysql-linking-exception-2018.LICENSE b/docs/mysql-linking-exception-2018.LICENSE index 80474e978c..ddf5e024a8 100644 --- a/docs/mysql-linking-exception-2018.LICENSE +++ b/docs/mysql-linking-exception-2018.LICENSE @@ -1,3 +1,17 @@ +--- +key: mysql-linking-exception-2018 +short_name: MySQL linking exception 2018 +name: MySQL linking exception 2018 +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: https://raw.githubusercontent.com/mysql/mysql-server/8.0/include/mysql.h +notes: this exception started showing up in all MySQL headers with MySQL 8.0 in 2018 See https://github.com/mysql/mysql-server/commit/c019b26f951a6ace68629c731933c2dfaae2239c +is_exception: yes +spdx_license_key: LicenseRef-scancode-mysql-linking-exception-2018 +other_urls: + - https://github.com/mysql/mysql-server/commit/c019b26f951a6ace68629c731933c2dfaae2239c +--- + This program is also distributed with certain software (including but not limited to OpenSSL) that is licensed under separate terms, as designated in a particular file or component or in included license diff --git a/docs/mysql-linking-exception-2018.html b/docs/mysql-linking-exception-2018.html index c87dcd6ede..db9360d0ae 100644 --- a/docs/mysql-linking-exception-2018.html +++ b/docs/mysql-linking-exception-2018.html @@ -155,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/mysql-linking-exception-2018.json b/docs/mysql-linking-exception-2018.json index 072034e559..44fb189a87 100644 --- a/docs/mysql-linking-exception-2018.json +++ b/docs/mysql-linking-exception-2018.json @@ -1 +1,14 @@ -{"key": "mysql-linking-exception-2018", "short_name": "MySQL linking exception 2018", "name": "MySQL linking exception 2018", "category": "Copyleft Limited", "owner": "Oracle Corporation", "homepage_url": "https://raw.githubusercontent.com/mysql/mysql-server/8.0/include/mysql.h", "notes": "this exception started showing up in all MySQL headers with MySQL 8.0 in 2018 See https://github.com/mysql/mysql-server/commit/c019b26f951a6ace68629c731933c2dfaae2239c", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-mysql-linking-exception-2018", "other_urls": ["https://github.com/mysql/mysql-server/commit/c019b26f951a6ace68629c731933c2dfaae2239c"]} \ No newline at end of file +{ + "key": "mysql-linking-exception-2018", + "short_name": "MySQL linking exception 2018", + "name": "MySQL linking exception 2018", + "category": "Copyleft Limited", + "owner": "Oracle Corporation", + "homepage_url": "https://raw.githubusercontent.com/mysql/mysql-server/8.0/include/mysql.h", + "notes": "this exception started showing up in all MySQL headers with MySQL 8.0 in 2018 See https://github.com/mysql/mysql-server/commit/c019b26f951a6ace68629c731933c2dfaae2239c", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-mysql-linking-exception-2018", + "other_urls": [ + "https://github.com/mysql/mysql-server/commit/c019b26f951a6ace68629c731933c2dfaae2239c" + ] +} \ No newline at end of file diff --git a/docs/naist-2003.LICENSE b/docs/naist-2003.LICENSE index 3c06b4ae67..a3cdbee7f1 100644 --- a/docs/naist-2003.LICENSE +++ b/docs/naist-2003.LICENSE @@ -1,3 +1,18 @@ +--- +key: naist-2003 +short_name: Nara Institute License 2003 +name: Nara Institute License 2003 +category: Permissive +owner: Nara Institute of Science and Technology +notes: this license references the icot-free license +spdx_license_key: NAIST-2003 +other_spdx_license_keys: + - LicenseRef-scancode-naist-2003 +other_urls: + - https://enterprise.dejacode.com/licenses/public/naist-2003/#license-text + - https://github.com/nodejs/node/blob/4a19cc8947b1bba2b2d27816ec3d0edf9b28e503/LICENSE#L343 +--- + Use, reproduction, and distribution of this software is permitted. Any copy of this software, whether in its original form or modified, must include both the above copyright notice and the following diff --git a/docs/naist-2003.html b/docs/naist-2003.html index 57f98cfedb..97d077af84 100644 --- a/docs/naist-2003.html +++ b/docs/naist-2003.html @@ -211,7 +211,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/naist-2003.json b/docs/naist-2003.json index f3099b26a7..509a11cabe 100644 --- a/docs/naist-2003.json +++ b/docs/naist-2003.json @@ -1 +1,16 @@ -{"key": "naist-2003", "short_name": "Nara Institute License 2003", "name": "Nara Institute License 2003", "category": "Permissive", "owner": "Nara Institute of Science and Technology", "notes": "this license references the icot-free license", "spdx_license_key": "NAIST-2003", "other_spdx_license_keys": ["LicenseRef-scancode-naist-2003"], "other_urls": ["https://enterprise.dejacode.com/licenses/public/naist-2003/#license-text", "https://github.com/nodejs/node/blob/4a19cc8947b1bba2b2d27816ec3d0edf9b28e503/LICENSE#L343"]} \ No newline at end of file +{ + "key": "naist-2003", + "short_name": "Nara Institute License 2003", + "name": "Nara Institute License 2003", + "category": "Permissive", + "owner": "Nara Institute of Science and Technology", + "notes": "this license references the icot-free license", + "spdx_license_key": "NAIST-2003", + "other_spdx_license_keys": [ + "LicenseRef-scancode-naist-2003" + ], + "other_urls": [ + "https://enterprise.dejacode.com/licenses/public/naist-2003/#license-text", + "https://github.com/nodejs/node/blob/4a19cc8947b1bba2b2d27816ec3d0edf9b28e503/LICENSE#L343" + ] +} \ No newline at end of file diff --git a/docs/nant-exception-2.0-plus.LICENSE b/docs/nant-exception-2.0-plus.LICENSE index 421ded7c50..b507a60851 100644 --- a/docs/nant-exception-2.0-plus.LICENSE +++ b/docs/nant-exception-2.0-plus.LICENSE @@ -1,3 +1,49 @@ +--- +key: nant-exception-2.0-plus +short_name: NAnt exception to GPL 2.0 or later +name: NAnt exception to GPL 2.0 or later +category: Copyleft Limited +owner: NAnt Project +is_exception: yes +spdx_license_key: LicenseRef-scancode-nant-exception-2.0-plus +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + 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 2 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, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + In addition, as a special exception, Gerry Shaw gives permission to link + the + code of this program with the Microsoft .NET library (or with modified + versions + of Microsoft .NET library that use the same license as the Microsoft .NET + library), and distribute linked combinations including the two. You must + obey + the GNU General Public License in all respects for all of the code used + other + than the Microsoft .NET library. If you modify this file, you may extend + this + exception to your version of the file, but you are not obligated to do so. + If + you do not wish to do so, delete this exception statement from your + version. + A copy of the GNU General Public License is available in the COPYING.txt + file + included with all NAnt distributions. + For more licensing information refer to the GNU General Public License on + the + GNU Project web site. + http://www.gnu.org/copyleft/gpl.html +--- + In addition, as a special exception, Gerry Shaw gives permission to link the code of this program with the Microsoft .NET library (or with modified versions of Microsoft .NET library that use the same license as the Microsoft .NET diff --git a/docs/nant-exception-2.0-plus.html b/docs/nant-exception-2.0-plus.html index f4289a9fc2..5a2bf4e36b 100644 --- a/docs/nant-exception-2.0-plus.html +++ b/docs/nant-exception-2.0-plus.html @@ -183,7 +183,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nant-exception-2.0-plus.json b/docs/nant-exception-2.0-plus.json index fc04c2b953..a39bb51429 100644 --- a/docs/nant-exception-2.0-plus.json +++ b/docs/nant-exception-2.0-plus.json @@ -1 +1,13 @@ -{"key": "nant-exception-2.0-plus", "short_name": "NAnt exception to GPL 2.0 or later", "name": "NAnt exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "NAnt Project", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-nant-exception-2.0-plus", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\nIn addition, as a special exception, Gerry Shaw gives permission to link\nthe\ncode of this program with the Microsoft .NET library (or with modified\nversions\nof Microsoft .NET library that use the same license as the Microsoft .NET\nlibrary), and distribute linked combinations including the two. You must\nobey\nthe GNU General Public License in all respects for all of the code used\nother\nthan the Microsoft .NET library. If you modify this file, you may extend\nthis\nexception to your version of the file, but you are not obligated to do so.\nIf\nyou do not wish to do so, delete this exception statement from your\nversion.\nA copy of the GNU General Public License is available in the COPYING.txt\nfile\nincluded with all NAnt distributions.\nFor more licensing information refer to the GNU General Public License on\nthe\nGNU Project web site.\nhttp://www.gnu.org/copyleft/gpl.html\n"} \ No newline at end of file +{ + "key": "nant-exception-2.0-plus", + "short_name": "NAnt exception to GPL 2.0 or later", + "name": "NAnt exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "NAnt Project", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-nant-exception-2.0-plus", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\nIn addition, as a special exception, Gerry Shaw gives permission to link\nthe\ncode of this program with the Microsoft .NET library (or with modified\nversions\nof Microsoft .NET library that use the same license as the Microsoft .NET\nlibrary), and distribute linked combinations including the two. You must\nobey\nthe GNU General Public License in all respects for all of the code used\nother\nthan the Microsoft .NET library. If you modify this file, you may extend\nthis\nexception to your version of the file, but you are not obligated to do so.\nIf\nyou do not wish to do so, delete this exception statement from your\nversion.\nA copy of the GNU General Public License is available in the COPYING.txt\nfile\nincluded with all NAnt distributions.\nFor more licensing information refer to the GNU General Public License on\nthe\nGNU Project web site.\nhttp://www.gnu.org/copyleft/gpl.html\n" +} \ No newline at end of file diff --git a/docs/nasa-1.3.LICENSE b/docs/nasa-1.3.LICENSE index 36460b2374..7371182128 100644 --- a/docs/nasa-1.3.LICENSE +++ b/docs/nasa-1.3.LICENSE @@ -1,3 +1,27 @@ +--- +key: nasa-1.3 +short_name: NASA 1.3 +name: NASA Open Source License v1.3 +category: Copyleft Limited +owner: OSI - Open Source Initiative +homepage_url: http://opensource.arc.nasa.gov/static/html/NASA_Open_Source_Agreement_1.3.txt +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: NASA-1.3 +osi_license_key: NASA-1.3 +text_urls: + - http://opensource.arc.nasa.gov/static/html/NASA_Open_Source_Agreement_1.3.txt +other_urls: + - http://ti.arc.nasa.gov/opensource/nosa/ + - http://www.gnu.org/licenses/license-list.html#NASA + - http://www.opensource.org/licenses/NASA-1.3 + - https://opensource.org/licenses/NASA-1.3 +minimum_coverage: 10 +ignorable_copyrights: + - Copyright YEAR United States Government as represented by +ignorable_holders: + - United States Government as represented by +--- + NASA OPEN SOURCE AGREEMENT VERSION 1.3 THIS OPEN SOURCE AGREEMENT ("AGREEMENT") DEFINES THE RIGHTS OF USE, REPRODUCTION, DISTRIBUTION, MODIFICATION AND REDISTRIBUTION OF CERTAIN COMPUTER SOFTWARE ORIGINALLY RELEASED BY THE UNITED STATES GOVERNMENT AS REPRESENTED BY THE GOVERNMENT AGENCY LISTED BELOW ("GOVERNMENT AGENCY"). THE UNITED STATES GOVERNMENT, AS REPRESENTED BY GOVERNMENT AGENCY, IS AN INTENDED THIRD-PARTY BENEFICIARY OF ALL SUBSEQUENT DISTRIBUTIONS OR REDISTRIBUTIONS OF THE SUBJECT SOFTWARE. ANYONE WHO USES, REPRODUCES, DISTRIBUTES, MODIFIES OR REDISTRIBUTES THE SUBJECT SOFTWARE, AS DEFINED HEREIN, OR ANY PART THEREOF, IS, BY THAT ACTION, ACCEPTING IN FULL THE RESPONSIBILITIES AND OBLIGATIONS CONTAINED IN THIS AGREEMENT. diff --git a/docs/nasa-1.3.html b/docs/nasa-1.3.html index 79c61ed3dc..63f92754d1 100644 --- a/docs/nasa-1.3.html +++ b/docs/nasa-1.3.html @@ -287,7 +287,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nasa-1.3.json b/docs/nasa-1.3.json index bd86af2dd2..b3215f37d9 100644 --- a/docs/nasa-1.3.json +++ b/docs/nasa-1.3.json @@ -1 +1,27 @@ -{"key": "nasa-1.3", "short_name": "NASA 1.3", "name": "NASA Open Source License v1.3", "category": "Copyleft Limited", "owner": "OSI - Open Source Initiative", "homepage_url": "http://opensource.arc.nasa.gov/static/html/NASA_Open_Source_Agreement_1.3.txt", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "NASA-1.3", "osi_license_key": "NASA-1.3", "text_urls": ["http://opensource.arc.nasa.gov/static/html/NASA_Open_Source_Agreement_1.3.txt"], "other_urls": ["http://ti.arc.nasa.gov/opensource/nosa/", "http://www.gnu.org/licenses/license-list.html#NASA", "http://www.opensource.org/licenses/NASA-1.3", "https://opensource.org/licenses/NASA-1.3"], "minimum_coverage": 10, "ignorable_copyrights": ["Copyright YEAR United States Government as represented by"], "ignorable_holders": ["United States Government as represented by"]} \ No newline at end of file +{ + "key": "nasa-1.3", + "short_name": "NASA 1.3", + "name": "NASA Open Source License v1.3", + "category": "Copyleft Limited", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://opensource.arc.nasa.gov/static/html/NASA_Open_Source_Agreement_1.3.txt", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "NASA-1.3", + "osi_license_key": "NASA-1.3", + "text_urls": [ + "http://opensource.arc.nasa.gov/static/html/NASA_Open_Source_Agreement_1.3.txt" + ], + "other_urls": [ + "http://ti.arc.nasa.gov/opensource/nosa/", + "http://www.gnu.org/licenses/license-list.html#NASA", + "http://www.opensource.org/licenses/NASA-1.3", + "https://opensource.org/licenses/NASA-1.3" + ], + "minimum_coverage": 10, + "ignorable_copyrights": [ + "Copyright YEAR United States Government as represented by" + ], + "ignorable_holders": [ + "United States Government as represented by" + ] +} \ No newline at end of file diff --git a/docs/naughter.LICENSE b/docs/naughter.LICENSE index b6686772cb..5b18a842d8 100644 --- a/docs/naughter.LICENSE +++ b/docs/naughter.LICENSE @@ -1,3 +1,12 @@ +--- +key: naughter +short_name: Naughter Software License +name: Naughter Software License +category: Free Restricted +owner: Naughter Software +spdx_license_key: LicenseRef-scancode-naughter +--- + Naughter Software License You are allowed to include the source code in any product (commercial, shareware, freeware or otherwise) when your product is released in binary form. diff --git a/docs/naughter.html b/docs/naughter.html index 84394a7e46..603f68deb4 100644 --- a/docs/naughter.html +++ b/docs/naughter.html @@ -128,7 +128,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/naughter.json b/docs/naughter.json index 99e939fd1b..fc562619a6 100644 --- a/docs/naughter.json +++ b/docs/naughter.json @@ -1 +1,8 @@ -{"key": "naughter", "short_name": "Naughter Software License", "name": "Naughter Software License", "category": "Free Restricted", "owner": "Naughter Software", "spdx_license_key": "LicenseRef-scancode-naughter"} \ No newline at end of file +{ + "key": "naughter", + "short_name": "Naughter Software License", + "name": "Naughter Software License", + "category": "Free Restricted", + "owner": "Naughter Software", + "spdx_license_key": "LicenseRef-scancode-naughter" +} \ No newline at end of file diff --git a/docs/naumen.LICENSE b/docs/naumen.LICENSE index 4e910e96f0..c1edc81566 100644 --- a/docs/naumen.LICENSE +++ b/docs/naumen.LICENSE @@ -1,3 +1,24 @@ +--- +key: naumen +short_name: NAUMEN Public License +name: NAUMEN Public License +category: Permissive +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/naumen.php +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: Naumen +text_urls: + - http://www.opensource.org/licenses/naumen.php +osi_url: http://www.opensource.org/licenses/naumen.php +other_urls: + - http://www.opensource.org/licenses/Naumen + - https://opensource.org/licenses/Naumen +ignorable_copyrights: + - Copyright (c) NAUMEN (tm) and Contributors +ignorable_holders: + - NAUMEN (tm) and Contributors +--- + NAUMEN Public License This software is Copyright (c) NAUMEN (tm) and Contributors. All rights reserved. diff --git a/docs/naumen.html b/docs/naumen.html index c73aa49175..f2009fbea2 100644 --- a/docs/naumen.html +++ b/docs/naumen.html @@ -197,7 +197,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/naumen.json b/docs/naumen.json index 8b54a5accd..3573995846 100644 --- a/docs/naumen.json +++ b/docs/naumen.json @@ -1 +1,24 @@ -{"key": "naumen", "short_name": "NAUMEN Public License", "name": "NAUMEN Public License", "category": "Permissive", "owner": "OSI - Open Source Initiative", "homepage_url": "http://www.opensource.org/licenses/naumen.php", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "Naumen", "text_urls": ["http://www.opensource.org/licenses/naumen.php"], "osi_url": "http://www.opensource.org/licenses/naumen.php", "other_urls": ["http://www.opensource.org/licenses/Naumen", "https://opensource.org/licenses/Naumen"], "ignorable_copyrights": ["Copyright (c) NAUMEN (tm) and Contributors"], "ignorable_holders": ["NAUMEN (tm) and Contributors"]} \ No newline at end of file +{ + "key": "naumen", + "short_name": "NAUMEN Public License", + "name": "NAUMEN Public License", + "category": "Permissive", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://www.opensource.org/licenses/naumen.php", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "Naumen", + "text_urls": [ + "http://www.opensource.org/licenses/naumen.php" + ], + "osi_url": "http://www.opensource.org/licenses/naumen.php", + "other_urls": [ + "http://www.opensource.org/licenses/Naumen", + "https://opensource.org/licenses/Naumen" + ], + "ignorable_copyrights": [ + "Copyright (c) NAUMEN (tm) and Contributors" + ], + "ignorable_holders": [ + "NAUMEN (tm) and Contributors" + ] +} \ No newline at end of file diff --git a/docs/nbpl-1.0.LICENSE b/docs/nbpl-1.0.LICENSE index d337579230..bcb6b248bc 100644 --- a/docs/nbpl-1.0.LICENSE +++ b/docs/nbpl-1.0.LICENSE @@ -1,3 +1,22 @@ +--- +key: nbpl-1.0 +short_name: NBPL-1.0 +name: Net Boolean Public License 1.0 +category: Copyleft Limited +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894 +notes: | + Per SPDX.org, this license was released 22 August 1998. This license was + issued twice, but only with formatting differences. +spdx_license_key: NBPL-1.0 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894 +ignorable_copyrights: + - Copyright 1998, Net Boolean Incorporated, Redwood City, California, USA +ignorable_holders: + - Net Boolean Incorporated, Redwood City, California, USA +--- + The Net Boolean Public License Version 1, 22 August 1998 diff --git a/docs/nbpl-1.0.html b/docs/nbpl-1.0.html index d655fd454f..24c284fd37 100644 --- a/docs/nbpl-1.0.html +++ b/docs/nbpl-1.0.html @@ -284,7 +284,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nbpl-1.0.json b/docs/nbpl-1.0.json index c5b2a17180..e4a715ec91 100644 --- a/docs/nbpl-1.0.json +++ b/docs/nbpl-1.0.json @@ -1 +1,19 @@ -{"key": "nbpl-1.0", "short_name": "NBPL-1.0", "name": "Net Boolean Public License 1.0", "category": "Copyleft Limited", "owner": "OpenLDAP Foundation", "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894", "notes": "Per SPDX.org, this license was released 22 August 1998. This license was\nissued twice, but only with formatting differences.\n", "spdx_license_key": "NBPL-1.0", "text_urls": ["http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894"], "ignorable_copyrights": ["Copyright 1998, Net Boolean Incorporated, Redwood City, California, USA"], "ignorable_holders": ["Net Boolean Incorporated, Redwood City, California, USA"]} \ No newline at end of file +{ + "key": "nbpl-1.0", + "short_name": "NBPL-1.0", + "name": "Net Boolean Public License 1.0", + "category": "Copyleft Limited", + "owner": "OpenLDAP Foundation", + "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894", + "notes": "Per SPDX.org, this license was released 22 August 1998. This license was\nissued twice, but only with formatting differences.\n", + "spdx_license_key": "NBPL-1.0", + "text_urls": [ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894" + ], + "ignorable_copyrights": [ + "Copyright 1998, Net Boolean Incorporated, Redwood City, California, USA" + ], + "ignorable_holders": [ + "Net Boolean Incorporated, Redwood City, California, USA" + ] +} \ No newline at end of file diff --git a/docs/ncbi.LICENSE b/docs/ncbi.LICENSE index d0e35b0e36..42cb2e39cc 100644 --- a/docs/ncbi.LICENSE +++ b/docs/ncbi.LICENSE @@ -1,3 +1,15 @@ +--- +key: ncbi +short_name: NCBI Public Domain Notice +name: NCBI Public Domain Notice +category: Public Domain +owner: NCBI +homepage_url: https://github.com/ncbi/ngs/blob/master/LICENSE#L8 +spdx_license_key: LicenseRef-scancode-ncbi +other_urls: + - https://blast.ncbi.nlm.nih.gov/Blast.cgi +--- + PUBLIC DOMAIN NOTICE National Center for Biotechnology Information diff --git a/docs/ncbi.html b/docs/ncbi.html index 6b8ff26510..f3bf9132da 100644 --- a/docs/ncbi.html +++ b/docs/ncbi.html @@ -155,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ncbi.json b/docs/ncbi.json index 4191fb4233..74ccaecae6 100644 --- a/docs/ncbi.json +++ b/docs/ncbi.json @@ -1 +1,12 @@ -{"key": "ncbi", "short_name": "NCBI Public Domain Notice", "name": "NCBI Public Domain Notice", "category": "Public Domain", "owner": "NCBI", "homepage_url": "https://github.com/ncbi/ngs/blob/master/LICENSE#L8", "spdx_license_key": "LicenseRef-scancode-ncbi", "other_urls": ["https://blast.ncbi.nlm.nih.gov/Blast.cgi"]} \ No newline at end of file +{ + "key": "ncbi", + "short_name": "NCBI Public Domain Notice", + "name": "NCBI Public Domain Notice", + "category": "Public Domain", + "owner": "NCBI", + "homepage_url": "https://github.com/ncbi/ngs/blob/master/LICENSE#L8", + "spdx_license_key": "LicenseRef-scancode-ncbi", + "other_urls": [ + "https://blast.ncbi.nlm.nih.gov/Blast.cgi" + ] +} \ No newline at end of file diff --git a/docs/ncgl-uk-2.0.LICENSE b/docs/ncgl-uk-2.0.LICENSE index 57806084a0..a59ac79d45 100644 --- a/docs/ncgl-uk-2.0.LICENSE +++ b/docs/ncgl-uk-2.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: ncgl-uk-2.0 +short_name: Non-Commercial Government Licence +name: Non-Commercial Government Licence +category: Free Restricted +owner: U.K. National Archives +homepage_url: http://www.nationalarchives.gov.uk/doc/non-commercial-government-licence/version/2/ +spdx_license_key: NCGL-UK-2.0 +other_urls: + - http://www.nationalarchives.gov.uk/doc/non-commercial-government-licence-cymraeg/version/2/ + - https://github.com/spdx/license-list-XML/blob/master/src/Apache-2.0.xml +--- + Non-Commercial Government Licence for public sector information diff --git a/docs/ncgl-uk-2.0.html b/docs/ncgl-uk-2.0.html index 8dd29af085..4b4a88c988 100644 --- a/docs/ncgl-uk-2.0.html +++ b/docs/ncgl-uk-2.0.html @@ -209,7 +209,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ncgl-uk-2.0.json b/docs/ncgl-uk-2.0.json index c582ad6b61..bd84450019 100644 --- a/docs/ncgl-uk-2.0.json +++ b/docs/ncgl-uk-2.0.json @@ -1 +1,13 @@ -{"key": "ncgl-uk-2.0", "short_name": "Non-Commercial Government Licence", "name": "Non-Commercial Government Licence", "category": "Free Restricted", "owner": "U.K. National Archives", "homepage_url": "http://www.nationalarchives.gov.uk/doc/non-commercial-government-licence/version/2/", "spdx_license_key": "NCGL-UK-2.0", "other_urls": ["http://www.nationalarchives.gov.uk/doc/non-commercial-government-licence-cymraeg/version/2/", "https://github.com/spdx/license-list-XML/blob/master/src/Apache-2.0.xml"]} \ No newline at end of file +{ + "key": "ncgl-uk-2.0", + "short_name": "Non-Commercial Government Licence", + "name": "Non-Commercial Government Licence", + "category": "Free Restricted", + "owner": "U.K. National Archives", + "homepage_url": "http://www.nationalarchives.gov.uk/doc/non-commercial-government-licence/version/2/", + "spdx_license_key": "NCGL-UK-2.0", + "other_urls": [ + "http://www.nationalarchives.gov.uk/doc/non-commercial-government-licence-cymraeg/version/2/", + "https://github.com/spdx/license-list-XML/blob/master/src/Apache-2.0.xml" + ] +} \ No newline at end of file diff --git a/docs/nero-eula.LICENSE b/docs/nero-eula.LICENSE index d559ef2079..647dcf4c69 100644 --- a/docs/nero-eula.LICENSE +++ b/docs/nero-eula.LICENSE @@ -1,3 +1,68 @@ +--- +key: nero-eula +short_name: Nero EULA +name: Nero EULA +category: Commercial +owner: Nero AG +homepage_url: http://www.nero.com/enu/corp-legal/end-user-agreement.php +notes: composite +spdx_license_key: LicenseRef-scancode-nero-eula +faq_url: http://www.nero.com/enu/downloads/ +minimum_coverage: 80 +ignorable_copyrights: + - (c) 2012 Nero AG. + - (c) DTS, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - Copyright (c) 1992-1999 Dolby Laboratories, Inc. + - Copyright (c) 1996-2012 Nero AG and its licensors + - Copyright (c) 1999-2002. Microsoft Corporation + - Copyright (c) 2008 Microsoft Corporation + - Copyright 2011 Dolby Laboratories + - copyright (c) 1998-2005 The OpenSSL Project + - copyright (c) 2000-2008 Gracenote + - copyright (c) 2000-2008 Gracenote. Gracenote Software + - copyright (c) 2002, Dr Brian Gladman, Worcester, UK. + - copyright 1997-2005 Simon Tatham + - copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen + Massar, Wez Furlong, Nicolas Barry, Justin Bradford, Ben Harris, Malcolm Smith, Ahmad + Khalifa, Markus Kuhn, and CORE SDI S.A. +ignorable_holders: + - DTS, Inc. + - Dolby Laboratories + - Dolby Laboratories, Inc. + - Dr Brian Gladman, Worcester, UK. + - Gracenote + - Gracenote. Gracenote Software + - Microsoft Corporation + - Nero AG and its licensors + - Nero AG. + - RSA Data Security, Inc. + - Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez + Furlong, Nicolas Barry, Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus + Kuhn, and CORE SDI S.A. + - Simon Tatham + - The OpenSSL Project +ignorable_authors: + - Coding Technologies + - the OpenSSL Project +ignorable_urls: + - http://ffmpeg.mplayerhq.hu/ + - http://fp.gladman.plus.com/ + - http://www.7-zip.org/license.txt + - http://www.codingtechnologies.com/ + - http://www.gracenote.com/ + - http://www.mp3licensing.com/ + - http://www.mpeg4ip.net/ + - http://www.nero.com/ + - http://www.nero.com/link.php?topic_id=7106 + - http://www.nero.com/link.php?topic_id=7107 + - http://www.openssl.org/ +ignorable_emails: + - PRESS@NERO.COM + - legal@nero.com + - openssl-core@openssl.org +--- + Licensor: Nero AG ("Nero") THIS IS A LEGAL AGREEMENT BETWEEN YOU, THE "END USER", AND NERO AG, RÜPPURRER STRASSE 1A, 76307 KARLSRUHE, GERMANY. diff --git a/docs/nero-eula.html b/docs/nero-eula.html index 950e70daeb..875364606c 100644 --- a/docs/nero-eula.html +++ b/docs/nero-eula.html @@ -531,7 +531,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nero-eula.json b/docs/nero-eula.json index e68db8355e..1c010916a8 100644 --- a/docs/nero-eula.json +++ b/docs/nero-eula.json @@ -1 +1,65 @@ -{"key": "nero-eula", "short_name": "Nero EULA", "name": "Nero EULA", "category": "Commercial", "owner": "Nero AG", "homepage_url": "http://www.nero.com/enu/corp-legal/end-user-agreement.php", "notes": "composite", "spdx_license_key": "LicenseRef-scancode-nero-eula", "faq_url": "http://www.nero.com/enu/downloads/", "minimum_coverage": 80, "ignorable_copyrights": ["(c) 2012 Nero AG.", "(c) DTS, Inc.", "Copyright (c) 1991-2, RSA Data Security, Inc.", "Copyright (c) 1992-1999 Dolby Laboratories, Inc.", "Copyright (c) 1996-2012 Nero AG and its licensors", "Copyright (c) 1999-2002. Microsoft Corporation", "Copyright (c) 2008 Microsoft Corporation", "Copyright 2011 Dolby Laboratories", "copyright (c) 1998-2005 The OpenSSL Project", "copyright (c) 2000-2008 Gracenote", "copyright (c) 2000-2008 Gracenote. Gracenote Software", "copyright (c) 2002, Dr Brian Gladman, Worcester, UK.", "copyright 1997-2005 Simon Tatham", "copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus Kuhn, and CORE SDI S.A."], "ignorable_holders": ["DTS, Inc.", "Dolby Laboratories", "Dolby Laboratories, Inc.", "Dr Brian Gladman, Worcester, UK.", "Gracenote", "Gracenote. Gracenote Software", "Microsoft Corporation", "Nero AG and its licensors", "Nero AG.", "RSA Data Security, Inc.", "Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus Kuhn, and CORE SDI S.A.", "Simon Tatham", "The OpenSSL Project"], "ignorable_authors": ["Coding Technologies", "the OpenSSL Project"], "ignorable_urls": ["http://ffmpeg.mplayerhq.hu/", "http://fp.gladman.plus.com/", "http://www.7-zip.org/license.txt", "http://www.codingtechnologies.com/", "http://www.gracenote.com/", "http://www.mp3licensing.com/", "http://www.mpeg4ip.net/", "http://www.nero.com/", "http://www.nero.com/link.php?topic_id=7106", "http://www.nero.com/link.php?topic_id=7107", "http://www.openssl.org/"], "ignorable_emails": ["PRESS@NERO.COM", "legal@nero.com", "openssl-core@openssl.org"]} \ No newline at end of file +{ + "key": "nero-eula", + "short_name": "Nero EULA", + "name": "Nero EULA", + "category": "Commercial", + "owner": "Nero AG", + "homepage_url": "http://www.nero.com/enu/corp-legal/end-user-agreement.php", + "notes": "composite", + "spdx_license_key": "LicenseRef-scancode-nero-eula", + "faq_url": "http://www.nero.com/enu/downloads/", + "minimum_coverage": 80, + "ignorable_copyrights": [ + "(c) 2012 Nero AG.", + "(c) DTS, Inc.", + "Copyright (c) 1991-2, RSA Data Security, Inc.", + "Copyright (c) 1992-1999 Dolby Laboratories, Inc.", + "Copyright (c) 1996-2012 Nero AG and its licensors", + "Copyright (c) 1999-2002. Microsoft Corporation", + "Copyright (c) 2008 Microsoft Corporation", + "Copyright 2011 Dolby Laboratories", + "copyright (c) 1998-2005 The OpenSSL Project", + "copyright (c) 2000-2008 Gracenote", + "copyright (c) 2000-2008 Gracenote. Gracenote Software", + "copyright (c) 2002, Dr Brian Gladman, Worcester, UK.", + "copyright 1997-2005 Simon Tatham", + "copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus Kuhn, and CORE SDI S.A." + ], + "ignorable_holders": [ + "DTS, Inc.", + "Dolby Laboratories", + "Dolby Laboratories, Inc.", + "Dr Brian Gladman, Worcester, UK.", + "Gracenote", + "Gracenote. Gracenote Software", + "Microsoft Corporation", + "Nero AG and its licensors", + "Nero AG.", + "RSA Data Security, Inc.", + "Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus Kuhn, and CORE SDI S.A.", + "Simon Tatham", + "The OpenSSL Project" + ], + "ignorable_authors": [ + "Coding Technologies", + "the OpenSSL Project" + ], + "ignorable_urls": [ + "http://ffmpeg.mplayerhq.hu/", + "http://fp.gladman.plus.com/", + "http://www.7-zip.org/license.txt", + "http://www.codingtechnologies.com/", + "http://www.gracenote.com/", + "http://www.mp3licensing.com/", + "http://www.mpeg4ip.net/", + "http://www.nero.com/", + "http://www.nero.com/link.php?topic_id=7106", + "http://www.nero.com/link.php?topic_id=7107", + "http://www.openssl.org/" + ], + "ignorable_emails": [ + "PRESS@NERO.COM", + "legal@nero.com", + "openssl-core@openssl.org" + ] +} \ No newline at end of file diff --git a/docs/net-snmp.LICENSE b/docs/net-snmp.LICENSE index 9ac941a019..fceaa08b71 100644 --- a/docs/net-snmp.LICENSE +++ b/docs/net-snmp.LICENSE @@ -1,3 +1,41 @@ +--- +key: net-snmp +short_name: Net SNMP License +name: Net SNMP License +category: Permissive +owner: Net-SNMP +homepage_url: http://net-snmp.sourceforge.net/about/license.html +notes: composite +spdx_license_key: Net-SNMP +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 2001-2003, Networks Associates Technology, Inc + - Copyright (c) 2003 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California + 95054, U.S.A. + - Copyright (c) 2003-2006, Sparta, Inc + - Copyright (c) 2004, Cisco, Inc and Information Network Center of Beijing University of + Posts and Telecommunications + - Copyright (c) Fabasoft R&D Software GmbH & Co + - Copyright 1989, 1991, 1992 by Carnegie Mellon University + - Copyright 1996, 1998-2000 The Regents of the University of California + - copyright (c) 2001-2003, Cambridge Broadband Ltd. +ignorable_holders: + - Cambridge Broadband Ltd. + - Carnegie Mellon University + - Cisco, Inc and Information Network Center of Beijing University of Posts and Telecommunications + - Fabasoft R&D Software GmbH & Co + - Networks Associates Technology, Inc + - Sparta, Inc + - Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. + - The Regents of the University of California +ignorable_authors: + - Bernhard Penz +ignorable_urls: + - http://net-snmp.sourceforge.net/about/license.html +ignorable_emails: + - oss@fabasoft.com +--- + Net SNMP License http://net-snmp.sourceforge.net/about/license.html diff --git a/docs/net-snmp.html b/docs/net-snmp.html index 6d50488ab2..334709dc09 100644 --- a/docs/net-snmp.html +++ b/docs/net-snmp.html @@ -428,7 +428,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/net-snmp.json b/docs/net-snmp.json index 2f913dc517..ec5fb92cf8 100644 --- a/docs/net-snmp.json +++ b/docs/net-snmp.json @@ -1 +1,40 @@ -{"key": "net-snmp", "short_name": "Net SNMP License", "name": "Net SNMP License", "category": "Permissive", "owner": "Net-SNMP", "homepage_url": "http://net-snmp.sourceforge.net/about/license.html", "notes": "composite", "spdx_license_key": "Net-SNMP", "minimum_coverage": 70, "ignorable_copyrights": ["Copyright (c) 2001-2003, Networks Associates Technology, Inc", "Copyright (c) 2003 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A.", "Copyright (c) 2003-2006, Sparta, Inc", "Copyright (c) 2004, Cisco, Inc and Information Network Center of Beijing University of Posts and Telecommunications", "Copyright (c) Fabasoft R&D Software GmbH & Co", "Copyright 1989, 1991, 1992 by Carnegie Mellon University", "Copyright 1996, 1998-2000 The Regents of the University of California", "copyright (c) 2001-2003, Cambridge Broadband Ltd."], "ignorable_holders": ["Cambridge Broadband Ltd.", "Carnegie Mellon University", "Cisco, Inc and Information Network Center of Beijing University of Posts and Telecommunications", "Fabasoft R&D Software GmbH & Co", "Networks Associates Technology, Inc", "Sparta, Inc", "Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A.", "The Regents of the University of California"], "ignorable_authors": ["Bernhard Penz"], "ignorable_urls": ["http://net-snmp.sourceforge.net/about/license.html"], "ignorable_emails": ["oss@fabasoft.com"]} \ No newline at end of file +{ + "key": "net-snmp", + "short_name": "Net SNMP License", + "name": "Net SNMP License", + "category": "Permissive", + "owner": "Net-SNMP", + "homepage_url": "http://net-snmp.sourceforge.net/about/license.html", + "notes": "composite", + "spdx_license_key": "Net-SNMP", + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright (c) 2001-2003, Networks Associates Technology, Inc", + "Copyright (c) 2003 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A.", + "Copyright (c) 2003-2006, Sparta, Inc", + "Copyright (c) 2004, Cisco, Inc and Information Network Center of Beijing University of Posts and Telecommunications", + "Copyright (c) Fabasoft R&D Software GmbH & Co", + "Copyright 1989, 1991, 1992 by Carnegie Mellon University", + "Copyright 1996, 1998-2000 The Regents of the University of California", + "copyright (c) 2001-2003, Cambridge Broadband Ltd." + ], + "ignorable_holders": [ + "Cambridge Broadband Ltd.", + "Carnegie Mellon University", + "Cisco, Inc and Information Network Center of Beijing University of Posts and Telecommunications", + "Fabasoft R&D Software GmbH & Co", + "Networks Associates Technology, Inc", + "Sparta, Inc", + "Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A.", + "The Regents of the University of California" + ], + "ignorable_authors": [ + "Bernhard Penz" + ], + "ignorable_urls": [ + "http://net-snmp.sourceforge.net/about/license.html" + ], + "ignorable_emails": [ + "oss@fabasoft.com" + ] +} \ No newline at end of file diff --git a/docs/netapp-sdk-aug2020.LICENSE b/docs/netapp-sdk-aug2020.LICENSE index dd9f674431..5d4722589c 100644 --- a/docs/netapp-sdk-aug2020.LICENSE +++ b/docs/netapp-sdk-aug2020.LICENSE @@ -1,3 +1,15 @@ +--- +key: netapp-sdk-aug2020 +short_name: NetApp SDK License Agreement rev. Aug2020 +name: NetApp Manageability SDK License Agreement rev. Aug2020 +category: Proprietary Free +owner: NetApp +homepage_url: https://mysupport.netapp.com/documentation/productlibrary/index.html?productID=60427 +spdx_license_key: LicenseRef-scancode-netapp-sdk-aug2020 +ignorable_urls: + - https://mysupport.netapp.com/documentation/productlibrary/index.html?productID=60427 +--- + NETAPP MANAGEABILITY SDK LICENSE AGREEMENT This NetApp Manageability SDK License Agreement (“License”) is entered into between you (as an individual and/or on behalf of the company by which you are employed) (“You”, “Your” or “Licensee”) and NetApp, Inc., located at 1395 Crossman Avenue, Sunnyvale, California 94089 (“NetApp”), and provides the terms under which NetApp licenses the NetApp Manageability SDK (“SDK”) to You. diff --git a/docs/netapp-sdk-aug2020.html b/docs/netapp-sdk-aug2020.html index 1327f0efa9..cc7d568c11 100644 --- a/docs/netapp-sdk-aug2020.html +++ b/docs/netapp-sdk-aug2020.html @@ -181,7 +181,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/netapp-sdk-aug2020.json b/docs/netapp-sdk-aug2020.json index 2097695dcc..7419644bdb 100644 --- a/docs/netapp-sdk-aug2020.json +++ b/docs/netapp-sdk-aug2020.json @@ -1 +1,12 @@ -{"key": "netapp-sdk-aug2020", "short_name": "NetApp SDK License Agreement rev. Aug2020", "name": "NetApp Manageability SDK License Agreement rev. Aug2020", "category": "Proprietary Free", "owner": "NetApp", "homepage_url": "https://mysupport.netapp.com/documentation/productlibrary/index.html?productID=60427", "spdx_license_key": "LicenseRef-scancode-netapp-sdk-aug2020", "ignorable_urls": ["https://mysupport.netapp.com/documentation/productlibrary/index.html?productID=60427"]} \ No newline at end of file +{ + "key": "netapp-sdk-aug2020", + "short_name": "NetApp SDK License Agreement rev. Aug2020", + "name": "NetApp Manageability SDK License Agreement rev. Aug2020", + "category": "Proprietary Free", + "owner": "NetApp", + "homepage_url": "https://mysupport.netapp.com/documentation/productlibrary/index.html?productID=60427", + "spdx_license_key": "LicenseRef-scancode-netapp-sdk-aug2020", + "ignorable_urls": [ + "https://mysupport.netapp.com/documentation/productlibrary/index.html?productID=60427" + ] +} \ No newline at end of file diff --git a/docs/netcat.LICENSE b/docs/netcat.LICENSE index 8e9d7247b8..c1f348d4d7 100644 --- a/docs/netcat.LICENSE +++ b/docs/netcat.LICENSE @@ -1,3 +1,15 @@ +--- +key: netcat +short_name: Netcat License +name: Netcat License +category: Permissive +owner: Netcat Project +homepage_url: http://nc110.sourceforge.net/ +spdx_license_key: LicenseRef-scancode-netcat +ignorable_emails: + - nc110-devel@lists.sourceforge.net +--- + Netcat is entirely my own creation, although plenty of other code was used as examples. It is freely given away to the Internet community in the hope that it will be useful, with no restrictions except giving credit where it is due. diff --git a/docs/netcat.html b/docs/netcat.html index 817049ef8c..2de56501b6 100644 --- a/docs/netcat.html +++ b/docs/netcat.html @@ -143,7 +143,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/netcat.json b/docs/netcat.json index 390cc3661a..4057aa32c4 100644 --- a/docs/netcat.json +++ b/docs/netcat.json @@ -1 +1,12 @@ -{"key": "netcat", "short_name": "Netcat License", "name": "Netcat License", "category": "Permissive", "owner": "Netcat Project", "homepage_url": "http://nc110.sourceforge.net/", "spdx_license_key": "LicenseRef-scancode-netcat", "ignorable_emails": ["nc110-devel@lists.sourceforge.net"]} \ No newline at end of file +{ + "key": "netcat", + "short_name": "Netcat License", + "name": "Netcat License", + "category": "Permissive", + "owner": "Netcat Project", + "homepage_url": "http://nc110.sourceforge.net/", + "spdx_license_key": "LicenseRef-scancode-netcat", + "ignorable_emails": [ + "nc110-devel@lists.sourceforge.net" + ] +} \ No newline at end of file diff --git a/docs/netcdf.LICENSE b/docs/netcdf.LICENSE index ea669707c0..5ea956fbd2 100644 --- a/docs/netcdf.LICENSE +++ b/docs/netcdf.LICENSE @@ -1,3 +1,14 @@ +--- +key: netcdf +short_name: NetCDF License +name: NetCDF License +category: Permissive +owner: Unidata +homepage_url: http://www.unidata.ucar.edu/software/netcdf/copyright.html +spdx_license_key: NetCDF +ignorable_authors: + - the Unidata Program at the University Corporation for Atmospheric Research +--- Portions of this software were developed by the Unidata Program at the University Corporation for Atmospheric Research. diff --git a/docs/netcdf.html b/docs/netcdf.html index 53db0d4925..88b8e2f75e 100644 --- a/docs/netcdf.html +++ b/docs/netcdf.html @@ -124,8 +124,7 @@
license_text
-

-Portions of this software were developed by the Unidata Program at the
+    
Portions of this software were developed by the Unidata Program at the
 University Corporation for Atmospheric Research.
 
 Access and use of this software shall impose the following obligations and
@@ -162,7 +161,8 @@
       AboutCode
     

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/netcdf.json b/docs/netcdf.json index 611c7720c1..1befe19363 100644 --- a/docs/netcdf.json +++ b/docs/netcdf.json @@ -1 +1,12 @@ -{"key": "netcdf", "short_name": "NetCDF License", "name": "NetCDF License", "category": "Permissive", "owner": "Unidata", "homepage_url": "http://www.unidata.ucar.edu/software/netcdf/copyright.html", "spdx_license_key": "NetCDF", "ignorable_authors": ["the Unidata Program at the University Corporation for Atmospheric Research"]} \ No newline at end of file +{ + "key": "netcdf", + "short_name": "NetCDF License", + "name": "NetCDF License", + "category": "Permissive", + "owner": "Unidata", + "homepage_url": "http://www.unidata.ucar.edu/software/netcdf/copyright.html", + "spdx_license_key": "NetCDF", + "ignorable_authors": [ + "the Unidata Program at the University Corporation for Atmospheric Research" + ] +} \ No newline at end of file diff --git a/docs/netcomponents.LICENSE b/docs/netcomponents.LICENSE index b7ccf01b52..15c06f28dc 100644 --- a/docs/netcomponents.LICENSE +++ b/docs/netcomponents.LICENSE @@ -1,3 +1,19 @@ +--- +key: netcomponents +short_name: NetComponents License +name: NetComponents License +category: Permissive +owner: Savarese.Org +homepage_url: http://gruntspud.sourceforge.net/NETCOMPONENTS_LICENSE.html +spdx_license_key: LicenseRef-scancode-netcomponents +text_urls: + - http://gruntspud.sourceforge.net/NETCOMPONENTS_LICENSE.html +ignorable_copyrights: + - Copyright (c) 1996-1999 Daniel F. Savarese +ignorable_holders: + - Daniel F. Savarese +--- + Savarese.Org Copyright © 1996-1999 Daniel F. Savarese. Copyright in this document and the software accompanying this document is owned by Daniel F. Savarese. All rights reserved. diff --git a/docs/netcomponents.html b/docs/netcomponents.html index e5cb781aa4..ad19d96946 100644 --- a/docs/netcomponents.html +++ b/docs/netcomponents.html @@ -175,7 +175,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/netcomponents.json b/docs/netcomponents.json index 7f2d0b985c..f22ab03ee0 100644 --- a/docs/netcomponents.json +++ b/docs/netcomponents.json @@ -1 +1,18 @@ -{"key": "netcomponents", "short_name": "NetComponents License", "name": "NetComponents License", "category": "Permissive", "owner": "Savarese.Org", "homepage_url": "http://gruntspud.sourceforge.net/NETCOMPONENTS_LICENSE.html", "spdx_license_key": "LicenseRef-scancode-netcomponents", "text_urls": ["http://gruntspud.sourceforge.net/NETCOMPONENTS_LICENSE.html"], "ignorable_copyrights": ["Copyright (c) 1996-1999 Daniel F. Savarese"], "ignorable_holders": ["Daniel F. Savarese"]} \ No newline at end of file +{ + "key": "netcomponents", + "short_name": "NetComponents License", + "name": "NetComponents License", + "category": "Permissive", + "owner": "Savarese.Org", + "homepage_url": "http://gruntspud.sourceforge.net/NETCOMPONENTS_LICENSE.html", + "spdx_license_key": "LicenseRef-scancode-netcomponents", + "text_urls": [ + "http://gruntspud.sourceforge.net/NETCOMPONENTS_LICENSE.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 1996-1999 Daniel F. Savarese" + ], + "ignorable_holders": [ + "Daniel F. Savarese" + ] +} \ No newline at end of file diff --git a/docs/netron.LICENSE b/docs/netron.LICENSE index d2d140e80d..f9c61aa4e0 100644 --- a/docs/netron.LICENSE +++ b/docs/netron.LICENSE @@ -1,3 +1,16 @@ +--- +key: netron +short_name: Netron Project License +name: Netron Project License +category: Permissive +owner: Netron Project +spdx_license_key: LicenseRef-scancode-netron +other_urls: + - http://www.netronproject.com +ignorable_urls: + - http://www.netronproject.com/ +--- + END USER LICENSE AGREEMENT (∞2006); FRANCOIS VANDERSEYPEN "THE NETRON PROJECT". IMPORTANT PLEASE READ CAREFULLY diff --git a/docs/netron.html b/docs/netron.html index 24f752d9a5..e8de78d478 100644 --- a/docs/netron.html +++ b/docs/netron.html @@ -189,7 +189,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/netron.json b/docs/netron.json index f1647e9dca..9867d0996d 100644 --- a/docs/netron.json +++ b/docs/netron.json @@ -1 +1,14 @@ -{"key": "netron", "short_name": "Netron Project License", "name": "Netron Project License", "category": "Permissive", "owner": "Netron Project", "spdx_license_key": "LicenseRef-scancode-netron", "other_urls": ["http://www.netronproject.com"], "ignorable_urls": ["http://www.netronproject.com/"]} \ No newline at end of file +{ + "key": "netron", + "short_name": "Netron Project License", + "name": "Netron Project License", + "category": "Permissive", + "owner": "Netron Project", + "spdx_license_key": "LicenseRef-scancode-netron", + "other_urls": [ + "http://www.netronproject.com" + ], + "ignorable_urls": [ + "http://www.netronproject.com/" + ] +} \ No newline at end of file diff --git a/docs/netronome-firmware.LICENSE b/docs/netronome-firmware.LICENSE index 987dd0dd46..539dc42795 100644 --- a/docs/netronome-firmware.LICENSE +++ b/docs/netronome-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: netronome-firmware +short_name: Netronome Firmware License +name: Netronome Firmware License +category: Proprietary Free +owner: Netronome +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.Netronome +spdx_license_key: LicenseRef-scancode-netronome-firmware +--- + Agilio(r) Firmware License Agreement (the "AGREEMENT") BY INSTALLING OR USING IN ANY MANNER THE SOFTWARE THAT ACCOMPANIES THIS diff --git a/docs/netronome-firmware.html b/docs/netronome-firmware.html index 3bf0a51d63..f4c5b49505 100644 --- a/docs/netronome-firmware.html +++ b/docs/netronome-firmware.html @@ -189,7 +189,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/netronome-firmware.json b/docs/netronome-firmware.json index 2228bb76e6..2f74180302 100644 --- a/docs/netronome-firmware.json +++ b/docs/netronome-firmware.json @@ -1 +1,9 @@ -{"key": "netronome-firmware", "short_name": "Netronome Firmware License", "name": "Netronome Firmware License", "category": "Proprietary Free", "owner": "Netronome", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.Netronome", "spdx_license_key": "LicenseRef-scancode-netronome-firmware"} \ No newline at end of file +{ + "key": "netronome-firmware", + "short_name": "Netronome Firmware License", + "name": "Netronome Firmware License", + "category": "Proprietary Free", + "owner": "Netronome", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.Netronome", + "spdx_license_key": "LicenseRef-scancode-netronome-firmware" +} \ No newline at end of file diff --git a/docs/network-time-protocol.LICENSE b/docs/network-time-protocol.LICENSE index 5fe1659dfc..d95b080623 100644 --- a/docs/network-time-protocol.LICENSE +++ b/docs/network-time-protocol.LICENSE @@ -1,3 +1,16 @@ +--- +key: network-time-protocol +is_deprecated: yes +short_name: Duplicate Network Time Protocol License +name: Duplicate Network Time Protocol License +category: Permissive +owner: University of Delaware +homepage_url: http://www.eecis.udel.edu/~mills/ntp/html/copyright.html +text_urls: + - http://www.eecis.udel.edu/~mills/ntp/html/copyright.html +minimum_coverage: 20 +--- + Network Time Protocol License http://www.eecis.udel.edu/~mills/ntp/html/copyright.html diff --git a/docs/network-time-protocol.html b/docs/network-time-protocol.html index d9a1c9fbc1..a4331cc04a 100644 --- a/docs/network-time-protocol.html +++ b/docs/network-time-protocol.html @@ -155,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/network-time-protocol.json b/docs/network-time-protocol.json index f583151837..79f78e0127 100644 --- a/docs/network-time-protocol.json +++ b/docs/network-time-protocol.json @@ -1 +1,13 @@ -{"key": "network-time-protocol", "is_deprecated": true, "short_name": "Duplicate Network Time Protocol License", "name": "Duplicate Network Time Protocol License", "category": "Permissive", "owner": "University of Delaware", "homepage_url": "http://www.eecis.udel.edu/~mills/ntp/html/copyright.html", "text_urls": ["http://www.eecis.udel.edu/~mills/ntp/html/copyright.html"], "minimum_coverage": 20} \ No newline at end of file +{ + "key": "network-time-protocol", + "is_deprecated": true, + "short_name": "Duplicate Network Time Protocol License", + "name": "Duplicate Network Time Protocol License", + "category": "Permissive", + "owner": "University of Delaware", + "homepage_url": "http://www.eecis.udel.edu/~mills/ntp/html/copyright.html", + "text_urls": [ + "http://www.eecis.udel.edu/~mills/ntp/html/copyright.html" + ], + "minimum_coverage": 20 +} \ No newline at end of file diff --git a/docs/new-relic.LICENSE b/docs/new-relic.LICENSE index dd585703a8..bbdf6b4555 100644 --- a/docs/new-relic.LICENSE +++ b/docs/new-relic.LICENSE @@ -1,3 +1,17 @@ +--- +key: new-relic +short_name: New Relic License +name: New Relic License +category: Proprietary Free +owner: New Relic +homepage_url: https://github.com/newrelic/rpm/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-new-relic +ignorable_copyrights: + - Copyright (c) 2008-2014 New Relic, Inc. +ignorable_holders: + - New Relic, Inc. +--- + All other components of this product are Copyright (c) 2008-2014 New Relic, Inc. All rights reserved. diff --git a/docs/new-relic.html b/docs/new-relic.html index 6cf5d6dacf..12d2d3ebcb 100644 --- a/docs/new-relic.html +++ b/docs/new-relic.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/new-relic.json b/docs/new-relic.json index 2e17cdf724..95ac648683 100644 --- a/docs/new-relic.json +++ b/docs/new-relic.json @@ -1 +1,15 @@ -{"key": "new-relic", "short_name": "New Relic License", "name": "New Relic License", "category": "Proprietary Free", "owner": "New Relic", "homepage_url": "https://github.com/newrelic/rpm/blob/master/LICENSE", "spdx_license_key": "LicenseRef-scancode-new-relic", "ignorable_copyrights": ["Copyright (c) 2008-2014 New Relic, Inc."], "ignorable_holders": ["New Relic, Inc."]} \ No newline at end of file +{ + "key": "new-relic", + "short_name": "New Relic License", + "name": "New Relic License", + "category": "Proprietary Free", + "owner": "New Relic", + "homepage_url": "https://github.com/newrelic/rpm/blob/master/LICENSE", + "spdx_license_key": "LicenseRef-scancode-new-relic", + "ignorable_copyrights": [ + "Copyright (c) 2008-2014 New Relic, Inc." + ], + "ignorable_holders": [ + "New Relic, Inc." + ] +} \ No newline at end of file diff --git a/docs/newlib-historical.LICENSE b/docs/newlib-historical.LICENSE index afade79817..7d6e5cb6c4 100644 --- a/docs/newlib-historical.LICENSE +++ b/docs/newlib-historical.LICENSE @@ -1,3 +1,14 @@ +--- +key: newlib-historical +short_name: Newlib Historical License +name: Newlib Historical License +category: Permissive +owner: Red Hat +notes: this is a short historical permissive license seen in the newlib C library this license + text is also fully contained in the tcl license. +spdx_license_key: LicenseRef-scancode-newlib-historical +--- + 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 @@ -6,4 +17,4 @@ 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. +they apply. \ No newline at end of file diff --git a/docs/newlib-historical.html b/docs/newlib-historical.html index 06d4ac9c82..6e564c1c90 100644 --- a/docs/newlib-historical.html +++ b/docs/newlib-historical.html @@ -123,8 +123,7 @@ 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. -
+they apply.
@@ -136,7 +135,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/newlib-historical.json b/docs/newlib-historical.json index 9c3b77ccb0..058ffe31c8 100644 --- a/docs/newlib-historical.json +++ b/docs/newlib-historical.json @@ -1 +1,9 @@ -{"key": "newlib-historical", "short_name": "Newlib Historical License", "name": "Newlib Historical License", "category": "Permissive", "owner": "Red Hat", "notes": "this is a short historical permissive license seen in the newlib C library this license text is also fully contained in the tcl license.", "spdx_license_key": "LicenseRef-scancode-newlib-historical"} \ No newline at end of file +{ + "key": "newlib-historical", + "short_name": "Newlib Historical License", + "name": "Newlib Historical License", + "category": "Permissive", + "owner": "Red Hat", + "notes": "this is a short historical permissive license seen in the newlib C library this license text is also fully contained in the tcl license.", + "spdx_license_key": "LicenseRef-scancode-newlib-historical" +} \ No newline at end of file diff --git a/docs/newran.LICENSE b/docs/newran.LICENSE index c7f42d9f39..7ec3899f59 100644 --- a/docs/newran.LICENSE +++ b/docs/newran.LICENSE @@ -1,3 +1,13 @@ +--- +key: newran +short_name: Newran License +name: Newran License +category: Permissive +owner: Robert Davies +homepage_url: http://www.robertnz.net/nr02doc.htm +spdx_license_key: LicenseRef-scancode-newran +--- + There are no restrictions on the use of newran except that I take no liability for any problems that may arise from its use. I welcome its distribution as part of low cost CD-ROM collections. diff --git a/docs/newran.html b/docs/newran.html index 6983c7bda0..f3305d2dd2 100644 --- a/docs/newran.html +++ b/docs/newran.html @@ -131,7 +131,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/newran.json b/docs/newran.json index a78ebc68f1..0f0b98149e 100644 --- a/docs/newran.json +++ b/docs/newran.json @@ -1 +1,9 @@ -{"key": "newran", "short_name": "Newran License", "name": "Newran License", "category": "Permissive", "owner": "Robert Davies", "homepage_url": "http://www.robertnz.net/nr02doc.htm", "spdx_license_key": "LicenseRef-scancode-newran"} \ No newline at end of file +{ + "key": "newran", + "short_name": "Newran License", + "name": "Newran License", + "category": "Permissive", + "owner": "Robert Davies", + "homepage_url": "http://www.robertnz.net/nr02doc.htm", + "spdx_license_key": "LicenseRef-scancode-newran" +} \ No newline at end of file diff --git a/docs/newsletr.LICENSE b/docs/newsletr.LICENSE index fa3b127810..6bb7ccf368 100644 --- a/docs/newsletr.LICENSE +++ b/docs/newsletr.LICENSE @@ -1,3 +1,17 @@ +--- +key: newsletr +short_name: Newsletr License +name: Newsletr License +category: Permissive +owner: Hunter Goatley +homepage_url: https://fedoraproject.org/wiki/Licensing/Newsletr +notes: | + Per Fedora, This is a zlib variant, less restrictive. It was found on the + component of texlive 2010. It is Free and GPL-compatible. +spdx_license_key: Newsletr +minimum_coverage: 50 +--- + Permission is granted to anyone to use this software for any purpose on any computer system, and to redistribute it freely, subject to the following restrictions: diff --git a/docs/newsletr.html b/docs/newsletr.html index 33b1d9cfa4..1e8d2e0885 100644 --- a/docs/newsletr.html +++ b/docs/newsletr.html @@ -152,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/newsletr.json b/docs/newsletr.json index fb0cf5dca8..c3ff8d90b0 100644 --- a/docs/newsletr.json +++ b/docs/newsletr.json @@ -1 +1,11 @@ -{"key": "newsletr", "short_name": "Newsletr License", "name": "Newsletr License", "category": "Permissive", "owner": "Hunter Goatley", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Newsletr", "notes": "Per Fedora, This is a zlib variant, less restrictive. It was found on the\ncomponent of texlive 2010. It is Free and GPL-compatible.\n", "spdx_license_key": "Newsletr", "minimum_coverage": 50} \ No newline at end of file +{ + "key": "newsletr", + "short_name": "Newsletr License", + "name": "Newsletr License", + "category": "Permissive", + "owner": "Hunter Goatley", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Newsletr", + "notes": "Per Fedora, This is a zlib variant, less restrictive. It was found on the\ncomponent of texlive 2010. It is Free and GPL-compatible.\n", + "spdx_license_key": "Newsletr", + "minimum_coverage": 50 +} \ No newline at end of file diff --git a/docs/newton-king-cla.LICENSE b/docs/newton-king-cla.LICENSE index 7941aeb8fd..25e8a28bb7 100644 --- a/docs/newton-king-cla.LICENSE +++ b/docs/newton-king-cla.LICENSE @@ -1,3 +1,14 @@ +--- +key: newton-king-cla +short_name: Newton-King CLA +name: James Newton-King CLA +category: CLA +owner: James Newton-King +homepage_url: https://github.com/JamesNK/Newtonsoft.Json/blob/ce7f283b94c86341036078ed2f4e241b907b816d/CONTRIBUTING.md +notes: this is a CLA +spdx_license_key: LicenseRef-scancode-newton-king-cla +--- + Contributor License Agreement By contributing your code to Json.NET you grant James Newton-King a non-exclusive, irrevocable, worldwide, diff --git a/docs/newton-king-cla.html b/docs/newton-king-cla.html index 664314473e..21960780c9 100644 --- a/docs/newton-king-cla.html +++ b/docs/newton-king-cla.html @@ -88,7 +88,7 @@
category
- Unstated License + CLA
@@ -156,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/newton-king-cla.json b/docs/newton-king-cla.json index f0fcfde81c..55640f1449 100644 --- a/docs/newton-king-cla.json +++ b/docs/newton-king-cla.json @@ -1 +1,10 @@ -{"key": "newton-king-cla", "short_name": "Newton-King CLA", "name": "James Newton-King CLA", "category": "Unstated License", "owner": "James Newton-King", "homepage_url": "https://github.com/JamesNK/Newtonsoft.Json/blob/ce7f283b94c86341036078ed2f4e241b907b816d/CONTRIBUTING.md", "notes": "this is a CLA", "spdx_license_key": "LicenseRef-scancode-newton-king-cla"} \ No newline at end of file +{ + "key": "newton-king-cla", + "short_name": "Newton-King CLA", + "name": "James Newton-King CLA", + "category": "CLA", + "owner": "James Newton-King", + "homepage_url": "https://github.com/JamesNK/Newtonsoft.Json/blob/ce7f283b94c86341036078ed2f4e241b907b816d/CONTRIBUTING.md", + "notes": "this is a CLA", + "spdx_license_key": "LicenseRef-scancode-newton-king-cla" +} \ No newline at end of file diff --git a/docs/newton-king-cla.yml b/docs/newton-king-cla.yml index a409682236..ddc74294bd 100644 --- a/docs/newton-king-cla.yml +++ b/docs/newton-king-cla.yml @@ -1,7 +1,7 @@ key: newton-king-cla short_name: Newton-King CLA name: James Newton-King CLA -category: Unstated License +category: CLA owner: James Newton-King homepage_url: https://github.com/JamesNK/Newtonsoft.Json/blob/ce7f283b94c86341036078ed2f4e241b907b816d/CONTRIBUTING.md notes: this is a CLA diff --git a/docs/nexb-eula-saas-1.1.0.LICENSE b/docs/nexb-eula-saas-1.1.0.LICENSE index 0f3643f9f8..7e64ba293c 100644 --- a/docs/nexb-eula-saas-1.1.0.LICENSE +++ b/docs/nexb-eula-saas-1.1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: nexb-eula-saas-1.1.0 +short_name: nexB EULA for SaaS 1.1.0 +name: nexB EULA for SaaS 1.1.0 +category: Commercial +owner: nexB +spdx_license_key: LicenseRef-scancode-nexb-eula-saas-1.1.0 +ignorable_urls: + - https://dejacode.zendesk.com/home +ignorable_emails: + - marketing@nexb.com +--- + NEXB INC. END USER AGREEMENT FOR SOFTWARE AS A SERVICE READ THIS AGREEMENT CAREFULLY. diff --git a/docs/nexb-eula-saas-1.1.0.html b/docs/nexb-eula-saas-1.1.0.html index a47ec62ecf..7c1aa6fcd3 100644 --- a/docs/nexb-eula-saas-1.1.0.html +++ b/docs/nexb-eula-saas-1.1.0.html @@ -284,7 +284,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nexb-eula-saas-1.1.0.json b/docs/nexb-eula-saas-1.1.0.json index c40326bef5..22fbe4fcd3 100644 --- a/docs/nexb-eula-saas-1.1.0.json +++ b/docs/nexb-eula-saas-1.1.0.json @@ -1 +1,14 @@ -{"key": "nexb-eula-saas-1.1.0", "short_name": "nexB EULA for SaaS 1.1.0", "name": "nexB EULA for SaaS 1.1.0", "category": "Commercial", "owner": "nexB", "spdx_license_key": "LicenseRef-scancode-nexb-eula-saas-1.1.0", "ignorable_urls": ["https://dejacode.zendesk.com/home"], "ignorable_emails": ["marketing@nexb.com"]} \ No newline at end of file +{ + "key": "nexb-eula-saas-1.1.0", + "short_name": "nexB EULA for SaaS 1.1.0", + "name": "nexB EULA for SaaS 1.1.0", + "category": "Commercial", + "owner": "nexB", + "spdx_license_key": "LicenseRef-scancode-nexb-eula-saas-1.1.0", + "ignorable_urls": [ + "https://dejacode.zendesk.com/home" + ], + "ignorable_emails": [ + "marketing@nexb.com" + ] +} \ No newline at end of file diff --git a/docs/nexb-ssla-1.1.0.LICENSE b/docs/nexb-ssla-1.1.0.LICENSE index 2c85ae3962..3c3002a8df 100644 --- a/docs/nexb-ssla-1.1.0.LICENSE +++ b/docs/nexb-ssla-1.1.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: nexb-ssla-1.1.0 +short_name: nexB SSLA 1.1.0 +name: nexB Software Subscription License Agreement 1.1.0 +category: Commercial +owner: nexB +spdx_license_key: LicenseRef-scancode-nexb-ssla-1.1.0 +ignorable_emails: + - sales@nexb.com +--- + nexB Software Subscription License Agreement This Software Subscription License Agreement (the "Agreement) is entered into by and between nexB Inc., a California corporation, having its principal place of business at 735 Industrial Road Suite 101, San Carlos, CA 94070 and ___________________, a ______________ corporation, having its principal place of business at _________________________________________________ ("Licensee"). This Agreement is effective as of _________________ ("Effective Date"). diff --git a/docs/nexb-ssla-1.1.0.html b/docs/nexb-ssla-1.1.0.html index 55b3b6f63e..b388ba7f53 100644 --- a/docs/nexb-ssla-1.1.0.html +++ b/docs/nexb-ssla-1.1.0.html @@ -282,7 +282,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nexb-ssla-1.1.0.json b/docs/nexb-ssla-1.1.0.json index 086e2e0b2f..e21af6c446 100644 --- a/docs/nexb-ssla-1.1.0.json +++ b/docs/nexb-ssla-1.1.0.json @@ -1 +1,11 @@ -{"key": "nexb-ssla-1.1.0", "short_name": "nexB SSLA 1.1.0", "name": "nexB Software Subscription License Agreement 1.1.0", "category": "Commercial", "owner": "nexB", "spdx_license_key": "LicenseRef-scancode-nexb-ssla-1.1.0", "ignorable_emails": ["sales@nexb.com"]} \ No newline at end of file +{ + "key": "nexb-ssla-1.1.0", + "short_name": "nexB SSLA 1.1.0", + "name": "nexB Software Subscription License Agreement 1.1.0", + "category": "Commercial", + "owner": "nexB", + "spdx_license_key": "LicenseRef-scancode-nexb-ssla-1.1.0", + "ignorable_emails": [ + "sales@nexb.com" + ] +} \ No newline at end of file diff --git a/docs/ngpl.LICENSE b/docs/ngpl.LICENSE index 05a11b3ef6..3193e91c52 100644 --- a/docs/ngpl.LICENSE +++ b/docs/ngpl.LICENSE @@ -1,3 +1,25 @@ +--- +key: ngpl +short_name: Nethack General Public License +name: Nethack General Public License +category: Copyleft Limited +owner: NetHack +homepage_url: http://www.nethack.org/common/license.html +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: NGPL +text_urls: + - http://www.nethack.org/common/license.html +other_urls: + - http://www.opensource.org/licenses/NGPL + - https://opensource.org/licenses/NGPL +ignorable_copyrights: + - Copyright (c) 1989 M. Stephenson + - copyright 1988 Richard M. Stallman +ignorable_holders: + - M. Stephenson + - Richard M. Stallman +--- + Nethack General Public License Copyright (c) 1989 M. Stephenson (Based on the BISON general public license, copyright 1988 Richard M. Stallman) diff --git a/docs/ngpl.html b/docs/ngpl.html index 008aae9a20..3e3f44e849 100644 --- a/docs/ngpl.html +++ b/docs/ngpl.html @@ -203,7 +203,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ngpl.json b/docs/ngpl.json index b82da755bc..96133703ec 100644 --- a/docs/ngpl.json +++ b/docs/ngpl.json @@ -1 +1,25 @@ -{"key": "ngpl", "short_name": "Nethack General Public License", "name": "Nethack General Public License", "category": "Copyleft Limited", "owner": "NetHack", "homepage_url": "http://www.nethack.org/common/license.html", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "NGPL", "text_urls": ["http://www.nethack.org/common/license.html"], "other_urls": ["http://www.opensource.org/licenses/NGPL", "https://opensource.org/licenses/NGPL"], "ignorable_copyrights": ["Copyright (c) 1989 M. Stephenson", "copyright 1988 Richard M. Stallman"], "ignorable_holders": ["M. Stephenson", "Richard M. Stallman"]} \ No newline at end of file +{ + "key": "ngpl", + "short_name": "Nethack General Public License", + "name": "Nethack General Public License", + "category": "Copyleft Limited", + "owner": "NetHack", + "homepage_url": "http://www.nethack.org/common/license.html", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "NGPL", + "text_urls": [ + "http://www.nethack.org/common/license.html" + ], + "other_urls": [ + "http://www.opensource.org/licenses/NGPL", + "https://opensource.org/licenses/NGPL" + ], + "ignorable_copyrights": [ + "Copyright (c) 1989 M. Stephenson", + "copyright 1988 Richard M. Stallman" + ], + "ignorable_holders": [ + "M. Stephenson", + "Richard M. Stallman" + ] +} \ No newline at end of file diff --git a/docs/nice.LICENSE b/docs/nice.LICENSE index dc4d9db852..f07844b98e 100644 --- a/docs/nice.LICENSE +++ b/docs/nice.LICENSE @@ -1,3 +1,13 @@ +--- +key: nice +short_name: Nice License +name: Nice License +category: Permissive +owner: Unspecified +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-nice +--- + Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. @@ -14,4 +24,4 @@ THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. I 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. +THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/docs/nice.html b/docs/nice.html index 5d7fa7c52d..ecfe25e68a 100644 --- a/docs/nice.html +++ b/docs/nice.html @@ -131,8 +131,7 @@ 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. - +THE USE OR PERFORMANCE OF THIS SOFTWARE.
@@ -144,7 +143,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nice.json b/docs/nice.json index 76a1ebe448..bf4f6ff4ec 100644 --- a/docs/nice.json +++ b/docs/nice.json @@ -1 +1,9 @@ -{"key": "nice", "short_name": "Nice License", "name": "Nice License", "category": "Permissive", "owner": "Unspecified", "notes": "From https://github.com/ErikMcClure/bad-licenses", "spdx_license_key": "LicenseRef-scancode-nice"} \ No newline at end of file +{ + "key": "nice", + "short_name": "Nice License", + "name": "Nice License", + "category": "Permissive", + "owner": "Unspecified", + "notes": "From https://github.com/ErikMcClure/bad-licenses", + "spdx_license_key": "LicenseRef-scancode-nice" +} \ No newline at end of file diff --git a/docs/nicta-exception.LICENSE b/docs/nicta-exception.LICENSE index 20b1b91cc2..f545b0ecb0 100644 --- a/docs/nicta-exception.LICENSE +++ b/docs/nicta-exception.LICENSE @@ -1,6 +1,17 @@ +--- +key: nicta-exception +short_name: NICTA Exception to AGPL +name: NICTA Exception to AGPL +category: Copyleft +owner: NICTA +homepage_url: https://github.com/echronos/test-client-repo/blob/3ab330c3dcaa549d135c81c80e866184011c51d1/LICENSE_AGPLv3_with_additional_terms.txt +is_exception: yes +spdx_license_key: LicenseRef-scancode-nicta-exception +--- + No right, title or interest in or to any trade mark, service mark, logo or trade name of National ICT Australia Limited, ABN 62 102 206 173 (“NICTA”) or its licensors is granted. Modified versions of the Program must be plainly marked as such, and must not be distributed using “eChronos” as a trade mark or product name, or misrepresented as being -the original Program. +the original Program. \ No newline at end of file diff --git a/docs/nicta-exception.html b/docs/nicta-exception.html index fa00f31aa5..c117c571c6 100644 --- a/docs/nicta-exception.html +++ b/docs/nicta-exception.html @@ -127,8 +127,7 @@ (“NICTA”) or its licensors is granted. Modified versions of the Program must be plainly marked as such, and must not be distributed using “eChronos” as a trade mark or product name, or misrepresented as being -the original Program. - +the original Program.
@@ -140,7 +139,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nicta-exception.json b/docs/nicta-exception.json index 1ef0de6106..61c54f2fd0 100644 --- a/docs/nicta-exception.json +++ b/docs/nicta-exception.json @@ -1 +1,10 @@ -{"key": "nicta-exception", "short_name": "NICTA Exception to AGPL", "name": "NICTA Exception to AGPL", "category": "Copyleft", "owner": "NICTA", "homepage_url": "https://github.com/echronos/test-client-repo/blob/3ab330c3dcaa549d135c81c80e866184011c51d1/LICENSE_AGPLv3_with_additional_terms.txt", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-nicta-exception"} \ No newline at end of file +{ + "key": "nicta-exception", + "short_name": "NICTA Exception to AGPL", + "name": "NICTA Exception to AGPL", + "category": "Copyleft", + "owner": "NICTA", + "homepage_url": "https://github.com/echronos/test-client-repo/blob/3ab330c3dcaa549d135c81c80e866184011c51d1/LICENSE_AGPLv3_with_additional_terms.txt", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-nicta-exception" +} \ No newline at end of file diff --git a/docs/nicta-psl.LICENSE b/docs/nicta-psl.LICENSE index bd5d06d296..a9502438a5 100644 --- a/docs/nicta-psl.LICENSE +++ b/docs/nicta-psl.LICENSE @@ -1,3 +1,24 @@ +--- +key: nicta-psl +short_name: NICTA Public Software Licence 1.0 +name: NICTA Public Software Licence 1.0 +category: Permissive +owner: NICTA +homepage_url: http://www.opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt +spdx_license_key: NICTA-1.0 +other_spdx_license_keys: + - LicenseRef-scancode-nicta-psl +text_urls: + - http://www.opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt +other_urls: + - http://www.nicta.com.au/ + - https://opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt +ignorable_copyrights: + - Copyright (c) 2004 National ICT Australia Ltd +ignorable_holders: + - National ICT Australia Ltd +--- + NICTA Public Software Licence Version 1.0 diff --git a/docs/nicta-psl.html b/docs/nicta-psl.html index 8c27a3caac..97fbcbd3b6 100644 --- a/docs/nicta-psl.html +++ b/docs/nicta-psl.html @@ -109,7 +109,16 @@
spdx_license_key
- LicenseRef-scancode-nicta-psl + NICTA-1.0 + +
+ +
other_spdx_license_keys
+
+ +
    +
  • LicenseRef-scancode-nicta-psl
  • +
@@ -126,7 +135,7 @@
@@ -223,7 +232,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nicta-psl.json b/docs/nicta-psl.json index bb17a4282c..d05420a7db 100644 --- a/docs/nicta-psl.json +++ b/docs/nicta-psl.json @@ -1 +1,25 @@ -{"key": "nicta-psl", "short_name": "NICTA Public Software Licence 1.0", "name": "NICTA Public Software Licence 1.0", "category": "Permissive", "owner": "NICTA", "homepage_url": "http://www.opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt", "spdx_license_key": "LicenseRef-scancode-nicta-psl", "text_urls": ["http://www.opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt"], "other_urls": ["http://www.nicta.com.au/"], "ignorable_copyrights": ["Copyright (c) 2004 National ICT Australia Ltd"], "ignorable_holders": ["National ICT Australia Ltd"]} \ No newline at end of file +{ + "key": "nicta-psl", + "short_name": "NICTA Public Software Licence 1.0", + "name": "NICTA Public Software Licence 1.0", + "category": "Permissive", + "owner": "NICTA", + "homepage_url": "http://www.opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt", + "spdx_license_key": "NICTA-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-nicta-psl" + ], + "text_urls": [ + "http://www.opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt" + ], + "other_urls": [ + "http://www.nicta.com.au/", + "https://opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt" + ], + "ignorable_copyrights": [ + "Copyright (c) 2004 National ICT Australia Ltd" + ], + "ignorable_holders": [ + "National ICT Australia Ltd" + ] +} \ No newline at end of file diff --git a/docs/nicta-psl.yml b/docs/nicta-psl.yml index 915061e3ed..dcce960775 100644 --- a/docs/nicta-psl.yml +++ b/docs/nicta-psl.yml @@ -4,11 +4,14 @@ name: NICTA Public Software Licence 1.0 category: Permissive owner: NICTA homepage_url: http://www.opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt -spdx_license_key: LicenseRef-scancode-nicta-psl +spdx_license_key: NICTA-1.0 +other_spdx_license_keys: + - LicenseRef-scancode-nicta-psl text_urls: - http://www.opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt other_urls: - http://www.nicta.com.au/ + - https://opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt ignorable_copyrights: - Copyright (c) 2004 National ICT Australia Ltd ignorable_holders: diff --git a/docs/niels-ferguson.LICENSE b/docs/niels-ferguson.LICENSE index e22d6cc911..a0069c19aa 100644 --- a/docs/niels-ferguson.LICENSE +++ b/docs/niels-ferguson.LICENSE @@ -1,3 +1,16 @@ +--- +key: niels-ferguson +short_name: Niels Ferguson License +name: Niels Ferguson License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-niels-ferguson +ignorable_copyrights: + - Copyright (c) 2002 by Niels Ferguson +ignorable_holders: + - Niels Ferguson +--- + Copyright (c) 2002 by Niels Ferguson. The author hereby grants a perpetual license to everybody to use this @@ -20,4 +33,4 @@ to accept any liability of any form. This code, or the Twofish cipher, might very well be flawed; you have been warned. This software is provided as-is, without any kind of warrenty or guarantee. And that is really all you can expect when you download code for free from the -Internet. +Internet. \ No newline at end of file diff --git a/docs/niels-ferguson.html b/docs/niels-ferguson.html index 3b52b65f5f..2b6583f5f7 100644 --- a/docs/niels-ferguson.html +++ b/docs/niels-ferguson.html @@ -148,8 +148,7 @@ might very well be flawed; you have been warned. This software is provided as-is, without any kind of warrenty or guarantee. And that is really all you can expect when you download code for free from the -Internet. - +Internet.
@@ -161,7 +160,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/niels-ferguson.json b/docs/niels-ferguson.json index 802b4b1122..9eda6daa73 100644 --- a/docs/niels-ferguson.json +++ b/docs/niels-ferguson.json @@ -1 +1,14 @@ -{"key": "niels-ferguson", "short_name": "Niels Ferguson License", "name": "Niels Ferguson License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-niels-ferguson", "ignorable_copyrights": ["Copyright (c) 2002 by Niels Ferguson"], "ignorable_holders": ["Niels Ferguson"]} \ No newline at end of file +{ + "key": "niels-ferguson", + "short_name": "Niels Ferguson License", + "name": "Niels Ferguson License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-niels-ferguson", + "ignorable_copyrights": [ + "Copyright (c) 2002 by Niels Ferguson" + ], + "ignorable_holders": [ + "Niels Ferguson" + ] +} \ No newline at end of file diff --git a/docs/nilsson-historical.LICENSE b/docs/nilsson-historical.LICENSE index bd1d4255b4..9ee1c5df6b 100644 --- a/docs/nilsson-historical.LICENSE +++ b/docs/nilsson-historical.LICENSE @@ -1,3 +1,13 @@ +--- +key: nilsson-historical +short_name: Nilsson Historical License +name: Nilsson Historical License +category: Permissive +owner: Hans-Peter Nilsson +notes: this is a short historical permissive license seen in the newlib C library +spdx_license_key: LicenseRef-scancode-nilsson-historical +--- + Permission to use, copy, modify, and distribute this software is freely granted, provided that the above copyright notice, this notice and the following disclaimer are preserved with no changes. @@ -5,4 +15,4 @@ and the following disclaimer are preserved with no changes. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. +PURPOSE. \ No newline at end of file diff --git a/docs/nilsson-historical.html b/docs/nilsson-historical.html index 9eb079a3ce..9a539c87c2 100644 --- a/docs/nilsson-historical.html +++ b/docs/nilsson-historical.html @@ -122,8 +122,7 @@ THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. - +PURPOSE.
@@ -135,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nilsson-historical.json b/docs/nilsson-historical.json index 3848c7d4a8..1a40c39bce 100644 --- a/docs/nilsson-historical.json +++ b/docs/nilsson-historical.json @@ -1 +1,9 @@ -{"key": "nilsson-historical", "short_name": "Nilsson Historical License", "name": "Nilsson Historical License", "category": "Permissive", "owner": "Hans-Peter Nilsson", "notes": "this is a short historical permissive license seen in the newlib C library", "spdx_license_key": "LicenseRef-scancode-nilsson-historical"} \ No newline at end of file +{ + "key": "nilsson-historical", + "short_name": "Nilsson Historical License", + "name": "Nilsson Historical License", + "category": "Permissive", + "owner": "Hans-Peter Nilsson", + "notes": "this is a short historical permissive license seen in the newlib C library", + "spdx_license_key": "LicenseRef-scancode-nilsson-historical" +} \ No newline at end of file diff --git a/docs/nist-pd-fallback.LICENSE b/docs/nist-pd-fallback.LICENSE index cae378537e..c32f32309e 100644 --- a/docs/nist-pd-fallback.LICENSE +++ b/docs/nist-pd-fallback.LICENSE @@ -1,3 +1,15 @@ +--- +key: nist-pd-fallback +short_name: NIST Public Domain Notice with fallback +name: NIST Public Domain Notice with license fallback +category: Permissive +owner: NIST +homepage_url: https://github.com/usnistgov/jsip/blob/59700e6926cbe96c5cdae897d9a7d2656b42abe3/LICENSE +spdx_license_key: NIST-PD-fallback +text_urls: + - https://github.com/usnistgov/fipy/blob/86aaa5c2ba2c6f1be19593c5986071cf6568cc34/LICENSE.rst +--- + This software was developed by employees of the National Institute of Standards and Technology (NIST), an agency of the Federal Government and is being made available as a public service. Pursuant to title 17 United States Code Section diff --git a/docs/nist-pd-fallback.html b/docs/nist-pd-fallback.html index 680354678f..ec4930d1ef 100644 --- a/docs/nist-pd-fallback.html +++ b/docs/nist-pd-fallback.html @@ -158,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nist-pd-fallback.json b/docs/nist-pd-fallback.json index 1d9605358b..3fa584a4d5 100644 --- a/docs/nist-pd-fallback.json +++ b/docs/nist-pd-fallback.json @@ -1 +1,12 @@ -{"key": "nist-pd-fallback", "short_name": "NIST Public Domain Notice with fallback", "name": "NIST Public Domain Notice with license fallback", "category": "Permissive", "owner": "NIST", "homepage_url": "https://github.com/usnistgov/jsip/blob/59700e6926cbe96c5cdae897d9a7d2656b42abe3/LICENSE", "spdx_license_key": "NIST-PD-fallback", "text_urls": ["https://github.com/usnistgov/fipy/blob/86aaa5c2ba2c6f1be19593c5986071cf6568cc34/LICENSE.rst"]} \ No newline at end of file +{ + "key": "nist-pd-fallback", + "short_name": "NIST Public Domain Notice with fallback", + "name": "NIST Public Domain Notice with license fallback", + "category": "Permissive", + "owner": "NIST", + "homepage_url": "https://github.com/usnistgov/jsip/blob/59700e6926cbe96c5cdae897d9a7d2656b42abe3/LICENSE", + "spdx_license_key": "NIST-PD-fallback", + "text_urls": [ + "https://github.com/usnistgov/fipy/blob/86aaa5c2ba2c6f1be19593c5986071cf6568cc34/LICENSE.rst" + ] +} \ No newline at end of file diff --git a/docs/nist-pd.LICENSE b/docs/nist-pd.LICENSE index f44d916d55..6cdc9e61cb 100644 --- a/docs/nist-pd.LICENSE +++ b/docs/nist-pd.LICENSE @@ -1,3 +1,19 @@ +--- +key: nist-pd +short_name: NIST Public Domain Notice +name: NIST Public Domain Notice +category: Public Domain +owner: NIST +homepage_url: https://github.com/usnistgov/jsip/blob/master/README#L122 +spdx_license_key: NIST-PD +text_urls: + - https://github.com/tcheneau/Routing/blob/f09f46fcfe636107f22f2c98348188a65a135d98/README.md#conditions-of-use + - https://github.com/tcheneau/simpleRPL/blob/e645e69e38dd4e3ccfeceb2db8cba05b7c2e0cd3/LICENSE.txt +other_urls: + - https://github.com/tcheneau/Routing/blob/f09f46fcfe636107f22f2c98348188a65a135d98/README.md + - https://github.com/usnistgov/jsip +--- + Conditions Of Use This software was developed by employees of the National Institute of diff --git a/docs/nist-pd.html b/docs/nist-pd.html index ef90df34e7..ec3cb017aa 100644 --- a/docs/nist-pd.html +++ b/docs/nist-pd.html @@ -164,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nist-pd.json b/docs/nist-pd.json index a54738a56b..bf2abc54cc 100644 --- a/docs/nist-pd.json +++ b/docs/nist-pd.json @@ -1 +1,17 @@ -{"key": "nist-pd", "short_name": "NIST Public Domain Notice", "name": "NIST Public Domain Notice", "category": "Public Domain", "owner": "NIST", "homepage_url": "https://github.com/usnistgov/jsip/blob/master/README#L122", "spdx_license_key": "NIST-PD", "text_urls": ["https://github.com/tcheneau/Routing/blob/f09f46fcfe636107f22f2c98348188a65a135d98/README.md#conditions-of-use", "https://github.com/tcheneau/simpleRPL/blob/e645e69e38dd4e3ccfeceb2db8cba05b7c2e0cd3/LICENSE.txt"], "other_urls": ["https://github.com/tcheneau/Routing/blob/f09f46fcfe636107f22f2c98348188a65a135d98/README.md", "https://github.com/usnistgov/jsip"]} \ No newline at end of file +{ + "key": "nist-pd", + "short_name": "NIST Public Domain Notice", + "name": "NIST Public Domain Notice", + "category": "Public Domain", + "owner": "NIST", + "homepage_url": "https://github.com/usnistgov/jsip/blob/master/README#L122", + "spdx_license_key": "NIST-PD", + "text_urls": [ + "https://github.com/tcheneau/Routing/blob/f09f46fcfe636107f22f2c98348188a65a135d98/README.md#conditions-of-use", + "https://github.com/tcheneau/simpleRPL/blob/e645e69e38dd4e3ccfeceb2db8cba05b7c2e0cd3/LICENSE.txt" + ], + "other_urls": [ + "https://github.com/tcheneau/Routing/blob/f09f46fcfe636107f22f2c98348188a65a135d98/README.md", + "https://github.com/usnistgov/jsip" + ] +} \ No newline at end of file diff --git a/docs/nist-srd.LICENSE b/docs/nist-srd.LICENSE index 2ed6504e7c..089094a5e5 100644 --- a/docs/nist-srd.LICENSE +++ b/docs/nist-srd.LICENSE @@ -1 +1,13 @@ +--- +key: nist-srd +short_name: NIST SRD License +name: NIST Standard Reference Data License +category: Permissive +owner: NIST +homepage_url: https://www.nist.gov/open/copyright-fair-use-and-licensing-statements-srd-data-software-and-technical-series-publications#srd +spdx_license_key: LicenseRef-scancode-nist-srd +other_urls: + - https://lists.fedorahosted.org/archives/list/legal@lists.fedoraproject.org/thread/LSM6MO6TAHTIDNF5COCA6UWQDHWRF3AH/ +--- + Copyright protection on this compilation of data has been secured by the Secretary of the U.S. Department of Commerce on behalf of the United States in the United States and all countries that are parties to the Universal Copyright Convention, pursuant to Section 290(e) of Title 15 of the United States Code. \ No newline at end of file diff --git a/docs/nist-srd.html b/docs/nist-srd.html index 033b884eec..a6703d67bc 100644 --- a/docs/nist-srd.html +++ b/docs/nist-srd.html @@ -136,7 +136,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nist-srd.json b/docs/nist-srd.json index a07626cb14..588aeb1463 100644 --- a/docs/nist-srd.json +++ b/docs/nist-srd.json @@ -1 +1,12 @@ -{"key": "nist-srd", "short_name": "NIST SRD License", "name": "NIST Standard Reference Data License", "category": "Permissive", "owner": "NIST", "homepage_url": "https://www.nist.gov/open/copyright-fair-use-and-licensing-statements-srd-data-software-and-technical-series-publications#srd", "spdx_license_key": "LicenseRef-scancode-nist-srd", "other_urls": ["https://lists.fedorahosted.org/archives/list/legal@lists.fedoraproject.org/thread/LSM6MO6TAHTIDNF5COCA6UWQDHWRF3AH/"]} \ No newline at end of file +{ + "key": "nist-srd", + "short_name": "NIST SRD License", + "name": "NIST Standard Reference Data License", + "category": "Permissive", + "owner": "NIST", + "homepage_url": "https://www.nist.gov/open/copyright-fair-use-and-licensing-statements-srd-data-software-and-technical-series-publications#srd", + "spdx_license_key": "LicenseRef-scancode-nist-srd", + "other_urls": [ + "https://lists.fedorahosted.org/archives/list/legal@lists.fedoraproject.org/thread/LSM6MO6TAHTIDNF5COCA6UWQDHWRF3AH/" + ] +} \ No newline at end of file diff --git a/docs/nlod-1.0.LICENSE b/docs/nlod-1.0.LICENSE index 520dd95cdf..01a4d9c80b 100644 --- a/docs/nlod-1.0.LICENSE +++ b/docs/nlod-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: nlod-1.0 +short_name: NLOD-1.0 +name: Norwegian Licence for Open Government Data +category: Permissive +owner: Norway +homepage_url: http://data.norge.no/nlod/en/1.0 +spdx_license_key: NLOD-1.0 +other_urls: + - http://data.norge.no/nlod/no/1.0 +--- + Norwegian Licence for Open Government Data (NLOD) Preface of licence diff --git a/docs/nlod-1.0.html b/docs/nlod-1.0.html index fe41d6b8c8..3695c9ad4e 100644 --- a/docs/nlod-1.0.html +++ b/docs/nlod-1.0.html @@ -213,7 +213,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nlod-1.0.json b/docs/nlod-1.0.json index 08c7039a33..668f8b4147 100644 --- a/docs/nlod-1.0.json +++ b/docs/nlod-1.0.json @@ -1 +1,12 @@ -{"key": "nlod-1.0", "short_name": "NLOD-1.0", "name": "Norwegian Licence for Open Government Data", "category": "Permissive", "owner": "Norway", "homepage_url": "http://data.norge.no/nlod/en/1.0", "spdx_license_key": "NLOD-1.0", "other_urls": ["http://data.norge.no/nlod/no/1.0"]} \ No newline at end of file +{ + "key": "nlod-1.0", + "short_name": "NLOD-1.0", + "name": "Norwegian Licence for Open Government Data", + "category": "Permissive", + "owner": "Norway", + "homepage_url": "http://data.norge.no/nlod/en/1.0", + "spdx_license_key": "NLOD-1.0", + "other_urls": [ + "http://data.norge.no/nlod/no/1.0" + ] +} \ No newline at end of file diff --git a/docs/nlod-2.0.LICENSE b/docs/nlod-2.0.LICENSE index 148e978207..7b14cce9d8 100644 --- a/docs/nlod-2.0.LICENSE +++ b/docs/nlod-2.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: nlod-2.0 +short_name: NLOD-2.0 +name: Norwegian Licence for Open Government Data (NLOD) 2.0 +category: Permissive +owner: Norway +homepage_url: https://data.norge.no/nlod/en/2.0/ +spdx_license_key: NLOD-2.0 +other_urls: + - http://data.norge.no/nlod/en/2.0 +--- + Norwegian Licence for Open Government Data (NLOD) 2.0 Preface of licence diff --git a/docs/nlod-2.0.html b/docs/nlod-2.0.html index 2a035a6000..da48cc793e 100644 --- a/docs/nlod-2.0.html +++ b/docs/nlod-2.0.html @@ -215,7 +215,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nlod-2.0.json b/docs/nlod-2.0.json index 9932df02bf..870e734569 100644 --- a/docs/nlod-2.0.json +++ b/docs/nlod-2.0.json @@ -1 +1,12 @@ -{"key": "nlod-2.0", "short_name": "NLOD-2.0", "name": "Norwegian Licence for Open Government Data (NLOD) 2.0", "category": "Permissive", "owner": "Norway", "homepage_url": "https://data.norge.no/nlod/en/2.0/", "spdx_license_key": "NLOD-2.0", "other_urls": ["http://data.norge.no/nlod/en/2.0"]} \ No newline at end of file +{ + "key": "nlod-2.0", + "short_name": "NLOD-2.0", + "name": "Norwegian Licence for Open Government Data (NLOD) 2.0", + "category": "Permissive", + "owner": "Norway", + "homepage_url": "https://data.norge.no/nlod/en/2.0/", + "spdx_license_key": "NLOD-2.0", + "other_urls": [ + "http://data.norge.no/nlod/en/2.0" + ] +} \ No newline at end of file diff --git a/docs/nlpl.LICENSE b/docs/nlpl.LICENSE index d34ad6d20d..8d77e7ef5a 100644 --- a/docs/nlpl.LICENSE +++ b/docs/nlpl.LICENSE @@ -1,3 +1,22 @@ +--- +key: nlpl +short_name: NLPL +name: No Limit Public License +category: Public Domain +owner: Gilles Lamiral +homepage_url: https://fedoraproject.org/wiki/Licensing/NLPL +notes: | + Per Fedora, there is a certain irony in a Frenchman writing a license that + isn't wholly applicable in France, due to Moral Rights. But I digress. This + license is basically the same as the WTFPL (with slightly less profanity). + It is Free and GPL-Compatible. A copy of the license text was taken from + http://imapsync.lamiral.info/COPYING on 2012-07-09. +spdx_license_key: NLPL +text_urls: + - http://imapsync.lamiral.info/COPYING + - http://imapsync.lamiral.info/NOLIMIT +--- + NO LIMIT PUBLIC LICENSE Version 0, June 2012 diff --git a/docs/nlpl.html b/docs/nlpl.html index bc434f30a9..d6e4ed4ffe 100644 --- a/docs/nlpl.html +++ b/docs/nlpl.html @@ -160,7 +160,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nlpl.json b/docs/nlpl.json index d91590a24f..d1707170c6 100644 --- a/docs/nlpl.json +++ b/docs/nlpl.json @@ -1 +1,14 @@ -{"key": "nlpl", "short_name": "NLPL", "name": "No Limit Public License", "category": "Public Domain", "owner": "Gilles Lamiral", "homepage_url": "https://fedoraproject.org/wiki/Licensing/NLPL", "notes": "Per Fedora, there is a certain irony in a Frenchman writing a license that\nisn't wholly applicable in France, due to Moral Rights. But I digress. This\nlicense is basically the same as the WTFPL (with slightly less profanity).\nIt is Free and GPL-Compatible. A copy of the license text was taken from\nhttp://imapsync.lamiral.info/COPYING on 2012-07-09.\n", "spdx_license_key": "NLPL", "text_urls": ["http://imapsync.lamiral.info/COPYING", "http://imapsync.lamiral.info/NOLIMIT"]} \ No newline at end of file +{ + "key": "nlpl", + "short_name": "NLPL", + "name": "No Limit Public License", + "category": "Public Domain", + "owner": "Gilles Lamiral", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/NLPL", + "notes": "Per Fedora, there is a certain irony in a Frenchman writing a license that\nisn't wholly applicable in France, due to Moral Rights. But I digress. This\nlicense is basically the same as the WTFPL (with slightly less profanity).\nIt is Free and GPL-Compatible. A copy of the license text was taken from\nhttp://imapsync.lamiral.info/COPYING on 2012-07-09.\n", + "spdx_license_key": "NLPL", + "text_urls": [ + "http://imapsync.lamiral.info/COPYING", + "http://imapsync.lamiral.info/NOLIMIT" + ] +} \ No newline at end of file diff --git a/docs/no-license.LICENSE b/docs/no-license.LICENSE index e69de29bb2..80afce7892 100644 --- a/docs/no-license.LICENSE +++ b/docs/no-license.LICENSE @@ -0,0 +1,10 @@ +--- +key: no-license +short_name: No License Stated +name: No License Stated +category: Unstated License +owner: Unspecified +notes: Scanning and analysis of a software object did not find any license information at all. +is_unknown: yes +spdx_license_key: LicenseRef-scancode-no-license +--- \ No newline at end of file diff --git a/docs/no-license.html b/docs/no-license.html index ddc809c1a1..df7a04d5f1 100644 --- a/docs/no-license.html +++ b/docs/no-license.html @@ -106,6 +106,13 @@ +
is_unknown
+
+ + True + +
+
spdx_license_key
@@ -127,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/no-license.json b/docs/no-license.json index 1726ac8973..aa9428413d 100644 --- a/docs/no-license.json +++ b/docs/no-license.json @@ -1 +1,10 @@ -{"key": "no-license", "short_name": "No License Stated", "name": "No License Stated", "category": "Unstated License", "owner": "Unspecified", "notes": "Scanning and analysis of a software object did not find any license information at all.", "spdx_license_key": "LicenseRef-scancode-no-license"} \ No newline at end of file +{ + "key": "no-license", + "short_name": "No License Stated", + "name": "No License Stated", + "category": "Unstated License", + "owner": "Unspecified", + "notes": "Scanning and analysis of a software object did not find any license information at all.", + "is_unknown": true, + "spdx_license_key": "LicenseRef-scancode-no-license" +} \ No newline at end of file diff --git a/docs/no-license.yml b/docs/no-license.yml index 43920e893c..230ea265c2 100644 --- a/docs/no-license.yml +++ b/docs/no-license.yml @@ -4,4 +4,5 @@ name: No License Stated category: Unstated License owner: Unspecified notes: Scanning and analysis of a software object did not find any license information at all. +is_unknown: yes spdx_license_key: LicenseRef-scancode-no-license diff --git a/docs/node-js.LICENSE b/docs/node-js.LICENSE index e984d70e16..b8a4d32b41 100644 --- a/docs/node-js.LICENSE +++ b/docs/node-js.LICENSE @@ -1,3 +1,78 @@ +--- +key: node-js +short_name: Node License +name: Node License +category: Permissive +owner: Joyent +homepage_url: https://raw.githubusercontent.com/nodejs/node/master/LICENSE +notes: composite +spdx_license_key: LicenseRef-scancode-node-js +other_urls: + - https://nodejs.org/en/ +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 1995-2013 Jean-loup Gailly and Mark Adler + - Copyright (c) 1998-2011 The OpenSSL Project + - Copyright (c) 2000-2006, The Perl Foundation + - Copyright (c) 2002-2012 Igor Sysoev + - Copyright (c) 2007, Google Inc. + - Copyright (c) 2009 Google Inc. + - Copyright (c) 2011, Ben Noordhuis + - Copyright (c) 2011,2012 Nginx, Inc. + - Copyright (c) 2011-2012, Christopher Jeffrey (https://github.com/chjj/) + - Copyright (c) Isaac Z. Schlueter + - Copyright (c) by Tjarda Koster, http://jelloween.deviantart.com + - Copyright 1998 by the Massachusetts Institute of Technology + - Copyright 2006-2012, the V8 project authors + - Copyright 2011 Mathias Bynens + - Copyright Joyent, Inc. and other Node contributors + - copyright 2011 Mathias Bynens + - copyright Igor Sysoev + - copyright Joyent, Inc. and other Node contributors + - copyrighted by Apple Computer, Inc. + - copyrighted by Sun Microsystems Inc. + - copyrighted by the University of Cambridge and Google, Inc. +ignorable_holders: + - Apple Computer, Inc. + - Ben Noordhuis + - Christopher Jeffrey + - Google Inc. + - Igor Sysoev + - Isaac Z. Schlueter + - Jean-loup Gailly and Mark Adler + - Joyent, Inc. and other Node contributors + - Mathias Bynens + - Nginx, Inc. + - Sun Microsystems Inc. + - The OpenSSL Project + - The Perl Foundation + - Tjarda Koster + - the Massachusetts Institute of Technology + - the University of Cambridge and Google, Inc. + - the V8 project authors +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Mathias Pettersson and Brian Hammond + - The Perl Foundation + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://jelloween.deviantart.com/ + - http://mathiasbynens.be/ + - http://mths.be/mit + - http://mths.be/punycode + - http://www.apache.org/licenses/ + - http://www.openssl.org/ + - https://github.com/chjj +ignorable_emails: + - eay@cryptsoft.com + - info@bnoordhuis.nl + - jloup@gzip.org + - madler@alumni.caltech.edu + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + Node's license follows: ==== diff --git a/docs/node-js.html b/docs/node-js.html index 13e1ff5718..cfc3d1a71d 100644 --- a/docs/node-js.html +++ b/docs/node-js.html @@ -1004,7 +1004,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/node-js.json b/docs/node-js.json index 6ad6ef3343..af6b08d7ef 100644 --- a/docs/node-js.json +++ b/docs/node-js.json @@ -1 +1,80 @@ -{"key": "node-js", "short_name": "Node License", "name": "Node License", "category": "Permissive", "owner": "Joyent", "homepage_url": "https://raw.githubusercontent.com/nodejs/node/master/LICENSE", "notes": "composite", "spdx_license_key": "LicenseRef-scancode-node-js", "other_urls": ["https://nodejs.org/en/"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright (c) 1995-2013 Jean-loup Gailly and Mark Adler", "Copyright (c) 1998-2011 The OpenSSL Project", "Copyright (c) 2000-2006, The Perl Foundation", "Copyright (c) 2002-2012 Igor Sysoev", "Copyright (c) 2007, Google Inc.", "Copyright (c) 2009 Google Inc.", "Copyright (c) 2011, Ben Noordhuis ", "Copyright (c) 2011,2012 Nginx, Inc.", "Copyright (c) 2011-2012, Christopher Jeffrey (https://github.com/chjj/)", "Copyright (c) Isaac Z. Schlueter", "Copyright (c) by Tjarda Koster, http://jelloween.deviantart.com", "Copyright 1998 by the Massachusetts Institute of Technology", "Copyright 2006-2012, the V8 project authors", "Copyright 2011 Mathias Bynens ", "Copyright Joyent, Inc. and other Node contributors", "copyright 2011 Mathias Bynens ", "copyright Igor Sysoev", "copyright Joyent, Inc. and other Node contributors", "copyrighted by Apple Computer, Inc.", "copyrighted by Sun Microsystems Inc.", "copyrighted by the University of Cambridge and Google, Inc."], "ignorable_holders": ["Apple Computer, Inc.", "Ben Noordhuis", "Christopher Jeffrey", "Google Inc.", "Igor Sysoev", "Isaac Z. Schlueter", "Jean-loup Gailly and Mark Adler", "Joyent, Inc. and other Node contributors", "Mathias Bynens", "Nginx, Inc.", "Sun Microsystems Inc.", "The OpenSSL Project", "The Perl Foundation", "Tjarda Koster", "the Massachusetts Institute of Technology", "the University of Cambridge and Google, Inc.", "the V8 project authors"], "ignorable_authors": ["Eric Young (eay@cryptsoft.com)", "Mathias Pettersson and Brian Hammond", "The Perl Foundation", "Tim Hudson (tjh@cryptsoft.com)", "the OpenSSL Project"], "ignorable_urls": ["http://jelloween.deviantart.com/", "http://mathiasbynens.be/", "http://mths.be/mit", "http://mths.be/punycode", "http://www.apache.org/licenses/", "http://www.openssl.org/", "https://github.com/chjj"], "ignorable_emails": ["eay@cryptsoft.com", "info@bnoordhuis.nl", "jloup@gzip.org", "madler@alumni.caltech.edu", "openssl-core@openssl.org", "tjh@cryptsoft.com"]} \ No newline at end of file +{ + "key": "node-js", + "short_name": "Node License", + "name": "Node License", + "category": "Permissive", + "owner": "Joyent", + "homepage_url": "https://raw.githubusercontent.com/nodejs/node/master/LICENSE", + "notes": "composite", + "spdx_license_key": "LicenseRef-scancode-node-js", + "other_urls": [ + "https://nodejs.org/en/" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright (c) 1995-2013 Jean-loup Gailly and Mark Adler", + "Copyright (c) 1998-2011 The OpenSSL Project", + "Copyright (c) 2000-2006, The Perl Foundation", + "Copyright (c) 2002-2012 Igor Sysoev", + "Copyright (c) 2007, Google Inc.", + "Copyright (c) 2009 Google Inc.", + "Copyright (c) 2011, Ben Noordhuis ", + "Copyright (c) 2011,2012 Nginx, Inc.", + "Copyright (c) 2011-2012, Christopher Jeffrey (https://github.com/chjj/)", + "Copyright (c) Isaac Z. Schlueter", + "Copyright (c) by Tjarda Koster, http://jelloween.deviantart.com", + "Copyright 1998 by the Massachusetts Institute of Technology", + "Copyright 2006-2012, the V8 project authors", + "Copyright 2011 Mathias Bynens ", + "Copyright Joyent, Inc. and other Node contributors", + "copyright 2011 Mathias Bynens ", + "copyright Igor Sysoev", + "copyright Joyent, Inc. and other Node contributors", + "copyrighted by Apple Computer, Inc.", + "copyrighted by Sun Microsystems Inc.", + "copyrighted by the University of Cambridge and Google, Inc." + ], + "ignorable_holders": [ + "Apple Computer, Inc.", + "Ben Noordhuis", + "Christopher Jeffrey", + "Google Inc.", + "Igor Sysoev", + "Isaac Z. Schlueter", + "Jean-loup Gailly and Mark Adler", + "Joyent, Inc. and other Node contributors", + "Mathias Bynens", + "Nginx, Inc.", + "Sun Microsystems Inc.", + "The OpenSSL Project", + "The Perl Foundation", + "Tjarda Koster", + "the Massachusetts Institute of Technology", + "the University of Cambridge and Google, Inc.", + "the V8 project authors" + ], + "ignorable_authors": [ + "Eric Young (eay@cryptsoft.com)", + "Mathias Pettersson and Brian Hammond", + "The Perl Foundation", + "Tim Hudson (tjh@cryptsoft.com)", + "the OpenSSL Project" + ], + "ignorable_urls": [ + "http://jelloween.deviantart.com/", + "http://mathiasbynens.be/", + "http://mths.be/mit", + "http://mths.be/punycode", + "http://www.apache.org/licenses/", + "http://www.openssl.org/", + "https://github.com/chjj" + ], + "ignorable_emails": [ + "eay@cryptsoft.com", + "info@bnoordhuis.nl", + "jloup@gzip.org", + "madler@alumni.caltech.edu", + "openssl-core@openssl.org", + "tjh@cryptsoft.com" + ] +} \ No newline at end of file diff --git a/docs/nokia-qt-exception-1.1.LICENSE b/docs/nokia-qt-exception-1.1.LICENSE index 3c141bea29..bfdc3db6e0 100644 --- a/docs/nokia-qt-exception-1.1.LICENSE +++ b/docs/nokia-qt-exception-1.1.LICENSE @@ -1,3 +1,39 @@ +--- +key: nokia-qt-exception-1.1 +is_deprecated: yes +short_name: Nokia Qt Exception to LGPL 2.1 +name: Nokia Qt Exception to LGPL 2.1 +category: Copyleft Limited +owner: Nokia +homepage_url: https://dev.keepassx.org/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION +notes: previously known as the SPDX id Nokia-Qt-exception-1.1 Replaced by qt-lgpl-exception-1.1 +is_exception: yes +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +standard_notice: | + Nokia Qt LGPL Exception version 1.1 + As an additional permission to the GNU Lesser General Public License + version 2.1, the object code form of a "work that uses the Library" may + incorporate material from a header file that is part of the Library. You + may distribute such object code under terms of your choice, provided that: + (i) the header files of the Library have not been modified; and + (ii) the incorporated material is limited to numerical parameters, data + structure layouts, accessors, macros, inline functions and templates; and + (iii) you comply with the terms of Section 6 of the GNU Lesser General + Public License version 2.1. + Moreover, you may apply this exception to a modified version of the + Library, provided that such modification does not involve copying material + from the Library into the modified Library's header files unless such + material is limited to + (i) numerical parameters; + (ii) data structure layouts; + (iii) accessors; and + (iv) small macros, templates and inline functions of five lines or less in + length. + Furthermore, you are not required to apply this additional permission to a + modified version of the Library. +--- + Nokia Qt LGPL Exception version 1.1 As an additional permission to the GNU Lesser General Public License version diff --git a/docs/nokia-qt-exception-1.1.html b/docs/nokia-qt-exception-1.1.html index d81e526a85..b99add9581 100644 --- a/docs/nokia-qt-exception-1.1.html +++ b/docs/nokia-qt-exception-1.1.html @@ -160,6 +160,7 @@ length. Furthermore, you are not required to apply this additional permission to a modified version of the Library. +
@@ -201,7 +202,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nokia-qt-exception-1.1.json b/docs/nokia-qt-exception-1.1.json index 38a3e5dc9e..e0cc01802c 100644 --- a/docs/nokia-qt-exception-1.1.json +++ b/docs/nokia-qt-exception-1.1.json @@ -1 +1,15 @@ -{"key": "nokia-qt-exception-1.1", "is_deprecated": true, "short_name": "Nokia Qt Exception to LGPL 2.1", "name": "Nokia Qt Exception to LGPL 2.1", "category": "Copyleft Limited", "owner": "Nokia", "homepage_url": "https://dev.keepassx.org/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION", "notes": "previously known as the SPDX id Nokia-Qt-exception-1.1 Replaced by qt-lgpl-exception-1.1", "is_exception": true, "other_urls": ["http://www.gnu.org/licenses/lgpl-2.1.txt"], "standard_notice": "Nokia Qt LGPL Exception version 1.1\nAs an additional permission to the GNU Lesser General Public License\nversion 2.1, the object code form of a \"work that uses the Library\" may\nincorporate material from a header file that is part of the Library. You\nmay distribute such object code under terms of your choice, provided that:\n(i) the header files of the Library have not been modified; and\n(ii) the incorporated material is limited to numerical parameters, data\nstructure layouts, accessors, macros, inline functions and templates; and\n(iii) you comply with the terms of Section 6 of the GNU Lesser General\nPublic License version 2.1.\nMoreover, you may apply this exception to a modified version of the\nLibrary, provided that such modification does not involve copying material\nfrom the Library into the modified Library's header files unless such\nmaterial is limited to\n(i) numerical parameters;\n(ii) data structure layouts;\n(iii) accessors; and\n(iv) small macros, templates and inline functions of five lines or less in\nlength.\nFurthermore, you are not required to apply this additional permission to a\nmodified version of the Library."} \ No newline at end of file +{ + "key": "nokia-qt-exception-1.1", + "is_deprecated": true, + "short_name": "Nokia Qt Exception to LGPL 2.1", + "name": "Nokia Qt Exception to LGPL 2.1", + "category": "Copyleft Limited", + "owner": "Nokia", + "homepage_url": "https://dev.keepassx.org/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION", + "notes": "previously known as the SPDX id Nokia-Qt-exception-1.1 Replaced by qt-lgpl-exception-1.1", + "is_exception": true, + "other_urls": [ + "http://www.gnu.org/licenses/lgpl-2.1.txt" + ], + "standard_notice": "Nokia Qt LGPL Exception version 1.1\nAs an additional permission to the GNU Lesser General Public License\nversion 2.1, the object code form of a \"work that uses the Library\" may\nincorporate material from a header file that is part of the Library. You\nmay distribute such object code under terms of your choice, provided that:\n(i) the header files of the Library have not been modified; and\n(ii) the incorporated material is limited to numerical parameters, data\nstructure layouts, accessors, macros, inline functions and templates; and\n(iii) you comply with the terms of Section 6 of the GNU Lesser General\nPublic License version 2.1.\nMoreover, you may apply this exception to a modified version of the\nLibrary, provided that such modification does not involve copying material\nfrom the Library into the modified Library's header files unless such\nmaterial is limited to\n(i) numerical parameters;\n(ii) data structure layouts;\n(iii) accessors; and\n(iv) small macros, templates and inline functions of five lines or less in\nlength.\nFurthermore, you are not required to apply this additional permission to a\nmodified version of the Library.\n" +} \ No newline at end of file diff --git a/docs/nokos-1.0a.LICENSE b/docs/nokos-1.0a.LICENSE index d9445c357c..c2ecdd26ac 100644 --- a/docs/nokos-1.0a.LICENSE +++ b/docs/nokos-1.0a.LICENSE @@ -1,3 +1,24 @@ +--- +key: nokos-1.0a +short_name: NOKOS License 1.0a +name: Nokia Open Source License 1.0a +category: Copyleft Limited +owner: Nokia +homepage_url: http://www.opensource.org/licenses/nokia.html +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: Nokia +text_urls: + - http://www.opensource.org/licenses/nokia.html +osi_url: http://www.opensource.org/licenses/nokia.html +other_urls: + - http://www.opensource.org/licenses/nokia + - https://opensource.org/licenses/nokia +ignorable_copyrights: + - Copyright (c) Nokia and others +ignorable_holders: + - Nokia and others +--- + Nokia Open Source License (NOKOS License) Version 1.0a 1. DEFINITIONS. diff --git a/docs/nokos-1.0a.html b/docs/nokos-1.0a.html index 4a236088c3..652af2d7d9 100644 --- a/docs/nokos-1.0a.html +++ b/docs/nokos-1.0a.html @@ -562,7 +562,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nokos-1.0a.json b/docs/nokos-1.0a.json index c272056dd9..e7a9cb6b8d 100644 --- a/docs/nokos-1.0a.json +++ b/docs/nokos-1.0a.json @@ -1 +1,24 @@ -{"key": "nokos-1.0a", "short_name": "NOKOS License 1.0a", "name": "Nokia Open Source License 1.0a", "category": "Copyleft Limited", "owner": "Nokia", "homepage_url": "http://www.opensource.org/licenses/nokia.html", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "Nokia", "text_urls": ["http://www.opensource.org/licenses/nokia.html"], "osi_url": "http://www.opensource.org/licenses/nokia.html", "other_urls": ["http://www.opensource.org/licenses/nokia", "https://opensource.org/licenses/nokia"], "ignorable_copyrights": ["Copyright (c) Nokia and others"], "ignorable_holders": ["Nokia and others"]} \ No newline at end of file +{ + "key": "nokos-1.0a", + "short_name": "NOKOS License 1.0a", + "name": "Nokia Open Source License 1.0a", + "category": "Copyleft Limited", + "owner": "Nokia", + "homepage_url": "http://www.opensource.org/licenses/nokia.html", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "Nokia", + "text_urls": [ + "http://www.opensource.org/licenses/nokia.html" + ], + "osi_url": "http://www.opensource.org/licenses/nokia.html", + "other_urls": [ + "http://www.opensource.org/licenses/nokia", + "https://opensource.org/licenses/nokia" + ], + "ignorable_copyrights": [ + "Copyright (c) Nokia and others" + ], + "ignorable_holders": [ + "Nokia and others" + ] +} \ No newline at end of file diff --git a/docs/non-violent-4.0.LICENSE b/docs/non-violent-4.0.LICENSE index 284dba7455..98b1fa1f66 100644 --- a/docs/non-violent-4.0.LICENSE +++ b/docs/non-violent-4.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: non-violent-4.0 +short_name: NVPL 4.0 +name: Non-Violent Public License v4 +category: Proprietary Free +owner: Thufie +homepage_url: https://thufie.lain.haus/NPL.html +spdx_license_key: LicenseRef-scancode-non-violent-4.0 +ignorable_urls: + - https://thufie.lain.haus/NPL.html +--- + NON-VIOLENT PUBLIC LICENSE v4 Preamble diff --git a/docs/non-violent-4.0.html b/docs/non-violent-4.0.html index d726f72ab5..3a67424ee1 100644 --- a/docs/non-violent-4.0.html +++ b/docs/non-violent-4.0.html @@ -577,7 +577,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/non-violent-4.0.json b/docs/non-violent-4.0.json index b3068c8e8f..0e57c35a15 100644 --- a/docs/non-violent-4.0.json +++ b/docs/non-violent-4.0.json @@ -1 +1,12 @@ -{"key": "non-violent-4.0", "short_name": "NVPL 4.0", "name": "Non-Violent Public License v4", "category": "Proprietary Free", "owner": "Thufie", "homepage_url": "https://thufie.lain.haus/NPL.html", "spdx_license_key": "LicenseRef-scancode-non-violent-4.0", "ignorable_urls": ["https://thufie.lain.haus/NPL.html"]} \ No newline at end of file +{ + "key": "non-violent-4.0", + "short_name": "NVPL 4.0", + "name": "Non-Violent Public License v4", + "category": "Proprietary Free", + "owner": "Thufie", + "homepage_url": "https://thufie.lain.haus/NPL.html", + "spdx_license_key": "LicenseRef-scancode-non-violent-4.0", + "ignorable_urls": [ + "https://thufie.lain.haus/NPL.html" + ] +} \ No newline at end of file diff --git a/docs/nonexclusive.LICENSE b/docs/nonexclusive.LICENSE index 1cf9d2498c..bc5566e985 100644 --- a/docs/nonexclusive.LICENSE +++ b/docs/nonexclusive.LICENSE @@ -1,3 +1,12 @@ +--- +key: nonexclusive +short_name: Nonexclusive License +name: Nonexclusive License +category: Permissive +owner: O'Reilly Media, Inc. +spdx_license_key: LicenseRef-scancode-nonexclusive +--- + The recipient, and any party obtaining a copy of these files from the recipient, directly or indirectly, is granted, free of charge, a full and unrestricted irrevocable, world-wide, paid up, royalty-free, @@ -7,4 +16,4 @@ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons who receive copies from any such party to do so. This license includes without limitation a license to do the foregoing actions under any patents of -the party supplying this software to the recipient. +the party supplying this software to the recipient. \ No newline at end of file diff --git a/docs/nonexclusive.html b/docs/nonexclusive.html index 3f49fbd75b..e06ee19751 100644 --- a/docs/nonexclusive.html +++ b/docs/nonexclusive.html @@ -117,8 +117,7 @@ and/or sell copies of the Software, and to permit persons who receive copies from any such party to do so. This license includes without limitation a license to do the foregoing actions under any patents of -the party supplying this software to the recipient. - +the party supplying this software to the recipient.
@@ -130,7 +129,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nonexclusive.json b/docs/nonexclusive.json index 16ddcd4db8..4f00ee0acd 100644 --- a/docs/nonexclusive.json +++ b/docs/nonexclusive.json @@ -1 +1,8 @@ -{"key": "nonexclusive", "short_name": "Nonexclusive License", "name": "Nonexclusive License", "category": "Permissive", "owner": "O'Reilly Media, Inc.", "spdx_license_key": "LicenseRef-scancode-nonexclusive"} \ No newline at end of file +{ + "key": "nonexclusive", + "short_name": "Nonexclusive License", + "name": "Nonexclusive License", + "category": "Permissive", + "owner": "O'Reilly Media, Inc.", + "spdx_license_key": "LicenseRef-scancode-nonexclusive" +} \ No newline at end of file diff --git a/docs/nortel-dasa.LICENSE b/docs/nortel-dasa.LICENSE index 971cd2b550..54460c441d 100644 --- a/docs/nortel-dasa.LICENSE +++ b/docs/nortel-dasa.LICENSE @@ -1,3 +1,16 @@ +--- +key: nortel-dasa +short_name: Nortel DASA License +name: Nortel DASA License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-nortel-dasa +ignorable_authors: + - F.Schnekenbuehl +ignorable_emails: + - frank@comsys.dofn.de +--- + Nortel DASA License Created by F.Schnekenbuehl from clk_rcc8000.c @@ -6,4 +19,4 @@ A Joint venture of Daimler-Benz Aerospace and Nortel 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. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/docs/nortel-dasa.html b/docs/nortel-dasa.html index bcbdd2c516..c4437a4352 100644 --- a/docs/nortel-dasa.html +++ b/docs/nortel-dasa.html @@ -106,6 +106,15 @@ +
ignorable_authors
+
+ + + +
+
ignorable_emails
@@ -125,8 +134,7 @@ 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. - +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
@@ -138,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nortel-dasa.json b/docs/nortel-dasa.json index fe6e0b7c09..48b29e1c18 100644 --- a/docs/nortel-dasa.json +++ b/docs/nortel-dasa.json @@ -1 +1,14 @@ -{"key": "nortel-dasa", "short_name": "Nortel DASA License", "name": "Nortel DASA License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-nortel-dasa", "ignorable_emails": ["frank@comsys.dofn.de"]} \ No newline at end of file +{ + "key": "nortel-dasa", + "short_name": "Nortel DASA License", + "name": "Nortel DASA License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-nortel-dasa", + "ignorable_authors": [ + "F.Schnekenbuehl " + ], + "ignorable_emails": [ + "frank@comsys.dofn.de" + ] +} \ No newline at end of file diff --git a/docs/nortel-dasa.yml b/docs/nortel-dasa.yml index e4346f3f49..0bdc14e22a 100644 --- a/docs/nortel-dasa.yml +++ b/docs/nortel-dasa.yml @@ -4,5 +4,7 @@ name: Nortel DASA License category: Permissive owner: Unspecified spdx_license_key: LicenseRef-scancode-nortel-dasa +ignorable_authors: + - F.Schnekenbuehl ignorable_emails: - frank@comsys.dofn.de diff --git a/docs/northwoods-sla-2021.LICENSE b/docs/northwoods-sla-2021.LICENSE index 18efb96164..d5ed86a48e 100644 --- a/docs/northwoods-sla-2021.LICENSE +++ b/docs/northwoods-sla-2021.LICENSE @@ -1,3 +1,23 @@ +--- +key: northwoods-sla-2021 +short_name: Northwoods Software SLA 2021 +name: Northwoods Software SLA 2021 +category: Commercial +owner: Northwoods +homepage_url: https://gojs.net/latest/license.html +spdx_license_key: LicenseRef-scancode-northwoods-sla-2021 +other_urls: + - https://github.com/NorthwoodsSoftware/GoJS/blob/master/README.md#license +ignorable_copyrights: + - Copyright (c) 1999-2021 Northwoods Software Corporation +ignorable_holders: + - Northwoods Software Corporation +ignorable_urls: + - https://www.nwoods.com/ +ignorable_emails: + - GoSales@nwoods.com +--- + NORTHWOODS SOFTWARE CORPORATION Software License Agreement diff --git a/docs/northwoods-sla-2021.html b/docs/northwoods-sla-2021.html index 765825b17d..76838cf40d 100644 --- a/docs/northwoods-sla-2021.html +++ b/docs/northwoods-sla-2021.html @@ -391,7 +391,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/northwoods-sla-2021.json b/docs/northwoods-sla-2021.json index 69551ddff1..839d1be9e5 100644 --- a/docs/northwoods-sla-2021.json +++ b/docs/northwoods-sla-2021.json @@ -1 +1,24 @@ -{"key": "northwoods-sla-2021", "short_name": "Northwoods Software SLA 2021", "name": "Northwoods Software SLA 2021", "category": "Commercial", "owner": "Northwoods", "homepage_url": "https://gojs.net/latest/license.html", "spdx_license_key": "LicenseRef-scancode-northwoods-sla-2021", "other_urls": ["https://github.com/NorthwoodsSoftware/GoJS/blob/master/README.md#license"], "ignorable_copyrights": ["Copyright (c) 1999-2021 Northwoods Software Corporation"], "ignorable_holders": ["Northwoods Software Corporation"], "ignorable_urls": ["https://www.nwoods.com/"], "ignorable_emails": ["GoSales@nwoods.com"]} \ No newline at end of file +{ + "key": "northwoods-sla-2021", + "short_name": "Northwoods Software SLA 2021", + "name": "Northwoods Software SLA 2021", + "category": "Commercial", + "owner": "Northwoods", + "homepage_url": "https://gojs.net/latest/license.html", + "spdx_license_key": "LicenseRef-scancode-northwoods-sla-2021", + "other_urls": [ + "https://github.com/NorthwoodsSoftware/GoJS/blob/master/README.md#license" + ], + "ignorable_copyrights": [ + "Copyright (c) 1999-2021 Northwoods Software Corporation" + ], + "ignorable_holders": [ + "Northwoods Software Corporation" + ], + "ignorable_urls": [ + "https://www.nwoods.com/" + ], + "ignorable_emails": [ + "GoSales@nwoods.com" + ] +} \ No newline at end of file diff --git a/docs/nosl-1.0.LICENSE b/docs/nosl-1.0.LICENSE index d46e49e984..e092e4c0de 100644 --- a/docs/nosl-1.0.LICENSE +++ b/docs/nosl-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: nosl-1.0 +short_name: NOSL 1.0 +name: Netizen Open Source License 1.0 +category: Copyleft Limited +owner: Netizen +homepage_url: http://bits.netizen.com.au/licenses/NOSL/ +spdx_license_key: NOSL +text_urls: + - http://bits.netizen.com.au/licenses/NOSL/nosl.txt +ignorable_urls: + - http://netizen.com.au/licenses/NOPL/ +--- + The Netizen Open Source License (NOSL) is a license based on the Mozilla Public License (MPL). NETIZEN OPEN SOURCE LICENSE Version 1.0 diff --git a/docs/nosl-1.0.html b/docs/nosl-1.0.html index 9c8b3db051..662d6a7241 100644 --- a/docs/nosl-1.0.html +++ b/docs/nosl-1.0.html @@ -629,7 +629,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nosl-1.0.json b/docs/nosl-1.0.json index b44bde66e9..e80c3fa3ad 100644 --- a/docs/nosl-1.0.json +++ b/docs/nosl-1.0.json @@ -1 +1,15 @@ -{"key": "nosl-1.0", "short_name": "NOSL 1.0", "name": "Netizen Open Source License 1.0", "category": "Copyleft Limited", "owner": "Netizen", "homepage_url": "http://bits.netizen.com.au/licenses/NOSL/", "spdx_license_key": "NOSL", "text_urls": ["http://bits.netizen.com.au/licenses/NOSL/nosl.txt"], "ignorable_urls": ["http://netizen.com.au/licenses/NOPL/"]} \ No newline at end of file +{ + "key": "nosl-1.0", + "short_name": "NOSL 1.0", + "name": "Netizen Open Source License 1.0", + "category": "Copyleft Limited", + "owner": "Netizen", + "homepage_url": "http://bits.netizen.com.au/licenses/NOSL/", + "spdx_license_key": "NOSL", + "text_urls": [ + "http://bits.netizen.com.au/licenses/NOSL/nosl.txt" + ], + "ignorable_urls": [ + "http://netizen.com.au/licenses/NOPL/" + ] +} \ No newline at end of file diff --git a/docs/nosl-3.0.LICENSE b/docs/nosl-3.0.LICENSE index b423f83729..90011a7609 100644 --- a/docs/nosl-3.0.LICENSE +++ b/docs/nosl-3.0.LICENSE @@ -1,3 +1,25 @@ +--- +key: nosl-3.0 +short_name: Non-Profit OSL 3.0 +name: Non-Profit Open Software License 3.0 +category: Copyleft +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/NOSL3.0.html +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: NPOSL-3.0 +osi_license_key: NPOSL-3.0 +text_urls: + - http://www.opensource.org/licenses/NOSL3.0.html +osi_url: http://www.opensource.org/licenses/NOSL3.0.html +other_urls: + - http://www.opensource.org/licenses/NOSL3.0 + - https://opensource.org/licenses/NOSL3.0 +ignorable_copyrights: + - Copyright (c) 2005 Lawrence Rosen +ignorable_holders: + - Lawrence Rosen +--- + Non-Profit Open Software License ("Non-Profit OSL") 3.0 This Non-Profit Open Software License ("Non-Profit OSL") version 3.0 (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: diff --git a/docs/nosl-3.0.html b/docs/nosl-3.0.html index baaf153a74..560da02e82 100644 --- a/docs/nosl-3.0.html +++ b/docs/nosl-3.0.html @@ -242,7 +242,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nosl-3.0.json b/docs/nosl-3.0.json index 782b648bff..965cc1a672 100644 --- a/docs/nosl-3.0.json +++ b/docs/nosl-3.0.json @@ -1 +1,25 @@ -{"key": "nosl-3.0", "short_name": "Non-Profit OSL 3.0", "name": "Non-Profit Open Software License 3.0", "category": "Copyleft", "owner": "OSI - Open Source Initiative", "homepage_url": "http://www.opensource.org/licenses/NOSL3.0.html", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "NPOSL-3.0", "osi_license_key": "NPOSL-3.0", "text_urls": ["http://www.opensource.org/licenses/NOSL3.0.html"], "osi_url": "http://www.opensource.org/licenses/NOSL3.0.html", "other_urls": ["http://www.opensource.org/licenses/NOSL3.0", "https://opensource.org/licenses/NOSL3.0"], "ignorable_copyrights": ["Copyright (c) 2005 Lawrence Rosen"], "ignorable_holders": ["Lawrence Rosen"]} \ No newline at end of file +{ + "key": "nosl-3.0", + "short_name": "Non-Profit OSL 3.0", + "name": "Non-Profit Open Software License 3.0", + "category": "Copyleft", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://www.opensource.org/licenses/NOSL3.0.html", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "NPOSL-3.0", + "osi_license_key": "NPOSL-3.0", + "text_urls": [ + "http://www.opensource.org/licenses/NOSL3.0.html" + ], + "osi_url": "http://www.opensource.org/licenses/NOSL3.0.html", + "other_urls": [ + "http://www.opensource.org/licenses/NOSL3.0", + "https://opensource.org/licenses/NOSL3.0" + ], + "ignorable_copyrights": [ + "Copyright (c) 2005 Lawrence Rosen" + ], + "ignorable_holders": [ + "Lawrence Rosen" + ] +} \ No newline at end of file diff --git a/docs/notre-dame.LICENSE b/docs/notre-dame.LICENSE index 0fe05588e6..fcf5fb4424 100644 --- a/docs/notre-dame.LICENSE +++ b/docs/notre-dame.LICENSE @@ -1,3 +1,19 @@ +--- +key: notre-dame +short_name: Notre Dame License +name: University of Notre Dame License +category: Permissive +owner: University of Notre Dame +homepage_url: https://github.com/RWTH-OS/MP-MPICH/blob/f2ae296477bb9d812fda587221b3419c09f85b4a/MPI-2-C%2B%2B/LICENSE +spdx_license_key: LicenseRef-scancode-notre-dame +ignorable_copyrights: + - Copyright 1997-2000, University of Notre Dame +ignorable_holders: + - University of Notre Dame +ignorable_authors: + - Jeremy G. Siek, Jeffery M. Squyres, Michael P. McNally, and Andrew Lumsdaine +--- + COPYRIGHT NOTICE: Copyright 1997-2000, University of Notre Dame. Authors: Jeremy G. Siek, Jeffery M. Squyres, Michael P. McNally, and diff --git a/docs/notre-dame.html b/docs/notre-dame.html index 57669138ce..c573b5c32b 100644 --- a/docs/notre-dame.html +++ b/docs/notre-dame.html @@ -202,7 +202,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/notre-dame.json b/docs/notre-dame.json index 559ada5215..d62c995e5e 100644 --- a/docs/notre-dame.json +++ b/docs/notre-dame.json @@ -1 +1,18 @@ -{"key": "notre-dame", "short_name": "Notre Dame License", "name": "University of Notre Dame License", "category": "Permissive", "owner": "University of Notre Dame", "homepage_url": "https://github.com/RWTH-OS/MP-MPICH/blob/f2ae296477bb9d812fda587221b3419c09f85b4a/MPI-2-C%2B%2B/LICENSE", "spdx_license_key": "LicenseRef-scancode-notre-dame", "ignorable_copyrights": ["Copyright 1997-2000, University of Notre Dame"], "ignorable_holders": ["University of Notre Dame"], "ignorable_authors": ["Jeremy G. Siek, Jeffery M. Squyres, Michael P. McNally, and Andrew Lumsdaine"]} \ No newline at end of file +{ + "key": "notre-dame", + "short_name": "Notre Dame License", + "name": "University of Notre Dame License", + "category": "Permissive", + "owner": "University of Notre Dame", + "homepage_url": "https://github.com/RWTH-OS/MP-MPICH/blob/f2ae296477bb9d812fda587221b3419c09f85b4a/MPI-2-C%2B%2B/LICENSE", + "spdx_license_key": "LicenseRef-scancode-notre-dame", + "ignorable_copyrights": [ + "Copyright 1997-2000, University of Notre Dame" + ], + "ignorable_holders": [ + "University of Notre Dame" + ], + "ignorable_authors": [ + "Jeremy G. Siek, Jeffery M. Squyres, Michael P. McNally, and Andrew Lumsdaine" + ] +} \ No newline at end of file diff --git a/docs/noweb.LICENSE b/docs/noweb.LICENSE index f08f1c9ef1..cb7b948cb8 100644 --- a/docs/noweb.LICENSE +++ b/docs/noweb.LICENSE @@ -1,3 +1,15 @@ +--- +key: noweb +short_name: Noweb License +name: Noweb License +category: Copyleft Limited +owner: Norman Ramsey +homepage_url: https://fedoraproject.org/wiki/Licensing:Noweb?rd=Licensing/Noweb +spdx_license_key: Noweb +other_urls: + - https://fedoraproject.org/wiki/Licensing/Noweb +--- + Noweb is protected by copyright. It is not public-domain software or shareware, and it is not protected by a ``copyleft'' agreement like the one used by the Free Software Foundation. diff --git a/docs/noweb.html b/docs/noweb.html index 6aca02e3e7..537771edcb 100644 --- a/docs/noweb.html +++ b/docs/noweb.html @@ -155,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/noweb.json b/docs/noweb.json index d2339442a9..aec689f4d8 100644 --- a/docs/noweb.json +++ b/docs/noweb.json @@ -1 +1,12 @@ -{"key": "noweb", "short_name": "Noweb License", "name": "Noweb License", "category": "Copyleft Limited", "owner": "Norman Ramsey", "homepage_url": "https://fedoraproject.org/wiki/Licensing:Noweb?rd=Licensing/Noweb", "spdx_license_key": "Noweb", "other_urls": ["https://fedoraproject.org/wiki/Licensing/Noweb"]} \ No newline at end of file +{ + "key": "noweb", + "short_name": "Noweb License", + "name": "Noweb License", + "category": "Copyleft Limited", + "owner": "Norman Ramsey", + "homepage_url": "https://fedoraproject.org/wiki/Licensing:Noweb?rd=Licensing/Noweb", + "spdx_license_key": "Noweb", + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/Noweb" + ] +} \ No newline at end of file diff --git a/docs/npl-1.0.LICENSE b/docs/npl-1.0.LICENSE index 9864fe1bce..5484dce00e 100644 --- a/docs/npl-1.0.LICENSE +++ b/docs/npl-1.0.LICENSE @@ -1,3 +1,24 @@ +--- +key: npl-1.0 +short_name: NPL 1.0 +name: Netscape Public License 1.0 +category: Copyleft Limited +owner: Mozilla +homepage_url: http://www.mozilla.org/MPL/NPL-1.0.html +spdx_license_key: NPL-1.0 +text_urls: + - http://www.mozilla.org/MPL/NPL-1.0.html +other_urls: + - http://www.mozilla.org/MPL/NPL/1.0/ + - http://www.mozilla.org/NPL/ +ignorable_copyrights: + - Copyright (c) 1998 Netscape Communications Corporation +ignorable_holders: + - Netscape Communications Corporation +ignorable_urls: + - http://www.mozilla.org/NPL/ +--- + NETSCAPE PUBLIC LICENSE Version 1.0 diff --git a/docs/npl-1.0.html b/docs/npl-1.0.html index 9a3ad5e88b..f94861a3be 100644 --- a/docs/npl-1.0.html +++ b/docs/npl-1.0.html @@ -308,7 +308,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/npl-1.0.json b/docs/npl-1.0.json index edf3580ac0..e3eb29041d 100644 --- a/docs/npl-1.0.json +++ b/docs/npl-1.0.json @@ -1 +1,25 @@ -{"key": "npl-1.0", "short_name": "NPL 1.0", "name": "Netscape Public License 1.0", "category": "Copyleft Limited", "owner": "Mozilla", "homepage_url": "http://www.mozilla.org/MPL/NPL-1.0.html", "spdx_license_key": "NPL-1.0", "text_urls": ["http://www.mozilla.org/MPL/NPL-1.0.html"], "other_urls": ["http://www.mozilla.org/MPL/NPL/1.0/", "http://www.mozilla.org/NPL/"], "ignorable_copyrights": ["Copyright (c) 1998 Netscape Communications Corporation"], "ignorable_holders": ["Netscape Communications Corporation"], "ignorable_urls": ["http://www.mozilla.org/NPL/"]} \ No newline at end of file +{ + "key": "npl-1.0", + "short_name": "NPL 1.0", + "name": "Netscape Public License 1.0", + "category": "Copyleft Limited", + "owner": "Mozilla", + "homepage_url": "http://www.mozilla.org/MPL/NPL-1.0.html", + "spdx_license_key": "NPL-1.0", + "text_urls": [ + "http://www.mozilla.org/MPL/NPL-1.0.html" + ], + "other_urls": [ + "http://www.mozilla.org/MPL/NPL/1.0/", + "http://www.mozilla.org/NPL/" + ], + "ignorable_copyrights": [ + "Copyright (c) 1998 Netscape Communications Corporation" + ], + "ignorable_holders": [ + "Netscape Communications Corporation" + ], + "ignorable_urls": [ + "http://www.mozilla.org/NPL/" + ] +} \ No newline at end of file diff --git a/docs/npl-1.1.LICENSE b/docs/npl-1.1.LICENSE index c7a67243e2..2f2c3d4f88 100644 --- a/docs/npl-1.1.LICENSE +++ b/docs/npl-1.1.LICENSE @@ -1,3 +1,24 @@ +--- +key: npl-1.1 +short_name: NPL 1.1 +name: Netscape Public License 1.1 +category: Copyleft Limited +owner: Mozilla +homepage_url: http://www.mozilla.org/MPL/NPL-1.1.html +spdx_license_key: NPL-1.1 +text_urls: + - http://www.mozilla.org/MPL/NPL-1.1.html +other_urls: + - http://www.mozilla.org/MPL/NPL/1.1/ + - http://www.mozilla.org/NPL/ +ignorable_copyrights: + - Copyright (c) 1998-1999 Netscape Communications Corporation +ignorable_holders: + - Netscape Communications Corporation +ignorable_urls: + - http://www.mozilla.org/NPL/ +--- + AMENDMENTS The Netscape Public License Version 1.1 ("NPL") consists of the Mozilla Public License Version 1.1 with the following Amendments, including Exhibit A-Netscape Public License. Files identified with "Exhibit A-Netscape Public License" are governed by the Netscape Public License Version 1.1. diff --git a/docs/npl-1.1.html b/docs/npl-1.1.html index 798c91784d..26efbdfc09 100644 --- a/docs/npl-1.1.html +++ b/docs/npl-1.1.html @@ -214,7 +214,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/npl-1.1.json b/docs/npl-1.1.json index 608fc3fd46..11dbf42fbe 100644 --- a/docs/npl-1.1.json +++ b/docs/npl-1.1.json @@ -1 +1,25 @@ -{"key": "npl-1.1", "short_name": "NPL 1.1", "name": "Netscape Public License 1.1", "category": "Copyleft Limited", "owner": "Mozilla", "homepage_url": "http://www.mozilla.org/MPL/NPL-1.1.html", "spdx_license_key": "NPL-1.1", "text_urls": ["http://www.mozilla.org/MPL/NPL-1.1.html"], "other_urls": ["http://www.mozilla.org/MPL/NPL/1.1/", "http://www.mozilla.org/NPL/"], "ignorable_copyrights": ["Copyright (c) 1998-1999 Netscape Communications Corporation"], "ignorable_holders": ["Netscape Communications Corporation"], "ignorable_urls": ["http://www.mozilla.org/NPL/"]} \ No newline at end of file +{ + "key": "npl-1.1", + "short_name": "NPL 1.1", + "name": "Netscape Public License 1.1", + "category": "Copyleft Limited", + "owner": "Mozilla", + "homepage_url": "http://www.mozilla.org/MPL/NPL-1.1.html", + "spdx_license_key": "NPL-1.1", + "text_urls": [ + "http://www.mozilla.org/MPL/NPL-1.1.html" + ], + "other_urls": [ + "http://www.mozilla.org/MPL/NPL/1.1/", + "http://www.mozilla.org/NPL/" + ], + "ignorable_copyrights": [ + "Copyright (c) 1998-1999 Netscape Communications Corporation" + ], + "ignorable_holders": [ + "Netscape Communications Corporation" + ], + "ignorable_urls": [ + "http://www.mozilla.org/NPL/" + ] +} \ No newline at end of file diff --git a/docs/npsl-exception-0.92.LICENSE b/docs/npsl-exception-0.92.LICENSE new file mode 100644 index 0000000000..96b15e9f64 --- /dev/null +++ b/docs/npsl-exception-0.92.LICENSE @@ -0,0 +1,591 @@ +--- +key: npsl-exception-0.92 +short_name: Nmap NPSL Exception 0.92 +name: Nmap NPSL Exception 0.92 +category: Copyleft +owner: Insecure.Com +homepage_url: https://web.archive.org/web/20201031231920/https://svn.nmap.org/nmap/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-npsl-exception-0.92 +other_urls: + - https://nmap.org/book/man-legal.html + - https://nmap.org/npsl/ + - https://github.com/nmap/nmap/blob/master/zenmap/zenmap +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +ignorable_urls: + - https://nmap.org/ + - https://nmap.org/npsl/ + - https://npcap.org/ + - https://www.gnu.org/licenses/gpl-2.0.html#SEC4 +ignorable_emails: + - sales@nmap.com +--- + +Nmap Public Source License Version 0.92 +For more information on this license, see https://nmap.org/npsl/ + +0. Preamble + +The intent of this license is to establish freedom to share and change +the software regulated by this license under the open source model. It +also includes a Contributor Agreement and disclaims any warranty on +Covered Software. Proprietary software companies wishing to use or +incorporate Covered Software within their programs must contact +Licensor to purchase a separate license. Open source developers who +wish to incorporate parts of Covered Software into free software with +conflicting licenses may write Licensor to request a waiver of terms. + +If the Nmap Project (directly or through one of its commercial +licensing customers) has granted you additional rights to Nmap or Nmap +OEM, those additional rights take precedence where they conflict with +the terms of this license agreement. + +This License represents the complete agreement concerning subject +matter hereof. It contains the license terms themselves, but not the +reasoning behind them or detailed explanations. For further +information about this License, see https://nmap.org/npsl/ . That page +makes a good faith attempt to explain this License, but it does not +and can not modify its governing terms in any way. + +1. Definitions + +* "Contribution" means 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 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, web sites, + 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" means Licensor and any individual or Legal Entity on + behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +* "Covered Software" means 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 + +* "Derivative Work" or "Collective Work" means 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. It includes software as described in Section 3 of this + License. + +* "Executable" means Covered Software in any form other than Source Code. + +* "Externally Deploy" means to Deploy the Covered Software in any way + that may be accessed or used by anyone other than You, used to + provide any services to anyone other than You, or used in any way to + deliver any content to anyone other than You, whether the Covered + Software is distributed to those parties, made available as an + application intended for use over a computer network, or used to + provide services or otherwise deliver content to anyone other than + You. + +* "GPL" means the GNU General Public License Version 2, as published + by the Free Software Foundation and provided in Exhibit A. + +* "Legal Entity" means 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. + +* "License" means this document, including Exhibits. + +* "Licensor" means Insecure.Com LLC and its successors and assigns. + +* "Main License Body" means all of the terms of this document, + excluding Exhibits. + +* "You" (or "Your") means an individual or Legal Entity exercising + permissions granted by this License. + +2. General Terms + +Covered Software is licensed to you under the terms of the GPL +(Exhibit A), with all the exceptions, clarifications, and additions +noted in this Main License Body. Where the terms in this Main License +Body conflict in any way with the GPL, the Main License Body terms +shall take precedence. These additional terms mean that You may not +distribute Covered Software or Derivative Works under plain GPL terms +without special permission from Licensor. + +You are not required to accept this License. However, nothing else +grants You permission to use, copy, modify or distribute the software +or its derivative works. These actions are prohibited by law if You do +not accept this License. Therefore, by modifying, copying or +distributing the software (or any work based on the software), You +indicate your acceptance of this License to do so, and all its terms +and conditions. In addition, you agree to the terms of this License by +clicking the Accept button or downloading the software. + +3. Derivative Works + +This License (including the GPL portion) places important restrictions +on derived works. Licensor interprets that term quite broadly. To +avoid any misunderstandings, we consider software to constitute a +"derivative work" of Covered Software for the purposes of this license +if it does any of the following: + +* Integrates source code from Covered Software + +* Reads or includes Covered Software data files, such as nmap-os-db or + nmap-service-probes. + +* Is designed specifically to execute Covered Software and parse the + results (as opposed to typical shell or execution-menu apps, which + will execute anything you tell them to). + +* Includes Covered Software in a proprietary executable installer. The + installers produced by InstallShield are an example of + this. Including Nmap with other software in compressed or archival + form does not trigger this provision, provided appropriate open + source decompression or de-archiving software is widely available + for no charge. For the purposes of this license, an installer is + considered to include Covered Software even if it actually retrieves + a copy of Covered Software from another source during runtime (such + as by downloading it from the Internet). + +* Links (statically or dynamically) to a library which does any of the + above + +* Executes a helper program, module, or script to do any of the above. + This list is not exclusive, but is meant to clarify Licensor's + intentions with some common examples. Distribution of any works + which meet these criteria must be under the terms of this license + (including this Main License Body and GPL), with no additional + conditions or restrictions. They must abide by all restrictions that + the GPL places on derivative or collective works, including the + requirements for distributing their source code and allowing + royalty-free redistribution. + +4. Contributor Agreement (Grant of Copyright and Patent Licenses) + +Each Contributor hereby grants to Licensor 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 Contribution and such +Derivative Works in Source or Object form. + +Each Contributor hereby grants to You and Licensor 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. + +Contributors may impose different terms on their Contributions by +stating those terms in writing at the time the Contribution is +made. Contributors may withhold all authority from Licensor to +incorporate submissions by conspicuously marking or otherwise +designating them in writing as "Not a Contribution" at the time they +make the work available. + +5. Disclaimer of Warranty and Limitation of Liability + +Unless required by applicable law or agreed to in writing, Licensor +provides the Covered Software (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 Covered Software and assume any risks associated +with Your exercise of permissions under this License. + +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 Covered Software (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. + +6. External Deployment + +If You Externally Deploy Covered Software, such as hosting a website +designed to execute Nmap scans for users, the system and its +documentation must, if technically feasible, prominently display a +notice stating that the system uses the Nmap Security Scanner to +perform its tasks. If technically feasible, the notice must contain a +hyperlink to https://nmap.org/ or provide that URL in the text. + +7. 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 Covered Software. + +8. Termination for Patent Action + +This License shall terminate automatically and You may no longer +exercise any of the rights granted to You by this License as of the +date You commence an action, including a cross-claim or counterclaim, +against Licensor or any licensee alleging that the Covered Software +infringes a patent. This termination provision shall not apply for an +action alleging patent infringement by combinations of the Covered +Software with other software or hardware. + +9. Jurisdiction, Venue and Governing Law + +This License is governed by the laws of the State of Washington and +the intellectual property laws of the United States of America, +excluding the jurisdiction's conflict-of-law provisions. Any +litigation or other dispute resolution between You and Licensor +relating to this License shall take place in the Northern District of +California, and You and Licensor hereby consent to the personal +jurisdiction of, and venue in, the state and federal courts within +that District with respect to this License. The application of the +United Nations Convention on Contracts for the International Sale of +Goods is expressly excluded. + +10. Npcap and the Official Nmap Windows Builds + +The official Windows Nmap builds includes the Npcap driver and library +(https://npcap.org) for packet capture and transmission on +Windows. That software is under its own separate license terms rather +than this license. Therefore anyone wishing to use or redistribute +both pieces of software must comply with both licenses. Since Npcap +does not allow for redistribution without special permission, the +official Nmap Windows builds which include Npcap may not be +redistributed without special permission. Such permission can be +requested by email to sales@nmap.com. + +11. Permission to link with OpenSSL + +Licensor grants permission to link Covered Software with any version +of the OpenSSL library from OpenSSL.Org, and distribute linked +combinations including the two (assuming such distribution is +otherwise allowed by this agreement). You must obey this License in +all respects for all code used other than OpenSSL. + +12. Waiver; Construction + +Failure by Licensor or any Contributor to enforce any provision of +this License will not be deemed a waiver of future enforcement of that +or any other provision. Any law or regulation which provides that the +language of a contract shall be construed against the drafter will not +apply to this License. + +13. Enforceability + +If any provision of this License is invalid or unenforceable under +applicable law, it shall not affect the validity or enforceability of +the remainder of the terms of this License, and without further action +by the parties hereto, such provision shall be reformed to the minimum +extent necessary to make such provision valid and enforceable. + +Exhibit A. The GNU General Public License Version 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. + +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. + +END OF TERMS AND CONDITIONS + +[For brevity, we've cut out the GPL's final section on "How to Apply +Tehse Terms to Your New Program", but you can find that at +https://www.gnu.org/licenses/gpl-2.0.html#SEC4 ] \ No newline at end of file diff --git a/docs/npsl-exception-0.92.html b/docs/npsl-exception-0.92.html new file mode 100644 index 0000000000..f6743ef44b --- /dev/null +++ b/docs/npsl-exception-0.92.html @@ -0,0 +1,764 @@ + + + + + + LicenseDB: npsl-exception-0.92 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + npsl-exception-0.92 + +
+ +
short_name
+
+ + Nmap NPSL Exception 0.92 + +
+ +
name
+
+ + Nmap NPSL Exception 0.92 + +
+ +
category
+
+ + Copyleft + +
+ +
owner
+
+ + Insecure.Com + +
+ +
homepage_url
+
+ + https://web.archive.org/web/20201031231920/https://svn.nmap.org/nmap/LICENSE + +
+ +
is_exception
+
+ + True + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-npsl-exception-0.92 + +
+ +
other_urls
+
+ + + +
+ +
ignorable_copyrights
+
+ +
    +
  • Copyright (c) 1989, 1991 Free Software Foundation, Inc.
  • copyrighted by the Free Software Foundation
  • +
+ +
+ +
ignorable_holders
+
+ +
    +
  • Free Software Foundation, Inc.
  • the Free Software Foundation
  • +
+ +
+ +
ignorable_urls
+
+ + + +
+ +
ignorable_emails
+
+ + + +
+ +
+
license_text
+
Nmap Public Source License Version 0.92
+For more information on this license, see https://nmap.org/npsl/
+
+0. Preamble
+
+The intent of this license is to establish freedom to share and change
+the software regulated by this license under the open source model. It
+also includes a Contributor Agreement and disclaims any warranty on
+Covered Software. Proprietary software companies wishing to use or
+incorporate Covered Software within their programs must contact
+Licensor to purchase a separate license. Open source developers who
+wish to incorporate parts of Covered Software into free software with
+conflicting licenses may write Licensor to request a waiver of terms.
+
+If the Nmap Project (directly or through one of its commercial
+licensing customers) has granted you additional rights to Nmap or Nmap
+OEM, those additional rights take precedence where they conflict with
+the terms of this license agreement.
+
+This License represents the complete agreement concerning subject
+matter hereof. It contains the license terms themselves, but not the
+reasoning behind them or detailed explanations. For further
+information about this License, see https://nmap.org/npsl/ . That page
+makes a good faith attempt to explain this License, but it does not
+and can not modify its governing terms in any way.
+
+1. Definitions
+
+* "Contribution" means 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 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, web sites,
+  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" means Licensor and any individual or Legal Entity on
+  behalf of whom a Contribution has been received by Licensor and
+  subsequently incorporated within the Work.
+
+* "Covered Software" means 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
+
+* "Derivative Work" or "Collective Work" means 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. It includes software as described in Section 3 of this
+  License.
+
+* "Executable" means Covered Software in any form other than Source Code.
+
+* "Externally Deploy" means to Deploy the Covered Software in any way
+  that may be accessed or used by anyone other than You, used to
+  provide any services to anyone other than You, or used in any way to
+  deliver any content to anyone other than You, whether the Covered
+  Software is distributed to those parties, made available as an
+  application intended for use over a computer network, or used to
+  provide services or otherwise deliver content to anyone other than
+  You.
+
+* "GPL" means the GNU General Public License Version 2, as published
+  by the Free Software Foundation and provided in Exhibit A.
+
+* "Legal Entity" means 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.
+
+* "License" means this document, including Exhibits.
+
+* "Licensor" means Insecure.Com LLC and its successors and assigns.
+
+* "Main License Body" means all of the terms of this document,
+  excluding Exhibits.
+
+* "You" (or "Your") means an individual or Legal Entity exercising
+  permissions granted by this License.
+
+2. General Terms
+
+Covered Software is licensed to you under the terms of the GPL
+(Exhibit A), with all the exceptions, clarifications, and additions
+noted in this Main License Body. Where the terms in this Main License
+Body conflict in any way with the GPL, the Main License Body terms
+shall take precedence. These additional terms mean that You may not
+distribute Covered Software or Derivative Works under plain GPL terms
+without special permission from Licensor.
+
+You are not required to accept this License. However, nothing else
+grants You permission to use, copy, modify or distribute the software
+or its derivative works. These actions are prohibited by law if You do
+not accept this License. Therefore, by modifying, copying or
+distributing the software (or any work based on the software), You
+indicate your acceptance of this License to do so, and all its terms
+and conditions. In addition, you agree to the terms of this License by
+clicking the Accept button or downloading the software.
+
+3. Derivative Works
+
+This License (including the GPL portion) places important restrictions
+on derived works. Licensor interprets that term quite broadly. To
+avoid any misunderstandings, we consider software to constitute a
+"derivative work" of Covered Software for the purposes of this license
+if it does any of the following:
+
+* Integrates source code from Covered Software
+
+* Reads or includes Covered Software data files, such as nmap-os-db or
+  nmap-service-probes.
+
+* Is designed specifically to execute Covered Software and parse the
+  results (as opposed to typical shell or execution-menu apps, which
+  will execute anything you tell them to).
+
+* Includes Covered Software in a proprietary executable installer. The
+  installers produced by InstallShield are an example of
+  this. Including Nmap with other software in compressed or archival
+  form does not trigger this provision, provided appropriate open
+  source decompression or de-archiving software is widely available
+  for no charge. For the purposes of this license, an installer is
+  considered to include Covered Software even if it actually retrieves
+  a copy of Covered Software from another source during runtime (such
+  as by downloading it from the Internet).
+
+* Links (statically or dynamically) to a library which does any of the
+  above
+
+* Executes a helper program, module, or script to do any of the above.
+  This list is not exclusive, but is meant to clarify Licensor's
+  intentions with some common examples. Distribution of any works
+  which meet these criteria must be under the terms of this license
+  (including this Main License Body and GPL), with no additional
+  conditions or restrictions. They must abide by all restrictions that
+  the GPL places on derivative or collective works, including the
+  requirements for distributing their source code and allowing
+  royalty-free redistribution.
+
+4. Contributor Agreement (Grant of Copyright and Patent Licenses)
+
+Each Contributor hereby grants to Licensor 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 Contribution and such
+Derivative Works in Source or Object form.
+
+Each Contributor hereby grants to You and Licensor 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.
+
+Contributors may impose different terms on their Contributions by
+stating those terms in writing at the time the Contribution is
+made. Contributors may withhold all authority from Licensor to
+incorporate submissions by conspicuously marking or otherwise
+designating them in writing as "Not a Contribution" at the time they
+make the work available.
+
+5. Disclaimer of Warranty and Limitation of Liability
+
+Unless required by applicable law or agreed to in writing, Licensor
+provides the Covered Software (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 Covered Software and assume any risks associated
+with Your exercise of permissions under this License.
+
+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 Covered Software (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.
+
+6. External Deployment
+
+If You Externally Deploy Covered Software, such as hosting a website
+designed to execute Nmap scans for users, the system and its
+documentation must, if technically feasible, prominently display a
+notice stating that the system uses the Nmap Security Scanner to
+perform its tasks. If technically feasible, the notice must contain a
+hyperlink to https://nmap.org/ or provide that URL in the text.
+
+7. 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 Covered Software.
+
+8. Termination for Patent Action
+
+This License shall terminate automatically and You may no longer
+exercise any of the rights granted to You by this License as of the
+date You commence an action, including a cross-claim or counterclaim,
+against Licensor or any licensee alleging that the Covered Software
+infringes a patent. This termination provision shall not apply for an
+action alleging patent infringement by combinations of the Covered
+Software with other software or hardware.
+
+9. Jurisdiction, Venue and Governing Law
+
+This License is governed by the laws of the State of Washington and
+the intellectual property laws of the United States of America,
+excluding the jurisdiction's conflict-of-law provisions. Any
+litigation or other dispute resolution between You and Licensor
+relating to this License shall take place in the Northern District of
+California, and You and Licensor hereby consent to the personal
+jurisdiction of, and venue in, the state and federal courts within
+that District with respect to this License. The application of the
+United Nations Convention on Contracts for the International Sale of
+Goods is expressly excluded.
+
+10. Npcap and the Official Nmap Windows Builds
+
+The official Windows Nmap builds includes the Npcap driver and library
+(https://npcap.org) for packet capture and transmission on
+Windows. That software is under its own separate license terms rather
+than this license. Therefore anyone wishing to use or redistribute
+both pieces of software must comply with both licenses. Since Npcap
+does not allow for redistribution without special permission, the
+official Nmap Windows builds which include Npcap may not be
+redistributed without special permission. Such permission can be
+requested by email to sales@nmap.com.
+
+11. Permission to link with OpenSSL
+
+Licensor grants permission to link Covered Software with any version
+of the OpenSSL library from OpenSSL.Org, and distribute linked
+combinations including the two (assuming such distribution is
+otherwise allowed by this agreement). You must obey this License in
+all respects for all code used other than OpenSSL.
+
+12. Waiver; Construction
+
+Failure by Licensor or any Contributor to enforce any provision of
+this License will not be deemed a waiver of future enforcement of that
+or any other provision. Any law or regulation which provides that the
+language of a contract shall be construed against the drafter will not
+apply to this License.
+
+13. Enforceability
+
+If any provision of this License is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this License, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+Exhibit A. The GNU General Public License Version 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.
+
+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.
+
+END OF TERMS AND CONDITIONS
+
+[For brevity, we've cut out the GPL's final section on "How to Apply
+Tehse Terms to Your New Program", but you can find that at
+https://www.gnu.org/licenses/gpl-2.0.html#SEC4 ]
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/npsl-exception-0.92.json b/docs/npsl-exception-0.92.json new file mode 100644 index 0000000000..72031fa141 --- /dev/null +++ b/docs/npsl-exception-0.92.json @@ -0,0 +1,32 @@ +{ + "key": "npsl-exception-0.92", + "short_name": "Nmap NPSL Exception 0.92", + "name": "Nmap NPSL Exception 0.92", + "category": "Copyleft", + "owner": "Insecure.Com", + "homepage_url": "https://web.archive.org/web/20201031231920/https://svn.nmap.org/nmap/LICENSE", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-npsl-exception-0.92", + "other_urls": [ + "https://nmap.org/book/man-legal.html", + "https://nmap.org/npsl/", + "https://github.com/nmap/nmap/blob/master/zenmap/zenmap" + ], + "ignorable_copyrights": [ + "Copyright (c) 1989, 1991 Free Software Foundation, Inc.", + "copyrighted by the Free Software Foundation" + ], + "ignorable_holders": [ + "Free Software Foundation, Inc.", + "the Free Software Foundation" + ], + "ignorable_urls": [ + "https://nmap.org/", + "https://nmap.org/npsl/", + "https://npcap.org/", + "https://www.gnu.org/licenses/gpl-2.0.html#SEC4" + ], + "ignorable_emails": [ + "sales@nmap.com" + ] +} \ No newline at end of file diff --git a/docs/npsl-exception-0.92.yml b/docs/npsl-exception-0.92.yml new file mode 100644 index 0000000000..5c803a9a45 --- /dev/null +++ b/docs/npsl-exception-0.92.yml @@ -0,0 +1,25 @@ +key: npsl-exception-0.92 +short_name: Nmap NPSL Exception 0.92 +name: Nmap NPSL Exception 0.92 +category: Copyleft +owner: Insecure.Com +homepage_url: https://web.archive.org/web/20201031231920/https://svn.nmap.org/nmap/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-npsl-exception-0.92 +other_urls: + - https://nmap.org/book/man-legal.html + - https://nmap.org/npsl/ + - https://github.com/nmap/nmap/blob/master/zenmap/zenmap +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +ignorable_urls: + - https://nmap.org/ + - https://nmap.org/npsl/ + - https://npcap.org/ + - https://www.gnu.org/licenses/gpl-2.0.html#SEC4 +ignorable_emails: + - sales@nmap.com diff --git a/docs/npsl-exception-0.93.LICENSE b/docs/npsl-exception-0.93.LICENSE index f521011189..028b15cf48 100644 --- a/docs/npsl-exception-0.93.LICENSE +++ b/docs/npsl-exception-0.93.LICENSE @@ -1,3 +1,33 @@ +--- +key: npsl-exception-0.93 +short_name: Nmap NPSL Exception 0.93 +name: Nmap NPSL Exception 0.93 +category: Copyleft +owner: Insecure.Com +homepage_url: https://web.archive.org/web/20210119060415/https://svn.nmap.org/nmap/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-npsl-exception-0.93 +faq_url: https://nmap.org/npsl/npsl-annotated.html +other_urls: + - https://nmap.org/book/man-legal.html + - https://nmap.org/npsl/ + - https://github.com/nmap/nmap/blob/master/zenmap/zenmap +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +ignorable_urls: + - https://nmap.org/ + - https://nmap.org/npsl/ + - https://nmap.org/oem + - https://npcap.org/ + - https://www.gnu.org/licenses/gpl-2.0.html#SEC4 +ignorable_emails: + - sales@nmap.com +--- + Nmap Public Source License Version 0.93 For more information on this license, see https://nmap.org/npsl/ diff --git a/docs/npsl-exception-0.93.html b/docs/npsl-exception-0.93.html index 386811002c..4d6ecb5a68 100644 --- a/docs/npsl-exception-0.93.html +++ b/docs/npsl-exception-0.93.html @@ -102,7 +102,7 @@
homepage_url
- https://svn.nmap.org/nmap/LICENSE + https://web.archive.org/web/20210119060415/https://svn.nmap.org/nmap/LICENSE
@@ -749,7 +749,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/npsl-exception-0.93.json b/docs/npsl-exception-0.93.json index ad1a51e5cd..ad2858a94b 100644 --- a/docs/npsl-exception-0.93.json +++ b/docs/npsl-exception-0.93.json @@ -1 +1,34 @@ -{"key": "npsl-exception-0.93", "short_name": "Nmap NPSL Exception 0.93", "name": "Nmap NPSL Exception 0.93", "category": "Copyleft", "owner": "Insecure.Com", "homepage_url": "https://svn.nmap.org/nmap/LICENSE", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-npsl-exception-0.93", "faq_url": "https://nmap.org/npsl/npsl-annotated.html", "other_urls": ["https://nmap.org/book/man-legal.html", "https://nmap.org/npsl/", "https://github.com/nmap/nmap/blob/master/zenmap/zenmap"], "ignorable_copyrights": ["Copyright (c) 1989, 1991 Free Software Foundation, Inc.", "copyrighted by the Free Software Foundation"], "ignorable_holders": ["Free Software Foundation, Inc.", "the Free Software Foundation"], "ignorable_urls": ["https://nmap.org/", "https://nmap.org/npsl/", "https://nmap.org/oem", "https://npcap.org/", "https://www.gnu.org/licenses/gpl-2.0.html#SEC4"], "ignorable_emails": ["sales@nmap.com"]} \ No newline at end of file +{ + "key": "npsl-exception-0.93", + "short_name": "Nmap NPSL Exception 0.93", + "name": "Nmap NPSL Exception 0.93", + "category": "Copyleft", + "owner": "Insecure.Com", + "homepage_url": "https://web.archive.org/web/20210119060415/https://svn.nmap.org/nmap/LICENSE", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-npsl-exception-0.93", + "faq_url": "https://nmap.org/npsl/npsl-annotated.html", + "other_urls": [ + "https://nmap.org/book/man-legal.html", + "https://nmap.org/npsl/", + "https://github.com/nmap/nmap/blob/master/zenmap/zenmap" + ], + "ignorable_copyrights": [ + "Copyright (c) 1989, 1991 Free Software Foundation, Inc.", + "copyrighted by the Free Software Foundation" + ], + "ignorable_holders": [ + "Free Software Foundation, Inc.", + "the Free Software Foundation" + ], + "ignorable_urls": [ + "https://nmap.org/", + "https://nmap.org/npsl/", + "https://nmap.org/oem", + "https://npcap.org/", + "https://www.gnu.org/licenses/gpl-2.0.html#SEC4" + ], + "ignorable_emails": [ + "sales@nmap.com" + ] +} \ No newline at end of file diff --git a/docs/npsl-exception-0.93.yml b/docs/npsl-exception-0.93.yml index fec65d6ecc..2a30347685 100644 --- a/docs/npsl-exception-0.93.yml +++ b/docs/npsl-exception-0.93.yml @@ -3,7 +3,7 @@ short_name: Nmap NPSL Exception 0.93 name: Nmap NPSL Exception 0.93 category: Copyleft owner: Insecure.Com -homepage_url: https://svn.nmap.org/nmap/LICENSE +homepage_url: https://web.archive.org/web/20210119060415/https://svn.nmap.org/nmap/LICENSE is_exception: yes spdx_license_key: LicenseRef-scancode-npsl-exception-0.93 faq_url: https://nmap.org/npsl/npsl-annotated.html diff --git a/docs/npsl-exception-0.94.LICENSE b/docs/npsl-exception-0.94.LICENSE new file mode 100644 index 0000000000..922cad0187 --- /dev/null +++ b/docs/npsl-exception-0.94.LICENSE @@ -0,0 +1,593 @@ +--- +key: npsl-exception-0.94 +short_name: Nmap NPSL Exception 0.94 +name: Nmap NPSL Exception 0.94 +category: Copyleft +owner: Insecure.Com +homepage_url: https://web.archive.org/web/20211215231956/https://svn.nmap.org/nmap/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-npsl-exception-0.94 +faq_url: https://nmap.org/npsl/ +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +ignorable_urls: + - https://nmap.org/ + - https://nmap.org/npsl/ + - https://nmap.org/oem + - https://npcap.org/ + - https://www.gnu.org/licenses/gpl-2.0.html#SEC4 +ignorable_emails: + - sales@nmap.com +--- + +Nmap Public Source License Version 0.94 +For more information on this license, see https://nmap.org/npsl/ + +0. Preamble + +The intent of this license is to establish freedom to share and change +the software regulated by this license under the open source model. It +also includes a Contributor Agreement and disclaims any warranty on +Covered Software. Companies wishing to use or incorporate Covered +Software within their own products may find that our Nmap OEM product +(https://nmap.org/oem/) better suits their needs. Open source +developers who wish to incorporate parts of Covered Software into free +software with conflicting licenses may write Licensor to request a +waiver of terms. + +If the Nmap Project (directly or through one of its commercial +licensing customers) has granted you additional rights to Nmap or Nmap +OEM, those additional rights take precedence where they conflict with +the terms of this license agreement. + +This License represents the complete agreement concerning subject +matter hereof. It contains the license terms themselves, but not the +reasoning behind them or detailed explanations. For further +information about this License, see https://nmap.org/npsl/ . That page +makes a good faith attempt to explain this License, but it does not +and can not modify its governing terms in any way. + +1. Definitions + +* "Contribution" means 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 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, web sites, + 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" means Licensor and any individual or Legal Entity on + behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +* "Covered Software" means 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 + +* "Derivative Work" or "Collective Work" means 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. It includes software as described in Section 3 of this + License. + +* "Executable" means Covered Software in any form other than Source Code. + +* "Externally Deploy" means to Deploy the Covered Software in any way + that may be accessed or used by anyone other than You, used to + provide any services to anyone other than You, or used in any way to + deliver any content to anyone other than You, whether the Covered + Software is distributed to those parties, made available as an + application intended for use over a computer network, or used to + provide services or otherwise deliver content to anyone other than + You. + +* "GPL" means the GNU General Public License Version 2, as published + by the Free Software Foundation and provided in Exhibit A. + +* "Legal Entity" means 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. + +* "License" means this document, including Exhibits. + +* "Licensor" means Nmap Software LLC and its successors and assigns. + +* "Main License Body" means all of the terms of this document, + excluding Exhibits. + +* "You" (or "Your") means an individual or Legal Entity exercising + permissions granted by this License. + +2. General Terms + +Covered Software is licensed to you under the terms of the GPL +(Exhibit A), with all the exceptions, clarifications, and additions +noted in this Main License Body. Where the terms in this Main License +Body conflict in any way with the GPL, the Main License Body terms +shall take precedence. These additional terms mean that You may not +distribute Covered Software or Derivative Works under plain GPL terms +without special permission from Licensor. + +You are not required to accept this License. However, nothing else +grants You permission to use, copy, modify or distribute the software +or its derivative works. These actions are prohibited by law if You do +not accept this License. Therefore, by modifying, copying or +distributing the software (or any work based on the software), You +indicate your acceptance of this License to do so, and all its terms +and conditions. In addition, you agree to the terms of this License by +clicking the Accept button or downloading the software. + +3. Derivative Works + +This License (including the GPL portion) places important restrictions +on derived works. Licensor interprets that term quite broadly. To +avoid any misunderstandings, we consider software to constitute a +"derivative work" of Covered Software for the purposes of this license +if it does any of the following: + +* Integrates source code from Covered Software + +* Reads or includes Covered Software data files, such as nmap-os-db or + nmap-service-probes. + +* Is designed specifically to execute Covered Software and parse the + results (as opposed to typical shell or execution-menu apps, which + will execute anything you tell them to). + +* Includes Covered Software in a proprietary executable installer. The + installers produced by InstallShield are an example of + this. Including Nmap with other software in compressed or archival + form does not trigger this provision, provided appropriate open + source decompression or de-archiving software is widely available + for no charge. For the purposes of this license, an installer is + considered to include Covered Software even if it actually retrieves + a copy of Covered Software from another source during runtime (such + as by downloading it from the Internet). + +* Links (statically or dynamically) to a library which does any of the + above + +* Executes a helper program, module, or script to do any of the above. + This list is not exclusive, but is meant to clarify Licensor's + intentions with some common examples. Distribution of any works + which meet these criteria must be under the terms of this license + (including this Main License Body and GPL), with no additional + conditions or restrictions. They must abide by all restrictions that + the GPL places on derivative or collective works, including the + requirements for distributing their source code and allowing + royalty-free redistribution. + +4. Contributor Agreement (Grant of Copyright and Patent Licenses) + +Each Contributor hereby grants to Licensor 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 Contribution and such +Derivative Works in Source or Object form. + +Each Contributor hereby grants to You and Licensor 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. + +Contributors may impose different terms on their Contributions by +stating those terms in writing at the time the Contribution is +made. Contributors may withhold all authority from Licensor to +incorporate submissions by conspicuously marking or otherwise +designating them in writing as "Not a Contribution" at the time they +make the work available. + +5. Disclaimer of Warranty and Limitation of Liability + +Unless required by applicable law or agreed to in writing, Licensor +provides the Covered Software (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 Covered Software and assume any risks associated +with Your exercise of permissions under this License. + +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 Covered Software (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. + +6. External Deployment + +If You Externally Deploy Covered Software, such as hosting a website +designed to execute Nmap scans for users, the system and its +documentation must, if technically feasible, prominently display a +notice stating that the system uses the Nmap Security Scanner to +perform its tasks. If technically feasible, the notice must contain a +hyperlink to https://nmap.org/ or provide that URL in the text. + +7. 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 Covered Software. + +8. Termination for Patent Action + +This License shall terminate automatically and You may no longer +exercise any of the rights granted to You by this License as of the +date You commence an action, including a cross-claim or counterclaim, +against Licensor or any licensee alleging that the Covered Software +infringes a patent. This termination provision shall not apply for an +action alleging patent infringement by combinations of the Covered +Software with other software or hardware. + +9. Jurisdiction, Venue and Governing Law + +This License is governed by the laws of the State of Washington and +the intellectual property laws of the United States of America, +excluding the jurisdiction's conflict-of-law provisions. Any +litigation or other dispute resolution between You and Licensor +relating to this License shall take place in the Northern District of +California, and You and Licensor hereby consent to the personal +jurisdiction of, and venue in, the state and federal courts within +that District with respect to this License. The application of the +United Nations Convention on Contracts for the International Sale of +Goods is expressly excluded. + +10. Npcap and the Official Nmap Windows Builds + +The official Windows Nmap builds includes the Npcap driver and library +(https://npcap.org) for packet capture and transmission on +Windows. That software is under its own separate license terms rather +than this license. Therefore anyone wishing to use or redistribute +both pieces of software must comply with both licenses. Since Npcap +does not allow for redistribution without special permission, the +official Nmap Windows builds which include Npcap may not be +redistributed without special permission. Such permission can be +requested by email to sales@nmap.com. + +11. Permission to link with OpenSSL + +Licensor grants permission to link Covered Software with any version +of the OpenSSL library from OpenSSL.Org, and distribute linked +combinations including the two (assuming such distribution is +otherwise allowed by this agreement). You must obey this License in +all respects for all code used other than OpenSSL. + +12. Waiver; Construction + +Failure by Licensor or any Contributor to enforce any provision of +this License will not be deemed a waiver of future enforcement of that +or any other provision. Any law or regulation which provides that the +language of a contract shall be construed against the drafter will not +apply to this License. + +13. Enforceability + +If any provision of this License is invalid or unenforceable under +applicable law, it shall not affect the validity or enforceability of +the remainder of the terms of this License, and without further action +by the parties hereto, such provision shall be reformed to the minimum +extent necessary to make such provision valid and enforceable. + +Exhibit A. The GNU General Public License Version 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. + +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. + +END OF TERMS AND CONDITIONS + +[For brevity, we've cut out the GPL's final section on "How to Apply +These Terms to Your New Program", but you can find that at +https://www.gnu.org/licenses/gpl-2.0.html#SEC4 ] \ No newline at end of file diff --git a/docs/npsl-exception-0.94.html b/docs/npsl-exception-0.94.html new file mode 100644 index 0000000000..20acd415c4 --- /dev/null +++ b/docs/npsl-exception-0.94.html @@ -0,0 +1,766 @@ + + + + + + LicenseDB: npsl-exception-0.94 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + npsl-exception-0.94 + +
+ +
short_name
+
+ + Nmap NPSL Exception 0.94 + +
+ +
name
+
+ + Nmap NPSL Exception 0.94 + +
+ +
category
+
+ + Copyleft + +
+ +
owner
+
+ + Insecure.Com + +
+ +
homepage_url
+
+ + https://web.archive.org/web/20211215231956/https://svn.nmap.org/nmap/LICENSE + +
+ +
is_exception
+
+ + True + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-npsl-exception-0.94 + +
+ +
faq_url
+
+ + https://nmap.org/npsl/ + +
+ +
ignorable_copyrights
+
+ +
    +
  • Copyright (c) 1989, 1991 Free Software Foundation, Inc.
  • copyrighted by the Free Software Foundation
  • +
+ +
+ +
ignorable_holders
+
+ +
    +
  • Free Software Foundation, Inc.
  • the Free Software Foundation
  • +
+ +
+ +
ignorable_urls
+
+ + + +
+ +
ignorable_emails
+
+ + + +
+ +
+
license_text
+
Nmap Public Source License Version 0.94
+For more information on this license, see https://nmap.org/npsl/
+
+0. Preamble
+
+The intent of this license is to establish freedom to share and change
+the software regulated by this license under the open source model. It
+also includes a Contributor Agreement and disclaims any warranty on
+Covered Software. Companies wishing to use or incorporate Covered
+Software within their own products may find that our Nmap OEM product
+(https://nmap.org/oem/) better suits their needs. Open source
+developers who wish to incorporate parts of Covered Software into free
+software with conflicting licenses may write Licensor to request a
+waiver of terms.
+
+If the Nmap Project (directly or through one of its commercial
+licensing customers) has granted you additional rights to Nmap or Nmap
+OEM, those additional rights take precedence where they conflict with
+the terms of this license agreement.
+
+This License represents the complete agreement concerning subject
+matter hereof. It contains the license terms themselves, but not the
+reasoning behind them or detailed explanations. For further
+information about this License, see https://nmap.org/npsl/ . That page
+makes a good faith attempt to explain this License, but it does not
+and can not modify its governing terms in any way.
+
+1. Definitions
+
+* "Contribution" means 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 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, web sites,
+  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" means Licensor and any individual or Legal Entity on
+  behalf of whom a Contribution has been received by Licensor and
+  subsequently incorporated within the Work.
+
+* "Covered Software" means 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
+
+* "Derivative Work" or "Collective Work" means 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. It includes software as described in Section 3 of this
+  License.
+
+* "Executable" means Covered Software in any form other than Source Code.
+
+* "Externally Deploy" means to Deploy the Covered Software in any way
+  that may be accessed or used by anyone other than You, used to
+  provide any services to anyone other than You, or used in any way to
+  deliver any content to anyone other than You, whether the Covered
+  Software is distributed to those parties, made available as an
+  application intended for use over a computer network, or used to
+  provide services or otherwise deliver content to anyone other than
+  You.
+
+* "GPL" means the GNU General Public License Version 2, as published
+  by the Free Software Foundation and provided in Exhibit A.
+
+* "Legal Entity" means 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.
+
+* "License" means this document, including Exhibits.
+
+* "Licensor" means Nmap Software LLC and its successors and assigns.
+
+* "Main License Body" means all of the terms of this document,
+  excluding Exhibits.
+
+* "You" (or "Your") means an individual or Legal Entity exercising
+  permissions granted by this License.
+
+2. General Terms
+
+Covered Software is licensed to you under the terms of the GPL
+(Exhibit A), with all the exceptions, clarifications, and additions
+noted in this Main License Body. Where the terms in this Main License
+Body conflict in any way with the GPL, the Main License Body terms
+shall take precedence. These additional terms mean that You may not
+distribute Covered Software or Derivative Works under plain GPL terms
+without special permission from Licensor.
+
+You are not required to accept this License. However, nothing else
+grants You permission to use, copy, modify or distribute the software
+or its derivative works. These actions are prohibited by law if You do
+not accept this License. Therefore, by modifying, copying or
+distributing the software (or any work based on the software), You
+indicate your acceptance of this License to do so, and all its terms
+and conditions. In addition, you agree to the terms of this License by
+clicking the Accept button or downloading the software.
+
+3. Derivative Works
+
+This License (including the GPL portion) places important restrictions
+on derived works. Licensor interprets that term quite broadly. To
+avoid any misunderstandings, we consider software to constitute a
+"derivative work" of Covered Software for the purposes of this license
+if it does any of the following:
+
+* Integrates source code from Covered Software
+
+* Reads or includes Covered Software data files, such as nmap-os-db or
+  nmap-service-probes.
+
+* Is designed specifically to execute Covered Software and parse the
+  results (as opposed to typical shell or execution-menu apps, which
+  will execute anything you tell them to).
+
+* Includes Covered Software in a proprietary executable installer. The
+  installers produced by InstallShield are an example of
+  this. Including Nmap with other software in compressed or archival
+  form does not trigger this provision, provided appropriate open
+  source decompression or de-archiving software is widely available
+  for no charge. For the purposes of this license, an installer is
+  considered to include Covered Software even if it actually retrieves
+  a copy of Covered Software from another source during runtime (such
+  as by downloading it from the Internet).
+
+* Links (statically or dynamically) to a library which does any of the
+  above
+
+* Executes a helper program, module, or script to do any of the above.
+  This list is not exclusive, but is meant to clarify Licensor's
+  intentions with some common examples. Distribution of any works
+  which meet these criteria must be under the terms of this license
+  (including this Main License Body and GPL), with no additional
+  conditions or restrictions. They must abide by all restrictions that
+  the GPL places on derivative or collective works, including the
+  requirements for distributing their source code and allowing
+  royalty-free redistribution.
+
+4. Contributor Agreement (Grant of Copyright and Patent Licenses)
+
+Each Contributor hereby grants to Licensor 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 Contribution and such
+Derivative Works in Source or Object form.
+
+Each Contributor hereby grants to You and Licensor 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.
+
+Contributors may impose different terms on their Contributions by
+stating those terms in writing at the time the Contribution is
+made. Contributors may withhold all authority from Licensor to
+incorporate submissions by conspicuously marking or otherwise
+designating them in writing as "Not a Contribution" at the time they
+make the work available.
+
+5. Disclaimer of Warranty and Limitation of Liability
+
+Unless required by applicable law or agreed to in writing, Licensor
+provides the Covered Software (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 Covered Software and assume any risks associated
+with Your exercise of permissions under this License.
+
+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 Covered Software (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.
+
+6. External Deployment
+
+If You Externally Deploy Covered Software, such as hosting a website
+designed to execute Nmap scans for users, the system and its
+documentation must, if technically feasible, prominently display a
+notice stating that the system uses the Nmap Security Scanner to
+perform its tasks. If technically feasible, the notice must contain a
+hyperlink to https://nmap.org/ or provide that URL in the text.
+
+7. 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 Covered Software.
+
+8. Termination for Patent Action
+
+This License shall terminate automatically and You may no longer
+exercise any of the rights granted to You by this License as of the
+date You commence an action, including a cross-claim or counterclaim,
+against Licensor or any licensee alleging that the Covered Software
+infringes a patent. This termination provision shall not apply for an
+action alleging patent infringement by combinations of the Covered
+Software with other software or hardware.
+
+9. Jurisdiction, Venue and Governing Law
+
+This License is governed by the laws of the State of Washington and
+the intellectual property laws of the United States of America,
+excluding the jurisdiction's conflict-of-law provisions. Any
+litigation or other dispute resolution between You and Licensor
+relating to this License shall take place in the Northern District of
+California, and You and Licensor hereby consent to the personal
+jurisdiction of, and venue in, the state and federal courts within
+that District with respect to this License. The application of the
+United Nations Convention on Contracts for the International Sale of
+Goods is expressly excluded.
+
+10. Npcap and the Official Nmap Windows Builds
+
+The official Windows Nmap builds includes the Npcap driver and library
+(https://npcap.org) for packet capture and transmission on
+Windows. That software is under its own separate license terms rather
+than this license. Therefore anyone wishing to use or redistribute
+both pieces of software must comply with both licenses. Since Npcap
+does not allow for redistribution without special permission, the
+official Nmap Windows builds which include Npcap may not be
+redistributed without special permission. Such permission can be
+requested by email to sales@nmap.com.
+
+11. Permission to link with OpenSSL
+
+Licensor grants permission to link Covered Software with any version
+of the OpenSSL library from OpenSSL.Org, and distribute linked
+combinations including the two (assuming such distribution is
+otherwise allowed by this agreement). You must obey this License in
+all respects for all code used other than OpenSSL.
+
+12. Waiver; Construction
+
+Failure by Licensor or any Contributor to enforce any provision of
+this License will not be deemed a waiver of future enforcement of that
+or any other provision. Any law or regulation which provides that the
+language of a contract shall be construed against the drafter will not
+apply to this License.
+
+13. Enforceability
+
+If any provision of this License is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this License, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+Exhibit A. The GNU General Public License Version 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.
+
+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.
+
+END OF TERMS AND CONDITIONS
+
+[For brevity, we've cut out the GPL's final section on "How to Apply
+These Terms to Your New Program", but you can find that at
+https://www.gnu.org/licenses/gpl-2.0.html#SEC4 ]
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/npsl-exception-0.94.json b/docs/npsl-exception-0.94.json new file mode 100644 index 0000000000..bb570c7de1 --- /dev/null +++ b/docs/npsl-exception-0.94.json @@ -0,0 +1,29 @@ +{ + "key": "npsl-exception-0.94", + "short_name": "Nmap NPSL Exception 0.94", + "name": "Nmap NPSL Exception 0.94", + "category": "Copyleft", + "owner": "Insecure.Com", + "homepage_url": "https://web.archive.org/web/20211215231956/https://svn.nmap.org/nmap/LICENSE", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-npsl-exception-0.94", + "faq_url": "https://nmap.org/npsl/", + "ignorable_copyrights": [ + "Copyright (c) 1989, 1991 Free Software Foundation, Inc.", + "copyrighted by the Free Software Foundation" + ], + "ignorable_holders": [ + "Free Software Foundation, Inc.", + "the Free Software Foundation" + ], + "ignorable_urls": [ + "https://nmap.org/", + "https://nmap.org/npsl/", + "https://nmap.org/oem", + "https://npcap.org/", + "https://www.gnu.org/licenses/gpl-2.0.html#SEC4" + ], + "ignorable_emails": [ + "sales@nmap.com" + ] +} \ No newline at end of file diff --git a/docs/npsl-exception-0.94.yml b/docs/npsl-exception-0.94.yml new file mode 100644 index 0000000000..63d432d114 --- /dev/null +++ b/docs/npsl-exception-0.94.yml @@ -0,0 +1,23 @@ +key: npsl-exception-0.94 +short_name: Nmap NPSL Exception 0.94 +name: Nmap NPSL Exception 0.94 +category: Copyleft +owner: Insecure.Com +homepage_url: https://web.archive.org/web/20211215231956/https://svn.nmap.org/nmap/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-npsl-exception-0.94 +faq_url: https://nmap.org/npsl/ +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +ignorable_urls: + - https://nmap.org/ + - https://nmap.org/npsl/ + - https://nmap.org/oem + - https://npcap.org/ + - https://www.gnu.org/licenses/gpl-2.0.html#SEC4 +ignorable_emails: + - sales@nmap.com diff --git a/docs/nrl-permission.LICENSE b/docs/nrl-permission.LICENSE index 39360c003d..654dc7728d 100644 --- a/docs/nrl-permission.LICENSE +++ b/docs/nrl-permission.LICENSE @@ -1,3 +1,13 @@ +--- +key: nrl-permission +short_name: NRL permission +name: NRL permission +category: Permissive +owner: NRL +homepage_url: https://web.mit.edu/kerberos/krb5-1.14/doc/mitK5license.html +spdx_license_key: LicenseRef-scancode-nrl-permission +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the software, @@ -6,4 +16,4 @@ that both notices appear in supporting documentation. NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER -RESULTING FROM THE USE OF THIS SOFTWARE. +RESULTING FROM THE USE OF THIS SOFTWARE. \ No newline at end of file diff --git a/docs/nrl-permission.html b/docs/nrl-permission.html index 5a6ad6c010..50fe58b35d 100644 --- a/docs/nrl-permission.html +++ b/docs/nrl-permission.html @@ -123,8 +123,7 @@ NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER -RESULTING FROM THE USE OF THIS SOFTWARE. - +RESULTING FROM THE USE OF THIS SOFTWARE.
@@ -136,7 +135,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nrl-permission.json b/docs/nrl-permission.json index 5aa9ed5475..2fbf60a676 100644 --- a/docs/nrl-permission.json +++ b/docs/nrl-permission.json @@ -1 +1,9 @@ -{"key": "nrl-permission", "short_name": "NRL permission", "name": "NRL permission", "category": "Permissive", "owner": "NRL", "homepage_url": "https://web.mit.edu/kerberos/krb5-1.14/doc/mitK5license.html", "spdx_license_key": "LicenseRef-scancode-nrl-permission"} \ No newline at end of file +{ + "key": "nrl-permission", + "short_name": "NRL permission", + "name": "NRL permission", + "category": "Permissive", + "owner": "NRL", + "homepage_url": "https://web.mit.edu/kerberos/krb5-1.14/doc/mitK5license.html", + "spdx_license_key": "LicenseRef-scancode-nrl-permission" +} \ No newline at end of file diff --git a/docs/nrl.LICENSE b/docs/nrl.LICENSE index 5a07508fd9..26a067e138 100644 --- a/docs/nrl.LICENSE +++ b/docs/nrl.LICENSE @@ -1,3 +1,19 @@ +--- +key: nrl +short_name: NRL License +name: NRL License +category: Permissive +owner: NRL +homepage_url: http://web.mit.edu/network/isakmp/nrllicense.html +spdx_license_key: NRL +ignorable_copyrights: + - copyright by The Regents of the University of California +ignorable_holders: + - The Regents of the University of California +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + NRL License COPYRIGHT NOTICE diff --git a/docs/nrl.html b/docs/nrl.html index 654da2eed1..43a9a09cd6 100644 --- a/docs/nrl.html +++ b/docs/nrl.html @@ -180,7 +180,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nrl.json b/docs/nrl.json index ea0e4853dd..082d802f92 100644 --- a/docs/nrl.json +++ b/docs/nrl.json @@ -1 +1,18 @@ -{"key": "nrl", "short_name": "NRL License", "name": "NRL License", "category": "Permissive", "owner": "NRL", "homepage_url": "http://web.mit.edu/network/isakmp/nrllicense.html", "spdx_license_key": "NRL", "ignorable_copyrights": ["copyright by The Regents of the University of California"], "ignorable_holders": ["The Regents of the University of California"], "ignorable_authors": ["the University of California, Berkeley and its contributors"]} \ No newline at end of file +{ + "key": "nrl", + "short_name": "NRL License", + "name": "NRL License", + "category": "Permissive", + "owner": "NRL", + "homepage_url": "http://web.mit.edu/network/isakmp/nrllicense.html", + "spdx_license_key": "NRL", + "ignorable_copyrights": [ + "copyright by The Regents of the University of California" + ], + "ignorable_holders": [ + "The Regents of the University of California" + ], + "ignorable_authors": [ + "the University of California, Berkeley and its contributors" + ] +} \ No newline at end of file diff --git a/docs/ntlm.LICENSE b/docs/ntlm.LICENSE index 533aeffd16..b3daa5bc52 100644 --- a/docs/ntlm.LICENSE +++ b/docs/ntlm.LICENSE @@ -1,3 +1,26 @@ +--- +key: ntlm +short_name: NTLM License +name: NTLM License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-ntlm +minimum_coverage: 15 +ignorable_copyrights: + - Copyright (c) 1997 Eric S. Raymond + - Copyright (c) 2001 Mark Bush. + - Copyright (c) 2007 David (Buzz) Bussenschutt. + - Copyright (c) Andrew Tridgell 1992-1998 +ignorable_holders: + - Andrew Tridgell + - David (Buzz) Bussenschutt + - Eric S. Raymond + - Mark Bush +ignorable_emails: + - Mark.Bush@bushnet.demon.co.uk + - davidbuzz@gmail.com +--- + COPYRIGHT AND LICENCE This application is free software. This code 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. You may freely use, copy and distribute this software as long as all copyright notices, including this notice, remain intact and that you do not try to claim it as your own or try to sell it. You may alter the code as long as you send me any diffs (this will ensure that you have an easier time of it when you upgrade ;). diff --git a/docs/ntlm.html b/docs/ntlm.html index 12aaa0d216..4bd02715d6 100644 --- a/docs/ntlm.html +++ b/docs/ntlm.html @@ -164,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ntlm.json b/docs/ntlm.json index a2c3bc1720..05e9794755 100644 --- a/docs/ntlm.json +++ b/docs/ntlm.json @@ -1 +1,25 @@ -{"key": "ntlm", "short_name": "NTLM License", "name": "NTLM License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-ntlm", "minimum_coverage": 15, "ignorable_copyrights": ["Copyright (c) 1997 Eric S. Raymond", "Copyright (c) 2001 Mark Bush. ", "Copyright (c) 2007 David (Buzz) Bussenschutt. ", "Copyright (c) Andrew Tridgell 1992-1998"], "ignorable_holders": ["Andrew Tridgell", "David (Buzz) Bussenschutt", "Eric S. Raymond", "Mark Bush"], "ignorable_emails": ["Mark.Bush@bushnet.demon.co.uk", "davidbuzz@gmail.com"]} \ No newline at end of file +{ + "key": "ntlm", + "short_name": "NTLM License", + "name": "NTLM License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-ntlm", + "minimum_coverage": 15, + "ignorable_copyrights": [ + "Copyright (c) 1997 Eric S. Raymond", + "Copyright (c) 2001 Mark Bush. ", + "Copyright (c) 2007 David (Buzz) Bussenschutt. ", + "Copyright (c) Andrew Tridgell 1992-1998" + ], + "ignorable_holders": [ + "Andrew Tridgell", + "David (Buzz) Bussenschutt", + "Eric S. Raymond", + "Mark Bush" + ], + "ignorable_emails": [ + "Mark.Bush@bushnet.demon.co.uk", + "davidbuzz@gmail.com" + ] +} \ No newline at end of file diff --git a/docs/ntp-0.LICENSE b/docs/ntp-0.LICENSE index d07f401c98..129cc81227 100644 --- a/docs/ntp-0.LICENSE +++ b/docs/ntp-0.LICENSE @@ -1,3 +1,14 @@ +--- +key: ntp-0 +short_name: NTP-0 +name: NTP No Attribution +category: Permissive +owner: MIT +homepage_url: https://github.com/tytso/e2fsprogs/blob/master/lib/et/et_name.c +spdx_license_key: NTP-0 +standard_notice: Copyright 1987 by MIT Student Information Processing Board +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose is hereby granted, provided that the names of M.I.T. and the M.I.T. S.I.P.B. not be used in diff --git a/docs/ntp-0.html b/docs/ntp-0.html index 37db17a432..42d9550dc3 100644 --- a/docs/ntp-0.html +++ b/docs/ntp-0.html @@ -141,7 +141,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ntp-0.json b/docs/ntp-0.json index 3f4980d984..998d058efe 100644 --- a/docs/ntp-0.json +++ b/docs/ntp-0.json @@ -1 +1,10 @@ -{"key": "ntp-0", "short_name": "NTP-0", "name": "NTP No Attribution", "category": "Permissive", "owner": "MIT", "homepage_url": "https://github.com/tytso/e2fsprogs/blob/master/lib/et/et_name.c", "spdx_license_key": "NTP-0", "standard_notice": "Copyright 1987 by MIT Student Information Processing Board"} \ No newline at end of file +{ + "key": "ntp-0", + "short_name": "NTP-0", + "name": "NTP No Attribution", + "category": "Permissive", + "owner": "MIT", + "homepage_url": "https://github.com/tytso/e2fsprogs/blob/master/lib/et/et_name.c", + "spdx_license_key": "NTP-0", + "standard_notice": "Copyright 1987 by MIT Student Information Processing Board" +} \ No newline at end of file diff --git a/docs/ntpl-origin.LICENSE b/docs/ntpl-origin.LICENSE index 626251b6c8..97cf79ded8 100644 --- a/docs/ntpl-origin.LICENSE +++ b/docs/ntpl-origin.LICENSE @@ -1,3 +1,14 @@ +--- +key: ntpl-origin +short_name: NTP Origin License +name: NTP Origin License +category: Permissive +owner: Atos +notes: a rare, NTP-like license found in NTP. Origin B.V. was merged into Atos +spdx_license_key: LicenseRef-scancode-ntpl-origin +minimum_coverage: 90 +--- + 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 appears in all copies and @@ -6,4 +17,4 @@ supporting documentation. This software is supported as is and without any express or implied warranties, including, without limitation, the implied warranties of merchantability and fitness for a particular purpose. The name Origin B.V. must not be used to endorse or promote -products derived from this software without prior written permission. +products derived from this software without prior written permission. \ No newline at end of file diff --git a/docs/ntpl-origin.html b/docs/ntpl-origin.html index 909f2207d5..271dafaa91 100644 --- a/docs/ntpl-origin.html +++ b/docs/ntpl-origin.html @@ -130,8 +130,7 @@ any express or implied warranties, including, without limitation, the implied warranties of merchantability and fitness for a particular purpose. The name Origin B.V. must not be used to endorse or promote -products derived from this software without prior written permission. - +products derived from this software without prior written permission.
@@ -143,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ntpl-origin.json b/docs/ntpl-origin.json index 351dbb5142..ad9b86bdf8 100644 --- a/docs/ntpl-origin.json +++ b/docs/ntpl-origin.json @@ -1 +1,10 @@ -{"key": "ntpl-origin", "short_name": "NTP Origin License", "name": "NTP Origin License", "category": "Permissive", "owner": "Atos", "notes": "a rare, NTP-like license found in NTP. Origin B.V. was merged into Atos", "spdx_license_key": "LicenseRef-scancode-ntpl-origin", "minimum_coverage": 90} \ No newline at end of file +{ + "key": "ntpl-origin", + "short_name": "NTP Origin License", + "name": "NTP Origin License", + "category": "Permissive", + "owner": "Atos", + "notes": "a rare, NTP-like license found in NTP. Origin B.V. was merged into Atos", + "spdx_license_key": "LicenseRef-scancode-ntpl-origin", + "minimum_coverage": 90 +} \ No newline at end of file diff --git a/docs/ntpl.LICENSE b/docs/ntpl.LICENSE index 0e684de2ff..f66a6cfc10 100644 --- a/docs/ntpl.LICENSE +++ b/docs/ntpl.LICENSE @@ -1,3 +1,21 @@ +--- +key: ntpl +is_deprecated: yes +short_name: NTP License +name: Network Time Protocol License +category: Permissive +owner: University of Delaware +homepage_url: https://www.eecis.udel.edu/~mills/ntp/html/copyright.html +notes: replaced by mit-old-style-no-advert +text_urls: + - http://www.opensource.org/licenses/ntp-license.php +osi_url: http://www.opensource.org/licenses/ntp-license.php +faq_url: https://www.eecis.udel.edu/~mills/ntp/html/copyright.html +other_urls: + - http://www.opensource.org/licenses/NTP + - http://www.pgpool.net/mediawiki/index.php/pgpool-II_License +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose with or without fee is hereby granted, provided that the above copyright notice appears in all copies and diff --git a/docs/ntpl.html b/docs/ntpl.html index 6052646daa..10892015d6 100644 --- a/docs/ntpl.html +++ b/docs/ntpl.html @@ -174,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ntpl.json b/docs/ntpl.json index e2d7c1677c..a00a791d7c 100644 --- a/docs/ntpl.json +++ b/docs/ntpl.json @@ -1 +1,19 @@ -{"key": "ntpl", "is_deprecated": true, "short_name": "NTP License", "name": "Network Time Protocol License", "category": "Permissive", "owner": "University of Delaware", "homepage_url": "https://www.eecis.udel.edu/~mills/ntp/html/copyright.html", "notes": "replaced by mit-old-style-no-advert", "text_urls": ["http://www.opensource.org/licenses/ntp-license.php"], "osi_url": "http://www.opensource.org/licenses/ntp-license.php", "faq_url": "https://www.eecis.udel.edu/~mills/ntp/html/copyright.html", "other_urls": ["http://www.opensource.org/licenses/NTP", "http://www.pgpool.net/mediawiki/index.php/pgpool-II_License"]} \ No newline at end of file +{ + "key": "ntpl", + "is_deprecated": true, + "short_name": "NTP License", + "name": "Network Time Protocol License", + "category": "Permissive", + "owner": "University of Delaware", + "homepage_url": "https://www.eecis.udel.edu/~mills/ntp/html/copyright.html", + "notes": "replaced by mit-old-style-no-advert", + "text_urls": [ + "http://www.opensource.org/licenses/ntp-license.php" + ], + "osi_url": "http://www.opensource.org/licenses/ntp-license.php", + "faq_url": "https://www.eecis.udel.edu/~mills/ntp/html/copyright.html", + "other_urls": [ + "http://www.opensource.org/licenses/NTP", + "http://www.pgpool.net/mediawiki/index.php/pgpool-II_License" + ] +} \ No newline at end of file diff --git a/docs/numerical-recipes-notice.LICENSE b/docs/numerical-recipes-notice.LICENSE index 3fa2ff8d27..9feca6bfa6 100644 --- a/docs/numerical-recipes-notice.LICENSE +++ b/docs/numerical-recipes-notice.LICENSE @@ -1,3 +1,16 @@ +--- +key: numerical-recipes-notice +short_name: Numerical Recipes Notice +name: Numerical Recipes Notice +category: Commercial +owner: Numerical Recipes +spdx_license_key: LicenseRef-scancode-numerical-recipes-notice +ignorable_urls: + - http://www.nr.com/ +ignorable_emails: + - orders@nr.com +--- + Types of License Offered Here are the types of licenses that we offer. Note that some types are diff --git a/docs/numerical-recipes-notice.html b/docs/numerical-recipes-notice.html index 79c4ebdfd4..c9b7cb652c 100644 --- a/docs/numerical-recipes-notice.html +++ b/docs/numerical-recipes-notice.html @@ -230,7 +230,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/numerical-recipes-notice.json b/docs/numerical-recipes-notice.json index 1d0dd9d249..0b9dd72088 100644 --- a/docs/numerical-recipes-notice.json +++ b/docs/numerical-recipes-notice.json @@ -1 +1,14 @@ -{"key": "numerical-recipes-notice", "short_name": "Numerical Recipes Notice", "name": "Numerical Recipes Notice", "category": "Commercial", "owner": "Numerical Recipes", "spdx_license_key": "LicenseRef-scancode-numerical-recipes-notice", "ignorable_urls": ["http://www.nr.com/"], "ignorable_emails": ["orders@nr.com"]} \ No newline at end of file +{ + "key": "numerical-recipes-notice", + "short_name": "Numerical Recipes Notice", + "name": "Numerical Recipes Notice", + "category": "Commercial", + "owner": "Numerical Recipes", + "spdx_license_key": "LicenseRef-scancode-numerical-recipes-notice", + "ignorable_urls": [ + "http://www.nr.com/" + ], + "ignorable_emails": [ + "orders@nr.com" + ] +} \ No newline at end of file diff --git a/docs/nunit-v2.LICENSE b/docs/nunit-v2.LICENSE index e69de29bb2..c6602d9be7 100644 --- a/docs/nunit-v2.LICENSE +++ b/docs/nunit-v2.LICENSE @@ -0,0 +1,29 @@ +--- +key: nunit-v2 +is_deprecated: yes +short_name: NUnit v2 License +name: NUnit v2 License +category: Permissive +owner: Charlie Poole +homepage_url: https://fedoraproject.org/wiki/Licensing:Nunit?rd=Licensing/Nunit +notes: this has been replaced by zlib-acknowledgement and used to be the Nunit SPDX id +text_urls: + - http://nunit.org/index.php?p=license&r=2.6 +other_urls: + - http://nunit.org/ + - https://fedoraproject.org/wiki/Licensing/Nunit +--- + +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 (see the following) in the product documentation is required. + +Portions Copyright © 2002-2012 Charlie Poole +or Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov +or Copyright © 2000-2002 Philip A. Craig + +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. \ No newline at end of file diff --git a/docs/nunit-v2.html b/docs/nunit-v2.html index 8bcd8c57c9..b0ae04ba46 100644 --- a/docs/nunit-v2.html +++ b/docs/nunit-v2.html @@ -140,7 +140,19 @@
license_text
-
+
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 (see the following) in the product documentation is required.
+
+Portions Copyright © 2002-2012 Charlie Poole 
+or Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov 
+or Copyright © 2000-2002 Philip A. Craig
+
+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.
@@ -152,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nunit-v2.json b/docs/nunit-v2.json index 48a0d213c7..3d47c7f7d6 100644 --- a/docs/nunit-v2.json +++ b/docs/nunit-v2.json @@ -1 +1,17 @@ -{"key": "nunit-v2", "is_deprecated": true, "short_name": "NUnit v2 License", "name": "NUnit v2 License", "category": "Permissive", "owner": "Charlie Poole", "homepage_url": "https://fedoraproject.org/wiki/Licensing:Nunit?rd=Licensing/Nunit", "notes": "this has been replaced by zlib-acknowledgement and used to be the Nunit SPDX id", "text_urls": ["http://nunit.org/index.php?p=license&r=2.6"], "other_urls": ["http://nunit.org/", "https://fedoraproject.org/wiki/Licensing/Nunit"]} \ No newline at end of file +{ + "key": "nunit-v2", + "is_deprecated": true, + "short_name": "NUnit v2 License", + "name": "NUnit v2 License", + "category": "Permissive", + "owner": "Charlie Poole", + "homepage_url": "https://fedoraproject.org/wiki/Licensing:Nunit?rd=Licensing/Nunit", + "notes": "this has been replaced by zlib-acknowledgement and used to be the Nunit SPDX id", + "text_urls": [ + "http://nunit.org/index.php?p=license&r=2.6" + ], + "other_urls": [ + "http://nunit.org/", + "https://fedoraproject.org/wiki/Licensing/Nunit" + ] +} \ No newline at end of file diff --git a/docs/nvidia-2002.LICENSE b/docs/nvidia-2002.LICENSE index c0c61ee93d..badc892d05 100644 --- a/docs/nvidia-2002.LICENSE +++ b/docs/nvidia-2002.LICENSE @@ -1,3 +1,12 @@ +--- +key: nvidia-2002 +short_name: NVIDIA 2002 License +name: NVIDIA 2002 License +category: Permissive +owner: NVIDIA +spdx_license_key: LicenseRef-scancode-nvidia-2002 +--- + NVIDIA Corporation("NVIDIA") supplies this software to you in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this NVIDIA software diff --git a/docs/nvidia-2002.html b/docs/nvidia-2002.html index af09bf0931..525978f201 100644 --- a/docs/nvidia-2002.html +++ b/docs/nvidia-2002.html @@ -158,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nvidia-2002.json b/docs/nvidia-2002.json index d701ec2723..01a8340983 100644 --- a/docs/nvidia-2002.json +++ b/docs/nvidia-2002.json @@ -1 +1,8 @@ -{"key": "nvidia-2002", "short_name": "NVIDIA 2002 License", "name": "NVIDIA 2002 License", "category": "Permissive", "owner": "NVIDIA", "spdx_license_key": "LicenseRef-scancode-nvidia-2002"} \ No newline at end of file +{ + "key": "nvidia-2002", + "short_name": "NVIDIA 2002 License", + "name": "NVIDIA 2002 License", + "category": "Permissive", + "owner": "NVIDIA", + "spdx_license_key": "LicenseRef-scancode-nvidia-2002" +} \ No newline at end of file diff --git a/docs/nvidia-apex-sdk-eula-2011.LICENSE b/docs/nvidia-apex-sdk-eula-2011.LICENSE index c538ad5e16..2759cf6bc9 100644 --- a/docs/nvidia-apex-sdk-eula-2011.LICENSE +++ b/docs/nvidia-apex-sdk-eula-2011.LICENSE @@ -1,3 +1,24 @@ +--- +key: nvidia-apex-sdk-eula-2011 +short_name: NVIDIA APEX SDK EULA 2011 +name: NVIDIA APEX SDK End User License Agreement 2011 +category: Proprietary Free +owner: NVIDIA +homepage_url: https://developer.download.nvidia.com/assets/gamedev/docs/NVIDIA%20APEX%20EULA.pdf +spdx_license_key: LicenseRef-scancode-nvidia-apex-sdk-eula-2011 +other_urls: + - www.developer.nvidia.com/apex +ignorable_copyrights: + - Copyright 2011 NVIDIA Corporation +ignorable_holders: + - NVIDIA Corporation +ignorable_urls: + - http://www.developer.nvidia.com/apex +ignorable_emails: + - PHYSXLICENCING@NVIDIA.COM + - PHYSXLICENSING@NVIDIA.COM +--- + NVIDIA CORPORATION NVIDIA APEX SDK END USER LICENSE AGREEMENT Welcome to the new world of game development physical asset creation provided to you diff --git a/docs/nvidia-apex-sdk-eula-2011.html b/docs/nvidia-apex-sdk-eula-2011.html index 1e590deb83..b3d847096e 100644 --- a/docs/nvidia-apex-sdk-eula-2011.html +++ b/docs/nvidia-apex-sdk-eula-2011.html @@ -428,7 +428,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nvidia-apex-sdk-eula-2011.json b/docs/nvidia-apex-sdk-eula-2011.json index 59b0852257..5804041fd8 100644 --- a/docs/nvidia-apex-sdk-eula-2011.json +++ b/docs/nvidia-apex-sdk-eula-2011.json @@ -1 +1,25 @@ -{"key": "nvidia-apex-sdk-eula-2011", "short_name": "NVIDIA APEX SDK EULA 2011", "name": "NVIDIA APEX SDK End User License Agreement 2011", "category": "Proprietary Free", "owner": "NVIDIA", "homepage_url": "https://developer.download.nvidia.com/assets/gamedev/docs/NVIDIA%20APEX%20EULA.pdf", "spdx_license_key": "LicenseRef-scancode-nvidia-apex-sdk-eula-2011", "other_urls": ["www.developer.nvidia.com/apex"], "ignorable_copyrights": ["Copyright 2011 NVIDIA Corporation"], "ignorable_holders": ["NVIDIA Corporation"], "ignorable_urls": ["http://www.developer.nvidia.com/apex"], "ignorable_emails": ["PHYSXLICENCING@NVIDIA.COM", "PHYSXLICENSING@NVIDIA.COM"]} \ No newline at end of file +{ + "key": "nvidia-apex-sdk-eula-2011", + "short_name": "NVIDIA APEX SDK EULA 2011", + "name": "NVIDIA APEX SDK End User License Agreement 2011", + "category": "Proprietary Free", + "owner": "NVIDIA", + "homepage_url": "https://developer.download.nvidia.com/assets/gamedev/docs/NVIDIA%20APEX%20EULA.pdf", + "spdx_license_key": "LicenseRef-scancode-nvidia-apex-sdk-eula-2011", + "other_urls": [ + "www.developer.nvidia.com/apex" + ], + "ignorable_copyrights": [ + "Copyright 2011 NVIDIA Corporation" + ], + "ignorable_holders": [ + "NVIDIA Corporation" + ], + "ignorable_urls": [ + "http://www.developer.nvidia.com/apex" + ], + "ignorable_emails": [ + "PHYSXLICENCING@NVIDIA.COM", + "PHYSXLICENSING@NVIDIA.COM" + ] +} \ No newline at end of file diff --git a/docs/nvidia-cuda-supplement-2020.LICENSE b/docs/nvidia-cuda-supplement-2020.LICENSE index f642ab68e1..40317f552b 100644 --- a/docs/nvidia-cuda-supplement-2020.LICENSE +++ b/docs/nvidia-cuda-supplement-2020.LICENSE @@ -1,3 +1,80 @@ +--- +key: nvidia-cuda-supplement-2020 +short_name: CUDA Toolkit Supplement to SLA for NVIDIA SDKs +name: CUDA Toolkit Supplement to SLA for NVIDIA SDKs +category: Proprietary Free +owner: NVIDIA +homepage_url: https://docs.nvidia.com/cuda/eula/index.html#cuda-toolkit-supplement-license-agreement +spdx_license_key: LicenseRef-scancode-nvidia-cuda-supplement-2020 +ignorable_copyrights: + - (c) Copyright 2013 King Abdullah University of Science and Technology + - Copyright (c) 1997-2012 University of Cambridge + - Copyright (c) 2003-2010 University of Illinois at Urbana-Champaign + - Copyright (c) 2007-2009, Regents of the University of California + - Copyright (c) 2007-2012, Google Inc. + - Copyright (c) 2008-2009 Davide Barbieri University of Rome Tor Vergata + - Copyright (c) 2009, 2010 Mutsuo Saito, Makoto Matsumoto and Hiroshima University + - Copyright (c) 2009-2012 Zoltan Herczeg + - Copyright (c) 2010 The University of Tennessee + - Copyright (c) 2010-2012 Zoltan Herczeg + - Copyright (c) 2011 Mutsuo Saito, Makoto Matsumoto, Hiroshima University and University + of Tokyo + - Copyright (c) 2011-2013, Yann Collet + - Copyright (c) 2012, The Science and Technology Facilities Council + - Copyright (c) 2012, University of Illinois + - Copyright (c) 2015-2017, Norbert Juffa + - Copyright (c) 2016 OpenAI (http://openai.com), 2016 Google Inc. + - Copyright (c) Microsoft Corporation + - Copyright 2010-2011, D. E. Shaw Research +ignorable_holders: + - D. E. Shaw Research + - Davide Barbieri University of Rome Tor Vergata + - Google Inc. + - King Abdullah University of Science and Technology + - Microsoft Corporation + - Mutsuo Saito, Makoto Matsumoto and Hiroshima University + - Mutsuo Saito, Makoto Matsumoto, Hiroshima University and University of Tokyo + - Norbert Juffa + - OpenAI Google Inc. + - Regents of the University of California + - The Science and Technology Facilities Council + - The University of Tennessee + - University of Cambridge + - University of Illinois + - University of Illinois at Urbana-Champaign + - Yann Collet + - Zoltan Herczeg +ignorable_authors: + - Ahmad Abdelfattah (ahmad.ahmad@kaust.edu.sa) David Keyes (david.keyes@kaust.edu.sa) + - Ahmad M. Abdelfattah, David Keyes, and Hatem Ltaief + - D. E. Shaw Research + - Davide Barbieri + - IMPACT Group, University of Illinois, http://impact.crhc.illinois.edu + - Jonathan Hogg + - LLVM Team + - Li-Wen Chang + - Mutsuo Saito and Makoto Matsumoto + - Norbert Juffa + - Vasily Volkov + - the University of Tennessee +ignorable_urls: + - http://impact.crhc.illinois.edu/ + - http://llvm.org/ + - http://openai.com/ + - http://www.apache.org/licenses/LICENSE-2.0.html + - http://www.eclipse.org/ + - http://www.eclipse.org/legal/epl-v10.html + - http://www.gnu.org/licenses/gpl.txt + - http://www.opensource.org/licenses/bsd-license.php + - https://github.com/openai/openai-gemm/blob/master/LICENSE +ignorable_emails: + - ahmad.ahmad@kaust.edu.sa + - david.keyes@kaust.edu.sa + - hatem.ltaief@kaust.edu.sa + - nvidia-compute-license-questions@nvidia.com + - oss-requests@nvidia.com +--- + The terms in this supplement govern your use of the NVIDIA CUDA Toolkit SDK under the terms of your license agreement (“Agreement”) as modified by this supplement. Capitalized terms used but not defined below have the meaning assigned to them in the Agreement. This supplement is an exhibit to the Agreement and is incorporated as an integral part of the Agreement. In the event of conflict between the terms in this supplement and the terms in the Agreement, the terms in this supplement govern. diff --git a/docs/nvidia-cuda-supplement-2020.html b/docs/nvidia-cuda-supplement-2020.html index 8011c4cde7..e85b09add6 100644 --- a/docs/nvidia-cuda-supplement-2020.html +++ b/docs/nvidia-cuda-supplement-2020.html @@ -824,7 +824,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nvidia-cuda-supplement-2020.json b/docs/nvidia-cuda-supplement-2020.json index ff448ef822..f78deabace 100644 --- a/docs/nvidia-cuda-supplement-2020.json +++ b/docs/nvidia-cuda-supplement-2020.json @@ -1 +1,80 @@ -{"key": "nvidia-cuda-supplement-2020", "short_name": "CUDA Toolkit Supplement to SLA for NVIDIA SDKs", "name": "CUDA Toolkit Supplement to SLA for NVIDIA SDKs", "category": "Proprietary Free", "owner": "NVIDIA", "homepage_url": "https://docs.nvidia.com/cuda/eula/index.html#cuda-toolkit-supplement-license-agreement", "spdx_license_key": "LicenseRef-scancode-nvidia-cuda-supplement-2020", "ignorable_copyrights": ["(c) Copyright 2013 King Abdullah University of Science and Technology", "Copyright (c) 1997-2012 University of Cambridge", "Copyright (c) 2003-2010 University of Illinois at Urbana-Champaign", "Copyright (c) 2007-2009, Regents of the University of California", "Copyright (c) 2007-2012, Google Inc.", "Copyright (c) 2008-2009 Davide Barbieri University of Rome Tor Vergata", "Copyright (c) 2009, 2010 Mutsuo Saito, Makoto Matsumoto and Hiroshima University", "Copyright (c) 2009-2012 Zoltan Herczeg", "Copyright (c) 2010 The University of Tennessee", "Copyright (c) 2010-2012 Zoltan Herczeg", "Copyright (c) 2011 Mutsuo Saito, Makoto Matsumoto, Hiroshima University and University of Tokyo", "Copyright (c) 2011-2013, Yann Collet", "Copyright (c) 2012, The Science and Technology Facilities Council", "Copyright (c) 2012, University of Illinois", "Copyright (c) 2015-2017, Norbert Juffa", "Copyright (c) 2016 OpenAI (http://openai.com), 2016 Google Inc.", "Copyright (c) Microsoft Corporation", "Copyright 2010-2011, D. E. Shaw Research"], "ignorable_holders": ["D. E. Shaw Research", "Davide Barbieri University of Rome Tor Vergata", "Google Inc.", "King Abdullah University of Science and Technology", "Microsoft Corporation", "Mutsuo Saito, Makoto Matsumoto and Hiroshima University", "Mutsuo Saito, Makoto Matsumoto, Hiroshima University and University of Tokyo", "Norbert Juffa", "OpenAI Google Inc.", "Regents of the University of California", "The Science and Technology Facilities Council", "The University of Tennessee", "University of Cambridge", "University of Illinois", "University of Illinois at Urbana-Champaign", "Yann Collet", "Zoltan Herczeg"], "ignorable_authors": ["Ahmad Abdelfattah (ahmad.ahmad@kaust.edu.sa) David Keyes (david.keyes@kaust.edu.sa)", "Ahmad M. Abdelfattah, David Keyes, and Hatem Ltaief", "D. E. Shaw Research", "Davide Barbieri", "IMPACT Group, University of Illinois, http://impact.crhc.illinois.edu", "Jonathan Hogg", "LLVM Team", "Li-Wen Chang", "Mutsuo Saito and Makoto Matsumoto", "Norbert Juffa", "Vasily Volkov", "the University of Tennessee"], "ignorable_urls": ["http://impact.crhc.illinois.edu/", "http://llvm.org/", "http://openai.com/", "http://www.apache.org/licenses/LICENSE-2.0.html", "http://www.eclipse.org/", "http://www.eclipse.org/legal/epl-v10.html", "http://www.gnu.org/licenses/gpl.txt", "http://www.opensource.org/licenses/bsd-license.php", "https://github.com/openai/openai-gemm/blob/master/LICENSE"], "ignorable_emails": ["ahmad.ahmad@kaust.edu.sa", "david.keyes@kaust.edu.sa", "hatem.ltaief@kaust.edu.sa", "nvidia-compute-license-questions@nvidia.com", "oss-requests@nvidia.com"]} \ No newline at end of file +{ + "key": "nvidia-cuda-supplement-2020", + "short_name": "CUDA Toolkit Supplement to SLA for NVIDIA SDKs", + "name": "CUDA Toolkit Supplement to SLA for NVIDIA SDKs", + "category": "Proprietary Free", + "owner": "NVIDIA", + "homepage_url": "https://docs.nvidia.com/cuda/eula/index.html#cuda-toolkit-supplement-license-agreement", + "spdx_license_key": "LicenseRef-scancode-nvidia-cuda-supplement-2020", + "ignorable_copyrights": [ + "(c) Copyright 2013 King Abdullah University of Science and Technology", + "Copyright (c) 1997-2012 University of Cambridge", + "Copyright (c) 2003-2010 University of Illinois at Urbana-Champaign", + "Copyright (c) 2007-2009, Regents of the University of California", + "Copyright (c) 2007-2012, Google Inc.", + "Copyright (c) 2008-2009 Davide Barbieri University of Rome Tor Vergata", + "Copyright (c) 2009, 2010 Mutsuo Saito, Makoto Matsumoto and Hiroshima University", + "Copyright (c) 2009-2012 Zoltan Herczeg", + "Copyright (c) 2010 The University of Tennessee", + "Copyright (c) 2010-2012 Zoltan Herczeg", + "Copyright (c) 2011 Mutsuo Saito, Makoto Matsumoto, Hiroshima University and University of Tokyo", + "Copyright (c) 2011-2013, Yann Collet", + "Copyright (c) 2012, The Science and Technology Facilities Council", + "Copyright (c) 2012, University of Illinois", + "Copyright (c) 2015-2017, Norbert Juffa", + "Copyright (c) 2016 OpenAI (http://openai.com), 2016 Google Inc.", + "Copyright (c) Microsoft Corporation", + "Copyright 2010-2011, D. E. Shaw Research" + ], + "ignorable_holders": [ + "D. E. Shaw Research", + "Davide Barbieri University of Rome Tor Vergata", + "Google Inc.", + "King Abdullah University of Science and Technology", + "Microsoft Corporation", + "Mutsuo Saito, Makoto Matsumoto and Hiroshima University", + "Mutsuo Saito, Makoto Matsumoto, Hiroshima University and University of Tokyo", + "Norbert Juffa", + "OpenAI Google Inc.", + "Regents of the University of California", + "The Science and Technology Facilities Council", + "The University of Tennessee", + "University of Cambridge", + "University of Illinois", + "University of Illinois at Urbana-Champaign", + "Yann Collet", + "Zoltan Herczeg" + ], + "ignorable_authors": [ + "Ahmad Abdelfattah (ahmad.ahmad@kaust.edu.sa) David Keyes (david.keyes@kaust.edu.sa)", + "Ahmad M. Abdelfattah, David Keyes, and Hatem Ltaief", + "D. E. Shaw Research", + "Davide Barbieri", + "IMPACT Group, University of Illinois, http://impact.crhc.illinois.edu", + "Jonathan Hogg", + "LLVM Team", + "Li-Wen Chang", + "Mutsuo Saito and Makoto Matsumoto", + "Norbert Juffa", + "Vasily Volkov", + "the University of Tennessee" + ], + "ignorable_urls": [ + "http://impact.crhc.illinois.edu/", + "http://llvm.org/", + "http://openai.com/", + "http://www.apache.org/licenses/LICENSE-2.0.html", + "http://www.eclipse.org/", + "http://www.eclipse.org/legal/epl-v10.html", + "http://www.gnu.org/licenses/gpl.txt", + "http://www.opensource.org/licenses/bsd-license.php", + "https://github.com/openai/openai-gemm/blob/master/LICENSE" + ], + "ignorable_emails": [ + "ahmad.ahmad@kaust.edu.sa", + "david.keyes@kaust.edu.sa", + "hatem.ltaief@kaust.edu.sa", + "nvidia-compute-license-questions@nvidia.com", + "oss-requests@nvidia.com" + ] +} \ No newline at end of file diff --git a/docs/nvidia-gov.LICENSE b/docs/nvidia-gov.LICENSE index 5bda1737da..82752ce893 100644 --- a/docs/nvidia-gov.LICENSE +++ b/docs/nvidia-gov.LICENSE @@ -1,3 +1,16 @@ +--- +key: nvidia-gov +short_name: NVIDIA License with Government Qualifications +name: NVIDIA License with Government Qualifications +category: Permissive +owner: NVIDIA +spdx_license_key: LicenseRef-scancode-nvidia-gov +ignorable_copyrights: + - Copyright 1993-2012 NVIDIA Corporation +ignorable_holders: + - NVIDIA Corporation +--- + Copyright 1993-2012 NVIDIA Corporation. All rights reserved. NOTICE TO USER: diff --git a/docs/nvidia-gov.html b/docs/nvidia-gov.html index 6a3fea7031..8886e5dd75 100644 --- a/docs/nvidia-gov.html +++ b/docs/nvidia-gov.html @@ -169,7 +169,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nvidia-gov.json b/docs/nvidia-gov.json index 7b7ad7221a..c8102f8520 100644 --- a/docs/nvidia-gov.json +++ b/docs/nvidia-gov.json @@ -1 +1,14 @@ -{"key": "nvidia-gov", "short_name": "NVIDIA License with Government Qualifications", "name": "NVIDIA License with Government Qualifications", "category": "Permissive", "owner": "NVIDIA", "spdx_license_key": "LicenseRef-scancode-nvidia-gov", "ignorable_copyrights": ["Copyright 1993-2012 NVIDIA Corporation"], "ignorable_holders": ["NVIDIA Corporation"]} \ No newline at end of file +{ + "key": "nvidia-gov", + "short_name": "NVIDIA License with Government Qualifications", + "name": "NVIDIA License with Government Qualifications", + "category": "Permissive", + "owner": "NVIDIA", + "spdx_license_key": "LicenseRef-scancode-nvidia-gov", + "ignorable_copyrights": [ + "Copyright 1993-2012 NVIDIA Corporation" + ], + "ignorable_holders": [ + "NVIDIA Corporation" + ] +} \ No newline at end of file diff --git a/docs/nvidia-isaac-eula-2019.1.LICENSE b/docs/nvidia-isaac-eula-2019.1.LICENSE index 5f691ceac2..257b136bd0 100644 --- a/docs/nvidia-isaac-eula-2019.1.LICENSE +++ b/docs/nvidia-isaac-eula-2019.1.LICENSE @@ -1,3 +1,16 @@ +--- +key: nvidia-isaac-eula-2019.1 +short_name: NVIDIA ISAAC EULA v2019.1 +name: NVIDIA ISAAC EULA v2019.1 +category: Proprietary Free +owner: NVIDIA +homepage_url: https://developer.nvidia.com/isaac-sdk +spdx_license_key: LicenseRef-scancode-nvidia-isaac-eula-2019.1 +faq_url: https://forums.developer.nvidia.com/t/when-do-i-get-charged-for-using-isaac-in-my-business-application/121294 +ignorable_urls: + - https://developer.nvidia.com/ +--- + SOFTWARE LICENSE AGREEMENT FOR NVIDIA SOFTWARE DEVELOPMENT KITS This Software License Agreement, including exhibits attached ("Agreement”) is a diff --git a/docs/nvidia-isaac-eula-2019.1.html b/docs/nvidia-isaac-eula-2019.1.html index d856ae346f..22f0786968 100644 --- a/docs/nvidia-isaac-eula-2019.1.html +++ b/docs/nvidia-isaac-eula-2019.1.html @@ -539,7 +539,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nvidia-isaac-eula-2019.1.json b/docs/nvidia-isaac-eula-2019.1.json index de75859ccb..c98f5e03b0 100644 --- a/docs/nvidia-isaac-eula-2019.1.json +++ b/docs/nvidia-isaac-eula-2019.1.json @@ -1 +1,13 @@ -{"key": "nvidia-isaac-eula-2019.1", "short_name": "NVIDIA ISAAC EULA v2019.1", "name": "NVIDIA ISAAC EULA v2019.1", "category": "Proprietary Free", "owner": "NVIDIA", "homepage_url": "https://developer.nvidia.com/isaac-sdk", "spdx_license_key": "LicenseRef-scancode-nvidia-isaac-eula-2019.1", "faq_url": "https://forums.developer.nvidia.com/t/when-do-i-get-charged-for-using-isaac-in-my-business-application/121294", "ignorable_urls": ["https://developer.nvidia.com/"]} \ No newline at end of file +{ + "key": "nvidia-isaac-eula-2019.1", + "short_name": "NVIDIA ISAAC EULA v2019.1", + "name": "NVIDIA ISAAC EULA v2019.1", + "category": "Proprietary Free", + "owner": "NVIDIA", + "homepage_url": "https://developer.nvidia.com/isaac-sdk", + "spdx_license_key": "LicenseRef-scancode-nvidia-isaac-eula-2019.1", + "faq_url": "https://forums.developer.nvidia.com/t/when-do-i-get-charged-for-using-isaac-in-my-business-application/121294", + "ignorable_urls": [ + "https://developer.nvidia.com/" + ] +} \ No newline at end of file diff --git a/docs/nvidia-ngx-eula-2019.LICENSE b/docs/nvidia-ngx-eula-2019.LICENSE index 67b14c02df..ecfe283b12 100644 --- a/docs/nvidia-ngx-eula-2019.LICENSE +++ b/docs/nvidia-ngx-eula-2019.LICENSE @@ -1,3 +1,24 @@ +--- +key: nvidia-ngx-eula-2019 +short_name: NVIDIA NGX EULA 2019 +name: NVIDIA NGX EULA 2019 +category: Proprietary Free +owner: NVIDIA +homepage_url: https://docs.nvidia.com/rtx/ngx/ngx-eula/index.html +spdx_license_key: LicenseRef-scancode-nvidia-ngx-eula-2019 +ignorable_copyrights: + - (c) Marketing and Promotion + - Copyright (c) 2019 NVIDIA Corporation +ignorable_holders: + - Marketing and Promotion + - NVIDIA Corporation +ignorable_urls: + - https://developer.nvidia.com/ + - https://developer.nvidia.com/sw-notification +ignorable_emails: + - nvidia-rtx-license-questions@nvidia.com +--- + Abstract This document is the End User License Agreement (EULA) for NVIDIA NGX. This document contains specific license terms and conditions for NVIDIA NGX. By accepting this agreement, you agree to comply with all the terms and conditions applicable to the specific product(s) included herein. diff --git a/docs/nvidia-ngx-eula-2019.html b/docs/nvidia-ngx-eula-2019.html index c9a25e2f9b..3927c63350 100644 --- a/docs/nvidia-ngx-eula-2019.html +++ b/docs/nvidia-ngx-eula-2019.html @@ -368,7 +368,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nvidia-ngx-eula-2019.json b/docs/nvidia-ngx-eula-2019.json index 07412da987..ea61bc2fff 100644 --- a/docs/nvidia-ngx-eula-2019.json +++ b/docs/nvidia-ngx-eula-2019.json @@ -1 +1,24 @@ -{"key": "nvidia-ngx-eula-2019", "short_name": "NVIDIA NGX EULA 2019", "name": "NVIDIA NGX EULA 2019", "category": "Proprietary Free", "owner": "NVIDIA", "homepage_url": "https://docs.nvidia.com/rtx/ngx/ngx-eula/index.html", "spdx_license_key": "LicenseRef-scancode-nvidia-ngx-eula-2019", "ignorable_copyrights": ["(c) Marketing and Promotion", "Copyright (c) 2019 NVIDIA Corporation"], "ignorable_holders": ["Marketing and Promotion", "NVIDIA Corporation"], "ignorable_urls": ["https://developer.nvidia.com/", "https://developer.nvidia.com/sw-notification"], "ignorable_emails": ["nvidia-rtx-license-questions@nvidia.com"]} \ No newline at end of file +{ + "key": "nvidia-ngx-eula-2019", + "short_name": "NVIDIA NGX EULA 2019", + "name": "NVIDIA NGX EULA 2019", + "category": "Proprietary Free", + "owner": "NVIDIA", + "homepage_url": "https://docs.nvidia.com/rtx/ngx/ngx-eula/index.html", + "spdx_license_key": "LicenseRef-scancode-nvidia-ngx-eula-2019", + "ignorable_copyrights": [ + "(c) Marketing and Promotion", + "Copyright (c) 2019 NVIDIA Corporation" + ], + "ignorable_holders": [ + "Marketing and Promotion", + "NVIDIA Corporation" + ], + "ignorable_urls": [ + "https://developer.nvidia.com/", + "https://developer.nvidia.com/sw-notification" + ], + "ignorable_emails": [ + "nvidia-rtx-license-questions@nvidia.com" + ] +} \ No newline at end of file diff --git a/docs/nvidia-sdk-eula-v0.11.LICENSE b/docs/nvidia-sdk-eula-v0.11.LICENSE index 0dfe39d109..10fe654fbd 100644 --- a/docs/nvidia-sdk-eula-v0.11.LICENSE +++ b/docs/nvidia-sdk-eula-v0.11.LICENSE @@ -1,3 +1,50 @@ +--- +key: nvidia-sdk-eula-v0.11 +short_name: NVIDIA SDK EULA v0.11 +name: License Agreement for NVIDIA Software Development Kits v0.11 +category: Proprietary Free +owner: NVIDIA +homepage_url: https://docs.nvidia.com/pdf/EULA.pdf +spdx_license_key: LicenseRef-scancode-nvidia-sdk-eula-v0.11 +standard_notice: | + Important Notice—Read before downloading, installing, copying or using the + licensed software: + This license agreement, including exhibits attached ("Agreement”) is a + legal agreement + between you and NVIDIA Corporation ("NVIDIA") and governs your use of a + NVIDIA + software development kit (“SDK”). + Each SDK has its own set of software and materials, but here is a + description of the types + of items that may be included in a SDK: source code, header files, APIs, + data sets and + assets (examples include images, textures, models, scenes, videos, native + API input/ + output files), binary software, sample code, libraries, utility programs, + programming + code and documentation. + This Agreement can be accepted only by an adult of legal age of majority in + the country + in which the SDK is used. + If you are entering into this Agreement on behalf of a company or other + legal entity, you + represent that you have the legal authority to bind the entity to this + Agreement, in which + case “you” will mean the entity you represent. + If you don’t have the required age or authority to accept this Agreement, + or if you don’t + accept all the terms and conditions of this Agreement, do not download, + install or use + the SDK. + You agree to use the SDK only for purposes that are permitted by (a) this + Agreement, + and (b) any applicable law, regulation or generally accepted practices or + guidelines in + the relevant jurisdictions. +ignorable_urls: + - http://www.nvidia.com/ +--- + License Agreement for NVIDIA Software Development Kits Release date: January 28, 2020 diff --git a/docs/nvidia-sdk-eula-v0.11.html b/docs/nvidia-sdk-eula-v0.11.html index f12ec17fb0..d299d733b1 100644 --- a/docs/nvidia-sdk-eula-v0.11.html +++ b/docs/nvidia-sdk-eula-v0.11.html @@ -469,7 +469,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nvidia-sdk-eula-v0.11.json b/docs/nvidia-sdk-eula-v0.11.json index 8ecccdf7da..b477f284ef 100644 --- a/docs/nvidia-sdk-eula-v0.11.json +++ b/docs/nvidia-sdk-eula-v0.11.json @@ -1 +1,13 @@ -{"key": "nvidia-sdk-eula-v0.11", "short_name": "NVIDIA SDK EULA v0.11", "name": "License Agreement for NVIDIA Software Development Kits v0.11", "category": "Proprietary Free", "owner": "NVIDIA", "homepage_url": "https://docs.nvidia.com/pdf/EULA.pdf", "spdx_license_key": "LicenseRef-scancode-nvidia-sdk-eula-v0.11", "standard_notice": "Important Notice\u2014Read before downloading, installing, copying or using the\nlicensed software:\nThis license agreement, including exhibits attached (\"Agreement\u201d) is a\nlegal agreement\nbetween you and NVIDIA Corporation (\"NVIDIA\") and governs your use of a\nNVIDIA\nsoftware development kit (\u201cSDK\u201d).\nEach SDK has its own set of software and materials, but here is a\ndescription of the types\nof items that may be included in a SDK: source code, header files, APIs,\ndata sets and\nassets (examples include images, textures, models, scenes, videos, native\nAPI input/\noutput files), binary software, sample code, libraries, utility programs,\nprogramming\ncode and documentation.\nThis Agreement can be accepted only by an adult of legal age of majority in\nthe country\nin which the SDK is used.\nIf you are entering into this Agreement on behalf of a company or other\nlegal entity, you\nrepresent that you have the legal authority to bind the entity to this\nAgreement, in which\ncase \u201cyou\u201d will mean the entity you represent.\nIf you don\u2019t have the required age or authority to accept this Agreement,\nor if you don\u2019t\naccept all the terms and conditions of this Agreement, do not download,\ninstall or use\nthe SDK.\nYou agree to use the SDK only for purposes that are permitted by (a) this\nAgreement,\nand (b) any applicable law, regulation or generally accepted practices or\nguidelines in\nthe relevant jurisdictions.\n", "ignorable_urls": ["http://www.nvidia.com/"]} \ No newline at end of file +{ + "key": "nvidia-sdk-eula-v0.11", + "short_name": "NVIDIA SDK EULA v0.11", + "name": "License Agreement for NVIDIA Software Development Kits v0.11", + "category": "Proprietary Free", + "owner": "NVIDIA", + "homepage_url": "https://docs.nvidia.com/pdf/EULA.pdf", + "spdx_license_key": "LicenseRef-scancode-nvidia-sdk-eula-v0.11", + "standard_notice": "Important Notice\u2014Read before downloading, installing, copying or using the\nlicensed software:\nThis license agreement, including exhibits attached (\"Agreement\u201d) is a\nlegal agreement\nbetween you and NVIDIA Corporation (\"NVIDIA\") and governs your use of a\nNVIDIA\nsoftware development kit (\u201cSDK\u201d).\nEach SDK has its own set of software and materials, but here is a\ndescription of the types\nof items that may be included in a SDK: source code, header files, APIs,\ndata sets and\nassets (examples include images, textures, models, scenes, videos, native\nAPI input/\noutput files), binary software, sample code, libraries, utility programs,\nprogramming\ncode and documentation.\nThis Agreement can be accepted only by an adult of legal age of majority in\nthe country\nin which the SDK is used.\nIf you are entering into this Agreement on behalf of a company or other\nlegal entity, you\nrepresent that you have the legal authority to bind the entity to this\nAgreement, in which\ncase \u201cyou\u201d will mean the entity you represent.\nIf you don\u2019t have the required age or authority to accept this Agreement,\nor if you don\u2019t\naccept all the terms and conditions of this Agreement, do not download,\ninstall or use\nthe SDK.\nYou agree to use the SDK only for purposes that are permitted by (a) this\nAgreement,\nand (b) any applicable law, regulation or generally accepted practices or\nguidelines in\nthe relevant jurisdictions.\n", + "ignorable_urls": [ + "http://www.nvidia.com/" + ] +} \ No newline at end of file diff --git a/docs/nvidia-video-codec-agreement.LICENSE b/docs/nvidia-video-codec-agreement.LICENSE index 56b1ad194a..964565452b 100644 --- a/docs/nvidia-video-codec-agreement.LICENSE +++ b/docs/nvidia-video-codec-agreement.LICENSE @@ -1,3 +1,13 @@ +--- +key: nvidia-video-codec-agreement +short_name: NVIDIA Video Codec SDK Agreement +name: NVIDIA Video Codec SDK Agreement +category: Proprietary Free +owner: NVIDIA +homepage_url: https://developer.nvidia.com/nvidia-video-codec-sdk-license-agreement +spdx_license_key: LicenseRef-scancode-nvidia-video-codec-agreement +--- + NVIDIA VIDEO CODEC SDK LICENSE AGREEMENT (“Agreement”) BY DOWNLOADING, INSTALLING OR USING THE SOFTWARE AND OTHER AVAILABLE MATERIALS, YOU (“LICENSEE”) AGREE TO BE BOUND BY THE FOLLOWING TERMS AND CONDITIONS OF THIS AGREEMENT. If Licensee does not agree to the terms and condition of this Agreement, THEN do not downLOAD, INSTALL OR USE the SOFTWARE AND MATERIALS. diff --git a/docs/nvidia-video-codec-agreement.html b/docs/nvidia-video-codec-agreement.html index 234c38735a..6720640863 100644 --- a/docs/nvidia-video-codec-agreement.html +++ b/docs/nvidia-video-codec-agreement.html @@ -175,7 +175,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nvidia-video-codec-agreement.json b/docs/nvidia-video-codec-agreement.json index 9f7996bcf4..2d85d69f54 100644 --- a/docs/nvidia-video-codec-agreement.json +++ b/docs/nvidia-video-codec-agreement.json @@ -1 +1,9 @@ -{"key": "nvidia-video-codec-agreement", "short_name": "NVIDIA Video Codec SDK Agreement", "name": "NVIDIA Video Codec SDK Agreement", "category": "Proprietary Free", "owner": "NVIDIA", "homepage_url": "https://developer.nvidia.com/nvidia-video-codec-sdk-license-agreement", "spdx_license_key": "LicenseRef-scancode-nvidia-video-codec-agreement"} \ No newline at end of file +{ + "key": "nvidia-video-codec-agreement", + "short_name": "NVIDIA Video Codec SDK Agreement", + "name": "NVIDIA Video Codec SDK Agreement", + "category": "Proprietary Free", + "owner": "NVIDIA", + "homepage_url": "https://developer.nvidia.com/nvidia-video-codec-sdk-license-agreement", + "spdx_license_key": "LicenseRef-scancode-nvidia-video-codec-agreement" +} \ No newline at end of file diff --git a/docs/nvidia.LICENSE b/docs/nvidia.LICENSE index 703e9a63af..ddbc3eafc2 100644 --- a/docs/nvidia.LICENSE +++ b/docs/nvidia.LICENSE @@ -1,3 +1,19 @@ +--- +key: nvidia +short_name: NVIDIA License +name: NVIDIA License +category: Permissive +owner: NVIDIA +homepage_url: http://www.xfree86.org/3.3.6/COPYRIGHT2.html#7 +spdx_license_key: LicenseRef-scancode-nvidia +text_urls: + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html#7 +ignorable_copyrights: + - Copyright (c) 1996-1998 NVIDIA, Corp. +ignorable_holders: + - NVIDIA, Corp. +--- + NOTICE TO USER: The source code is copyrighted under U.S. and international laws. NVIDIA, Corp. of Sunnyvale, California owns the copyright and as design patents pending on the design and interface of the NV chips. Users and possessors of this source code are hereby granted a nonexclusive, royalty-free copyright and design patent license to use this code in individual and commercial software. diff --git a/docs/nvidia.html b/docs/nvidia.html index 1731bf40cb..b2f5641624 100644 --- a/docs/nvidia.html +++ b/docs/nvidia.html @@ -161,7 +161,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nvidia.json b/docs/nvidia.json index 736fa08210..9f15b4a5d4 100644 --- a/docs/nvidia.json +++ b/docs/nvidia.json @@ -1 +1,18 @@ -{"key": "nvidia", "short_name": "NVIDIA License", "name": "NVIDIA License", "category": "Permissive", "owner": "NVIDIA", "homepage_url": "http://www.xfree86.org/3.3.6/COPYRIGHT2.html#7", "spdx_license_key": "LicenseRef-scancode-nvidia", "text_urls": ["http://www.xfree86.org/3.3.6/COPYRIGHT2.html#7"], "ignorable_copyrights": ["Copyright (c) 1996-1998 NVIDIA, Corp."], "ignorable_holders": ["NVIDIA, Corp."]} \ No newline at end of file +{ + "key": "nvidia", + "short_name": "NVIDIA License", + "name": "NVIDIA License", + "category": "Permissive", + "owner": "NVIDIA", + "homepage_url": "http://www.xfree86.org/3.3.6/COPYRIGHT2.html#7", + "spdx_license_key": "LicenseRef-scancode-nvidia", + "text_urls": [ + "http://www.xfree86.org/3.3.6/COPYRIGHT2.html#7" + ], + "ignorable_copyrights": [ + "Copyright (c) 1996-1998 NVIDIA, Corp." + ], + "ignorable_holders": [ + "NVIDIA, Corp." + ] +} \ No newline at end of file diff --git a/docs/nwhm.LICENSE b/docs/nwhm.LICENSE index 906aba4b71..a82a912f76 100644 --- a/docs/nwhm.LICENSE +++ b/docs/nwhm.LICENSE @@ -1 +1,12 @@ -If you are not a white heterosexual male you are permitted to copy, sell and use this work in any manner you choose without need to include any attribution you do not see fit. You are asked as a courtesy to retain this license in any derivatives but you are not required. If you are a white heterosexual male you are provided the same permissions (reuse, modification, resale) but are required to include this license in any documentation and any public facing derivative. You are also required to include attribution to the original author or to an author responsible for redistribution of a derivative. +--- +key: nwhm +short_name: Non White Heterosexual Male +name: Non White Heterosexual Male +category: Permissive +owner: Unspecified +homepage_url: https://nonwhiteheterosexualmalelicense.org/ +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-nwhm +--- + +If you are not a white heterosexual male you are permitted to copy, sell and use this work in any manner you choose without need to include any attribution you do not see fit. You are asked as a courtesy to retain this license in any derivatives but you are not required. If you are a white heterosexual male you are provided the same permissions (reuse, modification, resale) but are required to include this license in any documentation and any public facing derivative. You are also required to include attribution to the original author or to an author responsible for redistribution of a derivative. \ No newline at end of file diff --git a/docs/nwhm.html b/docs/nwhm.html index e8e05f3124..236b4d932a 100644 --- a/docs/nwhm.html +++ b/docs/nwhm.html @@ -122,8 +122,7 @@
license_text
-
If you are not a white heterosexual male you are permitted to copy, sell and use this work in any manner you choose without need to include any attribution you do not see fit. You are asked as a courtesy to retain this license in any derivatives but you are not required. If you are a white heterosexual male you are provided the same permissions (reuse, modification, resale) but are required to include this license in any documentation and any public facing derivative. You are also required to include attribution to the original author or to an author responsible for redistribution of a derivative.
-
+
If you are not a white heterosexual male you are permitted to copy, sell and use this work in any manner you choose without need to include any attribution you do not see fit. You are asked as a courtesy to retain this license in any derivatives but you are not required. If you are a white heterosexual male you are provided the same permissions (reuse, modification, resale) but are required to include this license in any documentation and any public facing derivative. You are also required to include attribution to the original author or to an author responsible for redistribution of a derivative.
@@ -135,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nwhm.json b/docs/nwhm.json index 803230cb16..095fa161fa 100644 --- a/docs/nwhm.json +++ b/docs/nwhm.json @@ -1 +1,10 @@ -{"key": "nwhm", "short_name": "Non White Heterosexual Male", "name": "Non White Heterosexual Male", "category": "Permissive", "owner": "Unspecified", "homepage_url": "https://nonwhiteheterosexualmalelicense.org/", "notes": "From https://github.com/ErikMcClure/bad-licenses", "spdx_license_key": "LicenseRef-scancode-nwhm"} \ No newline at end of file +{ + "key": "nwhm", + "short_name": "Non White Heterosexual Male", + "name": "Non White Heterosexual Male", + "category": "Permissive", + "owner": "Unspecified", + "homepage_url": "https://nonwhiteheterosexualmalelicense.org/", + "notes": "From https://github.com/ErikMcClure/bad-licenses", + "spdx_license_key": "LicenseRef-scancode-nwhm" +} \ No newline at end of file diff --git a/docs/nxp-firmware-patent.LICENSE b/docs/nxp-firmware-patent.LICENSE index 919ad4ec1f..636d1f1f4a 100644 --- a/docs/nxp-firmware-patent.LICENSE +++ b/docs/nxp-firmware-patent.LICENSE @@ -1,3 +1,15 @@ +--- +key: nxp-firmware-patent +short_name: NXP Firmware with Patent License +name: NXP Firmware with Patent License +category: Proprietary Free +owner: NXP +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.sdma_firmware +spdx_license_key: LicenseRef-scancode-nxp-firmware-patent +ignorable_urls: + - git://git.kernel.org/pub/scm/linux/kernel/git/firmware/ +--- + Redistribution. Reproduction and redistribution in binary form, without modification, for use solely in conjunction with a NXP chipset, is permitted provided that the following conditions are met: diff --git a/docs/nxp-firmware-patent.html b/docs/nxp-firmware-patent.html index 04519a40e7..c9b05268a4 100644 --- a/docs/nxp-firmware-patent.html +++ b/docs/nxp-firmware-patent.html @@ -179,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nxp-firmware-patent.json b/docs/nxp-firmware-patent.json index a380a3db66..0d3eb3fbd9 100644 --- a/docs/nxp-firmware-patent.json +++ b/docs/nxp-firmware-patent.json @@ -1 +1,12 @@ -{"key": "nxp-firmware-patent", "short_name": "NXP Firmware with Patent License", "name": "NXP Firmware with Patent License", "category": "Proprietary Free", "owner": "NXP", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.sdma_firmware", "spdx_license_key": "LicenseRef-scancode-nxp-firmware-patent", "ignorable_urls": ["git://git.kernel.org/pub/scm/linux/kernel/git/firmware/"]} \ No newline at end of file +{ + "key": "nxp-firmware-patent", + "short_name": "NXP Firmware with Patent License", + "name": "NXP Firmware with Patent License", + "category": "Proprietary Free", + "owner": "NXP", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.sdma_firmware", + "spdx_license_key": "LicenseRef-scancode-nxp-firmware-patent", + "ignorable_urls": [ + "git://git.kernel.org/pub/scm/linux/kernel/git/firmware/" + ] +} \ No newline at end of file diff --git a/docs/nxp-linux-firmware.LICENSE b/docs/nxp-linux-firmware.LICENSE index 61143b9ba4..8c2c9f7781 100644 --- a/docs/nxp-linux-firmware.LICENSE +++ b/docs/nxp-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: nxp-linux-firmware +short_name: NXP Linux Firmware License +name: NXP Linux Firmware License +category: Proprietary Free +owner: NXP +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.NXP +spdx_license_key: LicenseRef-scancode-nxp-linux-firmware +--- + Redistribution and use in binary form is permitted provided that the following conditions are met: diff --git a/docs/nxp-linux-firmware.html b/docs/nxp-linux-firmware.html index 1286207d0d..336616d36e 100644 --- a/docs/nxp-linux-firmware.html +++ b/docs/nxp-linux-firmware.html @@ -146,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nxp-linux-firmware.json b/docs/nxp-linux-firmware.json index c81269b3f5..a725808c77 100644 --- a/docs/nxp-linux-firmware.json +++ b/docs/nxp-linux-firmware.json @@ -1 +1,9 @@ -{"key": "nxp-linux-firmware", "short_name": "NXP Linux Firmware License", "name": "NXP Linux Firmware License", "category": "Proprietary Free", "owner": "NXP", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.NXP", "spdx_license_key": "LicenseRef-scancode-nxp-linux-firmware"} \ No newline at end of file +{ + "key": "nxp-linux-firmware", + "short_name": "NXP Linux Firmware License", + "name": "NXP Linux Firmware License", + "category": "Proprietary Free", + "owner": "NXP", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.NXP", + "spdx_license_key": "LicenseRef-scancode-nxp-linux-firmware" +} \ No newline at end of file diff --git a/docs/nxp-mc-firmware.LICENSE b/docs/nxp-mc-firmware.LICENSE index 4013961bd1..a71ac43db7 100644 --- a/docs/nxp-mc-firmware.LICENSE +++ b/docs/nxp-mc-firmware.LICENSE @@ -1,3 +1,19 @@ +--- +key: nxp-mc-firmware +short_name: NXP MC Firmware License +name: NXP MC Firmware License +category: Proprietary Free +owner: NXP +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.nxp_mc_firmware +spdx_license_key: LicenseRef-scancode-nxp-mc-firmware +ignorable_copyrights: + - Copyright (c) 2006 David Gibson, IBM Corporation + - Copyright (c) 2006,2008-2011 Joseph Koshy +ignorable_holders: + - David Gibson, IBM Corporation + - Joseph Koshy +--- + Software License Agreement ("Agreement") ANY USE, REPRODUCTION, OR DISTRIBUTION OF THE ACCOMPANYING BINARY SOFTWARE diff --git a/docs/nxp-mc-firmware.html b/docs/nxp-mc-firmware.html index 63741e70c5..8c8bc1364d 100644 --- a/docs/nxp-mc-firmware.html +++ b/docs/nxp-mc-firmware.html @@ -268,7 +268,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nxp-mc-firmware.json b/docs/nxp-mc-firmware.json index d16264fdf1..1e2e03db97 100644 --- a/docs/nxp-mc-firmware.json +++ b/docs/nxp-mc-firmware.json @@ -1 +1,17 @@ -{"key": "nxp-mc-firmware", "short_name": "NXP MC Firmware License", "name": "NXP MC Firmware License", "category": "Proprietary Free", "owner": "NXP", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.nxp_mc_firmware", "spdx_license_key": "LicenseRef-scancode-nxp-mc-firmware", "ignorable_copyrights": ["Copyright (c) 2006 David Gibson, IBM Corporation", "Copyright (c) 2006,2008-2011 Joseph Koshy"], "ignorable_holders": ["David Gibson, IBM Corporation", "Joseph Koshy"]} \ No newline at end of file +{ + "key": "nxp-mc-firmware", + "short_name": "NXP MC Firmware License", + "name": "NXP MC Firmware License", + "category": "Proprietary Free", + "owner": "NXP", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.nxp_mc_firmware", + "spdx_license_key": "LicenseRef-scancode-nxp-mc-firmware", + "ignorable_copyrights": [ + "Copyright (c) 2006 David Gibson, IBM Corporation", + "Copyright (c) 2006,2008-2011 Joseph Koshy" + ], + "ignorable_holders": [ + "David Gibson, IBM Corporation", + "Joseph Koshy" + ] +} \ No newline at end of file diff --git a/docs/nxp-microcontroller-proprietary.LICENSE b/docs/nxp-microcontroller-proprietary.LICENSE index e89b3b5066..d7e315bb71 100644 --- a/docs/nxp-microcontroller-proprietary.LICENSE +++ b/docs/nxp-microcontroller-proprietary.LICENSE @@ -1,3 +1,14 @@ +--- +key: nxp-microcontroller-proprietary +short_name: NXP Microcontroller Proprietary +name: NXP Microcontroller Proprietary +category: Proprietary Free +owner: NXP +spdx_license_key: LicenseRef-scancode-nxp-microctl-proprietary +other_spdx_license_keys: + - LicenseRef-scancode-nxp-microcontroller-proprietary +--- + Software that is described herein is for illustrative purposes only which provides customers with programming information regarding the products. This software is supplied ""AS IS"" without any warranties. diff --git a/docs/nxp-microcontroller-proprietary.html b/docs/nxp-microcontroller-proprietary.html index 5ff2764faa..4727f71857 100644 --- a/docs/nxp-microcontroller-proprietary.html +++ b/docs/nxp-microcontroller-proprietary.html @@ -145,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nxp-microcontroller-proprietary.json b/docs/nxp-microcontroller-proprietary.json index 3d12ce0604..60457f45c2 100644 --- a/docs/nxp-microcontroller-proprietary.json +++ b/docs/nxp-microcontroller-proprietary.json @@ -1 +1,11 @@ -{"key": "nxp-microcontroller-proprietary", "short_name": "NXP Microcontroller Proprietary", "name": "NXP Microcontroller Proprietary", "category": "Proprietary Free", "owner": "NXP", "spdx_license_key": "LicenseRef-scancode-nxp-microctl-proprietary", "other_spdx_license_keys": ["LicenseRef-scancode-nxp-microcontroller-proprietary"]} \ No newline at end of file +{ + "key": "nxp-microcontroller-proprietary", + "short_name": "NXP Microcontroller Proprietary", + "name": "NXP Microcontroller Proprietary", + "category": "Proprietary Free", + "owner": "NXP", + "spdx_license_key": "LicenseRef-scancode-nxp-microctl-proprietary", + "other_spdx_license_keys": [ + "LicenseRef-scancode-nxp-microcontroller-proprietary" + ] +} \ No newline at end of file diff --git a/docs/nxp-warranty-disclaimer.LICENSE b/docs/nxp-warranty-disclaimer.LICENSE index 6d34cce9e6..73f8c1febf 100644 --- a/docs/nxp-warranty-disclaimer.LICENSE +++ b/docs/nxp-warranty-disclaimer.LICENSE @@ -1,3 +1,12 @@ +--- +key: nxp-warranty-disclaimer +short_name: NXP Warranty Disclaimer +name: NXP Warranty Disclaimer +category: Proprietary Free +owner: NXP +spdx_license_key: LicenseRef-scancode-nxp-warranty-disclaimer +--- + Software that is described herein is for illustrative purposes only which provides customers with programming information regarding the products. This software is supplied "AS IS" without any warranties. diff --git a/docs/nxp-warranty-disclaimer.html b/docs/nxp-warranty-disclaimer.html index 27b82d9f24..00fc32beb0 100644 --- a/docs/nxp-warranty-disclaimer.html +++ b/docs/nxp-warranty-disclaimer.html @@ -129,7 +129,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nxp-warranty-disclaimer.json b/docs/nxp-warranty-disclaimer.json index 4ef732a6d0..ca9923ba1d 100644 --- a/docs/nxp-warranty-disclaimer.json +++ b/docs/nxp-warranty-disclaimer.json @@ -1 +1,8 @@ -{"key": "nxp-warranty-disclaimer", "short_name": "NXP Warranty Disclaimer", "name": "NXP Warranty Disclaimer", "category": "Proprietary Free", "owner": "NXP", "spdx_license_key": "LicenseRef-scancode-nxp-warranty-disclaimer"} \ No newline at end of file +{ + "key": "nxp-warranty-disclaimer", + "short_name": "NXP Warranty Disclaimer", + "name": "NXP Warranty Disclaimer", + "category": "Proprietary Free", + "owner": "NXP", + "spdx_license_key": "LicenseRef-scancode-nxp-warranty-disclaimer" +} \ No newline at end of file diff --git a/docs/nysl-0.9982-jp.LICENSE b/docs/nysl-0.9982-jp.LICENSE index 6d4847dd11..c1a2e096f1 100644 --- a/docs/nysl-0.9982-jp.LICENSE +++ b/docs/nysl-0.9982-jp.LICENSE @@ -1,3 +1,20 @@ +--- +key: nysl-0.9982-jp +language: ja +short_name: NYSL 0.9982 JP +name: NYSL 0.9982 Japanese +category: Permissive +owner: Kazuhiro Inaba +homepage_url: http://www.kmonos.net/nysl/index.en.html +spdx_license_key: LicenseRef-scancode-nysl-0.9982-jp +text_urls: + - https://raw.githubusercontent.com/uasi/license-templates/0f48d7532fb4cc9c26fc6093db680e0601bf5738/LICENSE.NYSL.txt +faq_url: http://www.kmonos.net/nysl/readme.html +other_urls: + - http://www.kmonos.net/nysl/ + - http://search.cpan.org/~yakex/Software-License-NYSL-v0.0.1/ +--- + NYSL Version 0.9982 ---------------------------------------- @@ -15,4 +32,4 @@ B. このソフトを利用することによって生じた損害等につい C. 著作者人格権は に帰属します。著作権は放棄します。 -D. 以上の3項は、ソース・実行バイナリの双方に適用されます。 +D. 以上の3項は、ソース・実行バイナリの双方に適用されます。 \ No newline at end of file diff --git a/docs/nysl-0.9982-jp.html b/docs/nysl-0.9982-jp.html index 2719d8bb76..ef727bac16 100644 --- a/docs/nysl-0.9982-jp.html +++ b/docs/nysl-0.9982-jp.html @@ -164,8 +164,7 @@ C. 著作者人格権は <copyright holders> に帰属します。著作権は放棄します。 -D. 以上の3項は、ソース・実行バイナリの双方に適用されます。 - +D. 以上の3項は、ソース・実行バイナリの双方に適用されます。
@@ -177,7 +176,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nysl-0.9982-jp.json b/docs/nysl-0.9982-jp.json index 816c3cd281..a3565c3744 100644 --- a/docs/nysl-0.9982-jp.json +++ b/docs/nysl-0.9982-jp.json @@ -1 +1,18 @@ -{"key": "nysl-0.9982-jp", "language": "ja", "short_name": "NYSL 0.9982 JP", "name": "NYSL 0.9982 Japanese", "category": "Permissive", "owner": "Kazuhiro Inaba", "homepage_url": "http://www.kmonos.net/nysl/index.en.html", "spdx_license_key": "LicenseRef-scancode-nysl-0.9982-jp", "text_urls": ["https://raw.githubusercontent.com/uasi/license-templates/0f48d7532fb4cc9c26fc6093db680e0601bf5738/LICENSE.NYSL.txt"], "faq_url": "http://www.kmonos.net/nysl/readme.html", "other_urls": ["http://www.kmonos.net/nysl/", "http://search.cpan.org/~yakex/Software-License-NYSL-v0.0.1/"]} \ No newline at end of file +{ + "key": "nysl-0.9982-jp", + "language": "ja", + "short_name": "NYSL 0.9982 JP", + "name": "NYSL 0.9982 Japanese", + "category": "Permissive", + "owner": "Kazuhiro Inaba", + "homepage_url": "http://www.kmonos.net/nysl/index.en.html", + "spdx_license_key": "LicenseRef-scancode-nysl-0.9982-jp", + "text_urls": [ + "https://raw.githubusercontent.com/uasi/license-templates/0f48d7532fb4cc9c26fc6093db680e0601bf5738/LICENSE.NYSL.txt" + ], + "faq_url": "http://www.kmonos.net/nysl/readme.html", + "other_urls": [ + "http://www.kmonos.net/nysl/", + "http://search.cpan.org/~yakex/Software-License-NYSL-v0.0.1/" + ] +} \ No newline at end of file diff --git a/docs/nysl-0.9982.LICENSE b/docs/nysl-0.9982.LICENSE index adf2037850..ffbce0b0c0 100644 --- a/docs/nysl-0.9982.LICENSE +++ b/docs/nysl-0.9982.LICENSE @@ -1,3 +1,22 @@ +--- +key: nysl-0.9982 +short_name: NYSL 0.9982 +name: NYSL 0.9982 +category: Permissive +owner: Kazuhiro Inaba +homepage_url: http://www.kmonos.net/nysl/index.en.html +notes: | + the original version is in Japanese but we track the English text only for + now +spdx_license_key: LicenseRef-scancode-nysl-0.9982 +text_urls: + - https://raw.githubusercontent.com/uasi/license-templates/0f48d7532fb4cc9c26fc6093db680e0601bf5738/LICENSE.NYSL.txt +faq_url: http://www.kmonos.net/nysl/readme.html +other_urls: + - http://www.kmonos.net/nysl/ + - http://search.cpan.org/~yakex/Software-License-NYSL-v0.0.1/ +--- + NYSL Version 0.9982 (en) (Unofficial) ---------------------------------------- A. This software is "Everyone'sWare". It means: @@ -19,4 +38,4 @@ B. The author is not responsible for any kind of damages or loss C. Copyrighted to D. Above three clauses are applied both to source and binary - form of this software. + form of this software. \ No newline at end of file diff --git a/docs/nysl-0.9982.html b/docs/nysl-0.9982.html index 3ebb962d89..eb7739065a 100644 --- a/docs/nysl-0.9982.html +++ b/docs/nysl-0.9982.html @@ -170,8 +170,7 @@ C. Copyrighted to <copyright holders> D. Above three clauses are applied both to source and binary - form of this software. - + form of this software.
@@ -183,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/nysl-0.9982.json b/docs/nysl-0.9982.json index ced710cc06..4bd58318b9 100644 --- a/docs/nysl-0.9982.json +++ b/docs/nysl-0.9982.json @@ -1 +1,18 @@ -{"key": "nysl-0.9982", "short_name": "NYSL 0.9982", "name": "NYSL 0.9982", "category": "Permissive", "owner": "Kazuhiro Inaba", "homepage_url": "http://www.kmonos.net/nysl/index.en.html", "notes": "the original version is in Japanese but we track the English text only for\nnow\n", "spdx_license_key": "LicenseRef-scancode-nysl-0.9982", "text_urls": ["https://raw.githubusercontent.com/uasi/license-templates/0f48d7532fb4cc9c26fc6093db680e0601bf5738/LICENSE.NYSL.txt"], "faq_url": "http://www.kmonos.net/nysl/readme.html", "other_urls": ["http://www.kmonos.net/nysl/", "http://search.cpan.org/~yakex/Software-License-NYSL-v0.0.1/"]} \ No newline at end of file +{ + "key": "nysl-0.9982", + "short_name": "NYSL 0.9982", + "name": "NYSL 0.9982", + "category": "Permissive", + "owner": "Kazuhiro Inaba", + "homepage_url": "http://www.kmonos.net/nysl/index.en.html", + "notes": "the original version is in Japanese but we track the English text only for\nnow\n", + "spdx_license_key": "LicenseRef-scancode-nysl-0.9982", + "text_urls": [ + "https://raw.githubusercontent.com/uasi/license-templates/0f48d7532fb4cc9c26fc6093db680e0601bf5738/LICENSE.NYSL.txt" + ], + "faq_url": "http://www.kmonos.net/nysl/readme.html", + "other_urls": [ + "http://www.kmonos.net/nysl/", + "http://search.cpan.org/~yakex/Software-License-NYSL-v0.0.1/" + ] +} \ No newline at end of file diff --git a/docs/o-uda-1.0.LICENSE b/docs/o-uda-1.0.LICENSE index 3c574b7aa2..e4be96674f 100644 --- a/docs/o-uda-1.0.LICENSE +++ b/docs/o-uda-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: o-uda-1.0 +short_name: O-UDA-1.0 +name: Open Use of Data Agreement v1.0 +category: Permissive +owner: Microsoft +homepage_url: https://github.com/microsoft/Open-Use-of-Data-Agreement/blob/v1.0/O-UDA-1.0.md +spdx_license_key: O-UDA-1.0 +other_urls: + - https://cdla.dev/open-use-of-data-agreement-v1-0/ +--- + Open Use of Data Agreement v1.0 This is the Open Use of Data Agreement, Version 1.0 (the "O-UDA"). Capitalized terms are defined in Section 5. Data Provider and you agree as follows: diff --git a/docs/o-uda-1.0.html b/docs/o-uda-1.0.html index 9dabfbf657..9f7213ceca 100644 --- a/docs/o-uda-1.0.html +++ b/docs/o-uda-1.0.html @@ -181,7 +181,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/o-uda-1.0.json b/docs/o-uda-1.0.json index 5058c228d7..40ee477047 100644 --- a/docs/o-uda-1.0.json +++ b/docs/o-uda-1.0.json @@ -1 +1,12 @@ -{"key": "o-uda-1.0", "short_name": "O-UDA-1.0", "name": "Open Use of Data Agreement v1.0", "category": "Permissive", "owner": "Microsoft", "homepage_url": "https://github.com/microsoft/Open-Use-of-Data-Agreement/blob/v1.0/O-UDA-1.0.md", "spdx_license_key": "O-UDA-1.0", "other_urls": ["https://cdla.dev/open-use-of-data-agreement-v1-0/"]} \ No newline at end of file +{ + "key": "o-uda-1.0", + "short_name": "O-UDA-1.0", + "name": "Open Use of Data Agreement v1.0", + "category": "Permissive", + "owner": "Microsoft", + "homepage_url": "https://github.com/microsoft/Open-Use-of-Data-Agreement/blob/v1.0/O-UDA-1.0.md", + "spdx_license_key": "O-UDA-1.0", + "other_urls": [ + "https://cdla.dev/open-use-of-data-agreement-v1-0/" + ] +} \ No newline at end of file diff --git a/docs/o-young-jong.LICENSE b/docs/o-young-jong.LICENSE index 939a5c1740..38fb0f7128 100644 --- a/docs/o-young-jong.LICENSE +++ b/docs/o-young-jong.LICENSE @@ -1,3 +1,12 @@ +--- +key: o-young-jong +short_name: O Young Jong License +name: O Young Jong License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-o-young-jong +--- + Copying or modifying this code for any purpose is permitted, provided that this copyright notice is preserved in its entirety in all copies or modifications. diff --git a/docs/o-young-jong.html b/docs/o-young-jong.html index 0c36d967e8..9d90955084 100644 --- a/docs/o-young-jong.html +++ b/docs/o-young-jong.html @@ -123,7 +123,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/o-young-jong.json b/docs/o-young-jong.json index 822c235881..5b1de08ffb 100644 --- a/docs/o-young-jong.json +++ b/docs/o-young-jong.json @@ -1 +1,8 @@ -{"key": "o-young-jong", "short_name": "O Young Jong License", "name": "O Young Jong License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-o-young-jong"} \ No newline at end of file +{ + "key": "o-young-jong", + "short_name": "O Young Jong License", + "name": "O Young Jong License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-o-young-jong" +} \ No newline at end of file diff --git a/docs/oasis-ipr-2013.LICENSE b/docs/oasis-ipr-2013.LICENSE index 1b78a81d4b..9b763d551f 100644 --- a/docs/oasis-ipr-2013.LICENSE +++ b/docs/oasis-ipr-2013.LICENSE @@ -1,3 +1,24 @@ +--- +key: oasis-ipr-2013 +short_name: OASIS IPR 2013 +name: OASIS Intellectual Property Rights (IPR) Policy 2013 +category: Proprietary Free +owner: OASIS +homepage_url: https://www.oasis-open.org/policies-guidelines/ipr/ +spdx_license_key: LicenseRef-scancode-oasis-ipr-2013 +other_urls: + - https://github.com/alexa/avs-device-sdk/blob/703b06188eae146af396f58be4e47442d7ce5b1e/NOTICE.txt#L103Attac +ignorable_copyrights: + - Copyright (c) OASIS Open +ignorable_holders: + - OASIS Open +ignorable_urls: + - http://www.oasis-open.org/policies-guidelines/ipr + - http://www.oasis-open.org/who/intellectualproperty.php + - http://www.oasisopen.org/policies-guidelines/ipr + - http://www.oasisopen.org/who/intellectualproperty.php +--- + Intellectual Property Rights (IPR) Policy 1. INTRODUCTION 2. DEFINITIONS diff --git a/docs/oasis-ipr-2013.html b/docs/oasis-ipr-2013.html index d95959aee5..4608a4a3f0 100644 --- a/docs/oasis-ipr-2013.html +++ b/docs/oasis-ipr-2013.html @@ -803,7 +803,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oasis-ipr-2013.json b/docs/oasis-ipr-2013.json index 068aba778c..5a15e980f2 100644 --- a/docs/oasis-ipr-2013.json +++ b/docs/oasis-ipr-2013.json @@ -1 +1,24 @@ -{"key": "oasis-ipr-2013", "short_name": "OASIS IPR 2013", "name": "OASIS Intellectual Property Rights (IPR) Policy 2013", "category": "Proprietary Free", "owner": "OASIS", "homepage_url": "https://www.oasis-open.org/policies-guidelines/ipr/", "spdx_license_key": "LicenseRef-scancode-oasis-ipr-2013", "other_urls": ["https://github.com/alexa/avs-device-sdk/blob/703b06188eae146af396f58be4e47442d7ce5b1e/NOTICE.txt#L103Attac"], "ignorable_copyrights": ["Copyright (c) OASIS Open"], "ignorable_holders": ["OASIS Open"], "ignorable_urls": ["http://www.oasis-open.org/policies-guidelines/ipr", "http://www.oasis-open.org/who/intellectualproperty.php", "http://www.oasisopen.org/policies-guidelines/ipr", "http://www.oasisopen.org/who/intellectualproperty.php"]} \ No newline at end of file +{ + "key": "oasis-ipr-2013", + "short_name": "OASIS IPR 2013", + "name": "OASIS Intellectual Property Rights (IPR) Policy 2013", + "category": "Proprietary Free", + "owner": "OASIS", + "homepage_url": "https://www.oasis-open.org/policies-guidelines/ipr/", + "spdx_license_key": "LicenseRef-scancode-oasis-ipr-2013", + "other_urls": [ + "https://github.com/alexa/avs-device-sdk/blob/703b06188eae146af396f58be4e47442d7ce5b1e/NOTICE.txt#L103Attac" + ], + "ignorable_copyrights": [ + "Copyright (c) OASIS Open" + ], + "ignorable_holders": [ + "OASIS Open" + ], + "ignorable_urls": [ + "http://www.oasis-open.org/policies-guidelines/ipr", + "http://www.oasis-open.org/who/intellectualproperty.php", + "http://www.oasisopen.org/policies-guidelines/ipr", + "http://www.oasisopen.org/who/intellectualproperty.php" + ] +} \ No newline at end of file diff --git a/docs/oasis-ipr-policy-2014.LICENSE b/docs/oasis-ipr-policy-2014.LICENSE index 28fb3614c4..7b24883dd3 100644 --- a/docs/oasis-ipr-policy-2014.LICENSE +++ b/docs/oasis-ipr-policy-2014.LICENSE @@ -1,3 +1,19 @@ +--- +key: oasis-ipr-policy-2014 +short_name: Oasis IPR Policy License 2014 +name: Oasis IPR Policy License 2014-10-15 +category: Proprietary Free +owner: OASIS +homepage_url: https://www.oasis-open.org/policies-guidelines/ipr +spdx_license_key: LicenseRef-scancode-oasis-ipr-policy-2014 +ignorable_copyrights: + - Copyright (c) OASIS Open +ignorable_holders: + - OASIS Open +ignorable_urls: + - http://www.oasis-open.org/policies-guidelines/ipr + - http://www.oasis-open.org/who/intellectualproperty.php +--- Intellectual Property Rights (IPR) Policy @@ -276,4 +292,4 @@ Dates Approved: Wed, 2013-07-31 Effective: -Wed, 2014-10-15 +Wed, 2014-10-15 \ No newline at end of file diff --git a/docs/oasis-ipr-policy-2014.html b/docs/oasis-ipr-policy-2014.html index b76f88940a..a8a0b4afea 100644 --- a/docs/oasis-ipr-policy-2014.html +++ b/docs/oasis-ipr-policy-2014.html @@ -142,8 +142,7 @@
license_text
-

-Intellectual Property Rights (IPR) Policy
+    
Intellectual Property Rights (IPR) Policy
 
 1. INTRODUCTION
 2. DEFINITIONS
@@ -420,8 +419,7 @@
 Approved: 
 Wed, 2013-07-31
 Effective: 
-Wed, 2014-10-15
-
+Wed, 2014-10-15
@@ -433,7 +431,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oasis-ipr-policy-2014.json b/docs/oasis-ipr-policy-2014.json index 8ac052f3f1..8acf56b634 100644 --- a/docs/oasis-ipr-policy-2014.json +++ b/docs/oasis-ipr-policy-2014.json @@ -1 +1,19 @@ -{"key": "oasis-ipr-policy-2014", "short_name": "Oasis IPR Policy License 2014", "name": "Oasis IPR Policy License 2014-10-15", "category": "Proprietary Free", "owner": "OASIS", "homepage_url": "https://www.oasis-open.org/policies-guidelines/ipr", "spdx_license_key": "LicenseRef-scancode-oasis-ipr-policy-2014", "ignorable_copyrights": ["Copyright (c) OASIS Open"], "ignorable_holders": ["OASIS Open"], "ignorable_urls": ["http://www.oasis-open.org/policies-guidelines/ipr", "http://www.oasis-open.org/who/intellectualproperty.php"]} \ No newline at end of file +{ + "key": "oasis-ipr-policy-2014", + "short_name": "Oasis IPR Policy License 2014", + "name": "Oasis IPR Policy License 2014-10-15", + "category": "Proprietary Free", + "owner": "OASIS", + "homepage_url": "https://www.oasis-open.org/policies-guidelines/ipr", + "spdx_license_key": "LicenseRef-scancode-oasis-ipr-policy-2014", + "ignorable_copyrights": [ + "Copyright (c) OASIS Open" + ], + "ignorable_holders": [ + "OASIS Open" + ], + "ignorable_urls": [ + "http://www.oasis-open.org/policies-guidelines/ipr", + "http://www.oasis-open.org/who/intellectualproperty.php" + ] +} \ No newline at end of file diff --git a/docs/oasis-ws-security-spec.LICENSE b/docs/oasis-ws-security-spec.LICENSE index 56e6bafe06..1af4bc78cc 100644 --- a/docs/oasis-ws-security-spec.LICENSE +++ b/docs/oasis-ws-security-spec.LICENSE @@ -1,3 +1,19 @@ +--- +key: oasis-ws-security-spec +short_name: Oasis WS Security Specification License +name: Oasis WS Security Specification License +category: Permissive +owner: OASIS +homepage_url: http://www.oasis-open.org/org +spdx_license_key: LicenseRef-scancode-oasis-ws-security-spec +text_urls: + - http://www.oasis-open.org/org +ignorable_copyrights: + - Copyright (c) OASIS Open 2002-2004 +ignorable_holders: + - OASIS Open +--- + Oasis WS Security Specification License OASIS takes no position regarding the validity or scope of any intellectual diff --git a/docs/oasis-ws-security-spec.html b/docs/oasis-ws-security-spec.html index dd7e94c6d0..b2d1248b66 100644 --- a/docs/oasis-ws-security-spec.html +++ b/docs/oasis-ws-security-spec.html @@ -191,7 +191,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oasis-ws-security-spec.json b/docs/oasis-ws-security-spec.json index c6bf91601c..158ed194eb 100644 --- a/docs/oasis-ws-security-spec.json +++ b/docs/oasis-ws-security-spec.json @@ -1 +1,18 @@ -{"key": "oasis-ws-security-spec", "short_name": "Oasis WS Security Specification License", "name": "Oasis WS Security Specification License", "category": "Permissive", "owner": "OASIS", "homepage_url": "http://www.oasis-open.org/org", "spdx_license_key": "LicenseRef-scancode-oasis-ws-security-spec", "text_urls": ["http://www.oasis-open.org/org"], "ignorable_copyrights": ["Copyright (c) OASIS Open 2002-2004"], "ignorable_holders": ["OASIS Open"]} \ No newline at end of file +{ + "key": "oasis-ws-security-spec", + "short_name": "Oasis WS Security Specification License", + "name": "Oasis WS Security Specification License", + "category": "Permissive", + "owner": "OASIS", + "homepage_url": "http://www.oasis-open.org/org", + "spdx_license_key": "LicenseRef-scancode-oasis-ws-security-spec", + "text_urls": [ + "http://www.oasis-open.org/org" + ], + "ignorable_copyrights": [ + "Copyright (c) OASIS Open 2002-2004" + ], + "ignorable_holders": [ + "OASIS Open" + ] +} \ No newline at end of file diff --git a/docs/ocaml-lgpl-linking-exception.LICENSE b/docs/ocaml-lgpl-linking-exception.LICENSE index b0e1881df2..836c07775b 100644 --- a/docs/ocaml-lgpl-linking-exception.LICENSE +++ b/docs/ocaml-lgpl-linking-exception.LICENSE @@ -1,3 +1,16 @@ +--- +key: ocaml-lgpl-linking-exception +short_name: OCaml LGPL Linking Exception +name: OCaml LGPL Linking Exception +category: Copyleft Limited +owner: OCaml +homepage_url: https://caml.inria.fr/ocaml/license.en.html +is_exception: yes +spdx_license_key: OCaml-LGPL-linking-exception +other_urls: + - https://caml.inria.fr/ocaml/license.en.html +--- + OCaml LGPL Linking Exception As a special exception to the GNU Lesser General Public License, you may link, diff --git a/docs/ocaml-lgpl-linking-exception.html b/docs/ocaml-lgpl-linking-exception.html index a0393f865c..eba06c0310 100644 --- a/docs/ocaml-lgpl-linking-exception.html +++ b/docs/ocaml-lgpl-linking-exception.html @@ -156,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ocaml-lgpl-linking-exception.json b/docs/ocaml-lgpl-linking-exception.json index 7d230a0793..048c756c5f 100644 --- a/docs/ocaml-lgpl-linking-exception.json +++ b/docs/ocaml-lgpl-linking-exception.json @@ -1 +1,13 @@ -{"key": "ocaml-lgpl-linking-exception", "short_name": "OCaml LGPL Linking Exception", "name": "OCaml LGPL Linking Exception", "category": "Copyleft Limited", "owner": "OCaml", "homepage_url": "https://caml.inria.fr/ocaml/license.en.html", "is_exception": true, "spdx_license_key": "OCaml-LGPL-linking-exception", "other_urls": ["https://caml.inria.fr/ocaml/license.en.html"]} \ No newline at end of file +{ + "key": "ocaml-lgpl-linking-exception", + "short_name": "OCaml LGPL Linking Exception", + "name": "OCaml LGPL Linking Exception", + "category": "Copyleft Limited", + "owner": "OCaml", + "homepage_url": "https://caml.inria.fr/ocaml/license.en.html", + "is_exception": true, + "spdx_license_key": "OCaml-LGPL-linking-exception", + "other_urls": [ + "https://caml.inria.fr/ocaml/license.en.html" + ] +} \ No newline at end of file diff --git a/docs/ocb-non-military-2013.LICENSE b/docs/ocb-non-military-2013.LICENSE index 81497763de..b171a2a6c2 100644 --- a/docs/ocb-non-military-2013.LICENSE +++ b/docs/ocb-non-military-2013.LICENSE @@ -1,3 +1,15 @@ +--- +key: ocb-non-military-2013 +short_name: OCB for Non-MilitarySoftware Implementations2013 +name: License for Non-MilitarySoftware Implementations of OCB 2013 +category: Proprietary Free +owner: Phillip Rogaway +homepage_url: https://web.cs.ucdavis.edu/~rogaway/ocb/license.htm +spdx_license_key: LicenseRef-scancode-ocb-non-military-2013 +text_urls: + - https://web.cs.ucdavis.edu/~rogaway/ocb/license2.pdf +--- + License for Non-Military Software Implementations of OCB January 10, 2013 1 Definitions @@ -24,5 +36,4 @@ If you or your affiliates institute patent litigation (including, but not limite 3 Disclaimer -YOUR USE OF THE LICENSED PATENTS IS AT YOUR OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELATED TO ANY USE OF THE LICENSED PATENTS, INCLUDING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. - +YOUR USE OF THE LICENSED PATENTS IS AT YOUR OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELATED TO ANY USE OF THE LICENSED PATENTS, INCLUDING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. \ No newline at end of file diff --git a/docs/ocb-non-military-2013.html b/docs/ocb-non-military-2013.html index 49c3b8dd34..900f469a85 100644 --- a/docs/ocb-non-military-2013.html +++ b/docs/ocb-non-military-2013.html @@ -150,9 +150,7 @@ 3 Disclaimer -YOUR USE OF THE LICENSED PATENTS IS AT YOUR OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELATED TO ANY USE OF THE LICENSED PATENTS, INCLUDING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. - - +YOUR USE OF THE LICENSED PATENTS IS AT YOUR OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELATED TO ANY USE OF THE LICENSED PATENTS, INCLUDING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE.
@@ -164,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ocb-non-military-2013.json b/docs/ocb-non-military-2013.json index be2c4ef864..90c3da2d38 100644 --- a/docs/ocb-non-military-2013.json +++ b/docs/ocb-non-military-2013.json @@ -1 +1,12 @@ -{"key": "ocb-non-military-2013", "short_name": "OCB for Non-MilitarySoftware Implementations2013", "name": "License for Non-MilitarySoftware Implementations of OCB 2013", "category": "Proprietary Free", "owner": "Phillip Rogaway", "homepage_url": "https://web.cs.ucdavis.edu/~rogaway/ocb/license.htm", "spdx_license_key": "LicenseRef-scancode-ocb-non-military-2013", "text_urls": ["https://web.cs.ucdavis.edu/~rogaway/ocb/license2.pdf"]} \ No newline at end of file +{ + "key": "ocb-non-military-2013", + "short_name": "OCB for Non-MilitarySoftware Implementations2013", + "name": "License for Non-MilitarySoftware Implementations of OCB 2013", + "category": "Proprietary Free", + "owner": "Phillip Rogaway", + "homepage_url": "https://web.cs.ucdavis.edu/~rogaway/ocb/license.htm", + "spdx_license_key": "LicenseRef-scancode-ocb-non-military-2013", + "text_urls": [ + "https://web.cs.ucdavis.edu/~rogaway/ocb/license2.pdf" + ] +} \ No newline at end of file diff --git a/docs/ocb-open-source-2013.LICENSE b/docs/ocb-open-source-2013.LICENSE index 32cac8da98..835fd0deab 100644 --- a/docs/ocb-open-source-2013.LICENSE +++ b/docs/ocb-open-source-2013.LICENSE @@ -1,3 +1,15 @@ +--- +key: ocb-open-source-2013 +short_name: OCB for OpenSource 2013 +name: License for OpenSource Software Implementations of OCB 2013 +category: Proprietary Free +owner: Phillip Rogaway +homepage_url: https://web.cs.ucdavis.edu/~rogaway/ocb/license.htm +spdx_license_key: LicenseRef-scancode-ocb-open-source-2013 +text_urls: + - https://web.cs.ucdavis.edu/~rogaway/ocb/license1.pdf +--- + License for Open Source Software Implementations of OCB January 9, 2013 1 Definitions @@ -12,4 +24,4 @@ January 9, 2013 royalty-free, irrevocable license to practice any invention claimed in the Licensed Patents in any Open Source Software Implementation. 2.2 Restriction. If you or your affiliates institute patent litigation (including, but not limited to, a cross-claim or counterclaim in a lawsuit) against any entity alleging that any Use authorized by this license infringes another patent, then any rights granted to you under this license automatically terminate as of the date such litigation is filed. 3 Disclaimer -YOUR USE OF THE LICENSED PATENTS IS AT YOUR OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELATED TO ANY USE OF THE LICENSED PATENTS, INCLUDING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. +YOUR USE OF THE LICENSED PATENTS IS AT YOUR OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELATED TO ANY USE OF THE LICENSED PATENTS, INCLUDING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. \ No newline at end of file diff --git a/docs/ocb-open-source-2013.html b/docs/ocb-open-source-2013.html index 69c4164435..de9368ffc9 100644 --- a/docs/ocb-open-source-2013.html +++ b/docs/ocb-open-source-2013.html @@ -138,8 +138,7 @@ royalty-free, irrevocable license to practice any invention claimed in the Licensed Patents in any Open Source Software Implementation. 2.2 Restriction. If you or your affiliates institute patent litigation (including, but not limited to, a cross-claim or counterclaim in a lawsuit) against any entity alleging that any Use authorized by this license infringes another patent, then any rights granted to you under this license automatically terminate as of the date such litigation is filed. 3 Disclaimer -YOUR USE OF THE LICENSED PATENTS IS AT YOUR OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELATED TO ANY USE OF THE LICENSED PATENTS, INCLUDING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. - +YOUR USE OF THE LICENSED PATENTS IS AT YOUR OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELATED TO ANY USE OF THE LICENSED PATENTS, INCLUDING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE.
@@ -151,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ocb-open-source-2013.json b/docs/ocb-open-source-2013.json index cf52dd8b40..cba004f476 100644 --- a/docs/ocb-open-source-2013.json +++ b/docs/ocb-open-source-2013.json @@ -1 +1,12 @@ -{"key": "ocb-open-source-2013", "short_name": "OCB for OpenSource 2013", "name": "License for OpenSource Software Implementations of OCB 2013", "category": "Proprietary Free", "owner": "Phillip Rogaway", "homepage_url": "https://web.cs.ucdavis.edu/~rogaway/ocb/license.htm", "spdx_license_key": "LicenseRef-scancode-ocb-open-source-2013", "text_urls": ["https://web.cs.ucdavis.edu/~rogaway/ocb/license1.pdf"]} \ No newline at end of file +{ + "key": "ocb-open-source-2013", + "short_name": "OCB for OpenSource 2013", + "name": "License for OpenSource Software Implementations of OCB 2013", + "category": "Proprietary Free", + "owner": "Phillip Rogaway", + "homepage_url": "https://web.cs.ucdavis.edu/~rogaway/ocb/license.htm", + "spdx_license_key": "LicenseRef-scancode-ocb-open-source-2013", + "text_urls": [ + "https://web.cs.ucdavis.edu/~rogaway/ocb/license1.pdf" + ] +} \ No newline at end of file diff --git a/docs/ocb-patent-openssl-2013.LICENSE b/docs/ocb-patent-openssl-2013.LICENSE index b16e6a9608..8a749dcab6 100644 --- a/docs/ocb-patent-openssl-2013.LICENSE +++ b/docs/ocb-patent-openssl-2013.LICENSE @@ -1,3 +1,15 @@ +--- +key: ocb-patent-openssl-2013 +short_name: OCB Patent License for OpenSSL 2013 +name: Patent License for OpenSSL of OCB 2013 +category: Proprietary Free +owner: Phillip Rogaway +homepage_url: https://web.cs.ucdavis.edu/~rogaway/ocb/license.htm +spdx_license_key: LicenseRef-scancode-ocb-patent-openssl-2013 +text_urls: + - https://web.cs.ucdavis.edu/~rogaway/ocb/license3.pdf +--- + Patent License for OpenSSL 1. Definitions 1.1 " Licensor" means Phillip Rogaway. orOne Shields Avenue, Davis, CA 95616-8562. @@ -10,5 +22,4 @@ Patent License for OpenSSL 3. 1 LICENSEE'S USE OF THE LICENSED PATENTS IS AT LICENSEE'S OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNfNG THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDfNG, WITHOUT LIM ITATION, WARRANTIES OF TITLE, MERCHANTIB ILlTY, FITNESS FOR A PARTICULAR PURPOSE, OR NON INFRfNGEMENT. fN NO EVENT W ILL LICENSOR BE LIABLE FOR ANY CLA IM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELAT ED TO ANY USE OF THE LICENSED PATENTS, INCLUD ING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADV ISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. Dated: November 13, 2013 -Phillip Rogaway - +Phillip Rogaway \ No newline at end of file diff --git a/docs/ocb-patent-openssl-2013.html b/docs/ocb-patent-openssl-2013.html index 7f6cad2406..594c301ab1 100644 --- a/docs/ocb-patent-openssl-2013.html +++ b/docs/ocb-patent-openssl-2013.html @@ -136,9 +136,7 @@ 3. 1 LICENSEE'S USE OF THE LICENSED PATENTS IS AT LICENSEE'S OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNfNG THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDfNG, WITHOUT LIM ITATION, WARRANTIES OF TITLE, MERCHANTIB ILlTY, FITNESS FOR A PARTICULAR PURPOSE, OR NON INFRfNGEMENT. fN NO EVENT W ILL LICENSOR BE LIABLE FOR ANY CLA IM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELAT ED TO ANY USE OF THE LICENSED PATENTS, INCLUD ING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADV ISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. Dated: November 13, 2013 -Phillip Rogaway - - +Phillip Rogaway
@@ -150,7 +148,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ocb-patent-openssl-2013.json b/docs/ocb-patent-openssl-2013.json index 219d38abe4..8fac77ddfe 100644 --- a/docs/ocb-patent-openssl-2013.json +++ b/docs/ocb-patent-openssl-2013.json @@ -1 +1,12 @@ -{"key": "ocb-patent-openssl-2013", "short_name": "OCB Patent License for OpenSSL 2013", "name": "Patent License for OpenSSL of OCB 2013", "category": "Proprietary Free", "owner": "Phillip Rogaway", "homepage_url": "https://web.cs.ucdavis.edu/~rogaway/ocb/license.htm", "spdx_license_key": "LicenseRef-scancode-ocb-patent-openssl-2013", "text_urls": ["https://web.cs.ucdavis.edu/~rogaway/ocb/license3.pdf"]} \ No newline at end of file +{ + "key": "ocb-patent-openssl-2013", + "short_name": "OCB Patent License for OpenSSL 2013", + "name": "Patent License for OpenSSL of OCB 2013", + "category": "Proprietary Free", + "owner": "Phillip Rogaway", + "homepage_url": "https://web.cs.ucdavis.edu/~rogaway/ocb/license.htm", + "spdx_license_key": "LicenseRef-scancode-ocb-patent-openssl-2013", + "text_urls": [ + "https://web.cs.ucdavis.edu/~rogaway/ocb/license3.pdf" + ] +} \ No newline at end of file diff --git a/docs/occt-exception-1.0.LICENSE b/docs/occt-exception-1.0.LICENSE index 3a7232fc5e..714ae58237 100644 --- a/docs/occt-exception-1.0.LICENSE +++ b/docs/occt-exception-1.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: occt-exception-1.0 +short_name: Open CASCADE Exception to LGPL 2.1 +name: Open CASCADE Exception to LGPL 2.1 +category: Copyleft Limited +owner: Open Cascade +homepage_url: https://www.opencascade.com/content/licensing +is_exception: yes +spdx_license_key: OCCT-exception-1.0 +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt + - http://www.opencascade.com/content/licensing +standard_notice: | + Open CASCADE Exception (version 1.0) to GNU LGPL version 2.1. + The object code (i.e. not a source) form of a "work that uses the Library" + can incorporate material from a header file that is part of the Library. As + a special exception to the GNU Lesser General Public License version 2.1, + you may distribute such object code incorporating material from header + files provided with the Open CASCADE Technology libraries (including code + of CDL generic classes) under terms of your choice, provided that you give + prominent notice in supporting documentation to this code that it makes use + of or is based on facilities provided by the Open CASCADE Technology + software. +--- + Open CASCADE Exception (version 1.0) to GNU LGPL version 2.1. The object code (i.e. not a source) form of a "work that uses the Library" can incorporate material from a header file that is part of the Library. As a special exception to the GNU Lesser General Public License version 2.1, you may distribute such object code incorporating material from header files provided with the Open CASCADE Technology libraries (including code of CDL generic classes) under terms of your choice, provided that you give prominent notice in supporting documentation to this code that it makes use of or is based on facilities provided by the Open CASCADE Technology software. \ No newline at end of file diff --git a/docs/occt-exception-1.0.html b/docs/occt-exception-1.0.html index d5910c79ca..f31fd9301b 100644 --- a/docs/occt-exception-1.0.html +++ b/docs/occt-exception-1.0.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/occt-exception-1.0.json b/docs/occt-exception-1.0.json index e02a27d5a6..b84cc3f168 100644 --- a/docs/occt-exception-1.0.json +++ b/docs/occt-exception-1.0.json @@ -1 +1,15 @@ -{"key": "occt-exception-1.0", "short_name": "Open CASCADE Exception to LGPL 2.1", "name": "Open CASCADE Exception to LGPL 2.1", "category": "Copyleft Limited", "owner": "Open Cascade", "homepage_url": "https://www.opencascade.com/content/licensing", "is_exception": true, "spdx_license_key": "OCCT-exception-1.0", "other_urls": ["http://www.gnu.org/licenses/lgpl-2.1.txt", "http://www.opencascade.com/content/licensing"], "standard_notice": "Open CASCADE Exception (version 1.0) to GNU LGPL version 2.1.\nThe object code (i.e. not a source) form of a \"work that uses the Library\"\ncan incorporate material from a header file that is part of the Library. As\na special exception to the GNU Lesser General Public License version 2.1,\nyou may distribute such object code incorporating material from header\nfiles provided with the Open CASCADE Technology libraries (including code\nof CDL generic classes) under terms of your choice, provided that you give\nprominent notice in supporting documentation to this code that it makes use\nof or is based on facilities provided by the Open CASCADE Technology\nsoftware.\n"} \ No newline at end of file +{ + "key": "occt-exception-1.0", + "short_name": "Open CASCADE Exception to LGPL 2.1", + "name": "Open CASCADE Exception to LGPL 2.1", + "category": "Copyleft Limited", + "owner": "Open Cascade", + "homepage_url": "https://www.opencascade.com/content/licensing", + "is_exception": true, + "spdx_license_key": "OCCT-exception-1.0", + "other_urls": [ + "http://www.gnu.org/licenses/lgpl-2.1.txt", + "http://www.opencascade.com/content/licensing" + ], + "standard_notice": "Open CASCADE Exception (version 1.0) to GNU LGPL version 2.1.\nThe object code (i.e. not a source) form of a \"work that uses the Library\"\ncan incorporate material from a header file that is part of the Library. As\na special exception to the GNU Lesser General Public License version 2.1,\nyou may distribute such object code incorporating material from header\nfiles provided with the Open CASCADE Technology libraries (including code\nof CDL generic classes) under terms of your choice, provided that you give\nprominent notice in supporting documentation to this code that it makes use\nof or is based on facilities provided by the Open CASCADE Technology\nsoftware.\n" +} \ No newline at end of file diff --git a/docs/occt-pl.LICENSE b/docs/occt-pl.LICENSE index 4b1e495449..cd35e36cfd 100644 --- a/docs/occt-pl.LICENSE +++ b/docs/occt-pl.LICENSE @@ -1,3 +1,19 @@ +--- +key: occt-pl +short_name: OCCT-PL +name: Open CASCADE Technology Public License +category: Copyleft Limited +owner: Open Cascade +homepage_url: http://www.opencascade.com/content/occt-public-license +spdx_license_key: OCCT-PL +ignorable_copyrights: + - copyright (c) OPEN CASCADE SAS, 2001 + - copyright (c) Open CASCADE SAS, 2001 +ignorable_holders: + - OPEN CASCADE SAS + - Open CASCADE SAS +--- + Open CASCADE Technology Public License Version 6.6, April 2013 OPEN CASCADE releases and makes publicly available the source code of the software Open CASCADE Technology to the free software development community under the terms and conditions of this license. diff --git a/docs/occt-pl.html b/docs/occt-pl.html index 62be695907..2d7fd34983 100644 --- a/docs/occt-pl.html +++ b/docs/occt-pl.html @@ -255,7 +255,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/occt-pl.json b/docs/occt-pl.json index b1901e5871..f9a0111cb6 100644 --- a/docs/occt-pl.json +++ b/docs/occt-pl.json @@ -1 +1,17 @@ -{"key": "occt-pl", "short_name": "OCCT-PL", "name": "Open CASCADE Technology Public License", "category": "Copyleft Limited", "owner": "Open Cascade", "homepage_url": "http://www.opencascade.com/content/occt-public-license", "spdx_license_key": "OCCT-PL", "ignorable_copyrights": ["copyright (c) OPEN CASCADE SAS, 2001", "copyright (c) Open CASCADE SAS, 2001"], "ignorable_holders": ["OPEN CASCADE SAS", "Open CASCADE SAS"]} \ No newline at end of file +{ + "key": "occt-pl", + "short_name": "OCCT-PL", + "name": "Open CASCADE Technology Public License", + "category": "Copyleft Limited", + "owner": "Open Cascade", + "homepage_url": "http://www.opencascade.com/content/occt-public-license", + "spdx_license_key": "OCCT-PL", + "ignorable_copyrights": [ + "copyright (c) OPEN CASCADE SAS, 2001", + "copyright (c) Open CASCADE SAS, 2001" + ], + "ignorable_holders": [ + "OPEN CASCADE SAS", + "Open CASCADE SAS" + ] +} \ No newline at end of file diff --git a/docs/oclc-1.0.LICENSE b/docs/oclc-1.0.LICENSE index 955be4278a..c8f952642e 100644 --- a/docs/oclc-1.0.LICENSE +++ b/docs/oclc-1.0.LICENSE @@ -1,3 +1,24 @@ +--- +key: oclc-1.0 +short_name: OCLC Research Public License 1.0 +name: OCLC Research Public License 1.0 +category: Copyleft Limited +owner: OCLC Research +homepage_url: http://www.free-soft.org/mirrors/www.opensource.org/licenses/oclc.php +spdx_license_key: LicenseRef-scancode-oclc-1.0 +text_urls: + - http://www.free-soft.org/mirrors/www.opensource.org/licenses/oclc.php +ignorable_copyrights: + - Copyright (c) 2000- (insert then current year) OCLC OCLC Research and others + - Copyright (c) 2000. OCLC Research +ignorable_holders: + - OCLC OCLC Research and others + - OCLC Research +ignorable_urls: + - http://purl.oclc.org/oclc/research/ORPL + - http://www.oclc.org/oclc/research +--- + OCLC Research Public License 1.0 Terms & Conditions Of Use November, 2000 diff --git a/docs/oclc-1.0.html b/docs/oclc-1.0.html index e892b3f7da..0b9148e6de 100644 --- a/docs/oclc-1.0.html +++ b/docs/oclc-1.0.html @@ -219,7 +219,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oclc-1.0.json b/docs/oclc-1.0.json index ee03453a17..f399de06df 100644 --- a/docs/oclc-1.0.json +++ b/docs/oclc-1.0.json @@ -1 +1,24 @@ -{"key": "oclc-1.0", "short_name": "OCLC Research Public License 1.0", "name": "OCLC Research Public License 1.0", "category": "Copyleft Limited", "owner": "OCLC Research", "homepage_url": "http://www.free-soft.org/mirrors/www.opensource.org/licenses/oclc.php", "spdx_license_key": "LicenseRef-scancode-oclc-1.0", "text_urls": ["http://www.free-soft.org/mirrors/www.opensource.org/licenses/oclc.php"], "ignorable_copyrights": ["Copyright (c) 2000- (insert then current year) OCLC OCLC Research and others", "Copyright (c) 2000. OCLC Research"], "ignorable_holders": ["OCLC OCLC Research and others", "OCLC Research"], "ignorable_urls": ["http://purl.oclc.org/oclc/research/ORPL", "http://www.oclc.org/oclc/research"]} \ No newline at end of file +{ + "key": "oclc-1.0", + "short_name": "OCLC Research Public License 1.0", + "name": "OCLC Research Public License 1.0", + "category": "Copyleft Limited", + "owner": "OCLC Research", + "homepage_url": "http://www.free-soft.org/mirrors/www.opensource.org/licenses/oclc.php", + "spdx_license_key": "LicenseRef-scancode-oclc-1.0", + "text_urls": [ + "http://www.free-soft.org/mirrors/www.opensource.org/licenses/oclc.php" + ], + "ignorable_copyrights": [ + "Copyright (c) 2000- (insert then current year) OCLC OCLC Research and others", + "Copyright (c) 2000. OCLC Research" + ], + "ignorable_holders": [ + "OCLC OCLC Research and others", + "OCLC Research" + ], + "ignorable_urls": [ + "http://purl.oclc.org/oclc/research/ORPL", + "http://www.oclc.org/oclc/research" + ] +} \ No newline at end of file diff --git a/docs/oclc-2.0.LICENSE b/docs/oclc-2.0.LICENSE index dd51133b5b..d4ac6eaeb1 100644 --- a/docs/oclc-2.0.LICENSE +++ b/docs/oclc-2.0.LICENSE @@ -1,3 +1,34 @@ +--- +key: oclc-2.0 +short_name: OCLC Research Public License 2.0 +name: OCLC Research Public License 2.0 +category: Copyleft Limited +owner: OCLC Research +homepage_url: http://opensource.org/licenses/oclc2.php +notes: | + Per SPDX.org, this license is OSI certified. This license was released May + 2002 +spdx_license_key: OCLC-2.0 +osi_license_key: OCLC-2.0 +text_urls: + - http://opensource.org/licenses/oclc2.php +osi_url: http://opensource.org/licenses/oclc2.php +other_urls: + - http://www.oclc.org/research/activities/software/license/v2final.htm + - http://www.opensource.org/licenses/OCLC-2.0 + - https://opensource.org/licenses/OCLC-2.0 +ignorable_copyrights: + - Copyright (c) 2000- (insert then current year) OCLC Online Computer Library Center, Inc. + and other contributors + - Copyright (c) 2002. OCLC Research +ignorable_holders: + - OCLC Online Computer Library Center, Inc. and other contributors + - OCLC Research +ignorable_urls: + - http://purl.oclc.org/oclc/research/ORPL + - http://www.oclc.org/oclc/research +--- + OCLC Research Public License 2.0 Terms & Conditions Of Use May, 2002 diff --git a/docs/oclc-2.0.html b/docs/oclc-2.0.html index 180aeff816..9f48f443f1 100644 --- a/docs/oclc-2.0.html +++ b/docs/oclc-2.0.html @@ -379,7 +379,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oclc-2.0.json b/docs/oclc-2.0.json index 0dd89e9a32..b69311537c 100644 --- a/docs/oclc-2.0.json +++ b/docs/oclc-2.0.json @@ -1 +1,32 @@ -{"key": "oclc-2.0", "short_name": "OCLC Research Public License 2.0", "name": "OCLC Research Public License 2.0", "category": "Copyleft Limited", "owner": "OCLC Research", "homepage_url": "http://opensource.org/licenses/oclc2.php", "notes": "Per SPDX.org, this license is OSI certified. This license was released May\n2002\n", "spdx_license_key": "OCLC-2.0", "osi_license_key": "OCLC-2.0", "text_urls": ["http://opensource.org/licenses/oclc2.php"], "osi_url": "http://opensource.org/licenses/oclc2.php", "other_urls": ["http://www.oclc.org/research/activities/software/license/v2final.htm", "http://www.opensource.org/licenses/OCLC-2.0", "https://opensource.org/licenses/OCLC-2.0"], "ignorable_copyrights": ["Copyright (c) 2000- (insert then current year) OCLC Online Computer Library Center, Inc. and other contributors", "Copyright (c) 2002. OCLC Research"], "ignorable_holders": ["OCLC Online Computer Library Center, Inc. and other contributors", "OCLC Research"], "ignorable_urls": ["http://purl.oclc.org/oclc/research/ORPL", "http://www.oclc.org/oclc/research"]} \ No newline at end of file +{ + "key": "oclc-2.0", + "short_name": "OCLC Research Public License 2.0", + "name": "OCLC Research Public License 2.0", + "category": "Copyleft Limited", + "owner": "OCLC Research", + "homepage_url": "http://opensource.org/licenses/oclc2.php", + "notes": "Per SPDX.org, this license is OSI certified. This license was released May\n2002\n", + "spdx_license_key": "OCLC-2.0", + "osi_license_key": "OCLC-2.0", + "text_urls": [ + "http://opensource.org/licenses/oclc2.php" + ], + "osi_url": "http://opensource.org/licenses/oclc2.php", + "other_urls": [ + "http://www.oclc.org/research/activities/software/license/v2final.htm", + "http://www.opensource.org/licenses/OCLC-2.0", + "https://opensource.org/licenses/OCLC-2.0" + ], + "ignorable_copyrights": [ + "Copyright (c) 2000- (insert then current year) OCLC Online Computer Library Center, Inc. and other contributors", + "Copyright (c) 2002. OCLC Research" + ], + "ignorable_holders": [ + "OCLC Online Computer Library Center, Inc. and other contributors", + "OCLC Research" + ], + "ignorable_urls": [ + "http://purl.oclc.org/oclc/research/ORPL", + "http://www.oclc.org/oclc/research" + ] +} \ No newline at end of file diff --git a/docs/ocsl-1.0.LICENSE b/docs/ocsl-1.0.LICENSE index afa60a3aab..62f5d3d4ec 100644 --- a/docs/ocsl-1.0.LICENSE +++ b/docs/ocsl-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: ocsl-1.0 +short_name: OCSL 1.0 +name: Oracle Community Source License v1.0 +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: https://oss.oracle.com/licenses/OCSL +spdx_license_key: LicenseRef-scancode-ocsl-1.0 +ignorable_copyrights: + - Copyright 1999, 2000 Oracle Corporation +ignorable_holders: + - Oracle Corporation +--- + Version 1.0 ORACLE COMMUNITY SOURCE LICENSE @@ -45,6 +59,4 @@ You agree to comply fully with all laws and regulations of the United States and If any provision or provisions of this Agreement shall be held to be invalid, illegal or unenforceable, the validity, legality and enforceability of the remaining provisions shall not in any way be affected or impaired thereby. This Agreement will be governed by and construed under the laws of the State of California, without giving effect to such state's conflict of law principles. Any legal action or proceeding relating to this Agreement shall be instituted in a state or federal court in San Francisco or San Mateo County, California. You agree to submit to the jurisdiction of, and agree that venue is proper in, these courts in any such legal action or proceeding. -This Agreement constitutes the entire agreement of the parties concerning its subject matter and supersedes any and all prior or contemporaneous, written or oral negotiations, correspondence, understandings and agreements between the parties respecting the subject matter of this Agreement. Only Oracle may modify this Agreement. Oracle may choose to publish new versions of this Agreement from time to time. Each new version of this Agreement will be given a distinguishing version number. The Program may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, You may elect to distribute the Program under the new version. The failure of Oracle to enforce any of the provisions of this Agreement shall not be construed to be a waiver of the right of Oracle to later enforce such provisions. - - +This Agreement constitutes the entire agreement of the parties concerning its subject matter and supersedes any and all prior or contemporaneous, written or oral negotiations, correspondence, understandings and agreements between the parties respecting the subject matter of this Agreement. Only Oracle may modify this Agreement. Oracle may choose to publish new versions of this Agreement from time to time. Each new version of this Agreement will be given a distinguishing version number. The Program may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, You may elect to distribute the Program under the new version. The failure of Oracle to enforce any of the provisions of this Agreement shall not be construed to be a waiver of the right of Oracle to later enforce such provisions. \ No newline at end of file diff --git a/docs/ocsl-1.0.html b/docs/ocsl-1.0.html index 025d43a2bb..922bfb99fe 100644 --- a/docs/ocsl-1.0.html +++ b/docs/ocsl-1.0.html @@ -180,10 +180,7 @@ If any provision or provisions of this Agreement shall be held to be invalid, illegal or unenforceable, the validity, legality and enforceability of the remaining provisions shall not in any way be affected or impaired thereby. This Agreement will be governed by and construed under the laws of the State of California, without giving effect to such state's conflict of law principles. Any legal action or proceeding relating to this Agreement shall be instituted in a state or federal court in San Francisco or San Mateo County, California. You agree to submit to the jurisdiction of, and agree that venue is proper in, these courts in any such legal action or proceeding. -This Agreement constitutes the entire agreement of the parties concerning its subject matter and supersedes any and all prior or contemporaneous, written or oral negotiations, correspondence, understandings and agreements between the parties respecting the subject matter of this Agreement. Only Oracle may modify this Agreement. Oracle may choose to publish new versions of this Agreement from time to time. Each new version of this Agreement will be given a distinguishing version number. The Program may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, You may elect to distribute the Program under the new version. The failure of Oracle to enforce any of the provisions of this Agreement shall not be construed to be a waiver of the right of Oracle to later enforce such provisions. - - - +This Agreement constitutes the entire agreement of the parties concerning its subject matter and supersedes any and all prior or contemporaneous, written or oral negotiations, correspondence, understandings and agreements between the parties respecting the subject matter of this Agreement. Only Oracle may modify this Agreement. Oracle may choose to publish new versions of this Agreement from time to time. Each new version of this Agreement will be given a distinguishing version number. The Program may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, You may elect to distribute the Program under the new version. The failure of Oracle to enforce any of the provisions of this Agreement shall not be construed to be a waiver of the right of Oracle to later enforce such provisions.
@@ -195,7 +192,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ocsl-1.0.json b/docs/ocsl-1.0.json index c1e948353b..18eca14973 100644 --- a/docs/ocsl-1.0.json +++ b/docs/ocsl-1.0.json @@ -1 +1,15 @@ -{"key": "ocsl-1.0", "short_name": "OCSL 1.0", "name": "Oracle Community Source License v1.0", "category": "Copyleft Limited", "owner": "Oracle Corporation", "homepage_url": "https://oss.oracle.com/licenses/OCSL", "spdx_license_key": "LicenseRef-scancode-ocsl-1.0", "ignorable_copyrights": ["Copyright 1999, 2000 Oracle Corporation"], "ignorable_holders": ["Oracle Corporation"]} \ No newline at end of file +{ + "key": "ocsl-1.0", + "short_name": "OCSL 1.0", + "name": "Oracle Community Source License v1.0", + "category": "Copyleft Limited", + "owner": "Oracle Corporation", + "homepage_url": "https://oss.oracle.com/licenses/OCSL", + "spdx_license_key": "LicenseRef-scancode-ocsl-1.0", + "ignorable_copyrights": [ + "Copyright 1999, 2000 Oracle Corporation" + ], + "ignorable_holders": [ + "Oracle Corporation" + ] +} \ No newline at end of file diff --git a/docs/oculus-sdk-2020.LICENSE b/docs/oculus-sdk-2020.LICENSE index f858916448..f2828d3e42 100644 --- a/docs/oculus-sdk-2020.LICENSE +++ b/docs/oculus-sdk-2020.LICENSE @@ -1,3 +1,23 @@ +--- +key: oculus-sdk-2020 +short_name: Oculus SDK License Agreement 2020 +name: Oculus SDK License Agreement 2020 +category: Proprietary Free +owner: Facebook +homepage_url: https://developer.oculus.com/licenses/oculussdk/ +spdx_license_key: LicenseRef-scancode-oculus-sdk-2020 +other_urls: + - https://developer.oculus.com/downloads/ +ignorable_copyrights: + - (c) Facebook Technologies, LLC and its affiliates + - Copyright (c) Facebook Technologies, LLC and its affiliates +ignorable_holders: + - Facebook Technologies, LLC and its affiliates +ignorable_urls: + - https://developer.oculus.com/ + - https://developer.oculus.com/licenses/oculussdk/ +--- + Oculus SDK License Agreement Effective date: 10/13/2020 diff --git a/docs/oculus-sdk-2020.html b/docs/oculus-sdk-2020.html index 799149bfd7..bf965b4d06 100644 --- a/docs/oculus-sdk-2020.html +++ b/docs/oculus-sdk-2020.html @@ -295,7 +295,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oculus-sdk-2020.json b/docs/oculus-sdk-2020.json index 7179558545..1bf4c0d0aa 100644 --- a/docs/oculus-sdk-2020.json +++ b/docs/oculus-sdk-2020.json @@ -1 +1,23 @@ -{"key": "oculus-sdk-2020", "short_name": "Oculus SDK License Agreement 2020", "name": "Oculus SDK License Agreement 2020", "category": "Proprietary Free", "owner": "Facebook", "homepage_url": "https://developer.oculus.com/licenses/oculussdk/", "spdx_license_key": "LicenseRef-scancode-oculus-sdk-2020", "other_urls": ["https://developer.oculus.com/downloads/"], "ignorable_copyrights": ["(c) Facebook Technologies, LLC and its affiliates", "Copyright (c) Facebook Technologies, LLC and its affiliates"], "ignorable_holders": ["Facebook Technologies, LLC and its affiliates"], "ignorable_urls": ["https://developer.oculus.com/", "https://developer.oculus.com/licenses/oculussdk/"]} \ No newline at end of file +{ + "key": "oculus-sdk-2020", + "short_name": "Oculus SDK License Agreement 2020", + "name": "Oculus SDK License Agreement 2020", + "category": "Proprietary Free", + "owner": "Facebook", + "homepage_url": "https://developer.oculus.com/licenses/oculussdk/", + "spdx_license_key": "LicenseRef-scancode-oculus-sdk-2020", + "other_urls": [ + "https://developer.oculus.com/downloads/" + ], + "ignorable_copyrights": [ + "(c) Facebook Technologies, LLC and its affiliates", + "Copyright (c) Facebook Technologies, LLC and its affiliates" + ], + "ignorable_holders": [ + "Facebook Technologies, LLC and its affiliates" + ], + "ignorable_urls": [ + "https://developer.oculus.com/", + "https://developer.oculus.com/licenses/oculussdk/" + ] +} \ No newline at end of file diff --git a/docs/oculus-sdk-3.5.LICENSE b/docs/oculus-sdk-3.5.LICENSE index 98c8ff1ca5..3042f55d3c 100644 --- a/docs/oculus-sdk-3.5.LICENSE +++ b/docs/oculus-sdk-3.5.LICENSE @@ -1,3 +1,33 @@ +--- +key: oculus-sdk-3.5 +short_name: Oculus SDK License Agreement v3.5 +name: Oculus Software Development Kit License Agreement v3.5 +category: Proprietary Free +owner: Facebook +homepage_url: https://developer.oculus.com/licenses/sdk-3.5/ +spdx_license_key: LicenseRef-scancode-oculus-sdk-3.5 +standard_notice: | + Licensed under the Oculus SDK License Version 3.5 (the "License"); + you may not use the Oculus SDK except in compliance with the License, + which is provided at the time of installation or download, or which + otherwise accompanies this software in either electronic or hard copy form. + You may obtain a copy of the License at + https://developer.oculus.com/licenses/sdk-3.5/ + Unless required by applicable law or agreed to in writing, the Oculus SDK + 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. +ignorable_copyrights: + - (c) Facebook Technologies, LLC and its affiliates + - Copyright (c) Facebook Technologies, LLC and its affiliates +ignorable_holders: + - Facebook Technologies, LLC and its affiliates +ignorable_urls: + - https://developer.oculus.com/ + - https://developer.oculus.com/licenses/sdk-3.5/ +--- + Oculus Software Development Kit License Agreement Copyright © Facebook Technologies, LLC and its affiliates. All rights reserved. diff --git a/docs/oculus-sdk-3.5.html b/docs/oculus-sdk-3.5.html index eb67bcd5db..a33e8c7881 100644 --- a/docs/oculus-sdk-3.5.html +++ b/docs/oculus-sdk-3.5.html @@ -267,7 +267,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oculus-sdk-3.5.json b/docs/oculus-sdk-3.5.json index 0c0f63bb1d..e7bd24e9a5 100644 --- a/docs/oculus-sdk-3.5.json +++ b/docs/oculus-sdk-3.5.json @@ -1 +1,21 @@ -{"key": "oculus-sdk-3.5", "short_name": "Oculus SDK License Agreement v3.5", "name": "Oculus Software Development Kit License Agreement v3.5", "category": "Proprietary Free", "owner": "Facebook", "homepage_url": "https://developer.oculus.com/licenses/sdk-3.5/", "spdx_license_key": "LicenseRef-scancode-oculus-sdk-3.5", "standard_notice": "Licensed under the Oculus SDK License Version 3.5 (the \"License\");\nyou may not use the Oculus SDK except in compliance with the License,\nwhich is provided at the time of installation or download, or which\notherwise accompanies this software in either electronic or hard copy form.\nYou may obtain a copy of the License at\nhttps://developer.oculus.com/licenses/sdk-3.5/\nUnless required by applicable law or agreed to in writing, the Oculus SDK\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n", "ignorable_copyrights": ["(c) Facebook Technologies, LLC and its affiliates", "Copyright (c) Facebook Technologies, LLC and its affiliates"], "ignorable_holders": ["Facebook Technologies, LLC and its affiliates"], "ignorable_urls": ["https://developer.oculus.com/", "https://developer.oculus.com/licenses/sdk-3.5/"]} \ No newline at end of file +{ + "key": "oculus-sdk-3.5", + "short_name": "Oculus SDK License Agreement v3.5", + "name": "Oculus Software Development Kit License Agreement v3.5", + "category": "Proprietary Free", + "owner": "Facebook", + "homepage_url": "https://developer.oculus.com/licenses/sdk-3.5/", + "spdx_license_key": "LicenseRef-scancode-oculus-sdk-3.5", + "standard_notice": "Licensed under the Oculus SDK License Version 3.5 (the \"License\");\nyou may not use the Oculus SDK except in compliance with the License,\nwhich is provided at the time of installation or download, or which\notherwise accompanies this software in either electronic or hard copy form.\nYou may obtain a copy of the License at\nhttps://developer.oculus.com/licenses/sdk-3.5/\nUnless required by applicable law or agreed to in writing, the Oculus SDK\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n", + "ignorable_copyrights": [ + "(c) Facebook Technologies, LLC and its affiliates", + "Copyright (c) Facebook Technologies, LLC and its affiliates" + ], + "ignorable_holders": [ + "Facebook Technologies, LLC and its affiliates" + ], + "ignorable_urls": [ + "https://developer.oculus.com/", + "https://developer.oculus.com/licenses/sdk-3.5/" + ] +} \ No newline at end of file diff --git a/docs/oculus-sdk.LICENSE b/docs/oculus-sdk.LICENSE index 0dc8ff9991..0563b53162 100644 --- a/docs/oculus-sdk.LICENSE +++ b/docs/oculus-sdk.LICENSE @@ -1,3 +1,22 @@ +--- +key: oculus-sdk +short_name: Oculus SDK License Agreement +name: Oculus SDK License Agreement +category: Copyleft Limited +owner: Facebook +homepage_url: https://www.oculus.com/ +spdx_license_key: LicenseRef-scancode-oculus-sdk +text_urls: + - https://developer.oculus.com/licenses/ +ignorable_copyrights: + - (c) Facebook Technologies, LLC and its affiliates + - Copyright (c) Facebook Technologies, LLC and its affiliates +ignorable_holders: + - Facebook Technologies, LLC and its affiliates +ignorable_urls: + - https://developer.oculus.com/ +--- + Effective date: 6/1/2020 Copyright © Facebook Technologies, LLC and its affiliates. All rights reserved. diff --git a/docs/oculus-sdk.html b/docs/oculus-sdk.html index 4c8ad18fa7..cba1626fd2 100644 --- a/docs/oculus-sdk.html +++ b/docs/oculus-sdk.html @@ -290,7 +290,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oculus-sdk.json b/docs/oculus-sdk.json index da7a163dc6..67915dc372 100644 --- a/docs/oculus-sdk.json +++ b/docs/oculus-sdk.json @@ -1 +1,22 @@ -{"key": "oculus-sdk", "short_name": "Oculus SDK License Agreement", "name": "Oculus SDK License Agreement", "category": "Copyleft Limited", "owner": "Facebook", "homepage_url": "https://www.oculus.com/", "spdx_license_key": "LicenseRef-scancode-oculus-sdk", "text_urls": ["https://developer.oculus.com/licenses/"], "ignorable_copyrights": ["(c) Facebook Technologies, LLC and its affiliates", "Copyright (c) Facebook Technologies, LLC and its affiliates"], "ignorable_holders": ["Facebook Technologies, LLC and its affiliates"], "ignorable_urls": ["https://developer.oculus.com/"]} \ No newline at end of file +{ + "key": "oculus-sdk", + "short_name": "Oculus SDK License Agreement", + "name": "Oculus SDK License Agreement", + "category": "Copyleft Limited", + "owner": "Facebook", + "homepage_url": "https://www.oculus.com/", + "spdx_license_key": "LicenseRef-scancode-oculus-sdk", + "text_urls": [ + "https://developer.oculus.com/licenses/" + ], + "ignorable_copyrights": [ + "(c) Facebook Technologies, LLC and its affiliates", + "Copyright (c) Facebook Technologies, LLC and its affiliates" + ], + "ignorable_holders": [ + "Facebook Technologies, LLC and its affiliates" + ], + "ignorable_urls": [ + "https://developer.oculus.com/" + ] +} \ No newline at end of file diff --git a/docs/odbl-1.0.LICENSE b/docs/odbl-1.0.LICENSE index 5879840fb5..f510bbdd95 100644 --- a/docs/odbl-1.0.LICENSE +++ b/docs/odbl-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: odbl-1.0 +short_name: ODbL 1.0 +name: ODC Open Database License v1.0 +category: Copyleft +owner: Open Data Commons +homepage_url: http://www.opendatacommons.org/licenses/odbl/1.0/ +spdx_license_key: ODbL-1.0 +text_urls: + - https://www.opendatacommons.org/licenses/odbl/1.0/ +other_urls: + - https://opendatacommons.org/licenses/odbl/1-0/ +--- + ## ODC Open Database License (ODbL) ### Preamble diff --git a/docs/odbl-1.0.html b/docs/odbl-1.0.html index b3645b20b9..52ac0e7023 100644 --- a/docs/odbl-1.0.html +++ b/docs/odbl-1.0.html @@ -684,7 +684,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/odbl-1.0.json b/docs/odbl-1.0.json index e58b1ff7ba..8e4578ffe8 100644 --- a/docs/odbl-1.0.json +++ b/docs/odbl-1.0.json @@ -1 +1,15 @@ -{"key": "odbl-1.0", "short_name": "ODbL 1.0", "name": "ODC Open Database License v1.0", "category": "Copyleft", "owner": "Open Data Commons", "homepage_url": "http://www.opendatacommons.org/licenses/odbl/1.0/", "spdx_license_key": "ODbL-1.0", "text_urls": ["https://www.opendatacommons.org/licenses/odbl/1.0/"], "other_urls": ["https://opendatacommons.org/licenses/odbl/1-0/"]} \ No newline at end of file +{ + "key": "odbl-1.0", + "short_name": "ODbL 1.0", + "name": "ODC Open Database License v1.0", + "category": "Copyleft", + "owner": "Open Data Commons", + "homepage_url": "http://www.opendatacommons.org/licenses/odbl/1.0/", + "spdx_license_key": "ODbL-1.0", + "text_urls": [ + "https://www.opendatacommons.org/licenses/odbl/1.0/" + ], + "other_urls": [ + "https://opendatacommons.org/licenses/odbl/1-0/" + ] +} \ No newline at end of file diff --git a/docs/odc-1.0.LICENSE b/docs/odc-1.0.LICENSE index 8d45e17923..ef69d5a684 100644 --- a/docs/odc-1.0.LICENSE +++ b/docs/odc-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: odc-1.0 +is_deprecated: yes +short_name: ODC-By +name: Open Data Commons Attribution License +category: Copyleft +owner: Open Data Commons +homepage_url: https://opendatacommons.org/ +notes: deprecated in favor of odc-by-1.0 +text_urls: + - http://www.opendatacommons.org/licenses/by/1.0/ +--- + ODC Attribution License (ODC-By) Preamble The Open Data Commons Attribution License is a license agreement @@ -410,4 +423,4 @@ sought to be enforced. If the standard suite of rights granted under applicable copyright law and Database Rights in the relevant jurisdiction includes additional rights not granted under this License, these additional rights are granted in this License in order to meet the -terms of this License. +terms of this License. \ No newline at end of file diff --git a/docs/odc-1.0.html b/docs/odc-1.0.html index f0cc725b5e..eccf7d92b4 100644 --- a/docs/odc-1.0.html +++ b/docs/odc-1.0.html @@ -543,8 +543,7 @@ applicable copyright law and Database Rights in the relevant jurisdiction includes additional rights not granted under this License, these additional rights are granted in this License in order to meet the -terms of this License. - +terms of this License.
@@ -556,7 +555,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/odc-1.0.json b/docs/odc-1.0.json index 62226c4f65..cbdeecf873 100644 --- a/docs/odc-1.0.json +++ b/docs/odc-1.0.json @@ -1 +1,13 @@ -{"key": "odc-1.0", "is_deprecated": true, "short_name": "ODC-By", "name": "Open Data Commons Attribution License", "category": "Copyleft", "owner": "Open Data Commons", "homepage_url": "https://opendatacommons.org/", "notes": "deprecated in favor of odc-by-1.0", "text_urls": ["http://www.opendatacommons.org/licenses/by/1.0/"]} \ No newline at end of file +{ + "key": "odc-1.0", + "is_deprecated": true, + "short_name": "ODC-By", + "name": "Open Data Commons Attribution License", + "category": "Copyleft", + "owner": "Open Data Commons", + "homepage_url": "https://opendatacommons.org/", + "notes": "deprecated in favor of odc-by-1.0", + "text_urls": [ + "http://www.opendatacommons.org/licenses/by/1.0/" + ] +} \ No newline at end of file diff --git a/docs/odc-by-1.0.LICENSE b/docs/odc-by-1.0.LICENSE index a984223d94..654c4d5b2d 100644 --- a/docs/odc-by-1.0.LICENSE +++ b/docs/odc-by-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: odc-by-1.0 +short_name: ODC-By-1.0 +name: Open Data Commons Attribution License v1.0 +category: Permissive +owner: Open Data Commons +homepage_url: https://opendatacommons.org/licenses/by/ +spdx_license_key: ODC-By-1.0 +other_spdx_license_keys: + - LicenseRef-scancode-odc-1.0 +other_urls: + - https://opendatacommons.org/licenses/by/1.0/ +standard_notice: | + This DATABASE is made available under the Open Data Commons + Attribution License: http://opendatacommons.org/licenses/by/1.0 +--- + Open Data Commons Attribution License (ODC-By) v1.0 ODC Attribution License (ODC-By) Preamble diff --git a/docs/odc-by-1.0.html b/docs/odc-by-1.0.html index f27daa58af..12891b9e59 100644 --- a/docs/odc-by-1.0.html +++ b/docs/odc-by-1.0.html @@ -569,7 +569,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/odc-by-1.0.json b/docs/odc-by-1.0.json index 6ccf76b4cc..b05ac1470e 100644 --- a/docs/odc-by-1.0.json +++ b/docs/odc-by-1.0.json @@ -1 +1,16 @@ -{"key": "odc-by-1.0", "short_name": "ODC-By-1.0", "name": "Open Data Commons Attribution License v1.0", "category": "Permissive", "owner": "Open Data Commons", "homepage_url": "https://opendatacommons.org/licenses/by/", "spdx_license_key": "ODC-By-1.0", "other_spdx_license_keys": ["LicenseRef-scancode-odc-1.0"], "other_urls": ["https://opendatacommons.org/licenses/by/1.0/"], "standard_notice": "This DATABASE is made available under the Open Data Commons\nAttribution License: http://opendatacommons.org/licenses/by/1.0\n"} \ No newline at end of file +{ + "key": "odc-by-1.0", + "short_name": "ODC-By-1.0", + "name": "Open Data Commons Attribution License v1.0", + "category": "Permissive", + "owner": "Open Data Commons", + "homepage_url": "https://opendatacommons.org/licenses/by/", + "spdx_license_key": "ODC-By-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-odc-1.0" + ], + "other_urls": [ + "https://opendatacommons.org/licenses/by/1.0/" + ], + "standard_notice": "This DATABASE is made available under the Open Data Commons\nAttribution License: http://opendatacommons.org/licenses/by/1.0\n" +} \ No newline at end of file diff --git a/docs/odl.LICENSE b/docs/odl.LICENSE index 78b30cfce0..d19bc7a7a6 100644 --- a/docs/odl.LICENSE +++ b/docs/odl.LICENSE @@ -1,3 +1,20 @@ +--- +key: odl +short_name: Open Directory License +name: Open Directory License +category: Permissive +owner: Open Directory +homepage_url: http://www.dmoz.org/license.html +spdx_license_key: LicenseRef-scancode-odl +text_urls: + - http://www.dmoz.org/license.html +other_urls: + - http://dmoz.org/become_an_editor +ignorable_urls: + - http://dmoz.org/ + - http://dmoz.org/become_an_editor +--- + Open Directory License The Open Directory is a compilation of many different editors' contributions. Netscape Communications Corporation (`Netscape') owns the copyright to the compilation of the different contributions, and makes the Open Directory available to you to use under the following license agreement terms and conditions (`Open Directory License'). For purposes of this Open Directory License, `Open Directory' means only the Open Directory Project currently hosted at http://dmoz.org (or at another site as may be designated by Netscape in the future), and does not include any other versions of directories, even if referred to as an `Open Directory,' that may be hosted by Netscape on other web pages (e.g., Netscape Netcenter). diff --git a/docs/odl.html b/docs/odl.html index 36ee836610..094ca3a6dc 100644 --- a/docs/odl.html +++ b/docs/odl.html @@ -177,7 +177,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/odl.json b/docs/odl.json index 16843a75ee..43fd60264a 100644 --- a/docs/odl.json +++ b/docs/odl.json @@ -1 +1,19 @@ -{"key": "odl", "short_name": "Open Directory License", "name": "Open Directory License", "category": "Permissive", "owner": "Open Directory", "homepage_url": "http://www.dmoz.org/license.html", "spdx_license_key": "LicenseRef-scancode-odl", "text_urls": ["http://www.dmoz.org/license.html"], "other_urls": ["http://dmoz.org/become_an_editor"], "ignorable_urls": ["http://dmoz.org/", "http://dmoz.org/become_an_editor"]} \ No newline at end of file +{ + "key": "odl", + "short_name": "Open Directory License", + "name": "Open Directory License", + "category": "Permissive", + "owner": "Open Directory", + "homepage_url": "http://www.dmoz.org/license.html", + "spdx_license_key": "LicenseRef-scancode-odl", + "text_urls": [ + "http://www.dmoz.org/license.html" + ], + "other_urls": [ + "http://dmoz.org/become_an_editor" + ], + "ignorable_urls": [ + "http://dmoz.org/", + "http://dmoz.org/become_an_editor" + ] +} \ No newline at end of file diff --git a/docs/odmg.LICENSE b/docs/odmg.LICENSE index eeb7ec5c2f..9b2d52d45b 100644 --- a/docs/odmg.LICENSE +++ b/docs/odmg.LICENSE @@ -1,3 +1,17 @@ +--- +key: odmg +short_name: ODMG License +name: ODMG License +category: Permissive +owner: ODBMS.org +homepage_url: http://www.odbms.org/odmg-standard/wray-johnson/ +spdx_license_key: LicenseRef-scancode-odmg +ignorable_authors: + - E. Wray Johnson +ignorable_urls: + - http://www.odmg.org/ +--- + License Agreement Redistribution of this software is permitted provided that the following diff --git a/docs/odmg.html b/docs/odmg.html index 7c2dba002b..d4c23e7519 100644 --- a/docs/odmg.html +++ b/docs/odmg.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/odmg.json b/docs/odmg.json index 00b9c1f289..6e14db1b47 100644 --- a/docs/odmg.json +++ b/docs/odmg.json @@ -1 +1,15 @@ -{"key": "odmg", "short_name": "ODMG License", "name": "ODMG License", "category": "Permissive", "owner": "ODBMS.org", "homepage_url": "http://www.odbms.org/odmg-standard/wray-johnson/", "spdx_license_key": "LicenseRef-scancode-odmg", "ignorable_authors": ["E. Wray Johnson"], "ignorable_urls": ["http://www.odmg.org/"]} \ No newline at end of file +{ + "key": "odmg", + "short_name": "ODMG License", + "name": "ODMG License", + "category": "Permissive", + "owner": "ODBMS.org", + "homepage_url": "http://www.odbms.org/odmg-standard/wray-johnson/", + "spdx_license_key": "LicenseRef-scancode-odmg", + "ignorable_authors": [ + "E. Wray Johnson" + ], + "ignorable_urls": [ + "http://www.odmg.org/" + ] +} \ No newline at end of file diff --git a/docs/ofl-1.0-no-rfn.LICENSE b/docs/ofl-1.0-no-rfn.LICENSE index a6b548cb8b..2e56db2c9c 100644 --- a/docs/ofl-1.0-no-rfn.LICENSE +++ b/docs/ofl-1.0-no-rfn.LICENSE @@ -1,3 +1,22 @@ +--- +key: ofl-1.0-no-rfn +short_name: OFL 1.0 no Reserved Font Name +name: SIL Open Font License 1.0 with no Reserved Font Name +category: Permissive +owner: SIL International +homepage_url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web +notes: | + Per SPDX.org, this license has been superseded. This license was released + in November 2005. +spdx_license_key: OFL-1.0-no-RFN +text_urls: + - https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL10_plaintext&filename=OFL10.txt +other_urls: + - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web +minimum_coverage: 99 +ignorable_urls: + - http://scripts.sil.org/OFL +--- This Font Software is licensed under the SIL Open Font License, Version 1.0. with no Reserved Font Name for this Font Software. diff --git a/docs/ofl-1.0-no-rfn.html b/docs/ofl-1.0-no-rfn.html index 2f9bcd9814..c6daa503db 100644 --- a/docs/ofl-1.0-no-rfn.html +++ b/docs/ofl-1.0-no-rfn.html @@ -158,8 +158,7 @@
license_text
-

-This Font Software is licensed under the SIL Open Font License, Version 1.0.
+    
This Font Software is licensed under the SIL Open Font License, Version 1.0.
 with no Reserved Font Name for this Font Software.
 No modification of the license is permitted, only verbatim copy is allowed.
 This license is copied below, and is also available with a FAQ at:
@@ -263,7 +262,8 @@
       AboutCode
     

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ofl-1.0-no-rfn.json b/docs/ofl-1.0-no-rfn.json index c6041eeb8b..c41a0f4386 100644 --- a/docs/ofl-1.0-no-rfn.json +++ b/docs/ofl-1.0-no-rfn.json @@ -1 +1,20 @@ -{"key": "ofl-1.0-no-rfn", "short_name": "OFL 1.0 no Reserved Font Name", "name": "SIL Open Font License 1.0 with no Reserved Font Name", "category": "Permissive", "owner": "SIL International", "homepage_url": "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web", "notes": "Per SPDX.org, this license has been superseded. This license was released\nin November 2005.\n", "spdx_license_key": "OFL-1.0-no-RFN", "text_urls": ["https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL10_plaintext&filename=OFL10.txt"], "other_urls": ["http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web"], "minimum_coverage": 99, "ignorable_urls": ["http://scripts.sil.org/OFL"]} \ No newline at end of file +{ + "key": "ofl-1.0-no-rfn", + "short_name": "OFL 1.0 no Reserved Font Name", + "name": "SIL Open Font License 1.0 with no Reserved Font Name", + "category": "Permissive", + "owner": "SIL International", + "homepage_url": "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web", + "notes": "Per SPDX.org, this license has been superseded. This license was released\nin November 2005.\n", + "spdx_license_key": "OFL-1.0-no-RFN", + "text_urls": [ + "https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL10_plaintext&filename=OFL10.txt" + ], + "other_urls": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web" + ], + "minimum_coverage": 99, + "ignorable_urls": [ + "http://scripts.sil.org/OFL" + ] +} \ No newline at end of file diff --git a/docs/ofl-1.0-rfn.LICENSE b/docs/ofl-1.0-rfn.LICENSE index 594b1af232..6ead428889 100644 --- a/docs/ofl-1.0-rfn.LICENSE +++ b/docs/ofl-1.0-rfn.LICENSE @@ -1,3 +1,23 @@ +--- +key: ofl-1.0-rfn +short_name: OFL 1.0 Reserved Font Name +name: SIL Open Font License 1.0 with Reserved Font Name +category: Permissive +owner: SIL International +homepage_url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web +notes: | + Per SPDX.org, this license has been superseded. This license was released + in November 2005. +spdx_license_key: OFL-1.0-RFN +text_urls: + - https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL10_plaintext&filename=OFL10.txt +other_urls: + - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web +minimum_coverage: 99 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + is a Reserved Font Name for this Font Software. is a Reserved Font Name for this Font Software. diff --git a/docs/ofl-1.0-rfn.html b/docs/ofl-1.0-rfn.html index dcaa69a689..e1362bfb30 100644 --- a/docs/ofl-1.0-rfn.html +++ b/docs/ofl-1.0-rfn.html @@ -264,7 +264,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ofl-1.0-rfn.json b/docs/ofl-1.0-rfn.json index 649ca4da8d..8134eadc7d 100644 --- a/docs/ofl-1.0-rfn.json +++ b/docs/ofl-1.0-rfn.json @@ -1 +1,20 @@ -{"key": "ofl-1.0-rfn", "short_name": "OFL 1.0 Reserved Font Name", "name": "SIL Open Font License 1.0 with Reserved Font Name", "category": "Permissive", "owner": "SIL International", "homepage_url": "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web", "notes": "Per SPDX.org, this license has been superseded. This license was released\nin November 2005.\n", "spdx_license_key": "OFL-1.0-RFN", "text_urls": ["https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL10_plaintext&filename=OFL10.txt"], "other_urls": ["http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web"], "minimum_coverage": 99, "ignorable_urls": ["http://scripts.sil.org/OFL"]} \ No newline at end of file +{ + "key": "ofl-1.0-rfn", + "short_name": "OFL 1.0 Reserved Font Name", + "name": "SIL Open Font License 1.0 with Reserved Font Name", + "category": "Permissive", + "owner": "SIL International", + "homepage_url": "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web", + "notes": "Per SPDX.org, this license has been superseded. This license was released\nin November 2005.\n", + "spdx_license_key": "OFL-1.0-RFN", + "text_urls": [ + "https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL10_plaintext&filename=OFL10.txt" + ], + "other_urls": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web" + ], + "minimum_coverage": 99, + "ignorable_urls": [ + "http://scripts.sil.org/OFL" + ] +} \ No newline at end of file diff --git a/docs/ofl-1.0.LICENSE b/docs/ofl-1.0.LICENSE index bbe8cc2361..133eb0b8f1 100644 --- a/docs/ofl-1.0.LICENSE +++ b/docs/ofl-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: ofl-1.0 +short_name: OFL 1.0 +name: SIL Open Font License 1.0 +category: Permissive +owner: SIL International +homepage_url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web +notes: | + Per SPDX.org, this license has been superseded. This license was released + in November 2005. +spdx_license_key: OFL-1.0 +text_urls: + - https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL10_plaintext&filename=OFL10.txt +other_urls: + - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web +--- + ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.0 - 22 November 2005 ----------------------------------------------------------- diff --git a/docs/ofl-1.0.html b/docs/ofl-1.0.html index b15e5a53bb..c2db040f13 100644 --- a/docs/ofl-1.0.html +++ b/docs/ofl-1.0.html @@ -240,7 +240,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ofl-1.0.json b/docs/ofl-1.0.json index 9a90626d1f..b455ccf276 100644 --- a/docs/ofl-1.0.json +++ b/docs/ofl-1.0.json @@ -1 +1,16 @@ -{"key": "ofl-1.0", "short_name": "OFL 1.0", "name": "SIL Open Font License 1.0", "category": "Permissive", "owner": "SIL International", "homepage_url": "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web", "notes": "Per SPDX.org, this license has been superseded. This license was released\nin November 2005.\n", "spdx_license_key": "OFL-1.0", "text_urls": ["https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL10_plaintext&filename=OFL10.txt"], "other_urls": ["http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web"]} \ No newline at end of file +{ + "key": "ofl-1.0", + "short_name": "OFL 1.0", + "name": "SIL Open Font License 1.0", + "category": "Permissive", + "owner": "SIL International", + "homepage_url": "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web", + "notes": "Per SPDX.org, this license has been superseded. This license was released\nin November 2005.\n", + "spdx_license_key": "OFL-1.0", + "text_urls": [ + "https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL10_plaintext&filename=OFL10.txt" + ], + "other_urls": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web" + ] +} \ No newline at end of file diff --git a/docs/ofl-1.1-no-rfn.LICENSE b/docs/ofl-1.1-no-rfn.LICENSE index 4d961f81c1..3aa1dbf207 100644 --- a/docs/ofl-1.1-no-rfn.LICENSE +++ b/docs/ofl-1.1-no-rfn.LICENSE @@ -1,3 +1,29 @@ +--- +key: ofl-1.1-no-rfn +short_name: OFL 1.1 no Reserved Font Name +name: SIL Open Font License 1.1 with no Reserved Font Name +category: Permissive +owner: SIL International +homepage_url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web +notes: | + Per SPDX.org, this license was released 26 February 2007. This license is + OSI certified +spdx_license_key: OFL-1.1-no-RFN +osi_license_key: OFL-1.1 +text_urls: + - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web + - https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt +faq_url: http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL +other_urls: + - http://scripts.sil.org/OFL + - http://www.opensource.org/licenses/OFL-1.1 + - https://github.com/adobe-fonts/source-code-pro/blob/master/LICENSE.txt + - https://opensource.org/licenses/OFL-1.1 +minimum_coverage: 99 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + This Font Software is licensed under the SIL Open Font License, Version 1.1. with no Reserved Font Name for this Font Software. This license is copied below, and is also available with a FAQ at: diff --git a/docs/ofl-1.1-no-rfn.html b/docs/ofl-1.1-no-rfn.html index 87e8ee8f64..04386685fd 100644 --- a/docs/ofl-1.1-no-rfn.html +++ b/docs/ofl-1.1-no-rfn.html @@ -273,7 +273,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ofl-1.1-no-rfn.json b/docs/ofl-1.1-no-rfn.json index 23ffc3ab5e..825939117c 100644 --- a/docs/ofl-1.1-no-rfn.json +++ b/docs/ofl-1.1-no-rfn.json @@ -1 +1,26 @@ -{"key": "ofl-1.1-no-rfn", "short_name": "OFL 1.1 no Reserved Font Name", "name": "SIL Open Font License 1.1 with no Reserved Font Name", "category": "Permissive", "owner": "SIL International", "homepage_url": "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", "notes": "Per SPDX.org, this license was released 26 February 2007. This license is\nOSI certified\n", "spdx_license_key": "OFL-1.1-no-RFN", "osi_license_key": "OFL-1.1", "text_urls": ["http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", "https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt"], "faq_url": "http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL", "other_urls": ["http://scripts.sil.org/OFL", "http://www.opensource.org/licenses/OFL-1.1", "https://github.com/adobe-fonts/source-code-pro/blob/master/LICENSE.txt", "https://opensource.org/licenses/OFL-1.1"], "minimum_coverage": 99, "ignorable_urls": ["http://scripts.sil.org/OFL"]} \ No newline at end of file +{ + "key": "ofl-1.1-no-rfn", + "short_name": "OFL 1.1 no Reserved Font Name", + "name": "SIL Open Font License 1.1 with no Reserved Font Name", + "category": "Permissive", + "owner": "SIL International", + "homepage_url": "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", + "notes": "Per SPDX.org, this license was released 26 February 2007. This license is\nOSI certified\n", + "spdx_license_key": "OFL-1.1-no-RFN", + "osi_license_key": "OFL-1.1", + "text_urls": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", + "https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt" + ], + "faq_url": "http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL", + "other_urls": [ + "http://scripts.sil.org/OFL", + "http://www.opensource.org/licenses/OFL-1.1", + "https://github.com/adobe-fonts/source-code-pro/blob/master/LICENSE.txt", + "https://opensource.org/licenses/OFL-1.1" + ], + "minimum_coverage": 99, + "ignorable_urls": [ + "http://scripts.sil.org/OFL" + ] +} \ No newline at end of file diff --git a/docs/ofl-1.1-rfn.LICENSE b/docs/ofl-1.1-rfn.LICENSE index d56b3ad17c..26ba80a75c 100644 --- a/docs/ofl-1.1-rfn.LICENSE +++ b/docs/ofl-1.1-rfn.LICENSE @@ -1,3 +1,29 @@ +--- +key: ofl-1.1-rfn +short_name: SIL Open Font License 1.1 with Reserved Font Name +name: OFL 1.1 Reserved Font Name +category: Permissive +owner: SIL International +homepage_url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web +notes: | + Per SPDX.org, this license was released 26 February 2007. This license is + OSI certified +spdx_license_key: OFL-1.1-RFN +osi_license_key: OFL-1.1 +text_urls: + - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web + - https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt +faq_url: http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL +other_urls: + - http://scripts.sil.org/OFL + - http://www.opensource.org/licenses/OFL-1.1 + - https://github.com/adobe-fonts/source-code-pro/blob/master/LICENSE.txt + - https://opensource.org/licenses/OFL-1.1 +minimum_coverage: 99 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + with Reserved Font Name . with Reserved Font Name . diff --git a/docs/ofl-1.1-rfn.html b/docs/ofl-1.1-rfn.html index 3c0d98c857..bf75b902c0 100644 --- a/docs/ofl-1.1-rfn.html +++ b/docs/ofl-1.1-rfn.html @@ -276,7 +276,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ofl-1.1-rfn.json b/docs/ofl-1.1-rfn.json index a805a9da1b..19ee3cd32b 100644 --- a/docs/ofl-1.1-rfn.json +++ b/docs/ofl-1.1-rfn.json @@ -1 +1,26 @@ -{"key": "ofl-1.1-rfn", "short_name": "SIL Open Font License 1.1 with Reserved Font Name", "name": "OFL 1.1 Reserved Font Name", "category": "Permissive", "owner": "SIL International", "homepage_url": "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", "notes": "Per SPDX.org, this license was released 26 February 2007. This license is\nOSI certified\n", "spdx_license_key": "OFL-1.1-RFN", "osi_license_key": "OFL-1.1", "text_urls": ["http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", "https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt"], "faq_url": "http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL", "other_urls": ["http://scripts.sil.org/OFL", "http://www.opensource.org/licenses/OFL-1.1", "https://github.com/adobe-fonts/source-code-pro/blob/master/LICENSE.txt", "https://opensource.org/licenses/OFL-1.1"], "minimum_coverage": 99, "ignorable_urls": ["http://scripts.sil.org/OFL"]} \ No newline at end of file +{ + "key": "ofl-1.1-rfn", + "short_name": "SIL Open Font License 1.1 with Reserved Font Name", + "name": "OFL 1.1 Reserved Font Name", + "category": "Permissive", + "owner": "SIL International", + "homepage_url": "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", + "notes": "Per SPDX.org, this license was released 26 February 2007. This license is\nOSI certified\n", + "spdx_license_key": "OFL-1.1-RFN", + "osi_license_key": "OFL-1.1", + "text_urls": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", + "https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt" + ], + "faq_url": "http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL", + "other_urls": [ + "http://scripts.sil.org/OFL", + "http://www.opensource.org/licenses/OFL-1.1", + "https://github.com/adobe-fonts/source-code-pro/blob/master/LICENSE.txt", + "https://opensource.org/licenses/OFL-1.1" + ], + "minimum_coverage": 99, + "ignorable_urls": [ + "http://scripts.sil.org/OFL" + ] +} \ No newline at end of file diff --git a/docs/ofl-1.1.LICENSE b/docs/ofl-1.1.LICENSE index 04df8a50dc..ab423cca62 100644 --- a/docs/ofl-1.1.LICENSE +++ b/docs/ofl-1.1.LICENSE @@ -1,3 +1,26 @@ +--- +key: ofl-1.1 +short_name: OFL 1.1 +name: SIL Open Font License 1.1 +category: Permissive +owner: SIL International +homepage_url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web +notes: | + Per SPDX.org, this license was released 26 February 2007. This license is + OSI certified +spdx_license_key: OFL-1.1 +osi_license_key: OFL-1.1 +text_urls: + - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web + - https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt +faq_url: http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL +other_urls: + - http://scripts.sil.org/OFL + - http://www.opensource.org/licenses/OFL-1.1 + - https://github.com/adobe-fonts/source-code-pro/blob/master/LICENSE.txt + - https://opensource.org/licenses/OFL-1.1 +--- + ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- diff --git a/docs/ofl-1.1.html b/docs/ofl-1.1.html index 91282e1778..b2b97ad14c 100644 --- a/docs/ofl-1.1.html +++ b/docs/ofl-1.1.html @@ -253,7 +253,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ofl-1.1.json b/docs/ofl-1.1.json index 102b5fd39d..361b60a0c4 100644 --- a/docs/ofl-1.1.json +++ b/docs/ofl-1.1.json @@ -1 +1,22 @@ -{"key": "ofl-1.1", "short_name": "OFL 1.1", "name": "SIL Open Font License 1.1", "category": "Permissive", "owner": "SIL International", "homepage_url": "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", "notes": "Per SPDX.org, this license was released 26 February 2007. This license is\nOSI certified\n", "spdx_license_key": "OFL-1.1", "osi_license_key": "OFL-1.1", "text_urls": ["http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", "https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt"], "faq_url": "http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL", "other_urls": ["http://scripts.sil.org/OFL", "http://www.opensource.org/licenses/OFL-1.1", "https://github.com/adobe-fonts/source-code-pro/blob/master/LICENSE.txt", "https://opensource.org/licenses/OFL-1.1"]} \ No newline at end of file +{ + "key": "ofl-1.1", + "short_name": "OFL 1.1", + "name": "SIL Open Font License 1.1", + "category": "Permissive", + "owner": "SIL International", + "homepage_url": "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", + "notes": "Per SPDX.org, this license was released 26 February 2007. This license is\nOSI certified\n", + "spdx_license_key": "OFL-1.1", + "osi_license_key": "OFL-1.1", + "text_urls": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web", + "https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt" + ], + "faq_url": "http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL", + "other_urls": [ + "http://scripts.sil.org/OFL", + "http://www.opensource.org/licenses/OFL-1.1", + "https://github.com/adobe-fonts/source-code-pro/blob/master/LICENSE.txt", + "https://opensource.org/licenses/OFL-1.1" + ] +} \ No newline at end of file diff --git a/docs/ofrak-community-1.0.LICENSE b/docs/ofrak-community-1.0.LICENSE new file mode 100644 index 0000000000..acdf570740 --- /dev/null +++ b/docs/ofrak-community-1.0.LICENSE @@ -0,0 +1,233 @@ +--- +key: ofrak-community-1.0 +short_name: OFRAK Community License Agreement 1.0 +name: OFRAK Community License Agreement 1.0 +category: Free Restricted +owner: Red Balloon Security +homepage_url: https://github.com/redballoonsecurity/ofrak/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-ofrak-community-1.0 +text_urls: + - https://raw.githubusercontent.com/redballoonsecurity/ofrak/master/LICENSE +faq_url: https://github.com/redballoonsecurity/ofrak#license +other_urls: + - https://github.com/redballoonsecurity/ofrak/blob/master/README.md +ignorable_urls: + - https://github.com/redballoonsecurity/ofrak + - https://ofrak.com/license +--- + +OFRAK COMMUNITY LICENSE AGREEMENT +Version 1.0 +Effective: August 8, 2022 + +Thank you for your interest in OFRAK (Open Firmware Reverse Analysis Konsole). +This OFRAK Community License Agreement (“Agreement”) provides users the right +to use OFRAK and its components for personal or academic, non-commercial use, +as detailed below. This includes educational purposes and non-funded academic +research. This Agreement does not permit use for any other purposes, including +commercial purposes. For any such use, you will need to reach out to Red +Balloon Security, Inc. at https://ofrak.com/license and request an OFRAK Pro +License, OFRAK Enterprise License or a custom agreement. Below are the details +regarding use of OFRAK. Note: As of August 2022, and for a limited period, +OFRAK Pro Licenses are available at no cost. RED BALLOON SECURITY, INC. (“RED +BALLOON”) IS ONLY WILLING TO LICENSE OFRAK AND RELATED DOCUMENTATION PURSUANT +TO THIS AGREEMENT. READ THIS AGREEMENT CAREFULLY BEFORE DOWNLOADING AND +INSTALLING AND USING OFRAK. BY ACCESSING, INSTALLING, COPYING OR OTHERWISE +USING OFRAK, YOU ACKNOWLEDGE AND AGREE ON BEHALF OF YOURSELF AND YOUR +EMPLOYER/INSTITUTION (“YOU”) TO BE BOUND TO THIS AGREEMENT AND THAT YOU +ACKNOWLEDGE THAT THIS AGREEMENT CREATES A LEGALLY ENFORCEABLE CONTRACT AND +CONSTITUTES ACCEPTANCE OF ALL TERMS AND CONDITIONS OF THIS AGREEMENT WITHOUT +MODIFICATION. YOU REPRESENT THAT YOU ARE AUTHORIZED TO ACCEPT THIS AGREEMENT +ON YOUR EMPLOYER’S BEHALF. IF YOU DO NOT AGREE TO THE FOREGOING TERMS AND +CONDITIONS, DO NOT INSTALL, COPY OR USE OFRAK. + +1. Definitions. 1.1 “OFRAK” consists of (a) the source code +repository for OFRAK, which can be found at +https://github.com/redballoonsecurity/ofrak; (b) the following Python +packages, which are also available via PyPI, the Python Package Index: ofrak, +ofrak_components, ofrak_io, ofrak_type, ofrak_patch_maker, ofrak_angr, +ofrak_binary_ninja, ofrak_ghidra; (c) the OFRAK graphical user interface (GUI); +(d) OFRAK documentation. OFRAK includes all updates, improvements, APIs and +add-ons provided by Red Balloon with respect thereto, which Red Balloon +specifies is licensed under this Community License Agreement. OFRAK is +presently made available in three formats: (i) source code repository, (ii) +PyPI Packages and (iii) Docker images with dependencies preinstalled. + +1.2 “Academic Purposes” means use within a non-profit academic institution +by its then-current faculty and students for the purposes of non-profit +scholarly research, classroom and education, and not any other use (including +without limitation, directly or indirectly in connection with any commercial +activity such as, for example, sponsored research or consulting services). +Shared Use of OFRAK for an Academic Purpose is permitted only when (a) used for +educational purposes, (b) access is restricted and not provided to the general +public, (c) access is limited to employees and/or students of the same +institution involved in a specific educational activity, and (d) all users +accept and are subject to this Agreement. + +1.3 “Non-Commercial Use” means personal research, evaluation, or +development use by an individual, and not use by or on behalf of any commercial +entity or organization or directly or indirectly in connection with any +commercial activity. For clarity, you cannot make money off of redistributing +OFRAK code (including Derivatives), OFRAK analysis, OFRAK-modified binaries, or +other OFRAK outputs. Non-Commercial Use also excludes any Shared Use. + +1.4 “Commercial Use” means any use other than Academic Purposes or +Non-Commercial Use, including, without limitation, use for any commercial +purpose or by any commercial entity, including without limitation +redistributing the OFRAK code (including Derivatives), OFRAK analysis, +OFRAK-modified binaries, or other OFRAK outputs for any monetary or other +commercial consideration. + +1.5 “Derivatives” means any modifications, additions, enhancements, or +derivative works of OFRAK or any component thereof. For purposes of this +Agreement, Derivatives shall not include works that remain separable from, or +merely link to, the interfaces of OFRAK or any Derivatives. + +1.6 “Shared Use” means any use of OFRAK where the person who set up a +particular instance of OFRAK is not the same person interacting with that +instance of OFRAK, or where a single instance of OFRAK is used by more than one +person (whether on the same or different occasions). This includes, but is not +limited to, the use of OFRAK on a server that is accessible by more than one +person, or by any person other than the person who set up the use of OFRAK on +the said server. + +2. License. Subject to the terms and conditions of this Agreement, Red +Balloon grants to you a nonexclusive, nonsublicensable, nontransferable, +no-charge, royalty-free, limited license to install, use, copy, modify, create +derivative works of OFRAK only for (a) Academic Purposes and (b) Non-Commercial +Use and to share Derivatives (i) publicly within the community (via publicly +available forks on GitHub.com), (ii) for Shared Use for an Academic Purpose, +and (iii) with Red Balloon, for the purposes stated in this Agreement. For +clarity, the foregoing license does not grant to you any right or license to +commercialize, distribute or use OFRAK, Derivatives, OFRAK code, OFRAK +analysis, OFRAK-modified binaries, or other OFRAK outputs for any other purpose +whatsoever, including Commercial Use, other than Academic Purposes or +Non-Commercial Use. In the event that you wish to use OFRAK for any other +purpose, including Commercial Use, you need to contact Red Balloon and enter +into a separate OFRAK Pro License, OFRAK Enterprise License or other custom +agreement. Except for the limited rights and licenses expressly granted +hereunder, no other license is granted, no other use is permitted. + +3. Derivatives. To the extent that you prepare or create any Derivatives, +you shall and hereby grant to (a) all users of OFRAK a right and license to +such Derivatives upon the terms and conditions set forth in this Agreement and +(b) Red Balloon a perpetual, fully paid-up, royalty-free, worldwide and +irrevocable, right and license to use, copy, modify, enhance, prepare +derivative works of, distribute, with unlimited right to sublicense, make, have +made, sell, have sold, import, export and otherwise commercialize such +Derivatives. You acknowledge that Red Balloon may, but is not obligated to, +include your Derivatives in, and otherwise incorporate your Derivatives into, +the core OFRAK codebase. In the event that you create Derivatives, you must +(i) retain all copyright and other proprietary rights licenses included in the +original OFRAK code, and any other Derivatives, and (ii) make it clear that you +modified the original version of OFRAK. Red Balloon encourages you to make +your Derivatives available to the community by forking the OFRAK source code +repository on GitHub and publishing your Derivatives on your forked repository, +but you are not required to do so. You represent and warrant that you have +sufficient rights to any Derivatives and are legally entitled to grant the +above rights and licenses. If you are an individual and your +employer(s)/institution(s) have rights to intellectual property that you create +that includes your Derivatives, you represent that you have received permission +to make and contribute Derivatives on behalf of that employer/institution. + +4. Ownership; Restrictions. Except as expressly and unambiguously set +forth herein, Red Balloon and its licensors and contributors retain all right, +title and interest in and to OFRAK, Derivatives, all copies, modifications and +derivative works thereof, including without limitation, all rights to patent, +copyright, trade secret and other proprietary or intellectual property rights +related to any of the foregoing. To the extent that you create any +Derivatives, subject to the rights and licenses granted herein, you retain +ownership of all right, title and interest in and to such Derivatives, +including without limitation, all intellectual property rights related to any +of the foregoing. You will maintain the copyright notice and any other notices +or identifications that appear on or in OFRAK and any Derivatives or any other +media or documentation that is subject to this Agreement. You will not (and +will not allow any third party to): (a) use OFRAK or any Derivatives, except +as expressly permitted in this Agreement, (b) provide, lease, lend, disclose, +use for timesharing or service bureau purposes, or otherwise use or allow +others to use for the benefit of any third party, OFRAK, (c) possess or use +OFRAK, or allow the transfer, transmission, export, or re-export of OFRAK or +portion thereof in violation of any export control laws or regulations +administered by the U.S. Commerce Department, U.S. Treasury Department’s Office +of Foreign Assets Control, or any other government agency, (d) use OFRAK in any +way that violates any applicable law, rule or regulation or for any illegal use +or activity; or (e) seek any patent or other intellectual property rights or +protections over or in connection with OFRAK or any Derivatives you create. + +5. Feedback. In addition to Derivatives, you may, from time to time and +in your sole discretion, make suggestions for changes, modifications or +improvements to OFRAK (“Feedback”). Red Balloon shall have an irrevocable, +perpetual, worldwide, sublicenseable, transferable, full paid-up, royalty free +right and license to use, distribute and otherwise exploit all Feedback for any +purpose. + +6. No Cost License. OFRAK and any Derivatives provided pursuant to this +Agreement shall be provided during the Term at no charge to you. + +7. Services. No training or support services are provided under this Agreement. +Red Balloon may in its discretion respond to support inquiries through Red +Balloon’s support channels, such as Slack. + +8. Term and Termination. This Agreement shall commence upon the initial +download of OFRAK and shall continue until and unless terminated as set forth +herein (the “Term”). This Agreement may be terminated by Red Balloon +immediately upon notice to you in the event that you breach any term or +condition of this Agreement. Upon any termination, you shall immediately cease +all use of OFRAK. This sentence and the following provisions will survive +termination: 1, 3 - 5 and 9 - 12. Termination is not an exclusive remedy and +all other remedies will remain available. + +9. Warranty Disclaimer. The parties acknowledge that OFRAK is provided +“AS IS” and may not be functional on any machine or in any environment. +NEITHER RED BALLOON NOR ANY CONTRIBUTOR OF ANY DERIVATIVES MAKE ANY WARRANTIES, +EXPRESS OR IMPLIED, EITHER IN FACT OR BY OPERATION OF LAW, STATUTORY OR +OTHERWISE, AND RED BALLOON AND ANY CONTRIBUTOR OF ANY DERIVATIVES EXPRESSLY +EXCLUDES AND DISCLAIMS ANY WARRANTY OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE, TITLE, ACCURACY, FREEDOM FROM ERRORS, FREEDOM FROM +PROGRAMMING DEFECTS, NONINTERFERENCE AND NONINFRINGEMENT, AND ALL IMPLIED +WARRANTIES ARISING OUT OF COURSE OF DEALING, COURSE OF PERFORMANCE AND USAGE OF +TRADE. THIS AGREEMENT IS NOT INTENDED FOR USE OF OFRAK IN HAZARDOUS +ENVIRONMENTS REQUIRING FAIL-SAFE PERFORMANCE WHERE THE FAILURE OF OFRAK COULD +LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SIGNIFICANT PHYSICAL OR +ENVIRONMENTAL DAMAGE (“HIGH RISK ACTIVITIES”). USE OF OFRAK IN HIGH RISK +ACTIVITIES IS NOT AUTHORIZED PURSUANT TO THIS AGREEMENT. THE PARTIES AGREE +THAT THIS SECTION 9 REPRESENTS A REASONABLE ALLOCATION OF RISK AND THAT RED +BALLOON WOULD NOT PROCEED IN THE ABSENCE OF SUCH ALLOCATION. + +10. Limitations. NEITHER RED BALLOON NOR ANY CONTRIBUTOR OF DERIVATIVES +SHALL BE RESPONSIBLE OR LIABLE WITH RESPECT TO ANY SUBJECT MATTER OF THIS +AGREEMENT OR TERMS AND CONDITIONS RELATED THERETO UNDER ANY CONTRACT, +NEGLIGENCE, STRICT LIABILITY OR OTHER THEORY (A) FOR LOSS OR INACCURACY OF +DATA, OR COST OF PROCUREMENT OF SUBSTITUTE GOODS, SERVICES OR TECHNOLOGY; (B) +FOR ANY DIRECT, INDIRECT, PUNITIVE, INCIDENTAL, RELIANCE, SPECIAL, EXEMPLARY OR +CONSEQUENTIAL DAMAGES INCLUDING, BUT NOT LIMITED TO, LOSS OF REVENUES AND LOSS +OF PROFITS TO LICENSEE OR ANY THIRD PARTIES; (C) FOR ANY MATTER BEYOND ITS +REASONABLE CONTROL OR (D) FOR USE YOU OR OTHERS MAY MAKE OF OFRAK, EVEN IF +ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +11. Indemnification. You agree that (a) Red Balloon and any contributors +shall have no liability whatsoever for your use of OFRAK or any Derivatives and +(b) you shall indemnify, and hold harmless, and (upon request) defend Red +Balloon and any other user or contributor from and against any and all claims, +damages, liabilities, losses, and costs (including reasonable attorneys’ fees) +suffered or incurred by such party which arise from or relate to your (i) use +of OFRAK or Derivatives, or (ii) breach of this Agreement. + +12. Miscellaneous. Neither this Agreement nor the licenses granted +hereunder are assignable or transferable by you; any attempt to do so shall be +void. Red Balloon may assign this Agreement in whole or in part. Any notice, +report, approval or consent required or permitted hereunder shall be in +writing. The provisions hereof are for the benefit of the parties only and not +for any other person or entity. If any provision of this Agreement shall be +adjudged by any court of competent jurisdiction to be unenforceable or invalid, +that provision shall be limited or eliminated to the minimum extent necessary +so that this Agreement shall otherwise remain in full force and effect and +enforceable. This Agreement shall be deemed to have been made in, and shall be +construed pursuant to the laws of the State of New York, without regard to +conflicts of laws provisions thereof, and without regard to the United Nations +Convention on the International Sale of Goods or the Uniform Computer +Information Transactions Act. Any waivers or amendments shall be effective only +if made in writing. This Agreement is the complete and exclusive statement of +the mutual understanding of the parties and supersedes and cancels all previous +written and oral agreements and communications relating to the subject matter +of this Agreement. \ No newline at end of file diff --git a/docs/ofrak-community-1.0.html b/docs/ofrak-community-1.0.html new file mode 100644 index 0000000000..6c1121caa3 --- /dev/null +++ b/docs/ofrak-community-1.0.html @@ -0,0 +1,398 @@ + + + + + + LicenseDB: ofrak-community-1.0 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + ofrak-community-1.0 + +
+ +
short_name
+
+ + OFRAK Community License Agreement 1.0 + +
+ +
name
+
+ + OFRAK Community License Agreement 1.0 + +
+ +
category
+
+ + Free Restricted + +
+ +
owner
+
+ + Red Balloon Security + +
+ +
homepage_url
+
+ + https://github.com/redballoonsecurity/ofrak/blob/master/LICENSE + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-ofrak-community-1.0 + +
+ +
text_urls
+
+ + + +
+ +
faq_url
+
+ + https://github.com/redballoonsecurity/ofrak#license + +
+ +
other_urls
+
+ + + +
+ +
ignorable_urls
+
+ + + +
+ +
+
license_text
+
OFRAK COMMUNITY LICENSE AGREEMENT 
+Version 1.0 
+Effective:  August 8, 2022
+
+Thank you for your interest in OFRAK (Open Firmware Reverse Analysis Konsole).
+This OFRAK Community License Agreement (“Agreement”) provides users the right
+to use OFRAK and its components for personal or academic, non-commercial use,
+as detailed below.  This includes educational purposes and non-funded academic
+research.  This Agreement does not permit use for any other purposes, including
+commercial purposes.  For any such use, you will need to reach out to Red
+Balloon Security, Inc. at https://ofrak.com/license and request an OFRAK Pro
+License, OFRAK Enterprise License or a custom agreement.  Below are the details
+regarding use of OFRAK. Note: As of August 2022, and for a limited period,
+OFRAK Pro Licenses are available at no cost.  RED BALLOON SECURITY, INC. (“RED
+BALLOON”) IS ONLY WILLING TO LICENSE OFRAK AND RELATED DOCUMENTATION PURSUANT
+TO THIS AGREEMENT.  READ THIS AGREEMENT CAREFULLY BEFORE DOWNLOADING AND
+INSTALLING AND USING OFRAK.  BY ACCESSING, INSTALLING, COPYING OR OTHERWISE
+USING OFRAK, YOU ACKNOWLEDGE AND AGREE ON BEHALF OF YOURSELF AND YOUR
+EMPLOYER/INSTITUTION (“YOU”) TO BE BOUND TO THIS AGREEMENT AND THAT YOU
+ACKNOWLEDGE THAT THIS AGREEMENT CREATES A LEGALLY ENFORCEABLE CONTRACT AND
+CONSTITUTES ACCEPTANCE OF ALL TERMS AND CONDITIONS OF THIS AGREEMENT WITHOUT
+MODIFICATION.  YOU REPRESENT THAT YOU ARE AUTHORIZED TO ACCEPT THIS AGREEMENT
+ON YOUR EMPLOYER’S BEHALF.  IF YOU DO NOT AGREE TO THE FOREGOING TERMS AND
+CONDITIONS, DO NOT INSTALL, COPY OR USE OFRAK.
+
+1.	Definitions.  1.1	“OFRAK” consists of (a) the source code
+repository for OFRAK, which can be found at
+https://github.com/redballoonsecurity/ofrak; (b) the following Python
+packages, which are also available via PyPI, the Python Package Index: ofrak,
+ofrak_components, ofrak_io, ofrak_type, ofrak_patch_maker, ofrak_angr,
+ofrak_binary_ninja, ofrak_ghidra; (c) the OFRAK graphical user interface (GUI);
+(d) OFRAK documentation. OFRAK includes all updates, improvements, APIs and
+add-ons provided by Red Balloon with respect thereto, which Red Balloon
+specifies is licensed under this Community License Agreement.  OFRAK is
+presently made available in three formats:  (i) source code repository, (ii)
+PyPI Packages and (iii) Docker images with dependencies preinstalled.
+
+1.2	“Academic Purposes” means use within a non-profit academic institution
+by its then-current faculty and students for the purposes of non-profit
+scholarly research, classroom and education, and not any other use (including
+without limitation, directly or indirectly in connection with any commercial
+activity such as, for example, sponsored research or consulting services).
+Shared Use of OFRAK for an Academic Purpose is permitted only when (a) used for
+educational purposes, (b) access is restricted and not provided to the general
+public, (c) access is limited to employees and/or students of the same
+institution involved in a specific educational activity, and (d) all users
+accept and are subject to this Agreement.
+
+1.3	“Non-Commercial Use” means personal research, evaluation, or
+development use by an individual, and not use by or on behalf of any commercial
+entity or organization or directly or indirectly in connection with any
+commercial activity.  For clarity, you cannot make money off of redistributing
+OFRAK code (including Derivatives), OFRAK analysis, OFRAK-modified binaries, or
+other OFRAK outputs.  Non-Commercial Use also excludes any Shared Use.
+  
+1.4	“Commercial Use” means any use other than Academic Purposes or
+Non-Commercial Use, including, without limitation, use for any commercial
+purpose or by any commercial entity, including without limitation
+redistributing the OFRAK code (including Derivatives), OFRAK analysis,
+OFRAK-modified binaries, or other OFRAK outputs for any monetary or other
+commercial consideration.
+
+1.5	“Derivatives” means any modifications, additions, enhancements, or
+derivative works of OFRAK or any component thereof.  For purposes of this
+Agreement, Derivatives shall not include works that remain separable from, or
+merely link to, the interfaces of OFRAK or any Derivatives.
+
+1.6	“Shared Use” means  any use of OFRAK where the person who set up a
+particular instance of OFRAK is not the same person interacting with that
+instance of OFRAK, or where a single instance of OFRAK is used by more than one
+person (whether on the same or different occasions). This includes, but is not
+limited to, the use of OFRAK on a server that is accessible by more than one
+person, or by any person other than the person who set up the use of OFRAK on
+the said server.
+
+2.	License.  Subject to the terms and conditions of this Agreement, Red
+Balloon grants to you a nonexclusive, nonsublicensable, nontransferable,
+no-charge, royalty-free, limited license to install, use, copy, modify, create
+derivative works of OFRAK only for (a) Academic Purposes and (b) Non-Commercial
+Use and to share Derivatives (i) publicly within the community (via publicly
+available forks on GitHub.com), (ii) for Shared Use for an Academic Purpose,
+and (iii) with Red Balloon, for the purposes stated in this Agreement.  For
+clarity, the foregoing license does not grant to you any right or license to
+commercialize, distribute or use OFRAK, Derivatives, OFRAK code, OFRAK
+analysis, OFRAK-modified binaries, or other OFRAK outputs for any other purpose
+whatsoever, including Commercial Use, other than Academic Purposes or
+Non-Commercial Use. In the event that you wish to use OFRAK for any other
+purpose, including Commercial Use, you need to contact Red Balloon and enter
+into a separate OFRAK Pro License, OFRAK Enterprise License or other custom
+agreement. Except for the limited rights and licenses expressly granted
+hereunder, no other license is granted, no other use is permitted.
+
+3.	Derivatives.  To the extent that you prepare or create any Derivatives,
+you shall and hereby grant to (a) all users of OFRAK a right and license to
+such Derivatives upon the terms and conditions set forth in this Agreement and
+(b) Red Balloon a perpetual, fully paid-up, royalty-free, worldwide and
+irrevocable, right and license to use, copy, modify, enhance, prepare
+derivative works of, distribute, with unlimited right to sublicense, make, have
+made, sell, have sold, import, export and otherwise commercialize such
+Derivatives.  You acknowledge that Red Balloon may, but is not obligated to,
+include your Derivatives in, and otherwise incorporate your Derivatives into,
+the core OFRAK codebase.  In the event that you create Derivatives, you must
+(i) retain all copyright and other proprietary rights licenses included in the
+original OFRAK code, and any other Derivatives, and (ii) make it clear that you
+modified the original version of OFRAK.  Red Balloon encourages you to make
+your Derivatives available to the community by forking the OFRAK source code
+repository on GitHub and publishing your Derivatives on your forked repository,
+but you are not required to do so.  You represent and warrant that you have
+sufficient rights to any Derivatives and are legally entitled to grant the
+above rights and licenses. If you are an individual and your
+employer(s)/institution(s) have rights to intellectual property that you create
+that includes your Derivatives, you represent that you have received permission
+to make and contribute Derivatives on behalf of that employer/institution.
+
+4.	Ownership; Restrictions.  Except as expressly and unambiguously set
+forth herein, Red Balloon and its licensors and contributors retain all right,
+title and interest in and to OFRAK, Derivatives, all copies, modifications and
+derivative works thereof, including without limitation, all rights to patent,
+copyright, trade secret and other proprietary or intellectual property rights
+related to any of the foregoing.  To the extent that you create any
+Derivatives, subject to the rights and licenses granted herein, you retain
+ownership of all right, title and interest in and to such Derivatives,
+including without limitation, all intellectual property rights related to any
+of the foregoing.  You will maintain the copyright notice and any other notices
+or identifications that appear on or in OFRAK and any Derivatives or any other
+media or documentation that is subject to this Agreement.  You will not (and
+will not allow any third party to):  (a) use OFRAK or any Derivatives, except
+as expressly permitted in this Agreement, (b) provide, lease, lend, disclose,
+use for timesharing or service bureau purposes, or otherwise use or allow
+others to use for the benefit of any third party, OFRAK, (c) possess or use
+OFRAK, or allow the transfer, transmission, export, or re-export of OFRAK or
+portion thereof in violation of any export control laws or regulations
+administered by the U.S. Commerce Department, U.S. Treasury Department’s Office
+of Foreign Assets Control, or any other government agency, (d) use OFRAK in any
+way that violates any applicable law, rule or regulation or for any illegal use
+or activity; or (e) seek any patent or other intellectual property rights or
+protections over or in connection with OFRAK or any Derivatives you create.
+
+5.	Feedback.  In addition to Derivatives, you may, from time to time and
+in your sole discretion, make suggestions for changes, modifications or
+improvements to OFRAK (“Feedback”).  Red Balloon shall have an irrevocable,
+perpetual, worldwide, sublicenseable, transferable, full paid-up, royalty free
+right and license to use, distribute and otherwise exploit all Feedback for any
+purpose.
+
+6.	No Cost License.  OFRAK and any Derivatives provided pursuant to this
+Agreement shall be provided during the Term at no charge to you.  
+
+7.    Services.  No training or support services are provided under this Agreement.
+Red Balloon may in its discretion respond to support inquiries through Red
+Balloon’s support channels, such as Slack.
+
+8.	Term and Termination.  This Agreement shall commence upon the initial
+download of OFRAK and shall continue until and unless terminated as set forth
+herein (the “Term”).  This Agreement may be terminated by Red Balloon
+immediately upon notice to you in the event that you breach any term or
+condition of this Agreement. Upon any termination, you shall immediately cease
+all use of OFRAK.  This sentence and the following provisions will survive
+termination: 1, 3 - 5 and 9 - 12.  Termination is not an exclusive remedy and
+all other remedies will remain available.
+
+9.	Warranty Disclaimer.  The parties acknowledge that OFRAK is provided
+“AS IS” and may not be functional on any machine or in any environment.
+NEITHER RED BALLOON NOR ANY CONTRIBUTOR OF ANY DERIVATIVES MAKE ANY WARRANTIES,
+EXPRESS OR IMPLIED, EITHER IN FACT OR BY OPERATION OF LAW, STATUTORY OR
+OTHERWISE, AND RED BALLOON AND ANY CONTRIBUTOR OF ANY DERIVATIVES EXPRESSLY
+EXCLUDES AND DISCLAIMS ANY WARRANTY OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE, TITLE, ACCURACY, FREEDOM FROM ERRORS, FREEDOM FROM
+PROGRAMMING DEFECTS, NONINTERFERENCE AND NONINFRINGEMENT, AND ALL IMPLIED
+WARRANTIES ARISING OUT OF COURSE OF DEALING, COURSE OF PERFORMANCE AND USAGE OF
+TRADE.  THIS AGREEMENT IS NOT INTENDED FOR USE OF OFRAK IN HAZARDOUS
+ENVIRONMENTS REQUIRING FAIL-SAFE PERFORMANCE WHERE THE FAILURE OF OFRAK COULD
+LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SIGNIFICANT PHYSICAL OR
+ENVIRONMENTAL DAMAGE (“HIGH RISK ACTIVITIES”).  USE OF OFRAK IN HIGH RISK
+ACTIVITIES IS NOT AUTHORIZED PURSUANT TO THIS AGREEMENT.  THE PARTIES AGREE
+THAT THIS SECTION 9 REPRESENTS A REASONABLE ALLOCATION OF RISK AND THAT RED
+BALLOON WOULD NOT PROCEED IN THE ABSENCE OF SUCH ALLOCATION.
+
+10.	Limitations.  NEITHER RED BALLOON NOR ANY CONTRIBUTOR OF DERIVATIVES
+SHALL BE RESPONSIBLE OR LIABLE WITH RESPECT TO ANY SUBJECT MATTER OF THIS
+AGREEMENT OR TERMS AND CONDITIONS RELATED THERETO UNDER ANY CONTRACT,
+NEGLIGENCE, STRICT LIABILITY OR OTHER THEORY (A) FOR LOSS OR INACCURACY OF
+DATA, OR COST OF PROCUREMENT OF SUBSTITUTE GOODS, SERVICES OR TECHNOLOGY; (B)
+FOR ANY DIRECT, INDIRECT, PUNITIVE, INCIDENTAL, RELIANCE, SPECIAL, EXEMPLARY OR
+CONSEQUENTIAL DAMAGES INCLUDING, BUT NOT LIMITED TO, LOSS OF REVENUES AND LOSS
+OF PROFITS TO LICENSEE OR ANY THIRD PARTIES; (C) FOR ANY MATTER BEYOND ITS
+REASONABLE CONTROL OR (D) FOR USE YOU OR OTHERS MAY MAKE OF OFRAK, EVEN IF
+ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+11.	Indemnification.  You agree that (a) Red Balloon and any contributors
+shall have no liability whatsoever for your use of OFRAK or any Derivatives and
+(b) you shall indemnify, and hold harmless, and (upon request) defend Red
+Balloon and any other user or contributor from and against any and all claims,
+damages, liabilities, losses, and costs (including reasonable attorneys’ fees)
+suffered or incurred by such party which arise from or relate to your (i) use
+of OFRAK or Derivatives, or (ii) breach of this Agreement.
+
+12.	Miscellaneous.  Neither this Agreement nor the licenses granted
+hereunder are assignable or transferable by you; any attempt to do so shall be
+void.  Red Balloon may assign this Agreement in whole or in part.  Any notice,
+report, approval or consent required or permitted hereunder shall be in
+writing.  The provisions hereof are for the benefit of the parties only and not
+for any other person or entity. If any provision of this Agreement shall be
+adjudged by any court of competent jurisdiction to be unenforceable or invalid,
+that provision shall be limited or eliminated to the minimum extent necessary
+so that this Agreement shall otherwise remain in full force and effect and
+enforceable.  This Agreement shall be deemed to have been made in, and shall be
+construed pursuant to the laws of the State of New York, without regard to
+conflicts of laws provisions thereof, and without regard to the United Nations
+Convention on the International Sale of Goods or the Uniform Computer
+Information Transactions Act. Any waivers or amendments shall be effective only
+if made in writing.  This Agreement is the complete and exclusive statement of
+the mutual understanding of the parties and supersedes and cancels all previous
+written and oral agreements and communications relating to the subject matter
+of this Agreement.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/ofrak-community-1.0.json b/docs/ofrak-community-1.0.json new file mode 100644 index 0000000000..4ef2ff5fce --- /dev/null +++ b/docs/ofrak-community-1.0.json @@ -0,0 +1,20 @@ +{ + "key": "ofrak-community-1.0", + "short_name": "OFRAK Community License Agreement 1.0", + "name": "OFRAK Community License Agreement 1.0", + "category": "Free Restricted", + "owner": "Red Balloon Security", + "homepage_url": "https://github.com/redballoonsecurity/ofrak/blob/master/LICENSE", + "spdx_license_key": "LicenseRef-scancode-ofrak-community-1.0", + "text_urls": [ + "https://raw.githubusercontent.com/redballoonsecurity/ofrak/master/LICENSE" + ], + "faq_url": "https://github.com/redballoonsecurity/ofrak#license", + "other_urls": [ + "https://github.com/redballoonsecurity/ofrak/blob/master/README.md" + ], + "ignorable_urls": [ + "https://github.com/redballoonsecurity/ofrak", + "https://ofrak.com/license" + ] +} \ No newline at end of file diff --git a/docs/ofrak-community-1.0.yml b/docs/ofrak-community-1.0.yml new file mode 100644 index 0000000000..09e12b2fb2 --- /dev/null +++ b/docs/ofrak-community-1.0.yml @@ -0,0 +1,15 @@ +key: ofrak-community-1.0 +short_name: OFRAK Community License Agreement 1.0 +name: OFRAK Community License Agreement 1.0 +category: Free Restricted +owner: Red Balloon Security +homepage_url: https://github.com/redballoonsecurity/ofrak/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-ofrak-community-1.0 +text_urls: + - https://raw.githubusercontent.com/redballoonsecurity/ofrak/master/LICENSE +faq_url: https://github.com/redballoonsecurity/ofrak#license +other_urls: + - https://github.com/redballoonsecurity/ofrak/blob/master/README.md +ignorable_urls: + - https://github.com/redballoonsecurity/ofrak + - https://ofrak.com/license diff --git a/docs/ogc-1.0.LICENSE b/docs/ogc-1.0.LICENSE index 265f050c55..8e828d954a 100644 --- a/docs/ogc-1.0.LICENSE +++ b/docs/ogc-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: ogc-1.0 +short_name: OGC 1.0 +name: OGC Software License, Version 1.0 +category: Permissive +owner: Open Geospatial Consortium +homepage_url: https://www.ogc.org/ogc/software/1.0 +spdx_license_key: OGC-1.0 +ignorable_copyrights: + - Copyright (c) Open Geospatial Consortium, Inc. +ignorable_holders: + - Open Geospatial Consortium, Inc. +ignorable_urls: + - http://www.ogc.org/ogc/legal +--- + OGC Software License, Version 1.0 This OGC work (including software, documents, or other related items) is being diff --git a/docs/ogc-1.0.html b/docs/ogc-1.0.html index 9026493716..73ca1fa2da 100644 --- a/docs/ogc-1.0.html +++ b/docs/ogc-1.0.html @@ -192,7 +192,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ogc-1.0.json b/docs/ogc-1.0.json index e19fe68176..537d329945 100644 --- a/docs/ogc-1.0.json +++ b/docs/ogc-1.0.json @@ -1 +1,18 @@ -{"key": "ogc-1.0", "short_name": "OGC 1.0", "name": "OGC Software License, Version 1.0", "category": "Permissive", "owner": "Open Geospatial Consortium", "homepage_url": "https://www.ogc.org/ogc/software/1.0", "spdx_license_key": "OGC-1.0", "ignorable_copyrights": ["Copyright (c) Open Geospatial Consortium, Inc."], "ignorable_holders": ["Open Geospatial Consortium, Inc."], "ignorable_urls": ["http://www.ogc.org/ogc/legal"]} \ No newline at end of file +{ + "key": "ogc-1.0", + "short_name": "OGC 1.0", + "name": "OGC Software License, Version 1.0", + "category": "Permissive", + "owner": "Open Geospatial Consortium", + "homepage_url": "https://www.ogc.org/ogc/software/1.0", + "spdx_license_key": "OGC-1.0", + "ignorable_copyrights": [ + "Copyright (c) Open Geospatial Consortium, Inc." + ], + "ignorable_holders": [ + "Open Geospatial Consortium, Inc." + ], + "ignorable_urls": [ + "http://www.ogc.org/ogc/legal" + ] +} \ No newline at end of file diff --git a/docs/ogc-2006.LICENSE b/docs/ogc-2006.LICENSE index 5d99c942fe..3241eb9b39 100644 --- a/docs/ogc-2006.LICENSE +++ b/docs/ogc-2006.LICENSE @@ -1,3 +1,22 @@ +--- +key: ogc-2006 +is_deprecated: yes +short_name: OGC Software Notice 2006 +name: OGC Software Notice 2006 +category: Permissive +owner: Open Geospatial Consortium +homepage_url: https://www.ogc.org/ogc/software +notes: duplicate of ogc-1.0 +other_urls: + - http://www.opengeospatial.org/ogc/legal +ignorable_copyrights: + - Copyright (c) Open Geospatial Consortium, Inc. +ignorable_holders: + - Open Geospatial Consortium, Inc. +ignorable_urls: + - http://www.opengeospatial.org/ogc/legal +--- + This OGC work (including software, documents, or other related items) is being provided by the copyright holders under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have read, @@ -35,4 +54,4 @@ CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all -times remain with copyright holders. +times remain with copyright holders. \ No newline at end of file diff --git a/docs/ogc-2006.html b/docs/ogc-2006.html index 47e37a744f..be4e51b2fc 100644 --- a/docs/ogc-2006.html +++ b/docs/ogc-2006.html @@ -195,8 +195,7 @@ The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all -times remain with copyright holders. -
+times remain with copyright holders.
@@ -208,7 +207,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ogc-2006.json b/docs/ogc-2006.json index 241cce20e2..9efbd01052 100644 --- a/docs/ogc-2006.json +++ b/docs/ogc-2006.json @@ -1 +1,22 @@ -{"key": "ogc-2006", "is_deprecated": true, "short_name": "OGC Software Notice 2006", "name": "OGC Software Notice 2006", "category": "Permissive", "owner": "Open Geospatial Consortium", "homepage_url": "https://www.ogc.org/ogc/software", "notes": "duplicate of ogc-1.0", "other_urls": ["http://www.opengeospatial.org/ogc/legal"], "ignorable_copyrights": ["Copyright (c) Open Geospatial Consortium, Inc."], "ignorable_holders": ["Open Geospatial Consortium, Inc."], "ignorable_urls": ["http://www.opengeospatial.org/ogc/legal"]} \ No newline at end of file +{ + "key": "ogc-2006", + "is_deprecated": true, + "short_name": "OGC Software Notice 2006", + "name": "OGC Software Notice 2006", + "category": "Permissive", + "owner": "Open Geospatial Consortium", + "homepage_url": "https://www.ogc.org/ogc/software", + "notes": "duplicate of ogc-1.0", + "other_urls": [ + "http://www.opengeospatial.org/ogc/legal" + ], + "ignorable_copyrights": [ + "Copyright (c) Open Geospatial Consortium, Inc." + ], + "ignorable_holders": [ + "Open Geospatial Consortium, Inc." + ], + "ignorable_urls": [ + "http://www.opengeospatial.org/ogc/legal" + ] +} \ No newline at end of file diff --git a/docs/ogc-document-2020.LICENSE b/docs/ogc-document-2020.LICENSE index 4db3ca6678..a72c321afb 100644 --- a/docs/ogc-document-2020.LICENSE +++ b/docs/ogc-document-2020.LICENSE @@ -1,3 +1,22 @@ +--- +key: ogc-document-2020 +short_name: OGC Document Notice 2020 +name: OGC Document Notice 2020 +category: Proprietary Free +owner: Open Geospatial Consortium +homepage_url: https://www.ogc.org/ogc/Document +spdx_license_key: LicenseRef-scancode-ogc-document-2020 +faq_url: https://www.ogc.org/ogc/legalfaq +other_urls: + - http://www.opengeospatial.org/ogc/legal +ignorable_copyrights: + - Copyright (c) Open Geospatial Consortium, Inc. +ignorable_holders: + - Open Geospatial Consortium, Inc. +ignorable_urls: + - http://www.opengeospatial.org/ogc/document +--- + Document Notice Public documents on the OGC site are provided by the copyright holders under the diff --git a/docs/ogc-document-2020.html b/docs/ogc-document-2020.html index 4e0bf1cc06..992332ea12 100644 --- a/docs/ogc-document-2020.html +++ b/docs/ogc-document-2020.html @@ -216,7 +216,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ogc-document-2020.json b/docs/ogc-document-2020.json index 8c82128fa7..dd0dc9e917 100644 --- a/docs/ogc-document-2020.json +++ b/docs/ogc-document-2020.json @@ -1 +1,22 @@ -{"key": "ogc-document-2020", "short_name": "OGC Document Notice 2020", "name": "OGC Document Notice 2020", "category": "Proprietary Free", "owner": "Open Geospatial Consortium", "homepage_url": "https://www.ogc.org/ogc/Document", "spdx_license_key": "LicenseRef-scancode-ogc-document-2020", "faq_url": "https://www.ogc.org/ogc/legalfaq", "other_urls": ["http://www.opengeospatial.org/ogc/legal"], "ignorable_copyrights": ["Copyright (c) Open Geospatial Consortium, Inc."], "ignorable_holders": ["Open Geospatial Consortium, Inc."], "ignorable_urls": ["http://www.opengeospatial.org/ogc/document"]} \ No newline at end of file +{ + "key": "ogc-document-2020", + "short_name": "OGC Document Notice 2020", + "name": "OGC Document Notice 2020", + "category": "Proprietary Free", + "owner": "Open Geospatial Consortium", + "homepage_url": "https://www.ogc.org/ogc/Document", + "spdx_license_key": "LicenseRef-scancode-ogc-document-2020", + "faq_url": "https://www.ogc.org/ogc/legalfaq", + "other_urls": [ + "http://www.opengeospatial.org/ogc/legal" + ], + "ignorable_copyrights": [ + "Copyright (c) Open Geospatial Consortium, Inc." + ], + "ignorable_holders": [ + "Open Geospatial Consortium, Inc." + ], + "ignorable_urls": [ + "http://www.opengeospatial.org/ogc/document" + ] +} \ No newline at end of file diff --git a/docs/ogc.LICENSE b/docs/ogc.LICENSE index d00722501a..4920382172 100644 --- a/docs/ogc.LICENSE +++ b/docs/ogc.LICENSE @@ -1,3 +1,15 @@ +--- +key: ogc +short_name: OGC Software Notice +name: OGC Software Notice +category: Permissive +owner: Open Geospatial Consortium +homepage_url: https://www.ogc.org/ogc/software +spdx_license_key: LicenseRef-scancode-ogc +other_urls: + - http://www.opengeospatial.org/ogc/legal +--- + This OGC work (including software, documents, or other related items) is being provided by the copyright holders under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have read, diff --git a/docs/ogc.html b/docs/ogc.html index 5c4d29eff5..7f14960c97 100644 --- a/docs/ogc.html +++ b/docs/ogc.html @@ -165,7 +165,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ogc.json b/docs/ogc.json index 4dee3a32c2..65a802efa7 100644 --- a/docs/ogc.json +++ b/docs/ogc.json @@ -1 +1,12 @@ -{"key": "ogc", "short_name": "OGC Software Notice", "name": "OGC Software Notice", "category": "Permissive", "owner": "Open Geospatial Consortium", "homepage_url": "https://www.ogc.org/ogc/software", "spdx_license_key": "LicenseRef-scancode-ogc", "other_urls": ["http://www.opengeospatial.org/ogc/legal"]} \ No newline at end of file +{ + "key": "ogc", + "short_name": "OGC Software Notice", + "name": "OGC Software Notice", + "category": "Permissive", + "owner": "Open Geospatial Consortium", + "homepage_url": "https://www.ogc.org/ogc/software", + "spdx_license_key": "LicenseRef-scancode-ogc", + "other_urls": [ + "http://www.opengeospatial.org/ogc/legal" + ] +} \ No newline at end of file diff --git a/docs/ogdl-taiwan-1.0.LICENSE b/docs/ogdl-taiwan-1.0.LICENSE index 2850dbb6f9..195f3901ad 100644 --- a/docs/ogdl-taiwan-1.0.LICENSE +++ b/docs/ogdl-taiwan-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: ogdl-taiwan-1.0 +short_name: Taiwan Open Government Data License, version 1.0 +name: Taiwan Open Government Data License, version 1.0 +category: Permissive +owner: Taiwan National Development Council +homepage_url: https://data.gov.tw/en/license +spdx_license_key: OGDL-Taiwan-1.0 +other_urls: + - https://data.gov.tw/license +ignorable_urls: + - https://data.gov.tw/license +--- + Open Government Data License, version 1.0 The Open Government Data License (the License) is intended to facilitate government data sharing and application among the public in outreaching and promotion method, and to advance government service efficacy and government data value and quality in collaboration with the creative private sector. diff --git a/docs/ogdl-taiwan-1.0.html b/docs/ogdl-taiwan-1.0.html index 4be0fc46bb..383807d9e5 100644 --- a/docs/ogdl-taiwan-1.0.html +++ b/docs/ogdl-taiwan-1.0.html @@ -213,7 +213,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ogdl-taiwan-1.0.json b/docs/ogdl-taiwan-1.0.json index b7a1d9ddee..cbb252c445 100644 --- a/docs/ogdl-taiwan-1.0.json +++ b/docs/ogdl-taiwan-1.0.json @@ -1 +1,15 @@ -{"key": "ogdl-taiwan-1.0", "short_name": "Taiwan Open Government Data License, version 1.0", "name": "Taiwan Open Government Data License, version 1.0", "category": "Permissive", "owner": "Taiwan National Development Council", "homepage_url": "https://data.gov.tw/en/license", "spdx_license_key": "OGDL-Taiwan-1.0", "other_urls": ["https://data.gov.tw/license"], "ignorable_urls": ["https://data.gov.tw/license"]} \ No newline at end of file +{ + "key": "ogdl-taiwan-1.0", + "short_name": "Taiwan Open Government Data License, version 1.0", + "name": "Taiwan Open Government Data License, version 1.0", + "category": "Permissive", + "owner": "Taiwan National Development Council", + "homepage_url": "https://data.gov.tw/en/license", + "spdx_license_key": "OGDL-Taiwan-1.0", + "other_urls": [ + "https://data.gov.tw/license" + ], + "ignorable_urls": [ + "https://data.gov.tw/license" + ] +} \ No newline at end of file diff --git a/docs/ogl-1.0a.LICENSE b/docs/ogl-1.0a.LICENSE index a9407f5dc7..882ef2000a 100644 --- a/docs/ogl-1.0a.LICENSE +++ b/docs/ogl-1.0a.LICENSE @@ -1,3 +1,21 @@ +--- +key: ogl-1.0a +short_name: OGL 1.0a +name: Open Game License v1.0a +category: Permissive +owner: Anthony Ronda +homepage_url: https://raw.githubusercontent.com/anthonyronda/LicenseRef-OGL-1.0a/main/LICENSE +spdx_license_key: LicenseRef-scancode-ogl-1.0a +other_urls: + - https://github.com/anthonyronda/awesome-ogl +ignorable_copyrights: + - Copyright 2000 Wizards of the Coast, Inc 'Wizards + - Copyright 2000, Wizards of the Coast, Inc. +ignorable_holders: + - Wizards of the Coast, Inc 'Wizards + - Wizards of the Coast, Inc. +--- + OPEN GAME LICENSE Version 1.0a The following text is the property of Wizards of the Coast, Inc. and is diff --git a/docs/ogl-1.0a.html b/docs/ogl-1.0a.html index 71f350e4c5..c70fcbe02b 100644 --- a/docs/ogl-1.0a.html +++ b/docs/ogl-1.0a.html @@ -256,7 +256,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ogl-1.0a.json b/docs/ogl-1.0a.json index 37599da80f..d5cb732c98 100644 --- a/docs/ogl-1.0a.json +++ b/docs/ogl-1.0a.json @@ -1 +1,20 @@ -{"key": "ogl-1.0a", "short_name": "OGL 1.0a", "name": "Open Game License v1.0a", "category": "Permissive", "owner": "Anthony Ronda", "homepage_url": "https://raw.githubusercontent.com/anthonyronda/LicenseRef-OGL-1.0a/main/LICENSE", "spdx_license_key": "LicenseRef-scancode-ogl-1.0a", "other_urls": ["https://github.com/anthonyronda/awesome-ogl"], "ignorable_copyrights": ["Copyright 2000 Wizards of the Coast, Inc 'Wizards", "Copyright 2000, Wizards of the Coast, Inc."], "ignorable_holders": ["Wizards of the Coast, Inc 'Wizards", "Wizards of the Coast, Inc."]} \ No newline at end of file +{ + "key": "ogl-1.0a", + "short_name": "OGL 1.0a", + "name": "Open Game License v1.0a", + "category": "Permissive", + "owner": "Anthony Ronda", + "homepage_url": "https://raw.githubusercontent.com/anthonyronda/LicenseRef-OGL-1.0a/main/LICENSE", + "spdx_license_key": "LicenseRef-scancode-ogl-1.0a", + "other_urls": [ + "https://github.com/anthonyronda/awesome-ogl" + ], + "ignorable_copyrights": [ + "Copyright 2000 Wizards of the Coast, Inc 'Wizards", + "Copyright 2000, Wizards of the Coast, Inc." + ], + "ignorable_holders": [ + "Wizards of the Coast, Inc 'Wizards", + "Wizards of the Coast, Inc." + ] +} \ No newline at end of file diff --git a/docs/ogl-canada-2.0-fr.LICENSE b/docs/ogl-canada-2.0-fr.LICENSE index c18961c039..e4437951c8 100644 --- a/docs/ogl-canada-2.0-fr.LICENSE +++ b/docs/ogl-canada-2.0-fr.LICENSE @@ -1,3 +1,13 @@ +--- +key: ogl-canada-2.0-fr +language: fr +short_name: OGL Canada 2.0 Francais +name: Licence du gouvernement ouvert Canada 2.0 +category: Permissive +owner: Canada Government +homepage_url: https://ouvert.canada.ca/fr/licence-du-gouvernement-ouvert-canada +spdx_license_key: LicenseRef-scancode-ogl-canada-2.0-fr +--- Licence du gouvernement ouvert – Canada diff --git a/docs/ogl-canada-2.0-fr.html b/docs/ogl-canada-2.0-fr.html index be943e02a4..16b95f0db7 100644 --- a/docs/ogl-canada-2.0-fr.html +++ b/docs/ogl-canada-2.0-fr.html @@ -122,8 +122,7 @@
license_text
-

-Licence du gouvernement ouvert – Canada
+    
Licence du gouvernement ouvert – Canada
 
 Nous vous encourageons à utiliser l'Information offerte en vertu de la présente licence, sous réserve de quelques conditions.
 Utilisation de l'Information visée par cette licence
@@ -192,7 +191,8 @@
       AboutCode
     

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ogl-canada-2.0-fr.json b/docs/ogl-canada-2.0-fr.json index 48b1666db7..084bc414ee 100644 --- a/docs/ogl-canada-2.0-fr.json +++ b/docs/ogl-canada-2.0-fr.json @@ -1 +1,10 @@ -{"key": "ogl-canada-2.0-fr", "language": "fr", "short_name": "OGL Canada 2.0 Francais", "name": "Licence du gouvernement ouvert Canada 2.0", "category": "Permissive", "owner": "Canada Government", "homepage_url": "https://ouvert.canada.ca/fr/licence-du-gouvernement-ouvert-canada", "spdx_license_key": "LicenseRef-scancode-ogl-canada-2.0-fr"} \ No newline at end of file +{ + "key": "ogl-canada-2.0-fr", + "language": "fr", + "short_name": "OGL Canada 2.0 Francais", + "name": "Licence du gouvernement ouvert Canada 2.0", + "category": "Permissive", + "owner": "Canada Government", + "homepage_url": "https://ouvert.canada.ca/fr/licence-du-gouvernement-ouvert-canada", + "spdx_license_key": "LicenseRef-scancode-ogl-canada-2.0-fr" +} \ No newline at end of file diff --git a/docs/ogl-uk-1.0.LICENSE b/docs/ogl-uk-1.0.LICENSE index 24139e53dd..e66a289741 100644 --- a/docs/ogl-uk-1.0.LICENSE +++ b/docs/ogl-uk-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: ogl-uk-1.0 +short_name: OGL-UK-1.0 +name: U.K. Open Government License for Public Sector Information v1.0 +category: Permissive +owner: U.K. National Archives +homepage_url: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/ +spdx_license_key: OGL-UK-1.0 +other_urls: + - http://www.nationalarchives.gov.uk/doc/open-government-licence/ +--- + You are encouraged to use and re-use the Information that is available under this licence, the Open Government Licence, freely and flexibly, with only a few conditions. @@ -101,4 +113,4 @@ to use Information licensed under this version should you wish to do so. These terms have been aligned to be interoperable with any Creative Commons Attribution Licence, which covers copyright, and Open Data Commons Attribution License, which covers database rights and applicable copyrights. -Further context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website. +Further context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website. \ No newline at end of file diff --git a/docs/ogl-uk-1.0.html b/docs/ogl-uk-1.0.html index 1887189e6c..6a81a7562c 100644 --- a/docs/ogl-uk-1.0.html +++ b/docs/ogl-uk-1.0.html @@ -227,8 +227,7 @@ These terms have been aligned to be interoperable with any Creative Commons Attribution Licence, which covers copyright, and Open Data Commons Attribution License, which covers database rights and applicable copyrights. -Further context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website. -
+Further context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website.
@@ -240,7 +239,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ogl-uk-1.0.json b/docs/ogl-uk-1.0.json index e2a6b6f7e5..7fc700a531 100644 --- a/docs/ogl-uk-1.0.json +++ b/docs/ogl-uk-1.0.json @@ -1 +1,12 @@ -{"key": "ogl-uk-1.0", "short_name": "OGL-UK-1.0", "name": "U.K. Open Government License for Public Sector Information v1.0", "category": "Permissive", "owner": "U.K. National Archives", "homepage_url": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/", "spdx_license_key": "OGL-UK-1.0", "other_urls": ["http://www.nationalarchives.gov.uk/doc/open-government-licence/"]} \ No newline at end of file +{ + "key": "ogl-uk-1.0", + "short_name": "OGL-UK-1.0", + "name": "U.K. Open Government License for Public Sector Information v1.0", + "category": "Permissive", + "owner": "U.K. National Archives", + "homepage_url": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/", + "spdx_license_key": "OGL-UK-1.0", + "other_urls": [ + "http://www.nationalarchives.gov.uk/doc/open-government-licence/" + ] +} \ No newline at end of file diff --git a/docs/ogl-uk-2.0.LICENSE b/docs/ogl-uk-2.0.LICENSE index f5e9144d81..ba984491fa 100644 --- a/docs/ogl-uk-2.0.LICENSE +++ b/docs/ogl-uk-2.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: ogl-uk-2.0 +short_name: OGL-UK-2.0 +name: U.K. Open Government License for Public Sector Information v2.0 +category: Permissive +owner: U.K. National Archives +homepage_url: https://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/ +spdx_license_key: OGL-UK-2.0 +other_urls: + - http://www.nationalarchives.gov.uk/doc/open-government-licence/ + - http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/ +--- + You are encouraged to use and re-use the Information that is available under this licence freely and flexibly, with only a few conditions. Using Information under this licence diff --git a/docs/ogl-uk-2.0.html b/docs/ogl-uk-2.0.html index f9bcfd7350..ee0573cae7 100644 --- a/docs/ogl-uk-2.0.html +++ b/docs/ogl-uk-2.0.html @@ -210,7 +210,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ogl-uk-2.0.json b/docs/ogl-uk-2.0.json index f0944a5beb..9e124fc619 100644 --- a/docs/ogl-uk-2.0.json +++ b/docs/ogl-uk-2.0.json @@ -1 +1,13 @@ -{"key": "ogl-uk-2.0", "short_name": "OGL-UK-2.0", "name": "U.K. Open Government License for Public Sector Information v2.0", "category": "Permissive", "owner": "U.K. National Archives", "homepage_url": "https://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/", "spdx_license_key": "OGL-UK-2.0", "other_urls": ["http://www.nationalarchives.gov.uk/doc/open-government-licence/", "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"]} \ No newline at end of file +{ + "key": "ogl-uk-2.0", + "short_name": "OGL-UK-2.0", + "name": "U.K. Open Government License for Public Sector Information v2.0", + "category": "Permissive", + "owner": "U.K. National Archives", + "homepage_url": "https://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/", + "spdx_license_key": "OGL-UK-2.0", + "other_urls": [ + "http://www.nationalarchives.gov.uk/doc/open-government-licence/", + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/" + ] +} \ No newline at end of file diff --git a/docs/ogl-uk-3.0.LICENSE b/docs/ogl-uk-3.0.LICENSE index da34636e03..729e5ef886 100644 --- a/docs/ogl-uk-3.0.LICENSE +++ b/docs/ogl-uk-3.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: ogl-uk-3.0 +short_name: OGL-UK-3.0 +name: U.K. Open Government License for Public Sector Information v3.0 +category: Permissive +owner: U.K. National Archives +homepage_url: https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/ +spdx_license_key: OGL-UK-3.0 +other_urls: + - http://www.nationalarchives.gov.uk/doc/open-government-licence/ + - http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/ +--- + You are encouraged to use and re-use the Information that is available under this licence freely and flexibly, with only a few conditions. Using Information under this licence diff --git a/docs/ogl-uk-3.0.html b/docs/ogl-uk-3.0.html index c7a2f7a6f3..2b09de0f68 100644 --- a/docs/ogl-uk-3.0.html +++ b/docs/ogl-uk-3.0.html @@ -207,7 +207,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ogl-uk-3.0.json b/docs/ogl-uk-3.0.json index 24b4a0dc82..4c88ef8e56 100644 --- a/docs/ogl-uk-3.0.json +++ b/docs/ogl-uk-3.0.json @@ -1 +1,13 @@ -{"key": "ogl-uk-3.0", "short_name": "OGL-UK-3.0", "name": "U.K. Open Government License for Public Sector Information v3.0", "category": "Permissive", "owner": "U.K. National Archives", "homepage_url": "https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", "spdx_license_key": "OGL-UK-3.0", "other_urls": ["http://www.nationalarchives.gov.uk/doc/open-government-licence/", "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"]} \ No newline at end of file +{ + "key": "ogl-uk-3.0", + "short_name": "OGL-UK-3.0", + "name": "U.K. Open Government License for Public Sector Information v3.0", + "category": "Permissive", + "owner": "U.K. National Archives", + "homepage_url": "https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "spdx_license_key": "OGL-UK-3.0", + "other_urls": [ + "http://www.nationalarchives.gov.uk/doc/open-government-licence/", + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/" + ] +} \ No newline at end of file diff --git a/docs/ogl-wpd-3.0.LICENSE b/docs/ogl-wpd-3.0.LICENSE index a5719f3113..6e90c8ef82 100644 --- a/docs/ogl-wpd-3.0.LICENSE +++ b/docs/ogl-wpd-3.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: ogl-wpd-3.0 +short_name: OGL-WPD-3.0 +name: Western Power Distribution Open Data Licence v3.0 +category: Permissive +owner: Western Power Distribution +homepage_url: https://www.westernpower.co.uk/open-data-licence +notes: derived from the ogl-uk-3.0 license +spdx_license_key: LicenseRef-scancode-ogl-wpd-3.0 +ignorable_emails: + - dsodigitalisation@westernpower.co.uk +--- + Open Data Licence Below is WPD's Open Data Licence (latest version December 2020). These licence terms and conditions (the “Licence”) apply to the WPD's datasets as specified within the ‘Connected Data’ data access service. These terms are based on the Open Government Licence v3.0. @@ -84,4 +97,4 @@ The National Archives may, from time to time, issue new versions of the Open Gov The Open Government Licence 3.0 is compatible with the Creative Commons Attribution License 4.0 and the Open Data Commons Attribution License, both of which license copyright and database rights. This means that when the Information is adapted and licensed under either of those licences, you automatically satisfy the conditions of the OGL when you comply with the other licence. The OGLv3.0 is Open Definition compliant. -Further context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website. +Further context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website. \ No newline at end of file diff --git a/docs/ogl-wpd-3.0.html b/docs/ogl-wpd-3.0.html index a8fa755cad..09ff8553cc 100644 --- a/docs/ogl-wpd-3.0.html +++ b/docs/ogl-wpd-3.0.html @@ -217,8 +217,7 @@ The Open Government Licence 3.0 is compatible with the Creative Commons Attribution License 4.0 and the Open Data Commons Attribution License, both of which license copyright and database rights. This means that when the Information is adapted and licensed under either of those licences, you automatically satisfy the conditions of the OGL when you comply with the other licence. The OGLv3.0 is Open Definition compliant. -Further context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website. - +Further context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website.
@@ -230,7 +229,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ogl-wpd-3.0.json b/docs/ogl-wpd-3.0.json index 30fb8b0fb3..6e3e82f553 100644 --- a/docs/ogl-wpd-3.0.json +++ b/docs/ogl-wpd-3.0.json @@ -1 +1,13 @@ -{"key": "ogl-wpd-3.0", "short_name": "OGL-WPD-3.0", "name": "Western Power Distribution Open Data Licence v3.0", "category": "Permissive", "owner": "Western Power Distribution", "homepage_url": "https://www.westernpower.co.uk/open-data-licence", "notes": "derived from the ogl-uk-3.0 license", "spdx_license_key": "LicenseRef-scancode-ogl-wpd-3.0", "ignorable_emails": ["dsodigitalisation@westernpower.co.uk"]} \ No newline at end of file +{ + "key": "ogl-wpd-3.0", + "short_name": "OGL-WPD-3.0", + "name": "Western Power Distribution Open Data Licence v3.0", + "category": "Permissive", + "owner": "Western Power Distribution", + "homepage_url": "https://www.westernpower.co.uk/open-data-licence", + "notes": "derived from the ogl-uk-3.0 license", + "spdx_license_key": "LicenseRef-scancode-ogl-wpd-3.0", + "ignorable_emails": [ + "dsodigitalisation@westernpower.co.uk" + ] +} \ No newline at end of file diff --git a/docs/ohdl-1.0.LICENSE b/docs/ohdl-1.0.LICENSE index b55ea6bfb2..bd4ad8a10b 100644 --- a/docs/ohdl-1.0.LICENSE +++ b/docs/ohdl-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: ohdl-1.0 +short_name: OHDL-1.0 +name: Open Hardware Description License Version 1.0 +category: Copyleft Limited +owner: FOSSi Foundation +homepage_url: http://juliusbaxter.net/ohdl/ohdl.txt +spdx_license_key: LicenseRef-scancode-ohdl-1.0 +faq_url: http://juliusbaxter.net/ohdl/ +ignorable_urls: + - http://juliusbaxter.net/ohdl/ohdl.txt +--- + Open Hardware Description License Version 1.0 (Based on the MPL 2.0 RC2) ======================================================== diff --git a/docs/ohdl-1.0.html b/docs/ohdl-1.0.html index 5c22b40425..2065901097 100644 --- a/docs/ohdl-1.0.html +++ b/docs/ohdl-1.0.html @@ -512,7 +512,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ohdl-1.0.json b/docs/ohdl-1.0.json index 5bfb29df04..c405b849c9 100644 --- a/docs/ohdl-1.0.json +++ b/docs/ohdl-1.0.json @@ -1 +1,13 @@ -{"key": "ohdl-1.0", "short_name": "OHDL-1.0", "name": "Open Hardware Description License Version 1.0", "category": "Copyleft Limited", "owner": "FOSSi Foundation", "homepage_url": "http://juliusbaxter.net/ohdl/ohdl.txt", "spdx_license_key": "LicenseRef-scancode-ohdl-1.0", "faq_url": "http://juliusbaxter.net/ohdl/", "ignorable_urls": ["http://juliusbaxter.net/ohdl/ohdl.txt"]} \ No newline at end of file +{ + "key": "ohdl-1.0", + "short_name": "OHDL-1.0", + "name": "Open Hardware Description License Version 1.0", + "category": "Copyleft Limited", + "owner": "FOSSi Foundation", + "homepage_url": "http://juliusbaxter.net/ohdl/ohdl.txt", + "spdx_license_key": "LicenseRef-scancode-ohdl-1.0", + "faq_url": "http://juliusbaxter.net/ohdl/", + "ignorable_urls": [ + "http://juliusbaxter.net/ohdl/ohdl.txt" + ] +} \ No newline at end of file diff --git a/docs/okl.LICENSE b/docs/okl.LICENSE index 8a8d4e9c7c..3d45e8de17 100644 --- a/docs/okl.LICENSE +++ b/docs/okl.LICENSE @@ -1,3 +1,14 @@ +--- +key: okl +short_name: OKL license +name: OKL license +category: Copyleft +owner: General Dynamics +homepage_url: https://gdmissionsystems.com/cyber/products/trusted-computing-cross-domain/microvisor-products/ +spdx_license_key: LicenseRef-scancode-okl +minimum_coverage: 80 +--- + 1. Redistribution and use of (Software) in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/okl.html b/docs/okl.html index df5f488690..da2f92793c 100644 --- a/docs/okl.html +++ b/docs/okl.html @@ -185,7 +185,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/okl.json b/docs/okl.json index fa919eebdd..64f629bb26 100644 --- a/docs/okl.json +++ b/docs/okl.json @@ -1 +1,10 @@ -{"key": "okl", "short_name": "OKL license", "name": "OKL license", "category": "Copyleft", "owner": "General Dynamics", "homepage_url": "https://gdmissionsystems.com/cyber/products/trusted-computing-cross-domain/microvisor-products/", "spdx_license_key": "LicenseRef-scancode-okl", "minimum_coverage": 80} \ No newline at end of file +{ + "key": "okl", + "short_name": "OKL license", + "name": "OKL license", + "category": "Copyleft", + "owner": "General Dynamics", + "homepage_url": "https://gdmissionsystems.com/cyber/products/trusted-computing-cross-domain/microvisor-products/", + "spdx_license_key": "LicenseRef-scancode-okl", + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/olf-ccla-1.0.LICENSE b/docs/olf-ccla-1.0.LICENSE new file mode 100644 index 0000000000..b81a80c74f --- /dev/null +++ b/docs/olf-ccla-1.0.LICENSE @@ -0,0 +1,147 @@ +--- +key: olf-ccla-1.0 +short_name: OLF-CCLA-1.0 +name: Open Logistics Foundation Corporate Contributor CLA 1.0 +category: CLA +owner: Open Logistics Foundation +homepage_url: https://www.openlogisticsfoundation.org/licenses +spdx_license_key: LicenseRef-scancode-olf-ccla-1.0 +ignorable_authors: + - the Open Logistics Foundation +ignorable_urls: + - https://www.openlogisticsfoundation.org/licenses +ignorable_emails: + - info@openlogisticsfoundation.org +--- + +Open Logistics Foundation +Corporate Contributor License Agreement (“CLA”) +Version 1.0, March 2022 +https://www.openlogisticsfoundation.org/licenses + +The Open Logistics Foundation provides a framework for the design, development and use of open source solutions in logistics. Within this framework, developers bring together their efforts for increased efficiency and successful commercial use on the basis of open source components. + +This CLA enables the Contributor to submit Contributions to the Open Logistics Foundation, or to have them submitted, and to grant the rights stated below in such Contribution/s in their entirety. This CLA determines which of the Contributor’s rights in their Contributions to the Open Logistics Foundation will be granted by the Contributor to the Open Logistics Foundation and the conditions that must be observed in that regard. + +By way of conclusion of this CLA, the Contributor accepts the following conditions for their current and future Contributions to the Open Logistics Foundation. Except for the licenses granted in this CLA to the Open Logistics Foundation and the recipients of Works containing such Contribution distributed by the Open Logistics Foundation, the Contributor reserves all rights in their Contributions. + +Please complete, sign and send this Agreement to info@openlogisticsfoundation.org. The CLA is concluded when the Open Logistics Foundation expressly confirms the conclusion of the CLA or activates access to the Open Logistics Repository for the Contributor, thereby enabling the Contributor to submit Contributions. + +Corporation name: +Corporation address: +Point of Contact / CLA-Manager: +E-Mail: +Phone: + +Referred to as “Contributor” or “you” + +1 Definitions + +(1) “Contribution” means any work protected under copyright, design and/or patent law, including any modifications of or additions to this work as well as adaptations of the work, that are submitted by the Contributor as copyright holder or by parties legally or contractually entitled to do so by copyright holders to the Open Logistics Foundation for inclusion in works developed and distributed by the Open Logistics Foundation. Within the meaning of this definition, “submit” means any form of electronic or written communication which is intentionally submitted to the Open Logistics Foundation to discuss or improve a current or future work or project undertaken by the Open Logistics Foundation, including but not limited to communications sent via electronic mailing lists, source code control systems and issue tracking systems; however, communications that the Contributor or any employee specifically named by him/her have clearly marked as “no contribution”, or which are otherwise identified as such in writing, are excluded. + +(2) “Work” means any work protected under copyright, design and/or patent law containing a Contribution. + +(3) “Committers” are persons named by the Open Logistics Foundation or by Contributors who have write access to works or projects undertaken by the Open Logistics Foundation in the version control system. + +(4) “Source Code” means the version of the code of the respective Contribution – if the Contribution is a software – in the programming language. + +(5) “Object Code” means the intermediate product of a compilation or translation process of the Source Code. + +2 Granting of usage rights +The Contributor hereby grants the Open Logistics Foundation and any third party who receives and/or uses a Work or the Contributions themselves – whether adapted or not - for the duration of the existence of the copyrights pertaining to such Contributions +• the royalty-free and non-exclusive right, +• sublicensable for commercial and non-commercial purposes +• worldwide and perpetual, +• irrevocable and non-terminable, +to use the Contributions in their original form or in modified, translated, edited or transformed form on their own or as a part of a Work in the following ways: +• use them in any hardware and software environment, - insofar as the Contribution is a software – in particular to store or load them permanently or temporarily, to display them and run them, including to the extent reproductions are necessary to that end, +• modify, translate, edit or transform them in another way, +• store, reproduce, exhibit or publish them, distribute them in tangible or intangible form, on any medium or in any other way, for commercial and non-commercial purposes, in particular to communicate them privately or publicly, also through image, audio and other information carriers, irrespective of whether by wire or wireless means, +• use them in databases, data networks and online services, including the right to make it available in Source Code or Object Code to users of the aforementioned databases, networks and online services for research and retrieval purposes, +• allow third parties to use or operate them, +• use them not only for own purposes but also to provide services to third parties, +• distribute them. + +The above right of use relates to the Contributions, in particular – insofar as the Contribution is a software– their Source Code and Object Code in any and all forms. The above usage rights include – where applicable – design rights. + +3 Granting of a patent license + +(1) For any patents (including pending patent applications) owned and licensable by the Contributor at the time of the submission of the Contribution, the Contributor hereby grants the Open Logistics Foundation and any third party who receives and/or uses a Work containing the Contributions or the Contributions themselves - adapted or not - a +• perpetual, +• worldwide, +• non-exclusive, +• free of charge, +• irrevocable +patent license in all rights deriving from the patent to +• produce, +• arrange to have produced, +• use, +• offer for sale, +• sell, +• import and otherwise transfer + + the Work or the respective Contributions. + +However, this patent license covers only those rights deriving from the patent of the respective Contributor as are indispensable in order not to infringe that patent and only to the extent that the use of the Contributor’s respective Contribution, whether in itself or as a combination with other Contributions of the Contributor or any third parties together with the Work for which these Contributions were submitted, would otherwise infringe that patent. For avoidance of doubt, no patent licenses are granted for the use of a Work or the Contribution which become necessary for lawful use because third party modifications are made to the Work or the respective Contribution after the Contribution has been submitted by the Contributor. + +(2) If any entity or person institutes patent litigation against You or any other entity or person (including a cross-claim or counterclaim in a lawsuit) alleging that your Contribution, or the Work to which you have contributed, constitutes direct or contributory patent infringement, then any patent licenses granted to that person or entity under this CLA for that Contribution or Work shall terminate as of the date such litigation is filed. + +(3) The Contributor is entitled to decide in its own discretion to abandon respectively maintain any patent for which he has granted a patent license in accordance with para. 1 of this Section 3. + +4 Contributor’s binding representations + +(1) The Contributor hereby represents that +a. it is entitled to grant the usage rights and - to the extent applicable - patent licenses for Contributions under this CLA, and +b. by granting usage rights under Section 2 above and patent licenses under Section 3 above, they are not infringing any rights granted by the Contributor to third parties. + +(2) Furthermore, the Contributor hereby undertakes to identify by name all employees and service providers who submit Contributions or otherwise make them available to the Open Logistics Foundation in the Contributor’s name, and that all employees and service providers they identify by name to the Open Logistics Foundation are authorised to submit Contributions in the Contributor’s name; identifying the employees in this regard shall be at least in text form (as per Sec. 126b German Civil Code). It is the Contributor’s sole responsibility to notify the Open Logistics Foundation if changes need to be made to the list of named employees authorised to make Contributions in the Contributor’s name. + +(3) If the Contributor wishes to submit a third-party work, this must take place separately from any Contribution, in which case the complete details of the source and all licenses or other limitations (including but not limited to any associated patents, trademarks and licensing agreements) which they are personally aware of must be provided. The corresponding work must be clearly identified as a third-party work when it is submitted. + +5 Trademarks +The Contributor does not grant permission to use its trade names, trademarks, service marks or product names. + +6 No restriction on other use by the Contributor +The Contributor is expressly permitted to use and exploit the Contributions on a commercial or non– commercial basis – individually, in part or as part of another work – in accordance with the rights held by the Contributor, provided that such other use or exploitation does not conflict with the rights granted under this CLA. + +7 Obligations of the Open Logistics Foundation + +(1) The Open Logistics Foundation is not obliged to incorporate the Contributor’s Contributions into any Work or to use them in any other way. + +(2) If a Work is distributed by the Open Logistics Foundation by way of incorporation of the Contributor’s Contributions or if the Contributions themselves are distributed, the Open Logistics Foundation is obliged - irrespective of whether the Contributions have been modified by the Open Logistics Foundation or any third party - +a. to retain and to oblige the recipients of the Work to retain all copyright, patent, trade mark and name credit notices in the Contributions - in the form as distributed - with the exception of those notices that do not pertain to any part of the distributed Contributions; +b. to grant the Contributor a license to the rights in the distributed Work that contains the Contributor’s Contributions, corresponding to Sections 2 and 3 above. + +8 Contributor’s assumption of the role of Committer +If the Open Logistics Foundation under a separate agreement assigns the role of a Committer to the Contributor and the Contributor accepts the role, the Contributor must comply with the guidelines, policies and codes of conduct imposed as part of the assignment. + +9 Limitation of liability +Except in cases of intent and gross negligence or causing personal injury, the Contributor, its legal representatives, trustees, officers and employees shall not be liable towards the Open Logistics Foundation for direct or indirect, material or immaterial losses of any kind arising from the use of the Contributions; this includes but is not limited to loss of goodwill, interruption of production, computer failures or errors, loss of data or economic losses, even if the Contributor has been made aware of the possibility of such losses. Notwithstanding the above, the Contributor shall only be liable under product liability law to the extent that the respective provisions are applicable to the Contributions. +Except in case of intent or gross negligence the Contributor, its legal representatives, trustees, officers and employees shall not be liable that any of the Contributions is free from any claim of infringement of any patent or any other intellectual property right owned by any third party, accurate, devoid of mistakes, complete and/or usable for any purpose. + +10 Other provisions + +(1) This CLA is governed by German law, excluding the UN Convention on Contracts for the International Sale of Goods (CISG). Exclusive place of jurisdiction for all disputes between the parties regarding + the interpretation of this CLA is Dortmund. This CLA or any provision thereof may be amended or modified only with the mutual consent of the contracting parties as set out in a written instrument. This requirement of written form can only be deviated from in writing. + +(2) Any failure by the Open Logistics Foundation or the Contributor to insist that the other Party adhere to a provision of this CLA in a given situation does not affect the right of such Party to require adherence in the same regard at a later date. Waiving compliance with a provision in one situation shall not be deemed a waiver of compliance with that provision in the future or as a waiver of the provision in its entirety. + +(3) If any provision of this CLA should prove to be invalid and unenforceable, then the validity of the remaining provisions shall remain unaffected. In this case, that provision will be replaced, as far as possible, by an enforceable provision that most closely reflects the meaning of the original provision. + +Location: +Date: +Signature: +Title and name: +Position and corporation: + +***** +Initial list of designated employees. The authorization is not tied to particular Contributions. +Full Name +E-Mail + +It is your responsibility to notify the Foundation when any change is required to the list of designated employees authorized to submit Contributions on behalf of the Corporation, or to the Corporation's Point of Contact with the Foundation. + +Open Logistics Foundation Emil-Figge-Straße 80 | D-44227 Dortmund | Germany +BoardJochen Thewes – Chairman | Stefan Hohm and Dr. Stephan Peters – Deputy Chairmen +Managing Directors Andreas Nettsträter | Thorsten Hülsmann +Cheques and transfers payable to Sparkasse Dortmund | IBAN DE63440501990001146017 | BIC (Swift Code) DORTDE33XXX VAT Ident no. DE350640517 | Tax no. 315/5704/0848 | Supervisory authority Bezirksregierung Arnsberg \ No newline at end of file diff --git a/docs/olf-ccla-1.0.html b/docs/olf-ccla-1.0.html new file mode 100644 index 0000000000..0d5172d15b --- /dev/null +++ b/docs/olf-ccla-1.0.html @@ -0,0 +1,307 @@ + + + + + + LicenseDB: olf-ccla-1.0 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + olf-ccla-1.0 + +
+ +
short_name
+
+ + OLF-CCLA-1.0 + +
+ +
name
+
+ + Open Logistics Foundation Corporate Contributor CLA 1.0 + +
+ +
category
+
+ + CLA + +
+ +
owner
+
+ + Open Logistics Foundation + +
+ +
homepage_url
+
+ + https://www.openlogisticsfoundation.org/licenses + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-olf-ccla-1.0 + +
+ +
ignorable_authors
+
+ +
    +
  • the Open Logistics Foundation
  • +
+ +
+ +
ignorable_urls
+
+ + + +
+ +
ignorable_emails
+
+ + + +
+ +
+
license_text
+
Open Logistics Foundation
+Corporate Contributor License Agreement (“CLA”) 
+Version 1.0, March 2022 
+https://www.openlogisticsfoundation.org/licenses
+
+The Open Logistics Foundation provides a framework for the design, development and use of open source solutions in logistics. Within this framework, developers bring together their efforts for increased efficiency and successful commercial use on the basis of open source components.
+
+This CLA enables the Contributor to submit Contributions to the Open Logistics Foundation, or to have them submitted, and to grant the rights stated below in such Contribution/s in their entirety. This CLA determines which of the Contributor’s rights in their Contributions to the Open Logistics Foundation will be granted by the Contributor to the Open Logistics Foundation and the conditions that must be observed in that regard.
+
+By way of conclusion of this CLA, the Contributor accepts the following conditions for their current and future Contributions to the Open Logistics Foundation. Except for the licenses granted in this CLA to the Open Logistics Foundation and the recipients of Works containing such Contribution distributed by the Open Logistics Foundation, the Contributor reserves all rights in their Contributions.
+
+Please complete, sign and send this Agreement to info@openlogisticsfoundation.org. The CLA is concluded when the Open Logistics Foundation expressly confirms the conclusion of the CLA or activates access to the Open Logistics Repository for the Contributor, thereby enabling the Contributor to submit Contributions.
+
+Corporation name: 
+Corporation address:
+Point of Contact / CLA-Manager:
+E-Mail:
+Phone:
+
+Referred to as “Contributor” or “you”
+
+1 Definitions
+
+(1) “Contribution” means any work protected under copyright, design and/or patent law, including any modifications of or additions to this work as well as adaptations of the work, that are submitted by the Contributor as copyright holder or by parties legally or contractually entitled to do so by copyright holders to the Open Logistics Foundation for inclusion in works developed and distributed by the Open Logistics Foundation. Within the meaning of this definition, “submit” means any form of electronic or written communication which is intentionally submitted to the Open Logistics Foundation to discuss or improve a current or future work or project undertaken by the Open Logistics Foundation, including but not limited to communications sent via electronic mailing lists, source code control systems and issue tracking systems; however, communications that the Contributor or any employee specifically named by him/her have clearly marked as “no contribution”, or which are otherwise identified as such in writing, are excluded.
+
+(2) “Work” means any work protected under copyright, design and/or patent law containing a Contribution.
+
+(3) “Committers” are persons named by the Open Logistics Foundation or by Contributors who have write access to works or projects undertaken by the Open Logistics Foundation in the version control system.
+
+(4) “Source Code” means the version of the code of the respective Contribution – if the Contribution is a software – in the programming language.
+
+(5) “Object Code” means the intermediate product of a compilation or translation process of the Source Code.
+
+2 Granting of usage rights
+The Contributor hereby grants the Open Logistics Foundation and any third party who receives and/or uses a Work or the Contributions themselves – whether adapted or not - for the duration of the existence of the copyrights pertaining to such Contributions
+• the royalty-free and non-exclusive right,
+• sublicensable for commercial and non-commercial purposes
+• worldwide and perpetual,
+• irrevocable and non-terminable,
+to use the Contributions in their original form or in modified, translated, edited or transformed form on their own or as a part of a Work in the following ways:
+• use them in any hardware and software environment, - insofar as the Contribution is a software – in particular to store or load them permanently or temporarily, to display them and run them, including to the extent reproductions are necessary to that end,
+• modify, translate, edit or transform them in another way,
+• store, reproduce, exhibit or publish them, distribute them in tangible or intangible form, on any medium or in any other way, for commercial and non-commercial purposes, in particular to communicate them privately or publicly, also through image, audio and other information carriers, irrespective of whether by wire or wireless means,
+• use them in databases, data networks and online services, including the right to make it available in Source Code or Object Code to users of the aforementioned databases, networks and online services for research and retrieval purposes,
+• allow third parties to use or operate them,
+• use them not only for own purposes but also to provide services to third parties,
+• distribute them.
+
+The above right of use relates to the Contributions, in particular – insofar as the Contribution is a software– their Source Code and Object Code in any and all forms. The above usage rights include – where applicable – design rights.
+
+3 Granting of a patent license
+
+(1) For any patents (including pending patent applications) owned and licensable by the Contributor at the time of the submission of the Contribution, the Contributor hereby grants the Open Logistics Foundation and any third party who receives and/or uses a Work containing the Contributions or the Contributions themselves - adapted or not - a
+• perpetual,
+• worldwide,
+• non-exclusive,
+• free of charge,
+• irrevocable
+patent license in all rights deriving from the patent to
+• produce,
+• arrange to have produced,
+• use,
+• offer for sale,
+• sell,
+• import and otherwise transfer
+
+ the Work or the respective Contributions.
+
+However, this patent license covers only those rights deriving from the patent of the respective Contributor as are indispensable in order not to infringe that patent and only to the extent that the use of the Contributor’s respective Contribution, whether in itself or as a combination with other Contributions of the Contributor or any third parties together with the Work for which these Contributions were submitted, would otherwise infringe that patent. For avoidance of doubt, no patent licenses are granted for the use of a Work or the Contribution which become necessary for lawful use because third party modifications are made to the Work or the respective Contribution after the Contribution has been submitted by the Contributor.
+
+(2) If any entity or person institutes patent litigation against You or any other entity or person (including a cross-claim or counterclaim in a lawsuit) alleging that your Contribution, or the Work to which you have contributed, constitutes direct or contributory patent infringement, then any patent licenses granted to that person or entity under this CLA for that Contribution or Work shall terminate as of the date such litigation is filed.
+
+(3) The Contributor is entitled to decide in its own discretion to abandon respectively maintain any patent for which he has granted a patent license in accordance with para. 1 of this Section 3.
+
+4 Contributor’s binding representations
+
+(1) The Contributor hereby represents that
+a. it is entitled to grant the usage rights and - to the extent applicable - patent licenses for Contributions under this CLA, and
+b. by granting usage rights under Section 2 above and patent licenses under Section 3 above, they are not infringing any rights granted by the Contributor to third parties.
+
+(2) Furthermore, the Contributor hereby undertakes to identify by name all employees and service providers who submit Contributions or otherwise make them available to the Open Logistics Foundation in the Contributor’s name, and that all employees and service providers they identify by name to the Open Logistics Foundation are authorised to submit Contributions in the Contributor’s name; identifying the employees in this regard shall be at least in text form (as per Sec. 126b German Civil Code). It is the Contributor’s sole responsibility to notify the Open Logistics Foundation if changes need to be made to the list of named employees authorised to make Contributions in the Contributor’s name.
+
+(3) If the Contributor wishes to submit a third-party work, this must take place separately from any Contribution, in which case the complete details of the source and all licenses or other limitations (including but not limited to any associated patents, trademarks and licensing agreements) which they are personally aware of must be provided. The corresponding work must be clearly identified as a third-party work when it is submitted.
+
+5 Trademarks
+The Contributor does not grant permission to use its trade names, trademarks, service marks or product names.
+
+6 No restriction on other use by the Contributor
+The Contributor is expressly permitted to use and exploit the Contributions on a commercial or non– commercial basis – individually, in part or as part of another work – in accordance with the rights held by the Contributor, provided that such other use or exploitation does not conflict with the rights granted under this CLA.
+
+7 Obligations of the Open Logistics Foundation
+
+(1) The Open Logistics Foundation is not obliged to incorporate the Contributor’s Contributions into any Work or to use them in any other way.
+
+(2) If a Work is distributed by the Open Logistics Foundation by way of incorporation of the Contributor’s Contributions or if the Contributions themselves are distributed, the Open Logistics Foundation is obliged - irrespective of whether the Contributions have been modified by the Open Logistics Foundation or any third party -
+a. to retain and to oblige the recipients of the Work to retain all copyright, patent, trade mark and name credit notices in the Contributions - in the form as distributed - with the exception of those notices that do not pertain to any part of the distributed Contributions;
+b. to grant the Contributor a license to the rights in the distributed Work that contains the Contributor’s Contributions, corresponding to Sections 2 and 3 above.
+
+8 Contributor’s assumption of the role of Committer
+If the Open Logistics Foundation under a separate agreement assigns the role of a Committer to the Contributor and the Contributor accepts the role, the Contributor must comply with the guidelines, policies and codes of conduct imposed as part of the assignment.
+
+9 Limitation of liability
+Except in cases of intent and gross negligence or causing personal injury, the Contributor, its legal representatives, trustees, officers and employees shall not be liable towards the Open Logistics Foundation for direct or indirect, material or immaterial losses of any kind arising from the use of the Contributions; this includes but is not limited to loss of goodwill, interruption of production, computer failures or errors, loss of data or economic losses, even if the Contributor has been made aware of the possibility of such losses. Notwithstanding the above, the Contributor shall only be liable under product liability law to the extent that the respective provisions are applicable to the Contributions.
+Except in case of intent or gross negligence the Contributor, its legal representatives, trustees, officers and employees shall not be liable that any of the Contributions is free from any claim of infringement of any patent or any other intellectual property right owned by any third party, accurate, devoid of mistakes, complete and/or usable for any purpose.
+
+10 Other provisions
+
+(1) This CLA is governed by German law, excluding the UN Convention on Contracts for the International Sale of Goods (CISG). Exclusive place of jurisdiction for all disputes between the parties regarding
+ the interpretation of this CLA is Dortmund. This CLA or any provision thereof may be amended or modified only with the mutual consent of the contracting parties as set out in a written instrument. This requirement of written form can only be deviated from in writing.
+
+(2) Any failure by the Open Logistics Foundation or the Contributor to insist that the other Party adhere to a provision of this CLA in a given situation does not affect the right of such Party to require adherence in the same regard at a later date. Waiving compliance with a provision in one situation shall not be deemed a waiver of compliance with that provision in the future or as a waiver of the provision in its entirety.
+
+(3) If any provision of this CLA should prove to be invalid and unenforceable, then the validity of the remaining provisions shall remain unaffected. In this case, that provision will be replaced, as far as possible, by an enforceable provision that most closely reflects the meaning of the original provision.
+
+Location: 
+Date: 
+Signature:  
+Title and name: 
+Position and corporation: 
+
+*****
+Initial list of designated employees. The authorization is not tied to particular Contributions.
+Full Name
+E-Mail
+
+It is your responsibility to notify the Foundation when any change is required to the list of designated employees authorized to submit Contributions on behalf of the Corporation, or to the Corporation's Point of Contact with the Foundation.
+
+Open Logistics Foundation Emil-Figge-Straße 80 | D-44227 Dortmund | Germany
+BoardJochen Thewes – Chairman | Stefan Hohm and Dr. Stephan Peters – Deputy Chairmen
+Managing Directors Andreas Nettsträter | Thorsten Hülsmann
+Cheques and transfers payable to Sparkasse Dortmund | IBAN DE63440501990001146017 | BIC (Swift Code) DORTDE33XXX VAT Ident no. DE350640517 | Tax no. 315/5704/0848 | Supervisory authority Bezirksregierung Arnsberg
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/olf-ccla-1.0.json b/docs/olf-ccla-1.0.json new file mode 100644 index 0000000000..2cb589cfed --- /dev/null +++ b/docs/olf-ccla-1.0.json @@ -0,0 +1,18 @@ +{ + "key": "olf-ccla-1.0", + "short_name": "OLF-CCLA-1.0", + "name": "Open Logistics Foundation Corporate Contributor CLA 1.0", + "category": "CLA", + "owner": "Open Logistics Foundation", + "homepage_url": "https://www.openlogisticsfoundation.org/licenses", + "spdx_license_key": "LicenseRef-scancode-olf-ccla-1.0", + "ignorable_authors": [ + "the Open Logistics Foundation" + ], + "ignorable_urls": [ + "https://www.openlogisticsfoundation.org/licenses" + ], + "ignorable_emails": [ + "info@openlogisticsfoundation.org" + ] +} \ No newline at end of file diff --git a/docs/olf-ccla-1.0.yml b/docs/olf-ccla-1.0.yml new file mode 100644 index 0000000000..9a2b5c3cd9 --- /dev/null +++ b/docs/olf-ccla-1.0.yml @@ -0,0 +1,13 @@ +key: olf-ccla-1.0 +short_name: OLF-CCLA-1.0 +name: Open Logistics Foundation Corporate Contributor CLA 1.0 +category: CLA +owner: Open Logistics Foundation +homepage_url: https://www.openlogisticsfoundation.org/licenses +spdx_license_key: LicenseRef-scancode-olf-ccla-1.0 +ignorable_authors: + - the Open Logistics Foundation +ignorable_urls: + - https://www.openlogisticsfoundation.org/licenses +ignorable_emails: + - info@openlogisticsfoundation.org diff --git a/docs/oll-1.0.LICENSE b/docs/oll-1.0.LICENSE new file mode 100644 index 0000000000..6fdd3bd499 --- /dev/null +++ b/docs/oll-1.0.LICENSE @@ -0,0 +1,249 @@ +--- +key: oll-1.0 +short_name: OLL-1.0 +name: Open Logistics License Version 1.0 +category: Permissive +owner: Open Logistics Foundation +homepage_url: https://www.openlogisticsfoundation.org/licenses/ +spdx_license_key: LicenseRef-scancode-oll-1.0 +ignorable_urls: + - https://www.openlogisticsfoundation.org/licenses/ +--- + +Open Logistics License +Version 1.0, March 2022 +https://www.openlogisticsfoundation.org/licenses/ + +TERMS AND CONDITIONS FOR THE USE, REPRODUCTION AND DISTRIBUTION + +ß1 Definitions + +(1) "Subject Matter of the License" means the copyrighted works of the software +components in source code or object code as well as the other components +protected under copyright, design and/or patent law which are made available +under this license in accordance with a copyright notice inserted into or +attached to the work as well as the application and user documentation. + +(2) "License" means the terms and conditions for the use, reproduction and +distribution of the Subject Matter of the License in accordance with the +provisions of this document. + +(3) "Licensor(s)" means the copyright holder(s) or the entity authorised by law +or contract by the copyright holder(s) to grant the license. + +(4) "You" (or "Your") means a natural or legal person exercising the +permissions granted by this License. + +(5) "Source Code" means the version of the code of the software components of +the Subject Matter of the License in the programming language. + +(6) "Object Code" means the interim product after compilation or interpretation +of the Source Code. + +(7) "Derivative Works" shall mean any work, whether in Source or Object Code or +any other form, that is based on (or derived from) the Subject Matter of the +License 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 Subject Matter of the License and Derivative Works thereof. + +(8) "Contribution" means any proprietary work, including the original version +of the Subject Matter of the License and any changes or additions to such work, +or Derivative Works of such work, that the copyright holder, or a natural or +legal person authorised to make submissions, intentionally submits to the +Licensor or one of the Licensors to be incorporated into the Subject Matter of +the License. For the purposes of this definition, "submit" means any form of +electronic or written communication which is sent to the Licensor (or one of +the Licensors) or its representatives to discuss or improve the Subject Matter +of the License, including, but not limited to, communications sent via +electronic mailing lists, source code control systems and issue tracking +systems; however, communications that are clearly labelled as "no contribution" +by the copyright holder or otherwise identified as such in writing are +excluded. + +(9) "Contributor" means the Licensor and/or any natural or legal person on +whose behalf the Licensor receives any Contribution subsequently incorporated +into the Subject Matter of the License. + +ß2 Granting of usage rights + +Subject to the terms and conditions of this License and compliance with the +provisions of this License, You are hereby granted by all Contributors, for the +term of the copyrights in the Subject Matter of the License, the + +- royalty-free and non-exclusive, +- sub-licensable for commercial and non-commercial purposes, +- worldwide and perpetual, +- irrevocable and non-terminable + +right + +- to use in any hardware and software environment, - with regard to the + software and data components - in particular to store or load it permanently + or temporarily, to display it and run it, including to the extent + reproductions are necessary to that end, +- to modify, interpret, edit or redesign in another way, +- to store, reproduce, exhibit, publish, distribute in tangible or intangible + form, on any medium or in any other way, for commercial and non-commercial + purposes, in particular to communicate privately or publicly, also through + image, audio and other information carriers, irrespective of whether by wire + or wireless means, +- to use in databases, data networks and online services, including the right + to make the software and data components of the Subject Matter of the License + available in source code or object code to users of the aforementioned + databases, networks and online services for research and retrieval purposes, +- to allow third parties to use or operate, +- to use for own purposes but also to provide services to third parties, +- to distribute + +the Subject Matter of the License in its original or modified, interpreted, +edited or redesigned form. + +This right of use relates to the Subject Matter of the License in particular +its source code and object code of the software components in all forms +(including - where applicable - design rights). + +ß3 Grant of a patent license + +Subject to the terms and conditions of this License and compliance with the +provisions of this License, You are hereby granted by each Contributor a + +- perpetual, +- worldwide, +- non-exclusive, +- free of charge, +- irrevocable (with the exception of the restrictions set out in this + Section 3) + +patent license in all rights deriving from the patents, owned and licensable by +the Contributor at the time of the submission of the Contribution, to + +- produce, +- have produced, +- use, +- offer for sale, +- sell, +- import and otherwise transfer + +the Subject Matter of the License. + +However, this patent license covers only those rights deriving from the patents +of the respective Contributors as are indispensable in order not to infringe +that patent and only to the extent that the use of the Contributor's respective +Contributions, whether in itself or as a combination with other Contributions +of the Contributors or any third parties together with the Subject Matter of +the License for which these Contributions were submitted, would otherwise +infringe that patent. For avoidance of doubt, no patent licenses are granted +for the use of the Subject Matter of the License or the Contributions which +become necessary for lawful use because third party modifications are made to +the Subject Matter of the License or the respective Contributions after the +Contributions has been submitted by the Contributors. Under no circumstances +will anything in this Section 3 be construed as granting, by implication, +estoppel or otherwise, a license to any patent for which the respective +Contributors have not granted patent rights when they submitted their +respective Contributions. + +In the event that You institute judicial patent proceedings against any entity +or person (including a counterclaim or countersuit in a legal dispute), arguing +that the Subject Matter of the License or a Contribution incorporated or +contained therein constitutes a patent infringement or a contributory factor to +a patent infringement, all patent licenses which have been granted to You under +this License for the Subject Matter of the License as well as this License in +itself shall be deemed terminated as of the date on which the action is filed. + +For avoidance of doubt, the Contributors are entitled to decide in their own +discretion to abandon respectively maintain any patent designated by patent +number upon delivery of the Subject Matter of the License. + +ß4 Distribution + +You may reproduce and distribute copies of the Subject Matter of the License or +Derivative Works on any medium, with or without modifications, (with regard to +software components) in Source or Object Code, provided that You comply with +the following rules: + +- You must provide all other recipients of the Subject Matter of the License or + of Derivative Works with a copy of this License and inform them that the + Subject Matter of the License was originally licensed under this License. +- You must ensure that modified files contain prominent notices indicating that + You have modified the files. +- You must retain all copyright, patent, trademark and name credit notices in + the Subject Matter of the License in the source code of any Derivative Works + You distribute, with the exception of those notices which do not belong to + any part of the Derivative Works. +- You must oblige the recipients of the Subject Matter of the License or + Derivative Works to incorporate the provisions of this Section 4 into any + license under which they distribute the the Subject Matter of the License or + Derivative Works to any other recipients. + +You may add Your own copyright notices to Your modifications and state any +additional or different license conditions and conditions for the use, +reproduction or distribution of Your modifications or for these Derivative +Works as a whole, provided that Your use, reproduction and distribution of the +work in all other respects complies with the terms and conditions set out in +this License. + +ß5 Submission of Contributions + +Unless expressly stated otherwise, every Contribution that You have +intentionally submitted for inclusion in the Subject Matter of the License is +subject to this License without any additional terms or conditions applying. +Irrespective of the above, none of the terms or conditions contained herein may +be interpreted to replace or change the terms or conditions of a separate +licensing agreement that You may have concluded with a Licensor for such +Contributions, such as a so-called "Contributor License Agreement" (CLA). + +ß6 Trademarks + +This License does not grant permission to use the trade names, trademarks, +service marks or product names of the Licensor or of a Contributor. + +ß7 Limited warranty + +This License is granted free of charge and thus constitutes a gift. +Accordingly, any warranty is excluded. Work on the Subject Matter of the +License continues on an ongoing basis; it is constantly improved by countless +Contributors. The Subject Matter of the License is not completed and may +therefore contain errors ("bugs") or additional patents of Contributors or +third parties, as is inherent to this type of development. + +ß8 Limitation of liability + +Except in cases of intent and gross negligence or causing personal injury, the +Contributors, their legal representatives, trustees, officers and employees +shall not be liable for direct or indirect, material or immaterial loss or +damage of any kind arising from the License or the use of the Subject Matter of +the License; this applies, among other things, but not exclusively, to loss of +goodwill, loss of production, computer failures or errors, loss of data or +economic loss or damage, even if the Contributor has been notified of the +possibility of such loss or damage. Irrespective of the above, the Licensor +shall only be liable in the scope of statutory product liability, to the extent +the respective provisions are applicable to the Subject Matter of the License +or the Contribution. + +Except in the case of intent, the Contributors, their legal representatives, +trustees, officers and employees shall not be liable that any of the +Contributions are free from any claim of infringement of any patent or any +other intellectual property right owned by any third party, accurate, devoid of +mistakes, complete and/or usable for any purpose. + +ß9 Provision of warranties or assumption of additional liability in the event +of distribution of the Subject Matter of the License + +In the event of distribution of the Subject Matter of the License or Derivative +Works, You are free to assume support, warranty, indemnity or other liability +obligations and/or rights in accordance with this License and to charge a fee +in return. 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 You hereby 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. + +ß10 Applicable law + +This License is governed by German law with the exclusion of its provisions on +the conflict of laws and with the exclusion of the UN Convention on Contracts +for the International Sale of Goods (CISG). + +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/docs/oll-1.0.html b/docs/oll-1.0.html new file mode 100644 index 0000000000..6ad78b0994 --- /dev/null +++ b/docs/oll-1.0.html @@ -0,0 +1,395 @@ + + + + + + LicenseDB: oll-1.0 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + oll-1.0 + +
+ +
short_name
+
+ + OLL-1.0 + +
+ +
name
+
+ + Open Logistics License Version 1.0 + +
+ +
category
+
+ + Permissive + +
+ +
owner
+
+ + Open Logistics Foundation + +
+ +
homepage_url
+
+ + https://www.openlogisticsfoundation.org/licenses/ + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-oll-1.0 + +
+ +
ignorable_urls
+
+ + + +
+ +
+
license_text
+
Open Logistics License
+Version 1.0, March 2022
+https://www.openlogisticsfoundation.org/licenses/
+
+TERMS AND CONDITIONS FOR THE USE, REPRODUCTION AND DISTRIBUTION
+
+ß1 Definitions
+
+(1) "Subject Matter of the License" means the copyrighted works of the software
+components in source code or object code as well as the other components
+protected under copyright, design and/or patent law which are made available
+under this license in accordance with a copyright notice inserted into or
+attached to the work as well as the application and user documentation.
+
+(2) "License" means the terms and conditions for the use, reproduction and
+distribution of the Subject Matter of the License in accordance with the
+provisions of this document.
+
+(3) "Licensor(s)" means the copyright holder(s) or the entity authorised by law
+or contract by the copyright holder(s) to grant the license.
+
+(4) "You" (or "Your") means a natural or legal person exercising the
+permissions granted by this License.
+
+(5) "Source Code" means the version of the code of the software components of
+the Subject Matter of the License in the programming language.
+
+(6) "Object Code" means the interim product after compilation or interpretation
+of the Source Code.
+
+(7) "Derivative Works" shall mean any work, whether in Source or Object Code or
+any other form, that is based on (or derived from) the Subject Matter of the
+License 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 Subject Matter of the License and Derivative Works thereof.
+
+(8) "Contribution" means any proprietary work, including the original version
+of the Subject Matter of the License and any changes or additions to such work,
+or Derivative Works of such work, that the copyright holder, or a natural or
+legal person authorised to make submissions, intentionally submits to the
+Licensor or one of the Licensors to be incorporated into the Subject Matter of
+the License.  For the purposes of this definition, "submit" means any form of
+electronic or written communication which is sent to the Licensor (or one of
+the Licensors) or its representatives to discuss or improve the Subject Matter
+of the License, including, but not limited to, communications sent via
+electronic mailing lists, source code control systems and issue tracking
+systems; however, communications that are clearly labelled as "no contribution"
+by the copyright holder or otherwise identified as such in writing are
+excluded.
+
+(9) "Contributor" means the Licensor and/or any natural or legal person on
+whose behalf the Licensor receives any Contribution subsequently incorporated
+into the Subject Matter of the License.
+
+ß2 Granting of usage rights
+
+Subject to the terms and conditions of this License and compliance with the
+provisions of this License, You are hereby granted by all Contributors, for the
+term of the copyrights in the Subject Matter of the License, the
+
+- royalty-free and non-exclusive,
+- sub-licensable for commercial and non-commercial purposes,
+- worldwide and perpetual,
+- irrevocable and non-terminable
+
+right
+
+- to use in any hardware and software environment, - with regard to the
+  software and data components - in particular to store or load it permanently
+  or temporarily, to display it and run it, including to the extent
+  reproductions are necessary to that end,
+- to modify, interpret, edit or redesign in another way,
+- to store, reproduce, exhibit, publish, distribute in tangible or intangible
+  form, on any medium or in any other way, for commercial and non-commercial
+  purposes, in particular to communicate privately or publicly, also through
+  image, audio and other information carriers, irrespective of whether by wire
+  or wireless means,
+- to use in databases, data networks and online services, including the right
+  to make the software and data components of the Subject Matter of the License
+  available in source code or object code to users of the aforementioned
+  databases, networks and online services for research and retrieval purposes,
+- to allow third parties to use or operate,
+- to use for own purposes but also to provide services to third parties,
+- to distribute
+
+the Subject Matter of the License in its original or modified, interpreted,
+edited or redesigned form.
+
+This right of use relates to the Subject Matter of the License in particular
+its source code and object code of the software components in all forms
+(including - where applicable - design rights).
+
+ß3 Grant of a patent license
+
+Subject to the terms and conditions of this License and compliance with the
+provisions of this License, You are hereby granted by each Contributor a
+
+- perpetual,
+- worldwide,
+- non-exclusive,
+- free of charge,
+- irrevocable (with the exception of the restrictions set out in this
+  Section 3)
+
+patent license in all rights deriving from the patents, owned and licensable by
+the Contributor at the time of the submission of the Contribution, to
+
+- produce,
+- have produced,
+- use,
+- offer for sale,
+- sell,
+- import and otherwise transfer
+
+the Subject Matter of the License.
+
+However, this patent license covers only those rights deriving from the patents
+of the respective Contributors as are indispensable in order not to infringe
+that patent and only to the extent that the use of the Contributor's respective
+Contributions, whether in itself or as a combination with other Contributions
+of the Contributors or any third parties together with the Subject Matter of
+the License for which these Contributions were submitted, would otherwise
+infringe that patent. For avoidance of doubt, no patent licenses are granted
+for the use of the Subject Matter of the License or the Contributions which
+become necessary for lawful use because third party modifications are made to
+the Subject Matter of the License or the respective Contributions after the
+Contributions has been submitted by the Contributors. Under no circumstances
+will anything in this Section 3 be construed as granting, by implication,
+estoppel or otherwise, a license to any patent for which the respective
+Contributors have not granted patent rights when they submitted their
+respective Contributions.
+
+In the event that You institute judicial patent proceedings against any entity
+or person (including a counterclaim or countersuit in a legal dispute), arguing
+that the Subject Matter of the License or a Contribution incorporated or
+contained therein constitutes a patent infringement or a contributory factor to
+a patent infringement, all patent licenses which have been granted to You under
+this License for the Subject Matter of the License as well as this License in
+itself shall be deemed terminated as of the date on which the action is filed.
+
+For avoidance of doubt, the Contributors are entitled to decide in their own
+discretion to abandon respectively maintain any patent designated by patent
+number upon delivery of the Subject Matter of the License.
+
+ß4 Distribution
+
+You may reproduce and distribute copies of the Subject Matter of the License or
+Derivative Works on any medium, with or without modifications, (with regard to
+software components) in Source or Object Code, provided that You comply with
+the following rules:
+
+- You must provide all other recipients of the Subject Matter of the License or
+  of Derivative Works with a copy of this License and inform them that the
+  Subject Matter of the License was originally licensed under this License.
+- You must ensure that modified files contain prominent notices indicating that
+  You have modified the files.
+- You must retain all copyright, patent, trademark and name credit notices in
+  the Subject Matter of the License in the source code of any Derivative Works
+  You distribute, with the exception of those notices which do not belong to
+  any part of the Derivative Works.
+- You must oblige the recipients of the Subject Matter of the License or
+  Derivative Works to incorporate the provisions of this Section 4 into any
+  license under which they distribute the the Subject Matter of the License or
+  Derivative Works to any other recipients.
+
+You may add Your own copyright notices to Your modifications and state any
+additional or different license conditions and conditions for the use,
+reproduction or distribution of Your modifications or for these Derivative
+Works as a whole, provided that Your use, reproduction and distribution of the
+work in all other respects complies with the terms and conditions set out in
+this License.
+
+ß5 Submission of Contributions
+
+Unless expressly stated otherwise, every Contribution that You have
+intentionally submitted for inclusion in the Subject Matter of the License is
+subject to this License without any additional terms or conditions applying.
+Irrespective of the above, none of the terms or conditions contained herein may
+be interpreted to replace or change the terms or conditions of a separate
+licensing agreement that You may have concluded with a Licensor for such
+Contributions, such as a so-called "Contributor License Agreement" (CLA).
+
+ß6 Trademarks
+
+This License does not grant permission to use the trade names, trademarks,
+service marks or product names of the Licensor or of a Contributor.
+
+ß7 Limited warranty
+
+This License is granted free of charge and thus constitutes a gift.
+Accordingly, any warranty is excluded. Work on the Subject Matter of the
+License continues on an ongoing basis; it is constantly improved by countless
+Contributors. The Subject Matter of the License is not completed and may
+therefore contain errors ("bugs") or additional patents of Contributors or
+third parties, as is inherent to this type of development.
+
+ß8 Limitation of liability
+
+Except in cases of intent and gross negligence or causing personal injury, the
+Contributors, their legal representatives, trustees, officers and employees
+shall not be liable for direct or indirect, material or immaterial loss or
+damage of any kind arising from the License or the use of the Subject Matter of
+the License; this applies, among other things, but not exclusively, to loss of
+goodwill, loss of production, computer failures or errors, loss of data or
+economic loss or damage, even if the Contributor has been notified of the
+possibility of such loss or damage. Irrespective of the above, the Licensor
+shall only be liable in the scope of statutory product liability, to the extent
+the respective provisions are applicable to the Subject Matter of the License
+or the Contribution.
+
+Except in the case of intent, the Contributors, their legal representatives,
+trustees, officers and employees shall not be liable that any of the
+Contributions are free from any claim of infringement of any patent or any
+other intellectual property right owned by any third party, accurate, devoid of
+mistakes, complete and/or usable for any purpose.
+
+ß9 Provision of warranties or assumption of additional liability in the event
+of distribution of the Subject Matter of the License
+
+In the event of distribution of the Subject Matter of the License or Derivative
+Works, You are free to assume support, warranty, indemnity or other liability
+obligations and/or rights in accordance with this License and to charge a fee
+in return. 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 You hereby 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.
+
+ß10 Applicable law
+
+This License is governed by German law with the exclusion of its provisions on
+the conflict of laws and with the exclusion of the UN Convention on Contracts
+for the International Sale of Goods (CISG).
+
+END OF TERMS AND CONDITIONS
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/oll-1.0.json b/docs/oll-1.0.json new file mode 100644 index 0000000000..3375456672 --- /dev/null +++ b/docs/oll-1.0.json @@ -0,0 +1,12 @@ +{ + "key": "oll-1.0", + "short_name": "OLL-1.0", + "name": "Open Logistics License Version 1.0", + "category": "Permissive", + "owner": "Open Logistics Foundation", + "homepage_url": "https://www.openlogisticsfoundation.org/licenses/", + "spdx_license_key": "LicenseRef-scancode-oll-1.0", + "ignorable_urls": [ + "https://www.openlogisticsfoundation.org/licenses/" + ] +} \ No newline at end of file diff --git a/docs/oll-1.0.yml b/docs/oll-1.0.yml new file mode 100644 index 0000000000..96f5374b29 --- /dev/null +++ b/docs/oll-1.0.yml @@ -0,0 +1,9 @@ +key: oll-1.0 +short_name: OLL-1.0 +name: Open Logistics License Version 1.0 +category: Permissive +owner: Open Logistics Foundation +homepage_url: https://www.openlogisticsfoundation.org/licenses/ +spdx_license_key: LicenseRef-scancode-oll-1.0 +ignorable_urls: + - https://www.openlogisticsfoundation.org/licenses/ diff --git a/docs/ooura-2001.LICENSE b/docs/ooura-2001.LICENSE new file mode 100644 index 0000000000..0b716a5106 --- /dev/null +++ b/docs/ooura-2001.LICENSE @@ -0,0 +1,15 @@ +--- +key: ooura-2001 +short_name: OOURA License 2001 +name: OOURA License 2001 +category: Permissive +owner: OOURA +homepage_url: https://www.kurims.kyoto-u.ac.jp/~ooura/fft.html +spdx_license_key: LicenseRef-scancode-ooura-2001 +text_urls: + - https://www.kurims.kyoto-u.ac.jp/~ooura/pi_fftc6_src.tgz + - https://github.com/tensorflow/tensorflow/blob/master/third_party/fft2d/LICENSE +--- + +You may use, copy, modify this code for any purpose and +without fee. You may distribute this ORIGINAL package. \ No newline at end of file diff --git a/docs/ooura-2001.html b/docs/ooura-2001.html new file mode 100644 index 0000000000..0585148810 --- /dev/null +++ b/docs/ooura-2001.html @@ -0,0 +1,160 @@ + + + + + + LicenseDB: ooura-2001 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + ooura-2001 + +
+ +
short_name
+
+ + OOURA License 2001 + +
+ +
name
+
+ + OOURA License 2001 + +
+ +
category
+
+ + Permissive + +
+ +
owner
+
+ + OOURA + +
+ +
homepage_url
+
+ + https://www.kurims.kyoto-u.ac.jp/~ooura/fft.html + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-ooura-2001 + +
+ +
text_urls
+
+ + + +
+ +
+
license_text
+
You may use, copy, modify this code for any purpose and 
+without fee. You may distribute this ORIGINAL package.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/ooura-2001.json b/docs/ooura-2001.json new file mode 100644 index 0000000000..e0645e53c1 --- /dev/null +++ b/docs/ooura-2001.json @@ -0,0 +1,13 @@ +{ + "key": "ooura-2001", + "short_name": "OOURA License 2001", + "name": "OOURA License 2001", + "category": "Permissive", + "owner": "OOURA", + "homepage_url": "https://www.kurims.kyoto-u.ac.jp/~ooura/fft.html", + "spdx_license_key": "LicenseRef-scancode-ooura-2001", + "text_urls": [ + "https://www.kurims.kyoto-u.ac.jp/~ooura/pi_fftc6_src.tgz", + "https://github.com/tensorflow/tensorflow/blob/master/third_party/fft2d/LICENSE" + ] +} \ No newline at end of file diff --git a/docs/ooura-2001.yml b/docs/ooura-2001.yml new file mode 100644 index 0000000000..3e2d3f2919 --- /dev/null +++ b/docs/ooura-2001.yml @@ -0,0 +1,10 @@ +key: ooura-2001 +short_name: OOURA License 2001 +name: OOURA License 2001 +category: Permissive +owner: OOURA +homepage_url: https://www.kurims.kyoto-u.ac.jp/~ooura/fft.html +spdx_license_key: LicenseRef-scancode-ooura-2001 +text_urls: + - https://www.kurims.kyoto-u.ac.jp/~ooura/pi_fftc6_src.tgz + - https://github.com/tensorflow/tensorflow/blob/master/third_party/fft2d/LICENSE diff --git a/docs/open-diameter.LICENSE b/docs/open-diameter.LICENSE index 470e908734..be3ee94416 100644 --- a/docs/open-diameter.LICENSE +++ b/docs/open-diameter.LICENSE @@ -1,3 +1,18 @@ +--- +key: open-diameter +short_name: Open Diameter License +name: Open Diameter License +category: Copyleft +owner: Open Diameter Project +spdx_license_key: LicenseRef-scancode-open-diameter +ignorable_copyrights: + - Copyright (c) 2002-2007 Open Diameter Project +ignorable_holders: + - Open Diameter Project +ignorable_emails: + - diameter-developers@lists.sourceforge.net +--- + Open Diameter License Open Diameter: Open-source software for the Diameter and Diameter related protocols diff --git a/docs/open-diameter.html b/docs/open-diameter.html index d2d5c98db5..35b2457704 100644 --- a/docs/open-diameter.html +++ b/docs/open-diameter.html @@ -187,7 +187,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/open-diameter.json b/docs/open-diameter.json index 5a66f71992..c56b3ee718 100644 --- a/docs/open-diameter.json +++ b/docs/open-diameter.json @@ -1 +1,17 @@ -{"key": "open-diameter", "short_name": "Open Diameter License", "name": "Open Diameter License", "category": "Copyleft", "owner": "Open Diameter Project", "spdx_license_key": "LicenseRef-scancode-open-diameter", "ignorable_copyrights": ["Copyright (c) 2002-2007 Open Diameter Project"], "ignorable_holders": ["Open Diameter Project"], "ignorable_emails": ["diameter-developers@lists.sourceforge.net"]} \ No newline at end of file +{ + "key": "open-diameter", + "short_name": "Open Diameter License", + "name": "Open Diameter License", + "category": "Copyleft", + "owner": "Open Diameter Project", + "spdx_license_key": "LicenseRef-scancode-open-diameter", + "ignorable_copyrights": [ + "Copyright (c) 2002-2007 Open Diameter Project" + ], + "ignorable_holders": [ + "Open Diameter Project" + ], + "ignorable_emails": [ + "diameter-developers@lists.sourceforge.net" + ] +} \ No newline at end of file diff --git a/docs/open-group.LICENSE b/docs/open-group.LICENSE index 4313e90201..49bdfb94c5 100644 --- a/docs/open-group.LICENSE +++ b/docs/open-group.LICENSE @@ -1,3 +1,15 @@ +--- +key: open-group +short_name: Open Group Public License +name: Open Group Public License +category: Copyleft Limited +owner: Open Group +homepage_url: http://www.opengroup.org/openmotif/license/ +spdx_license_key: LicenseRef-scancode-open-group +text_urls: + - http://www.opengroup.org/openmotif/license/ +--- + THE OPEN GROUP PUBLIC LICENSE MOTIF GRAPHICAL USER INTERFACE SOFTWARE diff --git a/docs/open-group.html b/docs/open-group.html index 87ef441dbb..80ac7249ce 100644 --- a/docs/open-group.html +++ b/docs/open-group.html @@ -383,7 +383,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/open-group.json b/docs/open-group.json index 18e18dc75e..6dd182a4a4 100644 --- a/docs/open-group.json +++ b/docs/open-group.json @@ -1 +1,12 @@ -{"key": "open-group", "short_name": "Open Group Public License", "name": "Open Group Public License", "category": "Copyleft Limited", "owner": "Open Group", "homepage_url": "http://www.opengroup.org/openmotif/license/", "spdx_license_key": "LicenseRef-scancode-open-group", "text_urls": ["http://www.opengroup.org/openmotif/license/"]} \ No newline at end of file +{ + "key": "open-group", + "short_name": "Open Group Public License", + "name": "Open Group Public License", + "category": "Copyleft Limited", + "owner": "Open Group", + "homepage_url": "http://www.opengroup.org/openmotif/license/", + "spdx_license_key": "LicenseRef-scancode-open-group", + "text_urls": [ + "http://www.opengroup.org/openmotif/license/" + ] +} \ No newline at end of file diff --git a/docs/open-public.LICENSE b/docs/open-public.LICENSE index 1f6aaaf0f0..fd8c1b6dd9 100644 --- a/docs/open-public.LICENSE +++ b/docs/open-public.LICENSE @@ -1,3 +1,17 @@ +--- +key: open-public +short_name: Open Public License 1.0 +name: Open Public License v1.0 +category: Copyleft Limited +owner: Lutris Technologies, Inc. +homepage_url: http://ksoap.objectweb.org/software/license/opl.html +spdx_license_key: OPL-1.0 +text_urls: + - http://old.koalateam.com/jackaroo/OPL_1_0.TXT +other_urls: + - https://fedoraproject.org/wiki/Licensing/Open_Public_License +--- + OPEN PUBLIC LICENSE Version 1.0 diff --git a/docs/open-public.html b/docs/open-public.html index b922f53ded..c39547e202 100644 --- a/docs/open-public.html +++ b/docs/open-public.html @@ -481,7 +481,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/open-public.json b/docs/open-public.json index a4339142cf..51bc3fbd72 100644 --- a/docs/open-public.json +++ b/docs/open-public.json @@ -1 +1,15 @@ -{"key": "open-public", "short_name": "Open Public License 1.0", "name": "Open Public License v1.0", "category": "Copyleft Limited", "owner": "Lutris Technologies, Inc.", "homepage_url": "http://ksoap.objectweb.org/software/license/opl.html", "spdx_license_key": "OPL-1.0", "text_urls": ["http://old.koalateam.com/jackaroo/OPL_1_0.TXT"], "other_urls": ["https://fedoraproject.org/wiki/Licensing/Open_Public_License"]} \ No newline at end of file +{ + "key": "open-public", + "short_name": "Open Public License 1.0", + "name": "Open Public License v1.0", + "category": "Copyleft Limited", + "owner": "Lutris Technologies, Inc.", + "homepage_url": "http://ksoap.objectweb.org/software/license/opl.html", + "spdx_license_key": "OPL-1.0", + "text_urls": [ + "http://old.koalateam.com/jackaroo/OPL_1_0.TXT" + ], + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/Open_Public_License" + ] +} \ No newline at end of file diff --git a/docs/openbd-exception-3.0.LICENSE b/docs/openbd-exception-3.0.LICENSE index 5bc0415dc3..c70264fcbf 100644 --- a/docs/openbd-exception-3.0.LICENSE +++ b/docs/openbd-exception-3.0.LICENSE @@ -1,3 +1,146 @@ +--- +key: openbd-exception-3.0 +short_name: OpenBD exception to GPL 3.0 +name: OpenBD exception to GPL 3.0 +category: Copyleft Limited +owner: OpenBD +is_exception: yes +spdx_license_key: LicenseRef-scancode-openbd-exception-3.0 +other_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +standard_notice: | + Open BlueDragon (OpenBD) is distributed under the GNU General Public + License (v3). A copy of this can be found in the COPYING.txt file or + at http://www.gnu.org/licenses/ + Additional Permission Granted by tagServlet Ltd: + tagServlet Ltd grants the user the exception to distribute the entire + Open BlueDragon runtime libraries without the web application (.cfml, + .html, + .js, .css, etc) that Open BlueDragon powers, from itself being licensed + under the GNU General Public License (v3), as long the entire runtime + remains intact and includes all license information. + This exception does not overrule the embedded JAR files and where + applicable + the entire Open BlueDragon runtime only, must be available for inspection + if + ever asked, complete with all these copyright and license information. + This applies only to distribution for the purpose of powering end-user CFML + applications. This exception does not include embedding/linking any part of + the + runtime of Open BlueDragon within any other application other than a + Servlet container + whose sole purpose is to render CFML applications. Linking or usage by any + Java application (even through CFML), is not permitted. + Any modification, enhancements, linking, to the Open BlueDragon runtime + still falls + under the GNU General Public License (v3). + ______ Building Prerequisites _______ + You will require the following to be able to build OpenBD from source: + x Java Developers Kit Virtual Machine 1.6 + x Apache Ant (http://ant.apache.org/) + Optional, OpenBD source drop includes an Eclipse project to enable + building and debugging under the Eclipse IDE (http://www.eclipse.org/). + ______ Deployment Prerequisites _______ + You will require the following to be able to run OpenBD: + x Java Virtual Machine 1.6 + x J2EE compliant server (ie Jetty, Apache Tomcat, Redhat JBoss) + ______ External JAR Dependency _______ + OpenBD utilises a number of external open source libraries to provide some + of the functionality contained within. This section details all the + external JAR's associated with building and/or deployment of OpenBD. + Permission under GNU GPL version 3 section 7 + If you modify this Program, or any covered work, by linking or combining + it with any of the JAR files listed below (or a modified version of that + library), containing parts covered by the terms of "Java JAX-RPC", the + licensors of this Program grant you additional permission to convey the + resulting work. + + activation.jar + mail.jar + https://glassfish.dev.java.net/javaee5/mail/ + + commons-dbcp-1.1.jar + commons-pool-1.1.jar + commons-codec-1.4.jar + commons-collections-3.2.1.jar + commons-discovery.jar + commons-fileupload-1.2.1.jar + commons-httpclient-3.1bd.jar + commons-io-1.4.jar + commons-logging.1.1.1.jar + commons-vfs.jar + http://commons.apache.org/ + + xmlrpc-1.2-b1.jar + http://ws.apache.org/xmlrpc/ + + jakarta-oro-2.0.8.jar + http://jakarta.apache.org/oro/ + + servlet23.jar + http://tomcat.apache.org/ + + javolution.jar + http://javolution.org/ + + jaxrpc.jar + https://jax-rpc.dev.java.net/ + + jcommon-1.0.0.jar + jfreechart-1.0.1.jar + http://www.jfree.org/ + + lucene-analyzers-3.x.jar + lucene-core-3.x.jar + lucene-highlighter-3.x.jar + lucene-snowball-3.x.jar + http://lucene.apache.org/ + + PDFBox-0.7.2.jar + http://www.pdfbox.org/ + + postgresql.jar + http://www.postgresql.org/ + + saaj.jar + https://saaj.dev.java.net/ + + webservices.jar + http://ws.apache.org/axis/ + + wsdl4j.jar + http://sourceforge.net/projects/wsdl4j + + h2.jar + http://www.h2database.com/html/main.html + + vfs-s3 + http://code.google.com/p/vfs-s3/ + + JetS3 + https://jets3t.dev.java.net/ + + JSON Library [org.json] + http://www.json.org/java/index.html + + Oracle 10g JDBC Driver + http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_1 + 0201.html + http://www.oracle.com/technology/software/popup-license/distribution- + license.html + + Microsoft SQL Server JDBC Driver + http://www.microsoft.com/downloads/details.aspx?FamilyId=C47053EB-3B64-4794 + -950D-81E1EC91C1BA + + jTDS SQL Server Driver + http://jtds.sourceforge.net/ + http://jtds.sourceforge.net/license.html + + jericho-html-3.1 + http://jerichohtml.sourceforge.net/doc/index.html + + flowplayer 3.0.5 Flash Video Player (GPL) + http://www.flowplayer.org/ + + Yahoo YUI Compressor BSD/RhinoGPL + yuicompressor-2.4.2 + + Jackson JSON library + http://jackson.codehaus.org/ + ______ Special Build JARs _______ + OpenBD has had to make certain modifications to existing open source + libraries. These + are available in the ./extra/ folder with everything required to rebuild + those library. + + XALAN + xalan-openbd-build.zip + + Jackson-1.8.3-openbd.jar + Support for YES|NO boolean + ______ Official OpenBD Wiki _______ + http://wiki.openbluedragon.org/ + ______ Official OpenBD Docs _______ + http://openbd.org/manual/ + ______ Support Mailing List _______ + You can subscribe to the public mailing list at: + http://groups.google.com/group/openbd +--- + Additional Permission Granted by tagServlet Ltd: tagServlet Ltd grants the user the exception to distribute the entire Open BlueDragon runtime libraries without the web application (.cfml, .html, diff --git a/docs/openbd-exception-3.0.html b/docs/openbd-exception-3.0.html index 7560574c72..d2fd71428d 100644 --- a/docs/openbd-exception-3.0.html +++ b/docs/openbd-exception-3.0.html @@ -291,7 +291,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openbd-exception-3.0.json b/docs/openbd-exception-3.0.json index 130cffe4ae..5b40ce3d27 100644 --- a/docs/openbd-exception-3.0.json +++ b/docs/openbd-exception-3.0.json @@ -1 +1,13 @@ -{"key": "openbd-exception-3.0", "short_name": "OpenBD exception to GPL 3.0", "name": "OpenBD exception to GPL 3.0", "category": "Copyleft Limited", "owner": "OpenBD", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-openbd-exception-3.0", "other_urls": ["http://www.gnu.org/licenses/gpl-3.0.txt"], "standard_notice": "Open BlueDragon (OpenBD) is distributed under the GNU General Public\nLicense (v3). A copy of this can be found in the COPYING.txt file or\nat http://www.gnu.org/licenses/\nAdditional Permission Granted by tagServlet Ltd:\ntagServlet Ltd grants the user the exception to distribute the entire\nOpen BlueDragon runtime libraries without the web application (.cfml,\n.html,\n.js, .css, etc) that Open BlueDragon powers, from itself being licensed\nunder the GNU General Public License (v3), as long the entire runtime\nremains intact and includes all license information.\nThis exception does not overrule the embedded JAR files and where\napplicable\nthe entire Open BlueDragon runtime only, must be available for inspection\nif\never asked, complete with all these copyright and license information.\nThis applies only to distribution for the purpose of powering end-user CFML\napplications. This exception does not include embedding/linking any part of\nthe\nruntime of Open BlueDragon within any other application other than a\nServlet container\nwhose sole purpose is to render CFML applications. Linking or usage by any\nJava application (even through CFML), is not permitted.\nAny modification, enhancements, linking, to the Open BlueDragon runtime\nstill falls\nunder the GNU General Public License (v3).\n______ Building Prerequisites _______\nYou will require the following to be able to build OpenBD from source:\nx Java Developers Kit Virtual Machine 1.6\nx Apache Ant (http://ant.apache.org/)\nOptional, OpenBD source drop includes an Eclipse project to enable\nbuilding and debugging under the Eclipse IDE (http://www.eclipse.org/).\n______ Deployment Prerequisites _______\nYou will require the following to be able to run OpenBD:\nx Java Virtual Machine 1.6\nx J2EE compliant server (ie Jetty, Apache Tomcat, Redhat JBoss)\n______ External JAR Dependency _______\nOpenBD utilises a number of external open source libraries to provide some\nof the functionality contained within. This section details all the\nexternal JAR's associated with building and/or deployment of OpenBD.\nPermission under GNU GPL version 3 section 7\nIf you modify this Program, or any covered work, by linking or combining\nit with any of the JAR files listed below (or a modified version of that\nlibrary), containing parts covered by the terms of \"Java JAX-RPC\", the\nlicensors of this Program grant you additional permission to convey the\nresulting work.\n+ activation.jar\nmail.jar\nhttps://glassfish.dev.java.net/javaee5/mail/\n+ commons-dbcp-1.1.jar\ncommons-pool-1.1.jar\ncommons-codec-1.4.jar\ncommons-collections-3.2.1.jar\ncommons-discovery.jar\ncommons-fileupload-1.2.1.jar\ncommons-httpclient-3.1bd.jar\ncommons-io-1.4.jar\ncommons-logging.1.1.1.jar\ncommons-vfs.jar\nhttp://commons.apache.org/\n+ xmlrpc-1.2-b1.jar\nhttp://ws.apache.org/xmlrpc/\n+ jakarta-oro-2.0.8.jar\nhttp://jakarta.apache.org/oro/\n+ servlet23.jar\nhttp://tomcat.apache.org/\n+ javolution.jar\nhttp://javolution.org/\n+ jaxrpc.jar\nhttps://jax-rpc.dev.java.net/\n+ jcommon-1.0.0.jar\njfreechart-1.0.1.jar\nhttp://www.jfree.org/\n+ lucene-analyzers-3.x.jar\nlucene-core-3.x.jar\nlucene-highlighter-3.x.jar\nlucene-snowball-3.x.jar\nhttp://lucene.apache.org/\n+ PDFBox-0.7.2.jar\nhttp://www.pdfbox.org/\n+ postgresql.jar\nhttp://www.postgresql.org/\n+ saaj.jar\nhttps://saaj.dev.java.net/\n+ webservices.jar\nhttp://ws.apache.org/axis/\n+ wsdl4j.jar\nhttp://sourceforge.net/projects/wsdl4j\n+ h2.jar\nhttp://www.h2database.com/html/main.html\n+ vfs-s3\nhttp://code.google.com/p/vfs-s3/\n+ JetS3\nhttps://jets3t.dev.java.net/\n+ JSON Library [org.json]\nhttp://www.json.org/java/index.html\n+ Oracle 10g JDBC Driver\nhttp://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_1\n0201.html\nhttp://www.oracle.com/technology/software/popup-license/distribution-\nlicense.html\n+ Microsoft SQL Server JDBC Driver\nhttp://www.microsoft.com/downloads/details.aspx?FamilyId=C47053EB-3B64-4794\n-950D-81E1EC91C1BA\n+ jTDS SQL Server Driver\nhttp://jtds.sourceforge.net/\nhttp://jtds.sourceforge.net/license.html\n+ jericho-html-3.1\nhttp://jerichohtml.sourceforge.net/doc/index.html\n+ flowplayer 3.0.5 Flash Video Player (GPL)\nhttp://www.flowplayer.org/\n+ Yahoo YUI Compressor BSD/RhinoGPL\nyuicompressor-2.4.2\n+ Jackson JSON library\nhttp://jackson.codehaus.org/\n______ Special Build JARs _______\nOpenBD has had to make certain modifications to existing open source\nlibraries. These\nare available in the ./extra/ folder with everything required to rebuild\nthose library.\n+ XALAN\nxalan-openbd-build.zip\n+ Jackson-1.8.3-openbd.jar\nSupport for YES|NO boolean\n______ Official OpenBD Wiki _______\nhttp://wiki.openbluedragon.org/\n______ Official OpenBD Docs _______\nhttp://openbd.org/manual/\n______ Support Mailing List _______\nYou can subscribe to the public mailing list at:\nhttp://groups.google.com/group/openbd\n"} \ No newline at end of file +{ + "key": "openbd-exception-3.0", + "short_name": "OpenBD exception to GPL 3.0", + "name": "OpenBD exception to GPL 3.0", + "category": "Copyleft Limited", + "owner": "OpenBD", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-openbd-exception-3.0", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-3.0.txt" + ], + "standard_notice": "Open BlueDragon (OpenBD) is distributed under the GNU General Public\nLicense (v3). A copy of this can be found in the COPYING.txt file or\nat http://www.gnu.org/licenses/\nAdditional Permission Granted by tagServlet Ltd:\ntagServlet Ltd grants the user the exception to distribute the entire\nOpen BlueDragon runtime libraries without the web application (.cfml,\n.html,\n.js, .css, etc) that Open BlueDragon powers, from itself being licensed\nunder the GNU General Public License (v3), as long the entire runtime\nremains intact and includes all license information.\nThis exception does not overrule the embedded JAR files and where\napplicable\nthe entire Open BlueDragon runtime only, must be available for inspection\nif\never asked, complete with all these copyright and license information.\nThis applies only to distribution for the purpose of powering end-user CFML\napplications. This exception does not include embedding/linking any part of\nthe\nruntime of Open BlueDragon within any other application other than a\nServlet container\nwhose sole purpose is to render CFML applications. Linking or usage by any\nJava application (even through CFML), is not permitted.\nAny modification, enhancements, linking, to the Open BlueDragon runtime\nstill falls\nunder the GNU General Public License (v3).\n______ Building Prerequisites _______\nYou will require the following to be able to build OpenBD from source:\nx Java Developers Kit Virtual Machine 1.6\nx Apache Ant (http://ant.apache.org/)\nOptional, OpenBD source drop includes an Eclipse project to enable\nbuilding and debugging under the Eclipse IDE (http://www.eclipse.org/).\n______ Deployment Prerequisites _______\nYou will require the following to be able to run OpenBD:\nx Java Virtual Machine 1.6\nx J2EE compliant server (ie Jetty, Apache Tomcat, Redhat JBoss)\n______ External JAR Dependency _______\nOpenBD utilises a number of external open source libraries to provide some\nof the functionality contained within. This section details all the\nexternal JAR's associated with building and/or deployment of OpenBD.\nPermission under GNU GPL version 3 section 7\nIf you modify this Program, or any covered work, by linking or combining\nit with any of the JAR files listed below (or a modified version of that\nlibrary), containing parts covered by the terms of \"Java JAX-RPC\", the\nlicensors of this Program grant you additional permission to convey the\nresulting work.\n+ activation.jar\nmail.jar\nhttps://glassfish.dev.java.net/javaee5/mail/\n+ commons-dbcp-1.1.jar\ncommons-pool-1.1.jar\ncommons-codec-1.4.jar\ncommons-collections-3.2.1.jar\ncommons-discovery.jar\ncommons-fileupload-1.2.1.jar\ncommons-httpclient-3.1bd.jar\ncommons-io-1.4.jar\ncommons-logging.1.1.1.jar\ncommons-vfs.jar\nhttp://commons.apache.org/\n+ xmlrpc-1.2-b1.jar\nhttp://ws.apache.org/xmlrpc/\n+ jakarta-oro-2.0.8.jar\nhttp://jakarta.apache.org/oro/\n+ servlet23.jar\nhttp://tomcat.apache.org/\n+ javolution.jar\nhttp://javolution.org/\n+ jaxrpc.jar\nhttps://jax-rpc.dev.java.net/\n+ jcommon-1.0.0.jar\njfreechart-1.0.1.jar\nhttp://www.jfree.org/\n+ lucene-analyzers-3.x.jar\nlucene-core-3.x.jar\nlucene-highlighter-3.x.jar\nlucene-snowball-3.x.jar\nhttp://lucene.apache.org/\n+ PDFBox-0.7.2.jar\nhttp://www.pdfbox.org/\n+ postgresql.jar\nhttp://www.postgresql.org/\n+ saaj.jar\nhttps://saaj.dev.java.net/\n+ webservices.jar\nhttp://ws.apache.org/axis/\n+ wsdl4j.jar\nhttp://sourceforge.net/projects/wsdl4j\n+ h2.jar\nhttp://www.h2database.com/html/main.html\n+ vfs-s3\nhttp://code.google.com/p/vfs-s3/\n+ JetS3\nhttps://jets3t.dev.java.net/\n+ JSON Library [org.json]\nhttp://www.json.org/java/index.html\n+ Oracle 10g JDBC Driver\nhttp://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_1\n0201.html\nhttp://www.oracle.com/technology/software/popup-license/distribution-\nlicense.html\n+ Microsoft SQL Server JDBC Driver\nhttp://www.microsoft.com/downloads/details.aspx?FamilyId=C47053EB-3B64-4794\n-950D-81E1EC91C1BA\n+ jTDS SQL Server Driver\nhttp://jtds.sourceforge.net/\nhttp://jtds.sourceforge.net/license.html\n+ jericho-html-3.1\nhttp://jerichohtml.sourceforge.net/doc/index.html\n+ flowplayer 3.0.5 Flash Video Player (GPL)\nhttp://www.flowplayer.org/\n+ Yahoo YUI Compressor BSD/RhinoGPL\nyuicompressor-2.4.2\n+ Jackson JSON library\nhttp://jackson.codehaus.org/\n______ Special Build JARs _______\nOpenBD has had to make certain modifications to existing open source\nlibraries. These\nare available in the ./extra/ folder with everything required to rebuild\nthose library.\n+ XALAN\nxalan-openbd-build.zip\n+ Jackson-1.8.3-openbd.jar\nSupport for YES|NO boolean\n______ Official OpenBD Wiki _______\nhttp://wiki.openbluedragon.org/\n______ Official OpenBD Docs _______\nhttp://openbd.org/manual/\n______ Support Mailing List _______\nYou can subscribe to the public mailing list at:\nhttp://groups.google.com/group/openbd\n" +} \ No newline at end of file diff --git a/docs/opengroup.LICENSE b/docs/opengroup.LICENSE index ea987ebb5e..d498d0a494 100644 --- a/docs/opengroup.LICENSE +++ b/docs/opengroup.LICENSE @@ -1,3 +1,22 @@ +--- +key: opengroup +short_name: Open Group Test Suite License +name: Open Group Test Suite License +category: Copyleft Limited +owner: Open Group +homepage_url: http://opensource.org/licenses/opengroup.php +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: OGTSL +osi_license_key: OGTSL +text_urls: + - http://opensource.org/licenses/opengroup.php +osi_url: http://opensource.org/licenses/opengroup.php +other_urls: + - http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt + - http://www.opensource.org/licenses/OGTSL + - https://opensource.org/licenses/OGTSL +--- + The Open Group Test Suite License Preamble diff --git a/docs/opengroup.html b/docs/opengroup.html index d61dbea325..f39e7ac1c4 100644 --- a/docs/opengroup.html +++ b/docs/opengroup.html @@ -217,7 +217,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/opengroup.json b/docs/opengroup.json index 26539658ec..3bedc5e1ac 100644 --- a/docs/opengroup.json +++ b/docs/opengroup.json @@ -1 +1,20 @@ -{"key": "opengroup", "short_name": "Open Group Test Suite License", "name": "Open Group Test Suite License", "category": "Copyleft Limited", "owner": "Open Group", "homepage_url": "http://opensource.org/licenses/opengroup.php", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "OGTSL", "osi_license_key": "OGTSL", "text_urls": ["http://opensource.org/licenses/opengroup.php"], "osi_url": "http://opensource.org/licenses/opengroup.php", "other_urls": ["http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt", "http://www.opensource.org/licenses/OGTSL", "https://opensource.org/licenses/OGTSL"]} \ No newline at end of file +{ + "key": "opengroup", + "short_name": "Open Group Test Suite License", + "name": "Open Group Test Suite License", + "category": "Copyleft Limited", + "owner": "Open Group", + "homepage_url": "http://opensource.org/licenses/opengroup.php", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "OGTSL", + "osi_license_key": "OGTSL", + "text_urls": [ + "http://opensource.org/licenses/opengroup.php" + ], + "osi_url": "http://opensource.org/licenses/opengroup.php", + "other_urls": [ + "http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt", + "http://www.opensource.org/licenses/OGTSL", + "https://opensource.org/licenses/OGTSL" + ] +} \ No newline at end of file diff --git a/docs/openi-pl-1.0.LICENSE b/docs/openi-pl-1.0.LICENSE index c832131691..ebcc1a2dd9 100644 --- a/docs/openi-pl-1.0.LICENSE +++ b/docs/openi-pl-1.0.LICENSE @@ -1,3 +1,22 @@ +--- +key: openi-pl-1.0 +short_name: OpenI Public License 1.0 +name: OpenI Public License 1.0 +category: Copyleft Limited +owner: OpenI +homepage_url: http://openi.sourceforge.net/docs/LICENSE.txt +spdx_license_key: LicenseRef-scancode-openi-pl-1.0 +ignorable_copyrights: + - Copyright (c) 2005 Loyalty Matrix, Inc. +ignorable_holders: + - Loyalty Matrix, Inc. +ignorable_authors: + - Loyalty Matrix +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.openi.org/docs/opl-1.0.txt +--- + The OpenI Public License Version 1.0 ("OPL") consists of the Mozilla Public License Version 1.1, modified to be specific to OpenI, with the Additional Terms in Exhibit B. The original Mozilla Public License 1.1 can be found at: diff --git a/docs/openi-pl-1.0.html b/docs/openi-pl-1.0.html index 9960f8e80d..4e2952443c 100644 --- a/docs/openi-pl-1.0.html +++ b/docs/openi-pl-1.0.html @@ -568,7 +568,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openi-pl-1.0.json b/docs/openi-pl-1.0.json index 4c9487597a..88501448b5 100644 --- a/docs/openi-pl-1.0.json +++ b/docs/openi-pl-1.0.json @@ -1 +1,22 @@ -{"key": "openi-pl-1.0", "short_name": "OpenI Public License 1.0", "name": "OpenI Public License 1.0", "category": "Copyleft Limited", "owner": "OpenI", "homepage_url": "http://openi.sourceforge.net/docs/LICENSE.txt", "spdx_license_key": "LicenseRef-scancode-openi-pl-1.0", "ignorable_copyrights": ["Copyright (c) 2005 Loyalty Matrix, Inc."], "ignorable_holders": ["Loyalty Matrix, Inc."], "ignorable_authors": ["Loyalty Matrix"], "ignorable_urls": ["http://www.mozilla.org/MPL/MPL-1.1.html", "http://www.openi.org/docs/opl-1.0.txt"]} \ No newline at end of file +{ + "key": "openi-pl-1.0", + "short_name": "OpenI Public License 1.0", + "name": "OpenI Public License 1.0", + "category": "Copyleft Limited", + "owner": "OpenI", + "homepage_url": "http://openi.sourceforge.net/docs/LICENSE.txt", + "spdx_license_key": "LicenseRef-scancode-openi-pl-1.0", + "ignorable_copyrights": [ + "Copyright (c) 2005 Loyalty Matrix, Inc." + ], + "ignorable_holders": [ + "Loyalty Matrix, Inc." + ], + "ignorable_authors": [ + "Loyalty Matrix" + ], + "ignorable_urls": [ + "http://www.mozilla.org/MPL/MPL-1.1.html", + "http://www.openi.org/docs/opl-1.0.txt" + ] +} \ No newline at end of file diff --git a/docs/openjdk-assembly-exception-1.0.LICENSE b/docs/openjdk-assembly-exception-1.0.LICENSE index 520cd28376..485480cce5 100644 --- a/docs/openjdk-assembly-exception-1.0.LICENSE +++ b/docs/openjdk-assembly-exception-1.0.LICENSE @@ -1,3 +1,42 @@ +--- +key: openjdk-assembly-exception-1.0 +short_name: OpenJDK Assembly exception to GPL 2.0 +name: OpenJDK Assembly exception to GPL 2.0 +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: http://openjdk.java.net/legal/assembly-exception.html +is_exception: yes +spdx_license_key: OpenJDK-assembly-exception-1.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + OpenJDK Assembly Exception + The OpenJDK source code made available by Oracle America, Inc. (Oracle) at + openjdk.java.net ("OpenJDK Code") is distributed under the terms of the GNU + General Public License version 2 + only ("GPL2"), with the following clarification and special exception. + Linking this OpenJDK Code statically or dynamically with other code + is making a combined work based on this library. Thus, the terms + and conditions of GPL2 cover the whole combination. + As a special exception, Oracle gives you permission to link this + OpenJDK Code with certain code licensed by Oracle as indicated at + http://openjdk.java.net/legal/exception-modules-2007-05-08.html + ("Designated Exception Modules") to produce an executable, + regardless of the license terms of the Designated Exception Modules, + and to copy and distribute the resulting executable under GPL2, + provided that the Designated Exception Modules continue to be + governed by the licenses under which they were offered by Oracle. + As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code + to build an executable that includes those portions of necessary code that + Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 + with the Classpath exception). If you modify or add to the OpenJDK code, + that new GPL2 code may still be combined with Designated Exception Modules + if the new code is made subject to this exception by its copyright holder. +ignorable_urls: + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html + - http://www.gnu.org/copyleft/gpl.html +--- + OpenJDK Assembly Exception The OpenJDK source code made available by Oracle America, Inc. (Oracle) at diff --git a/docs/openjdk-assembly-exception-1.0.html b/docs/openjdk-assembly-exception-1.0.html index 52b55490c7..19dca36251 100644 --- a/docs/openjdk-assembly-exception-1.0.html +++ b/docs/openjdk-assembly-exception-1.0.html @@ -206,7 +206,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openjdk-assembly-exception-1.0.json b/docs/openjdk-assembly-exception-1.0.json index c054419faf..b94c23d72c 100644 --- a/docs/openjdk-assembly-exception-1.0.json +++ b/docs/openjdk-assembly-exception-1.0.json @@ -1 +1,18 @@ -{"key": "openjdk-assembly-exception-1.0", "short_name": "OpenJDK Assembly exception to GPL 2.0", "name": "OpenJDK Assembly exception to GPL 2.0", "category": "Copyleft Limited", "owner": "Oracle Corporation", "homepage_url": "http://openjdk.java.net/legal/assembly-exception.html", "is_exception": true, "spdx_license_key": "OpenJDK-assembly-exception-1.0", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "OpenJDK Assembly Exception\nThe OpenJDK source code made available by Oracle America, Inc. (Oracle) at\nopenjdk.java.net (\"OpenJDK Code\") is distributed under the terms of the GNU\nGeneral Public License version 2\nonly (\"GPL2\"), with the following clarification and special exception.\nLinking this OpenJDK Code statically or dynamically with other code\nis making a combined work based on this library. Thus, the terms\nand conditions of GPL2 cover the whole combination.\nAs a special exception, Oracle gives you permission to link this\nOpenJDK Code with certain code licensed by Oracle as indicated at\nhttp://openjdk.java.net/legal/exception-modules-2007-05-08.html\n(\"Designated Exception Modules\") to produce an executable,\nregardless of the license terms of the Designated Exception Modules,\nand to copy and distribute the resulting executable under GPL2,\nprovided that the Designated Exception Modules continue to be\ngoverned by the licenses under which they were offered by Oracle.\nAs such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code\nto build an executable that includes those portions of necessary code that\nOracle could not provide under GPL2 (or that Oracle has provided under GPL2\nwith the Classpath exception). If you modify or add to the OpenJDK code,\nthat new GPL2 code may still be combined with Designated Exception Modules\nif the new code is made subject to this exception by its copyright holder.\n", "ignorable_urls": ["http://openjdk.java.net/legal/exception-modules-2007-05-08.html", "http://www.gnu.org/copyleft/gpl.html"]} \ No newline at end of file +{ + "key": "openjdk-assembly-exception-1.0", + "short_name": "OpenJDK Assembly exception to GPL 2.0", + "name": "OpenJDK Assembly exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "Oracle Corporation", + "homepage_url": "http://openjdk.java.net/legal/assembly-exception.html", + "is_exception": true, + "spdx_license_key": "OpenJDK-assembly-exception-1.0", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "OpenJDK Assembly Exception\nThe OpenJDK source code made available by Oracle America, Inc. (Oracle) at\nopenjdk.java.net (\"OpenJDK Code\") is distributed under the terms of the GNU\nGeneral Public License version 2\nonly (\"GPL2\"), with the following clarification and special exception.\nLinking this OpenJDK Code statically or dynamically with other code\nis making a combined work based on this library. Thus, the terms\nand conditions of GPL2 cover the whole combination.\nAs a special exception, Oracle gives you permission to link this\nOpenJDK Code with certain code licensed by Oracle as indicated at\nhttp://openjdk.java.net/legal/exception-modules-2007-05-08.html\n(\"Designated Exception Modules\") to produce an executable,\nregardless of the license terms of the Designated Exception Modules,\nand to copy and distribute the resulting executable under GPL2,\nprovided that the Designated Exception Modules continue to be\ngoverned by the licenses under which they were offered by Oracle.\nAs such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code\nto build an executable that includes those portions of necessary code that\nOracle could not provide under GPL2 (or that Oracle has provided under GPL2\nwith the Classpath exception). If you modify or add to the OpenJDK code,\nthat new GPL2 code may still be combined with Designated Exception Modules\nif the new code is made subject to this exception by its copyright holder.\n", + "ignorable_urls": [ + "http://openjdk.java.net/legal/exception-modules-2007-05-08.html", + "http://www.gnu.org/copyleft/gpl.html" + ] +} \ No newline at end of file diff --git a/docs/openjdk-classpath-exception-2.0.LICENSE b/docs/openjdk-classpath-exception-2.0.LICENSE index b0c6166ceb..e5cd0be907 100644 --- a/docs/openjdk-classpath-exception-2.0.LICENSE +++ b/docs/openjdk-classpath-exception-2.0.LICENSE @@ -1,3 +1,96 @@ +--- +key: openjdk-classpath-exception-2.0 +short_name: OpenJDK Classpath exception to GPL 2.0 +name: OpenJDK Classpath exception to GPL 2.0 +category: Copyleft Limited +owner: Oracle (Sun) +is_exception: yes +spdx_license_key: LicenseRef-scancode-openjdk-classpath-exception2.0 +other_spdx_license_keys: + - LicenseRef-scancode-openjdk-classpath-exception-2.0 +faq_url: http://openjdk.java.net/legal/exception-modules-2007-05-08.html +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This library 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 2, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + "CLASSPATH" EXCEPTION TO THE GPL VERSION 2 + Certain source files distributed by Sun Microsystems, Inc. are subject to + the following clarification and special exception to the GPL Version 2, but + only where Sun has expressly included in the particular source file's + header the words + "Sun designates this particular file as subject to the "Classpath" + exception as provided by Sun in the License file that accompanied this + code." + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License Version 2 cover the whole combination. + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. + OPENJDK ASSEMBLY EXCEPTION + The OpenJDK source code made available openjdk.dev.java.net ("OpenJDK + Code") is distributed under the terms of the GNU General Public License + version 2 only ("GPL2"), with the + following clarification and special exception. + Linking this OpenJDK Code statically or dynamically with other code is + making a combined work based on this library. Thus, the terms and + conditions of GPL2 cover the whole combination. + As a special exception, Sun gives you permission to link this OpenJDK Code + with certain code licensed by Sun as indicated at + http://openjdk.java.net/legal/exception-modules-2007-05-08.html + ("Designated Exception Modules") to produce an executable, regardless of + the license terms of the Designated Exception Modules, and to copy and + distribute the resulting executable under GPL2, provided that the + Designated Exception Modules continue to be governed by the licenses under + which they were offered by Sun. + As such, it allows licensees and sublicensees of Sun's GPL2 OpenJDK Code to + build an executable that includes those portions of necessary code that Sun + could not provide under GPL2 (or that Sun has provided under GPL2 with the + Classpath exception). If you modify or add to the OpenJDK code, that new + GPL2 code may still be combined with Designated Exception Modules if the + new code is made subject to this exception by its copyright holder. + from http://openjdk.java.net/legal/exception-modules-2007-05-08.html + OpenJDK Designated Exception Modules + 8 May 2007 + For purposes of those files in the OpenJDK distribution that are subject to + the Assembly Exception, the following shall be deemed Designated Exception + Modules: + 1. Those files in the OpenJDK distribution available at openjdk.java.net, + openjdk.dev.java.net, and download.java.net to which Sun has applied the + Classpath Exception, + 2. Any of your derivative works of #1 above, to the extent you license them + under the GPLv2 with the Classpath Exception as defined in the OpenJDK + distribution available at openjdk.java.net, openjdk.dev.java.net, or + download.java.net, + 3. Any files in the OpenJDK distribution that are made available at + openjdk.java.net, openjdk.dev.java.net, or download.java.net under a binary + code license, and + 4. Any files in the OpenJDK distribution that are made available at + openjdk.java.net, openjdk.dev.java.net, or download.java.net under an open + source license other than GPL, and your derivatives thereof that are in + compliance with the applicable open source license. +ignorable_urls: + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html + - http://www.gnu.org/copyleft/gpl.html +--- + OPENJDK ASSEMBLY EXCEPTION The OpenJDK source code made available openjdk.dev.java.net ("OpenJDK Code") is distributed under diff --git a/docs/openjdk-classpath-exception-2.0.html b/docs/openjdk-classpath-exception-2.0.html index 80a97b8448..7139c8c78b 100644 --- a/docs/openjdk-classpath-exception-2.0.html +++ b/docs/openjdk-classpath-exception-2.0.html @@ -266,7 +266,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openjdk-classpath-exception-2.0.json b/docs/openjdk-classpath-exception-2.0.json index 958b6d8def..39ad070fb4 100644 --- a/docs/openjdk-classpath-exception-2.0.json +++ b/docs/openjdk-classpath-exception-2.0.json @@ -1 +1,21 @@ -{"key": "openjdk-classpath-exception-2.0", "short_name": "OpenJDK Classpath exception to GPL 2.0", "name": "OpenJDK Classpath exception to GPL 2.0", "category": "Copyleft Limited", "owner": "Oracle (Sun)", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-openjdk-classpath-exception2.0", "other_spdx_license_keys": ["LicenseRef-scancode-openjdk-classpath-exception-2.0"], "faq_url": "http://openjdk.java.net/legal/exception-modules-2007-05-08.html", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\"CLASSPATH\" EXCEPTION TO THE GPL VERSION 2\nCertain source files distributed by Sun Microsystems, Inc. are subject to\nthe following clarification and special exception to the GPL Version 2, but\nonly where Sun has expressly included in the particular source file's\nheader the words\n\"Sun designates this particular file as subject to the \"Classpath\"\nexception as provided by Sun in the License file that accompanied this\ncode.\"\nLinking this library statically or dynamically with other modules is making\na combined work based on this library. Thus, the terms and conditions of\nthe GNU General Public License Version 2 cover the whole combination.\nAs a special exception, the copyright holders of this library give you\npermission to link this library with independent modules to produce an\nexecutable, regardless of the license terms of these independent modules,\nand to copy and distribute the resulting executable under terms of your\nchoice, provided that you also meet, for each linked independent module,\nthe terms and conditions of the license of that module. An independent\nmodule is a module which is not derived from or based on this library. If\nyou modify this library, you may extend this exception to your version of\nthe library, but you are not obligated to do so. If you do not wish to do\nso, delete this exception statement from your version.\nOPENJDK ASSEMBLY EXCEPTION\nThe OpenJDK source code made available openjdk.dev.java.net (\"OpenJDK\nCode\") is distributed under the terms of the GNU General Public License\n version 2 only (\"GPL2\"), with the\nfollowing clarification and special exception.\nLinking this OpenJDK Code statically or dynamically with other code is\nmaking a combined work based on this library. Thus, the terms and\nconditions of GPL2 cover the whole combination.\nAs a special exception, Sun gives you permission to link this OpenJDK Code\nwith certain code licensed by Sun as indicated at\nhttp://openjdk.java.net/legal/exception-modules-2007-05-08.html\n(\"Designated Exception Modules\") to produce an executable, regardless of\nthe license terms of the Designated Exception Modules, and to copy and\ndistribute the resulting executable under GPL2, provided that the\nDesignated Exception Modules continue to be governed by the licenses under\nwhich they were offered by Sun.\nAs such, it allows licensees and sublicensees of Sun's GPL2 OpenJDK Code to\nbuild an executable that includes those portions of necessary code that Sun\ncould not provide under GPL2 (or that Sun has provided under GPL2 with the\nClasspath exception). If you modify or add to the OpenJDK code, that new\nGPL2 code may still be combined with Designated Exception Modules if the\nnew code is made subject to this exception by its copyright holder.\nfrom http://openjdk.java.net/legal/exception-modules-2007-05-08.html\nOpenJDK Designated Exception Modules\n8 May 2007\nFor purposes of those files in the OpenJDK distribution that are subject to\nthe Assembly Exception, the following shall be deemed Designated Exception\nModules:\n1. Those files in the OpenJDK distribution available at openjdk.java.net,\nopenjdk.dev.java.net, and download.java.net to which Sun has applied the\nClasspath Exception,\n2. Any of your derivative works of #1 above, to the extent you license them\nunder the GPLv2 with the Classpath Exception as defined in the OpenJDK\ndistribution available at openjdk.java.net, openjdk.dev.java.net, or\ndownload.java.net,\n3. Any files in the OpenJDK distribution that are made available at\nopenjdk.java.net, openjdk.dev.java.net, or download.java.net under a binary\ncode license, and\n4. Any files in the OpenJDK distribution that are made available at\nopenjdk.java.net, openjdk.dev.java.net, or download.java.net under an open\nsource license other than GPL, and your derivatives thereof that are in\ncompliance with the applicable open source license.\n", "ignorable_urls": ["http://openjdk.java.net/legal/exception-modules-2007-05-08.html", "http://www.gnu.org/copyleft/gpl.html"]} \ No newline at end of file +{ + "key": "openjdk-classpath-exception-2.0", + "short_name": "OpenJDK Classpath exception to GPL 2.0", + "name": "OpenJDK Classpath exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "Oracle (Sun)", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-openjdk-classpath-exception2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openjdk-classpath-exception-2.0" + ], + "faq_url": "http://openjdk.java.net/legal/exception-modules-2007-05-08.html", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\"CLASSPATH\" EXCEPTION TO THE GPL VERSION 2\nCertain source files distributed by Sun Microsystems, Inc. are subject to\nthe following clarification and special exception to the GPL Version 2, but\nonly where Sun has expressly included in the particular source file's\nheader the words\n\"Sun designates this particular file as subject to the \"Classpath\"\nexception as provided by Sun in the License file that accompanied this\ncode.\"\nLinking this library statically or dynamically with other modules is making\na combined work based on this library. Thus, the terms and conditions of\nthe GNU General Public License Version 2 cover the whole combination.\nAs a special exception, the copyright holders of this library give you\npermission to link this library with independent modules to produce an\nexecutable, regardless of the license terms of these independent modules,\nand to copy and distribute the resulting executable under terms of your\nchoice, provided that you also meet, for each linked independent module,\nthe terms and conditions of the license of that module. An independent\nmodule is a module which is not derived from or based on this library. If\nyou modify this library, you may extend this exception to your version of\nthe library, but you are not obligated to do so. If you do not wish to do\nso, delete this exception statement from your version.\nOPENJDK ASSEMBLY EXCEPTION\nThe OpenJDK source code made available openjdk.dev.java.net (\"OpenJDK\nCode\") is distributed under the terms of the GNU General Public License\n version 2 only (\"GPL2\"), with the\nfollowing clarification and special exception.\nLinking this OpenJDK Code statically or dynamically with other code is\nmaking a combined work based on this library. Thus, the terms and\nconditions of GPL2 cover the whole combination.\nAs a special exception, Sun gives you permission to link this OpenJDK Code\nwith certain code licensed by Sun as indicated at\nhttp://openjdk.java.net/legal/exception-modules-2007-05-08.html\n(\"Designated Exception Modules\") to produce an executable, regardless of\nthe license terms of the Designated Exception Modules, and to copy and\ndistribute the resulting executable under GPL2, provided that the\nDesignated Exception Modules continue to be governed by the licenses under\nwhich they were offered by Sun.\nAs such, it allows licensees and sublicensees of Sun's GPL2 OpenJDK Code to\nbuild an executable that includes those portions of necessary code that Sun\ncould not provide under GPL2 (or that Sun has provided under GPL2 with the\nClasspath exception). If you modify or add to the OpenJDK code, that new\nGPL2 code may still be combined with Designated Exception Modules if the\nnew code is made subject to this exception by its copyright holder.\nfrom http://openjdk.java.net/legal/exception-modules-2007-05-08.html\nOpenJDK Designated Exception Modules\n8 May 2007\nFor purposes of those files in the OpenJDK distribution that are subject to\nthe Assembly Exception, the following shall be deemed Designated Exception\nModules:\n1. Those files in the OpenJDK distribution available at openjdk.java.net,\nopenjdk.dev.java.net, and download.java.net to which Sun has applied the\nClasspath Exception,\n2. Any of your derivative works of #1 above, to the extent you license them\nunder the GPLv2 with the Classpath Exception as defined in the OpenJDK\ndistribution available at openjdk.java.net, openjdk.dev.java.net, or\ndownload.java.net,\n3. Any files in the OpenJDK distribution that are made available at\nopenjdk.java.net, openjdk.dev.java.net, or download.java.net under a binary\ncode license, and\n4. Any files in the OpenJDK distribution that are made available at\nopenjdk.java.net, openjdk.dev.java.net, or download.java.net under an open\nsource license other than GPL, and your derivatives thereof that are in\ncompliance with the applicable open source license.\n", + "ignorable_urls": [ + "http://openjdk.java.net/legal/exception-modules-2007-05-08.html", + "http://www.gnu.org/copyleft/gpl.html" + ] +} \ No newline at end of file diff --git a/docs/openjdk-exception.LICENSE b/docs/openjdk-exception.LICENSE index b68c193555..639e4fd300 100644 --- a/docs/openjdk-exception.LICENSE +++ b/docs/openjdk-exception.LICENSE @@ -1,3 +1,26 @@ +--- +key: openjdk-exception +short_name: OpenJDK Exception +name: OpenJDK Classpath and Assembly Exception +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: http://openjdk.java.net/legal/ +notes: | + this exception is the combination of the classpath exception with extra + terms and found only in the OpenJDK +is_exception: yes +spdx_license_key: LicenseRef-scancode-openjdk-exception +other_spdx_license_keys: + - Assembly-exception +text_urls: + - http://openjdk.java.net/legal/gplv2+ce.html + - http://openjdk.java.net/legal/assembly-exception.html + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html +ignorable_urls: + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html + - http://www.gnu.org/copyleft/gpl.html +--- + "CLASSPATH" EXCEPTION TO THE GPL Certain source files distributed by Oracle America and/or its affiliates are @@ -75,4 +98,4 @@ binary code license, and Any files in the OpenJDK distribution that are made available at openjdk.java.net, openjdk.dev.java.net, or download.java.net under an open source license other than GPL, and your derivatives thereof that -are in compliance with the applicable open source license. +are in compliance with the applicable open source license. \ No newline at end of file diff --git a/docs/openjdk-exception.html b/docs/openjdk-exception.html index b20cef72c4..ad153ea976 100644 --- a/docs/openjdk-exception.html +++ b/docs/openjdk-exception.html @@ -235,8 +235,7 @@ Any files in the OpenJDK distribution that are made available at openjdk.java.net, openjdk.dev.java.net, or download.java.net under an open source license other than GPL, and your derivatives thereof that -are in compliance with the applicable open source license. - +are in compliance with the applicable open source license.
@@ -248,7 +247,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openjdk-exception.json b/docs/openjdk-exception.json index 74545cc60b..36f5315afc 100644 --- a/docs/openjdk-exception.json +++ b/docs/openjdk-exception.json @@ -1 +1,23 @@ -{"key": "openjdk-exception", "short_name": "OpenJDK Exception", "name": "OpenJDK Classpath and Assembly Exception", "category": "Copyleft Limited", "owner": "Oracle Corporation", "homepage_url": "http://openjdk.java.net/legal/", "notes": "this exception is the combination of the classpath exception with extra\nterms and found only in the OpenJDK\n", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-openjdk-exception", "other_spdx_license_keys": ["Assembly-exception"], "text_urls": ["http://openjdk.java.net/legal/gplv2+ce.html", "http://openjdk.java.net/legal/assembly-exception.html", "http://openjdk.java.net/legal/exception-modules-2007-05-08.html"], "ignorable_urls": ["http://openjdk.java.net/legal/exception-modules-2007-05-08.html", "http://www.gnu.org/copyleft/gpl.html"]} \ No newline at end of file +{ + "key": "openjdk-exception", + "short_name": "OpenJDK Exception", + "name": "OpenJDK Classpath and Assembly Exception", + "category": "Copyleft Limited", + "owner": "Oracle Corporation", + "homepage_url": "http://openjdk.java.net/legal/", + "notes": "this exception is the combination of the classpath exception with extra\nterms and found only in the OpenJDK\n", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-openjdk-exception", + "other_spdx_license_keys": [ + "Assembly-exception" + ], + "text_urls": [ + "http://openjdk.java.net/legal/gplv2+ce.html", + "http://openjdk.java.net/legal/assembly-exception.html", + "http://openjdk.java.net/legal/exception-modules-2007-05-08.html" + ], + "ignorable_urls": [ + "http://openjdk.java.net/legal/exception-modules-2007-05-08.html", + "http://www.gnu.org/copyleft/gpl.html" + ] +} \ No newline at end of file diff --git a/docs/openldap-1.1.LICENSE b/docs/openldap-1.1.LICENSE index ade7d3f0fb..7e613b481c 100644 --- a/docs/openldap-1.1.LICENSE +++ b/docs/openldap-1.1.LICENSE @@ -1,3 +1,21 @@ +--- +key: openldap-1.1 +short_name: OpenLDAP Public License 1.1 +name: OpenLDAP Public License 1.1 +category: Copyleft Limited +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f +notes: Per SPDX.org, this license was released 25 August 1998. +spdx_license_key: OLDAP-1.1 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1998, The OpenLDAP Foundation +ignorable_holders: + - The OpenLDAP Foundation +--- + The OpenLDAP Public License Version 1.1, 25 August 1998 diff --git a/docs/openldap-1.1.html b/docs/openldap-1.1.html index c2f59fc86b..c96a94f219 100644 --- a/docs/openldap-1.1.html +++ b/docs/openldap-1.1.html @@ -289,7 +289,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openldap-1.1.json b/docs/openldap-1.1.json index d5d6e21bca..66a450c1cf 100644 --- a/docs/openldap-1.1.json +++ b/docs/openldap-1.1.json @@ -1 +1,20 @@ -{"key": "openldap-1.1", "short_name": "OpenLDAP Public License 1.1", "name": "OpenLDAP Public License 1.1", "category": "Copyleft Limited", "owner": "OpenLDAP Foundation", "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f", "notes": "Per SPDX.org, this license was released 25 August 1998.", "spdx_license_key": "OLDAP-1.1", "text_urls": ["http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright 1998, The OpenLDAP Foundation"], "ignorable_holders": ["The OpenLDAP Foundation"]} \ No newline at end of file +{ + "key": "openldap-1.1", + "short_name": "OpenLDAP Public License 1.1", + "name": "OpenLDAP Public License 1.1", + "category": "Copyleft Limited", + "owner": "OpenLDAP Foundation", + "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f", + "notes": "Per SPDX.org, this license was released 25 August 1998.", + "spdx_license_key": "OLDAP-1.1", + "text_urls": [ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright 1998, The OpenLDAP Foundation" + ], + "ignorable_holders": [ + "The OpenLDAP Foundation" + ] +} \ No newline at end of file diff --git a/docs/openldap-1.2.LICENSE b/docs/openldap-1.2.LICENSE index 52f6444dd0..e40d24236d 100644 --- a/docs/openldap-1.2.LICENSE +++ b/docs/openldap-1.2.LICENSE @@ -1,3 +1,23 @@ +--- +key: openldap-1.2 +short_name: OpenLDAP Public License 1.2 +name: OpenLDAP Public License 1.2 +category: Copyleft Limited +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7 +notes: | + Per SPDX.org, this license was released 1 September 1998. This license was + issued four time, but only with formatting differences. +spdx_license_key: OLDAP-1.2 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1998, The OpenLDAP Foundation +ignorable_holders: + - The OpenLDAP Foundation +--- + The OpenLDAP Public License Version 1.2, 1 September 1998 diff --git a/docs/openldap-1.2.html b/docs/openldap-1.2.html index 8bf2a16b07..670c8fa98c 100644 --- a/docs/openldap-1.2.html +++ b/docs/openldap-1.2.html @@ -300,7 +300,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openldap-1.2.json b/docs/openldap-1.2.json index 167082b227..221e41baf5 100644 --- a/docs/openldap-1.2.json +++ b/docs/openldap-1.2.json @@ -1 +1,20 @@ -{"key": "openldap-1.2", "short_name": "OpenLDAP Public License 1.2", "name": "OpenLDAP Public License 1.2", "category": "Copyleft Limited", "owner": "OpenLDAP Foundation", "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7", "notes": "Per SPDX.org, this license was released 1 September 1998. This license was\nissued four time, but only with formatting differences.\n", "spdx_license_key": "OLDAP-1.2", "text_urls": ["http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright 1998, The OpenLDAP Foundation"], "ignorable_holders": ["The OpenLDAP Foundation"]} \ No newline at end of file +{ + "key": "openldap-1.2", + "short_name": "OpenLDAP Public License 1.2", + "name": "OpenLDAP Public License 1.2", + "category": "Copyleft Limited", + "owner": "OpenLDAP Foundation", + "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7", + "notes": "Per SPDX.org, this license was released 1 September 1998. This license was\nissued four time, but only with formatting differences.\n", + "spdx_license_key": "OLDAP-1.2", + "text_urls": [ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright 1998, The OpenLDAP Foundation" + ], + "ignorable_holders": [ + "The OpenLDAP Foundation" + ] +} \ No newline at end of file diff --git a/docs/openldap-1.3.LICENSE b/docs/openldap-1.3.LICENSE index c72313707b..1f58418934 100644 --- a/docs/openldap-1.3.LICENSE +++ b/docs/openldap-1.3.LICENSE @@ -1,3 +1,24 @@ +--- +key: openldap-1.3 +short_name: OpenLDAP Public License 1.3 +name: OpenLDAP Public License 1.3 +category: Copyleft Limited +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1 +notes: | + Per SPDX.org, this license was released 17 January 1999. This license was + issued twice in the same day with a minor correction. This is the corrected + (second) version. +spdx_license_key: OLDAP-1.3 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1998-1999, The OpenLDAP Foundation +ignorable_holders: + - The OpenLDAP Foundation +--- + The OpenLDAP Public License Version 1.3, 17 January 1999 diff --git a/docs/openldap-1.3.html b/docs/openldap-1.3.html index ddf25569cc..1cc9e2b62c 100644 --- a/docs/openldap-1.3.html +++ b/docs/openldap-1.3.html @@ -308,7 +308,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openldap-1.3.json b/docs/openldap-1.3.json index 07d0bc0878..1e773afc6b 100644 --- a/docs/openldap-1.3.json +++ b/docs/openldap-1.3.json @@ -1 +1,20 @@ -{"key": "openldap-1.3", "short_name": "OpenLDAP Public License 1.3", "name": "OpenLDAP Public License 1.3", "category": "Copyleft Limited", "owner": "OpenLDAP Foundation", "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1", "notes": "Per SPDX.org, this license was released 17 January 1999. This license was\nissued twice in the same day with a minor correction. This is the corrected\n(second) version.\n", "spdx_license_key": "OLDAP-1.3", "text_urls": ["http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright 1998-1999, The OpenLDAP Foundation"], "ignorable_holders": ["The OpenLDAP Foundation"]} \ No newline at end of file +{ + "key": "openldap-1.3", + "short_name": "OpenLDAP Public License 1.3", + "name": "OpenLDAP Public License 1.3", + "category": "Copyleft Limited", + "owner": "OpenLDAP Foundation", + "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1", + "notes": "Per SPDX.org, this license was released 17 January 1999. This license was\nissued twice in the same day with a minor correction. This is the corrected\n(second) version.\n", + "spdx_license_key": "OLDAP-1.3", + "text_urls": [ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright 1998-1999, The OpenLDAP Foundation" + ], + "ignorable_holders": [ + "The OpenLDAP Foundation" + ] +} \ No newline at end of file diff --git a/docs/openldap-1.4.LICENSE b/docs/openldap-1.4.LICENSE index 74eb993fc8..ef2d901200 100644 --- a/docs/openldap-1.4.LICENSE +++ b/docs/openldap-1.4.LICENSE @@ -1,3 +1,21 @@ +--- +key: openldap-1.4 +short_name: OpenLDAP Public License 1.4 +name: OpenLDAP Public License 1.4 +category: Copyleft Limited +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941 +notes: Per SPDX.org, this license was released 18 January 1999. +spdx_license_key: OLDAP-1.4 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1998-1999, The OpenLDAP Foundation +ignorable_holders: + - The OpenLDAP Foundation +--- + The OpenLDAP Public License Version 1.4, 18 January 1999 diff --git a/docs/openldap-1.4.html b/docs/openldap-1.4.html index 95779e590b..6a14bafad4 100644 --- a/docs/openldap-1.4.html +++ b/docs/openldap-1.4.html @@ -307,7 +307,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openldap-1.4.json b/docs/openldap-1.4.json index 41d300a472..a5f1c7b711 100644 --- a/docs/openldap-1.4.json +++ b/docs/openldap-1.4.json @@ -1 +1,20 @@ -{"key": "openldap-1.4", "short_name": "OpenLDAP Public License 1.4", "name": "OpenLDAP Public License 1.4", "category": "Copyleft Limited", "owner": "OpenLDAP Foundation", "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941", "notes": "Per SPDX.org, this license was released 18 January 1999.", "spdx_license_key": "OLDAP-1.4", "text_urls": ["http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright 1998-1999, The OpenLDAP Foundation"], "ignorable_holders": ["The OpenLDAP Foundation"]} \ No newline at end of file +{ + "key": "openldap-1.4", + "short_name": "OpenLDAP Public License 1.4", + "name": "OpenLDAP Public License 1.4", + "category": "Copyleft Limited", + "owner": "OpenLDAP Foundation", + "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941", + "notes": "Per SPDX.org, this license was released 18 January 1999.", + "spdx_license_key": "OLDAP-1.4", + "text_urls": [ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright 1998-1999, The OpenLDAP Foundation" + ], + "ignorable_holders": [ + "The OpenLDAP Foundation" + ] +} \ No newline at end of file diff --git a/docs/openldap-2.0.1.LICENSE b/docs/openldap-2.0.1.LICENSE index 4a0326711e..35177dcaa8 100644 --- a/docs/openldap-2.0.1.LICENSE +++ b/docs/openldap-2.0.1.LICENSE @@ -1,3 +1,28 @@ +--- +key: openldap-2.0.1 +short_name: OpenLDAP Public License 2.0.1 +name: OpenLDAP Public License 2.0.1 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e +notes: | + Per SPDX.org, this license was released 21 December 1999. This license is + the same as 2.0 with the word "registered" removed from in front of + "trademark." +spdx_license_key: OLDAP-2.0.1 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999, The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_urls: + - http://www.openldap.org/ +ignorable_emails: + - foundation@openldap.org +--- + The OpenLDAP Public License Version 2.0.1, 21 December 1999 diff --git a/docs/openldap-2.0.1.html b/docs/openldap-2.0.1.html index 0ef86acc6e..c858beae99 100644 --- a/docs/openldap-2.0.1.html +++ b/docs/openldap-2.0.1.html @@ -232,7 +232,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openldap-2.0.1.json b/docs/openldap-2.0.1.json index 1783983dd8..10e169f0a4 100644 --- a/docs/openldap-2.0.1.json +++ b/docs/openldap-2.0.1.json @@ -1 +1,26 @@ -{"key": "openldap-2.0.1", "short_name": "OpenLDAP Public License 2.0.1", "name": "OpenLDAP Public License 2.0.1", "category": "Permissive", "owner": "OpenLDAP Foundation", "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e", "notes": "Per SPDX.org, this license was released 21 December 1999. This license is\nthe same as 2.0 with the word \"registered\" removed from in front of\n\"trademark.\"\n", "spdx_license_key": "OLDAP-2.0.1", "text_urls": ["http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright 1999, The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_holders": ["The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_urls": ["http://www.openldap.org/"], "ignorable_emails": ["foundation@openldap.org"]} \ No newline at end of file +{ + "key": "openldap-2.0.1", + "short_name": "OpenLDAP Public License 2.0.1", + "name": "OpenLDAP Public License 2.0.1", + "category": "Permissive", + "owner": "OpenLDAP Foundation", + "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e", + "notes": "Per SPDX.org, this license was released 21 December 1999. This license is\nthe same as 2.0 with the word \"registered\" removed from in front of\n\"trademark.\"\n", + "spdx_license_key": "OLDAP-2.0.1", + "text_urls": [ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright 1999, The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_holders": [ + "The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_urls": [ + "http://www.openldap.org/" + ], + "ignorable_emails": [ + "foundation@openldap.org" + ] +} \ No newline at end of file diff --git a/docs/openldap-2.0.LICENSE b/docs/openldap-2.0.LICENSE index 6ab3c060e3..6f7078aad8 100644 --- a/docs/openldap-2.0.LICENSE +++ b/docs/openldap-2.0.LICENSE @@ -1,3 +1,25 @@ +--- +key: openldap-2.0 +short_name: OpenLDAP Public License 2.0 +name: OpenLDAP Public License 2.0 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea +notes: Per SPDX.org, this license was released 7 June 1999. +spdx_license_key: OLDAP-2.0 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999, The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_urls: + - http://www.openldap.org/ +ignorable_emails: + - foundation@openldap.org +--- + The OpenLDAP Public License Version 2.0, 7 June 1999 diff --git a/docs/openldap-2.0.html b/docs/openldap-2.0.html index 788661c082..7c54a17bac 100644 --- a/docs/openldap-2.0.html +++ b/docs/openldap-2.0.html @@ -229,7 +229,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openldap-2.0.json b/docs/openldap-2.0.json index 7f49acf4c8..354d83223a 100644 --- a/docs/openldap-2.0.json +++ b/docs/openldap-2.0.json @@ -1 +1,26 @@ -{"key": "openldap-2.0", "short_name": "OpenLDAP Public License 2.0", "name": "OpenLDAP Public License 2.0", "category": "Permissive", "owner": "OpenLDAP Foundation", "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea", "notes": "Per SPDX.org, this license was released 7 June 1999.", "spdx_license_key": "OLDAP-2.0", "text_urls": ["http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright 1999, The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_holders": ["The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_urls": ["http://www.openldap.org/"], "ignorable_emails": ["foundation@openldap.org"]} \ No newline at end of file +{ + "key": "openldap-2.0", + "short_name": "OpenLDAP Public License 2.0", + "name": "OpenLDAP Public License 2.0", + "category": "Permissive", + "owner": "OpenLDAP Foundation", + "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea", + "notes": "Per SPDX.org, this license was released 7 June 1999.", + "spdx_license_key": "OLDAP-2.0", + "text_urls": [ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright 1999, The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_holders": [ + "The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_urls": [ + "http://www.openldap.org/" + ], + "ignorable_emails": [ + "foundation@openldap.org" + ] +} \ No newline at end of file diff --git a/docs/openldap-2.1.LICENSE b/docs/openldap-2.1.LICENSE index e127574e5d..fc6d447edb 100644 --- a/docs/openldap-2.1.LICENSE +++ b/docs/openldap-2.1.LICENSE @@ -1,3 +1,25 @@ +--- +key: openldap-2.1 +short_name: OpenLDAP Public License 2.1 +name: OpenLDAP Public License 2.1 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715 +notes: Per SPDX.org, this license was released 29 February 2000. +spdx_license_key: OLDAP-2.1 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2000, The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_urls: + - http://www.openldap.org/ +ignorable_emails: + - foundation@openldap.org +--- + The OpenLDAP Public License Version 2.1, 29 February 2000 diff --git a/docs/openldap-2.1.html b/docs/openldap-2.1.html index ccd2464cd2..dd5c9bf413 100644 --- a/docs/openldap-2.1.html +++ b/docs/openldap-2.1.html @@ -234,7 +234,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openldap-2.1.json b/docs/openldap-2.1.json index bb1bd009df..8b3d529e09 100644 --- a/docs/openldap-2.1.json +++ b/docs/openldap-2.1.json @@ -1 +1,26 @@ -{"key": "openldap-2.1", "short_name": "OpenLDAP Public License 2.1", "name": "OpenLDAP Public License 2.1", "category": "Permissive", "owner": "OpenLDAP Foundation", "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715", "notes": "Per SPDX.org, this license was released 29 February 2000.", "spdx_license_key": "OLDAP-2.1", "text_urls": ["http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright 1999-2000, The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_holders": ["The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_urls": ["http://www.openldap.org/"], "ignorable_emails": ["foundation@openldap.org"]} \ No newline at end of file +{ + "key": "openldap-2.1", + "short_name": "OpenLDAP Public License 2.1", + "name": "OpenLDAP Public License 2.1", + "category": "Permissive", + "owner": "OpenLDAP Foundation", + "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715", + "notes": "Per SPDX.org, this license was released 29 February 2000.", + "spdx_license_key": "OLDAP-2.1", + "text_urls": [ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright 1999-2000, The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_holders": [ + "The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_urls": [ + "http://www.openldap.org/" + ], + "ignorable_emails": [ + "foundation@openldap.org" + ] +} \ No newline at end of file diff --git a/docs/openldap-2.2.1.LICENSE b/docs/openldap-2.2.1.LICENSE index 47673ac9fa..55dd52d5dd 100644 --- a/docs/openldap-2.2.1.LICENSE +++ b/docs/openldap-2.2.1.LICENSE @@ -1,3 +1,23 @@ +--- +key: openldap-2.2.1 +short_name: OpenLDAP Public License 2.2.1 +name: OpenLDAP Public License 2.2.1 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e +notes: Per SPDX.org, this license was released 1 March 2000. +spdx_license_key: OLDAP-2.2.1 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_urls: + - http://www.openldap.org/ +--- + The OpenLDAP Public License Version 2.2.1, 1 March 2000 diff --git a/docs/openldap-2.2.1.html b/docs/openldap-2.2.1.html index 094fdfd272..f3440e6101 100644 --- a/docs/openldap-2.2.1.html +++ b/docs/openldap-2.2.1.html @@ -226,7 +226,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openldap-2.2.1.json b/docs/openldap-2.2.1.json index 75eaec8af6..a8ee0fb3cf 100644 --- a/docs/openldap-2.2.1.json +++ b/docs/openldap-2.2.1.json @@ -1 +1,23 @@ -{"key": "openldap-2.2.1", "short_name": "OpenLDAP Public License 2.2.1", "name": "OpenLDAP Public License 2.2.1", "category": "Permissive", "owner": "OpenLDAP Foundation", "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e", "notes": "Per SPDX.org, this license was released 1 March 2000.", "spdx_license_key": "OLDAP-2.2.1", "text_urls": ["http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_holders": ["The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_urls": ["http://www.openldap.org/"]} \ No newline at end of file +{ + "key": "openldap-2.2.1", + "short_name": "OpenLDAP Public License 2.2.1", + "name": "OpenLDAP Public License 2.2.1", + "category": "Permissive", + "owner": "OpenLDAP Foundation", + "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e", + "notes": "Per SPDX.org, this license was released 1 March 2000.", + "spdx_license_key": "OLDAP-2.2.1", + "text_urls": [ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_holders": [ + "The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_urls": [ + "http://www.openldap.org/" + ] +} \ No newline at end of file diff --git a/docs/openldap-2.2.2.LICENSE b/docs/openldap-2.2.2.LICENSE index cdd0f561b0..2dfc29f3da 100644 --- a/docs/openldap-2.2.2.LICENSE +++ b/docs/openldap-2.2.2.LICENSE @@ -1,3 +1,23 @@ +--- +key: openldap-2.2.2 +short_name: OpenLDAP Public License 2.2.2 +name: OpenLDAP Public License 2.2.2 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188 +notes: Per SPDX.org, this license was released 28 July 2000. +spdx_license_key: OLDAP-2.2.2 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_urls: + - http://www.openldap.org/ +--- + The OpenLDAP Public License Version 2.2.2, 28 July 2000 diff --git a/docs/openldap-2.2.2.html b/docs/openldap-2.2.2.html index d11fc4e46a..26a4aedf56 100644 --- a/docs/openldap-2.2.2.html +++ b/docs/openldap-2.2.2.html @@ -227,7 +227,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openldap-2.2.2.json b/docs/openldap-2.2.2.json index 039379929b..9940b93876 100644 --- a/docs/openldap-2.2.2.json +++ b/docs/openldap-2.2.2.json @@ -1 +1,23 @@ -{"key": "openldap-2.2.2", "short_name": "OpenLDAP Public License 2.2.2", "name": "OpenLDAP Public License 2.2.2", "category": "Permissive", "owner": "OpenLDAP Foundation", "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188", "notes": "Per SPDX.org, this license was released 28 July 2000.", "spdx_license_key": "OLDAP-2.2.2", "text_urls": ["http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_holders": ["The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_urls": ["http://www.openldap.org/"]} \ No newline at end of file +{ + "key": "openldap-2.2.2", + "short_name": "OpenLDAP Public License 2.2.2", + "name": "OpenLDAP Public License 2.2.2", + "category": "Permissive", + "owner": "OpenLDAP Foundation", + "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188", + "notes": "Per SPDX.org, this license was released 28 July 2000.", + "spdx_license_key": "OLDAP-2.2.2", + "text_urls": [ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_holders": [ + "The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_urls": [ + "http://www.openldap.org/" + ] +} \ No newline at end of file diff --git a/docs/openldap-2.2.LICENSE b/docs/openldap-2.2.LICENSE index 3dc04ccd71..dbc5cd521b 100644 --- a/docs/openldap-2.2.LICENSE +++ b/docs/openldap-2.2.LICENSE @@ -1,3 +1,23 @@ +--- +key: openldap-2.2 +short_name: OpenLDAP Public License 2.2 +name: OpenLDAP Public License 2.2 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3 +notes: Per SPDX.org, this license was released 1 March 2000. +spdx_license_key: OLDAP-2.2 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2000, The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_urls: + - http://www.openldap.org/ +--- + The OpenLDAP Public License Version 2.2, 1 March 2000 diff --git a/docs/openldap-2.2.html b/docs/openldap-2.2.html index 6236168658..a110db9632 100644 --- a/docs/openldap-2.2.html +++ b/docs/openldap-2.2.html @@ -226,7 +226,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openldap-2.2.json b/docs/openldap-2.2.json index 7956aa8da8..69ada47d51 100644 --- a/docs/openldap-2.2.json +++ b/docs/openldap-2.2.json @@ -1 +1,23 @@ -{"key": "openldap-2.2", "short_name": "OpenLDAP Public License 2.2", "name": "OpenLDAP Public License 2.2", "category": "Permissive", "owner": "OpenLDAP Foundation", "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3", "notes": "Per SPDX.org, this license was released 1 March 2000.", "spdx_license_key": "OLDAP-2.2", "text_urls": ["http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright 1999-2000, The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_holders": ["The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_urls": ["http://www.openldap.org/"]} \ No newline at end of file +{ + "key": "openldap-2.2", + "short_name": "OpenLDAP Public License 2.2", + "name": "OpenLDAP Public License 2.2", + "category": "Permissive", + "owner": "OpenLDAP Foundation", + "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3", + "notes": "Per SPDX.org, this license was released 1 March 2000.", + "spdx_license_key": "OLDAP-2.2", + "text_urls": [ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright 1999-2000, The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_holders": [ + "The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_urls": [ + "http://www.openldap.org/" + ] +} \ No newline at end of file diff --git a/docs/openldap-2.3.LICENSE b/docs/openldap-2.3.LICENSE index 32d7d45371..fc6134b9db 100644 --- a/docs/openldap-2.3.LICENSE +++ b/docs/openldap-2.3.LICENSE @@ -1,3 +1,23 @@ +--- +key: openldap-2.3 +short_name: OpenLDAP Public License 2.3 +name: OpenLDAP Public License 2.3 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3 +notes: Per SPDX.org, this license was released 28 July 2000. +spdx_license_key: OLDAP-2.3 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_urls: + - http://www.openldap.org/ +--- + The OpenLDAP Public License Version 2.3, 28 July 2000 diff --git a/docs/openldap-2.3.html b/docs/openldap-2.3.html index ab6958bbcd..29090b3459 100644 --- a/docs/openldap-2.3.html +++ b/docs/openldap-2.3.html @@ -227,7 +227,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openldap-2.3.json b/docs/openldap-2.3.json index f9f50b860f..bb1ac4fa87 100644 --- a/docs/openldap-2.3.json +++ b/docs/openldap-2.3.json @@ -1 +1,23 @@ -{"key": "openldap-2.3", "short_name": "OpenLDAP Public License 2.3", "name": "OpenLDAP Public License 2.3", "category": "Permissive", "owner": "OpenLDAP Foundation", "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3", "notes": "Per SPDX.org, this license was released 28 July 2000.", "spdx_license_key": "OLDAP-2.3", "text_urls": ["http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_holders": ["The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_urls": ["http://www.openldap.org/"]} \ No newline at end of file +{ + "key": "openldap-2.3", + "short_name": "OpenLDAP Public License 2.3", + "name": "OpenLDAP Public License 2.3", + "category": "Permissive", + "owner": "OpenLDAP Foundation", + "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3", + "notes": "Per SPDX.org, this license was released 28 July 2000.", + "spdx_license_key": "OLDAP-2.3", + "text_urls": [ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_holders": [ + "The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_urls": [ + "http://www.openldap.org/" + ] +} \ No newline at end of file diff --git a/docs/openldap-2.4.LICENSE b/docs/openldap-2.4.LICENSE index 9609ee05ef..f52d22405e 100644 --- a/docs/openldap-2.4.LICENSE +++ b/docs/openldap-2.4.LICENSE @@ -1,3 +1,21 @@ +--- +key: openldap-2.4 +short_name: OpenLDAP Public License 2.4 +name: OpenLDAP Public License 2.4 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386 +notes: Per SPDX.org, this license was released 8 December 2000. +spdx_license_key: OLDAP-2.4 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +--- + The OpenLDAP Public License Version 2.4, 8 December 2000 diff --git a/docs/openldap-2.4.html b/docs/openldap-2.4.html index 9d7c3678ca..3ea14f514c 100644 --- a/docs/openldap-2.4.html +++ b/docs/openldap-2.4.html @@ -214,7 +214,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openldap-2.4.json b/docs/openldap-2.4.json index 088d33bcec..6b19d2fc9f 100644 --- a/docs/openldap-2.4.json +++ b/docs/openldap-2.4.json @@ -1 +1,20 @@ -{"key": "openldap-2.4", "short_name": "OpenLDAP Public License 2.4", "name": "OpenLDAP Public License 2.4", "category": "Permissive", "owner": "OpenLDAP Foundation", "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386", "notes": "Per SPDX.org, this license was released 8 December 2000.", "spdx_license_key": "OLDAP-2.4", "text_urls": ["http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_holders": ["The OpenLDAP Foundation, Redwood City, California, USA."]} \ No newline at end of file +{ + "key": "openldap-2.4", + "short_name": "OpenLDAP Public License 2.4", + "name": "OpenLDAP Public License 2.4", + "category": "Permissive", + "owner": "OpenLDAP Foundation", + "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386", + "notes": "Per SPDX.org, this license was released 8 December 2000.", + "spdx_license_key": "OLDAP-2.4", + "text_urls": [ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_holders": [ + "The OpenLDAP Foundation, Redwood City, California, USA." + ] +} \ No newline at end of file diff --git a/docs/openldap-2.5.LICENSE b/docs/openldap-2.5.LICENSE index c4f09b00f4..464600573f 100644 --- a/docs/openldap-2.5.LICENSE +++ b/docs/openldap-2.5.LICENSE @@ -1,3 +1,21 @@ +--- +key: openldap-2.5 +short_name: OpenLDAP Public License 2.5 +name: OpenLDAP Public License 2.5 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf +notes: Per SPDX.org, this license was released 11 May 2001. +spdx_license_key: OLDAP-2.5 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +--- + The OpenLDAP Public License Version 2.5, 11 May 2001 diff --git a/docs/openldap-2.5.html b/docs/openldap-2.5.html index 67443859a5..18fad6dab2 100644 --- a/docs/openldap-2.5.html +++ b/docs/openldap-2.5.html @@ -215,7 +215,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openldap-2.5.json b/docs/openldap-2.5.json index 1140233903..36e09f8a7f 100644 --- a/docs/openldap-2.5.json +++ b/docs/openldap-2.5.json @@ -1 +1,20 @@ -{"key": "openldap-2.5", "short_name": "OpenLDAP Public License 2.5", "name": "OpenLDAP Public License 2.5", "category": "Permissive", "owner": "OpenLDAP Foundation", "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf", "notes": "Per SPDX.org, this license was released 11 May 2001.", "spdx_license_key": "OLDAP-2.5", "text_urls": ["http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_holders": ["The OpenLDAP Foundation, Redwood City, California, USA."]} \ No newline at end of file +{ + "key": "openldap-2.5", + "short_name": "OpenLDAP Public License 2.5", + "name": "OpenLDAP Public License 2.5", + "category": "Permissive", + "owner": "OpenLDAP Foundation", + "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf", + "notes": "Per SPDX.org, this license was released 11 May 2001.", + "spdx_license_key": "OLDAP-2.5", + "text_urls": [ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_holders": [ + "The OpenLDAP Foundation, Redwood City, California, USA." + ] +} \ No newline at end of file diff --git a/docs/openldap-2.6.LICENSE b/docs/openldap-2.6.LICENSE index d1d66bb197..0d0556d264 100644 --- a/docs/openldap-2.6.LICENSE +++ b/docs/openldap-2.6.LICENSE @@ -1,3 +1,21 @@ +--- +key: openldap-2.6 +short_name: OpenLDAP Public License 2.6 +name: OpenLDAP Public License 2.6 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205 +notes: Per SPDX.org, this license was released 14 June 2001. +spdx_license_key: OLDAP-2.6 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +--- + The OpenLDAP Public License Version 2.6, 14 June 2001 diff --git a/docs/openldap-2.6.html b/docs/openldap-2.6.html index 8c438b5316..476f9eff92 100644 --- a/docs/openldap-2.6.html +++ b/docs/openldap-2.6.html @@ -213,7 +213,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openldap-2.6.json b/docs/openldap-2.6.json index 345d749c9c..06ff620c3b 100644 --- a/docs/openldap-2.6.json +++ b/docs/openldap-2.6.json @@ -1 +1,20 @@ -{"key": "openldap-2.6", "short_name": "OpenLDAP Public License 2.6", "name": "OpenLDAP Public License 2.6", "category": "Permissive", "owner": "OpenLDAP Foundation", "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205", "notes": "Per SPDX.org, this license was released 14 June 2001.", "spdx_license_key": "OLDAP-2.6", "text_urls": ["http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_holders": ["The OpenLDAP Foundation, Redwood City, California, USA."]} \ No newline at end of file +{ + "key": "openldap-2.6", + "short_name": "OpenLDAP Public License 2.6", + "name": "OpenLDAP Public License 2.6", + "category": "Permissive", + "owner": "OpenLDAP Foundation", + "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205", + "notes": "Per SPDX.org, this license was released 14 June 2001.", + "spdx_license_key": "OLDAP-2.6", + "text_urls": [ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_holders": [ + "The OpenLDAP Foundation, Redwood City, California, USA." + ] +} \ No newline at end of file diff --git a/docs/openldap-2.7.LICENSE b/docs/openldap-2.7.LICENSE index bbfdec5803..f0d35d1e7e 100644 --- a/docs/openldap-2.7.LICENSE +++ b/docs/openldap-2.7.LICENSE @@ -1,3 +1,21 @@ +--- +key: openldap-2.7 +short_name: OpenLDAP Public License 2.7 +name: OpenLDAP Public License 2.7 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2 +notes: Per SPDX.org, this license was released 7 September 2001. +spdx_license_key: OLDAP-2.7 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +--- + The OpenLDAP Public License Version 2.7, 7 September 2001 diff --git a/docs/openldap-2.7.html b/docs/openldap-2.7.html index a4c4e50caf..4a7471e24e 100644 --- a/docs/openldap-2.7.html +++ b/docs/openldap-2.7.html @@ -214,7 +214,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openldap-2.7.json b/docs/openldap-2.7.json index c7997d9e08..c992baceb3 100644 --- a/docs/openldap-2.7.json +++ b/docs/openldap-2.7.json @@ -1 +1,20 @@ -{"key": "openldap-2.7", "short_name": "OpenLDAP Public License 2.7", "name": "OpenLDAP Public License 2.7", "category": "Permissive", "owner": "OpenLDAP Foundation", "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2", "notes": "Per SPDX.org, this license was released 7 September 2001.", "spdx_license_key": "OLDAP-2.7", "text_urls": ["http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_holders": ["The OpenLDAP Foundation, Redwood City, California, USA."]} \ No newline at end of file +{ + "key": "openldap-2.7", + "short_name": "OpenLDAP Public License 2.7", + "name": "OpenLDAP Public License 2.7", + "category": "Permissive", + "owner": "OpenLDAP Foundation", + "homepage_url": "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2", + "notes": "Per SPDX.org, this license was released 7 September 2001.", + "spdx_license_key": "OLDAP-2.7", + "text_urls": [ + "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_holders": [ + "The OpenLDAP Foundation, Redwood City, California, USA." + ] +} \ No newline at end of file diff --git a/docs/openldap-2.8.LICENSE b/docs/openldap-2.8.LICENSE index 6295703c0a..ddc7b1aea8 100644 --- a/docs/openldap-2.8.LICENSE +++ b/docs/openldap-2.8.LICENSE @@ -1,3 +1,20 @@ +--- +key: openldap-2.8 +short_name: OpenLDAP Public License 2.8 +name: OpenLDAP Public License 2.8 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/software/release/license.html +spdx_license_key: OLDAP-2.8 +text_urls: + - http://www.openldap.org/software/release/license.html +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +--- + The OpenLDAP Public License Version 2.8, 17 August 2003 diff --git a/docs/openldap-2.8.html b/docs/openldap-2.8.html index 0894faf105..31221217c8 100644 --- a/docs/openldap-2.8.html +++ b/docs/openldap-2.8.html @@ -207,7 +207,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openldap-2.8.json b/docs/openldap-2.8.json index 0c741a7b92..261f34c476 100644 --- a/docs/openldap-2.8.json +++ b/docs/openldap-2.8.json @@ -1 +1,19 @@ -{"key": "openldap-2.8", "short_name": "OpenLDAP Public License 2.8", "name": "OpenLDAP Public License 2.8", "category": "Permissive", "owner": "OpenLDAP Foundation", "homepage_url": "http://www.openldap.org/software/release/license.html", "spdx_license_key": "OLDAP-2.8", "text_urls": ["http://www.openldap.org/software/release/license.html"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA."], "ignorable_holders": ["The OpenLDAP Foundation, Redwood City, California, USA."]} \ No newline at end of file +{ + "key": "openldap-2.8", + "short_name": "OpenLDAP Public License 2.8", + "name": "OpenLDAP Public License 2.8", + "category": "Permissive", + "owner": "OpenLDAP Foundation", + "homepage_url": "http://www.openldap.org/software/release/license.html", + "spdx_license_key": "OLDAP-2.8", + "text_urls": [ + "http://www.openldap.org/software/release/license.html" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA." + ], + "ignorable_holders": [ + "The OpenLDAP Foundation, Redwood City, California, USA." + ] +} \ No newline at end of file diff --git a/docs/openmap.LICENSE b/docs/openmap.LICENSE index bd08225cf8..bf0d9ac8fa 100644 --- a/docs/openmap.LICENSE +++ b/docs/openmap.LICENSE @@ -1,3 +1,15 @@ +--- +key: openmap +short_name: OpenMap Software License Agreement +name: OpenMap Software License Agreement +category: Copyleft Limited +owner: BBN +homepage_url: http://openmap-java.org/License.html +notes: this is highly similar to an artistic license +spdx_license_key: LicenseRef-scancode-openmap +minimum_coverage: 60 +--- + OpenMap Software License Agreement ---------------------------------- diff --git a/docs/openmap.html b/docs/openmap.html index 0609563723..c3c047ff20 100644 --- a/docs/openmap.html +++ b/docs/openmap.html @@ -287,7 +287,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openmap.json b/docs/openmap.json index 242223602e..6fcd696797 100644 --- a/docs/openmap.json +++ b/docs/openmap.json @@ -1 +1,11 @@ -{"key": "openmap", "short_name": "OpenMap Software License Agreement", "name": "OpenMap Software License Agreement", "category": "Copyleft Limited", "owner": "BBN", "homepage_url": "http://openmap-java.org/License.html", "notes": "this is highly similar to an artistic license", "spdx_license_key": "LicenseRef-scancode-openmap", "minimum_coverage": 60} \ No newline at end of file +{ + "key": "openmap", + "short_name": "OpenMap Software License Agreement", + "name": "OpenMap Software License Agreement", + "category": "Copyleft Limited", + "owner": "BBN", + "homepage_url": "http://openmap-java.org/License.html", + "notes": "this is highly similar to an artistic license", + "spdx_license_key": "LicenseRef-scancode-openmap", + "minimum_coverage": 60 +} \ No newline at end of file diff --git a/docs/openmarket-fastcgi.LICENSE b/docs/openmarket-fastcgi.LICENSE index 09aec1fae9..05ccf61ce9 100644 --- a/docs/openmarket-fastcgi.LICENSE +++ b/docs/openmarket-fastcgi.LICENSE @@ -1,3 +1,19 @@ +--- +key: openmarket-fastcgi +short_name: FastCGI License for Spec Implementation +name: FastCGI License for Spec Implementation +category: Permissive +owner: OpenMarket +homepage_url: http://www.fastcgi.com/drupal/node/8 +spdx_license_key: LicenseRef-scancode-openmarket-fastcgi +text_urls: + - http://www.fastcgi.com/drupal/node/8 +ignorable_copyrights: + - copyrighted by Open Market, Inc 'Open Market +ignorable_holders: + - Open Market, Inc 'Open Market +--- + OpenMarket FastCGI This FastCGI application library source and object code (the "Software") and its documentation (the "Documentation") are copyrighted by Open Market, Inc ("Open Market"). The following terms apply to all files associated with the Software and Documentation unless explicitly disclaimed in individual files. diff --git a/docs/openmarket-fastcgi.html b/docs/openmarket-fastcgi.html index a711100eb0..de0eea8865 100644 --- a/docs/openmarket-fastcgi.html +++ b/docs/openmarket-fastcgi.html @@ -164,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openmarket-fastcgi.json b/docs/openmarket-fastcgi.json index 0946421b47..52e350dc75 100644 --- a/docs/openmarket-fastcgi.json +++ b/docs/openmarket-fastcgi.json @@ -1 +1,18 @@ -{"key": "openmarket-fastcgi", "short_name": "FastCGI License for Spec Implementation", "name": "FastCGI License for Spec Implementation", "category": "Permissive", "owner": "OpenMarket", "homepage_url": "http://www.fastcgi.com/drupal/node/8", "spdx_license_key": "LicenseRef-scancode-openmarket-fastcgi", "text_urls": ["http://www.fastcgi.com/drupal/node/8"], "ignorable_copyrights": ["copyrighted by Open Market, Inc 'Open Market"], "ignorable_holders": ["Open Market, Inc 'Open Market"]} \ No newline at end of file +{ + "key": "openmarket-fastcgi", + "short_name": "FastCGI License for Spec Implementation", + "name": "FastCGI License for Spec Implementation", + "category": "Permissive", + "owner": "OpenMarket", + "homepage_url": "http://www.fastcgi.com/drupal/node/8", + "spdx_license_key": "LicenseRef-scancode-openmarket-fastcgi", + "text_urls": [ + "http://www.fastcgi.com/drupal/node/8" + ], + "ignorable_copyrights": [ + "copyrighted by Open Market, Inc 'Open Market" + ], + "ignorable_holders": [ + "Open Market, Inc 'Open Market" + ] +} \ No newline at end of file diff --git a/docs/openmotif-exception-2.0-plus.LICENSE b/docs/openmotif-exception-2.0-plus.LICENSE index c3c65559c0..8dd6fe01d7 100644 --- a/docs/openmotif-exception-2.0-plus.LICENSE +++ b/docs/openmotif-exception-2.0-plus.LICENSE @@ -1,3 +1,38 @@ +--- +key: openmotif-exception-2.0-plus +short_name: Open Motif exception to GPL 2.0 or later +name: Open Motif exception to GPL 2.0 or later +category: Copyleft Limited +owner: NEdit Project +homepage_url: http://nedit.sourcearchive.com/documentation/5.6~cvs20081118/grid3_8c-source.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-openmotif-exception-2.0-plus +faq_url: http://www.nedit.org/faq/ +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This library 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 2, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + In addition, as a special exception to the GNU GPL, the copyright holders + give permission to link the code of this program with the Motif and Open + Motif libraries (or with modified versions of these that use the same + license), and distribute linked combinations including the two. You + must obey the GNU General Public License in all respects for all of + the code used other than linking with Motif/Open Motif. If you modify + this file, you may extend this exception to your version of the file, + but you are not obligated to do so. If you do not wish to do so, + delete this exception statement from your version. +--- + In addition, as a special exception to the GNU GPL, the copyright holders give permission to link the code of this program with the Motif and Open Motif libraries (or with modified versions of these that use the same diff --git a/docs/openmotif-exception-2.0-plus.html b/docs/openmotif-exception-2.0-plus.html index fac083cf15..ed783533c9 100644 --- a/docs/openmotif-exception-2.0-plus.html +++ b/docs/openmotif-exception-2.0-plus.html @@ -185,7 +185,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openmotif-exception-2.0-plus.json b/docs/openmotif-exception-2.0-plus.json index 322a802704..db2d43d4cc 100644 --- a/docs/openmotif-exception-2.0-plus.json +++ b/docs/openmotif-exception-2.0-plus.json @@ -1 +1,15 @@ -{"key": "openmotif-exception-2.0-plus", "short_name": "Open Motif exception to GPL 2.0 or later", "name": "Open Motif exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "NEdit Project", "homepage_url": "http://nedit.sourcearchive.com/documentation/5.6~cvs20081118/grid3_8c-source.html", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-openmotif-exception-2.0-plus", "faq_url": "http://www.nedit.org/faq/", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nIn addition, as a special exception to the GNU GPL, the copyright holders\ngive permission to link the code of this program with the Motif and Open\nMotif libraries (or with modified versions of these that use the same\nlicense), and distribute linked combinations including the two. You\nmust obey the GNU General Public License in all respects for all of\nthe code used other than linking with Motif/Open Motif. If you modify\nthis file, you may extend this exception to your version of the file,\nbut you are not obligated to do so. If you do not wish to do so,\ndelete this exception statement from your version.\n"} \ No newline at end of file +{ + "key": "openmotif-exception-2.0-plus", + "short_name": "Open Motif exception to GPL 2.0 or later", + "name": "Open Motif exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "NEdit Project", + "homepage_url": "http://nedit.sourcearchive.com/documentation/5.6~cvs20081118/grid3_8c-source.html", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-openmotif-exception-2.0-plus", + "faq_url": "http://www.nedit.org/faq/", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nIn addition, as a special exception to the GNU GPL, the copyright holders\ngive permission to link the code of this program with the Motif and Open\nMotif libraries (or with modified versions of these that use the same\nlicense), and distribute linked combinations including the two. You\nmust obey the GNU General Public License in all respects for all of\nthe code used other than linking with Motif/Open Motif. If you modify\nthis file, you may extend this exception to your version of the file,\nbut you are not obligated to do so. If you do not wish to do so,\ndelete this exception statement from your version.\n" +} \ No newline at end of file diff --git a/docs/opennetcf-shared-source.LICENSE b/docs/opennetcf-shared-source.LICENSE index 5be15588c4..51ce81b328 100644 --- a/docs/opennetcf-shared-source.LICENSE +++ b/docs/opennetcf-shared-source.LICENSE @@ -1,3 +1,17 @@ +--- +key: opennetcf-shared-source +short_name: OpenNETCF Shared Source License +name: OpenNETCF Shared Source License +category: Proprietary Free +owner: OpenNETCF Consulting +homepage_url: http://www.opennetcf.com/products/licenses.aspx +spdx_license_key: LicenseRef-scancode-opennetcf-shared-source +ignorable_copyrights: + - (c) 2006-2012 OpenNETCF Consulting, LLC. +ignorable_holders: + - OpenNETCF Consulting, LLC. +--- + NOTICE This license governs use of the accompanying software ("Software"), and your use of the Software constitutes acceptance of this license. Subject to the restrictions below, you may use the Software for any commercial or noncommercial purpose, including distributing derivative works. diff --git a/docs/opennetcf-shared-source.html b/docs/opennetcf-shared-source.html index 117807f70e..01b5b5d793 100644 --- a/docs/opennetcf-shared-source.html +++ b/docs/opennetcf-shared-source.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/opennetcf-shared-source.json b/docs/opennetcf-shared-source.json index 09ddc82c0e..72155dd53f 100644 --- a/docs/opennetcf-shared-source.json +++ b/docs/opennetcf-shared-source.json @@ -1 +1,15 @@ -{"key": "opennetcf-shared-source", "short_name": "OpenNETCF Shared Source License", "name": "OpenNETCF Shared Source License", "category": "Proprietary Free", "owner": "OpenNETCF Consulting", "homepage_url": "http://www.opennetcf.com/products/licenses.aspx", "spdx_license_key": "LicenseRef-scancode-opennetcf-shared-source", "ignorable_copyrights": ["(c) 2006-2012 OpenNETCF Consulting, LLC."], "ignorable_holders": ["OpenNETCF Consulting, LLC."]} \ No newline at end of file +{ + "key": "opennetcf-shared-source", + "short_name": "OpenNETCF Shared Source License", + "name": "OpenNETCF Shared Source License", + "category": "Proprietary Free", + "owner": "OpenNETCF Consulting", + "homepage_url": "http://www.opennetcf.com/products/licenses.aspx", + "spdx_license_key": "LicenseRef-scancode-opennetcf-shared-source", + "ignorable_copyrights": [ + "(c) 2006-2012 OpenNETCF Consulting, LLC." + ], + "ignorable_holders": [ + "OpenNETCF Consulting, LLC." + ] +} \ No newline at end of file diff --git a/docs/openorb-1.0.LICENSE b/docs/openorb-1.0.LICENSE index 54cd654ac4..cd77ff1115 100644 --- a/docs/openorb-1.0.LICENSE +++ b/docs/openorb-1.0.LICENSE @@ -1,3 +1,24 @@ +--- +key: openorb-1.0 +short_name: OpenORB Community License 1.0 +name: OpenORB Community Software License Version 1.0 +category: Permissive +owner: OpenORB Project +homepage_url: http://openorb.sourceforge.net/license.txt +spdx_license_key: LicenseRef-scancode-openorb-1.0 +text_urls: + - http://openorb.sourceforge.net/license.txt +ignorable_copyrights: + - Copyright (c) 2002 The OpenORB Project +ignorable_holders: + - The OpenORB Project +ignorable_authors: + - the OpenORB Community Project (http://sourceforge.net/projects/openorb/) +ignorable_urls: + - http://sourceforge.net/projects/openorb + - http://sourceforge.net/projects/openorb/ +--- + ================================================================================ The OpenORB Community Software License, Version 1.0 ================================================================================ diff --git a/docs/openorb-1.0.html b/docs/openorb-1.0.html index 05dac56efb..3c006e9efb 100644 --- a/docs/openorb-1.0.html +++ b/docs/openorb-1.0.html @@ -210,7 +210,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openorb-1.0.json b/docs/openorb-1.0.json index ef43f617b1..8640493f8b 100644 --- a/docs/openorb-1.0.json +++ b/docs/openorb-1.0.json @@ -1 +1,25 @@ -{"key": "openorb-1.0", "short_name": "OpenORB Community License 1.0", "name": "OpenORB Community Software License Version 1.0", "category": "Permissive", "owner": "OpenORB Project", "homepage_url": "http://openorb.sourceforge.net/license.txt", "spdx_license_key": "LicenseRef-scancode-openorb-1.0", "text_urls": ["http://openorb.sourceforge.net/license.txt"], "ignorable_copyrights": ["Copyright (c) 2002 The OpenORB Project"], "ignorable_holders": ["The OpenORB Project"], "ignorable_authors": ["the OpenORB Community Project (http://sourceforge.net/projects/openorb/)"], "ignorable_urls": ["http://sourceforge.net/projects/openorb", "http://sourceforge.net/projects/openorb/"]} \ No newline at end of file +{ + "key": "openorb-1.0", + "short_name": "OpenORB Community License 1.0", + "name": "OpenORB Community Software License Version 1.0", + "category": "Permissive", + "owner": "OpenORB Project", + "homepage_url": "http://openorb.sourceforge.net/license.txt", + "spdx_license_key": "LicenseRef-scancode-openorb-1.0", + "text_urls": [ + "http://openorb.sourceforge.net/license.txt" + ], + "ignorable_copyrights": [ + "Copyright (c) 2002 The OpenORB Project" + ], + "ignorable_holders": [ + "The OpenORB Project" + ], + "ignorable_authors": [ + "the OpenORB Community Project (http://sourceforge.net/projects/openorb/)" + ], + "ignorable_urls": [ + "http://sourceforge.net/projects/openorb", + "http://sourceforge.net/projects/openorb/" + ] +} \ No newline at end of file diff --git a/docs/openpbs-2.3.LICENSE b/docs/openpbs-2.3.LICENSE index b2a79c705e..699684b63e 100644 --- a/docs/openpbs-2.3.LICENSE +++ b/docs/openpbs-2.3.LICENSE @@ -1,3 +1,29 @@ +--- +key: openpbs-2.3 +short_name: OpenPBS 2.3 +name: OpenPBS Software License v2.3 +category: Copyleft Limited +owner: Fedora +homepage_url: http://fedoraproject.org/wiki/Licensing/OpenPBS +spdx_license_key: LicenseRef-scancode-openpbs-2.3 +text_urls: + - http://fedoraproject.org/wiki/Licensing/OpenPBS +other_urls: + - www.OpenPBS.org +ignorable_copyrights: + - Copyright (c) 1999-2000 Veridian Information Solutions, Inc. +ignorable_holders: + - Veridian Information Solutions, Inc. +ignorable_authors: + - NASA Ames Research Center, Lawrence Livermore National Laboratory, and Veridian Information + Solutions, Inc. +ignorable_urls: + - http://www.openpbs.org/ + - http://www.openpbs.org/credit.html +ignorable_emails: + - sales@OpenPBS.org +--- + OpenPBS (Portable Batch System) v2.3 Software License Copyright (c) 1999-2000 Veridian Information Solutions, Inc. diff --git a/docs/openpbs-2.3.html b/docs/openpbs-2.3.html index f8a611a493..6b7bd13180 100644 --- a/docs/openpbs-2.3.html +++ b/docs/openpbs-2.3.html @@ -264,7 +264,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openpbs-2.3.json b/docs/openpbs-2.3.json index 1f28567055..46c8a86aea 100644 --- a/docs/openpbs-2.3.json +++ b/docs/openpbs-2.3.json @@ -1 +1,31 @@ -{"key": "openpbs-2.3", "short_name": "OpenPBS 2.3", "name": "OpenPBS Software License v2.3", "category": "Copyleft Limited", "owner": "Fedora", "homepage_url": "http://fedoraproject.org/wiki/Licensing/OpenPBS", "spdx_license_key": "LicenseRef-scancode-openpbs-2.3", "text_urls": ["http://fedoraproject.org/wiki/Licensing/OpenPBS"], "other_urls": ["www.OpenPBS.org"], "ignorable_copyrights": ["Copyright (c) 1999-2000 Veridian Information Solutions, Inc."], "ignorable_holders": ["Veridian Information Solutions, Inc."], "ignorable_authors": ["NASA Ames Research Center, Lawrence Livermore National Laboratory, and Veridian Information Solutions, Inc."], "ignorable_urls": ["http://www.openpbs.org/", "http://www.openpbs.org/credit.html"], "ignorable_emails": ["sales@OpenPBS.org"]} \ No newline at end of file +{ + "key": "openpbs-2.3", + "short_name": "OpenPBS 2.3", + "name": "OpenPBS Software License v2.3", + "category": "Copyleft Limited", + "owner": "Fedora", + "homepage_url": "http://fedoraproject.org/wiki/Licensing/OpenPBS", + "spdx_license_key": "LicenseRef-scancode-openpbs-2.3", + "text_urls": [ + "http://fedoraproject.org/wiki/Licensing/OpenPBS" + ], + "other_urls": [ + "www.OpenPBS.org" + ], + "ignorable_copyrights": [ + "Copyright (c) 1999-2000 Veridian Information Solutions, Inc." + ], + "ignorable_holders": [ + "Veridian Information Solutions, Inc." + ], + "ignorable_authors": [ + "NASA Ames Research Center, Lawrence Livermore National Laboratory, and Veridian Information Solutions, Inc." + ], + "ignorable_urls": [ + "http://www.openpbs.org/", + "http://www.openpbs.org/credit.html" + ], + "ignorable_emails": [ + "sales@OpenPBS.org" + ] +} \ No newline at end of file diff --git a/docs/openpub.LICENSE b/docs/openpub.LICENSE index 7b1515a360..6a0fd3e52f 100644 --- a/docs/openpub.LICENSE +++ b/docs/openpub.LICENSE @@ -1,3 +1,25 @@ +--- +key: openpub +short_name: Open Publication License 1.0 +name: Open Publication License v1.0 +category: Permissive +owner: OpenContent +homepage_url: http://opencontent.org/openpub/ +spdx_license_key: OPUBL-1.0 +other_spdx_license_keys: + - LicenseRef-scancode-openpub +text_urls: + - https://opencontent.org/openpub/ +other_urls: + - http://works.opencontent.org/ + - http://www.opencontent.org/openpub/ + - https://opencontent.org/openpub/ + - https://www.ctan.org/license/opl + - https://www.debian.org/opl +ignorable_urls: + - http://www.opencontent.org/openpub +--- + Open Publication License v1.0, 8 June 1999 diff --git a/docs/openpub.html b/docs/openpub.html index 21dfa4c62a..76b375a025 100644 --- a/docs/openpub.html +++ b/docs/openpub.html @@ -227,7 +227,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openpub.json b/docs/openpub.json index 95348dadca..cde01b6f86 100644 --- a/docs/openpub.json +++ b/docs/openpub.json @@ -1 +1,25 @@ -{"key": "openpub", "short_name": "Open Publication License 1.0", "name": "Open Publication License v1.0", "category": "Permissive", "owner": "OpenContent", "homepage_url": "http://opencontent.org/openpub/", "spdx_license_key": "OPUBL-1.0", "other_spdx_license_keys": ["LicenseRef-scancode-openpub"], "text_urls": ["https://opencontent.org/openpub/"], "other_urls": ["http://works.opencontent.org/", "http://www.opencontent.org/openpub/", "https://opencontent.org/openpub/", "https://www.ctan.org/license/opl", "https://www.debian.org/opl"], "ignorable_urls": ["http://www.opencontent.org/openpub"]} \ No newline at end of file +{ + "key": "openpub", + "short_name": "Open Publication License 1.0", + "name": "Open Publication License v1.0", + "category": "Permissive", + "owner": "OpenContent", + "homepage_url": "http://opencontent.org/openpub/", + "spdx_license_key": "OPUBL-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openpub" + ], + "text_urls": [ + "https://opencontent.org/openpub/" + ], + "other_urls": [ + "http://works.opencontent.org/", + "http://www.opencontent.org/openpub/", + "https://opencontent.org/openpub/", + "https://www.ctan.org/license/opl", + "https://www.debian.org/opl" + ], + "ignorable_urls": [ + "http://www.opencontent.org/openpub" + ] +} \ No newline at end of file diff --git a/docs/opensaml-1.0.LICENSE b/docs/opensaml-1.0.LICENSE index 22e2e5ab1a..56a6bee922 100644 --- a/docs/opensaml-1.0.LICENSE +++ b/docs/opensaml-1.0.LICENSE @@ -1,3 +1,24 @@ +--- +key: opensaml-1.0 +short_name: OpenSAML License v1 +name: OpenSAML License Version 1 +category: Permissive +owner: OpenSAML Project +spdx_license_key: LicenseRef-scancode-opensaml-1.0 +other_urls: + - https://wiki.shibboleth.net/confluence/display/OpenSAML/Home +ignorable_copyrights: + - Copyright (c) 2002 University Corporation for Advanced Internet Development, Inc. +ignorable_holders: + - University Corporation for Advanced Internet Development, Inc. +ignorable_authors: + - the University Corporation +ignorable_urls: + - http://www.ucaid.edu/ +ignorable_emails: + - opensaml@opensaml.org +--- + The OpenSAML License, Version 1. Copyright (c) 2002 University Corporation for Advanced Internet Development, Inc. diff --git a/docs/opensaml-1.0.html b/docs/opensaml-1.0.html index 425627a188..7592674150 100644 --- a/docs/opensaml-1.0.html +++ b/docs/opensaml-1.0.html @@ -218,7 +218,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/opensaml-1.0.json b/docs/opensaml-1.0.json index 5b4d60bf25..84ccbb7883 100644 --- a/docs/opensaml-1.0.json +++ b/docs/opensaml-1.0.json @@ -1 +1,26 @@ -{"key": "opensaml-1.0", "short_name": "OpenSAML License v1", "name": "OpenSAML License Version 1", "category": "Permissive", "owner": "OpenSAML Project", "spdx_license_key": "LicenseRef-scancode-opensaml-1.0", "other_urls": ["https://wiki.shibboleth.net/confluence/display/OpenSAML/Home"], "ignorable_copyrights": ["Copyright (c) 2002 University Corporation for Advanced Internet Development, Inc."], "ignorable_holders": ["University Corporation for Advanced Internet Development, Inc."], "ignorable_authors": ["the University Corporation"], "ignorable_urls": ["http://www.ucaid.edu/"], "ignorable_emails": ["opensaml@opensaml.org"]} \ No newline at end of file +{ + "key": "opensaml-1.0", + "short_name": "OpenSAML License v1", + "name": "OpenSAML License Version 1", + "category": "Permissive", + "owner": "OpenSAML Project", + "spdx_license_key": "LicenseRef-scancode-opensaml-1.0", + "other_urls": [ + "https://wiki.shibboleth.net/confluence/display/OpenSAML/Home" + ], + "ignorable_copyrights": [ + "Copyright (c) 2002 University Corporation for Advanced Internet Development, Inc." + ], + "ignorable_holders": [ + "University Corporation for Advanced Internet Development, Inc." + ], + "ignorable_authors": [ + "the University Corporation" + ], + "ignorable_urls": [ + "http://www.ucaid.edu/" + ], + "ignorable_emails": [ + "opensaml@opensaml.org" + ] +} \ No newline at end of file diff --git a/docs/opensc-openssl-openpace-exception-gpl.LICENSE b/docs/opensc-openssl-openpace-exception-gpl.LICENSE index e7f587cb82..c5cee3f2e4 100644 --- a/docs/opensc-openssl-openpace-exception-gpl.LICENSE +++ b/docs/opensc-openssl-openpace-exception-gpl.LICENSE @@ -1,3 +1,19 @@ +--- +key: opensc-openssl-openpace-exception-gpl +short_name: OpenSC OpenSSL linking exception GPL in OpenPace +name: OpenSC and OpenSSL linking exception to GPL in OpenPace +category: Copyleft +owner: OpenPACE Project +homepage_url: https://github.com/frankmorgner/openpace/blob/812ecb1f60188e6df89998c7a3704b8021c8bfd7/COPYING#L676 +is_exception: yes +spdx_license_key: LicenseRef-scancode-openpace-exception-gpl +other_spdx_license_keys: + - LicenseRef-scancode-opensc-openssl-openpace-exception-gpl +other_urls: + - https://github.com/frankmorgner/openpace/issues/46 + - https://github.com/frankmorgner/openpace/commit/3077280a49992c2d947fbde327ef53add8576587 +--- + Additional permission under GNU GPL version 3 section 7 If you modify this Program, or any covered work, by linking or combining it diff --git a/docs/opensc-openssl-openpace-exception-gpl.html b/docs/opensc-openssl-openpace-exception-gpl.html index b31484258a..901b3f0063 100644 --- a/docs/opensc-openssl-openpace-exception-gpl.html +++ b/docs/opensc-openssl-openpace-exception-gpl.html @@ -168,7 +168,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/opensc-openssl-openpace-exception-gpl.json b/docs/opensc-openssl-openpace-exception-gpl.json index f472fae867..fc73cb8881 100644 --- a/docs/opensc-openssl-openpace-exception-gpl.json +++ b/docs/opensc-openssl-openpace-exception-gpl.json @@ -1 +1,17 @@ -{"key": "opensc-openssl-openpace-exception-gpl", "short_name": "OpenSC OpenSSL linking exception GPL in OpenPace", "name": "OpenSC and OpenSSL linking exception to GPL in OpenPace", "category": "Copyleft", "owner": "OpenPACE Project", "homepage_url": "https://github.com/frankmorgner/openpace/blob/812ecb1f60188e6df89998c7a3704b8021c8bfd7/COPYING#L676", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-openpace-exception-gpl", "other_spdx_license_keys": ["LicenseRef-scancode-opensc-openssl-openpace-exception-gpl"], "other_urls": ["https://github.com/frankmorgner/openpace/issues/46", "https://github.com/frankmorgner/openpace/commit/3077280a49992c2d947fbde327ef53add8576587"]} \ No newline at end of file +{ + "key": "opensc-openssl-openpace-exception-gpl", + "short_name": "OpenSC OpenSSL linking exception GPL in OpenPace", + "name": "OpenSC and OpenSSL linking exception to GPL in OpenPace", + "category": "Copyleft", + "owner": "OpenPACE Project", + "homepage_url": "https://github.com/frankmorgner/openpace/blob/812ecb1f60188e6df89998c7a3704b8021c8bfd7/COPYING#L676", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-openpace-exception-gpl", + "other_spdx_license_keys": [ + "LicenseRef-scancode-opensc-openssl-openpace-exception-gpl" + ], + "other_urls": [ + "https://github.com/frankmorgner/openpace/issues/46", + "https://github.com/frankmorgner/openpace/commit/3077280a49992c2d947fbde327ef53add8576587" + ] +} \ No newline at end of file diff --git a/docs/openssh.LICENSE b/docs/openssh.LICENSE index ca26477707..40a4edb361 100644 --- a/docs/openssh.LICENSE +++ b/docs/openssh.LICENSE @@ -1,3 +1,47 @@ +--- +key: openssh +short_name: OpenSSH License +name: OpenSSH License +category: Permissive +owner: OpenBSD Project +homepage_url: https://github.com/openssh/openssh-portable/blob/V_7_3_P1/LICENCE +notes: composite +spdx_license_key: SSH-OpenSSH +other_urls: + - http://www.openssh.org/ + - https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/LICENCE#L10 +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 1983, 1990, 1992, 1993, 1995 The Regents of the University of California + - Copyright (c) 1995 Tatu Ylonen , Espoo, Finland + - Copyright (c) 1998 CORE SDI + - Copyright 1995, 1996 by David Mazieres + - Copyright Patrick Powell 1995 +ignorable_holders: + - CORE SDI + - David Mazieres + - Patrick Powell + - Tatu Ylonen , Espoo, Finland + - The Regents of the University of California +ignorable_authors: + - Antoon Bosselaers + - Patrick Powell (papowell@astart.com) + - Paulo Barreto + - Vincent Rijmen +ignorable_urls: + - http://www.core-sdi.com/ + - http://www.cs.hut.fi/crypto +ignorable_emails: + - antoon.bosselaers@esat.kuleuven.ac.be + - dm@lcs.mit.edu + - futo@core-sdi.com + - papowell@astart.com + - paulo.barreto@terra.com.br + - phk@login.dknet.dk + - vincent.rijmen@esat.kuleuven.ac.be + - ylo@cs.hut.fi +--- + This file is part of the OpenSSH software. The licences which components of this software fall under are as diff --git a/docs/openssh.html b/docs/openssh.html index e47e5765de..dc3d1edc70 100644 --- a/docs/openssh.html +++ b/docs/openssh.html @@ -534,7 +534,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openssh.json b/docs/openssh.json index 9f19ff75b0..6f967a96d1 100644 --- a/docs/openssh.json +++ b/docs/openssh.json @@ -1 +1,49 @@ -{"key": "openssh", "short_name": "OpenSSH License", "name": "OpenSSH License", "category": "Permissive", "owner": "OpenBSD Project", "homepage_url": "https://github.com/openssh/openssh-portable/blob/V_7_3_P1/LICENCE", "notes": "composite", "spdx_license_key": "SSH-OpenSSH", "other_urls": ["http://www.openssh.org/", "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/LICENCE#L10"], "minimum_coverage": 80, "ignorable_copyrights": ["Copyright (c) 1983, 1990, 1992, 1993, 1995 The Regents of the University of California", "Copyright (c) 1995 Tatu Ylonen , Espoo, Finland", "Copyright (c) 1998 CORE SDI", "Copyright 1995, 1996 by David Mazieres ", "Copyright Patrick Powell 1995"], "ignorable_holders": ["CORE SDI", "David Mazieres", "Patrick Powell", "Tatu Ylonen , Espoo, Finland", "The Regents of the University of California"], "ignorable_authors": ["Antoon Bosselaers ", "Patrick Powell (papowell@astart.com)", "Paulo Barreto ", "Vincent Rijmen "], "ignorable_urls": ["http://www.core-sdi.com/", "http://www.cs.hut.fi/crypto"], "ignorable_emails": ["antoon.bosselaers@esat.kuleuven.ac.be", "dm@lcs.mit.edu", "futo@core-sdi.com", "papowell@astart.com", "paulo.barreto@terra.com.br", "phk@login.dknet.dk", "vincent.rijmen@esat.kuleuven.ac.be", "ylo@cs.hut.fi"]} \ No newline at end of file +{ + "key": "openssh", + "short_name": "OpenSSH License", + "name": "OpenSSH License", + "category": "Permissive", + "owner": "OpenBSD Project", + "homepage_url": "https://github.com/openssh/openssh-portable/blob/V_7_3_P1/LICENCE", + "notes": "composite", + "spdx_license_key": "SSH-OpenSSH", + "other_urls": [ + "http://www.openssh.org/", + "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/LICENCE#L10" + ], + "minimum_coverage": 80, + "ignorable_copyrights": [ + "Copyright (c) 1983, 1990, 1992, 1993, 1995 The Regents of the University of California", + "Copyright (c) 1995 Tatu Ylonen , Espoo, Finland", + "Copyright (c) 1998 CORE SDI", + "Copyright 1995, 1996 by David Mazieres ", + "Copyright Patrick Powell 1995" + ], + "ignorable_holders": [ + "CORE SDI", + "David Mazieres", + "Patrick Powell", + "Tatu Ylonen , Espoo, Finland", + "The Regents of the University of California" + ], + "ignorable_authors": [ + "Antoon Bosselaers ", + "Patrick Powell (papowell@astart.com)", + "Paulo Barreto ", + "Vincent Rijmen " + ], + "ignorable_urls": [ + "http://www.core-sdi.com/", + "http://www.cs.hut.fi/crypto" + ], + "ignorable_emails": [ + "antoon.bosselaers@esat.kuleuven.ac.be", + "dm@lcs.mit.edu", + "futo@core-sdi.com", + "papowell@astart.com", + "paulo.barreto@terra.com.br", + "phk@login.dknet.dk", + "vincent.rijmen@esat.kuleuven.ac.be", + "ylo@cs.hut.fi" + ] +} \ No newline at end of file diff --git a/docs/openssl-exception-agpl-3.0-monit.LICENSE b/docs/openssl-exception-agpl-3.0-monit.LICENSE index 9678d9e967..efb1547455 100644 --- a/docs/openssl-exception-agpl-3.0-monit.LICENSE +++ b/docs/openssl-exception-agpl-3.0-monit.LICENSE @@ -1,3 +1,16 @@ +--- +key: openssl-exception-agpl-3.0-monit +short_name: OpenSSL exception to AGPL 3.0 - Monit style +name: OpenSSL exception to AGPL 3.0 - Monit style +category: Copyleft +owner: Tildeslash +notes: Similar to openssl-exception-agpl-3.0 but cannot be removed. +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-agpl3.0monit +other_spdx_license_keys: + - LicenseRef-scancode-openssl-exception-agpl-3.0-monit +--- + * In addition, as a special exception, the copyright holders give * permission to link the code of portions of this program with the * OpenSSL library under certain conditions as described in each diff --git a/docs/openssl-exception-agpl-3.0-monit.html b/docs/openssl-exception-agpl-3.0-monit.html index 27a16b38f2..293304ef20 100644 --- a/docs/openssl-exception-agpl-3.0-monit.html +++ b/docs/openssl-exception-agpl-3.0-monit.html @@ -150,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openssl-exception-agpl-3.0-monit.json b/docs/openssl-exception-agpl-3.0-monit.json index d09b3e58b1..34374b0304 100644 --- a/docs/openssl-exception-agpl-3.0-monit.json +++ b/docs/openssl-exception-agpl-3.0-monit.json @@ -1 +1,13 @@ -{"key": "openssl-exception-agpl-3.0-monit", "short_name": "OpenSSL exception to AGPL 3.0 - Monit style", "name": "OpenSSL exception to AGPL 3.0 - Monit style", "category": "Copyleft", "owner": "Tildeslash", "notes": "Similar to openssl-exception-agpl-3.0 but cannot be removed.", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl3.0monit", "other_spdx_license_keys": ["LicenseRef-scancode-openssl-exception-agpl-3.0-monit"]} \ No newline at end of file +{ + "key": "openssl-exception-agpl-3.0-monit", + "short_name": "OpenSSL exception to AGPL 3.0 - Monit style", + "name": "OpenSSL exception to AGPL 3.0 - Monit style", + "category": "Copyleft", + "owner": "Tildeslash", + "notes": "Similar to openssl-exception-agpl-3.0 but cannot be removed.", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl3.0monit", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-agpl-3.0-monit" + ] +} \ No newline at end of file diff --git a/docs/openssl-exception-agpl-3.0-plus.LICENSE b/docs/openssl-exception-agpl-3.0-plus.LICENSE index bc40f80355..913f80d879 100644 --- a/docs/openssl-exception-agpl-3.0-plus.LICENSE +++ b/docs/openssl-exception-agpl-3.0-plus.LICENSE @@ -1,3 +1,15 @@ +--- +key: openssl-exception-agpl-3.0-plus +short_name: OpenSSL exception to AGPL 3.0 or later +name: OpenSSL exception to AGPL 3.0 or later +category: Copyleft +owner: Unspecified +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-agpl3.0plus +other_spdx_license_keys: + - LicenseRef-scancode-openssl-exception-agpl-3.0-plus +--- + In addition, as a special exception, the copyright holders give permission to link the code of portions of this program with the OpenSSL library under certain conditions as described in each @@ -10,4 +22,4 @@ above. 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. +program, then also delete it here. \ No newline at end of file diff --git a/docs/openssl-exception-agpl-3.0-plus.html b/docs/openssl-exception-agpl-3.0-plus.html index 5541e4daa1..ab893fc64b 100644 --- a/docs/openssl-exception-agpl-3.0-plus.html +++ b/docs/openssl-exception-agpl-3.0-plus.html @@ -136,8 +136,7 @@ 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. - +program, then also delete it here.
@@ -149,7 +148,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openssl-exception-agpl-3.0-plus.json b/docs/openssl-exception-agpl-3.0-plus.json index e296177a1d..8669bf1830 100644 --- a/docs/openssl-exception-agpl-3.0-plus.json +++ b/docs/openssl-exception-agpl-3.0-plus.json @@ -1 +1,12 @@ -{"key": "openssl-exception-agpl-3.0-plus", "short_name": "OpenSSL exception to AGPL 3.0 or later", "name": "OpenSSL exception to AGPL 3.0 or later", "category": "Copyleft", "owner": "Unspecified", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl3.0plus", "other_spdx_license_keys": ["LicenseRef-scancode-openssl-exception-agpl-3.0-plus"]} \ No newline at end of file +{ + "key": "openssl-exception-agpl-3.0-plus", + "short_name": "OpenSSL exception to AGPL 3.0 or later", + "name": "OpenSSL exception to AGPL 3.0 or later", + "category": "Copyleft", + "owner": "Unspecified", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl3.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-agpl-3.0-plus" + ] +} \ No newline at end of file diff --git a/docs/openssl-exception-agpl-3.0.LICENSE b/docs/openssl-exception-agpl-3.0.LICENSE index d26283deb0..8bfc790395 100644 --- a/docs/openssl-exception-agpl-3.0.LICENSE +++ b/docs/openssl-exception-agpl-3.0.LICENSE @@ -1,3 +1,43 @@ +--- +key: openssl-exception-agpl-3.0 +short_name: OpenSSL exception to AGPL 3.0 +name: OpenSSL exception to AGPL 3.0 +category: Copyleft +owner: MongoDB +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-agpl-3.0 +standard_notice: | + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero 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 Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + Also add information on how to contact you by electronic and paper mail. + If your software can interact with users remotely through a computer + network, you should also make sure that it provides a way for users to get + its source. For example, if your program is a web application, its + interface could display a "Source" link that leads users to an archive of + the code. There are many ways you could offer source, and different + solutions will be better for different programs; see section 13 for the + specific requirements. + As a special exception, the copyright holders give permission to link the + code of portions of this program with the OpenSSL library under certain + conditions as described in each individual source file and distribute + linked combinations including the program with the OpenSSL library. You + must comply with the GNU Affero General Public License in all respects for + all of the code used other than as permitted herein. 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 in the license file. +--- + As a special exception, the copyright holders give permission to link the code of portions of this program with the OpenSSL library under certain conditions as described in each individual source file and distribute diff --git a/docs/openssl-exception-agpl-3.0.html b/docs/openssl-exception-agpl-3.0.html index e24fe30db9..9d41ecf230 100644 --- a/docs/openssl-exception-agpl-3.0.html +++ b/docs/openssl-exception-agpl-3.0.html @@ -173,7 +173,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openssl-exception-agpl-3.0.json b/docs/openssl-exception-agpl-3.0.json index e795ad2e6a..8aa86ab265 100644 --- a/docs/openssl-exception-agpl-3.0.json +++ b/docs/openssl-exception-agpl-3.0.json @@ -1 +1,10 @@ -{"key": "openssl-exception-agpl-3.0", "short_name": "OpenSSL exception to AGPL 3.0", "name": "OpenSSL exception to AGPL 3.0", "category": "Copyleft", "owner": "MongoDB", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl-3.0", "standard_notice": "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU Affero General Public License as\npublished by the Free Software Foundation, either version 3 of the\nLicense, or (at your option) any later version.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU Affero General Public License for more details.\nYou should have received a copy of the GNU Affero General Public License\nalong with this program. If not, see .\nAlso add information on how to contact you by electronic and paper mail.\nIf your software can interact with users remotely through a computer\nnetwork, you should also make sure that it provides a way for users to get\nits source. For example, if your program is a web application, its\ninterface could display a \"Source\" link that leads users to an archive of\nthe code. There are many ways you could offer source, and different\nsolutions will be better for different programs; see section 13 for the\nspecific requirements.\nAs a special exception, the copyright holders give permission to link the\ncode of portions of this program with the OpenSSL library under certain\nconditions as described in each individual source file and distribute\nlinked combinations including the program with the OpenSSL library. You\nmust comply with the GNU Affero General Public License in all respects for\nall of the code used other than as permitted herein. If you modify file(s)\nwith this exception, you may extend this exception to your version of the\nfile(s), but you are not obligated to do so. If you do not wish to do so,\ndelete this exception statement from your version. If you delete this\nexception statement from all source files in the program, then also delete\nit in the license file.\n"} \ No newline at end of file +{ + "key": "openssl-exception-agpl-3.0", + "short_name": "OpenSSL exception to AGPL 3.0", + "name": "OpenSSL exception to AGPL 3.0", + "category": "Copyleft", + "owner": "MongoDB", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl-3.0", + "standard_notice": "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU Affero General Public License as\npublished by the Free Software Foundation, either version 3 of the\nLicense, or (at your option) any later version.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU Affero General Public License for more details.\nYou should have received a copy of the GNU Affero General Public License\nalong with this program. If not, see .\nAlso add information on how to contact you by electronic and paper mail.\nIf your software can interact with users remotely through a computer\nnetwork, you should also make sure that it provides a way for users to get\nits source. For example, if your program is a web application, its\ninterface could display a \"Source\" link that leads users to an archive of\nthe code. There are many ways you could offer source, and different\nsolutions will be better for different programs; see section 13 for the\nspecific requirements.\nAs a special exception, the copyright holders give permission to link the\ncode of portions of this program with the OpenSSL library under certain\nconditions as described in each individual source file and distribute\nlinked combinations including the program with the OpenSSL library. You\nmust comply with the GNU Affero General Public License in all respects for\nall of the code used other than as permitted herein. If you modify file(s)\nwith this exception, you may extend this exception to your version of the\nfile(s), but you are not obligated to do so. If you do not wish to do so,\ndelete this exception statement from your version. If you delete this\nexception statement from all source files in the program, then also delete\nit in the license file.\n" +} \ No newline at end of file diff --git a/docs/openssl-exception-gpl-2.0-plus.LICENSE b/docs/openssl-exception-gpl-2.0-plus.LICENSE index 25209d5608..be58274ec3 100644 --- a/docs/openssl-exception-gpl-2.0-plus.LICENSE +++ b/docs/openssl-exception-gpl-2.0-plus.LICENSE @@ -1,3 +1,34 @@ +--- +key: openssl-exception-gpl-2.0-plus +short_name: OpenSSL exception to GPL 2.0 or later +name: OpenSSL exception to GPL 2.0 or later +category: Copyleft +owner: magnumripper +homepage_url: https://github.com/magnumripper/JohnTheRipper/blob/1.8.0/doc/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-gpl-2.0-plus +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + 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 2 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. + As a special exception to the GNU General Public License terms, + permission is hereby granted to link the code of this program, with or + without modification, with any version of the OpenSSL library and/or any + version of unRAR, and to distribute such linked combinations. You must + obey the GNU GPL in all respects for all of the code used other than + OpenSSL and unRAR. If you modify this program, you may extend this + exception to your version of the program, but you are not obligated to + do so. (In other words, you may release your derived work under pure + GNU GPL version 2 or later as published by the FSF.) +--- + As a special exception to the GNU General Public License terms, permission is hereby granted to link the code of this program, with or without modification, with any version of the OpenSSL library and/or any diff --git a/docs/openssl-exception-gpl-2.0-plus.html b/docs/openssl-exception-gpl-2.0-plus.html index 379a55fa3c..13519ba931 100644 --- a/docs/openssl-exception-gpl-2.0-plus.html +++ b/docs/openssl-exception-gpl-2.0-plus.html @@ -175,7 +175,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openssl-exception-gpl-2.0-plus.json b/docs/openssl-exception-gpl-2.0-plus.json index a09cd08f50..f8bdbaa699 100644 --- a/docs/openssl-exception-gpl-2.0-plus.json +++ b/docs/openssl-exception-gpl-2.0-plus.json @@ -1 +1,14 @@ -{"key": "openssl-exception-gpl-2.0-plus", "short_name": "OpenSSL exception to GPL 2.0 or later", "name": "OpenSSL exception to GPL 2.0 or later", "category": "Copyleft", "owner": "magnumripper", "homepage_url": "https://github.com/magnumripper/JohnTheRipper/blob/1.8.0/doc/LICENSE", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-openssl-exception-gpl-2.0-plus", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\nAs a special exception to the GNU General Public License terms,\npermission is hereby granted to link the code of this program, with or\nwithout modification, with any version of the OpenSSL library and/or any\nversion of unRAR, and to distribute such linked combinations. You must\nobey the GNU GPL in all respects for all of the code used other than\nOpenSSL and unRAR. If you modify this program, you may extend this\nexception to your version of the program, but you are not obligated to\ndo so. (In other words, you may release your derived work under pure\nGNU GPL version 2 or later as published by the FSF.)\n"} \ No newline at end of file +{ + "key": "openssl-exception-gpl-2.0-plus", + "short_name": "OpenSSL exception to GPL 2.0 or later", + "name": "OpenSSL exception to GPL 2.0 or later", + "category": "Copyleft", + "owner": "magnumripper", + "homepage_url": "https://github.com/magnumripper/JohnTheRipper/blob/1.8.0/doc/LICENSE", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-openssl-exception-gpl-2.0-plus", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\nAs a special exception to the GNU General Public License terms,\npermission is hereby granted to link the code of this program, with or\nwithout modification, with any version of the OpenSSL library and/or any\nversion of unRAR, and to distribute such linked combinations. You must\nobey the GNU GPL in all respects for all of the code used other than\nOpenSSL and unRAR. If you modify this program, you may extend this\nexception to your version of the program, but you are not obligated to\ndo so. (In other words, you may release your derived work under pure\nGNU GPL version 2 or later as published by the FSF.)\n" +} \ No newline at end of file diff --git a/docs/openssl-exception-gpl-2.0.LICENSE b/docs/openssl-exception-gpl-2.0.LICENSE index f87ced8369..835fb34000 100644 --- a/docs/openssl-exception-gpl-2.0.LICENSE +++ b/docs/openssl-exception-gpl-2.0.LICENSE @@ -1,3 +1,47 @@ +--- +key: openssl-exception-gpl-2.0 +short_name: OpenSSL exception to GPL 2.0 +name: OpenSSL exception to GPL 2.0 +category: Copyleft +owner: OpenSSL +homepage_url: http://www.openssl.org/source/license.html +notes: this is typically used with GPL 2.0 but sometimes seen with GPL 3.0 +is_exception: yes +spdx_license_key: x11vnc-openssl-exception +text_urls: + - http://www.openssl.org/source/license.html + - http://www.gnu.org/licenses/gpl-2.0.txt +faq_url: http://people.gnome.org/~markmc/openssl-and-the-gpl.html +other_urls: + - https://github.com/LibVNC/x11vnc/blob/master/src/8to24.c#L22 +standard_notice: | + The OpenSSL License is not compatible with the GPL, since it contains the + following two clauses: + * 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/)" + * 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/)" + The OpenSSL Exception: + * In addition, as a special exception, the copyright holders give + * permission to link the code of portions of this program with the + * OpenSSL library under certain conditions as described in each + * individual source file, and distribute linked combinations + * including the two. + * You must obey the GNU 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. + The OpenSSL Exception Discussion: + http://people.gnome.org/~markmc/openssl-and-the-gpl.html +--- + The OpenSSL Exception: In addition, as a special exception, the copyright holders give diff --git a/docs/openssl-exception-gpl-2.0.html b/docs/openssl-exception-gpl-2.0.html index d1e1eac976..0063553906 100644 --- a/docs/openssl-exception-gpl-2.0.html +++ b/docs/openssl-exception-gpl-2.0.html @@ -123,7 +123,7 @@
spdx_license_key
- LicenseRef-scancode-openssl-exception-gpl-2.0 + x11vnc-openssl-exception
@@ -143,6 +143,15 @@ +
other_urls
+
+ + + +
+
standard_notice
@@ -202,7 +211,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openssl-exception-gpl-2.0.json b/docs/openssl-exception-gpl-2.0.json index 9c069d94d4..b1fdafbf22 100644 --- a/docs/openssl-exception-gpl-2.0.json +++ b/docs/openssl-exception-gpl-2.0.json @@ -1 +1,20 @@ -{"key": "openssl-exception-gpl-2.0", "short_name": "OpenSSL exception to GPL 2.0", "name": "OpenSSL exception to GPL 2.0", "category": "Copyleft", "owner": "OpenSSL", "homepage_url": "http://www.openssl.org/source/license.html", "notes": "this is typically used with GPL 2.0 but sometimes seen with GPL 3.0", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-openssl-exception-gpl-2.0", "text_urls": ["http://www.openssl.org/source/license.html", "http://www.gnu.org/licenses/gpl-2.0.txt"], "faq_url": "http://people.gnome.org/~markmc/openssl-and-the-gpl.html", "standard_notice": "The OpenSSL License is not compatible with the GPL, since it contains the\nfollowing two clauses:\n* 3. All advertising materials mentioning features or use of this\n* software must display the following acknowledgment:\n* \"This product includes software developed by the OpenSSL Project\n* for use in the OpenSSL Toolkit. (http://www.openssl.org/)\"\n* 6. Redistributions of any form whatsoever must retain the following\n* acknowledgment:\n* \"This product includes software developed by the OpenSSL Project\n* for use in the OpenSSL Toolkit (http://www.openssl.org/)\"\nThe OpenSSL Exception:\n* In addition, as a special exception, the copyright holders give\n* permission to link the code of portions of this program with the\n* OpenSSL library under certain conditions as described in each\n* individual source file, and distribute linked combinations\n* including the two.\n* You must obey the GNU General Public License in all respects\n* for all of the code used other than OpenSSL. If you modify\n* file(s) with this exception, you may extend this exception to your\n* version of the file(s), but you are not obligated to do so. If you\n* do not wish to do so, delete this exception statement from your\n* version. If you delete this exception statement from all source\n* files in the program, then also delete it here.\nThe OpenSSL Exception Discussion:\nhttp://people.gnome.org/~markmc/openssl-and-the-gpl.html\n"} \ No newline at end of file +{ + "key": "openssl-exception-gpl-2.0", + "short_name": "OpenSSL exception to GPL 2.0", + "name": "OpenSSL exception to GPL 2.0", + "category": "Copyleft", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "notes": "this is typically used with GPL 2.0 but sometimes seen with GPL 3.0", + "is_exception": true, + "spdx_license_key": "x11vnc-openssl-exception", + "text_urls": [ + "http://www.openssl.org/source/license.html", + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "faq_url": "http://people.gnome.org/~markmc/openssl-and-the-gpl.html", + "other_urls": [ + "https://github.com/LibVNC/x11vnc/blob/master/src/8to24.c#L22" + ], + "standard_notice": "The OpenSSL License is not compatible with the GPL, since it contains the\nfollowing two clauses:\n* 3. All advertising materials mentioning features or use of this\n* software must display the following acknowledgment:\n* \"This product includes software developed by the OpenSSL Project\n* for use in the OpenSSL Toolkit. (http://www.openssl.org/)\"\n* 6. Redistributions of any form whatsoever must retain the following\n* acknowledgment:\n* \"This product includes software developed by the OpenSSL Project\n* for use in the OpenSSL Toolkit (http://www.openssl.org/)\"\nThe OpenSSL Exception:\n* In addition, as a special exception, the copyright holders give\n* permission to link the code of portions of this program with the\n* OpenSSL library under certain conditions as described in each\n* individual source file, and distribute linked combinations\n* including the two.\n* You must obey the GNU General Public License in all respects\n* for all of the code used other than OpenSSL. If you modify\n* file(s) with this exception, you may extend this exception to your\n* version of the file(s), but you are not obligated to do so. If you\n* do not wish to do so, delete this exception statement from your\n* version. If you delete this exception statement from all source\n* files in the program, then also delete it here.\nThe OpenSSL Exception Discussion:\nhttp://people.gnome.org/~markmc/openssl-and-the-gpl.html\n" +} \ No newline at end of file diff --git a/docs/openssl-exception-gpl-2.0.yml b/docs/openssl-exception-gpl-2.0.yml index 61c4a5837f..dc70ad40d8 100644 --- a/docs/openssl-exception-gpl-2.0.yml +++ b/docs/openssl-exception-gpl-2.0.yml @@ -6,11 +6,13 @@ owner: OpenSSL homepage_url: http://www.openssl.org/source/license.html notes: this is typically used with GPL 2.0 but sometimes seen with GPL 3.0 is_exception: yes -spdx_license_key: LicenseRef-scancode-openssl-exception-gpl-2.0 +spdx_license_key: x11vnc-openssl-exception text_urls: - http://www.openssl.org/source/license.html - http://www.gnu.org/licenses/gpl-2.0.txt faq_url: http://people.gnome.org/~markmc/openssl-and-the-gpl.html +other_urls: + - https://github.com/LibVNC/x11vnc/blob/master/src/8to24.c#L22 standard_notice: | The OpenSSL License is not compatible with the GPL, since it contains the following two clauses: diff --git a/docs/openssl-exception-gpl-3.0-plus.LICENSE b/docs/openssl-exception-gpl-3.0-plus.LICENSE index 957301011a..4f558ee727 100644 --- a/docs/openssl-exception-gpl-3.0-plus.LICENSE +++ b/docs/openssl-exception-gpl-3.0-plus.LICENSE @@ -1,3 +1,38 @@ +--- +key: openssl-exception-gpl-3.0-plus +short_name: OpenSSL exception to GPL 3.0 or later +name: OpenSSL exception to GPL 3.0 or later +category: Copyleft +owner: Tildeslash +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-gpl-3.0-plus +other_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +standard_notice: | + 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 . + In addition, as a special exception, the copyright holders give permission + to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each individual + source file, and distribute linked combinations + including the two. + You must obey the GNU 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. +--- + In addition, as a special exception, the copyright holders give permission to link the code of portions of this program with the OpenSSL library under certain conditions as described in each individual source file, and distribute linked diff --git a/docs/openssl-exception-gpl-3.0-plus.html b/docs/openssl-exception-gpl-3.0-plus.html index 45b4ec8d9f..263cc9077d 100644 --- a/docs/openssl-exception-gpl-3.0-plus.html +++ b/docs/openssl-exception-gpl-3.0-plus.html @@ -175,7 +175,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openssl-exception-gpl-3.0-plus.json b/docs/openssl-exception-gpl-3.0-plus.json index 2db107e183..9d03f85975 100644 --- a/docs/openssl-exception-gpl-3.0-plus.json +++ b/docs/openssl-exception-gpl-3.0-plus.json @@ -1 +1,13 @@ -{"key": "openssl-exception-gpl-3.0-plus", "short_name": "OpenSSL exception to GPL 3.0 or later", "name": "OpenSSL exception to GPL 3.0 or later", "category": "Copyleft", "owner": "Tildeslash", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-openssl-exception-gpl-3.0-plus", "other_urls": ["http://www.gnu.org/licenses/gpl-3.0.txt"], "standard_notice": "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation, either version 3 of the License, or (at your option)\nany later version.\nThis program is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this program. If not, see .\nIn addition, as a special exception, the copyright holders give permission\nto link the code of portions of this program with the\nOpenSSL library under certain conditions as described in each individual\nsource file, and distribute linked combinations\nincluding the two.\nYou must obey the GNU General Public License in all respects for all of the\ncode used other than OpenSSL. If you modify\nfile(s) with this exception, you may extend this exception to your version\nof the file(s), but you are not obligated to do so. If you\ndo not wish to do so, delete this exception statement from your version. If\nyou delete this exception statement from all source\nfiles in the program, then also delete it here.\n"} \ No newline at end of file +{ + "key": "openssl-exception-gpl-3.0-plus", + "short_name": "OpenSSL exception to GPL 3.0 or later", + "name": "OpenSSL exception to GPL 3.0 or later", + "category": "Copyleft", + "owner": "Tildeslash", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-openssl-exception-gpl-3.0-plus", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-3.0.txt" + ], + "standard_notice": "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation, either version 3 of the License, or (at your option)\nany later version.\nThis program is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this program. If not, see .\nIn addition, as a special exception, the copyright holders give permission\nto link the code of portions of this program with the\nOpenSSL library under certain conditions as described in each individual\nsource file, and distribute linked combinations\nincluding the two.\nYou must obey the GNU General Public License in all respects for all of the\ncode used other than OpenSSL. If you modify\nfile(s) with this exception, you may extend this exception to your version\nof the file(s), but you are not obligated to do so. If you\ndo not wish to do so, delete this exception statement from your version. If\nyou delete this exception statement from all source\nfiles in the program, then also delete it here.\n" +} \ No newline at end of file diff --git a/docs/openssl-exception-lgpl-2.0-plus.LICENSE b/docs/openssl-exception-lgpl-2.0-plus.LICENSE index c9fd96b30f..5e36376647 100644 --- a/docs/openssl-exception-lgpl-2.0-plus.LICENSE +++ b/docs/openssl-exception-lgpl-2.0-plus.LICENSE @@ -1,3 +1,29 @@ +--- +key: openssl-exception-lgpl-2.0-plus +short_name: OpenSSL exception to LGPL 2.0 or later +name: OpenSSL exception to LGPL 2.0 or later +category: Copyleft Limited +owner: GTK+ Team +homepage_url: https://github.com/GNOME/glib-networking/blob/2.57.2/LICENSE_EXCEPTION +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-lgpl2.0plus +other_spdx_license_keys: + - LicenseRef-scancode-openssl-exception-lgpl-2.0-plus +standard_notice: | + LICENSE EXCEPTION FOR OPENSSL + * In addition, as a special exception, the copyright holders give + * permission to link the code of portions of this program with the + * OpenSSL library, and distribute linked combinations + * including the two. + * You must obey the GNU Library 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. +--- + LICENSE EXCEPTION FOR OPENSSL In addition, as a special exception, the copyright holders give diff --git a/docs/openssl-exception-lgpl-2.0-plus.html b/docs/openssl-exception-lgpl-2.0-plus.html index dad500086a..5fc9de7c75 100644 --- a/docs/openssl-exception-lgpl-2.0-plus.html +++ b/docs/openssl-exception-lgpl-2.0-plus.html @@ -174,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openssl-exception-lgpl-2.0-plus.json b/docs/openssl-exception-lgpl-2.0-plus.json index ff182ef0c4..59c4eb39fa 100644 --- a/docs/openssl-exception-lgpl-2.0-plus.json +++ b/docs/openssl-exception-lgpl-2.0-plus.json @@ -1 +1,14 @@ -{"key": "openssl-exception-lgpl-2.0-plus", "short_name": "OpenSSL exception to LGPL 2.0 or later", "name": "OpenSSL exception to LGPL 2.0 or later", "category": "Copyleft Limited", "owner": "GTK+ Team", "homepage_url": "https://github.com/GNOME/glib-networking/blob/2.57.2/LICENSE_EXCEPTION", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl2.0plus", "other_spdx_license_keys": ["LicenseRef-scancode-openssl-exception-lgpl-2.0-plus"], "standard_notice": "LICENSE EXCEPTION FOR OPENSSL\n* In addition, as a special exception, the copyright holders give\n* permission to link the code of portions of this program with the\n* OpenSSL library, and distribute linked combinations\n* including the two.\n* You must obey the GNU Library General Public License in all respects\n* for all of the code used other than OpenSSL. If you modify\n* file(s) with this exception, you may extend this exception to your\n* version of the file(s), but you are not obligated to do so. If you\n* do not wish to do so, delete this exception statement from your\n* version. If you delete this exception statement from all source\n* files in the program, then also delete it here.\n"} \ No newline at end of file +{ + "key": "openssl-exception-lgpl-2.0-plus", + "short_name": "OpenSSL exception to LGPL 2.0 or later", + "name": "OpenSSL exception to LGPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "GTK+ Team", + "homepage_url": "https://github.com/GNOME/glib-networking/blob/2.57.2/LICENSE_EXCEPTION", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl2.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-lgpl-2.0-plus" + ], + "standard_notice": "LICENSE EXCEPTION FOR OPENSSL\n* In addition, as a special exception, the copyright holders give\n* permission to link the code of portions of this program with the\n* OpenSSL library, and distribute linked combinations\n* including the two.\n* You must obey the GNU Library General Public License in all respects\n* for all of the code used other than OpenSSL. If you modify\n* file(s) with this exception, you may extend this exception to your\n* version of the file(s), but you are not obligated to do so. If you\n* do not wish to do so, delete this exception statement from your\n* version. If you delete this exception statement from all source\n* files in the program, then also delete it here.\n" +} \ No newline at end of file diff --git a/docs/openssl-exception-lgpl-3.0-plus.LICENSE b/docs/openssl-exception-lgpl-3.0-plus.LICENSE index 7efdb2692a..5deb3831cc 100644 --- a/docs/openssl-exception-lgpl-3.0-plus.LICENSE +++ b/docs/openssl-exception-lgpl-3.0-plus.LICENSE @@ -1,3 +1,41 @@ +--- +key: openssl-exception-lgpl-3.0-plus +short_name: OpenSSL exception to LGPL 3.0 or later +name: OpenSSL exception to LGPL 3.0 or later +category: Copyleft Limited +owner: psycopg +homepage_url: http://initd.org/psycopg/license/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-lgpl3.0plus +other_spdx_license_keys: + - LicenseRef-scancode-openssl-exception-lgpl-3.0-plus +other_urls: + - http://www.gnu.org/licenses/lgpl-3.0.txt +standard_notice: | + This 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. + This 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 this (see the doc directory.) If not, see + http://www.gnu.org/licenses/. +--- + 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 diff --git a/docs/openssl-exception-lgpl-3.0-plus.html b/docs/openssl-exception-lgpl-3.0-plus.html index ca05dfd13c..3eb90d44d9 100644 --- a/docs/openssl-exception-lgpl-3.0-plus.html +++ b/docs/openssl-exception-lgpl-3.0-plus.html @@ -191,7 +191,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openssl-exception-lgpl-3.0-plus.json b/docs/openssl-exception-lgpl-3.0-plus.json index 5afcc5f765..d9ddd6b766 100644 --- a/docs/openssl-exception-lgpl-3.0-plus.json +++ b/docs/openssl-exception-lgpl-3.0-plus.json @@ -1 +1,17 @@ -{"key": "openssl-exception-lgpl-3.0-plus", "short_name": "OpenSSL exception to LGPL 3.0 or later", "name": "OpenSSL exception to LGPL 3.0 or later", "category": "Copyleft Limited", "owner": "psycopg", "homepage_url": "http://initd.org/psycopg/license/", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl3.0plus", "other_spdx_license_keys": ["LicenseRef-scancode-openssl-exception-lgpl-3.0-plus"], "other_urls": ["http://www.gnu.org/licenses/lgpl-3.0.txt"], "standard_notice": "This is free software: you can redistribute it and/or modify it under\nthe terms of the GNU Lesser General Public License as published by the Free\nSoftware Foundation, either version 3 of the License, or (at your option)\nany later version.\nThis is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\nFOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for\nmore details.\n\nIn addition, as a special exception, the copyright holders give permission\nto link this program with the OpenSSL library (or with modified versions of\nOpenSSL that use the same license as OpenSSL), and distribute linked\ncombinations including the two.\nYou must obey the GNU Lesser General Public License in all respects for all\nof the code used other than OpenSSL. If you modify file(s) with this\nexception, you may extend this exception to your version of the file(s),\nbut you are not obligated to do so. If you do not wish to do so, delete\nthis exception statement from your version. If you delete this exception\nstatement from all source files in the program, then also delete it here.\nYou should have received a copy of the GNU Lesser General Public License\nalong with this (see the doc directory.) If not, see\nhttp://www.gnu.org/licenses/.\n"} \ No newline at end of file +{ + "key": "openssl-exception-lgpl-3.0-plus", + "short_name": "OpenSSL exception to LGPL 3.0 or later", + "name": "OpenSSL exception to LGPL 3.0 or later", + "category": "Copyleft Limited", + "owner": "psycopg", + "homepage_url": "http://initd.org/psycopg/license/", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl3.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-lgpl-3.0-plus" + ], + "other_urls": [ + "http://www.gnu.org/licenses/lgpl-3.0.txt" + ], + "standard_notice": "This is free software: you can redistribute it and/or modify it under\nthe terms of the GNU Lesser General Public License as published by the Free\nSoftware Foundation, either version 3 of the License, or (at your option)\nany later version.\nThis is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\nFOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for\nmore details.\n\nIn addition, as a special exception, the copyright holders give permission\nto link this program with the OpenSSL library (or with modified versions of\nOpenSSL that use the same license as OpenSSL), and distribute linked\ncombinations including the two.\nYou must obey the GNU Lesser General Public License in all respects for all\nof the code used other than OpenSSL. If you modify file(s) with this\nexception, you may extend this exception to your version of the file(s),\nbut you are not obligated to do so. If you do not wish to do so, delete\nthis exception statement from your version. If you delete this exception\nstatement from all source files in the program, then also delete it here.\nYou should have received a copy of the GNU Lesser General Public License\nalong with this (see the doc directory.) If not, see\nhttp://www.gnu.org/licenses/.\n" +} \ No newline at end of file diff --git a/docs/openssl-exception-lgpl.LICENSE b/docs/openssl-exception-lgpl.LICENSE index 68572edb2c..9955bca2f5 100644 --- a/docs/openssl-exception-lgpl.LICENSE +++ b/docs/openssl-exception-lgpl.LICENSE @@ -1,3 +1,14 @@ +--- +key: openssl-exception-lgpl +short_name: OpenSSL exception to LGPL +name: OpenSSL exception to LGPL +category: Copyleft Limited +owner: cryptsetup Project +homepage_url: https://gitlab.com/cryptsetup/cryptsetup/-/blob/master/COPYING.LGPL#L505 +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-lgpl +--- + In addition, as a special exception, the copyright holders give permission to link the code of portions of this program with the OpenSSL library under certain conditions as described in each diff --git a/docs/openssl-exception-lgpl.html b/docs/openssl-exception-lgpl.html index 50f8b9dfdd..9691f20c0c 100644 --- a/docs/openssl-exception-lgpl.html +++ b/docs/openssl-exception-lgpl.html @@ -144,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openssl-exception-lgpl.json b/docs/openssl-exception-lgpl.json index 305ad79953..190d41e5b0 100644 --- a/docs/openssl-exception-lgpl.json +++ b/docs/openssl-exception-lgpl.json @@ -1 +1,10 @@ -{"key": "openssl-exception-lgpl", "short_name": "OpenSSL exception to LGPL", "name": "OpenSSL exception to LGPL", "category": "Copyleft Limited", "owner": "cryptsetup Project", "homepage_url": "https://gitlab.com/cryptsetup/cryptsetup/-/blob/master/COPYING.LGPL#L505", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl"} \ No newline at end of file +{ + "key": "openssl-exception-lgpl", + "short_name": "OpenSSL exception to LGPL", + "name": "OpenSSL exception to LGPL", + "category": "Copyleft Limited", + "owner": "cryptsetup Project", + "homepage_url": "https://gitlab.com/cryptsetup/cryptsetup/-/blob/master/COPYING.LGPL#L505", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl" +} \ No newline at end of file diff --git a/docs/openssl-exception-mongodb-sspl.LICENSE b/docs/openssl-exception-mongodb-sspl.LICENSE index 6e9b66cb3d..0f75cf57c5 100644 --- a/docs/openssl-exception-mongodb-sspl.LICENSE +++ b/docs/openssl-exception-mongodb-sspl.LICENSE @@ -1,3 +1,13 @@ +--- +key: openssl-exception-mongodb-sspl +short_name: OpenSSL exception to SSPL +name: OpenSSL exception to the Server Side Public License +category: Copyleft +owner: MongoDB +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-mongodb-sspl +--- + As a special exception, the copyright holders give permission to link the code of portions of this program with the OpenSSL library under certain conditions as described in each individual source file and distribute diff --git a/docs/openssl-exception-mongodb-sspl.html b/docs/openssl-exception-mongodb-sspl.html index b680448c6f..8dd96983d7 100644 --- a/docs/openssl-exception-mongodb-sspl.html +++ b/docs/openssl-exception-mongodb-sspl.html @@ -137,7 +137,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openssl-exception-mongodb-sspl.json b/docs/openssl-exception-mongodb-sspl.json index 321ccb29f6..934789b06b 100644 --- a/docs/openssl-exception-mongodb-sspl.json +++ b/docs/openssl-exception-mongodb-sspl.json @@ -1 +1,9 @@ -{"key": "openssl-exception-mongodb-sspl", "short_name": "OpenSSL exception to SSPL", "name": "OpenSSL exception to the Server Side Public License", "category": "Copyleft", "owner": "MongoDB", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-openssl-exception-mongodb-sspl"} \ No newline at end of file +{ + "key": "openssl-exception-mongodb-sspl", + "short_name": "OpenSSL exception to SSPL", + "name": "OpenSSL exception to the Server Side Public License", + "category": "Copyleft", + "owner": "MongoDB", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-openssl-exception-mongodb-sspl" +} \ No newline at end of file diff --git a/docs/openssl-nokia-psk-contribution.LICENSE b/docs/openssl-nokia-psk-contribution.LICENSE index 9036811913..2a4a555f00 100644 --- a/docs/openssl-nokia-psk-contribution.LICENSE +++ b/docs/openssl-nokia-psk-contribution.LICENSE @@ -1,3 +1,16 @@ +--- +key: openssl-nokia-psk-contribution +short_name: Patent Disclaimer for OpenSSL +name: Patent Disclaimer for OpenSSL +category: Patent License +owner: Nokia +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-nokia-psk-contribution +ignorable_authors: + - Mika Kousa and Pasi Eronen of Nokia Corporation + - Nokia Corporation +--- + The portions of the attached software ("Contribution") is developed by Nokia Corporation and is licensed pursuant to the OpenSSL open source license. @@ -19,4 +32,4 @@ THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR -OTHERWISE. +OTHERWISE. \ No newline at end of file diff --git a/docs/openssl-nokia-psk-contribution.html b/docs/openssl-nokia-psk-contribution.html index 0d9d5502df..c0b6674072 100644 --- a/docs/openssl-nokia-psk-contribution.html +++ b/docs/openssl-nokia-psk-contribution.html @@ -145,8 +145,7 @@ ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR -OTHERWISE. - +OTHERWISE.
@@ -158,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openssl-nokia-psk-contribution.json b/docs/openssl-nokia-psk-contribution.json index 9e616718c6..cc8f76c8e3 100644 --- a/docs/openssl-nokia-psk-contribution.json +++ b/docs/openssl-nokia-psk-contribution.json @@ -1 +1,13 @@ -{"key": "openssl-nokia-psk-contribution", "short_name": "Patent Disclaimer for OpenSSL", "name": "Patent Disclaimer for OpenSSL", "category": "Patent License", "owner": "Nokia", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-openssl-nokia-psk-contribution", "ignorable_authors": ["Mika Kousa and Pasi Eronen of Nokia Corporation", "Nokia Corporation"]} \ No newline at end of file +{ + "key": "openssl-nokia-psk-contribution", + "short_name": "Patent Disclaimer for OpenSSL", + "name": "Patent Disclaimer for OpenSSL", + "category": "Patent License", + "owner": "Nokia", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-openssl-nokia-psk-contribution", + "ignorable_authors": [ + "Mika Kousa and Pasi Eronen of Nokia Corporation", + "Nokia Corporation" + ] +} \ No newline at end of file diff --git a/docs/openssl-ssleay.LICENSE b/docs/openssl-ssleay.LICENSE index a5f72b37eb..1284f363b1 100644 --- a/docs/openssl-ssleay.LICENSE +++ b/docs/openssl-ssleay.LICENSE @@ -1,3 +1,38 @@ +--- +key: openssl-ssleay +short_name: OpenSSL/SSLeay License +name: OpenSSL/SSLeay License +category: Permissive +owner: OpenSSL +homepage_url: http://www.openssl.org/source/license.html +notes: | + Per SPDX.org, 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. +spdx_license_key: OpenSSL +text_urls: + - http://www.openssl.org/source/license.html + - https://www.openssl.org/source/license-openssl-ssleay.txt +faq_url: http://www.openssl.org/support/faq.html +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Eric Young + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + LICENSE ISSUES ============== diff --git a/docs/openssl-ssleay.html b/docs/openssl-ssleay.html index be716e571e..767449edb0 100644 --- a/docs/openssl-ssleay.html +++ b/docs/openssl-ssleay.html @@ -324,7 +324,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openssl-ssleay.json b/docs/openssl-ssleay.json index cc1925a81f..8b834538f2 100644 --- a/docs/openssl-ssleay.json +++ b/docs/openssl-ssleay.json @@ -1 +1,37 @@ -{"key": "openssl-ssleay", "short_name": "OpenSSL/SSLeay License", "name": "OpenSSL/SSLeay License", "category": "Permissive", "owner": "OpenSSL", "homepage_url": "http://www.openssl.org/source/license.html", "notes": "Per SPDX.org, the OpenSSL toolkit stays under a dual license, i.e. both the\nconditions of the OpenSSL License and the original SSLeay license apply to\nthe toolkit.\n", "spdx_license_key": "OpenSSL", "text_urls": ["http://www.openssl.org/source/license.html", "https://www.openssl.org/source/license-openssl-ssleay.txt"], "faq_url": "http://www.openssl.org/support/faq.html", "minimum_coverage": 70, "ignorable_copyrights": ["Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com)", "holder is Tim Hudson (tjh@cryptsoft.com)"], "ignorable_holders": ["Eric Young", "Tim Hudson"], "ignorable_authors": ["Eric Young (eay@cryptsoft.com)", "Tim Hudson (tjh@cryptsoft.com)", "the OpenSSL Project"], "ignorable_urls": ["http://www.openssl.org/"], "ignorable_emails": ["eay@cryptsoft.com", "openssl-core@openssl.org", "tjh@cryptsoft.com"]} \ No newline at end of file +{ + "key": "openssl-ssleay", + "short_name": "OpenSSL/SSLeay License", + "name": "OpenSSL/SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "notes": "Per SPDX.org, the OpenSSL toolkit stays under a dual license, i.e. both the\nconditions of the OpenSSL License and the original SSLeay license apply to\nthe toolkit.\n", + "spdx_license_key": "OpenSSL", + "text_urls": [ + "http://www.openssl.org/source/license.html", + "https://www.openssl.org/source/license-openssl-ssleay.txt" + ], + "faq_url": "http://www.openssl.org/support/faq.html", + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com)", + "holder is Tim Hudson (tjh@cryptsoft.com)" + ], + "ignorable_holders": [ + "Eric Young", + "Tim Hudson" + ], + "ignorable_authors": [ + "Eric Young (eay@cryptsoft.com)", + "Tim Hudson (tjh@cryptsoft.com)", + "the OpenSSL Project" + ], + "ignorable_urls": [ + "http://www.openssl.org/" + ], + "ignorable_emails": [ + "eay@cryptsoft.com", + "openssl-core@openssl.org", + "tjh@cryptsoft.com" + ] +} \ No newline at end of file diff --git a/docs/openssl.LICENSE b/docs/openssl.LICENSE index bcb7f1dedb..08f9aaa132 100644 --- a/docs/openssl.LICENSE +++ b/docs/openssl.LICENSE @@ -1,3 +1,27 @@ +--- +key: openssl +short_name: OpenSSL License +name: OpenSSL License +category: Permissive +owner: OpenSSL +homepage_url: http://openssl.org/source/license.html +notes: | + This is the OpenSSL license proper, without the SSLEay part. The SPDX + OpenSSL identifier does not apply here. Instead it matches the openssl- + ssleay license. +spdx_license_key: LicenseRef-scancode-openssl +faq_url: http://www.openssl.org/support/faq.html +other_urls: + - http://www.openssl.org/source/license.html +minimum_coverage: 70 +ignorable_authors: + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - licensing@OpenSSL.org +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40,4 +64,4 @@ 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/openssl.html b/docs/openssl.html index bfd69bd16e..fd111d3875 100644 --- a/docs/openssl.html +++ b/docs/openssl.html @@ -217,8 +217,7 @@ 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. - +OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -230,7 +229,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openssl.json b/docs/openssl.json index f916ca4f46..b685bbb358 100644 --- a/docs/openssl.json +++ b/docs/openssl.json @@ -1 +1,24 @@ -{"key": "openssl", "short_name": "OpenSSL License", "name": "OpenSSL License", "category": "Permissive", "owner": "OpenSSL", "homepage_url": "http://openssl.org/source/license.html", "notes": "This is the OpenSSL license proper, without the SSLEay part. The SPDX\nOpenSSL identifier does not apply here. Instead it matches the openssl-\nssleay license.\n", "spdx_license_key": "LicenseRef-scancode-openssl", "faq_url": "http://www.openssl.org/support/faq.html", "other_urls": ["http://www.openssl.org/source/license.html"], "minimum_coverage": 70, "ignorable_authors": ["the OpenSSL Project"], "ignorable_urls": ["http://www.openssl.org/"], "ignorable_emails": ["licensing@OpenSSL.org"]} \ No newline at end of file +{ + "key": "openssl", + "short_name": "OpenSSL License", + "name": "OpenSSL License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://openssl.org/source/license.html", + "notes": "This is the OpenSSL license proper, without the SSLEay part. The SPDX\nOpenSSL identifier does not apply here. Instead it matches the openssl-\nssleay license.\n", + "spdx_license_key": "LicenseRef-scancode-openssl", + "faq_url": "http://www.openssl.org/support/faq.html", + "other_urls": [ + "http://www.openssl.org/source/license.html" + ], + "minimum_coverage": 70, + "ignorable_authors": [ + "the OpenSSL Project" + ], + "ignorable_urls": [ + "http://www.openssl.org/" + ], + "ignorable_emails": [ + "licensing@OpenSSL.org" + ] +} \ No newline at end of file diff --git a/docs/openvpn-as-eula.LICENSE b/docs/openvpn-as-eula.LICENSE index 8cdc8efd8e..61072c94c5 100644 --- a/docs/openvpn-as-eula.LICENSE +++ b/docs/openvpn-as-eula.LICENSE @@ -1,3 +1,21 @@ +--- +key: openvpn-as-eula +short_name: OpenVPN-AS EULA +name: OpenVPN Access Server EULA +category: Proprietary Free +owner: OpenVPN +homepage_url: http://openvpn.net/index.php/license.html +spdx_license_key: LicenseRef-scancode-openvpn-as-eula +other_urls: + - http://openvpn.net/index.php/license.html +ignorable_copyrights: + - Copyright (c) 2009-2013 OpenVPN Technologies, Inc. +ignorable_holders: + - OpenVPN Technologies, Inc. +ignorable_urls: + - http://openvpn.net/ +--- + OpenVPN Access Server End User License Agreement (OpenVPN-AS EULA) 1. Copyright Notice: OpenVPN Access Server License; @@ -113,4 +131,4 @@ purchase without notice. In case of price decreases or special promotions, OpenVPN Technologies, Inc. will not retrospectively apply credits or price adjustments toward any licenses that have already been issued. Furthermore, no discounts will be given for license maintenance renewals unless this is -specified in your contract with OpenVPN Technologies, Inc. +specified in your contract with OpenVPN Technologies, Inc. \ No newline at end of file diff --git a/docs/openvpn-as-eula.html b/docs/openvpn-as-eula.html index 854f889ae0..fe72f254ec 100644 --- a/docs/openvpn-as-eula.html +++ b/docs/openvpn-as-eula.html @@ -266,8 +266,7 @@ OpenVPN Technologies, Inc. will not retrospectively apply credits or price adjustments toward any licenses that have already been issued. Furthermore, no discounts will be given for license maintenance renewals unless this is -specified in your contract with OpenVPN Technologies, Inc. - +specified in your contract with OpenVPN Technologies, Inc.
@@ -279,7 +278,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openvpn-as-eula.json b/docs/openvpn-as-eula.json index 3ecc3a49ff..7082983ab9 100644 --- a/docs/openvpn-as-eula.json +++ b/docs/openvpn-as-eula.json @@ -1 +1,21 @@ -{"key": "openvpn-as-eula", "short_name": "OpenVPN-AS EULA", "name": "OpenVPN Access Server EULA", "category": "Proprietary Free", "owner": "OpenVPN", "homepage_url": "http://openvpn.net/index.php/license.html", "spdx_license_key": "LicenseRef-scancode-openvpn-as-eula", "other_urls": ["http://openvpn.net/index.php/license.html"], "ignorable_copyrights": ["Copyright (c) 2009-2013 OpenVPN Technologies, Inc."], "ignorable_holders": ["OpenVPN Technologies, Inc."], "ignorable_urls": ["http://openvpn.net/"]} \ No newline at end of file +{ + "key": "openvpn-as-eula", + "short_name": "OpenVPN-AS EULA", + "name": "OpenVPN Access Server EULA", + "category": "Proprietary Free", + "owner": "OpenVPN", + "homepage_url": "http://openvpn.net/index.php/license.html", + "spdx_license_key": "LicenseRef-scancode-openvpn-as-eula", + "other_urls": [ + "http://openvpn.net/index.php/license.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 2009-2013 OpenVPN Technologies, Inc." + ], + "ignorable_holders": [ + "OpenVPN Technologies, Inc." + ], + "ignorable_urls": [ + "http://openvpn.net/" + ] +} \ No newline at end of file diff --git a/docs/openvpn-openssl-exception.LICENSE b/docs/openvpn-openssl-exception.LICENSE index 017ab7b5c2..d38544f048 100644 --- a/docs/openvpn-openssl-exception.LICENSE +++ b/docs/openvpn-openssl-exception.LICENSE @@ -1,3 +1,17 @@ +--- +key: openvpn-openssl-exception +short_name: OpenVPN OpenSSL Exception to GPL +name: OpenVPN OpenSSL Exception to GPL +category: Copyleft Limited +owner: OpenVPN +homepage_url: https://spdx.org/licenses/openvpn-openssl-exception.html +is_exception: yes +spdx_license_key: openvpn-openssl-exception +other_urls: + - http://openvpn.net/index.php/license.html + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + Special exception for linking OpenVPN with OpenSSL: In addition, as a special exception, OpenVPN Technologies, Inc. gives permission diff --git a/docs/openvpn-openssl-exception.html b/docs/openvpn-openssl-exception.html index 2f465bc0ec..7a2aa8fb4c 100644 --- a/docs/openvpn-openssl-exception.html +++ b/docs/openvpn-openssl-exception.html @@ -152,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/openvpn-openssl-exception.json b/docs/openvpn-openssl-exception.json index 1cda77d8d9..f508920259 100644 --- a/docs/openvpn-openssl-exception.json +++ b/docs/openvpn-openssl-exception.json @@ -1 +1,14 @@ -{"key": "openvpn-openssl-exception", "short_name": "OpenVPN OpenSSL Exception to GPL", "name": "OpenVPN OpenSSL Exception to GPL", "category": "Copyleft Limited", "owner": "OpenVPN", "homepage_url": "https://spdx.org/licenses/openvpn-openssl-exception.html", "is_exception": true, "spdx_license_key": "openvpn-openssl-exception", "other_urls": ["http://openvpn.net/index.php/license.html", "http://www.gnu.org/licenses/gpl-2.0.txt"]} \ No newline at end of file +{ + "key": "openvpn-openssl-exception", + "short_name": "OpenVPN OpenSSL Exception to GPL", + "name": "OpenVPN OpenSSL Exception to GPL", + "category": "Copyleft Limited", + "owner": "OpenVPN", + "homepage_url": "https://spdx.org/licenses/openvpn-openssl-exception.html", + "is_exception": true, + "spdx_license_key": "openvpn-openssl-exception", + "other_urls": [ + "http://openvpn.net/index.php/license.html", + "http://www.gnu.org/licenses/gpl-2.0.txt" + ] +} \ No newline at end of file diff --git a/docs/opera-eula-2018.LICENSE b/docs/opera-eula-2018.LICENSE index 7891808114..4cb598fadc 100644 --- a/docs/opera-eula-2018.LICENSE +++ b/docs/opera-eula-2018.LICENSE @@ -1,3 +1,20 @@ +--- +key: opera-eula-2018 +short_name: Opera EULA 2018 +name: Opera for Computers EULA 2018 +category: Proprietary Free +owner: Opera Software ASA +homepage_url: https://www.opera.com/eula/computers +spdx_license_key: LicenseRef-scancode-opera-eula-2018 +ignorable_urls: + - http://sourcecode.opera.com/ + - https://www.opera.com/eula/computers + - https://www.opera.com/privacy + - https://www.opera.com/terms +ignorable_emails: + - opensource@opera.com +--- + End User License Agreement Opera for Computers Last updated: December 14, 2018 diff --git a/docs/opera-eula-2018.html b/docs/opera-eula-2018.html index 6230010698..9376553e26 100644 --- a/docs/opera-eula-2018.html +++ b/docs/opera-eula-2018.html @@ -184,7 +184,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/opera-eula-2018.json b/docs/opera-eula-2018.json index bd6030a40b..f5602b26dd 100644 --- a/docs/opera-eula-2018.json +++ b/docs/opera-eula-2018.json @@ -1 +1,18 @@ -{"key": "opera-eula-2018", "short_name": "Opera EULA 2018", "name": "Opera for Computers EULA 2018", "category": "Proprietary Free", "owner": "Opera Software ASA", "homepage_url": "https://www.opera.com/eula/computers", "spdx_license_key": "LicenseRef-scancode-opera-eula-2018", "ignorable_urls": ["http://sourcecode.opera.com/", "https://www.opera.com/eula/computers", "https://www.opera.com/privacy", "https://www.opera.com/terms"], "ignorable_emails": ["opensource@opera.com"]} \ No newline at end of file +{ + "key": "opera-eula-2018", + "short_name": "Opera EULA 2018", + "name": "Opera for Computers EULA 2018", + "category": "Proprietary Free", + "owner": "Opera Software ASA", + "homepage_url": "https://www.opera.com/eula/computers", + "spdx_license_key": "LicenseRef-scancode-opera-eula-2018", + "ignorable_urls": [ + "http://sourcecode.opera.com/", + "https://www.opera.com/eula/computers", + "https://www.opera.com/privacy", + "https://www.opera.com/terms" + ], + "ignorable_emails": [ + "opensource@opera.com" + ] +} \ No newline at end of file diff --git a/docs/opera-eula-eea-2018.LICENSE b/docs/opera-eula-eea-2018.LICENSE index ff9423f432..191461f56b 100644 --- a/docs/opera-eula-eea-2018.LICENSE +++ b/docs/opera-eula-eea-2018.LICENSE @@ -1,3 +1,20 @@ +--- +key: opera-eula-eea-2018 +short_name: Opera EULA EEA 2018 +name: Opera EULA for European Economic Area 2018 +category: Proprietary Free +owner: Opera Software ASA +homepage_url: https://www.opera.com/eula/computers/eea +spdx_license_key: LicenseRef-scancode-opera-eula-eea-2018 +ignorable_urls: + - http://sourcecode.opera.com/ + - https://www.opera.com/eula/computers + - https://www.opera.com/privacy + - https://www.opera.com/terms +ignorable_emails: + - opensource@opera.com +--- + End User License Agreement Opera for Computers Last updated: December 14, 2018 diff --git a/docs/opera-eula-eea-2018.html b/docs/opera-eula-eea-2018.html index da5579284b..3d0011f56d 100644 --- a/docs/opera-eula-eea-2018.html +++ b/docs/opera-eula-eea-2018.html @@ -184,7 +184,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/opera-eula-eea-2018.json b/docs/opera-eula-eea-2018.json index 48524a1200..e7ed421b0e 100644 --- a/docs/opera-eula-eea-2018.json +++ b/docs/opera-eula-eea-2018.json @@ -1 +1,18 @@ -{"key": "opera-eula-eea-2018", "short_name": "Opera EULA EEA 2018", "name": "Opera EULA for European Economic Area 2018", "category": "Proprietary Free", "owner": "Opera Software ASA", "homepage_url": "https://www.opera.com/eula/computers/eea", "spdx_license_key": "LicenseRef-scancode-opera-eula-eea-2018", "ignorable_urls": ["http://sourcecode.opera.com/", "https://www.opera.com/eula/computers", "https://www.opera.com/privacy", "https://www.opera.com/terms"], "ignorable_emails": ["opensource@opera.com"]} \ No newline at end of file +{ + "key": "opera-eula-eea-2018", + "short_name": "Opera EULA EEA 2018", + "name": "Opera EULA for European Economic Area 2018", + "category": "Proprietary Free", + "owner": "Opera Software ASA", + "homepage_url": "https://www.opera.com/eula/computers/eea", + "spdx_license_key": "LicenseRef-scancode-opera-eula-eea-2018", + "ignorable_urls": [ + "http://sourcecode.opera.com/", + "https://www.opera.com/eula/computers", + "https://www.opera.com/privacy", + "https://www.opera.com/terms" + ], + "ignorable_emails": [ + "opensource@opera.com" + ] +} \ No newline at end of file diff --git a/docs/opera-widget-1.0.LICENSE b/docs/opera-widget-1.0.LICENSE index 53c89dc43a..e9f08fc176 100644 --- a/docs/opera-widget-1.0.LICENSE +++ b/docs/opera-widget-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: opera-widget-1.0 +short_name: Opera Widget License 1.0 +name: Opera Widget License v1.0 +category: Proprietary Free +owner: Opera Software ASA +homepage_url: http://dev.opera.com/articles/view/opera-widgets-sdk/ +spdx_license_key: LicenseRef-scancode-opera-widget-1.0 +ignorable_copyrights: + - (c) Copyright 2006 Opera Software ASA. +ignorable_holders: + - Opera Software ASA. +--- + OPERA Widget License Version 1. 0 © Copyright 2006 Opera Software ASA. All rights reserved. diff --git a/docs/opera-widget-1.0.html b/docs/opera-widget-1.0.html index 79efd4c769..29db992cb5 100644 --- a/docs/opera-widget-1.0.html +++ b/docs/opera-widget-1.0.html @@ -306,7 +306,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/opera-widget-1.0.json b/docs/opera-widget-1.0.json index 86adfe1a0d..385129ae0e 100644 --- a/docs/opera-widget-1.0.json +++ b/docs/opera-widget-1.0.json @@ -1 +1,15 @@ -{"key": "opera-widget-1.0", "short_name": "Opera Widget License 1.0", "name": "Opera Widget License v1.0", "category": "Proprietary Free", "owner": "Opera Software ASA", "homepage_url": "http://dev.opera.com/articles/view/opera-widgets-sdk/", "spdx_license_key": "LicenseRef-scancode-opera-widget-1.0", "ignorable_copyrights": ["(c) Copyright 2006 Opera Software ASA."], "ignorable_holders": ["Opera Software ASA."]} \ No newline at end of file +{ + "key": "opera-widget-1.0", + "short_name": "Opera Widget License 1.0", + "name": "Opera Widget License v1.0", + "category": "Proprietary Free", + "owner": "Opera Software ASA", + "homepage_url": "http://dev.opera.com/articles/view/opera-widgets-sdk/", + "spdx_license_key": "LicenseRef-scancode-opera-widget-1.0", + "ignorable_copyrights": [ + "(c) Copyright 2006 Opera Software ASA." + ], + "ignorable_holders": [ + "Opera Software ASA." + ] +} \ No newline at end of file diff --git a/docs/opl-1.0.LICENSE b/docs/opl-1.0.LICENSE index e5aaa4c118..419b08937b 100644 --- a/docs/opl-1.0.LICENSE +++ b/docs/opl-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: opl-1.0 +short_name: OpenContent License 1.0 +name: OpenContent Public License v1.0 +category: Copyleft Limited +owner: OpenContent +homepage_url: http://opencontent.org/opl.shtml +spdx_license_key: LicenseRef-scancode-opl-1.0 +text_urls: + - http://opencontent.org/opl.shtml +other_urls: + - http://old.koalateam.com/jackaroo/OPL_1_0.TXT +ignorable_urls: + - http://www.opencontent.org/opl.html +--- + OpenContent License (OPL) Version 1.0, July 14. 1998 diff --git a/docs/opl-1.0.html b/docs/opl-1.0.html index 0c23ee3b4c..4eddf3bb3b 100644 --- a/docs/opl-1.0.html +++ b/docs/opl-1.0.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/opl-1.0.json b/docs/opl-1.0.json index f12054fbf7..c24f1bb5c8 100644 --- a/docs/opl-1.0.json +++ b/docs/opl-1.0.json @@ -1 +1,18 @@ -{"key": "opl-1.0", "short_name": "OpenContent License 1.0", "name": "OpenContent Public License v1.0", "category": "Copyleft Limited", "owner": "OpenContent", "homepage_url": "http://opencontent.org/opl.shtml", "spdx_license_key": "LicenseRef-scancode-opl-1.0", "text_urls": ["http://opencontent.org/opl.shtml"], "other_urls": ["http://old.koalateam.com/jackaroo/OPL_1_0.TXT"], "ignorable_urls": ["http://www.opencontent.org/opl.html"]} \ No newline at end of file +{ + "key": "opl-1.0", + "short_name": "OpenContent License 1.0", + "name": "OpenContent Public License v1.0", + "category": "Copyleft Limited", + "owner": "OpenContent", + "homepage_url": "http://opencontent.org/opl.shtml", + "spdx_license_key": "LicenseRef-scancode-opl-1.0", + "text_urls": [ + "http://opencontent.org/opl.shtml" + ], + "other_urls": [ + "http://old.koalateam.com/jackaroo/OPL_1_0.TXT" + ], + "ignorable_urls": [ + "http://www.opencontent.org/opl.html" + ] +} \ No newline at end of file diff --git a/docs/opml-1.0.LICENSE b/docs/opml-1.0.LICENSE index a379d1139f..5efb647666 100644 --- a/docs/opml-1.0.LICENSE +++ b/docs/opml-1.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: opml-1.0 +short_name: OPML 1.0 +name: OPML Specification License 1.0 +category: Permissive +owner: OPML +homepage_url: http://dev.opml.org/spec1.html +spdx_license_key: LicenseRef-scancode-opml-1.0 +--- + This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and these paragraphs are included on all such copies and derivative works. This document may not be modified in any way, such as by removing the copyright notice or references to UserLand or other organizations. Further, while these copyright restrictions apply to the written OPML specification, no claim of ownership is made by UserLand to the format it describes. Any party may, for commercial or non-commercial purposes, implement this protocol without royalty or license fee to UserLand. The limited permissions granted herein are perpetual and will not be revoked by UserLand or its successors or assigns. diff --git a/docs/opml-1.0.html b/docs/opml-1.0.html index 74826d0ec6..9baf852d1a 100644 --- a/docs/opml-1.0.html +++ b/docs/opml-1.0.html @@ -131,7 +131,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/opml-1.0.json b/docs/opml-1.0.json index baf8e77809..a5c2251167 100644 --- a/docs/opml-1.0.json +++ b/docs/opml-1.0.json @@ -1 +1,9 @@ -{"key": "opml-1.0", "short_name": "OPML 1.0", "name": "OPML Specification License 1.0", "category": "Permissive", "owner": "OPML", "homepage_url": "http://dev.opml.org/spec1.html", "spdx_license_key": "LicenseRef-scancode-opml-1.0"} \ No newline at end of file +{ + "key": "opml-1.0", + "short_name": "OPML 1.0", + "name": "OPML Specification License 1.0", + "category": "Permissive", + "owner": "OPML", + "homepage_url": "http://dev.opml.org/spec1.html", + "spdx_license_key": "LicenseRef-scancode-opml-1.0" +} \ No newline at end of file diff --git a/docs/opnl-1.0.LICENSE b/docs/opnl-1.0.LICENSE index 3b36d8c30f..b3b2de3955 100644 --- a/docs/opnl-1.0.LICENSE +++ b/docs/opnl-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: opnl-1.0 +short_name: OPNL-1.0 +name: Open Innovation License version 1.0 +category: Permissive +owner: Stark Drones Corporation +homepage_url: https://github.com/StarkDrones/OPNL +spdx_license_key: LicenseRef-scancode-opnl-1.0 +other_urls: + - https://github.com/StarkDrones/OPNLv1 +ignorable_copyrights: + - Copyright (c) 2020 Andrew Magdy Kamal + - Copyright (c) 2020 Stark Drones Corporation +ignorable_holders: + - Andrew Magdy Kamal + - Stark Drones Corporation +--- + Released under the Open Innovation License Version 1, 10th November 2020 diff --git a/docs/opnl-1.0.html b/docs/opnl-1.0.html index 9be6cf1f8d..3e26ce9b25 100644 --- a/docs/opnl-1.0.html +++ b/docs/opnl-1.0.html @@ -174,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/opnl-1.0.json b/docs/opnl-1.0.json index dee2170aff..1cb98f57e5 100644 --- a/docs/opnl-1.0.json +++ b/docs/opnl-1.0.json @@ -1 +1,20 @@ -{"key": "opnl-1.0", "short_name": "OPNL-1.0", "name": "Open Innovation License version 1.0", "category": "Permissive", "owner": "Stark Drones Corporation", "homepage_url": "https://github.com/StarkDrones/OPNL", "spdx_license_key": "LicenseRef-scancode-opnl-1.0", "other_urls": ["https://github.com/StarkDrones/OPNLv1"], "ignorable_copyrights": ["Copyright (c) 2020 Andrew Magdy Kamal", "Copyright (c) 2020 Stark Drones Corporation"], "ignorable_holders": ["Andrew Magdy Kamal", "Stark Drones Corporation"]} \ No newline at end of file +{ + "key": "opnl-1.0", + "short_name": "OPNL-1.0", + "name": "Open Innovation License version 1.0", + "category": "Permissive", + "owner": "Stark Drones Corporation", + "homepage_url": "https://github.com/StarkDrones/OPNL", + "spdx_license_key": "LicenseRef-scancode-opnl-1.0", + "other_urls": [ + "https://github.com/StarkDrones/OPNLv1" + ], + "ignorable_copyrights": [ + "Copyright (c) 2020 Andrew Magdy Kamal", + "Copyright (c) 2020 Stark Drones Corporation" + ], + "ignorable_holders": [ + "Andrew Magdy Kamal", + "Stark Drones Corporation" + ] +} \ No newline at end of file diff --git a/docs/opnl-2.0.LICENSE b/docs/opnl-2.0.LICENSE index 2907108ff2..ff0949adb8 100644 --- a/docs/opnl-2.0.LICENSE +++ b/docs/opnl-2.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: opnl-2.0 +short_name: OPNL-2.0 +name: Open Innovation License version 2.0 +category: Permissive +owner: Stark Drones Corporation +homepage_url: https://github.com/StarkDrones/OPNL +spdx_license_key: LicenseRef-scancode-opnl-2.0 +other_urls: + - https://github.com/StarkDrones/OPNLv2 +ignorable_copyrights: + - Copyright (c) 2020 Andrew Magdy Kamal + - Copyright (c) 2020 Stark Drones Corporation +ignorable_holders: + - Andrew Magdy Kamal + - Stark Drones Corporation +--- + The Open Innovation License Version 2, 28th December 2020 Copyright © 2020 Stark Drones Corporation diff --git a/docs/opnl-2.0.html b/docs/opnl-2.0.html index bad8b3cd03..74bb3ed7c1 100644 --- a/docs/opnl-2.0.html +++ b/docs/opnl-2.0.html @@ -170,7 +170,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/opnl-2.0.json b/docs/opnl-2.0.json index d7052db7dd..513d998c78 100644 --- a/docs/opnl-2.0.json +++ b/docs/opnl-2.0.json @@ -1 +1,20 @@ -{"key": "opnl-2.0", "short_name": "OPNL-2.0", "name": "Open Innovation License version 2.0", "category": "Permissive", "owner": "Stark Drones Corporation", "homepage_url": "https://github.com/StarkDrones/OPNL", "spdx_license_key": "LicenseRef-scancode-opnl-2.0", "other_urls": ["https://github.com/StarkDrones/OPNLv2"], "ignorable_copyrights": ["Copyright (c) 2020 Andrew Magdy Kamal", "Copyright (c) 2020 Stark Drones Corporation"], "ignorable_holders": ["Andrew Magdy Kamal", "Stark Drones Corporation"]} \ No newline at end of file +{ + "key": "opnl-2.0", + "short_name": "OPNL-2.0", + "name": "Open Innovation License version 2.0", + "category": "Permissive", + "owner": "Stark Drones Corporation", + "homepage_url": "https://github.com/StarkDrones/OPNL", + "spdx_license_key": "LicenseRef-scancode-opnl-2.0", + "other_urls": [ + "https://github.com/StarkDrones/OPNLv2" + ], + "ignorable_copyrights": [ + "Copyright (c) 2020 Andrew Magdy Kamal", + "Copyright (c) 2020 Stark Drones Corporation" + ], + "ignorable_holders": [ + "Andrew Magdy Kamal", + "Stark Drones Corporation" + ] +} \ No newline at end of file diff --git a/docs/oracle-bcl-javaee.LICENSE b/docs/oracle-bcl-javaee.LICENSE index 5642280c34..8951947638 100644 --- a/docs/oracle-bcl-javaee.LICENSE +++ b/docs/oracle-bcl-javaee.LICENSE @@ -1,3 +1,16 @@ +--- +key: oracle-bcl-javaee +short_name: Oracle BCL for Java EE Technologies +name: Oracle BCL for Java EE Technologies +category: Proprietary Free +owner: Oracle Corporation +spdx_license_key: LicenseRef-scancode-oracle-bcl-javaee +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/technetwork/java/javaee/documentation/index.html + - http://www.oracle.com/us/legal/third-party-trademarks/index.html +--- + Oracle Binary Code License Agreement for Java EE Technologies ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE "ACCEPT LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE "DECLINE LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED. diff --git a/docs/oracle-bcl-javaee.html b/docs/oracle-bcl-javaee.html index 281513873f..4e06859b81 100644 --- a/docs/oracle-bcl-javaee.html +++ b/docs/oracle-bcl-javaee.html @@ -202,7 +202,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-bcl-javaee.json b/docs/oracle-bcl-javaee.json index 8e28bfa75f..c3e7195593 100644 --- a/docs/oracle-bcl-javaee.json +++ b/docs/oracle-bcl-javaee.json @@ -1 +1,13 @@ -{"key": "oracle-bcl-javaee", "short_name": "Oracle BCL for Java EE Technologies", "name": "Oracle BCL for Java EE Technologies", "category": "Proprietary Free", "owner": "Oracle Corporation", "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javaee", "ignorable_urls": ["http://www.oracle.com/products/export", "http://www.oracle.com/technetwork/java/javaee/documentation/index.html", "http://www.oracle.com/us/legal/third-party-trademarks/index.html"]} \ No newline at end of file +{ + "key": "oracle-bcl-javaee", + "short_name": "Oracle BCL for Java EE Technologies", + "name": "Oracle BCL for Java EE Technologies", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javaee", + "ignorable_urls": [ + "http://www.oracle.com/products/export", + "http://www.oracle.com/technetwork/java/javaee/documentation/index.html", + "http://www.oracle.com/us/legal/third-party-trademarks/index.html" + ] +} \ No newline at end of file diff --git a/docs/oracle-bcl-javase-javafx-2012.LICENSE b/docs/oracle-bcl-javase-javafx-2012.LICENSE index 02326b817c..104230b25c 100644 --- a/docs/oracle-bcl-javase-javafx-2012.LICENSE +++ b/docs/oracle-bcl-javase-javafx-2012.LICENSE @@ -1,3 +1,26 @@ +--- +key: oracle-bcl-javase-javafx-2012 +short_name: Oracle BCL for JavaSE and JavaFX 2012 +name: Oracle BCL for Java SE Platform Products and JavaFX 2012 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/java/javase/terms/license/index.html +spdx_license_key: LicenseRef-scancode-oracle-bcl-javase-javafx-2012 +text_urls: + - http://www.oracle.com/technetwork/java/javase/terms/license/index.html +faq_url: http://www.oracle.com/technetwork/java/javase/documentation/index.html +other_urls: + - http://www.oracle.com/technetwork/java/javase/documentation/index.html +ignorable_copyrights: + - Copyright YEAR Oracle America, Inc. +ignorable_holders: + - Oracle America, Inc. +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/technetwork/java/javase/documentation/index.html + - http://www.oracle.com/us/legal/third-party-trademarks/index.html +--- + Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE "ACCEPT LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE "DECLINE LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED. diff --git a/docs/oracle-bcl-javase-javafx-2012.html b/docs/oracle-bcl-javase-javafx-2012.html index e4e6ea2dd9..222b6ade0a 100644 --- a/docs/oracle-bcl-javase-javafx-2012.html +++ b/docs/oracle-bcl-javase-javafx-2012.html @@ -245,7 +245,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-bcl-javase-javafx-2012.json b/docs/oracle-bcl-javase-javafx-2012.json index 38885dd19b..427d87f799 100644 --- a/docs/oracle-bcl-javase-javafx-2012.json +++ b/docs/oracle-bcl-javase-javafx-2012.json @@ -1 +1,27 @@ -{"key": "oracle-bcl-javase-javafx-2012", "short_name": "Oracle BCL for JavaSE and JavaFX 2012", "name": "Oracle BCL for Java SE Platform Products and JavaFX 2012", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "http://www.oracle.com/technetwork/java/javase/terms/license/index.html", "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javase-javafx-2012", "text_urls": ["http://www.oracle.com/technetwork/java/javase/terms/license/index.html"], "faq_url": "http://www.oracle.com/technetwork/java/javase/documentation/index.html", "other_urls": ["http://www.oracle.com/technetwork/java/javase/documentation/index.html"], "ignorable_copyrights": ["Copyright YEAR Oracle America, Inc."], "ignorable_holders": ["Oracle America, Inc."], "ignorable_urls": ["http://www.oracle.com/products/export", "http://www.oracle.com/technetwork/java/javase/documentation/index.html", "http://www.oracle.com/us/legal/third-party-trademarks/index.html"]} \ No newline at end of file +{ + "key": "oracle-bcl-javase-javafx-2012", + "short_name": "Oracle BCL for JavaSE and JavaFX 2012", + "name": "Oracle BCL for Java SE Platform Products and JavaFX 2012", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "http://www.oracle.com/technetwork/java/javase/terms/license/index.html", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javase-javafx-2012", + "text_urls": [ + "http://www.oracle.com/technetwork/java/javase/terms/license/index.html" + ], + "faq_url": "http://www.oracle.com/technetwork/java/javase/documentation/index.html", + "other_urls": [ + "http://www.oracle.com/technetwork/java/javase/documentation/index.html" + ], + "ignorable_copyrights": [ + "Copyright YEAR Oracle America, Inc." + ], + "ignorable_holders": [ + "Oracle America, Inc." + ], + "ignorable_urls": [ + "http://www.oracle.com/products/export", + "http://www.oracle.com/technetwork/java/javase/documentation/index.html", + "http://www.oracle.com/us/legal/third-party-trademarks/index.html" + ] +} \ No newline at end of file diff --git a/docs/oracle-bcl-javase-javafx-2013.LICENSE b/docs/oracle-bcl-javase-javafx-2013.LICENSE index a14faa232b..b07db9f08f 100644 --- a/docs/oracle-bcl-javase-javafx-2013.LICENSE +++ b/docs/oracle-bcl-javase-javafx-2013.LICENSE @@ -1,3 +1,17 @@ +--- +key: oracle-bcl-javase-javafx-2013 +short_name: Oracle BCL for Java SE and JavaFX 2013 +name: Oracle BCL for Java SE and JavaFX Technologies 2013 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/java/javase/downloads/java-se-archive-license-1382604.html +spdx_license_key: LicenseRef-scancode-oracle-bcl-javase-javafx-2013 +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/technetwork/java/javase/documentation/index.html + - http://www.oracle.com/us/legal/third-party-trademarks/index.html +--- + Oracle Binary Code License Agreement for Java SE and JavaFX Technologies ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE "ACCEPT LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE "DECLINE LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED. diff --git a/docs/oracle-bcl-javase-javafx-2013.html b/docs/oracle-bcl-javase-javafx-2013.html index 059d3a5891..8ab0b3853f 100644 --- a/docs/oracle-bcl-javase-javafx-2013.html +++ b/docs/oracle-bcl-javase-javafx-2013.html @@ -207,7 +207,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-bcl-javase-javafx-2013.json b/docs/oracle-bcl-javase-javafx-2013.json index b50d7e9ff0..4e68f3409c 100644 --- a/docs/oracle-bcl-javase-javafx-2013.json +++ b/docs/oracle-bcl-javase-javafx-2013.json @@ -1 +1,14 @@ -{"key": "oracle-bcl-javase-javafx-2013", "short_name": "Oracle BCL for Java SE and JavaFX 2013", "name": "Oracle BCL for Java SE and JavaFX Technologies 2013", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "http://www.oracle.com/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javase-javafx-2013", "ignorable_urls": ["http://www.oracle.com/products/export", "http://www.oracle.com/technetwork/java/javase/documentation/index.html", "http://www.oracle.com/us/legal/third-party-trademarks/index.html"]} \ No newline at end of file +{ + "key": "oracle-bcl-javase-javafx-2013", + "short_name": "Oracle BCL for Java SE and JavaFX 2013", + "name": "Oracle BCL for Java SE and JavaFX Technologies 2013", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "http://www.oracle.com/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javase-javafx-2013", + "ignorable_urls": [ + "http://www.oracle.com/products/export", + "http://www.oracle.com/technetwork/java/javase/documentation/index.html", + "http://www.oracle.com/us/legal/third-party-trademarks/index.html" + ] +} \ No newline at end of file diff --git a/docs/oracle-bcl-javase-platform-javafx-2013.LICENSE b/docs/oracle-bcl-javase-platform-javafx-2013.LICENSE index d77ac8d1f6..1e50d09581 100644 --- a/docs/oracle-bcl-javase-platform-javafx-2013.LICENSE +++ b/docs/oracle-bcl-javase-platform-javafx-2013.LICENSE @@ -1,3 +1,23 @@ +--- +key: oracle-bcl-javase-platform-javafx-2013 +short_name: Oracle BCL for Java SE and JavaFX 2013 Restricted +name: Oracle BCL for Java SE Platform Products and JavaFX 2013 Restricted +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/java/javase/terms/license/index.html +spdx_license_key: LicenseRef-scancode-oracle-bcl-java-platform-2013 +other_spdx_license_keys: + - LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2013 +ignorable_copyrights: + - Copyright YEAR Oracle America, Inc. +ignorable_holders: + - Oracle America, Inc. +ignorable_urls: + - http://www.oracle.com/technetwork/java/javase/documentation/index.html + - http://www.oracle.com/us/legal/third-party-trademarks/index.html + - http://www.oracle.com/us/products/export +--- + Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE "ACCEPT LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE "DECLINE LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED. diff --git a/docs/oracle-bcl-javase-platform-javafx-2013.html b/docs/oracle-bcl-javase-platform-javafx-2013.html index 2654de3f52..5ac99c2d72 100644 --- a/docs/oracle-bcl-javase-platform-javafx-2013.html +++ b/docs/oracle-bcl-javase-platform-javafx-2013.html @@ -230,7 +230,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-bcl-javase-platform-javafx-2013.json b/docs/oracle-bcl-javase-platform-javafx-2013.json index 744e18f6dc..2b6f7d3d5e 100644 --- a/docs/oracle-bcl-javase-platform-javafx-2013.json +++ b/docs/oracle-bcl-javase-platform-javafx-2013.json @@ -1 +1,23 @@ -{"key": "oracle-bcl-javase-platform-javafx-2013", "short_name": "Oracle BCL for Java SE and JavaFX 2013 Restricted", "name": "Oracle BCL for Java SE Platform Products and JavaFX 2013 Restricted", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "http://www.oracle.com/technetwork/java/javase/terms/license/index.html", "spdx_license_key": "LicenseRef-scancode-oracle-bcl-java-platform-2013", "other_spdx_license_keys": ["LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2013"], "ignorable_copyrights": ["Copyright YEAR Oracle America, Inc."], "ignorable_holders": ["Oracle America, Inc."], "ignorable_urls": ["http://www.oracle.com/technetwork/java/javase/documentation/index.html", "http://www.oracle.com/us/legal/third-party-trademarks/index.html", "http://www.oracle.com/us/products/export"]} \ No newline at end of file +{ + "key": "oracle-bcl-javase-platform-javafx-2013", + "short_name": "Oracle BCL for Java SE and JavaFX 2013 Restricted", + "name": "Oracle BCL for Java SE Platform Products and JavaFX 2013 Restricted", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "http://www.oracle.com/technetwork/java/javase/terms/license/index.html", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-java-platform-2013", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2013" + ], + "ignorable_copyrights": [ + "Copyright YEAR Oracle America, Inc." + ], + "ignorable_holders": [ + "Oracle America, Inc." + ], + "ignorable_urls": [ + "http://www.oracle.com/technetwork/java/javase/documentation/index.html", + "http://www.oracle.com/us/legal/third-party-trademarks/index.html", + "http://www.oracle.com/us/products/export" + ] +} \ No newline at end of file diff --git a/docs/oracle-bcl-javase-platform-javafx-2017.LICENSE b/docs/oracle-bcl-javase-platform-javafx-2017.LICENSE index 94a76f2c22..02be78bab6 100644 --- a/docs/oracle-bcl-javase-platform-javafx-2017.LICENSE +++ b/docs/oracle-bcl-javase-platform-javafx-2017.LICENSE @@ -1,3 +1,26 @@ +--- +key: oracle-bcl-javase-platform-javafx-2017 +short_name: Oracle BCL for Java SE and JavaFX 2017 Restricted +name: Oracle BCL for Java SE Platform Products and JavaFX 2017 Restricted +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/java/javase/terms/license/index.html +spdx_license_key: LicenseRef-scancode-oracle-bcl-java-platform-2017 +other_spdx_license_keys: + - LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2017 +faq_url: https://www.oracle.com/technetwork/java/javase/documentation/index.html +other_urls: + - https://www.oracle.com/technetwork/java/javase/terms/products/index.html +ignorable_copyrights: + - Copyright YEAR Oracle America, Inc. +ignorable_holders: + - Oracle America, Inc. +ignorable_urls: + - http://www.oracle.com/technetwork/java/javase/documentation/index.html + - http://www.oracle.com/us/legal/third-party-trademarks/index.html + - http://www.oracle.com/us/products/export +--- + Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE "ACCEPT LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE "DECLINE LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED. diff --git a/docs/oracle-bcl-javase-platform-javafx-2017.html b/docs/oracle-bcl-javase-platform-javafx-2017.html index e92aa7fefa..6dc8950776 100644 --- a/docs/oracle-bcl-javase-platform-javafx-2017.html +++ b/docs/oracle-bcl-javase-platform-javafx-2017.html @@ -241,7 +241,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-bcl-javase-platform-javafx-2017.json b/docs/oracle-bcl-javase-platform-javafx-2017.json index ef0d6fdaed..45e9221db4 100644 --- a/docs/oracle-bcl-javase-platform-javafx-2017.json +++ b/docs/oracle-bcl-javase-platform-javafx-2017.json @@ -1 +1,27 @@ -{"key": "oracle-bcl-javase-platform-javafx-2017", "short_name": "Oracle BCL for Java SE and JavaFX 2017 Restricted", "name": "Oracle BCL for Java SE Platform Products and JavaFX 2017 Restricted", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "http://www.oracle.com/technetwork/java/javase/terms/license/index.html", "spdx_license_key": "LicenseRef-scancode-oracle-bcl-java-platform-2017", "other_spdx_license_keys": ["LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2017"], "faq_url": "https://www.oracle.com/technetwork/java/javase/documentation/index.html", "other_urls": ["https://www.oracle.com/technetwork/java/javase/terms/products/index.html"], "ignorable_copyrights": ["Copyright YEAR Oracle America, Inc."], "ignorable_holders": ["Oracle America, Inc."], "ignorable_urls": ["http://www.oracle.com/technetwork/java/javase/documentation/index.html", "http://www.oracle.com/us/legal/third-party-trademarks/index.html", "http://www.oracle.com/us/products/export"]} \ No newline at end of file +{ + "key": "oracle-bcl-javase-platform-javafx-2017", + "short_name": "Oracle BCL for Java SE and JavaFX 2017 Restricted", + "name": "Oracle BCL for Java SE Platform Products and JavaFX 2017 Restricted", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "http://www.oracle.com/technetwork/java/javase/terms/license/index.html", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-java-platform-2017", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2017" + ], + "faq_url": "https://www.oracle.com/technetwork/java/javase/documentation/index.html", + "other_urls": [ + "https://www.oracle.com/technetwork/java/javase/terms/products/index.html" + ], + "ignorable_copyrights": [ + "Copyright YEAR Oracle America, Inc." + ], + "ignorable_holders": [ + "Oracle America, Inc." + ], + "ignorable_urls": [ + "http://www.oracle.com/technetwork/java/javase/documentation/index.html", + "http://www.oracle.com/us/legal/third-party-trademarks/index.html", + "http://www.oracle.com/us/products/export" + ] +} \ No newline at end of file diff --git a/docs/oracle-bcl-jsse-1.0.3.LICENSE b/docs/oracle-bcl-jsse-1.0.3.LICENSE index 28853b71f2..61f6c434b5 100644 --- a/docs/oracle-bcl-jsse-1.0.3.LICENSE +++ b/docs/oracle-bcl-jsse-1.0.3.LICENSE @@ -1,3 +1,16 @@ +--- +key: oracle-bcl-jsse-1.0.3 +short_name: Oracle BCL for JSSE 1.0.3 for CDC 1.0.2 +name: Oracle BCL for JSSE 1.0.3 for CDC 1.0.2 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://download.oracle.com/otn-pub/java/licenses/OTN_JSSE_Legacy_Binary-Code-License_9Mar2012.pdf +spdx_license_key: LicenseRef-scancode-oracle-bcl-jsse-1.0.3 +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/us/legal/third-party-trademarks/index.html +--- + Oracle Binary Code License Agreement for Java Secure Sockets Extension 1.0.3 for Connected Device Configuration 1.0.2 diff --git a/docs/oracle-bcl-jsse-1.0.3.html b/docs/oracle-bcl-jsse-1.0.3.html index 3ab3955004..b1f4502418 100644 --- a/docs/oracle-bcl-jsse-1.0.3.html +++ b/docs/oracle-bcl-jsse-1.0.3.html @@ -321,7 +321,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-bcl-jsse-1.0.3.json b/docs/oracle-bcl-jsse-1.0.3.json index c0403854c2..265f14450d 100644 --- a/docs/oracle-bcl-jsse-1.0.3.json +++ b/docs/oracle-bcl-jsse-1.0.3.json @@ -1 +1,13 @@ -{"key": "oracle-bcl-jsse-1.0.3", "short_name": "Oracle BCL for JSSE 1.0.3 for CDC 1.0.2", "name": "Oracle BCL for JSSE 1.0.3 for CDC 1.0.2", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "http://download.oracle.com/otn-pub/java/licenses/OTN_JSSE_Legacy_Binary-Code-License_9Mar2012.pdf", "spdx_license_key": "LicenseRef-scancode-oracle-bcl-jsse-1.0.3", "ignorable_urls": ["http://www.oracle.com/products/export", "http://www.oracle.com/us/legal/third-party-trademarks/index.html"]} \ No newline at end of file +{ + "key": "oracle-bcl-jsse-1.0.3", + "short_name": "Oracle BCL for JSSE 1.0.3 for CDC 1.0.2", + "name": "Oracle BCL for JSSE 1.0.3 for CDC 1.0.2", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "http://download.oracle.com/otn-pub/java/licenses/OTN_JSSE_Legacy_Binary-Code-License_9Mar2012.pdf", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-jsse-1.0.3", + "ignorable_urls": [ + "http://www.oracle.com/products/export", + "http://www.oracle.com/us/legal/third-party-trademarks/index.html" + ] +} \ No newline at end of file diff --git a/docs/oracle-bsd-no-nuclear.LICENSE b/docs/oracle-bsd-no-nuclear.LICENSE index 256acd4f60..312d102e7e 100644 --- a/docs/oracle-bsd-no-nuclear.LICENSE +++ b/docs/oracle-bsd-no-nuclear.LICENSE @@ -1,3 +1,17 @@ +--- +key: oracle-bsd-no-nuclear +short_name: Oracle BSD-Style with Nuclear Restrictions +name: Oracle BSD-Style with Nuclear Restrictions +category: Free Restricted +owner: Oracle Corporation +homepage_url: https://java.net/projects/javaeetutorial/pages/BerkeleyLicense +notes: this is a minor variation on similar licenses by Sun and Oracle. +spdx_license_key: BSD-3-Clause-No-Nuclear-License-2014 +other_urls: + - https://web.archive.org/web/20150906075957/https://java.net/projects/javaeetutorial/pages/BerkeleyLicense +minimum_coverage: 88 +--- + Use is subject to license terms. Redistribution and use in source and binary forms, with or without modification, diff --git a/docs/oracle-bsd-no-nuclear.html b/docs/oracle-bsd-no-nuclear.html index 0fb7064b38..fccecb2513 100644 --- a/docs/oracle-bsd-no-nuclear.html +++ b/docs/oracle-bsd-no-nuclear.html @@ -178,7 +178,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-bsd-no-nuclear.json b/docs/oracle-bsd-no-nuclear.json index 7f087ff703..8ec5b438f7 100644 --- a/docs/oracle-bsd-no-nuclear.json +++ b/docs/oracle-bsd-no-nuclear.json @@ -1 +1,14 @@ -{"key": "oracle-bsd-no-nuclear", "short_name": "Oracle BSD-Style with Nuclear Restrictions", "name": "Oracle BSD-Style with Nuclear Restrictions", "category": "Free Restricted", "owner": "Oracle Corporation", "homepage_url": "https://java.net/projects/javaeetutorial/pages/BerkeleyLicense", "notes": "this is a minor variation on similar licenses by Sun and Oracle.", "spdx_license_key": "BSD-3-Clause-No-Nuclear-License-2014", "other_urls": ["https://web.archive.org/web/20150906075957/https://java.net/projects/javaeetutorial/pages/BerkeleyLicense"], "minimum_coverage": 88} \ No newline at end of file +{ + "key": "oracle-bsd-no-nuclear", + "short_name": "Oracle BSD-Style with Nuclear Restrictions", + "name": "Oracle BSD-Style with Nuclear Restrictions", + "category": "Free Restricted", + "owner": "Oracle Corporation", + "homepage_url": "https://java.net/projects/javaeetutorial/pages/BerkeleyLicense", + "notes": "this is a minor variation on similar licenses by Sun and Oracle.", + "spdx_license_key": "BSD-3-Clause-No-Nuclear-License-2014", + "other_urls": [ + "https://web.archive.org/web/20150906075957/https://java.net/projects/javaeetutorial/pages/BerkeleyLicense" + ], + "minimum_coverage": 88 +} \ No newline at end of file diff --git a/docs/oracle-code-samples-bsd.LICENSE b/docs/oracle-code-samples-bsd.LICENSE index 4caa8502c4..e98941c65a 100644 --- a/docs/oracle-code-samples-bsd.LICENSE +++ b/docs/oracle-code-samples-bsd.LICENSE @@ -1,3 +1,12 @@ +--- +key: oracle-code-samples-bsd +short_name: Oracle Code Samples BSD-Style License +name: Oracle Code Samples BSD-Style License +category: Free Restricted +owner: Oracle Corporation +spdx_license_key: LicenseRef-scancode-oracle-code-samples-bsd +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -28,4 +37,4 @@ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. You acknowledge that this software is not designed, licensed or intended for use in the design, construction, operation or maintenance of any -nuclear facility. +nuclear facility. \ No newline at end of file diff --git a/docs/oracle-code-samples-bsd.html b/docs/oracle-code-samples-bsd.html index ddf5f3baa0..21041c68a3 100644 --- a/docs/oracle-code-samples-bsd.html +++ b/docs/oracle-code-samples-bsd.html @@ -138,8 +138,7 @@ You acknowledge that this software is not designed, licensed or intended for use in the design, construction, operation or maintenance of any -nuclear facility. - +nuclear facility.
@@ -151,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-code-samples-bsd.json b/docs/oracle-code-samples-bsd.json index 9b504b810c..1c5c2396ed 100644 --- a/docs/oracle-code-samples-bsd.json +++ b/docs/oracle-code-samples-bsd.json @@ -1 +1,8 @@ -{"key": "oracle-code-samples-bsd", "short_name": "Oracle Code Samples BSD-Style License", "name": "Oracle Code Samples BSD-Style License", "category": "Free Restricted", "owner": "Oracle Corporation", "spdx_license_key": "LicenseRef-scancode-oracle-code-samples-bsd"} \ No newline at end of file +{ + "key": "oracle-code-samples-bsd", + "short_name": "Oracle Code Samples BSD-Style License", + "name": "Oracle Code Samples BSD-Style License", + "category": "Free Restricted", + "owner": "Oracle Corporation", + "spdx_license_key": "LicenseRef-scancode-oracle-code-samples-bsd" +} \ No newline at end of file diff --git a/docs/oracle-commercial-database-11g2.LICENSE b/docs/oracle-commercial-database-11g2.LICENSE index 0222c8c520..03b4290321 100644 --- a/docs/oracle-commercial-database-11g2.LICENSE +++ b/docs/oracle-commercial-database-11g2.LICENSE @@ -1 +1,16 @@ +--- +key: oracle-commercial-database-11g2 +short_name: Oracle Commercial Database License 11g2 +name: Oracle Commercial Database License 11g Release 2 (11.2) +category: Commercial +owner: Oracle Corporation +homepage_url: http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm +spdx_license_key: LicenseRef-scancode-oracle-commercial-db-11g2 +other_spdx_license_keys: + - LicenseRef-scancode-oracle-commercial-database-11g2 +faq_url: http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm +ignorable_urls: + - http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm +--- + This Oracle database is subject to commercial licensing terms. Refer to http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm for complete details. \ No newline at end of file diff --git a/docs/oracle-commercial-database-11g2.html b/docs/oracle-commercial-database-11g2.html index d0bca6f2e9..44e090e2a1 100644 --- a/docs/oracle-commercial-database-11g2.html +++ b/docs/oracle-commercial-database-11g2.html @@ -152,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-commercial-database-11g2.json b/docs/oracle-commercial-database-11g2.json index 703efb8cf0..cd9ba6fe37 100644 --- a/docs/oracle-commercial-database-11g2.json +++ b/docs/oracle-commercial-database-11g2.json @@ -1 +1,16 @@ -{"key": "oracle-commercial-database-11g2", "short_name": "Oracle Commercial Database License 11g2", "name": "Oracle Commercial Database License 11g Release 2 (11.2)", "category": "Commercial", "owner": "Oracle Corporation", "homepage_url": "http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm", "spdx_license_key": "LicenseRef-scancode-oracle-commercial-db-11g2", "other_spdx_license_keys": ["LicenseRef-scancode-oracle-commercial-database-11g2"], "faq_url": "http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm", "ignorable_urls": ["http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm"]} \ No newline at end of file +{ + "key": "oracle-commercial-database-11g2", + "short_name": "Oracle Commercial Database License 11g2", + "name": "Oracle Commercial Database License 11g Release 2 (11.2)", + "category": "Commercial", + "owner": "Oracle Corporation", + "homepage_url": "http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm", + "spdx_license_key": "LicenseRef-scancode-oracle-commercial-db-11g2", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-commercial-database-11g2" + ], + "faq_url": "http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm", + "ignorable_urls": [ + "http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm" + ] +} \ No newline at end of file diff --git a/docs/oracle-devtools-vsnet-dev.LICENSE b/docs/oracle-devtools-vsnet-dev.LICENSE index ef72641141..cb7fcc368e 100644 --- a/docs/oracle-devtools-vsnet-dev.LICENSE +++ b/docs/oracle-devtools-vsnet-dev.LICENSE @@ -1,3 +1,19 @@ +--- +key: oracle-devtools-vsnet-dev +short_name: Oracle DevTools for Visual Studio .NET Development +name: Oracle Developer Tools for Visual Studio .NET Development License +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/licenses/odt-lic-152011.html +spdx_license_key: LicenseRef-scancode-oracle-devtools-vsnet-dev +minimum_coverage: 50 +ignorable_authors: + - the OTN Program +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/products/export/index.html?content.html +--- + Oracle Technology Network Oracle Developer Tools for Visual Studio .NET Development License Terms diff --git a/docs/oracle-devtools-vsnet-dev.html b/docs/oracle-devtools-vsnet-dev.html index ff28b7e5f9..1af9b5e656 100644 --- a/docs/oracle-devtools-vsnet-dev.html +++ b/docs/oracle-devtools-vsnet-dev.html @@ -235,7 +235,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-devtools-vsnet-dev.json b/docs/oracle-devtools-vsnet-dev.json index ed960d8bae..595a284713 100644 --- a/docs/oracle-devtools-vsnet-dev.json +++ b/docs/oracle-devtools-vsnet-dev.json @@ -1 +1,17 @@ -{"key": "oracle-devtools-vsnet-dev", "short_name": "Oracle DevTools for Visual Studio .NET Development", "name": "Oracle Developer Tools for Visual Studio .NET Development License", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "http://www.oracle.com/technetwork/licenses/odt-lic-152011.html", "spdx_license_key": "LicenseRef-scancode-oracle-devtools-vsnet-dev", "minimum_coverage": 50, "ignorable_authors": ["the OTN Program"], "ignorable_urls": ["http://www.oracle.com/products/export", "http://www.oracle.com/products/export/index.html?content.html"]} \ No newline at end of file +{ + "key": "oracle-devtools-vsnet-dev", + "short_name": "Oracle DevTools for Visual Studio .NET Development", + "name": "Oracle Developer Tools for Visual Studio .NET Development License", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "http://www.oracle.com/technetwork/licenses/odt-lic-152011.html", + "spdx_license_key": "LicenseRef-scancode-oracle-devtools-vsnet-dev", + "minimum_coverage": 50, + "ignorable_authors": [ + "the OTN Program" + ], + "ignorable_urls": [ + "http://www.oracle.com/products/export", + "http://www.oracle.com/products/export/index.html?content.html" + ] +} \ No newline at end of file diff --git a/docs/oracle-entitlement-05-15.LICENSE b/docs/oracle-entitlement-05-15.LICENSE index bc20d13aba..c31d2ecb9c 100644 --- a/docs/oracle-entitlement-05-15.LICENSE +++ b/docs/oracle-entitlement-05-15.LICENSE @@ -1,3 +1,16 @@ +--- +key: oracle-entitlement-05-15 +short_name: Oracle Entitlement 5 plus 15 +name: Oracle Entitlement 5 plus 15 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-eeplat-419426.html#javamail-1.4.4-oth-JPR +spdx_license_key: LicenseRef-scancode-oracle-entitlement-05-15 +ignorable_urls: + - http://www.java.net/ + - http://www.sun.com/service/servicelist +--- + Oracle Corporation ("ORACLE") ENTITLEMENT for SOFTWARE Licensee/Company: Entity receiving Software. @@ -334,4 +347,4 @@ of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. For inquiries please contact: Oracle Corporation, 500 Oracle Parkway, -Redwood Shores, California 94065, USA. +Redwood Shores, California 94065, USA. \ No newline at end of file diff --git a/docs/oracle-entitlement-05-15.html b/docs/oracle-entitlement-05-15.html index cf429d7d89..10108c27c0 100644 --- a/docs/oracle-entitlement-05-15.html +++ b/docs/oracle-entitlement-05-15.html @@ -460,8 +460,7 @@ authorized representative of each party. For inquiries please contact: Oracle Corporation, 500 Oracle Parkway, -Redwood Shores, California 94065, USA. - +Redwood Shores, California 94065, USA.
@@ -473,7 +472,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-entitlement-05-15.json b/docs/oracle-entitlement-05-15.json index ebaab60718..a96c367851 100644 --- a/docs/oracle-entitlement-05-15.json +++ b/docs/oracle-entitlement-05-15.json @@ -1 +1,13 @@ -{"key": "oracle-entitlement-05-15", "short_name": "Oracle Entitlement 5 plus 15", "name": "Oracle Entitlement 5 plus 15", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-eeplat-419426.html#javamail-1.4.4-oth-JPR", "spdx_license_key": "LicenseRef-scancode-oracle-entitlement-05-15", "ignorable_urls": ["http://www.java.net/", "http://www.sun.com/service/servicelist"]} \ No newline at end of file +{ + "key": "oracle-entitlement-05-15", + "short_name": "Oracle Entitlement 5 plus 15", + "name": "Oracle Entitlement 5 plus 15", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-eeplat-419426.html#javamail-1.4.4-oth-JPR", + "spdx_license_key": "LicenseRef-scancode-oracle-entitlement-05-15", + "ignorable_urls": [ + "http://www.java.net/", + "http://www.sun.com/service/servicelist" + ] +} \ No newline at end of file diff --git a/docs/oracle-java-ee-sdk-2010.LICENSE b/docs/oracle-java-ee-sdk-2010.LICENSE index 8c5eb73267..3460f37516 100644 --- a/docs/oracle-java-ee-sdk-2010.LICENSE +++ b/docs/oracle-java-ee-sdk-2010.LICENSE @@ -1,3 +1,19 @@ +--- +key: oracle-java-ee-sdk-2010 +short_name: OTN Developer License for JAVA EE SDK +name: OTN Developer License for JAVA EE SDK +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/java/javase/downloads/366879 +spdx_license_key: LicenseRef-scancode-oracle-java-ee-sdk-2010 +minimum_coverage: 50 +ignorable_authors: + - the OTN Program +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/products/export/index.html +--- + Oracle Technology Network Developer License Terms for JAVA EE SDK Export Controls on the Programs Selecting the "Accept License Agreement" button is a confirmation of your agreement that you comply, now and during the trial term, with each of the following statements: diff --git a/docs/oracle-java-ee-sdk-2010.html b/docs/oracle-java-ee-sdk-2010.html index 7f23a29856..5cf39847f8 100644 --- a/docs/oracle-java-ee-sdk-2010.html +++ b/docs/oracle-java-ee-sdk-2010.html @@ -240,7 +240,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-java-ee-sdk-2010.json b/docs/oracle-java-ee-sdk-2010.json index 75b5557515..cf4cddc25d 100644 --- a/docs/oracle-java-ee-sdk-2010.json +++ b/docs/oracle-java-ee-sdk-2010.json @@ -1 +1,17 @@ -{"key": "oracle-java-ee-sdk-2010", "short_name": "OTN Developer License for JAVA EE SDK", "name": "OTN Developer License for JAVA EE SDK", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "http://www.oracle.com/technetwork/java/javase/downloads/366879", "spdx_license_key": "LicenseRef-scancode-oracle-java-ee-sdk-2010", "minimum_coverage": 50, "ignorable_authors": ["the OTN Program"], "ignorable_urls": ["http://www.oracle.com/products/export", "http://www.oracle.com/products/export/index.html"]} \ No newline at end of file +{ + "key": "oracle-java-ee-sdk-2010", + "short_name": "OTN Developer License for JAVA EE SDK", + "name": "OTN Developer License for JAVA EE SDK", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "http://www.oracle.com/technetwork/java/javase/downloads/366879", + "spdx_license_key": "LicenseRef-scancode-oracle-java-ee-sdk-2010", + "minimum_coverage": 50, + "ignorable_authors": [ + "the OTN Program" + ], + "ignorable_urls": [ + "http://www.oracle.com/products/export", + "http://www.oracle.com/products/export/index.html" + ] +} \ No newline at end of file diff --git a/docs/oracle-master-agreement.LICENSE b/docs/oracle-master-agreement.LICENSE index 495bc912ee..662893e931 100644 --- a/docs/oracle-master-agreement.LICENSE +++ b/docs/oracle-master-agreement.LICENSE @@ -1,3 +1,15 @@ +--- +key: oracle-master-agreement +short_name: Oracle Master Agreement (OMA) +name: Oracle Master Agreement (OMA) +category: Commercial +owner: Oracle Corporation +homepage_url: http://www.oracle.com/us/corporate/contracts/oma/index.html +spdx_license_key: LicenseRef-scancode-oracle-master-agreement +ignorable_urls: + - http://www.oracle.com/us/corporate/contracts/oma/index.html +--- + The Oracle Master Agreement (OMA) is the standard agreement that is used to license Oracle programs and acquire related services. See http://www.oracle.com/us/corporate/contracts/oma/index.html diff --git a/docs/oracle-master-agreement.html b/docs/oracle-master-agreement.html index 2d8a180ff4..33ff8b3f8b 100644 --- a/docs/oracle-master-agreement.html +++ b/docs/oracle-master-agreement.html @@ -140,7 +140,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-master-agreement.json b/docs/oracle-master-agreement.json index a67fa5cc6b..cbf2b459f0 100644 --- a/docs/oracle-master-agreement.json +++ b/docs/oracle-master-agreement.json @@ -1 +1,12 @@ -{"key": "oracle-master-agreement", "short_name": "Oracle Master Agreement (OMA)", "name": "Oracle Master Agreement (OMA)", "category": "Commercial", "owner": "Oracle Corporation", "homepage_url": "http://www.oracle.com/us/corporate/contracts/oma/index.html", "spdx_license_key": "LicenseRef-scancode-oracle-master-agreement", "ignorable_urls": ["http://www.oracle.com/us/corporate/contracts/oma/index.html"]} \ No newline at end of file +{ + "key": "oracle-master-agreement", + "short_name": "Oracle Master Agreement (OMA)", + "name": "Oracle Master Agreement (OMA)", + "category": "Commercial", + "owner": "Oracle Corporation", + "homepage_url": "http://www.oracle.com/us/corporate/contracts/oma/index.html", + "spdx_license_key": "LicenseRef-scancode-oracle-master-agreement", + "ignorable_urls": [ + "http://www.oracle.com/us/corporate/contracts/oma/index.html" + ] +} \ No newline at end of file diff --git a/docs/oracle-mysql-foss-exception-2.0.LICENSE b/docs/oracle-mysql-foss-exception-2.0.LICENSE index 6bd721c5e9..a3e38a6a8e 100644 --- a/docs/oracle-mysql-foss-exception-2.0.LICENSE +++ b/docs/oracle-mysql-foss-exception-2.0.LICENSE @@ -1,3 +1,42 @@ +--- +key: oracle-mysql-foss-exception-2.0 +short_name: Oracle MySQL FOSS exception to GPL 2.0 +name: Oracle MySQL FOSS exception to GPL 2.0 +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: http://www.mysql.com/about/legal/licensing/foss-exception.html +notes: dated 2012-02-23 See https://web.archive.org/web/20120322105249/https://www.mysql.com/about/legal/licensing/foss-exception/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-oracle-mysql-foss-exception2.0 +other_spdx_license_keys: + - LicenseRef-scancode-oracle-mysql-foss-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +minimum_coverage: 95 +standard_notice: | + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License version 2 as published by + the Free Software Foundation. + This library is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + MySQL FOSS License Exception + We want free and open source software applications under certain licenses + to be able to use the GPL-licensed MySQL Connector (specified GPL-licensed + MySQL client libraries) despite the fact that not all such FOSS licenses + are compatible with version 2 of the GNU General Public License. + Therefore there are special exceptions to the terms and conditions of the + GPLv2 as applied to these client libraries, which are identified and + described in more detail in the FOSS License Exception at + + This software is OSI Certified Open Source Software. + OSI Certified is a certification mark of the Open Source Initiative. +--- + Oracle's FOSS License Exception Terms and Conditions 1. Definitions. "Derivative Work" means a derivative work, as defined @@ -112,5 +151,4 @@ FOSS License List ¹) When an Independent Work is licensed under a "Compatible License" pursuant to the EUPL, the Compatible License rather than the EUPL is the applicable license for purposes of these FOSS License Exception Terms and -Conditions. - +Conditions. \ No newline at end of file diff --git a/docs/oracle-mysql-foss-exception-2.0.html b/docs/oracle-mysql-foss-exception-2.0.html index 2681aa01ba..194802ff70 100644 --- a/docs/oracle-mysql-foss-exception-2.0.html +++ b/docs/oracle-mysql-foss-exception-2.0.html @@ -296,9 +296,7 @@ ¹) When an Independent Work is licensed under a "Compatible License" pursuant to the EUPL, the Compatible License rather than the EUPL is the applicable license for purposes of these FOSS License Exception Terms and -Conditions. - - +Conditions.
@@ -310,7 +308,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-mysql-foss-exception-2.0.json b/docs/oracle-mysql-foss-exception-2.0.json index b25599858d..d0579747c7 100644 --- a/docs/oracle-mysql-foss-exception-2.0.json +++ b/docs/oracle-mysql-foss-exception-2.0.json @@ -1 +1,19 @@ -{"key": "oracle-mysql-foss-exception-2.0", "short_name": "Oracle MySQL FOSS exception to GPL 2.0", "name": "Oracle MySQL FOSS exception to GPL 2.0", "category": "Copyleft Limited", "owner": "Oracle Corporation", "homepage_url": "http://www.mysql.com/about/legal/licensing/foss-exception.html", "notes": "dated 2012-02-23 See https://web.archive.org/web/20120322105249/https://www.mysql.com/about/legal/licensing/foss-exception/", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-oracle-mysql-foss-exception2.0", "other_spdx_license_keys": ["LicenseRef-scancode-oracle-mysql-foss-exception-2.0"], "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "minimum_coverage": 95, "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License version 2 as published by\nthe Free Software Foundation.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nMySQL FOSS License Exception\nWe want free and open source software applications under certain licenses\nto be able to use the GPL-licensed MySQL Connector (specified GPL-licensed\nMySQL client libraries) despite the fact that not all such FOSS licenses\nare compatible with version 2 of the GNU General Public License.\nTherefore there are special exceptions to the terms and conditions of the\nGPLv2 as applied to these client libraries, which are identified and\ndescribed in more detail in the FOSS License Exception at\n\nThis software is OSI Certified Open Source Software.\nOSI Certified is a certification mark of the Open Source Initiative.\n"} \ No newline at end of file +{ + "key": "oracle-mysql-foss-exception-2.0", + "short_name": "Oracle MySQL FOSS exception to GPL 2.0", + "name": "Oracle MySQL FOSS exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "Oracle Corporation", + "homepage_url": "http://www.mysql.com/about/legal/licensing/foss-exception.html", + "notes": "dated 2012-02-23 See https://web.archive.org/web/20120322105249/https://www.mysql.com/about/legal/licensing/foss-exception/", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-oracle-mysql-foss-exception2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-mysql-foss-exception-2.0" + ], + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "minimum_coverage": 95, + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License version 2 as published by\nthe Free Software Foundation.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nMySQL FOSS License Exception\nWe want free and open source software applications under certain licenses\nto be able to use the GPL-licensed MySQL Connector (specified GPL-licensed\nMySQL client libraries) despite the fact that not all such FOSS licenses\nare compatible with version 2 of the GNU General Public License.\nTherefore there are special exceptions to the terms and conditions of the\nGPLv2 as applied to these client libraries, which are identified and\ndescribed in more detail in the FOSS License Exception at\n\nThis software is OSI Certified Open Source Software.\nOSI Certified is a certification mark of the Open Source Initiative.\n" +} \ No newline at end of file diff --git a/docs/oracle-nftc-2021.LICENSE b/docs/oracle-nftc-2021.LICENSE index 35541b7d93..32e2866ef9 100644 --- a/docs/oracle-nftc-2021.LICENSE +++ b/docs/oracle-nftc-2021.LICENSE @@ -1,3 +1,26 @@ +--- +key: oracle-nftc-2021 +short_name: Oracle NFTC 2021 +name: Oracle No-Fee Terms and Conditions (NFTC) 2021 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: https://www.oracle.com/downloads/licenses/no-fee-license.html +spdx_license_key: LicenseRef-scancode-oracle-nftc-2021 +other_urls: + - https://www.theregister.com/2021/09/16/oracle_jdk_free_license/ +standard_notice: | + Your use of this Program is governed by the No-Fee Terms and Conditions set + forth below, unless you have received this Program (alone or as part of + another Oracle product) under an Oracle license agreement (including but + not limited to the Oracle Master Agreement), in which case your use of this + Program is governed solely by such license agreement with Oracle. +ignorable_urls: + - http://www.oracle.com/documentation + - http://www.oracle.com/goto/opensourcecode + - http://www.oracle.com/privacy + - https://oss.oracle.com/sources/ +--- + Oracle No-Fee Terms and Conditions (NFTC) Definitions diff --git a/docs/oracle-nftc-2021.html b/docs/oracle-nftc-2021.html index 5a3b19f65c..3bab67c2e2 100644 --- a/docs/oracle-nftc-2021.html +++ b/docs/oracle-nftc-2021.html @@ -209,7 +209,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-nftc-2021.json b/docs/oracle-nftc-2021.json index 35b7ce5e52..3df05bbbde 100644 --- a/docs/oracle-nftc-2021.json +++ b/docs/oracle-nftc-2021.json @@ -1 +1,19 @@ -{"key": "oracle-nftc-2021", "short_name": "Oracle NFTC 2021", "name": "Oracle No-Fee Terms and Conditions (NFTC) 2021", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "https://www.oracle.com/downloads/licenses/no-fee-license.html", "spdx_license_key": "LicenseRef-scancode-oracle-nftc-2021", "other_urls": ["https://www.theregister.com/2021/09/16/oracle_jdk_free_license/"], "standard_notice": "Your use of this Program is governed by the No-Fee Terms and Conditions set\nforth below, unless you have received this Program (alone or as part of\nanother Oracle product) under an Oracle license agreement (including but\nnot limited to the Oracle Master Agreement), in which case your use of this\nProgram is governed solely by such license agreement with Oracle.\n", "ignorable_urls": ["http://www.oracle.com/documentation", "http://www.oracle.com/goto/opensourcecode", "http://www.oracle.com/privacy", "https://oss.oracle.com/sources/"]} \ No newline at end of file +{ + "key": "oracle-nftc-2021", + "short_name": "Oracle NFTC 2021", + "name": "Oracle No-Fee Terms and Conditions (NFTC) 2021", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "https://www.oracle.com/downloads/licenses/no-fee-license.html", + "spdx_license_key": "LicenseRef-scancode-oracle-nftc-2021", + "other_urls": [ + "https://www.theregister.com/2021/09/16/oracle_jdk_free_license/" + ], + "standard_notice": "Your use of this Program is governed by the No-Fee Terms and Conditions set\nforth below, unless you have received this Program (alone or as part of\nanother Oracle product) under an Oracle license agreement (including but\nnot limited to the Oracle Master Agreement), in which case your use of this\nProgram is governed solely by such license agreement with Oracle.\n", + "ignorable_urls": [ + "http://www.oracle.com/documentation", + "http://www.oracle.com/goto/opensourcecode", + "http://www.oracle.com/privacy", + "https://oss.oracle.com/sources/" + ] +} \ No newline at end of file diff --git a/docs/oracle-openjdk-classpath-exception-2.0.LICENSE b/docs/oracle-openjdk-classpath-exception-2.0.LICENSE index ea79af22d8..b69b6cab6f 100644 --- a/docs/oracle-openjdk-classpath-exception-2.0.LICENSE +++ b/docs/oracle-openjdk-classpath-exception-2.0.LICENSE @@ -1,3 +1,54 @@ +--- +key: oracle-openjdk-classpath-exception-2.0 +short_name: Oracle OpenJDK classpath exception to GPL 2.0 +name: Oracle OpenJDK classpath exception to GPL 2.0 +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: http://openjdk.java.net/legal/gplv2+ce.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-oracle-openjdk-exception-2.0 +other_spdx_license_keys: + - LicenseRef-scancode-oracle-openjdk-classpath-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This library 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 2, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + "CLASSPATH" EXCEPTION TO THE GPL + Certain source files distributed by Oracle America and/or its affiliates + are + subject to the following clarification and special exception to the GPL, + but + only where Oracle has expressly included in the particular source file's + header + the words "Oracle designates this particular file as subject to the + "Classpath" + exception as provided by Oracle in the LICENSE file that accompanied this + code." + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. +--- + "CLASSPATH" EXCEPTION TO THE GPL Certain source files distributed by Oracle America and/or its affiliates are diff --git a/docs/oracle-openjdk-classpath-exception-2.0.html b/docs/oracle-openjdk-classpath-exception-2.0.html index 62f3d637c3..e67d483667 100644 --- a/docs/oracle-openjdk-classpath-exception-2.0.html +++ b/docs/oracle-openjdk-classpath-exception-2.0.html @@ -215,7 +215,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-openjdk-classpath-exception-2.0.json b/docs/oracle-openjdk-classpath-exception-2.0.json index d7b8dbc9b9..f176d2cc3b 100644 --- a/docs/oracle-openjdk-classpath-exception-2.0.json +++ b/docs/oracle-openjdk-classpath-exception-2.0.json @@ -1 +1,17 @@ -{"key": "oracle-openjdk-classpath-exception-2.0", "short_name": "Oracle OpenJDK classpath exception to GPL 2.0", "name": "Oracle OpenJDK classpath exception to GPL 2.0", "category": "Copyleft Limited", "owner": "Oracle Corporation", "homepage_url": "http://openjdk.java.net/legal/gplv2+ce.html", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-oracle-openjdk-exception-2.0", "other_spdx_license_keys": ["LicenseRef-scancode-oracle-openjdk-classpath-exception-2.0"], "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\"CLASSPATH\" EXCEPTION TO THE GPL\nCertain source files distributed by Oracle America and/or its affiliates\nare\nsubject to the following clarification and special exception to the GPL,\nbut\nonly where Oracle has expressly included in the particular source file's\nheader\nthe words \"Oracle designates this particular file as subject to the\n\"Classpath\"\nexception as provided by Oracle in the LICENSE file that accompanied this\ncode.\"\nLinking this library statically or dynamically with other modules is making\na combined work based on this library. Thus, the terms and conditions of\nthe GNU General Public License cover the whole combination.\nAs a special exception, the copyright holders of this library give you\npermission to link this library with independent modules to produce an\nexecutable, regardless of the license terms of these independent modules,\nand to copy and distribute the resulting executable under terms of your\nchoice, provided that you also meet, for each linked independent module,\nthe terms and conditions of the license of that module. An independent\nmodule is a module which is not derived from or based on this library. If\nyou modify this library, you may extend this exception to your version of\nthe library, but you are not obligated to do so. If you do not wish to do\nso, delete this exception statement from your version.\n"} \ No newline at end of file +{ + "key": "oracle-openjdk-classpath-exception-2.0", + "short_name": "Oracle OpenJDK classpath exception to GPL 2.0", + "name": "Oracle OpenJDK classpath exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "Oracle Corporation", + "homepage_url": "http://openjdk.java.net/legal/gplv2+ce.html", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-oracle-openjdk-exception-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-openjdk-classpath-exception-2.0" + ], + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\"CLASSPATH\" EXCEPTION TO THE GPL\nCertain source files distributed by Oracle America and/or its affiliates\nare\nsubject to the following clarification and special exception to the GPL,\nbut\nonly where Oracle has expressly included in the particular source file's\nheader\nthe words \"Oracle designates this particular file as subject to the\n\"Classpath\"\nexception as provided by Oracle in the LICENSE file that accompanied this\ncode.\"\nLinking this library statically or dynamically with other modules is making\na combined work based on this library. Thus, the terms and conditions of\nthe GNU General Public License cover the whole combination.\nAs a special exception, the copyright holders of this library give you\npermission to link this library with independent modules to produce an\nexecutable, regardless of the license terms of these independent modules,\nand to copy and distribute the resulting executable under terms of your\nchoice, provided that you also meet, for each linked independent module,\nthe terms and conditions of the license of that module. An independent\nmodule is a module which is not derived from or based on this library. If\nyou modify this library, you may extend this exception to your version of\nthe library, but you are not obligated to do so. If you do not wish to do\nso, delete this exception statement from your version.\n" +} \ No newline at end of file diff --git a/docs/oracle-otn-javase-2019.LICENSE b/docs/oracle-otn-javase-2019.LICENSE index 328de16813..e79d2843f3 100644 --- a/docs/oracle-otn-javase-2019.LICENSE +++ b/docs/oracle-otn-javase-2019.LICENSE @@ -1,3 +1,25 @@ +--- +key: oracle-otn-javase-2019 +short_name: OTN for Oracle Java SE 2019 +name: Oracle Technology Network License Agreement for Oracle Java SE +category: Proprietary Free +owner: Oracle Corporation +homepage_url: https://www.oracle.com/downloads/licenses/oracle-javase-license.html +spdx_license_key: LicenseRef-scancode-oracle-otn-javase-2019 +faq_url: https://www.oracle.com/technetwork/java/javase/overview/oracle-jdk-faqs.html +other_urls: + - https://www.oracle.com/technetwork/java/javase/terms/oaa.html + - https://www.oracle.com/downloads/licenses/javase-license1.html +ignorable_urls: + - http://oracle.com/contracts + - http://www.oracle.com/goto/opensourcecode + - http://www.oracle.com/privacy + - https://docs.oracle.com/en/java + - https://java.com/oaa + - https://oss.oracle.com/sources/ + - https://www.oracle.com/technetwork/java/javase/documentation/ +--- + Oracle Technology Network License Agreement for Oracle Java SE Oracle is willing to authorize Your access to software associated with this License Agreement (“Agreement”) only upon the condition that You accept that this Agreement governs Your use of the software. By selecting the "Accept License Agreement" button or box (or the equivalent) or installing or using the Programs, You indicate Your acceptance of this Agreement and Your agreement, as an authorized representative of Your company or organization (if being acquired for use by an entity) or as an individual, to comply with the license terms that apply to the software that You wish to download and access. If You are not willing to be bound by this Agreement, do not select the “Accept License Agreement” button or box (or the equivalent) and do not download or access the software. diff --git a/docs/oracle-otn-javase-2019.html b/docs/oracle-otn-javase-2019.html index 7635d548ff..314e4f789b 100644 --- a/docs/oracle-otn-javase-2019.html +++ b/docs/oracle-otn-javase-2019.html @@ -239,7 +239,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-otn-javase-2019.json b/docs/oracle-otn-javase-2019.json index 50ae0185bd..ae42f08405 100644 --- a/docs/oracle-otn-javase-2019.json +++ b/docs/oracle-otn-javase-2019.json @@ -1 +1,23 @@ -{"key": "oracle-otn-javase-2019", "short_name": "OTN for Oracle Java SE 2019", "name": "Oracle Technology Network License Agreement for Oracle Java SE", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "https://www.oracle.com/downloads/licenses/oracle-javase-license.html", "spdx_license_key": "LicenseRef-scancode-oracle-otn-javase-2019", "faq_url": "https://www.oracle.com/technetwork/java/javase/overview/oracle-jdk-faqs.html", "other_urls": ["https://www.oracle.com/technetwork/java/javase/terms/oaa.html", "https://www.oracle.com/downloads/licenses/javase-license1.html"], "ignorable_urls": ["http://oracle.com/contracts", "http://www.oracle.com/goto/opensourcecode", "http://www.oracle.com/privacy", "https://docs.oracle.com/en/java", "https://java.com/oaa", "https://oss.oracle.com/sources/", "https://www.oracle.com/technetwork/java/javase/documentation/"]} \ No newline at end of file +{ + "key": "oracle-otn-javase-2019", + "short_name": "OTN for Oracle Java SE 2019", + "name": "Oracle Technology Network License Agreement for Oracle Java SE", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "https://www.oracle.com/downloads/licenses/oracle-javase-license.html", + "spdx_license_key": "LicenseRef-scancode-oracle-otn-javase-2019", + "faq_url": "https://www.oracle.com/technetwork/java/javase/overview/oracle-jdk-faqs.html", + "other_urls": [ + "https://www.oracle.com/technetwork/java/javase/terms/oaa.html", + "https://www.oracle.com/downloads/licenses/javase-license1.html" + ], + "ignorable_urls": [ + "http://oracle.com/contracts", + "http://www.oracle.com/goto/opensourcecode", + "http://www.oracle.com/privacy", + "https://docs.oracle.com/en/java", + "https://java.com/oaa", + "https://oss.oracle.com/sources/", + "https://www.oracle.com/technetwork/java/javase/documentation/" + ] +} \ No newline at end of file diff --git a/docs/oracle-sql-developer.LICENSE b/docs/oracle-sql-developer.LICENSE index 0e90fe651a..1a3ddec7ea 100644 --- a/docs/oracle-sql-developer.LICENSE +++ b/docs/oracle-sql-developer.LICENSE @@ -1,3 +1,20 @@ +--- +key: oracle-sql-developer +short_name: Oracle SQL Developer License Terms +name: Oracle SQL Developer License Terms +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/licenses/sqldev-license-152021.html +spdx_license_key: LicenseRef-scancode-oracle-sql-developer +minimum_coverage: 50 +ignorable_authors: + - the OTN Program +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/products/export/index.html?content.html + - http://www.oracle.com/technetwork/indexes/documentation/index.html +--- + Oracle SQL Developer License Terms Oracle SQL Developer Data Modeler License Terms diff --git a/docs/oracle-sql-developer.html b/docs/oracle-sql-developer.html index cf8ca04bf6..99114c9b05 100644 --- a/docs/oracle-sql-developer.html +++ b/docs/oracle-sql-developer.html @@ -231,7 +231,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-sql-developer.json b/docs/oracle-sql-developer.json index c479a82030..ddc4e01d51 100644 --- a/docs/oracle-sql-developer.json +++ b/docs/oracle-sql-developer.json @@ -1 +1,18 @@ -{"key": "oracle-sql-developer", "short_name": "Oracle SQL Developer License Terms", "name": "Oracle SQL Developer License Terms", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "http://www.oracle.com/technetwork/licenses/sqldev-license-152021.html", "spdx_license_key": "LicenseRef-scancode-oracle-sql-developer", "minimum_coverage": 50, "ignorable_authors": ["the OTN Program"], "ignorable_urls": ["http://www.oracle.com/products/export", "http://www.oracle.com/products/export/index.html?content.html", "http://www.oracle.com/technetwork/indexes/documentation/index.html"]} \ No newline at end of file +{ + "key": "oracle-sql-developer", + "short_name": "Oracle SQL Developer License Terms", + "name": "Oracle SQL Developer License Terms", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "http://www.oracle.com/technetwork/licenses/sqldev-license-152021.html", + "spdx_license_key": "LicenseRef-scancode-oracle-sql-developer", + "minimum_coverage": 50, + "ignorable_authors": [ + "the OTN Program" + ], + "ignorable_urls": [ + "http://www.oracle.com/products/export", + "http://www.oracle.com/products/export/index.html?content.html", + "http://www.oracle.com/technetwork/indexes/documentation/index.html" + ] +} \ No newline at end of file diff --git a/docs/oracle-web-sites-tou.LICENSE b/docs/oracle-web-sites-tou.LICENSE index b8927fc889..1dc775e99e 100644 --- a/docs/oracle-web-sites-tou.LICENSE +++ b/docs/oracle-web-sites-tou.LICENSE @@ -1,3 +1,24 @@ +--- +key: oracle-web-sites-tou +short_name: Oracle Web Sites TOU +name: Oracle Web Sites Terms of Use +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/html/terms.html +spdx_license_key: LicenseRef-scancode-oracle-web-sites-tou +text_urls: + - http://www.oracle.com/html/terms.html +ignorable_copyrights: + - Copyright (c) 1995, 2010, Oracle and/or its affiliates +ignorable_holders: + - Oracle and/or its affiliates +ignorable_urls: + - http://www.oracle.com/html/privacy.html + - http://www.oracle.com/html/terms.html +ignorable_emails: + - trademar_us@oracle.com +--- + Oracle Web Sites Terms of Use http://www.oracle.com/html/terms.html diff --git a/docs/oracle-web-sites-tou.html b/docs/oracle-web-sites-tou.html index 047d8ac55d..9184ba4dcc 100644 --- a/docs/oracle-web-sites-tou.html +++ b/docs/oracle-web-sites-tou.html @@ -288,7 +288,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oracle-web-sites-tou.json b/docs/oracle-web-sites-tou.json index 83c69e80dc..a06cd7e8ba 100644 --- a/docs/oracle-web-sites-tou.json +++ b/docs/oracle-web-sites-tou.json @@ -1 +1,25 @@ -{"key": "oracle-web-sites-tou", "short_name": "Oracle Web Sites TOU", "name": "Oracle Web Sites Terms of Use", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "http://www.oracle.com/html/terms.html", "spdx_license_key": "LicenseRef-scancode-oracle-web-sites-tou", "text_urls": ["http://www.oracle.com/html/terms.html"], "ignorable_copyrights": ["Copyright (c) 1995, 2010, Oracle and/or its affiliates"], "ignorable_holders": ["Oracle and/or its affiliates"], "ignorable_urls": ["http://www.oracle.com/html/privacy.html", "http://www.oracle.com/html/terms.html"], "ignorable_emails": ["trademar_us@oracle.com"]} \ No newline at end of file +{ + "key": "oracle-web-sites-tou", + "short_name": "Oracle Web Sites TOU", + "name": "Oracle Web Sites Terms of Use", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "http://www.oracle.com/html/terms.html", + "spdx_license_key": "LicenseRef-scancode-oracle-web-sites-tou", + "text_urls": [ + "http://www.oracle.com/html/terms.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 1995, 2010, Oracle and/or its affiliates" + ], + "ignorable_holders": [ + "Oracle and/or its affiliates" + ], + "ignorable_urls": [ + "http://www.oracle.com/html/privacy.html", + "http://www.oracle.com/html/terms.html" + ], + "ignorable_emails": [ + "trademar_us@oracle.com" + ] +} \ No newline at end of file diff --git a/docs/oreilly-notice.LICENSE b/docs/oreilly-notice.LICENSE index 94c237dda5..1fdca469db 100644 --- a/docs/oreilly-notice.LICENSE +++ b/docs/oreilly-notice.LICENSE @@ -1,3 +1,15 @@ +--- +key: oreilly-notice +short_name: O'Reilly Code Sample Notice +name: O'Reilly Code Sample Notice +category: Permissive +owner: O'Reilly Media, Inc. +homepage_url: http://shop.oreilly.com/category/customer-service/faq-examples.do +spdx_license_key: LicenseRef-scancode-oreilly-notice +ignorable_emails: + - permissions@oreilly.com +--- + Our books are here to help you get your job done. In general, you may use the code in our books in your programs and documentation. You do not need to contact us for permission unless you're reproducing a significant portion of the code. diff --git a/docs/oreilly-notice.html b/docs/oreilly-notice.html index 16b67bac37..694ce37d9a 100644 --- a/docs/oreilly-notice.html +++ b/docs/oreilly-notice.html @@ -150,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oreilly-notice.json b/docs/oreilly-notice.json index d6c6310727..6e22a31a84 100644 --- a/docs/oreilly-notice.json +++ b/docs/oreilly-notice.json @@ -1 +1,12 @@ -{"key": "oreilly-notice", "short_name": "O'Reilly Code Sample Notice", "name": "O'Reilly Code Sample Notice", "category": "Permissive", "owner": "O'Reilly Media, Inc.", "homepage_url": "http://shop.oreilly.com/category/customer-service/faq-examples.do", "spdx_license_key": "LicenseRef-scancode-oreilly-notice", "ignorable_emails": ["permissions@oreilly.com"]} \ No newline at end of file +{ + "key": "oreilly-notice", + "short_name": "O'Reilly Code Sample Notice", + "name": "O'Reilly Code Sample Notice", + "category": "Permissive", + "owner": "O'Reilly Media, Inc.", + "homepage_url": "http://shop.oreilly.com/category/customer-service/faq-examples.do", + "spdx_license_key": "LicenseRef-scancode-oreilly-notice", + "ignorable_emails": [ + "permissions@oreilly.com" + ] +} \ No newline at end of file diff --git a/docs/oset-pl-2.1.LICENSE b/docs/oset-pl-2.1.LICENSE index f29dd5ceb3..6023d0c84e 100644 --- a/docs/oset-pl-2.1.LICENSE +++ b/docs/oset-pl-2.1.LICENSE @@ -1,3 +1,24 @@ +--- +key: oset-pl-2.1 +short_name: OSET-PL-2.1 +name: OSET Public License version 2.1 +category: Copyleft Limited +owner: OSET Foundation +homepage_url: http://www.osetfoundation.org/public-license/ +spdx_license_key: OSET-PL-2.1 +text_urls: + - http://www.osetfoundation.org/s/OPL_v21-plain.txt +osi_url: https://opensource.org/licenses/OPL-2.1 +faq_url: http://www.osetfoundation.org/public-license/ +other_urls: + - http://opensource.org/licenses/OPL-2.1 + - http://www.osetfoundation.org/public-license +ignorable_copyrights: + - (c) 2015 +ignorable_urls: + - http://www.osetfoundation.org/public-license +--- + OSET Public License (c) 2015 ALL RIGHTS RESERVED VERSION 2.1 diff --git a/docs/oset-pl-2.1.html b/docs/oset-pl-2.1.html index e4210c4c5f..aa2194683e 100644 --- a/docs/oset-pl-2.1.html +++ b/docs/oset-pl-2.1.html @@ -289,7 +289,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oset-pl-2.1.json b/docs/oset-pl-2.1.json index 0463d3c2bd..580f145ded 100644 --- a/docs/oset-pl-2.1.json +++ b/docs/oset-pl-2.1.json @@ -1 +1,24 @@ -{"key": "oset-pl-2.1", "short_name": "OSET-PL-2.1", "name": "OSET Public License version 2.1", "category": "Copyleft Limited", "owner": "OSET Foundation", "homepage_url": "http://www.osetfoundation.org/public-license/", "spdx_license_key": "OSET-PL-2.1", "text_urls": ["http://www.osetfoundation.org/s/OPL_v21-plain.txt"], "osi_url": "https://opensource.org/licenses/OPL-2.1", "faq_url": "http://www.osetfoundation.org/public-license/", "other_urls": ["http://opensource.org/licenses/OPL-2.1", "http://www.osetfoundation.org/public-license"], "ignorable_copyrights": ["(c) 2015"], "ignorable_urls": ["http://www.osetfoundation.org/public-license"]} \ No newline at end of file +{ + "key": "oset-pl-2.1", + "short_name": "OSET-PL-2.1", + "name": "OSET Public License version 2.1", + "category": "Copyleft Limited", + "owner": "OSET Foundation", + "homepage_url": "http://www.osetfoundation.org/public-license/", + "spdx_license_key": "OSET-PL-2.1", + "text_urls": [ + "http://www.osetfoundation.org/s/OPL_v21-plain.txt" + ], + "osi_url": "https://opensource.org/licenses/OPL-2.1", + "faq_url": "http://www.osetfoundation.org/public-license/", + "other_urls": [ + "http://opensource.org/licenses/OPL-2.1", + "http://www.osetfoundation.org/public-license" + ], + "ignorable_copyrights": [ + "(c) 2015" + ], + "ignorable_urls": [ + "http://www.osetfoundation.org/public-license" + ] +} \ No newline at end of file diff --git a/docs/osetpl-2.1.LICENSE b/docs/osetpl-2.1.LICENSE index e69de29bb2..8591e6171b 100644 --- a/docs/osetpl-2.1.LICENSE +++ b/docs/osetpl-2.1.LICENSE @@ -0,0 +1,124 @@ +--- +key: osetpl-2.1 +is_deprecated: yes +short_name: OSET 2.1 +name: OSET Public License v2.1 +category: Copyleft Limited +owner: OSET Foundation +homepage_url: http://www.osetfoundation.org/s/OPL_v21-plain.txt +notes: duplicate of oset-pl-2.1 +--- + +OSET Public License +(c) 2015 ALL RIGHTS RESERVED VERSION 2.1 + +THIS LICENSE DEFINES THE RIGHTS OF USE, REPRODUCTION, DISTRIBUTION, MODIFICATION, AND REDISTRIBUTION OF CERTAIN COVERED SOFTWARE (AS DEFINED BELOW) ORIGINALLY RELEASED BY THE OPEN SOURCE ELECTION TECHNOLOGY FOUNDATION (FORMERLY "THE OSDV FOUNDATION"). ANYONE WHO USES, REPRODUCES, DISTRIBUTES, MODIFIES, OR REDISTRIBUTES THE COVERED SOFTWARE, OR ANY PART THEREOF, IS BY THAT ACTION, ACCEPTING IN FULL THE TERMS CONTAINED IN THIS AGREEMENT. IF YOU DO NOT AGREE TO SUCH TERMS, YOU ARE NOT PERMITTED TO USE THE COVERED SOFTWARE. + +This license was prepared based on the Mozilla Public License ("MPL"), version 2.0. For annotation of the differences between this license and MPL 2.0, please see the OSET Foundation web site at www.OSETFoundation.org/public-license. + +The text of the license begins here: + +1. Definitions + +1.1 "Contributor" means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. +1.2 "Contributor Version" means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor’s Contribution. +1.3 "Contribution" means Covered Software of a particular Contributor. +1.4 "Covered Software" means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. +1.5 "Incompatible With Secondary Licenses" means: a. That the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or b. that the Covered Software was made available under the terms of version 1.x or earlier of the License, but not also under the terms of a Secondary License. +1.6 "Executable Form" means any form of the work other than Source Code Form. +1.7 "Larger Work" means a work that combines Covered Software with other material, in a separate file (or files) that is not Covered Software. +1.8 "License" means this document. +1.9 "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. +1.10 "Modifications" means any of the following: a. any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or b. any new file in Source Code Form that contains any Covered Software. +1.11 "Patent Claims" of a Contributor means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. +1.12 "Secondary License" means one of: the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. +1.13 "Source Code Form" means the form of the work preferred for making modifications. +1.14 "You" (or "Your") means an individual or a legal entity exercising rights under this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means: (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. + +2. License Grants and Conditions + +2.1 Grants Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: a. under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and b. under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version. + +2.2 Effective Date The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution. + +2.3 Limitations on Grant Scope The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: a. for any code that a Contributor has removed from Covered Software; or b. for infringements caused by: (i) Your and any other third party’s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or c. under Patent Claims infringed by Covered Software in the absence of its Contributions. This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4). + +2.4 Subsequent Licenses No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). + +2.5 Representation Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License. + +2.6 Fair Use This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents. + +2.7 Conditions Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. + +3. Responsibilities + +3.1 Distribution of Source Form All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You must cause any of Your Modifications to carry prominent notices stating that You changed the files. You may not attempt to alter or restrict the recipients’ rights in the Source Code Form. + +3.2 Distribution of Executable Form If You distribute Covered Software in Executable Form then: +a. such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and b. You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients’ rights in the Source Code Form under this License. + +3.3 Distribution of a Larger Work You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s). + +3.4 Notices You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies. + +3.5 Application of Additional Terms + +3.5.1 You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. +3.5.2 You may place additional conditions upon the rights granted in this License to the extent necessary due to statute, judicial order, regulation (including without limitation state and federal procurement regulation), national security, or public interest. Any such additional conditions must be clearly described in the notice provisions required under Section 3.4. Any alteration of the terms of this License will apply to all copies of the Covered Software distributed by You or by any downstream recipients that receive the Covered Software from You. + +4. Inability to Comply Due to Statute or Regulation If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation, then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the notices required under Section 3.4. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. + +5. Termination + +5.1 Failure to Comply The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60-days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30-days after Your receipt of the notice. + +5.2 Patent Infringement Claims If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate. + +5.3 Additional Compliance Terms Notwithstanding the foregoing in this Section 5, for purposes of this Section, if You breach Section 3.1 (Distribution of Source Form), Section 3.2 (Distribution of Executable Form), Section 3.3 (Distribution of a Larger Work), or Section 3.4 (Notices), then becoming compliant as described in Section 5.1 must also include, no later than 30 days after receipt by You of notice of such violation by a Contributor, making the Covered Software available in Source Code Form as required by this License on a publicly available computer network for a period of no less than three (3) years. + +5.4 Contributor Remedies If You fail to comply with the terms of this License and do not thereafter become compliant in accordance with Section 5.1 and, if applicable, Section 5.3, then each Contributor reserves its right, in addition to any other rights it may have in law or in equity, to bring an action seeking injunctive relief, or damages for willful copyright or patent infringement (including without limitation damages for unjust enrichment, where available under law), for all actions in violation of rights that would otherwise have been granted under the terms of this License. + +5.5 End User License Agreements In the event of termination under this Section 5, all end user license agreements (excluding distributors and resellers), which have been validly granted by You or Your distributors under this License prior to termination shall survive termination. + +6. Disclaimer of Warranty Covered Software is provided under this License on an "as is" basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. + +7. Limitation of Liability Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party’s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. + +8. Litigation Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party’s ability to bring cross-claims or counter-claims. + +9. Government Terms + +9.1 Commercial Item The Covered Software is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software with only those rights set forth herein. + +9.2 No Sovereign Immunity The U.S. federal government and states that use or distribute Covered Software hereby waive their sovereign immunity with respect to enforcement of the provisions of this License. + +9.3 Choice of Law and Venue + +9.3.1 If You are a government of a state of the United States, or Your use of the Covered Software is pursuant to a procurement contract with such a state government, this License shall be governed by the law of such state, excluding its conflict-of-law provisions, and the adjudication of disputes relating to this License will be subject to the exclusive jurisdiction of the state and federal courts located in such state. +9.3.2 If You are an agency of the United States federal government, or Your use of the Covered Software is pursuant to a procurement contract with such an agency, this License shall be governed by federal law for all purposes, and the adjudication of disputes relating to this License will be subject to the exclusive jurisdiction of the federal courts located in Washington, D.C. +9.3.3 You may alter the terms of this Section 9.3 for this License as described in Section 3.5.2. + +9.4 Supremacy This Section 9 is in lieu of, and supersedes, any other Federal Acquisition Regulation, Defense Federal Acquisition Regulation, or other clause or provision that addresses government rights in computer software under this License. + +10. Miscellaneous This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation, which provides that the language of a contract shall be construed against the drafter, shall not be used to construe this License against a Contributor. + +11. Versions of the License + +11.1 New Versions The Open Source Election Technology Foundation ("OSET") (formerly known as the Open Source Digital Voting Foundation) is the steward of this License. Except as provided in Section 11.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number. + +11.2 Effects of New Versions You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward. + +11.3 Modified Versions If You create software not governed by this License, and You want to create a new license for such software, You may create and use a modified version of this License if You rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License). + +11.4 Distributing Source Code Form That is Incompatible With Secondary Licenses If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. + +EXHIBIT A – Source Code Form License Notice + +This Source Code Form is subject to the terms of the OSET Public License, v.2.1 ("OSET-PL-2.1"). If a copy of the OPL was not distributed with this file, You can obtain one at: www.OSETFoundation.org/public-license. + +If it is not possible or desirable to put the Notice in a particular file, then You may include the Notice in a location (e.g., such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. You may add additional accurate notices of copyright ownership. + +EXHIBIT B - "Incompatible With Secondary License" Notice + +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the OSET Public License, v.2.1. \ No newline at end of file diff --git a/docs/osetpl-2.1.html b/docs/osetpl-2.1.html index 1089b2e1cc..311e6547e9 100644 --- a/docs/osetpl-2.1.html +++ b/docs/osetpl-2.1.html @@ -122,7 +122,119 @@
license_text
-
+
OSET Public License
+(c) 2015 ALL RIGHTS RESERVED VERSION 2.1
+
+THIS LICENSE DEFINES THE RIGHTS OF USE, REPRODUCTION, DISTRIBUTION, MODIFICATION, AND REDISTRIBUTION OF CERTAIN COVERED SOFTWARE (AS DEFINED BELOW) ORIGINALLY RELEASED BY THE OPEN SOURCE ELECTION TECHNOLOGY FOUNDATION (FORMERLY "THE OSDV FOUNDATION"). ANYONE WHO USES, REPRODUCES, DISTRIBUTES, MODIFIES, OR REDISTRIBUTES THE COVERED SOFTWARE, OR ANY PART THEREOF, IS BY THAT ACTION, ACCEPTING IN FULL THE TERMS CONTAINED IN THIS AGREEMENT. IF YOU DO NOT AGREE TO SUCH TERMS, YOU ARE NOT PERMITTED TO USE THE COVERED SOFTWARE.
+
+This license was prepared based on the Mozilla Public License ("MPL"), version 2.0. For annotation of the differences between this license and MPL 2.0, please see the OSET Foundation web site at www.OSETFoundation.org/public-license.
+
+The text of the license begins here:
+
+1. Definitions
+
+1.1 "Contributor" means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. 
+1.2 "Contributor Version" means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor’s Contribution. 
+1.3 "Contribution" means Covered Software of a particular Contributor. 
+1.4 "Covered Software" means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. 
+1.5 "Incompatible With Secondary Licenses" means:  a. That the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or  b. that the Covered Software was made available under the terms of version 1.x or earlier of the License, but not also under the terms of a Secondary License. 
+1.6 "Executable Form" means any form of the work other than Source Code Form. 
+1.7 "Larger Work" means a work that combines Covered Software with other material, in a separate file (or files) that is not Covered Software. 
+1.8 "License" means this document. 
+1.9 "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. 
+1.10 "Modifications" means any of the following:  a. any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or  b. any new file in Source Code Form that contains any Covered Software. 
+1.11 "Patent Claims" of a Contributor means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. 
+1.12 "Secondary License" means one of: the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. 
+1.13 "Source Code Form" means the form of the work preferred for making modifications. 
+1.14 "You" (or "Your") means an individual or a legal entity exercising rights under this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means: (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.
+
+2. License Grants and Conditions
+
+2.1 Grants  Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license:   a. under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and  b. under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version.
+
+2.2 Effective Date  The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution.
+
+2.3 Limitations on Grant Scope  The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor:   a. for any code that a Contributor has removed from Covered Software; or  b. for infringements caused by: (i) Your and any other third party’s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or  c. under Patent Claims infringed by Covered Software in the absence of its Contributions.   This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4).
+
+2.4 Subsequent Licenses  No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3).
+
+2.5 Representation  Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License.
+
+2.6 Fair Use  This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents.
+
+2.7 Conditions  Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1.
+
+3. Responsibilities
+
+3.1 Distribution of Source Form  All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You must cause any of Your Modifications to carry prominent notices stating that You changed the files. You may not attempt to alter or restrict the recipients’ rights in the Source Code Form.
+
+3.2 Distribution of Executable Form  If You distribute Covered Software in Executable Form then:  
+a. such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and  b. You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients’ rights in the Source Code Form under this License.
+
+3.3 Distribution of a Larger Work  You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s).
+
+3.4 Notices  You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies.
+
+3.5 Application of Additional Terms
+
+3.5.1 You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. 
+3.5.2 You may place additional conditions upon the rights granted in this License to the extent necessary due to statute, judicial order, regulation (including without limitation state and federal procurement regulation), national security, or public interest. Any such additional conditions must be clearly described in the notice provisions required under Section 3.4. Any alteration of the terms of this License will apply to all copies of the Covered Software distributed by You or by any downstream recipients that receive the Covered Software from You.
+
+4. Inability to Comply Due to Statute or Regulation If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation, then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the notices required under Section 3.4. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.
+
+5. Termination
+
+5.1 Failure to Comply  The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60-days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30-days after Your receipt of the notice.
+
+5.2 Patent Infringement Claims  If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate.
+
+5.3 Additional Compliance Terms  Notwithstanding the foregoing in this Section 5, for purposes of this Section, if You breach Section 3.1 (Distribution of Source Form), Section 3.2 (Distribution of Executable Form), Section 3.3 (Distribution of a Larger Work), or Section 3.4 (Notices), then becoming compliant as described in Section 5.1 must also include, no later than 30 days after receipt by You of notice of such violation by a Contributor, making the Covered Software available in Source Code Form as required by this License on a publicly available computer network for a period of no less than three (3) years.
+
+5.4 Contributor Remedies  If You fail to comply with the terms of this License and do not thereafter become compliant in accordance with Section 5.1 and, if applicable, Section 5.3, then each Contributor reserves its right, in addition to any other rights it may have in law or in equity, to bring an action seeking injunctive relief, or damages for willful copyright or patent infringement (including without limitation damages for unjust enrichment, where available under law), for all actions in violation of rights that would otherwise have been granted under the terms of this License.
+
+5.5 End User License Agreements  In the event of termination under this Section 5, all end user license agreements (excluding distributors and resellers), which have been validly granted by You or Your distributors under this License prior to termination shall survive termination.
+
+6. Disclaimer of Warranty Covered Software is provided under this License on an "as is" basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer.
+
+7. Limitation of Liability Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party’s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You.
+
+8. Litigation Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party’s ability to bring cross-claims or counter-claims.
+
+9. Government Terms
+
+9.1 Commercial Item  The Covered Software is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software with only those rights set forth herein.
+
+9.2 No Sovereign Immunity  The U.S. federal government and states that use or distribute Covered Software hereby waive their sovereign immunity with respect to enforcement of the provisions of this License.
+
+9.3 Choice of Law and Venue
+
+9.3.1 If You are a government of a state of the United States, or Your use of the Covered Software is pursuant to a procurement contract with such a state government, this License shall be governed by the law of such state, excluding its conflict-of-law provisions, and the adjudication of disputes relating to this License will be subject to the exclusive jurisdiction of the state and federal courts located in such state. 
+9.3.2 If You are an agency of the United States federal government, or Your use of the Covered Software is pursuant to a procurement contract with such an agency, this License shall be governed by federal law for all purposes, and the adjudication of disputes relating to this License will be subject to the exclusive jurisdiction of the federal courts located in Washington, D.C. 
+9.3.3 You may alter the terms of this Section 9.3 for this License as described in Section 3.5.2.
+
+9.4 Supremacy  This Section 9 is in lieu of, and supersedes, any other Federal Acquisition Regulation, Defense Federal Acquisition Regulation, or other clause or provision that addresses government rights in computer software under this License.
+
+10. Miscellaneous This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation, which provides that the language of a contract shall be construed against the drafter, shall not be used to construe this License against a Contributor.
+
+11. Versions of the License
+
+11.1 New Versions The Open Source Election Technology Foundation ("OSET") (formerly known as the Open Source Digital Voting Foundation) is the steward of this License. Except as provided in Section 11.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number.
+
+11.2 Effects of New Versions You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward.
+
+11.3 Modified Versions If You create software not governed by this License, and You want to create a new license for such software, You may create and use a modified version of this License if You rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License).
+
+11.4 Distributing Source Code Form That is Incompatible With Secondary Licenses If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached.
+
+EXHIBIT A – Source Code Form License Notice
+
+This Source Code Form is subject to the terms of the OSET Public License, v.2.1 ("OSET-PL-2.1"). If a copy of the OPL was not distributed with this file, You can obtain one at: www.OSETFoundation.org/public-license.
+
+If it is not possible or desirable to put the Notice in a particular file, then You may include the Notice in a location (e.g., such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. You may add additional accurate notices of copyright ownership.
+
+EXHIBIT B - "Incompatible With Secondary License" Notice
+
+This Source Code Form is "Incompatible With Secondary Licenses", as defined by the OSET Public License, v.2.1.
@@ -134,7 +246,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/osetpl-2.1.json b/docs/osetpl-2.1.json index b83e4ec1a3..84a1f0896f 100644 --- a/docs/osetpl-2.1.json +++ b/docs/osetpl-2.1.json @@ -1 +1,10 @@ -{"key": "osetpl-2.1", "is_deprecated": true, "short_name": "OSET 2.1", "name": "OSET Public License v2.1", "category": "Copyleft Limited", "owner": "OSET Foundation", "homepage_url": "http://www.osetfoundation.org/s/OPL_v21-plain.txt", "notes": "duplicate of oset-pl-2.1"} \ No newline at end of file +{ + "key": "osetpl-2.1", + "is_deprecated": true, + "short_name": "OSET 2.1", + "name": "OSET Public License v2.1", + "category": "Copyleft Limited", + "owner": "OSET Foundation", + "homepage_url": "http://www.osetfoundation.org/s/OPL_v21-plain.txt", + "notes": "duplicate of oset-pl-2.1" +} \ No newline at end of file diff --git a/docs/osf-1990.LICENSE b/docs/osf-1990.LICENSE index 90f82085e8..3af078af73 100644 --- a/docs/osf-1990.LICENSE +++ b/docs/osf-1990.LICENSE @@ -1,3 +1,15 @@ +--- +key: osf-1990 +short_name: OSF 1990 License +name: OSF 1990 License +category: Permissive +owner: Open Group +homepage_url: https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#HP_Variant +spdx_license_key: LicenseRef-scancode-osf-1990 +text_urls: + - https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#HP_Variant +--- + To anyone who acknowledges that this file is provided "AS IS" without any express or implied warranty: permission to use, copy, modify, and distribute this file diff --git a/docs/osf-1990.html b/docs/osf-1990.html index dd38270b09..4b102ad852 100644 --- a/docs/osf-1990.html +++ b/docs/osf-1990.html @@ -147,7 +147,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/osf-1990.json b/docs/osf-1990.json index 6634e8228b..12940496ae 100644 --- a/docs/osf-1990.json +++ b/docs/osf-1990.json @@ -1 +1,12 @@ -{"key": "osf-1990", "short_name": "OSF 1990 License", "name": "OSF 1990 License", "category": "Permissive", "owner": "Open Group", "homepage_url": "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#HP_Variant", "spdx_license_key": "LicenseRef-scancode-osf-1990", "text_urls": ["https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#HP_Variant"]} \ No newline at end of file +{ + "key": "osf-1990", + "short_name": "OSF 1990 License", + "name": "OSF 1990 License", + "category": "Permissive", + "owner": "Open Group", + "homepage_url": "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#HP_Variant", + "spdx_license_key": "LicenseRef-scancode-osf-1990", + "text_urls": [ + "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#HP_Variant" + ] +} \ No newline at end of file diff --git a/docs/osgi-spec-2.0.LICENSE b/docs/osgi-spec-2.0.LICENSE index 9e5c4c938f..1fb02d3f67 100644 --- a/docs/osgi-spec-2.0.LICENSE +++ b/docs/osgi-spec-2.0.LICENSE @@ -1,4 +1,14 @@ - +--- +key: osgi-spec-2.0 +short_name: OSGi Specification License 2.0 +name: OSGi Specification License Version 2.0 +category: Proprietary Free +owner: OSGi Alliance +homepage_url: https://www.osgi.org/developer/specifications/licensing/ +spdx_license_key: LicenseRef-scancode-osgi-spec-2.0 +ignorable_urls: + - http://www.osgi.org/ +--- OSGi Specification License, Version 2.0. @@ -60,4 +70,4 @@ manner, including advertising or publicity pertaining to the Specification or its contents without specific, written prior permission. Title to copyright in the Specification will at all times remain with OSGi. -No other rights are granted by implication, estoppel or otherwise. +No other rights are granted by implication, estoppel or otherwise. \ No newline at end of file diff --git a/docs/osgi-spec-2.0.html b/docs/osgi-spec-2.0.html index e8abb09e4d..1c8b2ead70 100644 --- a/docs/osgi-spec-2.0.html +++ b/docs/osgi-spec-2.0.html @@ -124,9 +124,7 @@
license_text
-

-
-OSGi Specification License, Version 2.0.
+    
OSGi Specification License, Version 2.0.
 
 License Grant
 
@@ -186,8 +184,7 @@
 its contents without specific, written prior permission. Title to copyright in
 the Specification will at all times remain with OSGi.
 
-No other rights are granted by implication, estoppel or otherwise.
-
+No other rights are granted by implication, estoppel or otherwise.
@@ -199,7 +196,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/osgi-spec-2.0.json b/docs/osgi-spec-2.0.json index d847125aed..fbf98b17dd 100644 --- a/docs/osgi-spec-2.0.json +++ b/docs/osgi-spec-2.0.json @@ -1 +1,12 @@ -{"key": "osgi-spec-2.0", "short_name": "OSGi Specification License 2.0", "name": "OSGi Specification License Version 2.0", "category": "Proprietary Free", "owner": "OSGi Alliance", "homepage_url": "https://www.osgi.org/developer/specifications/licensing/", "spdx_license_key": "LicenseRef-scancode-osgi-spec-2.0", "ignorable_urls": ["http://www.osgi.org/"]} \ No newline at end of file +{ + "key": "osgi-spec-2.0", + "short_name": "OSGi Specification License 2.0", + "name": "OSGi Specification License Version 2.0", + "category": "Proprietary Free", + "owner": "OSGi Alliance", + "homepage_url": "https://www.osgi.org/developer/specifications/licensing/", + "spdx_license_key": "LicenseRef-scancode-osgi-spec-2.0", + "ignorable_urls": [ + "http://www.osgi.org/" + ] +} \ No newline at end of file diff --git a/docs/osl-1.0.LICENSE b/docs/osl-1.0.LICENSE index 8d64fcf4ee..86de0a9bc2 100644 --- a/docs/osl-1.0.LICENSE +++ b/docs/osl-1.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: osl-1.0 +short_name: OSL 1.0 +name: Open Software License 1.0 +category: Copyleft +owner: Lawrence Rosen +homepage_url: http://www.opensource.org/licenses/osl-1.0.txt +notes: | + Per SPDX.org, this license was OSI certified. This license has been + superseded. +spdx_license_key: OSL-1.0 +osi_license_key: OSL-1.0 +text_urls: + - http://www.opensource.org/licenses/osl-1.0.txt +osi_url: http://www.opensource.org/licenses/osl-1.0.txt +other_urls: + - http://opensource.org/licenses/OSL-1.0 + - http://www.gnu.org/licenses/license-list.html#OSL + - https://opensource.org/licenses/OSL-1.0 +ignorable_copyrights: + - Copyright (c) 2002 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + Open Software License, v 1.0 The Open Software License diff --git a/docs/osl-1.0.html b/docs/osl-1.0.html index 7c8ae897f3..e8a702c641 100644 --- a/docs/osl-1.0.html +++ b/docs/osl-1.0.html @@ -349,7 +349,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/osl-1.0.json b/docs/osl-1.0.json index cf2a4a9814..8b2c63b508 100644 --- a/docs/osl-1.0.json +++ b/docs/osl-1.0.json @@ -1 +1,26 @@ -{"key": "osl-1.0", "short_name": "OSL 1.0", "name": "Open Software License 1.0", "category": "Copyleft", "owner": "Lawrence Rosen", "homepage_url": "http://www.opensource.org/licenses/osl-1.0.txt", "notes": "Per SPDX.org, this license was OSI certified. This license has been\nsuperseded.\n", "spdx_license_key": "OSL-1.0", "osi_license_key": "OSL-1.0", "text_urls": ["http://www.opensource.org/licenses/osl-1.0.txt"], "osi_url": "http://www.opensource.org/licenses/osl-1.0.txt", "other_urls": ["http://opensource.org/licenses/OSL-1.0", "http://www.gnu.org/licenses/license-list.html#OSL", "https://opensource.org/licenses/OSL-1.0"], "ignorable_copyrights": ["Copyright (c) 2002 Lawrence E. Rosen"], "ignorable_holders": ["Lawrence E. Rosen"]} \ No newline at end of file +{ + "key": "osl-1.0", + "short_name": "OSL 1.0", + "name": "Open Software License 1.0", + "category": "Copyleft", + "owner": "Lawrence Rosen", + "homepage_url": "http://www.opensource.org/licenses/osl-1.0.txt", + "notes": "Per SPDX.org, this license was OSI certified. This license has been\nsuperseded.\n", + "spdx_license_key": "OSL-1.0", + "osi_license_key": "OSL-1.0", + "text_urls": [ + "http://www.opensource.org/licenses/osl-1.0.txt" + ], + "osi_url": "http://www.opensource.org/licenses/osl-1.0.txt", + "other_urls": [ + "http://opensource.org/licenses/OSL-1.0", + "http://www.gnu.org/licenses/license-list.html#OSL", + "https://opensource.org/licenses/OSL-1.0" + ], + "ignorable_copyrights": [ + "Copyright (c) 2002 Lawrence E. Rosen" + ], + "ignorable_holders": [ + "Lawrence E. Rosen" + ] +} \ No newline at end of file diff --git a/docs/osl-1.1.LICENSE b/docs/osl-1.1.LICENSE index 10a62c8293..c1dc942005 100644 --- a/docs/osl-1.1.LICENSE +++ b/docs/osl-1.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: osl-1.1 +short_name: OSL 1.1 +name: Open Software License 1.1 +category: Copyleft +owner: Lawrence Rosen +homepage_url: https://fedoraproject.org/wiki/Licensing:OSL1.1?rd=Licensing/OSL1.1 +spdx_license_key: OSL-1.1 +other_urls: + - http://www.gnu.org/licenses/license-list.html#OSL + - https://fedoraproject.org/wiki/Licensing/OSL1.1 +ignorable_copyrights: + - Copyright (c) 2002 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + The Open Software License v. 1.1 This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: diff --git a/docs/osl-1.1.html b/docs/osl-1.1.html index 726ebbde3e..5171bdb190 100644 --- a/docs/osl-1.1.html +++ b/docs/osl-1.1.html @@ -199,7 +199,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/osl-1.1.json b/docs/osl-1.1.json index d81bd8b96d..ce4db1c433 100644 --- a/docs/osl-1.1.json +++ b/docs/osl-1.1.json @@ -1 +1,19 @@ -{"key": "osl-1.1", "short_name": "OSL 1.1", "name": "Open Software License 1.1", "category": "Copyleft", "owner": "Lawrence Rosen", "homepage_url": "https://fedoraproject.org/wiki/Licensing:OSL1.1?rd=Licensing/OSL1.1", "spdx_license_key": "OSL-1.1", "other_urls": ["http://www.gnu.org/licenses/license-list.html#OSL", "https://fedoraproject.org/wiki/Licensing/OSL1.1"], "ignorable_copyrights": ["Copyright (c) 2002 Lawrence E. Rosen"], "ignorable_holders": ["Lawrence E. Rosen"]} \ No newline at end of file +{ + "key": "osl-1.1", + "short_name": "OSL 1.1", + "name": "Open Software License 1.1", + "category": "Copyleft", + "owner": "Lawrence Rosen", + "homepage_url": "https://fedoraproject.org/wiki/Licensing:OSL1.1?rd=Licensing/OSL1.1", + "spdx_license_key": "OSL-1.1", + "other_urls": [ + "http://www.gnu.org/licenses/license-list.html#OSL", + "https://fedoraproject.org/wiki/Licensing/OSL1.1" + ], + "ignorable_copyrights": [ + "Copyright (c) 2002 Lawrence E. Rosen" + ], + "ignorable_holders": [ + "Lawrence E. Rosen" + ] +} \ No newline at end of file diff --git a/docs/osl-2.0.LICENSE b/docs/osl-2.0.LICENSE index 840c32d644..ad2ebd958c 100644 --- a/docs/osl-2.0.LICENSE +++ b/docs/osl-2.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: osl-2.0 +short_name: OSL 2.0 +name: Open Software License 2.0 +category: Copyleft +owner: Lawrence Rosen +homepage_url: http://www.nexb.com/license/LICENSE-OSL-2.0.html +spdx_license_key: OSL-2.0 +text_urls: + - http://www.nexb.com/license/LICENSE-OSL-2.0.html +osi_url: http://www.opensource.org/licenses/osl-2.0.php +other_urls: + - http://web.archive.org/web/20041020171434/http://www.rosenlaw.com/osl2.0.html + - http://www.gnu.org/licenses/license-list.html#OSL +ignorable_copyrights: + - Copyright (c) 2003 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + Open Software License v. 2.0 This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: diff --git a/docs/osl-2.0.html b/docs/osl-2.0.html index 53ed26ec54..6d35def8a3 100644 --- a/docs/osl-2.0.html +++ b/docs/osl-2.0.html @@ -214,7 +214,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/osl-2.0.json b/docs/osl-2.0.json index 3acf656899..7b9b7412a2 100644 --- a/docs/osl-2.0.json +++ b/docs/osl-2.0.json @@ -1 +1,23 @@ -{"key": "osl-2.0", "short_name": "OSL 2.0", "name": "Open Software License 2.0", "category": "Copyleft", "owner": "Lawrence Rosen", "homepage_url": "http://www.nexb.com/license/LICENSE-OSL-2.0.html", "spdx_license_key": "OSL-2.0", "text_urls": ["http://www.nexb.com/license/LICENSE-OSL-2.0.html"], "osi_url": "http://www.opensource.org/licenses/osl-2.0.php", "other_urls": ["http://web.archive.org/web/20041020171434/http://www.rosenlaw.com/osl2.0.html", "http://www.gnu.org/licenses/license-list.html#OSL"], "ignorable_copyrights": ["Copyright (c) 2003 Lawrence E. Rosen"], "ignorable_holders": ["Lawrence E. Rosen"]} \ No newline at end of file +{ + "key": "osl-2.0", + "short_name": "OSL 2.0", + "name": "Open Software License 2.0", + "category": "Copyleft", + "owner": "Lawrence Rosen", + "homepage_url": "http://www.nexb.com/license/LICENSE-OSL-2.0.html", + "spdx_license_key": "OSL-2.0", + "text_urls": [ + "http://www.nexb.com/license/LICENSE-OSL-2.0.html" + ], + "osi_url": "http://www.opensource.org/licenses/osl-2.0.php", + "other_urls": [ + "http://web.archive.org/web/20041020171434/http://www.rosenlaw.com/osl2.0.html", + "http://www.gnu.org/licenses/license-list.html#OSL" + ], + "ignorable_copyrights": [ + "Copyright (c) 2003 Lawrence E. Rosen" + ], + "ignorable_holders": [ + "Lawrence E. Rosen" + ] +} \ No newline at end of file diff --git a/docs/osl-2.1.LICENSE b/docs/osl-2.1.LICENSE index 42a42421bf..da80a3d14f 100644 --- a/docs/osl-2.1.LICENSE +++ b/docs/osl-2.1.LICENSE @@ -1,3 +1,29 @@ +--- +key: osl-2.1 +short_name: OSL 2.1 +name: Open Software License 2.1 +category: Copyleft +owner: Lawrence Rosen +homepage_url: http://www.nexb.com/license/LICENSE-OSL-2.1.html +notes: | + Per SPDX.org, same as version 2.0 of this license except with changes to + section 10 +spdx_license_key: OSL-2.1 +osi_license_key: OSL-2.1 +text_urls: + - http://web.archive.org/web/20050212003940/http://www.rosenlaw.com/osl21.htm +osi_url: http://www.opensource.org/licenses/osl-2.1.php +other_urls: + - http://opensource.org/licenses/OSL-2.1 + - http://www.gnu.org/licenses/license-list.html#OSL + - http://www.nexb.com/license/LICENSE-OSL-2.1.html + - https://opensource.org/licenses/OSL-2.1 +ignorable_copyrights: + - Copyright (c) 2003-2004 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + Open Software License v. 2.1 This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: diff --git a/docs/osl-2.1.html b/docs/osl-2.1.html index 43886000e5..e13e208d9a 100644 --- a/docs/osl-2.1.html +++ b/docs/osl-2.1.html @@ -228,7 +228,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/osl-2.1.json b/docs/osl-2.1.json index 328e34fdee..66833af6d9 100644 --- a/docs/osl-2.1.json +++ b/docs/osl-2.1.json @@ -1 +1,27 @@ -{"key": "osl-2.1", "short_name": "OSL 2.1", "name": "Open Software License 2.1", "category": "Copyleft", "owner": "Lawrence Rosen", "homepage_url": "http://www.nexb.com/license/LICENSE-OSL-2.1.html", "notes": "Per SPDX.org, same as version 2.0 of this license except with changes to\nsection 10\n", "spdx_license_key": "OSL-2.1", "osi_license_key": "OSL-2.1", "text_urls": ["http://web.archive.org/web/20050212003940/http://www.rosenlaw.com/osl21.htm"], "osi_url": "http://www.opensource.org/licenses/osl-2.1.php", "other_urls": ["http://opensource.org/licenses/OSL-2.1", "http://www.gnu.org/licenses/license-list.html#OSL", "http://www.nexb.com/license/LICENSE-OSL-2.1.html", "https://opensource.org/licenses/OSL-2.1"], "ignorable_copyrights": ["Copyright (c) 2003-2004 Lawrence E. Rosen"], "ignorable_holders": ["Lawrence E. Rosen"]} \ No newline at end of file +{ + "key": "osl-2.1", + "short_name": "OSL 2.1", + "name": "Open Software License 2.1", + "category": "Copyleft", + "owner": "Lawrence Rosen", + "homepage_url": "http://www.nexb.com/license/LICENSE-OSL-2.1.html", + "notes": "Per SPDX.org, same as version 2.0 of this license except with changes to\nsection 10\n", + "spdx_license_key": "OSL-2.1", + "osi_license_key": "OSL-2.1", + "text_urls": [ + "http://web.archive.org/web/20050212003940/http://www.rosenlaw.com/osl21.htm" + ], + "osi_url": "http://www.opensource.org/licenses/osl-2.1.php", + "other_urls": [ + "http://opensource.org/licenses/OSL-2.1", + "http://www.gnu.org/licenses/license-list.html#OSL", + "http://www.nexb.com/license/LICENSE-OSL-2.1.html", + "https://opensource.org/licenses/OSL-2.1" + ], + "ignorable_copyrights": [ + "Copyright (c) 2003-2004 Lawrence E. Rosen" + ], + "ignorable_holders": [ + "Lawrence E. Rosen" + ] +} \ No newline at end of file diff --git a/docs/osl-3.0.LICENSE b/docs/osl-3.0.LICENSE index 0b9dc99638..ca199b9a5d 100644 --- a/docs/osl-3.0.LICENSE +++ b/docs/osl-3.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: osl-3.0 +short_name: OSL 3.0 +name: Open Software License 3.0 +category: Copyleft +owner: Lawrence Rosen +homepage_url: http://www.opensource.org/licenses/osl-3.0.php +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: OSL-3.0 +osi_license_key: OSL-3.0 +text_urls: + - http://www.opensource.org/licenses/osl-3.0.php +osi_url: http://opensource.org/licenses/osl-3.0.php +other_urls: + - http://www.gnu.org/licenses/license-list.html#OSL + - http://www.opensource.org/licenses/OSL-3.0 + - http://www.rosenlaw.com/OSL3.0.htm + - https://opensource.org/licenses/OSL-3.0 + - https://web.archive.org/web/20120101081418/http://rosenlaw.com:80/OSL3.0.htm +ignorable_copyrights: + - Copyright (c) 2005 Lawrence Rosen +ignorable_holders: + - Lawrence Rosen +--- + Open Software License ("OSL") v. 3.0 This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: diff --git a/docs/osl-3.0.html b/docs/osl-3.0.html index da309ba3a2..6a9138fd02 100644 --- a/docs/osl-3.0.html +++ b/docs/osl-3.0.html @@ -230,7 +230,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/osl-3.0.json b/docs/osl-3.0.json index ddb181c3b4..673e4111e8 100644 --- a/docs/osl-3.0.json +++ b/docs/osl-3.0.json @@ -1 +1,28 @@ -{"key": "osl-3.0", "short_name": "OSL 3.0", "name": "Open Software License 3.0", "category": "Copyleft", "owner": "Lawrence Rosen", "homepage_url": "http://www.opensource.org/licenses/osl-3.0.php", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "OSL-3.0", "osi_license_key": "OSL-3.0", "text_urls": ["http://www.opensource.org/licenses/osl-3.0.php"], "osi_url": "http://opensource.org/licenses/osl-3.0.php", "other_urls": ["http://www.gnu.org/licenses/license-list.html#OSL", "http://www.opensource.org/licenses/OSL-3.0", "http://www.rosenlaw.com/OSL3.0.htm", "https://opensource.org/licenses/OSL-3.0", "https://web.archive.org/web/20120101081418/http://rosenlaw.com:80/OSL3.0.htm"], "ignorable_copyrights": ["Copyright (c) 2005 Lawrence Rosen"], "ignorable_holders": ["Lawrence Rosen"]} \ No newline at end of file +{ + "key": "osl-3.0", + "short_name": "OSL 3.0", + "name": "Open Software License 3.0", + "category": "Copyleft", + "owner": "Lawrence Rosen", + "homepage_url": "http://www.opensource.org/licenses/osl-3.0.php", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "OSL-3.0", + "osi_license_key": "OSL-3.0", + "text_urls": [ + "http://www.opensource.org/licenses/osl-3.0.php" + ], + "osi_url": "http://opensource.org/licenses/osl-3.0.php", + "other_urls": [ + "http://www.gnu.org/licenses/license-list.html#OSL", + "http://www.opensource.org/licenses/OSL-3.0", + "http://www.rosenlaw.com/OSL3.0.htm", + "https://opensource.org/licenses/OSL-3.0", + "https://web.archive.org/web/20120101081418/http://rosenlaw.com:80/OSL3.0.htm" + ], + "ignorable_copyrights": [ + "Copyright (c) 2005 Lawrence Rosen" + ], + "ignorable_holders": [ + "Lawrence Rosen" + ] +} \ No newline at end of file diff --git a/docs/ossn-3.0.LICENSE b/docs/ossn-3.0.LICENSE index 8c0e1a5d88..7305d19859 100644 --- a/docs/ossn-3.0.LICENSE +++ b/docs/ossn-3.0.LICENSE @@ -1,3 +1,22 @@ +--- +key: ossn-3.0 +short_name: OSSN-3.0 +name: Open Source Social Network License v3.0 +category: Proprietary Free +owner: Open Source Social Network +homepage_url: http://www.opensource-socialnetwork.org/licence/ +spdx_license_key: LicenseRef-scancode-ossn-3.0 +text_urls: + - https://github.com/opensource-socialnetwork/opensource-socialnetwork/blob/v4.x/LICENSE.txt +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 2014-2017 OPEN SOURCE SOCIAL NETWORK. +ignorable_holders: + - OPEN SOURCE SOCIAL NETWORK. +ignorable_urls: + - https://www.opensource-socialnetwork.org/ +--- + OPEN SOURCE SOCIAL NETWORK LICENSE (OSSN LICENSE) v3.0 Copyright (C) 2014-2017 OPEN SOURCE SOCIAL NETWORK. @@ -38,4 +57,4 @@ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY C 8. Interpretation of Sections 6 and 7 -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. +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. \ No newline at end of file diff --git a/docs/ossn-3.0.html b/docs/ossn-3.0.html index 364d6d1f9e..9071144c88 100644 --- a/docs/ossn-3.0.html +++ b/docs/ossn-3.0.html @@ -198,8 +198,7 @@ 8. Interpretation of Sections 6 and 7 -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. - +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.
@@ -211,7 +210,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ossn-3.0.json b/docs/ossn-3.0.json index 59c3fcd59c..e457f5777e 100644 --- a/docs/ossn-3.0.json +++ b/docs/ossn-3.0.json @@ -1 +1,22 @@ -{"key": "ossn-3.0", "short_name": "OSSN-3.0", "name": "Open Source Social Network License v3.0", "category": "Proprietary Free", "owner": "Open Source Social Network", "homepage_url": "http://www.opensource-socialnetwork.org/licence/", "spdx_license_key": "LicenseRef-scancode-ossn-3.0", "text_urls": ["https://github.com/opensource-socialnetwork/opensource-socialnetwork/blob/v4.x/LICENSE.txt"], "minimum_coverage": 90, "ignorable_copyrights": ["Copyright (c) 2014-2017 OPEN SOURCE SOCIAL NETWORK. "], "ignorable_holders": ["OPEN SOURCE SOCIAL NETWORK."], "ignorable_urls": ["https://www.opensource-socialnetwork.org/"]} \ No newline at end of file +{ + "key": "ossn-3.0", + "short_name": "OSSN-3.0", + "name": "Open Source Social Network License v3.0", + "category": "Proprietary Free", + "owner": "Open Source Social Network", + "homepage_url": "http://www.opensource-socialnetwork.org/licence/", + "spdx_license_key": "LicenseRef-scancode-ossn-3.0", + "text_urls": [ + "https://github.com/opensource-socialnetwork/opensource-socialnetwork/blob/v4.x/LICENSE.txt" + ], + "minimum_coverage": 90, + "ignorable_copyrights": [ + "Copyright (c) 2014-2017 OPEN SOURCE SOCIAL NETWORK. " + ], + "ignorable_holders": [ + "OPEN SOURCE SOCIAL NETWORK." + ], + "ignorable_urls": [ + "https://www.opensource-socialnetwork.org/" + ] +} \ No newline at end of file diff --git a/docs/oswego-concurrent.LICENSE b/docs/oswego-concurrent.LICENSE index b93f9af9e5..c599bb0cc0 100644 --- a/docs/oswego-concurrent.LICENSE +++ b/docs/oswego-concurrent.LICENSE @@ -1,3 +1,24 @@ +--- +key: oswego-concurrent +short_name: Oswego Concurrent License +name: Oswego Concurrent License +category: Permissive +owner: Oswego SUNY +homepage_url: http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html +spdx_license_key: LicenseRef-scancode-oswego-concurrent +text_urls: + - http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html + - http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/sun-u.c.license.pdf +faq_url: http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html +ignorable_copyrights: + - Copyright (c) 1994-2000 Sun Microsystems, Inc. +ignorable_holders: + - Sun Microsystems, Inc. +ignorable_urls: + - http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html + - http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/sun-u.c.license.pdf +--- + http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html All classes are released to the public domain and may be used for any purpose diff --git a/docs/oswego-concurrent.html b/docs/oswego-concurrent.html index 1a3df63075..20120b30cb 100644 --- a/docs/oswego-concurrent.html +++ b/docs/oswego-concurrent.html @@ -221,7 +221,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oswego-concurrent.json b/docs/oswego-concurrent.json index b4c7fdd324..0a103cae83 100644 --- a/docs/oswego-concurrent.json +++ b/docs/oswego-concurrent.json @@ -1 +1,24 @@ -{"key": "oswego-concurrent", "short_name": "Oswego Concurrent License", "name": "Oswego Concurrent License", "category": "Permissive", "owner": "Oswego SUNY", "homepage_url": "http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html", "spdx_license_key": "LicenseRef-scancode-oswego-concurrent", "text_urls": ["http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html", "http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/sun-u.c.license.pdf"], "faq_url": "http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html", "ignorable_copyrights": ["Copyright (c) 1994-2000 Sun Microsystems, Inc."], "ignorable_holders": ["Sun Microsystems, Inc."], "ignorable_urls": ["http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html", "http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/sun-u.c.license.pdf"]} \ No newline at end of file +{ + "key": "oswego-concurrent", + "short_name": "Oswego Concurrent License", + "name": "Oswego Concurrent License", + "category": "Permissive", + "owner": "Oswego SUNY", + "homepage_url": "http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html", + "spdx_license_key": "LicenseRef-scancode-oswego-concurrent", + "text_urls": [ + "http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html", + "http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/sun-u.c.license.pdf" + ], + "faq_url": "http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html", + "ignorable_copyrights": [ + "Copyright (c) 1994-2000 Sun Microsystems, Inc." + ], + "ignorable_holders": [ + "Sun Microsystems, Inc." + ], + "ignorable_urls": [ + "http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html", + "http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/sun-u.c.license.pdf" + ] +} \ No newline at end of file diff --git a/docs/other-copyleft.LICENSE b/docs/other-copyleft.LICENSE index 406ad086b5..ec7cae8e9b 100644 --- a/docs/other-copyleft.LICENSE +++ b/docs/other-copyleft.LICENSE @@ -1,4 +1,17 @@ +--- +key: other-copyleft +short_name: Other Copyleft Licenses +name: Other Copyleft Licenses +category: Copyleft +owner: nexB +notes: | + this is a catch all and ellipsis to deal with some cases when a large + number of ancillary yet similar licenses may be reported as one. +is_generic: yes +spdx_license_key: LicenseRef-scancode-other-copyleft +--- + This component contains third-party subcomponents licensed under one or more copyleft licenses in the style of GPL, LGPL, MPL or EPL. The license obligations of these subcomponents may apply when a subcomponent -depending on how the subcomponent is used and/or redistributed. +depending on how the subcomponent is used and/or redistributed. \ No newline at end of file diff --git a/docs/other-copyleft.html b/docs/other-copyleft.html index b56989631b..237c7bb641 100644 --- a/docs/other-copyleft.html +++ b/docs/other-copyleft.html @@ -127,8 +127,7 @@
This component contains third-party subcomponents licensed under
 one or more copyleft licenses in the style of GPL, LGPL, MPL or EPL.
 The license obligations of these subcomponents may apply when a subcomponent
-depending on how the subcomponent is used and/or redistributed.
-
+depending on how the subcomponent is used and/or redistributed.
@@ -140,7 +139,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/other-copyleft.json b/docs/other-copyleft.json index 9a66693b5d..e90da6fb05 100644 --- a/docs/other-copyleft.json +++ b/docs/other-copyleft.json @@ -1 +1,10 @@ -{"key": "other-copyleft", "short_name": "Other Copyleft Licenses", "name": "Other Copyleft Licenses", "category": "Copyleft", "owner": "nexB", "notes": "this is a catch all and ellipsis to deal with some cases when a large\nnumber of ancillary yet similar licenses may be reported as one.\n", "is_generic": true, "spdx_license_key": "LicenseRef-scancode-other-copyleft"} \ No newline at end of file +{ + "key": "other-copyleft", + "short_name": "Other Copyleft Licenses", + "name": "Other Copyleft Licenses", + "category": "Copyleft", + "owner": "nexB", + "notes": "this is a catch all and ellipsis to deal with some cases when a large\nnumber of ancillary yet similar licenses may be reported as one.\n", + "is_generic": true, + "spdx_license_key": "LicenseRef-scancode-other-copyleft" +} \ No newline at end of file diff --git a/docs/other-permissive.LICENSE b/docs/other-permissive.LICENSE index 3866d32d2e..ac05c92806 100644 --- a/docs/other-permissive.LICENSE +++ b/docs/other-permissive.LICENSE @@ -1,2 +1,15 @@ +--- +key: other-permissive +short_name: Other Permissive Licenses +name: Other Permissive Licenses +category: Permissive +owner: nexB +notes: | + this is a catch all and ellipsis to deal with some cases when a large + number of ancillary yet similar licenses may be reported as one. +is_generic: yes +spdx_license_key: LicenseRef-scancode-other-permissive +--- + This component contains multiple third-party subcomponents licensed under permissive licenses in the style of MIT, BSD, X11, and/or Apache. \ No newline at end of file diff --git a/docs/other-permissive.html b/docs/other-permissive.html index 83243298a8..6e75278ef5 100644 --- a/docs/other-permissive.html +++ b/docs/other-permissive.html @@ -137,7 +137,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/other-permissive.json b/docs/other-permissive.json index db7b500d4a..8a4984f969 100644 --- a/docs/other-permissive.json +++ b/docs/other-permissive.json @@ -1 +1,10 @@ -{"key": "other-permissive", "short_name": "Other Permissive Licenses", "name": "Other Permissive Licenses", "category": "Permissive", "owner": "nexB", "notes": "this is a catch all and ellipsis to deal with some cases when a large\nnumber of ancillary yet similar licenses may be reported as one.\n", "is_generic": true, "spdx_license_key": "LicenseRef-scancode-other-permissive"} \ No newline at end of file +{ + "key": "other-permissive", + "short_name": "Other Permissive Licenses", + "name": "Other Permissive Licenses", + "category": "Permissive", + "owner": "nexB", + "notes": "this is a catch all and ellipsis to deal with some cases when a large\nnumber of ancillary yet similar licenses may be reported as one.\n", + "is_generic": true, + "spdx_license_key": "LicenseRef-scancode-other-permissive" +} \ No newline at end of file diff --git a/docs/otn-dev-dist-2009.LICENSE b/docs/otn-dev-dist-2009.LICENSE index 839fe74d3d..8870e7a3da 100644 --- a/docs/otn-dev-dist-2009.LICENSE +++ b/docs/otn-dev-dist-2009.LICENSE @@ -1,3 +1,20 @@ +--- +key: otn-dev-dist-2009 +short_name: OTN License 2009 +name: Oracle Technology Network Free Developer License 2009 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/testcontent/standard-license-088383.html +spdx_license_key: LicenseRef-scancode-otn-dev-dist-2009 +minimum_coverage: 50 +ignorable_authors: + - the OTN Program +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/products/export/index.html?content.html + - http://www.oracle.com/technetwork/documentation/index.html +--- + Oracle Technology Network Developer License Terms Export Controls on the Programs diff --git a/docs/otn-dev-dist-2009.html b/docs/otn-dev-dist-2009.html index 97d156faf4..4fcfae012e 100644 --- a/docs/otn-dev-dist-2009.html +++ b/docs/otn-dev-dist-2009.html @@ -230,7 +230,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/otn-dev-dist-2009.json b/docs/otn-dev-dist-2009.json index 158007d391..f6083947f5 100644 --- a/docs/otn-dev-dist-2009.json +++ b/docs/otn-dev-dist-2009.json @@ -1 +1,18 @@ -{"key": "otn-dev-dist-2009", "short_name": "OTN License 2009", "name": "Oracle Technology Network Free Developer License 2009", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "http://www.oracle.com/technetwork/testcontent/standard-license-088383.html", "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2009", "minimum_coverage": 50, "ignorable_authors": ["the OTN Program"], "ignorable_urls": ["http://www.oracle.com/products/export", "http://www.oracle.com/products/export/index.html?content.html", "http://www.oracle.com/technetwork/documentation/index.html"]} \ No newline at end of file +{ + "key": "otn-dev-dist-2009", + "short_name": "OTN License 2009", + "name": "Oracle Technology Network Free Developer License 2009", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "http://www.oracle.com/technetwork/testcontent/standard-license-088383.html", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2009", + "minimum_coverage": 50, + "ignorable_authors": [ + "the OTN Program" + ], + "ignorable_urls": [ + "http://www.oracle.com/products/export", + "http://www.oracle.com/products/export/index.html?content.html", + "http://www.oracle.com/technetwork/documentation/index.html" + ] +} \ No newline at end of file diff --git a/docs/otn-dev-dist-2014.LICENSE b/docs/otn-dev-dist-2014.LICENSE index c4ed3e253e..0053c2fd43 100644 --- a/docs/otn-dev-dist-2014.LICENSE +++ b/docs/otn-dev-dist-2014.LICENSE @@ -1,3 +1,18 @@ +--- +key: otn-dev-dist-2014 +short_name: OTN License 2014 +name: Oracle Technology Network Free Developer License 2014 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/licenses/wls-dev-license-1703567.html +spdx_license_key: LicenseRef-scancode-otn-dev-dist-2014 +minimum_coverage: 50 +ignorable_authors: + - the OTN Program +ignorable_urls: + - http://www.oracle.com/technetwork/indexes/documentation/index.html +--- + Oracle Technology Network Free Developer License Terms Export Controls on the Programs diff --git a/docs/otn-dev-dist-2014.html b/docs/otn-dev-dist-2014.html index 16c9cfaa2f..294e3c9ac8 100644 --- a/docs/otn-dev-dist-2014.html +++ b/docs/otn-dev-dist-2014.html @@ -234,7 +234,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/otn-dev-dist-2014.json b/docs/otn-dev-dist-2014.json index 85705a2153..395bf61213 100644 --- a/docs/otn-dev-dist-2014.json +++ b/docs/otn-dev-dist-2014.json @@ -1 +1,16 @@ -{"key": "otn-dev-dist-2014", "short_name": "OTN License 2014", "name": "Oracle Technology Network Free Developer License 2014", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "http://www.oracle.com/technetwork/licenses/wls-dev-license-1703567.html", "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2014", "minimum_coverage": 50, "ignorable_authors": ["the OTN Program"], "ignorable_urls": ["http://www.oracle.com/technetwork/indexes/documentation/index.html"]} \ No newline at end of file +{ + "key": "otn-dev-dist-2014", + "short_name": "OTN License 2014", + "name": "Oracle Technology Network Free Developer License 2014", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "http://www.oracle.com/technetwork/licenses/wls-dev-license-1703567.html", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2014", + "minimum_coverage": 50, + "ignorable_authors": [ + "the OTN Program" + ], + "ignorable_urls": [ + "http://www.oracle.com/technetwork/indexes/documentation/index.html" + ] +} \ No newline at end of file diff --git a/docs/otn-dev-dist-2016.LICENSE b/docs/otn-dev-dist-2016.LICENSE index 23ec445dc8..716deb19ca 100644 --- a/docs/otn-dev-dist-2016.LICENSE +++ b/docs/otn-dev-dist-2016.LICENSE @@ -1,3 +1,18 @@ +--- +key: otn-dev-dist-2016 +short_name: OTN License 2016 +name: Oracle Technology Network License Agreement 2016 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/licenses/distribution-license-152002.html +spdx_license_key: LicenseRef-scancode-otn-dev-dist-2016 +ignorable_urls: + - http://www.oracle.com/documentation + - http://www.oracle.com/goto/opensourcecode + - http://www.oracle.com/privacy + - https://oss.oracle.com/sources/ +--- + Oracle Technology Network License Agreement Oracle is willing to authorize Your access to software associated with this License Agreement ("Agreement") only upon the condition that You accept that this Agreement governs Your use of the software. By selecting the "Accept License Agreement" button or box (or the equivalent) or installing or using the Programs You indicate Your acceptance of this Agreement and Your agreement, as an authorized representative of Your company or organization (if being acquired for use by an entity) or as an individual, to comply with the license terms that apply to the software that You wish to download and access. If You are not willing to be bound by this Agreement, do not select the "Accept License Agreement" button or box (or the equivalent) and do not download or access the software. diff --git a/docs/otn-dev-dist-2016.html b/docs/otn-dev-dist-2016.html index f58d8184e0..f40c4a1134 100644 --- a/docs/otn-dev-dist-2016.html +++ b/docs/otn-dev-dist-2016.html @@ -212,7 +212,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/otn-dev-dist-2016.json b/docs/otn-dev-dist-2016.json index aac6a40a03..17c9cba231 100644 --- a/docs/otn-dev-dist-2016.json +++ b/docs/otn-dev-dist-2016.json @@ -1 +1,15 @@ -{"key": "otn-dev-dist-2016", "short_name": "OTN License 2016", "name": "Oracle Technology Network License Agreement 2016", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "http://www.oracle.com/technetwork/licenses/distribution-license-152002.html", "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2016", "ignorable_urls": ["http://www.oracle.com/documentation", "http://www.oracle.com/goto/opensourcecode", "http://www.oracle.com/privacy", "https://oss.oracle.com/sources/"]} \ No newline at end of file +{ + "key": "otn-dev-dist-2016", + "short_name": "OTN License 2016", + "name": "Oracle Technology Network License Agreement 2016", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "http://www.oracle.com/technetwork/licenses/distribution-license-152002.html", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2016", + "ignorable_urls": [ + "http://www.oracle.com/documentation", + "http://www.oracle.com/goto/opensourcecode", + "http://www.oracle.com/privacy", + "https://oss.oracle.com/sources/" + ] +} \ No newline at end of file diff --git a/docs/otn-dev-dist.LICENSE b/docs/otn-dev-dist.LICENSE index 93f9e43062..7d03faa441 100644 --- a/docs/otn-dev-dist.LICENSE +++ b/docs/otn-dev-dist.LICENSE @@ -1,3 +1,22 @@ +--- +key: otn-dev-dist +short_name: OTN License +name: Oracle Technology Network Development and Distribution License Terms +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/licenses/distribution-license-152002.html +spdx_license_key: LicenseRef-scancode-otn-dev-dist +text_urls: + - http://www.oracle.com/technetwork/licenses/distribution-license-152002.html +ignorable_authors: + - the OTN Program +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/products/export/index.html?content.html + - http://www.oracle.com/technetwork/indexes/documentation/index.html + - http://www.oracle.com/technetwork/licenses/distribution-license-152002.html +--- + Oracle Technology Network Development and Distribution License Terms http://www.oracle.com/technetwork/licenses/distribution-license-152002.html diff --git a/docs/otn-dev-dist.html b/docs/otn-dev-dist.html index 819c59afd7..4afb4a13ea 100644 --- a/docs/otn-dev-dist.html +++ b/docs/otn-dev-dist.html @@ -220,7 +220,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/otn-dev-dist.json b/docs/otn-dev-dist.json index fa17abf0bd..ec24918fd1 100644 --- a/docs/otn-dev-dist.json +++ b/docs/otn-dev-dist.json @@ -1 +1,21 @@ -{"key": "otn-dev-dist", "short_name": "OTN License", "name": "Oracle Technology Network Development and Distribution License Terms", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "http://www.oracle.com/technetwork/licenses/distribution-license-152002.html", "spdx_license_key": "LicenseRef-scancode-otn-dev-dist", "text_urls": ["http://www.oracle.com/technetwork/licenses/distribution-license-152002.html"], "ignorable_authors": ["the OTN Program"], "ignorable_urls": ["http://www.oracle.com/products/export", "http://www.oracle.com/products/export/index.html?content.html", "http://www.oracle.com/technetwork/indexes/documentation/index.html", "http://www.oracle.com/technetwork/licenses/distribution-license-152002.html"]} \ No newline at end of file +{ + "key": "otn-dev-dist", + "short_name": "OTN License", + "name": "Oracle Technology Network Development and Distribution License Terms", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "http://www.oracle.com/technetwork/licenses/distribution-license-152002.html", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist", + "text_urls": [ + "http://www.oracle.com/technetwork/licenses/distribution-license-152002.html" + ], + "ignorable_authors": [ + "the OTN Program" + ], + "ignorable_urls": [ + "http://www.oracle.com/products/export", + "http://www.oracle.com/products/export/index.html?content.html", + "http://www.oracle.com/technetwork/indexes/documentation/index.html", + "http://www.oracle.com/technetwork/licenses/distribution-license-152002.html" + ] +} \ No newline at end of file diff --git a/docs/otn-early-adopter-2018.LICENSE b/docs/otn-early-adopter-2018.LICENSE index 38d081bba7..c85b8e2e39 100644 --- a/docs/otn-early-adopter-2018.LICENSE +++ b/docs/otn-early-adopter-2018.LICENSE @@ -1,3 +1,20 @@ +--- +key: otn-early-adopter-2018 +short_name: OTN Early Adopter 2018 +name: OTN Early Adopter Development License 2018 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: https://www.oracle.com/downloads/licenses/solaris-ea-license.html +spdx_license_key: LicenseRef-scancode-otn-early-adopter-2018 +other_urls: + - https://www.theregister.com/2022/03/04/solaris_common_build_environments_free/ +ignorable_urls: + - http://www.oracle.com/goto/opensourcecode + - http://www.oracle.com/legal/privacy/privacy-policy.html + - https://docs.oracle.com/en/ + - https://oss.oracle.com/sources/ +--- + Oracle Technology Network Early Adopter License Agreement for Oracle Solaris Oracle is willing to authorize Your access to Oracle Solaris pre-GA software under this License Agreement (“Agreement”) only upon the condition that You accept that this Agreement governs Your use of the pre-GA Oracle Solaris and any updated versions of such pre-GA software. By selecting the “Accept License Agreement” button or box (or the equivalent) or installing or using the Programs You indicate Your acceptance of this Agreement and Your agreement, as an authorized representative of Your company or organization (if being acquired for use by an entity) or as an individual, to comply with the license terms that apply to the software that You wish to download and access. If You are not willing to be bound by this Agreement, do not select the “Accept License Agreement” button or box (or the equivalent) and do not download or access the software. diff --git a/docs/otn-early-adopter-2018.html b/docs/otn-early-adopter-2018.html index d407cbd600..15b267abc3 100644 --- a/docs/otn-early-adopter-2018.html +++ b/docs/otn-early-adopter-2018.html @@ -241,7 +241,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/otn-early-adopter-2018.json b/docs/otn-early-adopter-2018.json index b6502bcf61..d4ad02c28f 100644 --- a/docs/otn-early-adopter-2018.json +++ b/docs/otn-early-adopter-2018.json @@ -1 +1,18 @@ -{"key": "otn-early-adopter-2018", "short_name": "OTN Early Adopter 2018", "name": "OTN Early Adopter Development License 2018", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "https://www.oracle.com/downloads/licenses/solaris-ea-license.html", "spdx_license_key": "LicenseRef-scancode-otn-early-adopter-2018", "other_urls": ["https://www.theregister.com/2022/03/04/solaris_common_build_environments_free/"], "ignorable_urls": ["http://www.oracle.com/goto/opensourcecode", "http://www.oracle.com/legal/privacy/privacy-policy.html", "https://docs.oracle.com/en/", "https://oss.oracle.com/sources/"]} \ No newline at end of file +{ + "key": "otn-early-adopter-2018", + "short_name": "OTN Early Adopter 2018", + "name": "OTN Early Adopter Development License 2018", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "https://www.oracle.com/downloads/licenses/solaris-ea-license.html", + "spdx_license_key": "LicenseRef-scancode-otn-early-adopter-2018", + "other_urls": [ + "https://www.theregister.com/2022/03/04/solaris_common_build_environments_free/" + ], + "ignorable_urls": [ + "http://www.oracle.com/goto/opensourcecode", + "http://www.oracle.com/legal/privacy/privacy-policy.html", + "https://docs.oracle.com/en/", + "https://oss.oracle.com/sources/" + ] +} \ No newline at end of file diff --git a/docs/otn-early-adopter-development.LICENSE b/docs/otn-early-adopter-development.LICENSE index 97a5d1f98b..159c6dc20e 100644 --- a/docs/otn-early-adopter-development.LICENSE +++ b/docs/otn-early-adopter-development.LICENSE @@ -1,3 +1,19 @@ +--- +key: otn-early-adopter-development +short_name: OTN Early Adopter Development License +name: OTN Early Adopter Development License Agreement +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/licenses/ea-license-noexhibits-1938914.html +spdx_license_key: LicenseRef-scancode-otn-early-adopter-development +text_urls: + - http://www.oracle.com/technetwork/licenses/ea-license-noexhibits-1938914.html +ignorable_authors: + - the OTN Program +ignorable_urls: + - http://www.oracle.com/us/legal/privacy/index.html +--- + Oracle Technology Network Early Adopter Development License Agreement EXPORT CONTROLS diff --git a/docs/otn-early-adopter-development.html b/docs/otn-early-adopter-development.html index 3eab9d9055..c1627a6156 100644 --- a/docs/otn-early-adopter-development.html +++ b/docs/otn-early-adopter-development.html @@ -253,7 +253,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/otn-early-adopter-development.json b/docs/otn-early-adopter-development.json index f722dd9f00..ca56572450 100644 --- a/docs/otn-early-adopter-development.json +++ b/docs/otn-early-adopter-development.json @@ -1 +1,18 @@ -{"key": "otn-early-adopter-development", "short_name": "OTN Early Adopter Development License", "name": "OTN Early Adopter Development License Agreement", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "http://www.oracle.com/technetwork/licenses/ea-license-noexhibits-1938914.html", "spdx_license_key": "LicenseRef-scancode-otn-early-adopter-development", "text_urls": ["http://www.oracle.com/technetwork/licenses/ea-license-noexhibits-1938914.html"], "ignorable_authors": ["the OTN Program"], "ignorable_urls": ["http://www.oracle.com/us/legal/privacy/index.html"]} \ No newline at end of file +{ + "key": "otn-early-adopter-development", + "short_name": "OTN Early Adopter Development License", + "name": "OTN Early Adopter Development License Agreement", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "http://www.oracle.com/technetwork/licenses/ea-license-noexhibits-1938914.html", + "spdx_license_key": "LicenseRef-scancode-otn-early-adopter-development", + "text_urls": [ + "http://www.oracle.com/technetwork/licenses/ea-license-noexhibits-1938914.html" + ], + "ignorable_authors": [ + "the OTN Program" + ], + "ignorable_urls": [ + "http://www.oracle.com/us/legal/privacy/index.html" + ] +} \ No newline at end of file diff --git a/docs/otn-standard-2014-09.LICENSE b/docs/otn-standard-2014-09.LICENSE index f511fd8e6b..a01b905f78 100644 --- a/docs/otn-standard-2014-09.LICENSE +++ b/docs/otn-standard-2014-09.LICENSE @@ -1,4 +1,17 @@ - +--- +key: otn-standard-2014-09 +short_name: OTN License 2014-09 +name: Oracle Technology Network License Agreement 2014-09 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: https://www.oracle.com/technetwork/licenses/standard-license-152015.html +spdx_license_key: LicenseRef-scancode-otn-standard-2014-09 +ignorable_urls: + - http://www.oracle.com/documentation + - http://www.oracle.com/goto/opensourcecode + - http://www.oracle.com/privacy + - https://oss.oracle.com/sources/ +--- Oracle Technology Network License Agreement @@ -71,4 +84,4 @@ Redwood City, CA 94065 Oracle Employees : Under no circumstances are Oracle Employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, failure to comply with this policy could result in disciplinary action up to and including termination. -Last updated: 09 September 2014 +Last updated: 09 September 2014 \ No newline at end of file diff --git a/docs/otn-standard-2014-09.html b/docs/otn-standard-2014-09.html index 690f631cce..57dd2a0f19 100644 --- a/docs/otn-standard-2014-09.html +++ b/docs/otn-standard-2014-09.html @@ -124,9 +124,7 @@
license_text
-

-
-Oracle Technology Network License Agreement
+    
Oracle Technology Network License Agreement
 
 Oracle is willing to authorize Your access to software associated with this License Agreement (“Agreement”) only upon the condition that You accept that this Agreement governs Your use of the software. By selecting the “Accept License Agreement” button or box (or the equivalent) or installing or using the Programs You indicate Your acceptance of this Agreement and Your agreement, as an authorized representative of Your company or organization (if being acquired for use by an entity) or as an individual, to comply with the license terms that apply to the software that You wish to download and access. If You are not willing to be bound by this Agreement, do not select the “Accept License Agreement” button or box (or the equivalent) and do not download or access the software.
 
@@ -197,8 +195,7 @@
 
 Oracle Employees : Under no circumstances are Oracle Employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, failure to comply with this policy could result in disciplinary action up to and including termination.
 
-Last updated: 09 September 2014
-
+Last updated: 09 September 2014
@@ -210,7 +207,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/otn-standard-2014-09.json b/docs/otn-standard-2014-09.json index 59fd7f1f27..6deb2a9706 100644 --- a/docs/otn-standard-2014-09.json +++ b/docs/otn-standard-2014-09.json @@ -1 +1,15 @@ -{"key": "otn-standard-2014-09", "short_name": "OTN License 2014-09", "name": "Oracle Technology Network License Agreement 2014-09", "category": "Proprietary Free", "owner": "Oracle Corporation", "homepage_url": "https://www.oracle.com/technetwork/licenses/standard-license-152015.html", "spdx_license_key": "LicenseRef-scancode-otn-standard-2014-09", "ignorable_urls": ["http://www.oracle.com/documentation", "http://www.oracle.com/goto/opensourcecode", "http://www.oracle.com/privacy", "https://oss.oracle.com/sources/"]} \ No newline at end of file +{ + "key": "otn-standard-2014-09", + "short_name": "OTN License 2014-09", + "name": "Oracle Technology Network License Agreement 2014-09", + "category": "Proprietary Free", + "owner": "Oracle Corporation", + "homepage_url": "https://www.oracle.com/technetwork/licenses/standard-license-152015.html", + "spdx_license_key": "LicenseRef-scancode-otn-standard-2014-09", + "ignorable_urls": [ + "http://www.oracle.com/documentation", + "http://www.oracle.com/goto/opensourcecode", + "http://www.oracle.com/privacy", + "https://oss.oracle.com/sources/" + ] +} \ No newline at end of file diff --git a/docs/owal-1.0.LICENSE b/docs/owal-1.0.LICENSE index 42f621f148..612ed9cd3a 100644 --- a/docs/owal-1.0.LICENSE +++ b/docs/owal-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: owal-1.0 +short_name: Opera Web Applications License 1.0 +name: Opera Web Applications License v1.0 +category: Proprietary Free +owner: Opera Software ASA +spdx_license_key: LicenseRef-scancode-owal-1.0 +minimum_coverage: 50 +ignorable_copyrights: + - (c) Copyright 2006 Opera Software ASA. +ignorable_holders: + - Opera Software ASA. +--- + OPERA Web Applications License Version 1.0 © Copyright 2006 Opera Software ASA. All rights reserved. OPERA SOFTWARE ASA ("OPERA") IS WILLING TO PERMIT USE OF THIS SOFTWARE diff --git a/docs/owal-1.0.html b/docs/owal-1.0.html index 0ff8df0036..900e30e028 100644 --- a/docs/owal-1.0.html +++ b/docs/owal-1.0.html @@ -300,7 +300,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/owal-1.0.json b/docs/owal-1.0.json index 2eb0e9a711..7d9e478758 100644 --- a/docs/owal-1.0.json +++ b/docs/owal-1.0.json @@ -1 +1,15 @@ -{"key": "owal-1.0", "short_name": "Opera Web Applications License 1.0", "name": "Opera Web Applications License v1.0", "category": "Proprietary Free", "owner": "Opera Software ASA", "spdx_license_key": "LicenseRef-scancode-owal-1.0", "minimum_coverage": 50, "ignorable_copyrights": ["(c) Copyright 2006 Opera Software ASA."], "ignorable_holders": ["Opera Software ASA."]} \ No newline at end of file +{ + "key": "owal-1.0", + "short_name": "Opera Web Applications License 1.0", + "name": "Opera Web Applications License v1.0", + "category": "Proprietary Free", + "owner": "Opera Software ASA", + "spdx_license_key": "LicenseRef-scancode-owal-1.0", + "minimum_coverage": 50, + "ignorable_copyrights": [ + "(c) Copyright 2006 Opera Software ASA." + ], + "ignorable_holders": [ + "Opera Software ASA." + ] +} \ No newline at end of file diff --git a/docs/owf-cla-1.0-copyright-patent.LICENSE b/docs/owf-cla-1.0-copyright-patent.LICENSE index ebe6359561..d9366d0b8a 100644 --- a/docs/owf-cla-1.0-copyright-patent.LICENSE +++ b/docs/owf-cla-1.0-copyright-patent.LICENSE @@ -1,3 +1,14 @@ +--- +key: owf-cla-1.0-copyright-patent +short_name: OWF CLA 1.0 - Copyright and Patent +name: OWF Contributor License Agreement 1.0 - Copyright and Patent +category: CLA +owner: Open Web Foundation +homepage_url: https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owf-contributor-license-agreement-1-0-copyright-and-patent +spdx_license_key: LicenseRef-scancode-owf-cla-1.0-copyright-patent +faq_url: https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq +--- + OWF Contributor License Agreement 1.0 - Copyright and Patent Open Web Foundation Contributor License Agreement (CLA 1.0) diff --git a/docs/owf-cla-1.0-copyright-patent.html b/docs/owf-cla-1.0-copyright-patent.html index 90926f5da8..c9bed2ee64 100644 --- a/docs/owf-cla-1.0-copyright-patent.html +++ b/docs/owf-cla-1.0-copyright-patent.html @@ -88,7 +88,7 @@
category
- Patent License + CLA
@@ -197,7 +197,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/owf-cla-1.0-copyright-patent.json b/docs/owf-cla-1.0-copyright-patent.json index 8d8bc73c66..6956e936f3 100644 --- a/docs/owf-cla-1.0-copyright-patent.json +++ b/docs/owf-cla-1.0-copyright-patent.json @@ -1 +1,10 @@ -{"key": "owf-cla-1.0-copyright-patent", "short_name": "OWF CLA 1.0 - Copyright and Patent", "name": "OWF Contributor License Agreement 1.0 - Copyright and Patent", "category": "Patent License", "owner": "Open Web Foundation", "homepage_url": "https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owf-contributor-license-agreement-1-0-copyright-and-patent", "spdx_license_key": "LicenseRef-scancode-owf-cla-1.0-copyright-patent", "faq_url": "https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq"} \ No newline at end of file +{ + "key": "owf-cla-1.0-copyright-patent", + "short_name": "OWF CLA 1.0 - Copyright and Patent", + "name": "OWF Contributor License Agreement 1.0 - Copyright and Patent", + "category": "CLA", + "owner": "Open Web Foundation", + "homepage_url": "https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owf-contributor-license-agreement-1-0-copyright-and-patent", + "spdx_license_key": "LicenseRef-scancode-owf-cla-1.0-copyright-patent", + "faq_url": "https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq" +} \ No newline at end of file diff --git a/docs/owf-cla-1.0-copyright-patent.yml b/docs/owf-cla-1.0-copyright-patent.yml index edc3d41aad..86c22f03c4 100644 --- a/docs/owf-cla-1.0-copyright-patent.yml +++ b/docs/owf-cla-1.0-copyright-patent.yml @@ -1,7 +1,7 @@ key: owf-cla-1.0-copyright-patent short_name: OWF CLA 1.0 - Copyright and Patent name: OWF Contributor License Agreement 1.0 - Copyright and Patent -category: Patent License +category: CLA owner: Open Web Foundation homepage_url: https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owf-contributor-license-agreement-1-0-copyright-and-patent spdx_license_key: LicenseRef-scancode-owf-cla-1.0-copyright-patent diff --git a/docs/owf-cla-1.0-copyright.LICENSE b/docs/owf-cla-1.0-copyright.LICENSE index 043d3d4f72..dad4b03ce8 100644 --- a/docs/owf-cla-1.0-copyright.LICENSE +++ b/docs/owf-cla-1.0-copyright.LICENSE @@ -1,3 +1,18 @@ +--- +key: owf-cla-1.0-copyright +short_name: OWF CLA 1.0 - Copyright +name: OWF Contributor License Agreement 1.0 - Copyright +category: CLA +owner: Open Web Foundation +homepage_url: https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owf-contributor-license-agreement-1-0-copyright +spdx_license_key: LicenseRef-scancode-owf-cla-1.0-copyright +faq_url: https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq +ignorable_copyrights: + - Copyright Open Web Foundation +ignorable_holders: + - Open Web Foundation +--- + OWF Contributor License Agreement 1.0 - Copyright Open Web Foundation Contributor License Agreement (CLA 1.0) diff --git a/docs/owf-cla-1.0-copyright.html b/docs/owf-cla-1.0-copyright.html index 683738fee1..4d6fba7a88 100644 --- a/docs/owf-cla-1.0-copyright.html +++ b/docs/owf-cla-1.0-copyright.html @@ -88,7 +88,7 @@
category
- Permissive + CLA
@@ -187,7 +187,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/owf-cla-1.0-copyright.json b/docs/owf-cla-1.0-copyright.json index a4199b7b7f..3af339bf0f 100644 --- a/docs/owf-cla-1.0-copyright.json +++ b/docs/owf-cla-1.0-copyright.json @@ -1 +1,16 @@ -{"key": "owf-cla-1.0-copyright", "short_name": "OWF CLA 1.0 - Copyright", "name": "OWF Contributor License Agreement 1.0 - Copyright", "category": "Permissive", "owner": "Open Web Foundation", "homepage_url": "https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owf-contributor-license-agreement-1-0-copyright", "spdx_license_key": "LicenseRef-scancode-owf-cla-1.0-copyright", "faq_url": "https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq", "ignorable_copyrights": ["Copyright Open Web Foundation"], "ignorable_holders": ["Open Web Foundation"]} \ No newline at end of file +{ + "key": "owf-cla-1.0-copyright", + "short_name": "OWF CLA 1.0 - Copyright", + "name": "OWF Contributor License Agreement 1.0 - Copyright", + "category": "CLA", + "owner": "Open Web Foundation", + "homepage_url": "https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owf-contributor-license-agreement-1-0-copyright", + "spdx_license_key": "LicenseRef-scancode-owf-cla-1.0-copyright", + "faq_url": "https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq", + "ignorable_copyrights": [ + "Copyright Open Web Foundation" + ], + "ignorable_holders": [ + "Open Web Foundation" + ] +} \ No newline at end of file diff --git a/docs/owf-cla-1.0-copyright.yml b/docs/owf-cla-1.0-copyright.yml index 5fcd1d8216..e36e0c0e1f 100644 --- a/docs/owf-cla-1.0-copyright.yml +++ b/docs/owf-cla-1.0-copyright.yml @@ -1,7 +1,7 @@ key: owf-cla-1.0-copyright short_name: OWF CLA 1.0 - Copyright name: OWF Contributor License Agreement 1.0 - Copyright -category: Permissive +category: CLA owner: Open Web Foundation homepage_url: https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owf-contributor-license-agreement-1-0-copyright spdx_license_key: LicenseRef-scancode-owf-cla-1.0-copyright diff --git a/docs/owfa-1-0-patent-only.LICENSE b/docs/owfa-1-0-patent-only.LICENSE index b6a69a5987..c75a7d7858 100644 --- a/docs/owfa-1-0-patent-only.LICENSE +++ b/docs/owfa-1-0-patent-only.LICENSE @@ -1,3 +1,14 @@ +--- +key: owfa-1-0-patent-only +short_name: OWFa 1.0 - Patent Only +name: OWFa 1.0 - Patent Only +category: Patent License +owner: Open Web Foundation +homepage_url: https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0-patent-only +spdx_license_key: LicenseRef-scancode-owfa-1.0-patent-only +faq_url: https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq +--- + OWFa 1.0 - Patent Only Open Web Foundation Final Specification Agreement (OWFa 1.0) diff --git a/docs/owfa-1-0-patent-only.html b/docs/owfa-1-0-patent-only.html index 31717e145b..c6d2ba997b 100644 --- a/docs/owfa-1-0-patent-only.html +++ b/docs/owfa-1-0-patent-only.html @@ -185,7 +185,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/owfa-1-0-patent-only.json b/docs/owfa-1-0-patent-only.json index 0bac818269..85e90f4d5f 100644 --- a/docs/owfa-1-0-patent-only.json +++ b/docs/owfa-1-0-patent-only.json @@ -1 +1,10 @@ -{"key": "owfa-1-0-patent-only", "short_name": "OWFa 1.0 - Patent Only", "name": "OWFa 1.0 - Patent Only", "category": "Patent License", "owner": "Open Web Foundation", "homepage_url": "https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0-patent-only", "spdx_license_key": "LicenseRef-scancode-owfa-1.0-patent-only", "faq_url": "https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq"} \ No newline at end of file +{ + "key": "owfa-1-0-patent-only", + "short_name": "OWFa 1.0 - Patent Only", + "name": "OWFa 1.0 - Patent Only", + "category": "Patent License", + "owner": "Open Web Foundation", + "homepage_url": "https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0-patent-only", + "spdx_license_key": "LicenseRef-scancode-owfa-1.0-patent-only", + "faq_url": "https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq" +} \ No newline at end of file diff --git a/docs/owfa-1.0.LICENSE b/docs/owfa-1.0.LICENSE index eeb9336651..c26d0bdb48 100644 --- a/docs/owfa-1.0.LICENSE +++ b/docs/owfa-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: owfa-1.0 +short_name: OWFa 1.0 - Patent and Copyright Grants +name: OWFa 1.0 - Patent and Copyright Grants +category: Patent License +owner: Open Web Foundation +homepage_url: https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0 +spdx_license_key: LicenseRef-scancode-owfa-1.0 +text_urls: + - http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0 +faq_url: https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq +--- + OWFa 1.0 Open Web Foundation Final Specification Agreement (OWFa 1.0) diff --git a/docs/owfa-1.0.html b/docs/owfa-1.0.html index 956d22f90e..c663931f26 100644 --- a/docs/owfa-1.0.html +++ b/docs/owfa-1.0.html @@ -200,7 +200,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/owfa-1.0.json b/docs/owfa-1.0.json index acdcb34daf..193976f106 100644 --- a/docs/owfa-1.0.json +++ b/docs/owfa-1.0.json @@ -1 +1,13 @@ -{"key": "owfa-1.0", "short_name": "OWFa 1.0 - Patent and Copyright Grants", "name": "OWFa 1.0 - Patent and Copyright Grants", "category": "Patent License", "owner": "Open Web Foundation", "homepage_url": "https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0", "spdx_license_key": "LicenseRef-scancode-owfa-1.0", "text_urls": ["http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0"], "faq_url": "https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq"} \ No newline at end of file +{ + "key": "owfa-1.0", + "short_name": "OWFa 1.0 - Patent and Copyright Grants", + "name": "OWFa 1.0 - Patent and Copyright Grants", + "category": "Patent License", + "owner": "Open Web Foundation", + "homepage_url": "https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0", + "spdx_license_key": "LicenseRef-scancode-owfa-1.0", + "text_urls": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0" + ], + "faq_url": "https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq" +} \ No newline at end of file diff --git a/docs/owtchart.LICENSE b/docs/owtchart.LICENSE index 1f3c5a5fc7..f1b534974f 100644 --- a/docs/owtchart.LICENSE +++ b/docs/owtchart.LICENSE @@ -1,3 +1,32 @@ +--- +key: owtchart +short_name: OWTChart License +name: OWTChart License +category: Permissive +owner: Unspecified +notes: composite +spdx_license_key: LicenseRef-scancode-owtchart +minimum_coverage: 85 +ignorable_copyrights: + - Copyright (c) 1998, 1999, Daniel Morissette + - Portions copyright 1994, 1995, 1996, 1997, 1998, by Cold Spring Harbor Laboratory + - Portions copyright 1996, 1997, 1998, by Boutell.Com, Inc. + - copyright 1990, 1991, 1993, by David Koblas (koblas@netcom.com) + - copyright 1998, by Hutchison Avenue Software Corporation +ignorable_holders: + - Boutell.Com, Inc. + - Cold Spring Harbor Laboratory + - Daniel Morissette + - David Koblas + - Hutchison Avenue Software Corporation +ignorable_authors: + - Daniel Morissette (danmo@videotron.ca) +ignorable_emails: + - brv@fred.net + - danmo@videotron.ca + - koblas@netcom.com +--- + OWTChart License Copyright and License Terms diff --git a/docs/owtchart.html b/docs/owtchart.html index c17a5025d6..05d1bea8a6 100644 --- a/docs/owtchart.html +++ b/docs/owtchart.html @@ -234,7 +234,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/owtchart.json b/docs/owtchart.json index 38d8d7ecb6..34577a30b6 100644 --- a/docs/owtchart.json +++ b/docs/owtchart.json @@ -1 +1,32 @@ -{"key": "owtchart", "short_name": "OWTChart License", "name": "OWTChart License", "category": "Permissive", "owner": "Unspecified", "notes": "composite", "spdx_license_key": "LicenseRef-scancode-owtchart", "minimum_coverage": 85, "ignorable_copyrights": ["Copyright (c) 1998, 1999, Daniel Morissette", "Portions copyright 1994, 1995, 1996, 1997, 1998, by Cold Spring Harbor Laboratory", "Portions copyright 1996, 1997, 1998, by Boutell.Com, Inc.", "copyright 1990, 1991, 1993, by David Koblas (koblas@netcom.com)", "copyright 1998, by Hutchison Avenue Software Corporation"], "ignorable_holders": ["Boutell.Com, Inc.", "Cold Spring Harbor Laboratory", "Daniel Morissette", "David Koblas", "Hutchison Avenue Software Corporation"], "ignorable_authors": ["Daniel Morissette (danmo@videotron.ca)"], "ignorable_emails": ["brv@fred.net", "danmo@videotron.ca", "koblas@netcom.com"]} \ No newline at end of file +{ + "key": "owtchart", + "short_name": "OWTChart License", + "name": "OWTChart License", + "category": "Permissive", + "owner": "Unspecified", + "notes": "composite", + "spdx_license_key": "LicenseRef-scancode-owtchart", + "minimum_coverage": 85, + "ignorable_copyrights": [ + "Copyright (c) 1998, 1999, Daniel Morissette", + "Portions copyright 1994, 1995, 1996, 1997, 1998, by Cold Spring Harbor Laboratory", + "Portions copyright 1996, 1997, 1998, by Boutell.Com, Inc.", + "copyright 1990, 1991, 1993, by David Koblas (koblas@netcom.com)", + "copyright 1998, by Hutchison Avenue Software Corporation" + ], + "ignorable_holders": [ + "Boutell.Com, Inc.", + "Cold Spring Harbor Laboratory", + "Daniel Morissette", + "David Koblas", + "Hutchison Avenue Software Corporation" + ], + "ignorable_authors": [ + "Daniel Morissette (danmo@videotron.ca)" + ], + "ignorable_emails": [ + "brv@fred.net", + "danmo@videotron.ca", + "koblas@netcom.com" + ] +} \ No newline at end of file diff --git a/docs/oxygen-xml-webhelp-eula.LICENSE b/docs/oxygen-xml-webhelp-eula.LICENSE index 0b3d982bb4..a223f5a3d9 100644 --- a/docs/oxygen-xml-webhelp-eula.LICENSE +++ b/docs/oxygen-xml-webhelp-eula.LICENSE @@ -1,3 +1,20 @@ +--- +key: oxygen-xml-webhelp-eula +short_name: Oxygen XML WebHelp EULA +name: Oxygen XML WebHelp End-User License Agreement +category: Commercial +owner: Syncro Soft +homepage_url: https://www.oxygenxml.com/eula_webhelp.html +spdx_license_key: LicenseRef-scancode-oxygen-xml-webhelp-eula +ignorable_urls: + - http://www.oxygenxml.com/ + - http://www.oxygenxml.com/privacy_policy.html + - http://www.oxygenxml.com/support.html + - http://www.oxygenxml.com/thirdparty/index.html +ignorable_emails: + - support@oxygenxml.com +--- + Oxygen XML WebHelp license IMPORTANT:THIS SOFTWARE END USER LICENSE AGREEMENT ("EULA") IS A LEGAL AGREEMENT BETWEEN YOU (EITHER AN INDIVIDUAL OR, IF PURCHASED OR OTHERWISE ACQUIRED BY OR FOR AN ENTITY, A SINGLE LEGAL ENTITY) AND SYNCRO. READ IT CAREFULLY BEFORE COMPLETING THE INSTALLATION PROCESS AND USING THIS SOFTWARE. IT PROVIDES A LICENSE TO USE THIS SOFTWARE AND CONTAINS WARRANTY INFORMATION AND LIABILITY DISCLAIMERS. BY DOWNLOADING OR INSTALLING THE SOFTWARE YOU ARE INDICATING YOUR ASSENT TO THE TERMS OF THIS LICENSE. IF YOU DO NOT AGREE TO ALL OF THE FOLLOWING TERMS, DO NOT DOWNLOAD OR INSTALL THE SOFTWARE OR DISCONTINUE USE IMMEDIATELY AND DESTROY ALL COPIES IN YOUR POSSESSION. YOU ALSO ACCEPT AND ASSENT TO THE SYNCRO PRIVACY POLICY LOCATED AT http://www.oxygenxml.com/privacy_policy.html AND YOU AGREE TO RECEIVE NOTICES FROM SYNCRO ELECTRONICALLY. diff --git a/docs/oxygen-xml-webhelp-eula.html b/docs/oxygen-xml-webhelp-eula.html index 632ab2062d..6f276aca79 100644 --- a/docs/oxygen-xml-webhelp-eula.html +++ b/docs/oxygen-xml-webhelp-eula.html @@ -212,7 +212,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/oxygen-xml-webhelp-eula.json b/docs/oxygen-xml-webhelp-eula.json index e767a30687..59380a2f3e 100644 --- a/docs/oxygen-xml-webhelp-eula.json +++ b/docs/oxygen-xml-webhelp-eula.json @@ -1 +1,18 @@ -{"key": "oxygen-xml-webhelp-eula", "short_name": "Oxygen XML WebHelp EULA", "name": "Oxygen XML WebHelp End-User License Agreement", "category": "Commercial", "owner": "Syncro Soft", "homepage_url": "https://www.oxygenxml.com/eula_webhelp.html", "spdx_license_key": "LicenseRef-scancode-oxygen-xml-webhelp-eula", "ignorable_urls": ["http://www.oxygenxml.com/", "http://www.oxygenxml.com/privacy_policy.html", "http://www.oxygenxml.com/support.html", "http://www.oxygenxml.com/thirdparty/index.html"], "ignorable_emails": ["support@oxygenxml.com"]} \ No newline at end of file +{ + "key": "oxygen-xml-webhelp-eula", + "short_name": "Oxygen XML WebHelp EULA", + "name": "Oxygen XML WebHelp End-User License Agreement", + "category": "Commercial", + "owner": "Syncro Soft", + "homepage_url": "https://www.oxygenxml.com/eula_webhelp.html", + "spdx_license_key": "LicenseRef-scancode-oxygen-xml-webhelp-eula", + "ignorable_urls": [ + "http://www.oxygenxml.com/", + "http://www.oxygenxml.com/privacy_policy.html", + "http://www.oxygenxml.com/support.html", + "http://www.oxygenxml.com/thirdparty/index.html" + ], + "ignorable_emails": [ + "support@oxygenxml.com" + ] +} \ No newline at end of file diff --git a/docs/ozplb-1.0.LICENSE b/docs/ozplb-1.0.LICENSE index 1287270002..e99ce522bb 100644 --- a/docs/ozplb-1.0.LICENSE +++ b/docs/ozplb-1.0.LICENSE @@ -1,3 +1,25 @@ +--- +key: ozplb-1.0 +short_name: OZPLB 1.0 +name: Australian Public Licence B Version 1.0 +category: Permissive +owner: ERTOS +homepage_url: http://www.ok-labs.com/licenses#ozplb +spdx_license_key: LicenseRef-scancode-ozplb-1.0 +text_urls: + - http://www.ok-labs.com/licenses#ozplb +other_urls: + - http://www.ertos.nicta.com.au +ignorable_copyrights: + - Copyright (c) 2006, National ICT Australia, Ltd +ignorable_holders: + - National ICT Australia, Ltd +ignorable_authors: + - Embedded, Real-time and Operating Systems Program (ERTOS) National ICT Australia http://www.ertos.nicta.com.au +ignorable_urls: + - http://www.ertos.nicta.com.au/ +--- + Australian Public Licence B Version 1-0 OZPLB Licence diff --git a/docs/ozplb-1.0.html b/docs/ozplb-1.0.html index caaac680e8..60c66c94ed 100644 --- a/docs/ozplb-1.0.html +++ b/docs/ozplb-1.0.html @@ -224,7 +224,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ozplb-1.0.json b/docs/ozplb-1.0.json index 220af60338..908fb3a84f 100644 --- a/docs/ozplb-1.0.json +++ b/docs/ozplb-1.0.json @@ -1 +1,27 @@ -{"key": "ozplb-1.0", "short_name": "OZPLB 1.0", "name": "Australian Public Licence B Version 1.0", "category": "Permissive", "owner": "ERTOS", "homepage_url": "http://www.ok-labs.com/licenses#ozplb", "spdx_license_key": "LicenseRef-scancode-ozplb-1.0", "text_urls": ["http://www.ok-labs.com/licenses#ozplb"], "other_urls": ["http://www.ertos.nicta.com.au"], "ignorable_copyrights": ["Copyright (c) 2006, National ICT Australia, Ltd"], "ignorable_holders": ["National ICT Australia, Ltd"], "ignorable_authors": ["Embedded, Real-time and Operating Systems Program (ERTOS) National ICT Australia http://www.ertos.nicta.com.au"], "ignorable_urls": ["http://www.ertos.nicta.com.au/"]} \ No newline at end of file +{ + "key": "ozplb-1.0", + "short_name": "OZPLB 1.0", + "name": "Australian Public Licence B Version 1.0", + "category": "Permissive", + "owner": "ERTOS", + "homepage_url": "http://www.ok-labs.com/licenses#ozplb", + "spdx_license_key": "LicenseRef-scancode-ozplb-1.0", + "text_urls": [ + "http://www.ok-labs.com/licenses#ozplb" + ], + "other_urls": [ + "http://www.ertos.nicta.com.au" + ], + "ignorable_copyrights": [ + "Copyright (c) 2006, National ICT Australia, Ltd" + ], + "ignorable_holders": [ + "National ICT Australia, Ltd" + ], + "ignorable_authors": [ + "Embedded, Real-time and Operating Systems Program (ERTOS) National ICT Australia http://www.ertos.nicta.com.au" + ], + "ignorable_urls": [ + "http://www.ertos.nicta.com.au/" + ] +} \ No newline at end of file diff --git a/docs/ozplb-1.1.LICENSE b/docs/ozplb-1.1.LICENSE index 5a06ca6603..3dd4348c05 100644 --- a/docs/ozplb-1.1.LICENSE +++ b/docs/ozplb-1.1.LICENSE @@ -1,3 +1,24 @@ +--- +key: ozplb-1.1 +short_name: OZPLB 1.1 +name: Australian Public Licence B Version 1.1 +category: Permissive +owner: University of Melbourne P2P Group +homepage_url: http://p2p.cs.mu.oz.au/software/mpi-open/src/LICENSE +spdx_license_key: LicenseRef-scancode-ozplb-1.1 +text_urls: + - http://p2p.cs.mu.oz.au/software/mpi-open/src/LICENSE +ignorable_copyrights: + - Copyright (c) 2006, P2P Networks and Applications Research Group, The University of Melbourne +ignorable_holders: + - P2P Networks and Applications Research Group, The University of Melbourne +ignorable_authors: + - P2P Networks and Applications Research Group The University of Melbourne, Australia http://www.cs.mu.oz.au/p2p +ignorable_urls: + - http://www.cs.mu.oz.au/p2p + - http://www.opensource.org/licenses/UoI-NCSA.php +--- + Australian Public Licence B (OZPLB) Version 1-1 diff --git a/docs/ozplb-1.1.html b/docs/ozplb-1.1.html index 9f260c9f55..1bd097ff4b 100644 --- a/docs/ozplb-1.1.html +++ b/docs/ozplb-1.1.html @@ -256,7 +256,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ozplb-1.1.json b/docs/ozplb-1.1.json index a91a992ad1..592781d45f 100644 --- a/docs/ozplb-1.1.json +++ b/docs/ozplb-1.1.json @@ -1 +1,25 @@ -{"key": "ozplb-1.1", "short_name": "OZPLB 1.1", "name": "Australian Public Licence B Version 1.1", "category": "Permissive", "owner": "University of Melbourne P2P Group", "homepage_url": "http://p2p.cs.mu.oz.au/software/mpi-open/src/LICENSE", "spdx_license_key": "LicenseRef-scancode-ozplb-1.1", "text_urls": ["http://p2p.cs.mu.oz.au/software/mpi-open/src/LICENSE"], "ignorable_copyrights": ["Copyright (c) 2006, P2P Networks and Applications Research Group, The University of Melbourne"], "ignorable_holders": ["P2P Networks and Applications Research Group, The University of Melbourne"], "ignorable_authors": ["P2P Networks and Applications Research Group The University of Melbourne, Australia http://www.cs.mu.oz.au/p2p"], "ignorable_urls": ["http://www.cs.mu.oz.au/p2p", "http://www.opensource.org/licenses/UoI-NCSA.php"]} \ No newline at end of file +{ + "key": "ozplb-1.1", + "short_name": "OZPLB 1.1", + "name": "Australian Public Licence B Version 1.1", + "category": "Permissive", + "owner": "University of Melbourne P2P Group", + "homepage_url": "http://p2p.cs.mu.oz.au/software/mpi-open/src/LICENSE", + "spdx_license_key": "LicenseRef-scancode-ozplb-1.1", + "text_urls": [ + "http://p2p.cs.mu.oz.au/software/mpi-open/src/LICENSE" + ], + "ignorable_copyrights": [ + "Copyright (c) 2006, P2P Networks and Applications Research Group, The University of Melbourne" + ], + "ignorable_holders": [ + "P2P Networks and Applications Research Group, The University of Melbourne" + ], + "ignorable_authors": [ + "P2P Networks and Applications Research Group The University of Melbourne, Australia http://www.cs.mu.oz.au/p2p" + ], + "ignorable_urls": [ + "http://www.cs.mu.oz.au/p2p", + "http://www.opensource.org/licenses/UoI-NCSA.php" + ] +} \ No newline at end of file diff --git a/docs/paint-net.LICENSE b/docs/paint-net.LICENSE index 862c8f0aaf..861aeb43cb 100644 --- a/docs/paint-net.LICENSE +++ b/docs/paint-net.LICENSE @@ -1,3 +1,18 @@ +--- +key: paint-net +short_name: Paint.NET License +name: Paint.NET License +category: Proprietary Free +owner: dotPDN +homepage_url: http://www.getpaint.net/license.html +spdx_license_key: LicenseRef-scancode-paint-net +ignorable_urls: + - http://www.everaldo.com/crystal + - http://www.getpaint.net/donate.html + - http://www.gnu.org/copyleft/lesser.html + - http://www.oxygen-icons.org/ +--- + Paint.NET is free for use in any environment, including but not necessarily limited to: personal, academic, commercial, government, business, non-profit, and for-profit. "Free" in the preceding sentence means that there is no cost or charge associated with the installation and use of Paint.NET. Donations are always appreciated, of course! http://www.getpaint.net/donate.html Permission is hereby granted, free of charge, to any person obtaining a copy of this software (the "Software"), to use the Software without restriction, including the rights to use, copy, publish, and distribute the Software, and to permit persons to whom the Software is furnished to do so. diff --git a/docs/paint-net.html b/docs/paint-net.html index 8fcfced8a7..ef702f47a1 100644 --- a/docs/paint-net.html +++ b/docs/paint-net.html @@ -144,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/paint-net.json b/docs/paint-net.json index 61b7c69409..18d5964f22 100644 --- a/docs/paint-net.json +++ b/docs/paint-net.json @@ -1 +1,15 @@ -{"key": "paint-net", "short_name": "Paint.NET License", "name": "Paint.NET License", "category": "Proprietary Free", "owner": "dotPDN", "homepage_url": "http://www.getpaint.net/license.html", "spdx_license_key": "LicenseRef-scancode-paint-net", "ignorable_urls": ["http://www.everaldo.com/crystal", "http://www.getpaint.net/donate.html", "http://www.gnu.org/copyleft/lesser.html", "http://www.oxygen-icons.org/"]} \ No newline at end of file +{ + "key": "paint-net", + "short_name": "Paint.NET License", + "name": "Paint.NET License", + "category": "Proprietary Free", + "owner": "dotPDN", + "homepage_url": "http://www.getpaint.net/license.html", + "spdx_license_key": "LicenseRef-scancode-paint-net", + "ignorable_urls": [ + "http://www.everaldo.com/crystal", + "http://www.getpaint.net/donate.html", + "http://www.gnu.org/copyleft/lesser.html", + "http://www.oxygen-icons.org/" + ] +} \ No newline at end of file diff --git a/docs/paolo-messina-2000.LICENSE b/docs/paolo-messina-2000.LICENSE index a1bd8de9be..e28765f5bd 100644 --- a/docs/paolo-messina-2000.LICENSE +++ b/docs/paolo-messina-2000.LICENSE @@ -1,3 +1,12 @@ +--- +key: paolo-messina-2000 +short_name: Paolo Messina 2000 +name: Paolo Messina 2000 +category: Permissive +owner: Paolo Messina +spdx_license_key: LicenseRef-scancode-paolo-messina-2000 +--- + Free for non-commercial and commercial use, provided that the original author's name and copyright is quoted somewhere in the final executable and in the program's help or documentation. You may change the code to your needs, provided that credits to the original author are given in the modified files. diff --git a/docs/paolo-messina-2000.html b/docs/paolo-messina-2000.html index 7b13054adb..897faaa4da 100644 --- a/docs/paolo-messina-2000.html +++ b/docs/paolo-messina-2000.html @@ -124,7 +124,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/paolo-messina-2000.json b/docs/paolo-messina-2000.json index aa90d63c72..18181e904c 100644 --- a/docs/paolo-messina-2000.json +++ b/docs/paolo-messina-2000.json @@ -1 +1,8 @@ -{"key": "paolo-messina-2000", "short_name": "Paolo Messina 2000", "name": "Paolo Messina 2000", "category": "Permissive", "owner": "Paolo Messina", "spdx_license_key": "LicenseRef-scancode-paolo-messina-2000"} \ No newline at end of file +{ + "key": "paolo-messina-2000", + "short_name": "Paolo Messina 2000", + "name": "Paolo Messina 2000", + "category": "Permissive", + "owner": "Paolo Messina", + "spdx_license_key": "LicenseRef-scancode-paolo-messina-2000" +} \ No newline at end of file diff --git a/docs/paraview-1.2.LICENSE b/docs/paraview-1.2.LICENSE index 56d20777cd..8b89cb84ff 100644 --- a/docs/paraview-1.2.LICENSE +++ b/docs/paraview-1.2.LICENSE @@ -1,3 +1,32 @@ +--- +key: paraview-1.2 +short_name: ParaView License 1.2 +name: ParaView License 1.2 +category: Permissive +owner: ParaView Project +spdx_license_key: LicenseRef-scancode-paraview-1.2 +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 2000-2005 Kitware Inc. 28 Corporate Drive, Suite 204, Clifton Park, NY, + 12065, USA. + - Copyright (c) 2000-2006 Kitware Inc. 28 Corporate Drive, Suite 204, Clifton Park, NY, + 12065, USA. + - Copyright (c) 2002 U.S. Army Research Laboratory + - Copyright (c) 2002-2005 Los Alamos National Laboratory + - Copyright (c) 2005-2008 Sandia Corporation, Kitware Inc. + - Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 by the Board of Trustees of the + University of Illinois +ignorable_holders: + - Kitware Inc. 28 Corporate Drive, Suite 204, Clifton Park, NY, 12065, USA. + - Los Alamos National Laboratory + - Sandia Corporation, Kitware Inc. + - U.S. Army Research Laboratory + - the Board of Trustees of the University of Illinois +ignorable_authors: + - the National Center for Supercomputing Applications at the University of Illinois at Urbana-Champaign + - with support from the University of California, Lawrence Livermore National Laboratory +--- + Parts of ParaView are under the following licenses: ParaView License Version 1.2 diff --git a/docs/paraview-1.2.html b/docs/paraview-1.2.html index 03e84e5938..cdc5c8cc55 100644 --- a/docs/paraview-1.2.html +++ b/docs/paraview-1.2.html @@ -407,7 +407,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/paraview-1.2.json b/docs/paraview-1.2.json index 12897d15e1..cf52dc2d21 100644 --- a/docs/paraview-1.2.json +++ b/docs/paraview-1.2.json @@ -1 +1,28 @@ -{"key": "paraview-1.2", "short_name": "ParaView License 1.2", "name": "ParaView License 1.2", "category": "Permissive", "owner": "ParaView Project", "spdx_license_key": "LicenseRef-scancode-paraview-1.2", "minimum_coverage": 80, "ignorable_copyrights": ["Copyright (c) 2000-2005 Kitware Inc. 28 Corporate Drive, Suite 204, Clifton Park, NY, 12065, USA.", "Copyright (c) 2000-2006 Kitware Inc. 28 Corporate Drive, Suite 204, Clifton Park, NY, 12065, USA.", "Copyright (c) 2002 U.S. Army Research Laboratory", "Copyright (c) 2002-2005 Los Alamos National Laboratory", "Copyright (c) 2005-2008 Sandia Corporation, Kitware Inc.", "Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 by the Board of Trustees of the University of Illinois"], "ignorable_holders": ["Kitware Inc. 28 Corporate Drive, Suite 204, Clifton Park, NY, 12065, USA.", "Los Alamos National Laboratory", "Sandia Corporation, Kitware Inc.", "U.S. Army Research Laboratory", "the Board of Trustees of the University of Illinois"], "ignorable_authors": ["the National Center for Supercomputing Applications at the University of Illinois at Urbana-Champaign", "with support from the University of California, Lawrence Livermore National Laboratory"]} \ No newline at end of file +{ + "key": "paraview-1.2", + "short_name": "ParaView License 1.2", + "name": "ParaView License 1.2", + "category": "Permissive", + "owner": "ParaView Project", + "spdx_license_key": "LicenseRef-scancode-paraview-1.2", + "minimum_coverage": 80, + "ignorable_copyrights": [ + "Copyright (c) 2000-2005 Kitware Inc. 28 Corporate Drive, Suite 204, Clifton Park, NY, 12065, USA.", + "Copyright (c) 2000-2006 Kitware Inc. 28 Corporate Drive, Suite 204, Clifton Park, NY, 12065, USA.", + "Copyright (c) 2002 U.S. Army Research Laboratory", + "Copyright (c) 2002-2005 Los Alamos National Laboratory", + "Copyright (c) 2005-2008 Sandia Corporation, Kitware Inc.", + "Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 by the Board of Trustees of the University of Illinois" + ], + "ignorable_holders": [ + "Kitware Inc. 28 Corporate Drive, Suite 204, Clifton Park, NY, 12065, USA.", + "Los Alamos National Laboratory", + "Sandia Corporation, Kitware Inc.", + "U.S. Army Research Laboratory", + "the Board of Trustees of the University of Illinois" + ], + "ignorable_authors": [ + "the National Center for Supercomputing Applications at the University of Illinois at Urbana-Champaign", + "with support from the University of California, Lawrence Livermore National Laboratory" + ] +} \ No newline at end of file diff --git a/docs/parity-6.0.0.LICENSE b/docs/parity-6.0.0.LICENSE index 4dbd4e7b3d..bee9bb8cc1 100644 --- a/docs/parity-6.0.0.LICENSE +++ b/docs/parity-6.0.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: parity-6.0.0 +short_name: The Parity Public License 6.0.0 +name: The Parity Public License 6.0.0 +category: Copyleft +owner: Kyle Mitchell +homepage_url: https://paritylicense.com/versions/6.0.0.html +spdx_license_key: Parity-6.0.0 +other_urls: + - https://paritylicense.com/versions/6.0.0.html +--- + The Parity Public License 6.0.0 Contributor: contributor name diff --git a/docs/parity-6.0.0.html b/docs/parity-6.0.0.html index 79c141377e..b8bb367e21 100644 --- a/docs/parity-6.0.0.html +++ b/docs/parity-6.0.0.html @@ -160,7 +160,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/parity-6.0.0.json b/docs/parity-6.0.0.json index b06edc7203..aaaf180c8c 100644 --- a/docs/parity-6.0.0.json +++ b/docs/parity-6.0.0.json @@ -1 +1,12 @@ -{"key": "parity-6.0.0", "short_name": "The Parity Public License 6.0.0", "name": "The Parity Public License 6.0.0", "category": "Copyleft", "owner": "Kyle Mitchell", "homepage_url": "https://paritylicense.com/versions/6.0.0.html", "spdx_license_key": "Parity-6.0.0", "other_urls": ["https://paritylicense.com/versions/6.0.0.html"]} \ No newline at end of file +{ + "key": "parity-6.0.0", + "short_name": "The Parity Public License 6.0.0", + "name": "The Parity Public License 6.0.0", + "category": "Copyleft", + "owner": "Kyle Mitchell", + "homepage_url": "https://paritylicense.com/versions/6.0.0.html", + "spdx_license_key": "Parity-6.0.0", + "other_urls": [ + "https://paritylicense.com/versions/6.0.0.html" + ] +} \ No newline at end of file diff --git a/docs/parity-7.0.0.LICENSE b/docs/parity-7.0.0.LICENSE index 24cb3e12de..516a121b03 100644 --- a/docs/parity-7.0.0.LICENSE +++ b/docs/parity-7.0.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: parity-7.0.0 +short_name: The Parity Public License 7.0.0 +name: The Parity Public License 7.0.0 +category: Copyleft +owner: Kyle Mitchell +homepage_url: https://paritylicense.com/versions/7.0.0.html +spdx_license_key: Parity-7.0.0 +--- + The Parity Public License 7.0.0 Contributor: contributor name diff --git a/docs/parity-7.0.0.html b/docs/parity-7.0.0.html index 21bc7c2243..4d80a5cb62 100644 --- a/docs/parity-7.0.0.html +++ b/docs/parity-7.0.0.html @@ -184,7 +184,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/parity-7.0.0.json b/docs/parity-7.0.0.json index 6449253799..07272333c7 100644 --- a/docs/parity-7.0.0.json +++ b/docs/parity-7.0.0.json @@ -1 +1,9 @@ -{"key": "parity-7.0.0", "short_name": "The Parity Public License 7.0.0", "name": "The Parity Public License 7.0.0", "category": "Copyleft", "owner": "Kyle Mitchell", "homepage_url": "https://paritylicense.com/versions/7.0.0.html", "spdx_license_key": "Parity-7.0.0"} \ No newline at end of file +{ + "key": "parity-7.0.0", + "short_name": "The Parity Public License 7.0.0", + "name": "The Parity Public License 7.0.0", + "category": "Copyleft", + "owner": "Kyle Mitchell", + "homepage_url": "https://paritylicense.com/versions/7.0.0.html", + "spdx_license_key": "Parity-7.0.0" +} \ No newline at end of file diff --git a/docs/passive-aggressive.LICENSE b/docs/passive-aggressive.LICENSE index 9f5d7c7549..a6af5196ed 100644 --- a/docs/passive-aggressive.LICENSE +++ b/docs/passive-aggressive.LICENSE @@ -1,3 +1,13 @@ +--- +key: passive-aggressive +short_name: Passive-Aggressive License +name: Passive-Aggressive License +category: Proprietary Free +owner: Unspecified +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-passive-aggressive +--- + Permission is hereby given to the user, with free of charge, to any person obtaining a copy of this software and its all associated documentation files, to deal in the software without restriction, including without limitation the rights to copy, modify, merge, publish, distribute, sublicense, and/orsell copies of the Software, but NOT including the right to run, execute or use the Software or any executable binaries built from the source code. The above copyright notice and this permission notice shall be included in all @@ -9,4 +19,4 @@ 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 +SOFTWARE \ No newline at end of file diff --git a/docs/passive-aggressive.html b/docs/passive-aggressive.html index cd2b4bb00b..aca53b1516 100644 --- a/docs/passive-aggressive.html +++ b/docs/passive-aggressive.html @@ -126,8 +126,7 @@ 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 - +SOFTWARE
@@ -139,7 +138,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/passive-aggressive.json b/docs/passive-aggressive.json index 857fcbff0a..752e440492 100644 --- a/docs/passive-aggressive.json +++ b/docs/passive-aggressive.json @@ -1 +1,9 @@ -{"key": "passive-aggressive", "short_name": "Passive-Aggressive License", "name": "Passive-Aggressive License", "category": "Proprietary Free", "owner": "Unspecified", "notes": "From https://github.com/ErikMcClure/bad-licenses", "spdx_license_key": "LicenseRef-scancode-passive-aggressive"} \ No newline at end of file +{ + "key": "passive-aggressive", + "short_name": "Passive-Aggressive License", + "name": "Passive-Aggressive License", + "category": "Proprietary Free", + "owner": "Unspecified", + "notes": "From https://github.com/ErikMcClure/bad-licenses", + "spdx_license_key": "LicenseRef-scancode-passive-aggressive" +} \ No newline at end of file diff --git a/docs/patent-disclaimer.LICENSE b/docs/patent-disclaimer.LICENSE index e69de29bb2..fd7ab7ac53 100644 --- a/docs/patent-disclaimer.LICENSE +++ b/docs/patent-disclaimer.LICENSE @@ -0,0 +1,9 @@ +--- +key: patent-disclaimer +short_name: Generic patent disclaimer +name: Generic patent disclaimer +category: Permissive +owner: Unspecified +is_generic: yes +spdx_license_key: LicenseRef-scancode-patent-disclaimer +--- \ No newline at end of file diff --git a/docs/patent-disclaimer.html b/docs/patent-disclaimer.html index 889e1834e1..27827b2e2a 100644 --- a/docs/patent-disclaimer.html +++ b/docs/patent-disclaimer.html @@ -99,6 +99,13 @@ +
is_generic
+
+ + True + +
+
spdx_license_key
@@ -120,7 +127,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/patent-disclaimer.json b/docs/patent-disclaimer.json index 00f4431877..0d8fc97f22 100644 --- a/docs/patent-disclaimer.json +++ b/docs/patent-disclaimer.json @@ -1 +1,9 @@ -{"key": "patent-disclaimer", "short_name": "Generic patent disclaimer", "name": "Generic patent disclaimer", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-patent-disclaimer"} \ No newline at end of file +{ + "key": "patent-disclaimer", + "short_name": "Generic patent disclaimer", + "name": "Generic patent disclaimer", + "category": "Permissive", + "owner": "Unspecified", + "is_generic": true, + "spdx_license_key": "LicenseRef-scancode-patent-disclaimer" +} \ No newline at end of file diff --git a/docs/patent-disclaimer.yml b/docs/patent-disclaimer.yml index 0bd3f89c66..0f784c26e4 100644 --- a/docs/patent-disclaimer.yml +++ b/docs/patent-disclaimer.yml @@ -3,4 +3,5 @@ short_name: Generic patent disclaimer name: Generic patent disclaimer category: Permissive owner: Unspecified +is_generic: yes spdx_license_key: LicenseRef-scancode-patent-disclaimer diff --git a/docs/paul-hsieh-derivative.LICENSE b/docs/paul-hsieh-derivative.LICENSE index 10d5810705..4e4e0a0683 100644 --- a/docs/paul-hsieh-derivative.LICENSE +++ b/docs/paul-hsieh-derivative.LICENSE @@ -1,3 +1,17 @@ +--- +key: paul-hsieh-derivative +short_name: Paul Hsieh Derivative License +name: Paul Hsieh Derivative License +category: Free Restricted +owner: Paul Hsieh +homepage_url: http://www.azillionmonkeys.com/qed/weblicense.html +spdx_license_key: LicenseRef-scancode-paul-hsieh-derivative +text_urls: + - http://www.azillionmonkeys.com/qed/weblicense.html +other_urls: + - http://azillionmonkeys.com/qed/hash.html +--- + Paul Hsieh derivative license The derivative content includes raw computer source code, ideas, opinions, and @@ -14,4 +28,4 @@ license. Use and redistribution is limited to the following conditions: One may not attribute any derivative content to authors not involved in the creation of the content, though an attribution to the author is not - necessary. + necessary. \ No newline at end of file diff --git a/docs/paul-hsieh-derivative.html b/docs/paul-hsieh-derivative.html index 630ed00032..bf19569f8b 100644 --- a/docs/paul-hsieh-derivative.html +++ b/docs/paul-hsieh-derivative.html @@ -149,8 +149,7 @@ One may not attribute any derivative content to authors not involved in the creation of the content, though an attribution to the author is not - necessary. - + necessary.
@@ -162,7 +161,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/paul-hsieh-derivative.json b/docs/paul-hsieh-derivative.json index 0ee05e0423..dcac0fba06 100644 --- a/docs/paul-hsieh-derivative.json +++ b/docs/paul-hsieh-derivative.json @@ -1 +1,15 @@ -{"key": "paul-hsieh-derivative", "short_name": "Paul Hsieh Derivative License", "name": "Paul Hsieh Derivative License", "category": "Free Restricted", "owner": "Paul Hsieh", "homepage_url": "http://www.azillionmonkeys.com/qed/weblicense.html", "spdx_license_key": "LicenseRef-scancode-paul-hsieh-derivative", "text_urls": ["http://www.azillionmonkeys.com/qed/weblicense.html"], "other_urls": ["http://azillionmonkeys.com/qed/hash.html"]} \ No newline at end of file +{ + "key": "paul-hsieh-derivative", + "short_name": "Paul Hsieh Derivative License", + "name": "Paul Hsieh Derivative License", + "category": "Free Restricted", + "owner": "Paul Hsieh", + "homepage_url": "http://www.azillionmonkeys.com/qed/weblicense.html", + "spdx_license_key": "LicenseRef-scancode-paul-hsieh-derivative", + "text_urls": [ + "http://www.azillionmonkeys.com/qed/weblicense.html" + ], + "other_urls": [ + "http://azillionmonkeys.com/qed/hash.html" + ] +} \ No newline at end of file diff --git a/docs/paul-hsieh-exposition.LICENSE b/docs/paul-hsieh-exposition.LICENSE index 2d6344d72d..7f3bd65bf0 100644 --- a/docs/paul-hsieh-exposition.LICENSE +++ b/docs/paul-hsieh-exposition.LICENSE @@ -1,3 +1,17 @@ +--- +key: paul-hsieh-exposition +short_name: Paul Hsieh Exposition License +name: Paul Hsieh Exposition License +category: Free Restricted +owner: Paul Hsieh +homepage_url: http://www.azillionmonkeys.com/qed/weblicense.html +spdx_license_key: LicenseRef-scancode-paul-hsieh-exposition +text_urls: + - http://www.azillionmonkeys.com/qed/weblicense.html +other_urls: + - http://azillionmonkeys.com/qed/hash.html +--- + Paul Hsieh exposition license The content of all text, figures, tables and displayed layout is copyrighted by its author and owner Paul Hsieh unless specifically denoted otherwise. Redistribution is limited to the following conditions: diff --git a/docs/paul-hsieh-exposition.html b/docs/paul-hsieh-exposition.html index 1dd674b6e6..a9b553f80c 100644 --- a/docs/paul-hsieh-exposition.html +++ b/docs/paul-hsieh-exposition.html @@ -154,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/paul-hsieh-exposition.json b/docs/paul-hsieh-exposition.json index 681586598a..d910469b01 100644 --- a/docs/paul-hsieh-exposition.json +++ b/docs/paul-hsieh-exposition.json @@ -1 +1,15 @@ -{"key": "paul-hsieh-exposition", "short_name": "Paul Hsieh Exposition License", "name": "Paul Hsieh Exposition License", "category": "Free Restricted", "owner": "Paul Hsieh", "homepage_url": "http://www.azillionmonkeys.com/qed/weblicense.html", "spdx_license_key": "LicenseRef-scancode-paul-hsieh-exposition", "text_urls": ["http://www.azillionmonkeys.com/qed/weblicense.html"], "other_urls": ["http://azillionmonkeys.com/qed/hash.html"]} \ No newline at end of file +{ + "key": "paul-hsieh-exposition", + "short_name": "Paul Hsieh Exposition License", + "name": "Paul Hsieh Exposition License", + "category": "Free Restricted", + "owner": "Paul Hsieh", + "homepage_url": "http://www.azillionmonkeys.com/qed/weblicense.html", + "spdx_license_key": "LicenseRef-scancode-paul-hsieh-exposition", + "text_urls": [ + "http://www.azillionmonkeys.com/qed/weblicense.html" + ], + "other_urls": [ + "http://azillionmonkeys.com/qed/hash.html" + ] +} \ No newline at end of file diff --git a/docs/paul-mackerras-binary.LICENSE b/docs/paul-mackerras-binary.LICENSE index 543bc1cf6c..229d126ee8 100644 --- a/docs/paul-mackerras-binary.LICENSE +++ b/docs/paul-mackerras-binary.LICENSE @@ -1,3 +1,17 @@ +--- +key: paul-mackerras-binary +short_name: Paul Mackerras Binary License +name: Paul Mackerras Binary License +category: Permissive +owner: Paul Mackerras +notes: this is very similar to the bsd-ack but there is a different warranty disclaimer +spdx_license_key: LicenseRef-scancode-paul-mackerras-binary +ignorable_authors: + - Paul Mackerras +ignorable_emails: + - paulus@samba.org +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/paul-mackerras-binary.html b/docs/paul-mackerras-binary.html index e07dbd0aff..63d601699c 100644 --- a/docs/paul-mackerras-binary.html +++ b/docs/paul-mackerras-binary.html @@ -172,7 +172,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/paul-mackerras-binary.json b/docs/paul-mackerras-binary.json index e5f897515a..8d614c2942 100644 --- a/docs/paul-mackerras-binary.json +++ b/docs/paul-mackerras-binary.json @@ -1 +1,15 @@ -{"key": "paul-mackerras-binary", "short_name": "Paul Mackerras Binary License", "name": "Paul Mackerras Binary License", "category": "Permissive", "owner": "Paul Mackerras", "notes": "this is very similar to the bsd-ack but there is a different warranty disclaimer", "spdx_license_key": "LicenseRef-scancode-paul-mackerras-binary", "ignorable_authors": ["Paul Mackerras "], "ignorable_emails": ["paulus@samba.org"]} \ No newline at end of file +{ + "key": "paul-mackerras-binary", + "short_name": "Paul Mackerras Binary License", + "name": "Paul Mackerras Binary License", + "category": "Permissive", + "owner": "Paul Mackerras", + "notes": "this is very similar to the bsd-ack but there is a different warranty disclaimer", + "spdx_license_key": "LicenseRef-scancode-paul-mackerras-binary", + "ignorable_authors": [ + "Paul Mackerras " + ], + "ignorable_emails": [ + "paulus@samba.org" + ] +} \ No newline at end of file diff --git a/docs/paul-mackerras-new.LICENSE b/docs/paul-mackerras-new.LICENSE index 957174b5d8..98d91e44f8 100644 --- a/docs/paul-mackerras-new.LICENSE +++ b/docs/paul-mackerras-new.LICENSE @@ -1,3 +1,13 @@ +--- +key: paul-mackerras-new +short_name: Paul Mackerras New License +name: Paul Mackerras New License +category: Permissive +owner: Paul Mackerras +notes: this is a paul-mackerras without advert +spdx_license_key: LicenseRef-scancode-paul-mackerras-new +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/paul-mackerras-new.html b/docs/paul-mackerras-new.html index b94986111a..b5a9a8328c 100644 --- a/docs/paul-mackerras-new.html +++ b/docs/paul-mackerras-new.html @@ -149,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/paul-mackerras-new.json b/docs/paul-mackerras-new.json index 416de20599..9045d5c40a 100644 --- a/docs/paul-mackerras-new.json +++ b/docs/paul-mackerras-new.json @@ -1 +1,9 @@ -{"key": "paul-mackerras-new", "short_name": "Paul Mackerras New License", "name": "Paul Mackerras New License", "category": "Permissive", "owner": "Paul Mackerras", "notes": "this is a paul-mackerras without advert", "spdx_license_key": "LicenseRef-scancode-paul-mackerras-new"} \ No newline at end of file +{ + "key": "paul-mackerras-new", + "short_name": "Paul Mackerras New License", + "name": "Paul Mackerras New License", + "category": "Permissive", + "owner": "Paul Mackerras", + "notes": "this is a paul-mackerras without advert", + "spdx_license_key": "LicenseRef-scancode-paul-mackerras-new" +} \ No newline at end of file diff --git a/docs/paul-mackerras-simplified.LICENSE b/docs/paul-mackerras-simplified.LICENSE index eab0e4c65b..ea62380955 100644 --- a/docs/paul-mackerras-simplified.LICENSE +++ b/docs/paul-mackerras-simplified.LICENSE @@ -1,3 +1,13 @@ +--- +key: paul-mackerras-simplified +short_name: Paul Mackerras Simplified License +name: Paul Mackerras Simplified License +category: Permissive +owner: Paul Mackerras +notes: same as paul-mackerras but without advertizing clause +spdx_license_key: LicenseRef-scancode-paul-mackerras-simplified +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/paul-mackerras-simplified.html b/docs/paul-mackerras-simplified.html index 52ad66e026..699ef216bb 100644 --- a/docs/paul-mackerras-simplified.html +++ b/docs/paul-mackerras-simplified.html @@ -144,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/paul-mackerras-simplified.json b/docs/paul-mackerras-simplified.json index 94eb58d197..ede507fc0f 100644 --- a/docs/paul-mackerras-simplified.json +++ b/docs/paul-mackerras-simplified.json @@ -1 +1,9 @@ -{"key": "paul-mackerras-simplified", "short_name": "Paul Mackerras Simplified License", "name": "Paul Mackerras Simplified License", "category": "Permissive", "owner": "Paul Mackerras", "notes": "same as paul-mackerras but without advertizing clause", "spdx_license_key": "LicenseRef-scancode-paul-mackerras-simplified"} \ No newline at end of file +{ + "key": "paul-mackerras-simplified", + "short_name": "Paul Mackerras Simplified License", + "name": "Paul Mackerras Simplified License", + "category": "Permissive", + "owner": "Paul Mackerras", + "notes": "same as paul-mackerras but without advertizing clause", + "spdx_license_key": "LicenseRef-scancode-paul-mackerras-simplified" +} \ No newline at end of file diff --git a/docs/paul-mackerras.LICENSE b/docs/paul-mackerras.LICENSE index 5dc791397a..95eaef674e 100644 --- a/docs/paul-mackerras.LICENSE +++ b/docs/paul-mackerras.LICENSE @@ -1,3 +1,18 @@ +--- +key: paul-mackerras +short_name: Paul Mackerras License +name: Paul Mackerras License +category: Permissive +owner: Paul Mackerras +notes: there is no binaries clause and this is very similar to the bsd-ack but there is a different + warranty disclaimer +spdx_license_key: LicenseRef-scancode-paul-mackerras +ignorable_authors: + - Paul Mackerras +ignorable_emails: + - paulus@samba.org +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/paul-mackerras.html b/docs/paul-mackerras.html index dcba36fbef..2318d2b914 100644 --- a/docs/paul-mackerras.html +++ b/docs/paul-mackerras.html @@ -167,7 +167,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/paul-mackerras.json b/docs/paul-mackerras.json index ace4d4c9d5..0590d296f5 100644 --- a/docs/paul-mackerras.json +++ b/docs/paul-mackerras.json @@ -1 +1,15 @@ -{"key": "paul-mackerras", "short_name": "Paul Mackerras License", "name": "Paul Mackerras License", "category": "Permissive", "owner": "Paul Mackerras", "notes": "there is no binaries clause and this is very similar to the bsd-ack but there is a different warranty disclaimer", "spdx_license_key": "LicenseRef-scancode-paul-mackerras", "ignorable_authors": ["Paul Mackerras "], "ignorable_emails": ["paulus@samba.org"]} \ No newline at end of file +{ + "key": "paul-mackerras", + "short_name": "Paul Mackerras License", + "name": "Paul Mackerras License", + "category": "Permissive", + "owner": "Paul Mackerras", + "notes": "there is no binaries clause and this is very similar to the bsd-ack but there is a different warranty disclaimer", + "spdx_license_key": "LicenseRef-scancode-paul-mackerras", + "ignorable_authors": [ + "Paul Mackerras " + ], + "ignorable_emails": [ + "paulus@samba.org" + ] +} \ No newline at end of file diff --git a/docs/paulo-soares.LICENSE b/docs/paulo-soares.LICENSE index 58ee98d7dd..5c60f47a78 100644 --- a/docs/paulo-soares.LICENSE +++ b/docs/paulo-soares.LICENSE @@ -1,3 +1,14 @@ +--- +key: paulo-soares +short_name: Paulo Soares License +name: Paulo Soares License +category: Permissive +owner: Paulo Soares +spdx_license_key: LicenseRef-scancode-paulo-soares +ignorable_authors: + - Paulo Soares +--- + These specific metrics files were created by Paulo Soares and may be used, copied, and distributed for any purpose and without charge, with or without modification. \ No newline at end of file diff --git a/docs/paulo-soares.html b/docs/paulo-soares.html index f072aa952d..fbf08a540e 100644 --- a/docs/paulo-soares.html +++ b/docs/paulo-soares.html @@ -131,7 +131,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/paulo-soares.json b/docs/paulo-soares.json index 770f57115a..155ba05bec 100644 --- a/docs/paulo-soares.json +++ b/docs/paulo-soares.json @@ -1 +1,11 @@ -{"key": "paulo-soares", "short_name": "Paulo Soares License", "name": "Paulo Soares License", "category": "Permissive", "owner": "Paulo Soares", "spdx_license_key": "LicenseRef-scancode-paulo-soares", "ignorable_authors": ["Paulo Soares"]} \ No newline at end of file +{ + "key": "paulo-soares", + "short_name": "Paulo Soares License", + "name": "Paulo Soares License", + "category": "Permissive", + "owner": "Paulo Soares", + "spdx_license_key": "LicenseRef-scancode-paulo-soares", + "ignorable_authors": [ + "Paulo Soares" + ] +} \ No newline at end of file diff --git a/docs/paypal-sdk-2013-2016.LICENSE b/docs/paypal-sdk-2013-2016.LICENSE index ec10ea4f54..6d6a897787 100644 --- a/docs/paypal-sdk-2013-2016.LICENSE +++ b/docs/paypal-sdk-2013-2016.LICENSE @@ -1,3 +1,21 @@ +--- +key: paypal-sdk-2013-2016 +short_name: PayPal SDK License 2013-2016 +name: PayPal SDK License 2013-2016 +category: Permissive +owner: PayPal +homepage_url: https://github.com/paypal/sdk-core-ruby/blob/master/LICENSE.txt +spdx_license_key: LicenseRef-scancode-paypal-sdk-2013-2016 +standard_notice: | + The PayPal SDK is released under the following license: + Copyright (c) 2013-2016 PAYPAL, INC. + SDK LICENSE +ignorable_copyrights: + - Copyright (c) 2013-2016 PAYPAL, INC. +ignorable_holders: + - PAYPAL, INC. +--- + The PayPal SDK is released under the following license: Copyright (c) 2013-2016 PAYPAL, INC. diff --git a/docs/paypal-sdk-2013-2016.html b/docs/paypal-sdk-2013-2016.html index 838c8691d8..f35f38bbe3 100644 --- a/docs/paypal-sdk-2013-2016.html +++ b/docs/paypal-sdk-2013-2016.html @@ -240,7 +240,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/paypal-sdk-2013-2016.json b/docs/paypal-sdk-2013-2016.json index 1e589d21d3..f7322d22ed 100644 --- a/docs/paypal-sdk-2013-2016.json +++ b/docs/paypal-sdk-2013-2016.json @@ -1 +1,16 @@ -{"key": "paypal-sdk-2013-2016", "short_name": "PayPal SDK License 2013-2016", "name": "PayPal SDK License 2013-2016", "category": "Permissive", "owner": "PayPal", "homepage_url": "https://github.com/paypal/sdk-core-ruby/blob/master/LICENSE.txt", "spdx_license_key": "LicenseRef-scancode-paypal-sdk-2013-2016", "standard_notice": "The PayPal SDK is released under the following license:\nCopyright (c) 2013-2016 PAYPAL, INC.\nSDK LICENSE\n", "ignorable_copyrights": ["Copyright (c) 2013-2016 PAYPAL, INC."], "ignorable_holders": ["PAYPAL, INC."]} \ No newline at end of file +{ + "key": "paypal-sdk-2013-2016", + "short_name": "PayPal SDK License 2013-2016", + "name": "PayPal SDK License 2013-2016", + "category": "Permissive", + "owner": "PayPal", + "homepage_url": "https://github.com/paypal/sdk-core-ruby/blob/master/LICENSE.txt", + "spdx_license_key": "LicenseRef-scancode-paypal-sdk-2013-2016", + "standard_notice": "The PayPal SDK is released under the following license:\nCopyright (c) 2013-2016 PAYPAL, INC.\nSDK LICENSE\n", + "ignorable_copyrights": [ + "Copyright (c) 2013-2016 PAYPAL, INC." + ], + "ignorable_holders": [ + "PAYPAL, INC." + ] +} \ No newline at end of file diff --git a/docs/pbl-1.0.LICENSE b/docs/pbl-1.0.LICENSE index 161bfd20eb..d0923dd7ec 100644 --- a/docs/pbl-1.0.LICENSE +++ b/docs/pbl-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: pbl-1.0 +short_name: PBL-1.0 +name: Permissive Binary License 1.0 +category: Free Restricted +owner: ARM +homepage_url: https://os.mbed.com/licenses/permissive-binary-license/ +spdx_license_key: LicenseRef-scancode-pbl-1.0 +text_urls: + - https://os.mbed.com/licenses/permissive-binary-license/ +--- + Permissive Binary License Version 1.0, September 2015 @@ -46,4 +58,4 @@ 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. +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/pbl-1.0.html b/docs/pbl-1.0.html index 414d3672da..c00a7c9aa7 100644 --- a/docs/pbl-1.0.html +++ b/docs/pbl-1.0.html @@ -172,8 +172,7 @@ 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. - +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -185,7 +184,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/pbl-1.0.json b/docs/pbl-1.0.json index 2825b59efa..7b58060cb9 100644 --- a/docs/pbl-1.0.json +++ b/docs/pbl-1.0.json @@ -1 +1,12 @@ -{"key": "pbl-1.0", "short_name": "PBL-1.0", "name": "Permissive Binary License 1.0", "category": "Free Restricted", "owner": "ARM", "homepage_url": "https://os.mbed.com/licenses/permissive-binary-license/", "spdx_license_key": "LicenseRef-scancode-pbl-1.0", "text_urls": ["https://os.mbed.com/licenses/permissive-binary-license/"]} \ No newline at end of file +{ + "key": "pbl-1.0", + "short_name": "PBL-1.0", + "name": "Permissive Binary License 1.0", + "category": "Free Restricted", + "owner": "ARM", + "homepage_url": "https://os.mbed.com/licenses/permissive-binary-license/", + "spdx_license_key": "LicenseRef-scancode-pbl-1.0", + "text_urls": [ + "https://os.mbed.com/licenses/permissive-binary-license/" + ] +} \ No newline at end of file diff --git a/docs/pcre.LICENSE b/docs/pcre.LICENSE index 3ed0b925a6..f09354a2dd 100644 --- a/docs/pcre.LICENSE +++ b/docs/pcre.LICENSE @@ -1,3 +1,27 @@ +--- +key: pcre +short_name: PCRE License +name: PCRE License +category: Permissive +owner: University of Cambridge +homepage_url: http://www.pcre.org/licence.txt +spdx_license_key: LicenseRef-scancode-pcre +text_urls: + - http://www.pcre.org/licence.txt +ignorable_copyrights: + - Copyright (c) 1997-2001 University of Cambridge + - copyright by the University of Cambridge, England +ignorable_holders: + - University of Cambridge + - the University of Cambridge, England +ignorable_authors: + - Philip Hazel +ignorable_urls: + - ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ +ignorable_emails: + - ph10@cam.ac.uk +--- + PCRE LICENCE ------------ diff --git a/docs/pcre.html b/docs/pcre.html index 8f66a05be2..1224e0c443 100644 --- a/docs/pcre.html +++ b/docs/pcre.html @@ -227,7 +227,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/pcre.json b/docs/pcre.json index ae50e12ac4..8e8e151fcd 100644 --- a/docs/pcre.json +++ b/docs/pcre.json @@ -1 +1,29 @@ -{"key": "pcre", "short_name": "PCRE License", "name": "PCRE License", "category": "Permissive", "owner": "University of Cambridge", "homepage_url": "http://www.pcre.org/licence.txt", "spdx_license_key": "LicenseRef-scancode-pcre", "text_urls": ["http://www.pcre.org/licence.txt"], "ignorable_copyrights": ["Copyright (c) 1997-2001 University of Cambridge", "copyright by the University of Cambridge, England"], "ignorable_holders": ["University of Cambridge", "the University of Cambridge, England"], "ignorable_authors": ["Philip Hazel"], "ignorable_urls": ["ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/"], "ignorable_emails": ["ph10@cam.ac.uk"]} \ No newline at end of file +{ + "key": "pcre", + "short_name": "PCRE License", + "name": "PCRE License", + "category": "Permissive", + "owner": "University of Cambridge", + "homepage_url": "http://www.pcre.org/licence.txt", + "spdx_license_key": "LicenseRef-scancode-pcre", + "text_urls": [ + "http://www.pcre.org/licence.txt" + ], + "ignorable_copyrights": [ + "Copyright (c) 1997-2001 University of Cambridge", + "copyright by the University of Cambridge, England" + ], + "ignorable_holders": [ + "University of Cambridge", + "the University of Cambridge, England" + ], + "ignorable_authors": [ + "Philip Hazel" + ], + "ignorable_urls": [ + "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/" + ], + "ignorable_emails": [ + "ph10@cam.ac.uk" + ] +} \ No newline at end of file diff --git a/docs/pd-mit.LICENSE b/docs/pd-mit.LICENSE index 167048cf39..6293f7707e 100644 --- a/docs/pd-mit.LICENSE +++ b/docs/pd-mit.LICENSE @@ -1,3 +1,15 @@ +--- +key: pd-mit +short_name: Modified MIT License for Public Domain software +name: Modified MIT License for Public Domain software +category: Permissive +owner: CubicleSoft +homepage_url: http://cubicspot.blogspot.com/2014/03/writing-software-without-copyright.html +spdx_license_key: LicenseRef-scancode-pd-mit +text_urls: + - http://cubicspot.blogspot.com/2014/03/writing-software-without-copyright.html +--- + Modified MIT License for Public Domain software Public Domain or legal equivalent diff --git a/docs/pd-mit.html b/docs/pd-mit.html index f946196001..651961ba3e 100644 --- a/docs/pd-mit.html +++ b/docs/pd-mit.html @@ -154,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/pd-mit.json b/docs/pd-mit.json index 046fc5704f..1feada6a83 100644 --- a/docs/pd-mit.json +++ b/docs/pd-mit.json @@ -1 +1,12 @@ -{"key": "pd-mit", "short_name": "Modified MIT License for Public Domain software", "name": "Modified MIT License for Public Domain software", "category": "Permissive", "owner": "CubicleSoft", "homepage_url": "http://cubicspot.blogspot.com/2014/03/writing-software-without-copyright.html", "spdx_license_key": "LicenseRef-scancode-pd-mit", "text_urls": ["http://cubicspot.blogspot.com/2014/03/writing-software-without-copyright.html"]} \ No newline at end of file +{ + "key": "pd-mit", + "short_name": "Modified MIT License for Public Domain software", + "name": "Modified MIT License for Public Domain software", + "category": "Permissive", + "owner": "CubicleSoft", + "homepage_url": "http://cubicspot.blogspot.com/2014/03/writing-software-without-copyright.html", + "spdx_license_key": "LicenseRef-scancode-pd-mit", + "text_urls": [ + "http://cubicspot.blogspot.com/2014/03/writing-software-without-copyright.html" + ] +} \ No newline at end of file diff --git a/docs/pd-programming.LICENSE b/docs/pd-programming.LICENSE index 3c1826e14f..0be678285d 100644 --- a/docs/pd-programming.LICENSE +++ b/docs/pd-programming.LICENSE @@ -1,3 +1,13 @@ +--- +key: pd-programming +short_name: PD'Programming License +name: PD'Programming License +category: Permissive +owner: PD'Programming +spdx_license_key: LicenseRef-scancode-pd-programming +other_urls: + - http://www.pdmagic.com/ +--- Coords.js is free for both commercial and non-commercial use and redistribution, provided that PD'Programming's copyright and disclaimer are @@ -8,4 +18,4 @@ modifications are clearly documented. 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. Please use it AT -YOUR OWN RISK. +YOUR OWN RISK. \ No newline at end of file diff --git a/docs/pd-programming.html b/docs/pd-programming.html index 2406a8db3f..7ef912c47c 100644 --- a/docs/pd-programming.html +++ b/docs/pd-programming.html @@ -117,8 +117,7 @@
license_text
-

-Coords.js is free for both commercial and non-commercial use and
+    
Coords.js is free for both commercial and non-commercial use and
 redistribution, provided that PD'Programming's copyright and disclaimer are
 retained intact.  You are free to modify coords.js for your own use and
 to redistribute coords.js with your modifications, provided that the
@@ -127,8 +126,7 @@
 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.  Please use it AT
-YOUR OWN RISK.
-
+YOUR OWN RISK.
@@ -140,7 +138,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/pd-programming.json b/docs/pd-programming.json index 99d2f3939e..cc8d17a054 100644 --- a/docs/pd-programming.json +++ b/docs/pd-programming.json @@ -1 +1,11 @@ -{"key": "pd-programming", "short_name": "PD'Programming License", "name": "PD'Programming License", "category": "Permissive", "owner": "PD'Programming", "spdx_license_key": "LicenseRef-scancode-pd-programming", "other_urls": ["http://www.pdmagic.com/"]} \ No newline at end of file +{ + "key": "pd-programming", + "short_name": "PD'Programming License", + "name": "PD'Programming License", + "category": "Permissive", + "owner": "PD'Programming", + "spdx_license_key": "LicenseRef-scancode-pd-programming", + "other_urls": [ + "http://www.pdmagic.com/" + ] +} \ No newline at end of file diff --git a/docs/pddl-1.0.LICENSE b/docs/pddl-1.0.LICENSE index d780e02a5a..f99d5a8638 100644 --- a/docs/pddl-1.0.LICENSE +++ b/docs/pddl-1.0.LICENSE @@ -1,3 +1,18 @@ +--- +key: pddl-1.0 +short_name: PDDL 1.0 +name: Public Domain Dedication & Licence (PDDL) +category: Public Domain +owner: Open Data Commons +homepage_url: http://opendatacommons.org/licenses/pddl/1-0/ +spdx_license_key: PDDL-1.0 +text_urls: + - http://opendatacommons.org/licenses/pddl/1-0/ +other_urls: + - http://opendatacommons.org/licenses/pddl/1.0/ + - https://opendatacommons.org/licenses/pddl/ +--- + Open Data Commons – Public Domain Dedication & Licence (PDDL) Preamble The Open Data Commons – Public Domain Dedication & Licence is a document intended to allow you to freely share, modify, and use this work for any purpose and without any restrictions. This licence is intended for use on databases or their contents ("data"), either together or individually. diff --git a/docs/pddl-1.0.html b/docs/pddl-1.0.html index e24cc36dc2..667abc1da0 100644 --- a/docs/pddl-1.0.html +++ b/docs/pddl-1.0.html @@ -278,7 +278,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/pddl-1.0.json b/docs/pddl-1.0.json index 96de5de3d3..b99ceac73a 100644 --- a/docs/pddl-1.0.json +++ b/docs/pddl-1.0.json @@ -1 +1,16 @@ -{"key": "pddl-1.0", "short_name": "PDDL 1.0", "name": "Public Domain Dedication & Licence (PDDL)", "category": "Public Domain", "owner": "Open Data Commons", "homepage_url": "http://opendatacommons.org/licenses/pddl/1-0/", "spdx_license_key": "PDDL-1.0", "text_urls": ["http://opendatacommons.org/licenses/pddl/1-0/"], "other_urls": ["http://opendatacommons.org/licenses/pddl/1.0/", "https://opendatacommons.org/licenses/pddl/"]} \ No newline at end of file +{ + "key": "pddl-1.0", + "short_name": "PDDL 1.0", + "name": "Public Domain Dedication & Licence (PDDL)", + "category": "Public Domain", + "owner": "Open Data Commons", + "homepage_url": "http://opendatacommons.org/licenses/pddl/1-0/", + "spdx_license_key": "PDDL-1.0", + "text_urls": [ + "http://opendatacommons.org/licenses/pddl/1-0/" + ], + "other_urls": [ + "http://opendatacommons.org/licenses/pddl/1.0/", + "https://opendatacommons.org/licenses/pddl/" + ] +} \ No newline at end of file diff --git a/docs/pdf-creator-pilot.LICENSE b/docs/pdf-creator-pilot.LICENSE index 298586426d..9a71ead8e9 100644 --- a/docs/pdf-creator-pilot.LICENSE +++ b/docs/pdf-creator-pilot.LICENSE @@ -1,3 +1,19 @@ +--- +key: pdf-creator-pilot +short_name: PDF Creator Pilot License Agreement +name: PDF Creator Pilot License Agreement +category: Commercial +owner: Two Pilots +homepage_url: http://www.colorpilot.com/pdflibrary_eula.html +spdx_license_key: LicenseRef-scancode-pdf-creator-pilot +ignorable_copyrights: + - Copyright (c) 1999-2012 Two Pilots and its licensors +ignorable_holders: + - Two Pilots and its licensors +ignorable_urls: + - http://www.colorpilot.com/ +--- + PDF Creator Pilot License Agreement This is a legal agreement ('Agreement') between you, the end user, and Two Pilots. This agreement defines the licensing terms for the PDF Creator Pilot which is software shipped as a Windows Installer Package and includes all related documentation, examples, web pages, and other materials which support the use of the PDF Creator Pilot (collectively, the 'Software'). diff --git a/docs/pdf-creator-pilot.html b/docs/pdf-creator-pilot.html index 216185a184..22ed980409 100644 --- a/docs/pdf-creator-pilot.html +++ b/docs/pdf-creator-pilot.html @@ -192,7 +192,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/pdf-creator-pilot.json b/docs/pdf-creator-pilot.json index 3df535089d..cfc8d8f08e 100644 --- a/docs/pdf-creator-pilot.json +++ b/docs/pdf-creator-pilot.json @@ -1 +1,18 @@ -{"key": "pdf-creator-pilot", "short_name": "PDF Creator Pilot License Agreement", "name": "PDF Creator Pilot License Agreement", "category": "Commercial", "owner": "Two Pilots", "homepage_url": "http://www.colorpilot.com/pdflibrary_eula.html", "spdx_license_key": "LicenseRef-scancode-pdf-creator-pilot", "ignorable_copyrights": ["Copyright (c) 1999-2012 Two Pilots and its licensors"], "ignorable_holders": ["Two Pilots and its licensors"], "ignorable_urls": ["http://www.colorpilot.com/"]} \ No newline at end of file +{ + "key": "pdf-creator-pilot", + "short_name": "PDF Creator Pilot License Agreement", + "name": "PDF Creator Pilot License Agreement", + "category": "Commercial", + "owner": "Two Pilots", + "homepage_url": "http://www.colorpilot.com/pdflibrary_eula.html", + "spdx_license_key": "LicenseRef-scancode-pdf-creator-pilot", + "ignorable_copyrights": [ + "Copyright (c) 1999-2012 Two Pilots and its licensors" + ], + "ignorable_holders": [ + "Two Pilots and its licensors" + ], + "ignorable_urls": [ + "http://www.colorpilot.com/" + ] +} \ No newline at end of file diff --git a/docs/pdl-1.0.LICENSE b/docs/pdl-1.0.LICENSE index dac09c761d..20d6592043 100644 --- a/docs/pdl-1.0.LICENSE +++ b/docs/pdl-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: pdl-1.0 +short_name: PDL-1.0 +name: Public Documentation License Version 1.0 +category: Copyleft Limited +owner: Apache Software Foundation +homepage_url: https://www.openoffice.org/licenses/PDL.html +notes: this is a derivative of the MPL used in legacy OpenOffice. +spdx_license_key: LicenseRef-scancode-pdl-1.0 +other_urls: + - https://www.openoffice.org/licenses/PDL.rtf + - https://www.openoffice.org/licenses/pdl.pdf +--- + PUBLIC DOCUMENTATION LICENSE Version 1.0 @@ -278,4 +292,4 @@ hyperlink/alias]). NOTE: The text of this Appendix may differ slightly from the text of the notices in the files of the Original Documentation. You should use the text of this Appendix rather than the text found in the Original -Documentation for Your Modifications. +Documentation for Your Modifications. \ No newline at end of file diff --git a/docs/pdl-1.0.html b/docs/pdl-1.0.html index 40442a7bfc..2be3b44f11 100644 --- a/docs/pdl-1.0.html +++ b/docs/pdl-1.0.html @@ -411,8 +411,7 @@ NOTE: The text of this Appendix may differ slightly from the text of the notices in the files of the Original Documentation. You should use the text of this Appendix rather than the text found in the Original -Documentation for Your Modifications. - +Documentation for Your Modifications.
@@ -424,7 +423,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/pdl-1.0.json b/docs/pdl-1.0.json index 1afa7621a4..22bd927491 100644 --- a/docs/pdl-1.0.json +++ b/docs/pdl-1.0.json @@ -1 +1,14 @@ -{"key": "pdl-1.0", "short_name": "PDL-1.0", "name": "Public Documentation License Version 1.0", "category": "Copyleft Limited", "owner": "Apache Software Foundation", "homepage_url": "https://www.openoffice.org/licenses/PDL.html", "notes": "this is a derivative of the MPL used in legacy OpenOffice.", "spdx_license_key": "LicenseRef-scancode-pdl-1.0", "other_urls": ["https://www.openoffice.org/licenses/PDL.rtf", "https://www.openoffice.org/licenses/pdl.pdf"]} \ No newline at end of file +{ + "key": "pdl-1.0", + "short_name": "PDL-1.0", + "name": "Public Documentation License Version 1.0", + "category": "Copyleft Limited", + "owner": "Apache Software Foundation", + "homepage_url": "https://www.openoffice.org/licenses/PDL.html", + "notes": "this is a derivative of the MPL used in legacy OpenOffice.", + "spdx_license_key": "LicenseRef-scancode-pdl-1.0", + "other_urls": [ + "https://www.openoffice.org/licenses/PDL.rtf", + "https://www.openoffice.org/licenses/pdl.pdf" + ] +} \ No newline at end of file diff --git a/docs/perl-1.0.LICENSE b/docs/perl-1.0.LICENSE index 1826677e4a..966a339d02 100644 --- a/docs/perl-1.0.LICENSE +++ b/docs/perl-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: perl-1.0 +short_name: Perl 1.0 +name: Perl 1.0 +category: Permissive +owner: Perl Foundation +spdx_license_key: LicenseRef-scancode-perl-1.0 +ignorable_copyrights: + - Copyright (c) 1987, Larry Wall +ignorable_holders: + - Larry Wall +--- + Perl Kit, Version 1.0 Copyright (c) 1987, Larry Wall diff --git a/docs/perl-1.0.html b/docs/perl-1.0.html index ec1c931786..d4be646310 100644 --- a/docs/perl-1.0.html +++ b/docs/perl-1.0.html @@ -143,7 +143,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/perl-1.0.json b/docs/perl-1.0.json index f0e54624e7..6f798aab5a 100644 --- a/docs/perl-1.0.json +++ b/docs/perl-1.0.json @@ -1 +1,14 @@ -{"key": "perl-1.0", "short_name": "Perl 1.0", "name": "Perl 1.0", "category": "Permissive", "owner": "Perl Foundation", "spdx_license_key": "LicenseRef-scancode-perl-1.0", "ignorable_copyrights": ["Copyright (c) 1987, Larry Wall"], "ignorable_holders": ["Larry Wall"]} \ No newline at end of file +{ + "key": "perl-1.0", + "short_name": "Perl 1.0", + "name": "Perl 1.0", + "category": "Permissive", + "owner": "Perl Foundation", + "spdx_license_key": "LicenseRef-scancode-perl-1.0", + "ignorable_copyrights": [ + "Copyright (c) 1987, Larry Wall" + ], + "ignorable_holders": [ + "Larry Wall" + ] +} \ No newline at end of file diff --git a/docs/peter-deutsch-document.LICENSE b/docs/peter-deutsch-document.LICENSE index 361f39887b..2c549bf2e7 100644 --- a/docs/peter-deutsch-document.LICENSE +++ b/docs/peter-deutsch-document.LICENSE @@ -1,3 +1,15 @@ +--- +key: peter-deutsch-document +short_name: Peter Deutsch Document License +name: Peter Deutsch Document License +category: Permissive +owner: Peter Deutsch +homepage_url: http://www.ietf.org/rfc/rfc1952.txt +spdx_license_key: LicenseRef-scancode-peter-deutsch-document +text_urls: + - http://www.ietf.org/rfc/rfc1952.txt +--- + Permission is granted to copy and distribute this document for any purpose and without charge, including translations into other languages and incorporation into compilations, provided that the diff --git a/docs/peter-deutsch-document.html b/docs/peter-deutsch-document.html index a09da42246..b1e4bd1938 100644 --- a/docs/peter-deutsch-document.html +++ b/docs/peter-deutsch-document.html @@ -141,7 +141,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/peter-deutsch-document.json b/docs/peter-deutsch-document.json index 7e56217b27..9549d0adef 100644 --- a/docs/peter-deutsch-document.json +++ b/docs/peter-deutsch-document.json @@ -1 +1,12 @@ -{"key": "peter-deutsch-document", "short_name": "Peter Deutsch Document License", "name": "Peter Deutsch Document License", "category": "Permissive", "owner": "Peter Deutsch", "homepage_url": "http://www.ietf.org/rfc/rfc1952.txt", "spdx_license_key": "LicenseRef-scancode-peter-deutsch-document", "text_urls": ["http://www.ietf.org/rfc/rfc1952.txt"]} \ No newline at end of file +{ + "key": "peter-deutsch-document", + "short_name": "Peter Deutsch Document License", + "name": "Peter Deutsch Document License", + "category": "Permissive", + "owner": "Peter Deutsch", + "homepage_url": "http://www.ietf.org/rfc/rfc1952.txt", + "spdx_license_key": "LicenseRef-scancode-peter-deutsch-document", + "text_urls": [ + "http://www.ietf.org/rfc/rfc1952.txt" + ] +} \ No newline at end of file diff --git a/docs/pfe-proprietary-notice.LICENSE b/docs/pfe-proprietary-notice.LICENSE index 4e26c5d74f..ea9fca014a 100644 --- a/docs/pfe-proprietary-notice.LICENSE +++ b/docs/pfe-proprietary-notice.LICENSE @@ -1,3 +1,13 @@ +--- +key: pfe-proprietary-notice +short_name: PFE Proprietary Notice +name: PFE Proprietary Notice +category: Proprietary Free +owner: Alan Phillips +homepage_url: https://www.lancaster.ac.uk/staff/steveb/cpaap/pfe/ +spdx_license_key: LicenseRef-scancode-pfe-proprietary-notice +--- + You expect me to believe that this stuff is free? I could get people to pay for this? Yes, it's completely free - you'll find the minimalist terms and conditions in the various readme files (you do look at readme files, don't you?) in the release ZIP archives and in the help file; but basically you can use PFE at home, at work, in the car and any improbable location of your choice without paying me a penny (or cent, if you're across the planet from where I am). diff --git a/docs/pfe-proprietary-notice.html b/docs/pfe-proprietary-notice.html index d0719e52b1..a5ed02bd7c 100644 --- a/docs/pfe-proprietary-notice.html +++ b/docs/pfe-proprietary-notice.html @@ -130,7 +130,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/pfe-proprietary-notice.json b/docs/pfe-proprietary-notice.json index 8f011969bf..f2f8076469 100644 --- a/docs/pfe-proprietary-notice.json +++ b/docs/pfe-proprietary-notice.json @@ -1 +1,9 @@ -{"key": "pfe-proprietary-notice", "short_name": "PFE Proprietary Notice", "name": "PFE Proprietary Notice", "category": "Proprietary Free", "owner": "Alan Phillips", "homepage_url": "https://www.lancaster.ac.uk/staff/steveb/cpaap/pfe/", "spdx_license_key": "LicenseRef-scancode-pfe-proprietary-notice"} \ No newline at end of file +{ + "key": "pfe-proprietary-notice", + "short_name": "PFE Proprietary Notice", + "name": "PFE Proprietary Notice", + "category": "Proprietary Free", + "owner": "Alan Phillips", + "homepage_url": "https://www.lancaster.ac.uk/staff/steveb/cpaap/pfe/", + "spdx_license_key": "LicenseRef-scancode-pfe-proprietary-notice" +} \ No newline at end of file diff --git a/docs/pftijah-1.1.LICENSE b/docs/pftijah-1.1.LICENSE index b27ef08492..d80f81beda 100644 --- a/docs/pftijah-1.1.LICENSE +++ b/docs/pftijah-1.1.LICENSE @@ -1,3 +1,15 @@ +--- +key: pftijah-1.1 +short_name: PfTijah Public License 1.1 +name: PfTijah Public License v1.1 +category: Copyleft Limited +owner: University of Twente +homepage_url: http://dbappl.cs.utwente.nl/Legal/PfTijah-1.1.html +spdx_license_key: LicenseRef-scancode-pftijah-1.1 +ignorable_urls: + - http://dbappl.cs.utwente.nl/Legal/PfTijah-1.1.html +--- + PfTijah Public License Version 1.1 This License is a derivative of the MonetDB Public License Version 1.1, where the difference is that all references to "MonetDB" and "CWI" have been changed to "PfTijah" and "University of Twente" diff --git a/docs/pftijah-1.1.html b/docs/pftijah-1.1.html index f645d73282..7c3f036a0a 100644 --- a/docs/pftijah-1.1.html +++ b/docs/pftijah-1.1.html @@ -305,7 +305,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/pftijah-1.1.json b/docs/pftijah-1.1.json index 403ae4ab92..0fd7a25f38 100644 --- a/docs/pftijah-1.1.json +++ b/docs/pftijah-1.1.json @@ -1 +1,12 @@ -{"key": "pftijah-1.1", "short_name": "PfTijah Public License 1.1", "name": "PfTijah Public License v1.1", "category": "Copyleft Limited", "owner": "University of Twente", "homepage_url": "http://dbappl.cs.utwente.nl/Legal/PfTijah-1.1.html", "spdx_license_key": "LicenseRef-scancode-pftijah-1.1", "ignorable_urls": ["http://dbappl.cs.utwente.nl/Legal/PfTijah-1.1.html"]} \ No newline at end of file +{ + "key": "pftijah-1.1", + "short_name": "PfTijah Public License 1.1", + "name": "PfTijah Public License v1.1", + "category": "Copyleft Limited", + "owner": "University of Twente", + "homepage_url": "http://dbappl.cs.utwente.nl/Legal/PfTijah-1.1.html", + "spdx_license_key": "LicenseRef-scancode-pftijah-1.1", + "ignorable_urls": [ + "http://dbappl.cs.utwente.nl/Legal/PfTijah-1.1.html" + ] +} \ No newline at end of file diff --git a/docs/pftus-1.1.LICENSE b/docs/pftus-1.1.LICENSE index 07f02ceb0d..bba7d84eca 100644 --- a/docs/pftus-1.1.LICENSE +++ b/docs/pftus-1.1.LICENSE @@ -1,3 +1,13 @@ +--- +key: pftus-1.1 +short_name: PFTUS-license +name: Protected Free To Use Software License +category: Proprietary Free +owner: Unspecified +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-pftus-1.1 +--- + The P.F.T.U.S(Protected Free To Use Software) License Version 1.1x @@ -48,4 +58,4 @@ original software). * github.com * AND any domain with written permissions Changing is not permitted, -redistribution is allowed. Some rights reserved. +redistribution is allowed. Some rights reserved. \ No newline at end of file diff --git a/docs/pftus-1.1.html b/docs/pftus-1.1.html index a4cf9a148c..692c426d12 100644 --- a/docs/pftus-1.1.html +++ b/docs/pftus-1.1.html @@ -165,8 +165,7 @@ * github.com * AND any domain with written permissions Changing is not permitted, -redistribution is allowed. Some rights reserved. - +redistribution is allowed. Some rights reserved.
@@ -178,7 +177,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/pftus-1.1.json b/docs/pftus-1.1.json index 24c1f7ed5a..96776cf856 100644 --- a/docs/pftus-1.1.json +++ b/docs/pftus-1.1.json @@ -1 +1,9 @@ -{"key": "pftus-1.1", "short_name": "PFTUS-license", "name": "Protected Free To Use Software License", "category": "Proprietary Free", "owner": "Unspecified", "notes": "From https://github.com/ErikMcClure/bad-licenses", "spdx_license_key": "LicenseRef-scancode-pftus-1.1"} \ No newline at end of file +{ + "key": "pftus-1.1", + "short_name": "PFTUS-license", + "name": "Protected Free To Use Software License", + "category": "Proprietary Free", + "owner": "Unspecified", + "notes": "From https://github.com/ErikMcClure/bad-licenses", + "spdx_license_key": "LicenseRef-scancode-pftus-1.1" +} \ No newline at end of file diff --git a/docs/phil-bunce.LICENSE b/docs/phil-bunce.LICENSE index 04298518e4..6dd6f88153 100644 --- a/docs/phil-bunce.LICENSE +++ b/docs/phil-bunce.LICENSE @@ -1 +1,11 @@ +--- +key: phil-bunce +short_name: Phil Bunce License +name: Phil Bunce License +category: Public Domain +owner: Phil Bunce +homepage_url: http://www.philbunce.com/pmon/ +spdx_license_key: LicenseRef-scancode-phil-bunce +--- + Feel free to use this code any way you wish, but please remember it comes without any sort of warranty. \ No newline at end of file diff --git a/docs/phil-bunce.html b/docs/phil-bunce.html index 5084e7bb48..3931d5e949 100644 --- a/docs/phil-bunce.html +++ b/docs/phil-bunce.html @@ -127,7 +127,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/phil-bunce.json b/docs/phil-bunce.json index 99afdcca4b..677449b999 100644 --- a/docs/phil-bunce.json +++ b/docs/phil-bunce.json @@ -1 +1,9 @@ -{"key": "phil-bunce", "short_name": "Phil Bunce License", "name": "Phil Bunce License", "category": "Public Domain", "owner": "Phil Bunce", "homepage_url": "http://www.philbunce.com/pmon/", "spdx_license_key": "LicenseRef-scancode-phil-bunce"} \ No newline at end of file +{ + "key": "phil-bunce", + "short_name": "Phil Bunce License", + "name": "Phil Bunce License", + "category": "Public Domain", + "owner": "Phil Bunce", + "homepage_url": "http://www.philbunce.com/pmon/", + "spdx_license_key": "LicenseRef-scancode-phil-bunce" +} \ No newline at end of file diff --git a/docs/philippe-de-muyter.LICENSE b/docs/philippe-de-muyter.LICENSE index 5c32054465..770a9a19b5 100644 --- a/docs/philippe-de-muyter.LICENSE +++ b/docs/philippe-de-muyter.LICENSE @@ -1,3 +1,13 @@ +--- +key: philippe-de-muyter +short_name: Philippe De Muyter License +name: Philippe De Muyter License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-philippe-de-muyter +minimum_coverage: 50 +--- + 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. \ No newline at end of file diff --git a/docs/philippe-de-muyter.html b/docs/philippe-de-muyter.html index 35e649a044..59097746b6 100644 --- a/docs/philippe-de-muyter.html +++ b/docs/philippe-de-muyter.html @@ -129,7 +129,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/philippe-de-muyter.json b/docs/philippe-de-muyter.json index 712ea87433..421e8ba306 100644 --- a/docs/philippe-de-muyter.json +++ b/docs/philippe-de-muyter.json @@ -1 +1,9 @@ -{"key": "philippe-de-muyter", "short_name": "Philippe De Muyter License", "name": "Philippe De Muyter License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-philippe-de-muyter", "minimum_coverage": 50} \ No newline at end of file +{ + "key": "philippe-de-muyter", + "short_name": "Philippe De Muyter License", + "name": "Philippe De Muyter License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-philippe-de-muyter", + "minimum_coverage": 50 +} \ No newline at end of file diff --git a/docs/philips-proprietary-notice-2000.LICENSE b/docs/philips-proprietary-notice-2000.LICENSE index 9bf662dffe..ceded73fff 100644 --- a/docs/philips-proprietary-notice-2000.LICENSE +++ b/docs/philips-proprietary-notice-2000.LICENSE @@ -1,4 +1,14 @@ - +--- +key: philips-proprietary-notice-2000 +short_name: Philips Proprietary Notice 2000 +name: Philips Proprietary Notice 2000 +category: Commercial +owner: Philips Electronics +spdx_license_key: LicenseRef-scancode-philips-proprietary-notice2000 +other_spdx_license_keys: + - LicenseRef-scancode-philips-proprietary-notice-2000 +--- + This source code and any compilation or derivative thereof is the sole property of Philips Corporation and is provided pursuant to a Software License Agreement. This code is the proprietary information of diff --git a/docs/philips-proprietary-notice-2000.html b/docs/philips-proprietary-notice-2000.html index 02c1e551dc..fc4cdb784c 100644 --- a/docs/philips-proprietary-notice-2000.html +++ b/docs/philips-proprietary-notice-2000.html @@ -117,8 +117,7 @@
license_text
-
                                                                             
-This source code and any compilation or derivative thereof is the sole       
+    
This source code and any compilation or derivative thereof is the sole       
 property of Philips Corporation and is provided pursuant to a Software       
 License Agreement.  This code is the proprietary information of              
 Philips Corporation and is confidential in nature.  Its use and              
@@ -136,7 +135,8 @@
       AboutCode
     

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/philips-proprietary-notice-2000.json b/docs/philips-proprietary-notice-2000.json index bd749b0520..d1f1505b50 100644 --- a/docs/philips-proprietary-notice-2000.json +++ b/docs/philips-proprietary-notice-2000.json @@ -1 +1,11 @@ -{"key": "philips-proprietary-notice-2000", "short_name": "Philips Proprietary Notice 2000", "name": "Philips Proprietary Notice 2000", "category": "Commercial", "owner": "Philips Electronics", "spdx_license_key": "LicenseRef-scancode-philips-proprietary-notice2000", "other_spdx_license_keys": ["LicenseRef-scancode-philips-proprietary-notice-2000"]} \ No newline at end of file +{ + "key": "philips-proprietary-notice-2000", + "short_name": "Philips Proprietary Notice 2000", + "name": "Philips Proprietary Notice 2000", + "category": "Commercial", + "owner": "Philips Electronics", + "spdx_license_key": "LicenseRef-scancode-philips-proprietary-notice2000", + "other_spdx_license_keys": [ + "LicenseRef-scancode-philips-proprietary-notice-2000" + ] +} \ No newline at end of file diff --git a/docs/phorum-2.0.LICENSE b/docs/phorum-2.0.LICENSE index 4104d0f1e1..90873c42cc 100644 --- a/docs/phorum-2.0.LICENSE +++ b/docs/phorum-2.0.LICENSE @@ -1,3 +1,31 @@ +--- +key: phorum-2.0 +short_name: Phorum License 2.0 +name: Phorum License 2.0 +category: Permissive +owner: Phorum +homepage_url: http://www.phorum.org/license.txt +spdx_license_key: LicenseRef-scancode-phorum-2.0 +text_urls: + - http://www.phorum.org/license.txt +other_urls: + - http://phorum.org/ +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 2001 The Phorum Development Team + - copyright (c) 2000 The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation + - The Phorum Development Team +ignorable_authors: + - the Phorum Development Team (http://phorum.org/) +ignorable_urls: + - http://phorum.org/ + - http://www.apache.org/ +ignorable_emails: + - core@phorum.org +--- + The Phorum License 2.0. Copyright (c) 2001 The Phorum Development Team. All rights @@ -59,4 +87,4 @@ The original version of the license is copyright (c) 2000 The Apache Software Foundation. All rights reserved. For more information on the Apache Software Foundation, please -see . +see . \ No newline at end of file diff --git a/docs/phorum-2.0.html b/docs/phorum-2.0.html index 384292fc0e..ebb4944895 100644 --- a/docs/phorum-2.0.html +++ b/docs/phorum-2.0.html @@ -246,8 +246,7 @@ Software Foundation. All rights reserved. For more information on the Apache Software Foundation, please -see <http://www.apache.org/>. -
+see <http://www.apache.org/>.
@@ -259,7 +258,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/phorum-2.0.json b/docs/phorum-2.0.json index 2966731be9..bf8ad31492 100644 --- a/docs/phorum-2.0.json +++ b/docs/phorum-2.0.json @@ -1 +1,34 @@ -{"key": "phorum-2.0", "short_name": "Phorum License 2.0", "name": "Phorum License 2.0", "category": "Permissive", "owner": "Phorum", "homepage_url": "http://www.phorum.org/license.txt", "spdx_license_key": "LicenseRef-scancode-phorum-2.0", "text_urls": ["http://www.phorum.org/license.txt"], "other_urls": ["http://phorum.org/"], "minimum_coverage": 80, "ignorable_copyrights": ["Copyright (c) 2001 The Phorum Development Team", "copyright (c) 2000 The Apache Software Foundation"], "ignorable_holders": ["The Apache Software Foundation", "The Phorum Development Team"], "ignorable_authors": ["the Phorum Development Team (http://phorum.org/)"], "ignorable_urls": ["http://phorum.org/", "http://www.apache.org/"], "ignorable_emails": ["core@phorum.org"]} \ No newline at end of file +{ + "key": "phorum-2.0", + "short_name": "Phorum License 2.0", + "name": "Phorum License 2.0", + "category": "Permissive", + "owner": "Phorum", + "homepage_url": "http://www.phorum.org/license.txt", + "spdx_license_key": "LicenseRef-scancode-phorum-2.0", + "text_urls": [ + "http://www.phorum.org/license.txt" + ], + "other_urls": [ + "http://phorum.org/" + ], + "minimum_coverage": 80, + "ignorable_copyrights": [ + "Copyright (c) 2001 The Phorum Development Team", + "copyright (c) 2000 The Apache Software Foundation" + ], + "ignorable_holders": [ + "The Apache Software Foundation", + "The Phorum Development Team" + ], + "ignorable_authors": [ + "the Phorum Development Team (http://phorum.org/)" + ], + "ignorable_urls": [ + "http://phorum.org/", + "http://www.apache.org/" + ], + "ignorable_emails": [ + "core@phorum.org" + ] +} \ No newline at end of file diff --git a/docs/php-2.0.2.LICENSE b/docs/php-2.0.2.LICENSE index af5b01c49a..e325cdbce5 100644 --- a/docs/php-2.0.2.LICENSE +++ b/docs/php-2.0.2.LICENSE @@ -1,3 +1,25 @@ +--- +key: php-2.0.2 +short_name: PHP License 2.0.2 +name: PHP License 2.0.2 +category: Permissive +owner: PHP Project +homepage_url: http://www.php.net/license/2_02.txt +spdx_license_key: LicenseRef-scancode-php-2.0.2 +osi_url: http://www.opensource.org/licenses/php.html +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 1999 - 2002 The PHP Group +ignorable_holders: + - The PHP Group +ignorable_urls: + - http://www.php.net/ + - http://www.php.net/license/ZendGrant + - http://www.zend.com/license/ZendLicense +ignorable_emails: + - group@php.net +--- + -------------------------------------------------------------------- The PHP License, version 2.02 Copyright (c) 1999 - 2002 The PHP Group. All rights reserved. @@ -72,4 +94,4 @@ individuals on behalf of the PHP Group. The PHP Group can be contacted via Email at group@php.net. For more information on the PHP Group and the PHP project, -please see . +please see . \ No newline at end of file diff --git a/docs/php-2.0.2.html b/docs/php-2.0.2.html index fd8ceda275..bc091107f2 100644 --- a/docs/php-2.0.2.html +++ b/docs/php-2.0.2.html @@ -239,8 +239,7 @@ The PHP Group can be contacted via Email at group@php.net. For more information on the PHP Group and the PHP project, -please see <http://www.php.net>. - +please see <http://www.php.net>.
@@ -252,7 +251,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/php-2.0.2.json b/docs/php-2.0.2.json index 504d9c388d..7448673c79 100644 --- a/docs/php-2.0.2.json +++ b/docs/php-2.0.2.json @@ -1 +1,25 @@ -{"key": "php-2.0.2", "short_name": "PHP License 2.0.2", "name": "PHP License 2.0.2", "category": "Permissive", "owner": "PHP Project", "homepage_url": "http://www.php.net/license/2_02.txt", "spdx_license_key": "LicenseRef-scancode-php-2.0.2", "osi_url": "http://www.opensource.org/licenses/php.html", "minimum_coverage": 60, "ignorable_copyrights": ["Copyright (c) 1999 - 2002 The PHP Group"], "ignorable_holders": ["The PHP Group"], "ignorable_urls": ["http://www.php.net/", "http://www.php.net/license/ZendGrant", "http://www.zend.com/license/ZendLicense"], "ignorable_emails": ["group@php.net"]} \ No newline at end of file +{ + "key": "php-2.0.2", + "short_name": "PHP License 2.0.2", + "name": "PHP License 2.0.2", + "category": "Permissive", + "owner": "PHP Project", + "homepage_url": "http://www.php.net/license/2_02.txt", + "spdx_license_key": "LicenseRef-scancode-php-2.0.2", + "osi_url": "http://www.opensource.org/licenses/php.html", + "minimum_coverage": 60, + "ignorable_copyrights": [ + "Copyright (c) 1999 - 2002 The PHP Group" + ], + "ignorable_holders": [ + "The PHP Group" + ], + "ignorable_urls": [ + "http://www.php.net/", + "http://www.php.net/license/ZendGrant", + "http://www.zend.com/license/ZendLicense" + ], + "ignorable_emails": [ + "group@php.net" + ] +} \ No newline at end of file diff --git a/docs/php-3.0.LICENSE b/docs/php-3.0.LICENSE index 6fc5fc7ae1..ccb3e741a7 100644 --- a/docs/php-3.0.LICENSE +++ b/docs/php-3.0.LICENSE @@ -1,3 +1,32 @@ +--- +key: php-3.0 +short_name: PHP License 3.0 +name: PHP License 3.0 +category: Permissive +owner: PHP Project +homepage_url: http://www.php.net/license/ +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: PHP-3.0 +text_urls: + - http://www.php.net/license/ +osi_url: http://www.opensource.org/licenses/php.html +faq_url: http://www.php.net/license/index.php#faq-lic +other_urls: + - http://www.opensource.org/licenses/PHP-3.0 + - http://www.php.net/license/3_0.txt + - https://opensource.org/licenses/PHP-3.0 +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 1999 - 2006 The PHP Group +ignorable_holders: + - The PHP Group +ignorable_urls: + - http://www.php.net/ + - http://www.zend.com/ +ignorable_emails: + - group@php.net +--- + -------------------------------------------------------------------- The PHP License, version 3.0 Copyright (c) 1999 - 2006 The PHP Group. All rights reserved. diff --git a/docs/php-3.0.html b/docs/php-3.0.html index ad625164dc..e15b2bbe24 100644 --- a/docs/php-3.0.html +++ b/docs/php-3.0.html @@ -276,7 +276,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/php-3.0.json b/docs/php-3.0.json index d37eff0b2c..694fb617e6 100644 --- a/docs/php-3.0.json +++ b/docs/php-3.0.json @@ -1 +1,34 @@ -{"key": "php-3.0", "short_name": "PHP License 3.0", "name": "PHP License 3.0", "category": "Permissive", "owner": "PHP Project", "homepage_url": "http://www.php.net/license/", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "PHP-3.0", "text_urls": ["http://www.php.net/license/"], "osi_url": "http://www.opensource.org/licenses/php.html", "faq_url": "http://www.php.net/license/index.php#faq-lic", "other_urls": ["http://www.opensource.org/licenses/PHP-3.0", "http://www.php.net/license/3_0.txt", "https://opensource.org/licenses/PHP-3.0"], "minimum_coverage": 60, "ignorable_copyrights": ["Copyright (c) 1999 - 2006 The PHP Group"], "ignorable_holders": ["The PHP Group"], "ignorable_urls": ["http://www.php.net/", "http://www.zend.com/"], "ignorable_emails": ["group@php.net"]} \ No newline at end of file +{ + "key": "php-3.0", + "short_name": "PHP License 3.0", + "name": "PHP License 3.0", + "category": "Permissive", + "owner": "PHP Project", + "homepage_url": "http://www.php.net/license/", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "PHP-3.0", + "text_urls": [ + "http://www.php.net/license/" + ], + "osi_url": "http://www.opensource.org/licenses/php.html", + "faq_url": "http://www.php.net/license/index.php#faq-lic", + "other_urls": [ + "http://www.opensource.org/licenses/PHP-3.0", + "http://www.php.net/license/3_0.txt", + "https://opensource.org/licenses/PHP-3.0" + ], + "minimum_coverage": 60, + "ignorable_copyrights": [ + "Copyright (c) 1999 - 2006 The PHP Group" + ], + "ignorable_holders": [ + "The PHP Group" + ], + "ignorable_urls": [ + "http://www.php.net/", + "http://www.zend.com/" + ], + "ignorable_emails": [ + "group@php.net" + ] +} \ No newline at end of file diff --git a/docs/php-3.01.LICENSE b/docs/php-3.01.LICENSE index 319219b6fe..6acf238a49 100644 --- a/docs/php-3.01.LICENSE +++ b/docs/php-3.01.LICENSE @@ -1,3 +1,33 @@ +--- +key: php-3.01 +short_name: PHP License 3.01 +name: PHP License 3.01 +category: Permissive +owner: PHP Project +homepage_url: http://www.php.net/license/3_01.txt +notes: | + Per SPDX.org, the PHP License v3.01 is essentially the same as v3.0, with + the exceoption of a couple word differences and updated url in section 6. + v3.01 came into use with PHP version 4 and onward. +spdx_license_key: PHP-3.01 +text_urls: + - http://www.php.net/license/3_01.txt +other_urls: + - http://www.php.net/software/ + - http://www.zend.com +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 1999 - 2012 The PHP Group +ignorable_holders: + - The PHP Group +ignorable_urls: + - http://www.php.net/ + - http://www.php.net/software/ + - http://www.zend.com/ +ignorable_emails: + - group@php.net +--- + The PHP License, version 3.01 Copyright (c) 1999 - 2012 The PHP Group. All rights reserved. diff --git a/docs/php-3.01.html b/docs/php-3.01.html index 42aadaf40a..fe2ec37b7c 100644 --- a/docs/php-3.01.html +++ b/docs/php-3.01.html @@ -264,7 +264,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/php-3.01.json b/docs/php-3.01.json index 36920ff3e5..96ca8b0ba5 100644 --- a/docs/php-3.01.json +++ b/docs/php-3.01.json @@ -1 +1,32 @@ -{"key": "php-3.01", "short_name": "PHP License 3.01", "name": "PHP License 3.01", "category": "Permissive", "owner": "PHP Project", "homepage_url": "http://www.php.net/license/3_01.txt", "notes": "Per SPDX.org, the PHP License v3.01 is essentially the same as v3.0, with\nthe exceoption of a couple word differences and updated url in section 6.\nv3.01 came into use with PHP version 4 and onward.\n", "spdx_license_key": "PHP-3.01", "text_urls": ["http://www.php.net/license/3_01.txt"], "other_urls": ["http://www.php.net/software/", "http://www.zend.com"], "minimum_coverage": 60, "ignorable_copyrights": ["Copyright (c) 1999 - 2012 The PHP Group"], "ignorable_holders": ["The PHP Group"], "ignorable_urls": ["http://www.php.net/", "http://www.php.net/software/", "http://www.zend.com/"], "ignorable_emails": ["group@php.net"]} \ No newline at end of file +{ + "key": "php-3.01", + "short_name": "PHP License 3.01", + "name": "PHP License 3.01", + "category": "Permissive", + "owner": "PHP Project", + "homepage_url": "http://www.php.net/license/3_01.txt", + "notes": "Per SPDX.org, the PHP License v3.01 is essentially the same as v3.0, with\nthe exceoption of a couple word differences and updated url in section 6.\nv3.01 came into use with PHP version 4 and onward.\n", + "spdx_license_key": "PHP-3.01", + "text_urls": [ + "http://www.php.net/license/3_01.txt" + ], + "other_urls": [ + "http://www.php.net/software/", + "http://www.zend.com" + ], + "minimum_coverage": 60, + "ignorable_copyrights": [ + "Copyright (c) 1999 - 2012 The PHP Group" + ], + "ignorable_holders": [ + "The PHP Group" + ], + "ignorable_urls": [ + "http://www.php.net/", + "http://www.php.net/software/", + "http://www.zend.com/" + ], + "ignorable_emails": [ + "group@php.net" + ] +} \ No newline at end of file diff --git a/docs/pine.LICENSE b/docs/pine.LICENSE index 48f37f4159..5446c1c1cf 100644 --- a/docs/pine.LICENSE +++ b/docs/pine.LICENSE @@ -1,3 +1,21 @@ +--- +key: pine +short_name: Pine License +name: Pine License +category: Permissive +owner: University of Washington IT +homepage_url: http://www.washington.edu/pine/overview/legal.html +spdx_license_key: LicenseRef-scancode-pine +text_urls: + - http://www.washington.edu/pine/overview/legal.html +other_urls: + - http://www.washington.edu/pine/ +ignorable_copyrights: + - Copyright 1989-2007 by the University of Washington +ignorable_holders: + - the University of Washington +--- + Pine License and Legal Notices Pine and Pico are registered trademarks of the University of Washington. No commercial use of these diff --git a/docs/pine.html b/docs/pine.html index 027050b92e..77017fe951 100644 --- a/docs/pine.html +++ b/docs/pine.html @@ -232,7 +232,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/pine.json b/docs/pine.json index 6eab05352d..2dc66f8ade 100644 --- a/docs/pine.json +++ b/docs/pine.json @@ -1 +1,21 @@ -{"key": "pine", "short_name": "Pine License", "name": "Pine License", "category": "Permissive", "owner": "University of Washington IT", "homepage_url": "http://www.washington.edu/pine/overview/legal.html", "spdx_license_key": "LicenseRef-scancode-pine", "text_urls": ["http://www.washington.edu/pine/overview/legal.html"], "other_urls": ["http://www.washington.edu/pine/"], "ignorable_copyrights": ["Copyright 1989-2007 by the University of Washington"], "ignorable_holders": ["the University of Washington"]} \ No newline at end of file +{ + "key": "pine", + "short_name": "Pine License", + "name": "Pine License", + "category": "Permissive", + "owner": "University of Washington IT", + "homepage_url": "http://www.washington.edu/pine/overview/legal.html", + "spdx_license_key": "LicenseRef-scancode-pine", + "text_urls": [ + "http://www.washington.edu/pine/overview/legal.html" + ], + "other_urls": [ + "http://www.washington.edu/pine/" + ], + "ignorable_copyrights": [ + "Copyright 1989-2007 by the University of Washington" + ], + "ignorable_holders": [ + "the University of Washington" + ] +} \ No newline at end of file diff --git a/docs/pivotal-tou.LICENSE b/docs/pivotal-tou.LICENSE index df0fb3301d..aaac9af085 100644 --- a/docs/pivotal-tou.LICENSE +++ b/docs/pivotal-tou.LICENSE @@ -1,3 +1,16 @@ +--- +key: pivotal-tou +short_name: Pivotal Software Terms of Use +name: Pivotal Software Terms of Use +category: Commercial +owner: Pivotal +homepage_url: https://pivotal.io/terms-of-use +spdx_license_key: LicenseRef-scancode-pivotal-tou +minimum_coverage: 90 +ignorable_urls: + - https://pivotal.io/terms-of-use +--- + Pivotal Software, Inc. Terms of Use See https://pivotal.io/terms-of-use for complete text. diff --git a/docs/pivotal-tou.html b/docs/pivotal-tou.html index 6fd8f635e6..ea6921da9c 100644 --- a/docs/pivotal-tou.html +++ b/docs/pivotal-tou.html @@ -159,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/pivotal-tou.json b/docs/pivotal-tou.json index 754254109c..00163391c2 100644 --- a/docs/pivotal-tou.json +++ b/docs/pivotal-tou.json @@ -1 +1,13 @@ -{"key": "pivotal-tou", "short_name": "Pivotal Software Terms of Use", "name": "Pivotal Software Terms of Use", "category": "Commercial", "owner": "Pivotal", "homepage_url": "https://pivotal.io/terms-of-use", "spdx_license_key": "LicenseRef-scancode-pivotal-tou", "minimum_coverage": 90, "ignorable_urls": ["https://pivotal.io/terms-of-use"]} \ No newline at end of file +{ + "key": "pivotal-tou", + "short_name": "Pivotal Software Terms of Use", + "name": "Pivotal Software Terms of Use", + "category": "Commercial", + "owner": "Pivotal", + "homepage_url": "https://pivotal.io/terms-of-use", + "spdx_license_key": "LicenseRef-scancode-pivotal-tou", + "minimum_coverage": 90, + "ignorable_urls": [ + "https://pivotal.io/terms-of-use" + ] +} \ No newline at end of file diff --git a/docs/pixabay-content.LICENSE b/docs/pixabay-content.LICENSE index 9c6da5be1c..b4832cadeb 100644 --- a/docs/pixabay-content.LICENSE +++ b/docs/pixabay-content.LICENSE @@ -1,3 +1,13 @@ +--- +key: pixabay-content +short_name: Pixabay Content License +name: Pixabay Content License +category: Free Restricted +owner: Pixabay +homepage_url: https://pixabay.com/service/terms/#license +spdx_license_key: LicenseRef-scancode-pixabay-content +--- + License for Content – Pixabay License Content on Pixabay is made available to you on the following terms ("Pixabay License"). Under the Pixabay License you are granted an irrevocable, worldwide, non-exclusive and royalty free right to use, download, copy, modify or adapt the Content for commercial or non-commercial purposes. Attribution of the photographer, videographer, musician or Pixabay is not required but is always appreciated. diff --git a/docs/pixabay-content.html b/docs/pixabay-content.html index 34e54383ba..fa6f8ad9c0 100644 --- a/docs/pixabay-content.html +++ b/docs/pixabay-content.html @@ -138,7 +138,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/pixabay-content.json b/docs/pixabay-content.json index 260f93548f..ea0842e832 100644 --- a/docs/pixabay-content.json +++ b/docs/pixabay-content.json @@ -1 +1,9 @@ -{"key": "pixabay-content", "short_name": "Pixabay Content License", "name": "Pixabay Content License", "category": "Free Restricted", "owner": "Pixabay", "homepage_url": "https://pixabay.com/service/terms/#license", "spdx_license_key": "LicenseRef-scancode-pixabay-content"} \ No newline at end of file +{ + "key": "pixabay-content", + "short_name": "Pixabay Content License", + "name": "Pixabay Content License", + "category": "Free Restricted", + "owner": "Pixabay", + "homepage_url": "https://pixabay.com/service/terms/#license", + "spdx_license_key": "LicenseRef-scancode-pixabay-content" +} \ No newline at end of file diff --git a/docs/planet-source-code.LICENSE b/docs/planet-source-code.LICENSE index 49ee30b770..9b0aa94b17 100644 --- a/docs/planet-source-code.LICENSE +++ b/docs/planet-source-code.LICENSE @@ -1,3 +1,12 @@ +--- +key: planet-source-code +short_name: Planet Source Code License +name: Planet Source Code License +category: Free Restricted +owner: Planet Source Code +spdx_license_key: LicenseRef-scancode-planet-source-code +--- + Terms of Agreement: By using this code, you agree to the following terms... diff --git a/docs/planet-source-code.html b/docs/planet-source-code.html index 700eb3e2ff..b692569d0f 100644 --- a/docs/planet-source-code.html +++ b/docs/planet-source-code.html @@ -129,7 +129,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/planet-source-code.json b/docs/planet-source-code.json index 883976715e..8e2828d764 100644 --- a/docs/planet-source-code.json +++ b/docs/planet-source-code.json @@ -1 +1,8 @@ -{"key": "planet-source-code", "short_name": "Planet Source Code License", "name": "Planet Source Code License", "category": "Free Restricted", "owner": "Planet Source Code", "spdx_license_key": "LicenseRef-scancode-planet-source-code"} \ No newline at end of file +{ + "key": "planet-source-code", + "short_name": "Planet Source Code License", + "name": "Planet Source Code License", + "category": "Free Restricted", + "owner": "Planet Source Code", + "spdx_license_key": "LicenseRef-scancode-planet-source-code" +} \ No newline at end of file diff --git a/docs/plural-20211124.LICENSE b/docs/plural-20211124.LICENSE new file mode 100644 index 0000000000..dff6571e23 --- /dev/null +++ b/docs/plural-20211124.LICENSE @@ -0,0 +1,936 @@ +--- +key: plural-20211124 +short_name: Plural Licensing 20211124 +name: Plural Licensing 20211124 +category: Source-available +owner: Plural +homepage_url: https://github.com/pluralsh/plural/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-plural-20211124 +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. + - Copyright (c) 2021 Plural Labs, Inc +ignorable_holders: + - Free Software Foundation, Inc. + - Plural Labs, Inc +ignorable_urls: + - http://fsf.org/ + - http://www.apache.org/licenses/ + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.gnu.org/licenses/ +ignorable_emails: + - commercial@plural.sh +--- + +Plural Licensing + +SOFTWARE LICENSING + +You are licensed to use compiled versions of the Plural platform produced by Plural Labs, Inc. under an MIT LICENSE + +You may be licensed to use source code to create compiled versions not produced by Plural Labs, Inc. in one of three ways: + +1. Under the Free Software Foundation’s GNU AGPL v.3.0, subject to the exceptions outlined in this policy; or +2. Under a commercial license available from Plural Labs, Inc. by contacting commercial@plural.sh +3. Creating a licensed installation on app.plural.sh + +You are licensed to use the source code in Admin Tools and Configuration Files (plural/) under the Apache License v2.0. + +We promise that we will not enforce the copyleft provisions in AGPL v3.0 against you if your application (a) does not +link to the Plural Platform directly, but exclusively uses the Plural Admin Tools and Configuration Files, and +(b) you have not modified, added to or adapted the source code of Plural in a way that results in the creation of +a “modified version” or “work based on” Plural as these terms are defined in the AGPL v3.0 license. + + +------------------------------------------------------------------------------------------------------------------------------ +MIT License + +Copyright (c) 2021 Plural Labs, Inc + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +------------------------------------------------------------------------------------------------------------------------------ + + 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. + +------------------------------------------------------------------------------ + +The software is released under the terms of the GNU Affero General Public +License, version 3. + + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are 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. + + 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. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + 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 Affero 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. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + 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 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 work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero 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 Affero 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 Affero 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 Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + 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 AGPL, see +. \ No newline at end of file diff --git a/docs/plural-20211124.html b/docs/plural-20211124.html new file mode 100644 index 0000000000..f0889ccb70 --- /dev/null +++ b/docs/plural-20211124.html @@ -0,0 +1,1098 @@ + + + + + + LicenseDB: plural-20211124 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + plural-20211124 + +
+ +
short_name
+
+ + Plural Licensing 20211124 + +
+ +
name
+
+ + Plural Licensing 20211124 + +
+ +
category
+
+ + Source-available + +
+ +
owner
+
+ + Plural + +
+ +
homepage_url
+
+ + https://github.com/pluralsh/plural/blob/master/LICENSE + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-plural-20211124 + +
+ +
ignorable_copyrights
+
+ +
    +
  • Copyright (c) 2007 Free Software Foundation, Inc. <http://fsf.org/>
  • Copyright (c) 2021 Plural Labs, Inc
  • +
+ +
+ +
ignorable_holders
+
+ +
    +
  • Free Software Foundation, Inc.
  • Plural Labs, Inc
  • +
+ +
+ +
ignorable_urls
+
+ + + +
+ +
ignorable_emails
+
+ + + +
+ +
+
license_text
+
Plural Licensing
+
+SOFTWARE LICENSING
+
+You are licensed to use compiled versions of the Plural platform produced by Plural Labs, Inc. under an MIT LICENSE
+
+You may be licensed to use source code to create compiled versions not produced by Plural Labs, Inc. in one of three ways:
+
+1. Under the Free Software Foundation’s GNU AGPL v.3.0, subject to the exceptions outlined in this policy; or
+2. Under a commercial license available from Plural Labs, Inc. by contacting commercial@plural.sh
+3. Creating a licensed installation on app.plural.sh
+
+You are licensed to use the source code in Admin Tools and Configuration Files (plural/) under the Apache License v2.0.
+
+We promise that we will not enforce the copyleft provisions in AGPL v3.0 against you if your application (a) does not
+link to the Plural Platform directly, but exclusively uses the Plural Admin Tools and Configuration Files, and
+(b) you have not modified, added to or adapted the source code of Plural in a way that results in the creation of
+a “modified version” or “work based on” Plural as these terms are defined in the AGPL v3.0 license.
+
+
+------------------------------------------------------------------------------------------------------------------------------
+MIT License
+
+Copyright (c) 2021 Plural Labs, Inc
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+------------------------------------------------------------------------------------------------------------------------------
+
+                               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.
+
+------------------------------------------------------------------------------
+
+The software is released under the terms of the GNU Affero General Public
+License, version 3.
+
+                    GNU AFFERO GENERAL PUBLIC LICENSE
+                       Version 3, 19 November 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 Affero General Public License is a free, copyleft license for
+software and other kinds of works, specifically designed to ensure
+cooperation with the community in the case of network server software.
+
+  The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works.  By contrast,
+our General Public Licenses are 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.
+
+  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.
+
+  Developers that use our General Public Licenses protect your rights
+with two steps: (1) assert copyright on the software, and (2) offer
+you this License which gives you legal permission to copy, distribute
+and/or modify the software.
+
+  A secondary benefit of defending all users' freedom is that
+improvements made in alternate versions of the program, if they
+receive widespread use, become available for other developers to
+incorporate.  Many developers of free software are heartened and
+encouraged by the resulting cooperation.  However, in the case of
+software used on network servers, this result may fail to come about.
+The GNU General Public License permits making a modified version and
+letting the public access it on a server without ever releasing its
+source code to the public.
+
+  The GNU Affero General Public License is designed specifically to
+ensure that, in such cases, the modified source code becomes available
+to the community.  It requires the operator of a network server to
+provide the source code of the modified version running there to the
+users of that server.  Therefore, public use of a modified version, on
+a publicly accessible server, gives the public access to the source
+code of the modified version.
+
+  An older license, called the Affero General Public License and
+published by Affero, was designed to accomplish similar goals.  This is
+a different license, not a version of the Affero GPL, but Affero has
+released a new version of the Affero GPL which permits relicensing under
+this license.
+
+  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 Affero 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. Remote Network Interaction; Use with the GNU General Public License.
+
+  Notwithstanding any other provision of this License, if you modify the
+Program, your modified version must prominently offer all users
+interacting with it remotely through a computer network (if your version
+supports such interaction) an opportunity to receive the Corresponding
+Source of your version by providing access to the Corresponding Source
+from a network server at no charge, through some standard or customary
+means of facilitating copying of software.  This Corresponding Source
+shall include the Corresponding Source for any work covered by version 3
+of the GNU General Public License that is incorporated pursuant to the
+following paragraph.
+
+  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 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 work with which it is combined will remain governed by version
+3 of the GNU General Public License.
+
+  14. Revised Versions of this License.
+
+  The Free Software Foundation may publish revised and/or new versions of
+the GNU Affero 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 Affero 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 Affero 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 Affero 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 Affero 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 Affero General Public License for more details.
+
+    You should have received a copy of the GNU Affero 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 your software can interact with users remotely through a computer
+network, you should also make sure that it provides a way for users to
+get its source.  For example, if your program is a web application, its
+interface could display a "Source" link that leads users to an archive
+of the code.  There are many ways you could offer source, and different
+solutions will be better for different programs; see section 13 for the
+specific requirements.
+
+  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 AGPL, see
+<http://www.gnu.org/licenses/>.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/plural-20211124.json b/docs/plural-20211124.json new file mode 100644 index 0000000000..c7d3a4f568 --- /dev/null +++ b/docs/plural-20211124.json @@ -0,0 +1,26 @@ +{ + "key": "plural-20211124", + "short_name": "Plural Licensing 20211124", + "name": "Plural Licensing 20211124", + "category": "Source-available", + "owner": "Plural", + "homepage_url": "https://github.com/pluralsh/plural/blob/master/LICENSE", + "spdx_license_key": "LicenseRef-scancode-plural-20211124", + "ignorable_copyrights": [ + "Copyright (c) 2007 Free Software Foundation, Inc. ", + "Copyright (c) 2021 Plural Labs, Inc" + ], + "ignorable_holders": [ + "Free Software Foundation, Inc.", + "Plural Labs, Inc" + ], + "ignorable_urls": [ + "http://fsf.org/", + "http://www.apache.org/licenses/", + "http://www.apache.org/licenses/LICENSE-2.0", + "http://www.gnu.org/licenses/" + ], + "ignorable_emails": [ + "commercial@plural.sh" + ] +} \ No newline at end of file diff --git a/docs/plural-20211124.yml b/docs/plural-20211124.yml new file mode 100644 index 0000000000..08b4146969 --- /dev/null +++ b/docs/plural-20211124.yml @@ -0,0 +1,20 @@ +key: plural-20211124 +short_name: Plural Licensing 20211124 +name: Plural Licensing 20211124 +category: Source-available +owner: Plural +homepage_url: https://github.com/pluralsh/plural/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-plural-20211124 +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. + - Copyright (c) 2021 Plural Labs, Inc +ignorable_holders: + - Free Software Foundation, Inc. + - Plural Labs, Inc +ignorable_urls: + - http://fsf.org/ + - http://www.apache.org/licenses/ + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.gnu.org/licenses/ +ignorable_emails: + - commercial@plural.sh diff --git a/docs/pml-2020.LICENSE b/docs/pml-2020.LICENSE index 5b35038d22..db3f7262d8 100644 --- a/docs/pml-2020.LICENSE +++ b/docs/pml-2020.LICENSE @@ -1,3 +1,15 @@ +--- +key: pml-2020 +short_name: Amazon PML 2020 +name: Amazon Program Materials License Agreement 2020 +category: Proprietary Free +owner: Amazon Web Services +homepage_url: https://developer.amazon.com/support/legal/pml +spdx_license_key: LicenseRef-scancode-pml-2020 +other_urls: + - https://github.com/alexa/avs-device-sdk/blob/703b06188eae146af396f58be4e47442d7ce5b1e/NOTICE.txt#L67 +--- + Last updated January 9, 2020 Current developers See what’s changed? diff --git a/docs/pml-2020.html b/docs/pml-2020.html index 292dc5c105..2c68544cda 100644 --- a/docs/pml-2020.html +++ b/docs/pml-2020.html @@ -242,7 +242,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/pml-2020.json b/docs/pml-2020.json index 700c48a049..6fabc3fff6 100644 --- a/docs/pml-2020.json +++ b/docs/pml-2020.json @@ -1 +1,12 @@ -{"key": "pml-2020", "short_name": "Amazon PML 2020", "name": "Amazon Program Materials License Agreement 2020", "category": "Proprietary Free", "owner": "Amazon Web Services", "homepage_url": "https://developer.amazon.com/support/legal/pml", "spdx_license_key": "LicenseRef-scancode-pml-2020", "other_urls": ["https://github.com/alexa/avs-device-sdk/blob/703b06188eae146af396f58be4e47442d7ce5b1e/NOTICE.txt#L67"]} \ No newline at end of file +{ + "key": "pml-2020", + "short_name": "Amazon PML 2020", + "name": "Amazon Program Materials License Agreement 2020", + "category": "Proprietary Free", + "owner": "Amazon Web Services", + "homepage_url": "https://developer.amazon.com/support/legal/pml", + "spdx_license_key": "LicenseRef-scancode-pml-2020", + "other_urls": [ + "https://github.com/alexa/avs-device-sdk/blob/703b06188eae146af396f58be4e47442d7ce5b1e/NOTICE.txt#L67" + ] +} \ No newline at end of file diff --git a/docs/pngsuite.LICENSE b/docs/pngsuite.LICENSE index ddd8f41857..d636987c08 100644 --- a/docs/pngsuite.LICENSE +++ b/docs/pngsuite.LICENSE @@ -1,2 +1,11 @@ +--- +key: pngsuite +short_name: PngSuite License +name: PngSuite License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-pngsuite +--- + Permission to use, copy, modify and distribute these images for any -purpose and without fee is hereby granted. +purpose and without fee is hereby granted. \ No newline at end of file diff --git a/docs/pngsuite.html b/docs/pngsuite.html index bc76c0b555..36aff0e810 100644 --- a/docs/pngsuite.html +++ b/docs/pngsuite.html @@ -109,8 +109,7 @@
license_text
Permission to use, copy, modify and distribute these images for any
-purpose and without fee is hereby granted.
-
+purpose and without fee is hereby granted.
@@ -122,7 +121,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/pngsuite.json b/docs/pngsuite.json index 0e1cc024b7..cf2b3728f5 100644 --- a/docs/pngsuite.json +++ b/docs/pngsuite.json @@ -1 +1,8 @@ -{"key": "pngsuite", "short_name": "PngSuite License", "name": "PngSuite License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-pngsuite"} \ No newline at end of file +{ + "key": "pngsuite", + "short_name": "PngSuite License", + "name": "PngSuite License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-pngsuite" +} \ No newline at end of file diff --git a/docs/politepix-pl-1.0.LICENSE b/docs/politepix-pl-1.0.LICENSE index c7f231e651..4167bfbffb 100644 --- a/docs/politepix-pl-1.0.LICENSE +++ b/docs/politepix-pl-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: politepix-pl-1.0 +short_name: Politepix Public License 1.0 +name: Politepix Public License 1.0 +category: Permissive +owner: Politepix +homepage_url: https://raw.githubusercontent.com/smkgeekfreak/OpenEarsPlaypen/master/License.txt +spdx_license_key: LicenseRef-scancode-politepix-pl-1.0 +ignorable_urls: + - http://cmusphinx.sourceforge.net/ + - http://www.politepix.com/contact + - http://www.politepix.com/openears +--- + Politepix Public License version 1.0 Definitions diff --git a/docs/politepix-pl-1.0.html b/docs/politepix-pl-1.0.html index fccf06c39a..b900b9da08 100644 --- a/docs/politepix-pl-1.0.html +++ b/docs/politepix-pl-1.0.html @@ -172,7 +172,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/politepix-pl-1.0.json b/docs/politepix-pl-1.0.json index 30765624b2..96b3a7744c 100644 --- a/docs/politepix-pl-1.0.json +++ b/docs/politepix-pl-1.0.json @@ -1 +1,14 @@ -{"key": "politepix-pl-1.0", "short_name": "Politepix Public License 1.0", "name": "Politepix Public License 1.0", "category": "Permissive", "owner": "Politepix", "homepage_url": "https://raw.githubusercontent.com/smkgeekfreak/OpenEarsPlaypen/master/License.txt", "spdx_license_key": "LicenseRef-scancode-politepix-pl-1.0", "ignorable_urls": ["http://cmusphinx.sourceforge.net/", "http://www.politepix.com/contact", "http://www.politepix.com/openears"]} \ No newline at end of file +{ + "key": "politepix-pl-1.0", + "short_name": "Politepix Public License 1.0", + "name": "Politepix Public License 1.0", + "category": "Permissive", + "owner": "Politepix", + "homepage_url": "https://raw.githubusercontent.com/smkgeekfreak/OpenEarsPlaypen/master/License.txt", + "spdx_license_key": "LicenseRef-scancode-politepix-pl-1.0", + "ignorable_urls": [ + "http://cmusphinx.sourceforge.net/", + "http://www.politepix.com/contact", + "http://www.politepix.com/openears" + ] +} \ No newline at end of file diff --git a/docs/polyform-defensive-1.0.0.LICENSE b/docs/polyform-defensive-1.0.0.LICENSE index 93f03489dc..5ac56bc957 100644 --- a/docs/polyform-defensive-1.0.0.LICENSE +++ b/docs/polyform-defensive-1.0.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: polyform-defensive-1.0.0 +is_deprecated: yes +short_name: PolyForm Defensive License 1.0.0 +name: PolyForm Defensive License 1.0.0 +category: Source-available +owner: Polyform +homepage_url: https://polyformproject.org/licenses/defensive-licenses/1.0.0/ +notes: renamed to polyform-shield-1.0 +ignorable_copyrights: + - Copyright Yoyodyne, Inc. (http://example.com) +ignorable_holders: + - Yoyodyne, Inc. +ignorable_urls: + - https://polyformproject.org/licenses/defensive/1.0.0 +--- + # PolyForm Defensive License 1.0.0 diff --git a/docs/polyform-defensive-1.0.0.html b/docs/polyform-defensive-1.0.0.html index e62f6b0de7..d066cebe40 100644 --- a/docs/polyform-defensive-1.0.0.html +++ b/docs/polyform-defensive-1.0.0.html @@ -324,7 +324,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/polyform-defensive-1.0.0.json b/docs/polyform-defensive-1.0.0.json index 36931fe9aa..85b33fffca 100644 --- a/docs/polyform-defensive-1.0.0.json +++ b/docs/polyform-defensive-1.0.0.json @@ -1 +1,19 @@ -{"key": "polyform-defensive-1.0.0", "is_deprecated": true, "short_name": "PolyForm Defensive License 1.0.0", "name": "PolyForm Defensive License 1.0.0", "category": "Source-available", "owner": "Polyform", "homepage_url": "https://polyformproject.org/licenses/defensive-licenses/1.0.0/", "notes": "renamed to polyform-shield-1.0", "ignorable_copyrights": ["Copyright Yoyodyne, Inc. (http://example.com)"], "ignorable_holders": ["Yoyodyne, Inc."], "ignorable_urls": ["https://polyformproject.org/licenses/defensive/1.0.0"]} \ No newline at end of file +{ + "key": "polyform-defensive-1.0.0", + "is_deprecated": true, + "short_name": "PolyForm Defensive License 1.0.0", + "name": "PolyForm Defensive License 1.0.0", + "category": "Source-available", + "owner": "Polyform", + "homepage_url": "https://polyformproject.org/licenses/defensive-licenses/1.0.0/", + "notes": "renamed to polyform-shield-1.0", + "ignorable_copyrights": [ + "Copyright Yoyodyne, Inc. (http://example.com)" + ], + "ignorable_holders": [ + "Yoyodyne, Inc." + ], + "ignorable_urls": [ + "https://polyformproject.org/licenses/defensive/1.0.0" + ] +} \ No newline at end of file diff --git a/docs/polyform-free-trial-1.0.0.LICENSE b/docs/polyform-free-trial-1.0.0.LICENSE index 78e8552ecf..5c6324b1b7 100644 --- a/docs/polyform-free-trial-1.0.0.LICENSE +++ b/docs/polyform-free-trial-1.0.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: polyform-free-trial-1.0.0 +short_name: Polyform Free Trial License 1.0.0 +name: Polyform Free Trial License 1.0.0 +category: Source-available +owner: Polyform +homepage_url: https://polyformproject.org/licenses/free-trial/1.0.0/ +spdx_license_key: LicenseRef-scancode-polyform-free-trial-1.0.0 +text_urls: + - https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Free-Trial-1.0.0.txt +ignorable_urls: + - https://polyformproject.org/licenses/free-trial/1.0.0 +--- + # Polyform Free Trial License 1.0.0 diff --git a/docs/polyform-free-trial-1.0.0.html b/docs/polyform-free-trial-1.0.0.html index 0f49e1ecb3..e431fd6d26 100644 --- a/docs/polyform-free-trial-1.0.0.html +++ b/docs/polyform-free-trial-1.0.0.html @@ -237,7 +237,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/polyform-free-trial-1.0.0.json b/docs/polyform-free-trial-1.0.0.json index c4b4132674..b818763735 100644 --- a/docs/polyform-free-trial-1.0.0.json +++ b/docs/polyform-free-trial-1.0.0.json @@ -1 +1,15 @@ -{"key": "polyform-free-trial-1.0.0", "short_name": "Polyform Free Trial License 1.0.0", "name": "Polyform Free Trial License 1.0.0", "category": "Source-available", "owner": "Polyform", "homepage_url": "https://polyformproject.org/licenses/free-trial/1.0.0/", "spdx_license_key": "LicenseRef-scancode-polyform-free-trial-1.0.0", "text_urls": ["https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Free-Trial-1.0.0.txt"], "ignorable_urls": ["https://polyformproject.org/licenses/free-trial/1.0.0"]} \ No newline at end of file +{ + "key": "polyform-free-trial-1.0.0", + "short_name": "Polyform Free Trial License 1.0.0", + "name": "Polyform Free Trial License 1.0.0", + "category": "Source-available", + "owner": "Polyform", + "homepage_url": "https://polyformproject.org/licenses/free-trial/1.0.0/", + "spdx_license_key": "LicenseRef-scancode-polyform-free-trial-1.0.0", + "text_urls": [ + "https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Free-Trial-1.0.0.txt" + ], + "ignorable_urls": [ + "https://polyformproject.org/licenses/free-trial/1.0.0" + ] +} \ No newline at end of file diff --git a/docs/polyform-internal-use-1.0.0.LICENSE b/docs/polyform-internal-use-1.0.0.LICENSE index b7aadd6aa4..b1df6610f7 100644 --- a/docs/polyform-internal-use-1.0.0.LICENSE +++ b/docs/polyform-internal-use-1.0.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: polyform-internal-use-1.0.0 +short_name: Polyform Internal Use License 1.0.0 +name: Polyform Internal Use License 1.0.0 +category: Source-available +owner: Polyform +homepage_url: https://polyformproject.org/licenses/internal-use/1.0.0/ +spdx_license_key: LicenseRef-scancode-polyform-internal-use-1.0.0 +text_urls: + - https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Internal-Use-1.0.0.txt +ignorable_urls: + - https://polyformproject.org/licenses/internal-use/1.0.0 +--- + # Polyform Internal Use License 1.0.0 diff --git a/docs/polyform-internal-use-1.0.0.html b/docs/polyform-internal-use-1.0.0.html index 9bf309952a..edfbb15dd4 100644 --- a/docs/polyform-internal-use-1.0.0.html +++ b/docs/polyform-internal-use-1.0.0.html @@ -240,7 +240,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/polyform-internal-use-1.0.0.json b/docs/polyform-internal-use-1.0.0.json index 7e262b629f..02e7f70f60 100644 --- a/docs/polyform-internal-use-1.0.0.json +++ b/docs/polyform-internal-use-1.0.0.json @@ -1 +1,15 @@ -{"key": "polyform-internal-use-1.0.0", "short_name": "Polyform Internal Use License 1.0.0", "name": "Polyform Internal Use License 1.0.0", "category": "Source-available", "owner": "Polyform", "homepage_url": "https://polyformproject.org/licenses/internal-use/1.0.0/", "spdx_license_key": "LicenseRef-scancode-polyform-internal-use-1.0.0", "text_urls": ["https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Internal-Use-1.0.0.txt"], "ignorable_urls": ["https://polyformproject.org/licenses/internal-use/1.0.0"]} \ No newline at end of file +{ + "key": "polyform-internal-use-1.0.0", + "short_name": "Polyform Internal Use License 1.0.0", + "name": "Polyform Internal Use License 1.0.0", + "category": "Source-available", + "owner": "Polyform", + "homepage_url": "https://polyformproject.org/licenses/internal-use/1.0.0/", + "spdx_license_key": "LicenseRef-scancode-polyform-internal-use-1.0.0", + "text_urls": [ + "https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Internal-Use-1.0.0.txt" + ], + "ignorable_urls": [ + "https://polyformproject.org/licenses/internal-use/1.0.0" + ] +} \ No newline at end of file diff --git a/docs/polyform-noncommercial-1.0.0.LICENSE b/docs/polyform-noncommercial-1.0.0.LICENSE index 6a25e1654d..1a0028412a 100644 --- a/docs/polyform-noncommercial-1.0.0.LICENSE +++ b/docs/polyform-noncommercial-1.0.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: polyform-noncommercial-1.0.0 +short_name: Polyform Noncommercial License 1.0.0 +name: Polyform Noncommercial License 1.0.0 +category: Source-available +owner: Polyform +homepage_url: https://polyformproject.org/licenses/noncommercial/1.0.0/ +spdx_license_key: PolyForm-Noncommercial-1.0.0 +text_urls: + - https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Noncommercial-1.0.0.txt +other_urls: + - https://polyformproject.org/licenses/noncommercial/1.0.0 +ignorable_copyrights: + - Copyright Yoyodyne, Inc. (http://example.com) +ignorable_holders: + - Yoyodyne, Inc. +ignorable_urls: + - https://polyformproject.org/licenses/noncommercial/1.0.0 +--- + # Polyform Noncommercial License 1.0.0 diff --git a/docs/polyform-noncommercial-1.0.0.html b/docs/polyform-noncommercial-1.0.0.html index 9013be755e..8e646fb061 100644 --- a/docs/polyform-noncommercial-1.0.0.html +++ b/docs/polyform-noncommercial-1.0.0.html @@ -302,7 +302,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/polyform-noncommercial-1.0.0.json b/docs/polyform-noncommercial-1.0.0.json index 40510523a0..c33868c2fa 100644 --- a/docs/polyform-noncommercial-1.0.0.json +++ b/docs/polyform-noncommercial-1.0.0.json @@ -1 +1,24 @@ -{"key": "polyform-noncommercial-1.0.0", "short_name": "Polyform Noncommercial License 1.0.0", "name": "Polyform Noncommercial License 1.0.0", "category": "Source-available", "owner": "Polyform", "homepage_url": "https://polyformproject.org/licenses/noncommercial/1.0.0/", "spdx_license_key": "PolyForm-Noncommercial-1.0.0", "text_urls": ["https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Noncommercial-1.0.0.txt"], "other_urls": ["https://polyformproject.org/licenses/noncommercial/1.0.0"], "ignorable_copyrights": ["Copyright Yoyodyne, Inc. (http://example.com)"], "ignorable_holders": ["Yoyodyne, Inc."], "ignorable_urls": ["https://polyformproject.org/licenses/noncommercial/1.0.0"]} \ No newline at end of file +{ + "key": "polyform-noncommercial-1.0.0", + "short_name": "Polyform Noncommercial License 1.0.0", + "name": "Polyform Noncommercial License 1.0.0", + "category": "Source-available", + "owner": "Polyform", + "homepage_url": "https://polyformproject.org/licenses/noncommercial/1.0.0/", + "spdx_license_key": "PolyForm-Noncommercial-1.0.0", + "text_urls": [ + "https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Noncommercial-1.0.0.txt" + ], + "other_urls": [ + "https://polyformproject.org/licenses/noncommercial/1.0.0" + ], + "ignorable_copyrights": [ + "Copyright Yoyodyne, Inc. (http://example.com)" + ], + "ignorable_holders": [ + "Yoyodyne, Inc." + ], + "ignorable_urls": [ + "https://polyformproject.org/licenses/noncommercial/1.0.0" + ] +} \ No newline at end of file diff --git a/docs/polyform-perimeter-1.0.0.LICENSE b/docs/polyform-perimeter-1.0.0.LICENSE index 017a3d45ec..86b532a5a7 100644 --- a/docs/polyform-perimeter-1.0.0.LICENSE +++ b/docs/polyform-perimeter-1.0.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: polyform-perimeter-1.0.0 +short_name: PolyForm Perimeter License 1.0.0 +name: PolyForm Perimeter License 1.0.0 +category: Source-available +owner: Polyform +homepage_url: https://polyformproject.org/licenses/perimeter/1.0.0/ +spdx_license_key: LicenseRef-scancode-polyform-perimeter-1.0.0 +other_urls: + - https://heathermeeker.com/2020/05/25/polyform-project-launches-licenses-limiting-competitive-uses-of-software/ +ignorable_copyrights: + - Copyright Yoyodyne, Inc. (http://example.com) +ignorable_holders: + - Yoyodyne, Inc. +ignorable_urls: + - https://polyformproject.org/licenses/perimeter/1.0.0 +--- + # PolyForm Perimeter License 1.0.0 diff --git a/docs/polyform-perimeter-1.0.0.html b/docs/polyform-perimeter-1.0.0.html index 0cc0577bd0..5008bda552 100644 --- a/docs/polyform-perimeter-1.0.0.html +++ b/docs/polyform-perimeter-1.0.0.html @@ -291,7 +291,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/polyform-perimeter-1.0.0.json b/docs/polyform-perimeter-1.0.0.json index 4b4dc65772..8989772d60 100644 --- a/docs/polyform-perimeter-1.0.0.json +++ b/docs/polyform-perimeter-1.0.0.json @@ -1 +1,21 @@ -{"key": "polyform-perimeter-1.0.0", "short_name": "PolyForm Perimeter License 1.0.0", "name": "PolyForm Perimeter License 1.0.0", "category": "Source-available", "owner": "Polyform", "homepage_url": "https://polyformproject.org/licenses/perimeter/1.0.0/", "spdx_license_key": "LicenseRef-scancode-polyform-perimeter-1.0.0", "other_urls": ["https://heathermeeker.com/2020/05/25/polyform-project-launches-licenses-limiting-competitive-uses-of-software/"], "ignorable_copyrights": ["Copyright Yoyodyne, Inc. (http://example.com)"], "ignorable_holders": ["Yoyodyne, Inc."], "ignorable_urls": ["https://polyformproject.org/licenses/perimeter/1.0.0"]} \ No newline at end of file +{ + "key": "polyform-perimeter-1.0.0", + "short_name": "PolyForm Perimeter License 1.0.0", + "name": "PolyForm Perimeter License 1.0.0", + "category": "Source-available", + "owner": "Polyform", + "homepage_url": "https://polyformproject.org/licenses/perimeter/1.0.0/", + "spdx_license_key": "LicenseRef-scancode-polyform-perimeter-1.0.0", + "other_urls": [ + "https://heathermeeker.com/2020/05/25/polyform-project-launches-licenses-limiting-competitive-uses-of-software/" + ], + "ignorable_copyrights": [ + "Copyright Yoyodyne, Inc. (http://example.com)" + ], + "ignorable_holders": [ + "Yoyodyne, Inc." + ], + "ignorable_urls": [ + "https://polyformproject.org/licenses/perimeter/1.0.0" + ] +} \ No newline at end of file diff --git a/docs/polyform-shield-1.0.0.LICENSE b/docs/polyform-shield-1.0.0.LICENSE index 3f09b052c0..f5b65469ce 100644 --- a/docs/polyform-shield-1.0.0.LICENSE +++ b/docs/polyform-shield-1.0.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: polyform-shield-1.0.0 +short_name: Polyform Shield License 1.0.0 +name: Polyform Shield License 1.0.0 +category: Source-available +owner: Polyform +homepage_url: https://polyformproject.org/licenses/shield/1.0.0/ +spdx_license_key: LicenseRef-scancode-polyform-shield-1.0.0 +other_spdx_license_keys: + - LicenseRef-scancode-polyform-defensive-1.0.0 +text_urls: + - https://polyformproject.org/wp-content/uploads/2020/06/PolyForm-Shield-1.0.0.txt +ignorable_copyrights: + - Copyright Yoyodyne, Inc. (http://example.com) +ignorable_holders: + - Yoyodyne, Inc. +ignorable_urls: + - https://polyformproject.org/licenses/shield/1.0.0 +--- + # PolyForm Shield License 1.0.0 @@ -161,4 +181,4 @@ indirect. software under these terms. **Use** means anything you do with the software requiring one -of your licenses. +of your licenses. \ No newline at end of file diff --git a/docs/polyform-shield-1.0.0.html b/docs/polyform-shield-1.0.0.html index ad3a5c9522..f2cf494660 100644 --- a/docs/polyform-shield-1.0.0.html +++ b/docs/polyform-shield-1.0.0.html @@ -323,8 +323,7 @@ software under these terms. **Use** means anything you do with the software requiring one -of your licenses. - +of your licenses.
@@ -336,7 +335,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/polyform-shield-1.0.0.json b/docs/polyform-shield-1.0.0.json index 3ab4be5cd1..3330a50c44 100644 --- a/docs/polyform-shield-1.0.0.json +++ b/docs/polyform-shield-1.0.0.json @@ -1 +1,24 @@ -{"key": "polyform-shield-1.0.0", "short_name": "Polyform Shield License 1.0.0", "name": "Polyform Shield License 1.0.0", "category": "Source-available", "owner": "Polyform", "homepage_url": "https://polyformproject.org/licenses/shield/1.0.0/", "spdx_license_key": "LicenseRef-scancode-polyform-shield-1.0.0", "other_spdx_license_keys": ["LicenseRef-scancode-polyform-defensive-1.0.0"], "text_urls": ["https://polyformproject.org/wp-content/uploads/2020/06/PolyForm-Shield-1.0.0.txt"], "ignorable_copyrights": ["Copyright Yoyodyne, Inc. (http://example.com)"], "ignorable_holders": ["Yoyodyne, Inc."], "ignorable_urls": ["https://polyformproject.org/licenses/shield/1.0.0"]} \ No newline at end of file +{ + "key": "polyform-shield-1.0.0", + "short_name": "Polyform Shield License 1.0.0", + "name": "Polyform Shield License 1.0.0", + "category": "Source-available", + "owner": "Polyform", + "homepage_url": "https://polyformproject.org/licenses/shield/1.0.0/", + "spdx_license_key": "LicenseRef-scancode-polyform-shield-1.0.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-polyform-defensive-1.0.0" + ], + "text_urls": [ + "https://polyformproject.org/wp-content/uploads/2020/06/PolyForm-Shield-1.0.0.txt" + ], + "ignorable_copyrights": [ + "Copyright Yoyodyne, Inc. (http://example.com)" + ], + "ignorable_holders": [ + "Yoyodyne, Inc." + ], + "ignorable_urls": [ + "https://polyformproject.org/licenses/shield/1.0.0" + ] +} \ No newline at end of file diff --git a/docs/polyform-small-business-1.0.0.LICENSE b/docs/polyform-small-business-1.0.0.LICENSE index 3ddff5fa52..e8cf067b13 100644 --- a/docs/polyform-small-business-1.0.0.LICENSE +++ b/docs/polyform-small-business-1.0.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: polyform-small-business-1.0.0 +short_name: Polyform Small Business License 1.0.0 +name: Polyform Small Business License 1.0.0 +category: Source-available +owner: Polyform +homepage_url: https://polyformproject.org/licenses/small-business/1.0.0/ +spdx_license_key: PolyForm-Small-Business-1.0.0 +text_urls: + - https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Small-Business-1.0.0.txt +other_urls: + - https://polyformproject.org/licenses/small-business/1.0.0 +ignorable_copyrights: + - Copyright Yoyodyne, Inc. (http://example.com) +ignorable_holders: + - Yoyodyne, Inc. +ignorable_urls: + - https://polyformproject.org/licenses/small-business/1.0.0 +--- + # Polyform Small Business License 1.0.0 diff --git a/docs/polyform-small-business-1.0.0.html b/docs/polyform-small-business-1.0.0.html index 089db82bf1..33d656c486 100644 --- a/docs/polyform-small-business-1.0.0.html +++ b/docs/polyform-small-business-1.0.0.html @@ -292,7 +292,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/polyform-small-business-1.0.0.json b/docs/polyform-small-business-1.0.0.json index eda2f4b4c2..42e128669b 100644 --- a/docs/polyform-small-business-1.0.0.json +++ b/docs/polyform-small-business-1.0.0.json @@ -1 +1,24 @@ -{"key": "polyform-small-business-1.0.0", "short_name": "Polyform Small Business License 1.0.0", "name": "Polyform Small Business License 1.0.0", "category": "Source-available", "owner": "Polyform", "homepage_url": "https://polyformproject.org/licenses/small-business/1.0.0/", "spdx_license_key": "PolyForm-Small-Business-1.0.0", "text_urls": ["https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Small-Business-1.0.0.txt"], "other_urls": ["https://polyformproject.org/licenses/small-business/1.0.0"], "ignorable_copyrights": ["Copyright Yoyodyne, Inc. (http://example.com)"], "ignorable_holders": ["Yoyodyne, Inc."], "ignorable_urls": ["https://polyformproject.org/licenses/small-business/1.0.0"]} \ No newline at end of file +{ + "key": "polyform-small-business-1.0.0", + "short_name": "Polyform Small Business License 1.0.0", + "name": "Polyform Small Business License 1.0.0", + "category": "Source-available", + "owner": "Polyform", + "homepage_url": "https://polyformproject.org/licenses/small-business/1.0.0/", + "spdx_license_key": "PolyForm-Small-Business-1.0.0", + "text_urls": [ + "https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Small-Business-1.0.0.txt" + ], + "other_urls": [ + "https://polyformproject.org/licenses/small-business/1.0.0" + ], + "ignorable_copyrights": [ + "Copyright Yoyodyne, Inc. (http://example.com)" + ], + "ignorable_holders": [ + "Yoyodyne, Inc." + ], + "ignorable_urls": [ + "https://polyformproject.org/licenses/small-business/1.0.0" + ] +} \ No newline at end of file diff --git a/docs/polyform-strict-1.0.0.LICENSE b/docs/polyform-strict-1.0.0.LICENSE index f531e3eb9f..dfe5bf50e5 100644 --- a/docs/polyform-strict-1.0.0.LICENSE +++ b/docs/polyform-strict-1.0.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: polyform-strict-1.0.0 +short_name: Polyform Strict License 1.0.0 +name: Polyform Strict License 1.0.0 +category: Proprietary Free +owner: Polyform +homepage_url: https://polyformproject.org/licenses/strict/1.0.0/ +spdx_license_key: LicenseRef-scancode-polyform-strict-1.0.0 +text_urls: + - https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Strict-1.0.0.txt +ignorable_urls: + - https://polyformproject.org/licenses/strict/1.0.0 +--- + # Polyform Strict License 1.0.0 diff --git a/docs/polyform-strict-1.0.0.html b/docs/polyform-strict-1.0.0.html index e9ce369032..b4aa1a9a5c 100644 --- a/docs/polyform-strict-1.0.0.html +++ b/docs/polyform-strict-1.0.0.html @@ -248,7 +248,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/polyform-strict-1.0.0.json b/docs/polyform-strict-1.0.0.json index 1164b1d31a..c01e4006c6 100644 --- a/docs/polyform-strict-1.0.0.json +++ b/docs/polyform-strict-1.0.0.json @@ -1 +1,15 @@ -{"key": "polyform-strict-1.0.0", "short_name": "Polyform Strict License 1.0.0", "name": "Polyform Strict License 1.0.0", "category": "Proprietary Free", "owner": "Polyform", "homepage_url": "https://polyformproject.org/licenses/strict/1.0.0/", "spdx_license_key": "LicenseRef-scancode-polyform-strict-1.0.0", "text_urls": ["https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Strict-1.0.0.txt"], "ignorable_urls": ["https://polyformproject.org/licenses/strict/1.0.0"]} \ No newline at end of file +{ + "key": "polyform-strict-1.0.0", + "short_name": "Polyform Strict License 1.0.0", + "name": "Polyform Strict License 1.0.0", + "category": "Proprietary Free", + "owner": "Polyform", + "homepage_url": "https://polyformproject.org/licenses/strict/1.0.0/", + "spdx_license_key": "LicenseRef-scancode-polyform-strict-1.0.0", + "text_urls": [ + "https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Strict-1.0.0.txt" + ], + "ignorable_urls": [ + "https://polyformproject.org/licenses/strict/1.0.0" + ] +} \ No newline at end of file diff --git a/docs/postgresql.LICENSE b/docs/postgresql.LICENSE index 0ed1c43bc2..aa5f14587d 100644 --- a/docs/postgresql.LICENSE +++ b/docs/postgresql.LICENSE @@ -1,3 +1,27 @@ +--- +key: postgresql +short_name: PostgreSQL License +name: PostgreSQL License +category: Permissive +owner: PostgreSQL +homepage_url: http://www.postgresql.org/about/licence +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: PostgreSQL +text_urls: + - http://www.opensource.org/licenses/postgresql + - http://www.postgresql.org/about/licence +osi_url: http://www.opensource.org/licenses/postgresql +other_urls: + - http://www.opensource.org/licenses/PostgreSQL + - https://opensource.org/licenses/PostgreSQL +ignorable_copyrights: + - Portions Copyright (c) 1994, The Regents of the University of California + - Portions Copyright (c) The PostgreSQL Global Development Group +ignorable_holders: + - The PostgreSQL Global Development Group + - The Regents of the University of California +--- + PostgreSQL is released under the PostgreSQL License, a liberal Open Source license, similar to the BSD or MIT licenses. PostgreSQL Database Management System diff --git a/docs/postgresql.html b/docs/postgresql.html index 3c48667222..5e20165ecb 100644 --- a/docs/postgresql.html +++ b/docs/postgresql.html @@ -200,7 +200,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/postgresql.json b/docs/postgresql.json index 22507fad8a..36a24c9409 100644 --- a/docs/postgresql.json +++ b/docs/postgresql.json @@ -1 +1,27 @@ -{"key": "postgresql", "short_name": "PostgreSQL License", "name": "PostgreSQL License", "category": "Permissive", "owner": "PostgreSQL", "homepage_url": "http://www.postgresql.org/about/licence", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "PostgreSQL", "text_urls": ["http://www.opensource.org/licenses/postgresql", "http://www.postgresql.org/about/licence"], "osi_url": "http://www.opensource.org/licenses/postgresql", "other_urls": ["http://www.opensource.org/licenses/PostgreSQL", "https://opensource.org/licenses/PostgreSQL"], "ignorable_copyrights": ["Portions Copyright (c) 1994, The Regents of the University of California", "Portions Copyright (c) The PostgreSQL Global Development Group"], "ignorable_holders": ["The PostgreSQL Global Development Group", "The Regents of the University of California"]} \ No newline at end of file +{ + "key": "postgresql", + "short_name": "PostgreSQL License", + "name": "PostgreSQL License", + "category": "Permissive", + "owner": "PostgreSQL", + "homepage_url": "http://www.postgresql.org/about/licence", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "PostgreSQL", + "text_urls": [ + "http://www.opensource.org/licenses/postgresql", + "http://www.postgresql.org/about/licence" + ], + "osi_url": "http://www.opensource.org/licenses/postgresql", + "other_urls": [ + "http://www.opensource.org/licenses/PostgreSQL", + "https://opensource.org/licenses/PostgreSQL" + ], + "ignorable_copyrights": [ + "Portions Copyright (c) 1994, The Regents of the University of California", + "Portions Copyright (c) The PostgreSQL Global Development Group" + ], + "ignorable_holders": [ + "The PostgreSQL Global Development Group", + "The Regents of the University of California" + ] +} \ No newline at end of file diff --git a/docs/powervr-tools-software-eula.LICENSE b/docs/powervr-tools-software-eula.LICENSE index 03de3cc601..a3b5860a4b 100644 --- a/docs/powervr-tools-software-eula.LICENSE +++ b/docs/powervr-tools-software-eula.LICENSE @@ -1,3 +1,16 @@ +--- +key: powervr-tools-software-eula +short_name: PowerVR Tools Software EULA +name: PowerVR Tools Software End User License Agreement +category: Proprietary Free +owner: Imagination +homepage_url: https://www.imgtec.com/developers/powervr-sdk-tools/powervr-tools-software-eula/ +spdx_license_key: LicenseRef-scancode-powervr-tools-software-eula +standard_notice: | + PLEASE READ THIS AGREEMENT CAREFULLY. BY USING ANY PORTION OF THE POWERVR + TOOLS SOFTWARE YOU WILL BE LEGALLY BOUND TO THESE TERMS. +--- + Imagination Technologies Limited ("Imagination") provides this Software subject to the terms of this Agreement. If you do not agree with any of these terms, then do not install or otherwise use the Software. Definitions diff --git a/docs/powervr-tools-software-eula.html b/docs/powervr-tools-software-eula.html index 91f5ba353b..3a205e66cf 100644 --- a/docs/powervr-tools-software-eula.html +++ b/docs/powervr-tools-software-eula.html @@ -184,7 +184,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/powervr-tools-software-eula.json b/docs/powervr-tools-software-eula.json index 418398a3b9..493413a94e 100644 --- a/docs/powervr-tools-software-eula.json +++ b/docs/powervr-tools-software-eula.json @@ -1 +1,10 @@ -{"key": "powervr-tools-software-eula", "short_name": "PowerVR Tools Software EULA", "name": "PowerVR Tools Software End User License Agreement", "category": "Proprietary Free", "owner": "Imagination", "homepage_url": "https://www.imgtec.com/developers/powervr-sdk-tools/powervr-tools-software-eula/", "spdx_license_key": "LicenseRef-scancode-powervr-tools-software-eula", "standard_notice": "PLEASE READ THIS AGREEMENT CAREFULLY. BY USING ANY PORTION OF THE POWERVR\nTOOLS SOFTWARE YOU WILL BE LEGALLY BOUND TO THESE TERMS.\n"} \ No newline at end of file +{ + "key": "powervr-tools-software-eula", + "short_name": "PowerVR Tools Software EULA", + "name": "PowerVR Tools Software End User License Agreement", + "category": "Proprietary Free", + "owner": "Imagination", + "homepage_url": "https://www.imgtec.com/developers/powervr-sdk-tools/powervr-tools-software-eula/", + "spdx_license_key": "LicenseRef-scancode-powervr-tools-software-eula", + "standard_notice": "PLEASE READ THIS AGREEMENT CAREFULLY. BY USING ANY PORTION OF THE POWERVR\nTOOLS SOFTWARE YOU WILL BE LEGALLY BOUND TO THESE TERMS.\n" +} \ No newline at end of file diff --git a/docs/ppp.LICENSE b/docs/ppp.LICENSE index 5d2d4292ec..adbb97b0cb 100644 --- a/docs/ppp.LICENSE +++ b/docs/ppp.LICENSE @@ -1,3 +1,13 @@ +--- +key: ppp +short_name: ppp License +name: ppp License +category: Permissive +owner: globalban Project +homepage_url: http://www.scs.stanford.edu/histar/src/pkg/lwip/netif/ppp/pppdebug.h +spdx_license_key: LicenseRef-scancode-ppp +--- + 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 @@ -15,4 +25,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/ppp.html b/docs/ppp.html index 4479acb968..bbde4b99b2 100644 --- a/docs/ppp.html +++ b/docs/ppp.html @@ -132,8 +132,7 @@ 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. - +POSSIBILITY OF SUCH DAMAGE.
@@ -145,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ppp.json b/docs/ppp.json index 81a8c701c8..df024a1a37 100644 --- a/docs/ppp.json +++ b/docs/ppp.json @@ -1 +1,9 @@ -{"key": "ppp", "short_name": "ppp License", "name": "ppp License", "category": "Permissive", "owner": "globalban Project", "homepage_url": "http://www.scs.stanford.edu/histar/src/pkg/lwip/netif/ppp/pppdebug.h", "spdx_license_key": "LicenseRef-scancode-ppp"} \ No newline at end of file +{ + "key": "ppp", + "short_name": "ppp License", + "name": "ppp License", + "category": "Permissive", + "owner": "globalban Project", + "homepage_url": "http://www.scs.stanford.edu/histar/src/pkg/lwip/netif/ppp/pppdebug.h", + "spdx_license_key": "LicenseRef-scancode-ppp" +} \ No newline at end of file diff --git a/docs/proguard-exception-2.0.LICENSE b/docs/proguard-exception-2.0.LICENSE index e6d2f9f587..5465f275da 100644 --- a/docs/proguard-exception-2.0.LICENSE +++ b/docs/proguard-exception-2.0.LICENSE @@ -1,3 +1,40 @@ +--- +key: proguard-exception-2.0 +short_name: ProGuard exception to GPL 2.0 +name: ProGuard exception to GPL 2.0 +category: Copyleft Limited +owner: ProGuard Project +homepage_url: http://proguard.sourceforge.net/index.html#license.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-proguard-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + License + ProGuard is free. You can use it freely for processing your applications, + commercial or not. Your code obviously remains yours after having been + processed, and its license can remain the same. + The ProGuard code itself is copyrighted, but its distribution license + provides you with some rights for modifying and redistributing its code and + its documentation. More specifically, ProGuard is distributed under the + terms of the GNU General Public License (GPL), version 2, as published by + the Free Software Foundation (FSF). In short, this means that you may + freely redistribute the program, modified or as is, on the condition that + you make the complete source code available as well. If you develop a + program that is linked with ProGuard, the program as a whole has to be + distributed at no charge under the GPL. I am granting a special exception + to the latter clause (in wording suggested by the FSF), for combinations + with the following stand-alone applications: Apache Ant, Apache Maven, the + Google Android SDK, the Eclipse ProGuardDT GUI, the EclipseME JME IDE, the + Oracle NetBeans Java IDE, the Oracle JME Wireless Toolkit, the Intel TXE + SDK, the Simple Build Tool for Scala, the NeoMAD Tools by Neomades, the + Javaground Tools, and the Sanaware Tools. + The ProGuard user documentation is copyrighted as well. It may only be + redistributed without changes, along with the unmodified version of the + code. + Copyright © 2002-2013 Eric Lafortune. +--- + ProGuard is free. You can use it freely for processing your applications, commercial or not. Your code obviously remains yours after having been processed, and its license can remain the same. diff --git a/docs/proguard-exception-2.0.html b/docs/proguard-exception-2.0.html index d6f5a06cbd..90f1a0a5b0 100644 --- a/docs/proguard-exception-2.0.html +++ b/docs/proguard-exception-2.0.html @@ -178,7 +178,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/proguard-exception-2.0.json b/docs/proguard-exception-2.0.json index 3391c92a5c..9ffd3ee73a 100644 --- a/docs/proguard-exception-2.0.json +++ b/docs/proguard-exception-2.0.json @@ -1 +1,14 @@ -{"key": "proguard-exception-2.0", "short_name": "ProGuard exception to GPL 2.0", "name": "ProGuard exception to GPL 2.0", "category": "Copyleft Limited", "owner": "ProGuard Project", "homepage_url": "http://proguard.sourceforge.net/index.html#license.html", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-proguard-exception-2.0", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "License\nProGuard is free. You can use it freely for processing your applications,\ncommercial or not. Your code obviously remains yours after having been\nprocessed, and its license can remain the same.\nThe ProGuard code itself is copyrighted, but its distribution license\nprovides you with some rights for modifying and redistributing its code and\nits documentation. More specifically, ProGuard is distributed under the\nterms of the GNU General Public License (GPL), version 2, as published by\nthe Free Software Foundation (FSF). In short, this means that you may\nfreely redistribute the program, modified or as is, on the condition that\nyou make the complete source code available as well. If you develop a\nprogram that is linked with ProGuard, the program as a whole has to be\ndistributed at no charge under the GPL. I am granting a special exception\nto the latter clause (in wording suggested by the FSF), for combinations\nwith the following stand-alone applications: Apache Ant, Apache Maven, the\nGoogle Android SDK, the Eclipse ProGuardDT GUI, the EclipseME JME IDE, the\nOracle NetBeans Java IDE, the Oracle JME Wireless Toolkit, the Intel TXE\nSDK, the Simple Build Tool for Scala, the NeoMAD Tools by Neomades, the\nJavaground Tools, and the Sanaware Tools.\nThe ProGuard user documentation is copyrighted as well. It may only be\nredistributed without changes, along with the unmodified version of the\ncode.\nCopyright \u00a9 2002-2013 Eric Lafortune.\n"} \ No newline at end of file +{ + "key": "proguard-exception-2.0", + "short_name": "ProGuard exception to GPL 2.0", + "name": "ProGuard exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "ProGuard Project", + "homepage_url": "http://proguard.sourceforge.net/index.html#license.html", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-proguard-exception-2.0", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "License\nProGuard is free. You can use it freely for processing your applications,\ncommercial or not. Your code obviously remains yours after having been\nprocessed, and its license can remain the same.\nThe ProGuard code itself is copyrighted, but its distribution license\nprovides you with some rights for modifying and redistributing its code and\nits documentation. More specifically, ProGuard is distributed under the\nterms of the GNU General Public License (GPL), version 2, as published by\nthe Free Software Foundation (FSF). In short, this means that you may\nfreely redistribute the program, modified or as is, on the condition that\nyou make the complete source code available as well. If you develop a\nprogram that is linked with ProGuard, the program as a whole has to be\ndistributed at no charge under the GPL. I am granting a special exception\nto the latter clause (in wording suggested by the FSF), for combinations\nwith the following stand-alone applications: Apache Ant, Apache Maven, the\nGoogle Android SDK, the Eclipse ProGuardDT GUI, the EclipseME JME IDE, the\nOracle NetBeans Java IDE, the Oracle JME Wireless Toolkit, the Intel TXE\nSDK, the Simple Build Tool for Scala, the NeoMAD Tools by Neomades, the\nJavaground Tools, and the Sanaware Tools.\nThe ProGuard user documentation is copyrighted as well. It may only be\nredistributed without changes, along with the unmodified version of the\ncode.\nCopyright \u00a9 2002-2013 Eric Lafortune.\n" +} \ No newline at end of file diff --git a/docs/proprietary-license.LICENSE b/docs/proprietary-license.LICENSE index 7203d72eea..865270c0b1 100644 --- a/docs/proprietary-license.LICENSE +++ b/docs/proprietary-license.LICENSE @@ -1,3 +1,19 @@ +--- +key: proprietary-license +short_name: Proprietary License +name: Proprietary License +category: Commercial +owner: Unspecified +notes: replaces the proprietary key npm before 3.1 recommended this "If you are using a license + that hasn't been assigned an SPDX identifier, or if you are using a custom license, use + the following valid SPDX expression "LicenseRef-LICENSE" +is_generic: yes +spdx_license_key: LicenseRef-scancode-proprietary-license +other_spdx_license_keys: + - LicenseRef-LICENSE + - LicenseRef-LICENSE.md +--- + This component is normally licensed under a proprietary license agreement with a supplier that has terms and conditions that restrict the use of the code, but may not require payment to the supplier. \ No newline at end of file diff --git a/docs/proprietary-license.html b/docs/proprietary-license.html index ce02d82909..1c6266641c 100644 --- a/docs/proprietary-license.html +++ b/docs/proprietary-license.html @@ -145,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/proprietary-license.json b/docs/proprietary-license.json index a335b21a49..43d6ce1ef7 100644 --- a/docs/proprietary-license.json +++ b/docs/proprietary-license.json @@ -1 +1,14 @@ -{"key": "proprietary-license", "short_name": "Proprietary License", "name": "Proprietary License", "category": "Commercial", "owner": "Unspecified", "notes": "replaces the proprietary key npm before 3.1 recommended this \"If you are using a license that hasn't been assigned an SPDX identifier, or if you are using a custom license, use the following valid SPDX expression \"LicenseRef-LICENSE\"", "is_generic": true, "spdx_license_key": "LicenseRef-scancode-proprietary-license", "other_spdx_license_keys": ["LicenseRef-LICENSE", "LicenseRef-LICENSE.md"]} \ No newline at end of file +{ + "key": "proprietary-license", + "short_name": "Proprietary License", + "name": "Proprietary License", + "category": "Commercial", + "owner": "Unspecified", + "notes": "replaces the proprietary key npm before 3.1 recommended this \"If you are using a license that hasn't been assigned an SPDX identifier, or if you are using a custom license, use the following valid SPDX expression \"LicenseRef-LICENSE\"", + "is_generic": true, + "spdx_license_key": "LicenseRef-scancode-proprietary-license", + "other_spdx_license_keys": [ + "LicenseRef-LICENSE", + "LicenseRef-LICENSE.md" + ] +} \ No newline at end of file diff --git a/docs/proprietary.LICENSE b/docs/proprietary.LICENSE index e69de29bb2..f12040b80b 100644 --- a/docs/proprietary.LICENSE +++ b/docs/proprietary.LICENSE @@ -0,0 +1,10 @@ +--- +key: proprietary +is_deprecated: yes +short_name: Proprietary +name: Proprietary +category: Proprietary Free +owner: Unspecified +notes: see proprietary-license instead +is_generic: yes +--- \ No newline at end of file diff --git a/docs/proprietary.html b/docs/proprietary.html index f045df4b8d..8abe2596e4 100644 --- a/docs/proprietary.html +++ b/docs/proprietary.html @@ -134,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/proprietary.json b/docs/proprietary.json index 779dd08dc7..0b86ba7bd2 100644 --- a/docs/proprietary.json +++ b/docs/proprietary.json @@ -1 +1,10 @@ -{"key": "proprietary", "is_deprecated": true, "short_name": "Proprietary", "name": "Proprietary", "category": "Proprietary Free", "owner": "Unspecified", "notes": "see proprietary-license instead", "is_generic": true} \ No newline at end of file +{ + "key": "proprietary", + "is_deprecated": true, + "short_name": "Proprietary", + "name": "Proprietary", + "category": "Proprietary Free", + "owner": "Unspecified", + "notes": "see proprietary-license instead", + "is_generic": true +} \ No newline at end of file diff --git a/docs/prosperity-1.0.1.LICENSE b/docs/prosperity-1.0.1.LICENSE index d249c150e7..53b62b1b81 100644 --- a/docs/prosperity-1.0.1.LICENSE +++ b/docs/prosperity-1.0.1.LICENSE @@ -1,3 +1,17 @@ +--- +key: prosperity-1.0.1 +short_name: Prosperity Public License 1.0.1 +name: The Prosperity Public License 1.0.1 +category: Proprietary Free +owner: Kyle Mitchell +homepage_url: https://licensezero.com/licenses/prosperity +spdx_license_key: LicenseRef-scancode-prosperity-1.0.1 +text_urls: + - https://github.com/licensezero/prosperity-public-license/blob/master/LICENSE.mustache +other_urls: + - https://github.com/dependabot/dependabot-core/blob/master/LICENSE +--- + The Prosperity Public License 1.0.1 Copyright Notice: {Licensor Name} diff --git a/docs/prosperity-1.0.1.html b/docs/prosperity-1.0.1.html index 1c4bf8d73a..e27d8015be 100644 --- a/docs/prosperity-1.0.1.html +++ b/docs/prosperity-1.0.1.html @@ -181,7 +181,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/prosperity-1.0.1.json b/docs/prosperity-1.0.1.json index 6073369d53..0d50721d0f 100644 --- a/docs/prosperity-1.0.1.json +++ b/docs/prosperity-1.0.1.json @@ -1 +1,15 @@ -{"key": "prosperity-1.0.1", "short_name": "Prosperity Public License 1.0.1", "name": "The Prosperity Public License 1.0.1", "category": "Proprietary Free", "owner": "Kyle Mitchell", "homepage_url": "https://licensezero.com/licenses/prosperity", "spdx_license_key": "LicenseRef-scancode-prosperity-1.0.1", "text_urls": ["https://github.com/licensezero/prosperity-public-license/blob/master/LICENSE.mustache"], "other_urls": ["https://github.com/dependabot/dependabot-core/blob/master/LICENSE"]} \ No newline at end of file +{ + "key": "prosperity-1.0.1", + "short_name": "Prosperity Public License 1.0.1", + "name": "The Prosperity Public License 1.0.1", + "category": "Proprietary Free", + "owner": "Kyle Mitchell", + "homepage_url": "https://licensezero.com/licenses/prosperity", + "spdx_license_key": "LicenseRef-scancode-prosperity-1.0.1", + "text_urls": [ + "https://github.com/licensezero/prosperity-public-license/blob/master/LICENSE.mustache" + ], + "other_urls": [ + "https://github.com/dependabot/dependabot-core/blob/master/LICENSE" + ] +} \ No newline at end of file diff --git a/docs/prosperity-2.0.LICENSE b/docs/prosperity-2.0.LICENSE index ff54bbebcf..d2e5e09475 100644 --- a/docs/prosperity-2.0.LICENSE +++ b/docs/prosperity-2.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: prosperity-2.0 +short_name: Prosperity Public License 2.0 +name: The Prosperity Public License 2.0 +category: Source-available +owner: Kyle Mitchell +homepage_url: https://licensezero.com/licenses/prosperity +spdx_license_key: LicenseRef-scancode-prosperity-2.0 +text_urls: + - https://github.com/licensezero/prosperity-public-license/blob/v2.0.0/LICENSE.mustache +--- + The Prosperity Public License 2.0 Copyright Notice: {Licensor Name} @@ -36,4 +48,4 @@ learning you broke the rule. **This software comes as is, without any warranty at all. As far as the law allows, the contributor will not be liable for any damages related to this software or this license, for any kind of -legal claim.** +legal claim.** \ No newline at end of file diff --git a/docs/prosperity-2.0.html b/docs/prosperity-2.0.html index 12c467f1c7..76f8b56cca 100644 --- a/docs/prosperity-2.0.html +++ b/docs/prosperity-2.0.html @@ -162,8 +162,7 @@ **This software comes as is, without any warranty at all. As far as the law allows, the contributor will not be liable for any damages related to this software or this license, for any kind of -legal claim.** - +legal claim.**
@@ -175,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/prosperity-2.0.json b/docs/prosperity-2.0.json index 91406485eb..7e50f982ad 100644 --- a/docs/prosperity-2.0.json +++ b/docs/prosperity-2.0.json @@ -1 +1,12 @@ -{"key": "prosperity-2.0", "short_name": "Prosperity Public License 2.0", "name": "The Prosperity Public License 2.0", "category": "Source-available", "owner": "Kyle Mitchell", "homepage_url": "https://licensezero.com/licenses/prosperity", "spdx_license_key": "LicenseRef-scancode-prosperity-2.0", "text_urls": ["https://github.com/licensezero/prosperity-public-license/blob/v2.0.0/LICENSE.mustache"]} \ No newline at end of file +{ + "key": "prosperity-2.0", + "short_name": "Prosperity Public License 2.0", + "name": "The Prosperity Public License 2.0", + "category": "Source-available", + "owner": "Kyle Mitchell", + "homepage_url": "https://licensezero.com/licenses/prosperity", + "spdx_license_key": "LicenseRef-scancode-prosperity-2.0", + "text_urls": [ + "https://github.com/licensezero/prosperity-public-license/blob/v2.0.0/LICENSE.mustache" + ] +} \ No newline at end of file diff --git a/docs/prosperity-3.0.LICENSE b/docs/prosperity-3.0.LICENSE index 430ae47fee..ac8040b082 100644 --- a/docs/prosperity-3.0.LICENSE +++ b/docs/prosperity-3.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: prosperity-3.0 +short_name: Prosperity Public License 3.0 +name: The Prosperity Public License 3.0 +category: Source-available +owner: Kyle Mitchell +homepage_url: https://licensezero.com/licenses/prosperity +spdx_license_key: LicenseRef-scancode-prosperity-3.0 +text_urls: + - https://raw.githubusercontent.com/licensezero/prosperity-public-license/v3.0.0/LICENSE.md +ignorable_urls: + - https://blueoakcouncil.org/license/1.0.0 + - https://spdx.org/licenses/BSD-2-Clause.html + - https://spdx.org/licenses/MIT.html + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + # The Prosperity Public License 3.0.0 Contributor: $name @@ -54,4 +71,4 @@ You're excused for unknowingly breaking [Notices](#notices) if you take all prac ## No Liability -***As far as the law allows, this software comes as is, without any warranty or condition, and the contributor won't be liable to anyone for any damages related to this software or this license, under any kind of legal claim.*** +***As far as the law allows, this software comes as is, without any warranty or condition, and the contributor won't be liable to anyone for any damages related to this software or this license, under any kind of legal claim.*** \ No newline at end of file diff --git a/docs/prosperity-3.0.html b/docs/prosperity-3.0.html index 96bf59b141..3a2cc56b8a 100644 --- a/docs/prosperity-3.0.html +++ b/docs/prosperity-3.0.html @@ -189,8 +189,7 @@ ## No Liability -***As far as the law allows, this software comes as is, without any warranty or condition, and the contributor won't be liable to anyone for any damages related to this software or this license, under any kind of legal claim.*** - +***As far as the law allows, this software comes as is, without any warranty or condition, and the contributor won't be liable to anyone for any damages related to this software or this license, under any kind of legal claim.***
@@ -202,7 +201,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/prosperity-3.0.json b/docs/prosperity-3.0.json index f35d332c06..f29d4e14d5 100644 --- a/docs/prosperity-3.0.json +++ b/docs/prosperity-3.0.json @@ -1 +1,18 @@ -{"key": "prosperity-3.0", "short_name": "Prosperity Public License 3.0", "name": "The Prosperity Public License 3.0", "category": "Source-available", "owner": "Kyle Mitchell", "homepage_url": "https://licensezero.com/licenses/prosperity", "spdx_license_key": "LicenseRef-scancode-prosperity-3.0", "text_urls": ["https://raw.githubusercontent.com/licensezero/prosperity-public-license/v3.0.0/LICENSE.md"], "ignorable_urls": ["https://blueoakcouncil.org/license/1.0.0", "https://spdx.org/licenses/BSD-2-Clause.html", "https://spdx.org/licenses/MIT.html", "https://www.apache.org/licenses/LICENSE-2.0.html"]} \ No newline at end of file +{ + "key": "prosperity-3.0", + "short_name": "Prosperity Public License 3.0", + "name": "The Prosperity Public License 3.0", + "category": "Source-available", + "owner": "Kyle Mitchell", + "homepage_url": "https://licensezero.com/licenses/prosperity", + "spdx_license_key": "LicenseRef-scancode-prosperity-3.0", + "text_urls": [ + "https://raw.githubusercontent.com/licensezero/prosperity-public-license/v3.0.0/LICENSE.md" + ], + "ignorable_urls": [ + "https://blueoakcouncil.org/license/1.0.0", + "https://spdx.org/licenses/BSD-2-Clause.html", + "https://spdx.org/licenses/MIT.html", + "https://www.apache.org/licenses/LICENSE-2.0.html" + ] +} \ No newline at end of file diff --git a/docs/protobuf.LICENSE b/docs/protobuf.LICENSE index 0033f6036a..eb3568ba62 100644 --- a/docs/protobuf.LICENSE +++ b/docs/protobuf.LICENSE @@ -1,3 +1,14 @@ +--- +key: protobuf +short_name: Protobuf License +name: Protobuf License +category: Permissive +owner: Google +homepage_url: http://protobuf.googlecode.com/svn/trunk/COPYING.txt +spdx_license_key: LicenseRef-scancode-protobuf +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/protobuf.html b/docs/protobuf.html index 99fa9fe4a3..2dbe569b03 100644 --- a/docs/protobuf.html +++ b/docs/protobuf.html @@ -163,7 +163,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/protobuf.json b/docs/protobuf.json index 47e1f98d80..4f4914a74d 100644 --- a/docs/protobuf.json +++ b/docs/protobuf.json @@ -1 +1,10 @@ -{"key": "protobuf", "short_name": "Protobuf License", "name": "Protobuf License", "category": "Permissive", "owner": "Google", "homepage_url": "http://protobuf.googlecode.com/svn/trunk/COPYING.txt", "spdx_license_key": "LicenseRef-scancode-protobuf", "minimum_coverage": 90} \ No newline at end of file +{ + "key": "protobuf", + "short_name": "Protobuf License", + "name": "Protobuf License", + "category": "Permissive", + "owner": "Google", + "homepage_url": "http://protobuf.googlecode.com/svn/trunk/COPYING.txt", + "spdx_license_key": "LicenseRef-scancode-protobuf", + "minimum_coverage": 90 +} \ No newline at end of file diff --git a/docs/ps-or-pdf-font-exception-20170817.LICENSE b/docs/ps-or-pdf-font-exception-20170817.LICENSE index e7b2191e09..0c9fcb3282 100644 --- a/docs/ps-or-pdf-font-exception-20170817.LICENSE +++ b/docs/ps-or-pdf-font-exception-20170817.LICENSE @@ -1,3 +1,16 @@ +--- +key: ps-or-pdf-font-exception-20170817 +short_name: PS-or-PDF-font-exception-20170817 +name: PS/PDF font exception (2017-08-17) +category: Copyleft Limited +owner: Artifex Software +homepage_url: https://github.com/ArtifexSoftware/urw-base35-fonts/blob/master/LICENSE +is_exception: yes +spdx_license_key: PS-or-PDF-font-exception-20170817 +text_urls: + - https://github.com/ArtifexSoftware/urw-base35-fonts/blob/65962e27febc3883a17e651cdb23e783668c996f/LICENSE +--- + The font and related files in this directory are distributed under the GNU AFFERO GENERAL PUBLIC LICENSE Version 3 (see the file COPYING), with the following exemption: diff --git a/docs/ps-or-pdf-font-exception-20170817.html b/docs/ps-or-pdf-font-exception-20170817.html index ed58545817..7b1bfd66f3 100644 --- a/docs/ps-or-pdf-font-exception-20170817.html +++ b/docs/ps-or-pdf-font-exception-20170817.html @@ -150,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ps-or-pdf-font-exception-20170817.json b/docs/ps-or-pdf-font-exception-20170817.json index 9100333435..30cdd9571d 100644 --- a/docs/ps-or-pdf-font-exception-20170817.json +++ b/docs/ps-or-pdf-font-exception-20170817.json @@ -1 +1,13 @@ -{"key": "ps-or-pdf-font-exception-20170817", "short_name": "PS-or-PDF-font-exception-20170817", "name": "PS/PDF font exception (2017-08-17)", "category": "Copyleft Limited", "owner": "Artifex Software", "homepage_url": "https://github.com/ArtifexSoftware/urw-base35-fonts/blob/master/LICENSE", "is_exception": true, "spdx_license_key": "PS-or-PDF-font-exception-20170817", "text_urls": ["https://github.com/ArtifexSoftware/urw-base35-fonts/blob/65962e27febc3883a17e651cdb23e783668c996f/LICENSE"]} \ No newline at end of file +{ + "key": "ps-or-pdf-font-exception-20170817", + "short_name": "PS-or-PDF-font-exception-20170817", + "name": "PS/PDF font exception (2017-08-17)", + "category": "Copyleft Limited", + "owner": "Artifex Software", + "homepage_url": "https://github.com/ArtifexSoftware/urw-base35-fonts/blob/master/LICENSE", + "is_exception": true, + "spdx_license_key": "PS-or-PDF-font-exception-20170817", + "text_urls": [ + "https://github.com/ArtifexSoftware/urw-base35-fonts/blob/65962e27febc3883a17e651cdb23e783668c996f/LICENSE" + ] +} \ No newline at end of file diff --git a/docs/psf-2.0.LICENSE b/docs/psf-2.0.LICENSE index 89565571f0..9a7a635a84 100644 --- a/docs/psf-2.0.LICENSE +++ b/docs/psf-2.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: psf-2.0 +short_name: PSF-2.0 +name: PSF-2.0 +category: Permissive +owner: Python Software Foundation (PSF) +homepage_url: https://opensource.org/licenses/Python-2.0 +spdx_license_key: PSF-2.0 +ignorable_copyrights: + - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation +ignorable_holders: + - Python Software Foundation +--- + 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. diff --git a/docs/psf-2.0.html b/docs/psf-2.0.html index c9d3178ad1..f163b6095c 100644 --- a/docs/psf-2.0.html +++ b/docs/psf-2.0.html @@ -154,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/psf-2.0.json b/docs/psf-2.0.json index 07f1f0ca26..0d7920a3d8 100644 --- a/docs/psf-2.0.json +++ b/docs/psf-2.0.json @@ -1 +1,15 @@ -{"key": "psf-2.0", "short_name": "PSF-2.0", "name": "PSF-2.0", "category": "Permissive", "owner": "Python Software Foundation (PSF)", "homepage_url": "https://opensource.org/licenses/Python-2.0", "spdx_license_key": "PSF-2.0", "ignorable_copyrights": ["Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation"], "ignorable_holders": ["Python Software Foundation"]} \ No newline at end of file +{ + "key": "psf-2.0", + "short_name": "PSF-2.0", + "name": "PSF-2.0", + "category": "Permissive", + "owner": "Python Software Foundation (PSF)", + "homepage_url": "https://opensource.org/licenses/Python-2.0", + "spdx_license_key": "PSF-2.0", + "ignorable_copyrights": [ + "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation" + ], + "ignorable_holders": [ + "Python Software Foundation" + ] +} \ No newline at end of file diff --git a/docs/psf-3.7.2.LICENSE b/docs/psf-3.7.2.LICENSE index 33cff8dae5..4526a69f77 100644 --- a/docs/psf-3.7.2.LICENSE +++ b/docs/psf-3.7.2.LICENSE @@ -1,3 +1,17 @@ +--- +key: psf-3.7.2 +short_name: PSF Python License 3.7.2 +name: PSF License Agreement for Python 3.7.2 +category: Permissive +owner: Python Software Foundation (PSF) +homepage_url: https://docs.python.org/3/license.html#psf-license-agreement-for-python-release +spdx_license_key: LicenseRef-scancode-psf-3.7.2 +ignorable_copyrights: + - Copyright (c) 2001-2019 Python Software Foundation +ignorable_holders: + - Python Software Foundation +--- + PSF LICENSE AGREEMENT FOR PYTHON 3.7.2 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and diff --git a/docs/psf-3.7.2.html b/docs/psf-3.7.2.html index 3dd32b30b5..7b0a521bf1 100644 --- a/docs/psf-3.7.2.html +++ b/docs/psf-3.7.2.html @@ -187,7 +187,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/psf-3.7.2.json b/docs/psf-3.7.2.json index 23db1d4379..6cfefc8254 100644 --- a/docs/psf-3.7.2.json +++ b/docs/psf-3.7.2.json @@ -1 +1,15 @@ -{"key": "psf-3.7.2", "short_name": "PSF Python License 3.7.2", "name": "PSF License Agreement for Python 3.7.2", "category": "Permissive", "owner": "Python Software Foundation (PSF)", "homepage_url": "https://docs.python.org/3/license.html#psf-license-agreement-for-python-release", "spdx_license_key": "LicenseRef-scancode-psf-3.7.2", "ignorable_copyrights": ["Copyright (c) 2001-2019 Python Software Foundation"], "ignorable_holders": ["Python Software Foundation"]} \ No newline at end of file +{ + "key": "psf-3.7.2", + "short_name": "PSF Python License 3.7.2", + "name": "PSF License Agreement for Python 3.7.2", + "category": "Permissive", + "owner": "Python Software Foundation (PSF)", + "homepage_url": "https://docs.python.org/3/license.html#psf-license-agreement-for-python-release", + "spdx_license_key": "LicenseRef-scancode-psf-3.7.2", + "ignorable_copyrights": [ + "Copyright (c) 2001-2019 Python Software Foundation" + ], + "ignorable_holders": [ + "Python Software Foundation" + ] +} \ No newline at end of file diff --git a/docs/psfrag.LICENSE b/docs/psfrag.LICENSE index 71f91d99a8..998f783412 100644 --- a/docs/psfrag.LICENSE +++ b/docs/psfrag.LICENSE @@ -1,3 +1,16 @@ +--- +key: psfrag +short_name: psfrag License +name: psfrag License +category: Permissive +owner: Craig Barratt +homepage_url: https://fedoraproject.org/wiki/Licensing/psfrag +notes: | + Per Fedora, this license is considered Free, but GPL-incompatible only when + used for TeX files. In all other use cases, this may not be true. +spdx_license_key: psfrag +--- + This system 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. Don't come complaining to us if you modify this file and diff --git a/docs/psfrag.html b/docs/psfrag.html index 72f1528f52..8421984092 100644 --- a/docs/psfrag.html +++ b/docs/psfrag.html @@ -140,7 +140,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/psfrag.json b/docs/psfrag.json index f5badefdab..385aa996f8 100644 --- a/docs/psfrag.json +++ b/docs/psfrag.json @@ -1 +1,10 @@ -{"key": "psfrag", "short_name": "psfrag License", "name": "psfrag License", "category": "Permissive", "owner": "Craig Barratt", "homepage_url": "https://fedoraproject.org/wiki/Licensing/psfrag", "notes": "Per Fedora, this license is considered Free, but GPL-incompatible only when\nused for TeX files. In all other use cases, this may not be true.\n", "spdx_license_key": "psfrag"} \ No newline at end of file +{ + "key": "psfrag", + "short_name": "psfrag License", + "name": "psfrag License", + "category": "Permissive", + "owner": "Craig Barratt", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/psfrag", + "notes": "Per Fedora, this license is considered Free, but GPL-incompatible only when\nused for TeX files. In all other use cases, this may not be true.\n", + "spdx_license_key": "psfrag" +} \ No newline at end of file diff --git a/docs/psutils.LICENSE b/docs/psutils.LICENSE index 334e174b3b..31481a5dc8 100644 --- a/docs/psutils.LICENSE +++ b/docs/psutils.LICENSE @@ -1,3 +1,19 @@ +--- +key: psutils +short_name: PS Utilities License +name: PS Utilities License +category: Permissive +owner: Angus J. C. Duggan +homepage_url: https://fedoraproject.org/wiki/Licensing:Psutils?rd=Licensing/psutils +spdx_license_key: psutils +other_urls: + - https://fedoraproject.org/wiki/Licensing/psutils +ignorable_copyrights: + - copyright (c) 1991-1995 Angus J. C. Duggan +ignorable_holders: + - Angus J. C. Duggan +--- + PS Utilities Package The constituent files of this package listed below are copyright (C) 1991-1995 Angus J. C. Duggan. diff --git a/docs/psutils.html b/docs/psutils.html index b5597f705c..2de95eaf4d 100644 --- a/docs/psutils.html +++ b/docs/psutils.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/psutils.json b/docs/psutils.json index 7c0ed6cb96..5e7e221966 100644 --- a/docs/psutils.json +++ b/docs/psutils.json @@ -1 +1,18 @@ -{"key": "psutils", "short_name": "PS Utilities License", "name": "PS Utilities License", "category": "Permissive", "owner": "Angus J. C. Duggan", "homepage_url": "https://fedoraproject.org/wiki/Licensing:Psutils?rd=Licensing/psutils", "spdx_license_key": "psutils", "other_urls": ["https://fedoraproject.org/wiki/Licensing/psutils"], "ignorable_copyrights": ["copyright (c) 1991-1995 Angus J. C. Duggan"], "ignorable_holders": ["Angus J. C. Duggan"]} \ No newline at end of file +{ + "key": "psutils", + "short_name": "PS Utilities License", + "name": "PS Utilities License", + "category": "Permissive", + "owner": "Angus J. C. Duggan", + "homepage_url": "https://fedoraproject.org/wiki/Licensing:Psutils?rd=Licensing/psutils", + "spdx_license_key": "psutils", + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/psutils" + ], + "ignorable_copyrights": [ + "copyright (c) 1991-1995 Angus J. C. Duggan" + ], + "ignorable_holders": [ + "Angus J. C. Duggan" + ] +} \ No newline at end of file diff --git a/docs/psytec-freesoft.LICENSE b/docs/psytec-freesoft.LICENSE index 4bb3d7cf07..6da4b5ab97 100644 --- a/docs/psytec-freesoft.LICENSE +++ b/docs/psytec-freesoft.LICENSE @@ -1,3 +1,15 @@ +--- +key: psytec-freesoft +short_name: Psytec Free Software License +name: Psytec Free Software License +category: Permissive +owner: Psytec +homepage_url: http://www.psytec.co.jp/freesoft/02/#L04 +spdx_license_key: LicenseRef-scancode-psytec-freesoft +text_urls: + - http://www.psytec.co.jp/freesoft/02/#L04 +--- + (translated from the Japanese) About the license · Distribution of this software is free. diff --git a/docs/psytec-freesoft.html b/docs/psytec-freesoft.html index f1960bfeb1..99c3ace9e6 100644 --- a/docs/psytec-freesoft.html +++ b/docs/psytec-freesoft.html @@ -140,7 +140,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/psytec-freesoft.json b/docs/psytec-freesoft.json index 90b455158f..098302674f 100644 --- a/docs/psytec-freesoft.json +++ b/docs/psytec-freesoft.json @@ -1 +1,12 @@ -{"key": "psytec-freesoft", "short_name": "Psytec Free Software License", "name": "Psytec Free Software License", "category": "Permissive", "owner": "Psytec", "homepage_url": "http://www.psytec.co.jp/freesoft/02/#L04", "spdx_license_key": "LicenseRef-scancode-psytec-freesoft", "text_urls": ["http://www.psytec.co.jp/freesoft/02/#L04"]} \ No newline at end of file +{ + "key": "psytec-freesoft", + "short_name": "Psytec Free Software License", + "name": "Psytec Free Software License", + "category": "Permissive", + "owner": "Psytec", + "homepage_url": "http://www.psytec.co.jp/freesoft/02/#L04", + "spdx_license_key": "LicenseRef-scancode-psytec-freesoft", + "text_urls": [ + "http://www.psytec.co.jp/freesoft/02/#L04" + ] +} \ No newline at end of file diff --git a/docs/public-domain-disclaimer.LICENSE b/docs/public-domain-disclaimer.LICENSE index 0de54b8177..e0dadab10c 100644 --- a/docs/public-domain-disclaimer.LICENSE +++ b/docs/public-domain-disclaimer.LICENSE @@ -1,3 +1,15 @@ +--- +key: public-domain-disclaimer +short_name: Public Domain Disclaimer +name: Public Domain Disclaimer +category: Public Domain +owner: Unspecified +notes: this is used also as a placeholder for similar public domain dedications texts and notices + that come with an additional warranty disclaimer +is_generic: yes +spdx_license_key: LicenseRef-scancode-public-domain-disclaimer +--- + This code is hereby placed in the public domain. THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS @@ -10,4 +22,4 @@ 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. +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/public-domain-disclaimer.html b/docs/public-domain-disclaimer.html index ee2e3c8443..341891f780 100644 --- a/docs/public-domain-disclaimer.html +++ b/docs/public-domain-disclaimer.html @@ -134,8 +134,7 @@ 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. - +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -147,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/public-domain-disclaimer.json b/docs/public-domain-disclaimer.json index 874adc527d..42358136c6 100644 --- a/docs/public-domain-disclaimer.json +++ b/docs/public-domain-disclaimer.json @@ -1 +1,10 @@ -{"key": "public-domain-disclaimer", "short_name": "Public Domain Disclaimer", "name": "Public Domain Disclaimer", "category": "Public Domain", "owner": "Unspecified", "notes": "this is used also as a placeholder for similar public domain dedications texts and notices that come with an additional warranty disclaimer", "is_generic": true, "spdx_license_key": "LicenseRef-scancode-public-domain-disclaimer"} \ No newline at end of file +{ + "key": "public-domain-disclaimer", + "short_name": "Public Domain Disclaimer", + "name": "Public Domain Disclaimer", + "category": "Public Domain", + "owner": "Unspecified", + "notes": "this is used also as a placeholder for similar public domain dedications texts and notices that come with an additional warranty disclaimer", + "is_generic": true, + "spdx_license_key": "LicenseRef-scancode-public-domain-disclaimer" +} \ No newline at end of file diff --git a/docs/public-domain.LICENSE b/docs/public-domain.LICENSE index e69de29bb2..4c4e7120db 100644 --- a/docs/public-domain.LICENSE +++ b/docs/public-domain.LICENSE @@ -0,0 +1,17 @@ +--- +key: public-domain +short_name: Public Domain +name: Public Domain +category: Public Domain +owner: Unspecified +homepage_url: http://www.linfo.org/publicdomain.html +is_generic: yes +spdx_license_key: LicenseRef-scancode-public-domain +other_spdx_license_keys: + - LicenseRef-PublicDomain +faq_url: http://www.linfo.org/publicdomain.html +other_urls: + - http://creativecommons.org/licenses/publicdomain/ + - http://en.wikipedia.org/wiki/Public_domain + - http://www.linfo.org/publicdomain.html +--- \ No newline at end of file diff --git a/docs/public-domain.html b/docs/public-domain.html index 4d95ade171..d7ed3fac6a 100644 --- a/docs/public-domain.html +++ b/docs/public-domain.html @@ -159,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/public-domain.json b/docs/public-domain.json index e4dfa80bfe..516461a1c7 100644 --- a/docs/public-domain.json +++ b/docs/public-domain.json @@ -1 +1,19 @@ -{"key": "public-domain", "short_name": "Public Domain", "name": "Public Domain", "category": "Public Domain", "owner": "Unspecified", "homepage_url": "http://www.linfo.org/publicdomain.html", "is_generic": true, "spdx_license_key": "LicenseRef-scancode-public-domain", "other_spdx_license_keys": ["LicenseRef-PublicDomain"], "faq_url": "http://www.linfo.org/publicdomain.html", "other_urls": ["http://creativecommons.org/licenses/publicdomain/", "http://en.wikipedia.org/wiki/Public_domain", "http://www.linfo.org/publicdomain.html"]} \ No newline at end of file +{ + "key": "public-domain", + "short_name": "Public Domain", + "name": "Public Domain", + "category": "Public Domain", + "owner": "Unspecified", + "homepage_url": "http://www.linfo.org/publicdomain.html", + "is_generic": true, + "spdx_license_key": "LicenseRef-scancode-public-domain", + "other_spdx_license_keys": [ + "LicenseRef-PublicDomain" + ], + "faq_url": "http://www.linfo.org/publicdomain.html", + "other_urls": [ + "http://creativecommons.org/licenses/publicdomain/", + "http://en.wikipedia.org/wiki/Public_domain", + "http://www.linfo.org/publicdomain.html" + ] +} \ No newline at end of file diff --git a/docs/purdue-bsd.LICENSE b/docs/purdue-bsd.LICENSE index d8be5ae1c3..3fbd811966 100644 --- a/docs/purdue-bsd.LICENSE +++ b/docs/purdue-bsd.LICENSE @@ -1,3 +1,14 @@ +--- +key: purdue-bsd +short_name: Purdue BSD-Style License +name: Purdue BSD-Style License +category: Permissive +owner: Purdue Research Foundation +notes: this is very similar to the hs-regexp license +spdx_license_key: LicenseRef-scancode-purdue-bsd +minimum_coverage: 70 +--- + This software is not subject to any license of the American Telephone and Telegraph Company or the Regents of the University of California. diff --git a/docs/purdue-bsd.html b/docs/purdue-bsd.html index 0ef3c5dcec..96ea75e249 100644 --- a/docs/purdue-bsd.html +++ b/docs/purdue-bsd.html @@ -151,7 +151,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/purdue-bsd.json b/docs/purdue-bsd.json index 5e097212c4..c388bf0803 100644 --- a/docs/purdue-bsd.json +++ b/docs/purdue-bsd.json @@ -1 +1,10 @@ -{"key": "purdue-bsd", "short_name": "Purdue BSD-Style License", "name": "Purdue BSD-Style License", "category": "Permissive", "owner": "Purdue Research Foundation", "notes": "this is very similar to the hs-regexp license", "spdx_license_key": "LicenseRef-scancode-purdue-bsd", "minimum_coverage": 70} \ No newline at end of file +{ + "key": "purdue-bsd", + "short_name": "Purdue BSD-Style License", + "name": "Purdue BSD-Style License", + "category": "Permissive", + "owner": "Purdue Research Foundation", + "notes": "this is very similar to the hs-regexp license", + "spdx_license_key": "LicenseRef-scancode-purdue-bsd", + "minimum_coverage": 70 +} \ No newline at end of file diff --git a/docs/pybench.LICENSE b/docs/pybench.LICENSE index feea9e14ee..0525047a22 100644 --- a/docs/pybench.LICENSE +++ b/docs/pybench.LICENSE @@ -1,3 +1,22 @@ +--- +key: pybench +short_name: pybench License +name: pybench License +category: Permissive +owner: eGenix +homepage_url: https://android.googlesource.com/platform/external/python/cpython2/+/965ad62600f69230e546a846414be6de9d8471df/Tools/pybench/LICENSE +spdx_license_key: LicenseRef-scancode-pybench +ignorable_copyrights: + - Copyright (c), 1997-2006, Marc-Andre Lemburg (mal@lemburg.com) + - Copyright (c), 2000-2006, eGenix.com Software GmbH (info@egenix.com) +ignorable_holders: + - Marc-Andre Lemburg + - eGenix.com Software GmbH +ignorable_emails: + - info@egenix.com + - mal@lemburg.com +--- + pybench License --------------- This copyright notice and license applies to all files in the pybench diff --git a/docs/pybench.html b/docs/pybench.html index 25b6bf12bd..df1ebcf93f 100644 --- a/docs/pybench.html +++ b/docs/pybench.html @@ -175,7 +175,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/pybench.json b/docs/pybench.json index def0c4d055..c3bfca8729 100644 --- a/docs/pybench.json +++ b/docs/pybench.json @@ -1 +1,21 @@ -{"key": "pybench", "short_name": "pybench License", "name": "pybench License", "category": "Permissive", "owner": "eGenix", "homepage_url": "https://android.googlesource.com/platform/external/python/cpython2/+/965ad62600f69230e546a846414be6de9d8471df/Tools/pybench/LICENSE", "spdx_license_key": "LicenseRef-scancode-pybench", "ignorable_copyrights": ["Copyright (c), 1997-2006, Marc-Andre Lemburg (mal@lemburg.com)", "Copyright (c), 2000-2006, eGenix.com Software GmbH (info@egenix.com)"], "ignorable_holders": ["Marc-Andre Lemburg", "eGenix.com Software GmbH"], "ignorable_emails": ["info@egenix.com", "mal@lemburg.com"]} \ No newline at end of file +{ + "key": "pybench", + "short_name": "pybench License", + "name": "pybench License", + "category": "Permissive", + "owner": "eGenix", + "homepage_url": "https://android.googlesource.com/platform/external/python/cpython2/+/965ad62600f69230e546a846414be6de9d8471df/Tools/pybench/LICENSE", + "spdx_license_key": "LicenseRef-scancode-pybench", + "ignorable_copyrights": [ + "Copyright (c), 1997-2006, Marc-Andre Lemburg (mal@lemburg.com)", + "Copyright (c), 2000-2006, eGenix.com Software GmbH (info@egenix.com)" + ], + "ignorable_holders": [ + "Marc-Andre Lemburg", + "eGenix.com Software GmbH" + ], + "ignorable_emails": [ + "info@egenix.com", + "mal@lemburg.com" + ] +} \ No newline at end of file diff --git a/docs/pycrypto.LICENSE b/docs/pycrypto.LICENSE index a67453324f..80458da71e 100644 --- a/docs/pycrypto.LICENSE +++ b/docs/pycrypto.LICENSE @@ -1,3 +1,13 @@ +--- +key: pycrypto +short_name: PyCrypto License +name: PyCrypto License +category: Permissive +owner: Andrew M. Kuchling +homepage_url: http://dev.mysql.com/doc/workbench/en/license-pycrypto.html +spdx_license_key: LicenseRef-scancode-pycrypto +--- + PyCrypto License The following software may be included in this product: @@ -13,4 +23,4 @@ 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). +(though that would be nice). \ No newline at end of file diff --git a/docs/pycrypto.html b/docs/pycrypto.html index 294e97eb50..64d3eea8f9 100644 --- a/docs/pycrypto.html +++ b/docs/pycrypto.html @@ -130,8 +130,7 @@ 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). - +(though that would be nice).
@@ -143,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/pycrypto.json b/docs/pycrypto.json index 91d4e839bc..878a7b3b4c 100644 --- a/docs/pycrypto.json +++ b/docs/pycrypto.json @@ -1 +1,9 @@ -{"key": "pycrypto", "short_name": "PyCrypto License", "name": "PyCrypto License", "category": "Permissive", "owner": "Andrew M. Kuchling", "homepage_url": "http://dev.mysql.com/doc/workbench/en/license-pycrypto.html", "spdx_license_key": "LicenseRef-scancode-pycrypto"} \ No newline at end of file +{ + "key": "pycrypto", + "short_name": "PyCrypto License", + "name": "PyCrypto License", + "category": "Permissive", + "owner": "Andrew M. Kuchling", + "homepage_url": "http://dev.mysql.com/doc/workbench/en/license-pycrypto.html", + "spdx_license_key": "LicenseRef-scancode-pycrypto" +} \ No newline at end of file diff --git a/docs/pygres-2.2.LICENSE b/docs/pygres-2.2.LICENSE index f94a8f0cc8..6b06a01f20 100644 --- a/docs/pygres-2.2.LICENSE +++ b/docs/pygres-2.2.LICENSE @@ -1,3 +1,24 @@ +--- +key: pygres-2.2 +short_name: PyGres License 2.2 +name: PyGres License v2.2 +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-pygres-2.2 +text_urls: + - http://shell.vex.net/viewvc.cgi/pygresql/trunk/module/pgmodule.c?view=markup&pathrev=431 +ignorable_copyrights: + - Copyright (c) 1995, Pascal Andre (andre@via.ecp.fr) + - copyright 1997, 1998, 1999 by D'Arcy J.M. Cain (darcy@druid.net) +ignorable_holders: + - D'Arcy J.M. Cain + - Pascal Andre +ignorable_emails: + - andre@chimay.via.ecp.fr + - andre@via.ecp.fr + - darcy@druid.net +--- + PyGres, version 2.2 A Python interface for PostgreSQL database. Written by D'Arcy J.M. Cain, (darcy@druid.net). Based heavily on code written by Pascal Andre, andre@chimay.via.ecp.fr. Copyright (c) 1995, Pascal Andre @@ -21,4 +42,4 @@ AUTHOR HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. Further modifications copyright 1997, 1998, 1999 by D'Arcy J.M. Cain -(darcy@druid.net) subject to the same terms and conditions as above. +(darcy@druid.net) subject to the same terms and conditions as above. \ No newline at end of file diff --git a/docs/pygres-2.2.html b/docs/pygres-2.2.html index edf2d06140..7ebf503947 100644 --- a/docs/pygres-2.2.html +++ b/docs/pygres-2.2.html @@ -167,8 +167,7 @@ ENHANCEMENTS, OR MODIFICATIONS. Further modifications copyright 1997, 1998, 1999 by D'Arcy J.M. Cain -(darcy@druid.net) subject to the same terms and conditions as above. - +(darcy@druid.net) subject to the same terms and conditions as above.
@@ -180,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/pygres-2.2.json b/docs/pygres-2.2.json index b084156785..9eac7569a2 100644 --- a/docs/pygres-2.2.json +++ b/docs/pygres-2.2.json @@ -1 +1,24 @@ -{"key": "pygres-2.2", "short_name": "PyGres License 2.2", "name": "PyGres License v2.2", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-pygres-2.2", "text_urls": ["http://shell.vex.net/viewvc.cgi/pygresql/trunk/module/pgmodule.c?view=markup&pathrev=431"], "ignorable_copyrights": ["Copyright (c) 1995, Pascal Andre (andre@via.ecp.fr)", "copyright 1997, 1998, 1999 by D'Arcy J.M. Cain (darcy@druid.net)"], "ignorable_holders": ["D'Arcy J.M. Cain", "Pascal Andre"], "ignorable_emails": ["andre@chimay.via.ecp.fr", "andre@via.ecp.fr", "darcy@druid.net"]} \ No newline at end of file +{ + "key": "pygres-2.2", + "short_name": "PyGres License 2.2", + "name": "PyGres License v2.2", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-pygres-2.2", + "text_urls": [ + "http://shell.vex.net/viewvc.cgi/pygresql/trunk/module/pgmodule.c?view=markup&pathrev=431" + ], + "ignorable_copyrights": [ + "Copyright (c) 1995, Pascal Andre (andre@via.ecp.fr)", + "copyright 1997, 1998, 1999 by D'Arcy J.M. Cain (darcy@druid.net)" + ], + "ignorable_holders": [ + "D'Arcy J.M. Cain", + "Pascal Andre" + ], + "ignorable_emails": [ + "andre@chimay.via.ecp.fr", + "andre@via.ecp.fr", + "darcy@druid.net" + ] +} \ No newline at end of file diff --git a/docs/python-2.0.1.LICENSE b/docs/python-2.0.1.LICENSE new file mode 100644 index 0000000000..a4fd003281 --- /dev/null +++ b/docs/python-2.0.1.LICENSE @@ -0,0 +1,233 @@ +--- +key: python-2.0.1 +short_name: Python License 2.0.1 +name: Python Software Foundation License v2.0.1 +category: Permissive +owner: Python Software Foundation (PSF) +homepage_url: http://docs.python.org/license.html +spdx_license_key: Python-2.0.1 +other_urls: + - https://docs.python.org/3/license.html + - https://github.com/python/cpython/blob/main/LICENSE + - https://www.python.org/download/releases/2.0.1/license/ +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, + 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 + - http://www.pythonlabs.com/logos.html +--- + +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +-------------------------------------------- + +1. This LICENSE AGREEMENT is between the Python Software Foundation +("PSF"), and the Individual or Organization ("Licensee") accessing and +otherwise using this software ("Python") in source or binary form and +its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, PSF hereby +grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, +analyze, test, perform and/or display publicly, prepare derivative works, +distribute, and otherwise use Python alone or in any derivative version, +provided, however, that PSF's License Agreement and PSF's notice of copyright, +i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Python Software Foundation; +All Rights Reserved" are retained in Python alone or in any derivative version +prepared by Licensee. + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python. + +4. PSF is making Python available to Licensee on an "AS IS" +basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. Nothing in this License Agreement shall be deemed to create any +relationship of agency, partnership, or joint venture between PSF and +Licensee. This License Agreement does not grant permission to use PSF +trademarks or trade name in a trademark sense to endorse or promote +products or services of Licensee, or any third party. + +8. By copying, installing or otherwise using Python, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +------------------------------------------- + +BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + +1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an +office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the +Individual or Organization ("Licensee") accessing and otherwise using +this software in source or binary form and its associated +documentation ("the Software"). + +2. Subject to the terms and conditions of this BeOpen Python License +Agreement, BeOpen hereby grants Licensee a non-exclusive, +royalty-free, world-wide license to reproduce, analyze, test, perform +and/or display publicly, prepare derivative works, distribute, and +otherwise use the Software alone or in any derivative version, +provided, however, that the BeOpen Python License is retained in the +Software, alone or in any derivative version prepared by Licensee. + +3. BeOpen is making the Software available to Licensee on an "AS IS" +basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE +SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS +AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY +DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +5. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +6. This License Agreement shall be governed by and interpreted in all +respects by the law of the State of California, excluding conflict of +law provisions. Nothing in this License Agreement shall be deemed to +create any relationship of agency, partnership, or joint venture +between BeOpen and Licensee. This License Agreement does not grant +permission to use BeOpen trademarks or trade names in a trademark +sense to endorse or promote products or services of Licensee, or any +third party. As an exception, the "BeOpen Python" logos available at +http://www.pythonlabs.com/logos.html may be used according to the +permissions granted on that web page. + +7. By copying, installing or otherwise using the software, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 +--------------------------------------- + +1. This LICENSE AGREEMENT is between the Corporation for National +Research Initiatives, having an office at 1895 Preston White Drive, +Reston, VA 20191 ("CNRI"), and the Individual or Organization +("Licensee") accessing and otherwise using Python 1.6.1 software in +source or binary form and its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, CNRI +hereby grants Licensee a nonexclusive, royalty-free, world-wide +license to reproduce, analyze, test, perform and/or display publicly, +prepare derivative works, distribute, and otherwise use Python 1.6.1 +alone or in any derivative version, provided, however, that CNRI's +License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) +1995-2001 Corporation for National Research Initiatives; All Rights +Reserved" are retained in Python 1.6.1 alone or in any derivative +version prepared by Licensee. Alternately, in lieu of CNRI's License +Agreement, Licensee may substitute the following text (omitting the +quotes): "Python 1.6.1 is made available subject to the terms and +conditions in CNRI's License Agreement. This Agreement together with +Python 1.6.1 may be located on the internet using the following +unique, persistent identifier (known as a handle): 1895.22/1013. This +Agreement may also be obtained from a proxy server on the internet +using the following URL: http://hdl.handle.net/1895.22/1013". + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python 1.6.1 or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python 1.6.1. + +4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" +basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. This License Agreement shall be governed by the federal +intellectual property law of the United States, including without +limitation the federal copyright law, and, to the extent such +U.S. federal law does not apply, by the law of the Commonwealth of +Virginia, excluding Virginia's conflict of law provisions. +Notwithstanding the foregoing, with regard to derivative works based +on Python 1.6.1 that incorporate non-separable material that was +previously distributed under the GNU General Public License (GPL), the +law of the Commonwealth of Virginia shall govern this License +Agreement only as to issues arising under or with respect to +Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this +License Agreement shall be deemed to create any relationship of +agency, partnership, or joint venture between CNRI and Licensee. This +License Agreement does not grant permission to use CNRI trademarks or +trade name in a trademark sense to endorse or promote products or +services of Licensee, or any third party. + +8. By clicking on the "ACCEPT" button where indicated, or by copying, +installing or otherwise using Python 1.6.1, Licensee agrees to be +bound by the terms and conditions of this License Agreement. + + ACCEPT + + +CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 +-------------------------------------------------- + +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, +The Netherlands. All rights reserved. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation, and that the name of Stichting Mathematisch +Centrum or CWI not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior +permission. + +STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO +THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE +FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +ZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON DOCUMENTATION +---------------------------------------------------------------------- + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/docs/python-2.0.1.html b/docs/python-2.0.1.html new file mode 100644 index 0000000000..1b1a4fc8bb --- /dev/null +++ b/docs/python-2.0.1.html @@ -0,0 +1,392 @@ + + + + + + LicenseDB: python-2.0.1 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + python-2.0.1 + +
+ +
short_name
+
+ + Python License 2.0.1 + +
+ +
name
+
+ + Python Software Foundation License v2.0.1 + +
+ +
category
+
+ + Permissive + +
+ +
owner
+
+ + Python Software Foundation (PSF) + +
+ +
homepage_url
+
+ + http://docs.python.org/license.html + +
+ +
spdx_license_key
+
+ + Python-2.0.1 + +
+ +
other_urls
+
+ + + +
+ +
ignorable_copyrights
+
+ +
    +
  • Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands
  • Copyright (c) 1995-2001 Corporation for National Research Initiatives
  • Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Python Software Foundation
  • +
+ +
+ +
ignorable_holders
+
+ +
    +
  • Corporation for National Research Initiatives
  • Python Software Foundation
  • Stichting Mathematisch Centrum Amsterdam, The Netherlands
  • +
+ +
+ +
ignorable_urls
+
+ + + +
+ +
+
license_text
+
PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
+--------------------------------------------
+
+1. This LICENSE AGREEMENT is between the Python Software Foundation
+("PSF"), and the Individual or Organization ("Licensee") accessing and
+otherwise using this software ("Python") in source or binary form and
+its associated documentation.
+
+2. Subject to the terms and conditions of this License Agreement, PSF hereby
+grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
+analyze, test, perform and/or display publicly, prepare derivative works,
+distribute, and otherwise use Python alone or in any derivative version,
+provided, however, that PSF's License Agreement and PSF's notice of copyright,
+i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
+2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Python Software Foundation;
+All Rights Reserved" are retained in Python alone or in any derivative version
+prepared by Licensee.
+
+3. In the event Licensee prepares a derivative work that is based on
+or incorporates Python or any part thereof, and wants to make
+the derivative work available to others as provided herein, then
+Licensee hereby agrees to include in any such work a brief summary of
+the changes made to Python.
+
+4. PSF is making Python available to Licensee on an "AS IS"
+basis.  PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
+OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+6. This License Agreement will automatically terminate upon a material
+breach of its terms and conditions.
+
+7. Nothing in this License Agreement shall be deemed to create any
+relationship of agency, partnership, or joint venture between PSF and
+Licensee.  This License Agreement does not grant permission to use PSF
+trademarks or trade name in a trademark sense to endorse or promote
+products or services of Licensee, or any third party.
+
+8. By copying, installing or otherwise using Python, Licensee
+agrees to be bound by the terms and conditions of this License
+Agreement.
+
+
+BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
+-------------------------------------------
+
+BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
+
+1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
+office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
+Individual or Organization ("Licensee") accessing and otherwise using
+this software in source or binary form and its associated
+documentation ("the Software").
+
+2. Subject to the terms and conditions of this BeOpen Python License
+Agreement, BeOpen hereby grants Licensee a non-exclusive,
+royalty-free, world-wide license to reproduce, analyze, test, perform
+and/or display publicly, prepare derivative works, distribute, and
+otherwise use the Software alone or in any derivative version,
+provided, however, that the BeOpen Python License is retained in the
+Software, alone or in any derivative version prepared by Licensee.
+
+3. BeOpen is making the Software available to Licensee on an "AS IS"
+basis.  BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
+SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
+AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
+DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+5. This License Agreement will automatically terminate upon a material
+breach of its terms and conditions.
+
+6. This License Agreement shall be governed by and interpreted in all
+respects by the law of the State of California, excluding conflict of
+law provisions.  Nothing in this License Agreement shall be deemed to
+create any relationship of agency, partnership, or joint venture
+between BeOpen and Licensee.  This License Agreement does not grant
+permission to use BeOpen trademarks or trade names in a trademark
+sense to endorse or promote products or services of Licensee, or any
+third party.  As an exception, the "BeOpen Python" logos available at
+http://www.pythonlabs.com/logos.html may be used according to the
+permissions granted on that web page.
+
+7. By copying, installing or otherwise using the software, Licensee
+agrees to be bound by the terms and conditions of this License
+Agreement.
+
+
+CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
+---------------------------------------
+
+1. This LICENSE AGREEMENT is between the Corporation for National
+Research Initiatives, having an office at 1895 Preston White Drive,
+Reston, VA 20191 ("CNRI"), and the Individual or Organization
+("Licensee") accessing and otherwise using Python 1.6.1 software in
+source or binary form and its associated documentation.
+
+2. Subject to the terms and conditions of this License Agreement, CNRI
+hereby grants Licensee a nonexclusive, royalty-free, world-wide
+license to reproduce, analyze, test, perform and/or display publicly,
+prepare derivative works, distribute, and otherwise use Python 1.6.1
+alone or in any derivative version, provided, however, that CNRI's
+License Agreement and CNRI's notice of copyright, i.e., "Copyright (c)
+1995-2001 Corporation for National Research Initiatives; All Rights
+Reserved" are retained in Python 1.6.1 alone or in any derivative
+version prepared by Licensee.  Alternately, in lieu of CNRI's License
+Agreement, Licensee may substitute the following text (omitting the
+quotes): "Python 1.6.1 is made available subject to the terms and
+conditions in CNRI's License Agreement.  This Agreement together with
+Python 1.6.1 may be located on the internet using the following
+unique, persistent identifier (known as a handle): 1895.22/1013.  This
+Agreement may also be obtained from a proxy server on the internet
+using the following URL: http://hdl.handle.net/1895.22/1013".
+
+3. In the event Licensee prepares a derivative work that is based on
+or incorporates Python 1.6.1 or any part thereof, and wants to make
+the derivative work available to others as provided herein, then
+Licensee hereby agrees to include in any such work a brief summary of
+the changes made to Python 1.6.1.
+
+4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
+basis.  CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
+OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+6. This License Agreement will automatically terminate upon a material
+breach of its terms and conditions.
+
+7. This License Agreement shall be governed by the federal
+intellectual property law of the United States, including without
+limitation the federal copyright law, and, to the extent such
+U.S. federal law does not apply, by the law of the Commonwealth of
+Virginia, excluding Virginia's conflict of law provisions.
+Notwithstanding the foregoing, with regard to derivative works based
+on Python 1.6.1 that incorporate non-separable material that was
+previously distributed under the GNU General Public License (GPL), the
+law of the Commonwealth of Virginia shall govern this License
+Agreement only as to issues arising under or with respect to
+Paragraphs 4, 5, and 7 of this License Agreement.  Nothing in this
+License Agreement shall be deemed to create any relationship of
+agency, partnership, or joint venture between CNRI and Licensee.  This
+License Agreement does not grant permission to use CNRI trademarks or
+trade name in a trademark sense to endorse or promote products or
+services of Licensee, or any third party.
+
+8. By clicking on the "ACCEPT" button where indicated, or by copying,
+installing or otherwise using Python 1.6.1, Licensee agrees to be
+bound by the terms and conditions of this License Agreement.
+
+        ACCEPT
+
+
+CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
+--------------------------------------------------
+
+Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
+The Netherlands.  All rights reserved.
+
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose and without fee is hereby granted,
+provided that the above copyright notice appear in all copies and that
+both that copyright notice and this permission notice appear in
+supporting documentation, and that the name of Stichting Mathematisch
+Centrum or CWI not be used in advertising or publicity pertaining to
+distribution of the software without specific, written prior
+permission.
+
+STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
+THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
+FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
+OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+ZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON DOCUMENTATION
+----------------------------------------------------------------------
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
+OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THIS SOFTWARE.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/python-2.0.1.json b/docs/python-2.0.1.json new file mode 100644 index 0000000000..c3e7374cc5 --- /dev/null +++ b/docs/python-2.0.1.json @@ -0,0 +1,28 @@ +{ + "key": "python-2.0.1", + "short_name": "Python License 2.0.1", + "name": "Python Software Foundation License v2.0.1", + "category": "Permissive", + "owner": "Python Software Foundation (PSF)", + "homepage_url": "http://docs.python.org/license.html", + "spdx_license_key": "Python-2.0.1", + "other_urls": [ + "https://docs.python.org/3/license.html", + "https://github.com/python/cpython/blob/main/LICENSE", + "https://www.python.org/download/releases/2.0.1/license/" + ], + "ignorable_copyrights": [ + "Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands", + "Copyright (c) 1995-2001 Corporation for National Research Initiatives", + "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Python Software Foundation" + ], + "ignorable_holders": [ + "Corporation for National Research Initiatives", + "Python Software Foundation", + "Stichting Mathematisch Centrum Amsterdam, The Netherlands" + ], + "ignorable_urls": [ + "http://hdl.handle.net/1895.22/1013", + "http://www.pythonlabs.com/logos.html" + ] +} \ No newline at end of file diff --git a/docs/python-2.0.1.yml b/docs/python-2.0.1.yml new file mode 100644 index 0000000000..72309e62a5 --- /dev/null +++ b/docs/python-2.0.1.yml @@ -0,0 +1,23 @@ +key: python-2.0.1 +short_name: Python License 2.0.1 +name: Python Software Foundation License v2.0.1 +category: Permissive +owner: Python Software Foundation (PSF) +homepage_url: http://docs.python.org/license.html +spdx_license_key: Python-2.0.1 +other_urls: + - https://docs.python.org/3/license.html + - https://github.com/python/cpython/blob/main/LICENSE + - https://www.python.org/download/releases/2.0.1/license/ +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, + 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 + - http://www.pythonlabs.com/logos.html diff --git a/docs/python-cwi.LICENSE b/docs/python-cwi.LICENSE index 47b2df9d52..43fe80f0e7 100644 --- a/docs/python-cwi.LICENSE +++ b/docs/python-cwi.LICENSE @@ -1,3 +1,18 @@ +--- +key: python-cwi +short_name: Python CWI License +name: Python CWI License Agreement +category: Permissive +owner: Python Software Foundation (PSF) +homepage_url: http://docs.python.org/license.html +notes: | + This is the old license of Python as used from inception from 0.9.0 thru + 1.2 versions. This is a MIT/BSD-style license that is rather rare these + days but also unique. It is also found at the bottom of the current Python + license text. +spdx_license_key: LicenseRef-scancode-python-cwi +--- + 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 @@ -13,4 +28,4 @@ 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. +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/docs/python-cwi.html b/docs/python-cwi.html index 758f27e0f5..00dbcab8fe 100644 --- a/docs/python-cwi.html +++ b/docs/python-cwi.html @@ -141,8 +141,7 @@ 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. - +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
@@ -154,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/python-cwi.json b/docs/python-cwi.json index ac32edc3fd..ae1f511cb6 100644 --- a/docs/python-cwi.json +++ b/docs/python-cwi.json @@ -1 +1,10 @@ -{"key": "python-cwi", "short_name": "Python CWI License", "name": "Python CWI License Agreement", "category": "Permissive", "owner": "Python Software Foundation (PSF)", "homepage_url": "http://docs.python.org/license.html", "notes": "This is the old license of Python as used from inception from 0.9.0 thru\n1.2 versions. This is a MIT/BSD-style license that is rather rare these\ndays but also unique. It is also found at the bottom of the current Python\nlicense text.\n", "spdx_license_key": "LicenseRef-scancode-python-cwi"} \ No newline at end of file +{ + "key": "python-cwi", + "short_name": "Python CWI License", + "name": "Python CWI License Agreement", + "category": "Permissive", + "owner": "Python Software Foundation (PSF)", + "homepage_url": "http://docs.python.org/license.html", + "notes": "This is the old license of Python as used from inception from 0.9.0 thru\n1.2 versions. This is a MIT/BSD-style license that is rather rare these\ndays but also unique. It is also found at the bottom of the current Python\nlicense text.\n", + "spdx_license_key": "LicenseRef-scancode-python-cwi" +} \ No newline at end of file diff --git a/docs/python.LICENSE b/docs/python.LICENSE index 60e91cfe32..191919c797 100644 --- a/docs/python.LICENSE +++ b/docs/python.LICENSE @@ -1,3 +1,31 @@ +--- +key: python +short_name: Python License 2.0 +name: Python Software Foundation License v2 +category: Permissive +owner: Python Software Foundation (PSF) +homepage_url: http://docs.python.org/license.html +spdx_license_key: Python-2.0 +text_urls: + - http://spdx.org/licenses/Python-2.0 +osi_url: http://www.opensource.org/licenses/Python-2.0 +other_urls: + - http://opensource.org/licenses/PythonSoftFoundation.php + - http://www.gnu.org/licenses/license-list.html#PythonOld + - https://opensource.org/licenses/Python-2.0 +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 + - http://www.pythonlabs.com/logos.html +--- + PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 -------------------------------------------- @@ -189,4 +217,4 @@ 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. +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/docs/python.html b/docs/python.html index f3c72c2d0c..30abd6b754 100644 --- a/docs/python.html +++ b/docs/python.html @@ -358,8 +358,7 @@ 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. - +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
@@ -371,7 +370,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/python.json b/docs/python.json index d901567a41..d5b60c65f3 100644 --- a/docs/python.json +++ b/docs/python.json @@ -1 +1,32 @@ -{"key": "python", "short_name": "Python License 2.0", "name": "Python Software Foundation License v2", "category": "Permissive", "owner": "Python Software Foundation (PSF)", "homepage_url": "http://docs.python.org/license.html", "spdx_license_key": "Python-2.0", "text_urls": ["http://spdx.org/licenses/Python-2.0"], "osi_url": "http://www.opensource.org/licenses/Python-2.0", "other_urls": ["http://opensource.org/licenses/PythonSoftFoundation.php", "http://www.gnu.org/licenses/license-list.html#PythonOld", "https://opensource.org/licenses/Python-2.0"], "ignorable_copyrights": ["Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands", "Copyright (c) 1995-2001 Corporation for National Research Initiatives", "Copyright (c) Python Software Foundation"], "ignorable_holders": ["Corporation for National Research Initiatives", "Python Software Foundation", "Stichting Mathematisch Centrum Amsterdam, The Netherlands"], "ignorable_urls": ["http://hdl.handle.net/1895.22/1013", "http://www.pythonlabs.com/logos.html"]} \ No newline at end of file +{ + "key": "python", + "short_name": "Python License 2.0", + "name": "Python Software Foundation License v2", + "category": "Permissive", + "owner": "Python Software Foundation (PSF)", + "homepage_url": "http://docs.python.org/license.html", + "spdx_license_key": "Python-2.0", + "text_urls": [ + "http://spdx.org/licenses/Python-2.0" + ], + "osi_url": "http://www.opensource.org/licenses/Python-2.0", + "other_urls": [ + "http://opensource.org/licenses/PythonSoftFoundation.php", + "http://www.gnu.org/licenses/license-list.html#PythonOld", + "https://opensource.org/licenses/Python-2.0" + ], + "ignorable_copyrights": [ + "Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands", + "Copyright (c) 1995-2001 Corporation for National Research Initiatives", + "Copyright (c) Python Software Foundation" + ], + "ignorable_holders": [ + "Corporation for National Research Initiatives", + "Python Software Foundation", + "Stichting Mathematisch Centrum Amsterdam, The Netherlands" + ], + "ignorable_urls": [ + "http://hdl.handle.net/1895.22/1013", + "http://www.pythonlabs.com/logos.html" + ] +} \ No newline at end of file diff --git a/docs/qaplug.LICENSE b/docs/qaplug.LICENSE index 9abf5ebb1d..eabc409c9b 100644 --- a/docs/qaplug.LICENSE +++ b/docs/qaplug.LICENSE @@ -1,3 +1,13 @@ +--- +key: qaplug +short_name: QAPlug License +name: QAPlug License +category: Proprietary Free +owner: SolDevelo +homepage_url: http://qaplug.com/about/license-agreement/ +spdx_license_key: LicenseRef-scancode-qaplug +--- + END USER LICENSE AGREEMENT SolDevelo ("Licensor") will license the software application ("Software") to the User ("Licensee"), upon the condition that Licensee accept all of the Terms and Conditions of this End User License Agreement ("Agreement"). diff --git a/docs/qaplug.html b/docs/qaplug.html index e67fa51d4b..e072bce0ba 100644 --- a/docs/qaplug.html +++ b/docs/qaplug.html @@ -171,7 +171,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qaplug.json b/docs/qaplug.json index 91a0c89ae4..c400fc9c05 100644 --- a/docs/qaplug.json +++ b/docs/qaplug.json @@ -1 +1,9 @@ -{"key": "qaplug", "short_name": "QAPlug License", "name": "QAPlug License", "category": "Proprietary Free", "owner": "SolDevelo", "homepage_url": "http://qaplug.com/about/license-agreement/", "spdx_license_key": "LicenseRef-scancode-qaplug"} \ No newline at end of file +{ + "key": "qaplug", + "short_name": "QAPlug License", + "name": "QAPlug License", + "category": "Proprietary Free", + "owner": "SolDevelo", + "homepage_url": "http://qaplug.com/about/license-agreement/", + "spdx_license_key": "LicenseRef-scancode-qaplug" +} \ No newline at end of file diff --git a/docs/qca-linux-firmware.LICENSE b/docs/qca-linux-firmware.LICENSE index 51ee2dcaab..167342e5a7 100644 --- a/docs/qca-linux-firmware.LICENSE +++ b/docs/qca-linux-firmware.LICENSE @@ -1,3 +1,17 @@ +--- +key: qca-linux-firmware +short_name: QCA Linux Firmware License +name: QCA Linux Firmware License +category: Proprietary Free +owner: Qualcomm Atheros +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.QualcommAtheros_ath10k +spdx_license_key: LicenseRef-scancode-qca-linux-firmware +text_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.QualcommAtheros_ar3k +ignorable_urls: + - git://git.kernel.org/pub/scm/linux/kernel/git/firmware/ +--- + Redistribution. Reproduction and redistribution in binary form, without modification, for use solely in conjunction with a Qualcomm Atheros, Inc. chipset, is permitted provided that the following conditions are met: diff --git a/docs/qca-linux-firmware.html b/docs/qca-linux-firmware.html index ea50c4a9e9..8360b0e51e 100644 --- a/docs/qca-linux-firmware.html +++ b/docs/qca-linux-firmware.html @@ -188,7 +188,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qca-linux-firmware.json b/docs/qca-linux-firmware.json index 72b6d29b6c..fda61df845 100644 --- a/docs/qca-linux-firmware.json +++ b/docs/qca-linux-firmware.json @@ -1 +1,15 @@ -{"key": "qca-linux-firmware", "short_name": "QCA Linux Firmware License", "name": "QCA Linux Firmware License", "category": "Proprietary Free", "owner": "Qualcomm Atheros", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.QualcommAtheros_ath10k", "spdx_license_key": "LicenseRef-scancode-qca-linux-firmware", "text_urls": ["https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.QualcommAtheros_ar3k"], "ignorable_urls": ["git://git.kernel.org/pub/scm/linux/kernel/git/firmware/"]} \ No newline at end of file +{ + "key": "qca-linux-firmware", + "short_name": "QCA Linux Firmware License", + "name": "QCA Linux Firmware License", + "category": "Proprietary Free", + "owner": "Qualcomm Atheros", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.QualcommAtheros_ath10k", + "spdx_license_key": "LicenseRef-scancode-qca-linux-firmware", + "text_urls": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.QualcommAtheros_ar3k" + ], + "ignorable_urls": [ + "git://git.kernel.org/pub/scm/linux/kernel/git/firmware/" + ] +} \ No newline at end of file diff --git a/docs/qca-technology.LICENSE b/docs/qca-technology.LICENSE index 6cabeed2c3..45a7e6a797 100644 --- a/docs/qca-technology.LICENSE +++ b/docs/qca-technology.LICENSE @@ -1,3 +1,13 @@ +--- +key: qca-technology +short_name: QCA Technology License +name: Qualcomm Atheros Technology License +category: Proprietary Free +owner: Qualcomm Atheros +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.atheros_firmware +spdx_license_key: LicenseRef-scancode-qca-technology +--- + Redistribution and use in binary forms, without modification, are permitted (subject to the limitations in the disclaimer below) provided that the following conditions are met: diff --git a/docs/qca-technology.html b/docs/qca-technology.html index cad67da52f..685642458f 100644 --- a/docs/qca-technology.html +++ b/docs/qca-technology.html @@ -166,7 +166,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qca-technology.json b/docs/qca-technology.json index 124f094b64..50acd0926e 100644 --- a/docs/qca-technology.json +++ b/docs/qca-technology.json @@ -1 +1,9 @@ -{"key": "qca-technology", "short_name": "QCA Technology License", "name": "Qualcomm Atheros Technology License", "category": "Proprietary Free", "owner": "Qualcomm Atheros", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.atheros_firmware", "spdx_license_key": "LicenseRef-scancode-qca-technology"} \ No newline at end of file +{ + "key": "qca-technology", + "short_name": "QCA Technology License", + "name": "Qualcomm Atheros Technology License", + "category": "Proprietary Free", + "owner": "Qualcomm Atheros", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.atheros_firmware", + "spdx_license_key": "LicenseRef-scancode-qca-technology" +} \ No newline at end of file diff --git a/docs/qcad-exception-gpl.LICENSE b/docs/qcad-exception-gpl.LICENSE index 1b0342af23..fdbc921492 100644 --- a/docs/qcad-exception-gpl.LICENSE +++ b/docs/qcad-exception-gpl.LICENSE @@ -1,3 +1,14 @@ +--- +key: qcad-exception-gpl +short_name: QCAD Exception to GPL +name: QCAD Exception to GPL +category: Copyleft Limited +owner: RibbonSoft GmbH +homepage_url: https://github.com/qcad/qcad/blob/master/gpl-3.0-exceptions.txt +is_exception: yes +spdx_license_key: LicenseRef-scancode-qcad-exception-gpl +--- + Linking QCAD libraries statically or dynamically with other modules is making a combined work based on the QCAD libraries. Thus, the terms and conditions of the GNU General Public License cover the whole combination. diff --git a/docs/qcad-exception-gpl.html b/docs/qcad-exception-gpl.html index 61798fe47a..26fae3d1ad 100644 --- a/docs/qcad-exception-gpl.html +++ b/docs/qcad-exception-gpl.html @@ -148,7 +148,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qcad-exception-gpl.json b/docs/qcad-exception-gpl.json index 3c5a3e3e2f..b3ca8b7e38 100644 --- a/docs/qcad-exception-gpl.json +++ b/docs/qcad-exception-gpl.json @@ -1 +1,10 @@ -{"key": "qcad-exception-gpl", "short_name": "QCAD Exception to GPL", "name": "QCAD Exception to GPL", "category": "Copyleft Limited", "owner": "RibbonSoft GmbH", "homepage_url": "https://github.com/qcad/qcad/blob/master/gpl-3.0-exceptions.txt", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-qcad-exception-gpl"} \ No newline at end of file +{ + "key": "qcad-exception-gpl", + "short_name": "QCAD Exception to GPL", + "name": "QCAD Exception to GPL", + "category": "Copyleft Limited", + "owner": "RibbonSoft GmbH", + "homepage_url": "https://github.com/qcad/qcad/blob/master/gpl-3.0-exceptions.txt", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-qcad-exception-gpl" +} \ No newline at end of file diff --git a/docs/qhull.LICENSE b/docs/qhull.LICENSE index 9055f0892f..56901b51a7 100644 --- a/docs/qhull.LICENSE +++ b/docs/qhull.LICENSE @@ -1,3 +1,27 @@ +--- +key: qhull +short_name: Qhull License +name: Qhull License +category: Copyleft Limited +owner: Geometry Center +homepage_url: https://fedoraproject.org/wiki/Licensing:Qhull?rd=Licensing/Qhull +spdx_license_key: Qhull +other_urls: + - https://fedoraproject.org/wiki/Licensing/Qhull +ignorable_copyrights: + - Qhull, Copyright (c) 1993-2003 The National Science and Technology Research Center for + Computation and Visualization of Geometric Structures (The Geometry Center) University + of Minnesota +ignorable_holders: + - Qhull, The National Science and Technology Research Center for Computation and Visualization + of Geometric Structures (The Geometry Center) University of Minnesota +ignorable_urls: + - http://www.qhull.org/ +ignorable_emails: + - qhull@qhull.org + - qhull_bug@qhull.org +--- + Qhull, Copyright (c) 1993-2003 The National Science and Technology Research Center for Computation and Visualization of Geometric Structures (The Geometry Center) University of Minnesota diff --git a/docs/qhull.html b/docs/qhull.html index 7651665ac2..abed00c8c6 100644 --- a/docs/qhull.html +++ b/docs/qhull.html @@ -188,7 +188,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qhull.json b/docs/qhull.json index 5240f54840..5d2ae4cf90 100644 --- a/docs/qhull.json +++ b/docs/qhull.json @@ -1 +1,25 @@ -{"key": "qhull", "short_name": "Qhull License", "name": "Qhull License", "category": "Copyleft Limited", "owner": "Geometry Center", "homepage_url": "https://fedoraproject.org/wiki/Licensing:Qhull?rd=Licensing/Qhull", "spdx_license_key": "Qhull", "other_urls": ["https://fedoraproject.org/wiki/Licensing/Qhull"], "ignorable_copyrights": ["Qhull, Copyright (c) 1993-2003 The National Science and Technology Research Center for Computation and Visualization of Geometric Structures (The Geometry Center) University of Minnesota"], "ignorable_holders": ["Qhull, The National Science and Technology Research Center for Computation and Visualization of Geometric Structures (The Geometry Center) University of Minnesota"], "ignorable_urls": ["http://www.qhull.org/"], "ignorable_emails": ["qhull@qhull.org", "qhull_bug@qhull.org"]} \ No newline at end of file +{ + "key": "qhull", + "short_name": "Qhull License", + "name": "Qhull License", + "category": "Copyleft Limited", + "owner": "Geometry Center", + "homepage_url": "https://fedoraproject.org/wiki/Licensing:Qhull?rd=Licensing/Qhull", + "spdx_license_key": "Qhull", + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/Qhull" + ], + "ignorable_copyrights": [ + "Qhull, Copyright (c) 1993-2003 The National Science and Technology Research Center for Computation and Visualization of Geometric Structures (The Geometry Center) University of Minnesota" + ], + "ignorable_holders": [ + "Qhull, The National Science and Technology Research Center for Computation and Visualization of Geometric Structures (The Geometry Center) University of Minnesota" + ], + "ignorable_urls": [ + "http://www.qhull.org/" + ], + "ignorable_emails": [ + "qhull@qhull.org", + "qhull_bug@qhull.org" + ] +} \ No newline at end of file diff --git a/docs/qlogic-firmware.LICENSE b/docs/qlogic-firmware.LICENSE index fd41b7714c..890a42cbf9 100644 --- a/docs/qlogic-firmware.LICENSE +++ b/docs/qlogic-firmware.LICENSE @@ -1,3 +1,15 @@ +--- +key: qlogic-firmware +short_name: QLogic Firmware License +name: QLogic Firmware License +category: Proprietary Free +owner: QLogic +homepage_url: https://github.com/wkennington/linux-firmware/blob/master/LICENCE.qla2xxx +spdx_license_key: LicenseRef-scancode-qlogic-firmware +text_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.qla2xxx +--- + Redistribution and use in binary form, without modification, for use in conjunction with QLogic authorized products is permitted provided that the following conditions are met: diff --git a/docs/qlogic-firmware.html b/docs/qlogic-firmware.html index 8e5a2754b6..8d6bf7d609 100644 --- a/docs/qlogic-firmware.html +++ b/docs/qlogic-firmware.html @@ -163,7 +163,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qlogic-firmware.json b/docs/qlogic-firmware.json index f7b389b5e4..7b3b55e143 100644 --- a/docs/qlogic-firmware.json +++ b/docs/qlogic-firmware.json @@ -1 +1,12 @@ -{"key": "qlogic-firmware", "short_name": "QLogic Firmware License", "name": "QLogic Firmware License", "category": "Proprietary Free", "owner": "QLogic", "homepage_url": "https://github.com/wkennington/linux-firmware/blob/master/LICENCE.qla2xxx", "spdx_license_key": "LicenseRef-scancode-qlogic-firmware", "text_urls": ["https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.qla2xxx"]} \ No newline at end of file +{ + "key": "qlogic-firmware", + "short_name": "QLogic Firmware License", + "name": "QLogic Firmware License", + "category": "Proprietary Free", + "owner": "QLogic", + "homepage_url": "https://github.com/wkennington/linux-firmware/blob/master/LICENCE.qla2xxx", + "spdx_license_key": "LicenseRef-scancode-qlogic-firmware", + "text_urls": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.qla2xxx" + ] +} \ No newline at end of file diff --git a/docs/qlogic-microcode.LICENSE b/docs/qlogic-microcode.LICENSE index b6706151de..07f954179b 100644 --- a/docs/qlogic-microcode.LICENSE +++ b/docs/qlogic-microcode.LICENSE @@ -1,3 +1,13 @@ +--- +key: qlogic-microcode +short_name: QLogic Microcode +name: QLogic Microcode +category: Permissive +owner: QLogic +notes: this is a Linux firmware BSD-like license with some weird extra terms +spdx_license_key: LicenseRef-scancode-qlogic-microcode +--- + You may redistribute the hardware specific firmware binary file under the following terms: @@ -33,4 +43,4 @@ CREATE OR GIVE GROUNDS FOR A LICENSE BY IMPLICATION, ESTOPPEL, OR OTHERWISE IN ANY INTELLECTUAL PROPERTY RIGHTS (PATENT, COPYRIGHT, TRADE SECRET, MASK WORK, OR OTHER PROPRIETARY RIGHT) EMBODIED IN ANY OTHER QLOGIC HARDWARE OR SOFTWARE EITHER SOLELY OR IN -COMBINATION WITH THIS PROGRAM. +COMBINATION WITH THIS PROGRAM. \ No newline at end of file diff --git a/docs/qlogic-microcode.html b/docs/qlogic-microcode.html index e5991342ce..b97f345887 100644 --- a/docs/qlogic-microcode.html +++ b/docs/qlogic-microcode.html @@ -150,8 +150,7 @@ OTHERWISE IN ANY INTELLECTUAL PROPERTY RIGHTS (PATENT, COPYRIGHT, TRADE SECRET, MASK WORK, OR OTHER PROPRIETARY RIGHT) EMBODIED IN ANY OTHER QLOGIC HARDWARE OR SOFTWARE EITHER SOLELY OR IN -COMBINATION WITH THIS PROGRAM. - +COMBINATION WITH THIS PROGRAM.
@@ -163,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qlogic-microcode.json b/docs/qlogic-microcode.json index 2a913719c1..1656b42b99 100644 --- a/docs/qlogic-microcode.json +++ b/docs/qlogic-microcode.json @@ -1 +1,9 @@ -{"key": "qlogic-microcode", "short_name": "QLogic Microcode", "name": "QLogic Microcode", "category": "Permissive", "owner": "QLogic", "notes": "this is a Linux firmware BSD-like license with some weird extra terms", "spdx_license_key": "LicenseRef-scancode-qlogic-microcode"} \ No newline at end of file +{ + "key": "qlogic-microcode", + "short_name": "QLogic Microcode", + "name": "QLogic Microcode", + "category": "Permissive", + "owner": "QLogic", + "notes": "this is a Linux firmware BSD-like license with some weird extra terms", + "spdx_license_key": "LicenseRef-scancode-qlogic-microcode" +} \ No newline at end of file diff --git a/docs/qpl-1.0.LICENSE b/docs/qpl-1.0.LICENSE index 07a2efc938..48dd3f6f3a 100644 --- a/docs/qpl-1.0.LICENSE +++ b/docs/qpl-1.0.LICENSE @@ -1,3 +1,27 @@ +--- +key: qpl-1.0 +short_name: QPL 1.0 +name: Q Public License Version 1.0 +category: Copyleft Limited +owner: Trolltech +homepage_url: http://doc.trolltech.com/4.0/qpl.html +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: QPL-1.0 +osi_license_key: QPL-1.0 +text_urls: + - http://doc.trolltech.com/4.0/qpl.html +other_urls: + - http://doc.qt.nokia.com/3.3/license.html + - http://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses + - http://www.opensource.org/licenses/QPL-1.0 + - https://doc.qt.io/archives/3.3/license.html + - https://opensource.org/licenses/QPL-1.0 +ignorable_copyrights: + - Copyright (c) 1999 Trolltech AS, Norway +ignorable_holders: + - Trolltech AS, Norway +--- + The Q Public License Version 1.0 Copyright (C) 1999 Trolltech AS, Norway. diff --git a/docs/qpl-1.0.html b/docs/qpl-1.0.html index 5d4f462255..1a026890b2 100644 --- a/docs/qpl-1.0.html +++ b/docs/qpl-1.0.html @@ -223,7 +223,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qpl-1.0.json b/docs/qpl-1.0.json index 40622d87a2..6ec4d1ee1e 100644 --- a/docs/qpl-1.0.json +++ b/docs/qpl-1.0.json @@ -1 +1,27 @@ -{"key": "qpl-1.0", "short_name": "QPL 1.0", "name": "Q Public License Version 1.0", "category": "Copyleft Limited", "owner": "Trolltech", "homepage_url": "http://doc.trolltech.com/4.0/qpl.html", "notes": "Per SPDX.org, this license is OSI certified.", "spdx_license_key": "QPL-1.0", "osi_license_key": "QPL-1.0", "text_urls": ["http://doc.trolltech.com/4.0/qpl.html"], "other_urls": ["http://doc.qt.nokia.com/3.3/license.html", "http://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses", "http://www.opensource.org/licenses/QPL-1.0", "https://doc.qt.io/archives/3.3/license.html", "https://opensource.org/licenses/QPL-1.0"], "ignorable_copyrights": ["Copyright (c) 1999 Trolltech AS, Norway"], "ignorable_holders": ["Trolltech AS, Norway"]} \ No newline at end of file +{ + "key": "qpl-1.0", + "short_name": "QPL 1.0", + "name": "Q Public License Version 1.0", + "category": "Copyleft Limited", + "owner": "Trolltech", + "homepage_url": "http://doc.trolltech.com/4.0/qpl.html", + "notes": "Per SPDX.org, this license is OSI certified.", + "spdx_license_key": "QPL-1.0", + "osi_license_key": "QPL-1.0", + "text_urls": [ + "http://doc.trolltech.com/4.0/qpl.html" + ], + "other_urls": [ + "http://doc.qt.nokia.com/3.3/license.html", + "http://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses", + "http://www.opensource.org/licenses/QPL-1.0", + "https://doc.qt.io/archives/3.3/license.html", + "https://opensource.org/licenses/QPL-1.0" + ], + "ignorable_copyrights": [ + "Copyright (c) 1999 Trolltech AS, Norway" + ], + "ignorable_holders": [ + "Trolltech AS, Norway" + ] +} \ No newline at end of file diff --git a/docs/qpopper.LICENSE b/docs/qpopper.LICENSE index 73981a109e..2cb7b41d32 100644 --- a/docs/qpopper.LICENSE +++ b/docs/qpopper.LICENSE @@ -1,3 +1,23 @@ +--- +key: qpopper +short_name: Qpopper License +name: Qpopper License +category: Permissive +owner: Qualcomm +homepage_url: http://www.eudora.com/products/unsupported/qpopper/license.html +spdx_license_key: LicenseRef-scancode-qpopper +text_urls: + - http://www.eudora.com/products/unsupported/qpopper/license.html +ignorable_copyrights: + - (c) Copyright 1989-1991 The Regents of the University of California + - Copyright 1993-2006 QUALCOMM Incorporated +ignorable_holders: + - QUALCOMM Incorporated + - The Regents of the University of California +ignorable_authors: + - Austin Shelton +--- + Qpopper(tm) is licensed by QUALCOMM Incorporated under the following terms and conditions. ANY USE OF QPOPPER CONSTITUTES AGREEMENT TO THESE TERMS. diff --git a/docs/qpopper.html b/docs/qpopper.html index adbfcd1bef..f490b8c113 100644 --- a/docs/qpopper.html +++ b/docs/qpopper.html @@ -303,7 +303,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qpopper.json b/docs/qpopper.json index 4a353c3feb..6371a9e5bd 100644 --- a/docs/qpopper.json +++ b/docs/qpopper.json @@ -1 +1,23 @@ -{"key": "qpopper", "short_name": "Qpopper License", "name": "Qpopper License", "category": "Permissive", "owner": "Qualcomm", "homepage_url": "http://www.eudora.com/products/unsupported/qpopper/license.html", "spdx_license_key": "LicenseRef-scancode-qpopper", "text_urls": ["http://www.eudora.com/products/unsupported/qpopper/license.html"], "ignorable_copyrights": ["(c) Copyright 1989-1991 The Regents of the University of California", "Copyright 1993-2006 QUALCOMM Incorporated"], "ignorable_holders": ["QUALCOMM Incorporated", "The Regents of the University of California"], "ignorable_authors": ["Austin Shelton"]} \ No newline at end of file +{ + "key": "qpopper", + "short_name": "Qpopper License", + "name": "Qpopper License", + "category": "Permissive", + "owner": "Qualcomm", + "homepage_url": "http://www.eudora.com/products/unsupported/qpopper/license.html", + "spdx_license_key": "LicenseRef-scancode-qpopper", + "text_urls": [ + "http://www.eudora.com/products/unsupported/qpopper/license.html" + ], + "ignorable_copyrights": [ + "(c) Copyright 1989-1991 The Regents of the University of California", + "Copyright 1993-2006 QUALCOMM Incorporated" + ], + "ignorable_holders": [ + "QUALCOMM Incorporated", + "The Regents of the University of California" + ], + "ignorable_authors": [ + "Austin Shelton" + ] +} \ No newline at end of file diff --git a/docs/qt-commercial-1.1.LICENSE b/docs/qt-commercial-1.1.LICENSE index dab586e4aa..034bbad460 100644 --- a/docs/qt-commercial-1.1.LICENSE +++ b/docs/qt-commercial-1.1.LICENSE @@ -1,3 +1,22 @@ +--- +key: qt-commercial-1.1 +short_name: Qt Commercial License v1.1 +name: Qt for Application Development License Agreement v1.1 +category: Commercial +owner: Digia +homepage_url: http://www.qt.io/terms-conditions/#application_development +spdx_license_key: LicenseRef-scancode-qt-commercial-1.1 +faq_url: http://www.qt.io/faq/ +ignorable_urls: + - http://www.fsf.org/licensing/licenses/info/GPLv2.html + - http://www.gnu.org/copyleft/gpl-3.0.html + - http://www.gnu.org/licenses/lgpl-3.0.html + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html + - http://www.qt.io/ +ignorable_emails: + - sales@qt.io +--- + Qt FOR APPLICATION DEVELOPMENT LICENSE AGREEMENT Agreement version 1.1 diff --git a/docs/qt-commercial-1.1.html b/docs/qt-commercial-1.1.html index 7f475e9d45..dd9b3b466c 100644 --- a/docs/qt-commercial-1.1.html +++ b/docs/qt-commercial-1.1.html @@ -381,7 +381,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qt-commercial-1.1.json b/docs/qt-commercial-1.1.json index 74ca60994b..5292be5045 100644 --- a/docs/qt-commercial-1.1.json +++ b/docs/qt-commercial-1.1.json @@ -1 +1,20 @@ -{"key": "qt-commercial-1.1", "short_name": "Qt Commercial License v1.1", "name": "Qt for Application Development License Agreement v1.1", "category": "Commercial", "owner": "Digia", "homepage_url": "http://www.qt.io/terms-conditions/#application_development", "spdx_license_key": "LicenseRef-scancode-qt-commercial-1.1", "faq_url": "http://www.qt.io/faq/", "ignorable_urls": ["http://www.fsf.org/licensing/licenses/info/GPLv2.html", "http://www.gnu.org/copyleft/gpl-3.0.html", "http://www.gnu.org/licenses/lgpl-3.0.html", "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html", "http://www.qt.io/"], "ignorable_emails": ["sales@qt.io"]} \ No newline at end of file +{ + "key": "qt-commercial-1.1", + "short_name": "Qt Commercial License v1.1", + "name": "Qt for Application Development License Agreement v1.1", + "category": "Commercial", + "owner": "Digia", + "homepage_url": "http://www.qt.io/terms-conditions/#application_development", + "spdx_license_key": "LicenseRef-scancode-qt-commercial-1.1", + "faq_url": "http://www.qt.io/faq/", + "ignorable_urls": [ + "http://www.fsf.org/licensing/licenses/info/GPLv2.html", + "http://www.gnu.org/copyleft/gpl-3.0.html", + "http://www.gnu.org/licenses/lgpl-3.0.html", + "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html", + "http://www.qt.io/" + ], + "ignorable_emails": [ + "sales@qt.io" + ] +} \ No newline at end of file diff --git a/docs/qt-commercial-agreement-4.4.1.LICENSE b/docs/qt-commercial-agreement-4.4.1.LICENSE new file mode 100644 index 0000000000..add96db3f3 --- /dev/null +++ b/docs/qt-commercial-agreement-4.4.1.LICENSE @@ -0,0 +1,435 @@ +--- +key: qt-commercial-agreement-4.4.1 +short_name: Qt License Agreement v4.4.1 +name: Qt License Agreement v4.4.1 +category: Commercial +owner: Qt Company +homepage_url: https://www.qt.io/terms-conditions/ +spdx_license_key: LicenseRef-scancode-qt-commercial-agreement-4.4.1 +other_urls: + - https://www.qt.io/contact-us +ignorable_authors: + - The Qt Company + - permission from The Qt Company +ignorable_urls: + - https://opensource.org/licenses +--- + +Qt LICENSE AGREEMENT + +Agreement version 4.4.1 + +This Qt License Agreement (“Agreement”) is a legal agreement for the licensing of Licensed Software (as defined below) between The Qt Company (as defined below) and the Licensee who has accepted the terms of this Agreement by signing this Agreement or by downloading or using the Licensed Software or in any other appropriate means. + +Capitalized terms used herein are defined in Section 1. + +WHEREAS: + + Licensee wishes to use the Licensed Software for the purpose of developing and distributing Applications and/or Devices (each as defined below); + The Qt Company is willing to grant the Licensee a right to use Licensed Software for such a purpose pursuant to term and conditions of this Agreement; and + Parties wish to enable that their respective Affiliates also can sell and purchase licenses to serve Licensee Affiliates’ needs to use Licensed Software pursuant to terms of the Agreement. Any such license purchases by Licensee Affiliates from The Qt Company or its Affiliates will create contractual relationship directly between the relevant The Qt Company and the respective ordering Licensee Affiliate (“Acceding Agreement”). Accordingly, Licensee shall not be a party to any such Acceding Agreement, and no rights or obligations are created to the Licensee thereunder but all rights and obligations under such Acceding Agreement are vested and borne solely by the ordering Licensee Affiliate and the relevant The Qt Company as a contracting parties under such Acceding Agreement. + +NOW, THEREFORE, THE PARTIES HEREBY AGREE AS FOLLOWS: + +1. DEFINITIONS + +“Affiliate” of a Party shall mean an entity (i) which is directly or indirectly controlling such Party; (ii) which is under the same direct or indirect ownership or control as such Party; or (iii) which is directly or indirectly owned or controlled by such Party. For these purposes, an entity shall be treated as being controlled by another if that other entity has fifty percent (50 %) or more of the votes in such entity, is able to direct its affairs and/or to control the composition of its board of directors or equivalent body. + +“Add-on Products” shall mean The Qt Company’s specific add-on software products which are not licensed as part of The Qt Company’s standard product offering, but shall be included into the scope of Licensed Software only if so specifically agreed between the Parties. + +“Agreement Term” shall mean the validity period of this Agreement, as set forth in Section 12. + +“Applications” shall mean software products created using the Licensed Software, which include the Redistributables, or part thereof. + +“Contractor(s)” shall mean third party consultants, distributors and contractors performing services to the Licensee under applicable contractual arrangement. + +“Customer(s)” shall mean Licensee’s customers to whom Licensee, directly or indirectly, distributes copies of the Redistributables as integrated or incorporated into Applications or Devices. + +“Data Protection Legislation” shall mean the General Data Protection Regulation (EU 2016/679) (GDPR) and any national implementing laws, regulations and secondary legislation, as may be amended or updated from time to time, as well as any other data protection laws or regulations applicable in relevant territory. + +“Deployment Platforms” shall mean target operating systems and/or hardware specified in the License Certificate, on which the Redistributables can be distributed pursuant to the terms and conditions of this Agreement. + +“Designated User(s)” shall mean the employee(s) of Licensee or Licensee’s Affiliates acting within the scope of their employment or Licensee's Contractors acting within the scope of their services on behalf of Licensee. + +“Development License” shall mean the license needed by the Licensee for each Designated User to use the Licensed Software under the license grant described in Section 3.1 of this Agreement. Development Licenses are available per respective Licensed Software products, each product having its designated scope and purpose of use. + +“Development License Term” shall mean the agreed validity period of the Development License or QA Tools license during which time the relevant Licensed Software product can be used pursuant to this Agreement. Agreed Development License Term, as ordered and paid for by the Licensee, shall be memorialized in the applicable License Certificate. + +“Development Platforms” shall mean those host operating systems specified in the License Certificate, in which the Licensed Software can be used under the Development License. + +“Devices” shall mean + + hardware devices or products that + are manufactured and/or distributed by the Licensee, its Affiliates, Contractors or Customers, and + incorporate, integrate or link to Applications such that substantial functionality of such unit, when used by an End User, is provided by Application(s) or otherwise depends on the Licensed Software, regardless of whether the Application is developed by Licensee or its Contractors; or + Applications designed for the hardware devices specified in item (1). + +Devices covered by this Agreement shall be specified in Appendix 2 or in a quote. + +“Distribution License(s)” shall mean a royalty-bearing license required for any kind of sale, trade, exchange, loan, lease, rental or other distribution by or on behalf of Licensee to a third party of Redistributables in connection with Devices pursuant to license grant described in Section 3.3 of this Agreement. Distribution Licensed are sold separately for each type of Device respectively and cannot be used for any type of Devices at Licensee’s discretion. + +“Distribution License Packs” shall mean set of prepaid Distribution Licenses for distribution of Redistributables, as defined in The Qt Company’s standard price list, quote, Purchase Order confirmation or in an Appendix 2 hereto, as the case may be. + +“End User” shall mean the final end user of the Application or a Device. + +“Evaluation License Term” shall mean a time period specified in the License Certificate for the Licensee to use the relevant Licensed Software for evaluation purposes according to Section 3.6 herein. + +“Intellectual Property Rights” shall mean patents (including utility models), design patents, and designs (whether or not capable of registration), chip topography rights and other like protection, copyrights, trademarks, service marks, trade names, logos or other words or symbols and any other form of statutory protection of any kind and applications for any of the foregoing as well as any trade secrets. + +“License Certificate” shall mean a certificate generated by The Qt Company for each Designated User respectively upon them downloading the Licensed Software, which will be available under respective Designated User’s Qt Account at account.qt.io. License Certificates will specify relevant information pertaining the Licensed Software purchased by Licensee and Designated User’s license to the Licensed Software. + +“License Fee” shall mean the fee charged to the Licensee for rights granted under the terms of this Agreement. + +“Licensed Software” shall mean specified product of commercially licensed version of Qt Software and/or QA Tools defined in Appendix 1 and/or Appendix 3, which Licensee has purchased and which is provided to Licensee under the terms of this Agreement. Licensed Software shall include corresponding online or electronic documentation, associated media and printed materials, including the source code (where applicable), example programs and the documentation. Licensed Software does not include Third Party Software (as defined in Section 4) or Open Source Qt. The Qt Company may, in the course of its development activities, at its free and absolute discretion and without any obligation to send or publish any notifications to the Licensee or in general, make changes, additions or deletions in the components and functionalities of the Licensed Software, provided that no such changes, additions or deletions will affect the already released version of the Licensed Software, but only upcoming version(s). + +“Licensee” shall mean the individual or legal entity that is party to this Agreement. + +“Licensee’s Records” shall mean books and records that contain information bearing on Licensee’s compliance with this Agreement, Licensee’s use of Open Source Qt and/or the payments due to The Qt Company under this Agreement, including, but not limited to user information, assembly logs, sales records and distribution records. + +“Modified Software” shall have the meaning as set forth in Section 2.3. + +“Online Services” shall mean any services or access to systems made available by The Qt Company to the Licensee over the Internet relating to the Licensed Software or for the purpose of use by the Licensee of the Licensed Software or Support. Use of any such Online Services is discretionary for the Licensee and some of them may be subject to additional fees. + +“Open Source Qt” shall mean Qt Software available under the terms of the GNU Lesser General Public License, version 2.1 or later (“LGPL”) or the GNU General Public License, version 2.0 or later (“GPL”). For clarity, Open Source Qt shall not be provided, governed or used under this Agreement. + +”Party” or “Parties” shall mean Licensee and/or The Qt Company. + +“Permitted Software” shall mean (i) third party open source software products that are generally available for public in source code form and free of any charge under any of the licenses approved by Open Source Initiative as listed on https://opensource.org/licenses, which may include parts of Open Source Qt or be developed using Open Source Qt; and (ii) software The Qt Company has made available via its Qt Marketplace online distribution channel. + +“Pre-Release Code” shall have the meaning as set forth in Section 4. + +“Prohibited Combination” shall mean any effort to use, combine, incorporate, link or integrate Licensed Software with any software created with or incorporating Open Source Qt, or use Licensed Software for creation of any such software. + +“Purchase Order” shall have the meaning as set forth in Section 10.2. + +"QA Tools” shall mean software libraries and tools as defined in Appendix 1 depending on which product(s) the Licensee has purchased under the Agreement. + +“Qt Software” shall mean the software libraries and tools of The Qt Company, which The Qt Company makes available under commercial and/or open source licenses. + +“Redistributables" shall mean the portions of the Licensed Software set forth in Appendix 1 that may be distributed pursuant to the terms of this Agreement in object code form only, including any relevant documentation. Where relevant, any reference to Licensed Software in this Agreement shall include and refer also to Redistributables. + +“Renewal Term” shall mean an extension of previous Development License Term as agreed between the Parties. + +“Submitted Modified Software” shall have the meaning as set forth in Section 2.3. + +“Support” shall mean standard developer support that is provided by The Qt Company to assist Designated Users in using the Licensed Software in accordance with this Agreement and the Support Terms. + +“Support Terms” shall mean The Qt Company’s standard support terms specified in Appendix 9 hereto. + +“Taxes” shall have the meaning set forth in Section 10.5. + +“The Qt Company” shall mean: + + in the event Licensee is an individual residing in the United States or a legal entity incorporated in the United States or having its headquarters in the United States, The Qt Company Inc., a Delaware corporation with its office at 3031 Tisch Way, 110 Plazbertela West, San Jose, CA 95128, USA.; or + in the event the Licensee is an individual residing outside of the United States or a legal entity incorporated outside of the United States or having its registered office outside of the United States, The Qt Company Ltd., a Finnish company with its registered office at Miestentie 7, 02150 Espoo, Finland. + +"Third-Party Software" shall have the meaning set forth in Section 4. + +“Updates” shall mean a release or version of the Licensed Software containing bug fixes, error corrections and other changes that are generally made available to users of the Licensed Software that have contracted for Support. Updates are generally depicted as a change to the digits following the decimal in the Licensed Software version number. The Qt Company shall make Updates available to the Licensee under the Support. Updates shall be considered as part of the Licensed Software hereunder. + +“Upgrades” shall mean a release or version of the Licensed Software containing enhancements and new features and are generally depicted as a change to the first digit of the Licensed Software version number. In the event Upgrades are provided to the Licensee under this Agreement, they shall be considered as part of the Licensed Software hereunder. + +2. OWNERSHIP + +2.1. Ownership of The Qt Company + +The Licensed Software is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The Licensed Software is licensed, not sold. + +All of The Qt Company's Intellectual Property Rights are and shall remain the exclusive property of The Qt Company or its licensors respectively. No rights to The Qt Company’s Intellectual Property Rights are assigned or granted to Licensee under this Agreement, except when and to the extent expressly specified herein. + +2.2. Ownership of Licensee + +All the Licensee’s Intellectual Property Rights are and shall remain the exclusive property of the Licensee or its licensors respectively. + +All Intellectual Property Rights to the Modified Software, Applications and Devices shall remain with the Licensee and no rights thereto shall be granted by the Licensee to The Qt Company under this Agreement (except as set forth in Section 2.3 below). + +2.3. Modified Software + +Licensee may create bug-fixes, error corrections, patches or modifications to the Licensed Software (“Modified Software”). Such Modified Software may break the source or binary compatibility with the Licensed Software (including without limitation through changing the application programming interfaces (“API”) or by adding, changing or deleting any variable, method, or class signature in the Licensed Software and/or any inter-process protocols, services or standards in the Licensed Software libraries). To the extent that Licensee’s Modified Software so breaks source or binary compatibility with the Licensed Software, Licensee acknowledges that The Qt Company’s ability to provide Support may be prevented or limited and Licensee’s ability to make use of Updates may be restricted. + +Licensee may, at its sole and absolute discretion, choose to submit Modified Software to The Qt Company (“Submitted Modified Software”) in connection with Licensee’s Support request, service request or otherwise. In the event Licensee does so, then, Licensee hereby grants The Qt Company a sublicensable, assignable, irrevocable, perpetual, worldwide, non-exclusive, royalty-free and fully paid-up license, under all of Licensee’s Intellectual Property Rights, to reproduce, adapt, translate, modify, and prepare derivative works of, publicly display, publicly perform, sublicense, make available and distribute such Submitted Modified Software as The Qt Company sees fit at its free and absolute discretion. + +3. LICENSES GRANTED + +3.1. Development with Licensed Software + +Subject to the terms of this Agreement, The Qt Company grants to Licensee a worldwide, non-exclusive, non-transferable license, valid for each Development License Term, to use, modify and copy the Licensed Software by Designated Users on the Development Platforms for the sole purposes of designing, developing, demonstrating and testing Application(s) and/or Devices, and to provide thereto related support and other related services to Customers. Each Application and/or Device can only include, incorporate or integrate contributions by such Designated Users who are duly licensed for the applicable Development Platform(s) and Deployment Platform(s) (i.e have a valid license for the appropriate Licensed Software product). + +Licensee may install copies of the Licensed Software on five (5) computers per Designated User, provided that only the Designated Users who have a valid Development License may use the Licensed Software. + +Licensee may at any time designate another Designated User to replace a then-current Designated User by notifying The Qt Company in writing, where such replacement is due to termination of employment, change of job duties, long time absence or other such permanent reason affecting Designated User’s need for Licensed Software. + +Upon expiry of the initially agreed Development License Term, the respective Development License Term shall be automatically extended to one or more Renewal Term(s), unless and until either Party notifies the other Party in writing, or any other method acceptable to The Qt Company (it being specifically acknowledged and understood that verbal notification is explicitly deemed inadequate in all circumstances), that it does not wish to continue the Development License Term, such notification to be provided to the other Party no less than thirty (30) days before expiry of the respective Development License Term. The Qt Company shall, in good time before the due date for the above notification, remind the Licensee on the coming Renewal Term. Unless otherwise agreed between the Parties, Renewal Term shall be 12 months. + +Any such Renewal Term shall be subject to License Fees agreed between the Parties or, if no advance agreement exists, subject to The Qt Company’s standard list pricing applicable at the commencement date of any such Renewal Term. + +The Qt Company may either request the Licensee to place a purchase order corresponding to a quote by The Qt Company, or use Licensee’s stored Credit Card information in the Qt Account to automatically charge the Licensee for the relevant Renewal Term. + +3.2. Distribution of Applications + +Subject to the terms of this Agreement, The Qt Company grants to Licensee a worldwide, non-exclusive, non-transferable, revocable (for cause pursuant to this Agreement), right and license, valid for the Agreement Term, to + + distribute, by itself or through its Contractors, Redistributables as installed, incorporated or integrated into Applications for execution on the Deployment Platforms, and + grant perpetual and irrevocable sublicenses to Redistributables, as distributed hereunder, for Customers solely to the extent necessary in order for the Customers to use the Applications for their respective intended purposes. + +Right to distribute the Redistributables as part of an Application as provided herein is not royalty-bearing but is conditional upon the Application having been created, updated and maintained under a valid and duly paid Development Licenses. + +3.3. Distribution of Devices + +Subject to the terms of this Agreement, The Qt Company grants to Licensee a worldwide, non-exclusive, non-transferable, revocable (for cause pursuant to this Agreement), right and license, valid for the Agreement Term, to + + distribute, by itself or through one or more tiers of Contractors, Redistributables as installed, incorporated or integrated, or intended to be installed, incorporated or integrated into Devices for execution on the Deployment Platforms, and + grant perpetual and irrevocable sublicenses to Redistributables, as distributed hereunder, for Customers solely to the extent necessary in order for the Customers to use the Devices for their respective intended purposes. + +Right to distribute the Devices as provided herein is conditional upon (i) the Devices having been created, updated and maintained under a valid and duly paid Development Licenses, and (ii) the Licensee having acquired corresponding Distribution Licenses at the time of distribution of any Devices to Customers. + +3.4. Further Requirements + +The licenses granted above in this Section 3 by The Qt Company to Licensee are conditional and subject to Licensee's compliance with the following terms: + + Licensee acknowledges that The Qt Company has separate products of Licensed Software for the purpose of Applications and Devices respectively, where development and distribution of Devices is only allowed using the correct designated product. Licensee shall make sure and bear the burden of proof that Licensee is using a correct product of Licensed Software entitling Licensee to development and distribution of Devices; + Licensee shall not remove or alter any copyright, trademark or other proprietary rights notice(s) contained in any portion of the Licensed Software; + Applications must add primary and substantial functionality to the Licensed Software so as not to compete with the Licensed Software; + Applications may not pass on functionality which in any way makes it possible for others to create software with the Licensed Software; provided however that Licensee may use the Licensed Software's scripting and QML ("Qt Quick") functionality solely in order to enable scripting, themes and styles that augment the functionality and appearance of the Application(s) without adding primary and substantial functionality to the Application(s); + Licensee shall not use Licensed Software in any manner or for any purpose that infringes, misappropriates or otherwise violates any Intellectual property or right of any third party, or that violates any applicable law; + Licensee shall not use The Qt Company's or any of its suppliers' names, logos, or trademarks to market Applications, except that Licensee may use “Built with Qt” logo to indicate that Application(s) or Device(s) was developed using the Licensed Software; + Licensee shall not distribute, sublicense or disclose source code of Licensed Software to any third party (provided however that Licensee may appoint employee(s) of Contractors and Affiliates as Designated Users to use Licensed Software pursuant to this Agreement). Such right may be available for the Licensee subject to a separate software development kit (“SDK”) license agreement to be concluded with The Qt Company; + Licensee shall not grant the Customers a right to (a) make copies of the Redistributables except when and to the extent required to use the Applications and/or Devices for their intended purpose, (b) modify the Redistributables or create derivative works thereof, (c) decompile, disassemble or otherwise reverse engineer Redistributables, or (d) redistribute any copy or portion of the Redistributables to any third party, except as part of the onward sale of the Application or Device on which the Redistributables are installed; + Licensee shall not and shall cause that its Affiliates or Contractors shall not use Licensed Software in any Prohibited Combination, unless Licensee has received an advance written permission from The Qt Company to do so. Absent such written permission, any and all distribution by the Licensee during the Agreement Term of a hardware device or product a) which incorporate or integrate any part of Licensed Software or Open Source Qt; or b) where substantial functionality is provided by software built with Licensed Software or Open Source Qt or otherwise depends on the Licensed Software or Open Source Qt, shall be considered to be Device distribution under this Agreement and shall be dependent on Licensee’s compliance thereof (including but not limited to obligation to pay applicable License Fees for such distribution). Notwithstanding what is provided above in this sub-section (ix), Licensee is entitled to use and combine Licensed Software with any Permitted Software; + Licensee shall cause all of its Affiliates, Contractors and Customers entitled to make use of the licenses granted under this Agreement, to be contractually bound to comply with the relevant terms of this Agreement and not to use the Licensed Software beyond the terms hereof and for any purposes other than operating within the scope of their services for Licensee. Licensee shall be responsible for any and all actions and omissions of its Affiliates and Contractors relating to the Licensed Software and use thereof (including but not limited to payment of all applicable License Fees); + Except when and to the extent explicitly provided in this Section 3, Licensee shall not transfer, publish, disclose, display or otherwise make available the Licensed Software; and + Licensee shall not attempt or enlist a third party to conduct or attempt to conduct any of the above. + +Above terms shall not be applicable if and to the extent they conflict with any mandatory provisions of any applicable laws. + +Any use of Licensed Software beyond the provisions of this Agreement is strictly prohibited and requires an additional license from The Qt Company. + +3.5 QA Tools License + +Subject to the terms of this Agreement, The Qt Company grants to Licensee a worldwide, non-exclusive, non-transferable license, valid for the Development License Term, to use the QA Tools for Licensee's internal business purposes in the manner provided below and in Appendix 1 hereto. + +Licensee may modify the QA Tools except for altering or removing any details of ownership, copyright, trademark or other property right connected with the QA Tools. + +Licensee shall not distribute the QA Tools or any part thereof, modified or unmodified, separately or as part of any software package, Application or Device. + +Upon expiry of the initially agreed Development License Term, the respective Development License Term shall be automatically extended to one or more Renewal Term(s), unless and until either Party notifies the other Party in writing, or any other method acceptable to The Qt Company (it being specifically acknowledged and understood that verbal notification is explicitly deemed inadequate in all circumstances), that it does not wish to continue the Development License Term, such notification to be provided to the other Party no less than thirty (30) days before expiry of the respective Development License Term. The Qt Company shall, in good time before the due date for the above notification, remind the Licensee on the coming Renewal Term. Unless otherwise agreed between the Parties, Renewal Term shall be 12 months. + +Any such Renewal Term shall be subject to License Fees agreed between the Parties or, if no advance agreement exists, subject to The Qt Company’s standard list pricing applicable at the commencement date of any such Renewal Term. + +3.6 Evaluation License + +Subject to the terms of this Agreement, The Qt Company grants to Licensee a worldwide, non-exclusive, non-transferable license, valid for the Evaluation License Term to use the Licensed Software solely for the Licensee’s internal use to evaluate and determine whether the Licensed Software meets Licensee's business requirements, specifically excluding any commercial use of the Licensed Software or any derived work thereof. + +Upon the expiry of the Evaluation License Term, Licensee must either discontinue use of the relevant Licensed Software or acquire a commercial Development License or QA Tools License specified herein. + +4. THIRD-PARTY SOFTWARE + +The Licensed Software may provide links or access to third party libraries or code (collectively "Third-Party Software") to implement various functions. Third-Party Software does not, however, comprise part of the Licensed Software, but is provided to Licensee complimentary and use thereof is discretionary for the Licensee. Third-Party Software will be listed in the ".../src/3rdparty" source tree delivered with the Licensed Software or documented in the Licensed Software, as such may be amended from time to time. Licensee acknowledges that use or distribution of Third-Party Software is in all respects subject to applicable license terms of applicable third-party right holders. + +5. PRE-RELEASE CODE + +The Licensed Software may contain pre-release code and functionality, or sample code marked or otherwise stated with appropriate designation such as “Technology Preview”, “Alpha”, “Beta”, “Sample”, “Example” etc. (“Pre-Release Code”). + +Such Pre-Release Code may be present complimentary for the Licensee, in order to provide experimental support or information for new platforms or preliminary versions of one or more new functionalities or for other similar reasons. The Pre-Release Code may not be at the level of performance and compatibility of a final, generally available, product offering. The Pre-Release Code may not operate correctly, may contain errors and may be substantially modified by The Qt Company prior to the first commercial product release, if any. The Qt Company is under no obligation to make Pre-Release Code commercially available, or provide any Support or Updates relating thereto. The Qt Company assumes no liability whatsoever regarding any Pre-Release Code, but any use thereof is exclusively at Licensee’s own risk and expense. + +For clarity, unless Licensed Software specifies different license terms for the respective Pre-Release Code, the Licensee is entitled to use such pre-release code pursuant to Section 3, just like other Licensed Software. + +6. LIMITED WARRANTY AND WARRANTY DISCLAIMER + +The Qt Company hereby represents and warrants that (i) it has the power and authority to grant the rights and licenses granted to Licensee under this Agreement, and (ii) Licensed Software will operate materially in accordance with its specifications. + +Except as set forth above, the Licensed Software is licensed to Licensee "as is" and Licensee’s exclusive remedy and The Qt Company’s entire liability for errors in the Licensed Software shall be limited, at The Qt Company’s option, to correction of the error, replacement of the Licensed Software or return of the applicable fees paid for the defective Licensed Software for the time period during which the License is not able to utilize the Licensed Software under the terms of this Agreement. + +TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE QT COMPANY ON BEHALF OF ITSELF AND ITS LICENSORS, SUPPLIERS AND AFFILIATES, DISCLAIMS ALL OTHER WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT WITH REGARD TO THE LICENSED SOFTWARE. THE QT COMPANY DOES NOT WARRANT THAT THE LICENSED SOFTWARE WILL SATISFY LICENSEE’S REQUIREMENTS OR THAT IT WILL OPERATE WITHOUT DEFECT OR ERROR OR THAT THE OPERATION THEREOF WILL BE UNINTERRUPTED. + +7. LIMITATION OF LIABILITY + +EXCEPT FOR (I) CASES OF GROSS NEGLIGENCE OR INTENTIONAL MISCONDUCT, AND (II) BREACH OF CONFIDENTIALITY, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL EITHER PARTY BE LIABLE TO THE OTHER PARTY FOR ANY LOSS OF PROFIT, LOSS OF DATA, LOSS OF BUSINESS OR GOODWILL OR ANY OTHER INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE COST, DAMAGES OR EXPENSE OF ANY KIND, HOWSOEVER ARISING UNDER OR IN CONNECTION WITH THIS AGREEMENT. + +EXCEPT FOR (I) CASES OF GROSS NEGLIGENCE OR INTENTIONAL MISCONDUCT, AND (II) BREACH OF CONFIDENTIALITY, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL EITHER PARTY’S TOTAL AGGREGATE LIABILITY UNDER THIS AGREEMENT EXCEED THE AGGREGATE LICENSE FEES PAID OR PAYABLE TO THE QT COMPANY BY LICENSEE DURING THE DEVELOPMENT LICENSE TERM DURING WHICH THE EVENT RESULTING IN SUCH LIABILITY OCCURRED. + +THE PROVISIONS OF THIS SECTION 7 ALLOCATE THE RISKS UNDER THIS AGREEMENT BETWEEN THE QT COMPANY AND LICENSEE AND THE PARTIES HAVE RELIED UPON THE LIMITATIONS SET FORTH HEREIN IN DETERMINING WHETHER TO ENTER INTO THIS AGREEMENT. + +NOTWITHSTANDING ANYTHING TO THE CONTRARY IN THIS AGREEMENT, LICENSEE SHALL ALWAYS BE LIABLE TO PAY THE APPLICABLE LICENSE FEES CORRESPONDING TO ITS ACTUAL USE OF LICENSED SOFTWARE. + +8. SUPPORT, UPDATES AND ONLINE SERVICES + +Upon due payment of the agreed License Fees the Licensee will be eligible to receive Support and Updates and to use the Online Services during the agreed Development License Term or other agreed fixed time period. Support is provided according to agreed support level and subject to applicable requirements and restrictions, as specified in the Support Terms. + +Unless otherwise decided by The Qt Company at its free and absolute discretion, Upgrades will not be included in the Support but may be available subject to additional fees. + +From time to time The Qt Company may change the Support Terms, provided that during the respective ongoing Support period the level of Support may not be reduced without the consent of the Licensee. + +Unless otherwise agreed, The Qt Company shall not be responsible for providing any service or support to Customers. + +9. CONFIDENTIALITY + +Each Party acknowledges that during the Agreement Term each Party may receive information about the other Party's business, business methods, business plans, customers, business relations, technology, and other information, including the terms of this Agreement, that is confidential and of great value to the other Party, and the value of which would be significantly reduced if disclosed to third parties (“Confidential Information”). Accordingly, when a Party (the “Receiving Party”) receives Confidential Information from the other Party (the “Disclosing Party”), the Receiving Party shall only disclose such information to employees and Contractors on a need to know basis, and shall cause its employees and employees of its Affiliates to: (i) maintain any and all Confidential Information in confidence; (ii) not disclose the Confidential Information to a third party without the Disclosing Party's prior written approval; and (iii) not, directly or indirectly, use the Confidential Information for any purpose other than for exercising its rights and fulfilling its responsibilities pursuant to this Agreement. Each Party shall take reasonable measures to protect the Confidential Information of the other Party, which measures shall not be less than the measures taken by such Party to protect its own confidential and proprietary information. + +Obligation of confidentiality shall not apply to information that (i) is or becomes generally known to the public through no act or omission of the Receiving Party; (ii) was in the Receiving Party's lawful possession prior to the disclosure hereunder and was not subject to limitations on disclosure or use; (iii) is developed independently by employees or Contractors of the Receiving Party or other persons working for the Receiving Party who have not had access to the Confidential Information of the Disclosing Party, as proven by the written records of the Receiving Party; (iv) is lawfully disclosed to the Receiving Party without restrictions, by a third party not under an obligation of confidentiality; or (v) the Receiving Party is legally compelled to disclose, in which case the Receiving Party shall notify the Disclosing Party of such compelled disclosure and assert the privileged and confidential nature of the information and cooperate fully with the Disclosing Party to limit the scope of disclosure and the dissemination of disclosed Confidential Information to the minimum extent necessary. + +The obligations under this Section 9 shall continue to remain in force for a period of five (5) years after the last disclosure, and, with respect to trade secrets, for so long as such trade secrets are protected under applicable trade secret laws. + +10. FEES, DELIVERY AND PAYMENT + +10.1. License Fees + +License Fees are described in The Qt Company’s standard price list, quote or Purchase Order confirmation or in an Appendix 2 hereto, as the case may be. + +Unless otherwise expressly provided in this Agreement, the License Fees shall not be refunded or claimed as a credit in any event or for any reason whatsoever. + +10.2. Ordering Licenses + +Licensee may purchase Development Licenses, Distribution Licenses and QA Tools Licenses pursuant to agreed pricing terms or, if no specific pricing terms have been agreed upon, at The Qt Company's standard pricing terms applicable at the time of purchase. + +Unless expressly otherwise agreed, any price or other term quoted to the Licensee or specified herein shall only be valid for the thirty (30) days from the effective date of this Agreement, Appendix 2 or the date of the quote, as applicable. + +Licensee shall submit all purchase orders for Development Licenses and Distribution Licenses to The Qt Company by email or any other method acceptable to The Qt Company (each such order is referred to herein as a “Purchase Order”) for confirmation, whereupon the Purchase Order shall become binding between the Parties. + +Licensee acknowledges and agrees that all Purchase Orders for Licensed Software the Licensee makes during the Agreement Term shall be governed exclusively under the terms of this Agreement. + +10.3. Distribution License Packs + +Unless otherwise agreed, Distribution Licenses shall be purchased by way of Distribution License Packs. + +Upon due payment of the ordered Distribution License Pack(s), the Licensee will have an account of Distribution Licenses available for distributing the Redistributables in accordance with this Agreement. + +Each time Licensee distributes a copy of Redistributables, then one Distribution License is used, and Licensee’s account of available Distribution Licenses is decreased accordingly. + +Licensee may distribute copies of the Redistributables so long as Licensee has Distribution Licenses remaining on its account. + +10.4. Payment Terms + +License Fees and any other charges under this Agreement shall be paid by Licensee no later than thirty (30) days from the date of the applicable invoice from The Qt Company. + +The Qt Company will submit an invoice to Licensee after the date of this Agreement and/or after The Qt Company receives a Purchase Order from Licensee. + +A late payment charge of the lower of (a) one percent per month; or (b) the interest rate stipulated by applicable law, shall be charged on any unpaid balances that remain past due and which have not been disputed by the Licensee in good faith. + +10.5. Taxes + +All License Fees and other charges payable hereunder are gross amounts but exclusive of any value added tax, use tax, sales tax, withholding tax and other taxes, duties or tariffs (“Taxes”) levied directly for the sale, delivery or use of Licensed Software hereunder pursuant to any applicable law. Such applicable Taxes shall be paid by Licensee to The Qt Company, or, where applicable, in lieu of payment of such Taxes to The Qt Company, Licensee shall provide an exemption certificate to The Qt Company and any applicable authority. + +11. RECORD-KEEPING AND REPORTING OBLIGATIONS; AUDIT RIGHTS + +11.1. Licensee’s Record-keeping + +Licensee shall at all times during the Agreement Term and for a period of two (2) years thereafter maintain Licensee’s Records in an accurate and up-to-date form. Licensee’s Records shall be adequate to reasonably enable The Qt Company to determine Licensee’s compliance with the provisions of this Agreement. The records shall conform to general good accounting practices. + +Licensee shall, within thirty (30) days from receiving The Qt Company’s request to that effect, deliver to The Qt Company a report based on Licensee’s Records, such report to contain information, in sufficient detail, on (i) number and identity of users working with Licensed Software or Open Source Qt, (ii) copies of Redistributables distributed by Licensee during the most recent calendar quarter and/or any other term specified by The Qt Company, , and (iii) any other information pertaining to Licensee’s compliance with the terms of this Agreement (like e.g. information on products and/or projects relating to use of Distribution Licenses), as The Qt Company may reasonably require from time to time. + +11.2. The Qt Company’s Audit Rights + +The Qt Company or an independent auditor acting on behalf of The Qt Company’s, may, upon at least thirty (30) days’ prior written notice and at its expense, audit Licensee with respect to the Licensee’s use of the Licensed Software, but not more frequently than once during each 6-month period. Such audit may be conducted by mail, electronic means or through an in-person visit to Licensee’s place of business. Any possible in-person audit shall be conducted during regular business hours at Licensee's facilities and shall not unreasonably interfere with Licensee's business activities and shall be limited in scope to verify Licensee’s compliance with the terms of this Agreement. The Qt Company or the independent auditor acting on behalf of The Qt Company shall be entitled to inspect Licensee’s Records and conduct necessary interviews of Licensee’s relevant employees and Contractors. All such Licensee’s Records and use thereof shall be subject to an obligation of confidentiality under this Agreement. + +If an audit reveals that Licensee is using the Licensed Software beyond scope of the licenses Licensee has paid for, Licensee shall pay to The Qt Company any amounts owed for such unauthorized use within 30 days from receipt of the corresponding invoice from The Qt Company. + +In addition, in the event the audit reveals a material violation of the terms of this Agreement (without limitation, either (i) underpayment of more than 10 % of License Fees or 10,000 euros (whichever is more) or (ii) distribution of products, which include or result from Prohibited Combination, shall be deemed a material violation for purposes of this section), then the Licensee shall pay The Qt Company's reasonable cost of conducting such audit. + +12. TERM AND TERMINATION + +12.1. Agreement Term + +This Agreement shall enter into force upon due acceptance by both Parties and remain in force until terminated pursuant to the terms of this Section 12 (“Agreement Term”). + +12.2. Termination for breach and suspension of rights + +Either Party shall have the right to terminate this Agreement upon thirty (30) days prior written notice if the other Party commits a material breach of any obligation of this Agreement and fails to remedy such breach within such notice period. + +Instead of termination, The Qt Company shall have the right to suspend or withhold grants of all rights to the Licensed Software hereunder, including but not limited to the Development Licenses, Distribution License, and Support, should Licensee fail to make payment in timely fashion or otherwise violates or is reasonably suspected to violate its obligations or terms of this Agreement, and where such violation or breach is not cured within ten (10) business days following The Qt Company’s written notice thereof. + +12.3. Termination for insolvency + +Either Party shall have the right to terminate this Agreement immediately upon written notice in the event that the other Party becomes insolvent, files for any form of bankruptcy, makes any assignment for the benefit of creditors, has a receiver, administrative receiver or officer appointed over the whole or a substantial part of its assets, ceases to conduct business, or an act equivalent to any of the above occurs under the laws of the jurisdiction of the other Party. + +12.4. Parties´ Rights and Duties upon Termination + +Upon expiry or termination of the Agreement, Licensee shall cease and shall cause all Designated Users (including those of its Affiliates’ and Contractors’) to cease using the Licensed Software under this Agreement. For clarity, a Development License of a Designated User or a QA Tools License, and all rights relating thereto, shall always terminate at the expiry of the respective Development License Term, even if the Agreement continues to remain in force. + +Upon such termination the Licensee shall destroy or return to The Qt Company all copies of the Licensed Software and all related materials and will certify the same by Licensee’s duly authorized officer to The Qt Company upon its request, provided however that Licensee may retain and exploit such copies of the Licensed Software as it may reasonably require in providing continued support to Customers. + +Except when this Agreement is terminated by The Qt Company due to Licensee’s material breach as set forth in Section 12.2, the Licensee may continue distribution of Applications and Devices under the terms of this Agreement despite the termination of this Agreement. In such event the terms hereof will continue to be applicable and govern any such distribution of Applications and Devices beyond the expiry or termination of this Agreement. In case of termination by The Qt Company due to Licensee’s material breach, Licensee must cease any distribution of Applications and Devices at the date of termination of this Agreement. + +Expiry or termination of this Agreement for any reason whatsoever shall not relieve Licensee of its obligation to pay any License Fees accrued or payable to The Qt Company prior to the effective date of termination, and Licensee pay to The Qt Company all such fees within 30 days from the effective date of termination of this Agreement. + +Termination of this Agreement shall not affect any rights of Customers to continue use of Applications and Devices (and therein incorporated Redistributables). + +12.5. Extension of Rights under Special Circumstances + +In the event of The Qt Company choosing not to renew the Development License(s) or QA Tools Licenses, as set forth in Section 3.1 and 3.5 respectively, and where such decision of non-renewal is not due to any ongoing breach or alleged breach (as reasonably determined by The Qt Company) by Licensee of the terms of this Agreement or any applicable license terms of Open Source Qt, then all valid and affected Development Licenses and QA Tools licenses possessed by the Licensee at such date shall be extended to be valid in perpetuity under the terms of this Agreement and Licensee is entitled to purchase additional licenses as set forth in Section 10.2. + +In the event The Qt Company is declared bankrupt under a final, non-cancellable decision by relevant court of law, and this Agreement is not, at the date of expiry of the Development License(s) or QA Tools Licenses, assigned to party, who has assumed The Qt Company’s position as a legitimate licensor of Licensed Software under this Agreement, then all valid Development Licenses and QA Tools Licenses possessed by the Licensee at such date of expiry, and which the Licensee has not notified for expiry, shall be extended to be valid in perpetuity under the terms of this Agreement. + +For clarity, in case of an extension under this Section 12.5, any such extension shall not apply to The Qt Company’s Support obligations, but Support shall be provided only up until the end of the respective fixed Development License Term regardless of the extension of relevant Development License or QA Tools License, unless otherwise agreed between the Parties. + +13. GOVERNING LAW AND LEGAL VENUE + +In the event this Agreement is in the name of The Qt Company Inc., a Delaware Corporation, then: + + this Agreement shall be construed and interpreted in accordance with the laws of the State of California, USA, excluding its choice of law provisions; + the United Nations Convention on Contracts for the International Sale of Goods will not apply to this Agreement; and + any dispute, claim or controversy arising out of or relating to this Agreement or the breach, termination, enforcement, interpretation or validity thereof, including the determination of the scope or applicability of this Agreement to arbitrate, shall be determined by arbitration in San Francisco, USA, before one arbitrator. The arbitration shall be administered by JAMS pursuant to JAMS' Streamlined Arbitration Rules and Procedures. Judgment on the Award may be entered in any court having jurisdiction. This Section shall not preclude parties from seeking provisional remedies in aid of arbitration from a court of appropriate jurisdiction. + +In the event this Agreement is in the name of The Qt Company Ltd., a Finnish Company, then: + + this Agreement shall be construed and interpreted in accordance with the laws of Finland, excluding its choice of law provisions; + the United Nations Convention on Contracts for the International Sale of Goods will not apply to this Agreement; and + any disputes, controversy or claim arising out of or relating to this Agreement, or the breach, termination or validity thereof shall be finally settled by arbitration in accordance with the Arbitration Rules of International Chamber of Commerce. The arbitration tribunal shall consist of one (1), or if either Party so requires, of three (3), arbitrators. The award shall be final and binding and enforceable in any court of competent jurisdiction. The arbitration shall be held in Helsinki, Finland and the process shall be conducted in the English language. This Section shall not preclude parties from seeking provisional remedies in aid of arbitration from a court of appropriate jurisdiction. + +14. GENERAL PROVISIONS + +14.1. No Assignment + +Except in the case of a merger or sale of substantially all of its corporate assets, Licensee shall not be entitled to assign or transfer all or any of its rights, benefits and obligations under this Agreement without the prior written consent of The Qt Company, which shall not be unreasonably withheld or delayed. The Qt Company shall be entitled to freely assign or transfer any of its rights, benefits or obligations under this Agreement. + +14.2. No Third-Party Representations + +Licensee shall make no representations or warranties concerning the Licensed Software on behalf of The Qt Company. Any representation or warranty Licensee makes or purports to make on The Qt Company’s behalf shall be void as to The Qt Company. + +14.3. Surviving Sections + +Any terms and conditions that by their nature or otherwise reasonably should survive termination of this Agreement shall so be deemed to survive. Such sections include especially the following: 1, 2, 6, 7, 9, 11, 12.4, 13 and 14. + +14.4. Entire Agreement + +This Agreement, the Appendices hereto, the License Certificate and any applicable quote and Purchase Order accepted by The Qt Company constitute the complete agreement between the Parties and supersedes all prior or contemporaneous discussions, representations, and proposals, written or oral, with respect to the subject matters discussed herein. + +In the event of any conflict or inconsistency between this Agreement and any Purchase Order, the terms of this Agreement will prevail over the terms of the Purchase Order with respect to such conflict or inconsistency. + +Parties specifically acknowledge and agree that this Agreement prevails over any click-to-accept or similar agreements the Designated Users may need to accept online upon download of the Licensed Software, as may be required by The Qt Company’s applicable processes relating to Licensed Software. + +14.5. Modifications + +No modification of this Agreement shall be effective unless contained in a writing executed by an authorized representative of each Party. No term or condition contained in Licensee's Purchase Order (“Deviating Terms”) shall apply unless The Qt Company has expressly agreed such Deviating Terms in writing. Unless and to the extent expressly agreed by The Qt Company, any such Deviating Terms shall be deemed void and with no legal effect. For clarity, delivery of the Licensed Software following the receipt of the Purchase Order including Deviating Terms shall not constitute acceptance of such Deviating Terms. + +14.6. Force Majeure + +Except for the payment obligations hereunder, neither Party shall be liable to the other for any delay or non-performance of its obligations hereunder in the event and to the extent that such delay or non-performance is due to an event of act of God, terrorist attack or other similar unforeseeable catastrophic event that prevents either Party for fulfilling its obligations under this Agreement and which such Party cannot avoid or circumvent (“Force Majeure Event”). If the Force Majeure Event results in a delay or non-performance of a Party for a period of three (3) months or longer, then either Party shall have the right to terminate this Agreement with immediate effect without any liability (except for the obligations of payment arising prior to the event of Force Majeure) towards the other Party. + +14.7. Notices + +Any notice given by one Party to the other shall be deemed properly given and deemed received if specifically acknowledged by the receiving Party in writing or when successfully delivered to the recipient by hand, fax, or special courier during normal business hours on a business day to the addresses specified for each Party on the signature page. Each communication and document made or delivered by one Party to the other Party pursuant to this Agreement shall be in the English language. + +14.8. Export Control + +Licensee acknowledges that the Redistributables, as incorporated in Applications or Devices, may be subject to export control restrictions under the applicable laws of respective countries. Licensee shall fully comply with all applicable export license restrictions and requirements as well as with all laws and regulations relating to the Redistributables and exercise of licenses hereunder and shall procure all necessary governmental authorizations, including without limitation, all necessary licenses, approvals, permissions or consents, where necessary for the re-exportation of the Redistributables, Applications and/or Devices. + +14.9. No Implied License + +There are no implied licenses or other implied rights granted under this Agreement, and all rights, save for those expressly granted hereunder, shall remain with The Qt Company and its licensors. In addition, no licenses or immunities are granted to the combination of the Licensed Software with any other software or hardware not delivered by The Qt Company under this Agreement. + +14.10. Attorney Fees + +The prevailing Party in any action to enforce this Agreement shall be entitled to recover its attorney’s fees and costs in connection with such action, as to be ordered by the relevant dispute resolution body. + +14.11. Privacy + +Licensee acknowledges and agrees that for the purpose of this Agreement, The Qt Company may collect, use, transfer and disclose personal data pertaining to Designated Users as well as any other employees and directors of the Licensee and its Contractors relevant for carrying out the intent of this Agreement. Such personal data will be primarily collected from the relevant individuals but may be collected also from Licensee (e.g. in the course of Licensee’s reporting obligations). The Parties acknowledge that as The Qt Company determines the purpose and means for such collection and processing of the applicable personal data, The Qt Company shall be regarded as the Data Controller under the applicable Data Protection Legislation. The Qt Company shall process any such personal data in accordance with its privacy and security policies and practices, which will comply with all applicable requirements of the Data Protection Legislation. + +14.12. Severability + +If any provision of this Agreement shall be adjudged by any court of competent jurisdiction to be unenforceable or invalid, that provision shall be limited or eliminated to the minimum extent necessary so that this Agreement shall otherwise remain in full force and effect and enforceable. + +14.13. Marketing Rights + +Parties have agreed upon Marketing Rights pursuant to Appendix 7, if any. \ No newline at end of file diff --git a/docs/qt-commercial-agreement-4.4.1.html b/docs/qt-commercial-agreement-4.4.1.html new file mode 100644 index 0000000000..8f20f2e799 --- /dev/null +++ b/docs/qt-commercial-agreement-4.4.1.html @@ -0,0 +1,594 @@ + + + + + + LicenseDB: qt-commercial-agreement-4.4.1 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + qt-commercial-agreement-4.4.1 + +
+ +
short_name
+
+ + Qt License Agreement v4.4.1 + +
+ +
name
+
+ + Qt License Agreement v4.4.1 + +
+ +
category
+
+ + Commercial + +
+ +
owner
+
+ + Qt Company + +
+ +
homepage_url
+
+ + https://www.qt.io/terms-conditions/ + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-qt-commercial-agreement-4.4.1 + +
+ +
other_urls
+
+ + + +
+ +
ignorable_authors
+
+ +
    +
  • The Qt Company
  • permission from The Qt Company
  • +
+ +
+ +
ignorable_urls
+
+ + + +
+ +
+
license_text
+
Qt LICENSE AGREEMENT 
+
+Agreement version 4.4.1 
+
+This Qt License Agreement (“Agreement”) is a legal agreement for the licensing of Licensed Software (as defined below) between The Qt Company (as defined below) and the Licensee who has accepted the terms of this Agreement by signing this Agreement or by downloading or using the Licensed Software or in any other appropriate means. 
+
+Capitalized terms used herein are defined in Section 1. 
+
+WHEREAS: 
+
+    Licensee wishes to use the Licensed Software for the purpose of developing and distributing Applications and/or Devices (each as defined below);  
+    The Qt Company is willing to grant the Licensee a right to use Licensed Software for such a purpose pursuant to term and conditions of this Agreement; and 
+    Parties wish to enable that their respective Affiliates also can sell and purchase licenses to serve Licensee Affiliates’ needs to use Licensed Software pursuant to terms of the Agreement. Any such license purchases by Licensee Affiliates from The Qt Company or its Affiliates will create contractual relationship directly between the relevant The Qt Company and the respective ordering Licensee Affiliate (“Acceding Agreement”). Accordingly, Licensee shall not be a party to any such Acceding Agreement, and no rights or obligations are created to the Licensee thereunder but all rights and obligations under such Acceding Agreement are vested and borne solely by the ordering Licensee Affiliate and the relevant The Qt Company as a contracting parties under such Acceding Agreement.  
+
+NOW, THEREFORE, THE PARTIES HEREBY AGREE AS FOLLOWS: 
+
+1. DEFINITIONS
+
+“Affiliate” of a Party shall mean an entity (i) which is directly or indirectly controlling such Party; (ii) which is under the same direct or indirect ownership or control as such Party; or (iii) which is directly or indirectly owned or controlled by such Party.  For these purposes, an entity shall be treated as being controlled by another if that other entity has fifty percent (50 %) or more of the votes in such entity, is able to direct its affairs and/or to control the composition of its board of directors or equivalent body. 
+
+“Add-on Products” shall mean The Qt Company’s specific add-on software products which are not licensed as part of The Qt Company’s standard product offering, but shall be included into the scope of Licensed Software only if so specifically agreed between the Parties. 
+
+“Agreement Term” shall mean the validity period of this Agreement, as set forth in Section 12.  
+
+“Applications” shall mean software products created using the Licensed Software, which include the Redistributables, or part thereof. 
+
+“Contractor(s)” shall mean third party consultants, distributors and contractors performing services to the Licensee under applicable contractual arrangement. 
+
+“Customer(s)” shall mean Licensee’s customers to whom Licensee, directly or indirectly, distributes copies of the Redistributables as integrated or incorporated into Applications or Devices. 
+
+“Data Protection Legislation” shall mean the General Data Protection Regulation (EU 2016/679) (GDPR) and any national implementing laws, regulations and secondary legislation, as may be amended or updated from time to time, as well as any other data protection laws or regulations applicable in relevant territory. 
+
+“Deployment Platforms” shall mean target operating systems and/or hardware specified in the License Certificate, on which the Redistributables can be distributed pursuant to the terms and conditions of this Agreement. 
+
+“Designated User(s)” shall mean the employee(s) of Licensee or Licensee’s Affiliates acting within the scope of their employment or Licensee's Contractors acting within the scope of their services on behalf of Licensee.  
+
+“Development License” shall mean the license needed by the Licensee for each Designated User to use the Licensed Software under the license grant described in Section 3.1 of this Agreement. Development Licenses are available per respective Licensed Software products, each product having its designated scope and purpose of use.  
+
+“Development License Term” shall mean the agreed validity period of the Development License or QA Tools license during which time the relevant Licensed Software product can be used pursuant to this Agreement. Agreed Development License Term, as ordered and paid for by the Licensee, shall be memorialized in the applicable License Certificate.  
+
+“Development Platforms” shall mean those host operating systems specified in the License Certificate, in which the Licensed Software can be used under the Development License.  
+
+“Devices” shall mean
+
+    hardware devices or products that
+        are manufactured and/or distributed by the Licensee, its Affiliates, Contractors or Customers, and
+        incorporate, integrate or link to Applications such that substantial functionality of such unit, when used by an End User, is provided by Application(s) or otherwise depends on the Licensed Software, regardless of whether the Application is developed by Licensee or its Contractors; or
+    Applications designed for the hardware devices specified in item (1).
+
+Devices covered by this Agreement shall be specified in Appendix 2 or in a quote. 
+
+“Distribution License(s)” shall mean a royalty-bearing license required for any kind of sale, trade, exchange, loan, lease, rental or other distribution by or on behalf of Licensee to a third party of Redistributables in connection with Devices pursuant to license grant described in Section 3.3 of this Agreement. Distribution Licensed are sold separately for each type of Device respectively and cannot be used for any type of Devices at Licensee’s discretion.  
+
+“Distribution License Packs” shall mean set of prepaid Distribution Licenses for distribution of Redistributables, as defined in The Qt Company’s standard price list, quote, Purchase Order confirmation or in an Appendix 2 hereto, as the case may be.   
+
+“End User” shall mean the final end user of the Application or a Device. 
+
+“Evaluation License Term” shall mean a time period specified in the License Certificate for the Licensee to use the relevant Licensed Software for evaluation purposes according to Section 3.6 herein. 
+
+“Intellectual Property Rights” shall mean patents (including utility models), design patents, and designs (whether or not capable of registration), chip topography rights and other like protection, copyrights, trademarks, service marks, trade names, logos or other words or symbols and any other form of statutory protection of any kind and applications for any of the foregoing as well as any trade secrets.  
+
+“License Certificate” shall mean a certificate generated by The Qt Company for each Designated User respectively upon them downloading the Licensed Software, which will be available under respective Designated User’s Qt Account at account.qt.io. License Certificates will specify relevant information pertaining the Licensed Software purchased by Licensee and Designated User’s license to the Licensed Software.  
+
+“License Fee” shall mean the fee charged to the Licensee for rights granted under the terms of this Agreement.  
+
+“Licensed Software” shall mean specified product of commercially licensed version of Qt Software and/or QA Tools defined in Appendix 1 and/or Appendix 3, which Licensee has purchased and which is provided to Licensee under the terms of this Agreement. Licensed Software shall include corresponding online or electronic documentation, associated media and printed materials, including the source code (where applicable), example programs and the documentation. Licensed Software does not include Third Party Software (as defined in Section 4) or Open Source Qt. The Qt Company may, in the course of its development activities, at its free and absolute discretion and without any obligation to send or publish any notifications to the Licensee or in general, make changes, additions or deletions in the components and functionalities of the Licensed Software, provided that no such changes, additions or deletions will affect the already released version of the Licensed Software, but only upcoming version(s).   
+
+“Licensee” shall mean the individual or legal entity that is party to this Agreement.  
+
+“Licensee’s Records” shall mean books and records that contain information bearing on Licensee’s compliance with this Agreement, Licensee’s use of Open Source Qt and/or the payments due to The Qt Company under this Agreement, including, but not limited to user information, assembly logs, sales records and distribution records.  
+
+“Modified Software” shall have the meaning as set forth in Section 2.3.  
+
+“Online Services” shall mean any services or access to systems made available by The Qt Company to the Licensee over the Internet relating to the Licensed Software or for the purpose of use by the Licensee of the Licensed Software or Support. Use of any such Online Services is discretionary for the Licensee and some of them may be subject to additional fees. 
+
+“Open Source Qt” shall mean Qt Software available under the terms of the GNU Lesser General Public License, version 2.1 or later (“LGPL”) or the GNU General Public License, version 2.0 or later (“GPL”). For clarity, Open Source Qt shall not be provided, governed or used under this Agreement. 
+
+”Party” or “Parties” shall mean Licensee and/or The Qt Company. 
+
+“Permitted Software” shall mean (i) third party open source software products that are generally available for public in source code form and free of any charge under any of the licenses approved by Open Source Initiative as listed on  https://opensource.org/licenses, which may include parts of Open Source Qt or be developed using Open Source Qt; and (ii) software The Qt Company has made available via its Qt Marketplace online distribution channel. 
+
+“Pre-Release Code” shall have the meaning as set forth in Section 4. 
+
+“Prohibited Combination” shall mean any effort to use, combine, incorporate, link or integrate Licensed Software with any software created with or incorporating Open Source Qt, or use Licensed Software for creation of any such software. 
+
+“Purchase Order” shall have the meaning as set forth in Section 10.2. 
+
+"QA Tools” shall mean software libraries and tools as defined in Appendix 1 depending on which product(s) the Licensee has purchased under the Agreement. 
+
+“Qt Software” shall mean the software libraries and tools of The Qt Company, which The Qt Company makes available under commercial and/or open source licenses.  
+
+“Redistributables" shall mean the portions of the Licensed Software set forth in Appendix 1 that may be distributed pursuant to the terms of this Agreement in object code form only, including any relevant documentation. Where relevant, any reference to Licensed Software in this Agreement shall include and refer also to Redistributables. 
+
+“Renewal Term” shall mean an extension of previous Development License Term as agreed between the Parties. 
+
+“Submitted Modified Software” shall have the meaning as set forth in Section 2.3. 
+
+“Support” shall mean standard developer support that is provided by The Qt Company to assist Designated Users in using the Licensed Software in accordance with this Agreement and the Support Terms. 
+
+“Support Terms” shall mean The Qt Company’s standard support terms specified in Appendix 9 hereto.   
+
+“Taxes” shall have the meaning set forth in Section 10.5. 
+
+“The Qt Company” shall mean: 
+
+    in the event Licensee is an individual residing in the United States or a legal entity incorporated in the United States or having its headquarters in the United States, The Qt Company Inc., a Delaware corporation with its office at 3031 Tisch Way, 110 Plazbertela West, San Jose, CA 95128, USA.; or 
+    in the event the Licensee is an individual residing outside of the United States or a legal entity incorporated outside of the United States or having its registered office outside of the United States, The Qt Company Ltd., a Finnish company with its registered office at Miestentie 7, 02150 Espoo, Finland. 
+
+"Third-Party Software" shall have the meaning set forth in Section 4. 
+
+“Updates” shall mean a release or version of the Licensed Software containing bug fixes, error corrections and other changes that are generally made available to users of the Licensed Software that have contracted for Support. Updates are generally depicted as a change to the digits following the decimal in the Licensed Software version number. The Qt Company shall make Updates available to the Licensee under the Support. Updates shall be considered as part of the Licensed Software hereunder. 
+
+“Upgrades” shall mean a release or version of the Licensed Software containing enhancements and new features and are generally depicted as a change to the first digit of the Licensed Software version number. In the event Upgrades are provided to the Licensee under this Agreement, they shall be considered as part of the Licensed Software hereunder. 
+
+2. OWNERSHIP
+
+2.1. Ownership of The Qt Company
+
+The Licensed Software is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The Licensed Software is licensed, not sold. 
+
+All of The Qt Company's Intellectual Property Rights are and shall remain the exclusive property of The Qt Company or its licensors respectively. No rights to The Qt Company’s Intellectual Property Rights are assigned or granted to Licensee under this Agreement, except when and to the extent expressly specified herein. 
+
+2.2. Ownership of Licensee
+
+All the Licensee’s Intellectual Property Rights are and shall remain the exclusive property of the Licensee or its licensors respectively. 
+
+All Intellectual Property Rights to the Modified Software, Applications and Devices shall remain with the Licensee and no rights thereto shall be granted by the Licensee to The Qt Company under this Agreement (except as set forth in Section 2.3 below). 
+
+2.3. Modified Software 
+
+Licensee may create bug-fixes, error corrections, patches or modifications to the Licensed Software (“Modified Software”). Such Modified Software may break the source or binary compatibility with the Licensed Software (including without limitation through changing the application programming interfaces (“API”) or by adding, changing or deleting any variable, method, or class signature in the Licensed Software and/or any inter-process protocols, services or standards in the Licensed Software libraries). To the extent that Licensee’s Modified Software so breaks source or binary compatibility with the Licensed Software, Licensee acknowledges that The Qt Company’s ability to provide Support may be prevented or limited and Licensee’s ability to make use of Updates may be restricted. 
+
+Licensee may, at its sole and absolute discretion, choose to submit Modified Software to The Qt Company (“Submitted Modified Software”) in connection with Licensee’s Support request, service request or otherwise. In the event Licensee does so, then, Licensee hereby grants The Qt Company a sublicensable, assignable, irrevocable, perpetual, worldwide, non-exclusive, royalty-free and fully paid-up license, under all of Licensee’s Intellectual Property Rights, to reproduce, adapt, translate, modify, and prepare derivative works of, publicly display, publicly perform, sublicense, make available and distribute such Submitted Modified Software as The Qt Company sees fit at its free and absolute discretion. 
+
+3. LICENSES GRANTED
+
+3.1. Development with Licensed Software
+
+Subject to the terms of this Agreement, The Qt Company grants to Licensee a worldwide, non-exclusive, non-transferable license, valid for each Development License Term, to use, modify and copy the Licensed Software by Designated Users on the Development Platforms for the sole purposes of designing, developing, demonstrating and testing Application(s) and/or Devices, and to provide thereto related support and other related services to Customers. Each Application and/or Device can only include, incorporate or integrate contributions by such Designated Users who are duly licensed for the applicable Development Platform(s) and Deployment Platform(s) (i.e have a valid license for the appropriate Licensed Software product). 
+
+Licensee may install copies of the Licensed Software on five (5) computers per Designated User, provided that only the Designated Users who have a valid Development License may use the Licensed Software. 
+
+Licensee may at any time designate another Designated User to replace a then-current Designated User by notifying The Qt Company in writing, where such replacement is due to termination of employment, change of job duties, long time absence or other such permanent reason affecting Designated User’s need for Licensed Software.  
+
+Upon expiry of the initially agreed Development License Term, the respective Development License Term shall be automatically extended to one or more Renewal Term(s), unless and until either Party notifies the other Party in writing, or any other method acceptable to The Qt Company (it being specifically acknowledged and understood that verbal notification is explicitly deemed inadequate in all circumstances), that it does not wish to continue the Development License Term, such notification to be provided to the other Party no less than thirty (30) days before expiry of the respective Development License Term. The Qt Company shall, in good time before the due date for the above notification, remind the Licensee on the coming Renewal Term. Unless otherwise agreed between the Parties, Renewal Term shall be 12 months. 
+
+Any such Renewal Term shall be subject to License Fees agreed between the Parties or, if no advance agreement exists, subject to The Qt Company’s standard list pricing applicable at the commencement date of any such Renewal Term. 
+
+The Qt Company may either request the Licensee to place a purchase order corresponding to a quote by The Qt Company, or use Licensee’s stored Credit Card information in the Qt Account to automatically charge the Licensee for the relevant Renewal Term. 
+
+3.2. Distribution of Applications  
+
+Subject to the terms of this Agreement, The Qt Company grants to Licensee a worldwide, non-exclusive, non-transferable, revocable (for cause pursuant to this Agreement), right and license, valid for the Agreement Term, to 
+
+    distribute, by itself or through its Contractors, Redistributables as installed, incorporated or integrated into Applications for execution on the Deployment Platforms, and 
+    grant perpetual and irrevocable sublicenses to Redistributables, as distributed hereunder, for Customers solely to the extent necessary in order for the Customers to use the Applications for their respective intended purposes. 
+
+Right to distribute the Redistributables as part of an Application as provided herein is not royalty-bearing but is conditional upon the Application having been created, updated and maintained under a valid and duly paid Development Licenses.  
+
+3.3. Distribution of Devices
+
+Subject to the terms of this Agreement, The Qt Company grants to Licensee a worldwide, non-exclusive, non-transferable, revocable (for cause pursuant to this Agreement), right and license, valid for the Agreement Term, to 
+
+    distribute, by itself or through one or more tiers of Contractors, Redistributables as installed, incorporated or integrated, or intended to be installed, incorporated or integrated into Devices for execution on the Deployment Platforms, and 
+    grant perpetual and irrevocable sublicenses to Redistributables, as distributed hereunder, for Customers solely to the extent necessary in order for the Customers to use the Devices for their respective intended purposes. 
+
+Right to distribute the Devices as provided herein is conditional upon (i) the Devices having been created, updated and maintained under a valid and duly paid Development Licenses, and (ii) the Licensee having acquired corresponding Distribution Licenses at the time of distribution of any Devices to Customers.  
+
+3.4. Further Requirements
+
+The licenses granted above in this Section 3 by The Qt Company to Licensee are conditional and subject to Licensee's compliance with the following terms: 
+
+    Licensee acknowledges that The Qt Company has separate products of Licensed Software for the purpose of Applications and Devices respectively, where development and distribution of Devices is only allowed using the correct designated product. Licensee shall make sure and bear the burden of proof that Licensee is using a correct product of Licensed Software entitling Licensee to development and distribution of Devices;   
+    Licensee shall not remove or alter any copyright, trademark or other proprietary rights notice(s) contained in any portion of the Licensed Software;   
+    Applications must add primary and substantial functionality to the Licensed Software so as not to compete with the Licensed Software;  
+    Applications may not pass on functionality which in any way makes it possible for others to create software with the Licensed Software; provided however that Licensee may use the Licensed Software's scripting and QML ("Qt Quick") functionality solely in order to enable scripting, themes and styles that augment the functionality and appearance of the Application(s) without adding primary and substantial functionality to the Application(s);  
+    Licensee shall not use Licensed Software in any manner or for any purpose that infringes, misappropriates or otherwise violates any Intellectual property or right of any third party, or that violates any applicable law;  
+    Licensee shall not use The Qt Company's or any of its suppliers' names, logos, or trademarks to market Applications, except that Licensee may use “Built with Qt” logo to indicate that Application(s) or Device(s) was developed using the Licensed Software;    
+    Licensee shall not distribute, sublicense or disclose source code of Licensed Software to any third party (provided however that Licensee may appoint employee(s) of Contractors and Affiliates as Designated Users to use Licensed Software pursuant to this Agreement). Such right may be available for the Licensee subject to a separate software development kit (“SDK”) license agreement to be concluded with The Qt Company; 
+    Licensee shall not grant the Customers a right to (a) make copies of the Redistributables except when and to the extent required to use the Applications and/or Devices for their intended purpose, (b) modify the Redistributables or create derivative works thereof, (c) decompile, disassemble or otherwise reverse engineer Redistributables, or (d) redistribute any copy or portion of the Redistributables to any third party, except as part of the onward sale of the Application or Device on which the Redistributables are installed; 
+    Licensee shall not and shall cause that its Affiliates or Contractors shall not use Licensed Software in any Prohibited Combination, unless Licensee has received an advance written permission from The Qt Company to do so. Absent such written permission, any and all distribution by the Licensee during the Agreement Term of a hardware device or product a) which incorporate or integrate any part of Licensed Software or Open Source Qt; or b) where substantial functionality is provided by software built with Licensed Software or Open Source Qt or otherwise depends on the Licensed Software or Open Source Qt, shall be considered to be Device distribution under this Agreement and shall be dependent on Licensee’s compliance thereof (including but not limited to obligation to pay applicable License Fees for such distribution). Notwithstanding what is provided above in this sub-section (ix), Licensee is entitled to use and combine Licensed Software with any Permitted Software;  
+    Licensee shall cause all of its Affiliates, Contractors and Customers entitled to make use of the licenses granted under this Agreement, to be contractually bound to comply with the relevant terms of this Agreement and not to use the Licensed Software beyond the terms hereof and for any purposes other than operating within the scope of their services for Licensee. Licensee shall be responsible for any and all actions and omissions of its Affiliates and Contractors relating to the Licensed Software and use thereof (including but not limited to payment of all applicable License Fees);  
+    Except when and to the extent explicitly provided in this Section 3, Licensee shall not transfer, publish, disclose, display or otherwise make available the Licensed Software; and 
+    Licensee shall not attempt or enlist a third party to conduct or attempt to conduct any of the above. 
+
+Above terms shall not be applicable if and to the extent they conflict with any mandatory provisions of any applicable laws. 
+
+Any use of Licensed Software beyond the provisions of this Agreement is strictly prohibited and requires an additional license from The Qt Company. 
+
+3.5 QA Tools License 
+
+Subject to the terms of this Agreement, The Qt Company grants to Licensee a worldwide, non-exclusive, non-transferable license, valid for the Development License Term, to use the QA Tools for Licensee's internal business purposes in the manner provided below and in Appendix 1 hereto. 
+
+Licensee may modify the QA Tools except for altering or removing any details of ownership, copyright, trademark or other property right connected with the QA Tools. 
+
+Licensee shall not distribute the QA Tools or any part thereof, modified or unmodified, separately or as part of any software package, Application or Device. 
+
+Upon expiry of the initially agreed Development License Term, the respective Development License Term shall be automatically extended to one or more Renewal Term(s), unless and until either Party notifies the other Party in writing, or any other method acceptable to The Qt Company (it being specifically acknowledged and understood that verbal notification is explicitly deemed inadequate in all circumstances), that it does not wish to continue the Development License Term, such notification to be provided to the other Party no less than thirty (30) days before expiry of the respective Development License Term. The Qt Company shall, in good time before the due date for the above notification, remind the Licensee on the coming Renewal Term. Unless otherwise agreed between the Parties, Renewal Term shall be 12 months. 
+
+Any such Renewal Term shall be subject to License Fees agreed between the Parties or, if no advance agreement exists, subject to The Qt Company’s standard list pricing applicable at the commencement date of any such Renewal Term. 
+
+3.6 Evaluation License 
+
+Subject to the terms of this Agreement, The Qt Company grants to Licensee a worldwide, non-exclusive, non-transferable license, valid for the Evaluation License Term to use the Licensed Software solely for the Licensee’s internal use to evaluate and determine whether the Licensed Software meets Licensee's business requirements, specifically excluding any commercial use of the Licensed Software or any derived work thereof.  
+
+Upon the expiry of the Evaluation License Term, Licensee must either discontinue use of the relevant Licensed Software or acquire a commercial Development License or QA Tools License specified herein. 
+
+4. THIRD-PARTY SOFTWARE
+
+The Licensed Software may provide links or access to third party libraries or code (collectively "Third-Party Software") to implement various functions. Third-Party Software does not, however, comprise part of the Licensed Software, but is provided to Licensee complimentary and use thereof is discretionary for the Licensee. Third-Party Software will be listed in the ".../src/3rdparty" source tree delivered with the Licensed Software or documented in the Licensed Software, as such may be amended from time to time. Licensee acknowledges that use or distribution of Third-Party Software is in all respects subject to applicable license terms of applicable third-party right holders. 
+
+5. PRE-RELEASE CODE
+
+The Licensed Software may contain pre-release code and functionality, or sample code marked or otherwise stated with appropriate designation such as “Technology Preview”, “Alpha”, “Beta”, “Sample”, “Example” etc. (“Pre-Release Code”).  
+
+Such Pre-Release Code may be present complimentary for the Licensee, in order to provide experimental support or information for new platforms or preliminary versions of one or more new functionalities or for other similar reasons. The Pre-Release Code may not be at the level of performance and compatibility of a final, generally available, product offering.  The Pre-Release Code may not operate correctly, may contain errors and may be substantially modified by The Qt Company prior to the first commercial product release, if any. The Qt Company is under no obligation to make Pre-Release Code commercially available, or provide any Support or Updates relating thereto. The Qt Company assumes no liability whatsoever regarding any Pre-Release Code, but any use thereof is exclusively at Licensee’s own risk and expense. 
+
+For clarity, unless Licensed Software specifies different license terms for the respective Pre-Release Code, the Licensee is entitled to use such pre-release code pursuant to Section 3, just like other Licensed Software. 
+
+6. LIMITED WARRANTY AND WARRANTY DISCLAIMER
+
+The Qt Company hereby represents and warrants that (i) it has the power and authority to grant the rights and licenses granted to Licensee under this Agreement, and (ii) Licensed Software will operate materially in accordance with its specifications.  
+
+Except as set forth above, the Licensed Software is licensed to Licensee "as is" and Licensee’s exclusive remedy and The Qt Company’s entire liability for errors in the Licensed Software shall be limited, at The Qt Company’s option, to correction of the error, replacement of the Licensed Software or return of the applicable fees paid for the defective Licensed Software for the time period during which the License is not able to utilize the Licensed Software under the terms of this Agreement. 
+
+TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE QT COMPANY ON BEHALF OF ITSELF AND ITS LICENSORS, SUPPLIERS AND AFFILIATES, DISCLAIMS ALL OTHER WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT WITH REGARD TO THE LICENSED SOFTWARE. THE QT COMPANY DOES NOT WARRANT THAT THE LICENSED SOFTWARE WILL SATISFY LICENSEE’S REQUIREMENTS OR THAT IT WILL OPERATE WITHOUT DEFECT OR ERROR OR THAT THE OPERATION THEREOF WILL BE UNINTERRUPTED. 
+
+7. LIMITATION OF LIABILITY
+
+EXCEPT FOR (I) CASES OF GROSS NEGLIGENCE OR INTENTIONAL MISCONDUCT, AND (II) BREACH OF CONFIDENTIALITY, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL EITHER PARTY BE LIABLE TO THE OTHER PARTY FOR ANY LOSS OF PROFIT, LOSS OF DATA, LOSS OF BUSINESS OR GOODWILL OR ANY OTHER INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE COST, DAMAGES OR EXPENSE OF ANY KIND, HOWSOEVER ARISING UNDER OR IN CONNECTION WITH THIS AGREEMENT. 
+
+EXCEPT FOR (I) CASES OF GROSS NEGLIGENCE OR INTENTIONAL MISCONDUCT, AND (II) BREACH OF CONFIDENTIALITY, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL EITHER PARTY’S TOTAL AGGREGATE LIABILITY UNDER THIS AGREEMENT EXCEED THE AGGREGATE LICENSE FEES PAID OR PAYABLE TO THE QT COMPANY BY LICENSEE DURING THE DEVELOPMENT LICENSE TERM DURING WHICH THE EVENT RESULTING IN SUCH LIABILITY OCCURRED. 
+
+THE PROVISIONS OF THIS SECTION 7 ALLOCATE THE RISKS UNDER THIS AGREEMENT BETWEEN THE QT COMPANY AND LICENSEE AND THE PARTIES HAVE RELIED UPON THE LIMITATIONS SET FORTH HEREIN IN DETERMINING WHETHER TO ENTER INTO THIS AGREEMENT. 
+
+NOTWITHSTANDING ANYTHING TO THE CONTRARY IN THIS AGREEMENT, LICENSEE SHALL ALWAYS BE LIABLE TO PAY THE APPLICABLE LICENSE FEES CORRESPONDING TO ITS ACTUAL USE OF LICENSED SOFTWARE. 
+
+8. SUPPORT, UPDATES AND ONLINE SERVICES
+
+Upon due payment of the agreed License Fees the Licensee will be eligible to receive Support and Updates and to use the Online Services during the agreed Development License Term or other agreed fixed time period. Support is provided according to agreed support level and subject to applicable requirements and restrictions, as specified in the Support Terms. 
+
+Unless otherwise decided by The Qt Company at its free and absolute discretion, Upgrades will not be included in the Support but may be available subject to additional fees. 
+
+From time to time The Qt Company may change the Support Terms, provided that during the respective ongoing Support period the level of Support may not be reduced without the consent of the Licensee. 
+
+Unless otherwise agreed, The Qt Company shall not be responsible for providing any service or support to Customers. 
+
+9. CONFIDENTIALITY
+
+Each Party acknowledges that during the Agreement Term each Party may receive information about the other Party's business, business methods, business plans, customers, business relations, technology, and other information, including the terms of this Agreement, that is confidential and of great value to the other Party, and the value of which would be significantly reduced if disclosed to third parties (“Confidential Information”). Accordingly, when a Party (the “Receiving Party”) receives Confidential Information from the other Party (the “Disclosing Party”), the Receiving Party shall only disclose such information to employees and Contractors on a need to know basis, and shall cause its employees and employees of its Affiliates to: (i) maintain any and all Confidential Information in confidence; (ii) not disclose the Confidential Information to a third party without the Disclosing Party's prior written approval; and (iii) not, directly or indirectly, use the Confidential Information for any purpose other than for exercising its rights and fulfilling its responsibilities pursuant to this Agreement. Each Party shall take reasonable measures to protect the Confidential Information of the other Party, which measures shall not be less than the measures taken by such Party to protect its own confidential and proprietary information.  
+
+Obligation of confidentiality shall not apply to information that (i) is or becomes generally known to the public through no act or omission of the Receiving Party; (ii) was in the Receiving Party's lawful possession prior to the disclosure hereunder and was not subject to limitations on disclosure or use; (iii) is developed independently by employees or Contractors of the Receiving Party or other persons working for the Receiving Party who have not had access to the Confidential Information of the Disclosing Party, as proven by the written records of the Receiving Party; (iv) is lawfully disclosed to the Receiving Party without restrictions, by a third party not under an obligation of confidentiality; or (v) the Receiving Party is legally compelled to disclose, in which case the Receiving Party shall notify the Disclosing Party of such compelled disclosure and assert the privileged and confidential nature of the information and cooperate fully with the Disclosing Party to limit the scope of disclosure and the dissemination of disclosed Confidential Information to the minimum extent necessary.  
+
+The obligations under this Section 9 shall continue to remain in force for a period of five (5) years after the last disclosure, and, with respect to trade secrets, for so long as such trade secrets are protected under applicable trade secret laws. 
+
+10. FEES, DELIVERY AND PAYMENT
+
+10.1. License Fees
+
+License Fees are described in The Qt Company’s standard price list, quote or Purchase Order confirmation or in an Appendix 2 hereto, as the case may be.  
+
+Unless otherwise expressly provided in this Agreement, the License Fees shall not be refunded or claimed as a credit in any event or for any reason whatsoever.   
+
+10.2. Ordering Licenses
+
+Licensee may purchase Development Licenses, Distribution Licenses and QA Tools Licenses pursuant to agreed pricing terms or, if no specific pricing terms have been agreed upon, at The Qt Company's standard pricing terms applicable at the time of purchase.  
+
+Unless expressly otherwise agreed, any price or other term quoted to the Licensee or specified herein shall only be valid for the thirty (30) days from the effective date of this Agreement, Appendix 2 or the date of the quote, as applicable. 
+
+Licensee shall submit all purchase orders for Development Licenses and Distribution Licenses to The Qt Company by email or any other method acceptable to The Qt Company (each such order is referred to herein as a “Purchase Order”) for confirmation, whereupon the Purchase Order shall become binding between the Parties. 
+
+Licensee acknowledges and agrees that all Purchase Orders for Licensed Software the Licensee makes during the Agreement Term shall be governed exclusively under the terms of this Agreement. 
+
+10.3. Distribution License Packs
+
+Unless otherwise agreed, Distribution Licenses shall be purchased by way of Distribution License Packs. 
+
+Upon due payment of the ordered Distribution License Pack(s), the Licensee will have an account of Distribution Licenses available for distributing the Redistributables in accordance with this Agreement. 
+
+Each time Licensee distributes a copy of Redistributables, then one Distribution License is used, and Licensee’s account of available Distribution Licenses is decreased accordingly. 
+
+Licensee may distribute copies of the Redistributables so long as Licensee has Distribution Licenses remaining on its account.  
+
+10.4. Payment Terms
+
+License Fees and any other charges under this Agreement shall be paid by Licensee no later than thirty (30) days from the date of the applicable invoice from The Qt Company.  
+
+The Qt Company will submit an invoice to Licensee after the date of this Agreement and/or after The Qt Company receives a Purchase Order from Licensee. 
+
+A late payment charge of the lower of (a) one percent per month; or (b) the interest rate stipulated by applicable law, shall be charged on any unpaid balances that remain past due and which have not been disputed by the Licensee in good faith.  
+
+10.5. Taxes
+
+All License Fees and other charges payable hereunder are gross amounts but exclusive of any value added tax, use tax, sales tax, withholding tax and other taxes, duties or tariffs (“Taxes”) levied directly for the sale, delivery or use of Licensed Software hereunder pursuant to any applicable law. Such applicable Taxes shall be paid by Licensee to The Qt Company, or, where applicable, in lieu of payment of such Taxes to The Qt Company, Licensee shall provide an exemption certificate to The Qt Company and any applicable authority. 
+
+11. RECORD-KEEPING AND REPORTING OBLIGATIONS; AUDIT RIGHTS 
+
+11.1. Licensee’s Record-keeping 
+
+Licensee shall at all times during the Agreement Term and for a period of two (2) years thereafter maintain Licensee’s Records in an accurate and up-to-date form. Licensee’s Records shall be adequate to reasonably enable The Qt Company to determine Licensee’s compliance with the provisions of this Agreement. The records shall conform to general good accounting practices.   
+
+Licensee shall, within thirty (30) days from receiving The Qt Company’s request to that effect, deliver to The Qt Company a report based on Licensee’s Records, such report to contain information, in sufficient detail, on (i) number and identity of users working with Licensed Software or Open Source Qt, (ii) copies of Redistributables distributed by Licensee during the most recent calendar quarter and/or any other term specified by The Qt Company, , and (iii) any other information pertaining to Licensee’s compliance with the terms of this Agreement (like e.g. information on products and/or projects relating to use of Distribution Licenses), as The Qt Company may reasonably require from time to time. 
+
+11.2. The Qt Company’s Audit Rights 
+
+The Qt Company or an independent auditor acting on behalf of The Qt Company’s, may, upon at least thirty (30) days’ prior written notice and at its expense, audit Licensee with respect to the Licensee’s use of the Licensed Software, but not more frequently than once during each 6-month period. Such audit may be conducted by mail, electronic means or through an in-person visit to Licensee’s place of business. Any possible in-person audit shall be conducted during regular business hours at Licensee's facilities and shall not unreasonably interfere with Licensee's business activities and shall be limited in scope to verify Licensee’s compliance with the terms of this Agreement. The Qt Company or the independent auditor acting on behalf of The Qt Company shall be entitled to inspect Licensee’s Records and conduct necessary interviews of Licensee’s relevant employees and Contractors. All such Licensee’s Records and use thereof shall be subject to an obligation of confidentiality under this Agreement.  
+
+If an audit reveals that Licensee is using the Licensed Software beyond scope of the licenses Licensee has paid for, Licensee shall pay to The Qt Company any amounts owed for such unauthorized use within 30 days from receipt of the corresponding invoice from The Qt Company.   
+
+In addition, in the event the audit reveals a material violation of the terms of this Agreement (without limitation, either (i) underpayment of more than 10 % of License Fees or 10,000 euros (whichever is more) or (ii) distribution of products, which include or result from Prohibited Combination, shall be deemed a material violation for purposes of this section), then the Licensee shall pay The Qt Company's reasonable cost of conducting such audit.  
+
+12. TERM AND TERMINATION 
+
+12.1. Agreement Term 
+
+This Agreement shall enter into force upon due acceptance by both Parties and remain in force until terminated pursuant to the terms of this Section 12 (“Agreement Term”). 
+
+12.2. Termination for breach and suspension of rights  
+
+Either Party shall have the right to terminate this Agreement upon thirty (30) days prior written notice if the other Party commits a material breach of any obligation of this Agreement and fails to remedy such breach within such notice period. 
+
+Instead of termination, The Qt Company shall have the right to suspend or withhold grants of all rights to the Licensed Software hereunder, including but not limited to the Development Licenses, Distribution License, and Support, should Licensee fail to make payment in timely fashion or otherwise violates or is reasonably suspected to violate its obligations or terms of this Agreement, and where such violation or breach is not cured within ten (10) business days following The Qt Company’s written notice thereof. 
+
+12.3. Termination for insolvency 
+
+Either Party shall have the right to terminate this Agreement immediately upon written notice in the event that the other Party becomes insolvent, files for any form of bankruptcy, makes any assignment for the benefit of creditors, has a receiver, administrative receiver or officer appointed over the whole or a substantial part of its assets, ceases to conduct business, or an act equivalent to any of the above occurs under the laws of the jurisdiction of the other Party. 
+
+12.4. Parties´ Rights and Duties upon Termination 
+
+Upon expiry or termination of the Agreement, Licensee shall cease and shall cause all Designated Users (including those of its Affiliates’ and Contractors’) to cease using the Licensed Software under this Agreement. For clarity, a Development License of a Designated User or a QA Tools License, and all rights relating thereto, shall always terminate at the expiry of the respective Development License Term, even if the Agreement continues to remain in force. 
+
+Upon such termination the Licensee shall destroy or return to The Qt Company all copies of the Licensed Software and all related materials and will certify the same by Licensee’s duly authorized officer to The Qt Company upon its request, provided however that Licensee may retain and exploit such copies of the Licensed Software as it may reasonably require in providing continued support to Customers. 
+
+Except when this Agreement is terminated by The Qt Company due to Licensee’s material breach as set forth in Section 12.2, the Licensee may continue distribution of Applications and Devices under the terms of this Agreement despite the termination of this Agreement. In such event the terms hereof will continue to be applicable and govern any such distribution of Applications and Devices beyond the expiry or termination of this Agreement. In case of termination by The Qt Company due to Licensee’s material breach, Licensee must cease any distribution of Applications and Devices at the date of termination of this Agreement. 
+
+Expiry or termination of this Agreement for any reason whatsoever shall not relieve Licensee of its obligation to pay any License Fees accrued or payable to The Qt Company prior to the effective date of termination, and Licensee pay to The Qt Company all such fees within 30 days from the effective date of termination of this Agreement.  
+
+Termination of this Agreement shall not affect any rights of Customers to continue use of Applications and Devices (and therein incorporated Redistributables). 
+
+12.5. Extension of Rights under Special Circumstances 
+
+In the event of The Qt Company choosing not to renew the Development License(s) or QA Tools Licenses, as set forth in Section 3.1 and 3.5 respectively, and where such decision of non-renewal is not due to any ongoing breach or alleged breach (as reasonably determined by The Qt Company) by Licensee of the terms of this Agreement or any applicable license terms of Open Source Qt, then all valid and affected Development Licenses and QA Tools licenses possessed by the Licensee at such date shall be extended to be valid in perpetuity under the terms of this Agreement and Licensee is entitled to purchase additional licenses as set forth in Section 10.2. 
+
+In the event The Qt Company is declared bankrupt under a final, non-cancellable decision by relevant court of law, and this Agreement is not, at the date of expiry of the Development License(s) or QA Tools Licenses, assigned to party, who has assumed The Qt Company’s position as a legitimate licensor of Licensed Software under this Agreement, then all valid Development Licenses and QA Tools Licenses possessed by the Licensee at such date of expiry, and which the Licensee has not notified for expiry, shall be extended to be valid in perpetuity under the terms of this Agreement. 
+
+For clarity, in case of an extension under this Section 12.5, any such extension shall not apply to The Qt Company’s Support obligations, but Support shall be provided only up until the end of the respective fixed Development License Term regardless of the extension of relevant Development License or QA Tools License, unless otherwise agreed between the Parties.  
+
+13. GOVERNING LAW AND LEGAL VENUE 
+
+In the event this Agreement is in the name of The Qt Company Inc., a Delaware Corporation, then: 
+
+    this Agreement shall be construed and interpreted in accordance with the laws of the State of California, USA, excluding its choice of law provisions;  
+    the United Nations Convention on Contracts for the International Sale of Goods will not apply to this Agreement; and 
+    any dispute, claim or controversy arising out of or relating to this Agreement or the breach, termination, enforcement, interpretation or validity thereof, including the determination of the scope or applicability of this Agreement to arbitrate, shall be determined by arbitration in San Francisco, USA, before one arbitrator. The arbitration shall be administered by JAMS pursuant to JAMS' Streamlined Arbitration Rules and Procedures. Judgment on the Award may be entered in any court having jurisdiction. This Section shall not preclude parties from seeking provisional remedies in aid of arbitration from a court of appropriate jurisdiction. 
+
+In the event this Agreement is in the name of The Qt Company Ltd., a Finnish Company, then:  
+
+    this Agreement shall be construed and interpreted in accordance with the laws of Finland, excluding its choice of law provisions;  
+    the United Nations Convention on Contracts for the International Sale of Goods will not apply to this Agreement; and 
+    any disputes, controversy or claim arising out of or relating to this Agreement, or the breach, termination or validity thereof shall be finally settled by arbitration in accordance with the Arbitration Rules of International Chamber of Commerce. The arbitration tribunal shall consist of one (1), or if either Party so requires, of three (3), arbitrators. The award shall be final and binding and enforceable in any court of competent jurisdiction. The arbitration shall be held in Helsinki, Finland and the process shall be conducted in the English language. This Section shall not preclude parties from seeking provisional remedies in aid of arbitration from a court of appropriate jurisdiction. 
+
+14. GENERAL PROVISIONS 
+
+14.1. No Assignment 
+
+Except in the case of a merger or sale of substantially all of its corporate assets, Licensee shall not be entitled to assign or transfer all or any of its rights, benefits and obligations under this Agreement without the prior written consent of The Qt Company, which shall not be unreasonably withheld or delayed. The Qt Company shall be entitled to freely assign or transfer any of its rights, benefits or obligations under this Agreement. 
+
+14.2. No Third-Party Representations 
+
+Licensee shall make no representations or warranties concerning the Licensed Software on behalf of The Qt Company. Any representation or warranty Licensee makes or purports to make on The Qt Company’s behalf shall be void as to The Qt Company. 
+
+14.3. Surviving Sections 
+
+Any terms and conditions that by their nature or otherwise reasonably should survive termination of this Agreement shall so be deemed to survive. Such sections include especially the following: 1, 2, 6, 7, 9, 11, 12.4, 13 and 14.     
+
+14.4. Entire Agreement  
+
+This Agreement, the Appendices hereto, the License Certificate and any applicable quote and Purchase Order accepted by The Qt Company constitute the complete agreement between the Parties and supersedes all prior or contemporaneous discussions, representations, and proposals, written or oral, with respect to the subject matters discussed herein.   
+
+In the event of any conflict or inconsistency between this Agreement and any Purchase Order, the terms of this Agreement will prevail over the terms of the Purchase Order with respect to such conflict or inconsistency. 
+
+Parties specifically acknowledge and agree that this Agreement prevails over any click-to-accept or similar agreements the Designated Users may need to accept online upon download of the Licensed Software, as may be required by The Qt Company’s applicable processes relating to Licensed Software. 
+
+14.5. Modifications 
+
+No modification of this Agreement shall be effective unless contained in a writing executed by an authorized representative of each Party. No term or condition contained in Licensee's Purchase Order (“Deviating Terms”) shall apply unless The Qt Company has expressly agreed such Deviating Terms in writing. Unless and to the extent expressly agreed by The Qt Company, any such Deviating Terms shall be deemed void and with no legal effect. For clarity, delivery of the Licensed Software following the receipt of the Purchase Order including Deviating Terms shall not constitute acceptance of such Deviating Terms. 
+
+14.6. Force Majeure 
+
+Except for the payment obligations hereunder, neither Party shall be liable to the other for any delay or non-performance of its obligations hereunder in the event and to the extent that such delay or non-performance is due to an event of act of God, terrorist attack or other similar unforeseeable catastrophic event that prevents either Party for fulfilling its obligations under this Agreement and which such Party cannot avoid or circumvent (“Force Majeure Event”). If the Force Majeure Event results in a delay or non-performance of a Party for a period of three (3) months or longer, then either Party shall have the right to terminate this Agreement with immediate effect without any liability (except for the obligations of payment arising prior to the event of Force Majeure) towards the other Party.   
+
+14.7. Notices 
+
+Any notice given by one Party to the other shall be deemed properly given and deemed received if specifically acknowledged by the receiving Party in writing or when successfully delivered to the recipient by hand, fax, or special courier during normal business hours on a business day to the addresses specified for each Party on the signature page. Each communication and document made or delivered by one Party to the other Party pursuant to this Agreement shall be in the English language. 
+
+14.8. Export Control 
+
+Licensee acknowledges that the Redistributables, as incorporated in Applications or Devices, may be subject to export control restrictions under the applicable laws of respective countries. Licensee shall fully comply with all applicable export license restrictions and requirements as well as with all laws and regulations relating to the Redistributables and exercise of licenses hereunder and shall procure all necessary governmental authorizations, including without limitation, all necessary licenses, approvals, permissions or consents, where necessary for the re-exportation of the Redistributables, Applications and/or Devices. 
+
+14.9. No Implied License 
+
+There are no implied licenses or other implied rights granted under this Agreement, and all rights, save for those expressly granted hereunder, shall remain with The Qt Company and its licensors. In addition, no licenses or immunities are granted to the combination of the Licensed Software with any other software or hardware not delivered by The Qt Company under this Agreement. 
+
+14.10. Attorney Fees 
+
+The prevailing Party in any action to enforce this Agreement shall be entitled to recover its attorney’s fees and costs in connection with such action, as to be ordered by the relevant dispute resolution body.  
+
+14.11. Privacy 
+
+Licensee acknowledges and agrees that for the purpose of this Agreement, The Qt Company may collect, use, transfer and disclose personal data pertaining to Designated Users as well as any other employees and directors of the Licensee and its Contractors relevant for carrying out the intent of this Agreement. Such personal data will be primarily collected from the relevant individuals but may be collected also from Licensee (e.g. in the course of Licensee’s reporting obligations). The Parties acknowledge that as The Qt Company determines the purpose and means for such collection and processing of the applicable personal data, The Qt Company shall be regarded as the Data Controller under the applicable Data Protection Legislation. The Qt Company shall process any such personal data in accordance with its privacy and security policies and practices, which will comply with all applicable requirements of the Data Protection Legislation.  
+
+14.12. Severability 
+
+If any provision of this Agreement shall be adjudged by any court of competent jurisdiction to be unenforceable or invalid, that provision shall be limited or eliminated to the minimum extent necessary so that this Agreement shall otherwise remain in full force and effect and enforceable. 
+
+14.13. Marketing Rights 
+
+Parties have agreed upon Marketing Rights pursuant to Appendix 7, if any.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/qt-commercial-agreement-4.4.1.json b/docs/qt-commercial-agreement-4.4.1.json new file mode 100644 index 0000000000..beb7a48c06 --- /dev/null +++ b/docs/qt-commercial-agreement-4.4.1.json @@ -0,0 +1,19 @@ +{ + "key": "qt-commercial-agreement-4.4.1", + "short_name": "Qt License Agreement v4.4.1", + "name": "Qt License Agreement v4.4.1", + "category": "Commercial", + "owner": "Qt Company", + "homepage_url": "https://www.qt.io/terms-conditions/", + "spdx_license_key": "LicenseRef-scancode-qt-commercial-agreement-4.4.1", + "other_urls": [ + "https://www.qt.io/contact-us" + ], + "ignorable_authors": [ + "The Qt Company", + "permission from The Qt Company" + ], + "ignorable_urls": [ + "https://opensource.org/licenses" + ] +} \ No newline at end of file diff --git a/docs/qt-commercial-agreement-4.4.1.yml b/docs/qt-commercial-agreement-4.4.1.yml new file mode 100644 index 0000000000..2f9d701527 --- /dev/null +++ b/docs/qt-commercial-agreement-4.4.1.yml @@ -0,0 +1,14 @@ +key: qt-commercial-agreement-4.4.1 +short_name: Qt License Agreement v4.4.1 +name: Qt License Agreement v4.4.1 +category: Commercial +owner: Qt Company +homepage_url: https://www.qt.io/terms-conditions/ +spdx_license_key: LicenseRef-scancode-qt-commercial-agreement-4.4.1 +other_urls: + - https://www.qt.io/contact-us +ignorable_authors: + - The Qt Company + - permission from The Qt Company +ignorable_urls: + - https://opensource.org/licenses diff --git a/docs/qt-company-exception-2017-lgpl-2.1.LICENSE b/docs/qt-company-exception-2017-lgpl-2.1.LICENSE index e69de29bb2..9b1517d469 100644 --- a/docs/qt-company-exception-2017-lgpl-2.1.LICENSE +++ b/docs/qt-company-exception-2017-lgpl-2.1.LICENSE @@ -0,0 +1,33 @@ +--- +key: qt-company-exception-2017-lgpl-2.1 +is_deprecated: yes +short_name: Qt Company Exception to LGPL 2.1 2017 +name: Qt Company Exception to LGPL 2.1 2017 +category: Copyleft Limited +owner: Qt Company +notes: replaced by qt-lgpl-exception-1.1 +is_exception: yes +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +--- + +As an additional permission to the GNU Lesser General Public License version +2.1, the object code form of a "work that uses the Library" may incorporate +material from a header file that is part of the Library. You may distribute +such object code under terms of your choice, provided that: + (i) the header files of the Library have not been modified; and + (ii) the incorporated material is limited to numerical parameters, data + structure layouts, accessors, macros, inline functions and + templates; and + (iii) you comply with the terms of Section 6 of the GNU Lesser General + Public License version 2.1. + +Moreover, you may apply this exception to a modified version of the Library, +provided that such modification does not involve copying material from the +Library into the modified Library's header files unless such material is +limited to (i) numerical parameters; (ii) data structure layouts; +(iii) accessors; and (iv) small macros, templates and inline functions of +five lines or less in length. + +Furthermore, you are not required to apply this additional permission to a +modified version of the Library. \ No newline at end of file diff --git a/docs/qt-company-exception-2017-lgpl-2.1.html b/docs/qt-company-exception-2017-lgpl-2.1.html index 0f2a09ed2c..a1c1ac69c5 100644 --- a/docs/qt-company-exception-2017-lgpl-2.1.html +++ b/docs/qt-company-exception-2017-lgpl-2.1.html @@ -131,7 +131,26 @@
license_text
-
+
As an additional permission to the GNU Lesser General Public License version
+2.1, the object code form of a "work that uses the Library" may incorporate
+material from a header file that is part of the Library.  You may distribute
+such object code under terms of your choice, provided that:
+    (i)   the header files of the Library have not been modified; and 
+    (ii)  the incorporated material is limited to numerical parameters, data
+          structure layouts, accessors, macros, inline functions and
+          templates; and
+    (iii) you comply with the terms of Section 6 of the GNU Lesser General
+          Public License version 2.1.
+
+Moreover, you may apply this exception to a modified version of the Library,
+provided that such modification does not involve copying material from the
+Library into the modified Library's header files unless such material is
+limited to (i) numerical parameters; (ii) data structure layouts;
+(iii) accessors; and (iv) small macros, templates and inline functions of
+five lines or less in length.
+
+Furthermore, you are not required to apply this additional permission to a
+modified version of the Library.
@@ -143,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qt-company-exception-2017-lgpl-2.1.json b/docs/qt-company-exception-2017-lgpl-2.1.json index c2ec1e8daf..d5a374e166 100644 --- a/docs/qt-company-exception-2017-lgpl-2.1.json +++ b/docs/qt-company-exception-2017-lgpl-2.1.json @@ -1 +1,13 @@ -{"key": "qt-company-exception-2017-lgpl-2.1", "is_deprecated": true, "short_name": "Qt Company Exception to LGPL 2.1 2017", "name": "Qt Company Exception to LGPL 2.1 2017", "category": "Copyleft Limited", "owner": "Qt Company", "notes": "replaced by qt-lgpl-exception-1.1", "is_exception": true, "other_urls": ["http://www.gnu.org/licenses/lgpl-2.1.txt"]} \ No newline at end of file +{ + "key": "qt-company-exception-2017-lgpl-2.1", + "is_deprecated": true, + "short_name": "Qt Company Exception to LGPL 2.1 2017", + "name": "Qt Company Exception to LGPL 2.1 2017", + "category": "Copyleft Limited", + "owner": "Qt Company", + "notes": "replaced by qt-lgpl-exception-1.1", + "is_exception": true, + "other_urls": [ + "http://www.gnu.org/licenses/lgpl-2.1.txt" + ] +} \ No newline at end of file diff --git a/docs/qt-company-exception-lgpl-2.1.LICENSE b/docs/qt-company-exception-lgpl-2.1.LICENSE index 3feb192bc7..54bfc05c10 100644 --- a/docs/qt-company-exception-lgpl-2.1.LICENSE +++ b/docs/qt-company-exception-lgpl-2.1.LICENSE @@ -1,3 +1,37 @@ +--- +key: qt-company-exception-lgpl-2.1 +short_name: Qt Company Exception to LGPL 2.1 +name: Qt Company Exception to LGPL 2.1 +category: Copyleft Limited +owner: Qt Company +notes: this is very similar to qt-lgpl-exception-1.1 but with a different text +is_exception: yes +spdx_license_key: LicenseRef-scancode-qt-company-exception-lgpl-2.1 +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt + - https://www.keepassx.org/dev/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION +standard_notice: | + 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 + + As a special exception to the GNU Lesser General Public License version 2.1, the + object code form of a "work that uses the Library" may incorporate material from + a header file that is part of the Library. You may distribute such object code + under terms of your choice, provided that the incorporated material (i) does not + exceed more than 5% of the total size of the Library; and (ii) is limited to + numerical parameters, data structure layouts, accessors, macros, inline + functions and templates. +--- + As a special exception to the GNU Lesser General Public License version 2.1, the object code form of a "work that uses the Library" may incorporate material from a header file that is part of the Library. You may distribute such object code diff --git a/docs/qt-company-exception-lgpl-2.1.html b/docs/qt-company-exception-lgpl-2.1.html index 232437ca62..db5e63a3b8 100644 --- a/docs/qt-company-exception-lgpl-2.1.html +++ b/docs/qt-company-exception-lgpl-2.1.html @@ -175,7 +175,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qt-company-exception-lgpl-2.1.json b/docs/qt-company-exception-lgpl-2.1.json index a371c0defe..4c4e6d9f57 100644 --- a/docs/qt-company-exception-lgpl-2.1.json +++ b/docs/qt-company-exception-lgpl-2.1.json @@ -1 +1,15 @@ -{"key": "qt-company-exception-lgpl-2.1", "short_name": "Qt Company Exception to LGPL 2.1", "name": "Qt Company Exception to LGPL 2.1", "category": "Copyleft Limited", "owner": "Qt Company", "notes": "this is very similar to qt-lgpl-exception-1.1 but with a different text", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-qt-company-exception-lgpl-2.1", "other_urls": ["http://www.gnu.org/licenses/lgpl-2.1.txt", "https://www.keepassx.org/dev/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION"], "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published by\nthe Free Software Foundation; either version 2.1 of the License, or (at\nyour option) any later version.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License\nfor more details.\nYou should have received a copy of the GNU Lesser General Public License\nalong with this library; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nAs a special exception to the GNU Lesser General Public License version 2.1, the\nobject code form of a \"work that uses the Library\" may incorporate material from\na header file that is part of the Library. You may distribute such object code\nunder terms of your choice, provided that the incorporated material (i) does not\nexceed more than 5% of the total size of the Library; and (ii) is limited to\nnumerical parameters, data structure layouts, accessors, macros, inline\nfunctions and templates.\n"} \ No newline at end of file +{ + "key": "qt-company-exception-lgpl-2.1", + "short_name": "Qt Company Exception to LGPL 2.1", + "name": "Qt Company Exception to LGPL 2.1", + "category": "Copyleft Limited", + "owner": "Qt Company", + "notes": "this is very similar to qt-lgpl-exception-1.1 but with a different text", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-qt-company-exception-lgpl-2.1", + "other_urls": [ + "http://www.gnu.org/licenses/lgpl-2.1.txt", + "https://www.keepassx.org/dev/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION" + ], + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published by\nthe Free Software Foundation; either version 2.1 of the License, or (at\nyour option) any later version.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License\nfor more details.\nYou should have received a copy of the GNU Lesser General Public License\nalong with this library; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nAs a special exception to the GNU Lesser General Public License version 2.1, the\nobject code form of a \"work that uses the Library\" may incorporate material from\na header file that is part of the Library. You may distribute such object code\nunder terms of your choice, provided that the incorporated material (i) does not\nexceed more than 5% of the total size of the Library; and (ii) is limited to\nnumerical parameters, data structure layouts, accessors, macros, inline\nfunctions and templates.\n" +} \ No newline at end of file diff --git a/docs/qt-gpl-exception-1.0.LICENSE b/docs/qt-gpl-exception-1.0.LICENSE index fce4abe5d1..0a1b41cc3a 100644 --- a/docs/qt-gpl-exception-1.0.LICENSE +++ b/docs/qt-gpl-exception-1.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: qt-gpl-exception-1.0 +short_name: Qt GPL exception 1.0 +name: Qt GPL exception 1.0 +category: Copyleft Limited +owner: Qt Company +homepage_url: http://code.qt.io/cgit/qt/qtbase.git/tree/LICENSE.GPL3-EXCEPT +is_exception: yes +spdx_license_key: Qt-GPL-exception-1.0 +--- + The Qt Company GPL Exception 1.0 Exception 1: diff --git a/docs/qt-gpl-exception-1.0.html b/docs/qt-gpl-exception-1.0.html index 056e655f5f..b6dd320211 100644 --- a/docs/qt-gpl-exception-1.0.html +++ b/docs/qt-gpl-exception-1.0.html @@ -154,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qt-gpl-exception-1.0.json b/docs/qt-gpl-exception-1.0.json index 3fefd4ac72..cf67f54cb4 100644 --- a/docs/qt-gpl-exception-1.0.json +++ b/docs/qt-gpl-exception-1.0.json @@ -1 +1,10 @@ -{"key": "qt-gpl-exception-1.0", "short_name": "Qt GPL exception 1.0", "name": "Qt GPL exception 1.0", "category": "Copyleft Limited", "owner": "Qt Company", "homepage_url": "http://code.qt.io/cgit/qt/qtbase.git/tree/LICENSE.GPL3-EXCEPT", "is_exception": true, "spdx_license_key": "Qt-GPL-exception-1.0"} \ No newline at end of file +{ + "key": "qt-gpl-exception-1.0", + "short_name": "Qt GPL exception 1.0", + "name": "Qt GPL exception 1.0", + "category": "Copyleft Limited", + "owner": "Qt Company", + "homepage_url": "http://code.qt.io/cgit/qt/qtbase.git/tree/LICENSE.GPL3-EXCEPT", + "is_exception": true, + "spdx_license_key": "Qt-GPL-exception-1.0" +} \ No newline at end of file diff --git a/docs/qt-kde-linking-exception.LICENSE b/docs/qt-kde-linking-exception.LICENSE index 36b03c1907..3705623e37 100644 --- a/docs/qt-kde-linking-exception.LICENSE +++ b/docs/qt-kde-linking-exception.LICENSE @@ -1,3 +1,30 @@ +--- +key: qt-kde-linking-exception +short_name: Qt LInking Exception to GPL 2.0 or later +name: Qt LInking Exception to GPL 2.0 or later +category: Copyleft Limited +owner: KDE Project +is_exception: yes +spdx_license_key: LicenseRef-scancode-qt-kde-linking-exception +other_urls: + - https://download.kde.org/stable/applications/18.04.0/src/eventviews-18.04.0.tar.xz +standard_notice: | + 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 2 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, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception, permission is given to link this program + with any edition of Qt, and distribute the resulting executable, + without including the source code for Qt in the source distribution. +--- + As a special exception, permission is given to link this program with any edition of Qt, and distribute the resulting executable, without including the source code for Qt in the source distribution. \ No newline at end of file diff --git a/docs/qt-kde-linking-exception.html b/docs/qt-kde-linking-exception.html index 23b3596a1e..59fda36001 100644 --- a/docs/qt-kde-linking-exception.html +++ b/docs/qt-kde-linking-exception.html @@ -159,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qt-kde-linking-exception.json b/docs/qt-kde-linking-exception.json index 524af6cc98..adac987cb8 100644 --- a/docs/qt-kde-linking-exception.json +++ b/docs/qt-kde-linking-exception.json @@ -1 +1,13 @@ -{"key": "qt-kde-linking-exception", "short_name": "Qt LInking Exception to GPL 2.0 or later", "name": "Qt LInking Exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "KDE Project", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-qt-kde-linking-exception", "other_urls": ["https://download.kde.org/stable/applications/18.04.0/src/eventviews-18.04.0.tar.xz"], "standard_notice": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License along\nwith this program; if not, write to the Free Software Foundation, Inc.,\n51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nAs a special exception, permission is given to link this program\nwith any edition of Qt, and distribute the resulting executable,\nwithout including the source code for Qt in the source distribution.\n"} \ No newline at end of file +{ + "key": "qt-kde-linking-exception", + "short_name": "Qt LInking Exception to GPL 2.0 or later", + "name": "Qt LInking Exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "KDE Project", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-qt-kde-linking-exception", + "other_urls": [ + "https://download.kde.org/stable/applications/18.04.0/src/eventviews-18.04.0.tar.xz" + ], + "standard_notice": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License along\nwith this program; if not, write to the Free Software Foundation, Inc.,\n51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nAs a special exception, permission is given to link this program\nwith any edition of Qt, and distribute the resulting executable,\nwithout including the source code for Qt in the source distribution.\n" +} \ No newline at end of file diff --git a/docs/qt-lgpl-exception-1.1.LICENSE b/docs/qt-lgpl-exception-1.1.LICENSE index 10c639d379..12c564e957 100644 --- a/docs/qt-lgpl-exception-1.1.LICENSE +++ b/docs/qt-lgpl-exception-1.1.LICENSE @@ -1,3 +1,16 @@ +--- +key: qt-lgpl-exception-1.1 +short_name: Qt LGPL exception 1.1 +name: Qt LGPL exception 1.1 +category: Copyleft Limited +owner: Qt Company +homepage_url: http://code.qt.io/cgit/qt/qtbase.git/tree/LGPL_EXCEPTION.txt +is_exception: yes +spdx_license_key: Qt-LGPL-exception-1.1 +other_spdx_license_keys: + - Nokia-Qt-exception-1.1 +--- + The Qt Company Qt LGPL Exception version 1.1 As an additional permission to the GNU Lesser General Public License version diff --git a/docs/qt-lgpl-exception-1.1.html b/docs/qt-lgpl-exception-1.1.html index 743c1a39cf..05f0adeaf5 100644 --- a/docs/qt-lgpl-exception-1.1.html +++ b/docs/qt-lgpl-exception-1.1.html @@ -164,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qt-lgpl-exception-1.1.json b/docs/qt-lgpl-exception-1.1.json index 86573d7575..e1638ffc77 100644 --- a/docs/qt-lgpl-exception-1.1.json +++ b/docs/qt-lgpl-exception-1.1.json @@ -1 +1,13 @@ -{"key": "qt-lgpl-exception-1.1", "short_name": "Qt LGPL exception 1.1", "name": "Qt LGPL exception 1.1", "category": "Copyleft Limited", "owner": "Qt Company", "homepage_url": "http://code.qt.io/cgit/qt/qtbase.git/tree/LGPL_EXCEPTION.txt", "is_exception": true, "spdx_license_key": "Qt-LGPL-exception-1.1", "other_spdx_license_keys": ["Nokia-Qt-exception-1.1"]} \ No newline at end of file +{ + "key": "qt-lgpl-exception-1.1", + "short_name": "Qt LGPL exception 1.1", + "name": "Qt LGPL exception 1.1", + "category": "Copyleft Limited", + "owner": "Qt Company", + "homepage_url": "http://code.qt.io/cgit/qt/qtbase.git/tree/LGPL_EXCEPTION.txt", + "is_exception": true, + "spdx_license_key": "Qt-LGPL-exception-1.1", + "other_spdx_license_keys": [ + "Nokia-Qt-exception-1.1" + ] +} \ No newline at end of file diff --git a/docs/qt-qca-exception-2.0.LICENSE b/docs/qt-qca-exception-2.0.LICENSE index da6dd3e6d6..8b2c6e4413 100644 --- a/docs/qt-qca-exception-2.0.LICENSE +++ b/docs/qt-qca-exception-2.0.LICENSE @@ -1,3 +1,38 @@ +--- +key: qt-qca-exception-2.0 +short_name: Qt-QCA exception to GPL 2.0 +name: Qt-QCA exception to GPL 2.0 +category: Copyleft Limited +owner: Psi Project +is_exception: yes +spdx_license_key: LicenseRef-scancode-qt-qca-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://downloads.sourceforge.net/psi/psi-0.15.tar.bz2 +standard_notice: | + This library 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, version 2. + 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception, the copyright holder(s) give permission to link + this program with the Qt Library (commercial or non-commercial edition), + and distribute the resulting executable, without including the source + code for the Qt library in the source distribution. + As a special exception, the copyright holder(s) give permission to link + this program with any other library, and distribute the resulting + executable, without including the source code for the library in the + source distribution, provided that the library interfaces with this + program only via the following plugin interfaces: + 1. The Qt Plugin APIs, only as authored by Trolltech + 2. The QCA Plugin API, only as authored by Justin Karneges +--- + As a special exception, the copyright holder(s) give permission to link this program with the Qt Library (commercial or non-commercial edition), and distribute the resulting executable, without including the source diff --git a/docs/qt-qca-exception-2.0.html b/docs/qt-qca-exception-2.0.html index ef5ae0d158..6801f5ed35 100644 --- a/docs/qt-qca-exception-2.0.html +++ b/docs/qt-qca-exception-2.0.html @@ -176,7 +176,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qt-qca-exception-2.0.json b/docs/qt-qca-exception-2.0.json index d5a5254dea..f25b1b490b 100644 --- a/docs/qt-qca-exception-2.0.json +++ b/docs/qt-qca-exception-2.0.json @@ -1 +1,14 @@ -{"key": "qt-qca-exception-2.0", "short_name": "Qt-QCA exception to GPL 2.0", "name": "Qt-QCA exception to GPL 2.0", "category": "Copyleft Limited", "owner": "Psi Project", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-qt-qca-exception-2.0", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt", "http://downloads.sourceforge.net/psi/psi-0.15.tar.bz2"], "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation, version 2.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nAs a special exception, the copyright holder(s) give permission to link\nthis program with the Qt Library (commercial or non-commercial edition),\nand distribute the resulting executable, without including the source\ncode for the Qt library in the source distribution.\nAs a special exception, the copyright holder(s) give permission to link\nthis program with any other library, and distribute the resulting\nexecutable, without including the source code for the library in the\nsource distribution, provided that the library interfaces with this\nprogram only via the following plugin interfaces:\n1. The Qt Plugin APIs, only as authored by Trolltech\n2. The QCA Plugin API, only as authored by Justin Karneges\n"} \ No newline at end of file +{ + "key": "qt-qca-exception-2.0", + "short_name": "Qt-QCA exception to GPL 2.0", + "name": "Qt-QCA exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "Psi Project", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-qt-qca-exception-2.0", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt", + "http://downloads.sourceforge.net/psi/psi-0.15.tar.bz2" + ], + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation, version 2.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nAs a special exception, the copyright holder(s) give permission to link\nthis program with the Qt Library (commercial or non-commercial edition),\nand distribute the resulting executable, without including the source\ncode for the Qt library in the source distribution.\nAs a special exception, the copyright holder(s) give permission to link\nthis program with any other library, and distribute the resulting\nexecutable, without including the source code for the library in the\nsource distribution, provided that the library interfaces with this\nprogram only via the following plugin interfaces:\n1. The Qt Plugin APIs, only as authored by Trolltech\n2. The QCA Plugin API, only as authored by Justin Karneges\n" +} \ No newline at end of file diff --git a/docs/qti-linux-firmware.LICENSE b/docs/qti-linux-firmware.LICENSE index ba9ce3449d..dc27caf149 100644 --- a/docs/qti-linux-firmware.LICENSE +++ b/docs/qti-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: qti-linux-firmware +short_name: QTI Linux Firmware +name: QTI Linux Firmware +category: Proprietary Free +owner: Qualcomm +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.qcom +spdx_license_key: LicenseRef-scancode-qti-linux-firmware +--- + PLEASE READ THIS LICENSE AGREEMENT ("AGREEMENT") CAREFULLY. THIS AGREEMENT IS A BINDING LEGAL AGREEMENT ENTERED INTO BY AND BETWEEN YOU (OR IF YOU ARE ENTERING INTO THIS AGREEMENT ON BEHALF OF AN ENTITY, THEN THE ENTITY THAT YOU diff --git a/docs/qti-linux-firmware.html b/docs/qti-linux-firmware.html index e9266cb7f4..d2a6753a4c 100644 --- a/docs/qti-linux-firmware.html +++ b/docs/qti-linux-firmware.html @@ -332,7 +332,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qti-linux-firmware.json b/docs/qti-linux-firmware.json index ef58a915da..f2dfdc9085 100644 --- a/docs/qti-linux-firmware.json +++ b/docs/qti-linux-firmware.json @@ -1 +1,9 @@ -{"key": "qti-linux-firmware", "short_name": "QTI Linux Firmware", "name": "QTI Linux Firmware", "category": "Proprietary Free", "owner": "Qualcomm", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.qcom", "spdx_license_key": "LicenseRef-scancode-qti-linux-firmware"} \ No newline at end of file +{ + "key": "qti-linux-firmware", + "short_name": "QTI Linux Firmware", + "name": "QTI Linux Firmware", + "category": "Proprietary Free", + "owner": "Qualcomm", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.qcom", + "spdx_license_key": "LicenseRef-scancode-qti-linux-firmware" +} \ No newline at end of file diff --git a/docs/qualcomm-iso.LICENSE b/docs/qualcomm-iso.LICENSE index a9ad32be6e..5d1a6552bb 100644 --- a/docs/qualcomm-iso.LICENSE +++ b/docs/qualcomm-iso.LICENSE @@ -1,3 +1,20 @@ +--- +key: qualcomm-iso +short_name: Qualcomm ISO/IEC MPEG-B DASH License +name: Qualcomm ISO/IEC MPEG-B DASH License +category: Free Restricted +owner: Qualcomm +spdx_license_key: LicenseRef-scancode-qualcomm-iso +other_urls: + - https://www.iso.org/standard/65274.html +ignorable_copyrights: + - Copyright (c) ISO/IEC 2010 +ignorable_holders: + - ISO/IEC +ignorable_authors: + - Qualcomm, Inc. +--- + This software module was originally developed by Qualcomm, Inc. in the course of development of the ISO/IEC MPEG-B DASH standard for reference purposes and its performance may not have been optimized. diff --git a/docs/qualcomm-iso.html b/docs/qualcomm-iso.html index 59da072a26..0f08421b5e 100644 --- a/docs/qualcomm-iso.html +++ b/docs/qualcomm-iso.html @@ -185,7 +185,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qualcomm-iso.json b/docs/qualcomm-iso.json index 956b298a44..073642f39f 100644 --- a/docs/qualcomm-iso.json +++ b/docs/qualcomm-iso.json @@ -1 +1,20 @@ -{"key": "qualcomm-iso", "short_name": "Qualcomm ISO/IEC MPEG-B DASH License", "name": "Qualcomm ISO/IEC MPEG-B DASH License", "category": "Free Restricted", "owner": "Qualcomm", "spdx_license_key": "LicenseRef-scancode-qualcomm-iso", "other_urls": ["https://www.iso.org/standard/65274.html"], "ignorable_copyrights": ["Copyright (c) ISO/IEC 2010"], "ignorable_holders": ["ISO/IEC"], "ignorable_authors": ["Qualcomm, Inc."]} \ No newline at end of file +{ + "key": "qualcomm-iso", + "short_name": "Qualcomm ISO/IEC MPEG-B DASH License", + "name": "Qualcomm ISO/IEC MPEG-B DASH License", + "category": "Free Restricted", + "owner": "Qualcomm", + "spdx_license_key": "LicenseRef-scancode-qualcomm-iso", + "other_urls": [ + "https://www.iso.org/standard/65274.html" + ], + "ignorable_copyrights": [ + "Copyright (c) ISO/IEC 2010" + ], + "ignorable_holders": [ + "ISO/IEC" + ], + "ignorable_authors": [ + "Qualcomm, Inc." + ] +} \ No newline at end of file diff --git a/docs/qualcomm-turing.LICENSE b/docs/qualcomm-turing.LICENSE index 600b776480..f6c89fa807 100644 --- a/docs/qualcomm-turing.LICENSE +++ b/docs/qualcomm-turing.LICENSE @@ -1,3 +1,17 @@ +--- +key: qualcomm-turing +short_name: Qualcomm Turing License +name: Qualcomm Turing License +category: Permissive +owner: Qualcomm +homepage_url: https://github.com/arantius/tivodecode/blob/master/Turing.h +spdx_license_key: LicenseRef-scancode-qualcomm-turing +text_urls: + - https://github.com/arantius/tivodecode/blob/master/Turing.h +ignorable_authors: + - QUALCOMM Incorporated +--- + This software is free for commercial and non-commercial use subject to the following conditions: diff --git a/docs/qualcomm-turing.html b/docs/qualcomm-turing.html index 4527270f41..258d98edbf 100644 --- a/docs/qualcomm-turing.html +++ b/docs/qualcomm-turing.html @@ -195,7 +195,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qualcomm-turing.json b/docs/qualcomm-turing.json index 67cfd36337..a3d943cab1 100644 --- a/docs/qualcomm-turing.json +++ b/docs/qualcomm-turing.json @@ -1 +1,15 @@ -{"key": "qualcomm-turing", "short_name": "Qualcomm Turing License", "name": "Qualcomm Turing License", "category": "Permissive", "owner": "Qualcomm", "homepage_url": "https://github.com/arantius/tivodecode/blob/master/Turing.h", "spdx_license_key": "LicenseRef-scancode-qualcomm-turing", "text_urls": ["https://github.com/arantius/tivodecode/blob/master/Turing.h"], "ignorable_authors": ["QUALCOMM Incorporated"]} \ No newline at end of file +{ + "key": "qualcomm-turing", + "short_name": "Qualcomm Turing License", + "name": "Qualcomm Turing License", + "category": "Permissive", + "owner": "Qualcomm", + "homepage_url": "https://github.com/arantius/tivodecode/blob/master/Turing.h", + "spdx_license_key": "LicenseRef-scancode-qualcomm-turing", + "text_urls": [ + "https://github.com/arantius/tivodecode/blob/master/Turing.h" + ], + "ignorable_authors": [ + "QUALCOMM Incorporated" + ] +} \ No newline at end of file diff --git a/docs/quickfix-1.0.LICENSE b/docs/quickfix-1.0.LICENSE index 9954d92844..88fa1d28a7 100644 --- a/docs/quickfix-1.0.LICENSE +++ b/docs/quickfix-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: quickfix-1.0 +short_name: QuickFix 1.0 +name: The QuickFIX Software License, Version 1.0 +category: Permissive +owner: QuickFix Project +homepage_url: https://www.quickfixj.org/documentation/license.html +spdx_license_key: LicenseRef-scancode-quickfix-1.0 +ignorable_authors: + - quickfixengine.org (http://www.quickfixengine.org/) +ignorable_urls: + - http://www.quickfixengine.org/ +ignorable_emails: + - ask@quickfixengine.org +--- + The QuickFIX Software License, Version 1.0 Redistribution and use in source and binary forms, with or without diff --git a/docs/quickfix-1.0.html b/docs/quickfix-1.0.html index bc54fa0b38..3479dfb6f9 100644 --- a/docs/quickfix-1.0.html +++ b/docs/quickfix-1.0.html @@ -195,7 +195,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/quickfix-1.0.json b/docs/quickfix-1.0.json index 643a7797bb..6aaf248f19 100644 --- a/docs/quickfix-1.0.json +++ b/docs/quickfix-1.0.json @@ -1 +1,18 @@ -{"key": "quickfix-1.0", "short_name": "QuickFix 1.0", "name": "The QuickFIX Software License, Version 1.0", "category": "Permissive", "owner": "QuickFix Project", "homepage_url": "https://www.quickfixj.org/documentation/license.html", "spdx_license_key": "LicenseRef-scancode-quickfix-1.0", "ignorable_authors": ["quickfixengine.org (http://www.quickfixengine.org/)"], "ignorable_urls": ["http://www.quickfixengine.org/"], "ignorable_emails": ["ask@quickfixengine.org"]} \ No newline at end of file +{ + "key": "quickfix-1.0", + "short_name": "QuickFix 1.0", + "name": "The QuickFIX Software License, Version 1.0", + "category": "Permissive", + "owner": "QuickFix Project", + "homepage_url": "https://www.quickfixj.org/documentation/license.html", + "spdx_license_key": "LicenseRef-scancode-quickfix-1.0", + "ignorable_authors": [ + "quickfixengine.org (http://www.quickfixengine.org/)" + ], + "ignorable_urls": [ + "http://www.quickfixengine.org/" + ], + "ignorable_emails": [ + "ask@quickfixengine.org" + ] +} \ No newline at end of file diff --git a/docs/quicktime.LICENSE b/docs/quicktime.LICENSE index 6412d9d52a..bb3bb6af8a 100644 --- a/docs/quicktime.LICENSE +++ b/docs/quicktime.LICENSE @@ -1,3 +1,15 @@ +--- +key: quicktime +short_name: Apple Quicktime License +name: Apple Quicktime License +category: Proprietary Free +owner: Apple +homepage_url: http://store.apple.com/Catalog/US/Images/quicktime.html +spdx_license_key: LicenseRef-scancode-quicktime +ignorable_urls: + - http://www.mpegla.com/ +--- + Apple Computer, Inc. Software License Agreement For QuickTime diff --git a/docs/quicktime.html b/docs/quicktime.html index 433fb2148f..d91b2631c9 100644 --- a/docs/quicktime.html +++ b/docs/quicktime.html @@ -184,7 +184,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/quicktime.json b/docs/quicktime.json index ce24231d30..30cc21e116 100644 --- a/docs/quicktime.json +++ b/docs/quicktime.json @@ -1 +1,12 @@ -{"key": "quicktime", "short_name": "Apple Quicktime License", "name": "Apple Quicktime License", "category": "Proprietary Free", "owner": "Apple", "homepage_url": "http://store.apple.com/Catalog/US/Images/quicktime.html", "spdx_license_key": "LicenseRef-scancode-quicktime", "ignorable_urls": ["http://www.mpegla.com/"]} \ No newline at end of file +{ + "key": "quicktime", + "short_name": "Apple Quicktime License", + "name": "Apple Quicktime License", + "category": "Proprietary Free", + "owner": "Apple", + "homepage_url": "http://store.apple.com/Catalog/US/Images/quicktime.html", + "spdx_license_key": "LicenseRef-scancode-quicktime", + "ignorable_urls": [ + "http://www.mpegla.com/" + ] +} \ No newline at end of file diff --git a/docs/quin-street.LICENSE b/docs/quin-street.LICENSE index af35c62c61..397b911288 100644 --- a/docs/quin-street.LICENSE +++ b/docs/quin-street.LICENSE @@ -1,3 +1,25 @@ +--- +key: quin-street +short_name: QuinStreet License +name: QuinStreet License +category: Proprietary Free +owner: QuinStreet +homepage_url: http://www.codeguru.com/licensing.html +spdx_license_key: LicenseRef-scancode-quin-street +text_urls: + - http://www.codeguru.com/licensing.html + - http://www.freevbcode.com/licensing +other_urls: + - http://www.codeguru.com/cpp/controls/listview/article.php/c4189/Creating-a-CListCtrl-Class-with-Item-Style-Features-CListCtrlStyled-Class.htm + - http://www.codeguru.com/submission-guidelines.php#permission +ignorable_copyrights: + - Copyright 1999-2014 QuinStreet, Inc. +ignorable_holders: + - QuinStreet, Inc. +ignorable_emails: + - copyrightagent@quinstreet.com +--- + Content Licensing Linking to Our Content diff --git a/docs/quin-street.html b/docs/quin-street.html index 958aedce1b..fddd743ec2 100644 --- a/docs/quin-street.html +++ b/docs/quin-street.html @@ -202,7 +202,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/quin-street.json b/docs/quin-street.json index 7f5286d909..607506b682 100644 --- a/docs/quin-street.json +++ b/docs/quin-street.json @@ -1 +1,26 @@ -{"key": "quin-street", "short_name": "QuinStreet License", "name": "QuinStreet License", "category": "Proprietary Free", "owner": "QuinStreet", "homepage_url": "http://www.codeguru.com/licensing.html", "spdx_license_key": "LicenseRef-scancode-quin-street", "text_urls": ["http://www.codeguru.com/licensing.html", "http://www.freevbcode.com/licensing"], "other_urls": ["http://www.codeguru.com/cpp/controls/listview/article.php/c4189/Creating-a-CListCtrl-Class-with-Item-Style-Features-CListCtrlStyled-Class.htm", "http://www.codeguru.com/submission-guidelines.php#permission"], "ignorable_copyrights": ["Copyright 1999-2014 QuinStreet, Inc."], "ignorable_holders": ["QuinStreet, Inc."], "ignorable_emails": ["copyrightagent@quinstreet.com"]} \ No newline at end of file +{ + "key": "quin-street", + "short_name": "QuinStreet License", + "name": "QuinStreet License", + "category": "Proprietary Free", + "owner": "QuinStreet", + "homepage_url": "http://www.codeguru.com/licensing.html", + "spdx_license_key": "LicenseRef-scancode-quin-street", + "text_urls": [ + "http://www.codeguru.com/licensing.html", + "http://www.freevbcode.com/licensing" + ], + "other_urls": [ + "http://www.codeguru.com/cpp/controls/listview/article.php/c4189/Creating-a-CListCtrl-Class-with-Item-Style-Features-CListCtrlStyled-Class.htm", + "http://www.codeguru.com/submission-guidelines.php#permission" + ], + "ignorable_copyrights": [ + "Copyright 1999-2014 QuinStreet, Inc." + ], + "ignorable_holders": [ + "QuinStreet, Inc." + ], + "ignorable_emails": [ + "copyrightagent@quinstreet.com" + ] +} \ No newline at end of file diff --git a/docs/quirksmode.LICENSE b/docs/quirksmode.LICENSE index 39b252d5f5..714f850c7e 100644 --- a/docs/quirksmode.LICENSE +++ b/docs/quirksmode.LICENSE @@ -1,3 +1,16 @@ +--- +key: quirksmode +short_name: Quirksmode Copyright Notice +name: Quirksmode Copyright Notice +category: Permissive +owner: Quirksmode +homepage_url: http://www.quirksmode.org/about/copyright.html +spdx_license_key: LicenseRef-scancode-quirksmode +ignorable_urls: + - http://www.quirksmode.org/ + - http://www.quirksmode.org/about/copyright.html +--- + Quirksmode Copyright Notice http://www.quirksmode.org/about/copyright.html diff --git a/docs/quirksmode.html b/docs/quirksmode.html index 23bd68a000..a0a0c783a2 100644 --- a/docs/quirksmode.html +++ b/docs/quirksmode.html @@ -153,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/quirksmode.json b/docs/quirksmode.json index e6edd51d64..ca4ca35f49 100644 --- a/docs/quirksmode.json +++ b/docs/quirksmode.json @@ -1 +1,13 @@ -{"key": "quirksmode", "short_name": "Quirksmode Copyright Notice", "name": "Quirksmode Copyright Notice", "category": "Permissive", "owner": "Quirksmode", "homepage_url": "http://www.quirksmode.org/about/copyright.html", "spdx_license_key": "LicenseRef-scancode-quirksmode", "ignorable_urls": ["http://www.quirksmode.org/", "http://www.quirksmode.org/about/copyright.html"]} \ No newline at end of file +{ + "key": "quirksmode", + "short_name": "Quirksmode Copyright Notice", + "name": "Quirksmode Copyright Notice", + "category": "Permissive", + "owner": "Quirksmode", + "homepage_url": "http://www.quirksmode.org/about/copyright.html", + "spdx_license_key": "LicenseRef-scancode-quirksmode", + "ignorable_urls": [ + "http://www.quirksmode.org/", + "http://www.quirksmode.org/about/copyright.html" + ] +} \ No newline at end of file diff --git a/docs/qwt-1.0.LICENSE b/docs/qwt-1.0.LICENSE index 6fca4a7f72..fa07e71902 100644 --- a/docs/qwt-1.0.LICENSE +++ b/docs/qwt-1.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: qwt-1.0 +is_deprecated: yes +short_name: Qwt License 1.0 Deprecated +name: Qwt License 1.0 Deprecated +category: Copyleft Limited +owner: Qwt Project +homepage_url: http://qwt.sourceforge.net/qwtlicense.html +notes: replaced by qwt-exception-1.0 +--- + Qwt License Version 1.0, January 1, 2003 The Qwt library and included programs are provided under the terms diff --git a/docs/qwt-1.0.html b/docs/qwt-1.0.html index 695a8988f8..56a06636f6 100644 --- a/docs/qwt-1.0.html +++ b/docs/qwt-1.0.html @@ -582,7 +582,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qwt-1.0.json b/docs/qwt-1.0.json index f219aede4d..58382af043 100644 --- a/docs/qwt-1.0.json +++ b/docs/qwt-1.0.json @@ -1 +1,10 @@ -{"key": "qwt-1.0", "is_deprecated": true, "short_name": "Qwt License 1.0 Deprecated", "name": "Qwt License 1.0 Deprecated", "category": "Copyleft Limited", "owner": "Qwt Project", "homepage_url": "http://qwt.sourceforge.net/qwtlicense.html", "notes": "replaced by qwt-exception-1.0"} \ No newline at end of file +{ + "key": "qwt-1.0", + "is_deprecated": true, + "short_name": "Qwt License 1.0 Deprecated", + "name": "Qwt License 1.0 Deprecated", + "category": "Copyleft Limited", + "owner": "Qwt Project", + "homepage_url": "http://qwt.sourceforge.net/qwtlicense.html", + "notes": "replaced by qwt-exception-1.0" +} \ No newline at end of file diff --git a/docs/qwt-exception-1.0.LICENSE b/docs/qwt-exception-1.0.LICENSE index 1715c10f70..5a71b4428f 100644 --- a/docs/qwt-exception-1.0.LICENSE +++ b/docs/qwt-exception-1.0.LICENSE @@ -1,3 +1,46 @@ +--- +key: qwt-exception-1.0 +short_name: Qwt exception to LGPL 2.1 +name: Qwt exception to LGPL 2.1 +category: Copyleft Limited +owner: Qwt Project +homepage_url: http://qwt.sourceforge.net/qwtlicense.html +is_exception: yes +spdx_license_key: Qwt-exception-1.0 +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +standard_notice: | + Qwt License + Version 1.0, January 1, 2003 + The Qwt library and included programs are provided under the terms + of the GNU LESSER GENERAL PUBLIC LICENSE (LGPL) with the following + exceptions: + 1. Widgets that are subclassed from Qwt widgets do not + constitute a derivative work. + 2. Static linking of applications and widgets to the + Qwt library does not constitute a derivative work + and does not require the author to provide source + code for the application or widget, use the shared + Qwt libraries, or link their applications or + widgets against a user-supplied version of Qwt. + If you link the application or widget to a modified + version of Qwt, then the changes to Qwt must be + provided under the terms of the LGPL in sections + 1, 2, and 4. + 3. You do not have to provide a copy of the Qwt license + with programs that are linked to the Qwt library, nor + do you have to identify the Qwt license in your + program or documentation as required by section 6 + of the LGPL. + However, programs must still identify their use of Qwt. + The following example statement can be included in user + documentation to satisfy this requirement: + [program/widget] is based in part on the work of + the Qwt project (http://qwt.sf.net). +ignorable_urls: + - http://qwt.sf.net/ +--- + Qwt License Version 1.0, January 1, 2003 The Qwt library and included programs are provided under the terms diff --git a/docs/qwt-exception-1.0.html b/docs/qwt-exception-1.0.html index 7f1616c5a6..7f185f93ab 100644 --- a/docs/qwt-exception-1.0.html +++ b/docs/qwt-exception-1.0.html @@ -215,7 +215,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/qwt-exception-1.0.json b/docs/qwt-exception-1.0.json index 4f3a448c18..9a7f118dc7 100644 --- a/docs/qwt-exception-1.0.json +++ b/docs/qwt-exception-1.0.json @@ -1 +1,17 @@ -{"key": "qwt-exception-1.0", "short_name": "Qwt exception to LGPL 2.1", "name": "Qwt exception to LGPL 2.1", "category": "Copyleft Limited", "owner": "Qwt Project", "homepage_url": "http://qwt.sourceforge.net/qwtlicense.html", "is_exception": true, "spdx_license_key": "Qwt-exception-1.0", "other_urls": ["http://www.gnu.org/licenses/lgpl-2.1.txt"], "standard_notice": "Qwt License\nVersion 1.0, January 1, 2003\nThe Qwt library and included programs are provided under the terms\nof the GNU LESSER GENERAL PUBLIC LICENSE (LGPL) with the following\nexceptions:\n1. Widgets that are subclassed from Qwt widgets do not\nconstitute a derivative work.\n2. Static linking of applications and widgets to the\nQwt library does not constitute a derivative work\nand does not require the author to provide source\ncode for the application or widget, use the shared\nQwt libraries, or link their applications or\nwidgets against a user-supplied version of Qwt.\nIf you link the application or widget to a modified\nversion of Qwt, then the changes to Qwt must be\nprovided under the terms of the LGPL in sections\n1, 2, and 4.\n3. You do not have to provide a copy of the Qwt license\nwith programs that are linked to the Qwt library, nor\ndo you have to identify the Qwt license in your\nprogram or documentation as required by section 6\nof the LGPL.\nHowever, programs must still identify their use of Qwt.\nThe following example statement can be included in user\ndocumentation to satisfy this requirement:\n[program/widget] is based in part on the work of\nthe Qwt project (http://qwt.sf.net).\n", "ignorable_urls": ["http://qwt.sf.net/"]} \ No newline at end of file +{ + "key": "qwt-exception-1.0", + "short_name": "Qwt exception to LGPL 2.1", + "name": "Qwt exception to LGPL 2.1", + "category": "Copyleft Limited", + "owner": "Qwt Project", + "homepage_url": "http://qwt.sourceforge.net/qwtlicense.html", + "is_exception": true, + "spdx_license_key": "Qwt-exception-1.0", + "other_urls": [ + "http://www.gnu.org/licenses/lgpl-2.1.txt" + ], + "standard_notice": "Qwt License\nVersion 1.0, January 1, 2003\nThe Qwt library and included programs are provided under the terms\nof the GNU LESSER GENERAL PUBLIC LICENSE (LGPL) with the following\nexceptions:\n1. Widgets that are subclassed from Qwt widgets do not\nconstitute a derivative work.\n2. Static linking of applications and widgets to the\nQwt library does not constitute a derivative work\nand does not require the author to provide source\ncode for the application or widget, use the shared\nQwt libraries, or link their applications or\nwidgets against a user-supplied version of Qwt.\nIf you link the application or widget to a modified\nversion of Qwt, then the changes to Qwt must be\nprovided under the terms of the LGPL in sections\n1, 2, and 4.\n3. You do not have to provide a copy of the Qwt license\nwith programs that are linked to the Qwt library, nor\ndo you have to identify the Qwt license in your\nprogram or documentation as required by section 6\nof the LGPL.\nHowever, programs must still identify their use of Qwt.\nThe following example statement can be included in user\ndocumentation to satisfy this requirement:\n[program/widget] is based in part on the work of\nthe Qwt project (http://qwt.sf.net).\n", + "ignorable_urls": [ + "http://qwt.sf.net/" + ] +} \ No newline at end of file diff --git a/docs/rackspace.LICENSE b/docs/rackspace.LICENSE index a72adf828e..74e2a478ae 100644 --- a/docs/rackspace.LICENSE +++ b/docs/rackspace.LICENSE @@ -1,3 +1,12 @@ +--- +key: rackspace +short_name: Rackspace License +name: Rackspace License +category: Free Restricted +owner: Rackspace +spdx_license_key: LicenseRef-scancode-rackspace +--- + Subject to the terms of this notice, Rackspace, Inc. grants you a nonexclusive, nontransferable license, without the right to sublicense, to (a) install and execute one copy of these files on any diff --git a/docs/rackspace.html b/docs/rackspace.html index 763d7747af..6dec5f447a 100644 --- a/docs/rackspace.html +++ b/docs/rackspace.html @@ -150,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rackspace.json b/docs/rackspace.json index 7a71be527b..35c57d9f25 100644 --- a/docs/rackspace.json +++ b/docs/rackspace.json @@ -1 +1,8 @@ -{"key": "rackspace", "short_name": "Rackspace License", "name": "Rackspace License", "category": "Free Restricted", "owner": "Rackspace", "spdx_license_key": "LicenseRef-scancode-rackspace"} \ No newline at end of file +{ + "key": "rackspace", + "short_name": "Rackspace License", + "name": "Rackspace License", + "category": "Free Restricted", + "owner": "Rackspace", + "spdx_license_key": "LicenseRef-scancode-rackspace" +} \ No newline at end of file diff --git a/docs/radvd.LICENSE b/docs/radvd.LICENSE index acf7dba504..9f2e3c6354 100644 --- a/docs/radvd.LICENSE +++ b/docs/radvd.LICENSE @@ -1,3 +1,17 @@ +--- +key: radvd +short_name: radvd License +name: radvd License +category: Permissive +owner: Unspecified +homepage_url: https://github.com/reubenhwk/radvd/blob/master/COPYRIGHT +spdx_license_key: LicenseRef-scancode-radvd +other_urls: + - http://www.litech.org/radvd/ + - https://github.com/radvd-project/radvd/blob/d3cc8882cb0a527d7abe986dff0228a0bc0b3f00/COPYRIGHT +minimum_coverage: 60 +--- + The author(s) grant permission for redistribution and use in source and binary forms, with or without modification, of the software and documentation provided that the following conditions are met: diff --git a/docs/radvd.html b/docs/radvd.html index 6e5717cd23..e124d95b3f 100644 --- a/docs/radvd.html +++ b/docs/radvd.html @@ -179,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/radvd.json b/docs/radvd.json index 03ed0b39ec..1b36d2c129 100644 --- a/docs/radvd.json +++ b/docs/radvd.json @@ -1 +1,14 @@ -{"key": "radvd", "short_name": "radvd License", "name": "radvd License", "category": "Permissive", "owner": "Unspecified", "homepage_url": "https://github.com/reubenhwk/radvd/blob/master/COPYRIGHT", "spdx_license_key": "LicenseRef-scancode-radvd", "other_urls": ["http://www.litech.org/radvd/", "https://github.com/radvd-project/radvd/blob/d3cc8882cb0a527d7abe986dff0228a0bc0b3f00/COPYRIGHT"], "minimum_coverage": 60} \ No newline at end of file +{ + "key": "radvd", + "short_name": "radvd License", + "name": "radvd License", + "category": "Permissive", + "owner": "Unspecified", + "homepage_url": "https://github.com/reubenhwk/radvd/blob/master/COPYRIGHT", + "spdx_license_key": "LicenseRef-scancode-radvd", + "other_urls": [ + "http://www.litech.org/radvd/", + "https://github.com/radvd-project/radvd/blob/d3cc8882cb0a527d7abe986dff0228a0bc0b3f00/COPYRIGHT" + ], + "minimum_coverage": 60 +} \ No newline at end of file diff --git a/docs/ralf-corsepius.LICENSE b/docs/ralf-corsepius.LICENSE index f55a5a8216..0e8146036a 100644 --- a/docs/ralf-corsepius.LICENSE +++ b/docs/ralf-corsepius.LICENSE @@ -1,2 +1,11 @@ +--- +key: ralf-corsepius +is_deprecated: yes +short_name: Ralf Corsepius License +name: Ralf Corsepius License +category: Permissive +owner: Unspecified +--- + Permission to use, copy, modify, and distribute this software is freely granted, provided that this notice is preserved. \ No newline at end of file diff --git a/docs/ralf-corsepius.html b/docs/ralf-corsepius.html index 63e6b2241c..01329b762c 100644 --- a/docs/ralf-corsepius.html +++ b/docs/ralf-corsepius.html @@ -121,7 +121,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ralf-corsepius.json b/docs/ralf-corsepius.json index c27611d93c..97f0a6280d 100644 --- a/docs/ralf-corsepius.json +++ b/docs/ralf-corsepius.json @@ -1 +1,8 @@ -{"key": "ralf-corsepius", "is_deprecated": true, "short_name": "Ralf Corsepius License", "name": "Ralf Corsepius License", "category": "Permissive", "owner": "Unspecified"} \ No newline at end of file +{ + "key": "ralf-corsepius", + "is_deprecated": true, + "short_name": "Ralf Corsepius License", + "name": "Ralf Corsepius License", + "category": "Permissive", + "owner": "Unspecified" +} \ No newline at end of file diff --git a/docs/ralink-firmware.LICENSE b/docs/ralink-firmware.LICENSE index c2c819dc17..46065b28e5 100644 --- a/docs/ralink-firmware.LICENSE +++ b/docs/ralink-firmware.LICENSE @@ -1,3 +1,15 @@ +--- +key: ralink-firmware +short_name: Ralink Firmware License +name: Ralink Firmware License +category: Proprietary Free +owner: MediaTek +homepage_url: http://iotdk.intel.com/repos/3.0/licenses/linux-firmware/LICENCE.ralink-firmware.txt +spdx_license_key: LicenseRef-scancode-ralink-firmware +ignorable_urls: + - http://opensource.org/licenses +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/docs/ralink-firmware.html b/docs/ralink-firmware.html index 7df7e97909..d293689e37 100644 --- a/docs/ralink-firmware.html +++ b/docs/ralink-firmware.html @@ -174,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ralink-firmware.json b/docs/ralink-firmware.json index baa81a9a2b..e020e88aaf 100644 --- a/docs/ralink-firmware.json +++ b/docs/ralink-firmware.json @@ -1 +1,12 @@ -{"key": "ralink-firmware", "short_name": "Ralink Firmware License", "name": "Ralink Firmware License", "category": "Proprietary Free", "owner": "MediaTek", "homepage_url": "http://iotdk.intel.com/repos/3.0/licenses/linux-firmware/LICENCE.ralink-firmware.txt", "spdx_license_key": "LicenseRef-scancode-ralink-firmware", "ignorable_urls": ["http://opensource.org/licenses"]} \ No newline at end of file +{ + "key": "ralink-firmware", + "short_name": "Ralink Firmware License", + "name": "Ralink Firmware License", + "category": "Proprietary Free", + "owner": "MediaTek", + "homepage_url": "http://iotdk.intel.com/repos/3.0/licenses/linux-firmware/LICENCE.ralink-firmware.txt", + "spdx_license_key": "LicenseRef-scancode-ralink-firmware", + "ignorable_urls": [ + "http://opensource.org/licenses" + ] +} \ No newline at end of file diff --git a/docs/rar-winrar-eula.LICENSE b/docs/rar-winrar-eula.LICENSE index c85a240d38..fcbb84c650 100644 --- a/docs/rar-winrar-eula.LICENSE +++ b/docs/rar-winrar-eula.LICENSE @@ -1,3 +1,13 @@ +--- +key: rar-winrar-eula +short_name: RAR and WinRAR EULA +name: RAR and WinRAR EULA +category: Commercial +owner: RAR +homepage_url: http://www.win-rar.com/ +spdx_license_key: LicenseRef-scancode-rar-winrar-eula +--- + RAR and WinRAR END USER LICENSE AGREEMENT (EULA) The following agreement regarding RAR (and its Windows version - WinRAR) archiver - referred to as "software" - is made between win.rar GmbH - referred to as "licensor" - and anyone who is installing, accessing or in any other way using the software - referred to as "user". diff --git a/docs/rar-winrar-eula.html b/docs/rar-winrar-eula.html index a4a538e044..24ae6c3553 100644 --- a/docs/rar-winrar-eula.html +++ b/docs/rar-winrar-eula.html @@ -179,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rar-winrar-eula.json b/docs/rar-winrar-eula.json index 67ab649261..90e67b0942 100644 --- a/docs/rar-winrar-eula.json +++ b/docs/rar-winrar-eula.json @@ -1 +1,9 @@ -{"key": "rar-winrar-eula", "short_name": "RAR and WinRAR EULA", "name": "RAR and WinRAR EULA", "category": "Commercial", "owner": "RAR", "homepage_url": "http://www.win-rar.com/", "spdx_license_key": "LicenseRef-scancode-rar-winrar-eula"} \ No newline at end of file +{ + "key": "rar-winrar-eula", + "short_name": "RAR and WinRAR EULA", + "name": "RAR and WinRAR EULA", + "category": "Commercial", + "owner": "RAR", + "homepage_url": "http://www.win-rar.com/", + "spdx_license_key": "LicenseRef-scancode-rar-winrar-eula" +} \ No newline at end of file diff --git a/docs/rcsl-2.0.LICENSE b/docs/rcsl-2.0.LICENSE index caa2309344..eb099afd9b 100644 --- a/docs/rcsl-2.0.LICENSE +++ b/docs/rcsl-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: rcsl-2.0 +short_name: RCSL R&D 2.0 +name: RealNetworks Community Source License v2.0 +category: Proprietary Free +owner: RealNetworks +homepage_url: https://helixcommunity.org/content/rcsl +spdx_license_key: LicenseRef-scancode-rcsl-2.0 +text_urls: + - https://helixcommunity.org/content/rcsl +ignorable_urls: + - http://www.helixcommunity.org/ +ignorable_emails: + - press@helixcommunity.org +--- + REALNETWORKS COMMUNITY SOURCE LICENSE RESEARCH AND DEVELOPMENT USE (RCSL R&D) diff --git a/docs/rcsl-2.0.html b/docs/rcsl-2.0.html index 7ca91f69d9..284c71a2f1 100644 --- a/docs/rcsl-2.0.html +++ b/docs/rcsl-2.0.html @@ -345,7 +345,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rcsl-2.0.json b/docs/rcsl-2.0.json index 00d0805285..ce2dd34885 100644 --- a/docs/rcsl-2.0.json +++ b/docs/rcsl-2.0.json @@ -1 +1,18 @@ -{"key": "rcsl-2.0", "short_name": "RCSL R&D 2.0", "name": "RealNetworks Community Source License v2.0", "category": "Proprietary Free", "owner": "RealNetworks", "homepage_url": "https://helixcommunity.org/content/rcsl", "spdx_license_key": "LicenseRef-scancode-rcsl-2.0", "text_urls": ["https://helixcommunity.org/content/rcsl"], "ignorable_urls": ["http://www.helixcommunity.org/"], "ignorable_emails": ["press@helixcommunity.org"]} \ No newline at end of file +{ + "key": "rcsl-2.0", + "short_name": "RCSL R&D 2.0", + "name": "RealNetworks Community Source License v2.0", + "category": "Proprietary Free", + "owner": "RealNetworks", + "homepage_url": "https://helixcommunity.org/content/rcsl", + "spdx_license_key": "LicenseRef-scancode-rcsl-2.0", + "text_urls": [ + "https://helixcommunity.org/content/rcsl" + ], + "ignorable_urls": [ + "http://www.helixcommunity.org/" + ], + "ignorable_emails": [ + "press@helixcommunity.org" + ] +} \ No newline at end of file diff --git a/docs/rcsl-3.0.LICENSE b/docs/rcsl-3.0.LICENSE index aecceb6dc7..8fd411cda1 100644 --- a/docs/rcsl-3.0.LICENSE +++ b/docs/rcsl-3.0.LICENSE @@ -1,3 +1,25 @@ +--- +key: rcsl-3.0 +short_name: RCSL R&D 3.0 +name: RealNetworks Community Source License v3.0 +category: Proprietary Free +owner: RealNetworks +homepage_url: https://helixcommunity.org/content/rcsl +spdx_license_key: LicenseRef-scancode-rcsl-3.0 +other_urls: + - http://en.wikipedia.org/wiki/Helix_project + - http://en.wikipedia.org/wiki/RealNetworks_Community_Source_License +ignorable_copyrights: + - Portions Copyright 1994-2007 (c) RealNetworks, Inc. +ignorable_holders: + - RealNetworks, Inc. +ignorable_urls: + - http://www.helixcommunity.org/ + - https://www.helixcommunity.org/content/rcsl +ignorable_emails: + - press@helixcommunity.org +--- + REALNETWORKS COMMUNITY SOURCE LICENSE RESEARCH AND DEVELOPMENT USE (RCSL R&D) diff --git a/docs/rcsl-3.0.html b/docs/rcsl-3.0.html index 9d577d4cf1..0e5ced1fbe 100644 --- a/docs/rcsl-3.0.html +++ b/docs/rcsl-3.0.html @@ -478,7 +478,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rcsl-3.0.json b/docs/rcsl-3.0.json index 9883eb7e9d..9288e570c9 100644 --- a/docs/rcsl-3.0.json +++ b/docs/rcsl-3.0.json @@ -1 +1,26 @@ -{"key": "rcsl-3.0", "short_name": "RCSL R&D 3.0", "name": "RealNetworks Community Source License v3.0", "category": "Proprietary Free", "owner": "RealNetworks", "homepage_url": "https://helixcommunity.org/content/rcsl", "spdx_license_key": "LicenseRef-scancode-rcsl-3.0", "other_urls": ["http://en.wikipedia.org/wiki/Helix_project", "http://en.wikipedia.org/wiki/RealNetworks_Community_Source_License"], "ignorable_copyrights": ["Portions Copyright 1994-2007 (c) RealNetworks, Inc."], "ignorable_holders": ["RealNetworks, Inc."], "ignorable_urls": ["http://www.helixcommunity.org/", "https://www.helixcommunity.org/content/rcsl"], "ignorable_emails": ["press@helixcommunity.org"]} \ No newline at end of file +{ + "key": "rcsl-3.0", + "short_name": "RCSL R&D 3.0", + "name": "RealNetworks Community Source License v3.0", + "category": "Proprietary Free", + "owner": "RealNetworks", + "homepage_url": "https://helixcommunity.org/content/rcsl", + "spdx_license_key": "LicenseRef-scancode-rcsl-3.0", + "other_urls": [ + "http://en.wikipedia.org/wiki/Helix_project", + "http://en.wikipedia.org/wiki/RealNetworks_Community_Source_License" + ], + "ignorable_copyrights": [ + "Portions Copyright 1994-2007 (c) RealNetworks, Inc." + ], + "ignorable_holders": [ + "RealNetworks, Inc." + ], + "ignorable_urls": [ + "http://www.helixcommunity.org/", + "https://www.helixcommunity.org/content/rcsl" + ], + "ignorable_emails": [ + "press@helixcommunity.org" + ] +} \ No newline at end of file diff --git a/docs/rdisc.LICENSE b/docs/rdisc.LICENSE index 4351a0d86e..b800ee4ec1 100644 --- a/docs/rdisc.LICENSE +++ b/docs/rdisc.LICENSE @@ -1,3 +1,18 @@ +--- +key: rdisc +short_name: Rdisc License +name: Rdisc License +category: Permissive +owner: Oracle (Sun) +homepage_url: https://fedoraproject.org/wiki/Licensing/Rdisc_License +notes: | + Per Fedora, this is a permissive style license from Sun, Free and GPL + compatible. +spdx_license_key: Rdisc +ignorable_authors: + - Sun Microsystems, Inc. +--- + Rdisc (this program) was developed by Sun Microsystems, Inc. and is provided for unrestricted use provided that this legend is included on all tape media and as a part of the software program in whole or part. Users may copy or modify Rdisc without charge, and they may freely distribute it. RDISC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. @@ -6,4 +21,4 @@ Rdisc is provided with no support and without any obligation on the part of Sun SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY RDISC OR ANY PART THEREOF. -In no event will Sun Microsystems, Inc. be liable for any lost revenue or profits or other special, indirect and consequential damages, even if Sun has been advised of the possibility of such damages. +In no event will Sun Microsystems, Inc. be liable for any lost revenue or profits or other special, indirect and consequential damages, even if Sun has been advised of the possibility of such damages. \ No newline at end of file diff --git a/docs/rdisc.html b/docs/rdisc.html index 0b644cba7c..625dc7b9c7 100644 --- a/docs/rdisc.html +++ b/docs/rdisc.html @@ -141,8 +141,7 @@ SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY RDISC OR ANY PART THEREOF. -In no event will Sun Microsystems, Inc. be liable for any lost revenue or profits or other special, indirect and consequential damages, even if Sun has been advised of the possibility of such damages. - +In no event will Sun Microsystems, Inc. be liable for any lost revenue or profits or other special, indirect and consequential damages, even if Sun has been advised of the possibility of such damages.
@@ -154,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rdisc.json b/docs/rdisc.json index 1a2f9c79df..cbb850cb2a 100644 --- a/docs/rdisc.json +++ b/docs/rdisc.json @@ -1 +1,13 @@ -{"key": "rdisc", "short_name": "Rdisc License", "name": "Rdisc License", "category": "Permissive", "owner": "Oracle (Sun)", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Rdisc_License", "notes": "Per Fedora, this is a permissive style license from Sun, Free and GPL\ncompatible.\n", "spdx_license_key": "Rdisc", "ignorable_authors": ["Sun Microsystems, Inc."]} \ No newline at end of file +{ + "key": "rdisc", + "short_name": "Rdisc License", + "name": "Rdisc License", + "category": "Permissive", + "owner": "Oracle (Sun)", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Rdisc_License", + "notes": "Per Fedora, this is a permissive style license from Sun, Free and GPL\ncompatible.\n", + "spdx_license_key": "Rdisc", + "ignorable_authors": [ + "Sun Microsystems, Inc." + ] +} \ No newline at end of file diff --git a/docs/realm-platform-extension-2017.LICENSE b/docs/realm-platform-extension-2017.LICENSE index 256735d4cb..92d553f7bd 100644 --- a/docs/realm-platform-extension-2017.LICENSE +++ b/docs/realm-platform-extension-2017.LICENSE @@ -1,3 +1,20 @@ +--- +key: realm-platform-extension-2017 +short_name: Realm Platform Extensions License 2017 +name: Realm Platform Extensions License 2017 +category: Proprietary Free +owner: Realm +homepage_url: https://github.com/realm/realm-studio/blob/channel/major-10/LICENSE +spdx_license_key: LicenseRef-scancode-realm-platform-extension-2017 +faq_url: http://realm.io/pricing/ +ignorable_copyrights: + - Copyright (c) 2011-2017 Realm Inc +ignorable_holders: + - Realm Inc +ignorable_urls: + - http://realm.io/pricing +--- + Realm Platform Extensions License Copyright (c) 2011-2017 Realm Inc All rights reserved diff --git a/docs/realm-platform-extension-2017.html b/docs/realm-platform-extension-2017.html index dfddb1fd1d..12ec6f782f 100644 --- a/docs/realm-platform-extension-2017.html +++ b/docs/realm-platform-extension-2017.html @@ -192,7 +192,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/realm-platform-extension-2017.json b/docs/realm-platform-extension-2017.json index 7f61a9b2ae..e4fc2aa6bb 100644 --- a/docs/realm-platform-extension-2017.json +++ b/docs/realm-platform-extension-2017.json @@ -1 +1,19 @@ -{"key": "realm-platform-extension-2017", "short_name": "Realm Platform Extensions License 2017", "name": "Realm Platform Extensions License 2017", "category": "Proprietary Free", "owner": "Realm", "homepage_url": "https://github.com/realm/realm-studio/blob/channel/major-10/LICENSE", "spdx_license_key": "LicenseRef-scancode-realm-platform-extension-2017", "faq_url": "http://realm.io/pricing/", "ignorable_copyrights": ["Copyright (c) 2011-2017 Realm Inc"], "ignorable_holders": ["Realm Inc"], "ignorable_urls": ["http://realm.io/pricing"]} \ No newline at end of file +{ + "key": "realm-platform-extension-2017", + "short_name": "Realm Platform Extensions License 2017", + "name": "Realm Platform Extensions License 2017", + "category": "Proprietary Free", + "owner": "Realm", + "homepage_url": "https://github.com/realm/realm-studio/blob/channel/major-10/LICENSE", + "spdx_license_key": "LicenseRef-scancode-realm-platform-extension-2017", + "faq_url": "http://realm.io/pricing/", + "ignorable_copyrights": [ + "Copyright (c) 2011-2017 Realm Inc" + ], + "ignorable_holders": [ + "Realm Inc" + ], + "ignorable_urls": [ + "http://realm.io/pricing" + ] +} \ No newline at end of file diff --git a/docs/red-hat-attribution.LICENSE b/docs/red-hat-attribution.LICENSE index f55a5a8216..7e2fc5d4e1 100644 --- a/docs/red-hat-attribution.LICENSE +++ b/docs/red-hat-attribution.LICENSE @@ -1,2 +1,12 @@ +--- +key: red-hat-attribution +short_name: Red Hat Attribution License +name: Red Hat Attribution License +category: Permissive +owner: Red Hat +notes: a very short permissive license, seen in newlib +spdx_license_key: LicenseRef-scancode-red-hat-attribution +--- + Permission to use, copy, modify, and distribute this software is freely granted, provided that this notice is preserved. \ No newline at end of file diff --git a/docs/red-hat-attribution.html b/docs/red-hat-attribution.html index b74e40070c..c880907ef6 100644 --- a/docs/red-hat-attribution.html +++ b/docs/red-hat-attribution.html @@ -128,7 +128,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/red-hat-attribution.json b/docs/red-hat-attribution.json index 6df6598c32..0835ac9b76 100644 --- a/docs/red-hat-attribution.json +++ b/docs/red-hat-attribution.json @@ -1 +1,9 @@ -{"key": "red-hat-attribution", "short_name": "Red Hat Attribution License", "name": "Red Hat Attribution License", "category": "Permissive", "owner": "Red Hat", "notes": "a very short permissive license, seen in newlib", "spdx_license_key": "LicenseRef-scancode-red-hat-attribution"} \ No newline at end of file +{ + "key": "red-hat-attribution", + "short_name": "Red Hat Attribution License", + "name": "Red Hat Attribution License", + "category": "Permissive", + "owner": "Red Hat", + "notes": "a very short permissive license, seen in newlib", + "spdx_license_key": "LicenseRef-scancode-red-hat-attribution" +} \ No newline at end of file diff --git a/docs/red-hat-bsd-simplified.LICENSE b/docs/red-hat-bsd-simplified.LICENSE index 43609d9409..45aa766bdf 100644 --- a/docs/red-hat-bsd-simplified.LICENSE +++ b/docs/red-hat-bsd-simplified.LICENSE @@ -1,3 +1,15 @@ +--- +key: red-hat-bsd-simplified +short_name: Red Hat BSD-Simplified +name: Red Hat BSD-Simplified +category: Permissive +owner: Red Hat +homepage_url: https://www.rpmfind.net/linux/RPM/centos/6.7/i386/Packages/fipscheck-1.2.0-7.el6.i686.html +spdx_license_key: LicenseRef-scancode-red-hat-bsd-simplified +other_urls: + - https://www.rpmfind.net/linux/RPM/centos/6.7/i386/Packages/fipscheck-1.2.0-7.el6.i686.html +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/red-hat-bsd-simplified.html b/docs/red-hat-bsd-simplified.html index d37dc6f119..aa66091c92 100644 --- a/docs/red-hat-bsd-simplified.html +++ b/docs/red-hat-bsd-simplified.html @@ -161,7 +161,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/red-hat-bsd-simplified.json b/docs/red-hat-bsd-simplified.json index 30e99a240c..414e73e727 100644 --- a/docs/red-hat-bsd-simplified.json +++ b/docs/red-hat-bsd-simplified.json @@ -1 +1,12 @@ -{"key": "red-hat-bsd-simplified", "short_name": "Red Hat BSD-Simplified", "name": "Red Hat BSD-Simplified", "category": "Permissive", "owner": "Red Hat", "homepage_url": "https://www.rpmfind.net/linux/RPM/centos/6.7/i386/Packages/fipscheck-1.2.0-7.el6.i686.html", "spdx_license_key": "LicenseRef-scancode-red-hat-bsd-simplified", "other_urls": ["https://www.rpmfind.net/linux/RPM/centos/6.7/i386/Packages/fipscheck-1.2.0-7.el6.i686.html"]} \ No newline at end of file +{ + "key": "red-hat-bsd-simplified", + "short_name": "Red Hat BSD-Simplified", + "name": "Red Hat BSD-Simplified", + "category": "Permissive", + "owner": "Red Hat", + "homepage_url": "https://www.rpmfind.net/linux/RPM/centos/6.7/i386/Packages/fipscheck-1.2.0-7.el6.i686.html", + "spdx_license_key": "LicenseRef-scancode-red-hat-bsd-simplified", + "other_urls": [ + "https://www.rpmfind.net/linux/RPM/centos/6.7/i386/Packages/fipscheck-1.2.0-7.el6.i686.html" + ] +} \ No newline at end of file diff --git a/docs/red-hat-logos.LICENSE b/docs/red-hat-logos.LICENSE index 5cb8eeed07..7e7d0f99c1 100644 --- a/docs/red-hat-logos.LICENSE +++ b/docs/red-hat-logos.LICENSE @@ -1,3 +1,13 @@ +--- +key: red-hat-logos +short_name: Red Hat Logos License +name: Red Hat Logos License +category: Proprietary Free +owner: Red Hat +homepage_url: http://webcache.googleusercontent.com/search?q=cache:http://www.sslug.dk/~chlor/rpm3html/pack/redhat-logos.html +spdx_license_key: LicenseRef-scancode-red-hat-logos +--- + Red Hat, Inc. grants you the right to use the Package during the normal operation of other software programs that call upon the Package. Red Hat, Inc. grants to you the right and license to copy @@ -25,4 +35,4 @@ 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 PACKAGE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/red-hat-logos.html b/docs/red-hat-logos.html index 8764b18356..19ad127840 100644 --- a/docs/red-hat-logos.html +++ b/docs/red-hat-logos.html @@ -142,8 +142,7 @@ 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 PACKAGE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - +POSSIBILITY OF SUCH DAMAGE.
@@ -155,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/red-hat-logos.json b/docs/red-hat-logos.json index 47d5dca9ad..27c64395be 100644 --- a/docs/red-hat-logos.json +++ b/docs/red-hat-logos.json @@ -1 +1,9 @@ -{"key": "red-hat-logos", "short_name": "Red Hat Logos License", "name": "Red Hat Logos License", "category": "Proprietary Free", "owner": "Red Hat", "homepage_url": "http://webcache.googleusercontent.com/search?q=cache:http://www.sslug.dk/~chlor/rpm3html/pack/redhat-logos.html", "spdx_license_key": "LicenseRef-scancode-red-hat-logos"} \ No newline at end of file +{ + "key": "red-hat-logos", + "short_name": "Red Hat Logos License", + "name": "Red Hat Logos License", + "category": "Proprietary Free", + "owner": "Red Hat", + "homepage_url": "http://webcache.googleusercontent.com/search?q=cache:http://www.sslug.dk/~chlor/rpm3html/pack/redhat-logos.html", + "spdx_license_key": "LicenseRef-scancode-red-hat-logos" +} \ No newline at end of file diff --git a/docs/red-hat-trademarks.LICENSE b/docs/red-hat-trademarks.LICENSE index 8cc025b6d3..b39346e210 100644 --- a/docs/red-hat-trademarks.LICENSE +++ b/docs/red-hat-trademarks.LICENSE @@ -1,3 +1,12 @@ +--- +key: red-hat-trademarks +short_name: Red Hat Trademarks License +name: Red Hat Trademarks License +category: Proprietary Free +owner: Red Hat +spdx_license_key: LicenseRef-scancode-red-hat-trademarks +--- + Red Hat®, Red Hat Enterprise Linux, and the Shadowman logo, either separately or in combination, are hereinafter referred to as "Red Hat Trademarks" and are trademarks of Red Hat, Inc., registered in the diff --git a/docs/red-hat-trademarks.html b/docs/red-hat-trademarks.html index 79bd3d4b22..b8d025a2fe 100644 --- a/docs/red-hat-trademarks.html +++ b/docs/red-hat-trademarks.html @@ -141,7 +141,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/red-hat-trademarks.json b/docs/red-hat-trademarks.json index 5070a1f6d2..e8be28934f 100644 --- a/docs/red-hat-trademarks.json +++ b/docs/red-hat-trademarks.json @@ -1 +1,8 @@ -{"key": "red-hat-trademarks", "short_name": "Red Hat Trademarks License", "name": "Red Hat Trademarks License", "category": "Proprietary Free", "owner": "Red Hat", "spdx_license_key": "LicenseRef-scancode-red-hat-trademarks"} \ No newline at end of file +{ + "key": "red-hat-trademarks", + "short_name": "Red Hat Trademarks License", + "name": "Red Hat Trademarks License", + "category": "Proprietary Free", + "owner": "Red Hat", + "spdx_license_key": "LicenseRef-scancode-red-hat-trademarks" +} \ No newline at end of file diff --git a/docs/redis-source-available-1.0.LICENSE b/docs/redis-source-available-1.0.LICENSE index b17e628b4b..7acb91fc61 100644 --- a/docs/redis-source-available-1.0.LICENSE +++ b/docs/redis-source-available-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: redis-source-available-1.0 +short_name: Redis Source Available License 1.0 +name: Redis Source Available License Agreement 1.0 +category: Source-available +owner: Redis Labs +homepage_url: https://github.com/RedisLabsModules/RedisGraph/blob/v1.0.14/LICENSE +spdx_license_key: LicenseRef-scancode-redis-source-available-1.0 +faq_url: https://redislabs.com/community/licenses/ +other_urls: + - https://techcrunch.com/2019/02/21/redis-labs-changes-its-open-source-license-again/ + - https://www.zdnet.com/article/redis-labs-drops-commons-clause-for-a-new-license/ +--- + REDIS SOURCE AVAILABLE LICENSE AGREEMENT Version 1, February 21, 2019 @@ -49,4 +63,4 @@ Your Application: an application developed by or for You, where such application 5. LIMITATION OF LIABILITY. TO THE EXTENT ALLOWABLE UNDER LAW, LICENSOR WILL NOT BE LIABLE FOR ANY DAMAGES OF ANY KIND, INCLUDING BUT NOT LIMITED TO, LOST PROFITS OR ANY CONSEQUENTIAL, SPECIAL, INCIDENTAL, INDIRECT, OR DIRECT DAMAGES, ARISING OUT OF OR RELATING TO THIS AGREEMENT. -6. GENERAL. You are not authorized to assign Your rights under this Agreement to any third party. Licensor may freely assign its rights under this Agreement to any third party. This Agreement is the entire agreement between the parties on the subject matter hereof. No amendment or modification hereof will be valid or binding upon the parties unless made in writing and signed by the duly authorized representatives of both parties. In the event that any provision, including without limitation any condition, of this Agreement is held to be unenforceable, this Agreement and all licenses and rights granted hereunder will immediately terminate. Failure by Licensor to exercise any right hereunder will not be construed as a waiver of any subsequent breach of that right or as a waiver of any other right. This Agreement will be governed by and interpreted in accordance with the laws of the state of California, without reference to its conflict of laws principles. If You are located within the United States, all disputes arising out of this Agreement are subject to the exclusive jurisdiction of courts located in Santa Clara County, California. USA. If You are located outside of the United States, any dispute, controversy or claim arising out of or relating to this Agreement will be referred to and finally determined by arbitration in accordance with the JAMS before a single arbitrator in Santa Clara County, California. Judgment upon the award rendered by the arbitrator may be entered in any court having jurisdiction thereof. +6. GENERAL. You are not authorized to assign Your rights under this Agreement to any third party. Licensor may freely assign its rights under this Agreement to any third party. This Agreement is the entire agreement between the parties on the subject matter hereof. No amendment or modification hereof will be valid or binding upon the parties unless made in writing and signed by the duly authorized representatives of both parties. In the event that any provision, including without limitation any condition, of this Agreement is held to be unenforceable, this Agreement and all licenses and rights granted hereunder will immediately terminate. Failure by Licensor to exercise any right hereunder will not be construed as a waiver of any subsequent breach of that right or as a waiver of any other right. This Agreement will be governed by and interpreted in accordance with the laws of the state of California, without reference to its conflict of laws principles. If You are located within the United States, all disputes arising out of this Agreement are subject to the exclusive jurisdiction of courts located in Santa Clara County, California. USA. If You are located outside of the United States, any dispute, controversy or claim arising out of or relating to this Agreement will be referred to and finally determined by arbitration in accordance with the JAMS before a single arbitrator in Santa Clara County, California. Judgment upon the award rendered by the arbitrator may be entered in any court having jurisdiction thereof. \ No newline at end of file diff --git a/docs/redis-source-available-1.0.html b/docs/redis-source-available-1.0.html index aa160f474b..e08b3a7903 100644 --- a/docs/redis-source-available-1.0.html +++ b/docs/redis-source-available-1.0.html @@ -182,8 +182,7 @@ 5. LIMITATION OF LIABILITY. TO THE EXTENT ALLOWABLE UNDER LAW, LICENSOR WILL NOT BE LIABLE FOR ANY DAMAGES OF ANY KIND, INCLUDING BUT NOT LIMITED TO, LOST PROFITS OR ANY CONSEQUENTIAL, SPECIAL, INCIDENTAL, INDIRECT, OR DIRECT DAMAGES, ARISING OUT OF OR RELATING TO THIS AGREEMENT. -6. GENERAL. You are not authorized to assign Your rights under this Agreement to any third party. Licensor may freely assign its rights under this Agreement to any third party. This Agreement is the entire agreement between the parties on the subject matter hereof. No amendment or modification hereof will be valid or binding upon the parties unless made in writing and signed by the duly authorized representatives of both parties. In the event that any provision, including without limitation any condition, of this Agreement is held to be unenforceable, this Agreement and all licenses and rights granted hereunder will immediately terminate. Failure by Licensor to exercise any right hereunder will not be construed as a waiver of any subsequent breach of that right or as a waiver of any other right. This Agreement will be governed by and interpreted in accordance with the laws of the state of California, without reference to its conflict of laws principles. If You are located within the United States, all disputes arising out of this Agreement are subject to the exclusive jurisdiction of courts located in Santa Clara County, California. USA. If You are located outside of the United States, any dispute, controversy or claim arising out of or relating to this Agreement will be referred to and finally determined by arbitration in accordance with the JAMS before a single arbitrator in Santa Clara County, California. Judgment upon the award rendered by the arbitrator may be entered in any court having jurisdiction thereof. - +6. GENERAL. You are not authorized to assign Your rights under this Agreement to any third party. Licensor may freely assign its rights under this Agreement to any third party. This Agreement is the entire agreement between the parties on the subject matter hereof. No amendment or modification hereof will be valid or binding upon the parties unless made in writing and signed by the duly authorized representatives of both parties. In the event that any provision, including without limitation any condition, of this Agreement is held to be unenforceable, this Agreement and all licenses and rights granted hereunder will immediately terminate. Failure by Licensor to exercise any right hereunder will not be construed as a waiver of any subsequent breach of that right or as a waiver of any other right. This Agreement will be governed by and interpreted in accordance with the laws of the state of California, without reference to its conflict of laws principles. If You are located within the United States, all disputes arising out of this Agreement are subject to the exclusive jurisdiction of courts located in Santa Clara County, California. USA. If You are located outside of the United States, any dispute, controversy or claim arising out of or relating to this Agreement will be referred to and finally determined by arbitration in accordance with the JAMS before a single arbitrator in Santa Clara County, California. Judgment upon the award rendered by the arbitrator may be entered in any court having jurisdiction thereof.
@@ -195,7 +194,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/redis-source-available-1.0.json b/docs/redis-source-available-1.0.json index 2e01a0a714..4c2731443e 100644 --- a/docs/redis-source-available-1.0.json +++ b/docs/redis-source-available-1.0.json @@ -1 +1,14 @@ -{"key": "redis-source-available-1.0", "short_name": "Redis Source Available License 1.0", "name": "Redis Source Available License Agreement 1.0", "category": "Source-available", "owner": "Redis Labs", "homepage_url": "https://github.com/RedisLabsModules/RedisGraph/blob/v1.0.14/LICENSE", "spdx_license_key": "LicenseRef-scancode-redis-source-available-1.0", "faq_url": "https://redislabs.com/community/licenses/", "other_urls": ["https://techcrunch.com/2019/02/21/redis-labs-changes-its-open-source-license-again/", "https://www.zdnet.com/article/redis-labs-drops-commons-clause-for-a-new-license/"]} \ No newline at end of file +{ + "key": "redis-source-available-1.0", + "short_name": "Redis Source Available License 1.0", + "name": "Redis Source Available License Agreement 1.0", + "category": "Source-available", + "owner": "Redis Labs", + "homepage_url": "https://github.com/RedisLabsModules/RedisGraph/blob/v1.0.14/LICENSE", + "spdx_license_key": "LicenseRef-scancode-redis-source-available-1.0", + "faq_url": "https://redislabs.com/community/licenses/", + "other_urls": [ + "https://techcrunch.com/2019/02/21/redis-labs-changes-its-open-source-license-again/", + "https://www.zdnet.com/article/redis-labs-drops-commons-clause-for-a-new-license/" + ] +} \ No newline at end of file diff --git a/docs/regexp.LICENSE b/docs/regexp.LICENSE index a1f0f5987e..f63c3e9160 100644 --- a/docs/regexp.LICENSE +++ b/docs/regexp.LICENSE @@ -1,3 +1,16 @@ +--- +key: regexp +short_name: Regexp License +name: Regexp License +category: Permissive +owner: Henry Spencer +homepage_url: https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License +spdx_license_key: Spencer-86 +other_spdx_license_keys: + - LicenseRef-scancode-regexp +minimum_coverage: 80 +--- + Permission is granted to anyone to use this software for any purpose on any computer system, and to redistribute it freely, subject to the following restrictions: @@ -10,4 +23,4 @@ subject to the following restrictions: by explicit claim or by omission. 3. Altered versions must be plainly marked as such, and must not - be misrepresented as being the original software. + be misrepresented as being the original software. \ No newline at end of file diff --git a/docs/regexp.html b/docs/regexp.html index e4ad9ba509..90bd6a2222 100644 --- a/docs/regexp.html +++ b/docs/regexp.html @@ -143,8 +143,7 @@ by explicit claim or by omission. 3. Altered versions must be plainly marked as such, and must not - be misrepresented as being the original software. - + be misrepresented as being the original software.
@@ -156,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/regexp.json b/docs/regexp.json index 7da13110f2..5f3a591857 100644 --- a/docs/regexp.json +++ b/docs/regexp.json @@ -1 +1,13 @@ -{"key": "regexp", "short_name": "Regexp License", "name": "Regexp License", "category": "Permissive", "owner": "Henry Spencer", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", "spdx_license_key": "Spencer-86", "other_spdx_license_keys": ["LicenseRef-scancode-regexp"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "regexp", + "short_name": "Regexp License", + "name": "Regexp License", + "category": "Permissive", + "owner": "Henry Spencer", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", + "spdx_license_key": "Spencer-86", + "other_spdx_license_keys": [ + "LicenseRef-scancode-regexp" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/reportbug.LICENSE b/docs/reportbug.LICENSE index b3517725e1..f0a403c728 100644 --- a/docs/reportbug.LICENSE +++ b/docs/reportbug.LICENSE @@ -1,3 +1,17 @@ +--- +key: reportbug +short_name: Debian reportbug License +name: Debian reportbug License +category: Permissive +owner: Debian +homepage_url: https://tracker.debian.org/media/packages/r/reportbug/copyright-6.6.6 +notes: found in Debian reportbug +spdx_license_key: LicenseRef-scancode-reportbug +text_urls: + - https://tracker.debian.org/media/packages/r/reportbug/copyright-6.6.6 +minimum_coverage: 80 +--- + This program is freely distributable per the following license: Permission to use, copy, modify, and distribute this software and its diff --git a/docs/reportbug.html b/docs/reportbug.html index 0af60fd09c..ca6063c695 100644 --- a/docs/reportbug.html +++ b/docs/reportbug.html @@ -164,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/reportbug.json b/docs/reportbug.json index 53aeb09b87..a165ac03c3 100644 --- a/docs/reportbug.json +++ b/docs/reportbug.json @@ -1 +1,14 @@ -{"key": "reportbug", "short_name": "Debian reportbug License", "name": "Debian reportbug License", "category": "Permissive", "owner": "Debian", "homepage_url": "https://tracker.debian.org/media/packages/r/reportbug/copyright-6.6.6", "notes": "found in Debian reportbug", "spdx_license_key": "LicenseRef-scancode-reportbug", "text_urls": ["https://tracker.debian.org/media/packages/r/reportbug/copyright-6.6.6"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "reportbug", + "short_name": "Debian reportbug License", + "name": "Debian reportbug License", + "category": "Permissive", + "owner": "Debian", + "homepage_url": "https://tracker.debian.org/media/packages/r/reportbug/copyright-6.6.6", + "notes": "found in Debian reportbug", + "spdx_license_key": "LicenseRef-scancode-reportbug", + "text_urls": [ + "https://tracker.debian.org/media/packages/r/reportbug/copyright-6.6.6" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/repoze.LICENSE b/docs/repoze.LICENSE index 03a8ab9a65..9379d55ab9 100644 --- a/docs/repoze.LICENSE +++ b/docs/repoze.LICENSE @@ -1,3 +1,21 @@ +--- +key: repoze +short_name: Repoze License +name: Repoze License +category: Permissive +owner: Repoze +homepage_url: http://repoze.org/license.html +notes: found in Debian reportbug +spdx_license_key: BSD-3-Clause-Modification +other_spdx_license_keys: + - LicenseRef-scancode-repoze +text_urls: + - http://repoze.org/LICENSE.txt + - http://repoze.org/license.html +other_urls: + - https://fedoraproject.org/wiki/Licensing:BSD#Modification_Variant +--- + A copyright notice accompanies this license document that identifies the copyright holders. diff --git a/docs/repoze.html b/docs/repoze.html index 4bc92039c2..fd6078ab85 100644 --- a/docs/repoze.html +++ b/docs/repoze.html @@ -198,7 +198,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/repoze.json b/docs/repoze.json index 2bdb2d3652..29cf1e75b0 100644 --- a/docs/repoze.json +++ b/docs/repoze.json @@ -1 +1,20 @@ -{"key": "repoze", "short_name": "Repoze License", "name": "Repoze License", "category": "Permissive", "owner": "Repoze", "homepage_url": "http://repoze.org/license.html", "notes": "found in Debian reportbug", "spdx_license_key": "BSD-3-Clause-Modification", "other_spdx_license_keys": ["LicenseRef-scancode-repoze"], "text_urls": ["http://repoze.org/LICENSE.txt", "http://repoze.org/license.html"], "other_urls": ["https://fedoraproject.org/wiki/Licensing:BSD#Modification_Variant"]} \ No newline at end of file +{ + "key": "repoze", + "short_name": "Repoze License", + "name": "Repoze License", + "category": "Permissive", + "owner": "Repoze", + "homepage_url": "http://repoze.org/license.html", + "notes": "found in Debian reportbug", + "spdx_license_key": "BSD-3-Clause-Modification", + "other_spdx_license_keys": [ + "LicenseRef-scancode-repoze" + ], + "text_urls": [ + "http://repoze.org/LICENSE.txt", + "http://repoze.org/license.html" + ], + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing:BSD#Modification_Variant" + ] +} \ No newline at end of file diff --git a/docs/rh-eula-lgpl.LICENSE b/docs/rh-eula-lgpl.LICENSE index 366a3a2c38..b29be6a0e4 100644 --- a/docs/rh-eula-lgpl.LICENSE +++ b/docs/rh-eula-lgpl.LICENSE @@ -1,3 +1,20 @@ +--- +key: rh-eula-lgpl +short_name: Red Hat EULA JBoss Enterprise Middleware License +name: Red Hat EULA JBoss Enterprise Middleware License +category: Copyleft Limited +owner: Red Hat +homepage_url: https://www.redhat.com/f/pdf/licenses/GLOBAL_EULA_JBoss_English_20101110.pdf +spdx_license_key: LicenseRef-scancode-rh-eula-lgpl +ignorable_copyrights: + - Copyright (c) 2010 Red Hat, Inc. +ignorable_holders: + - Red Hat, Inc. +ignorable_urls: + - http://www.redhat.com/about/corporate/trademark/ + - http://www.redhat.com/licenses/thirdparty/eula.html +--- + This end user license agreement ("EULA") governs the use of the JBoss Enterprise Middleware and any related updates, source code, appearance, structure and organization (the "Programs"), regardless of the delivery diff --git a/docs/rh-eula-lgpl.html b/docs/rh-eula-lgpl.html index 0fb05c8cdd..e6938cbdd6 100644 --- a/docs/rh-eula-lgpl.html +++ b/docs/rh-eula-lgpl.html @@ -274,7 +274,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rh-eula-lgpl.json b/docs/rh-eula-lgpl.json index 2ac62d886a..7195246c30 100644 --- a/docs/rh-eula-lgpl.json +++ b/docs/rh-eula-lgpl.json @@ -1 +1,19 @@ -{"key": "rh-eula-lgpl", "short_name": "Red Hat EULA JBoss Enterprise Middleware License", "name": "Red Hat EULA JBoss Enterprise Middleware License", "category": "Copyleft Limited", "owner": "Red Hat", "homepage_url": "https://www.redhat.com/f/pdf/licenses/GLOBAL_EULA_JBoss_English_20101110.pdf", "spdx_license_key": "LicenseRef-scancode-rh-eula-lgpl", "ignorable_copyrights": ["Copyright (c) 2010 Red Hat, Inc."], "ignorable_holders": ["Red Hat, Inc."], "ignorable_urls": ["http://www.redhat.com/about/corporate/trademark/", "http://www.redhat.com/licenses/thirdparty/eula.html"]} \ No newline at end of file +{ + "key": "rh-eula-lgpl", + "short_name": "Red Hat EULA JBoss Enterprise Middleware License", + "name": "Red Hat EULA JBoss Enterprise Middleware License", + "category": "Copyleft Limited", + "owner": "Red Hat", + "homepage_url": "https://www.redhat.com/f/pdf/licenses/GLOBAL_EULA_JBoss_English_20101110.pdf", + "spdx_license_key": "LicenseRef-scancode-rh-eula-lgpl", + "ignorable_copyrights": [ + "Copyright (c) 2010 Red Hat, Inc." + ], + "ignorable_holders": [ + "Red Hat, Inc." + ], + "ignorable_urls": [ + "http://www.redhat.com/about/corporate/trademark/", + "http://www.redhat.com/licenses/thirdparty/eula.html" + ] +} \ No newline at end of file diff --git a/docs/rh-eula.LICENSE b/docs/rh-eula.LICENSE index 7ad6143104..29cff3cb5d 100644 --- a/docs/rh-eula.LICENSE +++ b/docs/rh-eula.LICENSE @@ -1,3 +1,23 @@ +--- +key: rh-eula +short_name: Red Hat EULA +name: Red Hat EULA for Enterprise Linux and Applications +category: Copyleft +owner: Red Hat +homepage_url: http://www.redhat.com/en/about/red-hat-end-user-license-agreements +spdx_license_key: LicenseRef-scancode-rh-eula +text_urls: + - http://www.redhat.com/f/pdf/licenses/GLOBAL_EULA_RHEL_English_20101110.pdf +ignorable_copyrights: + - Copyright (c) 2007 Red Hat, Inc. +ignorable_holders: + - Red Hat, Inc. +ignorable_urls: + - http://www.redhat.com/about/corporate/trademark/ + - http://www.redhat.com/licenses/products + - http://www.redhat.com/licenses/thirdparty/eula.html +--- + END USER LICENSE AGREEMENT RED HAT® ENTERPRISE LINUX® AND RED HAT APPLICATIONS diff --git a/docs/rh-eula.html b/docs/rh-eula.html index c0ad687d47..0b4811454e 100644 --- a/docs/rh-eula.html +++ b/docs/rh-eula.html @@ -286,7 +286,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rh-eula.json b/docs/rh-eula.json index beee2845d5..db1c5b066a 100644 --- a/docs/rh-eula.json +++ b/docs/rh-eula.json @@ -1 +1,23 @@ -{"key": "rh-eula", "short_name": "Red Hat EULA", "name": "Red Hat EULA for Enterprise Linux and Applications", "category": "Copyleft", "owner": "Red Hat", "homepage_url": "http://www.redhat.com/en/about/red-hat-end-user-license-agreements", "spdx_license_key": "LicenseRef-scancode-rh-eula", "text_urls": ["http://www.redhat.com/f/pdf/licenses/GLOBAL_EULA_RHEL_English_20101110.pdf"], "ignorable_copyrights": ["Copyright (c) 2007 Red Hat, Inc."], "ignorable_holders": ["Red Hat, Inc."], "ignorable_urls": ["http://www.redhat.com/about/corporate/trademark/", "http://www.redhat.com/licenses/products", "http://www.redhat.com/licenses/thirdparty/eula.html"]} \ No newline at end of file +{ + "key": "rh-eula", + "short_name": "Red Hat EULA", + "name": "Red Hat EULA for Enterprise Linux and Applications", + "category": "Copyleft", + "owner": "Red Hat", + "homepage_url": "http://www.redhat.com/en/about/red-hat-end-user-license-agreements", + "spdx_license_key": "LicenseRef-scancode-rh-eula", + "text_urls": [ + "http://www.redhat.com/f/pdf/licenses/GLOBAL_EULA_RHEL_English_20101110.pdf" + ], + "ignorable_copyrights": [ + "Copyright (c) 2007 Red Hat, Inc." + ], + "ignorable_holders": [ + "Red Hat, Inc." + ], + "ignorable_urls": [ + "http://www.redhat.com/about/corporate/trademark/", + "http://www.redhat.com/licenses/products", + "http://www.redhat.com/licenses/thirdparty/eula.html" + ] +} \ No newline at end of file diff --git a/docs/ricebsd.LICENSE b/docs/ricebsd.LICENSE index eda70a25f2..f0e58c31b1 100644 --- a/docs/ricebsd.LICENSE +++ b/docs/ricebsd.LICENSE @@ -1,3 +1,23 @@ +--- +key: ricebsd +short_name: RiceBSD +name: Rice BSD Software License +category: Permissive +owner: Rice University +homepage_url: https://web.archive.org/web/20060907200326/http://www.caam.rice.edu/software/ARPACK/RiceBSD.doc +spdx_license_key: LicenseRef-scancode-ricebsd +other_urls: + - https://github.com/pisilinux/uludag/blob/d202a1ddc0f5855acbad532ae0cf319f9f280c55/tags/pisi/2.2.18/licenses/RiceBSD + - https://github.com/search?q="Also%2C+we+ask+that+use+of+ARPACK+is+properly"&type=code + have this +ignorable_copyrights: + - (c) 2001, Rice University +ignorable_holders: + - Rice University +ignorable_authors: + - D.C. Sorensen, R.B. Lehoucq, C. Yang, and K. Maschhoff +--- + Rice BSD Software License Permits source and binary redistribution of the software ARPACK and P_ARPACK for both non-commercial and commercial use. diff --git a/docs/ricebsd.html b/docs/ricebsd.html index 9ad7a4883e..03c8e55a19 100644 --- a/docs/ricebsd.html +++ b/docs/ricebsd.html @@ -200,7 +200,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ricebsd.json b/docs/ricebsd.json index eee2876f48..c51ce5d0ca 100644 --- a/docs/ricebsd.json +++ b/docs/ricebsd.json @@ -1 +1,22 @@ -{"key": "ricebsd", "short_name": "RiceBSD", "name": "Rice BSD Software License", "category": "Permissive", "owner": "Rice University", "homepage_url": "https://web.archive.org/web/20060907200326/http://www.caam.rice.edu/software/ARPACK/RiceBSD.doc", "spdx_license_key": "LicenseRef-scancode-ricebsd", "other_urls": ["https://github.com/pisilinux/uludag/blob/d202a1ddc0f5855acbad532ae0cf319f9f280c55/tags/pisi/2.2.18/licenses/RiceBSD", "https://github.com/search?q=\"Also%2C+we+ask+that+use+of+ARPACK+is+properly\"&type=code have this"], "ignorable_copyrights": ["(c) 2001, Rice University"], "ignorable_holders": ["Rice University"], "ignorable_authors": ["D.C. Sorensen, R.B. Lehoucq, C. Yang, and K. Maschhoff"]} \ No newline at end of file +{ + "key": "ricebsd", + "short_name": "RiceBSD", + "name": "Rice BSD Software License", + "category": "Permissive", + "owner": "Rice University", + "homepage_url": "https://web.archive.org/web/20060907200326/http://www.caam.rice.edu/software/ARPACK/RiceBSD.doc", + "spdx_license_key": "LicenseRef-scancode-ricebsd", + "other_urls": [ + "https://github.com/pisilinux/uludag/blob/d202a1ddc0f5855acbad532ae0cf319f9f280c55/tags/pisi/2.2.18/licenses/RiceBSD", + "https://github.com/search?q=\"Also%2C+we+ask+that+use+of+ARPACK+is+properly\"&type=code have this" + ], + "ignorable_copyrights": [ + "(c) 2001, Rice University" + ], + "ignorable_holders": [ + "Rice University" + ], + "ignorable_authors": [ + "D.C. Sorensen, R.B. Lehoucq, C. Yang, and K. Maschhoff" + ] +} \ No newline at end of file diff --git a/docs/richard-black.LICENSE b/docs/richard-black.LICENSE index e8eff5f6ed..3bfaf8dca0 100644 --- a/docs/richard-black.LICENSE +++ b/docs/richard-black.LICENSE @@ -1 +1,15 @@ +--- +key: richard-black +short_name: Richard Black License +name: Richard Black License +category: Permissive +owner: Richard Black +homepage_url: https://www.cl.cam.ac.uk/research/srg/projects/fairisle/bluebook/21/crc/node6.html +spdx_license_key: LicenseRef-scancode-richard-black +ignorable_copyrights: + - copyright 1993 Richard Black +ignorable_holders: + - Richard Black +--- + This code is copyright 1993 Richard Black. All rights are reserved. You may use this code only if it includes a statement to that effect. \ No newline at end of file diff --git a/docs/richard-black.html b/docs/richard-black.html index 4b4504317c..f662e06f40 100644 --- a/docs/richard-black.html +++ b/docs/richard-black.html @@ -145,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/richard-black.json b/docs/richard-black.json index 868fb5fb4c..261403ff89 100644 --- a/docs/richard-black.json +++ b/docs/richard-black.json @@ -1 +1,15 @@ -{"key": "richard-black", "short_name": "Richard Black License", "name": "Richard Black License", "category": "Permissive", "owner": "Richard Black", "homepage_url": "https://www.cl.cam.ac.uk/research/srg/projects/fairisle/bluebook/21/crc/node6.html", "spdx_license_key": "LicenseRef-scancode-richard-black", "ignorable_copyrights": ["copyright 1993 Richard Black"], "ignorable_holders": ["Richard Black"]} \ No newline at end of file +{ + "key": "richard-black", + "short_name": "Richard Black License", + "name": "Richard Black License", + "category": "Permissive", + "owner": "Richard Black", + "homepage_url": "https://www.cl.cam.ac.uk/research/srg/projects/fairisle/bluebook/21/crc/node6.html", + "spdx_license_key": "LicenseRef-scancode-richard-black", + "ignorable_copyrights": [ + "copyright 1993 Richard Black" + ], + "ignorable_holders": [ + "Richard Black" + ] +} \ No newline at end of file diff --git a/docs/ricoh-1.0.LICENSE b/docs/ricoh-1.0.LICENSE index 7caefecbeb..d29816e765 100644 --- a/docs/ricoh-1.0.LICENSE +++ b/docs/ricoh-1.0.LICENSE @@ -1,3 +1,27 @@ +--- +key: ricoh-1.0 +short_name: Ricoh Source Code Public License 1.0 +name: Ricoh Source Code Public License v1.0 +category: Copyleft Limited +owner: Ricoh Global +homepage_url: http://opensource.org/licenses/ricohpl.php +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: RSCPL +text_urls: + - http://opensource.org/licenses/ricohpl.php +osi_url: http://opensource.org/licenses/ricohpl.php +other_urls: + - http://wayback.archive.org/web/20060715140826/http://www.risource.org/RPL/RPL-1.0A.shtml + - http://www.opensource.org/licenses/RSCPL + - https://opensource.org/licenses/RSCPL +ignorable_copyrights: + - Copyright (c) 1995-1999 +ignorable_authors: + - Ricoh Silicon Valley, Inc. +ignorable_urls: + - http://www.risource.org/RPL +--- + Ricoh Source Code Public License Version 1.0 diff --git a/docs/ricoh-1.0.html b/docs/ricoh-1.0.html index ac6c9d6165..b4b48a8e27 100644 --- a/docs/ricoh-1.0.html +++ b/docs/ricoh-1.0.html @@ -317,7 +317,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ricoh-1.0.json b/docs/ricoh-1.0.json index 55fe645a23..44868d6ec7 100644 --- a/docs/ricoh-1.0.json +++ b/docs/ricoh-1.0.json @@ -1 +1,28 @@ -{"key": "ricoh-1.0", "short_name": "Ricoh Source Code Public License 1.0", "name": "Ricoh Source Code Public License v1.0", "category": "Copyleft Limited", "owner": "Ricoh Global", "homepage_url": "http://opensource.org/licenses/ricohpl.php", "notes": "Per SPDX.org, this license is OSI certified", "spdx_license_key": "RSCPL", "text_urls": ["http://opensource.org/licenses/ricohpl.php"], "osi_url": "http://opensource.org/licenses/ricohpl.php", "other_urls": ["http://wayback.archive.org/web/20060715140826/http://www.risource.org/RPL/RPL-1.0A.shtml", "http://www.opensource.org/licenses/RSCPL", "https://opensource.org/licenses/RSCPL"], "ignorable_copyrights": ["Copyright (c) 1995-1999"], "ignorable_authors": ["Ricoh Silicon Valley, Inc."], "ignorable_urls": ["http://www.risource.org/RPL"]} \ No newline at end of file +{ + "key": "ricoh-1.0", + "short_name": "Ricoh Source Code Public License 1.0", + "name": "Ricoh Source Code Public License v1.0", + "category": "Copyleft Limited", + "owner": "Ricoh Global", + "homepage_url": "http://opensource.org/licenses/ricohpl.php", + "notes": "Per SPDX.org, this license is OSI certified", + "spdx_license_key": "RSCPL", + "text_urls": [ + "http://opensource.org/licenses/ricohpl.php" + ], + "osi_url": "http://opensource.org/licenses/ricohpl.php", + "other_urls": [ + "http://wayback.archive.org/web/20060715140826/http://www.risource.org/RPL/RPL-1.0A.shtml", + "http://www.opensource.org/licenses/RSCPL", + "https://opensource.org/licenses/RSCPL" + ], + "ignorable_copyrights": [ + "Copyright (c) 1995-1999" + ], + "ignorable_authors": [ + "Ricoh Silicon Valley, Inc." + ], + "ignorable_urls": [ + "http://www.risource.org/RPL" + ] +} \ No newline at end of file diff --git a/docs/riverbank-sip.LICENSE b/docs/riverbank-sip.LICENSE index baa175d1ef..75f67b8274 100644 --- a/docs/riverbank-sip.LICENSE +++ b/docs/riverbank-sip.LICENSE @@ -1,3 +1,16 @@ +--- +key: riverbank-sip +short_name: Riverbank SIP License +name: Riverbank SIP License +category: Free Restricted +owner: Riverbank Computing +spdx_license_key: LicenseRef-scancode-riverbank-sip +ignorable_copyrights: + - Copyright (c) 2009 Riverbank Computing Limited +ignorable_holders: + - Riverbank Computing Limited +--- + RIVERBANK COMPUTING LIMITED LICENSE AGREEMENT FOR SIP 4.9.2 1. This LICENSE AGREEMENT is between Riverbank Computing Limited diff --git a/docs/riverbank-sip.html b/docs/riverbank-sip.html index e6b4edb09d..e356206a53 100644 --- a/docs/riverbank-sip.html +++ b/docs/riverbank-sip.html @@ -187,7 +187,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/riverbank-sip.json b/docs/riverbank-sip.json index 30435ebdfd..58495084f1 100644 --- a/docs/riverbank-sip.json +++ b/docs/riverbank-sip.json @@ -1 +1,14 @@ -{"key": "riverbank-sip", "short_name": "Riverbank SIP License", "name": "Riverbank SIP License", "category": "Free Restricted", "owner": "Riverbank Computing", "spdx_license_key": "LicenseRef-scancode-riverbank-sip", "ignorable_copyrights": ["Copyright (c) 2009 Riverbank Computing Limited"], "ignorable_holders": ["Riverbank Computing Limited"]} \ No newline at end of file +{ + "key": "riverbank-sip", + "short_name": "Riverbank SIP License", + "name": "Riverbank SIP License", + "category": "Free Restricted", + "owner": "Riverbank Computing", + "spdx_license_key": "LicenseRef-scancode-riverbank-sip", + "ignorable_copyrights": [ + "Copyright (c) 2009 Riverbank Computing Limited" + ], + "ignorable_holders": [ + "Riverbank Computing Limited" + ] +} \ No newline at end of file diff --git a/docs/robert-hubley.LICENSE b/docs/robert-hubley.LICENSE index b9838d3deb..6f19dd2f4a 100644 --- a/docs/robert-hubley.LICENSE +++ b/docs/robert-hubley.LICENSE @@ -1,3 +1,13 @@ +--- +key: robert-hubley +short_name: Robert Hubley License +name: Robert Hubley License +category: Permissive +owner: Robert Hubley +homepage_url: http://www.bullzip.com/md5/vb/md5-vb-class.htm +spdx_license_key: LicenseRef-scancode-robert-hubley +--- + This software is provided ``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. diff --git a/docs/robert-hubley.html b/docs/robert-hubley.html index 0545950222..5260d01575 100644 --- a/docs/robert-hubley.html +++ b/docs/robert-hubley.html @@ -136,7 +136,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/robert-hubley.json b/docs/robert-hubley.json index 1a58fb5899..ae59caa41e 100644 --- a/docs/robert-hubley.json +++ b/docs/robert-hubley.json @@ -1 +1,9 @@ -{"key": "robert-hubley", "short_name": "Robert Hubley License", "name": "Robert Hubley License", "category": "Permissive", "owner": "Robert Hubley", "homepage_url": "http://www.bullzip.com/md5/vb/md5-vb-class.htm", "spdx_license_key": "LicenseRef-scancode-robert-hubley"} \ No newline at end of file +{ + "key": "robert-hubley", + "short_name": "Robert Hubley License", + "name": "Robert Hubley License", + "category": "Permissive", + "owner": "Robert Hubley", + "homepage_url": "http://www.bullzip.com/md5/vb/md5-vb-class.htm", + "spdx_license_key": "LicenseRef-scancode-robert-hubley" +} \ No newline at end of file diff --git a/docs/rogue-wave.LICENSE b/docs/rogue-wave.LICENSE index 0eeb4584a6..f98b778052 100644 --- a/docs/rogue-wave.LICENSE +++ b/docs/rogue-wave.LICENSE @@ -1,3 +1,18 @@ +--- +key: rogue-wave +short_name: Rogue Wave Software License +name: Rogue Wave Software License +category: Commercial +owner: Rogue Wave Software, Inc. +spdx_license_key: LicenseRef-scancode-rogue-wave +other_urls: + - http://www.roguewave.com/products.aspx +ignorable_copyrights: + - (c) Copyright Rogue Wave Software, Inc. +ignorable_holders: + - Rogue Wave Software, Inc. +--- + Rogue Wave Software License (c) Copyright Rogue Wave Software, Inc. @@ -29,4 +44,4 @@ rights." Use, duplication or disclosure is subject to restrictions as set forth in NASA FAR SUP 18-52.227-79 (April 1985) "Commercial Computer Software-Restricted Rights (April 1985)." If the Clause at 18-52.227-74 "Rights in Data General" is specified in the contract, -then the "Alternate III" clause applies. +then the "Alternate III" clause applies. \ No newline at end of file diff --git a/docs/rogue-wave.html b/docs/rogue-wave.html index cf572c44a3..6c6deb8278 100644 --- a/docs/rogue-wave.html +++ b/docs/rogue-wave.html @@ -166,8 +166,7 @@ set forth in NASA FAR SUP 18-52.227-79 (April 1985) "Commercial Computer Software-Restricted Rights (April 1985)." If the Clause at 18-52.227-74 "Rights in Data General" is specified in the contract, -then the "Alternate III" clause applies. - +then the "Alternate III" clause applies.
@@ -179,7 +178,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rogue-wave.json b/docs/rogue-wave.json index 06164b7c1c..eca898bc52 100644 --- a/docs/rogue-wave.json +++ b/docs/rogue-wave.json @@ -1 +1,17 @@ -{"key": "rogue-wave", "short_name": "Rogue Wave Software License", "name": "Rogue Wave Software License", "category": "Commercial", "owner": "Rogue Wave Software, Inc.", "spdx_license_key": "LicenseRef-scancode-rogue-wave", "other_urls": ["http://www.roguewave.com/products.aspx"], "ignorable_copyrights": ["(c) Copyright Rogue Wave Software, Inc."], "ignorable_holders": ["Rogue Wave Software, Inc."]} \ No newline at end of file +{ + "key": "rogue-wave", + "short_name": "Rogue Wave Software License", + "name": "Rogue Wave Software License", + "category": "Commercial", + "owner": "Rogue Wave Software, Inc.", + "spdx_license_key": "LicenseRef-scancode-rogue-wave", + "other_urls": [ + "http://www.roguewave.com/products.aspx" + ], + "ignorable_copyrights": [ + "(c) Copyright Rogue Wave Software, Inc." + ], + "ignorable_holders": [ + "Rogue Wave Software, Inc." + ] +} \ No newline at end of file diff --git a/docs/rpl-1.1.LICENSE b/docs/rpl-1.1.LICENSE index bb87c50abc..d961125537 100644 --- a/docs/rpl-1.1.LICENSE +++ b/docs/rpl-1.1.LICENSE @@ -1,3 +1,30 @@ +--- +key: rpl-1.1 +short_name: RPL 1.1 +name: Reciprocal Public License 1.1 +category: Copyleft Limited +owner: OSI - Open Source Initiative +homepage_url: http://opensource.org/licenses/RPL-1.1 +notes: | + Per SPDX.org, this license has been superseded by the Reciprocal Public + License, version 1.5 +spdx_license_key: RPL-1.1 +osi_license_key: RPL-1.1 +text_urls: + - http://opensource.org/licenses/RPL-1.1 +osi_url: http://opensource.org/licenses/RPL-1.1 +other_urls: + - http://www.gnu.org/licenses/license-list.html#RPL + - https://opensource.org/licenses/RPL-1.1 +ignorable_copyrights: + - Copyright (c) 1999-2002 Technical Pursuit Inc. + - Copyright (c) 2001-2002 Technical Pursuit Inc. +ignorable_holders: + - Technical Pursuit Inc. +ignorable_urls: + - http://www.technicalpursuit.com/ +--- + Reciprocal Public License, version 1.1 Copyright (C) 2001-2002 Technical Pursuit Inc., diff --git a/docs/rpl-1.1.html b/docs/rpl-1.1.html index 4cb23219e0..a176249711 100644 --- a/docs/rpl-1.1.html +++ b/docs/rpl-1.1.html @@ -354,7 +354,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rpl-1.1.json b/docs/rpl-1.1.json index 1cb328bc78..b9ee21d347 100644 --- a/docs/rpl-1.1.json +++ b/docs/rpl-1.1.json @@ -1 +1,29 @@ -{"key": "rpl-1.1", "short_name": "RPL 1.1", "name": "Reciprocal Public License 1.1", "category": "Copyleft Limited", "owner": "OSI - Open Source Initiative", "homepage_url": "http://opensource.org/licenses/RPL-1.1", "notes": "Per SPDX.org, this license has been superseded by the Reciprocal Public\nLicense, version 1.5\n", "spdx_license_key": "RPL-1.1", "osi_license_key": "RPL-1.1", "text_urls": ["http://opensource.org/licenses/RPL-1.1"], "osi_url": "http://opensource.org/licenses/RPL-1.1", "other_urls": ["http://www.gnu.org/licenses/license-list.html#RPL", "https://opensource.org/licenses/RPL-1.1"], "ignorable_copyrights": ["Copyright (c) 1999-2002 Technical Pursuit Inc.", "Copyright (c) 2001-2002 Technical Pursuit Inc."], "ignorable_holders": ["Technical Pursuit Inc."], "ignorable_urls": ["http://www.technicalpursuit.com/"]} \ No newline at end of file +{ + "key": "rpl-1.1", + "short_name": "RPL 1.1", + "name": "Reciprocal Public License 1.1", + "category": "Copyleft Limited", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://opensource.org/licenses/RPL-1.1", + "notes": "Per SPDX.org, this license has been superseded by the Reciprocal Public\nLicense, version 1.5\n", + "spdx_license_key": "RPL-1.1", + "osi_license_key": "RPL-1.1", + "text_urls": [ + "http://opensource.org/licenses/RPL-1.1" + ], + "osi_url": "http://opensource.org/licenses/RPL-1.1", + "other_urls": [ + "http://www.gnu.org/licenses/license-list.html#RPL", + "https://opensource.org/licenses/RPL-1.1" + ], + "ignorable_copyrights": [ + "Copyright (c) 1999-2002 Technical Pursuit Inc.", + "Copyright (c) 2001-2002 Technical Pursuit Inc." + ], + "ignorable_holders": [ + "Technical Pursuit Inc." + ], + "ignorable_urls": [ + "http://www.technicalpursuit.com/" + ] +} \ No newline at end of file diff --git a/docs/rpl-1.5.LICENSE b/docs/rpl-1.5.LICENSE index b89ea8776c..9435d0b556 100644 --- a/docs/rpl-1.5.LICENSE +++ b/docs/rpl-1.5.LICENSE @@ -1,3 +1,28 @@ +--- +key: rpl-1.5 +short_name: RPL 1.5 +name: Reciprocal Public License 1.5 +category: Copyleft Limited +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/rpl1.5.txt +notes: | + Per SPDX.org, this license was released 15 July 2007 This license is OSI + certified. +spdx_license_key: RPL-1.5 +osi_license_key: RPL-1.5 +text_urls: + - http://www.opensource.org/licenses/rpl1.5.txt +osi_url: http://www.opensource.org/licenses/rpl1.5.txt +other_urls: + - http://www.gnu.org/licenses/license-list.html#RPL + - http://www.opensource.org/licenses/RPL-1.5 + - https://opensource.org/licenses/RPL-1.5 +ignorable_copyrights: + - Copyright (c) 2001-2007 Technical Pursuit Inc. +ignorable_holders: + - Technical Pursuit Inc. +--- + Reciprocal Public License (RPL) Version 1.5, July 15, 2007 diff --git a/docs/rpl-1.5.html b/docs/rpl-1.5.html index 9bc74d7bd4..7cb0f7ebcd 100644 --- a/docs/rpl-1.5.html +++ b/docs/rpl-1.5.html @@ -343,7 +343,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rpl-1.5.json b/docs/rpl-1.5.json index 3ba2ea1a57..3cb8b8a541 100644 --- a/docs/rpl-1.5.json +++ b/docs/rpl-1.5.json @@ -1 +1,26 @@ -{"key": "rpl-1.5", "short_name": "RPL 1.5", "name": "Reciprocal Public License 1.5", "category": "Copyleft Limited", "owner": "OSI - Open Source Initiative", "homepage_url": "http://www.opensource.org/licenses/rpl1.5.txt", "notes": "Per SPDX.org, this license was released 15 July 2007 This license is OSI\ncertified.\n", "spdx_license_key": "RPL-1.5", "osi_license_key": "RPL-1.5", "text_urls": ["http://www.opensource.org/licenses/rpl1.5.txt"], "osi_url": "http://www.opensource.org/licenses/rpl1.5.txt", "other_urls": ["http://www.gnu.org/licenses/license-list.html#RPL", "http://www.opensource.org/licenses/RPL-1.5", "https://opensource.org/licenses/RPL-1.5"], "ignorable_copyrights": ["Copyright (c) 2001-2007 Technical Pursuit Inc."], "ignorable_holders": ["Technical Pursuit Inc."]} \ No newline at end of file +{ + "key": "rpl-1.5", + "short_name": "RPL 1.5", + "name": "Reciprocal Public License 1.5", + "category": "Copyleft Limited", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://www.opensource.org/licenses/rpl1.5.txt", + "notes": "Per SPDX.org, this license was released 15 July 2007 This license is OSI\ncertified.\n", + "spdx_license_key": "RPL-1.5", + "osi_license_key": "RPL-1.5", + "text_urls": [ + "http://www.opensource.org/licenses/rpl1.5.txt" + ], + "osi_url": "http://www.opensource.org/licenses/rpl1.5.txt", + "other_urls": [ + "http://www.gnu.org/licenses/license-list.html#RPL", + "http://www.opensource.org/licenses/RPL-1.5", + "https://opensource.org/licenses/RPL-1.5" + ], + "ignorable_copyrights": [ + "Copyright (c) 2001-2007 Technical Pursuit Inc." + ], + "ignorable_holders": [ + "Technical Pursuit Inc." + ] +} \ No newline at end of file diff --git a/docs/rpsl-1.0.LICENSE b/docs/rpsl-1.0.LICENSE index 9f52508543..7db45e41d1 100644 --- a/docs/rpsl-1.0.LICENSE +++ b/docs/rpsl-1.0.LICENSE @@ -1,3 +1,33 @@ +--- +key: rpsl-1.0 +short_name: RealNetworks Public Source License 1.0 +name: RealNetworks Public Source License v1.0 +category: Copyleft Limited +owner: RealNetworks +homepage_url: http://opensource.org/licenses/real.php +notes: This license is OSI certified +spdx_license_key: RPSL-1.0 +osi_license_key: RPSL-1.0 +text_urls: + - http://opensource.org/licenses/real.php +osi_url: http://opensource.org/licenses/real.php +other_urls: + - http://www.opensource.org/licenses/RPSL-1.0 + - https://helixcommunity.org/content/rpsl + - https://opensource.org/licenses/RPSL-1.0 +ignorable_copyrights: + - Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors + - Copyright (c) RealNetworks, Inc., 1995-2002 +ignorable_holders: + - RealNetworks, Inc. + - RealNetworks, Inc. and/or its licensors +ignorable_urls: + - http://www.realnetworks.com/info/helixlogo.html + - https://www.helixcommunity.org/content/complicense + - https://www.helixcommunity.org/content/rcsl + - https://www.helixcommunity.org/content/rpsl +--- + RealNetworks Public Source License Version 1.0 (Rev. Date October 28, 2002) diff --git a/docs/rpsl-1.0.html b/docs/rpsl-1.0.html index 0e7ae19b5c..d1d041fc1b 100644 --- a/docs/rpsl-1.0.html +++ b/docs/rpsl-1.0.html @@ -709,7 +709,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rpsl-1.0.json b/docs/rpsl-1.0.json index 6721cdad76..0c8fb8f690 100644 --- a/docs/rpsl-1.0.json +++ b/docs/rpsl-1.0.json @@ -1 +1,34 @@ -{"key": "rpsl-1.0", "short_name": "RealNetworks Public Source License 1.0", "name": "RealNetworks Public Source License v1.0", "category": "Copyleft Limited", "owner": "RealNetworks", "homepage_url": "http://opensource.org/licenses/real.php", "notes": "This license is OSI certified", "spdx_license_key": "RPSL-1.0", "osi_license_key": "RPSL-1.0", "text_urls": ["http://opensource.org/licenses/real.php"], "osi_url": "http://opensource.org/licenses/real.php", "other_urls": ["http://www.opensource.org/licenses/RPSL-1.0", "https://helixcommunity.org/content/rpsl", "https://opensource.org/licenses/RPSL-1.0"], "ignorable_copyrights": ["Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors", "Copyright (c) RealNetworks, Inc., 1995-2002"], "ignorable_holders": ["RealNetworks, Inc.", "RealNetworks, Inc. and/or its licensors"], "ignorable_urls": ["http://www.realnetworks.com/info/helixlogo.html", "https://www.helixcommunity.org/content/complicense", "https://www.helixcommunity.org/content/rcsl", "https://www.helixcommunity.org/content/rpsl"]} \ No newline at end of file +{ + "key": "rpsl-1.0", + "short_name": "RealNetworks Public Source License 1.0", + "name": "RealNetworks Public Source License v1.0", + "category": "Copyleft Limited", + "owner": "RealNetworks", + "homepage_url": "http://opensource.org/licenses/real.php", + "notes": "This license is OSI certified", + "spdx_license_key": "RPSL-1.0", + "osi_license_key": "RPSL-1.0", + "text_urls": [ + "http://opensource.org/licenses/real.php" + ], + "osi_url": "http://opensource.org/licenses/real.php", + "other_urls": [ + "http://www.opensource.org/licenses/RPSL-1.0", + "https://helixcommunity.org/content/rpsl", + "https://opensource.org/licenses/RPSL-1.0" + ], + "ignorable_copyrights": [ + "Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors", + "Copyright (c) RealNetworks, Inc., 1995-2002" + ], + "ignorable_holders": [ + "RealNetworks, Inc.", + "RealNetworks, Inc. and/or its licensors" + ], + "ignorable_urls": [ + "http://www.realnetworks.com/info/helixlogo.html", + "https://www.helixcommunity.org/content/complicense", + "https://www.helixcommunity.org/content/rcsl", + "https://www.helixcommunity.org/content/rpsl" + ] +} \ No newline at end of file diff --git a/docs/rrdtool-floss-exception-2.0.LICENSE b/docs/rrdtool-floss-exception-2.0.LICENSE index de724aaf76..d36fc8b061 100644 --- a/docs/rrdtool-floss-exception-2.0.LICENSE +++ b/docs/rrdtool-floss-exception-2.0.LICENSE @@ -1,3 +1,18 @@ +--- +key: rrdtool-floss-exception-2.0 +short_name: RRDtool FLOSS Exception to GPL 2.0 +name: RRDtool FLOSS Exception to GPL 2.0 +category: Copyleft Limited +owner: RRDtool Project +homepage_url: https://raw.github.com/oetiker/rrdtool-1.x/master/COPYRIGHT +is_exception: yes +spdx_license_key: LicenseRef-scancode-rrdtool-floss-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +ignorable_urls: + - http://www.mysql.com/company/legal/licensing/foss-exception.html +--- + FLOSS License Exception ======================= (Adapted from http://www.mysql.com/company/legal/licensing/foss-exception.html ) diff --git a/docs/rrdtool-floss-exception-2.0.html b/docs/rrdtool-floss-exception-2.0.html index aae9f875a7..f978c8b164 100644 --- a/docs/rrdtool-floss-exception-2.0.html +++ b/docs/rrdtool-floss-exception-2.0.html @@ -217,7 +217,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rrdtool-floss-exception-2.0.json b/docs/rrdtool-floss-exception-2.0.json index e59d151318..18d0362b53 100644 --- a/docs/rrdtool-floss-exception-2.0.json +++ b/docs/rrdtool-floss-exception-2.0.json @@ -1 +1,16 @@ -{"key": "rrdtool-floss-exception-2.0", "short_name": "RRDtool FLOSS Exception to GPL 2.0", "name": "RRDtool FLOSS Exception to GPL 2.0", "category": "Copyleft Limited", "owner": "RRDtool Project", "homepage_url": "https://raw.github.com/oetiker/rrdtool-1.x/master/COPYRIGHT", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-rrdtool-floss-exception-2.0", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "ignorable_urls": ["http://www.mysql.com/company/legal/licensing/foss-exception.html"]} \ No newline at end of file +{ + "key": "rrdtool-floss-exception-2.0", + "short_name": "RRDtool FLOSS Exception to GPL 2.0", + "name": "RRDtool FLOSS Exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "RRDtool Project", + "homepage_url": "https://raw.github.com/oetiker/rrdtool-1.x/master/COPYRIGHT", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-rrdtool-floss-exception-2.0", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "ignorable_urls": [ + "http://www.mysql.com/company/legal/licensing/foss-exception.html" + ] +} \ No newline at end of file diff --git a/docs/rsa-1990.LICENSE b/docs/rsa-1990.LICENSE index ced67316b6..a56ed74009 100644 --- a/docs/rsa-1990.LICENSE +++ b/docs/rsa-1990.LICENSE @@ -1,7 +1,19 @@ +--- +key: rsa-1990 +short_name: RSA 1990 +name: RSA Data Security Notice 1990 +category: Permissive +owner: RSA (the Security Division of EMC) +spdx_license_key: LicenseRef-scancode-rsa-1990 +text_urls: + - http://svn.apache.org/repos/asf/apr/apr/trunk/test/testmd4.c + - http://www.opensource.apple.com/source/libmd/libmd-3/mddriver.c?txt +--- + RSA Data Security, Inc. makes no representations concerning either the merchantability of this software or the suitability of this software for any particular purpose. It is provided "as is" without express or implied warranty of any kind. These notices must be retained in any copies of any part of this -documentation and/or software. +documentation and/or software. \ No newline at end of file diff --git a/docs/rsa-1990.html b/docs/rsa-1990.html index d2eaafcf14..0b611a8f13 100644 --- a/docs/rsa-1990.html +++ b/docs/rsa-1990.html @@ -123,8 +123,7 @@ without express or implied warranty of any kind. These notices must be retained in any copies of any part of this -documentation and/or software. - +documentation and/or software.
@@ -136,7 +135,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rsa-1990.json b/docs/rsa-1990.json index 0bb32ae0ef..712781e16b 100644 --- a/docs/rsa-1990.json +++ b/docs/rsa-1990.json @@ -1 +1,12 @@ -{"key": "rsa-1990", "short_name": "RSA 1990", "name": "RSA Data Security Notice 1990", "category": "Permissive", "owner": "RSA (the Security Division of EMC)", "spdx_license_key": "LicenseRef-scancode-rsa-1990", "text_urls": ["http://svn.apache.org/repos/asf/apr/apr/trunk/test/testmd4.c", "http://www.opensource.apple.com/source/libmd/libmd-3/mddriver.c?txt"]} \ No newline at end of file +{ + "key": "rsa-1990", + "short_name": "RSA 1990", + "name": "RSA Data Security Notice 1990", + "category": "Permissive", + "owner": "RSA (the Security Division of EMC)", + "spdx_license_key": "LicenseRef-scancode-rsa-1990", + "text_urls": [ + "http://svn.apache.org/repos/asf/apr/apr/trunk/test/testmd4.c", + "http://www.opensource.apple.com/source/libmd/libmd-3/mddriver.c?txt" + ] +} \ No newline at end of file diff --git a/docs/rsa-cryptoki.LICENSE b/docs/rsa-cryptoki.LICENSE index 4aba249a25..3c065d6978 100644 --- a/docs/rsa-cryptoki.LICENSE +++ b/docs/rsa-cryptoki.LICENSE @@ -1,3 +1,15 @@ +--- +key: rsa-cryptoki +short_name: RSA Cryptoki License +name: RSA Cryptoki License +category: Permissive +owner: RSA (the Security Division of EMC) +homepage_url: http://www.rsa.com/rsalabs/node.asp?id=2133 +spdx_license_key: LicenseRef-scancode-rsa-cryptoki +text_urls: + - http://www.rsa.com/rsalabs/node.asp?id=2133 +--- + DISCLAIMER Regarding the header / include files: License to copy and use this software is granted provided that it is identified as "RSA Security Inc. PKCS #11 Cryptographic Token Interface (Cryptoki)" in all material mentioning or referencing this software or this function. diff --git a/docs/rsa-cryptoki.html b/docs/rsa-cryptoki.html index 12ef306a34..88a9a8e5ef 100644 --- a/docs/rsa-cryptoki.html +++ b/docs/rsa-cryptoki.html @@ -145,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rsa-cryptoki.json b/docs/rsa-cryptoki.json index 1f0ab67abd..27fd16d19e 100644 --- a/docs/rsa-cryptoki.json +++ b/docs/rsa-cryptoki.json @@ -1 +1,12 @@ -{"key": "rsa-cryptoki", "short_name": "RSA Cryptoki License", "name": "RSA Cryptoki License", "category": "Permissive", "owner": "RSA (the Security Division of EMC)", "homepage_url": "http://www.rsa.com/rsalabs/node.asp?id=2133", "spdx_license_key": "LicenseRef-scancode-rsa-cryptoki", "text_urls": ["http://www.rsa.com/rsalabs/node.asp?id=2133"]} \ No newline at end of file +{ + "key": "rsa-cryptoki", + "short_name": "RSA Cryptoki License", + "name": "RSA Cryptoki License", + "category": "Permissive", + "owner": "RSA (the Security Division of EMC)", + "homepage_url": "http://www.rsa.com/rsalabs/node.asp?id=2133", + "spdx_license_key": "LicenseRef-scancode-rsa-cryptoki", + "text_urls": [ + "http://www.rsa.com/rsalabs/node.asp?id=2133" + ] +} \ No newline at end of file diff --git a/docs/rsa-demo.LICENSE b/docs/rsa-demo.LICENSE index 7e97dc10f4..3bb1a1a275 100644 --- a/docs/rsa-demo.LICENSE +++ b/docs/rsa-demo.LICENSE @@ -1,3 +1,12 @@ +--- +key: rsa-demo +short_name: RSA Demo License +name: RSA Demo License +category: Permissive +owner: RSA (the Security Division of EMC) +spdx_license_key: LicenseRef-scancode-rsa-demo +--- + This file is used to demonstrate how to interface to an RSA Data Security, Inc. licensed development product. @@ -5,4 +14,4 @@ You have a royalty-free right to use, modify, reproduce and distribute this demonstration file (including any modified version), provided that you agree that RSA Data Security, Inc. has no warranty, implied or otherwise, or liability -for this demonstration file or any modified version. +for this demonstration file or any modified version. \ No newline at end of file diff --git a/docs/rsa-demo.html b/docs/rsa-demo.html index bd83b5764c..5f67b55bf9 100644 --- a/docs/rsa-demo.html +++ b/docs/rsa-demo.html @@ -115,8 +115,7 @@ distribute this demonstration file (including any modified version), provided that you agree that RSA Data Security, Inc. has no warranty, implied or otherwise, or liability -for this demonstration file or any modified version. - +for this demonstration file or any modified version.
@@ -128,7 +127,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rsa-demo.json b/docs/rsa-demo.json index 74e4b9ad15..0f676db2a0 100644 --- a/docs/rsa-demo.json +++ b/docs/rsa-demo.json @@ -1 +1,8 @@ -{"key": "rsa-demo", "short_name": "RSA Demo License", "name": "RSA Demo License", "category": "Permissive", "owner": "RSA (the Security Division of EMC)", "spdx_license_key": "LicenseRef-scancode-rsa-demo"} \ No newline at end of file +{ + "key": "rsa-demo", + "short_name": "RSA Demo License", + "name": "RSA Demo License", + "category": "Permissive", + "owner": "RSA (the Security Division of EMC)", + "spdx_license_key": "LicenseRef-scancode-rsa-demo" +} \ No newline at end of file diff --git a/docs/rsa-md2.LICENSE b/docs/rsa-md2.LICENSE index c9f0700e50..bf537edaf7 100644 --- a/docs/rsa-md2.LICENSE +++ b/docs/rsa-md2.LICENSE @@ -1,3 +1,12 @@ +--- +key: rsa-md2 +short_name: RSA-MD2 License +name: RSA Data Security MD2 +category: Free Restricted +owner: RSA (the Security Division of EMC) +spdx_license_key: LicenseRef-scancode-rsa-md2 +--- + License to copy and use this software is granted for non-commercial Internet Privacy-Enhanced Mail provided that it is identified as the "RSA Data Security, Inc. MD2 Message Digest Algorithm" in all material mentioning or referencing this software or this function. RSA Data Security, Inc. makes no representations concerning either the merchantability of this software or the suitability of this software for any particular purpose. It is provided "as is" without express or implied warranty of any kind. diff --git a/docs/rsa-md2.html b/docs/rsa-md2.html index 9ab34a8071..1fbc1e6e55 100644 --- a/docs/rsa-md2.html +++ b/docs/rsa-md2.html @@ -124,7 +124,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rsa-md2.json b/docs/rsa-md2.json index 238651ff1c..ee87e25871 100644 --- a/docs/rsa-md2.json +++ b/docs/rsa-md2.json @@ -1 +1,8 @@ -{"key": "rsa-md2", "short_name": "RSA-MD2 License", "name": "RSA Data Security MD2", "category": "Free Restricted", "owner": "RSA (the Security Division of EMC)", "spdx_license_key": "LicenseRef-scancode-rsa-md2"} \ No newline at end of file +{ + "key": "rsa-md2", + "short_name": "RSA-MD2 License", + "name": "RSA Data Security MD2", + "category": "Free Restricted", + "owner": "RSA (the Security Division of EMC)", + "spdx_license_key": "LicenseRef-scancode-rsa-md2" +} \ No newline at end of file diff --git a/docs/rsa-md4.LICENSE b/docs/rsa-md4.LICENSE index 211d6f3c14..4012ddbf1e 100644 --- a/docs/rsa-md4.LICENSE +++ b/docs/rsa-md4.LICENSE @@ -1,3 +1,12 @@ +--- +key: rsa-md4 +short_name: RSA-MD4 License +name: RSA Data Security MD4 +category: Permissive +owner: RSA (the Security Division of EMC) +spdx_license_key: LicenseRef-scancode-rsa-md4 +--- + License to copy and use this software is granted provided that it is identified as the "RSA Data Security, Inc. MD4 Message-Digest Algorithm" in all material mentioning or referencing this software diff --git a/docs/rsa-md4.html b/docs/rsa-md4.html index e5b94d1094..eb47377188 100644 --- a/docs/rsa-md4.html +++ b/docs/rsa-md4.html @@ -136,7 +136,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rsa-md4.json b/docs/rsa-md4.json index d8507ec802..74bf4be31e 100644 --- a/docs/rsa-md4.json +++ b/docs/rsa-md4.json @@ -1 +1,8 @@ -{"key": "rsa-md4", "short_name": "RSA-MD4 License", "name": "RSA Data Security MD4", "category": "Permissive", "owner": "RSA (the Security Division of EMC)", "spdx_license_key": "LicenseRef-scancode-rsa-md4"} \ No newline at end of file +{ + "key": "rsa-md4", + "short_name": "RSA-MD4 License", + "name": "RSA Data Security MD4", + "category": "Permissive", + "owner": "RSA (the Security Division of EMC)", + "spdx_license_key": "LicenseRef-scancode-rsa-md4" +} \ No newline at end of file diff --git a/docs/rsa-md5.LICENSE b/docs/rsa-md5.LICENSE index a2d03825c1..3a07941309 100644 --- a/docs/rsa-md5.LICENSE +++ b/docs/rsa-md5.LICENSE @@ -1,3 +1,17 @@ +--- +key: rsa-md5 +short_name: RSA-MD5 License +name: RSA Data Security MD5 +category: Permissive +owner: RSA (the Security Division of EMC) +homepage_url: http://www.faqs.org/rfcs/rfc1321.html +spdx_license_key: RSA-MD +text_urls: + - http://www.ietf.org/rfc/rfc1321.txt +other_urls: + - http://www.faqs.org/rfcs/rfc1321.html +--- + License to copy and use this software is granted provided that it is identified as the "RSA Data Security, Inc. MD5 Message-Digest Algorithm" in all material mentioning or referencing this software @@ -14,4 +28,4 @@ software for any particular purpose. It is provided "as is" without express or implied warranty of any kind. These notices must be retained in any copies of any part of this -documentation and/or software. +documentation and/or software. \ No newline at end of file diff --git a/docs/rsa-md5.html b/docs/rsa-md5.html index db3781466e..8c28c74719 100644 --- a/docs/rsa-md5.html +++ b/docs/rsa-md5.html @@ -149,8 +149,7 @@ without express or implied warranty of any kind. These notices must be retained in any copies of any part of this -documentation and/or software. - +documentation and/or software.
@@ -162,7 +161,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rsa-md5.json b/docs/rsa-md5.json index 5c9bd7f98f..379cd60d4f 100644 --- a/docs/rsa-md5.json +++ b/docs/rsa-md5.json @@ -1 +1,15 @@ -{"key": "rsa-md5", "short_name": "RSA-MD5 License", "name": "RSA Data Security MD5", "category": "Permissive", "owner": "RSA (the Security Division of EMC)", "homepage_url": "http://www.faqs.org/rfcs/rfc1321.html", "spdx_license_key": "RSA-MD", "text_urls": ["http://www.ietf.org/rfc/rfc1321.txt"], "other_urls": ["http://www.faqs.org/rfcs/rfc1321.html"]} \ No newline at end of file +{ + "key": "rsa-md5", + "short_name": "RSA-MD5 License", + "name": "RSA Data Security MD5", + "category": "Permissive", + "owner": "RSA (the Security Division of EMC)", + "homepage_url": "http://www.faqs.org/rfcs/rfc1321.html", + "spdx_license_key": "RSA-MD", + "text_urls": [ + "http://www.ietf.org/rfc/rfc1321.txt" + ], + "other_urls": [ + "http://www.faqs.org/rfcs/rfc1321.html" + ] +} \ No newline at end of file diff --git a/docs/rsa-proprietary.LICENSE b/docs/rsa-proprietary.LICENSE index f2bd6e4d5b..80a133a1a3 100644 --- a/docs/rsa-proprietary.LICENSE +++ b/docs/rsa-proprietary.LICENSE @@ -1,2 +1,16 @@ +--- +key: rsa-proprietary +short_name: RSA Proprietary +name: RSA Proprietary Shrinkwrap License +category: Commercial +owner: RSA (the Security Division of EMC) +homepage_url: https://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf +spdx_license_key: LicenseRef-scancode-rsa-proprietary +text_urls: + - https://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf +ignorable_urls: + - https://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf +--- + The text of this license is secured, and may be viewed at https://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf \ No newline at end of file diff --git a/docs/rsa-proprietary.html b/docs/rsa-proprietary.html index fea2e44744..eccd3403ca 100644 --- a/docs/rsa-proprietary.html +++ b/docs/rsa-proprietary.html @@ -146,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rsa-proprietary.json b/docs/rsa-proprietary.json index 0571732e0b..92d616e260 100644 --- a/docs/rsa-proprietary.json +++ b/docs/rsa-proprietary.json @@ -1 +1,15 @@ -{"key": "rsa-proprietary", "short_name": "RSA Proprietary", "name": "RSA Proprietary Shrinkwrap License", "category": "Commercial", "owner": "RSA (the Security Division of EMC)", "homepage_url": "https://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf", "spdx_license_key": "LicenseRef-scancode-rsa-proprietary", "text_urls": ["https://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf"], "ignorable_urls": ["https://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf"]} \ No newline at end of file +{ + "key": "rsa-proprietary", + "short_name": "RSA Proprietary", + "name": "RSA Proprietary Shrinkwrap License", + "category": "Commercial", + "owner": "RSA (the Security Division of EMC)", + "homepage_url": "https://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf", + "spdx_license_key": "LicenseRef-scancode-rsa-proprietary", + "text_urls": [ + "https://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf" + ], + "ignorable_urls": [ + "https://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf" + ] +} \ No newline at end of file diff --git a/docs/rtools-util.LICENSE b/docs/rtools-util.LICENSE index 110c18d67b..10aaa8cd43 100644 --- a/docs/rtools-util.LICENSE +++ b/docs/rtools-util.LICENSE @@ -1,3 +1,14 @@ +--- +key: rtools-util +short_name: RTools.Util License +name: RTools.Util License +category: Permissive +owner: Ryan Seghers +spdx_license_key: LicenseRef-scancode-rtools-util +other_urls: + - http://www.codeproject.com/Articles/3143/RTools-Util-C-Library +--- + This software is provided AS IS. No warranty is granted, neither expressed nor implied. USE THIS SOFTWARE AT YOUR OWN RISK. NO REPRESENTATION OF MERCHANTABILITY or FITNESS FOR ANY diff --git a/docs/rtools-util.html b/docs/rtools-util.html index 593524ca60..fee65d7e7b 100644 --- a/docs/rtools-util.html +++ b/docs/rtools-util.html @@ -141,7 +141,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rtools-util.json b/docs/rtools-util.json index 25f0ac1592..511f69d91a 100644 --- a/docs/rtools-util.json +++ b/docs/rtools-util.json @@ -1 +1,11 @@ -{"key": "rtools-util", "short_name": "RTools.Util License", "name": "RTools.Util License", "category": "Permissive", "owner": "Ryan Seghers", "spdx_license_key": "LicenseRef-scancode-rtools-util", "other_urls": ["http://www.codeproject.com/Articles/3143/RTools-Util-C-Library"]} \ No newline at end of file +{ + "key": "rtools-util", + "short_name": "RTools.Util License", + "name": "RTools.Util License", + "category": "Permissive", + "owner": "Ryan Seghers", + "spdx_license_key": "LicenseRef-scancode-rtools-util", + "other_urls": [ + "http://www.codeproject.com/Articles/3143/RTools-Util-C-Library" + ] +} \ No newline at end of file diff --git a/docs/ruby.LICENSE b/docs/ruby.LICENSE index 78c2c59f03..2418429db5 100644 --- a/docs/ruby.LICENSE +++ b/docs/ruby.LICENSE @@ -1,3 +1,25 @@ +--- +key: ruby +short_name: Ruby License +name: Ruby License +category: Copyleft Limited +owner: Ruby +homepage_url: http://www.ruby-lang.org/en/LICENSE.txt +notes: | + This version of the Ruby license is the latest found in the dual license + COPYING dated from 2010-09-15 Per SPDX.org, Ruby is disjunctively licensed + project that allows the choice of this license and another. The other + license choice has changed over time (from GPL originally, to BSD-2-Clause + currently), so one needs to be aware of that change. The Ruby License + itself is un-versioned, but has varied a bit over the years, the last + substantive variation being in 2002. +spdx_license_key: Ruby +text_urls: + - http://www.ruby-lang.org/en/LICENSE.txt +other_urls: + - https://git.ruby-lang.org/ruby.git/commit/COPYING?id=2cd6800fd8437b1f862f3f5c44db877159271d17 + - https://raw.githubusercontent.com/ruby/ruby/2cd6800fd8437b1f862f3f5c44db877159271d17/COPYING +--- 1. You may make and give away verbatim copies of the source form of the software without restriction, provided that you duplicate all of the diff --git a/docs/ruby.html b/docs/ruby.html index d60b599bc6..83b3c1894c 100644 --- a/docs/ruby.html +++ b/docs/ruby.html @@ -140,15 +140,14 @@
license_text
-

-  1. You may make and give away verbatim copies of the source form of the
+    
  1. You may make and give away verbatim copies of the source form of the
      software without restriction, provided that you duplicate all of the
      original copyright notices and associated disclaimers.
 
@@ -211,7 +210,8 @@
       AboutCode
     

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ruby.json b/docs/ruby.json index fc4667ba1d..690723b731 100644 --- a/docs/ruby.json +++ b/docs/ruby.json @@ -1 +1,17 @@ -{"key": "ruby", "short_name": "Ruby License", "name": "Ruby License", "category": "Copyleft Limited", "owner": "Ruby", "homepage_url": "http://www.ruby-lang.org/en/LICENSE.txt", "notes": "This version of the Ruby license is the latest found in the dual license\nCOPYING dated from 2010-09-15 Per SPDX.org, Ruby is disjunctively licensed\nproject that allows the choice of this license and another. The other\nlicense choice has changed over time (from GPL originally, to BSD-2-Clause\ncurrently), so one needs to be aware of that change. The Ruby License\nitself is un-versioned, but has varied a bit over the years, the last\nsubstantive variation being in 2002.\n", "spdx_license_key": "Ruby", "text_urls": ["http://www.ruby-lang.org/en/LICENSE.txt"], "other_urls": ["https://raw.githubusercontent.com/ruby/ruby/2cd6800fd8437b1f862f3f5c44db877159271d17/COPYING"]} \ No newline at end of file +{ + "key": "ruby", + "short_name": "Ruby License", + "name": "Ruby License", + "category": "Copyleft Limited", + "owner": "Ruby", + "homepage_url": "http://www.ruby-lang.org/en/LICENSE.txt", + "notes": "This version of the Ruby license is the latest found in the dual license\nCOPYING dated from 2010-09-15 Per SPDX.org, Ruby is disjunctively licensed\nproject that allows the choice of this license and another. The other\nlicense choice has changed over time (from GPL originally, to BSD-2-Clause\ncurrently), so one needs to be aware of that change. The Ruby License\nitself is un-versioned, but has varied a bit over the years, the last\nsubstantive variation being in 2002.\n", + "spdx_license_key": "Ruby", + "text_urls": [ + "http://www.ruby-lang.org/en/LICENSE.txt" + ], + "other_urls": [ + "https://git.ruby-lang.org/ruby.git/commit/COPYING?id=2cd6800fd8437b1f862f3f5c44db877159271d17", + "https://raw.githubusercontent.com/ruby/ruby/2cd6800fd8437b1f862f3f5c44db877159271d17/COPYING" + ] +} \ No newline at end of file diff --git a/docs/ruby.yml b/docs/ruby.yml index 5b3186c22c..af950044aa 100644 --- a/docs/ruby.yml +++ b/docs/ruby.yml @@ -16,4 +16,5 @@ spdx_license_key: Ruby text_urls: - http://www.ruby-lang.org/en/LICENSE.txt other_urls: + - https://git.ruby-lang.org/ruby.git/commit/COPYING?id=2cd6800fd8437b1f862f3f5c44db877159271d17 - https://raw.githubusercontent.com/ruby/ruby/2cd6800fd8437b1f862f3f5c44db877159271d17/COPYING diff --git a/docs/rubyencoder-commercial.LICENSE b/docs/rubyencoder-commercial.LICENSE index 5325a03d7c..4f918375c9 100644 --- a/docs/rubyencoder-commercial.LICENSE +++ b/docs/rubyencoder-commercial.LICENSE @@ -1,3 +1,19 @@ +--- +key: rubyencoder-commercial +short_name: RubyEncoder Commercial Licence +name: RubyEncoder Commercial Licence +category: Commercial +owner: RubyEncoder +homepage_url: https://www.rubyencoder.com/terms.html +spdx_license_key: LicenseRef-scancode-rubyencoder-commercial +other_urls: + - https://www.rubyencoder.com/loaders.html# +ignorable_urls: + - http://www.rubyencoder.com/ +ignorable_emails: + - support@rubyencoder.com +--- + Terms & Conditions PLEASE READ THIS CAREFULLY BEFORE USING MATERIALS: A IMPORTANT PROVISIONS diff --git a/docs/rubyencoder-commercial.html b/docs/rubyencoder-commercial.html index 25dfb2b1a6..45ba805a49 100644 --- a/docs/rubyencoder-commercial.html +++ b/docs/rubyencoder-commercial.html @@ -270,7 +270,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rubyencoder-commercial.json b/docs/rubyencoder-commercial.json index 190908d6fc..210fc4211a 100644 --- a/docs/rubyencoder-commercial.json +++ b/docs/rubyencoder-commercial.json @@ -1 +1,18 @@ -{"key": "rubyencoder-commercial", "short_name": "RubyEncoder Commercial Licence", "name": "RubyEncoder Commercial Licence", "category": "Commercial", "owner": "RubyEncoder", "homepage_url": "https://www.rubyencoder.com/terms.html", "spdx_license_key": "LicenseRef-scancode-rubyencoder-commercial", "other_urls": ["https://www.rubyencoder.com/loaders.html#"], "ignorable_urls": ["http://www.rubyencoder.com/"], "ignorable_emails": ["support@rubyencoder.com"]} \ No newline at end of file +{ + "key": "rubyencoder-commercial", + "short_name": "RubyEncoder Commercial Licence", + "name": "RubyEncoder Commercial Licence", + "category": "Commercial", + "owner": "RubyEncoder", + "homepage_url": "https://www.rubyencoder.com/terms.html", + "spdx_license_key": "LicenseRef-scancode-rubyencoder-commercial", + "other_urls": [ + "https://www.rubyencoder.com/loaders.html#" + ], + "ignorable_urls": [ + "http://www.rubyencoder.com/" + ], + "ignorable_emails": [ + "support@rubyencoder.com" + ] +} \ No newline at end of file diff --git a/docs/rubyencoder-loader.LICENSE b/docs/rubyencoder-loader.LICENSE index 861399a19b..166b62f36b 100644 --- a/docs/rubyencoder-loader.LICENSE +++ b/docs/rubyencoder-loader.LICENSE @@ -1,3 +1,22 @@ +--- +key: rubyencoder-loader +short_name: RubyEncoder Loader Licence +name: RubyEncoder Loader Licence +category: Proprietary Free +owner: RubyEncoder +homepage_url: https://www.rubyencoder.com/loaders.html +spdx_license_key: LicenseRef-scancode-rubyencoder-loader +other_urls: + - https://www.rubyencoder.com/terms.html +ignorable_authors: + - assurances as SourceGuardian Ltd +ignorable_urls: + - http://www.rubyencoder.com/ + - http://www.rubyencoder.com/terms.html +ignorable_emails: + - support@rubyencoder.com +--- + RUBYENCODER LOADER LICENCE This Licence applies to the use of the Loaders for RubyEncoder by End Users and is granted by SourceGuardian Ltd (registered number 05663267) which is referred to in this Licence as “RubyEncoder”. The licence terms for the use of RubyEncoder software are set out at http://www.rubyencoder.com/terms.html. If you are a licensee of RubyEncoder your use of the Loaders is governed by that licence. diff --git a/docs/rubyencoder-loader.html b/docs/rubyencoder-loader.html index 7bf5d4505a..60f8ce32ef 100644 --- a/docs/rubyencoder-loader.html +++ b/docs/rubyencoder-loader.html @@ -203,7 +203,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rubyencoder-loader.json b/docs/rubyencoder-loader.json index d2b2b80414..9294c91940 100644 --- a/docs/rubyencoder-loader.json +++ b/docs/rubyencoder-loader.json @@ -1 +1,22 @@ -{"key": "rubyencoder-loader", "short_name": "RubyEncoder Loader Licence", "name": "RubyEncoder Loader Licence", "category": "Proprietary Free", "owner": "RubyEncoder", "homepage_url": "https://www.rubyencoder.com/loaders.html", "spdx_license_key": "LicenseRef-scancode-rubyencoder-loader", "other_urls": ["https://www.rubyencoder.com/terms.html"], "ignorable_authors": ["assurances as SourceGuardian Ltd"], "ignorable_urls": ["http://www.rubyencoder.com/", "http://www.rubyencoder.com/terms.html"], "ignorable_emails": ["support@rubyencoder.com"]} \ No newline at end of file +{ + "key": "rubyencoder-loader", + "short_name": "RubyEncoder Loader Licence", + "name": "RubyEncoder Loader Licence", + "category": "Proprietary Free", + "owner": "RubyEncoder", + "homepage_url": "https://www.rubyencoder.com/loaders.html", + "spdx_license_key": "LicenseRef-scancode-rubyencoder-loader", + "other_urls": [ + "https://www.rubyencoder.com/terms.html" + ], + "ignorable_authors": [ + "assurances as SourceGuardian Ltd" + ], + "ignorable_urls": [ + "http://www.rubyencoder.com/", + "http://www.rubyencoder.com/terms.html" + ], + "ignorable_emails": [ + "support@rubyencoder.com" + ] +} \ No newline at end of file diff --git a/docs/rute.LICENSE b/docs/rute.LICENSE index 7980363e3c..557fa3a759 100644 --- a/docs/rute.LICENSE +++ b/docs/rute.LICENSE @@ -1,3 +1,20 @@ +--- +key: rute +short_name: Rute Users Tutorial and Exposition License 0.8.0 +name: Rute Users Tutorial and Exposition License v0.8.0 +category: Permissive +owner: Unspecified +homepage_url: http://rute.sourceforge.net/ +spdx_license_key: LicenseRef-scancode-rute +faq_url: http://rute.sourceforge.net/ +other_urls: + - http://rute.sourceforge.net/ + - http://rute.sourceforge.net/rute-HTML.tar.gz + - http://rute.sourceforge.net/rute.dvi.gz + - http://rute.sourceforge.net/rute.pdf + - http://rute.sourceforge.net/rute.ps.gz +--- + Copying This license dictates the conditions under which you may copy, modify and distribute this work. @@ -10,4 +27,4 @@ TERMS AND CONDITIONS 4. The work is not distributed to promote any product, computer program or operating system. Even if otherwise cited, all of the opinions expressed in the work are exclusively those of the author. The author withdraws any implication that any statement made within this work can be justified, verified or corroborated. NO WARRANTY 5. THE COPYRIGHT HOLDER(S) PROVIDE NO WARRANTY FOR THE ACCURACY OR COMPLETENESS OF THIS WORK, OR TO THE FUNCTIONALITY OF THE EXAMPLE PROGRAMS OR DATA CONTAINED THEREIN, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -6. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE WORK 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 WORK (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +6. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE WORK 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 WORK (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/docs/rute.html b/docs/rute.html index 5acf4a6def..74df79d4d6 100644 --- a/docs/rute.html +++ b/docs/rute.html @@ -143,8 +143,7 @@ 4. The work is not distributed to promote any product, computer program or operating system. Even if otherwise cited, all of the opinions expressed in the work are exclusively those of the author. The author withdraws any implication that any statement made within this work can be justified, verified or corroborated. NO WARRANTY 5. THE COPYRIGHT HOLDER(S) PROVIDE NO WARRANTY FOR THE ACCURACY OR COMPLETENESS OF THIS WORK, OR TO THE FUNCTIONALITY OF THE EXAMPLE PROGRAMS OR DATA CONTAINED THEREIN, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -6. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE WORK 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 WORK (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -
+6. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE WORK 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 WORK (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
@@ -156,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rute.json b/docs/rute.json index 6efc87a80f..66dce37867 100644 --- a/docs/rute.json +++ b/docs/rute.json @@ -1 +1,17 @@ -{"key": "rute", "short_name": "Rute Users Tutorial and Exposition License 0.8.0", "name": "Rute Users Tutorial and Exposition License v0.8.0", "category": "Permissive", "owner": "Unspecified", "homepage_url": "http://rute.sourceforge.net/", "spdx_license_key": "LicenseRef-scancode-rute", "faq_url": "http://rute.sourceforge.net/", "other_urls": ["http://rute.sourceforge.net/", "http://rute.sourceforge.net/rute-HTML.tar.gz", "http://rute.sourceforge.net/rute.dvi.gz", "http://rute.sourceforge.net/rute.pdf", "http://rute.sourceforge.net/rute.ps.gz"]} \ No newline at end of file +{ + "key": "rute", + "short_name": "Rute Users Tutorial and Exposition License 0.8.0", + "name": "Rute Users Tutorial and Exposition License v0.8.0", + "category": "Permissive", + "owner": "Unspecified", + "homepage_url": "http://rute.sourceforge.net/", + "spdx_license_key": "LicenseRef-scancode-rute", + "faq_url": "http://rute.sourceforge.net/", + "other_urls": [ + "http://rute.sourceforge.net/", + "http://rute.sourceforge.net/rute-HTML.tar.gz", + "http://rute.sourceforge.net/rute.dvi.gz", + "http://rute.sourceforge.net/rute.pdf", + "http://rute.sourceforge.net/rute.ps.gz" + ] +} \ No newline at end of file diff --git a/docs/rxtx-exception-lgpl-2.1.LICENSE b/docs/rxtx-exception-lgpl-2.1.LICENSE index 7e9a26f326..5f197070fc 100644 --- a/docs/rxtx-exception-lgpl-2.1.LICENSE +++ b/docs/rxtx-exception-lgpl-2.1.LICENSE @@ -1,3 +1,56 @@ +--- +key: rxtx-exception-lgpl-2.1 +short_name: RXTX exception to LGPL 2.1 +name: RXTX exception to LGPL 2.1 +category: Copyleft Limited +owner: RXTX +homepage_url: http://users.frii.com/jarvi/rxtx/license.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-rxtx-exception-lgpl-2.1 +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +standard_notice: | + RXTX License v 2.1 - LGPL v 2.1 + Linking Over Controlled Interface. + RXTX is a native interface to serial ports in java. + Copyright 1997-2007 by Trent Jarvi tjarvi@qbang.org and others who + actually wrote it. See individual source files for more information. + 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. + An executable that contains no derivative of any portion of RXTX, but + is designed to work with RXTX by being dynamically linked with it, + is considered a "work that uses the Library" subject to the terms and + conditions of the GNU Lesser General Public License. + The following has been added to the RXTX License to remove + any confusion about linking to RXTX. We want to allow in part what + section 5, paragraph 2 of the LGPL does not permit in the special + case of linking over a controlled interface. The intent is to add a + Java Specification Request or standards body defined interface in the + future as another exception but one is not currently available. + http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface + As a special exception, the copyright holders of RXTX give you + permission to link RXTX with independent modules that communicate with + RXTX solely through the Sun Microsytems CommAPI interface version 2, + regardless of the license terms of these independent modules, and to copy + and distribute the resulting combined work under terms of your choice, + provided that every copy of the combined work is accompanied by a complete + copy of the source code of RXTX (the version of RXTX used to produce the + combined work), being distributed under the terms of the GNU Lesser General + Public License plus this exception. An independent module is a + module which is not derived from or based on RXTX. + Note that people who make modified versions of RXTX are not obligated + to grant this special exception for their modified versions; it is + their choice whether to do so. The GNU Lesser General Public License + gives permission to release a modified version without this exception; this + exception also makes it possible to release a modified version which + carries forward this exception. +--- + As a special exception, the copyright holders of RXTX give you permission to link RXTX with independent modules that communicate with RXTX solely through the Sun Microsytems CommAPI interface version 2, diff --git a/docs/rxtx-exception-lgpl-2.1.html b/docs/rxtx-exception-lgpl-2.1.html index 9ad779e6c4..f26438ec37 100644 --- a/docs/rxtx-exception-lgpl-2.1.html +++ b/docs/rxtx-exception-lgpl-2.1.html @@ -205,7 +205,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/rxtx-exception-lgpl-2.1.json b/docs/rxtx-exception-lgpl-2.1.json index e3f948ccde..569bf688bb 100644 --- a/docs/rxtx-exception-lgpl-2.1.json +++ b/docs/rxtx-exception-lgpl-2.1.json @@ -1 +1,14 @@ -{"key": "rxtx-exception-lgpl-2.1", "short_name": "RXTX exception to LGPL 2.1", "name": "RXTX exception to LGPL 2.1", "category": "Copyleft Limited", "owner": "RXTX", "homepage_url": "http://users.frii.com/jarvi/rxtx/license.html", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-rxtx-exception-lgpl-2.1", "other_urls": ["http://www.gnu.org/licenses/lgpl-2.1.txt"], "standard_notice": "RXTX License v 2.1 - LGPL v 2.1 + Linking Over Controlled Interface.\nRXTX is a native interface to serial ports in java.\nCopyright 1997-2007 by Trent Jarvi tjarvi@qbang.org and others who\nactually wrote it. See individual source files for more information.\nThis library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nLesser General Public License for more details.\nAn executable that contains no derivative of any portion of RXTX, but\nis designed to work with RXTX by being dynamically linked with it,\nis considered a \"work that uses the Library\" subject to the terms and\nconditions of the GNU Lesser General Public License.\nThe following has been added to the RXTX License to remove\nany confusion about linking to RXTX. We want to allow in part what\nsection 5, paragraph 2 of the LGPL does not permit in the special\ncase of linking over a controlled interface. The intent is to add a\nJava Specification Request or standards body defined interface in the\nfuture as another exception but one is not currently available.\nhttp://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface\nAs a special exception, the copyright holders of RXTX give you\npermission to link RXTX with independent modules that communicate with\nRXTX solely through the Sun Microsytems CommAPI interface version 2,\nregardless of the license terms of these independent modules, and to copy\nand distribute the resulting combined work under terms of your choice,\nprovided that every copy of the combined work is accompanied by a complete\ncopy of the source code of RXTX (the version of RXTX used to produce the\ncombined work), being distributed under the terms of the GNU Lesser General\nPublic License plus this exception. An independent module is a\nmodule which is not derived from or based on RXTX.\nNote that people who make modified versions of RXTX are not obligated\nto grant this special exception for their modified versions; it is\ntheir choice whether to do so. The GNU Lesser General Public License\ngives permission to release a modified version without this exception; this\nexception also makes it possible to release a modified version which\ncarries forward this exception.\n"} \ No newline at end of file +{ + "key": "rxtx-exception-lgpl-2.1", + "short_name": "RXTX exception to LGPL 2.1", + "name": "RXTX exception to LGPL 2.1", + "category": "Copyleft Limited", + "owner": "RXTX", + "homepage_url": "http://users.frii.com/jarvi/rxtx/license.html", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-rxtx-exception-lgpl-2.1", + "other_urls": [ + "http://www.gnu.org/licenses/lgpl-2.1.txt" + ], + "standard_notice": "RXTX License v 2.1 - LGPL v 2.1 + Linking Over Controlled Interface.\nRXTX is a native interface to serial ports in java.\nCopyright 1997-2007 by Trent Jarvi tjarvi@qbang.org and others who\nactually wrote it. See individual source files for more information.\nThis library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nLesser General Public License for more details.\nAn executable that contains no derivative of any portion of RXTX, but\nis designed to work with RXTX by being dynamically linked with it,\nis considered a \"work that uses the Library\" subject to the terms and\nconditions of the GNU Lesser General Public License.\nThe following has been added to the RXTX License to remove\nany confusion about linking to RXTX. We want to allow in part what\nsection 5, paragraph 2 of the LGPL does not permit in the special\ncase of linking over a controlled interface. The intent is to add a\nJava Specification Request or standards body defined interface in the\nfuture as another exception but one is not currently available.\nhttp://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface\nAs a special exception, the copyright holders of RXTX give you\npermission to link RXTX with independent modules that communicate with\nRXTX solely through the Sun Microsytems CommAPI interface version 2,\nregardless of the license terms of these independent modules, and to copy\nand distribute the resulting combined work under terms of your choice,\nprovided that every copy of the combined work is accompanied by a complete\ncopy of the source code of RXTX (the version of RXTX used to produce the\ncombined work), being distributed under the terms of the GNU Lesser General\nPublic License plus this exception. An independent module is a\nmodule which is not derived from or based on RXTX.\nNote that people who make modified versions of RXTX are not obligated\nto grant this special exception for their modified versions; it is\ntheir choice whether to do so. The GNU Lesser General Public License\ngives permission to release a modified version without this exception; this\nexception also makes it possible to release a modified version which\ncarries forward this exception.\n" +} \ No newline at end of file diff --git a/docs/ryszard-szopa.LICENSE b/docs/ryszard-szopa.LICENSE index 303a6a47f9..7867aa4264 100644 --- a/docs/ryszard-szopa.LICENSE +++ b/docs/ryszard-szopa.LICENSE @@ -1,3 +1,12 @@ +--- +key: ryszard-szopa +short_name: Ryszard Szopa License +name: Ryszard Szopa License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-ryszard-szopa +--- + This work ‘as-is’ we provide. No warranty, express or implied. We’ve done our best, diff --git a/docs/ryszard-szopa.html b/docs/ryszard-szopa.html index 654ce326d4..c40d655134 100644 --- a/docs/ryszard-szopa.html +++ b/docs/ryszard-szopa.html @@ -130,7 +130,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ryszard-szopa.json b/docs/ryszard-szopa.json index 2f9881760c..47a409f814 100644 --- a/docs/ryszard-szopa.json +++ b/docs/ryszard-szopa.json @@ -1 +1,8 @@ -{"key": "ryszard-szopa", "short_name": "Ryszard Szopa License", "name": "Ryszard Szopa License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-ryszard-szopa"} \ No newline at end of file +{ + "key": "ryszard-szopa", + "short_name": "Ryszard Szopa License", + "name": "Ryszard Szopa License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-ryszard-szopa" +} \ No newline at end of file diff --git a/docs/saas-mit.LICENSE b/docs/saas-mit.LICENSE index 44bcf8cd33..6232892971 100644 --- a/docs/saas-mit.LICENSE +++ b/docs/saas-mit.LICENSE @@ -1,3 +1,14 @@ +--- +key: saas-mit +short_name: SaaS MIT License +name: SaaS MIT License +category: Permissive +owner: CubesViewer +homepage_url: https://github.com/jjmontesl/cubesviewer/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-saas-mit +minimum_coverage: 80 +--- + 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 @@ -18,4 +29,4 @@ 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. +SOFTWARE. \ No newline at end of file diff --git a/docs/saas-mit.html b/docs/saas-mit.html index 363b7d130e..7dadf494a0 100644 --- a/docs/saas-mit.html +++ b/docs/saas-mit.html @@ -142,8 +142,7 @@ 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. - +SOFTWARE.
@@ -155,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/saas-mit.json b/docs/saas-mit.json index 42833c4a60..c3f9b2c505 100644 --- a/docs/saas-mit.json +++ b/docs/saas-mit.json @@ -1 +1,10 @@ -{"key": "saas-mit", "short_name": "SaaS MIT License", "name": "SaaS MIT License", "category": "Permissive", "owner": "CubesViewer", "homepage_url": "https://github.com/jjmontesl/cubesviewer/blob/master/LICENSE", "spdx_license_key": "LicenseRef-scancode-saas-mit", "minimum_coverage": 80} \ No newline at end of file +{ + "key": "saas-mit", + "short_name": "SaaS MIT License", + "name": "SaaS MIT License", + "category": "Permissive", + "owner": "CubesViewer", + "homepage_url": "https://github.com/jjmontesl/cubesviewer/blob/master/LICENSE", + "spdx_license_key": "LicenseRef-scancode-saas-mit", + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/saf.LICENSE b/docs/saf.LICENSE index e871de42e5..5e092f6963 100644 --- a/docs/saf.LICENSE +++ b/docs/saf.LICENSE @@ -1,3 +1,16 @@ +--- +key: saf +short_name: Service Availability Forum License +name: Service Availability Forum License +category: Permissive +owner: Service Availability Forum +spdx_license_key: LicenseRef-scancode-saf +ignorable_copyrights: + - Copyright (c) Service Availability(TM) Forum +ignorable_holders: + - Service Availability(TM) Forum +--- + Service Availability Forum License OWNERSHIP OF SPECIFICATION AND COPYRIGHTS. The Specification and all worldwide copyrights therein are the exclusive property of Licensor. You may not remove, obscure, or alter any copyright or other proprietary rights notices that are in or on the copy of the Specification you download. You must reproduce all such notices on all copies of the Specification you make. Licensor may make changes to the Specification, or to items referenced therein, at any time without notice. Licensor is not obligated to support or update the Specification. diff --git a/docs/saf.html b/docs/saf.html index 5caffea4f2..5163608a0b 100644 --- a/docs/saf.html +++ b/docs/saf.html @@ -146,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/saf.json b/docs/saf.json index c0e62e09e3..ba96872d41 100644 --- a/docs/saf.json +++ b/docs/saf.json @@ -1 +1,14 @@ -{"key": "saf", "short_name": "Service Availability Forum License", "name": "Service Availability Forum License", "category": "Permissive", "owner": "Service Availability Forum", "spdx_license_key": "LicenseRef-scancode-saf", "ignorable_copyrights": ["Copyright (c) Service Availability(TM) Forum"], "ignorable_holders": ["Service Availability(TM) Forum"]} \ No newline at end of file +{ + "key": "saf", + "short_name": "Service Availability Forum License", + "name": "Service Availability Forum License", + "category": "Permissive", + "owner": "Service Availability Forum", + "spdx_license_key": "LicenseRef-scancode-saf", + "ignorable_copyrights": [ + "Copyright (c) Service Availability(TM) Forum" + ], + "ignorable_holders": [ + "Service Availability(TM) Forum" + ] +} \ No newline at end of file diff --git a/docs/safecopy-eula.LICENSE b/docs/safecopy-eula.LICENSE index 23be500832..1f3f232bed 100644 --- a/docs/safecopy-eula.LICENSE +++ b/docs/safecopy-eula.LICENSE @@ -1,3 +1,13 @@ +--- +key: safecopy-eula +short_name: SafeCopy EULA +name: SafeCopy EULA +category: Proprietary Free +owner: Elwinsoft +homepage_url: http://www.elwinsoft.com/ +spdx_license_key: LicenseRef-scancode-safecopy-eula +--- + The SafeCopy Free! utility is freeware. User is granted a non-exclusive license to use SafeCopy Free! utility, for any legal purpose, at a time. diff --git a/docs/safecopy-eula.html b/docs/safecopy-eula.html index c4ac1af8a7..cea385e82c 100644 --- a/docs/safecopy-eula.html +++ b/docs/safecopy-eula.html @@ -153,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/safecopy-eula.json b/docs/safecopy-eula.json index 4b6ff688d2..2f26a7b02e 100644 --- a/docs/safecopy-eula.json +++ b/docs/safecopy-eula.json @@ -1 +1,9 @@ -{"key": "safecopy-eula", "short_name": "SafeCopy EULA", "name": "SafeCopy EULA", "category": "Proprietary Free", "owner": "Elwinsoft", "homepage_url": "http://www.elwinsoft.com/", "spdx_license_key": "LicenseRef-scancode-safecopy-eula"} \ No newline at end of file +{ + "key": "safecopy-eula", + "short_name": "SafeCopy EULA", + "name": "SafeCopy EULA", + "category": "Proprietary Free", + "owner": "Elwinsoft", + "homepage_url": "http://www.elwinsoft.com/", + "spdx_license_key": "LicenseRef-scancode-safecopy-eula" +} \ No newline at end of file diff --git a/docs/san-francisco-font.LICENSE b/docs/san-francisco-font.LICENSE index c143fbab84..e704379846 100644 --- a/docs/san-francisco-font.LICENSE +++ b/docs/san-francisco-font.LICENSE @@ -1,3 +1,13 @@ +--- +key: san-francisco-font +short_name: San Francisco Font License +name: Apple San Francisco Font License +category: Proprietary Free +owner: Apple +homepage_url: https://sf.abarba.me/LICENSE.pdf +spdx_license_key: LicenseRef-scancode-san-francisco-font +--- + APPLE INC. LICENSE AGREEMENT FOR THE APPLE SAN FRANCISCO FONT For iOS, OS X and tvOS application uses only diff --git a/docs/san-francisco-font.html b/docs/san-francisco-font.html index fbb2d0b6f2..e13ca59a1a 100644 --- a/docs/san-francisco-font.html +++ b/docs/san-francisco-font.html @@ -288,7 +288,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/san-francisco-font.json b/docs/san-francisco-font.json index f83808b0df..ae731cf34c 100644 --- a/docs/san-francisco-font.json +++ b/docs/san-francisco-font.json @@ -1 +1,9 @@ -{"key": "san-francisco-font", "short_name": "San Francisco Font License", "name": "Apple San Francisco Font License", "category": "Proprietary Free", "owner": "Apple", "homepage_url": "https://sf.abarba.me/LICENSE.pdf", "spdx_license_key": "LicenseRef-scancode-san-francisco-font"} \ No newline at end of file +{ + "key": "san-francisco-font", + "short_name": "San Francisco Font License", + "name": "Apple San Francisco Font License", + "category": "Proprietary Free", + "owner": "Apple", + "homepage_url": "https://sf.abarba.me/LICENSE.pdf", + "spdx_license_key": "LicenseRef-scancode-san-francisco-font" +} \ No newline at end of file diff --git a/docs/sandeep.LICENSE b/docs/sandeep.LICENSE index d4b310ab79..759f191d5a 100644 --- a/docs/sandeep.LICENSE +++ b/docs/sandeep.LICENSE @@ -1,3 +1,19 @@ +--- +key: sandeep +short_name: Sandeep License +name: Sandeep License +category: Proprietary Free +owner: Sandeep Gangadharan +homepage_url: http://www.sivamdesign.com/scripts/ +spdx_license_key: LicenseRef-scancode-sandeep +ignorable_copyrights: + - Copyright (c) 2000 - 2014 Sandeep Gangadharan +ignorable_holders: + - Sandeep Gangadharan +ignorable_urls: + - http://www.sivamdesign.com/scripts/ +--- + Terms of Use All scripts available here are original scripts written by the author diff --git a/docs/sandeep.html b/docs/sandeep.html index 4ac8ea40ed..e112e0df7b 100644 --- a/docs/sandeep.html +++ b/docs/sandeep.html @@ -198,7 +198,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sandeep.json b/docs/sandeep.json index ff93c0eb54..bd11c40b79 100644 --- a/docs/sandeep.json +++ b/docs/sandeep.json @@ -1 +1,18 @@ -{"key": "sandeep", "short_name": "Sandeep License", "name": "Sandeep License", "category": "Proprietary Free", "owner": "Sandeep Gangadharan", "homepage_url": "http://www.sivamdesign.com/scripts/", "spdx_license_key": "LicenseRef-scancode-sandeep", "ignorable_copyrights": ["Copyright (c) 2000 - 2014 Sandeep Gangadharan"], "ignorable_holders": ["Sandeep Gangadharan"], "ignorable_urls": ["http://www.sivamdesign.com/scripts/"]} \ No newline at end of file +{ + "key": "sandeep", + "short_name": "Sandeep License", + "name": "Sandeep License", + "category": "Proprietary Free", + "owner": "Sandeep Gangadharan", + "homepage_url": "http://www.sivamdesign.com/scripts/", + "spdx_license_key": "LicenseRef-scancode-sandeep", + "ignorable_copyrights": [ + "Copyright (c) 2000 - 2014 Sandeep Gangadharan" + ], + "ignorable_holders": [ + "Sandeep Gangadharan" + ], + "ignorable_urls": [ + "http://www.sivamdesign.com/scripts/" + ] +} \ No newline at end of file diff --git a/docs/sane-exception-2.0-plus.LICENSE b/docs/sane-exception-2.0-plus.LICENSE index db70bc8baa..fbbccbb8f4 100644 --- a/docs/sane-exception-2.0-plus.LICENSE +++ b/docs/sane-exception-2.0-plus.LICENSE @@ -1,3 +1,47 @@ +--- +key: sane-exception-2.0-plus +short_name: SANE exception to GPL 2.0 or later +name: SANE exception to GPL 2.0 or later +category: Copyleft Limited +owner: SANE Project +homepage_url: https://alioth.debian.org/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-sane-exception-2.0-plus +text_urls: + - https://alioth.debian.org/frs/download.php/file/4224/sane-backends-1.0.27.tar.gz +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + 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 2 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, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, + MA 02111-1307, USA. + As a special exception, the authors of SANE give permission for + additional uses of the libraries contained in this release of SANE. + The exception is that, if you link a SANE library with other files + to produce an executable, this does not by itself cause the + resulting executable to be covered by the GNU General Public + License. Your use of that executable is in no way restricted on + account of linking the SANE library code into it. + This exception does not, however, invalidate any other reasons why + the executable file might be covered by the GNU General Public + License. + If you submit changes to SANE to the maintainers to be included in + a subsequent release, you agree by submitting the changes that + those changes may be distributed with this exception intact. + If you write modifications of your own for SANE, it is your choice + whether to permit this exception to apply to your modifications. + If you do not wish that, delete this exception notice. +--- + The exception is that, if you link a SANE library with other files to produce an executable, this does not by itself cause the resulting executable to be covered by the GNU General Public diff --git a/docs/sane-exception-2.0-plus.html b/docs/sane-exception-2.0-plus.html index f4f9473d5a..9a583e837f 100644 --- a/docs/sane-exception-2.0-plus.html +++ b/docs/sane-exception-2.0-plus.html @@ -191,7 +191,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sane-exception-2.0-plus.json b/docs/sane-exception-2.0-plus.json index 94e1d0e320..182dc092b4 100644 --- a/docs/sane-exception-2.0-plus.json +++ b/docs/sane-exception-2.0-plus.json @@ -1 +1,17 @@ -{"key": "sane-exception-2.0-plus", "short_name": "SANE exception to GPL 2.0 or later", "name": "SANE exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "SANE Project", "homepage_url": "https://alioth.debian.org/", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-sane-exception-2.0-plus", "text_urls": ["https://alioth.debian.org/frs/download.php/file/4224/sane-backends-1.0.27.tar.gz"], "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "This program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License as\npublished by the Free Software Foundation; either version 2 of the\nLicense, or (at your option) any later version.\nThis program is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston,\nMA 02111-1307, USA.\nAs a special exception, the authors of SANE give permission for\nadditional uses of the libraries contained in this release of SANE.\nThe exception is that, if you link a SANE library with other files\nto produce an executable, this does not by itself cause the\nresulting executable to be covered by the GNU General Public\nLicense. Your use of that executable is in no way restricted on\naccount of linking the SANE library code into it.\nThis exception does not, however, invalidate any other reasons why\nthe executable file might be covered by the GNU General Public\nLicense.\nIf you submit changes to SANE to the maintainers to be included in\na subsequent release, you agree by submitting the changes that\nthose changes may be distributed with this exception intact.\nIf you write modifications of your own for SANE, it is your choice\nwhether to permit this exception to apply to your modifications.\nIf you do not wish that, delete this exception notice.\n"} \ No newline at end of file +{ + "key": "sane-exception-2.0-plus", + "short_name": "SANE exception to GPL 2.0 or later", + "name": "SANE exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "SANE Project", + "homepage_url": "https://alioth.debian.org/", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-sane-exception-2.0-plus", + "text_urls": [ + "https://alioth.debian.org/frs/download.php/file/4224/sane-backends-1.0.27.tar.gz" + ], + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "This program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License as\npublished by the Free Software Foundation; either version 2 of the\nLicense, or (at your option) any later version.\nThis program is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston,\nMA 02111-1307, USA.\nAs a special exception, the authors of SANE give permission for\nadditional uses of the libraries contained in this release of SANE.\nThe exception is that, if you link a SANE library with other files\nto produce an executable, this does not by itself cause the\nresulting executable to be covered by the GNU General Public\nLicense. Your use of that executable is in no way restricted on\naccount of linking the SANE library code into it.\nThis exception does not, however, invalidate any other reasons why\nthe executable file might be covered by the GNU General Public\nLicense.\nIf you submit changes to SANE to the maintainers to be included in\na subsequent release, you agree by submitting the changes that\nthose changes may be distributed with this exception intact.\nIf you write modifications of your own for SANE, it is your choice\nwhether to permit this exception to apply to your modifications.\nIf you do not wish that, delete this exception notice.\n" +} \ No newline at end of file diff --git a/docs/sash.LICENSE b/docs/sash.LICENSE index cacb2e3687..4e94022d83 100644 --- a/docs/sash.LICENSE +++ b/docs/sash.LICENSE @@ -1,2 +1,12 @@ +--- +key: sash +short_name: Sash Notice +name: Sash Notice +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-sash +minimum_coverage: 99 +--- + Permission is granted to use, distribute, or modify this source, -provided that this copyright notice remains intact. +provided that this copyright notice remains intact. \ No newline at end of file diff --git a/docs/sash.html b/docs/sash.html index 2cef1916f9..7137e8bad6 100644 --- a/docs/sash.html +++ b/docs/sash.html @@ -116,8 +116,7 @@
license_text
Permission is granted to use, distribute, or modify this source, 
-provided that this copyright notice remains intact.
-
+provided that this copyright notice remains intact.
@@ -129,7 +128,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sash.json b/docs/sash.json index 94eee6c4e7..aa471892d5 100644 --- a/docs/sash.json +++ b/docs/sash.json @@ -1 +1,9 @@ -{"key": "sash", "short_name": "Sash Notice", "name": "Sash Notice", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-sash", "minimum_coverage": 99} \ No newline at end of file +{ + "key": "sash", + "short_name": "Sash Notice", + "name": "Sash Notice", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-sash", + "minimum_coverage": 99 +} \ No newline at end of file diff --git a/docs/sata.LICENSE b/docs/sata.LICENSE index 636377268c..130f4fc686 100644 --- a/docs/sata.LICENSE +++ b/docs/sata.LICENSE @@ -1,3 +1,26 @@ +--- +key: sata +short_name: SATA License +name: Star And Thank Author License +category: Permissive +owner: zTrix +homepage_url: https://github.com/zTrix/sata-license/blob/a72e947589ac80df3a0e586f2cb3c154bb9923f0/LICENSE.txt +spdx_license_key: LicenseRef-scancode-sata +other_urls: + - https://github.com/zTrix/sata-license + - https://github.com/kongtianyi/sata-license +ignorable_copyrights: + - Copyright (c) 2014 zTrix(i@ztrix.me) kongtianyi(kongtianyi@foxmail.com) +ignorable_holders: + - zTrix(i@ztrix.me) kongtianyi(kongtianyi@foxmail.com) +ignorable_urls: + - https://github.com/kongtianyi/sata-license + - https://github.com/zTrix/sata-license +ignorable_emails: + - i@ztrix.me + - kongtianyi@foxmail.com +--- + The Star And Thank Author License (SATA) Copyright © 2014 zTrix(i@ztrix.me) kongtianyi(kongtianyi@foxmail.com) diff --git a/docs/sata.html b/docs/sata.html index 6322e943e1..d77727f9bc 100644 --- a/docs/sata.html +++ b/docs/sata.html @@ -209,7 +209,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sata.json b/docs/sata.json index f1abb3bc88..8faa7f89b9 100644 --- a/docs/sata.json +++ b/docs/sata.json @@ -1 +1,27 @@ -{"key": "sata", "short_name": "SATA License", "name": "Star And Thank Author License", "category": "Permissive", "owner": "zTrix", "homepage_url": "https://github.com/zTrix/sata-license/blob/a72e947589ac80df3a0e586f2cb3c154bb9923f0/LICENSE.txt", "spdx_license_key": "LicenseRef-scancode-sata", "other_urls": ["https://github.com/zTrix/sata-license", "https://github.com/kongtianyi/sata-license"], "ignorable_copyrights": ["Copyright (c) 2014 zTrix(i@ztrix.me) kongtianyi(kongtianyi@foxmail.com)"], "ignorable_holders": ["zTrix(i@ztrix.me) kongtianyi(kongtianyi@foxmail.com)"], "ignorable_urls": ["https://github.com/kongtianyi/sata-license", "https://github.com/zTrix/sata-license"], "ignorable_emails": ["i@ztrix.me", "kongtianyi@foxmail.com"]} \ No newline at end of file +{ + "key": "sata", + "short_name": "SATA License", + "name": "Star And Thank Author License", + "category": "Permissive", + "owner": "zTrix", + "homepage_url": "https://github.com/zTrix/sata-license/blob/a72e947589ac80df3a0e586f2cb3c154bb9923f0/LICENSE.txt", + "spdx_license_key": "LicenseRef-scancode-sata", + "other_urls": [ + "https://github.com/zTrix/sata-license", + "https://github.com/kongtianyi/sata-license" + ], + "ignorable_copyrights": [ + "Copyright (c) 2014 zTrix(i@ztrix.me) kongtianyi(kongtianyi@foxmail.com)" + ], + "ignorable_holders": [ + "zTrix(i@ztrix.me) kongtianyi(kongtianyi@foxmail.com)" + ], + "ignorable_urls": [ + "https://github.com/kongtianyi/sata-license", + "https://github.com/zTrix/sata-license" + ], + "ignorable_emails": [ + "i@ztrix.me", + "kongtianyi@foxmail.com" + ] +} \ No newline at end of file diff --git a/docs/sax-pd.LICENSE b/docs/sax-pd.LICENSE index b8bb2f6577..4169720ab9 100644 --- a/docs/sax-pd.LICENSE +++ b/docs/sax-pd.LICENSE @@ -1,3 +1,15 @@ +--- +key: sax-pd +short_name: SAX-PD +name: SAX Public Domain Notice +category: Public Domain +owner: SAX Project +homepage_url: http://www.saxproject.org/copying.html +spdx_license_key: SAX-PD +text_urls: + - http://www.saxproject.org/copying.html +--- + Copyright Status for SAX SAX is free! diff --git a/docs/sax-pd.html b/docs/sax-pd.html index fee3bc8557..e2bff8f583 100644 --- a/docs/sax-pd.html +++ b/docs/sax-pd.html @@ -190,7 +190,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sax-pd.json b/docs/sax-pd.json index ac2b317d2b..4e6df94ef0 100644 --- a/docs/sax-pd.json +++ b/docs/sax-pd.json @@ -1 +1,12 @@ -{"key": "sax-pd", "short_name": "SAX-PD", "name": "SAX Public Domain Notice", "category": "Public Domain", "owner": "SAX Project", "homepage_url": "http://www.saxproject.org/copying.html", "spdx_license_key": "SAX-PD", "text_urls": ["http://www.saxproject.org/copying.html"]} \ No newline at end of file +{ + "key": "sax-pd", + "short_name": "SAX-PD", + "name": "SAX Public Domain Notice", + "category": "Public Domain", + "owner": "SAX Project", + "homepage_url": "http://www.saxproject.org/copying.html", + "spdx_license_key": "SAX-PD", + "text_urls": [ + "http://www.saxproject.org/copying.html" + ] +} \ No newline at end of file diff --git a/docs/saxpath.LICENSE b/docs/saxpath.LICENSE index 2c849485f6..b37abab56e 100644 --- a/docs/saxpath.LICENSE +++ b/docs/saxpath.LICENSE @@ -1,3 +1,24 @@ +--- +key: saxpath +short_name: Saxpath License +name: Saxpath License +category: Permissive +owner: Codehaus +homepage_url: https://fedoraproject.org/wiki/Licensing/Saxpath_License +notes: | + Per Fedora, this is a slightly modified version of Apache 1.1. The + documentation requirement in Apache 1.1 has been weakened to a suggestion, + but clause 4 still makes this license Free but GPL-incompatible. +spdx_license_key: Saxpath +ignorable_authors: + - the SAXPath Project (http://www.saxpath.org/) +ignorable_urls: + - http://www.saxpath.org/ +ignorable_emails: + - license@saxpath.org + - pm@saxpath.org +--- + Redistribution and use in source and binary forms, with or without modification, re permitted provided that the following conditions are met: @@ -34,4 +55,4 @@ 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. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/saxpath.html b/docs/saxpath.html index fc7218b7d3..6506e3b404 100644 --- a/docs/saxpath.html +++ b/docs/saxpath.html @@ -188,8 +188,7 @@ 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. - +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -201,7 +200,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/saxpath.json b/docs/saxpath.json index cee9ab5595..06cd03cacf 100644 --- a/docs/saxpath.json +++ b/docs/saxpath.json @@ -1 +1,20 @@ -{"key": "saxpath", "short_name": "Saxpath License", "name": "Saxpath License", "category": "Permissive", "owner": "Codehaus", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Saxpath_License", "notes": "Per Fedora, this is a slightly modified version of Apache 1.1. The\ndocumentation requirement in Apache 1.1 has been weakened to a suggestion,\nbut clause 4 still makes this license Free but GPL-incompatible.\n", "spdx_license_key": "Saxpath", "ignorable_authors": ["the SAXPath Project (http://www.saxpath.org/)"], "ignorable_urls": ["http://www.saxpath.org/"], "ignorable_emails": ["license@saxpath.org", "pm@saxpath.org"]} \ No newline at end of file +{ + "key": "saxpath", + "short_name": "Saxpath License", + "name": "Saxpath License", + "category": "Permissive", + "owner": "Codehaus", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Saxpath_License", + "notes": "Per Fedora, this is a slightly modified version of Apache 1.1. The\ndocumentation requirement in Apache 1.1 has been weakened to a suggestion,\nbut clause 4 still makes this license Free but GPL-incompatible.\n", + "spdx_license_key": "Saxpath", + "ignorable_authors": [ + "the SAXPath Project (http://www.saxpath.org/)" + ], + "ignorable_urls": [ + "http://www.saxpath.org/" + ], + "ignorable_emails": [ + "license@saxpath.org", + "pm@saxpath.org" + ] +} \ No newline at end of file diff --git a/docs/sbia-b.LICENSE b/docs/sbia-b.LICENSE index f163479ece..19ce551551 100644 --- a/docs/sbia-b.LICENSE +++ b/docs/sbia-b.LICENSE @@ -1,3 +1,14 @@ +--- +key: sbia-b +short_name: SBIA Part B +name: SBIA Software license - Downloading Agreement +category: Permissive +owner: SBIA +homepage_url: https://www.cbica.upenn.edu/sbia/software/license.html +spdx_license_key: LicenseRef-scancode-sbia-b +minimum_coverage: 60 +--- + PART B. DOWNLOADING AGREEMENT - LICENSE FROM SBIA WITH RIGHT TO SUBLICENSE ("SOFTWARE LICENSE"). ------------------------------------------------------------------------------------------------ @@ -92,4 +103,4 @@ PART C. MISCELLANEOUS This Agreement shall be governed by and construed in accordance with the laws of The Commonwealth of Pennsylvania without regard to principles of conflicts of law. This Agreement shall supercede and replace any license terms that you -may have agreed to previously with respect to Software from SBIA. +may have agreed to previously with respect to Software from SBIA. \ No newline at end of file diff --git a/docs/sbia-b.html b/docs/sbia-b.html index f2670514a7..6613a4c631 100644 --- a/docs/sbia-b.html +++ b/docs/sbia-b.html @@ -216,8 +216,7 @@ This Agreement shall be governed by and construed in accordance with the laws of The Commonwealth of Pennsylvania without regard to principles of conflicts of law. This Agreement shall supercede and replace any license terms that you -may have agreed to previously with respect to Software from SBIA. - +may have agreed to previously with respect to Software from SBIA.
@@ -229,7 +228,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sbia-b.json b/docs/sbia-b.json index d65538d10c..e3b251590c 100644 --- a/docs/sbia-b.json +++ b/docs/sbia-b.json @@ -1 +1,10 @@ -{"key": "sbia-b", "short_name": "SBIA Part B", "name": "SBIA Software license - Downloading Agreement", "category": "Permissive", "owner": "SBIA", "homepage_url": "https://www.cbica.upenn.edu/sbia/software/license.html", "spdx_license_key": "LicenseRef-scancode-sbia-b", "minimum_coverage": 60} \ No newline at end of file +{ + "key": "sbia-b", + "short_name": "SBIA Part B", + "name": "SBIA Software license - Downloading Agreement", + "category": "Permissive", + "owner": "SBIA", + "homepage_url": "https://www.cbica.upenn.edu/sbia/software/license.html", + "spdx_license_key": "LicenseRef-scancode-sbia-b", + "minimum_coverage": 60 +} \ No newline at end of file diff --git a/docs/scancode-acknowledgment.LICENSE b/docs/scancode-acknowledgment.LICENSE index fe8f27c635..ad335d1b16 100644 --- a/docs/scancode-acknowledgment.LICENSE +++ b/docs/scancode-acknowledgment.LICENSE @@ -1,6 +1,19 @@ +--- +key: scancode-acknowledgment +short_name: ScanCode acknowledgment +name: ScanCode generated data acknowledgment +category: Permissive +owner: nexB +homepage_url: https://github.com/nexB/scancode-toolkit/ +spdx_license_key: LicenseRef-scancode-scancode-acknowledgment +minimum_coverage: 95 +ignorable_urls: + - https://github.com/nexB/scancode-toolkit/ +--- + Generated with ScanCode and provided on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. No content created from ScanCode should be considered or used as legal advice. Consult an Attorney for any legal advice. ScanCode is a free software code scanning tool from nexB Inc. and others. -Visit https://github.com/nexB/scancode-toolkit/ for support and download. +Visit https://github.com/nexB/scancode-toolkit/ for support and download. \ No newline at end of file diff --git a/docs/scancode-acknowledgment.html b/docs/scancode-acknowledgment.html index 7800c1b192..e330a50a47 100644 --- a/docs/scancode-acknowledgment.html +++ b/docs/scancode-acknowledgment.html @@ -136,8 +136,7 @@ ScanCode should be considered or used as legal advice. Consult an Attorney for any legal advice. ScanCode is a free software code scanning tool from nexB Inc. and others. -Visit https://github.com/nexB/scancode-toolkit/ for support and download. - +Visit https://github.com/nexB/scancode-toolkit/ for support and download.
@@ -149,7 +148,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/scancode-acknowledgment.json b/docs/scancode-acknowledgment.json index 7bb6c727e9..b4cdda2a93 100644 --- a/docs/scancode-acknowledgment.json +++ b/docs/scancode-acknowledgment.json @@ -1 +1,13 @@ -{"key": "scancode-acknowledgment", "short_name": "ScanCode acknowledgment", "name": "ScanCode generated data acknowledgment", "category": "Permissive", "owner": "nexB", "homepage_url": "https://github.com/nexB/scancode-toolkit/", "spdx_license_key": "LicenseRef-scancode-scancode-acknowledgment", "minimum_coverage": 95, "ignorable_urls": ["https://github.com/nexB/scancode-toolkit/"]} \ No newline at end of file +{ + "key": "scancode-acknowledgment", + "short_name": "ScanCode acknowledgment", + "name": "ScanCode generated data acknowledgment", + "category": "Permissive", + "owner": "nexB", + "homepage_url": "https://github.com/nexB/scancode-toolkit/", + "spdx_license_key": "LicenseRef-scancode-scancode-acknowledgment", + "minimum_coverage": 95, + "ignorable_urls": [ + "https://github.com/nexB/scancode-toolkit/" + ] +} \ No newline at end of file diff --git a/docs/scanlogd-license.LICENSE b/docs/scanlogd-license.LICENSE index c3b8fa977b..e42c615a9c 100644 --- a/docs/scanlogd-license.LICENSE +++ b/docs/scanlogd-license.LICENSE @@ -1,3 +1,14 @@ +--- +key: scanlogd-license +short_name: scanlogd License +name: scanlogd License +category: Permissive +owner: Openwall +spdx_license_key: LicenseRef-scancode-scanlogd-license +other_urls: + - http://www.openwall.com/scanlogd/ +--- + You're allowed to do whatever you like with this software (including re-distribution in any form, with or without modification), provided that credit is given where it is due and any modified versions are diff --git a/docs/scanlogd-license.html b/docs/scanlogd-license.html index e30da13862..ad9b42854f 100644 --- a/docs/scanlogd-license.html +++ b/docs/scanlogd-license.html @@ -134,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/scanlogd-license.json b/docs/scanlogd-license.json index 436173ea76..61d96a70c0 100644 --- a/docs/scanlogd-license.json +++ b/docs/scanlogd-license.json @@ -1 +1,11 @@ -{"key": "scanlogd-license", "short_name": "scanlogd License", "name": "scanlogd License", "category": "Permissive", "owner": "Openwall", "spdx_license_key": "LicenseRef-scancode-scanlogd-license", "other_urls": ["http://www.openwall.com/scanlogd/"]} \ No newline at end of file +{ + "key": "scanlogd-license", + "short_name": "scanlogd License", + "name": "scanlogd License", + "category": "Permissive", + "owner": "Openwall", + "spdx_license_key": "LicenseRef-scancode-scanlogd-license", + "other_urls": [ + "http://www.openwall.com/scanlogd/" + ] +} \ No newline at end of file diff --git a/docs/scansoft-1.2.LICENSE b/docs/scansoft-1.2.LICENSE index 451016a75c..e1801bb746 100644 --- a/docs/scansoft-1.2.LICENSE +++ b/docs/scansoft-1.2.LICENSE @@ -1,3 +1,22 @@ +--- +key: scansoft-1.2 +short_name: ScanSoft Public License 1.2 +name: ScanSoft Public License v1.2 +category: Permissive +owner: Nuance Communications +homepage_url: http://www.speech.cs.cmu.edu/openvxi/OpenVXI_3.0/OpenSpeech_Browser_PIK/doc/License.txt +spdx_license_key: LicenseRef-scancode-scansoft-1.2 +text_urls: + - http://www.speech.cs.cmu.edu/openvxi/OpenVXI_3.0/OpenSpeech_Browser_PIK/doc/License.txt +other_urls: + - http://en.wikipedia.org/wiki/Nuance_Communications + - http://www.nuance.com/ +ignorable_copyrights: + - Copyright (c) 2000-2003, ScanSoft, Inc. +ignorable_holders: + - ScanSoft, Inc. +--- + The ScanSoft Public License - Software, Version 1.2 Copyright (c) 2000-2003, ScanSoft, Inc. diff --git a/docs/scansoft-1.2.html b/docs/scansoft-1.2.html index 4c4dc809ae..a53ed1a875 100644 --- a/docs/scansoft-1.2.html +++ b/docs/scansoft-1.2.html @@ -200,7 +200,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/scansoft-1.2.json b/docs/scansoft-1.2.json index 655cb8d41f..8ba42e64a4 100644 --- a/docs/scansoft-1.2.json +++ b/docs/scansoft-1.2.json @@ -1 +1,22 @@ -{"key": "scansoft-1.2", "short_name": "ScanSoft Public License 1.2", "name": "ScanSoft Public License v1.2", "category": "Permissive", "owner": "Nuance Communications", "homepage_url": "http://www.speech.cs.cmu.edu/openvxi/OpenVXI_3.0/OpenSpeech_Browser_PIK/doc/License.txt", "spdx_license_key": "LicenseRef-scancode-scansoft-1.2", "text_urls": ["http://www.speech.cs.cmu.edu/openvxi/OpenVXI_3.0/OpenSpeech_Browser_PIK/doc/License.txt"], "other_urls": ["http://en.wikipedia.org/wiki/Nuance_Communications", "http://www.nuance.com/"], "ignorable_copyrights": ["Copyright (c) 2000-2003, ScanSoft, Inc."], "ignorable_holders": ["ScanSoft, Inc."]} \ No newline at end of file +{ + "key": "scansoft-1.2", + "short_name": "ScanSoft Public License 1.2", + "name": "ScanSoft Public License v1.2", + "category": "Permissive", + "owner": "Nuance Communications", + "homepage_url": "http://www.speech.cs.cmu.edu/openvxi/OpenVXI_3.0/OpenSpeech_Browser_PIK/doc/License.txt", + "spdx_license_key": "LicenseRef-scancode-scansoft-1.2", + "text_urls": [ + "http://www.speech.cs.cmu.edu/openvxi/OpenVXI_3.0/OpenSpeech_Browser_PIK/doc/License.txt" + ], + "other_urls": [ + "http://en.wikipedia.org/wiki/Nuance_Communications", + "http://www.nuance.com/" + ], + "ignorable_copyrights": [ + "Copyright (c) 2000-2003, ScanSoft, Inc." + ], + "ignorable_holders": [ + "ScanSoft, Inc." + ] +} \ No newline at end of file diff --git a/docs/scea-1.0.LICENSE b/docs/scea-1.0.LICENSE index 04da069816..c9a1b38b69 100644 --- a/docs/scea-1.0.LICENSE +++ b/docs/scea-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: scea-1.0 +short_name: SCEA Shared Source License 1.0 +name: SCEA Shared Source License 1.0 +category: Permissive +owner: Sony Computer Entertainment +homepage_url: http://research.scea.com/scea_shared_source_license.html +spdx_license_key: SCEA +ignorable_copyrights: + - Copyright 2005 Sony Computer Entertainment Inc. +ignorable_holders: + - Sony Computer Entertainment Inc. +ignorable_urls: + - http://research.scea.com/scea_shared_source_license.html +--- + SCEA Shared Source License 1.0 Terms and Conditions: diff --git a/docs/scea-1.0.html b/docs/scea-1.0.html index 390f57c304..6943dda1f7 100644 --- a/docs/scea-1.0.html +++ b/docs/scea-1.0.html @@ -213,7 +213,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/scea-1.0.json b/docs/scea-1.0.json index ec8e8f919c..07284faa7f 100644 --- a/docs/scea-1.0.json +++ b/docs/scea-1.0.json @@ -1 +1,18 @@ -{"key": "scea-1.0", "short_name": "SCEA Shared Source License 1.0", "name": "SCEA Shared Source License 1.0", "category": "Permissive", "owner": "Sony Computer Entertainment", "homepage_url": "http://research.scea.com/scea_shared_source_license.html", "spdx_license_key": "SCEA", "ignorable_copyrights": ["Copyright 2005 Sony Computer Entertainment Inc."], "ignorable_holders": ["Sony Computer Entertainment Inc."], "ignorable_urls": ["http://research.scea.com/scea_shared_source_license.html"]} \ No newline at end of file +{ + "key": "scea-1.0", + "short_name": "SCEA Shared Source License 1.0", + "name": "SCEA Shared Source License 1.0", + "category": "Permissive", + "owner": "Sony Computer Entertainment", + "homepage_url": "http://research.scea.com/scea_shared_source_license.html", + "spdx_license_key": "SCEA", + "ignorable_copyrights": [ + "Copyright 2005 Sony Computer Entertainment Inc." + ], + "ignorable_holders": [ + "Sony Computer Entertainment Inc." + ], + "ignorable_urls": [ + "http://research.scea.com/scea_shared_source_license.html" + ] +} \ No newline at end of file diff --git a/docs/schemereport.LICENSE b/docs/schemereport.LICENSE index 645112e9e1..b4edfba35b 100644 --- a/docs/schemereport.LICENSE +++ b/docs/schemereport.LICENSE @@ -1,5 +1,14 @@ +--- +key: schemereport +short_name: Scheme Language Report License +name: Scheme Language Report License +category: Permissive +owner: ChezScheme +spdx_license_key: SchemeReport +--- + ; We intend this report to belong to the entire Scheme community, and so ; we grant permission to copy it in whole or in part without fee. In ; particular, we encourage implementors of Scheme to use this report as ; a starting point for manuals and other documentation, modifying it as -; necessary. +; necessary. \ No newline at end of file diff --git a/docs/schemereport.html b/docs/schemereport.html index 346600fef8..ec396b6da6 100644 --- a/docs/schemereport.html +++ b/docs/schemereport.html @@ -112,8 +112,7 @@ ; we grant permission to copy it in whole or in part without fee. In ; particular, we encourage implementors of Scheme to use this report as ; a starting point for manuals and other documentation, modifying it as -; necessary. - +; necessary.
@@ -125,7 +124,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/schemereport.json b/docs/schemereport.json index a862904f05..02844792eb 100644 --- a/docs/schemereport.json +++ b/docs/schemereport.json @@ -1 +1,8 @@ -{"key": "schemereport", "short_name": "Scheme Language Report License", "name": "Scheme Language Report License", "category": "Permissive", "owner": "ChezScheme", "spdx_license_key": "SchemeReport"} \ No newline at end of file +{ + "key": "schemereport", + "short_name": "Scheme Language Report License", + "name": "Scheme Language Report License", + "category": "Permissive", + "owner": "ChezScheme", + "spdx_license_key": "SchemeReport" +} \ No newline at end of file diff --git a/docs/scilab-en-2005.LICENSE b/docs/scilab-en-2005.LICENSE index 40b42d380c..e751e71f56 100644 --- a/docs/scilab-en-2005.LICENSE +++ b/docs/scilab-en-2005.LICENSE @@ -1,3 +1,23 @@ +--- +key: scilab-en-2005 +short_name: SCILAB en 2005 +name: SCILAB License 2005 +category: Proprietary Free +owner: Scilab Consortium (Digiteo) +homepage_url: http://web.archive.org/web/20051212214843/http://www.scilab.org/legal/license.html +spdx_license_key: LicenseRef-scancode-scilab-en +other_spdx_license_keys: + - LicenseRef-scancode-scilba-en +text_urls: + - https://directory.fsf.org/wiki/License:Scilab-old +ignorable_copyrights: + - Scilab (c) INRIA-ENPC. +ignorable_holders: + - Scilab INRIA-ENPC. +ignorable_authors: + - INRIA +--- + Important notice : this is a translation of the original license written in French @@ -135,4 +155,4 @@ You are not responsible for respect of the license by a third party. 9- Applicable law The present license and its effects are subject to French law and the -competent French courts. +competent French courts. \ No newline at end of file diff --git a/docs/scilab-en-2005.html b/docs/scilab-en-2005.html index 946542b7e0..36ea8e2b94 100644 --- a/docs/scilab-en-2005.html +++ b/docs/scilab-en-2005.html @@ -297,8 +297,7 @@ 9- Applicable law The present license and its effects are subject to French law and the -competent French courts. - +competent French courts.
@@ -310,7 +309,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/scilab-en-2005.json b/docs/scilab-en-2005.json index 90198f685a..31b897307f 100644 --- a/docs/scilab-en-2005.json +++ b/docs/scilab-en-2005.json @@ -1 +1,24 @@ -{"key": "scilab-en-2005", "short_name": "SCILAB en 2005", "name": "SCILAB License 2005", "category": "Proprietary Free", "owner": "Scilab Consortium (Digiteo)", "homepage_url": "http://web.archive.org/web/20051212214843/http://www.scilab.org/legal/license.html", "spdx_license_key": "LicenseRef-scancode-scilab-en", "other_spdx_license_keys": ["LicenseRef-scancode-scilba-en"], "text_urls": ["https://directory.fsf.org/wiki/License:Scilab-old"], "ignorable_copyrights": ["Scilab (c) INRIA-ENPC."], "ignorable_holders": ["Scilab INRIA-ENPC."], "ignorable_authors": ["INRIA"]} \ No newline at end of file +{ + "key": "scilab-en-2005", + "short_name": "SCILAB en 2005", + "name": "SCILAB License 2005", + "category": "Proprietary Free", + "owner": "Scilab Consortium (Digiteo)", + "homepage_url": "http://web.archive.org/web/20051212214843/http://www.scilab.org/legal/license.html", + "spdx_license_key": "LicenseRef-scancode-scilab-en", + "other_spdx_license_keys": [ + "LicenseRef-scancode-scilba-en" + ], + "text_urls": [ + "https://directory.fsf.org/wiki/License:Scilab-old" + ], + "ignorable_copyrights": [ + "Scilab (c) INRIA-ENPC." + ], + "ignorable_holders": [ + "Scilab INRIA-ENPC." + ], + "ignorable_authors": [ + "INRIA" + ] +} \ No newline at end of file diff --git a/docs/scilab-fr.LICENSE b/docs/scilab-fr.LICENSE index a9efd7a2f2..6a325381e9 100644 --- a/docs/scilab-fr.LICENSE +++ b/docs/scilab-fr.LICENSE @@ -1,3 +1,26 @@ +--- +key: scilab-fr +language: fr +short_name: SCILAB FR +name: Licence SCILAB +category: Proprietary Free +owner: Scilab Consortium (Digiteo) +homepage_url: http://web.archive.org/web/20051212214843/http://www.scilab.org/legal/license.html +spdx_license_key: LicenseRef-scancode-scilab-fr +text_urls: + - https://directory.fsf.org/wiki/License:Scilab-old +ignorable_copyrights: + - (c) INRIA-ENPC + - Scilab (c) INRIA-ENPC + - Scilab (c) INRIA-ENPC. + - Scilab inside (c) INRIA-ENPC +ignorable_holders: + - INRIA-ENPC + - Scilab INRIA-ENPC + - Scilab INRIA-ENPC. + - Scilab inside INRIA-ENPC +--- + Licence SCILAB 1- Préambule @@ -141,4 +164,4 @@ Vous n'êtes pas responsable du respect de la licence par un tiers. 9- Loi applicable La présente licence et ses effets sont soumis au droit français et aux -tribunaux français compétents. +tribunaux français compétents. \ No newline at end of file diff --git a/docs/scilab-fr.html b/docs/scilab-fr.html index 23b1bb1753..dda4542f24 100644 --- a/docs/scilab-fr.html +++ b/docs/scilab-fr.html @@ -292,8 +292,7 @@ 9- Loi applicable La présente licence et ses effets sont soumis au droit français et aux -tribunaux français compétents. - +tribunaux français compétents.
@@ -305,7 +304,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/scilab-fr.json b/docs/scilab-fr.json index bcbb4e7154..eaec4ea6a6 100644 --- a/docs/scilab-fr.json +++ b/docs/scilab-fr.json @@ -1 +1,25 @@ -{"key": "scilab-fr", "language": "fr", "short_name": "SCILAB FR", "name": "Licence SCILAB", "category": "Proprietary Free", "owner": "Scilab Consortium (Digiteo)", "homepage_url": "http://web.archive.org/web/20051212214843/http://www.scilab.org/legal/license.html", "spdx_license_key": "LicenseRef-scancode-scilab-fr", "text_urls": ["https://directory.fsf.org/wiki/License:Scilab-old"], "ignorable_copyrights": ["(c) INRIA-ENPC", "Scilab (c) INRIA-ENPC", "Scilab (c) INRIA-ENPC.", "Scilab inside (c) INRIA-ENPC"], "ignorable_holders": ["INRIA-ENPC", "Scilab INRIA-ENPC", "Scilab INRIA-ENPC.", "Scilab inside INRIA-ENPC"]} \ No newline at end of file +{ + "key": "scilab-fr", + "language": "fr", + "short_name": "SCILAB FR", + "name": "Licence SCILAB", + "category": "Proprietary Free", + "owner": "Scilab Consortium (Digiteo)", + "homepage_url": "http://web.archive.org/web/20051212214843/http://www.scilab.org/legal/license.html", + "spdx_license_key": "LicenseRef-scancode-scilab-fr", + "text_urls": [ + "https://directory.fsf.org/wiki/License:Scilab-old" + ], + "ignorable_copyrights": [ + "(c) INRIA-ENPC", + "Scilab (c) INRIA-ENPC", + "Scilab (c) INRIA-ENPC.", + "Scilab inside (c) INRIA-ENPC" + ], + "ignorable_holders": [ + "INRIA-ENPC", + "Scilab INRIA-ENPC", + "Scilab INRIA-ENPC.", + "Scilab inside INRIA-ENPC" + ] +} \ No newline at end of file diff --git a/docs/scintilla.LICENSE b/docs/scintilla.LICENSE index 94e769f74b..c3ced3e96e 100644 --- a/docs/scintilla.LICENSE +++ b/docs/scintilla.LICENSE @@ -1,3 +1,13 @@ +--- +key: scintilla +short_name: Scintilla License +name: Scintilla License +category: Permissive +owner: Scintilla Project +homepage_url: https://www.scintilla.org/License.txt +spdx_license_key: LicenseRef-scancode-scintilla +--- + 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 diff --git a/docs/scintilla.html b/docs/scintilla.html index 2477ef2aab..b785553c7e 100644 --- a/docs/scintilla.html +++ b/docs/scintilla.html @@ -140,7 +140,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/scintilla.json b/docs/scintilla.json index 1e64ebf01a..c5c10b9a24 100644 --- a/docs/scintilla.json +++ b/docs/scintilla.json @@ -1 +1,9 @@ -{"key": "scintilla", "short_name": "Scintilla License", "name": "Scintilla License", "category": "Permissive", "owner": "Scintilla Project", "homepage_url": "https://www.scintilla.org/License.txt", "spdx_license_key": "LicenseRef-scancode-scintilla"} \ No newline at end of file +{ + "key": "scintilla", + "short_name": "Scintilla License", + "name": "Scintilla License", + "category": "Permissive", + "owner": "Scintilla Project", + "homepage_url": "https://www.scintilla.org/License.txt", + "spdx_license_key": "LicenseRef-scancode-scintilla" +} \ No newline at end of file diff --git a/docs/scola-en.LICENSE b/docs/scola-en.LICENSE index 57278cd0fc..ccea6499f7 100644 --- a/docs/scola-en.LICENSE +++ b/docs/scola-en.LICENSE @@ -1,3 +1,14 @@ +--- +key: scola-en +short_name: Statistics Canada Open Licence Agreement +name: Statistics Canada Open Licence Agreement +category: Proprietary Free +owner: Minister for Statistics Canada +homepage_url: https://www.statcan.gc.ca/eng/reference/licence +spdx_license_key: LicenseRef-scancode-scola-en +ignorable_emails: + - information@fip-pcim.gc.ca +--- Statistics Canada Open Licence Agreement @@ -74,4 +85,4 @@ Survival All obligations which expressly or by their nature survive termination of this agreement shall continue in full force and effect. For greater clarity, and without limiting the generality of the foregoing, the following provisions survive expiration or termination of this agreement: Acknowledgment of Source, and No warranty and no Liability. Applicable Law -This agreement shall be governed and construed in accordance with the laws of the province of Ontario and the laws of Canada applicable therein. The parties hereby attorn to the exclusive jurisdiction of the Federal Court of Canada. +This agreement shall be governed and construed in accordance with the laws of the province of Ontario and the laws of Canada applicable therein. The parties hereby attorn to the exclusive jurisdiction of the Federal Court of Canada. \ No newline at end of file diff --git a/docs/scola-en.html b/docs/scola-en.html index 99b074f7b3..522d869cdb 100644 --- a/docs/scola-en.html +++ b/docs/scola-en.html @@ -124,8 +124,7 @@
license_text
-

-Statistics Canada Open Licence Agreement
+    
Statistics Canada Open Licence Agreement
 
 This agreement is between Her Majesty the Queen in Right of Canada, as represented by the Minister for Statistics Canada ("Statistics Canada") and you (an individual or a legal entity that you are authorized to represent).
 
@@ -200,8 +199,7 @@
 All obligations which expressly or by their nature survive termination of this agreement shall continue in full force and effect. For greater clarity, and without limiting the generality of the foregoing, the following provisions survive expiration or termination of this agreement: Acknowledgment of Source, and No warranty and no Liability.
 Applicable Law
 
-This agreement shall be governed and construed in accordance with the laws of the province of Ontario and the laws of Canada applicable therein. The parties hereby attorn to the exclusive jurisdiction of the Federal Court of Canada.
-
+This agreement shall be governed and construed in accordance with the laws of the province of Ontario and the laws of Canada applicable therein. The parties hereby attorn to the exclusive jurisdiction of the Federal Court of Canada.
@@ -213,7 +211,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/scola-en.json b/docs/scola-en.json index f26a887199..2b721cce98 100644 --- a/docs/scola-en.json +++ b/docs/scola-en.json @@ -1 +1,12 @@ -{"key": "scola-en", "short_name": "Statistics Canada Open Licence Agreement", "name": "Statistics Canada Open Licence Agreement", "category": "Proprietary Free", "owner": "Minister for Statistics Canada", "homepage_url": "https://www.statcan.gc.ca/eng/reference/licence", "spdx_license_key": "LicenseRef-scancode-scola-en", "ignorable_emails": ["information@fip-pcim.gc.ca"]} \ No newline at end of file +{ + "key": "scola-en", + "short_name": "Statistics Canada Open Licence Agreement", + "name": "Statistics Canada Open Licence Agreement", + "category": "Proprietary Free", + "owner": "Minister for Statistics Canada", + "homepage_url": "https://www.statcan.gc.ca/eng/reference/licence", + "spdx_license_key": "LicenseRef-scancode-scola-en", + "ignorable_emails": [ + "information@fip-pcim.gc.ca" + ] +} \ No newline at end of file diff --git a/docs/scola-fr.LICENSE b/docs/scola-fr.LICENSE index 062f0e60b3..e35767be05 100644 --- a/docs/scola-fr.LICENSE +++ b/docs/scola-fr.LICENSE @@ -1,3 +1,15 @@ +--- +key: scola-fr +language: fr +short_name: Statistics Canada Open Licence +name: Entente de licence ouverte de Statistique Canada +category: Proprietary Free +owner: Minister for Statistics Canada +homepage_url: https://www.statcan.gc.ca/fra/reference/licence +spdx_license_key: LicenseRef-scancode-scola-fr +ignorable_emails: + - information@fip-pcim.gc.ca +--- Entente de licence ouverte de Statistique Canada @@ -74,4 +86,4 @@ Survie Les obligations qui survivent à la résiliation de la présente entente, expressément ou en raison de leur nature, demeureront en vigueur. Pour plus de clarté, et sans limiter la généralité de ce qui précède, les dispositions qui suivent survivent à l'expiration ou à la résiliation de la présente entente : « Mention de la source » et « Aucune garantie ni responsabilité ». Lois applicables -La présente entente est régie et interprétée conformément aux lois de la province de l'Ontario et aux lois du Canada qui sont applicables. Par la présente, les parties reconnaissent la compétence exclusive de la Cour fédérale du Canada. +La présente entente est régie et interprétée conformément aux lois de la province de l'Ontario et aux lois du Canada qui sont applicables. Par la présente, les parties reconnaissent la compétence exclusive de la Cour fédérale du Canada. \ No newline at end of file diff --git a/docs/scola-fr.html b/docs/scola-fr.html index 6e555f0d64..75167c0e23 100644 --- a/docs/scola-fr.html +++ b/docs/scola-fr.html @@ -131,8 +131,7 @@
license_text
-

-Entente de licence ouverte de Statistique Canada
+    
Entente de licence ouverte de Statistique Canada
 
 La présente entente est conclue entre Sa Majesté la Reine du chef du Canada, représentée par le ministre responsable de Statistique Canada (« Statistique Canada ») et vous (un particulier ou une personne morale que vous êtes autorisé à représenter).
 
@@ -207,8 +206,7 @@
 Les obligations qui survivent à la résiliation de la présente entente, expressément ou en raison de leur nature, demeureront en vigueur. Pour plus de clarté, et sans limiter la généralité de ce qui précède, les dispositions qui suivent survivent à l'expiration ou à la résiliation de la présente entente : « Mention de la source » et « Aucune garantie ni responsabilité ».
 Lois applicables
 
-La présente entente est régie et interprétée conformément aux lois de la province de l'Ontario et aux lois du Canada qui sont applicables. Par la présente, les parties reconnaissent la compétence exclusive de la Cour fédérale du Canada.
-
+La présente entente est régie et interprétée conformément aux lois de la province de l'Ontario et aux lois du Canada qui sont applicables. Par la présente, les parties reconnaissent la compétence exclusive de la Cour fédérale du Canada.
@@ -220,7 +218,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/scola-fr.json b/docs/scola-fr.json index 9cb4823c9f..fb21820cbb 100644 --- a/docs/scola-fr.json +++ b/docs/scola-fr.json @@ -1 +1,13 @@ -{"key": "scola-fr", "language": "fr", "short_name": "Statistics Canada Open Licence", "name": "Entente de licence ouverte de Statistique Canada", "category": "Proprietary Free", "owner": "Minister for Statistics Canada", "homepage_url": "https://www.statcan.gc.ca/fra/reference/licence", "spdx_license_key": "LicenseRef-scancode-scola-fr", "ignorable_emails": ["information@fip-pcim.gc.ca"]} \ No newline at end of file +{ + "key": "scola-fr", + "language": "fr", + "short_name": "Statistics Canada Open Licence", + "name": "Entente de licence ouverte de Statistique Canada", + "category": "Proprietary Free", + "owner": "Minister for Statistics Canada", + "homepage_url": "https://www.statcan.gc.ca/fra/reference/licence", + "spdx_license_key": "LicenseRef-scancode-scola-fr", + "ignorable_emails": [ + "information@fip-pcim.gc.ca" + ] +} \ No newline at end of file diff --git a/docs/scribbles.LICENSE b/docs/scribbles.LICENSE index fc15c26058..a5ccd914e1 100644 --- a/docs/scribbles.LICENSE +++ b/docs/scribbles.LICENSE @@ -1,5 +1,14 @@ +--- +key: scribbles +short_name: Scribbles Demos Recognizer Notice +name: Scribbles Demos Recognizer Notice +category: Permissive +owner: HP - Hewlett Packard +spdx_license_key: LicenseRef-scancode-scribbles +--- + Copying or modifying this code for any purpose is permitted, provided that this copyright notice is preserved in its entirety in all copies or modifications COMPAQ COMPUTER CORPORATION MAKES NO WARRANTIES, EXPRESSED OR IIMPLIED, AS TO -THE USEFULNESS OR CORRECTNESS OF THIS CODE. +THE USEFULNESS OR CORRECTNESS OF THIS CODE. \ No newline at end of file diff --git a/docs/scribbles.html b/docs/scribbles.html index 9d189b5a35..0656a074af 100644 --- a/docs/scribbles.html +++ b/docs/scribbles.html @@ -112,8 +112,7 @@ copyright notice is preserved in its entirety in all copies or modifications COMPAQ COMPUTER CORPORATION MAKES NO WARRANTIES, EXPRESSED OR IIMPLIED, AS TO -THE USEFULNESS OR CORRECTNESS OF THIS CODE. - +THE USEFULNESS OR CORRECTNESS OF THIS CODE.
@@ -125,7 +124,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/scribbles.json b/docs/scribbles.json index f6eeffcdda..ee610c5b00 100644 --- a/docs/scribbles.json +++ b/docs/scribbles.json @@ -1 +1,8 @@ -{"key": "scribbles", "short_name": "Scribbles Demos Recognizer Notice", "name": "Scribbles Demos Recognizer Notice", "category": "Permissive", "owner": "HP - Hewlett Packard", "spdx_license_key": "LicenseRef-scancode-scribbles"} \ No newline at end of file +{ + "key": "scribbles", + "short_name": "Scribbles Demos Recognizer Notice", + "name": "Scribbles Demos Recognizer Notice", + "category": "Permissive", + "owner": "HP - Hewlett Packard", + "spdx_license_key": "LicenseRef-scancode-scribbles" +} \ No newline at end of file diff --git a/docs/script-asylum.LICENSE b/docs/script-asylum.LICENSE index 6c087245f9..f656999bfe 100644 --- a/docs/script-asylum.LICENSE +++ b/docs/script-asylum.LICENSE @@ -1,3 +1,13 @@ +--- +key: script-asylum +short_name: Script Asylum License +name: Script Asylum License +category: Permissive +owner: Script Asylum +homepage_url: http://web.archive.org/web/20030720033728/http://www.scriptasylum.com/faqpage.html#p7 +spdx_license_key: LicenseRef-scancode-script-asylum +--- + Use of these materials are limited to personal and commercial use as long as long as credits are left intact. Modification of the original material is permitted as long as credits for the original developer(s) are left intact and diff --git a/docs/script-asylum.html b/docs/script-asylum.html index d02a748bf7..1892757949 100644 --- a/docs/script-asylum.html +++ b/docs/script-asylum.html @@ -130,7 +130,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/script-asylum.json b/docs/script-asylum.json index e44bc525c8..798bc5c5c9 100644 --- a/docs/script-asylum.json +++ b/docs/script-asylum.json @@ -1 +1,9 @@ -{"key": "script-asylum", "short_name": "Script Asylum License", "name": "Script Asylum License", "category": "Permissive", "owner": "Script Asylum", "homepage_url": "http://web.archive.org/web/20030720033728/http://www.scriptasylum.com/faqpage.html#p7", "spdx_license_key": "LicenseRef-scancode-script-asylum"} \ No newline at end of file +{ + "key": "script-asylum", + "short_name": "Script Asylum License", + "name": "Script Asylum License", + "category": "Permissive", + "owner": "Script Asylum", + "homepage_url": "http://web.archive.org/web/20030720033728/http://www.scriptasylum.com/faqpage.html#p7", + "spdx_license_key": "LicenseRef-scancode-script-asylum" +} \ No newline at end of file diff --git a/docs/script-nikhilk.LICENSE b/docs/script-nikhilk.LICENSE index e8278c1621..f93d2cde0b 100644 --- a/docs/script-nikhilk.LICENSE +++ b/docs/script-nikhilk.LICENSE @@ -1,3 +1,18 @@ +--- +key: script-nikhilk +short_name: Script# License +name: Script# License +category: Proprietary Free +owner: ScriptSharp +homepage_url: http://projects.nikhilk.net/Content/Projects/ScriptSharp/ScriptSharp.pdf +spdx_license_key: LicenseRef-scancode-script-nikhilk +text_urls: + - http://projects.nikhilk.net/Content/Projects/ScriptSharp/ScriptSharp.pdf +other_urls: + - http://www.amazon.com/exec/obidos/ASIN/0735615829/nikhilkothari-20 + - http://www.nikhilk.net/About.aspx +--- + End User License Agreement for Script# IT IS IMPORTANT THAT YOU CAREFULLY READ THIS NOTICE BEFORE INSTALLING THIS PRODUCT. BY INSTALLING, OR OTHERWISE USING THIS SOFTWARE, YOU AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE AGREEMENT (THE "AGREEMENT") WHICH CONSTITUTES A LEGALLY BINDING CONTRACT BETWEEN THE LICENSOR (PROJECTS.NIKHILK.NET, HEREAFTER "WE", OR "US") AND THE LICENSEE (EITHER AN INDIVIDUAL OR ENTITY, HEREAFTER "YOU"). THIS AGREEMENT diff --git a/docs/script-nikhilk.html b/docs/script-nikhilk.html index 9d166b7d02..fcafe095c6 100644 --- a/docs/script-nikhilk.html +++ b/docs/script-nikhilk.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/script-nikhilk.json b/docs/script-nikhilk.json index dfc231a7d6..6128faa53f 100644 --- a/docs/script-nikhilk.json +++ b/docs/script-nikhilk.json @@ -1 +1,16 @@ -{"key": "script-nikhilk", "short_name": "Script# License", "name": "Script# License", "category": "Proprietary Free", "owner": "ScriptSharp", "homepage_url": "http://projects.nikhilk.net/Content/Projects/ScriptSharp/ScriptSharp.pdf", "spdx_license_key": "LicenseRef-scancode-script-nikhilk", "text_urls": ["http://projects.nikhilk.net/Content/Projects/ScriptSharp/ScriptSharp.pdf"], "other_urls": ["http://www.amazon.com/exec/obidos/ASIN/0735615829/nikhilkothari-20", "http://www.nikhilk.net/About.aspx"]} \ No newline at end of file +{ + "key": "script-nikhilk", + "short_name": "Script# License", + "name": "Script# License", + "category": "Proprietary Free", + "owner": "ScriptSharp", + "homepage_url": "http://projects.nikhilk.net/Content/Projects/ScriptSharp/ScriptSharp.pdf", + "spdx_license_key": "LicenseRef-scancode-script-nikhilk", + "text_urls": [ + "http://projects.nikhilk.net/Content/Projects/ScriptSharp/ScriptSharp.pdf" + ], + "other_urls": [ + "http://www.amazon.com/exec/obidos/ASIN/0735615829/nikhilkothari-20", + "http://www.nikhilk.net/About.aspx" + ] +} \ No newline at end of file diff --git a/docs/scrub.LICENSE b/docs/scrub.LICENSE index 687274a9d7..568e9f0499 100644 --- a/docs/scrub.LICENSE +++ b/docs/scrub.LICENSE @@ -1,3 +1,17 @@ +--- +key: scrub +short_name: SCRUB License +name: SCRUB License +category: Proprietary Free +owner: Duxbury Systems, Inc. +homepage_url: http://www.duxburysystems.com/ +spdx_license_key: LicenseRef-scancode-scrub +ignorable_copyrights: + - Copyright 1988-1993 Duxbury Systems, Inc. +ignorable_holders: + - Duxbury Systems, Inc. +--- + SCRUB - Simple Character String Replacer Documentation First Release: December 1988 diff --git a/docs/scrub.html b/docs/scrub.html index d9c27df295..349df0dfd2 100644 --- a/docs/scrub.html +++ b/docs/scrub.html @@ -157,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/scrub.json b/docs/scrub.json index 8260b1fe6f..d52f1817ff 100644 --- a/docs/scrub.json +++ b/docs/scrub.json @@ -1 +1,15 @@ -{"key": "scrub", "short_name": "SCRUB License", "name": "SCRUB License", "category": "Proprietary Free", "owner": "Duxbury Systems, Inc.", "homepage_url": "http://www.duxburysystems.com/", "spdx_license_key": "LicenseRef-scancode-scrub", "ignorable_copyrights": ["Copyright 1988-1993 Duxbury Systems, Inc."], "ignorable_holders": ["Duxbury Systems, Inc."]} \ No newline at end of file +{ + "key": "scrub", + "short_name": "SCRUB License", + "name": "SCRUB License", + "category": "Proprietary Free", + "owner": "Duxbury Systems, Inc.", + "homepage_url": "http://www.duxburysystems.com/", + "spdx_license_key": "LicenseRef-scancode-scrub", + "ignorable_copyrights": [ + "Copyright 1988-1993 Duxbury Systems, Inc." + ], + "ignorable_holders": [ + "Duxbury Systems, Inc." + ] +} \ No newline at end of file diff --git a/docs/scsl-3.0.LICENSE b/docs/scsl-3.0.LICENSE index 2b6230aba2..487780781d 100644 --- a/docs/scsl-3.0.LICENSE +++ b/docs/scsl-3.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: scsl-3.0 +short_name: Sun Community Source License 3.0 +name: Sun Community Source License 3.0 +category: Copyleft Limited +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-scsl-3.0 +other_urls: + - http://www.sun.com/software/jini/licensing/SCSL3_JiniTSA1.html +ignorable_urls: + - http://sun.com/software/communitysource +--- + Sun Community Source License v3.0 II. PURPOSES diff --git a/docs/scsl-3.0.html b/docs/scsl-3.0.html index e56aa18131..357ade24bc 100644 --- a/docs/scsl-3.0.html +++ b/docs/scsl-3.0.html @@ -246,7 +246,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/scsl-3.0.json b/docs/scsl-3.0.json index d05318a8e4..8927631abe 100644 --- a/docs/scsl-3.0.json +++ b/docs/scsl-3.0.json @@ -1 +1,14 @@ -{"key": "scsl-3.0", "short_name": "Sun Community Source License 3.0", "name": "Sun Community Source License 3.0", "category": "Copyleft Limited", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-scsl-3.0", "other_urls": ["http://www.sun.com/software/jini/licensing/SCSL3_JiniTSA1.html"], "ignorable_urls": ["http://sun.com/software/communitysource"]} \ No newline at end of file +{ + "key": "scsl-3.0", + "short_name": "Sun Community Source License 3.0", + "name": "Sun Community Source License 3.0", + "category": "Copyleft Limited", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-scsl-3.0", + "other_urls": [ + "http://www.sun.com/software/jini/licensing/SCSL3_JiniTSA1.html" + ], + "ignorable_urls": [ + "http://sun.com/software/communitysource" + ] +} \ No newline at end of file diff --git a/docs/secret-labs-2011.LICENSE b/docs/secret-labs-2011.LICENSE index d5b02ee406..0c78628594 100644 --- a/docs/secret-labs-2011.LICENSE +++ b/docs/secret-labs-2011.LICENSE @@ -1,5 +1,15 @@ +--- +key: secret-labs-2011 +short_name: Secret Labs License 2011 +name: Secret Labs License 2011 +category: Permissive +owner: Secret Labs AB +homepage_url: http://www.pythonware.com/products/pil/license.htm +spdx_license_key: LicenseRef-scancode-secret-labs-2011 +--- + By obtaining, using, and/or copying this software and/or its associated documentation, you agree that you have read, understood, and will comply with the following terms and conditions: Permission to use, copy, modify, and distribute this software and its associated documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies, and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Secret Labs AB or the author not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. -SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR 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. +SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR 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. \ No newline at end of file diff --git a/docs/secret-labs-2011.html b/docs/secret-labs-2011.html index 66b88285cb..3d504bd34a 100644 --- a/docs/secret-labs-2011.html +++ b/docs/secret-labs-2011.html @@ -119,8 +119,7 @@ Permission to use, copy, modify, and distribute this software and its associated documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies, and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Secret Labs AB or the author not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. -SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR 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. - +SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR 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.
@@ -132,7 +131,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/secret-labs-2011.json b/docs/secret-labs-2011.json index 9ddb054839..7f77fa6402 100644 --- a/docs/secret-labs-2011.json +++ b/docs/secret-labs-2011.json @@ -1 +1,9 @@ -{"key": "secret-labs-2011", "short_name": "Secret Labs License 2011", "name": "Secret Labs License 2011", "category": "Permissive", "owner": "Secret Labs AB", "homepage_url": "http://www.pythonware.com/products/pil/license.htm", "spdx_license_key": "LicenseRef-scancode-secret-labs-2011"} \ No newline at end of file +{ + "key": "secret-labs-2011", + "short_name": "Secret Labs License 2011", + "name": "Secret Labs License 2011", + "category": "Permissive", + "owner": "Secret Labs AB", + "homepage_url": "http://www.pythonware.com/products/pil/license.htm", + "spdx_license_key": "LicenseRef-scancode-secret-labs-2011" +} \ No newline at end of file diff --git a/docs/see-license.LICENSE b/docs/see-license.LICENSE index e69de29bb2..8db24cc229 100644 --- a/docs/see-license.LICENSE +++ b/docs/see-license.LICENSE @@ -0,0 +1,10 @@ +--- +key: see-license +is_deprecated: yes +short_name: See License mention +name: See License mention +category: Unstated License +owner: Unspecified +notes: replaced by unknown-license-reference +is_unknown: yes +--- \ No newline at end of file diff --git a/docs/see-license.html b/docs/see-license.html index e303f5b343..d3c01bc716 100644 --- a/docs/see-license.html +++ b/docs/see-license.html @@ -134,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/see-license.json b/docs/see-license.json index a85af66668..33588f8208 100644 --- a/docs/see-license.json +++ b/docs/see-license.json @@ -1 +1,10 @@ -{"key": "see-license", "is_deprecated": true, "short_name": "See License mention", "name": "See License mention", "category": "Unstated License", "owner": "Unspecified", "notes": "replaced by unknown-license-reference", "is_unknown": true} \ No newline at end of file +{ + "key": "see-license", + "is_deprecated": true, + "short_name": "See License mention", + "name": "See License mention", + "category": "Unstated License", + "owner": "Unspecified", + "notes": "replaced by unknown-license-reference", + "is_unknown": true +} \ No newline at end of file diff --git a/docs/selinux-nsa-declaration-1.0.LICENSE b/docs/selinux-nsa-declaration-1.0.LICENSE index 00a825fc79..7d8c3d1cf0 100644 --- a/docs/selinux-nsa-declaration-1.0.LICENSE +++ b/docs/selinux-nsa-declaration-1.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: selinux-nsa-declaration-1.0 +short_name: selinux-nsa-declaration-1.0 +name: selinux-nsa-declaration-1.0 +category: Public Domain +owner: NSA +homepage_url: https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE +spdx_license_key: libselinux-1.0 +--- + This library (libselinux) is public domain software, i.e. not copyrighted. Warranty Exclusion diff --git a/docs/selinux-nsa-declaration-1.0.html b/docs/selinux-nsa-declaration-1.0.html index 7075f8743e..fbb485de5a 100644 --- a/docs/selinux-nsa-declaration-1.0.html +++ b/docs/selinux-nsa-declaration-1.0.html @@ -147,7 +147,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/selinux-nsa-declaration-1.0.json b/docs/selinux-nsa-declaration-1.0.json index e0e66018a7..b7c248f778 100644 --- a/docs/selinux-nsa-declaration-1.0.json +++ b/docs/selinux-nsa-declaration-1.0.json @@ -1 +1,9 @@ -{"key": "selinux-nsa-declaration-1.0", "short_name": "selinux-nsa-declaration-1.0", "name": "selinux-nsa-declaration-1.0", "category": "Public Domain", "owner": "NSA", "homepage_url": "https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE", "spdx_license_key": "libselinux-1.0"} \ No newline at end of file +{ + "key": "selinux-nsa-declaration-1.0", + "short_name": "selinux-nsa-declaration-1.0", + "name": "selinux-nsa-declaration-1.0", + "category": "Public Domain", + "owner": "NSA", + "homepage_url": "https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE", + "spdx_license_key": "libselinux-1.0" +} \ No newline at end of file diff --git a/docs/sencha-app-floss-exception.LICENSE b/docs/sencha-app-floss-exception.LICENSE index b94df49403..4ca49d27b4 100644 --- a/docs/sencha-app-floss-exception.LICENSE +++ b/docs/sencha-app-floss-exception.LICENSE @@ -1,3 +1,17 @@ +--- +key: sencha-app-floss-exception +short_name: Sencha GPL 3.0 Exception for Applications +name: Sencha Open Source License Exception for Applications +category: Copyleft +owner: Sencha +homepage_url: http://www.sencha.com/products/floss-exception.php +notes: Sencha stopped offering this exception in 2015. +is_exception: yes +spdx_license_key: LicenseRef-scancode-sencha-app-floss-exception +other_urls: + - http://web.archive.org/web/20140816133327/http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-applications/ + - http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-applications/ +--- Exception for Applications Version 1.04, January 18, 2013 @@ -61,4 +75,4 @@ W3C License "2001" X11 License "2001" Zimbra Public License 1.3 Zlib/libpng License - -Zope Public License 2.0 +Zope Public License 2.0 \ No newline at end of file diff --git a/docs/sencha-app-floss-exception.html b/docs/sencha-app-floss-exception.html index 3684ddf45f..3e890022b5 100644 --- a/docs/sencha-app-floss-exception.html +++ b/docs/sencha-app-floss-exception.html @@ -138,8 +138,7 @@
license_text
-

-Exception for Applications Version 1.04, January 18, 2013
+    
Exception for Applications Version 1.04, January 18, 2013
 
 Exception Intent
 
@@ -201,8 +200,7 @@
 X11 License    "2001"
 Zimbra Public License    1.3
 Zlib/libpng License    -
-Zope Public License    2.0
-
+Zope Public License 2.0
@@ -214,7 +212,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sencha-app-floss-exception.json b/docs/sencha-app-floss-exception.json index 38e7fbcb76..4454d124f0 100644 --- a/docs/sencha-app-floss-exception.json +++ b/docs/sencha-app-floss-exception.json @@ -1 +1,15 @@ -{"key": "sencha-app-floss-exception", "short_name": "Sencha GPL 3.0 Exception for Applications", "name": "Sencha Open Source License Exception for Applications", "category": "Copyleft", "owner": "Sencha", "homepage_url": "http://www.sencha.com/products/floss-exception.php", "notes": "Sencha stopped offering this exception in 2015.", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-sencha-app-floss-exception", "other_urls": ["http://web.archive.org/web/20140816133327/http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-applications/", "http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-applications/"]} \ No newline at end of file +{ + "key": "sencha-app-floss-exception", + "short_name": "Sencha GPL 3.0 Exception for Applications", + "name": "Sencha Open Source License Exception for Applications", + "category": "Copyleft", + "owner": "Sencha", + "homepage_url": "http://www.sencha.com/products/floss-exception.php", + "notes": "Sencha stopped offering this exception in 2015.", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-sencha-app-floss-exception", + "other_urls": [ + "http://web.archive.org/web/20140816133327/http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-applications/", + "http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-applications/" + ] +} \ No newline at end of file diff --git a/docs/sencha-commercial-3.17.LICENSE b/docs/sencha-commercial-3.17.LICENSE index 4a9f58427e..ceb2c233e3 100644 --- a/docs/sencha-commercial-3.17.LICENSE +++ b/docs/sencha-commercial-3.17.LICENSE @@ -1,3 +1,16 @@ +--- +key: sencha-commercial-3.17 +short_name: Sencha Software License Agreement v3.17 +name: Sencha Software License Agreement v3.17 +category: Commercial +owner: Sencha +homepage_url: https://www.sencha.com/legal/sencha-software-license-agreement/ +spdx_license_key: LicenseRef-scancode-sencha-commercial-3.17 +faq_url: https://www.sencha.com/support/faqs/ +other_urls: + - https://www.sencha.com/legal/ +--- + Sencha Software License Agreement Version 3.17 diff --git a/docs/sencha-commercial-3.17.html b/docs/sencha-commercial-3.17.html index e2b515fd9c..e06cdc8b1f 100644 --- a/docs/sencha-commercial-3.17.html +++ b/docs/sencha-commercial-3.17.html @@ -279,7 +279,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sencha-commercial-3.17.json b/docs/sencha-commercial-3.17.json index 4f8393eab3..79e1d870a2 100644 --- a/docs/sencha-commercial-3.17.json +++ b/docs/sencha-commercial-3.17.json @@ -1 +1,13 @@ -{"key": "sencha-commercial-3.17", "short_name": "Sencha Software License Agreement v3.17", "name": "Sencha Software License Agreement v3.17", "category": "Commercial", "owner": "Sencha", "homepage_url": "https://www.sencha.com/legal/sencha-software-license-agreement/", "spdx_license_key": "LicenseRef-scancode-sencha-commercial-3.17", "faq_url": "https://www.sencha.com/support/faqs/", "other_urls": ["https://www.sencha.com/legal/"]} \ No newline at end of file +{ + "key": "sencha-commercial-3.17", + "short_name": "Sencha Software License Agreement v3.17", + "name": "Sencha Software License Agreement v3.17", + "category": "Commercial", + "owner": "Sencha", + "homepage_url": "https://www.sencha.com/legal/sencha-software-license-agreement/", + "spdx_license_key": "LicenseRef-scancode-sencha-commercial-3.17", + "faq_url": "https://www.sencha.com/support/faqs/", + "other_urls": [ + "https://www.sencha.com/legal/" + ] +} \ No newline at end of file diff --git a/docs/sencha-commercial-3.9.LICENSE b/docs/sencha-commercial-3.9.LICENSE index 9851cbf179..7f087ebc77 100644 --- a/docs/sencha-commercial-3.9.LICENSE +++ b/docs/sencha-commercial-3.9.LICENSE @@ -1,3 +1,15 @@ +--- +key: sencha-commercial-3.9 +short_name: Sencha Software License Agreement 3.9 +name: Sencha Software License Agreement v3.9 +category: Commercial +owner: Sencha +homepage_url: https://www.sencha.com/legal/sencha-software-license-agreement/ +spdx_license_key: LicenseRef-scancode-sencha-commercial-3.9 +ignorable_emails: + - license@sencha.com +--- + Sencha Software License Agreement Summary of Important Use Restrictions diff --git a/docs/sencha-commercial-3.9.html b/docs/sencha-commercial-3.9.html index 33b75d588d..25ce70ed62 100644 --- a/docs/sencha-commercial-3.9.html +++ b/docs/sencha-commercial-3.9.html @@ -272,7 +272,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sencha-commercial-3.9.json b/docs/sencha-commercial-3.9.json index adf75aff0d..e421cfd541 100644 --- a/docs/sencha-commercial-3.9.json +++ b/docs/sencha-commercial-3.9.json @@ -1 +1,12 @@ -{"key": "sencha-commercial-3.9", "short_name": "Sencha Software License Agreement 3.9", "name": "Sencha Software License Agreement v3.9", "category": "Commercial", "owner": "Sencha", "homepage_url": "https://www.sencha.com/legal/sencha-software-license-agreement/", "spdx_license_key": "LicenseRef-scancode-sencha-commercial-3.9", "ignorable_emails": ["license@sencha.com"]} \ No newline at end of file +{ + "key": "sencha-commercial-3.9", + "short_name": "Sencha Software License Agreement 3.9", + "name": "Sencha Software License Agreement v3.9", + "category": "Commercial", + "owner": "Sencha", + "homepage_url": "https://www.sencha.com/legal/sencha-software-license-agreement/", + "spdx_license_key": "LicenseRef-scancode-sencha-commercial-3.9", + "ignorable_emails": [ + "license@sencha.com" + ] +} \ No newline at end of file diff --git a/docs/sencha-commercial.LICENSE b/docs/sencha-commercial.LICENSE index 5d2a80f94f..20ae0d3e9f 100644 --- a/docs/sencha-commercial.LICENSE +++ b/docs/sencha-commercial.LICENSE @@ -1,3 +1,15 @@ +--- +key: sencha-commercial +short_name: Sencha Commercial License 1.1 +name: Sencha Commercial License v1.1 +category: Commercial +owner: Sencha +homepage_url: http://www.sencha.com/legal/sencha-commercial-software-license-agreement/ +spdx_license_key: LicenseRef-scancode-sencha-commercial +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + Sencha Commercial License Sencha Commercial Software License Agreement: Ext JS, Sencha GXT, and/or Sencha Touch Charts Version 1.11 diff --git a/docs/sencha-commercial.html b/docs/sencha-commercial.html index dc77cd6f7e..7d37d4a840 100644 --- a/docs/sencha-commercial.html +++ b/docs/sencha-commercial.html @@ -216,7 +216,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sencha-commercial.json b/docs/sencha-commercial.json index 1544021ab8..9e08975d95 100644 --- a/docs/sencha-commercial.json +++ b/docs/sencha-commercial.json @@ -1 +1,12 @@ -{"key": "sencha-commercial", "short_name": "Sencha Commercial License 1.1", "name": "Sencha Commercial License v1.1", "category": "Commercial", "owner": "Sencha", "homepage_url": "http://www.sencha.com/legal/sencha-commercial-software-license-agreement/", "spdx_license_key": "LicenseRef-scancode-sencha-commercial", "ignorable_urls": ["http://www.gnu.org/copyleft/gpl.html"]} \ No newline at end of file +{ + "key": "sencha-commercial", + "short_name": "Sencha Commercial License 1.1", + "name": "Sencha Commercial License v1.1", + "category": "Commercial", + "owner": "Sencha", + "homepage_url": "http://www.sencha.com/legal/sencha-commercial-software-license-agreement/", + "spdx_license_key": "LicenseRef-scancode-sencha-commercial", + "ignorable_urls": [ + "http://www.gnu.org/copyleft/gpl.html" + ] +} \ No newline at end of file diff --git a/docs/sencha-dev-floss-exception.LICENSE b/docs/sencha-dev-floss-exception.LICENSE index 677821c186..6a1f1ceec8 100644 --- a/docs/sencha-dev-floss-exception.LICENSE +++ b/docs/sencha-dev-floss-exception.LICENSE @@ -1,3 +1,19 @@ +--- +key: sencha-dev-floss-exception +short_name: Sencha GPL 3.0 Exception for Development +name: Sencha Open Source License Exception for Development +category: Copyleft +owner: Sencha +homepage_url: http://www.sencha.com/products/ux-exception.php +notes: Sencha stopped offering this exception in 2015. +is_exception: yes +spdx_license_key: LicenseRef-scancode-sencha-dev-floss-exception +other_urls: + - http://web.archive.org/web/20140816133230/http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-development/ + - http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-development/ +ignorable_urls: + - http://www.sencha.com/license +--- Exception for Development Version 1.04, January 18, 2013 diff --git a/docs/sencha-dev-floss-exception.html b/docs/sencha-dev-floss-exception.html index 8b3584c777..42d9e9a721 100644 --- a/docs/sencha-dev-floss-exception.html +++ b/docs/sencha-dev-floss-exception.html @@ -147,8 +147,7 @@
license_text
-

-Exception for Development Version 1.04, January 18, 2013
+    
Exception for Development Version 1.04, January 18, 2013
 
 Exception Intent
 
@@ -227,7 +226,8 @@
       AboutCode
     

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sencha-dev-floss-exception.json b/docs/sencha-dev-floss-exception.json index edc9576d99..e60e171f9c 100644 --- a/docs/sencha-dev-floss-exception.json +++ b/docs/sencha-dev-floss-exception.json @@ -1 +1,18 @@ -{"key": "sencha-dev-floss-exception", "short_name": "Sencha GPL 3.0 Exception for Development", "name": "Sencha Open Source License Exception for Development", "category": "Copyleft", "owner": "Sencha", "homepage_url": "http://www.sencha.com/products/ux-exception.php", "notes": "Sencha stopped offering this exception in 2015.", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-sencha-dev-floss-exception", "other_urls": ["http://web.archive.org/web/20140816133230/http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-development/", "http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-development/"], "ignorable_urls": ["http://www.sencha.com/license"]} \ No newline at end of file +{ + "key": "sencha-dev-floss-exception", + "short_name": "Sencha GPL 3.0 Exception for Development", + "name": "Sencha Open Source License Exception for Development", + "category": "Copyleft", + "owner": "Sencha", + "homepage_url": "http://www.sencha.com/products/ux-exception.php", + "notes": "Sencha stopped offering this exception in 2015.", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-sencha-dev-floss-exception", + "other_urls": [ + "http://web.archive.org/web/20140816133230/http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-development/", + "http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-development/" + ], + "ignorable_urls": [ + "http://www.sencha.com/license" + ] +} \ No newline at end of file diff --git a/docs/sendmail-8.23.LICENSE b/docs/sendmail-8.23.LICENSE index ca6fc8f808..e070ad1517 100644 --- a/docs/sendmail-8.23.LICENSE +++ b/docs/sendmail-8.23.LICENSE @@ -1,3 +1,25 @@ +--- +key: sendmail-8.23 +short_name: Sendmail License 8.23 +name: Sendmail License 8.23 +category: Copyleft Limited +owner: Sendmail +homepage_url: https://www.proofpoint.com/sites/default/files/sendmail-license.pdf +spdx_license_key: Sendmail-8.23 +other_urls: + - https://www.proofpoint.com/sites/default/files/sendmail-license.pdf + - https://web.archive.org/web/20181003101040/https://www.proofpoint.com/sites/default/files/sendmail-license.pdf +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 1988, 1993 The Regents of the University ofCalifornia + - Copyright (c) 1998-2014 Proofpoint, Inc. +ignorable_holders: + - Proofpoint, Inc. + - The Regents of the University ofCalifornia +ignorable_emails: + - sendmail-license@proofpoint.com +--- + SENDMAIL LICENSE The following license terms and conditions apply, unless a redistribution agreement or other license is obtained from Proofpoint, Inc., 892 Ross Street, Sunnyvale, CA, 94089, USA, or by electronic mail at sendmail-license@proofpoint.com. diff --git a/docs/sendmail-8.23.html b/docs/sendmail-8.23.html index a07a74bf7c..c09f85d2d6 100644 --- a/docs/sendmail-8.23.html +++ b/docs/sendmail-8.23.html @@ -204,7 +204,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sendmail-8.23.json b/docs/sendmail-8.23.json index d659b5a4d3..498894c659 100644 --- a/docs/sendmail-8.23.json +++ b/docs/sendmail-8.23.json @@ -1 +1,25 @@ -{"key": "sendmail-8.23", "short_name": "Sendmail License 8.23", "name": "Sendmail License 8.23", "category": "Copyleft Limited", "owner": "Sendmail", "homepage_url": "https://www.proofpoint.com/sites/default/files/sendmail-license.pdf", "spdx_license_key": "Sendmail-8.23", "other_urls": ["https://www.proofpoint.com/sites/default/files/sendmail-license.pdf", "https://web.archive.org/web/20181003101040/https://www.proofpoint.com/sites/default/files/sendmail-license.pdf"], "minimum_coverage": 60, "ignorable_copyrights": ["Copyright (c) 1988, 1993 The Regents of the University ofCalifornia", "Copyright (c) 1998-2014 Proofpoint, Inc."], "ignorable_holders": ["Proofpoint, Inc.", "The Regents of the University ofCalifornia"], "ignorable_emails": ["sendmail-license@proofpoint.com"]} \ No newline at end of file +{ + "key": "sendmail-8.23", + "short_name": "Sendmail License 8.23", + "name": "Sendmail License 8.23", + "category": "Copyleft Limited", + "owner": "Sendmail", + "homepage_url": "https://www.proofpoint.com/sites/default/files/sendmail-license.pdf", + "spdx_license_key": "Sendmail-8.23", + "other_urls": [ + "https://www.proofpoint.com/sites/default/files/sendmail-license.pdf", + "https://web.archive.org/web/20181003101040/https://www.proofpoint.com/sites/default/files/sendmail-license.pdf" + ], + "minimum_coverage": 60, + "ignorable_copyrights": [ + "Copyright (c) 1988, 1993 The Regents of the University ofCalifornia", + "Copyright (c) 1998-2014 Proofpoint, Inc." + ], + "ignorable_holders": [ + "Proofpoint, Inc.", + "The Regents of the University ofCalifornia" + ], + "ignorable_emails": [ + "sendmail-license@proofpoint.com" + ] +} \ No newline at end of file diff --git a/docs/sendmail.LICENSE b/docs/sendmail.LICENSE index ba0eb1e90e..3f157c649f 100644 --- a/docs/sendmail.LICENSE +++ b/docs/sendmail.LICENSE @@ -1,3 +1,28 @@ +--- +key: sendmail +short_name: Sendmail License +name: Sendmail License +category: Permissive +owner: Sendmail +homepage_url: http://www.sendmail.com/ +notes: this version of the license dates from 2004. There several minor variations publichsed + since. +spdx_license_key: Sendmail +text_urls: + - http://www.sendmail.com/pdfs/open_source/sendmail_license.pdf +other_urls: + - https://web.archive.org/web/20160322142305/https://www.sendmail.com/pdfs/open_source/sendmail_license.pdf +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 1988, 1993 The Regents of the University of California + - Copyright (c) 1998-2004 Sendmail, Inc. +ignorable_holders: + - Sendmail, Inc. + - The Regents of the University of California +ignorable_emails: + - license@sendmail.com +--- + SENDMAIL LICENSE The following license terms and conditions apply, unless a different diff --git a/docs/sendmail.html b/docs/sendmail.html index e26021df28..1db3c3e814 100644 --- a/docs/sendmail.html +++ b/docs/sendmail.html @@ -264,7 +264,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sendmail.json b/docs/sendmail.json index 6d24760041..c103f6456b 100644 --- a/docs/sendmail.json +++ b/docs/sendmail.json @@ -1 +1,28 @@ -{"key": "sendmail", "short_name": "Sendmail License", "name": "Sendmail License", "category": "Permissive", "owner": "Sendmail", "homepage_url": "http://www.sendmail.com/", "notes": "this version of the license dates from 2004. There several minor variations publichsed since.", "spdx_license_key": "Sendmail", "text_urls": ["http://www.sendmail.com/pdfs/open_source/sendmail_license.pdf"], "other_urls": ["https://web.archive.org/web/20160322142305/https://www.sendmail.com/pdfs/open_source/sendmail_license.pdf"], "minimum_coverage": 80, "ignorable_copyrights": ["Copyright (c) 1988, 1993 The Regents of the University of California", "Copyright (c) 1998-2004 Sendmail, Inc."], "ignorable_holders": ["Sendmail, Inc.", "The Regents of the University of California"], "ignorable_emails": ["license@sendmail.com"]} \ No newline at end of file +{ + "key": "sendmail", + "short_name": "Sendmail License", + "name": "Sendmail License", + "category": "Permissive", + "owner": "Sendmail", + "homepage_url": "http://www.sendmail.com/", + "notes": "this version of the license dates from 2004. There several minor variations publichsed since.", + "spdx_license_key": "Sendmail", + "text_urls": [ + "http://www.sendmail.com/pdfs/open_source/sendmail_license.pdf" + ], + "other_urls": [ + "https://web.archive.org/web/20160322142305/https://www.sendmail.com/pdfs/open_source/sendmail_license.pdf" + ], + "minimum_coverage": 80, + "ignorable_copyrights": [ + "Copyright (c) 1988, 1993 The Regents of the University of California", + "Copyright (c) 1998-2004 Sendmail, Inc." + ], + "ignorable_holders": [ + "Sendmail, Inc.", + "The Regents of the University of California" + ], + "ignorable_emails": [ + "license@sendmail.com" + ] +} \ No newline at end of file diff --git a/docs/service-comp-arch.LICENSE b/docs/service-comp-arch.LICENSE index b866917be5..83acb7c325 100644 --- a/docs/service-comp-arch.LICENSE +++ b/docs/service-comp-arch.LICENSE @@ -1,3 +1,16 @@ +--- +key: service-comp-arch +short_name: Service Component Architecture License +name: License for the Service Component Architecture JavaDoc, Interface Definition files and + XSD files +category: Permissive +owner: osoa +homepage_url: http://www.osoa.org/display/Main/Service+Component+Architecture+Specifications +spdx_license_key: LicenseRef-scancode-service-comp-arch +ignorable_urls: + - http://www.osoa.org/display/Main/Service+Component+Architecture+Specifications +--- + The Service Component Architecture JavaDoc, Interface Definition files, and XSD files are being provided by the copyright holders under the following license. By using and/or copying this work, you agree that diff --git a/docs/service-comp-arch.html b/docs/service-comp-arch.html index f73886b11c..28c6d06d35 100644 --- a/docs/service-comp-arch.html +++ b/docs/service-comp-arch.html @@ -170,7 +170,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/service-comp-arch.json b/docs/service-comp-arch.json index 01189905ba..d804df60c5 100644 --- a/docs/service-comp-arch.json +++ b/docs/service-comp-arch.json @@ -1 +1,12 @@ -{"key": "service-comp-arch", "short_name": "Service Component Architecture License", "name": "License for the Service Component Architecture JavaDoc, Interface Definition files and XSD files", "category": "Permissive", "owner": "osoa", "homepage_url": "http://www.osoa.org/display/Main/Service+Component+Architecture+Specifications", "spdx_license_key": "LicenseRef-scancode-service-comp-arch", "ignorable_urls": ["http://www.osoa.org/display/Main/Service+Component+Architecture+Specifications"]} \ No newline at end of file +{ + "key": "service-comp-arch", + "short_name": "Service Component Architecture License", + "name": "License for the Service Component Architecture JavaDoc, Interface Definition files and XSD files", + "category": "Permissive", + "owner": "osoa", + "homepage_url": "http://www.osoa.org/display/Main/Service+Component+Architecture+Specifications", + "spdx_license_key": "LicenseRef-scancode-service-comp-arch", + "ignorable_urls": [ + "http://www.osoa.org/display/Main/Service+Component+Architecture+Specifications" + ] +} \ No newline at end of file diff --git a/docs/sfl-license.LICENSE b/docs/sfl-license.LICENSE index e02b9dd9f8..536a571d38 100644 --- a/docs/sfl-license.LICENSE +++ b/docs/sfl-license.LICENSE @@ -1,3 +1,26 @@ +--- +key: sfl-license +short_name: SFL License Agreement +name: SFL License Agreement +category: Permissive +owner: iMatix +homepage_url: http://legacy.imatix.com/html/sfl/sfl4.htm +spdx_license_key: iMatix +text_urls: + - http://legacy.imatix.com/html/sfl/sfl4.htm +other_urls: + - http://legacy.imatix.com/html/sfl/sfl4.htm#license + - http://www.imatix.com +ignorable_copyrights: + - Copyright (c) 1991-2000 iMatix Corporation + - Copyright (c) 1991-2000 iMatix Corporation + - Parts copyright (c) 1991-2000 iMatix Corporation +ignorable_holders: + - iMatix Corporation +ignorable_urls: + - http://www.imatix.com/ +--- + The SFL License Agreement This license agreement covers your use of the iMatix STANDARD FUNCTION LIBRARY (SFL), its source code, documentation, and executable files, hereinafter referred to as "the Product". diff --git a/docs/sfl-license.html b/docs/sfl-license.html index df244a76e4..95010c9f87 100644 --- a/docs/sfl-license.html +++ b/docs/sfl-license.html @@ -211,7 +211,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sfl-license.json b/docs/sfl-license.json index f248b077e0..58ba2276ce 100644 --- a/docs/sfl-license.json +++ b/docs/sfl-license.json @@ -1 +1,27 @@ -{"key": "sfl-license", "short_name": "SFL License Agreement", "name": "SFL License Agreement", "category": "Permissive", "owner": "iMatix", "homepage_url": "http://legacy.imatix.com/html/sfl/sfl4.htm", "spdx_license_key": "iMatix", "text_urls": ["http://legacy.imatix.com/html/sfl/sfl4.htm"], "other_urls": ["http://legacy.imatix.com/html/sfl/sfl4.htm#license", "http://www.imatix.com"], "ignorable_copyrights": ["Copyright (c) 1991-2000 iMatix Corporation", "Copyright (c) 1991-2000 iMatix Corporation ", "Parts copyright (c) 1991-2000 iMatix Corporation"], "ignorable_holders": ["iMatix Corporation"], "ignorable_urls": ["http://www.imatix.com/"]} \ No newline at end of file +{ + "key": "sfl-license", + "short_name": "SFL License Agreement", + "name": "SFL License Agreement", + "category": "Permissive", + "owner": "iMatix", + "homepage_url": "http://legacy.imatix.com/html/sfl/sfl4.htm", + "spdx_license_key": "iMatix", + "text_urls": [ + "http://legacy.imatix.com/html/sfl/sfl4.htm" + ], + "other_urls": [ + "http://legacy.imatix.com/html/sfl/sfl4.htm#license", + "http://www.imatix.com" + ], + "ignorable_copyrights": [ + "Copyright (c) 1991-2000 iMatix Corporation", + "Copyright (c) 1991-2000 iMatix Corporation ", + "Parts copyright (c) 1991-2000 iMatix Corporation" + ], + "ignorable_holders": [ + "iMatix Corporation" + ], + "ignorable_urls": [ + "http://www.imatix.com/" + ] +} \ No newline at end of file diff --git a/docs/sgi-cid-1.0.LICENSE b/docs/sgi-cid-1.0.LICENSE index 2b61efb70c..470c03056c 100644 --- a/docs/sgi-cid-1.0.LICENSE +++ b/docs/sgi-cid-1.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: sgi-cid-1.0 +short_name: SGI CID Font Code Public License 1.0 +name: SGI CID Font Code Public License v1.0 +category: Permissive +owner: SGI - Silicon Graphics +homepage_url: http://www.xfree86.org/current/LICENSE10.html +spdx_license_key: LicenseRef-scancode-sgi-cid-1.0 +text_urls: + - http://www.xfree86.org/current/LICENSE10.html +ignorable_copyrights: + - Copyright (c) 1994-1999 Silicon Graphics, Inc. +ignorable_holders: + - Silicon Graphics, Inc. +ignorable_authors: + - Silicon Graphics, Inc. +ignorable_urls: + - http://www.sgi.com/software/opensource/cid/license.html +--- + CID FONT CODE PUBLIC LICENSE Version 1.0 3/31/99 Subject to any applicable third party claims, Silicon Graphics, Inc. ("SGI") diff --git a/docs/sgi-cid-1.0.html b/docs/sgi-cid-1.0.html index a8a7ebcd57..c338e4c345 100644 --- a/docs/sgi-cid-1.0.html +++ b/docs/sgi-cid-1.0.html @@ -358,7 +358,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sgi-cid-1.0.json b/docs/sgi-cid-1.0.json index 043d1a4f30..48329da7fc 100644 --- a/docs/sgi-cid-1.0.json +++ b/docs/sgi-cid-1.0.json @@ -1 +1,24 @@ -{"key": "sgi-cid-1.0", "short_name": "SGI CID Font Code Public License 1.0", "name": "SGI CID Font Code Public License v1.0", "category": "Permissive", "owner": "SGI - Silicon Graphics", "homepage_url": "http://www.xfree86.org/current/LICENSE10.html", "spdx_license_key": "LicenseRef-scancode-sgi-cid-1.0", "text_urls": ["http://www.xfree86.org/current/LICENSE10.html"], "ignorable_copyrights": ["Copyright (c) 1994-1999 Silicon Graphics, Inc."], "ignorable_holders": ["Silicon Graphics, Inc."], "ignorable_authors": ["Silicon Graphics, Inc."], "ignorable_urls": ["http://www.sgi.com/software/opensource/cid/license.html"]} \ No newline at end of file +{ + "key": "sgi-cid-1.0", + "short_name": "SGI CID Font Code Public License 1.0", + "name": "SGI CID Font Code Public License v1.0", + "category": "Permissive", + "owner": "SGI - Silicon Graphics", + "homepage_url": "http://www.xfree86.org/current/LICENSE10.html", + "spdx_license_key": "LicenseRef-scancode-sgi-cid-1.0", + "text_urls": [ + "http://www.xfree86.org/current/LICENSE10.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 1994-1999 Silicon Graphics, Inc." + ], + "ignorable_holders": [ + "Silicon Graphics, Inc." + ], + "ignorable_authors": [ + "Silicon Graphics, Inc." + ], + "ignorable_urls": [ + "http://www.sgi.com/software/opensource/cid/license.html" + ] +} \ No newline at end of file diff --git a/docs/sgi-freeb-1.1.LICENSE b/docs/sgi-freeb-1.1.LICENSE index 60264beee9..ed690ed0a4 100644 --- a/docs/sgi-freeb-1.1.LICENSE +++ b/docs/sgi-freeb-1.1.LICENSE @@ -1,3 +1,22 @@ +--- +key: sgi-freeb-1.1 +short_name: SGI Free Software License B 1.1 +name: SGI Free Software License B v1.1 +category: Permissive +owner: SGI - Silicon Graphics +homepage_url: http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.1.doc +notes: Per SPDX.org, this license was released 22 February 2002 +spdx_license_key: SGI-B-1.1 +text_urls: + - http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.1.doc +other_urls: + - http://oss.sgi.com/projects/FreeB/ +ignorable_authors: + - Silicon Graphics, Inc. +ignorable_urls: + - http://oss.sgi.com/projects/FreeB +--- + SGI FREE SOFTWARE LICENSE B (Version 1.1 [02/22/2000]) 2.License Grant and Restrictions. 2.1.SGI License Grant. Subject to the terms of this License and any third party intellectual property claims, for the duration of intellectual property protections inherent in the Original Code, SGI hereby grants Recipient a worldwide, royalty-free, non-exclusive license, to do the following: (i) under copyrights Licensable by SGI, to reproduce, distribute, create derivative works from, and, to the extent applicable, display and perform the Original Code and/or any Modifications provided by SGI alone and/or as part of a Larger Work; and (ii) under any Licensable Patents, to make, have made, use, sell, offer for sale, import and/or otherwise transfer the Original Code and/or any Modifications provided by SGI. Recipient accepts the terms and conditions of this License by undertaking any of the aforementioned actions. The patent license shall apply to the Covered Code if, at the time any related Modification is added, such addition of the Modification causes such combination to be covered by the Licensed Patents. The patent license in Section 2.1(ii) shall not apply to any other combinations that include the Modification. No patent license is provided under SGI Patents for infringements of SGI Patents by Modifications not provided by SGI or combinations of Original Code and Modifications not provided by SGI. diff --git a/docs/sgi-freeb-1.1.html b/docs/sgi-freeb-1.1.html index e8a5b79234..fbb4613e15 100644 --- a/docs/sgi-freeb-1.1.html +++ b/docs/sgi-freeb-1.1.html @@ -194,7 +194,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sgi-freeb-1.1.json b/docs/sgi-freeb-1.1.json index e2521f822c..0be20d39c8 100644 --- a/docs/sgi-freeb-1.1.json +++ b/docs/sgi-freeb-1.1.json @@ -1 +1,22 @@ -{"key": "sgi-freeb-1.1", "short_name": "SGI Free Software License B 1.1", "name": "SGI Free Software License B v1.1", "category": "Permissive", "owner": "SGI - Silicon Graphics", "homepage_url": "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.1.doc", "notes": "Per SPDX.org, this license was released 22 February 2002", "spdx_license_key": "SGI-B-1.1", "text_urls": ["http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.1.doc"], "other_urls": ["http://oss.sgi.com/projects/FreeB/"], "ignorable_authors": ["Silicon Graphics, Inc."], "ignorable_urls": ["http://oss.sgi.com/projects/FreeB"]} \ No newline at end of file +{ + "key": "sgi-freeb-1.1", + "short_name": "SGI Free Software License B 1.1", + "name": "SGI Free Software License B v1.1", + "category": "Permissive", + "owner": "SGI - Silicon Graphics", + "homepage_url": "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.1.doc", + "notes": "Per SPDX.org, this license was released 22 February 2002", + "spdx_license_key": "SGI-B-1.1", + "text_urls": [ + "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.1.doc" + ], + "other_urls": [ + "http://oss.sgi.com/projects/FreeB/" + ], + "ignorable_authors": [ + "Silicon Graphics, Inc." + ], + "ignorable_urls": [ + "http://oss.sgi.com/projects/FreeB" + ] +} \ No newline at end of file diff --git a/docs/sgi-freeb-2.0.LICENSE b/docs/sgi-freeb-2.0.LICENSE index fb1e98c468..6fedae7399 100644 --- a/docs/sgi-freeb-2.0.LICENSE +++ b/docs/sgi-freeb-2.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: sgi-freeb-2.0 +short_name: SGI Free Software License B 2.0 +name: SGI Free Software License B v2.0 +category: Permissive +owner: SGI - Silicon Graphics +homepage_url: http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf +notes: Per SPDX.org, this license was released 18 Sept 2008 +spdx_license_key: SGI-B-2.0 +text_urls: + - http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf +other_urls: + - http://oss.sgi.com/projects/FreeB/ +ignorable_urls: + - http://oss.sgi.com/projects/FreeB/ +--- + 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 @@ -22,4 +39,4 @@ THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of Silicon Graphics, Inc. shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization -from Silicon Graphics, Inc. +from Silicon Graphics, Inc. \ No newline at end of file diff --git a/docs/sgi-freeb-2.0.html b/docs/sgi-freeb-2.0.html index feda6a4a1d..ee20aa0b31 100644 --- a/docs/sgi-freeb-2.0.html +++ b/docs/sgi-freeb-2.0.html @@ -173,8 +173,7 @@ Except as contained in this notice, the name of Silicon Graphics, Inc. shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization -from Silicon Graphics, Inc. -
+from Silicon Graphics, Inc.
@@ -186,7 +185,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sgi-freeb-2.0.json b/docs/sgi-freeb-2.0.json index d859bf8dee..b7a5ec9041 100644 --- a/docs/sgi-freeb-2.0.json +++ b/docs/sgi-freeb-2.0.json @@ -1 +1,19 @@ -{"key": "sgi-freeb-2.0", "short_name": "SGI Free Software License B 2.0", "name": "SGI Free Software License B v2.0", "category": "Permissive", "owner": "SGI - Silicon Graphics", "homepage_url": "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf", "notes": "Per SPDX.org, this license was released 18 Sept 2008", "spdx_license_key": "SGI-B-2.0", "text_urls": ["http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf"], "other_urls": ["http://oss.sgi.com/projects/FreeB/"], "ignorable_urls": ["http://oss.sgi.com/projects/FreeB/"]} \ No newline at end of file +{ + "key": "sgi-freeb-2.0", + "short_name": "SGI Free Software License B 2.0", + "name": "SGI Free Software License B v2.0", + "category": "Permissive", + "owner": "SGI - Silicon Graphics", + "homepage_url": "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf", + "notes": "Per SPDX.org, this license was released 18 Sept 2008", + "spdx_license_key": "SGI-B-2.0", + "text_urls": [ + "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf" + ], + "other_urls": [ + "http://oss.sgi.com/projects/FreeB/" + ], + "ignorable_urls": [ + "http://oss.sgi.com/projects/FreeB/" + ] +} \ No newline at end of file diff --git a/docs/sgi-fslb-1.0.LICENSE b/docs/sgi-fslb-1.0.LICENSE index 2290dfc3a0..5887446d83 100644 --- a/docs/sgi-fslb-1.0.LICENSE +++ b/docs/sgi-fslb-1.0.LICENSE @@ -1,4 +1,15 @@ - +--- +key: sgi-fslb-1.0 +short_name: SGI Free Software License B 1.0 +name: SGI Free Software License B v1.0 +category: Free Restricted +owner: SGI - Silicon Graphics +homepage_url: http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html +notes: Per SPDX.org, this license was released 25 January 2000 +spdx_license_key: SGI-B-1.0 +text_urls: + - http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html +--- SGI FREE SOFTWARE LICENSE B (Version 1.0 1/25/2000) @@ -36,4 +47,4 @@ SGI FREE SOFTWARE LICENSE B 10. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES NOR LEGAL THEORY, WHETHER TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY), CONTRACT, OR OTHERWISE, SHALL SGI OR ANY SGI LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SGI's NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO RECIPIENT. 11. Indemnity. Recipient shall be solely responsible for damages arising, directly or indirectly, out of its utilization of rights under this License. Recipient will defend, indemnify and hold harmless Silicon Graphics, Inc. from and against any loss, liability, damages, costs or expenses (including the payment of reasonable attorneys fees) arising out of Recipient's use, modification, reproduction and distribution of the Covered Code or out of any representation or warranty made by Recipient. 12. U.S. Government End Users. The Covered Code is a "commercial item" consisting of "commercial computer software" as such terms are defined in title 48 of the Code of Federal Regulations and all U.S. Government End Users acquire only the rights set forth in this License and are subject to the terms of this License. - 13. Miscellaneous. This License represents the complete agreement concerning the its subject matter. If any provision of this License is held to be unenforceable, such provision shall be reformed so as to achieve as nearly as possible the same legal and economic effect as the original provision and the remainder of this License will remain in effect. This License shall be governed by and construed in accordance with the laws of the United States and the State of California as applied to agreements entered into and to be performed entirely within California between California residents. Any litigation relating to this License shall be subject to the exclusive jurisdiction of the Federal Courts of the Northern District of California (or, absent subject matter jurisdiction in such courts, the courts of the State of California), with venue lying exclusively in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. + 13. Miscellaneous. This License represents the complete agreement concerning the its subject matter. If any provision of this License is held to be unenforceable, such provision shall be reformed so as to achieve as nearly as possible the same legal and economic effect as the original provision and the remainder of this License will remain in effect. This License shall be governed by and construed in accordance with the laws of the United States and the State of California as applied to agreements entered into and to be performed entirely within California between California residents. Any litigation relating to this License shall be subject to the exclusive jurisdiction of the Federal Courts of the Northern District of California (or, absent subject matter jurisdiction in such courts, the courts of the State of California), with venue lying exclusively in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. \ No newline at end of file diff --git a/docs/sgi-fslb-1.0.html b/docs/sgi-fslb-1.0.html index a4bc818785..f5baa8b94b 100644 --- a/docs/sgi-fslb-1.0.html +++ b/docs/sgi-fslb-1.0.html @@ -131,9 +131,7 @@
license_text
-

-
-SGI FREE SOFTWARE LICENSE B
+    
SGI FREE SOFTWARE LICENSE B
 (Version 1.0 1/25/2000)
 
     1. Definitions.
@@ -169,8 +167,7 @@
     10. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES NOR LEGAL THEORY, WHETHER TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY), CONTRACT, OR OTHERWISE, SHALL SGI OR ANY SGI LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SGI's NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO RECIPIENT.
     11. Indemnity. Recipient shall be solely responsible for damages arising, directly or indirectly, out of its utilization of rights under this License. Recipient will defend, indemnify and hold harmless Silicon Graphics, Inc. from and against any loss, liability, damages, costs or expenses (including the payment of reasonable attorneys fees) arising out of Recipient's use, modification, reproduction and distribution of the Covered Code or out of any representation or warranty made by Recipient.
     12. U.S. Government End Users. The Covered Code is a "commercial item" consisting of "commercial computer software" as such terms are defined in title 48 of the Code of Federal Regulations and all U.S. Government End Users acquire only the rights set forth in this License and are subject to the terms of this License.
-    13. Miscellaneous. This License represents the complete agreement concerning the its subject matter. If any provision of this License is held to be unenforceable, such provision shall be reformed so as to achieve as nearly as possible the same legal and economic effect as the original provision and the remainder of this License will remain in effect. This License shall be governed by and construed in accordance with the laws of the United States and the State of California as applied to agreements entered into and to be performed entirely within California between California residents. Any litigation relating to this License shall be subject to the exclusive jurisdiction of the Federal Courts of the Northern District of California (or, absent subject matter jurisdiction in such courts, the courts of the State of California), with venue lying exclusively in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.
-
+ 13. Miscellaneous. This License represents the complete agreement concerning the its subject matter. If any provision of this License is held to be unenforceable, such provision shall be reformed so as to achieve as nearly as possible the same legal and economic effect as the original provision and the remainder of this License will remain in effect. This License shall be governed by and construed in accordance with the laws of the United States and the State of California as applied to agreements entered into and to be performed entirely within California between California residents. Any litigation relating to this License shall be subject to the exclusive jurisdiction of the Federal Courts of the Northern District of California (or, absent subject matter jurisdiction in such courts, the courts of the State of California), with venue lying exclusively in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.
@@ -182,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sgi-fslb-1.0.json b/docs/sgi-fslb-1.0.json index 0e2597f570..44831b3323 100644 --- a/docs/sgi-fslb-1.0.json +++ b/docs/sgi-fslb-1.0.json @@ -1 +1,13 @@ -{"key": "sgi-fslb-1.0", "short_name": "SGI Free Software License B 1.0", "name": "SGI Free Software License B v1.0", "category": "Free Restricted", "owner": "SGI - Silicon Graphics", "homepage_url": "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html", "notes": "Per SPDX.org, this license was released 25 January 2000", "spdx_license_key": "SGI-B-1.0", "text_urls": ["http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html"]} \ No newline at end of file +{ + "key": "sgi-fslb-1.0", + "short_name": "SGI Free Software License B 1.0", + "name": "SGI Free Software License B v1.0", + "category": "Free Restricted", + "owner": "SGI - Silicon Graphics", + "homepage_url": "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html", + "notes": "Per SPDX.org, this license was released 25 January 2000", + "spdx_license_key": "SGI-B-1.0", + "text_urls": [ + "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html" + ] +} \ No newline at end of file diff --git a/docs/sgi-glx-1.0.LICENSE b/docs/sgi-glx-1.0.LICENSE index 92db9d9a69..be445c9b82 100644 --- a/docs/sgi-glx-1.0.LICENSE +++ b/docs/sgi-glx-1.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: sgi-glx-1.0 +short_name: SGI GLX Public License 1.0 +name: SGI GLX Public License v1.0 +category: Permissive +owner: SGI - Silicon Graphics +homepage_url: http://www.sgi.com/products/software/opensource/glx/glxlicense.txt +spdx_license_key: LicenseRef-scancode-sgi-glx-1.0 +text_urls: + - http://velib.kyb.mpg.de/docu/GLX.html +ignorable_copyrights: + - (c) 1991-9 Silicon Graphics, Inc. +ignorable_holders: + - Silicon Graphics, Inc. +ignorable_authors: + - Silicon Graphics, Inc. +ignorable_urls: + - http://www.sgi.com/software/opensource/glx/license.html +--- + GLX PUBLIC LICENSE Version 1.0 2/11/99 License Subject to any third party claims, Silicon Graphics, Inc. ("SGI") hereby diff --git a/docs/sgi-glx-1.0.html b/docs/sgi-glx-1.0.html index 979b28fc69..35c6643901 100644 --- a/docs/sgi-glx-1.0.html +++ b/docs/sgi-glx-1.0.html @@ -364,7 +364,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sgi-glx-1.0.json b/docs/sgi-glx-1.0.json index 97d1524df4..1d721c1f07 100644 --- a/docs/sgi-glx-1.0.json +++ b/docs/sgi-glx-1.0.json @@ -1 +1,24 @@ -{"key": "sgi-glx-1.0", "short_name": "SGI GLX Public License 1.0", "name": "SGI GLX Public License v1.0", "category": "Permissive", "owner": "SGI - Silicon Graphics", "homepage_url": "http://www.sgi.com/products/software/opensource/glx/glxlicense.txt", "spdx_license_key": "LicenseRef-scancode-sgi-glx-1.0", "text_urls": ["http://velib.kyb.mpg.de/docu/GLX.html"], "ignorable_copyrights": ["(c) 1991-9 Silicon Graphics, Inc."], "ignorable_holders": ["Silicon Graphics, Inc."], "ignorable_authors": ["Silicon Graphics, Inc."], "ignorable_urls": ["http://www.sgi.com/software/opensource/glx/license.html"]} \ No newline at end of file +{ + "key": "sgi-glx-1.0", + "short_name": "SGI GLX Public License 1.0", + "name": "SGI GLX Public License v1.0", + "category": "Permissive", + "owner": "SGI - Silicon Graphics", + "homepage_url": "http://www.sgi.com/products/software/opensource/glx/glxlicense.txt", + "spdx_license_key": "LicenseRef-scancode-sgi-glx-1.0", + "text_urls": [ + "http://velib.kyb.mpg.de/docu/GLX.html" + ], + "ignorable_copyrights": [ + "(c) 1991-9 Silicon Graphics, Inc." + ], + "ignorable_holders": [ + "Silicon Graphics, Inc." + ], + "ignorable_authors": [ + "Silicon Graphics, Inc." + ], + "ignorable_urls": [ + "http://www.sgi.com/software/opensource/glx/license.html" + ] +} \ No newline at end of file diff --git a/docs/sglib.LICENSE b/docs/sglib.LICENSE index 436c13fa05..42592a42ec 100644 --- a/docs/sglib.LICENSE +++ b/docs/sglib.LICENSE @@ -1,3 +1,16 @@ +--- +key: sglib +short_name: Sglib License +name: Sglib License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-sglib +other_urls: + - http://www.xref-tech.com/sglib/ +ignorable_urls: + - http://www.opensource.org/ +--- + Basically, I only care that you do not remove the Copyright notice from the source code when using Sglib. diff --git a/docs/sglib.html b/docs/sglib.html index 13ebd7d647..6ced43ecb7 100644 --- a/docs/sglib.html +++ b/docs/sglib.html @@ -149,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sglib.json b/docs/sglib.json index 193b339509..fadb1c31eb 100644 --- a/docs/sglib.json +++ b/docs/sglib.json @@ -1 +1,14 @@ -{"key": "sglib", "short_name": "Sglib License", "name": "Sglib License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-sglib", "other_urls": ["http://www.xref-tech.com/sglib/"], "ignorable_urls": ["http://www.opensource.org/"]} \ No newline at end of file +{ + "key": "sglib", + "short_name": "Sglib License", + "name": "Sglib License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-sglib", + "other_urls": [ + "http://www.xref-tech.com/sglib/" + ], + "ignorable_urls": [ + "http://www.opensource.org/" + ] +} \ No newline at end of file diff --git a/docs/shavlik-eula.LICENSE b/docs/shavlik-eula.LICENSE index 6bbfc04af9..621a4715ee 100644 --- a/docs/shavlik-eula.LICENSE +++ b/docs/shavlik-eula.LICENSE @@ -1,3 +1,15 @@ +--- +key: shavlik-eula +short_name: Shavlik Technologies EULA +name: Shavlik Technologies EULA +category: Commercial +owner: Shavlik Technologies +homepage_url: http://www.shavlik.com/ +spdx_license_key: LicenseRef-scancode-shavlik-eula +ignorable_emails: + - info@shavlik.com +--- + Shavlik Technologies, LLC END USER LICENSE AGREEMENT CAREFULLY READ THE FOLLOWING TERMS AND CONDITIONS BEFORE LOADING THE SOFTWARE. THIS diff --git a/docs/shavlik-eula.html b/docs/shavlik-eula.html index c959b65185..9e7ab63d0c 100644 --- a/docs/shavlik-eula.html +++ b/docs/shavlik-eula.html @@ -236,7 +236,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/shavlik-eula.json b/docs/shavlik-eula.json index 7cd18c4f78..5f04de3d5c 100644 --- a/docs/shavlik-eula.json +++ b/docs/shavlik-eula.json @@ -1 +1,12 @@ -{"key": "shavlik-eula", "short_name": "Shavlik Technologies EULA", "name": "Shavlik Technologies EULA", "category": "Commercial", "owner": "Shavlik Technologies", "homepage_url": "http://www.shavlik.com/", "spdx_license_key": "LicenseRef-scancode-shavlik-eula", "ignorable_emails": ["info@shavlik.com"]} \ No newline at end of file +{ + "key": "shavlik-eula", + "short_name": "Shavlik Technologies EULA", + "name": "Shavlik Technologies EULA", + "category": "Commercial", + "owner": "Shavlik Technologies", + "homepage_url": "http://www.shavlik.com/", + "spdx_license_key": "LicenseRef-scancode-shavlik-eula", + "ignorable_emails": [ + "info@shavlik.com" + ] +} \ No newline at end of file diff --git a/docs/shital-shah.LICENSE b/docs/shital-shah.LICENSE index f69bc3e5ad..755ed2618c 100644 --- a/docs/shital-shah.LICENSE +++ b/docs/shital-shah.LICENSE @@ -1,3 +1,14 @@ +--- +key: shital-shah +short_name: Shital Shah License +name: Shital Shah License +category: Permissive +owner: Shital Shah +homepage_url: http://shitalshah.com/disclaimer/ +spdx_license_key: LicenseRef-scancode-shital-shah +text_urls: + - http://shitalshah.com/disclaimer/ +--- You may freely copy, store, distribute and use any material published on this site free of charge and without my explicit permission, provided anyone else diff --git a/docs/shital-shah.html b/docs/shital-shah.html index 38b90d3d47..11b1ef7b5e 100644 --- a/docs/shital-shah.html +++ b/docs/shital-shah.html @@ -124,8 +124,7 @@
license_text
-

-You may freely copy, store, distribute and use any material published on this
+    
You may freely copy, store, distribute and use any material published on this
 site free of charge and without my explicit permission, provided anyone else
 doesn't owns copyright for it or no notice has been put explicitly stating
 otherwise. All programs available on this website, unless stated otherwise, can
@@ -162,7 +161,8 @@
       AboutCode
     

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/shital-shah.json b/docs/shital-shah.json index 52aad3898d..0c9364a8dd 100644 --- a/docs/shital-shah.json +++ b/docs/shital-shah.json @@ -1 +1,12 @@ -{"key": "shital-shah", "short_name": "Shital Shah License", "name": "Shital Shah License", "category": "Permissive", "owner": "Shital Shah", "homepage_url": "http://shitalshah.com/disclaimer/", "spdx_license_key": "LicenseRef-scancode-shital-shah", "text_urls": ["http://shitalshah.com/disclaimer/"]} \ No newline at end of file +{ + "key": "shital-shah", + "short_name": "Shital Shah License", + "name": "Shital Shah License", + "category": "Permissive", + "owner": "Shital Shah", + "homepage_url": "http://shitalshah.com/disclaimer/", + "spdx_license_key": "LicenseRef-scancode-shital-shah", + "text_urls": [ + "http://shitalshah.com/disclaimer/" + ] +} \ No newline at end of file diff --git a/docs/shl-0.5.LICENSE b/docs/shl-0.5.LICENSE index 894e71e364..3677c21f1d 100644 --- a/docs/shl-0.5.LICENSE +++ b/docs/shl-0.5.LICENSE @@ -1,3 +1,28 @@ +--- +key: shl-0.5 +short_name: SolderPad Hardware License v0.5 +name: SolderPad Hardware License v0.5 +category: Permissive +owner: SolderPad +homepage_url: https://solderpad.org/licenses/SHL-0.5/ +spdx_license_key: SHL-0.5 +other_urls: + - https://solderpad.org/licenses/SHL-0.5/ +standard_notice: | + Copyright and related rights are + licensed under the Solderpad Hardware License, Version 0.5 (the "License"); + you may not use this file except in compliance with the License. You may + obtain a copy of the License at http://solderpad.org/licenses/SHL-0.5. + Unless required by applicable law or agreed to in writing, software, + hardware and materials distributed under this 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. +ignorable_urls: + - http://solderpad.org/licenses/SHL-0.5 + - http://www.apache.org/licenses/LICENSE-2.0 +--- + SOLDERPAD HARDWARE LICENSE version 0.5 This license is based closely on the Apache License Version 2.0, but is not approved or endorsed by the Apache Foundation. A copy of the non-modified Apache License 2.0 can be found at http://www.apache.org/licenses/LICENSE-2.0. diff --git a/docs/shl-0.5.html b/docs/shl-0.5.html index 2a12f4b0ec..30ef2074c9 100644 --- a/docs/shl-0.5.html +++ b/docs/shl-0.5.html @@ -285,7 +285,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/shl-0.5.json b/docs/shl-0.5.json index ab6938d2b2..ede726b896 100644 --- a/docs/shl-0.5.json +++ b/docs/shl-0.5.json @@ -1 +1,17 @@ -{"key": "shl-0.5", "short_name": "SolderPad Hardware License v0.5", "name": "SolderPad Hardware License v0.5", "category": "Permissive", "owner": "SolderPad", "homepage_url": "https://solderpad.org/licenses/SHL-0.5/", "spdx_license_key": "SHL-0.5", "other_urls": ["https://solderpad.org/licenses/SHL-0.5/"], "standard_notice": "Copyright and related rights are\nlicensed under the Solderpad Hardware License, Version 0.5 (the \"License\");\nyou may not use this file except in compliance with the License. You may\nobtain a copy of the License at http://solderpad.org/licenses/SHL-0.5.\nUnless required by applicable law or agreed to in writing, software,\nhardware and materials distributed under this License is distributed on an\n\"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express\nor implied. See the License for the specific language governing permissions\nand limitations under the License.\n", "ignorable_urls": ["http://solderpad.org/licenses/SHL-0.5", "http://www.apache.org/licenses/LICENSE-2.0"]} \ No newline at end of file +{ + "key": "shl-0.5", + "short_name": "SolderPad Hardware License v0.5", + "name": "SolderPad Hardware License v0.5", + "category": "Permissive", + "owner": "SolderPad", + "homepage_url": "https://solderpad.org/licenses/SHL-0.5/", + "spdx_license_key": "SHL-0.5", + "other_urls": [ + "https://solderpad.org/licenses/SHL-0.5/" + ], + "standard_notice": "Copyright and related rights are\nlicensed under the Solderpad Hardware License, Version 0.5 (the \"License\");\nyou may not use this file except in compliance with the License. You may\nobtain a copy of the License at http://solderpad.org/licenses/SHL-0.5.\nUnless required by applicable law or agreed to in writing, software,\nhardware and materials distributed under this License is distributed on an\n\"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express\nor implied. See the License for the specific language governing permissions\nand limitations under the License.\n", + "ignorable_urls": [ + "http://solderpad.org/licenses/SHL-0.5", + "http://www.apache.org/licenses/LICENSE-2.0" + ] +} \ No newline at end of file diff --git a/docs/shl-0.51.LICENSE b/docs/shl-0.51.LICENSE index b0bf401b12..b8bb7faef2 100644 --- a/docs/shl-0.51.LICENSE +++ b/docs/shl-0.51.LICENSE @@ -1,3 +1,28 @@ +--- +key: shl-0.51 +short_name: SolderPad Hardware License, Version 0.51 +name: SolderPad Hardware License, Version 0.51 +category: Permissive +owner: SolderPad +homepage_url: https://solderpad.org/licenses/SHL-0.51/ +spdx_license_key: SHL-0.51 +other_urls: + - https://solderpad.org/licenses/SHL-0.51/ +standard_notice: | + Copyright and related rights are + licensed under the Solderpad Hardware License, Version 0.51 (the + "License"); you may not use this file except in compliance with the + License. You may obtain a copy of the License at + http://solderpad.org/licenses/SHL-0.51. Unless required by applicable law + or agreed to in writing, software, hardware and materials distributed under + this 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. +ignorable_urls: + - http://solderpad.org/licenses/SHL-0.51 + - http://www.apache.org/licenses/LICENSE-2.0 +--- + SOLDERPAD HARDWARE LICENSE version 0.51 This license is based closely on the Apache License Version 2.0, but is not approved or endorsed by the Apache Foundation. A copy of the non-modified Apache License 2.0 can be found at http://www.apache.org/licenses/LICENSE-2.0. diff --git a/docs/shl-0.51.html b/docs/shl-0.51.html index c6ab063e53..e0d91cbcc3 100644 --- a/docs/shl-0.51.html +++ b/docs/shl-0.51.html @@ -243,7 +243,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/shl-0.51.json b/docs/shl-0.51.json index 6e91b195a4..a2e03c66a3 100644 --- a/docs/shl-0.51.json +++ b/docs/shl-0.51.json @@ -1 +1,17 @@ -{"key": "shl-0.51", "short_name": "SolderPad Hardware License, Version 0.51", "name": "SolderPad Hardware License, Version 0.51", "category": "Permissive", "owner": "SolderPad", "homepage_url": "https://solderpad.org/licenses/SHL-0.51/", "spdx_license_key": "SHL-0.51", "other_urls": ["https://solderpad.org/licenses/SHL-0.51/"], "standard_notice": "Copyright and related rights are\nlicensed under the Solderpad Hardware License, Version 0.51 (the\n\"License\"); you may not use this file except in compliance with the\nLicense. You may obtain a copy of the License at\nhttp://solderpad.org/licenses/SHL-0.51. Unless required by applicable law\nor agreed to in writing, software, hardware and materials distributed under\nthis License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\nCONDITIONS OF ANY KIND, either express or implied. See the License for the\nspecific language governing permissions and limitations under the License.\n", "ignorable_urls": ["http://solderpad.org/licenses/SHL-0.51", "http://www.apache.org/licenses/LICENSE-2.0"]} \ No newline at end of file +{ + "key": "shl-0.51", + "short_name": "SolderPad Hardware License, Version 0.51", + "name": "SolderPad Hardware License, Version 0.51", + "category": "Permissive", + "owner": "SolderPad", + "homepage_url": "https://solderpad.org/licenses/SHL-0.51/", + "spdx_license_key": "SHL-0.51", + "other_urls": [ + "https://solderpad.org/licenses/SHL-0.51/" + ], + "standard_notice": "Copyright and related rights are\nlicensed under the Solderpad Hardware License, Version 0.51 (the\n\"License\"); you may not use this file except in compliance with the\nLicense. You may obtain a copy of the License at\nhttp://solderpad.org/licenses/SHL-0.51. Unless required by applicable law\nor agreed to in writing, software, hardware and materials distributed under\nthis License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\nCONDITIONS OF ANY KIND, either express or implied. See the License for the\nspecific language governing permissions and limitations under the License.\n", + "ignorable_urls": [ + "http://solderpad.org/licenses/SHL-0.51", + "http://www.apache.org/licenses/LICENSE-2.0" + ] +} \ No newline at end of file diff --git a/docs/shl-2.0.LICENSE b/docs/shl-2.0.LICENSE index 400585e33a..ad8a2096b5 100644 --- a/docs/shl-2.0.LICENSE +++ b/docs/shl-2.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: shl-2.0 +short_name: Solderpad Hardware License v2.0 +name: Solderpad Hardware License v2.0 +category: Permissive +owner: SolderPad +homepage_url: https://solderpad.org/licenses/SHL-2.0/ +is_exception: yes +spdx_license_key: SHL-2.0 +ignorable_urls: + - http://apache.org/licenses/LICENSE-2.0 +--- + Solderpad Hardware Licence v2.0 Solderpad Hardware Licence v2.0 diff --git a/docs/shl-2.0.html b/docs/shl-2.0.html index d35cd546fd..bb90c897e9 100644 --- a/docs/shl-2.0.html +++ b/docs/shl-2.0.html @@ -170,7 +170,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/shl-2.0.json b/docs/shl-2.0.json index 3ac508fb42..746ab5bf4e 100644 --- a/docs/shl-2.0.json +++ b/docs/shl-2.0.json @@ -1 +1,13 @@ -{"key": "shl-2.0", "short_name": "Solderpad Hardware License v2.0", "name": "Solderpad Hardware License v2.0", "category": "Permissive", "owner": "SolderPad", "homepage_url": "https://solderpad.org/licenses/SHL-2.0/", "is_exception": true, "spdx_license_key": "SHL-2.0", "ignorable_urls": ["http://apache.org/licenses/LICENSE-2.0"]} \ No newline at end of file +{ + "key": "shl-2.0", + "short_name": "Solderpad Hardware License v2.0", + "name": "Solderpad Hardware License v2.0", + "category": "Permissive", + "owner": "SolderPad", + "homepage_url": "https://solderpad.org/licenses/SHL-2.0/", + "is_exception": true, + "spdx_license_key": "SHL-2.0", + "ignorable_urls": [ + "http://apache.org/licenses/LICENSE-2.0" + ] +} \ No newline at end of file diff --git a/docs/shl-2.1.LICENSE b/docs/shl-2.1.LICENSE index 8b7e5af87c..94fe13f5fd 100644 --- a/docs/shl-2.1.LICENSE +++ b/docs/shl-2.1.LICENSE @@ -1,3 +1,17 @@ +--- +key: shl-2.1 +short_name: Solderpad Hardware License v2.1 +name: Solderpad Hardware License v2.1 +category: Permissive +owner: SolderPad +homepage_url: https://solderpad.org/licenses/SHL-2.1/ +is_exception: yes +spdx_license_key: SHL-2.1 +ignorable_urls: + - http://apache.org/licenses/LICENSE-2.0 + - https://solderpad.org/licenses/SHL-2.1/ +--- + Solderpad Hardware License v2.1 This license operates as a wraparound license to the Apache License Version 2.0 (the “Apache License”) and incorporates the terms and conditions of the Apache License (which can be found here: http://apache.org/licenses/LICENSE-2.0), with the following additions and modifications. It must be read in conjunction with the Apache License. Section 1 below modifies definitions and terminology in the Apache License and Section 2 below replaces Section 2 of the Apache License. The Appendix replaces the Appendix in the Apache License. You may, at your option, choose to treat any Work released under this license as released under the Apache License (thus ignoring all sections written below entirely). diff --git a/docs/shl-2.1.html b/docs/shl-2.1.html index a602e2f4a5..135926b6d9 100644 --- a/docs/shl-2.1.html +++ b/docs/shl-2.1.html @@ -184,7 +184,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/shl-2.1.json b/docs/shl-2.1.json index d89184f2cb..4eae0cbf4e 100644 --- a/docs/shl-2.1.json +++ b/docs/shl-2.1.json @@ -1 +1,14 @@ -{"key": "shl-2.1", "short_name": "Solderpad Hardware License v2.1", "name": "Solderpad Hardware License v2.1", "category": "Permissive", "owner": "SolderPad", "homepage_url": "https://solderpad.org/licenses/SHL-2.1/", "is_exception": true, "spdx_license_key": "SHL-2.1", "ignorable_urls": ["http://apache.org/licenses/LICENSE-2.0", "https://solderpad.org/licenses/SHL-2.1/"]} \ No newline at end of file +{ + "key": "shl-2.1", + "short_name": "Solderpad Hardware License v2.1", + "name": "Solderpad Hardware License v2.1", + "category": "Permissive", + "owner": "SolderPad", + "homepage_url": "https://solderpad.org/licenses/SHL-2.1/", + "is_exception": true, + "spdx_license_key": "SHL-2.1", + "ignorable_urls": [ + "http://apache.org/licenses/LICENSE-2.0", + "https://solderpad.org/licenses/SHL-2.1/" + ] +} \ No newline at end of file diff --git a/docs/signal-gpl-3.0-exception.LICENSE b/docs/signal-gpl-3.0-exception.LICENSE index 60a46de416..5d55875460 100644 --- a/docs/signal-gpl-3.0-exception.LICENSE +++ b/docs/signal-gpl-3.0-exception.LICENSE @@ -1 +1,14 @@ +--- +key: signal-gpl-3.0-exception +short_name: Signal Exception to GPL 3.0 +name: Signal Exception to GPL 3.0 +category: Copyleft Limited +owner: signal.org +homepage_url: https://github.com/signalapp/libsignal-protocol-c/blob/master/README.md#license +is_exception: yes +spdx_license_key: LicenseRef-scancode-signal-gpl-3.0-exception +ignorable_urls: + - https://www.mozilla.org/en-US/MPL/2.0 +--- + Additional Permissions For Submission to Apple App Store: Provided that you are otherwise in compliance with the GPLv3 for each covered work you convey (including without limitation making the Corresponding Source available in compliance with Section 6 of the GPLv3), Open Whisper Systems also grants you the additional permission to convey through the Apple App Store non-source executable versions of the Program as incorporated into each applicable covered work as Executable Versions only under the Mozilla Public License version 2.0 (https://www.mozilla.org/en-US/MPL/2.0/). \ No newline at end of file diff --git a/docs/signal-gpl-3.0-exception.html b/docs/signal-gpl-3.0-exception.html index 4e1e4e9c5e..cc6e57519a 100644 --- a/docs/signal-gpl-3.0-exception.html +++ b/docs/signal-gpl-3.0-exception.html @@ -143,7 +143,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/signal-gpl-3.0-exception.json b/docs/signal-gpl-3.0-exception.json index c4aa244de1..848f9ac177 100644 --- a/docs/signal-gpl-3.0-exception.json +++ b/docs/signal-gpl-3.0-exception.json @@ -1 +1,13 @@ -{"key": "signal-gpl-3.0-exception", "short_name": "Signal Exception to GPL 3.0", "name": "Signal Exception to GPL 3.0", "category": "Copyleft Limited", "owner": "signal.org", "homepage_url": "https://github.com/signalapp/libsignal-protocol-c/blob/master/README.md#license", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-signal-gpl-3.0-exception", "ignorable_urls": ["https://www.mozilla.org/en-US/MPL/2.0"]} \ No newline at end of file +{ + "key": "signal-gpl-3.0-exception", + "short_name": "Signal Exception to GPL 3.0", + "name": "Signal Exception to GPL 3.0", + "category": "Copyleft Limited", + "owner": "signal.org", + "homepage_url": "https://github.com/signalapp/libsignal-protocol-c/blob/master/README.md#license", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-signal-gpl-3.0-exception", + "ignorable_urls": [ + "https://www.mozilla.org/en-US/MPL/2.0" + ] +} \ No newline at end of file diff --git a/docs/simpl-1.1.LICENSE b/docs/simpl-1.1.LICENSE index 0d5e25f372..6868c9730a 100644 --- a/docs/simpl-1.1.LICENSE +++ b/docs/simpl-1.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: simpl-1.1 +short_name: SimPL 1.1 +name: Simple Public License Version 1.1 +category: Permissive +owner: Analysis and Solutions Company +homepage_url: http://www.analysisandsolutions.com/software/license.htm +spdx_license_key: LicenseRef-scancode-simpl-1.1 +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) The Analysis and Solutions Company http://www.analysisandsolutions.com +ignorable_holders: + - The Analysis and Solutions Company +ignorable_urls: + - http://www.analysisandsolutions.com/ +--- + SIMPLE PUBLIC LICENSE VERSION 1.1 2003-01-21 Copyright (c) The Analysis and Solutions Company diff --git a/docs/simpl-1.1.html b/docs/simpl-1.1.html index 8c9fa2e483..05cc91dd31 100644 --- a/docs/simpl-1.1.html +++ b/docs/simpl-1.1.html @@ -194,7 +194,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/simpl-1.1.json b/docs/simpl-1.1.json index a46605e47a..b03c2b17c1 100644 --- a/docs/simpl-1.1.json +++ b/docs/simpl-1.1.json @@ -1 +1,19 @@ -{"key": "simpl-1.1", "short_name": "SimPL 1.1", "name": "Simple Public License Version 1.1", "category": "Permissive", "owner": "Analysis and Solutions Company", "homepage_url": "http://www.analysisandsolutions.com/software/license.htm", "spdx_license_key": "LicenseRef-scancode-simpl-1.1", "minimum_coverage": 80, "ignorable_copyrights": ["Copyright (c) The Analysis and Solutions Company http://www.analysisandsolutions.com"], "ignorable_holders": ["The Analysis and Solutions Company"], "ignorable_urls": ["http://www.analysisandsolutions.com/"]} \ No newline at end of file +{ + "key": "simpl-1.1", + "short_name": "SimPL 1.1", + "name": "Simple Public License Version 1.1", + "category": "Permissive", + "owner": "Analysis and Solutions Company", + "homepage_url": "http://www.analysisandsolutions.com/software/license.htm", + "spdx_license_key": "LicenseRef-scancode-simpl-1.1", + "minimum_coverage": 80, + "ignorable_copyrights": [ + "Copyright (c) The Analysis and Solutions Company http://www.analysisandsolutions.com" + ], + "ignorable_holders": [ + "The Analysis and Solutions Company" + ], + "ignorable_urls": [ + "http://www.analysisandsolutions.com/" + ] +} \ No newline at end of file diff --git a/docs/simpl-2.0.LICENSE b/docs/simpl-2.0.LICENSE index 85c818a2ea..546f5f835e 100644 --- a/docs/simpl-2.0.LICENSE +++ b/docs/simpl-2.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: simpl-2.0 +short_name: SimPL 2.0 +name: Simple Public License Version 2.0 +category: Copyleft +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/simpl-2.0.html +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: SimPL-2.0 +text_urls: + - Simple Public License +osi_url: http://www.opensource.org/licenses/simpl-2.0.html +other_urls: + - http://www.opensource.org/licenses/SimPL-2.0 + - https://opensource.org/licenses/SimPL-2.0 +--- + Preamble This Simple Public License 2.0 (SimPL 2.0 for short) is a plain language implementation of GPL 2.0. The words are different, but the goal is the same - to guarantee for all users the freedom to share and change software. If anyone wonders about the meaning of the SimPL, they should interpret it as consistent with GPL 2.0. diff --git a/docs/simpl-2.0.html b/docs/simpl-2.0.html index 3443e74e55..cd76c8cbdd 100644 --- a/docs/simpl-2.0.html +++ b/docs/simpl-2.0.html @@ -186,7 +186,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/simpl-2.0.json b/docs/simpl-2.0.json index e608a92b7b..76236c9278 100644 --- a/docs/simpl-2.0.json +++ b/docs/simpl-2.0.json @@ -1 +1,18 @@ -{"key": "simpl-2.0", "short_name": "SimPL 2.0", "name": "Simple Public License Version 2.0", "category": "Copyleft", "owner": "OSI - Open Source Initiative", "homepage_url": "http://www.opensource.org/licenses/simpl-2.0.html", "notes": "Per SPDX.org, this license is OSI certified", "spdx_license_key": "SimPL-2.0", "text_urls": ["Simple Public License"], "osi_url": "http://www.opensource.org/licenses/simpl-2.0.html", "other_urls": ["http://www.opensource.org/licenses/SimPL-2.0", "https://opensource.org/licenses/SimPL-2.0"]} \ No newline at end of file +{ + "key": "simpl-2.0", + "short_name": "SimPL 2.0", + "name": "Simple Public License Version 2.0", + "category": "Copyleft", + "owner": "OSI - Open Source Initiative", + "homepage_url": "http://www.opensource.org/licenses/simpl-2.0.html", + "notes": "Per SPDX.org, this license is OSI certified", + "spdx_license_key": "SimPL-2.0", + "text_urls": [ + "Simple Public License" + ], + "osi_url": "http://www.opensource.org/licenses/simpl-2.0.html", + "other_urls": [ + "http://www.opensource.org/licenses/SimPL-2.0", + "https://opensource.org/licenses/SimPL-2.0" + ] +} \ No newline at end of file diff --git a/docs/six-labors-split-1.0.LICENSE b/docs/six-labors-split-1.0.LICENSE new file mode 100644 index 0000000000..5a34b87983 --- /dev/null +++ b/docs/six-labors-split-1.0.LICENSE @@ -0,0 +1,59 @@ +--- +key: six-labors-split-1.0 +short_name: Six Labors Split License 1.0 +name: Six Labors Split License 1.0 +category: Free Restricted +owner: Six Labors +homepage_url: https://github.com/SixLabors/ImageSharp/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-six-labors-split-1.0 +ignorable_copyrights: + - Copyright (c) Six Labors +ignorable_holders: + - Six Labors +ignorable_urls: + - https://sixlabors.com/pricing +--- + +Six Labors Split License +Version 1.0, June 2022 +Copyright (c) Six Labors + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "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" (or "Works") shall mean any Six Labors software made available under the License, as indicated by a + copyright notice that is included in or attached to the work. + + "Direct Package Dependency" shall mean any Work in Source or Object form that is installed directly by You. + + "Transitive Package Dependency" shall mean any Work in Object form that is installed indirectly by a third party + dependency unrelated to Six Labors. + +2. License + + Works in Source or Object form are split licensed and may be licensed under the Apache License, Version 2.0 or a + Six Labors Commercial Use License. + + Licenses are granted based upon You meeting the qualified criteria as stated. Once granted, + You must reference the granted license only in all documentation. + + Works in Source or Object form are licensed to You under the Apache License, Version 2.0 if. + + - You are consuming the Work in for use in software licensed under an Open Source or Source Available license. + - You are consuming the Work as a Transitive Package Dependency. + - You are consuming the Work as a Direct Package Dependency in the capacity of a For-profit company/individual with + less than 1M USD annual gross revenue. + - You are consuming the Work as a Direct Package Dependency in the capacity of a Non-profit organization + or Registered Charity. + + For all other scenarios, Works in Source or Object form are licensed to You under the Six Labors Commercial License + which may be purchased by visiting https://sixlabors.com/pricing/. \ No newline at end of file diff --git a/docs/six-labors-split-1.0.html b/docs/six-labors-split-1.0.html new file mode 100644 index 0000000000..20eb73222c --- /dev/null +++ b/docs/six-labors-split-1.0.html @@ -0,0 +1,219 @@ + + + + + + LicenseDB: six-labors-split-1.0 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + six-labors-split-1.0 + +
+ +
short_name
+
+ + Six Labors Split License 1.0 + +
+ +
name
+
+ + Six Labors Split License 1.0 + +
+ +
category
+
+ + Free Restricted + +
+ +
owner
+
+ + Six Labors + +
+ +
homepage_url
+
+ + https://github.com/SixLabors/ImageSharp/blob/main/LICENSE + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-six-labors-split-1.0 + +
+ +
ignorable_copyrights
+
+ +
    +
  • Copyright (c) Six Labors
  • +
+ +
+ +
ignorable_holders
+
+ +
    +
  • Six Labors
  • +
+ +
+ +
ignorable_urls
+
+ + + +
+ +
+
license_text
+
Six Labors Split License
+Version 1.0, June 2022
+Copyright (c) Six Labors
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "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" (or "Works") shall mean any Six Labors software made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work.
+
+   "Direct Package Dependency" shall mean any Work in Source or Object form that is installed directly by You.
+
+   "Transitive Package Dependency" shall mean any Work in Object form that is installed indirectly by a third party
+    dependency unrelated to Six Labors.
+
+2. License
+
+   Works in Source or Object form are split licensed and may be licensed under the Apache License, Version 2.0 or a
+   Six Labors Commercial Use License.
+
+   Licenses are granted based upon You meeting the qualified criteria as stated. Once granted,
+   You must reference the granted license only in all documentation.
+
+   Works in Source or Object form are licensed to You under the Apache License, Version 2.0 if.
+
+   - You are consuming the Work in for use in software licensed under an Open Source or Source Available license.
+   - You are consuming the Work as a Transitive Package Dependency.
+   - You are consuming the Work as a Direct Package Dependency in the capacity of a For-profit company/individual with
+     less than 1M USD annual gross revenue.
+   - You are consuming the Work as a Direct Package Dependency in the capacity of a Non-profit organization
+     or Registered Charity.
+
+   For all other scenarios, Works in Source or Object form are licensed to You under the Six Labors Commercial License
+   which may be purchased by visiting https://sixlabors.com/pricing/.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/six-labors-split-1.0.json b/docs/six-labors-split-1.0.json new file mode 100644 index 0000000000..065b4de332 --- /dev/null +++ b/docs/six-labors-split-1.0.json @@ -0,0 +1,18 @@ +{ + "key": "six-labors-split-1.0", + "short_name": "Six Labors Split License 1.0", + "name": "Six Labors Split License 1.0", + "category": "Free Restricted", + "owner": "Six Labors", + "homepage_url": "https://github.com/SixLabors/ImageSharp/blob/main/LICENSE", + "spdx_license_key": "LicenseRef-scancode-six-labors-split-1.0", + "ignorable_copyrights": [ + "Copyright (c) Six Labors" + ], + "ignorable_holders": [ + "Six Labors" + ], + "ignorable_urls": [ + "https://sixlabors.com/pricing" + ] +} \ No newline at end of file diff --git a/docs/six-labors-split-1.0.yml b/docs/six-labors-split-1.0.yml new file mode 100644 index 0000000000..45e7bfa301 --- /dev/null +++ b/docs/six-labors-split-1.0.yml @@ -0,0 +1,13 @@ +key: six-labors-split-1.0 +short_name: Six Labors Split License 1.0 +name: Six Labors Split License 1.0 +category: Free Restricted +owner: Six Labors +homepage_url: https://github.com/SixLabors/ImageSharp/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-six-labors-split-1.0 +ignorable_copyrights: + - Copyright (c) Six Labors +ignorable_holders: + - Six Labors +ignorable_urls: + - https://sixlabors.com/pricing diff --git a/docs/skip-2014.LICENSE b/docs/skip-2014.LICENSE new file mode 100644 index 0000000000..82d6cfdad4 --- /dev/null +++ b/docs/skip-2014.LICENSE @@ -0,0 +1,56 @@ +--- +key: skip-2014 +short_name: SKIP License 2014 +name: SKIP License 2014 +category: Copyleft Limited +owner: KDPS +homepage_url: http://www.kanji.org/dictionaries/skip_permission.htm +spdx_license_key: LicenseRef-scancode-skip-2014 +text_urls: + - https://creativecommons.org/licenses/by-sa/4.0/legalcode +other_urls: + - http://creativecommons.org/licenses/by-sa/4.0/ +ignorable_authors: + - Jack Halpern +ignorable_urls: + - http://www.kanji.org/ +--- + +****** SKIP - The System of Kanji Indexing by Patterns ****** + +***** Introduction ***** + +The System of Kanji Indexing by Patterns (SKIP) system for + ordering kanji was developed by Jack Halpern and used as the + main index for kanji in the New Japanese-English Character + Dictionary (Kenkyusha/NTC, 1990) and The Kodansha Kanji + Learner's Dictionary (Kodansha, 1999) and other dictionaries + published by Kanji Dictionary Publishing Society. + +The SKIP codes for the kanji not in the NJECD were compiled by + Jack Halpern and Martin Duerst (the remaining kanji in JIS X + 0208) and Jim Breen (the 5,801 kanji in JIS X 0212). + An overview of the SKIP system is available at this page. + + ***** Conditions Of Use ***** + + As of December 12, 2014, the SKIP coding system and all + established SKIP codes have been placed under a Creative + Commons_Attribution-ShareAlike_4.0_International. (The full + License Code is here.) + + As stated in that license, you may copy and redistribute the + SKIP coding system in any medium or format for any purpose, + even commercially, as long as you give appropriate credit. + + Appropriate credit must clearly attribute the system and codes + to Jack Halpern, with a link to the website of the Kanji + Dictionary Publishing Society at http://www.kanji.org/. Below + is an example of how such an attribution may look like: + + The SKIP (System of Kanji Indexing by Patterns) + system for ordering kanji was developed by Jack + Halpern (Kanji Dictionary Publishing Society at http: + //www.kanji.org/), and is used with his permission. + + To get the latest SKIP codes, please contact us at jack[at]cjki.org. \ No newline at end of file diff --git a/docs/skip-2014.html b/docs/skip-2014.html new file mode 100644 index 0000000000..e3a4f5a653 --- /dev/null +++ b/docs/skip-2014.html @@ -0,0 +1,223 @@ + + + + + + LicenseDB: skip-2014 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + skip-2014 + +
+ +
short_name
+
+ + SKIP License 2014 + +
+ +
name
+
+ + SKIP License 2014 + +
+ +
category
+
+ + Copyleft Limited + +
+ +
owner
+
+ + KDPS + +
+ +
homepage_url
+
+ + http://www.kanji.org/dictionaries/skip_permission.htm + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-skip-2014 + +
+ +
text_urls
+
+ + + +
+ +
other_urls
+
+ + + +
+ +
ignorable_authors
+
+ +
    +
  • Jack Halpern
  • +
+ +
+ +
ignorable_urls
+
+ + + +
+ +
+
license_text
+
****** SKIP - The System of Kanji Indexing by Patterns ******
+ 
+***** Introduction *****
+ 
+The System of Kanji Indexing by Patterns (SKIP) system for
+ ordering kanji was developed by Jack Halpern and used as the
+ main index for kanji in the New Japanese-English Character
+ Dictionary (Kenkyusha/NTC, 1990) and The Kodansha Kanji
+ Learner's Dictionary (Kodansha, 1999) and other dictionaries
+ published by Kanji Dictionary Publishing Society.
+ 
+The SKIP codes for the kanji not in the NJECD were compiled by
+ Jack Halpern and Martin Duerst (the remaining kanji in JIS X
+ 0208) and Jim Breen (the 5,801 kanji in JIS X 0212).
+ An overview of the SKIP system is available at this page.
+
+ ***** Conditions Of Use *****
+
+ As of December 12, 2014, the SKIP coding system and all
+ established SKIP codes have been placed under a Creative
+ Commons_Attribution-ShareAlike_4.0_International. (The full
+ License Code is here.)
+
+ As stated in that license, you may copy and redistribute the
+ SKIP coding system in any medium or format for any purpose,
+ even commercially, as long as you give appropriate credit.
+
+ Appropriate credit must clearly attribute the system and codes
+ to Jack Halpern, with a link to the website of the Kanji
+ Dictionary Publishing Society at http://www.kanji.org/. Below
+ is an example of how such an attribution may look like:
+
+      The SKIP (System of Kanji Indexing by Patterns)
+      system for ordering kanji was developed by Jack
+      Halpern (Kanji Dictionary Publishing Society at http:
+      //www.kanji.org/), and is used with his permission.
+
+ To get the latest SKIP codes, please contact us at jack[at]cjki.org.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/skip-2014.json b/docs/skip-2014.json new file mode 100644 index 0000000000..ca891e4102 --- /dev/null +++ b/docs/skip-2014.json @@ -0,0 +1,21 @@ +{ + "key": "skip-2014", + "short_name": "SKIP License 2014", + "name": "SKIP License 2014", + "category": "Copyleft Limited", + "owner": "KDPS", + "homepage_url": "http://www.kanji.org/dictionaries/skip_permission.htm", + "spdx_license_key": "LicenseRef-scancode-skip-2014", + "text_urls": [ + "https://creativecommons.org/licenses/by-sa/4.0/legalcode" + ], + "other_urls": [ + "http://creativecommons.org/licenses/by-sa/4.0/" + ], + "ignorable_authors": [ + "Jack Halpern" + ], + "ignorable_urls": [ + "http://www.kanji.org/" + ] +} \ No newline at end of file diff --git a/docs/skip-2014.yml b/docs/skip-2014.yml new file mode 100644 index 0000000000..b971c49c81 --- /dev/null +++ b/docs/skip-2014.yml @@ -0,0 +1,15 @@ +key: skip-2014 +short_name: SKIP License 2014 +name: SKIP License 2014 +category: Copyleft Limited +owner: KDPS +homepage_url: http://www.kanji.org/dictionaries/skip_permission.htm +spdx_license_key: LicenseRef-scancode-skip-2014 +text_urls: + - https://creativecommons.org/licenses/by-sa/4.0/legalcode +other_urls: + - http://creativecommons.org/licenses/by-sa/4.0/ +ignorable_authors: + - Jack Halpern +ignorable_urls: + - http://www.kanji.org/ diff --git a/docs/sleepycat.LICENSE b/docs/sleepycat.LICENSE index a58c60e793..3908153a6b 100644 --- a/docs/sleepycat.LICENSE +++ b/docs/sleepycat.LICENSE @@ -1,3 +1,22 @@ +--- +key: sleepycat +short_name: Sleepycat License +name: Sleepycat License (Berkeley Database License) +category: Copyleft +owner: Oracle Corporation +homepage_url: http://opensource.org/licenses/sleepycat.html +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: Sleepycat +text_urls: + - http://www.oracle.com/technology/software/products/berkeley-db/htdocs/oslicense.html +osi_url: http://opensource.org/licenses/sleepycat.html +faq_url: https://docs.oracle.com/cd/E17076_05/html/license/license_db.html +other_urls: + - http://www.opensource.org/licenses/Sleepycat + - http://www.opensource.org/licenses/sleepycat.php + - https://opensource.org/licenses/Sleepycat +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/sleepycat.html b/docs/sleepycat.html index ecfcdf5de1..79a88a1afe 100644 --- a/docs/sleepycat.html +++ b/docs/sleepycat.html @@ -195,7 +195,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sleepycat.json b/docs/sleepycat.json index 570c282f1d..909eaacf48 100644 --- a/docs/sleepycat.json +++ b/docs/sleepycat.json @@ -1 +1,20 @@ -{"key": "sleepycat", "short_name": "Sleepycat License", "name": "Sleepycat License (Berkeley Database License)", "category": "Copyleft", "owner": "Oracle Corporation", "homepage_url": "http://opensource.org/licenses/sleepycat.html", "notes": "Per SPDX.org, this license is OSI certified", "spdx_license_key": "Sleepycat", "text_urls": ["http://www.oracle.com/technology/software/products/berkeley-db/htdocs/oslicense.html"], "osi_url": "http://opensource.org/licenses/sleepycat.html", "faq_url": "https://docs.oracle.com/cd/E17076_05/html/license/license_db.html", "other_urls": ["http://www.opensource.org/licenses/Sleepycat", "http://www.opensource.org/licenses/sleepycat.php", "https://opensource.org/licenses/Sleepycat"]} \ No newline at end of file +{ + "key": "sleepycat", + "short_name": "Sleepycat License", + "name": "Sleepycat License (Berkeley Database License)", + "category": "Copyleft", + "owner": "Oracle Corporation", + "homepage_url": "http://opensource.org/licenses/sleepycat.html", + "notes": "Per SPDX.org, this license is OSI certified", + "spdx_license_key": "Sleepycat", + "text_urls": [ + "http://www.oracle.com/technology/software/products/berkeley-db/htdocs/oslicense.html" + ], + "osi_url": "http://opensource.org/licenses/sleepycat.html", + "faq_url": "https://docs.oracle.com/cd/E17076_05/html/license/license_db.html", + "other_urls": [ + "http://www.opensource.org/licenses/Sleepycat", + "http://www.opensource.org/licenses/sleepycat.php", + "https://opensource.org/licenses/Sleepycat" + ] +} \ No newline at end of file diff --git a/docs/slf4j-2005.LICENSE b/docs/slf4j-2005.LICENSE index c6cb9f68f0..5c91368111 100644 --- a/docs/slf4j-2005.LICENSE +++ b/docs/slf4j-2005.LICENSE @@ -1,3 +1,14 @@ +--- +key: slf4j-2005 +is_deprecated: yes +short_name: SLF4J License 2005 +name: SLF4J License 2005 +category: Permissive +owner: QOS Project +text_urls: + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html +--- + 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 diff --git a/docs/slf4j-2005.html b/docs/slf4j-2005.html index fa1ecfe95d..1eae133c0c 100644 --- a/docs/slf4j-2005.html +++ b/docs/slf4j-2005.html @@ -152,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/slf4j-2005.json b/docs/slf4j-2005.json index 7bf79a263e..9c2ffd8963 100644 --- a/docs/slf4j-2005.json +++ b/docs/slf4j-2005.json @@ -1 +1,11 @@ -{"key": "slf4j-2005", "is_deprecated": true, "short_name": "SLF4J License 2005", "name": "SLF4J License 2005", "category": "Permissive", "owner": "QOS Project", "text_urls": ["http://www.xfree86.org/3.3.6/COPYRIGHT2.html"]} \ No newline at end of file +{ + "key": "slf4j-2005", + "is_deprecated": true, + "short_name": "SLF4J License 2005", + "name": "SLF4J License 2005", + "category": "Permissive", + "owner": "QOS Project", + "text_urls": [ + "http://www.xfree86.org/3.3.6/COPYRIGHT2.html" + ] +} \ No newline at end of file diff --git a/docs/slf4j-2008.LICENSE b/docs/slf4j-2008.LICENSE index 0c5508471f..1d93972474 100644 --- a/docs/slf4j-2008.LICENSE +++ b/docs/slf4j-2008.LICENSE @@ -1,3 +1,14 @@ +--- +key: slf4j-2008 +is_deprecated: yes +short_name: SLF4J License 2008 +name: SLF4J License 2008 +category: Permissive +owner: QOS Project +homepage_url: http://www.slf4j.org/license.html +notes: composite +--- + Licensing terms for SLF4J SLF4J source code and binaries are distributed under the MIT license. diff --git a/docs/slf4j-2008.html b/docs/slf4j-2008.html index 7a9c8db8f6..5a72bf5ca2 100644 --- a/docs/slf4j-2008.html +++ b/docs/slf4j-2008.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/slf4j-2008.json b/docs/slf4j-2008.json index 429d899953..864e5351d9 100644 --- a/docs/slf4j-2008.json +++ b/docs/slf4j-2008.json @@ -1 +1,10 @@ -{"key": "slf4j-2008", "is_deprecated": true, "short_name": "SLF4J License 2008", "name": "SLF4J License 2008", "category": "Permissive", "owner": "QOS Project", "homepage_url": "http://www.slf4j.org/license.html", "notes": "composite"} \ No newline at end of file +{ + "key": "slf4j-2008", + "is_deprecated": true, + "short_name": "SLF4J License 2008", + "name": "SLF4J License 2008", + "category": "Permissive", + "owner": "QOS Project", + "homepage_url": "http://www.slf4j.org/license.html", + "notes": "composite" +} \ No newline at end of file diff --git a/docs/slysoft-eula.LICENSE b/docs/slysoft-eula.LICENSE index 3db1704c60..8aede98ecc 100644 --- a/docs/slysoft-eula.LICENSE +++ b/docs/slysoft-eula.LICENSE @@ -1,3 +1,13 @@ +--- +key: slysoft-eula +short_name: SlySoft EULA +name: SlySoft EULA +category: Commercial +owner: SlySoft Inc. +homepage_url: http://www.slysoft.com/en/ +spdx_license_key: LicenseRef-scancode-slysoft-eula +--- + END USER LICENSE AGREEMENT for: All Software Products of SlySoft inc. IMPORTANT READ CAREFULLY and PRINT FOR YOUR REFERENCE: This End-User License Agreement ('EULA') is a legal agreement between you (either an individual person or a single legal entity, who will be referred to in this EULA as 'You') and SlySoft. It includes any associated media, printed materials and electronic documentation (the 'Software'). The Software also includes any software updates, add-on components, web services and/or supplements that SlySoft may provide to You or make available to You after the date You obtain Your initial copy of the Software to the extent that such items are not accompanied by a separate license agreement or terms of use. By installing, copying, downloading, accessing or otherwise using the Software, You agree to be bound by the terms of this EULA. If You do not agree to the terms of this EULA, do not install, access or use the Software. For purposes of this EULA, the term 'Licensor' refers to SlySoft except in the event that You acquired the Software as a component of a SlySoft software product originally licensed from the manufacturer of your computer system or computer system component, then 'Licensor' or refers to such hardware manufacturer. By installing, copying, downloading, accessing or otherwise using the Software, You agree to be bound by the terms of this EULA. If You do not agree to the terms of this EULA, Licensor is unwilling to license the Software. In such event, You may not install, copy, download or otherwise use the Software. diff --git a/docs/slysoft-eula.html b/docs/slysoft-eula.html index 560950ec8e..19d5b2b902 100644 --- a/docs/slysoft-eula.html +++ b/docs/slysoft-eula.html @@ -180,7 +180,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/slysoft-eula.json b/docs/slysoft-eula.json index e406d82c73..75a14ad1c5 100644 --- a/docs/slysoft-eula.json +++ b/docs/slysoft-eula.json @@ -1 +1,9 @@ -{"key": "slysoft-eula", "short_name": "SlySoft EULA", "name": "SlySoft EULA", "category": "Commercial", "owner": "SlySoft Inc.", "homepage_url": "http://www.slysoft.com/en/", "spdx_license_key": "LicenseRef-scancode-slysoft-eula"} \ No newline at end of file +{ + "key": "slysoft-eula", + "short_name": "SlySoft EULA", + "name": "SlySoft EULA", + "category": "Commercial", + "owner": "SlySoft Inc.", + "homepage_url": "http://www.slysoft.com/en/", + "spdx_license_key": "LicenseRef-scancode-slysoft-eula" +} \ No newline at end of file diff --git a/docs/smail-gpl.LICENSE b/docs/smail-gpl.LICENSE index ac94de5d4a..6e5997ff7f 100644 --- a/docs/smail-gpl.LICENSE +++ b/docs/smail-gpl.LICENSE @@ -1,3 +1,21 @@ +--- +key: smail-gpl +short_name: SMAIL GPL +name: SMAIL General Public License +category: Copyleft +owner: SMAIL Project +homepage_url: https://gitweb.gentoo.org/repo/gentoo.git/plain/licenses/SMAIL +spdx_license_key: LicenseRef-scancode-smail-gpl +text_urls: + - https://gitweb.gentoo.org/repo/gentoo.git/plain/licenses/SMAIL +ignorable_copyrights: + - Copyright (c) 1988 Landon Curt Noll & Ronald S. Karr + - Copyright (c) 1992 Ronald S. Karr +ignorable_holders: + - Landon Curt Noll & Ronald S. Karr + - Ronald S. Karr +--- + SMAIL GENERAL PUBLIC LICENSE (Clarified 11 Feb 1988) @@ -141,4 +159,4 @@ CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) SMAIL, EVEN IF YOU HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY -ANY OTHER PARTY. +ANY OTHER PARTY. \ No newline at end of file diff --git a/docs/smail-gpl.html b/docs/smail-gpl.html index f4a4f41061..085f9c442c 100644 --- a/docs/smail-gpl.html +++ b/docs/smail-gpl.html @@ -285,8 +285,7 @@ INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) SMAIL, EVEN IF YOU HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY -ANY OTHER PARTY. -
+ANY OTHER PARTY.
@@ -298,7 +297,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/smail-gpl.json b/docs/smail-gpl.json index 2988cac983..11b81e375c 100644 --- a/docs/smail-gpl.json +++ b/docs/smail-gpl.json @@ -1 +1,20 @@ -{"key": "smail-gpl", "short_name": "SMAIL GPL", "name": "SMAIL General Public License", "category": "Copyleft", "owner": "SMAIL Project", "homepage_url": "https://gitweb.gentoo.org/repo/gentoo.git/plain/licenses/SMAIL", "spdx_license_key": "LicenseRef-scancode-smail-gpl", "text_urls": ["https://gitweb.gentoo.org/repo/gentoo.git/plain/licenses/SMAIL"], "ignorable_copyrights": ["Copyright (c) 1988 Landon Curt Noll & Ronald S. Karr", "Copyright (c) 1992 Ronald S. Karr"], "ignorable_holders": ["Landon Curt Noll & Ronald S. Karr", "Ronald S. Karr"]} \ No newline at end of file +{ + "key": "smail-gpl", + "short_name": "SMAIL GPL", + "name": "SMAIL General Public License", + "category": "Copyleft", + "owner": "SMAIL Project", + "homepage_url": "https://gitweb.gentoo.org/repo/gentoo.git/plain/licenses/SMAIL", + "spdx_license_key": "LicenseRef-scancode-smail-gpl", + "text_urls": [ + "https://gitweb.gentoo.org/repo/gentoo.git/plain/licenses/SMAIL" + ], + "ignorable_copyrights": [ + "Copyright (c) 1988 Landon Curt Noll & Ronald S. Karr", + "Copyright (c) 1992 Ronald S. Karr" + ], + "ignorable_holders": [ + "Landon Curt Noll & Ronald S. Karr", + "Ronald S. Karr" + ] +} \ No newline at end of file diff --git a/docs/smartlabs-freeware.LICENSE b/docs/smartlabs-freeware.LICENSE index 9c23b953b5..dd560ba949 100644 --- a/docs/smartlabs-freeware.LICENSE +++ b/docs/smartlabs-freeware.LICENSE @@ -1,3 +1,15 @@ +--- +key: smartlabs-freeware +short_name: SmartLabs Freeware License +name: SmartLabs Freeware License +category: Proprietary Free +owner: SmartLabs +homepage_url: http://www.videohelp.com/tools/tsMuxeR +spdx_license_key: LicenseRef-scancode-smartlabs-freeware +text_urls: + - http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/SmartLabs +--- + Freeware Licence Agreement This licence agreement only applies to the free version of this software. diff --git a/docs/smartlabs-freeware.html b/docs/smartlabs-freeware.html index 7dd71d5c07..fadca51346 100644 --- a/docs/smartlabs-freeware.html +++ b/docs/smartlabs-freeware.html @@ -175,7 +175,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/smartlabs-freeware.json b/docs/smartlabs-freeware.json index a4cabce190..3176d5ba80 100644 --- a/docs/smartlabs-freeware.json +++ b/docs/smartlabs-freeware.json @@ -1 +1,12 @@ -{"key": "smartlabs-freeware", "short_name": "SmartLabs Freeware License", "name": "SmartLabs Freeware License", "category": "Proprietary Free", "owner": "SmartLabs", "homepage_url": "http://www.videohelp.com/tools/tsMuxeR", "spdx_license_key": "LicenseRef-scancode-smartlabs-freeware", "text_urls": ["http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/SmartLabs"]} \ No newline at end of file +{ + "key": "smartlabs-freeware", + "short_name": "SmartLabs Freeware License", + "name": "SmartLabs Freeware License", + "category": "Proprietary Free", + "owner": "SmartLabs", + "homepage_url": "http://www.videohelp.com/tools/tsMuxeR", + "spdx_license_key": "LicenseRef-scancode-smartlabs-freeware", + "text_urls": [ + "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/SmartLabs" + ] +} \ No newline at end of file diff --git a/docs/smppl.LICENSE b/docs/smppl.LICENSE index cd90437e7b..f43c50350e 100644 --- a/docs/smppl.LICENSE +++ b/docs/smppl.LICENSE @@ -1,3 +1,19 @@ +--- +key: smppl +short_name: SMPPL +name: Secure Messaging Protocol Public License +category: Copyleft Limited +owner: National Security Agency +homepage_url: https://github.com/dcblake/SMP/blob/master/Documentation/License.txt +spdx_license_key: SMPPL +ignorable_copyrights: + - Copyright (c) 1997-2002 National Security Agency +ignorable_holders: + - National Security Agency +ignorable_authors: + - the U.S. Government. BAE Systems +--- + Secure Messaging Protocol (SMP) Libraries [ACL, CML, SFL] Distribution Rights diff --git a/docs/smppl.html b/docs/smppl.html index ab17e5b5ce..949dc5394d 100644 --- a/docs/smppl.html +++ b/docs/smppl.html @@ -181,7 +181,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/smppl.json b/docs/smppl.json index 138c1c6e92..165fee8cf5 100644 --- a/docs/smppl.json +++ b/docs/smppl.json @@ -1 +1,18 @@ -{"key": "smppl", "short_name": "SMPPL", "name": "Secure Messaging Protocol Public License", "category": "Copyleft Limited", "owner": "National Security Agency", "homepage_url": "https://github.com/dcblake/SMP/blob/master/Documentation/License.txt", "spdx_license_key": "SMPPL", "ignorable_copyrights": ["Copyright (c) 1997-2002 National Security Agency"], "ignorable_holders": ["National Security Agency"], "ignorable_authors": ["the U.S. Government. BAE Systems"]} \ No newline at end of file +{ + "key": "smppl", + "short_name": "SMPPL", + "name": "Secure Messaging Protocol Public License", + "category": "Copyleft Limited", + "owner": "National Security Agency", + "homepage_url": "https://github.com/dcblake/SMP/blob/master/Documentation/License.txt", + "spdx_license_key": "SMPPL", + "ignorable_copyrights": [ + "Copyright (c) 1997-2002 National Security Agency" + ], + "ignorable_holders": [ + "National Security Agency" + ], + "ignorable_authors": [ + "the U.S. Government. BAE Systems" + ] +} \ No newline at end of file diff --git a/docs/smsc-non-commercial-2012.LICENSE b/docs/smsc-non-commercial-2012.LICENSE new file mode 100644 index 0000000000..6be16229f8 --- /dev/null +++ b/docs/smsc-non-commercial-2012.LICENSE @@ -0,0 +1,27 @@ +--- +key: smsc-non-commercial-2012 +short_name: SMSC Non-Commercial 2012 +name: SMSC Non-Commercial 2012 +category: Proprietary Free +owner: Microchip +spdx_license_key: LicenseRef-scancode-smsc-non-commercial-2012 +ignorable_copyrights: + - Copyright 2012 SMSC +ignorable_holders: + - SMSC +--- + +Copyright 2012 SMSC + +THIS SOFTWARE PROVIDED BY STANDARD MICROSYSTEMS CORPORATION`("SMSC")IS SAMPLE +CODE INTENDED FOR EVALUATION PURPOSES ONLY. IT IS NOT INTENDED FOR COMMERCIAL +USE. THIS SOFTWARE IS PROVIDED BY SMSC "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 EXPRESSLY AND +SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL SMSC 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. \ No newline at end of file diff --git a/docs/smsc-non-commercial-2012.html b/docs/smsc-non-commercial-2012.html new file mode 100644 index 0000000000..6e2d86bd4f --- /dev/null +++ b/docs/smsc-non-commercial-2012.html @@ -0,0 +1,174 @@ + + + + + + LicenseDB: smsc-non-commercial-2012 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + smsc-non-commercial-2012 + +
+ +
short_name
+
+ + SMSC Non-Commercial 2012 + +
+ +
name
+
+ + SMSC Non-Commercial 2012 + +
+ +
category
+
+ + Proprietary Free + +
+ +
owner
+
+ + Microchip + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-smsc-non-commercial-2012 + +
+ +
ignorable_copyrights
+
+ +
    +
  • Copyright 2012 SMSC
  • +
+ +
+ +
ignorable_holders
+
+ +
    +
  • SMSC
  • +
+ +
+ +
+
license_text
+
Copyright 2012 SMSC
+
+THIS SOFTWARE PROVIDED BY STANDARD MICROSYSTEMS CORPORATION`("SMSC")IS SAMPLE
+CODE INTENDED FOR EVALUATION PURPOSES ONLY.  IT IS NOT INTENDED FOR COMMERCIAL
+USE. THIS SOFTWARE IS PROVIDED BY SMSC "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 EXPRESSLY AND
+SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL SMSC 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.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/smsc-non-commercial-2012.json b/docs/smsc-non-commercial-2012.json new file mode 100644 index 0000000000..e9b42f7aa5 --- /dev/null +++ b/docs/smsc-non-commercial-2012.json @@ -0,0 +1,14 @@ +{ + "key": "smsc-non-commercial-2012", + "short_name": "SMSC Non-Commercial 2012", + "name": "SMSC Non-Commercial 2012", + "category": "Proprietary Free", + "owner": "Microchip", + "spdx_license_key": "LicenseRef-scancode-smsc-non-commercial-2012", + "ignorable_copyrights": [ + "Copyright 2012 SMSC" + ], + "ignorable_holders": [ + "SMSC" + ] +} \ No newline at end of file diff --git a/docs/smsc-non-commercial-2012.yml b/docs/smsc-non-commercial-2012.yml new file mode 100644 index 0000000000..fca84623d8 --- /dev/null +++ b/docs/smsc-non-commercial-2012.yml @@ -0,0 +1,10 @@ +key: smsc-non-commercial-2012 +short_name: SMSC Non-Commercial 2012 +name: SMSC Non-Commercial 2012 +category: Proprietary Free +owner: Microchip +spdx_license_key: LicenseRef-scancode-smsc-non-commercial-2012 +ignorable_copyrights: + - Copyright 2012 SMSC +ignorable_holders: + - SMSC diff --git a/docs/snapeda-design-exception-1.0.LICENSE b/docs/snapeda-design-exception-1.0.LICENSE index b45a76f1d9..b18f5bd63d 100644 --- a/docs/snapeda-design-exception-1.0.LICENSE +++ b/docs/snapeda-design-exception-1.0.LICENSE @@ -1 +1,16 @@ +--- +key: snapeda-design-exception-1.0 +short_name: SnapEDA Design Exception 1.0 +name: SnapEDA Design Exception 1.0 +category: Permissive +owner: SnapEDA +homepage_url: https://www.snapeda.com/about/terms/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-snapeda-design-exception-1.0 +faq_url: https://support.snapeda.com/en/articles/2957815-what-is-the-design-exception-1-0 +other_urls: + - 'https://support.snapeda.com/en/?q=license ' + - https://support.snapeda.com/en/articles/2957814-what-is-the-license-for-symbols-and-footprints +--- + Design Exception 1.0: You and your sub-licensees are hereby licensed to design, manufacture, use and distribute, circuit board designs and circuit boards formed by combining Design Files provided by SnapEDA with other circuit elements of your choosing. You may then convey such combinations under terms of your choice, and are not required to attribute SnapEDA as the source, even if such actions would otherwise violate the terms of the Creative Commons License. For clarity, any files shared publicly containing Design Files are still subject to the Site License restriction of 5.1.(g) \ No newline at end of file diff --git a/docs/snapeda-design-exception-1.0.html b/docs/snapeda-design-exception-1.0.html index 2cb44ec032..692beb94c0 100644 --- a/docs/snapeda-design-exception-1.0.html +++ b/docs/snapeda-design-exception-1.0.html @@ -150,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/snapeda-design-exception-1.0.json b/docs/snapeda-design-exception-1.0.json index 75ba0e0640..70a2bbf1bd 100644 --- a/docs/snapeda-design-exception-1.0.json +++ b/docs/snapeda-design-exception-1.0.json @@ -1 +1,15 @@ -{"key": "snapeda-design-exception-1.0", "short_name": "SnapEDA Design Exception 1.0", "name": "SnapEDA Design Exception 1.0", "category": "Permissive", "owner": "SnapEDA", "homepage_url": "https://www.snapeda.com/about/terms/", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-snapeda-design-exception-1.0", "faq_url": "https://support.snapeda.com/en/articles/2957815-what-is-the-design-exception-1-0", "other_urls": ["https://support.snapeda.com/en/?q=license ", "https://support.snapeda.com/en/articles/2957814-what-is-the-license-for-symbols-and-footprints"]} \ No newline at end of file +{ + "key": "snapeda-design-exception-1.0", + "short_name": "SnapEDA Design Exception 1.0", + "name": "SnapEDA Design Exception 1.0", + "category": "Permissive", + "owner": "SnapEDA", + "homepage_url": "https://www.snapeda.com/about/terms/", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-snapeda-design-exception-1.0", + "faq_url": "https://support.snapeda.com/en/articles/2957815-what-is-the-design-exception-1-0", + "other_urls": [ + "https://support.snapeda.com/en/?q=license ", + "https://support.snapeda.com/en/articles/2957814-what-is-the-license-for-symbols-and-footprints" + ] +} \ No newline at end of file diff --git a/docs/snia.LICENSE b/docs/snia.LICENSE index 193b1c7248..dbbb63da4e 100644 --- a/docs/snia.LICENSE +++ b/docs/snia.LICENSE @@ -1,3 +1,38 @@ +--- +key: snia +short_name: SNIA Public License 1.1 +name: SNIA Public License 1.1 +category: Copyleft +owner: SNIA +homepage_url: https://fedoraproject.org/wiki/Licensing/SNIA_Public_License +notes: | + Per Fedora, MPL 1.1 derived license with a few distinct changes They typoed + the version number in Exhibit A (it says it is 1.0, which confused me at + first, when I came across code using that attribution in its headers but + could not find a 1.0 license text). Section 8.2 (b) has been removed + entirely. The following text block has been removed from Section 11 "With + respect to disputes in which at least one party is a citizen of, or an + entity chartered or registered to do business in the United States of + America, any litigation relating to this License shall be subject to the + jurisdiction of the Federal Courts of the Northern District of California, + with venue lying in Santa Clara County, California, with the losing party + responsible for costs, including without limitation, court costs and + reasonable attorneys' fees and expenses." The following text block has been + removed from Exhibit A "Alternatively, the contents of this file may be + used under the terms of the _____ license (the "[___] License"), in which + case the provisions of [______] License are applicable instead of those + above. If you wish to allow use of your version of this file only under the + terms of the [____] License and not to allow others to use your version of + this file under the MPL, indicate your decision by deleting the provisions + above and replace them with the notice and other provisions required by the + [___] License. If you do not delete the provisions above,a recipient may + use your version of this file under either the MPL or the [___] License. +spdx_license_key: SNIA +ignorable_urls: + - http://www.snia.org/smi/developers/cim/ + - http://www.snia.org/smi/developers/open_source/ +--- + STORAGE NETWORKING INDUSTRY ASSOCIATION PUBLIC LICENSE Version 1.1 diff --git a/docs/snia.html b/docs/snia.html index f47f56c77a..f29c16fb40 100644 --- a/docs/snia.html +++ b/docs/snia.html @@ -285,7 +285,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/snia.json b/docs/snia.json index 8256975ddf..52d6afac13 100644 --- a/docs/snia.json +++ b/docs/snia.json @@ -1 +1,14 @@ -{"key": "snia", "short_name": "SNIA Public License 1.1", "name": "SNIA Public License 1.1", "category": "Copyleft", "owner": "SNIA", "homepage_url": "https://fedoraproject.org/wiki/Licensing/SNIA_Public_License", "notes": "Per Fedora, MPL 1.1 derived license with a few distinct changes They typoed\nthe version number in Exhibit A (it says it is 1.0, which confused me at\nfirst, when I came across code using that attribution in its headers but\ncould not find a 1.0 license text). Section 8.2 (b) has been removed\nentirely. The following text block has been removed from Section 11 \"With\nrespect to disputes in which at least one party is a citizen of, or an\nentity chartered or registered to do business in the United States of\nAmerica, any litigation relating to this License shall be subject to the\njurisdiction of the Federal Courts of the Northern District of California,\nwith venue lying in Santa Clara County, California, with the losing party\nresponsible for costs, including without limitation, court costs and\nreasonable attorneys' fees and expenses.\" The following text block has been\nremoved from Exhibit A \"Alternatively, the contents of this file may be\nused under the terms of the _____ license (the \"[___] License\"), in which\ncase the provisions of [______] License are applicable instead of those\nabove. If you wish to allow use of your version of this file only under the\nterms of the [____] License and not to allow others to use your version of\nthis file under the MPL, indicate your decision by deleting the provisions\nabove and replace them with the notice and other provisions required by the\n[___] License. If you do not delete the provisions above,a recipient may\nuse your version of this file under either the MPL or the [___] License.\n", "spdx_license_key": "SNIA", "ignorable_urls": ["http://www.snia.org/smi/developers/cim/", "http://www.snia.org/smi/developers/open_source/"]} \ No newline at end of file +{ + "key": "snia", + "short_name": "SNIA Public License 1.1", + "name": "SNIA Public License 1.1", + "category": "Copyleft", + "owner": "SNIA", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/SNIA_Public_License", + "notes": "Per Fedora, MPL 1.1 derived license with a few distinct changes They typoed\nthe version number in Exhibit A (it says it is 1.0, which confused me at\nfirst, when I came across code using that attribution in its headers but\ncould not find a 1.0 license text). Section 8.2 (b) has been removed\nentirely. The following text block has been removed from Section 11 \"With\nrespect to disputes in which at least one party is a citizen of, or an\nentity chartered or registered to do business in the United States of\nAmerica, any litigation relating to this License shall be subject to the\njurisdiction of the Federal Courts of the Northern District of California,\nwith venue lying in Santa Clara County, California, with the losing party\nresponsible for costs, including without limitation, court costs and\nreasonable attorneys' fees and expenses.\" The following text block has been\nremoved from Exhibit A \"Alternatively, the contents of this file may be\nused under the terms of the _____ license (the \"[___] License\"), in which\ncase the provisions of [______] License are applicable instead of those\nabove. If you wish to allow use of your version of this file only under the\nterms of the [____] License and not to allow others to use your version of\nthis file under the MPL, indicate your decision by deleting the provisions\nabove and replace them with the notice and other provisions required by the\n[___] License. If you do not delete the provisions above,a recipient may\nuse your version of this file under either the MPL or the [___] License.\n", + "spdx_license_key": "SNIA", + "ignorable_urls": [ + "http://www.snia.org/smi/developers/cim/", + "http://www.snia.org/smi/developers/open_source/" + ] +} \ No newline at end of file diff --git a/docs/snmp4j-smi.LICENSE b/docs/snmp4j-smi.LICENSE index 44feda609a..fcca2542c9 100644 --- a/docs/snmp4j-smi.LICENSE +++ b/docs/snmp4j-smi.LICENSE @@ -1,3 +1,19 @@ +--- +key: snmp4j-smi +short_name: SNMP4J-SMI License +name: SNMP4J-SMI License +category: Commercial +owner: SNMP4J +homepage_url: http://www.snmp4j.com/smi/LICENSE.txt +spdx_license_key: LicenseRef-scancode-snmp4j-smi +faq_url: http://www.snmp4j.com/ +other_urls: + - http://www.snmp4j.com/html/buy.html +ignorable_urls: + - http://www.agentpp.com/ + - http://www.snmp4j.org/ +--- + SNMP4J-SMI LICENSE AGREEMENT ============================ diff --git a/docs/snmp4j-smi.html b/docs/snmp4j-smi.html index ec5668a12f..0dc1a7675c 100644 --- a/docs/snmp4j-smi.html +++ b/docs/snmp4j-smi.html @@ -450,7 +450,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/snmp4j-smi.json b/docs/snmp4j-smi.json index 32faa437fd..a3f0ef9d18 100644 --- a/docs/snmp4j-smi.json +++ b/docs/snmp4j-smi.json @@ -1 +1,17 @@ -{"key": "snmp4j-smi", "short_name": "SNMP4J-SMI License", "name": "SNMP4J-SMI License", "category": "Commercial", "owner": "SNMP4J", "homepage_url": "http://www.snmp4j.com/smi/LICENSE.txt", "spdx_license_key": "LicenseRef-scancode-snmp4j-smi", "faq_url": "http://www.snmp4j.com/", "other_urls": ["http://www.snmp4j.com/html/buy.html"], "ignorable_urls": ["http://www.agentpp.com/", "http://www.snmp4j.org/"]} \ No newline at end of file +{ + "key": "snmp4j-smi", + "short_name": "SNMP4J-SMI License", + "name": "SNMP4J-SMI License", + "category": "Commercial", + "owner": "SNMP4J", + "homepage_url": "http://www.snmp4j.com/smi/LICENSE.txt", + "spdx_license_key": "LicenseRef-scancode-snmp4j-smi", + "faq_url": "http://www.snmp4j.com/", + "other_urls": [ + "http://www.snmp4j.com/html/buy.html" + ], + "ignorable_urls": [ + "http://www.agentpp.com/", + "http://www.snmp4j.org/" + ] +} \ No newline at end of file diff --git a/docs/snprintf.LICENSE b/docs/snprintf.LICENSE index 76af88df9d..8bc8cb848b 100644 --- a/docs/snprintf.LICENSE +++ b/docs/snprintf.LICENSE @@ -1,2 +1,11 @@ +--- +key: snprintf +short_name: snprintf License +name: snprintf License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-snprintf +--- + It may be used for any purpose as long as this notice remains intact on all source code distributions. \ No newline at end of file diff --git a/docs/snprintf.html b/docs/snprintf.html index cf6da62a20..ae4cac4fec 100644 --- a/docs/snprintf.html +++ b/docs/snprintf.html @@ -121,7 +121,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/snprintf.json b/docs/snprintf.json index 702bd1aa48..6229eb7096 100644 --- a/docs/snprintf.json +++ b/docs/snprintf.json @@ -1 +1,8 @@ -{"key": "snprintf", "short_name": "snprintf License", "name": "snprintf License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-snprintf"} \ No newline at end of file +{ + "key": "snprintf", + "short_name": "snprintf License", + "name": "snprintf License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-snprintf" +} \ No newline at end of file diff --git a/docs/softerra-ldap-browser-eula.LICENSE b/docs/softerra-ldap-browser-eula.LICENSE index 16935d9e65..f6ba59fcbc 100644 --- a/docs/softerra-ldap-browser-eula.LICENSE +++ b/docs/softerra-ldap-browser-eula.LICENSE @@ -1,3 +1,13 @@ +--- +key: softerra-ldap-browser-eula +short_name: Softerra LDAP Browser EULA +name: Softerra LDAP Browser EULA +category: Proprietary Free +owner: Softerra +homepage_url: http://www.ldapadministrator.com/softerra-ldap-browser.htm +spdx_license_key: LicenseRef-scancode-softerra-ldap-browser-eula +--- + END-USER LICENSE AGREEMENT This end-user software license agreement is a legal agreement ("Agreement") between you ("Licensee") and Softerra, LLC ("Softerra"), which is the owner of the LDAP Browser Software ("Software"). This Agreement specifies the terms and conditions under which Licensee may use the Software. diff --git a/docs/softerra-ldap-browser-eula.html b/docs/softerra-ldap-browser-eula.html index d24b9dd965..81a49549e3 100644 --- a/docs/softerra-ldap-browser-eula.html +++ b/docs/softerra-ldap-browser-eula.html @@ -179,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/softerra-ldap-browser-eula.json b/docs/softerra-ldap-browser-eula.json index 848fff7ccd..99289febfa 100644 --- a/docs/softerra-ldap-browser-eula.json +++ b/docs/softerra-ldap-browser-eula.json @@ -1 +1,9 @@ -{"key": "softerra-ldap-browser-eula", "short_name": "Softerra LDAP Browser EULA", "name": "Softerra LDAP Browser EULA", "category": "Proprietary Free", "owner": "Softerra", "homepage_url": "http://www.ldapadministrator.com/softerra-ldap-browser.htm", "spdx_license_key": "LicenseRef-scancode-softerra-ldap-browser-eula"} \ No newline at end of file +{ + "key": "softerra-ldap-browser-eula", + "short_name": "Softerra LDAP Browser EULA", + "name": "Softerra LDAP Browser EULA", + "category": "Proprietary Free", + "owner": "Softerra", + "homepage_url": "http://www.ldapadministrator.com/softerra-ldap-browser.htm", + "spdx_license_key": "LicenseRef-scancode-softerra-ldap-browser-eula" +} \ No newline at end of file diff --git a/docs/softfloat-2.0.LICENSE b/docs/softfloat-2.0.LICENSE index b2619455e3..29ec16c5fa 100644 --- a/docs/softfloat-2.0.LICENSE +++ b/docs/softfloat-2.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: softfloat-2.0 +short_name: SoftFloat Legal Notice 2.0 +name: SoftFloat Legal Notice with Prominent Notice +category: Permissive +owner: John R. Hauser +homepage_url: http://www.jhauser.us/arithmetic/SoftFloat.html +notes: this license with extra requirements was used for Softfloat v2 and in the linux kernel. + The newest v3 uses a plain bsd-new license +spdx_license_key: LicenseRef-scancode-softfloat-2.0 +minimum_coverage: 90 +ignorable_authors: + - John R. Hauser +ignorable_urls: + - http://www.jhauser.us/arithmetic/SoftFloat-2b/SoftFloat-source.txt +--- + SoftFloat Legal Notice Written by John R. Hauser. @@ -23,4 +40,4 @@ AND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE. Derivative works are acceptable, even for commercial purposes, so long as (1) they include prominent notice that the work is derivative, and (2) they include prominent notice akin to these three paragraphs for those parts of -this code that are retained. +this code that are retained. \ No newline at end of file diff --git a/docs/softfloat-2.0.html b/docs/softfloat-2.0.html index 4ac73b61d1..c17b76c9c9 100644 --- a/docs/softfloat-2.0.html +++ b/docs/softfloat-2.0.html @@ -172,8 +172,7 @@ Derivative works are acceptable, even for commercial purposes, so long as (1) they include prominent notice that the work is derivative, and (2) they include prominent notice akin to these three paragraphs for those parts of -this code that are retained. - +this code that are retained.
@@ -185,7 +184,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/softfloat-2.0.json b/docs/softfloat-2.0.json index be85a39bb2..7d6e74381f 100644 --- a/docs/softfloat-2.0.json +++ b/docs/softfloat-2.0.json @@ -1 +1,17 @@ -{"key": "softfloat-2.0", "short_name": "SoftFloat Legal Notice 2.0", "name": "SoftFloat Legal Notice with Prominent Notice", "category": "Permissive", "owner": "John R. Hauser", "homepage_url": "http://www.jhauser.us/arithmetic/SoftFloat.html", "notes": "this license with extra requirements was used for Softfloat v2 and in the linux kernel. The newest v3 uses a plain bsd-new license", "spdx_license_key": "LicenseRef-scancode-softfloat-2.0", "minimum_coverage": 90, "ignorable_authors": ["John R. Hauser"], "ignorable_urls": ["http://www.jhauser.us/arithmetic/SoftFloat-2b/SoftFloat-source.txt"]} \ No newline at end of file +{ + "key": "softfloat-2.0", + "short_name": "SoftFloat Legal Notice 2.0", + "name": "SoftFloat Legal Notice with Prominent Notice", + "category": "Permissive", + "owner": "John R. Hauser", + "homepage_url": "http://www.jhauser.us/arithmetic/SoftFloat.html", + "notes": "this license with extra requirements was used for Softfloat v2 and in the linux kernel. The newest v3 uses a plain bsd-new license", + "spdx_license_key": "LicenseRef-scancode-softfloat-2.0", + "minimum_coverage": 90, + "ignorable_authors": [ + "John R. Hauser" + ], + "ignorable_urls": [ + "http://www.jhauser.us/arithmetic/SoftFloat-2b/SoftFloat-source.txt" + ] +} \ No newline at end of file diff --git a/docs/softfloat.LICENSE b/docs/softfloat.LICENSE index 3e8737f215..1869ea4e34 100644 --- a/docs/softfloat.LICENSE +++ b/docs/softfloat.LICENSE @@ -1,3 +1,17 @@ +--- +key: softfloat +short_name: SoftFloat +name: SoftFloat Legal Notice +category: Permissive +owner: John R. Hauser +homepage_url: http://www.jhauser.us/arithmetic/SoftFloat.html +notes: this original license was used for Softfloat v1. The newest v3 uses a plain bsd-new license +spdx_license_key: LicenseRef-scancode-softfloat +minimum_coverage: 90 +ignorable_authors: + - John R. Hauser +--- + SoftFloat Legal Notice SoftFloat was written by John R. Hauser. diff --git a/docs/softfloat.html b/docs/softfloat.html index 541a9e3e8e..10c86e4448 100644 --- a/docs/softfloat.html +++ b/docs/softfloat.html @@ -171,7 +171,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/softfloat.json b/docs/softfloat.json index 0cba0ccd9a..39dd8ceaee 100644 --- a/docs/softfloat.json +++ b/docs/softfloat.json @@ -1 +1,14 @@ -{"key": "softfloat", "short_name": "SoftFloat", "name": "SoftFloat Legal Notice", "category": "Permissive", "owner": "John R. Hauser", "homepage_url": "http://www.jhauser.us/arithmetic/SoftFloat.html", "notes": "this original license was used for Softfloat v1. The newest v3 uses a plain bsd-new license", "spdx_license_key": "LicenseRef-scancode-softfloat", "minimum_coverage": 90, "ignorable_authors": ["John R. Hauser"]} \ No newline at end of file +{ + "key": "softfloat", + "short_name": "SoftFloat", + "name": "SoftFloat Legal Notice", + "category": "Permissive", + "owner": "John R. Hauser", + "homepage_url": "http://www.jhauser.us/arithmetic/SoftFloat.html", + "notes": "this original license was used for Softfloat v1. The newest v3 uses a plain bsd-new license", + "spdx_license_key": "LicenseRef-scancode-softfloat", + "minimum_coverage": 90, + "ignorable_authors": [ + "John R. Hauser" + ] +} \ No newline at end of file diff --git a/docs/softsurfer.LICENSE b/docs/softsurfer.LICENSE index d88f77eeaf..db3b25fcd4 100644 --- a/docs/softsurfer.LICENSE +++ b/docs/softsurfer.LICENSE @@ -1,3 +1,15 @@ +--- +key: softsurfer +short_name: softSurfer License +name: softSurfer License +category: Permissive +owner: Dan Sunday +homepage_url: http://geomalgorithms.com/a05-_intersect-1.html#Intersection%20of%202%20Planes +spdx_license_key: LicenseRef-scancode-softsurfer +other_urls: + - http://geomalgorithms.com/index.html +--- + This code may be freely used and modified for any purpose providing that this copyright notice is included with it. Copyright holder makes no warranty for this code, and cannot be held diff --git a/docs/softsurfer.html b/docs/softsurfer.html index 272e1fc1c2..0c7121ce7e 100644 --- a/docs/softsurfer.html +++ b/docs/softsurfer.html @@ -140,7 +140,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/softsurfer.json b/docs/softsurfer.json index a5a3ee5531..2cfa63a946 100644 --- a/docs/softsurfer.json +++ b/docs/softsurfer.json @@ -1 +1,12 @@ -{"key": "softsurfer", "short_name": "softSurfer License", "name": "softSurfer License", "category": "Permissive", "owner": "Dan Sunday", "homepage_url": "http://geomalgorithms.com/a05-_intersect-1.html#Intersection%20of%202%20Planes", "spdx_license_key": "LicenseRef-scancode-softsurfer", "other_urls": ["http://geomalgorithms.com/index.html"]} \ No newline at end of file +{ + "key": "softsurfer", + "short_name": "softSurfer License", + "name": "softSurfer License", + "category": "Permissive", + "owner": "Dan Sunday", + "homepage_url": "http://geomalgorithms.com/a05-_intersect-1.html#Intersection%20of%202%20Planes", + "spdx_license_key": "LicenseRef-scancode-softsurfer", + "other_urls": [ + "http://geomalgorithms.com/index.html" + ] +} \ No newline at end of file diff --git a/docs/solace-software-eula-2020.LICENSE b/docs/solace-software-eula-2020.LICENSE index 5eca524295..e26cb5f3cb 100644 --- a/docs/solace-software-eula-2020.LICENSE +++ b/docs/solace-software-eula-2020.LICENSE @@ -1,3 +1,23 @@ +--- +key: solace-software-eula-2020 +short_name: Solace-Software-EULA-2020 +name: Solace-Software-EULA-2020 +category: Proprietary Free +owner: solace +homepage_url: https://solace.com/license-software/ +spdx_license_key: LicenseRef-scancode-solace-software-eula-2020 +text_urls: + - https://solace.com/wp-content/uploads/2019/03/Solace-Software-EULA.pdf +ignorable_urls: + - http://www.bis.doc.gov/ + - http://www.opensource.org/licenses/alphabetical + - http://www.treas.gov/offices/enforcement/ofac + - https://solace.com/support +ignorable_emails: + - support@solace.com + - support@solcae.com +--- + Version: APRIL 1, 2020 SOLACE CORPORATION diff --git a/docs/solace-software-eula-2020.html b/docs/solace-software-eula-2020.html index 9cb7d0d4d0..c6cf8ee8e4 100644 --- a/docs/solace-software-eula-2020.html +++ b/docs/solace-software-eula-2020.html @@ -415,7 +415,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/solace-software-eula-2020.json b/docs/solace-software-eula-2020.json index db6acb1559..512595f19f 100644 --- a/docs/solace-software-eula-2020.json +++ b/docs/solace-software-eula-2020.json @@ -1 +1,22 @@ -{"key": "solace-software-eula-2020", "short_name": "Solace-Software-EULA-2020", "name": "Solace-Software-EULA-2020", "category": "Proprietary Free", "owner": "solace", "homepage_url": "https://solace.com/license-software/", "spdx_license_key": "LicenseRef-scancode-solace-software-eula-2020", "text_urls": ["https://solace.com/wp-content/uploads/2019/03/Solace-Software-EULA.pdf"], "ignorable_urls": ["http://www.bis.doc.gov/", "http://www.opensource.org/licenses/alphabetical", "http://www.treas.gov/offices/enforcement/ofac", "https://solace.com/support"], "ignorable_emails": ["support@solace.com", "support@solcae.com"]} \ No newline at end of file +{ + "key": "solace-software-eula-2020", + "short_name": "Solace-Software-EULA-2020", + "name": "Solace-Software-EULA-2020", + "category": "Proprietary Free", + "owner": "solace", + "homepage_url": "https://solace.com/license-software/", + "spdx_license_key": "LicenseRef-scancode-solace-software-eula-2020", + "text_urls": [ + "https://solace.com/wp-content/uploads/2019/03/Solace-Software-EULA.pdf" + ], + "ignorable_urls": [ + "http://www.bis.doc.gov/", + "http://www.opensource.org/licenses/alphabetical", + "http://www.treas.gov/offices/enforcement/ofac", + "https://solace.com/support" + ], + "ignorable_emails": [ + "support@solace.com", + "support@solcae.com" + ] +} \ No newline at end of file diff --git a/docs/spark-jive.LICENSE b/docs/spark-jive.LICENSE index 2c85d27914..ce6f2767bf 100644 --- a/docs/spark-jive.LICENSE +++ b/docs/spark-jive.LICENSE @@ -1,3 +1,14 @@ +--- +key: spark-jive +short_name: Spark Jive License +name: Spark Jive License +category: Proprietary Free +owner: Jive Software +homepage_url: http://download.igniterealtime.org/spark/docs/latest/README.html +spdx_license_key: LicenseRef-scancode-spark-jive +minimum_coverage: 15 +--- + License Agreement This is a legal agreement between You, the User of the Spark application diff --git a/docs/spark-jive.html b/docs/spark-jive.html index 38a8816a95..ab2e0c18ed 100644 --- a/docs/spark-jive.html +++ b/docs/spark-jive.html @@ -156,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/spark-jive.json b/docs/spark-jive.json index 8788556d01..99dc3ed5f7 100644 --- a/docs/spark-jive.json +++ b/docs/spark-jive.json @@ -1 +1,10 @@ -{"key": "spark-jive", "short_name": "Spark Jive License", "name": "Spark Jive License", "category": "Proprietary Free", "owner": "Jive Software", "homepage_url": "http://download.igniterealtime.org/spark/docs/latest/README.html", "spdx_license_key": "LicenseRef-scancode-spark-jive", "minimum_coverage": 15} \ No newline at end of file +{ + "key": "spark-jive", + "short_name": "Spark Jive License", + "name": "Spark Jive License", + "category": "Proprietary Free", + "owner": "Jive Software", + "homepage_url": "http://download.igniterealtime.org/spark/docs/latest/README.html", + "spdx_license_key": "LicenseRef-scancode-spark-jive", + "minimum_coverage": 15 +} \ No newline at end of file diff --git a/docs/sparky.LICENSE b/docs/sparky.LICENSE index dc9cd77a08..5602f708cc 100644 --- a/docs/sparky.LICENSE +++ b/docs/sparky.LICENSE @@ -1,3 +1,21 @@ +--- +key: sparky +short_name: Sparky License +name: Sparky License +category: Permissive +owner: Regents of the University of California +homepage_url: http://www.cgl.ucsf.edu/home/sparky/ +spdx_license_key: LicenseRef-scancode-sparky +text_urls: + - http://www.cgl.ucsf.edu/home/sparky/sparky-license.html +ignorable_copyrights: + - Copyright (c) 2009, The Regents of the University of California +ignorable_holders: + - The Regents of the University of California +ignorable_authors: + - the UCSF Resource +--- + Copyright, License, and Disclaimer The following copyright, license and disclaimer applies to the distributed diff --git a/docs/sparky.html b/docs/sparky.html index 62111dd56c..bac636d288 100644 --- a/docs/sparky.html +++ b/docs/sparky.html @@ -195,7 +195,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sparky.json b/docs/sparky.json index 2fc26649fe..3d0d4c3114 100644 --- a/docs/sparky.json +++ b/docs/sparky.json @@ -1 +1,21 @@ -{"key": "sparky", "short_name": "Sparky License", "name": "Sparky License", "category": "Permissive", "owner": "Regents of the University of California", "homepage_url": "http://www.cgl.ucsf.edu/home/sparky/", "spdx_license_key": "LicenseRef-scancode-sparky", "text_urls": ["http://www.cgl.ucsf.edu/home/sparky/sparky-license.html"], "ignorable_copyrights": ["Copyright (c) 2009, The Regents of the University of California"], "ignorable_holders": ["The Regents of the University of California"], "ignorable_authors": ["the UCSF Resource"]} \ No newline at end of file +{ + "key": "sparky", + "short_name": "Sparky License", + "name": "Sparky License", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.cgl.ucsf.edu/home/sparky/", + "spdx_license_key": "LicenseRef-scancode-sparky", + "text_urls": [ + "http://www.cgl.ucsf.edu/home/sparky/sparky-license.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 2009, The Regents of the University of California" + ], + "ignorable_holders": [ + "The Regents of the University of California" + ], + "ignorable_authors": [ + "the UCSF Resource" + ] +} \ No newline at end of file diff --git a/docs/speechworks-1.1.LICENSE b/docs/speechworks-1.1.LICENSE index 0d428619f8..4a829f90bb 100644 --- a/docs/speechworks-1.1.LICENSE +++ b/docs/speechworks-1.1.LICENSE @@ -1,3 +1,22 @@ +--- +key: speechworks-1.1 +short_name: SpeechWorks Public License 1.1 +name: SpeechWorks Public License v1.1 +category: Permissive +owner: Nuance Communications +homepage_url: http://www.speech.cs.cmu.edu/openvxi/OpenVXI_1_4/License.txt +spdx_license_key: LicenseRef-scancode-speechworks-1.1 +text_urls: + - http://www.speech.cs.cmu.edu/openvxi/OpenVXI_1_4/License.txt +other_urls: + - http://en.wikipedia.org/wiki/Nuance_Communications + - http://www.nuance.com/ +ignorable_copyrights: + - Copyright (c) 2000-2001, SpeechWorks International, Inc. +ignorable_holders: + - SpeechWorks International, Inc. +--- + The SpeechWorks Public License - Software, Version 1.1 Copyright (c) 2000-2001, SpeechWorks International, Inc. diff --git a/docs/speechworks-1.1.html b/docs/speechworks-1.1.html index bc28111553..81de61f836 100644 --- a/docs/speechworks-1.1.html +++ b/docs/speechworks-1.1.html @@ -200,7 +200,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/speechworks-1.1.json b/docs/speechworks-1.1.json index 3cc019159a..3d41e461fc 100644 --- a/docs/speechworks-1.1.json +++ b/docs/speechworks-1.1.json @@ -1 +1,22 @@ -{"key": "speechworks-1.1", "short_name": "SpeechWorks Public License 1.1", "name": "SpeechWorks Public License v1.1", "category": "Permissive", "owner": "Nuance Communications", "homepage_url": "http://www.speech.cs.cmu.edu/openvxi/OpenVXI_1_4/License.txt", "spdx_license_key": "LicenseRef-scancode-speechworks-1.1", "text_urls": ["http://www.speech.cs.cmu.edu/openvxi/OpenVXI_1_4/License.txt"], "other_urls": ["http://en.wikipedia.org/wiki/Nuance_Communications", "http://www.nuance.com/"], "ignorable_copyrights": ["Copyright (c) 2000-2001, SpeechWorks International, Inc."], "ignorable_holders": ["SpeechWorks International, Inc."]} \ No newline at end of file +{ + "key": "speechworks-1.1", + "short_name": "SpeechWorks Public License 1.1", + "name": "SpeechWorks Public License v1.1", + "category": "Permissive", + "owner": "Nuance Communications", + "homepage_url": "http://www.speech.cs.cmu.edu/openvxi/OpenVXI_1_4/License.txt", + "spdx_license_key": "LicenseRef-scancode-speechworks-1.1", + "text_urls": [ + "http://www.speech.cs.cmu.edu/openvxi/OpenVXI_1_4/License.txt" + ], + "other_urls": [ + "http://en.wikipedia.org/wiki/Nuance_Communications", + "http://www.nuance.com/" + ], + "ignorable_copyrights": [ + "Copyright (c) 2000-2001, SpeechWorks International, Inc." + ], + "ignorable_holders": [ + "SpeechWorks International, Inc." + ] +} \ No newline at end of file diff --git a/docs/spell-checker-exception-lgpl-2.1-plus.LICENSE b/docs/spell-checker-exception-lgpl-2.1-plus.LICENSE index d5ec132ae5..f8f0a96186 100644 --- a/docs/spell-checker-exception-lgpl-2.1-plus.LICENSE +++ b/docs/spell-checker-exception-lgpl-2.1-plus.LICENSE @@ -1,3 +1,42 @@ +--- +key: spell-checker-exception-lgpl-2.1-plus +short_name: Spell-Checker exception to LGPL 2.1 or later +name: Spell-Checker exception to LGPL 2.1 or later +category: Copyleft Limited +owner: AbiSource +is_exception: yes +spdx_license_key: LicenseRef-scancode-spell-exception-lgpl-2.1-plus +other_spdx_license_keys: + - LicenseRef-scancode-spell-checker-exception-lgpl-2.1-plus +text_urls: + - https://github.com/AbiWord/enchant/blob/master/src/enchant.h +other_urls: + - https://github.com/AbiWord/enchant/archive/enchant-1-0-0.tar.gz + - http://www.gnu.org/licenses/lgpl-2.1.txt +standard_notice: | + 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. + In addition, as a special exception, Dom Lachowicz + gives permission to link the code of this program with + non-LGPL Spelling Provider libraries (eg: a MSFT Office + spell checker backend) 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 said providers. If you modify + this file, you may extend this exception to your version of the + file, but you are not obligated to do so. If you do not wish to + do so, delete this exception statement from your version. +--- + In addition, as a special exception, Dom Lachowicz gives permission to link the code of this program with non-LGPL Spelling Provider libraries (eg: a MSFT Office diff --git a/docs/spell-checker-exception-lgpl-2.1-plus.html b/docs/spell-checker-exception-lgpl-2.1-plus.html index 2e4bdb8952..3163099192 100644 --- a/docs/spell-checker-exception-lgpl-2.1-plus.html +++ b/docs/spell-checker-exception-lgpl-2.1-plus.html @@ -190,7 +190,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/spell-checker-exception-lgpl-2.1-plus.json b/docs/spell-checker-exception-lgpl-2.1-plus.json index 63a74b54a0..d0ee3e9757 100644 --- a/docs/spell-checker-exception-lgpl-2.1-plus.json +++ b/docs/spell-checker-exception-lgpl-2.1-plus.json @@ -1 +1,20 @@ -{"key": "spell-checker-exception-lgpl-2.1-plus", "short_name": "Spell-Checker exception to LGPL 2.1 or later", "name": "Spell-Checker exception to LGPL 2.1 or later", "category": "Copyleft Limited", "owner": "AbiSource", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-spell-exception-lgpl-2.1-plus", "other_spdx_license_keys": ["LicenseRef-scancode-spell-checker-exception-lgpl-2.1-plus"], "text_urls": ["https://github.com/AbiWord/enchant/blob/master/src/enchant.h"], "other_urls": ["https://github.com/AbiWord/enchant/archive/enchant-1-0-0.tar.gz", "http://www.gnu.org/licenses/lgpl-2.1.txt"], "standard_notice": "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nLesser General Public License for more details.\nYou should have received a copy of the GNU Lesser General Public\nLicense along with this library; if not, write to the\nFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\nBoston, MA 02110-1301, USA.\nIn addition, as a special exception, Dom Lachowicz\ngives permission to link the code of this program with\nnon-LGPL Spelling Provider libraries (eg: a MSFT Office\nspell checker backend) and distribute linked combinations including\nthe two. You must obey the GNU Lesser General Public License in all\nrespects for all of the code used other than said providers. If you modify\nthis file, you may extend this exception to your version of the\nfile, but you are not obligated to do so. If you do not wish to\ndo so, delete this exception statement from your version.\n"} \ No newline at end of file +{ + "key": "spell-checker-exception-lgpl-2.1-plus", + "short_name": "Spell-Checker exception to LGPL 2.1 or later", + "name": "Spell-Checker exception to LGPL 2.1 or later", + "category": "Copyleft Limited", + "owner": "AbiSource", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-spell-exception-lgpl-2.1-plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-spell-checker-exception-lgpl-2.1-plus" + ], + "text_urls": [ + "https://github.com/AbiWord/enchant/blob/master/src/enchant.h" + ], + "other_urls": [ + "https://github.com/AbiWord/enchant/archive/enchant-1-0-0.tar.gz", + "http://www.gnu.org/licenses/lgpl-2.1.txt" + ], + "standard_notice": "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nLesser General Public License for more details.\nYou should have received a copy of the GNU Lesser General Public\nLicense along with this library; if not, write to the\nFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\nBoston, MA 02110-1301, USA.\nIn addition, as a special exception, Dom Lachowicz\ngives permission to link the code of this program with\nnon-LGPL Spelling Provider libraries (eg: a MSFT Office\nspell checker backend) and distribute linked combinations including\nthe two. You must obey the GNU Lesser General Public License in all\nrespects for all of the code used other than said providers. If you modify\nthis file, you may extend this exception to your version of the\nfile, but you are not obligated to do so. If you do not wish to\ndo so, delete this exception statement from your version.\n" +} \ No newline at end of file diff --git a/docs/spl-1.0.LICENSE b/docs/spl-1.0.LICENSE index f5ad8d9123..74d4841232 100644 --- a/docs/spl-1.0.LICENSE +++ b/docs/spl-1.0.LICENSE @@ -1,3 +1,26 @@ +--- +key: spl-1.0 +short_name: SPL 1.0 +name: Sun Public License 1.0 +category: Copyleft Limited +owner: Oracle (Sun) +homepage_url: http://www.netbeans.org/about/legal/spl.html +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: SPL-1.0 +osi_license_key: SPL-1.0 +text_urls: + - http://java.sun.com/spl.html + - https://fedoraproject.org/wiki/Licensing/Sun_Public_License +osi_url: http://opensource.org/licenses/sunpublic.php +faq_url: http://www.netbeans.org/kb/faqs/license.html +other_urls: + - http://www.gnu.org/licenses/license-list.html#SPL + - http://www.opensource.org/licenses/SPL-1.0 + - https://opensource.org/licenses/SPL-1.0 +ignorable_urls: + - http://www.sun.com/ +--- + 1. Definitions. 1.0.1. "Commercial Use" means distribution or otherwise making the diff --git a/docs/spl-1.0.html b/docs/spl-1.0.html index 56e9e138d5..32de4f77cd 100644 --- a/docs/spl-1.0.html +++ b/docs/spl-1.0.html @@ -685,7 +685,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/spl-1.0.json b/docs/spl-1.0.json index ac7443f7ca..ddc597214d 100644 --- a/docs/spl-1.0.json +++ b/docs/spl-1.0.json @@ -1 +1,25 @@ -{"key": "spl-1.0", "short_name": "SPL 1.0", "name": "Sun Public License 1.0", "category": "Copyleft Limited", "owner": "Oracle (Sun)", "homepage_url": "http://www.netbeans.org/about/legal/spl.html", "notes": "Per SPDX.org, this license is OSI certified", "spdx_license_key": "SPL-1.0", "osi_license_key": "SPL-1.0", "text_urls": ["http://java.sun.com/spl.html", "https://fedoraproject.org/wiki/Licensing/Sun_Public_License"], "osi_url": "http://opensource.org/licenses/sunpublic.php", "faq_url": "http://www.netbeans.org/kb/faqs/license.html", "other_urls": ["http://www.gnu.org/licenses/license-list.html#SPL", "http://www.opensource.org/licenses/SPL-1.0", "https://opensource.org/licenses/SPL-1.0"], "ignorable_urls": ["http://www.sun.com/"]} \ No newline at end of file +{ + "key": "spl-1.0", + "short_name": "SPL 1.0", + "name": "Sun Public License 1.0", + "category": "Copyleft Limited", + "owner": "Oracle (Sun)", + "homepage_url": "http://www.netbeans.org/about/legal/spl.html", + "notes": "Per SPDX.org, this license is OSI certified", + "spdx_license_key": "SPL-1.0", + "osi_license_key": "SPL-1.0", + "text_urls": [ + "http://java.sun.com/spl.html", + "https://fedoraproject.org/wiki/Licensing/Sun_Public_License" + ], + "osi_url": "http://opensource.org/licenses/sunpublic.php", + "faq_url": "http://www.netbeans.org/kb/faqs/license.html", + "other_urls": [ + "http://www.gnu.org/licenses/license-list.html#SPL", + "http://www.opensource.org/licenses/SPL-1.0", + "https://opensource.org/licenses/SPL-1.0" + ], + "ignorable_urls": [ + "http://www.sun.com/" + ] +} \ No newline at end of file diff --git a/docs/splunk-3pp-eula.LICENSE b/docs/splunk-3pp-eula.LICENSE index edf3c0d981..c46d073f25 100644 --- a/docs/splunk-3pp-eula.LICENSE +++ b/docs/splunk-3pp-eula.LICENSE @@ -1,3 +1,15 @@ +--- +key: splunk-3pp-eula +short_name: Splunk EULA for Third-Party Content +name: Splunk EULA for Third-Party Content +category: Proprietary Free +owner: Splunk +homepage_url: https://d38o4gzaohghws.cloudfront.net/static/misc/eula.html +spdx_license_key: LicenseRef-scancode-splunk-3pp-eula +other_urls: + - https://splunkbase.splunk.com/app/3173/ +--- + End User License Agreement for Third-Party Content READ CAREFULLY: LICENSOR LICENSES THIS PROGRAM, TOOL, PLUG-IN, ADD-ON, APPLICATION, LIBRARY, CONTENT, DATA, SOLUTION, SERVICE OR OTHER ITEM OR MATERIAL (THE "CONTENT") TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS END USER LICENSE AGREEMENT ("AGREEMENT"). diff --git a/docs/splunk-3pp-eula.html b/docs/splunk-3pp-eula.html index 6ddd40e21d..0d58cb657d 100644 --- a/docs/splunk-3pp-eula.html +++ b/docs/splunk-3pp-eula.html @@ -151,7 +151,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/splunk-3pp-eula.json b/docs/splunk-3pp-eula.json index e1f7a19527..273fa0c0f6 100644 --- a/docs/splunk-3pp-eula.json +++ b/docs/splunk-3pp-eula.json @@ -1 +1,12 @@ -{"key": "splunk-3pp-eula", "short_name": "Splunk EULA for Third-Party Content", "name": "Splunk EULA for Third-Party Content", "category": "Proprietary Free", "owner": "Splunk", "homepage_url": "https://d38o4gzaohghws.cloudfront.net/static/misc/eula.html", "spdx_license_key": "LicenseRef-scancode-splunk-3pp-eula", "other_urls": ["https://splunkbase.splunk.com/app/3173/"]} \ No newline at end of file +{ + "key": "splunk-3pp-eula", + "short_name": "Splunk EULA for Third-Party Content", + "name": "Splunk EULA for Third-Party Content", + "category": "Proprietary Free", + "owner": "Splunk", + "homepage_url": "https://d38o4gzaohghws.cloudfront.net/static/misc/eula.html", + "spdx_license_key": "LicenseRef-scancode-splunk-3pp-eula", + "other_urls": [ + "https://splunkbase.splunk.com/app/3173/" + ] +} \ No newline at end of file diff --git a/docs/splunk-mint-tos-2018.LICENSE b/docs/splunk-mint-tos-2018.LICENSE index 8fdd52085c..224f59e809 100644 --- a/docs/splunk-mint-tos-2018.LICENSE +++ b/docs/splunk-mint-tos-2018.LICENSE @@ -1,3 +1,21 @@ +--- +key: splunk-mint-tos-2018 +short_name: Splunk MINT TOS 2018 +name: Splunk MINT Terms of Service 2018 +category: Proprietary Free +owner: Splunk +homepage_url: https://www.splunk.com/en_us/legal/terms/splunk-mint-terms-of-service.html +spdx_license_key: LicenseRef-scancode-splunk-mint-tos-2018 +ignorable_urls: + - http://docs.splunk.com/Documentation + - http://splunk.com/goto/splunkcloud_aup + - http://www.splunk.com/r/privacy + - http://www.splunk.com/view/SP-CAAAAAG + - http://www.splunk.com/view/SP-CAAAAAH +ignorable_emails: + - mobilesupport@splunk.com +--- + Splunk MINT Terms of Service Last revised: April 16, 2018 diff --git a/docs/splunk-mint-tos-2018.html b/docs/splunk-mint-tos-2018.html index 897bb15f83..096e0350b0 100644 --- a/docs/splunk-mint-tos-2018.html +++ b/docs/splunk-mint-tos-2018.html @@ -314,7 +314,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/splunk-mint-tos-2018.json b/docs/splunk-mint-tos-2018.json index a8d95d5f69..59892dcdf1 100644 --- a/docs/splunk-mint-tos-2018.json +++ b/docs/splunk-mint-tos-2018.json @@ -1 +1,19 @@ -{"key": "splunk-mint-tos-2018", "short_name": "Splunk MINT TOS 2018", "name": "Splunk MINT Terms of Service 2018", "category": "Proprietary Free", "owner": "Splunk", "homepage_url": "https://www.splunk.com/en_us/legal/terms/splunk-mint-terms-of-service.html", "spdx_license_key": "LicenseRef-scancode-splunk-mint-tos-2018", "ignorable_urls": ["http://docs.splunk.com/Documentation", "http://splunk.com/goto/splunkcloud_aup", "http://www.splunk.com/r/privacy", "http://www.splunk.com/view/SP-CAAAAAG", "http://www.splunk.com/view/SP-CAAAAAH"], "ignorable_emails": ["mobilesupport@splunk.com"]} \ No newline at end of file +{ + "key": "splunk-mint-tos-2018", + "short_name": "Splunk MINT TOS 2018", + "name": "Splunk MINT Terms of Service 2018", + "category": "Proprietary Free", + "owner": "Splunk", + "homepage_url": "https://www.splunk.com/en_us/legal/terms/splunk-mint-terms-of-service.html", + "spdx_license_key": "LicenseRef-scancode-splunk-mint-tos-2018", + "ignorable_urls": [ + "http://docs.splunk.com/Documentation", + "http://splunk.com/goto/splunkcloud_aup", + "http://www.splunk.com/r/privacy", + "http://www.splunk.com/view/SP-CAAAAAG", + "http://www.splunk.com/view/SP-CAAAAAH" + ], + "ignorable_emails": [ + "mobilesupport@splunk.com" + ] +} \ No newline at end of file diff --git a/docs/splunk-sla.LICENSE b/docs/splunk-sla.LICENSE index 457119224d..1188ac7014 100644 --- a/docs/splunk-sla.LICENSE +++ b/docs/splunk-sla.LICENSE @@ -1,3 +1,22 @@ +--- +key: splunk-sla +short_name: Splunk SLA +name: Splunk Software License Agreement +category: Commercial +owner: Splunk +homepage_url: https://www.splunk.com/en_us/legal/splunk-software-license-agreement.html +spdx_license_key: LicenseRef-scancode-splunk-sla +text_urls: + - https://www.splunk.com/en_us/legal/splunk-software-license-agreement.html +ignorable_urls: + - http://www.splunk.com/en_us/support-and-services/support-programs.html + - https://splunkbase.splunk.com/ + - https://www.splunk.com/en_us/legal/licensed-capacity.html + - https://www.splunk.com/en_us/legal/privacy/privacy-policy.html + - https://www.splunk.com/en_us/legal/professional-services-agreement.html + - https://www.splunk.com/en_us/legal/splunk-software-support-policy.html +--- + SPLUNK SOFTWARE LICENSE AGREEMENT THIS SPLUNK SOFTWARE LICENSE AGREEMENT (“AGREEMENT”) GOVERNS THE LICENSING, INSTALLATION AND USE OF SPLUNK SOFTWARE. BY DOWNLOADING AND/OR INSTALLING SPLUNK SOFTWARE: (a) you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the company, GOVERNMENT, or other entity for which you are acting (for example, as an employee OR GOVERNMENT OFFICIAL) or, if there is no company, GOVERNMENT or other entity for which you are acting, on behalf of yourself as an individual; and (b) you represent and warrant that you have the authority to act on behalf of and bind SUCH company, GOVERNMENT OR OTHER ENTITY (if any). diff --git a/docs/splunk-sla.html b/docs/splunk-sla.html index 4b4bef84fa..33319a665c 100644 --- a/docs/splunk-sla.html +++ b/docs/splunk-sla.html @@ -372,7 +372,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/splunk-sla.json b/docs/splunk-sla.json index 196c59e267..ff1719d0c6 100644 --- a/docs/splunk-sla.json +++ b/docs/splunk-sla.json @@ -1 +1,20 @@ -{"key": "splunk-sla", "short_name": "Splunk SLA", "name": "Splunk Software License Agreement", "category": "Commercial", "owner": "Splunk", "homepage_url": "https://www.splunk.com/en_us/legal/splunk-software-license-agreement.html", "spdx_license_key": "LicenseRef-scancode-splunk-sla", "text_urls": ["https://www.splunk.com/en_us/legal/splunk-software-license-agreement.html"], "ignorable_urls": ["http://www.splunk.com/en_us/support-and-services/support-programs.html", "https://splunkbase.splunk.com/", "https://www.splunk.com/en_us/legal/licensed-capacity.html", "https://www.splunk.com/en_us/legal/privacy/privacy-policy.html", "https://www.splunk.com/en_us/legal/professional-services-agreement.html", "https://www.splunk.com/en_us/legal/splunk-software-support-policy.html"]} \ No newline at end of file +{ + "key": "splunk-sla", + "short_name": "Splunk SLA", + "name": "Splunk Software License Agreement", + "category": "Commercial", + "owner": "Splunk", + "homepage_url": "https://www.splunk.com/en_us/legal/splunk-software-license-agreement.html", + "spdx_license_key": "LicenseRef-scancode-splunk-sla", + "text_urls": [ + "https://www.splunk.com/en_us/legal/splunk-software-license-agreement.html" + ], + "ignorable_urls": [ + "http://www.splunk.com/en_us/support-and-services/support-programs.html", + "https://splunkbase.splunk.com/", + "https://www.splunk.com/en_us/legal/licensed-capacity.html", + "https://www.splunk.com/en_us/legal/privacy/privacy-policy.html", + "https://www.splunk.com/en_us/legal/professional-services-agreement.html", + "https://www.splunk.com/en_us/legal/splunk-software-support-policy.html" + ] +} \ No newline at end of file diff --git a/docs/square-cla.LICENSE b/docs/square-cla.LICENSE index 4eb11cabfd..91a81368f9 100644 --- a/docs/square-cla.LICENSE +++ b/docs/square-cla.LICENSE @@ -1,3 +1,13 @@ +--- +key: square-cla +short_name: Square CLA +name: Square Inc. Individual Contributor License Agreement +category: CLA +owner: Square, Inc. +homepage_url: https://docs.google.com/forms/d/e/1FAIpQLSeRVQ35-gq2vdSxD1kdh7CJwRdjmUA0EZ9gRXaWYoUeKPZEQQ/viewform?formkey=dDViT2xzUHAwRkI3X3k5Z0lQM091OGc6MQ&ndplr=1 +spdx_license_key: LicenseRef-scancode-square-cla +--- + Square Inc. Individual Contributor License Agreement An Individual Contributor License Agreement (an "Agreement") is required to establish and define the intellectual property license granted in connection with Contributions (defined below) from any person or entity to Square, Inc. (“Square”) for inclusion in any of the products owned or managed by Square (the “Work”). This Agreement is for your protection as well as Square’s. This Agreement does not alter your rights to use your own Contributions for other purposes. By executing this Agreement, you accept and agree to the following terms and conditions for any past, current, or future Contributions submitted to Square. Except for the license granted herein to Square and recipients of software distributed by Square, you reserve all right, title, and interest in and to the Contributions you create. diff --git a/docs/square-cla.html b/docs/square-cla.html index a2efa35b7f..93e9fd4711 100644 --- a/docs/square-cla.html +++ b/docs/square-cla.html @@ -88,7 +88,7 @@
category
- Patent License + CLA
@@ -173,7 +173,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/square-cla.json b/docs/square-cla.json index 7698af1ec7..f2d5f0ac8b 100644 --- a/docs/square-cla.json +++ b/docs/square-cla.json @@ -1 +1,9 @@ -{"key": "square-cla", "short_name": "Square CLA", "name": "Square Inc. Individual Contributor License Agreement", "category": "Patent License", "owner": "Square, Inc.", "homepage_url": "https://docs.google.com/forms/d/e/1FAIpQLSeRVQ35-gq2vdSxD1kdh7CJwRdjmUA0EZ9gRXaWYoUeKPZEQQ/viewform?formkey=dDViT2xzUHAwRkI3X3k5Z0lQM091OGc6MQ&ndplr=1", "spdx_license_key": "LicenseRef-scancode-square-cla"} \ No newline at end of file +{ + "key": "square-cla", + "short_name": "Square CLA", + "name": "Square Inc. Individual Contributor License Agreement", + "category": "CLA", + "owner": "Square, Inc.", + "homepage_url": "https://docs.google.com/forms/d/e/1FAIpQLSeRVQ35-gq2vdSxD1kdh7CJwRdjmUA0EZ9gRXaWYoUeKPZEQQ/viewform?formkey=dDViT2xzUHAwRkI3X3k5Z0lQM091OGc6MQ&ndplr=1", + "spdx_license_key": "LicenseRef-scancode-square-cla" +} \ No newline at end of file diff --git a/docs/square-cla.yml b/docs/square-cla.yml index c633cddacd..c70f934f6f 100644 --- a/docs/square-cla.yml +++ b/docs/square-cla.yml @@ -1,7 +1,7 @@ key: square-cla short_name: Square CLA name: Square Inc. Individual Contributor License Agreement -category: Patent License +category: CLA owner: Square, Inc. homepage_url: https://docs.google.com/forms/d/e/1FAIpQLSeRVQ35-gq2vdSxD1kdh7CJwRdjmUA0EZ9gRXaWYoUeKPZEQQ/viewform?formkey=dDViT2xzUHAwRkI3X3k5Z0lQM091OGc6MQ&ndplr=1 spdx_license_key: LicenseRef-scancode-square-cla diff --git a/docs/squeak.LICENSE b/docs/squeak.LICENSE index f344f9100d..ed840cc3ef 100644 --- a/docs/squeak.LICENSE +++ b/docs/squeak.LICENSE @@ -1,3 +1,15 @@ +--- +key: squeak +short_name: Apple Squeak License +name: Apple Squeak License +category: Proprietary Free +owner: Apple +homepage_url: http://squeak.org/SqueakLicense/ +spdx_license_key: LicenseRef-scancode-squeak +text_urls: + - https://squeak.org/SqueakLicense/ +--- + Apple Computer, Inc. Software License PLEASE READ THIS SOFTWARE LICENSE AGREEMENT "LICENSE" CAREFULLY BEFORE DOWNLOADING THIS SOFTWARE. BY DOWNLOADING THIS SOFTWARE YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS LICENSE. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE, DO NOT DOWNLOAD. diff --git a/docs/squeak.html b/docs/squeak.html index f8b707e764..d674820717 100644 --- a/docs/squeak.html +++ b/docs/squeak.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/squeak.json b/docs/squeak.json index 6cf0079646..cd05beb86f 100644 --- a/docs/squeak.json +++ b/docs/squeak.json @@ -1 +1,12 @@ -{"key": "squeak", "short_name": "Apple Squeak License", "name": "Apple Squeak License", "category": "Proprietary Free", "owner": "Apple", "homepage_url": "http://squeak.org/SqueakLicense/", "spdx_license_key": "LicenseRef-scancode-squeak", "text_urls": ["https://squeak.org/SqueakLicense/"]} \ No newline at end of file +{ + "key": "squeak", + "short_name": "Apple Squeak License", + "name": "Apple Squeak License", + "category": "Proprietary Free", + "owner": "Apple", + "homepage_url": "http://squeak.org/SqueakLicense/", + "spdx_license_key": "LicenseRef-scancode-squeak", + "text_urls": [ + "https://squeak.org/SqueakLicense/" + ] +} \ No newline at end of file diff --git a/docs/srgb.LICENSE b/docs/srgb.LICENSE index 4e9ecbf28c..f07c4263e7 100644 --- a/docs/srgb.LICENSE +++ b/docs/srgb.LICENSE @@ -1,3 +1,15 @@ +--- +key: srgb +short_name: sRGB Profile Licensing Agreement +name: sRGB Profile Licensing Agreement +category: Proprietary Free +owner: HP - Hewlett Packard +homepage_url: https://web.archive.org/web/20011024060436/http://www.srgb.com/usingsrgb.html +spdx_license_key: LicenseRef-scancode-srgb +ignorable_authors: + - prior permission. Hewlett-Packard Company +--- + To anyone who acknowledges that the file "sRGB Color Space Profile.icm" is provided "AS IS" WITH NO EXPRESS OR IMPLIED WARRANTY: permission to use, copy and distribute this file for any purpose is hereby diff --git a/docs/srgb.html b/docs/srgb.html index 72931a3e87..27d535f6ae 100644 --- a/docs/srgb.html +++ b/docs/srgb.html @@ -143,7 +143,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/srgb.json b/docs/srgb.json index 93891067b9..ac56a0ced3 100644 --- a/docs/srgb.json +++ b/docs/srgb.json @@ -1 +1,12 @@ -{"key": "srgb", "short_name": "sRGB Profile Licensing Agreement", "name": "sRGB Profile Licensing Agreement", "category": "Proprietary Free", "owner": "HP - Hewlett Packard", "homepage_url": "https://web.archive.org/web/20011024060436/http://www.srgb.com/usingsrgb.html", "spdx_license_key": "LicenseRef-scancode-srgb", "ignorable_authors": ["prior permission. Hewlett-Packard Company"]} \ No newline at end of file +{ + "key": "srgb", + "short_name": "sRGB Profile Licensing Agreement", + "name": "sRGB Profile Licensing Agreement", + "category": "Proprietary Free", + "owner": "HP - Hewlett Packard", + "homepage_url": "https://web.archive.org/web/20011024060436/http://www.srgb.com/usingsrgb.html", + "spdx_license_key": "LicenseRef-scancode-srgb", + "ignorable_authors": [ + "prior permission. Hewlett-Packard Company" + ] +} \ No newline at end of file diff --git a/docs/ssleay-windows.LICENSE b/docs/ssleay-windows.LICENSE index 910d058b9a..159bf85d26 100644 --- a/docs/ssleay-windows.LICENSE +++ b/docs/ssleay-windows.LICENSE @@ -1,3 +1,27 @@ +--- +key: ssleay-windows +short_name: Original SSLeay License with Windows Clause +name: Original SSLeay License with Windows Clause +category: Permissive +owner: OpenSSL +homepage_url: https://www.openssl.org/source/license.html +spdx_license_key: LicenseRef-scancode-ssleay-windows +text_urls: + - http://www.openssl.org/source/license.html +other_urls: + - http://h71000.www7.hp.com/doc/83final/ba554_90007/apcs02.html +ignorable_copyrights: + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) +ignorable_emails: + - eay@cryptsoft.com + - tjh@cryptsoft.com +--- + This package is an SSL implementation written by Eric Young (eay@cryptsoft.com). The implementation was written so as to conform with Netscapes SSL. diff --git a/docs/ssleay-windows.html b/docs/ssleay-windows.html index bcd32a26cf..b9db42ba31 100644 --- a/docs/ssleay-windows.html +++ b/docs/ssleay-windows.html @@ -231,7 +231,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ssleay-windows.json b/docs/ssleay-windows.json index b63aedd509..c1bb51ebfc 100644 --- a/docs/ssleay-windows.json +++ b/docs/ssleay-windows.json @@ -1 +1,29 @@ -{"key": "ssleay-windows", "short_name": "Original SSLeay License with Windows Clause", "name": "Original SSLeay License with Windows Clause", "category": "Permissive", "owner": "OpenSSL", "homepage_url": "https://www.openssl.org/source/license.html", "spdx_license_key": "LicenseRef-scancode-ssleay-windows", "text_urls": ["http://www.openssl.org/source/license.html"], "other_urls": ["http://h71000.www7.hp.com/doc/83final/ba554_90007/apcs02.html"], "ignorable_copyrights": ["holder is Tim Hudson (tjh@cryptsoft.com)"], "ignorable_holders": ["Tim Hudson"], "ignorable_authors": ["Eric Young (eay@cryptsoft.com)", "Tim Hudson (tjh@cryptsoft.com)"], "ignorable_emails": ["eay@cryptsoft.com", "tjh@cryptsoft.com"]} \ No newline at end of file +{ + "key": "ssleay-windows", + "short_name": "Original SSLeay License with Windows Clause", + "name": "Original SSLeay License with Windows Clause", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "https://www.openssl.org/source/license.html", + "spdx_license_key": "LicenseRef-scancode-ssleay-windows", + "text_urls": [ + "http://www.openssl.org/source/license.html" + ], + "other_urls": [ + "http://h71000.www7.hp.com/doc/83final/ba554_90007/apcs02.html" + ], + "ignorable_copyrights": [ + "holder is Tim Hudson (tjh@cryptsoft.com)" + ], + "ignorable_holders": [ + "Tim Hudson" + ], + "ignorable_authors": [ + "Eric Young (eay@cryptsoft.com)", + "Tim Hudson (tjh@cryptsoft.com)" + ], + "ignorable_emails": [ + "eay@cryptsoft.com", + "tjh@cryptsoft.com" + ] +} \ No newline at end of file diff --git a/docs/ssleay.LICENSE b/docs/ssleay.LICENSE index db772ac30b..9cba41e5b2 100644 --- a/docs/ssleay.LICENSE +++ b/docs/ssleay.LICENSE @@ -1,3 +1,24 @@ +--- +key: ssleay +short_name: Original SSLeay License +name: Original SSLeay License +category: Permissive +owner: OpenSSL +homepage_url: http://www.openssl.org/source/license.html +spdx_license_key: LicenseRef-scancode-ssleay +text_urls: + - http://www.openssl.org/source/license.html +ignorable_copyrights: + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) +ignorable_emails: + - eay@cryptsoft.com + - tjh@cryptsoft.com +--- + This package is an SSL implementation written by Eric Young (eay@cryptsoft.com). The implementation was written so as to conform with Netscapes SSL. diff --git a/docs/ssleay.html b/docs/ssleay.html index f33ad7b6d8..ff7137525d 100644 --- a/docs/ssleay.html +++ b/docs/ssleay.html @@ -219,7 +219,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ssleay.json b/docs/ssleay.json index 42eac97378..dc28e5a064 100644 --- a/docs/ssleay.json +++ b/docs/ssleay.json @@ -1 +1,25 @@ -{"key": "ssleay", "short_name": "Original SSLeay License", "name": "Original SSLeay License", "category": "Permissive", "owner": "OpenSSL", "homepage_url": "http://www.openssl.org/source/license.html", "spdx_license_key": "LicenseRef-scancode-ssleay", "text_urls": ["http://www.openssl.org/source/license.html"], "ignorable_copyrights": ["holder is Tim Hudson (tjh@cryptsoft.com)"], "ignorable_holders": ["Tim Hudson"], "ignorable_authors": ["Eric Young (eay@cryptsoft.com)"], "ignorable_emails": ["eay@cryptsoft.com", "tjh@cryptsoft.com"]} \ No newline at end of file +{ + "key": "ssleay", + "short_name": "Original SSLeay License", + "name": "Original SSLeay License", + "category": "Permissive", + "owner": "OpenSSL", + "homepage_url": "http://www.openssl.org/source/license.html", + "spdx_license_key": "LicenseRef-scancode-ssleay", + "text_urls": [ + "http://www.openssl.org/source/license.html" + ], + "ignorable_copyrights": [ + "holder is Tim Hudson (tjh@cryptsoft.com)" + ], + "ignorable_holders": [ + "Tim Hudson" + ], + "ignorable_authors": [ + "Eric Young (eay@cryptsoft.com)" + ], + "ignorable_emails": [ + "eay@cryptsoft.com", + "tjh@cryptsoft.com" + ] +} \ No newline at end of file diff --git a/docs/st-bsd-restricted.LICENSE b/docs/st-bsd-restricted.LICENSE index 4bd1a7270d..a553890337 100644 --- a/docs/st-bsd-restricted.LICENSE +++ b/docs/st-bsd-restricted.LICENSE @@ -1,3 +1,13 @@ +--- +key: st-bsd-restricted +short_name: STMicro BSD Restricted +name: STMicro BSD Restricted +category: Free Restricted +owner: STMicroelectronics +homepage_url: https://www.st.com/ +spdx_license_key: LicenseRef-scancode-st-bsd-restricted +--- + Redistribution and use in source and binary forms, with or without modification, are permitted, provided that the following conditions are met: @@ -27,4 +37,4 @@ 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. +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/st-bsd-restricted.html b/docs/st-bsd-restricted.html index cd97d61126..fcbb6c1263 100644 --- a/docs/st-bsd-restricted.html +++ b/docs/st-bsd-restricted.html @@ -144,8 +144,7 @@ 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. - +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -157,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/st-bsd-restricted.json b/docs/st-bsd-restricted.json index c9e54273e5..864d1f6405 100644 --- a/docs/st-bsd-restricted.json +++ b/docs/st-bsd-restricted.json @@ -1 +1,9 @@ -{"key": "st-bsd-restricted", "short_name": "STMicro BSD Restricted", "name": "STMicro BSD Restricted", "category": "Free Restricted", "owner": "STMicroelectronics", "homepage_url": "https://www.st.com/", "spdx_license_key": "LicenseRef-scancode-st-bsd-restricted"} \ No newline at end of file +{ + "key": "st-bsd-restricted", + "short_name": "STMicro BSD Restricted", + "name": "STMicro BSD Restricted", + "category": "Free Restricted", + "owner": "STMicroelectronics", + "homepage_url": "https://www.st.com/", + "spdx_license_key": "LicenseRef-scancode-st-bsd-restricted" +} \ No newline at end of file diff --git a/docs/st-mcd-2.0.LICENSE b/docs/st-mcd-2.0.LICENSE index 54e1120390..6eda496848 100644 --- a/docs/st-mcd-2.0.LICENSE +++ b/docs/st-mcd-2.0.LICENSE @@ -1,3 +1,47 @@ +--- +key: st-mcd-2.0 +short_name: STMicro Liberty License v2 +name: STMicro Liberty License v2 +category: Proprietary Free +owner: STMicroelectronics +homepage_url: https://www.st.com/software_license_agreement_liberty_v2 +notes: | + We have mess in here + https://www.st.com/software_license_agreement_liberty_v2 does redirect to different licenses over the years. + + Nov 2011 ... Dec 2012 + https://web.archive.org/web/20121208120907/http://www.st.com/internet/com/LEGAL_RESOURCES/LEGAL_AGREEMENT/LICENSE_AGREEMENT/software_license_agreement_liberty_v2.pdf + It carries this note at the bootom "Software License Agreement (Liberty V2) Nov 16 th , 2011" + + 2013 ... Oct 2013 + It now redirects to a new one, same content + http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_image_v2.pdf + https://web.archive.org/web/20131018182423/http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_image_v2.pdf + + Sep 2014 ... Sep 2015 + Now at a new file name. But same content. + http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_liberty_v2.pdf?sc=software_license_agreement_liberty_v2 + https://web.archive.org/web/20140923015837/http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_liberty_v2.pdf?sc=software_license_agreement_liberty_v2 + https://web.archive.org/web/20150908060438/http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_liberty_v2.pdf?sc=software_license_agreement_liberty_v2 + + 2015 ... Feb 2018 + This is no longer a PDF but a plain text file and a completly different agreement: + http://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/de/fc/f7/32/a0/8b/4f/db/ultimate-liberty-v2.txt/files/ultimate-liberty-v2.txt/jcr:content/translations/en.ultimate-liberty-v2.txt + https://web.archive.org/web/20180207212429/http://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/de/fc/f7/32/a0/8b/4f/db/ultimate-liberty-v2.txt/files/ultimate-liberty-v2.txt/jcr:content/translations/en.ultimate-liberty-v2.txt + + Feb 2018 ... May 2019 + https://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/group0/59/57/63/12/cf/a6/47/65/SLA0044/files/SLA0044.txt/jcr:content/translations/en.SLA0044.txt + This is the one I used for now as a text. It as has this header "SLA0044 Rev5/February 2018" +spdx_license_key: LicenseRef-scancode-st-mcd-2.0 +text_urls: + - https://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/group0/59/57/63/12/cf/a6/47/65/SLA0044/files/SLA0044.txt/jcr:content/translations/en.SLA0044.txt + - https://www.st.com/software_license_agreement_liberty_v2 +other_urls: + - https://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/group0/87/0c/3d/ad/0a/ba/44/26/DM00216740/files/DM00216740.pdf/jcr:content/translations/en.DM00216740.pdf +ignorable_urls: + - http://www.opensource.org/ +--- + SLA0044 Rev5/February 2018 BY INSTALLING COPYING, DOWNLOADING, ACCESSING OR OTHERWISE USING THIS SOFTWARE @@ -73,6 +117,4 @@ OF SUCH DAMAGE. 11. EXCEPT AS EXPRESSLY PERMITTED HEREUNDER, NO LICENSE OR OTHER RIGHTS, WHETHER EXPRESS OR IMPLIED, ARE GRANTED UNDER ANY PATENT OR OTHER INTELLECTUAL PROPERTY -RIGHTS OF STMICROELECTRONICS OR ANY THIRD PARTY. - - +RIGHTS OF STMICROELECTRONICS OR ANY THIRD PARTY. \ No newline at end of file diff --git a/docs/st-mcd-2.0.html b/docs/st-mcd-2.0.html index 3b76f6bf0b..2cf06be105 100644 --- a/docs/st-mcd-2.0.html +++ b/docs/st-mcd-2.0.html @@ -250,10 +250,7 @@ 11. EXCEPT AS EXPRESSLY PERMITTED HEREUNDER, NO LICENSE OR OTHER RIGHTS, WHETHER EXPRESS OR IMPLIED, ARE GRANTED UNDER ANY PATENT OR OTHER INTELLECTUAL PROPERTY -RIGHTS OF STMICROELECTRONICS OR ANY THIRD PARTY. - - - +RIGHTS OF STMICROELECTRONICS OR ANY THIRD PARTY.
@@ -265,7 +262,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/st-mcd-2.0.json b/docs/st-mcd-2.0.json index ef922531d2..84922879ef 100644 --- a/docs/st-mcd-2.0.json +++ b/docs/st-mcd-2.0.json @@ -1 +1,20 @@ -{"key": "st-mcd-2.0", "short_name": "STMicro Liberty License v2", "name": "STMicro Liberty License v2", "category": "Proprietary Free", "owner": "STMicroelectronics", "homepage_url": "https://www.st.com/software_license_agreement_liberty_v2", "notes": "We have mess in here\nhttps://www.st.com/software_license_agreement_liberty_v2 does redirect to different licenses over the years.\n\nNov 2011 ... Dec 2012\n https://web.archive.org/web/20121208120907/http://www.st.com/internet/com/LEGAL_RESOURCES/LEGAL_AGREEMENT/LICENSE_AGREEMENT/software_license_agreement_liberty_v2.pdf\n It carries this note at the bootom \"Software License Agreement (Liberty V2) Nov 16 th , 2011\"\n\n2013 ... Oct 2013\n It now redirects to a new one, same content\n http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_image_v2.pdf\n https://web.archive.org/web/20131018182423/http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_image_v2.pdf\n\nSep 2014 ... Sep 2015\n Now at a new file name. But same content.\n http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_liberty_v2.pdf?sc=software_license_agreement_liberty_v2\n https://web.archive.org/web/20140923015837/http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_liberty_v2.pdf?sc=software_license_agreement_liberty_v2\n https://web.archive.org/web/20150908060438/http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_liberty_v2.pdf?sc=software_license_agreement_liberty_v2\n\n2015 ... Feb 2018\n This is no longer a PDF but a plain text file and a completly different agreement:\n http://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/de/fc/f7/32/a0/8b/4f/db/ultimate-liberty-v2.txt/files/ultimate-liberty-v2.txt/jcr:content/translations/en.ultimate-liberty-v2.txt\n https://web.archive.org/web/20180207212429/http://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/de/fc/f7/32/a0/8b/4f/db/ultimate-liberty-v2.txt/files/ultimate-liberty-v2.txt/jcr:content/translations/en.ultimate-liberty-v2.txt\n\nFeb 2018 ... May 2019\n https://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/group0/59/57/63/12/cf/a6/47/65/SLA0044/files/SLA0044.txt/jcr:content/translations/en.SLA0044.txt\n This is the one I used for now as a text. It as has this header \"SLA0044 Rev5/February 2018\"\n", "spdx_license_key": "LicenseRef-scancode-st-mcd-2.0", "text_urls": ["https://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/group0/59/57/63/12/cf/a6/47/65/SLA0044/files/SLA0044.txt/jcr:content/translations/en.SLA0044.txt", "https://www.st.com/software_license_agreement_liberty_v2"], "other_urls": ["https://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/group0/87/0c/3d/ad/0a/ba/44/26/DM00216740/files/DM00216740.pdf/jcr:content/translations/en.DM00216740.pdf"], "ignorable_urls": ["http://www.opensource.org/"]} \ No newline at end of file +{ + "key": "st-mcd-2.0", + "short_name": "STMicro Liberty License v2", + "name": "STMicro Liberty License v2", + "category": "Proprietary Free", + "owner": "STMicroelectronics", + "homepage_url": "https://www.st.com/software_license_agreement_liberty_v2", + "notes": "We have mess in here\nhttps://www.st.com/software_license_agreement_liberty_v2 does redirect to different licenses over the years.\n\nNov 2011 ... Dec 2012\n https://web.archive.org/web/20121208120907/http://www.st.com/internet/com/LEGAL_RESOURCES/LEGAL_AGREEMENT/LICENSE_AGREEMENT/software_license_agreement_liberty_v2.pdf\n It carries this note at the bootom \"Software License Agreement (Liberty V2) Nov 16 th , 2011\"\n\n2013 ... Oct 2013\n It now redirects to a new one, same content\n http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_image_v2.pdf\n https://web.archive.org/web/20131018182423/http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_image_v2.pdf\n\nSep 2014 ... Sep 2015\n Now at a new file name. But same content.\n http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_liberty_v2.pdf?sc=software_license_agreement_liberty_v2\n https://web.archive.org/web/20140923015837/http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_liberty_v2.pdf?sc=software_license_agreement_liberty_v2\n https://web.archive.org/web/20150908060438/http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_liberty_v2.pdf?sc=software_license_agreement_liberty_v2\n\n2015 ... Feb 2018\n This is no longer a PDF but a plain text file and a completly different agreement:\n http://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/de/fc/f7/32/a0/8b/4f/db/ultimate-liberty-v2.txt/files/ultimate-liberty-v2.txt/jcr:content/translations/en.ultimate-liberty-v2.txt\n https://web.archive.org/web/20180207212429/http://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/de/fc/f7/32/a0/8b/4f/db/ultimate-liberty-v2.txt/files/ultimate-liberty-v2.txt/jcr:content/translations/en.ultimate-liberty-v2.txt\n\nFeb 2018 ... May 2019\n https://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/group0/59/57/63/12/cf/a6/47/65/SLA0044/files/SLA0044.txt/jcr:content/translations/en.SLA0044.txt\n This is the one I used for now as a text. It as has this header \"SLA0044 Rev5/February 2018\"\n", + "spdx_license_key": "LicenseRef-scancode-st-mcd-2.0", + "text_urls": [ + "https://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/group0/59/57/63/12/cf/a6/47/65/SLA0044/files/SLA0044.txt/jcr:content/translations/en.SLA0044.txt", + "https://www.st.com/software_license_agreement_liberty_v2" + ], + "other_urls": [ + "https://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/group0/87/0c/3d/ad/0a/ba/44/26/DM00216740/files/DM00216740.pdf/jcr:content/translations/en.DM00216740.pdf" + ], + "ignorable_urls": [ + "http://www.opensource.org/" + ] +} \ No newline at end of file diff --git a/docs/stable-diffusion-2022-08-22.LICENSE b/docs/stable-diffusion-2022-08-22.LICENSE new file mode 100644 index 0000000000..5f81a78bbf --- /dev/null +++ b/docs/stable-diffusion-2022-08-22.LICENSE @@ -0,0 +1,93 @@ +--- +key: stable-diffusion-2022-08-22 +short_name: Stable Diffusion License 2022-08-22 +name: Stable Diffusion License 2022-08-22 +category: Proprietary Free +owner: CompVis +homepage_url: https://github.com/CompVis/stable-diffusion/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-stable-diffusion-2022-08-22 +ignorable_copyrights: + - Copyright (c) 2022 Robin Rombach and Patrick Esser and contributors +ignorable_holders: + - Robin Rombach and Patrick Esser and contributors +--- + +Copyright (c) 2022 Robin Rombach and Patrick Esser and contributors + +CreativeML Open RAIL-M +dated August 22, 2022 + +Section I: PREAMBLE + +Multimodal generative models are being widely adopted and used, and have the potential to transform the way artists, among other individuals, conceive and benefit from AI or ML technologies as a tool for content creation. + +Notwithstanding the current and potential benefits that these artifacts can bring to society at large, there are also concerns about potential misuses of them, either due to their technical limitations or ethical considerations. + +In short, this license strives for both the open and responsible downstream use of the accompanying model. When it comes to the open character, we took inspiration from open source permissive licenses regarding the grant of IP rights. Referring to the downstream responsible use, we added use-based restrictions not permitting the use of the Model in very specific scenarios, in order for the licensor to be able to enforce the license in case potential misuses of the Model may occur. At the same time, we strive to promote open and responsible research on generative models for art and content generation. + +Even though downstream derivative versions of the model could be released under different licensing terms, the latter will always have to include - at minimum - the same use-based restrictions as the ones in the original license (this license). We believe in the intersection between open and responsible AI development; thus, this License aims to strike a balance between both in order to enable responsible open-science in the field of AI. + +This License governs the use of the model (and its derivatives) and is informed by the model card associated with the model. + +NOW THEREFORE, You and Licensor agree as follows: + +1. Definitions + +- "License" means the terms and conditions for use, reproduction, and Distribution as defined in this document. +- "Data" means a collection of information and/or content extracted from the dataset used with the Model, including to train, pretrain, or otherwise evaluate the Model. The Data is not licensed under this License. +- "Output" means the results of operating a Model as embodied in informational content resulting therefrom. +- "Model" means any accompanying machine-learning based assemblies (including checkpoints), consisting of learnt weights, parameters (including optimizer states), corresponding to the model architecture as embodied in the Complementary Material, that have been trained or tuned, in whole or in part on the Data, using the Complementary Material. +- "Derivatives of the Model" means all modifications to the Model, works based on the Model, or any other model which is created or initialized by transfer of patterns of the weights, parameters, activations or output of the Model, to the other model, in order to cause the other model to perform similarly to the Model, including - but not limited to - distillation methods entailing the use of intermediate data representations or methods based on the generation of synthetic data by the Model for training the other model. +- "Complementary Material" means the accompanying source code and scripts used to define, run, load, benchmark or evaluate the Model, and used to prepare data for training or evaluation, if any. This includes any accompanying documentation, tutorials, examples, etc, if any. +- "Distribution" means any transmission, reproduction, publication or other sharing of the Model or Derivatives of the Model to a third party, including providing the Model as a hosted service made available by electronic or other remote means - e.g. API-based or web access. +- "Licensor" means the copyright owner or entity authorized by the copyright owner that is granting the License, including the persons or entities that may have rights in the Model and/or distributing the Model. +- "You" (or "Your") means an individual or Legal Entity exercising permissions granted by this License and/or making use of the Model for whichever purpose and in any field of use, including usage of the Model in an end-use application - e.g. chatbot, translator, image generator. +- "Third Parties" means individuals or legal entities that are not under common control with Licensor or You. +- "Contribution" means any work of authorship, including the original version of the Model and any modifications or additions to that Model or Derivatives of the Model thereof, that is intentionally submitted to Licensor for inclusion in the Model 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 Model, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." +- "Contributor" means Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Model. + +Section II: INTELLECTUAL PROPERTY RIGHTS + +Both copyright and patent grants apply to the Model, Derivatives of the Model and Complementary Material. The Model and Derivatives of the Model are subject to additional terms as described in Section III. + +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, publicly display, publicly perform, sublicense, and distribute the Complementary Material, the Model, and Derivatives of the Model. +3. Grant of Patent License. Subject to the terms and conditions of this License and where and as applicable, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this paragraph) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Model and the Complementary Material, 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 Model 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 Model and/or Complementary Material or a Contribution incorporated within the Model and/or Complementary Material constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for the Model and/or Work shall terminate as of the date such litigation is asserted or filed. + +Section III: CONDITIONS OF USAGE, DISTRIBUTION AND REDISTRIBUTION + +4. Distribution and Redistribution. You may host for Third Party remote access purposes (e.g. software-as-a-service), reproduce and distribute copies of the Model or Derivatives of the Model thereof in any medium, with or without modifications, provided that You meet the following conditions: +Use-based restrictions as referenced in paragraph 5 MUST be included as an enforceable provision by You in any type of legal agreement (e.g. a license) governing the use and/or distribution of the Model or Derivatives of the Model, and You shall give notice to subsequent users You Distribute to, that the Model or Derivatives of the Model are subject to paragraph 5. This provision does not apply to the use of Complementary Material. +You must give any Third Party recipients of the Model or Derivatives of the Model a copy of this License; +You must cause any modified files to carry prominent notices stating that You changed the files; +You must retain all copyright, patent, trademark, and attribution notices excluding those notices that do not pertain to any part of the Model, Derivatives of the Model. +You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions - respecting paragraph 4.a. - for use, reproduction, or Distribution of Your modifications, or for any such Derivatives of the Model as a whole, provided Your use, reproduction, and Distribution of the Model otherwise complies with the conditions stated in this License. +5. Use-based restrictions. The restrictions set forth in Attachment A are considered Use-based restrictions. Therefore You cannot use the Model and the Derivatives of the Model for the specified restricted uses. You may use the Model subject to this License, including only for lawful purposes and in accordance with the License. Use may include creating any content with, finetuning, updating, running, training, evaluating and/or reparametrizing the Model. You shall require all of Your users who use the Model or a Derivative of the Model to comply with the terms of this paragraph (paragraph 5). +6. The Output You Generate. Except as set forth herein, Licensor claims no rights in the Output You generate using the Model. You are accountable for the Output you generate and its subsequent uses. No use of the output can contravene any provision as stated in the License. + +Section IV: OTHER PROVISIONS + +7. Updates and Runtime Restrictions. To the maximum extent permitted by law, Licensor reserves the right to restrict (remotely or otherwise) usage of the Model in violation of this License, update the Model through electronic means, or modify the Output of the Model based on updates. You shall undertake reasonable efforts to use the latest version of the Model. +8. Trademarks and related. Nothing in this License permits You to make use of Licensors’ trademarks, trade names, logos or to otherwise suggest endorsement or misrepresent the relationship between the parties; and any rights not expressly granted herein are reserved by the Licensors. +9. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Model and the Complementary Material (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 Model, Derivatives of the Model, and the Complementary Material and assume any risks associated with Your exercise of permissions under this License. +10. 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 Model and the Complementary Material (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. +11. Accepting Warranty or Additional Liability. While redistributing the Model, Derivatives of the Model and the Complementary Material 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. +12. If any provision of this License is held to be invalid, illegal or unenforceable, the remaining provisions shall be unaffected thereby and remain valid as if such provision had not been set forth herein. + +END OF TERMS AND CONDITIONS + +Attachment A + +Use Restrictions + +You agree not to use the Model or Derivatives of the Model: +- In any way that violates any applicable national, federal, state, local or international law or regulation; +- For the purpose of exploiting, harming or attempting to exploit or harm minors in any way; +- To generate or disseminate verifiably false information and/or content with the purpose of harming others; +- To generate or disseminate personal identifiable information that can be used to harm an individual; +- To defame, disparage or otherwise harass others; +- For fully automated decision making that adversely impacts an individual’s legal rights or otherwise creates or modifies a binding, enforceable obligation; +- For any use intended to or which has the effect of discriminating against or harming individuals or groups based on online or offline social behavior or known or predicted personal or personality characteristics; +- To exploit any of the vulnerabilities of a specific group of persons based on their age, social, physical or mental characteristics, in order to materially distort the behavior of a person pertaining to that group in a manner that causes or is likely to cause that person or another person physical or psychological harm; +- For any use intended to or which has the effect of discriminating against individuals or groups based on legally protected characteristics or categories; +- To provide medical advice and medical results interpretation; +- To generate or disseminate information for the purpose to be used for administration of justice, law enforcement, immigration or asylum processes, such as predicting an individual will commit fraud/crime commitment (e.g. by text profiling, drawing causal relationships between assertions made in documents, indiscriminate and arbitrarily-targeted use). \ No newline at end of file diff --git a/docs/stable-diffusion-2022-08-22.html b/docs/stable-diffusion-2022-08-22.html new file mode 100644 index 0000000000..2e62364528 --- /dev/null +++ b/docs/stable-diffusion-2022-08-22.html @@ -0,0 +1,246 @@ + + + + + + LicenseDB: stable-diffusion-2022-08-22 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + stable-diffusion-2022-08-22 + +
+ +
short_name
+
+ + Stable Diffusion License 2022-08-22 + +
+ +
name
+
+ + Stable Diffusion License 2022-08-22 + +
+ +
category
+
+ + Proprietary Free + +
+ +
owner
+
+ + CompVis + +
+ +
homepage_url
+
+ + https://github.com/CompVis/stable-diffusion/blob/main/LICENSE + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-stable-diffusion-2022-08-22 + +
+ +
ignorable_copyrights
+
+ +
    +
  • Copyright (c) 2022 Robin Rombach and Patrick Esser and contributors
  • +
+ +
+ +
ignorable_holders
+
+ +
    +
  • Robin Rombach and Patrick Esser and contributors
  • +
+ +
+ +
+
license_text
+
Copyright (c) 2022 Robin Rombach and Patrick Esser and contributors
+
+CreativeML Open RAIL-M
+dated August 22, 2022
+
+Section I: PREAMBLE
+
+Multimodal generative models are being widely adopted and used, and have the potential to transform the way artists, among other individuals, conceive and benefit from AI or ML technologies as a tool for content creation.
+
+Notwithstanding the current and potential benefits that these artifacts can bring to society at large, there are also concerns about potential misuses of them, either due to their technical limitations or ethical considerations.
+
+In short, this license strives for both the open and responsible downstream use of the accompanying model. When it comes to the open character, we took inspiration from open source permissive licenses regarding the grant of IP rights. Referring to the downstream responsible use, we added use-based restrictions not permitting the use of the Model in very specific scenarios, in order for the licensor to be able to enforce the license in case potential misuses of the Model may occur. At the same time, we strive to promote open and responsible research on generative models for art and content generation.
+
+Even though downstream derivative versions of the model could be released under different licensing terms, the latter will always have to include - at minimum - the same use-based restrictions as the ones in the original license (this license). We believe in the intersection between open and responsible AI development; thus, this License aims to strike a balance between both in order to enable responsible open-science in the field of AI.
+
+This License governs the use of the model (and its derivatives) and is informed by the model card associated with the model.
+
+NOW THEREFORE, You and Licensor agree as follows:
+
+1. Definitions
+
+- "License" means the terms and conditions for use, reproduction, and Distribution as defined in this document.
+- "Data" means a collection of information and/or content extracted from the dataset used with the Model, including to train, pretrain, or otherwise evaluate the Model. The Data is not licensed under this License.
+- "Output" means the results of operating a Model as embodied in informational content resulting therefrom.
+- "Model" means any accompanying machine-learning based assemblies (including checkpoints), consisting of learnt weights, parameters (including optimizer states), corresponding to the model architecture as embodied in the Complementary Material, that have been trained or tuned, in whole or in part on the Data, using the Complementary Material.
+- "Derivatives of the Model" means all modifications to the Model, works based on the Model, or any other model which is created or initialized by transfer of patterns of the weights, parameters, activations or output of the Model, to the other model, in order to cause the other model to perform similarly to the Model, including - but not limited to - distillation methods entailing the use of intermediate data representations or methods based on the generation of synthetic data by the Model for training the other model.
+- "Complementary Material" means the accompanying source code and scripts used to define, run, load, benchmark or evaluate the Model, and used to prepare data for training or evaluation, if any. This includes any accompanying documentation, tutorials, examples, etc, if any.
+- "Distribution" means any transmission, reproduction, publication or other sharing of the Model or Derivatives of the Model to a third party, including providing the Model as a hosted service made available by electronic or other remote means - e.g. API-based or web access.
+- "Licensor" means the copyright owner or entity authorized by the copyright owner that is granting the License, including the persons or entities that may have rights in the Model and/or distributing the Model.
+- "You" (or "Your") means an individual or Legal Entity exercising permissions granted by this License and/or making use of the Model for whichever purpose and in any field of use, including usage of the Model in an end-use application - e.g. chatbot, translator, image generator.
+- "Third Parties" means individuals or legal entities that are not under common control with Licensor or You.
+- "Contribution" means any work of authorship, including the original version of the Model and any modifications or additions to that Model or Derivatives of the Model thereof, that is intentionally submitted to Licensor for inclusion in the Model 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 Model, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
+- "Contributor" means Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Model.
+
+Section II: INTELLECTUAL PROPERTY RIGHTS
+
+Both copyright and patent grants apply to the Model, Derivatives of the Model and Complementary Material. The Model and Derivatives of the Model are subject to additional terms as described in Section III.
+
+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, publicly display, publicly perform, sublicense, and distribute the Complementary Material, the Model, and Derivatives of the Model.
+3. Grant of Patent License. Subject to the terms and conditions of this License and where and as applicable, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this paragraph) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Model and the Complementary Material, 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 Model 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 Model and/or Complementary Material or a Contribution incorporated within the Model and/or Complementary Material constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for the Model and/or Work shall terminate as of the date such litigation is asserted or filed.
+
+Section III: CONDITIONS OF USAGE, DISTRIBUTION AND REDISTRIBUTION
+
+4. Distribution and Redistribution. You may host for Third Party remote access purposes (e.g. software-as-a-service), reproduce and distribute copies of the Model or Derivatives of the Model thereof in any medium, with or without modifications, provided that You meet the following conditions:
+Use-based restrictions as referenced in paragraph 5 MUST be included as an enforceable provision by You in any type of legal agreement (e.g. a license) governing the use and/or distribution of the Model or Derivatives of the Model, and You shall give notice to subsequent users You Distribute to, that the Model or Derivatives of the Model are subject to paragraph 5. This provision does not apply to the use of Complementary Material.
+You must give any Third Party recipients of the Model or Derivatives of the Model a copy of this License;
+You must cause any modified files to carry prominent notices stating that You changed the files;
+You must retain all copyright, patent, trademark, and attribution notices excluding those notices that do not pertain to any part of the Model, Derivatives of the Model.
+You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions - respecting paragraph 4.a. - for use, reproduction, or Distribution of Your modifications, or for any such Derivatives of the Model as a whole, provided Your use, reproduction, and Distribution of the Model otherwise complies with the conditions stated in this License.
+5. Use-based restrictions. The restrictions set forth in Attachment A are considered Use-based restrictions. Therefore You cannot use the Model and the Derivatives of the Model for the specified restricted uses. You may use the Model subject to this License, including only for lawful purposes and in accordance with the License. Use may include creating any content with, finetuning, updating, running, training, evaluating and/or reparametrizing the Model. You shall require all of Your users who use the Model or a Derivative of the Model to comply with the terms of this paragraph (paragraph 5).
+6. The Output You Generate. Except as set forth herein, Licensor claims no rights in the Output You generate using the Model. You are accountable for the Output you generate and its subsequent uses. No use of the output can contravene any provision as stated in the License.
+
+Section IV: OTHER PROVISIONS
+
+7. Updates and Runtime Restrictions. To the maximum extent permitted by law, Licensor reserves the right to restrict (remotely or otherwise) usage of the Model in violation of this License, update the Model through electronic means, or modify the Output of the Model based on updates. You shall undertake reasonable efforts to use the latest version of the Model.
+8. Trademarks and related. Nothing in this License permits You to make use of Licensors’ trademarks, trade names, logos or to otherwise suggest endorsement or misrepresent the relationship between the parties; and any rights not expressly granted herein are reserved by the Licensors.
+9. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Model and the Complementary Material (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 Model, Derivatives of the Model, and the Complementary Material and assume any risks associated with Your exercise of permissions under this License.
+10. 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 Model and the Complementary Material (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.
+11. Accepting Warranty or Additional Liability. While redistributing the Model, Derivatives of the Model and the Complementary Material 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.
+12. If any provision of this License is held to be invalid, illegal or unenforceable, the remaining provisions shall be unaffected thereby and remain valid as if such provision had not been set forth herein.
+
+END OF TERMS AND CONDITIONS
+
+Attachment A
+
+Use Restrictions
+
+You agree not to use the Model or Derivatives of the Model:
+- In any way that violates any applicable national, federal, state, local or international law or regulation;
+- For the purpose of exploiting, harming or attempting to exploit or harm minors in any way;
+- To generate or disseminate verifiably false information and/or content with the purpose of harming others;
+- To generate or disseminate personal identifiable information that can be used to harm an individual;
+- To defame, disparage or otherwise harass others;
+- For fully automated decision making that adversely impacts an individual’s legal rights or otherwise creates or modifies a binding, enforceable obligation;
+- For any use intended to or which has the effect of discriminating against or harming individuals or groups based on online or offline social behavior or known or predicted personal or personality characteristics;
+- To exploit any of the vulnerabilities of a specific group of persons based on their age, social, physical or mental characteristics, in order to materially distort the behavior of a person pertaining to that group in a manner that causes or is likely to cause that person or another person physical or psychological harm;
+- For any use intended to or which has the effect of discriminating against individuals or groups based on legally protected characteristics or categories;
+- To provide medical advice and medical results interpretation;
+- To generate or disseminate information for the purpose to be used for administration of justice, law enforcement, immigration or asylum processes, such as predicting an individual will commit fraud/crime commitment (e.g. by text profiling, drawing causal relationships between assertions made in documents, indiscriminate and arbitrarily-targeted use).
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/stable-diffusion-2022-08-22.json b/docs/stable-diffusion-2022-08-22.json new file mode 100644 index 0000000000..5b0faa5ec8 --- /dev/null +++ b/docs/stable-diffusion-2022-08-22.json @@ -0,0 +1,15 @@ +{ + "key": "stable-diffusion-2022-08-22", + "short_name": "Stable Diffusion License 2022-08-22", + "name": "Stable Diffusion License 2022-08-22", + "category": "Proprietary Free", + "owner": "CompVis", + "homepage_url": "https://github.com/CompVis/stable-diffusion/blob/main/LICENSE", + "spdx_license_key": "LicenseRef-scancode-stable-diffusion-2022-08-22", + "ignorable_copyrights": [ + "Copyright (c) 2022 Robin Rombach and Patrick Esser and contributors" + ], + "ignorable_holders": [ + "Robin Rombach and Patrick Esser and contributors" + ] +} \ No newline at end of file diff --git a/docs/stable-diffusion-2022-08-22.yml b/docs/stable-diffusion-2022-08-22.yml new file mode 100644 index 0000000000..418a709368 --- /dev/null +++ b/docs/stable-diffusion-2022-08-22.yml @@ -0,0 +1,11 @@ +key: stable-diffusion-2022-08-22 +short_name: Stable Diffusion License 2022-08-22 +name: Stable Diffusion License 2022-08-22 +category: Proprietary Free +owner: CompVis +homepage_url: https://github.com/CompVis/stable-diffusion/blob/main/LICENSE +spdx_license_key: LicenseRef-scancode-stable-diffusion-2022-08-22 +ignorable_copyrights: + - Copyright (c) 2022 Robin Rombach and Patrick Esser and contributors +ignorable_holders: + - Robin Rombach and Patrick Esser and contributors diff --git a/docs/standard-ml-nj.LICENSE b/docs/standard-ml-nj.LICENSE index 7b42e055b5..c22f55d83e 100644 --- a/docs/standard-ml-nj.LICENSE +++ b/docs/standard-ml-nj.LICENSE @@ -1,3 +1,32 @@ +--- +key: standard-ml-nj +short_name: Standard ML of New Jersey +name: Standard ML of New Jersey +category: Permissive +owner: Alcatel-Lucent +homepage_url: http://www.smlnj.org//license.html +notes: | + per SPDX.org, SPDX ended up with this license on the license list twice + once as of v1.17 with the short identifier SMLNJ and then added (again) as + of v1.20 with the short identifier StandardML-NJ. The former list entry has + been deprecated. Here, this license is not verbatim the SPDX SMLMJ, but + instead the more generic variant as used in the Java CUP parser generator + that has no specific references to Lucent and Bell Labs and is therefore a + better choice for reuse. +spdx_license_key: SMLNJ +other_spdx_license_keys: + - StandardML-NJ +text_urls: + - http://directory.fsf.org/wiki/License:StandardMLofNJ + - http://www.smlnj.org//license.html + - https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#Standard_ML_of_New_Jersey_Variant +faq_url: http://www.gnu.org/licenses/license-list.html#StandardMLofNJ +other_urls: + - http://www.gnu.org/licenses/license-list.html#StandardMLofNJ + - http://www2.cs.tum.edu/projects/cup/ + - https://www.smlnj.org/license.html +--- + 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 diff --git a/docs/standard-ml-nj.html b/docs/standard-ml-nj.html index 118f9e44ad..d9b5d46232 100644 --- a/docs/standard-ml-nj.html +++ b/docs/standard-ml-nj.html @@ -190,7 +190,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/standard-ml-nj.json b/docs/standard-ml-nj.json index 12617d39ab..7fe4ea8170 100644 --- a/docs/standard-ml-nj.json +++ b/docs/standard-ml-nj.json @@ -1 +1,24 @@ -{"key": "standard-ml-nj", "short_name": "Standard ML of New Jersey", "name": "Standard ML of New Jersey", "category": "Permissive", "owner": "Alcatel-Lucent", "homepage_url": "http://www.smlnj.org//license.html", "notes": "per SPDX.org, SPDX ended up with this license on the license list twice\nonce as of v1.17 with the short identifier SMLNJ and then added (again) as\nof v1.20 with the short identifier StandardML-NJ. The former list entry has\nbeen deprecated. Here, this license is not verbatim the SPDX SMLMJ, but\ninstead the more generic variant as used in the Java CUP parser generator\nthat has no specific references to Lucent and Bell Labs and is therefore a\nbetter choice for reuse.\n", "spdx_license_key": "SMLNJ", "other_spdx_license_keys": ["StandardML-NJ"], "text_urls": ["http://directory.fsf.org/wiki/License:StandardMLofNJ", "http://www.smlnj.org//license.html", "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#Standard_ML_of_New_Jersey_Variant"], "faq_url": "http://www.gnu.org/licenses/license-list.html#StandardMLofNJ", "other_urls": ["http://www.gnu.org/licenses/license-list.html#StandardMLofNJ", "http://www2.cs.tum.edu/projects/cup/", "https://www.smlnj.org/license.html"]} \ No newline at end of file +{ + "key": "standard-ml-nj", + "short_name": "Standard ML of New Jersey", + "name": "Standard ML of New Jersey", + "category": "Permissive", + "owner": "Alcatel-Lucent", + "homepage_url": "http://www.smlnj.org//license.html", + "notes": "per SPDX.org, SPDX ended up with this license on the license list twice\nonce as of v1.17 with the short identifier SMLNJ and then added (again) as\nof v1.20 with the short identifier StandardML-NJ. The former list entry has\nbeen deprecated. Here, this license is not verbatim the SPDX SMLMJ, but\ninstead the more generic variant as used in the Java CUP parser generator\nthat has no specific references to Lucent and Bell Labs and is therefore a\nbetter choice for reuse.\n", + "spdx_license_key": "SMLNJ", + "other_spdx_license_keys": [ + "StandardML-NJ" + ], + "text_urls": [ + "http://directory.fsf.org/wiki/License:StandardMLofNJ", + "http://www.smlnj.org//license.html", + "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#Standard_ML_of_New_Jersey_Variant" + ], + "faq_url": "http://www.gnu.org/licenses/license-list.html#StandardMLofNJ", + "other_urls": [ + "http://www.gnu.org/licenses/license-list.html#StandardMLofNJ", + "http://www2.cs.tum.edu/projects/cup/", + "https://www.smlnj.org/license.html" + ] +} \ No newline at end of file diff --git a/docs/stanford-mrouted.LICENSE b/docs/stanford-mrouted.LICENSE index e2d3b89459..8bc0cd57ff 100644 --- a/docs/stanford-mrouted.LICENSE +++ b/docs/stanford-mrouted.LICENSE @@ -1,3 +1,18 @@ +--- +key: stanford-mrouted +short_name: Stanford mrouted License +name: Stanford mrouted License +category: Copyleft Limited +owner: Stanford University +homepage_url: http://www.mail-archive.com/debian-legal@lists.debian.org/msg04177.html +spdx_license_key: LicenseRef-scancode-stanford-mrouted +faq_url: http://www.mail-archive.com/debian-legal@lists.debian.org/msg04177.html +ignorable_copyrights: + - COPYRIGHT 1989 by The Board of Trustees of Leland Stanford Junior University +ignorable_holders: + - The Board of Trustees of Leland Stanford Junior University +--- + The mrouted program is covered by the following license. Use of the mrouted program represents acceptance of these terms and conditions. diff --git a/docs/stanford-mrouted.html b/docs/stanford-mrouted.html index 833ccbae14..cd13009679 100644 --- a/docs/stanford-mrouted.html +++ b/docs/stanford-mrouted.html @@ -198,7 +198,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/stanford-mrouted.json b/docs/stanford-mrouted.json index a49a4c4de0..f8b2393f51 100644 --- a/docs/stanford-mrouted.json +++ b/docs/stanford-mrouted.json @@ -1 +1,16 @@ -{"key": "stanford-mrouted", "short_name": "Stanford mrouted License", "name": "Stanford mrouted License", "category": "Copyleft Limited", "owner": "Stanford University", "homepage_url": "http://www.mail-archive.com/debian-legal@lists.debian.org/msg04177.html", "spdx_license_key": "LicenseRef-scancode-stanford-mrouted", "faq_url": "http://www.mail-archive.com/debian-legal@lists.debian.org/msg04177.html", "ignorable_copyrights": ["COPYRIGHT 1989 by The Board of Trustees of Leland Stanford Junior University"], "ignorable_holders": ["The Board of Trustees of Leland Stanford Junior University"]} \ No newline at end of file +{ + "key": "stanford-mrouted", + "short_name": "Stanford mrouted License", + "name": "Stanford mrouted License", + "category": "Copyleft Limited", + "owner": "Stanford University", + "homepage_url": "http://www.mail-archive.com/debian-legal@lists.debian.org/msg04177.html", + "spdx_license_key": "LicenseRef-scancode-stanford-mrouted", + "faq_url": "http://www.mail-archive.com/debian-legal@lists.debian.org/msg04177.html", + "ignorable_copyrights": [ + "COPYRIGHT 1989 by The Board of Trustees of Leland Stanford Junior University" + ], + "ignorable_holders": [ + "The Board of Trustees of Leland Stanford Junior University" + ] +} \ No newline at end of file diff --git a/docs/stanford-pvrg.LICENSE b/docs/stanford-pvrg.LICENSE index 0b7da3528c..5f6cc0e1f0 100644 --- a/docs/stanford-pvrg.LICENSE +++ b/docs/stanford-pvrg.LICENSE @@ -1,3 +1,13 @@ +--- +key: stanford-pvrg +short_name: Stanford PVRG License +name: Stanford PVRG License +category: Permissive +owner: Stanford University +homepage_url: http://marathon.csee.usf.edu/Mammography/JpegInfo.html +spdx_license_key: LicenseRef-scancode-stanford-pvrg +--- + PUBLIC DOMAIN LICENSE: Stanford University Portable Video Research Group. If you use this software, you agree to the following: diff --git a/docs/stanford-pvrg.html b/docs/stanford-pvrg.html index 800776e5db..b9d4ce22e9 100644 --- a/docs/stanford-pvrg.html +++ b/docs/stanford-pvrg.html @@ -138,7 +138,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/stanford-pvrg.json b/docs/stanford-pvrg.json index dbe9d71eac..775e27c34b 100644 --- a/docs/stanford-pvrg.json +++ b/docs/stanford-pvrg.json @@ -1 +1,9 @@ -{"key": "stanford-pvrg", "short_name": "Stanford PVRG License", "name": "Stanford PVRG License", "category": "Permissive", "owner": "Stanford University", "homepage_url": "http://marathon.csee.usf.edu/Mammography/JpegInfo.html", "spdx_license_key": "LicenseRef-scancode-stanford-pvrg"} \ No newline at end of file +{ + "key": "stanford-pvrg", + "short_name": "Stanford PVRG License", + "name": "Stanford PVRG License", + "category": "Permissive", + "owner": "Stanford University", + "homepage_url": "http://marathon.csee.usf.edu/Mammography/JpegInfo.html", + "spdx_license_key": "LicenseRef-scancode-stanford-pvrg" +} \ No newline at end of file diff --git a/docs/statewizard.LICENSE b/docs/statewizard.LICENSE index d5ea2ac0b5..6db6a712bd 100644 --- a/docs/statewizard.LICENSE +++ b/docs/statewizard.LICENSE @@ -1,3 +1,25 @@ +--- +key: statewizard +short_name: StateWizard License +name: StateWizard License Agreement +category: Copyleft Limited +owner: Unspecified +homepage_url: http://web.archive.org/web/20090319003049/http://www.intelliwizard.com/license.htm +notes: | + This license is a tad complex making references to LGPL, commercial and + something that looks like a BSD license. Later version of the same home + page has references to the GPL instead of the LGPL. The original site is no + longer onlilne. +spdx_license_key: LicenseRef-scancode-statewizard +ignorable_authors: + - the IntelliWizard Project + - the Intelliwizard Project +ignorable_urls: + - http://www.intelliwizard.com/ +ignorable_emails: + - info@intelliwizard.com +--- + Redistribution and use of the StateWizard Engine in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -35,4 +57,4 @@ 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 USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/statewizard.html b/docs/statewizard.html index fd2f92de23..8fdd5047de 100644 --- a/docs/statewizard.html +++ b/docs/statewizard.html @@ -190,8 +190,7 @@ 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 USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -203,7 +202,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/statewizard.json b/docs/statewizard.json index ef72c73168..e88a0b642d 100644 --- a/docs/statewizard.json +++ b/docs/statewizard.json @@ -1 +1,20 @@ -{"key": "statewizard", "short_name": "StateWizard License", "name": "StateWizard License Agreement", "category": "Copyleft Limited", "owner": "Unspecified", "homepage_url": "http://web.archive.org/web/20090319003049/http://www.intelliwizard.com/license.htm", "notes": "This license is a tad complex making references to LGPL, commercial and\nsomething that looks like a BSD license. Later version of the same home\npage has references to the GPL instead of the LGPL. The original site is no\nlonger onlilne.\n", "spdx_license_key": "LicenseRef-scancode-statewizard", "ignorable_authors": ["the IntelliWizard Project", "the Intelliwizard Project"], "ignorable_urls": ["http://www.intelliwizard.com/"], "ignorable_emails": ["info@intelliwizard.com"]} \ No newline at end of file +{ + "key": "statewizard", + "short_name": "StateWizard License", + "name": "StateWizard License Agreement", + "category": "Copyleft Limited", + "owner": "Unspecified", + "homepage_url": "http://web.archive.org/web/20090319003049/http://www.intelliwizard.com/license.htm", + "notes": "This license is a tad complex making references to LGPL, commercial and\nsomething that looks like a BSD license. Later version of the same home\npage has references to the GPL instead of the LGPL. The original site is no\nlonger onlilne.\n", + "spdx_license_key": "LicenseRef-scancode-statewizard", + "ignorable_authors": [ + "the IntelliWizard Project", + "the Intelliwizard Project" + ], + "ignorable_urls": [ + "http://www.intelliwizard.com/" + ], + "ignorable_emails": [ + "info@intelliwizard.com" + ] +} \ No newline at end of file diff --git a/docs/static/jquery.mark-8.11.1.min.js.ABOUT b/docs/static/jquery.mark-8.11.1.min.js.ABOUT index c946330d08..674ed846d5 100644 --- a/docs/static/jquery.mark-8.11.1.min.js.ABOUT +++ b/docs/static/jquery.mark-8.11.1.min.js.ABOUT @@ -1,11 +1,16 @@ about_resource: jquery.mark-8.11.1.min.js +name: mark.js +version: 8.11.1 download_url: https://github.com/julmot/mark.js/archive/8.11.1.zip description: JavaScript keyword highlighting. Mark text with with options that fit every application. Also available as jQuery plugin. homepage_url: https://markjs.io/ +package_url: pkg:github/julmot/mark.js@8.11.1 license_expression: mit copyright: Copyright (c) 2014–2019 Julian Kühnel attribute: yes +checksum_md5: 76d6fc6f1108d931aea314962a58b444 +checksum_sha1: c52b2e00f8d7430829e7018dd5078937b16df696 licenses: - key: mit name: MIT License diff --git a/docs/stax.LICENSE b/docs/stax.LICENSE index 59c4169ad8..1056331dcd 100644 --- a/docs/stax.LICENSE +++ b/docs/stax.LICENSE @@ -1,3 +1,19 @@ +--- +key: stax +short_name: Stax License +name: Stax License +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: https://www.jcp.org/aboutJava/communityprocess/licenses/jsr173/JSR173_Spec_License_Streaming_API_XML-1_3-10_22_13.pdf +spdx_license_key: LicenseRef-scancode-stax +ignorable_copyrights: + - (c) 2002, 2003 BEA Systems, Inc. +ignorable_holders: + - BEA Systems, Inc. +ignorable_urls: + - http://www.bea.com/ +--- + Streaming API for XML (JSR-173) Specification Reference Implementation License Agreement READ THE TERMS OF THIS (THE "AGREEMENT") CAREFULLY BEFORE VIEWING OR USING THE SOFTWARE LICENSED HEREUNDER. BY VIEWING OR USING THE SOFTWARE, YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE "ACCEPT" BUTTON AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO ORIGINAL CONTRIBUTOR, DEFINED HEREIN. diff --git a/docs/stax.html b/docs/stax.html index 471f2b2a9c..bd7c28915a 100644 --- a/docs/stax.html +++ b/docs/stax.html @@ -271,7 +271,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/stax.json b/docs/stax.json index 028652f741..4c6b2cb4cc 100644 --- a/docs/stax.json +++ b/docs/stax.json @@ -1 +1,18 @@ -{"key": "stax", "short_name": "Stax License", "name": "Stax License", "category": "Copyleft Limited", "owner": "Oracle Corporation", "homepage_url": "https://www.jcp.org/aboutJava/communityprocess/licenses/jsr173/JSR173_Spec_License_Streaming_API_XML-1_3-10_22_13.pdf", "spdx_license_key": "LicenseRef-scancode-stax", "ignorable_copyrights": ["(c) 2002, 2003 BEA Systems, Inc."], "ignorable_holders": ["BEA Systems, Inc."], "ignorable_urls": ["http://www.bea.com/"]} \ No newline at end of file +{ + "key": "stax", + "short_name": "Stax License", + "name": "Stax License", + "category": "Copyleft Limited", + "owner": "Oracle Corporation", + "homepage_url": "https://www.jcp.org/aboutJava/communityprocess/licenses/jsr173/JSR173_Spec_License_Streaming_API_XML-1_3-10_22_13.pdf", + "spdx_license_key": "LicenseRef-scancode-stax", + "ignorable_copyrights": [ + "(c) 2002, 2003 BEA Systems, Inc." + ], + "ignorable_holders": [ + "BEA Systems, Inc." + ], + "ignorable_urls": [ + "http://www.bea.com/" + ] +} \ No newline at end of file diff --git a/docs/stlport-2000.LICENSE b/docs/stlport-2000.LICENSE index 3e6883374a..351cae991e 100644 --- a/docs/stlport-2000.LICENSE +++ b/docs/stlport-2000.LICENSE @@ -1,3 +1,23 @@ +--- +key: stlport-2000 +short_name: STLport License 2000 +name: STLport License 2000 +category: Permissive +owner: STLport Consulting +spdx_license_key: LicenseRef-scancode-stlport-2000 +minimum_coverage: 90 +ignorable_copyrights: + - Copyright 1994 Hewlett-Packard Company + - Copyright 1996,97 Silicon Graphics Computer Systems, Inc. + - Copyright 1997 Moscow Center for SPARC Technology + - Copyright 1999,2000 Boris Fomitchev +ignorable_holders: + - Boris Fomitchev + - Hewlett-Packard Company + - Moscow Center for SPARC Technology + - Silicon Graphics Computer Systems, Inc. +--- + STLport License Agreement Boris Fomitchev grants Licensee a non-exclusive, non-transferable, royalty- free diff --git a/docs/stlport-2000.html b/docs/stlport-2000.html index 404f966158..18ba86cfeb 100644 --- a/docs/stlport-2000.html +++ b/docs/stlport-2000.html @@ -199,7 +199,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/stlport-2000.json b/docs/stlport-2000.json index 8161f06197..fc33400432 100644 --- a/docs/stlport-2000.json +++ b/docs/stlport-2000.json @@ -1 +1,21 @@ -{"key": "stlport-2000", "short_name": "STLport License 2000", "name": "STLport License 2000", "category": "Permissive", "owner": "STLport Consulting", "spdx_license_key": "LicenseRef-scancode-stlport-2000", "minimum_coverage": 90, "ignorable_copyrights": ["Copyright 1994 Hewlett-Packard Company", "Copyright 1996,97 Silicon Graphics Computer Systems, Inc.", "Copyright 1997 Moscow Center for SPARC Technology", "Copyright 1999,2000 Boris Fomitchev"], "ignorable_holders": ["Boris Fomitchev", "Hewlett-Packard Company", "Moscow Center for SPARC Technology", "Silicon Graphics Computer Systems, Inc."]} \ No newline at end of file +{ + "key": "stlport-2000", + "short_name": "STLport License 2000", + "name": "STLport License 2000", + "category": "Permissive", + "owner": "STLport Consulting", + "spdx_license_key": "LicenseRef-scancode-stlport-2000", + "minimum_coverage": 90, + "ignorable_copyrights": [ + "Copyright 1994 Hewlett-Packard Company", + "Copyright 1996,97 Silicon Graphics Computer Systems, Inc.", + "Copyright 1997 Moscow Center for SPARC Technology", + "Copyright 1999,2000 Boris Fomitchev" + ], + "ignorable_holders": [ + "Boris Fomitchev", + "Hewlett-Packard Company", + "Moscow Center for SPARC Technology", + "Silicon Graphics Computer Systems, Inc." + ] +} \ No newline at end of file diff --git a/docs/stlport-4.5.LICENSE b/docs/stlport-4.5.LICENSE index 3e0f2d3d7c..8607a3c482 100644 --- a/docs/stlport-4.5.LICENSE +++ b/docs/stlport-4.5.LICENSE @@ -1,3 +1,13 @@ +--- +key: stlport-4.5 +short_name: STLport License 4.5 +name: STLport License v4.5 +category: Permissive +owner: STLport Consulting +notes: stlport-4.5 and mozilla-gc are mostly the same +spdx_license_key: LicenseRef-scancode-stlport-4.5 +--- + This material is provided "as is", with absolutely no warranty expressed or implied. Any use is at your own risk. diff --git a/docs/stlport-4.5.html b/docs/stlport-4.5.html index 24a4a907df..0a415bf908 100644 --- a/docs/stlport-4.5.html +++ b/docs/stlport-4.5.html @@ -136,7 +136,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/stlport-4.5.json b/docs/stlport-4.5.json index 52ea0234ca..9fa283611c 100644 --- a/docs/stlport-4.5.json +++ b/docs/stlport-4.5.json @@ -1 +1,9 @@ -{"key": "stlport-4.5", "short_name": "STLport License 4.5", "name": "STLport License v4.5", "category": "Permissive", "owner": "STLport Consulting", "notes": "stlport-4.5 and mozilla-gc are mostly the same", "spdx_license_key": "LicenseRef-scancode-stlport-4.5"} \ No newline at end of file +{ + "key": "stlport-4.5", + "short_name": "STLport License 4.5", + "name": "STLport License v4.5", + "category": "Permissive", + "owner": "STLport Consulting", + "notes": "stlport-4.5 and mozilla-gc are mostly the same", + "spdx_license_key": "LicenseRef-scancode-stlport-4.5" +} \ No newline at end of file diff --git a/docs/stmicroelectronics-centrallabs.LICENSE b/docs/stmicroelectronics-centrallabs.LICENSE index a0aa8b3a11..32d26c254b 100644 --- a/docs/stmicroelectronics-centrallabs.LICENSE +++ b/docs/stmicroelectronics-centrallabs.LICENSE @@ -1,3 +1,15 @@ +--- +key: stmicroelectronics-centrallabs +short_name: STMicroelectronics CentralLabs License +name: STMicroelectronics CentralLabs License +category: Free Restricted +owner: STMicroelectronics +homepage_url: https://github.com/STMicroelectronics-CentralLabs +spdx_license_key: LicenseRef-scancode-stmicroelectronics-centrallabs +text_urls: + - https://github.com/STMicroelectronics-CentralLabs/BlueSTSDK_GUI_iOS/blob/master/LICENSE +--- + The STMicroelectronics corporate logo is a trademark of STMicroelectronics Redistribution and use in source and binary forms, with or without modification, diff --git a/docs/stmicroelectronics-centrallabs.html b/docs/stmicroelectronics-centrallabs.html index d368b4b282..141c76cf28 100644 --- a/docs/stmicroelectronics-centrallabs.html +++ b/docs/stmicroelectronics-centrallabs.html @@ -171,7 +171,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/stmicroelectronics-centrallabs.json b/docs/stmicroelectronics-centrallabs.json index 2aa34a8d82..d7797999e3 100644 --- a/docs/stmicroelectronics-centrallabs.json +++ b/docs/stmicroelectronics-centrallabs.json @@ -1 +1,12 @@ -{"key": "stmicroelectronics-centrallabs", "short_name": "STMicroelectronics CentralLabs License", "name": "STMicroelectronics CentralLabs License", "category": "Free Restricted", "owner": "STMicroelectronics", "homepage_url": "https://github.com/STMicroelectronics-CentralLabs", "spdx_license_key": "LicenseRef-scancode-stmicroelectronics-centrallabs", "text_urls": ["https://github.com/STMicroelectronics-CentralLabs/BlueSTSDK_GUI_iOS/blob/master/LICENSE"]} \ No newline at end of file +{ + "key": "stmicroelectronics-centrallabs", + "short_name": "STMicroelectronics CentralLabs License", + "name": "STMicroelectronics CentralLabs License", + "category": "Free Restricted", + "owner": "STMicroelectronics", + "homepage_url": "https://github.com/STMicroelectronics-CentralLabs", + "spdx_license_key": "LicenseRef-scancode-stmicroelectronics-centrallabs", + "text_urls": [ + "https://github.com/STMicroelectronics-CentralLabs/BlueSTSDK_GUI_iOS/blob/master/LICENSE" + ] +} \ No newline at end of file diff --git a/docs/stmicroelectronics-linux-firmware.LICENSE b/docs/stmicroelectronics-linux-firmware.LICENSE index 9aeb7e47e6..a6ce363c52 100644 --- a/docs/stmicroelectronics-linux-firmware.LICENSE +++ b/docs/stmicroelectronics-linux-firmware.LICENSE @@ -1,3 +1,17 @@ +--- +key: stmicroelectronics-linux-firmware +short_name: STMicroelectronics Linux Firmware License +name: STMicroelectronics Linux Firmware License +category: Proprietary Free +owner: STMicroelectronics +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cw1200 +spdx_license_key: LicenseRef-scancode-stmicro-linux-firmware +other_spdx_license_keys: + - LicenseRef-scancode-stmicroelectronics-linux-firmware +text_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.tda7706-firmware.txt +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/docs/stmicroelectronics-linux-firmware.html b/docs/stmicroelectronics-linux-firmware.html index 1dd148ad26..e5581c4b3c 100644 --- a/docs/stmicroelectronics-linux-firmware.html +++ b/docs/stmicroelectronics-linux-firmware.html @@ -176,7 +176,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/stmicroelectronics-linux-firmware.json b/docs/stmicroelectronics-linux-firmware.json index 5f80877788..e99ca8a36d 100644 --- a/docs/stmicroelectronics-linux-firmware.json +++ b/docs/stmicroelectronics-linux-firmware.json @@ -1 +1,15 @@ -{"key": "stmicroelectronics-linux-firmware", "short_name": "STMicroelectronics Linux Firmware License", "name": "STMicroelectronics Linux Firmware License", "category": "Proprietary Free", "owner": "STMicroelectronics", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cw1200", "spdx_license_key": "LicenseRef-scancode-stmicro-linux-firmware", "other_spdx_license_keys": ["LicenseRef-scancode-stmicroelectronics-linux-firmware"], "text_urls": ["https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.tda7706-firmware.txt"]} \ No newline at end of file +{ + "key": "stmicroelectronics-linux-firmware", + "short_name": "STMicroelectronics Linux Firmware License", + "name": "STMicroelectronics Linux Firmware License", + "category": "Proprietary Free", + "owner": "STMicroelectronics", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cw1200", + "spdx_license_key": "LicenseRef-scancode-stmicro-linux-firmware", + "other_spdx_license_keys": [ + "LicenseRef-scancode-stmicroelectronics-linux-firmware" + ], + "text_urls": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.tda7706-firmware.txt" + ] +} \ No newline at end of file diff --git a/docs/stream-benchmark.LICENSE b/docs/stream-benchmark.LICENSE index 4539a94b08..3ad1d781ac 100644 --- a/docs/stream-benchmark.LICENSE +++ b/docs/stream-benchmark.LICENSE @@ -1,3 +1,21 @@ +--- +key: stream-benchmark +short_name: STREAM Benchmark License +name: STREAM Benchmark License +category: Permissive +owner: STREAM +homepage_url: https://www.cs.virginia.edu/stream/ref.html#runrules +spdx_license_key: LicenseRef-scancode-stream-benchmark +text_urls: + - https://www.cs.virginia.edu/stream/FTP/Code/stream.c +ignorable_copyrights: + - copyright holder, John McCalpin +ignorable_holders: + - John McCalpin +ignorable_urls: + - http://www.cs.virginia.edu/stream/ref.html +--- + License: 1. You are free to use this program and/or to redistribute this program. diff --git a/docs/stream-benchmark.html b/docs/stream-benchmark.html index c01f213027..8233b5da6f 100644 --- a/docs/stream-benchmark.html +++ b/docs/stream-benchmark.html @@ -191,7 +191,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/stream-benchmark.json b/docs/stream-benchmark.json index 7ba8f232ce..b1996a65fc 100644 --- a/docs/stream-benchmark.json +++ b/docs/stream-benchmark.json @@ -1 +1,21 @@ -{"key": "stream-benchmark", "short_name": "STREAM Benchmark License", "name": "STREAM Benchmark License", "category": "Permissive", "owner": "STREAM", "homepage_url": "https://www.cs.virginia.edu/stream/ref.html#runrules", "spdx_license_key": "LicenseRef-scancode-stream-benchmark", "text_urls": ["https://www.cs.virginia.edu/stream/FTP/Code/stream.c"], "ignorable_copyrights": ["copyright holder, John McCalpin"], "ignorable_holders": ["John McCalpin"], "ignorable_urls": ["http://www.cs.virginia.edu/stream/ref.html"]} \ No newline at end of file +{ + "key": "stream-benchmark", + "short_name": "STREAM Benchmark License", + "name": "STREAM Benchmark License", + "category": "Permissive", + "owner": "STREAM", + "homepage_url": "https://www.cs.virginia.edu/stream/ref.html#runrules", + "spdx_license_key": "LicenseRef-scancode-stream-benchmark", + "text_urls": [ + "https://www.cs.virginia.edu/stream/FTP/Code/stream.c" + ], + "ignorable_copyrights": [ + "copyright holder, John McCalpin" + ], + "ignorable_holders": [ + "John McCalpin" + ], + "ignorable_urls": [ + "http://www.cs.virginia.edu/stream/ref.html" + ] +} \ No newline at end of file diff --git a/docs/strongswan-exception.LICENSE b/docs/strongswan-exception.LICENSE index d5ea3f928f..10d63a3069 100644 --- a/docs/strongswan-exception.LICENSE +++ b/docs/strongswan-exception.LICENSE @@ -1,3 +1,13 @@ +--- +key: strongswan-exception +short_name: strongSwan exception to GPL +name: strongSwan exception to GPL +category: Copyleft +owner: Unspecified +is_exception: yes +spdx_license_key: LicenseRef-scancode-strongswan-exception +--- + Linking strongSwan statically or dynamically with other modules is making a combined work based on strongSwan. Thus, the terms and conditions of the GNU General Public License cover the whole combination. @@ -16,4 +26,4 @@ Note that people who make modified versions of strongSwan are not obligated to grant this special exception for their modified versions; it is their choice whether to do so. The GNU General Public License gives permission to release a modified version without this exception; this exception also makes it possible -to release a modified version which carries forward this exception. +to release a modified version which carries forward this exception. \ No newline at end of file diff --git a/docs/strongswan-exception.html b/docs/strongswan-exception.html index 686dac89ce..719b3eea7f 100644 --- a/docs/strongswan-exception.html +++ b/docs/strongswan-exception.html @@ -133,8 +133,7 @@ grant this special exception for their modified versions; it is their choice whether to do so. The GNU General Public License gives permission to release a modified version without this exception; this exception also makes it possible -to release a modified version which carries forward this exception. - +to release a modified version which carries forward this exception.
@@ -146,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/strongswan-exception.json b/docs/strongswan-exception.json index c195c86862..c3d7890183 100644 --- a/docs/strongswan-exception.json +++ b/docs/strongswan-exception.json @@ -1 +1,9 @@ -{"key": "strongswan-exception", "short_name": "strongSwan exception to GPL", "name": "strongSwan exception to GPL", "category": "Copyleft", "owner": "Unspecified", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-strongswan-exception"} \ No newline at end of file +{ + "key": "strongswan-exception", + "short_name": "strongSwan exception to GPL", + "name": "strongSwan exception to GPL", + "category": "Copyleft", + "owner": "Unspecified", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-strongswan-exception" +} \ No newline at end of file diff --git a/docs/stu-nicholls.LICENSE b/docs/stu-nicholls.LICENSE index 1d7658981a..76949f4307 100644 --- a/docs/stu-nicholls.LICENSE +++ b/docs/stu-nicholls.LICENSE @@ -1,3 +1,20 @@ +--- +key: stu-nicholls +short_name: Stu Nicholls License +name: Stu Nicholls License +category: Permissive +owner: Stu Nicholls +spdx_license_key: LicenseRef-scancode-stu-nicholls +other_urls: + - http://www.stunicholls.com/menu/pro_drop_2.html +ignorable_copyrights: + - Copyright (c) 2005-2007 Stu Nicholls +ignorable_holders: + - Stu Nicholls +ignorable_urls: + - http://www.stunicholls.com/menu/pro_drop_2.html +--- + This copyright notice must be kept untouched in the stylesheet at all times. The original version of this stylesheet and the associated (x)html is available at diff --git a/docs/stu-nicholls.html b/docs/stu-nicholls.html index 9ae0c95f7c..1171ccfd5d 100644 --- a/docs/stu-nicholls.html +++ b/docs/stu-nicholls.html @@ -163,7 +163,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/stu-nicholls.json b/docs/stu-nicholls.json index e47526b1ec..191b5e3d46 100644 --- a/docs/stu-nicholls.json +++ b/docs/stu-nicholls.json @@ -1 +1,20 @@ -{"key": "stu-nicholls", "short_name": "Stu Nicholls License", "name": "Stu Nicholls License", "category": "Permissive", "owner": "Stu Nicholls", "spdx_license_key": "LicenseRef-scancode-stu-nicholls", "other_urls": ["http://www.stunicholls.com/menu/pro_drop_2.html"], "ignorable_copyrights": ["Copyright (c) 2005-2007 Stu Nicholls"], "ignorable_holders": ["Stu Nicholls"], "ignorable_urls": ["http://www.stunicholls.com/menu/pro_drop_2.html"]} \ No newline at end of file +{ + "key": "stu-nicholls", + "short_name": "Stu Nicholls License", + "name": "Stu Nicholls License", + "category": "Permissive", + "owner": "Stu Nicholls", + "spdx_license_key": "LicenseRef-scancode-stu-nicholls", + "other_urls": [ + "http://www.stunicholls.com/menu/pro_drop_2.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 2005-2007 Stu Nicholls" + ], + "ignorable_holders": [ + "Stu Nicholls" + ], + "ignorable_urls": [ + "http://www.stunicholls.com/menu/pro_drop_2.html" + ] +} \ No newline at end of file diff --git a/docs/subcommander-exception-2.0-plus.LICENSE b/docs/subcommander-exception-2.0-plus.LICENSE index 3e57da1ef6..12130eb7b2 100644 --- a/docs/subcommander-exception-2.0-plus.LICENSE +++ b/docs/subcommander-exception-2.0-plus.LICENSE @@ -1,3 +1,40 @@ +--- +key: subcommander-exception-2.0-plus +short_name: Subcommander exception to GPL 2.0 or later +name: Subcommander exception to GPL 2.0 or later +category: Copyleft Limited +owner: Tigris Project +homepage_url: http://subversion.tigris.org/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-subcommander-exception-2.0plus +other_spdx_license_keys: + - LicenseRef-scancode-subcommander-exception-2.0-plus +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + Subcommander 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 2 of the License, or + (at your option) any later version. + Subcommander 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 Subcommander; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston,MA 02111-1307, + USA. + In addition, as a special exception, the copyright holder + gives permission to link the code of this program with the Qt + library (or with modified versions of Qt that use the same license + as Qt), and distribute linked combinations including the two. You + must obey the GNU General Public License in all respects for all of + the code used other than Qt. If you modify a file to which this + license applies, you may extend this exception to your version of + the file, but you are not obligated to do so. If you do not wish + to do so, delete this exception statement from your version. +--- + In addition, as a special exception, the copyright holder gives permission to link the code of this program with the Qt library (or with modified versions of Qt that use the same license as Qt), and distribute linked combinations @@ -5,4 +42,4 @@ including the two. You must obey the GNU General Public License in all respects for all of the code used other than Qt. If you modify a file to which this license applies, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to do so, delete this -exception statement from your version. +exception statement from your version. \ No newline at end of file diff --git a/docs/subcommander-exception-2.0-plus.html b/docs/subcommander-exception-2.0-plus.html index f86ff42dcf..426ee8e405 100644 --- a/docs/subcommander-exception-2.0-plus.html +++ b/docs/subcommander-exception-2.0-plus.html @@ -175,8 +175,7 @@ for all of the code used other than Qt. If you modify a file to which this license applies, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to do so, delete this -exception statement from your version. - +exception statement from your version.
@@ -188,7 +187,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/subcommander-exception-2.0-plus.json b/docs/subcommander-exception-2.0-plus.json index bf726edcce..48b871591b 100644 --- a/docs/subcommander-exception-2.0-plus.json +++ b/docs/subcommander-exception-2.0-plus.json @@ -1 +1,17 @@ -{"key": "subcommander-exception-2.0-plus", "short_name": "Subcommander exception to GPL 2.0 or later", "name": "Subcommander exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "Tigris Project", "homepage_url": "http://subversion.tigris.org/", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-subcommander-exception-2.0plus", "other_spdx_license_keys": ["LicenseRef-scancode-subcommander-exception-2.0-plus"], "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "Subcommander is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published\nby the Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\nSubcommander is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with Subcommander; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston,MA 02111-1307,\nUSA.\nIn addition, as a special exception, the copyright holder\ngives permission to link the code of this program with the Qt\nlibrary (or with modified versions of Qt that use the same license\nas Qt), and distribute linked combinations including the two. You\nmust obey the GNU General Public License in all respects for all of\nthe code used other than Qt. If you modify a file to which this\nlicense applies, you may extend this exception to your version of\nthe file, but you are not obligated to do so. If you do not wish\nto do so, delete this exception statement from your version.\n"} \ No newline at end of file +{ + "key": "subcommander-exception-2.0-plus", + "short_name": "Subcommander exception to GPL 2.0 or later", + "name": "Subcommander exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "Tigris Project", + "homepage_url": "http://subversion.tigris.org/", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-subcommander-exception-2.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-subcommander-exception-2.0-plus" + ], + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "Subcommander is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published\nby the Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\nSubcommander is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with Subcommander; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston,MA 02111-1307,\nUSA.\nIn addition, as a special exception, the copyright holder\ngives permission to link the code of this program with the Qt\nlibrary (or with modified versions of Qt that use the same license\nas Qt), and distribute linked combinations including the two. You\nmust obey the GNU General Public License in all respects for all of\nthe code used other than Qt. If you modify a file to which this\nlicense applies, you may extend this exception to your version of\nthe file, but you are not obligated to do so. If you do not wish\nto do so, delete this exception statement from your version.\n" +} \ No newline at end of file diff --git a/docs/sugarcrm-1.1.3.LICENSE b/docs/sugarcrm-1.1.3.LICENSE index 7fe83bad81..32dd3241c9 100644 --- a/docs/sugarcrm-1.1.3.LICENSE +++ b/docs/sugarcrm-1.1.3.LICENSE @@ -1,3 +1,26 @@ +--- +key: sugarcrm-1.1.3 +short_name: SugarCRM Public License 1.1.3 +name: SugarCRM Public License v1.1.3 +category: Copyleft +owner: SugarCRM +homepage_url: http://www.sugarcrm.com/crm/SPL +spdx_license_key: SugarCRM-1.1.3 +text_urls: + - http://www.sugarcrm.com/crm/SPL +other_urls: + - http://www.sugarcrm.com/page/sugarcrm-public-license/en +ignorable_copyrights: + - Copyright (c) 2004 SugarCRM, Inc. +ignorable_holders: + - SugarCRM, Inc. +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.sugarcrm.com/ + - http://www.sugarcrm.com/SPL + - http://www.sugarforge.org/ +--- + SUGARCRM PUBLIC LICENSE Version 1.1.3 diff --git a/docs/sugarcrm-1.1.3.html b/docs/sugarcrm-1.1.3.html index 52b106c44e..8f44be28a3 100644 --- a/docs/sugarcrm-1.1.3.html +++ b/docs/sugarcrm-1.1.3.html @@ -326,7 +326,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sugarcrm-1.1.3.json b/docs/sugarcrm-1.1.3.json index 31c6ed4058..fea14dd9b8 100644 --- a/docs/sugarcrm-1.1.3.json +++ b/docs/sugarcrm-1.1.3.json @@ -1 +1,27 @@ -{"key": "sugarcrm-1.1.3", "short_name": "SugarCRM Public License 1.1.3", "name": "SugarCRM Public License v1.1.3", "category": "Copyleft", "owner": "SugarCRM", "homepage_url": "http://www.sugarcrm.com/crm/SPL", "spdx_license_key": "SugarCRM-1.1.3", "text_urls": ["http://www.sugarcrm.com/crm/SPL"], "other_urls": ["http://www.sugarcrm.com/page/sugarcrm-public-license/en"], "ignorable_copyrights": ["Copyright (c) 2004 SugarCRM, Inc."], "ignorable_holders": ["SugarCRM, Inc."], "ignorable_urls": ["http://www.mozilla.org/MPL/MPL-1.1.html", "http://www.sugarcrm.com/", "http://www.sugarcrm.com/SPL", "http://www.sugarforge.org/"]} \ No newline at end of file +{ + "key": "sugarcrm-1.1.3", + "short_name": "SugarCRM Public License 1.1.3", + "name": "SugarCRM Public License v1.1.3", + "category": "Copyleft", + "owner": "SugarCRM", + "homepage_url": "http://www.sugarcrm.com/crm/SPL", + "spdx_license_key": "SugarCRM-1.1.3", + "text_urls": [ + "http://www.sugarcrm.com/crm/SPL" + ], + "other_urls": [ + "http://www.sugarcrm.com/page/sugarcrm-public-license/en" + ], + "ignorable_copyrights": [ + "Copyright (c) 2004 SugarCRM, Inc." + ], + "ignorable_holders": [ + "SugarCRM, Inc." + ], + "ignorable_urls": [ + "http://www.mozilla.org/MPL/MPL-1.1.html", + "http://www.sugarcrm.com/", + "http://www.sugarcrm.com/SPL", + "http://www.sugarforge.org/" + ] +} \ No newline at end of file diff --git a/docs/sun-bcl-11-06.LICENSE b/docs/sun-bcl-11-06.LICENSE index 807e90eacc..e1180f985f 100644 --- a/docs/sun-bcl-11-06.LICENSE +++ b/docs/sun-bcl-11-06.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-bcl-11-06 +short_name: Sun BCL 11 plus 6 +name: Sun BCL 11 plus 6 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-11-06 +ignorable_urls: + - http://www.sun.com/policies/trademarks +--- + License Agreement for {ProductName} Sun Microsystems, Inc. Binary Code License Agreement diff --git a/docs/sun-bcl-11-06.html b/docs/sun-bcl-11-06.html index 9e74050f4e..8aed9e224d 100644 --- a/docs/sun-bcl-11-06.html +++ b/docs/sun-bcl-11-06.html @@ -178,7 +178,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-11-06.json b/docs/sun-bcl-11-06.json index 6e80938198..13aebe415a 100644 --- a/docs/sun-bcl-11-06.json +++ b/docs/sun-bcl-11-06.json @@ -1 +1,11 @@ -{"key": "sun-bcl-11-06", "short_name": "Sun BCL 11 plus 6", "name": "Sun BCL 11 plus 6", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-06", "ignorable_urls": ["http://www.sun.com/policies/trademarks"]} \ No newline at end of file +{ + "key": "sun-bcl-11-06", + "short_name": "Sun BCL 11 plus 6", + "name": "Sun BCL 11 plus 6", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-06", + "ignorable_urls": [ + "http://www.sun.com/policies/trademarks" + ] +} \ No newline at end of file diff --git a/docs/sun-bcl-11-07.LICENSE b/docs/sun-bcl-11-07.LICENSE index 744bc190a5..58ea2c340b 100644 --- a/docs/sun-bcl-11-07.LICENSE +++ b/docs/sun-bcl-11-07.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-bcl-11-07 +short_name: Sun BCL 11 plus 7 +name: Sun BCL 11 plus 7 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-11-07 +ignorable_urls: + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement diff --git a/docs/sun-bcl-11-07.html b/docs/sun-bcl-11-07.html index af153e35ee..14aae5b9dc 100644 --- a/docs/sun-bcl-11-07.html +++ b/docs/sun-bcl-11-07.html @@ -397,7 +397,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-11-07.json b/docs/sun-bcl-11-07.json index 0061337197..0f44a0d0c5 100644 --- a/docs/sun-bcl-11-07.json +++ b/docs/sun-bcl-11-07.json @@ -1 +1,11 @@ -{"key": "sun-bcl-11-07", "short_name": "Sun BCL 11 plus 7", "name": "Sun BCL 11 plus 7", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-07", "ignorable_urls": ["http://www.sun.com/policies/trademarks"]} \ No newline at end of file +{ + "key": "sun-bcl-11-07", + "short_name": "Sun BCL 11 plus 7", + "name": "Sun BCL 11 plus 7", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-07", + "ignorable_urls": [ + "http://www.sun.com/policies/trademarks" + ] +} \ No newline at end of file diff --git a/docs/sun-bcl-11-08.LICENSE b/docs/sun-bcl-11-08.LICENSE index 2e39ce4093..370b7065f2 100644 --- a/docs/sun-bcl-11-08.LICENSE +++ b/docs/sun-bcl-11-08.LICENSE @@ -1,3 +1,18 @@ +--- +key: sun-bcl-11-08 +short_name: Sun BCL 11 plus 8 +name: Sun BCL 11 plus 8 +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: http://download.java.net/media/jai/builds/release/1_1_3/LICENSE-jai.txt +spdx_license_key: LicenseRef-scancode-sun-bcl-11-08 +text_urls: + - http://download.java.net/media/jai/builds/release/1_1_3/LICENSE-jai.txt +ignorable_urls: + - http://www.java.sun.com/jdk/index.html + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement diff --git a/docs/sun-bcl-11-08.html b/docs/sun-bcl-11-08.html index cbd8050412..2bd346c4a1 100644 --- a/docs/sun-bcl-11-08.html +++ b/docs/sun-bcl-11-08.html @@ -199,7 +199,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-11-08.json b/docs/sun-bcl-11-08.json index 7f2ced0f8d..ceac11ac60 100644 --- a/docs/sun-bcl-11-08.json +++ b/docs/sun-bcl-11-08.json @@ -1 +1,16 @@ -{"key": "sun-bcl-11-08", "short_name": "Sun BCL 11 plus 8", "name": "Sun BCL 11 plus 8", "category": "Proprietary Free", "owner": "Oracle (Sun)", "homepage_url": "http://download.java.net/media/jai/builds/release/1_1_3/LICENSE-jai.txt", "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-08", "text_urls": ["http://download.java.net/media/jai/builds/release/1_1_3/LICENSE-jai.txt"], "ignorable_urls": ["http://www.java.sun.com/jdk/index.html", "http://www.sun.com/policies/trademarks"]} \ No newline at end of file +{ + "key": "sun-bcl-11-08", + "short_name": "Sun BCL 11 plus 8", + "name": "Sun BCL 11 plus 8", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "homepage_url": "http://download.java.net/media/jai/builds/release/1_1_3/LICENSE-jai.txt", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-08", + "text_urls": [ + "http://download.java.net/media/jai/builds/release/1_1_3/LICENSE-jai.txt" + ], + "ignorable_urls": [ + "http://www.java.sun.com/jdk/index.html", + "http://www.sun.com/policies/trademarks" + ] +} \ No newline at end of file diff --git a/docs/sun-bcl-j2re-1.2.x.LICENSE b/docs/sun-bcl-j2re-1.2.x.LICENSE index 94abb16fbb..5a67e20848 100644 --- a/docs/sun-bcl-j2re-1.2.x.LICENSE +++ b/docs/sun-bcl-j2re-1.2.x.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-bcl-j2re-1.2.x +short_name: Sun BCL J2RE 1.2.X +name: Sun BCL J2RE 1.2.X +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-j2re-1.2.x +ignorable_urls: + - http://java.sun.com/trademarks.html +--- + Sun Microsystems, Inc. Binary Code License Agreement diff --git a/docs/sun-bcl-j2re-1.2.x.html b/docs/sun-bcl-j2re-1.2.x.html index c28e919476..59d550baa6 100644 --- a/docs/sun-bcl-j2re-1.2.x.html +++ b/docs/sun-bcl-j2re-1.2.x.html @@ -278,7 +278,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-j2re-1.2.x.json b/docs/sun-bcl-j2re-1.2.x.json index 0698a94f8b..a21ff9c62f 100644 --- a/docs/sun-bcl-j2re-1.2.x.json +++ b/docs/sun-bcl-j2re-1.2.x.json @@ -1 +1,11 @@ -{"key": "sun-bcl-j2re-1.2.x", "short_name": "Sun BCL J2RE 1.2.X", "name": "Sun BCL J2RE 1.2.X", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.2.x", "ignorable_urls": ["http://java.sun.com/trademarks.html"]} \ No newline at end of file +{ + "key": "sun-bcl-j2re-1.2.x", + "short_name": "Sun BCL J2RE 1.2.X", + "name": "Sun BCL J2RE 1.2.X", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.2.x", + "ignorable_urls": [ + "http://java.sun.com/trademarks.html" + ] +} \ No newline at end of file diff --git a/docs/sun-bcl-j2re-1.4.2.LICENSE b/docs/sun-bcl-j2re-1.4.2.LICENSE index 61f0801901..0b30bd0578 100644 --- a/docs/sun-bcl-j2re-1.4.2.LICENSE +++ b/docs/sun-bcl-j2re-1.4.2.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-bcl-j2re-1.4.2 +short_name: Sun BCL J2RE 1.4.2 +name: Sun BCL J2RE 1.4.2 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-j2re-1.4.2 +ignorable_urls: + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement for the JAVATM 2 RUNTIME ENVIRONMENT (J2RE), STANDARD EDITION, VERSION 1.4.2_X SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE. diff --git a/docs/sun-bcl-j2re-1.4.2.html b/docs/sun-bcl-j2re-1.4.2.html index 4e6a519677..817fd030ab 100644 --- a/docs/sun-bcl-j2re-1.4.2.html +++ b/docs/sun-bcl-j2re-1.4.2.html @@ -179,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-j2re-1.4.2.json b/docs/sun-bcl-j2re-1.4.2.json index a976887bdf..9be587bd8c 100644 --- a/docs/sun-bcl-j2re-1.4.2.json +++ b/docs/sun-bcl-j2re-1.4.2.json @@ -1 +1,11 @@ -{"key": "sun-bcl-j2re-1.4.2", "short_name": "Sun BCL J2RE 1.4.2", "name": "Sun BCL J2RE 1.4.2", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.4.2", "ignorable_urls": ["http://www.sun.com/policies/trademarks"]} \ No newline at end of file +{ + "key": "sun-bcl-j2re-1.4.2", + "short_name": "Sun BCL J2RE 1.4.2", + "name": "Sun BCL J2RE 1.4.2", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.4.2", + "ignorable_urls": [ + "http://www.sun.com/policies/trademarks" + ] +} \ No newline at end of file diff --git a/docs/sun-bcl-j2re-1.4.x.LICENSE b/docs/sun-bcl-j2re-1.4.x.LICENSE index 4163e03c48..d6b3f4d309 100644 --- a/docs/sun-bcl-j2re-1.4.x.LICENSE +++ b/docs/sun-bcl-j2re-1.4.x.LICENSE @@ -1,3 +1,15 @@ +--- +key: sun-bcl-j2re-1.4.x +short_name: Sun BCL J2RE 1.4.X +name: Sun BCL J2RE 1.4.X +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-j2re-1.4.x +ignorable_urls: + - http://oss.software.ibm.com/icu4j/ + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement diff --git a/docs/sun-bcl-j2re-1.4.x.html b/docs/sun-bcl-j2re-1.4.x.html index 366f3f45ed..c2690050fc 100644 --- a/docs/sun-bcl-j2re-1.4.x.html +++ b/docs/sun-bcl-j2re-1.4.x.html @@ -363,7 +363,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-j2re-1.4.x.json b/docs/sun-bcl-j2re-1.4.x.json index aaa83f82d9..7f9209bc0c 100644 --- a/docs/sun-bcl-j2re-1.4.x.json +++ b/docs/sun-bcl-j2re-1.4.x.json @@ -1 +1,12 @@ -{"key": "sun-bcl-j2re-1.4.x", "short_name": "Sun BCL J2RE 1.4.X", "name": "Sun BCL J2RE 1.4.X", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.4.x", "ignorable_urls": ["http://oss.software.ibm.com/icu4j/", "http://www.sun.com/policies/trademarks"]} \ No newline at end of file +{ + "key": "sun-bcl-j2re-1.4.x", + "short_name": "Sun BCL J2RE 1.4.X", + "name": "Sun BCL J2RE 1.4.X", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.4.x", + "ignorable_urls": [ + "http://oss.software.ibm.com/icu4j/", + "http://www.sun.com/policies/trademarks" + ] +} \ No newline at end of file diff --git a/docs/sun-bcl-j2re-5.0.LICENSE b/docs/sun-bcl-j2re-5.0.LICENSE index 079c64ef8d..404af9d041 100644 --- a/docs/sun-bcl-j2re-5.0.LICENSE +++ b/docs/sun-bcl-j2re-5.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: sun-bcl-j2re-5.0 +short_name: Sun BCL J2RE 5.0 +name: Sun BCL J2RE 5.0 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-j2re-5.0 +text_urls: + - http://java.sun.com/j2se/1.5.0/jre-1_5_0_06-license.txt +ignorable_urls: + - http://java.com/data + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement for the JAVA 2 PLATFORM STANDARD EDITION RUNTIME ENVIRONMENT 5.0 SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE. diff --git a/docs/sun-bcl-j2re-5.0.html b/docs/sun-bcl-j2re-5.0.html index 90e7349554..926445a1fb 100644 --- a/docs/sun-bcl-j2re-5.0.html +++ b/docs/sun-bcl-j2re-5.0.html @@ -184,7 +184,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-j2re-5.0.json b/docs/sun-bcl-j2re-5.0.json index 57554e0b07..d754e7ff70 100644 --- a/docs/sun-bcl-j2re-5.0.json +++ b/docs/sun-bcl-j2re-5.0.json @@ -1 +1,15 @@ -{"key": "sun-bcl-j2re-5.0", "short_name": "Sun BCL J2RE 5.0", "name": "Sun BCL J2RE 5.0", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-5.0", "text_urls": ["http://java.sun.com/j2se/1.5.0/jre-1_5_0_06-license.txt"], "ignorable_urls": ["http://java.com/data", "http://www.sun.com/policies/trademarks"]} \ No newline at end of file +{ + "key": "sun-bcl-j2re-5.0", + "short_name": "Sun BCL J2RE 5.0", + "name": "Sun BCL J2RE 5.0", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-5.0", + "text_urls": [ + "http://java.sun.com/j2se/1.5.0/jre-1_5_0_06-license.txt" + ], + "ignorable_urls": [ + "http://java.com/data", + "http://www.sun.com/policies/trademarks" + ] +} \ No newline at end of file diff --git a/docs/sun-bcl-java-servlet-imp-2.1.1.LICENSE b/docs/sun-bcl-java-servlet-imp-2.1.1.LICENSE index 0f3a500731..100b9c48a8 100644 --- a/docs/sun-bcl-java-servlet-imp-2.1.1.LICENSE +++ b/docs/sun-bcl-java-servlet-imp-2.1.1.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-bcl-java-servlet-imp-2.1.1 +short_name: Sun BCL Java Servlet Implementation 2.1.1 +name: Sun BCL Java Servlet Implementation Classes 2.1.1 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-java-servlet-imp-2.1.1 +ignorable_urls: + - http://java.sun.com/ +--- + Java Servlet Implementation Classes Version 2.1.1 Binary Code License diff --git a/docs/sun-bcl-java-servlet-imp-2.1.1.html b/docs/sun-bcl-java-servlet-imp-2.1.1.html index d06e9ed9bb..727ccd0ba4 100644 --- a/docs/sun-bcl-java-servlet-imp-2.1.1.html +++ b/docs/sun-bcl-java-servlet-imp-2.1.1.html @@ -255,7 +255,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-java-servlet-imp-2.1.1.json b/docs/sun-bcl-java-servlet-imp-2.1.1.json index 14b33f192e..dbeaa62c67 100644 --- a/docs/sun-bcl-java-servlet-imp-2.1.1.json +++ b/docs/sun-bcl-java-servlet-imp-2.1.1.json @@ -1 +1,11 @@ -{"key": "sun-bcl-java-servlet-imp-2.1.1", "short_name": "Sun BCL Java Servlet Implementation 2.1.1", "name": "Sun BCL Java Servlet Implementation Classes 2.1.1", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-bcl-java-servlet-imp-2.1.1", "ignorable_urls": ["http://java.sun.com/"]} \ No newline at end of file +{ + "key": "sun-bcl-java-servlet-imp-2.1.1", + "short_name": "Sun BCL Java Servlet Implementation 2.1.1", + "name": "Sun BCL Java Servlet Implementation Classes 2.1.1", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-java-servlet-imp-2.1.1", + "ignorable_urls": [ + "http://java.sun.com/" + ] +} \ No newline at end of file diff --git a/docs/sun-bcl-javahelp.LICENSE b/docs/sun-bcl-javahelp.LICENSE index c7bb258bce..dcb3ae728b 100644 --- a/docs/sun-bcl-javahelp.LICENSE +++ b/docs/sun-bcl-javahelp.LICENSE @@ -1,3 +1,15 @@ +--- +key: sun-bcl-javahelp +short_name: Sun BCL JavaHelp +name: Sun BCL JavaHelp +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-javahelp +ignorable_urls: + - http://www.java.sun.com/jdk/index.html + - http://www.sun.com/policies/trademarks +--- + SUN JavaHelp(TM) 2.0 Sun Microsystems, Inc. Binary Code License Agreement diff --git a/docs/sun-bcl-javahelp.html b/docs/sun-bcl-javahelp.html index a92ce7b8eb..d0b1e8536a 100644 --- a/docs/sun-bcl-javahelp.html +++ b/docs/sun-bcl-javahelp.html @@ -176,7 +176,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-javahelp.json b/docs/sun-bcl-javahelp.json index de9d795fa4..92c01aeb89 100644 --- a/docs/sun-bcl-javahelp.json +++ b/docs/sun-bcl-javahelp.json @@ -1 +1,12 @@ -{"key": "sun-bcl-javahelp", "short_name": "Sun BCL JavaHelp", "name": "Sun BCL JavaHelp", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-bcl-javahelp", "ignorable_urls": ["http://www.java.sun.com/jdk/index.html", "http://www.sun.com/policies/trademarks"]} \ No newline at end of file +{ + "key": "sun-bcl-javahelp", + "short_name": "Sun BCL JavaHelp", + "name": "Sun BCL JavaHelp", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-javahelp", + "ignorable_urls": [ + "http://www.java.sun.com/jdk/index.html", + "http://www.sun.com/policies/trademarks" + ] +} \ No newline at end of file diff --git a/docs/sun-bcl-jimi-sdk.LICENSE b/docs/sun-bcl-jimi-sdk.LICENSE index eb4b84ec20..0f104a2d8c 100644 --- a/docs/sun-bcl-jimi-sdk.LICENSE +++ b/docs/sun-bcl-jimi-sdk.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-bcl-jimi-sdk +short_name: Sun BCL JIMI SDK +name: Sun BCL JIMI SDK +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-jimi-sdk +ignorable_urls: + - http://java.sun.com/ +--- + SUN JIMI SDK JIMI SDK Version 2.0 Sun Microsystems, Inc. Please see the file classes/LICENSE_JIMI.txt diff --git a/docs/sun-bcl-jimi-sdk.html b/docs/sun-bcl-jimi-sdk.html index 7deabdda8a..9d6f2870f2 100644 --- a/docs/sun-bcl-jimi-sdk.html +++ b/docs/sun-bcl-jimi-sdk.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-jimi-sdk.json b/docs/sun-bcl-jimi-sdk.json index 94ebe0f5be..26be28174d 100644 --- a/docs/sun-bcl-jimi-sdk.json +++ b/docs/sun-bcl-jimi-sdk.json @@ -1 +1,11 @@ -{"key": "sun-bcl-jimi-sdk", "short_name": "Sun BCL JIMI SDK", "name": "Sun BCL JIMI SDK", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-bcl-jimi-sdk", "ignorable_urls": ["http://java.sun.com/"]} \ No newline at end of file +{ + "key": "sun-bcl-jimi-sdk", + "short_name": "Sun BCL JIMI SDK", + "name": "Sun BCL JIMI SDK", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-jimi-sdk", + "ignorable_urls": [ + "http://java.sun.com/" + ] +} \ No newline at end of file diff --git a/docs/sun-bcl-jre6.LICENSE b/docs/sun-bcl-jre6.LICENSE index 338253bd8d..15c47210f7 100644 --- a/docs/sun-bcl-jre6.LICENSE +++ b/docs/sun-bcl-jre6.LICENSE @@ -1,3 +1,15 @@ +--- +key: sun-bcl-jre6 +short_name: Sun BCL JRE 6 +name: Sun BCL JRE 6 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-jre6 +ignorable_urls: + - http://java.com/data + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement for the JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 6 SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE. diff --git a/docs/sun-bcl-jre6.html b/docs/sun-bcl-jre6.html index 19b69bdf4d..833b94a37d 100644 --- a/docs/sun-bcl-jre6.html +++ b/docs/sun-bcl-jre6.html @@ -177,7 +177,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-jre6.json b/docs/sun-bcl-jre6.json index ab3b1503a0..41a417457b 100644 --- a/docs/sun-bcl-jre6.json +++ b/docs/sun-bcl-jre6.json @@ -1 +1,12 @@ -{"key": "sun-bcl-jre6", "short_name": "Sun BCL JRE 6", "name": "Sun BCL JRE 6", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-bcl-jre6", "ignorable_urls": ["http://java.com/data", "http://www.sun.com/policies/trademarks"]} \ No newline at end of file +{ + "key": "sun-bcl-jre6", + "short_name": "Sun BCL JRE 6", + "name": "Sun BCL JRE 6", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-jre6", + "ignorable_urls": [ + "http://java.com/data", + "http://www.sun.com/policies/trademarks" + ] +} \ No newline at end of file diff --git a/docs/sun-bcl-jsmq.LICENSE b/docs/sun-bcl-jsmq.LICENSE index 83956033f2..a960104102 100644 --- a/docs/sun-bcl-jsmq.LICENSE +++ b/docs/sun-bcl-jsmq.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-bcl-jsmq +short_name: Sun BCL JSMQ +name: Sun BCL JSMQ +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-jsmq +ignorable_urls: + - http://www.sun.com/policies/trademarks +--- + SUN Java System Message Queue License Sun Microsystems, Inc. Binary Code License Agreement diff --git a/docs/sun-bcl-jsmq.html b/docs/sun-bcl-jsmq.html index 3f9d227388..accc87c266 100644 --- a/docs/sun-bcl-jsmq.html +++ b/docs/sun-bcl-jsmq.html @@ -212,7 +212,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-jsmq.json b/docs/sun-bcl-jsmq.json index d7c1c1d5f3..a74e56bec6 100644 --- a/docs/sun-bcl-jsmq.json +++ b/docs/sun-bcl-jsmq.json @@ -1 +1,11 @@ -{"key": "sun-bcl-jsmq", "short_name": "Sun BCL JSMQ", "name": "Sun BCL JSMQ", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-bcl-jsmq", "ignorable_urls": ["http://www.sun.com/policies/trademarks"]} \ No newline at end of file +{ + "key": "sun-bcl-jsmq", + "short_name": "Sun BCL JSMQ", + "name": "Sun BCL JSMQ", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-jsmq", + "ignorable_urls": [ + "http://www.sun.com/policies/trademarks" + ] +} \ No newline at end of file diff --git a/docs/sun-bcl-opendmk.LICENSE b/docs/sun-bcl-opendmk.LICENSE index f399068ea4..4294f44411 100644 --- a/docs/sun-bcl-opendmk.LICENSE +++ b/docs/sun-bcl-opendmk.LICENSE @@ -1,3 +1,13 @@ +--- +key: sun-bcl-opendmk +short_name: Sun BCL OpenDMK +name: Sun BCL OpenDMK +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: https://opendmk.java.net/legal_notices/LICENSE_BINARY.txt +spdx_license_key: LicenseRef-scancode-sun-bcl-opendmk +--- + Binary License for Project OpenDMK Sun Microsystems, Inc. Binary Code License Agreement diff --git a/docs/sun-bcl-opendmk.html b/docs/sun-bcl-opendmk.html index 58a2fe90e2..2159ada470 100644 --- a/docs/sun-bcl-opendmk.html +++ b/docs/sun-bcl-opendmk.html @@ -309,7 +309,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-opendmk.json b/docs/sun-bcl-opendmk.json index 8dc660f756..5a6eab08b2 100644 --- a/docs/sun-bcl-opendmk.json +++ b/docs/sun-bcl-opendmk.json @@ -1 +1,9 @@ -{"key": "sun-bcl-opendmk", "short_name": "Sun BCL OpenDMK", "name": "Sun BCL OpenDMK", "category": "Proprietary Free", "owner": "Oracle (Sun)", "homepage_url": "https://opendmk.java.net/legal_notices/LICENSE_BINARY.txt", "spdx_license_key": "LicenseRef-scancode-sun-bcl-opendmk"} \ No newline at end of file +{ + "key": "sun-bcl-opendmk", + "short_name": "Sun BCL OpenDMK", + "name": "Sun BCL OpenDMK", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "homepage_url": "https://opendmk.java.net/legal_notices/LICENSE_BINARY.txt", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-opendmk" +} \ No newline at end of file diff --git a/docs/sun-bcl-openjdk.LICENSE b/docs/sun-bcl-openjdk.LICENSE index 0843dd4356..95288339d6 100644 --- a/docs/sun-bcl-openjdk.LICENSE +++ b/docs/sun-bcl-openjdk.LICENSE @@ -1,3 +1,17 @@ +--- +key: sun-bcl-openjdk +short_name: Sun BCL OpenJDK +name: Sun BCL OpenJDK +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: http://openjdk.java.net/legal/binary-license-2007-08-02.html +notes: | + this is the official old license for the OpenJDK binaries but is rarely + ever seen in practice as Sun/Oracle do not redistribute pre- built binaries + for the OpenJDK. +spdx_license_key: LicenseRef-scancode-sun-bcl-openjdk +--- + Binary License for OpenJDK Sun Microsystems, Inc. Binary Code License Agreement @@ -187,4 +201,4 @@ of the AWT if such modified version is distributed in association with dedicated circuitry in silicon. For purposes of this section, "AWT" means the abstract windowing toolkit class libraries implemented in the OpenJDK Code or any modified version of such abstract windowing toolkit that is -created and distributed by Sun or its licensees. +created and distributed by Sun or its licensees. \ No newline at end of file diff --git a/docs/sun-bcl-openjdk.html b/docs/sun-bcl-openjdk.html index 1367f5e8f8..b55c8b8547 100644 --- a/docs/sun-bcl-openjdk.html +++ b/docs/sun-bcl-openjdk.html @@ -314,8 +314,7 @@ dedicated circuitry in silicon. For purposes of this section, "AWT" means the abstract windowing toolkit class libraries implemented in the OpenJDK Code or any modified version of such abstract windowing toolkit that is -created and distributed by Sun or its licensees. - +created and distributed by Sun or its licensees.
@@ -327,7 +326,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-openjdk.json b/docs/sun-bcl-openjdk.json index 19201c9194..a6a7ab263a 100644 --- a/docs/sun-bcl-openjdk.json +++ b/docs/sun-bcl-openjdk.json @@ -1 +1,10 @@ -{"key": "sun-bcl-openjdk", "short_name": "Sun BCL OpenJDK", "name": "Sun BCL OpenJDK", "category": "Proprietary Free", "owner": "Oracle (Sun)", "homepage_url": "http://openjdk.java.net/legal/binary-license-2007-08-02.html", "notes": "this is the official old license for the OpenJDK binaries but is rarely\never seen in practice as Sun/Oracle do not redistribute pre- built binaries\nfor the OpenJDK.\n", "spdx_license_key": "LicenseRef-scancode-sun-bcl-openjdk"} \ No newline at end of file +{ + "key": "sun-bcl-openjdk", + "short_name": "Sun BCL OpenJDK", + "name": "Sun BCL OpenJDK", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "homepage_url": "http://openjdk.java.net/legal/binary-license-2007-08-02.html", + "notes": "this is the official old license for the OpenJDK binaries but is rarely\never seen in practice as Sun/Oracle do not redistribute pre- built binaries\nfor the OpenJDK.\n", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-openjdk" +} \ No newline at end of file diff --git a/docs/sun-bcl-sdk-1.3.LICENSE b/docs/sun-bcl-sdk-1.3.LICENSE index 73f8b264d6..1c277d0c38 100644 --- a/docs/sun-bcl-sdk-1.3.LICENSE +++ b/docs/sun-bcl-sdk-1.3.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-bcl-sdk-1.3 +short_name: Sun BCL SDK 1.3 +name: Sun BCL SDK 1.3 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-sdk-1.3 +ignorable_urls: + - http://www.sun.com/policies/trademarks +--- + Java 2 Software Development Kit (J2SDK), Standard Edition, Version 1.3.x Sun Microsystems, Inc. Binary Code License Agreement diff --git a/docs/sun-bcl-sdk-1.3.html b/docs/sun-bcl-sdk-1.3.html index 07951774ca..ccabca5604 100644 --- a/docs/sun-bcl-sdk-1.3.html +++ b/docs/sun-bcl-sdk-1.3.html @@ -174,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-sdk-1.3.json b/docs/sun-bcl-sdk-1.3.json index 5dce4c94a6..5be51fc63c 100644 --- a/docs/sun-bcl-sdk-1.3.json +++ b/docs/sun-bcl-sdk-1.3.json @@ -1 +1,11 @@ -{"key": "sun-bcl-sdk-1.3", "short_name": "Sun BCL SDK 1.3", "name": "Sun BCL SDK 1.3", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-1.3", "ignorable_urls": ["http://www.sun.com/policies/trademarks"]} \ No newline at end of file +{ + "key": "sun-bcl-sdk-1.3", + "short_name": "Sun BCL SDK 1.3", + "name": "Sun BCL SDK 1.3", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-1.3", + "ignorable_urls": [ + "http://www.sun.com/policies/trademarks" + ] +} \ No newline at end of file diff --git a/docs/sun-bcl-sdk-1.4.2.LICENSE b/docs/sun-bcl-sdk-1.4.2.LICENSE index d2c180945f..beff823add 100644 --- a/docs/sun-bcl-sdk-1.4.2.LICENSE +++ b/docs/sun-bcl-sdk-1.4.2.LICENSE @@ -1,3 +1,18 @@ +--- +key: sun-bcl-sdk-1.4.2 +short_name: Sun BCL SDK 1.4.2 +name: Sun BCL SDK 1.4.2 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-sdk-1.4.2 +ignorable_copyrights: + - Copyright 2003, Sun Microsystems, Inc. +ignorable_holders: + - Sun Microsystems, Inc. +ignorable_urls: + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement for the JAVA 2 SOFTWARE DEVELOPMENT KIT (J2SDK), STANDARD EDITION, VERSION 1.4.2_X diff --git a/docs/sun-bcl-sdk-1.4.2.html b/docs/sun-bcl-sdk-1.4.2.html index ab6e675d80..74bb6178a7 100644 --- a/docs/sun-bcl-sdk-1.4.2.html +++ b/docs/sun-bcl-sdk-1.4.2.html @@ -203,7 +203,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-sdk-1.4.2.json b/docs/sun-bcl-sdk-1.4.2.json index b5a3d7f1c7..008b8a8731 100644 --- a/docs/sun-bcl-sdk-1.4.2.json +++ b/docs/sun-bcl-sdk-1.4.2.json @@ -1 +1,17 @@ -{"key": "sun-bcl-sdk-1.4.2", "short_name": "Sun BCL SDK 1.4.2", "name": "Sun BCL SDK 1.4.2", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-1.4.2", "ignorable_copyrights": ["Copyright 2003, Sun Microsystems, Inc."], "ignorable_holders": ["Sun Microsystems, Inc."], "ignorable_urls": ["http://www.sun.com/policies/trademarks"]} \ No newline at end of file +{ + "key": "sun-bcl-sdk-1.4.2", + "short_name": "Sun BCL SDK 1.4.2", + "name": "Sun BCL SDK 1.4.2", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-1.4.2", + "ignorable_copyrights": [ + "Copyright 2003, Sun Microsystems, Inc." + ], + "ignorable_holders": [ + "Sun Microsystems, Inc." + ], + "ignorable_urls": [ + "http://www.sun.com/policies/trademarks" + ] +} \ No newline at end of file diff --git a/docs/sun-bcl-sdk-5.0.LICENSE b/docs/sun-bcl-sdk-5.0.LICENSE index 2d1384dab6..09025d40e5 100644 --- a/docs/sun-bcl-sdk-5.0.LICENSE +++ b/docs/sun-bcl-sdk-5.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: sun-bcl-sdk-5.0 +short_name: Sun BCL SDK 5.0 +name: Sun BCL SDK 5.0 +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: http://www.java.com/en/download/license.jsp +spdx_license_key: LicenseRef-scancode-sun-bcl-sdk-5.0 +text_urls: + - http://www.java.com/en/download/license.jsp +ignorable_copyrights: + - Copyright 2004, Sun Microsystems, Inc. +ignorable_holders: + - Sun Microsystems, Inc. +ignorable_urls: + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement for the JAVA 2 PLATFORM STANDARD EDITION DEVELOPMENT KIT 5.0 diff --git a/docs/sun-bcl-sdk-5.0.html b/docs/sun-bcl-sdk-5.0.html index 92c3e748f9..61d16b7ee5 100644 --- a/docs/sun-bcl-sdk-5.0.html +++ b/docs/sun-bcl-sdk-5.0.html @@ -213,7 +213,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-sdk-5.0.json b/docs/sun-bcl-sdk-5.0.json index 5e69bd1430..f5f50d09c0 100644 --- a/docs/sun-bcl-sdk-5.0.json +++ b/docs/sun-bcl-sdk-5.0.json @@ -1 +1,21 @@ -{"key": "sun-bcl-sdk-5.0", "short_name": "Sun BCL SDK 5.0", "name": "Sun BCL SDK 5.0", "category": "Proprietary Free", "owner": "Oracle (Sun)", "homepage_url": "http://www.java.com/en/download/license.jsp", "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-5.0", "text_urls": ["http://www.java.com/en/download/license.jsp"], "ignorable_copyrights": ["Copyright 2004, Sun Microsystems, Inc."], "ignorable_holders": ["Sun Microsystems, Inc."], "ignorable_urls": ["http://www.sun.com/policies/trademarks"]} \ No newline at end of file +{ + "key": "sun-bcl-sdk-5.0", + "short_name": "Sun BCL SDK 5.0", + "name": "Sun BCL SDK 5.0", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "homepage_url": "http://www.java.com/en/download/license.jsp", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-5.0", + "text_urls": [ + "http://www.java.com/en/download/license.jsp" + ], + "ignorable_copyrights": [ + "Copyright 2004, Sun Microsystems, Inc." + ], + "ignorable_holders": [ + "Sun Microsystems, Inc." + ], + "ignorable_urls": [ + "http://www.sun.com/policies/trademarks" + ] +} \ No newline at end of file diff --git a/docs/sun-bcl-sdk-6.0.LICENSE b/docs/sun-bcl-sdk-6.0.LICENSE index c588d62f82..d752143cf4 100644 --- a/docs/sun-bcl-sdk-6.0.LICENSE +++ b/docs/sun-bcl-sdk-6.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: sun-bcl-sdk-6.0 +short_name: Sun BCL SDK 6.0 +name: Sun BCL SDK 6.0 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-sdk-6.0 +ignorable_copyrights: + - Copyright 2006, Sun Microsystems, Inc. +ignorable_holders: + - Sun Microsystems, Inc. +ignorable_urls: + - http://java.com/data + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement for the JAVA SE DEVELOPMENT KIT (JDK), VERSION 6 diff --git a/docs/sun-bcl-sdk-6.0.html b/docs/sun-bcl-sdk-6.0.html index a032e3dd40..42c424936c 100644 --- a/docs/sun-bcl-sdk-6.0.html +++ b/docs/sun-bcl-sdk-6.0.html @@ -198,7 +198,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-sdk-6.0.json b/docs/sun-bcl-sdk-6.0.json index cee71c1ad0..35c74e3f94 100644 --- a/docs/sun-bcl-sdk-6.0.json +++ b/docs/sun-bcl-sdk-6.0.json @@ -1 +1,18 @@ -{"key": "sun-bcl-sdk-6.0", "short_name": "Sun BCL SDK 6.0", "name": "Sun BCL SDK 6.0", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-6.0", "ignorable_copyrights": ["Copyright 2006, Sun Microsystems, Inc."], "ignorable_holders": ["Sun Microsystems, Inc."], "ignorable_urls": ["http://java.com/data", "http://www.sun.com/policies/trademarks"]} \ No newline at end of file +{ + "key": "sun-bcl-sdk-6.0", + "short_name": "Sun BCL SDK 6.0", + "name": "Sun BCL SDK 6.0", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-6.0", + "ignorable_copyrights": [ + "Copyright 2006, Sun Microsystems, Inc." + ], + "ignorable_holders": [ + "Sun Microsystems, Inc." + ], + "ignorable_urls": [ + "http://java.com/data", + "http://www.sun.com/policies/trademarks" + ] +} \ No newline at end of file diff --git a/docs/sun-bcl-web-start.LICENSE b/docs/sun-bcl-web-start.LICENSE index 3489cd6b11..8a8528df2d 100644 --- a/docs/sun-bcl-web-start.LICENSE +++ b/docs/sun-bcl-web-start.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-bcl-web-start +short_name: Sun BCL Web Start +name: Sun BCL Web Start +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-web-start +ignorable_urls: + - http://www.sun.com/policies/trademarks +--- + JAVATM WEB START VERSION 1.2.x Sun Microsystems, Inc. Binary Code License Agreement diff --git a/docs/sun-bcl-web-start.html b/docs/sun-bcl-web-start.html index 9033d8e555..e0d0f085c7 100644 --- a/docs/sun-bcl-web-start.html +++ b/docs/sun-bcl-web-start.html @@ -180,7 +180,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bcl-web-start.json b/docs/sun-bcl-web-start.json index 7fe0fc1e6a..6a91ff8520 100644 --- a/docs/sun-bcl-web-start.json +++ b/docs/sun-bcl-web-start.json @@ -1 +1,11 @@ -{"key": "sun-bcl-web-start", "short_name": "Sun BCL Web Start", "name": "Sun BCL Web Start", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-bcl-web-start", "ignorable_urls": ["http://www.sun.com/policies/trademarks"]} \ No newline at end of file +{ + "key": "sun-bcl-web-start", + "short_name": "Sun BCL Web Start", + "name": "Sun BCL Web Start", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-web-start", + "ignorable_urls": [ + "http://www.sun.com/policies/trademarks" + ] +} \ No newline at end of file diff --git a/docs/sun-bsd-extra.LICENSE b/docs/sun-bsd-extra.LICENSE index 02f15b18fa..545a181d42 100644 --- a/docs/sun-bsd-extra.LICENSE +++ b/docs/sun-bsd-extra.LICENSE @@ -1,3 +1,13 @@ +--- +key: sun-bsd-extra +short_name: Sun BSD-Style with Additional Restrictions +name: Sun BSD-Style with Additional Restrictions +category: Free Restricted +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bsd-extra +minimum_coverage: 50 +--- + Sun grants you ("Licensee") a non-exclusive, royalty free, license to use, modify and redistribute this software in source and binary code form, provided that diff --git a/docs/sun-bsd-extra.html b/docs/sun-bsd-extra.html index bda2b2a8b4..ba3fa9c272 100644 --- a/docs/sun-bsd-extra.html +++ b/docs/sun-bsd-extra.html @@ -151,7 +151,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bsd-extra.json b/docs/sun-bsd-extra.json index c231bc0581..a61dd693cd 100644 --- a/docs/sun-bsd-extra.json +++ b/docs/sun-bsd-extra.json @@ -1 +1,9 @@ -{"key": "sun-bsd-extra", "short_name": "Sun BSD-Style with Additional Restrictions", "name": "Sun BSD-Style with Additional Restrictions", "category": "Free Restricted", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-bsd-extra", "minimum_coverage": 50} \ No newline at end of file +{ + "key": "sun-bsd-extra", + "short_name": "Sun BSD-Style with Additional Restrictions", + "name": "Sun BSD-Style with Additional Restrictions", + "category": "Free Restricted", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-bsd-extra", + "minimum_coverage": 50 +} \ No newline at end of file diff --git a/docs/sun-bsd-no-nuclear.LICENSE b/docs/sun-bsd-no-nuclear.LICENSE index 859af4b9d4..e8a8f72bde 100644 --- a/docs/sun-bsd-no-nuclear.LICENSE +++ b/docs/sun-bsd-no-nuclear.LICENSE @@ -1,3 +1,16 @@ +--- +key: sun-bsd-no-nuclear +short_name: Sun BSD-Style with Nuclear Restrictions +name: Sun BSD-Style with Nuclear Restrictions +category: Free Restricted +owner: Oracle (Sun) +spdx_license_key: BSD-3-Clause-No-Nuclear-License +other_urls: + - http://download.oracle.com/otn-pub/java/licenses/bsd.txt?AuthParam=1467140197_43d516ce1776bd08a58235a7785be1cc + - https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/sun-bsd-no-nuclear.html b/docs/sun-bsd-no-nuclear.html index f5a244d856..d74f372cb5 100644 --- a/docs/sun-bsd-no-nuclear.html +++ b/docs/sun-bsd-no-nuclear.html @@ -166,7 +166,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-bsd-no-nuclear.json b/docs/sun-bsd-no-nuclear.json index 7e475700b9..cc361efc46 100644 --- a/docs/sun-bsd-no-nuclear.json +++ b/docs/sun-bsd-no-nuclear.json @@ -1 +1,13 @@ -{"key": "sun-bsd-no-nuclear", "short_name": "Sun BSD-Style with Nuclear Restrictions", "name": "Sun BSD-Style with Nuclear Restrictions", "category": "Free Restricted", "owner": "Oracle (Sun)", "spdx_license_key": "BSD-3-Clause-No-Nuclear-License", "other_urls": ["http://download.oracle.com/otn-pub/java/licenses/bsd.txt?AuthParam=1467140197_43d516ce1776bd08a58235a7785be1cc", "https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt"], "minimum_coverage": 90} \ No newline at end of file +{ + "key": "sun-bsd-no-nuclear", + "short_name": "Sun BSD-Style with Nuclear Restrictions", + "name": "Sun BSD-Style with Nuclear Restrictions", + "category": "Free Restricted", + "owner": "Oracle (Sun)", + "spdx_license_key": "BSD-3-Clause-No-Nuclear-License", + "other_urls": [ + "http://download.oracle.com/otn-pub/java/licenses/bsd.txt?AuthParam=1467140197_43d516ce1776bd08a58235a7785be1cc", + "https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt" + ], + "minimum_coverage": 90 +} \ No newline at end of file diff --git a/docs/sun-communications-api.LICENSE b/docs/sun-communications-api.LICENSE index 400ba4c421..a183e1e2c5 100644 --- a/docs/sun-communications-api.LICENSE +++ b/docs/sun-communications-api.LICENSE @@ -1,3 +1,18 @@ +--- +key: sun-communications-api +short_name: Sun Communications API +name: Sun Communications API +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-communications-api +ignorable_copyrights: + - Copyright Sun Microsystems, Inc. +ignorable_holders: + - Sun Microsystems, Inc. +ignorable_urls: + - http://java.sun.com/trademarks.html +--- + Sun Communications API comm.jar Java(TM) Communications API 2.0 Copyright Sun Microsystems, Inc. diff --git a/docs/sun-communications-api.html b/docs/sun-communications-api.html index ea9a315f82..c1640dd928 100644 --- a/docs/sun-communications-api.html +++ b/docs/sun-communications-api.html @@ -186,7 +186,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-communications-api.json b/docs/sun-communications-api.json index 4be38b4831..a60e0daf42 100644 --- a/docs/sun-communications-api.json +++ b/docs/sun-communications-api.json @@ -1 +1,17 @@ -{"key": "sun-communications-api", "short_name": "Sun Communications API", "name": "Sun Communications API", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-communications-api", "ignorable_copyrights": ["Copyright Sun Microsystems, Inc."], "ignorable_holders": ["Sun Microsystems, Inc."], "ignorable_urls": ["http://java.sun.com/trademarks.html"]} \ No newline at end of file +{ + "key": "sun-communications-api", + "short_name": "Sun Communications API", + "name": "Sun Communications API", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-communications-api", + "ignorable_copyrights": [ + "Copyright Sun Microsystems, Inc." + ], + "ignorable_holders": [ + "Sun Microsystems, Inc." + ], + "ignorable_urls": [ + "http://java.sun.com/trademarks.html" + ] +} \ No newline at end of file diff --git a/docs/sun-ejb-spec-2.1.LICENSE b/docs/sun-ejb-spec-2.1.LICENSE index 0ad550458a..a9b007a091 100644 --- a/docs/sun-ejb-spec-2.1.LICENSE +++ b/docs/sun-ejb-spec-2.1.LICENSE @@ -1,3 +1,18 @@ +--- +key: sun-ejb-spec-2.1 +short_name: Sun EJB Specification 2.1 +name: Sun EJB Specification 2.1 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-ejb-spec-2.1 +minimum_coverage: 30 +ignorable_copyrights: + - Copyright 2003 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, + U.S.A +ignorable_holders: + - Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, U.S.A +--- + Enterprise JavaBeansTM Specification ("Specification") Version: 2.1 Status: FCS diff --git a/docs/sun-ejb-spec-2.1.html b/docs/sun-ejb-spec-2.1.html index 674fbf8641..6f07c9628d 100644 --- a/docs/sun-ejb-spec-2.1.html +++ b/docs/sun-ejb-spec-2.1.html @@ -190,7 +190,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-ejb-spec-2.1.json b/docs/sun-ejb-spec-2.1.json index 3ac71a6e37..b9d59077e0 100644 --- a/docs/sun-ejb-spec-2.1.json +++ b/docs/sun-ejb-spec-2.1.json @@ -1 +1,15 @@ -{"key": "sun-ejb-spec-2.1", "short_name": "Sun EJB Specification 2.1", "name": "Sun EJB Specification 2.1", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-ejb-spec-2.1", "minimum_coverage": 30, "ignorable_copyrights": ["Copyright 2003 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, U.S.A"], "ignorable_holders": ["Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, U.S.A"]} \ No newline at end of file +{ + "key": "sun-ejb-spec-2.1", + "short_name": "Sun EJB Specification 2.1", + "name": "Sun EJB Specification 2.1", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-ejb-spec-2.1", + "minimum_coverage": 30, + "ignorable_copyrights": [ + "Copyright 2003 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, U.S.A" + ], + "ignorable_holders": [ + "Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, U.S.A" + ] +} \ No newline at end of file diff --git a/docs/sun-ejb-spec-3.0.LICENSE b/docs/sun-ejb-spec-3.0.LICENSE index 3af9da41e1..3eb3c44305 100644 --- a/docs/sun-ejb-spec-3.0.LICENSE +++ b/docs/sun-ejb-spec-3.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: sun-ejb-spec-3.0 +short_name: Sun EJB Specification 3.0 +name: Sun EJB Specification 3.0 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-ejb-spec-3.0 +ignorable_copyrights: + - Copyright 2006 SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, + U.S.A +ignorable_holders: + - SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, U.S.A +--- + Specification: JSR-000220 Enterprise JavaBeans v.3.0 ("Specification" Version: 3.0 Status: Final Release @@ -181,4 +195,4 @@ relating to its subject matter during the term of this Agreement. No modification to this Agreement will be binding, unless in writing and signed by an authorized representative of each party. -Rev. April, 2006 Sun/Final/Full +Rev. April, 2006 Sun/Final/Full \ No newline at end of file diff --git a/docs/sun-ejb-spec-3.0.html b/docs/sun-ejb-spec-3.0.html index e584a87d91..3acac13b65 100644 --- a/docs/sun-ejb-spec-3.0.html +++ b/docs/sun-ejb-spec-3.0.html @@ -309,8 +309,7 @@ modification to this Agreement will be binding, unless in writing and signed by an authorized representative of each party. -Rev. April, 2006 Sun/Final/Full - +Rev. April, 2006 Sun/Final/Full
@@ -322,7 +321,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-ejb-spec-3.0.json b/docs/sun-ejb-spec-3.0.json index 1fed338fd4..29036f3112 100644 --- a/docs/sun-ejb-spec-3.0.json +++ b/docs/sun-ejb-spec-3.0.json @@ -1 +1,14 @@ -{"key": "sun-ejb-spec-3.0", "short_name": "Sun EJB Specification 3.0", "name": "Sun EJB Specification 3.0", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-ejb-spec-3.0", "ignorable_copyrights": ["Copyright 2006 SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, U.S.A"], "ignorable_holders": ["SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, U.S.A"]} \ No newline at end of file +{ + "key": "sun-ejb-spec-3.0", + "short_name": "Sun EJB Specification 3.0", + "name": "Sun EJB Specification 3.0", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-ejb-spec-3.0", + "ignorable_copyrights": [ + "Copyright 2006 SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, U.S.A" + ], + "ignorable_holders": [ + "SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, U.S.A" + ] +} \ No newline at end of file diff --git a/docs/sun-entitlement-03-15.LICENSE b/docs/sun-entitlement-03-15.LICENSE index 7f83da0659..06bf246943 100644 --- a/docs/sun-entitlement-03-15.LICENSE +++ b/docs/sun-entitlement-03-15.LICENSE @@ -1,3 +1,16 @@ +--- +key: sun-entitlement-03-15 +short_name: Sun Entitlement 3 plus 15 +name: Sun Entitlement 3 plus 15 +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: http://download.java.net/media/jai-imageio/builds/release/1.1/LICENSE-jai_imageio.txt +spdx_license_key: LicenseRef-scancode-sun-entitlement-03-15 +ignorable_urls: + - http://www.java.net/ + - http://www.sun.com/service/servicelist +--- + License Agreement for {ProductName} Sun Microsystems, Inc. ("Sun") ENTITLEMENT for SOFTWARE diff --git a/docs/sun-entitlement-03-15.html b/docs/sun-entitlement-03-15.html index b678e8ba5d..8330d0d055 100644 --- a/docs/sun-entitlement-03-15.html +++ b/docs/sun-entitlement-03-15.html @@ -256,7 +256,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-entitlement-03-15.json b/docs/sun-entitlement-03-15.json index ce8d05dbeb..9b7da93f44 100644 --- a/docs/sun-entitlement-03-15.json +++ b/docs/sun-entitlement-03-15.json @@ -1 +1,13 @@ -{"key": "sun-entitlement-03-15", "short_name": "Sun Entitlement 3 plus 15", "name": "Sun Entitlement 3 plus 15", "category": "Proprietary Free", "owner": "Oracle (Sun)", "homepage_url": "http://download.java.net/media/jai-imageio/builds/release/1.1/LICENSE-jai_imageio.txt", "spdx_license_key": "LicenseRef-scancode-sun-entitlement-03-15", "ignorable_urls": ["http://www.java.net/", "http://www.sun.com/service/servicelist"]} \ No newline at end of file +{ + "key": "sun-entitlement-03-15", + "short_name": "Sun Entitlement 3 plus 15", + "name": "Sun Entitlement 3 plus 15", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "homepage_url": "http://download.java.net/media/jai-imageio/builds/release/1.1/LICENSE-jai_imageio.txt", + "spdx_license_key": "LicenseRef-scancode-sun-entitlement-03-15", + "ignorable_urls": [ + "http://www.java.net/", + "http://www.sun.com/service/servicelist" + ] +} \ No newline at end of file diff --git a/docs/sun-entitlement-jaf.LICENSE b/docs/sun-entitlement-jaf.LICENSE index 153fe2de3f..6f1a703913 100644 --- a/docs/sun-entitlement-jaf.LICENSE +++ b/docs/sun-entitlement-jaf.LICENSE @@ -1,3 +1,15 @@ +--- +key: sun-entitlement-jaf +short_name: Sun Entitlement JAF +name: Sun Entitlement JAF +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-entitlement-jaf +ignorable_urls: + - http://www.java.net/ + - http://www.sun.com/service/servicelist +--- + A. Sun Microsystems, Inc. ("Sun") ENTITLEMENT for SOFTWARE Licensee/Company: Entity receiving Software. diff --git a/docs/sun-entitlement-jaf.html b/docs/sun-entitlement-jaf.html index 244a0ee841..088a0e36b7 100644 --- a/docs/sun-entitlement-jaf.html +++ b/docs/sun-entitlement-jaf.html @@ -430,7 +430,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-entitlement-jaf.json b/docs/sun-entitlement-jaf.json index 6377ec25e7..5ee1bb7012 100644 --- a/docs/sun-entitlement-jaf.json +++ b/docs/sun-entitlement-jaf.json @@ -1 +1,12 @@ -{"key": "sun-entitlement-jaf", "short_name": "Sun Entitlement JAF", "name": "Sun Entitlement JAF", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-entitlement-jaf", "ignorable_urls": ["http://www.java.net/", "http://www.sun.com/service/servicelist"]} \ No newline at end of file +{ + "key": "sun-entitlement-jaf", + "short_name": "Sun Entitlement JAF", + "name": "Sun Entitlement JAF", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-entitlement-jaf", + "ignorable_urls": [ + "http://www.java.net/", + "http://www.sun.com/service/servicelist" + ] +} \ No newline at end of file diff --git a/docs/sun-glassfish.LICENSE b/docs/sun-glassfish.LICENSE index e40cf8ee35..9a04a33ad4 100644 --- a/docs/sun-glassfish.LICENSE +++ b/docs/sun-glassfish.LICENSE @@ -1,3 +1,18 @@ +--- +key: sun-glassfish +short_name: Sun GlassFish License +name: Sun GlassFish License +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: https://glassfish.dev.java.net/public/BinariesLicense.html +spdx_license_key: LicenseRef-scancode-sun-glassfish +text_urls: + - https://glassfish.dev.java.net/public/BinariesLicense.html +minimum_coverage: 80 +ignorable_urls: + - http://www.java.net/ +--- + Sun GlassFish License 1. Definitions. diff --git a/docs/sun-glassfish.html b/docs/sun-glassfish.html index afab600817..1139f54cae 100644 --- a/docs/sun-glassfish.html +++ b/docs/sun-glassfish.html @@ -233,7 +233,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-glassfish.json b/docs/sun-glassfish.json index 8eb641d3dc..9aec7057b5 100644 --- a/docs/sun-glassfish.json +++ b/docs/sun-glassfish.json @@ -1 +1,16 @@ -{"key": "sun-glassfish", "short_name": "Sun GlassFish License", "name": "Sun GlassFish License", "category": "Proprietary Free", "owner": "Oracle (Sun)", "homepage_url": "https://glassfish.dev.java.net/public/BinariesLicense.html", "spdx_license_key": "LicenseRef-scancode-sun-glassfish", "text_urls": ["https://glassfish.dev.java.net/public/BinariesLicense.html"], "minimum_coverage": 80, "ignorable_urls": ["http://www.java.net/"]} \ No newline at end of file +{ + "key": "sun-glassfish", + "short_name": "Sun GlassFish License", + "name": "Sun GlassFish License", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "homepage_url": "https://glassfish.dev.java.net/public/BinariesLicense.html", + "spdx_license_key": "LicenseRef-scancode-sun-glassfish", + "text_urls": [ + "https://glassfish.dev.java.net/public/BinariesLicense.html" + ], + "minimum_coverage": 80, + "ignorable_urls": [ + "http://www.java.net/" + ] +} \ No newline at end of file diff --git a/docs/sun-iiop.LICENSE b/docs/sun-iiop.LICENSE index fa53ac97a5..7009736a80 100644 --- a/docs/sun-iiop.LICENSE +++ b/docs/sun-iiop.LICENSE @@ -1,3 +1,12 @@ +--- +key: sun-iiop +short_name: Sun IIOP License +name: Sun IIOP License +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-iiop +--- + This software product (LICENSED PRODUCT), implementing the Object Management Group's "Internet Inter-ORB Protocol", is protected by copyright and is distributed under the following license restricting its use. Portions of LICENSED PRODUCT may be protected by one or more U.S. or foreign patents, or pending applications. LICENSED PRODUCT is made available for your use provided that you include this license and copyright notice on all media and documentation and the software program in which this product is incorporated in whole or part. @@ -18,4 +27,4 @@ IN NO EVENT WILL SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES BE LIABLE FOR ANY Use, duplication, or disclosure by the government is subject to restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 and FAR 52.227-19. -SunOS, SunSoft, Sun, Solaris, Sun Microsystems and the Sun logo are trademarks or registered trademarks of Sun Microsystems, Inc. +SunOS, SunSoft, Sun, Solaris, Sun Microsystems and the Sun logo are trademarks or registered trademarks of Sun Microsystems, Inc. \ No newline at end of file diff --git a/docs/sun-iiop.html b/docs/sun-iiop.html index 7a53ef05f8..60ba8339de 100644 --- a/docs/sun-iiop.html +++ b/docs/sun-iiop.html @@ -128,8 +128,7 @@ Use, duplication, or disclosure by the government is subject to restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 and FAR 52.227-19. -SunOS, SunSoft, Sun, Solaris, Sun Microsystems and the Sun logo are trademarks or registered trademarks of Sun Microsystems, Inc. - +SunOS, SunSoft, Sun, Solaris, Sun Microsystems and the Sun logo are trademarks or registered trademarks of Sun Microsystems, Inc.
@@ -141,7 +140,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-iiop.json b/docs/sun-iiop.json index 9ffb0ceecc..991c5b7026 100644 --- a/docs/sun-iiop.json +++ b/docs/sun-iiop.json @@ -1 +1,8 @@ -{"key": "sun-iiop", "short_name": "Sun IIOP License", "name": "Sun IIOP License", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-iiop"} \ No newline at end of file +{ + "key": "sun-iiop", + "short_name": "Sun IIOP License", + "name": "Sun IIOP License", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-iiop" +} \ No newline at end of file diff --git a/docs/sun-java-transaction-api.LICENSE b/docs/sun-java-transaction-api.LICENSE index cdb0c34850..21cc0ee505 100644 --- a/docs/sun-java-transaction-api.LICENSE +++ b/docs/sun-java-transaction-api.LICENSE @@ -1,3 +1,15 @@ +--- +key: sun-java-transaction-api +short_name: Sun Java Transaction API License +name: Sun Java Transaction API License +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download +spdx_license_key: LicenseRef-scancode-sun-java-transaction-api +ignorable_urls: + - http://java.sun.com/trademarks.html +--- + License Agreement SUN MICROSYSTEMS, INC. (``SUN'') IS WILLING TO LICENSE ITS Java Transaction API diff --git a/docs/sun-java-transaction-api.html b/docs/sun-java-transaction-api.html index 5a355b9011..4ddddb8369 100644 --- a/docs/sun-java-transaction-api.html +++ b/docs/sun-java-transaction-api.html @@ -223,7 +223,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-java-transaction-api.json b/docs/sun-java-transaction-api.json index d8603b7abd..87aeac86f0 100644 --- a/docs/sun-java-transaction-api.json +++ b/docs/sun-java-transaction-api.json @@ -1 +1,12 @@ -{"key": "sun-java-transaction-api", "short_name": "Sun Java Transaction API License", "name": "Sun Java Transaction API License", "category": "Proprietary Free", "owner": "Oracle (Sun)", "homepage_url": "http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download", "spdx_license_key": "LicenseRef-scancode-sun-java-transaction-api", "ignorable_urls": ["http://java.sun.com/trademarks.html"]} \ No newline at end of file +{ + "key": "sun-java-transaction-api", + "short_name": "Sun Java Transaction API License", + "name": "Sun Java Transaction API License", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "homepage_url": "http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download", + "spdx_license_key": "LicenseRef-scancode-sun-java-transaction-api", + "ignorable_urls": [ + "http://java.sun.com/trademarks.html" + ] +} \ No newline at end of file diff --git a/docs/sun-java-web-services-dev-pack-1.6.LICENSE b/docs/sun-java-web-services-dev-pack-1.6.LICENSE index 044e408aa6..2753117ac1 100644 --- a/docs/sun-java-web-services-dev-pack-1.6.LICENSE +++ b/docs/sun-java-web-services-dev-pack-1.6.LICENSE @@ -1,3 +1,17 @@ +--- +key: sun-java-web-services-dev-pack-1.6 +short_name: Sun Java Web Services Developer Pack 1.6 +name: Sun Java Web Services Developer Pack 1.6 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-java-web-services-dev-1.6 +other_spdx_license_keys: + - LicenseRef-scancode-sun-java-web-services-dev-pack-1.6 +ignorable_urls: + - http://www.java.sun.com/jdk/index.html + - http://www.sun.com/policies/trademarks +--- + JAVA WEB SERVICES DEVELOPER PACK, VERSION 1.6 Sun Microsystems Inc. Software License Agreement diff --git a/docs/sun-java-web-services-dev-pack-1.6.html b/docs/sun-java-web-services-dev-pack-1.6.html index 03de8d1d83..87a89166b2 100644 --- a/docs/sun-java-web-services-dev-pack-1.6.html +++ b/docs/sun-java-web-services-dev-pack-1.6.html @@ -219,7 +219,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-java-web-services-dev-pack-1.6.json b/docs/sun-java-web-services-dev-pack-1.6.json index 2adedb593c..101d13d675 100644 --- a/docs/sun-java-web-services-dev-pack-1.6.json +++ b/docs/sun-java-web-services-dev-pack-1.6.json @@ -1 +1,15 @@ -{"key": "sun-java-web-services-dev-pack-1.6", "short_name": "Sun Java Web Services Developer Pack 1.6", "name": "Sun Java Web Services Developer Pack 1.6", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-java-web-services-dev-1.6", "other_spdx_license_keys": ["LicenseRef-scancode-sun-java-web-services-dev-pack-1.6"], "ignorable_urls": ["http://www.java.sun.com/jdk/index.html", "http://www.sun.com/policies/trademarks"]} \ No newline at end of file +{ + "key": "sun-java-web-services-dev-pack-1.6", + "short_name": "Sun Java Web Services Developer Pack 1.6", + "name": "Sun Java Web Services Developer Pack 1.6", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-java-web-services-dev-1.6", + "other_spdx_license_keys": [ + "LicenseRef-scancode-sun-java-web-services-dev-pack-1.6" + ], + "ignorable_urls": [ + "http://www.java.sun.com/jdk/index.html", + "http://www.sun.com/policies/trademarks" + ] +} \ No newline at end of file diff --git a/docs/sun-javamail.LICENSE b/docs/sun-javamail.LICENSE index d39a352338..ce08407724 100644 --- a/docs/sun-javamail.LICENSE +++ b/docs/sun-javamail.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-javamail +short_name: Sun JavaMail +name: Sun JavaMail +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-javamail +ignorable_urls: + - http://java.sun.com/trademarks.html +--- + Sun JavaMail License Agreement diff --git a/docs/sun-javamail.html b/docs/sun-javamail.html index 3c341cd6b6..ea88a7e108 100644 --- a/docs/sun-javamail.html +++ b/docs/sun-javamail.html @@ -150,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-javamail.json b/docs/sun-javamail.json index 0c2aecd9e1..72d7d63714 100644 --- a/docs/sun-javamail.json +++ b/docs/sun-javamail.json @@ -1 +1,11 @@ -{"key": "sun-javamail", "short_name": "Sun JavaMail", "name": "Sun JavaMail", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-javamail", "ignorable_urls": ["http://java.sun.com/trademarks.html"]} \ No newline at end of file +{ + "key": "sun-javamail", + "short_name": "Sun JavaMail", + "name": "Sun JavaMail", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-javamail", + "ignorable_urls": [ + "http://java.sun.com/trademarks.html" + ] +} \ No newline at end of file diff --git a/docs/sun-jsr-spec-04-2006.LICENSE b/docs/sun-jsr-spec-04-2006.LICENSE index 15d355356d..34b29430b2 100644 --- a/docs/sun-jsr-spec-04-2006.LICENSE +++ b/docs/sun-jsr-spec-04-2006.LICENSE @@ -1,3 +1,18 @@ +--- +key: sun-jsr-spec-04-2006 +short_name: Sun JSR Specification 04-2006 +name: Sun JSR Specification License April 2006 +category: Proprietary Free +owner: Oracle (Sun) +notes: a highly similar earlier version was published in January 2006. +spdx_license_key: LicenseRef-scancode-sun-jsr-spec-04-2006 +ignorable_copyrights: + - Copyright 2006 SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, + U.S.A +ignorable_holders: + - SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, U.S.A +--- + Copyright 2006 SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, U.S.A All rights reserved. diff --git a/docs/sun-jsr-spec-04-2006.html b/docs/sun-jsr-spec-04-2006.html index d18096d7c7..53a6b9520a 100644 --- a/docs/sun-jsr-spec-04-2006.html +++ b/docs/sun-jsr-spec-04-2006.html @@ -323,7 +323,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-jsr-spec-04-2006.json b/docs/sun-jsr-spec-04-2006.json index 47f60a7c4c..4f5c5ea22f 100644 --- a/docs/sun-jsr-spec-04-2006.json +++ b/docs/sun-jsr-spec-04-2006.json @@ -1 +1,15 @@ -{"key": "sun-jsr-spec-04-2006", "short_name": "Sun JSR Specification 04-2006", "name": "Sun JSR Specification License April 2006", "category": "Proprietary Free", "owner": "Oracle (Sun)", "notes": "a highly similar earlier version was published in January 2006.", "spdx_license_key": "LicenseRef-scancode-sun-jsr-spec-04-2006", "ignorable_copyrights": ["Copyright 2006 SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, U.S.A"], "ignorable_holders": ["SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, U.S.A"]} \ No newline at end of file +{ + "key": "sun-jsr-spec-04-2006", + "short_name": "Sun JSR Specification 04-2006", + "name": "Sun JSR Specification License April 2006", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "notes": "a highly similar earlier version was published in January 2006.", + "spdx_license_key": "LicenseRef-scancode-sun-jsr-spec-04-2006", + "ignorable_copyrights": [ + "Copyright 2006 SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, U.S.A" + ], + "ignorable_holders": [ + "SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, U.S.A" + ] +} \ No newline at end of file diff --git a/docs/sun-jta-spec-1.0.1.LICENSE b/docs/sun-jta-spec-1.0.1.LICENSE index b43a014df1..8e650ec794 100644 --- a/docs/sun-jta-spec-1.0.1.LICENSE +++ b/docs/sun-jta-spec-1.0.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: sun-jta-spec-1.0.1 +short_name: Sun JTA Specification License 1.0.1 +name: Sun JTA Specification License v1.0.1 +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download +spdx_license_key: LicenseRef-scancode-sun-jta-spec-1.0.1 +ignorable_copyrights: + - Copyright 1997-1999 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California + 94303 U.S.A. +ignorable_holders: + - Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California 94303 U.S.A. +ignorable_urls: + - http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download +--- + Sun JTA Specification License v1.0.1 http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download diff --git a/docs/sun-jta-spec-1.0.1.html b/docs/sun-jta-spec-1.0.1.html index b69cf235df..d85e396ea5 100644 --- a/docs/sun-jta-spec-1.0.1.html +++ b/docs/sun-jta-spec-1.0.1.html @@ -198,7 +198,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-jta-spec-1.0.1.json b/docs/sun-jta-spec-1.0.1.json index cb08eb977c..4ce4af6c23 100644 --- a/docs/sun-jta-spec-1.0.1.json +++ b/docs/sun-jta-spec-1.0.1.json @@ -1 +1,18 @@ -{"key": "sun-jta-spec-1.0.1", "short_name": "Sun JTA Specification License 1.0.1", "name": "Sun JTA Specification License v1.0.1", "category": "Proprietary Free", "owner": "Oracle (Sun)", "homepage_url": "http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download", "spdx_license_key": "LicenseRef-scancode-sun-jta-spec-1.0.1", "ignorable_copyrights": ["Copyright 1997-1999 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California 94303 U.S.A."], "ignorable_holders": ["Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California 94303 U.S.A."], "ignorable_urls": ["http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download"]} \ No newline at end of file +{ + "key": "sun-jta-spec-1.0.1", + "short_name": "Sun JTA Specification License 1.0.1", + "name": "Sun JTA Specification License v1.0.1", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "homepage_url": "http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download", + "spdx_license_key": "LicenseRef-scancode-sun-jta-spec-1.0.1", + "ignorable_copyrights": [ + "Copyright 1997-1999 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California 94303 U.S.A." + ], + "ignorable_holders": [ + "Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California 94303 U.S.A." + ], + "ignorable_urls": [ + "http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download" + ] +} \ No newline at end of file diff --git a/docs/sun-jta-spec-1.0.1b.LICENSE b/docs/sun-jta-spec-1.0.1b.LICENSE index 4d73ee5fbc..1d0b224698 100644 --- a/docs/sun-jta-spec-1.0.1b.LICENSE +++ b/docs/sun-jta-spec-1.0.1b.LICENSE @@ -1,3 +1,18 @@ +--- +key: sun-jta-spec-1.0.1b +short_name: Sun JTA Specification License 1.0.1B +name: Sun JTA Specification License v1.0.1B +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: http://download.oracle.com/otndocs/jcp/7083-jta-1.0.1B-mr-spec-oth-JSpec/7083-jta-1.0.1B-mr-spec-oth-JSpec-license.html +spdx_license_key: LicenseRef-scancode-sun-jta-spec-1.0.1b +minimum_coverage: 30 +ignorable_copyrights: + - Copyright 2002 Sun Micro systems, Inc. +ignorable_holders: + - Sun Micro systems, Inc. +--- + Java(TM) Transaction API (JTA) Specification ("Specification") Version: 1.0.1B @@ -172,4 +187,4 @@ without limitation the Feedback for any purpose related to the Specification and fut ure versions, implementations, and test suites thereof. -(LFI#121049/Form ID#011801) +(LFI#121049/Form ID#011801) \ No newline at end of file diff --git a/docs/sun-jta-spec-1.0.1b.html b/docs/sun-jta-spec-1.0.1b.html index a432a0f7ba..d59aee5e4e 100644 --- a/docs/sun-jta-spec-1.0.1b.html +++ b/docs/sun-jta-spec-1.0.1b.html @@ -314,8 +314,7 @@ related to the Specification and fut ure versions, implementations, and test suites thereof. -(LFI#121049/Form ID#011801) - +(LFI#121049/Form ID#011801)
@@ -327,7 +326,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-jta-spec-1.0.1b.json b/docs/sun-jta-spec-1.0.1b.json index e6dca45beb..8688ebb0ad 100644 --- a/docs/sun-jta-spec-1.0.1b.json +++ b/docs/sun-jta-spec-1.0.1b.json @@ -1 +1,16 @@ -{"key": "sun-jta-spec-1.0.1b", "short_name": "Sun JTA Specification License 1.0.1B", "name": "Sun JTA Specification License v1.0.1B", "category": "Proprietary Free", "owner": "Oracle (Sun)", "homepage_url": "http://download.oracle.com/otndocs/jcp/7083-jta-1.0.1B-mr-spec-oth-JSpec/7083-jta-1.0.1B-mr-spec-oth-JSpec-license.html", "spdx_license_key": "LicenseRef-scancode-sun-jta-spec-1.0.1b", "minimum_coverage": 30, "ignorable_copyrights": ["Copyright 2002 Sun Micro systems, Inc."], "ignorable_holders": ["Sun Micro systems, Inc."]} \ No newline at end of file +{ + "key": "sun-jta-spec-1.0.1b", + "short_name": "Sun JTA Specification License 1.0.1B", + "name": "Sun JTA Specification License v1.0.1B", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "homepage_url": "http://download.oracle.com/otndocs/jcp/7083-jta-1.0.1B-mr-spec-oth-JSpec/7083-jta-1.0.1B-mr-spec-oth-JSpec-license.html", + "spdx_license_key": "LicenseRef-scancode-sun-jta-spec-1.0.1b", + "minimum_coverage": 30, + "ignorable_copyrights": [ + "Copyright 2002 Sun Micro systems, Inc." + ], + "ignorable_holders": [ + "Sun Micro systems, Inc." + ] +} \ No newline at end of file diff --git a/docs/sun-no-high-risk-activities.LICENSE b/docs/sun-no-high-risk-activities.LICENSE index 25f1875048..0273aa840b 100644 --- a/docs/sun-no-high-risk-activities.LICENSE +++ b/docs/sun-no-high-risk-activities.LICENSE @@ -1,3 +1,16 @@ +--- +key: sun-no-high-risk-activities +short_name: Sun No High Risk Activities License +name: Sun No High Risk Activities License +category: Free Restricted +owner: Oracle (Sun) +homepage_url: https://web.archive.org/web/20061213092245/http://java.sun.com:80/developer/technicalArticles/Programming/sprintf/PrintfFormat.java +spdx_license_key: LicenseRef-scancode-sun-no-high-risk-activities +ignorable_urls: + - http://java.sun.com/nav/business/index.html + - http://www.sun.com/policies/trademarks/ +--- + Permission to use, copy, modify, and distribute this Software and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and without fee is hereby granted. diff --git a/docs/sun-no-high-risk-activities.html b/docs/sun-no-high-risk-activities.html index b23c37cdef..b663fe4012 100644 --- a/docs/sun-no-high-risk-activities.html +++ b/docs/sun-no-high-risk-activities.html @@ -153,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-no-high-risk-activities.json b/docs/sun-no-high-risk-activities.json index 88fd9564d5..51ee0f366a 100644 --- a/docs/sun-no-high-risk-activities.json +++ b/docs/sun-no-high-risk-activities.json @@ -1 +1,13 @@ -{"key": "sun-no-high-risk-activities", "short_name": "Sun No High Risk Activities License", "name": "Sun No High Risk Activities License", "category": "Free Restricted", "owner": "Oracle (Sun)", "homepage_url": "https://web.archive.org/web/20061213092245/http://java.sun.com:80/developer/technicalArticles/Programming/sprintf/PrintfFormat.java", "spdx_license_key": "LicenseRef-scancode-sun-no-high-risk-activities", "ignorable_urls": ["http://java.sun.com/nav/business/index.html", "http://www.sun.com/policies/trademarks/"]} \ No newline at end of file +{ + "key": "sun-no-high-risk-activities", + "short_name": "Sun No High Risk Activities License", + "name": "Sun No High Risk Activities License", + "category": "Free Restricted", + "owner": "Oracle (Sun)", + "homepage_url": "https://web.archive.org/web/20061213092245/http://java.sun.com:80/developer/technicalArticles/Programming/sprintf/PrintfFormat.java", + "spdx_license_key": "LicenseRef-scancode-sun-no-high-risk-activities", + "ignorable_urls": [ + "http://java.sun.com/nav/business/index.html", + "http://www.sun.com/policies/trademarks/" + ] +} \ No newline at end of file diff --git a/docs/sun-project-x.LICENSE b/docs/sun-project-x.LICENSE index 8ed2e0652d..1ee27d84d1 100644 --- a/docs/sun-project-x.LICENSE +++ b/docs/sun-project-x.LICENSE @@ -1,3 +1,12 @@ +--- +key: sun-project-x +short_name: Sun Project X +name: Sun Project X +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-project-x +--- + Java Project X Technology Release 2 Source Software License Agreement 1. LICENSE GRANT (A) Definition of Software diff --git a/docs/sun-project-x.html b/docs/sun-project-x.html index e5155ac7e1..a2d19026d9 100644 --- a/docs/sun-project-x.html +++ b/docs/sun-project-x.html @@ -212,7 +212,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-project-x.json b/docs/sun-project-x.json index 8f476f0ac8..4529b1c551 100644 --- a/docs/sun-project-x.json +++ b/docs/sun-project-x.json @@ -1 +1,8 @@ -{"key": "sun-project-x", "short_name": "Sun Project X", "name": "Sun Project X", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-project-x"} \ No newline at end of file +{ + "key": "sun-project-x", + "short_name": "Sun Project X", + "name": "Sun Project X", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-project-x" +} \ No newline at end of file diff --git a/docs/sun-prop-non-commercial.LICENSE b/docs/sun-prop-non-commercial.LICENSE index 651cf5e1b1..5219822fcb 100644 --- a/docs/sun-prop-non-commercial.LICENSE +++ b/docs/sun-prop-non-commercial.LICENSE @@ -1,3 +1,12 @@ +--- +key: sun-prop-non-commercial +short_name: Sun Proprietary Non-Commercial License +name: Sun Proprietary Non-Commercial License +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-prop-non-commercial +--- + Permission to use, copy, modify, and distribute this software and its documentation for NON-COMMERCIAL purposes and without fee is hereby granted provided that this copyright notice @@ -14,4 +23,4 @@ THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR -DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. +DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. \ No newline at end of file diff --git a/docs/sun-prop-non-commercial.html b/docs/sun-prop-non-commercial.html index c3a30e3ad6..df7cb5d751 100644 --- a/docs/sun-prop-non-commercial.html +++ b/docs/sun-prop-non-commercial.html @@ -124,8 +124,7 @@ TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR -DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. - +DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
@@ -137,7 +136,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-prop-non-commercial.json b/docs/sun-prop-non-commercial.json index 86399eddaa..08df55bb93 100644 --- a/docs/sun-prop-non-commercial.json +++ b/docs/sun-prop-non-commercial.json @@ -1 +1,8 @@ -{"key": "sun-prop-non-commercial", "short_name": "Sun Proprietary Non-Commercial License", "name": "Sun Proprietary Non-Commercial License", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-prop-non-commercial"} \ No newline at end of file +{ + "key": "sun-prop-non-commercial", + "short_name": "Sun Proprietary Non-Commercial License", + "name": "Sun Proprietary Non-Commercial License", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-prop-non-commercial" +} \ No newline at end of file diff --git a/docs/sun-proprietary-jdk.LICENSE b/docs/sun-proprietary-jdk.LICENSE index e69de29bb2..a808a14135 100644 --- a/docs/sun-proprietary-jdk.LICENSE +++ b/docs/sun-proprietary-jdk.LICENSE @@ -0,0 +1,10 @@ +--- +key: sun-proprietary-jdk +is_deprecated: yes +short_name: Sun proprietary notice for Java sources +name: Sun proprietary notice for Java sources +category: Commercial +owner: Oracle Corporation +--- + +SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. \ No newline at end of file diff --git a/docs/sun-proprietary-jdk.html b/docs/sun-proprietary-jdk.html index d5ca8f187f..ada1817850 100644 --- a/docs/sun-proprietary-jdk.html +++ b/docs/sun-proprietary-jdk.html @@ -108,7 +108,7 @@
license_text
-
+
SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
@@ -120,7 +120,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-proprietary-jdk.json b/docs/sun-proprietary-jdk.json index 8f55a3e8df..9ea7b33a63 100644 --- a/docs/sun-proprietary-jdk.json +++ b/docs/sun-proprietary-jdk.json @@ -1 +1,8 @@ -{"key": "sun-proprietary-jdk", "is_deprecated": true, "short_name": "Sun proprietary notice for Java sources", "name": "Sun proprietary notice for Java sources", "category": "Commercial", "owner": "Oracle Corporation"} \ No newline at end of file +{ + "key": "sun-proprietary-jdk", + "is_deprecated": true, + "short_name": "Sun proprietary notice for Java sources", + "name": "Sun proprietary notice for Java sources", + "category": "Commercial", + "owner": "Oracle Corporation" +} \ No newline at end of file diff --git a/docs/sun-rpc.LICENSE b/docs/sun-rpc.LICENSE index baece515d8..bdad6bc333 100644 --- a/docs/sun-rpc.LICENSE +++ b/docs/sun-rpc.LICENSE @@ -1,3 +1,15 @@ +--- +key: sun-rpc +short_name: Sun RPC License +name: Sun RPC License +category: Permissive +owner: Oracle (Sun) +homepage_url: http://www.opensource.apple.com/license/sunrpc/ +spdx_license_key: LicenseRef-scancode-sun-rpc +text_urls: + - http://www.opensource.apple.com/license/sunrpc/ +--- + Sun RPC is a product of Sun Microsystems, Inc. and is provided for unrestricted use provided that this legend is included on all tape media and as a part of the software program in whole or part. Users diff --git a/docs/sun-rpc.html b/docs/sun-rpc.html index b295a993c6..50e2c14f03 100644 --- a/docs/sun-rpc.html +++ b/docs/sun-rpc.html @@ -161,7 +161,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-rpc.json b/docs/sun-rpc.json index 6c84e0a243..febdad418e 100644 --- a/docs/sun-rpc.json +++ b/docs/sun-rpc.json @@ -1 +1,12 @@ -{"key": "sun-rpc", "short_name": "Sun RPC License", "name": "Sun RPC License", "category": "Permissive", "owner": "Oracle (Sun)", "homepage_url": "http://www.opensource.apple.com/license/sunrpc/", "spdx_license_key": "LicenseRef-scancode-sun-rpc", "text_urls": ["http://www.opensource.apple.com/license/sunrpc/"]} \ No newline at end of file +{ + "key": "sun-rpc", + "short_name": "Sun RPC License", + "name": "Sun RPC License", + "category": "Permissive", + "owner": "Oracle (Sun)", + "homepage_url": "http://www.opensource.apple.com/license/sunrpc/", + "spdx_license_key": "LicenseRef-scancode-sun-rpc", + "text_urls": [ + "http://www.opensource.apple.com/license/sunrpc/" + ] +} \ No newline at end of file diff --git a/docs/sun-sdk-spec-1.1.LICENSE b/docs/sun-sdk-spec-1.1.LICENSE index 2f4b2bcd95..fdbf972c60 100644 --- a/docs/sun-sdk-spec-1.1.LICENSE +++ b/docs/sun-sdk-spec-1.1.LICENSE @@ -1,3 +1,18 @@ +--- +key: sun-sdk-spec-1.1 +short_name: Sun SDK Specification 1.1 +name: Sun SDK Specification 1.1 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-sdk-spec-1.1 +minimum_coverage: 30 +ignorable_copyrights: + - Copyright 2002 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, + U.S.A +ignorable_holders: + - Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, U.S.A +--- + Java(TM) Development Kit (JDK(TM)) ("Specification") Version: 1.1.8 Status: FCS diff --git a/docs/sun-sdk-spec-1.1.html b/docs/sun-sdk-spec-1.1.html index fb68a8e545..08be18fa63 100644 --- a/docs/sun-sdk-spec-1.1.html +++ b/docs/sun-sdk-spec-1.1.html @@ -187,7 +187,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-sdk-spec-1.1.json b/docs/sun-sdk-spec-1.1.json index e182ce4388..4d57d85984 100644 --- a/docs/sun-sdk-spec-1.1.json +++ b/docs/sun-sdk-spec-1.1.json @@ -1 +1,15 @@ -{"key": "sun-sdk-spec-1.1", "short_name": "Sun SDK Specification 1.1", "name": "Sun SDK Specification 1.1", "category": "Proprietary Free", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-sdk-spec-1.1", "minimum_coverage": 30, "ignorable_copyrights": ["Copyright 2002 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, U.S.A"], "ignorable_holders": ["Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, U.S.A"]} \ No newline at end of file +{ + "key": "sun-sdk-spec-1.1", + "short_name": "Sun SDK Specification 1.1", + "name": "Sun SDK Specification 1.1", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-sdk-spec-1.1", + "minimum_coverage": 30, + "ignorable_copyrights": [ + "Copyright 2002 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, U.S.A" + ], + "ignorable_holders": [ + "Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, U.S.A" + ] +} \ No newline at end of file diff --git a/docs/sun-sissl-1.0.LICENSE b/docs/sun-sissl-1.0.LICENSE index 927e605247..de38d0692d 100644 --- a/docs/sun-sissl-1.0.LICENSE +++ b/docs/sun-sissl-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: sun-sissl-1.0 +short_name: Sun Industry Standards Source License 1.0 +name: Sun Industry Standards Source License 1.0 +category: Free Restricted +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-sissl-1.0 +ignorable_copyrights: + - Copyright 1998 by Sun Microsystems, Inc +ignorable_holders: + - Sun Microsystems, Inc +--- + Sun Industry Standards Source License 1.0 DEFINITIONS diff --git a/docs/sun-sissl-1.0.html b/docs/sun-sissl-1.0.html index 657a4c08ab..3eaa1321fe 100644 --- a/docs/sun-sissl-1.0.html +++ b/docs/sun-sissl-1.0.html @@ -470,7 +470,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-sissl-1.0.json b/docs/sun-sissl-1.0.json index 5985976f8e..34cc796f27 100644 --- a/docs/sun-sissl-1.0.json +++ b/docs/sun-sissl-1.0.json @@ -1 +1,14 @@ -{"key": "sun-sissl-1.0", "short_name": "Sun Industry Standards Source License 1.0", "name": "Sun Industry Standards Source License 1.0", "category": "Free Restricted", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sun-sissl-1.0", "ignorable_copyrights": ["Copyright 1998 by Sun Microsystems, Inc"], "ignorable_holders": ["Sun Microsystems, Inc"]} \ No newline at end of file +{ + "key": "sun-sissl-1.0", + "short_name": "Sun Industry Standards Source License 1.0", + "name": "Sun Industry Standards Source License 1.0", + "category": "Free Restricted", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sun-sissl-1.0", + "ignorable_copyrights": [ + "Copyright 1998 by Sun Microsystems, Inc" + ], + "ignorable_holders": [ + "Sun Microsystems, Inc" + ] +} \ No newline at end of file diff --git a/docs/sun-sissl-1.1.LICENSE b/docs/sun-sissl-1.1.LICENSE index 6dfa6398fd..87ca6b2a1e 100644 --- a/docs/sun-sissl-1.1.LICENSE +++ b/docs/sun-sissl-1.1.LICENSE @@ -1,3 +1,22 @@ +--- +key: sun-sissl-1.1 +short_name: Sun Industry Standards Source License 1.1 +name: Sun Industry Standards Source License 1.1 +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: http://www.openoffice.org/licenses/sissl_license.html +spdx_license_key: SISSL +osi_license_key: SISSL +text_urls: + - http://www.openoffice.org/licenses/sissl_license.html +other_urls: + - http://opensource.org/licenses/SISSL + - https://opensource.org/licenses/SISSL +ignorable_urls: + - http://api.openoffice.org/ + - http://xml.openoffice.org/ +--- + Sun Industry Standards Source License - Version 1.1 1.0 DEFINITIONS diff --git a/docs/sun-sissl-1.1.html b/docs/sun-sissl-1.1.html index c7c08439a4..c416af37c2 100644 --- a/docs/sun-sissl-1.1.html +++ b/docs/sun-sissl-1.1.html @@ -462,7 +462,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-sissl-1.1.json b/docs/sun-sissl-1.1.json index 5dc037c6ab..53de5ab4e9 100644 --- a/docs/sun-sissl-1.1.json +++ b/docs/sun-sissl-1.1.json @@ -1 +1,21 @@ -{"key": "sun-sissl-1.1", "short_name": "Sun Industry Standards Source License 1.1", "name": "Sun Industry Standards Source License 1.1", "category": "Proprietary Free", "owner": "Oracle (Sun)", "homepage_url": "http://www.openoffice.org/licenses/sissl_license.html", "spdx_license_key": "SISSL", "osi_license_key": "SISSL", "text_urls": ["http://www.openoffice.org/licenses/sissl_license.html"], "other_urls": ["http://opensource.org/licenses/SISSL", "https://opensource.org/licenses/SISSL"], "ignorable_urls": ["http://api.openoffice.org/", "http://xml.openoffice.org/"]} \ No newline at end of file +{ + "key": "sun-sissl-1.1", + "short_name": "Sun Industry Standards Source License 1.1", + "name": "Sun Industry Standards Source License 1.1", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "homepage_url": "http://www.openoffice.org/licenses/sissl_license.html", + "spdx_license_key": "SISSL", + "osi_license_key": "SISSL", + "text_urls": [ + "http://www.openoffice.org/licenses/sissl_license.html" + ], + "other_urls": [ + "http://opensource.org/licenses/SISSL", + "https://opensource.org/licenses/SISSL" + ], + "ignorable_urls": [ + "http://api.openoffice.org/", + "http://xml.openoffice.org/" + ] +} \ No newline at end of file diff --git a/docs/sun-sissl-1.2.LICENSE b/docs/sun-sissl-1.2.LICENSE index c0a775f778..89ffc6fe2e 100644 --- a/docs/sun-sissl-1.2.LICENSE +++ b/docs/sun-sissl-1.2.LICENSE @@ -1,3 +1,20 @@ +--- +key: sun-sissl-1.2 +short_name: Sun Industry Standards Source License 1.2 +name: Sun Industry Standards Source License 1.2 +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html +spdx_license_key: SISSL-1.2 +text_urls: + - http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html +minimum_coverage: 50 +ignorable_copyrights: + - Copyright (c) 2001 Sun Microsystems, Inc. +ignorable_holders: + - Sun Microsystems, Inc. +--- + SUN INDUSTRY STANDARDS SOURCE LICENSE Version 1.2 diff --git a/docs/sun-sissl-1.2.html b/docs/sun-sissl-1.2.html index d7a6e9bd91..fb76587aed 100644 --- a/docs/sun-sissl-1.2.html +++ b/docs/sun-sissl-1.2.html @@ -299,7 +299,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-sissl-1.2.json b/docs/sun-sissl-1.2.json index 83e7a1049c..209fc8f651 100644 --- a/docs/sun-sissl-1.2.json +++ b/docs/sun-sissl-1.2.json @@ -1 +1,19 @@ -{"key": "sun-sissl-1.2", "short_name": "Sun Industry Standards Source License 1.2", "name": "Sun Industry Standards Source License 1.2", "category": "Proprietary Free", "owner": "Oracle (Sun)", "homepage_url": "http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html", "spdx_license_key": "SISSL-1.2", "text_urls": ["http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html"], "minimum_coverage": 50, "ignorable_copyrights": ["Copyright (c) 2001 Sun Microsystems, Inc."], "ignorable_holders": ["Sun Microsystems, Inc."]} \ No newline at end of file +{ + "key": "sun-sissl-1.2", + "short_name": "Sun Industry Standards Source License 1.2", + "name": "Sun Industry Standards Source License 1.2", + "category": "Proprietary Free", + "owner": "Oracle (Sun)", + "homepage_url": "http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html", + "spdx_license_key": "SISSL-1.2", + "text_urls": [ + "http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html" + ], + "minimum_coverage": 50, + "ignorable_copyrights": [ + "Copyright (c) 2001 Sun Microsystems, Inc." + ], + "ignorable_holders": [ + "Sun Microsystems, Inc." + ] +} \ No newline at end of file diff --git a/docs/sun-source.LICENSE b/docs/sun-source.LICENSE index 8e2a54e620..736a746a11 100644 --- a/docs/sun-source.LICENSE +++ b/docs/sun-source.LICENSE @@ -1,3 +1,20 @@ +--- +key: sun-source +short_name: Sun source code License +name: Sun source code License +category: Permissive +owner: Oracle (Sun) +notes: This license is highly similar to the sun-rpc. It is found in old G711 audio codec code + released by Sun circa 1996 and reused in sox http://sox.sourceforge.net/ and a few oher + places +spdx_license_key: LicenseRef-scancode-sun-source +other_urls: + - http://web.mit.edu/audio/src/build/i386_linux2/sox-11gamma-cb/g711.c + - http://www.speech.kth.se/cost250/refsys/v1.0/src/g711.c + - https://www.ibiblio.org/pub/historic-linux/ftp-archives/sunsite.unc.edu/Sep-29-1996/Incoming/sox-11gamma-cb2.tar.gz + - https://sourceforge.net/p/sox/code/ci/98267de439714fcdff94c9588f34fb8a67df70c1/tree/src/g711.c +--- + This source code is a product of Sun Microsystems, Inc. and is provided for unrestricted use. Users may copy or modify this source code without charge. @@ -20,4 +37,4 @@ Sun has been advised of the possibility of such damages. Sun Microsystems, Inc. 2550 Garcia Avenue -Mountain View, California 94043 +Mountain View, California 94043 \ No newline at end of file diff --git a/docs/sun-source.html b/docs/sun-source.html index c84c6ea1ca..a00d079ec4 100644 --- a/docs/sun-source.html +++ b/docs/sun-source.html @@ -146,8 +146,7 @@ Sun Microsystems, Inc. 2550 Garcia Avenue -Mountain View, California 94043 - +Mountain View, California 94043
@@ -159,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-source.json b/docs/sun-source.json index bb71ecfa66..98d86630e5 100644 --- a/docs/sun-source.json +++ b/docs/sun-source.json @@ -1 +1,15 @@ -{"key": "sun-source", "short_name": "Sun source code License", "name": "Sun source code License", "category": "Permissive", "owner": "Oracle (Sun)", "notes": "This license is highly similar to the sun-rpc. It is found in old G711 audio codec code released by Sun circa 1996 and reused in sox http://sox.sourceforge.net/ and a few oher places", "spdx_license_key": "LicenseRef-scancode-sun-source", "other_urls": ["http://web.mit.edu/audio/src/build/i386_linux2/sox-11gamma-cb/g711.c", "http://www.speech.kth.se/cost250/refsys/v1.0/src/g711.c", "https://www.ibiblio.org/pub/historic-linux/ftp-archives/sunsite.unc.edu/Sep-29-1996/Incoming/sox-11gamma-cb2.tar.gz", "https://sourceforge.net/p/sox/code/ci/98267de439714fcdff94c9588f34fb8a67df70c1/tree/src/g711.c"]} \ No newline at end of file +{ + "key": "sun-source", + "short_name": "Sun source code License", + "name": "Sun source code License", + "category": "Permissive", + "owner": "Oracle (Sun)", + "notes": "This license is highly similar to the sun-rpc. It is found in old G711 audio codec code released by Sun circa 1996 and reused in sox http://sox.sourceforge.net/ and a few oher places", + "spdx_license_key": "LicenseRef-scancode-sun-source", + "other_urls": [ + "http://web.mit.edu/audio/src/build/i386_linux2/sox-11gamma-cb/g711.c", + "http://www.speech.kth.se/cost250/refsys/v1.0/src/g711.c", + "https://www.ibiblio.org/pub/historic-linux/ftp-archives/sunsite.unc.edu/Sep-29-1996/Incoming/sox-11gamma-cb2.tar.gz", + "https://sourceforge.net/p/sox/code/ci/98267de439714fcdff94c9588f34fb8a67df70c1/tree/src/g711.c" + ] +} \ No newline at end of file diff --git a/docs/sun-ssscfr-1.1.LICENSE b/docs/sun-ssscfr-1.1.LICENSE index a29dbe0181..5a1376ddea 100644 --- a/docs/sun-ssscfr-1.1.LICENSE +++ b/docs/sun-ssscfr-1.1.LICENSE @@ -1,3 +1,15 @@ +--- +key: sun-ssscfr-1.1 +short_name: Sun Solaris Source Code License 1.1 +name: Sun Solaris Source Code (Foundation Release) License 1.1 +category: Copyleft Limited +owner: Oracle (Sun) +homepage_url: http://www.mibsoftware.com/librock/librock/license/ssscfr.txt +spdx_license_key: LicenseRef-scancode-sun-ssscfr-1.1 +ignorable_urls: + - http://www.sun.com/solaris/source +--- + Sun Solaris Source Code (Foundation Release) License 1.1 READ ALL THE TERMS OF THIS LICENSE CAREFULLY BEFORE ACCEPTING. @@ -388,4 +400,4 @@ Printed Name: Date: SDLC Personal ID: Email Address: -Phone Number: +Phone Number: \ No newline at end of file diff --git a/docs/sun-ssscfr-1.1.html b/docs/sun-ssscfr-1.1.html index 3dc50e45ee..8556c60f4f 100644 --- a/docs/sun-ssscfr-1.1.html +++ b/docs/sun-ssscfr-1.1.html @@ -514,8 +514,7 @@ Date: SDLC Personal ID: Email Address: -Phone Number: - +Phone Number:
@@ -527,7 +526,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sun-ssscfr-1.1.json b/docs/sun-ssscfr-1.1.json index 3b4d9767f7..ae70f07923 100644 --- a/docs/sun-ssscfr-1.1.json +++ b/docs/sun-ssscfr-1.1.json @@ -1 +1,12 @@ -{"key": "sun-ssscfr-1.1", "short_name": "Sun Solaris Source Code License 1.1", "name": "Sun Solaris Source Code (Foundation Release) License 1.1", "category": "Copyleft Limited", "owner": "Oracle (Sun)", "homepage_url": "http://www.mibsoftware.com/librock/librock/license/ssscfr.txt", "spdx_license_key": "LicenseRef-scancode-sun-ssscfr-1.1", "ignorable_urls": ["http://www.sun.com/solaris/source"]} \ No newline at end of file +{ + "key": "sun-ssscfr-1.1", + "short_name": "Sun Solaris Source Code License 1.1", + "name": "Sun Solaris Source Code (Foundation Release) License 1.1", + "category": "Copyleft Limited", + "owner": "Oracle (Sun)", + "homepage_url": "http://www.mibsoftware.com/librock/librock/license/ssscfr.txt", + "spdx_license_key": "LicenseRef-scancode-sun-ssscfr-1.1", + "ignorable_urls": [ + "http://www.sun.com/solaris/source" + ] +} \ No newline at end of file diff --git a/docs/sunpro.LICENSE b/docs/sunpro.LICENSE index 4bb26755c0..cc50ef8bc2 100644 --- a/docs/sunpro.LICENSE +++ b/docs/sunpro.LICENSE @@ -1,5 +1,14 @@ +--- +key: sunpro +short_name: SunPro Attribution License +name: SunPro Attribution License +category: Permissive +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sunpro +--- + Developed at SunPro, a Sun Microsystems, Inc. business. Permission to use, copy, modify, and distribute this software is freely granted, provided that this notice -is preserved. +is preserved. \ No newline at end of file diff --git a/docs/sunpro.html b/docs/sunpro.html index 91abf83959..97d3417692 100644 --- a/docs/sunpro.html +++ b/docs/sunpro.html @@ -112,8 +112,7 @@ Permission to use, copy, modify, and distribute this software is freely granted, provided that this notice -is preserved. - +is preserved.
@@ -125,7 +124,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sunpro.json b/docs/sunpro.json index dd87851e2c..cbdece87da 100644 --- a/docs/sunpro.json +++ b/docs/sunpro.json @@ -1 +1,8 @@ -{"key": "sunpro", "short_name": "SunPro Attribution License", "name": "SunPro Attribution License", "category": "Permissive", "owner": "Oracle (Sun)", "spdx_license_key": "LicenseRef-scancode-sunpro"} \ No newline at end of file +{ + "key": "sunpro", + "short_name": "SunPro Attribution License", + "name": "SunPro Attribution License", + "category": "Permissive", + "owner": "Oracle (Sun)", + "spdx_license_key": "LicenseRef-scancode-sunpro" +} \ No newline at end of file diff --git a/docs/sunsoft.LICENSE b/docs/sunsoft.LICENSE index aa2f518029..7043e314cf 100644 --- a/docs/sunsoft.LICENSE +++ b/docs/sunsoft.LICENSE @@ -1,3 +1,13 @@ +--- +key: sunsoft +short_name: Sunsoft License +name: Sunsoft License +category: Permissive +owner: Oracle (Sun) +notes: this is a legacy license that is highly simialr to the sgi-freeb-2.0 license +spdx_license_key: LicenseRef-scancode-sunsoft +--- + 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 restrict- @@ -21,5 +31,4 @@ OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of SunSoft, Inc. shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without written -authorization from SunSoft Inc. - +authorization from SunSoft Inc. \ No newline at end of file diff --git a/docs/sunsoft.html b/docs/sunsoft.html index b72ed4b2c9..570bf72584 100644 --- a/docs/sunsoft.html +++ b/docs/sunsoft.html @@ -138,9 +138,7 @@ Except as contained in this notice, the name of SunSoft, Inc. shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without written -authorization from SunSoft Inc. - - +authorization from SunSoft Inc.
@@ -152,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sunsoft.json b/docs/sunsoft.json index 7f907c8cac..8b15943ae3 100644 --- a/docs/sunsoft.json +++ b/docs/sunsoft.json @@ -1 +1,9 @@ -{"key": "sunsoft", "short_name": "Sunsoft License", "name": "Sunsoft License", "category": "Permissive", "owner": "Oracle (Sun)", "notes": "this is a legacy license that is highly simialr to the sgi-freeb-2.0 license", "spdx_license_key": "LicenseRef-scancode-sunsoft"} \ No newline at end of file +{ + "key": "sunsoft", + "short_name": "Sunsoft License", + "name": "Sunsoft License", + "category": "Permissive", + "owner": "Oracle (Sun)", + "notes": "this is a legacy license that is highly simialr to the sgi-freeb-2.0 license", + "spdx_license_key": "LicenseRef-scancode-sunsoft" +} \ No newline at end of file diff --git a/docs/supervisor.LICENSE b/docs/supervisor.LICENSE index f3d0ace471..8142af6fee 100644 --- a/docs/supervisor.LICENSE +++ b/docs/supervisor.LICENSE @@ -1,3 +1,36 @@ +--- +key: supervisor +short_name: Supervisor License +name: Supervisor License +category: Permissive +owner: Agendaless Consulting +homepage_url: https://github.com/Supervisor/supervisor/blob/master/LICENSES.txt +notes: composite +spdx_license_key: LicenseRef-scancode-supervisor +other_urls: + - http://eikeon.com/ + - http://www.agendaless.com +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 2002-2005, Daniel Krech, http://eikeon.com + - Copyright (c) 2006-2011 Agendaless Consulting and Contributors. (http://www.agendaless.com) + - Copyright (c) 2007 Zope Corporation and Contributors + - Copyright (c) Sam Rushing + - Copyright (c) by Daniel Krech, http://eikeon.com/ +ignorable_holders: + - Agendaless Consulting and Contributors + - Daniel Krech + - Sam Rushing + - Zope Corporation and Contributors +ignorable_authors: + - Sam Rushing +ignorable_urls: + - http://eikeon.com/ + - http://www.agendaless.com/ + - http://www.repoze.org/LICENSE.txt + - https://github.com/Supervisor/supervisor/blob/master/LICENSES.txt +--- + Supervisor License https://github.com/Supervisor/supervisor/blob/master/LICENSES.txt diff --git a/docs/supervisor.html b/docs/supervisor.html index 2cee0f3726..b8205823b9 100644 --- a/docs/supervisor.html +++ b/docs/supervisor.html @@ -390,7 +390,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/supervisor.json b/docs/supervisor.json index ad9ac4494d..bb628bba87 100644 --- a/docs/supervisor.json +++ b/docs/supervisor.json @@ -1 +1,37 @@ -{"key": "supervisor", "short_name": "Supervisor License", "name": "Supervisor License", "category": "Permissive", "owner": "Agendaless Consulting", "homepage_url": "https://github.com/Supervisor/supervisor/blob/master/LICENSES.txt", "notes": "composite", "spdx_license_key": "LicenseRef-scancode-supervisor", "other_urls": ["http://eikeon.com/", "http://www.agendaless.com"], "minimum_coverage": 80, "ignorable_copyrights": ["Copyright (c) 2002-2005, Daniel Krech, http://eikeon.com", "Copyright (c) 2006-2011 Agendaless Consulting and Contributors. (http://www.agendaless.com)", "Copyright (c) 2007 Zope Corporation and Contributors", "Copyright (c) Sam Rushing", "Copyright (c) by Daniel Krech, http://eikeon.com/"], "ignorable_holders": ["Agendaless Consulting and Contributors", "Daniel Krech", "Sam Rushing", "Zope Corporation and Contributors"], "ignorable_authors": ["Sam Rushing"], "ignorable_urls": ["http://eikeon.com/", "http://www.agendaless.com/", "http://www.repoze.org/LICENSE.txt", "https://github.com/Supervisor/supervisor/blob/master/LICENSES.txt"]} \ No newline at end of file +{ + "key": "supervisor", + "short_name": "Supervisor License", + "name": "Supervisor License", + "category": "Permissive", + "owner": "Agendaless Consulting", + "homepage_url": "https://github.com/Supervisor/supervisor/blob/master/LICENSES.txt", + "notes": "composite", + "spdx_license_key": "LicenseRef-scancode-supervisor", + "other_urls": [ + "http://eikeon.com/", + "http://www.agendaless.com" + ], + "minimum_coverage": 80, + "ignorable_copyrights": [ + "Copyright (c) 2002-2005, Daniel Krech, http://eikeon.com", + "Copyright (c) 2006-2011 Agendaless Consulting and Contributors. (http://www.agendaless.com)", + "Copyright (c) 2007 Zope Corporation and Contributors", + "Copyright (c) Sam Rushing", + "Copyright (c) by Daniel Krech, http://eikeon.com/" + ], + "ignorable_holders": [ + "Agendaless Consulting and Contributors", + "Daniel Krech", + "Sam Rushing", + "Zope Corporation and Contributors" + ], + "ignorable_authors": [ + "Sam Rushing" + ], + "ignorable_urls": [ + "http://eikeon.com/", + "http://www.agendaless.com/", + "http://www.repoze.org/LICENSE.txt", + "https://github.com/Supervisor/supervisor/blob/master/LICENSES.txt" + ] +} \ No newline at end of file diff --git a/docs/sustainable-use-1.0.LICENSE b/docs/sustainable-use-1.0.LICENSE index 113cf001d4..d739ae5706 100644 --- a/docs/sustainable-use-1.0.LICENSE +++ b/docs/sustainable-use-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: sustainable-use-1.0 +short_name: Sustainable Use 1.0 +name: Sustainable Use License 1.0 +category: Free Restricted +owner: Fair-code +homepage_url: https://github.com/n8n-io/n8n/blob/master/LICENSE.md +spdx_license_key: LicenseRef-scancode-sustainable-use-1.0 +faq_url: https://faircode.io/#faq +other_urls: + - https://blog.n8n.io/announcing-new-sustainable-use-license/ +--- + # Sustainable Use License Version 1.0 diff --git a/docs/sustainable-use-1.0.html b/docs/sustainable-use-1.0.html index 5d1622e64c..0d2005c6e9 100644 --- a/docs/sustainable-use-1.0.html +++ b/docs/sustainable-use-1.0.html @@ -196,7 +196,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sustainable-use-1.0.json b/docs/sustainable-use-1.0.json index 6f904f5ab2..69e5d5b295 100644 --- a/docs/sustainable-use-1.0.json +++ b/docs/sustainable-use-1.0.json @@ -1 +1,13 @@ -{"key": "sustainable-use-1.0", "short_name": "Sustainable Use 1.0", "name": "Sustainable Use License 1.0", "category": "Free Restricted", "owner": "Fair-code", "homepage_url": "https://github.com/n8n-io/n8n/blob/master/LICENSE.md", "spdx_license_key": "LicenseRef-scancode-sustainable-use-1.0", "faq_url": "https://faircode.io/#faq", "other_urls": ["https://blog.n8n.io/announcing-new-sustainable-use-license/"]} \ No newline at end of file +{ + "key": "sustainable-use-1.0", + "short_name": "Sustainable Use 1.0", + "name": "Sustainable Use License 1.0", + "category": "Free Restricted", + "owner": "Fair-code", + "homepage_url": "https://github.com/n8n-io/n8n/blob/master/LICENSE.md", + "spdx_license_key": "LicenseRef-scancode-sustainable-use-1.0", + "faq_url": "https://faircode.io/#faq", + "other_urls": [ + "https://blog.n8n.io/announcing-new-sustainable-use-license/" + ] +} \ No newline at end of file diff --git a/docs/svndiff.LICENSE b/docs/svndiff.LICENSE index 5b090555a3..1cf49da5c9 100644 --- a/docs/svndiff.LICENSE +++ b/docs/svndiff.LICENSE @@ -1,3 +1,13 @@ +--- +key: svndiff +short_name: svndiff License +name: svndiff License +category: Permissive +owner: CollabNet +spdx_license_key: LicenseRef-scancode-svndiff +minimum_coverage: 60 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/docs/svndiff.html b/docs/svndiff.html index df9cf55eea..f9527a87a6 100644 --- a/docs/svndiff.html +++ b/docs/svndiff.html @@ -149,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/svndiff.json b/docs/svndiff.json index 1f7b692258..7d822d97a7 100644 --- a/docs/svndiff.json +++ b/docs/svndiff.json @@ -1 +1,9 @@ -{"key": "svndiff", "short_name": "svndiff License", "name": "svndiff License", "category": "Permissive", "owner": "CollabNet", "spdx_license_key": "LicenseRef-scancode-svndiff", "minimum_coverage": 60} \ No newline at end of file +{ + "key": "svndiff", + "short_name": "svndiff License", + "name": "svndiff License", + "category": "Permissive", + "owner": "CollabNet", + "spdx_license_key": "LicenseRef-scancode-svndiff", + "minimum_coverage": 60 +} \ No newline at end of file diff --git a/docs/swig.LICENSE b/docs/swig.LICENSE index f645f01435..bdbcfd5cca 100644 --- a/docs/swig.LICENSE +++ b/docs/swig.LICENSE @@ -1,4 +1,21 @@ +--- +key: swig +short_name: SWIG Library License +name: SWIG Library License +category: Permissive +owner: SWIG +homepage_url: http://www.swig.org/ +notes: | + SWIG is itself GPL-licensed. The SWIG library and examples, under the Lib + and Examples top level directories are distributed under the these terms. +spdx_license_key: LicenseRef-scancode-swig +text_urls: + - http://www.swig.org/Release/LICENSE +other_urls: + - http://www.swig.org/Release/COPYRIGHT +--- + You may copy, modify, distribute, and make derivative works based on this software, in source code or object code form, without restriction. If you distribute the software to others, you may do so according to the terms of your -choice. This software is offered as is, without warranty of any kind. +choice. This software is offered as is, without warranty of any kind. \ No newline at end of file diff --git a/docs/swig.html b/docs/swig.html index 3ddeb03431..3737569200 100644 --- a/docs/swig.html +++ b/docs/swig.html @@ -145,8 +145,7 @@
You may copy, modify, distribute, and make derivative works based on this
 software, in source code or object code form, without restriction. If you
 distribute the software to others, you may do so according to the terms of your
-choice. This software is offered as is, without warranty of any kind.
-
+choice. This software is offered as is, without warranty of any kind.
@@ -158,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/swig.json b/docs/swig.json index dc410851a5..54745de4b3 100644 --- a/docs/swig.json +++ b/docs/swig.json @@ -1 +1,16 @@ -{"key": "swig", "short_name": "SWIG Library License", "name": "SWIG Library License", "category": "Permissive", "owner": "SWIG", "homepage_url": "http://www.swig.org/", "notes": "SWIG is itself GPL-licensed. The SWIG library and examples, under the Lib\nand Examples top level directories are distributed under the these terms.\n", "spdx_license_key": "LicenseRef-scancode-swig", "text_urls": ["http://www.swig.org/Release/LICENSE"], "other_urls": ["http://www.swig.org/Release/COPYRIGHT"]} \ No newline at end of file +{ + "key": "swig", + "short_name": "SWIG Library License", + "name": "SWIG Library License", + "category": "Permissive", + "owner": "SWIG", + "homepage_url": "http://www.swig.org/", + "notes": "SWIG is itself GPL-licensed. The SWIG library and examples, under the Lib\nand Examples top level directories are distributed under the these terms.\n", + "spdx_license_key": "LicenseRef-scancode-swig", + "text_urls": [ + "http://www.swig.org/Release/LICENSE" + ], + "other_urls": [ + "http://www.swig.org/Release/COPYRIGHT" + ] +} \ No newline at end of file diff --git a/docs/swl.LICENSE b/docs/swl.LICENSE index c89a755ffc..0895304ba9 100644 --- a/docs/swl.LICENSE +++ b/docs/swl.LICENSE @@ -1,3 +1,23 @@ +--- +key: swl +short_name: Scheme Widget Library (SWL) Software License +name: Scheme Widget Library (SWL) Software License Agreement +category: Permissive +owner: Cadence Research Systems +homepage_url: http://www.scheme.com/download/swl-lic.html +notes: | + Per Fedora, this permissive license is derived from MIT, however, it has + significant rewording and merits being considered as an independent + license. It is Free and GPL-Compatible. A copy of the license text was + taken from http://www.scheme.com/download/swl-lic.html on November 27, + 2012. +spdx_license_key: SWL +text_urls: + - https://fedoraproject.org/wiki/Licensing/SWL +other_urls: + - https://puredata.info/about/pdlicense +--- + 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. diff --git a/docs/swl.html b/docs/swl.html index 8d68fe13a6..4c5467b088 100644 --- a/docs/swl.html +++ b/docs/swl.html @@ -163,7 +163,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/swl.json b/docs/swl.json index d831aeeed5..e03d311444 100644 --- a/docs/swl.json +++ b/docs/swl.json @@ -1 +1,16 @@ -{"key": "swl", "short_name": "Scheme Widget Library (SWL) Software License", "name": "Scheme Widget Library (SWL) Software License Agreement", "category": "Permissive", "owner": "Cadence Research Systems", "homepage_url": "http://www.scheme.com/download/swl-lic.html", "notes": "Per Fedora, this permissive license is derived from MIT, however, it has\nsignificant rewording and merits being considered as an independent\nlicense. It is Free and GPL-Compatible. A copy of the license text was\ntaken from http://www.scheme.com/download/swl-lic.html on November 27,\n2012.\n", "spdx_license_key": "SWL", "text_urls": ["https://fedoraproject.org/wiki/Licensing/SWL"], "other_urls": ["https://puredata.info/about/pdlicense"]} \ No newline at end of file +{ + "key": "swl", + "short_name": "Scheme Widget Library (SWL) Software License", + "name": "Scheme Widget Library (SWL) Software License Agreement", + "category": "Permissive", + "owner": "Cadence Research Systems", + "homepage_url": "http://www.scheme.com/download/swl-lic.html", + "notes": "Per Fedora, this permissive license is derived from MIT, however, it has\nsignificant rewording and merits being considered as an independent\nlicense. It is Free and GPL-Compatible. A copy of the license text was\ntaken from http://www.scheme.com/download/swl-lic.html on November 27,\n2012.\n", + "spdx_license_key": "SWL", + "text_urls": [ + "https://fedoraproject.org/wiki/Licensing/SWL" + ], + "other_urls": [ + "https://puredata.info/about/pdlicense" + ] +} \ No newline at end of file diff --git a/docs/sybase.LICENSE b/docs/sybase.LICENSE index 6033e3069e..c4d296bcd1 100644 --- a/docs/sybase.LICENSE +++ b/docs/sybase.LICENSE @@ -1,3 +1,27 @@ +--- +key: sybase +short_name: Open Watcom 1.0 +name: Sybase Open Watcom Public License v1.0 +category: Proprietary Free +owner: Sybase, Inc. (an SAP subsidiary) +homepage_url: http://opensource.org/licenses/sybase.php +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: Watcom-1.0 +osi_license_key: Watcom-1.0 +text_urls: + - http://opensource.org/licenses/sybase.php +osi_url: http://opensource.org/licenses/sybase.php +other_urls: + - http://www.opensource.org/licenses/Watcom-1.0 + - https://opensource.org/licenses/Watcom-1.0 +ignorable_copyrights: + - Portions Copyright (c) 1983-2002 Sybase, Inc. +ignorable_holders: + - Sybase, Inc. +ignorable_urls: + - http://www.sybase.com/developer/opensource +--- + USE OF THE SYBASE OPEN WATCOM SOFTWARE DESCRIBED BELOW ("SOFTWARE") IS SUBJECT TO THE TERMS AND CONDITIONS SET FORTH IN THE SYBASE OPEN WATCOM PUBLIC LICENSE SET FORTH BELOW ("LICENSE"). YOU MAY NOT USE THE SOFTWARE diff --git a/docs/sybase.html b/docs/sybase.html index c93bbcc46a..b67a70f79b 100644 --- a/docs/sybase.html +++ b/docs/sybase.html @@ -542,7 +542,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/sybase.json b/docs/sybase.json index 10c6dc4939..0f376ab90d 100644 --- a/docs/sybase.json +++ b/docs/sybase.json @@ -1 +1,28 @@ -{"key": "sybase", "short_name": "Open Watcom 1.0", "name": "Sybase Open Watcom Public License v1.0", "category": "Proprietary Free", "owner": "Sybase, Inc. (an SAP subsidiary)", "homepage_url": "http://opensource.org/licenses/sybase.php", "notes": "Per SPDX.org, this license is OSI certified", "spdx_license_key": "Watcom-1.0", "osi_license_key": "Watcom-1.0", "text_urls": ["http://opensource.org/licenses/sybase.php"], "osi_url": "http://opensource.org/licenses/sybase.php", "other_urls": ["http://www.opensource.org/licenses/Watcom-1.0", "https://opensource.org/licenses/Watcom-1.0"], "ignorable_copyrights": ["Portions Copyright (c) 1983-2002 Sybase, Inc."], "ignorable_holders": ["Sybase, Inc."], "ignorable_urls": ["http://www.sybase.com/developer/opensource"]} \ No newline at end of file +{ + "key": "sybase", + "short_name": "Open Watcom 1.0", + "name": "Sybase Open Watcom Public License v1.0", + "category": "Proprietary Free", + "owner": "Sybase, Inc. (an SAP subsidiary)", + "homepage_url": "http://opensource.org/licenses/sybase.php", + "notes": "Per SPDX.org, this license is OSI certified", + "spdx_license_key": "Watcom-1.0", + "osi_license_key": "Watcom-1.0", + "text_urls": [ + "http://opensource.org/licenses/sybase.php" + ], + "osi_url": "http://opensource.org/licenses/sybase.php", + "other_urls": [ + "http://www.opensource.org/licenses/Watcom-1.0", + "https://opensource.org/licenses/Watcom-1.0" + ], + "ignorable_copyrights": [ + "Portions Copyright (c) 1983-2002 Sybase, Inc." + ], + "ignorable_holders": [ + "Sybase, Inc." + ], + "ignorable_urls": [ + "http://www.sybase.com/developer/opensource" + ] +} \ No newline at end of file diff --git a/docs/symphonysoft.LICENSE b/docs/symphonysoft.LICENSE index 6f92c8d19d..036f69537e 100644 --- a/docs/symphonysoft.LICENSE +++ b/docs/symphonysoft.LICENSE @@ -1,3 +1,19 @@ +--- +key: symphonysoft +short_name: Symphonysoft +name: Symphonysoft License +category: Permissive +owner: Symphonysoft +notes: Symphonesoft was a predecessor to Mulesoft. This is similar to the Apache 1.0. +spdx_license_key: LicenseRef-scancode-symphonysoft +text_urls: + - https://github.com/codehaus/mule-git/blob/master/tags/mule-1.0/LICENSE.txt +ignorable_authors: + - SymphonySoft Limited (http://www.symphonysoft.com) +ignorable_urls: + - http://www.symphonysoft.com/ +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -32,4 +48,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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 +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE \ No newline at end of file diff --git a/docs/symphonysoft.html b/docs/symphonysoft.html index 7359271c06..ba7c7aa952 100644 --- a/docs/symphonysoft.html +++ b/docs/symphonysoft.html @@ -176,8 +176,7 @@ 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 - +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
@@ -189,7 +188,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/symphonysoft.json b/docs/symphonysoft.json index 112ac3f5e2..55a4786382 100644 --- a/docs/symphonysoft.json +++ b/docs/symphonysoft.json @@ -1 +1,18 @@ -{"key": "symphonysoft", "short_name": "Symphonysoft", "name": "Symphonysoft License", "category": "Permissive", "owner": "Symphonysoft", "notes": "Symphonesoft was a predecessor to Mulesoft. This is similar to the Apache 1.0.", "spdx_license_key": "LicenseRef-scancode-symphonysoft", "text_urls": ["https://github.com/codehaus/mule-git/blob/master/tags/mule-1.0/LICENSE.txt"], "ignorable_authors": ["SymphonySoft Limited (http://www.symphonysoft.com)"], "ignorable_urls": ["http://www.symphonysoft.com/"]} \ No newline at end of file +{ + "key": "symphonysoft", + "short_name": "Symphonysoft", + "name": "Symphonysoft License", + "category": "Permissive", + "owner": "Symphonysoft", + "notes": "Symphonesoft was a predecessor to Mulesoft. This is similar to the Apache 1.0.", + "spdx_license_key": "LicenseRef-scancode-symphonysoft", + "text_urls": [ + "https://github.com/codehaus/mule-git/blob/master/tags/mule-1.0/LICENSE.txt" + ], + "ignorable_authors": [ + "SymphonySoft Limited (http://www.symphonysoft.com)" + ], + "ignorable_urls": [ + "http://www.symphonysoft.com/" + ] +} \ No newline at end of file diff --git a/docs/synopsys-attribution.LICENSE b/docs/synopsys-attribution.LICENSE index 92b70a43fb..1e2005e9d0 100644 --- a/docs/synopsys-attribution.LICENSE +++ b/docs/synopsys-attribution.LICENSE @@ -1,3 +1,12 @@ +--- +key: synopsys-attribution +short_name: Synopsys Attribution License +name: Synopsys Attribution License +category: Free Restricted +owner: Synopsys +spdx_license_key: LicenseRef-scancode-synopsys-attribution +--- + Synopsys HS OTG Linux Software Driver and documentation (hereinafter, "Software") is an Unsupported proprietary work of Synopsys, Inc. unless otherwise expressly agreed to in writing between Synopsys and you. diff --git a/docs/synopsys-attribution.html b/docs/synopsys-attribution.html index 410065b2e7..65d96a7f76 100644 --- a/docs/synopsys-attribution.html +++ b/docs/synopsys-attribution.html @@ -144,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/synopsys-attribution.json b/docs/synopsys-attribution.json index dda237213c..0ac5f99aac 100644 --- a/docs/synopsys-attribution.json +++ b/docs/synopsys-attribution.json @@ -1 +1,8 @@ -{"key": "synopsys-attribution", "short_name": "Synopsys Attribution License", "name": "Synopsys Attribution License", "category": "Free Restricted", "owner": "Synopsys", "spdx_license_key": "LicenseRef-scancode-synopsys-attribution"} \ No newline at end of file +{ + "key": "synopsys-attribution", + "short_name": "Synopsys Attribution License", + "name": "Synopsys Attribution License", + "category": "Free Restricted", + "owner": "Synopsys", + "spdx_license_key": "LicenseRef-scancode-synopsys-attribution" +} \ No newline at end of file diff --git a/docs/synopsys-mit.LICENSE b/docs/synopsys-mit.LICENSE index 083e3e6d4a..72c9b1b8b9 100644 --- a/docs/synopsys-mit.LICENSE +++ b/docs/synopsys-mit.LICENSE @@ -1,3 +1,13 @@ +--- +key: synopsys-mit +short_name: Synopsys MIT License +name: Synopsys MIT License +category: Permissive +owner: Synopsys +spdx_license_key: LicenseRef-scancode-synopsys-mit +minimum_coverage: 80 +--- + The Synopsys DWC ETHER QOS Software Driver and documentation (hereinafter "Software") is an unsupported proprietary work of Synopsys, Inc. unless otherwise expressly agreed to in writing between Synopsys and you. @@ -25,4 +35,4 @@ 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. +DAMAGE. \ No newline at end of file diff --git a/docs/synopsys-mit.html b/docs/synopsys-mit.html index ca70b5e01f..04e3060463 100644 --- a/docs/synopsys-mit.html +++ b/docs/synopsys-mit.html @@ -142,8 +142,7 @@ 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. - +DAMAGE.
@@ -155,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/synopsys-mit.json b/docs/synopsys-mit.json index e5b0a08184..c59e575118 100644 --- a/docs/synopsys-mit.json +++ b/docs/synopsys-mit.json @@ -1 +1,9 @@ -{"key": "synopsys-mit", "short_name": "Synopsys MIT License", "name": "Synopsys MIT License", "category": "Permissive", "owner": "Synopsys", "spdx_license_key": "LicenseRef-scancode-synopsys-mit", "minimum_coverage": 80} \ No newline at end of file +{ + "key": "synopsys-mit", + "short_name": "Synopsys MIT License", + "name": "Synopsys MIT License", + "category": "Permissive", + "owner": "Synopsys", + "spdx_license_key": "LicenseRef-scancode-synopsys-mit", + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/syntext-serna-exception-1.0.LICENSE b/docs/syntext-serna-exception-1.0.LICENSE index 94e8745aae..2124fe43fc 100644 --- a/docs/syntext-serna-exception-1.0.LICENSE +++ b/docs/syntext-serna-exception-1.0.LICENSE @@ -1,3 +1,111 @@ +--- +key: syntext-serna-exception-1.0 +short_name: Syntext Serna exception to GPL 2.0 or GPL 3.0 +name: Syntext Serna exception to GPL 2.0 or GPL 3.0 +category: Copyleft Limited +owner: Syntext +homepage_url: https://github.com/ydirson/serna-free/blob/master/GPL_EXCEPTION.txt +is_exception: yes +spdx_license_key: LicenseRef-scancode-syntext-serna-exception-1.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://www.gnu.org/licenses/gpl-3.0.txt +standard_notice: | + Syntext, Inc. GPL License Exception for Syntext Serna Free Edition + Version 1.0 + Additional rights granted beyond the GPL (the "Exception"). + As a special exception to the terms and conditions of GPL version 2.0 + or GPL version 3.0, Syntext, Inc. hereby grants you the rights described + below, + provided you agree to the terms and conditions in this Exception, including + its + obligations and restrictions on use. + Nothing in this Exception gives you or anyone else the right to change the + licensing terms of the Syntext Serna Free Editon. + 1) Definitions + "FOSS Application" means a free and open source software application + distributed subject to a license listed in the section below titled + "FOSS License List." + "Licensed Software" shall refer to the software licensed under the GPL + version 2.0 or GPL version 3.0 and this exception. + "Derivative Work" means a derivative work, as defined under applicable + copyright law, formed entirely from the Licensed Software and one or more + FOSS + Applications. + "Independent Work" means portions of the Derivative Work that are not + derived + from the Licensed Software and can reasonably be considered independent and + separate works. + 2) The right to use open source licenses not compatible with the GNU + General + Public License version 2.0 or GNU General Public License version 3.0: You + may + distribute Derivative Work in object code or executable form, provided + that: + A) You distribute Independent Works subject to a license listed in the + section 4 below, titled "FOSS License List"; + and + B) You obey the GPL in all respects for the Licensed Software and all + portions + (including modifications and extensions) of the Licensed Software included + in + the Derivative Work (provided that this condition does not apply to + Independent Works); + C) You must, on request, make a complete package including the complete + source + code of Derivative Work (as defined in the GNU General Public License + version 2, section 3, but excluding anything excluded by the special + exception + in the same section) available to Syntext, Inc. under the same license as + that + granted to other recipients of the source code of Derivative Work; + and + D) Your or any other contributor's rights to: + i) distribute the source code of Derivative Work to anyone for any purpose; + and + ii) publicly discuss the development project for Derivative Work and its + goals + in any form and in any forum are not prohibited by any legal instrument, + including but not limited to contracts, non-disclosure agreements, and + employee contracts. + 3) Syntext, Inc. reserves all rights not expressly granted in these terms + and + conditions. If all of the above conditions are not met, then this FOSS + License + Exception does not apply to you or your Derivative Work. + 4) FOSS License List + License name Version + ----------------------------------------------------------------- + Academic Free License 2.0, 2.1, 3.0 + Apache Software License 1.0 or 1.1 + Apache License 2.0 + Apple Public Source License 2.0 + Artistic license (as set forth in the addendum file) + BSD license "July 22 1999" + Common Development and Distribution License (CDDL) 1.0 + Common Public License 1.0 + Eclipse Public License 1.0 + GNU Library or "Lesser" General Public License (LGPL) 2.0, 2.1, 3.0 + Jabber Open Source License 1.0 + MIT License (as set forth in the addendum file) + Mozilla Public License (MPL) 1.0 or 1.1 + Open Software License 2.0, 3.0 + OpenSSL license (with original SSLeay license) "2003" ("1998") + PHP License 3.0 + Python license (CNRI Python License) (as set forth in the addendum file) + Python Software Foundation License 2.1.1 + Q Public License 1.0 + Sleepycat License "1999" + W3C License "2001" + X11 License X11R6.6 + Zlib/libpng License (as set forth in the addendum file) + Zope Public License 2.0, 2.1 + (Licenses without a specific version number or date are reproduced in the + file + GPL_Exception_Addendum.txt in your source package). + ------------------------------------------------------------------ +--- + Syntext, Inc. GPL License Exception for Syntext Serna Free Edition Version 1.0 diff --git a/docs/syntext-serna-exception-1.0.html b/docs/syntext-serna-exception-1.0.html index cb919ab80f..d590ae04c9 100644 --- a/docs/syntext-serna-exception-1.0.html +++ b/docs/syntext-serna-exception-1.0.html @@ -309,7 +309,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/syntext-serna-exception-1.0.json b/docs/syntext-serna-exception-1.0.json index 191c5c4fbe..951ac0f42f 100644 --- a/docs/syntext-serna-exception-1.0.json +++ b/docs/syntext-serna-exception-1.0.json @@ -1 +1,15 @@ -{"key": "syntext-serna-exception-1.0", "short_name": "Syntext Serna exception to GPL 2.0 or GPL 3.0", "name": "Syntext Serna exception to GPL 2.0 or GPL 3.0", "category": "Copyleft Limited", "owner": "Syntext", "homepage_url": "https://github.com/ydirson/serna-free/blob/master/GPL_EXCEPTION.txt", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-syntext-serna-exception-1.0", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt", "http://www.gnu.org/licenses/gpl-3.0.txt"], "standard_notice": "Syntext, Inc. GPL License Exception for Syntext Serna Free Edition\nVersion 1.0\nAdditional rights granted beyond the GPL (the \"Exception\").\nAs a special exception to the terms and conditions of GPL version 2.0\nor GPL version 3.0, Syntext, Inc. hereby grants you the rights described\nbelow,\nprovided you agree to the terms and conditions in this Exception, including\nits\nobligations and restrictions on use.\nNothing in this Exception gives you or anyone else the right to change the\nlicensing terms of the Syntext Serna Free Editon.\n1) Definitions\n\"FOSS Application\" means a free and open source software application\ndistributed subject to a license listed in the section below titled\n\"FOSS License List.\"\n\"Licensed Software\" shall refer to the software licensed under the GPL\nversion 2.0 or GPL version 3.0 and this exception.\n\"Derivative Work\" means a derivative work, as defined under applicable\ncopyright law, formed entirely from the Licensed Software and one or more\nFOSS\nApplications.\n\"Independent Work\" means portions of the Derivative Work that are not\nderived\nfrom the Licensed Software and can reasonably be considered independent and\nseparate works.\n2) The right to use open source licenses not compatible with the GNU\nGeneral\nPublic License version 2.0 or GNU General Public License version 3.0: You\nmay\ndistribute Derivative Work in object code or executable form, provided\nthat:\nA) You distribute Independent Works subject to a license listed in the\nsection 4 below, titled \"FOSS License List\";\nand\nB) You obey the GPL in all respects for the Licensed Software and all\nportions\n(including modifications and extensions) of the Licensed Software included\nin\nthe Derivative Work (provided that this condition does not apply to\nIndependent Works);\nC) You must, on request, make a complete package including the complete\nsource\ncode of Derivative Work (as defined in the GNU General Public License\nversion 2, section 3, but excluding anything excluded by the special\nexception\nin the same section) available to Syntext, Inc. under the same license as\nthat\ngranted to other recipients of the source code of Derivative Work;\nand\nD) Your or any other contributor's rights to:\ni) distribute the source code of Derivative Work to anyone for any purpose;\nand\nii) publicly discuss the development project for Derivative Work and its\ngoals\nin any form and in any forum are not prohibited by any legal instrument,\nincluding but not limited to contracts, non-disclosure agreements, and\nemployee contracts.\n3) Syntext, Inc. reserves all rights not expressly granted in these terms\nand\nconditions. If all of the above conditions are not met, then this FOSS\nLicense\nException does not apply to you or your Derivative Work.\n4) FOSS License List\nLicense name Version\n-----------------------------------------------------------------\nAcademic Free License 2.0, 2.1, 3.0\nApache Software License 1.0 or 1.1\nApache License 2.0\nApple Public Source License 2.0\nArtistic license (as set forth in the addendum file)\nBSD license \"July 22 1999\"\nCommon Development and Distribution License (CDDL) 1.0\nCommon Public License 1.0\nEclipse Public License 1.0\nGNU Library or \"Lesser\" General Public License (LGPL) 2.0, 2.1, 3.0\nJabber Open Source License 1.0\nMIT License (as set forth in the addendum file)\nMozilla Public License (MPL) 1.0 or 1.1\nOpen Software License 2.0, 3.0\nOpenSSL license (with original SSLeay license) \"2003\" (\"1998\")\nPHP License 3.0\nPython license (CNRI Python License) (as set forth in the addendum file)\nPython Software Foundation License 2.1.1\nQ Public License 1.0\nSleepycat License \"1999\"\nW3C License \"2001\"\nX11 License X11R6.6\nZlib/libpng License (as set forth in the addendum file)\nZope Public License 2.0, 2.1\n(Licenses without a specific version number or date are reproduced in the\nfile\nGPL_Exception_Addendum.txt in your source package).\n------------------------------------------------------------------\n"} \ No newline at end of file +{ + "key": "syntext-serna-exception-1.0", + "short_name": "Syntext Serna exception to GPL 2.0 or GPL 3.0", + "name": "Syntext Serna exception to GPL 2.0 or GPL 3.0", + "category": "Copyleft Limited", + "owner": "Syntext", + "homepage_url": "https://github.com/ydirson/serna-free/blob/master/GPL_EXCEPTION.txt", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-syntext-serna-exception-1.0", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt", + "http://www.gnu.org/licenses/gpl-3.0.txt" + ], + "standard_notice": "Syntext, Inc. GPL License Exception for Syntext Serna Free Edition\nVersion 1.0\nAdditional rights granted beyond the GPL (the \"Exception\").\nAs a special exception to the terms and conditions of GPL version 2.0\nor GPL version 3.0, Syntext, Inc. hereby grants you the rights described\nbelow,\nprovided you agree to the terms and conditions in this Exception, including\nits\nobligations and restrictions on use.\nNothing in this Exception gives you or anyone else the right to change the\nlicensing terms of the Syntext Serna Free Editon.\n1) Definitions\n\"FOSS Application\" means a free and open source software application\ndistributed subject to a license listed in the section below titled\n\"FOSS License List.\"\n\"Licensed Software\" shall refer to the software licensed under the GPL\nversion 2.0 or GPL version 3.0 and this exception.\n\"Derivative Work\" means a derivative work, as defined under applicable\ncopyright law, formed entirely from the Licensed Software and one or more\nFOSS\nApplications.\n\"Independent Work\" means portions of the Derivative Work that are not\nderived\nfrom the Licensed Software and can reasonably be considered independent and\nseparate works.\n2) The right to use open source licenses not compatible with the GNU\nGeneral\nPublic License version 2.0 or GNU General Public License version 3.0: You\nmay\ndistribute Derivative Work in object code or executable form, provided\nthat:\nA) You distribute Independent Works subject to a license listed in the\nsection 4 below, titled \"FOSS License List\";\nand\nB) You obey the GPL in all respects for the Licensed Software and all\nportions\n(including modifications and extensions) of the Licensed Software included\nin\nthe Derivative Work (provided that this condition does not apply to\nIndependent Works);\nC) You must, on request, make a complete package including the complete\nsource\ncode of Derivative Work (as defined in the GNU General Public License\nversion 2, section 3, but excluding anything excluded by the special\nexception\nin the same section) available to Syntext, Inc. under the same license as\nthat\ngranted to other recipients of the source code of Derivative Work;\nand\nD) Your or any other contributor's rights to:\ni) distribute the source code of Derivative Work to anyone for any purpose;\nand\nii) publicly discuss the development project for Derivative Work and its\ngoals\nin any form and in any forum are not prohibited by any legal instrument,\nincluding but not limited to contracts, non-disclosure agreements, and\nemployee contracts.\n3) Syntext, Inc. reserves all rights not expressly granted in these terms\nand\nconditions. If all of the above conditions are not met, then this FOSS\nLicense\nException does not apply to you or your Derivative Work.\n4) FOSS License List\nLicense name Version\n-----------------------------------------------------------------\nAcademic Free License 2.0, 2.1, 3.0\nApache Software License 1.0 or 1.1\nApache License 2.0\nApple Public Source License 2.0\nArtistic license (as set forth in the addendum file)\nBSD license \"July 22 1999\"\nCommon Development and Distribution License (CDDL) 1.0\nCommon Public License 1.0\nEclipse Public License 1.0\nGNU Library or \"Lesser\" General Public License (LGPL) 2.0, 2.1, 3.0\nJabber Open Source License 1.0\nMIT License (as set forth in the addendum file)\nMozilla Public License (MPL) 1.0 or 1.1\nOpen Software License 2.0, 3.0\nOpenSSL license (with original SSLeay license) \"2003\" (\"1998\")\nPHP License 3.0\nPython license (CNRI Python License) (as set forth in the addendum file)\nPython Software Foundation License 2.1.1\nQ Public License 1.0\nSleepycat License \"1999\"\nW3C License \"2001\"\nX11 License X11R6.6\nZlib/libpng License (as set forth in the addendum file)\nZope Public License 2.0, 2.1\n(Licenses without a specific version number or date are reproduced in the\nfile\nGPL_Exception_Addendum.txt in your source package).\n------------------------------------------------------------------\n" +} \ No newline at end of file diff --git a/docs/synthesis-toolkit.LICENSE b/docs/synthesis-toolkit.LICENSE index d813f34250..44e6fd4967 100644 --- a/docs/synthesis-toolkit.LICENSE +++ b/docs/synthesis-toolkit.LICENSE @@ -1,3 +1,17 @@ +--- +key: synthesis-toolkit +short_name: Synthesis Toolkit License +name: Synthesis Toolkit License +category: Permissive +owner: Stanford University +homepage_url: https://ccrma.stanford.edu/software/stk/faq.html#license +spdx_license_key: LicenseRef-scancode-synthesis-toolkit +minimum_coverage: 70 +standard_notice: | + The Synthesis ToolKit in C++ (STK) + Copyright (c) 1995--2019 Perry R. Cook and Gary P. Scavone +--- + 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 diff --git a/docs/synthesis-toolkit.html b/docs/synthesis-toolkit.html index 00bdb0e0b9..525b75428c 100644 --- a/docs/synthesis-toolkit.html +++ b/docs/synthesis-toolkit.html @@ -165,7 +165,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/synthesis-toolkit.json b/docs/synthesis-toolkit.json index 2814a19d64..63c705b90b 100644 --- a/docs/synthesis-toolkit.json +++ b/docs/synthesis-toolkit.json @@ -1 +1,11 @@ -{"key": "synthesis-toolkit", "short_name": "Synthesis Toolkit License", "name": "Synthesis Toolkit License", "category": "Permissive", "owner": "Stanford University", "homepage_url": "https://ccrma.stanford.edu/software/stk/faq.html#license", "spdx_license_key": "LicenseRef-scancode-synthesis-toolkit", "minimum_coverage": 70, "standard_notice": "The Synthesis ToolKit in C++ (STK)\nCopyright (c) 1995--2019 Perry R. Cook and Gary P. Scavone\n"} \ No newline at end of file +{ + "key": "synthesis-toolkit", + "short_name": "Synthesis Toolkit License", + "name": "Synthesis Toolkit License", + "category": "Permissive", + "owner": "Stanford University", + "homepage_url": "https://ccrma.stanford.edu/software/stk/faq.html#license", + "spdx_license_key": "LicenseRef-scancode-synthesis-toolkit", + "minimum_coverage": 70, + "standard_notice": "The Synthesis ToolKit in C++ (STK)\nCopyright (c) 1995--2019 Perry R. Cook and Gary P. Scavone\n" +} \ No newline at end of file diff --git a/docs/takao-abe.LICENSE b/docs/takao-abe.LICENSE index 5a819e4ba4..1ae0701afa 100644 --- a/docs/takao-abe.LICENSE +++ b/docs/takao-abe.LICENSE @@ -1,3 +1,12 @@ +--- +key: takao-abe +short_name: Takao Abe License +name: Takao Abe License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-takao-abe +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose is hereby granted without fee, provided that the following conditions are met: diff --git a/docs/takao-abe.html b/docs/takao-abe.html index 2679df2053..3ddd488164 100644 --- a/docs/takao-abe.html +++ b/docs/takao-abe.html @@ -150,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/takao-abe.json b/docs/takao-abe.json index dd6f30c4bf..0e147c75a6 100644 --- a/docs/takao-abe.json +++ b/docs/takao-abe.json @@ -1 +1,8 @@ -{"key": "takao-abe", "short_name": "Takao Abe License", "name": "Takao Abe License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-takao-abe"} \ No newline at end of file +{ + "key": "takao-abe", + "short_name": "Takao Abe License", + "name": "Takao Abe License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-takao-abe" +} \ No newline at end of file diff --git a/docs/takuya-ooura.LICENSE b/docs/takuya-ooura.LICENSE index c513ca40de..b7e38ce893 100644 --- a/docs/takuya-ooura.LICENSE +++ b/docs/takuya-ooura.LICENSE @@ -1,3 +1,13 @@ +--- +key: takuya-ooura +short_name: Takuya OOURA License +name: Takuya OOURA License +category: Permissive +owner: Takuya OOURA +homepage_url: http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html +spdx_license_key: LicenseRef-scancode-takuya-ooura +--- + You may use, copy, modify and distribute this code for any purpose (include commercial use) and without fee. Please refer to this package when you modify this code. \ No newline at end of file diff --git a/docs/takuya-ooura.html b/docs/takuya-ooura.html index 916227a55c..b95a90b58b 100644 --- a/docs/takuya-ooura.html +++ b/docs/takuya-ooura.html @@ -95,7 +95,7 @@
owner
- Unspecified + Takuya OOURA
@@ -129,7 +129,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/takuya-ooura.json b/docs/takuya-ooura.json index 3a324e3932..541d5e19ee 100644 --- a/docs/takuya-ooura.json +++ b/docs/takuya-ooura.json @@ -1 +1,9 @@ -{"key": "takuya-ooura", "short_name": "Takuya OOURA License", "name": "Takuya OOURA License", "category": "Permissive", "owner": "Unspecified", "homepage_url": "http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html", "spdx_license_key": "LicenseRef-scancode-takuya-ooura"} \ No newline at end of file +{ + "key": "takuya-ooura", + "short_name": "Takuya OOURA License", + "name": "Takuya OOURA License", + "category": "Permissive", + "owner": "Takuya OOURA", + "homepage_url": "http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html", + "spdx_license_key": "LicenseRef-scancode-takuya-ooura" +} \ No newline at end of file diff --git a/docs/takuya-ooura.yml b/docs/takuya-ooura.yml index 1cdb2d4bb1..74f92e4851 100644 --- a/docs/takuya-ooura.yml +++ b/docs/takuya-ooura.yml @@ -2,6 +2,6 @@ key: takuya-ooura short_name: Takuya OOURA License name: Takuya OOURA License category: Permissive -owner: Unspecified +owner: Takuya OOURA homepage_url: http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html spdx_license_key: LicenseRef-scancode-takuya-ooura diff --git a/docs/taligent-jdk.LICENSE b/docs/taligent-jdk.LICENSE index c6f139d004..2323f37537 100644 --- a/docs/taligent-jdk.LICENSE +++ b/docs/taligent-jdk.LICENSE @@ -1,3 +1,14 @@ +--- +key: taligent-jdk +short_name: Taligent JDK Proprietary Notice +name: Taligent JDK Proprietary Notice +category: Proprietary Free +owner: Taligent +homepage_url: https://github.com/typetools/checker-framework/blob/3c427f380f61f234688893467d9bc433cf1a584c/checker/jdk/index/src/java/sun/util/resources/OpenListResourceBundle.java#L26-L39 +notes: This notice is common is OpenJDK and related Java code. +spdx_license_key: LicenseRef-scancode-taligent-jdk +--- + The original version of this source code and documentation is copyrighted and owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These materials are provided under terms diff --git a/docs/taligent-jdk.html b/docs/taligent-jdk.html index e4f4d9235a..3f5afb8638 100644 --- a/docs/taligent-jdk.html +++ b/docs/taligent-jdk.html @@ -141,7 +141,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/taligent-jdk.json b/docs/taligent-jdk.json index 66dafb16e3..c09e499447 100644 --- a/docs/taligent-jdk.json +++ b/docs/taligent-jdk.json @@ -1 +1,10 @@ -{"key": "taligent-jdk", "short_name": "Taligent JDK Proprietary Notice", "name": "Taligent JDK Proprietary Notice", "category": "Proprietary Free", "owner": "Taligent", "homepage_url": "https://github.com/typetools/checker-framework/blob/3c427f380f61f234688893467d9bc433cf1a584c/checker/jdk/index/src/java/sun/util/resources/OpenListResourceBundle.java#L26-L39", "notes": "This notice is common is OpenJDK and related Java code.", "spdx_license_key": "LicenseRef-scancode-taligent-jdk"} \ No newline at end of file +{ + "key": "taligent-jdk", + "short_name": "Taligent JDK Proprietary Notice", + "name": "Taligent JDK Proprietary Notice", + "category": "Proprietary Free", + "owner": "Taligent", + "homepage_url": "https://github.com/typetools/checker-framework/blob/3c427f380f61f234688893467d9bc433cf1a584c/checker/jdk/index/src/java/sun/util/resources/OpenListResourceBundle.java#L26-L39", + "notes": "This notice is common is OpenJDK and related Java code.", + "spdx_license_key": "LicenseRef-scancode-taligent-jdk" +} \ No newline at end of file diff --git a/docs/tanuki-community-sla-1.0.LICENSE b/docs/tanuki-community-sla-1.0.LICENSE index b5a77e27a3..7328d4d8b4 100644 --- a/docs/tanuki-community-sla-1.0.LICENSE +++ b/docs/tanuki-community-sla-1.0.LICENSE @@ -1,3 +1,22 @@ +--- +key: tanuki-community-sla-1.0 +short_name: Tanuki Community SLA 1.0 +name: Tanuki Community Software License Agreement 1.0 +category: Copyleft +owner: Tanuki Software +homepage_url: http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html +spdx_license_key: LicenseRef-scancode-tanuki-community-sla-1.0 +minimum_coverage: 98 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - Copyright (c) 2001 Silver Egg Technology + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - Silver Egg Technology + - the Free Software Foundation +--- + Tanuki Software, Inc. Community Software License Agreement Version 1.0 diff --git a/docs/tanuki-community-sla-1.0.html b/docs/tanuki-community-sla-1.0.html index 5b3be8dbab..9341ecb23e 100644 --- a/docs/tanuki-community-sla-1.0.html +++ b/docs/tanuki-community-sla-1.0.html @@ -507,7 +507,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tanuki-community-sla-1.0.json b/docs/tanuki-community-sla-1.0.json index fd1c6cd05b..89ef05a526 100644 --- a/docs/tanuki-community-sla-1.0.json +++ b/docs/tanuki-community-sla-1.0.json @@ -1 +1,20 @@ -{"key": "tanuki-community-sla-1.0", "short_name": "Tanuki Community SLA 1.0", "name": "Tanuki Community Software License Agreement 1.0", "category": "Copyleft", "owner": "Tanuki Software", "homepage_url": "http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html", "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.0", "minimum_coverage": 98, "ignorable_copyrights": ["Copyright (c) 1989, 1991 Free Software Foundation, Inc.", "Copyright (c) 2001 Silver Egg Technology", "copyrighted by the Free Software Foundation"], "ignorable_holders": ["Free Software Foundation, Inc.", "Silver Egg Technology", "the Free Software Foundation"]} \ No newline at end of file +{ + "key": "tanuki-community-sla-1.0", + "short_name": "Tanuki Community SLA 1.0", + "name": "Tanuki Community Software License Agreement 1.0", + "category": "Copyleft", + "owner": "Tanuki Software", + "homepage_url": "http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.0", + "minimum_coverage": 98, + "ignorable_copyrights": [ + "Copyright (c) 1989, 1991 Free Software Foundation, Inc.", + "Copyright (c) 2001 Silver Egg Technology", + "copyrighted by the Free Software Foundation" + ], + "ignorable_holders": [ + "Free Software Foundation, Inc.", + "Silver Egg Technology", + "the Free Software Foundation" + ] +} \ No newline at end of file diff --git a/docs/tanuki-community-sla-1.1.LICENSE b/docs/tanuki-community-sla-1.1.LICENSE index 5f1b0da38e..17a5f95dab 100644 --- a/docs/tanuki-community-sla-1.1.LICENSE +++ b/docs/tanuki-community-sla-1.1.LICENSE @@ -1,3 +1,24 @@ +--- +key: tanuki-community-sla-1.1 +short_name: Tanuki Community SLA 1.1 +name: Tanuki Community Software License Agreement 1.1 +category: Copyleft +owner: Tanuki Software +homepage_url: http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html +spdx_license_key: LicenseRef-scancode-tanuki-community-sla-1.1 +minimum_coverage: 98 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - Copyright (c) 2001 Silver Egg Technology + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - Silver Egg Technology + - the Free Software Foundation +ignorable_urls: + - http://wrapper.tanukisoftware.org/ +--- + Tanuki Software, Ltd. Community Software License Agreement Version 1.1 diff --git a/docs/tanuki-community-sla-1.1.html b/docs/tanuki-community-sla-1.1.html index 5da3fca1d2..bdb8ea571f 100644 --- a/docs/tanuki-community-sla-1.1.html +++ b/docs/tanuki-community-sla-1.1.html @@ -553,7 +553,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tanuki-community-sla-1.1.json b/docs/tanuki-community-sla-1.1.json index 0dadf6876f..337093a33f 100644 --- a/docs/tanuki-community-sla-1.1.json +++ b/docs/tanuki-community-sla-1.1.json @@ -1 +1,23 @@ -{"key": "tanuki-community-sla-1.1", "short_name": "Tanuki Community SLA 1.1", "name": "Tanuki Community Software License Agreement 1.1", "category": "Copyleft", "owner": "Tanuki Software", "homepage_url": "http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html", "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.1", "minimum_coverage": 98, "ignorable_copyrights": ["Copyright (c) 1989, 1991 Free Software Foundation, Inc.", "Copyright (c) 2001 Silver Egg Technology", "copyrighted by the Free Software Foundation"], "ignorable_holders": ["Free Software Foundation, Inc.", "Silver Egg Technology", "the Free Software Foundation"], "ignorable_urls": ["http://wrapper.tanukisoftware.org/"]} \ No newline at end of file +{ + "key": "tanuki-community-sla-1.1", + "short_name": "Tanuki Community SLA 1.1", + "name": "Tanuki Community Software License Agreement 1.1", + "category": "Copyleft", + "owner": "Tanuki Software", + "homepage_url": "http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.1", + "minimum_coverage": 98, + "ignorable_copyrights": [ + "Copyright (c) 1989, 1991 Free Software Foundation, Inc.", + "Copyright (c) 2001 Silver Egg Technology", + "copyrighted by the Free Software Foundation" + ], + "ignorable_holders": [ + "Free Software Foundation, Inc.", + "Silver Egg Technology", + "the Free Software Foundation" + ], + "ignorable_urls": [ + "http://wrapper.tanukisoftware.org/" + ] +} \ No newline at end of file diff --git a/docs/tanuki-community-sla-1.2.LICENSE b/docs/tanuki-community-sla-1.2.LICENSE index 58032c11bf..d12d782ace 100644 --- a/docs/tanuki-community-sla-1.2.LICENSE +++ b/docs/tanuki-community-sla-1.2.LICENSE @@ -1,3 +1,24 @@ +--- +key: tanuki-community-sla-1.2 +short_name: Tanuki Community SLA 1.2 +name: Tanuki Community Software License Agreement 1.2 +category: Copyleft +owner: Tanuki Software +homepage_url: http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html +spdx_license_key: LicenseRef-scancode-tanuki-community-sla-1.2 +minimum_coverage: 98 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - Copyright (c) 2001 Silver Egg Technology + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - Silver Egg Technology + - the Free Software Foundation +ignorable_urls: + - http://wrapper.tanukisoftware.org/ +--- + Tanuki Software, Ltd. Community Software License Agreement Version 1.2 diff --git a/docs/tanuki-community-sla-1.2.html b/docs/tanuki-community-sla-1.2.html index c72d46dc13..c94c7a9d52 100644 --- a/docs/tanuki-community-sla-1.2.html +++ b/docs/tanuki-community-sla-1.2.html @@ -553,7 +553,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tanuki-community-sla-1.2.json b/docs/tanuki-community-sla-1.2.json index 33ccaa30bc..8879e11f9a 100644 --- a/docs/tanuki-community-sla-1.2.json +++ b/docs/tanuki-community-sla-1.2.json @@ -1 +1,23 @@ -{"key": "tanuki-community-sla-1.2", "short_name": "Tanuki Community SLA 1.2", "name": "Tanuki Community Software License Agreement 1.2", "category": "Copyleft", "owner": "Tanuki Software", "homepage_url": "http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html", "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.2", "minimum_coverage": 98, "ignorable_copyrights": ["Copyright (c) 1989, 1991 Free Software Foundation, Inc.", "Copyright (c) 2001 Silver Egg Technology", "copyrighted by the Free Software Foundation"], "ignorable_holders": ["Free Software Foundation, Inc.", "Silver Egg Technology", "the Free Software Foundation"], "ignorable_urls": ["http://wrapper.tanukisoftware.org/"]} \ No newline at end of file +{ + "key": "tanuki-community-sla-1.2", + "short_name": "Tanuki Community SLA 1.2", + "name": "Tanuki Community Software License Agreement 1.2", + "category": "Copyleft", + "owner": "Tanuki Software", + "homepage_url": "http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.2", + "minimum_coverage": 98, + "ignorable_copyrights": [ + "Copyright (c) 1989, 1991 Free Software Foundation, Inc.", + "Copyright (c) 2001 Silver Egg Technology", + "copyrighted by the Free Software Foundation" + ], + "ignorable_holders": [ + "Free Software Foundation, Inc.", + "Silver Egg Technology", + "the Free Software Foundation" + ], + "ignorable_urls": [ + "http://wrapper.tanukisoftware.org/" + ] +} \ No newline at end of file diff --git a/docs/tanuki-community-sla-1.3.LICENSE b/docs/tanuki-community-sla-1.3.LICENSE index 00432db6f7..8aed6a54b7 100644 --- a/docs/tanuki-community-sla-1.3.LICENSE +++ b/docs/tanuki-community-sla-1.3.LICENSE @@ -1,3 +1,27 @@ +--- +key: tanuki-community-sla-1.3 +short_name: Tanuki Community SLA 1.3 +name: Tanuki Community Software License Agreement 1.3 +category: Copyleft +owner: Tanuki Software +homepage_url: http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html +spdx_license_key: LicenseRef-scancode-tanuki-community-sla-1.3 +text_urls: + - http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - Copyright (c) 2001 Silver Egg Technology + - Copyright c 2007 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - Silver Egg Technology + - the Free Software Foundation +ignorable_urls: + - http://fsf.org/ + - http://wrapper.tanukisoftware.org/ +--- + Tanuki Software, Ltd. Community Software License Agreement Version 1.3 diff --git a/docs/tanuki-community-sla-1.3.html b/docs/tanuki-community-sla-1.3.html index f3557a64bd..92922c9e3b 100644 --- a/docs/tanuki-community-sla-1.3.html +++ b/docs/tanuki-community-sla-1.3.html @@ -1221,7 +1221,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tanuki-community-sla-1.3.json b/docs/tanuki-community-sla-1.3.json index e3734b143c..c9c2bc9aaf 100644 --- a/docs/tanuki-community-sla-1.3.json +++ b/docs/tanuki-community-sla-1.3.json @@ -1 +1,27 @@ -{"key": "tanuki-community-sla-1.3", "short_name": "Tanuki Community SLA 1.3", "name": "Tanuki Community Software License Agreement 1.3", "category": "Copyleft", "owner": "Tanuki Software", "homepage_url": "http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html", "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.3", "text_urls": ["http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html"], "ignorable_copyrights": ["Copyright (c) 1989, 1991 Free Software Foundation, Inc.", "Copyright (c) 2001 Silver Egg Technology", "Copyright c 2007 Free Software Foundation, Inc. ", "copyrighted by the Free Software Foundation"], "ignorable_holders": ["Free Software Foundation, Inc.", "Silver Egg Technology", "the Free Software Foundation"], "ignorable_urls": ["http://fsf.org/", "http://wrapper.tanukisoftware.org/"]} \ No newline at end of file +{ + "key": "tanuki-community-sla-1.3", + "short_name": "Tanuki Community SLA 1.3", + "name": "Tanuki Community Software License Agreement 1.3", + "category": "Copyleft", + "owner": "Tanuki Software", + "homepage_url": "http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.3", + "text_urls": [ + "http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 1989, 1991 Free Software Foundation, Inc.", + "Copyright (c) 2001 Silver Egg Technology", + "Copyright c 2007 Free Software Foundation, Inc. ", + "copyrighted by the Free Software Foundation" + ], + "ignorable_holders": [ + "Free Software Foundation, Inc.", + "Silver Egg Technology", + "the Free Software Foundation" + ], + "ignorable_urls": [ + "http://fsf.org/", + "http://wrapper.tanukisoftware.org/" + ] +} \ No newline at end of file diff --git a/docs/tanuki-development.LICENSE b/docs/tanuki-development.LICENSE index bc3689d913..7e22d12da2 100644 --- a/docs/tanuki-development.LICENSE +++ b/docs/tanuki-development.LICENSE @@ -1,3 +1,20 @@ +--- +key: tanuki-development +short_name: Tanuki Development License 1.3 +name: Tanuki Development Software License Agreement 1.3 +category: Commercial +owner: Tanuki Software +homepage_url: https://wrapper.tanukisoftware.com/doc/english/licenseDevelopment.html#text +spdx_license_key: LicenseRef-scancode-tanuki-development +faq_url: https://wrapper.tanukisoftware.com/doc/english/licenseDevelopment.html#overview +ignorable_copyrights: + - Copyright (c) 2001 Silver Egg Technology +ignorable_holders: + - Silver Egg Technology +ignorable_urls: + - http://wrapper.tanukisoftware.org/ +--- + Tanuki Software, Ltd. Development Software License Agreement Version 1.3 diff --git a/docs/tanuki-development.html b/docs/tanuki-development.html index 052e6b22ab..1b0eff8a6e 100644 --- a/docs/tanuki-development.html +++ b/docs/tanuki-development.html @@ -797,7 +797,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tanuki-development.json b/docs/tanuki-development.json index c03e6d617a..4af36759bf 100644 --- a/docs/tanuki-development.json +++ b/docs/tanuki-development.json @@ -1 +1,19 @@ -{"key": "tanuki-development", "short_name": "Tanuki Development License 1.3", "name": "Tanuki Development Software License Agreement 1.3", "category": "Commercial", "owner": "Tanuki Software", "homepage_url": "https://wrapper.tanukisoftware.com/doc/english/licenseDevelopment.html#text", "spdx_license_key": "LicenseRef-scancode-tanuki-development", "faq_url": "https://wrapper.tanukisoftware.com/doc/english/licenseDevelopment.html#overview", "ignorable_copyrights": ["Copyright (c) 2001 Silver Egg Technology"], "ignorable_holders": ["Silver Egg Technology"], "ignorable_urls": ["http://wrapper.tanukisoftware.org/"]} \ No newline at end of file +{ + "key": "tanuki-development", + "short_name": "Tanuki Development License 1.3", + "name": "Tanuki Development Software License Agreement 1.3", + "category": "Commercial", + "owner": "Tanuki Software", + "homepage_url": "https://wrapper.tanukisoftware.com/doc/english/licenseDevelopment.html#text", + "spdx_license_key": "LicenseRef-scancode-tanuki-development", + "faq_url": "https://wrapper.tanukisoftware.com/doc/english/licenseDevelopment.html#overview", + "ignorable_copyrights": [ + "Copyright (c) 2001 Silver Egg Technology" + ], + "ignorable_holders": [ + "Silver Egg Technology" + ], + "ignorable_urls": [ + "http://wrapper.tanukisoftware.org/" + ] +} \ No newline at end of file diff --git a/docs/tanuki-maintenance.LICENSE b/docs/tanuki-maintenance.LICENSE index 59a83a2d76..06052f97f1 100644 --- a/docs/tanuki-maintenance.LICENSE +++ b/docs/tanuki-maintenance.LICENSE @@ -1,3 +1,15 @@ +--- +key: tanuki-maintenance +short_name: Tanuki Maintenance Addendum 1.3 +name: Tanuki Maintenance Support Services Addendum 1.3 +category: Commercial +owner: Tanuki Software +homepage_url: https://wrapper.tanukisoftware.com/doc/english/licenseDevelopment.html#maintenance +spdx_license_key: LicenseRef-scancode-tanuki-maintenance +ignorable_emails: + - wrapper-support@tanukisoftware.com +--- + Tanuki Software, Ltd. Maintenance Support Services Addendum Version 1.3 diff --git a/docs/tanuki-maintenance.html b/docs/tanuki-maintenance.html index ce5f27b89a..df02f1e657 100644 --- a/docs/tanuki-maintenance.html +++ b/docs/tanuki-maintenance.html @@ -391,7 +391,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tanuki-maintenance.json b/docs/tanuki-maintenance.json index 203b9ee5a6..9992bb8a80 100644 --- a/docs/tanuki-maintenance.json +++ b/docs/tanuki-maintenance.json @@ -1 +1,12 @@ -{"key": "tanuki-maintenance", "short_name": "Tanuki Maintenance Addendum 1.3", "name": "Tanuki Maintenance Support Services Addendum 1.3", "category": "Commercial", "owner": "Tanuki Software", "homepage_url": "https://wrapper.tanukisoftware.com/doc/english/licenseDevelopment.html#maintenance", "spdx_license_key": "LicenseRef-scancode-tanuki-maintenance", "ignorable_emails": ["wrapper-support@tanukisoftware.com"]} \ No newline at end of file +{ + "key": "tanuki-maintenance", + "short_name": "Tanuki Maintenance Addendum 1.3", + "name": "Tanuki Maintenance Support Services Addendum 1.3", + "category": "Commercial", + "owner": "Tanuki Software", + "homepage_url": "https://wrapper.tanukisoftware.com/doc/english/licenseDevelopment.html#maintenance", + "spdx_license_key": "LicenseRef-scancode-tanuki-maintenance", + "ignorable_emails": [ + "wrapper-support@tanukisoftware.com" + ] +} \ No newline at end of file diff --git a/docs/tapr-ohl-1.0.LICENSE b/docs/tapr-ohl-1.0.LICENSE index c678fc3b9b..0692f7183c 100644 --- a/docs/tapr-ohl-1.0.LICENSE +++ b/docs/tapr-ohl-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: tapr-ohl-1.0 +short_name: TAPR Open Hardware License v1.0 +name: TAPR Open Hardware License v1.0 +category: Copyleft Limited +owner: TAPR +homepage_url: https://www.tapr.org/OHL +spdx_license_key: TAPR-OHL-1.0 +other_urls: + - https://www.tapr.org/OHL +ignorable_copyrights: + - Copyright 2007 TAPR - http://www.tapr.org/OHL +ignorable_holders: + - TAPR +ignorable_urls: + - http://www.tapr.org/OHL +--- + The TAPR Open Hardware License Version 1.0 (May 25, 2007) Copyright 2007 TAPR - http://www.tapr.org/OHL PREAMBLE diff --git a/docs/tapr-ohl-1.0.html b/docs/tapr-ohl-1.0.html index 51cffa1a49..0a2392f48b 100644 --- a/docs/tapr-ohl-1.0.html +++ b/docs/tapr-ohl-1.0.html @@ -297,7 +297,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tapr-ohl-1.0.json b/docs/tapr-ohl-1.0.json index 89e5134eba..9dc25ffc47 100644 --- a/docs/tapr-ohl-1.0.json +++ b/docs/tapr-ohl-1.0.json @@ -1 +1,21 @@ -{"key": "tapr-ohl-1.0", "short_name": "TAPR Open Hardware License v1.0", "name": "TAPR Open Hardware License v1.0", "category": "Copyleft Limited", "owner": "TAPR", "homepage_url": "https://www.tapr.org/OHL", "spdx_license_key": "TAPR-OHL-1.0", "other_urls": ["https://www.tapr.org/OHL"], "ignorable_copyrights": ["Copyright 2007 TAPR - http://www.tapr.org/OHL"], "ignorable_holders": ["TAPR"], "ignorable_urls": ["http://www.tapr.org/OHL"]} \ No newline at end of file +{ + "key": "tapr-ohl-1.0", + "short_name": "TAPR Open Hardware License v1.0", + "name": "TAPR Open Hardware License v1.0", + "category": "Copyleft Limited", + "owner": "TAPR", + "homepage_url": "https://www.tapr.org/OHL", + "spdx_license_key": "TAPR-OHL-1.0", + "other_urls": [ + "https://www.tapr.org/OHL" + ], + "ignorable_copyrights": [ + "Copyright 2007 TAPR - http://www.tapr.org/OHL" + ], + "ignorable_holders": [ + "TAPR" + ], + "ignorable_urls": [ + "http://www.tapr.org/OHL" + ] +} \ No newline at end of file diff --git a/docs/tatu-ylonen.LICENSE b/docs/tatu-ylonen.LICENSE index bf6f8a0e62..2e1c675474 100644 --- a/docs/tatu-ylonen.LICENSE +++ b/docs/tatu-ylonen.LICENSE @@ -1,5 +1,18 @@ +--- +key: tatu-ylonen +short_name: Tatu Ylonen License +name: Tatu Ylonen License +category: Permissive +owner: Secure Shell +spdx_license_key: SSH-short +other_urls: + - https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/pathnames.h + - http://web.mit.edu/kolya/.f/root/athena.mit.edu/sipb.mit.edu/project/openssh/OldFiles/src/openssh-2.9.9p2/ssh-add.1 + - https://joinup.ec.europa.eu/svn/lesoll/trunk/italc/lib/src/dsa_key.cpp +--- + As far as I am concerned, the code I have written for this software can be used freely for any purpose. Any derived versions of this software must be clearly marked as such, and if the derived work is incompatible with the protocol description in the RFC file, it must be -called by a name other than "ssh" or "Secure Shell". +called by a name other than "ssh" or "Secure Shell". \ No newline at end of file diff --git a/docs/tatu-ylonen.html b/docs/tatu-ylonen.html index b45c80bb98..80302a54cc 100644 --- a/docs/tatu-ylonen.html +++ b/docs/tatu-ylonen.html @@ -121,8 +121,7 @@ can be used freely for any purpose. Any derived versions of this software must be clearly marked as such, and if the derived work is incompatible with the protocol description in the RFC file, it must be -called by a name other than "ssh" or "Secure Shell". - +called by a name other than "ssh" or "Secure Shell".
@@ -134,7 +133,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tatu-ylonen.json b/docs/tatu-ylonen.json index 59e183c5b1..0a2dfcdc2c 100644 --- a/docs/tatu-ylonen.json +++ b/docs/tatu-ylonen.json @@ -1 +1,13 @@ -{"key": "tatu-ylonen", "short_name": "Tatu Ylonen License", "name": "Tatu Ylonen License", "category": "Permissive", "owner": "Secure Shell", "spdx_license_key": "SSH-short", "other_urls": ["https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/pathnames.h", "http://web.mit.edu/kolya/.f/root/athena.mit.edu/sipb.mit.edu/project/openssh/OldFiles/src/openssh-2.9.9p2/ssh-add.1", "https://joinup.ec.europa.eu/svn/lesoll/trunk/italc/lib/src/dsa_key.cpp"]} \ No newline at end of file +{ + "key": "tatu-ylonen", + "short_name": "Tatu Ylonen License", + "name": "Tatu Ylonen License", + "category": "Permissive", + "owner": "Secure Shell", + "spdx_license_key": "SSH-short", + "other_urls": [ + "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/pathnames.h", + "http://web.mit.edu/kolya/.f/root/athena.mit.edu/sipb.mit.edu/project/openssh/OldFiles/src/openssh-2.9.9p2/ssh-add.1", + "https://joinup.ec.europa.eu/svn/lesoll/trunk/italc/lib/src/dsa_key.cpp" + ] +} \ No newline at end of file diff --git a/docs/tcl.LICENSE b/docs/tcl.LICENSE index c52743f7fd..2dc9ad1fa7 100644 --- a/docs/tcl.LICENSE +++ b/docs/tcl.LICENSE @@ -1,3 +1,24 @@ +--- +key: tcl +short_name: TCL/TK License +name: TCL/TK License +category: Permissive +owner: Tcl Developer Xchange +homepage_url: http://www.tcl.tk/software/tcltk/license.html +spdx_license_key: TCL +text_urls: + - http://www.tcl.tk/software/tcltk/license.html +other_urls: + - http://fedoraproject.org/wiki/Licensing/TCL + - https://fedoraproject.org/wiki/Licensing/TCL +ignorable_copyrights: + - copyrighted by the Regents of the University of California, Sun Microsystems, Inc., Scriptics + Corporation, ActiveState Corporation +ignorable_holders: + - the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation, + ActiveState Corporation +--- + 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 diff --git a/docs/tcl.html b/docs/tcl.html index cbed23ccfb..7653ca24a6 100644 --- a/docs/tcl.html +++ b/docs/tcl.html @@ -202,7 +202,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tcl.json b/docs/tcl.json index 66680aefc9..d6ec9152ed 100644 --- a/docs/tcl.json +++ b/docs/tcl.json @@ -1 +1,22 @@ -{"key": "tcl", "short_name": "TCL/TK License", "name": "TCL/TK License", "category": "Permissive", "owner": "Tcl Developer Xchange", "homepage_url": "http://www.tcl.tk/software/tcltk/license.html", "spdx_license_key": "TCL", "text_urls": ["http://www.tcl.tk/software/tcltk/license.html"], "other_urls": ["http://fedoraproject.org/wiki/Licensing/TCL", "https://fedoraproject.org/wiki/Licensing/TCL"], "ignorable_copyrights": ["copyrighted by the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState Corporation"], "ignorable_holders": ["the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState Corporation"]} \ No newline at end of file +{ + "key": "tcl", + "short_name": "TCL/TK License", + "name": "TCL/TK License", + "category": "Permissive", + "owner": "Tcl Developer Xchange", + "homepage_url": "http://www.tcl.tk/software/tcltk/license.html", + "spdx_license_key": "TCL", + "text_urls": [ + "http://www.tcl.tk/software/tcltk/license.html" + ], + "other_urls": [ + "http://fedoraproject.org/wiki/Licensing/TCL", + "https://fedoraproject.org/wiki/Licensing/TCL" + ], + "ignorable_copyrights": [ + "copyrighted by the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState Corporation" + ], + "ignorable_holders": [ + "the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState Corporation" + ] +} \ No newline at end of file diff --git a/docs/tcp-wrappers.LICENSE b/docs/tcp-wrappers.LICENSE index 1668a66166..2796b5e29c 100644 --- a/docs/tcp-wrappers.LICENSE +++ b/docs/tcp-wrappers.LICENSE @@ -1,3 +1,19 @@ +--- +key: tcp-wrappers +short_name: TCP Wrappers License +name: TCP Wrappers License +category: Permissive +owner: Wietse Venema +homepage_url: ftp://ftp.porcupine.org/pub/security/tcp_wrappers_license +spdx_license_key: TCP-wrappers +other_urls: + - http://rc.quest.com/topics/openssh/license.php#tcpwrappers +ignorable_copyrights: + - Copyright 1995 by Wietse Venema +ignorable_holders: + - Wietse Venema +--- + -----BEGIN PGP SIGNED MESSAGE----- As of June 1, 2001, the text below constitutes the TCP Wrappers license. diff --git a/docs/tcp-wrappers.html b/docs/tcp-wrappers.html index 28b335b101..e0f167df5e 100644 --- a/docs/tcp-wrappers.html +++ b/docs/tcp-wrappers.html @@ -184,7 +184,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tcp-wrappers.json b/docs/tcp-wrappers.json index 4ff607dfae..7dd360200e 100644 --- a/docs/tcp-wrappers.json +++ b/docs/tcp-wrappers.json @@ -1 +1,18 @@ -{"key": "tcp-wrappers", "short_name": "TCP Wrappers License", "name": "TCP Wrappers License", "category": "Permissive", "owner": "Wietse Venema", "homepage_url": "ftp://ftp.porcupine.org/pub/security/tcp_wrappers_license", "spdx_license_key": "TCP-wrappers", "other_urls": ["http://rc.quest.com/topics/openssh/license.php#tcpwrappers"], "ignorable_copyrights": ["Copyright 1995 by Wietse Venema"], "ignorable_holders": ["Wietse Venema"]} \ No newline at end of file +{ + "key": "tcp-wrappers", + "short_name": "TCP Wrappers License", + "name": "TCP Wrappers License", + "category": "Permissive", + "owner": "Wietse Venema", + "homepage_url": "ftp://ftp.porcupine.org/pub/security/tcp_wrappers_license", + "spdx_license_key": "TCP-wrappers", + "other_urls": [ + "http://rc.quest.com/topics/openssh/license.php#tcpwrappers" + ], + "ignorable_copyrights": [ + "Copyright 1995 by Wietse Venema" + ], + "ignorable_holders": [ + "Wietse Venema" + ] +} \ No newline at end of file diff --git a/docs/teamdev-services.LICENSE b/docs/teamdev-services.LICENSE index 23423475f7..d9df138767 100644 --- a/docs/teamdev-services.LICENSE +++ b/docs/teamdev-services.LICENSE @@ -1,3 +1,22 @@ +--- +key: teamdev-services +short_name: TeamDev Services License +name: TeamDev Services License +category: Commercial +owner: TeamDev +homepage_url: https://www.teamdev.com/services +spdx_license_key: LicenseRef-scancode-teamdev-services +minimum_coverage: 98 +ignorable_urls: + - http://google.com/+TeamDev + - http://twitter.com/TeamDev + - http://www.linkedin.com/company/teamdev-ltd + - https://www.facebook.com/TeamDev + - https://www.teamdev.com/services +ignorable_emails: + - sales@teamdev.com +--- + https://www.teamdev.com/services TeamDev diff --git a/docs/teamdev-services.html b/docs/teamdev-services.html index 189feb4a12..484395c0a4 100644 --- a/docs/teamdev-services.html +++ b/docs/teamdev-services.html @@ -164,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/teamdev-services.json b/docs/teamdev-services.json index d6efbb64f7..b7dcf30a2c 100644 --- a/docs/teamdev-services.json +++ b/docs/teamdev-services.json @@ -1 +1,20 @@ -{"key": "teamdev-services", "short_name": "TeamDev Services License", "name": "TeamDev Services License", "category": "Commercial", "owner": "TeamDev", "homepage_url": "https://www.teamdev.com/services", "spdx_license_key": "LicenseRef-scancode-teamdev-services", "minimum_coverage": 98, "ignorable_urls": ["http://google.com/+TeamDev", "http://twitter.com/TeamDev", "http://www.linkedin.com/company/teamdev-ltd", "https://www.facebook.com/TeamDev", "https://www.teamdev.com/services"], "ignorable_emails": ["sales@teamdev.com"]} \ No newline at end of file +{ + "key": "teamdev-services", + "short_name": "TeamDev Services License", + "name": "TeamDev Services License", + "category": "Commercial", + "owner": "TeamDev", + "homepage_url": "https://www.teamdev.com/services", + "spdx_license_key": "LicenseRef-scancode-teamdev-services", + "minimum_coverage": 98, + "ignorable_urls": [ + "http://google.com/+TeamDev", + "http://twitter.com/TeamDev", + "http://www.linkedin.com/company/teamdev-ltd", + "https://www.facebook.com/TeamDev", + "https://www.teamdev.com/services" + ], + "ignorable_emails": [ + "sales@teamdev.com" + ] +} \ No newline at end of file diff --git a/docs/tekhvc.LICENSE b/docs/tekhvc.LICENSE index e6cbf78d92..57e87d98ce 100644 --- a/docs/tekhvc.LICENSE +++ b/docs/tekhvc.LICENSE @@ -1,3 +1,14 @@ +--- +key: tekhvc +short_name: TekHVC License +name: TekHVC License +category: Permissive +owner: Tektronix +spdx_license_key: LicenseRef-scancode-tekhvc +other_urls: + - https://www.x.org/releases/individual/lib/libX11-1.7.2.tar.bz2 +--- + Permission is hereby granted to use, copy, modify, sell, and otherwise distribute this software and its documentation for any purpose and without fee, provided that: diff --git a/docs/tekhvc.html b/docs/tekhvc.html index 969c2e7190..b89f81519d 100644 --- a/docs/tekhvc.html +++ b/docs/tekhvc.html @@ -155,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tekhvc.json b/docs/tekhvc.json index 978db88c4c..e91cc38000 100644 --- a/docs/tekhvc.json +++ b/docs/tekhvc.json @@ -1 +1,11 @@ -{"key": "tekhvc", "short_name": "TekHVC License", "name": "TekHVC License", "category": "Permissive", "owner": "Tektronix", "spdx_license_key": "LicenseRef-scancode-tekhvc", "other_urls": ["https://www.x.org/releases/individual/lib/libX11-1.7.2.tar.bz2"]} \ No newline at end of file +{ + "key": "tekhvc", + "short_name": "TekHVC License", + "name": "TekHVC License", + "category": "Permissive", + "owner": "Tektronix", + "spdx_license_key": "LicenseRef-scancode-tekhvc", + "other_urls": [ + "https://www.x.org/releases/individual/lib/libX11-1.7.2.tar.bz2" + ] +} \ No newline at end of file diff --git a/docs/telerik-eula.LICENSE b/docs/telerik-eula.LICENSE index 780399d0c1..ca74f3af8a 100644 --- a/docs/telerik-eula.LICENSE +++ b/docs/telerik-eula.LICENSE @@ -1,3 +1,19 @@ +--- +key: telerik-eula +short_name: Telerik EULA +name: Telerik EULA +category: Commercial +owner: Telerik +homepage_url: http://www.telerik.com/purchase/license-agreement/kendo-ui-professional +spdx_license_key: LicenseRef-scancode-telerik-eula +ignorable_urls: + - http://wixtoolset.org/ + - http://www.telerik.com/purchase/license-agreement/platform + - http://www.telerik.com/purchase/support-plans/kendo-ui + - https://github.com/kendo-labs/angular-kendo + - https://github.com/telerik/kendo-ui-core +--- + Telerik End User License Agreement for Kendo UI Professional (Last Updated July 16th, 2014) diff --git a/docs/telerik-eula.html b/docs/telerik-eula.html index 24a1360a5c..fda56851a2 100644 --- a/docs/telerik-eula.html +++ b/docs/telerik-eula.html @@ -275,7 +275,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/telerik-eula.json b/docs/telerik-eula.json index fbde82bf9d..abb1fc795e 100644 --- a/docs/telerik-eula.json +++ b/docs/telerik-eula.json @@ -1 +1,16 @@ -{"key": "telerik-eula", "short_name": "Telerik EULA", "name": "Telerik EULA", "category": "Commercial", "owner": "Telerik", "homepage_url": "http://www.telerik.com/purchase/license-agreement/kendo-ui-professional", "spdx_license_key": "LicenseRef-scancode-telerik-eula", "ignorable_urls": ["http://wixtoolset.org/", "http://www.telerik.com/purchase/license-agreement/platform", "http://www.telerik.com/purchase/support-plans/kendo-ui", "https://github.com/kendo-labs/angular-kendo", "https://github.com/telerik/kendo-ui-core"]} \ No newline at end of file +{ + "key": "telerik-eula", + "short_name": "Telerik EULA", + "name": "Telerik EULA", + "category": "Commercial", + "owner": "Telerik", + "homepage_url": "http://www.telerik.com/purchase/license-agreement/kendo-ui-professional", + "spdx_license_key": "LicenseRef-scancode-telerik-eula", + "ignorable_urls": [ + "http://wixtoolset.org/", + "http://www.telerik.com/purchase/license-agreement/platform", + "http://www.telerik.com/purchase/support-plans/kendo-ui", + "https://github.com/kendo-labs/angular-kendo", + "https://github.com/telerik/kendo-ui-core" + ] +} \ No newline at end of file diff --git a/docs/tenable-nessus.LICENSE b/docs/tenable-nessus.LICENSE index ad98987a41..82d44aaeed 100644 --- a/docs/tenable-nessus.LICENSE +++ b/docs/tenable-nessus.LICENSE @@ -1,3 +1,22 @@ +--- +key: tenable-nessus +short_name: Tenable Nessus License +name: Tenable Nessus Software License and Subscription Agreement +category: Proprietary Free +owner: Tenable +homepage_url: https://static.tenable.com/prod_docs/Nessus_6_SLA_and_Subscription_Agreement.pdf +spdx_license_key: LicenseRef-scancode-tenable-nessus +text_urls: + - https://static.tenable.com/prod_docs/Nessus_6_SLA_and_Subscription_Agreement.pdf +ignorable_copyrights: + - copyrighted by Tenable +ignorable_holders: + - Tenable +ignorable_urls: + - http://www.nessus.org/ + - http://www.tenable.com/ +--- + TENABLE NETWORK SECURITY, INC. NESSUS SOFTWARE LICENSE AND SUBSCRIPTION AGREEMENT diff --git a/docs/tenable-nessus.html b/docs/tenable-nessus.html index 81576f3e3f..3ebf23fc88 100644 --- a/docs/tenable-nessus.html +++ b/docs/tenable-nessus.html @@ -234,7 +234,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tenable-nessus.json b/docs/tenable-nessus.json index c003ae73f6..9c2f271bd1 100644 --- a/docs/tenable-nessus.json +++ b/docs/tenable-nessus.json @@ -1 +1,22 @@ -{"key": "tenable-nessus", "short_name": "Tenable Nessus License", "name": "Tenable Nessus Software License and Subscription Agreement", "category": "Proprietary Free", "owner": "Tenable", "homepage_url": "https://static.tenable.com/prod_docs/Nessus_6_SLA_and_Subscription_Agreement.pdf", "spdx_license_key": "LicenseRef-scancode-tenable-nessus", "text_urls": ["https://static.tenable.com/prod_docs/Nessus_6_SLA_and_Subscription_Agreement.pdf"], "ignorable_copyrights": ["copyrighted by Tenable"], "ignorable_holders": ["Tenable"], "ignorable_urls": ["http://www.nessus.org/", "http://www.tenable.com/"]} \ No newline at end of file +{ + "key": "tenable-nessus", + "short_name": "Tenable Nessus License", + "name": "Tenable Nessus Software License and Subscription Agreement", + "category": "Proprietary Free", + "owner": "Tenable", + "homepage_url": "https://static.tenable.com/prod_docs/Nessus_6_SLA_and_Subscription_Agreement.pdf", + "spdx_license_key": "LicenseRef-scancode-tenable-nessus", + "text_urls": [ + "https://static.tenable.com/prod_docs/Nessus_6_SLA_and_Subscription_Agreement.pdf" + ], + "ignorable_copyrights": [ + "copyrighted by Tenable" + ], + "ignorable_holders": [ + "Tenable" + ], + "ignorable_urls": [ + "http://www.nessus.org/", + "http://www.tenable.com/" + ] +} \ No newline at end of file diff --git a/docs/term-readkey.LICENSE b/docs/term-readkey.LICENSE index ef0a5b871f..71ddb4c212 100644 --- a/docs/term-readkey.LICENSE +++ b/docs/term-readkey.LICENSE @@ -1,2 +1,11 @@ +--- +key: term-readkey +short_name: Term Readkey License +name: Term Readkey License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-term-readkey +--- + Unlimited distribution and/or modification is allowed as long as this copyright notice remains intact. \ No newline at end of file diff --git a/docs/term-readkey.html b/docs/term-readkey.html index 7d72404d1c..89fb75ce62 100644 --- a/docs/term-readkey.html +++ b/docs/term-readkey.html @@ -121,7 +121,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/term-readkey.json b/docs/term-readkey.json index b888176f90..1a187d69a9 100644 --- a/docs/term-readkey.json +++ b/docs/term-readkey.json @@ -1 +1,8 @@ -{"key": "term-readkey", "short_name": "Term Readkey License", "name": "Term Readkey License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-term-readkey"} \ No newline at end of file +{ + "key": "term-readkey", + "short_name": "Term Readkey License", + "name": "Term Readkey License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-term-readkey" +} \ No newline at end of file diff --git a/docs/tested-software.LICENSE b/docs/tested-software.LICENSE index af06def542..6667cd5ae6 100644 --- a/docs/tested-software.LICENSE +++ b/docs/tested-software.LICENSE @@ -1,7 +1,16 @@ +--- +key: tested-software +short_name: Tested Software License +name: Tested Software License +category: Permissive +owner: Autonomous Zone Industries +spdx_license_key: LicenseRef-scancode-tested-software +--- + License: This is free software. You may use this software for any purpose including modification/redistribution, so long as this header remains intact and that you do not claim any rights of ownership or authorship of this software. This software has been tested, but no warranty is expressed or -implied. +implied. \ No newline at end of file diff --git a/docs/tested-software.html b/docs/tested-software.html index 30a258a849..605eff475b 100644 --- a/docs/tested-software.html +++ b/docs/tested-software.html @@ -114,8 +114,7 @@ this header remains intact and that you do not claim any rights of ownership or authorship of this software. This software has been tested, but no warranty is expressed or -implied. - +implied.
@@ -127,7 +126,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tested-software.json b/docs/tested-software.json index d4602c5bd6..568e4ebb28 100644 --- a/docs/tested-software.json +++ b/docs/tested-software.json @@ -1 +1,8 @@ -{"key": "tested-software", "short_name": "Tested Software License", "name": "Tested Software License", "category": "Permissive", "owner": "Autonomous Zone Industries", "spdx_license_key": "LicenseRef-scancode-tested-software"} \ No newline at end of file +{ + "key": "tested-software", + "short_name": "Tested Software License", + "name": "Tested Software License", + "category": "Permissive", + "owner": "Autonomous Zone Industries", + "spdx_license_key": "LicenseRef-scancode-tested-software" +} \ No newline at end of file diff --git a/docs/tex-exception.LICENSE b/docs/tex-exception.LICENSE index dae130df71..fa22e4e1fe 100644 --- a/docs/tex-exception.LICENSE +++ b/docs/tex-exception.LICENSE @@ -1,4 +1,14 @@ +--- +key: tex-exception +short_name: TeX exception to GPL 3.0 +name: TeX exception to GPL 3.0 +category: Copyleft Limited +owner: Unspecified +is_exception: yes +spdx_license_key: LicenseRef-scancode-tex-exception +--- + As a special exception, when this file is read by TeX when processing a Texinfo source document, you may use the result without restriction. This Exception is an additional permission under section 7 -of the GNU General Public License, version 3 ("GPLv3"). +of the GNU General Public License, version 3 ("GPLv3"). \ No newline at end of file diff --git a/docs/tex-exception.html b/docs/tex-exception.html index 975069963d..94bf440c89 100644 --- a/docs/tex-exception.html +++ b/docs/tex-exception.html @@ -118,8 +118,7 @@
As a special exception, when this file is read by TeX when processing
 a Texinfo source document, you may use the result without
 restriction. This Exception is an additional permission under section 7
-of the GNU General Public License, version 3 ("GPLv3").
-
+of the GNU General Public License, version 3 ("GPLv3").
@@ -131,7 +130,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tex-exception.json b/docs/tex-exception.json index 1e2289122c..d04ced7dd0 100644 --- a/docs/tex-exception.json +++ b/docs/tex-exception.json @@ -1 +1,9 @@ -{"key": "tex-exception", "short_name": "TeX exception to GPL 3.0", "name": "TeX exception to GPL 3.0", "category": "Copyleft Limited", "owner": "Unspecified", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-tex-exception"} \ No newline at end of file +{ + "key": "tex-exception", + "short_name": "TeX exception to GPL 3.0", + "name": "TeX exception to GPL 3.0", + "category": "Copyleft Limited", + "owner": "Unspecified", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-tex-exception" +} \ No newline at end of file diff --git a/docs/tex-live.LICENSE b/docs/tex-live.LICENSE index e5beca0ec9..66c6fa75fa 100644 --- a/docs/tex-live.LICENSE +++ b/docs/tex-live.LICENSE @@ -1,3 +1,25 @@ +--- +key: tex-live +short_name: TeX Live License +name: TeX Live License +category: Permissive +owner: Karl Berry +homepage_url: ftp://tug.org/historic/systems/texlive/2007/LICENSE.TL +spdx_license_key: LicenseRef-scancode-tex-live +ignorable_urls: + - http://latex-project.org/lppl.html + - http://www.ctan.org/tex-archive/help/Catalogue/ + - http://www.debian.org/intro/free + - http://www.gnu.org/licenses/license-list.html + - http://www.gnu.org/philosophy/free-sw.html + - http://www.tug.org/tex-live/ + - http://www.tug.org/texlive/ + - http://www.tug.org/usergroups.html + - https://www.tug.org/donate/dev.html +ignorable_emails: + - texlive@tug.org +--- + COPYING CONDITIONS FOR TeX Live: To the best of our knowledge, all software in the TeX Live distribution diff --git a/docs/tex-live.html b/docs/tex-live.html index e62e5b8ab4..3edcd624d1 100644 --- a/docs/tex-live.html +++ b/docs/tex-live.html @@ -279,7 +279,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tex-live.json b/docs/tex-live.json index 3e3776de97..8e8547e432 100644 --- a/docs/tex-live.json +++ b/docs/tex-live.json @@ -1 +1,23 @@ -{"key": "tex-live", "short_name": "TeX Live License", "name": "TeX Live License", "category": "Permissive", "owner": "Karl Berry", "homepage_url": "ftp://tug.org/historic/systems/texlive/2007/LICENSE.TL", "spdx_license_key": "LicenseRef-scancode-tex-live", "ignorable_urls": ["http://latex-project.org/lppl.html", "http://www.ctan.org/tex-archive/help/Catalogue/", "http://www.debian.org/intro/free", "http://www.gnu.org/licenses/license-list.html", "http://www.gnu.org/philosophy/free-sw.html", "http://www.tug.org/tex-live/", "http://www.tug.org/texlive/", "http://www.tug.org/usergroups.html", "https://www.tug.org/donate/dev.html"], "ignorable_emails": ["texlive@tug.org"]} \ No newline at end of file +{ + "key": "tex-live", + "short_name": "TeX Live License", + "name": "TeX Live License", + "category": "Permissive", + "owner": "Karl Berry", + "homepage_url": "ftp://tug.org/historic/systems/texlive/2007/LICENSE.TL", + "spdx_license_key": "LicenseRef-scancode-tex-live", + "ignorable_urls": [ + "http://latex-project.org/lppl.html", + "http://www.ctan.org/tex-archive/help/Catalogue/", + "http://www.debian.org/intro/free", + "http://www.gnu.org/licenses/license-list.html", + "http://www.gnu.org/philosophy/free-sw.html", + "http://www.tug.org/tex-live/", + "http://www.tug.org/texlive/", + "http://www.tug.org/usergroups.html", + "https://www.tug.org/donate/dev.html" + ], + "ignorable_emails": [ + "texlive@tug.org" + ] +} \ No newline at end of file diff --git a/docs/tfl.LICENSE b/docs/tfl.LICENSE index a514cf8bf2..dba4927ef0 100644 --- a/docs/tfl.LICENSE +++ b/docs/tfl.LICENSE @@ -1,3 +1,18 @@ +--- +key: tfl +short_name: TFL +name: Truly Free License +category: Public Domain +owner: Tom Vajzovic +homepage_url: https://www.purposeful.co.uk/tfl/ +spdx_license_key: LicenseRef-scancode-tfl +other_urls: + - https://github.com/thoni56/gopt + - https://www.purposeful.co.uk/gopt/ +ignorable_urls: + - http://www.purposeful.co.uk/tfl/ +--- + I am the author of this software and its documentation and permanently abandon all copyright and other intellectual property rights in them, including the right to be identified as the author. diff --git a/docs/tfl.html b/docs/tfl.html index 4d005114b6..8292748352 100644 --- a/docs/tfl.html +++ b/docs/tfl.html @@ -159,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tfl.json b/docs/tfl.json index 035d1a21f7..37910cb80b 100644 --- a/docs/tfl.json +++ b/docs/tfl.json @@ -1 +1,16 @@ -{"key": "tfl", "short_name": "TFL", "name": "Truly Free License", "category": "Public Domain", "owner": "Tom Vajzovic", "homepage_url": "https://www.purposeful.co.uk/tfl/", "spdx_license_key": "LicenseRef-scancode-tfl", "other_urls": ["https://github.com/thoni56/gopt", "https://www.purposeful.co.uk/gopt/"], "ignorable_urls": ["http://www.purposeful.co.uk/tfl/"]} \ No newline at end of file +{ + "key": "tfl", + "short_name": "TFL", + "name": "Truly Free License", + "category": "Public Domain", + "owner": "Tom Vajzovic", + "homepage_url": "https://www.purposeful.co.uk/tfl/", + "spdx_license_key": "LicenseRef-scancode-tfl", + "other_urls": [ + "https://github.com/thoni56/gopt", + "https://www.purposeful.co.uk/gopt/" + ], + "ignorable_urls": [ + "http://www.purposeful.co.uk/tfl/" + ] +} \ No newline at end of file diff --git a/docs/tgppl-1.0.LICENSE b/docs/tgppl-1.0.LICENSE index 8b3ec36e50..db066594ef 100644 --- a/docs/tgppl-1.0.LICENSE +++ b/docs/tgppl-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: tgppl-1.0 +short_name: TGGPL 1.0 +name: Transitive Grace Period Public Licence 1.0 +category: Copyleft +owner: Tahoe-LAFS +homepage_url: http://allmydata.org/source/tahoe/trunk/COPYING.TGPPL.html +spdx_license_key: LicenseRef-scancode-tgppl-1.0 +text_urls: + - https://tahoe-lafs.org/source/tahoe/trunk/COPYING.TGPPL.rst + - http://allmydata.org/source/tahoe/trunk/COPYING.TGPPL.html +ignorable_copyrights: + - Copyright (c) 2007 Zooko +ignorable_holders: + - Zooko +--- + Transitive Grace Period Public Licence ("TGPPL") v. 1.0 This Transitive Grace Period Public Licence (the "License") applies to diff --git a/docs/tgppl-1.0.html b/docs/tgppl-1.0.html index 48d0772e8a..67ad14a50d 100644 --- a/docs/tgppl-1.0.html +++ b/docs/tgppl-1.0.html @@ -342,7 +342,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tgppl-1.0.json b/docs/tgppl-1.0.json index e044c636b7..dd0777abd6 100644 --- a/docs/tgppl-1.0.json +++ b/docs/tgppl-1.0.json @@ -1 +1,19 @@ -{"key": "tgppl-1.0", "short_name": "TGGPL 1.0", "name": "Transitive Grace Period Public Licence 1.0", "category": "Copyleft", "owner": "Tahoe-LAFS", "homepage_url": "http://allmydata.org/source/tahoe/trunk/COPYING.TGPPL.html", "spdx_license_key": "LicenseRef-scancode-tgppl-1.0", "text_urls": ["https://tahoe-lafs.org/source/tahoe/trunk/COPYING.TGPPL.rst", "http://allmydata.org/source/tahoe/trunk/COPYING.TGPPL.html"], "ignorable_copyrights": ["Copyright (c) 2007 Zooko"], "ignorable_holders": ["Zooko"]} \ No newline at end of file +{ + "key": "tgppl-1.0", + "short_name": "TGGPL 1.0", + "name": "Transitive Grace Period Public Licence 1.0", + "category": "Copyleft", + "owner": "Tahoe-LAFS", + "homepage_url": "http://allmydata.org/source/tahoe/trunk/COPYING.TGPPL.html", + "spdx_license_key": "LicenseRef-scancode-tgppl-1.0", + "text_urls": [ + "https://tahoe-lafs.org/source/tahoe/trunk/COPYING.TGPPL.rst", + "http://allmydata.org/source/tahoe/trunk/COPYING.TGPPL.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 2007 Zooko" + ], + "ignorable_holders": [ + "Zooko" + ] +} \ No newline at end of file diff --git a/docs/things-i-made-public-license.LICENSE b/docs/things-i-made-public-license.LICENSE index 9ca32ab9a4..df76ce1ba8 100644 --- a/docs/things-i-made-public-license.LICENSE +++ b/docs/things-i-made-public-license.LICENSE @@ -1,3 +1,20 @@ +--- +key: things-i-made-public-license +short_name: Things I Made (TIM) Public License +name: Things I Made (TIM) Public License +category: Permissive +owner: Marcus Crane +homepage_url: https://github.com/marcus-crane/pkgparse-node/blob/46446413cbdd1b7f67fad0e12188930920222b4a/LICENSE +notes: a rare license replaced by MIT since. +spdx_license_key: LicenseRef-scancode-things-i-made-public-license +ignorable_copyrights: + - Copyright (c) Marcus Crane +ignorable_holders: + - Marcus Crane +ignorable_emails: + - marcus@thingsima.de +--- + THINGS I MADE (TIM) PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION @@ -12,4 +29,4 @@ happy. 2. If it breaks, the author may try to help if it's a neat bug but they aren't obligated to provide support nor are they liable for any damages. -3. Beyond that, do whatever you feel like. +3. Beyond that, do whatever you feel like. \ No newline at end of file diff --git a/docs/things-i-made-public-license.html b/docs/things-i-made-public-license.html index 0d5adba04c..f1c2e480da 100644 --- a/docs/things-i-made-public-license.html +++ b/docs/things-i-made-public-license.html @@ -163,8 +163,7 @@ 2. If it breaks, the author may try to help if it's a neat bug but they aren't obligated to provide support nor are they liable for any damages. -3. Beyond that, do whatever you feel like. - +3. Beyond that, do whatever you feel like.
@@ -176,7 +175,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/things-i-made-public-license.json b/docs/things-i-made-public-license.json index ec0e8cae76..d036b981c5 100644 --- a/docs/things-i-made-public-license.json +++ b/docs/things-i-made-public-license.json @@ -1 +1,19 @@ -{"key": "things-i-made-public-license", "short_name": "Things I Made (TIM) Public License", "name": "Things I Made (TIM) Public License", "category": "Permissive", "owner": "Marcus Crane", "homepage_url": "https://github.com/marcus-crane/pkgparse-node/blob/46446413cbdd1b7f67fad0e12188930920222b4a/LICENSE", "notes": "a rare license replaced by MIT since.", "spdx_license_key": "LicenseRef-scancode-things-i-made-public-license", "ignorable_copyrights": ["Copyright (c) Marcus Crane "], "ignorable_holders": ["Marcus Crane"], "ignorable_emails": ["marcus@thingsima.de"]} \ No newline at end of file +{ + "key": "things-i-made-public-license", + "short_name": "Things I Made (TIM) Public License", + "name": "Things I Made (TIM) Public License", + "category": "Permissive", + "owner": "Marcus Crane", + "homepage_url": "https://github.com/marcus-crane/pkgparse-node/blob/46446413cbdd1b7f67fad0e12188930920222b4a/LICENSE", + "notes": "a rare license replaced by MIT since.", + "spdx_license_key": "LicenseRef-scancode-things-i-made-public-license", + "ignorable_copyrights": [ + "Copyright (c) Marcus Crane " + ], + "ignorable_holders": [ + "Marcus Crane" + ], + "ignorable_emails": [ + "marcus@thingsima.de" + ] +} \ No newline at end of file diff --git a/docs/thomas-bandt.LICENSE b/docs/thomas-bandt.LICENSE index 9fb68f63c2..bef4e2cfd9 100644 --- a/docs/thomas-bandt.LICENSE +++ b/docs/thomas-bandt.LICENSE @@ -1,3 +1,13 @@ +--- +key: thomas-bandt +short_name: Thomas Bandt License +name: Thomas Bandt License +category: Free Restricted +owner: Thomas Bandt +homepage_url: https://github.com/aspnetde/UrlRewritingNet/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-thomas-bandt +--- + This Library is provided as is. No warrenty is expressed or implied. You can use these Library in free and commercial projects without a fee. @@ -13,4 +23,4 @@ include your modifications. This Copyright notice must be included in the modified source code. You are not allowed to build a commercial rewrite engine based on -this code. +this code. \ No newline at end of file diff --git a/docs/thomas-bandt.html b/docs/thomas-bandt.html index be54467b45..f4b2993387 100644 --- a/docs/thomas-bandt.html +++ b/docs/thomas-bandt.html @@ -130,8 +130,7 @@ This Copyright notice must be included in the modified source code. You are not allowed to build a commercial rewrite engine based on -this code. - +this code.
@@ -143,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/thomas-bandt.json b/docs/thomas-bandt.json index 4d5797e3ac..0fa282346c 100644 --- a/docs/thomas-bandt.json +++ b/docs/thomas-bandt.json @@ -1 +1,9 @@ -{"key": "thomas-bandt", "short_name": "Thomas Bandt License", "name": "Thomas Bandt License", "category": "Free Restricted", "owner": "Thomas Bandt", "homepage_url": "https://github.com/aspnetde/UrlRewritingNet/blob/master/LICENSE", "spdx_license_key": "LicenseRef-scancode-thomas-bandt"} \ No newline at end of file +{ + "key": "thomas-bandt", + "short_name": "Thomas Bandt License", + "name": "Thomas Bandt License", + "category": "Free Restricted", + "owner": "Thomas Bandt", + "homepage_url": "https://github.com/aspnetde/UrlRewritingNet/blob/master/LICENSE", + "spdx_license_key": "LicenseRef-scancode-thomas-bandt" +} \ No newline at end of file diff --git a/docs/thor-pl.LICENSE b/docs/thor-pl.LICENSE index 8904540117..539fe0eba1 100644 --- a/docs/thor-pl.LICENSE +++ b/docs/thor-pl.LICENSE @@ -1,3 +1,13 @@ +--- +key: thor-pl +short_name: Thor Public License +name: Thor Public License +category: Copyleft Limited +owner: Thor Project +homepage_url: https://fedoraproject.org/wiki/Licensing:ThorPublicLicense?rd=Licensing/ThorPublicLicense +spdx_license_key: LicenseRef-scancode-thor-pl +--- + THOR Public Licence (TPL) 0. Notes of Origin diff --git a/docs/thor-pl.html b/docs/thor-pl.html index df7f2d3cbe..77d4cea28d 100644 --- a/docs/thor-pl.html +++ b/docs/thor-pl.html @@ -601,7 +601,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/thor-pl.json b/docs/thor-pl.json index 8d0fa7f96c..8b2967d528 100644 --- a/docs/thor-pl.json +++ b/docs/thor-pl.json @@ -1 +1,9 @@ -{"key": "thor-pl", "short_name": "Thor Public License", "name": "Thor Public License", "category": "Copyleft Limited", "owner": "Thor Project", "homepage_url": "https://fedoraproject.org/wiki/Licensing:ThorPublicLicense?rd=Licensing/ThorPublicLicense", "spdx_license_key": "LicenseRef-scancode-thor-pl"} \ No newline at end of file +{ + "key": "thor-pl", + "short_name": "Thor Public License", + "name": "Thor Public License", + "category": "Copyleft Limited", + "owner": "Thor Project", + "homepage_url": "https://fedoraproject.org/wiki/Licensing:ThorPublicLicense?rd=Licensing/ThorPublicLicense", + "spdx_license_key": "LicenseRef-scancode-thor-pl" +} \ No newline at end of file diff --git a/docs/ti-broadband-apps.LICENSE b/docs/ti-broadband-apps.LICENSE index 590d12f719..49c137e6af 100644 --- a/docs/ti-broadband-apps.LICENSE +++ b/docs/ti-broadband-apps.LICENSE @@ -1,3 +1,14 @@ +--- +key: ti-broadband-apps +short_name: TI Broadband Applications License +name: Texas Instruments Broadband Applications License +category: Proprietary Free +owner: TI - Texas Instruments +spdx_license_key: LicenseRef-scancode-ti-broadband-apps +other_urls: + - http://www.ti.com/ +--- + 1. License - Texas Instruments (hereinafter "TI"), grants you a license to use the software program and documentation in this package ("Licensed Materials") for Texas Instruments broadband products. diff --git a/docs/ti-broadband-apps.html b/docs/ti-broadband-apps.html index 43629aaf08..ed7a93a018 100644 --- a/docs/ti-broadband-apps.html +++ b/docs/ti-broadband-apps.html @@ -220,7 +220,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ti-broadband-apps.json b/docs/ti-broadband-apps.json index 74f57405ce..865c0295c7 100644 --- a/docs/ti-broadband-apps.json +++ b/docs/ti-broadband-apps.json @@ -1 +1,11 @@ -{"key": "ti-broadband-apps", "short_name": "TI Broadband Applications License", "name": "Texas Instruments Broadband Applications License", "category": "Proprietary Free", "owner": "TI - Texas Instruments", "spdx_license_key": "LicenseRef-scancode-ti-broadband-apps", "other_urls": ["http://www.ti.com/"]} \ No newline at end of file +{ + "key": "ti-broadband-apps", + "short_name": "TI Broadband Applications License", + "name": "Texas Instruments Broadband Applications License", + "category": "Proprietary Free", + "owner": "TI - Texas Instruments", + "spdx_license_key": "LicenseRef-scancode-ti-broadband-apps", + "other_urls": [ + "http://www.ti.com/" + ] +} \ No newline at end of file diff --git a/docs/ti-linux-firmware.LICENSE b/docs/ti-linux-firmware.LICENSE index f8e41cb27f..4615d7742b 100644 --- a/docs/ti-linux-firmware.LICENSE +++ b/docs/ti-linux-firmware.LICENSE @@ -1,3 +1,17 @@ +--- +key: ti-linux-firmware +short_name: TI Linux Firmware License +name: TI Linux Firmware License +category: Proprietary Free +owner: TI - Texas Instruments +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.wl1251 +spdx_license_key: LicenseRef-scancode-ti-linux-firmware +text_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ti-tspa + - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ti-keystone + - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ti-connectivity +--- + Limited License. Texas Instruments Incorporated grants a world-wide, royalty-free, non-exclusive diff --git a/docs/ti-linux-firmware.html b/docs/ti-linux-firmware.html index 28fbec7694..56a206022e 100644 --- a/docs/ti-linux-firmware.html +++ b/docs/ti-linux-firmware.html @@ -190,7 +190,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ti-linux-firmware.json b/docs/ti-linux-firmware.json index b587e7fcbf..f372b85faf 100644 --- a/docs/ti-linux-firmware.json +++ b/docs/ti-linux-firmware.json @@ -1 +1,14 @@ -{"key": "ti-linux-firmware", "short_name": "TI Linux Firmware License", "name": "TI Linux Firmware License", "category": "Proprietary Free", "owner": "TI - Texas Instruments", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.wl1251", "spdx_license_key": "LicenseRef-scancode-ti-linux-firmware", "text_urls": ["https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ti-tspa", "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ti-keystone", "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ti-connectivity"]} \ No newline at end of file +{ + "key": "ti-linux-firmware", + "short_name": "TI Linux Firmware License", + "name": "TI Linux Firmware License", + "category": "Proprietary Free", + "owner": "TI - Texas Instruments", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.wl1251", + "spdx_license_key": "LicenseRef-scancode-ti-linux-firmware", + "text_urls": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ti-tspa", + "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ti-keystone", + "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ti-connectivity" + ] +} \ No newline at end of file diff --git a/docs/ti-restricted.LICENSE b/docs/ti-restricted.LICENSE index 77148fe67d..b579072c7c 100644 --- a/docs/ti-restricted.LICENSE +++ b/docs/ti-restricted.LICENSE @@ -1,3 +1,13 @@ +--- +key: ti-restricted +short_name: TI Restricted Use License +name: Texas Instruments Restricted Use License +category: Commercial +owner: TI - Texas Instruments +spdx_license_key: LicenseRef-scancode-ti-restricted +minimum_coverage: 50 +--- + Permission is hereby granted to licensees of Texas Instruments Incorporated (TI) products to use this computer program for the sole purpose of implementing a licensee product based on TI products. @@ -7,4 +17,4 @@ program, whether in part or in whole, are granted. TI makes no representation or warranties with respect to the performance of this computer program, and specifically disclaims any responsibility for any damages, special or consequential, -connected with the use of this program. +connected with the use of this program. \ No newline at end of file diff --git a/docs/ti-restricted.html b/docs/ti-restricted.html index 19b6fcdeae..8f8267a6ec 100644 --- a/docs/ti-restricted.html +++ b/docs/ti-restricted.html @@ -124,8 +124,7 @@ TI makes no representation or warranties with respect to the performance of this computer program, and specifically disclaims any responsibility for any damages, special or consequential, -connected with the use of this program. - +connected with the use of this program.
@@ -137,7 +136,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ti-restricted.json b/docs/ti-restricted.json index 97a1488b6d..e9d9a5cba6 100644 --- a/docs/ti-restricted.json +++ b/docs/ti-restricted.json @@ -1 +1,9 @@ -{"key": "ti-restricted", "short_name": "TI Restricted Use License", "name": "Texas Instruments Restricted Use License", "category": "Commercial", "owner": "TI - Texas Instruments", "spdx_license_key": "LicenseRef-scancode-ti-restricted", "minimum_coverage": 50} \ No newline at end of file +{ + "key": "ti-restricted", + "short_name": "TI Restricted Use License", + "name": "Texas Instruments Restricted Use License", + "category": "Commercial", + "owner": "TI - Texas Instruments", + "spdx_license_key": "LicenseRef-scancode-ti-restricted", + "minimum_coverage": 50 +} \ No newline at end of file diff --git a/docs/tidy.LICENSE b/docs/tidy.LICENSE index 1bddf67715..b6fb2b9cec 100644 --- a/docs/tidy.LICENSE +++ b/docs/tidy.LICENSE @@ -1,3 +1,13 @@ +--- +key: tidy +short_name: Tidy License +name: Tidy License +category: Permissive +owner: W3C - World Wide Web Consortium +homepage_url: https://github.com/htacg/tidy-html5/blob/next/README/LICENSE.md +spdx_license_key: HTMLTIDY +--- + The contributing author(s) would like to thank all those who helped with testing, bug fixes and suggestions for improvements. This wouldn't have been possible without your help. @@ -27,4 +37,4 @@ source or altered source distribution. The copyright holders and contributing author(s) specifically permit, without fee, and encourage the use of this source code as a component for supporting the Hypertext Markup Language in commercial products. If you use this source code in -a product, acknowledgment is not required but would be appreciated. +a product, acknowledgment is not required but would be appreciated. \ No newline at end of file diff --git a/docs/tidy.html b/docs/tidy.html index 74779f9b16..7535ce1b8c 100644 --- a/docs/tidy.html +++ b/docs/tidy.html @@ -144,8 +144,7 @@ The copyright holders and contributing author(s) specifically permit, without fee, and encourage the use of this source code as a component for supporting the Hypertext Markup Language in commercial products. If you use this source code in -a product, acknowledgment is not required but would be appreciated. - +a product, acknowledgment is not required but would be appreciated.
@@ -157,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tidy.json b/docs/tidy.json index c1de24029a..83923f7004 100644 --- a/docs/tidy.json +++ b/docs/tidy.json @@ -1 +1,9 @@ -{"key": "tidy", "short_name": "Tidy License", "name": "Tidy License", "category": "Permissive", "owner": "W3C - World Wide Web Consortium", "homepage_url": "https://github.com/htacg/tidy-html5/blob/next/README/LICENSE.md", "spdx_license_key": "HTMLTIDY"} \ No newline at end of file +{ + "key": "tidy", + "short_name": "Tidy License", + "name": "Tidy License", + "category": "Permissive", + "owner": "W3C - World Wide Web Consortium", + "homepage_url": "https://github.com/htacg/tidy-html5/blob/next/README/LICENSE.md", + "spdx_license_key": "HTMLTIDY" +} \ No newline at end of file diff --git a/docs/tiger-crypto.LICENSE b/docs/tiger-crypto.LICENSE index 3d2ac71f8f..c4171c4f0a 100644 --- a/docs/tiger-crypto.LICENSE +++ b/docs/tiger-crypto.LICENSE @@ -1,3 +1,17 @@ +--- +key: tiger-crypto +short_name: Tiger Cryptography License +name: Tiger Cryptography License +category: Permissive +owner: Tiger +spdx_license_key: LicenseRef-scancode-tiger-crypto +faq_url: http://www.cs.technion.ac.il/~biham/Reports/Tiger/ +other_urls: + - http://www.cs.technion.ac.il/~biham/Reports/Tiger/ +ignorable_urls: + - http://www.cs.technion.ac.il/~biham/Reports/Tiger/ +--- + Tiger Cryptography This code comes from the reference implementation of the Tiger cryptographic hash function. The only modification made is to pull out the data types and the api into a header file (this file, tiger.h). The reference implementation is available at: diff --git a/docs/tiger-crypto.html b/docs/tiger-crypto.html index be635b9305..62dbdd1b25 100644 --- a/docs/tiger-crypto.html +++ b/docs/tiger-crypto.html @@ -152,7 +152,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tiger-crypto.json b/docs/tiger-crypto.json index 47b8fc3e24..78b2fca3a0 100644 --- a/docs/tiger-crypto.json +++ b/docs/tiger-crypto.json @@ -1 +1,15 @@ -{"key": "tiger-crypto", "short_name": "Tiger Cryptography License", "name": "Tiger Cryptography License", "category": "Permissive", "owner": "Tiger", "spdx_license_key": "LicenseRef-scancode-tiger-crypto", "faq_url": "http://www.cs.technion.ac.il/~biham/Reports/Tiger/", "other_urls": ["http://www.cs.technion.ac.il/~biham/Reports/Tiger/"], "ignorable_urls": ["http://www.cs.technion.ac.il/~biham/Reports/Tiger/"]} \ No newline at end of file +{ + "key": "tiger-crypto", + "short_name": "Tiger Cryptography License", + "name": "Tiger Cryptography License", + "category": "Permissive", + "owner": "Tiger", + "spdx_license_key": "LicenseRef-scancode-tiger-crypto", + "faq_url": "http://www.cs.technion.ac.il/~biham/Reports/Tiger/", + "other_urls": [ + "http://www.cs.technion.ac.il/~biham/Reports/Tiger/" + ], + "ignorable_urls": [ + "http://www.cs.technion.ac.il/~biham/Reports/Tiger/" + ] +} \ No newline at end of file diff --git a/docs/tigra-calendar-3.2.LICENSE b/docs/tigra-calendar-3.2.LICENSE index e4cea89071..df01ebf6e9 100644 --- a/docs/tigra-calendar-3.2.LICENSE +++ b/docs/tigra-calendar-3.2.LICENSE @@ -1,3 +1,13 @@ +--- +key: tigra-calendar-3.2 +short_name: Tigra Calendar 3.2 License +name: Tigra Calendar v3.2 License +category: Permissive +owner: Softcomplex +homepage_url: http://www.softcomplex.com/products/tigra_calendar/ +spdx_license_key: LicenseRef-scancode-tigra-calendar-3.2 +--- + Tigra Calendar v3.2 License Permission given to use this script in ANY kind of applications if header lines are left unchanged. \ No newline at end of file diff --git a/docs/tigra-calendar-3.2.html b/docs/tigra-calendar-3.2.html index 2298f4fc0c..b566416feb 100644 --- a/docs/tigra-calendar-3.2.html +++ b/docs/tigra-calendar-3.2.html @@ -129,7 +129,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tigra-calendar-3.2.json b/docs/tigra-calendar-3.2.json index cbfae1726f..175b4b87bb 100644 --- a/docs/tigra-calendar-3.2.json +++ b/docs/tigra-calendar-3.2.json @@ -1 +1,9 @@ -{"key": "tigra-calendar-3.2", "short_name": "Tigra Calendar 3.2 License", "name": "Tigra Calendar v3.2 License", "category": "Permissive", "owner": "Softcomplex", "homepage_url": "http://www.softcomplex.com/products/tigra_calendar/", "spdx_license_key": "LicenseRef-scancode-tigra-calendar-3.2"} \ No newline at end of file +{ + "key": "tigra-calendar-3.2", + "short_name": "Tigra Calendar 3.2 License", + "name": "Tigra Calendar v3.2 License", + "category": "Permissive", + "owner": "Softcomplex", + "homepage_url": "http://www.softcomplex.com/products/tigra_calendar/", + "spdx_license_key": "LicenseRef-scancode-tigra-calendar-3.2" +} \ No newline at end of file diff --git a/docs/tigra-calendar-4.0.LICENSE b/docs/tigra-calendar-4.0.LICENSE index 371e5674c3..fe68f5b9c3 100644 --- a/docs/tigra-calendar-4.0.LICENSE +++ b/docs/tigra-calendar-4.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: tigra-calendar-4.0 +short_name: Tigra Calendar 4.0 License +name: Tigra Calendar v4.0 License +category: Permissive +owner: Softcomplex +homepage_url: http://www.javascript-calendar.com/docs/#license +spdx_license_key: LicenseRef-scancode-tigra-calendar-4.0 +ignorable_urls: + - http://www.javascript-calendar.com/docs/#license +--- + Tigra Calendar v4.0 License http://www.javascript-calendar.com/docs/#license diff --git a/docs/tigra-calendar-4.0.html b/docs/tigra-calendar-4.0.html index d389f7bb8d..1a23237823 100644 --- a/docs/tigra-calendar-4.0.html +++ b/docs/tigra-calendar-4.0.html @@ -141,7 +141,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tigra-calendar-4.0.json b/docs/tigra-calendar-4.0.json index 8891f6b8c3..4edd9866b2 100644 --- a/docs/tigra-calendar-4.0.json +++ b/docs/tigra-calendar-4.0.json @@ -1 +1,12 @@ -{"key": "tigra-calendar-4.0", "short_name": "Tigra Calendar 4.0 License", "name": "Tigra Calendar v4.0 License", "category": "Permissive", "owner": "Softcomplex", "homepage_url": "http://www.javascript-calendar.com/docs/#license", "spdx_license_key": "LicenseRef-scancode-tigra-calendar-4.0", "ignorable_urls": ["http://www.javascript-calendar.com/docs/#license"]} \ No newline at end of file +{ + "key": "tigra-calendar-4.0", + "short_name": "Tigra Calendar 4.0 License", + "name": "Tigra Calendar v4.0 License", + "category": "Permissive", + "owner": "Softcomplex", + "homepage_url": "http://www.javascript-calendar.com/docs/#license", + "spdx_license_key": "LicenseRef-scancode-tigra-calendar-4.0", + "ignorable_urls": [ + "http://www.javascript-calendar.com/docs/#license" + ] +} \ No newline at end of file diff --git a/docs/tim-janik-2003.LICENSE b/docs/tim-janik-2003.LICENSE index 725906707f..4f96052971 100644 --- a/docs/tim-janik-2003.LICENSE +++ b/docs/tim-janik-2003.LICENSE @@ -1,3 +1,13 @@ +--- +key: tim-janik-2003 +short_name: Tim Janik License 2003 +name: Tim Janik License 2003 +category: Permissive +owner: Tim Janik +homepage_url: https://gnome.pages.gitlab.gnome.org/glib/coverage/glib/gbsearcharray.h.gcov.html +spdx_license_key: LicenseRef-scancode-tim-janik-2003 +--- + This software is provided "as is"; redistribution and modification is permitted, provided that the following disclaimer is retained. diff --git a/docs/tim-janik-2003.html b/docs/tim-janik-2003.html index fa1bb41688..a6f67c4084 100644 --- a/docs/tim-janik-2003.html +++ b/docs/tim-janik-2003.html @@ -140,7 +140,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tim-janik-2003.json b/docs/tim-janik-2003.json index f17da4b6e4..451f11e77c 100644 --- a/docs/tim-janik-2003.json +++ b/docs/tim-janik-2003.json @@ -1 +1,9 @@ -{"key": "tim-janik-2003", "short_name": "Tim Janik License 2003", "name": "Tim Janik License 2003", "category": "Permissive", "owner": "Tim Janik", "homepage_url": "https://gnome.pages.gitlab.gnome.org/glib/coverage/glib/gbsearcharray.h.gcov.html", "spdx_license_key": "LicenseRef-scancode-tim-janik-2003"} \ No newline at end of file +{ + "key": "tim-janik-2003", + "short_name": "Tim Janik License 2003", + "name": "Tim Janik License 2003", + "category": "Permissive", + "owner": "Tim Janik", + "homepage_url": "https://gnome.pages.gitlab.gnome.org/glib/coverage/glib/gbsearcharray.h.gcov.html", + "spdx_license_key": "LicenseRef-scancode-tim-janik-2003" +} \ No newline at end of file diff --git a/docs/timestamp-picker.LICENSE b/docs/timestamp-picker.LICENSE index 1d27b390e2..e4b4bca32a 100644 --- a/docs/timestamp-picker.LICENSE +++ b/docs/timestamp-picker.LICENSE @@ -1,3 +1,12 @@ +--- +key: timestamp-picker +short_name: Timestamp Picker License +name: Timestamp Picker License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-timestamp-picker +--- + Permission given to use this script in any kind of applications if header lines are left unchanged. Feel free to contact the author for feature requests and/or donations. \ No newline at end of file diff --git a/docs/timestamp-picker.html b/docs/timestamp-picker.html index a34a9ccf26..6fdea391c8 100644 --- a/docs/timestamp-picker.html +++ b/docs/timestamp-picker.html @@ -122,7 +122,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/timestamp-picker.json b/docs/timestamp-picker.json index 53fdda23a3..479805c65a 100644 --- a/docs/timestamp-picker.json +++ b/docs/timestamp-picker.json @@ -1 +1,8 @@ -{"key": "timestamp-picker", "short_name": "Timestamp Picker License", "name": "Timestamp Picker License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-timestamp-picker"} \ No newline at end of file +{ + "key": "timestamp-picker", + "short_name": "Timestamp Picker License", + "name": "Timestamp Picker License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-timestamp-picker" +} \ No newline at end of file diff --git a/docs/tizen-sdk.LICENSE b/docs/tizen-sdk.LICENSE index bddb4b65f4..672f45dc6f 100644 --- a/docs/tizen-sdk.LICENSE +++ b/docs/tizen-sdk.LICENSE @@ -1,3 +1,13 @@ +--- +key: tizen-sdk +short_name: Tizen SDK License +name: Tizen SDK License +category: Proprietary Free +owner: Samsung +homepage_url: https://developer.tizen.org/tizen-sdk-license-agreement +spdx_license_key: LicenseRef-scancode-tizen-sdk +--- + Tizen SDK License Agreement TIZEN SOFTWARE DEVELOPMENT KIT ("SDK") LICENSE AGREEMENT diff --git a/docs/tizen-sdk.html b/docs/tizen-sdk.html index a809c6a8a1..60145f7885 100644 --- a/docs/tizen-sdk.html +++ b/docs/tizen-sdk.html @@ -210,7 +210,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tizen-sdk.json b/docs/tizen-sdk.json index 694df5d8a3..d890b9a1b8 100644 --- a/docs/tizen-sdk.json +++ b/docs/tizen-sdk.json @@ -1 +1,9 @@ -{"key": "tizen-sdk", "short_name": "Tizen SDK License", "name": "Tizen SDK License", "category": "Proprietary Free", "owner": "Samsung", "homepage_url": "https://developer.tizen.org/tizen-sdk-license-agreement", "spdx_license_key": "LicenseRef-scancode-tizen-sdk"} \ No newline at end of file +{ + "key": "tizen-sdk", + "short_name": "Tizen SDK License", + "name": "Tizen SDK License", + "category": "Proprietary Free", + "owner": "Samsung", + "homepage_url": "https://developer.tizen.org/tizen-sdk-license-agreement", + "spdx_license_key": "LicenseRef-scancode-tizen-sdk" +} \ No newline at end of file diff --git a/docs/tmate.LICENSE b/docs/tmate.LICENSE index ab0989ba29..6efbb6adfb 100644 --- a/docs/tmate.LICENSE +++ b/docs/tmate.LICENSE @@ -1,3 +1,21 @@ +--- +key: tmate +short_name: TMate Open Source License +name: TMate Open Source License +category: Copyleft +owner: SVNKit (TMate) +homepage_url: http://svnkit.com/licensing.html +spdx_license_key: TMate +text_urls: + - http://svnkit.com/license.html +ignorable_copyrights: + - Copyright (c) 2004-2009 TMate Software +ignorable_holders: + - TMate Software +ignorable_emails: + - support@svnkit.com +--- + This license applies to all portions of TMate SVNKit library, which are not externally-maintained libraries (e.g. Ganymed SSH library). diff --git a/docs/tmate.html b/docs/tmate.html index 3077c22bd4..dcbfa479a5 100644 --- a/docs/tmate.html +++ b/docs/tmate.html @@ -207,7 +207,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tmate.json b/docs/tmate.json index e9ee113d11..2c1f84edf5 100644 --- a/docs/tmate.json +++ b/docs/tmate.json @@ -1 +1,21 @@ -{"key": "tmate", "short_name": "TMate Open Source License", "name": "TMate Open Source License", "category": "Copyleft", "owner": "SVNKit (TMate)", "homepage_url": "http://svnkit.com/licensing.html", "spdx_license_key": "TMate", "text_urls": ["http://svnkit.com/license.html"], "ignorable_copyrights": ["Copyright (c) 2004-2009 TMate Software"], "ignorable_holders": ["TMate Software"], "ignorable_emails": ["support@svnkit.com"]} \ No newline at end of file +{ + "key": "tmate", + "short_name": "TMate Open Source License", + "name": "TMate Open Source License", + "category": "Copyleft", + "owner": "SVNKit (TMate)", + "homepage_url": "http://svnkit.com/licensing.html", + "spdx_license_key": "TMate", + "text_urls": [ + "http://svnkit.com/license.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 2004-2009 TMate Software" + ], + "ignorable_holders": [ + "TMate Software" + ], + "ignorable_emails": [ + "support@svnkit.com" + ] +} \ No newline at end of file diff --git a/docs/torque-1.1.LICENSE b/docs/torque-1.1.LICENSE index 44612f2f40..11840ef780 100644 --- a/docs/torque-1.1.LICENSE +++ b/docs/torque-1.1.LICENSE @@ -1,3 +1,42 @@ +--- +key: torque-1.1 +short_name: TORQUE 1.1 +name: TORQUE v2.5+ Software License v1.1 +category: Copyleft Limited +owner: Adaptive Computing Enterprises +homepage_url: https://fedoraproject.org/wiki/Licensing/TORQUEv1.1 +notes: | + Per Fedora, when the licensing for TORQUE 2.4 expired, the TORQUE upstream + drafted a new license with updated contact information. The intention was + to have a lawyer retain the same functionality as the older licensing, but + because part of it was misread or accidentally ignored, v1.0 of the TORQUE + v2.5+ Software License contained commercial use restrictions which made it + non-free. After this issue was raised on the TORQUE mailing lists, the + TORQUE upstream revised the license to remove the commercial use + restrictions in v1.1. The TORQUE v2.5+ Software License v1.1 is Free, but + GPL incompatible because of the advertising clause. Also noteworthy is that + this license references the fact that much of the TORQUE v2.5 code is + derived from OpenPBS''s code, so the TORQUE v2.5+ software is properly dual + licensed TORQUEv1.1 and OpenPBS. This also means that this license is not + useful for other codebases without removing Note 1. +spdx_license_key: TORQUE-1.1 +ignorable_copyrights: + - Copyright (c) 2010-2011 Adaptive Computing Enterprises, Inc. +ignorable_holders: + - Adaptive Computing Enterprises, Inc. +ignorable_authors: + - NASA Ames Research Center, Lawrence Livermore National Laboratory, and Veridian +ignorable_urls: + - http://www.adaptivecomputing.com/ + - http://www.clusterresources.com/ + - http://www.clusterresources.com/products/ + - http://www.pbsworks.com/ResLibSearchResult.aspx?keywords=openpbs&industry=All&pro + - http://www.supercluster.org/mailman/listinfo/torqueusers +ignorable_emails: + - torque-support@adaptivecomputing.com + - torqueusers@supercluster.org +--- + TORQUE v2.5+ Software License v1.1 Copyright (c) 2010-2011 Adaptive Computing Enterprises, Inc. All rights reserved. diff --git a/docs/torque-1.1.html b/docs/torque-1.1.html index 8298c49296..a4a369d169 100644 --- a/docs/torque-1.1.html +++ b/docs/torque-1.1.html @@ -216,7 +216,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/torque-1.1.json b/docs/torque-1.1.json index 29e2174208..e4d86264e6 100644 --- a/docs/torque-1.1.json +++ b/docs/torque-1.1.json @@ -1 +1,30 @@ -{"key": "torque-1.1", "short_name": "TORQUE 1.1", "name": "TORQUE v2.5+ Software License v1.1", "category": "Copyleft Limited", "owner": "Adaptive Computing Enterprises", "homepage_url": "https://fedoraproject.org/wiki/Licensing/TORQUEv1.1", "notes": "Per Fedora, when the licensing for TORQUE 2.4 expired, the TORQUE upstream\ndrafted a new license with updated contact information. The intention was\nto have a lawyer retain the same functionality as the older licensing, but\nbecause part of it was misread or accidentally ignored, v1.0 of the TORQUE\nv2.5+ Software License contained commercial use restrictions which made it\nnon-free. After this issue was raised on the TORQUE mailing lists, the\nTORQUE upstream revised the license to remove the commercial use\nrestrictions in v1.1. The TORQUE v2.5+ Software License v1.1 is Free, but\nGPL incompatible because of the advertising clause. Also noteworthy is that\nthis license references the fact that much of the TORQUE v2.5 code is\nderived from OpenPBS''s code, so the TORQUE v2.5+ software is properly dual\nlicensed TORQUEv1.1 and OpenPBS. This also means that this license is not\nuseful for other codebases without removing Note 1.\n", "spdx_license_key": "TORQUE-1.1", "ignorable_copyrights": ["Copyright (c) 2010-2011 Adaptive Computing Enterprises, Inc."], "ignorable_holders": ["Adaptive Computing Enterprises, Inc."], "ignorable_authors": ["NASA Ames Research Center, Lawrence Livermore National Laboratory, and Veridian"], "ignorable_urls": ["http://www.adaptivecomputing.com/", "http://www.clusterresources.com/", "http://www.clusterresources.com/products/", "http://www.pbsworks.com/ResLibSearchResult.aspx?keywords=openpbs&industry=All&pro", "http://www.supercluster.org/mailman/listinfo/torqueusers"], "ignorable_emails": ["torque-support@adaptivecomputing.com", "torqueusers@supercluster.org"]} \ No newline at end of file +{ + "key": "torque-1.1", + "short_name": "TORQUE 1.1", + "name": "TORQUE v2.5+ Software License v1.1", + "category": "Copyleft Limited", + "owner": "Adaptive Computing Enterprises", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/TORQUEv1.1", + "notes": "Per Fedora, when the licensing for TORQUE 2.4 expired, the TORQUE upstream\ndrafted a new license with updated contact information. The intention was\nto have a lawyer retain the same functionality as the older licensing, but\nbecause part of it was misread or accidentally ignored, v1.0 of the TORQUE\nv2.5+ Software License contained commercial use restrictions which made it\nnon-free. After this issue was raised on the TORQUE mailing lists, the\nTORQUE upstream revised the license to remove the commercial use\nrestrictions in v1.1. The TORQUE v2.5+ Software License v1.1 is Free, but\nGPL incompatible because of the advertising clause. Also noteworthy is that\nthis license references the fact that much of the TORQUE v2.5 code is\nderived from OpenPBS''s code, so the TORQUE v2.5+ software is properly dual\nlicensed TORQUEv1.1 and OpenPBS. This also means that this license is not\nuseful for other codebases without removing Note 1.\n", + "spdx_license_key": "TORQUE-1.1", + "ignorable_copyrights": [ + "Copyright (c) 2010-2011 Adaptive Computing Enterprises, Inc." + ], + "ignorable_holders": [ + "Adaptive Computing Enterprises, Inc." + ], + "ignorable_authors": [ + "NASA Ames Research Center, Lawrence Livermore National Laboratory, and Veridian" + ], + "ignorable_urls": [ + "http://www.adaptivecomputing.com/", + "http://www.clusterresources.com/", + "http://www.clusterresources.com/products/", + "http://www.pbsworks.com/ResLibSearchResult.aspx?keywords=openpbs&industry=All&pro", + "http://www.supercluster.org/mailman/listinfo/torqueusers" + ], + "ignorable_emails": [ + "torque-support@adaptivecomputing.com", + "torqueusers@supercluster.org" + ] +} \ No newline at end of file diff --git a/docs/tosl.LICENSE b/docs/tosl.LICENSE index d379fd2cc2..64732a6dcd 100644 --- a/docs/tosl.LICENSE +++ b/docs/tosl.LICENSE @@ -1,3 +1,30 @@ +--- +key: tosl +short_name: TOSL 1.0a +name: Trusster Open Source License 1.0a +category: Copyleft +owner: Trusster +homepage_url: https://fedoraproject.org/wiki/Licensing/TOSL +notes: | + Per Fedora, the Trusster Open Source License (TOSL) is a derivation of the + Sleepycat License. The one significant difference is that where the + Sleepycat License says 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. TOSL is somewhat more specific The source code must either be + included in the distribution or be available in a timely fashion for no + more than the cost of distribution plus a nominal fee, and must be freely + redistributable under reasonable and no more restrictive conditions. While + the Sleepycat License is considered to be a free, GPL-compatible license, + TOSL is GPL-incompatible because of the addition of the "no more + restrictive" language. +spdx_license_key: TOSL +ignorable_copyrights: + - copyright (c) 2006 Mike Mintz and Robert Ekendahl +ignorable_holders: + - Mike Mintz and Robert Ekendahl +--- + Trusster Open Source License version 1.0a (TRUST) copyright (c) 2006 Mike Mintz and Robert Ekendahl. All rights reserved. @@ -31,4 +58,4 @@ 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. +OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/tosl.html b/docs/tosl.html index b857dcd96d..94b22b6e8d 100644 --- a/docs/tosl.html +++ b/docs/tosl.html @@ -185,8 +185,7 @@ 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. - +OF SUCH DAMAGE.
@@ -198,7 +197,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tosl.json b/docs/tosl.json index f8a1a10ad8..44eb5cc990 100644 --- a/docs/tosl.json +++ b/docs/tosl.json @@ -1 +1,16 @@ -{"key": "tosl", "short_name": "TOSL 1.0a", "name": "Trusster Open Source License 1.0a", "category": "Copyleft", "owner": "Trusster", "homepage_url": "https://fedoraproject.org/wiki/Licensing/TOSL", "notes": "Per Fedora, the Trusster Open Source License (TOSL) is a derivation of the\nSleepycat License. The one significant difference is that where the\nSleepycat License says The source code must either be included in the\ndistribution or be available for no more than the cost of distribution plus\na nominal fee, and must be freely redistributable under reasonable\nconditions. TOSL is somewhat more specific The source code must either be\nincluded in the distribution or be available in a timely fashion for no\nmore than the cost of distribution plus a nominal fee, and must be freely\nredistributable under reasonable and no more restrictive conditions. While\nthe Sleepycat License is considered to be a free, GPL-compatible license,\nTOSL is GPL-incompatible because of the addition of the \"no more\nrestrictive\" language.\n", "spdx_license_key": "TOSL", "ignorable_copyrights": ["copyright (c) 2006 Mike Mintz and Robert Ekendahl"], "ignorable_holders": ["Mike Mintz and Robert Ekendahl"]} \ No newline at end of file +{ + "key": "tosl", + "short_name": "TOSL 1.0a", + "name": "Trusster Open Source License 1.0a", + "category": "Copyleft", + "owner": "Trusster", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/TOSL", + "notes": "Per Fedora, the Trusster Open Source License (TOSL) is a derivation of the\nSleepycat License. The one significant difference is that where the\nSleepycat License says The source code must either be included in the\ndistribution or be available for no more than the cost of distribution plus\na nominal fee, and must be freely redistributable under reasonable\nconditions. TOSL is somewhat more specific The source code must either be\nincluded in the distribution or be available in a timely fashion for no\nmore than the cost of distribution plus a nominal fee, and must be freely\nredistributable under reasonable and no more restrictive conditions. While\nthe Sleepycat License is considered to be a free, GPL-compatible license,\nTOSL is GPL-incompatible because of the addition of the \"no more\nrestrictive\" language.\n", + "spdx_license_key": "TOSL", + "ignorable_copyrights": [ + "copyright (c) 2006 Mike Mintz and Robert Ekendahl" + ], + "ignorable_holders": [ + "Mike Mintz and Robert Ekendahl" + ] +} \ No newline at end of file diff --git a/docs/tpl-1.0.LICENSE b/docs/tpl-1.0.LICENSE index 2e11c7ace3..fb5dc9499a 100644 --- a/docs/tpl-1.0.LICENSE +++ b/docs/tpl-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: tpl-1.0 +short_name: TPL 1.0 +name: Terracotta Public License 1.0 +category: Copyleft Limited +owner: Terracotta +homepage_url: http://terracotta.org/legal/terracotta-public-license +spdx_license_key: LicenseRef-scancode-tpl-1.0 +text_urls: + - http://terracotta.org/legal/terracotta-public-license +faq_url: http://terracotta.org/legal/licensing-faq +other_urls: + - http://terracotta.org/legal/licensing-overview +ignorable_urls: + - http://www.terracotta.org/TPL +--- + Terracotta Public License (version 1.0) 1. Definitions diff --git a/docs/tpl-1.0.html b/docs/tpl-1.0.html index 7cbf9ea923..ac6fbda186 100644 --- a/docs/tpl-1.0.html +++ b/docs/tpl-1.0.html @@ -347,7 +347,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tpl-1.0.json b/docs/tpl-1.0.json index 07973afce7..489c1cbc65 100644 --- a/docs/tpl-1.0.json +++ b/docs/tpl-1.0.json @@ -1 +1,19 @@ -{"key": "tpl-1.0", "short_name": "TPL 1.0", "name": "Terracotta Public License 1.0", "category": "Copyleft Limited", "owner": "Terracotta", "homepage_url": "http://terracotta.org/legal/terracotta-public-license", "spdx_license_key": "LicenseRef-scancode-tpl-1.0", "text_urls": ["http://terracotta.org/legal/terracotta-public-license"], "faq_url": "http://terracotta.org/legal/licensing-faq", "other_urls": ["http://terracotta.org/legal/licensing-overview"], "ignorable_urls": ["http://www.terracotta.org/TPL"]} \ No newline at end of file +{ + "key": "tpl-1.0", + "short_name": "TPL 1.0", + "name": "Terracotta Public License 1.0", + "category": "Copyleft Limited", + "owner": "Terracotta", + "homepage_url": "http://terracotta.org/legal/terracotta-public-license", + "spdx_license_key": "LicenseRef-scancode-tpl-1.0", + "text_urls": [ + "http://terracotta.org/legal/terracotta-public-license" + ], + "faq_url": "http://terracotta.org/legal/licensing-faq", + "other_urls": [ + "http://terracotta.org/legal/licensing-overview" + ], + "ignorable_urls": [ + "http://www.terracotta.org/TPL" + ] +} \ No newline at end of file diff --git a/docs/tpl-2.0.LICENSE b/docs/tpl-2.0.LICENSE new file mode 100644 index 0000000000..b441a6b25b --- /dev/null +++ b/docs/tpl-2.0.LICENSE @@ -0,0 +1,440 @@ +--- +key: tpl-2.0 +short_name: TPL 2.0 +name: Terracotta Public License 2.0 +category: Copyleft Limited +owner: Terracotta +homepage_url: https://raw.githubusercontent.com/Terracotta-OSS/terracotta-core/master/LICENSE +spdx_license_key: LicenseRef-scancode-tpl-2.0 +text_urls: + - https://github.com/Terracotta-OSS/terracotta-core/blob/master/LICENSE +standard_notice: | + The contents of this file are subject to the Terracotta Public 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://terracotta.org/legal/terracotta-public-license. + Software distributed under the License is distributed on an "AS IS" basis, + WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + for + the specific language governing rights and limitations under the License. +ignorable_copyrights: + - (c) Terracotta, Inc., a Software AG company +ignorable_holders: + - Terracotta, Inc., a Software AG company +ignorable_urls: + - http://terracotta.org/legal/terracotta-public-license + - http://www.terracotta.org/ +--- + +Terracotta Public License, version 2.0 + +1. Definitions + +1.1. "Contributor" means each individual or legal entity that creates, +contributes to the creation of, and owns Covered Software. + +1.2. "Contributor Version" means the combination of the Contributions of others +(if any) used by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" means Covered Software of a particular Contributor. + +1.4. "Covered Software" means Source Code Form to which the initial Contributor +has attached the notice in Exhibit A, the Executable Form of such Source Code +Form, and Modifications of such Source Code Form, in each case including +portions thereof. + +1.5. "Initial Developer" means the individual or entity identified as the +Initial Developer in the Source Code notice required by Exhibit A. + +1.6. "Incompatible With Secondary Licenses" means (a) that the initial +Contributor has attached the notice described in Exhibit B to the Covered +Software; or (b) that the Covered Software was made available under the terms +of version 1.0, but not also under the terms of a Secondary License. + +1.7. "Executable Form" means any form of the work other than Source Code Form. + +1.8. "Larger Work" means a work that combines Covered Software with other +material, in a separate file or files that is not Covered Software. + +1.9. "License" means this document. + +1.10. "Licensable" means having the right to grant, to the maximum extent +possible, whether at the time of the initial grant or subsequently, any and all +of the rights conveyed by this License. + +1.11. "Modifications" means any of the following: (a) any file in Source Code +Form that results from an addition to, deletion from, or modification of the +contents of Covered Software; or (b) any new file in Source Code Form that +contains any Covered Software. + +1.12. "Patent Claims" of a Contributor means any patent claim(s), including +without limitation, method, process, and apparatus claims, in any patent +Licensable by such Contributor that would be infringed, but for the grant of +the License, by the making, using, selling, offering for sale, having made, +import, or transfer of either its Contributions or its Contributor Version. + +1.13. "Secondary License" means either the GNU General Public License, Version +2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General +Public License, Version 3.0, or any later versions of those licenses. + +1.14. "Source Code Form" means the form of the work preferred for making +modifications including all modules it contains, plus any associated interface +definition files, scripts used to control compilation and installation of an +Executable Form, or source code differential comparisons against either the +Covered Software or another well known, available Covered Software of the +Contributor's choice. The Source Code Form can be in a compressed or archival +form, provided the appropriate decompression or de-archiving software is widely +available for no charge. + +1.15. "You" (or "Your") means an individual or a legal entity exercising rights +under this License. For legal entities, "You" includes any entity that +controls, is controlled by, or is under common control with You. For purposes +of this definition, "control" means (a) the power, direct or indirect, to cause +the direction or management of such entity, whether by contract or otherwise, +or (b) ownership of more than fifty percent (50%) of the outstanding shares or +beneficial ownership of such entity. + +2. License Grants and Conditions + +2.1. Grants +The Initial Developer and each Contributor hereby grants You a world-wide, +royalty-free, non-exclusive license, subject to third party intellectual +property claims: + +(a) under intellectual property rights (other than patent or trademark) +licensable by such Contributor to use, reproduce, make available, modify, +display, perform, sublicense, distribute, and otherwise exploit its +Contributions, either on an unmodified basis, with Modifications, or as part of +a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer for +sale, have made, import, and otherwise transfer either its Contributions or its +Contributor Version. + +2.2. Effective Date +The licenses granted in Section 2.1 with respect to any Contribution become +effective for each Contribution on the date the Contributor first distributes +such Contribution or otherwise makes available Contributions under the terms of +this License. + +2.3. Limitations on Grant Scope +The licenses granted in this Section 2 are the only rights granted under this +License. No additional rights or licenses will be implied from the distribution +or licensing of Covered Software under this License. Notwithstanding Section +2.1(b) above, no patent license is granted by a Contributor: + +(a) for any code that a Contributor has removed from Covered Software; or + +(b) for infringements caused by: (i) You and any other third party's +modifications of Covered Software, or (ii) You and any other third party's +combination with other software (except as part of its Contributor Version) or +devices; or + +(c) under Patent Claims infringed by Covered Software in the absence of its +Contributions. + +This License does not grant any rights in the trademarks, service marks, or +logos of any Contributor (except as may be necessary to comply with the notice +and attribution requirements in Sections 3.5 and 3.8. + +2.4. Subsequent Licenses +No Contributor makes additional grants as a result of Your choice to distribute +the Covered Software under a subsequent version of this License (see Section +10.2) or under the terms of a Secondary License (if permitted under the terms +of Section 3.3). + +2.5. Representation +Each Contributor represents that the Contributor believes its Contributions are +its original creation(s) or it has sufficient rights to grant the rights to its +Contributions conveyed by this License. + +2.6. Fair Use +This License is not intended to limit any rights You have under applicable +copyright doctrines of fair use, fair dealing, or other equivalents. + +2.7. Conditions +Sections 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, and 3.7 are conditions of the licenses +granted in Section 2.1. + +2.8. Multiple-licensed Software +Initial Developer may designate portions of the Covered Software as “Multiple- +Licensed”. “Multiple-Licensed” means that the Initial Developer permits You to +utilize portions of the Covered Software under Your choice of the TPL or +alternative licenses, if any, specified in Exhibit A by the Initial Developer. + +3. Responsibilities + +3.1. Distribution of Source Code Form +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under the +terms of this License or a future version of this license released under +Section 10.1, and You must include a copy of this license with every copy of +the source code You distribute or otherwise make available. You must inform +recipients that the Source Code Form of the Covered Software is governed by the +terms of this License, and how they can obtain a copy of this License. You may +not offer or impose any terms on any Source Code Form that alters or restricts +the applicable version of this license or the recipients’ rights thereunder. +However, You may include an additional document offering the additional rights +described in Section 3.6. + +3.2. Distribution of Executable Form +If You distribute Covered Software in Executable Form then: (a) such Covered +Software must also be made available in Source Code Form, as described in +Section 3.1, and You must inform recipients of the Executable Form how they can +obtain a copy of such Source Code Form by reasonable means in a timely manner, +at a charge no more than the cost of distribution to the recipient; and (b) You +may distribute such Executable Form under the terms of this License, or +sublicense it under different terms, provided that the license for the +Executable Form does not attempt to limit or alter the recipients' rights in +the Source Code Form under this License. + +3.3. Distribution of a Larger Work +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for the +Covered Software. If the Larger Work is a combination of Covered Software with +a work governed by one or more Secondary Licenses, and the Covered Software is +not incompatible With Secondary Licenses, this License permits You to +additionally distribute such Covered Software under the terms of such Secondary +License(s), so that the recipient of the Larger Work may, at their option, +further distribute the Covered Software under the terms of either this License +or such Secondary License(s). + +3.4. Description of Modifications +You must cause all Modifications to the Covered Software to contain a file +documenting the changes You made to the Covered Software and the date of any +change. You must include a prominent statement that the Modification is +derived, directly or indirectly, from Covered Software provided by the Initial +Developer and include the name of the Initial Developer in (a) the Source Code +Form, and (b) in any notice in an Executable Form or related documentation in +which You describe the origin or ownership of the Covered Software. + +3.5. Notices +You must duplicate the notice in Exhibit A in each file of the Source Code. If +it is not possible to put such notice in a particular Source Code file due to +its structure, then You must include such notice in a location (such as a +relevant directory) where a user would be likely to look for such a notice. If +You created one or more Modification(s) You may add Your name as a Contributor +to the notice described in Exhibit A. You must also duplicate this License in +any documentation for the Source Code where You describe recipients’ rights or +ownership rights relating to Covered Software. You may not remove or alter the +substance of any License notices (including copyright notices, patent notices, +disclaimers of warranty, or limitations of liability) contained within the +Source Code Form of the Covered Software, except that You may alter any License +notices to the extent required to remedy known factual inaccuracies. + +3.6. Application of Additional Terms +You may choose to offer, and to charge a fee for, warranty, support, indemnity +or liability obligations to one or more recipients of Covered Software. +However, You may do so only on Your own behalf, and not on behalf of any +Contributor. You must make it absolutely clear that any such warranty, support, +indemnity, or liability obligation is offered by You alone, and You hereby +agree to indemnify every Contributor for any liability incurred by such +Contributor as a result of warranty, support, indemnity or liability terms You +offer. You may include additional disclaimers of warranty and limitations of +liability specific to any jurisdiction. + +3.7. Intellectual Property Matters + +(a) Third Party Claims +If Contributor has knowledge that a License under a Third Party’s Intellectual +Property Rights is required to exercise the rights granted by such Contributor +under Section 2.1, Contributor must include a text file with the Source Code +Distribution titled “Legal” which describes the claim and the party making the +claim in sufficient detail that a recipient will know whom to contact. If +Contributor obtains such knowledge after the Modification is made available, +Contributor shall promptly modify the Legal file in all copies Contributor +makes available thereafter and shall take other steps (such as notifying +appropriate mailing lists or newsgroups) reasonably calculated to inform those +who received the Covered Software that new knowledge has been obtained. + +(b) Contributor APIs +If Contributor’s Modifications include an application programming interface and +Contributor has knowledge of patent licenses which hare reasonably necessary to +implement that API, Contributor must also include this information in the Legal +file. + +(c) Representations +Contributor represents that, except as disclosed pursuant to Section 3.7 (a) +above, Contributor believes that Contributor’s Modifications are Contributor’s +original creation(s) and /or Contributor has sufficient rights to grant the +rights conveyed by this License. + +3.8. Certain Attribution Requirements +This License does not grant any License or rights to use the trademarks +“TERRACOTTA” “SOFTWARE AG,” any logos, trade names or slogans of either +Terracotta, Inc. or Software AG. However, in addition to the other notice +obligations all copies of the Covered Software in Executable Form and Source +Code Form distributed or otherwise made available, must as a form of +attribution of the Initial Developer, include on each user interface screen (a) +the copyright notice in the same form as the latest version of the Covered +Software distributed or otherwise made available by Terracotta Inc. at the time +of distribution or making available of such copy and (b) the following text +which must be large enough so that it can be read easily “Powered by +Terracotta.” The copyright notice and text must be visible to all users and be +located at the very bottom and in the center of each user interface screen. The +word “Terracotta” must be a hyperlink, so that when any user activates the link +(e.g. by clicking on it with a mouse), the user will be directed to +http://www.terracotta.org. + +4. Inability to Comply Due to Statute or Regulation +If it is impossible for You to comply with any of the terms of this License +with respect to some or all of the Covered Software due to statute, judicial +order, or regulation then You must: (a) comply with the terms of this License +to the maximum extent possible; and (b) describe the limitations and the code +they affect. Such description must be placed in a text file included with all +distributions of the Covered Software under this License. Except to the extent +prohibited by statute or regulation, such description must be sufficiently +detailed for a recipient of ordinary skill to be able to understand it. + +5. Termination + +5.1. The rights granted under this License will terminate automatically if You +fail to comply with any of its terms. However, if You become compliant, then +the rights granted under this License from a particular Contributor are +reinstated (a) provisionally, unless and until such Contributor explicitly and +finally terminates Your grants, and (b) on an ongoing basis, if such +Contributor fails to notify You of the non-compliance by some reasonable means +prior to 60 days after You have come back into compliance. Moreover, Your +grants from a particular Contributor are reinstated on an ongoing basis if such +Contributor notifies You of the non-compliance by some reasonable means, this +is the first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after Your +receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, counter-claims, and +cross-claims) alleging that a Contributor Version directly or indirectly +infringes any patent, then the rights granted to You by any and all +Contributors for the Covered Software under Section 2.1 of this License shall +terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user +license agreements (excluding distributors and resellers) which have been +validly granted by You or Your distributors under this License prior to +termination shall survive termination. + +6. Disclaimer of Warranty +COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT +WARRANTY OF ANY KIND, EITHER EXPRESSED, IMPLIED OR STATUTORY, INCLUDING, +WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, +MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK +AS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD +ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL +DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, +REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART +OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT +UNDER THIS DISCLAIMER. + +7. Limitation of Liability +UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING +NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY +OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF +ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, +INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT +LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER +FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN +IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS +LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL +INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW +PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR +LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND +LIMITATION MAY NOT APPLY TO YOU. + +8. Litigation + +8.1. Jurisdiction +This License shall be governed in accordance with the laws of the Commonwealth +of Virginia (except to the extent applicable law, if any, provides otherwise), +without giving effect to its conflicts-of-laws provisions. With respect to +disputes in which at least one party is a citizen of, or an entity chartered or +registered to do business in the United States of America, any litigation +relating to this license shall be subject to the jurisdiction of the federal +courts of the Commonwealth of Virginia with the losing party responsible for +costs, including without limitation, court costs and reasonable attorneys’ fees +and expenses. The application of the United Nations Convention on Contracts for +the International Sale of Goods is expressly excluded. Any law or regulation +which provides that the language of contract shall be construed against the +drafter shall not apply to this License. You agree that You alone are +responsible for compliance with the United States export administration +regulations (and the export control laws and regulations of any other +countries) when You use, distribute, or otherwise make available Covered +Software. + +8.2. Responsibility for Claims +As between the Initial Developer and Contributors, each party is responsible +for claims and damages arising, directly or indirectly, out of its utilization +of rights under this License and You agree to work with Initial Developer and +Contributors to distribute such responsibility on an equitable basis. Nothing +herein is intended or shall be deemed to constitute an admission of liability. + +9. Miscellaneous +This License represents the complete agreement concerning the subject matter +hereof. If any provision of this License is held to be unenforceable, such +provision shall be reformed only to the extent necessary to make it +enforceable. Any law or regulation which provides that the language of a +contract shall be construed against the drafter shall not be used to construe +this License against a Contributor. + +10. Versions of the License + +10.1. New Versions +Terracotta, Inc. and/or its parent Software AG (“Terracotta”) may publish +revised and/or new versions of the license from time to time. Except as +provided in Section 10.3, no one other than Terracotta has the right to modify +or publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions +You may distribute the Covered Software under the terms of the version of the +License under which You originally received the Covered Software, or under the +terms of any subsequent version published by Terracotta. + +10.3. Modified Versions +If You create or use a modified version of this License (which You may do in +order to apply it to code with is not already covered by this License), You +must (a) rename Your License so that the phrases “Terracotta” “TPL” “Software +AG,” or any confusingly similar phrase do not appear in Your license (except to +note that Your license differs from this License) and (b) otherwise make it +clear that Your version of the license contains terms which differ from the +Terracotta Public License. Filling in the name of the Initial Developer, +Covered Software or Contributor in the notice described in Exhibit A shall not +of themselves be deemed to be modifications of this License.) +This Terracotta Public License (TPL) is similar to, and contains samples from, +the Mozilla Public License (MPL) and the Common Development and Distribution +License (CDDL). However, this TPL contains terms which differ from those +contained in the MPL and CDDL. + +10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the notice +described in Exhibit B of this License must be attached. + +Exhibit A - Terracotta Public License. +"The contents of this file are subject to the Terracotta Public 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://terracotta.org/legal/terracotta-public-license. +Software distributed under the License is distributed on an "AS IS" basis, +WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for +the specific language governing rights and limitations under the License. + +The Covered Software is Terracotta Core. + +The Initial Developer of the Covered Software is Terracotta, Inc. © Terracotta, +Inc., a Software AG company + +Portions created by ______________________ are Copyright (C) _______________. +All Rights Reserved. +Contributor(s): ______________________________________. + +NOTE: THE TEXT OF THIS EXHIBIT A MAY DIFFER SLIGHTLY FROM THE TEXT OF THE +NOTICES IN THE SOURCE CODE FILES OF THE COVERED SOFTWARE. YOU SHOULD USE THE +TEXT OF THIS EXHIBIT A RATHER THAN THE TEXT FOUND IN THE COVERED SOFTWARE +SOURCE CODE FOR YOUR MODIFICATIONS. + +Exhibit B - "Incompatible With Secondary Licenses" Notice + +This Source Code Form is "Incompatible With Secondary Licenses", as defined by +the Terracotta Public License, v. 2.0. \ No newline at end of file diff --git a/docs/tpl-2.0.html b/docs/tpl-2.0.html new file mode 100644 index 0000000000..f2f84b72c3 --- /dev/null +++ b/docs/tpl-2.0.html @@ -0,0 +1,612 @@ + + + + + + LicenseDB: tpl-2.0 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + tpl-2.0 + +
+ +
short_name
+
+ + TPL 2.0 + +
+ +
name
+
+ + Terracotta Public License 2.0 + +
+ +
category
+
+ + Copyleft Limited + +
+ +
owner
+
+ + Terracotta + +
+ +
homepage_url
+
+ + https://raw.githubusercontent.com/Terracotta-OSS/terracotta-core/master/LICENSE + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-tpl-2.0 + +
+ +
text_urls
+
+ + + +
+ +
standard_notice
+
+ + The contents of this file are subject to the Terracotta Public 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://terracotta.org/legal/terracotta-public-license. +Software distributed under the License is distributed on an "AS IS" basis, +WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +for +the specific language governing rights and limitations under the License. + + +
+ +
ignorable_copyrights
+
+ +
    +
  • (c) Terracotta, Inc., a Software AG company
  • +
+ +
+ +
ignorable_holders
+
+ +
    +
  • Terracotta, Inc., a Software AG company
  • +
+ +
+ +
ignorable_urls
+
+ + + +
+ +
+
license_text
+
Terracotta Public License, version 2.0
+
+1. Definitions
+
+1.1. "Contributor" means each individual or legal entity that creates, 
+contributes to the creation of, and owns Covered Software.
+
+1.2. "Contributor Version" means the combination of the Contributions of others 
+(if any) used by a Contributor and that particular Contributor's Contribution.
+
+1.3. "Contribution" means Covered Software of a particular Contributor.
+
+1.4. "Covered Software" means Source Code Form to which the initial Contributor 
+has attached the notice in Exhibit A, the Executable Form of such Source Code 
+Form, and Modifications of such Source Code Form, in each case including 
+portions thereof.
+
+1.5. "Initial Developer" means the individual or entity identified as the 
+Initial Developer in the Source Code notice required by Exhibit A.
+
+1.6. "Incompatible With Secondary Licenses" means (a) that the initial 
+Contributor has attached the notice described in Exhibit B to the Covered 
+Software; or (b) that the Covered Software was made available under the terms 
+of version 1.0, but not also under the terms of a Secondary License.
+
+1.7. "Executable Form" means any form of the work other than Source Code Form.
+
+1.8. "Larger Work" means a work that combines Covered Software with other 
+material, in a separate file or files that is not Covered Software.
+
+1.9. "License" means this document.
+
+1.10. "Licensable" means having the right to grant, to the maximum extent 
+possible, whether at the time of the initial grant or subsequently, any and all 
+of the rights conveyed by this License.
+
+1.11. "Modifications" means any of the following: (a) any file in Source Code 
+Form that results from an addition to, deletion from, or modification of the 
+contents of Covered Software; or (b) any new file in Source Code Form that 
+contains any Covered Software.
+
+1.12. "Patent Claims" of a Contributor means any patent claim(s), including 
+without limitation, method, process, and apparatus claims, in any patent 
+Licensable by such Contributor that would be infringed, but for the grant of 
+the License, by the making, using, selling, offering for sale, having made, 
+import, or transfer of either its Contributions or its Contributor Version.
+
+1.13. "Secondary License" means either the GNU General Public License, Version 
+2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General 
+Public License, Version 3.0, or any later versions of those licenses.
+
+1.14. "Source Code Form" means the form of the work preferred for making 
+modifications including all modules it contains, plus any associated interface 
+definition files, scripts used to control compilation and installation of an 
+Executable Form, or source code differential comparisons against either the 
+Covered Software or another well known, available Covered Software of the 
+Contributor's choice. The Source Code Form can be in a compressed or archival 
+form, provided the appropriate decompression or de-archiving software is widely 
+available for no charge.
+
+1.15. "You" (or "Your") means an individual or a legal entity exercising rights 
+under this License. For legal entities, "You" includes any entity that 
+controls, is controlled by, or is under common control with You. For purposes 
+of this definition, "control" means (a) the power, direct or indirect, to cause 
+the direction or management of such entity, whether by contract or otherwise, 
+or (b) ownership of more than fifty percent (50%) of the outstanding shares or 
+beneficial ownership of such entity.
+
+2. License Grants and Conditions
+
+2.1. Grants
+The Initial Developer and each Contributor hereby grants You a world-wide, 
+royalty-free, non-exclusive license, subject to third party intellectual 
+property claims:
+
+(a) under intellectual property rights (other than patent or trademark) 
+licensable by such Contributor to use, reproduce, make available, modify, 
+display, perform, sublicense, distribute, and otherwise exploit its 
+Contributions, either on an unmodified basis, with Modifications, or as part of 
+a Larger Work; and
+
+(b) under Patent Claims of such Contributor to make, use, sell, offer for  
+sale, have made, import, and otherwise transfer either its Contributions or its 
+Contributor Version.
+
+2.2. Effective Date
+The licenses granted in Section 2.1 with respect to any Contribution become 
+effective for each Contribution on the date the Contributor first distributes 
+such Contribution or otherwise makes available Contributions under the terms of 
+this License.
+
+2.3. Limitations on Grant Scope
+The licenses granted in this Section 2 are the only rights granted under this 
+License. No additional rights or licenses will be implied from the distribution 
+or licensing of Covered Software under this License.  Notwithstanding Section 
+2.1(b) above, no patent license is granted by a Contributor:
+
+(a) for any code that a Contributor has removed from Covered Software; or
+
+(b) for infringements caused by: (i) You and any other third party's 
+modifications of Covered Software, or (ii) You and any other third party's 
+combination with other software (except as part of its Contributor Version) or 
+devices; or
+
+(c) under Patent Claims infringed by Covered Software in the absence of its 
+Contributions.
+
+This License does not grant any rights in the trademarks, service marks, or 
+logos of any Contributor (except as may be necessary to comply with the notice 
+and attribution requirements in Sections 3.5 and 3.8.
+
+2.4. Subsequent Licenses
+No Contributor makes additional grants as a result of Your choice to distribute 
+the Covered Software under a subsequent version of this License (see Section 
+10.2) or under the terms of a Secondary License (if permitted under the terms 
+of Section 3.3).
+
+2.5. Representation
+Each Contributor represents that the Contributor believes its Contributions are 
+its original creation(s) or it has sufficient rights to grant the rights to its 
+Contributions conveyed by this License.
+
+2.6. Fair Use
+This License is not intended to limit any rights You have under applicable 
+copyright doctrines of fair use, fair dealing, or other equivalents.
+
+2.7. Conditions
+Sections 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, and 3.7 are conditions of the licenses 
+granted in Section 2.1.
+
+2.8. Multiple-licensed Software 
+Initial Developer may designate portions of the Covered Software as “Multiple- 
+Licensed”. “Multiple-Licensed” means that the Initial Developer permits You to 
+utilize portions of the Covered Software under Your choice of the TPL or 
+alternative licenses, if any, specified in Exhibit A by the Initial Developer.
+
+3. Responsibilities
+
+3.1. Distribution of Source Code Form
+All distribution of Covered Software in Source Code Form, including any 
+Modifications that You create or to which You contribute, must be under the 
+terms of this License or a future version of this license released under 
+Section 10.1, and You must include a copy of this license with every copy of 
+the source code You distribute or otherwise make available. You must inform 
+recipients that the Source Code Form of the Covered Software is governed by the 
+terms of this License, and how they can obtain a copy of this License. You may 
+not offer or impose any terms on any Source Code Form that alters or restricts 
+the applicable version of this license or the recipients’ rights thereunder. 
+However, You may include an additional document offering the additional rights 
+described in Section 3.6.
+
+3.2. Distribution of Executable Form
+If You distribute Covered Software in Executable Form then: (a) such Covered 
+Software must also be made available in Source Code Form, as described in 
+Section 3.1, and You must inform recipients of the Executable Form how they can 
+obtain a copy of such Source Code Form by reasonable means in a timely manner, 
+at a charge no more than the cost of distribution to the recipient; and (b) You 
+may distribute such Executable Form under the terms of this License, or 
+sublicense it under different terms, provided that the license for the 
+Executable Form does not attempt to limit or alter the recipients' rights in 
+the Source Code Form under this License.
+
+3.3. Distribution of a Larger Work
+You may create and distribute a Larger Work under terms of Your choice, 
+provided that You also comply with the requirements of this License for the 
+Covered Software. If the Larger Work is a combination of Covered Software with 
+a work governed by one or more Secondary Licenses, and the Covered Software is 
+not incompatible With Secondary Licenses, this License permits You to 
+additionally distribute such Covered Software under the terms of such Secondary 
+License(s), so that the recipient of the Larger Work may, at their option, 
+further distribute the Covered Software under the terms of either this License 
+or such Secondary License(s).
+
+3.4. Description of Modifications
+You must cause all Modifications to the Covered Software to contain a file 
+documenting the changes You made to the Covered Software and the date of any 
+change. You must include a prominent statement that the Modification is 
+derived, directly or indirectly, from Covered Software provided by the Initial 
+Developer and include the name of the Initial Developer in (a) the Source Code 
+Form, and (b) in any notice in an Executable Form or related documentation in 
+which You describe the origin or ownership of the Covered Software.
+
+3.5. Notices
+You must duplicate the notice in Exhibit A in each file of the Source Code. If 
+it is not possible to put such notice in a particular Source Code file due to 
+its structure, then You must include such notice in a location (such as a 
+relevant directory) where a user would be likely to look for such a notice. If 
+You created one or more Modification(s) You may add Your name as a Contributor 
+to the notice described in Exhibit A. You must also duplicate this License in 
+any documentation for the Source Code where You describe recipients’ rights or 
+ownership rights relating to Covered Software.  You may not remove or alter the 
+substance of any License notices (including copyright notices, patent notices, 
+disclaimers of warranty, or limitations of liability) contained within the 
+Source Code Form of the Covered Software, except that You may alter any License 
+notices to the extent required to remedy known factual inaccuracies.  
+
+3.6. Application of Additional Terms
+You may choose to offer, and to charge a fee for, warranty, support, indemnity 
+or liability obligations to one or more recipients of Covered Software. 
+However, You may do so only on Your own behalf, and not on behalf of any 
+Contributor. You must make it absolutely clear that any such warranty, support, 
+indemnity, or liability obligation is offered by You alone, and You hereby 
+agree to indemnify every Contributor for any liability incurred by such 
+Contributor as a result of warranty, support, indemnity or liability terms You 
+offer. You may include additional disclaimers of warranty and limitations of 
+liability specific to any jurisdiction.
+
+3.7. Intellectual Property Matters
+
+(a) Third Party Claims
+If Contributor has knowledge that a License under a Third Party’s Intellectual 
+Property Rights is required to exercise the rights granted by such Contributor 
+under Section 2.1, Contributor must include a text file with the Source Code 
+Distribution titled “Legal” which describes the claim and the party making the 
+claim in sufficient detail that a recipient will know whom to contact. If 
+Contributor obtains such knowledge after the Modification is made available, 
+Contributor shall promptly modify the Legal file in all copies Contributor 
+makes available thereafter and shall take other steps (such as notifying 
+appropriate mailing lists or newsgroups) reasonably calculated to inform those 
+who received the Covered Software that new knowledge has been obtained. 
+
+(b) Contributor APIs
+If Contributor’s Modifications include an application programming interface and 
+Contributor has knowledge of patent licenses which hare reasonably necessary to 
+implement that API, Contributor must also include this information in the Legal 
+file.
+
+(c) Representations
+Contributor represents that, except as disclosed pursuant to Section 3.7 (a) 
+above, Contributor believes that Contributor’s Modifications are Contributor’s 
+original creation(s) and /or Contributor has sufficient rights to grant the 
+rights conveyed by this License.
+
+3.8. Certain Attribution Requirements
+This License does not grant any License or rights to use the trademarks 
+“TERRACOTTA” “SOFTWARE AG,” any logos, trade names or slogans of either 
+Terracotta, Inc. or Software AG.  However, in addition to the other notice 
+obligations all copies of the Covered Software in Executable Form and Source 
+Code Form distributed or otherwise made available, must as a form of 
+attribution of the Initial Developer, include on each user interface screen (a) 
+the copyright notice in the same form as the latest version of the Covered 
+Software distributed or otherwise made available by Terracotta Inc. at the time 
+of distribution or making available of such copy and (b) the following text 
+which must be large enough so that it can be read easily “Powered by 
+Terracotta.” The copyright notice and text must be visible to all users and be 
+located at the very bottom and in the center of each user interface screen. The 
+word “Terracotta” must be a hyperlink, so that when any user activates the link 
+(e.g. by clicking on it with a mouse), the user will be directed to 
+http://www.terracotta.org.
+
+4. Inability to Comply Due to Statute or Regulation
+If it is impossible for You to comply with any of the terms of this License 
+with respect to some or all of the Covered Software due to statute, judicial 
+order, or regulation then You must: (a) comply with the terms of this License 
+to the maximum extent possible; and (b) describe the limitations and the code 
+they affect. Such description must be placed in a text file included with all 
+distributions of the Covered Software under this License. Except to the extent 
+prohibited by statute or regulation, such description must be sufficiently 
+detailed for a recipient of ordinary skill to be able to understand it.
+
+5. Termination
+
+5.1. The rights granted under this License will terminate automatically if You 
+fail to comply with any of its terms. However, if You become compliant, then 
+the rights granted under this License from a particular Contributor are 
+reinstated (a) provisionally, unless and until such Contributor explicitly and 
+finally terminates Your grants, and (b) on an ongoing basis, if such 
+Contributor fails to notify You of the non-compliance by some reasonable means 
+prior to 60 days after You have come back into compliance. Moreover, Your 
+grants from a particular Contributor are reinstated on an ongoing basis if such 
+Contributor notifies You of the non-compliance by some reasonable means, this 
+is the first time You have received notice of non-compliance with this License 
+from such Contributor, and You become compliant prior to 30 days after Your 
+receipt of the notice.
+
+5.2. If You initiate litigation against any entity by asserting a patent 
+infringement claim (excluding declaratory judgment actions, counter-claims, and 
+cross-claims) alleging that a Contributor Version directly or indirectly 
+infringes any patent, then the rights granted to You by any and all 
+Contributors for the Covered Software under Section 2.1 of this License shall 
+terminate.
+
+5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user 
+license agreements (excluding distributors and resellers) which have been 
+validly granted by You or Your distributors under this License prior to 
+termination shall survive termination.
+
+6. Disclaimer of Warranty
+COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT 
+WARRANTY OF ANY KIND, EITHER EXPRESSED, IMPLIED OR STATUTORY, INCLUDING, 
+WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, 
+MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK 
+AS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD 
+ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL 
+DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, 
+REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART 
+OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT 
+UNDER THIS DISCLAIMER.
+
+7. Limitation of Liability
+UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING 
+NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY 
+OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF 
+ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, 
+INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT 
+LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER 
+FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN 
+IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS 
+LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL 
+INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW 
+PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR 
+LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND 
+LIMITATION MAY NOT APPLY TO YOU.
+
+8. Litigation
+
+8.1. Jurisdiction
+This License shall be governed in accordance with the laws of the Commonwealth 
+of Virginia (except to the extent applicable law, if any, provides otherwise), 
+without giving effect to its conflicts-of-laws provisions. With respect to 
+disputes in which at least one party is a citizen of, or an entity chartered or 
+registered to do business in the United States of America, any litigation 
+relating to this license shall be subject to the jurisdiction of the federal 
+courts of the Commonwealth of Virginia with the losing party responsible for 
+costs, including without limitation, court costs and reasonable attorneys’ fees 
+and expenses. The application of the United Nations Convention on Contracts for 
+the International Sale of Goods is expressly excluded. Any law or regulation 
+which provides that the language of contract shall be construed against the 
+drafter shall not apply to this License. You agree that You alone are 
+responsible for compliance with the United States export administration 
+regulations (and the export control laws and regulations of any other 
+countries) when You use, distribute, or otherwise make available Covered 
+Software. 
+
+8.2. Responsibility for Claims
+As between the Initial Developer and Contributors, each party is responsible 
+for claims and damages arising, directly or indirectly, out of its utilization 
+of rights under this License and You agree to work with Initial Developer and 
+Contributors to distribute such responsibility on an equitable basis. Nothing 
+herein is intended or shall be deemed to constitute an admission of liability. 
+
+9. Miscellaneous
+This License represents the complete agreement concerning the subject matter 
+hereof. If any provision of this License is held to be unenforceable, such 
+provision shall be reformed only to the extent necessary to make it 
+enforceable. Any law or regulation which provides that the language of a 
+contract shall be construed against the drafter shall not be used to construe 
+this License against a Contributor.
+
+10. Versions of the License
+
+10.1. New Versions
+Terracotta, Inc. and/or its parent Software AG (“Terracotta”) may publish 
+revised and/or new versions of the license from time to time. Except as 
+provided in Section 10.3, no one other than Terracotta has the right to modify 
+or publish new versions of this License. Each version will be given a 
+distinguishing version number.
+
+10.2. Effect of New Versions
+You may distribute the Covered Software under the terms of the version of the 
+License under which You originally received the Covered Software, or under the 
+terms of any subsequent version published by Terracotta.
+
+10.3. Modified Versions
+If You create or use a modified version of this License (which You may do in 
+order to apply it to code with is not already covered by this License), You 
+must (a) rename Your License so that the phrases “Terracotta” “TPL” “Software 
+AG,” or any confusingly similar phrase do not appear in Your license (except to 
+note that Your license differs from this License) and (b) otherwise make it 
+clear that Your version of the license contains terms which differ from the 
+Terracotta Public License.  Filling in the name of the Initial Developer, 
+Covered Software or Contributor in the notice described in Exhibit A shall not 
+of themselves be deemed to be modifications of this License.)
+This Terracotta Public License (TPL) is similar to, and contains samples from, 
+the Mozilla Public License (MPL) and the Common Development and Distribution 
+License (CDDL). However, this TPL contains terms which differ from those 
+contained in the MPL and CDDL. 
+
+10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses
+If You choose to distribute Source Code Form that is Incompatible With 
+Secondary Licenses under the terms of this version of the License, the notice 
+described in Exhibit B of this License must be attached.
+
+Exhibit A - Terracotta Public License.
+"The contents of this file are subject to the Terracotta Public 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://terracotta.org/legal/terracotta-public-license.
+Software distributed under the License is distributed on an "AS IS" basis, 
+WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for 
+the specific language governing rights and limitations under the License.
+
+The Covered Software is Terracotta Core.
+
+The Initial Developer of the Covered Software is Terracotta, Inc. © Terracotta, 
+Inc., a Software AG company
+
+Portions created by ______________________ are Copyright (C) _______________. 
+All Rights Reserved.
+Contributor(s): ______________________________________.
+
+NOTE: THE TEXT OF THIS EXHIBIT A MAY DIFFER SLIGHTLY FROM THE TEXT OF THE 
+NOTICES IN THE SOURCE CODE FILES OF THE COVERED SOFTWARE. YOU SHOULD USE THE 
+TEXT OF THIS EXHIBIT A RATHER THAN THE TEXT FOUND IN THE COVERED SOFTWARE 
+SOURCE CODE FOR YOUR MODIFICATIONS.
+
+Exhibit B - "Incompatible With Secondary Licenses" Notice
+
+This Source Code Form is "Incompatible With Secondary Licenses", as defined by 
+the Terracotta Public License, v. 2.0.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/tpl-2.0.json b/docs/tpl-2.0.json new file mode 100644 index 0000000000..388905615a --- /dev/null +++ b/docs/tpl-2.0.json @@ -0,0 +1,23 @@ +{ + "key": "tpl-2.0", + "short_name": "TPL 2.0", + "name": "Terracotta Public License 2.0", + "category": "Copyleft Limited", + "owner": "Terracotta", + "homepage_url": "https://raw.githubusercontent.com/Terracotta-OSS/terracotta-core/master/LICENSE", + "spdx_license_key": "LicenseRef-scancode-tpl-2.0", + "text_urls": [ + "https://github.com/Terracotta-OSS/terracotta-core/blob/master/LICENSE" + ], + "standard_notice": "The contents of this file are subject to the Terracotta Public License\nVersion\n2.0 (the \"License\"); You may not use this file except in compliance with\nthe\nLicense. You may obtain a copy of the License at\nhttp://terracotta.org/legal/terracotta-public-license.\nSoftware distributed under the License is distributed on an \"AS IS\" basis,\nWITHOUT WARRANTY OF ANY KIND, either express or implied. See the License\nfor\nthe specific language governing rights and limitations under the License.\n", + "ignorable_copyrights": [ + "(c) Terracotta, Inc., a Software AG company" + ], + "ignorable_holders": [ + "Terracotta, Inc., a Software AG company" + ], + "ignorable_urls": [ + "http://terracotta.org/legal/terracotta-public-license", + "http://www.terracotta.org/" + ] +} \ No newline at end of file diff --git a/docs/tpl-2.0.yml b/docs/tpl-2.0.yml new file mode 100644 index 0000000000..789325ee92 --- /dev/null +++ b/docs/tpl-2.0.yml @@ -0,0 +1,27 @@ +key: tpl-2.0 +short_name: TPL 2.0 +name: Terracotta Public License 2.0 +category: Copyleft Limited +owner: Terracotta +homepage_url: https://raw.githubusercontent.com/Terracotta-OSS/terracotta-core/master/LICENSE +spdx_license_key: LicenseRef-scancode-tpl-2.0 +text_urls: + - https://github.com/Terracotta-OSS/terracotta-core/blob/master/LICENSE +standard_notice: | + The contents of this file are subject to the Terracotta Public 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://terracotta.org/legal/terracotta-public-license. + Software distributed under the License is distributed on an "AS IS" basis, + WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + for + the specific language governing rights and limitations under the License. +ignorable_copyrights: + - (c) Terracotta, Inc., a Software AG company +ignorable_holders: + - Terracotta, Inc., a Software AG company +ignorable_urls: + - http://terracotta.org/legal/terracotta-public-license + - http://www.terracotta.org/ diff --git a/docs/trademark-notice.LICENSE b/docs/trademark-notice.LICENSE index e69de29bb2..b7078b31c7 100644 --- a/docs/trademark-notice.LICENSE +++ b/docs/trademark-notice.LICENSE @@ -0,0 +1,9 @@ +--- +key: trademark-notice +is_deprecated: yes +short_name: Trademark Notice +name: Generic Trademark Notice +category: Unstated License +owner: Unspecified +notes: replaced by generic-trademark +--- \ No newline at end of file diff --git a/docs/trademark-notice.html b/docs/trademark-notice.html index d901c349b0..13d9df1b51 100644 --- a/docs/trademark-notice.html +++ b/docs/trademark-notice.html @@ -127,7 +127,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/trademark-notice.json b/docs/trademark-notice.json index bc981b9b0b..746347e8e6 100644 --- a/docs/trademark-notice.json +++ b/docs/trademark-notice.json @@ -1 +1,9 @@ -{"key": "trademark-notice", "is_deprecated": true, "short_name": "Trademark Notice", "name": "Generic Trademark Notice", "category": "Unstated License", "owner": "Unspecified", "notes": "replaced by generic-trademark"} \ No newline at end of file +{ + "key": "trademark-notice", + "is_deprecated": true, + "short_name": "Trademark Notice", + "name": "Generic Trademark Notice", + "category": "Unstated License", + "owner": "Unspecified", + "notes": "replaced by generic-trademark" +} \ No newline at end of file diff --git a/docs/trca-odl-1.0.LICENSE b/docs/trca-odl-1.0.LICENSE index 3cf3699f57..4dcc1c8c55 100644 --- a/docs/trca-odl-1.0.LICENSE +++ b/docs/trca-odl-1.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: trca-odl-1.0 +short_name: TRCA Open Data Licence 1.0 +name: Toronto Region Conservation Authority Open Data Licence 1.0 +category: Free Restricted +owner: Toronto Region Conservation Authority +homepage_url: https://trca.ca/datalicense +spdx_license_key: LicenseRef-scancode-trca-odl-1.0 +ignorable_urls: + - https://trca.ca/datalicense +--- Toronto and Region Conservation Authority (TRCA) Open Data Licence v1.0 @@ -58,4 +69,4 @@ Versioning This is version 1.0 of the TRCA Open Data Licence. Disclaimer -The information provided herein (the "Data") is provided for general information purposes only and the Data does not constitute opinions or advice. Toronto and Region Conservation Authority ("TRCA") does not warrant or guarantee the accuracy or completeness of any Data provided to any user of Data (the "Recipient"). TRCA accepts and has no responsibility or liability whatsoever for any loss, costs, expense, damages or liabilities suffered or incurred by anyone as a result of the Data, or incompleteness or inaccuracy thereof, or the Licence granted herein to the Recipient, or as a result of any decision or action made on the basis of the Data or the Licence. The Recipient hereby releases TRCA from, and waives as against TRCA, any claims and demands the Recipient may have arising from any such loss, costs, expense, damages or liabilities. In consideration for the Licence, the Recipient acknowledges and agrees that the use of the Data is at the sole risk of the Recipient and subject to the terms and conditions as set forth in the Licence, a copy of which may be accessed here: https://trca.ca/datalicense. By accessing the Data the Recipient agrees to the foregoing and to the terms of the Licence. +The information provided herein (the "Data") is provided for general information purposes only and the Data does not constitute opinions or advice. Toronto and Region Conservation Authority ("TRCA") does not warrant or guarantee the accuracy or completeness of any Data provided to any user of Data (the "Recipient"). TRCA accepts and has no responsibility or liability whatsoever for any loss, costs, expense, damages or liabilities suffered or incurred by anyone as a result of the Data, or incompleteness or inaccuracy thereof, or the Licence granted herein to the Recipient, or as a result of any decision or action made on the basis of the Data or the Licence. The Recipient hereby releases TRCA from, and waives as against TRCA, any claims and demands the Recipient may have arising from any such loss, costs, expense, damages or liabilities. In consideration for the Licence, the Recipient acknowledges and agrees that the use of the Data is at the sole risk of the Recipient and subject to the terms and conditions as set forth in the Licence, a copy of which may be accessed here: https://trca.ca/datalicense. By accessing the Data the Recipient agrees to the foregoing and to the terms of the Licence. \ No newline at end of file diff --git a/docs/trca-odl-1.0.html b/docs/trca-odl-1.0.html index 9764ede965..14155450bd 100644 --- a/docs/trca-odl-1.0.html +++ b/docs/trca-odl-1.0.html @@ -124,8 +124,7 @@
license_text
-

-Toronto and Region Conservation Authority (TRCA) Open Data Licence v1.0
+    
Toronto and Region Conservation Authority (TRCA) Open Data Licence v1.0
 
 Share:
 Using Information under this License:
@@ -184,8 +183,7 @@
 This is version 1.0 of the TRCA Open Data Licence.
 Disclaimer
 
-The information provided herein (the "Data") is provided for general information purposes only and the Data does not constitute opinions or advice. Toronto and Region Conservation Authority ("TRCA") does not warrant or guarantee the accuracy or completeness of any Data provided to any user of Data (the "Recipient"). TRCA accepts and has no responsibility or liability whatsoever for any loss, costs, expense, damages or liabilities suffered or incurred by anyone as a result of the Data, or incompleteness or inaccuracy thereof, or the Licence granted herein to the Recipient, or as a result of any decision or action made on the basis of the Data or the Licence. The Recipient hereby releases TRCA from, and waives as against TRCA, any claims and demands the Recipient may have arising from any such loss, costs, expense, damages or liabilities. In consideration for the Licence, the Recipient acknowledges and agrees that the use of the Data is at the sole risk of the Recipient and subject to the terms and conditions as set forth in the Licence, a copy of which may be accessed here: https://trca.ca/datalicense. By accessing the Data the Recipient agrees to the foregoing and to the terms of the Licence.
-
+The information provided herein (the "Data") is provided for general information purposes only and the Data does not constitute opinions or advice. Toronto and Region Conservation Authority ("TRCA") does not warrant or guarantee the accuracy or completeness of any Data provided to any user of Data (the "Recipient"). TRCA accepts and has no responsibility or liability whatsoever for any loss, costs, expense, damages or liabilities suffered or incurred by anyone as a result of the Data, or incompleteness or inaccuracy thereof, or the Licence granted herein to the Recipient, or as a result of any decision or action made on the basis of the Data or the Licence. The Recipient hereby releases TRCA from, and waives as against TRCA, any claims and demands the Recipient may have arising from any such loss, costs, expense, damages or liabilities. In consideration for the Licence, the Recipient acknowledges and agrees that the use of the Data is at the sole risk of the Recipient and subject to the terms and conditions as set forth in the Licence, a copy of which may be accessed here: https://trca.ca/datalicense. By accessing the Data the Recipient agrees to the foregoing and to the terms of the Licence.
@@ -197,7 +195,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/trca-odl-1.0.json b/docs/trca-odl-1.0.json index 31e8ef4fcb..e0b7d78ecc 100644 --- a/docs/trca-odl-1.0.json +++ b/docs/trca-odl-1.0.json @@ -1 +1,12 @@ -{"key": "trca-odl-1.0", "short_name": "TRCA Open Data Licence 1.0", "name": "Toronto Region Conservation Authority Open Data Licence 1.0", "category": "Free Restricted", "owner": "Toronto Region Conservation Authority", "homepage_url": "https://trca.ca/datalicense", "spdx_license_key": "LicenseRef-scancode-trca-odl-1.0", "ignorable_urls": ["https://trca.ca/datalicense"]} \ No newline at end of file +{ + "key": "trca-odl-1.0", + "short_name": "TRCA Open Data Licence 1.0", + "name": "Toronto Region Conservation Authority Open Data Licence 1.0", + "category": "Free Restricted", + "owner": "Toronto Region Conservation Authority", + "homepage_url": "https://trca.ca/datalicense", + "spdx_license_key": "LicenseRef-scancode-trca-odl-1.0", + "ignorable_urls": [ + "https://trca.ca/datalicense" + ] +} \ No newline at end of file diff --git a/docs/treeview-developer.LICENSE b/docs/treeview-developer.LICENSE index 441a8b2b7d..45a4ecd624 100644 --- a/docs/treeview-developer.LICENSE +++ b/docs/treeview-developer.LICENSE @@ -1,3 +1,22 @@ +--- +key: treeview-developer +short_name: TreeView Developer License +name: TreeView Developer License +category: Proprietary Free +owner: GubuSoft +homepage_url: http://www.treeview.net/tv/license_dev.asp +spdx_license_key: LicenseRef-scancode-treeview-developer +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 2006 Conor O'Mahony (gubusoft@gubusoft.com) +ignorable_holders: + - Conor O'Mahony +ignorable_urls: + - http://www.treeview.net/ +ignorable_emails: + - gubusoft@gubusoft.com +--- + TreeView License: Developer's License This License For Customer Use of GubuSoft TreeView Software ("LICENSE") is the agreement which governs use of the TreeView software by GubuSoft ("GUBUSOFT") downloadable herefrom, including computer software and associated documentation ("SOFTWARE"). By downloading, installing, copying, or otherwise using the SOFTWARE, you agree to be bound by the terms of this LICENSE. If you do not agree to the terms of this LICENSE, do not use the SOFTWARE. diff --git a/docs/treeview-developer.html b/docs/treeview-developer.html index 64247a32ce..fadb1c3297 100644 --- a/docs/treeview-developer.html +++ b/docs/treeview-developer.html @@ -235,7 +235,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/treeview-developer.json b/docs/treeview-developer.json index 6a8713b880..0243fc9209 100644 --- a/docs/treeview-developer.json +++ b/docs/treeview-developer.json @@ -1 +1,22 @@ -{"key": "treeview-developer", "short_name": "TreeView Developer License", "name": "TreeView Developer License", "category": "Proprietary Free", "owner": "GubuSoft", "homepage_url": "http://www.treeview.net/tv/license_dev.asp", "spdx_license_key": "LicenseRef-scancode-treeview-developer", "minimum_coverage": 60, "ignorable_copyrights": ["Copyright (c) 2006 Conor O'Mahony (gubusoft@gubusoft.com)"], "ignorable_holders": ["Conor O'Mahony"], "ignorable_urls": ["http://www.treeview.net/"], "ignorable_emails": ["gubusoft@gubusoft.com"]} \ No newline at end of file +{ + "key": "treeview-developer", + "short_name": "TreeView Developer License", + "name": "TreeView Developer License", + "category": "Proprietary Free", + "owner": "GubuSoft", + "homepage_url": "http://www.treeview.net/tv/license_dev.asp", + "spdx_license_key": "LicenseRef-scancode-treeview-developer", + "minimum_coverage": 60, + "ignorable_copyrights": [ + "Copyright (c) 2006 Conor O'Mahony (gubusoft@gubusoft.com)" + ], + "ignorable_holders": [ + "Conor O'Mahony" + ], + "ignorable_urls": [ + "http://www.treeview.net/" + ], + "ignorable_emails": [ + "gubusoft@gubusoft.com" + ] +} \ No newline at end of file diff --git a/docs/treeview-distributor.LICENSE b/docs/treeview-distributor.LICENSE index 849d0dee4b..8a83cd4b6a 100644 --- a/docs/treeview-distributor.LICENSE +++ b/docs/treeview-distributor.LICENSE @@ -1,3 +1,22 @@ +--- +key: treeview-distributor +short_name: TreeView Distributor License +name: TreeView Distributor License +category: Proprietary Free +owner: GubuSoft +homepage_url: http://www.treeview.net/tv/license_dist.asp +spdx_license_key: LicenseRef-scancode-treeview-distributor +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 2006 Conor O'Mahony (gubusoft@gubusoft.com) +ignorable_holders: + - Conor O'Mahony +ignorable_urls: + - http://www.treeview.net/ +ignorable_emails: + - gubusoft@gubusoft.com +--- + TreeView License: Distributor's License This License For Customer Use of GubuSoft TreeView Software ("LICENSE") is the agreement which governs use of the TreeView software by GubuSoft ("GUBUSOFT") downloadable herefrom, including computer software and associated documentation ("SOFTWARE"). By downloading, installing, copying, or otherwise using the SOFTWARE, you agree to be bound by the terms of this LICENSE. If you do not agree to the terms of this LICENSE, do not use the SOFTWARE. diff --git a/docs/treeview-distributor.html b/docs/treeview-distributor.html index edaed89a0a..019288d453 100644 --- a/docs/treeview-distributor.html +++ b/docs/treeview-distributor.html @@ -235,7 +235,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/treeview-distributor.json b/docs/treeview-distributor.json index 3a1ce7b25c..6836c61e42 100644 --- a/docs/treeview-distributor.json +++ b/docs/treeview-distributor.json @@ -1 +1,22 @@ -{"key": "treeview-distributor", "short_name": "TreeView Distributor License", "name": "TreeView Distributor License", "category": "Proprietary Free", "owner": "GubuSoft", "homepage_url": "http://www.treeview.net/tv/license_dist.asp", "spdx_license_key": "LicenseRef-scancode-treeview-distributor", "minimum_coverage": 60, "ignorable_copyrights": ["Copyright (c) 2006 Conor O'Mahony (gubusoft@gubusoft.com)"], "ignorable_holders": ["Conor O'Mahony"], "ignorable_urls": ["http://www.treeview.net/"], "ignorable_emails": ["gubusoft@gubusoft.com"]} \ No newline at end of file +{ + "key": "treeview-distributor", + "short_name": "TreeView Distributor License", + "name": "TreeView Distributor License", + "category": "Proprietary Free", + "owner": "GubuSoft", + "homepage_url": "http://www.treeview.net/tv/license_dist.asp", + "spdx_license_key": "LicenseRef-scancode-treeview-distributor", + "minimum_coverage": 60, + "ignorable_copyrights": [ + "Copyright (c) 2006 Conor O'Mahony (gubusoft@gubusoft.com)" + ], + "ignorable_holders": [ + "Conor O'Mahony" + ], + "ignorable_urls": [ + "http://www.treeview.net/" + ], + "ignorable_emails": [ + "gubusoft@gubusoft.com" + ] +} \ No newline at end of file diff --git a/docs/triptracker.LICENSE b/docs/triptracker.LICENSE index d8e6aa6720..7ff49480bb 100644 --- a/docs/triptracker.LICENSE +++ b/docs/triptracker.LICENSE @@ -1,3 +1,15 @@ +--- +key: triptracker +short_name: TripTracker License +name: TripTracker Slideshow License +category: Proprietary Free +owner: Klika +homepage_url: http://slideshow.triptracker.net/ +spdx_license_key: LicenseRef-scancode-triptracker +ignorable_urls: + - http://slideshow.triptracker.net/ +--- + This code is the property of Klika d.o.o. The code may not be included in, invoked from, or otherwise used in any software, service, device, or process diff --git a/docs/triptracker.html b/docs/triptracker.html index 23106eef67..2d2a964d7a 100644 --- a/docs/triptracker.html +++ b/docs/triptracker.html @@ -156,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/triptracker.json b/docs/triptracker.json index 9509db164b..aea7447b58 100644 --- a/docs/triptracker.json +++ b/docs/triptracker.json @@ -1 +1,12 @@ -{"key": "triptracker", "short_name": "TripTracker License", "name": "TripTracker Slideshow License", "category": "Proprietary Free", "owner": "Klika", "homepage_url": "http://slideshow.triptracker.net/", "spdx_license_key": "LicenseRef-scancode-triptracker", "ignorable_urls": ["http://slideshow.triptracker.net/"]} \ No newline at end of file +{ + "key": "triptracker", + "short_name": "TripTracker License", + "name": "TripTracker Slideshow License", + "category": "Proprietary Free", + "owner": "Klika", + "homepage_url": "http://slideshow.triptracker.net/", + "spdx_license_key": "LicenseRef-scancode-triptracker", + "ignorable_urls": [ + "http://slideshow.triptracker.net/" + ] +} \ No newline at end of file diff --git a/docs/trolltech-gpl-exception-1.0.LICENSE b/docs/trolltech-gpl-exception-1.0.LICENSE index 690bb7586a..6389eeaa28 100644 --- a/docs/trolltech-gpl-exception-1.0.LICENSE +++ b/docs/trolltech-gpl-exception-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: trolltech-gpl-exception-1.0 +short_name: Trolltech GPL Exception 1.0 +name: Trolltech GPL Exception version v1.0 +category: Copyleft +owner: Trolltech +homepage_url: http://www.trolltech.com/products/qt/gplexception/ +notes: Trolltech is now The Qt Company +is_exception: yes +spdx_license_key: LicenseRef-scancode-trolltech-gpl-exception-1.0 +--- + Trolltech GPL Exception version 1.0 Additional rights granted beyond the GPL (the "Exception"). @@ -76,4 +88,4 @@ of the Licensed Software: You may link applications with binary pre-installed versions of the Licensed Software, provided that such applications have been developed and are deployed in accordance in accordance with the terms and conditions of the Qt Commercial License -Agreement. +Agreement. \ No newline at end of file diff --git a/docs/trolltech-gpl-exception-1.0.html b/docs/trolltech-gpl-exception-1.0.html index 2fc0dfab18..53d5ea9ed6 100644 --- a/docs/trolltech-gpl-exception-1.0.html +++ b/docs/trolltech-gpl-exception-1.0.html @@ -207,8 +207,7 @@ versions of the Licensed Software, provided that such applications have been developed and are deployed in accordance in accordance with the terms and conditions of the Qt Commercial License -Agreement. - +Agreement.
@@ -220,7 +219,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/trolltech-gpl-exception-1.0.json b/docs/trolltech-gpl-exception-1.0.json index 9c884c964e..b4fbd61653 100644 --- a/docs/trolltech-gpl-exception-1.0.json +++ b/docs/trolltech-gpl-exception-1.0.json @@ -1 +1,11 @@ -{"key": "trolltech-gpl-exception-1.0", "short_name": "Trolltech GPL Exception 1.0", "name": "Trolltech GPL Exception version v1.0", "category": "Copyleft", "owner": "Trolltech", "homepage_url": "http://www.trolltech.com/products/qt/gplexception/", "notes": "Trolltech is now The Qt Company", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.0"} \ No newline at end of file +{ + "key": "trolltech-gpl-exception-1.0", + "short_name": "Trolltech GPL Exception 1.0", + "name": "Trolltech GPL Exception version v1.0", + "category": "Copyleft", + "owner": "Trolltech", + "homepage_url": "http://www.trolltech.com/products/qt/gplexception/", + "notes": "Trolltech is now The Qt Company", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.0" +} \ No newline at end of file diff --git a/docs/trolltech-gpl-exception-1.1.LICENSE b/docs/trolltech-gpl-exception-1.1.LICENSE index b74e6afc19..210b33a20e 100644 --- a/docs/trolltech-gpl-exception-1.1.LICENSE +++ b/docs/trolltech-gpl-exception-1.1.LICENSE @@ -1,3 +1,15 @@ +--- +key: trolltech-gpl-exception-1.1 +short_name: Trolltech GPL Exception 1.1 +name: Trolltech GPL Exception version v1.1 +category: Copyleft +owner: Trolltech +homepage_url: https://doc.qt.io/archives/4.3/license-gpl-exceptions.html +notes: Trolltech is now The Qt Company +is_exception: yes +spdx_license_key: LicenseRef-scancode-trolltech-gpl-exception-1.1 +--- + Trolltech GPL Exception Version 1.1 Additional rights granted beyond the GPL (the "Exception"). diff --git a/docs/trolltech-gpl-exception-1.1.html b/docs/trolltech-gpl-exception-1.1.html index ce7bbb2594..0b54cf6584 100644 --- a/docs/trolltech-gpl-exception-1.1.html +++ b/docs/trolltech-gpl-exception-1.1.html @@ -198,7 +198,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/trolltech-gpl-exception-1.1.json b/docs/trolltech-gpl-exception-1.1.json index 4746f6d2d8..8a68edc8af 100644 --- a/docs/trolltech-gpl-exception-1.1.json +++ b/docs/trolltech-gpl-exception-1.1.json @@ -1 +1,11 @@ -{"key": "trolltech-gpl-exception-1.1", "short_name": "Trolltech GPL Exception 1.1", "name": "Trolltech GPL Exception version v1.1", "category": "Copyleft", "owner": "Trolltech", "homepage_url": "https://doc.qt.io/archives/4.3/license-gpl-exceptions.html", "notes": "Trolltech is now The Qt Company", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.1"} \ No newline at end of file +{ + "key": "trolltech-gpl-exception-1.1", + "short_name": "Trolltech GPL Exception 1.1", + "name": "Trolltech GPL Exception version v1.1", + "category": "Copyleft", + "owner": "Trolltech", + "homepage_url": "https://doc.qt.io/archives/4.3/license-gpl-exceptions.html", + "notes": "Trolltech is now The Qt Company", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.1" +} \ No newline at end of file diff --git a/docs/trolltech-gpl-exception-1.2.LICENSE b/docs/trolltech-gpl-exception-1.2.LICENSE index db5af95e36..3c6c8031c0 100644 --- a/docs/trolltech-gpl-exception-1.2.LICENSE +++ b/docs/trolltech-gpl-exception-1.2.LICENSE @@ -1,3 +1,13 @@ +--- +key: trolltech-gpl-exception-1.2 +short_name: Trolltech GPL Exception 1.2 +name: Trolltech GPL Exception version v1.2 +category: Copyleft +owner: Trolltech +notes: Trolltech is now The Qt Company +is_exception: yes +spdx_license_key: LicenseRef-scancode-trolltech-gpl-exception-1.2 +--- Trolltech GPL Exception version 1.2 =================================== @@ -88,6 +98,4 @@ contracts, non-disclosure agreements, and employee contracts. the Licensed Software: You may link applications with binary pre-installed versions of the Licensed Software, provided that such applications have been developed and are deployed in ac cordance with the terms and conditions of the -Qt Commercial License Agreement. - - +Qt Commercial License Agreement. \ No newline at end of file diff --git a/docs/trolltech-gpl-exception-1.2.html b/docs/trolltech-gpl-exception-1.2.html index f96fd15add..6443bc8d95 100644 --- a/docs/trolltech-gpl-exception-1.2.html +++ b/docs/trolltech-gpl-exception-1.2.html @@ -122,8 +122,7 @@
license_text
-

-Trolltech GPL Exception version 1.2
+    
Trolltech GPL Exception version 1.2
 ===================================
 
 Additional rights granted beyond the GPL (the "Exception").
@@ -212,10 +211,7 @@
 the Licensed Software: You may link applications with binary pre-installed
 versions of the Licensed Software, provided that such applications have been
 developed and are deployed in ac cordance with the terms and conditions of the
-Qt Commercial License Agreement.
-
-
-
+Qt Commercial License Agreement.
@@ -227,7 +223,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/trolltech-gpl-exception-1.2.json b/docs/trolltech-gpl-exception-1.2.json index a76adb5d3b..953a68c431 100644 --- a/docs/trolltech-gpl-exception-1.2.json +++ b/docs/trolltech-gpl-exception-1.2.json @@ -1 +1,10 @@ -{"key": "trolltech-gpl-exception-1.2", "short_name": "Trolltech GPL Exception 1.2", "name": "Trolltech GPL Exception version v1.2", "category": "Copyleft", "owner": "Trolltech", "notes": "Trolltech is now The Qt Company", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.2"} \ No newline at end of file +{ + "key": "trolltech-gpl-exception-1.2", + "short_name": "Trolltech GPL Exception 1.2", + "name": "Trolltech GPL Exception version v1.2", + "category": "Copyleft", + "owner": "Trolltech", + "notes": "Trolltech is now The Qt Company", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.2" +} \ No newline at end of file diff --git a/docs/truecrypt-3.1.LICENSE b/docs/truecrypt-3.1.LICENSE index a9a540ef3d..4b0b5e9de2 100644 --- a/docs/truecrypt-3.1.LICENSE +++ b/docs/truecrypt-3.1.LICENSE @@ -1,3 +1,26 @@ +--- +key: truecrypt-3.1 +short_name: TrueCrypt License 3.1 +name: TrueCrypt License 3.1 +category: Copyleft Limited +owner: TrueCrypt +notes: this license embeds a few permissive licenses that are included in its text. +spdx_license_key: LicenseRef-scancode-truecrypt-3.1 +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 1998-2000 Paul Le Roux + - Copyright (c) 1998-2008, Brian Gladman, Worcester, UK. + - Copyright (c) 2002-2004 Mark Adler +ignorable_holders: + - Brian Gladman, Worcester, UK. + - Mark Adler + - Paul Le Roux +ignorable_authors: + - Paul Le Roux +ignorable_emails: + - pleroux@swprofessionals.com +--- + TrueCrypt License Version 3.1 Software distributed under this license is distributed on an "AS @@ -477,5 +500,4 @@ redistribute it freely, subject to the following restrictions: 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. - \ No newline at end of file + distribution. \ No newline at end of file diff --git a/docs/truecrypt-3.1.html b/docs/truecrypt-3.1.html index 55cac3b5f5..16088210b1 100644 --- a/docs/truecrypt-3.1.html +++ b/docs/truecrypt-3.1.html @@ -637,8 +637,7 @@ 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. - + distribution.
@@ -650,7 +649,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/truecrypt-3.1.json b/docs/truecrypt-3.1.json index a13a34f9cb..435d1319e9 100644 --- a/docs/truecrypt-3.1.json +++ b/docs/truecrypt-3.1.json @@ -1 +1,26 @@ -{"key": "truecrypt-3.1", "short_name": "TrueCrypt License 3.1", "name": "TrueCrypt License 3.1", "category": "Copyleft Limited", "owner": "TrueCrypt", "notes": "this license embeds a few permissive licenses that are included in its text.", "spdx_license_key": "LicenseRef-scancode-truecrypt-3.1", "minimum_coverage": 60, "ignorable_copyrights": ["Copyright (c) 1998-2000 Paul Le Roux", "Copyright (c) 1998-2008, Brian Gladman, Worcester, UK.", "Copyright (c) 2002-2004 Mark Adler"], "ignorable_holders": ["Brian Gladman, Worcester, UK.", "Mark Adler", "Paul Le Roux"], "ignorable_authors": ["Paul Le Roux "], "ignorable_emails": ["pleroux@swprofessionals.com"]} \ No newline at end of file +{ + "key": "truecrypt-3.1", + "short_name": "TrueCrypt License 3.1", + "name": "TrueCrypt License 3.1", + "category": "Copyleft Limited", + "owner": "TrueCrypt", + "notes": "this license embeds a few permissive licenses that are included in its text.", + "spdx_license_key": "LicenseRef-scancode-truecrypt-3.1", + "minimum_coverage": 60, + "ignorable_copyrights": [ + "Copyright (c) 1998-2000 Paul Le Roux", + "Copyright (c) 1998-2008, Brian Gladman, Worcester, UK.", + "Copyright (c) 2002-2004 Mark Adler" + ], + "ignorable_holders": [ + "Brian Gladman, Worcester, UK.", + "Mark Adler", + "Paul Le Roux" + ], + "ignorable_authors": [ + "Paul Le Roux " + ], + "ignorable_emails": [ + "pleroux@swprofessionals.com" + ] +} \ No newline at end of file diff --git a/docs/tsl-2018.LICENSE b/docs/tsl-2018.LICENSE index 0469723bd4..70ff445ddb 100644 --- a/docs/tsl-2018.LICENSE +++ b/docs/tsl-2018.LICENSE @@ -1,3 +1,19 @@ +--- +key: tsl-2018 +short_name: TSL Agreement +name: Timescale License Agreement +category: Source-available +owner: Timescale +homepage_url: https://github.com/timescale/timescaledb/blob/master/tsl/LICENSE-TIMESCALE +spdx_license_key: LicenseRef-scancode-tsl-2018 +ignorable_urls: + - https://github.com/timescale + - https://opensource.org/licenses/Apache-2.0 + - https://www.timescale.com/pricing +ignorable_emails: + - licensing@timescale.com +--- + TIMESCALE LICENSE AGREEMENT Posted Date: December 19, 2018 diff --git a/docs/tsl-2018.html b/docs/tsl-2018.html index 64050bf420..e9cee4a7ff 100644 --- a/docs/tsl-2018.html +++ b/docs/tsl-2018.html @@ -566,7 +566,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tsl-2018.json b/docs/tsl-2018.json index 4da0a3a07b..23a667ce78 100644 --- a/docs/tsl-2018.json +++ b/docs/tsl-2018.json @@ -1 +1,17 @@ -{"key": "tsl-2018", "short_name": "TSL Agreement", "name": "Timescale License Agreement", "category": "Source-available", "owner": "Timescale", "homepage_url": "https://github.com/timescale/timescaledb/blob/master/tsl/LICENSE-TIMESCALE", "spdx_license_key": "LicenseRef-scancode-tsl-2018", "ignorable_urls": ["https://github.com/timescale", "https://opensource.org/licenses/Apache-2.0", "https://www.timescale.com/pricing"], "ignorable_emails": ["licensing@timescale.com"]} \ No newline at end of file +{ + "key": "tsl-2018", + "short_name": "TSL Agreement", + "name": "Timescale License Agreement", + "category": "Source-available", + "owner": "Timescale", + "homepage_url": "https://github.com/timescale/timescaledb/blob/master/tsl/LICENSE-TIMESCALE", + "spdx_license_key": "LicenseRef-scancode-tsl-2018", + "ignorable_urls": [ + "https://github.com/timescale", + "https://opensource.org/licenses/Apache-2.0", + "https://www.timescale.com/pricing" + ], + "ignorable_emails": [ + "licensing@timescale.com" + ] +} \ No newline at end of file diff --git a/docs/tsl-2020.LICENSE b/docs/tsl-2020.LICENSE index 58eaf396da..9bb013c73b 100644 --- a/docs/tsl-2020.LICENSE +++ b/docs/tsl-2020.LICENSE @@ -1,3 +1,16 @@ +--- +key: tsl-2020 +short_name: TSL Agreement 2020 +name: Timescale License Agreement 2020 +category: Source-available +owner: Timescale +homepage_url: https://github.com/timescale/timescaledb/blob/master/tsl/LICENSE-TIMESCALE +spdx_license_key: LicenseRef-scancode-tsl-2020 +ignorable_urls: + - https://github.com/timescale + - https://opensource.org/licenses/Apache-2.0 +--- + TIMESCALE LICENSE AGREEMENT Posted Date: September 24, 2020 diff --git a/docs/tsl-2020.html b/docs/tsl-2020.html index 83eaa2fc74..16089cd9cc 100644 --- a/docs/tsl-2020.html +++ b/docs/tsl-2020.html @@ -445,7 +445,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tsl-2020.json b/docs/tsl-2020.json index 227359dc49..5f8ef8e0b9 100644 --- a/docs/tsl-2020.json +++ b/docs/tsl-2020.json @@ -1 +1,13 @@ -{"key": "tsl-2020", "short_name": "TSL Agreement 2020", "name": "Timescale License Agreement 2020", "category": "Source-available", "owner": "Timescale", "homepage_url": "https://github.com/timescale/timescaledb/blob/master/tsl/LICENSE-TIMESCALE", "spdx_license_key": "LicenseRef-scancode-tsl-2020", "ignorable_urls": ["https://github.com/timescale", "https://opensource.org/licenses/Apache-2.0"]} \ No newline at end of file +{ + "key": "tsl-2020", + "short_name": "TSL Agreement 2020", + "name": "Timescale License Agreement 2020", + "category": "Source-available", + "owner": "Timescale", + "homepage_url": "https://github.com/timescale/timescaledb/blob/master/tsl/LICENSE-TIMESCALE", + "spdx_license_key": "LicenseRef-scancode-tsl-2020", + "ignorable_urls": [ + "https://github.com/timescale", + "https://opensource.org/licenses/Apache-2.0" + ] +} \ No newline at end of file diff --git a/docs/tso-license.LICENSE b/docs/tso-license.LICENSE index 0b31f93226..e9bb2f8df5 100644 --- a/docs/tso-license.LICENSE +++ b/docs/tso-license.LICENSE @@ -1,3 +1,14 @@ +--- +key: tso-license +short_name: Theodore Ts'o license +name: Theodore Ts'o license +category: Permissive +owner: Theodore Ts'o +notes: this license is used in e2fsprogs and is rather unique. The disclaimer is mostly based + on a truncated BSD license disclaimer +spdx_license_key: LicenseRef-scancode-tso-license +--- + Permission to use this file is granted for any purposes, as long as this copyright statement is kept intact and the author is not held liable for any damages resulting from the use of this program. @@ -10,5 +21,4 @@ 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. - +OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE. \ No newline at end of file diff --git a/docs/tso-license.html b/docs/tso-license.html index cdc26c7c9c..2ea3c0bdfe 100644 --- a/docs/tso-license.html +++ b/docs/tso-license.html @@ -127,9 +127,7 @@ 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. - - +OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE.
@@ -141,7 +139,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tso-license.json b/docs/tso-license.json index c7d635603f..631a6a022f 100644 --- a/docs/tso-license.json +++ b/docs/tso-license.json @@ -1 +1,9 @@ -{"key": "tso-license", "short_name": "Theodore Ts'o license", "name": "Theodore Ts'o license", "category": "Permissive", "owner": "Theodore Ts'o", "notes": "this license is used in e2fsprogs and is rather unique. The disclaimer is mostly based on a truncated BSD license disclaimer", "spdx_license_key": "LicenseRef-scancode-tso-license"} \ No newline at end of file +{ + "key": "tso-license", + "short_name": "Theodore Ts'o license", + "name": "Theodore Ts'o license", + "category": "Permissive", + "owner": "Theodore Ts'o", + "notes": "this license is used in e2fsprogs and is rather unique. The disclaimer is mostly based on a truncated BSD license disclaimer", + "spdx_license_key": "LicenseRef-scancode-tso-license" +} \ No newline at end of file diff --git a/docs/ttcl.LICENSE b/docs/ttcl.LICENSE index 222a66d690..f0c7d9d218 100644 --- a/docs/ttcl.LICENSE +++ b/docs/ttcl.LICENSE @@ -1,3 +1,18 @@ +--- +key: ttcl +short_name: Talis Community License +name: The Talis Community License +category: Permissive +owner: Open Knowledge Foundation +homepage_url: https://opendefinition.org/licenses/tcl/ +spdx_license_key: LicenseRef-scancode-ttcl +text_urls: + - https://web.archive.org/web/20130923083859/http://tdnarchive.capita-libraries.co.uk/tcl +faq_url: https://opendefinition.org/licenses/tcl/ +ignorable_urls: + - http://tdnarchive.capita-libraries.co.uk/tcl +--- + The Talis Community Licence is intended to guarantee your freedom to use, share and modify data and to preserve the availability and accessibility of such data for the wider community. Definitions diff --git a/docs/ttcl.html b/docs/ttcl.html index b12ad6af1b..3843d0fb28 100644 --- a/docs/ttcl.html +++ b/docs/ttcl.html @@ -208,7 +208,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ttcl.json b/docs/ttcl.json index 7027f2f30f..1c14e3843d 100644 --- a/docs/ttcl.json +++ b/docs/ttcl.json @@ -1 +1,16 @@ -{"key": "ttcl", "short_name": "Talis Community License", "name": "The Talis Community License", "category": "Permissive", "owner": "Open Knowledge Foundation", "homepage_url": "https://opendefinition.org/licenses/tcl/", "spdx_license_key": "LicenseRef-scancode-ttcl", "text_urls": ["https://web.archive.org/web/20130923083859/http://tdnarchive.capita-libraries.co.uk/tcl"], "faq_url": "https://opendefinition.org/licenses/tcl/", "ignorable_urls": ["http://tdnarchive.capita-libraries.co.uk/tcl"]} \ No newline at end of file +{ + "key": "ttcl", + "short_name": "Talis Community License", + "name": "The Talis Community License", + "category": "Permissive", + "owner": "Open Knowledge Foundation", + "homepage_url": "https://opendefinition.org/licenses/tcl/", + "spdx_license_key": "LicenseRef-scancode-ttcl", + "text_urls": [ + "https://web.archive.org/web/20130923083859/http://tdnarchive.capita-libraries.co.uk/tcl" + ], + "faq_url": "https://opendefinition.org/licenses/tcl/", + "ignorable_urls": [ + "http://tdnarchive.capita-libraries.co.uk/tcl" + ] +} \ No newline at end of file diff --git a/docs/ttf2pt1.LICENSE b/docs/ttf2pt1.LICENSE index a94577766d..9b5dd01fa9 100644 --- a/docs/ttf2pt1.LICENSE +++ b/docs/ttf2pt1.LICENSE @@ -1,3 +1,14 @@ +--- +key: ttf2pt1 +is_deprecated: yes +short_name: TTF2PT1 Project License +name: TTF2PT1 Project License +category: Permissive +owner: Unspecified +notes: composite +minimum_coverage: 90 +--- + TTF2PT1 Project License The following copyright notice applies to all the files provided in this distribution unless explicitly noted otherwise (the most notable exception being t1asm.c). diff --git a/docs/ttf2pt1.html b/docs/ttf2pt1.html index 3b6b2da64e..1ce44b6b9d 100644 --- a/docs/ttf2pt1.html +++ b/docs/ttf2pt1.html @@ -218,7 +218,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ttf2pt1.json b/docs/ttf2pt1.json index a9b3deadc9..4e2c51465d 100644 --- a/docs/ttf2pt1.json +++ b/docs/ttf2pt1.json @@ -1 +1,10 @@ -{"key": "ttf2pt1", "is_deprecated": true, "short_name": "TTF2PT1 Project License", "name": "TTF2PT1 Project License", "category": "Permissive", "owner": "Unspecified", "notes": "composite", "minimum_coverage": 90} \ No newline at end of file +{ + "key": "ttf2pt1", + "is_deprecated": true, + "short_name": "TTF2PT1 Project License", + "name": "TTF2PT1 Project License", + "category": "Permissive", + "owner": "Unspecified", + "notes": "composite", + "minimum_coverage": 90 +} \ No newline at end of file diff --git a/docs/ttyp0.LICENSE b/docs/ttyp0.LICENSE index 3df2e4c4e9..cccc986363 100644 --- a/docs/ttyp0.LICENSE +++ b/docs/ttyp0.LICENSE @@ -1,3 +1,16 @@ +--- +key: ttyp0 +short_name: TTYP0 License +name: TTYP0 License +category: Permissive +owner: Uwe Waldmann +homepage_url: https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/ +spdx_license_key: LicenseRef-scancode-ttyp0 +other_urls: + - https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/uw-ttyp0-1.3.tar.gz +minimum_coverage: 70 +--- + THE TTYP0 LICENSE Permission is hereby granted, free of charge, to any person obtaining @@ -26,4 +39,4 @@ 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. +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/docs/ttyp0.html b/docs/ttyp0.html index 7e5f6607d6..e60e99462b 100644 --- a/docs/ttyp0.html +++ b/docs/ttyp0.html @@ -159,8 +159,7 @@ 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. - +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -172,7 +171,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ttyp0.json b/docs/ttyp0.json index 5c539e4bc6..23ba1d4ef2 100644 --- a/docs/ttyp0.json +++ b/docs/ttyp0.json @@ -1 +1,13 @@ -{"key": "ttyp0", "short_name": "TTYP0 License", "name": "TTYP0 License", "category": "Permissive", "owner": "Uwe Waldmann", "homepage_url": "https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/", "spdx_license_key": "LicenseRef-scancode-ttyp0", "other_urls": ["https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/uw-ttyp0-1.3.tar.gz"], "minimum_coverage": 70} \ No newline at end of file +{ + "key": "ttyp0", + "short_name": "TTYP0 License", + "name": "TTYP0 License", + "category": "Permissive", + "owner": "Uwe Waldmann", + "homepage_url": "https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/", + "spdx_license_key": "LicenseRef-scancode-ttyp0", + "other_urls": [ + "https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/uw-ttyp0-1.3.tar.gz" + ], + "minimum_coverage": 70 +} \ No newline at end of file diff --git a/docs/tu-berlin-2.0.LICENSE b/docs/tu-berlin-2.0.LICENSE index 801a902ad3..18c3998c84 100644 --- a/docs/tu-berlin-2.0.LICENSE +++ b/docs/tu-berlin-2.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: tu-berlin-2.0 +short_name: TU Berlin License 2.0 +name: Technische Universitaet Berlin License 2.0 +category: Permissive +owner: Technische Universitaet Berlin +homepage_url: https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt +spdx_license_key: TU-Berlin-2.0 +other_urls: + - https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt +--- + Any use of this software is permitted provided that this notice is not removed and that neither the authors nor the Technische Universitaet Berlin are deemed to have made any representations as to the suitability of this diff --git a/docs/tu-berlin-2.0.html b/docs/tu-berlin-2.0.html index 9f7eaf950a..35e5567e19 100644 --- a/docs/tu-berlin-2.0.html +++ b/docs/tu-berlin-2.0.html @@ -158,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tu-berlin-2.0.json b/docs/tu-berlin-2.0.json index 7065122ff5..e28ea9d66d 100644 --- a/docs/tu-berlin-2.0.json +++ b/docs/tu-berlin-2.0.json @@ -1 +1,12 @@ -{"key": "tu-berlin-2.0", "short_name": "TU Berlin License 2.0", "name": "Technische Universitaet Berlin License 2.0", "category": "Permissive", "owner": "Technische Universitaet Berlin", "homepage_url": "https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt", "spdx_license_key": "TU-Berlin-2.0", "other_urls": ["https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt"]} \ No newline at end of file +{ + "key": "tu-berlin-2.0", + "short_name": "TU Berlin License 2.0", + "name": "Technische Universitaet Berlin License 2.0", + "category": "Permissive", + "owner": "Technische Universitaet Berlin", + "homepage_url": "https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt", + "spdx_license_key": "TU-Berlin-2.0", + "other_urls": [ + "https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt" + ] +} \ No newline at end of file diff --git a/docs/tu-berlin.LICENSE b/docs/tu-berlin.LICENSE index a2b6e46309..8e9f1d1eb4 100644 --- a/docs/tu-berlin.LICENSE +++ b/docs/tu-berlin.LICENSE @@ -1,3 +1,16 @@ +--- +key: tu-berlin +short_name: TU Berlin License 1.0 +name: Technische Universitaet Berlin Attribution License 1.0 +category: Permissive +owner: Technische Universitaet Berlin +homepage_url: https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT +spdx_license_key: TU-Berlin-1.0 +other_urls: + - ftp://svr-ftp.eng.cam.ac.uk/pub/comp.speech/coding/gsm-1.0.6.tar.gz + - https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT +--- + Any use of this software is permitted provided that this notice is not removed and that neither the authors nor the Technische Universitaet Berlin are deemed to have made any representations as to the suitability of this @@ -6,4 +19,4 @@ this software. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE. As a matter of courtesy, the authors request to be informed about uses this software has found, about bugs in this software, and about any -improvements that may be of general interest. +improvements that may be of general interest. \ No newline at end of file diff --git a/docs/tu-berlin.html b/docs/tu-berlin.html index 2cd37a4e07..ffbf0babfe 100644 --- a/docs/tu-berlin.html +++ b/docs/tu-berlin.html @@ -132,8 +132,7 @@ As a matter of courtesy, the authors request to be informed about uses this software has found, about bugs in this software, and about any -improvements that may be of general interest. - +improvements that may be of general interest.
@@ -145,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tu-berlin.json b/docs/tu-berlin.json index f8759e0c1f..a4d275c801 100644 --- a/docs/tu-berlin.json +++ b/docs/tu-berlin.json @@ -1 +1,13 @@ -{"key": "tu-berlin", "short_name": "TU Berlin License 1.0", "name": "Technische Universitaet Berlin Attribution License 1.0", "category": "Permissive", "owner": "Technische Universitaet Berlin", "homepage_url": "https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT", "spdx_license_key": "TU-Berlin-1.0", "other_urls": ["ftp://svr-ftp.eng.cam.ac.uk/pub/comp.speech/coding/gsm-1.0.6.tar.gz", "https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT"]} \ No newline at end of file +{ + "key": "tu-berlin", + "short_name": "TU Berlin License 1.0", + "name": "Technische Universitaet Berlin Attribution License 1.0", + "category": "Permissive", + "owner": "Technische Universitaet Berlin", + "homepage_url": "https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT", + "spdx_license_key": "TU-Berlin-1.0", + "other_urls": [ + "ftp://svr-ftp.eng.cam.ac.uk/pub/comp.speech/coding/gsm-1.0.6.tar.gz", + "https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT" + ] +} \ No newline at end of file diff --git a/docs/tumbolia.LICENSE b/docs/tumbolia.LICENSE index 08b0395360..979afa61a1 100644 --- a/docs/tumbolia.LICENSE +++ b/docs/tumbolia.LICENSE @@ -1,3 +1,22 @@ +--- +key: tumbolia +short_name: Tumbolia Public License +name: Tumbolia Public License +category: Permissive +owner: Paul Davis +spdx_license_key: LicenseRef-scancode-tumbolia +other_urls: + - https://fedoraproject.org/wiki/Licensing/Tumbolia + - https://github.com/c-w/ghp-import/blob/aef95b550990374fa5e6598752813bf59bfab9cc/LICENSE +minimum_coverage: 95 +ignorable_copyrights: + - Copyright 2013, Paul Davis +ignorable_holders: + - Paul Davis +ignorable_emails: + - paul.joseph.davis@gmail.com +--- + Tumbolia Public License Copyright 2013, Paul Davis diff --git a/docs/tumbolia.html b/docs/tumbolia.html index be47aaf969..afb9afc13f 100644 --- a/docs/tumbolia.html +++ b/docs/tumbolia.html @@ -173,7 +173,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/tumbolia.json b/docs/tumbolia.json index 7c88ce8d94..16c3bf3c31 100644 --- a/docs/tumbolia.json +++ b/docs/tumbolia.json @@ -1 +1,22 @@ -{"key": "tumbolia", "short_name": "Tumbolia Public License", "name": "Tumbolia Public License", "category": "Permissive", "owner": "Paul Davis", "spdx_license_key": "LicenseRef-scancode-tumbolia", "other_urls": ["https://fedoraproject.org/wiki/Licensing/Tumbolia", "https://github.com/c-w/ghp-import/blob/aef95b550990374fa5e6598752813bf59bfab9cc/LICENSE"], "minimum_coverage": 95, "ignorable_copyrights": ["Copyright 2013, Paul Davis "], "ignorable_holders": ["Paul Davis"], "ignorable_emails": ["paul.joseph.davis@gmail.com"]} \ No newline at end of file +{ + "key": "tumbolia", + "short_name": "Tumbolia Public License", + "name": "Tumbolia Public License", + "category": "Permissive", + "owner": "Paul Davis", + "spdx_license_key": "LicenseRef-scancode-tumbolia", + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/Tumbolia", + "https://github.com/c-w/ghp-import/blob/aef95b550990374fa5e6598752813bf59bfab9cc/LICENSE" + ], + "minimum_coverage": 95, + "ignorable_copyrights": [ + "Copyright 2013, Paul Davis " + ], + "ignorable_holders": [ + "Paul Davis" + ], + "ignorable_emails": [ + "paul.joseph.davis@gmail.com" + ] +} \ No newline at end of file diff --git a/docs/twisted-snmp.LICENSE b/docs/twisted-snmp.LICENSE index 3bb15d2b92..9241393bed 100644 --- a/docs/twisted-snmp.LICENSE +++ b/docs/twisted-snmp.LICENSE @@ -1,3 +1,14 @@ +--- +key: twisted-snmp +short_name: TwistedSNMP License +name: TwistedSNMP License +category: Permissive +owner: TwistedSNMP +spdx_license_key: LicenseRef-scancode-twisted-snmp +other_urls: + - http://comments.gmane.org/gmane.linux.debian.devel.legal/25899 +--- + THIS SOFTWARE IS NOT FAULT TOLERANT AND SHOULD NOT BE USED IN ANY SITUATION ENDANGERING HUMAN LIFE OR PROPERTY. diff --git a/docs/twisted-snmp.html b/docs/twisted-snmp.html index 47af9f6a6d..48e2620759 100644 --- a/docs/twisted-snmp.html +++ b/docs/twisted-snmp.html @@ -159,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/twisted-snmp.json b/docs/twisted-snmp.json index a6adb78963..aa6cce082a 100644 --- a/docs/twisted-snmp.json +++ b/docs/twisted-snmp.json @@ -1 +1,11 @@ -{"key": "twisted-snmp", "short_name": "TwistedSNMP License", "name": "TwistedSNMP License", "category": "Permissive", "owner": "TwistedSNMP", "spdx_license_key": "LicenseRef-scancode-twisted-snmp", "other_urls": ["http://comments.gmane.org/gmane.linux.debian.devel.legal/25899"]} \ No newline at end of file +{ + "key": "twisted-snmp", + "short_name": "TwistedSNMP License", + "name": "TwistedSNMP License", + "category": "Permissive", + "owner": "TwistedSNMP", + "spdx_license_key": "LicenseRef-scancode-twisted-snmp", + "other_urls": [ + "http://comments.gmane.org/gmane.linux.debian.devel.legal/25899" + ] +} \ No newline at end of file diff --git a/docs/txl-10.5.LICENSE b/docs/txl-10.5.LICENSE index c5354391e0..b98849e6de 100644 --- a/docs/txl-10.5.LICENSE +++ b/docs/txl-10.5.LICENSE @@ -1,3 +1,20 @@ +--- +key: txl-10.5 +short_name: TXL 10.5 License +name: TXL 10.5 License +category: Free Restricted +owner: Unspecified +homepage_url: http://fossat.googlecode.com/svn/trunk/bin/COPYRIGHT.txt +spdx_license_key: LicenseRef-scancode-txl-10.5 +text_urls: + - http://fossat.googlecode.com/svn/trunk/bin/COPYRIGHT.txt +ignorable_copyrights: + - Copyright 1988-2009 Queen's University at Kingston + - Copyright 2009 by Queen's University at Kingston +ignorable_holders: + - Queen's University at Kingston +--- + =================== TXL Version 10.5e Sept 2009 diff --git a/docs/txl-10.5.html b/docs/txl-10.5.html index 595a0151ce..57fd100bc9 100644 --- a/docs/txl-10.5.html +++ b/docs/txl-10.5.html @@ -189,7 +189,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/txl-10.5.json b/docs/txl-10.5.json index cea71a82ca..07e2db9b41 100644 --- a/docs/txl-10.5.json +++ b/docs/txl-10.5.json @@ -1 +1,19 @@ -{"key": "txl-10.5", "short_name": "TXL 10.5 License", "name": "TXL 10.5 License", "category": "Free Restricted", "owner": "Unspecified", "homepage_url": "http://fossat.googlecode.com/svn/trunk/bin/COPYRIGHT.txt", "spdx_license_key": "LicenseRef-scancode-txl-10.5", "text_urls": ["http://fossat.googlecode.com/svn/trunk/bin/COPYRIGHT.txt"], "ignorable_copyrights": ["Copyright 1988-2009 Queen's University at Kingston", "Copyright 2009 by Queen's University at Kingston"], "ignorable_holders": ["Queen's University at Kingston"]} \ No newline at end of file +{ + "key": "txl-10.5", + "short_name": "TXL 10.5 License", + "name": "TXL 10.5 License", + "category": "Free Restricted", + "owner": "Unspecified", + "homepage_url": "http://fossat.googlecode.com/svn/trunk/bin/COPYRIGHT.txt", + "spdx_license_key": "LicenseRef-scancode-txl-10.5", + "text_urls": [ + "http://fossat.googlecode.com/svn/trunk/bin/COPYRIGHT.txt" + ], + "ignorable_copyrights": [ + "Copyright 1988-2009 Queen's University at Kingston", + "Copyright 2009 by Queen's University at Kingston" + ], + "ignorable_holders": [ + "Queen's University at Kingston" + ] +} \ No newline at end of file diff --git a/docs/u-boot-exception-2.0.LICENSE b/docs/u-boot-exception-2.0.LICENSE index 9f758588fd..bf6607a8c6 100644 --- a/docs/u-boot-exception-2.0.LICENSE +++ b/docs/u-boot-exception-2.0.LICENSE @@ -1,3 +1,47 @@ +--- +key: u-boot-exception-2.0 +short_name: U-Boot exception to GPL 2.0 +name: U-Boot exception to GPL 2.0 +category: Copyleft Limited +owner: U-Boot +is_exception: yes +spdx_license_key: u-boot-exception-2.0 +other_urls: + - http://git.denx.de/?p=u-boot.git;a=blob;f=Licenses/Exceptions + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This library 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 2, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + The U-Boot Exception: + NOTE! This copyright does *not* cover the so-called "standalone" + applications that use U-Boot services by means of the jump table provided + by U-Boot exactly for this purpose - this is merely considered normal use + of U-Boot, and does *not* fall under the heading of "derived work". + The header files "include/image.h" and "include/asm-*/u-boot.h" define + interfaces to U-Boot. Including these (unmodified) header files in another + file is considered normal use of U-Boot, and does *not* fall under the + heading of "derived work". + Also note that the GPL below is copyrighted by the Free Software + Foundation, but the instance of code that it refers to (the U-Boot source + code) is copyrighted by me and others who actually wrote it. + -- Wolfgang Denk +ignorable_copyrights: + - copyrighted by me and others + - copyrighted by the Free Software Foundation +ignorable_holders: + - me and others + - the Free Software Foundation +--- + The U-Boot Exception: NOTE! This copyright does *not* cover the so-called "standalone" applications that use U-Boot services by means of the jump table provided by U-Boot exactly for this purpose - this is merely considered normal use of U-Boot, and does *not* fall under the heading of "derived work". diff --git a/docs/u-boot-exception-2.0.html b/docs/u-boot-exception-2.0.html index ce3642a1de..fa6501a334 100644 --- a/docs/u-boot-exception-2.0.html +++ b/docs/u-boot-exception-2.0.html @@ -193,7 +193,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/u-boot-exception-2.0.json b/docs/u-boot-exception-2.0.json index 9841ebf996..e701563b15 100644 --- a/docs/u-boot-exception-2.0.json +++ b/docs/u-boot-exception-2.0.json @@ -1 +1,22 @@ -{"key": "u-boot-exception-2.0", "short_name": "U-Boot exception to GPL 2.0", "name": "U-Boot exception to GPL 2.0", "category": "Copyleft Limited", "owner": "U-Boot", "is_exception": true, "spdx_license_key": "u-boot-exception-2.0", "other_urls": ["http://git.denx.de/?p=u-boot.git;a=blob;f=Licenses/Exceptions", "http://www.gnu.org/licenses/gpl-2.0.txt"], "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nThe U-Boot Exception:\nNOTE! This copyright does *not* cover the so-called \"standalone\"\napplications that use U-Boot services by means of the jump table provided\nby U-Boot exactly for this purpose - this is merely considered normal use\nof U-Boot, and does *not* fall under the heading of \"derived work\".\nThe header files \"include/image.h\" and \"include/asm-*/u-boot.h\" define\ninterfaces to U-Boot. Including these (unmodified) header files in another\nfile is considered normal use of U-Boot, and does *not* fall under the\nheading of \"derived work\".\nAlso note that the GPL below is copyrighted by the Free Software\nFoundation, but the instance of code that it refers to (the U-Boot source\ncode) is copyrighted by me and others who actually wrote it.\n-- Wolfgang Denk\n", "ignorable_copyrights": ["copyrighted by me and others", "copyrighted by the Free Software Foundation"], "ignorable_holders": ["me and others", "the Free Software Foundation"]} \ No newline at end of file +{ + "key": "u-boot-exception-2.0", + "short_name": "U-Boot exception to GPL 2.0", + "name": "U-Boot exception to GPL 2.0", + "category": "Copyleft Limited", + "owner": "U-Boot", + "is_exception": true, + "spdx_license_key": "u-boot-exception-2.0", + "other_urls": [ + "http://git.denx.de/?p=u-boot.git;a=blob;f=Licenses/Exceptions", + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nThe U-Boot Exception:\nNOTE! This copyright does *not* cover the so-called \"standalone\"\napplications that use U-Boot services by means of the jump table provided\nby U-Boot exactly for this purpose - this is merely considered normal use\nof U-Boot, and does *not* fall under the heading of \"derived work\".\nThe header files \"include/image.h\" and \"include/asm-*/u-boot.h\" define\ninterfaces to U-Boot. Including these (unmodified) header files in another\nfile is considered normal use of U-Boot, and does *not* fall under the\nheading of \"derived work\".\nAlso note that the GPL below is copyrighted by the Free Software\nFoundation, but the instance of code that it refers to (the U-Boot source\ncode) is copyrighted by me and others who actually wrote it.\n-- Wolfgang Denk\n", + "ignorable_copyrights": [ + "copyrighted by me and others", + "copyrighted by the Free Software Foundation" + ], + "ignorable_holders": [ + "me and others", + "the Free Software Foundation" + ] +} \ No newline at end of file diff --git a/docs/ubc.LICENSE b/docs/ubc.LICENSE index 5e54460c17..784988b556 100644 --- a/docs/ubc.LICENSE +++ b/docs/ubc.LICENSE @@ -1,3 +1,15 @@ +--- +key: ubc +short_name: University of British Columbia License +name: University of British Columbia License +category: Permissive +owner: University of British Columbia +homepage_url: https://raw.github.com/orgcandman/esnacc-ng/master/c++-lib/src/asn-len.cpp +spdx_license_key: LicenseRef-scancode-ubc +text_urls: + - https://github.com/esnacc/esnacc-ng/blob/55eb00bfb50439620f6fc64b1e8373dd2ad0abb5/cxx-lib/src/asn-len.cpp +--- + This library is free software; you can redistribute it and/or modify it provided that this copyright/license information is retained in original form. @@ -6,4 +18,4 @@ If you modify this file, you must clearly indicate your changes. This source code 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. +of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/docs/ubc.html b/docs/ubc.html index d17b4ef2cb..39225de236 100644 --- a/docs/ubc.html +++ b/docs/ubc.html @@ -132,8 +132,7 @@ This source code 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. - +of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
@@ -145,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ubc.json b/docs/ubc.json index 9469aa4ea6..c2205084ac 100644 --- a/docs/ubc.json +++ b/docs/ubc.json @@ -1 +1,12 @@ -{"key": "ubc", "short_name": "University of British Columbia License", "name": "University of British Columbia License", "category": "Permissive", "owner": "University of British Columbia", "homepage_url": "https://raw.github.com/orgcandman/esnacc-ng/master/c++-lib/src/asn-len.cpp", "spdx_license_key": "LicenseRef-scancode-ubc", "text_urls": ["https://github.com/esnacc/esnacc-ng/blob/55eb00bfb50439620f6fc64b1e8373dd2ad0abb5/cxx-lib/src/asn-len.cpp"]} \ No newline at end of file +{ + "key": "ubc", + "short_name": "University of British Columbia License", + "name": "University of British Columbia License", + "category": "Permissive", + "owner": "University of British Columbia", + "homepage_url": "https://raw.github.com/orgcandman/esnacc-ng/master/c++-lib/src/asn-len.cpp", + "spdx_license_key": "LicenseRef-scancode-ubc", + "text_urls": [ + "https://github.com/esnacc/esnacc-ng/blob/55eb00bfb50439620f6fc64b1e8373dd2ad0abb5/cxx-lib/src/asn-len.cpp" + ] +} \ No newline at end of file diff --git a/docs/ubdl.LICENSE b/docs/ubdl.LICENSE index 780ddcd775..6c3ba52ae2 100644 --- a/docs/ubdl.LICENSE +++ b/docs/ubdl.LICENSE @@ -1,3 +1,17 @@ +--- +key: ubdl +short_name: Unmodified Binary Distribution Licence +name: Unmodified Binary Distribution Licence +category: Copyleft Limited +owner: Unspecified +homepage_url: http://ipxe.org +notes: this is a rare license that extends extra persmission on top of the GPL +is_exception: yes +spdx_license_key: LicenseRef-scancode-ubdl +text_urls: + - https://git.ipxe.org/ipxe.git/blob_plain/HEAD:/COPYING.UBDL +--- + UNMODIFIED BINARY DISTRIBUTION LICENCE @@ -56,4 +70,4 @@ likewise, subject to the following conditions: - when exercising your right to grant permissions under this Licence, you do not need to refer directly to the text of this Licence, but you may not grant permissions beyond those granted to you by this - Licence. + Licence. \ No newline at end of file diff --git a/docs/ubdl.html b/docs/ubdl.html index 3bf3f72fe3..a0ab388714 100644 --- a/docs/ubdl.html +++ b/docs/ubdl.html @@ -196,8 +196,7 @@ - when exercising your right to grant permissions under this Licence, you do not need to refer directly to the text of this Licence, but you may not grant permissions beyond those granted to you by this - Licence. - + Licence.
@@ -209,7 +208,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ubdl.json b/docs/ubdl.json index b84206a568..631c9f95b1 100644 --- a/docs/ubdl.json +++ b/docs/ubdl.json @@ -1 +1,14 @@ -{"key": "ubdl", "short_name": "Unmodified Binary Distribution Licence", "name": "Unmodified Binary Distribution Licence", "category": "Copyleft Limited", "owner": "Unspecified", "homepage_url": "http://ipxe.org", "notes": "this is a rare license that extends extra persmission on top of the GPL", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-ubdl", "text_urls": ["https://git.ipxe.org/ipxe.git/blob_plain/HEAD:/COPYING.UBDL"]} \ No newline at end of file +{ + "key": "ubdl", + "short_name": "Unmodified Binary Distribution Licence", + "name": "Unmodified Binary Distribution Licence", + "category": "Copyleft Limited", + "owner": "Unspecified", + "homepage_url": "http://ipxe.org", + "notes": "this is a rare license that extends extra persmission on top of the GPL", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-ubdl", + "text_urls": [ + "https://git.ipxe.org/ipxe.git/blob_plain/HEAD:/COPYING.UBDL" + ] +} \ No newline at end of file diff --git a/docs/ubuntu-font-1.0.LICENSE b/docs/ubuntu-font-1.0.LICENSE index ae78a8f94e..7dd749b710 100644 --- a/docs/ubuntu-font-1.0.LICENSE +++ b/docs/ubuntu-font-1.0.LICENSE @@ -1,3 +1,22 @@ +--- +key: ubuntu-font-1.0 +short_name: Ubuntu Font Licence v1.0 +name: Ubuntu Font Licence v1.0 +category: Free Restricted +owner: Ubuntu Font Family +homepage_url: http://font.ubuntu.com/licence/ +spdx_license_key: LicenseRef-scancode-ubuntu-font-1.0 +text_urls: + - https://assets.ubuntu.com/v1/81e5605d-ubuntu-font-licence-1.0.txt +faq_url: https://www.ubuntu.com/legal/font-licence +other_urls: + - https://launchpad.net/ubuntu-font-licence + - https://design.ubuntu.com/font/ +standard_notice: | + This Font Software is licensed under the Ubuntu Font Licence, Version + 1.0. https://launchpad.net/ubuntu-font-licence +--- + ------------------------------- UBUNTU FONT LICENCE Version 1.0 ------------------------------- @@ -93,4 +112,4 @@ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER -DEALINGS IN THE FONT SOFTWARE. +DEALINGS IN THE FONT SOFTWARE. \ No newline at end of file diff --git a/docs/ubuntu-font-1.0.html b/docs/ubuntu-font-1.0.html index 66742186fd..f0f0da470d 100644 --- a/docs/ubuntu-font-1.0.html +++ b/docs/ubuntu-font-1.0.html @@ -244,8 +244,7 @@ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER -DEALINGS IN THE FONT SOFTWARE. - +DEALINGS IN THE FONT SOFTWARE.
@@ -257,7 +256,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ubuntu-font-1.0.json b/docs/ubuntu-font-1.0.json index 23b793bc94..c05179db3c 100644 --- a/docs/ubuntu-font-1.0.json +++ b/docs/ubuntu-font-1.0.json @@ -1 +1,18 @@ -{"key": "ubuntu-font-1.0", "short_name": "Ubuntu Font Licence v1.0", "name": "Ubuntu Font Licence v1.0", "category": "Free Restricted", "owner": "Ubuntu Font Family", "homepage_url": "http://font.ubuntu.com/licence/", "spdx_license_key": "LicenseRef-scancode-ubuntu-font-1.0", "text_urls": ["https://assets.ubuntu.com/v1/81e5605d-ubuntu-font-licence-1.0.txt"], "faq_url": "https://www.ubuntu.com/legal/font-licence", "other_urls": ["https://launchpad.net/ubuntu-font-licence", "https://design.ubuntu.com/font/"], "standard_notice": "This Font Software is licensed under the Ubuntu Font Licence, Version\n1.0. https://launchpad.net/ubuntu-font-licence\n"} \ No newline at end of file +{ + "key": "ubuntu-font-1.0", + "short_name": "Ubuntu Font Licence v1.0", + "name": "Ubuntu Font Licence v1.0", + "category": "Free Restricted", + "owner": "Ubuntu Font Family", + "homepage_url": "http://font.ubuntu.com/licence/", + "spdx_license_key": "LicenseRef-scancode-ubuntu-font-1.0", + "text_urls": [ + "https://assets.ubuntu.com/v1/81e5605d-ubuntu-font-licence-1.0.txt" + ], + "faq_url": "https://www.ubuntu.com/legal/font-licence", + "other_urls": [ + "https://launchpad.net/ubuntu-font-licence", + "https://design.ubuntu.com/font/" + ], + "standard_notice": "This Font Software is licensed under the Ubuntu Font Licence, Version\n1.0. https://launchpad.net/ubuntu-font-licence\n" +} \ No newline at end of file diff --git a/docs/ucl-1.0.LICENSE b/docs/ucl-1.0.LICENSE index 124735e8bf..e28f7fe44e 100644 --- a/docs/ucl-1.0.LICENSE +++ b/docs/ucl-1.0.LICENSE @@ -1,3 +1,25 @@ +--- +key: ucl-1.0 +short_name: UCL-1.0 +name: Upstream Compatibility License v1.0 +category: Copyleft Limited +owner: Lawrence Rosen +homepage_url: https://opensource.org/licenses/UCL-1.0 +spdx_license_key: UCL-1.0 +text_urls: + - https://opensource.org/licenses/UCL-1.0 +osi_url: https://opensource.org/licenses/UCL-1.0 +other_urls: + - https://github.com/spdx/license-list-XML/issues/894 +standard_notice: Licensed under the Upstream Compatibility License 1.0 +ignorable_copyrights: + - Copyright (c) 2005 Lawrence Rosen + - Copyright (c) 2017 Nigel Tzeng +ignorable_holders: + - Lawrence Rosen + - Nigel Tzeng +--- + Upstream Compatibility License v. 1.0 (UCL-1.0) This Upstream Compatibility License (the "License") applies to any @@ -205,4 +227,4 @@ under " or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its -license review and certification process. +license review and certification process. \ No newline at end of file diff --git a/docs/ucl-1.0.html b/docs/ucl-1.0.html index 93f6c5ee96..1f2da78f81 100644 --- a/docs/ucl-1.0.html +++ b/docs/ucl-1.0.html @@ -372,8 +372,7 @@ the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its -license review and certification process. - +license review and certification process.
@@ -385,7 +384,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ucl-1.0.json b/docs/ucl-1.0.json index 8bc29253cb..172fc884a8 100644 --- a/docs/ucl-1.0.json +++ b/docs/ucl-1.0.json @@ -1 +1,25 @@ -{"key": "ucl-1.0", "short_name": "UCL-1.0", "name": "Upstream Compatibility License v1.0", "category": "Copyleft Limited", "owner": "Lawrence Rosen", "homepage_url": "https://opensource.org/licenses/UCL-1.0", "spdx_license_key": "UCL-1.0", "text_urls": ["https://opensource.org/licenses/UCL-1.0"], "osi_url": "https://opensource.org/licenses/UCL-1.0", "other_urls": ["https://github.com/spdx/license-list-XML/issues/894"], "standard_notice": "Licensed under the Upstream Compatibility License 1.0", "ignorable_copyrights": ["Copyright (c) 2005 Lawrence Rosen", "Copyright (c) 2017 Nigel Tzeng"], "ignorable_holders": ["Lawrence Rosen", "Nigel Tzeng"]} \ No newline at end of file +{ + "key": "ucl-1.0", + "short_name": "UCL-1.0", + "name": "Upstream Compatibility License v1.0", + "category": "Copyleft Limited", + "owner": "Lawrence Rosen", + "homepage_url": "https://opensource.org/licenses/UCL-1.0", + "spdx_license_key": "UCL-1.0", + "text_urls": [ + "https://opensource.org/licenses/UCL-1.0" + ], + "osi_url": "https://opensource.org/licenses/UCL-1.0", + "other_urls": [ + "https://github.com/spdx/license-list-XML/issues/894" + ], + "standard_notice": "Licensed under the Upstream Compatibility License 1.0", + "ignorable_copyrights": [ + "Copyright (c) 2005 Lawrence Rosen", + "Copyright (c) 2017 Nigel Tzeng" + ], + "ignorable_holders": [ + "Lawrence Rosen", + "Nigel Tzeng" + ] +} \ No newline at end of file diff --git a/docs/unbuntu-font-1.0.LICENSE b/docs/unbuntu-font-1.0.LICENSE index e69de29bb2..a4d638791a 100644 --- a/docs/unbuntu-font-1.0.LICENSE +++ b/docs/unbuntu-font-1.0.LICENSE @@ -0,0 +1,15 @@ +--- +key: unbuntu-font-1.0 +is_deprecated: yes +short_name: Obsolete Font License 1.0 +name: Obsolete Font License 1.0 +category: Free Restricted +owner: Unspecified +homepage_url: http://font.ubuntu.com/licence/ +notes: replaced by ubuntu-font-1.0 (there was a typo in the key)s +text_urls: + - http://font.ubuntu.com/ufl/ubuntu-font-licence-1.0.txt +faq_url: http://font.ubuntu.com/ufl/FAQ.html +other_urls: + - http://font.ubuntu.com/ufl/copyright.txt +--- \ No newline at end of file diff --git a/docs/unbuntu-font-1.0.html b/docs/unbuntu-font-1.0.html index b6a85b0006..f6186b442d 100644 --- a/docs/unbuntu-font-1.0.html +++ b/docs/unbuntu-font-1.0.html @@ -159,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unbuntu-font-1.0.json b/docs/unbuntu-font-1.0.json index 81d093e122..84ae66d1ee 100644 --- a/docs/unbuntu-font-1.0.json +++ b/docs/unbuntu-font-1.0.json @@ -1 +1,17 @@ -{"key": "unbuntu-font-1.0", "is_deprecated": true, "short_name": "Obsolete Font License 1.0", "name": "Obsolete Font License 1.0", "category": "Free Restricted", "owner": "Unspecified", "homepage_url": "http://font.ubuntu.com/licence/", "notes": "replaced by ubuntu-font-1.0 (there was a typo in the key)s", "text_urls": ["http://font.ubuntu.com/ufl/ubuntu-font-licence-1.0.txt"], "faq_url": "http://font.ubuntu.com/ufl/FAQ.html", "other_urls": ["http://font.ubuntu.com/ufl/copyright.txt"]} \ No newline at end of file +{ + "key": "unbuntu-font-1.0", + "is_deprecated": true, + "short_name": "Obsolete Font License 1.0", + "name": "Obsolete Font License 1.0", + "category": "Free Restricted", + "owner": "Unspecified", + "homepage_url": "http://font.ubuntu.com/licence/", + "notes": "replaced by ubuntu-font-1.0 (there was a typo in the key)s", + "text_urls": [ + "http://font.ubuntu.com/ufl/ubuntu-font-licence-1.0.txt" + ], + "faq_url": "http://font.ubuntu.com/ufl/FAQ.html", + "other_urls": [ + "http://font.ubuntu.com/ufl/copyright.txt" + ] +} \ No newline at end of file diff --git a/docs/unicode-data-software.LICENSE b/docs/unicode-data-software.LICENSE index 096ba7528f..c1ca243f07 100644 --- a/docs/unicode-data-software.LICENSE +++ b/docs/unicode-data-software.LICENSE @@ -1,3 +1,16 @@ +--- +key: unicode-data-software +is_deprecated: yes +short_name: Unicode - Data Files and Software +name: Unicode License Agreement - Data Files and Software +category: Permissive +owner: Unicode Consortium +homepage_url: http://unicode.org/ +notes: this is a duplicate of the unicode license +text_urls: + - http://unicode.org/copyright.html +--- + Distributed under the Terms of Use in http://www.unicode.org/copyright.html. Permission is hereby granted, free of charge, to any person obtaining a @@ -36,4 +49,4 @@ authorization of the copyright holder. Unicode and the Unicode logo are trademarks of Unicode, Inc. in the United States and other countries. All third party trademarks referenced -herein are the property of their respective owners. +herein are the property of their respective owners. \ No newline at end of file diff --git a/docs/unicode-data-software.html b/docs/unicode-data-software.html index 46cf32105f..d629d262c8 100644 --- a/docs/unicode-data-software.html +++ b/docs/unicode-data-software.html @@ -169,8 +169,7 @@ Unicode and the Unicode logo are trademarks of Unicode, Inc. in the United States and other countries. All third party trademarks referenced -herein are the property of their respective owners. - +herein are the property of their respective owners.
@@ -182,7 +181,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unicode-data-software.json b/docs/unicode-data-software.json index 546c1f49c5..51f0c3f49d 100644 --- a/docs/unicode-data-software.json +++ b/docs/unicode-data-software.json @@ -1 +1,13 @@ -{"key": "unicode-data-software", "is_deprecated": true, "short_name": "Unicode - Data Files and Software", "name": "Unicode License Agreement - Data Files and Software", "category": "Permissive", "owner": "Unicode Consortium", "homepage_url": "http://unicode.org/", "notes": "this is a duplicate of the unicode license", "text_urls": ["http://unicode.org/copyright.html"]} \ No newline at end of file +{ + "key": "unicode-data-software", + "is_deprecated": true, + "short_name": "Unicode - Data Files and Software", + "name": "Unicode License Agreement - Data Files and Software", + "category": "Permissive", + "owner": "Unicode Consortium", + "homepage_url": "http://unicode.org/", + "notes": "this is a duplicate of the unicode license", + "text_urls": [ + "http://unicode.org/copyright.html" + ] +} \ No newline at end of file diff --git a/docs/unicode-dfs-2015.LICENSE b/docs/unicode-dfs-2015.LICENSE index f29ca6484e..3319729cca 100644 --- a/docs/unicode-dfs-2015.LICENSE +++ b/docs/unicode-dfs-2015.LICENSE @@ -1,3 +1,25 @@ +--- +key: unicode-dfs-2015 +short_name: Unicode DFS 2015 +name: Unicode License Agreement - Data Files and Software (2015) +category: Permissive +owner: Unicode Consortium +homepage_url: https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html +spdx_license_key: Unicode-DFS-2015 +other_urls: + - https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 1991-2015 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/copyright.html + - http://www.unicode.org/reports +--- + UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories diff --git a/docs/unicode-dfs-2015.html b/docs/unicode-dfs-2015.html index 87323226b4..f34d27e1e1 100644 --- a/docs/unicode-dfs-2015.html +++ b/docs/unicode-dfs-2015.html @@ -224,7 +224,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unicode-dfs-2015.json b/docs/unicode-dfs-2015.json index eee36424be..7eba0b5818 100644 --- a/docs/unicode-dfs-2015.json +++ b/docs/unicode-dfs-2015.json @@ -1 +1,25 @@ -{"key": "unicode-dfs-2015", "short_name": "Unicode DFS 2015", "name": "Unicode License Agreement - Data Files and Software (2015)", "category": "Permissive", "owner": "Unicode Consortium", "homepage_url": "https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html", "spdx_license_key": "Unicode-DFS-2015", "other_urls": ["https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright (c) 1991-2015 Unicode, Inc."], "ignorable_holders": ["Unicode, Inc."], "ignorable_urls": ["http://www.unicode.org/Public", "http://www.unicode.org/cldr/data", "http://www.unicode.org/copyright.html", "http://www.unicode.org/reports"]} \ No newline at end of file +{ + "key": "unicode-dfs-2015", + "short_name": "Unicode DFS 2015", + "name": "Unicode License Agreement - Data Files and Software (2015)", + "category": "Permissive", + "owner": "Unicode Consortium", + "homepage_url": "https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html", + "spdx_license_key": "Unicode-DFS-2015", + "other_urls": [ + "https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright (c) 1991-2015 Unicode, Inc." + ], + "ignorable_holders": [ + "Unicode, Inc." + ], + "ignorable_urls": [ + "http://www.unicode.org/Public", + "http://www.unicode.org/cldr/data", + "http://www.unicode.org/copyright.html", + "http://www.unicode.org/reports" + ] +} \ No newline at end of file diff --git a/docs/unicode-dfs-2016.LICENSE b/docs/unicode-dfs-2016.LICENSE index be7d76fd4d..e96cb824b0 100644 --- a/docs/unicode-dfs-2016.LICENSE +++ b/docs/unicode-dfs-2016.LICENSE @@ -1,3 +1,28 @@ +--- +key: unicode-dfs-2016 +short_name: Unicode DFS 2016 +name: Unicode License Agreement - Data Files and Software (2016) +category: Permissive +owner: Unicode Consortium +homepage_url: http://www.unicode.org/copyright.html +spdx_license_key: Unicode-DFS-2016 +other_urls: + - http://www.unicode.org/copyright.html +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 1991-2016 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://source.icu-project.org/repos/icu + - http://source.icu/ + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/copyright.html + - http://www.unicode.org/reports + - http://www.unicode.org/utility/trac/browser +--- + UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories diff --git a/docs/unicode-dfs-2016.html b/docs/unicode-dfs-2016.html index fa9a1cc5a9..af57a1ff42 100644 --- a/docs/unicode-dfs-2016.html +++ b/docs/unicode-dfs-2016.html @@ -227,7 +227,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unicode-dfs-2016.json b/docs/unicode-dfs-2016.json index 48048978ec..4278b33d44 100644 --- a/docs/unicode-dfs-2016.json +++ b/docs/unicode-dfs-2016.json @@ -1 +1,28 @@ -{"key": "unicode-dfs-2016", "short_name": "Unicode DFS 2016", "name": "Unicode License Agreement - Data Files and Software (2016)", "category": "Permissive", "owner": "Unicode Consortium", "homepage_url": "http://www.unicode.org/copyright.html", "spdx_license_key": "Unicode-DFS-2016", "other_urls": ["http://www.unicode.org/copyright.html"], "minimum_coverage": 70, "ignorable_copyrights": ["Copyright (c) 1991-2016 Unicode, Inc."], "ignorable_holders": ["Unicode, Inc."], "ignorable_urls": ["http://source.icu-project.org/repos/icu", "http://source.icu/", "http://www.unicode.org/Public", "http://www.unicode.org/cldr/data", "http://www.unicode.org/copyright.html", "http://www.unicode.org/reports", "http://www.unicode.org/utility/trac/browser"]} \ No newline at end of file +{ + "key": "unicode-dfs-2016", + "short_name": "Unicode DFS 2016", + "name": "Unicode License Agreement - Data Files and Software (2016)", + "category": "Permissive", + "owner": "Unicode Consortium", + "homepage_url": "http://www.unicode.org/copyright.html", + "spdx_license_key": "Unicode-DFS-2016", + "other_urls": [ + "http://www.unicode.org/copyright.html" + ], + "minimum_coverage": 70, + "ignorable_copyrights": [ + "Copyright (c) 1991-2016 Unicode, Inc." + ], + "ignorable_holders": [ + "Unicode, Inc." + ], + "ignorable_urls": [ + "http://source.icu-project.org/repos/icu", + "http://source.icu/", + "http://www.unicode.org/Public", + "http://www.unicode.org/cldr/data", + "http://www.unicode.org/copyright.html", + "http://www.unicode.org/reports", + "http://www.unicode.org/utility/trac/browser" + ] +} \ No newline at end of file diff --git a/docs/unicode-icu-58.LICENSE b/docs/unicode-icu-58.LICENSE index 248b447d45..c0ce15fec1 100644 --- a/docs/unicode-icu-58.LICENSE +++ b/docs/unicode-icu-58.LICENSE @@ -1,3 +1,54 @@ +--- +key: unicode-icu-58 +short_name: ICU License 58 and later +name: ICU License 58 and later +category: Permissive +owner: Unicode Consortium +homepage_url: https://www.open-xchange.com/fileadmin/user_upload/images/portfolio/license/ICU_License.pdf +notes: composite +spdx_license_key: LicenseRef-scancode-unicode-icu-58 +minimum_coverage: 80 +ignorable_copyrights: + - (c) 1999 TaBE Project + - Copyright (c) 1991-2016 Unicode, Inc. + - Copyright (c) 1995-2016 International Business Machines Corporation and others + - Copyright (c) 1999 Computer Systems and Communication Lab, Institute of Information Science, + Academia Sinica + - Copyright (c) 1999 Pai-Hsiang Hsiao + - Copyright (c) 2006-2008, Google Inc. + - Copyright (c) 2013 Brian Eugene Wilson, Robert Martin Campbell + - Copyright (c) 2013 International Business Machines Corporation and others + - Copyright (c) 2013, LeRoy Benjamin Sharon + - Copyright (c) 2014 International Business Machines Corporation and others + - Copyright 1996 Chih-Hao Tsai Beckman Institute, University of Illinois c-tsai4@uiuc.edu + http://casper.beckman.uiuc.edu/~c-tsai4 + - Copyright 2000, 2001, 2002, 2003 Nara Institute of Science and Technology + - Copyright 2006-2011, the V8 project authors +ignorable_holders: + - Brian Eugene Wilson, Robert Martin Campbell + - Chih-Hao Tsai Beckman Institute, University of Illinois + - Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica + - Google Inc. + - International Business Machines Corporation and others + - LeRoy Benjamin Sharon + - Nara Institute of Science and Technology + - Pai-Hsiang Hsiao + - TaBE Project + - Unicode, Inc. + - the V8 project authors +ignorable_urls: + - http://casper.beckman.uiuc.edu/~c-tsai4 + - http://chasen.aist-nara.ac.jp/chasen/distribution.html + - http://code.google.com/p/lao-dictionary/ + - http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt + - http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt + - http://opensource.org/licenses/bsd-license.php + - http://www.unicode.org/copyright.html + - https://sourceforge.net/project/?group_id=1519 +ignorable_emails: + - c-tsai4@uiuc.edu +--- + COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) Copyright © 1991-2016 Unicode, Inc. All rights reserved. diff --git a/docs/unicode-icu-58.html b/docs/unicode-icu-58.html index f26bb20236..365531c6b6 100644 --- a/docs/unicode-icu-58.html +++ b/docs/unicode-icu-58.html @@ -590,7 +590,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unicode-icu-58.json b/docs/unicode-icu-58.json index 471ae075f3..fbb1c35f5f 100644 --- a/docs/unicode-icu-58.json +++ b/docs/unicode-icu-58.json @@ -1 +1,52 @@ -{"key": "unicode-icu-58", "short_name": "ICU License 58 and later", "name": "ICU License 58 and later", "category": "Permissive", "owner": "Unicode Consortium", "homepage_url": "https://www.open-xchange.com/fileadmin/user_upload/images/portfolio/license/ICU_License.pdf", "notes": "composite", "spdx_license_key": "LicenseRef-scancode-unicode-icu-58", "minimum_coverage": 80, "ignorable_copyrights": ["(c) 1999 TaBE Project", "Copyright (c) 1991-2016 Unicode, Inc.", "Copyright (c) 1995-2016 International Business Machines Corporation and others", "Copyright (c) 1999 Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica", "Copyright (c) 1999 Pai-Hsiang Hsiao", "Copyright (c) 2006-2008, Google Inc.", "Copyright (c) 2013 Brian Eugene Wilson, Robert Martin Campbell", "Copyright (c) 2013 International Business Machines Corporation and others", "Copyright (c) 2013, LeRoy Benjamin Sharon", "Copyright (c) 2014 International Business Machines Corporation and others", "Copyright 1996 Chih-Hao Tsai Beckman Institute, University of Illinois c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4", "Copyright 2000, 2001, 2002, 2003 Nara Institute of Science and Technology", "Copyright 2006-2011, the V8 project authors"], "ignorable_holders": ["Brian Eugene Wilson, Robert Martin Campbell", "Chih-Hao Tsai Beckman Institute, University of Illinois", "Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica", "Google Inc.", "International Business Machines Corporation and others", "LeRoy Benjamin Sharon", "Nara Institute of Science and Technology", "Pai-Hsiang Hsiao", "TaBE Project", "Unicode, Inc.", "the V8 project authors"], "ignorable_urls": ["http://casper.beckman.uiuc.edu/~c-tsai4", "http://chasen.aist-nara.ac.jp/chasen/distribution.html", "http://code.google.com/p/lao-dictionary/", "http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt", "http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt", "http://opensource.org/licenses/bsd-license.php", "http://www.unicode.org/copyright.html", "https://sourceforge.net/project/?group_id=1519"], "ignorable_emails": ["c-tsai4@uiuc.edu"]} \ No newline at end of file +{ + "key": "unicode-icu-58", + "short_name": "ICU License 58 and later", + "name": "ICU License 58 and later", + "category": "Permissive", + "owner": "Unicode Consortium", + "homepage_url": "https://www.open-xchange.com/fileadmin/user_upload/images/portfolio/license/ICU_License.pdf", + "notes": "composite", + "spdx_license_key": "LicenseRef-scancode-unicode-icu-58", + "minimum_coverage": 80, + "ignorable_copyrights": [ + "(c) 1999 TaBE Project", + "Copyright (c) 1991-2016 Unicode, Inc.", + "Copyright (c) 1995-2016 International Business Machines Corporation and others", + "Copyright (c) 1999 Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica", + "Copyright (c) 1999 Pai-Hsiang Hsiao", + "Copyright (c) 2006-2008, Google Inc.", + "Copyright (c) 2013 Brian Eugene Wilson, Robert Martin Campbell", + "Copyright (c) 2013 International Business Machines Corporation and others", + "Copyright (c) 2013, LeRoy Benjamin Sharon", + "Copyright (c) 2014 International Business Machines Corporation and others", + "Copyright 1996 Chih-Hao Tsai Beckman Institute, University of Illinois c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4", + "Copyright 2000, 2001, 2002, 2003 Nara Institute of Science and Technology", + "Copyright 2006-2011, the V8 project authors" + ], + "ignorable_holders": [ + "Brian Eugene Wilson, Robert Martin Campbell", + "Chih-Hao Tsai Beckman Institute, University of Illinois", + "Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica", + "Google Inc.", + "International Business Machines Corporation and others", + "LeRoy Benjamin Sharon", + "Nara Institute of Science and Technology", + "Pai-Hsiang Hsiao", + "TaBE Project", + "Unicode, Inc.", + "the V8 project authors" + ], + "ignorable_urls": [ + "http://casper.beckman.uiuc.edu/~c-tsai4", + "http://chasen.aist-nara.ac.jp/chasen/distribution.html", + "http://code.google.com/p/lao-dictionary/", + "http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt", + "http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt", + "http://opensource.org/licenses/bsd-license.php", + "http://www.unicode.org/copyright.html", + "https://sourceforge.net/project/?group_id=1519" + ], + "ignorable_emails": [ + "c-tsai4@uiuc.edu" + ] +} \ No newline at end of file diff --git a/docs/unicode-mappings.LICENSE b/docs/unicode-mappings.LICENSE index 63c300718a..b1a61dacd5 100644 --- a/docs/unicode-mappings.LICENSE +++ b/docs/unicode-mappings.LICENSE @@ -1,3 +1,12 @@ +--- +key: unicode-mappings +short_name: Unicode Mappings License +name: Unicode Mappings License +category: Permissive +owner: Unicode Consortium +spdx_license_key: LicenseRef-scancode-unicode-mappings +--- + This file is provided as-is by Unicode, Inc. (The Unicode Consortium). No claims are made as to fitness for any particular purpose. No warranties of any kind are expressed or implied. The recipient diff --git a/docs/unicode-mappings.html b/docs/unicode-mappings.html index 2323154325..cdea2b07eb 100644 --- a/docs/unicode-mappings.html +++ b/docs/unicode-mappings.html @@ -132,7 +132,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unicode-mappings.json b/docs/unicode-mappings.json index 00e78dd8f1..5d4952fff9 100644 --- a/docs/unicode-mappings.json +++ b/docs/unicode-mappings.json @@ -1 +1,8 @@ -{"key": "unicode-mappings", "short_name": "Unicode Mappings License", "name": "Unicode Mappings License", "category": "Permissive", "owner": "Unicode Consortium", "spdx_license_key": "LicenseRef-scancode-unicode-mappings"} \ No newline at end of file +{ + "key": "unicode-mappings", + "short_name": "Unicode Mappings License", + "name": "Unicode Mappings License", + "category": "Permissive", + "owner": "Unicode Consortium", + "spdx_license_key": "LicenseRef-scancode-unicode-mappings" +} \ No newline at end of file diff --git a/docs/unicode-tou.LICENSE b/docs/unicode-tou.LICENSE index b72f87bd86..a2ae40a37a 100644 --- a/docs/unicode-tou.LICENSE +++ b/docs/unicode-tou.LICENSE @@ -1,3 +1,17 @@ +--- +key: unicode-tou +short_name: Unicode Terms of Use +name: Unicode Terms of Use +category: Proprietary Free +owner: Unicode Consortium +homepage_url: http://www.unicode.org/copyright.html +spdx_license_key: Unicode-TOU +ignorable_copyrights: + - Copyright (c) Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +--- + Unicode Terms of Use For the general privacy policy governing access to this site, see the diff --git a/docs/unicode-tou.html b/docs/unicode-tou.html index f2b8854135..e83aa785d6 100644 --- a/docs/unicode-tou.html +++ b/docs/unicode-tou.html @@ -271,7 +271,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unicode-tou.json b/docs/unicode-tou.json index 7dbe40bb5a..f29ff7e57e 100644 --- a/docs/unicode-tou.json +++ b/docs/unicode-tou.json @@ -1 +1,15 @@ -{"key": "unicode-tou", "short_name": "Unicode Terms of Use", "name": "Unicode Terms of Use", "category": "Proprietary Free", "owner": "Unicode Consortium", "homepage_url": "http://www.unicode.org/copyright.html", "spdx_license_key": "Unicode-TOU", "ignorable_copyrights": ["Copyright (c) Unicode, Inc."], "ignorable_holders": ["Unicode, Inc."]} \ No newline at end of file +{ + "key": "unicode-tou", + "short_name": "Unicode Terms of Use", + "name": "Unicode Terms of Use", + "category": "Proprietary Free", + "owner": "Unicode Consortium", + "homepage_url": "http://www.unicode.org/copyright.html", + "spdx_license_key": "Unicode-TOU", + "ignorable_copyrights": [ + "Copyright (c) Unicode, Inc." + ], + "ignorable_holders": [ + "Unicode, Inc." + ] +} \ No newline at end of file diff --git a/docs/unicode.LICENSE b/docs/unicode.LICENSE index 9ddea25dce..f5cd85f370 100644 --- a/docs/unicode.LICENSE +++ b/docs/unicode.LICENSE @@ -1,3 +1,26 @@ +--- +key: unicode +short_name: Unicode Inc License Agreement +name: Unicode Inc License Agreement +category: Permissive +owner: Unicode Consortium +homepage_url: http://unicode.org/ +spdx_license_key: LicenseRef-scancode-unicode +text_urls: + - http://unicode.org/copyright.html +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/cldr/data/ + - http://www.unicode.org/copyright.html + - http://www.unicode.org/reports +--- + UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories diff --git a/docs/unicode.html b/docs/unicode.html index 4d31a354c4..505e43959b 100644 --- a/docs/unicode.html +++ b/docs/unicode.html @@ -227,7 +227,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unicode.json b/docs/unicode.json index a20bfac7ad..5a62435b23 100644 --- a/docs/unicode.json +++ b/docs/unicode.json @@ -1 +1,26 @@ -{"key": "unicode", "short_name": "Unicode Inc License Agreement", "name": "Unicode Inc License Agreement", "category": "Permissive", "owner": "Unicode Consortium", "homepage_url": "http://unicode.org/", "spdx_license_key": "LicenseRef-scancode-unicode", "text_urls": ["http://unicode.org/copyright.html"], "minimum_coverage": 60, "ignorable_copyrights": ["Copyright (c) Unicode, Inc."], "ignorable_holders": ["Unicode, Inc."], "ignorable_urls": ["http://www.unicode.org/Public", "http://www.unicode.org/cldr/data", "http://www.unicode.org/cldr/data/", "http://www.unicode.org/copyright.html", "http://www.unicode.org/reports"]} \ No newline at end of file +{ + "key": "unicode", + "short_name": "Unicode Inc License Agreement", + "name": "Unicode Inc License Agreement", + "category": "Permissive", + "owner": "Unicode Consortium", + "homepage_url": "http://unicode.org/", + "spdx_license_key": "LicenseRef-scancode-unicode", + "text_urls": [ + "http://unicode.org/copyright.html" + ], + "minimum_coverage": 60, + "ignorable_copyrights": [ + "Copyright (c) Unicode, Inc." + ], + "ignorable_holders": [ + "Unicode, Inc." + ], + "ignorable_urls": [ + "http://www.unicode.org/Public", + "http://www.unicode.org/cldr/data", + "http://www.unicode.org/cldr/data/", + "http://www.unicode.org/copyright.html", + "http://www.unicode.org/reports" + ] +} \ No newline at end of file diff --git a/docs/universal-foss-exception-1.0.LICENSE b/docs/universal-foss-exception-1.0.LICENSE index fb1f3f451e..4c41929dcd 100644 --- a/docs/universal-foss-exception-1.0.LICENSE +++ b/docs/universal-foss-exception-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: universal-foss-exception-1.0 +short_name: Universal FOSS Exception v1.0 +name: Universal FOSS Exception v1.0 +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: https://oss.oracle.com/licenses/universal-foss-exception/ +is_exception: yes +spdx_license_key: Universal-FOSS-exception-1.0 +other_urls: + - https://oss.oracle.com/licenses/universal-foss-exception/ +--- + The Universal FOSS Exception, Version 1.0 In addition to the rights set forth in the other license(s) included in the @@ -46,4 +59,4 @@ categorized as free, even if now deprecated or otherwise no longer recognized as approved or free. Nothing in this additional permission grants any right to distribute any portion of the Software on terms other than those of the Software License or grants any additional permission of any kind for use or distribution -of the Software in conjunction with software other than Other FOSS. +of the Software in conjunction with software other than Other FOSS. \ No newline at end of file diff --git a/docs/universal-foss-exception-1.0.html b/docs/universal-foss-exception-1.0.html index 5bfdf3ab9e..77c7e970e4 100644 --- a/docs/universal-foss-exception-1.0.html +++ b/docs/universal-foss-exception-1.0.html @@ -179,8 +179,7 @@ approved or free. Nothing in this additional permission grants any right to distribute any portion of the Software on terms other than those of the Software License or grants any additional permission of any kind for use or distribution -of the Software in conjunction with software other than Other FOSS. - +of the Software in conjunction with software other than Other FOSS.
@@ -192,7 +191,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/universal-foss-exception-1.0.json b/docs/universal-foss-exception-1.0.json index c1d0bcdb8d..5722b020a7 100644 --- a/docs/universal-foss-exception-1.0.json +++ b/docs/universal-foss-exception-1.0.json @@ -1 +1,13 @@ -{"key": "universal-foss-exception-1.0", "short_name": "Universal FOSS Exception v1.0", "name": "Universal FOSS Exception v1.0", "category": "Copyleft Limited", "owner": "Oracle Corporation", "homepage_url": "https://oss.oracle.com/licenses/universal-foss-exception/", "is_exception": true, "spdx_license_key": "Universal-FOSS-exception-1.0", "other_urls": ["https://oss.oracle.com/licenses/universal-foss-exception/"]} \ No newline at end of file +{ + "key": "universal-foss-exception-1.0", + "short_name": "Universal FOSS Exception v1.0", + "name": "Universal FOSS Exception v1.0", + "category": "Copyleft Limited", + "owner": "Oracle Corporation", + "homepage_url": "https://oss.oracle.com/licenses/universal-foss-exception/", + "is_exception": true, + "spdx_license_key": "Universal-FOSS-exception-1.0", + "other_urls": [ + "https://oss.oracle.com/licenses/universal-foss-exception/" + ] +} \ No newline at end of file diff --git a/docs/unknown-license-reference.LICENSE b/docs/unknown-license-reference.LICENSE index e69de29bb2..222217ff2a 100644 --- a/docs/unknown-license-reference.LICENSE +++ b/docs/unknown-license-reference.LICENSE @@ -0,0 +1,12 @@ +--- +key: unknown-license-reference +short_name: Unknown License reference +name: Unknown License file reference +category: Unstated License +owner: Unspecified +notes: This applies to the case of a file with no clear license, which may be referenced via + URL or text such as "See license in..." or "This file is licensed under...", but where the + reference cannot be resolved to a specific named, public license. +is_unknown: yes +spdx_license_key: LicenseRef-scancode-unknown-license-reference +--- \ No newline at end of file diff --git a/docs/unknown-license-reference.html b/docs/unknown-license-reference.html index a638268ed5..97b37a5d9c 100644 --- a/docs/unknown-license-reference.html +++ b/docs/unknown-license-reference.html @@ -134,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unknown-license-reference.json b/docs/unknown-license-reference.json index cbf9e20941..dc86572dce 100644 --- a/docs/unknown-license-reference.json +++ b/docs/unknown-license-reference.json @@ -1 +1,10 @@ -{"key": "unknown-license-reference", "short_name": "Unknown License reference", "name": "Unknown License file reference", "category": "Unstated License", "owner": "Unspecified", "notes": "This applies to the case of a file with no clear license, which may be referenced via URL or text such as \"See license in...\" or \"This file is licensed under...\", but where the reference cannot be resolved to a specific named, public license.", "is_unknown": true, "spdx_license_key": "LicenseRef-scancode-unknown-license-reference"} \ No newline at end of file +{ + "key": "unknown-license-reference", + "short_name": "Unknown License reference", + "name": "Unknown License file reference", + "category": "Unstated License", + "owner": "Unspecified", + "notes": "This applies to the case of a file with no clear license, which may be referenced via URL or text such as \"See license in...\" or \"This file is licensed under...\", but where the reference cannot be resolved to a specific named, public license.", + "is_unknown": true, + "spdx_license_key": "LicenseRef-scancode-unknown-license-reference" +} \ No newline at end of file diff --git a/docs/unknown-spdx.LICENSE b/docs/unknown-spdx.LICENSE index e69de29bb2..e059bed5cc 100644 --- a/docs/unknown-spdx.LICENSE +++ b/docs/unknown-spdx.LICENSE @@ -0,0 +1,10 @@ +--- +key: unknown-spdx +short_name: unknown SPDX +name: Unknown SPDX license detected but not recognized +category: Unstated License +owner: Unspecified +notes: This applies to an invalid reference to an SPDX license identifier. +is_unknown: yes +spdx_license_key: LicenseRef-scancode-unknown-spdx +--- \ No newline at end of file diff --git a/docs/unknown-spdx.html b/docs/unknown-spdx.html index 50c75de730..43f09cd986 100644 --- a/docs/unknown-spdx.html +++ b/docs/unknown-spdx.html @@ -134,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unknown-spdx.json b/docs/unknown-spdx.json index dc3542f5bf..7aedcada2f 100644 --- a/docs/unknown-spdx.json +++ b/docs/unknown-spdx.json @@ -1 +1,10 @@ -{"key": "unknown-spdx", "short_name": "unknown SPDX", "name": "Unknown SPDX license detected but not recognized", "category": "Unstated License", "owner": "Unspecified", "notes": "This applies to an invalid reference to an SPDX license identifier.", "is_unknown": true, "spdx_license_key": "LicenseRef-scancode-unknown-spdx"} \ No newline at end of file +{ + "key": "unknown-spdx", + "short_name": "unknown SPDX", + "name": "Unknown SPDX license detected but not recognized", + "category": "Unstated License", + "owner": "Unspecified", + "notes": "This applies to an invalid reference to an SPDX license identifier.", + "is_unknown": true, + "spdx_license_key": "LicenseRef-scancode-unknown-spdx" +} \ No newline at end of file diff --git a/docs/unknown.LICENSE b/docs/unknown.LICENSE index e69de29bb2..41eaafa67f 100644 --- a/docs/unknown.LICENSE +++ b/docs/unknown.LICENSE @@ -0,0 +1,11 @@ +--- +key: unknown +short_name: unknown +name: Unknown license detected but not recognized +category: Unstated License +owner: Unspecified +notes: This applies to the case where there is text referring to a license, but it is not possible + to determine exactly which license. +is_unknown: yes +spdx_license_key: LicenseRef-scancode-unknown +--- \ No newline at end of file diff --git a/docs/unknown.html b/docs/unknown.html index 4f60bf3607..27ccc5b50a 100644 --- a/docs/unknown.html +++ b/docs/unknown.html @@ -134,7 +134,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unknown.json b/docs/unknown.json index e1656f291b..4da5b85d27 100644 --- a/docs/unknown.json +++ b/docs/unknown.json @@ -1 +1,10 @@ -{"key": "unknown", "short_name": "unknown", "name": "Unknown license detected but not recognized", "category": "Unstated License", "owner": "Unspecified", "notes": "This applies to the case where there is text referring to a license, but it is not possible to determine exactly which license.", "is_unknown": true, "spdx_license_key": "LicenseRef-scancode-unknown"} \ No newline at end of file +{ + "key": "unknown", + "short_name": "unknown", + "name": "Unknown license detected but not recognized", + "category": "Unstated License", + "owner": "Unspecified", + "notes": "This applies to the case where there is text referring to a license, but it is not possible to determine exactly which license.", + "is_unknown": true, + "spdx_license_key": "LicenseRef-scancode-unknown" +} \ No newline at end of file diff --git a/docs/unlicense.LICENSE b/docs/unlicense.LICENSE index 00d2e135a7..2aa854573b 100644 --- a/docs/unlicense.LICENSE +++ b/docs/unlicense.LICENSE @@ -1,3 +1,19 @@ +--- +key: unlicense +short_name: Unlicense +name: Unlicense +category: Public Domain +owner: Unlicense +homepage_url: http://unlicense.org/ +notes: Per SPDX.org, this is a public domain dedication +spdx_license_key: Unlicense +text_urls: + - https://unlicense.org/ +faq_url: http://unlicense.org/ +ignorable_urls: + - http://unlicense.org/ +--- + This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or diff --git a/docs/unlicense.html b/docs/unlicense.html index eb877f67bb..b0e9171fdc 100644 --- a/docs/unlicense.html +++ b/docs/unlicense.html @@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unlicense.json b/docs/unlicense.json index f04f5c38e1..bb117992af 100644 --- a/docs/unlicense.json +++ b/docs/unlicense.json @@ -1 +1,17 @@ -{"key": "unlicense", "short_name": "Unlicense", "name": "Unlicense", "category": "Public Domain", "owner": "Unlicense", "homepage_url": "http://unlicense.org/", "notes": "Per SPDX.org, this is a public domain dedication", "spdx_license_key": "Unlicense", "text_urls": ["https://unlicense.org/"], "faq_url": "http://unlicense.org/", "ignorable_urls": ["http://unlicense.org/"]} \ No newline at end of file +{ + "key": "unlicense", + "short_name": "Unlicense", + "name": "Unlicense", + "category": "Public Domain", + "owner": "Unlicense", + "homepage_url": "http://unlicense.org/", + "notes": "Per SPDX.org, this is a public domain dedication", + "spdx_license_key": "Unlicense", + "text_urls": [ + "https://unlicense.org/" + ], + "faq_url": "http://unlicense.org/", + "ignorable_urls": [ + "http://unlicense.org/" + ] +} \ No newline at end of file diff --git a/docs/unlimited-binary-linking.LICENSE b/docs/unlimited-binary-linking.LICENSE index 89c9f23231..41d3c42eff 100644 --- a/docs/unlimited-binary-linking.LICENSE +++ b/docs/unlimited-binary-linking.LICENSE @@ -1,3 +1,14 @@ +--- +key: unlimited-binary-linking +is_deprecated: yes +short_name: Unlimited Binary Linking Exception +name: Unlimited Binary Linking Exception +category: Permissive +owner: nexB +is_exception: yes +spdx_license_key: LicenseRef-scancode-unlimited-binary-linking +--- + As a special exception, you may use, copy, link, modify and distribute under the user's own terms, binary object code versions of works based -on the library. +on the library. \ No newline at end of file diff --git a/docs/unlimited-binary-linking.html b/docs/unlimited-binary-linking.html index 3fba3f5e10..37766a644b 100644 --- a/docs/unlimited-binary-linking.html +++ b/docs/unlimited-binary-linking.html @@ -71,6 +71,13 @@ +
is_deprecated
+
+ + True + +
+
short_name
@@ -117,8 +124,7 @@
license_text
As a special exception, you may use, copy, link, modify and distribute
 under the user's own terms, binary object code versions of works based
-on the library.
-
+on the library.
@@ -130,7 +136,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unlimited-binary-linking.json b/docs/unlimited-binary-linking.json index 8eb2d546a9..acb3d31e5a 100644 --- a/docs/unlimited-binary-linking.json +++ b/docs/unlimited-binary-linking.json @@ -1 +1,10 @@ -{"key": "unlimited-binary-linking", "short_name": "Unlimited Binary Linking Exception", "name": "Unlimited Binary Linking Exception", "category": "Permissive", "owner": "nexB", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-unlimited-binary-linking"} \ No newline at end of file +{ + "key": "unlimited-binary-linking", + "is_deprecated": true, + "short_name": "Unlimited Binary Linking Exception", + "name": "Unlimited Binary Linking Exception", + "category": "Permissive", + "owner": "nexB", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-unlimited-binary-linking" +} \ No newline at end of file diff --git a/docs/unlimited-binary-linking.yml b/docs/unlimited-binary-linking.yml index b477b6a322..0f8ad33dcb 100644 --- a/docs/unlimited-binary-linking.yml +++ b/docs/unlimited-binary-linking.yml @@ -1,4 +1,5 @@ key: unlimited-binary-linking +is_deprecated: yes short_name: Unlimited Binary Linking Exception name: Unlimited Binary Linking Exception category: Permissive diff --git a/docs/unlimited-binary-use-exception.LICENSE b/docs/unlimited-binary-use-exception.LICENSE new file mode 100644 index 0000000000..22c5c7ee22 --- /dev/null +++ b/docs/unlimited-binary-use-exception.LICENSE @@ -0,0 +1,13 @@ +--- +key: unlimited-binary-use-exception +short_name: Unlimited Binary Use Exception +name: Unlimited Binary Use Exception +category: Permissive +owner: nexB +is_exception: yes +spdx_license_key: LicenseRef-scancode-unlimited-binary-use-exception +--- + +As a special exception, you may use, copy, link, modify and distribute +under the user's own terms, binary object code versions of works based +on the library. \ No newline at end of file diff --git a/docs/unlimited-binary-use-exception.html b/docs/unlimited-binary-use-exception.html new file mode 100644 index 0000000000..0465cba3d8 --- /dev/null +++ b/docs/unlimited-binary-use-exception.html @@ -0,0 +1,152 @@ + + + + + + LicenseDB: unlimited-binary-use-exception + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + unlimited-binary-use-exception + +
+ +
short_name
+
+ + Unlimited Binary Use Exception + +
+ +
name
+
+ + Unlimited Binary Use Exception + +
+ +
category
+
+ + Permissive + +
+ +
owner
+
+ + nexB + +
+ +
is_exception
+
+ + True + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-unlimited-binary-use-exception + +
+ +
+
license_text
+
As a special exception, you may use, copy, link, modify and distribute
+under the user's own terms, binary object code versions of works based
+on the library.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/unlimited-binary-use-exception.json b/docs/unlimited-binary-use-exception.json new file mode 100644 index 0000000000..796d433aab --- /dev/null +++ b/docs/unlimited-binary-use-exception.json @@ -0,0 +1,9 @@ +{ + "key": "unlimited-binary-use-exception", + "short_name": "Unlimited Binary Use Exception", + "name": "Unlimited Binary Use Exception", + "category": "Permissive", + "owner": "nexB", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-unlimited-binary-use-exception" +} \ No newline at end of file diff --git a/docs/unlimited-binary-use-exception.yml b/docs/unlimited-binary-use-exception.yml new file mode 100644 index 0000000000..19d47ca298 --- /dev/null +++ b/docs/unlimited-binary-use-exception.yml @@ -0,0 +1,7 @@ +key: unlimited-binary-use-exception +short_name: Unlimited Binary Use Exception +name: Unlimited Binary Use Exception +category: Permissive +owner: nexB +is_exception: yes +spdx_license_key: LicenseRef-scancode-unlimited-binary-use-exception diff --git a/docs/unlimited-linking-exception-gpl.LICENSE b/docs/unlimited-linking-exception-gpl.LICENSE index 2cf6203b86..5ef7501e80 100644 --- a/docs/unlimited-linking-exception-gpl.LICENSE +++ b/docs/unlimited-linking-exception-gpl.LICENSE @@ -1,3 +1,16 @@ +--- +key: unlimited-linking-exception-gpl +short_name: Unlimited linking exception to GPL +name: Unlimited linking exception to GPL +category: Copyleft +owner: Free Software Foundation (FSF) +notes: this is a rare variant of an LGPL exception foudn in glibc +is_exception: yes +spdx_license_key: LicenseRef-scancode-unlimited-link-exception-gpl +other_spdx_license_keys: + - LicenseRef-scancode-unlimited-linking-exception-gpl +--- + In addition to the permissions in the GNU General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version of this file with other programs, and to distribute diff --git a/docs/unlimited-linking-exception-gpl.html b/docs/unlimited-linking-exception-gpl.html index 09327b7d8a..976826e1cb 100644 --- a/docs/unlimited-linking-exception-gpl.html +++ b/docs/unlimited-linking-exception-gpl.html @@ -149,7 +149,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unlimited-linking-exception-gpl.json b/docs/unlimited-linking-exception-gpl.json index db91ad4f42..488827c50c 100644 --- a/docs/unlimited-linking-exception-gpl.json +++ b/docs/unlimited-linking-exception-gpl.json @@ -1 +1,13 @@ -{"key": "unlimited-linking-exception-gpl", "short_name": "Unlimited linking exception to GPL", "name": "Unlimited linking exception to GPL", "category": "Copyleft", "owner": "Free Software Foundation (FSF)", "notes": "this is a rare variant of an LGPL exception foudn in glibc", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-unlimited-link-exception-gpl", "other_spdx_license_keys": ["LicenseRef-scancode-unlimited-linking-exception-gpl"]} \ No newline at end of file +{ + "key": "unlimited-linking-exception-gpl", + "short_name": "Unlimited linking exception to GPL", + "name": "Unlimited linking exception to GPL", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "notes": "this is a rare variant of an LGPL exception foudn in glibc", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-unlimited-link-exception-gpl", + "other_spdx_license_keys": [ + "LicenseRef-scancode-unlimited-linking-exception-gpl" + ] +} \ No newline at end of file diff --git a/docs/unlimited-linking-exception-lgpl.LICENSE b/docs/unlimited-linking-exception-lgpl.LICENSE index 3e448859b8..8de81d68ef 100644 --- a/docs/unlimited-linking-exception-lgpl.LICENSE +++ b/docs/unlimited-linking-exception-lgpl.LICENSE @@ -1,3 +1,43 @@ +--- +key: unlimited-linking-exception-lgpl +short_name: Unlimited linking exception to LGPL +name: Unlimited linking exception to LGPL +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.eglibc.org/cgi-bin/viewvc.cgi/branches/eglibc-2_18/libc/io/stat64.c?revision=23787&view=markup +is_exception: yes +spdx_license_key: LicenseRef-scancode-unlimited-link-exception-lgpl +other_spdx_license_keys: + - LicenseRef-scancode-unlimited-linking-exception-lgpl +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +standard_notice: | + Copyright (C) 1996-2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + The GNU C 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. + In addition to the permissions in the GNU Lesser General Public License, + the Free Software Foundation gives you unlimited permission to link the + compiled version of this file with other programs, and to distribute those + programs without any restriction coming from the use of this file. (The GNU + Lesser General Public License restrictions do apply in other respects; for + example, they cover modification of the file, and distribution when not + linked into another program.) + Note that people who make modified versions of this file are not obligated + to grant this special exception for their modified versions; it is their + choice whether to do so. The GNU Lesser General Public License gives + permission to release a modified version without this exception; this + exception also makes it possible to release a modified version which + carries forward this exception. + The GNU C 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 the GNU C Library; if not, see . +--- + In addition to the permissions in the GNU Lesser General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version of this file with other programs, and to distribute those programs diff --git a/docs/unlimited-linking-exception-lgpl.html b/docs/unlimited-linking-exception-lgpl.html index 0932737263..6825537d3b 100644 --- a/docs/unlimited-linking-exception-lgpl.html +++ b/docs/unlimited-linking-exception-lgpl.html @@ -189,7 +189,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unlimited-linking-exception-lgpl.json b/docs/unlimited-linking-exception-lgpl.json index c5a7ef74b5..fc1b65dca9 100644 --- a/docs/unlimited-linking-exception-lgpl.json +++ b/docs/unlimited-linking-exception-lgpl.json @@ -1 +1,17 @@ -{"key": "unlimited-linking-exception-lgpl", "short_name": "Unlimited linking exception to LGPL", "name": "Unlimited linking exception to LGPL", "category": "Copyleft Limited", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.eglibc.org/cgi-bin/viewvc.cgi/branches/eglibc-2_18/libc/io/stat64.c?revision=23787&view=markup", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-unlimited-link-exception-lgpl", "other_spdx_license_keys": ["LicenseRef-scancode-unlimited-linking-exception-lgpl"], "other_urls": ["http://www.gnu.org/licenses/lgpl-2.1.txt"], "standard_notice": "Copyright (C) 1996-2013 Free Software Foundation, Inc.\nThis file is part of the GNU C Library.\nThe GNU C Library is free software; you can redistribute it and/or modify\nit under the terms of the GNU Lesser General Public License as published by\nthe Free Software Foundation.\nIn addition to the permissions in the GNU Lesser General Public License,\nthe Free Software Foundation gives you unlimited permission to link the\ncompiled version of this file with other programs, and to distribute those\nprograms without any restriction coming from the use of this file. (The GNU\nLesser General Public License restrictions do apply in other respects; for\nexample, they cover modification of the file, and distribution when not\nlinked into another program.)\nNote that people who make modified versions of this file are not obligated\nto grant this special exception for their modified versions; it is their\nchoice whether to do so. The GNU Lesser General Public License gives\npermission to release a modified version without this exception; this\nexception also makes it possible to release a modified version which\ncarries forward this exception.\nThe GNU C Library is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\nor FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public\nLicense for more details.\nYou should have received a copy of the GNU Lesser General Public License\nalong with the GNU C Library; if not, see .\n"} \ No newline at end of file +{ + "key": "unlimited-linking-exception-lgpl", + "short_name": "Unlimited linking exception to LGPL", + "name": "Unlimited linking exception to LGPL", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.eglibc.org/cgi-bin/viewvc.cgi/branches/eglibc-2_18/libc/io/stat64.c?revision=23787&view=markup", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-unlimited-link-exception-lgpl", + "other_spdx_license_keys": [ + "LicenseRef-scancode-unlimited-linking-exception-lgpl" + ], + "other_urls": [ + "http://www.gnu.org/licenses/lgpl-2.1.txt" + ], + "standard_notice": "Copyright (C) 1996-2013 Free Software Foundation, Inc.\nThis file is part of the GNU C Library.\nThe GNU C Library is free software; you can redistribute it and/or modify\nit under the terms of the GNU Lesser General Public License as published by\nthe Free Software Foundation.\nIn addition to the permissions in the GNU Lesser General Public License,\nthe Free Software Foundation gives you unlimited permission to link the\ncompiled version of this file with other programs, and to distribute those\nprograms without any restriction coming from the use of this file. (The GNU\nLesser General Public License restrictions do apply in other respects; for\nexample, they cover modification of the file, and distribution when not\nlinked into another program.)\nNote that people who make modified versions of this file are not obligated\nto grant this special exception for their modified versions; it is their\nchoice whether to do so. The GNU Lesser General Public License gives\npermission to release a modified version without this exception; this\nexception also makes it possible to release a modified version which\ncarries forward this exception.\nThe GNU C Library is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\nor FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public\nLicense for more details.\nYou should have received a copy of the GNU Lesser General Public License\nalong with the GNU C Library; if not, see .\n" +} \ No newline at end of file diff --git a/docs/unpbook.LICENSE b/docs/unpbook.LICENSE index 46a38f50ee..def476ca9f 100644 --- a/docs/unpbook.LICENSE +++ b/docs/unpbook.LICENSE @@ -1,3 +1,13 @@ +--- +key: unpbook +short_name: UNIX Network Programming Book License +name: UNIX Network Programming Book License +category: Permissive +owner: UNIX Network Programming Book Authors +homepage_url: http://www.unixnetworkprogramming.com/src.html +spdx_license_key: LicenseRef-scancode-unpbook +--- + Permission to use or modify this software for educational or for commercial purposes, and without fee, is hereby granted, provided that the above copyright notice appears in connection diff --git a/docs/unpbook.html b/docs/unpbook.html index 6d34dfa0e1..952dece5e9 100644 --- a/docs/unpbook.html +++ b/docs/unpbook.html @@ -139,7 +139,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unpbook.json b/docs/unpbook.json index cf5ae39748..77ea1491f8 100644 --- a/docs/unpbook.json +++ b/docs/unpbook.json @@ -1 +1,9 @@ -{"key": "unpbook", "short_name": "UNIX Network Programming Book License", "name": "UNIX Network Programming Book License", "category": "Permissive", "owner": "UNIX Network Programming Book Authors", "homepage_url": "http://www.unixnetworkprogramming.com/src.html", "spdx_license_key": "LicenseRef-scancode-unpbook"} \ No newline at end of file +{ + "key": "unpbook", + "short_name": "UNIX Network Programming Book License", + "name": "UNIX Network Programming Book License", + "category": "Permissive", + "owner": "UNIX Network Programming Book Authors", + "homepage_url": "http://www.unixnetworkprogramming.com/src.html", + "spdx_license_key": "LicenseRef-scancode-unpbook" +} \ No newline at end of file diff --git a/docs/unpublished-source.LICENSE b/docs/unpublished-source.LICENSE index ba19ae7700..899de55065 100644 --- a/docs/unpublished-source.LICENSE +++ b/docs/unpublished-source.LICENSE @@ -1,3 +1,13 @@ +--- +key: unpublished-source +short_name: Unpublished Source License +name: Unpublished Source License +category: Commercial +owner: Unspecified +is_generic: yes +spdx_license_key: LicenseRef-scancode-unpublished-source +--- + THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE of the Copyright Holder. The contents of this file may not be disclosed to third parties, copied or duplicated in any form, in whole or in part, without the prior written diff --git a/docs/unpublished-source.html b/docs/unpublished-source.html index 0e0d0ca263..138e898c83 100644 --- a/docs/unpublished-source.html +++ b/docs/unpublished-source.html @@ -130,7 +130,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unpublished-source.json b/docs/unpublished-source.json index 6c7e1c7f96..f0e9b089c5 100644 --- a/docs/unpublished-source.json +++ b/docs/unpublished-source.json @@ -1 +1,9 @@ -{"key": "unpublished-source", "short_name": "Unpublished Source License", "name": "Unpublished Source License", "category": "Commercial", "owner": "Unspecified", "is_generic": true, "spdx_license_key": "LicenseRef-scancode-unpublished-source"} \ No newline at end of file +{ + "key": "unpublished-source", + "short_name": "Unpublished Source License", + "name": "Unpublished Source License", + "category": "Commercial", + "owner": "Unspecified", + "is_generic": true, + "spdx_license_key": "LicenseRef-scancode-unpublished-source" +} \ No newline at end of file diff --git a/docs/unrar.LICENSE b/docs/unrar.LICENSE index b5e747dbc5..52efade409 100644 --- a/docs/unrar.LICENSE +++ b/docs/unrar.LICENSE @@ -1,3 +1,14 @@ +--- +key: unrar +short_name: UnRar License +name: UnRar License +category: Source-available +owner: RAR +homepage_url: http://sharpnews.weebly.com/uploads/1/2/7/9/1279604/license.txt +spdx_license_key: LicenseRef-scancode-unrar +osi_url: http://www.rarlab.com/rar/unrarsrc-5.2.7.tar.gz +--- + ****** ***** ****** UnRAR - free utility for RAR archives ** ** ** ** ** ** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ****** ******* ****** License for use and distribution of diff --git a/docs/unrar.html b/docs/unrar.html index d3cd3fb856..ca92386413 100644 --- a/docs/unrar.html +++ b/docs/unrar.html @@ -173,7 +173,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unrar.json b/docs/unrar.json index 776a585092..fa679a6eff 100644 --- a/docs/unrar.json +++ b/docs/unrar.json @@ -1 +1,10 @@ -{"key": "unrar", "short_name": "UnRar License", "name": "UnRar License", "category": "Source-available", "owner": "RAR", "homepage_url": "http://sharpnews.weebly.com/uploads/1/2/7/9/1279604/license.txt", "spdx_license_key": "LicenseRef-scancode-unrar", "osi_url": "http://www.rarlab.com/rar/unrarsrc-5.2.7.tar.gz"} \ No newline at end of file +{ + "key": "unrar", + "short_name": "UnRar License", + "name": "UnRar License", + "category": "Source-available", + "owner": "RAR", + "homepage_url": "http://sharpnews.weebly.com/uploads/1/2/7/9/1279604/license.txt", + "spdx_license_key": "LicenseRef-scancode-unrar", + "osi_url": "http://www.rarlab.com/rar/unrarsrc-5.2.7.tar.gz" +} \ No newline at end of file diff --git a/docs/unsplash.LICENSE b/docs/unsplash.LICENSE index 5266747545..d6a7fb1653 100644 --- a/docs/unsplash.LICENSE +++ b/docs/unsplash.LICENSE @@ -1,3 +1,14 @@ +--- +key: unsplash +short_name: Unsplash License +name: Unsplash License +category: Free Restricted +owner: Unsplash +homepage_url: https://unsplash.com/license +spdx_license_key: LicenseRef-scancode-unsplash +faq_url: https://help.unsplash.com/en/collections/1463188-unsplash-license +--- + Unsplash grants you an irrevocable, nonexclusive, worldwide copyright license to download, copy, modify, distribute, perform, and use photos from Unsplash for free, including for commercial purposes, without permission from or attributing the photographer diff --git a/docs/unsplash.html b/docs/unsplash.html index ec0bbe1a7b..bccc07890f 100644 --- a/docs/unsplash.html +++ b/docs/unsplash.html @@ -138,7 +138,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/unsplash.json b/docs/unsplash.json index b77f8f4356..e2b0d5957b 100644 --- a/docs/unsplash.json +++ b/docs/unsplash.json @@ -1 +1,10 @@ -{"key": "unsplash", "short_name": "Unsplash License", "name": "Unsplash License", "category": "Free Restricted", "owner": "Unsplash", "homepage_url": "https://unsplash.com/license", "spdx_license_key": "LicenseRef-scancode-unsplash", "faq_url": "https://help.unsplash.com/en/collections/1463188-unsplash-license"} \ No newline at end of file +{ + "key": "unsplash", + "short_name": "Unsplash License", + "name": "Unsplash License", + "category": "Free Restricted", + "owner": "Unsplash", + "homepage_url": "https://unsplash.com/license", + "spdx_license_key": "LicenseRef-scancode-unsplash", + "faq_url": "https://help.unsplash.com/en/collections/1463188-unsplash-license" +} \ No newline at end of file diff --git a/docs/uofu-rfpl.LICENSE b/docs/uofu-rfpl.LICENSE index f6ff5678e3..dbdc0d8e74 100644 --- a/docs/uofu-rfpl.LICENSE +++ b/docs/uofu-rfpl.LICENSE @@ -1,3 +1,21 @@ +--- +key: uofu-rfpl +short_name: UURF Public License +name: University of Utah Research Foundation Public License +category: Proprietary Free +owner: University of Utah Research Foundation (UURF) +homepage_url: http://www.cs.utah.edu/~gk/teem/txt/LICENSE.txt +spdx_license_key: LicenseRef-scancode-uofu-rfpl +text_urls: + - http://www.cs.utah.edu/~gk/teem/txt/LICENSE.txt +ignorable_copyrights: + - Copyright (c) 2001, 1998 University of Utah +ignorable_holders: + - University of Utah +ignorable_authors: + - the University of Utah +--- + UNIVERSITY OF UTAH RESEARCH FOUNDATION PUBLIC LICENSE 1. Definitions diff --git a/docs/uofu-rfpl.html b/docs/uofu-rfpl.html index 0a0a4db6c4..d2b4632840 100644 --- a/docs/uofu-rfpl.html +++ b/docs/uofu-rfpl.html @@ -413,7 +413,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/uofu-rfpl.json b/docs/uofu-rfpl.json index 4d1fa72e29..21e58af814 100644 --- a/docs/uofu-rfpl.json +++ b/docs/uofu-rfpl.json @@ -1 +1,21 @@ -{"key": "uofu-rfpl", "short_name": "UURF Public License", "name": "University of Utah Research Foundation Public License", "category": "Proprietary Free", "owner": "University of Utah Research Foundation (UURF)", "homepage_url": "http://www.cs.utah.edu/~gk/teem/txt/LICENSE.txt", "spdx_license_key": "LicenseRef-scancode-uofu-rfpl", "text_urls": ["http://www.cs.utah.edu/~gk/teem/txt/LICENSE.txt"], "ignorable_copyrights": ["Copyright (c) 2001, 1998 University of Utah"], "ignorable_holders": ["University of Utah"], "ignorable_authors": ["the University of Utah"]} \ No newline at end of file +{ + "key": "uofu-rfpl", + "short_name": "UURF Public License", + "name": "University of Utah Research Foundation Public License", + "category": "Proprietary Free", + "owner": "University of Utah Research Foundation (UURF)", + "homepage_url": "http://www.cs.utah.edu/~gk/teem/txt/LICENSE.txt", + "spdx_license_key": "LicenseRef-scancode-uofu-rfpl", + "text_urls": [ + "http://www.cs.utah.edu/~gk/teem/txt/LICENSE.txt" + ], + "ignorable_copyrights": [ + "Copyright (c) 2001, 1998 University of Utah" + ], + "ignorable_holders": [ + "University of Utah" + ], + "ignorable_authors": [ + "the University of Utah" + ] +} \ No newline at end of file diff --git a/docs/uoi-ncsa.LICENSE b/docs/uoi-ncsa.LICENSE index 4096b20d0d..c09f536295 100644 --- a/docs/uoi-ncsa.LICENSE +++ b/docs/uoi-ncsa.LICENSE @@ -1,3 +1,24 @@ +--- +key: uoi-ncsa +short_name: NCSA Open Source License +name: University of Illinois/NCSA Open Source License +category: Permissive +owner: NCSA - University of Illinois +homepage_url: http://www.otm.illinois.edu/faculty/forms/opensource.asp +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: NCSA +text_urls: + - http://www.otm.illinois.edu/faculty/forms/opensource.asp +osi_url: http://www.opensource.org/licenses/UoI-NCSA.php +other_urls: + - http://otm.illinois.edu/uiuc_openSource + - http://www.ncsa.uiuc.edu/ + - http://www.opensource.org/licenses/NCSA + - http://www.stlinux.com/node/140 + - https://opensource.org/licenses/NCSA +minimum_coverage: 50 +--- + University of Illinois/NCSA Open Source License Permission is hereby granted, free of charge, to any person obtaining a copy of this @@ -23,4 +44,4 @@ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE. +SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE. \ No newline at end of file diff --git a/docs/uoi-ncsa.html b/docs/uoi-ncsa.html index af926e9a9a..ec827ea17d 100644 --- a/docs/uoi-ncsa.html +++ b/docs/uoi-ncsa.html @@ -179,8 +179,7 @@ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE. - +SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE.
@@ -192,7 +191,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/uoi-ncsa.json b/docs/uoi-ncsa.json index 26ef57ad0a..eb4d4c8643 100644 --- a/docs/uoi-ncsa.json +++ b/docs/uoi-ncsa.json @@ -1 +1,22 @@ -{"key": "uoi-ncsa", "short_name": "NCSA Open Source License", "name": "University of Illinois/NCSA Open Source License", "category": "Permissive", "owner": "NCSA - University of Illinois", "homepage_url": "http://www.otm.illinois.edu/faculty/forms/opensource.asp", "notes": "Per SPDX.org, this license is OSI certified", "spdx_license_key": "NCSA", "text_urls": ["http://www.otm.illinois.edu/faculty/forms/opensource.asp"], "osi_url": "http://www.opensource.org/licenses/UoI-NCSA.php", "other_urls": ["http://otm.illinois.edu/uiuc_openSource", "http://www.ncsa.uiuc.edu/", "http://www.opensource.org/licenses/NCSA", "http://www.stlinux.com/node/140", "https://opensource.org/licenses/NCSA"], "minimum_coverage": 50} \ No newline at end of file +{ + "key": "uoi-ncsa", + "short_name": "NCSA Open Source License", + "name": "University of Illinois/NCSA Open Source License", + "category": "Permissive", + "owner": "NCSA - University of Illinois", + "homepage_url": "http://www.otm.illinois.edu/faculty/forms/opensource.asp", + "notes": "Per SPDX.org, this license is OSI certified", + "spdx_license_key": "NCSA", + "text_urls": [ + "http://www.otm.illinois.edu/faculty/forms/opensource.asp" + ], + "osi_url": "http://www.opensource.org/licenses/UoI-NCSA.php", + "other_urls": [ + "http://otm.illinois.edu/uiuc_openSource", + "http://www.ncsa.uiuc.edu/", + "http://www.opensource.org/licenses/NCSA", + "http://www.stlinux.com/node/140", + "https://opensource.org/licenses/NCSA" + ], + "minimum_coverage": 50 +} \ No newline at end of file diff --git a/docs/upl-1.0.LICENSE b/docs/upl-1.0.LICENSE index 201e4a3fc0..29ae8419ca 100644 --- a/docs/upl-1.0.LICENSE +++ b/docs/upl-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: upl-1.0 +short_name: UPL 1.0 +name: Universal Permissive License (UPL) v1.0 +category: Permissive +owner: Oracle Corporation +homepage_url: http://opensource.org/licenses/UPL +spdx_license_key: UPL-1.0 +osi_url: http://opensource.org/licenses/UPL +other_urls: + - http://h30499.www3.hp.com/t5/HP-Software-Solutions-Blog/Use-Oracle-s-UPL-Abandon-Your-Intellectual-Property/ba-p/6485626#.VQsAeWTF8z0 + - https://opensource.org/licenses/UPL + - https://oss.oracle.com/licenses/upl/index.html + - https://www.jcp.org/aboutJava/communityprocess/ec-public/materials/2014-04-15/UPL.pdf +--- + The Universal Permissive License (UPL), Version 1.0 Subject to the condition set forth below, permission is hereby granted to any diff --git a/docs/upl-1.0.html b/docs/upl-1.0.html index 8cd3d0d2d7..4b1f1a1a4c 100644 --- a/docs/upl-1.0.html +++ b/docs/upl-1.0.html @@ -176,7 +176,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/upl-1.0.json b/docs/upl-1.0.json index 0b7c06284a..bbbd883320 100644 --- a/docs/upl-1.0.json +++ b/docs/upl-1.0.json @@ -1 +1,16 @@ -{"key": "upl-1.0", "short_name": "UPL 1.0", "name": "Universal Permissive License (UPL) v1.0", "category": "Permissive", "owner": "Oracle Corporation", "homepage_url": "http://opensource.org/licenses/UPL", "spdx_license_key": "UPL-1.0", "osi_url": "http://opensource.org/licenses/UPL", "other_urls": ["http://h30499.www3.hp.com/t5/HP-Software-Solutions-Blog/Use-Oracle-s-UPL-Abandon-Your-Intellectual-Property/ba-p/6485626#.VQsAeWTF8z0", "https://opensource.org/licenses/UPL", "https://oss.oracle.com/licenses/upl/index.html", "https://www.jcp.org/aboutJava/communityprocess/ec-public/materials/2014-04-15/UPL.pdf"]} \ No newline at end of file +{ + "key": "upl-1.0", + "short_name": "UPL 1.0", + "name": "Universal Permissive License (UPL) v1.0", + "category": "Permissive", + "owner": "Oracle Corporation", + "homepage_url": "http://opensource.org/licenses/UPL", + "spdx_license_key": "UPL-1.0", + "osi_url": "http://opensource.org/licenses/UPL", + "other_urls": [ + "http://h30499.www3.hp.com/t5/HP-Software-Solutions-Blog/Use-Oracle-s-UPL-Abandon-Your-Intellectual-Property/ba-p/6485626#.VQsAeWTF8z0", + "https://opensource.org/licenses/UPL", + "https://oss.oracle.com/licenses/upl/index.html", + "https://www.jcp.org/aboutJava/communityprocess/ec-public/materials/2014-04-15/UPL.pdf" + ] +} \ No newline at end of file diff --git a/docs/upx-exception-2.0-plus.LICENSE b/docs/upx-exception-2.0-plus.LICENSE index 28accc1e3f..fdf313e796 100644 --- a/docs/upx-exception-2.0-plus.LICENSE +++ b/docs/upx-exception-2.0-plus.LICENSE @@ -1,3 +1,100 @@ +--- +key: upx-exception-2.0-plus +short_name: UPX exception to GPL 2.0 or later +name: UPX exception to GPL 2.0 or later +category: Copyleft Limited +owner: UPX +homepage_url: https://github.com/upx/upx/blob/master/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-upx-exception-2.0-plus +other_urls: + - http://wildsau.idv.uni-linz.ac.at/mfx/upx.html + - http://www.nexus.hu/upx + - http://upx.tsx.org + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://www.gnu.org/licenses/gpl-3.0.txt +minimum_coverage: 50 +standard_notice: | + The Ultimate Packer for eXecutables + Copyright (c) 1996-2000 Markus Oberhumer & Laszlo Molnar + http://wildsau.idv.uni-linz.ac.at/mfx/upx.html + http://www.nexus.hu/upx + http://upx.tsx.org + PLEASE CAREFULLY READ THIS LICENSE AGREEMENT, ESPECIALLY IF YOU PLAN + TO MODIFY THE UPX SOURCE CODE OR USE A MODIFIED UPX VERSION. + ABSTRACT + ======== + UPX and UCL are copyrighted software distributed under the terms of the GNU + General Public License (hereinafter the "GPL"). + The stub which is imbedded in each UPX compressed program is part of UPX + and UCL, and contains code that is under our copyright. The terms of the + GNU General Public License still apply as compressing a program is a + special form of linking with our stub. + As a special exception we grant the free usage of UPX for all executables, + including commercial programs. + See below for details and restrictions. + COPYRIGHT + ========= + UPX and UCL are copyrighted software. All rights remain with the authors. + UPX is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer + UPX is Copyright (C) 1996-2000 Laszlo Molnar + UCL is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer + GNU GENERAL PUBLIC LICENSE + ========================== + UPX and the UCL library are free software; you can redistribute them and/or + modify them under the terms of the GNU General Public License as published + by the Free Software Foundation; either version 2 of the License, or (at + your option) any later version. + UPX and UCL are distributed in the hope that they 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 the file COPYING. + SPECIAL EXCEPTION FOR COMPRESSED EXECUTABLES + ============================================ + The stub which is imbedded in each UPX compressed program is part of UPX + and UCL, and contains code that is under our copyright. The terms of the + GNU General Public License still apply as compressing a program is a + special form of linking with our stub. + Hereby Markus F.X.J. Oberhumer and Laszlo Molnar grant you special + permission to freely use and distribute all UPX compressed programs + (including commercial ones), subject to the following restrictions: + 1. You must compress your program with a completely unmodified UPX version; + either with our precompiled version, or (at your option) with a self + compiled version of the unmodified UPX sources as distributed by us. + 2. This also implies that the UPX stub must be completely unmodfied, + i.e.the stub imbedded in your compressed program must be byte-identical to + the stub that is produced by the official unmodified UPX version. + 3. The decompressor and any other code from the stub must exclusively get + used by the unmodified UPX stub for decompressing your program at program + startup. No portion of the stub may get read, copied, called or otherwise + get used or accessed by your program. + ANNOTATIONS + =========== + - You can use a modified UPX version or modified UPX stub only for programs + that are compatible with the GNU General Public License. + - We grant you special permission to freely use and distribute all UPX + compressed programs. But any modification of the UPX stub (such as, but not + limited to, removing our copyright string or making your program non- + decompressible) will immediately revoke your right to use and distribute a + UPX compressed program. + - UPX is not a software protection tool; by requiring that you use the + unmodified UPX version for your proprietary programs we + make sure that any user can decompress your program. This protects both you + and your users as nobody can hide malicious code - any program that cannot + be decompressed is highly suspicious by definition. + - You can integrate all or part of UPX and UCL into projects that are + compatible with the GNU GPL, but obviously you cannot grant any special + exceptions beyond the GPL for our code in your project. + - We want to actively support manufacturers of virus scanners and similar + security software. Please contact us if you would like to incorporate parts + of UPX or UCL into such a product. + Markus F.X.J. Oberhumer Laszlo Molnar + markus.oberhumer@jk.uni-linz.ac.at ml1050@cdata.tvnet.hu + Linz, Austria, 25 Feb 2000 +--- + SPECIAL EXCEPTION FOR COMPRESSED EXECUTABLES ============================================ diff --git a/docs/upx-exception-2.0-plus.html b/docs/upx-exception-2.0-plus.html index 344386aced..71de0e4428 100644 --- a/docs/upx-exception-2.0-plus.html +++ b/docs/upx-exception-2.0-plus.html @@ -246,7 +246,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/upx-exception-2.0-plus.json b/docs/upx-exception-2.0-plus.json index 132d990d5a..28c2dd55c0 100644 --- a/docs/upx-exception-2.0-plus.json +++ b/docs/upx-exception-2.0-plus.json @@ -1 +1,19 @@ -{"key": "upx-exception-2.0-plus", "short_name": "UPX exception to GPL 2.0 or later", "name": "UPX exception to GPL 2.0 or later", "category": "Copyleft Limited", "owner": "UPX", "homepage_url": "https://github.com/upx/upx/blob/master/LICENSE", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-upx-exception-2.0-plus", "other_urls": ["http://wildsau.idv.uni-linz.ac.at/mfx/upx.html", "http://www.nexus.hu/upx", "http://upx.tsx.org", "http://www.gnu.org/licenses/gpl-2.0.txt", "http://www.gnu.org/licenses/gpl-3.0.txt"], "minimum_coverage": 50, "standard_notice": "The Ultimate Packer for eXecutables\nCopyright (c) 1996-2000 Markus Oberhumer & Laszlo Molnar\nhttp://wildsau.idv.uni-linz.ac.at/mfx/upx.html\nhttp://www.nexus.hu/upx\nhttp://upx.tsx.org\nPLEASE CAREFULLY READ THIS LICENSE AGREEMENT, ESPECIALLY IF YOU PLAN\nTO MODIFY THE UPX SOURCE CODE OR USE A MODIFIED UPX VERSION.\nABSTRACT\n========\nUPX and UCL are copyrighted software distributed under the terms of the GNU\nGeneral Public License (hereinafter the \"GPL\").\nThe stub which is imbedded in each UPX compressed program is part of UPX\nand UCL, and contains code that is under our copyright. The terms of the\nGNU General Public License still apply as compressing a program is a\nspecial form of linking with our stub.\nAs a special exception we grant the free usage of UPX for all executables,\nincluding commercial programs.\nSee below for details and restrictions.\nCOPYRIGHT\n=========\nUPX and UCL are copyrighted software. All rights remain with the authors.\nUPX is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer\nUPX is Copyright (C) 1996-2000 Laszlo Molnar\nUCL is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer\nGNU GENERAL PUBLIC LICENSE\n==========================\nUPX and the UCL library are free software; you can redistribute them and/or\nmodify them under the terms of the GNU General Public License as published\nby the Free Software Foundation; either version 2 of the License, or (at\nyour option) any later version.\nUPX and UCL are distributed in the hope that they will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\nor FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this program; see the file COPYING.\nSPECIAL EXCEPTION FOR COMPRESSED EXECUTABLES\n============================================\nThe stub which is imbedded in each UPX compressed program is part of UPX\nand UCL, and contains code that is under our copyright. The terms of the\nGNU General Public License still apply as compressing a program is a\nspecial form of linking with our stub.\nHereby Markus F.X.J. Oberhumer and Laszlo Molnar grant you special\npermission to freely use and distribute all UPX compressed programs\n(including commercial ones), subject to the following restrictions:\n1. You must compress your program with a completely unmodified UPX version;\neither with our precompiled version, or (at your option) with a self\ncompiled version of the unmodified UPX sources as distributed by us.\n2. This also implies that the UPX stub must be completely unmodfied,\ni.e.the stub imbedded in your compressed program must be byte-identical to\nthe stub that is produced by the official unmodified UPX version.\n3. The decompressor and any other code from the stub must exclusively get\nused by the unmodified UPX stub for decompressing your program at program\nstartup. No portion of the stub may get read, copied, called or otherwise\nget used or accessed by your program.\nANNOTATIONS\n===========\n- You can use a modified UPX version or modified UPX stub only for programs\nthat are compatible with the GNU General Public License.\n- We grant you special permission to freely use and distribute all UPX\ncompressed programs. But any modification of the UPX stub (such as, but not\nlimited to, removing our copyright string or making your program non-\ndecompressible) will immediately revoke your right to use and distribute a\nUPX compressed program.\n- UPX is not a software protection tool; by requiring that you use the\nunmodified UPX version for your proprietary programs we\nmake sure that any user can decompress your program. This protects both you\nand your users as nobody can hide malicious code - any program that cannot\nbe decompressed is highly suspicious by definition.\n- You can integrate all or part of UPX and UCL into projects that are\ncompatible with the GNU GPL, but obviously you cannot grant any special\nexceptions beyond the GPL for our code in your project.\n- We want to actively support manufacturers of virus scanners and similar\nsecurity software. Please contact us if you would like to incorporate parts\nof UPX or UCL into such a product.\nMarkus F.X.J. Oberhumer Laszlo Molnar\nmarkus.oberhumer@jk.uni-linz.ac.at ml1050@cdata.tvnet.hu\nLinz, Austria, 25 Feb 2000\n"} \ No newline at end of file +{ + "key": "upx-exception-2.0-plus", + "short_name": "UPX exception to GPL 2.0 or later", + "name": "UPX exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "UPX", + "homepage_url": "https://github.com/upx/upx/blob/master/LICENSE", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-upx-exception-2.0-plus", + "other_urls": [ + "http://wildsau.idv.uni-linz.ac.at/mfx/upx.html", + "http://www.nexus.hu/upx", + "http://upx.tsx.org", + "http://www.gnu.org/licenses/gpl-2.0.txt", + "http://www.gnu.org/licenses/gpl-3.0.txt" + ], + "minimum_coverage": 50, + "standard_notice": "The Ultimate Packer for eXecutables\nCopyright (c) 1996-2000 Markus Oberhumer & Laszlo Molnar\nhttp://wildsau.idv.uni-linz.ac.at/mfx/upx.html\nhttp://www.nexus.hu/upx\nhttp://upx.tsx.org\nPLEASE CAREFULLY READ THIS LICENSE AGREEMENT, ESPECIALLY IF YOU PLAN\nTO MODIFY THE UPX SOURCE CODE OR USE A MODIFIED UPX VERSION.\nABSTRACT\n========\nUPX and UCL are copyrighted software distributed under the terms of the GNU\nGeneral Public License (hereinafter the \"GPL\").\nThe stub which is imbedded in each UPX compressed program is part of UPX\nand UCL, and contains code that is under our copyright. The terms of the\nGNU General Public License still apply as compressing a program is a\nspecial form of linking with our stub.\nAs a special exception we grant the free usage of UPX for all executables,\nincluding commercial programs.\nSee below for details and restrictions.\nCOPYRIGHT\n=========\nUPX and UCL are copyrighted software. All rights remain with the authors.\nUPX is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer\nUPX is Copyright (C) 1996-2000 Laszlo Molnar\nUCL is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer\nGNU GENERAL PUBLIC LICENSE\n==========================\nUPX and the UCL library are free software; you can redistribute them and/or\nmodify them under the terms of the GNU General Public License as published\nby the Free Software Foundation; either version 2 of the License, or (at\nyour option) any later version.\nUPX and UCL are distributed in the hope that they will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\nor FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this program; see the file COPYING.\nSPECIAL EXCEPTION FOR COMPRESSED EXECUTABLES\n============================================\nThe stub which is imbedded in each UPX compressed program is part of UPX\nand UCL, and contains code that is under our copyright. The terms of the\nGNU General Public License still apply as compressing a program is a\nspecial form of linking with our stub.\nHereby Markus F.X.J. Oberhumer and Laszlo Molnar grant you special\npermission to freely use and distribute all UPX compressed programs\n(including commercial ones), subject to the following restrictions:\n1. You must compress your program with a completely unmodified UPX version;\neither with our precompiled version, or (at your option) with a self\ncompiled version of the unmodified UPX sources as distributed by us.\n2. This also implies that the UPX stub must be completely unmodfied,\ni.e.the stub imbedded in your compressed program must be byte-identical to\nthe stub that is produced by the official unmodified UPX version.\n3. The decompressor and any other code from the stub must exclusively get\nused by the unmodified UPX stub for decompressing your program at program\nstartup. No portion of the stub may get read, copied, called or otherwise\nget used or accessed by your program.\nANNOTATIONS\n===========\n- You can use a modified UPX version or modified UPX stub only for programs\nthat are compatible with the GNU General Public License.\n- We grant you special permission to freely use and distribute all UPX\ncompressed programs. But any modification of the UPX stub (such as, but not\nlimited to, removing our copyright string or making your program non-\ndecompressible) will immediately revoke your right to use and distribute a\nUPX compressed program.\n- UPX is not a software protection tool; by requiring that you use the\nunmodified UPX version for your proprietary programs we\nmake sure that any user can decompress your program. This protects both you\nand your users as nobody can hide malicious code - any program that cannot\nbe decompressed is highly suspicious by definition.\n- You can integrate all or part of UPX and UCL into projects that are\ncompatible with the GNU GPL, but obviously you cannot grant any special\nexceptions beyond the GPL for our code in your project.\n- We want to actively support manufacturers of virus scanners and similar\nsecurity software. Please contact us if you would like to incorporate parts\nof UPX or UCL into such a product.\nMarkus F.X.J. Oberhumer Laszlo Molnar\nmarkus.oberhumer@jk.uni-linz.ac.at ml1050@cdata.tvnet.hu\nLinz, Austria, 25 Feb 2000\n" +} \ No newline at end of file diff --git a/docs/us-govt-public-domain.LICENSE b/docs/us-govt-public-domain.LICENSE index 17f2556494..c66e19c7dc 100644 --- a/docs/us-govt-public-domain.LICENSE +++ b/docs/us-govt-public-domain.LICENSE @@ -1,3 +1,20 @@ +--- +key: us-govt-public-domain +short_name: US Government Public Domain +name: United States Government Public Domain +category: Public Domain +owner: US Government +notes: Per 17 U.S. Code § 105. Subject matter of copyright, United States Government works + Copyright protection under this title is not available for any work of the United States + Government +is_generic: yes +spdx_license_key: LicenseRef-scancode-us-govt-public-domain +other_urls: + - https://www.law.cornell.edu/uscode/text/17/105 + - https://en.wikipedia.org/wiki/Copyright_status_of_works_by_the_federal_government_of_the_United_States + - https://en.wikipedia.org/wiki/Wikipedia:Public_domain#U.S._government_works +--- + 17 U.S. Code $ 105. Subject matter of copyright: United States Government works Copyright protection under this title is not available for any work of the diff --git a/docs/us-govt-public-domain.html b/docs/us-govt-public-domain.html index 2c29bbc856..27d9a52f5a 100644 --- a/docs/us-govt-public-domain.html +++ b/docs/us-govt-public-domain.html @@ -146,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/us-govt-public-domain.json b/docs/us-govt-public-domain.json index 5f20db0c1f..6f3d4320dd 100644 --- a/docs/us-govt-public-domain.json +++ b/docs/us-govt-public-domain.json @@ -1 +1,15 @@ -{"key": "us-govt-public-domain", "short_name": "US Government Public Domain", "name": "United States Government Public Domain", "category": "Public Domain", "owner": "US Government", "notes": "Per 17 U.S. Code \u00a7\u202f105. Subject matter of copyright, United States Government works Copyright protection under this title is not available for any work of the United States Government", "is_generic": true, "spdx_license_key": "LicenseRef-scancode-us-govt-public-domain", "other_urls": ["https://www.law.cornell.edu/uscode/text/17/105", "https://en.wikipedia.org/wiki/Copyright_status_of_works_by_the_federal_government_of_the_United_States", "https://en.wikipedia.org/wiki/Wikipedia:Public_domain#U.S._government_works"]} \ No newline at end of file +{ + "key": "us-govt-public-domain", + "short_name": "US Government Public Domain", + "name": "United States Government Public Domain", + "category": "Public Domain", + "owner": "US Government", + "notes": "Per 17 U.S. Code \u00a7\u202f105. Subject matter of copyright, United States Government works Copyright protection under this title is not available for any work of the United States Government", + "is_generic": true, + "spdx_license_key": "LicenseRef-scancode-us-govt-public-domain", + "other_urls": [ + "https://www.law.cornell.edu/uscode/text/17/105", + "https://en.wikipedia.org/wiki/Copyright_status_of_works_by_the_federal_government_of_the_United_States", + "https://en.wikipedia.org/wiki/Wikipedia:Public_domain#U.S._government_works" + ] +} \ No newline at end of file diff --git a/docs/us-govt-unlimited-rights.LICENSE b/docs/us-govt-unlimited-rights.LICENSE index 0b98c0a264..53bfb6cc7b 100644 --- a/docs/us-govt-unlimited-rights.LICENSE +++ b/docs/us-govt-unlimited-rights.LICENSE @@ -1,3 +1,17 @@ +--- +key: us-govt-unlimited-rights +short_name: US Government Unlimited Rights +name: US Government Grant of Unlimited Rights +category: Permissive +owner: US Government +spdx_license_key: LicenseRef-scancode-us-govt-unlimited-rights +text_urls: + - https://github.com/Slicer/Slicer/blob/v4.6.2/COPYRIGHT.txt +other_urls: + - https://github.com/fernando-rodriguez/freexc16/blob/95cad1ccc9568b9e83ddc25a28711011546a5c63/src/XC_GCC/gcc/gcc/testsuite/ada/acats/tests/a/a22006b.ada + - https://github.com/AppliedIS/tau-ui/blob/b6af0deb755b412e7d24e9f3d78a6173180d3619/COPYRIGHT.txt +--- + Grant of Unlimited Rights Under contracts , the U.S. Government obtained diff --git a/docs/us-govt-unlimited-rights.html b/docs/us-govt-unlimited-rights.html index 0205ed3020..f650bed3fb 100644 --- a/docs/us-govt-unlimited-rights.html +++ b/docs/us-govt-unlimited-rights.html @@ -157,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/us-govt-unlimited-rights.json b/docs/us-govt-unlimited-rights.json index 1b2182845c..9901cde443 100644 --- a/docs/us-govt-unlimited-rights.json +++ b/docs/us-govt-unlimited-rights.json @@ -1 +1,15 @@ -{"key": "us-govt-unlimited-rights", "short_name": "US Government Unlimited Rights", "name": "US Government Grant of Unlimited Rights", "category": "Permissive", "owner": "US Government", "spdx_license_key": "LicenseRef-scancode-us-govt-unlimited-rights", "text_urls": ["https://github.com/Slicer/Slicer/blob/v4.6.2/COPYRIGHT.txt"], "other_urls": ["https://github.com/fernando-rodriguez/freexc16/blob/95cad1ccc9568b9e83ddc25a28711011546a5c63/src/XC_GCC/gcc/gcc/testsuite/ada/acats/tests/a/a22006b.ada", "https://github.com/AppliedIS/tau-ui/blob/b6af0deb755b412e7d24e9f3d78a6173180d3619/COPYRIGHT.txt"]} \ No newline at end of file +{ + "key": "us-govt-unlimited-rights", + "short_name": "US Government Unlimited Rights", + "name": "US Government Grant of Unlimited Rights", + "category": "Permissive", + "owner": "US Government", + "spdx_license_key": "LicenseRef-scancode-us-govt-unlimited-rights", + "text_urls": [ + "https://github.com/Slicer/Slicer/blob/v4.6.2/COPYRIGHT.txt" + ], + "other_urls": [ + "https://github.com/fernando-rodriguez/freexc16/blob/95cad1ccc9568b9e83ddc25a28711011546a5c63/src/XC_GCC/gcc/gcc/testsuite/ada/acats/tests/a/a22006b.ada", + "https://github.com/AppliedIS/tau-ui/blob/b6af0deb755b412e7d24e9f3d78a6173180d3619/COPYRIGHT.txt" + ] +} \ No newline at end of file diff --git a/docs/usrobotics-permissive.LICENSE b/docs/usrobotics-permissive.LICENSE index ec9ae62926..a68cff7e5a 100644 --- a/docs/usrobotics-permissive.LICENSE +++ b/docs/usrobotics-permissive.LICENSE @@ -1,3 +1,31 @@ +--- +key: usrobotics-permissive +short_name: USRobotics Permissive License +name: USRobotics Permissive License +category: Permissive +owner: USRobotics +homepage_url: http://web.mit.edu/kolya/.f/root/athena.mit.edu/net/project/radius/3.6B/src/resources.c +spdx_license_key: LicenseRef-scancode-usrobotics-permissive +standard_notice: | + /* + * + * Copyright (c) 1996 U.S. Robotics, Access Corp. + * All rights reserved. + * + * Permission to copy, display, distribute and make derivative works + * from this material in whole or in part for any purpose is granted + * provided that the above copyright notice and this paragraph are + * duplicated in all copies. THIS SOFTWARE IS PROVIDED "AS IS" AND + * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING, WITHOUT + * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE. + * + * If providing code not subject to a copyright please indicate that the + * code has been dedicated to the public. + * + */ +--- + Permission to copy, display, distribute and make derivative works from this material in whole or in part for any purpose is granted provided that the above copyright notice and this paragraph are diff --git a/docs/usrobotics-permissive.html b/docs/usrobotics-permissive.html index a652c310ae..ed62b379e1 100644 --- a/docs/usrobotics-permissive.html +++ b/docs/usrobotics-permissive.html @@ -160,7 +160,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/usrobotics-permissive.json b/docs/usrobotics-permissive.json index 7477dcc3ab..9600112fd6 100644 --- a/docs/usrobotics-permissive.json +++ b/docs/usrobotics-permissive.json @@ -1 +1,10 @@ -{"key": "usrobotics-permissive", "short_name": "USRobotics Permissive License", "name": "USRobotics Permissive License", "category": "Permissive", "owner": "USRobotics", "homepage_url": "http://web.mit.edu/kolya/.f/root/athena.mit.edu/net/project/radius/3.6B/src/resources.c", "spdx_license_key": "LicenseRef-scancode-usrobotics-permissive", "standard_notice": "/*\n*\n* Copyright (c) 1996 U.S. Robotics, Access Corp.\n* All rights reserved.\n*\n* Permission to copy, display, distribute and make derivative works\n* from this material in whole or in part for any purpose is granted\n* provided that the above copyright notice and this paragraph are\n* duplicated in all copies. THIS SOFTWARE IS PROVIDED \"AS IS\" AND\n* WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING, WITHOUT\n* LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\n* FOR A PARTICULAR PURPOSE.\n*\n* If providing code not subject to a copyright please indicate that the\n* code has been dedicated to the public.\n*\n*/\n"} \ No newline at end of file +{ + "key": "usrobotics-permissive", + "short_name": "USRobotics Permissive License", + "name": "USRobotics Permissive License", + "category": "Permissive", + "owner": "USRobotics", + "homepage_url": "http://web.mit.edu/kolya/.f/root/athena.mit.edu/net/project/radius/3.6B/src/resources.c", + "spdx_license_key": "LicenseRef-scancode-usrobotics-permissive", + "standard_notice": "/*\n*\n* Copyright (c) 1996 U.S. Robotics, Access Corp.\n* All rights reserved.\n*\n* Permission to copy, display, distribute and make derivative works\n* from this material in whole or in part for any purpose is granted\n* provided that the above copyright notice and this paragraph are\n* duplicated in all copies. THIS SOFTWARE IS PROVIDED \"AS IS\" AND\n* WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING, WITHOUT\n* LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\n* FOR A PARTICULAR PURPOSE.\n*\n* If providing code not subject to a copyright please indicate that the\n* code has been dedicated to the public.\n*\n*/\n" +} \ No newline at end of file diff --git a/docs/utopia.LICENSE b/docs/utopia.LICENSE index a72d452639..1a978656eb 100644 --- a/docs/utopia.LICENSE +++ b/docs/utopia.LICENSE @@ -1,3 +1,22 @@ +--- +key: utopia +short_name: Utopia Typeface License +name: License to TeX Users Group for the Utopia Typeface +category: Permissive +owner: Adobe Systems +homepage_url: http://tug.org/fonts/utopia +spdx_license_key: LicenseRef-scancode-utopia +text_urls: + - https://tug.org/fonts/utopia/LICENSE-utopia.txt +ignorable_copyrights: + - Copyright 1989, 1991 Adobe Systems Incorporated +ignorable_holders: + - Adobe Systems Incorporated +ignorable_urls: + - http://tug.org/fonts/utopia + - http://www.adobe.com/misc/pdfs/TM +--- + The agreement below gives the TeX Users Group (TUG) the right to sublicense, and grant such sublicensees the right to further sublicense, any or all of the rights enumerated below. TUG hereby does so diff --git a/docs/utopia.html b/docs/utopia.html index 4970fb34d5..7d5dad6c41 100644 --- a/docs/utopia.html +++ b/docs/utopia.html @@ -246,7 +246,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/utopia.json b/docs/utopia.json index 78a563f9ae..ead9ccfa99 100644 --- a/docs/utopia.json +++ b/docs/utopia.json @@ -1 +1,22 @@ -{"key": "utopia", "short_name": "Utopia Typeface License", "name": "License to TeX Users Group for the Utopia Typeface", "category": "Permissive", "owner": "Adobe Systems", "homepage_url": "http://tug.org/fonts/utopia", "spdx_license_key": "LicenseRef-scancode-utopia", "text_urls": ["https://tug.org/fonts/utopia/LICENSE-utopia.txt"], "ignorable_copyrights": ["Copyright 1989, 1991 Adobe Systems Incorporated"], "ignorable_holders": ["Adobe Systems Incorporated"], "ignorable_urls": ["http://tug.org/fonts/utopia", "http://www.adobe.com/misc/pdfs/TM"]} \ No newline at end of file +{ + "key": "utopia", + "short_name": "Utopia Typeface License", + "name": "License to TeX Users Group for the Utopia Typeface", + "category": "Permissive", + "owner": "Adobe Systems", + "homepage_url": "http://tug.org/fonts/utopia", + "spdx_license_key": "LicenseRef-scancode-utopia", + "text_urls": [ + "https://tug.org/fonts/utopia/LICENSE-utopia.txt" + ], + "ignorable_copyrights": [ + "Copyright 1989, 1991 Adobe Systems Incorporated" + ], + "ignorable_holders": [ + "Adobe Systems Incorporated" + ], + "ignorable_urls": [ + "http://tug.org/fonts/utopia", + "http://www.adobe.com/misc/pdfs/TM" + ] +} \ No newline at end of file diff --git a/docs/vbaccelerator.LICENSE b/docs/vbaccelerator.LICENSE index 45282e6e95..5566a47c30 100644 --- a/docs/vbaccelerator.LICENSE +++ b/docs/vbaccelerator.LICENSE @@ -1,3 +1,13 @@ +--- +key: vbaccelerator +short_name: vbAccelerator Distribution Notice +name: vbAccelerator Distribution Notice +category: Free Restricted +owner: vbAccelerator +homepage_url: http://vbaccelerator.com/ +spdx_license_key: LicenseRef-scancode-vbaccelerator +--- + Distribution notice: You are free to distribute this zip in it's original state to any @@ -14,4 +24,4 @@ If you wish to distribute this zip by any other means (i.e. if you want to include it on a CD or any other software media) then the EXPRESS PERMISSION of the author is REQUIRED. -Please report any bugs in the component to the author. +Please report any bugs in the component to the author. \ No newline at end of file diff --git a/docs/vbaccelerator.html b/docs/vbaccelerator.html index 2015897323..5f6c01a74b 100644 --- a/docs/vbaccelerator.html +++ b/docs/vbaccelerator.html @@ -131,8 +131,7 @@ you want to include it on a CD or any other software media) then the EXPRESS PERMISSION of the author is REQUIRED. -Please report any bugs in the component to the author. - +Please report any bugs in the component to the author.
@@ -144,7 +143,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/vbaccelerator.json b/docs/vbaccelerator.json index 8042f5bd4a..d0144c0775 100644 --- a/docs/vbaccelerator.json +++ b/docs/vbaccelerator.json @@ -1 +1,9 @@ -{"key": "vbaccelerator", "short_name": "vbAccelerator Distribution Notice", "name": "vbAccelerator Distribution Notice", "category": "Free Restricted", "owner": "vbAccelerator", "homepage_url": "http://vbaccelerator.com/", "spdx_license_key": "LicenseRef-scancode-vbaccelerator"} \ No newline at end of file +{ + "key": "vbaccelerator", + "short_name": "vbAccelerator Distribution Notice", + "name": "vbAccelerator Distribution Notice", + "category": "Free Restricted", + "owner": "vbAccelerator", + "homepage_url": "http://vbaccelerator.com/", + "spdx_license_key": "LicenseRef-scancode-vbaccelerator" +} \ No newline at end of file diff --git a/docs/vcalendar.LICENSE b/docs/vcalendar.LICENSE index bc0f32340e..8adbc8d23c 100644 --- a/docs/vcalendar.LICENSE +++ b/docs/vcalendar.LICENSE @@ -1,3 +1,13 @@ +--- +key: vcalendar +short_name: VCalendar License +name: VCalendar License +category: Permissive +owner: VCalendar Project +homepage_url: https://github.com/libical/libical/blob/master/src/libicalvcal/vcaltmp.h +spdx_license_key: LicenseRef-scancode-vcalendar +--- + For purposes of this license notice, the term Licensors shall mean, collectively, Apple Computer, Inc., AT&T Corp., International Business Machines Corporation and Siemens Rolm Communications Inc. @@ -28,4 +38,4 @@ PURPOSE. The software is provided with RESTRICTED RIGHTS. Use, duplication, or disclosure by the government are subject to restrictions set forth in -DFARS 252.227-7013 or 48 CFR 52.227-19, as applicable. \ No newline at end of file +DFARS 252.227-7013 or 48 CFR 52.227-19, as applicable. \ No newline at end of file diff --git a/docs/vcalendar.html b/docs/vcalendar.html index 18a5ac30c1..d352b54b02 100644 --- a/docs/vcalendar.html +++ b/docs/vcalendar.html @@ -145,7 +145,7 @@ The software is provided with RESTRICTED RIGHTS. Use, duplication, or disclosure by the government are subject to restrictions set forth in -DFARS 252.227-7013 or 48 CFR 52.227-19, as applicable. +DFARS 252.227-7013 or 48 CFR 52.227-19, as applicable.
@@ -157,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/vcalendar.json b/docs/vcalendar.json index 68355c00c9..e577ab574c 100644 --- a/docs/vcalendar.json +++ b/docs/vcalendar.json @@ -1 +1,9 @@ -{"key": "vcalendar", "short_name": "VCalendar License", "name": "VCalendar License", "category": "Permissive", "owner": "VCalendar Project", "homepage_url": "https://github.com/libical/libical/blob/master/src/libicalvcal/vcaltmp.h", "spdx_license_key": "LicenseRef-scancode-vcalendar"} \ No newline at end of file +{ + "key": "vcalendar", + "short_name": "VCalendar License", + "name": "VCalendar License", + "category": "Permissive", + "owner": "VCalendar Project", + "homepage_url": "https://github.com/libical/libical/blob/master/src/libicalvcal/vcaltmp.h", + "spdx_license_key": "LicenseRef-scancode-vcalendar" +} \ No newline at end of file diff --git a/docs/verbatim-manual.LICENSE b/docs/verbatim-manual.LICENSE index f44cef4c60..b29925803c 100644 --- a/docs/verbatim-manual.LICENSE +++ b/docs/verbatim-manual.LICENSE @@ -1,3 +1,21 @@ +--- +key: verbatim-manual +short_name: Verbatim Copies +name: Verbatim Copies Permission +category: Copyleft +owner: BPF Authors +notes: the latext2e, verbatim-manual and abstyles are similar licenses +spdx_license_key: Linux-man-pages-copyleft +other_spdx_license_keys: + - Verbatim-man-pages + - LicenseRef-scancode-verbatim-manual +text_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/scripts/bpf_helpers_doc.py?h=v5.0-rc4#n202 +other_urls: + - https://www.kernel.org/doc/man-pages/licenses.html +minimum_coverage: 70 +--- + Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. @@ -16,4 +34,4 @@ which is licensed free of charge, as they might when working professionally. Formatted or processed versions of this manual, if unaccompanied by -the source, must acknowledge the copyright and authors of this work. +the source, must acknowledge the copyright and authors of this work. \ No newline at end of file diff --git a/docs/verbatim-manual.html b/docs/verbatim-manual.html index 8753214457..1979a1584a 100644 --- a/docs/verbatim-manual.html +++ b/docs/verbatim-manual.html @@ -167,8 +167,7 @@ professionally. Formatted or processed versions of this manual, if unaccompanied by -the source, must acknowledge the copyright and authors of this work. - +the source, must acknowledge the copyright and authors of this work.
@@ -180,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/verbatim-manual.json b/docs/verbatim-manual.json index 5020a063f5..f6f433938d 100644 --- a/docs/verbatim-manual.json +++ b/docs/verbatim-manual.json @@ -1 +1,20 @@ -{"key": "verbatim-manual", "short_name": "Verbatim Copies", "name": "Verbatim Copies Permission", "category": "Copyleft", "owner": "BPF Authors", "notes": "the latext2e, verbatim-manual and abstyles are similar licenses", "spdx_license_key": "Linux-man-pages-copyleft", "other_spdx_license_keys": ["Verbatim-man-pages", "LicenseRef-scancode-verbatim-manual"], "text_urls": ["https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/scripts/bpf_helpers_doc.py?h=v5.0-rc4#n202"], "other_urls": ["https://www.kernel.org/doc/man-pages/licenses.html"], "minimum_coverage": 70} \ No newline at end of file +{ + "key": "verbatim-manual", + "short_name": "Verbatim Copies", + "name": "Verbatim Copies Permission", + "category": "Copyleft", + "owner": "BPF Authors", + "notes": "the latext2e, verbatim-manual and abstyles are similar licenses", + "spdx_license_key": "Linux-man-pages-copyleft", + "other_spdx_license_keys": [ + "Verbatim-man-pages", + "LicenseRef-scancode-verbatim-manual" + ], + "text_urls": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/scripts/bpf_helpers_doc.py?h=v5.0-rc4#n202" + ], + "other_urls": [ + "https://www.kernel.org/doc/man-pages/licenses.html" + ], + "minimum_coverage": 70 +} \ No newline at end of file diff --git a/docs/verisign.LICENSE b/docs/verisign.LICENSE index 19d73a9e3d..f5b319f5b4 100644 --- a/docs/verisign.LICENSE +++ b/docs/verisign.LICENSE @@ -1,3 +1,20 @@ +--- +key: verisign +short_name: VeriSign License +name: VeriSign License +category: Proprietary Free +owner: VeriSign, Inc. +spdx_license_key: LicenseRef-scancode-verisign +other_urls: + - http://www.verisign.com/repository/CPS +ignorable_copyrights: + - Copyright 1995 VeriSign, Inc. +ignorable_holders: + - VeriSign, Inc. +ignorable_urls: + - http://www.verisign.com/repository/CPS +--- + VERISIGN, INC. LICENSE AGREEMENT IMPORTANT - READ CAREFULLY BEFORE DOWNLOADING OR INSTALLING @@ -45,4 +62,4 @@ OR AVAILABLE FROM: Code Fragments and ASN.1 discussion are taken from the PKCS standards published by RSA Data Security, Inc. -Copyright 1995 VeriSign, Inc. All Rights Reserved. +Copyright 1995 VeriSign, Inc. All Rights Reserved. \ No newline at end of file diff --git a/docs/verisign.html b/docs/verisign.html index 454d0c7fc2..f805a51879 100644 --- a/docs/verisign.html +++ b/docs/verisign.html @@ -191,8 +191,7 @@ Code Fragments and ASN.1 discussion are taken from the PKCS standards published by RSA Data Security, Inc. -Copyright 1995 VeriSign, Inc. All Rights Reserved. - +Copyright 1995 VeriSign, Inc. All Rights Reserved.
@@ -204,7 +203,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/verisign.json b/docs/verisign.json index dd63c1238b..1eed27b317 100644 --- a/docs/verisign.json +++ b/docs/verisign.json @@ -1 +1,20 @@ -{"key": "verisign", "short_name": "VeriSign License", "name": "VeriSign License", "category": "Proprietary Free", "owner": "VeriSign, Inc.", "spdx_license_key": "LicenseRef-scancode-verisign", "other_urls": ["http://www.verisign.com/repository/CPS"], "ignorable_copyrights": ["Copyright 1995 VeriSign, Inc."], "ignorable_holders": ["VeriSign, Inc."], "ignorable_urls": ["http://www.verisign.com/repository/CPS"]} \ No newline at end of file +{ + "key": "verisign", + "short_name": "VeriSign License", + "name": "VeriSign License", + "category": "Proprietary Free", + "owner": "VeriSign, Inc.", + "spdx_license_key": "LicenseRef-scancode-verisign", + "other_urls": [ + "http://www.verisign.com/repository/CPS" + ], + "ignorable_copyrights": [ + "Copyright 1995 VeriSign, Inc." + ], + "ignorable_holders": [ + "VeriSign, Inc." + ], + "ignorable_urls": [ + "http://www.verisign.com/repository/CPS" + ] +} \ No newline at end of file diff --git a/docs/vhfpl-1.1.LICENSE b/docs/vhfpl-1.1.LICENSE index 92eb93880f..bd6993c969 100644 --- a/docs/vhfpl-1.1.LICENSE +++ b/docs/vhfpl-1.1.LICENSE @@ -1,3 +1,23 @@ +--- +key: vhfpl-1.1 +short_name: vhfPL 1.1 +name: vhf Public License V 1.1 +category: Copyleft +owner: Cenon GmbH +homepage_url: http://www.cenon.de +notes: The original name of Cenon was vhf interservice GmbH at http://www.vhf-interservice.com/ + and http://www.vhf.de The company has websites under several different domain names. +spdx_license_key: LicenseRef-scancode-vhfpl-1.1 +ignorable_copyrights: + - Copyright (c) 2003 vhf interservice GmbH service@vhf.de + - Copyright (c) 2003/2004 vhf interservice GmbH, Im Marxle +ignorable_holders: + - vhf interservice GmbH + - vhf interservice GmbH, Im Marxle +ignorable_emails: + - service@vhf.de +--- + vhf Public License Below is a version of the license for the vhf Free Software. The license is diff --git a/docs/vhfpl-1.1.html b/docs/vhfpl-1.1.html index 7332a5895b..a152f35a11 100644 --- a/docs/vhfpl-1.1.html +++ b/docs/vhfpl-1.1.html @@ -263,7 +263,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/vhfpl-1.1.json b/docs/vhfpl-1.1.json index 134b4a7338..f6dde3cdfa 100644 --- a/docs/vhfpl-1.1.json +++ b/docs/vhfpl-1.1.json @@ -1 +1,21 @@ -{"key": "vhfpl-1.1", "short_name": "vhfPL 1.1", "name": "vhf Public License V 1.1", "category": "Copyleft", "owner": "Cenon GmbH", "homepage_url": "http://www.cenon.de", "notes": "The original name of Cenon was vhf interservice GmbH at http://www.vhf-interservice.com/ and http://www.vhf.de The company has websites under several different domain names.", "spdx_license_key": "LicenseRef-scancode-vhfpl-1.1", "ignorable_copyrights": ["Copyright (c) 2003 vhf interservice GmbH service@vhf.de", "Copyright (c) 2003/2004 vhf interservice GmbH, Im Marxle"], "ignorable_holders": ["vhf interservice GmbH", "vhf interservice GmbH, Im Marxle"], "ignorable_emails": ["service@vhf.de"]} \ No newline at end of file +{ + "key": "vhfpl-1.1", + "short_name": "vhfPL 1.1", + "name": "vhf Public License V 1.1", + "category": "Copyleft", + "owner": "Cenon GmbH", + "homepage_url": "http://www.cenon.de", + "notes": "The original name of Cenon was vhf interservice GmbH at http://www.vhf-interservice.com/ and http://www.vhf.de The company has websites under several different domain names.", + "spdx_license_key": "LicenseRef-scancode-vhfpl-1.1", + "ignorable_copyrights": [ + "Copyright (c) 2003 vhf interservice GmbH service@vhf.de", + "Copyright (c) 2003/2004 vhf interservice GmbH, Im Marxle" + ], + "ignorable_holders": [ + "vhf interservice GmbH", + "vhf interservice GmbH, Im Marxle" + ], + "ignorable_emails": [ + "service@vhf.de" + ] +} \ No newline at end of file diff --git a/docs/vic-metcalfe-pd.LICENSE b/docs/vic-metcalfe-pd.LICENSE index 375014e83a..35ff9ff93d 100644 --- a/docs/vic-metcalfe-pd.LICENSE +++ b/docs/vic-metcalfe-pd.LICENSE @@ -1,3 +1,19 @@ +--- +key: vic-metcalfe-pd +short_name: Vic Metcalfe Public Domain +name: Vic Metcalfe Public Domain Notice +category: Public Domain +owner: Vic Metcalfe +homepage_url: http://www.utdallas.edu/~cantrell/ee6345/sockets/socket-faq-examples/sockhelp.c +spdx_license_key: LicenseRef-scancode-vic-metcalfe-pd +ignorable_authors: + - Vic Metcalfe (vic@brutus.tlug.org) +ignorable_urls: + - http://www.interlog.com/~vic/sock-faq +ignorable_emails: + - vic@brutus.tlug.org +--- + This file is provided for use with the unix-socket-faq. It is public domain, and may be copied freely. There is no copyright on it. The original work was by Vic Metcalfe (vic@brutus.tlug.org), and any @@ -8,4 +24,4 @@ If you have found a bug, please pass it on to me at the above address acknowledging that there will be no copyright on your work. The most recent version of this file, and the unix-socket-faq can be -found at http://www.interlog.com/~vic/sock-faq/. +found at http://www.interlog.com/~vic/sock-faq/. \ No newline at end of file diff --git a/docs/vic-metcalfe-pd.html b/docs/vic-metcalfe-pd.html index c90a6f3499..f097ccd18a 100644 --- a/docs/vic-metcalfe-pd.html +++ b/docs/vic-metcalfe-pd.html @@ -152,8 +152,7 @@ acknowledging that there will be no copyright on your work. The most recent version of this file, and the unix-socket-faq can be -found at http://www.interlog.com/~vic/sock-faq/. - +found at http://www.interlog.com/~vic/sock-faq/.
@@ -165,7 +164,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/vic-metcalfe-pd.json b/docs/vic-metcalfe-pd.json index 2c11a6ab3c..dfa20f5f2d 100644 --- a/docs/vic-metcalfe-pd.json +++ b/docs/vic-metcalfe-pd.json @@ -1 +1,18 @@ -{"key": "vic-metcalfe-pd", "short_name": "Vic Metcalfe Public Domain", "name": "Vic Metcalfe Public Domain Notice", "category": "Public Domain", "owner": "Vic Metcalfe", "homepage_url": "http://www.utdallas.edu/~cantrell/ee6345/sockets/socket-faq-examples/sockhelp.c", "spdx_license_key": "LicenseRef-scancode-vic-metcalfe-pd", "ignorable_authors": ["Vic Metcalfe (vic@brutus.tlug.org)"], "ignorable_urls": ["http://www.interlog.com/~vic/sock-faq"], "ignorable_emails": ["vic@brutus.tlug.org"]} \ No newline at end of file +{ + "key": "vic-metcalfe-pd", + "short_name": "Vic Metcalfe Public Domain", + "name": "Vic Metcalfe Public Domain Notice", + "category": "Public Domain", + "owner": "Vic Metcalfe", + "homepage_url": "http://www.utdallas.edu/~cantrell/ee6345/sockets/socket-faq-examples/sockhelp.c", + "spdx_license_key": "LicenseRef-scancode-vic-metcalfe-pd", + "ignorable_authors": [ + "Vic Metcalfe (vic@brutus.tlug.org)" + ], + "ignorable_urls": [ + "http://www.interlog.com/~vic/sock-faq" + ], + "ignorable_emails": [ + "vic@brutus.tlug.org" + ] +} \ No newline at end of file diff --git a/docs/vicomsoft-software.LICENSE b/docs/vicomsoft-software.LICENSE index a9a2248bba..8aa08b59db 100644 --- a/docs/vicomsoft-software.LICENSE +++ b/docs/vicomsoft-software.LICENSE @@ -1,3 +1,13 @@ +--- +key: vicomsoft-software +short_name: Vicomsoft Software License +name: Vicomsoft Software License +category: Commercial +owner: Vicomsoft Ltd. +homepage_url: http://www.vicomsoft.com/ +spdx_license_key: LicenseRef-scancode-vicomsoft-software +--- + VICOMSOFT SOFTWARE LICENSE Please read this document carefully before installing the Vicomsoft software. By installing the software you agree diff --git a/docs/vicomsoft-software.html b/docs/vicomsoft-software.html index 1d9f4890b6..7259a0b52b 100644 --- a/docs/vicomsoft-software.html +++ b/docs/vicomsoft-software.html @@ -212,7 +212,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/vicomsoft-software.json b/docs/vicomsoft-software.json index f052acb866..1dd8f543c7 100644 --- a/docs/vicomsoft-software.json +++ b/docs/vicomsoft-software.json @@ -1 +1,9 @@ -{"key": "vicomsoft-software", "short_name": "Vicomsoft Software License", "name": "Vicomsoft Software License", "category": "Commercial", "owner": "Vicomsoft Ltd.", "homepage_url": "http://www.vicomsoft.com/", "spdx_license_key": "LicenseRef-scancode-vicomsoft-software"} \ No newline at end of file +{ + "key": "vicomsoft-software", + "short_name": "Vicomsoft Software License", + "name": "Vicomsoft Software License", + "category": "Commercial", + "owner": "Vicomsoft Ltd.", + "homepage_url": "http://www.vicomsoft.com/", + "spdx_license_key": "LicenseRef-scancode-vicomsoft-software" +} \ No newline at end of file diff --git a/docs/viewflow-agpl-3.0-exception.LICENSE b/docs/viewflow-agpl-3.0-exception.LICENSE index 71dd88b2c5..badea9070c 100644 --- a/docs/viewflow-agpl-3.0-exception.LICENSE +++ b/docs/viewflow-agpl-3.0-exception.LICENSE @@ -1,3 +1,20 @@ +--- +key: viewflow-agpl-3.0-exception +short_name: Viewflow Library Exception to AGPL 3.0 +name: Viewflow Library Exception to AGPL 3.0 +category: Copyleft Limited +owner: Viewflow +homepage_url: https://github.com/viewflow/viewflow/blob/master/LICENSE_EXCEPTION +is_exception: yes +spdx_license_key: LicenseRef-scancode-viewflow-agpl-3.0-exception +ignorable_copyrights: + - Copyright (c) 2017 Mikhail Podgurskiy +ignorable_holders: + - Mikhail Podgurskiy +ignorable_emails: + - kmmbvnr@gmail.com +--- + VIEWFLOW LIBRARY EXCEPTION Copyright (c) 2017 Mikhail Podgurskiy diff --git a/docs/viewflow-agpl-3.0-exception.html b/docs/viewflow-agpl-3.0-exception.html index a233c506e0..15578db2ac 100644 --- a/docs/viewflow-agpl-3.0-exception.html +++ b/docs/viewflow-agpl-3.0-exception.html @@ -191,7 +191,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/viewflow-agpl-3.0-exception.json b/docs/viewflow-agpl-3.0-exception.json index d6647ff430..eb00e2a058 100644 --- a/docs/viewflow-agpl-3.0-exception.json +++ b/docs/viewflow-agpl-3.0-exception.json @@ -1 +1,19 @@ -{"key": "viewflow-agpl-3.0-exception", "short_name": "Viewflow Library Exception to AGPL 3.0", "name": "Viewflow Library Exception to AGPL 3.0", "category": "Copyleft Limited", "owner": "Viewflow", "homepage_url": "https://github.com/viewflow/viewflow/blob/master/LICENSE_EXCEPTION", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-viewflow-agpl-3.0-exception", "ignorable_copyrights": ["Copyright (c) 2017 Mikhail Podgurskiy "], "ignorable_holders": ["Mikhail Podgurskiy"], "ignorable_emails": ["kmmbvnr@gmail.com"]} \ No newline at end of file +{ + "key": "viewflow-agpl-3.0-exception", + "short_name": "Viewflow Library Exception to AGPL 3.0", + "name": "Viewflow Library Exception to AGPL 3.0", + "category": "Copyleft Limited", + "owner": "Viewflow", + "homepage_url": "https://github.com/viewflow/viewflow/blob/master/LICENSE_EXCEPTION", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-viewflow-agpl-3.0-exception", + "ignorable_copyrights": [ + "Copyright (c) 2017 Mikhail Podgurskiy " + ], + "ignorable_holders": [ + "Mikhail Podgurskiy" + ], + "ignorable_emails": [ + "kmmbvnr@gmail.com" + ] +} \ No newline at end of file diff --git a/docs/vim.LICENSE b/docs/vim.LICENSE index 0a709f6786..c1c4f4767f 100644 --- a/docs/vim.LICENSE +++ b/docs/vim.LICENSE @@ -1,3 +1,20 @@ +--- +key: vim +short_name: VIM License +name: VIM License +category: Copyleft +owner: VIM +homepage_url: http://vimdoc.sourceforge.net/htmldoc/uganda.html +spdx_license_key: Vim +other_urls: + - http://www.vim.org/docs.php +ignorable_urls: + - http://www.vim.org/ +ignorable_emails: + - Bram@vim.org + - maintainer@vim.org +--- + VIM LICENSE I) There are no restrictions on distributing unmodified copies of Vim except diff --git a/docs/vim.html b/docs/vim.html index cd55eeb600..0688665358 100644 --- a/docs/vim.html +++ b/docs/vim.html @@ -255,7 +255,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/vim.json b/docs/vim.json index a372a29858..c50997f6c9 100644 --- a/docs/vim.json +++ b/docs/vim.json @@ -1 +1,19 @@ -{"key": "vim", "short_name": "VIM License", "name": "VIM License", "category": "Copyleft", "owner": "VIM", "homepage_url": "http://vimdoc.sourceforge.net/htmldoc/uganda.html", "spdx_license_key": "Vim", "other_urls": ["http://www.vim.org/docs.php"], "ignorable_urls": ["http://www.vim.org/"], "ignorable_emails": ["Bram@vim.org", "maintainer@vim.org"]} \ No newline at end of file +{ + "key": "vim", + "short_name": "VIM License", + "name": "VIM License", + "category": "Copyleft", + "owner": "VIM", + "homepage_url": "http://vimdoc.sourceforge.net/htmldoc/uganda.html", + "spdx_license_key": "Vim", + "other_urls": [ + "http://www.vim.org/docs.php" + ], + "ignorable_urls": [ + "http://www.vim.org/" + ], + "ignorable_emails": [ + "Bram@vim.org", + "maintainer@vim.org" + ] +} \ No newline at end of file diff --git a/docs/visual-idiot.LICENSE b/docs/visual-idiot.LICENSE index e72394f7cb..a5a3627419 100644 --- a/docs/visual-idiot.LICENSE +++ b/docs/visual-idiot.LICENSE @@ -1,3 +1,13 @@ +--- +key: visual-idiot +short_name: Visual Idiot +name: Visual Idiot License +category: Permissive +owner: visualidiot.com +homepage_url: https://web.archive.org/web/20120502165504/http://licence.visualidiot.com/ +spdx_license_key: LicenseRef-scancode-visual-idiot +--- + By attaching this document to the given files (the “work”), you, the licensee, are hereby granted free usage in both personal and commerical environments, without any @@ -17,4 +27,4 @@ of the work. The work is provided “as is”, without warranty or support, express or implied. The author(s) are not liable for any damages, misuse, or other claim, whether from or as a -consequence of usage of the given work. +consequence of usage of the given work. \ No newline at end of file diff --git a/docs/visual-idiot.html b/docs/visual-idiot.html index 6efc41d329..7e3d15bdd7 100644 --- a/docs/visual-idiot.html +++ b/docs/visual-idiot.html @@ -134,8 +134,7 @@ The work is provided “as is”, without warranty or support, express or implied. The author(s) are not liable for any damages, misuse, or other claim, whether from or as a -consequence of usage of the given work. - +consequence of usage of the given work.
@@ -147,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/visual-idiot.json b/docs/visual-idiot.json index ef024dbe8a..d8bc80d04c 100644 --- a/docs/visual-idiot.json +++ b/docs/visual-idiot.json @@ -1 +1,9 @@ -{"key": "visual-idiot", "short_name": "Visual Idiot", "name": "Visual Idiot License", "category": "Permissive", "owner": "visualidiot.com", "homepage_url": "https://web.archive.org/web/20120502165504/http://licence.visualidiot.com/", "spdx_license_key": "LicenseRef-scancode-visual-idiot"} \ No newline at end of file +{ + "key": "visual-idiot", + "short_name": "Visual Idiot", + "name": "Visual Idiot License", + "category": "Permissive", + "owner": "visualidiot.com", + "homepage_url": "https://web.archive.org/web/20120502165504/http://licence.visualidiot.com/", + "spdx_license_key": "LicenseRef-scancode-visual-idiot" +} \ No newline at end of file diff --git a/docs/visual-numerics.LICENSE b/docs/visual-numerics.LICENSE index 63479d5f92..bfec3245ba 100644 --- a/docs/visual-numerics.LICENSE +++ b/docs/visual-numerics.LICENSE @@ -1,3 +1,14 @@ +--- +key: visual-numerics +short_name: Visual Numerics License +name: Visual Numerics License +category: Permissive +owner: Rogue Wave Software, Inc. +spdx_license_key: LicenseRef-scancode-visual-numerics +other_urls: + - http://jtonedm.com/2009/05/05/rogue-wave-software-acquires-visual-numerics/ +--- + Permission to use, copy, modify, and distribute this software is freely granted by Visual Numerics, Inc., provided that the copyright notice above and the following warranty disclaimer are preserved in human readable form. diff --git a/docs/visual-numerics.html b/docs/visual-numerics.html index ec3ca1d490..092e987951 100644 --- a/docs/visual-numerics.html +++ b/docs/visual-numerics.html @@ -140,7 +140,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/visual-numerics.json b/docs/visual-numerics.json index 18edea8347..a13476cbc0 100644 --- a/docs/visual-numerics.json +++ b/docs/visual-numerics.json @@ -1 +1,11 @@ -{"key": "visual-numerics", "short_name": "Visual Numerics License", "name": "Visual Numerics License", "category": "Permissive", "owner": "Rogue Wave Software, Inc.", "spdx_license_key": "LicenseRef-scancode-visual-numerics", "other_urls": ["http://jtonedm.com/2009/05/05/rogue-wave-software-acquires-visual-numerics/"]} \ No newline at end of file +{ + "key": "visual-numerics", + "short_name": "Visual Numerics License", + "name": "Visual Numerics License", + "category": "Permissive", + "owner": "Rogue Wave Software, Inc.", + "spdx_license_key": "LicenseRef-scancode-visual-numerics", + "other_urls": [ + "http://jtonedm.com/2009/05/05/rogue-wave-software-acquires-visual-numerics/" + ] +} \ No newline at end of file diff --git a/docs/vita-nuova-liberal.LICENSE b/docs/vita-nuova-liberal.LICENSE index cc51495868..76dea617e1 100644 --- a/docs/vita-nuova-liberal.LICENSE +++ b/docs/vita-nuova-liberal.LICENSE @@ -1,3 +1,20 @@ +--- +key: vita-nuova-liberal +short_name: Vita Nuova Liberal Source License +name: Vita Nuova Liberal Source License +category: Copyleft +owner: Vita Nuova +homepage_url: https://web.archive.org/web/20070227005341/https://www.vitanuova.com/inferno/liblicence.txt +spdx_license_key: LicenseRef-scancode-vita-nuova-liberal +text_urls: + - https://fedoraproject.org/wiki/Licensing/Vita_Nuova_Liberal_Source_License +other_urls: + - https://github.com/search?q="VITA+NUOVA+LIBERAL+SOURCE+LICENCE"&type=code + - https://github.com/dsummerfield/acme-sac/blob/a37310031957f93b176f483b33c10095d341af86/LICENCE#L1 +ignorable_urls: + - http://www.vitanuova.com/ +--- + VITA NUOVA LIBERAL SOURCE LICENCE 29 May 2003 IMPORTANT NOTICE - READ CAREFULLY: This Licence Agreement diff --git a/docs/vita-nuova-liberal.html b/docs/vita-nuova-liberal.html index 9769b08914..7393d588f1 100644 --- a/docs/vita-nuova-liberal.html +++ b/docs/vita-nuova-liberal.html @@ -360,7 +360,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/vita-nuova-liberal.json b/docs/vita-nuova-liberal.json index ee8897aeba..430ca09e6b 100644 --- a/docs/vita-nuova-liberal.json +++ b/docs/vita-nuova-liberal.json @@ -1 +1,19 @@ -{"key": "vita-nuova-liberal", "short_name": "Vita Nuova Liberal Source License", "name": "Vita Nuova Liberal Source License", "category": "Copyleft", "owner": "Vita Nuova", "homepage_url": "https://web.archive.org/web/20070227005341/https://www.vitanuova.com/inferno/liblicence.txt", "spdx_license_key": "LicenseRef-scancode-vita-nuova-liberal", "text_urls": ["https://fedoraproject.org/wiki/Licensing/Vita_Nuova_Liberal_Source_License"], "other_urls": ["https://github.com/search?q=\"VITA+NUOVA+LIBERAL+SOURCE+LICENCE\"&type=code", "https://github.com/dsummerfield/acme-sac/blob/a37310031957f93b176f483b33c10095d341af86/LICENCE#L1"], "ignorable_urls": ["http://www.vitanuova.com/"]} \ No newline at end of file +{ + "key": "vita-nuova-liberal", + "short_name": "Vita Nuova Liberal Source License", + "name": "Vita Nuova Liberal Source License", + "category": "Copyleft", + "owner": "Vita Nuova", + "homepage_url": "https://web.archive.org/web/20070227005341/https://www.vitanuova.com/inferno/liblicence.txt", + "spdx_license_key": "LicenseRef-scancode-vita-nuova-liberal", + "text_urls": [ + "https://fedoraproject.org/wiki/Licensing/Vita_Nuova_Liberal_Source_License" + ], + "other_urls": [ + "https://github.com/search?q=\"VITA+NUOVA+LIBERAL+SOURCE+LICENCE\"&type=code", + "https://github.com/dsummerfield/acme-sac/blob/a37310031957f93b176f483b33c10095d341af86/LICENCE#L1" + ], + "ignorable_urls": [ + "http://www.vitanuova.com/" + ] +} \ No newline at end of file diff --git a/docs/vitesse-prop.LICENSE b/docs/vitesse-prop.LICENSE index 587692f23a..4422477941 100644 --- a/docs/vitesse-prop.LICENSE +++ b/docs/vitesse-prop.LICENSE @@ -1,3 +1,12 @@ +--- +key: vitesse-prop +short_name: Vitesse Proprietary Notice +name: Vitesse Proprietary Notice +category: Proprietary Free +owner: Vitesse Semiconductor Corporation +spdx_license_key: LicenseRef-scancode-vitesse-prop +--- + Unpublished rights reserved under the copyright laws of the United States of America, other countries and international treaties. Permission to use, copy, store and modify, the software and its source code is granted. Permission to diff --git a/docs/vitesse-prop.html b/docs/vitesse-prop.html index edd09b3274..dc6e2b9f30 100644 --- a/docs/vitesse-prop.html +++ b/docs/vitesse-prop.html @@ -135,7 +135,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/vitesse-prop.json b/docs/vitesse-prop.json index 4a265e7973..854118538d 100644 --- a/docs/vitesse-prop.json +++ b/docs/vitesse-prop.json @@ -1 +1,8 @@ -{"key": "vitesse-prop", "short_name": "Vitesse Proprietary Notice", "name": "Vitesse Proprietary Notice", "category": "Proprietary Free", "owner": "Vitesse Semiconductor Corporation", "spdx_license_key": "LicenseRef-scancode-vitesse-prop"} \ No newline at end of file +{ + "key": "vitesse-prop", + "short_name": "Vitesse Proprietary Notice", + "name": "Vitesse Proprietary Notice", + "category": "Proprietary Free", + "owner": "Vitesse Semiconductor Corporation", + "spdx_license_key": "LicenseRef-scancode-vitesse-prop" +} \ No newline at end of file diff --git a/docs/vixie-cron.LICENSE b/docs/vixie-cron.LICENSE index cf37921132..e52c1390a1 100644 --- a/docs/vixie-cron.LICENSE +++ b/docs/vixie-cron.LICENSE @@ -1,3 +1,14 @@ +--- +key: vixie-cron +short_name: Vixie Cron License +name: Vixie Cron License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-vixie-cron +ignorable_emails: + - paul@vix.com +--- + Distribute freely, except: don't remove my name from the source or documentation (don't take credit for my work), mark your changes (don't get me blamed for your possible bugs), don't alter or remove this notice. May be sold if buildable diff --git a/docs/vixie-cron.html b/docs/vixie-cron.html index 9cd9f5dc0c..af4ee5ce37 100644 --- a/docs/vixie-cron.html +++ b/docs/vixie-cron.html @@ -144,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/vixie-cron.json b/docs/vixie-cron.json index bd5301b621..0dd8ca2afd 100644 --- a/docs/vixie-cron.json +++ b/docs/vixie-cron.json @@ -1 +1,11 @@ -{"key": "vixie-cron", "short_name": "Vixie Cron License", "name": "Vixie Cron License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-vixie-cron", "ignorable_emails": ["paul@vix.com"]} \ No newline at end of file +{ + "key": "vixie-cron", + "short_name": "Vixie Cron License", + "name": "Vixie Cron License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-vixie-cron", + "ignorable_emails": [ + "paul@vix.com" + ] +} \ No newline at end of file diff --git a/docs/vnc-viewer-ios.LICENSE b/docs/vnc-viewer-ios.LICENSE index d45b89723d..7ba5b14a9a 100644 --- a/docs/vnc-viewer-ios.LICENSE +++ b/docs/vnc-viewer-ios.LICENSE @@ -1,3 +1,15 @@ +--- +key: vnc-viewer-ios +short_name: VNCViewer iOS EULA +name: VNCViewer for iOS EULA +category: Commercial +owner: RealVNCLimited +homepage_url: https://www.realvnc.com/products/ios/licensing.pdf +spdx_license_key: LicenseRef-scancode-vnc-viewer-ios +ignorable_emails: + - iphone-support@realvnc.com +--- + VNCViewer for iOS END-USER LICENCE AGREEMENT IMPORTANT INFORMATION: PLEASE READ THIS AGREEMENT CAREFULLY BEFORE diff --git a/docs/vnc-viewer-ios.html b/docs/vnc-viewer-ios.html index 62c4340f69..4f8b2d1d9c 100644 --- a/docs/vnc-viewer-ios.html +++ b/docs/vnc-viewer-ios.html @@ -294,7 +294,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/vnc-viewer-ios.json b/docs/vnc-viewer-ios.json index f03da2b8e3..9e46fda392 100644 --- a/docs/vnc-viewer-ios.json +++ b/docs/vnc-viewer-ios.json @@ -1 +1,12 @@ -{"key": "vnc-viewer-ios", "short_name": "VNCViewer iOS EULA", "name": "VNCViewer for iOS EULA", "category": "Commercial", "owner": "RealVNCLimited", "homepage_url": "https://www.realvnc.com/products/ios/licensing.pdf", "spdx_license_key": "LicenseRef-scancode-vnc-viewer-ios", "ignorable_emails": ["iphone-support@realvnc.com"]} \ No newline at end of file +{ + "key": "vnc-viewer-ios", + "short_name": "VNCViewer iOS EULA", + "name": "VNCViewer for iOS EULA", + "category": "Commercial", + "owner": "RealVNCLimited", + "homepage_url": "https://www.realvnc.com/products/ios/licensing.pdf", + "spdx_license_key": "LicenseRef-scancode-vnc-viewer-ios", + "ignorable_emails": [ + "iphone-support@realvnc.com" + ] +} \ No newline at end of file diff --git a/docs/volatility-vsl-v1.0.LICENSE b/docs/volatility-vsl-v1.0.LICENSE index baa4a18edb..d7fe6668dd 100644 --- a/docs/volatility-vsl-v1.0.LICENSE +++ b/docs/volatility-vsl-v1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: volatility-vsl-v1.0 +short_name: Volatility Software License Version 1.0 +name: Volatility Software License Version 1.0 +category: Copyleft Limited +owner: Volatility Foundation +homepage_url: https://www.volatilityfoundation.org/license/vsl-v1.0 +spdx_license_key: LicenseRef-scancode-volatility-vsl-v1.0 +text_urls: + - https://github.com/volatilityfoundation/dwarf2json/blob/master/LICENSE.txt +ignorable_copyrights: + - Copyright 2019 Volatility Foundation +ignorable_holders: + - Volatility Foundation +ignorable_urls: + - https://www.volatilityfoundation.org/license/vsl-v1.0 +--- + Volatility Software License Version 1.0 dated October 3, 2019. This license covers the Volatility software, Copyright 2019 Volatility Foundation. diff --git a/docs/volatility-vsl-v1.0.html b/docs/volatility-vsl-v1.0.html index 320ae532b6..d4cfa5230c 100644 --- a/docs/volatility-vsl-v1.0.html +++ b/docs/volatility-vsl-v1.0.html @@ -208,7 +208,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/volatility-vsl-v1.0.json b/docs/volatility-vsl-v1.0.json index 16b45989ca..1c032fe1dd 100644 --- a/docs/volatility-vsl-v1.0.json +++ b/docs/volatility-vsl-v1.0.json @@ -1 +1,21 @@ -{"key": "volatility-vsl-v1.0", "short_name": "Volatility Software License Version 1.0", "name": "Volatility Software License Version 1.0", "category": "Copyleft Limited", "owner": "Volatility Foundation", "homepage_url": "https://www.volatilityfoundation.org/license/vsl-v1.0", "spdx_license_key": "LicenseRef-scancode-volatility-vsl-v1.0", "text_urls": ["https://github.com/volatilityfoundation/dwarf2json/blob/master/LICENSE.txt"], "ignorable_copyrights": ["Copyright 2019 Volatility Foundation"], "ignorable_holders": ["Volatility Foundation"], "ignorable_urls": ["https://www.volatilityfoundation.org/license/vsl-v1.0"]} \ No newline at end of file +{ + "key": "volatility-vsl-v1.0", + "short_name": "Volatility Software License Version 1.0", + "name": "Volatility Software License Version 1.0", + "category": "Copyleft Limited", + "owner": "Volatility Foundation", + "homepage_url": "https://www.volatilityfoundation.org/license/vsl-v1.0", + "spdx_license_key": "LicenseRef-scancode-volatility-vsl-v1.0", + "text_urls": [ + "https://github.com/volatilityfoundation/dwarf2json/blob/master/LICENSE.txt" + ], + "ignorable_copyrights": [ + "Copyright 2019 Volatility Foundation" + ], + "ignorable_holders": [ + "Volatility Foundation" + ], + "ignorable_urls": [ + "https://www.volatilityfoundation.org/license/vsl-v1.0" + ] +} \ No newline at end of file diff --git a/docs/vostrom.LICENSE b/docs/vostrom.LICENSE index 7431afd4c6..fb27af8381 100644 --- a/docs/vostrom.LICENSE +++ b/docs/vostrom.LICENSE @@ -1,3 +1,21 @@ +--- +key: vostrom +short_name: VOSTROM Public License +name: VOSTROM Public License for Open Source +category: Copyleft +owner: VOSTROM +homepage_url: https://fedoraproject.org/wiki/Licensing:VOSTROM?rd=Licensing/VOSTROM +spdx_license_key: VOSTROM +other_urls: + - https://fedoraproject.org/wiki/Licensing/VOSTROM +ignorable_copyrights: + - Copyright (c) 2007 VOSTROM Holdings, Inc. +ignorable_holders: + - VOSTROM Holdings, Inc. +ignorable_emails: + - license@vostrom.com +--- + VOSTROM Public License for Open Source ---------- Copyright (c) 2007 VOSTROM Holdings, Inc. diff --git a/docs/vostrom.html b/docs/vostrom.html index a95a3d5d4b..f4c61021e9 100644 --- a/docs/vostrom.html +++ b/docs/vostrom.html @@ -221,7 +221,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/vostrom.json b/docs/vostrom.json index 69f23e1c62..1536b2c19a 100644 --- a/docs/vostrom.json +++ b/docs/vostrom.json @@ -1 +1,21 @@ -{"key": "vostrom", "short_name": "VOSTROM Public License", "name": "VOSTROM Public License for Open Source", "category": "Copyleft", "owner": "VOSTROM", "homepage_url": "https://fedoraproject.org/wiki/Licensing:VOSTROM?rd=Licensing/VOSTROM", "spdx_license_key": "VOSTROM", "other_urls": ["https://fedoraproject.org/wiki/Licensing/VOSTROM"], "ignorable_copyrights": ["Copyright (c) 2007 VOSTROM Holdings, Inc."], "ignorable_holders": ["VOSTROM Holdings, Inc."], "ignorable_emails": ["license@vostrom.com"]} \ No newline at end of file +{ + "key": "vostrom", + "short_name": "VOSTROM Public License", + "name": "VOSTROM Public License for Open Source", + "category": "Copyleft", + "owner": "VOSTROM", + "homepage_url": "https://fedoraproject.org/wiki/Licensing:VOSTROM?rd=Licensing/VOSTROM", + "spdx_license_key": "VOSTROM", + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/VOSTROM" + ], + "ignorable_copyrights": [ + "Copyright (c) 2007 VOSTROM Holdings, Inc." + ], + "ignorable_holders": [ + "VOSTROM Holdings, Inc." + ], + "ignorable_emails": [ + "license@vostrom.com" + ] +} \ No newline at end of file diff --git a/docs/vpl-1.1.LICENSE b/docs/vpl-1.1.LICENSE index 1e176e67d6..2b37d2e92e 100644 --- a/docs/vpl-1.1.LICENSE +++ b/docs/vpl-1.1.LICENSE @@ -1,3 +1,22 @@ +--- +key: vpl-1.1 +short_name: VPL 1.1 +name: Vtiger Public License 1.1 +category: Copyleft Limited +owner: vtiger +homepage_url: https://www.vtiger.com/open-source-crm/vtiger-public-license/ +spdx_license_key: LicenseRef-scancode-vpl-1.1 +faq_url: https://www.vtiger.com/open-source-crm/ +other_urls: + - https://www.vtiger.com/open-source-crm/ +ignorable_copyrights: + - Copyright (c) www.vtiger.com +ignorable_holders: + - www.vtiger.com +ignorable_urls: + - http://www.vtiger.com/ +--- + Vtiger Public License (VPL 1.1) 1. Definitions. diff --git a/docs/vpl-1.1.html b/docs/vpl-1.1.html index 0af8345e72..a9f589f90c 100644 --- a/docs/vpl-1.1.html +++ b/docs/vpl-1.1.html @@ -320,7 +320,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/vpl-1.1.json b/docs/vpl-1.1.json index b8072666c0..c05fb54ee4 100644 --- a/docs/vpl-1.1.json +++ b/docs/vpl-1.1.json @@ -1 +1,22 @@ -{"key": "vpl-1.1", "short_name": "VPL 1.1", "name": "Vtiger Public License 1.1", "category": "Copyleft Limited", "owner": "vtiger", "homepage_url": "https://www.vtiger.com/open-source-crm/vtiger-public-license/", "spdx_license_key": "LicenseRef-scancode-vpl-1.1", "faq_url": "https://www.vtiger.com/open-source-crm/", "other_urls": ["https://www.vtiger.com/open-source-crm/"], "ignorable_copyrights": ["Copyright (c) www.vtiger.com"], "ignorable_holders": ["www.vtiger.com"], "ignorable_urls": ["http://www.vtiger.com/"]} \ No newline at end of file +{ + "key": "vpl-1.1", + "short_name": "VPL 1.1", + "name": "Vtiger Public License 1.1", + "category": "Copyleft Limited", + "owner": "vtiger", + "homepage_url": "https://www.vtiger.com/open-source-crm/vtiger-public-license/", + "spdx_license_key": "LicenseRef-scancode-vpl-1.1", + "faq_url": "https://www.vtiger.com/open-source-crm/", + "other_urls": [ + "https://www.vtiger.com/open-source-crm/" + ], + "ignorable_copyrights": [ + "Copyright (c) www.vtiger.com" + ], + "ignorable_holders": [ + "www.vtiger.com" + ], + "ignorable_urls": [ + "http://www.vtiger.com/" + ] +} \ No newline at end of file diff --git a/docs/vpl-1.2.LICENSE b/docs/vpl-1.2.LICENSE index e531b9d51d..bc60fdc513 100644 --- a/docs/vpl-1.2.LICENSE +++ b/docs/vpl-1.2.LICENSE @@ -1,3 +1,20 @@ +--- +key: vpl-1.2 +short_name: VPL 1.2 +name: Vtiger Public License 1.2 +category: Copyleft Limited +owner: vtiger +spdx_license_key: LicenseRef-scancode-vpl-1.2 +other_urls: + - https://master.dl.sourceforge.net/project/vtigercrm/vtiger%20CRM%207.0.1/Core%20Product/vtigercrm7.0.1.tar.gz +ignorable_copyrights: + - Copyright (c) www.vtiger.com +ignorable_holders: + - www.vtiger.com +ignorable_urls: + - http://www.vtiger.com/ +--- + Vtiger Public License 1.2 (VPL 1.2) 1. Definitions. diff --git a/docs/vpl-1.2.html b/docs/vpl-1.2.html index 9636e75baf..e7a2587535 100644 --- a/docs/vpl-1.2.html +++ b/docs/vpl-1.2.html @@ -321,7 +321,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/vpl-1.2.json b/docs/vpl-1.2.json index a5db52c949..07b6c99bb1 100644 --- a/docs/vpl-1.2.json +++ b/docs/vpl-1.2.json @@ -1 +1,20 @@ -{"key": "vpl-1.2", "short_name": "VPL 1.2", "name": "Vtiger Public License 1.2", "category": "Copyleft Limited", "owner": "vtiger", "spdx_license_key": "LicenseRef-scancode-vpl-1.2", "other_urls": ["https://master.dl.sourceforge.net/project/vtigercrm/vtiger%20CRM%207.0.1/Core%20Product/vtigercrm7.0.1.tar.gz"], "ignorable_copyrights": ["Copyright (c) www.vtiger.com"], "ignorable_holders": ["www.vtiger.com"], "ignorable_urls": ["http://www.vtiger.com/"]} \ No newline at end of file +{ + "key": "vpl-1.2", + "short_name": "VPL 1.2", + "name": "Vtiger Public License 1.2", + "category": "Copyleft Limited", + "owner": "vtiger", + "spdx_license_key": "LicenseRef-scancode-vpl-1.2", + "other_urls": [ + "https://master.dl.sourceforge.net/project/vtigercrm/vtiger%20CRM%207.0.1/Core%20Product/vtigercrm7.0.1.tar.gz" + ], + "ignorable_copyrights": [ + "Copyright (c) www.vtiger.com" + ], + "ignorable_holders": [ + "www.vtiger.com" + ], + "ignorable_urls": [ + "http://www.vtiger.com/" + ] +} \ No newline at end of file diff --git a/docs/vs10x-code-map.LICENSE b/docs/vs10x-code-map.LICENSE index 509a573c00..cb19b9a914 100644 --- a/docs/vs10x-code-map.LICENSE +++ b/docs/vs10x-code-map.LICENSE @@ -1,3 +1,13 @@ +--- +key: vs10x-code-map +short_name: VS10x Code Map +name: VS10x Code Map +category: Proprietary Free +owner: AxTools +homepage_url: http://visualstudiogallery.msdn.microsoft.com/site/1c54d1bd-d898-4705-903f-fa4a319b50f2/eula?licenseType=None +spdx_license_key: LicenseRef-scancode-vs10x-code-map +--- + VS10x Code Map - LIMITED PRODUCT WARRANTY Please read the below terms. Continuing with the installation of VS10x Code Map diff --git a/docs/vs10x-code-map.html b/docs/vs10x-code-map.html index 867b060bf6..32df4aae65 100644 --- a/docs/vs10x-code-map.html +++ b/docs/vs10x-code-map.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/vs10x-code-map.json b/docs/vs10x-code-map.json index 6a0e3b15ae..a0ef17ccc3 100644 --- a/docs/vs10x-code-map.json +++ b/docs/vs10x-code-map.json @@ -1 +1,9 @@ -{"key": "vs10x-code-map", "short_name": "VS10x Code Map", "name": "VS10x Code Map", "category": "Proprietary Free", "owner": "AxTools", "homepage_url": "http://visualstudiogallery.msdn.microsoft.com/site/1c54d1bd-d898-4705-903f-fa4a319b50f2/eula?licenseType=None", "spdx_license_key": "LicenseRef-scancode-vs10x-code-map"} \ No newline at end of file +{ + "key": "vs10x-code-map", + "short_name": "VS10x Code Map", + "name": "VS10x Code Map", + "category": "Proprietary Free", + "owner": "AxTools", + "homepage_url": "http://visualstudiogallery.msdn.microsoft.com/site/1c54d1bd-d898-4705-903f-fa4a319b50f2/eula?licenseType=None", + "spdx_license_key": "LicenseRef-scancode-vs10x-code-map" +} \ No newline at end of file diff --git a/docs/vsl-1.0.LICENSE b/docs/vsl-1.0.LICENSE index 3fe58adece..a06c933f9b 100644 --- a/docs/vsl-1.0.LICENSE +++ b/docs/vsl-1.0.LICENSE @@ -1,3 +1,30 @@ +--- +key: vsl-1.0 +short_name: Vovida Software License 1.0 +name: Vovida Software License v. 1.0 +category: Permissive +owner: Vovida +homepage_url: http://www.vovida.org/About/license.html +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: VSL-1.0 +osi_license_key: VSL-1.0 +text_urls: + - http://www.vovida.org/About/license.html +osi_url: http://opensource.org/licenses/vovidapl.php +other_urls: + - http://www.opensource.org/licenses/VSL-1.0 + - http://www.vovida.org + - https://opensource.org/licenses/VSL-1.0 +ignorable_copyrights: + - Copyright (c) 2000 Vovida Networks, Inc. +ignorable_holders: + - Vovida Networks, Inc. +ignorable_urls: + - http://www.vovida.org/ +ignorable_emails: + - vocal@vovida.org +--- + Vovida Software License v. 1.0 This license applies to all software incorporated in the "Vovida diff --git a/docs/vsl-1.0.html b/docs/vsl-1.0.html index 063c4eb1ca..1c5dfc1dcc 100644 --- a/docs/vsl-1.0.html +++ b/docs/vsl-1.0.html @@ -254,7 +254,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/vsl-1.0.json b/docs/vsl-1.0.json index 3ca9732bcf..d1724fd104 100644 --- a/docs/vsl-1.0.json +++ b/docs/vsl-1.0.json @@ -1 +1,32 @@ -{"key": "vsl-1.0", "short_name": "Vovida Software License 1.0", "name": "Vovida Software License v. 1.0", "category": "Permissive", "owner": "Vovida", "homepage_url": "http://www.vovida.org/About/license.html", "notes": "Per SPDX.org, this license is OSI certified", "spdx_license_key": "VSL-1.0", "osi_license_key": "VSL-1.0", "text_urls": ["http://www.vovida.org/About/license.html"], "osi_url": "http://opensource.org/licenses/vovidapl.php", "other_urls": ["http://www.opensource.org/licenses/VSL-1.0", "http://www.vovida.org", "https://opensource.org/licenses/VSL-1.0"], "ignorable_copyrights": ["Copyright (c) 2000 Vovida Networks, Inc."], "ignorable_holders": ["Vovida Networks, Inc."], "ignorable_urls": ["http://www.vovida.org/"], "ignorable_emails": ["vocal@vovida.org"]} \ No newline at end of file +{ + "key": "vsl-1.0", + "short_name": "Vovida Software License 1.0", + "name": "Vovida Software License v. 1.0", + "category": "Permissive", + "owner": "Vovida", + "homepage_url": "http://www.vovida.org/About/license.html", + "notes": "Per SPDX.org, this license is OSI certified", + "spdx_license_key": "VSL-1.0", + "osi_license_key": "VSL-1.0", + "text_urls": [ + "http://www.vovida.org/About/license.html" + ], + "osi_url": "http://opensource.org/licenses/vovidapl.php", + "other_urls": [ + "http://www.opensource.org/licenses/VSL-1.0", + "http://www.vovida.org", + "https://opensource.org/licenses/VSL-1.0" + ], + "ignorable_copyrights": [ + "Copyright (c) 2000 Vovida Networks, Inc." + ], + "ignorable_holders": [ + "Vovida Networks, Inc." + ], + "ignorable_urls": [ + "http://www.vovida.org/" + ], + "ignorable_emails": [ + "vocal@vovida.org" + ] +} \ No newline at end of file diff --git a/docs/vuforia-2013-07-29.LICENSE b/docs/vuforia-2013-07-29.LICENSE index e15a8722cc..1807baeeb3 100644 --- a/docs/vuforia-2013-07-29.LICENSE +++ b/docs/vuforia-2013-07-29.LICENSE @@ -1,3 +1,20 @@ +--- +key: vuforia-2013-07-29 +short_name: Vuforia 2013-07-29 +name: Vuforia SDK License Agreement 2013-07-29 +category: Proprietary Free +owner: Qualcomm Austria Research Center GMBH +homepage_url: https://developer.vuforia.com/legal/license +spdx_license_key: LicenseRef-scancode-vuforia-2013-07-29 +text_urls: + - https://developer.vuforia.com/legal/license +ignorable_urls: + - http://www.bis.doc.gov/ + - http://www.opensource.org/licenses/alphabetical + - http://www.treas.gov/offices/enforcement/ofac + - https://developer.vuforia.com/resources/dev-guide/branding-guidelines +--- + Vuforia SDK License Agreement QUALCOMM AUSTRIA RESEARCH CENTER GMBH LICENSE AGREEMENT FOR VUFORIA™ SOFTWARE DEVELOPMENT KIT diff --git a/docs/vuforia-2013-07-29.html b/docs/vuforia-2013-07-29.html index b3e5e48034..b1d3ae1f50 100644 --- a/docs/vuforia-2013-07-29.html +++ b/docs/vuforia-2013-07-29.html @@ -280,7 +280,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/vuforia-2013-07-29.json b/docs/vuforia-2013-07-29.json index 6b21010a46..603636ffa0 100644 --- a/docs/vuforia-2013-07-29.json +++ b/docs/vuforia-2013-07-29.json @@ -1 +1,18 @@ -{"key": "vuforia-2013-07-29", "short_name": "Vuforia 2013-07-29", "name": "Vuforia SDK License Agreement 2013-07-29", "category": "Proprietary Free", "owner": "Qualcomm Austria Research Center GMBH", "homepage_url": "https://developer.vuforia.com/legal/license", "spdx_license_key": "LicenseRef-scancode-vuforia-2013-07-29", "text_urls": ["https://developer.vuforia.com/legal/license"], "ignorable_urls": ["http://www.bis.doc.gov/", "http://www.opensource.org/licenses/alphabetical", "http://www.treas.gov/offices/enforcement/ofac", "https://developer.vuforia.com/resources/dev-guide/branding-guidelines"]} \ No newline at end of file +{ + "key": "vuforia-2013-07-29", + "short_name": "Vuforia 2013-07-29", + "name": "Vuforia SDK License Agreement 2013-07-29", + "category": "Proprietary Free", + "owner": "Qualcomm Austria Research Center GMBH", + "homepage_url": "https://developer.vuforia.com/legal/license", + "spdx_license_key": "LicenseRef-scancode-vuforia-2013-07-29", + "text_urls": [ + "https://developer.vuforia.com/legal/license" + ], + "ignorable_urls": [ + "http://www.bis.doc.gov/", + "http://www.opensource.org/licenses/alphabetical", + "http://www.treas.gov/offices/enforcement/ofac", + "https://developer.vuforia.com/resources/dev-guide/branding-guidelines" + ] +} \ No newline at end of file diff --git a/docs/w3c-docs-19990405.LICENSE b/docs/w3c-docs-19990405.LICENSE index 149eb45331..8367c336e6 100644 --- a/docs/w3c-docs-19990405.LICENSE +++ b/docs/w3c-docs-19990405.LICENSE @@ -1,3 +1,23 @@ +--- +key: w3c-docs-19990405 +short_name: W3C-DOCS-19990405 +name: W3C Document Notice and License (1999-04-05) +category: Free Restricted +owner: W3C - World Wide Web Consortium +homepage_url: http://www.w3.org/Consortium/Legal/copyright-documents-19990405 +spdx_license_key: LicenseRef-scancode-w3c-docs-19990405 +ignorable_copyrights: + - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut + National de Recherche en Informatique et en Automatique, Keio University) +ignorable_holders: + - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique, Keio University) +ignorable_urls: + - http://www.w3.org/Consortium/Legal/ +ignorable_emails: + - site-policy@w3.org +--- + W3C® DOCUMENT NOTICE AND LICENSE Copyright © World Wide Web Consortium, (Massachusetts Institute of Technology, diff --git a/docs/w3c-docs-19990405.html b/docs/w3c-docs-19990405.html index edc98db655..a8efc0bcab 100644 --- a/docs/w3c-docs-19990405.html +++ b/docs/w3c-docs-19990405.html @@ -188,7 +188,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/w3c-docs-19990405.json b/docs/w3c-docs-19990405.json index c672542657..71caaa6139 100644 --- a/docs/w3c-docs-19990405.json +++ b/docs/w3c-docs-19990405.json @@ -1 +1,21 @@ -{"key": "w3c-docs-19990405", "short_name": "W3C-DOCS-19990405", "name": "W3C Document Notice and License (1999-04-05)", "category": "Free Restricted", "owner": "W3C - World Wide Web Consortium", "homepage_url": "http://www.w3.org/Consortium/Legal/copyright-documents-19990405", "spdx_license_key": "LicenseRef-scancode-w3c-docs-19990405", "ignorable_copyrights": ["Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)"], "ignorable_holders": ["World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)"], "ignorable_urls": ["http://www.w3.org/Consortium/Legal/"], "ignorable_emails": ["site-policy@w3.org"]} \ No newline at end of file +{ + "key": "w3c-docs-19990405", + "short_name": "W3C-DOCS-19990405", + "name": "W3C Document Notice and License (1999-04-05)", + "category": "Free Restricted", + "owner": "W3C - World Wide Web Consortium", + "homepage_url": "http://www.w3.org/Consortium/Legal/copyright-documents-19990405", + "spdx_license_key": "LicenseRef-scancode-w3c-docs-19990405", + "ignorable_copyrights": [ + "Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)" + ], + "ignorable_holders": [ + "World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)" + ], + "ignorable_urls": [ + "http://www.w3.org/Consortium/Legal/" + ], + "ignorable_emails": [ + "site-policy@w3.org" + ] +} \ No newline at end of file diff --git a/docs/w3c-docs-20021231.LICENSE b/docs/w3c-docs-20021231.LICENSE index fe14fa754c..371323ddcd 100644 --- a/docs/w3c-docs-20021231.LICENSE +++ b/docs/w3c-docs-20021231.LICENSE @@ -1,3 +1,21 @@ +--- +key: w3c-docs-20021231 +short_name: W3C-DOCS-20021231 +name: W3C Document License (2002-12-31) +category: Free Restricted +owner: W3C - World Wide Web Consortium +homepage_url: http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231 +spdx_license_key: LicenseRef-scancode-w3c-docs-20021231 +ignorable_copyrights: + - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, European + Research Consortium for Informatics and Mathematics, Keio University, Beihang) +ignorable_holders: + - World Wide Web Consortium, (Massachusetts Institute of Technology, European Research Consortium + for Informatics and Mathematics, Keio University, Beihang) +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231 +--- + W3C DOCUMENT LICENSE Public documents on the W3C site are provided by the copyright holders under the diff --git a/docs/w3c-docs-20021231.html b/docs/w3c-docs-20021231.html index c474d27b5d..76fcd24d5e 100644 --- a/docs/w3c-docs-20021231.html +++ b/docs/w3c-docs-20021231.html @@ -218,7 +218,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/w3c-docs-20021231.json b/docs/w3c-docs-20021231.json index 5a619735ce..56e4b809bb 100644 --- a/docs/w3c-docs-20021231.json +++ b/docs/w3c-docs-20021231.json @@ -1 +1,18 @@ -{"key": "w3c-docs-20021231", "short_name": "W3C-DOCS-20021231", "name": "W3C Document License (2002-12-31)", "category": "Free Restricted", "owner": "W3C - World Wide Web Consortium", "homepage_url": "http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231", "spdx_license_key": "LicenseRef-scancode-w3c-docs-20021231", "ignorable_copyrights": ["Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, European Research Consortium for Informatics and Mathematics, Keio University, Beihang)"], "ignorable_holders": ["World Wide Web Consortium, (Massachusetts Institute of Technology, European Research Consortium for Informatics and Mathematics, Keio University, Beihang)"], "ignorable_urls": ["http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231"]} \ No newline at end of file +{ + "key": "w3c-docs-20021231", + "short_name": "W3C-DOCS-20021231", + "name": "W3C Document License (2002-12-31)", + "category": "Free Restricted", + "owner": "W3C - World Wide Web Consortium", + "homepage_url": "http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231", + "spdx_license_key": "LicenseRef-scancode-w3c-docs-20021231", + "ignorable_copyrights": [ + "Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, European Research Consortium for Informatics and Mathematics, Keio University, Beihang)" + ], + "ignorable_holders": [ + "World Wide Web Consortium, (Massachusetts Institute of Technology, European Research Consortium for Informatics and Mathematics, Keio University, Beihang)" + ], + "ignorable_urls": [ + "http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231" + ] +} \ No newline at end of file diff --git a/docs/w3c-documentation.LICENSE b/docs/w3c-documentation.LICENSE index c2e7752a65..85cfe852bf 100644 --- a/docs/w3c-documentation.LICENSE +++ b/docs/w3c-documentation.LICENSE @@ -1,3 +1,25 @@ +--- +key: w3c-documentation +short_name: W3C Documentation License +name: W3C Documentation License +category: Free Restricted +owner: W3C - World Wide Web Consortium +homepage_url: http://www.w3.org/TR/REC-DOM-Level-1/copyright-notice.html +spdx_license_key: LicenseRef-scancode-w3c-documentation +text_urls: + - http://www.w3.org/TR/REC-DOM-Level-1/copyright-notice.html +ignorable_copyrights: + - Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of Technology, + Institut National de Recherche en Informatique et en Automatique , Keio University ) + - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology , Institut + National de Recherche en Informatique et en Automatique, Keio University ) +ignorable_holders: + - World Wide Web Consortium, (Massachusetts Institute of Technology , Institut National + de Recherche en Informatique et en Automatique, Keio University + - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique , Keio University +--- + Copyright Notice Copyright © 1998 World Wide Web Consortium , (Massachusetts Institute of diff --git a/docs/w3c-documentation.html b/docs/w3c-documentation.html index c5f09984e0..7d9f036ef8 100644 --- a/docs/w3c-documentation.html +++ b/docs/w3c-documentation.html @@ -202,7 +202,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/w3c-documentation.json b/docs/w3c-documentation.json index 0937f5b28d..1db283b17e 100644 --- a/docs/w3c-documentation.json +++ b/docs/w3c-documentation.json @@ -1 +1,20 @@ -{"key": "w3c-documentation", "short_name": "W3C Documentation License", "name": "W3C Documentation License", "category": "Free Restricted", "owner": "W3C - World Wide Web Consortium", "homepage_url": "http://www.w3.org/TR/REC-DOM-Level-1/copyright-notice.html", "spdx_license_key": "LicenseRef-scancode-w3c-documentation", "text_urls": ["http://www.w3.org/TR/REC-DOM-Level-1/copyright-notice.html"], "ignorable_copyrights": ["Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique , Keio University )", "Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology , Institut National de Recherche en Informatique et en Automatique, Keio University )"], "ignorable_holders": ["World Wide Web Consortium, (Massachusetts Institute of Technology , Institut National de Recherche en Informatique et en Automatique, Keio University", "World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique , Keio University"]} \ No newline at end of file +{ + "key": "w3c-documentation", + "short_name": "W3C Documentation License", + "name": "W3C Documentation License", + "category": "Free Restricted", + "owner": "W3C - World Wide Web Consortium", + "homepage_url": "http://www.w3.org/TR/REC-DOM-Level-1/copyright-notice.html", + "spdx_license_key": "LicenseRef-scancode-w3c-documentation", + "text_urls": [ + "http://www.w3.org/TR/REC-DOM-Level-1/copyright-notice.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique , Keio University )", + "Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology , Institut National de Recherche en Informatique et en Automatique, Keio University )" + ], + "ignorable_holders": [ + "World Wide Web Consortium, (Massachusetts Institute of Technology , Institut National de Recherche en Informatique et en Automatique, Keio University", + "World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique , Keio University" + ] +} \ No newline at end of file diff --git a/docs/w3c-software-19980720.LICENSE b/docs/w3c-software-19980720.LICENSE index 4dbaf58dbc..45ca11a251 100644 --- a/docs/w3c-software-19980720.LICENSE +++ b/docs/w3c-software-19980720.LICENSE @@ -1,3 +1,26 @@ +--- +key: w3c-software-19980720 +short_name: W3C-SOFTWARE-19980720 +name: W3C Software Notice and License (1998-07-20) +category: Permissive +owner: W3C - World Wide Web Consortium +homepage_url: http://www.w3.org/Consortium/Legal/copyright-software-19980720.html +spdx_license_key: W3C-19980720 +faq_url: https://cds.cern.ch/record/2126020/files/History%20of%20the%20CERN%20Web%20Software%20Public%20Releases.pdf +ignorable_copyrights: + - Copyright (c) 1994-2002 World Wide Web Consortium, (Massachusetts Institute of Technology, + Institut National de Recherche en Informatique et en Automatique, Keio University) + - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut + National de Recherche en Informatique et en Automatique, Keio University) +ignorable_holders: + - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique, Keio University) +ignorable_urls: + - http://www.w3.org/Consortium/Legal/ +ignorable_emails: + - site-policy@w3.org +--- + W3C® SOFTWARE NOTICE AND LICENSE Copyright © 1994-2002 World Wide Web Consortium, (Massachusetts Institute of diff --git a/docs/w3c-software-19980720.html b/docs/w3c-software-19980720.html index 9fb72e033d..de0c65038e 100644 --- a/docs/w3c-software-19980720.html +++ b/docs/w3c-software-19980720.html @@ -224,7 +224,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/w3c-software-19980720.json b/docs/w3c-software-19980720.json index 18ca3b3f4a..71ab3af48f 100644 --- a/docs/w3c-software-19980720.json +++ b/docs/w3c-software-19980720.json @@ -1 +1,23 @@ -{"key": "w3c-software-19980720", "short_name": "W3C-SOFTWARE-19980720", "name": "W3C Software Notice and License (1998-07-20)", "category": "Permissive", "owner": "W3C - World Wide Web Consortium", "homepage_url": "http://www.w3.org/Consortium/Legal/copyright-software-19980720.html", "spdx_license_key": "W3C-19980720", "faq_url": "https://cds.cern.ch/record/2126020/files/History%20of%20the%20CERN%20Web%20Software%20Public%20Releases.pdf", "ignorable_copyrights": ["Copyright (c) 1994-2002 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)", "Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)"], "ignorable_holders": ["World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)"], "ignorable_urls": ["http://www.w3.org/Consortium/Legal/"], "ignorable_emails": ["site-policy@w3.org"]} \ No newline at end of file +{ + "key": "w3c-software-19980720", + "short_name": "W3C-SOFTWARE-19980720", + "name": "W3C Software Notice and License (1998-07-20)", + "category": "Permissive", + "owner": "W3C - World Wide Web Consortium", + "homepage_url": "http://www.w3.org/Consortium/Legal/copyright-software-19980720.html", + "spdx_license_key": "W3C-19980720", + "faq_url": "https://cds.cern.ch/record/2126020/files/History%20of%20the%20CERN%20Web%20Software%20Public%20Releases.pdf", + "ignorable_copyrights": [ + "Copyright (c) 1994-2002 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)", + "Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)" + ], + "ignorable_holders": [ + "World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)" + ], + "ignorable_urls": [ + "http://www.w3.org/Consortium/Legal/" + ], + "ignorable_emails": [ + "site-policy@w3.org" + ] +} \ No newline at end of file diff --git a/docs/w3c-software-20021231.LICENSE b/docs/w3c-software-20021231.LICENSE index e69de29bb2..fce54a4b8c 100644 --- a/docs/w3c-software-20021231.LICENSE +++ b/docs/w3c-software-20021231.LICENSE @@ -0,0 +1,72 @@ +--- +key: w3c-software-20021231 +is_deprecated: yes +short_name: W3C-SOFTWARE-20021231 +name: W3C Software Notice and License (2002-12-31) +category: Permissive +owner: W3C - World Wide Web Consortium +homepage_url: https://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +--- + +W3C Software Notice and License + +Status: This license was applied to software published by W3C before 13 May, +2015. On 13 May, 2015, W3C adopted a revised and renamed "software and document" +license and applied the new license to all W3C documents that had previously +been made available under this license. The new license grants all permissions +that had been granted under this 2002 license. + +This work (and included software, documentation such as READMEs, or other +related items) is being provided by the copyright holders under the following +license. + +License + +By obtaining, using and/or copying this work, you (the licensee) agree that you +have read, understood, and will comply with the following terms and conditions. + +Permission to copy, modify, and distribute this software and its documentation, +with or without modification, for any purpose and without fee or royalty is +hereby granted, provided that you include the following on ALL copies of the +software and documentation or portions thereof, including modifications: + + The full text of this NOTICE in a location viewable to users of the + redistributed or derivative work. + + Any pre-existing intellectual property disclaimers, notices, or terms and + conditions. If none exist, the W3C Software Short Notice should be included + (hypertext is preferred, text is permitted) within the body of any + redistributed or derivative code. + + Notice of any changes or modifications to the files, including the date + changes were made. (We recommend you provide URIs to the location from which + the code is derived.) + +Disclaimers + +THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE +NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT +THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY +PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. + +COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. + +The name and trademarks of copyright holders may NOT be used in advertising or +publicity pertaining to the software without specific, written prior permission. +Title to copyright in this software and any associated documentation will at all +times remain with copyright holders. + +Notes + +This version: http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 + +This formulation of W3C's notice and license became active on December 31 2002. +This version removes the copyright ownership notice such that this license can +be used with materials other than those owned by the W3C, reflects that ERCIM is +now a host of the W3C, includes references to this specific dated version of the +license, and removes the ambiguous grant of "use". Otherwise, this version is +the same as the previous version and is written so as to preserve the Free +Software Foundation's assessment of GPL compatibility and OSI's certification +under the Open Source Definition. \ No newline at end of file diff --git a/docs/w3c-software-20021231.html b/docs/w3c-software-20021231.html index ec14500e9f..a7dbb8ef61 100644 --- a/docs/w3c-software-20021231.html +++ b/docs/w3c-software-20021231.html @@ -115,7 +115,68 @@
license_text
-
+
W3C Software Notice and License
+
+Status: This license was applied to software published by W3C before 13 May,
+2015. On 13 May, 2015, W3C adopted a revised and renamed "software and document"
+license and applied the new license to all W3C documents that had previously
+been made available under this license. The new license grants all permissions
+that had been granted under this 2002 license.
+
+This work (and included software, documentation such as READMEs, or other
+related items) is being provided by the copyright holders under the following
+license. 
+
+License
+
+By obtaining, using and/or copying this work, you (the licensee) agree that you
+have read, understood, and will comply with the following terms and conditions.
+
+Permission to copy, modify, and distribute this software and its documentation,
+with or without modification, for any purpose and without fee or royalty is
+hereby granted, provided that you include the following on ALL copies of the
+software and documentation or portions thereof, including modifications:
+
+    The full text of this NOTICE in a location viewable to users of the
+    redistributed or derivative work.
+
+    Any pre-existing intellectual property disclaimers, notices, or terms and
+    conditions. If none exist, the W3C Software Short Notice should be included
+    (hypertext is preferred, text is permitted) within the body of any
+    redistributed or derivative code.
+
+    Notice of any changes or modifications to the files, including the date
+    changes were made. (We recommend you provide URIs to the location from which
+    the code is derived.)
+
+Disclaimers
+
+THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE
+NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT
+THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY
+PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
+
+COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR
+CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.
+
+The name and trademarks of copyright holders may NOT be used in advertising or
+publicity pertaining to the software without specific, written prior permission.
+Title to copyright in this software and any associated documentation will at all
+times remain with copyright holders.
+
+Notes
+
+This version: http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
+
+This formulation of W3C's notice and license became active on December 31 2002.
+This version removes the copyright ownership notice such that this license can
+be used with materials other than those owned by the W3C, reflects that ERCIM is
+now a host of the W3C, includes references to this specific dated version of the
+license, and removes the ambiguous grant of "use". Otherwise, this version is
+the same as the previous version and is written so as to preserve the Free
+Software Foundation's assessment of GPL compatibility and OSI's certification
+under the Open Source Definition.
@@ -127,7 +188,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/w3c-software-20021231.json b/docs/w3c-software-20021231.json index 72c3ee90b5..c962130a70 100644 --- a/docs/w3c-software-20021231.json +++ b/docs/w3c-software-20021231.json @@ -1 +1,9 @@ -{"key": "w3c-software-20021231", "is_deprecated": true, "short_name": "W3C-SOFTWARE-20021231", "name": "W3C Software Notice and License (2002-12-31)", "category": "Permissive", "owner": "W3C - World Wide Web Consortium", "homepage_url": "https://www.w3.org/Consortium/Legal/2002/copyright-software-20021231"} \ No newline at end of file +{ + "key": "w3c-software-20021231", + "is_deprecated": true, + "short_name": "W3C-SOFTWARE-20021231", + "name": "W3C Software Notice and License (2002-12-31)", + "category": "Permissive", + "owner": "W3C - World Wide Web Consortium", + "homepage_url": "https://www.w3.org/Consortium/Legal/2002/copyright-software-20021231" +} \ No newline at end of file diff --git a/docs/w3c-software-doc-20150513.LICENSE b/docs/w3c-software-doc-20150513.LICENSE index 98cd20e8c3..91aa53e911 100644 --- a/docs/w3c-software-doc-20150513.LICENSE +++ b/docs/w3c-software-doc-20150513.LICENSE @@ -1,3 +1,26 @@ +--- +key: w3c-software-doc-20150513 +short_name: W3C-SOFTWARE-DOC-20150513 +name: W3C Software and Document (2015-05-13) +category: Permissive +owner: W3C - World Wide Web Consortium +homepage_url: https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document +notes: | + Previous version was http://www.w3.org/Consortium/Legal/2002/copyright- + software-20021231 This version makes clear that the license is applicable + to both software and text, by changing the name and substituting "work" for + instances of "software and its documentation." It moves "notice of changes + or modifications to the files" to the copyright notice, to make clear that + the license is compatible with other liberal licenses. There is also a + short notice version at https://www.w3.org/Consortium/Legal/2015/copyright- + software-short-notice.html +spdx_license_key: W3C-20150513 +ignorable_copyrights: + - Copyright (c) YEAR W3C(r) MIT, ERCIM, Keio +ignorable_holders: + - W3C(r) MIT, ERCIM, Keio +--- + W3C Software and Document Notice and License Status: This license takes effect 13 May, 2015. @@ -39,4 +62,4 @@ CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT. The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders. -Notes +Notes \ No newline at end of file diff --git a/docs/w3c-software-doc-20150513.html b/docs/w3c-software-doc-20150513.html index 75f3a0fcd6..c2c36072e3 100644 --- a/docs/w3c-software-doc-20150513.html +++ b/docs/w3c-software-doc-20150513.html @@ -189,8 +189,7 @@ The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders. -Notes - +Notes
@@ -202,7 +201,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/w3c-software-doc-20150513.json b/docs/w3c-software-doc-20150513.json index 01c3b367e7..a1918aef5d 100644 --- a/docs/w3c-software-doc-20150513.json +++ b/docs/w3c-software-doc-20150513.json @@ -1 +1,16 @@ -{"key": "w3c-software-doc-20150513", "short_name": "W3C-SOFTWARE-DOC-20150513", "name": "W3C Software and Document (2015-05-13)", "category": "Permissive", "owner": "W3C - World Wide Web Consortium", "homepage_url": "https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document", "notes": "Previous version was http://www.w3.org/Consortium/Legal/2002/copyright-\nsoftware-20021231 This version makes clear that the license is applicable\nto both software and text, by changing the name and substituting \"work\" for\ninstances of \"software and its documentation.\" It moves \"notice of changes\nor modifications to the files\" to the copyright notice, to make clear that\nthe license is compatible with other liberal licenses. There is also a\nshort notice version at https://www.w3.org/Consortium/Legal/2015/copyright-\nsoftware-short-notice.html\n", "spdx_license_key": "W3C-20150513", "ignorable_copyrights": ["Copyright (c) YEAR W3C(r) MIT, ERCIM, Keio"], "ignorable_holders": ["W3C(r) MIT, ERCIM, Keio"]} \ No newline at end of file +{ + "key": "w3c-software-doc-20150513", + "short_name": "W3C-SOFTWARE-DOC-20150513", + "name": "W3C Software and Document (2015-05-13)", + "category": "Permissive", + "owner": "W3C - World Wide Web Consortium", + "homepage_url": "https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document", + "notes": "Previous version was http://www.w3.org/Consortium/Legal/2002/copyright-\nsoftware-20021231 This version makes clear that the license is applicable\nto both software and text, by changing the name and substituting \"work\" for\ninstances of \"software and its documentation.\" It moves \"notice of changes\nor modifications to the files\" to the copyright notice, to make clear that\nthe license is compatible with other liberal licenses. There is also a\nshort notice version at https://www.w3.org/Consortium/Legal/2015/copyright-\nsoftware-short-notice.html\n", + "spdx_license_key": "W3C-20150513", + "ignorable_copyrights": [ + "Copyright (c) YEAR W3C(r) MIT, ERCIM, Keio" + ], + "ignorable_holders": [ + "W3C(r) MIT, ERCIM, Keio" + ] +} \ No newline at end of file diff --git a/docs/w3c-test-suite.LICENSE b/docs/w3c-test-suite.LICENSE index 9c0885a488..be4998bcfb 100644 --- a/docs/w3c-test-suite.LICENSE +++ b/docs/w3c-test-suite.LICENSE @@ -1,3 +1,24 @@ +--- +key: w3c-test-suite +short_name: W3C Test Suite +name: W3C Test Suite Licence +category: Free Restricted +owner: W3C - World Wide Web Consortium +homepage_url: https://www.w3.org/Consortium/Legal/2008/04-testsuite-license.html +spdx_license_key: LicenseRef-scancode-w3c-test-suite +text_urls: + - https://raw.githubusercontent.com/gonum/gonum/master/THIRD_PARTY_LICENSES/W3C-TestSuite-LICENSE +faq_url: https://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html#lic2 +other_urls: + - https://github.com/nexB/scancode-toolkit/issues/2910 +ignorable_copyrights: + - Copyright (c) World Wide Web Consortium, (MIT, ERCIM, Keio, Beihang) and others +ignorable_holders: + - World Wide Web Consortium, (MIT, ERCIM, Keio, Beihang) and others +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html +--- + W3C Test Suite Licence This document, Test Suites and other documents that link to this statement are provided by the copyright holders under the following license: By using and/or copying this document, or the W3C document from which this statement is linked, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions: diff --git a/docs/w3c-test-suite.html b/docs/w3c-test-suite.html index e9fdcd6a58..0b11f2b185 100644 --- a/docs/w3c-test-suite.html +++ b/docs/w3c-test-suite.html @@ -199,7 +199,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/w3c-test-suite.json b/docs/w3c-test-suite.json index 8ef7d2bd26..5ad2188700 100644 --- a/docs/w3c-test-suite.json +++ b/docs/w3c-test-suite.json @@ -1 +1,25 @@ -{"key": "w3c-test-suite", "short_name": "W3C Test Suite", "name": "W3C Test Suite Licence", "category": "Free Restricted", "owner": "W3C - World Wide Web Consortium", "homepage_url": "https://www.w3.org/Consortium/Legal/2008/04-testsuite-license.html", "spdx_license_key": "LicenseRef-scancode-w3c-test-suite", "text_urls": ["https://raw.githubusercontent.com/gonum/gonum/master/THIRD_PARTY_LICENSES/W3C-TestSuite-LICENSE"], "faq_url": "https://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html#lic2", "other_urls": ["https://github.com/nexB/scancode-toolkit/issues/2910"], "ignorable_copyrights": ["Copyright (c) World Wide Web Consortium, (MIT, ERCIM, Keio, Beihang) and others"], "ignorable_holders": ["World Wide Web Consortium, (MIT, ERCIM, Keio, Beihang) and others"], "ignorable_urls": ["http://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html"]} \ No newline at end of file +{ + "key": "w3c-test-suite", + "short_name": "W3C Test Suite", + "name": "W3C Test Suite Licence", + "category": "Free Restricted", + "owner": "W3C - World Wide Web Consortium", + "homepage_url": "https://www.w3.org/Consortium/Legal/2008/04-testsuite-license.html", + "spdx_license_key": "LicenseRef-scancode-w3c-test-suite", + "text_urls": [ + "https://raw.githubusercontent.com/gonum/gonum/master/THIRD_PARTY_LICENSES/W3C-TestSuite-LICENSE" + ], + "faq_url": "https://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html#lic2", + "other_urls": [ + "https://github.com/nexB/scancode-toolkit/issues/2910" + ], + "ignorable_copyrights": [ + "Copyright (c) World Wide Web Consortium, (MIT, ERCIM, Keio, Beihang) and others" + ], + "ignorable_holders": [ + "World Wide Web Consortium, (MIT, ERCIM, Keio, Beihang) and others" + ], + "ignorable_urls": [ + "http://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html" + ] +} \ No newline at end of file diff --git a/docs/w3c.LICENSE b/docs/w3c.LICENSE index 399e938356..f928f3c6d5 100644 --- a/docs/w3c.LICENSE +++ b/docs/w3c.LICENSE @@ -1,3 +1,24 @@ +--- +key: w3c +short_name: W3C Software Notice and License +name: W3C Software Notice and License +category: Permissive +owner: W3C - World Wide Web Consortium +homepage_url: http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +notes: | + Per SPDX.org, this license was released 13 December 2002. This license is + OSI certified. +spdx_license_key: W3C +text_urls: + - http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +other_urls: + - http://www.opensource.org/licenses/W3C + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html http://www.opensource.org/licenses/W3C.php + - https://opensource.org/licenses/W3C +--- + By obtaining, using and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions. diff --git a/docs/w3c.html b/docs/w3c.html index 58383da586..f3d92b9bca 100644 --- a/docs/w3c.html +++ b/docs/w3c.html @@ -187,7 +187,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/w3c.json b/docs/w3c.json index 27c54744ca..55da6bfcb8 100644 --- a/docs/w3c.json +++ b/docs/w3c.json @@ -1 +1,20 @@ -{"key": "w3c", "short_name": "W3C Software Notice and License", "name": "W3C Software Notice and License", "category": "Permissive", "owner": "W3C - World Wide Web Consortium", "homepage_url": "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231", "notes": "Per SPDX.org, this license was released 13 December 2002. This license is\nOSI certified.\n", "spdx_license_key": "W3C", "text_urls": ["http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf", "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231"], "other_urls": ["http://www.opensource.org/licenses/W3C", "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html", "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html http://www.opensource.org/licenses/W3C.php", "https://opensource.org/licenses/W3C"]} \ No newline at end of file +{ + "key": "w3c", + "short_name": "W3C Software Notice and License", + "name": "W3C Software Notice and License", + "category": "Permissive", + "owner": "W3C - World Wide Web Consortium", + "homepage_url": "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231", + "notes": "Per SPDX.org, this license was released 13 December 2002. This license is\nOSI certified.\n", + "spdx_license_key": "W3C", + "text_urls": [ + "http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf", + "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231" + ], + "other_urls": [ + "http://www.opensource.org/licenses/W3C", + "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html", + "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html http://www.opensource.org/licenses/W3C.php", + "https://opensource.org/licenses/W3C" + ] +} \ No newline at end of file diff --git a/docs/warranty-disclaimer.LICENSE b/docs/warranty-disclaimer.LICENSE index e69de29bb2..56ebf2c171 100644 --- a/docs/warranty-disclaimer.LICENSE +++ b/docs/warranty-disclaimer.LICENSE @@ -0,0 +1,12 @@ +--- +key: warranty-disclaimer +short_name: Generic Bare Warranty Disclaimer +name: Generic Bare Warranty Disclaimer +category: Unstated License +owner: Unspecified +notes: | + This is a catch all license for plain, generic warranty disclaimers that do + not provide much rights. Often seen in Microsoft code. +is_generic: yes +spdx_license_key: LicenseRef-scancode-warranty-disclaimer +--- \ No newline at end of file diff --git a/docs/warranty-disclaimer.html b/docs/warranty-disclaimer.html index 468e413fec..00f12be651 100644 --- a/docs/warranty-disclaimer.html +++ b/docs/warranty-disclaimer.html @@ -136,7 +136,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/warranty-disclaimer.json b/docs/warranty-disclaimer.json index 04677be4de..34078491c9 100644 --- a/docs/warranty-disclaimer.json +++ b/docs/warranty-disclaimer.json @@ -1 +1,10 @@ -{"key": "warranty-disclaimer", "short_name": "Generic Bare Warranty Disclaimer", "name": "Generic Bare Warranty Disclaimer", "category": "Unstated License", "owner": "Unspecified", "notes": "This is a catch all license for plain, generic warranty disclaimers that do\nnot provide much rights. Often seen in Microsoft code.\n", "is_generic": true, "spdx_license_key": "LicenseRef-scancode-warranty-disclaimer"} \ No newline at end of file +{ + "key": "warranty-disclaimer", + "short_name": "Generic Bare Warranty Disclaimer", + "name": "Generic Bare Warranty Disclaimer", + "category": "Unstated License", + "owner": "Unspecified", + "notes": "This is a catch all license for plain, generic warranty disclaimers that do\nnot provide much rights. Often seen in Microsoft code.\n", + "is_generic": true, + "spdx_license_key": "LicenseRef-scancode-warranty-disclaimer" +} \ No newline at end of file diff --git a/docs/waterfall-feed-parser.LICENSE b/docs/waterfall-feed-parser.LICENSE index 61e9169134..49cd62d16b 100644 --- a/docs/waterfall-feed-parser.LICENSE +++ b/docs/waterfall-feed-parser.LICENSE @@ -1,3 +1,13 @@ +--- +key: waterfall-feed-parser +short_name: Waterfall Feed Parser License +name: Waterfall Feed Parser License +category: Free Restricted +owner: Michael Waterfall +homepage_url: https://github.com/mwaterfall/MWFeedParser/blob/master/LICENSE.txt +spdx_license_key: LicenseRef-scancode-waterfall-feed-parser +--- + 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 diff --git a/docs/waterfall-feed-parser.html b/docs/waterfall-feed-parser.html index 5498ec84d4..3d705b0044 100644 --- a/docs/waterfall-feed-parser.html +++ b/docs/waterfall-feed-parser.html @@ -147,7 +147,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/waterfall-feed-parser.json b/docs/waterfall-feed-parser.json index dc51d0ef5f..0d9985cac9 100644 --- a/docs/waterfall-feed-parser.json +++ b/docs/waterfall-feed-parser.json @@ -1 +1,9 @@ -{"key": "waterfall-feed-parser", "short_name": "Waterfall Feed Parser License", "name": "Waterfall Feed Parser License", "category": "Free Restricted", "owner": "Michael Waterfall", "homepage_url": "https://github.com/mwaterfall/MWFeedParser/blob/master/LICENSE.txt", "spdx_license_key": "LicenseRef-scancode-waterfall-feed-parser"} \ No newline at end of file +{ + "key": "waterfall-feed-parser", + "short_name": "Waterfall Feed Parser License", + "name": "Waterfall Feed Parser License", + "category": "Free Restricted", + "owner": "Michael Waterfall", + "homepage_url": "https://github.com/mwaterfall/MWFeedParser/blob/master/LICENSE.txt", + "spdx_license_key": "LicenseRef-scancode-waterfall-feed-parser" +} \ No newline at end of file diff --git a/docs/westhawk.LICENSE b/docs/westhawk.LICENSE index 1c7cdc9649..4268d9b133 100644 --- a/docs/westhawk.LICENSE +++ b/docs/westhawk.LICENSE @@ -1,3 +1,15 @@ +--- +key: westhawk +short_name: Westhawk License +name: Westhawk License +category: Permissive +owner: Westhawk +homepage_url: http://westhawksnmp.cvs.sourceforge.net/viewvc/westhawksnmp/westhawksnmp/src/uk/co/westhawk/snmp/ +spdx_license_key: LicenseRef-scancode-westhawk +other_urls: + - http://sourceforge.net/projects/westhawksnmp/?source=navbar +--- + Permission to use, copy, modify, and distribute this software for any purpose and without fee is hereby granted, provided that the above copyright notices appear in all copies and that both the copyright notice and this permission diff --git a/docs/westhawk.html b/docs/westhawk.html index 31c52bf3cd..4420f592de 100644 --- a/docs/westhawk.html +++ b/docs/westhawk.html @@ -141,7 +141,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/westhawk.json b/docs/westhawk.json index 3e0a041d70..f8ba8683bf 100644 --- a/docs/westhawk.json +++ b/docs/westhawk.json @@ -1 +1,12 @@ -{"key": "westhawk", "short_name": "Westhawk License", "name": "Westhawk License", "category": "Permissive", "owner": "Westhawk", "homepage_url": "http://westhawksnmp.cvs.sourceforge.net/viewvc/westhawksnmp/westhawksnmp/src/uk/co/westhawk/snmp/", "spdx_license_key": "LicenseRef-scancode-westhawk", "other_urls": ["http://sourceforge.net/projects/westhawksnmp/?source=navbar"]} \ No newline at end of file +{ + "key": "westhawk", + "short_name": "Westhawk License", + "name": "Westhawk License", + "category": "Permissive", + "owner": "Westhawk", + "homepage_url": "http://westhawksnmp.cvs.sourceforge.net/viewvc/westhawksnmp/westhawksnmp/src/uk/co/westhawk/snmp/", + "spdx_license_key": "LicenseRef-scancode-westhawk", + "other_urls": [ + "http://sourceforge.net/projects/westhawksnmp/?source=navbar" + ] +} \ No newline at end of file diff --git a/docs/whistle.LICENSE b/docs/whistle.LICENSE index 01ebdde5a5..06762269ac 100644 --- a/docs/whistle.LICENSE +++ b/docs/whistle.LICENSE @@ -1,3 +1,12 @@ +--- +key: whistle +short_name: Whistle Communications License +name: Whistle Communications License +category: Permissive +owner: FreeBSD +spdx_license_key: LicenseRef-scancode-whistle +--- + Subject to the following obligations and disclaimer of warranty, use and redistribution of this software, in source or object code forms, with or without modifications are expressly permitted by Whistle Communications; @@ -26,4 +35,4 @@ SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER 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 WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY -OF SUCH DAMAGE. +OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/whistle.html b/docs/whistle.html index 74fec769b7..82c20b0566 100644 --- a/docs/whistle.html +++ b/docs/whistle.html @@ -136,8 +136,7 @@ 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 WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY -OF SUCH DAMAGE. - +OF SUCH DAMAGE.
@@ -149,7 +148,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/whistle.json b/docs/whistle.json index f76c7af26f..cf9de361b1 100644 --- a/docs/whistle.json +++ b/docs/whistle.json @@ -1 +1,8 @@ -{"key": "whistle", "short_name": "Whistle Communications License", "name": "Whistle Communications License", "category": "Permissive", "owner": "FreeBSD", "spdx_license_key": "LicenseRef-scancode-whistle"} \ No newline at end of file +{ + "key": "whistle", + "short_name": "Whistle Communications License", + "name": "Whistle Communications License", + "category": "Permissive", + "owner": "FreeBSD", + "spdx_license_key": "LicenseRef-scancode-whistle" +} \ No newline at end of file diff --git a/docs/whitecat.LICENSE b/docs/whitecat.LICENSE index bd7bd1820f..17521a7ce1 100644 --- a/docs/whitecat.LICENSE +++ b/docs/whitecat.LICENSE @@ -1,3 +1,13 @@ +--- +key: whitecat +short_name: Whitecat License +name: Whitecat License +category: Permissive +owner: Whitecat +homepage_url: https://github.com/whitecatboard/Lua-RTOS-ESP32/blob/master/components/mklfs/src/mklfs.c +spdx_license_key: LicenseRef-scancode-whitecat +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * diff --git a/docs/whitecat.html b/docs/whitecat.html index 394dc4f6b9..9934cff6b2 100644 --- a/docs/whitecat.html +++ b/docs/whitecat.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/whitecat.json b/docs/whitecat.json index b8d926291c..2e6d28340f 100644 --- a/docs/whitecat.json +++ b/docs/whitecat.json @@ -1 +1,9 @@ -{"key": "whitecat", "short_name": "Whitecat License", "name": "Whitecat License", "category": "Permissive", "owner": "Whitecat", "homepage_url": "https://github.com/whitecatboard/Lua-RTOS-ESP32/blob/master/components/mklfs/src/mklfs.c", "spdx_license_key": "LicenseRef-scancode-whitecat"} \ No newline at end of file +{ + "key": "whitecat", + "short_name": "Whitecat License", + "name": "Whitecat License", + "category": "Permissive", + "owner": "Whitecat", + "homepage_url": "https://github.com/whitecatboard/Lua-RTOS-ESP32/blob/master/components/mklfs/src/mklfs.c", + "spdx_license_key": "LicenseRef-scancode-whitecat" +} \ No newline at end of file diff --git a/docs/wide-license.LICENSE b/docs/wide-license.LICENSE index 88dd2ea594..8a3977304b 100644 --- a/docs/wide-license.LICENSE +++ b/docs/wide-license.LICENSE @@ -1,3 +1,14 @@ +--- +key: wide-license +short_name: WIDE License +name: WIDE License +category: Permissive +owner: WIDE Project +spdx_license_key: LicenseRef-scancode-wide-license +ignorable_authors: + - WIDE Project and its contributors +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided only with the following conditions are satisfied: @@ -23,4 +34,4 @@ IS NO WARRANTY IMPLIED OR OTHERWISE, NOR IS SUPPORT PROVIDED. Feedback of the results generated from any improvements or extensions made to this software would be much appreciated. -Any such feedback should be sent to: +Any such feedback should be sent to: \ No newline at end of file diff --git a/docs/wide-license.html b/docs/wide-license.html index 71db2fe676..5d0b36fd33 100644 --- a/docs/wide-license.html +++ b/docs/wide-license.html @@ -142,8 +142,7 @@ Feedback of the results generated from any improvements or extensions made to this software would be much appreciated. -Any such feedback should be sent to: - +Any such feedback should be sent to:
@@ -155,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wide-license.json b/docs/wide-license.json index e0292f5fbb..4f8608e9e9 100644 --- a/docs/wide-license.json +++ b/docs/wide-license.json @@ -1 +1,11 @@ -{"key": "wide-license", "short_name": "WIDE License", "name": "WIDE License", "category": "Permissive", "owner": "WIDE Project", "spdx_license_key": "LicenseRef-scancode-wide-license", "ignorable_authors": ["WIDE Project and its contributors"]} \ No newline at end of file +{ + "key": "wide-license", + "short_name": "WIDE License", + "name": "WIDE License", + "category": "Permissive", + "owner": "WIDE Project", + "spdx_license_key": "LicenseRef-scancode-wide-license", + "ignorable_authors": [ + "WIDE Project and its contributors" + ] +} \ No newline at end of file diff --git a/docs/wifi-alliance.LICENSE b/docs/wifi-alliance.LICENSE index a78df4bfb9..bb82eeb922 100644 --- a/docs/wifi-alliance.LICENSE +++ b/docs/wifi-alliance.LICENSE @@ -1,3 +1,14 @@ +--- +key: wifi-alliance +short_name: Wi-Fi Alliance +name: Wi-Fi Alliance License +category: Commercial +owner: Wi-Fi Alliance +spdx_license_key: LicenseRef-scancode-wifi-alliance +ignorable_authors: + - permission from Wi-Fi Alliance +--- + Confidential not for redistribution ======================================================================= diff --git a/docs/wifi-alliance.html b/docs/wifi-alliance.html index 16cddcfe28..7cd29a9639 100644 --- a/docs/wifi-alliance.html +++ b/docs/wifi-alliance.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wifi-alliance.json b/docs/wifi-alliance.json index 1d461a56d9..4782879c78 100644 --- a/docs/wifi-alliance.json +++ b/docs/wifi-alliance.json @@ -1 +1,11 @@ -{"key": "wifi-alliance", "short_name": "Wi-Fi Alliance", "name": "Wi-Fi Alliance License", "category": "Commercial", "owner": "Wi-Fi Alliance", "spdx_license_key": "LicenseRef-scancode-wifi-alliance", "ignorable_authors": ["permission from Wi-Fi Alliance"]} \ No newline at end of file +{ + "key": "wifi-alliance", + "short_name": "Wi-Fi Alliance", + "name": "Wi-Fi Alliance License", + "category": "Commercial", + "owner": "Wi-Fi Alliance", + "spdx_license_key": "LicenseRef-scancode-wifi-alliance", + "ignorable_authors": [ + "permission from Wi-Fi Alliance" + ] +} \ No newline at end of file diff --git a/docs/william-alexander.LICENSE b/docs/william-alexander.LICENSE index 974cb78aaa..badb91bd7e 100644 --- a/docs/william-alexander.LICENSE +++ b/docs/william-alexander.LICENSE @@ -1,2 +1,16 @@ +--- +key: william-alexander +short_name: William Alexander License +name: William Alexander License +category: Permissive +owner: Unspecified +homepage_url: http://www.java-samples.com/ +spdx_license_key: LicenseRef-scancode-william-alexander +text_urls: + - http://www.java-samples.com/ +other_urls: + - http://www.java-samples.com/java/zip_files_in_a_folder_using_java.htm +--- + free for use as long as this comment is included in the program as it is \ No newline at end of file diff --git a/docs/william-alexander.html b/docs/william-alexander.html index 974a82252c..518e879c00 100644 --- a/docs/william-alexander.html +++ b/docs/william-alexander.html @@ -146,7 +146,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/william-alexander.json b/docs/william-alexander.json index e9f60bcbc6..e2dfb673a8 100644 --- a/docs/william-alexander.json +++ b/docs/william-alexander.json @@ -1 +1,15 @@ -{"key": "william-alexander", "short_name": "William Alexander License", "name": "William Alexander License", "category": "Permissive", "owner": "Unspecified", "homepage_url": "http://www.java-samples.com/", "spdx_license_key": "LicenseRef-scancode-william-alexander", "text_urls": ["http://www.java-samples.com/"], "other_urls": ["http://www.java-samples.com/java/zip_files_in_a_folder_using_java.htm"]} \ No newline at end of file +{ + "key": "william-alexander", + "short_name": "William Alexander License", + "name": "William Alexander License", + "category": "Permissive", + "owner": "Unspecified", + "homepage_url": "http://www.java-samples.com/", + "spdx_license_key": "LicenseRef-scancode-william-alexander", + "text_urls": [ + "http://www.java-samples.com/" + ], + "other_urls": [ + "http://www.java-samples.com/java/zip_files_in_a_folder_using_java.htm" + ] +} \ No newline at end of file diff --git a/docs/wince-50-shared-source.LICENSE b/docs/wince-50-shared-source.LICENSE index ff7d41f271..1b14a793b0 100644 --- a/docs/wince-50-shared-source.LICENSE +++ b/docs/wince-50-shared-source.LICENSE @@ -1,3 +1,15 @@ +--- +key: wince-50-shared-source +short_name: MS Windows CE 5.0 Shared Source License +name: Microsoft Windows CE 5.0 Shared Source License Agreement +category: Proprietary Free +owner: Microsoft +homepage_url: http://msdn.microsoft.com/en-us/windowsembedded/aa714524.aspx +spdx_license_key: LicenseRef-scancode-wince-50-shared-source +text_urls: + - http://msdn.microsoft.com/en-us/windowsembedded/aa714524.aspx +--- + Microsoft Windows CE 5.0 Shared Source License Agreement Microsoft gives you a Windows CE 5.0 Shared Source License Agreement ("License") to use the accompanying Software on the following terms: diff --git a/docs/wince-50-shared-source.html b/docs/wince-50-shared-source.html index d4a8db39ae..81e5e15f88 100644 --- a/docs/wince-50-shared-source.html +++ b/docs/wince-50-shared-source.html @@ -172,7 +172,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wince-50-shared-source.json b/docs/wince-50-shared-source.json index cb9b70d12b..6e4bd60130 100644 --- a/docs/wince-50-shared-source.json +++ b/docs/wince-50-shared-source.json @@ -1 +1,12 @@ -{"key": "wince-50-shared-source", "short_name": "MS Windows CE 5.0 Shared Source License", "name": "Microsoft Windows CE 5.0 Shared Source License Agreement", "category": "Proprietary Free", "owner": "Microsoft", "homepage_url": "http://msdn.microsoft.com/en-us/windowsembedded/aa714524.aspx", "spdx_license_key": "LicenseRef-scancode-wince-50-shared-source", "text_urls": ["http://msdn.microsoft.com/en-us/windowsembedded/aa714524.aspx"]} \ No newline at end of file +{ + "key": "wince-50-shared-source", + "short_name": "MS Windows CE 5.0 Shared Source License", + "name": "Microsoft Windows CE 5.0 Shared Source License Agreement", + "category": "Proprietary Free", + "owner": "Microsoft", + "homepage_url": "http://msdn.microsoft.com/en-us/windowsembedded/aa714524.aspx", + "spdx_license_key": "LicenseRef-scancode-wince-50-shared-source", + "text_urls": [ + "http://msdn.microsoft.com/en-us/windowsembedded/aa714524.aspx" + ] +} \ No newline at end of file diff --git a/docs/windriver-commercial.LICENSE b/docs/windriver-commercial.LICENSE index 01bdd25a94..30f31e788e 100644 --- a/docs/windriver-commercial.LICENSE +++ b/docs/windriver-commercial.LICENSE @@ -1,3 +1,15 @@ +--- +key: windriver-commercial +short_name: Wind River License +name: Wind River License +category: Commercial +owner: Wind River Systems +homepage_url: http://www.windriver.com/licensing/ +spdx_license_key: LicenseRef-scancode-windriver-commercial +ignorable_urls: + - http://www.windriver.com/licensing/ +--- + Wind River LICENSING SUPPORT Product Activation diff --git a/docs/windriver-commercial.html b/docs/windriver-commercial.html index 9fd58fd36a..4f68097c9d 100644 --- a/docs/windriver-commercial.html +++ b/docs/windriver-commercial.html @@ -145,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/windriver-commercial.json b/docs/windriver-commercial.json index a164e0722c..ad0e2cd712 100644 --- a/docs/windriver-commercial.json +++ b/docs/windriver-commercial.json @@ -1 +1,12 @@ -{"key": "windriver-commercial", "short_name": "Wind River License", "name": "Wind River License", "category": "Commercial", "owner": "Wind River Systems", "homepage_url": "http://www.windriver.com/licensing/", "spdx_license_key": "LicenseRef-scancode-windriver-commercial", "ignorable_urls": ["http://www.windriver.com/licensing/"]} \ No newline at end of file +{ + "key": "windriver-commercial", + "short_name": "Wind River License", + "name": "Wind River License", + "category": "Commercial", + "owner": "Wind River Systems", + "homepage_url": "http://www.windriver.com/licensing/", + "spdx_license_key": "LicenseRef-scancode-windriver-commercial", + "ignorable_urls": [ + "http://www.windriver.com/licensing/" + ] +} \ No newline at end of file diff --git a/docs/wingo.LICENSE b/docs/wingo.LICENSE index 00e6365dec..2368443a11 100644 --- a/docs/wingo.LICENSE +++ b/docs/wingo.LICENSE @@ -1,3 +1,22 @@ +--- +key: wingo +short_name: wingo License +name: wingo License +category: Permissive +owner: wingo +homepage_url: http://www.wingo.com/jt_/license.html +spdx_license_key: LicenseRef-scancode-wingo +text_urls: + - http://www.wingo.com/jt_/jt_license.html +ignorable_copyrights: + - Copyright (c) 2002-2010 Joseph.Oster, wingo.com +ignorable_holders: + - Joseph.Oster, wingo.com +ignorable_urls: + - http://www.wingo.com/jt_/ + - http://www.wingo.com/jt_/jt_license.html +--- + License for 'jt2_.js' (was 'jt_utils.js'), 'jt_DialogBox' and all related code: http://www.wingo.com/jt_/ @@ -28,4 +47,4 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================== Except where specifically noted in the source code, this software consists -solely of contributions made by Joseph Oster, wingo.com +solely of contributions made by Joseph Oster, wingo.com \ No newline at end of file diff --git a/docs/wingo.html b/docs/wingo.html index 992d6ff10f..f7bc0a33d0 100644 --- a/docs/wingo.html +++ b/docs/wingo.html @@ -181,8 +181,7 @@ ==================================================================== Except where specifically noted in the source code, this software consists -solely of contributions made by Joseph Oster, wingo.com - +solely of contributions made by Joseph Oster, wingo.com
@@ -194,7 +193,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wingo.json b/docs/wingo.json index ffbab4cb26..dab4fdd677 100644 --- a/docs/wingo.json +++ b/docs/wingo.json @@ -1 +1,22 @@ -{"key": "wingo", "short_name": "wingo License", "name": "wingo License", "category": "Permissive", "owner": "wingo", "homepage_url": "http://www.wingo.com/jt_/license.html", "spdx_license_key": "LicenseRef-scancode-wingo", "text_urls": ["http://www.wingo.com/jt_/jt_license.html"], "ignorable_copyrights": ["Copyright (c) 2002-2010 Joseph.Oster, wingo.com"], "ignorable_holders": ["Joseph.Oster, wingo.com"], "ignorable_urls": ["http://www.wingo.com/jt_/", "http://www.wingo.com/jt_/jt_license.html"]} \ No newline at end of file +{ + "key": "wingo", + "short_name": "wingo License", + "name": "wingo License", + "category": "Permissive", + "owner": "wingo", + "homepage_url": "http://www.wingo.com/jt_/license.html", + "spdx_license_key": "LicenseRef-scancode-wingo", + "text_urls": [ + "http://www.wingo.com/jt_/jt_license.html" + ], + "ignorable_copyrights": [ + "Copyright (c) 2002-2010 Joseph.Oster, wingo.com" + ], + "ignorable_holders": [ + "Joseph.Oster, wingo.com" + ], + "ignorable_urls": [ + "http://www.wingo.com/jt_/", + "http://www.wingo.com/jt_/jt_license.html" + ] +} \ No newline at end of file diff --git a/docs/wink.LICENSE b/docs/wink.LICENSE index 61db0bcfe9..e5dfe35a34 100644 --- a/docs/wink.LICENSE +++ b/docs/wink.LICENSE @@ -1,3 +1,13 @@ +--- +key: wink +short_name: Wink License +name: Wink License +category: Proprietary Free +owner: Satish Sampath +homepage_url: http://www.debugmode.com/ +spdx_license_key: LicenseRef-scancode-wink +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the author be held liable for any consequences/damages arising from the use of this software. This program and the accompanied libraries/plugins/artwork are FREEWARE. You can use it for personal, business, educational or any other need of yours, subject to the following restrictions: diff --git a/docs/wink.html b/docs/wink.html index ee2b8f3eb6..fea7a33e5f 100644 --- a/docs/wink.html +++ b/docs/wink.html @@ -137,7 +137,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wink.json b/docs/wink.json index 7dbc41e703..f8faa7c48e 100644 --- a/docs/wink.json +++ b/docs/wink.json @@ -1 +1,9 @@ -{"key": "wink", "short_name": "Wink License", "name": "Wink License", "category": "Proprietary Free", "owner": "Satish Sampath", "homepage_url": "http://www.debugmode.com/", "spdx_license_key": "LicenseRef-scancode-wink"} \ No newline at end of file +{ + "key": "wink", + "short_name": "Wink License", + "name": "Wink License", + "category": "Proprietary Free", + "owner": "Satish Sampath", + "homepage_url": "http://www.debugmode.com/", + "spdx_license_key": "LicenseRef-scancode-wink" +} \ No newline at end of file diff --git a/docs/winzip-eula.LICENSE b/docs/winzip-eula.LICENSE index f9e080d408..873eceb5f6 100644 --- a/docs/winzip-eula.LICENSE +++ b/docs/winzip-eula.LICENSE @@ -1,3 +1,26 @@ +--- +key: winzip-eula +short_name: WinZip EULA +name: WinZip EULA +category: Commercial +owner: WinZip Computing LLC. +homepage_url: http://www.winzip.com/eula.html +spdx_license_key: LicenseRef-scancode-winzip-eula +ignorable_copyrights: + - Copyright (c) 20 Your name WinZip Computing, S.L. and its licensors +ignorable_holders: + - Your name WinZip Computing, S.L. and its licensors +ignorable_authors: + - WinZip's Self Extractor +ignorable_urls: + - http://winzip.com/en/eula.htm + - http://www.winzip.com/ + - http://www.winzip.com/privacy +ignorable_emails: + - HELP@WINZIP.COM + - help@winzip.com +--- + PERPETUAL PROVISIONS APPLICABLE TO WINZIP WINZIP COURIER diff --git a/docs/winzip-eula.html b/docs/winzip-eula.html index 800836b0a4..19af4c12e9 100644 --- a/docs/winzip-eula.html +++ b/docs/winzip-eula.html @@ -806,7 +806,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/winzip-eula.json b/docs/winzip-eula.json index 72a7df0054..a7f16fcdfb 100644 --- a/docs/winzip-eula.json +++ b/docs/winzip-eula.json @@ -1 +1,27 @@ -{"key": "winzip-eula", "short_name": "WinZip EULA", "name": "WinZip EULA", "category": "Commercial", "owner": "WinZip Computing LLC.", "homepage_url": "http://www.winzip.com/eula.html", "spdx_license_key": "LicenseRef-scancode-winzip-eula", "ignorable_copyrights": ["Copyright (c) 20 Your name WinZip Computing, S.L. and its licensors"], "ignorable_holders": ["Your name WinZip Computing, S.L. and its licensors"], "ignorable_authors": ["WinZip's Self Extractor"], "ignorable_urls": ["http://winzip.com/en/eula.htm", "http://www.winzip.com/", "http://www.winzip.com/privacy"], "ignorable_emails": ["HELP@WINZIP.COM", "help@winzip.com"]} \ No newline at end of file +{ + "key": "winzip-eula", + "short_name": "WinZip EULA", + "name": "WinZip EULA", + "category": "Commercial", + "owner": "WinZip Computing LLC.", + "homepage_url": "http://www.winzip.com/eula.html", + "spdx_license_key": "LicenseRef-scancode-winzip-eula", + "ignorable_copyrights": [ + "Copyright (c) 20 Your name WinZip Computing, S.L. and its licensors" + ], + "ignorable_holders": [ + "Your name WinZip Computing, S.L. and its licensors" + ], + "ignorable_authors": [ + "WinZip's Self Extractor" + ], + "ignorable_urls": [ + "http://winzip.com/en/eula.htm", + "http://www.winzip.com/", + "http://www.winzip.com/privacy" + ], + "ignorable_emails": [ + "HELP@WINZIP.COM", + "help@winzip.com" + ] +} \ No newline at end of file diff --git a/docs/winzip-self-extractor.LICENSE b/docs/winzip-self-extractor.LICENSE index 254c1110ca..31fc63c96d 100644 --- a/docs/winzip-self-extractor.LICENSE +++ b/docs/winzip-self-extractor.LICENSE @@ -1,3 +1,13 @@ +--- +key: winzip-self-extractor +short_name: WinZip Self-Extractor License +name: WinZip Self-Extractor License +category: Commercial +owner: WinZip Computing LLC. +homepage_url: http://kb.winzip.com/kb/entry/31/ +spdx_license_key: LicenseRef-scancode-winzip-self-extractor +--- + License requirements to distribute self-extracting Zip files If you are using a registered copy of WinZip Self-Extractor, you do not need any diff --git a/docs/winzip-self-extractor.html b/docs/winzip-self-extractor.html index 6139b9f564..55ac3949b6 100644 --- a/docs/winzip-self-extractor.html +++ b/docs/winzip-self-extractor.html @@ -155,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/winzip-self-extractor.json b/docs/winzip-self-extractor.json index 8cae93379c..81ba838828 100644 --- a/docs/winzip-self-extractor.json +++ b/docs/winzip-self-extractor.json @@ -1 +1,9 @@ -{"key": "winzip-self-extractor", "short_name": "WinZip Self-Extractor License", "name": "WinZip Self-Extractor License", "category": "Commercial", "owner": "WinZip Computing LLC.", "homepage_url": "http://kb.winzip.com/kb/entry/31/", "spdx_license_key": "LicenseRef-scancode-winzip-self-extractor"} \ No newline at end of file +{ + "key": "winzip-self-extractor", + "short_name": "WinZip Self-Extractor License", + "name": "WinZip Self-Extractor License", + "category": "Commercial", + "owner": "WinZip Computing LLC.", + "homepage_url": "http://kb.winzip.com/kb/entry/31/", + "spdx_license_key": "LicenseRef-scancode-winzip-self-extractor" +} \ No newline at end of file diff --git a/docs/wol.LICENSE b/docs/wol.LICENSE index f65dc47e47..37104e919f 100644 --- a/docs/wol.LICENSE +++ b/docs/wol.LICENSE @@ -1,3 +1,15 @@ +--- +key: wol +short_name: Wide Open License +name: Wide Open License +category: Permissive +owner: Iowegian International +homepage_url: http://www.dspguru.com/wide-open-license +spdx_license_key: LicenseRef-scancode-wol +ignorable_urls: + - http://www.dspguru.com/wide-open-license +--- + * The Wide Open License (WOL) * * Permission to use, copy, modify, distribute and sell this software and its diff --git a/docs/wol.html b/docs/wol.html index 21a8da9eba..197cda153c 100644 --- a/docs/wol.html +++ b/docs/wol.html @@ -142,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wol.json b/docs/wol.json index afacd6d331..f1aff46ed4 100644 --- a/docs/wol.json +++ b/docs/wol.json @@ -1 +1,12 @@ -{"key": "wol", "short_name": "Wide Open License", "name": "Wide Open License", "category": "Permissive", "owner": "Iowegian International", "homepage_url": "http://www.dspguru.com/wide-open-license", "spdx_license_key": "LicenseRef-scancode-wol", "ignorable_urls": ["http://www.dspguru.com/wide-open-license"]} \ No newline at end of file +{ + "key": "wol", + "short_name": "Wide Open License", + "name": "Wide Open License", + "category": "Permissive", + "owner": "Iowegian International", + "homepage_url": "http://www.dspguru.com/wide-open-license", + "spdx_license_key": "LicenseRef-scancode-wol", + "ignorable_urls": [ + "http://www.dspguru.com/wide-open-license" + ] +} \ No newline at end of file diff --git a/docs/woodruff-2002.LICENSE b/docs/woodruff-2002.LICENSE new file mode 100644 index 0000000000..d756c44350 --- /dev/null +++ b/docs/woodruff-2002.LICENSE @@ -0,0 +1,58 @@ +--- +key: woodruff-2002 +short_name: Woodruff Restricted MIT 2002 +name: Woodruff Restricted MIT 2002 +category: Free Restricted +owner: William Woodruff +homepage_url: https://github.com/woodruffw/ff2mpv/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-woodruff-2002 +other_urls: + - https://github.com/search?p=2&q="The+MIT+License+(MIT)+with+restrictions"&type=Code +--- + +The MIT License (MIT) with restrictions + +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. + +The following terms additionally apply and override any above terms for +applicable parties: + +You may not use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software in a military or law enforcement context, +defined as follows: + +1. A military context is a professional context where the intended application +of the Software is integration or use with or by military software, tools +(software or hardware), or personnel. This includes contractors and +subcontractors as well as research affiliates of any military organization. + +2. A law enforcement context is a professional context where the intended +application of the Software is integration or use with or by law enforcement +software, tools (software or hardware), or personnel. This includes +contractors and subcontractors as well as research affiliates of any law +enforcement organization. + +Entities that sell or license to military or law enforcement organizations +may use the Software under the original terms, but only in contexts that do +not assist or supplement the sold or licensed product. + +Students and academics who are affiliated with research institutions may use +the Software under the original terms, but only in contexts that do not assist +or supplement collaboration or affiliation with any military or law +enforcement organization. \ No newline at end of file diff --git a/docs/woodruff-2002.html b/docs/woodruff-2002.html new file mode 100644 index 0000000000..c53907090c --- /dev/null +++ b/docs/woodruff-2002.html @@ -0,0 +1,204 @@ + + + + + + LicenseDB: woodruff-2002 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + woodruff-2002 + +
+ +
short_name
+
+ + Woodruff Restricted MIT 2002 + +
+ +
name
+
+ + Woodruff Restricted MIT 2002 + +
+ +
category
+
+ + Free Restricted + +
+ +
owner
+
+ + William Woodruff + +
+ +
homepage_url
+
+ + https://github.com/woodruffw/ff2mpv/blob/master/LICENSE + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-woodruff-2002 + +
+ +
other_urls
+
+ + + +
+ +
+
license_text
+
The MIT License (MIT) with restrictions
+
+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.
+
+The following terms additionally apply and override any above terms for
+applicable parties:
+
+You may not use, copy, modify, merge, publish, distribute, sublicense,
+and/or sell copies of the Software in a military or law enforcement context,
+defined as follows:
+
+1. A military context is a professional context where the intended application
+of the Software is integration or use with or by military software, tools
+(software or hardware), or personnel. This includes contractors and
+subcontractors as well as research affiliates of any military	organization.
+
+2. A law enforcement context is a professional context where the intended
+application of the Software is integration or use with or by law enforcement
+software, tools (software or hardware), or personnel. This includes
+contractors and subcontractors as well as research affiliates of any law
+enforcement organization.
+
+Entities that sell or license to military or law enforcement organizations
+may use the Software under the original terms, but only in contexts that do
+not assist or supplement the sold or licensed product.
+
+Students and academics who are affiliated with research institutions may use
+the Software under the original terms, but only in contexts that do not assist
+or supplement collaboration or affiliation with any military or law
+enforcement organization.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/woodruff-2002.json b/docs/woodruff-2002.json new file mode 100644 index 0000000000..d8df8b87cd --- /dev/null +++ b/docs/woodruff-2002.json @@ -0,0 +1,12 @@ +{ + "key": "woodruff-2002", + "short_name": "Woodruff Restricted MIT 2002", + "name": "Woodruff Restricted MIT 2002", + "category": "Free Restricted", + "owner": "William Woodruff", + "homepage_url": "https://github.com/woodruffw/ff2mpv/blob/master/LICENSE", + "spdx_license_key": "LicenseRef-scancode-woodruff-2002", + "other_urls": [ + "https://github.com/search?p=2&q=\"The+MIT+License+(MIT)+with+restrictions\"&type=Code" + ] +} \ No newline at end of file diff --git a/docs/woodruff-2002.yml b/docs/woodruff-2002.yml new file mode 100644 index 0000000000..74dcd7d5a2 --- /dev/null +++ b/docs/woodruff-2002.yml @@ -0,0 +1,9 @@ +key: woodruff-2002 +short_name: Woodruff Restricted MIT 2002 +name: Woodruff Restricted MIT 2002 +category: Free Restricted +owner: William Woodruff +homepage_url: https://github.com/woodruffw/ff2mpv/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-woodruff-2002 +other_urls: + - https://github.com/search?p=2&q="The+MIT+License+(MIT)+with+restrictions"&type=Code diff --git a/docs/wordnet.LICENSE b/docs/wordnet.LICENSE index 8e1c4275c5..a8c6abdf0c 100644 --- a/docs/wordnet.LICENSE +++ b/docs/wordnet.LICENSE @@ -1,3 +1,19 @@ +--- +key: wordnet +short_name: Wordnet License +name: Wordnet License +category: Permissive +owner: Princeton University +homepage_url: http://wordnetcode.princeton.edu +spdx_license_key: LicenseRef-scancode-wordnet +text_urls: + - http://wordnetcode.princeton.edu/3.0/LICENSE +ignorable_copyrights: + - Copyright by Princeton University +ignorable_holders: + - Princeton University +--- + This software and database is being provided to you, the LICENSEE, by Princeton University under the following license. By obtaining, using and/or copying this software and database, you agree that you have @@ -26,4 +42,4 @@ The name of Princeton University or Princeton may not be used in advertising or publicity pertaining to distribution of the software and/or database. Title to copyright in this software, database and any associated documentation shall at all times remain with -Princeton University and LICENSEE agrees to preserve same. \ No newline at end of file +Princeton University and LICENSEE agrees to preserve same. \ No newline at end of file diff --git a/docs/wordnet.html b/docs/wordnet.html index 99e3bdaff1..386730fb37 100644 --- a/docs/wordnet.html +++ b/docs/wordnet.html @@ -170,7 +170,7 @@ advertising or publicity pertaining to distribution of the software and/or database. Title to copyright in this software, database and any associated documentation shall at all times remain with -Princeton University and LICENSEE agrees to preserve same. +Princeton University and LICENSEE agrees to preserve same.
@@ -182,7 +182,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wordnet.json b/docs/wordnet.json index 6ff951b4ba..82db2e30aa 100644 --- a/docs/wordnet.json +++ b/docs/wordnet.json @@ -1 +1,18 @@ -{"key": "wordnet", "short_name": "Wordnet License", "name": "Wordnet License", "category": "Permissive", "owner": "Princeton University", "homepage_url": "http://wordnetcode.princeton.edu", "spdx_license_key": "LicenseRef-scancode-wordnet", "text_urls": ["http://wordnetcode.princeton.edu/3.0/LICENSE"], "ignorable_copyrights": ["Copyright by Princeton University"], "ignorable_holders": ["Princeton University"]} \ No newline at end of file +{ + "key": "wordnet", + "short_name": "Wordnet License", + "name": "Wordnet License", + "category": "Permissive", + "owner": "Princeton University", + "homepage_url": "http://wordnetcode.princeton.edu", + "spdx_license_key": "LicenseRef-scancode-wordnet", + "text_urls": [ + "http://wordnetcode.princeton.edu/3.0/LICENSE" + ], + "ignorable_copyrights": [ + "Copyright by Princeton University" + ], + "ignorable_holders": [ + "Princeton University" + ] +} \ No newline at end of file diff --git a/docs/wrox-download.LICENSE b/docs/wrox-download.LICENSE index 074a3978fa..ca901c834a 100644 --- a/docs/wrox-download.LICENSE +++ b/docs/wrox-download.LICENSE @@ -1,3 +1,14 @@ +--- +key: wrox-download +short_name: Wrox Download Terms and Conditions +name: Wrox Download Terms and Conditions +category: Source-available +owner: Wiley +homepage_url: http://web.archive.org/web/20030421055623/http://wrox.com/dynamic/books/download-info.aspx?ISBN=1861004257&email=&mode=#terms +spdx_license_key: LicenseRef-scancode-wrox-download +minimum_coverage: 30 +--- + While we try to make it as open as possible, for commercial reasons we do have to assert a few simple Terms and Conditions. By downloading the code you signify that you agree with these. They are: Wrox Press, the authors and distributors cannot be held responsible for any loss, damage or other claim caused by using the executable code or other files. diff --git a/docs/wrox-download.html b/docs/wrox-download.html index ca432157dc..b432028e9f 100644 --- a/docs/wrox-download.html +++ b/docs/wrox-download.html @@ -142,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wrox-download.json b/docs/wrox-download.json index 567b7d36c8..c9c936d9d6 100644 --- a/docs/wrox-download.json +++ b/docs/wrox-download.json @@ -1 +1,10 @@ -{"key": "wrox-download", "short_name": "Wrox Download Terms and Conditions", "name": "Wrox Download Terms and Conditions", "category": "Source-available", "owner": "Wiley", "homepage_url": "http://web.archive.org/web/20030421055623/http://wrox.com/dynamic/books/download-info.aspx?ISBN=1861004257&email=&mode=#terms", "spdx_license_key": "LicenseRef-scancode-wrox-download", "minimum_coverage": 30} \ No newline at end of file +{ + "key": "wrox-download", + "short_name": "Wrox Download Terms and Conditions", + "name": "Wrox Download Terms and Conditions", + "category": "Source-available", + "owner": "Wiley", + "homepage_url": "http://web.archive.org/web/20030421055623/http://wrox.com/dynamic/books/download-info.aspx?ISBN=1861004257&email=&mode=#terms", + "spdx_license_key": "LicenseRef-scancode-wrox-download", + "minimum_coverage": 30 +} \ No newline at end of file diff --git a/docs/wrox.LICENSE b/docs/wrox.LICENSE index 7d2dca2b73..4e420b0e42 100644 --- a/docs/wrox.LICENSE +++ b/docs/wrox.LICENSE @@ -1,3 +1,22 @@ +--- +key: wrox +short_name: Wrox Press License +name: Wrox Press License +category: Permissive +owner: Wiley +homepage_url: http://www.wrox.com/WileyCDA/Section/Wrox-Download-Code-FAQ.id-106010.html#terms +spdx_license_key: LicenseRef-scancode-wrox +text_urls: + - http://www.wrox.com/WileyCDA/Section/Wrox-Download-Code-FAQ.id-106010.html#terms +minimum_coverage: 30 +ignorable_copyrights: + - copyright John Wiley & Sons, Inc. +ignorable_holders: + - John Wiley & Sons, Inc. +ignorable_urls: + - http://www.wrox.com/ +--- + Many Wrox readers ask us "Can I use code from Wrox books in my applications?" Here's our answer: Yes, you may use code from any Wrox book published by Wiley & Sons, Inc. in your application, software, or service under the following diff --git a/docs/wrox.html b/docs/wrox.html index 007fecb15d..fc5a312901 100644 --- a/docs/wrox.html +++ b/docs/wrox.html @@ -213,7 +213,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wrox.json b/docs/wrox.json index db99373729..7ebac391ff 100644 --- a/docs/wrox.json +++ b/docs/wrox.json @@ -1 +1,22 @@ -{"key": "wrox", "short_name": "Wrox Press License", "name": "Wrox Press License", "category": "Permissive", "owner": "Wiley", "homepage_url": "http://www.wrox.com/WileyCDA/Section/Wrox-Download-Code-FAQ.id-106010.html#terms", "spdx_license_key": "LicenseRef-scancode-wrox", "text_urls": ["http://www.wrox.com/WileyCDA/Section/Wrox-Download-Code-FAQ.id-106010.html#terms"], "minimum_coverage": 30, "ignorable_copyrights": ["copyright John Wiley & Sons, Inc."], "ignorable_holders": ["John Wiley & Sons, Inc."], "ignorable_urls": ["http://www.wrox.com/"]} \ No newline at end of file +{ + "key": "wrox", + "short_name": "Wrox Press License", + "name": "Wrox Press License", + "category": "Permissive", + "owner": "Wiley", + "homepage_url": "http://www.wrox.com/WileyCDA/Section/Wrox-Download-Code-FAQ.id-106010.html#terms", + "spdx_license_key": "LicenseRef-scancode-wrox", + "text_urls": [ + "http://www.wrox.com/WileyCDA/Section/Wrox-Download-Code-FAQ.id-106010.html#terms" + ], + "minimum_coverage": 30, + "ignorable_copyrights": [ + "copyright John Wiley & Sons, Inc." + ], + "ignorable_holders": [ + "John Wiley & Sons, Inc." + ], + "ignorable_urls": [ + "http://www.wrox.com/" + ] +} \ No newline at end of file diff --git a/docs/ws-addressing-spec.LICENSE b/docs/ws-addressing-spec.LICENSE index c8e6cc07c8..a2fa301e73 100644 --- a/docs/ws-addressing-spec.LICENSE +++ b/docs/ws-addressing-spec.LICENSE @@ -1,3 +1,18 @@ +--- +key: ws-addressing-spec +short_name: WS-Addressing Specification License +name: WS-Addressing Specification License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-ws-addressing-spec +ignorable_copyrights: + - Copyright (c) 2002-2004 BEA Systems Inc., International Business Machines Corporation, + Microsoft Corporation, Inc, SAP AG, and Sun Microsystems, Inc +ignorable_holders: + - BEA Systems Inc., International Business Machines Corporation, Microsoft Corporation, + Inc, SAP AG, and Sun Microsystems, Inc +--- + WS Addressing Specification License WS/WS-Addressing.xsd diff --git a/docs/ws-addressing-spec.html b/docs/ws-addressing-spec.html index 74b4279031..5ae7c61601 100644 --- a/docs/ws-addressing-spec.html +++ b/docs/ws-addressing-spec.html @@ -179,7 +179,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ws-addressing-spec.json b/docs/ws-addressing-spec.json index b3ba5997fa..1f831698e0 100644 --- a/docs/ws-addressing-spec.json +++ b/docs/ws-addressing-spec.json @@ -1 +1,14 @@ -{"key": "ws-addressing-spec", "short_name": "WS-Addressing Specification License", "name": "WS-Addressing Specification License", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-ws-addressing-spec", "ignorable_copyrights": ["Copyright (c) 2002-2004 BEA Systems Inc., International Business Machines Corporation, Microsoft Corporation, Inc, SAP AG, and Sun Microsystems, Inc"], "ignorable_holders": ["BEA Systems Inc., International Business Machines Corporation, Microsoft Corporation, Inc, SAP AG, and Sun Microsystems, Inc"]} \ No newline at end of file +{ + "key": "ws-addressing-spec", + "short_name": "WS-Addressing Specification License", + "name": "WS-Addressing Specification License", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-ws-addressing-spec", + "ignorable_copyrights": [ + "Copyright (c) 2002-2004 BEA Systems Inc., International Business Machines Corporation, Microsoft Corporation, Inc, SAP AG, and Sun Microsystems, Inc" + ], + "ignorable_holders": [ + "BEA Systems Inc., International Business Machines Corporation, Microsoft Corporation, Inc, SAP AG, and Sun Microsystems, Inc" + ] +} \ No newline at end of file diff --git a/docs/ws-policy-specification.LICENSE b/docs/ws-policy-specification.LICENSE index 228e33f370..53b2093268 100644 --- a/docs/ws-policy-specification.LICENSE +++ b/docs/ws-policy-specification.LICENSE @@ -1,3 +1,15 @@ +--- +key: ws-policy-specification +short_name: WS-Policy Specification +name: WS-Policy Specification +category: Permissive +owner: W3C - World Wide Web Consortium +homepage_url: https://en.wikipedia.org/wiki/WS-Policy +spdx_license_key: LicenseRef-scancode-ws-policy-specification +other_urls: + - https://www.w3.org/TR/ws-policy-attach/ +--- + WS-Policy Specification Permission to copy and display the WS-Policy Specification (the "Specification", which includes WSDL and schema documents), in any medium without fee or royalty is hereby granted, provided that you include the following on ALL copies of the WS-Policy Specification, that you make: diff --git a/docs/ws-policy-specification.html b/docs/ws-policy-specification.html index 4580a9393e..e07e41e5cf 100644 --- a/docs/ws-policy-specification.html +++ b/docs/ws-policy-specification.html @@ -151,7 +151,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ws-policy-specification.json b/docs/ws-policy-specification.json index 16cd70df35..eb80556cfc 100644 --- a/docs/ws-policy-specification.json +++ b/docs/ws-policy-specification.json @@ -1 +1,12 @@ -{"key": "ws-policy-specification", "short_name": "WS-Policy Specification", "name": "WS-Policy Specification", "category": "Permissive", "owner": "W3C - World Wide Web Consortium", "homepage_url": "https://en.wikipedia.org/wiki/WS-Policy", "spdx_license_key": "LicenseRef-scancode-ws-policy-specification", "other_urls": ["https://www.w3.org/TR/ws-policy-attach/"]} \ No newline at end of file +{ + "key": "ws-policy-specification", + "short_name": "WS-Policy Specification", + "name": "WS-Policy Specification", + "category": "Permissive", + "owner": "W3C - World Wide Web Consortium", + "homepage_url": "https://en.wikipedia.org/wiki/WS-Policy", + "spdx_license_key": "LicenseRef-scancode-ws-policy-specification", + "other_urls": [ + "https://www.w3.org/TR/ws-policy-attach/" + ] +} \ No newline at end of file diff --git a/docs/ws-trust-specification.LICENSE b/docs/ws-trust-specification.LICENSE index fdf7af2bb2..cba8fa1975 100644 --- a/docs/ws-trust-specification.LICENSE +++ b/docs/ws-trust-specification.LICENSE @@ -1,3 +1,15 @@ +--- +key: ws-trust-specification +short_name: WS-Trust Specification +name: WS-Trust Specification +category: Permissive +owner: W3C - World Wide Web Consortium +homepage_url: https://en.wikipedia.org/wiki/WS-Trust +spdx_license_key: LicenseRef-scancode-ws-trust-specification +other_urls: + - http://central.maven.org/maven2/org/apache/wss4j/wss4j-ws-security-stax/2.1.5/wss4j-ws-security-stax-2.1.5.jar +--- + WS-Trust Specification Permission to copy and display the WS-Trust Specification (the "Specification", which diff --git a/docs/ws-trust-specification.html b/docs/ws-trust-specification.html index d734384840..fd1aaa7f2e 100644 --- a/docs/ws-trust-specification.html +++ b/docs/ws-trust-specification.html @@ -169,7 +169,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ws-trust-specification.json b/docs/ws-trust-specification.json index 90312d6f1f..ed7bc9d7ba 100644 --- a/docs/ws-trust-specification.json +++ b/docs/ws-trust-specification.json @@ -1 +1,12 @@ -{"key": "ws-trust-specification", "short_name": "WS-Trust Specification", "name": "WS-Trust Specification", "category": "Permissive", "owner": "W3C - World Wide Web Consortium", "homepage_url": "https://en.wikipedia.org/wiki/WS-Trust", "spdx_license_key": "LicenseRef-scancode-ws-trust-specification", "other_urls": ["http://central.maven.org/maven2/org/apache/wss4j/wss4j-ws-security-stax/2.1.5/wss4j-ws-security-stax-2.1.5.jar"]} \ No newline at end of file +{ + "key": "ws-trust-specification", + "short_name": "WS-Trust Specification", + "name": "WS-Trust Specification", + "category": "Permissive", + "owner": "W3C - World Wide Web Consortium", + "homepage_url": "https://en.wikipedia.org/wiki/WS-Trust", + "spdx_license_key": "LicenseRef-scancode-ws-trust-specification", + "other_urls": [ + "http://central.maven.org/maven2/org/apache/wss4j/wss4j-ws-security-stax/2.1.5/wss4j-ws-security-stax-2.1.5.jar" + ] +} \ No newline at end of file diff --git a/docs/wsuipa.LICENSE b/docs/wsuipa.LICENSE index c75f941eac..9a5f136c1b 100644 --- a/docs/wsuipa.LICENSE +++ b/docs/wsuipa.LICENSE @@ -1,3 +1,16 @@ +--- +key: wsuipa +short_name: Wsuipa License +name: Wsuipa License +category: Permissive +owner: Washington State University +homepage_url: https://fedoraproject.org/wiki/Licensing/Wsuipa +notes: | + Per Fedora, this license was found on the "wsuipa" component of texlive + 2010. It is Free, but GPL-incompatible. +spdx_license_key: Wsuipa +--- + This file was added by Clea F. Rees on 2008/11/30 with the permission of Dean Guenther and pointers to this file were added to all source files. diff --git a/docs/wsuipa.html b/docs/wsuipa.html index cfa016a004..1d21b844f6 100644 --- a/docs/wsuipa.html +++ b/docs/wsuipa.html @@ -144,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wsuipa.json b/docs/wsuipa.json index 414c929080..2dd54ee1a1 100644 --- a/docs/wsuipa.json +++ b/docs/wsuipa.json @@ -1 +1,10 @@ -{"key": "wsuipa", "short_name": "Wsuipa License", "name": "Wsuipa License", "category": "Permissive", "owner": "Washington State University", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Wsuipa", "notes": "Per Fedora, this license was found on the \"wsuipa\" component of texlive\n2010. It is Free, but GPL-incompatible.\n", "spdx_license_key": "Wsuipa"} \ No newline at end of file +{ + "key": "wsuipa", + "short_name": "Wsuipa License", + "name": "Wsuipa License", + "category": "Permissive", + "owner": "Washington State University", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Wsuipa", + "notes": "Per Fedora, this license was found on the \"wsuipa\" component of texlive\n2010. It is Free, but GPL-incompatible.\n", + "spdx_license_key": "Wsuipa" +} \ No newline at end of file diff --git a/docs/wtfnmfpl-1.0.LICENSE b/docs/wtfnmfpl-1.0.LICENSE index bdc43f64f5..e1d2001ec7 100644 --- a/docs/wtfnmfpl-1.0.LICENSE +++ b/docs/wtfnmfpl-1.0.LICENSE @@ -1,3 +1,30 @@ +--- +key: wtfnmfpl-1.0 +short_name: WTFNMFPL-1.0 +name: WTFNMFPL-1.0 +category: Permissive +owner: adversary.org +homepage_url: https://github.com/adversary-org/wtfnmf +notes: | + The Do What The Fuck You Want To But It's Not My Fault Public License + (WTFNMFPL or WTFNMFPLv1) is a variation on the Do What The Fuck You Want + Public License (WTFPL) by Sam Hocevar. Essentially it is the same as the + WTFPL, except with an additional clause to indemnify the author, creator, + developer or distributor against anything a third party might do or + encounter with or as a result of whatever's being licensed with it. This + license was first published at Organised Adversary in October, 2013. The + license is free to use by anyone as per the terms of itself. +spdx_license_key: LicenseRef-scancode-wtfnmfpl-1.0 +text_urls: + - https://github.com/adversary-org/wtfnmf/blob/master/COPYING.WTFNMFPL +ignorable_copyrights: + - Copyright (c) 2013 Ben McGinnes +ignorable_holders: + - Ben McGinnes +ignorable_emails: + - ben@adversary.org +--- + DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE Version 1, October 2013 @@ -14,4 +41,4 @@ 1. Do not hold the author(s), creator(s), developer(s) or distributor(s) liable for anything that happens or goes wrong - with your use of the work. + with your use of the work. \ No newline at end of file diff --git a/docs/wtfnmfpl-1.0.html b/docs/wtfnmfpl-1.0.html index 37a2783d32..e9ab4ffa15 100644 --- a/docs/wtfnmfpl-1.0.html +++ b/docs/wtfnmfpl-1.0.html @@ -182,8 +182,7 @@ 1. Do not hold the author(s), creator(s), developer(s) or distributor(s) liable for anything that happens or goes wrong - with your use of the work. - + with your use of the work.
@@ -195,7 +194,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wtfnmfpl-1.0.json b/docs/wtfnmfpl-1.0.json index 28b0909588..ce0d75d847 100644 --- a/docs/wtfnmfpl-1.0.json +++ b/docs/wtfnmfpl-1.0.json @@ -1 +1,22 @@ -{"key": "wtfnmfpl-1.0", "short_name": "WTFNMFPL-1.0", "name": "WTFNMFPL-1.0", "category": "Permissive", "owner": "adversary.org", "homepage_url": "https://github.com/adversary-org/wtfnmf", "notes": "The Do What The Fuck You Want To But It's Not My Fault Public License\n(WTFNMFPL or WTFNMFPLv1) is a variation on the Do What The Fuck You Want\nPublic License (WTFPL) by Sam Hocevar. Essentially it is the same as the\nWTFPL, except with an additional clause to indemnify the author, creator,\ndeveloper or distributor against anything a third party might do or\nencounter with or as a result of whatever's being licensed with it. This\nlicense was first published at Organised Adversary in October, 2013. The\nlicense is free to use by anyone as per the terms of itself.\n", "spdx_license_key": "LicenseRef-scancode-wtfnmfpl-1.0", "text_urls": ["https://github.com/adversary-org/wtfnmf/blob/master/COPYING.WTFNMFPL"], "ignorable_copyrights": ["Copyright (c) 2013 Ben McGinnes "], "ignorable_holders": ["Ben McGinnes"], "ignorable_emails": ["ben@adversary.org"]} \ No newline at end of file +{ + "key": "wtfnmfpl-1.0", + "short_name": "WTFNMFPL-1.0", + "name": "WTFNMFPL-1.0", + "category": "Permissive", + "owner": "adversary.org", + "homepage_url": "https://github.com/adversary-org/wtfnmf", + "notes": "The Do What The Fuck You Want To But It's Not My Fault Public License\n(WTFNMFPL or WTFNMFPLv1) is a variation on the Do What The Fuck You Want\nPublic License (WTFPL) by Sam Hocevar. Essentially it is the same as the\nWTFPL, except with an additional clause to indemnify the author, creator,\ndeveloper or distributor against anything a third party might do or\nencounter with or as a result of whatever's being licensed with it. This\nlicense was first published at Organised Adversary in October, 2013. The\nlicense is free to use by anyone as per the terms of itself.\n", + "spdx_license_key": "LicenseRef-scancode-wtfnmfpl-1.0", + "text_urls": [ + "https://github.com/adversary-org/wtfnmf/blob/master/COPYING.WTFNMFPL" + ], + "ignorable_copyrights": [ + "Copyright (c) 2013 Ben McGinnes " + ], + "ignorable_holders": [ + "Ben McGinnes" + ], + "ignorable_emails": [ + "ben@adversary.org" + ] +} \ No newline at end of file diff --git a/docs/wtfpl-1.0.LICENSE b/docs/wtfpl-1.0.LICENSE index c971e27c80..f2372ef43d 100644 --- a/docs/wtfpl-1.0.LICENSE +++ b/docs/wtfpl-1.0.LICENSE @@ -1,3 +1,31 @@ +--- +key: wtfpl-1.0 +short_name: WTFPL 1.0 +name: WTFPL 1.0 +category: Public Domain +owner: Sam Hocevar +homepage_url: https://en.wikipedia.org/wiki/WTFPL#Version_1 +notes: | + This license is found in the Windowmaker project with this mention in the + COPYING.WTFPL file The following artwork were created by Banlu Kemiyatorn + and are distributed through the license in this file GNUstepGlow.tiff [... + long list of files] do What The Fuck you want to Public License Version + 1.0, March 2000 Copyright (C) 2000 Banlu Kemiyatorn (]d). 136 Nives 7 + Jangwattana 14 Laksi Bangkok Everyone is permitted to copy and distribute + verbatim copies of this license document, but changing it is not allowed. + Ok, the purpose of this license is simple and you just DO WHAT THE FUCK YOU + WANT TO. +spdx_license_key: LicenseRef-scancode-wtfpl-1.0 +text_urls: + - http://hg.windowmaker.info/wmaker/file/0a3a3e370483/COPYING.WTFPL +other_urls: + - http://cvs.windowmaker.org/co.php/wm/COPYING.WTFPL +ignorable_copyrights: + - Copyright (c) 2000 Banlu Kemiyatorn +ignorable_holders: + - Banlu Kemiyatorn +--- + do What The Fuck you want to Public License Version 1.0, March 2000 @@ -9,4 +37,4 @@ of this license document, but changing it is not allowed. Ok, the purpose of this license is simple and you just -DO WHAT THE FUCK YOU WANT TO. +DO WHAT THE FUCK YOU WANT TO. \ No newline at end of file diff --git a/docs/wtfpl-1.0.html b/docs/wtfpl-1.0.html index a8778f1a29..4b126bc8cf 100644 --- a/docs/wtfpl-1.0.html +++ b/docs/wtfpl-1.0.html @@ -178,8 +178,7 @@ Ok, the purpose of this license is simple and you just -DO WHAT THE FUCK YOU WANT TO. - +DO WHAT THE FUCK YOU WANT TO.
@@ -191,7 +190,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wtfpl-1.0.json b/docs/wtfpl-1.0.json index d428ebacfd..f3184ffa40 100644 --- a/docs/wtfpl-1.0.json +++ b/docs/wtfpl-1.0.json @@ -1 +1,22 @@ -{"key": "wtfpl-1.0", "short_name": "WTFPL 1.0", "name": "WTFPL 1.0", "category": "Public Domain", "owner": "Sam Hocevar", "homepage_url": "https://en.wikipedia.org/wiki/WTFPL#Version_1", "notes": "This license is found in the Windowmaker project with this mention in the\nCOPYING.WTFPL file The following artwork were created by Banlu Kemiyatorn\nand are distributed through the license in this file GNUstepGlow.tiff [...\nlong list of files] do What The Fuck you want to Public License Version\n1.0, March 2000 Copyright (C) 2000 Banlu Kemiyatorn (]d). 136 Nives 7\nJangwattana 14 Laksi Bangkok Everyone is permitted to copy and distribute\nverbatim copies of this license document, but changing it is not allowed.\nOk, the purpose of this license is simple and you just DO WHAT THE FUCK YOU\nWANT TO.\n", "spdx_license_key": "LicenseRef-scancode-wtfpl-1.0", "text_urls": ["http://hg.windowmaker.info/wmaker/file/0a3a3e370483/COPYING.WTFPL"], "other_urls": ["http://cvs.windowmaker.org/co.php/wm/COPYING.WTFPL"], "ignorable_copyrights": ["Copyright (c) 2000 Banlu Kemiyatorn"], "ignorable_holders": ["Banlu Kemiyatorn"]} \ No newline at end of file +{ + "key": "wtfpl-1.0", + "short_name": "WTFPL 1.0", + "name": "WTFPL 1.0", + "category": "Public Domain", + "owner": "Sam Hocevar", + "homepage_url": "https://en.wikipedia.org/wiki/WTFPL#Version_1", + "notes": "This license is found in the Windowmaker project with this mention in the\nCOPYING.WTFPL file The following artwork were created by Banlu Kemiyatorn\nand are distributed through the license in this file GNUstepGlow.tiff [...\nlong list of files] do What The Fuck you want to Public License Version\n1.0, March 2000 Copyright (C) 2000 Banlu Kemiyatorn (]d). 136 Nives 7\nJangwattana 14 Laksi Bangkok Everyone is permitted to copy and distribute\nverbatim copies of this license document, but changing it is not allowed.\nOk, the purpose of this license is simple and you just DO WHAT THE FUCK YOU\nWANT TO.\n", + "spdx_license_key": "LicenseRef-scancode-wtfpl-1.0", + "text_urls": [ + "http://hg.windowmaker.info/wmaker/file/0a3a3e370483/COPYING.WTFPL" + ], + "other_urls": [ + "http://cvs.windowmaker.org/co.php/wm/COPYING.WTFPL" + ], + "ignorable_copyrights": [ + "Copyright (c) 2000 Banlu Kemiyatorn" + ], + "ignorable_holders": [ + "Banlu Kemiyatorn" + ] +} \ No newline at end of file diff --git a/docs/wtfpl-2.0.LICENSE b/docs/wtfpl-2.0.LICENSE index ade0b76c69..72f9f7a11f 100644 --- a/docs/wtfpl-2.0.LICENSE +++ b/docs/wtfpl-2.0.LICENSE @@ -1,3 +1,22 @@ +--- +key: wtfpl-2.0 +short_name: WTFPL 2.0 +name: WTFPL 2.0 +category: Public Domain +owner: Sam Hocevar +homepage_url: http://sam.zoy.org/wtfpl/ +spdx_license_key: WTFPL +text_urls: + - http://sam.zoy.org/wtfpl/COPYING +other_urls: + - http://fedoraproject.org/wiki/Licensing/WTFPL + - http://www.wtfpl.net/about/ +ignorable_copyrights: + - Copyright (c) 2004 Sam Hocevar +ignorable_holders: + - Sam Hocevar +--- + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE Version 2, December 2004 diff --git a/docs/wtfpl-2.0.html b/docs/wtfpl-2.0.html index 390116e028..f6bf8aa614 100644 --- a/docs/wtfpl-2.0.html +++ b/docs/wtfpl-2.0.html @@ -175,7 +175,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wtfpl-2.0.json b/docs/wtfpl-2.0.json index 7e1744d88e..464b964d79 100644 --- a/docs/wtfpl-2.0.json +++ b/docs/wtfpl-2.0.json @@ -1 +1,22 @@ -{"key": "wtfpl-2.0", "short_name": "WTFPL 2.0", "name": "WTFPL 2.0", "category": "Public Domain", "owner": "Sam Hocevar", "homepage_url": "http://sam.zoy.org/wtfpl/", "spdx_license_key": "WTFPL", "text_urls": ["http://sam.zoy.org/wtfpl/COPYING"], "other_urls": ["http://fedoraproject.org/wiki/Licensing/WTFPL", "http://www.wtfpl.net/about/"], "ignorable_copyrights": ["Copyright (c) 2004 Sam Hocevar"], "ignorable_holders": ["Sam Hocevar"]} \ No newline at end of file +{ + "key": "wtfpl-2.0", + "short_name": "WTFPL 2.0", + "name": "WTFPL 2.0", + "category": "Public Domain", + "owner": "Sam Hocevar", + "homepage_url": "http://sam.zoy.org/wtfpl/", + "spdx_license_key": "WTFPL", + "text_urls": [ + "http://sam.zoy.org/wtfpl/COPYING" + ], + "other_urls": [ + "http://fedoraproject.org/wiki/Licensing/WTFPL", + "http://www.wtfpl.net/about/" + ], + "ignorable_copyrights": [ + "Copyright (c) 2004 Sam Hocevar" + ], + "ignorable_holders": [ + "Sam Hocevar" + ] +} \ No newline at end of file diff --git a/docs/wthpl-1.0.LICENSE b/docs/wthpl-1.0.LICENSE index 1e1c2871ff..b97b42ecdd 100644 --- a/docs/wthpl-1.0.LICENSE +++ b/docs/wthpl-1.0.LICENSE @@ -1,7 +1,19 @@ +--- +key: wthpl-1.0 +short_name: WTHPL 1.0 +name: DO WHAT THE HELL YOU WANT TO PUBLIC LICENSE 1.0 +category: Public Domain +owner: Fabrício Matté +homepage_url: https://github.com/UltCombo/WTHPL +notes: a fork of the WTFPL +spdx_license_key: LicenseRef-scancode-wthpl-1.0 +minimum_coverage: 50 +--- + DO WHAT THE HELL YOU WANT TO PUBLIC LICENSE Version 1.0.0, October 2014 DO WHAT THE HELL YOU WANT TO PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - 0. You just DO WHAT THE HELL YOU WANT TO. + 0. You just DO WHAT THE HELL YOU WANT TO. \ No newline at end of file diff --git a/docs/wthpl-1.0.html b/docs/wthpl-1.0.html index 33ee49aa67..0bd445c5e2 100644 --- a/docs/wthpl-1.0.html +++ b/docs/wthpl-1.0.html @@ -135,8 +135,7 @@ DO WHAT THE HELL YOU WANT TO PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - 0. You just DO WHAT THE HELL YOU WANT TO. - + 0. You just DO WHAT THE HELL YOU WANT TO.
@@ -148,7 +147,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wthpl-1.0.json b/docs/wthpl-1.0.json index 867afb5bfa..bbefe182a7 100644 --- a/docs/wthpl-1.0.json +++ b/docs/wthpl-1.0.json @@ -1 +1,11 @@ -{"key": "wthpl-1.0", "short_name": "WTHPL 1.0", "name": "DO WHAT THE HELL YOU WANT TO PUBLIC LICENSE 1.0", "category": "Public Domain", "owner": "Fabr\u00edcio Matt\u00e9", "homepage_url": "https://github.com/UltCombo/WTHPL", "notes": "a fork of the WTFPL", "spdx_license_key": "LicenseRef-scancode-wthpl-1.0", "minimum_coverage": 50} \ No newline at end of file +{ + "key": "wthpl-1.0", + "short_name": "WTHPL 1.0", + "name": "DO WHAT THE HELL YOU WANT TO PUBLIC LICENSE 1.0", + "category": "Public Domain", + "owner": "Fabr\u00edcio Matt\u00e9", + "homepage_url": "https://github.com/UltCombo/WTHPL", + "notes": "a fork of the WTFPL", + "spdx_license_key": "LicenseRef-scancode-wthpl-1.0", + "minimum_coverage": 50 +} \ No newline at end of file diff --git a/docs/wxwidgets.LICENSE b/docs/wxwidgets.LICENSE index fc4c8da497..6a6065ce32 100644 --- a/docs/wxwidgets.LICENSE +++ b/docs/wxwidgets.LICENSE @@ -1,3 +1,21 @@ +--- +key: wxwidgets +short_name: wxWidgets Licence +name: wxWidgets Licence +category: Permissive +owner: wxWidgets +homepage_url: http://www.wxwidgets.org/about/licence.htm +spdx_license_key: LicenseRef-scancode-wxwidgets +text_urls: + - http://www.wxwidgets.org/about/licence.htm +ignorable_copyrights: + - Copyright (c) 1997 Julian Smart, Markus Holzem +ignorable_holders: + - Julian Smart, Markus Holzem +ignorable_emails: + - julian@wxwidgets.org +--- + wxWidgets Licence Copyright (C) 1997 Julian Smart, Markus Holzem diff --git a/docs/wxwidgets.html b/docs/wxwidgets.html index 76bbd68efe..990ce0fc1b 100644 --- a/docs/wxwidgets.html +++ b/docs/wxwidgets.html @@ -383,7 +383,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wxwidgets.json b/docs/wxwidgets.json index ffd067f160..50b93bbf4f 100644 --- a/docs/wxwidgets.json +++ b/docs/wxwidgets.json @@ -1 +1,21 @@ -{"key": "wxwidgets", "short_name": "wxWidgets Licence", "name": "wxWidgets Licence", "category": "Permissive", "owner": "wxWidgets", "homepage_url": "http://www.wxwidgets.org/about/licence.htm", "spdx_license_key": "LicenseRef-scancode-wxwidgets", "text_urls": ["http://www.wxwidgets.org/about/licence.htm"], "ignorable_copyrights": ["Copyright (c) 1997 Julian Smart, Markus Holzem"], "ignorable_holders": ["Julian Smart, Markus Holzem"], "ignorable_emails": ["julian@wxwidgets.org"]} \ No newline at end of file +{ + "key": "wxwidgets", + "short_name": "wxWidgets Licence", + "name": "wxWidgets Licence", + "category": "Permissive", + "owner": "wxWidgets", + "homepage_url": "http://www.wxwidgets.org/about/licence.htm", + "spdx_license_key": "LicenseRef-scancode-wxwidgets", + "text_urls": [ + "http://www.wxwidgets.org/about/licence.htm" + ], + "ignorable_copyrights": [ + "Copyright (c) 1997 Julian Smart, Markus Holzem" + ], + "ignorable_holders": [ + "Julian Smart, Markus Holzem" + ], + "ignorable_emails": [ + "julian@wxwidgets.org" + ] +} \ No newline at end of file diff --git a/docs/wxwindows-exception-3.1.LICENSE b/docs/wxwindows-exception-3.1.LICENSE index df32f614ae..f39f145508 100644 --- a/docs/wxwindows-exception-3.1.LICENSE +++ b/docs/wxwindows-exception-3.1.LICENSE @@ -1,3 +1,58 @@ +--- +key: wxwindows-exception-3.1 +short_name: WxWindows Library Exception to GNU Licenses +name: WxWindows Library Exception to GNU Licenses +category: Copyleft Limited +owner: wxWidgets +homepage_url: http://www.wxwidgets.org/about/newlicen.htm +notes: formerly was SPDX id wxWindows +is_exception: yes +spdx_license_key: WxWindows-exception-3.1 +osi_url: https://opensource.org/licenses/WXwindows +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://www.opensource.org/licenses/WXwindows +standard_notice: | + The wxWindows Library Licence + Copyright (c) 1998 Julian Smart, Robert Roebling [, ...] + Everyone is permitted to copy and distribute verbatim copies of this + licence document, but changing it is not allowed. + WXWINDOWS LIBRARY LICENCE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Library General Public Licence as published by + the Free Software Foundation; either version 2 of the Licence, or (at your + option) any later version. + This library is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public + Licence for more details. + You should have received a copy of the GNU Library General Public Licence + along with this software, usually in a file named COPYING.LIB. If not, + write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, + Boston, MA 02111-1307 USA. + EXCEPTION NOTICE + 1. As a special exception, the copyright holders of this library give + permission for additional uses of the text contained in this release of the + library as licenced under the wxWindows Library Licence, applying either + version 3.1 of the Licence, or (at your option) any later version of the + Licence as published by the copyright holders of version 3.1 of the Licence + document. + 2. The exception is that you may use, copy, link, modify and distribute + under your own terms, binary object code versions of works based on + the Library. + 3. If you copy code from files distributed under the terms of the GNU + General Public Licence or the GNU Library General Public Licence into a + copy of this library, as this licence permits, the exception does not apply + to the code that you add in this way. To avoid misleading anyone as to the + status of such modified files, you must delete this exception notice from + such code and/or adjust the licensing conditions notice accordingly. + 4. If you write modifications of your own for this library, it is your + choice whether to permit this exception to apply to your modifications. If + you do not wish that, you must delete the exception notice from such code + and/or adjust the licensing conditions notice accordingly. +--- + EXCEPTION NOTICE 1. As a special exception, the copyright holders of this library give @@ -22,4 +77,4 @@ accordingly. 4. If you write modifications of your own for this library, it is your choice whether to permit this exception to apply to your modifications. If you do not wish that, you must delete the exception notice from such -code and/or adjust the licensing conditions notice accordingly. +code and/or adjust the licensing conditions notice accordingly. \ No newline at end of file diff --git a/docs/wxwindows-exception-3.1.html b/docs/wxwindows-exception-3.1.html index 1ceeb9826c..60b92b64ad 100644 --- a/docs/wxwindows-exception-3.1.html +++ b/docs/wxwindows-exception-3.1.html @@ -214,8 +214,7 @@ 4. If you write modifications of your own for this library, it is your choice whether to permit this exception to apply to your modifications. If you do not wish that, you must delete the exception notice from such -code and/or adjust the licensing conditions notice accordingly. - +code and/or adjust the licensing conditions notice accordingly.
@@ -227,7 +226,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wxwindows-exception-3.1.json b/docs/wxwindows-exception-3.1.json index 895e861e07..f48f776eda 100644 --- a/docs/wxwindows-exception-3.1.json +++ b/docs/wxwindows-exception-3.1.json @@ -1 +1,17 @@ -{"key": "wxwindows-exception-3.1", "short_name": "WxWindows Library Exception to GNU Licenses", "name": "WxWindows Library Exception to GNU Licenses", "category": "Copyleft Limited", "owner": "wxWidgets", "homepage_url": "http://www.wxwidgets.org/about/newlicen.htm", "notes": "formerly was SPDX id wxWindows", "is_exception": true, "spdx_license_key": "WxWindows-exception-3.1", "osi_url": "https://opensource.org/licenses/WXwindows", "other_urls": ["http://www.gnu.org/licenses/gpl-2.0.txt", "http://www.opensource.org/licenses/WXwindows"], "standard_notice": "The wxWindows Library Licence\nCopyright (c) 1998 Julian Smart, Robert Roebling [, ...]\nEveryone is permitted to copy and distribute verbatim copies of this\nlicence document, but changing it is not allowed.\nWXWINDOWS LIBRARY LICENCE\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\nThis library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public Licence as published by\nthe Free Software Foundation; either version 2 of the Licence, or (at your\noption) any later version.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public\nLicence for more details.\nYou should have received a copy of the GNU Library General Public Licence\nalong with this software, usually in a file named COPYING.LIB. If not,\nwrite to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,\nBoston, MA 02111-1307 USA.\nEXCEPTION NOTICE\n1. As a special exception, the copyright holders of this library give\npermission for additional uses of the text contained in this release of the\nlibrary as licenced under the wxWindows Library Licence, applying either\nversion 3.1 of the Licence, or (at your option) any later version of the\nLicence as published by the copyright holders of version 3.1 of the Licence\ndocument.\n2. The exception is that you may use, copy, link, modify and distribute\nunder your own terms, binary object code versions of works based on\nthe Library.\n3. If you copy code from files distributed under the terms of the GNU\nGeneral Public Licence or the GNU Library General Public Licence into a\ncopy of this library, as this licence permits, the exception does not apply\nto the code that you add in this way. To avoid misleading anyone as to the\nstatus of such modified files, you must delete this exception notice from\nsuch code and/or adjust the licensing conditions notice accordingly.\n4. If you write modifications of your own for this library, it is your\nchoice whether to permit this exception to apply to your modifications. If\nyou do not wish that, you must delete the exception notice from such code\nand/or adjust the licensing conditions notice accordingly.\n"} \ No newline at end of file +{ + "key": "wxwindows-exception-3.1", + "short_name": "WxWindows Library Exception to GNU Licenses", + "name": "WxWindows Library Exception to GNU Licenses", + "category": "Copyleft Limited", + "owner": "wxWidgets", + "homepage_url": "http://www.wxwidgets.org/about/newlicen.htm", + "notes": "formerly was SPDX id wxWindows", + "is_exception": true, + "spdx_license_key": "WxWindows-exception-3.1", + "osi_url": "https://opensource.org/licenses/WXwindows", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt", + "http://www.opensource.org/licenses/WXwindows" + ], + "standard_notice": "The wxWindows Library Licence\nCopyright (c) 1998 Julian Smart, Robert Roebling [, ...]\nEveryone is permitted to copy and distribute verbatim copies of this\nlicence document, but changing it is not allowed.\nWXWINDOWS LIBRARY LICENCE\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\nThis library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public Licence as published by\nthe Free Software Foundation; either version 2 of the Licence, or (at your\noption) any later version.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public\nLicence for more details.\nYou should have received a copy of the GNU Library General Public Licence\nalong with this software, usually in a file named COPYING.LIB. If not,\nwrite to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,\nBoston, MA 02111-1307 USA.\nEXCEPTION NOTICE\n1. As a special exception, the copyright holders of this library give\npermission for additional uses of the text contained in this release of the\nlibrary as licenced under the wxWindows Library Licence, applying either\nversion 3.1 of the Licence, or (at your option) any later version of the\nLicence as published by the copyright holders of version 3.1 of the Licence\ndocument.\n2. The exception is that you may use, copy, link, modify and distribute\nunder your own terms, binary object code versions of works based on\nthe Library.\n3. If you copy code from files distributed under the terms of the GNU\nGeneral Public Licence or the GNU Library General Public Licence into a\ncopy of this library, as this licence permits, the exception does not apply\nto the code that you add in this way. To avoid misleading anyone as to the\nstatus of such modified files, you must delete this exception notice from\nsuch code and/or adjust the licensing conditions notice accordingly.\n4. If you write modifications of your own for this library, it is your\nchoice whether to permit this exception to apply to your modifications. If\nyou do not wish that, you must delete the exception notice from such code\nand/or adjust the licensing conditions notice accordingly.\n" +} \ No newline at end of file diff --git a/docs/wxwindows-r-3.0.LICENSE b/docs/wxwindows-r-3.0.LICENSE index 8a2a3cc46b..d3a81c0321 100644 --- a/docs/wxwindows-r-3.0.LICENSE +++ b/docs/wxwindows-r-3.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: wxwindows-r-3.0 +short_name: wxWindows Restricted Licence 3.0 +name: wxWindows Restricted Licence 3.0 +category: Copyleft Limited +owner: wxWidgets +homepage_url: http://www.wxwidgets.org/about/licence.htm +spdx_license_key: LicenseRef-scancode-wxwindows-r-3.0 +text_urls: + - http://www.wxwidgets.org/about/licence.htm +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 1998 Julian Smart, Robert Roebling +ignorable_holders: + - Julian Smart, Robert Roebling +--- + wxWindows Restricted Licence, Version 3 ======================================= diff --git a/docs/wxwindows-r-3.0.html b/docs/wxwindows-r-3.0.html index 202d779a33..e3bead5e39 100644 --- a/docs/wxwindows-r-3.0.html +++ b/docs/wxwindows-r-3.0.html @@ -216,7 +216,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wxwindows-r-3.0.json b/docs/wxwindows-r-3.0.json index 89d2e320cb..1a443e519a 100644 --- a/docs/wxwindows-r-3.0.json +++ b/docs/wxwindows-r-3.0.json @@ -1 +1,19 @@ -{"key": "wxwindows-r-3.0", "short_name": "wxWindows Restricted Licence 3.0", "name": "wxWindows Restricted Licence 3.0", "category": "Copyleft Limited", "owner": "wxWidgets", "homepage_url": "http://www.wxwidgets.org/about/licence.htm", "spdx_license_key": "LicenseRef-scancode-wxwindows-r-3.0", "text_urls": ["http://www.wxwidgets.org/about/licence.htm"], "minimum_coverage": 90, "ignorable_copyrights": ["Copyright (c) 1998 Julian Smart, Robert Roebling"], "ignorable_holders": ["Julian Smart, Robert Roebling"]} \ No newline at end of file +{ + "key": "wxwindows-r-3.0", + "short_name": "wxWindows Restricted Licence 3.0", + "name": "wxWindows Restricted Licence 3.0", + "category": "Copyleft Limited", + "owner": "wxWidgets", + "homepage_url": "http://www.wxwidgets.org/about/licence.htm", + "spdx_license_key": "LicenseRef-scancode-wxwindows-r-3.0", + "text_urls": [ + "http://www.wxwidgets.org/about/licence.htm" + ], + "minimum_coverage": 90, + "ignorable_copyrights": [ + "Copyright (c) 1998 Julian Smart, Robert Roebling" + ], + "ignorable_holders": [ + "Julian Smart, Robert Roebling" + ] +} \ No newline at end of file diff --git a/docs/wxwindows-u-3.0.LICENSE b/docs/wxwindows-u-3.0.LICENSE index b030e19df1..d14b712329 100644 --- a/docs/wxwindows-u-3.0.LICENSE +++ b/docs/wxwindows-u-3.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: wxwindows-u-3.0 +short_name: wxWindows Unrestricted Licence 3.0 +name: wxWindows Unrestricted Licence 3.0 +category: Permissive +owner: wxWidgets +homepage_url: http://www.wxwidgets.org/about/licence.htm +spdx_license_key: LicenseRef-scancode-wxwindows-u-3.0 +text_urls: + - http://www.wxwidgets.org/about/licence.htm +faq_url: http://www.wxwidgets.org/about/newlicen.htm +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 1997 Julian Smart, Robert Roebling +ignorable_holders: + - Julian Smart, Robert Roebling +--- + wxWindows Unrestricted Licence, Version 3 ========================================= diff --git a/docs/wxwindows-u-3.0.html b/docs/wxwindows-u-3.0.html index 85425dbbd1..42169373eb 100644 --- a/docs/wxwindows-u-3.0.html +++ b/docs/wxwindows-u-3.0.html @@ -209,7 +209,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wxwindows-u-3.0.json b/docs/wxwindows-u-3.0.json index d35fd2ec2a..53b19112bb 100644 --- a/docs/wxwindows-u-3.0.json +++ b/docs/wxwindows-u-3.0.json @@ -1 +1,20 @@ -{"key": "wxwindows-u-3.0", "short_name": "wxWindows Unrestricted Licence 3.0", "name": "wxWindows Unrestricted Licence 3.0", "category": "Permissive", "owner": "wxWidgets", "homepage_url": "http://www.wxwidgets.org/about/licence.htm", "spdx_license_key": "LicenseRef-scancode-wxwindows-u-3.0", "text_urls": ["http://www.wxwidgets.org/about/licence.htm"], "faq_url": "http://www.wxwidgets.org/about/newlicen.htm", "minimum_coverage": 90, "ignorable_copyrights": ["Copyright (c) 1997 Julian Smart, Robert Roebling"], "ignorable_holders": ["Julian Smart, Robert Roebling"]} \ No newline at end of file +{ + "key": "wxwindows-u-3.0", + "short_name": "wxWindows Unrestricted Licence 3.0", + "name": "wxWindows Unrestricted Licence 3.0", + "category": "Permissive", + "owner": "wxWidgets", + "homepage_url": "http://www.wxwidgets.org/about/licence.htm", + "spdx_license_key": "LicenseRef-scancode-wxwindows-u-3.0", + "text_urls": [ + "http://www.wxwidgets.org/about/licence.htm" + ], + "faq_url": "http://www.wxwidgets.org/about/newlicen.htm", + "minimum_coverage": 90, + "ignorable_copyrights": [ + "Copyright (c) 1997 Julian Smart, Robert Roebling" + ], + "ignorable_holders": [ + "Julian Smart, Robert Roebling" + ] +} \ No newline at end of file diff --git a/docs/wxwindows.LICENSE b/docs/wxwindows.LICENSE index e69de29bb2..f6b8c72bda 100644 --- a/docs/wxwindows.LICENSE +++ b/docs/wxwindows.LICENSE @@ -0,0 +1,71 @@ +--- +key: wxwindows +is_deprecated: yes +short_name: wxWindows Library Licence 3.1 +name: wxWindows Library Licence 3.1 +category: Copyleft Limited +owner: wxWidgets +homepage_url: http://www.wxwidgets.org/about/newlicen.htm +notes: this has been replaced by the lgpl-2.0-plus WITH wxwindows-exception-3.1 and was formerly + using the wxWindows SPDX license id +spdx_license_key: wxWindows +text_urls: + - http://www.wxwidgets.org/about/newlicen.htm +osi_url: http://www.opensource.org/licenses/wxwindows.php +faq_url: http://www.wxwidgets.org/about/licence.htm +other_urls: + - http://www.opensource.org/licenses/WXwindows + - http://www.wxwidgets.org/about/licence3.txt +--- + + wxWindows Library Licence, Version 3.1 + ====================================== + + Copyright (C) 1998-2005 Julian Smart, Robert Roebling et al + + Everyone is permitted to copy and distribute verbatim copies + of this licence document, but changing it is not allowed. + + WXWINDOWS LIBRARY LICENCE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Library General Public Licence as published by + the Free Software Foundation; either version 2 of the Licence, or (at + your option) any later version. + + This library is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library + General Public Licence for more details. + + You should have received a copy of the GNU Library General Public Licence + along with this software, usually in a file named COPYING.LIB. If not, + write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, + Boston, MA 02111-1307 USA. + + EXCEPTION NOTICE + + 1. As a special exception, the copyright holders of this library give + permission for additional uses of the text contained in this release of + the library as licenced under the wxWindows Library Licence, applying + either version 3.1 of the Licence, or (at your option) any later version of + the Licence as published by the copyright holders of version + 3.1 of the Licence document. + + 2. The exception is that you may use, copy, link, modify and distribute + under your own terms, binary object code versions of works based + on the Library. + + 3. If you copy code from files distributed under the terms of the GNU + General Public Licence or the GNU Library General Public Licence into a + copy of this library, as this licence permits, the exception does not + apply to the code that you add in this way. To avoid misleading anyone as + to the status of such modified files, you must delete this exception + notice from such code and/or adjust the licensing conditions notice + accordingly. + + 4. If you write modifications of your own for this library, it is your + choice whether to permit this exception to apply to your modifications. + If you do not wish that, you must delete the exception notice from such + code and/or adjust the licensing conditions notice accordingly. \ No newline at end of file diff --git a/docs/wxwindows.html b/docs/wxwindows.html index 972a6f43c7..bbd9e17a85 100644 --- a/docs/wxwindows.html +++ b/docs/wxwindows.html @@ -161,7 +161,57 @@
license_text
-
+
  wxWindows Library Licence, Version 3.1
+  ======================================
+
+  Copyright (C) 1998-2005 Julian Smart, Robert Roebling et al
+
+  Everyone is permitted to copy and distribute verbatim copies
+  of this licence document, but changing it is not allowed.
+
+                       WXWINDOWS LIBRARY LICENCE
+     TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+  
+  This library is free software; you can redistribute it and/or modify it
+  under the terms of the GNU Library General Public Licence as published by
+  the Free Software Foundation; either version 2 of the Licence, or (at
+  your option) any later version.
+  
+  This library is distributed in the hope that it will be useful, but
+  WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library
+  General Public Licence for more details.
+
+  You should have received a copy of the GNU Library General Public Licence
+  along with this software, usually in a file named COPYING.LIB.  If not,
+  write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+  Boston, MA 02111-1307 USA.
+
+  EXCEPTION NOTICE
+
+  1. As a special exception, the copyright holders of this library give
+  permission for additional uses of the text contained in this release of
+  the library as licenced under the wxWindows Library Licence, applying
+  either version 3.1 of the Licence, or (at your option) any later version of
+  the Licence as published by the copyright holders of version
+  3.1 of the Licence document.
+
+  2. The exception is that you may use, copy, link, modify and distribute
+  under your own terms, binary object code versions of works based
+  on the Library.
+
+  3. If you copy code from files distributed under the terms of the GNU
+  General Public Licence or the GNU Library General Public Licence into a
+  copy of this library, as this licence permits, the exception does not
+  apply to the code that you add in this way.  To avoid misleading anyone as
+  to the status of such modified files, you must delete this exception
+  notice from such code and/or adjust the licensing conditions notice
+  accordingly.
+
+  4. If you write modifications of your own for this library, it is your
+  choice whether to permit this exception to apply to your modifications. 
+  If you do not wish that, you must delete the exception notice from such
+  code and/or adjust the licensing conditions notice accordingly.
@@ -173,7 +223,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/wxwindows.json b/docs/wxwindows.json index 9851020a95..721f232572 100644 --- a/docs/wxwindows.json +++ b/docs/wxwindows.json @@ -1 +1,20 @@ -{"key": "wxwindows", "is_deprecated": true, "short_name": "wxWindows Library Licence 3.1", "name": "wxWindows Library Licence 3.1", "category": "Copyleft Limited", "owner": "wxWidgets", "homepage_url": "http://www.wxwidgets.org/about/newlicen.htm", "notes": "this has been replaced by the lgpl-2.0-plus WITH wxwindows-exception-3.1 and was formerly using the wxWindows SPDX license id", "spdx_license_key": "wxWindows", "text_urls": ["http://www.wxwidgets.org/about/newlicen.htm"], "osi_url": "http://www.opensource.org/licenses/wxwindows.php", "faq_url": "http://www.wxwidgets.org/about/licence.htm", "other_urls": ["http://www.opensource.org/licenses/WXwindows", "http://www.wxwidgets.org/about/licence3.txt"]} \ No newline at end of file +{ + "key": "wxwindows", + "is_deprecated": true, + "short_name": "wxWindows Library Licence 3.1", + "name": "wxWindows Library Licence 3.1", + "category": "Copyleft Limited", + "owner": "wxWidgets", + "homepage_url": "http://www.wxwidgets.org/about/newlicen.htm", + "notes": "this has been replaced by the lgpl-2.0-plus WITH wxwindows-exception-3.1 and was formerly using the wxWindows SPDX license id", + "spdx_license_key": "wxWindows", + "text_urls": [ + "http://www.wxwidgets.org/about/newlicen.htm" + ], + "osi_url": "http://www.opensource.org/licenses/wxwindows.php", + "faq_url": "http://www.wxwidgets.org/about/licence.htm", + "other_urls": [ + "http://www.opensource.org/licenses/WXwindows", + "http://www.wxwidgets.org/about/licence3.txt" + ] +} \ No newline at end of file diff --git a/docs/x11-acer.LICENSE b/docs/x11-acer.LICENSE index ef1a53fe3f..f63775d049 100644 --- a/docs/x11-acer.LICENSE +++ b/docs/x11-acer.LICENSE @@ -1,3 +1,15 @@ +--- +key: x11-acer +short_name: X11-Style (Acer) +name: X11-Style (Acer) +category: Permissive +owner: Acer Labs +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.Abilis +spdx_license_key: LicenseRef-scancode-x11-acer +other_urls: + - https://tracxn.com/d/companies/abilis.com +--- + 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 diff --git a/docs/x11-acer.html b/docs/x11-acer.html index 0a3f8ae630..68def8219c 100644 --- a/docs/x11-acer.html +++ b/docs/x11-acer.html @@ -148,7 +148,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-acer.json b/docs/x11-acer.json index 80974aef9c..4769337997 100644 --- a/docs/x11-acer.json +++ b/docs/x11-acer.json @@ -1 +1,12 @@ -{"key": "x11-acer", "short_name": "X11-Style (Acer)", "name": "X11-Style (Acer)", "category": "Permissive", "owner": "Acer Labs", "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.Abilis", "spdx_license_key": "LicenseRef-scancode-x11-acer", "other_urls": ["https://tracxn.com/d/companies/abilis.com"]} \ No newline at end of file +{ + "key": "x11-acer", + "short_name": "X11-Style (Acer)", + "name": "X11-Style (Acer)", + "category": "Permissive", + "owner": "Acer Labs", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.Abilis", + "spdx_license_key": "LicenseRef-scancode-x11-acer", + "other_urls": [ + "https://tracxn.com/d/companies/abilis.com" + ] +} \ No newline at end of file diff --git a/docs/x11-adobe-dec.LICENSE b/docs/x11-adobe-dec.LICENSE index f8701de298..d1fa84a1a6 100644 --- a/docs/x11-adobe-dec.LICENSE +++ b/docs/x11-adobe-dec.LICENSE @@ -1,3 +1,13 @@ +--- +key: x11-adobe-dec +short_name: X11-Style (Adobe-DEC) +name: X11-Style (Adobe-DEC) +category: Permissive +owner: Adobe Systems +spdx_license_key: LicenseRef-scancode-x11-adobe-dec +minimum_coverage: 85 +--- + Adobe is a trademark of Adobe Systems Incorporated which may be registered in certain jurisdictions. Permission to use these trademarks is hereby granted only in association with the images described in this file. diff --git a/docs/x11-adobe-dec.html b/docs/x11-adobe-dec.html index 17542d955d..cab27725e8 100644 --- a/docs/x11-adobe-dec.html +++ b/docs/x11-adobe-dec.html @@ -139,7 +139,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-adobe-dec.json b/docs/x11-adobe-dec.json index c9b0447cf4..39643f216a 100644 --- a/docs/x11-adobe-dec.json +++ b/docs/x11-adobe-dec.json @@ -1 +1,9 @@ -{"key": "x11-adobe-dec", "short_name": "X11-Style (Adobe-DEC)", "name": "X11-Style (Adobe-DEC)", "category": "Permissive", "owner": "Adobe Systems", "spdx_license_key": "LicenseRef-scancode-x11-adobe-dec", "minimum_coverage": 85} \ No newline at end of file +{ + "key": "x11-adobe-dec", + "short_name": "X11-Style (Adobe-DEC)", + "name": "X11-Style (Adobe-DEC)", + "category": "Permissive", + "owner": "Adobe Systems", + "spdx_license_key": "LicenseRef-scancode-x11-adobe-dec", + "minimum_coverage": 85 +} \ No newline at end of file diff --git a/docs/x11-adobe.LICENSE b/docs/x11-adobe.LICENSE index bf00f3332c..0bb3fbc6cb 100644 --- a/docs/x11-adobe.LICENSE +++ b/docs/x11-adobe.LICENSE @@ -1,3 +1,15 @@ +--- +key: x11-adobe +short_name: X11-Style (Adobe) +name: X11-Style (Adobe) +category: Permissive +owner: Adobe Systems +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: LicenseRef-scancode-x11-adobe +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +--- + Permission to use, copy, modify, distribute, and sublicense this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notices appear in all copies and that both those diff --git a/docs/x11-adobe.html b/docs/x11-adobe.html index 5401e613f3..dd1b3418c0 100644 --- a/docs/x11-adobe.html +++ b/docs/x11-adobe.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-adobe.json b/docs/x11-adobe.json index fd7d1e1095..00ed22c2df 100644 --- a/docs/x11-adobe.json +++ b/docs/x11-adobe.json @@ -1 +1,12 @@ -{"key": "x11-adobe", "short_name": "X11-Style (Adobe)", "name": "X11-Style (Adobe)", "category": "Permissive", "owner": "Adobe Systems", "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", "spdx_license_key": "LicenseRef-scancode-x11-adobe", "text_urls": ["http://www.xfree86.org/current/LICENSE5.html"]} \ No newline at end of file +{ + "key": "x11-adobe", + "short_name": "X11-Style (Adobe)", + "name": "X11-Style (Adobe)", + "category": "Permissive", + "owner": "Adobe Systems", + "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", + "spdx_license_key": "LicenseRef-scancode-x11-adobe", + "text_urls": [ + "http://www.xfree86.org/current/LICENSE5.html" + ] +} \ No newline at end of file diff --git a/docs/x11-bitstream.LICENSE b/docs/x11-bitstream.LICENSE index ec69af0ce1..51519f7701 100644 --- a/docs/x11-bitstream.LICENSE +++ b/docs/x11-bitstream.LICENSE @@ -1,3 +1,17 @@ +--- +key: x11-bitstream +short_name: X11-Style (Bitstream Charter) +name: X11-Style (Bitstream Charter) +category: Permissive +owner: Bitstream +notes: this is an historical license with an extra grant +spdx_license_key: LicenseRef-scancode-x11-bitstream +ignorable_copyrights: + - (c) Copyright 1989-1992, Bitstream Inc., Cambridge, MA. +ignorable_holders: + - Bitstream Inc., Cambridge, MA. +--- + The names "Bitstream" and "Charter" are registered trademarks of Bitstream, Inc. Permission to use these trademarks is hereby granted only in association with the images described in this file. diff --git a/docs/x11-bitstream.html b/docs/x11-bitstream.html index f763320fcf..7a3a29a004 100644 --- a/docs/x11-bitstream.html +++ b/docs/x11-bitstream.html @@ -177,7 +177,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-bitstream.json b/docs/x11-bitstream.json index 8da2868ac9..a95139f682 100644 --- a/docs/x11-bitstream.json +++ b/docs/x11-bitstream.json @@ -1 +1,15 @@ -{"key": "x11-bitstream", "short_name": "X11-Style (Bitstream Charter)", "name": "X11-Style (Bitstream Charter)", "category": "Permissive", "owner": "Bitstream", "notes": "this is an historical license with an extra grant", "spdx_license_key": "LicenseRef-scancode-x11-bitstream", "ignorable_copyrights": ["(c) Copyright 1989-1992, Bitstream Inc., Cambridge, MA."], "ignorable_holders": ["Bitstream Inc., Cambridge, MA."]} \ No newline at end of file +{ + "key": "x11-bitstream", + "short_name": "X11-Style (Bitstream Charter)", + "name": "X11-Style (Bitstream Charter)", + "category": "Permissive", + "owner": "Bitstream", + "notes": "this is an historical license with an extra grant", + "spdx_license_key": "LicenseRef-scancode-x11-bitstream", + "ignorable_copyrights": [ + "(c) Copyright 1989-1992, Bitstream Inc., Cambridge, MA." + ], + "ignorable_holders": [ + "Bitstream Inc., Cambridge, MA." + ] +} \ No newline at end of file diff --git a/docs/x11-dec1.LICENSE b/docs/x11-dec1.LICENSE index 7e0fe86204..c2ec845085 100644 --- a/docs/x11-dec1.LICENSE +++ b/docs/x11-dec1.LICENSE @@ -1,3 +1,16 @@ +--- +key: x11-dec1 +short_name: X11-Style (DEC 1) +name: X11-Style (DEC 1) +category: Permissive +owner: DEC - Digital Equipment Corporation +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: LicenseRef-scancode-x11-dec1 +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +minimum_coverage: 80 +--- + 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 diff --git a/docs/x11-dec1.html b/docs/x11-dec1.html index 56b9a21000..729b6d7fe3 100644 --- a/docs/x11-dec1.html +++ b/docs/x11-dec1.html @@ -156,7 +156,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-dec1.json b/docs/x11-dec1.json index 9a4f287e7d..26416842f8 100644 --- a/docs/x11-dec1.json +++ b/docs/x11-dec1.json @@ -1 +1,13 @@ -{"key": "x11-dec1", "short_name": "X11-Style (DEC 1)", "name": "X11-Style (DEC 1)", "category": "Permissive", "owner": "DEC - Digital Equipment Corporation", "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", "spdx_license_key": "LicenseRef-scancode-x11-dec1", "text_urls": ["http://www.xfree86.org/current/LICENSE5.html"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "x11-dec1", + "short_name": "X11-Style (DEC 1)", + "name": "X11-Style (DEC 1)", + "category": "Permissive", + "owner": "DEC - Digital Equipment Corporation", + "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", + "spdx_license_key": "LicenseRef-scancode-x11-dec1", + "text_urls": [ + "http://www.xfree86.org/current/LICENSE5.html" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/x11-dec2.LICENSE b/docs/x11-dec2.LICENSE index c1f4e5d324..b0a67c3972 100644 --- a/docs/x11-dec2.LICENSE +++ b/docs/x11-dec2.LICENSE @@ -1,3 +1,16 @@ +--- +key: x11-dec2 +short_name: X11-Style (DEC 2) +name: X11-Style (DEC 2) +category: Permissive +owner: DEC - Digital Equipment Corporation +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: LicenseRef-scancode-x11-dec2 +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +minimum_coverage: 80 +--- + THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE AND SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT CORPORATION. DIGITAL MAKES NO REPRESENTATIONS ABOUT THE SUITABILITY OF THIS SOFTWARE FOR ANY PURPOSE. IT IS diff --git a/docs/x11-dec2.html b/docs/x11-dec2.html index 5d57a8da47..72a4d26f33 100644 --- a/docs/x11-dec2.html +++ b/docs/x11-dec2.html @@ -158,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-dec2.json b/docs/x11-dec2.json index 24b46e6d41..50974ec98f 100644 --- a/docs/x11-dec2.json +++ b/docs/x11-dec2.json @@ -1 +1,13 @@ -{"key": "x11-dec2", "short_name": "X11-Style (DEC 2)", "name": "X11-Style (DEC 2)", "category": "Permissive", "owner": "DEC - Digital Equipment Corporation", "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", "spdx_license_key": "LicenseRef-scancode-x11-dec2", "text_urls": ["http://www.xfree86.org/current/LICENSE5.html"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "x11-dec2", + "short_name": "X11-Style (DEC 2)", + "name": "X11-Style (DEC 2)", + "category": "Permissive", + "owner": "DEC - Digital Equipment Corporation", + "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", + "spdx_license_key": "LicenseRef-scancode-x11-dec2", + "text_urls": [ + "http://www.xfree86.org/current/LICENSE5.html" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/x11-doc.LICENSE b/docs/x11-doc.LICENSE index 1793f3fe3f..d2be52fc98 100644 --- a/docs/x11-doc.LICENSE +++ b/docs/x11-doc.LICENSE @@ -1,3 +1,19 @@ +--- +key: x11-doc +short_name: X11 Documentation License +name: X11 Documentation License +category: Permissive +owner: XFree86 Project, Inc +homepage_url: https://www.x.org/ +spdx_license_key: LicenseRef-scancode-x11-doc +text_urls: + - https://answers.launchpad.net/ubuntu-leb/oneiric/+source/libxext/+copyright + - https://www.x.org/releases/X11R7.7/doc/libXtst/xtestlib.txt +other_urls: + - https://books.google.com/books?id=DgzG_28omiYC&pg=PA393&lpg=PA393&dq=%22This+documentation+is+provided+%60%60as+is%27%27+without+express+or+implied+warranty.%22&source=bl&ots=dH16WA9q7t&sig=hS0ElVWtLI_JJ_D3WbCmnH56XdA&hl=en&sa=X&ved=0ahUKEwiZytPX2YrQAhXmr1QKHVOkA0YQ6AEIKzAD#v=onepage&q=%22This%20documentation%20is%20provided%20%60%60as%20is%27%27%20without%20express%20or%20implied%20warranty.%22&f=false +minimum_coverage: 80 +--- + Permission to use, copy, modify, distribute, and sell this documentation for any purpose is hereby granted without fee, provided that the above copyright notice and this permission diff --git a/docs/x11-doc.html b/docs/x11-doc.html index 7298de63c2..aec5ae87b9 100644 --- a/docs/x11-doc.html +++ b/docs/x11-doc.html @@ -158,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-doc.json b/docs/x11-doc.json index 32fc93c52f..d4cfadb68e 100644 --- a/docs/x11-doc.json +++ b/docs/x11-doc.json @@ -1 +1,17 @@ -{"key": "x11-doc", "short_name": "X11 Documentation License", "name": "X11 Documentation License", "category": "Permissive", "owner": "XFree86 Project, Inc", "homepage_url": "https://www.x.org/", "spdx_license_key": "LicenseRef-scancode-x11-doc", "text_urls": ["https://answers.launchpad.net/ubuntu-leb/oneiric/+source/libxext/+copyright", "https://www.x.org/releases/X11R7.7/doc/libXtst/xtestlib.txt"], "other_urls": ["https://books.google.com/books?id=DgzG_28omiYC&pg=PA393&lpg=PA393&dq=%22This+documentation+is+provided+%60%60as+is%27%27+without+express+or+implied+warranty.%22&source=bl&ots=dH16WA9q7t&sig=hS0ElVWtLI_JJ_D3WbCmnH56XdA&hl=en&sa=X&ved=0ahUKEwiZytPX2YrQAhXmr1QKHVOkA0YQ6AEIKzAD#v=onepage&q=%22This%20documentation%20is%20provided%20%60%60as%20is%27%27%20without%20express%20or%20implied%20warranty.%22&f=false"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "x11-doc", + "short_name": "X11 Documentation License", + "name": "X11 Documentation License", + "category": "Permissive", + "owner": "XFree86 Project, Inc", + "homepage_url": "https://www.x.org/", + "spdx_license_key": "LicenseRef-scancode-x11-doc", + "text_urls": [ + "https://answers.launchpad.net/ubuntu-leb/oneiric/+source/libxext/+copyright", + "https://www.x.org/releases/X11R7.7/doc/libXtst/xtestlib.txt" + ], + "other_urls": [ + "https://books.google.com/books?id=DgzG_28omiYC&pg=PA393&lpg=PA393&dq=%22This+documentation+is+provided+%60%60as+is%27%27+without+express+or+implied+warranty.%22&source=bl&ots=dH16WA9q7t&sig=hS0ElVWtLI_JJ_D3WbCmnH56XdA&hl=en&sa=X&ved=0ahUKEwiZytPX2YrQAhXmr1QKHVOkA0YQ6AEIKzAD#v=onepage&q=%22This%20documentation%20is%20provided%20%60%60as%20is%27%27%20without%20express%20or%20implied%20warranty.%22&f=false" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/x11-dsc.LICENSE b/docs/x11-dsc.LICENSE index aeba5cfde1..9cb0cdf8ff 100644 --- a/docs/x11-dsc.LICENSE +++ b/docs/x11-dsc.LICENSE @@ -1,3 +1,19 @@ +--- +key: x11-dsc +short_name: X11-Style (DSC Technologies) +name: X11-Style (DSC Technologies) +category: Permissive +owner: Alcatel-Lucent +spdx_license_key: LicenseRef-scancode-x11-dsc +minimum_coverage: 90 +ignorable_copyrights: + - Copyright 1997 DSC Technologies Corporation + - copyrighted by DSC Technologies +ignorable_holders: + - DSC Technologies + - DSC Technologies Corporation +--- + This software is copyrighted by DSC Technologies and private individual contributors. The copyright holder is specifically listed in the header of each file. The following terms apply to all files associated with the software unless diff --git a/docs/x11-dsc.html b/docs/x11-dsc.html index 7d0d33d02d..283c0457be 100644 --- a/docs/x11-dsc.html +++ b/docs/x11-dsc.html @@ -173,7 +173,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-dsc.json b/docs/x11-dsc.json index 38e59b952d..2c9f8cd7d6 100644 --- a/docs/x11-dsc.json +++ b/docs/x11-dsc.json @@ -1 +1,17 @@ -{"key": "x11-dsc", "short_name": "X11-Style (DSC Technologies)", "name": "X11-Style (DSC Technologies)", "category": "Permissive", "owner": "Alcatel-Lucent", "spdx_license_key": "LicenseRef-scancode-x11-dsc", "minimum_coverage": 90, "ignorable_copyrights": ["Copyright 1997 DSC Technologies Corporation", "copyrighted by DSC Technologies"], "ignorable_holders": ["DSC Technologies", "DSC Technologies Corporation"]} \ No newline at end of file +{ + "key": "x11-dsc", + "short_name": "X11-Style (DSC Technologies)", + "name": "X11-Style (DSC Technologies)", + "category": "Permissive", + "owner": "Alcatel-Lucent", + "spdx_license_key": "LicenseRef-scancode-x11-dsc", + "minimum_coverage": 90, + "ignorable_copyrights": [ + "Copyright 1997 DSC Technologies Corporation", + "copyrighted by DSC Technologies" + ], + "ignorable_holders": [ + "DSC Technologies", + "DSC Technologies Corporation" + ] +} \ No newline at end of file diff --git a/docs/x11-fsf.LICENSE b/docs/x11-fsf.LICENSE index c703c8f16d..394f400c4b 100644 --- a/docs/x11-fsf.LICENSE +++ b/docs/x11-fsf.LICENSE @@ -1,3 +1,18 @@ +--- +key: x11-fsf +short_name: X11-Style (FSF) +name: X11-Style (FSF) +category: Permissive +owner: Free Software Foundation (FSF) +notes: named by SPDX as "X11 License Distribution Modification Variant" +spdx_license_key: X11-distribute-modifications-variant +other_spdx_license_keys: + - LicenseRef-scancode-x11-fsf +other_urls: + - https://github.com/mirror/ncurses/blob/master/COPYING +minimum_coverage: 80 +--- + 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 diff --git a/docs/x11-fsf.html b/docs/x11-fsf.html index 319727354b..6e93a5c87c 100644 --- a/docs/x11-fsf.html +++ b/docs/x11-fsf.html @@ -174,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-fsf.json b/docs/x11-fsf.json index 4101543dd1..c8f380cda4 100644 --- a/docs/x11-fsf.json +++ b/docs/x11-fsf.json @@ -1 +1,16 @@ -{"key": "x11-fsf", "short_name": "X11-Style (FSF)", "name": "X11-Style (FSF)", "category": "Permissive", "owner": "Free Software Foundation (FSF)", "notes": "named by SPDX as \"X11 License Distribution Modification Variant\"", "spdx_license_key": "X11-distribute-modifications-variant", "other_spdx_license_keys": ["LicenseRef-scancode-x11-fsf"], "other_urls": ["https://github.com/mirror/ncurses/blob/master/COPYING"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "x11-fsf", + "short_name": "X11-Style (FSF)", + "name": "X11-Style (FSF)", + "category": "Permissive", + "owner": "Free Software Foundation (FSF)", + "notes": "named by SPDX as \"X11 License Distribution Modification Variant\"", + "spdx_license_key": "X11-distribute-modifications-variant", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-fsf" + ], + "other_urls": [ + "https://github.com/mirror/ncurses/blob/master/COPYING" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/x11-hanson.LICENSE b/docs/x11-hanson.LICENSE index 33ab6af393..4909075f96 100644 --- a/docs/x11-hanson.LICENSE +++ b/docs/x11-hanson.LICENSE @@ -1,3 +1,14 @@ +--- +key: x11-hanson +short_name: X11-Style (David R. Hanson) +name: X11-Style (David R. Hanson) +category: Permissive +owner: David R. Hanson +homepage_url: http://www.research.microsoft.com/~drh/ +spdx_license_key: LicenseRef-scancode-x11-hanson +minimum_coverage: 80 +--- + Permission to use, copy, modify, and distribute this software for any purpose, subject to the provisions described below, without fee is hereby granted, provided that this entire notice is included in all @@ -8,4 +19,4 @@ such software. THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN PARTICULAR, THE AUTHOR DOES MAKE ANY REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR -ITS FITNESS FOR ANY PARTICULAR PURPOSE. +ITS FITNESS FOR ANY PARTICULAR PURPOSE. \ No newline at end of file diff --git a/docs/x11-hanson.html b/docs/x11-hanson.html index f1cf1c1a6d..a92b0837be 100644 --- a/docs/x11-hanson.html +++ b/docs/x11-hanson.html @@ -132,8 +132,7 @@ THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN PARTICULAR, THE AUTHOR DOES MAKE ANY REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR -ITS FITNESS FOR ANY PARTICULAR PURPOSE. - +ITS FITNESS FOR ANY PARTICULAR PURPOSE.
@@ -145,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-hanson.json b/docs/x11-hanson.json index a91b4439d7..32c8812692 100644 --- a/docs/x11-hanson.json +++ b/docs/x11-hanson.json @@ -1 +1,10 @@ -{"key": "x11-hanson", "short_name": "X11-Style (David R. Hanson)", "name": "X11-Style (David R. Hanson)", "category": "Permissive", "owner": "David R. Hanson", "homepage_url": "http://www.research.microsoft.com/~drh/", "spdx_license_key": "LicenseRef-scancode-x11-hanson", "minimum_coverage": 80} \ No newline at end of file +{ + "key": "x11-hanson", + "short_name": "X11-Style (David R. Hanson)", + "name": "X11-Style (David R. Hanson)", + "category": "Permissive", + "owner": "David R. Hanson", + "homepage_url": "http://www.research.microsoft.com/~drh/", + "spdx_license_key": "LicenseRef-scancode-x11-hanson", + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/x11-ibm.LICENSE b/docs/x11-ibm.LICENSE index 27005f6f58..43ee79ccf2 100644 --- a/docs/x11-ibm.LICENSE +++ b/docs/x11-ibm.LICENSE @@ -1,3 +1,16 @@ +--- +key: x11-ibm +short_name: IBM Derivative Works License +name: IBM Derivative Works License +category: Copyleft +owner: IBM +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: LicenseRef-scancode-x11-ibm +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +minimum_coverage: 80 +--- + License to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that licensee provides a license to IBM, Corp. to use, copy, modify, and distribute derivative diff --git a/docs/x11-ibm.html b/docs/x11-ibm.html index d1ca0a5502..6fc6335be2 100644 --- a/docs/x11-ibm.html +++ b/docs/x11-ibm.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-ibm.json b/docs/x11-ibm.json index 32f8e09848..a221f6227f 100644 --- a/docs/x11-ibm.json +++ b/docs/x11-ibm.json @@ -1 +1,13 @@ -{"key": "x11-ibm", "short_name": "IBM Derivative Works License", "name": "IBM Derivative Works License", "category": "Copyleft", "owner": "IBM", "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", "spdx_license_key": "LicenseRef-scancode-x11-ibm", "text_urls": ["http://www.xfree86.org/current/LICENSE5.html"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "x11-ibm", + "short_name": "IBM Derivative Works License", + "name": "IBM Derivative Works License", + "category": "Copyleft", + "owner": "IBM", + "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", + "spdx_license_key": "LicenseRef-scancode-x11-ibm", + "text_urls": [ + "http://www.xfree86.org/current/LICENSE5.html" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/x11-keith-packard.LICENSE b/docs/x11-keith-packard.LICENSE index 1ed3a2fbfe..9fd91edc99 100644 --- a/docs/x11-keith-packard.LICENSE +++ b/docs/x11-keith-packard.LICENSE @@ -1,3 +1,15 @@ +--- +key: x11-keith-packard +short_name: X11-Style (Keith Packard) +name: X11-Style (Keith Packard) +category: Permissive +owner: Unspecified +spdx_license_key: HPND-sell-variant +other_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h=v4.19 + - http://www.freedesktop.org/software/fontconfig/release/ +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appears in all copies, and that both that the copyright diff --git a/docs/x11-keith-packard.html b/docs/x11-keith-packard.html index 50577fa1ad..5208d5b32f 100644 --- a/docs/x11-keith-packard.html +++ b/docs/x11-keith-packard.html @@ -145,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-keith-packard.json b/docs/x11-keith-packard.json index c74987e2ce..935365bf91 100644 --- a/docs/x11-keith-packard.json +++ b/docs/x11-keith-packard.json @@ -1 +1,12 @@ -{"key": "x11-keith-packard", "short_name": "X11-Style (Keith Packard)", "name": "X11-Style (Keith Packard)", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "HPND-sell-variant", "other_urls": ["https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h=v4.19", "http://www.freedesktop.org/software/fontconfig/release/"]} \ No newline at end of file +{ + "key": "x11-keith-packard", + "short_name": "X11-Style (Keith Packard)", + "name": "X11-Style (Keith Packard)", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "HPND-sell-variant", + "other_urls": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h=v4.19", + "http://www.freedesktop.org/software/fontconfig/release/" + ] +} \ No newline at end of file diff --git a/docs/x11-lucent-variant.LICENSE b/docs/x11-lucent-variant.LICENSE index a6d5b7c5f0..ff8a7f5516 100644 --- a/docs/x11-lucent-variant.LICENSE +++ b/docs/x11-lucent-variant.LICENSE @@ -1,3 +1,13 @@ +--- +key: x11-lucent-variant +short_name: X11-Style (Lucent-variant) +name: X11-Style (Lucent-variant) +category: Permissive +owner: Alcatel-Lucent +homepage_url: http://git.ghostscript.com/?p=ghostpdl.git;a=blob;f=devices/gdevifno.c;h=3a34cc1942d4a858a24d9b982907daf52a0c4c67;hb=HEAD +spdx_license_key: LicenseRef-scancode-x11-lucent-variant +--- + * Permission to use, copy, modify, and distribute this software for any * purpose without fee is hereby granted, provided that this entire notice * is included in all copies of any software which is or includes a copy diff --git a/docs/x11-lucent-variant.html b/docs/x11-lucent-variant.html index db3f125882..d9497894a0 100644 --- a/docs/x11-lucent-variant.html +++ b/docs/x11-lucent-variant.html @@ -135,7 +135,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-lucent-variant.json b/docs/x11-lucent-variant.json index 2b19361415..7e1a5985df 100644 --- a/docs/x11-lucent-variant.json +++ b/docs/x11-lucent-variant.json @@ -1 +1,9 @@ -{"key": "x11-lucent-variant", "short_name": "X11-Style (Lucent-variant)", "name": "X11-Style (Lucent-variant)", "category": "Permissive", "owner": "Alcatel-Lucent", "homepage_url": "http://git.ghostscript.com/?p=ghostpdl.git;a=blob;f=devices/gdevifno.c;h=3a34cc1942d4a858a24d9b982907daf52a0c4c67;hb=HEAD", "spdx_license_key": "LicenseRef-scancode-x11-lucent-variant"} \ No newline at end of file +{ + "key": "x11-lucent-variant", + "short_name": "X11-Style (Lucent-variant)", + "name": "X11-Style (Lucent-variant)", + "category": "Permissive", + "owner": "Alcatel-Lucent", + "homepage_url": "http://git.ghostscript.com/?p=ghostpdl.git;a=blob;f=devices/gdevifno.c;h=3a34cc1942d4a858a24d9b982907daf52a0c4c67;hb=HEAD", + "spdx_license_key": "LicenseRef-scancode-x11-lucent-variant" +} \ No newline at end of file diff --git a/docs/x11-lucent.LICENSE b/docs/x11-lucent.LICENSE index 8656a29712..e79fea755f 100644 --- a/docs/x11-lucent.LICENSE +++ b/docs/x11-lucent.LICENSE @@ -1,3 +1,13 @@ +--- +key: x11-lucent +short_name: X11-Style (Lucent) +name: X11-Style (Lucent) +category: Permissive +owner: Alcatel-Lucent +spdx_license_key: LicenseRef-scancode-x11-lucent +minimum_coverage: 80 +--- + Permission to use, copy, modify, and distribute this software for any purpose without fee is hereby granted, provided that this entire notice is included in all copies of any software which is or includes a copy @@ -7,4 +17,4 @@ documentation for such software. THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY -OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. +OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. \ No newline at end of file diff --git a/docs/x11-lucent.html b/docs/x11-lucent.html index ab5c509ddd..4b7af79705 100644 --- a/docs/x11-lucent.html +++ b/docs/x11-lucent.html @@ -124,8 +124,7 @@ THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY -OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. - +OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
@@ -137,7 +136,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-lucent.json b/docs/x11-lucent.json index 09fc38b415..f0811a8d36 100644 --- a/docs/x11-lucent.json +++ b/docs/x11-lucent.json @@ -1 +1,9 @@ -{"key": "x11-lucent", "short_name": "X11-Style (Lucent)", "name": "X11-Style (Lucent)", "category": "Permissive", "owner": "Alcatel-Lucent", "spdx_license_key": "LicenseRef-scancode-x11-lucent", "minimum_coverage": 80} \ No newline at end of file +{ + "key": "x11-lucent", + "short_name": "X11-Style (Lucent)", + "name": "X11-Style (Lucent)", + "category": "Permissive", + "owner": "Alcatel-Lucent", + "spdx_license_key": "LicenseRef-scancode-x11-lucent", + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/x11-oar.LICENSE b/docs/x11-oar.LICENSE index f22fb4af8e..671c4eae24 100644 --- a/docs/x11-oar.LICENSE +++ b/docs/x11-oar.LICENSE @@ -1,3 +1,15 @@ +--- +key: x11-oar +short_name: X11-Style (OAR) +name: X11-Style (OAR) +category: Permissive +owner: OAR - On-Line Applications Research Corporation +spdx_license_key: LicenseRef-scancode-x11-oar +other_urls: + - http://www.oarcorp.com/index.htm +minimum_coverage: 80 +--- + Permission to use, copy, modify, and distribute this software for any purpose without fee is hereby granted, provided that this entire notice is included in all copies of any software which is or includes a copy diff --git a/docs/x11-oar.html b/docs/x11-oar.html index e6c4691b58..e0ffb99f40 100644 --- a/docs/x11-oar.html +++ b/docs/x11-oar.html @@ -144,7 +144,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-oar.json b/docs/x11-oar.json index 5b62572fdc..7f9494786e 100644 --- a/docs/x11-oar.json +++ b/docs/x11-oar.json @@ -1 +1,12 @@ -{"key": "x11-oar", "short_name": "X11-Style (OAR)", "name": "X11-Style (OAR)", "category": "Permissive", "owner": "OAR - On-Line Applications Research Corporation", "spdx_license_key": "LicenseRef-scancode-x11-oar", "other_urls": ["http://www.oarcorp.com/index.htm"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "x11-oar", + "short_name": "X11-Style (OAR)", + "name": "X11-Style (OAR)", + "category": "Permissive", + "owner": "OAR - On-Line Applications Research Corporation", + "spdx_license_key": "LicenseRef-scancode-x11-oar", + "other_urls": [ + "http://www.oarcorp.com/index.htm" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/x11-opengl.LICENSE b/docs/x11-opengl.LICENSE index c63cf4fee4..4b00c76021 100644 --- a/docs/x11-opengl.LICENSE +++ b/docs/x11-opengl.LICENSE @@ -1,3 +1,13 @@ +--- +key: x11-opengl +short_name: X11-Style (OpenGL) +name: X11-Style (OpenGL) +category: Permissive +owner: SGI - Silicon Graphics +spdx_license_key: LicenseRef-scancode-x11-opengl +minimum_coverage: 80 +--- + Permission to use, copy, modify, and distribute this software for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both the copyright notice and this permission diff --git a/docs/x11-opengl.html b/docs/x11-opengl.html index 9115937c47..37419d8a79 100644 --- a/docs/x11-opengl.html +++ b/docs/x11-opengl.html @@ -155,7 +155,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-opengl.json b/docs/x11-opengl.json index aa4c3a66e6..a05ac44442 100644 --- a/docs/x11-opengl.json +++ b/docs/x11-opengl.json @@ -1 +1,9 @@ -{"key": "x11-opengl", "short_name": "X11-Style (OpenGL)", "name": "X11-Style (OpenGL)", "category": "Permissive", "owner": "SGI - Silicon Graphics", "spdx_license_key": "LicenseRef-scancode-x11-opengl", "minimum_coverage": 80} \ No newline at end of file +{ + "key": "x11-opengl", + "short_name": "X11-Style (OpenGL)", + "name": "X11-Style (OpenGL)", + "category": "Permissive", + "owner": "SGI - Silicon Graphics", + "spdx_license_key": "LicenseRef-scancode-x11-opengl", + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/x11-opengroup.LICENSE b/docs/x11-opengroup.LICENSE index b2cf186d5b..c4de3560ba 100644 --- a/docs/x11-opengroup.LICENSE +++ b/docs/x11-opengroup.LICENSE @@ -1,3 +1,23 @@ +--- +key: x11-opengroup +short_name: X11-Style (Open Group) +name: X11-Style (Open Group) +category: Permissive +owner: Open Group +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: MIT-open-group +other_spdx_license_keys: + - LicenseRef-scancode-x11-opengroup +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +other_urls: + - https://gitlab.freedesktop.org/xorg/app/iceauth/-/blob/master/COPYING + - https://gitlab.freedesktop.org/xorg/app/xvinfo/-/blob/master/COPYING + - https://gitlab.freedesktop.org/xorg/app/xsetroot/-/blob/master/COPYING + - https://gitlab.freedesktop.org/xorg/app/xauth/-/blob/master/COPYING +minimum_coverage: 80 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that diff --git a/docs/x11-opengroup.html b/docs/x11-opengroup.html index 47c2709093..3bd0c5df4a 100644 --- a/docs/x11-opengroup.html +++ b/docs/x11-opengroup.html @@ -181,7 +181,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-opengroup.json b/docs/x11-opengroup.json index 1eee2ee89f..d7e7c08c70 100644 --- a/docs/x11-opengroup.json +++ b/docs/x11-opengroup.json @@ -1 +1,22 @@ -{"key": "x11-opengroup", "short_name": "X11-Style (Open Group)", "name": "X11-Style (Open Group)", "category": "Permissive", "owner": "Open Group", "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", "spdx_license_key": "MIT-open-group", "other_spdx_license_keys": ["LicenseRef-scancode-x11-opengroup"], "text_urls": ["http://www.xfree86.org/current/LICENSE5.html"], "other_urls": ["https://gitlab.freedesktop.org/xorg/app/iceauth/-/blob/master/COPYING", "https://gitlab.freedesktop.org/xorg/app/xvinfo/-/blob/master/COPYING", "https://gitlab.freedesktop.org/xorg/app/xsetroot/-/blob/master/COPYING", "https://gitlab.freedesktop.org/xorg/app/xauth/-/blob/master/COPYING"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "x11-opengroup", + "short_name": "X11-Style (Open Group)", + "name": "X11-Style (Open Group)", + "category": "Permissive", + "owner": "Open Group", + "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", + "spdx_license_key": "MIT-open-group", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-opengroup" + ], + "text_urls": [ + "http://www.xfree86.org/current/LICENSE5.html" + ], + "other_urls": [ + "https://gitlab.freedesktop.org/xorg/app/iceauth/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/app/xvinfo/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/app/xsetroot/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/app/xauth/-/blob/master/COPYING" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/x11-quarterdeck.LICENSE b/docs/x11-quarterdeck.LICENSE index 9da1c3592c..a411c01a0f 100644 --- a/docs/x11-quarterdeck.LICENSE +++ b/docs/x11-quarterdeck.LICENSE @@ -1,3 +1,13 @@ +--- +key: x11-quarterdeck +short_name: X11-Style (Quarterdeck) +name: X11-Style (Quarterdeck) +category: Permissive +owner: Quarterdeck +spdx_license_key: LicenseRef-scancode-x11-quarterdeck +minimum_coverage: 80 +--- + Permission to use, copy, modify, distribute, and sell this software and software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright diff --git a/docs/x11-quarterdeck.html b/docs/x11-quarterdeck.html index 4fcc0eb19e..e344338234 100644 --- a/docs/x11-quarterdeck.html +++ b/docs/x11-quarterdeck.html @@ -145,7 +145,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-quarterdeck.json b/docs/x11-quarterdeck.json index 5c73660894..fc11b44171 100644 --- a/docs/x11-quarterdeck.json +++ b/docs/x11-quarterdeck.json @@ -1 +1,9 @@ -{"key": "x11-quarterdeck", "short_name": "X11-Style (Quarterdeck)", "name": "X11-Style (Quarterdeck)", "category": "Permissive", "owner": "Quarterdeck", "spdx_license_key": "LicenseRef-scancode-x11-quarterdeck", "minimum_coverage": 80} \ No newline at end of file +{ + "key": "x11-quarterdeck", + "short_name": "X11-Style (Quarterdeck)", + "name": "X11-Style (Quarterdeck)", + "category": "Permissive", + "owner": "Quarterdeck", + "spdx_license_key": "LicenseRef-scancode-x11-quarterdeck", + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/x11-r75.LICENSE b/docs/x11-r75.LICENSE index 2e7e2f9faa..b143121046 100644 --- a/docs/x11-r75.LICENSE +++ b/docs/x11-r75.LICENSE @@ -1,3 +1,20 @@ +--- +key: x11-r75 +is_deprecated: yes +short_name: X11-R7.5 +name: X.Org Preferred License +category: Permissive +owner: X.Org +homepage_url: https://www.x.org/archive/X11R7.5/doc/LICENSE.html#AEN16 +notes: The main difference between this license and the standard MIT License is the text " (including + the next paragraph)" in this license, which is not in the MIT license. This is not considered + as a material differences by the SPDX legal team. +faq_url: https://www.x.org/archive/X11R7.5/doc/LICENSE.html#AEN16 +other_urls: + - https://www.x.org/releases/individual/font/font-util-1.3.1.tar.bz2 +minimum_coverage: 80 +--- + 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 @@ -15,4 +32,4 @@ 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. +DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/docs/x11-r75.html b/docs/x11-r75.html index be20a2ba60..9d659b032a 100644 --- a/docs/x11-r75.html +++ b/docs/x11-r75.html @@ -162,8 +162,7 @@ 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. - +DEALINGS IN THE SOFTWARE.
@@ -175,7 +174,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-r75.json b/docs/x11-r75.json index 23c1956830..54ff13c057 100644 --- a/docs/x11-r75.json +++ b/docs/x11-r75.json @@ -1 +1,15 @@ -{"key": "x11-r75", "is_deprecated": true, "short_name": "X11-R7.5", "name": "X.Org Preferred License", "category": "Permissive", "owner": "X.Org", "homepage_url": "https://www.x.org/archive/X11R7.5/doc/LICENSE.html#AEN16", "notes": "The main difference between this license and the standard MIT License is the text \" (including the next paragraph)\" in this license, which is not in the MIT license. This is not considered as a material differences by the SPDX legal team.", "faq_url": "https://www.x.org/archive/X11R7.5/doc/LICENSE.html#AEN16", "other_urls": ["https://www.x.org/releases/individual/font/font-util-1.3.1.tar.bz2"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "x11-r75", + "is_deprecated": true, + "short_name": "X11-R7.5", + "name": "X.Org Preferred License", + "category": "Permissive", + "owner": "X.Org", + "homepage_url": "https://www.x.org/archive/X11R7.5/doc/LICENSE.html#AEN16", + "notes": "The main difference between this license and the standard MIT License is the text \" (including the next paragraph)\" in this license, which is not in the MIT license. This is not considered as a material differences by the SPDX legal team.", + "faq_url": "https://www.x.org/archive/X11R7.5/doc/LICENSE.html#AEN16", + "other_urls": [ + "https://www.x.org/releases/individual/font/font-util-1.3.1.tar.bz2" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/x11-realmode.LICENSE b/docs/x11-realmode.LICENSE index 42601378bd..b767266ac8 100644 --- a/docs/x11-realmode.LICENSE +++ b/docs/x11-realmode.LICENSE @@ -1,3 +1,17 @@ +--- +key: x11-realmode +short_name: X11-Style (Realmode) +name: X11-Style (Realmode) +category: Permissive +owner: XFree86 Project, Inc +notes: a composite of x11-keith-packard and other license comments +spdx_license_key: LicenseRef-scancode-x11-realmode +minimum_coverage: 85 +ignorable_emails: + - KendallB@scitechsoft.com + - x86emu@linuxlabs.com +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice diff --git a/docs/x11-realmode.html b/docs/x11-realmode.html index dbb07d19d4..fe256f5be1 100644 --- a/docs/x11-realmode.html +++ b/docs/x11-realmode.html @@ -171,7 +171,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-realmode.json b/docs/x11-realmode.json index b73d2a39b7..cc2bad10a5 100644 --- a/docs/x11-realmode.json +++ b/docs/x11-realmode.json @@ -1 +1,14 @@ -{"key": "x11-realmode", "short_name": "X11-Style (Realmode)", "name": "X11-Style (Realmode)", "category": "Permissive", "owner": "XFree86 Project, Inc", "notes": "a composite of x11-keith-packard and other license comments", "spdx_license_key": "LicenseRef-scancode-x11-realmode", "minimum_coverage": 85, "ignorable_emails": ["KendallB@scitechsoft.com", "x86emu@linuxlabs.com"]} \ No newline at end of file +{ + "key": "x11-realmode", + "short_name": "X11-Style (Realmode)", + "name": "X11-Style (Realmode)", + "category": "Permissive", + "owner": "XFree86 Project, Inc", + "notes": "a composite of x11-keith-packard and other license comments", + "spdx_license_key": "LicenseRef-scancode-x11-realmode", + "minimum_coverage": 85, + "ignorable_emails": [ + "KendallB@scitechsoft.com", + "x86emu@linuxlabs.com" + ] +} \ No newline at end of file diff --git a/docs/x11-sg.LICENSE b/docs/x11-sg.LICENSE index 430ad36765..fd5da87274 100644 --- a/docs/x11-sg.LICENSE +++ b/docs/x11-sg.LICENSE @@ -1,3 +1,16 @@ +--- +key: x11-sg +short_name: X11-Style (Silicon Graphics) +name: X11-Style (Silicon Graphics) +category: Permissive +owner: SGI - Silicon Graphics +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: LicenseRef-scancode-x11-sg +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +minimum_coverage: 80 +--- + Permission to use, copy, modify, and distribute this software for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both the copyright notice and this permission diff --git a/docs/x11-sg.html b/docs/x11-sg.html index 6408a7c0e3..9c3fc9eb09 100644 --- a/docs/x11-sg.html +++ b/docs/x11-sg.html @@ -159,7 +159,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-sg.json b/docs/x11-sg.json index 7ba3bf3026..a1f9ea6e8f 100644 --- a/docs/x11-sg.json +++ b/docs/x11-sg.json @@ -1 +1,13 @@ -{"key": "x11-sg", "short_name": "X11-Style (Silicon Graphics)", "name": "X11-Style (Silicon Graphics)", "category": "Permissive", "owner": "SGI - Silicon Graphics", "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", "spdx_license_key": "LicenseRef-scancode-x11-sg", "text_urls": ["http://www.xfree86.org/current/LICENSE5.html"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "x11-sg", + "short_name": "X11-Style (Silicon Graphics)", + "name": "X11-Style (Silicon Graphics)", + "category": "Permissive", + "owner": "SGI - Silicon Graphics", + "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", + "spdx_license_key": "LicenseRef-scancode-x11-sg", + "text_urls": [ + "http://www.xfree86.org/current/LICENSE5.html" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/x11-stanford.LICENSE b/docs/x11-stanford.LICENSE index 4725ef6408..ac05551aa6 100644 --- a/docs/x11-stanford.LICENSE +++ b/docs/x11-stanford.LICENSE @@ -1,3 +1,15 @@ +--- +key: x11-stanford +short_name: X11-Style (Stanford University) +name: X11-Style (Stanford University) +category: Permissive +owner: Stanford University +homepage_url: https://github.com/mininet/openflow/blob/master/COPYING +notes: this is mostly similar to the x11-xconsortium license +spdx_license_key: LicenseRef-scancode-x11-stanford +minimum_coverage: 80 +--- + We are making the specification and associated documentation (Software) available for public use and benefit with the expectation that others will use, modify and enhance the Software and contribute diff --git a/docs/x11-stanford.html b/docs/x11-stanford.html index fd29bb82a0..a1800cb0c4 100644 --- a/docs/x11-stanford.html +++ b/docs/x11-stanford.html @@ -166,7 +166,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-stanford.json b/docs/x11-stanford.json index faf75f6df1..427a6e6223 100644 --- a/docs/x11-stanford.json +++ b/docs/x11-stanford.json @@ -1 +1,11 @@ -{"key": "x11-stanford", "short_name": "X11-Style (Stanford University)", "name": "X11-Style (Stanford University)", "category": "Permissive", "owner": "Stanford University", "homepage_url": "https://github.com/mininet/openflow/blob/master/COPYING", "notes": "this is mostly similar to the x11-xconsortium license", "spdx_license_key": "LicenseRef-scancode-x11-stanford", "minimum_coverage": 80} \ No newline at end of file +{ + "key": "x11-stanford", + "short_name": "X11-Style (Stanford University)", + "name": "X11-Style (Stanford University)", + "category": "Permissive", + "owner": "Stanford University", + "homepage_url": "https://github.com/mininet/openflow/blob/master/COPYING", + "notes": "this is mostly similar to the x11-xconsortium license", + "spdx_license_key": "LicenseRef-scancode-x11-stanford", + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/x11-tektronix.LICENSE b/docs/x11-tektronix.LICENSE index 0b47226d2f..f7e1207206 100644 --- a/docs/x11-tektronix.LICENSE +++ b/docs/x11-tektronix.LICENSE @@ -1,3 +1,16 @@ +--- +key: x11-tektronix +short_name: X11-Style (Tektronix) +name: X11-Style (Tektronix) +category: Permissive +owner: Tektronix +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: LicenseRef-scancode-x11-tektronix +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +minimum_coverage: 80 +--- + This file is a component of an X Window System-specific implementation of Xcms based on the TekColor Color Management System. Permission is hereby granted to use, copy, modify, sell, and otherwise distribute this software and its diff --git a/docs/x11-tektronix.html b/docs/x11-tektronix.html index 1126c9c0bb..5f82745769 100644 --- a/docs/x11-tektronix.html +++ b/docs/x11-tektronix.html @@ -158,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-tektronix.json b/docs/x11-tektronix.json index e61c5da591..aa19e22239 100644 --- a/docs/x11-tektronix.json +++ b/docs/x11-tektronix.json @@ -1 +1,13 @@ -{"key": "x11-tektronix", "short_name": "X11-Style (Tektronix)", "name": "X11-Style (Tektronix)", "category": "Permissive", "owner": "Tektronix", "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", "spdx_license_key": "LicenseRef-scancode-x11-tektronix", "text_urls": ["http://www.xfree86.org/current/LICENSE5.html"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "x11-tektronix", + "short_name": "X11-Style (Tektronix)", + "name": "X11-Style (Tektronix)", + "category": "Permissive", + "owner": "Tektronix", + "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", + "spdx_license_key": "LicenseRef-scancode-x11-tektronix", + "text_urls": [ + "http://www.xfree86.org/current/LICENSE5.html" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/x11-tiff.LICENSE b/docs/x11-tiff.LICENSE index fdb05fda26..5d1f3e6613 100644 --- a/docs/x11-tiff.LICENSE +++ b/docs/x11-tiff.LICENSE @@ -1,3 +1,15 @@ +--- +key: x11-tiff +short_name: X11-Style (Tiff) +name: X11-Style (Tiff) +category: Permissive +owner: SGI - Silicon Graphics +spdx_license_key: libtiff +text_urls: + - https://fedoraproject.org/wiki/Licensing/libtiff +minimum_coverage: 80 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that (i) the above copyright notices and this permission notice appear in diff --git a/docs/x11-tiff.html b/docs/x11-tiff.html index 1bc4a97ab1..5f9c32ba99 100644 --- a/docs/x11-tiff.html +++ b/docs/x11-tiff.html @@ -153,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-tiff.json b/docs/x11-tiff.json index 4f7262d02e..1577bd65ed 100644 --- a/docs/x11-tiff.json +++ b/docs/x11-tiff.json @@ -1 +1,12 @@ -{"key": "x11-tiff", "short_name": "X11-Style (Tiff)", "name": "X11-Style (Tiff)", "category": "Permissive", "owner": "SGI - Silicon Graphics", "spdx_license_key": "libtiff", "text_urls": ["https://fedoraproject.org/wiki/Licensing/libtiff"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "x11-tiff", + "short_name": "X11-Style (Tiff)", + "name": "X11-Style (Tiff)", + "category": "Permissive", + "owner": "SGI - Silicon Graphics", + "spdx_license_key": "libtiff", + "text_urls": [ + "https://fedoraproject.org/wiki/Licensing/libtiff" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/x11-x11r5.LICENSE b/docs/x11-x11r5.LICENSE index 5bed8612d6..a47ff3dd60 100644 --- a/docs/x11-x11r5.LICENSE +++ b/docs/x11-x11r5.LICENSE @@ -1,3 +1,16 @@ +--- +key: x11-x11r5 +short_name: X11-R5 +name: X11-R5 +category: Permissive +owner: XFree86 Project, Inc +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: LicenseRef-scancode-x11-x11r5 +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +minimum_coverage: 85 +--- + 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 diff --git a/docs/x11-x11r5.html b/docs/x11-x11r5.html index 7c86b60579..5d81f50163 100644 --- a/docs/x11-x11r5.html +++ b/docs/x11-x11r5.html @@ -158,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-x11r5.json b/docs/x11-x11r5.json index 43363da9cc..c414c204ef 100644 --- a/docs/x11-x11r5.json +++ b/docs/x11-x11r5.json @@ -1 +1,13 @@ -{"key": "x11-x11r5", "short_name": "X11-R5", "name": "X11-R5", "category": "Permissive", "owner": "XFree86 Project, Inc", "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", "spdx_license_key": "LicenseRef-scancode-x11-x11r5", "text_urls": ["http://www.xfree86.org/current/LICENSE5.html"], "minimum_coverage": 85} \ No newline at end of file +{ + "key": "x11-x11r5", + "short_name": "X11-R5", + "name": "X11-R5", + "category": "Permissive", + "owner": "XFree86 Project, Inc", + "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", + "spdx_license_key": "LicenseRef-scancode-x11-x11r5", + "text_urls": [ + "http://www.xfree86.org/current/LICENSE5.html" + ], + "minimum_coverage": 85 +} \ No newline at end of file diff --git a/docs/x11-xconsortium-veillard.LICENSE b/docs/x11-xconsortium-veillard.LICENSE index 19f6805414..9c9438faa4 100644 --- a/docs/x11-xconsortium-veillard.LICENSE +++ b/docs/x11-xconsortium-veillard.LICENSE @@ -1,3 +1,20 @@ +--- +key: x11-xconsortium-veillard +short_name: X11-Style (X Consortium Veillard) +name: X11-Style (X Consortium Veillard) +category: Permissive +owner: Daniel Veillard +notes: the license key has been renamed from the old x11-xconsortium_veillard +spdx_license_key: LicenseRef-scancode-x11-xconsortium-veillard +other_spdx_license_keys: + - LicenseRef-scancode-x11-xconsortium_veillard +standard_notice: | + Except where otherwise noted in the source code (e.g. the files hash.c, + list.c and the trio files, which are covered by a similar licence but + with different Copyright notices) all the files are: + Copyright (C) 1998-2003 Daniel Veillard. All Rights Reserved. +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is fur- nished 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. diff --git a/docs/x11-xconsortium-veillard.html b/docs/x11-xconsortium-veillard.html index 86b108ea37..5c871bf9b1 100644 --- a/docs/x11-xconsortium-veillard.html +++ b/docs/x11-xconsortium-veillard.html @@ -153,7 +153,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-xconsortium-veillard.json b/docs/x11-xconsortium-veillard.json index 43b6156c21..a17025dc2e 100644 --- a/docs/x11-xconsortium-veillard.json +++ b/docs/x11-xconsortium-veillard.json @@ -1 +1,13 @@ -{"key": "x11-xconsortium-veillard", "short_name": "X11-Style (X Consortium Veillard)", "name": "X11-Style (X Consortium Veillard)", "category": "Permissive", "owner": "Daniel Veillard", "notes": "the license key has been renamed from the old x11-xconsortium_veillard", "spdx_license_key": "LicenseRef-scancode-x11-xconsortium-veillard", "other_spdx_license_keys": ["LicenseRef-scancode-x11-xconsortium_veillard"], "standard_notice": "Except where otherwise noted in the source code (e.g. the files hash.c,\nlist.c and the trio files, which are covered by a similar licence but\nwith different Copyright notices) all the files are:\nCopyright (C) 1998-2003 Daniel Veillard. All Rights Reserved.\n"} \ No newline at end of file +{ + "key": "x11-xconsortium-veillard", + "short_name": "X11-Style (X Consortium Veillard)", + "name": "X11-Style (X Consortium Veillard)", + "category": "Permissive", + "owner": "Daniel Veillard", + "notes": "the license key has been renamed from the old x11-xconsortium_veillard", + "spdx_license_key": "LicenseRef-scancode-x11-xconsortium-veillard", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-xconsortium_veillard" + ], + "standard_notice": "Except where otherwise noted in the source code (e.g. the files hash.c,\nlist.c and the trio files, which are covered by a similar licence but\nwith different Copyright notices) all the files are:\nCopyright (C) 1998-2003 Daniel Veillard. All Rights Reserved.\n" +} \ No newline at end of file diff --git a/docs/x11-xconsortium.LICENSE b/docs/x11-xconsortium.LICENSE index f3321a08aa..767bb02f74 100644 --- a/docs/x11-xconsortium.LICENSE +++ b/docs/x11-xconsortium.LICENSE @@ -1,3 +1,18 @@ +--- +key: x11-xconsortium +short_name: X11-Style (X Consortium) +name: X11-Style (X Consortium) +category: Permissive +owner: X Consortium +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: X11 +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +other_urls: + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3 +minimum_coverage: 80 +--- + 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 diff --git a/docs/x11-xconsortium.html b/docs/x11-xconsortium.html index 7ae8041c3e..2cd67211a6 100644 --- a/docs/x11-xconsortium.html +++ b/docs/x11-xconsortium.html @@ -173,7 +173,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-xconsortium.json b/docs/x11-xconsortium.json index c13f72020d..fd2790e799 100644 --- a/docs/x11-xconsortium.json +++ b/docs/x11-xconsortium.json @@ -1 +1,16 @@ -{"key": "x11-xconsortium", "short_name": "X11-Style (X Consortium)", "name": "X11-Style (X Consortium)", "category": "Permissive", "owner": "X Consortium", "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", "spdx_license_key": "X11", "text_urls": ["http://www.xfree86.org/current/LICENSE5.html"], "other_urls": ["http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "x11-xconsortium", + "short_name": "X11-Style (X Consortium)", + "name": "X11-Style (X Consortium)", + "category": "Permissive", + "owner": "X Consortium", + "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", + "spdx_license_key": "X11", + "text_urls": [ + "http://www.xfree86.org/current/LICENSE5.html" + ], + "other_urls": [ + "http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/x11-xconsortium_veillard.LICENSE b/docs/x11-xconsortium_veillard.LICENSE index 9a3ff29f32..ba3e5e1d73 100644 --- a/docs/x11-xconsortium_veillard.LICENSE +++ b/docs/x11-xconsortium_veillard.LICENSE @@ -1,3 +1,17 @@ +--- +key: x11-xconsortium_veillard +is_deprecated: yes +short_name: X11-Style (X Consortium Veillard) - Deprecated +name: X11-Style (X Consortium Veillard) - Deprecated +category: Permissive +owner: Daniel Veillard +standard_notice: | + Except where otherwise noted in the source code (e.g. the files hash.c, + list.c and the trio files, which are covered by a similar licence but + with different Copyright notices) all the files are: + Copyright (C) 1998-2003 Daniel Veillard. 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 diff --git a/docs/x11-xconsortium_veillard.html b/docs/x11-xconsortium_veillard.html index 7c8eaa2346..cf921465af 100644 --- a/docs/x11-xconsortium_veillard.html +++ b/docs/x11-xconsortium_veillard.html @@ -150,7 +150,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11-xconsortium_veillard.json b/docs/x11-xconsortium_veillard.json index 6acc470732..3255ce2df7 100644 --- a/docs/x11-xconsortium_veillard.json +++ b/docs/x11-xconsortium_veillard.json @@ -1 +1,9 @@ -{"key": "x11-xconsortium_veillard", "is_deprecated": true, "short_name": "X11-Style (X Consortium Veillard) - Deprecated", "name": "X11-Style (X Consortium Veillard) - Deprecated", "category": "Permissive", "owner": "Daniel Veillard", "standard_notice": "Except where otherwise noted in the source code (e.g. the files hash.c,\nlist.c and the trio files, which are covered by a similar licence but\nwith different Copyright notices) all the files are:\nCopyright (C) 1998-2003 Daniel Veillard. All Rights Reserved.\n"} \ No newline at end of file +{ + "key": "x11-xconsortium_veillard", + "is_deprecated": true, + "short_name": "X11-Style (X Consortium Veillard) - Deprecated", + "name": "X11-Style (X Consortium Veillard) - Deprecated", + "category": "Permissive", + "owner": "Daniel Veillard", + "standard_notice": "Except where otherwise noted in the source code (e.g. the files hash.c,\nlist.c and the trio files, which are covered by a similar licence but\nwith different Copyright notices) all the files are:\nCopyright (C) 1998-2003 Daniel Veillard. All Rights Reserved.\n" +} \ No newline at end of file diff --git a/docs/x11.LICENSE b/docs/x11.LICENSE index 85210e60cf..21d6e03349 100644 --- a/docs/x11.LICENSE +++ b/docs/x11.LICENSE @@ -1,3 +1,20 @@ +--- +key: x11 +short_name: X11 License +name: X11 License +category: Permissive +owner: XFree86 Project, Inc +homepage_url: http://www.xfree86.org/3.3.6/COPYRIGHT2.html +spdx_license_key: ICU +text_urls: + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html +other_urls: + - http://source.icu-project.org/repos/icu/icu/trunk/license.html + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3 + - http://www.xfree86.org/current/LICENSE5.html +minimum_coverage: 60 +--- + 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, diff --git a/docs/x11.html b/docs/x11.html index ed8672610e..73ef18fd5e 100644 --- a/docs/x11.html +++ b/docs/x11.html @@ -172,7 +172,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11.json b/docs/x11.json index ee9b48ee08..13cb595892 100644 --- a/docs/x11.json +++ b/docs/x11.json @@ -1 +1,18 @@ -{"key": "x11", "short_name": "X11 License", "name": "X11 License", "category": "Permissive", "owner": "XFree86 Project, Inc", "homepage_url": "http://www.xfree86.org/3.3.6/COPYRIGHT2.html", "spdx_license_key": "ICU", "text_urls": ["http://www.xfree86.org/3.3.6/COPYRIGHT2.html"], "other_urls": ["http://source.icu-project.org/repos/icu/icu/trunk/license.html", "http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3", "http://www.xfree86.org/current/LICENSE5.html"], "minimum_coverage": 60} \ No newline at end of file +{ + "key": "x11", + "short_name": "X11 License", + "name": "X11 License", + "category": "Permissive", + "owner": "XFree86 Project, Inc", + "homepage_url": "http://www.xfree86.org/3.3.6/COPYRIGHT2.html", + "spdx_license_key": "ICU", + "text_urls": [ + "http://www.xfree86.org/3.3.6/COPYRIGHT2.html" + ], + "other_urls": [ + "http://source.icu-project.org/repos/icu/icu/trunk/license.html", + "http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3", + "http://www.xfree86.org/current/LICENSE5.html" + ], + "minimum_coverage": 60 +} \ No newline at end of file diff --git a/docs/x11r5-authors.LICENSE b/docs/x11r5-authors.LICENSE index c6a8ba6a33..3c390bfb37 100644 --- a/docs/x11r5-authors.LICENSE +++ b/docs/x11r5-authors.LICENSE @@ -1,3 +1,15 @@ +--- +key: x11r5-authors +is_deprecated: yes +short_name: X11-R5 Authors +name: X11-R5 Authors +category: Permissive +owner: XFree86 Project, Inc +other_urls: + - http://pypi.python.org/packages/source/C/Cheetah/Cheetah-2.4.4.tar.gz +minimum_coverage: 80 +--- + Permission to use, copy, modify, and distribute this software 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 diff --git a/docs/x11r5-authors.html b/docs/x11r5-authors.html index be7a0de32a..044ac65350 100644 --- a/docs/x11r5-authors.html +++ b/docs/x11r5-authors.html @@ -148,7 +148,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/x11r5-authors.json b/docs/x11r5-authors.json index 4504a5d0a6..25f040781e 100644 --- a/docs/x11r5-authors.json +++ b/docs/x11r5-authors.json @@ -1 +1,12 @@ -{"key": "x11r5-authors", "is_deprecated": true, "short_name": "X11-R5 Authors", "name": "X11-R5 Authors", "category": "Permissive", "owner": "XFree86 Project, Inc", "other_urls": ["http://pypi.python.org/packages/source/C/Cheetah/Cheetah-2.4.4.tar.gz"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "x11r5-authors", + "is_deprecated": true, + "short_name": "X11-R5 Authors", + "name": "X11-R5 Authors", + "category": "Permissive", + "owner": "XFree86 Project, Inc", + "other_urls": [ + "http://pypi.python.org/packages/source/C/Cheetah/Cheetah-2.4.4.tar.gz" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/xceed-community-2021.LICENSE b/docs/xceed-community-2021.LICENSE index 1883386b3a..d13b29aaf7 100644 --- a/docs/xceed-community-2021.LICENSE +++ b/docs/xceed-community-2021.LICENSE @@ -1,3 +1,20 @@ +--- +key: xceed-community-2021 +short_name: Xceed Community License 2021 +name: Xceed Community License 2021 +category: Proprietary Free +owner: Xceed +homepage_url: https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md +spdx_license_key: LicenseRef-scancode-xceed-community-2021 +faq_url: https://github.com/xceedsoftware/wpftoolkit#license-information +other_urls: + - https://docs.microsoft.com/en-us/visualstudio/designers/getting-started-with-wpf?view=vs-2022 +ignorable_copyrights: + - (c) Copyright Xceed Software, Inc. +ignorable_holders: + - Xceed Software, Inc. +--- + XCEED SOFTWARE, INC. COMMUNITY LICENSE AGREEMENT (for non-commercial use) diff --git a/docs/xceed-community-2021.html b/docs/xceed-community-2021.html index de25415b40..1c3db705a0 100644 --- a/docs/xceed-community-2021.html +++ b/docs/xceed-community-2021.html @@ -242,7 +242,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/xceed-community-2021.json b/docs/xceed-community-2021.json index 41f038250c..25115f9f75 100644 --- a/docs/xceed-community-2021.json +++ b/docs/xceed-community-2021.json @@ -1 +1,19 @@ -{"key": "xceed-community-2021", "short_name": "Xceed Community License 2021", "name": "Xceed Community License 2021", "category": "Proprietary Free", "owner": "Xceed", "homepage_url": "https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md", "spdx_license_key": "LicenseRef-scancode-xceed-community-2021", "faq_url": "https://github.com/xceedsoftware/wpftoolkit#license-information", "other_urls": ["https://docs.microsoft.com/en-us/visualstudio/designers/getting-started-with-wpf?view=vs-2022"], "ignorable_copyrights": ["(c) Copyright Xceed Software, Inc."], "ignorable_holders": ["Xceed Software, Inc."]} \ No newline at end of file +{ + "key": "xceed-community-2021", + "short_name": "Xceed Community License 2021", + "name": "Xceed Community License 2021", + "category": "Proprietary Free", + "owner": "Xceed", + "homepage_url": "https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md", + "spdx_license_key": "LicenseRef-scancode-xceed-community-2021", + "faq_url": "https://github.com/xceedsoftware/wpftoolkit#license-information", + "other_urls": [ + "https://docs.microsoft.com/en-us/visualstudio/designers/getting-started-with-wpf?view=vs-2022" + ], + "ignorable_copyrights": [ + "(c) Copyright Xceed Software, Inc." + ], + "ignorable_holders": [ + "Xceed Software, Inc." + ] +} \ No newline at end of file diff --git a/docs/xenomai-gpl-exception.LICENSE b/docs/xenomai-gpl-exception.LICENSE index 95bb63d63b..90d6eb88ef 100644 --- a/docs/xenomai-gpl-exception.LICENSE +++ b/docs/xenomai-gpl-exception.LICENSE @@ -1,3 +1,14 @@ +--- +key: xenomai-gpl-exception +short_name: Xenomai GPL Exception +name: Xenomai GPL Exception +category: Copyleft Limited +owner: Xenomai +homepage_url: https://source.denx.de/Xenomai/xenomai/blob/master/include/COPYING#L2-22 +is_exception: yes +spdx_license_key: LicenseRef-scancode-xenomai-gpl-exception +--- + As a special exception to the following license, the Xenomai project gives permission for additional uses of the header files contained in this directory. diff --git a/docs/xenomai-gpl-exception.html b/docs/xenomai-gpl-exception.html index 12394f456f..07445c425c 100644 --- a/docs/xenomai-gpl-exception.html +++ b/docs/xenomai-gpl-exception.html @@ -154,7 +154,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/xenomai-gpl-exception.json b/docs/xenomai-gpl-exception.json index edff9901e8..9dd33bca9e 100644 --- a/docs/xenomai-gpl-exception.json +++ b/docs/xenomai-gpl-exception.json @@ -1 +1,10 @@ -{"key": "xenomai-gpl-exception", "short_name": "Xenomai GPL Exception", "name": "Xenomai GPL Exception", "category": "Copyleft Limited", "owner": "Xenomai", "homepage_url": "https://source.denx.de/Xenomai/xenomai/blob/master/include/COPYING#L2-22", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-xenomai-gpl-exception"} \ No newline at end of file +{ + "key": "xenomai-gpl-exception", + "short_name": "Xenomai GPL Exception", + "name": "Xenomai GPL Exception", + "category": "Copyleft Limited", + "owner": "Xenomai", + "homepage_url": "https://source.denx.de/Xenomai/xenomai/blob/master/include/COPYING#L2-22", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-xenomai-gpl-exception" +} \ No newline at end of file diff --git a/docs/xfree86-1.0.LICENSE b/docs/xfree86-1.0.LICENSE index 539176516d..8545910a85 100644 --- a/docs/xfree86-1.0.LICENSE +++ b/docs/xfree86-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: xfree86-1.0 +short_name: XFree86 License 1.0 +name: XFree86 License 1.0 +category: Permissive +owner: XFree86 Project, Inc +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: LicenseRef-scancode-xfree86-1.0 +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +minimum_coverage: 80 +--- + 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 diff --git a/docs/xfree86-1.0.html b/docs/xfree86-1.0.html index 3ba1d4b7ba..99b99b212e 100644 --- a/docs/xfree86-1.0.html +++ b/docs/xfree86-1.0.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/xfree86-1.0.json b/docs/xfree86-1.0.json index 984dc9728e..c4538bbc21 100644 --- a/docs/xfree86-1.0.json +++ b/docs/xfree86-1.0.json @@ -1 +1,13 @@ -{"key": "xfree86-1.0", "short_name": "XFree86 License 1.0", "name": "XFree86 License 1.0", "category": "Permissive", "owner": "XFree86 Project, Inc", "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", "spdx_license_key": "LicenseRef-scancode-xfree86-1.0", "text_urls": ["http://www.xfree86.org/current/LICENSE5.html"], "minimum_coverage": 80} \ No newline at end of file +{ + "key": "xfree86-1.0", + "short_name": "XFree86 License 1.0", + "name": "XFree86 License 1.0", + "category": "Permissive", + "owner": "XFree86 Project, Inc", + "homepage_url": "http://www.xfree86.org/current/LICENSE5.html", + "spdx_license_key": "LicenseRef-scancode-xfree86-1.0", + "text_urls": [ + "http://www.xfree86.org/current/LICENSE5.html" + ], + "minimum_coverage": 80 +} \ No newline at end of file diff --git a/docs/xfree86-1.1.LICENSE b/docs/xfree86-1.1.LICENSE index d1c7c620fc..398e40185e 100644 --- a/docs/xfree86-1.1.LICENSE +++ b/docs/xfree86-1.1.LICENSE @@ -1,3 +1,21 @@ +--- +key: xfree86-1.1 +short_name: XFree86 License 1.1 +name: XFree86 License 1.1 +category: Permissive +owner: XFree86 Project, Inc +homepage_url: http://www.xfree86.org/current/LICENSE4.html +spdx_license_key: XFree86-1.1 +text_urls: + - http://www.xfree86.org/current/LICENSE4.html +faq_url: http://www.xfree86.org/current/LICENSE4.html +minimum_coverage: 70 +ignorable_authors: + - The XFree86 Project, Inc (http://www.xfree86.org/) +ignorable_urls: + - http://www.xfree86.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 diff --git a/docs/xfree86-1.1.html b/docs/xfree86-1.1.html index c17b4d0fe0..f482eec43b 100644 --- a/docs/xfree86-1.1.html +++ b/docs/xfree86-1.1.html @@ -204,7 +204,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/xfree86-1.1.json b/docs/xfree86-1.1.json index 02c6dc8a56..90cb08105d 100644 --- a/docs/xfree86-1.1.json +++ b/docs/xfree86-1.1.json @@ -1 +1,20 @@ -{"key": "xfree86-1.1", "short_name": "XFree86 License 1.1", "name": "XFree86 License 1.1", "category": "Permissive", "owner": "XFree86 Project, Inc", "homepage_url": "http://www.xfree86.org/current/LICENSE4.html", "spdx_license_key": "XFree86-1.1", "text_urls": ["http://www.xfree86.org/current/LICENSE4.html"], "faq_url": "http://www.xfree86.org/current/LICENSE4.html", "minimum_coverage": 70, "ignorable_authors": ["The XFree86 Project, Inc (http://www.xfree86.org/)"], "ignorable_urls": ["http://www.xfree86.org/"]} \ No newline at end of file +{ + "key": "xfree86-1.1", + "short_name": "XFree86 License 1.1", + "name": "XFree86 License 1.1", + "category": "Permissive", + "owner": "XFree86 Project, Inc", + "homepage_url": "http://www.xfree86.org/current/LICENSE4.html", + "spdx_license_key": "XFree86-1.1", + "text_urls": [ + "http://www.xfree86.org/current/LICENSE4.html" + ], + "faq_url": "http://www.xfree86.org/current/LICENSE4.html", + "minimum_coverage": 70, + "ignorable_authors": [ + "The XFree86 Project, Inc (http://www.xfree86.org/)" + ], + "ignorable_urls": [ + "http://www.xfree86.org/" + ] +} \ No newline at end of file diff --git a/docs/xilinx-2016.LICENSE b/docs/xilinx-2016.LICENSE index 9d9b5de3a4..aeb7ad4881 100644 --- a/docs/xilinx-2016.LICENSE +++ b/docs/xilinx-2016.LICENSE @@ -1,3 +1,12 @@ +--- +key: xilinx-2016 +short_name: Xilinx License 2016 +name: Xilinx License 2016 +category: Free Restricted +owner: Xilinx +spdx_license_key: LicenseRef-scancode-xilinx-2016 +--- + 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. diff --git a/docs/xilinx-2016.html b/docs/xilinx-2016.html index 08056cce29..506602aea9 100644 --- a/docs/xilinx-2016.html +++ b/docs/xilinx-2016.html @@ -129,7 +129,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/xilinx-2016.json b/docs/xilinx-2016.json index 42c10e67a2..a06d23bd84 100644 --- a/docs/xilinx-2016.json +++ b/docs/xilinx-2016.json @@ -1 +1,8 @@ -{"key": "xilinx-2016", "short_name": "Xilinx License 2016", "name": "Xilinx License 2016", "category": "Free Restricted", "owner": "Xilinx", "spdx_license_key": "LicenseRef-scancode-xilinx-2016"} \ No newline at end of file +{ + "key": "xilinx-2016", + "short_name": "Xilinx License 2016", + "name": "Xilinx License 2016", + "category": "Free Restricted", + "owner": "Xilinx", + "spdx_license_key": "LicenseRef-scancode-xilinx-2016" +} \ No newline at end of file diff --git a/docs/xinetd.LICENSE b/docs/xinetd.LICENSE index c1f0e3d7b2..25184703e5 100644 --- a/docs/xinetd.LICENSE +++ b/docs/xinetd.LICENSE @@ -1,3 +1,23 @@ +--- +key: xinetd +short_name: xinetd License +name: xinetd License +category: Permissive +owner: xinetd +homepage_url: https://fedoraproject.org/wiki/Licensing/Xinetd_License +spdx_license_key: xinetd +ignorable_copyrights: + - (c) Copyright 1992 by Panagiotis Tsirigotis + - Copyright 1998-2001 by Rob Braun + - Copyright 2001 by Steve Grubb +ignorable_holders: + - Panagiotis Tsirigotis + - Rob Braun + - Steve Grubb +ignorable_authors: + - Panagiotis Tsirigotis +--- + xinetd License ORIGINAL LICENSE: diff --git a/docs/xinetd.html b/docs/xinetd.html index e60fbe2add..7adb317d76 100644 --- a/docs/xinetd.html +++ b/docs/xinetd.html @@ -200,7 +200,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/xinetd.json b/docs/xinetd.json index 24f6a96b9a..f969b93474 100644 --- a/docs/xinetd.json +++ b/docs/xinetd.json @@ -1 +1,22 @@ -{"key": "xinetd", "short_name": "xinetd License", "name": "xinetd License", "category": "Permissive", "owner": "xinetd", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Xinetd_License", "spdx_license_key": "xinetd", "ignorable_copyrights": ["(c) Copyright 1992 by Panagiotis Tsirigotis", "Copyright 1998-2001 by Rob Braun", "Copyright 2001 by Steve Grubb"], "ignorable_holders": ["Panagiotis Tsirigotis", "Rob Braun", "Steve Grubb"], "ignorable_authors": ["Panagiotis Tsirigotis"]} \ No newline at end of file +{ + "key": "xinetd", + "short_name": "xinetd License", + "name": "xinetd License", + "category": "Permissive", + "owner": "xinetd", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Xinetd_License", + "spdx_license_key": "xinetd", + "ignorable_copyrights": [ + "(c) Copyright 1992 by Panagiotis Tsirigotis", + "Copyright 1998-2001 by Rob Braun", + "Copyright 2001 by Steve Grubb" + ], + "ignorable_holders": [ + "Panagiotis Tsirigotis", + "Rob Braun", + "Steve Grubb" + ], + "ignorable_authors": [ + "Panagiotis Tsirigotis" + ] +} \ No newline at end of file diff --git a/docs/xming.LICENSE b/docs/xming.LICENSE index 91232e0a78..83275b0890 100644 --- a/docs/xming.LICENSE +++ b/docs/xming.LICENSE @@ -1,3 +1,13 @@ +--- +key: xming +short_name: Xming License +name: Xming License +category: Commercial +owner: Colin Harrison +homepage_url: http://www.straightrunning.com/XmingNotes/terms.php +spdx_license_key: LicenseRef-scancode-xming +--- + Xming Terms and Conditions 1. Component licenses diff --git a/docs/xming.html b/docs/xming.html index 6b6806d823..8ff92e7a7f 100644 --- a/docs/xming.html +++ b/docs/xming.html @@ -203,7 +203,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/xming.json b/docs/xming.json index 596103edfa..102bf44b46 100644 --- a/docs/xming.json +++ b/docs/xming.json @@ -1 +1,9 @@ -{"key": "xming", "short_name": "Xming License", "name": "Xming License", "category": "Commercial", "owner": "Colin Harrison", "homepage_url": "http://www.straightrunning.com/XmingNotes/terms.php", "spdx_license_key": "LicenseRef-scancode-xming"} \ No newline at end of file +{ + "key": "xming", + "short_name": "Xming License", + "name": "Xming License", + "category": "Commercial", + "owner": "Colin Harrison", + "homepage_url": "http://www.straightrunning.com/XmingNotes/terms.php", + "spdx_license_key": "LicenseRef-scancode-xming" +} \ No newline at end of file diff --git a/docs/xmldb-1.0.LICENSE b/docs/xmldb-1.0.LICENSE index db04065dc1..e7a0933a76 100644 --- a/docs/xmldb-1.0.LICENSE +++ b/docs/xmldb-1.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: xmldb-1.0 +short_name: XML:DB Initiative Software License 1.0 +name: XML:DB Initiative Software License 1.0 +category: Permissive +owner: XMLDB +homepage_url: http://xmldb-org.sourceforge.net/index.html +spdx_license_key: LicenseRef-scancode-xmldb-1.0 +text_urls: + - http://xmldb-org.sourceforge.net/legal.html +faq_url: http://xmldb-org.sourceforge.net/faqs.html +other_urls: + - http://www.xmldb.org/ +ignorable_copyrights: + - Copyright (c) 2000-2003 The XML:DB Initiative +ignorable_holders: + - The XML:DB Initiative +ignorable_authors: + - the XML:DB Initiative (http://www.xmldb.org/) +ignorable_urls: + - http://www.xmldb.org/ +ignorable_emails: + - info@xmldb.org +--- + The XML:DB Initiative Software License, Version 1.0 Copyright (c) 2000-2003 The XML:DB Initiative. All rights reserved. diff --git a/docs/xmldb-1.0.html b/docs/xmldb-1.0.html index 741812b3fa..dc16314e58 100644 --- a/docs/xmldb-1.0.html +++ b/docs/xmldb-1.0.html @@ -244,7 +244,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/xmldb-1.0.json b/docs/xmldb-1.0.json index bae463fedf..7467b258c4 100644 --- a/docs/xmldb-1.0.json +++ b/docs/xmldb-1.0.json @@ -1 +1,31 @@ -{"key": "xmldb-1.0", "short_name": "XML:DB Initiative Software License 1.0", "name": "XML:DB Initiative Software License 1.0", "category": "Permissive", "owner": "XMLDB", "homepage_url": "http://xmldb-org.sourceforge.net/index.html", "spdx_license_key": "LicenseRef-scancode-xmldb-1.0", "text_urls": ["http://xmldb-org.sourceforge.net/legal.html"], "faq_url": "http://xmldb-org.sourceforge.net/faqs.html", "other_urls": ["http://www.xmldb.org/"], "ignorable_copyrights": ["Copyright (c) 2000-2003 The XML:DB Initiative"], "ignorable_holders": ["The XML:DB Initiative"], "ignorable_authors": ["the XML:DB Initiative (http://www.xmldb.org/)"], "ignorable_urls": ["http://www.xmldb.org/"], "ignorable_emails": ["info@xmldb.org"]} \ No newline at end of file +{ + "key": "xmldb-1.0", + "short_name": "XML:DB Initiative Software License 1.0", + "name": "XML:DB Initiative Software License 1.0", + "category": "Permissive", + "owner": "XMLDB", + "homepage_url": "http://xmldb-org.sourceforge.net/index.html", + "spdx_license_key": "LicenseRef-scancode-xmldb-1.0", + "text_urls": [ + "http://xmldb-org.sourceforge.net/legal.html" + ], + "faq_url": "http://xmldb-org.sourceforge.net/faqs.html", + "other_urls": [ + "http://www.xmldb.org/" + ], + "ignorable_copyrights": [ + "Copyright (c) 2000-2003 The XML:DB Initiative" + ], + "ignorable_holders": [ + "The XML:DB Initiative" + ], + "ignorable_authors": [ + "the XML:DB Initiative (http://www.xmldb.org/)" + ], + "ignorable_urls": [ + "http://www.xmldb.org/" + ], + "ignorable_emails": [ + "info@xmldb.org" + ] +} \ No newline at end of file diff --git a/docs/xnet.LICENSE b/docs/xnet.LICENSE index 41ec31add6..2869b9083b 100644 --- a/docs/xnet.LICENSE +++ b/docs/xnet.LICENSE @@ -1,3 +1,23 @@ +--- +key: xnet +short_name: Altera License +name: Altera License +category: Permissive +owner: Altera Corporation +homepage_url: http://www.opensource.org/licenses/xnet.php +notes: | + Per SPDX.org, this license is OSI certified. This License has been + voluntarily deprecated by its author. +spdx_license_key: Xnet +text_urls: + - http://www.opensource.org/licenses/xnet.php +osi_url: http://www.opensource.org/licenses/xnet.php +other_urls: + - http://opensource.org/licenses/Xnet + - https://opensource.org/licenses/Xnet +minimum_coverage: 99 +--- + 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 diff --git a/docs/xnet.html b/docs/xnet.html index ed3331c9bc..8c2888ef16 100644 --- a/docs/xnet.html +++ b/docs/xnet.html @@ -187,7 +187,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/xnet.json b/docs/xnet.json index be6b4dc476..2330b8a79b 100644 --- a/docs/xnet.json +++ b/docs/xnet.json @@ -1 +1,19 @@ -{"key": "xnet", "short_name": "Altera License", "name": "Altera License", "category": "Permissive", "owner": "Altera Corporation", "homepage_url": "http://www.opensource.org/licenses/xnet.php", "notes": "Per SPDX.org, this license is OSI certified. This License has been\nvoluntarily deprecated by its author.\n", "spdx_license_key": "Xnet", "text_urls": ["http://www.opensource.org/licenses/xnet.php"], "osi_url": "http://www.opensource.org/licenses/xnet.php", "other_urls": ["http://opensource.org/licenses/Xnet", "https://opensource.org/licenses/Xnet"], "minimum_coverage": 99} \ No newline at end of file +{ + "key": "xnet", + "short_name": "Altera License", + "name": "Altera License", + "category": "Permissive", + "owner": "Altera Corporation", + "homepage_url": "http://www.opensource.org/licenses/xnet.php", + "notes": "Per SPDX.org, this license is OSI certified. This License has been\nvoluntarily deprecated by its author.\n", + "spdx_license_key": "Xnet", + "text_urls": [ + "http://www.opensource.org/licenses/xnet.php" + ], + "osi_url": "http://www.opensource.org/licenses/xnet.php", + "other_urls": [ + "http://opensource.org/licenses/Xnet", + "https://opensource.org/licenses/Xnet" + ], + "minimum_coverage": 99 +} \ No newline at end of file diff --git a/docs/xskat.LICENSE b/docs/xskat.LICENSE index 34241fb50e..5df38446d3 100644 --- a/docs/xskat.LICENSE +++ b/docs/xskat.LICENSE @@ -1,3 +1,25 @@ +--- +key: xskat +short_name: XSkat License +name: XSkat License +category: Permissive +owner: XSkat +homepage_url: https://fedoraproject.org/wiki/Licensing/XSkat_License +notes: | + Per Fedora, this license is Free only when clause 2.b is used. It is always + GPL-incompatible. Packagers using code under this license in Fedora should + note that while the RPM changelog is sufficient to meet one requirement of + clause 2.b (to "clearly state who last changed the program"), the Release + field in the RPM is not enough to meet the other requirement of clause 2.b. + Packagers can meet the other requirement by simply adding a .0 to the end + of the upstream version in the RPM package. You need to do this, and not + simply use the regular NVR to fulfill 2.b, because the license explicitly + specifies the versioning schema x.y.z, which is different from how RPM + displays it (x.y-z). Just add a dummy .0 to the end of the version then + increment the Release field like any other package. +spdx_license_key: XSkat +--- + This program is free software; you can redistribute it freely. Use it at your own risk; there is NO WARRANTY. diff --git a/docs/xskat.html b/docs/xskat.html index 331221378d..cc2049d519 100644 --- a/docs/xskat.html +++ b/docs/xskat.html @@ -157,7 +157,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/xskat.json b/docs/xskat.json index 6946c88e75..311cf21209 100644 --- a/docs/xskat.json +++ b/docs/xskat.json @@ -1 +1,10 @@ -{"key": "xskat", "short_name": "XSkat License", "name": "XSkat License", "category": "Permissive", "owner": "XSkat", "homepage_url": "https://fedoraproject.org/wiki/Licensing/XSkat_License", "notes": "Per Fedora, this license is Free only when clause 2.b is used. It is always\nGPL-incompatible. Packagers using code under this license in Fedora should\nnote that while the RPM changelog is sufficient to meet one requirement of\nclause 2.b (to \"clearly state who last changed the program\"), the Release\nfield in the RPM is not enough to meet the other requirement of clause 2.b.\nPackagers can meet the other requirement by simply adding a .0 to the end\nof the upstream version in the RPM package. You need to do this, and not\nsimply use the regular NVR to fulfill 2.b, because the license explicitly\nspecifies the versioning schema x.y.z, which is different from how RPM\ndisplays it (x.y-z). Just add a dummy .0 to the end of the version then\nincrement the Release field like any other package.\n", "spdx_license_key": "XSkat"} \ No newline at end of file +{ + "key": "xskat", + "short_name": "XSkat License", + "name": "XSkat License", + "category": "Permissive", + "owner": "XSkat", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/XSkat_License", + "notes": "Per Fedora, this license is Free only when clause 2.b is used. It is always\nGPL-incompatible. Packagers using code under this license in Fedora should\nnote that while the RPM changelog is sufficient to meet one requirement of\nclause 2.b (to \"clearly state who last changed the program\"), the Release\nfield in the RPM is not enough to meet the other requirement of clause 2.b.\nPackagers can meet the other requirement by simply adding a .0 to the end\nof the upstream version in the RPM package. You need to do this, and not\nsimply use the regular NVR to fulfill 2.b, because the license explicitly\nspecifies the versioning schema x.y.z, which is different from how RPM\ndisplays it (x.y-z). Just add a dummy .0 to the end of the version then\nincrement the Release field like any other package.\n", + "spdx_license_key": "XSkat" +} \ No newline at end of file diff --git a/docs/xxd.LICENSE b/docs/xxd.LICENSE index a9846df166..ccb5d33a1b 100644 --- a/docs/xxd.LICENSE +++ b/docs/xxd.LICENSE @@ -1,3 +1,13 @@ +--- +key: xxd +short_name: xxd License +name: xxd License +category: Permissive +owner: Juergen Weigert +homepage_url: https://github.com/unixdj/xxd/blob/master/README +spdx_license_key: LicenseRef-scancode-xxd +--- + Distribute freely and credit me, make money and share with me, lose money and don't ask me. \ No newline at end of file diff --git a/docs/xxd.html b/docs/xxd.html index 84f9d8dff1..e4c2eedc94 100644 --- a/docs/xxd.html +++ b/docs/xxd.html @@ -129,7 +129,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/xxd.json b/docs/xxd.json index 5f7614c772..c74f1e4a75 100644 --- a/docs/xxd.json +++ b/docs/xxd.json @@ -1 +1,9 @@ -{"key": "xxd", "short_name": "xxd License", "name": "xxd License", "category": "Permissive", "owner": "Juergen Weigert", "homepage_url": "https://github.com/unixdj/xxd/blob/master/README", "spdx_license_key": "LicenseRef-scancode-xxd"} \ No newline at end of file +{ + "key": "xxd", + "short_name": "xxd License", + "name": "xxd License", + "category": "Permissive", + "owner": "Juergen Weigert", + "homepage_url": "https://github.com/unixdj/xxd/blob/master/README", + "spdx_license_key": "LicenseRef-scancode-xxd" +} \ No newline at end of file diff --git a/docs/yahoo-browserplus-eula.LICENSE b/docs/yahoo-browserplus-eula.LICENSE index 3ee288b28e..34431a1052 100644 --- a/docs/yahoo-browserplus-eula.LICENSE +++ b/docs/yahoo-browserplus-eula.LICENSE @@ -1,3 +1,19 @@ +--- +key: yahoo-browserplus-eula +short_name: Yahoo BrowserPlus EULA +name: Yahoo BrowserPlus End User License +category: Proprietary Free +owner: Yahoo +homepage_url: http://info.yahoo.com/legal/us/yahoo/browserplus/browserplus-2122.html +spdx_license_key: LicenseRef-scancode-yahoo-browserplus-eula +faq_url: https://developer.yahoo.com/browserplus/ +ignorable_urls: + - http://privacy.yahoo.com/privacy/us/security/details.html + - https://info.yahoo.com/legal/us/yahoo/browserplus/browserplus-2122.html + - https://info.yahoo.com/legal/us/yahoo/utos/utos-173.html + - https://info.yahoo.com/privacy/us/yahoo/browserplus/ +--- + BrowserPlus End User License Introduction diff --git a/docs/yahoo-browserplus-eula.html b/docs/yahoo-browserplus-eula.html index bb05c670ae..876c70075a 100644 --- a/docs/yahoo-browserplus-eula.html +++ b/docs/yahoo-browserplus-eula.html @@ -237,7 +237,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/yahoo-browserplus-eula.json b/docs/yahoo-browserplus-eula.json index 6df6f6c1b9..7079653b41 100644 --- a/docs/yahoo-browserplus-eula.json +++ b/docs/yahoo-browserplus-eula.json @@ -1 +1,16 @@ -{"key": "yahoo-browserplus-eula", "short_name": "Yahoo BrowserPlus EULA", "name": "Yahoo BrowserPlus End User License", "category": "Proprietary Free", "owner": "Yahoo", "homepage_url": "http://info.yahoo.com/legal/us/yahoo/browserplus/browserplus-2122.html", "spdx_license_key": "LicenseRef-scancode-yahoo-browserplus-eula", "faq_url": "https://developer.yahoo.com/browserplus/", "ignorable_urls": ["http://privacy.yahoo.com/privacy/us/security/details.html", "https://info.yahoo.com/legal/us/yahoo/browserplus/browserplus-2122.html", "https://info.yahoo.com/legal/us/yahoo/utos/utos-173.html", "https://info.yahoo.com/privacy/us/yahoo/browserplus/"]} \ No newline at end of file +{ + "key": "yahoo-browserplus-eula", + "short_name": "Yahoo BrowserPlus EULA", + "name": "Yahoo BrowserPlus End User License", + "category": "Proprietary Free", + "owner": "Yahoo", + "homepage_url": "http://info.yahoo.com/legal/us/yahoo/browserplus/browserplus-2122.html", + "spdx_license_key": "LicenseRef-scancode-yahoo-browserplus-eula", + "faq_url": "https://developer.yahoo.com/browserplus/", + "ignorable_urls": [ + "http://privacy.yahoo.com/privacy/us/security/details.html", + "https://info.yahoo.com/legal/us/yahoo/browserplus/browserplus-2122.html", + "https://info.yahoo.com/legal/us/yahoo/utos/utos-173.html", + "https://info.yahoo.com/privacy/us/yahoo/browserplus/" + ] +} \ No newline at end of file diff --git a/docs/yahoo-messenger-eula.LICENSE b/docs/yahoo-messenger-eula.LICENSE index f63d8e03d9..889f4c0277 100644 --- a/docs/yahoo-messenger-eula.LICENSE +++ b/docs/yahoo-messenger-eula.LICENSE @@ -1,3 +1,17 @@ +--- +key: yahoo-messenger-eula +short_name: Yahoo Messenger EULA +name: Yahoo Messenger EULA +category: Proprietary Free +owner: Yahoo +homepage_url: https://info.yahoo.com/legal/us/yahoo/messenger/messengertos/messengertos-279.html +spdx_license_key: LicenseRef-scancode-yahoo-messenger-eula +ignorable_urls: + - http://privacy.yahoo.com/privacy/us/mesg/index.htm + - https://info.yahoo.com/legal/us/yahoo/messenger/messengertos/messengertos-279.html + - https://info.yahoo.com/legal/us/yahoo/utos/utos-173.html +--- + Yahoo Messenger Terms Of Service NO 911 OR EMERGENCY SERVICE. You acknowledge and understand that Yahoo does NOT currently allow you to access any 911 or similar emergency services (no traditional 911, E911, or similar access to emergency services). You should always have an alternative means of accessing 911 or similar emergency services. Please inform others who use your Yahoo Messenger and devices used to access Yahoo Messenger that they must access these numbers through a traditional landline or mobile phone. Yahoo Messenger is not intended to replace your primary phone service, such as traditional landline or mobile phone. diff --git a/docs/yahoo-messenger-eula.html b/docs/yahoo-messenger-eula.html index 1dfd1bca59..85d1877a5f 100644 --- a/docs/yahoo-messenger-eula.html +++ b/docs/yahoo-messenger-eula.html @@ -255,7 +255,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/yahoo-messenger-eula.json b/docs/yahoo-messenger-eula.json index f5c8c8a29b..af39f53513 100644 --- a/docs/yahoo-messenger-eula.json +++ b/docs/yahoo-messenger-eula.json @@ -1 +1,14 @@ -{"key": "yahoo-messenger-eula", "short_name": "Yahoo Messenger EULA", "name": "Yahoo Messenger EULA", "category": "Proprietary Free", "owner": "Yahoo", "homepage_url": "https://info.yahoo.com/legal/us/yahoo/messenger/messengertos/messengertos-279.html", "spdx_license_key": "LicenseRef-scancode-yahoo-messenger-eula", "ignorable_urls": ["http://privacy.yahoo.com/privacy/us/mesg/index.htm", "https://info.yahoo.com/legal/us/yahoo/messenger/messengertos/messengertos-279.html", "https://info.yahoo.com/legal/us/yahoo/utos/utos-173.html"]} \ No newline at end of file +{ + "key": "yahoo-messenger-eula", + "short_name": "Yahoo Messenger EULA", + "name": "Yahoo Messenger EULA", + "category": "Proprietary Free", + "owner": "Yahoo", + "homepage_url": "https://info.yahoo.com/legal/us/yahoo/messenger/messengertos/messengertos-279.html", + "spdx_license_key": "LicenseRef-scancode-yahoo-messenger-eula", + "ignorable_urls": [ + "http://privacy.yahoo.com/privacy/us/mesg/index.htm", + "https://info.yahoo.com/legal/us/yahoo/messenger/messengertos/messengertos-279.html", + "https://info.yahoo.com/legal/us/yahoo/utos/utos-173.html" + ] +} \ No newline at end of file diff --git a/docs/yale-cas.LICENSE b/docs/yale-cas.LICENSE index 575fce5925..44d9932e3f 100644 --- a/docs/yale-cas.LICENSE +++ b/docs/yale-cas.LICENSE @@ -1,3 +1,15 @@ +--- +key: yale-cas +short_name: Yale CAS License +name: Yale CAS License +category: Permissive +owner: Yale University +homepage_url: https://github.com/apereo/cas/blob/6e29bc0001e3c304375efc5f8cbb04918d8f8691/docs/cas-server-documentation/protocol/CAS-Protocol-V2-Specification.md#appendix-d-cas-license +spdx_license_key: LicenseRef-scancode-yale-cas +ignorable_authors: + - Yale University +--- + THIS SOFTWARE IS PROVIDED "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 EXPRESSLY diff --git a/docs/yale-cas.html b/docs/yale-cas.html index 7c0db79779..29e06f4c7c 100644 --- a/docs/yale-cas.html +++ b/docs/yale-cas.html @@ -162,7 +162,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/yale-cas.json b/docs/yale-cas.json index 88eb48eb71..c6ceafb047 100644 --- a/docs/yale-cas.json +++ b/docs/yale-cas.json @@ -1 +1,12 @@ -{"key": "yale-cas", "short_name": "Yale CAS License", "name": "Yale CAS License", "category": "Permissive", "owner": "Yale University", "homepage_url": "https://github.com/apereo/cas/blob/6e29bc0001e3c304375efc5f8cbb04918d8f8691/docs/cas-server-documentation/protocol/CAS-Protocol-V2-Specification.md#appendix-d-cas-license", "spdx_license_key": "LicenseRef-scancode-yale-cas", "ignorable_authors": ["Yale University"]} \ No newline at end of file +{ + "key": "yale-cas", + "short_name": "Yale CAS License", + "name": "Yale CAS License", + "category": "Permissive", + "owner": "Yale University", + "homepage_url": "https://github.com/apereo/cas/blob/6e29bc0001e3c304375efc5f8cbb04918d8f8691/docs/cas-server-documentation/protocol/CAS-Protocol-V2-Specification.md#appendix-d-cas-license", + "spdx_license_key": "LicenseRef-scancode-yale-cas", + "ignorable_authors": [ + "Yale University" + ] +} \ No newline at end of file diff --git a/docs/yensdesign.LICENSE b/docs/yensdesign.LICENSE index 3d4f93c2d9..aeef4b8033 100644 --- a/docs/yensdesign.LICENSE +++ b/docs/yensdesign.LICENSE @@ -1 +1,11 @@ -license: Feel free to use it, but keep this credits please! +--- +key: yensdesign +short_name: Yensdesign License +name: Yensdesign License +category: Permissive +owner: yensdesign +homepage_url: http://www.yensdesign.com/ +spdx_license_key: LicenseRef-scancode-yensdesign +--- + +license: Feel free to use it, but keep this credits please! \ No newline at end of file diff --git a/docs/yensdesign.html b/docs/yensdesign.html index e1f01866e7..e914c622e1 100644 --- a/docs/yensdesign.html +++ b/docs/yensdesign.html @@ -115,8 +115,7 @@
license_text
-
license: Feel free to use it, but keep this credits please!
-
+
license: Feel free to use it, but keep this credits please!
@@ -128,7 +127,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/yensdesign.json b/docs/yensdesign.json index b3bcbdea83..78f6fb63bd 100644 --- a/docs/yensdesign.json +++ b/docs/yensdesign.json @@ -1 +1,9 @@ -{"key": "yensdesign", "short_name": "Yensdesign License", "name": "Yensdesign License", "category": "Permissive", "owner": "yensdesign", "homepage_url": "http://www.yensdesign.com/", "spdx_license_key": "LicenseRef-scancode-yensdesign"} \ No newline at end of file +{ + "key": "yensdesign", + "short_name": "Yensdesign License", + "name": "Yensdesign License", + "category": "Permissive", + "owner": "yensdesign", + "homepage_url": "http://www.yensdesign.com/", + "spdx_license_key": "LicenseRef-scancode-yensdesign" +} \ No newline at end of file diff --git a/docs/yolo-1.0.LICENSE b/docs/yolo-1.0.LICENSE index 4cb9bccae1..fabd65b38b 100644 --- a/docs/yolo-1.0.LICENSE +++ b/docs/yolo-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: yolo-1.0 +short_name: YOLO License v1 +name: YOLO License v1 +category: Proprietary Free +owner: Joseph Redmon +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-yolo-1.0 +text_urls: + - https://github.com/shizukachan/darknet-nnpack/blob/master/LICENSE.v1 +--- + YOLO LICENSE Version 1, July 10 2015 @@ -9,4 +21,4 @@ THE FOLLOWING CONDITIONS: 1. #yolo 2. #swag -3. #blazeit +3. #blazeit \ No newline at end of file diff --git a/docs/yolo-1.0.html b/docs/yolo-1.0.html index 51467a2612..4b7318e2a4 100644 --- a/docs/yolo-1.0.html +++ b/docs/yolo-1.0.html @@ -135,8 +135,7 @@ 1. #yolo 2. #swag -3. #blazeit - +3. #blazeit
@@ -148,7 +147,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/yolo-1.0.json b/docs/yolo-1.0.json index 14feeccc91..c657a0bc27 100644 --- a/docs/yolo-1.0.json +++ b/docs/yolo-1.0.json @@ -1 +1,12 @@ -{"key": "yolo-1.0", "short_name": "YOLO License v1", "name": "YOLO License v1", "category": "Proprietary Free", "owner": "Joseph Redmon", "notes": "From https://github.com/ErikMcClure/bad-licenses", "spdx_license_key": "LicenseRef-scancode-yolo-1.0", "text_urls": ["https://github.com/shizukachan/darknet-nnpack/blob/master/LICENSE.v1"]} \ No newline at end of file +{ + "key": "yolo-1.0", + "short_name": "YOLO License v1", + "name": "YOLO License v1", + "category": "Proprietary Free", + "owner": "Joseph Redmon", + "notes": "From https://github.com/ErikMcClure/bad-licenses", + "spdx_license_key": "LicenseRef-scancode-yolo-1.0", + "text_urls": [ + "https://github.com/shizukachan/darknet-nnpack/blob/master/LICENSE.v1" + ] +} \ No newline at end of file diff --git a/docs/yolo-2.0.LICENSE b/docs/yolo-2.0.LICENSE index a97b960221..390a82a5ae 100644 --- a/docs/yolo-2.0.LICENSE +++ b/docs/yolo-2.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: yolo-2.0 +short_name: YOLO License v2 +name: YOLO License v2 +category: Proprietary Free +owner: Joseph Redmon +homepage_url: https://github.com/pjreddie/darknet/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-yolo-2.0 +--- + YOLO LICENSE Version 2, July 29 2016 diff --git a/docs/yolo-2.0.html b/docs/yolo-2.0.html index f7f6c42841..d1e4b043d0 100644 --- a/docs/yolo-2.0.html +++ b/docs/yolo-2.0.html @@ -138,7 +138,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/yolo-2.0.json b/docs/yolo-2.0.json index 4c05fca804..23eba95cfa 100644 --- a/docs/yolo-2.0.json +++ b/docs/yolo-2.0.json @@ -1 +1,9 @@ -{"key": "yolo-2.0", "short_name": "YOLO License v2", "name": "YOLO License v2", "category": "Proprietary Free", "owner": "Joseph Redmon", "homepage_url": "https://github.com/pjreddie/darknet/blob/master/LICENSE", "spdx_license_key": "LicenseRef-scancode-yolo-2.0"} \ No newline at end of file +{ + "key": "yolo-2.0", + "short_name": "YOLO License v2", + "name": "YOLO License v2", + "category": "Proprietary Free", + "owner": "Joseph Redmon", + "homepage_url": "https://github.com/pjreddie/darknet/blob/master/LICENSE", + "spdx_license_key": "LicenseRef-scancode-yolo-2.0" +} \ No newline at end of file diff --git a/docs/ypl-1.0.LICENSE b/docs/ypl-1.0.LICENSE index ec85bef50a..f5b6fe8c16 100644 --- a/docs/ypl-1.0.LICENSE +++ b/docs/ypl-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: ypl-1.0 +short_name: YPL 1.0 +name: Yahoo! Public License v1.0 +category: Copyleft Limited +owner: Yahoo +homepage_url: http://www.zimbra.com/license/yahoo_public_license_1.0.html +spdx_license_key: YPL-1.0 +text_urls: + - http://www.zimbra.com/license/yahoo_public_license_1.0.html +--- + Yahoo! Public License, Version 1.0 (YPL) This Yahoo! Public License (this "Agreement") is a legal agreement that diff --git a/docs/ypl-1.0.html b/docs/ypl-1.0.html index 5ed8026563..220d4da37b 100644 --- a/docs/ypl-1.0.html +++ b/docs/ypl-1.0.html @@ -303,7 +303,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ypl-1.0.json b/docs/ypl-1.0.json index 877a8e44e0..8071dd6bed 100644 --- a/docs/ypl-1.0.json +++ b/docs/ypl-1.0.json @@ -1 +1,12 @@ -{"key": "ypl-1.0", "short_name": "YPL 1.0", "name": "Yahoo! Public License v1.0", "category": "Copyleft Limited", "owner": "Yahoo", "homepage_url": "http://www.zimbra.com/license/yahoo_public_license_1.0.html", "spdx_license_key": "YPL-1.0", "text_urls": ["http://www.zimbra.com/license/yahoo_public_license_1.0.html"]} \ No newline at end of file +{ + "key": "ypl-1.0", + "short_name": "YPL 1.0", + "name": "Yahoo! Public License v1.0", + "category": "Copyleft Limited", + "owner": "Yahoo", + "homepage_url": "http://www.zimbra.com/license/yahoo_public_license_1.0.html", + "spdx_license_key": "YPL-1.0", + "text_urls": [ + "http://www.zimbra.com/license/yahoo_public_license_1.0.html" + ] +} \ No newline at end of file diff --git a/docs/ypl-1.1.LICENSE b/docs/ypl-1.1.LICENSE index b3da008e7f..417876e852 100644 --- a/docs/ypl-1.1.LICENSE +++ b/docs/ypl-1.1.LICENSE @@ -1,3 +1,17 @@ +--- +key: ypl-1.1 +short_name: YPL 1.1 +name: Yahoo! Public License v1.1 +category: Copyleft +owner: Yahoo +homepage_url: http://www.zimbra.com/license/yahoo_public_license_1.1.html +spdx_license_key: YPL-1.1 +text_urls: + - http://www.zimbra.com/license/yahoo_public_license_1.1.html +other_urls: + - http://www.gnu.org/licenses/license-list.html#Yahoo +--- + Yahoo! Public License, Version 1.1 (YPL) This Yahoo! Public License (this "Agreement") is a legal agreement that diff --git a/docs/ypl-1.1.html b/docs/ypl-1.1.html index 42c9eb85db..08a31656aa 100644 --- a/docs/ypl-1.1.html +++ b/docs/ypl-1.1.html @@ -296,7 +296,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ypl-1.1.json b/docs/ypl-1.1.json index b127fe7cf3..5e70337138 100644 --- a/docs/ypl-1.1.json +++ b/docs/ypl-1.1.json @@ -1 +1,15 @@ -{"key": "ypl-1.1", "short_name": "YPL 1.1", "name": "Yahoo! Public License v1.1", "category": "Copyleft", "owner": "Yahoo", "homepage_url": "http://www.zimbra.com/license/yahoo_public_license_1.1.html", "spdx_license_key": "YPL-1.1", "text_urls": ["http://www.zimbra.com/license/yahoo_public_license_1.1.html"], "other_urls": ["http://www.gnu.org/licenses/license-list.html#Yahoo"]} \ No newline at end of file +{ + "key": "ypl-1.1", + "short_name": "YPL 1.1", + "name": "Yahoo! Public License v1.1", + "category": "Copyleft", + "owner": "Yahoo", + "homepage_url": "http://www.zimbra.com/license/yahoo_public_license_1.1.html", + "spdx_license_key": "YPL-1.1", + "text_urls": [ + "http://www.zimbra.com/license/yahoo_public_license_1.1.html" + ], + "other_urls": [ + "http://www.gnu.org/licenses/license-list.html#Yahoo" + ] +} \ No newline at end of file diff --git a/docs/zapatec-calendar.LICENSE b/docs/zapatec-calendar.LICENSE index 70d970e84c..31b4d7c6df 100644 --- a/docs/zapatec-calendar.LICENSE +++ b/docs/zapatec-calendar.LICENSE @@ -1,3 +1,21 @@ +--- +key: zapatec-calendar +short_name: Zapatec Calendar License +name: Zapatec DHTML Javascript Calendar License Agreement +category: Commercial +owner: Zapatec +spdx_license_key: LicenseRef-scancode-zapatec-calendar +text_urls: + - http://www.kean.edu/~cpd/calendar/zapatec/zpcal/doc/license.html +minimum_coverage: 90 +ignorable_copyrights: + - (c) 2004-2006 Zapatec, Inc. +ignorable_holders: + - Zapatec, Inc. +ignorable_urls: + - http://www.zapatec.com/website/main/products/prod1/ +--- + Zapatec DHTML/Javascript Calendar License Agreement CAREFULLY READ THE FOLLOWING LICENSE AGREEMENT. YOU ACCEPT AND AGREE TO BE BOUND BY THIS LICENSE AGREEMENT BY DOWNLOADING, INSTALLING, USING, OR DISTRIBUTING THE SOFTWARE. IF YOU DO NOT AGREE TO THIS LICENSE, DO NOT CLICK ON THE DOWNLOAD LINK AND THE SOFTWARE WILL NOT BE DOWNLOADED. diff --git a/docs/zapatec-calendar.html b/docs/zapatec-calendar.html index 68612bad6b..fe7a78351a 100644 --- a/docs/zapatec-calendar.html +++ b/docs/zapatec-calendar.html @@ -251,7 +251,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/zapatec-calendar.json b/docs/zapatec-calendar.json index 1215deba56..d7f33cb2d3 100644 --- a/docs/zapatec-calendar.json +++ b/docs/zapatec-calendar.json @@ -1 +1,21 @@ -{"key": "zapatec-calendar", "short_name": "Zapatec Calendar License", "name": "Zapatec DHTML Javascript Calendar License Agreement", "category": "Commercial", "owner": "Zapatec", "spdx_license_key": "LicenseRef-scancode-zapatec-calendar", "text_urls": ["http://www.kean.edu/~cpd/calendar/zapatec/zpcal/doc/license.html"], "minimum_coverage": 90, "ignorable_copyrights": ["(c) 2004-2006 Zapatec, Inc."], "ignorable_holders": ["Zapatec, Inc."], "ignorable_urls": ["http://www.zapatec.com/website/main/products/prod1/"]} \ No newline at end of file +{ + "key": "zapatec-calendar", + "short_name": "Zapatec Calendar License", + "name": "Zapatec DHTML Javascript Calendar License Agreement", + "category": "Commercial", + "owner": "Zapatec", + "spdx_license_key": "LicenseRef-scancode-zapatec-calendar", + "text_urls": [ + "http://www.kean.edu/~cpd/calendar/zapatec/zpcal/doc/license.html" + ], + "minimum_coverage": 90, + "ignorable_copyrights": [ + "(c) 2004-2006 Zapatec, Inc." + ], + "ignorable_holders": [ + "Zapatec, Inc." + ], + "ignorable_urls": [ + "http://www.zapatec.com/website/main/products/prod1/" + ] +} \ No newline at end of file diff --git a/docs/zed.LICENSE b/docs/zed.LICENSE index abd73465d4..7239a55701 100644 --- a/docs/zed.LICENSE +++ b/docs/zed.LICENSE @@ -1,3 +1,15 @@ +--- +key: zed +short_name: Zed License +name: Zed License +category: Permissive +owner: Jim Davies +homepage_url: https://fedoraproject.org/wiki/Licensing/Zed +spdx_license_key: Zed +ignorable_emails: + - Jim.Davies@comlab.ox.ac.uk +--- + You may copy and distribute this file freely. Any queries and complaints should be forwarded to Jim.Davies@comlab.ox.ac.uk. If you make any changes to this file, please do not distribute the results under the name `zed-csp.sty'. \ No newline at end of file diff --git a/docs/zed.html b/docs/zed.html index 35bd7acc55..b7f11e006c 100644 --- a/docs/zed.html +++ b/docs/zed.html @@ -138,7 +138,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/zed.json b/docs/zed.json index 6e44d9b403..3aa668bd43 100644 --- a/docs/zed.json +++ b/docs/zed.json @@ -1 +1,12 @@ -{"key": "zed", "short_name": "Zed License", "name": "Zed License", "category": "Permissive", "owner": "Jim Davies", "homepage_url": "https://fedoraproject.org/wiki/Licensing/Zed", "spdx_license_key": "Zed", "ignorable_emails": ["Jim.Davies@comlab.ox.ac.uk"]} \ No newline at end of file +{ + "key": "zed", + "short_name": "Zed License", + "name": "Zed License", + "category": "Permissive", + "owner": "Jim Davies", + "homepage_url": "https://fedoraproject.org/wiki/Licensing/Zed", + "spdx_license_key": "Zed", + "ignorable_emails": [ + "Jim.Davies@comlab.ox.ac.uk" + ] +} \ No newline at end of file diff --git a/docs/zend-2.0.LICENSE b/docs/zend-2.0.LICENSE index fa7b58f34f..22f6bf6475 100644 --- a/docs/zend-2.0.LICENSE +++ b/docs/zend-2.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: zend-2.0 +short_name: Zend Engine License 2.0 +name: Zend Engine License 2.0 +category: Permissive +owner: Zend Technologies Ltd. +homepage_url: https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt +spdx_license_key: Zend-2.0 +text_urls: + - https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt +ignorable_copyrights: + - Copyright (c) 1999-2002 Zend Technologies Ltd. +ignorable_holders: + - Zend Technologies Ltd. +ignorable_urls: + - http://www.zend.com/ +ignorable_emails: + - license@zend.com +--- + -------------------------------------------------------------------- The Zend Engine License, version 2.00 Copyright (c) 1999-2002 Zend Technologies Ltd. All rights reserved. diff --git a/docs/zend-2.0.html b/docs/zend-2.0.html index 561ee863af..597cc67f8b 100644 --- a/docs/zend-2.0.html +++ b/docs/zend-2.0.html @@ -226,7 +226,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/zend-2.0.json b/docs/zend-2.0.json index 5fdc4f9f8d..8585412fb4 100644 --- a/docs/zend-2.0.json +++ b/docs/zend-2.0.json @@ -1 +1,24 @@ -{"key": "zend-2.0", "short_name": "Zend Engine License 2.0", "name": "Zend Engine License 2.0", "category": "Permissive", "owner": "Zend Technologies Ltd.", "homepage_url": "https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt", "spdx_license_key": "Zend-2.0", "text_urls": ["https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt"], "ignorable_copyrights": ["Copyright (c) 1999-2002 Zend Technologies Ltd."], "ignorable_holders": ["Zend Technologies Ltd."], "ignorable_urls": ["http://www.zend.com/"], "ignorable_emails": ["license@zend.com"]} \ No newline at end of file +{ + "key": "zend-2.0", + "short_name": "Zend Engine License 2.0", + "name": "Zend Engine License 2.0", + "category": "Permissive", + "owner": "Zend Technologies Ltd.", + "homepage_url": "https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt", + "spdx_license_key": "Zend-2.0", + "text_urls": [ + "https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt" + ], + "ignorable_copyrights": [ + "Copyright (c) 1999-2002 Zend Technologies Ltd." + ], + "ignorable_holders": [ + "Zend Technologies Ltd." + ], + "ignorable_urls": [ + "http://www.zend.com/" + ], + "ignorable_emails": [ + "license@zend.com" + ] +} \ No newline at end of file diff --git a/docs/zeromq-exception-lgpl-3.0.LICENSE b/docs/zeromq-exception-lgpl-3.0.LICENSE index f8cab7cc76..408c5afd42 100644 --- a/docs/zeromq-exception-lgpl-3.0.LICENSE +++ b/docs/zeromq-exception-lgpl-3.0.LICENSE @@ -1,3 +1,39 @@ +--- +key: zeromq-exception-lgpl-3.0 +short_name: ZeroMQ exception to LGPL 3.0 +name: ZeroMQ exception to LGPL 3.0 +category: Copyleft Limited +owner: ZeroMQ +homepage_url: https://github.com/zeromq/zeromq3-x/blob/master/COPYING.LESSER +is_exception: yes +spdx_license_key: LicenseRef-scancode-zeromq-exception-lgpl-3.0 +other_urls: + - http://www.gnu.org/licenses/lgpl-3.0.txt +standard_notice: | + 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 3 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 + + SPECIAL EXCEPTION GRANTED BY COPYRIGHT HOLDERS + As a special exception, copyright holders give you permission to link this + library with independent modules to produce an executable, regardless of + the license terms of these independent modules, and to copy and distribute + the resulting executable under terms of your choice, provided that you also + meet, for each linked independent module, the terms and conditions of + the license of that module. An independent module is a module which is not + derived from or based on this library. If you modify this library, you must + extend this exception to your version of the library. +--- + SPECIAL EXCEPTION GRANTED BY COPYRIGHT HOLDERS As a special exception, copyright holders give you permission to link this diff --git a/docs/zeromq-exception-lgpl-3.0.html b/docs/zeromq-exception-lgpl-3.0.html index 0416b19702..3d8caed66b 100644 --- a/docs/zeromq-exception-lgpl-3.0.html +++ b/docs/zeromq-exception-lgpl-3.0.html @@ -181,7 +181,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/zeromq-exception-lgpl-3.0.json b/docs/zeromq-exception-lgpl-3.0.json index 26f5d1acdb..e6a71680d7 100644 --- a/docs/zeromq-exception-lgpl-3.0.json +++ b/docs/zeromq-exception-lgpl-3.0.json @@ -1 +1,14 @@ -{"key": "zeromq-exception-lgpl-3.0", "short_name": "ZeroMQ exception to LGPL 3.0", "name": "ZeroMQ exception to LGPL 3.0", "category": "Copyleft Limited", "owner": "ZeroMQ", "homepage_url": "https://github.com/zeromq/zeromq3-x/blob/master/COPYING.LESSER", "is_exception": true, "spdx_license_key": "LicenseRef-scancode-zeromq-exception-lgpl-3.0", "other_urls": ["http://www.gnu.org/licenses/lgpl-3.0.txt"], "standard_notice": "This library is free software; you can redistribute it and/or modify it under\nthe terms of the GNU Lesser General Public License as published by the Free\nSoftware Foundation; either version 3 of the License, or (at your option) any\nlater version.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License along\nwith this library; if not, write to the Free Software Foundation, Inc., 51\nFranklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nSPECIAL EXCEPTION GRANTED BY COPYRIGHT HOLDERS\nAs a special exception, copyright holders give you permission to link this\nlibrary with independent modules to produce an executable, regardless of\nthe license terms of these independent modules, and to copy and distribute\nthe resulting executable under terms of your choice, provided that you also\nmeet, for each linked independent module, the terms and conditions of\nthe license of that module. An independent module is a module which is not\nderived from or based on this library. If you modify this library, you must\nextend this exception to your version of the library.\n"} \ No newline at end of file +{ + "key": "zeromq-exception-lgpl-3.0", + "short_name": "ZeroMQ exception to LGPL 3.0", + "name": "ZeroMQ exception to LGPL 3.0", + "category": "Copyleft Limited", + "owner": "ZeroMQ", + "homepage_url": "https://github.com/zeromq/zeromq3-x/blob/master/COPYING.LESSER", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-zeromq-exception-lgpl-3.0", + "other_urls": [ + "http://www.gnu.org/licenses/lgpl-3.0.txt" + ], + "standard_notice": "This library is free software; you can redistribute it and/or modify it under\nthe terms of the GNU Lesser General Public License as published by the Free\nSoftware Foundation; either version 3 of the License, or (at your option) any\nlater version.\n\nThis library is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License along\nwith this library; if not, write to the Free Software Foundation, Inc., 51\nFranklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nSPECIAL EXCEPTION GRANTED BY COPYRIGHT HOLDERS\nAs a special exception, copyright holders give you permission to link this\nlibrary with independent modules to produce an executable, regardless of\nthe license terms of these independent modules, and to copy and distribute\nthe resulting executable under terms of your choice, provided that you also\nmeet, for each linked independent module, the terms and conditions of\nthe license of that module. An independent module is a module which is not\nderived from or based on this library. If you modify this library, you must\nextend this exception to your version of the library.\n" +} \ No newline at end of file diff --git a/docs/zeusbench.LICENSE b/docs/zeusbench.LICENSE index 447c14b7db..5ab565d2de 100644 --- a/docs/zeusbench.LICENSE +++ b/docs/zeusbench.LICENSE @@ -1,3 +1,12 @@ +--- +key: zeusbench +short_name: ZeusBench notice +name: ZeusBench notice +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-zeusbench +--- + This program may be used and copied freely providing this copyright notice is not removed. @@ -10,4 +19,4 @@ procurement of substitute good or services; loss of use, data, or profits; or business interruption) however caused and on 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. +possibility of such damage. \ No newline at end of file diff --git a/docs/zeusbench.html b/docs/zeusbench.html index ee92bfa236..a2688a0a5e 100644 --- a/docs/zeusbench.html +++ b/docs/zeusbench.html @@ -120,8 +120,7 @@ or business interruption) however caused and on 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. - +possibility of such damage.
@@ -133,7 +132,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/zeusbench.json b/docs/zeusbench.json index 707e2f8bf8..aba3d6efc5 100644 --- a/docs/zeusbench.json +++ b/docs/zeusbench.json @@ -1 +1,8 @@ -{"key": "zeusbench", "short_name": "ZeusBench notice", "name": "ZeusBench notice", "category": "Permissive", "owner": "Unspecified", "spdx_license_key": "LicenseRef-scancode-zeusbench"} \ No newline at end of file +{ + "key": "zeusbench", + "short_name": "ZeusBench notice", + "name": "ZeusBench notice", + "category": "Permissive", + "owner": "Unspecified", + "spdx_license_key": "LicenseRef-scancode-zeusbench" +} \ No newline at end of file diff --git a/docs/zhorn-stickies.LICENSE b/docs/zhorn-stickies.LICENSE index 4149a4dd06..b44c0838d2 100644 --- a/docs/zhorn-stickies.LICENSE +++ b/docs/zhorn-stickies.LICENSE @@ -1,3 +1,13 @@ +--- +key: zhorn-stickies +short_name: Zhorn Stickies License +name: Zhorn Stickies License +category: Proprietary Free +owner: Zhorn Software +homepage_url: http://www.zhornsoftware.co.uk/stickies/download.html +spdx_license_key: LicenseRef-scancode-zhorn-stickies +--- + Copyright, licence and disclaimer Stickies is freeware. You may use this software on any number of computers for as long as you like, and you don't have to pay a penny. There are no crippled features for registered users only, no time delays and no stupid nag screens. diff --git a/docs/zhorn-stickies.html b/docs/zhorn-stickies.html index 1ffc807ced..b88cfd6a68 100644 --- a/docs/zhorn-stickies.html +++ b/docs/zhorn-stickies.html @@ -142,7 +142,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/zhorn-stickies.json b/docs/zhorn-stickies.json index b5aeac5933..257b07c7ec 100644 --- a/docs/zhorn-stickies.json +++ b/docs/zhorn-stickies.json @@ -1 +1,9 @@ -{"key": "zhorn-stickies", "short_name": "Zhorn Stickies License", "name": "Zhorn Stickies License", "category": "Proprietary Free", "owner": "Zhorn Software", "homepage_url": "http://www.zhornsoftware.co.uk/stickies/download.html", "spdx_license_key": "LicenseRef-scancode-zhorn-stickies"} \ No newline at end of file +{ + "key": "zhorn-stickies", + "short_name": "Zhorn Stickies License", + "name": "Zhorn Stickies License", + "category": "Proprietary Free", + "owner": "Zhorn Software", + "homepage_url": "http://www.zhornsoftware.co.uk/stickies/download.html", + "spdx_license_key": "LicenseRef-scancode-zhorn-stickies" +} \ No newline at end of file diff --git a/docs/zimbra-1.3.LICENSE b/docs/zimbra-1.3.LICENSE index 90336600ad..adfe1724bd 100644 --- a/docs/zimbra-1.3.LICENSE +++ b/docs/zimbra-1.3.LICENSE @@ -1,3 +1,17 @@ +--- +key: zimbra-1.3 +short_name: Zimbra PL 1.3 +name: Zimbra Public License v1.3 +category: Copyleft Limited +owner: Zimbra +homepage_url: http://www.zimbra.com/license/zimbra-public-license-1-3.html +spdx_license_key: Zimbra-1.3 +text_urls: + - http://www.zimbra.com/license/zimbra-public-license-1-3.html +other_urls: + - http://web.archive.org/web/20100302225219/http://www.zimbra.com/license/zimbra-public-license-1-3.html +--- + Zimbra Public License, Version 1.3 (ZPL) This Zimbra Public License (this "Agreement") is a legal agreement that diff --git a/docs/zimbra-1.3.html b/docs/zimbra-1.3.html index 03bf1444eb..369f1c0664 100644 --- a/docs/zimbra-1.3.html +++ b/docs/zimbra-1.3.html @@ -296,7 +296,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/zimbra-1.3.json b/docs/zimbra-1.3.json index c9543cd492..09987693be 100644 --- a/docs/zimbra-1.3.json +++ b/docs/zimbra-1.3.json @@ -1 +1,15 @@ -{"key": "zimbra-1.3", "short_name": "Zimbra PL 1.3", "name": "Zimbra Public License v1.3", "category": "Copyleft Limited", "owner": "Zimbra", "homepage_url": "http://www.zimbra.com/license/zimbra-public-license-1-3.html", "spdx_license_key": "Zimbra-1.3", "text_urls": ["http://www.zimbra.com/license/zimbra-public-license-1-3.html"], "other_urls": ["http://web.archive.org/web/20100302225219/http://www.zimbra.com/license/zimbra-public-license-1-3.html"]} \ No newline at end of file +{ + "key": "zimbra-1.3", + "short_name": "Zimbra PL 1.3", + "name": "Zimbra Public License v1.3", + "category": "Copyleft Limited", + "owner": "Zimbra", + "homepage_url": "http://www.zimbra.com/license/zimbra-public-license-1-3.html", + "spdx_license_key": "Zimbra-1.3", + "text_urls": [ + "http://www.zimbra.com/license/zimbra-public-license-1-3.html" + ], + "other_urls": [ + "http://web.archive.org/web/20100302225219/http://www.zimbra.com/license/zimbra-public-license-1-3.html" + ] +} \ No newline at end of file diff --git a/docs/zimbra-1.4.LICENSE b/docs/zimbra-1.4.LICENSE index f59ed23cbb..4c0171083d 100644 --- a/docs/zimbra-1.4.LICENSE +++ b/docs/zimbra-1.4.LICENSE @@ -1,3 +1,13 @@ +--- +key: zimbra-1.4 +short_name: Zimbra PL 1.4 +name: Zimbra Public License v1.4 +category: Copyleft Limited +owner: Zimbra +homepage_url: http://www.zimbra.com/legal/zimbra-public-license-1-4 +spdx_license_key: Zimbra-1.4 +--- + Zimbra Public License, Version 1.4 (ZPL) This Zimbra Public License (this "Agreement") is a legal agreement that describes the terms under which Zimbra, Inc., a Texas corporation ("Zimbra") will provide software to you via download or otherwise ("Software"). By using the Software, you, an individual or an entity ("You") agree to the terms of this Agreement. diff --git a/docs/zimbra-1.4.html b/docs/zimbra-1.4.html index de416b2c3c..692562e92c 100644 --- a/docs/zimbra-1.4.html +++ b/docs/zimbra-1.4.html @@ -172,7 +172,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/zimbra-1.4.json b/docs/zimbra-1.4.json index 8235cc6721..967d6d4031 100644 --- a/docs/zimbra-1.4.json +++ b/docs/zimbra-1.4.json @@ -1 +1,9 @@ -{"key": "zimbra-1.4", "short_name": "Zimbra PL 1.4", "name": "Zimbra Public License v1.4", "category": "Copyleft Limited", "owner": "Zimbra", "homepage_url": "http://www.zimbra.com/legal/zimbra-public-license-1-4", "spdx_license_key": "Zimbra-1.4"} \ No newline at end of file +{ + "key": "zimbra-1.4", + "short_name": "Zimbra PL 1.4", + "name": "Zimbra Public License v1.4", + "category": "Copyleft Limited", + "owner": "Zimbra", + "homepage_url": "http://www.zimbra.com/legal/zimbra-public-license-1-4", + "spdx_license_key": "Zimbra-1.4" +} \ No newline at end of file diff --git a/docs/zipeg.LICENSE b/docs/zipeg.LICENSE index f351f540ce..6a3941a3f6 100644 --- a/docs/zipeg.LICENSE +++ b/docs/zipeg.LICENSE @@ -1,3 +1,15 @@ +--- +key: zipeg +short_name: Zipeg License +name: Zipeg License +category: Proprietary Free +owner: Leo Kuznetsov +homepage_url: http://www.zipeg.com/about +spdx_license_key: LicenseRef-scancode-zipeg +ignorable_urls: + - http://www.zipeg.com/ +--- + Zipeg License Redistribution and use in any forms, without modification, is permitted provided @@ -20,4 +32,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/zipeg.html b/docs/zipeg.html index 732d976597..3e92fdc1b2 100644 --- a/docs/zipeg.html +++ b/docs/zipeg.html @@ -146,8 +146,7 @@ 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. - +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -159,7 +158,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/zipeg.json b/docs/zipeg.json index 076604f21a..ae10ae21b2 100644 --- a/docs/zipeg.json +++ b/docs/zipeg.json @@ -1 +1,12 @@ -{"key": "zipeg", "short_name": "Zipeg License", "name": "Zipeg License", "category": "Proprietary Free", "owner": "Leo Kuznetsov", "homepage_url": "http://www.zipeg.com/about", "spdx_license_key": "LicenseRef-scancode-zipeg", "ignorable_urls": ["http://www.zipeg.com/"]} \ No newline at end of file +{ + "key": "zipeg", + "short_name": "Zipeg License", + "name": "Zipeg License", + "category": "Proprietary Free", + "owner": "Leo Kuznetsov", + "homepage_url": "http://www.zipeg.com/about", + "spdx_license_key": "LicenseRef-scancode-zipeg", + "ignorable_urls": [ + "http://www.zipeg.com/" + ] +} \ No newline at end of file diff --git a/docs/ziplist5-geocode-duplication-addendum.LICENSE b/docs/ziplist5-geocode-duplication-addendum.LICENSE index 62515c7b39..f516f1e9b9 100644 --- a/docs/ziplist5-geocode-duplication-addendum.LICENSE +++ b/docs/ziplist5-geocode-duplication-addendum.LICENSE @@ -1,3 +1,18 @@ +--- +key: ziplist5-geocode-duplication-addendum +short_name: ZIPList5 Geocode Duplication Addendum +name: ZIPList5 Geocode Duplication License Addendum +category: Commercial +owner: CD Light LLC +homepage_url: https://web.archive.org/web/20160908211546/http://zipinfo.com/products/z5LL/z5llld.htm +spdx_license_key: LicenseRef-scancode-ziplist5-geocode-dup-addendum +other_spdx_license_keys: + - LicenseRef-scancode-ziplist5-geocode-duplication-addendum +faq_url: https://web.archive.org/web/20160904120249/http://zipinfo.com/products/z5LL/z5lllo.htm +ignorable_emails: + - support@zipinfo.com +--- + ZIPList5 Geocode Duplication License Addendum diff --git a/docs/ziplist5-geocode-duplication-addendum.html b/docs/ziplist5-geocode-duplication-addendum.html index ccc359b30e..9ac8c73744 100644 --- a/docs/ziplist5-geocode-duplication-addendum.html +++ b/docs/ziplist5-geocode-duplication-addendum.html @@ -188,7 +188,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ziplist5-geocode-duplication-addendum.json b/docs/ziplist5-geocode-duplication-addendum.json index 44f7ceb4c5..74293327c1 100644 --- a/docs/ziplist5-geocode-duplication-addendum.json +++ b/docs/ziplist5-geocode-duplication-addendum.json @@ -1 +1,16 @@ -{"key": "ziplist5-geocode-duplication-addendum", "short_name": "ZIPList5 Geocode Duplication Addendum", "name": "ZIPList5 Geocode Duplication License Addendum", "category": "Commercial", "owner": "CD Light LLC", "homepage_url": "https://web.archive.org/web/20160908211546/http://zipinfo.com/products/z5LL/z5llld.htm", "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-dup-addendum", "other_spdx_license_keys": ["LicenseRef-scancode-ziplist5-geocode-duplication-addendum"], "faq_url": "https://web.archive.org/web/20160904120249/http://zipinfo.com/products/z5LL/z5lllo.htm", "ignorable_emails": ["support@zipinfo.com"]} \ No newline at end of file +{ + "key": "ziplist5-geocode-duplication-addendum", + "short_name": "ZIPList5 Geocode Duplication Addendum", + "name": "ZIPList5 Geocode Duplication License Addendum", + "category": "Commercial", + "owner": "CD Light LLC", + "homepage_url": "https://web.archive.org/web/20160908211546/http://zipinfo.com/products/z5LL/z5llld.htm", + "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-dup-addendum", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ziplist5-geocode-duplication-addendum" + ], + "faq_url": "https://web.archive.org/web/20160904120249/http://zipinfo.com/products/z5LL/z5lllo.htm", + "ignorable_emails": [ + "support@zipinfo.com" + ] +} \ No newline at end of file diff --git a/docs/ziplist5-geocode-end-user-enterprise.LICENSE b/docs/ziplist5-geocode-end-user-enterprise.LICENSE index 782dea609c..b76c1150e1 100644 --- a/docs/ziplist5-geocode-end-user-enterprise.LICENSE +++ b/docs/ziplist5-geocode-end-user-enterprise.LICENSE @@ -1,3 +1,18 @@ +--- +key: ziplist5-geocode-end-user-enterprise +short_name: ZIPList5 Geocode End-User Enterprise License +name: ZIPList5 Geocode End-User Enterprise License Agreement +category: Commercial +owner: CD Light LLC +homepage_url: https://web.archive.org/web/20160908185536/http://zipinfo.com/products/z5LL/z5llle.htm +spdx_license_key: LicenseRef-scancode-ziplist5-geocode-enterprise +other_spdx_license_keys: + - LicenseRef-scancode-ziplist5-geocode-end-user-enterprise +faq_url: https://web.archive.org/web/20160904120249/http://zipinfo.com/products/z5LL/z5lllo.htm +ignorable_emails: + - support@zipinfo.com +--- + ZIPList5 Geocode End-User Enterprise License Agreement LICENSE AGREEMENT diff --git a/docs/ziplist5-geocode-end-user-enterprise.html b/docs/ziplist5-geocode-end-user-enterprise.html index 6edd4f1e20..e8be911f95 100644 --- a/docs/ziplist5-geocode-end-user-enterprise.html +++ b/docs/ziplist5-geocode-end-user-enterprise.html @@ -217,7 +217,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ziplist5-geocode-end-user-enterprise.json b/docs/ziplist5-geocode-end-user-enterprise.json index 5ce4ebf454..a06caa561e 100644 --- a/docs/ziplist5-geocode-end-user-enterprise.json +++ b/docs/ziplist5-geocode-end-user-enterprise.json @@ -1 +1,16 @@ -{"key": "ziplist5-geocode-end-user-enterprise", "short_name": "ZIPList5 Geocode End-User Enterprise License", "name": "ZIPList5 Geocode End-User Enterprise License Agreement", "category": "Commercial", "owner": "CD Light LLC", "homepage_url": "https://web.archive.org/web/20160908185536/http://zipinfo.com/products/z5LL/z5llle.htm", "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-enterprise", "other_spdx_license_keys": ["LicenseRef-scancode-ziplist5-geocode-end-user-enterprise"], "faq_url": "https://web.archive.org/web/20160904120249/http://zipinfo.com/products/z5LL/z5lllo.htm", "ignorable_emails": ["support@zipinfo.com"]} \ No newline at end of file +{ + "key": "ziplist5-geocode-end-user-enterprise", + "short_name": "ZIPList5 Geocode End-User Enterprise License", + "name": "ZIPList5 Geocode End-User Enterprise License Agreement", + "category": "Commercial", + "owner": "CD Light LLC", + "homepage_url": "https://web.archive.org/web/20160908185536/http://zipinfo.com/products/z5LL/z5llle.htm", + "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-enterprise", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ziplist5-geocode-end-user-enterprise" + ], + "faq_url": "https://web.archive.org/web/20160904120249/http://zipinfo.com/products/z5LL/z5lllo.htm", + "ignorable_emails": [ + "support@zipinfo.com" + ] +} \ No newline at end of file diff --git a/docs/ziplist5-geocode-end-user-workstation.LICENSE b/docs/ziplist5-geocode-end-user-workstation.LICENSE index fb7d0f3aa1..59ea4b5fc5 100644 --- a/docs/ziplist5-geocode-end-user-workstation.LICENSE +++ b/docs/ziplist5-geocode-end-user-workstation.LICENSE @@ -1,3 +1,18 @@ +--- +key: ziplist5-geocode-end-user-workstation +short_name: ZIPList5 Geocode End-User Workstation License +name: ZIPList5 Geocode End-User Workstation (Single-User) License Agreement +category: Commercial +owner: CD Light LLC +homepage_url: https://web.archive.org/web/20160904120244/http://zipinfo.com/products/z5LL/z5lllw.htm +spdx_license_key: LicenseRef-scancode-ziplist5-geocode-workstation +other_spdx_license_keys: + - LicenseRef-scancode-ziplist5-geocode-end-user-workstation +faq_url: https://web.archive.org/web/20160904120249/http://zipinfo.com/products/z5LL/z5lllo.htm +ignorable_emails: + - support@zipinfo.com +--- + ZIPList5 Geocode End-User Workstation (Single-User) License Agreement LICENSE AGREEMENT diff --git a/docs/ziplist5-geocode-end-user-workstation.html b/docs/ziplist5-geocode-end-user-workstation.html index 2a7278b61f..931c3ccb4a 100644 --- a/docs/ziplist5-geocode-end-user-workstation.html +++ b/docs/ziplist5-geocode-end-user-workstation.html @@ -215,7 +215,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/ziplist5-geocode-end-user-workstation.json b/docs/ziplist5-geocode-end-user-workstation.json index 72443fbf7e..1075045a6c 100644 --- a/docs/ziplist5-geocode-end-user-workstation.json +++ b/docs/ziplist5-geocode-end-user-workstation.json @@ -1 +1,16 @@ -{"key": "ziplist5-geocode-end-user-workstation", "short_name": "ZIPList5 Geocode End-User Workstation License", "name": "ZIPList5 Geocode End-User Workstation (Single-User) License Agreement", "category": "Commercial", "owner": "CD Light LLC", "homepage_url": "https://web.archive.org/web/20160904120244/http://zipinfo.com/products/z5LL/z5lllw.htm", "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-workstation", "other_spdx_license_keys": ["LicenseRef-scancode-ziplist5-geocode-end-user-workstation"], "faq_url": "https://web.archive.org/web/20160904120249/http://zipinfo.com/products/z5LL/z5lllo.htm", "ignorable_emails": ["support@zipinfo.com"]} \ No newline at end of file +{ + "key": "ziplist5-geocode-end-user-workstation", + "short_name": "ZIPList5 Geocode End-User Workstation License", + "name": "ZIPList5 Geocode End-User Workstation (Single-User) License Agreement", + "category": "Commercial", + "owner": "CD Light LLC", + "homepage_url": "https://web.archive.org/web/20160904120244/http://zipinfo.com/products/z5LL/z5lllw.htm", + "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-workstation", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ziplist5-geocode-end-user-workstation" + ], + "faq_url": "https://web.archive.org/web/20160904120249/http://zipinfo.com/products/z5LL/z5lllo.htm", + "ignorable_emails": [ + "support@zipinfo.com" + ] +} \ No newline at end of file diff --git a/docs/zlib-acknowledgement.LICENSE b/docs/zlib-acknowledgement.LICENSE index cb97523ecd..698f9042a9 100644 --- a/docs/zlib-acknowledgement.LICENSE +++ b/docs/zlib-acknowledgement.LICENSE @@ -1,3 +1,32 @@ +--- +key: zlib-acknowledgement +short_name: ZLIB License with Acknowledgment +name: ZLIB License with Acknowledgment +category: Permissive +owner: Charlie Poole +homepage_url: https://fedoraproject.org/wiki/Licensing:ZlibWithAcknowledgement?rd=Licensing/ZlibWithAcknowledgement +notes: | + Per Fedora, this license is the same as zlib, except that it requires that + an acknowledgement be made in the product documentation. For Fedora, this + is our Release notes, so if you have any packages which use this license, + you MUST be sure to have the appropriate acknowledgement in the release + notes. +spdx_license_key: zlib-acknowledgement +other_spdx_license_keys: + - Nunit +other_urls: + - https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement +minimum_coverage: 50 +ignorable_copyrights: + - Copyright (c) 2000-2002 Philip A. Craig + - Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov + - Portions Copyright (c) 2002-2007 Charlie Poole +ignorable_holders: + - Charlie Poole + - James W. Newkirk, Michael C. Two, Alexei A. Vorontsov + - Philip A. Craig +--- + 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. diff --git a/docs/zlib-acknowledgement.html b/docs/zlib-acknowledgement.html index 339b64b04e..4711ab9313 100644 --- a/docs/zlib-acknowledgement.html +++ b/docs/zlib-acknowledgement.html @@ -201,7 +201,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/zlib-acknowledgement.json b/docs/zlib-acknowledgement.json index 2b3e4fd0f4..5428d5a205 100644 --- a/docs/zlib-acknowledgement.json +++ b/docs/zlib-acknowledgement.json @@ -1 +1,27 @@ -{"key": "zlib-acknowledgement", "short_name": "ZLIB License with Acknowledgment", "name": "ZLIB License with Acknowledgment", "category": "Permissive", "owner": "Charlie Poole", "homepage_url": "https://fedoraproject.org/wiki/Licensing:ZlibWithAcknowledgement?rd=Licensing/ZlibWithAcknowledgement", "notes": "Per Fedora, this license is the same as zlib, except that it requires that\nan acknowledgement be made in the product documentation. For Fedora, this\nis our Release notes, so if you have any packages which use this license,\nyou MUST be sure to have the appropriate acknowledgement in the release\nnotes.\n", "spdx_license_key": "zlib-acknowledgement", "other_spdx_license_keys": ["Nunit"], "other_urls": ["https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement"], "minimum_coverage": 50, "ignorable_copyrights": ["Copyright (c) 2000-2002 Philip A. Craig", "Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov", "Portions Copyright (c) 2002-2007 Charlie Poole"], "ignorable_holders": ["Charlie Poole", "James W. Newkirk, Michael C. Two, Alexei A. Vorontsov", "Philip A. Craig"]} \ No newline at end of file +{ + "key": "zlib-acknowledgement", + "short_name": "ZLIB License with Acknowledgment", + "name": "ZLIB License with Acknowledgment", + "category": "Permissive", + "owner": "Charlie Poole", + "homepage_url": "https://fedoraproject.org/wiki/Licensing:ZlibWithAcknowledgement?rd=Licensing/ZlibWithAcknowledgement", + "notes": "Per Fedora, this license is the same as zlib, except that it requires that\nan acknowledgement be made in the product documentation. For Fedora, this\nis our Release notes, so if you have any packages which use this license,\nyou MUST be sure to have the appropriate acknowledgement in the release\nnotes.\n", + "spdx_license_key": "zlib-acknowledgement", + "other_spdx_license_keys": [ + "Nunit" + ], + "other_urls": [ + "https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement" + ], + "minimum_coverage": 50, + "ignorable_copyrights": [ + "Copyright (c) 2000-2002 Philip A. Craig", + "Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov", + "Portions Copyright (c) 2002-2007 Charlie Poole" + ], + "ignorable_holders": [ + "Charlie Poole", + "James W. Newkirk, Michael C. Two, Alexei A. Vorontsov", + "Philip A. Craig" + ] +} \ No newline at end of file diff --git a/docs/zlib.LICENSE b/docs/zlib.LICENSE index 14d2ccb854..38a9f9ee63 100644 --- a/docs/zlib.LICENSE +++ b/docs/zlib.LICENSE @@ -1,3 +1,23 @@ +--- +key: zlib +short_name: ZLIB License +name: ZLIB License +category: Permissive +owner: zlib +homepage_url: http://www.zlib.net/ +notes: Per SPDX.org, this is OSI certified +spdx_license_key: Zlib +text_urls: + - http://www.gzip.org/zlib/zlib_license.html +osi_url: http://www.opensource.org/licenses/zlib-license.php +faq_url: http://www.gzip.org/zlib/zlib-faq.html +other_urls: + - http://www.opensource.org/licenses/Zlib + - http://www.zlib.net/zlib_license.html + - https://opensource.org/licenses/Zlib +minimum_coverage: 50 +--- + 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. @@ -14,4 +34,4 @@ the following restrictions: 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. +3. This notice may not be removed or altered from any source distribution. \ No newline at end of file diff --git a/docs/zlib.html b/docs/zlib.html index b53a4c4ff7..20438a34a8 100644 --- a/docs/zlib.html +++ b/docs/zlib.html @@ -177,8 +177,7 @@ 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. - +3. This notice may not be removed or altered from any source distribution.
@@ -190,7 +189,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/zlib.json b/docs/zlib.json index 7d0d04708d..77bc14bd70 100644 --- a/docs/zlib.json +++ b/docs/zlib.json @@ -1 +1,21 @@ -{"key": "zlib", "short_name": "ZLIB License", "name": "ZLIB License", "category": "Permissive", "owner": "zlib", "homepage_url": "http://www.zlib.net/", "notes": "Per SPDX.org, this is OSI certified", "spdx_license_key": "Zlib", "text_urls": ["http://www.gzip.org/zlib/zlib_license.html"], "osi_url": "http://www.opensource.org/licenses/zlib-license.php", "faq_url": "http://www.gzip.org/zlib/zlib-faq.html", "other_urls": ["http://www.opensource.org/licenses/Zlib", "http://www.zlib.net/zlib_license.html", "https://opensource.org/licenses/Zlib"], "minimum_coverage": 50} \ No newline at end of file +{ + "key": "zlib", + "short_name": "ZLIB License", + "name": "ZLIB License", + "category": "Permissive", + "owner": "zlib", + "homepage_url": "http://www.zlib.net/", + "notes": "Per SPDX.org, this is OSI certified", + "spdx_license_key": "Zlib", + "text_urls": [ + "http://www.gzip.org/zlib/zlib_license.html" + ], + "osi_url": "http://www.opensource.org/licenses/zlib-license.php", + "faq_url": "http://www.gzip.org/zlib/zlib-faq.html", + "other_urls": [ + "http://www.opensource.org/licenses/Zlib", + "http://www.zlib.net/zlib_license.html", + "https://opensource.org/licenses/Zlib" + ], + "minimum_coverage": 50 +} \ No newline at end of file diff --git a/docs/zpl-1.0.LICENSE b/docs/zpl-1.0.LICENSE index 61fc28e43a..1026ea100d 100644 --- a/docs/zpl-1.0.LICENSE +++ b/docs/zpl-1.0.LICENSE @@ -1,3 +1,22 @@ +--- +key: zpl-1.0 +short_name: ZPL 1.0 +name: Zope Public License 1.0 +category: Permissive +owner: Zope Community +spdx_license_key: LicenseRef-scancode-zpl-1.0 +text_urls: + - http://old.zope.org/Members/ensane/PTK2CMF/copy_folders.py.1 +ignorable_copyrights: + - Copyright (c) Digital Creations +ignorable_holders: + - Digital Creations +ignorable_authors: + - Digital Creations +ignorable_urls: + - http://www.zope.org/ +--- + Zope Public License (ZPL) Version 1.0 ------------------------------------- @@ -77,6 +96,4 @@ Disclaimer This software consists of contributions made by Digital Creations and many individuals on behalf of Digital Creations. Specific -attributions are listed in the accompanying credits file. - - +attributions are listed in the accompanying credits file. \ No newline at end of file diff --git a/docs/zpl-1.0.html b/docs/zpl-1.0.html index b3c90fc041..13a5220530 100644 --- a/docs/zpl-1.0.html +++ b/docs/zpl-1.0.html @@ -232,10 +232,7 @@ This software consists of contributions made by Digital Creations and many individuals on behalf of Digital Creations. Specific -attributions are listed in the accompanying credits file. - - - +attributions are listed in the accompanying credits file.
@@ -247,7 +244,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/zpl-1.0.json b/docs/zpl-1.0.json index e00ccc5103..96b77a1290 100644 --- a/docs/zpl-1.0.json +++ b/docs/zpl-1.0.json @@ -1 +1,23 @@ -{"key": "zpl-1.0", "short_name": "ZPL 1.0", "name": "Zope Public License 1.0", "category": "Permissive", "owner": "Zope Community", "spdx_license_key": "LicenseRef-scancode-zpl-1.0", "text_urls": ["http://old.zope.org/Members/ensane/PTK2CMF/copy_folders.py.1"], "ignorable_copyrights": ["Copyright (c) Digital Creations"], "ignorable_holders": ["Digital Creations"], "ignorable_authors": ["Digital Creations"], "ignorable_urls": ["http://www.zope.org/"]} \ No newline at end of file +{ + "key": "zpl-1.0", + "short_name": "ZPL 1.0", + "name": "Zope Public License 1.0", + "category": "Permissive", + "owner": "Zope Community", + "spdx_license_key": "LicenseRef-scancode-zpl-1.0", + "text_urls": [ + "http://old.zope.org/Members/ensane/PTK2CMF/copy_folders.py.1" + ], + "ignorable_copyrights": [ + "Copyright (c) Digital Creations" + ], + "ignorable_holders": [ + "Digital Creations" + ], + "ignorable_authors": [ + "Digital Creations" + ], + "ignorable_urls": [ + "http://www.zope.org/" + ] +} \ No newline at end of file diff --git a/docs/zpl-1.1.LICENSE b/docs/zpl-1.1.LICENSE index f3020f531b..b30b926d62 100644 --- a/docs/zpl-1.1.LICENSE +++ b/docs/zpl-1.1.LICENSE @@ -1,3 +1,26 @@ +--- +key: zpl-1.1 +short_name: ZPL 1.1 +name: Zope Public License 1.1 +category: Permissive +owner: Zope Community +homepage_url: http://www.zope.org/Resources/License/ +spdx_license_key: ZPL-1.1 +text_urls: + - http://www.zope.org/Resources/License/ +other_urls: + - http://old.zope.org/Resources/License/ZPL-1.1 + - http://www.zope.com/ +ignorable_copyrights: + - Copyright (c) Zope Corporation +ignorable_holders: + - Zope Corporation +ignorable_authors: + - Zope Corporation +ignorable_urls: + - http://www.zope.com/ +--- + Zope Public License (ZPL) Version 1.1 Copyright (c) Zope Corporation. All rights reserved. diff --git a/docs/zpl-1.1.html b/docs/zpl-1.1.html index b668f7b8ea..854c05eca5 100644 --- a/docs/zpl-1.1.html +++ b/docs/zpl-1.1.html @@ -241,7 +241,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/zpl-1.1.json b/docs/zpl-1.1.json index b48a795d3a..e2ad98c02f 100644 --- a/docs/zpl-1.1.json +++ b/docs/zpl-1.1.json @@ -1 +1,28 @@ -{"key": "zpl-1.1", "short_name": "ZPL 1.1", "name": "Zope Public License 1.1", "category": "Permissive", "owner": "Zope Community", "homepage_url": "http://www.zope.org/Resources/License/", "spdx_license_key": "ZPL-1.1", "text_urls": ["http://www.zope.org/Resources/License/"], "other_urls": ["http://old.zope.org/Resources/License/ZPL-1.1", "http://www.zope.com/"], "ignorable_copyrights": ["Copyright (c) Zope Corporation"], "ignorable_holders": ["Zope Corporation"], "ignorable_authors": ["Zope Corporation"], "ignorable_urls": ["http://www.zope.com/"]} \ No newline at end of file +{ + "key": "zpl-1.1", + "short_name": "ZPL 1.1", + "name": "Zope Public License 1.1", + "category": "Permissive", + "owner": "Zope Community", + "homepage_url": "http://www.zope.org/Resources/License/", + "spdx_license_key": "ZPL-1.1", + "text_urls": [ + "http://www.zope.org/Resources/License/" + ], + "other_urls": [ + "http://old.zope.org/Resources/License/ZPL-1.1", + "http://www.zope.com/" + ], + "ignorable_copyrights": [ + "Copyright (c) Zope Corporation" + ], + "ignorable_holders": [ + "Zope Corporation" + ], + "ignorable_authors": [ + "Zope Corporation" + ], + "ignorable_urls": [ + "http://www.zope.com/" + ] +} \ No newline at end of file diff --git a/docs/zpl-2.0.LICENSE b/docs/zpl-2.0.LICENSE index fa3515449c..e58ab25c31 100644 --- a/docs/zpl-2.0.LICENSE +++ b/docs/zpl-2.0.LICENSE @@ -1,3 +1,24 @@ +--- +key: zpl-2.0 +short_name: ZPL 2.0 +name: Zope Public License 2.0 +category: Permissive +owner: Zope Community +homepage_url: http://www.zope.org/Resources/License/ +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: ZPL-2.0 +osi_license_key: ZPL-2.0 +text_urls: + - http://www.zope.org/Resources/License/ +other_urls: + - http://old.zope.org/Resources/License/ZPL-2.0 + - http://opensource.org/licenses/ZPL-2.0 + - http://www.zope.com/Marks + - https://opensource.org/licenses/ZPL-2.0 +ignorable_urls: + - http://www.zope.com/Marks +--- + This license has been certified as open source. It has also been designated as GPL compatible by the Free Software Foundation (FSF). diff --git a/docs/zpl-2.0.html b/docs/zpl-2.0.html index 86cf2d73e1..94c589484a 100644 --- a/docs/zpl-2.0.html +++ b/docs/zpl-2.0.html @@ -209,7 +209,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/zpl-2.0.json b/docs/zpl-2.0.json index e64541af11..a562735774 100644 --- a/docs/zpl-2.0.json +++ b/docs/zpl-2.0.json @@ -1 +1,23 @@ -{"key": "zpl-2.0", "short_name": "ZPL 2.0", "name": "Zope Public License 2.0", "category": "Permissive", "owner": "Zope Community", "homepage_url": "http://www.zope.org/Resources/License/", "notes": "Per SPDX.org, this license is OSI certified", "spdx_license_key": "ZPL-2.0", "osi_license_key": "ZPL-2.0", "text_urls": ["http://www.zope.org/Resources/License/"], "other_urls": ["http://old.zope.org/Resources/License/ZPL-2.0", "http://opensource.org/licenses/ZPL-2.0", "http://www.zope.com/Marks", "https://opensource.org/licenses/ZPL-2.0"], "ignorable_urls": ["http://www.zope.com/Marks"]} \ No newline at end of file +{ + "key": "zpl-2.0", + "short_name": "ZPL 2.0", + "name": "Zope Public License 2.0", + "category": "Permissive", + "owner": "Zope Community", + "homepage_url": "http://www.zope.org/Resources/License/", + "notes": "Per SPDX.org, this license is OSI certified", + "spdx_license_key": "ZPL-2.0", + "osi_license_key": "ZPL-2.0", + "text_urls": [ + "http://www.zope.org/Resources/License/" + ], + "other_urls": [ + "http://old.zope.org/Resources/License/ZPL-2.0", + "http://opensource.org/licenses/ZPL-2.0", + "http://www.zope.com/Marks", + "https://opensource.org/licenses/ZPL-2.0" + ], + "ignorable_urls": [ + "http://www.zope.com/Marks" + ] +} \ No newline at end of file diff --git a/docs/zpl-2.1.LICENSE b/docs/zpl-2.1.LICENSE index c12c8e1e05..1a7b00b2d5 100644 --- a/docs/zpl-2.1.LICENSE +++ b/docs/zpl-2.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: zpl-2.1 +short_name: ZPL 2.1 +name: Zope Public License 2.1 +category: Permissive +owner: Zope Community +homepage_url: http://www.zope.org/Resources/License/ +notes: Per SPDX.org, this is a generic version of the ZPL 2.0 license +spdx_license_key: ZPL-2.1 +text_urls: + - http://www.zope.org/Resources/License/ +other_urls: + - http://old.zope.org/Resources/ZPL/ + - http://www.zope.org/Resources/License/ZPL-2.1 + - http://www.zope.org/Resources/ZPL +--- + This license has been certified as open source. It has also been designated as GPL compatible by the Free Software Foundation (FSF). diff --git a/docs/zpl-2.1.html b/docs/zpl-2.1.html index 5633c256a7..c328f6081a 100644 --- a/docs/zpl-2.1.html +++ b/docs/zpl-2.1.html @@ -189,7 +189,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/zpl-2.1.json b/docs/zpl-2.1.json index 235a0e00d4..2eec565c5c 100644 --- a/docs/zpl-2.1.json +++ b/docs/zpl-2.1.json @@ -1 +1,18 @@ -{"key": "zpl-2.1", "short_name": "ZPL 2.1", "name": "Zope Public License 2.1", "category": "Permissive", "owner": "Zope Community", "homepage_url": "http://www.zope.org/Resources/License/", "notes": "Per SPDX.org, this is a generic version of the ZPL 2.0 license", "spdx_license_key": "ZPL-2.1", "text_urls": ["http://www.zope.org/Resources/License/"], "other_urls": ["http://old.zope.org/Resources/ZPL/", "http://www.zope.org/Resources/License/ZPL-2.1", "http://www.zope.org/Resources/ZPL"]} \ No newline at end of file +{ + "key": "zpl-2.1", + "short_name": "ZPL 2.1", + "name": "Zope Public License 2.1", + "category": "Permissive", + "owner": "Zope Community", + "homepage_url": "http://www.zope.org/Resources/License/", + "notes": "Per SPDX.org, this is a generic version of the ZPL 2.0 license", + "spdx_license_key": "ZPL-2.1", + "text_urls": [ + "http://www.zope.org/Resources/License/" + ], + "other_urls": [ + "http://old.zope.org/Resources/ZPL/", + "http://www.zope.org/Resources/License/ZPL-2.1", + "http://www.zope.org/Resources/ZPL" + ] +} \ No newline at end of file diff --git a/docs/zrythm-exception-agpl-3.0.LICENSE b/docs/zrythm-exception-agpl-3.0.LICENSE new file mode 100644 index 0000000000..925da35616 --- /dev/null +++ b/docs/zrythm-exception-agpl-3.0.LICENSE @@ -0,0 +1,198 @@ +--- +key: zrythm-exception-agpl-3.0 +short_name: Zrythm Exception to AGPL 3.0 +name: Zrythm Exception to AGPL 3.0 +category: Copyleft +owner: Zrythm +homepage_url: https://git.sr.ht/~alextee/zrythm/tree/master/item/LICENSES/LicenseRef-ZrythmLicense.txt +is_exception: yes +spdx_license_key: LicenseRef-scancode-zrythm-exception-agpl-3.0 +text_urls: + - https://git.sr.ht/~alextee/zrythm/blob/master/TRADEMARKS.md +other_urls: + - https://git.sr.ht/~alextee/zrythm/ +standard_notice: | + Zrythm is free software: you can redistribute it + and/or modify it under the terms of the GNU Affero + General Public License (GNU AGPL) as published by the + Free Software Foundation, either version 3 of the + License, or (at your option) any later version, with + the additional terms below. + Zrythm 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. +ignorable_copyrights: + - Copyright (c) 2020-2022 Alexandros Theodotou +ignorable_holders: + - Alexandros Theodotou +ignorable_urls: + - https://archlinux.org/ + - https://cve.mitre.org/ + - https://debian.org/ + - https://getfedora.org/ + - https://www.freebsd.org/ + - https://www.gnu.org/distros/free-distros.html + - https://www.zrythm.org/ +ignorable_emails: + - trademarks@zrythm.org +--- + +Additional terms under Section 7 of the GNU AGPL: + +Zrythm and the Zrythm logo are trademarks of +Alexandros Theodotou and are governed by the Zrythm +Trademark Policy, found in the TRADEMARKS.md file. +You may distribute unaltered copies of Zrythm that +include the Zrythm trademarks without express +permission from Alexandros Theodotou. However, +if you make any changes to Zrythm, you may not +redistribute that product using any Zrythm trademark +without Alexandros Theodotou’s prior written consent. +For example, you may not distribute a modified form +of Zrythm and continue to call it Zrythm, or +include the Zrythm logo, unless explicitly allowed +by the Trademark Policy. + +============================= +TRADEMARKS.md +============================= + +Trademark Policy +================ + +# Applicable Trademarks +Zrythm and the Zrythm logo are registered +trademarks of Alexandros Theodotou in the United +Kingdom. + +# Objective of this Policy +The objective of this trademark policy is: +- to clarify proper usage of Zrythm trademarks by +third parties +- to prevent misuse of Zrythm trademarks that can +confuse or mislead users with respect to Zrythm + +Following are the guidelines for the proper use of +Zrythm trademarks by publishers and other third +parties. Any use of or reference to Zrythm trademarks +that is inconsistent with these guidelines, or other +unauthorized use of or reference to Zrythm +trademarks, or use of marks that are confusingly +similar to Zrythm trademarks, is prohibited and may +violate the trademark rights of Alexandros Theodotou. + +Any use of Zrythm trademarks in a misleading and +false manner, such as untruthful advertising, is +always prohibited. + +# Usage Guidelines +This Trademark Policy explicitly affirms your +nominative fair use rights under trademark law, +including to: +- Use the Zrythm wordmark in text to truthfully refer +to and/or link to unmodified programs, products, +services and technologies by Alexandros Theodotou. +- Use the Zrythm logo in visuals to truthfully refer +to and/or to link to the applicable unmodified +programs, products, services and technologies by +Alexandros Theodotou. +- Use Zrythm trademarks to make true factual +statements about Zrythm or communicate compatibility +with your product truthfully. + +The following are explicitly forbidden: +- Use of the Zrythm wordmark as part of a company +name or logo, a product name or logo, or branding. +- Use of the Zrythm logo as part of a company logo or +organization logo or product logo or branding. +- Use of the Zrythm wordmark as part of an acronym. +- Use of Zrythm trademarks in any way that suggests +an affiliation with or endorsement by the Zrythm +project or community, if that is not the case. + +All other uses of a Zrythm trademark require our +prior written permission. Contact +trademarks@zrythm.org for more information. + +Alexandros Theodotou reserves the right to review +all use of the Zrythm trademarks and to object to +any use that appears outside of this +Trademark Policy. + +# Software Distribution Policy +You may distribute unaltered copies of the Zrythm +digital audio workstation (DAW) and related software +(hereinafter collectively referred to as "the +software") published by Alexandros Theodotou that +include the Zrythm trademarks without express +permission from Alexandros Theodotou (provided that +the license of the software in question allows it). + +You may further distribute altered copies of the +software that include the Zrythm trademarks, +provided that alterations solely serve the purposes +of: +- porting the software to a free system distribution +currently approved by the Free Software Foundation at +, OR +- porting the software to the Debian operating +system, as published by the Debian project at +, OR +- porting the software to the Fedora Workstation +operating system, as published by the Fedora Project +at , OR +- porting the software to the FreeBSD operating +system, as published by the The FreeBSD Project at +, OR +- porting the software to the Arch Linux operating +system, as published by Levente Polyak and others at +, OR +- fixing a bug in the software that has already been +acknowledged by Alexandros Theodotou or CVE +() + +You may further redistribute copies of the software +as published by the aforementioned software +distributors provided that no further modifications +are made. + +In any case, you may not add or remove +functionalities and you must preserve all messages +presented to users in the user interface and the +command line, including but not limited to: +- URLs pointing to official Zrythm web pages +- informational messages (popups, console output, +etc.) + +You must also provide a link to the original source +code as published by Alexandros Theodotou at +https://www.zrythm.org/. + +# Requirement of Written Permission for Modified Versions Including Trademarks +If you make any changes to the software not +explicitly allowed above, you may not +redistribute that product using any Zrythm trademark +without Alexandros Theodotou’s prior written +consent. For example, you may not distribute a +modified form of the Zrythm DAW and continue to call +it Zrythm, or include the Zrythm logo. If you wish to +distribute modified versions of the software that +include the Zrythm trademarks please contact us with +your request at trademarks@zrythm.org. + +# Newer Versions of this Policy +This policy may be revised from time to time. New +versions will be similar in spirit to the present +version, but may differ in detail to address new +problems or concerns. The file `TRADEMARKS.md` in +the source code releases will always contain the +current policy at the time of each release. + +---- + +Copyright (C) 2020-2022 Alexandros Theodotou + +Everyone is permitted to copy and distribute +verbatim copies of this document, but changing it is +not allowed. \ No newline at end of file diff --git a/docs/zrythm-exception-agpl-3.0.html b/docs/zrythm-exception-agpl-3.0.html new file mode 100644 index 0000000000..202d78869f --- /dev/null +++ b/docs/zrythm-exception-agpl-3.0.html @@ -0,0 +1,385 @@ + + + + + + LicenseDB: zrythm-exception-agpl-3.0 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + zrythm-exception-agpl-3.0 + +
+ +
short_name
+
+ + Zrythm Exception to AGPL 3.0 + +
+ +
name
+
+ + Zrythm Exception to AGPL 3.0 + +
+ +
category
+
+ + Copyleft + +
+ +
owner
+
+ + Zrythm + +
+ +
homepage_url
+
+ + https://git.sr.ht/~alextee/zrythm/tree/master/item/LICENSES/LicenseRef-ZrythmLicense.txt + +
+ +
is_exception
+
+ + True + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-zrythm-exception-agpl-3.0 + +
+ +
text_urls
+
+ + + +
+ +
other_urls
+
+ + + +
+ +
standard_notice
+
+ + Zrythm is free software: you can redistribute it +and/or modify it under the terms of the GNU Affero +General Public License (GNU AGPL) as published by the +Free Software Foundation, either version 3 of the +License, or (at your option) any later version, with +the additional terms below. +Zrythm 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. + + +
+ +
ignorable_copyrights
+
+ +
    +
  • Copyright (c) 2020-2022 Alexandros Theodotou
  • +
+ +
+ +
ignorable_holders
+
+ +
    +
  • Alexandros Theodotou
  • +
+ +
+ +
ignorable_urls
+
+ + + +
+ +
ignorable_emails
+
+ + + +
+ +
+
license_text
+
Additional terms under Section 7 of the GNU AGPL:
+
+Zrythm and the Zrythm logo are trademarks of
+Alexandros Theodotou and are governed by the Zrythm
+Trademark Policy, found in the TRADEMARKS.md file.
+You may distribute unaltered copies of Zrythm that
+include the Zrythm trademarks without express
+permission from Alexandros Theodotou. However,
+if you make any changes to Zrythm, you may not
+redistribute that product using any Zrythm trademark
+without Alexandros Theodotou’s prior written consent.
+For example, you may not distribute a modified form
+of Zrythm and continue to call it Zrythm, or
+include the Zrythm logo, unless explicitly allowed
+by the Trademark Policy.
+
+=============================
+TRADEMARKS.md
+=============================
+
+Trademark Policy
+================
+
+# Applicable Trademarks
+Zrythm and the Zrythm logo are registered
+trademarks of Alexandros Theodotou in the United
+Kingdom.
+
+# Objective of this Policy
+The objective of this trademark policy is:
+- to clarify proper usage of Zrythm trademarks by
+third parties
+- to prevent misuse of Zrythm trademarks that can
+confuse or mislead users with respect to Zrythm
+
+Following are the guidelines for the proper use of
+Zrythm trademarks by publishers and other third
+parties. Any use of or reference to Zrythm trademarks
+that is inconsistent with these guidelines, or other
+unauthorized use of or reference to Zrythm
+trademarks, or use of marks that are confusingly
+similar to Zrythm trademarks, is prohibited and may
+violate the trademark rights of Alexandros Theodotou.
+
+Any use of Zrythm trademarks in a misleading and
+false manner, such as untruthful advertising, is
+always prohibited.
+
+# Usage Guidelines
+This Trademark Policy explicitly affirms your
+nominative fair use rights under trademark law,
+including to:
+- Use the Zrythm wordmark in text to truthfully refer
+to and/or link to unmodified programs, products,
+services and technologies by Alexandros Theodotou.
+- Use the Zrythm logo in visuals to truthfully refer
+to and/or to link to the applicable unmodified
+programs, products, services and technologies by
+Alexandros Theodotou.
+- Use Zrythm trademarks to make true factual
+statements about Zrythm or communicate compatibility
+with your product truthfully.
+
+The following are explicitly forbidden:
+- Use of the Zrythm wordmark as part of a company
+name or logo, a product name or logo, or branding.
+- Use of the Zrythm logo as part of a company logo or
+organization logo or product logo or branding.
+- Use of the Zrythm wordmark as part of an acronym.
+- Use of Zrythm trademarks in any way that suggests
+an affiliation with or endorsement by the Zrythm
+project or community, if that is not the case.
+
+All other uses of a Zrythm trademark require our
+prior written permission. Contact
+trademarks@zrythm.org for more information.
+
+Alexandros Theodotou reserves the right to review
+all use of the Zrythm trademarks and to object to
+any use that appears outside of this
+Trademark Policy.
+
+# Software Distribution Policy
+You may distribute unaltered copies of the Zrythm
+digital audio workstation (DAW) and related software
+(hereinafter collectively referred to as "the
+software") published by Alexandros Theodotou that
+include the Zrythm trademarks without express
+permission from Alexandros Theodotou (provided that
+the license of the software in question allows it).
+
+You may further distribute altered copies of the
+software that include the Zrythm trademarks,
+provided that alterations solely serve the purposes
+of:
+- porting the software to a free system distribution
+currently approved by the Free Software Foundation at
+<https://www.gnu.org/distros/free-distros.html>, OR
+- porting the software to the Debian operating
+system, as published by the Debian project at
+<https://debian.org/>, OR
+- porting the software to the Fedora Workstation
+operating system, as published by the Fedora Project
+at <https://getfedora.org/>, OR
+- porting the software to the FreeBSD operating
+system, as published by the The FreeBSD Project at
+<https://www.freebsd.org/>, OR
+- porting the software to the Arch Linux operating
+system, as published by Levente Polyak and others at
+<https://archlinux.org/>, OR
+- fixing a bug in the software that has already been
+acknowledged by Alexandros Theodotou or CVE
+(<https://cve.mitre.org/>)
+
+You may further redistribute copies of the software
+as published by the aforementioned software
+distributors provided that no further modifications
+are made.
+
+In any case, you may not add or remove
+functionalities and you must preserve all messages
+presented to users in the user interface and the
+command line, including but not limited to:
+- URLs pointing to official Zrythm web pages
+- informational messages (popups, console output,
+etc.)
+
+You must also provide a link to the original source
+code as published by Alexandros Theodotou at
+https://www.zrythm.org/.
+
+# Requirement of Written Permission for Modified Versions Including Trademarks
+If you make any changes to the software not
+explicitly allowed above, you may not
+redistribute that product using any Zrythm trademark
+without Alexandros Theodotou’s prior written
+consent. For example, you may not distribute a
+modified form of the Zrythm DAW and continue to call
+it Zrythm, or include the Zrythm logo. If you wish to
+distribute modified versions of the software that
+include the Zrythm trademarks please contact us with
+your request at trademarks@zrythm.org.
+
+# Newer Versions of this Policy
+This policy may be revised from time to time. New
+versions will be similar in spirit to the present
+version, but may differ in detail to address new
+problems or concerns. The file `TRADEMARKS.md` in
+the source code releases will always contain the
+current policy at the time of each release.
+
+----
+
+Copyright (C) 2020-2022 Alexandros Theodotou
+
+Everyone is permitted to copy and distribute
+verbatim copies of this document, but changing it is
+not allowed.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/docs/zrythm-exception-agpl-3.0.json b/docs/zrythm-exception-agpl-3.0.json new file mode 100644 index 0000000000..07df117e55 --- /dev/null +++ b/docs/zrythm-exception-agpl-3.0.json @@ -0,0 +1,35 @@ +{ + "key": "zrythm-exception-agpl-3.0", + "short_name": "Zrythm Exception to AGPL 3.0", + "name": "Zrythm Exception to AGPL 3.0", + "category": "Copyleft", + "owner": "Zrythm", + "homepage_url": "https://git.sr.ht/~alextee/zrythm/tree/master/item/LICENSES/LicenseRef-ZrythmLicense.txt", + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-zrythm-exception-agpl-3.0", + "text_urls": [ + "https://git.sr.ht/~alextee/zrythm/blob/master/TRADEMARKS.md" + ], + "other_urls": [ + "https://git.sr.ht/~alextee/zrythm/" + ], + "standard_notice": "Zrythm is free software: you can redistribute it\nand/or modify it under the terms of the GNU Affero\nGeneral Public License (GNU AGPL) as published by the\nFree Software Foundation, either version 3 of the\nLicense, or (at your option) any later version, with\nthe additional terms below.\nZrythm is distributed in the hope that it will be\nuseful, but WITHOUT ANY WARRANTY; without even the\nimplied warranty of MERCHANTABILITY or FITNESS FOR\nA PARTICULAR PURPOSE.\n", + "ignorable_copyrights": [ + "Copyright (c) 2020-2022 Alexandros Theodotou" + ], + "ignorable_holders": [ + "Alexandros Theodotou" + ], + "ignorable_urls": [ + "https://archlinux.org/", + "https://cve.mitre.org/", + "https://debian.org/", + "https://getfedora.org/", + "https://www.freebsd.org/", + "https://www.gnu.org/distros/free-distros.html", + "https://www.zrythm.org/" + ], + "ignorable_emails": [ + "trademarks@zrythm.org" + ] +} \ No newline at end of file diff --git a/docs/zrythm-exception-agpl-3.0.yml b/docs/zrythm-exception-agpl-3.0.yml new file mode 100644 index 0000000000..ef07d9e449 --- /dev/null +++ b/docs/zrythm-exception-agpl-3.0.yml @@ -0,0 +1,37 @@ +key: zrythm-exception-agpl-3.0 +short_name: Zrythm Exception to AGPL 3.0 +name: Zrythm Exception to AGPL 3.0 +category: Copyleft +owner: Zrythm +homepage_url: https://git.sr.ht/~alextee/zrythm/tree/master/item/LICENSES/LicenseRef-ZrythmLicense.txt +is_exception: yes +spdx_license_key: LicenseRef-scancode-zrythm-exception-agpl-3.0 +text_urls: + - https://git.sr.ht/~alextee/zrythm/blob/master/TRADEMARKS.md +other_urls: + - https://git.sr.ht/~alextee/zrythm/ +standard_notice: | + Zrythm is free software: you can redistribute it + and/or modify it under the terms of the GNU Affero + General Public License (GNU AGPL) as published by the + Free Software Foundation, either version 3 of the + License, or (at your option) any later version, with + the additional terms below. + Zrythm 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. +ignorable_copyrights: + - Copyright (c) 2020-2022 Alexandros Theodotou +ignorable_holders: + - Alexandros Theodotou +ignorable_urls: + - https://archlinux.org/ + - https://cve.mitre.org/ + - https://debian.org/ + - https://getfedora.org/ + - https://www.freebsd.org/ + - https://www.gnu.org/distros/free-distros.html + - https://www.zrythm.org/ +ignorable_emails: + - trademarks@zrythm.org diff --git a/docs/zsh.LICENSE b/docs/zsh.LICENSE index aeedb6d157..5e9c8b9ec5 100644 --- a/docs/zsh.LICENSE +++ b/docs/zsh.LICENSE @@ -1,3 +1,20 @@ +--- +key: zsh +short_name: zsh License +name: Z Shell License +category: Permissive +owner: Zsh Development Group +homepage_url: https://sourceforge.net/p/zsh/code/ci/master/tree/LICENCE +spdx_license_key: LicenseRef-scancode-zsh +minimum_coverage: 90 +ignorable_copyrights: + - copyright (c) 1992-2017 Paul Falstad, Richard Coleman, Zoltan Hidvegi, Andrew Main, Peter + Stephenson, Sven Wischnowsky, and others +ignorable_holders: + - Paul Falstad, Richard Coleman, Zoltan Hidvegi, Andrew Main, Peter Stephenson, Sven Wischnowsky, + and others +--- + Unless otherwise noted in the header of specific files, files in this distribution have the licence shown below. diff --git a/docs/zsh.html b/docs/zsh.html index 77e2d44d05..0d67fc082e 100644 --- a/docs/zsh.html +++ b/docs/zsh.html @@ -188,7 +188,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/zsh.json b/docs/zsh.json index f715d76c7f..5d573de8bd 100644 --- a/docs/zsh.json +++ b/docs/zsh.json @@ -1 +1,16 @@ -{"key": "zsh", "short_name": "zsh License", "name": "Z Shell License", "category": "Permissive", "owner": "Zsh Development Group", "homepage_url": "https://sourceforge.net/p/zsh/code/ci/master/tree/LICENCE", "spdx_license_key": "LicenseRef-scancode-zsh", "minimum_coverage": 90, "ignorable_copyrights": ["copyright (c) 1992-2017 Paul Falstad, Richard Coleman, Zoltan Hidvegi, Andrew Main, Peter Stephenson, Sven Wischnowsky, and others"], "ignorable_holders": ["Paul Falstad, Richard Coleman, Zoltan Hidvegi, Andrew Main, Peter Stephenson, Sven Wischnowsky, and others"]} \ No newline at end of file +{ + "key": "zsh", + "short_name": "zsh License", + "name": "Z Shell License", + "category": "Permissive", + "owner": "Zsh Development Group", + "homepage_url": "https://sourceforge.net/p/zsh/code/ci/master/tree/LICENCE", + "spdx_license_key": "LicenseRef-scancode-zsh", + "minimum_coverage": 90, + "ignorable_copyrights": [ + "copyright (c) 1992-2017 Paul Falstad, Richard Coleman, Zoltan Hidvegi, Andrew Main, Peter Stephenson, Sven Wischnowsky, and others" + ], + "ignorable_holders": [ + "Paul Falstad, Richard Coleman, Zoltan Hidvegi, Andrew Main, Peter Stephenson, Sven Wischnowsky, and others" + ] +} \ No newline at end of file diff --git a/docs/zuora-software.LICENSE b/docs/zuora-software.LICENSE index b791f1ed31..fb89224292 100644 --- a/docs/zuora-software.LICENSE +++ b/docs/zuora-software.LICENSE @@ -1,3 +1,13 @@ +--- +key: zuora-software +short_name: Zuora Software License +name: Zuora Software License +category: Permissive +owner: Zuora +homepage_url: https://github.com/zuora/rest-java-client/blob/legacy/LICENSE +spdx_license_key: LicenseRef-scancode-zuora-software +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to use copy, modify, merge, publish the Software and to distribute, and sublicense copies of diff --git a/docs/zuora-software.html b/docs/zuora-software.html index 27bb0bd84c..e27ccdcaa5 100644 --- a/docs/zuora-software.html +++ b/docs/zuora-software.html @@ -151,7 +151,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/zuora-software.json b/docs/zuora-software.json index 8085bca243..4a8424718f 100644 --- a/docs/zuora-software.json +++ b/docs/zuora-software.json @@ -1 +1,9 @@ -{"key": "zuora-software", "short_name": "Zuora Software License", "name": "Zuora Software License", "category": "Permissive", "owner": "Zuora", "homepage_url": "https://github.com/zuora/rest-java-client/blob/legacy/LICENSE", "spdx_license_key": "LicenseRef-scancode-zuora-software"} \ No newline at end of file +{ + "key": "zuora-software", + "short_name": "Zuora Software License", + "name": "Zuora Software License", + "category": "Permissive", + "owner": "Zuora", + "homepage_url": "https://github.com/zuora/rest-java-client/blob/legacy/LICENSE", + "spdx_license_key": "LicenseRef-scancode-zuora-software" +} \ No newline at end of file diff --git a/docs/zveno-research.LICENSE b/docs/zveno-research.LICENSE index b0bc8a11b2..1db7124837 100644 --- a/docs/zveno-research.LICENSE +++ b/docs/zveno-research.LICENSE @@ -1,3 +1,14 @@ +--- +key: zveno-research +short_name: Zveno Research License +name: Zveno Research License +category: Permissive +owner: Zveno +spdx_license_key: LicenseRef-scancode-zveno-research +other_urls: + - http://sourceforge.net/p/tclxml/svn/HEAD/tree/trunk/LICENSE +--- + Zveno makes this software available free of charge for any purpose. This software may be copied, and distributed, with or without modifications; but this notice must be included on any copy. diff --git a/docs/zveno-research.html b/docs/zveno-research.html index c9152a3acc..66bbab9280 100644 --- a/docs/zveno-research.html +++ b/docs/zveno-research.html @@ -136,7 +136,8 @@ AboutCode

Designed and built by nexB. Licensed under the Creative Commons Attribution License 4.0 (CC-BY-4.0).

-

Generated with ScanCode toolkit 31.1.1 on Sep 05, 2022.

+

Generated with ScanCode toolkit 32.0.0rc1 on Jan 12, 2023.

+

This is updated daily automatically with latest updates from the develop branch of scancode-toolkit, if any.

diff --git a/docs/zveno-research.json b/docs/zveno-research.json index 736ba3e27c..3c4c949bab 100644 --- a/docs/zveno-research.json +++ b/docs/zveno-research.json @@ -1 +1,11 @@ -{"key": "zveno-research", "short_name": "Zveno Research License", "name": "Zveno Research License", "category": "Permissive", "owner": "Zveno", "spdx_license_key": "LicenseRef-scancode-zveno-research", "other_urls": ["http://sourceforge.net/p/tclxml/svn/HEAD/tree/trunk/LICENSE"]} \ No newline at end of file +{ + "key": "zveno-research", + "short_name": "Zveno Research License", + "name": "Zveno Research License", + "category": "Permissive", + "owner": "Zveno", + "spdx_license_key": "LicenseRef-scancode-zveno-research", + "other_urls": [ + "http://sourceforge.net/p/tclxml/svn/HEAD/tree/trunk/LICENSE" + ] +} \ No newline at end of file